diff --git a/webpage/al_flask.py b/webpage/al_flask.py new file mode 100644 index 0000000000000000000000000000000000000000..c989d2ea290b66c42147de2e5f5a834070452381 --- /dev/null +++ b/webpage/al_flask.py @@ -0,0 +1,687 @@ +from flask import Flask, request, render_template, session, redirect, url_for,render_template_string +from flask_login import LoginManager, UserMixin, login_user, login_required, logout_user, current_user +from datetime import timedelta +import json +import datetime +import os +from tqdm import tqdm +import random + +# ======== static and global variables ======== +static_root_path="/data/xuan/video_eval/webpage/video_eval_bench" +root_dir="/data/xuan/video_eval" + +app = Flask(__name__,static_folder='/data/xuan/video_eval/webpage/video_eval_bench') +app.secret_key = os.urandom(24) +app.config['PERMANENT_SESSION_LIFETIME'] = timedelta(days=100) +PORT_NUM = 22002 +subpath = "/video_eval_bench/" + +login_manager = LoginManager() +login_manager.init_app(app) +login_manager.login_view = 'login' + +base_model_mapping={"0":"pika", + "1":"t2vz", + "2":"vc2", + "3":"ms", + "4":"lavie_base", + "5":"anidiff", + "6":"lvdm", + "7":"hotshot", + "8":"zs_576w", + } + +local_video_dir="./videos_display" +res_dir="./res/res_current" +text_files_dir="text_files" +text_en_path=f"./{text_files_dir}/text_en_display.jsonl" +text_zh_path=f"./{text_files_dir}/text_zh_display.jsonl" +user_info_path=f"./{text_files_dir}/user_info.json" +reported_problem_log=f"./{text_files_dir}/problem_reported.json" +sampled_id_file=f"./{text_files_dir}/sampled_id.json" +num_que=7 + + +# ======== preparing video-ids and videos ========= +video_id_list=[] +videos=[] + +sampled_id_data=json.load(open(sampled_id_file, 'r')) +video_id_list=sampled_id_data["sampled_id"] + +# if LOCAL_VIDEO == 1 and os.path.exists(f"{static_root_path}/{local_video_dir}/"): +# raw_videos=sorted([file for file in +# os.listdir(f"{static_root_path}/{local_video_dir}/") if file.endswith(('.mp4'))]) + +# video_id_list=[f.split(".")[0] for f in raw_videos] + +num_vid_each_user=1000 + +print("len of video_id_list ",len(video_id_list)) + +videos_all=[f"{v_id}.mp4" for v_id in video_id_list] +print(video_id_list[:30]) + + +# ======= preparing text prompts ======== +text_prompts_en_all=[] +text_prompts_zh_all=[] +with open(text_en_path,"r") as f: + for line in f: + text_prompts_en_all.append(json.loads(line)) +with open(text_zh_path,"r") as f: + for line in f: + text_prompts_zh_all.append(json.loads(line)) + + +# text_en_all=[] +# text_zh_all=[] +# with open(text_en_path,"r") as f: +# for line in f: +# text_en_all.append(json.loads(line)) +# with open(text_zh_path,"r") as f: +# for line in f: +# text_zh_all.append(json.loads(line)) + +# text_prompts_en=[] +# text_prompts_zh=[] +# not_found=[] +# for i in tqdm(range(len(video_id_list))): +# video_id=video_id_list[i] +# found=False +# for tmp_idx,x in enumerate(text_en_all): +# if int(x['id']) == int(video_id): +# text_prompts_en.append(x) +# text_prompts_zh.append(text_zh_all[tmp_idx]) +# found=True +# break +# if not found: +# not_found.append(video_id) +# print(f"{i+1}-th video in sampled_id not found.") +# with open("/data/xuan/video_eval/not_found.txt","w") as f: +# for item in not_found: +# f.write(item+"\n") + + +# ======== textual static contents ======== +with open(f'./templates/html_text_en/start.txt', 'r') as file: + before_start=file.read() +with open(f'./templates/html_text_zh/start_zh.txt', 'r') as file: + before_start_zh=file.read() +subscore_def_en_list=[] +subscore_files=["visual.txt","object.txt","dynamic.txt","motion.txt","align.txt","factual.txt","overall.txt"] +for _,fname in enumerate(subscore_files): + with open(f'./templates/html_text_en/{fname}', 'r') as file: + content = file.read() + subscore_def_en_list.append(content) +subscore_def_zh_list=[] +subscore_zh_files=["visual_zh.txt","object_zh.txt","dynamic_zh.txt","motion_zh.txt","align_zh.txt","factual_zh.txt","overall_zh.txt"] +for _,fname in enumerate(subscore_zh_files): + with open(f'./templates/html_text_zh/{fname}', 'r') as file: + content = file.read() + subscore_def_zh_list.append(content) + + +# ========= resources for pre-annotating trial ========= +pre_anno_video_dir="pre_anno/pre_anno_videos" +pre_anno_text_en_path=f"{static_root_path}/pre_anno/pre_anno_text_en.json" +pre_anno_text_zh_path=f"{static_root_path}/pre_anno/pre_anno_text_en.json" +pre_anno_ref_en_path=f"{static_root_path}/pre_anno/pre_anno_ref_en.json" +pre_anno_ref_zh_path=f"{static_root_path}/pre_anno/pre_anno_ref_zh.json" +pre_anno_videos=sorted([file for file in os.listdir(f"{static_root_path}/{pre_anno_video_dir}") if file.endswith(('.mp4'))]) +pre_anno_prompts_en = json.load(open(pre_anno_text_en_path, "r")) +pre_anno_prompts_zh = json.load(open(pre_anno_text_zh_path, "r")) + + + +# ======== user info ======== +current_user_dict={} +if os.path.exists(f"{user_info_path}"): + user_data= json.load(open(f'{user_info_path}', 'r')) + users=list(user_data.keys()) + print("users ",users) +else: + with open(f"{user_info_path}","w") as f: + json.dump({},f,indent=4) + pass + user_data={} + users=[] + +s_idx_user_mapping={} +for user in users: + curr_user_dict=user_data.get(user) + s_idx=curr_user_dict["s_idx"] + s_idx_user_mapping[f"{s_idx}"]=curr_user_dict["username"] + +# ========= validation info ======== +annotators=users +answers_all=[] +VALIDATE_USER_NAME="video_admin" + + +# ======== user login part ======== +class User(UserMixin): + def __init__(self, id): + print("user init") + self.id = id + +@login_manager.user_loader +def load_user(user_id): + if user_id in users: + print("load user ",user_id) + return User(user_id) + else: + print("user_id not in users_list") + return None + + + +# ======== webpage contents ======== +@app.route(f'{subpath}',methods=['GET']) +def start(): + return redirect(url_for('welcome')) + + +@app.route(f'{subpath}welcome', methods=['GET','POST']) +def welcome(): + session['current_idx']=0 + session["pre_anno_answers"]={} + session['admin']=None + session['s_idx_val']=0 + session['e_idx_val']=len(video_id_list)-1 + + html_file="welcome.html" + subscore_def=subscore_def_en_list + before_start_anno=before_start + + language = request.form.get('language',"en") + session["language"]=language + print("welcome language", language) + if language=="zh": + session["language"]="zh" + html_file="welcome_zh.html" + subscore_def=subscore_def_zh_list + before_start_anno=before_start_zh + + + return render_template(html_file,\ + before_start_anno=before_start_anno,\ + visual_def=subscore_def[0],\ + object_def=subscore_def[1],\ + dynamic_def=subscore_def[2],\ + motion_def=subscore_def[3],\ + align_def=subscore_def[4],\ + factual_def=subscore_def[5],\ + overall_def=subscore_def[6]) + + +@app.route(f'{subpath}login', methods=['POST']) +def login(): + username = request.form['username'] + ans_path=f"" + if username in users: + print("user ",username) + curr_user_dict = user_data.get(username) + ans_path=f"{res_dir}/ans_{username}.jsonl" + + else: + return redirect(url_for('welcome')) + # print("new user ",username) + # users.append(username) + # new_user_dict={"username":username, + # "timestamp":datetime.datetime.now().strftime('%Y-%m-%d-%H_%M_%S'), + # "current_idx":0} + + # user_data[username]=new_user_dict + # with open(f"{user_info_path}","w") as f: + # json.dump(user_data,f,indent=4) + + # ans_path=f"{res_dir}/ans_{username}_{new_user_dict['timestamp']}.jsonl" + # with open(f"{ans_path}","w") as f: + # None + + user = User(username) + login_user(user) + + curr_user_dict=user_data.get(username) + session['username'] = curr_user_dict["username"] + session['s_idx']=curr_user_dict['s_idx'] + session['e_idx']=curr_user_dict['e_idx'] + session['current_idx']=curr_user_dict['current_idx'] + return redirect(url_for('display')) + + +@app.route(f'{subpath}logout',methods=['POST']) +@login_required +def logout(): + logout_user() + session.pop('username', None) + session.pop('s_idx', None) + session.pop('e_idx', None) + session.pop('current_idx', None) + language=request.form.get('language',"en") + session["language"]=language + print("after logout ",language) + return redirect(url_for('welcome')) + + +@app.route(f'{subpath}pre-annotating-trial',methods=['GET','POST']) +def pre_anno(): + current_idx=int(session.get("current_idx",0)) + print("curr_idx in pre-anno ",current_idx) + + if current_idx <= len(pre_anno_videos)-1: + vid_name=pre_anno_videos[current_idx].split(".")[0] + print("video name in pre-anno ",f"{vid_name}.mp4") + + answer_data_list_en = json.load(open(pre_anno_ref_en_path, "r")) + answer_data_list_zh = json.load(open(pre_anno_ref_zh_path, "r")) + + current_answers=[] + if vid_name in list(session["pre_anno_answers"].keys()): + current_answers=session["pre_anno_answers"][vid_name] + answered_vid_list=list(session["pre_anno_answers"].keys()) + + refs=answer_data_list_en[current_idx]["ref"] + current_reasons_en=answer_data_list_en[current_idx]["reasons"] + current_reasons_zh=answer_data_list_zh[current_idx]["reasons"] + + print("current_answers (list) ",current_answers) + print("answered_videos", answered_vid_list) + + html_file="pre_anno.html" + subscore_def=subscore_def_en_list + pre_anno_prompts=pre_anno_prompts_en + reasons=current_reasons_en + before_start_anno=before_start + + language=session.get("language","en") + print("language in pre-anno ",language) + if language=="zh": + html_file="pre_anno_zh.html" + subscore_def=subscore_def_zh_list + pre_anno_prompts=pre_anno_prompts_zh + reasons=current_reasons_zh + before_start_anno=before_start_zh + + return render_template(html_file, \ + before_start_anno=before_start_anno,\ + subscore_def=subscore_def,\ + num_que=num_que, + start_index=0,end_index=len(pre_anno_videos)-1, + current_idx=current_idx,\ + vid_name=vid_name,\ + video=f"{pre_anno_video_dir}/{pre_anno_videos[current_idx]}", \ + text_prompt=pre_anno_prompts[current_idx]["text"],\ + current_answers=current_answers,\ + current_reasons=reasons,\ + current_refs=refs,\ + answered_vid_list=answered_vid_list + ) + else: + current_idx=0 + session["current_idx"]=current_idx + + print("curr_idx in pre-anno ",current_idx) + return redirect(url_for('pre_anno')) + +@app.route(f'{subpath}pre-annotating-submit',methods=['POST']) +def pre_anno_submit(): + current_idx = int(request.form['current_idx']) + vid_name=request.form['video'].split("/")[-1].split(".")[0] + + answer_list=[] + for i in range(num_que): + answer_list.append(request.form.get(f'q{i+1}')) + + if vid_name not in session['pre_anno_answers']: + session['pre_anno_answers'][vid_name]=answer_list + session.modified = True + else: + session['pre_anno_answers'][vid_name]=answer_list + + session['current_idx'] = current_idx + 1 + session.modified = True + + print("in pre-anno submit, session[\'answers\'] ",session['pre_anno_answers']) + print("idx after pre-anno submission ", session.get("current_idx",0)) + + return redirect(url_for('pre_anno')) + + +@app.route(f'{subpath}annotating',methods=['GET','POST']) +def display(): + s_idx=session["s_idx"] + e_idx=session["e_idx"] + videos_curr_user=videos_all[s_idx:e_idx+1] + text_prompts_en=text_prompts_en_all[s_idx:e_idx+1] + text_prompts_zh=text_prompts_zh_all[s_idx:e_idx+1] + username=session["username"] + ans_file=f"{res_dir}/ans_{username}.jsonl" + current_idx=int(session.get("current_idx",0)) + print("curr_idx in display ",current_idx) + + slice_start_idx=0 + slice_end_idx=len(videos_curr_user)-1 + if current_idx <= slice_end_idx: + vid_name=videos_curr_user[current_idx].split(".")[0] + print("video name in display ",f"{vid_name}.mp4") + + video=f"{local_video_dir}/{videos_curr_user[current_idx]}" + + answer_data_dict={} + with open(ans_file,'r') as f: + data=[json.loads(line) for line in f] + for d in data: + answer_data_dict.update(d) + + answered_vid_list=list(answer_data_dict.keys()) + unanswered_least_idx=0 + for video_tmp_idx,vid in enumerate(videos_curr_user): + tmp_name=vid.split(".")[0] + tmp_ans=answer_data_dict.get(tmp_name,["None" for _ in range(num_que)]) + if "None" in tmp_ans: + unanswered_least_idx=video_tmp_idx + break + + current_answers=[] + if vid_name in answered_vid_list: + current_answers=answer_data_dict[vid_name] + # print("answered_vid_list",answered_vid_list) + print("current_answers (list) ",current_answers) + + html_file="display.html" + subscore_def=subscore_def_en_list + before_start_anno=before_start + prompt=text_prompts_en[current_idx]["text"] + language=session.get("language","en") + print("language in display ",language) + + if language=="zh": + html_file="display_zh.html" + subscore_def=subscore_def_zh_list + before_start_anno=before_start_zh + prompt=text_prompts_zh[current_idx]["text"] + + return render_template(html_file, \ + before_start_anno=before_start_anno,\ + num_que=num_que,\ + subscore_def=subscore_def,\ + start_index=slice_start_idx,\ + end_index=slice_end_idx,\ + current_idx=current_idx,\ + unanswered_least_idx=unanswered_least_idx,\ + vid_name=vid_name,\ + video=video,\ + text_prompt=prompt,\ + answered_vid_list=answered_vid_list,\ + current_answers=current_answers,\ + _is_val=0) + + else: + current_idx=0 + session["current_idx"]=current_idx + user_data[username]['current_idx']=session['current_idx'] + with open(f"{user_info_path}","w") as file: + json.dump(user_data, file, indent=4) + + print("curr_idx in display ",current_idx) + return redirect(url_for('display')) + + +@app.route(f'{subpath}validate', methods=['GET','POST']) +def validate(): + admin = request.form.get('admin') + if admin == None: + admin = session.get("admin",None) + + if admin != VALIDATE_USER_NAME: + return redirect(url_for('welcome')) + + current_idx=int(session.get("current_idx",0)) + print("in validate curr_idx,", current_idx) + + vid_name=videos_all[current_idx].split(".")[0] + print("video name in val ",f"{vid_name}.mp4") + + video=f"{local_video_dir}/{videos_all[current_idx]}" + print("video ",video) + + video_pos_idx=video_id_list.index(vid_name) + s_idx=int(video_pos_idx/num_vid_each_user)*num_vid_each_user + session["s_idx"]=s_idx + + username=s_idx_user_mapping[f"{s_idx}"] + annotators=[username] + ans_path=f"{res_dir}/ans_{username}.jsonl" + current_answers_all=[] + answer_data_list=[] + + with open(f"{ans_path}", "r") as f: + data_list = list(f) + answer_data_list = [json.loads(x) for x in data_list] + answer_data_dict={} + for d in answer_data_list: + answer_data_dict.update(d) + if vid_name in list(answer_data_dict.keys()): + current_answers=answer_data_dict[vid_name] + else: + current_answers=[None for _ in range(num_que)] + current_answers_all.append(current_answers) + + answers_all.append(answer_data_dict) + print("answers_all", answers_all) + + # for _,ann in enumerate(annotators): + # print(ann) + # user_dict=user_info.get(ann) + # user_name=ann + # ans_path=f"{res_dir}/ans_{user_name}.jsonl" + + # answer_data_list=[] + # with open(f"{ans_path}", "r") as f: + # data_list = list(f) + # answer_data_list = [json.loads(x) for x in data_list] + # answer_data_dict={} + # for d in answer_data_list: + # answer_data_dict.update(d) + + # if vid_name in list(answer_data_dict.keys()): + # current_answers=answer_data_dict[vid_name] + # else: + # current_answers=[None for _ in range(num_que)] + # current_answers_all.append(current_answers) + + # answers_all.append(answer_data_dict) + + print("answers_all", answers_all) + + return render_template("validate.html",\ + num_row=num_que,\ + num_colm=len(annotators),\ + start_index=0,\ + end_index=len(video_id_list)-1,\ + current_idx=current_idx,\ + annotators=annotators,\ + video=video, \ + text_prompt=text_prompts_en_all[current_idx]["text"],\ + current_answers_all=current_answers_all,\ + _is_val=1) + + +@app.route(f'{subpath}navigate_main', methods=['POST']) +def navigate_main(): + s_idx=session["s_idx"] + e_idx=session["e_idx"] + slice_end_idx=e_idx-s_idx + direction = request.form['direction'] + current_idx = int(request.form['current_idx']) + + if direction == 'last': + if current_idx>0: + current_idx -= 1 + else: + current_idx = slice_end_idx + elif direction == 'next': + if current_idx < slice_end_idx: + current_idx += 1 + else: + current_idx = 0 + + session["current_idx"]=current_idx + print("idx after navigation ", session.get("current_idx",0)) + + print("navigaiton of display") + return redirect(url_for('display')) + +@app.route(f'{subpath}navigate_turn', methods=['POST']) +def navigate_turn(): + s_idx=session["s_idx"] + e_idx=session["e_idx"] + slice_end_idx=e_idx-s_idx + current_idx = int(request.form['current_idx']) + next_idx = request.form['next_idx'] + if next_idx.isdigit(): + if int(next_idx)>=1 and int(next_idx)<=slice_end_idx+1: + session["current_idx"]=int(next_idx)-1 + else: + session["current_idx"]=current_idx + return redirect(url_for('display')) + + + +@app.route(f'{subpath}navigate_val', methods=['POST']) +def navigate_val(): + s_idx=session["s_idx_val"] + e_idx=session["e_idx_val"] + slice_end_idx=e_idx-s_idx + admin=request.form.get('admin') + direction = request.form['direction'] + current_idx = int(session.get("current_idx",0)) + + if direction == 'last': + if current_idx>0: + current_idx -= 1 + else: + current_idx = slice_end_idx + elif direction == 'next': + if current_idx < slice_end_idx: + current_idx += 1 + else: + current_idx = 0 + + session["current_idx"]=current_idx + session["admin"]=admin + + print("idx after navigation ", session.get("current_idx",0)) + print("admin in navigation ", session.get("admin",None)) + + print("navigaiton of val") + return redirect(url_for('validate')) + +@app.route(f'{subpath}navigate_turn_val', methods=['POST']) +def navigate_turn_val(): + s_idx=session["s_idx_val"] + e_idx=session["e_idx_val"] + slice_end_idx=e_idx-s_idx + admin=request.form.get('admin') + current_idx = int(request.form['current_idx']) + next_idx = request.form['next_idx'] + if next_idx.isdigit(): + if int(next_idx)>=1 and int(next_idx)<=slice_end_idx+1: + session["current_idx"]=int(next_idx)-1 + else: + session["current_idx"]=current_idx + session["admin"]=admin + return redirect(url_for('validate')) + +@app.route(f'{subpath}navigate_pre_anno', methods=['POST']) +def navigate_pre_anno(): + pre_anno_end_index=len(pre_anno_videos)-1 + direction = request.form['direction'] + current_idx = int(request.form['current_idx']) + + if direction == 'last': + if current_idx>0: + current_idx -= 1 + else: + current_idx = pre_anno_end_index + elif direction == 'next': + if current_idx < pre_anno_end_index: + current_idx += 1 + else: + current_idx = 0 + + session["current_idx"]=current_idx + print("idx after navigation ", session.get("current_idx",0)) + + print("navigaiton of pre-annotation") + return redirect(url_for('pre_anno')) + + +@app.route(f'{subpath}submit', methods=['POST']) +def submit(): + username = session['username'] + ans_file=f"{res_dir}/ans_{username}.jsonl" + + problem_reported=request.form.get('problem',0) + current_idx = int(request.form['current_idx']) + vid_name=request.form['video'].split("/")[-1].split(".")[0] + text=request.form['text_prompt'] + + answer_list=[] + if not problem_reported: + for i in range(num_que): + answer_list.append(str(request.form.get(f'q{i+1}'))) + else: + answer_list=["-1" for _ in range(num_que)] + with open(f"{reported_problem_log}","r") as problem_log: + problem_list=json.load(problem_log) + problem_list.append({ + "username":username, + "text_prompt":text, + "video_name":request.form['video'] + }) + + with open(f"{reported_problem_log}","w") as problem_log: + json.dump(problem_list,problem_log,indent=4) + + answer_dict={vid_name:answer_list} + + answer_data_dict={} + with open(ans_file,'r') as f: + data=[json.loads(line) for line in f] + for d in data: + answer_data_dict.update(d) + answer_data_dict[vid_name]=answer_list + + with open(ans_file,"a") as file: + json.dump(answer_dict, file) + file.write('\n') + + session['current_idx'] = current_idx + 1 + session.modified = True + + #print("in submit, session[\'answers\'] ",session['answers']) + print("idx after submission ", session.get("current_idx",0)) + + user_data[username]['current_idx']=session['current_idx'] + with open(f"{user_info_path}","w") as file: + json.dump(user_data, file, indent=4) + + return redirect(url_for('display')) + + +if __name__ == '__main__': + app.run(port=PORT_NUM) + # app.run(debug=True,port=PORT_NUM) + + +# gunicorn -w 4 -b 0.0.0.0:22002 al_flask:app +# ps aux | grep gunicorn + +# tmux new-session -s flaskapp +# tmux list-sessions +# tmux attach-session -t flaskapp +# tmux kill-session -t flaskapp \ No newline at end of file diff --git a/webpage/res/res_current/ans_aaran.jsonl b/webpage/res/res_current/ans_aaran.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..26ebce3a6faf4c69fea641f407697a8624de3594 --- /dev/null +++ b/webpage/res/res_current/ans_aaran.jsonl @@ -0,0 +1,986 @@ +{"2000000": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000001": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000002": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000003": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000004": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000005": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000006": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000007": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000008": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000010": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000011": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000012": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000013": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000014": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000015": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000016": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000017": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000018": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000019": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000020": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000021": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000022": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000023": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000024": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000025": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000026": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000027": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000028": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000029": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000030": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000031": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000033": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000034": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000035": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000036": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000037": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000038": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000039": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000040": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000041": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000042": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000043": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000044": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000045": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000046": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000047": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000048": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000049": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000050": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000051": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000052": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000053": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000054": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000055": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000056": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000057": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000058": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000059": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000060": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000061": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000062": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000063": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000064": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000065": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000066": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000067": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000068": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000069": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000070": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000071": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000072": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000073": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000074": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000075": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000076": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000077": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000078": ["3", "1", "None", "1", "2", "None", "1"]} +{"2000079": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000080": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000081": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000082": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000083": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000085": ["3", "3", "None", "1", "3", "None", "2"]} +{"2000086": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000087": ["3", "2", "None", "2", "3", "None", "1"]} +{"2000088": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000089": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000090": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000091": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000092": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000093": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000094": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000095": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000096": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000097": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000098": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000099": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000100": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000101": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000102": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000103": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000104": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000105": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000106": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000107": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000108": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000109": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000110": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000111": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000112": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000113": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000114": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000115": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000116": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000117": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000118": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000119": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000120": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000121": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000122": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000123": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000124": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000125": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000126": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000127": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000128": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000129": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000130": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000131": ["3", "1", "None", "1", "3", "None", "2"]} +{"2000132": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000133": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000134": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000135": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000136": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000137": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000138": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000139": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000140": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000141": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000142": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000143": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000144": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000145": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000146": ["2", "3", "None", "2", "1", "None", "2"]} +{"2000147": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000148": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000149": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000150": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000151": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000152": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000153": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000154": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000155": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000156": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000157": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000158": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000159": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000160": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000161": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000162": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000163": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000164": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000165": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000166": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000167": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000168": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000169": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000170": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000171": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000172": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000173": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000174": ["3", "3", "None", "1", "1", "None", "2"]} +{"2000175": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000176": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000177": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000178": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000179": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000180": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000181": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000182": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000183": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000184": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000185": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000186": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000187": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000188": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000189": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000190": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000191": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000192": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000193": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000194": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000195": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000196": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000197": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000198": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000199": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000200": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000201": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000202": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000203": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000204": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000205": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000206": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000207": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000208": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000209": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000210": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000211": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000212": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000213": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000214": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000215": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000216": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000217": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000218": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000219": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000220": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000221": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000222": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000223": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000224": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000225": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000226": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000227": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000228": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000229": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000230": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000231": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000232": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000233": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000234": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000235": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000236": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000237": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000238": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000239": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000240": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000241": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000242": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000243": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000244": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000245": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000246": ["2", "2", "None", "2", "1", "None", "2"]} +{"2000247": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000248": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000249": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000250": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000251": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000252": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000254": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000255": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000256": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000257": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000258": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000259": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000260": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000261": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000262": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000263": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000264": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000265": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000266": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000267": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000268": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000269": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000270": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000271": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000272": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000273": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000274": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000275": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000276": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000278": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000279": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000280": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000281": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000282": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000283": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000284": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000285": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000286": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000287": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000288": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000289": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000290": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000291": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000292": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000293": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000294": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000295": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000296": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000297": ["3", "2", "None", "2", "1", "None", "1"]} +{"2000298": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000299": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000300": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000301": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000302": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000303": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000304": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000305": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000306": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000307": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000308": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000309": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000310": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000311": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000312": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000313": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000314": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000315": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000316": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000317": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000318": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000319": ["3", "3", "None", "2", "1", "None", "3"]} +{"2000320": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000321": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000322": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000323": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000324": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000325": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000326": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000327": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000328": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000329": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000330": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000331": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000332": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000333": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000334": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000335": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000336": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000337": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000338": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000339": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000340": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000341": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000342": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000343": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000344": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000345": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000346": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000347": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000348": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000349": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000350": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000351": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000352": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000353": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000354": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000355": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000356": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000357": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000358": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000359": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000360": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000362": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000363": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000364": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000365": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000366": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000367": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000368": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000369": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000370": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000371": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000372": ["3", "3", "None", "2", "1", "None", "3"]} +{"2000373": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000374": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000375": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000376": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000377": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000378": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000379": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000380": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000381": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000382": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000383": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000384": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000385": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000386": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000387": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000388": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000389": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000390": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000391": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000392": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000393": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000394": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000395": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000396": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000397": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000398": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000399": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000400": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000401": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000402": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000403": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000404": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000405": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000406": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000407": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000408": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000409": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000410": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000411": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000412": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000413": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000414": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000415": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000416": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000417": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000418": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000419": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000420": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000421": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000422": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000423": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000424": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000425": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000426": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000427": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000428": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000429": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000430": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000431": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000432": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000433": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000434": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000435": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000436": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000437": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000438": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000439": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000440": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000441": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000442": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000443": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000444": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000445": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000446": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000447": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000448": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000449": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000450": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000451": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000452": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000453": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000454": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000455": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000456": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000457": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000458": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000459": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000460": ["2", "2", "None", "2", "1", "None", "1"]} +{"2000461": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000462": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000463": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000464": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000465": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000466": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000467": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000468": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000469": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000470": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000471": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000472": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000473": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000474": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000475": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000476": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000477": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000478": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000479": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000480": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000481": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000482": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000483": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000484": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000485": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000486": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000487": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000488": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000489": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000491": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000492": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000493": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000494": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000495": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000496": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000497": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000498": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000499": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000500": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000501": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000502": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000503": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000504": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000505": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000506": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000507": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000508": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000509": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000510": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000511": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000512": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000513": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000514": ["3", "1", "None", "3", "3", "None", "2"]} +{"2000515": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000516": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000517": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000518": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000519": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000520": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000521": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000522": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000523": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000524": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000525": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000526": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000527": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000528": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000529": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000530": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000531": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000532": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000533": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000534": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000535": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000536": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000537": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000538": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000539": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000540": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000541": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000542": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000543": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000544": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000545": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000546": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000547": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000548": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000549": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000550": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000551": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000552": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000553": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000554": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000555": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000556": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000557": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000558": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000559": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000561": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000562": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000563": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000564": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000565": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000566": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000567": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000568": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000569": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000570": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000571": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000572": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000573": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000574": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000575": ["2", "3", "None", "3", "-1", "None", "2"]} +{"2000576": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000577": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000578": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000579": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000580": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000581": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000582": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000583": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000584": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000585": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000586": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000587": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000588": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000589": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000590": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000591": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000592": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000593": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000594": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000595": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000596": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000597": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000598": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000599": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000600": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000601": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000602": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000603": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000604": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000605": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000606": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000607": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000608": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000609": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000610": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000611": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000612": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000613": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000615": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000616": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000617": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000618": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000619": ["2", "3", "None", "3", "1", "None", "1"]} +{"2000620": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000621": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000622": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000623": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000624": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000625": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000626": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000627": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000628": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000629": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000630": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000631": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000632": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000633": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000634": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000635": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000636": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000637": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000638": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000639": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000640": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000641": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000642": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000643": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000644": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000645": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000646": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000647": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000648": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000649": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000650": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000651": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000652": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000653": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000654": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000655": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000656": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000657": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000658": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000659": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000660": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000661": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000662": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000663": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000664": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000665": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000666": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000667": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000668": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000669": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000670": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000671": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000672": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000673": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000674": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000675": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000676": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000677": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000678": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000679": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000680": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000681": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000682": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000683": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000684": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000685": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000686": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000687": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000688": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000689": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000690": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000691": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000692": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000693": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000694": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000695": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000696": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000697": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000698": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000699": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000700": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000701": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000702": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000703": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000704": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000705": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000706": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000707": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000708": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000709": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000710": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000711": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000712": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000713": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000714": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000715": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000716": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000717": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000718": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000719": ["2", "3", "None", "2", "1", "None", "1"]} +{"2000720": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000721": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000722": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000723": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000724": ["3", "1", "None", "2", "3", "None", "3"]} +{"2000725": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000726": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000727": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000728": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000730": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000731": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000732": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000733": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000734": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000735": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000736": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000737": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000738": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000739": ["2", "3", "None", "2", "1", "None", "2"]} +{"2000740": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000741": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000742": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000743": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000744": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000745": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000746": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000747": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000748": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000749": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000750": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000751": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000752": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000753": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000754": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000755": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000756": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000757": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000758": ["2", "1", "None", "2", "3", "None", "2"]} +{"2000759": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000760": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000761": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000762": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000763": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000764": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000765": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000766": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000767": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000768": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000769": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000770": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000771": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000772": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000773": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000774": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000775": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000776": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000777": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000778": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000779": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000780": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000781": ["3", "1", "None", "2", "1", "None", "2"]} +{"2000782": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000783": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000784": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000785": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000786": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000787": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000788": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000789": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000790": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000791": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000792": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000793": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000794": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000795": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000796": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000797": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000798": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000799": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000800": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000801": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000802": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000804": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000805": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000806": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000807": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000808": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000809": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000810": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000811": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000812": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000813": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000814": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000815": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000816": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000817": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000818": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000819": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000820": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000821": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000822": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000823": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000824": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000825": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000826": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000827": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000828": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000829": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000831": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000832": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000833": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000834": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000835": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000836": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000837": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000838": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000839": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000840": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000841": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000842": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000843": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000844": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000845": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000846": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000847": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000848": ["3", "2", "None", "3", "3", "None", "3"]} +{"2000849": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000850": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000851": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000852": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000853": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000854": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000855": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000856": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000857": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000858": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000859": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000860": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000861": ["2", "2", "None", "2", "1", "None", "2"]} +{"2000862": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000863": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000864": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000865": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000866": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000867": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000868": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000869": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000871": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000872": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000873": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000874": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000875": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000876": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000877": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000878": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000879": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000880": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000881": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000882": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000883": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000884": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000885": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000886": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000887": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000888": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000889": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000890": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000891": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000892": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000893": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000894": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000895": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000896": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000897": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000898": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000899": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000900": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000901": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000902": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000903": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000904": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000905": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000906": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000907": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000908": ["3", "2", "None", "2", "2", "None", "1"]} +{"2000909": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000910": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000911": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000912": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000913": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000914": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000915": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000916": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000917": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000918": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000919": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000920": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000921": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000922": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000923": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000924": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000925": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000926": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000927": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000928": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000929": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000930": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000931": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000932": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000933": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000934": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000935": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000936": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000937": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000938": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000939": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000940": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000941": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000942": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000943": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000944": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000945": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000946": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000947": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000948": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000949": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000950": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000951": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000952": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000953": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000954": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000955": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000957": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000958": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000959": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000960": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000961": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000962": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000963": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000964": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000965": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000966": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000967": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000968": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000969": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000970": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000971": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000972": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000973": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000974": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000975": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000976": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000977": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000978": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000979": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000980": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000981": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000982": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000983": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000984": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000985": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000986": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000987": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000988": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000989": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000990": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000991": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000992": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000993": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000994": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000995": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000996": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000997": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000998": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000999": ["3", "3", "None", "3", "3", "None", "3"]} diff --git a/webpage/res/res_current/ans_abhranil.jsonl b/webpage/res/res_current/ans_abhranil.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3bb58277c90f994d64daff5b265e57c3434ab7f2 --- /dev/null +++ b/webpage/res/res_current/ans_abhranil.jsonl @@ -0,0 +1,2016 @@ +{"2000000": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000001": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000002": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000003": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000004": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000005": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000006": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000007": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000008": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000010": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000011": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000012": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000013": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000014": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000015": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000016": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000017": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000018": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000019": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000020": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000021": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000022": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000023": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000024": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000025": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000026": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000027": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000028": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000029": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000030": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000031": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000033": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000034": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000035": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000036": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000037": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000038": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000039": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000040": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000041": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000042": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000043": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000044": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000045": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000046": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000047": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000048": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000049": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000050": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000051": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000052": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000053": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000054": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000055": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000056": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000057": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000058": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000059": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000060": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000061": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000062": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000063": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000064": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000065": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000066": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000067": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000068": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000069": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000070": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000071": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000072": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000073": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000074": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000075": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000076": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000077": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000078": ["3", "1", "None", "1", "2", "None", "1"]} +{"2000079": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000080": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000081": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000082": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000083": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000085": ["3", "3", "None", "1", "3", "None", "2"]} +{"2000086": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000087": ["3", "2", "None", "2", "3", "None", "1"]} +{"2000088": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000089": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000090": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000091": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000092": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000093": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000094": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000095": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000096": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000097": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000098": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000099": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000100": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000101": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000102": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000103": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000104": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000105": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000106": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000107": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000108": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000109": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000110": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000111": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000112": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000113": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000114": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000115": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000116": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000117": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000118": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000119": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000120": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000121": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000122": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000123": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000124": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000125": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000126": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000127": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000128": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000129": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000130": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000131": ["3", "1", "None", "1", "3", "None", "2"]} +{"2000132": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000133": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000134": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000135": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000136": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000137": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000138": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000139": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000140": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000141": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000142": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000143": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000144": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000145": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000146": ["2", "3", "None", "2", "1", "None", "2"]} +{"2000147": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000148": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000149": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000150": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000151": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000152": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000153": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000154": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000155": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000156": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000157": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000158": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000159": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000160": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000161": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000162": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000163": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000164": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000165": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000166": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000167": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000168": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000169": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000170": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000171": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000172": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000173": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000174": ["3", "3", "None", "1", "1", "None", "2"]} +{"2000175": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000176": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000177": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000178": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000179": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000180": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000181": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000182": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000183": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000184": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000185": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000186": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000187": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000188": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000189": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000190": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000191": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000192": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000193": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000194": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000195": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000196": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000197": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000198": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000199": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000200": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000201": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000202": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000203": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000204": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000205": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000206": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000207": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000208": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000209": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000210": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000211": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000212": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000213": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000214": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000215": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000216": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000217": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000218": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000219": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000220": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000221": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000222": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000223": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000224": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000225": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000226": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000227": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000228": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000229": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000230": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000231": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000232": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000233": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000234": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000235": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000236": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000237": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000238": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000239": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000240": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000241": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000242": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000243": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000244": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000245": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000246": ["2", "2", "None", "2", "1", "None", "2"]} +{"2000247": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000248": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000249": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000250": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000251": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000252": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000254": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000255": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000256": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000257": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000258": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000259": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000260": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000261": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000262": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000263": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000264": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000265": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000266": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000267": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000268": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000269": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000270": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000271": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000272": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000273": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000274": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000275": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000276": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000278": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000279": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000280": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000281": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000282": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000283": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000284": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000285": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000286": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000287": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000288": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000289": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000290": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000291": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000292": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000293": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000294": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000295": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000296": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000297": ["3", "2", "None", "2", "1", "None", "1"]} +{"2000298": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000299": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000300": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000301": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000302": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000303": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000304": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000305": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000306": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000307": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000308": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000309": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000310": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000311": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000312": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000313": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000314": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000315": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000316": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000317": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000318": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000319": ["3", "3", "None", "2", "1", "None", "3"]} +{"2000320": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000321": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000322": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000323": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000324": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000325": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000326": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000327": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000328": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000329": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000330": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000331": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000332": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000333": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000334": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000335": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000336": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000337": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000338": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000339": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000340": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000341": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000342": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000343": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000344": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000345": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000346": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000347": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000348": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000349": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000350": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000351": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000352": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000353": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000354": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000355": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000356": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000357": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000358": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000359": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000360": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000362": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000363": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000364": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000365": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000366": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000367": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000368": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000369": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000370": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000371": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000372": ["3", "3", "None", "2", "1", "None", "3"]} +{"2000373": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000374": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000375": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000376": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000377": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000378": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000379": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000380": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000381": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000382": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000383": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000384": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000385": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000386": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000387": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000388": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000389": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000390": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000391": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000392": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000393": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000394": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000395": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000396": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000397": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000398": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000399": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000400": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000401": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000402": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000403": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000404": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000405": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000406": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000407": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000408": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000409": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000410": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000411": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000412": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000413": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000414": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000415": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000416": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000417": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000418": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000419": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000420": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000421": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000422": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000423": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000424": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000425": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000426": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000427": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000428": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000429": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000430": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000431": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000432": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000433": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000434": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000435": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000436": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000437": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000438": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000439": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000440": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000441": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000442": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000443": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000444": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000445": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000446": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000447": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000448": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000449": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000450": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000451": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000452": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000453": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000454": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000455": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000456": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000457": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000458": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000459": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000460": ["2", "2", "None", "2", "1", "None", "1"]} +{"2000461": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000462": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000463": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000464": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000465": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000466": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000467": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000468": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000469": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000470": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000471": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000472": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000473": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000474": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000475": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000476": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000477": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000478": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000479": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000480": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000481": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000482": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000483": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000484": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000485": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000486": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000487": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000488": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000489": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000491": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000492": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000493": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000494": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000495": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000496": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000497": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000498": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000499": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000500": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000501": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000502": ["2", "2", "None", "2", "3", "None", "3"]} +{"2000503": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000504": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000505": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000506": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000507": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000508": ["2", "3", "None", "2", "2", "None", "2"]} +{"2000509": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000510": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000511": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000512": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000513": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000514": ["3", "1", "None", "3", "3", "None", "2"]} +{"2000515": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000516": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000517": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000518": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000519": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000520": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000521": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000522": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000523": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000524": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000525": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000526": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000527": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000528": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000529": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000530": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000531": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000532": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000533": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000534": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000535": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000536": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000537": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000538": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000539": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000540": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000541": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000542": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000543": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000544": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000545": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000546": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000547": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000548": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000549": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000550": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000551": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000552": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000553": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000554": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000555": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000556": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000557": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000558": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000559": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000561": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000562": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000563": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000564": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000565": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000566": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000567": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000568": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000569": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000570": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000571": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000572": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000573": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000574": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000575": ["2", "3", "None", "3", "-1", "None", "2"]} +{"2000576": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000577": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000578": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000579": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000580": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000581": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000582": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000583": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000584": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000585": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000586": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000587": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000588": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000589": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000590": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000591": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000592": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000593": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000594": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000595": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000596": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000597": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000598": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000599": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000600": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000601": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000602": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000603": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000604": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000605": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000606": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000607": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000608": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000609": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000610": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000611": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000612": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000613": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000615": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000616": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000617": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000618": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000619": ["2", "3", "None", "3", "1", "None", "1"]} +{"2000620": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000621": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000622": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000623": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000624": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000625": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000626": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000627": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000628": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000629": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000630": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000631": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000632": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000633": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000634": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000635": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000636": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000637": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000638": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000639": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000640": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000641": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000642": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000643": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000644": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000645": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000646": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000647": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000648": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000649": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000650": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000651": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000652": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000653": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000654": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000655": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000656": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000657": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000658": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000659": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000660": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000661": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000662": ["3", "3", "None", "2", "1", "None", "1"]} +{"2000663": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000664": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000665": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000666": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000667": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000668": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000669": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000670": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000671": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000672": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000673": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000674": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000675": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000676": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000677": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000678": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000679": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000680": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000681": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000682": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000683": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000684": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000685": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000686": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000687": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000688": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000689": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000690": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000691": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000692": ["2", "2", "None", "2", "2", "None", "2"]} +{"2000693": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000694": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000695": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000696": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000697": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000698": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000699": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000700": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000701": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000702": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000703": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000704": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000705": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000706": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000707": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000708": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000709": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000710": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000711": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000712": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000713": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000714": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000715": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000716": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000717": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000718": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000719": ["2", "3", "None", "2", "1", "None", "1"]} +{"2000720": ["3", "3", "None", "3", "1", "None", "1"]} +{"2000721": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000722": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000723": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000724": ["3", "1", "None", "2", "3", "None", "3"]} +{"2000725": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000726": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000727": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000728": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000730": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000731": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000732": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000733": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000734": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000735": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000736": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000737": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000738": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000739": ["2", "3", "None", "2", "1", "None", "2"]} +{"2000740": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000741": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000742": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000743": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000744": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000745": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000746": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000747": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000748": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000749": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000750": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000751": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000752": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000753": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000754": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000755": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000756": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000757": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000758": ["2", "1", "None", "2", "3", "None", "2"]} +{"2000759": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000760": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000761": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000762": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000763": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000764": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000765": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000766": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000767": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000768": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000769": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000770": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000771": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000772": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000773": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000774": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000775": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000776": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000777": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000778": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000779": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000780": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000781": ["3", "1", "None", "2", "1", "None", "2"]} +{"2000782": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000783": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000784": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000785": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000786": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000787": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000788": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000789": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000790": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000791": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000792": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000793": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000794": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000795": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000796": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000797": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000798": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000799": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000800": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000801": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000802": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000804": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000805": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000806": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000807": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000808": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000809": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000810": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000811": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000812": ["3", "3", "None", "1", "3", "None", "3"]} +{"2000813": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000814": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000815": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000816": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000817": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000818": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000819": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000820": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000821": ["3", "1", "None", "2", "3", "None", "2"]} +{"2000822": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000823": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000824": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000825": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000826": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000827": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000828": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000829": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000831": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000832": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000833": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000834": ["2", "2", "None", "3", "3", "None", "3"]} +{"2000835": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000836": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000837": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000838": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000839": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000840": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000841": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000842": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000843": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000844": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000845": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000846": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000847": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000848": ["3", "2", "None", "3", "3", "None", "3"]} +{"2000849": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000850": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000851": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000852": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000853": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000854": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000855": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000856": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000857": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000858": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000859": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000860": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000861": ["2", "2", "None", "2", "1", "None", "2"]} +{"2000862": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000863": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000864": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000865": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000866": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000867": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000868": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000869": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000871": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000872": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000873": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000874": ["3", "3", "None", "3", "2", "None", "2"]} +{"2000875": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000876": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000877": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000878": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000879": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000880": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000881": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000882": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000883": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000884": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000885": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000886": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000887": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000888": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000889": ["2", "2", "None", "2", "3", "None", "2"]} +{"2000890": ["2", "3", "None", "3", "1", "None", "3"]} +{"2000891": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000892": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000893": ["3", "2", "None", "2", "1", "None", "2"]} +{"2000894": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000895": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000896": ["2", "3", "None", "2", "3", "None", "3"]} +{"2000897": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000898": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000899": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000900": ["3", "3", "None", "2", "2", "None", "3"]} +{"2000901": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000902": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000903": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000904": ["3", "3", "None", "3", "1", "None", "2"]} +{"2000905": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000906": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000907": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000908": ["3", "2", "None", "2", "2", "None", "1"]} +{"2000909": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000910": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000911": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000912": ["2", "2", "None", "3", "2", "None", "2"]} +{"2000913": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000914": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000915": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000916": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000917": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000918": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000919": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000920": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000921": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000922": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000923": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000924": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000925": ["2", "3", "None", "2", "3", "None", "2"]} +{"2000926": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000927": ["2", "2", "None", "3", "1", "None", "2"]} +{"2000928": ["2", "3", "None", "3", "1", "None", "2"]} +{"2000929": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000930": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000931": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000932": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000933": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000934": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000935": ["3", "3", "None", "2", "2", "None", "2"]} +{"2000936": ["3", "3", "None", "2", "1", "None", "2"]} +{"2000937": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000938": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000939": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000940": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000941": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000942": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000943": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000944": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000945": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000946": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000947": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000948": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000949": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000950": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000951": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000952": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000953": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000954": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000955": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000957": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000958": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000959": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000960": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000961": ["3", "2", "None", "2", "3", "None", "2"]} +{"2000962": ["3", "2", "None", "2", "3", "None", "3"]} +{"2000963": ["3", "3", "None", "3", "1", "None", "3"]} +{"2000964": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000965": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000966": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000967": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000968": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000969": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000970": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000971": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000972": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000973": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000974": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000975": ["2", "3", "None", "3", "3", "None", "2"]} +{"2000976": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000977": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000978": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000979": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000980": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000981": ["3", "3", "None", "3", "2", "None", "3"]} +{"2000982": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000983": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000984": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000985": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000986": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000987": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000988": ["2", "3", "None", "3", "2", "None", "2"]} +{"2000989": ["2", "3", "None", "3", "2", "None", "3"]} +{"2000990": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000991": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000992": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000993": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000994": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000995": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000996": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000997": ["3", "3", "None", "3", "3", "None", "2"]} +{"2000998": ["3", "3", "None", "2", "3", "None", "3"]} +{"2000999": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000000": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000001": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000000": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000002": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000003": ["3", "3", "3", "3", "2", "1", "3"]} +{"2000004": ["2", "2", "3", "2", "3", "1", "2"]} +{"2000005": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000006": ["3", "3", "3", "3", "2", "1", "3"]} +{"2000007": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000008": ["3", "3", "2", "3", "3", "2", "2"]} +{"2000009": ["3", "3", "2", "2", "3", "2", "3"]} +{"2000010": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000011": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000012": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000013": ["2", "3", "3", "3", "3", "2", "2"]} +{"2000014": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000015": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000016": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000017": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000018": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000019": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000020": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000021": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000022": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000023": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000024": ["3", "3", "2", "3", "1", "3", "2"]} +{"2000025": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000026": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000027": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000028": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000029": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000030": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000031": ["2", "3", "3", "3", "3", "1", "3"]} +{"2000032": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000033": ["2", "3", "3", "2", "2", "2", "2"]} +{"2000034": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000035": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000036": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000037": ["3", "3", "1", "3", "2", "2", "2"]} +{"2000038": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000039": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000040": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000041": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000042": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000042": ["2", "3", "3", "3", "2", "1", "3"]} +{"2000043": ["2", "3", "2", "3", "1", "1", "2"]} +{"2000044": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000045": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000046": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000047": ["3", "3", "2", "3", "1", "2", "3"]} +{"2000048": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000049": ["3", "3", "3", "3", "3", "1", "2"]} +{"2000050": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000051": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000052": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000053": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000054": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000055": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000056": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000057": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000058": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000059": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000060": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000061": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000062": ["3", "2", "2", "2", "3", "2", "3"]} +{"2000063": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000064": ["2", "3", "2", "3", "1", "2", "2"]} +{"2000065": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000066": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000067": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000068": ["2", "3", "2", "3", "2", "3", "3"]} +{"2000069": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000070": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000071": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000072": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000073": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000074": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000075": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000076": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000077": ["3", "3", "2", "3", "1", "2", "3"]} +{"2000078": ["3", "1", "3", "1", "2", "1", "1"]} +{"2000079": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000080": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000081": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000082": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000083": ["3", "3", "2", "3", "2", "1", "3"]} +{"2000084": ["2", "3", "1", "3", "3", "3", "2"]} +{"2000085": ["3", "3", "2", "1", "3", "3", "2"]} +{"2000086": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000087": ["3", "2", "3", "2", "3", "1", "1"]} +{"2000088": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000089": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000090": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000091": ["3", "3", "2", "2", "3", "2", "3"]} +{"2000092": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000093": ["3", "3", "2", "3", "2", "2", "3"]} +{"2000094": ["2", "2", "3", "2", "2", "3", "2"]} +{"2000095": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000096": ["3", "3", "1", "2", "1", "3", "2"]} +{"2000097": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000098": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000099": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000100": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000101": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000102": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000103": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000104": ["3", "3", "3", "2", "2", "1", "2"]} +{"2000105": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000106": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000107": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000108": ["2", "3", "2", "3", "3", "2", "3"]} +{"2000109": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000110": ["3", "3", "1", "1", "3", "2", "3"]} +{"2000111": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000112": ["2", "3", "None", "3", "3", "1", "3"]} +{"2000113": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000114": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000115": ["3", "3", "1", "1", "3", "3", "3"]} +{"2000116": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000117": ["3", "3", "2", "3", "2", "3", "2"]} +{"2000118": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000119": ["2", "3", "2", "2", "3", "1", "2"]} +{"2000120": ["3", "3", "2", "3", "1", "2", "2"]} +{"2000121": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000122": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000123": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000124": ["2", "3", "2", "3", "1", "1", "2"]} +{"2000125": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000126": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000127": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000128": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000112": ["2", "3", "3", "3", "3", "1", "3"]} +{"2000129": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000130": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000131": ["3", "1", "3", "1", "3", "2", "2"]} +{"2000132": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000133": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000134": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000135": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000136": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000137": ["3", "3", "1", "3", "3", "2", "2"]} +{"2000138": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000139": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000140": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000141": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000142": ["3", "3", "3", "3", "1", "1", "3"]} +{"2000143": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000144": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000145": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000146": ["2", "3", "3", "2", "1", "2", "2"]} +{"2000147": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000148": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000149": ["2", "2", "3", "2", "3", "1", "3"]} +{"2000150": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000151": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000152": ["3", "3", "3", "3", "2", "1", "2"]} +{"2000153": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000154": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2000155": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000156": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000157": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000158": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000159": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000160": ["3", "3", "3", "2", "2", "1", "2"]} +{"2000161": ["3", "3", "3", "3", "1", "2", "1"]} +{"2000162": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000163": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000164": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000165": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000166": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000167": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000168": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000169": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000170": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000171": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000172": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000173": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000174": ["3", "3", "1", "1", "1", "1", "2"]} +{"2000175": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000176": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000177": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000178": ["3", "2", "3", "3", "3", "2", "3"]} +{"2000179": ["3", "3", "2", "3", "3", "3", "2"]} +{"2000180": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000181": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000182": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000183": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000184": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000185": ["3", "3", "3", "3", "2", "3", "2"]} +{"2000186": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000187": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000188": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000189": ["3", "2", "3", "2", "3", "3", "2"]} +{"2000190": ["2", "3", "3", "3", "3", "3", "2"]} +{"2000191": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000192": ["3", "3", "3", "3", "1", "2", "2"]} +{"2000193": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000194": ["2", "3", "3", "2", "3", "1", "2"]} +{"2000195": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000196": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000197": ["3", "3", "3", "3", "2", "3", "2"]} +{"2000198": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000199": ["3", "2", "2", "2", "3", "1", "3"]} +{"2000200": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000201": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000202": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000203": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000204": ["2", "3", "3", "3", "3", "1", "3"]} +{"2000205": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000206": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000207": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000208": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000209": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000210": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000211": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000212": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000213": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000214": ["2", "3", "2", "3", "3", "1", "2"]} +{"2000215": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000216": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000217": ["3", "3", "2", "3", "3", "1", "3"]} +{"2000218": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000219": ["3", "3", "3", "3", "1", "3", "2"]} +{"2000220": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000221": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000222": ["2", "3", "3", "3", "1", "1", "3"]} +{"2000223": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000224": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000225": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000226": ["3", "3", "2", "3", "2", "2", "3"]} +{"2000227": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000228": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000229": ["3", "3", "3", "3", "1", "2", "2"]} +{"2000230": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000231": ["3", "3", "3", "2", "2", "2", "2"]} +{"2000232": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000233": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000234": ["2", "3", "3", "3", "1", "3", "2"]} +{"2000235": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000236": ["3", "3", "3", "3", "3", "2", "2"]} +{"2000237": ["3", "3", "3", "3", "1", "1", "3"]} +{"2000238": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000239": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000240": ["3", "2", "3", "2", "2", "1", "2"]} +{"2000241": ["3", "3", "3", "2", "2", "1", "2"]} +{"2000242": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000243": ["2", "3", "3", "2", "3", "1", "3"]} +{"2000244": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000245": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000246": ["2", "2", "2", "2", "1", "3", "2"]} +{"2000247": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000248": ["2", "3", "3", "3", "2", "3", "2"]} +{"2000247": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000248": ["2", "3", "3", "3", "2", "3", "2"]} +{"2000249": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000250": ["2", "3", "2", "3", "1", "2", "3"]} +{"2000251": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000252": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000253": ["3", "3", "3", "2", "2", "3", "3"]} +{"2000254": ["2", "3", "2", "3", "3", "1", "2"]} +{"2000255": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000256": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000257": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000258": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000259": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000260": ["3", "3", "2", "3", "2", "3", "2"]} +{"2000261": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000262": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000263": ["3", "3", "3", "3", "2", "1", "3"]} +{"2000264": ["2", "3", "3", "2", "2", "2", "2"]} +{"2000265": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000266": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000267": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000268": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000269": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000270": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000271": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000272": ["3", "3", "3", "2", "3", "1", "2"]} +{"2000273": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000274": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000275": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000276": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000277": ["2", "3", "2", "3", "3", "2", "2"]} +{"2000278": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000279": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000280": ["2", "2", "3", "2", "3", "2", "3"]} +{"2000281": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000282": ["2", "2", "3", "2", "3", "2", "3"]} +{"2000283": ["3", "2", "3", "2", "1", "2", "2"]} +{"2000284": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000285": ["3", "3", "3", "3", "3", "2", "2"]} +{"2000286": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000287": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000288": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000289": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000290": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000291": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000292": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000293": ["3", "3", "None", "3", "3", "3", "3"]} +{"2000293": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000294": ["3", "3", "3", "3", "1", "2", "3"]} +{"2000295": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000296": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000297": ["3", "2", "3", "2", "1", "2", "1"]} +{"2000298": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000299": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000300": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000301": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000302": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000303": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000304": ["2", "3", "3", "3", "1", "3", "2"]} +{"2000305": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000306": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000307": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000308": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000309": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000310": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000311": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000312": ["3", "3", "2", "3", "1", "3", "3"]} +{"2000313": ["2", "3", "2", "3", "3", "2", "3"]} +{"2000314": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2000315": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000316": ["3", "3", "3", "3", "3", "None", "2"]} +{"2000317": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000316": ["3", "3", "3", "3", "3", "2", "2"]} +{"2000318": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000319": ["3", "3", "2", "2", "1", "3", "3"]} +{"2000319": ["3", "3", "2", "2", "1", "3", "3"]} +{"2000320": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000321": ["3", "3", "3", "2", "3", "1", "2"]} +{"2000322": ["3", "3", "2", "3", "2", "3", "2"]} +{"2000323": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000324": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000325": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000326": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000327": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000328": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000329": ["3", "3", "3", "2", "1", "1", "2"]} +{"2000330": ["3", "3", "2", "3", "2", "2", "2"]} +{"2000331": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000332": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000333": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000334": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000335": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000336": ["2", "3", "2", "3", "2", "3", "2"]} +{"2000337": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000338": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000339": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000340": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000341": ["2", "2", "3", "2", "3", "2", "2"]} +{"2000342": ["3", "3", "3", "2", "3", "1", "2"]} +{"2000343": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000344": ["2", "3", "1", "2", "3", "3", "3"]} +{"2000345": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000346": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000347": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000348": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000349": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000350": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000351": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000352": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000353": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000354": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000355": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000356": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000357": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000358": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000359": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000360": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000361": ["2", "3", "3", "3", "2", "1", "2"]} +{"2000362": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000363": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000364": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000365": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000366": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000367": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000368": ["2", "2", "3", "2", "3", "2", "2"]} +{"2000369": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000370": ["2", "3", "2", "3", "3", "2", "3"]} +{"2000371": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000372": ["3", "3", "1", "2", "1", "3", "3"]} +{"2000373": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000374": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000375": ["3", "3", "3", "2", "1", "2", "2"]} +{"2000376": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000377": ["3", "3", "3", "3", "1", "1", "3"]} +{"2000378": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000379": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000380": ["3", "3", "1", "2", "3", "3", "3"]} +{"2000381": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000382": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000383": ["3", "3", "2", "2", "3", "2", "3"]} +{"2000384": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000385": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000386": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000387": ["2", "3", "3", "3", "2", "1", "2"]} +{"2000388": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000389": ["3", "3", "3", "3", "1", "2", "1"]} +{"2000390": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000391": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000392": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000393": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000394": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000395": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000396": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000397": ["3", "3", "3", "2", "2", "3", "2"]} +{"2000398": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000399": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000400": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000401": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000402": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000403": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000404": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000405": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000406": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000407": ["2", "3", "2", "3", "1", "3", "3"]} +{"2000408": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000409": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000410": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000411": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000412": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000413": ["3", "3", "2", "2", "3", "3", "2"]} +{"2000414": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000415": ["3", "3", "3", "3", "1", "1", "3"]} +{"2000416": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000417": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000418": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000417": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000418": ["3", "2", "3", "2", "3", "1", "2"]} +{"2000419": ["3", "3", "3", "2", "2", "2", "2"]} +{"2000420": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000421": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000422": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000423": ["2", "3", "1", "3", "2", "3", "2"]} +{"2000424": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000425": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000426": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000427": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000428": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000429": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000430": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000431": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000432": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000433": ["2", "3", "2", "3", "2", "3", "2"]} +{"2000434": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000435": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000436": ["3", "3", "3", "2", "2", "2", "2"]} +{"2000437": ["3", "3", "2", "3", "1", "3", "2"]} +{"2000438": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000439": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000440": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000441": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000442": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000443": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000444": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000445": ["3", "3", "3", "2", "2", "2", "3"]} +{"2000446": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000447": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000448": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000449": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000450": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000451": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000452": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000453": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000454": ["2", "2", "3", "3", "3", "2", "3"]} +{"2000455": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000456": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000457": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000458": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000459": ["2", "3", "3", "3", "2", "1", "3"]} +{"2000460": ["2", "2", "3", "2", "1", "2", "1"]} +{"2000461": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000462": ["3", "3", "2", "3", "3", "2", "2"]} +{"2000463": ["2", "3", "3", "2", "3", "3", "2"]} +{"2000464": ["2", "3", "3", "3", "3", "1", "3"]} +{"2000465": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000466": ["2", "3", "2", "3", "3", "2", "3"]} +{"2000467": ["2", "2", "3", "3", "1", "1", "2"]} +{"2000468": ["2", "2", "3", "2", "3", "1", "2"]} +{"2000469": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000470": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000471": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000472": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000473": ["2", "3", "3", "2", "3", "3", "3"]} +{"2000474": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000475": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000476": ["2", "3", "3", "2", "3", "3", "3"]} +{"2000477": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000478": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000479": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000480": ["2", "3", "2", "3", "1", "3", "3"]} +{"2000481": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000482": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000483": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000484": ["2", "3", "2", "2", "3", "2", "3"]} +{"2000485": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000486": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000487": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000488": ["2", "3", "2", "3", "1", "2", "3"]} +{"2000489": ["3", "1", "3", "2", "3", "2", "2"]} +{"2000490": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2000491": ["3", "3", "3", "2", "1", "2", "2"]} +{"2000492": ["2", "2", "3", "2", "3", "2", "2"]} +{"2000493": ["3", "3", "2", "3", "2", "2", "3"]} +{"2000494": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000495": ["3", "3", "2", "3", "2", "3", "2"]} +{"2000496": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000497": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000498": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000499": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000441": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000500": ["2", "3", "3", "3", "1", "2", "2"]} +{"2000501": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000502": ["2", "2", "3", "2", "3", "1", "3"]} +{"2000503": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000504": ["3", "3", "2", "3", "1", "3", "3"]} +{"2000505": ["2", "3", "2", "2", "3", "1", "3"]} +{"2000506": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000507": ["3", "3", "2", "3", "2", "3", "2"]} +{"2000508": ["2", "3", "3", "2", "2", "2", "2"]} +{"2000509": ["3", "3", "3", "3", "2", "None", "3"]} +{"2000509": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000510": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000511": ["3", "3", "2", "3", "1", "3", "3"]} +{"2000512": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000513": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000514": ["3", "1", "3", "3", "3", "1", "2"]} +{"2000515": ["3", "3", "None", "2", "3", "2", "2"]} +{"2000516": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000515": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000516": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000517": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000518": ["3", "2", "3", "2", "3", "1", "3"]} +{"2000519": ["3", "3", "2", "3", "3", "1", "3"]} +{"2000520": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000521": ["3", "3", "3", "2", "1", "2", "1"]} +{"2000522": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000523": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000524": ["2", "2", "3", "2", "3", "3", "2"]} +{"2000525": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000526": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000527": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000528": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000529": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000530": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000531": ["2", "3", "2", "3", "2", "3", "3"]} +{"2000532": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000533": ["3", "3", "2", "3", "1", "3", "1"]} +{"2000534": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000535": ["3", "2", "3", "2", "1", "1", "2"]} +{"2000536": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000537": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000538": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000539": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000540": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000541": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000542": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000543": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000544": ["3", "3", "2", "3", "1", "3", "3"]} +{"2000545": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000546": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000547": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000548": ["2", "3", "3", "3", "2", "2", "2"]} +{"2000549": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000550": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000551": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000552": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000553": ["3", "2", "3", "2", "3", "1", "3"]} +{"2000554": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000555": ["3", "3", "None", "2", "3", "1", "2"]} +{"2000556": ["2", "2", "3", "2", "2", "1", "2"]} +{"2000557": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000558": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000559": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000560": ["2", "3", "2", "3", "2", "2", "2"]} +{"2000561": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000562": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000563": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000564": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000564": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000565": ["2", "3", "None", "3", "3", "None", "3"]} +{"2000566": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000567": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000568": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000569": ["3", "3", "None", "3", "3", "None", "3"]} +{"2000570": ["3", "3", "None", "2", "3", "None", "2"]} +{"2000555": ["3", "3", "3", "2", "3", "1", "2"]} +{"2000565": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000566": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000567": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000568": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000569": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000570": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000571": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000572": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000573": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000574": ["3", "2", "2", "2", "3", "3", "3"]} +{"2000575": ["2", "3", "1", "3", "3", "3", "2"]} +{"2000576": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000577": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000578": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000579": ["2", "3", "1", "3", "1", "3", "2"]} +{"2000580": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000581": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000582": ["2", "2", "3", "3", "1", "2", "2"]} +{"2000583": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000584": ["2", "3", "1", "3", "1", "3", "2"]} +{"2000585": ["2", "2", "2", "3", "2", "2", "2"]} +{"2000586": ["2", "2", "3", "3", "2", "1", "2"]} +{"2000587": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000588": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000589": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000590": ["2", "2", "3", "2", "3", "1", "2"]} +{"2000591": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000592": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000593": ["2", "3", "2", "3", "3", "2", "2"]} +{"2000594": ["2", "3", "3", "3", "3", "1", "3"]} +{"2000595": ["2", "3", "3", "3", "2", "3", "2"]} +{"2000596": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000597": ["2", "2", "3", "3", "2", "2", "2"]} +{"2000598": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000599": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000600": ["2", "3", "3", "3", "1", "2", "3"]} +{"2000601": ["2", "2", "3", "3", "3", "2", "3"]} +{"2000602": ["2", "2", "3", "3", "2", "2", "2"]} +{"2000603": ["2", "3", "1", "3", "3", "3", "3"]} +{"2000604": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000605": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000606": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000607": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000608": ["2", "2", "2", "3", "1", "2", "2"]} +{"2000609": ["2", "2", "3", "3", "2", "2", "2"]} +{"2000610": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000611": ["2", "3", "1", "3", "2", "3", "2"]} +{"2000612": ["2", "3", "3", "3", "1", "2", "3"]} +{"2000613": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000614": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000615": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000616": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000617": ["3", "2", "3", "2", "3", "1", "3"]} +{"2000618": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000619": ["2", "3", "1", "3", "1", "3", "1"]} +{"2000620": ["3", "3", "3", "3", "3", "2", "2"]} +{"2000621": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000622": ["3", "2", "3", "2", "1", "1", "2"]} +{"2000623": ["2", "2", "3", "3", "3", "1", "3"]} +{"2000624": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000625": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000626": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000627": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000628": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000629": ["2", "3", "3", "3", "2", "2", "2"]} +{"2000630": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000631": ["2", "2", "3", "2", "2", "2", "2"]} +{"2000632": ["3", "2", "3", "2", "1", "None", "2"]} +{"2000633": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000634": ["3", "3", "3", "3", "1", "3", "1"]} +{"2000635": ["2", "3", "3", "3", "1", "2", "3"]} +{"2000636": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000637": ["3", "3", "1", "3", "2", "2", "3"]} +{"2000638": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000639": ["3", "3", "None", "3", "3", "2", "3"]} +{"2000639": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000632": ["3", "2", "3", "2", "1", "3", "2"]} +{"2000640": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000641": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000641": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000642": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000643": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000644": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000645": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000646": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000647": ["2", "3", "3", "3", "2", "1", "3"]} +{"2000648": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000649": ["3", "3", "3", "3", "1", "2", "3"]} +{"2000650": ["2", "2", "3", "3", "2", "2", "2"]} +{"2000651": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000652": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000653": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000654": ["3", "3", "2", "2", "1", "2", "1"]} +{"2000655": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000656": ["3", "2", "None", "2", "2", "None", "2"]} +{"2000656": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000657": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000658": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000659": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000660": ["2", "3", "1", "3", "3", "3", "3"]} +{"2000661": ["3", "3", "None", "3", "3", "3", "3"]} +{"2000661": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000662": ["3", "3", "2", "2", "1", "3", "1"]} +{"2000663": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000664": ["2", "2", "3", "3", "1", "2", "2"]} +{"2000665": ["3", "3", "3", "2", "1", "2", "2"]} +{"2000666": ["3", "3", "1", "3", "2", "2", "2"]} +{"2000667": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000668": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000669": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000670": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000671": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000672": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000673": ["2", "3", "2", "3", "3", "2", "3"]} +{"2000674": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000675": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000676": ["2", "3", "3", "2", "3", "2", "2"]} +{"2000677": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000678": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2000679": ["2", "3", "3", "3", "1", "2", "2"]} +{"2000680": ["2", "3", "2", "3", "2", "3", "2"]} +{"2000681": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000682": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000683": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000684": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000685": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000686": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000687": ["3", "3", "3", "3", "2", "2", "2"]} +{"2000688": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000689": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000690": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000691": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000692": ["2", "2", "3", "2", "2", "2", "2"]} +{"2000693": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000694": ["3", "3", "2", "1", "3", "3", "3"]} +{"2000695": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000696": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000697": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000698": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000699": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000700": ["3", "3", "1", "3", "2", "3", "2"]} +{"2000701": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000702": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000703": ["3", "3", "2", "2", "3", "3", "2"]} +{"2000704": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000705": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000706": ["3", "2", "3", "2", "1", "2", "2"]} +{"2000707": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000708": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000709": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000710": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000711": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000712": ["3", "3", "2", "3", "2", "2", "2"]} +{"2000713": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000714": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000715": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000716": ["3", "3", "2", "2", "3", "2", "3"]} +{"2000717": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000718": ["3", "2", "3", "2", "2", "2", "2"]} +{"2000719": ["2", "3", "3", "2", "1", "1", "1"]} +{"2000720": ["3", "3", "2", "3", "1", "3", "1"]} +{"2000721": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000722": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000723": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000724": ["3", "1", "3", "2", "3", "3", "3"]} +{"2000725": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000726": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000727": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000728": ["3", "3", "3", "2", "2", "2", "2"]} +{"2000729": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000730": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000731": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000732": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000733": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000734": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000735": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000736": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000737": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000738": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000739": ["2", "3", "2", "2", "1", "3", "2"]} +{"2000740": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000741": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000742": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000743": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000744": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000745": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000746": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000747": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000748": ["3", "3", "1", "3", "1", "3", "2"]} +{"2000749": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000750": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000751": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000752": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000753": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000754": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000755": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000756": ["2", "3", "2", "3", "2", "3", "2"]} +{"2000757": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000758": ["2", "1", "3", "2", "3", "1", "2"]} +{"2000759": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000760": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000761": ["3", "2", "3", "2", "3", "1", "3"]} +{"2000762": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000763": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000764": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000765": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000766": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000767": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000768": ["3", "2", "2", "2", "3", "3", "3"]} +{"2000769": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000770": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000771": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000772": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000773": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000774": ["2", "2", "3", "3", "3", "2", "3"]} +{"2000775": ["2", "3", "3", "2", "3", "3", "3"]} +{"2000776": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000777": ["3", "3", "2", "3", "1", "3", "2"]} +{"2000778": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000779": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000780": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000781": ["3", "1", "3", "2", "1", "2", "2"]} +{"2000782": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000783": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000784": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000785": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000786": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000787": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000788": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000789": ["2", "2", "3", "3", "3", "2", "3"]} +{"2000790": ["2", "2", "3", "3", "1", "3", "2"]} +{"2000791": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000792": ["3", "3", "2", "3", "1", "2", "2"]} +{"2000793": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000794": ["3", "1", "1", "2", "3", "3", "2"]} +{"2000795": ["3", "3", "2", "2", "3", "3", "2"]} +{"2000796": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2000797": ["2", "3", "1", "3", "1", "3", "3"]} +{"2000798": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000799": ["3", "3", "3", "3", "1", "3", "2"]} +{"2000800": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000801": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000802": ["3", "3", "2", "3", "3", "3", "2"]} +{"2000803": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000804": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000805": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000806": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000807": ["3", "3", "2", "3", "3", "2", "3"]} +{"2000808": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000809": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000810": ["3", "3", "3", "3", "2", "2", "2"]} +{"2000811": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000812": ["3", "3", "1", "1", "3", "3", "3"]} +{"2000813": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000814": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000815": ["2", "3", "3", "3", "1", "2", "3"]} +{"2000816": ["2", "2", "3", "2", "3", "1", "2"]} +{"2000817": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000818": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000819": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000820": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000821": ["3", "1", "3", "2", "3", "1", "2"]} +{"2000822": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000823": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000824": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000825": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000826": ["3", "2", "3", "3", "3", "3", "3"]} +{"2000827": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000828": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000829": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000830": ["2", "3", "2", "3", "3", "3", "3"]} +{"2000831": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000832": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000833": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000834": ["2", "2", "3", "3", "3", "2", "3"]} +{"2000835": ["2", "3", "2", "3", "1", "2", "2"]} +{"2000836": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000837": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000838": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000839": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000840": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000841": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000842": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000843": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000844": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000845": ["3", "3", "2", "3", "1", "2", "2"]} +{"2000846": ["2", "2", "3", "2", "3", "2", "2"]} +{"2000847": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000848": ["3", "2", "3", "3", "3", "3", "3"]} +{"2000849": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000850": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000851": ["3", "3", "3", "3", "3", "1", "3"]} +{"2000852": ["3", "3", "1", "3", "3", "2", "3"]} +{"2000853": ["3", "3", "3", "3", "1", "3", "3"]} +{"2000854": ["3", "3", "2", "3", "1", "3", "2"]} +{"2000855": ["3", "3", "2", "2", "2", "3", "2"]} +{"2000856": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000857": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000858": ["3", "3", "2", "3", "1", "3", "2"]} +{"2000859": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000860": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000861": ["2", "2", "3", "2", "1", "3", "2"]} +{"2000862": ["2", "3", "3", "3", "2", "2", "2"]} +{"2000863": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000864": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000865": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000866": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000867": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000868": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000869": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000870": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000871": ["3", "3", "3", "3", "1", "1", "2"]} +{"2000872": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000873": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000874": ["3", "3", "2", "3", "2", "2", "2"]} +{"2000875": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000876": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000877": ["2", "3", "2", "3", "1", "3", "2"]} +{"2000878": ["2", "3", "3", "3", "2", "3", "3"]} +{"2000879": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000880": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000881": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000882": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000883": ["2", "2", "3", "2", "3", "1", "2"]} +{"2000884": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000885": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000886": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000887": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000888": ["2", "3", "2", "2", "3", "3", "2"]} +{"2000889": ["2", "2", "3", "2", "3", "3", "2"]} +{"2000890": ["2", "3", "3", "3", "1", "3", "3"]} +{"2000891": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000892": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000893": ["3", "2", "3", "2", "1", "3", "2"]} +{"2000894": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000895": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000896": ["2", "3", "3", "2", "3", "2", "3"]} +{"2000897": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000898": ["3", "3", "3", "2", "2", "3", "3"]} +{"2000899": ["3", "3", "1", "3", "3", "2", "2"]} +{"2000900": ["3", "3", "3", "2", "2", "3", "3"]} +{"2000901": ["2", "3", "3", "3", "1", "2", "2"]} +{"2000902": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000903": ["2", "3", "3", "3", "3", "3", "2"]} +{"2000904": ["3", "3", "3", "3", "1", "3", "2"]} +{"2000905": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000906": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000907": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000908": ["3", "2", "3", "2", "2", "2", "1"]} +{"2000909": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000910": ["2", "3", "3", "3", "3", "2", "3"]} +{"2000911": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000912": ["2", "2", "3", "3", "2", "3", "2"]} +{"2000913": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000914": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000915": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000916": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000917": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000918": ["3", "3", "1", "3", "3", "3", "2"]} +{"2000919": ["2", "3", "3", "3", "2", "1", "3"]} +{"2000920": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000921": ["3", "2", "3", "2", "3", "1", "3"]} +{"2000922": ["3", "2", "3", "2", "3", "3", "3"]} +{"2000923": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000924": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000925": ["2", "3", "3", "2", "3", "3", "2"]} +{"2000926": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000927": ["2", "2", "3", "3", "1", "2", "2"]} +{"2000928": ["2", "3", "1", "3", "1", "3", "2"]} +{"2000929": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000930": ["3", "3", "2", "3", "2", "3", "3"]} +{"2000931": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000932": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000933": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000934": ["3", "3", "3", "3", "3", "1", "2"]} +{"2000935": ["3", "3", "3", "2", "2", "3", "2"]} +{"2000936": ["3", "3", "3", "2", "1", "2", "2"]} +{"2000937": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000938": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000939": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000940": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000941": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000942": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000943": ["2", "3", "3", "3", "3", "3", "3"]} +{"2000944": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000945": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000946": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000947": ["3", "3", "1", "2", "3", "3", "2"]} +{"2000948": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000949": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000950": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000951": ["2", "3", "3", "3", "3", "3", "2"]} +{"2000952": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000953": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000954": ["3", "3", "1", "3", "3", "3", "3"]} +{"2000955": ["3", "2", "3", "2", "3", "3", "2"]} +{"2000956": ["None", "None", "3", "None", "None", "2", "None"]} +{"2000956": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000957": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000958": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000959": ["3", "3", "3", "2", "3", "2", "3"]} +{"2000960": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000961": ["3", "2", "3", "2", "3", "2", "2"]} +{"2000962": ["3", "2", "3", "2", "3", "2", "3"]} +{"2000963": ["3", "3", "3", "3", "1", "2", "3"]} +{"2000964": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000965": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000966": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000967": ["3", "3", "2", "2", "3", "3", "3"]} +{"2000968": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000969": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000968": ["3", "3", "3", "3", "2", "2", "3"]} +{"2000969": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000970": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000971": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000972": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000973": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000974": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000975": ["2", "3", "3", "3", "3", "3", "2"]} +{"2000976": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000977": ["3", "3", "2", "2", "3", "3", "2"]} +{"2000978": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000979": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000980": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000981": ["3", "3", "3", "3", "2", "3", "3"]} +{"2000982": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000983": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000984": ["3", "3", "3", "2", "3", "3", "2"]} +{"2000985": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000986": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000987": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000988": ["2", "3", "2", "3", "2", "3", "2"]} +{"2000989": ["2", "3", "3", "3", "2", "2", "3"]} +{"2000990": ["3", "3", "3", "2", "3", "2", "2"]} +{"2000991": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000992": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000993": ["3", "3", "3", "3", "3", "3", "3"]} +{"2000994": ["3", "3", "3", "3", "3", "2", "3"]} +{"2000995": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000996": ["3", "3", "2", "3", "3", "3", "3"]} +{"2000997": ["3", "3", "3", "3", "3", "3", "2"]} +{"2000998": ["3", "3", "3", "2", "3", "3", "3"]} +{"2000999": ["3", "3", "3", "3", "3", "3", "3"]} diff --git a/webpage/res/res_current/ans_achint.jsonl b/webpage/res/res_current/ans_achint.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1d7a5909277679f9e81bf60be9d16bf7bd4bc1f9 --- /dev/null +++ b/webpage/res/res_current/ans_achint.jsonl @@ -0,0 +1,575 @@ +{"0001500": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001501": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001502": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001503": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001504": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001505": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001506": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001507": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001508": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001509": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001510": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001511": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001512": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001513": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001514": ["2", "2", "None", "3", "2", "None", "2"]} +{"0001515": ["3", "3", "None", "2", "2", "None", "3"]} +{"0001516": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001517": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001518": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001519": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001520": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001521": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001522": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001523": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001524": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001525": ["2", "2", "None", "3", "2", "None", "2"]} +{"0001526": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001527": ["3", "2", "None", "3", "3", "None", "3"]} +{"0001528": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001529": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001530": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001531": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001532": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001533": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001535": ["3", "3", "None", "2", "2", "None", "3"]} +{"0001536": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001537": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001538": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001539": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001540": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001541": ["3", "2", "None", "3", "3", "None", "3"]} +{"0001542": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001543": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001544": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001545": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001546": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001547": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001548": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001549": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001550": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001551": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001552": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001553": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001554": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001555": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001556": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001557": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001558": ["3", "2", "None", "3", "3", "None", "2"]} +{"0001559": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001560": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001561": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001562": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001563": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001564": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001565": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001566": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001567": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001568": ["3", "3", "None", "3", "3", "None", "1"]} +{"0001569": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001570": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001571": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001572": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001573": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001574": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001575": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001576": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001577": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001578": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001579": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001580": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001581": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001582": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001583": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001584": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001585": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001586": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001587": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001588": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001589": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001590": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001591": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001592": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001593": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001594": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001595": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001596": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001597": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001598": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001599": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001600": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001601": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001602": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001603": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001604": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001605": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001606": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001607": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001608": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001609": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001610": ["1", "3", "None", "3", "3", "None", "1"]} +{"0001611": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001612": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001613": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001614": ["2", "3", "None", "2", "3", "None", "3"]} +{"0001615": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001616": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001617": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001618": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001619": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001620": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001621": ["3", "3", "None", "1", "1", "None", "2"]} +{"0001622": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001623": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001624": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001625": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001626": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001627": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001628": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001629": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001630": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001631": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001632": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001633": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001634": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001635": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001636": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001637": ["3", "2", "None", "3", "2", "None", "2"]} +{"0001638": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001639": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001640": ["3", "2", "None", "3", "3", "None", "2"]} +{"0001641": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001642": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001643": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001644": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001645": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001646": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001647": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001648": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001649": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001650": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001651": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001652": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001653": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001654": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001655": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001656": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001657": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001658": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001659": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001660": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001661": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001662": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001663": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001664": ["2", "3", "None", "2", "3", "None", "2"]} +{"0001665": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001666": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001667": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001668": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001669": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001670": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001671": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001672": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001673": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001674": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001675": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001676": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001677": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001678": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001679": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001680": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001681": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001682": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001683": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001684": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001685": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001686": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001687": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001688": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001689": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001690": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001691": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001692": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001693": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001694": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001695": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001696": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001697": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001698": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001699": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001700": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001701": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001702": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001703": ["3", "3", "None", "1", "3", "None", "2"]} +{"0001704": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001705": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001706": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001707": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001708": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001709": ["3", "2", "None", "2", "1", "None", "2"]} +{"0001710": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001711": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001712": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001713": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001714": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001715": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001716": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001717": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001718": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001719": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001720": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001721": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001722": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001723": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001724": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001725": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001726": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001727": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001728": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001729": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001730": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001731": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001732": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001733": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001734": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001735": ["3", "3", "None", "1", "1", "None", "3"]} +{"0001736": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001737": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001738": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001739": ["3", "2", "None", "3", "3", "None", "2"]} +{"0001740": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001741": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001742": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001743": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001744": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001745": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001746": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001747": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001748": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001749": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001750": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001751": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001752": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001753": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001754": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001755": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001756": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001757": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001758": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001759": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001760": ["2", "3", "None", "2", "3", "None", "3"]} +{"0001761": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001762": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001763": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001764": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001765": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001766": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001767": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001768": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001769": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001770": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001771": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001772": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001773": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001774": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001775": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001776": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001777": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001778": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001779": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001780": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001781": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001782": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001783": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001784": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001785": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001786": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001787": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001788": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001789": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001790": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001791": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001792": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001793": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001794": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001795": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001796": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001797": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001798": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001799": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001800": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001801": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001802": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001803": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001804": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001805": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001806": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001807": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001808": ["2", "2", "None", "2", "2", "None", "2"]} +{"0001809": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001810": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001811": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001812": ["3", "2", "None", "3", "1", "None", "3"]} +{"0001813": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001814": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001815": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001816": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001817": ["3", "3", "None", "2", "1", "None", "2"]} +{"0001818": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001819": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001820": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001821": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001822": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001823": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001824": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001825": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001826": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001827": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001828": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001829": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001830": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001831": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001832": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001833": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001834": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001835": ["2", "3", "None", "2", "3", "None", "2"]} +{"0001836": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001837": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001838": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001839": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001840": ["2", "2", "None", "2", "2", "None", "2"]} +{"0001841": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001842": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001843": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001844": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001845": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001846": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001847": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001848": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001849": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001850": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001851": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001852": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001853": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001854": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001855": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001856": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001857": ["2", "3", "None", "2", "3", "None", "2"]} +{"0001858": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001859": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001860": ["2", "2", "None", "3", "2", "None", "2"]} +{"0001861": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001862": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001863": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001864": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001865": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001866": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001867": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001868": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001869": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001870": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001871": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001872": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001873": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001874": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001875": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001876": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001877": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001878": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001879": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001880": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001881": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001882": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001883": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001884": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001885": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001886": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001887": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001888": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001889": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001890": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001891": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001892": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001893": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001894": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001895": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001896": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001897": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001898": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001899": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001900": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001901": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001902": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001903": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001904": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001905": ["2", "3", "None", "2", "1", "None", "2"]} +{"0001906": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001907": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001908": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001909": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001910": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001911": ["2", "2", "None", "3", "2", "None", "2"]} +{"0001912": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001913": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001914": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001915": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001916": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001917": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001918": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001919": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001920": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001921": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001922": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001923": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001924": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001925": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001926": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001927": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001928": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001929": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001930": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001931": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001932": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001933": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001934": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001935": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001936": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001937": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001938": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001939": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001940": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001941": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001942": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001943": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001944": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001945": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001946": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001947": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001948": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001949": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001950": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001951": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001952": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001953": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001954": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001955": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001956": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001957": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001958": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001959": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001960": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001961": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001962": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001963": ["2", "3", "None", "2", "1", "None", "2"]} +{"0001964": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001965": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001966": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001967": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001968": ["2", "3", "None", "2", "3", "None", "3"]} +{"0001969": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001970": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001971": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001972": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001973": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001974": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001975": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001976": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001977": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001978": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001979": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001980": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001981": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001982": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001983": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001984": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001985": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001986": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001987": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001988": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001989": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001990": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001991": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001992": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001993": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001994": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001995": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001996": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001997": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001998": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001999": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001500": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001501": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001502": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001503": ["3", "3", "3", "3", "3", "1", "3"]} +{"0001504": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001505": ["2", "3", "2", "3", "2", "3", "2"]} +{"0001506": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001507": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001508": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001509": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001510": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001511": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001512": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001513": ["2", "3", "1", "3", "3", "3", "3"]} +{"0001514": ["2", "2", "3", "3", "2", "3", "2"]} +{"0001515": ["3", "3", "1", "2", "2", "3", "3"]} +{"0001516": ["3", "2", "3", "2", "2", "2", "2"]} +{"0001517": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001518": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001519": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001520": ["3", "3", "1", "3", "2", "3", "2"]} +{"0001521": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001522": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001523": ["2", "3", "3", "2", "2", "3", "2"]} +{"0001524": ["2", "3", "3", "3", "1", "3", "2"]} +{"0001525": ["2", "2", "3", "3", "2", "3", "2"]} +{"0001526": ["3", "3", "3", "3", "3", "1", "2"]} +{"0001527": ["3", "1", "3", "3", "3", "2", "2"]} +{"0001528": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001529": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001530": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001531": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001532": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001533": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001534": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001535": ["3", "3", "3", "2", "2", "1", "3"]} +{"0001536": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001537": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001538": ["2", "3", "1", "3", "2", "3", "2"]} +{"0001539": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001540": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001541": ["3", "2", "3", "3", "3", "2", "3"]} +{"0001542": ["3", "2", "3", "2", "3", "1", "2"]} +{"0001543": ["3", "3", "3", "3", "3", "1", "3"]} +{"0001544": ["3", "2", "3", "2", "2", "2", "2"]} +{"0001545": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001546": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001547": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001548": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001549": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001550": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001551": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001552": ["2", "2", "3", "2", "3", "2", "2"]} +{"0001553": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001554": ["2", "3", "2", "3", "3", "3", "2"]} +{"0001555": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001556": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001557": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001558": ["3", "2", "3", "3", "3", "2", "2"]} +{"0001559": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001560": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001561": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001562": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001563": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001564": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001565": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001566": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001567": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001568": ["3", "3", "3", "3", "3", "2", "1"]} +{"0001569": ["2", "3", "3", "2", "2", "3", "2"]} +{"0001570": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001571": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001572": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001573": ["2", "3", "1", "3", "3", "3", "3"]} +{"0001574": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001575": ["3", "3", "3", "3", "3", "3", "2"]} diff --git a/webpage/res/res_current/ans_alice.jsonl b/webpage/res/res_current/ans_alice.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..66f4413c22e12c1d5dfe7f19ab46e8d292d2b89e --- /dev/null +++ b/webpage/res/res_current/ans_alice.jsonl @@ -0,0 +1,21 @@ +{"1006866": ["1", "3", "3", "2", "3", "3", "2"]} +{"6003749": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006941": ["3", "3", "3", "2", "2", "3", "2"]} +{"3004461": ["3", "2", "3", "2", "2", "1", "2"]} +{"0004738": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004012": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003642": ["3", "2", "3", "2", "1", "2", "2"]} +{"0006732": ["2", "3", "2", "3", "3", "3", "3"]} +{"2003094": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003173": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005325": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004376": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004531": ["2", "3", "3", "2", "3", "3", "2"]} +{"4003195": ["3", "2", "3", "2", "3", "3", "2"]} +{"6004869": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006939": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005170": ["1", "2", "3", "2", "2", "3", "2"]} +{"2005392": ["2", "3", "2", "3", "3", "3", "2"]} +{"0005157": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003643": ["2", "3", "1", "3", "3", "None", "2"]} +{"4003643": ["2", "3", "1", "3", "3", "3", "2"]} diff --git a/webpage/res/res_current/ans_bob.jsonl b/webpage/res/res_current/ans_bob.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_bohan.jsonl b/webpage/res/res_current/ans_bohan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e71c67dfa50682311b37f4e95ade36205036f4b8 --- /dev/null +++ b/webpage/res/res_current/ans_bohan.jsonl @@ -0,0 +1,2036 @@ +{"7001000": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001001": ["2", "3", "3", "2", "None", "None", "3"]} +{"7001002": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001003": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001004": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001005": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001006": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001007": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001008": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001009": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001010": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001011": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001012": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001013": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001014": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001015": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001016": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001017": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001018": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001019": ["3", "3", "1", "3", "None", "None", "2"]} +{"7001020": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001021": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001022": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001023": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001024": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001025": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001026": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001027": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001028": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001029": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001030": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001031": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001032": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001033": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001034": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001035": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001036": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001037": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001038": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001039": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001040": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001041": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001042": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001043": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001044": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001045": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001046": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001047": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001048": ["1", "2", "3", "2", "None", "None", "2"]} +{"7001049": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001050": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001051": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001052": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001053": ["2", "3", "2", "2", "None", "None", "2"]} +{"7001054": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001055": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001056": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001057": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001058": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001059": ["2", "1", "3", "2", "None", "None", "1"]} +{"7001060": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001061": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001062": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001063": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001064": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001065": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001066": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001067": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001068": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001069": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001070": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001071": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001072": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001073": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001074": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001075": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001076": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001077": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001078": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001079": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001080": ["3", "1", "3", "1", "None", "None", "1"]} +{"7001081": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001082": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001083": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001084": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001085": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001086": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001087": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001088": ["2", "2", "2", "3", "None", "None", "2"]} +{"7001089": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001090": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001091": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001092": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001093": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001094": ["3", "1", "3", "1", "None", "None", "1"]} +{"7001095": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001096": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001097": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001098": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001099": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001100": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001101": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001102": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001103": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001104": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001105": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001106": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001107": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001108": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001109": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001110": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001111": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001112": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001113": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001114": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001115": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001116": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001117": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001118": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001119": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001120": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001121": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001122": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001123": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001124": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001125": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001126": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001127": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001128": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001129": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001130": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001131": ["2", "2", "3", "3", "None", "None", "3"]} +{"7001132": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001133": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001134": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001135": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001136": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001137": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001138": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001139": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001140": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001141": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001142": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001143": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001144": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001145": ["2", "2", "3", "1", "None", "None", "2"]} +{"7001146": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001147": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001148": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001149": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001150": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001151": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001152": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001153": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001154": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001155": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001156": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001157": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001158": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001159": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001160": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001161": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001162": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001163": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001164": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001165": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001166": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001167": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001168": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001169": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001170": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001171": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001172": ["2", "3", "2", "2", "None", "None", "3"]} +{"7001173": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001174": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001175": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001176": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001177": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001178": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001179": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001180": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001181": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001182": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001183": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001184": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001185": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001186": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001187": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001188": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001189": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001190": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001191": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001192": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001193": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001194": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001195": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001196": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001197": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001198": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001199": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001200": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001201": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001203": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001204": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001205": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001206": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001207": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001208": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001209": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001210": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001211": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001212": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001213": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001214": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001215": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001216": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001217": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001218": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001219": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001220": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001221": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001222": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001223": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001224": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001225": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001226": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001227": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001228": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001229": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001230": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001231": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001232": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001233": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001234": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001235": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001236": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001237": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001238": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001239": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001240": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001241": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001242": ["2", "3", "3", "2", "None", "None", "3"]} +{"7001243": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001244": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001245": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001246": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001247": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001248": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001249": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001250": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001251": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001252": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001253": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001254": ["3", "3", "1", "1", "None", "None", "2"]} +{"7001255": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001256": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001257": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001258": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001259": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001260": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001261": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001262": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001263": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001264": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001265": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001266": ["2", "1", "3", "1", "None", "None", "1"]} +{"7001267": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001268": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001269": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001270": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001271": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001272": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001273": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001274": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001275": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001276": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001277": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001278": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001279": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001280": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001281": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001282": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001283": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001284": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001285": ["3", "2", "2", "2", "None", "None", "2"]} +{"7001286": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001287": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001288": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001289": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001290": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001291": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001292": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001293": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001294": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001295": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001296": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001297": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001298": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001299": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001300": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001301": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001302": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001303": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001304": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001305": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001306": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001307": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001308": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001309": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001310": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001311": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001312": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001313": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001314": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001315": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001316": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001317": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001318": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001319": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001320": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001321": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001322": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001323": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001324": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001325": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001326": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001327": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001328": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001329": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001330": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001331": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001332": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001333": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001334": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001335": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001336": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001337": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001338": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001339": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001340": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001341": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001342": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001343": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001344": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001345": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001346": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001347": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001348": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001349": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001350": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001351": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001352": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001353": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001354": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001355": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001356": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001357": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001358": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001359": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001360": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001361": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001363": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001364": ["3", "3", "1", "1", "None", "None", "2"]} +{"7001365": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001366": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001367": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001368": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001369": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001370": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001371": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001372": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001373": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001374": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001375": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001376": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001377": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001378": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001379": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001380": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001381": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001382": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001383": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001384": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001385": ["3", "3", "3", "1", "None", "None", "3"]} +{"7001386": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001387": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001388": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001389": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001390": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001391": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001392": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001393": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001394": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001395": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001396": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001397": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001398": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001399": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001400": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001401": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001402": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001403": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001404": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001405": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001406": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001407": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001408": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001409": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001410": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001411": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001412": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001413": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001414": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001415": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001416": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001417": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001418": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001419": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001420": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001421": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001422": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001423": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001424": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001425": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001426": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001427": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001428": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001429": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001430": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001431": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001432": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001433": ["2", "1", "3", "1", "None", "None", "1"]} +{"7001434": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001435": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001436": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001437": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001438": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001439": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001440": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001441": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001442": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001444": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001445": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001446": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001447": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001448": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001449": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001450": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001451": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001452": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001453": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001454": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001455": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001456": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001457": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001458": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001459": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001460": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001461": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001462": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001463": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001464": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001465": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001466": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001467": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001468": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001469": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001470": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001471": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001472": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001474": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001475": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001476": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001477": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001478": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001479": ["3", "1", "3", "1", "None", "None", "2"]} +{"7001480": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001481": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001482": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001483": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001484": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001485": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001486": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001487": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001488": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001489": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001490": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001491": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001492": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001493": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001494": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001495": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001496": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001497": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001498": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001499": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001500": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001501": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001502": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001503": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001504": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001505": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001506": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001507": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001508": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001509": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001510": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001511": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001512": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001513": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001514": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001515": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001516": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001517": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001518": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001519": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001520": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001521": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001522": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001523": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001524": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001525": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001526": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001527": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001528": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001529": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001530": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001531": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001532": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001533": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001534": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001535": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001536": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001537": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001538": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001539": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001540": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001541": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001542": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001543": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001544": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001545": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001546": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001547": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001548": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001549": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001550": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001551": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001552": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001553": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001554": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001555": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001556": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001557": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001558": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001559": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001560": ["3", "3", "1", "1", "None", "None", "2"]} +{"7001561": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001562": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001563": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001564": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001565": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001566": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001567": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001568": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001569": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001570": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001571": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001572": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001573": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001574": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001575": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001576": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001577": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001578": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001579": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001580": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001581": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001582": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001583": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001584": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001585": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001586": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001587": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001588": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001589": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001590": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001591": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001592": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001593": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001594": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001595": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001596": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001597": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001598": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001599": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001600": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001601": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001602": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001603": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001604": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001605": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001606": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001607": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001608": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001609": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001610": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001611": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001612": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001613": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001614": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001615": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001616": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001617": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001618": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001619": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001620": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001621": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001622": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001623": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001624": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001625": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001626": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001627": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001628": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001629": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001630": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001631": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001632": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001633": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001634": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001635": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001636": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001637": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001638": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001639": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001640": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001641": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001642": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001643": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001644": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001645": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001646": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001647": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001648": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001649": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001650": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001651": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001652": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001653": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001654": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001655": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001656": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001657": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001658": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001659": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001660": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001661": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001662": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001663": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001664": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001665": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001666": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001667": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001668": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001669": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001670": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001671": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001672": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001673": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001674": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001675": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001676": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001677": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001678": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001679": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001680": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001681": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001682": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001683": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001684": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001685": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001686": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001687": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001688": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001689": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001690": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001691": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001692": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001693": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001694": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001695": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001696": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001697": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001698": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001699": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001700": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001701": ["2", "3", "3", "2", "None", "None", "3"]} +{"7001702": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001703": ["3", "3", "3", "1", "None", "None", "2"]} +{"7001704": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001705": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001706": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001707": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001708": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001709": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001710": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001711": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001712": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001713": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001714": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001715": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001716": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001717": ["3", "3", "1", "3", "None", "None", "2"]} +{"7001718": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001719": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001720": ["3", "3", "1", "3", "None", "None", "2"]} +{"7001721": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001722": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001723": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001724": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001725": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001726": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001727": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001728": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001729": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001730": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001731": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001732": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001733": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001734": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001735": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001736": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001738": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001739": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001740": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001741": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001742": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001743": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001744": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001745": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001746": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001747": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001748": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001749": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001750": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001751": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001752": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001753": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001754": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001755": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001756": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001757": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001758": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001759": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001760": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001761": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001762": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001763": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001764": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001765": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001766": ["3", "1", "3", "1", "None", "None", "3"]} +{"7001767": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001768": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001769": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001770": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001771": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001772": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001773": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001774": ["2", "3", "2", "3", "None", "None", "3"]} +{"7001775": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001776": ["3", "3", "1", "3", "None", "None", "2"]} +{"7001777": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001778": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001779": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001780": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001781": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001782": ["3", "2", "3", "2", "None", "None", "1"]} +{"7001783": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001784": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001785": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001786": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001787": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001788": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001789": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001790": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001791": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001792": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001793": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001794": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001795": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001796": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001798": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001799": ["3", "1", "3", "1", "None", "None", "1"]} +{"7001800": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001801": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001802": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001803": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001804": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001805": ["3", "1", "1", "2", "None", "None", "2"]} +{"7001806": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001807": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001808": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001809": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001810": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001811": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001812": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001813": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001814": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001815": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001816": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001817": ["3", "3", "2", "2", "None", "None", "2"]} +{"7001818": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001819": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001820": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001821": ["2", "2", "3", "3", "None", "None", "2"]} +{"7001822": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001823": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001824": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001825": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001826": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001827": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001828": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001829": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001830": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001831": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001832": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001833": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001834": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001835": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001836": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001837": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001838": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001839": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001840": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001842": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001843": ["3", "2", "3", "2", "None", "None", "1"]} +{"7001844": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001845": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001846": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001847": ["2", "3", "3", "2", "None", "None", "3"]} +{"7001848": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001849": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001850": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001851": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001852": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001853": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001854": ["3", "1", "3", "3", "None", "None", "3"]} +{"7001855": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001856": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001857": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001858": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001859": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001860": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001861": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001862": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001863": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001864": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001865": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001866": ["2", "3", "1", "1", "None", "None", "2"]} +{"7001867": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001868": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001869": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001870": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001871": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001872": ["3", "1", "3", "2", "None", "None", "2"]} +{"7001873": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001874": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001875": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001876": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001877": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001878": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001879": ["3", "3", "1", "2", "None", "None", "3"]} +{"7001880": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001881": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001882": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001883": ["2", "3", "2", "3", "None", "None", "2"]} +{"7001884": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001885": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001886": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001887": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001888": ["3", "3", "1", "1", "None", "None", "3"]} +{"7001889": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001890": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001891": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001892": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001893": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001894": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001895": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001896": ["3", "1", "3", "1", "None", "None", "2"]} +{"7001897": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001898": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001899": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001900": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001901": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001902": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001903": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001904": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001905": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001906": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001907": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001908": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001909": ["3", "3", "3", "2", "None", "None", "3"]} +{"7001910": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001911": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001912": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001913": ["2", "2", "3", "2", "None", "None", "3"]} +{"7001914": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001915": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001916": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001917": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001918": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001919": ["3", "2", "3", "3", "None", "None", "2"]} +{"7001920": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001921": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001922": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001923": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001924": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001925": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001926": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001927": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001928": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001929": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001930": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001931": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001932": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001933": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001934": ["3", "2", "3", "1", "None", "None", "2"]} +{"7001935": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001936": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001937": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001938": ["3", "2", "3", "3", "None", "None", "3"]} +{"7001939": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001940": ["3", "3", "1", "3", "None", "None", "2"]} +{"7001941": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001942": ["3", "3", "2", "2", "None", "None", "3"]} +{"7001943": ["2", "3", "3", "2", "None", "None", "1"]} +{"7001944": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001945": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001946": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001947": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001948": ["2", "3", "3", "3", "None", "None", "2"]} +{"7001949": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001950": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001951": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001952": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001953": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001954": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001955": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001956": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001957": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001958": ["2", "1", "3", "2", "None", "None", "2"]} +{"7001959": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001960": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001961": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001962": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001963": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001964": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001965": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001966": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001967": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001968": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001969": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001970": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001971": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001972": ["3", "3", "1", "3", "None", "None", "3"]} +{"7001973": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001974": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001975": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001976": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001977": ["3", "3", "3", "2", "None", "None", "2"]} +{"7001978": ["3", "1", "3", "3", "None", "None", "2"]} +{"7001979": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001980": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001981": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001982": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001983": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001984": ["3", "3", "2", "3", "None", "None", "3"]} +{"7001985": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001986": ["3", "2", "2", "2", "None", "None", "2"]} +{"7001987": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001988": ["2", "3", "3", "3", "None", "None", "3"]} +{"7001989": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001990": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001991": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001992": ["3", "2", "3", "2", "None", "None", "2"]} +{"7001993": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001994": ["3", "1", "3", "2", "None", "None", "3"]} +{"7001995": ["2", "2", "3", "2", "None", "None", "2"]} +{"7001996": ["3", "3", "1", "1", "None", "None", "2"]} +{"7001997": ["3", "3", "2", "3", "None", "None", "2"]} +{"7001998": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001999": ["2", "3", "3", "2", "None", "None", "2"]} +{"7001000": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001001": ["2", "3", "3", "2", "2", "2", "3"]} +{"7001002": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001003": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001004": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7001005": ["3", "3", "3", "3", "2", "2", "2"]} +{"7001006": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001007": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001008": ["3", "3", "3", "3", "3", "2", "3"]} +{"7001009": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001010": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001011": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001012": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001013": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001014": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001015": ["3", "3", "3", "2", "2", "2", "3"]} +{"7001016": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001017": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001018": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001019": ["3", "3", "1", "3", "2", "2", "2"]} +{"7001020": ["2", "3", "2", "3", "3", "3", "2"]} +{"7001021": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001022": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001023": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001024": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001025": ["3", "3", "3", "2", "2", "2", "2"]} +{"7001026": ["3", "3", "2", "2", "3", "3", "2"]} +{"7001027": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001028": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001029": ["3", "2", "3", "2", "3", "2", "3"]} +{"7001030": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001031": ["3", "3", "3", "3", "None", "None", "3"]} +{"7001031": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001032": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001033": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001034": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001035": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001036": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001037": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001038": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001039": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001040": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001041": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001042": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001043": ["3", "2", "3", "2", "3", "2", "2"]} +{"7001044": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001045": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001046": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001047": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001048": ["1", "2", "3", "2", "1", "1", "2"]} +{"7001049": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001050": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001051": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001052": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001053": ["2", "3", "2", "2", "3", "3", "2"]} +{"7001054": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001055": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001056": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001057": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001058": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001059": ["2", "1", "3", "2", "2", "2", "1"]} +{"7001060": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001061": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001062": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001063": ["3", "3", "3", "2", "2", "2", "3"]} +{"7001064": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001065": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001066": ["3", "2", "3", "2", "3", "2", "2"]} +{"7001067": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001068": ["2", "3", "2", "3", "2", "3", "3"]} +{"7001069": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001070": ["2", "3", "3", "3", "2", "2", "3"]} +{"7001071": ["3", "2", "3", "2", "3", "2", "3"]} +{"7001072": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001073": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001074": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001075": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001076": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001077": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001078": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001079": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001080": ["3", "1", "3", "1", "3", "2", "1"]} +{"7001081": ["2", "2", "3", "2", "2", "1", "2"]} +{"7001082": ["2", "2", "3", "2", "1", "1", "2"]} +{"7001083": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001084": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001085": ["2", "3", "3", "3", "2", "2", "3"]} +{"7001086": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001087": ["3", "2", "3", "2", "3", "2", "3"]} +{"7001088": ["2", "2", "2", "3", "3", "3", "2"]} +{"7001089": ["2", "3", "3", "3", "3", "2", "3"]} +{"7001090": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001091": ["3", "3", "2", "3", "2", "2", "3"]} +{"7001092": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001093": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001094": ["3", "1", "3", "1", "2", "2", "1"]} +{"7001095": ["2", "3", "3", "2", "2", "3", "2"]} +{"7001096": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001097": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001098": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001099": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001100": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001101": ["2", "3", "2", "3", "2", "3", "3"]} +{"7001102": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001103": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001104": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001105": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001106": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001107": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001108": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001109": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001110": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001111": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001112": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001113": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001114": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001115": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001116": ["3", "2", "3", "2", "2", "1", "2"]} +{"7001117": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001118": ["3", "3", "1", "3", "3", "2", "3"]} +{"7001119": ["3", "3", "2", "3", "2", "2", "3"]} +{"7001120": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001121": ["3", "2", "3", "3", "1", "2", "3"]} +{"7001122": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001123": ["3", "2", "3", "2", "1", "1", "3"]} +{"7001124": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001125": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001126": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001127": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001128": ["2", "3", "3", "3", "1", "1", "3"]} +{"7001129": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001130": ["2", "2", "3", "2", "3", "2", "2"]} +{"7001131": ["2", "2", "3", "3", "2", "3", "3"]} +{"7001132": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001133": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001134": ["3", "3", "3", "3", "3", "2", "3"]} +{"7001135": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001136": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001137": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001138": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001139": ["3", "3", "3", "3", "3", "2", "2"]} +{"7001140": ["3", "2", "3", "2", "1", "3", "3"]} +{"7001141": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001142": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001143": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001144": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001145": ["2", "2", "3", "1", "1", "2", "2"]} +{"7001146": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001147": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001148": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001149": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001150": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001151": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001152": ["2", "3", "2", "3", "2", "3", "3"]} +{"7001153": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001154": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001155": ["3", "2", "3", "2", "1", "3", "2"]} +{"7001156": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001157": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001158": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001159": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001160": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001161": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001162": ["3", "3", "3", "3", "1", "1", "3"]} +{"7001163": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001164": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001165": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001166": ["3", "3", "3", "3", "None", "None", "2"]} +{"7001167": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001168": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001169": ["3", "3", "3", "3", "3", "2", "3"]} +{"7001170": ["3", "2", "3", "2", "3", "None", "3"]} +{"7001171": ["3", "3", "3", "3", "1", "1", "3"]} +{"7001172": ["2", "3", "2", "2", "1", "1", "3"]} +{"7001173": ["3", "2", "3", "3", "1", "3", "2"]} +{"7001174": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001175": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001176": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001177": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001178": ["3", "3", "3", "3", "3", "2", "3"]} +{"7001179": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001180": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001181": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001180": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001181": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001182": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001183": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001184": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001185": ["3", "3", "3", "3", "1", "1", "2"]} +{"7001186": ["3", "1", "3", "2", "1", "2", "2"]} +{"7001187": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001188": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001189": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001190": ["3", "3", "2", "3", "2", "2", "3"]} +{"7001191": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001192": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001193": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001194": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001195": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001196": ["3", "3", "3", "2", "1", "3", "3"]} +{"7001197": ["3", "1", "3", "2", "1", "3", "2"]} +{"7001198": ["3", "3", "1", "1", "1", "3", "3"]} +{"7001199": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001200": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001201": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001202": ["None", "None", "None", "None", "1", "2", "None"]} +{"7001203": ["3", "2", "3", "3", "1", "2", "3"]} +{"7001204": ["2", "2", "3", "3", "3", "3", "2"]} +{"7001205": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001206": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001207": ["3", "3", "2", "2", "3", "3", "3"]} +{"7001208": ["3", "3", "2", "2", "3", "3", "3"]} +{"7001209": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001210": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001211": ["2", "3", "3", "2", "1", "3", "2"]} +{"7001212": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001213": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001214": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001215": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001216": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001217": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001218": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001219": ["3", "2", "3", "3", "1", "2", "2"]} +{"7001220": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001221": ["3", "3", "2", "3", "2", "2", "3"]} +{"7001222": ["3", "2", "3", "3", "2", "3", "3"]} +{"7001223": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001224": ["3", "3", "2", "3", "1", "2", "3"]} +{"7001225": ["3", "2", "3", "2", "2", "1", "3"]} +{"7001226": ["3", "2", "3", "2", "1", "2", "3"]} +{"7001227": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001228": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001229": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001230": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001231": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001232": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001233": ["2", "3", "3", "3", "3", "None", "2"]} +{"7001234": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001235": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001236": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001237": ["3", "3", "2", "2", "2", "3", "2"]} +{"7001238": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001239": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001240": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001241": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001242": ["2", "3", "3", "2", "3", "3", "3"]} +{"7001243": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001244": ["2", "2", "3", "3", "2", "3", "2"]} +{"7001245": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001246": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001247": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001248": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001249": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001250": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001251": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001252": ["2", "3", "3", "3", "1", "1", "2"]} +{"7001253": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001254": ["3", "3", "1", "1", "3", "3", "2"]} +{"7001255": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001256": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001257": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001258": ["3", "3", "1", "3", "1", "1", "3"]} +{"7001259": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001260": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001261": ["2", "3", "3", "2", "2", "3", "2"]} +{"7001262": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001263": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001264": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001265": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001266": ["2", "1", "3", "1", "3", "3", "1"]} +{"7001267": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001268": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001269": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001270": ["3", "3", "2", "3", "1", "2", "3"]} +{"7001271": ["2", "3", "3", "3", "1", "3", "3"]} +{"7001272": ["2", "3", "3", "2", "2", "3", "2"]} +{"7001273": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001274": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001275": ["3", "3", "2", "2", "1", "2", "2"]} +{"7001276": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001277": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001278": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001279": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001280": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001281": ["3", "3", "1", "3", "3", "3", "3"]} +{"7001282": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001283": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001284": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001285": ["3", "2", "2", "2", "1", "3", "2"]} +{"7001286": ["3", "3", "2", "3", "1", "2", "3"]} +{"7001287": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001288": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001289": ["2", "3", "3", "3", "2", "3", "2"]} +{"7001290": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001291": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001292": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001293": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001293": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001294": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001295": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001296": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001297": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001298": ["3", "2", "3", "2", "1", "2", "3"]} +{"7001299": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001300": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001301": ["3", "2", "3", "2", "2", "1", "2"]} +{"7001302": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001303": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001304": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001305": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001306": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001307": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001308": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001309": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001310": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001311": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001312": ["3", "3", "1", "3", "1", "1", "3"]} +{"7001313": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001314": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001315": ["3", "3", "1", "3", "1", "2", "3"]} +{"7001316": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001317": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001318": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001319": ["3", "3", "3", "3", "2", "1", "3"]} +{"7001320": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001321": ["2", "3", "2", "3", "1", "1", "3"]} +{"7001322": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001323": ["2", "2", "3", "2", "1", "3", "2"]} +{"7001324": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001325": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001326": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001327": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001328": ["3", "3", "3", "3", "3", "1", "3"]} +{"7001329": ["3", "1", "3", "2", "3", "2", "2"]} +{"7001330": ["3", "1", "3", "2", "2", "2", "2"]} +{"7001331": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001332": ["3", "3", "2", "2", "2", "3", "2"]} +{"7001333": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001334": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001335": ["3", "2", "3", "3", "1", "3", "3"]} +{"7001334": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001335": ["3", "2", "3", "3", "1", "3", "3"]} +{"7001336": ["3", "3", "2", "3", "1", "3", "3"]} +{"7001337": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001338": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001339": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001340": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001341": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001342": ["3", "3", "3", "3", "2", "3", "2"]} +{"7001343": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001344": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001345": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001346": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001347": ["3", "3", "1", "3", "3", "3", "3"]} +{"7001348": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001349": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001350": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001351": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001352": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001353": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001354": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001355": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001356": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001357": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001358": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001359": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001360": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001361": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001362": ["3", "3", "3", "2", "1", "2", "2"]} +{"7001363": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001364": ["3", "3", "1", "1", "3", "3", "2"]} +{"7001365": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001366": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001367": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001368": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001369": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001370": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001371": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001372": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001373": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001374": ["3", "1", "3", "2", "2", "2", "2"]} +{"7001375": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001376": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001377": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001378": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001379": ["3", "2", "3", "3", "2", "3", "3"]} +{"7001380": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001381": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001382": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001383": ["3", "3", "1", "1", "2", "3", "3"]} +{"7001383": ["3", "3", "1", "1", "2", "3", "3"]} +{"7001384": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001385": ["3", "3", "3", "1", "2", "3", "3"]} +{"7001386": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001387": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001388": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001389": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001390": ["3", "2", "3", "3", "3", "2", "3"]} +{"7001391": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001392": ["3", "3", "3", "2", "1", "3", "3"]} +{"7001393": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001394": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001395": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001394": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001395": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001396": ["3", "3", "3", "2", "1", "3", "2"]} +{"7001397": ["3", "3", "1", "1", "1", "3", "3"]} +{"7001398": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001399": ["2", "3", "3", "3", "2", "3", "2"]} +{"7001400": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001401": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001402": ["3", "3", "3", "3", "2", "3", "2"]} +{"7001403": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001404": ["3", "1", "3", "2", "1", "3", "2"]} +{"7001405": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001406": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001407": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001408": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001409": ["3", "1", "3", "2", "1", "2", "2"]} +{"7001410": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001411": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001412": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001413": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001414": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001415": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001416": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001417": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001418": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001419": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001420": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001421": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001422": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001423": ["2", "2", "3", "3", "1", "2", "2"]} +{"7001424": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001425": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001426": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001427": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001428": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001429": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001430": ["2", "3", "3", "3", "1", "2", "2"]} +{"7001431": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001432": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001433": ["2", "1", "3", "1", "2", "2", "1"]} +{"7001434": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001435": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001436": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001437": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001438": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001439": ["2", "2", "3", "2", "2", "2", "3"]} +{"7001440": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001441": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001442": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001443": ["None", "None", "None", "None", "3", "3", "None"]} +{"7001444": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001445": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001446": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001447": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001448": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001449": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001450": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001451": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001452": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001453": ["3", "1", "3", "2", "2", "2", "2"]} +{"7001454": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001455": ["3", "3", "3", "2", "2", "2", "2"]} +{"7001456": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001457": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001458": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001459": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001460": ["2", "3", "2", "3", "2", "3", "2"]} +{"7001461": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001462": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001463": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001464": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001465": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001466": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001467": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001468": ["3", "3", "1", "1", "2", "2", "3"]} +{"7001469": ["3", "3", "2", "3", "3", "3", "2"]} +{"7001470": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001471": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001472": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001473": ["3", "2", "2", "3", "2", "3", "3"]} +{"7001474": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001475": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001476": ["3", "3", "2", "3", "3", "3", "2"]} +{"7001477": ["3", "3", "2", "3", "1", "3", "2"]} +{"7001478": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001477": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001478": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001479": ["3", "1", "3", "1", "2", "3", "2"]} +{"7001480": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001481": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001482": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001483": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001484": ["3", "3", "1", "1", "1", "2", "3"]} +{"7001485": ["3", "3", "3", "3", "2", "3", "2"]} +{"7001486": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001487": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001488": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001489": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001490": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001491": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001492": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001493": ["3", "3", "3", "3", "2", "3", "2"]} +{"7001494": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001495": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001496": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001497": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001498": ["3", "2", "3", "3", "2", "3", "3"]} +{"7001499": ["3", "3", "3", "3", "3", "2", "2"]} +{"7001500": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001501": ["3", "3", "3", "2", "3", "2", "3"]} +{"7001502": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001503": ["3", "1", "3", "2", "3", "2", "2"]} +{"7001504": ["3", "2", "3", "2", "1", "2", "3"]} +{"7001505": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001505": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001506": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001507": ["2", "3", "2", "3", "2", "3", "2"]} +{"7001508": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001509": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001510": ["3", "1", "3", "2", "2", "2", "3"]} +{"7001511": ["3", "3", "1", "1", "1", "2", "3"]} +{"7001512": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001513": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001514": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001515": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001516": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001517": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001518": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001519": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001520": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001521": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001522": ["3", "3", "2", "3", "2", "2", "2"]} +{"7001523": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001524": ["2", "3", "3", "3", "3", "3", "2"]} +{"7001525": ["3", "3", "3", "2", "1", "2", "2"]} +{"7001526": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001527": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001528": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001529": ["3", "2", "3", "3", "2", "1", "2"]} +{"7001530": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001531": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001532": ["2", "3", "3", "3", "1", "2", "2"]} +{"7001533": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001534": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001535": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001536": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001537": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001538": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001539": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001540": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001541": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001542": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001543": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001544": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001545": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001546": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001547": ["2", "2", "3", "3", "3", "3", "2"]} +{"7001548": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001549": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001550": ["2", "3", "3", "3", "3", "3", "2"]} +{"7001551": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001552": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001553": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001554": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001555": ["3", "3", "1", "1", "2", "3", "3"]} +{"7001556": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001557": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001558": ["3", "3", "3", "2", "2", "2", "2"]} +{"7001559": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001560": ["3", "3", "1", "1", "3", "2", "2"]} +{"7001561": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001562": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001563": ["3", "3", "1", "3", "1", "2", "3"]} +{"7001564": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001565": ["3", "2", "3", "3", "1", "3", "2"]} +{"7001566": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001567": ["3", "3", "1", "1", "3", "3", "3"]} +{"7001568": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001569": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001570": ["3", "2", "3", "2", "1", "2", "3"]} +{"7001571": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001572": ["3", "3", "3", "3", "2", "3", "2"]} +{"7001573": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001574": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001575": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001576": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001577": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001578": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001579": ["3", "2", "3", "3", "2", "2", "3"]} +{"7001580": ["3", "3", "2", "2", "3", "3", "2"]} +{"7001581": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001582": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001583": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001584": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001585": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001586": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001587": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001588": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001589": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001590": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001591": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001592": ["2", "2", "3", "2", "3", "2", "2"]} +{"7001593": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001594": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001595": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001596": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001597": ["3", "3", "2", "2", "2", "2", "3"]} +{"7001598": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001599": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001600": ["2", "2", "3", "2", "1", "2", "2"]} +{"7001601": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001602": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001603": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001604": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001605": ["3", "3", "3", "2", "2", "2", "2"]} +{"7001605": ["3", "3", "3", "2", "2", "3", "2"]} +{"7001606": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001607": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001608": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001609": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001610": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001611": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001612": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001613": ["3", "2", "3", "2", "1", "2", "3"]} +{"7001614": ["2", "2", "3", "2", "2", "2", "2"]} +{"7001615": ["3", "3", "2", "2", "3", "3", "3"]} +{"7001616": ["3", "2", "3", "2", "1", "3", "2"]} +{"7001617": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001618": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001619": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001620": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001621": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001622": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001623": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001624": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001625": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001626": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001627": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001628": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001629": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001630": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001631": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001632": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001633": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001634": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001635": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001636": ["3", "3", "3", "3", "3", "2", "2"]} +{"7001637": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001638": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001639": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001640": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001641": ["3", "3", "2", "3", "1", "3", "2"]} +{"7001642": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001643": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001644": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001645": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001646": ["2", "3", "3", "3", "2", "2", "3"]} +{"7001646": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001647": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001648": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001649": ["3", "3", "2", "2", "2", "2", "3"]} +{"7001650": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001651": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001652": ["3", "1", "3", "2", "2", "3", "3"]} +{"7001653": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001654": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001655": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001656": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001657": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001658": ["2", "3", "3", "2", "1", "2", "2"]} +{"7001659": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001660": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001661": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001662": ["3", "2", "3", "2", "1", "3", "2"]} +{"7001663": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001664": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001665": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001666": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001667": ["3", "3", "3", "2", "1", "2", "2"]} +{"7001668": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001669": ["3", "3", "2", "3", "1", "2", "2"]} +{"7001670": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001671": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001672": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001673": ["3", "3", "3", "2", "1", "2", "2"]} +{"7001674": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001675": ["2", "3", "3", "3", "1", "2", "2"]} +{"7001676": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001677": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001678": ["3", "1", "3", "2", "2", "2", "3"]} +{"7001679": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001680": ["3", "3", "3", "3", "2", "2", "2"]} +{"7001681": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001682": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001683": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001684": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001685": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001686": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001687": ["2", "2", "3", "2", "1", "2", "2"]} +{"7001688": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001689": ["2", "3", "3", "2", "1", "2", "2"]} +{"7001690": ["2", "2", "3", "2", "3", "3", "2"]} +{"7001691": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001692": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001693": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001694": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001695": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001696": ["3", "3", "3", "3", "3", "2", "3"]} +{"7001697": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001698": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001699": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001700": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001701": ["2", "3", "3", "2", "3", "3", "3"]} +{"7001702": ["3", "3", "1", "1", "2", "3", "3"]} +{"7001703": ["3", "3", "3", "1", "1", "2", "2"]} +{"7001704": ["3", "3", "3", "2", "1", "2", "3"]} +{"7001705": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001706": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001707": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001708": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001709": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001710": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001711": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001712": ["3", "2", "3", "2", "2", "2", "3"]} +{"7001713": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001714": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001715": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001716": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001717": ["3", "3", "1", "3", "1", "2", "2"]} +{"7001718": ["3", "2", "3", "2", "2", "3", "3"]} +{"7001719": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001720": ["3", "3", "1", "3", "1", "2", "2"]} +{"7001721": ["3", "2", "3", "3", "2", "2", "3"]} +{"7001722": ["2", "2", "3", "2", "3", "2", "2"]} +{"7001723": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001724": ["3", "3", "1", "2", "3", "3", "3"]} +{"7001725": ["3", "3", "2", "2", "2", "2", "2"]} +{"7001726": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001727": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001727": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001728": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001729": ["2", "2", "3", "2", "1", "2", "2"]} +{"7001730": ["3", "3", "2", "2", "3", "3", "2"]} +{"7001731": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001732": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001733": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001734": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001735": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001736": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001735": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001736": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001737": ["None", "None", "None", "None", "3", "3", "None"]} +{"7001738": ["3", "3", "2", "2", "3", "3", "3"]} +{"7001739": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001740": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001741": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001742": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001743": ["3", "1", "3", "2", "2", "3", "3"]} +{"7001744": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001745": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001746": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001747": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001748": ["3", "3", "1", "2", "3", "3", "3"]} +{"7001749": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001750": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001751": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001752": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001753": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001754": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001755": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001756": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001757": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001758": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001759": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001760": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001761": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001762": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001763": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001764": ["3", "2", "3", "2", "1", "3", "2"]} +{"7001765": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001766": ["3", "1", "3", "1", "3", "3", "3"]} +{"7001767": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001768": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001769": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001770": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001771": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001772": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001773": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001774": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001775": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001776": ["3", "3", "1", "3", "2", "3", "2"]} +{"7001777": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001778": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001779": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001780": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001781": ["2", "3", "2", "3", "3", "3", "2"]} +{"7001782": ["3", "2", "3", "2", "3", "3", "1"]} +{"7001783": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001784": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001785": ["2", "2", "3", "2", "1", "3", "2"]} +{"7001786": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001787": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001788": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001789": ["2", "2", "3", "3", "1", "2", "2"]} +{"7001790": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001791": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001792": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001793": ["3", "3", "2", "2", "3", "3", "2"]} +{"7001794": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001795": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001796": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001797": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001798": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001799": ["3", "1", "3", "1", "3", "3", "1"]} +{"7001800": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001801": ["2", "3", "2", "3", "1", "3", "2"]} +{"7001802": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001803": ["3", "3", "3", "3", "1", "3", "3"]} +{"7001804": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001805": ["3", "1", "1", "2", "1", "2", "2"]} +{"7001806": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001807": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001808": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001809": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001810": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001811": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001812": ["3", "3", "2", "2", "2", "2", "2"]} +{"7001813": ["3", "3", "1", "2", "2", "2", "3"]} +{"7001814": ["3", "3", "2", "2", "2", "2", "2"]} +{"7001814": ["3", "3", "2", "2", "3", "3", "2"]} +{"7001815": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001816": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001817": ["3", "3", "2", "2", "2", "3", "2"]} +{"7001818": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001819": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001820": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001821": ["2", "2", "3", "3", "3", "3", "2"]} +{"7001822": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001823": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001824": ["3", "3", "2", "3", "1", "3", "3"]} +{"7001825": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001826": ["2", "3", "3", "3", "3", "3", "2"]} +{"7001827": ["3", "2", "3", "3", "2", "3", "2"]} +{"7001828": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001829": ["3", "1", "3", "2", "3", "3", "2"]} +{"7001830": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001831": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001832": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001833": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001834": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001835": ["3", "3", "3", "3", "1", "2", "3"]} +{"7001836": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001837": ["3", "3", "1", "3", "3", "3", "3"]} +{"7001838": ["3", "3", "1", "2", "2", "2", "3"]} +{"7001839": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001840": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001841": ["None", "None", "None", "None", "3", "3", "None"]} +{"7001842": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001843": ["3", "2", "3", "2", "1", "2", "1"]} +{"7001844": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001845": ["3", "2", "3", "2", "None", "None", "3"]} +{"7001844": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001845": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001846": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001847": ["2", "3", "3", "2", "2", "3", "3"]} +{"7001848": ["3", "3", "1", "2", "3", "3", "3"]} +{"7001849": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001850": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001851": ["2", "3", "3", "2", "3", "3", "2"]} +{"7001852": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001853": ["3", "1", "3", "2", "2", "3", "2"]} +{"7001854": ["3", "1", "3", "3", "1", "2", "3"]} +{"7001855": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001856": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001857": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001858": ["3", "3", "1", "3", "1", "2", "3"]} +{"7001859": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001860": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001861": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001862": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001863": ["3", "2", "3", "3", "2", "3", "3"]} +{"7001864": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001865": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001866": ["2", "3", "1", "1", "1", "2", "2"]} +{"7001867": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001868": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001869": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001870": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001871": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001872": ["3", "1", "3", "2", "2", "2", "2"]} +{"7001873": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001874": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001875": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001876": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001877": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001878": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001879": ["3", "3", "1", "2", "2", "3", "3"]} +{"7001880": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001881": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001881": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001882": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001883": ["2", "3", "2", "3", "3", "3", "2"]} +{"7001884": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001885": ["3", "3", "3", "2", "3", "2", "3"]} +{"7001886": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001887": ["3", "3", "3", "2", "1", "2", "2"]} +{"7001888": ["3", "3", "1", "1", "1", "2", "3"]} +{"7001889": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001890": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001891": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001892": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001893": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001894": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001895": ["3", "3", "3", "2", "3", "3", "3"]} +{"7001896": ["3", "1", "3", "1", "2", "3", "2"]} +{"7001897": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001898": ["2", "3", "3", "3", "2", "3", "2"]} +{"7001899": ["2", "2", "3", "2", "2", "3", "2"]} +{"7001900": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001901": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001902": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001903": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001904": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001905": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001906": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001907": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001908": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001909": ["3", "3", "3", "2", "2", "3", "3"]} +{"7001910": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001911": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001912": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001913": ["2", "2", "3", "2", "3", "3", "3"]} +{"7001914": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001915": ["3", "3", "3", "3", "1", "2", "2"]} +{"7001916": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001917": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001918": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001919": ["3", "2", "3", "3", "3", "3", "2"]} +{"7001920": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001921": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001922": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001923": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001924": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001925": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001926": ["3", "2", "3", "2", "3", "2", "2"]} +{"7001927": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001928": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001929": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001930": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001931": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001932": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001933": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001934": ["3", "2", "3", "1", "1", "3", "2"]} +{"7001935": ["3", "3", "2", "2", "2", "3", "3"]} +{"7001936": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001937": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001938": ["3", "2", "3", "3", "3", "3", "3"]} +{"7001939": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001940": ["3", "3", "1", "3", "3", "3", "2"]} +{"7001941": ["3", "3", "1", "3", "3", "3", "3"]} +{"7001942": ["3", "3", "2", "2", "3", "3", "3"]} +{"7001943": ["2", "3", "3", "2", "1", "3", "1"]} +{"7001944": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001945": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001946": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001947": ["2", "3", "3", "3", "1", "3", "2"]} +{"7001948": ["2", "3", "3", "3", "3", "3", "2"]} +{"7001949": ["2", "3", "3", "3", "3", "3", "3"]} +{"7001950": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001951": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001952": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001952": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001953": ["2", "3", "3", "3", "1", "2", "3"]} +{"7001954": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001955": ["3", "3", "3", "3", "1", "3", "2"]} +{"7001956": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001957": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001958": ["2", "1", "3", "2", "2", "3", "2"]} +{"7001959": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001960": ["3", "3", "2", "3", "2", "3", "2"]} +{"7001961": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001962": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001963": ["3", "3", "2", "3", "1", "2", "3"]} +{"7001964": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001965": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001966": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001967": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001968": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001969": ["3", "3", "2", "3", "2", "3", "3"]} +{"7001970": ["3", "2", "3", "2", "1", "2", "2"]} +{"7001971": ["3", "3", "1", "3", "3", "3", "3"]} +{"7001972": ["3", "3", "1", "3", "2", "3", "3"]} +{"7001973": ["2", "3", "3", "2", "2", "2", "2"]} +{"7001974": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001975": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001976": ["3", "3", "3", "3", "2", "3", "3"]} +{"7001977": ["3", "3", "3", "2", "3", "3", "2"]} +{"7001978": ["3", "1", "3", "3", "2", "3", "2"]} +{"7001979": ["3", "2", "3", "2", "3", "3", "3"]} +{"7001980": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001981": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001982": ["3", "2", "3", "2", "3", "3", "2"]} +{"7001983": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001984": ["3", "3", "2", "3", "3", "3", "3"]} +{"7001985": ["2", "3", "3", "2", "1", "3", "2"]} +{"7001986": ["3", "2", "2", "2", "2", "3", "2"]} +{"7001987": ["3", "2", "3", "2", "2", "3", "2"]} +{"7001988": ["2", "3", "3", "3", "2", "3", "3"]} +{"7001989": ["3", "3", "3", "3", "3", "3", "2"]} +{"7001990": ["3", "3", "2", "3", "3", "3", "2"]} +{"7001991": ["2", "3", "3", "2", "3", "3", "2"]} +{"7001992": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001993": ["3", "1", "3", "2", "2", "3", "3"]} +{"7001994": ["3", "1", "3", "2", "3", "3", "3"]} +{"7001995": ["2", "2", "3", "2", "3", "2", "2"]} +{"7001996": ["3", "3", "1", "1", "2", "2", "2"]} +{"7001997": ["3", "3", "2", "3", "3", "3", "2"]} +{"7001998": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001999": ["2", "3", "3", "2", "2", "2", "2"]} +{"7001000": ["2", "3", "2", "3", "3", "3", "3"]} +{"7001166": ["3", "3", "3", "3", "3", "1", "2"]} +{"7001170": ["3", "2", "3", "2", "3", "2", "3"]} +{"7001202": ["2", "2", "3", "3", "1", "2", "2"]} +{"7001233": ["2", "3", "3", "3", "1", "1", "1"]} +{"7001443": ["3", "2", "3", "3", "3", "2", "2"]} +{"7001737": ["2", "3", "3", "3", "3", "1", "2"]} +{"7001841": ["3", "3", "3", "3", "3", "3", "3"]} +{"7001799": ["3", "1", "3", "1", "3", "1", "1"]} +{"7001800": ["3", "2", "3", "2", "2", "1", "2"]} +{"7001805": ["3", "1", "1", "2", "1", "3", "2"]} +{"7001806": ["3", "2", "3", "2", "2", "2", "2"]} +{"7001807": ["2", "2", "3", "2", "2", "1", "2"]} +{"7001810": ["3", "2", "3", "2", "3", "2", "3"]} +{"7001816": ["3", "3", "2", "2", "2", "2", "3"]} +{"7001818": ["3", "3", "3", "3", "2", "2", "3"]} +{"7001828": ["3", "1", "3", "2", "2", "2", "2"]} +{"7001832": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7001839": ["2", "3", "3", "3", "3", "2", "3"]} +{"7001845": ["3", "2", "3", "2", "3", "2", "2"]} +{"7001847": ["2", "3", "3", "2", "2", "1", "1"]} diff --git a/webpage/res/res_current/ans_carol.jsonl b/webpage/res/res_current/ans_carol.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_dave.jsonl b/webpage/res/res_current/ans_dave.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_eve.jsonl b/webpage/res/res_current/ans_eve.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a059f216f1954917aee39c3f6ce696668e4c5ab8 --- /dev/null +++ b/webpage/res/res_current/ans_eve.jsonl @@ -0,0 +1,21 @@ +{"4003817": ["None", "None", "None", "None", "None", "None", "None"]} +{"7003239": ["3", "2", "3", "2", "3", "3", "3"]} +{"4003938": ["3", "2", "3", "3", "1", "3", "3"]} +{"7003761": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007545": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004764": ["3", "2", "3", "2", "2", "3", "2"]} +{"6004513": ["2", "2", "3", "2", "3", "1", "2"]} +{"3006708": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003120": ["3", "3", "3", "3", "1", "3", "3"]} +{"3003556": ["3", "2", "3", "3", "3", "3", "3"]} +{"4002384": ["3", "2", "3", "2", "3", "3", "3"]} +{"3004009": ["3", "2", "3", "3", "3", "1", "3"]} +{"2006988": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004763": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004077": ["2", "1", "3", "1", "1", "3", "1"]} +{"8002978": ["3", "2", "3", "2", "3", "1", "2"]} +{"8002876": ["2", "3", "3", "3", "2", "3", "3"]} +{"0003469": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004711": ["3", "3", "1", "3", "1", "3", "3"]} +{"3004935": ["3", "2", "3", "2", "3", "1", "2"]} +{"4004790": ["3", "2", "2", "3", "3", "1", "2"]} diff --git a/webpage/res/res_current/ans_frank.jsonl b/webpage/res/res_current/ans_frank.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_haonan.jsonl b/webpage/res/res_current/ans_haonan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..720aa8e0113d2a7e37007c5afe23b37a93e91a0c --- /dev/null +++ b/webpage/res/res_current/ans_haonan.jsonl @@ -0,0 +1,2130 @@ +{"5000000": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000001": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000002": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000003": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000004": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000005": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000006": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000007": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000008": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000009": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000010": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000011": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000012": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000013": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000014": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000015": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000016": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000017": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000018": ["2", "1", "2", "3", "None", "None", "2"]} +{"5000019": ["3", "2", "3", "1", "None", "None", "2"]} +{"5000020": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000021": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000022": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000023": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000024": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000025": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000026": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000027": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000028": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000029": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000030": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000031": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000032": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000033": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000034": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000035": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000036": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000037": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000038": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000039": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000040": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000041": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000042": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000043": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000044": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000045": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000046": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000047": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000048": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000049": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000050": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000051": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000052": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000053": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000054": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000055": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000056": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000057": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000058": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000059": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000060": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000061": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000062": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000063": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000064": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000065": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000066": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000067": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000068": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000069": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000070": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000071": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000072": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000073": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000075": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000076": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000077": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000078": ["3", "2", "3", "3", "None", "None", "3"]} +{"5000079": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000080": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000081": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000083": ["2", "2", "3", "1", "None", "None", "2"]} +{"5000084": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000085": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000086": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000087": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000088": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000089": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000090": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000091": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000092": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000093": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000094": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000095": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000096": ["3", "2", "3", "3", "None", "None", "3"]} +{"5000097": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000098": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000099": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000100": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000101": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000102": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000103": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000104": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000105": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000106": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000107": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000108": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000109": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000110": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000111": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000112": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000113": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000114": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000115": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000116": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000117": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000118": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000119": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000120": ["3", "2", "2", "3", "None", "None", "3"]} +{"5000121": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000122": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000123": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000124": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000125": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000126": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000127": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000128": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000129": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000130": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000131": ["1", "1", "3", "1", "None", "None", "2"]} +{"5000132": ["1", "1", "3", "1", "None", "None", "1"]} +{"5000133": ["3", "2", "3", "1", "None", "None", "2"]} +{"5000134": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000135": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000136": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000137": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000138": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000139": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000140": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000141": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000142": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000143": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000144": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000145": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000146": ["1", "1", "3", "1", "None", "None", "1"]} +{"5000147": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000148": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000149": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000150": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000151": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000152": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000153": ["3", "3", "2", "2", "None", "None", "2"]} +{"5000154": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000155": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000156": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000157": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000158": ["3", "2", "3", "2", "None", "None", "1"]} +{"5000159": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000160": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000161": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000162": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000164": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000165": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000166": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000167": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000168": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000169": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000170": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000171": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000172": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000173": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000174": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000175": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000176": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000177": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000178": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000179": ["3", "2", "1", "3", "None", "None", "2"]} +{"5000180": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000181": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000182": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000183": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000184": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000185": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000186": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000187": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000188": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000189": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000190": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000191": ["2", "3", "3", "3", "None", "None", "2"]} +{"5000192": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000193": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000194": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000195": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000196": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000197": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000198": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000199": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000200": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000201": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000202": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000203": ["1", "1", "1", "3", "None", "None", "1"]} +{"5000204": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000205": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000206": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000207": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000208": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000209": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000210": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000211": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000212": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000213": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000214": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000215": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000216": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000217": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000218": ["2", "2", "3", "2", "None", "None", "3"]} +{"5000219": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000220": ["3", "3", "3", "1", "None", "None", "1"]} +{"5000221": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000222": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000223": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000224": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000225": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000226": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000227": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000228": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000229": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000231": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000232": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000233": ["2", "3", "3", "1", "None", "None", "2"]} +{"5000234": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000235": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000236": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000237": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000238": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000239": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000240": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000241": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000243": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000244": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000245": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000246": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000247": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000248": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000249": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000250": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000251": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000252": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000253": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000254": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000255": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000256": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000257": ["2", "1", "3", "2", "None", "None", "3"]} +{"5000258": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000259": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000260": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000261": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000262": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000263": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000264": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000265": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000266": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000267": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000268": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000269": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000270": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000271": ["3", "2", "3", "1", "None", "None", "2"]} +{"5000272": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000273": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000274": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000275": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000276": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000277": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000278": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000279": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000280": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000281": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000282": ["3", "3", "3", "1", "None", "None", "2"]} +{"5000283": ["3", "2", "3", "1", "None", "None", "2"]} +{"5000284": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000285": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000286": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000287": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000288": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000289": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000290": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000291": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000292": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000293": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000294": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000295": ["3", "2", "3", "1", "None", "None", "2"]} +{"5000296": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000297": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000298": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000299": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000300": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000301": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000302": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000303": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000304": ["3", "1", "2", "3", "None", "None", "3"]} +{"5000305": ["3", "1", "2", "3", "None", "None", "3"]} +{"5000306": ["3", "3", "3", "1", "None", "None", "3"]} +{"5000307": ["2", "3", "3", "1", "None", "None", "2"]} +{"5000308": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000309": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000310": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000311": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000312": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000313": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000314": ["3", "1", "2", "3", "None", "None", "3"]} +{"5000315": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000316": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000317": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000318": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000319": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000320": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000321": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000322": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000323": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000324": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000325": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000327": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000328": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000329": ["2", "3", "3", "3", "None", "None", "2"]} +{"5000330": ["3", "3", "3", "1", "None", "None", "1"]} +{"5000331": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000332": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000333": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000334": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000335": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000336": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000337": ["1", "2", "3", "2", "None", "None", "2"]} +{"5000338": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000339": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000340": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000341": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000342": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000343": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000344": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000345": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000346": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000347": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000348": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000349": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000350": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000351": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000352": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000353": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000354": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000355": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000356": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000357": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000358": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000359": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000360": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000361": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000362": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000363": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000364": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000365": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000366": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000367": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000368": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000369": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000371": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000372": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000373": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000374": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000375": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000376": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000377": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000378": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000379": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000380": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000381": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000382": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000383": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000384": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000385": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000386": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000387": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000388": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000389": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000390": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000391": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000392": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000393": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000394": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000395": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000396": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000397": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000398": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000399": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000400": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000401": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000402": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000403": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000404": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000405": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000406": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000407": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000408": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000409": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000410": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000411": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000412": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000413": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000414": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000415": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000416": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000417": ["2", "2", "3", "2", "None", "None", "1"]} +{"5000418": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000419": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000420": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000421": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000422": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000423": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000424": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000425": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000426": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000427": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000428": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000429": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000430": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000431": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000432": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000433": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000434": ["2", "1", "3", "1", "None", "None", "1"]} +{"5000435": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000436": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000437": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000438": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000439": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000440": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000441": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000442": ["3", "2", "3", "2", "None", "None", "1"]} +{"5000443": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000444": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000445": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000446": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000447": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000448": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000449": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000450": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000451": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000452": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000453": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000454": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000455": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000456": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000457": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000458": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000459": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000460": ["3", "2", "3", "2", "None", "None", "1"]} +{"5000461": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000462": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000463": ["3", "1", "3", "1", "None", "None", "1"]} +{"5000464": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000465": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000466": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000467": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000468": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000469": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000470": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000471": ["2", "1", "3", "1", "None", "None", "2"]} +{"5000472": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000473": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000474": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000475": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000476": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000477": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000478": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000479": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000480": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000481": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000482": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000483": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000484": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000485": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000486": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000487": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000488": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000489": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000490": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000491": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000492": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000493": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000494": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000495": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000496": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000497": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000498": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000499": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000500": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000501": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000502": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000503": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000504": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000505": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000506": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000507": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000508": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000509": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000510": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000511": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000512": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000513": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000514": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000515": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000516": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000517": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000518": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000519": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000520": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000521": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000522": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000523": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000524": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000525": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000526": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000527": ["3", "2", "2", "2", "None", "None", "1"]} +{"5000528": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000529": ["2", "3", "3", "3", "None", "None", "2"]} +{"5000530": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000531": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000532": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000533": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000534": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000535": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000536": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000537": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000538": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000539": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000540": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000541": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000542": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000543": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000544": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000546": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000547": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000548": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000549": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000550": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000551": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000552": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000553": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000554": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000555": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000556": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000557": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000558": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000559": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000560": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000561": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000562": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000563": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000564": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000565": ["3", "2", "2", "3", "None", "None", "2"]} +{"5000566": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000567": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000568": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000569": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000570": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000571": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000572": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000573": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000574": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000575": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000576": ["3", "2", "2", "3", "None", "None", "2"]} +{"5000577": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000578": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000579": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000580": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000581": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000582": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000583": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000584": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000585": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000586": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000587": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000588": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000589": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000590": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000591": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000592": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000593": ["3", "3", "2", "2", "None", "None", "3"]} +{"5000594": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000595": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000596": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000597": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000598": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000599": ["3", "1", "3", "2", "None", "None", "3"]} +{"5000600": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000601": ["3", "3", "3", "1", "None", "None", "2"]} +{"5000602": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000603": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000604": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000605": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000606": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000607": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000608": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000609": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000610": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000611": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000612": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000613": ["3", "2", "3", "3", "None", "None", "3"]} +{"5000614": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000615": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000616": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000617": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000618": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000619": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000620": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000621": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000622": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000623": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000624": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000625": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000626": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000627": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000628": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000629": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000630": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000631": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000632": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000633": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000634": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000635": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000636": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000637": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000638": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000639": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000640": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000641": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000642": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000643": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000644": ["2", "3", "2", "3", "None", "None", "2"]} +{"5000645": ["2", "3", "1", "3", "None", "None", "2"]} +{"5000646": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000647": ["3", "1", "3", "1", "None", "None", "2"]} +{"5000648": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000649": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000650": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000651": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000652": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000653": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000654": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000655": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000656": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000657": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000658": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000659": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000660": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000661": ["2", "3", "2", "3", "None", "None", "2"]} +{"5000662": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000663": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000664": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000665": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000666": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000667": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000668": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000669": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000670": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000671": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000672": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000673": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000674": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000675": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000676": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000677": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000678": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000679": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000680": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000681": ["2", "1", "3", "2", "None", "None", "1"]} +{"5000682": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000683": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000684": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000685": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000686": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000687": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000688": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000689": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000690": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000691": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000692": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000693": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000694": ["3", "1", "1", "3", "None", "None", "2"]} +{"5000695": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000696": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000697": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000698": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000699": ["3", "2", "1", "2", "None", "None", "2"]} +{"5000700": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000701": ["3", "3", "2", "2", "None", "None", "3"]} +{"5000702": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000703": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000704": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000705": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000706": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000707": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000708": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000709": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000710": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000711": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000712": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000713": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000714": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000715": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000716": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000717": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000718": ["3", "2", "2", "2", "None", "None", "2"]} +{"5000719": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000720": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000721": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000722": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000723": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000724": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000725": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000726": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000727": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000728": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000729": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000730": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000731": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000732": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000733": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000734": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000735": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000736": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000737": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000738": ["3", "2", "2", "2", "None", "None", "2"]} +{"5000739": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000740": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000741": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000742": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000743": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000744": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000745": ["2", "3", "2", "3", "None", "None", "2"]} +{"5000746": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000747": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000748": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000749": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000750": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000751": ["2", "2", "3", "2", "None", "None", "3"]} +{"5000752": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000753": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000754": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000755": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000756": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000757": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000758": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000759": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000760": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000761": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000762": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000763": ["3", "2", "1", "3", "None", "None", "2"]} +{"5000764": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000765": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000766": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000767": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000768": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000769": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000770": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000771": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000772": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000773": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000774": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000775": ["3", "2", "3", "3", "None", "None", "1"]} +{"5000776": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000777": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000778": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000779": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000780": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000781": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000782": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000783": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000784": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000785": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000786": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000787": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000788": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000789": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000790": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000791": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000792": ["2", "1", "3", "2", "None", "None", "2"]} +{"5000793": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000794": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000795": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000796": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000797": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000798": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000799": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000800": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000801": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000802": ["2", "2", "3", "2", "None", "None", "3"]} +{"5000803": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000804": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000805": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000806": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000807": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000808": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000809": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000810": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000811": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000812": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000813": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000814": ["3", "2", "3", "3", "None", "None", "3"]} +{"5000815": ["2", "2", "2", "3", "None", "None", "2"]} +{"5000816": ["3", "2", "2", "2", "None", "None", "2"]} +{"5000817": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000818": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000819": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000820": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000821": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000822": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000823": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000824": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000825": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000826": ["3", "2", "2", "3", "None", "None", "3"]} +{"5000827": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000828": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000829": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000830": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000831": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000832": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000833": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000834": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000835": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000836": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000837": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000838": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000839": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000840": ["3", "1", "3", "3", "None", "None", "3"]} +{"5000841": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000842": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000843": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000844": ["2", "2", "3", "3", "None", "None", "3"]} +{"5000845": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000846": ["3", "2", "3", "3", "None", "None", "3"]} +{"5000847": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000848": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000849": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000850": ["2", "2", "2", "3", "None", "None", "2"]} +{"5000851": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000852": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000853": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000854": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000855": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000856": ["3", "3", "2", "2", "None", "None", "3"]} +{"5000857": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000859": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000860": ["3", "2", "2", "3", "None", "None", "3"]} +{"5000861": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000862": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000863": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000864": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000865": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000866": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000867": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000868": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000869": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000870": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000871": ["3", "3", "3", "3", "None", "None", "2"]} +{"5000872": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000873": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000874": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000875": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000876": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000877": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000878": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000879": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000880": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000881": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000882": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000883": ["3", "1", "3", "3", "None", "None", "2"]} +{"5000884": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000885": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000886": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000887": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000888": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000889": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000890": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000891": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000892": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000893": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000894": ["3", "3", "2", "2", "None", "None", "3"]} +{"5000895": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000896": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000897": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000898": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000899": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000900": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000901": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000902": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000903": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000904": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000905": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000906": ["3", "1", "3", "2", "None", "None", "2"]} +{"5000907": ["3", "3", "1", "2", "None", "None", "2"]} +{"5000908": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000909": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000910": ["2", "2", "3", "3", "None", "None", "2"]} +{"5000911": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000912": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000913": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000914": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000915": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000916": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000917": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000918": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000919": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000920": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000921": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000922": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000923": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000924": ["3", "3", "3", "2", "None", "None", "3"]} +{"5000925": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000926": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000927": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000928": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000929": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000930": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000931": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000932": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000933": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000934": ["2", "3", "2", "3", "None", "None", "2"]} +{"5000935": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000936": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000937": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000938": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000939": ["3", "3", "3", "2", "None", "None", "2"]} +{"5000940": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000941": ["3", "3", "1", "3", "None", "None", "3"]} +{"5000942": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000943": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000944": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000945": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000946": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000947": ["3", "3", "2", "3", "None", "None", "2"]} +{"5000948": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000949": ["3", "2", "3", "3", "None", "None", "2"]} +{"5000950": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000951": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000952": ["3", "2", "3", "2", "None", "None", "2"]} +{"5000953": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000954": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000955": ["3", "2", "3", "2", "None", "None", "3"]} +{"5000956": ["3", "3", "1", "3", "None", "None", "2"]} +{"5000957": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000958": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000959": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000960": ["2", "3", "2", "3", "None", "None", "2"]} +{"5000961": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000962": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000963": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000964": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000965": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000966": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000967": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000968": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000969": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000970": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000971": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000972": ["3", "3", "1", "1", "None", "None", "3"]} +{"5000973": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000974": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000975": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000976": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000977": ["2", "3", "3", "2", "None", "None", "3"]} +{"5000978": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000979": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000980": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000981": ["2", "3", "3", "2", "None", "None", "2"]} +{"5000982": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000983": ["2", "3", "2", "3", "None", "None", "3"]} +{"5000984": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000985": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000986": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000987": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000988": ["2", "2", "3", "2", "None", "None", "2"]} +{"5000989": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000990": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000991": ["2", "3", "3", "3", "None", "None", "2"]} +{"5000992": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000993": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000994": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000995": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000996": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000997": ["2", "3", "3", "3", "None", "None", "2"]} +{"5000998": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000999": ["3", "3", "2", "3", "None", "None", "3"]} +{"5000000": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000001": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000002": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000003": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000004": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000005": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000006": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000007": ["3", "3", "3", "2", "3", "1", "2"]} +{"5000008": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000009": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000010": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000011": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000012": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000013": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000014": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000015": ["3", "1", "3", "2", "1", "2", "2"]} +{"5000016": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000017": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000018": ["2", "1", "2", "3", "2", "2", "2"]} +{"5000019": ["3", "2", "3", "1", "2", "2", "2"]} +{"5000020": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000021": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000022": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000023": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000024": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000025": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000026": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000027": ["2", "1", "3", "1", "3", "3", "1"]} +{"5000028": ["2", "2", "3", "3", "3", "3", "2"]} +{"5000029": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000030": ["3", "2", "3", "3", "3", "2", "2"]} +{"5000031": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000032": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000033": ["3", "3", "2", "3", "2", "3", "3"]} +{"5000034": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000035": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000036": ["3", "3", "3", "2", "2", "3", "3"]} +{"5000037": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000038": ["2", "2", "3", "3", "3", "2", "2"]} +{"5000039": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000040": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000041": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000042": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000043": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000044": ["2", "2", "3", "3", "2", "3", "2"]} +{"5000045": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000046": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000047": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000048": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000049": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000050": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000051": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000052": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000053": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000054": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000055": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000056": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000057": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000058": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000059": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000060": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000061": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000062": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000063": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000064": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000065": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000066": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000067": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000068": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000069": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000070": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000071": ["3", "2", "3", "2", "1", "1", "2"]} +{"5000072": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000073": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000074": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000075": ["3", "3", "3", "2", "2", "2", "2"]} +{"5000076": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000077": ["2", "1", "3", "2", "2", "3", "2"]} +{"5000078": ["3", "2", "3", "3", "1", "3", "3"]} +{"5000079": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000080": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000081": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000082": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000083": ["2", "2", "3", "1", "3", "3", "2"]} +{"5000084": ["2", "3", "3", "2", "3", "2", "3"]} +{"5000085": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000086": ["3", "2", "3", "2", "1", "1", "2"]} +{"5000087": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000088": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000089": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000090": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000091": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000092": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000093": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000094": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000095": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000096": ["3", "2", "3", "3", "3", "3", "3"]} +{"5000097": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000098": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000099": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000100": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000100": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000101": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000102": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000103": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000104": ["3", "1", "3", "1", "2", "3", "1"]} +{"5000105": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000106": ["3", "1", "3", "1", "2", "1", "1"]} +{"5000107": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000108": ["2", "1", "3", "1", "3", "2", "2"]} +{"5000109": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000110": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000111": ["2", "1", "3", "2", "3", "2", "2"]} +{"5000112": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000113": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000114": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000115": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000116": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000117": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000118": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000119": ["3", "1", "3", "3", "3", "2", "2"]} +{"5000120": ["3", "2", "2", "3", "2", "3", "3"]} +{"5000121": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000122": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000123": ["2", "1", "3", "1", "2", "3", "2"]} +{"5000124": ["2", "1", "3", "1", "2", "3", "2"]} +{"5000125": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000126": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000127": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000128": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000129": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000130": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000131": ["1", "1", "3", "1", "3", "3", "2"]} +{"5000132": ["1", "1", "3", "1", "1", "1", "1"]} +{"5000133": ["3", "2", "3", "1", "3", "3", "2"]} +{"5000134": ["3", "1", "3", "1", "3", "2", "1"]} +{"5000135": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000136": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000137": ["3", "1", "3", "1", "3", "2", "1"]} +{"5000138": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000139": ["2", "3", "3", "3", "1", "1", "3"]} +{"5000140": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000140": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000141": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000142": ["3", "1", "3", "2", "3", "3", "3"]} +{"5000143": ["2", "3", "3", "2", "2", "2", "2"]} +{"5000144": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000145": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000146": ["1", "1", "3", "1", "3", "3", "1"]} +{"5000147": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000148": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000149": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000150": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000151": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000152": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000153": ["3", "3", "2", "2", "3", "3", "2"]} +{"5000154": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000155": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000156": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000157": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000158": ["3", "2", "3", "2", "2", "2", "1"]} +{"5000159": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000160": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000161": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000162": ["2", "3", "3", "2", "3", "2", "2"]} +{"5000163": ["3", "3", "2", "3", "1", "3", "2"]} +{"5000164": ["2", "2", "3", "3", "3", "2", "2"]} +{"5000165": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000166": ["2", "3", "3", "2", "3", "2", "2"]} +{"5000167": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000168": ["3", "3", "2", "3", "3", "2", "2"]} +{"5000169": ["3", "3", "2", "3", "2", "2", "2"]} +{"5000170": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000171": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000172": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000173": ["2", "3", "3", "2", "2", "3", "2"]} +{"5000174": ["3", "3", "3", "2", "2", "2", "3"]} +{"5000175": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000176": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000177": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000178": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000179": ["3", "2", "1", "3", "3", "2", "2"]} +{"5000180": ["2", "2", "3", "3", "3", "2", "2"]} +{"5000181": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000182": ["3", "3", "3", "3", "3", "2", "2"]} +{"5000183": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000184": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000185": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000186": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000187": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000188": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000189": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000190": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000191": ["2", "3", "3", "3", "3", "2", "2"]} +{"5000192": ["2", "2", "3", "3", "2", "2", "2"]} +{"5000193": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000193": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000194": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000195": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000196": ["3", "3", "2", "3", "2", "2", "2"]} +{"5000197": ["2", "2", "3", "2", "2", "1", "2"]} +{"5000198": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000199": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000200": ["3", "3", "1", "3", "2", "3", "2"]} +{"5000201": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000202": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000203": ["1", "1", "1", "3", "2", "3", "1"]} +{"5000204": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000205": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000206": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000207": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000208": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000209": ["3", "3", "3", "2", "2", "2", "2"]} +{"5000210": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000211": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000212": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000213": ["2", "2", "3", "2", "1", "3", "2"]} +{"5000214": ["2", "2", "3", "3", "2", "3", "3"]} +{"5000215": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000216": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000217": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000218": ["2", "2", "3", "2", "3", "3", "3"]} +{"5000219": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000220": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000221": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000222": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000223": ["2", "1", "3", "1", "3", "3", "1"]} +{"5000224": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000225": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000226": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000227": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000228": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000229": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000230": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000231": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000232": ["3", "3", "3", "2", "2", "3", "2"]} +{"5000233": ["2", "3", "3", "1", "2", "3", "2"]} +{"5000233": ["2", "3", "3", "1", "2", "3", "2"]} +{"5000234": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000235": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000236": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000237": ["2", "1", "3", "1", "3", "1", "1"]} +{"5000238": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000239": ["3", "1", "3", "1", "2", "3", "2"]} +{"5000240": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000241": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000242": ["3", "2", "3", "3", "3", "3", "3"]} +{"5000243": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000244": ["3", "1", "3", "1", "3", "3", "2"]} +{"5000245": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000246": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000247": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000248": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000249": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000250": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000251": ["2", "1", "3", "1", "3", "3", "1"]} +{"5000252": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000253": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000254": ["2", "1", "3", "1", "3", "3", "1"]} +{"5000255": ["2", "1", "3", "1", "2", "2", "1"]} +{"5000256": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000257": ["2", "1", "3", "2", "3", "3", "3"]} +{"5000258": ["3", "1", "3", "1", "2", "3", "1"]} +{"5000259": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000259": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000260": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000261": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000262": ["3", "1", "3", "2", "2", "1", "3"]} +{"5000263": ["3", "1", "3", "2", "3", "3", "3"]} +{"5000264": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000265": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000265": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000265": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000266": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000267": ["2", "2", "3", "2", "3", "1", "2"]} +{"5000268": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000269": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000270": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000271": ["3", "2", "3", "1", "1", "3", "2"]} +{"5000272": ["3", "1", "3", "2", "1", "3", "2"]} +{"5000273": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000274": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000275": ["3", "3", "3", "3", "3", "3", "2"]} +{"5000276": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000277": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000278": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000279": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000280": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000281": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000282": ["3", "3", "3", "1", "3", "3", "2"]} +{"5000283": ["3", "2", "3", "1", "2", "2", "2"]} +{"5000284": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000285": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000286": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000287": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000288": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000289": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000290": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000291": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000292": ["3", "1", "3", "2", "3", "3", "3"]} +{"5000293": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000294": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000295": ["3", "2", "3", "1", "3", "2", "2"]} +{"5000296": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000297": ["3", "1", "3", "1", "3", "3", "2"]} +{"5000298": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000299": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000300": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000301": ["3", "1", "3", "1", "1", "1", "1"]} +{"5000302": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000303": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000304": ["3", "1", "2", "3", "3", "3", "3"]} +{"5000305": ["3", "1", "2", "3", "3", "3", "3"]} +{"5000306": ["3", "3", "3", "1", "2", "3", "3"]} +{"5000307": ["2", "3", "3", "1", "3", "3", "2"]} +{"5000308": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000310": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000311": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000313": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000314": ["3", "1", "2", "3", "3", "3", "3"]} +{"5000315": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000316": ["3", "1", "3", "1", "2", "3", "2"]} +{"5000317": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000319": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000320": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000321": ["2", "2", "3", "2", "2", "2", "2"]} +{"5000322": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000323": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000324": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000325": ["3", "1", "3", "1", "3", "3", "2"]} +{"5000327": ["3", "1", "3", "1", "2", "3", "1"]} +{"5000328": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000329": ["2", "3", "3", "3", "3", "3", "2"]} +{"5000330": ["3", "3", "3", "1", "1", "3", "1"]} +{"5000332": ["2", "1", "3", "2", "2", "3", "2"]} +{"5000333": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000334": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000335": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000336": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000337": ["1", "2", "3", "2", "2", "3", "2"]} +{"5000338": ["3", "1", "3", "1", "2", "3", "1"]} +{"5000339": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000340": ["3", "1", "3", "2", "2", "2", "3"]} +{"5000341": ["3", "1", "3", "1", "1", "2", "2"]} +{"5000342": ["3", "1", "3", "1", "2", "3", "2"]} +{"5000343": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000344": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000345": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000346": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000347": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000348": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000349": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000350": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000351": ["2", "1", "3", "1", "3", "2", "2"]} +{"5000352": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000353": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000354": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000355": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000356": ["3", "1", "3", "2", "3", "3", "3"]} +{"5000357": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000358": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000359": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000360": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000361": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000362": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000363": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000364": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000365": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000366": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000367": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000368": ["2", "1", "3", "1", "2", "2", "1"]} +{"5000369": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000370": ["3", "1", "3", "2", "2", "1", "1"]} +{"5000371": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000372": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000373": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000374": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000375": ["3", "1", "3", "3", "3", "3", "2"]} +{"5000376": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000377": ["3", "1", "3", "1", "3", "2", "2"]} +{"5000378": ["2", "1", "3", "2", "2", "3", "2"]} +{"5000379": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000380": ["3", "1", "3", "1", "3", "2", "2"]} +{"5000381": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000382": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000383": ["3", "1", "3", "2", "2", "2", "3"]} +{"5000384": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000385": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000386": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000387": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000388": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000389": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000390": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000391": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000392": ["2", "1", "3", "2", "3", "2", "2"]} +{"5000393": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000394": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000395": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000396": ["3", "1", "3", "2", "2", "2", "3"]} +{"5000397": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000398": ["3", "1", "3", "1", "3", "3", "2"]} +{"5000399": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000400": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000401": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000402": ["2", "2", "3", "2", "1", "3", "2"]} +{"5000403": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000404": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000405": ["2", "3", "3", "3", "2", "1", "3"]} +{"5000406": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000407": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000408": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000409": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000410": ["3", "1", "3", "3", "3", "3", "3"]} +{"5000411": ["3", "1", "3", "2", "1", "2", "2"]} +{"5000412": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000413": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000414": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000415": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000416": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000417": ["2", "2", "3", "2", "2", "2", "1"]} +{"5000418": ["2", "1", "3", "2", "3", "2", "2"]} +{"5000419": ["2", "1", "3", "1", "3", "3", "2"]} +{"5000420": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000421": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000422": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000423": ["3", "1", "3", "2", "3", "1", "2"]} +{"5000424": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000425": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000426": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000427": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000428": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000429": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000430": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000431": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000432": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000433": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000434": ["2", "1", "3", "1", "2", "2", "1"]} +{"5000435": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000436": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000437": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000438": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000439": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000440": ["2", "1", "3", "2", "3", "1", "2"]} +{"5000441": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000442": ["3", "2", "3", "2", "3", "2", "1"]} +{"5000443": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000444": ["2", "3", "3", "2", "2", "1", "2"]} +{"5000445": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000446": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000447": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000448": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000449": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000450": ["3", "1", "3", "2", "2", "3", "2"]} +{"5000451": ["3", "1", "3", "1", "2", "3", "2"]} +{"5000452": ["2", "1", "3", "2", "3", "2", "2"]} +{"5000453": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000454": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000455": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000456": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000457": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000458": ["3", "1", "3", "2", "1", "3", "2"]} +{"5000459": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000460": ["3", "2", "3", "2", "1", "2", "1"]} +{"5000461": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000462": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000462": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000463": ["3", "1", "3", "1", "3", "3", "1"]} +{"5000464": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000465": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000466": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000467": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000468": ["3", "1", "3", "2", "3", "3", "3"]} +{"5000469": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000470": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000471": ["2", "1", "3", "1", "2", "2", "2"]} +{"5000472": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000473": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000474": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000475": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000476": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000477": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000478": ["3", "2", "3", "2", "1", "2", "2"]} +{"5000479": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000480": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000481": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000482": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000483": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000484": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000485": ["2", "2", "3", "2", "1", "2", "2"]} +{"5000486": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000487": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000488": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000489": ["3", "1", "3", "3", "3", "2", "3"]} +{"5000490": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000491": ["3", "2", "3", "3", "3", "2", "2"]} +{"5000492": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000493": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000494": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000495": ["3", "1", "3", "1", "3", "2", "2"]} +{"5000496": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000497": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000498": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000339": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000340": ["3", "1", "3", "2", "2", "2", "3"]} +{"5000341": ["3", "1", "3", "1", "1", "2", "2"]} +{"5000342": ["3", "1", "3", "1", "2", "3", "2"]} +{"5000343": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000344": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000309": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000312": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000318": ["3", "1", "3", "1", "3", "3", "2"]} +{"5000326": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000327": ["3", "1", "3", "1", "2", "3", "1"]} +{"5000328": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000329": ["2", "3", "3", "3", "3", "3", "2"]} +{"5000330": ["3", "3", "3", "1", "1", "3", "1"]} +{"5000331": ["2", "1", "3", "1", "2", "3", "1"]} +{"5000499": ["2", "1", "3", "2", "3", "3", "2"]} +{"5000500": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000501": ["3", "3", "3", "3", "3", "3", "2"]} +{"5000502": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000503": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000504": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000505": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000506": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000506": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000507": ["3", "3", "3", "3", "1", "2", "3"]} +{"5000200": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000202": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000203": ["3", "1", "3", "3", "2", "3", "1"]} +{"5000000": ["3", "1", "3", "2", "3", "1", "2"]} +{"5000001": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000001": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000002": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000006": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000011": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000012": ["3", "1", "3", "2", "3", "2", "2"]} +{"5000013": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000014": ["3", "1", "3", "2", "3", "1", "1"]} +{"5000015": ["3", "1", "3", "2", "1", "1", "1"]} +{"5000016": ["3", "2", "3", "3", "3", "2", "2"]} +{"5000018": ["2", "1", "2", "3", "2", "1", "2"]} +{"5000508": ["3", "3", "1", "3", "3", "3", "3"]} +{"5000509": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000510": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000511": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000512": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000513": ["2", "3", "3", "3", "3", "1", "3"]} +{"5000514": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000515": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000516": ["2", "3", "3", "2", "2", "2", "2"]} +{"5000517": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000518": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000519": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000519": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000520": ["3", "3", "3", "2", "1", "3", "2"]} +{"5000521": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000522": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000523": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000524": ["3", "3", "1", "1", "3", "3", "3"]} +{"5000525": ["2", "1", "3", "2", "2", "3", "2"]} +{"5000526": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000526": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000527": ["3", "2", "2", "2", "2", "3", "1"]} +{"5000528": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000529": ["2", "3", "3", "3", "1", "1", "2"]} +{"5000530": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000531": ["3", "2", "3", "3", "2", "3", "2"]} +{"5000532": ["3", "1", "3", "3", "3", "2", "2"]} +{"5000533": ["3", "3", "3", "2", "2", "3", "3"]} +{"5000534": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000535": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000536": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000537": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000538": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000539": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000540": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000541": ["3", "3", "3", "3", "1", "1", "3"]} +{"5000542": ["3", "2", "3", "2", "1", "3", "3"]} +{"5000543": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000544": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000545": ["3", "3", "2", "3", "2", "3", "3"]} +{"5000546": ["3", "1", "3", "2", "1", "2", "2"]} +{"5000547": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000548": ["2", "2", "3", "3", "1", "1", "2"]} +{"5000549": ["3", "3", "1", "3", "3", "3", "3"]} +{"5000549": ["3", "3", "1", "3", "3", "2", "3"]} +{"5000550": ["3", "3", "2", "3", "2", "3", "2"]} +{"5000551": ["3", "2", "3", "2", "1", "2", "3"]} +{"5000552": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000553": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000554": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000555": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000555": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000556": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000557": ["3", "1", "3", "2", "3", "3", "2"]} +{"5000558": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000559": ["3", "1", "3", "2", "1", "3", "3"]} +{"5000559": ["3", "1", "3", "2", "1", "3", "3"]} +{"5000560": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000561": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000562": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000563": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000564": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000564": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000565": ["3", "2", "2", "3", "2", "3", "2"]} +{"5000566": ["3", "2", "3", "3", "2", "3", "2"]} +{"5000567": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000568": ["3", "3", "2", "3", "2", "1", "2"]} +{"5000569": ["3", "1", "3", "2", "2", "1", "3"]} +{"5000570": ["3", "3", "3", "2", "2", "3", "3"]} +{"5000571": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000572": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000573": ["2", "2", "3", "3", "1", "2", "2"]} +{"5000574": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000575": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000576": ["3", "2", "2", "3", "3", "3", "2"]} +{"5000577": ["3", "3", "3", "2", "2", "3", "2"]} +{"5000578": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000579": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000580": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000581": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000582": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000583": ["3", "3", "1", "3", "1", "3", "2"]} +{"5000584": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000585": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000586": ["3", "1", "3", "1", "3", "2", "2"]} +{"5000587": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000588": ["2", "2", "3", "2", "1", "1", "2"]} +{"5000589": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000590": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000591": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000591": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000592": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000592": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000593": ["3", "3", "2", "2", "3", "2", "3"]} +{"5000594": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000595": ["2", "2", "3", "3", "1", "3", "2"]} +{"5000596": ["2", "2", "3", "3", "1", "1", "2"]} +{"5000597": ["2", "2", "3", "2", "1", "3", "2"]} +{"5000597": ["2", "2", "3", "2", "2", "3", "2"]} +{"5000598": ["3", "2", "3", "3", "3", "3", "2"]} +{"5000599": ["3", "1", "3", "2", "2", "3", "3"]} +{"5000102": ["2", "1", "3", "2", "3", "1", "2"]} +{"5000103": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000104": ["3", "1", "3", "1", "2", "1", "1"]} +{"5000105": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000106": ["3", "1", "3", "1", "2", "1", "1"]} +{"5000107": ["2", "3", "3", "2", "3", "2", "3"]} +{"5000108": ["2", "1", "3", "1", "3", "1", "1"]} +{"5000109": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000110": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000111": ["2", "1", "3", "2", "3", "1", "1"]} +{"5000000": ["3", "1", "3", "2", "3", "1", "1"]} +{"5000001": ["3", "2", "3", "2", "3", "2", "1"]} +{"5000002": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000003": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000004": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000005": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000006": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000013": ["3", "2", "3", "2", "3", "1", "1"]} +{"5000016": ["3", "2", "3", "3", "3", "3", "2"]} +{"5000018": ["2", "1", "2", "3", "2", "1", "1"]} +{"5000019": ["3", "2", "3", "1", "2", "2", "2"]} +{"5000020": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000021": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000022": ["3", "1", "3", "2", "2", "1", "1"]} +{"5000023": ["3", "2", "3", "3", "3", "1", "2"]} +{"5000024": ["3", "1", "3", "2", "2", "1", "1"]} +{"5000025": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000026": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000027": ["2", "1", "3", "1", "3", "1", "1"]} +{"5000028": ["2", "2", "3", "3", "3", "1", "1"]} +{"5000029": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000030": ["3", "2", "3", "3", "3", "2", "2"]} +{"5000031": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000032": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000033": ["3", "3", "2", "3", "2", "2", "2"]} +{"5000034": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000035": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000199": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000200": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000299": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000300": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000300": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000301": ["3", "1", "3", "1", "1", "1", "1"]} +{"5000302": ["3", "1", "3", "2", "2", "1", "1"]} +{"5000303": ["3", "2", "3", "2", "2", "1", "1"]} +{"5000304": ["3", "1", "2", "3", "3", "2", "2"]} +{"5000305": ["3", "1", "2", "3", "3", "1", "1"]} +{"5000600": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000601": ["3", "3", "3", "1", "2", "3", "2"]} +{"5000602": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000603": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000604": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000605": ["3", "3", "1", "3", "2", "3", "3"]} +{"5000606": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000607": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000608": ["3", "3", "3", "3", "1", "2", "3"]} +{"5000609": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000610": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000611": ["3", "3", "3", "2", "2", "2", "3"]} +{"5000612": ["3", "3", "2", "3", "1", "2", "3"]} +{"5000613": ["3", "2", "3", "3", "2", "2", "3"]} +{"5000614": ["3", "3", "1", "3", "2", "3", "3"]} +{"5000615": ["2", "3", "3", "2", "1", "2", "2"]} +{"5000616": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000617": ["2", "3", "3", "3", "None", "None", "3"]} +{"5000617": ["2", "3", "3", "3", "3", "2", "3"]} +{"5000618": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000619": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000620": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000621": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000622": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000623": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000624": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000624": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000625": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000625": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000626": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000627": ["2", "3", "3", "2", "2", "1", "3"]} +{"5000628": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000629": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000630": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000631": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000632": ["3", "2", "3", "3", "3", "3", "2"]} +{"5000633": ["3", "1", "3", "3", "1", "1", "2"]} +{"5000634": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000635": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000635": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000636": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000637": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000638": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000638": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000639": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000640": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000641": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000642": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000643": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000644": ["2", "3", "2", "3", "2", "3", "2"]} +{"5000645": ["2", "3", "1", "3", "2", "2", "2"]} +{"5000646": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000647": ["3", "1", "3", "1", "2", "1", "2"]} +{"5000648": ["3", "3", "3", "2", "1", "3", "3"]} +{"5000649": ["3", "3", "3", "2", "2", "3", "2"]} +{"5000650": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000651": ["3", "3", "2", "3", "2", "3", "2"]} +{"5000652": ["3", "3", "2", "3", "3", "1", "2"]} +{"5000653": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000654": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000655": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000656": ["2", "3", "3", "3", "2", "1", "3"]} +{"5000657": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000658": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000659": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000660": ["3", "1", "3", "3", "2", "1", "3"]} +{"5000661": ["2", "3", "2", "3", "2", "2", "2"]} +{"5000662": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000663": ["2", "3", "2", "3", "2", "3", "3"]} +{"5000664": ["2", "3", "3", "3", "1", "1", "3"]} +{"5000665": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000666": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000667": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000668": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000669": ["3", "2", "3", "2", "2", "3", "2"]} +{"5000670": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000671": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000672": ["3", "3", "2", "3", "2", "2", "2"]} +{"5000673": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000674": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000675": ["3", "3", "1", "1", "3", "3", "3"]} +{"5000676": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000677": ["3", "3", "3", "3", "3", "None", "3"]} +{"5000677": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000678": ["3", "3", "3", "3", "None", "None", "3"]} +{"5000678": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000679": ["3", "3", "2", "3", "1", "2", "2"]} +{"5000680": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000681": ["2", "1", "3", "2", "1", "1", "1"]} +{"5000682": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000683": ["3", "1", "3", "3", "2", "1", "2"]} +{"5000684": ["3", "3", "3", "2", "3", "1", "2"]} +{"5000685": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000686": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000687": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000688": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000689": ["3", "3", "3", "3", "1", "1", "3"]} +{"5000690": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000691": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000692": ["2", "3", "3", "3", "1", "1", "3"]} +{"5000693": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000694": ["3", "1", "1", "3", "1", "1", "2"]} +{"5000695": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000696": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000697": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000697": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000698": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000699": ["3", "2", "1", "2", "2", "2", "2"]} +{"5000700": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000701": ["3", "3", "2", "2", "2", "1", "3"]} +{"5000702": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000703": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000704": ["2", "2", "3", "3", "3", "2", "2"]} +{"5000705": ["3", "1", "3", "2", "1", "1", "2"]} +{"5000706": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000707": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000708": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000709": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000710": ["3", "3", "3", "3", "2", "1", "2"]} +{"5000710": ["3", "3", "3", "3", "1", "1", "2"]} +{"5000711": ["3", "3", "2", "3", "2", "3", "3"]} +{"5000712": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000713": ["3", "3", "3", "3", "1", "2", "2"]} +{"5000714": ["3", "3", "3", "2", "2", "2", "3"]} +{"5000715": ["2", "2", "3", "3", "2", "3", "2"]} +{"5000716": ["2", "3", "3", "2", "2", "3", "2"]} +{"5000717": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000718": ["3", "2", "2", "2", "2", "1", "2"]} +{"5000719": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000720": ["2", "2", "3", "3", "1", "2", "2"]} +{"5000721": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000722": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000723": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000724": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000725": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000726": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000727": ["3", "3", "1", "3", "3", "3", "2"]} +{"5000728": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000729": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000730": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000731": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000732": ["2", "3", "3", "2", "2", "2", "2"]} +{"5000733": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000734": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000735": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000735": ["3", "3", "2", "3", "2", "2", "3"]} +{"5000736": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000737": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000738": ["3", "2", "2", "2", "2", "2", "2"]} +{"5000739": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000740": ["3", "1", "3", "3", "3", "2", "3"]} +{"5000741": ["2", "3", "3", "3", "3", "1", "3"]} +{"5000742": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000743": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000743": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000744": ["2", "3", "3", "2", "2", "2", "2"]} +{"5000745": ["2", "3", "2", "3", "2", "3", "2"]} +{"5000746": ["3", "3", "3", "3", "3", "3", "2"]} +{"5000747": ["3", "3", "3", "3", "2", "1", "2"]} +{"5000748": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000749": ["3", "1", "3", "3", "1", "2", "2"]} +{"5000750": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000751": ["2", "2", "3", "2", "3", "3", "3"]} +{"5000752": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000753": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000754": ["3", "3", "3", "3", "2", "2", "2"]} +{"5000755": ["3", "3", "2", "3", "2", "1", "2"]} +{"5000756": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000757": ["2", "2", "3", "3", "3", "2", "2"]} +{"5000758": ["2", "2", "3", "3", "2", "2", "2"]} +{"5000759": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000760": ["2", "3", "3", "2", "3", "1", "3"]} +{"5000761": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000762": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000763": ["3", "2", "1", "3", "3", "2", "2"]} +{"5000764": ["3", "2", "3", "2", "1", "2", "2"]} +{"5000765": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000766": ["3", "3", "1", "1", "2", "3", "3"]} +{"5000767": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000768": ["2", "3", "3", "2", "3", "2", "3"]} +{"5000769": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000770": ["3", "2", "3", "2", "2", "2", "3"]} +{"5000771": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000772": ["3", "3", "1", "1", "1", "3", "3"]} +{"5000773": ["3", "3", "3", "2", "3", "1", "3"]} +{"5000774": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000775": ["3", "2", "3", "3", "3", "1", "1"]} +{"5000776": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000777": ["2", "2", "3", "2", "1", "1", "2"]} +{"5000778": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000779": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000780": ["3", "1", "3", "3", "2", "1", "3"]} +{"5000781": ["3", "2", "3", "2", "3", "3", "2"]} +{"5000782": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000783": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000784": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000785": ["3", "3", "2", "3", "2", "1", "2"]} +{"5000786": ["3", "3", "1", "3", "2", "3", "2"]} +{"5000787": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000788": ["3", "3", "2", "3", "2", "1", "2"]} +{"5000789": ["3", "3", "2", "3", "2", "2", "3"]} +{"5000790": ["3", "3", "1", "1", "2", "3", "3"]} +{"5000791": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000792": ["2", "1", "3", "2", "2", "1", "2"]} +{"5000793": ["3", "3", "3", "3", "2", "2", "3"]} +{"5000794": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000795": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000796": ["3", "2", "3", "2", "2", "3", "3"]} +{"5000797": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000798": ["3", "1", "3", "2", "3", "1", "2"]} +{"5000799": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000800": ["3", "3", "3", "3", "1", "2", "3"]} +{"5000801": ["2", "3", "3", "3", "3", "2", "3"]} +{"5000802": ["2", "2", "3", "2", "2", "2", "3"]} +{"5000803": ["3", "3", "3", "2", "2", "1", "2"]} +{"5000804": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000805": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000806": ["2", "3", "3", "3", "1", "3", "3"]} +{"5000807": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000808": ["3", "2", "3", "2", "2", "1", "2"]} +{"5000809": ["2", "2", "3", "3", "1", "1", "2"]} +{"5000810": ["3", "3", "3", "3", "1", "2", "3"]} +{"5000811": ["3", "3", "2", "3", "2", "2", "3"]} +{"5000812": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000813": ["3", "2", "3", "3", "3", "2", "2"]} +{"5000814": ["3", "2", "3", "3", "3", "3", "3"]} +{"5000815": ["2", "2", "2", "3", "3", "3", "2"]} +{"5000816": ["3", "2", "2", "2", "2", "2", "2"]} +{"5000817": ["2", "3", "2", "3", "2", "2", "3"]} +{"5000818": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000819": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000820": ["3", "3", "3", "2", "3", "3", "3"]} +{"5000821": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000822": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000823": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000824": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000825": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000826": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000827": ["3", "2", "3", "3", "3", "3", "2"]} +{"5000828": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000829": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000830": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000831": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000832": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000833": ["2", "3", "2", "3", "1", "1", "3"]} +{"5000834": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000835": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000836": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000837": ["3", "3", "3", "2", "3", "1", "2"]} +{"5000838": ["3", "3", "3", "2", "1", "3", "3"]} +{"5000839": ["3", "3", "3", "3", "1", "2", "3"]} +{"5000840": ["3", "1", "3", "3", "3", "2", "3"]} +{"5000841": ["3", "3", "2", "3", "1", "3", "2"]} +{"5000842": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000843": ["2", "3", "2", "3", "2", "3", "3"]} +{"5000844": ["2", "2", "3", "3", "3", "3", "3"]} +{"5000845": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000846": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000847": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000848": ["3", "1", "3", "3", "2", "1", "2"]} +{"5000849": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000850": ["2", "2", "2", "3", "2", "2", "2"]} +{"5000850": ["2", "2", "2", "3", "2", "1", "2"]} +{"5000851": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000852": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000853": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000854": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000854": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000855": ["2", "2", "3", "2", "3", "3", "2"]} +{"5000855": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000856": ["3", "3", "2", "2", "3", "2", "3"]} +{"5000857": ["3", "2", "3", "3", "2", "1", "2"]} +{"5000858": ["3", "3", "3", "3", "2", "1", "2"]} +{"5000859": ["3", "3", "3", "2", "2", "2", "2"]} +{"5000860": ["3", "2", "2", "3", "3", "3", "3"]} +{"5000861": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000862": ["2", "3", "3", "3", "3", "2", "3"]} +{"5000863": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000864": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000865": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000866": ["3", "3", "3", "3", "2", "2", "2"]} +{"5000867": ["3", "3", "2", "3", "2", "1", "3"]} +{"5000868": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000869": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000870": ["3", "3", "3", "3", "2", "3", "2"]} +{"5000871": ["3", "3", "3", "3", "1", "2", "2"]} +{"5000872": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000874": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000875": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000876": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000877": ["3", "2", "3", "2", "1", "1", "2"]} +{"5000877": ["3", "2", "3", "2", "1", "1", "2"]} +{"5000878": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000879": ["3", "3", "3", "2", "1", "3", "3"]} +{"5000881": ["3", "3", "3", "2", "3", "1", "3"]} +{"5000882": ["2", "3", "2", "3", "2", "2", "3"]} +{"5000883": ["3", "1", "3", "3", "2", "3", "2"]} +{"5000885": ["3", "3", "1", "3", "2", "3", "3"]} +{"5000886": ["2", "3", "3", "3", "1", "3", "3"]} +{"5000887": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000888": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000890": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000891": ["2", "3", "3", "3", "1", "2", "3"]} +{"5000892": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000893": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000894": ["3", "3", "2", "2", "3", "3", "3"]} +{"5000895": ["3", "1", "3", "2", "1", "1", "2"]} +{"5000896": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000897": ["3", "2", "3", "2", "1", "3", "2"]} +{"5000898": ["2", "3", "3", "3", "1", "3", "3"]} +{"5000899": ["2", "2", "3", "3", "3", "1", "2"]} +{"5000900": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000901": ["3", "2", "3", "2", "3", "1", "3"]} +{"5000902": ["3", "3", "3", "2", "3", "1", "3"]} +{"5000903": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000904": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000905": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000906": ["3", "1", "3", "2", "2", "1", "2"]} +{"5000907": ["3", "3", "1", "2", "3", "3", "2"]} +{"5000908": ["3", "3", "3", "3", "2", "1", "3"]} +{"5000909": ["3", "3", "1", "3", "3", "3", "3"]} +{"5000910": ["2", "2", "3", "3", "1", "2", "2"]} +{"5000911": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000912": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5000913": ["3", "3", "3", "2", "1", "1", "2"]} +{"5000914": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000915": ["2", "3", "3", "3", "1", "3", "3"]} +{"5000916": ["3", "3", "1", "3", "2", "3", "3"]} +{"5000917": ["3", "2", "3", "2", "3", "None", "3"]} +{"5000917": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000918": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000919": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000920": ["3", "3", "3", "2", "1", "1", "2"]} +{"5000921": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000922": ["2", "3", "3", "2", "3", "3", "2"]} +{"5000923": ["3", "3", "1", "3", "2", "3", "3"]} +{"5000924": ["3", "3", "3", "2", "2", "3", "3"]} +{"5000925": ["3", "3", "3", "3", "1", "3", "3"]} +{"5000926": ["3", "3", "2", "3", "2", "3", "2"]} +{"5000926": ["3", "3", "2", "3", "2", "1", "2"]} +{"5000927": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000928": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000929": ["3", "3", "2", "3", "2", "3", "2"]} +{"5000930": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000931": ["3", "3", "3", "3", "1", "1", "3"]} +{"5000932": ["2", "3", "3", "3", "3", "2", "3"]} +{"5000933": ["3", "2", "3", "3", "1", "1", "2"]} +{"5000934": ["2", "3", "2", "3", "3", "3", "2"]} +{"5000935": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000936": ["3", "2", "3", "2", "3", "1", "2"]} +{"5000937": ["3", "2", "3", "2", "3", "3", "3"]} +{"5000938": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000939": ["3", "3", "3", "2", "3", "3", "2"]} +{"5000939": ["3", "3", "3", "2", "3", "1", "2"]} +{"5000940": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000941": ["3", "3", "1", "3", "3", "2", "3"]} +{"5000942": ["3", "3", "3", "3", "1", "1", "3"]} +{"5000943": ["3", "3", "2", "3", "2", "3", "2"]} +{"5000979": ["2", "2", "3", "2", "1", "1", "2"]} +{"5000944": ["3", "3", "3", "3", "1", "1", "3"]} +{"5000945": ["3", "3", "2", "3", "2", "3", "3"]} +{"5000946": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000947": ["3", "3", "2", "3", "3", "3", "2"]} +{"5000980": ["3", "3", "2", "3", "1", "2", "3"]} +{"5000948": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000949": ["3", "2", "3", "3", "2", "1", "2"]} +{"5000950": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000981": ["2", "3", "3", "2", "2", "1", "2"]} +{"5000951": ["3", "3", "2", "3", "1", "3", "3"]} +{"5000952": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000953": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000954": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000955": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000956": ["3", "3", "1", "3", "2", "3", "2"]} +{"5000957": ["2", "3", "3", "3", "1", "1", "3"]} +{"5000958": ["2", "3", "3", "2", "2", "1", "2"]} +{"5000959": ["2", "3", "3", "3", "3", "1", "3"]} +{"5000959": ["2", "3", "3", "3", "2", "1", "3"]} +{"5000982": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000960": ["2", "3", "2", "3", "3", "3", "2"]} +{"5000961": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000962": ["2", "3", "2", "3", "2", "3", "3"]} +{"5000963": ["2", "3", "3", "2", "1", "3", "3"]} +{"5000964": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000965": ["2", "2", "3", "2", "3", "1", "2"]} +{"5000983": ["2", "3", "2", "3", "2", "3", "3"]} +{"5000966": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000967": ["2", "3", "2", "3", "3", "2", "3"]} +{"5000968": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000984": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000969": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000970": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000971": ["2", "3", "2", "3", "3", "2", "3"]} +{"5000972": ["3", "3", "1", "1", "2", "1", "3"]} +{"5000985": ["2", "3", "3", "3", "1", "1", "3"]} +{"5000973": ["2", "3", "3", "2", "3", "3", "3"]} +{"5000974": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000986": ["2", "3", "3", "3", "3", "1", "3"]} +{"5000975": ["2", "3", "3", "3", "2", "2", "3"]} +{"5000976": ["3", "3", "2", "3", "2", "1", "3"]} +{"5000977": ["2", "3", "3", "2", "1", "2", "3"]} +{"5000987": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000978": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000873": ["3", "3", "3", "3", "3", "3", "3"]} +{"5000880": ["3", "3", "1", "3", "1", "2", "2"]} +{"5000988": ["2", "2", "3", "2", "2", "2", "2"]} +{"5000884": ["3", "3", "3", "2", "3", "2", "2"]} +{"5000889": ["3", "3", "3", "3", "3", "1", "3"]} +{"5000989": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000989": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000990": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000990": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000991": ["2", "3", "3", "3", "2", "2", "2"]} +{"5000992": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000992": ["3", "3", "2", "3", "3", "2", "3"]} +{"5000993": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000993": ["2", "3", "3", "3", "1", "3", "3"]} +{"5000994": ["2", "3", "3", "3", "2", "3", "3"]} +{"5000995": ["2", "3", "3", "3", "3", "3", "3"]} +{"5000996": ["2", "3", "3", "3", "3", "2", "3"]} +{"5000997": ["2", "3", "3", "3", "2", "1", "2"]} +{"5000998": ["2", "3", "3", "3", "3", "1", "3"]} +{"5000999": ["3", "3", "2", "3", "3", "3", "3"]} +{"5000001": ["3", "2", "3", "2", "3", "1", "1"]} +{"5000002": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000004": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000005": ["3", "3", "3", "3", "2", "3", "3"]} +{"5000006": ["2", "2", "3", "3", "1", "2", "2"]} +{"5000007": ["3", "3", "3", "2", "3", "1", "2"]} +{"5000011": ["3", "2", "3", "3", "2", "2", "2"]} +{"5000037": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000040": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000041": ["2", "3", "3", "2", "3", "2", "2"]} +{"5000042": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000044": ["2", "2", "3", "3", "2", "2", "2"]} +{"5000046": ["3", "2", "3", "2", "2", "2", "2"]} +{"5000049": ["2", "2", "3", "2", "3", "2", "2"]} +{"5000051": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000054": ["3", "2", "3", "2", "3", "2", "2"]} +{"5000061": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000061": ["3", "3", "3", "2", "3", "2", "3"]} +{"5000064": ["2", "2", "3", "2", "2", "2", "2"]} +{"5000067": ["3", "1", "3", "2", "2", "2", "2"]} +{"5000069": ["3", "3", "3", "3", "3", "2", "3"]} +{"5000072": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000073": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000074": ["3", "2", "3", "2", "3", "2", "3"]} +{"5000077": ["2", "1", "3", "2", "2", "1", "2"]} +{"5000078": ["3", "2", "3", "3", "1", "2", "3"]} diff --git a/webpage/res/res_current/ans_kai.jsonl b/webpage/res/res_current/ans_kai.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_lavie1.jsonl b/webpage/res/res_current/ans_lavie1.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1b7934434613ee9f6f80fc72707da65461999647 --- /dev/null +++ b/webpage/res/res_current/ans_lavie1.jsonl @@ -0,0 +1,1214 @@ +{"4000000": ["3", "3", "2", "3", "3", "3", "2"]} +{"4000001": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000002": ["1", "3", "3", "3", "3", "3", "3"]} +{"4000003": ["3", "3", "2", "3", "1", "3", "3"]} +{"4000004": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000005": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000006": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000007": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000008": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000009": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000010": ["2", "2", "3", "3", "1", "1", "2"]} +{"4000011": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000012": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000013": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000014": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000015": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000016": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000017": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000018": ["3", "3", "1", "3", "2", "3", "2"]} +{"4000019": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000020": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000021": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000022": ["3", "3", "1", "3", "2", "3", "3"]} +{"4000023": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000024": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000025": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000026": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000027": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000028": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000029": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000030": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000031": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000032": ["3", "3", "2", "2", "3", "3", "2"]} +{"4000033": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000034": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000035": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000036": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000037": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000040": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000041": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000042": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000043": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000044": ["2", "3", "2", "2", "3", "3", "3"]} +{"4000045": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000046": ["2", "2", "3", "1", "3", "3", "2"]} +{"4000047": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000048": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000049": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000050": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000051": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000052": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000053": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000054": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000055": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000056": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000057": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000058": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000059": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000060": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000061": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000062": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000063": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000064": ["2", "2", "3", "2", "2", "1", "1"]} +{"4000065": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000066": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000067": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000068": ["3", "3", "2", "3", "1", "3", "2"]} +{"4000069": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000070": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000071": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000072": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000073": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000074": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000075": ["3", "1", "3", "1", "2", "3", "1"]} +{"4000076": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000077": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000078": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000079": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000080": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000081": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000082": ["3", "3", "1", "3", "2", "3", "2"]} +{"4000083": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000084": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000085": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000086": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000087": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000088": ["3", "3", "3", "3", "3", "1", "2"]} +{"4000089": ["3", "3", "3", "3", "3", "1", "2"]} +{"4000090": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000091": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000092": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000093": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000094": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000095": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000096": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000097": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000098": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000099": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000100": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000101": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000102": ["3", "3", "3", "2", "3", "1", "2"]} +{"4000103": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000104": ["3", "1", "3", "1", "2", "3", "2"]} +{"4000105": ["2", "3", "3", "3", "3", "2", "2"]} +{"4000106": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000107": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000108": ["2", "2", "3", "2", "2", "1", "2"]} +{"4000109": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000110": ["3", "1", "3", "2", "3", "2", "2"]} +{"4000111": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000112": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000113": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000114": ["2", "3", "3", "3", "3", "3", "2"]} +{"4000115": ["3", "2", "3", "1", "3", "3", "2"]} +{"4000116": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000117": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000118": ["1", "2", "3", "2", "3", "3", "2"]} +{"4000119": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000120": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000121": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000122": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000123": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000124": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000125": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000126": ["2", "2", "3", "2", "2", "3", "1"]} +{"4000127": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000128": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000129": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000130": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000131": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000132": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000133": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000134": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000135": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000136": ["2", "1", "3", "2", "2", "3", "2"]} +{"4000137": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000138": ["3", "3", "3", "3", "2", "1", "2"]} +{"4000139": ["3", "1", "3", "1", "2", "2", "1"]} +{"4000140": ["3", "1", "3", "2", "2", "3", "2"]} +{"4000141": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000142": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000143": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000144": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000145": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000146": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000147": ["3", "3", "3", "2", "1", "3", "3"]} +{"4000148": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000149": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000150": ["3", "3", "3", "3", "1", "1", "3"]} +{"4000151": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000152": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000153": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000154": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000155": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000156": ["3", "2", "3", "3", "1", "3", "3"]} +{"4000157": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000158": ["3", "3", "3", "3", "1", "3", "2"]} +{"4000159": ["2", "3", "3", "2", "1", "3", "2"]} +{"4000160": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000161": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000162": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000163": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000164": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000165": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000166": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000167": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000168": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000169": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000170": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000171": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000172": ["2", "2", "3", "2", "2", "3", "3"]} +{"4000173": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000174": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000175": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000176": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000177": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000178": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000179": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000180": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000181": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000182": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000183": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000184": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000185": ["3", "1", "3", "2", "2", "1", "1"]} +{"4000186": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000187": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000188": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000189": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000190": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000191": ["3", "3", "3", "2", "1", "3", "2"]} +{"4000192": ["3", "2", "1", "3", "1", "3", "2"]} +{"4000193": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000194": ["3", "3", "3", "3", "2", "2", "2"]} +{"4000195": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000196": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000197": ["2", "2", "3", "2", "3", "2", "3"]} +{"4000198": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000199": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000200": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000201": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000202": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000203": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000204": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000205": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000206": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000208": ["3", "3", "3", "1", "3", "3", "2"]} +{"4000209": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000210": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000211": ["2", "3", "1", "2", "3", "3", "2"]} +{"4000212": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000213": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000214": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000215": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000216": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000217": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000218": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000219": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000220": ["3", "3", "3", "2", "2", "3", "3"]} +{"4000221": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000222": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000223": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000224": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000225": ["2", "3", "2", "3", "1", "3", "3"]} +{"4000226": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000227": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000228": ["3", "3", "3", "2", "3", "2", "3"]} +{"4000229": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000230": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000231": ["3", "2", "3", "2", "2", "3", "3"]} +{"4000232": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000233": ["3", "3", "1", "3", "3", "2", "2"]} +{"4000234": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000235": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000236": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000237": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000238": ["1", "1", "3", "2", "3", "3", "2"]} +{"4000239": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000240": ["3", "3", "3", "2", "1", "3", "2"]} +{"4000241": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000242": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000243": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000244": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000245": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000246": ["1", "1", "3", "2", "1", "3", "1"]} +{"4000247": ["2", "3", "3", "2", "3", "2", "2"]} +{"4000248": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000249": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000250": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000251": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000252": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000253": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000254": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000255": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000256": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000257": ["3", "3", "3", "3", "1", "1", "1"]} +{"4000258": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000259": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000260": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000261": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000262": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000263": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000264": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000265": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000266": ["3", "1", "3", "3", "3", "3", "3"]} +{"4000267": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000268": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000269": ["1", "3", "3", "3", "3", "3", "3"]} +{"4000270": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000271": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000272": ["2", "3", "3", "3", "1", "3", "2"]} +{"4000273": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000274": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000275": ["3", "3", "1", "3", "2", "3", "3"]} +{"4000276": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000277": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000278": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000279": ["3", "3", "3", "3", "1", "3", "2"]} +{"4000280": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000281": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000282": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000283": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000284": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000285": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000286": ["2", "1", "3", "2", "3", "2", "2"]} +{"4000287": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000288": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000289": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000290": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000291": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000292": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000293": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000294": ["2", "3", "3", "3", "1", "3", "2"]} +{"4000295": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000296": ["2", "2", "3", "2", "2", "3", "3"]} +{"4000297": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000299": ["2", "3", "1", "3", "3", "3", "3"]} +{"4000300": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000301": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000302": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000303": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000304": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000305": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000306": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000307": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000308": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000309": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000310": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000311": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000312": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000313": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000314": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000315": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000316": ["3", "3", "2", "3", "3", "3", "2"]} +{"4000317": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000318": ["3", "1", "3", "2", "1", "3", "1"]} +{"4000319": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000320": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000321": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000322": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000323": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000324": ["3", "1", "3", "2", "1", "2", "2"]} +{"4000325": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000326": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000327": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000328": ["2", "1", "3", "3", "2", "3", "2"]} +{"4000329": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000330": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000331": ["2", "3", "2", "3", "3", "3", "3"]} +{"4000332": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000333": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000334": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000335": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000336": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000337": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000338": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000339": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000340": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000341": ["3", "3", "3", "3", "1", "2", "2"]} +{"4000343": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000344": ["3", "1", "3", "3", "3", "3", "3"]} +{"4000345": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000346": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000347": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000348": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000349": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000350": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000351": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000352": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000353": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000354": ["2", "3", "3", "2", "1", "3", "2"]} +{"4000355": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000356": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000357": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000358": ["3", "2", "3", "2", "1", "2", "1"]} +{"4000359": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000360": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000361": ["3", "3", "3", "2", "3", "2", "2"]} +{"4000362": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000363": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000364": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000365": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000366": ["3", "3", "3", "3", "1", "2", "2"]} +{"4000367": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000368": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000369": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000370": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000371": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000372": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000373": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000374": ["2", "3", "1", "3", "2", "3", "2"]} +{"4000375": ["2", "1", "3", "2", "1", "3", "2"]} +{"4000376": ["3", "3", "1", "3", "1", "3", "3"]} +{"4000377": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000378": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000379": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000380": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000381": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000382": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000383": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000384": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000385": ["3", "2", "3", "2", "2", "2", "2"]} +{"4000386": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000387": ["3", "3", "2", "3", "2", "3", "2"]} +{"4000388": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000389": ["3", "1", "3", "1", "2", "3", "1"]} +{"4000390": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000391": ["3", "3", "1", "2", "2", "3", "2"]} +{"4000393": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000394": ["3", "2", "3", "3", "3", "3", "2"]} +{"4000395": ["3", "2", "3", "2", "2", "3", "3"]} +{"4000396": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000397": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000398": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000400": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000401": ["3", "2", "3", "2", "2", "1", "2"]} +{"4000402": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000403": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000404": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000405": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000406": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000407": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000408": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000409": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000410": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000411": ["3", "2", "3", "2", "2", "3", "3"]} +{"4000412": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000413": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000414": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000416": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000417": ["3", "3", "2", "3", "1", "3", "3"]} +{"4000418": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000419": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000420": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000421": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000422": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000424": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000425": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000426": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000427": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000428": ["2", "3", "3", "3", "3", "2", "2"]} +{"4000429": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000430": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000431": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000432": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000433": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000434": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000435": ["3", "1", "3", "2", "3", "2", "2"]} +{"4000436": ["3", "2", "3", "3", "3", "3", "3"]} +{"4000437": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000438": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000439": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000440": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000441": ["3", "3", "2", "3", "2", "3", "2"]} +{"4000442": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000443": ["3", "2", "3", "3", "3", "2", "2"]} +{"4000444": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000445": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000446": ["2", "2", "3", "3", "1", "3", "3"]} +{"4000447": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000448": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000449": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000450": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000451": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000452": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000453": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000454": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000455": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000456": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000457": ["3", "2", "3", "3", "3", "2", "2"]} +{"4000458": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000459": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000460": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000461": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000462": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000463": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000464": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000465": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000466": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000467": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000468": ["2", "3", "3", "3", "1", "1", "2"]} +{"4000469": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000470": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000471": ["3", "1", "3", "1", "3", "3", "2"]} +{"4000472": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000473": ["2", "1", "3", "3", "2", "3", "2"]} +{"4000474": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000475": ["3", "2", "3", "2", "2", "3", "3"]} +{"4000476": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000477": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000478": ["3", "1", "3", "2", "3", "2", "2"]} +{"4000479": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000480": ["3", "2", "3", "2", "-1", "3", "2"]} +{"4000481": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000482": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000483": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000484": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000485": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000486": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000487": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000488": ["3", "3", "3", "3", "1", "3", "2"]} +{"4000489": ["3", "3", "3", "3", "3", "2", "2"]} +{"4000490": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000491": ["2", "1", "3", "1", "2", "3", "1"]} +{"4000492": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000493": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000494": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000495": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000496": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000497": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000498": ["3", "3", "3", "3", "1", "3", "2"]} +{"4000499": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000500": ["2", "2", "2", "2", "3", "3", "2"]} +{"4000501": ["3", "1", "3", "2", "2", "3", "2"]} +{"4000502": ["2", "3", "3", "2", "3", "2", "2"]} +{"4000504": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000505": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000506": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000507": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000508": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000509": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000510": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000511": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000512": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000513": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000514": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000515": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000516": ["2", "3", "3", "2", "2", "3", "3"]} +{"4000517": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000518": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000519": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000520": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000521": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000522": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000523": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000524": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000525": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000526": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000527": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000528": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000529": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000530": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000531": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000532": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000533": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000534": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000535": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000536": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000537": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000538": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000539": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000540": ["2", "2", "3", "2", "2", "1", "2"]} +{"4000541": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000542": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000543": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000544": ["2", "2", "3", "2", "1", "2", "2"]} +{"4000545": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000546": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000547": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000548": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000549": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000550": ["3", "3", "3", "2", "2", "1", "2"]} +{"4000551": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000552": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000553": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000554": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000555": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000556": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000557": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000558": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000559": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000560": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000561": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000562": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000563": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000564": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000565": ["3", "2", "3", "3", "2", "3", "2"]} +{"4000566": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000567": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000568": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000569": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000570": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000571": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000572": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000573": ["3", "2", "3", "2", "3", "1", "3"]} +{"4000574": ["3", "3", "3", "3", "1", "3", "2"]} +{"4000575": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000576": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000577": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000578": ["2", "1", "3", "2", "3", "1", "2"]} +{"4000579": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000580": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000581": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000582": ["3", "2", "3", "2", "1", "3", "3"]} +{"4000583": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000584": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000585": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000586": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000587": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000588": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000589": ["2", "3", "2", "2", "3", "3", "2"]} +{"4000590": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000591": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000592": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000593": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000594": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000595": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000596": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000597": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000598": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000599": ["3", "3", "3", "3", "1", "2", "2"]} +{"4000600": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000601": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000602": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000603": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000604": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000605": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000606": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000607": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000608": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000609": ["3", "1", "3", "1", "3", "3", "2"]} +{"4000610": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000611": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000612": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000613": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000614": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000615": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000616": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000617": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000618": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000619": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000620": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000621": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000622": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000623": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000624": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000625": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000626": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000627": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000628": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000629": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000630": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000631": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000632": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000633": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000634": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000635": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000636": ["2", "3", "3", "3", "2", "2", "3"]} +{"4000637": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000638": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000639": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000640": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000641": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000642": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000643": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000644": ["3", "1", "3", "2", "3", "2", "2"]} +{"4000645": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000646": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000647": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000648": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000649": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000650": ["3", "3", "1", "3", "2", "3", "3"]} +{"4000651": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000652": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000653": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000654": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000655": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000656": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000657": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000658": ["3", "3", "2", "3", "3", "3", "2"]} +{"4000659": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000660": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000661": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000662": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000663": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000664": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000665": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000666": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000667": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000668": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000669": ["3", "3", "3", "3", "2", "1", "2"]} +{"4000670": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000671": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000672": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000673": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000674": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000675": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000676": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000677": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000678": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000679": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000680": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000681": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000682": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000683": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000684": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000685": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000686": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000687": ["3", "3", "2", "3", "2", "3", "3"]} +{"4000688": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000689": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000690": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000691": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000692": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000693": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000694": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000695": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000696": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000697": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000698": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000699": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000700": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000701": ["2", "3", "3", "3", "3", "3", "2"]} +{"4000702": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000703": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000704": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000705": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000706": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000707": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000708": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000709": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000710": ["2", "1", "3", "1", "1", "3", "1"]} +{"4000711": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000713": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000714": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000715": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000716": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000717": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000718": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000719": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000720": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000721": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000722": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000723": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000724": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000725": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000726": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000727": ["3", "2", "3", "2", "3", "3", "1"]} +{"4000728": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000729": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000730": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000731": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000732": ["3", "2", "3", "2", "1", "3", "1"]} +{"4000733": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000734": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000735": ["2", "3", "3", "2", "3", "1", "2"]} +{"4000736": ["3", "1", "3", "1", "1", "3", "1"]} +{"4000737": ["1", "1", "3", "1", "2", "3", "1"]} +{"4000738": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000739": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000740": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000741": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000742": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000743": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000744": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000745": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000746": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000747": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000748": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000749": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000750": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000751": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000752": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000753": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000754": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000755": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000756": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000757": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000758": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000759": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000760": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000761": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000762": ["3", "3", "1", "3", "1", "3", "2"]} +{"4000763": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000764": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000765": ["2", "1", "3", "2", "2", "3", "2"]} +{"4000766": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000767": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000768": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000769": ["3", "3", "3", "2", "3", "2", "2"]} +{"4000770": ["2", "3", "3", "2", "3", "2", "2"]} +{"4000771": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000772": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000773": ["2", "3", "2", "3", "2", "3", "2"]} +{"4000774": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000775": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000776": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000777": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000778": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000779": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000780": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000781": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000782": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000783": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000784": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000785": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000786": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000787": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000788": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000789": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000790": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000791": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000792": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000793": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000794": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000795": ["2", "3", "3", "3", "3", "1", "2"]} +{"4000796": ["2", "1", "3", "2", "2", "3", "2"]} +{"4000797": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000798": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000799": ["3", "3", "3", "1", "3", "3", "3"]} +{"4000800": ["3", "3", "1", "3", "1", "3", "2"]} +{"4000801": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000802": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000803": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000804": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000805": ["2", "3", "2", "3", "1", "3", "2"]} +{"4000806": ["3", "3", "3", "3", "3", "3", "2"]} +{"4000807": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000808": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000809": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000810": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000811": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000812": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000813": ["2", "3", "3", "1", "3", "3", "2"]} +{"4000814": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000815": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000816": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000817": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000818": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000819": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000820": ["3", "3", "1", "3", "2", "3", "2"]} +{"4000821": ["2", "3", "1", "3", "1", "3", "2"]} +{"4000822": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000823": ["3", "3", "2", "3", "1", "3", "2"]} +{"4000825": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000826": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000827": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000828": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000829": ["3", "3", "3", "3", "3", "3", "2"]} +{"4000830": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000831": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000832": ["3", "3", "1", "3", "2", "3", "3"]} +{"4000833": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000834": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000835": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000836": ["2", "3", "3", "2", "1", "1", "1"]} +{"4000837": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000838": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000839": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000840": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000841": ["2", "3", "3", "3", "3", "3", "2"]} +{"4000842": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000843": ["3", "3", "1", "3", "1", "3", "3"]} +{"4000844": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000845": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000846": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000847": ["1", "1", "3", "3", "2", "3", "2"]} +{"4000848": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000849": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000850": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000851": ["2", "3", "3", "3", "1", "3", "2"]} +{"4000852": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000853": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000854": ["2", "2", "1", "3", "3", "3", "2"]} +{"4000855": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000856": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000857": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000858": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000859": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000860": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000861": ["2", "1", "3", "2", "3", "1", "2"]} +{"4000862": ["2", "1", "3", "3", "3", "2", "2"]} +{"4000863": ["3", "1", "3", "2", "3", "3", "3"]} +{"4000864": ["3", "1", "3", "2", "2", "3", "2"]} +{"4000865": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000866": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000867": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000868": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000869": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000870": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000871": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000872": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000873": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000874": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000875": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000876": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000877": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000878": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000879": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000880": ["2", "1", "3", "2", "1", "3", "2"]} +{"4000881": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000882": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000883": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000884": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000885": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000887": ["2", "3", "3", "2", "1", "3", "2"]} +{"4000888": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000889": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000890": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000891": ["3", "3", "2", "3", "1", "3", "3"]} +{"4000892": ["2", "3", "3", "3", "1", "3", "2"]} +{"4000893": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000894": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000895": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000896": ["3", "3", "1", "3", "2", "3", "2"]} +{"4000897": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000898": ["3", "1", "3", "1", "2", "3", "1"]} +{"4000899": ["2", "2", "3", "2", "2", "3", "2"]} +{"4000900": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000901": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000902": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000903": ["3", "1", "2", "2", "3", "3", "2"]} +{"4000904": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000905": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000906": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000907": ["2", "3", "2", "3", "3", "3", "3"]} +{"4000908": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000909": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000910": ["3", "2", "3", "2", "1", "2", "2"]} +{"4000911": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000912": ["3", "3", "1", "2", "3", "3", "3"]} +{"4000913": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000914": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000915": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000916": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000917": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000918": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000919": ["1", "2", "3", "2", "3", "3", "2"]} +{"4000920": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000921": ["2", "2", "2", "3", "3", "3", "3"]} +{"4000922": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000923": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000924": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000925": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000926": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000927": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000928": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000929": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000930": ["2", "2", "2", "3", "2", "3", "2"]} +{"4000931": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000932": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000933": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000934": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000935": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000936": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000937": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000938": ["2", "3", "2", "2", "3", "3", "2"]} +{"4000939": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000940": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000941": ["2", "3", "2", "3", "3", "3", "3"]} +{"4000942": ["3", "2", "3", "3", "2", "3", "3"]} +{"4000943": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000944": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000946": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000947": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000948": ["3", "3", "3", "2", "2", "3", "2"]} +{"4000949": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000950": ["3", "3", "3", "2", "2", "3", "3"]} +{"4000951": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000952": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000953": ["2", "1", "3", "3", "1", "3", "2"]} +{"4000954": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000955": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000956": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000957": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000958": ["2", "2", "3", "2", "1", "3", "2"]} +{"4000959": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000960": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000961": ["3", "3", "3", "2", "3", "1", "2"]} +{"4000962": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000963": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000964": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000965": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000966": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000967": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000968": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000969": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000970": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000971": ["3", "2", "3", "3", "3", "3", "3"]} +{"4000972": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000973": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000974": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000975": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000976": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000977": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000978": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000979": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000980": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000981": ["2", "1", "3", "2", "1", "3", "2"]} +{"4000982": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000983": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000984": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000985": ["3", "3", "3", "3", "3", "3", "2"]} +{"4000986": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000987": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000988": ["3", "2", "3", "3", "2", "3", "2"]} +{"4000989": ["3", "3", "1", "3", "2", "2", "2"]} +{"4000990": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000991": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000992": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000993": ["2", "3", "2", "3", "2", "3", "2"]} +{"4000994": ["2", "1", "3", "2", "3", "1", "2"]} +{"4000995": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000996": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000997": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000998": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000999": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000002": ["1", "2", "3", "3", "3", "3", "3"]} +{"4000002": ["1", "2", "3", "3", "3", "3", "3"]} +{"4000003": ["3", "3", "2", "3", "1", "3", "3"]} +{"4000004": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000005": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000006": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000007": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000008": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000009": ["3", "3", "3", "3", "3", "1", "3"]} +{"4000010": ["2", "2", "3", "3", "1", "1", "2"]} +{"4000011": ["2", "3", "3", "2", "2", "3", "2"]} +{"4000012": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000013": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000014": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000015": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000016": ["3", "1", "3", "2", "3", "1", "2"]} +{"4000025": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000027": ["3", "3", "3", "3", "1", "2", "3"]} +{"4000029": ["3", "1", "3", "2", "3", "1", "1"]} +{"4000031": ["3", "2", "3", "2", "3", "1", "1"]} +{"4000032": ["3", "3", "1", "2", "3", "3", "2"]} +{"4000034": ["2", "1", "3", "2", "3", "1", "1"]} +{"4000035": ["3", "3", "3", "2", "3", "2", "3"]} +{"4000038": ["3", "2", "3", "3", "3", "2", "2"]} +{"4000039": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4000040": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000041": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000042": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000043": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000044": ["2", "3", "2", "2", "3", "3", "3"]} +{"4000045": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000046": ["2", "2", "3", "1", "3", "1", "2"]} +{"4000047": ["2", "2", "3", "2", "2", "1", "2"]} +{"4000048": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000049": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000050": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000051": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000052": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000053": ["3", "3", "3", "3", "2", "3", "2"]} +{"4000054": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000055": ["3", "1", "3", "2", "1", "3", "2"]} +{"4000056": ["3", "3", "1", "3", "3", "3", "2"]} +{"4000057": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000058": ["3", "1", "3", "2", "3", "2", "3"]} +{"4000059": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000060": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4000061": ["2", "1", "3", "3", "1", "2", "2"]} +{"4000062": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000063": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000064": ["2", "2", "3", "2", "2", "1", "1"]} +{"4000065": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000066": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000067": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000068": ["3", "3", "2", "3", "1", "3", "2"]} +{"4000069": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000070": ["3", "3", "1", "1", "3", "3", "3"]} +{"4000071": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000072": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000073": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4000074": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000075": ["3", "1", "2", "1", "2", "1", "1"]} +{"4000076": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000077": ["3", "2", "3", "2", "1", "1", "2"]} +{"4000078": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000079": ["2", "1", "3", "2", "3", "3", "2"]} +{"4000080": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000080": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000081": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000082": ["3", "3", "1", "3", "2", "3", "2"]} +{"4000082": ["3", "3", "1", "3", "2", "1", "2"]} +{"4000082": ["3", "3", "1", "3", "2", "1", "2"]} +{"4000083": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000084": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000085": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000086": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000087": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000088": ["3", "3", "3", "3", "3", "1", "2"]} +{"4000089": ["3", "3", "3", "3", "3", "1", "2"]} +{"4000090": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000091": ["3", "2", "3", "2", "1", "1", "2"]} +{"4000092": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000093": ["3", "3", "2", "3", "2", "3", "3"]} +{"4000094": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000095": ["2", "2", "3", "2", "3", "1", "2"]} +{"4000096": ["3", "3", "2", "2", "3", "3", "3"]} +{"4000097": ["2", "3", "3", "2", "3", "3", "2"]} +{"4000098": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000099": ["2", "2", "3", "3", "1", "3", "2"]} +{"4000100": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000100": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000101": ["3", "2", "3", "2", "1", "3", "2"]} +{"4000102": ["3", "3", "3", "2", "2", "1", "2"]} +{"4000103": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000107": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000108": ["2", "2", "3", "2", "2", "1", "1"]} +{"4000109": ["2", "2", "3", "3", "2", "2", "2"]} +{"4000110": ["3", "1", "3", "2", "3", "1", "1"]} +{"4000111": ["3", "3", "3", "2", "3", "2", "2"]} +{"4000112": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000113": ["3", "2", "3", "2", "1", "2", "2"]} +{"4000114": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4000115": ["3", "2", "3", "1", "3", "1", "2"]} +{"4000116": ["3", "3", "3", "3", "3", "2", "2"]} +{"4000117": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000118": ["1", "2", "3", "2", "3", "2", "2"]} +{"4000119": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000120": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000121": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000122": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000123": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000124": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000124": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000125": ["3", "3", "3", "3", "2", "2", "2"]} +{"4000126": ["2", "2", "3", "2", "2", "3", "1"]} +{"4000127": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000128": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000128": ["2", "3", "3", "3", "1", "3", "3"]} +{"4000129": ["2", "3", "3", "2", "1", "2", "2"]} +{"4000130": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000131": ["3", "2", "3", "2", "2", "2", "2"]} +{"4000132": ["3", "1", "3", "2", "3", "3", "2"]} +{"4000133": ["3", "1", "3", "2", "2", "1", "1"]} +{"4000134": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000135": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000136": ["2", "1", "3", "2", "2", "2", "2"]} +{"4000137": ["2", "3", "3", "3", "2", "3", "3"]} +{"4000138": ["3", "3", "3", "3", "2", "2", "2"]} +{"4000139": ["3", "1", "3", "1", "2", "1", "1"]} +{"4000140": ["3", "1", "3", "2", "2", "1", "1"]} +{"4000141": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000142": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000143": ["2", "3", "2", "3", "3", "2", "2"]} +{"4000144": ["3", "3", "3", "3", "3", "1", "2"]} +{"4000145": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000146": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000147": ["3", "3", "3", "2", "1", "2", "2"]} +{"4000148": ["3", "3", "2", "3", "3", "2", "3"]} +{"4000149": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000150": ["3", "3", "3", "3", "1", "1", "3"]} +{"4000151": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000152": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000153": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000154": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000155": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000156": ["3", "2", "3", "3", "1", "3", "3"]} +{"4000157": ["2", "2", "3", "3", "3", "3", "3"]} +{"4000158": ["3", "3", "3", "3", "1", "2", "2"]} +{"4000159": ["2", "3", "3", "2", "1", "1", "1"]} +{"4000160": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000161": ["3", "2", "3", "2", "3", "3", "3"]} +{"4000161": ["3", "2", "3", "2", "3", "1", "1"]} +{"4000162": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000163": ["3", "3", "3", "3", "1", "3", "3"]} +{"4000164": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000165": ["3", "1", "3", "2", "3", "1", "1"]} +{"4000166": ["3", "3", "1", "3", "3", "3", "3"]} +{"4000167": ["3", "2", "3", "2", "3", "2", "2"]} +{"4000168": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000169": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000170": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000170": ["2", "2", "3", "2", "2", "2", "2"]} +{"4000171": ["3", "3", "3", "2", "3", "3", "2"]} +{"4000172": ["2", "2", "3", "2", "2", "3", "3"]} +{"4000173": ["2", "2", "3", "3", "2", "2", "2"]} +{"4000174": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000175": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000176": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000177": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000178": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000178": ["2", "3", "3", "3", "3", "1", "2"]} +{"4000179": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000180": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000181": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000185": ["3", "1", "3", "2", "2", "1", "1"]} +{"4000186": ["2", "3", "3", "3", "3", "2", "2"]} +{"4000187": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000188": ["3", "2", "3", "2", "1", "2", "2"]} +{"4000189": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000190": ["2", "3", "3", "3", "3", "3", "3"]} +{"4000191": ["3", "3", "3", "2", "1", "3", "2"]} +{"4000192": ["3", "2", "1", "3", "1", "3", "2"]} +{"4000193": ["2", "2", "3", "3", "2", "2", "2"]} +{"4000194": ["3", "3", "3", "3", "2", "2", "2"]} +{"4000195": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000196": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000197": ["2", "2", "3", "2", "3", "2", "3"]} +{"4000198": ["2", "2", "3", "2", "3", "3", "3"]} +{"4000199": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000199": ["3", "3", "3", "3", "3", "2", "3"]} +{"4000199": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000200": ["2", "3", "3", "3", "2", "3", "2"]} +{"4000201": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000202": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000203": ["3", "2", "3", "2", "3", "1", "2"]} +{"4000204": ["2", "2", "3", "2", "3", "2", "2"]} +{"4000205": ["2", "3", "3", "3", "2", "2", "3"]} +{"4000206": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000207": ["None", "None", "None", "None", "None", "None", "None"]} +{"4000207": ["3", "1", "3", "1", "2", "1", "1"]} +{"4000208": ["3", "3", "1", "1", "3", "3", "2"]} +{"4000209": ["2", "2", "3", "2", "1", "1", "2"]} +{"4000210": ["2", "2", "3", "3", "2", "3", "2"]} +{"4000211": ["2", "3", "1", "2", "3", "3", "2"]} +{"4000212": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000213": ["3", "3", "3", "2", "3", "3", "3"]} +{"4000214": ["2", "3", "3", "2", "3", "3", "3"]} +{"4000215": ["3", "3", "2", "3", "3", "3", "3"]} +{"4000216": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000217": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000218": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000219": ["3", "2", "3", "2", "3", "2", "3"]} +{"4000220": ["3", "3", "3", "2", "2", "3", "3"]} +{"4000221": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000222": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000223": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000224": ["3", "3", "3", "3", "2", "3", "3"]} +{"4000225": ["2", "3", "2", "3", "1", "1", "2"]} +{"4000226": ["2", "3", "2", "3", "3", "3", "2"]} +{"4000227": ["3", "3", "3", "3", "3", "3", "3"]} +{"4000228": ["3", "3", "3", "2", "3", "1", "2"]} +{"4000229": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000230": ["2", "2", "3", "2", "3", "3", "2"]} +{"4000231": ["3", "2", "3", "2", "2", "3", "3"]} +{"4000232": ["3", "2", "3", "2", "2", "3", "2"]} +{"4000233": ["3", "3", "1", "3", "3", "2", "2"]} +{"4000234": ["3", "2", "3", "2", "3", "3", "2"]} +{"4000235": ["3", "1", "3", "2", "3", "2", "2"]} +{"4000236": ["3", "3", "3", "3", "3", "1", "3"]} diff --git a/webpage/res/res_current/ans_lavie2.jsonl b/webpage/res/res_current/ans_lavie2.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d9fb26155fa561afc5bf8b717b783e8bdd83bcb7 --- /dev/null +++ b/webpage/res/res_current/ans_lavie2.jsonl @@ -0,0 +1,987 @@ +{"4001000": ["3", "1", "3", "2", "3", "2", "2"]} +{"4001001": ["3", "1", "3", "3", "3", "3", "3"]} +{"4001002": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001003": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001004": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001005": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001006": ["3", "3", "3", "2", "3", "3", "2"]} +{"4001007": ["3", "2", "3", "2", "3", "2", "3"]} +{"4001008": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001009": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001010": ["2", "3", "3", "1", "2", "3", "2"]} +{"4001011": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001012": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001013": ["3", "3", "3", "3", "2", "2", "2"]} +{"4001014": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001015": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001016": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001017": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001018": ["3", "3", "3", "3", "3", "2", "3"]} +{"4001019": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001020": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001021": ["3", "3", "3", "3", "2", "3", "2"]} +{"4001022": ["3", "3", "3", "3", "2", "3", "2"]} +{"4001023": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001024": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001025": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001026": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001027": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001028": ["1", "1", "3", "3", "1", "3", "2"]} +{"4001029": ["2", "3", "1", "3", "1", "3", "2"]} +{"4001030": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001031": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001032": ["2", "3", "3", "2", "2", "1", "2"]} +{"4001033": ["3", "1", "3", "2", "2", "3", "2"]} +{"4001034": ["3", "3", "3", "2", "3", "2", "3"]} +{"4001035": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001036": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001037": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001038": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001039": ["3", "3", "3", "2", "2", "3", "2"]} +{"4001040": ["2", "3", "1", "3", "1", "3", "2"]} +{"4001041": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001042": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001043": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001044": ["3", "3", "3", "3", "2", "3", "2"]} +{"4001045": ["3", "2", "3", "2", "3", "2", "2"]} +{"4001046": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001047": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001048": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001049": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001050": ["2", "3", "3", "3", "3", "3", "2"]} +{"4001051": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001052": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001053": ["3", "2", "3", "2", "2", "3", "3"]} +{"4001054": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001055": ["3", "3", "1", "3", "2", "3", "3"]} +{"4001056": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001057": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001058": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001059": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001060": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001062": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001063": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001064": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001065": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001066": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001067": ["3", "3", "3", "2", "2", "3", "2"]} +{"4001068": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001069": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001070": ["3", "3", "3", "2", "3", "3", "2"]} +{"4001071": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001072": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001073": ["3", "3", "3", "3", "3", "2", "3"]} +{"4001074": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001075": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001076": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001077": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001078": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001079": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001080": ["3", "3", "3", "1", "3", "3", "2"]} +{"4001081": ["3", "3", "3", "2", "2", "3", "3"]} +{"4001082": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001083": ["3", "3", "1", "3", "3", "2", "2"]} +{"4001084": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001085": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001086": ["3", "1", "3", "3", "3", "3", "3"]} +{"4001087": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001088": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001089": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001090": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001091": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001092": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001093": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001094": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001095": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001096": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001097": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001098": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001099": ["3", "3", "3", "3", "2", "3", "2"]} +{"4001100": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001101": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001102": ["3", "1", "3", "1", "3", "3", "1"]} +{"4001103": ["2", "2", "3", "2", "3", "2", "2"]} +{"4001104": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001105": ["3", "3", "1", "2", "2", "3", "3"]} +{"4001106": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001107": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001108": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001109": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001110": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001111": ["3", "1", "3", "1", "1", "3", "1"]} +{"4001112": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001114": ["3", "3", "3", "3", "3", "2", "2"]} +{"4001115": ["3", "3", "2", "3", "3", "3", "2"]} +{"4001116": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001117": ["3", "3", "2", "2", "3", "3", "3"]} +{"4001118": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001119": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001120": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001121": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001122": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001123": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001124": ["2", "3", "3", "3", "3", "3", "2"]} +{"4001125": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001126": ["3", "1", "1", "2", "3", "3", "2"]} +{"4001127": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001128": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001129": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001130": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001131": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001132": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001133": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001134": ["3", "3", "3", "3", "2", "1", "2"]} +{"4001135": ["3", "3", "3", "2", "3", "1", "2"]} +{"4001136": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001137": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001138": ["2", "3", "3", "3", "3", "3", "2"]} +{"4001139": ["3", "3", "3", "1", "3", "3", "3"]} +{"4001141": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001142": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001143": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001144": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001145": ["2", "2", "3", "2", "1", "1", "1"]} +{"4001146": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001147": ["3", "3", "3", "3", "3", "2", "3"]} +{"4001148": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001149": ["3", "2", "3", "3", "3", "3", "2"]} +{"4001150": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001151": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001152": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001153": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001154": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001155": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001156": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001157": ["3", "3", "3", "3", "3", "1", "2"]} +{"4001158": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001159": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001160": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001161": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001162": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001163": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001164": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001165": ["3", "3", "3", "2", "3", "1", "3"]} +{"4001166": ["2", "3", "1", "2", "3", "2", "2"]} +{"4001167": ["2", "2", "3", "3", "2", "2", "2"]} +{"4001168": ["3", "2", "3", "3", "3", "2", "2"]} +{"4001169": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001170": ["2", "3", "3", "3", "3", "3", "2"]} +{"4001171": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001172": ["2", "3", "1", "3", "3", "3", "3"]} +{"4001173": ["3", "3", "2", "2", "3", "3", "3"]} +{"4001174": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001175": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001176": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001177": ["3", "2", "2", "2", "3", "3", "2"]} +{"4001178": ["3", "3", "3", "2", "1", "3", "2"]} +{"4001179": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001180": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001181": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001182": ["2", "3", "3", "3", "3", "2", "2"]} +{"4001183": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001184": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001185": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001186": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001187": ["3", "1", "3", "2", "3", "2", "2"]} +{"4001188": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001189": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001190": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001191": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001192": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001193": ["3", "2", "3", "2", "2", "3", "3"]} +{"4001194": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001195": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001196": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001197": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001198": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001199": ["1", "2", "3", "2", "3", "3", "2"]} +{"4001200": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001201": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001202": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001203": ["3", "2", "3", "2", "3", "1", "2"]} +{"4001204": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001205": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001206": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001207": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001208": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001209": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001210": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001211": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001212": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001213": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001214": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001215": ["2", "3", "3", "1", "3", "3", "3"]} +{"4001216": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001217": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001218": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001219": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001220": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001221": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001222": ["1", "3", "3", "3", "3", "3", "3"]} +{"4001223": ["3", "3", "3", "3", "2", "1", "2"]} +{"4001224": ["3", "2", "3", "2", "3", "2", "2"]} +{"4001225": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001226": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001227": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001228": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001229": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001230": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001231": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001232": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001233": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001234": ["3", "3", "3", "3", "1", "2", "2"]} +{"4001235": ["2", "3", "1", "3", "2", "3", "2"]} +{"4001236": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001237": ["3", "3", "1", "1", "3", "3", "3"]} +{"4001238": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001239": ["2", "2", "3", "2", "3", "2", "2"]} +{"4001240": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001241": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001242": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001243": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001244": ["3", "1", "3", "3", "1", "3", "2"]} +{"4001245": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001246": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001247": ["3", "2", "3", "3", "2", "3", "3"]} +{"4001248": ["3", "1", "3", "3", "2", "3", "3"]} +{"4001249": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001250": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001251": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001252": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001253": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001254": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001255": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001256": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001257": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001258": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001259": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001260": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001261": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001262": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001263": ["2", "3", "3", "3", "1", "1", "2"]} +{"4001264": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001265": ["3", "3", "1", "3", "3", "2", "2"]} +{"4001266": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001267": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001268": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001269": ["3", "3", "3", "2", "1", "3", "3"]} +{"4001270": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001271": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001272": ["3", "2", "3", "2", "3", "2", "2"]} +{"4001273": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001274": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001275": ["3", "1", "3", "3", "3", "3", "3"]} +{"4001276": ["3", "2", "3", "3", "1", "3", "2"]} +{"4001277": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001278": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001279": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001280": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001281": ["2", "1", "3", "3", "1", "3", "2"]} +{"4001282": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001283": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001284": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001285": ["3", "1", "3", "1", "1", "1", "1"]} +{"4001286": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001287": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001288": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001289": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001290": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001291": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001292": ["2", "3", "2", "3", "2", "3", "2"]} +{"4001293": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001294": ["2", "3", "1", "2", "3", "3", "2"]} +{"4001295": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001296": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001297": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001298": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001299": ["3", "1", "3", "1", "3", "3", "1"]} +{"4001300": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001301": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001302": ["2", "3", "3", "3", "3", "2", "2"]} +{"4001303": ["2", "3", "3", "3", "2", "2", "3"]} +{"4001304": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001305": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001306": ["3", "2", "3", "2", "1", "3", "3"]} +{"4001307": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001308": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001309": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001310": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001311": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001312": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001313": ["2", "3", "3", "3", "1", "2", "2"]} +{"4001314": ["3", "2", "3", "2", "2", "3", "3"]} +{"4001315": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001316": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001317": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001318": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001319": ["1", "1", "1", "2", "3", "3", "2"]} +{"4001320": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001321": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001322": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001323": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001324": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001325": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001326": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001327": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001328": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001329": ["2", "1", "3", "3", "2", "3", "3"]} +{"4001330": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001331": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001332": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001333": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001334": ["3", "3", "3", "3", "3", "1", "2"]} +{"4001335": ["3", "3", "3", "3", "3", "3", "2"]} +{"4001336": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001337": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001338": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001339": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001340": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001341": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001342": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001343": ["2", "3", "2", "3", "2", "3", "2"]} +{"4001344": ["2", "1", "3", "3", "1", "3", "2"]} +{"4001345": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001346": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001347": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001348": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001349": ["3", "1", "3", "1", "3", "2", "1"]} +{"4001350": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001351": ["3", "3", "1", "3", "2", "3", "3"]} +{"4001352": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001353": ["2", "1", "3", "3", "1", "1", "2"]} +{"4001354": ["3", "1", "3", "3", "3", "2", "2"]} +{"4001355": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001356": ["3", "2", "3", "3", "3", "3", "2"]} +{"4001357": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001358": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001359": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001360": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001361": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001362": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001363": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001364": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001365": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001366": ["2", "3", "3", "3", "3", "2", "3"]} +{"4001367": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001368": ["3", "2", "3", "3", "1", "2", "2"]} +{"4001369": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001370": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001371": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001372": ["2", "1", "3", "3", "3", "1", "2"]} +{"4001373": ["3", "3", "1", "1", "3", "3", "2"]} +{"4001374": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001375": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001376": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001377": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001378": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001379": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001380": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001381": ["2", "1", "3", "2", "2", "3", "2"]} +{"4001382": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001383": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001384": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001385": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001386": ["3", "3", "1", "3", "2", "3", "3"]} +{"4001387": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001388": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001389": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001390": ["1", "3", "3", "2", "2", "3", "2"]} +{"4001391": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001392": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001393": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001394": ["3", "3", "1", "3", "2", "3", "3"]} +{"4001395": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001396": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001397": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001398": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001399": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001400": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001401": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001402": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001403": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001404": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001405": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001406": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001407": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001408": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001409": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001410": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001411": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001412": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001413": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001414": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001415": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001416": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001417": ["3", "3", "3", "2", "2", "3", "3"]} +{"4001418": ["3", "3", "3", "2", "1", "3", "3"]} +{"4001419": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001420": ["2", "3", "2", "3", "3", "3", "2"]} +{"4001421": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001422": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001423": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001424": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001425": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001426": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001427": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001428": ["2", "3", "2", "3", "3", "3", "2"]} +{"4001429": ["2", "2", "1", "3", "3", "3", "2"]} +{"4001430": ["2", "3", "1", "3", "2", "3", "2"]} +{"4001431": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001432": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001433": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001434": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001435": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001436": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001437": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001438": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001439": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001440": ["2", "3", "3", "3", "3", "3", "2"]} +{"4001441": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001442": ["2", "3", "1", "3", "3", "3", "3"]} +{"4001443": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001444": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001445": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001446": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001447": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001448": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001449": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001450": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001451": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001452": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001453": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001454": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001455": ["3", "2", "3", "2", "-1", "3", "2"]} +{"4001456": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001457": ["2", "3", "3", "1", "2", "3", "2"]} +{"4001458": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001459": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001460": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001461": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001462": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001463": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001464": ["2", "2", "3", "2", "3", "3", "3"]} +{"4001465": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001466": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001467": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001468": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001469": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001470": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001471": ["3", "1", "3", "1", "3", "3", "2"]} +{"4001472": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001473": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001474": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001475": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001476": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001477": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001478": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001479": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001480": ["3", "1", "3", "1", "2", "3", "2"]} +{"4001481": ["2", "1", "3", "1", "1", "3", "1"]} +{"4001482": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001483": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001484": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001485": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001486": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001487": ["2", "2", "3", "1", "1", "3", "2"]} +{"4001488": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001489": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001490": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001491": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001492": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001493": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001494": ["2", "3", "3", "3", "2", "3", "2"]} +{"4001495": ["3", "3", "1", "3", "1", "3", "3"]} +{"4001496": ["3", "3", "3", "2", "2", "3", "3"]} +{"4001497": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001498": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001499": ["3", "1", "3", "2", "3", "2", "2"]} +{"4001500": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001501": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001502": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001503": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001504": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001505": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001506": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001507": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001508": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001509": ["3", "2", "3", "1", "1", "3", "2"]} +{"4001510": ["2", "3", "2", "3", "1", "3", "2"]} +{"4001511": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001512": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001513": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001514": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001515": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001516": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001518": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001519": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001520": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001521": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001522": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001523": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001524": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001525": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001526": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001527": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001528": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001529": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001530": ["3", "2", "3", "2", "2", "3", "1"]} +{"4001531": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001532": ["3", "3", "3", "3", "1", "1", "1"]} +{"4001533": ["2", "1", "3", "1", "3", "2", "1"]} +{"4001534": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001535": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001536": ["3", "2", "3", "2", "1", "3", "3"]} +{"4001537": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001538": ["3", "3", "3", "2", "2", "3", "3"]} +{"4001539": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001540": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001541": ["3", "3", "3", "3", "1", "1", "1"]} +{"4001542": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001543": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001544": ["3", "3", "3", "3", "1", "2", "2"]} +{"4001545": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001546": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001547": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001548": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001549": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001550": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001551": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001552": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001553": ["3", "3", "1", "3", "2", "3", "2"]} +{"4001554": ["3", "3", "1", "3", "1", "3", "3"]} +{"4001555": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001556": ["3", "1", "3", "1", "1", "3", "2"]} +{"4001557": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001558": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001559": ["3", "1", "3", "1", "3", "2", "1"]} +{"4001560": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001561": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001562": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001563": ["2", "1", "3", "3", "3", "3", "2"]} +{"4001564": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001565": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001566": ["3", "3", "3", "1", "3", "2", "2"]} +{"4001567": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001568": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001569": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001570": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001571": ["3", "2", "3", "2", "3", "1", "2"]} +{"4001572": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001573": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001574": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001575": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001576": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001577": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001578": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001579": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001580": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001581": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001582": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001583": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001584": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001585": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001586": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001587": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001588": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001589": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001590": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001591": ["3", "3", "1", "2", "3", "3", "2"]} +{"4001592": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001593": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001594": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001595": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001596": ["3", "3", "3", "2", "2", "3", "2"]} +{"4001597": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001598": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001599": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001600": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001601": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001602": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001603": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001604": ["3", "3", "1", "2", "3", "3", "3"]} +{"4001605": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001606": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001607": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001608": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001609": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001610": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001611": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001612": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001613": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001614": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001615": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001616": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001617": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001618": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001619": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001620": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001621": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001622": ["2", "3", "3", "2", "2", "3", "3"]} +{"4001623": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001624": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001625": ["2", "3", "3", "2", "3", "1", "2"]} +{"4001626": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001627": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001628": ["2", "1", "3", "1", "2", "3", "2"]} +{"4001629": ["3", "3", "2", "2", "3", "1", "2"]} +{"4001630": ["3", "1", "2", "2", "3", "3", "2"]} +{"4001631": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001632": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001634": ["3", "1", "3", "1", "3", "2", "1"]} +{"4001635": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001636": ["2", "2", "3", "2", "3", "3", "3"]} +{"4001637": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001638": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001639": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001640": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001642": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001643": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001644": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001645": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001646": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001647": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001648": ["3", "1", "3", "2", "3", "3", "3"]} +{"4001649": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001650": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001651": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001652": ["2", "1", "3", "2", "2", "3", "2"]} +{"4001653": ["2", "3", "3", "2", "1", "3", "2"]} +{"4001654": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001655": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001656": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001657": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001658": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001659": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001660": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001661": ["2", "2", "3", "2", "1", "3", "2"]} +{"4001662": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001663": ["3", "2", "3", "2", "2", "3", "1"]} +{"4001664": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001665": ["3", "2", "3", "2", "3", "1", "3"]} +{"4001666": ["3", "1", "3", "2", "1", "3", "2"]} +{"4001667": ["3", "3", "3", "1", "3", "3", "2"]} +{"4001668": ["3", "3", "2", "3", "2", "3", "3"]} +{"4001669": ["2", "2", "3", "2", "2", "3", "2"]} +{"4001670": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001671": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001672": ["3", "3", "3", "2", "1", "1", "1"]} +{"4001673": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001674": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001675": ["3", "1", "3", "2", "2", "3", "3"]} +{"4001676": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001677": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001678": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001679": ["3", "2", "3", "2", "3", "2", "2"]} +{"4001680": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001681": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001682": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001683": ["3", "3", "3", "2", "3", "1", "2"]} +{"4001684": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001685": ["3", "2", "3", "2", "2", "3", "3"]} +{"4001686": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001687": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001688": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001689": ["3", "2", "3", "2", "3", "1", "2"]} +{"4001690": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001691": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001692": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001693": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001694": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001695": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001696": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001697": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001698": ["3", "2", "3", "3", "2", "3", "2"]} +{"4001699": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001700": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001701": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001702": ["2", "2", "3", "2", "3", "3", "3"]} +{"4001703": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001704": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001705": ["2", "3", "3", "2", "3", "3", "1"]} +{"4001706": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001707": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001708": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001709": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001710": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001711": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001712": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001713": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001714": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001716": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001717": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001718": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001719": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001720": ["2", "1", "3", "3", "1", "3", "2"]} +{"4001721": ["3", "1", "3", "3", "1", "3", "2"]} +{"4001722": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001723": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001724": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001725": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001726": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001727": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001728": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001729": ["2", "2", "2", "3", "1", "3", "2"]} +{"4001730": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001731": ["3", "1", "3", "3", "3", "1", "2"]} +{"4001732": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001733": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001734": ["2", "3", "1", "3", "3", "3", "3"]} +{"4001735": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001736": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001737": ["2", "2", "1", "3", "2", "3", "2"]} +{"4001738": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001739": ["3", "1", "3", "3", "3", "3", "3"]} +{"4001740": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001741": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001742": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001743": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001744": ["2", "3", "2", "3", "3", "3", "3"]} +{"4001745": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001746": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001747": ["3", "2", "3", "2", "3", "1", "2"]} +{"4001748": ["3", "3", "3", "3", "3", "1", "3"]} +{"4001749": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001750": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001751": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001752": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001753": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001754": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001755": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001756": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001757": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001758": ["3", "3", "1", "3", "1", "3", "1"]} +{"4001759": ["2", "1", "3", "1", "1", "3", "1"]} +{"4001760": ["2", "2", "3", "3", "2", "1", "2"]} +{"4001761": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001762": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001763": ["3", "3", "2", "2", "3", "3", "3"]} +{"4001764": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001765": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001766": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001767": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001768": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001769": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001770": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001771": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001772": ["3", "3", "3", "2", "1", "3", "3"]} +{"4001773": ["3", "1", "3", "2", "2", "3", "2"]} +{"4001774": ["3", "3", "1", "3", "2", "3", "2"]} +{"4001775": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001776": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001777": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001778": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001779": ["3", "3", "3", "3", "1", "3", "2"]} +{"4001780": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001781": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001782": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001783": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001784": ["3", "1", "3", "1", "3", "3", "1"]} +{"4001785": ["3", "1", "3", "1", "2", "3", "1"]} +{"4001787": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001788": ["3", "3", "3", "2", "2", "3", "3"]} +{"4001789": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001790": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001791": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001792": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001793": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001794": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001795": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001796": ["2", "3", "3", "3", "1", "3", "2"]} +{"4001797": ["3", "1", "3", "2", "1", "3", "2"]} +{"4001798": ["3", "2", "3", "2", "3", "1", "2"]} +{"4001799": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001800": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001801": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001803": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001804": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001805": ["3", "2", "3", "2", "1", "3", "1"]} +{"4001806": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001807": ["2", "3", "2", "3", "3", "3", "2"]} +{"4001808": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001809": ["2", "3", "3", "2", "3", "2", "2"]} +{"4001810": ["3", "2", "3", "2", "2", "1", "2"]} +{"4001811": ["3", "2", "3", "2", "2", "3", "3"]} +{"4001812": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001813": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001814": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001815": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001816": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001817": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001818": ["3", "3", "2", "3", "3", "3", "2"]} +{"4001819": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001820": ["2", "3", "2", "2", "3", "3", "3"]} +{"4001821": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001822": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001823": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001824": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001825": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001826": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001827": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001828": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001829": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001830": ["2", "3", "1", "3", "3", "3", "2"]} +{"4001831": ["1", "1", "3", "2", "1", "3", "1"]} +{"4001832": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001833": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001834": ["2", "3", "3", "3", "2", "2", "2"]} +{"4001835": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001836": ["3", "3", "2", "2", "3", "1", "2"]} +{"4001837": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001838": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001839": ["3", "3", "2", "3", "1", "3", "3"]} +{"4001840": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001841": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001842": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001843": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001844": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001845": ["2", "1", "3", "1", "1", "3", "1"]} +{"4001846": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001847": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001848": ["3", "3", "3", "3", "3", "2", "2"]} +{"4001849": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001850": ["3", "3", "1", "1", "3", "3", "3"]} +{"4001851": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001852": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001853": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001854": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001855": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001856": ["2", "2", "3", "2", "3", "2", "2"]} +{"4001857": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001858": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001859": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001860": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001861": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001862": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001863": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001864": ["2", "3", "2", "2", "3", "3", "3"]} +{"4001865": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001866": ["3", "1", "2", "3", "3", "3", "3"]} +{"4001867": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001868": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001869": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001870": ["3", "1", "3", "2", "2", "3", "2"]} +{"4001872": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001873": ["3", "3", "3", "3", "1", "3", "3"]} +{"4001874": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001875": ["3", "3", "1", "3", "1", "3", "3"]} +{"4001876": ["2", "2", "3", "3", "2", "3", "2"]} +{"4001877": ["3", "1", "3", "1", "2", "3", "1"]} +{"4001878": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001880": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001881": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001882": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001883": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001884": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001885": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001886": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001887": ["3", "1", "3", "2", "3", "2", "2"]} +{"4001888": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001889": ["2", "3", "3", "2", "2", "3", "2"]} +{"4001890": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001891": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001892": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001893": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001894": ["2", "3", "3", "2", "3", "1", "2"]} +{"4001895": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001896": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001897": ["2", "1", "3", "3", "2", "3", "2"]} +{"4001898": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001899": ["2", "1", "3", "2", "1", "3", "2"]} +{"4001900": ["2", "2", "3", "3", "3", "3", "3"]} +{"4001901": ["3", "3", "1", "1", "3", "3", "2"]} +{"4001902": ["2", "3", "1", "1", "3", "3", "3"]} +{"4001903": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001904": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001905": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001906": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001907": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001908": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001909": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001910": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001911": ["3", "1", "3", "2", "2", "3", "2"]} +{"4001912": ["3", "3", "2", "3", "1", "2", "2"]} +{"4001913": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001914": ["2", "1", "3", "2", "3", "3", "2"]} +{"4001915": ["3", "3", "1", "3", "1", "3", "1"]} +{"4001916": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001917": ["3", "3", "3", "2", "1", "3", "2"]} +{"4001918": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001919": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001920": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001921": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001922": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001923": ["2", "3", "1", "3", "3", "3", "2"]} +{"4001924": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001925": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001926": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001927": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001928": ["3", "2", "3", "3", "3", "3", "3"]} +{"4001929": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001930": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001931": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001932": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001933": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001934": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001935": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001936": ["3", "3", "1", "3", "3", "3", "3"]} +{"4001937": ["2", "3", "3", "3", "2", "1", "3"]} +{"4001938": ["2", "3", "3", "2", "3", "3", "3"]} +{"4001939": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001940": ["3", "3", "1", "2", "3", "3", "3"]} +{"4001941": ["3", "2", "3", "2", "1", "3", "2"]} +{"4001942": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001943": ["2", "3", "3", "2", "3", "3", "2"]} +{"4001944": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001945": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001946": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001947": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001948": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001949": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001950": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001951": ["3", "1", "3", "2", "3", "2", "2"]} +{"4001952": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001953": ["2", "3", "3", "3", "2", "3", "3"]} +{"4001954": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001955": ["3", "3", "2", "3", "1", "1", "1"]} +{"4001956": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001957": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001958": ["2", "3", "2", "2", "3", "3", "3"]} +{"4001959": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001960": ["3", "1", "3", "2", "3", "3", "2"]} +{"4001961": ["3", "3", "3", "2", "3", "3", "3"]} +{"4001962": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001965": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001966": ["2", "2", "3", "1", "3", "3", "2"]} +{"4001967": ["3", "3", "2", "3", "2", "3", "3"]} +{"4001968": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001969": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001970": ["3", "2", "3", "2", "2", "3", "2"]} +{"4001971": ["2", "3", "3", "3", "3", "1", "3"]} +{"4001972": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001973": ["3", "3", "3", "2", "2", "3", "2"]} +{"4001974": ["3", "3", "3", "3", "2", "3", "3"]} +{"4001975": ["2", "2", "3", "2", "3", "3", "2"]} +{"4001976": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001977": ["3", "1", "3", "1", "3", "3", "1"]} +{"4001978": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001979": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001980": ["3", "3", "3", "2", "3", "3", "2"]} +{"4001981": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001982": ["3", "3", "3", "3", "3", "3", "3"]} +{"4001983": ["3", "2", "3", "2", "3", "3", "2"]} +{"4001984": ["3", "3", "2", "3", "3", "3", "3"]} +{"4001985": ["2", "3", "3", "3", "1", "3", "3"]} +{"4001986": ["2", "2", "3", "3", "1", "3", "2"]} +{"4001987": ["3", "2", "3", "2", "3", "3", "3"]} +{"4001988": ["2", "1", "3", "1", "2", "3", "1"]} +{"4001989": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001990": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001991": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001992": ["3", "3", "1", "3", "1", "3", "2"]} +{"4001993": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001994": ["3", "3", "1", "3", "3", "3", "2"]} +{"4001995": ["2", "2", "3", "1", "3", "3", "2"]} +{"4001996": ["2", "3", "3", "3", "3", "3", "3"]} +{"4001997": ["3", "3", "3", "2", "3", "2", "2"]} +{"4001998": ["3", "1", "3", "2", "3", "1", "2"]} +{"4001999": ["3", "3", "2", "3", "3", "3", "3"]} \ No newline at end of file diff --git a/webpage/res/res_current/ans_quy.jsonl b/webpage/res/res_current/ans_quy.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..dc64ed5b4c9320ec0edf4900d9dcb13e498ce0f2 --- /dev/null +++ b/webpage/res/res_current/ans_quy.jsonl @@ -0,0 +1,2021 @@ +{"0002000": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002001": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002002": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002003": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002004": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002005": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002006": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002007": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002008": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002009": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002010": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002011": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002012": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002013": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002014": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002015": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002016": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002017": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002018": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002019": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002020": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002021": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002022": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002023": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002024": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002025": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002026": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002027": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002028": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002029": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002030": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002031": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002032": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002033": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002034": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002035": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002036": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002037": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002038": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002039": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002040": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002041": ["3", "2", "None", "3", "3", "None", "2"]} +{"0002042": ["2", "2", "None", "3", "2", "None", "2"]} +{"0002043": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002044": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002045": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002046": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002047": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002049": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002050": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002051": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002052": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002053": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002054": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002055": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002056": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002057": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002058": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002059": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002060": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002061": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002062": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002063": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002064": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002065": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002066": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002067": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002068": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002069": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002070": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002072": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002073": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002074": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002075": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002076": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002077": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002078": ["3", "2", "None", "3", "3", "None", "3"]} +{"0002079": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002080": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002081": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002082": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002083": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002084": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002085": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002086": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002087": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002088": ["2", "2", "None", "2", "1", "None", "2"]} +{"0002089": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002090": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002091": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002092": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002093": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002094": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002095": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002096": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002097": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002098": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002099": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002100": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002101": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002102": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002103": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002104": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002105": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002106": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002107": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002108": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002109": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002110": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002111": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002112": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002113": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002114": ["2", "2", "None", "2", "2", "None", "2"]} +{"0002115": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002116": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002117": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002118": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002119": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002120": ["3", "2", "None", "3", "3", "None", "3"]} +{"0002121": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002122": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002123": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002124": ["3", "3", "None", "2", "2", "None", "3"]} +{"0002125": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002126": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002127": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002128": ["2", "3", "None", "3", "3", "None", "2"]} +{"0002129": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002130": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002131": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002132": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002133": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002134": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002135": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002136": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002137": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002138": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002139": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002140": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002141": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002142": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002143": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002144": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002145": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002146": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002147": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002148": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002149": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002150": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002151": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002152": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002153": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002154": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002155": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002156": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002157": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002158": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002159": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002160": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002161": ["3", "3", "None", "1", "3", "None", "2"]} +{"0002162": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002163": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002164": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002165": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002166": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002167": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002168": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002169": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002170": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002171": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002172": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002173": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002174": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002175": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002176": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002177": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002178": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002179": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002180": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002181": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002182": ["2", "3", "None", "2", "3", "None", "2"]} +{"0002183": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002184": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002185": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002186": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002187": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002188": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002189": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002190": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002191": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002192": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002193": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002194": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002195": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002196": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002197": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002198": ["3", "2", "None", "3", "2", "None", "2"]} +{"0002199": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002200": ["2", "3", "None", "2", "1", "None", "2"]} +{"0002201": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002202": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002203": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002204": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002205": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002206": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002207": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002208": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002209": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002210": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002211": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002212": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002213": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002214": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002215": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002216": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002217": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002218": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002219": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002220": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002221": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002222": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002223": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002224": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002225": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002226": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002227": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002228": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002229": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002230": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002231": ["2", "3", "None", "1", "3", "None", "3"]} +{"0002232": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002233": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002234": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002235": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002236": ["2", "2", "None", "2", "1", "None", "2"]} +{"0002237": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002238": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002239": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002240": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002241": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002242": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002243": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002244": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002245": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002246": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002247": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002248": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002249": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002250": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002251": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002252": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002253": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002254": ["2", "2", "None", "2", "1", "None", "2"]} +{"0002255": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002256": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002257": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002258": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002259": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002260": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002261": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002262": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002263": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002264": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002265": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002266": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002267": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002268": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002269": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002270": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002271": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002272": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002273": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002274": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002275": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002276": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002277": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002278": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002279": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002280": ["2", "3", "None", "1", "3", "None", "3"]} +{"0002281": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002282": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002283": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002284": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002285": ["3", "2", "None", "3", "3", "None", "2"]} +{"0002286": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002287": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002288": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002289": ["3", "2", "None", "2", "1", "None", "2"]} +{"0002290": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002291": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002292": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002293": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002294": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002295": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002296": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002297": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002298": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002299": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002300": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002301": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002302": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002303": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002304": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002305": ["1", "3", "None", "3", "3", "None", "3"]} +{"0002306": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002307": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002308": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002309": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002310": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002311": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002312": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002313": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002314": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002315": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002316": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002317": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002318": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002319": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002320": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002321": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002322": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002323": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002324": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002325": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002326": ["3", "1", "None", "1", "1", "None", "1"]} +{"0002327": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002328": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002329": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002330": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002331": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002332": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002333": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002334": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002335": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002336": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002337": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002338": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002340": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002341": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002342": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002343": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002344": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002345": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002346": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002347": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002348": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002349": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002350": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002351": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002352": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002353": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002354": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002355": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002356": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002357": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002358": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002359": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002360": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002361": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002362": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002363": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002364": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002365": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002366": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002367": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002368": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002369": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002370": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002371": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002372": ["3", "3", "None", "1", "3", "None", "2"]} +{"0002373": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002374": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002375": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002376": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002378": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002379": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002380": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002381": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002382": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002383": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002384": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002385": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002386": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002387": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002388": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002389": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002390": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002391": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002392": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002393": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002394": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002395": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002396": ["3", "2", "None", "3", "3", "None", "3"]} +{"0002397": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002398": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002399": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002400": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002401": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002402": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002403": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002404": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002405": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002406": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002407": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002408": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002409": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002410": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002411": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002412": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002413": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002414": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002415": ["3", "2", "None", "3", "3", "None", "2"]} +{"0002416": ["3", "2", "None", "3", "2", "None", "2"]} +{"0002417": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002418": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002419": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002420": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002421": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002422": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002423": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002424": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002425": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002426": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002427": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002428": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002429": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002430": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002431": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002432": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002433": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002434": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002435": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002436": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002437": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002438": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002439": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002440": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002441": ["3", "2", "None", "3", "2", "None", "2"]} +{"0002442": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002443": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002444": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002445": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002446": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002447": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002448": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002449": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002450": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002451": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002452": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002453": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002454": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002455": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002456": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002457": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002458": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002459": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002460": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002461": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002462": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002463": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002464": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002465": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002466": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002467": ["2", "2", "None", "2", "1", "None", "2"]} +{"0002468": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002470": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002471": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002472": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002473": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002474": ["3", "2", "None", "3", "2", "None", "2"]} +{"0002475": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002476": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002477": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002478": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002479": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002480": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002481": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002482": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002483": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002484": ["3", "3", "None", "1", "2", "None", "2"]} +{"0002485": ["3", "3", "None", "1", "3", "None", "2"]} +{"0002486": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002487": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002488": ["2", "3", "None", "2", "3", "None", "2"]} +{"0002489": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002490": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002491": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002492": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002493": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002494": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002495": ["3", "3", "None", "2", "2", "None", "3"]} +{"0002496": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002497": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002498": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002499": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002500": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002501": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002502": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002503": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002504": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002505": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002506": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002507": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002508": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002509": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002510": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002511": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002512": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002513": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002514": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002515": ["2", "3", "None", "2", "1", "None", "2"]} +{"0002516": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002517": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002518": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002519": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002520": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002521": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002522": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002523": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002524": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002525": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002526": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002527": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002528": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002529": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002530": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002531": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002532": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002533": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002534": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002535": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002536": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002537": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002538": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002539": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002540": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002541": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002542": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002543": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002544": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002545": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002546": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002547": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002548": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002549": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002550": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002551": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002552": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002553": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002554": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002555": ["2", "3", "None", "3", "3", "None", "2"]} +{"0002556": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002557": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002558": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002559": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002560": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002561": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002562": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002563": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002564": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002565": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002566": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002567": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002568": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002569": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002570": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002571": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002572": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002573": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002574": ["3", "3", "None", "1", "3", "None", "2"]} +{"0002575": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002576": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002577": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002578": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002579": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002580": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002581": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002582": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002583": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002584": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002585": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002586": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002587": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002588": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002589": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002590": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002591": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002592": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002593": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002594": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002595": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002596": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002597": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002598": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002599": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002600": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002601": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002602": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002603": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002604": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002605": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002606": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002607": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002608": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002609": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002610": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002611": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002612": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002613": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002614": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002615": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002616": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002617": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002619": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002620": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002621": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002622": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002623": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002624": ["2", "3", "None", "3", "3", "None", "2"]} +{"0002625": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002626": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002627": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002628": ["2", "3", "None", "2", "3", "None", "2"]} +{"0002629": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002630": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002631": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002632": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002633": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002634": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002635": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002636": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002637": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002638": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002639": ["2", "3", "None", "2", "1", "None", "2"]} +{"0002640": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002641": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002642": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002643": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002644": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002645": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002646": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002647": ["2", "3", "None", "2", "3", "None", "2"]} +{"0002648": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002649": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002650": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002651": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002652": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002653": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002654": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002655": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002656": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002657": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002658": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002659": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002660": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002661": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002662": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002663": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002664": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002665": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002666": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002667": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002668": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002669": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002670": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002671": ["2", "2", "None", "3", "2", "None", "2"]} +{"0002672": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002673": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002674": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002675": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002676": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002677": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002678": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002679": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002680": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002681": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002682": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002683": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002684": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002685": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002686": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002687": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002688": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002689": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002690": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002691": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002692": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002693": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002694": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002695": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002696": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002697": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002698": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002699": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002700": ["3", "1", "None", "3", "3", "None", "3"]} +{"0002701": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002702": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002703": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002704": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002705": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002707": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002708": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002709": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002710": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002711": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002712": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002713": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002714": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002715": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002716": ["3", "3", "None", "3", "1", "None", "2"]} +{"0002717": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002718": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002719": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002720": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002721": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002722": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002723": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002724": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002725": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002726": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002727": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002728": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002729": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002730": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002731": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002732": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002733": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002734": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002735": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002736": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002737": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002738": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002739": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002740": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002741": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002742": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002743": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002744": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002745": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002746": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002747": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002748": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002749": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002750": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002751": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002752": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002753": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002754": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002755": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002756": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002757": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002758": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002760": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002761": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002762": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002763": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002764": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002765": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002766": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002767": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002768": ["3", "3", "None", "2", "2", "None", "2"]} +{"0002769": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002770": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002771": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002772": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002773": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002774": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002775": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002776": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002777": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002778": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002779": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002780": ["2", "2", "None", "3", "2", "None", "2"]} +{"0002781": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002782": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002783": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002784": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002785": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002786": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002787": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002788": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002789": ["3", "3", "None", "2", "3", "None", "2"]} +{"0002790": ["2", "3", "None", "2", "2", "None", "3"]} +{"0002791": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002792": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002793": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002794": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002795": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002796": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002797": ["3", "2", "None", "3", "2", "None", "2"]} +{"0002798": ["2", "3", "None", "3", "3", "None", "2"]} +{"0002799": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002800": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002801": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002802": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002803": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002804": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002805": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002806": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002807": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002808": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002809": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002810": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002811": ["3", "3", "None", "1", "3", "None", "3"]} +{"0002812": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002813": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002814": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002815": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002816": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002817": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002818": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002819": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002820": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002821": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002822": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002823": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002824": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002825": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002826": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002827": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002828": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002829": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002830": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002831": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002832": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002833": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002834": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002835": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002836": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002837": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002838": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002839": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002840": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002841": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002842": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002843": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002844": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002845": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002846": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002847": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002848": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002849": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002850": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002851": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002852": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002853": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002854": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002855": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002856": ["2", "2", "None", "3", "3", "None", "2"]} +{"0002857": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002858": ["3", "2", "None", "3", "3", "None", "2"]} +{"0002859": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002860": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002861": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002862": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002863": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002864": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002865": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002866": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002867": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002868": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002869": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002870": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002871": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002872": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002873": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002874": ["2", "2", "None", "3", "3", "None", "3"]} +{"0002875": ["2", "3", "None", "2", "3", "None", "3"]} +{"0002876": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002877": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002878": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002879": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002880": ["3", "2", "None", "3", "3", "None", "3"]} +{"0002881": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002882": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002883": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002884": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002885": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002886": ["2", "2", "None", "2", "2", "None", "2"]} +{"0002887": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002888": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002889": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002890": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002891": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002892": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002893": ["2", "2", "None", "3", "1", "None", "2"]} +{"0002894": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002895": ["3", "3", "None", "3", "2", "None", "2"]} +{"0002896": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002897": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002898": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002899": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002900": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002901": ["3", "3", "None", "3", "1", "None", "3"]} +{"0002902": ["3", "2", "None", "2", "3", "None", "3"]} +{"0002903": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002904": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002905": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002906": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002907": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002908": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002909": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002910": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002911": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002912": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002913": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002914": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002915": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002916": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002917": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002918": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002919": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002920": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002921": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002922": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002923": ["3", "2", "None", "2", "2", "None", "2"]} +{"0002924": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002925": ["2", "2", "None", "2", "3", "None", "2"]} +{"0002926": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002927": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002928": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002929": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002930": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002931": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002932": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002933": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002934": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002935": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002936": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002937": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002938": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002939": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002940": ["2", "3", "None", "2", "2", "None", "2"]} +{"0002941": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002942": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002943": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002944": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002945": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002946": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002947": ["2", "2", "None", "2", "2", "None", "2"]} +{"0002948": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002949": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002950": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002951": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002952": ["3", "3", "None", "2", "3", "None", "3"]} +{"0002953": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002954": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002955": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002956": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002957": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002958": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002959": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002960": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002961": ["2", "3", "None", "2", "1", "None", "2"]} +{"0002962": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002963": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002964": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002965": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002966": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002967": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002968": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002969": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002970": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002971": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002972": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002973": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002974": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002975": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002976": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002977": ["3", "3", "None", "3", "2", "None", "3"]} +{"0002978": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002979": ["2", "3", "None", "3", "1", "None", "2"]} +{"0002980": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002981": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002982": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002984": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002985": ["2", "3", "None", "3", "3", "None", "2"]} +{"0002986": ["3", "2", "None", "2", "3", "None", "2"]} +{"0002987": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002988": ["3", "3", "None", "3", "3", "None", "2"]} +{"0002989": ["1", "2", "None", "2", "1", "None", "1"]} +{"0002990": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002991": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002992": ["2", "3", "None", "3", "2", "None", "3"]} +{"0002993": ["1", "3", "None", "3", "3", "None", "3"]} +{"0002994": ["1", "2", "None", "3", "1", "None", "3"]} +{"0002995": ["2", "3", "None", "3", "2", "None", "2"]} +{"0002996": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002997": ["2", "3", "None", "3", "3", "None", "3"]} +{"0002998": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002999": ["2", "3", "None", "3", "1", "None", "3"]} +{"0002000": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002001": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002002": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002003": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002004": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002005": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002006": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002007": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002008": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002009": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002010": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002011": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002012": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002012": ["3", "3", "1", "3", "3", "2", "3"]} +{"0002013": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002014": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002015": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002016": ["2", "3", "3", "3", "1", "1", "2"]} +{"0002017": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002018": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002019": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002020": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002021": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002022": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002023": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002024": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002025": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002026": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002027": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002028": ["3", "3", "3", "2", "3", "2", "3"]} +{"0002029": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002030": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002031": ["3", "3", "3", "3", "1", "2", "3"]} +{"0002032": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002033": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002034": ["2", "2", "2", "3", "1", "3", "2"]} +{"0002035": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002036": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002036": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002037": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002038": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002039": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002040": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002041": ["3", "2", "3", "3", "3", "2", "2"]} +{"0002042": ["2", "2", "3", "3", "2", "3", "2"]} +{"0002043": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002044": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002045": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002046": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002047": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002048": ["3", "2", "3", "3", "3", "3", "3"]} +{"0002049": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002050": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002051": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002052": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002053": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002054": ["3", "3", "1", "2", "3", "None", "2"]} +{"0002054": ["3", "3", "1", "2", "3", "3", "2"]} +{"0002055": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002056": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002057": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002058": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002059": ["3", "3", "None", "3", "3", "None", "3"]} +{"0002059": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002060": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002061": ["3", "3", "3", "3", "1", "2", "3"]} +{"0002062": ["3", "2", "3", "2", "3", "1", "2"]} +{"0002063": ["2", "2", "3", "3", "1", "2", "2"]} +{"0002064": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002065": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002066": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002067": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002068": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002068": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002069": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002070": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002071": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002072": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002073": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002074": ["2", "3", "3", "3", "1", "3", "2"]} +{"0002075": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002076": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002077": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002078": ["3", "2", "3", "3", "3", "3", "3"]} +{"0002079": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002080": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002081": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002082": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002083": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002084": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002085": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002086": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002087": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002088": ["2", "2", "3", "2", "1", "3", "2"]} +{"0002089": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002089": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002090": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002091": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002092": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002093": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002094": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002095": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002096": ["2", "2", "2", "2", "3", "3", "2"]} +{"0002097": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002098": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002099": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002100": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002101": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002101": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002102": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002103": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002104": ["3", "3", "1", "3", "1", "3", "2"]} +{"0002105": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002106": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002107": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002108": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002109": ["3", "3", "2", "3", "3", "2", "2"]} +{"0002110": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002111": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002112": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002113": ["2", "3", "3", "3", "1", "3", "2"]} +{"0002114": ["2", "2", "3", "2", "2", "3", "2"]} +{"0002115": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002116": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002117": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002117": ["3", "3", "2", "3", "2", "2", "3"]} +{"0002118": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002119": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002120": ["3", "2", "1", "3", "3", "3", "3"]} +{"0002121": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002122": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002123": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002124": ["3", "3", "3", "2", "2", "3", "3"]} +{"0002125": ["3", "3", "3", "3", "1", "2", "3"]} +{"0002126": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002127": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002128": ["2", "3", "3", "3", "3", "2", "2"]} +{"0002129": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002130": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002131": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002132": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002133": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002134": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002135": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002136": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002137": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002138": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002139": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002140": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002141": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002142": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002143": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002144": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002145": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002146": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002147": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002148": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002149": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002150": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002151": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002152": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002153": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002154": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002155": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002156": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002157": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002157": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002158": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002159": ["3", "3", "3", "3", "2", "3", "2"]} +{"0002160": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002161": ["3", "3", "1", "1", "3", "3", "2"]} +{"0002162": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002163": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002164": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002165": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002166": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002167": ["2", "3", "1", "3", "2", "1", "2"]} +{"0002168": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002169": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002170": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002171": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002172": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002173": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002174": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002175": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002176": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002177": ["2", "3", "3", "3", "1", "2", "2"]} +{"0002178": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002179": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002179": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002180": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002181": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002182": ["2", "3", "3", "2", "3", "3", "2"]} +{"0002183": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002184": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002185": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002186": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002187": ["3", "3", "2", "3", "2", "2", "3"]} +{"0002188": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002189": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002190": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002191": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002192": ["2", "3", "2", "3", "1", "3", "3"]} +{"0002193": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002194": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002195": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002196": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002197": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002198": ["3", "2", "3", "3", "2", "3", "2"]} +{"0002199": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002200": ["2", "3", "2", "2", "1", "3", "2"]} +{"0002201": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002202": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002207": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002208": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002209": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002210": ["3", "3", "3", "3", "3", "3", "2"]} +{"0002211": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002212": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002213": ["2", "3", "3", "2", "2", "3", "2"]} +{"0002214": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002215": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002216": ["3", "3", "1", "3", "2", "3", "2"]} +{"0002219": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002220": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002221": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002203": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002204": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002205": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002206": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002217": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002218": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002222": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002223": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002224": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002225": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002226": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002227": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002228": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002229": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002230": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002231": ["2", "3", "2", "1", "3", "3", "3"]} +{"0002232": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002233": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002234": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002235": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002236": ["2", "2", "3", "2", "1", "3", "2"]} +{"0002237": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002238": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002239": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002240": ["3", "3", "3", "3", "3", "None", "3"]} +{"0002240": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002241": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002242": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002243": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002244": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002245": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002246": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002247": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002248": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002249": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002250": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002251": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002252": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002253": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002254": ["2", "2", "3", "2", "1", "3", "2"]} +{"0002255": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002256": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002257": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002258": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002259": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002260": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002261": ["2", "3", "2", "3", "1", "3", "3"]} +{"0002262": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002263": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002264": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002265": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002266": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002267": ["3", "3", "3", "3", "2", "2", "2"]} +{"0002268": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002269": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002270": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002271": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002272": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002273": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002274": ["2", "3", "3", "3", "2", "2", "3"]} +{"0002275": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002276": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002277": ["2", "2", "3", "3", "1", "2", "2"]} +{"0002278": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002279": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002280": ["2", "3", "1", "1", "3", "3", "3"]} +{"0002281": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002282": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002283": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002284": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002285": ["3", "2", "3", "3", "3", "3", "2"]} +{"0002286": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002287": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002288": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002289": ["3", "2", "3", "2", "1", "3", "2"]} +{"0002290": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002291": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002292": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002293": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002294": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002295": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002296": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002297": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002298": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002299": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002300": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002301": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002302": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002303": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002304": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002305": ["1", "3", "3", "3", "3", "3", "3"]} +{"0002306": ["3", "3", "3", "3", "1", "2", "2"]} +{"0002307": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002308": ["3", "3", "2", "3", "3", "2", "3"]} +{"0002309": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002310": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002311": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002312": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002313": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002314": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002315": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002316": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002317": ["3", "3", "1", "3", "1", "3", "3"]} +{"0002318": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002319": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002320": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002321": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002322": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002323": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002324": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002325": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002326": ["3", "1", "3", "1", "1", "1", "1"]} +{"0002327": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002328": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002329": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002330": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002331": ["3", "3", "2", "3", "3", "2", "3"]} +{"0002332": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002333": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002334": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002335": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002336": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002337": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002338": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002339": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002340": ["3", "3", "3", "3", "1", "3", "2"]} +{"0002341": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002342": ["3", "3", "1", "3", "2", "3", "2"]} +{"0002343": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002344": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002345": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002346": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002347": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002348": ["3", "3", "1", "2", "3", "3", "3"]} +{"0002349": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002350": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002351": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002352": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002353": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002354": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002355": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002356": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002357": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002358": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002359": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002360": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002361": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002362": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002363": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002364": ["3", "3", "2", "3", "3", "2", "3"]} +{"0002365": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002366": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002367": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002368": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002369": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002370": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002371": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002372": ["3", "3", "1", "1", "3", "3", "2"]} +{"0002373": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002374": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002375": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002376": ["3", "3", "3", "3", "1", "2", "2"]} +{"0002377": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002378": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002379": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002380": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002381": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002382": ["3", "3", "3", "3", "3", "2", "2"]} +{"0002383": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002384": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002384": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002385": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002386": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002387": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002388": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002389": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002390": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002391": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002392": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002393": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002394": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002395": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002396": ["3", "2", "2", "3", "3", "3", "3"]} +{"0002397": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002398": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002399": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002400": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002401": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002402": ["3", "3", "3", "1", "3", "3", "3"]} +{"0002403": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002404": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002405": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002406": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002407": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002408": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002409": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002410": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002411": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002412": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002413": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002414": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002415": ["3", "2", "2", "3", "3", "3", "2"]} +{"0002416": ["3", "2", "3", "3", "2", "3", "2"]} +{"0002417": ["2", "2", "3", "3", "1", "3", "2"]} +{"0002418": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002419": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002420": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002421": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002422": ["2", "3", "2", "3", "3", "2", "3"]} +{"0002423": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002424": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002425": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002426": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002427": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002428": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002429": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002430": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002431": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002432": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002433": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002434": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002435": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002436": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002437": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002438": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002439": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002440": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002441": ["3", "2", "3", "3", "2", "1", "2"]} +{"0002442": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002443": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002444": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002445": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002446": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002447": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002448": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002449": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002450": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002451": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002452": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002453": ["3", "3", "3", "3", "1", "2", "3"]} +{"0002454": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002455": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002456": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002457": ["2", "3", "3", "2", "2", "3", "2"]} +{"0002458": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002459": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002460": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002461": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002462": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002463": ["2", "2", "3", "2", "3", "3", "2"]} +{"0002464": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002465": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002466": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002467": ["2", "2", "3", "2", "1", "1", "2"]} +{"0002468": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002469": ["None", "None", "3", "None", "None", "3", "None"]} +{"0002469": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002470": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002471": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002472": ["3", "3", "3", "3", "2", "3", "2"]} +{"0002473": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002474": ["3", "2", "3", "3", "2", "2", "2"]} +{"0002475": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002475": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002476": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002477": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002478": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002479": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002480": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002481": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002482": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002483": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002484": ["3", "3", "2", "1", "2", "3", "2"]} +{"0002485": ["3", "3", "1", "1", "3", "3", "2"]} +{"0002486": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002487": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002488": ["2", "3", "3", "2", "3", "3", "2"]} +{"0002489": ["2", "3", "2", "2", "3", "3", "3"]} +{"0002490": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002491": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002492": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002493": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002494": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002495": ["3", "3", "3", "2", "2", "3", "3"]} +{"0002496": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002497": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002498": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002499": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002500": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002501": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002502": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002503": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002504": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002505": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002506": ["2", "3", "2", "2", "3", "3", "3"]} +{"0002507": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002508": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002508": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002509": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002510": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002511": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002512": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002513": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002514": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002515": ["2", "3", "3", "2", "1", "3", "2"]} +{"0002516": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002517": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002518": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002519": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002520": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002521": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002522": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002523": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002524": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002525": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002526": ["3", "3", "3", "3", "2", "3", "2"]} +{"0002527": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002528": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002529": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002530": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002531": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002532": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002533": ["3", "3", "3", "3", "3", "1", "3"]} +{"0002533": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002534": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002535": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002536": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002537": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002538": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002539": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002540": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002541": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002542": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002543": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002544": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002545": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002546": ["2", "3", "3", "2", "2", "1", "2"]} +{"0002547": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002548": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002549": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002550": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002551": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002552": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002553": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002554": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002555": ["2", "3", "2", "3", "3", "3", "2"]} +{"0002556": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002557": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002558": ["2", "3", "2", "3", "1", "3", "3"]} +{"0002559": ["2", "3", "3", "3", "2", "2", "3"]} +{"0002560": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002561": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002562": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002563": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002564": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002565": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002566": ["3", "3", "2", "3", "1", "2", "2"]} +{"0002567": ["2", "3", "3", "3", "3", "1", "3"]} +{"0002568": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002569": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002570": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002571": ["3", "3", "3", "2", "3", "3", "3"]} +{"0002572": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002573": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002574": ["3", "3", "1", "1", "3", "3", "2"]} +{"0002575": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002576": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002577": ["3", "3", "3", "3", "3", "3", "2"]} +{"0002578": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002579": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002580": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002581": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002582": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002583": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002584": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002585": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002586": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002587": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002588": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002589": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002590": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002591": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002592": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002593": ["2", "3", "3", "2", "3", "2", "3"]} +{"0002594": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002595": ["3", "3", "1", "3", "2", "3", "2"]} +{"0002596": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002597": ["3", "3", "2", "3", "3", "3", "2"]} +{"0002598": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002599": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002600": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002601": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002602": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002602": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002603": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002604": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002605": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002606": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002607": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002608": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002609": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002610": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002611": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002612": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002613": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002614": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002615": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002616": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002617": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002618": ["None", "None", "3", "None", "None", "3", "None"]} +{"0002618": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002619": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002620": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002621": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002622": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002623": ["3", "3", "3", "3", "2", "2", "2"]} +{"0002624": ["2", "3", "1", "3", "3", "3", "2"]} +{"0002625": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002626": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002627": ["3", "3", "1", "3", "2", "3", "3"]} +{"0002628": ["2", "3", "3", "2", "3", "3", "2"]} +{"0002629": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002630": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002631": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002632": ["3", "2", "3", "2", "2", "3", "2"]} +{"0002633": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002634": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002635": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002636": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002637": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002638": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002639": ["2", "3", "3", "2", "1", "3", "2"]} +{"0002640": ["2", "3", "2", "3", "1", "3", "3"]} +{"0002641": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002642": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002643": ["3", "3", "1", "2", "3", "3", "3"]} +{"0002644": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002645": ["3", "3", "2", "3", "3", "2", "3"]} +{"0002646": ["3", "3", "1", "3", "3", "2", "3"]} +{"0002647": ["2", "3", "3", "2", "3", "3", "2"]} +{"0002648": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002649": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002650": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002651": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002651": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002652": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002653": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002654": ["3", "3", "1", "3", "2", "3", "3"]} +{"0002655": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002656": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002657": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002658": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002659": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002660": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002661": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002662": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002663": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002664": ["2", "2", "2", "3", "1", "3", "2"]} +{"0002665": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002666": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002666": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002667": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002668": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002669": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002670": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002671": ["2", "2", "3", "3", "2", "2", "2"]} +{"0002672": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002673": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002674": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002675": ["3", "3", "3", "2", "3", "3", "3"]} +{"0002676": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002677": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002678": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002679": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002680": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002681": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002682": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002683": ["2", "3", "2", "3", "1", "3", "3"]} +{"0002684": ["2", "3", "3", "3", "1", "3", "2"]} +{"0002685": ["3", "3", "2", "2", "3", "3", "2"]} +{"0002686": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002687": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002688": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002689": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002690": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002691": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002692": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002693": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002694": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002695": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002696": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002697": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002698": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002699": ["3", "3", "1", "3", "2", "3", "3"]} +{"0002700": ["3", "1", "1", "3", "3", "2", "3"]} +{"0002701": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002702": ["2", "2", "3", "3", "1", "3", "2"]} +{"0002703": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002704": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002704": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002705": ["3", "3", "2", "3", "1", "3", "2"]} +{"0002706": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002707": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002708": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002709": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002710": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002711": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002712": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002713": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002714": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002715": ["3", "3", "1", "2", "3", "3", "3"]} +{"0002716": ["3", "3", "3", "3", "1", "3", "2"]} +{"0002717": ["3", "3", "3", "2", "3", "2", "3"]} +{"0002718": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002719": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002720": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002721": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002722": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002723": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002724": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002725": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002726": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002727": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002728": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002729": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002730": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002731": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002732": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002732": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002733": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002734": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002735": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002736": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002737": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002738": ["3", "3", "3", "3", "1", "2", "3"]} +{"0002739": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002740": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002741": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002742": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002743": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002744": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002745": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002746": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002747": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002748": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002749": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002750": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002751": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002752": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002753": ["3", "3", "3", "2", "2", "2", "2"]} +{"0002754": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002755": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002756": ["2", "3", "3", "3", "2", "2", "3"]} +{"0002756": ["2", "3", "3", "3", "2", "1", "3"]} +{"0002757": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002758": ["3", "3", "1", "3", "2", "3", "3"]} +{"0002759": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002760": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002761": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002762": ["3", "3", "3", "2", "3", "2", "2"]} +{"0002763": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002764": ["2", "3", "1", "3", "1", "3", "2"]} +{"0002765": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002766": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002767": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002768": ["3", "3", "3", "2", "2", "3", "2"]} +{"0002769": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002770": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002771": ["3", "3", "2", "1", "3", "3", "3"]} +{"0002772": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002773": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002774": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002775": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002776": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002777": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002778": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002779": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002780": ["2", "2", "3", "3", "2", "1", "2"]} +{"0002781": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002782": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002783": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002784": ["3", "3", "1", "3", "2", "3", "3"]} +{"0002785": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002786": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002787": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002788": ["3", "3", "2", "2", "3", "3", "3"]} +{"0002789": ["3", "3", "3", "2", "3", "3", "2"]} +{"0002790": ["2", "3", "3", "2", "2", "3", "3"]} +{"0002791": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002792": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002793": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002794": ["3", "2", "3", "2", "2", "2", "2"]} +{"0002795": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002796": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002797": ["3", "2", "3", "3", "2", "2", "2"]} +{"0002798": ["2", "3", "2", "3", "3", "3", "2"]} +{"0002799": ["2", "3", "3", "3", "2", "3", "2"]} +{"0002800": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002801": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002802": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002803": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002804": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002805": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002806": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002807": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002808": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002809": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002810": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002811": ["3", "3", "1", "1", "3", "3", "3"]} +{"0002812": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002813": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002814": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002815": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002816": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002817": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002818": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002818": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002819": ["3", "3", "2", "3", "1", "3", "3"]} +{"0002820": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002821": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002822": ["2", "3", "2", "3", "2", "3", "3"]} +{"0002822": ["2", "3", "2", "3", "2", "2", "3"]} +{"0002823": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002824": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002825": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002826": ["3", "3", "3", "2", "3", "2", "3"]} +{"0002827": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002828": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002829": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002830": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002831": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002832": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002833": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002834": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002835": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002836": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002837": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002838": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002839": ["2", "3", "3", "3", "2", "2", "2"]} +{"0002840": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002841": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002842": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002843": ["3", "3", "3", "2", "3", "3", "3"]} +{"0002844": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002845": ["2", "3", "3", "2", "2", "3", "2"]} +{"0002846": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002847": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002848": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002849": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002850": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002851": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002851": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002852": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002853": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002854": ["2", "3", "3", "3", "2", "3", "2"]} +{"0002855": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002856": ["2", "2", "3", "3", "3", "3", "2"]} +{"0002857": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002858": ["3", "2", "3", "3", "3", "3", "2"]} +{"0002859": ["3", "2", "3", "2", "3", "2", "3"]} +{"0002860": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002861": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002862": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002863": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002864": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002865": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002866": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002867": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002868": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002869": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002870": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002871": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002872": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002873": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002874": ["2", "2", "3", "3", "3", "3", "3"]} +{"0002875": ["2", "3", "3", "2", "3", "3", "3"]} +{"0002876": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002877": ["3", "3", "3", "3", "3", "2", "3"]} +{"0002878": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002879": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002880": ["3", "2", "3", "3", "3", "3", "3"]} +{"0002881": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002882": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002883": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002884": ["2", "3", "3", "2", "2", "3", "2"]} +{"0002885": ["3", "3", "2", "3", "2", "3", "3"]} +{"0002886": ["2", "2", "2", "2", "2", "3", "2"]} +{"0002887": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002888": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002889": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002891": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002892": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002893": ["2", "2", "3", "3", "1", "3", "2"]} +{"0002894": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002895": ["3", "3", "2", "3", "2", "3", "2"]} +{"0002896": ["3", "2", "3", "2", "3", "2", "2"]} +{"0002897": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002898": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002899": ["2", "3", "3", "2", "2", "3", "2"]} +{"0002900": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002901": ["3", "3", "3", "3", "1", "3", "3"]} +{"0002902": ["3", "2", "3", "2", "3", "3", "3"]} +{"0002903": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002904": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002905": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002906": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002907": ["3", "3", "1", "3", "3", "2", "3"]} +{"0002908": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002909": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002910": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002911": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002912": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002913": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002914": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002915": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002916": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002917": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002918": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002919": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002920": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002921": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002922": ["2", "3", "1", "3", "2", "3", "2"]} +{"0002923": ["3", "2", "3", "2", "2", "1", "2"]} +{"0002924": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002925": ["2", "2", "3", "2", "3", "2", "2"]} +{"0002926": ["2", "3", "3", "3", "2", "2", "3"]} +{"0002927": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002928": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002929": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002930": ["2", "3", "1", "3", "2", "3", "2"]} +{"0002931": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002932": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002933": ["3", "3", "3", "3", "2", "1", "3"]} +{"0002933": ["3", "3", "3", "3", "2", "2", "3"]} +{"0002934": ["3", "3", "2", "3", "2", "2", "3"]} +{"0002935": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002936": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002937": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002938": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002939": ["2", "3", "3", "3", "1", "1", "2"]} +{"0002940": ["2", "3", "3", "2", "2", "2", "2"]} +{"0002941": ["3", "3", "3", "3", "3", "1", "2"]} +{"0002942": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002943": ["2", "3", "3", "3", "2", "1", "3"]} +{"0002944": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002945": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002946": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002947": ["2", "2", "3", "2", "2", "2", "2"]} +{"0002948": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002949": ["2", "3", "2", "3", "2", "3", "2"]} +{"0002950": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002951": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002952": ["3", "3", "3", "2", "3", "3", "3"]} +{"0002953": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002954": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002955": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002956": ["3", "3", "1", "3", "3", "3", "3"]} +{"0002957": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002958": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002959": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002960": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002961": ["2", "3", "3", "2", "1", "2", "2"]} +{"0002962": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002963": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002964": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002965": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002966": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002967": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002968": ["2", "3", "1", "3", "2", "3", "3"]} +{"0002969": ["2", "3", "3", "3", "1", "3", "2"]} +{"0002970": ["2", "3", "3", "3", "2", "2", "3"]} +{"0002971": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002972": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002973": ["2", "3", "2", "3", "1", "3", "2"]} +{"0002974": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002975": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002976": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002977": ["3", "3", "3", "3", "2", "3", "3"]} +{"0002978": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002979": ["2", "3", "3", "3", "1", "3", "2"]} +{"0002980": ["2", "3", "1", "3", "3", "3", "3"]} +{"0002981": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002982": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002983": ["3", "3", "2", "3", "3", "3", "3"]} +{"0002984": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002985": ["2", "3", "2", "3", "3", "1", "2"]} +{"0002986": ["3", "2", "3", "2", "3", "3", "2"]} +{"0002987": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002988": ["3", "3", "1", "3", "3", "3", "2"]} +{"0002989": ["1", "2", "3", "2", "1", "3", "1"]} +{"0002990": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002990": ["2", "3", "3", "3", "3", "2", "3"]} +{"0002991": ["2", "3", "2", "3", "3", "3", "3"]} +{"0002992": ["2", "3", "3", "3", "2", "3", "3"]} +{"0002993": ["1", "3", "3", "3", "3", "3", "3"]} +{"0002994": ["1", "2", "3", "3", "1", "3", "3"]} +{"0002995": ["2", "3", "1", "3", "2", "3", "2"]} +{"0002996": ["2", "3", "3", "3", "3", "3", "3"]} +{"0002997": ["2", "3", "2", "3", "3", "2", "3"]} +{"0002998": ["2", "3", "3", "3", "1", "2", "3"]} +{"0002999": ["2", "3", "3", "3", "1", "3", "3"]} +{"0002000": ["3", "3", "3", "3", "3", "3", "3"]} +{"0002005": ["2", "1", "3", "2", "3", "2", "2"]} diff --git a/webpage/res/res_current/ans_richard.jsonl b/webpage/res/res_current/ans_richard.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..52b2b25163a1b7b9c2f0348ce177a80e112bffa9 --- /dev/null +++ b/webpage/res/res_current/ans_richard.jsonl @@ -0,0 +1,2046 @@ +{"0000000": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000001": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000002": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000003": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000004": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000005": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000006": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000007": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000008": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000009": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000010": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000011": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000012": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000013": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000014": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000015": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000016": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000017": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000018": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000019": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000020": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000021": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000022": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000023": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000024": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000025": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000026": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000027": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000028": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000029": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000030": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000031": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000032": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000033": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000034": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000035": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000036": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000037": ["2", "3", "None", "2", "3", "None", "2"]} +{"0000038": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000039": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000040": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000041": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000042": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000043": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000044": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000045": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000046": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000047": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000048": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000049": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000050": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000051": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000052": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000053": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000054": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000055": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000056": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000057": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000058": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000059": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000060": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000061": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000062": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000063": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000064": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000065": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000066": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000067": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000068": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000069": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000070": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000071": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000072": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000073": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000074": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000075": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000076": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000077": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000078": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000079": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000080": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000081": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000082": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000083": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000084": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000085": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000086": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000087": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000088": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000089": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000090": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000091": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000092": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000093": ["1", "3", "None", "3", "2", "None", "2"]} +{"0000094": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000095": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000096": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000097": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000098": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000099": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000100": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000101": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000102": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000103": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000104": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000105": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000106": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000107": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000108": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000109": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000110": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000111": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000112": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000113": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000114": ["2", "2", "None", "2", "1", "None", "2"]} +{"0000115": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000116": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000117": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000118": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000119": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000120": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000121": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000122": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000123": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000124": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000125": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000126": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000127": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000129": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000130": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000131": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000132": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000133": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000134": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000135": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000136": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000137": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000138": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000139": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000140": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000141": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000142": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000143": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000144": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000145": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000146": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000147": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000148": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000149": ["3", "1", "None", "2", "3", "None", "3"]} +{"0000150": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000151": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000152": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000153": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000154": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000155": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000156": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000157": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000158": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000159": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000160": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000161": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000162": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000163": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000164": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000165": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000166": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000167": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000168": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000169": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000170": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000171": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000172": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000173": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000174": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000175": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000176": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000177": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000178": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000179": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000180": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000181": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000182": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000183": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000184": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000185": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000186": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000187": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000188": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000189": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000190": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000191": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000192": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000193": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000194": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000195": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000196": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000197": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000198": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000199": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000200": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000201": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000202": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000203": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000204": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000205": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000206": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000207": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000208": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000209": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000210": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000211": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000212": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000213": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000214": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000215": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000216": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000217": ["3", "3", "None", "1", "3", "None", "2"]} +{"0000218": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000219": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000220": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000221": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000222": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000223": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000224": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000225": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000226": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000227": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000228": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000229": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000230": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000231": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000232": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000233": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000234": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000235": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000236": ["3", "3", "None", "2", "1", "None", "3"]} +{"0000237": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000238": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000239": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000240": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000241": ["3", "2", "None", "3", "3", "None", "3"]} +{"0000242": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000243": ["3", "2", "None", "3", "3", "None", "3"]} +{"0000244": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000245": ["3", "2", "None", "2", "2", "None", "3"]} +{"0000246": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000247": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000248": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000249": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000250": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000251": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000252": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000253": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000254": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000255": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000256": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000257": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000258": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000259": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000260": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000261": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000262": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000263": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000264": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000265": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000266": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000267": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000268": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000269": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000270": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000271": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000272": ["3", "3", "None", "1", "3", "None", "2"]} +{"0000273": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000274": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000275": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000276": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000277": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000279": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000280": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000281": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000282": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000283": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000284": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000285": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000286": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000287": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000288": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000289": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000290": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000291": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000292": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000293": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000294": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000295": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000296": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000297": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000298": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000299": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000300": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000301": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000302": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000303": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000304": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000305": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000306": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000307": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000308": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000309": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000310": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000311": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000312": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000313": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000314": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000315": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000316": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000317": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000318": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000319": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000320": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000321": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000322": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000323": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000324": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000325": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000326": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000327": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000328": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000329": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000330": ["2", "2", "None", "3", "2", "None", "3"]} +{"0000331": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000332": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000333": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000334": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000335": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000336": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000337": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000338": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000339": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000340": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000341": ["3", "2", "None", "2", "1", "None", "2"]} +{"0000342": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000343": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000344": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000345": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000346": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000347": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000348": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000349": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000350": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000351": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000352": ["3", "3", "None", "1", "2", "None", "2"]} +{"0000353": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000354": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000355": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000356": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000357": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000359": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000360": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000361": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000362": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000363": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000364": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000365": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000366": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000367": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000368": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000369": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000370": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000371": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000372": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000373": ["3", "2", "None", "3", "3", "None", "2"]} +{"0000374": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000375": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000376": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000377": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000378": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000380": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000381": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000382": ["3", "3", "None", "2", "2", "None", "2"]} +{"0000383": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000384": ["3", "2", "None", "2", "1", "None", "2"]} +{"0000385": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000386": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000387": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000388": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000389": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000390": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000391": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000392": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000393": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000394": ["2", "2", "None", "2", "2", "None", "2"]} +{"0000395": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000396": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000397": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000398": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000399": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000400": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000401": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000402": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000403": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000404": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000405": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000406": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000407": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000408": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000409": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000410": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000411": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000412": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000413": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000415": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000416": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000417": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000418": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000419": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000420": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000421": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000422": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000423": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000424": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000425": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000426": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000427": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000428": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000429": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000430": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000431": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000432": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000433": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000434": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000435": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000436": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000437": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000438": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000439": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000440": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000441": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000442": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000443": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000444": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000446": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000447": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000448": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000449": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000450": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000451": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000452": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000453": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000454": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000455": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000456": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000457": ["2", "2", "None", "2", "2", "None", "2"]} +{"0000458": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000459": ["3", "2", "None", "3", "2", "None", "2"]} +{"0000460": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000461": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000462": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000463": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000464": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000465": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000466": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000467": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000468": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000469": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000470": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000471": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000472": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000473": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000474": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000475": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000476": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000477": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000478": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000479": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000480": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000481": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000482": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000484": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000485": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000486": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000487": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000488": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000489": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000491": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000492": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000493": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000494": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000495": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000496": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000497": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000498": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000499": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000500": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000501": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000502": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000503": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000504": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000505": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000506": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000507": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000508": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000509": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000510": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000511": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000512": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000513": ["3", "3", "None", "2", "2", "None", "3"]} +{"0000514": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000515": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000516": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000517": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000518": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000519": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000520": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000521": ["3", "2", "None", "3", "2", "None", "2"]} +{"0000522": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000523": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000524": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000525": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000526": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000527": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000528": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000529": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000530": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000531": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000532": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000533": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000534": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000535": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000536": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000537": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000538": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000539": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000540": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000541": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000542": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000543": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000544": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000545": ["2", "2", "None", "2", "1", "None", "2"]} +{"0000546": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000547": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000548": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000549": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000550": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000551": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000552": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000553": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000554": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000555": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000556": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000557": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000558": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000559": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000560": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000561": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000562": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000563": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000564": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000565": ["2", "3", "None", "2", "1", "None", "2"]} +{"0000566": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000567": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000568": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000569": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000570": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000571": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000572": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000573": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000574": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000575": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000576": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000577": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000578": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000579": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000580": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000581": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000582": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000583": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000584": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000585": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000586": ["3", "3", "None", "1", "3", "None", "2"]} +{"0000587": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000588": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000589": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000590": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000591": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000592": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000593": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000594": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000595": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000596": ["3", "2", "None", "2", "1", "None", "2"]} +{"0000597": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000598": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000599": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000601": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000602": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000603": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000604": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000605": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000606": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000607": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000608": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000609": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000610": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000611": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000612": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000613": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000614": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000615": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000616": ["2", "2", "None", "2", "2", "None", "2"]} +{"0000617": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000618": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000619": ["2", "2", "None", "2", "1", "None", "1"]} +{"0000620": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000621": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000622": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000623": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000624": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000625": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000626": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000627": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000628": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000629": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000630": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000631": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000632": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000633": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000634": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000635": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000636": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000637": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000638": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000639": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000640": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000641": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000642": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000643": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000644": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000645": ["3", "2", "None", "3", "3", "None", "3"]} +{"0000646": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000647": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000648": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000649": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000650": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000651": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000652": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000653": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000654": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000655": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000656": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000657": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000658": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000659": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000660": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000661": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000662": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000663": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000664": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000665": ["3", "3", "None", "2", "1", "None", "2"]} +{"0000666": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000667": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000668": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000669": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000670": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000671": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000673": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000674": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000675": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000676": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000677": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000678": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000679": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000680": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000681": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000682": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000683": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000684": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000685": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000686": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000687": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000688": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000689": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000690": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000691": ["3", "2", "None", "3", "2", "None", "2"]} +{"0000692": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000693": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000694": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000695": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000696": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000697": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000698": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000699": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000700": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000701": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000702": ["2", "2", "None", "2", "2", "None", "2"]} +{"0000703": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000704": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000705": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000706": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000707": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000709": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000710": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000711": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000712": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000713": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000714": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000715": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000716": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000717": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000718": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000719": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000720": ["3", "3", "None", "2", "2", "None", "2"]} +{"0000721": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000722": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000723": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000724": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000725": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000726": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000727": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000728": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000729": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000730": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000731": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000732": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000733": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000734": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000735": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000736": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000737": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000738": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000739": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000740": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000741": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000742": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000744": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000745": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000746": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000747": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000748": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000749": ["3", "2", "None", "3", "3", "None", "2"]} +{"0000750": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000751": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000752": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000753": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000754": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000755": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000756": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000757": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000758": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000759": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000760": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000761": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000762": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000763": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000764": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000765": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000766": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000767": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000768": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000769": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000770": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000771": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000772": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000773": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000774": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000775": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000776": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000777": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000778": ["2", "3", "None", "2", "3", "None", "3"]} +{"0000779": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000780": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000781": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000782": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000783": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000784": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000785": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000786": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000787": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000788": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000789": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000790": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000791": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000792": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000793": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000794": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000795": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000796": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000797": ["3", "3", "None", "3", "1", "None", "2"]} +{"0000798": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000799": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000800": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000801": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000802": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000803": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000804": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000805": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000806": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000808": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000809": ["2", "2", "None", "3", "3", "None", "3"]} +{"0000810": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000811": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000812": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000813": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000814": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000815": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000816": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000817": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000818": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000819": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000820": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000821": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000822": ["2", "2", "None", "2", "2", "None", "2"]} +{"0000823": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000824": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000825": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000826": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000827": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000828": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000829": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000830": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000831": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000832": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000833": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000834": ["3", "2", "None", "3", "3", "None", "3"]} +{"0000835": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000836": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000837": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000838": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000839": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000840": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000841": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000842": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000843": ["3", "1", "None", "2", "3", "None", "2"]} +{"0000844": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000845": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000846": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000847": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000848": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000849": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000850": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000851": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000852": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000853": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000854": ["3", "2", "None", "2", "2", "None", "2"]} +{"0000855": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000856": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000857": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000858": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000859": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000860": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000861": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000862": ["2", "3", "None", "3", "2", "None", "3"]} +{"0000863": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000864": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000865": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000866": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000867": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000868": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000869": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000870": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000871": ["2", "3", "None", "3", "2", "None", "2"]} +{"0000872": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000873": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000874": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000875": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000876": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000877": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000878": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000879": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000880": ["3", "3", "None", "2", "2", "None", "2"]} +{"0000881": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000882": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000883": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000884": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000885": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000886": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000887": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000888": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000889": ["3", "3", "None", "2", "3", "None", "2"]} +{"0000890": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000891": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000892": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000893": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000894": ["3", "2", "None", "2", "3", "None", "3"]} +{"0000895": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000896": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000897": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000898": ["2", "3", "None", "2", "1", "None", "2"]} +{"0000899": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000900": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000901": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000902": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000903": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000904": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000905": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000906": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000907": ["2", "2", "None", "3", "1", "None", "2"]} +{"0000908": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000909": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000910": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000911": ["2", "2", "None", "2", "3", "None", "3"]} +{"0000912": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000913": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000914": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000915": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000916": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000917": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000918": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000919": ["2", "2", "None", "3", "2", "None", "2"]} +{"0000920": ["2", "2", "None", "2", "3", "None", "2"]} +{"0000921": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000922": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000923": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000924": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000925": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000926": ["3", "3", "None", "1", "3", "None", "2"]} +{"0000927": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000928": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000929": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000930": ["2", "3", "None", "2", "3", "None", "2"]} +{"0000931": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000932": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000933": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000934": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000935": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000936": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000937": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000938": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000939": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000940": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000941": ["2", "2", "None", "2", "1", "None", "2"]} +{"0000942": ["3", "1", "None", "1", "3", "None", "2"]} +{"0000943": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000944": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000945": ["3", "3", "None", "2", "3", "None", "3"]} +{"0000946": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000947": ["3", "3", "None", "3", "1", "None", "3"]} +{"0000948": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000949": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000950": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000951": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000952": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000953": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000954": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000955": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000956": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000957": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000958": ["2", "3", "None", "3", "1", "None", "2"]} +{"0000959": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000960": ["3", "3", "None", "3", "2", "None", "2"]} +{"0000961": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000962": ["3", "2", "None", "3", "3", "None", "3"]} +{"0000963": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000964": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000965": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000966": ["3", "3", "None", "1", "3", "None", "3"]} +{"0000967": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000968": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000969": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000970": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000971": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000972": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000973": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000974": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000975": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000976": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000977": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000978": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000979": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000980": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000981": ["2", "3", "None", "3", "3", "None", "2"]} +{"0000982": ["3", "2", "None", "2", "3", "None", "2"]} +{"0000983": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000984": ["3", "3", "None", "3", "2", "None", "3"]} +{"0000985": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000986": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000987": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000988": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000989": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000990": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000991": ["3", "3", "None", "3", "3", "None", "2"]} +{"0000992": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000993": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000994": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000995": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000996": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000997": ["2", "3", "None", "3", "1", "None", "3"]} +{"0000998": ["2", "3", "None", "3", "3", "None", "3"]} +{"0000999": ["3", "3", "None", "3", "3", "None", "3"]} +{"0000000": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000001": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000002": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000003": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000004": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000005": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000006": ["3", "3", "2", "3", "1", "1", "3"]} +{"0000007": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000008": ["3", "3", "2", "3", "2", "3", "2"]} +{"0000009": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000010": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000011": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000012": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000013": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000014": ["2", "3", "2", "3", "3", "3", "2"]} +{"0000015": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000016": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000017": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000018": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000019": ["2", "3", "2", "3", "1", "3", "3"]} +{"0000020": ["2", "3", "2", "3", "2", "3", "2"]} +{"0000021": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000022": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000023": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000024": ["3", "3", "3", "2", "3", "1", "2"]} +{"0000025": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000026": ["3", "3", "3", "3", "2", "2", "2"]} +{"0000027": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000028": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000029": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000030": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000031": ["3", "3", "1", "3", "1", "3", "3"]} +{"0000032": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000033": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000034": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000035": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000036": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000037": ["2", "3", "3", "2", "3", "3", "2"]} +{"0000038": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000039": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000040": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000041": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000042": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000043": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000044": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000045": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000046": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000047": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000048": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000049": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000050": ["3", "3", "1", "3", "1", "3", "3"]} +{"0000051": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000052": ["3", "3", "None", "3", "3", "3", "3"]} +{"0000053": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000054": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000055": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000056": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000057": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000058": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000052": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000053": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000054": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000055": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000056": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000057": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000058": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000059": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000060": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000061": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000062": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000063": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000064": ["3", "3", "3", "3", "3", "None", "3"]} +{"0000064": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000065": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000066": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000067": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000068": ["2", "2", "3", "3", "2", "2", "2"]} +{"0000069": ["3", "3", "3", "3", "2", "2", "2"]} +{"0000070": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000071": ["3", "3", "2", "3", "1", "3", "2"]} +{"0000072": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000073": ["3", "3", "1", "3", "1", "3", "3"]} +{"0000074": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000075": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000076": ["3", "3", "2", "3", "1", "3", "2"]} +{"0000077": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000078": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000079": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000080": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000081": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000082": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000083": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000084": ["2", "2", "3", "2", "3", "3", "3"]} +{"0000085": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000086": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000087": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000088": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000089": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000090": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000091": ["3", "3", "3", "2", "3", "3", "3"]} +{"0000092": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000093": ["1", "3", "3", "3", "2", "1", "2"]} +{"0000094": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000095": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000096": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000097": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000098": ["1", "3", "1", "3", "1", "3", "2"]} +{"0000099": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000100": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000101": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000102": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000103": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000104": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000105": ["3", "3", "1", "3", "2", "3", "2"]} +{"0000106": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000107": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000108": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000109": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000110": ["3", "3", "3", "3", "1", "2", "3"]} +{"0000111": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000112": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000113": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000114": ["3", "2", "3", "2", "1", "3", "2"]} +{"0000115": ["1", "3", "3", "3", "3", "1", "3"]} +{"0000116": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000117": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000118": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000119": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000120": ["3", "3", "2", "1", "3", "3", "3"]} +{"0000121": ["3", "2", "None", "2", "3", "2", "2"]} +{"0000121": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000122": ["3", "3", "1", "3", "3", "1", "3"]} +{"0000123": ["2", "2", "3", "3", "2", "2", "2"]} +{"0000124": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000125": ["3", "3", "2", "3", "1", "1", "3"]} +{"0000126": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000127": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000128": ["2", "2", "3", "3", "1", "3", "2"]} +{"0000129": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000130": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000131": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000132": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000133": ["2", "3", "3", "2", "3", "2", "3"]} +{"0000134": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000135": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000136": ["2", "3", "2", "3", "3", "3", "2"]} +{"0000137": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000138": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000139": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000140": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000141": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000142": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000143": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000144": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000145": ["2", "3", "3", "3", "2", "3", "2"]} +{"0000146": ["3", "3", "None", "3", "2", "2", "3"]} +{"0000146": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000147": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000148": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000149": ["3", "1", "3", "2", "3", "2", "3"]} +{"0000150": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000151": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000152": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000153": ["2", "3", "3", "3", "3", "None", "2"]} +{"0000154": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000155": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000156": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000157": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000158": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000159": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000160": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000161": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000162": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000163": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000164": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000165": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000166": ["2", "2", "3", "3", "3", "2", "3"]} +{"0000167": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000168": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000169": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000170": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000171": ["3", "3", "3", "3", "3", "3", "2"]} +{"0000172": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000173": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000174": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000175": ["3", "2", "3", "2", "3", "None", "2"]} +{"0000176": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000177": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000178": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000179": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000180": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000181": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000182": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000183": ["3", "3", "3", "3", "2", "None", "3"]} +{"0000184": ["3", "3", "3", "3", "1", "2", "2"]} +{"0000185": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000186": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000187": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000188": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000189": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000190": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000191": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000192": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000193": ["3", "3", "1", "3", "2", "3", "2"]} +{"0000194": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000195": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000196": ["2", "2", "3", "3", "1", "3", "2"]} +{"0000197": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000198": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000199": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000200": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000201": ["3", "2", "2", "2", "3", "3", "2"]} +{"0000202": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000203": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000204": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000205": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000206": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000207": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000208": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000209": ["2", "3", "3", "3", "1", "3", "2"]} +{"0000210": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000211": ["3", "3", "3", "2", "3", "3", "3"]} +{"0000212": ["3", "3", "3", "2", "3", "3", "2"]} +{"0000213": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000214": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000215": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000216": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000217": ["3", "3", "1", "1", "3", "3", "2"]} +{"0000218": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000219": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000220": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000221": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000222": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000223": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000224": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000225": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000226": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000227": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000228": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000229": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000230": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000231": ["3", "3", "3", "3", "3", "None", "3"]} +{"0000232": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000233": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000234": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000235": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000236": ["3", "3", "2", "2", "1", "3", "3"]} +{"0000237": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000238": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000239": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000240": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000241": ["3", "2", "3", "3", "3", "3", "3"]} +{"0000242": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000243": ["3", "2", "1", "3", "3", "3", "3"]} +{"0000244": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000245": ["3", "2", "3", "2", "2", "3", "3"]} +{"0000246": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000247": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000248": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000249": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000250": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000251": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000252": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000253": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000254": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000255": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000256": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000257": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000258": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000259": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000260": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000261": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000262": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000263": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000264": ["3", "3", "3", "2", "3", "2", "2"]} +{"0000265": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000266": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000267": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000268": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000269": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000270": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000271": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000272": ["3", "3", "1", "1", "3", "3", "2"]} +{"0000273": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000274": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000275": ["2", "3", "3", "3", "3", "None", "3"]} +{"0000276": ["2", "2", "3", "3", "1", "3", "2"]} +{"0000277": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000278": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000279": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000280": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000281": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000282": ["3", "3", "1", "3", "1", "3", "2"]} +{"0000283": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000284": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000285": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000286": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000287": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000288": ["2", "2", "3", "2", "3", "2", "2"]} +{"0000289": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000290": ["3", "3", "3", "2", "3", "3", "3"]} +{"0000291": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000292": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000293": ["3", "2", "3", "2", "2", "2", "2"]} +{"0000294": ["3", "2", "3", "2", "2", "2", "2"]} +{"0000295": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000296": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000297": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000298": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000299": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000300": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000301": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000302": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000303": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000304": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000305": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000306": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000307": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000308": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000309": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000310": ["2", "3", "3", "3", "1", "3", "2"]} +{"0000311": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000312": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000313": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000314": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000315": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000316": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000317": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000318": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000319": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000320": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000321": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000322": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000323": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000324": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000325": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000326": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000327": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000328": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000329": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000330": ["2", "2", "3", "3", "2", "2", "3"]} +{"0000331": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000332": ["3", "3", "None", "3", "3", "2", "3"]} +{"0000333": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000334": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000335": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000336": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000337": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000338": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000339": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000340": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000341": ["3", "2", "3", "2", "1", "2", "2"]} +{"0000342": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000343": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000344": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000345": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000346": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000347": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000348": ["3", "3", "3", "2", "3", "1", "3"]} +{"0000349": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000350": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000351": ["2", "3", "3", "3", "2", "3", "2"]} +{"0000352": ["3", "3", "1", "1", "2", "3", "2"]} +{"0000353": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000354": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000355": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000356": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000357": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000358": ["2", "3", "3", "2", "3", "2", "2"]} +{"0000359": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000360": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000361": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000362": ["3", "3", "2", "3", "3", "3", "2"]} +{"0000363": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000364": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000365": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000366": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000367": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000368": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000369": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000370": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000371": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000372": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000373": ["3", "2", "3", "3", "3", "2", "2"]} +{"0000374": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000375": ["2", "3", "2", "3", "1", "2", "2"]} +{"0000376": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000377": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000378": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000379": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000380": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000381": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000382": ["3", "3", "3", "2", "2", "3", "2"]} +{"0000383": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000384": ["3", "2", "3", "2", "1", "2", "2"]} +{"0000385": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000386": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000387": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000388": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000389": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000390": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000391": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000392": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000393": ["3", "3", "3", "3", "3", "None", "3"]} +{"0000394": ["2", "2", "3", "2", "2", "3", "2"]} +{"0000395": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000396": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000397": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000398": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000399": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000400": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000401": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000402": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000403": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000404": ["3", "3", "1", "3", "2", "3", "2"]} +{"0000405": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000406": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000407": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000408": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000409": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000410": ["3", "3", "None", "3", "3", "3", "3"]} +{"0000411": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000412": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000413": ["2", "3", "3", "2", "3", "2", "3"]} +{"0000414": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000415": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000416": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000417": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000418": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000419": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000420": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000421": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000422": ["3", "2", "3", "2", "2", "2", "2"]} +{"0000423": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000424": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000425": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000426": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000427": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000428": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000429": ["3", "3", "3", "2", "3", "1", "2"]} +{"0000430": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000431": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000432": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000433": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000434": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000435": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000436": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000437": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000438": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000439": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000440": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000441": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000442": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000443": ["2", "3", "3", "3", "1", "3", "2"]} +{"0000444": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000445": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000446": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000447": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000448": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000449": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000450": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000451": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000452": ["2", "3", "1", "3", "2", "3", "3"]} +{"0000453": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000454": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000455": ["2", "3", "1", "3", "1", "3", "3"]} +{"0000456": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000457": ["2", "2", "3", "2", "2", "3", "2"]} +{"0000458": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000459": ["3", "2", "3", "3", "2", "2", "2"]} +{"0000460": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000461": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000462": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000463": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000464": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000465": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000466": ["3", "3", "3", "2", "3", "2", "3"]} +{"0000467": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000468": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000469": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000470": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000471": ["3", "3", "3", "2", "3", "2", "3"]} +{"0000472": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000473": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000474": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000475": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000476": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000477": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000478": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000479": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000480": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000481": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000482": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000483": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000484": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000485": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000486": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000487": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000488": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000489": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000490": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000491": ["2", "3", "3", "3", "2", "3", "2"]} +{"0000492": ["2", "2", "None", "3", "1", "2", "2"]} +{"0000493": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000494": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000495": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000496": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000497": ["2", "2", "2", "3", "1", "3", "2"]} +{"0000498": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000499": ["2", "3", "3", "3", "3", "None", "3"]} +{"0000500": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000501": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000502": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000503": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000504": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000505": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000506": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000507": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000508": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000509": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000510": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000511": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000512": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000513": ["3", "3", "3", "2", "2", "3", "3"]} +{"0000514": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000515": ["3", "2", "2", "2", "3", "3", "3"]} +{"0000516": ["2", "3", "3", "3", "2", "2", "3"]} +{"0000517": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000518": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000519": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000520": ["2", "3", "2", "3", "3", "1", "3"]} +{"0000521": ["3", "2", "3", "3", "2", "2", "2"]} +{"0000522": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000523": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000524": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000525": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000526": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000527": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000528": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000529": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000530": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000531": ["2", "3", "3", "3", "2", "2", "3"]} +{"0000532": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000533": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000534": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000535": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000536": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000537": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000538": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000539": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000540": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000541": ["3", "3", "3", "3", "1", "1", "3"]} +{"0000542": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000543": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000544": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000545": ["2", "2", "3", "2", "1", "2", "2"]} +{"0000546": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000547": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000548": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000549": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000550": ["3", "3", "1", "3", "2", "3", "2"]} +{"0000551": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000552": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000553": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000554": ["2", "3", "3", "3", "1", "3", "2"]} +{"0000555": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000556": ["3", "3", "3", "2", "3", "3", "2"]} +{"0000557": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000558": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000559": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000560": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000561": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000562": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000563": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000564": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000565": ["2", "3", "3", "2", "1", "3", "2"]} +{"0000566": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000567": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000568": ["2", "3", "3", "3", "1", "3", "2"]} +{"0000569": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000570": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000571": ["3", "3", "1", "3", "2", "3", "2"]} +{"0000572": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000573": ["2", "3", "2", "3", "1", "3", "3"]} +{"0000574": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000575": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000576": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000577": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000578": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000579": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000580": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000581": ["2", "2", "3", "3", "1", "3", "2"]} +{"0000582": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000583": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000584": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000585": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000586": ["3", "3", "1", "1", "3", "3", "2"]} +{"0000587": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000588": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000589": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000590": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000591": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000592": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000593": ["3", "3", "1", "2", "3", "3", "2"]} +{"0000594": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000595": ["2", "2", "2", "3", "1", "3", "2"]} +{"0000596": ["3", "2", "3", "2", "1", "3", "2"]} +{"0000597": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000598": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000599": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000600": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000601": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000602": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000603": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000604": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000605": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000606": ["3", "3", "2", "3", "3", "2", "3"]} +{"0000607": ["3", "3", "2", "3", "2", "2", "3"]} +{"0000608": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000609": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000610": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000611": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000612": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000613": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000614": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000615": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000616": ["2", "2", "3", "2", "2", "1", "2"]} +{"0000617": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000618": ["3", "3", "3", "3", "1", "3", "2"]} +{"0000619": ["2", "2", "3", "2", "1", "1", "1"]} +{"0000620": ["2", "3", "2", "3", "2", "3", "2"]} +{"0000621": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000622": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000623": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000624": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000625": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000626": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000627": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000628": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000629": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000630": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000631": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000632": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000633": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000634": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000635": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000636": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000637": ["2", "3", "2", "3", "2", "3", "3"]} +{"0000638": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000639": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000640": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000641": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000642": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000643": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000644": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000645": ["3", "2", "3", "3", "3", "3", "3"]} +{"0000646": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000647": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000648": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000649": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000650": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000651": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000652": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000653": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000654": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000655": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000656": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000657": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000658": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000659": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000660": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000661": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000662": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000663": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000664": ["3", "3", "3", "2", "3", "3", "3"]} +{"0000665": ["3", "3", "3", "2", "1", "1", "2"]} +{"0000666": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000667": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000668": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000669": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000670": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000671": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000672": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000673": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000674": ["3", "3", "3", "3", "1", "2", "2"]} +{"0000675": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000676": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000677": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000678": ["2", "3", "2", "3", "2", "3", "2"]} +{"0000679": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000680": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000681": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000682": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000683": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000684": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000685": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000686": ["2", "3", "1", "3", "3", "3", "2"]} +{"0000687": ["2", "2", "3", "2", "3", "1", "2"]} +{"0000688": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000689": ["2", "2", "2", "3", "1", "3", "2"]} +{"0000690": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000691": ["3", "2", "3", "3", "2", "3", "2"]} +{"0000692": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000693": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000694": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000695": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000696": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000697": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000698": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000699": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000700": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000701": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000702": ["2", "2", "3", "2", "2", "3", "2"]} +{"0000703": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000704": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000705": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000706": ["3", "2", "3", "2", "2", "1", "2"]} +{"0000707": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000708": ["2", "3", "3", "3", "2", "3", "2"]} +{"0000709": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000710": ["2", "2", "2", "3", "1", "3", "2"]} +{"0000711": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000712": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000713": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000714": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000715": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000716": ["3", "3", "2", "3", "1", "3", "2"]} +{"0000717": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000718": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000719": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000720": ["3", "3", "3", "2", "2", "3", "2"]} +{"0000721": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000722": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000723": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000724": ["3", "2", "1", "2", "3", "3", "2"]} +{"0000725": ["2", "3", "2", "3", "1", "3", "3"]} +{"0000726": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000727": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000728": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000729": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000730": ["3", "3", "2", "3", "1", "3", "2"]} +{"0000731": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000732": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000733": ["2", "3", "1", "3", "3", "2", "2"]} +{"0000734": ["3", "3", "2", "3", "1", "1", "2"]} +{"0000735": ["2", "3", "3", "3", "1", "2", "3"]} +{"0000736": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000737": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000738": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000739": ["2", "3", "1", "3", "3", "1", "3"]} +{"0000740": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000741": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000742": ["3", "3", "1", "3", "3", "3", "2"]} +{"0000743": ["3", "3", "2", "3", "2", "3", "2"]} +{"0000744": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000745": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000746": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000747": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000748": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000749": ["3", "2", "3", "3", "3", "3", "2"]} +{"0000750": ["3", "3", "3", "3", "3", "3", "2"]} +{"0000751": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000752": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000753": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000754": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000755": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000756": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000757": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000758": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000759": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000760": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000761": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000762": ["2", "2", "3", "3", "1", "2", "2"]} +{"0000763": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000764": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000765": ["2", "3", "2", "3", "2", "3", "3"]} +{"0000766": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000767": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000768": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000769": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000770": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000771": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000772": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000773": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000774": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000775": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000776": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000777": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000778": ["2", "3", "2", "2", "3", "3", "3"]} +{"0000778": ["2", "3", "3", "2", "3", "3", "3"]} +{"0000779": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000780": ["2", "2", "3", "2", "3", "2", "2"]} +{"0000781": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000782": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000783": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000784": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000785": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000786": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000787": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000788": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000789": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000790": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000791": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000792": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000793": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000794": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000795": ["2", "3", "3", "3", "2", "3", "3"]} +{"0000796": ["2", "3", "1", "3", "2", "3", "3"]} +{"0000797": ["3", "3", "3", "3", "1", "3", "2"]} +{"0000798": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000799": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000800": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000801": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000802": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000803": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000804": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000805": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000806": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000807": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000808": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000809": ["2", "2", "3", "3", "3", "3", "3"]} +{"0000809": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000810": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000811": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000812": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000813": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000814": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000815": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000816": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000817": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000818": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000819": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000820": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000821": ["3", "3", "3", "2", "3", "3", "2"]} +{"0000822": ["2", "2", "3", "2", "2", "3", "2"]} +{"0000823": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000824": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000825": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000826": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000827": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000828": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000829": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000830": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000831": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000832": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000833": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000834": ["3", "2", "2", "3", "3", "2", "3"]} +{"0000835": ["3", "3", "3", "3", "1", "2", "3"]} +{"0000836": ["3", "2", "3", "2", "3", "1", "3"]} +{"0000837": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000838": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000839": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000840": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000841": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000842": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000843": ["3", "1", "3", "2", "3", "2", "2"]} +{"0000844": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000845": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000846": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000847": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000848": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000849": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000850": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000851": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000852": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000853": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000854": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000855": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000856": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000857": ["2", "2", "3", "2", "3", "2", "2"]} +{"0000858": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000859": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000860": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000861": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000862": ["2", "3", "3", "3", "2", "2", "3"]} +{"0000863": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000864": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000865": ["3", "2", "3", "2", "3", "3", "3"]} +{"0000866": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000867": ["2", "3", "3", "3", "3", "2", "3"]} +{"0000868": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000869": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000870": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000871": ["2", "3", "2", "3", "2", "3", "2"]} +{"0000872": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000873": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000874": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000875": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000876": ["3", "3", "1", "3", "2", "3", "3"]} +{"0000877": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000878": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000879": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000880": ["3", "3", "None", "2", "2", "None", "2"]} +{"0000880": ["3", "3", "3", "2", "2", "2", "2"]} +{"0000881": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000882": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000883": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000884": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000885": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000886": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000887": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000888": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000889": ["3", "3", "1", "2", "3", "3", "2"]} +{"0000890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000891": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000892": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000893": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000894": ["3", "2", "3", "2", "3", "2", "3"]} +{"0000895": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000896": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000897": ["2", "3", "2", "3", "1", "3", "2"]} +{"0000898": ["2", "3", "3", "2", "1", "3", "2"]} +{"0000899": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000900": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000901": ["3", "3", "1", "3", "1", "3", "3"]} +{"0000902": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000903": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000904": ["3", "3", "2", "3", "2", "2", "3"]} +{"0000905": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000906": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000907": ["2", "2", "2", "3", "1", "3", "2"]} +{"0000908": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000909": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000910": ["3", "3", "1", "2", "3", "3", "3"]} +{"0000911": ["2", "2", "3", "2", "3", "3", "3"]} +{"0000912": ["2", "2", "3", "2", "3", "2", "2"]} +{"0000913": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000914": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000915": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000916": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000917": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000918": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000919": ["2", "2", "3", "3", "2", "3", "2"]} +{"0000920": ["2", "2", "3", "2", "3", "3", "2"]} +{"0000921": ["3", "3", "3", "2", "3", "1", "3"]} +{"0000922": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000923": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000924": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000925": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000926": ["3", "3", "1", "1", "3", "3", "2"]} +{"0000927": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000928": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000929": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000930": ["2", "3", "3", "2", "3", "2", "2"]} +{"0000931": ["3", "3", "2", "3", "1", "3", "3"]} +{"0000932": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000933": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000934": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000935": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000936": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000937": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000938": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000939": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000940": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000941": ["2", "2", "3", "2", "1", "3", "2"]} +{"0000942": ["3", "1", "3", "1", "3", "1", "2"]} +{"0000943": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000944": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000945": ["3", "3", "2", "2", "3", "3", "3"]} +{"0000946": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000947": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000948": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000949": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000950": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000951": ["3", "3", "2", "3", "2", "3", "3"]} +{"0000952": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000953": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000954": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000955": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000956": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000957": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000958": ["2", "3", "1", "3", "1", "3", "2"]} +{"0000959": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000960": ["3", "3", "3", "3", "2", "3", "2"]} +{"0000961": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000962": ["3", "2", "3", "3", "3", "3", "3"]} +{"0000963": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000964": ["2", "3", "3", "3", "1", "3", "3"]} +{"0000964": ["2", "3", "3", "3", "1", "2", "3"]} +{"0000965": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000966": ["3", "3", "1", "1", "3", "3", "3"]} +{"0000967": ["3", "3", "3", "3", "3", "None", "3"]} +{"0000968": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000969": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000970": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000971": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000972": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000973": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000974": ["3", "3", "3", "3", "3", "3", "2"]} +{"0000975": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000976": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000977": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000978": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000979": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000980": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000981": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000982": ["3", "2", "3", "2", "3", "2", "2"]} +{"0000983": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000984": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000985": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000986": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000987": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000988": ["3", "3", "2", "3", "3", "3", "3"]} +{"0000989": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000990": ["2", "3", "2", "3", "3", "3", "3"]} +{"0000991": ["3", "3", "2", "3", "3", "3", "2"]} +{"0000992": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000993": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000994": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000995": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000996": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000997": ["2", "3", "3", "3", "1", "2", "3"]} +{"0000998": ["2", "3", "1", "3", "3", "3", "3"]} +{"0000999": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000153": ["2", "3", "3", "3", "3", "3", "2"]} +{"0000175": ["3", "2", "3", "2", "3", "3", "2"]} +{"0000183": ["3", "3", "3", "3", "2", "1", "3"]} +{"0000231": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000275": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000332": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000393": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000394": ["2", "2", "3", "2", "2", "3", "2"]} +{"0000410": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000492": ["2", "2", "3", "3", "1", "2", "2"]} +{"0000499": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000967": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000000": ["3", "3", "3", "3", "3", "3", "3"]} +{"0000443": ["3", "3", "3", "3", "1", "3", "2"]} +{"0000444": ["2", "2", "3", "3", "3", "1", "2"]} +{"0000445": ["None", "None", "None", "None", "None", "None", "None"]} +{"0000445": ["2", "3", "2", "3", "1", "1", "2"]} +{"0000001": ["3", "3", "1", "3", "3", "3", "3"]} +{"0000002": ["3", "3", "3", "3", "1", "3", "3"]} +{"0000004": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000007": ["3", "2", "3", "2", "2", "3", "2"]} +{"0000009": ["3", "1", "3", "3", "3", "2", "2"]} +{"0000013": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000020": ["3", "3", "2", "3", "2", "3", "2"]} +{"0000021": ["3", "3", "2", "3", "3", "1", "3"]} +{"0000021": ["3", "3", "2", "3", "3", "1", "2"]} +{"0000025": ["3", "3", "3", "3", "3", "2", "3"]} +{"0000026": ["3", "3", "3", "3", "1", "1", "1"]} +{"0000026": ["3", "3", "3", "3", "1", "2", "2"]} +{"0000027": ["2", "3", "3", "3", "3", "3", "3"]} +{"0000030": ["3", "3", "1", "3", "1", "3", "1"]} +{"0000034": ["2", "3", "2", "3", "1", "2", "2"]} +{"0000037": ["2", "3", "3", "2", "2", "3", "2"]} +{"0000038": ["3", "3", "2", "3", "3", "1", "3"]} +{"0000041": ["3", "3", "1", "3", "1", "3", "3"]} +{"0000043": ["3", "3", "3", "3", "2", "2", "3"]} +{"0000059": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000059": ["3", "3", "3", "3", "2", "3", "3"]} +{"0000065": ["3", "3", "3", "3", "3", "1", "3"]} +{"0000066": ["3", "2", "3", "3", "3", "1", "3"]} +{"0000067": ["3", "3", "1", "3", "1", "3", "2"]} +{"0000068": ["3", "2", "3", "3", "2", "2", "2"]} +{"0000069": ["3", "3", "3", "3", "2", "1", "2"]} +{"0000075": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0000094": ["3", "3", "3", "3", "3", "1", "3"]} diff --git a/webpage/res/res_current/ans_sherman.jsonl b/webpage/res/res_current/ans_sherman.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_tianle.jsonl b/webpage/res/res_current/ans_tianle.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_xuan.jsonl b/webpage/res/res_current/ans_xuan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ffe06ecf4ce84f0119a9ad7e37a1bc91dd38a0e4 --- /dev/null +++ b/webpage/res/res_current/ans_xuan.jsonl @@ -0,0 +1,1435 @@ +{"2002000": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002001": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002002": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002003": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002004": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002005": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002006": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002007": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002008": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002009": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002010": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002011": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002012": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002013": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002014": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002015": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002016": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002017": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002018": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002019": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002020": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002021": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002022": ["3", "2", "3", "3", "3", "3", "3"]} +{"2002023": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002024": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002025": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002026": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002027": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002028": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002029": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002030": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002031": ["2", "3", "1", "3", "1", "3", "2"]} +{"2002032": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002033": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002034": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002035": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002036": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002037": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002038": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002039": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002040": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002041": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002042": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002043": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002044": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002045": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002046": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002047": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002048": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002049": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002050": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002051": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002052": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002053": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002054": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002055": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002056": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002057": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002058": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002059": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002060": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002061": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002062": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002063": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002064": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002065": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002066": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002067": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002068": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002069": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002070": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002071": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002072": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002073": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002074": ["3", "1", "3", "3", "3", "3", "3"]} +{"2002075": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002076": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002077": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002078": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002079": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002080": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002081": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002082": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002083": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002084": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002085": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002086": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002087": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002088": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002089": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002090": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002091": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002092": ["3", "3", "1", "3", "1", "3", "2"]} +{"2002093": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002094": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002095": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002096": ["2", "3", "3", "3", "3", "1", "2"]} +{"2002097": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002098": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002099": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002100": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002101": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002102": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002103": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002104": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002105": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002106": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002107": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002108": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002109": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002110": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002111": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002112": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002113": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002114": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002115": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002116": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002117": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002118": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002119": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002120": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002121": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002122": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002123": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002124": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002125": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002126": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002127": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002128": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002129": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002130": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002131": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002132": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002133": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002134": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002135": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002136": ["3", "1", "3", "3", "1", "3", "2"]} +{"2002137": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002138": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002139": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002140": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002141": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002142": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002143": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002144": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002145": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002146": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002147": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002148": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002149": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002150": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002151": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002152": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002153": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002154": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002155": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002156": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002157": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002158": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002159": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002160": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002161": ["3", "3", "2", "3", "1", "3", "2"]} +{"2002162": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002163": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002164": ["3", "3", "3", "2", "3", "2", "3"]} +{"2002165": ["3", "3", "3", "2", "2", "1", "2"]} +{"2002166": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002167": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002168": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002169": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002170": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002171": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002172": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002173": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002174": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002175": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002176": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002177": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002178": ["2", "3", "3", "2", "3", "2", "2"]} +{"2002179": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002180": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002181": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002182": ["2", "3", "3", "2", "3", "3", "2"]} +{"2002183": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002184": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002185": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002186": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002187": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002188": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002189": ["3", "3", "3", "2", "1", "3", "2"]} +{"2002190": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002191": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002192": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002193": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002194": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002195": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002196": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002197": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002198": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002199": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002200": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002201": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002202": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002203": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002204": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002205": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002206": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002207": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002208": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002209": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002210": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002211": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002212": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002213": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002214": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002215": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002216": ["3", "2", "3", "2", "1", "3", "2"]} +{"2002217": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002218": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002219": ["3", "3", "3", "2", "3", "2", "3"]} +{"2002220": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002221": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002222": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002223": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002224": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002225": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002226": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002227": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002228": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002229": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002230": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002231": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002232": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002233": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002234": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002235": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002236": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002237": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002238": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002239": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002240": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002241": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002242": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002243": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002244": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002245": ["3", "3", "3", "2", "3", "2", "3"]} +{"2002246": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002247": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002248": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002249": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002250": ["3", "2", "3", "2", "1", "1", "1"]} +{"2002251": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002252": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002253": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002254": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002255": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002256": ["3", "1", "3", "2", "3", "3", "3"]} +{"2002257": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002258": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002259": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002260": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002261": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002262": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002263": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002264": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002265": ["3", "3", "3", "2", "2", "3", "2"]} +{"2002266": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002267": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002268": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002269": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002270": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002271": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002272": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002273": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002274": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002275": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002276": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002277": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002278": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002279": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002280": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002281": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002282": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002283": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002284": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002285": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002286": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002287": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002288": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002289": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002290": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002291": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002292": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002293": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002294": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002295": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002296": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002297": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002298": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002299": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002300": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002301": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002302": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002303": ["2", "3", "3", "2", "1", "3", "2"]} +{"2002304": ["3", "2", "3", "2", "1", "3", "2"]} +{"2002305": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002306": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002307": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002308": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002309": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002310": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002311": ["2", "3", "2", "3", "3", "3", "2"]} +{"2002312": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002313": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002314": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002315": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002316": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002317": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002318": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002319": ["3", "1", "3", "2", "3", "1", "2"]} +{"2002320": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002321": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002322": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002323": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002324": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002325": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002326": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002327": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002328": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002329": ["3", "3", "2", "3", "3", "3", "2"]} +{"2002330": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002331": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002332": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002333": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002334": ["3", "3", "1", "1", "3", "3", "2"]} +{"2002335": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002336": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002337": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002338": ["3", "3", "3", "3", "2", "1", "3"]} +{"2002339": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002340": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002341": ["2", "3", "3", "3", "3", "3", "2"]} +{"2002342": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002343": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002344": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002345": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002346": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002347": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002348": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002349": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002350": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002351": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002352": ["2", "3", "3", "2", "1", "3", "2"]} +{"2002353": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002354": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002355": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002356": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002357": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002358": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002359": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002360": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002361": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002362": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002363": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002364": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002365": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002366": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002367": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002368": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002369": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002370": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002371": ["2", "2", "3", "2", "1", "3", "2"]} +{"2002372": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002373": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002374": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002375": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002376": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002377": ["3", "2", "3", "2", "2", "3", "3"]} +{"2002378": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002379": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002380": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002382": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002383": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002384": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002385": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002386": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002387": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002388": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002389": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002390": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002391": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002392": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002393": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002394": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002395": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002396": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002397": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002398": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002399": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002401": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002402": ["2", "3", "3", "2", "3", "1", "2"]} +{"2002403": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002404": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002405": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002406": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002407": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002408": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002409": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002410": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002411": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002412": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002413": ["2", "3", "3", "2", "3", "3", "2"]} +{"2002414": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002415": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002416": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002417": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002418": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002419": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002420": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002421": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002422": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002423": ["2", "3", "1", "3", "1", "3", "2"]} +{"2002424": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002425": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002426": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002427": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002428": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002429": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002430": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002431": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002432": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002433": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002434": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002435": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002436": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002437": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002438": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002439": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002440": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002441": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002442": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002443": ["2", "3", "2", "2", "3", "3", "2"]} +{"2002444": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002445": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002446": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002447": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002448": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002449": ["3", "3", "3", "2", "3", "1", "1"]} +{"2002450": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002451": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002452": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002453": ["3", "2", "3", "3", "3", "3", "3"]} +{"2002454": ["3", "3", "3", "2", "3", "1", "2"]} +{"2002455": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002456": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002457": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002458": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002459": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002460": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002461": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002462": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002463": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002464": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002465": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002466": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002467": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002468": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002469": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002470": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002471": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002472": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002473": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002474": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002475": ["2", "3", "1", "3", "3", "3", "2"]} +{"2002476": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002477": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002478": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002479": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002480": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002481": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002482": ["3", "2", "3", "2", "1", "2", "2"]} +{"2002483": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002484": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002485": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002486": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002487": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002488": ["2", "2", "3", "2", "3", "1", "2"]} +{"2002489": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002490": ["3", "3", "3", "2", "2", "3", "2"]} +{"2002491": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002492": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002493": ["3", "3", "3", "3", "3", "1", "2"]} +{"2002494": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002495": ["3", "3", "2", "3", "3", "3", "2"]} +{"2002496": ["3", "3", "3", "2", "3", "1", "2"]} +{"2002497": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002499": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002500": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002501": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002502": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002503": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002504": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002505": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002506": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002507": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002508": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002509": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002510": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002511": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002512": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002513": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002514": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002515": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002516": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002517": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002518": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002519": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002520": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002521": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002522": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002523": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002524": ["3", "3", "2", "2", "3", "3", "3"]} +{"2002525": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002526": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002527": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002528": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002529": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002530": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002531": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002532": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002534": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002535": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002536": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002537": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002538": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002539": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002540": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002541": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002542": ["3", "1", "3", "2", "3", "3", "3"]} +{"2002543": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002544": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002545": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002546": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002547": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002548": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002549": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002550": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002551": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002552": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002553": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002554": ["2", "3", "3", "3", "3", "3", "2"]} +{"2002555": ["3", "2", "3", "3", "3", "3", "2"]} +{"2002556": ["2", "3", "2", "3", "3", "2", "2"]} +{"2002557": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002558": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002559": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002560": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002561": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002562": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002563": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002564": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002565": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002566": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002567": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002568": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002569": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002570": ["2", "3", "3", "2", "1", "3", "2"]} +{"2002571": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002572": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002573": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002574": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002575": ["3", "3", "3", "3", "3", "1", "2"]} +{"2002576": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002577": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002578": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002579": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002580": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002581": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002582": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002583": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002584": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002585": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002586": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002587": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002588": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002589": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002590": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002591": ["2", "3", "3", "2", "2", "3", "2"]} +{"2002592": ["3", "3", "3", "3", "3", "3", "2"]} +{"2002593": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002594": ["2", "3", "3", "3", "2", "2", "2"]} +{"2002595": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002596": ["2", "2", "3", "2", "1", "3", "2"]} +{"2002597": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002598": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002599": ["3", "2", "3", "3", "3", "3", "3"]} +{"2002600": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002601": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002602": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002603": ["3", "2", "3", "2", "1", "3", "2"]} +{"2002604": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002605": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002606": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002607": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002608": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002609": ["2", "3", "1", "3", "3", "3", "2"]} +{"2002610": ["3", "2", "3", "2", "2", "3", "3"]} +{"2002611": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002612": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002613": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002614": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002615": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002616": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002617": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002618": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002619": ["2", "1", "3", "3", "1", "3", "2"]} +{"2002620": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002621": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002622": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002623": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002624": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002625": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002626": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002627": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002628": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002629": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002630": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002631": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002632": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002633": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002634": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002635": ["2", "3", "3", "2", "3", "2", "2"]} +{"2002636": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002637": ["2", "3", "2", "3", "3", "3", "2"]} +{"2002638": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002639": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002640": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002641": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002642": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002643": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002644": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002645": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002646": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002647": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002648": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002649": ["2", "3", "3", "2", "3", "3", "2"]} +{"2002650": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002651": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002652": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002653": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002654": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002655": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002656": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002657": ["2", "3", "3", "2", "3", "2", "2"]} +{"2002658": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002659": ["3", "3", "3", "3", "1", "1", "1"]} +{"2002660": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002661": ["3", "3", "3", "2", "3", "2", "3"]} +{"2002662": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002663": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002664": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002665": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002666": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002667": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002668": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002669": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002670": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002671": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002672": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002673": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002674": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002675": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002676": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002677": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002678": ["2", "3", "2", "3", "3", "3", "2"]} +{"2002679": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002680": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002681": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002682": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002683": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002684": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002685": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002686": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002687": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002688": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002689": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002690": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002691": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002692": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002693": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002694": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002695": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002696": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002697": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002698": ["2", "3", "1", "3", "3", "3", "2"]} +{"2002699": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002700": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002701": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002702": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002703": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002704": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002705": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002706": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002707": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002708": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002709": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002710": ["2", "3", "3", "3", "3", "2", "2"]} +{"2002711": ["3", "3", "1", "3", "1", "3", "2"]} +{"2002712": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002713": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002714": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002715": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002716": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002717": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002718": ["2", "3", "3", "2", "3", "3", "2"]} +{"2002719": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002720": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002721": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002722": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002723": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002724": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002725": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002726": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002727": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002728": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002729": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002730": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002731": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002732": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002733": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002734": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002735": ["2", "3", "1", "3", "1", "3", "2"]} +{"2002736": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002737": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002738": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002739": ["2", "2", "3", "2", "1", "3", "2"]} +{"2002740": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002741": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002742": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002743": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002744": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002745": ["2", "3", "3", "2", "2", "3", "2"]} +{"2002746": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002747": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002748": ["2", "2", "3", "2", "3", "2", "2"]} +{"2002749": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002750": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002751": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002752": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002753": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002754": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002755": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002756": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002757": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002758": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002759": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002760": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002761": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002762": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002763": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002764": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002765": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002766": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002767": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002768": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002769": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002770": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002771": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002772": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002773": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002774": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002775": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002776": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002777": ["2", "3", "3", "3", "1", "3", "2"]} +{"2002778": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002779": ["2", "2", "3", "3", "1", "3", "2"]} +{"2002780": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002781": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002782": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002783": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002784": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002785": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002786": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002787": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002788": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002789": ["3", "3", "3", "2", "3", "1", "2"]} +{"2002790": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002791": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002792": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002793": ["2", "3", "3", "3", "1", "1", "1"]} +{"2002794": ["2", "2", "3", "2", "3", "3", "3"]} +{"2002795": ["2", "3", "3", "2", "3", "3", "2"]} +{"2002796": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002797": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002798": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002799": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002800": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002801": ["3", "3", "1", "3", "2", "3", "3"]} +{"2002802": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002803": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002804": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002805": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002806": ["3", "2", "3", "2", "1", "3", "2"]} +{"2002807": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002808": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002809": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002810": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002811": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002812": ["2", "3", "1", "3", "2", "3", "2"]} +{"2002813": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002814": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002815": ["2", "3", "3", "3", "1", "3", "2"]} +{"2002816": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002817": ["3", "3", "3", "2", "1", "1", "1"]} +{"2002818": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002819": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002820": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002821": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002822": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002823": ["2", "2", "3", "3", "3", "3", "3"]} +{"2002824": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002825": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002826": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002827": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002828": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002829": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002830": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002831": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002832": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002833": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002834": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002835": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002836": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002837": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002838": ["2", "3", "3", "2", "3", "2", "2"]} +{"2002839": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002840": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002841": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002842": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002843": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002844": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002845": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002846": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002847": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002848": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002849": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002850": ["2", "3", "3", "2", "1", "3", "2"]} +{"2002851": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002852": ["3", "2", "3", "3", "2", "2", "2"]} +{"2002853": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002854": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002855": ["2", "3", "2", "3", "3", "3", "2"]} +{"2002856": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002857": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002859": ["2", "3", "3", "3", "2", "2", "2"]} +{"2002860": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002861": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002862": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002863": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002864": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002865": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002866": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002868": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002869": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002870": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002871": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002872": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002873": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002874": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002875": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002876": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002877": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002878": ["3", "3", "2", "3", "1", "3", "2"]} +{"2002879": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002880": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002881": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002882": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002883": ["2", "3", "3", "3", "1", "1", "2"]} +{"2002884": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002885": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002886": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002887": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002888": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002889": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002890": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002891": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002892": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002893": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002894": ["3", "2", "3", "2", "2", "3", "2"]} +{"2002895": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002896": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002897": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002898": ["3", "3", "3", "2", "1", "1", "1"]} +{"2002899": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002900": ["3", "2", "3", "2", "2", "2", "1"]} +{"2002901": ["3", "2", "3", "2", "3", "1", "3"]} +{"2002902": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002903": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002904": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002905": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002906": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002907": ["3", "1", "3", "3", "2", "3", "2"]} +{"2002908": ["3", "2", "3", "1", "2", "3", "2"]} +{"2002909": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002910": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002911": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002912": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002913": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002914": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002915": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002916": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002917": ["2", "1", "3", "2", "3", "3", "2"]} +{"2002918": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002919": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002920": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002921": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002922": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002923": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002924": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002925": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002926": ["2", "2", "3", "2", "2", "3", "2"]} +{"2002927": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002928": ["3", "3", "2", "3", "3", "3", "2"]} +{"2002929": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002930": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002931": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002932": ["3", "2", "3", "3", "3", "3", "3"]} +{"2002933": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002934": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002935": ["3", "3", "1", "3", "1", "3", "2"]} +{"2002936": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002937": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002938": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002939": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002940": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002941": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002942": ["2", "3", "1", "3", "2", "3", "2"]} +{"2002943": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002944": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002945": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002946": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002947": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002948": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002949": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002950": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002951": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002952": ["2", "3", "3", "3", "3", "3", "2"]} +{"2002953": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002954": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002955": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002956": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002957": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002958": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002959": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002960": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002961": ["2", "2", "3", "2", "1", "3", "2"]} +{"2002962": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002963": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002964": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002965": ["2", "3", "3", "3", "1", "1", "2"]} +{"2002966": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002967": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002968": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002969": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002970": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002971": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002972": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002973": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002974": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002975": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002976": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002977": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002978": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002979": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002980": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002981": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002982": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002984": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002985": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002986": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002987": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002988": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002989": ["3", "3", "3", "2", "3", "1", "2"]} +{"2002990": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002991": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002992": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002993": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002994": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002995": ["2", "2", "3", "2", "3", "3", "2"]} +{"2002996": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002997": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002999": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002000": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002001": ["2", "3", "2", "3", "2", "1", "3"]} +{"2002002": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002003": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002004": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002005": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002006": ["3", "3", "3", "3", "1", "1", "2"]} +{"2002007": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002008": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002009": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002010": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002011": ["2", "2", "3", "3", "3", "1", "3"]} +{"2002012": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002013": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002014": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002015": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002016": ["2", "2", "3", "3", "2", "3", "3"]} +{"2002017": ["3", "3", "1", "3", "3", "2", "3"]} +{"2002018": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002019": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002020": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002021": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002022": ["3", "1", "3", "3", "3", "1", "2"]} +{"2002023": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002024": ["3", "3", "1", "2", "3", "3", "3"]} +{"2002025": ["3", "3", "2", "3", "1", "3", "3"]} +{"2002026": ["2", "3", "2", "3", "2", "3", "2"]} +{"2002026": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002027": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002028": ["2", "3", "3", "3", "1", "3", "2"]} +{"2002029": ["3", "2", "3", "3", "2", "3", "2"]} +{"2002030": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002031": ["2", "3", "1", "3", "1", "3", "2"]} +{"2002031": ["3", "3", "1", "3", "1", "3", "2"]} +{"2002032": ["2", "3", "3", "2", "3", "2", "3"]} +{"2002033": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002034": ["2", "2", "3", "3", "1", "1", "1"]} +{"2002035": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002036": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002037": ["2", "2", "3", "3", "3", "2", "3"]} +{"2002038": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002039": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002040": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002041": ["2", "2", "3", "3", "3", "1", "2"]} +{"2002042": ["2", "2", "3", "3", "1", "1", "2"]} +{"2002043": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002044": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002045": ["2", "2", "3", "3", "1", "1", "1"]} +{"2002046": ["2", "3", "2", "3", "3", "1", "2"]} +{"2002047": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002048": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002049": ["2", "3", "1", "3", "1", "3", "1"]} +{"2002050": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002051": ["3", "3", "3", "3", "2", "1", "3"]} +{"2002052": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002053": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002054": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002055": ["2", "3", "3", "3", "2", "1", "3"]} +{"2002055": ["2", "3", "3", "3", "2", "1", "2"]} +{"2002056": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002057": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002058": ["3", "3", "3", "3", "2", "2", "3"]} +{"2002059": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002060": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002061": ["3", "3", "3", "3", "3", "1", "3"]} +{"2002062": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002063": ["3", "3", "2", "3", "1", "3", "3"]} +{"2002064": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002065": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002066": ["2", "3", "1", "3", "1", "2", "2"]} +{"2002067": ["2", "2", "3", "3", "3", "3", "2"]} +{"2002068": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002069": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002070": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002071": ["3", "3", "1", "3", "3", "1", "2"]} +{"2002072": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002073": ["3", "3", "2", "3", "1", "3", "3"]} +{"2002074": ["3", "1", "3", "3", "2", "1", "1"]} +{"2002075": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002076": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002077": ["3", "3", "1", "3", "2", "3", "2"]} +{"2002078": ["3", "2", "2", "3", "3", "2", "2"]} +{"2002079": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002080": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002081": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002082": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002083": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002084": ["2", "3", "3", "3", "1", "3", "3"]} +{"2002085": ["3", "3", "1", "3", "3", "1", "2"]} +{"2002086": ["3", "2", "3", "2", "1", "2", "2"]} +{"2002087": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002088": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002089": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002090": ["3", "3", "2", "3", "1", "2", "2"]} +{"2002091": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002092": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002093": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002094": ["2", "2", "3", "2", "3", "1", "2"]} +{"2002095": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002096": ["2", "3", "3", "3", "2", "1", "1"]} +{"2002097": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002098": ["3", "3", "2", "3", "1", "1", "3"]} +{"2002099": ["3", "2", "3", "3", "3", "2", "2"]} +{"2002100": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002101": ["3", "2", "3", "2", "3", "3", "2"]} +{"2002102": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002103": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002104": ["2", "3", "3", "2", "3", "2", "3"]} +{"2002105": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002106": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002107": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002108": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002109": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002110": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002111": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002112": ["2", "3", "3", "3", "2", "1", "2"]} +{"2002113": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002114": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002115": ["3", "2", "3", "3", "2", "1", "3"]} +{"2002116": ["3", "2", "3", "3", "3", "2", "3"]} +{"2002117": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002118": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002119": ["3", "3", "2", "3", "2", "2", "2"]} +{"2002120": ["3", "2", "3", "3", "2", "2", "2"]} +{"2002121": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002122": ["3", "3", "2", "3", "3", "1", "3"]} +{"2002123": ["3", "2", "3", "3", "3", "2", "3"]} +{"2002124": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002125": ["2", "3", "3", "3", "3", "1", "3"]} +{"2002126": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002127": ["3", "2", "3", "2", "3", "1", "3"]} +{"2002127": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002128": ["3", "3", "3", "2", "2", "1", "2"]} +{"2002129": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002130": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002131": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002132": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002133": ["2", "3", "2", "3", "2", "2", "2"]} +{"2002134": ["2", "3", "3", "3", "2", "3", "2"]} +{"2002135": ["3", "3", "2", "3", "3", "1", "2"]} +{"2002136": ["3", "1", "3", "3", "1", "3", "2"]} +{"2002135": ["3", "3", "2", "3", "3", "2", "3"]} +{"2002137": ["2", "3", "3", "2", "3", "3", "3"]} +{"2002138": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002139": ["3", "3", "3", "3", "3", "1", "2"]} +{"2002140": ["2", "1", "3", "3", "3", "1", "1"]} +{"2002141": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002142": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002143": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002144": ["3", "1", "3", "2", "3", "1", "1"]} +{"2002145": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002146": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002147": ["3", "3", "3", "3", "1", "1", "2"]} +{"2002148": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002149": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002150": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002151": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002152": ["3", "3", "3", "3", "3", "1", "2"]} +{"2002153": ["2", "3", "3", "3", "3", "1", "2"]} +{"2002154": ["2", "2", "3", "3", "1", "1", "1"]} +{"2002155": ["3", "3", "3", "3", "2", "2", "3"]} +{"2002156": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002157": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002158": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002159": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002160": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002161": ["3", "3", "1", "3", "1", "3", "2"]} +{"2002162": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002163": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002164": ["3", "3", "3", "2", "2", "3", "3"]} +{"2002165": ["3", "3", "3", "2", "1", "1", "1"]} +{"2002166": ["3", "3", "2", "3", "3", "2", "2"]} +{"2002167": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002168": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002169": ["3", "2", "2", "2", "1", "1", "1"]} +{"2002170": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002171": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002172": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002173": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002173": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002174": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002175": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002176": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002177": ["2", "3", "3", "3", "3", "2", "3"]} +{"2002178": ["2", "3", "3", "2", "3", "1", "1"]} +{"2002179": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002180": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002181": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002182": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002183": ["3", "2", "3", "2", "3", "2", "3"]} +{"2002184": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002184": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002185": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002186": ["3", "2", "3", "3", "3", "2", "2"]} +{"2002187": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002188": ["3", "3", "3", "3", "2", "2", "3"]} +{"2002189": ["3", "3", "1", "2", "1", "3", "2"]} +{"2002190": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002191": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002192": ["3", "3", "3", "3", "1", "2", "3"]} +{"2002192": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002193": ["3", "2", "3", "3", "3", "1", "2"]} +{"2002194": ["2", "3", "3", "3", "2", "2", "2"]} +{"2002195": ["3", "3", "2", "3", "2", "2", "2"]} +{"2002196": ["3", "3", "2", "3", "1", "2", "2"]} +{"2002197": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002198": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002199": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002200": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002201": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002202": ["3", "3", "3", "3", "2", "1", "3"]} +{"2002203": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002204": ["3", "3", "1", "2", "3", "3", "3"]} +{"2002205": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002206": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002207": ["2", "3", "3", "3", "3", "2", "2"]} +{"2002208": ["2", "3", "2", "3", "1", "2", "2"]} +{"2002209": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002210": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002211": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002212": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002213": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002214": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002214": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002215": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002216": ["3", "2", "3", "2", "1", "1", "1"]} +{"2002217": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002218": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002219": ["3", "3", "3", "2", "2", "1", "2"]} +{"2002220": ["3", "3", "1", "2", "3", "3", "2"]} +{"2002221": ["2", "3", "3", "3", "3", "1", "2"]} +{"2002222": ["3", "3", "3", "3", "1", "2", "2"]} +{"2002223": ["3", "2", "3", "3", "3", "2", "3"]} +{"2002224": ["2", "3", "3", "3", "1", "2", "2"]} +{"2002225": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002226": ["2", "3", "3", "3", "3", "1", "2"]} +{"2002227": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002228": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002229": ["2", "3", "3", "3", "2", "3", "3"]} +{"2002230": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002231": ["3", "3", "3", "3", "1", "3", "2"]} +{"2002232": ["2", "2", "3", "2", "1", "1", "1"]} +{"2002233": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002234": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002235": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002236": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002237": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002238": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002239": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002240": ["2", "3", "3", "3", "3", "2", "2"]} +{"2002241": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002242": ["3", "3", "2", "3", "2", "3", "2"]} +{"2002243": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002244": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002245": ["3", "3", "2", "2", "2", "1", "1"]} +{"2002246": ["3", "3", "3", "3", "2", "1", "2"]} +{"2002247": ["2", "3", "3", "3", "1", "2", "2"]} +{"2002248": ["3", "2", "3", "3", "1", "1", "2"]} +{"2002249": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002250": ["3", "2", "3", "2", "1", "1", "1"]} +{"2002251": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002252": ["3", "2", "3", "2", "3", "3", "3"]} +{"2002253": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002254": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002255": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002256": ["3", "1", "3", "2", "2", "1", "1"]} +{"2002257": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002258": ["3", "2", "3", "2", "2", "2", "2"]} +{"2002259": ["2", "2", "3", "3", "1", "2", "2"]} +{"2002260": ["2", "2", "3", "3", "2", "3", "2"]} +{"2002261": ["3", "3", "3", "2", "3", "1", "2"]} +{"2002262": ["3", "3", "1", "2", "3", "3", "2"]} +{"2002263": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002264": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002265": ["3", "3", "3", "2", "2", "3", "3"]} +{"2002266": ["3", "3", "3", "3", "2", "3", "2"]} +{"2002267": ["3", "2", "3", "3", "3", "1", "3"]} +{"2002268": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002269": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002270": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002271": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002272": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002273": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002274": ["2", "3", "1", "3", "1", "3", "2"]} +{"2002275": ["2", "3", "3", "3", "3", "2", "2"]} +{"2002276": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002277": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002278": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002279": ["3", "2", "3", "2", "3", "1", "1"]} +{"2002280": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002281": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002282": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002283": ["3", "3", "None", "3", "3", "2", "3"]} +{"2002284": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002285": ["3", "3", "1", "3", "3", "None", "2"]} +{"2002286": ["3", "3", "3", "2", "3", "None", "2"]} +{"2002287": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002288": ["2", "3", "1", "3", "3", "None", "3"]} +{"2002289": ["3", "3", "3", "3", "1", "None", "3"]} +{"2002290": ["3", "2", "3", "2", "3", "None", "3"]} +{"2002291": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002292": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002293": ["3", "2", "3", "2", "2", "None", "2"]} +{"2002294": ["3", "2", "3", "2", "3", "None", "2"]} +{"2002295": ["2", "3", "2", "3", "1", "None", "2"]} +{"2002296": ["2", "3", "2", "3", "1", "None", "3"]} +{"2002297": ["3", "3", "3", "3", "2", "None", "3"]} +{"2002298": ["3", "2", "3", "2", "3", "None", "3"]} +{"2002299": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002300": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002301": ["3", "3", "3", "3", "2", "None", "3"]} +{"2002302": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002303": ["2", "3", "3", "2", "1", "None", "2"]} +{"2002304": ["3", "2", "3", "2", "1", "None", "2"]} +{"2002305": ["3", "3", "1", "3", "3", "None", "3"]} +{"2002306": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002307": ["3", "3", "2", "3", "2", "None", "3"]} +{"2002308": ["2", "2", "3", "3", "3", "1", "2"]} +{"2002309": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002310": ["2", "2", "3", "2", "3", "None", "2"]} +{"2002311": ["2", "3", "1", "3", "3", "None", "2"]} +{"2002312": ["3", "3", "3", "2", "3", "None", "2"]} +{"2002313": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002314": ["3", "3", "2", "3", "2", "None", "3"]} +{"2002315": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002316": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002317": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002318": ["3", "3", "3", "2", "3", "None", "3"]} +{"2002319": ["3", "1", "3", "2", "3", "None", "2"]} +{"2002320": ["3", "3", "3", "3", "1", "None", "3"]} +{"2002321": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002322": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002323": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002324": ["2", "3", "3", "3", "2", "None", "2"]} +{"2002325": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002326": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002327": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002328": ["3", "3", "1", "2", "3", "None", "3"]} +{"2002329": ["3", "3", "1", "3", "3", "None", "2"]} +{"2002330": ["3", "3", "3", "2", "3", "None", "2"]} +{"2002331": ["2", "3", "2", "3", "3", "None", "3"]} +{"2002332": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002333": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002334": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002335": ["3", "3", "3", "3", "2", "None", "3"]} +{"2002336": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002337": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002338": ["3", "3", "3", "3", "2", "None", "3"]} +{"2002339": ["2", "3", "3", "3", "3", "None", "3"]} +{"2002340": ["2", "3", "1", "3", "3", "None", "3"]} +{"2002341": ["2", "3", "3", "3", "3", "None", "2"]} +{"2002342": ["3", "3", "3", "2", "3", "None", "2"]} +{"2002343": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002344": ["3", "3", "3", "2", "3", "None", "2"]} +{"2002345": ["3", "2", "3", "2", "1", "None", "2"]} +{"2002346": ["3", "2", "3", "2", "3", "None", "2"]} +{"2002347": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002347": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002348": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002349": ["3", "2", "3", "2", "3", "None", "2"]} +{"2002350": ["3", "2", "3", "2", "3", "None", "2"]} +{"2002351": ["2", "3", "3", "3", "2", "None", "3"]} +{"2002352": ["2", "3", "3", "2", "1", "None", "2"]} +{"2002353": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002354": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002355": ["3", "2", "3", "2", "3", "None", "3"]} +{"2002356": ["3", "2", "3", "2", "2", "None", "2"]} +{"2002357": ["3", "3", "2", "3", "1", "None", "3"]} +{"2002358": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002359": ["3", "2", "3", "2", "3", "None", "2"]} +{"2002360": ["3", "3", "1", "3", "2", "None", "2"]} +{"2002361": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002362": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002363": ["2", "2", "3", "2", "2", "None", "2"]} +{"2002364": ["2", "3", "1", "3", "1", "None", "2"]} +{"2002365": ["3", "2", "2", "2", "3", "None", "3"]} +{"2002366": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002367": ["3", "3", "1", "3", "3", "None", "3"]} +{"2002368": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002369": ["3", "3", "3", "2", "3", "None", "3"]} +{"2002370": ["2", "2", "3", "3", "3", "None", "3"]} +{"2002371": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002372": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002373": ["3", "3", "2", "3", "3", "None", "3"]} +{"2002374": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002375": ["3", "3", "3", "3", "3", "None", "3"]} +{"2002283": ["3", "3", "3", "3", "3", "1", "2"]} +{"2002284": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002285": ["3", "3", "1", "3", "3", "3", "3"]} +{"2002286": ["3", "3", "3", "2", "3", "2", "2"]} +{"2002287": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002288": ["2", "3", "1", "3", "3", "3", "3"]} +{"2002289": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002290": ["3", "2", "3", "2", "3", "1", "2"]} +{"2002291": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002292": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002293": ["3", "2", "3", "2", "2", "2", "2"]} +{"2002294": ["3", "2", "3", "2", "3", "2", "2"]} +{"2002295": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002296": ["2", "3", "2", "3", "1", "3", "3"]} +{"2002296": ["2", "3", "2", "3", "1", "3", "2"]} +{"2002297": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002298": ["3", "2", "3", "2", "3", "2", "3"]} +{"2002299": ["3", "3", "3", "3", "3", "2", "2"]} +{"2002300": ["3", "3", "3", "3", "3", "2", "3"]} +{"2002301": ["3", "3", "3", "3", "2", "2", "2"]} +{"2002302": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002303": ["2", "3", "3", "2", "1", "3", "2"]} +{"2002304": ["3", "2", "3", "2", "1", "1", "2"]} +{"2002305": ["3", "3", "1", "3", "3", "2", "3"]} +{"2002306": ["3", "3", "2", "3", "3", "2", "3"]} +{"2002307": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002308": ["2", "2", "3", "3", "2", "1", "2"]} +{"2002309": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002310": ["2", "2", "3", "2", "3", "1", "1"]} +{"2002311": ["2", "3", "1", "3", "3", "2", "2"]} +{"2002312": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002313": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002314": ["3", "3", "2", "3", "2", "3", "3"]} +{"2002315": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002316": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002317": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002318": ["3", "3", "3", "2", "3", "3", "3"]} +{"2002319": ["3", "1", "3", "2", "3", "2", "2"]} +{"2002320": ["3", "3", "3", "3", "1", "3", "3"]} +{"2002321": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002322": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002323": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002324": ["2", "3", "3", "3", "2", "1", "2"]} +{"2002325": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002326": ["3", "3", "3", "3", "3", "3", "3"]} +{"2002327": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002328": ["3", "3", "1", "2", "3", "3", "3"]} +{"2002329": ["3", "3", "1", "3", "3", "3", "2"]} +{"2002330": ["3", "3", "3", "2", "3", "3", "2"]} +{"2002331": ["2", "3", "2", "3", "3", "3", "3"]} +{"2002332": ["2", "3", "3", "3", "3", "3", "3"]} +{"2002333": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002334": ["None", "None", "None", "None", "None", "None", "None"]} +{"2002335": ["3", "3", "3", "3", "2", "3", "3"]} +{"2002336": ["3", "3", "2", "3", "3", "3", "3"]} +{"2002334": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2002337": ["3", "3", "2", "3", "3", "3", "3"]} diff --git a/webpage/res/res_current/ans_yash.jsonl b/webpage/res/res_current/ans_yash.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..758a792fd6c1ea710489d044d3a5991b3dd393f9 --- /dev/null +++ b/webpage/res/res_current/ans_yash.jsonl @@ -0,0 +1,2018 @@ +{"2001000": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001001": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001002": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001003": ["3", "2", "None", "3", "2", "None", "2"]} +{"2001004": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001005": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001006": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001007": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001008": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001009": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001010": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001011": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001012": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001013": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001014": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001015": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001016": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001017": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001018": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001019": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001020": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001021": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001022": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001023": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001024": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001025": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001026": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001027": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001028": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001029": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001030": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001031": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001032": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001033": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001034": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001035": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001036": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001037": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001038": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001039": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001040": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001042": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001043": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001044": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001045": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001046": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001047": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001048": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001050": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001051": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001052": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001053": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001054": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001055": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001056": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001057": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001058": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001060": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001061": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001062": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001063": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001064": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001065": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001066": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001067": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001068": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001069": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001070": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001071": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001072": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001073": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001074": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001075": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001077": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001078": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001079": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001080": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001081": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001082": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001083": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001084": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001085": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001086": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001087": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001088": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001089": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001090": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001091": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001092": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001093": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001094": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001095": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001096": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001097": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001098": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001099": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001100": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001101": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001102": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001103": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001104": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001105": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001106": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001107": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001108": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001109": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001110": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001111": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001112": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001113": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001114": ["3", "2", "None", "3", "3", "None", "2"]} +{"2001115": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001116": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001117": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001118": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001119": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001120": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001121": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001122": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001123": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001124": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001125": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001126": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001127": ["3", "2", "None", "3", "3", "None", "3"]} +{"2001128": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001129": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001130": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001131": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001132": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001133": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001134": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001135": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001136": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001137": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001138": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001139": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001140": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001141": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001142": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001143": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001144": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001145": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001146": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001147": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001148": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001149": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001150": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001151": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001152": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001153": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001154": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001155": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001156": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001157": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001158": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001159": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001160": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001161": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001162": ["3", "3", "None", "1", "3", "None", "2"]} +{"2001163": ["2", "3", "None", "2", "2", "None", "2"]} +{"2001164": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001165": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001166": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001167": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001168": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001169": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001170": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001171": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001172": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001173": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001174": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001175": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001176": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001177": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001178": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001179": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001180": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001181": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001182": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001183": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001184": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001185": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001186": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001187": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001188": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001189": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001190": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001191": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001192": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001193": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001194": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001195": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001196": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001197": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001198": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001199": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001200": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001201": ["2", "1", "None", "3", "2", "None", "2"]} +{"2001202": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001203": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001204": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001205": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001206": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001207": ["3", "3", "None", "2", "2", "None", "3"]} +{"2001208": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001209": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001210": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001211": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001212": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001213": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001214": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001215": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001216": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001217": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001218": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001219": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001220": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001222": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001223": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001224": ["3", "1", "None", "2", "1", "None", "2"]} +{"2001225": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001226": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001227": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001229": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001230": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001231": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001232": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001233": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001234": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001235": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001236": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001237": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001238": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001239": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001240": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001241": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001242": ["3", "2", "None", "3", "3", "None", "2"]} +{"2001243": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001244": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001245": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001246": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001247": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001248": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001249": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001250": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001251": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001252": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001253": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001254": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001255": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001256": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001257": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001258": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001259": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001260": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001261": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001262": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001263": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001264": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001265": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001266": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001267": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001268": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001269": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001270": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001271": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001272": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001273": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001274": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001275": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001276": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001277": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001278": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001279": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001280": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001281": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001282": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001283": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001284": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001285": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001286": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001287": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001288": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001289": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001290": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001291": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001292": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001293": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001294": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001295": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001296": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001297": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001298": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001299": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001300": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001301": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001302": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001303": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001304": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001305": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001306": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001307": ["3", "2", "None", "3", "2", "None", "2"]} +{"2001308": ["3", "2", "None", "3", "2", "None", "2"]} +{"2001309": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001310": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001311": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001312": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001313": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001314": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001315": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001316": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001318": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001319": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001320": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001321": ["2", "2", "None", "2", "3", "None", "3"]} +{"2001322": ["3", "2", "None", "2", "2", "None", "3"]} +{"2001323": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001324": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001325": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001326": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001327": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001328": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001329": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001330": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001331": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001332": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001333": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001334": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001335": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001336": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001337": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001338": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001339": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001340": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001341": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001342": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001343": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001344": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001345": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001346": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001347": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001348": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001349": ["2", "3", "None", "2", "1", "None", "2"]} +{"2001350": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001351": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001352": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001353": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001354": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001355": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001356": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001357": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001358": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001359": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001360": ["2", "2", "None", "3", "3", "None", "3"]} +{"2001361": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001362": ["3", "3", "None", "3", "1", "None", "1"]} +{"2001363": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001364": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001365": ["3", "3", "None", "1", "3", "None", "3"]} +{"2001366": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001367": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001368": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001369": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001370": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001371": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001372": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001373": ["3", "2", "None", "3", "2", "None", "2"]} +{"2001374": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001375": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001376": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001377": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001378": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001379": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001380": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001381": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001382": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001383": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001384": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001385": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001386": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001387": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001388": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001389": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001390": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001391": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001392": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001393": ["3", "2", "None", "3", "3", "None", "2"]} +{"2001394": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001395": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001396": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001397": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001398": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001399": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001400": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001401": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001402": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001403": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001404": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001405": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001406": ["2", "3", "None", "2", "1", "None", "2"]} +{"2001407": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001408": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001409": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001410": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001411": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001412": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001413": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001414": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001416": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001417": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001418": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001419": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001420": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001421": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001422": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001423": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001424": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001425": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001426": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001427": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001428": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001429": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001430": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001431": ["3", "3", "None", "3", "2", "None", "1"]} +{"2001432": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001433": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001434": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001435": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001436": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001437": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001438": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001439": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001440": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001441": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001442": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001443": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001444": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001445": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001446": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001447": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001448": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001449": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001450": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001451": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001452": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001453": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001454": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001455": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001456": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001457": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001458": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001459": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001460": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001461": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001462": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001463": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001464": ["3", "3", "None", "1", "3", "None", "3"]} +{"2001465": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001466": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001467": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001468": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001469": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001470": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001471": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001472": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001473": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001474": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001475": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001476": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001477": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001478": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001479": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001480": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001481": ["3", "3", "None", "3", "1", "None", "1"]} +{"2001483": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001484": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001485": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001486": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001487": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001488": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001489": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001490": ["2", "2", "None", "3", "2", "None", "1"]} +{"2001491": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001492": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001493": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001494": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001495": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001496": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001497": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001498": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001499": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001500": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001501": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001502": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001503": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001504": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001505": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001506": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001507": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001508": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001509": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001510": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001511": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001512": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001513": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001514": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001515": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001516": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001517": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001518": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001519": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001520": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001521": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001522": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001523": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001524": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001525": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001526": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001527": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001528": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001529": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001530": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001531": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001532": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001533": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001534": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001535": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001536": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001537": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001538": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001539": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001540": ["3", "2", "None", "3", "3", "None", "2"]} +{"2001541": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001542": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001543": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001544": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001545": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001546": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001547": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001548": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001549": ["2", "2", "None", "3", "3", "None", "2"]} +{"2001550": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001551": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001552": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001553": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001554": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001555": ["2", "3", "None", "2", "1", "None", "2"]} +{"2001556": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001557": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001558": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001559": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001560": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001561": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001562": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001563": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001564": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001565": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001566": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001567": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001568": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001569": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001570": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001571": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001572": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001573": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001574": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001575": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001576": ["3", "3", "None", "2", "1", "None", "3"]} +{"2001577": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001578": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001579": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001580": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001581": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001582": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001583": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001584": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001585": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001586": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001587": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001588": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001589": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001590": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001591": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001592": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001593": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001594": ["2", "2", "None", "3", "3", "None", "3"]} +{"2001595": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001596": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001597": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001598": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001599": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001600": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001601": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001602": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001603": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001604": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001605": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001606": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001607": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001608": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001609": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001610": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001611": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001612": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001613": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001614": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001615": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001616": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001617": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001618": ["2", "3", "None", "2", "2", "None", "2"]} +{"2001619": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001620": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001621": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001622": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001623": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001624": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001625": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001626": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001627": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001628": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001629": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001630": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001631": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001632": ["3", "1", "None", "3", "1", "None", "2"]} +{"2001633": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001634": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001635": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001636": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001637": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001638": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001639": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001640": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001641": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001642": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001643": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001644": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001645": ["3", "3", "None", "1", "3", "None", "3"]} +{"2001646": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001647": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001648": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001649": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001650": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001651": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001652": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001653": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001654": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001655": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001656": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001657": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001658": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001659": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001660": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001661": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001662": ["2", "2", "None", "2", "2", "None", "1"]} +{"2001663": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001664": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001665": ["3", "2", "None", "3", "3", "None", "3"]} +{"2001666": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001667": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001668": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001669": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001670": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001672": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001673": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001674": ["2", "3", "None", "2", "2", "None", "2"]} +{"2001675": ["2", "2", "None", "2", "1", "None", "2"]} +{"2001676": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001677": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001678": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001679": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001680": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001681": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001682": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001683": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001684": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001685": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001686": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001687": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001688": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001689": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001690": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001691": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001692": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001693": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001694": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001695": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001696": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001697": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001698": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001699": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001700": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001701": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001702": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001703": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001704": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001705": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001706": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001707": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001708": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001709": ["2", "1", "None", "2", "3", "None", "2"]} +{"2001710": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001711": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001712": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001713": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001714": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001715": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001716": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001717": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001718": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001719": ["3", "3", "None", "2", "1", "None", "2"]} +{"2001720": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001721": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001722": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001723": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001724": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001725": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001726": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001727": ["2", "3", "None", "2", "2", "None", "2"]} +{"2001728": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001729": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001730": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001731": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001732": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001733": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001734": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001735": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001736": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001737": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001738": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001739": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001740": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001741": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001742": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001743": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001744": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001745": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001746": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001747": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001748": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001749": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001750": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001751": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001752": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001753": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001754": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001755": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001756": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001757": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001758": ["3", "1", "None", "2", "3", "None", "2"]} +{"2001759": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001760": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001761": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001762": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001763": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001764": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001766": ["3", "2", "None", "3", "3", "None", "3"]} +{"2001767": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001768": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001769": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001770": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001771": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001772": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001773": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001774": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001775": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001776": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001777": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001778": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001779": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001780": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001781": ["3", "2", "None", "3", "3", "None", "2"]} +{"2001782": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001783": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001784": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001785": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001786": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001787": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001788": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001789": ["3", "2", "None", "2", "2", "None", "2"]} +{"2001790": ["1", "3", "None", "3", "3", "None", "3"]} +{"2001791": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001792": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001793": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001794": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001795": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001796": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001797": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001798": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001799": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001800": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001801": ["3", "3", "None", "2", "2", "None", "3"]} +{"2001802": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001803": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001804": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001805": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001806": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001807": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001808": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001809": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001810": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001811": ["2", "1", "None", "2", "3", "None", "2"]} +{"2001812": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001813": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001814": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001815": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001816": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001817": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001818": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001819": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001820": ["2", "3", "None", "2", "3", "None", "2"]} +{"2001821": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001822": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001823": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001824": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001825": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001826": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001827": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001828": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001829": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001830": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001831": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001832": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001833": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001834": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001835": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001836": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001837": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001838": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001839": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001840": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001841": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001842": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001843": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001844": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001845": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001846": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001847": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001848": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001849": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001850": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001851": ["2", "2", "None", "2", "2", "None", "2"]} +{"2001852": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001853": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001854": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001855": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001856": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001857": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001858": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001859": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001860": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001861": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001862": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001863": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001864": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001865": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001866": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001867": ["3", "2", "None", "2", "1", "None", "2"]} +{"2001868": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001869": ["3", "3", "None", "2", "3", "None", "2"]} +{"2001870": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001871": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001872": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001873": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001874": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001875": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001876": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001877": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001878": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001879": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001880": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001881": ["3", "3", "None", "2", "2", "None", "2"]} +{"2001882": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001883": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001884": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001885": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001886": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001888": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001889": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001890": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001891": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001892": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001893": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001894": ["3", "3", "None", "3", "1", "None", "3"]} +{"2001895": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001896": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001897": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001898": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001899": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001900": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001901": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001902": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001903": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001904": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001905": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001906": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001907": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001908": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001909": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001910": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001911": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001912": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001913": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001914": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001915": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001916": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001917": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001918": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001919": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001920": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001921": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001922": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001923": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001924": ["3", "3", "None", "3", "1", "None", "2"]} +{"2001925": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001926": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001927": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001928": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001929": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001930": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001931": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001932": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001933": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001934": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001935": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001936": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001937": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001938": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001939": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001940": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001941": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001942": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001943": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001945": ["2", "3", "None", "3", "3", "None", "2"]} +{"2001946": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001947": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001948": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001949": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001950": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001951": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001952": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001953": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001954": ["3", "2", "None", "2", "3", "None", "2"]} +{"2001955": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001956": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001957": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001958": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001959": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001960": ["3", "3", "None", "1", "3", "None", "3"]} +{"2001961": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001962": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001963": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001964": ["3", "3", "None", "3", "1", "None", "1"]} +{"2001965": ["3", "2", "None", "2", "3", "None", "3"]} +{"2001966": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001967": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001968": ["3", "3", "None", "2", "3", "None", "3"]} +{"2001969": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001970": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001971": ["3", "3", "None", "3", "3", "None", "2"]} +{"2001972": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001973": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001974": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001975": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001976": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001977": ["3", "3", "None", "3", "2", "None", "3"]} +{"2001978": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001979": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001980": ["2", "2", "None", "3", "2", "None", "2"]} +{"2001981": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001982": ["3", "3", "None", "3", "2", "None", "2"]} +{"2001983": ["2", "3", "None", "3", "1", "None", "2"]} +{"2001984": ["2", "2", "None", "3", "2", "None", "3"]} +{"2001985": ["2", "3", "None", "2", "2", "None", "2"]} +{"2001986": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001987": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001988": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001989": ["2", "2", "None", "3", "1", "None", "2"]} +{"2001990": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001991": ["2", "3", "None", "3", "2", "None", "3"]} +{"2001992": ["2", "3", "None", "3", "2", "None", "2"]} +{"2001993": ["2", "2", "None", "2", "3", "None", "2"]} +{"2001994": ["2", "3", "None", "3", "3", "None", "3"]} +{"2001995": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001996": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001997": ["2", "3", "None", "2", "3", "None", "3"]} +{"2001998": ["2", "3", "None", "3", "1", "None", "3"]} +{"2001999": ["3", "3", "None", "3", "3", "None", "3"]} +{"2001000": ["3", "2", "3", "2", "3", "2", "2"]} +{"2001001": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001002": ["2", "3", "2", "3", "1", "1", "2"]} +{"2001003": ["3", "2", "3", "3", "2", "3", "2"]} +{"2001004": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001005": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001006": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001007": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001008": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001009": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001010": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001011": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001012": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001013": ["3", "3", "2", "2", "3", "2", "3"]} +{"2001014": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001015": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001016": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001017": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001018": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001019": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001020": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2001021": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001022": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001023": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001024": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001025": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001026": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001027": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001028": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001029": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001030": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001031": ["2", "3", "3", "2", "3", "2", "3"]} +{"2001032": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001033": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001034": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001035": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001036": ["3", "3", "3", "2", "1", "3", "2"]} +{"2001037": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001038": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001039": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001040": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001041": ["3", "3", "3", "1", "3", "1", "2"]} +{"2001042": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001043": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001044": ["2", "2", "3", "3", "2", "1", "2"]} +{"2001045": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001046": ["3", "2", "3", "1", "1", "2", "2"]} +{"2001047": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001048": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001049": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001050": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001051": ["3", "3", "3", "2", "1", "1", "2"]} +{"2001052": ["3", "3", "2", "3", "3", "1", "3"]} +{"2001053": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001054": ["3", "1", "3", "2", "3", "2", "2"]} +{"2001055": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001056": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001057": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001058": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001059": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001060": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001061": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001062": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001063": ["2", "2", "3", "2", "2", "2", "2"]} +{"2001064": ["2", "3", "3", "2", "3", "2", "3"]} +{"2001065": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001066": ["2", "3", "1", "3", "3", "2", "3"]} +{"2001067": ["3", "2", "3", "2", "3", "1", "3"]} +{"2001068": ["3", "3", "2", "3", "3", "1", "3"]} +{"2001069": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001070": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001071": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001072": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001073": ["3", "3", "3", "2", "1", "3", "2"]} +{"2001074": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001075": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001076": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001077": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001078": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001079": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001080": ["3", "2", "3", "2", "3", "2", "2"]} +{"2001081": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001082": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001083": ["3", "2", "3", "2", "1", "3", "2"]} +{"2001084": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001085": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001086": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001087": ["2", "2", "3", "2", "2", "3", "2"]} +{"2001088": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001089": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001090": ["2", "2", "3", "2", "2", "1", "2"]} +{"2001091": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001092": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001093": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001094": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001095": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001096": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001097": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001098": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001099": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001100": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001101": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001102": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001103": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001104": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001105": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001106": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001107": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001108": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001109": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001110": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001111": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001112": ["3", "3", "3", "2", "2", "1", "2"]} +{"2001113": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001114": ["3", "2", "3", "3", "3", "3", "2"]} +{"2001115": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001116": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001117": ["3", "3", "1", "3", "3", "2", "3"]} +{"2001118": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001119": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001120": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001121": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001122": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001123": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001124": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001125": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001126": ["3", "2", "3", "2", "3", "2", "2"]} +{"2001127": ["3", "2", "3", "3", "3", "1", "3"]} +{"2001128": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001129": ["2", "2", "3", "2", "2", "1", "2"]} +{"2001130": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001131": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001132": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001133": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001134": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001135": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001136": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001137": ["3", "3", "2", "2", "3", "3", "3"]} +{"2001138": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001139": ["3", "2", "3", "2", "2", "1", "3"]} +{"2001140": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001141": ["3", "3", "3", "2", "1", "1", "2"]} +{"2001142": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001143": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001144": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001145": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001146": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001147": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001148": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001149": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001150": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001151": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001151": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001152": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001153": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001154": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001155": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001156": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001157": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001158": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001159": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001160": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001161": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001162": ["3", "3", "1", "3", "3", "2", "2"]} +{"2001163": ["2", "3", "3", "2", "2", "2", "2"]} +{"2001164": ["3", "3", "2", "3", "3", "2", "3"]} +{"2001165": ["1", "2", "3", "2", "2", "3", "2"]} +{"2001165": ["1", "2", "3", "2", "2", "3", "2"]} +{"2001166": ["3", "3", "3", "3", "1", "1", "3"]} +{"2001167": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001168": ["2", "3", "3", "2", "3", "1", "2"]} +{"2001169": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001170": ["3", "2", "3", "2", "2", "1", "3"]} +{"2001171": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001172": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001173": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001174": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001175": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001176": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001177": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001178": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001179": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001180": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001181": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001182": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001183": ["3", "3", "3", "2", "3", "2", "3"]} +{"2001184": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001185": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001186": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001186": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001187": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001188": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001189": ["3", "3", "3", "3", "1", "2", "3"]} +{"2001190": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001191": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001192": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001193": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001194": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001195": ["3", "2", "3", "1", "3", "3", "2"]} +{"2001196": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001197": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001198": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001199": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001200": ["3", "3", "2", "3", "2", "3", "2"]} +{"2001201": ["2", "1", "3", "3", "2", "3", "2"]} +{"2001202": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001203": ["3", "3", "2", "2", "3", "3", "3"]} +{"2001204": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001205": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001206": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001207": ["3", "3", "3", "2", "2", "3", "3"]} +{"2001208": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001209": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001210": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001211": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001212": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001213": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001214": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001215": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001216": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001217": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001218": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001219": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001220": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001221": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001222": ["3", "2", "3", "2", "3", "1", "3"]} +{"2001223": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001224": ["1", "1", "3", "2", "1", "1", "2"]} +{"2001225": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001226": ["3", "3", "2", "2", "3", "3", "2"]} +{"2001227": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001228": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001229": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001230": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001231": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001231": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001232": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001232": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001233": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001234": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001235": ["3", "2", "3", "2", "2", "3", "2"]} +{"2001236": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001237": ["3", "3", "3", "2", "3", "None", "2"]} +{"2001238": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001239": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001240": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001241": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001242": ["3", "2", "3", "3", "3", "3", "2"]} +{"2001243": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001237": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001244": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001244": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001245": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001246": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001247": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001248": ["3", "3", "2", "3", "2", "3", "3"]} +{"2001249": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001250": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001251": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001252": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001253": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001254": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001255": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001256": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001257": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001258": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001259": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001260": ["3", "2", "3", "1", "3", "2", "2"]} +{"2001261": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001262": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001263": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001264": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001265": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001266": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001267": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001268": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001269": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001270": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001271": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001271": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001272": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001273": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001274": ["2", "3", "2", "3", "3", "3", "3"]} +{"2001275": ["2", "3", "3", "2", "2", "3", "2"]} +{"2001276": ["2", "3", "3", "2", "3", "3", "3"]} +{"2001277": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001277": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001278": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001279": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001280": ["3", "1", "3", "1", "3", "2", "2"]} +{"2001281": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001282": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001283": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001284": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001284": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001285": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001286": ["2", "2", "3", "2", "3", "2", "2"]} +{"2001287": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001288": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001289": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001290": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001291": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001292": ["2", "3", "2", "3", "1", "3", "3"]} +{"2001293": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001294": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001295": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001296": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001297": ["2", "2", "3", "3", "3", "2", "3"]} +{"2001298": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001299": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001300": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001301": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001302": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001303": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001304": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001305": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001306": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001307": ["3", "2", "3", "3", "2", "3", "2"]} +{"2001308": ["3", "2", "3", "3", "2", "2", "2"]} +{"2001309": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001310": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001311": ["2", "3", "3", "3", "1", "1", "3"]} +{"2001312": ["2", "3", "3", "2", "3", "3", "3"]} +{"2001312": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001313": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001314": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001315": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001316": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001317": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001318": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001319": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001320": ["3", "3", "3", "3", "1", "2", "2"]} +{"2001321": ["2", "2", "3", "2", "3", "3", "3"]} +{"2001322": ["3", "2", "3", "2", "2", "2", "3"]} +{"2001323": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001324": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001324": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001325": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001326": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001327": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001328": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001329": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001330": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001331": ["2", "3", "3", "3", "3", "None", "3"]} +{"2001332": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001333": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001334": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001335": ["3", "3", "3", "2", "1", "3", "2"]} +{"2001336": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001337": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001338": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001339": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001340": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001341": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001342": ["2", "3", "2", "3", "3", "3", "3"]} +{"2001331": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001332": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001333": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001343": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001344": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001345": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001346": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001347": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001348": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001349": ["2", "3", "3", "2", "1", "3", "2"]} +{"2001350": ["2", "2", "3", "2", "3", "2", "2"]} +{"2001351": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001352": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001353": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001354": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001355": ["3", "3", "2", "2", "3", "3", "2"]} +{"2001356": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001357": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001358": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001359": ["2", "3", "3", "2", "3", "1", "3"]} +{"2001360": ["2", "2", "3", "3", "3", "3", "3"]} +{"2001361": ["3", "3", "3", "3", "2", "1", "2"]} +{"2001362": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001363": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001364": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001365": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001366": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001367": ["2", "3", "3", "3", "2", "2", "3"]} +{"2001368": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001369": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001370": ["3", "2", "3", "1", "2", "1", "2"]} +{"2001371": ["3", "3", "3", "3", "2", "1", "2"]} +{"2001372": ["1", "3", "3", "3", "3", "3", "3"]} +{"2001373": ["3", "2", "3", "1", "2", "1", "2"]} +{"2001374": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001375": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001376": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001377": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001378": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001379": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001380": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001381": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001382": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001383": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001384": ["2", "2", "3", "3", "2", "3", "2"]} +{"2001384": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001385": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001386": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001387": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001388": ["3", "3", "3", "3", "2", "3", "2"]} +{"2001389": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001390": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001391": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001392": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001392": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001393": ["3", "2", "3", "3", "3", "1", "2"]} +{"2001394": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001395": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001396": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001397": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001398": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001399": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001400": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001401": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001402": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001403": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001404": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001405": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001406": ["2", "3", "3", "2", "1", "1", "2"]} +{"2001407": ["3", "3", "2", "3", "2", "3", "3"]} +{"2001408": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001409": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001410": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001411": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001412": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001413": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001414": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001415": ["1", "3", "3", "3", "2", "2", "1"]} +{"2001416": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001417": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001417": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001418": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001419": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001420": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001421": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001422": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001423": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001424": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001425": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001426": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001427": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001428": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001429": ["3", "3", "1", "3", "1", "3", "3"]} +{"2001430": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001431": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001432": ["2", "3", "1", "3", "2", "1", "2"]} +{"2001433": ["2", "3", "3", "3", "2", "2", "3"]} +{"2001434": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001435": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001436": ["3", "3", "3", "2", "1", "1", "2"]} +{"2001437": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001438": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001439": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001440": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001441": ["2", "3", "3", "3", "2", "2", "2"]} +{"2001442": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001443": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001444": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001445": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001446": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001447": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001448": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001449": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001450": ["3", "2", "3", "2", "3", "2", "2"]} +{"2001451": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001452": ["3", "2", "3", "3", "1", "3", "2"]} +{"2001453": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001454": ["3", "3", "3", "3", "1", "1", "2"]} +{"2001455": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001456": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001457": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001458": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001459": ["3", "2", "3", "1", "3", "1", "3"]} +{"2001460": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001461": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001462": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001463": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001464": ["3", "3", "1", "1", "3", "3", "3"]} +{"2001465": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001466": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001467": ["3", "3", "3", "3", "1", "3", "2"]} +{"2001468": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001469": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001470": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001471": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001472": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001473": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001474": ["3", "3", "3", "1", "3", "1", "2"]} +{"2001475": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001476": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001477": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001478": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001479": ["2", "3", "3", "2", "2", "3", "2"]} +{"2001480": ["2", "2", "3", "1", "1", "1", "2"]} +{"2001481": ["3", "3", "3", "2", "1", "1", "1"]} +{"2001482": ["2", "3", "3", "2", "3", "1", "1"]} +{"2001483": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001484": ["3", "3", "3", "1", "3", "1", "3"]} +{"2001485": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001486": ["3", "2", "3", "1", "3", "1", "3"]} +{"2001487": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001488": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001489": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001490": ["2", "2", "3", "1", "2", "1", "1"]} +{"2001491": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001492": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001493": ["3", "3", "3", "2", "2", "2", "3"]} +{"2001494": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001495": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001496": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001497": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001498": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001499": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001500": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001501": ["3", "3", "3", "2", "3", "2", "3"]} +{"2001502": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001503": ["3", "2", "2", "2", "3", "3", "3"]} +{"2001504": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001505": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001506": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001507": ["3", "3", "3", "1", "3", "1", "2"]} +{"2001508": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001509": ["3", "3", "1", "3", "3", "1", "2"]} +{"2001510": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001511": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001512": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001513": ["3", "3", "3", "3", "1", "1", "2"]} +{"2001514": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001515": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001516": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001517": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001518": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001519": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001520": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001521": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001522": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001523": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001524": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001525": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001526": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001527": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001528": ["2", "3", "3", "3", "1", "3", "2"]} +{"2001529": ["3", "3", "3", "3", "1", "3", "2"]} +{"2001530": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001531": ["2", "3", "3", "3", "3", "1", "3"]} +{"2001532": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001533": ["3", "3", "3", "3", "3", "1", "2"]} +{"2001534": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001535": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001536": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001537": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001538": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001539": ["3", "3", "3", "3", "1", "1", "2"]} +{"2001540": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001541": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001542": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001543": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001544": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001545": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001546": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001547": ["3", "2", "3", "3", "3", "2", "2"]} +{"2001548": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001549": ["2", "2", "1", "2", "3", "2", "2"]} +{"2001550": ["1", "2", "3", "2", "1", "3", "1"]} +{"2001551": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001552": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001553": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001554": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001555": ["2", "3", "3", "2", "1", "3", "2"]} +{"2001556": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001557": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001558": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001559": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001560": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001561": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001562": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001563": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001564": ["2", "3", "1", "3", "2", "3", "3"]} +{"2001565": ["3", "3", "3", "2", "3", "2", "3"]} +{"2001566": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001567": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001568": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001569": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001570": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001571": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001572": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001573": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001574": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001575": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001576": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001577": ["2", "2", "3", "2", "2", "3", "2"]} +{"2001578": ["2", "3", "3", "2", "3", "3", "1"]} +{"2001579": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001580": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001581": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001582": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001583": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001583": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001584": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001585": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001586": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001587": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001588": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001589": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001589": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001585": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001590": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001591": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001592": ["3", "3", "3", "2", "1", "3", "2"]} +{"2001593": ["2", "3", "3", "2", "3", "1", "3"]} +{"2001594": ["2", "2", "3", "3", "3", "2", "3"]} +{"2001595": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001596": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001597": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001598": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001599": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001600": ["2", "3", "2", "3", "3", "3", "3"]} +{"2001601": ["3", "3", "3", "3", "1", "1", "2"]} +{"2001602": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001603": ["3", "3", "3", "3", "3", "2", "2"]} +{"2001604": ["3", "3", "2", "3", "3", "3", "2"]} +{"2001605": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001606": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001607": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001608": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001609": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001610": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001611": ["2", "3", "3", "2", "3", "2", "3"]} +{"2001612": ["2", "3", "3", "3", "1", "1", "3"]} +{"2001613": ["3", "3", "3", "3", "3", "1", "2"]} +{"2001614": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001615": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001616": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001617": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001618": ["2", "3", "3", "2", "1", "1", "1"]} +{"2001619": ["2", "3", "1", "3", "3", "2", "3"]} +{"2001620": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001621": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001622": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001623": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001624": ["3", "3", "3", "2", "2", "1", "3"]} +{"2001625": ["3", "3", "3", "2", "2", "3", "2"]} +{"2001626": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001627": ["3", "2", "3", "1", "3", "1", "2"]} +{"2001628": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001629": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001630": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001631": ["3", "3", "3", "2", "2", "2", "3"]} +{"2001632": ["3", "1", "2", "3", "1", "3", "2"]} +{"2001633": ["1", "2", "3", "2", "3", "3", "2"]} +{"2001634": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001635": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001636": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001637": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001638": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001639": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001640": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001641": ["3", "3", "3", "3", "1", "1", "3"]} +{"2001642": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001643": ["3", "2", "3", "2", "1", "3", "2"]} +{"2001644": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001645": ["3", "3", "1", "1", "3", "3", "3"]} +{"2001646": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001647": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001648": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001649": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001650": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001651": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001652": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001653": ["3", "2", "3", "2", "3", "1", "3"]} +{"2001654": ["3", "2", "3", "2", "2", "3", "2"]} +{"2001655": ["2", "3", "3", "3", "2", "1", "2"]} +{"2001656": ["2", "2", "3", "1", "3", "3", "2"]} +{"2001657": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001658": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001659": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001660": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001661": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001662": ["2", "2", "3", "1", "1", "1", "1"]} +{"2001662": ["2", "2", "3", "1", "1", "1", "1"]} +{"2001663": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001664": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001665": ["3", "2", "2", "3", "3", "3", "3"]} +{"2001666": ["3", "3", "2", "3", "1", "1", "2"]} +{"2001667": ["3", "3", "1", "3", "1", "3", "3"]} +{"2001668": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001669": ["3", "1", "3", "1", "3", "1", "2"]} +{"2001670": ["3", "3", "3", "2", "3", "1", "3"]} +{"2001671": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001672": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001673": ["2", "3", "2", "3", "3", "3", "3"]} +{"2001674": ["2", "3", "3", "2", "2", "1", "2"]} +{"2001675": ["2", "2", "3", "2", "1", "2", "2"]} +{"2001676": ["3", "3", "2", "3", "2", "3", "2"]} +{"2001677": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001678": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001679": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001680": ["3", "2", "3", "2", "1", "3", "2"]} +{"2001681": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001682": ["2", "2", "3", "3", "2", "3", "2"]} +{"2001683": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001684": ["3", "3", "2", "3", "3", "2", "3"]} +{"2001685": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001686": ["3", "2", "3", "3", "2", "1", "2"]} +{"2001687": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001688": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001689": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001690": ["1", "2", "3", "2", "1", "3", "1"]} +{"2001691": ["3", "2", "2", "2", "1", "3", "2"]} +{"2001692": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001693": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001694": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001695": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001696": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001697": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001698": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001699": ["3", "3", "3", "2", "1", "3", "3"]} +{"2001700": ["2", "2", "3", "3", "3", "3", "2"]} +{"2001701": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001702": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001703": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001704": ["2", "2", "3", "2", "2", "3", "2"]} +{"2001705": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001706": ["3", "3", "1", "3", "3", "1", "3"]} +{"2001707": ["3", "2", "3", "2", "2", "2", "2"]} +{"2001708": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001709": ["2", "1", "3", "2", "2", "1", "2"]} +{"2001710": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001711": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001712": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001713": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001714": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001715": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001716": ["3", "3", "1", "3", "3", "2", "3"]} +{"2001717": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001718": ["3", "3", "3", "2", "3", "1", "2"]} +{"2001719": ["3", "3", "3", "2", "1", "3", "2"]} +{"2001720": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001721": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001722": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001723": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001724": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001725": ["3", "2", "3", "2", "2", "3", "2"]} +{"2001726": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001727": ["2", "3", "3", "2", "2", "3", "2"]} +{"2001728": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001729": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001730": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001731": ["3", "3", "3", "3", "3", "3", "2"]} +{"2001732": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001732": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001733": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001734": ["3", "2", "3", "2", "2", "3", "2"]} +{"2001735": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001736": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001737": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001738": ["3", "3", "3", "3", "1", "3", "2"]} +{"2001739": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001740": ["2", "2", "1", "3", "1", "3", "2"]} +{"2001741": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001742": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001743": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001744": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001745": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001746": ["3", "3", "3", "2", "2", "2", "3"]} +{"2001747": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001748": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001749": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001750": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001751": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001752": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001753": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001754": ["3", "3", "1", "3", "1", "3", "3"]} +{"2001755": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001756": ["2", "3", "3", "3", "1", "3", "2"]} +{"2001757": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001758": ["3", "1", "3", "2", "3", "3", "2"]} +{"2001759": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001760": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001761": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001761": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001762": ["3", "3", "1", "2", "3", "3", "2"]} +{"2001763": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001764": ["3", "3", "1", "2", "3", "3", "2"]} +{"2001765": ["3", "2", "3", "3", "2", "2", "2"]} +{"2001766": ["3", "1", "3", "2", "3", "1", "2"]} +{"2001767": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001768": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001769": ["3", "2", "3", "2", "2", "3", "2"]} +{"2001770": ["3", "3", "3", "3", "1", "3", "3"]} +{"2001771": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001772": ["3", "3", "3", "3", "1", "3", "2"]} +{"2001773": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001774": ["2", "3", "3", "3", "1", "3", "2"]} +{"2001775": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001776": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001777": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001778": ["3", "3", "None", "3", "3", "2", "3"]} +{"2001778": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001779": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001780": ["3", "2", "3", "2", "3", "2", "3"]} +{"2001781": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001782": ["3", "3", "3", "3", "1", "1", "3"]} +{"2001783": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001784": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001785": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001786": ["2", "2", "3", "3", "2", "2", "2"]} +{"2001787": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001788": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001789": ["3", "2", "3", "2", "2", "1", "2"]} +{"2001790": ["1", "3", "3", "3", "3", "2", "3"]} +{"2001791": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001792": ["3", "3", "3", "2", "2", "1", "2"]} +{"2001793": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001794": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001795": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001796": ["2", "3", "3", "2", "3", "1", "3"]} +{"2001797": ["3", "3", "2", "3", "3", "1", "3"]} +{"2001798": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001799": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001800": ["3", "2", "3", "2", "3", "3", "2"]} +{"2001801": ["3", "3", "3", "2", "2", "3", "3"]} +{"2001802": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001803": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001804": ["2", "3", "3", "3", "2", "2", "3"]} +{"2001805": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001806": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001807": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001808": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001809": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001810": ["3", "3", "3", "3", "2", "2", "2"]} +{"2001811": ["2", "1", "3", "2", "3", "3", "2"]} +{"2001812": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001813": ["3", "3", "2", "3", "3", "2", "3"]} +{"2001814": ["3", "3", "3", "3", "2", "2", "3"]} +{"2001815": ["3", "2", "3", "1", "1", "1", "2"]} +{"2001816": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001817": ["2", "2", "3", "2", "3", "2", "3"]} +{"2001818": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001819": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001820": ["2", "3", "3", "2", "3", "3", "2"]} +{"2001821": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001822": ["2", "3", "1", "3", "3", "3", "3"]} +{"2001823": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001824": ["3", "3", "2", "3", "2", "3", "2"]} +{"2001825": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001826": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001827": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001828": ["2", "3", "3", "2", "3", "3", "3"]} +{"2001829": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001830": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001831": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001832": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001833": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001834": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001835": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001836": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001837": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001838": ["3", "3", "3", "2", "2", "2", "2"]} +{"2001839": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001840": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001841": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001842": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001843": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001844": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001845": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001846": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001847": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001848": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001849": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001850": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001851": ["2", "2", "3", "2", "2", "3", "2"]} +{"2001852": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001853": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001854": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001855": ["3", "3", "2", "3", "2", "3", "3"]} +{"2001856": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001857": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001858": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001859": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001860": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001861": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001862": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001863": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001863": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001864": ["3", "2", "3", "2", "3", "2", "3"]} +{"2001865": ["2", "3", "1", "3", "1", "3", "2"]} +{"2001866": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001867": ["3", "2", "3", "2", "1", "1", "2"]} +{"2001868": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001869": ["3", "3", "3", "2", "3", "3", "2"]} +{"2001870": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001871": ["3", "3", "3", "2", "3", "2", "3"]} +{"2001872": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001873": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001874": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001875": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001876": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001877": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001878": ["3", "3", "3", "3", "3", "2", "2"]} +{"2001879": ["3", "3", "1", "3", "1", "3", "2"]} +{"2001880": ["3", "3", "3", "3", "3", "None", "3"]} +{"2001880": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001881": ["3", "3", "3", "2", "2", "2", "2"]} +{"2001882": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001883": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001884": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001885": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001886": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001887": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001888": ["2", "3", "3", "2", "3", "3", "3"]} +{"2001889": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001890": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001891": ["3", "2", "3", "2", "1", "3", "2"]} +{"2001892": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001893": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001894": ["3", "3", "3", "3", "1", "1", "3"]} +{"2001895": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001896": ["3", "3", "1", "3", "2", "3", "3"]} +{"2001897": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001898": ["3", "3", "3", "3", "2", "1", "2"]} +{"2001899": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001900": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001901": ["3", "2", "3", "3", "3", "3", "3"]} +{"2001902": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001903": ["3", "3", "1", "3", "3", "3", "2"]} +{"2001904": ["2", "3", "3", "3", "2", "1", "3"]} +{"2001905": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001906": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001907": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001908": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001909": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001910": ["3", "2", "3", "2", "3", "3", "3"]} +{"2001911": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001912": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001913": ["3", "3", "1", "2", "3", "3", "3"]} +{"2001914": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001915": ["2", "3", "1", "3", "2", "3", "2"]} +{"2001916": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001917": ["3", "2", "3", "2", "3", "2", "3"]} +{"2001918": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001919": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001920": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001921": ["2", "2", "3", "2", "3", "3", "2"]} +{"2001922": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001923": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001924": ["3", "3", "3", "3", "1", "3", "2"]} +{"2001924": ["3", "3", "2", "3", "1", "3", "2"]} +{"2001925": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001926": ["3", "3", "1", "3", "2", "3", "2"]} +{"2001927": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001928": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001929": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001930": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001931": ["3", "3", "3", "3", "2", "1", "2"]} +{"2001932": ["1", "2", "3", "1", "3", "2", "3"]} +{"2001933": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001934": ["3", "3", "3", "3", "2", "1", "3"]} +{"2001935": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001936": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001937": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001938": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001939": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001940": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001941": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001942": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001943": ["3", "3", "3", "3", "3", "2", "3"]} +{"2001944": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001945": ["2", "3", "3", "3", "3", "3", "2"]} +{"2001946": ["3", "3", "3", "3", "3", "1", "3"]} +{"2001947": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001948": ["3", "3", "1", "3", "3", "3", "3"]} +{"2001949": ["2", "2", "3", "2", "2", "1", "2"]} +{"2001950": ["2", "2", "3", "2", "1", "2", "2"]} +{"2001951": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001952": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001953": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001954": ["3", "2", "3", "2", "3", "1", "2"]} +{"2001955": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001956": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001957": ["3", "3", "3", "3", "2", "2", "2"]} +{"2001958": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001959": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001960": ["3", "3", "2", "1", "3", "3", "3"]} +{"2001961": ["2", "2", "2", "3", "1", "3", "2"]} +{"2001962": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001963": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001964": ["3", "3", "1", "3", "1", "2", "1"]} +{"2001965": ["3", "2", "3", "2", "3", "1", "3"]} +{"2001966": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001967": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001968": ["3", "3", "3", "2", "3", "3", "3"]} +{"2001969": ["3", "3", "2", "3", "3", "3", "3"]} +{"2001970": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001971": ["3", "3", "3", "2", "3", "2", "2"]} +{"2001972": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001973": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001974": ["2", "3", "3", "3", "2", "2", "3"]} +{"2001975": ["2", "3", "2", "3", "3", "3", "3"]} +{"2001976": ["3", "3", "3", "2", "3", "1", "3"]} +{"2001977": ["3", "3", "3", "3", "2", "3", "3"]} +{"2001978": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001979": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001980": ["2", "2", "3", "3", "2", "2", "2"]} +{"2001981": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001982": ["3", "3", "3", "3", "2", "2", "2"]} +{"2001983": ["2", "3", "2", "3", "1", "2", "2"]} +{"2001984": ["2", "2", "3", "3", "2", "3", "3"]} +{"2001985": ["2", "3", "3", "2", "2", "2", "2"]} +{"2001986": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001986": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001987": ["2", "3", "3", "3", "3", "2", "3"]} +{"2001988": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001989": ["2", "2", "3", "3", "1", "3", "2"]} +{"2001990": ["2", "3", "3", "3", "2", "3", "3"]} +{"2001991": ["2", "3", "3", "3", "2", "2", "3"]} +{"2001992": ["2", "3", "3", "3", "2", "3", "2"]} +{"2001993": ["2", "2", "3", "2", "3", "1", "2"]} +{"2001994": ["2", "3", "3", "3", "3", "3", "3"]} +{"2001995": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001996": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001997": ["2", "3", "3", "2", "3", "1", "3"]} +{"2001998": ["2", "3", "3", "3", "1", "3", "3"]} +{"2001999": ["3", "3", "3", "3", "3", "3", "3"]} +{"2001002": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2001011": ["3", "3", "3", "3", "3", "1", "3"]} diff --git a/webpage/res/res_current/ans_yuansheng.jsonl b/webpage/res/res_current/ans_yuansheng.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..08d79205ccdc5b7075658af746ed3e4e04bd36eb --- /dev/null +++ b/webpage/res/res_current/ans_yuansheng.jsonl @@ -0,0 +1,2026 @@ +{"7000000": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000001": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000002": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000003": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000004": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000005": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000006": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000007": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000008": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000009": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000010": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000011": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000012": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000013": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000014": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000015": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000016": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000017": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000018": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000019": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000020": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000021": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000022": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000023": ["3", "1", "3", "3", "None", "None", "2"]} +{"7000024": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000025": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000026": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000027": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000028": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000029": ["2", "1", "3", "3", "None", "None", "2"]} +{"7000030": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000031": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000032": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000033": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000034": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000035": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000036": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000037": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000038": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000039": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000040": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000041": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000042": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000043": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000044": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000045": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000046": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000047": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000048": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000049": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000050": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000051": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000052": ["2", "3", "1", "3", "None", "None", "2"]} +{"7000053": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000054": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000055": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000056": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000057": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000058": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000059": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000060": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000061": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000062": ["2", "1", "3", "1", "None", "None", "1"]} +{"7000063": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000064": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000065": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000066": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000067": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000068": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000069": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000070": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000071": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000072": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000073": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000074": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000075": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000076": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000077": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000078": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000079": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000081": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000082": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000083": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000084": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000085": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000086": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000087": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000088": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000089": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000090": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000091": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000092": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000093": ["2", "1", "3", "1", "None", "None", "2"]} +{"7000095": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000096": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000097": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000098": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000099": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000100": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000101": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000102": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000103": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000104": ["3", "1", "3", "1", "None", "None", "2"]} +{"7000105": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000106": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000107": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000108": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000109": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000110": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000111": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000112": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000113": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000114": ["2", "1", "3", "1", "None", "None", "2"]} +{"7000115": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000116": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000117": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000118": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000119": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000120": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000121": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000122": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000123": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000124": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000125": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000126": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000127": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000128": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000129": ["1", "1", "3", "1", "None", "None", "1"]} +{"7000130": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000131": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000132": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000133": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000134": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000135": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000136": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000137": ["2", "1", "3", "1", "None", "None", "2"]} +{"7000138": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000139": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000140": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000141": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000142": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000143": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000144": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000145": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000146": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000147": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000148": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000149": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000150": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000151": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000152": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000153": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000154": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000155": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000156": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000157": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000158": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000159": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000160": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000161": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000162": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000163": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000164": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000165": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000166": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000167": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000168": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000169": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000170": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000171": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000172": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000173": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000174": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000175": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000176": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000177": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000178": ["3", "1", "2", "2", "None", "None", "2"]} +{"7000179": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000180": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000181": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000182": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000183": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000184": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000185": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000186": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000187": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000188": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000189": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000190": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000191": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000192": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000193": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000194": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000195": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000196": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000197": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000198": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000199": ["2", "3", "2", "2", "None", "None", "2"]} +{"7000200": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000201": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000202": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000203": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000204": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000205": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000206": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000207": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000208": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000209": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000210": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000211": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000212": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000213": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000214": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000215": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000216": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000217": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000218": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000219": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000220": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000221": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000222": ["1", "3", "3", "3", "None", "None", "3"]} +{"7000223": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000224": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000225": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000226": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000227": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000228": ["2", "3", "2", "3", "None", "None", "2"]} +{"7000229": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000230": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000231": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000232": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000233": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000234": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000235": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000236": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000237": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000238": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000239": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000240": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000241": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000242": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000243": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000244": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000245": ["2", "1", "3", "1", "None", "None", "1"]} +{"7000246": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000247": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000248": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000249": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000250": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000251": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000252": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000253": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000254": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000255": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000256": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000258": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000259": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000260": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000261": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000262": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000263": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000264": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000265": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000266": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000267": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000268": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000269": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000270": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000271": ["3", "1", "1", "1", "None", "None", "2"]} +{"7000272": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000273": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000274": ["1", "3", "1", "1", "None", "None", "2"]} +{"7000275": ["2", "3", "1", "3", "None", "None", "2"]} +{"7000276": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000277": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000278": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000279": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000280": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000281": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000282": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000283": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000284": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000285": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000286": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000287": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000288": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000289": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000290": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000291": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000292": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000293": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000294": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000295": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000296": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000297": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000298": ["2", "3", "2", "3", "None", "None", "2"]} +{"7000299": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000300": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000301": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000302": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000303": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000304": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000305": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000306": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000307": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000308": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000309": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000310": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000311": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000312": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000313": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000314": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000315": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000316": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000317": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000318": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000319": ["2", "3", "2", "2", "None", "None", "3"]} +{"7000320": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000321": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000322": ["3", "2", "3", "1", "None", "None", "2"]} +{"7000323": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000324": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000325": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000326": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000327": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000328": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000329": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000330": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000331": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000332": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000333": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000334": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000335": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000336": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000337": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000338": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000339": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000340": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000341": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000342": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000343": ["3", "3", "2", "2", "None", "None", "2"]} +{"7000344": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000345": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000346": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000347": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000348": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000349": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000350": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000351": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000352": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000353": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000354": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000355": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000356": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000357": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000358": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000359": ["3", "2", "2", "2", "None", "None", "2"]} +{"7000360": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000361": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000362": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000363": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000364": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000365": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000366": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000367": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000368": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000369": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000370": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000371": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000372": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000373": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000374": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000375": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000376": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000377": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000378": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000379": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000380": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000381": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000382": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000383": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000384": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000385": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000386": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000387": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000388": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000389": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000390": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000391": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000392": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000393": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000394": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000395": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000396": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000397": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000398": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000399": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000400": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000401": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000402": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000403": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000404": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000405": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000406": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000407": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000408": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000409": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000410": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000411": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000412": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000413": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000414": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000415": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000416": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000417": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000418": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000419": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000420": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000421": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000422": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000423": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000424": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000425": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000426": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000427": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000428": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000429": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000430": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000431": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000432": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000433": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000434": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000435": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000436": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000437": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000439": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000440": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000441": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000442": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000443": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000444": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000445": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000447": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000449": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000450": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000451": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000452": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000453": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000454": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000455": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000456": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000457": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000458": ["3", "3", "1", "2", "None", "None", "2"]} +{"7000459": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000460": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000461": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000462": ["3", "3", "1", "2", "None", "None", "2"]} +{"7000463": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000464": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000465": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000466": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000467": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000468": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000469": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000470": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000471": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000472": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000473": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000474": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000475": ["3", "3", "1", "1", "None", "None", "2"]} +{"7000476": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000477": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000478": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000479": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000480": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000481": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000482": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000483": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000484": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000485": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000486": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000487": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000488": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000489": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000490": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000491": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000492": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000493": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000494": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000495": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000496": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000497": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000499": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000500": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000501": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000502": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000503": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000504": ["2", "1", "3", "1", "None", "None", "2"]} +{"7000505": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000506": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000507": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000508": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000509": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000510": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000511": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000512": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000513": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000514": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000515": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000516": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000517": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000518": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000519": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000520": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000521": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000522": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000523": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000524": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000525": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000526": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000527": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000528": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000529": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000530": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000531": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000532": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000533": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000534": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000535": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000536": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000537": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000538": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000539": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000540": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000541": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000542": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000543": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000544": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000545": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000546": ["2", "1", "3", "1", "None", "None", "2"]} +{"7000547": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000548": ["3", "3", "1", "2", "None", "None", "2"]} +{"7000549": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000550": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000551": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000552": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000553": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000554": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000555": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000556": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000557": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000558": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000559": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000560": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000561": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000562": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000563": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000564": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000565": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000566": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000567": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000568": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000569": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000570": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000571": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000572": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000573": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000574": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000575": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000576": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000577": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000578": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000579": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000580": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000582": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000583": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000584": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000585": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000586": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000587": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000588": ["2", "3", "2", "2", "None", "None", "2"]} +{"7000589": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000590": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000591": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000592": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000593": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000594": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000595": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000596": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000597": ["2", "3", "2", "3", "None", "None", "2"]} +{"7000598": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000599": ["2", "2", "3", "2", "None", "None", "3"]} +{"7000600": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000601": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000602": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000603": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000604": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000605": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000606": ["3", "2", "2", "3", "None", "None", "3"]} +{"7000607": ["3", "1", "3", "2", "None", "None", "3"]} +{"7000608": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000609": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000610": ["2", "3", "3", "1", "None", "None", "2"]} +{"7000611": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000612": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000613": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000614": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000615": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000616": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000617": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000618": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000619": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000620": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000621": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000622": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000623": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000624": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000625": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000626": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000627": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000628": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000629": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000630": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000631": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000632": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000633": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000634": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000635": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000636": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000637": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000638": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000639": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000640": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000642": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000643": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000644": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000645": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000646": ["3", "3", "1", "1", "None", "None", "2"]} +{"7000647": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000648": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000649": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000650": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000651": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000652": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000654": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000655": ["3", "3", "1", "2", "None", "None", "2"]} +{"7000656": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000657": ["2", "1", "3", "2", "None", "None", "2"]} +{"7000658": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000659": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000660": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000661": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000662": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000663": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000664": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000665": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000666": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000667": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000668": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000669": ["3", "3", "1", "3", "None", "None", "2"]} +{"7000670": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000671": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000672": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000673": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000674": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000675": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000676": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000677": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000678": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000679": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000680": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000681": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000682": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000683": ["3", "1", "3", "2", "None", "None", "3"]} +{"7000684": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000685": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000686": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000687": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000688": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000689": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000690": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000691": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000692": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000693": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000694": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000695": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000696": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000697": ["3", "2", "3", "3", "None", "None", "1"]} +{"7000698": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000699": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000700": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000701": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000702": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000703": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000704": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000705": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000706": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000707": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000708": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000709": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000710": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000711": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000712": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000713": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000714": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000715": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000716": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000717": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000718": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000719": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000720": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000721": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000722": ["2", "3", "2", "3", "None", "None", "3"]} +{"7000723": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000724": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000725": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000726": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000727": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000728": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000729": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000730": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000731": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000732": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000733": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000734": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000735": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000736": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000737": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000738": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000739": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000740": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000741": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000742": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000743": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000744": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000745": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000746": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000747": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000748": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000749": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000750": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000751": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000752": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000753": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000754": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000755": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000756": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000757": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000758": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000759": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000760": ["2", "3", "2", "3", "None", "None", "2"]} +{"7000761": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000762": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000763": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000764": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000765": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000766": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000767": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000768": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000769": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000770": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000771": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000772": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000773": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000774": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000775": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000776": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000777": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000778": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000779": ["2", "3", "3", "1", "None", "None", "2"]} +{"7000780": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000781": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000782": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000783": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000784": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000785": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000786": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000787": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000788": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000789": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000790": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000791": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000792": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000793": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000794": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000795": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000796": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000797": ["3", "3", "1", "1", "None", "None", "2"]} +{"7000798": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000799": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000800": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000801": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000802": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000803": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000804": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000805": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000806": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000807": ["2", "3", "2", "3", "None", "None", "3"]} +{"7000808": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000809": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000810": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000811": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000812": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000813": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000814": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000815": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000816": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000817": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000818": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000819": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000820": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000821": ["2", "1", "2", "2", "None", "None", "1"]} +{"7000822": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000823": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000824": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000825": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000826": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000827": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000828": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000829": ["3", "3", "2", "3", "None", "None", "2"]} +{"7000830": ["2", "3", "1", "1", "None", "None", "2"]} +{"7000831": ["2", "3", "2", "3", "None", "None", "3"]} +{"7000832": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000833": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000834": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000835": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000836": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000837": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000838": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000839": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000840": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000841": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000842": ["3", "2", "3", "1", "None", "None", "2"]} +{"7000843": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000844": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000845": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000846": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000847": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000848": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000849": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000850": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000851": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000852": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000853": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000854": ["2", "3", "3", "3", "None", "None", "2"]} +{"7000855": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000856": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000857": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000858": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000859": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000860": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000861": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000862": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000863": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000864": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000865": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000866": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000867": ["2", "2", "3", "3", "None", "None", "2"]} +{"7000868": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000869": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000870": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000871": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000872": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000873": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000874": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000875": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000876": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000877": ["3", "3", "2", "2", "None", "None", "2"]} +{"7000878": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000879": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000880": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000881": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000882": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000883": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000884": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000885": ["3", "2", "3", "3", "None", "None", "2"]} +{"7000886": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000887": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000888": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000889": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000890": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000891": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000892": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000893": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000894": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000895": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000896": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000897": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000898": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000899": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000900": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000901": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000902": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000903": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000904": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000905": ["2", "2", "3", "1", "None", "None", "2"]} +{"7000906": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000907": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000908": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000909": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000910": ["3", "2", "2", "3", "None", "None", "3"]} +{"7000911": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000912": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000913": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000914": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000915": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000916": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000917": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000918": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000919": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000920": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000921": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000922": ["2", "2", "3", "3", "None", "None", "3"]} +{"7000923": ["2", "3", "1", "3", "None", "None", "3"]} +{"7000924": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000925": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000926": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000927": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000928": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000929": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000930": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000931": ["3", "3", "1", "2", "None", "None", "3"]} +{"7000932": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000933": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000934": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000935": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000936": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000937": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000938": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000939": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000940": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000941": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000942": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000943": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000944": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000945": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000946": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000947": ["3", "3", "2", "3", "None", "None", "3"]} +{"7000948": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000949": ["3", "2", "3", "3", "None", "None", "3"]} +{"7000950": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000951": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000952": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000953": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000954": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000955": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000956": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000957": ["2", "3", "3", "2", "None", "None", "2"]} +{"7000958": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000959": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000960": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000961": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000962": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000963": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000964": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000965": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000966": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000967": ["3", "3", "1", "1", "None", "None", "3"]} +{"7000968": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000969": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000970": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000971": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000972": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000973": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000974": ["3", "3", "2", "2", "None", "None", "3"]} +{"7000975": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000976": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000977": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000978": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000979": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000980": ["2", "3", "3", "3", "None", "None", "3"]} +{"7000981": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000982": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000983": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000984": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000985": ["3", "2", "3", "2", "None", "None", "2"]} +{"7000986": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000987": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000988": ["3", "3", "3", "2", "None", "None", "2"]} +{"7000989": ["2", "3", "3", "2", "None", "None", "3"]} +{"7000990": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000991": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000992": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000993": ["3", "3", "1", "3", "None", "None", "3"]} +{"7000994": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000995": ["3", "3", "3", "3", "None", "None", "2"]} +{"7000996": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000997": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000998": ["3", "3", "3", "2", "None", "None", "3"]} +{"7000999": ["3", "2", "3", "2", "None", "None", "3"]} +{"7000000": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000001": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000002": ["2", "1", "3", "2", "1", "3", "2"]} +{"7000003": ["3", "3", "2", "3", "2", "3", "2"]} +{"7000004": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000005": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000006": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000007": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000008": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000009": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000010": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000011": ["3", "3", "1", "3", "2", "1", "2"]} +{"7000012": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000013": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000014": ["2", "2", "3", "2", "None", "None", "2"]} +{"7000014": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000015": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000016": ["3", "1", "3", "2", "2", "2", "2"]} +{"7000017": ["3", "3", "1", "3", "2", "3", "2"]} +{"7000018": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000019": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000020": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000021": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000022": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000023": ["3", "1", "3", "3", "3", "3", "2"]} +{"7000024": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000025": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000026": ["3", "3", "3", "2", "2", "2", "2"]} +{"7000027": ["2", "2", "3", "2", "2", "1", "2"]} +{"7000028": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000029": ["2", "1", "3", "3", "2", "2", "2"]} +{"7000030": ["3", "2", "3", "3", "3", "2", "3"]} +{"7000031": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000032": ["3", "3", "3", "2", "2", "2", "3"]} +{"7000033": ["3", "3", "1", "3", "3", "2", "3"]} +{"7000034": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000035": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000036": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000037": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000038": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000039": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000040": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000041": ["2", "2", "3", "3", "3", "1", "2"]} +{"7000042": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000043": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000044": ["3", "3", "2", "3", "3", "2", "3"]} +{"7000045": ["3", "3", "2", "3", "1", "3", "2"]} +{"7000046": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000047": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000048": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000049": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000050": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000051": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000052": ["2", "3", "1", "3", "3", "3", "2"]} +{"7000053": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000054": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000055": ["3", "2", "3", "2", "1", "2", "2"]} +{"7000056": ["3", "3", "2", "3", "3", "2", "3"]} +{"7000057": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000058": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000059": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000060": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000061": ["2", "2", "3", "2", "3", "2", "3"]} +{"7000062": ["2", "1", "3", "1", "1", "1", "1"]} +{"7000063": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000064": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000065": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000066": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000067": ["2", "2", "3", "2", "3", "3", "3"]} +{"7000068": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000069": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000070": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000071": ["3", "2", "3", "3", "3", "2", "2"]} +{"7000072": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000073": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000074": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000075": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000076": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000077": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000078": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000079": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000080": ["None", "None", "None", "None", "3", "3", "None"]} +{"7000080": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000081": ["3", "3", "1", "3", "2", "3", "2"]} +{"7000082": ["3", "3", "2", "3", "2", "2", "2"]} +{"7000083": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000084": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000085": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000086": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000087": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000088": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000089": ["3", "1", "3", "2", "2", "3", "2"]} +{"7000090": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000091": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000092": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000093": ["2", "1", "3", "1", "3", "2", "2"]} +{"7000094": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000095": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000096": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000097": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000098": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000099": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000100": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000101": ["2", "2", "3", "3", "3", "2", "3"]} +{"7000102": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000103": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000104": ["3", "1", "3", "1", "2", "3", "2"]} +{"7000105": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000106": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000107": ["2", "2", "3", "2", "3", "3", "3"]} +{"7000108": ["2", "3", "3", "2", "2", "2", "2"]} +{"7000109": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000110": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000111": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000112": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000113": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000114": ["2", "1", "3", "1", "3", "2", "2"]} +{"7000115": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000116": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000117": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000118": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000119": ["2", "3", "3", "3", "1", "3", "3"]} +{"7000120": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000121": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000122": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000123": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000124": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000125": ["2", "3", "3", "3", "2", "2", "3"]} +{"7000126": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000127": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000128": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000129": ["1", "1", "3", "1", "3", "3", "1"]} +{"7000130": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000131": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000132": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000133": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000134": ["3", "3", "3", "3", "2", "1", "3"]} +{"7000135": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000136": ["2", "3", "3", "3", "3", "1", "3"]} +{"7000137": ["2", "1", "3", "1", "2", "3", "2"]} +{"7000138": ["2", "2", "3", "1", "3", "3", "2"]} +{"7000139": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000140": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000141": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000142": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000143": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000144": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000145": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000146": ["2", "2", "3", "3", "2", "2", "3"]} +{"7000147": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000148": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000149": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000150": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000151": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000152": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000153": ["2", "2", "3", "1", "3", "3", "2"]} +{"7000154": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000155": ["3", "3", "3", "3", "3", "2", "2"]} +{"7000155": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000156": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000157": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000158": ["2", "3", "3", "2", "3", "2", "3"]} +{"7000159": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000160": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000161": ["2", "2", "3", "2", "2", "1", "2"]} +{"7000162": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000163": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000164": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000165": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000166": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000167": ["2", "3", "3", "2", "3", "2", "3"]} +{"7000168": ["3", "2", "3", "2", "3", "1", "3"]} +{"7000169": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000170": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000171": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000172": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000172": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000173": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000174": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000175": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000176": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000177": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000178": ["3", "1", "2", "2", "2", "3", "2"]} +{"7000179": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000180": ["3", "2", "3", "3", "3", "2", "3"]} +{"7000181": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000182": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000183": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000184": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000185": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000186": ["2", "2", "3", "2", "2", "2", "3"]} +{"7000187": ["2", "2", "3", "1", "3", "2", "2"]} +{"7000188": ["3", "1", "3", "2", "2", "3", "2"]} +{"7000189": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000190": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000191": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000192": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000193": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000194": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000195": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000196": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000197": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000198": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000199": ["2", "3", "2", "2", "2", "3", "2"]} +{"7000200": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000201": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000202": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000203": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000204": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000205": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000206": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000207": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000207": ["3", "3", "2", "2", "1", "3", "2"]} +{"7000208": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000209": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000210": ["1", "1", "3", "1", "2", "1", "1"]} +{"7000211": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000212": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000213": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000214": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000215": ["3", "3", "1", "3", "2", "3", "3"]} +{"7000216": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000217": ["3", "3", "3", "2", "2", "3", "2"]} +{"7000218": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000219": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000220": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000221": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000222": ["1", "3", "3", "3", "2", "3", "3"]} +{"7000223": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000224": ["3", "1", "3", "2", "3", "1", "2"]} +{"7000225": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000226": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000227": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000228": ["2", "3", "2", "3", "3", "3", "2"]} +{"7000229": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000230": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000231": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000232": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000233": ["3", "2", "3", "3", "2", "3", "2"]} +{"7000234": ["2", "2", "3", "3", "3", "2", "3"]} +{"7000235": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000236": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000237": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000238": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000239": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000240": ["3", "3", "2", "2", "3", "3", "3"]} +{"7000241": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000242": ["3", "2", "3", "3", "2", "2", "3"]} +{"7000243": ["3", "3", "1", "3", "2", "3", "2"]} +{"7000244": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000245": ["2", "1", "3", "1", "3", "2", "1"]} +{"7000246": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000247": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000248": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000249": ["3", "3", "3", "2", "2", "3", "2"]} +{"7000250": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000251": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000252": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000253": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000254": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000255": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000256": ["3", "2", "3", "2", "3", "1", "3"]} +{"7000257": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000258": ["3", "3", "1", "3", "3", "3", "2"]} +{"7000259": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000260": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000261": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000262": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000263": ["2", "3", "3", "3", "3", "None", "3"]} +{"7000263": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000264": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000265": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000266": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000267": ["3", "3", "3", "3", "3", "2", "2"]} +{"7000268": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000269": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000270": ["3", "3", "1", "3", "2", "3", "2"]} +{"7000271": ["3", "1", "1", "1", "3", "2", "2"]} +{"7000272": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000273": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000274": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000275": ["2", "3", "2", "3", "3", "3", "3"]} +{"7000276": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000277": ["2", "2", "3", "2", "1", "2", "2"]} +{"7000278": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000279": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000280": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000281": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000282": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000283": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000284": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000285": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000286": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000287": ["2", "2", "3", "3", "3", "3", "2"]} +{"7000288": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000289": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000290": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000291": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000292": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000292": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000293": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000294": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000295": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000296": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000297": ["3", "2", "3", "3", "3", "2", "2"]} +{"7000298": ["2", "3", "2", "3", "3", "3", "2"]} +{"7000299": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000300": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000301": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000302": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000303": ["3", "3", "2", "3", "3", "2", "2"]} +{"7000304": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000305": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000306": ["3", "2", "3", "3", "2", "2", "2"]} +{"7000307": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000308": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000309": ["3", "3", "1", "3", "2", "3", "3"]} +{"7000310": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000311": ["3", "1", "3", "2", "2", "1", "2"]} +{"7000312": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000313": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000314": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000315": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000316": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000317": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000318": ["3", "3", "3", "3", "2", "2", "2"]} +{"7000319": ["2", "3", "2", "2", "2", "3", "3"]} +{"7000320": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000321": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000322": ["3", "2", "3", "1", "3", "2", "2"]} +{"7000323": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000324": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000325": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000326": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000327": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000328": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000329": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000330": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000331": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000332": ["2", "2", "3", "3", "3", "3", "3"]} +{"7000333": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000334": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000335": ["3", "2", "3", "3", "3", "2", "2"]} +{"7000336": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000337": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000338": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000338": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000339": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000340": ["3", "2", "3", "3", "2", "2", "2"]} +{"7000341": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000342": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000343": ["3", "3", "2", "2", "3", "3", "2"]} +{"7000344": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000345": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000346": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000347": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000348": ["2", "2", "3", "2", "3", "2", "3"]} +{"7000349": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000350": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000351": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000352": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000353": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000354": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000355": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000356": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000357": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000358": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000359": ["3", "2", "2", "2", "3", "2", "2"]} +{"7000360": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000361": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000362": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000363": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000364": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000365": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000366": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000367": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000368": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000369": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000370": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000371": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000372": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000373": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000374": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000375": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000376": ["3", "3", "1", "3", "2", "3", "2"]} +{"7000377": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000378": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000379": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000380": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000381": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000382": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000383": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000384": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000385": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000386": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000387": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000388": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000389": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000390": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000391": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000392": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000393": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000394": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000395": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000396": ["2", "2", "3", "3", "2", "2", "2"]} +{"7000397": ["3", "2", "3", "3", "3", "2", "3"]} +{"7000398": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000399": ["3", "3", "2", "3", "2", "2", "3"]} +{"7000400": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000401": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000402": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000403": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000404": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000405": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000406": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000407": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000408": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000409": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000410": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000411": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000412": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000413": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000414": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000415": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000416": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000417": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000418": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000419": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000420": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000421": ["3", "2", "3", "2", "1", "3", "3"]} +{"7000422": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000423": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000424": ["2", "2", "3", "3", "2", "3", "2"]} +{"7000425": ["3", "2", "3", "3", "2", "3", "2"]} +{"7000426": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000427": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000428": ["2", "2", "3", "3", "2", "2", "3"]} +{"7000429": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000430": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000431": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000432": ["3", "2", "3", "3", "3", "2", "2"]} +{"7000433": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000434": ["3", "2", "3", "3", "2", "3", "2"]} +{"7000435": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000436": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000437": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000438": ["2", "3", "2", "3", "3", "2", "2"]} +{"7000439": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000440": ["3", "1", "3", "2", "2", "2", "2"]} +{"7000441": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000442": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000443": ["3", "3", "3", "2", "3", "1", "2"]} +{"7000444": ["2", "2", "3", "2", "3", "3", "3"]} +{"7000445": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000446": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000447": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000448": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000449": ["3", "3", "3", "2", "3", "1", "2"]} +{"7000449": ["2", "1", "3", "2", "3", "1", "2"]} +{"7000450": ["2", "1", "3", "1", "2", "2", "2"]} +{"7000451": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000452": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000453": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000454": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000455": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000456": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000457": ["3", "2", "3", "3", "2", "3", "3"]} +{"7000458": ["3", "3", "1", "2", "3", "3", "2"]} +{"7000459": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000460": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000461": ["2", "2", "3", "3", "3", "2", "3"]} +{"7000462": ["3", "3", "1", "2", "3", "3", "2"]} +{"7000463": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000464": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000465": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000466": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000467": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000468": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000469": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000470": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000471": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000472": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000473": ["2", "3", "3", "3", "2", "2", "2"]} +{"7000474": ["3", "2", "3", "2", "1", "3", "2"]} +{"7000475": ["3", "3", "1", "1", "2", "3", "2"]} +{"7000476": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000477": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000478": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000478": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000479": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000480": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000481": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000482": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000483": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000484": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000485": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000486": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000487": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000488": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000489": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000490": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000491": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000492": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000493": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000494": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000495": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000496": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000497": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000498": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000499": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000500": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000501": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000502": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000503": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000504": ["2", "1", "3", "1", "3", "2", "2"]} +{"7000505": ["2", "2", "3", "1", "1", "3", "2"]} +{"7000506": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000507": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000508": ["2", "3", "3", "2", "1", "3", "2"]} +{"7000509": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000510": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000511": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000512": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000513": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000514": ["3", "3", "1", "3", "2", "3", "3"]} +{"7000515": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000516": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000517": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000518": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000519": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000520": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000521": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000522": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000523": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000524": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000525": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000526": ["2", "3", "3", "3", "2", "3", "2"]} +{"7000527": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000528": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000529": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000530": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000531": ["2", "1", "3", "2", "None", "2", "2"]} +{"7000532": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000533": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000534": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000535": ["3", "3", "1", "3", "2", "3", "3"]} +{"7000536": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000537": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000538": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000539": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000540": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000541": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000542": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000543": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000544": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000545": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000546": ["2", "1", "3", "1", "3", "3", "2"]} +{"7000547": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000548": ["3", "3", "1", "2", "2", "3", "2"]} +{"7000549": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000550": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000551": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000552": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000553": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000554": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000555": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000556": ["3", "3", "3", "3", "None", "None", "3"]} +{"7000557": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000558": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000559": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000560": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000561": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000562": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000563": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000531": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000556": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000564": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000565": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000566": ["3", "3", "3", "2", "1", "3", "3"]} +{"7000567": ["3", "3", "3", "2", "1", "3", "3"]} +{"7000568": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000569": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000570": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000571": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000572": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000573": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000574": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000575": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000576": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000577": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000578": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000579": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000580": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000581": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000582": ["2", "3", "3", "2", "3", "2", "3"]} +{"7000583": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000584": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000585": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000586": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000587": ["2", "2", "3", "3", "2", "3", "2"]} +{"7000588": ["2", "3", "2", "2", "2", "3", "2"]} +{"7000589": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000590": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000591": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000592": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000593": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000594": ["2", "3", "3", "3", "1", "3", "2"]} +{"7000595": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000596": ["2", "1", "3", "2", "2", "3", "2"]} +{"7000597": ["2", "3", "2", "3", "2", "3", "2"]} +{"7000598": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000599": ["2", "2", "3", "2", "2", "1", "2"]} +{"7000600": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000601": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000602": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000603": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000604": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000605": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000606": ["3", "2", "2", "3", "1", "3", "3"]} +{"7000607": ["3", "1", "3", "2", "3", "1", "1"]} +{"7000608": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000609": ["3", "2", "3", "3", "2", "3", "3"]} +{"7000610": ["2", "1", "3", "2", "2", "2", "2"]} +{"7000611": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000612": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000613": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000614": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000615": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000616": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000617": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000617": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000618": ["2", "2", "3", "3", "3", "3", "3"]} +{"7000619": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000620": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000621": ["3", "3", "2", "3", "1", "3", "3"]} +{"7000622": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000623": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000624": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000625": ["3", "3", "3", "2", "2", "2", "3"]} +{"7000626": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000627": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000628": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000629": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000630": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000631": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000632": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000633": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000634": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000635": ["3", "2", "3", "3", "2", "2", "2"]} +{"7000636": ["3", "2", "3", "3", "2", "3", "3"]} +{"7000637": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000638": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000639": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000640": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000641": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000642": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000643": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000644": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000645": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000646": ["3", "3", "1", "1", "3", "3", "2"]} +{"7000647": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000648": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000649": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000650": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000651": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000652": ["3", "2", "3", "3", "3", "1", "3"]} +{"7000653": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000654": ["3", "3", "3", "2", "1", "3", "2"]} +{"7000655": ["3", "3", "1", "2", "1", "2", "2"]} +{"7000656": ["2", "3", "3", "3", "1", "2", "3"]} +{"7000657": ["2", "1", "3", "2", "3", "3", "2"]} +{"7000658": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000659": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000660": ["3", "3", "2", "2", "3", "2", "2"]} +{"7000661": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000662": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000663": ["2", "2", "3", "2", "1", "2", "2"]} +{"7000664": ["3", "2", "3", "3", "3", "2", "3"]} +{"7000665": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000666": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000667": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000668": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000669": ["3", "3", "1", "3", "3", "2", "2"]} +{"7000670": ["2", "3", "3", "2", "3", "2", "2"]} +{"7000671": ["3", "3", "3", "2", "2", "2", "2"]} +{"7000672": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000673": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000674": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000675": ["3", "1", "3", "2", "None", "None", "2"]} +{"7000675": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000676": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000677": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000678": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000679": ["3", "1", "3", "2", "1", "2", "1"]} +{"7000680": ["3", "3", "2", "3", "1", "3", "3"]} +{"7000681": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000682": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000683": ["3", "1", "3", "2", "2", "3", "2"]} +{"7000684": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000685": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000686": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000687": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000688": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000689": ["3", "3", "3", "3", "1", "2", "3"]} +{"7000690": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000691": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000692": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000693": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000694": ["3", "3", "3", "3", "2", "2", "2"]} +{"7000695": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000696": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000697": ["3", "2", "3", "2", "3", "2", "1"]} +{"7000698": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000699": ["3", "1", "3", "2", "2", "2", "2"]} +{"7000700": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000701": ["2", "3", "3", "3", "3", "1", "2"]} +{"7000702": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000703": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000704": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000705": ["3", "2", "3", "3", "3", "2", "3"]} +{"7000705": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000706": ["3", "3", "1", "3", "2", "3", "3"]} +{"7000706": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000707": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000708": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000709": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000710": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000711": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000712": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000713": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000714": ["2", "3", "3", "2", "1", "2", "2"]} +{"7000715": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000716": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000717": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000718": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000719": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000720": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000721": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000722": ["2", "3", "2", "3", "3", "3", "3"]} +{"7000723": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000724": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000725": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000726": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000727": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000728": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000729": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000730": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000731": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000732": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000733": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000734": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000735": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000736": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000737": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000738": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000739": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000740": ["3", "1", "3", "2", "2", "2", "2"]} +{"7000741": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000742": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000743": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000744": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000745": ["3", "1", "3", "2", "2", "2", "2"]} +{"7000746": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000747": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000748": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000749": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000750": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000751": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000752": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000753": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000754": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000755": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000756": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000757": ["3", "3", "2", "3", "2", "2", "2"]} +{"7000758": ["2", "3", "3", "3", "3", "2", "3"]} +{"7000759": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000760": ["2", "3", "3", "3", "3", "3", "2"]} +{"7000761": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000762": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000763": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000764": ["2", "2", "3", "2", "2", "2", "2"]} +{"7000765": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000766": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000767": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000768": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000769": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000770": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000771": ["3", "3", "2", "3", "1", "3", "3"]} +{"7000772": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000773": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000774": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000775": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000776": ["3", "3", "2", "3", "3", "3", "2"]} +{"7000777": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000778": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000779": ["2", "1", "3", "1", "2", "3", "1"]} +{"7000780": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000781": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000782": ["3", "3", "2", "2", "2", "3", "3"]} +{"7000783": ["3", "3", "2", "2", "2", "3", "3"]} +{"7000784": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000785": ["3", "1", "3", "2", "3", "3", "2"]} +{"7000786": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000787": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000788": ["2", "3", "3", "3", "2", "3", "2"]} +{"7000789": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000790": ["2", "1", "3", "2", "1", "2", "2"]} +{"7000791": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000792": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000793": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000794": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000795": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000796": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000797": ["2", "3", "1", "2", "3", "3", "2"]} +{"7000798": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000799": ["2", "1", "3", "2", "3", "1", "2"]} +{"7000800": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000801": ["2", "3", "3", "2", "2", "2", "2"]} +{"7000802": ["2", "2", "3", "2", "3", "1", "2"]} +{"7000803": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000804": ["3", "3", "2", "2", "2", "3", "3"]} +{"7000805": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000806": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000807": ["2", "3", "2", "3", "3", "3", "3"]} +{"7000808": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000809": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000810": ["3", "2", "3", "3", "3", "2", "2"]} +{"7000811": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000812": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000813": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000813": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000814": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000815": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000816": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000817": ["3", "3", "3", "3", "1", "3", "3"]} +{"7000818": ["2", "3", "3", "2", "2", "1", "2"]} +{"7000819": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000820": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000821": ["2", "1", "2", "2", "1", "3", "1"]} +{"7000822": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000823": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000824": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000825": ["2", "3", "3", "3", "2", "2", "3"]} +{"7000826": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000827": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000828": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000829": ["3", "3", "2", "3", "2", "3", "2"]} +{"7000830": ["2", "3", "1", "1", "3", "3", "2"]} +{"7000831": ["2", "3", "2", "3", "3", "3", "3"]} +{"7000832": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000833": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000834": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000835": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000836": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000837": ["2", "2", "3", "2", "1", "2", "2"]} +{"7000838": ["2", "3", "3", "3", "1", "3", "2"]} +{"7000839": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000840": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000841": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000842": ["3", "2", "3", "1", "3", "3", "2"]} +{"7000843": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000844": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000845": ["3", "2", "3", "3", "2", "3", "3"]} +{"7000846": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000847": ["2", "1", "3", "2", "3", "2", "2"]} +{"7000848": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000849": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000850": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000851": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000852": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000853": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000854": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000855": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000856": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000857": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000858": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000859": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000860": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000861": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000862": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000863": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000864": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000865": ["3", "3", "2", "2", "3", "3", "3"]} +{"7000866": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000867": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000868": ["3", "3", "3", "3", "1", "2", "3"]} +{"7000869": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000870": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000871": ["2", "3", "3", "2", "1", "2", "3"]} +{"7000872": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000873": ["3", "1", "3", "2", "3", "2", "2"]} +{"7000874": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000875": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000876": ["2", "2", "3", "3", "3", "3", "2"]} +{"7000877": ["3", "3", "2", "2", "3", "3", "2"]} +{"7000878": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000879": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000880": ["2", "2", "3", "3", "3", "3", "3"]} +{"7000881": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000882": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000883": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000884": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000885": ["3", "2", "3", "3", "3", "3", "2"]} +{"7000886": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000887": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000888": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000889": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000890": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000891": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000892": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000893": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000894": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000895": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000896": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000897": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000898": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000899": ["2", "3", "3", "2", "2", "2", "2"]} +{"7000900": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000901": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000902": ["3", "3", "3", "3", "3", "3", "2"]} +{"7000903": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000904": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000905": ["2", "2", "3", "1", "2", "2", "2"]} +{"7000906": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000907": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000908": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000909": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000910": ["3", "2", "2", "3", "3", "3", "3"]} +{"7000911": ["3", "2", "3", "3", "3", "3", "3"]} +{"7000912": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000913": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000914": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000915": ["2", "3", "3", "3", "3", "2", "2"]} +{"7000916": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000916": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000917": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000918": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000919": ["3", "3", "2", "2", "3", "3", "3"]} +{"7000920": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000921": ["3", "3", "3", "2", "3", "2", "3"]} +{"7000922": ["2", "2", "3", "3", "3", "3", "3"]} +{"7000923": ["2", "3", "1", "3", "3", "3", "3"]} +{"7000924": ["3", "2", "3", "2", "2", "None", "3"]} +{"7000924": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000925": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000926": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000927": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000928": ["3", "2", "3", "2", "3", "3", "3"]} +{"7000929": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000930": ["2", "3", "3", "2", "2", "3", "3"]} +{"7000931": ["3", "3", "1", "2", "2", "3", "3"]} +{"7000932": ["2", "2", "3", "3", "3", "2", "2"]} +{"7000933": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000934": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000935": ["3", "3", "2", "2", "2", "3", "3"]} +{"7000936": ["2", "2", "3", "2", "2", "3", "2"]} +{"7000937": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000938": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000939": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000940": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000941": ["3", "3", "3", "2", "3", "3", "2"]} +{"7000942": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000943": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000944": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000945": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000946": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000947": ["3", "3", "2", "3", "3", "3", "3"]} +{"7000948": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000949": ["2", "2", "3", "3", "3", "2", "3"]} +{"7000950": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000951": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000952": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000953": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000954": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000955": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000956": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000957": ["2", "3", "3", "2", "2", "3", "2"]} +{"7000958": ["2", "3", "3", "2", "1", "3", "3"]} +{"7000959": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000960": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000961": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000962": ["3", "2", "3", "2", "3", "3", "2"]} +{"7000963": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000964": ["3", "3", "3", "3", "3", "3", "2"]} +{"7000965": ["2", "2", "3", "2", "3", "3", "2"]} +{"7000966": ["3", "3", "3", "3", "2", "3", "3"]} +{"7000967": ["3", "3", "1", "1", "2", "3", "3"]} +{"7000968": ["2", "3", "3", "3", "3", "3", "3"]} +{"7000969": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000970": ["3", "2", "3", "2", "2", "None", "2"]} +{"7000970": ["3", "2", "3", "2", "2", "3", "2"]} +{"7000971": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000972": ["3", "3", "3", "2", "2", "3", "2"]} +{"7000973": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000974": ["3", "3", "2", "2", "2", "3", "3"]} +{"7000975": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000976": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000976": ["3", "3", "3", "3", "3", "2", "3"]} +{"7000977": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000978": ["3", "3", "3", "3", "2", "2", "3"]} +{"7000979": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000980": ["2", "3", "3", "3", "2", "3", "3"]} +{"7000981": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000982": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000982": ["3", "2", "3", "2", "2", "2", "3"]} +{"7000983": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000984": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000985": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000986": ["3", "3", "3", "2", "2", "3", "3"]} +{"7000987": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000988": ["3", "2", "3", "2", "3", "2", "2"]} +{"7000989": ["2", "3", "3", "2", "3", "3", "3"]} +{"7000990": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000991": ["3", "2", "3", "2", "2", "3", "3"]} +{"7000992": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000993": ["3", "3", "1", "3", "3", "3", "3"]} +{"7000994": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000995": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000996": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000996": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000997": ["3", "3", "3", "2", "3", "2", "2"]} +{"7000998": ["3", "3", "3", "2", "3", "3", "3"]} +{"7000999": ["3", "2", "3", "2", "3", "2", "3"]} +{"7000003": ["3", "3", "3", "3", "2", "3", "2"]} +{"7000004": ["3", "2", "3", "2", "2", "1", "2"]} +{"7000008": ["3", "2", "3", "2", "2", "2", "2"]} +{"7000012": ["2", "1", "3", "2", "3", "1", "2"]} +{"7000014": ["2", "2", "3", "2", "3", "2", "2"]} +{"7000019": ["3", "3", "3", "3", "3", "3", "3"]} +{"7000019": ["3", "3", "3", "3", "3", "2", "2"]} +{"7000023": ["3", "1", "3", "3", "3", "2", "2"]} +{"7000029": ["2", "1", "3", "3", "2", "1", "2"]} +{"7000031": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000035": ["3", "3", "2", "3", "2", "3", "3"]} +{"7000048": ["3", "2", "3", "2", "3", "1", "2"]} +{"7000051": ["2", "3", "3", "3", "3", "2", "3"]} diff --git a/webpage/res/res_current/ans_yuchen.jsonl b/webpage/res/res_current/ans_yuchen.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_zhiheng.jsonl b/webpage/res/res_current/ans_zhiheng.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_current/ans_ziyan.jsonl b/webpage/res/res_current/ans_ziyan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..63c0fa4c475f5949c0962cf77b7882a5084f35d6 --- /dev/null +++ b/webpage/res/res_current/ans_ziyan.jsonl @@ -0,0 +1,1023 @@ +{"0001000": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001001": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001002": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001003": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001004": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001005": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001006": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001007": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001008": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001009": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001010": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001011": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001012": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001013": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001014": ["3", "2", "None", "3", "3", "None", "2"]} +{"0001015": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001016": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001017": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001018": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001019": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001020": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001021": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001022": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001023": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001024": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001025": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001026": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001027": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001028": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001029": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001030": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001031": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001032": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001033": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001034": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001035": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001036": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001037": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001038": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001039": ["2", "3", "None", "2", "1", "None", "2"]} +{"0001040": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001041": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001042": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001043": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001044": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001045": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001046": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001047": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001048": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001049": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001050": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001051": ["3", "2", "None", "3", "3", "None", "3"]} +{"0001052": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001053": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001054": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001055": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001056": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001057": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001058": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001059": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001060": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001061": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001062": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001063": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001064": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001065": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001066": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001067": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001068": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001069": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001070": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001071": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001072": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001073": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001074": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001075": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001076": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001077": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001078": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001079": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001080": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001081": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001082": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001083": ["3", "3", "None", "1", "3", "None", "2"]} +{"0001084": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001085": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001086": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001087": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001088": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001089": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001090": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001091": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001092": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001093": ["3", "2", "None", "3", "2", "None", "2"]} +{"0001094": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001095": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001096": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001097": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001098": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001099": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001100": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001101": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001102": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001103": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001104": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001105": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001106": ["2", "3", "None", "2", "1", "None", "2"]} +{"0001107": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001108": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001109": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001110": ["3", "2", "None", "2", "1", "None", "2"]} +{"0001111": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001112": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001113": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001114": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001115": ["2", "2", "None", "3", "1", "None", "3"]} +{"0001116": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001117": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001118": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001120": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001121": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001122": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001123": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001124": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001125": ["3", "2", "None", "3", "3", "None", "2"]} +{"0001126": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001127": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001128": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001129": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001130": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001131": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001132": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001133": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001134": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001135": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001136": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001137": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001138": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001139": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001140": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001141": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001142": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001143": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001144": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001145": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001146": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001147": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001148": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001149": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001150": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001151": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001152": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001154": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001155": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001156": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001157": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001158": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001159": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001160": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001161": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001162": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001163": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001164": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001165": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001166": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001167": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001168": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001169": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001170": ["3", "3", "None", "2", "3", "None", "2"]} +{"0001171": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001172": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001173": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001174": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001175": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001176": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001177": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001178": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001179": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001180": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001181": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001182": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001183": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001184": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001185": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001186": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001187": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001188": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001189": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001190": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001191": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001192": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001193": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001194": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001195": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001196": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001197": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001198": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001199": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001200": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001201": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001202": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001203": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001204": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001205": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001206": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001207": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001208": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001209": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001210": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001211": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001212": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001213": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001214": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001215": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001216": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001217": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001218": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001219": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001220": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001221": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001222": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001223": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001224": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001225": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001226": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001227": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001228": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001229": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001230": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001231": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001232": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001233": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001234": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001235": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001236": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001237": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001238": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001239": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001240": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001241": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001242": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001243": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001244": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001245": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001246": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001247": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001248": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001249": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001250": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001251": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001252": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001253": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001254": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001255": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001256": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001257": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001258": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001259": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001260": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001261": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001262": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001263": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001264": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001265": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001266": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001267": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001268": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001269": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001270": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001271": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001272": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001273": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001274": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001275": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001276": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001277": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001278": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001279": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001280": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001281": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001282": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001283": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001284": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001285": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001286": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001287": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001288": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001289": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001290": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001291": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001292": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001293": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001294": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001295": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001296": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001297": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001298": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001299": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001300": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001301": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001302": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001303": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001304": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001305": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001306": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001307": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001308": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001309": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001310": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001311": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001312": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001313": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001314": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001315": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001316": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001317": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001318": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001319": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001320": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001321": ["2", "3", "None", "2", "1", "None", "2"]} +{"0001322": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001323": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001324": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001325": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001326": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001327": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001328": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001329": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001330": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001331": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001332": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001333": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001334": ["3", "2", "None", "2", "3", "None", "3"]} +{"0001335": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001336": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001337": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001338": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001339": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001340": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001341": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001342": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001343": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001344": ["2", "2", "None", "2", "2", "None", "2"]} +{"0001345": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001346": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001347": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001348": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001349": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001350": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001351": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001352": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001353": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001354": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001355": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001356": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001357": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001358": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001359": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001360": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001361": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001362": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001363": ["2", "2", "None", "2", "1", "None", "2"]} +{"0001364": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001365": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001366": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001367": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001368": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001369": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001370": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001371": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001372": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001373": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001374": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001375": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001376": ["2", "2", "None", "2", "3", "None", "2"]} +{"0001377": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001378": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001379": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001380": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001381": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001382": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001383": ["2", "2", "None", "1", "3", "None", "2"]} +{"0001384": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001385": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001386": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001387": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001388": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001389": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001390": ["3", "2", "None", "3", "3", "None", "3"]} +{"0001391": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001392": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001393": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001394": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001395": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001396": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001397": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001398": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001399": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001400": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001401": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001402": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001403": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001404": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001405": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001406": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001407": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001408": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001409": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001410": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001411": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001412": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001414": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001415": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001416": ["3", "3", "None", "3", "1", "None", "2"]} +{"0001417": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001418": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001419": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001420": ["1", "3", "None", "3", "3", "None", "3"]} +{"0001421": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001422": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001423": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001424": ["2", "3", "None", "3", "3", "None", "2"]} +{"0001425": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001426": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001427": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001428": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001429": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001430": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001431": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001432": ["3", "2", "None", "3", "3", "None", "3"]} +{"0001433": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001434": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001435": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001436": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001437": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001438": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001439": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001440": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001441": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001442": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001443": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001444": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001445": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001446": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001447": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001448": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001449": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001450": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001451": ["3", "2", "None", "2", "2", "None", "2"]} +{"0001452": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001453": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001454": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001455": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001456": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001457": ["2", "3", "None", "2", "2", "None", "2"]} +{"0001458": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001459": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001460": ["2", "2", "None", "3", "3", "None", "3"]} +{"0001461": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001462": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001463": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001464": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001465": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001466": ["2", "3", "None", "3", "1", "None", "3"]} +{"0001467": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001468": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001469": ["3", "3", "None", "1", "3", "None", "2"]} +{"0001470": ["3", "3", "None", "2", "3", "None", "3"]} +{"0001471": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001472": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001473": ["2", "2", "None", "3", "3", "None", "2"]} +{"0001474": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001475": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001476": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001477": ["2", "3", "None", "3", "2", "None", "3"]} +{"0001478": ["2", "2", "None", "3", "1", "None", "2"]} +{"0001479": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001481": ["3", "3", "None", "3", "1", "None", "3"]} +{"0001482": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001483": ["2", "3", "None", "3", "1", "None", "2"]} +{"0001484": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001485": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001486": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001487": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001488": ["3", "3", "None", "3", "3", "None", "2"]} +{"0001489": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001490": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001491": ["3", "3", "None", "3", "2", "None", "2"]} +{"0001492": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001493": ["2", "3", "None", "3", "2", "None", "2"]} +{"0001494": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001495": ["3", "3", "None", "3", "2", "None", "3"]} +{"0001496": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001497": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001498": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001499": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001000": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001001": ["3", "2", "2", "2", "3", "3", "2"]} +{"0001002": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001003": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001004": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001005": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001006": ["3", "2", "3", "2", "2", "1", "2"]} +{"0001007": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001008": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001009": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001010": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001011": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001012": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001013": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001014": ["3", "2", "3", "3", "3", "3", "2"]} +{"0001015": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001016": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001017": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001018": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001019": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001020": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001021": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001022": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001023": ["2", "3", "3", "3", "1", "3", "2"]} +{"0001024": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001025": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001026": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001027": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001028": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001029": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001030": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001031": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001032": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001033": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001034": ["2", "3", "2", "3", "3", "3", "2"]} +{"0001035": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001036": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001037": ["3", "2", "3", "2", "2", "3", "2"]} +{"0001038": ["3", "2", "3", "2", "2", "2", "2"]} +{"0001039": ["2", "3", "3", "2", "1", "3", "2"]} +{"0001040": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001041": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001042": ["3", "2", "3", "2", "3", "2", "2"]} +{"0001043": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001044": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001045": ["3", "3", "3", "3", "2", "3", "2"]} +{"0001046": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001047": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001048": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001049": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001050": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001051": ["3", "2", "3", "3", "3", "3", "3"]} +{"0001052": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001053": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001054": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001055": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001056": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001057": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001058": ["3", "3", "None", "3", "3", "None", "3"]} +{"0001000": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001057": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001058": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001059": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001060": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001061": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001062": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001063": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001064": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001065": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001066": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001067": ["3", "2", "3", "2", "3", "3", "3"]} +{"0001068": ["3", "3", "None", "3", "3", "3", "3"]} +{"0001069": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001070": ["2", "2", "3", "3", "3", "3", "3"]} +{"0001071": ["3", "2", "None", "2", "3", "None", "2"]} +{"0001072": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001068": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001069": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001070": ["2", "2", "3", "3", "3", "3", "3"]} +{"0001071": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001072": ["None", "None", "None", "None", "None", "None", "None"]} +{"0001073": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001072": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001073": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001074": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001075": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001076": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001077": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001078": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001079": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001080": ["2", "2", "3", "2", "1", "3", "2"]} +{"0001081": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001082": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001083": ["3", "3", "1", "1", "3", "3", "2"]} +{"0001084": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001085": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001086": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001087": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001088": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001089": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001090": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001091": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001092": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001093": ["3", "2", "3", "3", "2", "3", "2"]} +{"0001094": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001095": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001096": ["2", "2", "3", "3", "1", "3", "2"]} +{"0001097": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001098": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001099": ["3", "3", "3", "2", "3", "3", "2"]} +{"0001100": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001101": ["3", "3", "3", "2", "3", "3", "3"]} +{"0001102": ["3", "2", "3", "2", "2", "3", "2"]} +{"0001103": ["3", "3", "3", "2", "3", "2", "2"]} +{"0001104": ["2", "3", "3", "3", "3", "3", "2"]} +{"0001105": ["2", "3", "2", "3", "2", "3", "3"]} +{"0001106": ["2", "3", "3", "2", "1", "3", "2"]} +{"0001107": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001108": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001109": ["3", "3", "3", "2", "3", "3", "3"]} +{"0001110": ["3", "2", "3", "2", "1", "2", "2"]} +{"0001111": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001112": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001113": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001114": ["2", "2", "3", "3", "1", "3", "2"]} +{"0001115": ["2", "2", "3", "3", "1", "3", "3"]} +{"0001116": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001117": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001118": ["3", "2", "3", "2", "3", "2", "2"]} +{"0001119": ["None", "None", "None", "3", "None", "3", "None"]} +{"0001120": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001121": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001122": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001123": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001124": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001125": ["3", "2", "3", "3", "3", "2", "2"]} +{"0001126": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001127": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001128": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001129": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001130": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001131": ["3", "3", "1", "2", "3", "3", "3"]} +{"0001132": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001133": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001134": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001119": ["3", "3", "3", "3", "2", "3", "2"]} +{"0001135": ["3", "3", "3", "3", "3", "2", "2"]} +{"0001136": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001137": ["3", "2", "3", "2", "2", "3", "2"]} +{"0001138": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001139": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001140": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001141": ["3", "3", "1", "2", "3", "3", "3"]} +{"0001142": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001143": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001144": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001145": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001146": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001147": ["3", "3", "2", "3", "3", "3", "2"]} +{"0001148": ["2", "3", "2", "3", "3", "3", "2"]} +{"0001149": ["3", "2", "3", "2", "3", "2", "2"]} +{"0001150": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001151": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001152": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001153": ["3", "3", "3", "3", "2", "3", "2"]} +{"0001154": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001155": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001156": ["2", "3", "3", "3", "3", "2", "3"]} +{"0001157": ["3", "3", "3", "2", "3", "3", "2"]} +{"0001158": ["3", "3", "3", "2", "3", "3", "2"]} +{"0001159": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001160": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001161": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001162": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001163": ["3", "2", "3", "2", "3", "2", "3"]} +{"0001164": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001165": ["3", "3", "2", "2", "3", "3", "3"]} +{"0001166": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001167": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001168": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001169": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001170": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001171": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001172": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001173": ["3", "3", "3", "2", "3", "2", "3"]} +{"0001174": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001175": ["3", "2", "3", "2", "3", "2", "2"]} +{"0001176": ["3", "3", "3", "3", "2", "3", "2"]} +{"0001177": ["3", "3", "None", "3", "2", "3", "2"]} +{"0001178": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001177": ["3", "3", "3", "3", "2", "3", "2"]} +{"0001179": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001180": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001181": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001182": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001183": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001184": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001185": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001186": ["2", "3", "None", "3", "3", "None", "3"]} +{"0001186": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001187": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001188": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001189": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001190": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001191": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001192": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001193": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001194": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001195": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001196": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001197": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001198": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001199": ["3", "3", "2", "3", "1", "3", "2"]} +{"0001200": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001201": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001202": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001203": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001204": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001205": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001206": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001207": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001208": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001209": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001210": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001211": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001212": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001213": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001214": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001215": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001216": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001217": ["3", "2", "3", "2", "3", "2", "2"]} +{"0001218": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001219": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001220": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001221": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001222": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001223": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001224": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001225": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001226": ["3", "3", "2", "2", "3", "3", "3"]} +{"0001227": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001228": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001229": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001230": ["2", "3", "3", "3", "1", "3", "2"]} +{"0001231": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001232": ["3", "3", "3", "3", "2", "2", "3"]} +{"0001233": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001234": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001235": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001236": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001237": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001238": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001239": ["2", "3", "3", "3", "3", "1", "2"]} +{"0001240": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001241": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001242": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001243": ["2", "2", "3", "2", "3", "1", "2"]} +{"0001244": ["2", "3", "3", "2", "2", "2", "2"]} +{"0001245": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001246": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001247": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001248": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001249": ["3", "3", "3", "3", "1", "2", "3"]} +{"0001250": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001251": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001252": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001253": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001254": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001255": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001256": ["3", "3", "3", "3", "1", "2", "3"]} +{"0001257": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001258": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001259": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001260": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001261": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001262": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001263": ["3", "2", "3", "2", "3", "3", "3"]} +{"0001264": ["2", "3", "1", "3", "3", "3", "3"]} +{"0001265": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001266": ["2", "3", "2", "3", "3", "3", "2"]} +{"0001267": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001268": ["2", "3", "2", "3", "1", "None", "2"]} +{"0001269": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001270": ["3", "3", "3", "3", "2", "2", "3"]} +{"0001271": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001272": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001268": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001273": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001274": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001275": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001276": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001277": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001278": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001279": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001280": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001281": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001282": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001283": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001284": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001285": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001286": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001287": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001288": ["2", "2", "3", "2", "3", "3", "2"]} +{"0001289": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001290": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001291": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001292": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001293": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001294": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001295": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001296": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001297": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001298": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001299": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001300": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001301": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001302": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001303": ["2", "3", "1", "3", "3", "3", "3"]} +{"0001304": ["2", "3", "3", "3", "1", "3", "2"]} +{"0001305": ["3", "3", "3", "3", "2", "2", "3"]} +{"0001306": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001307": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001308": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001309": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001310": ["2", "3", "1", "3", "3", "3", "3"]} +{"0001311": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001312": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001313": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001314": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001315": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001316": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001317": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001318": ["2", "2", "3", "2", "1", "3", "2"]} +{"0001319": ["3", "3", "None", "3", "3", "3", "3"]} +{"0001320": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001321": ["2", "3", "3", "2", "1", "2", "2"]} +{"0001322": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001323": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001324": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001325": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001319": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001326": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001327": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001328": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001329": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001330": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001331": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001332": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001333": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001334": ["3", "2", "3", "2", "3", "2", "3"]} +{"0001335": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001336": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001337": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001338": ["3", "3", "1", "3", "2", "3", "2"]} +{"0001339": ["2", "3", "1", "3", "2", "3", "2"]} +{"0001340": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001341": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001342": ["2", "2", "3", "3", "3", "3", "3"]} +{"0001343": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001344": ["2", "2", "3", "2", "2", "3", "2"]} +{"0001345": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001346": ["3", "3", "2", "3", "3", "3", "2"]} +{"0001347": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001348": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001349": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001350": ["2", "2", "3", "3", "1", "2", "2"]} +{"0001351": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001352": ["3", "3", "1", "3", "2", "3", "3"]} +{"0001353": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001354": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001355": ["2", "3", "1", "3", "2", "3", "2"]} +{"0001356": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001357": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001358": ["3", "3", "1", "3", "2", "3", "2"]} +{"0001359": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001360": ["3", "3", "1", "3", "3", "3", "2"]} +{"0001361": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001362": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001363": ["2", "2", "3", "2", "1", "3", "2"]} +{"0001364": ["2", "3", "3", "2", "2", "3", "2"]} +{"0001365": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001366": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001367": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001368": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001369": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001370": ["3", "3", "3", "3", "3", "1", "3"]} +{"0001371": ["2", "3", "1", "3", "2", "3", "2"]} +{"0001372": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001373": ["3", "3", "3", "3", "2", "2", "3"]} +{"0001374": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001375": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001376": ["2", "2", "3", "2", "3", "2", "2"]} +{"0001377": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001378": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001379": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001380": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001381": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001382": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001383": ["2", "2", "3", "1", "3", "1", "2"]} +{"0001384": ["2", "3", "3", "3", "3", "2", "3"]} +{"0001385": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001386": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001387": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001388": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001389": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001390": ["3", "2", "3", "3", "3", "3", "3"]} +{"0001391": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001392": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001393": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001394": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001395": ["3", "3", "1", "2", "3", "3", "3"]} +{"0001396": ["3", "3", "3", "3", "3", "None", "3"]} +{"0001397": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001398": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001399": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001400": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001401": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001396": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001397": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001402": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001403": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001404": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001405": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001406": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001407": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001408": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001409": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001410": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001411": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001412": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001413": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001414": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001415": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001416": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001417": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001418": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001419": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001420": ["1", "1", "3", "1", "3", "None", "3"]} +{"0001421": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001422": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001420": ["1", "1", "3", "1", "3", "1", "3"]} +{"0001423": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001424": ["2", "3", "3", "3", "3", "3", "2"]} +{"0001425": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001426": ["3", "3", "3", "3", "2", "2", "3"]} +{"0001427": ["3", "3", "3", "3", "2", "3", "3"]} +{"0001428": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001429": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001430": ["2", "3", "3", "3", "3", "None", "3"]} +{"0001431": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001432": ["3", "2", "3", "3", "3", "3", "3"]} +{"0001433": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001430": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001434": ["3", "2", "3", "2", "2", "2", "2"]} +{"0001435": ["3", "3", "2", "3", "3", "3", "2"]} +{"0001436": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001437": ["3", "3", "None", "1", "3", "None", "3"]} +{"0001437": ["3", "3", "1", "1", "3", "3", "3"]} +{"0001438": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001439": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001440": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001441": ["3", "3", "2", "3", "3", "2", "3"]} +{"0001442": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001443": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001444": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001445": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001446": ["3", "3", "3", "3", "2", "1", "2"]} +{"0001447": ["3", "3", "2", "3", "3", "3", "2"]} +{"0001448": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001449": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001450": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001451": ["3", "2", "3", "2", "2", "3", "2"]} +{"0001452": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001453": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001454": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001455": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001456": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001457": ["2", "3", "3", "2", "2", "2", "2"]} +{"0001458": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001459": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001460": ["2", "2", "3", "3", "3", "3", "3"]} +{"0001461": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001462": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001463": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001464": ["2", "2", "3", "3", "1", "3", "2"]} +{"0001465": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001466": ["2", "3", "3", "3", "1", "3", "3"]} +{"0001467": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001468": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001469": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001470": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001471": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001472": ["2", "3", "3", "3", "1", "3", "2"]} +{"0001473": ["2", "2", "3", "3", "3", "3", "2"]} +{"0001474": ["2", "3", "2", "3", "1", "3", "2"]} +{"0001475": ["3", "3", "2", "3", "1", "3", "3"]} +{"0001476": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001477": ["2", "3", "None", "3", "2", "3", "3"]} +{"0001478": ["2", "2", "3", "3", "1", "3", "2"]} +{"0001479": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001477": ["2", "3", "3", "3", "2", "3", "3"]} +{"0001480": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001481": ["3", "3", "1", "3", "1", "3", "3"]} +{"0001482": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001483": ["2", "3", "1", "3", "1", "3", "2"]} +{"0001484": ["2", "3", "3", "3", "2", "3", "2"]} +{"0001485": ["3", "3", "3", "3", "1", "3", "3"]} +{"0001486": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001487": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001488": ["3", "3", "3", "3", "3", "3", "2"]} +{"0001489": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0001490": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001491": ["3", "3", "1", "3", "2", "3", "2"]} +{"0001492": ["3", "3", "1", "3", "3", "3", "3"]} +{"0001493": ["2", "3", "2", "3", "2", "3", "2"]} +{"0001494": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001495": ["3", "3", "2", "3", "2", "3", "3"]} +{"0001496": ["2", "3", "3", "3", "3", "3", "3"]} +{"0001497": ["3", "3", "3", "3", "3", "3", "3"]} +{"0001498": ["3", "2", "3", "2", "3", "3", "2"]} +{"0001499": ["2", "3", "2", "3", "3", "3", "3"]} +{"0001021": ["3", "3", "3", "3", "1", "3", "2"]} +{"0001033": ["3", "3", "2", "3", "3", "3", "3"]} +{"0001035": ["3", "3", "3", "3", "3", "2", "3"]} +{"0001038": ["3", "1", "3", "2", "2", "2", "2"]} +{"0001039": ["2", "3", "3", "2", "1", "2", "2"]} +{"0001043": ["3", "3", "3", "3", "3", "2", "3"]} diff --git a/webpage/res/res_pika1/ans_123_2024-03-21-08_30_44.jsonl b/webpage/res/res_pika1/ans_123_2024-03-21-08_30_44.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e0b04455ae742b023d63742248f2a346462084b8 --- /dev/null +++ b/webpage/res/res_pika1/ans_123_2024-03-21-08_30_44.jsonl @@ -0,0 +1,24 @@ +{"0029": ["5", "5", "5", "2", "5", "5"]} +{"0028": ["5", "5", "5", "4", "1", "4"]} +{"0030": ["5", "5", "5", "5", "2", "4"]} +{"0017": ["5", "5", "5", "5", "5", "3"]} +{"0015": ["5", "5", "2", "2", "5", "4"]} +{"0025": ["5", "5", "4", "5", "1", "5"]} +{"0005": ["5", "5", "5", "5", "5", "5"]} +{"0021": ["5", "4", "5", "5", "2", "4"]} +{"0050": ["5", "5", "1", "5", "5", "1"]} +{"0039": ["2", "5", "5", "5", "3", "4"]} +{"0032": ["5", "5", "5", "1", "4", "5"]} +{"0053": ["5", "5", "5", "5", "5", "5"]} +{"0057": ["5", "5", "5", "5", "5", "5"]} +{"0059": ["5", "5", "4", "1", "1", "1"]} +{"0041": ["5", "5", "5", "5", "3", "3"]} +{"0052": ["5", "5", "5", "3", "5", "4"]} +{"0084": ["5", "3", "2", "5", "2", "1"]} +{"0073": ["5", "5", "4", "5", "5", "5"]} +{"0064": ["5", "5", "4", "5", "2", "5"]} +{"0069": ["5", "5", "1", "3", "2", "5"]} +{"0065": ["1", "5", "1", "4", "1", "1"]} +{"0066": ["5", "5", "1", "5", "5", "5"]} +{"0070": ["5", "5", "5", "1", "4", "4"]} +{"0072": ["2", "2", "1", "5", "5", "2"]} diff --git a/webpage/res/res_pika1/ans_hexuan21_2024-03-21-00_33_02.jsonl b/webpage/res/res_pika1/ans_hexuan21_2024-03-21-00_33_02.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3549c5db8d223ace6b0e1fa860930f0e348ac151 --- /dev/null +++ b/webpage/res/res_pika1/ans_hexuan21_2024-03-21-00_33_02.jsonl @@ -0,0 +1,26 @@ +{"0029": ["5", "4", "5", "5", "5", "5"]} +{"0028": ["5", "5", "5", "5", "4", "5"]} +{"0030": ["5", "5", "4", "4", "2", "4"]} +{"0017": ["5", "5", "2", "5", "5", "4"]} +{"0015": ["5", "5", "5", "5", "5", "5"]} +{"0025": ["5", "5", "4", "1", "5", "2"]} +{"0005": ["5", "5", "4", "4", "5", "5"]} +{"0021": ["5", "4", "5", "5", "5", "5"]} +{"0050": ["5", "5", "4", "1", "5", "4"]} +{"0039": ["5", null, null, null, null, null]} +{"0039": ["5", "5", "5", "5", "5", "5"]} +{"0032": ["5", "5", "5", "2", "5", "4"]} +{"0053": ["2", "5", "5", "3", "3", "3"]} +{"0057": ["5", "5", "5", "5", "5", "5"]} +{"0059": ["5", "5", "4", "2", "1", "2"]} +{"0041": ["5", "5", "4", "2", "5", "4"]} +{"0052": ["5", "5", "5", "5", "5", "5"]} +{"0084": ["5", "5", "4", "5", "2", "4"]} +{"0073": ["5", "5", "4", "2", "5", "4"]} +{"0064": ["5", "5", "5", "2", "1", "4"]} +{"0069": ["5", "5", "5", "5", "5", "5"]} +{"0065": ["1", "5", "1", "1", "1", "1"]} +{"0066": ["5", "5", "2", "5", "2", "4"]} +{"0070": ["5", "5", "4", "5", "2", "4"]} +{"0072": ["2", "1", "2", "5", "4", "2"]} +{"0028": ["-1", "-1", "-1", "-1", "-1", "-1"]} diff --git a/webpage/res/res_pika1/ans_hhhfffccc_2024-03-21-09_52_18.jsonl b/webpage/res/res_pika1/ans_hhhfffccc_2024-03-21-09_52_18.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e57fbbbe3f8fb8c2ecd2a14fc9f53c5f943b5990 --- /dev/null +++ b/webpage/res/res_pika1/ans_hhhfffccc_2024-03-21-09_52_18.jsonl @@ -0,0 +1,24 @@ +{"0029": ["5", "2", "3", "3", "2", "3"]} +{"0028": ["4", "3", "4", "4", "2", "4"]} +{"0030": ["4", "4", "3", "3", "2", "3"]} +{"0017": ["2", "2", "2", "2", "1", "1"]} +{"0015": ["4", "4", "4", "4", "4", "5"]} +{"0025": ["4", "4", "4", "4", "4", "4"]} +{"0005": ["4", "4", "4", "4", "4", "5"]} +{"0021": ["4", "2", "3", "4", "3", "3"]} +{"0050": ["4", "3", "3", "3", "2", "3"]} +{"0039": ["4", "3", "3", "3", "3", "3"]} +{"0032": ["4", "4", "5", "4", "4", "5"]} +{"0053": ["3", "4", "4", "4", "4", "4"]} +{"0057": ["4", "4", "4", "3", "3", "3"]} +{"0059": ["4", "2", "2", "2", "2", "3"]} +{"0041": ["3", "4", "4", "4", "3", "4"]} +{"0052": ["4", "4", "4", "3", "4", "4"]} +{"0084": ["4", "4", "4", "4", "2", "4"]} +{"0073": ["4", "4", "4", "4", "4", "4"]} +{"0064": ["5", "4", "5", "4", "2", "4"]} +{"0069": ["4", "4", "4", "4", "3", "4"]} +{"0065": ["3", "2", "2", "2", "1", "2"]} +{"0066": ["4", "3", "2", "3", "3", "3"]} +{"0070": ["3", "3", "3", "3", "2", "2"]} +{"0072": ["3", "3", "3", "4", "3", "3"]} diff --git a/webpage/res/res_pika1/ans_joey_2024-03-21-07_33_52.jsonl b/webpage/res/res_pika1/ans_joey_2024-03-21-07_33_52.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..91ba435d7ec6e955e904f516017e21522c8e02de --- /dev/null +++ b/webpage/res/res_pika1/ans_joey_2024-03-21-07_33_52.jsonl @@ -0,0 +1,24 @@ +{"0029": ["5", "5", "3", "5", "3", "4"]} +{"0028": ["5", "5", "5", "1", "1", "2"]} +{"0030": ["5", "5", "4", "1", "2", "3"]} +{"0017": ["5", "5", "5", "4", "5", "5"]} +{"0015": ["5", "5", "2", "1", "2", "2"]} +{"0025": ["5", "5", "4", "3", "5", "4"]} +{"0005": ["5", "5", "4", "1", "5", "3"]} +{"0021": ["5", "5", "5", "5", "5", "5"]} +{"0050": ["5", "2", "1", "2", "2", "2"]} +{"0039": ["5", "5", "4", "3", "3", "4"]} +{"0032": ["5", "5", "4", "2", "4", "4"]} +{"0053": ["5", "3", "3", "2", "5", "5"]} +{"0057": ["5", "5", "4", "5", "5", "5"]} +{"0059": ["5", "5", "4", "4", "2", "3"]} +{"0041": ["5", "5", "4", "3", "5", "3"]} +{"0052": ["5", "5", "4", "5", "5", "5"]} +{"0084": ["5", "3", "2", "5", "1", "2"]} +{"0073": ["5", "5", "1", "2", "3", "1"]} +{"0064": ["5", "5", "4", "3", "1", "3"]} +{"0069": ["5", "5", "1", "2", "2", "2"]} +{"0065": ["1", "5", "1", "4", "1", "1"]} +{"0066": ["5", "5", "1", "1", "1", "1"]} +{"0070": ["5", "5", "2", "3", "2", "3"]} +{"0072": ["3", "2", "2", "5", "2", "1"]} diff --git a/webpage/res/res_pika1/ans_q_2024-03-20-21_05_35.jsonl b/webpage/res/res_pika1/ans_q_2024-03-20-21_05_35.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_pika1/ans_zhang-hr_2024-03-21-00_30_42.jsonl b/webpage/res/res_pika1/ans_zhang-hr_2024-03-21-00_30_42.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1824f6072402ea8c2f164ea87c90cd0221523971 --- /dev/null +++ b/webpage/res/res_pika1/ans_zhang-hr_2024-03-21-00_30_42.jsonl @@ -0,0 +1,24 @@ +{"0029": ["3", "4", "4", "4", "4", "4"]} +{"0028": ["2", "1", "3", "4", "3", "3"]} +{"0030": ["1", "4", "4", "4", "3", "3"]} +{"0017": ["2", "2", "2", "3", "3", "2"]} +{"0015": ["5", "4", "5", "4", "4", "5"]} +{"0025": ["3", "3", "1", "3", "4", "2"]} +{"0005": ["4", "4", "1", "3", "3", "3"]} +{"0021": ["4", "3", "3", "4", "1", "3"]} +{"0050": ["2", "2", "2", "3", "2", "2"]} +{"0039": ["5", "4", "4", "4", "5", "5"]} +{"0032": ["4", "4", "4", "4", "4", "4"]} +{"0053": ["2", "3", "2", "3", "3", "2"]} +{"0057": ["5", "4", "4", "4", "5", "5"]} +{"0059": ["1", "4", "1", "3", "2", "1"]} +{"0041": ["2", "3", "1", "3", "3", "2"]} +{"0052": ["4", "3", "1", "3", "3", "3"]} +{"0084": ["2", "1", "3", "3", "2", "2"]} +{"0073": ["4", "3", "2", "3", "4", "3"]} +{"0064": ["4", "4", "4", "4", "4", "4"]} +{"0069": ["5", "3", "1", "3", "3", "3"]} +{"0065": ["2", "3", "1", "2", "2", "1"]} +{"0066": ["4", "3", "1", "3", "4", "2"]} +{"0070": ["4", "4", "2", "3", "4", "3"]} +{"0072": ["1", "1", "1", "2", "3", "1"]} diff --git a/webpage/res/res_rd1_16k/ans_aaran.jsonl b/webpage/res/res_rd1_16k/ans_aaran.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..13258e3f74e9031f065c8e9e93c17650a458dff0 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_aaran.jsonl @@ -0,0 +1,1156 @@ +{"3006683": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001506": ["1", "2", "3", "1", "2", "1", "1"]} +{"8003591": ["1", "1", "3", "2", "1", "3", "1"]} +{"1003611": ["1", "1", "3", "1", "1", "3", "1"]} +{"2004819": ["2", "3", "2", "3", "2", "3", "2"]} +{"3006323": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004475": ["3", "3", "2", "3", "1", "3", "1"]} +{"6002283": ["1", "1", "3", "1", "2", "1", "1"]} +{"7003278": ["3", "1", "3", "3", "1", "1", "1"]} +{"7003278": ["3", "1", "3", "3", "1", "1", "1"]} +{"7003278": ["3", "1", "3", "3", "1", "1", "1"]} +{"2004723": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004496": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006421": ["3", "3", "1", "3", "2", "3", "2"]} +{"2005200": ["1", "3", "1", "3", "2", "3", "1"]} +{"3004680": ["3", "2", "3", "3", "1", "1", "1"]} +{"5001689": ["3", "3", "2", "3", "3", "3", "2"]} +{"6002231": ["2", "1", "None", "1", "1", "1", "1"]} +{"8003267": ["2", "1", "3", "1", "1", "1", "1"]} +{"2006609": ["3", "3", "3", "3", "1", "3", "1"]} +{"0004399": ["3", "3", "1", "3", "1", "3", "1"]} +{"8002410": ["2", "1", "3", "3", "1", "1", "1"]} +{"4002798": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001649": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004212": ["3", "3", "3", "2", "3", "3", "2"]} +{"2006199": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004156": ["1", "1", "3", "1", "1", "3", "1"]} +{"0005554": ["3", "3", "3", "3", "1", "3", "2"]} +{"5001820": ["3", "2", "3", "3", "1", "3", "2"]} +{"5001820": ["3", "2", "3", "3", "1", "3", "1"]} +{"5001513": ["1", "3", "3", "2", "1", "3", "1"]} +{"2003854": ["3", "3", "2", "3", "3", "2", "3"]} +{"8003389": ["2", "1", "3", "3", "3", "3", "2"]} +{"1003943": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003943": ["1", "1", "3", "1", "1", "3", "1"]} +{"4004388": ["3", "3", "3", "3", "1", "3", "2"]} +{"2003007": ["2", "3", "3", "1", "3", "1", "1"]} +{"1006027": ["3", "1", "2", "1", "2", "1", "2"]} +{"3003801": ["2", "3", "1", "3", "1", "1", "1"]} +{"1005364": ["2", "1", "None", "1", "2", "2", "2"]} +{"1005364": ["2", "1", "None", "1", "2", "2", "2"]} +{"1006111": ["2", "1", "3", "1", "1", "3", "1"]} +{"7003960": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006017": ["3", "3", "1", "3", "1", "2", "1"]} +{"5001736": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003357": ["2", "1", "3", "1", "1", "1", "1"]} +{"6002965": ["2", "2", "3", "3", "2", "3", "1"]} +{"8001573": ["1", "1", "3", "3", "1", "1", "1"]} +{"3005376": ["3", "3", "2", "3", "1", "3", "1"]} +{"7004464": ["3", "3", "3", "3", "1", "3", "2"]} +{"8003175": ["1", "1", "3", "1", "3", "1", "1"]} +{"7003496": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005863": ["3", "3", "3", "1", "3", "3", "2"]} +{"2003464": ["2", "3", "2", "2", "3", "3", "2"]} +{"6003502": ["3", "1", "3", "1", "1", "3", "1"]} +{"2005477": ["3", "3", "3", "3", "1", "1", "2"]} +{"2005477": ["3", "3", "3", "3", "2", "1", "2"]} +{"4004799": ["2", "3", "1", "3", "3", "3", "1"]} +{"0005416": ["3", "3", "1", "3", "1", "3", "1"]} +{"2007831": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004265": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004408": ["3", "3", "2", "3", "3", "3", "2"]} +{"2004497": ["1", "3", "1", "3", "1", "3", "1"]} +{"1005972": ["1", "1", "3", "1", "1", "3", "1"]} +{"3004512": ["2", "2", "3", "2", "2", "1", "2"]} +{"7004525": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006391": ["2", "3", "2", "2", "1", "1", "1"]} +{"1006493": ["1", "1", "3", "3", "1", "3", "1"]} +{"0005528": ["3", "3", "3", "1", "3", "3", "2"]} +{"7003369": ["3", "1", "3", "1", "3", "3", "1"]} +{"3003510": ["3", "3", "3", "2", "1", "3", "1"]} +{"4002288": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005369": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006901": ["1", "3", "3", "2", "2", "3", "2"]} +{"3006469": ["3", "3", "1", "3", "2", "1", "1"]} +{"0004093": ["3", "3", "3", "2", "3", "3", "2"]} +{"0004093": ["3", "3", "3", "2", "3", "3", "2"]} +{"0004776": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004773": ["2", "1", "3", "1", "3", "3", "1"]} +{"0005390": ["3", "3", "1", "3", "2", "3", "1"]} +{"6004217": ["1", "1", "3", "1", "1", "3", "3"]} +{"1003538": ["1", "1", "3", "1", "1", "3", "1"]} +{"1004187": ["2", "1", "3", "1", "1", "3", "1"]} +{"8001271": ["1", "3", "3", "1", "3", "1", "1"]} +{"2005873": ["3", "3", "2", "2", "1", "1", "1"]} +{"3003097": ["1", "3", "2", "3", "1", "3", "1"]} +{"1003334": ["1", "1", "3", "1", "None", "2", "1"]} +{"2004074": ["3", "3", "1", "3", "2", "3", "1"]} +{"0003769": ["3", "3", "2", "3", "1", "1", "1"]} +{"0003440": ["3", "3", "3", "2", "1", "3", "1"]} +{"2006553": ["3", "3", "3", "3", "1", "1", "1"]} +{"6003948": ["2", "3", "2", "3", "3", "3", "2"]} +{"4004852": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002686": ["3", "2", "2", "2", "3", "3", "2"]} +{"3006457": ["3", "3", "2", "3", "1", "3", "1"]} +{"0006684": ["3", "3", "3", "3", "1", "1", "1"]} +{"6003168": ["1", "3", "3", "2", "1", "1", "1"]} +{"7004184": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004625": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001519": ["2", "3", "3", "3", "1", "3", "1"]} +{"4002705": ["3", "3", "3", "2", "3", "3", "2"]} +{"3004627": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007306": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003125": ["1", "3", "3", "1", "2", "3", "2"]} +{"7002963": ["3", "3", "2", "3", "1", "1", "1"]} +{"7002963": ["3", "3", "2", "3", "2", "1", "1"]} +{"2005465": ["3", "3", "2", "2", "3", "3", "2"]} +{"2007492": ["3", "3", "3", "3", "1", "1", "1"]} +{"5001181": ["3", "2", "2", "3", "1", "1", "1"]} +{"6003109": ["2", "3", "3", "1", "2", "2", "2"]} +{"6003109": ["2", "3", "3", "1", "2", "2", "1"]} +{"1003406": ["2", "1", "3", "1", "3", "3", "1"]} +{"0005916": ["3", "3", "3", "2", "1", "1", "1"]} +{"2003825": ["3", "3", "3", "2", "1", "1", "2"]} +{"4003605": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005415": ["3", "3", "3", "2", "2", "2", "2"]} +{"6002460": ["1", "3", "3", "1", "3", "3", "1"]} +{"7004061": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004808": ["3", "3", "3", "2", "3", "3", "2"]} +{"2004468": ["3", "3", "2", "2", "3", "1", "1"]} +{"3003957": ["2", "3", "3", "2", "3", "3", "2"]} +{"2006359": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002185": ["3", "3", "1", "3", "1", "3", "1"]} +{"3005108": ["3", "3", "3", "2", "1", "3", "1"]} +{"6002486": ["1", "2", "3", "2", "1", "1", "1"]} +{"6002486": ["1", "2", "3", "2", "1", "2", "1"]} +{"8002982": ["2", "3", "3", "1", "2", "2", "2"]} +{"1005115": ["3", "1", "3", "1", "1", "3", "1"]} +{"2007459": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004153": ["2", "3", "3", "2", "1", "3", "1"]} +{"0005254": ["3", "3", "3", "3", "1", "2", "1"]} +{"1006524": ["2", "3", "3", "1", "3", "1", "1"]} +{"1006524": ["2", "3", "3", "1", "3", "1", "1"]} +{"0005146": ["3", "3", "3", "3", "1", "3", "1"]} +{"6003285": ["3", "1", "3", "1", "2", "3", "1"]} +{"8002236": ["2", "3", "3", "1", "1", "1", "1"]} +{"7002862": ["3", "3", "3", "2", "3", "3", "2"]} +{"7002862": ["3", "3", "3", "2", "2", "3", "2"]} +{"0004743": ["3", "3", "2", "2", "2", "1", "1"]} +{"2006617": ["3", "2", "2", "3", "1", "1", "1"]} +{"4003552": ["3", "3", "3", "2", "3", "1", "1"]} +{"2007877": ["2", "3", "3", "2", "1", "3", "1"]} +{"4002321": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003130": ["2", "1", "3", "1", "1", "1", "1"]} +{"2003412": ["3", "3", "3", "2", "2", "1", "1"]} +{"2003189": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004463": ["3", "1", "3", "3", "2", "3", "1"]} +{"4004218": ["2", "1", "3", "2", "1", "1", "1"]} +{"3006398": ["3", "2", "3", "3", "1", "1", "1"]} +{"1005485": ["3", "1", "3", "1", "2", "3", "1"]} +{"4004586": ["2", "3", "3", "2", "3", "3", "2"]} +{"2003943": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005334": ["2", "3", "2", "2", "3", "3", "2"]} +{"6003813": ["2", "3", "3", "2", "3", "3", "2"]} +{"3004802": ["2", "3", "3", "1", "3", "3", "2"]} +{"0003992": ["3", "3", "3", "3", "2", "1", "1"]} +{"8001257": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003966": ["3", "1", "3", "2", "2", "2", "1"]} +{"2005407": ["3", "3", "1", "3", "1", "3", "1"]} +{"8001317": ["2", "3", "3", "3", "1", "1", "1"]} +{"8003461": ["2", "3", "3", "2", "1", "1", "1"]} +{"4003609": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003928": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003742": ["3", "3", "3", "2", "1", "1", "1"]} +{"8001289": ["1", "3", "2", "1", "1", "3", "1"]} +{"8001221": ["3", "1", "3", "2", "1", "1", "1"]} +{"4002219": ["3", "1", "3", "2", "1", "3", "1"]} +{"0004627": ["3", "3", "1", "3", "1", "3", "1"]} +{"8002722": ["2", "1", "3", "2", "1", "1", "1"]} +{"3003929": ["3", "3", "3", "3", "3", "1", "1"]} +{"0004595": ["3", "3", "3", "2", "2", "1", "1"]} +{"0004319": ["3", "3", "3", "3", "1", "3", "1"]} +{"8003747": ["1", "1", "3", "1", "2", "2", "1"]} +{"4003113": ["2", "3", "3", "3", "1", "1", "1"]} +{"1006693": ["2", "1", "3", "1", "2", "1", "1"]} +{"3003366": ["3", "3", "3", "3", "1", "1", "1"]} +{"6002566": ["2", "3", "3", "1", "2", "3", "1"]} +{"7002545": ["3", "3", "3", "2", "2", "3", "2"]} +{"2003475": ["3", "3", "1", "3", "1", "3", "1"]} +{"1004231": ["2", "1", "3", "1", "1", "2", "1"]} +{"0005584": ["3", "3", "2", "2", "2", "3", "1"]} +{"6002856": ["2", "1", "3", "1", "2", "2", "1"]} +{"8002626": ["1", "3", "3", "1", "2", "1", "1"]} +{"7004137": ["2", "3", "2", "2", "3", "2", "2"]} +{"7004447": ["3", "3", "3", "1", "1", "1", "1"]} +{"1006424": ["1", "3", "3", "1", "2", "3", "1"]} +{"2004825": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003755": ["2", "3", "3", "1", "2", "1", "1"]} +{"2007447": ["3", "3", "3", "2", "2", "3", "2"]} +{"1004880": ["3", "1", "3", "1", "1", "3", "1"]} +{"1004880": ["3", "1", "3", "1", "1", "1", "1"]} +{"1004880": ["3", "1", "3", "1", "1", "2", "1"]} +{"3004537": ["2", "2", "3", "1", "1", "3", "1"]} +{"2006247": ["3", "3", "3", "2", "1", "3", "1"]} +{"1005884": ["2", "1", "3", "1", "1", "1", "1"]} +{"4003659": ["3", "3", "2", "3", "1", "3", "1"]} +{"2006150": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003088": ["3", "3", "1", "3", "3", "3", "1"]} +{"7004661": ["3", "3", "3", "2", "2", "2", "2"]} +{"2005829": ["3", "2", "3", "3", "2", "2", "2"]} +{"0004786": ["2", "3", "3", "2", "3", "2", "1"]} +{"6003961": ["3", "3", "3", "3", "1", "3", "1"]} +{"2005249": ["3", "3", "3", "3", "1", "1", "1"]} +{"1003328": ["3", "1", "3", "1", "1", "1", "1"]} +{"4004424": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005196": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003623": ["2", "3", "2", "2", "2", "1", "1"]} +{"8001688": ["3", "3", "3", "2", "1", "3", "1"]} +{"0006515": ["3", "3", "3", "3", "1", "3", "2"]} +{"6004459": ["2", "3", "2", "2", "1", "3", "1"]} +{"3006730": ["2", "2", "3", "1", "1", "3", "1"]} +{"0003736": ["3", "3", "2", "3", "3", "3", "2"]} +{"0003736": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003618": ["1", "1", "3", "1", "1", "1", "1"]} +{"4004377": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007032": ["3", "3", "2", "2", "3", "3", "2"]} +{"0004216": ["3", "3", "1", "3", "2", "3", "2"]} +{"0004216": ["3", "3", "1", "3", "2", "3", "1"]} +{"6003753": ["1", "3", "2", "2", "3", "3", "2"]} +{"6003753": ["1", "3", "2", "2", "3", "3", "1"]} +{"1006320": ["2", "1", "3", "2", "1", "3", "1"]} +{"0004951": ["3", "3", "3", "3", "1", "1", "1"]} +{"3004665": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003672": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003440": ["3", "3", "3", "2", "1", "2", "1"]} +{"7002336": ["3", "3", "1", "3", "2", "3", "2"]} +{"2003463": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006800": ["3", "3", "3", "1", "1", "3", "1"]} +{"3005896": ["3", "1", "3", "1", "1", "1", "1"]} +{"4003772": ["3", "3", "3", "2", "3", "3", "2"]} +{"3006917": ["3", "3", "2", "3", "1", "3", "1"]} +{"5001788": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002582": ["3", "3", "2", "2", "2", "3", "2"]} +{"2003376": ["3", "3", "3", "2", "3", "2", "2"]} +{"0003668": ["3", "2", "3", "2", "2", "2", "1"]} +{"0003668": ["3", "2", "3", "2", "2", "1", "1"]} +{"5001376": ["3", "3", "3", "2", "3", "1", "1"]} +{"7004802": ["3", "3", "2", "2", "1", "3", "1"]} +{"3005753": ["3", "3", "3", "2", "2", "3", "2"]} +{"8002434": ["1", "3", "3", "2", "1", "1", "1"]} +{"8002434": ["1", "3", "3", "2", "1", "2", "1"]} +{"3004656": ["2", "3", "1", "3", "1", "3", "1"]} +{"1005058": ["3", "1", "3", "1", "1", "3", "1"]} +{"1003979": ["3", "3", "3", "3", "1", "1", "1"]} +{"8001131": ["3", "3", "3", "3", "1", "3", "1"]} +{"0006986": ["2", "3", "2", "3", "1", "1", "1"]} +{"7004817": ["3", "1", "3", "1", "1", "3", "1"]} +{"4002957": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006287": ["3", "3", "3", "3", "1", "2", "2"]} +{"0006287": ["3", "3", "3", "3", "1", "2", "1"]} +{"4003835": ["3", "1", "3", "1", "1", "3", "1"]} +{"2005816": ["3", "3", "2", "2", "3", "3", "3"]} +{"0005958": ["3", "3", "3", "2", "1", "1", "1"]} +{"6003904": ["1", "1", "3", "1", "1", "1", "1"]} +{"6003904": ["1", "1", "3", "1", "1", "1", "1"]} +{"3006151": ["3", "3", "2", "3", "1", "1", "1"]} +{"5001618": ["3", "1", "1", "3", "2", "3", "1"]} +{"7003763": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002272": ["3", "3", "3", "1", "1", "3", "1"]} +{"1004689": ["2", "1", "3", "1", "3", "3", "1"]} +{"0005533": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003140": ["2", "3", "3", "2", "1", "3", "1"]} +{"1006036": ["3", "1", "3", "1", "3", "3", "1"]} +{"7004953": ["3", "3", "2", "2", "2", "1", "1"]} +{"0003557": ["2", "1", "3", "1", "3", "1", "1"]} +{"1004731": ["1", "1", "3", "1", "1", "3", "1"]} +{"8002301": ["3", "3", "3", "3", "1", "3", "1"]} +{"2003035": ["3", "3", "1", "3", "2", "3", "1"]} +{"1003123": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002700": ["3", "1", "3", "3", "3", "3", "1"]} +{"0005852": ["3", "3", "1", "3", "1", "1", "1"]} +{"2006167": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006851": ["3", "3", "2", "2", "1", "3", "1"]} +{"1006940": ["3", "1", "3", "1", "2", "3", "1"]} +{"5001633": ["3", "3", "3", "2", "1", "3", "1"]} +{"0003806": ["3", "3", "1", "3", "1", "1", "1"]} +{"1006833": ["3", "3", "3", "2", "1", "3", "1"]} +{"1003901": ["3", "1", "3", "2", "1", "2", "1"]} +{"6004615": ["2", "3", "3", "1", "3", "3", "2"]} +{"3004880": ["1", "3", "3", "3", "2", "1", "1"]} +{"5001981": ["3", "3", "1", "3", "1", "3", "1"]} +{"1004523": ["2", "1", "3", "1", "3", "3", "1"]} +{"1004523": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003527": ["3", "1", "3", "1", "1", "3", "1"]} +{"0003189": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002475": ["1", "3", "3", "1", "1", "3", "1"]} +{"8002475": ["1", "3", "3", "1", "1", "3", "1"]} +{"8001719": ["1", "3", "3", "2", "1", "3", "1"]} +{"8001629": ["1", "3", "2", "2", "1", "3", "1"]} +{"3004898": ["2", "1", "3", "1", "1", "2", "1"]} +{"3004640": ["2", "3", "3", "3", "1", "3", "1"]} +{"3005879": ["2", "3", "1", "3", "2", "3", "1"]} +{"3006389": ["2", "3", "3", "2", "2", "3", "2"]} +{"1003911": ["3", "1", "3", "1", "3", "3", "1"]} +{"3003031": ["3", "3", "3", "3", "1", "1", "1"]} +{"5001253": ["3", "2", "1", "3", "3", "3", "1"]} +{"6003156": ["2", "1", "3", "2", "2", "3", "1"]} +{"3004888": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004251": ["3", "1", "3", "3", "2", "3", "1"]} +{"2003431": ["2", "3", "3", "3", "3", "2", "2"]} +{"6002771": ["1", "1", "3", "1", "1", "1", "1"]} +{"4003065": ["3", "3", "2", "3", "3", "3", "2"]} +{"6002798": ["2", "2", "3", "2", "3", "2", "2"]} +{"1005227": ["3", "1", "3", "1", "1", "3", "1"]} +{"8002942": ["2", "3", "3", "1", "3", "3", "1"]} +{"0004654": ["3", "3", "1", "3", "1", "3", "1"]} +{"2003235": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003235": ["3", "3", "3", "3", "3", "2", "2"]} +{"6003387": ["1", "2", "3", "2", "1", "3", "1"]} +{"0005095": ["3", "2", "3", "3", "2", "3", "2"]} +{"4004813": ["3", "3", "3", "3", "1", "2", "1"]} +{"2007730": ["3", "3", "1", "3", "1", "3", "1"]} +{"3003094": ["3", "3", "3", "3", "1", "3", "1"]} +{"0005301": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003326": ["2", "1", "3", "1", "3", "2", "1"]} +{"8003405": ["2", "3", "3", "2", "2", "3", "2"]} +{"7002975": ["3", "1", "3", "1", "1", "3", "1"]} +{"2003302": ["3", "3", "3", "3", "1", "1", "1"]} +{"0006226": ["3", "3", "3", "3", "1", "3", "1"]} +{"4002104": ["3", "2", "3", "1", "3", "3", "1"]} +{"1006113": ["3", "1", "3", "3", "1", "2", "1"]} +{"3004751": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004539": ["2", "1", "3", "1", "1", "2", "1"]} +{"5001942": ["3", "3", "1", "2", "1", "3", "1"]} +{"7004297": ["3", "2", "3", "3", "2", "3", "2"]} +{"7004987": ["3", "3", "3", "3", "1", "3", "1"]} +{"1004243": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007103": ["3", "3", "2", "3", "3", "3", "2"]} +{"3004926": ["3", "2", "3", "3", "3", "2", "2"]} +{"7002546": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006434": ["3", "1", "3", "3", "3", "2", "1"]} +{"2003174": ["3", "2", "3", "3", "2", "3", "2"]} +{"6003674": ["2", "1", "3", "1", "3", "3", "1"]} +{"6003674": ["2", "1", "3", "1", "2", "3", "1"]} +{"0006633": ["3", "2", "3", "2", "1", "1", "1"]} +{"4002292": ["3", "1", "3", "1", "2", "2", "1"]} +{"4002292": ["3", "1", "3", "1", "3", "3", "1"]} +{"7003924": ["3", "3", "2", "2", "2", "3", "None"]} +{"7003924": ["3", "3", "2", "2", "2", "3", "2"]} +{"7002361": ["3", "3", "3", "3", "1", "1", "1"]} +{"8003307": ["3", "2", "3", "3", "1", "2", "1"]} +{"1005820": ["3", "1", "3", "3", "1", "3", "1"]} +{"0003489": ["3", "2", "3", "3", "1", "3", "1"]} +{"1003633": ["3", "1", "3", "3", "1", "3", "1"]} +{"1003509": ["1", "1", "3", "3", "3", "3", "1"]} +{"1004848": ["3", "1", "3", "1", "3", "3", "1"]} +{"1003412": ["1", "1", "3", "1", "3", "1", "1"]} +{"2004616": ["3", "3", "3", "3", "3", "1", "2"]} +{"8003551": ["2", "3", "3", "2", "2", "3", "2"]} +{"6002202": ["2", "2", "3", "1", "1", "3", "1"]} +{"5001772": ["3", "3", "2", "3", "2", "2", "2"]} +{"2004695": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003514": ["2", "3", "3", "2", "3", "3", "2"]} +{"7002940": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004325": ["1", "3", "3", "3", "3", "1", "1"]} +{"4004483": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007026": ["3", "3", "3", "2", "3", "3", "2"]} +{"6004563": ["2", "3", "3", "2", "3", "3", "2"]} +{"2004848": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001612": ["3", "3", "1", "3", "1", "3", "1"]} +{"7002669": ["3", "3", "1", "3", "1", "3", "1"]} +{"4003273": ["3", "3", "2", "3", "1", "3", "1"]} +{"3006125": ["3", "3", "3", "3", "1", "3", "1"]} +{"0006789": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006789": ["3", "3", "1", "3", "2", "3", "1"]} +{"0004143": ["3", "3", "2", "3", "1", "3", "1"]} +{"8002294": ["3", "3", "3", "2", "2", "2", "2"]} +{"1004851": ["2", "1", "3", "1", "1", "3", "1"]} +{"7003586": ["3", "2", "2", "3", "3", "3", "3"]} +{"0004056": ["3", "3", "3", "2", "1", "2", "1"]} +{"7003673": ["2", "3", "2", "2", "1", "2", "1"]} +{"2003788": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006863": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003073": ["1", "1", "3", "2", "1", "3", "1"]} +{"1003029": ["3", "1", "3", "1", "2", "3", "1"]} +{"0003160": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004104": ["2", "1", "3", "1", "2", "3", "1"]} +{"8002671": ["3", "3", "3", "3", "1", "3", "1"]} +{"2003799": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004710": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002953": ["3", "2", "3", "1", "3", "3", "2"]} +{"1003029": ["1", "1", "3", "1", "2", "3", "1"]} +{"6003028": ["1", "1", "3", "1", "3", "1", "1"]} +{"0006368": ["3", "1", "3", "1", "1", "1", "1"]} +{"1005826": ["1", "1", "3", "1", "2", "3", "1"]} +{"0005323": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004650": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005462": ["3", "2", "3", "3", "1", "3", "1"]} +{"3006944": ["3", "3", "1", "3", "1", "3", "1"]} +{"4004400": ["3", "1", "3", "3", "1", "3", "1"]} +{"4004883": ["2", "3", "3", "1", "3", "2", "2"]} +{"6004934": ["1", "1", "3", "3", "1", "3", "1"]} +{"2003535": ["2", "1", "3", "1", "1", "3", "1"]} +{"3006602": ["3", "1", "3", "3", "3", "3", "1"]} +{"6003683": ["1", "2", "3", "1", "1", "1", "1"]} +{"8003127": ["3", "3", "3", "2", "2", "3", "2"]} +{"1005827": ["1", "1", "3", "1", "1", "3", "1"]} +{"0004164": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003592": ["2", "3", "3", "2", "1", "3", "1"]} +{"0005377": ["3", "3", "3", "3", "1", "1", "1"]} +{"6003262": ["2", "1", "3", "1", "1", "3", "1"]} +{"3004017": ["2", "2", "3", "1", "1", "3", "1"]} +{"8003834": ["1", "3", "3", "2", "3", "1", "1"]} +{"8003907": ["1", "2", "3", "1", "1", "2", "1"]} +{"8002396": ["2", "2", "3", "1", "3", "3", "1"]} +{"8001936": ["2", "2", "3", "1", "2", "2", "1"]} +{"6003078": ["1", "3", "3", "2", "2", "3", "1"]} +{"8002601": ["3", "3", "3", "2", "1", "3", "1"]} +{"1003622": ["1", "1", "3", "1", "3", "3", "1"]} +{"6002465": ["1", "1", "3", "1", "1", "1", "1"]} +{"2003717": ["3", "3", "2", "2", "3", "3", "2"]} +{"2003384": ["3", "2", "3", "2", "3", "3", "2"]} +{"8001274": ["1", "1", "3", "1", "2", "1", "1"]} +{"8002966": ["1", "1", "3", "1", "1", "1", "1"]} +{"0006850": ["3", "1", "3", "1", "2", "1", "1"]} +{"2004143": ["3", "3", "2", "2", "3", "3", "2"]} +{"0006850": ["3", "3", "3", "1", "2", "3", "1"]} +{"2004143": ["3", "3", "2", "2", "3", "3", "2"]} +{"6002844": ["1", "2", "3", "2", "3", "3", "1"]} +{"3003722": ["2", "1", "3", "1", "2", "3", "1"]} +{"1003410": ["1", "1", "3", "1", "1", "3", "1"]} +{"4002389": ["3", "1", "3", "3", "1", "3", "1"]} +{"2006870": ["3", "2", "3", "2", "3", "3", "1"]} +{"6004543": ["2", "1", "3", "2", "3", "3", "1"]} +{"6003852": ["1", "2", "3", "1", "1", "3", "1"]} +{"6003852": ["1", "2", "3", "1", "1", "2", "1"]} +{"3005208": ["3", "2", "3", "3", "1", "2", "1"]} +{"2004920": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003305": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003774": ["3", "3", "3", "2", "2", "3", "2"]} +{"4003037": ["3", "3", "3", "2", "1", "3", "1"]} +{"7002899": ["3", "2", "3", "1", "2", "3", "1"]} +{"0005476": ["3", "3", "3", "3", "3", "2", "2"]} +{"6002462": ["2", "2", "3", "2", "1", "3", "1"]} +{"6004724": ["1", "1", "3", "1", "1", "1", "1"]} +{"7003789": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003505": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004921": ["3", "3", "1", "3", "1", "3", "1"]} +{"2005358": ["3", "None", "3", "2", "3", "3", "2"]} +{"0005204": ["3", "3", "3", "3", "3", "2", "2"]} +{"5001206": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002524": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004571": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007606": ["3", "3", "2", "2", "1", "1", "1"]} +{"4002828": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004568": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003685": ["3", "3", "3", "3", "1", "1", "1"]} +{"4002097": ["3", "2", "3", "2", "2", "3", "2"]} +{"0003870": ["3", "3", "3", "3", "1", "3", "1"]} +{"2003859": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004370": ["3", "3", "3", "3", "1", "3", "1"]} +{"7003892": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003169": ["2", "2", "3", "1", "1", "3", "1"]} +{"3003338": ["3", "3", "3", "3", "1", "3", "1"]} +{"6003491": ["1", "1", "3", "1", "1", "3", "1"]} +{"8002325": ["2", "3", "2", "2", "3", "1", "1"]} +{"1003247": ["1", "1", "3", "1", "1", "3", "1"]} +{"6003978": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006178": ["2", "1", "3", "1", "2", "3", "1"]} +{"2003486": ["3", "3", "3", "2", "3", "3", "2"]} +{"4003824": ["3", "3", "3", "2", "2", "1", "1"]} +{"1005597": ["2", "1", "3", "1", "2", "1", "1"]} +{"4003081": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002325": ["3", "3", "3", "2", "3", "3", "2"]} +{"3006509": ["2", "3", "1", "3", "3", "3", "1"]} +{"1004310": ["2", "1", "3", "1", "1", "3", "1"]} +{"4002780": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006468": ["3", "3", "3", "3", "1", "1", "1"]} +{"4003052": ["3", "3", "3", "3", "1", "3", "1"]} +{"7003970": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003589": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004495": ["1", "1", "3", "1", "1", "1", "1"]} +{"8001721": ["2", "3", "2", "2", "1", "1", "1"]} +{"2003798": ["3", "3", "2", "2", "1", "3", "1"]} +{"1003349": ["2", "1", "3", "1", "1", "3", "1"]} +{"2004995": ["3", "3", "3", "2", "2", "3", "2"]} +{"2007350": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007350": ["3", "2", "2", "3", "1", "3", "1"]} +{"8001014": ["2", "2", "3", "2", "1", "2", "1"]} +{"0003373": ["3", "3", "2", "3", "1", "3", "1"]} +{"7004394": ["3", "3", "3", "2", "1", "3", "1"]} +{"3003805": ["3", "3", "3", "3", "1", "3", "1"]} +{"2005799": ["3", "3", "3", "2", "3", "3", "2"]} +{"3006002": ["2", "3", "3", "2", "3", "2", "2"]} +{"2006383": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003632": ["3", "3", "3", "2", "3", "3", "2"]} +{"6003488": ["1", "1", "3", "1", "2", "1", "1"]} +{"1004737": ["1", "1", "3", "1", "2", "3", "1"]} +{"0006069": ["3", "3", "3", "3", "1", "3", "1"]} +{"1006131": ["1", "1", "3", "1", "1", "3", "1"]} +{"3005637": ["1", "1", "3", "1", "1", "3", "1"]} +{"1004732": ["3", "1", "3", "1", "3", "3", "1"]} +{"0006657": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004097": ["3", "3", "3", "2", "1", "2", "1"]} +{"2004628": ["3", "2", "3", "2", "2", "3", "2"]} +{"3006552": ["2", "3", "3", "1", "2", "2", "1"]} +{"8001574": ["1", "3", "3", "1", "3", "3", "1"]} +{"4002534": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001767": ["1", "3", "3", "1", "1", "3", "1"]} +{"1006369": ["1", "1", "3", "1", "2", "3", "1"]} +{"2007027": ["3", "3", "1", "3", "1", "3", "1"]} +{"2006734": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002925": ["3", "3", "3", "3", "1", "1", "1"]} +{"1004079": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003387": ["1", "3", "3", "3", "1", "3", "1"]} +{"1005000": ["1", "1", "3", "1", "3", "3", "1"]} +{"0005511": ["3", "1", "3", "1", "1", "1", "1"]} +{"6003068": ["2", "3", "3", "2", "1", "3", "1"]} +{"2004666": ["3", "3", "3", "3", "1", "3", "1"]} +{"7004008": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001835": ["3", "2", "1", "3", "1", "1", "1"]} +{"8003426": ["1", "3", "3", "2", "1", "3", "1"]} +{"2003678": ["3", "3", "3", "3", "3", "2", "2"]} +{"2007888": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002106": ["1", "2", "3", "1", "1", "1", "1"]} +{"2005609": ["3", "3", "3", "2", "2", "3", "2"]} +{"0006065": ["2", "3", "3", "2", "2", "3", "1"]} +{"8001442": ["3", "3", "2", "2", "3", "2", "2"]} +{"7003071": ["2", "3", "2", "2", "2", "3", "2"]} +{"1006764": ["1", "1", "3", "1", "1", "3", "1"]} +{"4003335": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004054": ["3", "1", "3", "1", "1", "3", "1"]} +{"4004054": ["3", "1", "3", "1", "1", "3", "1"]} +{"3003114": ["1", "1", "3", "1", "1", "1", "1"]} +{"1004871": ["2", "1", "3", "1", "3", "3", "1"]} +{"5001101": ["3", "3", "1", "3", "1", "3", "1"]} +{"5001542": ["3", "3", "1", "3", "1", "2", "1"]} +{"2006400": ["3", "3", "3", "2", "3", "2", "2"]} +{"6003277": ["1", "3", "3", "3", "1", "3", "1"]} +{"7004438": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003100": ["2", "3", "3", "2", "1", "3", "1"]} +{"3005836": ["3", "3", "3", "2", "2", "3", "1"]} +{"6003839": ["3", "3", "1", "3", "2", "3", "1"]} +{"8002843": ["1", "1", "3", "1", "1", "1", "1"]} +{"2007353": ["3", "3", "3", "2", "3", "3", "2"]} +{"7003670": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004018": ["3", "2", "3", "3", "1", "1", "1"]} +{"7004226": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002523": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004787": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003890": ["3", "2", "3", "2", "1", "3", "1"]} +{"6004692": ["2", "3", "3", "2", "2", "3", "2"]} +{"3005400": ["2", "1", "3", "2", "2", "3", "1"]} +{"0006598": ["2", "2", "3", "2", "3", "2", "2"]} +{"2003727": ["1", "2", "3", "1", "1", "1", "1"]} +{"7002922": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001179": ["2", "2", "3", "2", "1", "3", "1"]} +{"4004323": ["2", "2", "3", "2", "2", "3", "1"]} +{"1005640": ["2", "1", "3", "1", "1", "3", "1"]} +{"6004238": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004879": ["2", "3", "1", "3", "1", "3", "1"]} +{"2005705": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007517": ["3", "3", "3", "3", "1", "2", "1"]} +{"1005990": ["1", "1", "3", "1", "3", "3", "1"]} +{"2007517": ["3", "3", "3", "3", "1", "1", "1"]} +{"3003682": ["2", "2", "3", "1", "2", "1", "1"]} +{"8002778": ["3", "3", "3", "2", "1", "3", "1"]} +{"3003146": ["3", "3", "3", "2", "1", "1", "1"]} +{"6003841": ["2", "1", "3", "1", "1", "1", "1"]} +{"1005109": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006796": ["3", "3", "3", "3", "1", "2", "1"]} +{"7004436": ["3", "1", "3", "1", "1", "1", "1"]} +{"2007960": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002924": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003151": ["1", "2", "3", "1", "2", "3", "1"]} +{"7002024": ["3", "2", "2", "2", "1", "3", "1"]} +{"2005817": ["3", "3", "2", "2", "1", "1", "1"]} +{"2005672": ["3", "3", "3", "3", "1", "3", "1"]} +{"5001257": ["2", "3", "2", "2", "1", "3", "1"]} +{"0004268": ["2", "1", "3", "1", "1", "3", "1"]} +{"0004268": ["2", "1", "3", "1", "1", "1", "1"]} +{"6002085": ["1", "1", "3", "1", "3", "1", "1"]} +{"7002910": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002910": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005985": ["3", "3", "2", "2", "3", "3", "2"]} +{"8002340": ["2", "1", "3", "1", "1", "3", "1"]} +{"2003358": ["2", "3", "2", "2", "1", "3", "1"]} +{"0006311": ["1", "1", "3", "1", "1", "3", "1"]} +{"2005179": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001059": ["3", "3", "3", "2", "3", "1", "1"]} +{"7004386": ["3", "2", "3", "2", "1", "3", "1"]} +{"1003606": ["1", "1", "3", "1", "1", "1", "1"]} +{"2006542": ["3", "3", "3", "3", "1", "1", "1"]} +{"4004660": ["3", "2", "2", "2", "1", "3", "1"]} +{"6003989": ["2", "2", "3", "1", "1", "2", "1"]} +{"6003989": ["2", "2", "3", "1", "1", "3", "1"]} +{"6003989": ["2", "2", "3", "1", "1", "2", "1"]} +{"8003332": ["1", "1", "3", "1", "3", "3", "1"]} +{"2003045": ["3", "3", "1", "3", "1", "3", "1"]} +{"0004660": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004070": ["3", "3", "3", "2", "2", "3", "2"]} +{"0003472": ["3", "3", "2", "3", "3", "3", "2"]} +{"7002016": ["3", "3", "2", "3", "2", "3", "None"]} +{"7002016": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006172": ["1", "1", "3", "1", "1", "3", "1"]} +{"3006866": ["3", "3", "1", "3", "3", "3", "1"]} +{"4002829": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001170": ["3", "1", "3", "3", "1", "3", "1"]} +{"2004323": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006558": ["2", "1", "3", "1", "1", "3", "1"]} +{"0003031": ["1", "2", "3", "3", "1", "1", "1"]} +{"3004759": ["2", "3", "3", "3", "2", "1", "1"]} +{"3003092": ["3", "3", "3", "3", "1", "3", "1"]} +{"6003098": ["1", "3", "3", "3", "1", "1", "1"]} +{"1003095": ["1", "1", "3", "1", "1", "2", "1"]} +{"8003878": ["3", "3", "3", "3", "1", "3", "1"]} +{"3006358": ["1", "1", "3", "1", "1", "1", "1"]} +{"1003390": ["1", "3", "3", "1", "3", "1", "1"]} +{"3004795": ["2", "2", "3", "1", "3", "1", "1"]} +{"5001946": ["2", "3", "3", "1", "1", "1", "1"]} +{"8003343": ["3", "1", "3", "1", "1", "3", "1"]} +{"6004540": ["2", "3", "3", "3", "1", "1", "1"]} +{"7002114": ["3", "2", "3", "3", "3", "3", "3"]} +{"5001041": ["3", "1", "3", "1", "1", "1", "1"]} +{"1006246": ["1", "1", "3", "1", "1", "3", "1"]} +{"4004080": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004277": ["3", "3", "2", "3", "3", "2", "2"]} +{"4002711": ["3", "1", "3", "2", "1", "3", "1"]} +{"0006336": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003891": ["2", "2", "3", "2", "3", "3", "2"]} +{"6002504": ["1", "3", "3", "3", "1", "1", "1"]} +{"4003578": ["3", "3", "2", "2", "1", "3", "1"]} +{"2007394": ["3", "1", "3", "3", "3", "1", "1"]} +{"3006014": ["3", "2", "3", "3", "1", "3", "1"]} +{"8002148": ["3", "1", "3", "2", "1", "1", "1"]} +{"2006018": ["3", "3", "1", "3", "1", "3", "1"]} +{"0006448": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003684": ["3", "1", "3", "3", "1", "3", "1"]} +{"6002649": ["1", "3", "3", "1", "3", "3", "1"]} +{"2007248": ["3", "2", "3", "3", "1", "3", "1"]} +{"5001205": ["3", "3", "3", "2", "3", "3", "2"]} +{"0006956": ["3", "3", "2", "2", "1", "1", "1"]} +{"5001205": ["3", "3", "2", "2", "3", "3", "2"]} +{"8003936": ["2", "2", "3", "1", "3", "3", "1"]} +{"2004796": ["3", "1", "3", "1", "1", "3", "1"]} +{"0005793": ["3", "3", "3", "3", "1", "1", "1"]} +{"3006973": ["3", "3", "2", "2", "1", "3", "1"]} +{"1004599": ["1", "1", "3", "1", "1", "3", "1"]} +{"6004333": ["2", "1", "3", "1", "2", "3", "1"]} +{"7002618": ["2", "3", "3", "2", "2", "3", "2"]} +{"3005312": ["2", "1", "3", "1", "1", "3", "1"]} +{"5001096": ["3", "3", "1", "3", "3", "3", "1"]} +{"8001187": ["2", "1", "3", "3", "3", "1", "1"]} +{"6003319": ["2", "3", "3", "3", "1", "3", "1"]} +{"0004716": ["1", "3", "3", "3", "3", "1", "1"]} +{"0006769": ["3", "3", "3", "3", "3", "1", "1"]} +{"0004457": ["3", "3", "2", "2", "2", "3", "2"]} +{"0005105": ["3", "3", "1", "3", "3", "3", "1"]} +{"7002430": ["3", "3", "3", "2", "3", "3", "2"]} +{"7002787": ["3", "3", "2", "3", "1", "3", "1"]} +{"5001741": ["3", "3", "1", "3", "3", "1", "1"]} +{"7002506": ["2", "3", "3", "2", "3", "3", "1"]} +{"7003104": ["3", "3", "3", "2", "3", "3", "2"]} +{"8001722": ["3", "2", "3", "3", "3", "2", "1"]} +{"8001722": ["3", "2", "3", "3", "3", "2", "1"]} +{"7004430": ["3", "3", "3", "2", "3", "2", "1"]} +{"6004619": ["1", "1", "3", "1", "2", "3", "1"]} +{"4003532": ["3", "3", "1", "3", "3", "3", "1"]} +{"1003058": ["1", "1", "3", "1", "1", "1", "1"]} +{"1006474": ["1", "1", "3", "3", "3", "1", "1"]} +{"0003152": ["3", "3", "3", "2", "1", "3", "1"]} +{"0003739": ["3", "3", "3", "3", "3", "1", "1"]} +{"2005193": ["3", "3", "2", "2", "1", "3", "1"]} +{"6004759": ["1", "2", "3", "2", "1", "1", "1"]} +{"6002613": ["3", "1", "3", "1", "1", "1", "1"]} +{"0003925": ["1", "1", "3", "1", "1", "1", "1"]} +{"3003954": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004042": ["2", "2", "3", "3", "1", "3", "1"]} +{"7004717": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003355": ["3", "2", "3", "2", "1", "1", "1"]} +{"0003791": ["3", "3", "3", "3", "1", "3", "1"]} +{"5001803": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004267": ["2", "1", "3", "1", "3", "3", "1"]} +{"7002370": ["3", "2", "3", "2", "1", "3", "1"]} +{"6004548": ["1", "2", "3", "2", "3", "3", "1"]} +{"0004835": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004317": ["1", "1", "3", "3", "1", "3", "1"]} +{"8003183": ["2", "3", "3", "2", "1", "3", "1"]} +{"2003435": ["3", "3", "3", "3", "1", "3", "1"]} +{"6002280": ["2", "2", "3", "1", "3", "3", "1"]} +{"2005467": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004033": ["2", "3", "3", "1", "1", "3", "1"]} +{"6004973": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006555": ["1", "1", "3", "3", "2", "2", "1"]} +{"7002918": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004334": ["3", "3", "2", "3", "1", "3", "1"]} +{"0006503": ["2", "3", "2", "3", "1", "3", "1"]} +{"3003326": ["1", "1", "3", "3", "1", "3", "1"]} +{"7004589": ["3", "3", "3", "2", "3", "3", "2"]} +{"3003193": ["3", "None", "3", "2", "1", "3", "1"]} +{"0003434": ["3", "3", "3", "2", "3", "1", "1"]} +{"2004959": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004486": ["2", "3", "3", "3", "1", "3", "1"]} +{"6003615": ["2", "3", "3", "2", "1", "3", "1"]} +{"4002466": ["3", "1", "3", "1", "1", "3", "1"]} +{"0006999": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004528": ["2", "3", "2", "3", "1", "1", "1"]} +{"3005361": ["2", "2", "3", "1", "2", "3", "2"]} +{"3004484": ["3", "3", "3", "3", "1", "3", "1"]} +{"1006234": ["1", "1", "3", "3", "3", "3", "1"]} +{"3004200": ["2", "3", "3", "1", "3", "3", "1"]} +{"2006489": ["3", "3", "2", "3", "2", "3", "2"]} +{"2007854": ["3", "3", "2", "2", "2", "3", "2"]} +{"4002951": ["3", "3", "2", "2", "1", "3", "1"]} +{"8003819": ["3", "3", "3", "2", "3", "3", "2"]} +{"1003762": ["1", "1", "3", "1", "2", "1", "1"]} +{"3006415": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002163": ["3", "3", "3", "1", "3", "3", "1"]} +{"3006352": ["2", "2", "3", "1", "3", "2", "1"]} +{"1005819": ["2", "1", "3", "1", "2", "3", "1"]} +{"4002259": ["3", "2", "3", "2", "3", "1", "1"]} +{"8001613": ["2", "2", "3", "2", "2", "2", "1"]} +{"2003672": ["2", "3", "2", "3", "1", "1", "1"]} +{"8001074": ["3", "3", "3", "3", "1", "3", "1"]} +{"2006523": ["3", "3", "2", "2", "2", "3", "2"]} +{"8001441": ["1", "2", "3", "1", "3", "3", "1"]} +{"1003205": ["3", "1", "3", "2", "1", "3", "1"]} +{"6002805": ["2", "1", "3", "1", "3", "1", "1"]} +{"2004855": ["3", "3", "2", "2", "3", "3", "2"]} +{"7004693": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005488": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006459": ["3", "3", "3", "2", "3", "2", "2"]} +{"1004156": ["1", "1", "3", "3", "1", "3", "1"]} +{"1005563": ["1", "1", "3", "1", "1", "3", "1"]} +{"8002554": ["3", "3", "3", "3", "1", "2", "1"]} +{"0005531": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003302": ["3", "3", "3", "3", "3", "2", "1"]} +{"4003302": ["3", "3", "3", "3", "3", "2", "2"]} +{"3006128": ["3", "3", "3", "1", "3", "3", "1"]} +{"3004284": ["2", "2", "3", "1", "3", "1", "1"]} +{"4003826": ["3", "2", "3", "3", "1", "1", "1"]} +{"0003643": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003643": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003265": ["3", "3", "3", "3", "3", "1", "1"]} +{"7004146": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002105": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003562": ["3", "1", "3", "2", "1", "3", "1"]} +{"1004768": ["2", "1", "3", "3", "1", "3", "1"]} +{"3004894": ["2", "3", "2", "3", "2", "3", "2"]} +{"0004072": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004309": ["3", "3", "3", "2", "1", "3", "1"]} +{"3005227": ["3", "2", "3", "2", "3", "1", "2"]} +{"8001031": ["2", "2", "3", "2", "1", "3", "1"]} +{"6002198": ["2", "1", "3", "1", "3", "1", "1"]} +{"2007932": ["3", "3", "2", "3", "2", "2", "2"]} +{"3003641": ["3", "3", "3", "3", "3", "1", "2"]} +{"0003908": ["3", "3", "3", "3", "1", "3", "1"]} +{"1006567": ["1", "1", "3", "1", "1", "3", "1"]} +{"1003342": ["2", "1", "3", "1", "1", "1", "1"]} +{"4002422": ["3", "1", "3", "2", "1", "3", "1"]} +{"7003843": ["2", "3", "3", "2", "3", "1", "2"]} +{"8001815": ["2", "3", "3", "2", "1", "3", "1"]} +{"3004813": ["2", "3", "2", "3", "1", "2", "1"]} +{"8001618": ["2", "3", "3", "2", "3", "3", "2"]} +{"3006907": ["3", "3", "1", "3", "1", "3", "1"]} +{"6002605": ["1", "1", "3", "1", "2", "3", "1"]} +{"2004507": ["3", "2", "3", "2", "3", "1", "1"]} +{"0003790": ["3", "3", "3", "2", "3", "3", "2"]} +{"3005952": ["2", "3", "1", "3", "2", "3", "1"]} +{"2004173": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004173": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004924": ["1", "1", "3", "1", "1", "3", "1"]} +{"3005339": ["3", "3", "3", "2", "1", "3", "1"]} +{"4002055": ["3", "1", "3", "2", "1", "3", "1"]} +{"6004211": ["1", "1", "3", "3", "1", "3", "1"]} +{"2006037": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006974": ["3", "3", "1", "3", "1", "1", "1"]} +{"7003395": ["3", "3", "3", "2", "1", "3", "1"]} +{"7002132": ["3", "3", "2", "2", "1", "3", "1"]} +{"5001436": ["3", "3", "3", "2", "3", "3", "2"]} +{"0003593": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003730": ["3", "2", "3", "1", "1", "1", "1"]} +{"0006125": ["2", "1", "3", "1", "1", "3", "1"]} +{"8002406": ["2", "3", "3", "1", "3", "3", "2"]} +{"0003652": ["3", "3", "1", "3", "1", "3", "1"]} +{"6004384": ["1", "3", "3", "2", "2", "3", "1"]} +{"3005695": ["3", "3", "3", "3", "1", "3", "1"]} +{"0003432": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004542": ["2", "3", "1", "3", "1", "3", "1"]} +{"0003610": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004356": ["3", "3", "3", "3", "1", "3", "1"]} +{"6004531": ["3", "1", "3", "1", "1", "1", "1"]} +{"4004573": ["3", "2", "3", "3", "3", "3", "2"]} +{"8001226": ["3", "2", "3", "2", "1", "3", "1"]} +{"0006371": ["3", "3", "1", "3", "1", "3", "1"]} +{"7002247": ["3", "3", "3", "2", "2", "3", "2"]} +{"6004756": ["3", "1", "3", "2", "1", "3", "1"]} +{"2005927": ["3", "3", "1", "3", "3", "3", "2"]} +{"8001735": ["2", "1", "3", "1", "1", "3", "1"]} +{"6004420": ["2", "3", "3", "1", "3", "2", "1"]} +{"7002668": ["3", "3", "3", "3", "1", "3", "1"]} +{"6002274": ["3", "2", "3", "3", "1", "3", "1"]} +{"2003378": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1006568": ["2", "1", "3", "1", "1", "3", "1"]} +{"3005515": ["3", "3", "1", "3", "1", "3", "1"]} +{"1006975": ["2", "1", "3", "1", "3", "3", "1"]} +{"2005848": ["3", "3", "3", "1", "1", "1", "1"]} +{"0006190": ["3", "3", "3", "2", "2", "1", "1"]} +{"0006190": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001174": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001927": ["3", "3", "1", "3", "1", "3", "1"]} +{"3005343": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003293": ["1", "1", "3", "1", "3", "3", "1"]} +{"3004758": ["2", "2", "3", "1", "1", "3", "1"]} +{"7003187": ["3", "2", "3", "2", "2", "3", "2"]} +{"1003459": ["1", "1", "3", "1", "3", "3", "1"]} +{"2007201": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002300": ["2", "2", "3", "2", "2", "3", "1"]} +{"3003298": ["3", "3", "3", "2", "3", "3", "2"]} +{"1006653": ["2", "3", "3", "2", "1", "3", "1"]} +{"2004683": ["3", "3", "3", "3", "1", "1", "1"]} +{"4002651": ["2", "2", "3", "2", "None", "3", "1"]} +{"4002651": ["2", "2", "3", "2", "1", "3", "1"]} +{"8001966": ["2", "3", "3", "3", "1", "3", "1"]} +{"6003096": ["2", "1", "3", "1", "2", "3", "1"]} +{"6002208": ["1", "2", "3", "2", "1", "3", "1"]} +{"8002020": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007039": ["3", "2", "3", "1", "2", "2", "1"]} +{"3006692": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003360": ["2", "3", "3", "1", "1", "3", "1"]} +{"2004251": ["3", "2", "3", "2", "1", "3", "1"]} +{"4004666": ["2", "3", "3", "3", "3", "1", "1"]} +{"2004648": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004648": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006900": ["2", "1", "3", "1", "1", "3", "1"]} +{"6002597": ["1", "2", "3", "1", "3", "3", "1"]} +{"7002659": ["2", "3", "3", "2", "3", "3", "2"]} +{"7002659": ["2", "3", "3", "2", "3", "2", "2"]} +{"6003657": ["1", "2", "3", "1", "1", "3", "1"]} +{"6003657": ["1", "2", "3", "1", "1", "1", "1"]} +{"1003503": ["1", "1", "3", "1", "3", "3", "1"]} +{"1004409": ["3", "3", "3", "2", "2", "1", "1"]} +{"8001045": ["2", "3", "3", "1", "1", "3", "1"]} +{"2006173": ["3", "3", "3", "2", "3", "2", "2"]} +{"0003567": ["2", "3", "3", "2", "3", "3", "2"]} +{"3004077": ["3", "3", "3", "3", "1", "1", "1"]} +{"3006290": ["3", "3", "1", "3", "1", "3", "1"]} +{"4004373": ["3", "1", "3", "3", "1", "3", "1"]} +{"0004991": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005084": ["2", "1", "3", "3", "2", "3", "1"]} +{"6002121": ["3", "1", "3", "1", "3", "3", "1"]} +{"3003407": ["3", "3", "1", "3", "2", "1", "1"]} +{"6003113": ["2", "1", "3", "2", "1", "3", "1"]} +{"7002498": ["2", "3", "3", "1", "2", "3", "1"]} +{"3006573": ["3", "2", "3", "2", "1", "1", "1"]} +{"1004955": ["3", "1", "3", "1", "3", "3", "1"]} +{"5001193": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003042": ["1", "1", "3", "1", "3", "3", "1"]} +{"7004663": ["3", "3", "3", "2", "2", "3", "2"]} +{"1005912": ["2", "1", "3", "1", "1", "3", "1"]} +{"0006067": ["3", "3", "3", "3", "1", "3", "1"]} +{"0005806": ["3", "3", "2", "3", "3", "3", "2"]} +{"3005968": ["2", "3", "1", "3", "2", "3", "1"]} +{"3005968": ["2", "3", "1", "3", "2", "3", "1"]} +{"3005968": ["2", "3", "1", "3", "2", "3", "2"]} +{"4004508": ["3", "3", "2", "3", "2", "1", "1"]} +{"4004508": ["3", "3", "2", "3", "2", "2", "2"]} +{"6004731": ["1", "1", "3", "1", "3", "1", "1"]} +{"2004088": ["2", "3", "2", "2", "3", "3", "2"]} +{"1004327": ["1", "1", "3", "1", "3", "3", "1"]} +{"2004510": ["3", "1", "3", "3", "1", "3", "1"]} +{"7004385": ["3", "3", "1", "3", "3", "1", "1"]} +{"7004385": ["3", "3", "1", "3", "3", "1", "1"]} +{"2004063": ["3", "3", "3", "2", "3", "1", "1"]} +{"1005572": ["3", "1", "3", "3", "1", "3", "1"]} +{"3005944": ["2", "3", "2", "2", "3", "3", "2"]} +{"1005617": ["2", "1", "3", "1", "2", "2", "1"]} +{"2006894": ["3", "3", "3", "3", "2", "1", "1"]} +{"0005232": ["3", "3", "3", "2", "1", "1", "1"]} +{"7003819": ["3", "3", "3", "3", "1", "3", "1"]} +{"1006840": ["2", "1", "3", "1", "3", "1", "1"]} +{"6003681": ["1", "2", "3", "1", "3", "3", "1"]} +{"3006566": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006728": ["3", "3", "2", "3", "1", "3", "1"]} +{"0004091": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005727": ["3", "2", "3", "3", "1", "3", "1"]} +{"3003962": ["2", "1", "3", "1", "1", "1", "1"]} +{"2007767": ["3", "3", "2", "3", "3", "3", "2"]} +{"0006757": ["3", "3", "1", "3", "2", "3", "1"]} +{"3004940": ["2", "3", "3", "2", "3", "2", "2"]} +{"1004446": ["1", "1", "3", "3", "2", "3", "1"]} +{"1004958": ["2", "1", "3", "3", "3", "2", "1"]} +{"1006548": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006017": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006017": ["3", "2", "3", "3", "3", "3", "2"]} +{"8003750": ["2", "2", "3", "2", "1", "1", "1"]} +{"8003750": ["1", "2", "3", "2", "1", "1", "1"]} +{"7004086": ["3", "3", "3", "2", "2", "3", "2"]} +{"2004228": ["3", "3", "3", "3", "1", "3", "1"]} +{"0004479": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005729": ["1", "3", "3", "2", "3", "1", "1"]} +{"4002966": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001894": ["3", "3", "3", "2", "3", "3", "2"]} +{"1004516": ["1", "1", "3", "1", "1", "3", "1"]} +{"1004516": ["1", "1", "3", "1", "1", "3", "1"]} +{"2005768": ["3", "3", "3", "2", "1", "2", "1"]} +{"0003722": ["3", "3", "3", "3", "1", "3", "1"]} +{"1004012": ["1", "1", "3", "1", "3", "3", "1"]} +{"7004332": ["3", "3", "3", "2", "3", "3", "2"]} +{"3003264": ["2", "3", "3", "2", "3", "1", "1"]} +{"6003493": ["2", "3", "3", "1", "2", "2", "1"]} +{"6003493": ["2", "3", "3", "1", "2", "2", "1"]} +{"8001609": ["3", "1", "3", "2", "1", "3", "1"]} +{"3003050": ["2", "1", "3", "2", "2", "3", "1"]} +{"7004129": ["3", "3", "3", "2", "3", "3", "2"]} +{"3006451": ["2", "2", "3", "1", "2", "1", "1"]} +{"7002340": ["2", "3", "3", "2", "3", "3", "2"]} +{"5001634": ["3", "3", "1", "3", "1", "3", "1"]} +{"6004582": ["1", "1", "3", "1", "1", "1", "1"]} +{"8002534": ["1", "2", "3", "1", "1", "3", "1"]} +{"1005529": ["2", "1", "3", "1", "1", "3", "1"]} +{"8002541": ["3", "3", "3", "2", "3", "3", "2"]} +{"4002052": ["3", "3", "3", "3", "1", "1", "1"]} +{"4002052": ["3", "3", "3", "3", "1", "3", "1"]} +{"1006640": ["1", "1", "3", "3", "3", "3", "1"]} +{"1006640": ["1", "1", "3", "3", "2", "3", "1"]} +{"7003356": ["3", "3", "2", "2", "3", "3", "2"]} +{"4004117": ["3", "3", "3", "3", "1", "3", "1"]} +{"4004117": ["3", "3", "3", "3", "1", "3", "1"]} +{"1005670": ["1", "1", "3", "1", "1", "3", "1"]} +{"0003335": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006551": ["2", "1", "3", "1", "1", "3", "1"]} +{"3006662": ["3", "3", "3", "2", "2", "3", "2"]} +{"7002064": ["3", "3", "3", "2", "3", "3", "3"]} +{"8002581": ["2", "3", "3", "2", "1", "1", "1"]} +{"7003390": ["3", "3", "2", "2", "3", "3", "2"]} +{"2005087": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004845": ["2", "1", "3", "1", "1", "3", "1"]} +{"1004845": ["2", "1", "3", "1", "1", "3", "1"]} +{"3005256": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005256": ["2", "3", "3", "3", "2", "3", "2"]} +{"8001039": ["2", "3", "3", "1", "2", "3", "1"]} +{"1006892": ["1", "1", "3", "1", "3", "3", "1"]} +{"8002789": ["2", "1", "3", "1", "1", "3", "1"]} +{"1004906": ["3", "1", "3", "2", "2", "3", "1"]} +{"8001577": ["1", "1", "3", "2", "1", "3", "1"]} +{"0003128": ["3", "3", "3", "3", "3", "1", "1"]} +{"8003233": ["1", "3", "3", "2", "2", "3", "1"]} +{"2004749": ["3", "3", "3", "2", "2", "1", "1"]} +{"7003554": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003278": ["2", "1", "3", "1", "2", "3", "1"]} +{"6003216": ["3", "2", "3", "2", "1", "3", "1"]} +{"0005091": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004977": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006271": ["3", "3", "3", "3", "1", "3", "1"]} +{"7003735": ["3", "3", "3", "3", "1", "3", "1"]} +{"0005625": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001703": ["3", "2", "3", "3", "1", "3", "1"]} +{"1004867": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003465": ["3", "3", "1", "3", "1", "3", "1"]} +{"2003910": ["3", "2", "3", "3", "None", "3", "2"]} +{"1005219": ["1", "1", "3", "1", "3", "3", "3"]} +{"1005219": ["1", "1", "3", "1", "3", "3", "3"]} +{"8001051": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001404": ["2", "3", "3", "2", "3", "3", "2"]} +{"1005385": ["2", "1", "3", "1", "3", "3", "1"]} +{"2005252": ["3", "2", "3", "2", "1", "2", "1"]} +{"4004699": ["2", "3", "3", "1", "1", "3", "1"]} +{"6004312": ["2", "1", "3", "1", "1", "2", "1"]} +{"5001952": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004421": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006703": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005160": ["None", "3", "3", "2", "3", "3", "3"]} +{"0005163": ["2", "3", "1", "3", "2", "3", "1"]} +{"3005609": ["3", "3", "3", "1", "3", "1", "1"]} +{"3005609": ["3", "3", "3", "1", "3", "1", "1"]} +{"5001003": ["3", "3", "3", "3", "1", "3", "1"]} +{"8003367": ["2", "3", "3", "2", "1", "3", "1"]} +{"5001584": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003122": ["3", "3", "1", "3", "3", "3", "1"]} +{"3005617": ["2", "2", "3", "2", "1", "2", "1"]} +{"5001607": ["2", "2", "3", "2", "3", "1", "1"]} +{"7002653": ["3", "1", "3", "3", "1", "3", "1"]} +{"0006950": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003358": ["1", "1", "3", "1", "1", "1", "1"]} +{"8003358": ["2", "1", "3", "1", "1", "1", "1"]} +{"0004853": ["3", "3", "1", "3", "3", "3", "1"]} +{"0004853": ["3", "3", "1", "3", "2", "3", "1"]} +{"8001419": ["1", "2", "3", "2", "1", "3", "1"]} +{"0006997": ["3", "3", "3", "3", "3", "2", "2"]} +{"2007335": ["2", "2", "3", "1", "3", "1", "1"]} +{"4004357": ["3", "3", "3", "1", "2", "3", "1"]} +{"0006186": ["3", "3", "2", "3", "1", "3", "1"]} +{"3004560": ["2", "3", "3", "3", "1", "3", "1"]} +{"3003925": ["2", "3", "2", "3", "1", "1", "1"]} +{"3005966": ["2", "2", "3", "2", "3", "3", "2"]} +{"7003307": ["2", "3", "3", "1", "1", "3", "1"]} +{"4004919": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005486": ["3", "3", "2", "3", "2", "3", "2"]} +{"5001029": ["3", "3", "1", "3", "1", "3", "1"]} +{"4004138": ["3", "2", "1", "3", "3", "1", "1"]} +{"0003683": ["2", "3", "3", "3", "2", "2", "2"]} +{"2007556": ["3", "3", "3", "2", "1", "3", "1"]} +{"1003670": ["1", "1", "3", "1", "1", "1", "1"]} +{"4004606": ["3", "2", "3", "2", "3", "1", "1"]} +{"0003515": ["3", "3", "1", "3", "3", "3", "1"]} +{"5001266": ["3", "3", "3", "2", "3", "1", "1"]} +{"3004426": ["1", "1", "3", "1", "1", "3", "1"]} +{"7003225": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003373": ["1", "3", "3", "1", "2", "1", "1"]} +{"5001327": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001327": ["3", "3", "3", "2", "1", "3", "1"]} +{"4004243": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006657": ["2", "3", "2", "2", "3", "3", "2"]} +{"1003897": ["2", "3", "3", "1", "1", "3", "1"]} +{"0004744": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007008": ["3", "3", "3", "2", "3", "3", "1"]} +{"2007008": ["3", "3", "3", "2", "1", "3", "1"]} +{"7003643": ["3", "3", "3", "2", "2", "3", "3"]} +{"2003908": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006451": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005347": ["2", "1", "3", "3", "1", "3", "1"]} +{"6004027": ["1", "3", "3", "2", "1", "3", "1"]} +{"8002772": ["2", "3", "3", "2", "2", "1", "1"]} +{"8002772": ["2", "3", "3", "2", "2", "1", "1"]} +{"8002772": ["2", "3", "3", "2", "2", "1", "1"]} +{"3003106": ["3", "2", "3", "2", "3", "2", "2"]} +{"2003642": ["3", "1", "3", "1", "1", "1", "1"]} +{"1004100": ["2", "1", "3", "1", "1", "3", "1"]} +{"4003561": ["3", "3", "2", "2", "3", "3", "2"]} +{"2006488": ["3", "3", "3", "2", "3", "3", "3"]} +{"7002532": ["3", "2", "3", "2", "3", "3", "1"]} +{"4004454": ["3", "1", "3", "1", "3", "3", "1"]} +{"0004766": ["3", "3", "3", "2", "3", "2", "2"]} +{"3006685": ["2", "1", "3", "2", "1", "3", "1"]} +{"3006685": ["2", "1", "3", "2", "1", "2", "1"]} +{"6003254": ["2", "1", "3", "1", "3", "1", "1"]} +{"4003271": ["2", "1", "3", "1", "3", "3", "1"]} +{"2005781": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006498": ["2", "3", "3", "3", "2", "1", "1"]} +{"6002984": ["1", "1", "3", "1", "3", "2", "1"]} +{"1004971": ["1", "1", "3", "1", "2", "3", "1"]} +{"5001770": ["2", "3", "2", "2", "2", "2", "2"]} +{"7004372": ["3", "3", "3", "2", "3", "3", "2"]} +{"2006672": ["2", "3", "3", "2", "1", "3", "1"]} +{"6003225": ["1", "1", "3", "1", "1", "3", "1"]} +{"8002623": ["2", "3", "3", "2", "1", "3", "1"]} +{"2003860": ["3", "3", "2", "3", "2", "3", "2"]} +{"2003591": ["3", "3", "1", "3", "3", "3", "1"]} +{"3004661": ["2", "3", "3", "2", "1", "2", "1"]} +{"8001446": ["2", "3", "3", "2", "2", "1", "1"]} +{"8001824": ["2", "3", "3", "1", "3", "3", "1"]} +{"3005993": ["2", "3", "1", "3", "2", "3", "1"]} +{"1006611": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005818": ["1", "1", "3", "1", "1", "3", "1"]} +{"2004838": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001487": ["3", "3", "2", "2", "2", "3", "2"]} +{"1005393": ["1", "1", "3", "1", "2", "3", "1"]} +{"3005976": ["2", "3", "3", "1", "2", "3", "1"]} +{"2007860": ["3", "3", "1", "3", "1", "3", "1"]} +{"3005199": ["2", "3", "1", "3", "1", "2", "1"]} +{"1004252": ["2", "1", "3", "3", "2", "3", "1"]} +{"1006629": ["1", "1", "3", "1", "3", "3", "1"]} +{"3003849": ["2", "1", "3", "3", "1", "1", "1"]} +{"7003451": ["3", "3", "3", "2", "1", "1", "1"]} +{"3006979": ["1", "1", "3", "1", "3", "3", "1"]} +{"2005887": ["2", "3", "2", "2", "3", "1", "1"]} +{"7004681": ["2", "3", "3", "1", "2", "1", "1"]} +{"4002468": ["3", "2", "3", "3", "1", "1", "1"]} +{"3003413": ["1", "3", "3", "1", "2", "1", "1"]} +{"6004735": ["1", "3", "3", "1", "3", "3", "1"]} +{"4003199": ["3", "3", "1", "3", "1", "3", "1"]} +{"2004316": ["1", "1", "3", "1", "3", "1", "1"]} +{"0005877": ["3", "1", "3", "1", "2", "1", "1"]} +{"6002050": ["2", "1", "3", "1", "1", "3", "1"]} +{"1006963": ["2", "1", "3", "1", "3", "3", "1"]} +{"0003862": ["3", "3", "3", "2", "3", "1", "1"]} +{"0003080": ["3", "3", "3", "2", "1", "1", "1"]} +{"8003471": ["2", "1", "3", "1", "1", "1", "1"]} +{"0005909": ["2", "2", "3", "3", "3", "1", "1"]} +{"3006088": ["3", "2", "3", "1", "1", "3", "1"]} +{"7004701": ["3", "3", "2", "2", "3", "3", "2"]} +{"1003611": ["2", "1", "3", "1", "1", "3", "1"]} +{"3006323": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002283": ["2", "1", "3", "1", "2", "1", "1"]} +{"2005200": ["3", "3", "1", "3", "2", "3", "1"]} +{"6002231": ["1", "1", "None", "1", "1", "1", "1"]} +{"8002410": ["3", "1", "3", "3", "1", "1", "1"]} +{"6004156": ["2", "1", "3", "1", "1", "3", "1"]} +{"5001513": ["2", "3", "3", "2", "1", "3", "1"]} +{"1003943": ["2", "1", "3", "1", "1", "3", "1"]} +{"3003801": ["3", "3", "1", "3", "1", "1", "1"]} +{"5001736": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001573": ["3", "1", "3", "3", "1", "1", "1"]} +{"7003496": ["3", "3", "2", "2", "2", "3", "2"]} +{"2003464": ["3", "3", "2", "2", "3", "3", "2"]} +{"6003502": ["2", "1", "3", "1", "1", "3", "1"]} +{"4004799": ["3", "3", "2", "3", "3", "1", "1"]} +{"0004265": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004497": ["2", "3", "1", "3", "1", "3", "1"]} +{"1005972": ["3", "1", "3", "1", "1", "3", "1"]} +{"2006391": ["3", "3", "2", "2", "1", "1", "1"]} +{"1006493": ["1", "1", "3", "3", "1", "3", "1"]} +{"1006493": ["2", "1", "3", "3", "1", "3", "1"]} +{"6004217": ["2", "1", "3", "1", "1", "3", "3"]} +{"1003538": ["2", "1", "3", "1", "1", "3", "1"]} +{"3003097": ["2", "3", "2", "3", "1", "3", "1"]} +{"1003334": ["3", "1", "3", "1", "None", "2", "1"]} +{"6003948": ["3", "3", "2", "3", "3", "3", "2"]} +{"8001519": ["3", "3", "3", "3", "1", "3", "1"]} +{"6002460": ["2", "3", "3", "1", "3", "3", "1"]} +{"6002486": ["3", "2", "3", "2", "1", "2", "1"]} +{"1005115": ["2", "1", "3", "1", "1", "3", "1"]} +{"4004153": ["3", "2", "3", "2", "1", "3", "1"]} +{"6003130": ["3", "1", "3", "1", "1", "1", "1"]} +{"1004463": ["2", "1", "3", "3", "2", "3", "1"]} +{"4004218": ["3", "2", "3", "2", "1", "1", "1"]} +{"4004586": ["3", "3", "3", "2", "3", "3", "2"]} +{"3005334": ["3", "3", "2", "2", "3", "3", "2"]} +{"6003813": ["3", "3", "3", "2", "3", "3", "2"]} +{"8001289": ["2", "3", "2", "1", "1", "3", "1"]} +{"4003113": ["3", "3", "3", "3", "1", "1", "1"]} +{"3003366": ["2", "3", "3", "3", "1", "1", "1"]} +{"1004231": ["3", "1", "3", "1", "1", "2", "1"]} +{"7004137": ["3", "3", "2", "2", "3", "2", "2"]} +{"8003755": ["1", "3", "3", "1", "2", "1", "1"]} +{"3004537": ["3", "2", "3", "1", "1", "3", "1"]} +{"0004786": ["3", "3", "3", "2", "3", "2", "1"]} +{"7003623": ["3", "3", "2", "2", "2", "1", "1"]} +{"6003753": ["2", "3", "2", "2", "3", "3", "1"]} +{"1006800": ["2", "3", "3", "1", "1", "3", "1"]} +{"3004656": ["3", "3", "1", "3", "1", "3", "1"]} +{"1005058": ["2", "1", "3", "1", "1", "3", "1"]} +{"0006986": ["3", "3", "2", "3", "1", "1", "1"]} +{"6003904": ["3", "1", "3", "1", "1", "1", "1"]} +{"1006036": ["2", "1", "3", "1", "3", "3", "1"]} +{"0003557": ["3", "1", "3", "1", "3", "1", "1"]} +{"1003123": ["2", "1", "3", "1", "2", "3", "1"]} +{"1006940": ["2", "1", "3", "1", "2", "3", "1"]} +{"1006833": ["2", "3", "3", "2", "1", "3", "1"]} +{"3004880": ["2", "3", "3", "3", "2", "1", "1"]} +{"1004523": ["2", "1", "3", "1", "3", "3", "1"]} +{"8001719": ["2", "3", "3", "2", "1", "3", "1"]} +{"8001629": ["2", "3", "2", "2", "1", "3", "1"]} +{"3005879": ["3", "3", "1", "3", "2", "3", "1"]} +{"1003911": ["2", "1", "3", "1", "3", "3", "1"]} +{"6002771": ["2", "1", "3", "1", "1", "1", "1"]} +{"6002798": ["3", "2", "3", "2", "3", "2", "2"]} +{"1005227": ["2", "1", "3", "1", "1", "3", "1"]} +{"6003387": ["2", "2", "3", "2", "1", "3", "1"]} +{"8003326": ["1", "1", "3", "1", "3", "2", "1"]} +{"1006113": ["2", "1", "3", "3", "1", "2", "1"]} +{"6002231": ["1", "1", "3", "1", "1", "1", "1"]} +{"8003267": ["2", "1", "3", "1", "1", "1", "1"]} +{"1005364": ["2", "1", "3", "1", "2", "2", "2"]} +{"1003334": ["3", "1", "3", "1", "3", "2", "1"]} +{"2005358": ["3", "3", "3", "2", "3", "3", "2"]} +{"3003193": ["3", "3", "3", "3", "1", "3", "1"]} +{"2003910": ["3", "2", "3", "3", "3", "3", "2"]} +{"0005160": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002856": ["3", "1", "3", "1", "2", "1", "1"]} +{"8001506": ["2", "2", "3", "1", "2", "1", "1"]} +{"8003591": ["2", "1", "3", "2", "1", "3", "1"]} +{"2004819": ["3", "3", "2", "3", "2", "3", "2"]} +{"6002283": ["3", "1", "3", "1", "2", "1", "1"]} +{"5001513": ["3", "3", "3", "2", "1", "3", "1"]} diff --git a/webpage/res/res_rd1_16k/ans_abhranil.jsonl b/webpage/res/res_rd1_16k/ans_abhranil.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0b66745b154363bb04346b1e4badf58897ad8333 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_abhranil.jsonl @@ -0,0 +1,2033 @@ +{"3003975": ["1", "1", "3", "1", "1", "2", "1"]} +{"0005922": ["3", "3", "1", "3", "1", "3", "3"]} +{"1005591": ["3", "2", "3", "2", "1", "1", "2"]} +{"1005591": ["3", "2", "3", "3", "1", "1", "1"]} +{"0005922": ["3", "3", "1", "3", "1", "3", "1"]} +{"8001880": ["1", "1", "3", "1", "1", "1", "1"]} +{"4002768": ["3", "3", "2", "3", "1", "3", "1"]} +{"3003975": ["2", "1", "3", "2", "2", "1", "2"]} +{"0005922": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005591": ["3", "3", "3", "1", "2", "2", "3"]} +{"8001880": ["1", "3", "3", "1", "3", "2", "1"]} +{"4002768": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002675": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004904": ["3", "3", "3", "2", "3", "1", "3"]} +{"0004611": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007072": ["2", "3", "2", "3", "3", "3", "2"]} +{"2003230": ["2", "3", "2", "3", "3", "3", "2"]} +{"7004563": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006796": ["3", "3", "3", "3", "3", "1", "3"]} +{"3006459": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003611": ["2", "3", "3", "2", "1", "1", "1"]} +{"0005578": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003377": ["3", "3", "3", "2", "3", "3", "3"]} +{"2003117": ["2", "3", "3", "3", "3", "2", "3"]} +{"2003117": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001549": ["2", "2", "3", "2", "1", "2", "1"]} +{"3005119": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003968": ["3", "3", "2", "3", "1", "2", "1"]} +{"2003839": ["3", "3", "3", "3", "3", "2", "3"]} +{"4004303": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003384": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002555": ["3", "3", "3", "2", "3", "1", "3"]} +{"8002941": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004241": ["2", "1", "3", "1", "2", "1", "1"]} +{"2006577": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004790": ["3", "3", "3", "2", "2", "2", "2"]} +{"4002364": ["2", "3", "3", "3", "2", "2", "2"]} +{"2006125": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002233": ["2", "3", "3", "3", "3", "1", "2"]} +{"1003596": ["3", "3", "3", "3", "3", "1", "3"]} +{"0003369": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007775": ["3", "3", "2", "3", "2", "3", "2"]} +{"6003932": ["2", "3", "3", "3", "3", "2", "3"]} +{"0005995": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002528": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003546": ["3", "2", "3", "2", "2", "2", "3"]} +{"6002841": ["2", "2", "3", "2", "3", "1", "2"]} +{"3004154": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004368": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003805": ["3", "3", "2", "3", "3", "2", "None"]} +{"0003805": ["3", "3", "2", "3", "3", "2", "3"]} +{"1004298": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004432": ["3", "3", "2", "3", "2", "3", "2"]} +{"2007494": ["3", "3", "3", "3", "3", "1", "3"]} +{"3006721": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005237": ["2", "3", "3", "2", "2", "2", "2"]} +{"5001841": ["3", "3", "1", "3", "1", "2", "2"]} +{"0004395": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007050": ["3", "3", "3", "3", "1", "3", "3"]} +{"8002866": ["1", "3", "3", "3", "1", "2", "1"]} +{"0004141": ["3", "3", "3", "3", "2", "2", "3"]} +{"2005931": ["1", "3", "2", "3", "1", "3", "1"]} +{"6002746": ["3", "3", "3", "3", "2", "2", "3"]} +{"7003086": ["3", "3", "3", "3", "2", "2", "3"]} +{"2006034": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004691": ["3", "2", "3", "2", "2", "2", "2"]} +{"7003092": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005977": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004557": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001485": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004358": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005856": ["3", "2", "3", "2", "3", "3", "3"]} +{"8003858": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003156": ["1", "3", "3", "3", "3", "1", "2"]} +{"1004127": ["2", "1", "3", "3", "2", "3", "3"]} +{"7002324": ["3", "3", "3", "3", "2", "2", "2"]} +{"3006399": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001079": ["2", "3", "3", "3", "2", "3", "3"]} +{"5001259": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006483": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003736": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004146": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006927": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003141": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003849": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002588": ["2", "3", "3", "3", "2", "3", "1"]} +{"8002588": ["None", "None", "None", "None", "None", "None", "2"]} +{"8002588": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001667": ["3", "3", "3", "2", "2", "2", "3"]} +{"4003030": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006634": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001658": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006157": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002413": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004936": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001069": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004085": ["2", "3", "3", "3", "2", "2", "2"]} +{"2007441": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002982": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004443": ["3", "1", "3", "3", "2", "3", "2"]} +{"2004046": ["3", "3", "3", "3", "2", "2", "3"]} +{"3003884": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001501": ["3", "3", "3", "3", "1", "3", "3"]} +{"0004160": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003464": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003608": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004830": ["3", "2", "3", "3", "2", "2", "2"]} +{"1004734": ["2", "1", "3", "2", "3", "2", "3"]} +{"2003105": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004899": ["3", "3", "1", "3", "2", "3", "3"]} +{"3003151": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004947": ["3", "1", "3", "2", "1", "2", "1"]} +{"0003578": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006687": ["2", "3", "2", "3", "1", "2", "2"]} +{"3004554": ["3", "2", "3", "3", "3", "2", "2"]} +{"2003586": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003190": ["2", "1", "3", "2", "1", "1", "1"]} +{"2004731": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002708": ["2", "3", "3", "3", "1", "2", "2"]} +{"6003534": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002934": ["3", "2", "3", "3", "3", "2", "3"]} +{"8001853": ["2", "3", "3", "3", "3", "3", "2"]} +{"2004133": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006666": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004241": ["3", "2", "3", "3", "2", "2", "3"]} +{"6004144": ["2", "3", "3", "3", "3", "3", "2"]} +{"7004976": ["2", "3", "3", "3", "3", "2", "2"]} +{"4003307": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002718": ["2", "3", "3", "2", "1", "3", "1"]} +{"6003566": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006713": ["3", "3", "1", "3", "2", "3", "3"]} +{"1003273": ["3", "2", "3", "3", "2", "2", "2"]} +{"2004559": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004058": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007020": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003019": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003029": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002411": ["3", "3", "3", "3", "1", "3", "3"]} +{"1006872": ["3", "2", "3", "3", "3", "2", "3"]} +{"8002990": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003551": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003208": ["2", "1", "3", "3", "3", "2", "2"]} +{"1006173": ["3", "2", "3", "2", "2", "2", "2"]} +{"6003349": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007240": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002549": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007200": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001434": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004999": ["2", "3", "2", "3", "1", "2", "1"]} +{"1006791": ["3", "2", "3", "3", "2", "3", "3"]} +{"7003920": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001904": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006805": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002915": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001151": ["3", "2", "3", "3", "3", "2", "3"]} +{"8001417": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002824": ["2", "2", "3", "3", "3", "2", "2"]} +{"0004881": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006619": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003269": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003617": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001025": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003052": ["1", "2", "3", "3", "2", "2", "1"]} +{"3004267": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003087": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004204": ["3", "3", "3", "3", "2", "2", "3"]} +{"4004638": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002607": ["3", "3", "3", "3", "1", "3", "2"]} +{"3003229": ["1", "3", "2", "3", "2", "3", "1"]} +{"7003512": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003966": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005877": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004135": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002012": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004217": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005783": ["2", "3", "2", "3", "2", "3", "3"]} +{"3004959": ["2", "2", "3", "3", "2", "2", "2"]} +{"7004974": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002187": ["3", "3", "3", "2", "1", "2", "2"]} +{"8001082": ["2", "3", "3", "3", "2", "3", "3"]} +{"0004552": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004403": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004831": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004780": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003630": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006855": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006746": ["2", "3", "3", "3", "2", "3", "2"]} +{"2003243": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002421": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005126": ["2", "2", "3", "3", "1", "3", "1"]} +{"8002819": ["3", "3", "3", "3", "3", "3", "2"]} +{"7004582": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004696": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004877": ["3", "1", "3", "2", "3", "3", "3"]} +{"1003434": ["3", "2", "3", "3", "2", "3", "2"]} +{"6002645": ["3", "2", "3", "3", "3", "2", "2"]} +{"0003352": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006617": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004909": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005114": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005889": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006138": ["2", "1", "3", "3", "3", "3", "2"]} +{"1004933": ["3", "1", "3", "3", "3", "2", "2"]} +{"8001752": ["3", "3", "3", "2", "2", "3", "2"]} +{"7002458": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002030": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002053": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004086": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005290": ["2", "1", "3", "2", "2", "3", "1"]} +{"8003509": ["2", "2", "3", "3", "3", "3", "3"]} +{"4004412": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006099": ["3", "1", "3", "2", "3", "3", "2"]} +{"3004428": ["3", "3", "3", "3", "3", "2", "2"]} +{"5001185": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003504": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004773": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004239": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004239": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003977": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005664": ["3", "1", "3", "2", "2", "2", "2"]} +{"4003885": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006974": ["3", "3", "2", "3", "2", "2", "2"]} +{"0004202": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005207": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006035": ["3", "3", "3", "2", "3", "1", "2"]} +{"3004718": ["2", "2", "3", "3", "1", "3", "1"]} +{"4004134": ["3", "2", "2", "2", "3", "3", "2"]} +{"7002260": ["3", "3", "1", "3", "2", "3", "2"]} +{"3004320": ["2", "3", "3", "3", "2", "3", "2"]} +{"4002867": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003724": ["1", "2", "3", "3", "1", "2", "1"]} +{"1005147": ["3", "2", "3", "3", "3", "2", "2"]} +{"1004884": ["3", "1", "3", "3", "3", "3", "2"]} +{"3005602": ["2", "3", "3", "3", "3", "2", "1"]} +{"3005602": ["2", "3", "3", "3", "3", "2", "2"]} +{"7004867": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003736": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004939": ["2", "3", "3", "3", "3", "3", "2"]} +{"1005630": ["3", "1", "3", "3", "3", "3", "2"]} +{"3005745": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006914": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004906": ["3", "2", "3", "3", "3", "1", "2"]} +{"1003520": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003527": ["2", "2", "3", "3", "2", "3", "2"]} +{"2006605": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003445": ["2", "1", "3", "3", "3", "2", "2"]} +{"6003652": ["3", "2", "3", "3", "3", "3", "3"]} +{"6002615": ["2", "1", "3", "3", "3", "3", "1"]} +{"0003390": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003548": ["3", "2", "3", "3", "3", "2", "3"]} +{"4003834": ["3", "3", "1", "3", "2", "3", "3"]} +{"8002246": ["1", "2", "3", "3", "3", "2", "1"]} +{"4003677": ["3", "2", "3", "3", "2", "3", "3"]} +{"2007311": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003804": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003455": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004291": ["2", "3", "3", "3", "3", "2", "2"]} +{"8002390": ["1", "2", "3", "3", "1", "2", "1"]} +{"8001384": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002391": ["2", "1", "3", "3", "3", "2", "2"]} +{"5001457": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003819": ["1", "3", "3", "3", "2", "3", "1"]} +{"5001844": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006824": ["2", "2", "3", "3", "3", "2", "2"]} +{"3003554": ["2", "3", "3", "3", "2", "2", "2"]} +{"8001632": ["3", "3", "3", "2", "2", "2", "2"]} +{"8002686": ["2", "2", "3", "3", "3", "2", "1"]} +{"2006269": ["3", "2", "3", "3", "2", "1", "2"]} +{"3005783": ["3", "3", "3", "2", "3", "2", "2"]} +{"0004938": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002330": ["3", "3", "3", "2", "3", "2", "2"]} +{"1006191": ["2", "1", "3", "3", "3", "2", "1"]} +{"1003365": ["3", "3", "3", "2", "3", "2", "2"]} +{"1003350": ["3", "2", "3", "2", "3", "2", "2"]} +{"8003372": ["2", "3", "3", "3", "2", "2", "1"]} +{"1006971": ["1", "3", "3", "3", "3", "3", "2"]} +{"5001525": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006467": ["3", "1", "3", "2", "2", "2", "1"]} +{"1006679": ["2", "1", "3", "3", "3", "2", "1"]} +{"3003888": ["3", "2", "3", "2", "3", "2", "2"]} +{"2004812": ["3", "3", "1", "3", "2", "3", "3"]} +{"6004788": ["2", "2", "3", "2", "2", "3", "1"]} +{"3004106": ["3", "2", "3", "3", "3", "2", "2"]} +{"3005109": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003368": ["2", "3", "3", "2", "3", "3", "3"]} +{"1005315": ["3", "3", "3", "2", "2", "3", "3"]} +{"0005839": ["2", "3", "3", "3", "3", "3", "3"]} +{"4003637": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002171": ["2", "3", "3", "2", "3", "2", "2"]} +{"0004066": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003473": ["2", "3", "3", "2", "2", "2", "1"]} +{"2007239": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004714": ["2", "2", "3", "2", "3", "3", "1"]} +{"1004703": ["2", "1", "3", "2", "None", "3", "1"]} +{"8003091": ["3", "3", "3", "2", "2", "3", "2"]} +{"0004657": ["3", "3", "3", "2", "2", "3", "3"]} +{"2003092": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001072": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007780": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004391": ["3", "2", "3", "2", "2", "3", "3"]} +{"0003063": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006011": ["3", "3", "3", "3", "2", "2", "3"]} +{"8001844": ["2", "3", "3", "2", "3", "3", "1"]} +{"5001642": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006794": ["3", "2", "3", "2", "3", "2", "2"]} +{"1005897": ["3", "1", "3", "3", "1", "3", "1"]} +{"7002385": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006535": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005138": ["3", "3", "3", "2", "3", "2", "3"]} +{"0003236": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006646": ["3", "3", "3", "3", "2", "1", "2"]} +{"0003846": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003922": ["2", "2", "3", "3", "2", "2", "1"]} +{"5001370": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006813": ["3", "2", "3", "2", "2", "3", "3"]} +{"5001052": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002765": ["3", "3", "3", "2", "2", "3", "2"]} +{"1006844": ["2", "1", "3", "3", "3", "3", "2"]} +{"3005971": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004224": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004776": ["2", "3", "3", "2", "2", "3", "1"]} +{"2003704": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003627": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004550": ["3", "1", "3", "2", "2", "3", "3"]} +{"8001083": ["3", "3", "3", "2", "3", "3", "3"]} +{"6002117": ["2", "1", "3", "2", "3", "2", "1"]} +{"0006359": ["3", "3", "2", "3", "1", "3", "1"]} +{"6002094": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003327": ["2", "2", "3", "3", "3", "2", "1"]} +{"3005751": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005880": ["3", "3", "2", "3", "1", "3", "3"]} +{"7003126": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007409": ["3", "3", "3", "2", "2", "2", "3"]} +{"1005778": ["3", "1", "3", "3", "1", "3", "2"]} +{"8002299": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003762": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003488": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007660": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003616": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005302": ["3", "3", "2", "3", "2", "3", "3"]} +{"7003078": ["3", "3", "3", "2", "3", "2", "3"]} +{"6004272": ["3", "2", "2", "2", "1", "3", "1"]} +{"7004781": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001581": ["3", "3", "2", "3", "2", "3", "2"]} +{"6003746": ["2", "2", "3", "3", "3", "2", "1"]} +{"8001624": ["1", "3", "3", "2", "3", "3", "1"]} +{"3006156": ["3", "3", "1", "3", "2", "3", "2"]} +{"6003820": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003370": ["3", "2", "3", "3", "3", "3", "3"]} +{"0005061": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003918": ["2", "3", "3", "2", "1", "3", "1"]} +{"7004046": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006628": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006375": ["2", "1", "3", "2", "3", "2", "1"]} +{"2004782": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002801": ["1", "2", "3", "2", "1", "3", "1"]} +{"0003623": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007351": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002946": ["2", "3", "3", "2", "1", "3", "1"]} +{"3005365": ["2", "3", "2", "3", "2", "3", "2"]} +{"7002955": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001111": ["2", "2", "3", "2", "1", "3", "1"]} +{"8002095": ["1", "2", "3", "3", "3", "3", "1"]} +{"2007534": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003516": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002394": ["3", "3", "3", "3", "3", "2", "3"]} +{"4004671": ["3", "2", "3", "3", "2", "3", "3"]} +{"1006362": ["3", "1", "3", "2", "2", "3", "2"]} +{"3006625": ["3", "2", "3", "3", "3", "2", "3"]} +{"7003327": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006377": ["2", "3", "2", "3", "3", "2", "1"]} +{"1004084": ["2", "3", "3", "2", "3", "2", "2"]} +{"1006521": ["2", "1", "3", "2", "1", "2", "1"]} +{"7003812": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003119": ["3", "3", "3", "3", "2", "2", "1"]} +{"0006430": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003250": ["2", "3", "2", "3", "2", "3", "2"]} +{"3005258": ["1", "3", "3", "3", "1", "3", "1"]} +{"4004792": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006993": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003879": ["2", "3", "3", "3", "2", "3", "2"]} +{"1003473": ["3", "1", "3", "2", "2", "3", "1"]} +{"5001848": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003106": ["1", "2", "3", "3", "1", "3", "1"]} +{"3006784": ["2", "1", "3", "3", "3", "3", "1"]} +{"2003208": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003398": ["2", "1", "3", "2", "3", "2", "3"]} +{"5001044": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003273": ["1", "3", "3", "2", "3", "3", "1"]} +{"6003756": ["2", "1", "3", "2", "3", "2", "1"]} +{"6004627": ["2", "3", "3", "2", "3", "2", "2"]} +{"3003703": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003649": ["1", "2", "3", "3", "3", "2", "1"]} +{"6004608": ["2", "1", "3", "2", "2", "2", "1"]} +{"2007442": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003046": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003311": ["2", "1", "3", "2", "3", "3", "1"]} +{"1004703": ["2", "1", "3", "2", "3", "3", "1"]} +{"3006873": ["2", "3", "3", "3", "2", "2", "1"]} +{"7004933": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003453": ["2", "3", "3", "2", "3", "1", "1"]} +{"2003699": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005597": ["3", "3", "3", "2", "3", "2", "2"]} +{"7002395": ["3", "3", "3", "2", "3", "3", "3"]} +{"6002959": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003349": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005562": ["2", "1", "3", "2", "3", "2", "1"]} +{"6003366": ["2", "1", "3", "3", "3", "2", "1"]} +{"1005794": ["2", "2", "3", "2", "3", "2", "2"]} +{"6003717": ["2", "2", "3", "3", "2", "2", "1"]} +{"0005934": ["3", "3", "3", "2", "2", "3", "3"]} +{"4004544": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003688": ["2", "3", "3", "2", "2", "2", "1"]} +{"2007109": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003667": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001493": ["3", "3", "3", "2", "2", "2", "3"]} +{"2004458": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002006": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003921": ["2", "1", "3", "2", "3", "3", "1"]} +{"1004866": ["2", "1", "3", "2", "3", "3", "1"]} +{"2003365": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002049": ["3", "3", "3", "2", "3", "3", "2"]} +{"4003963": ["3", "2", "3", "2", "2", "3", "2"]} +{"2004878": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003981": ["2", "2", "3", "2", "1", "3", "1"]} +{"2006818": ["3", "3", "3", "2", "3", "2", "3"]} +{"2005469": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004099": ["3", "1", "3", "2", "3", "2", "2"]} +{"4004585": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003793": ["1", "3", "3", "2", "2", "3", "1"]} +{"0005746": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005519": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003746": ["3", "None", "3", "3", "2", "3", "3"]} +{"3004763": ["3", "1", "3", "3", "2", "3", "2"]} +{"7002330": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002639": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003594": ["3", "2", "3", "2", "3", "3", "3"]} +{"0005247": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004895": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005360": ["2", "3", "2", "3", "3", "3", "3"]} +{"1005803": ["3", "2", "3", "2", "3", "2", "2"]} +{"8002761": ["1", "2", "3", "2", "1", "1", "1"]} +{"7002531": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002576": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005457": ["2", "1", "3", "2", "3", "3", "3"]} +{"7002938": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003733": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002790": ["3", "3", "3", "2", "3", "2", "3"]} +{"7002552": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001539": ["3", "3", "2", "3", "2", "3", "2"]} +{"3005483": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004666": ["1", "3", "3", "1", "3", "1", "1"]} +{"4004863": ["1", "1", "3", "3", "3", "3", "1"]} +{"4004531": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003318": ["2", "1", "3", "2", "2", "3", "1"]} +{"6002592": ["2", "3", "3", "2", "3", "3", "1"]} +{"4003746": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003635": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002157": ["2", "3", "3", "2", "3", "3", "1"]} +{"6003437": ["2", "3", "3", "2", "3", "2", "2"]} +{"6004412": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003452": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003941": ["1", "2", "3", "2", "3", "3", "1"]} +{"1005431": ["3", "3", "3", "2", "3", "2", "2"]} +{"0003636": ["3", "3", "3", "3", "2", "2", "3"]} +{"8003513": ["2", "3", "3", "2", "2", "3", "2"]} +{"1004244": ["3", "2", "3", "2", "2", "2", "2"]} +{"1003163": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003202": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006129": ["2", "3", "3", "1", "3", "2", "1"]} +{"1006947": ["3", "2", "3", "2", "3", "3", "3"]} +{"2004836": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002617": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004166": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002341": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003540": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006822": ["1", "2", "3", "1", "2", "2", "1"]} +{"0003512": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006044": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006935": ["2", "3", "3", "1", "3", "3", "3"]} +{"2005107": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001202": ["2", "3", "3", "2", "1", "2", "1"]} +{"8003694": ["3", "2", "3", "2", "2", "2", "3"]} +{"2003247": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006087": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003726": ["2", "3", "3", "3", "3", "2", "2"]} +{"0003674": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006998": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004409": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003851": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003071": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003025": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003498": ["2", "3", "3", "1", "3", "3", "3"]} +{"2006773": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003608": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004247": ["3", "1", "3", "2", "3", "2", "2"]} +{"3006893": ["3", "3", "3", "3", "1", "3", "3"]} +{"3005470": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004895": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003433": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005070": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004889": ["3", "None", "3", "3", "1", "2", "2"]} +{"8001671": ["2", "3", "3", "2", "2", "2", "1"]} +{"0003813": ["3", "3", "3", "3", "2", "2", "3"]} +{"7004413": ["3", "3", "3", "2", "3", "2", "3"]} +{"6002181": ["2", "1", "3", "3", "3", "3", "2"]} +{"1003713": ["3", "1", "3", "2", "3", "3", "3"]} +{"2004811": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003596": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003185": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002369": ["3", "3", "3", "3", "1", "2", "2"]} +{"8001827": ["2", "2", "3", "2", "2", "3", "1"]} +{"6002804": ["2", "3", "3", "1", "3", "3", "1"]} +{"7004406": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003755": ["3", "3", "1", "3", "2", "3", "2"]} +{"0004889": ["3", "3", "3", "3", "1", "2", "2"]} +{"2007135": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004201": ["2", "3", "3", "2", "2", "2", "1"]} +{"8003537": ["2", "3", "3", "3", "2", "3", "1"]} +{"1003246": ["2", "1", "3", "1", "2", "3", "1"]} +{"3005054": ["2", "3", "3", "2", "2", "2", "1"]} +{"6003072": ["3", "1", "3", "2", "2", "3", "2"]} +{"7004714": ["3", "3", "3", "2", "2", "3", "2"]} +{"2006590": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003221": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003404": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006622": ["3", "2", "3", "2", "2", "2", "2"]} +{"0005668": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004475": ["3", "3", "3", "2", "2", "3", "3"]} +{"8002116": ["1", "3", "3", "2", "2", "3", "1"]} +{"6002327": ["1", "3", "3", "2", "2", "3", "1"]} +{"2004508": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006618": ["3", "3", "3", "2", "2", "3", "3"]} +{"3004671": ["3", "3", "3", "2", "2", "3", "3"]} +{"2004128": ["3", "3", "3", "2", "2", "2", "2"]} +{"4004050": ["3", "3", "3", "2", "3", "2", "3"]} +{"7004634": ["2", "2", "3", "2", "2", "3", "1"]} +{"5001520": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005661": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003968": ["1", "3", "3", "2", "3", "3", "1"]} +{"6002337": ["1", "3", "3", "2", "3", "3", "1"]} +{"8003259": ["1", "3", "3", "2", "3", "3", "1"]} +{"7003492": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004489": ["2", "3", "3", "3", "3", "1", "2"]} +{"6002332": ["1", "3", "3", "2", "3", "3", "1"]} +{"5001885": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005466": ["3", "2", "3", "2", "2", "3", "3"]} +{"8001385": ["2", "3", "3", "2", "3", "3", "2"]} +{"2005402": ["3", "3", "3", "2", "3", "3", "3"]} +{"8001197": ["2", "3", "3", "2", "3", "3", "1"]} +{"0004665": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002217": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002435": ["3", "1", "3", "2", "2", "2", "1"]} +{"6003370": ["2", "3", "3", "2", "1", "2", "1"]} +{"1003661": ["3", "1", "3", "2", "3", "3", "3"]} +{"2005360": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001145": ["1", "3", "3", "2", "3", "3", "1"]} +{"8001137": ["1", "3", "3", "2", "1", "3", "1"]} +{"8001137": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005748": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006317": ["2", "2", "3", "2", "1", "3", "1"]} +{"6004514": ["1", "2", "3", "2", "3", "3", "1"]} +{"2007446": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002356": ["1", "3", "3", "2", "3", "3", "2"]} +{"0004970": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001411": ["2", "3", "3", "2", "2", "3", "2"]} +{"1003567": ["3", "3", "3", "1", "2", "2", "3"]} +{"8002706": ["3", "3", "3", "2", "3", "3", "2"]} +{"0004173": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002223": ["3", "2", "3", "2", "2", "3", "2"]} +{"7003791": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005932": ["3", "3", "3", "2", "1", "3", "2"]} +{"2007651": ["3", "3", "3", "2", "2", "3", "3"]} +{"5001830": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002003": ["3", "3", "3", "3", "2", "2", "3"]} +{"2003880": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002262": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004632": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005284": ["3", "3", "2", "3", "2", "2", "3"]} +{"8001313": ["1", "3", "3", "2", "3", "2", "1"]} +{"6003700": ["2", "3", "3", "1", "3", "3", "1"]} +{"1003158": ["1", "2", "3", "2", "3", "3", "1"]} +{"0006686": ["3", "3", "3", "3", "2", "2", "3"]} +{"3006690": ["2", "2", "3", "1", "3", "2", "1"]} +{"2004657": ["2", "1", "3", "2", "3", "3", "1"]} +{"0005015": ["3", "2", "3", "3", "3", "1", "2"]} +{"8002712": ["2", "3", "3", "2", "3", "3", "1"]} +{"7004266": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003303": ["3", "3", "3", "2", "2", "3", "3"]} +{"7002302": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006594": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005781": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003613": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004687": ["3", "2", "3", "2", "3", "3", "3"]} +{"4003863": ["3", "2", "3", "3", "2", "3", "3"]} +{"6003001": ["2", "3", "3", "1", "3", "3", "2"]} +{"0006817": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004259": ["3", "1", "3", "2", "3", "3", "1"]} +{"1005695": ["2", "2", "3", "2", "3", "3", "1"]} +{"3004149": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001431": ["3", "3", "3", "1", "3", "3", "2"]} +{"1005356": ["3", "2", "3", "2", "2", "3", "3"]} +{"6002279": ["1", "3", "3", "2", "2", "3", "2"]} +{"7003221": ["3", "3", "3", "2", "3", "2", "3"]} +{"3005367": ["2", "3", "3", "1", "3", "3", "1"]} +{"0005551": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003438": ["1", "3", "3", "3", "2", "3", "1"]} +{"2004643": ["3", "3", "3", "2", "3", "3", "2"]} +{"6003808": ["1", "3", "3", "2", "2", "3", "1"]} +{"2003016": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007179": ["3", "3", "3", "2", "2", "2", "2"]} +{"2007179": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005555": ["3", "3", "3", "2", "2", "2", "2"]} +{"6002098": ["2", "3", "3", "3", "3", "3", "2"]} +{"1003687": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003384": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003565": ["2", "2", "3", "2", "3", "2", "1"]} +{"8003434": ["1", "3", "3", "2", "3", "2", "1"]} +{"6004644": ["3", "2", "3", "2", "1", "3", "2"]} +{"8002787": ["1", "2", "3", "2", "3", "2", "1"]} +{"7002597": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004571": ["2", "2", "3", "2", "1", "3", "1"]} +{"1004846": ["2", "3", "3", "1", "3", "3", "1"]} +{"0004755": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007022": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005751": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007219": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006241": ["2", "1", "3", "2", "3", "3", "1"]} +{"6003608": ["1", "3", "3", "2", "3", "3", "2"]} +{"3006004": ["3", "3", "3", "2", "3", "2", "2"]} +{"2007588": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003486": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004371": ["1", "3", "3", "2", "2", "3", "2"]} +{"6003609": ["1", "2", "3", "2", "2", "2", "1"]} +{"7004827": ["3", "3", "3", "2", "3", "2", "3"]} +{"2006234": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003713": ["1", "3", "3", "2", "3", "3", "3"]} +{"6003609": ["1", "2", "3", "2", "2", "2", "1"]} +{"3005316": ["1", "3", "3", "2", "2", "2", "1"]} +{"3004394": ["3", "3", "3", "2", "2", "3", "2"]} +{"3003942": ["2", "2", "3", "2", "3", "3", "1"]} +{"0005166": ["2", "3", "3", "1", "3", "2", "2"]} +{"6004971": ["1", "3", "3", "2", "3", "3", "1"]} +{"5001422": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003410": ["3", "2", "3", "2", "2", "2", "2"]} +{"6004859": ["3", "2", "3", "3", "2", "3", "3"]} +{"1003083": ["1", "2", "3", "1", "2", "2", "1"]} +{"0003485": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003846": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004592": ["2", "3", "3", "2", "2", "3", "1"]} +{"0004592": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004684": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004124": ["1", "2", "3", "1", "3", "3", "1"]} +{"4004046": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005276": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001322": ["3", "3", "2", "3", "2", "3", "3"]} +{"7003270": ["2", "3", "3", "3", "1", "2", "1"]} +{"4003505": ["2", "3", "3", "3", "2", "3", "3"]} +{"4004644": ["2", "2", "3", "2", "1", "2", "1"]} +{"2007836": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004301": ["3", "3", "3", "2", "2", "3", "2"]} +{"1006775": ["3", "2", "3", "2", "2", "3", "3"]} +{"3006293": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003378": ["1", "3", "3", "3", "3", "3", "2"]} +{"1006460": ["2", "1", "3", "2", "3", "3", "2"]} +{"2007482": ["2", "3", "3", "2", "2", "3", "3"]} +{"1003724": ["3", "2", "3", "1", "3", "2", "3"]} +{"3003222": ["1", "2", "3", "3", "2", "3", "1"]} +{"2007557": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003223": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002319": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006919": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003129": ["1", "2", "3", "2", "3", "3", "1"]} +{"0005043": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006253": ["3", "2", "3", "1", "3", "3", "3"]} +{"6003506": ["2", "3", "3", "2", "3", "3", "2"]} +{"6004570": ["3", "2", "3", "1", "3", "3", "3"]} +{"4004271": ["3", "2", "3", "3", "3", "3", "3"]} +{"4002654": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003480": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003707": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005692": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003942": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002936": ["2", "2", "3", "3", "2", "3", "2"]} +{"1003691": ["2", "2", "3", "1", "1", "3", "1"]} +{"4004525": ["2", "2", "3", "2", "2", "3", "1"]} +{"4004480": ["3", "2", "3", "3", "1", "3", "3"]} +{"1003045": ["1", "2", "3", "1", "3", "2", "1"]} +{"1004176": ["3", "1", "3", "2", "2", "3", "3"]} +{"1004034": ["3", "2", "3", "1", "2", "3", "3"]} +{"2004495": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004495": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003651": ["2", "1", "3", "2", "2", "3", "1"]} +{"4003651": ["2", "1", "3", "2", "2", "3", "1"]} +{"7004864": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005988": ["2", "2", "3", "3", "3", "3", "2"]} +{"3005988": ["2", "2", "3", "3", "3", "3", "3"]} +{"8001152": ["1", "2", "3", "2", "3", "3", "1"]} +{"2004096": ["2", "3", "3", "3", "1", "1", "1"]} +{"3005277": ["2", "3", "3", "2", "3", "3", "3"]} +{"3005277": ["2", "3", "3", "2", "3", "3", "2"]} +{"0003949": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005499": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005687": ["2", "2", "3", "1", "3", "3", "3"]} +{"3006386": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002418": ["2", "2", "3", "2", "1", "2", "1"]} +{"3006697": ["2", "3", "3", "2", "2", "3", "3"]} +{"1005018": ["3", "1", "3", "1", "2", "3", "3"]} +{"5001106": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003913": ["3", "3", "3", "2", "2", "3", "3"]} +{"3005613": ["2", "3", "3", "2", "2", "3", "1"]} +{"5001755": ["3", "3", "2", "3", "2", "3", "3"]} +{"7004257": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003302": ["1", "3", "3", "1", "3", "2", "1"]} +{"6003861": ["3", "2", "3", "1", "3", "2", "2"]} +{"1004582": ["2", "2", "3", "2", "3", "3", "3"]} +{"2007469": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004826": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003010": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006941": ["3", "1", "3", "2", "3", "3", "3"]} +{"1005250": ["3", "1", "3", "2", "1", "2", "1"]} +{"3006172": ["3", "2", "3", "2", "3", "3", "3"]} +{"8002367": ["1", "1", "3", "2", "3", "3", "1"]} +{"3005233": ["2", "3", "3", "3", "2", "2", "2"]} +{"1004065": ["3", "1", "3", "2", "2", "3", "2"]} +{"7004672": ["2", "3", "3", "3", "2", "2", "3"]} +{"4004210": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006278": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004249": ["2", "3", "3", "3", "2", "3", "2"]} +{"3006839": ["2", "3", "2", "3", "3", "3", "3"]} +{"3005934": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003389": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006475": ["1", "1", "3", "1", "1", "3", "1"]} +{"4003518": ["3", "3", "2", "3", "2", "3", "3"]} +{"0003743": ["3", "3", "3", "3", "2", "2", "3"]} +{"6003745": ["1", "2", "3", "2", "3", "2", "2"]} +{"2007515": ["3", "3", "3", "2", "2", "3", "3"]} +{"0005903": ["2", "3", "3", "2", "2", "2", "2"]} +{"4003558": ["3", "1", "3", "2", "1", "3", "3"]} +{"7004205": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005799": ["3", "2", "3", "2", "3", "3", "3"]} +{"6004728": ["1", "3", "3", "2", "3", "2", "1"]} +{"3006441": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002217": ["2", "2", "3", "3", "2", "3", "1"]} +{"6002772": ["2", "3", "3", "2", "3", "2", "2"]} +{"2007814": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003510": ["3", "3", "2", "3", "2", "2", "2"]} +{"3005115": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007848": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003735": ["1", "2", "3", "2", "3", "3", "1"]} +{"6004889": ["1", "3", "3", "3", "3", "2", "1"]} +{"0006762": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007254": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006704": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003227": ["1", "3", "3", "2", "3", "3", "1"]} +{"0006842": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004954": ["3", "2", "3", "2", "3", "3", "3"]} +{"3006182": ["2", "3", "3", "1", "2", "3", "2"]} +{"0004642": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006691": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002974": ["1", "3", "3", "2", "1", "2", "1"]} +{"0005629": ["2", "3", "3", "3", "3", "3", "3"]} +{"5001748": ["2", "3", "3", "3", "2", "3", "2"]} +{"0004907": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004729": ["3", "1", "3", "2", "2", "3", "3"]} +{"2006168": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002065": ["1", "2", "None", "2", "1", "2", "1"]} +{"7004301": ["2", "2", "3", "2", "3", "3", "3"]} +{"2007453": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007453": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004702": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003556": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003938": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004019": ["2", "3", "3", "2", "2", "3", "2"]} +{"0005266": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005241": ["3", "1", "3", "2", "3", "3", "2"]} +{"0004440": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005971": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004500": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002276": ["1", "3", "3", "2", "3", "3", "1"]} +{"0005589": ["3", "2", "3", "3", "2", "2", "3"]} +{"2005004": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004635": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006435": ["3", "2", "3", "1", "3", "3", "2"]} +{"8001716": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003224": ["1", "2", "3", "1", "3", "3", "2"]} +{"1005719": ["3", "2", "3", "1", "2", "3", "1"]} +{"4003120": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003995": ["2", "3", "3", "2", "3", "3", "3"]} +{"7004545": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003660": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004037": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005627": ["2", "2", "3", "2", "2", "3", "2"]} +{"6002409": ["2", "1", "3", "2", "2", "3", "1"]} +{"7004435": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004220": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003003": ["1", "3", "3", "3", "2", "3", "1"]} +{"8002728": ["1", "3", "3", "1", "2", "3", "1"]} +{"1005674": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003282": ["3", "2", "3", "3", "2", "3", "3"]} +{"0005919": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002737": ["1", "3", "3", "2", "2", "3", "1"]} +{"2005242": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005370": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005667": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003220": ["1", "2", "3", "3", "2", "3", "1"]} +{"4003386": ["3", "2", "3", "3", "1", "3", "3"]} +{"3003865": ["3", "1", "3", "3", "2", "3", "1"]} +{"6002830": ["2", "1", "3", "2", "2", "3", "1"]} +{"3004487": ["1", "3", "3", "3", "2", "3", "2"]} +{"6004953": ["1", "3", "3", "2", "2", "3", "1"]} +{"7003697": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003617": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004821": ["2", "2", "3", "2", "2", "3", "1"]} +{"8001229": ["1", "3", "3", "2", "1", "2", "1"]} +{"3005129": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004397": ["3", "2", "3", "1", "3", "3", "3"]} +{"8001228": ["1", "3", "3", "2", "2", "2", "1"]} +{"1005498": ["3", "1", "3", "1", "3", "3", "3"]} +{"3003286": ["2", "3", "3", "3", "3", "3", "2"]} +{"0005867": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003639": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002608": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005038": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005724": ["3", "3", "3", "2", "2", "3", "2"]} +{"4004459": ["3", "3", "3", "2", "3", "3", "3"]} +{"6002065": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003345": ["1", "2", "3", "1", "3", "3", "1"]} +{"6002326": ["1", "2", "3", "1", "3", "2", "1"]} +{"2004852": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002111": ["3", "3", "3", "2", "3", "2", "3"]} +{"3005320": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004919": ["3", "3", "1", "3", "2", "3", "3"]} +{"3005320": ["1", "2", "3", "2", "3", "2", "2"]} +{"0006695": ["2", "3", "3", "3", "3", "3", "3"]} +{"2003740": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004404": ["3", "3", "3", "2", "3", "3", "2"]} +{"1006081": ["3", "1", "3", "2", "2", "3", "3"]} +{"0003238": ["1", "3", "3", "3", "2", "3", "2"]} +{"6002440": ["2", "2", "3", "2", "3", "3", "3"]} +{"1003305": ["1", "1", "3", "2", "3", "3", "1"]} +{"2004932": ["3", "2", "3", "3", "3", "3", "3"]} +{"2004015": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003061": ["2", "3", "2", "3", "2", "3", "2"]} +{"0006238": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007434": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004776": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003433": ["2", "3", "3", "2", "3", "3", "3"]} +{"6004392": ["1", "3", "3", "2", "3", "3", "1"]} +{"7002023": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003483": ["1", "2", "3", "2", "2", "3", "1"]} +{"2004536": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004840": ["2", "3", "3", "2", "2", "3", "3"]} +{"2004721": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004588": ["3", "2", "3", "2", "3", "3", "3"]} +{"7003883": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006367": ["3", "2", "3", "2", "2", "2", "2"]} +{"0006346": ["2", "3", "3", "3", "1", "2", "1"]} +{"3005882": ["2", "3", "3", "2", "3", "3", "2"]} +{"4002733": ["2", "3", "3", "3", "2", "3", "3"]} +{"1003955": ["2", "2", "3", "1", "3", "3", "2"]} +{"2003338": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006861": ["2", "3", "3", "2", "2", "2", "1"]} +{"7002036": ["2", "2", "3", "2", "3", "3", "2"]} +{"2005650": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005357": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006340": ["1", "3", "3", "3", "2", "3", "1"]} +{"8002428": ["1", "3", "3", "2", "3", "3", "1"]} +{"2007408": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004620": ["2", "3", "3", "2", "3", "3", "2"]} +{"3004733": ["2", "3", "3", "3", "2", "3", "2"]} +{"6004949": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003002": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004593": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005751": ["3", "3", "3", "3", "1", "2", "3"]} +{"0004612": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005466": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005201": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003887": ["2", "3", "3", "2", "2", "3", "3"]} +{"1006056": ["3", "2", "3", "2", "3", "3", "3"]} +{"1003685": ["2", "2", "3", "2", "3", "3", "3"]} +{"7002275": ["1", "3", "3", "2", "1", "2", "1"]} +{"8003246": ["1", "3", "3", "2", "1", "3", "1"]} +{"2007263": ["2", "3", "2", "3", "2", "3", "3"]} +{"6003560": ["2", "2", "3", "2", "3", "3", "3"]} +{"4004310": ["3", "2", "3", "3", "1", "3", "1"]} +{"0005466": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001892": ["2", "2", "3", "2", "2", "3", "1"]} +{"1004484": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002188": ["3", "3", "3", "2", "2", "3", "3"]} +{"0006360": ["2", "3", "3", "3", "1", "3", "3"]} +{"0005418": ["3", "3", "1", "3", "1", "3", "2"]} +{"0005680": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003690": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002476": ["3", "3", "3", "2", "2", "2", "2"]} +{"0006795": ["2", "3", "2", "3", "3", "3", "3"]} +{"3004129": ["2", "3", "3", "2", "3", "2", "2"]} +{"2004145": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004208": ["2", "2", "3", "3", "3", "3", "2"]} +{"8003999": ["1", "3", "3", "2", "2", "3", "1"]} +{"8003868": ["1", "3", "3", "2", "3", "2", "1"]} +{"4003551": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004437": ["1", "2", "3", "2", "2", "2", "1"]} +{"8001353": ["2", "2", "3", "3", "2", "2", "1"]} +{"2003528": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004439": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003708": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003065": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004757": ["2", "3", "3", "2", "2", "3", "3"]} +{"3006026": ["3", "2", "3", "2", "3", "3", "2"]} +{"7002553": ["3", "2", "3", "2", "2", "2", "2"]} +{"6003990": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003008": ["1", "3", "3", "2", "2", "3", "1"]} +{"7004963": ["3", "3", "3", "2", "2", "3", "3"]} +{"7004445": ["3", "3", "3", "2", "2", "2", "3"]} +{"7003228": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004418": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005644": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006697": ["2", "1", "3", "3", "3", "2", "1"]} +{"0005492": ["3", "3", "3", "3", "2", "2", "2"]} +{"0003583": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002591": ["3", "3", "3", "2", "2", "2", "3"]} +{"3005390": ["2", "1", "3", "2", "2", "3", "1"]} +{"4003612": ["3", "2", "3", "3", "2", "3", "2"]} +{"0006053": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006510": ["2", "3", "3", "3", "2", "3", "2"]} +{"1005671": ["1", "2", "3", "2", "2", "2", "1"]} +{"7003572": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003822": ["1", "3", "3", "2", "3", "3", "1"]} +{"6004166": ["3", "3", "3", "1", "3", "2", "3"]} +{"2003089": ["3", "3", "3", "2", "2", "3", "3"]} +{"7004381": ["3", "3", "3", "3", "1", "3", "1"]} +{"0003950": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002835": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006828": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003058": ["2", "2", "3", "3", "3", "3", "2"]} +{"3006448": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005067": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003019": ["3", "3", "3", "2", "1", "3", "1"]} +{"2003685": ["3", "3", "3", "3", "1", "2", "2"]} +{"2004591": ["3", "3", "3", "3", "2", "2", "3"]} +{"7003852": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006760": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004625": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005708": ["2", "2", "3", "2", "2", "3", "1"]} +{"0004323": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006213": ["2", "3", "3", "3", "3", "1", "2"]} +{"6003893": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004738": ["3", "3", "3", "3", "2", "2", "3"]} +{"0006797": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006217": ["3", "1", "3", "2", "3", "2", "1"]} +{"4002331": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003354": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003643": ["1", "3", "3", "2", "1", "2", "1"]} +{"7003503": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004795": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005894": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002520": ["3", "3", "3", "2", "2", "2", "2"]} +{"4004087": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004805": ["3", "1", "3", "1", "1", "2", "1"]} +{"3005587": ["2", "2", "3", "3", "3", "3", "1"]} +{"3006233": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006407": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003830": ["2", "2", "3", "3", "3", "3", "2"]} +{"1006023": ["3", "2", "3", "1", "2", "2", "2"]} +{"4003040": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004857": ["1", "2", "3", "2", "2", "2", "1"]} +{"6002191": ["1", "3", "3", "2", "3", "2", "1"]} +{"4003189": ["2", "3", "3", "3", "1", "3", "2"]} +{"4003399": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005267": ["3", "3", "3", "1", "3", "2", "3"]} +{"0006759": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006744": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003363": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002927": ["3", "3", "3", "2", "2", "3", "3"]} +{"6003352": ["2", "2", "3", "1", "3", "2", "1"]} +{"6003211": ["2", "3", "3", "2", "1", "2", "2"]} +{"7002579": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005366": ["2", "3", "3", "3", "2", "3", "2"]} +{"0005923": ["3", "3", "3", "3", "1", "3", "2"]} +{"3003758": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006362": ["3", "3", "3", "2", "2", "3", "3"]} +{"1006243": ["3", "3", "3", "1", "3", "3", "3"]} +{"7002193": ["2", "3", "3", "2", "3", "1", "2"]} +{"0005994": ["3", "3", "1", "3", "2", "3", "3"]} +{"8002457": ["2", "2", "3", "2", "1", "2", "1"]} +{"8001518": ["1", "2", "3", "2", "2", "2", "1"]} +{"3004929": ["2", "3", "3", "2", "2", "3", "2"]} +{"3006556": ["3", "3", "2", "3", "1", "3", "1"]} +{"7003811": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001683": ["3", "3", "1", "3", "2", "3", "3"]} +{"1004427": ["3", "2", "3", "2", "2", "2", "2"]} +{"7003345": ["3", "3", "3", "3", "1", "3", "1"]} +{"1004950": ["3", "2", "3", "2", "2", "3", "3"]} +{"6003780": ["1", "3", "3", "1", "3", "2", "1"]} +{"3003740": ["1", "3", "3", "2", "2", "3", "1"]} +{"0004149": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004272": ["1", "2", "3", "2", "2", "2", "2"]} +{"8001747": ["3", "2", "3", "2", "3", "2", "2"]} +{"4004721": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006560": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006254": ["2", "2", "3", "3", "2", "3", "1"]} +{"1006705": ["3", "3", "3", "1", "3", "3", "3"]} +{"2004285": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004818": ["2", "1", "3", "2", "1", "3", "1"]} +{"2006647": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003582": ["1", "3", "3", "2", "1", "2", "1"]} +{"8003663": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005333": ["2", "3", "3", "3", "2", "3", "3"]} +{"4002589": ["3", "2", "3", "3", "1", "3", "1"]} +{"7003952": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006351": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006301": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006932": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005085": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004630": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003507": ["1", "3", "3", "2", "3", "3", "1"]} +{"3005382": ["1", "3", "3", "2", "2", "3", "2"]} +{"2006134": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004120": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004576": ["3", "2", "3", "1", "1", "3", "2"]} +{"8003130": ["1", "3", "3", "2", "3", "3", "1"]} +{"3006698": ["3", "2", "3", "3", "1", "1", "1"]} +{"7004740": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004632": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003574": ["2", "3", "3", "2", "2", "2", "2"]} +{"7004236": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006105": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005922": ["3", "3", "1", "3", "3", "3", "3"]} +{"1005591": ["3", "1", "3", "1", "2", "2", "3"]} +{"8001880": ["1", "1", "3", "2", "3", "2", "1"]} +{"4002768": ["3", "3", "2", "3", "1", "3", "2"]} +{"1005591": ["3", "1", "3", "2", "2", "2", "3"]} +{"7002675": ["3", "2", "3", "3", "3", "3", "3"]} +{"2004904": ["3", "3", "3", "2", "3", "1", "3"]} +{"0004611": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007072": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003230": ["2", "3", "2", "3", "3", "3", "2"]} +{"7004563": ["3", "3", "1", "3", "3", "3", "3"]} +{"2006796": ["3", "2", "3", "3", "3", "1", "3"]} +{"6003611": ["1", "2", "3", "2", "1", "2", "1"]} +{"0005578": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003377": ["3", "3", "3", "2", "3", "3", "3"]} +{"2003117": ["3", "3", "3", "2", "3", "2", "3"]} +{"8001549": ["1", "2", "3", "2", "1", "2", "1"]} +{"3005119": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003968": ["3", "3", "1", "3", "1", "2", "1"]} +{"2003839": ["3", "3", "3", "3", "3", "2", "3"]} +{"4004303": ["3", "3", "2", "3", "2", "3", "2"]} +{"0003384": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002555": ["3", "3", "3", "2", "3", "2", "3"]} +{"8002941": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004241": ["1", "2", "3", "1", "2", "1", "1"]} +{"2006577": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004790": ["3", "2", "3", "2", "2", "2", "2"]} +{"4002364": ["2", "3", "3", "3", "2", "2", "2"]} +{"2006125": ["3", "3", "3", "2", "3", "3", "3"]} +{"6002233": ["2", "2", "3", "1", "3", "1", "1"]} +{"1003596": ["3", "2", "3", "1", "3", "1", "2"]} +{"0003369": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007775": ["2", "3", "2", "2", "2", "3", "2"]} +{"6003932": ["1", "1", "3", "2", "3", "2", "1"]} +{"0005995": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002528": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003546": ["2", "2", "3", "2", "2", "2", "2"]} +{"6002841": ["2", "2", "3", "2", "3", "1", "2"]} +{"3004154": ["2", "3", "2", "3", "2", "2", "2"]} +{"4004368": ["2", "3", "3", "3", "3", "3", "3"]} +{"4004368": ["2", "3", "2", "3", "3", "3", "3"]} +{"0003805": ["3", "3", "2", "3", "3", "2", "3"]} +{"1004298": ["3", "2", "3", "2", "3", "3", "3"]} +{"0004432": ["3", "3", "1", "3", "2", "3", "2"]} +{"2007494": ["3", "3", "2", "3", "3", "1", "3"]} +{"3006721": ["3", "2", "3", "3", "2", "3", "2"]} +{"1005237": ["2", "1", "3", "2", "2", "2", "1"]} +{"5001841": ["2", "3", "1", "3", "1", "2", "2"]} +{"5001841": ["2", "3", "1", "3", "1", "2", "2"]} +{"0004395": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007050": ["3", "3", "3", "2", "1", "3", "2"]} +{"8002866": ["1", "2", "3", "2", "1", "2", "1"]} +{"0004141": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004141": ["3", "3", "3", "3", "2", "2", "3"]} +{"2005931": ["1", "3", "1", "2", "1", "3", "1"]} +{"6002746": ["1", "2", "3", "1", "2", "2", "1"]} +{"7003086": ["3", "3", "3", "2", "2", "2", "3"]} +{"2006034": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004691": ["1", "2", "3", "2", "2", "2", "1"]} +{"7003092": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005977": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004557": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001485": ["2", "3", "2", "3", "2", "3", "3"]} +{"4004358": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005856": ["2", "1", "3", "2", "3", "3", "3"]} +{"1005856": ["2", "1", "3", "2", "3", "3", "2"]} +{"8003858": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003156": ["1", "3", "2", "2", "3", "1", "2"]} +{"1004127": ["1", "1", "3", "3", "2", "3", "1"]} +{"7002324": ["2", "3", "3", "2", "2", "2", "2"]} +{"3006399": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001079": ["2", "3", "3", "2", "2", "3", "3"]} +{"8001079": ["2", "3", "3", "2", "2", "3", "2"]} +{"5001259": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006483": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003736": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004146": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006927": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003141": ["1", "3", "2", "3", "2", "3", "2"]} +{"7003849": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002588": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001667": ["3", "3", "3", "2", "2", "2", "3"]} +{"4003030": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006634": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001658": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006157": ["None", "None", "None", "None", "None", "None", "None"]} +{"4002413": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004936": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001069": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004085": ["1", "2", "3", "3", "2", "2", "2"]} +{"2007441": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002982": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004443": ["2", "1", "3", "3", "2", "3", "2"]} +{"2004046": ["3", "3", "2", "3", "2", "2", "3"]} +{"3003884": ["2", "2", "3", "3", "3", "3", "2"]} +{"3003884": ["2", "2", "3", "3", "3", "2", "2"]} +{"5001501": ["3", "3", "3", "3", "1", "2", "3"]} +{"0004160": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003464": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003608": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004830": ["2", "2", "3", "2", "2", "2", "2"]} +{"1004734": ["2", "1", "3", "2", "3", "2", "3"]} +{"2003105": ["2", "3", "3", "3", "3", "3", "3"]} +{"4004899": ["3", "3", "1", "3", "2", "3", "3"]} +{"3003151": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004947": ["3", "1", "3", "2", "1", "2", "1"]} +{"0006687": ["2", "3", "2", "3", "1", "2", "2"]} +{"3004554": ["2", "1", "3", "2", "3", "2", "2"]} +{"2003586": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003190": ["2", "1", "3", "2", "1", "1", "1"]} +{"2004731": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002708": ["1", "3", "3", "2", "1", "2", "1"]} +{"6003534": ["2", "3", "3", "3", "2", "3", "3"]} +{"6002934": ["2", "2", "3", "3", "3", "2", "2"]} +{"8001853": ["2", "3", "3", "3", "3", "3", "2"]} +{"2004133": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006666": ["3", "3", "3", "3", "2", "1", "3"]} +{"0004241": ["3", "2", "3", "3", "2", "2", "3"]} +{"6004144": ["1", "2", "3", "3", "3", "3", "1"]} +{"7004976": ["2", "3", "3", "2", "3", "2", "2"]} +{"4003307": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002718": ["1", "2", "3", "2", "1", "3", "1"]} +{"6003566": ["2", "3", "3", "2", "3", "3", "3"]} +{"0006713": ["3", "3", "1", "3", "2", "3", "3"]} +{"1003273": ["2", "2", "3", "2", "2", "2", "2"]} +{"2004559": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004058": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007020": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003019": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003029": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002411": ["3", "3", "3", "3", "1", "2", "3"]} +{"1006872": ["3", "2", "3", "2", "3", "2", "3"]} +{"8002990": ["2", "3", "3", "2", "2", "3", "2"]} +{"7003551": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003208": ["2", "1", "3", "3", "3", "2", "2"]} +{"1006173": ["2", "2", "3", "2", "2", "2", "2"]} +{"6003349": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007240": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002549": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007200": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001434": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004999": ["2", "3", "2", "3", "1", "2", "1"]} +{"1006791": ["2", "1", "3", "3", "2", "3", "3"]} +{"7003920": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001904": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006805": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002915": ["2", "3", "3", "3", "3", "2", "3"]} +{"5001151": ["3", "2", "3", "3", "3", "2", "2"]} +{"8001417": ["3", "2", "3", "3", "2", "3", "3"]} +{"6002824": ["1", "2", "3", "3", "3", "2", "2"]} +{"0004881": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006619": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003269": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003617": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001025": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003052": ["1", "2", "3", "3", "2", "2", "1"]} +{"3004267": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003087": ["2", "3", "3", "3", "2", "2", "1"]} +{"1004204": ["3", "2", "3", "3", "2", "2", "3"]} +{"4004638": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002607": ["3", "3", "3", "3", "1", "3", "2"]} +{"3003229": ["1", "3", "2", "3", "2", "3", "1"]} +{"3003229": ["1", "3", "1", "3", "2", "3", "1"]} +{"7003512": ["3", "3", "2", "2", "3", "3", "3"]} +{"4003966": ["3", "2", "3", "3", "3", "2", "3"]} +{"2005877": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004135": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002012": ["3", "2", "3", "3", "3", "3", "3"]} +{"2004217": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005783": ["2", "3", "1", "3", "2", "3", "2"]} +{"3004959": ["1", "2", "2", "3", "2", "2", "2"]} +{"7004974": ["1", "3", "3", "3", "3", "3", "1"]} +{"8002187": ["2", "2", "3", "2", "1", "2", "2"]} +{"8001082": ["2", "3", "2", "2", "2", "3", "3"]} +{"0004552": ["3", "3", "2", "3", "2", "3", "3"]} +{"3004403": ["2", "3", "3", "2", "2", "3", "2"]} +{"2004831": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004780": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003630": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006855": ["3", "3", "3", "2", "3", "2", "3"]} +{"2006746": ["1", "3", "3", "3", "2", "2", "1"]} +{"2003243": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002421": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005126": ["2", "2", "2", "3", "1", "3", "1"]} +{"8002819": ["2", "3", "2", "2", "3", "3", "2"]} +{"7004582": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004696": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004877": ["2", "1", "3", "2", "3", "3", "2"]} +{"1003434": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002645": ["1", "2", "3", "3", "3", "2", "1"]} +{"0003352": ["3", "3", "1", "3", "2", "3", "3"]} +{"3006617": ["2", "3", "3", "2", "2", "2", "2"]} +{"2004909": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005114": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005889": ["3", "2", "3", "3", "3", "2", "3"]} +{"1006138": ["2", "1", "3", "3", "3", "3", "1"]} +{"1004933": ["2", "1", "3", "3", "3", "2", "1"]} +{"8001752": ["2", "3", "3", "2", "2", "3", "2"]} +{"7002458": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002458": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002030": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002053": ["3", "3", "2", "2", "3", "3", "3"]} +{"0004086": ["2", "3", "3", "3", "2", "2", "3"]} +{"1005290": ["2", "1", "3", "2", "2", "3", "1"]} +{"8003509": ["2", "2", "3", "3", "3", "3", "3"]} +{"4004412": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006099": ["2", "1", "3", "2", "3", "3", "2"]} +{"3004428": ["2", "3", "3", "2", "3", "2", "2"]} +{"5001185": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004773": ["3", "3", "1", "3", "2", "3", "2"]} +{"3006157": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004239": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003977": ["3", "2", "3", "2", "2", "2", "3"]} +{"1005664": ["3", "1", "3", "2", "2", "2", "2"]} +{"4003885": ["2", "3", "2", "3", "3", "3", "3"]} +{"2006974": ["2", "3", "2", "3", "2", "2", "2"]} +{"0004202": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005207": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006035": ["3", "2", "3", "2", "3", "1", "2"]} +{"3004718": ["2", "2", "3", "3", "1", "2", "1"]} +{"4004134": ["3", "2", "2", "2", "3", "3", "2"]} +{"7002260": ["3", "3", "1", "3", "2", "3", "2"]} +{"3004320": ["2", "3", "2", "3", "2", "3", "2"]} +{"3004320": ["2", "3", "2", "3", "2", "3", "2"]} +{"4002867": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003724": ["1", "2", "3", "3", "1", "2", "1"]} +{"1005147": ["2", "2", "3", "3", "3", "2", "2"]} +{"1004884": ["3", "1", "3", "3", "3", "3", "2"]} +{"3005602": ["2", "3", "2", "3", "3", "1", "2"]} +{"7004867": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003736": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004939": ["2", "3", "3", "3", "3", "2", "2"]} +{"1005630": ["2", "1", "3", "3", "3", "3", "2"]} +{"3005745": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006914": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004906": ["2", "2", "3", "3", "3", "1", "2"]} +{"1003520": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003527": ["2", "1", "3", "3", "2", "2", "2"]} +{"2006605": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003445": ["2", "1", "3", "3", "3", "2", "2"]} +{"6003652": ["2", "2", "3", "2", "3", "2", "3"]} +{"6002615": ["2", "1", "3", "3", "3", "2", "1"]} +{"0003390": ["3", "3", "2", "2", "2", "2", "3"]} +{"4003548": ["3", "2", "3", "2", "3", "2", "3"]} +{"4003834": ["3", "3", "1", "3", "2", "3", "3"]} +{"8002246": ["1", "2", "3", "3", "3", "2", "1"]} +{"4003677": ["3", "1", "3", "3", "2", "3", "3"]} +{"2007311": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003804": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003455": ["3", "2", "3", "2", "3", "3", "3"]} +{"7004291": ["2", "2", "3", "3", "3", "2", "2"]} +{"8002390": ["1", "2", "3", "3", "1", "2", "1"]} +{"8001384": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002391": ["2", "1", "3", "2", "3", "2", "2"]} +{"5001457": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003819": ["1", "3", "3", "3", "2", "3", "1"]} +{"5001844": ["3", "3", "1", "3", "2", "3", "2"]} +{"1006824": ["2", "1", "3", "3", "3", "2", "2"]} +{"3003554": ["2", "3", "3", "3", "2", "2", "2"]} +{"8001632": ["3", "3", "2", "2", "2", "2", "2"]} +{"8002686": ["2", "2", "3", "3", "3", "2", "1"]} +{"2006269": ["3", "2", "3", "3", "2", "1", "2"]} +{"3005783": ["3", "3", "3", "2", "3", "2", "2"]} +{"0004938": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002330": ["3", "3", "3", "2", "3", "2", "2"]} +{"1006191": ["2", "1", "3", "3", "3", "2", "1"]} +{"1003365": ["3", "2", "3", "2", "3", "2", "2"]} +{"1003350": ["3", "2", "3", "2", "3", "2", "2"]} +{"8003372": ["1", "3", "2", "3", "2", "2", "1"]} +{"1006971": ["1", "2", "3", "3", "3", "3", "2"]} +{"3006467": ["2", "1", "3", "2", "2", "2", "1"]} +{"1006679": ["2", "1", "3", "3", "3", "2", "1"]} +{"3003888": ["3", "2", "2", "2", "3", "2", "2"]} +{"2004812": ["3", "3", "1", "3", "2", "3", "3"]} +{"6004788": ["1", "2", "3", "2", "2", "3", "1"]} +{"3004106": ["3", "3", "3", "2", "3", "2", "3"]} +{"3005109": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003368": ["2", "3", "3", "2", "3", "3", "3"]} +{"1005315": ["3", "2", "3", "2", "2", "3", "3"]} +{"0005839": ["2", "3", "2", "3", "3", "3", "3"]} +{"4003637": ["2", "3", "2", "3", "3", "3", "3"]} +{"6002171": ["2", "2", "3", "2", "3", "2", "2"]} +{"0004066": ["3", "3", "1", "3", "3", "2", "3"]} +{"3003473": ["2", "3", "3", "2", "2", "2", "1"]} +{"2007239": ["3", "3", "2", "3", "3", "2", "3"]} +{"6004714": ["2", "1", "3", "2", "3", "2", "1"]} +{"1004703": ["2", "1", "3", "2", "3", "2", "1"]} +{"8003091": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004657": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003092": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001072": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007780": ["3", "3", "2", "2", "3", "3", "3"]} +{"1004391": ["2", "1", "3", "2", "2", "3", "2"]} +{"0003063": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006011": ["3", "2", "3", "2", "2", "2", "3"]} +{"8001844": ["1", "2", "3", "2", "3", "3", "1"]} +{"5001642": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006794": ["3", "2", "3", "2", "3", "2", "2"]} +{"1005897": ["3", "1", "3", "2", "1", "3", "1"]} +{"1006794": ["3", "2", "3", "2", "3", "2", "2"]} +{"1005897": ["3", "1", "3", "2", "1", "3", "1"]} +{"7002385": ["3", "3", "2", "3", "3", "2", "3"]} +{"0006535": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005138": ["3", "3", "3", "2", "3", "2", "3"]} +{"0003236": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006646": ["3", "2", "3", "3", "2", "1", "2"]} +{"0003846": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003922": ["2", "1", "3", "2", "2", "2", "1"]} +{"5001370": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006813": ["3", "2", "3", "2", "2", "3", "3"]} +{"5001052": ["3", "3", "2", "3", "2", "3", "3"]} +{"4002765": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006844": ["2", "1", "3", "3", "3", "3", "2"]} +{"3005971": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004224": ["2", "2", "3", "2", "3", "2", "2"]} +{"1004776": ["2", "2", "3", "2", "2", "3", "1"]} +{"2003704": ["3", "3", "2", "3", "2", "2", "3"]} +{"3003627": ["3", "3", "1", "3", "1", "1", "2"]} +{"1004550": ["2", "1", "3", "2", "2", "2", "2"]} +{"8001083": ["3", "3", "3", "2", "3", "2", "3"]} +{"6002117": ["2", "1", "3", "2", "3", "2", "1"]} +{"0006359": ["3", "3", "1", "3", "1", "2", "1"]} +{"6002094": ["2", "1", "3", "3", "3", "3", "3"]} +{"3003327": ["2", "2", "3", "3", "3", "2", "1"]} +{"3005751": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005880": ["3", "3", "2", "3", "1", "3", "3"]} +{"7003126": ["2", "3", "2", "3", "1", "3", "2"]} +{"2007409": ["3", "2", "3", "2", "2", "2", "3"]} +{"2007409": ["3", "2", "3", "2", "2", "2", "3"]} +{"1005778": ["2", "1", "3", "3", "1", "2", "2"]} +{"8002299": ["1", "2", "3", "2", "3", "2", "2"]} +{"0003762": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003488": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007660": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003616": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005302": ["3", "3", "1", "3", "2", "2", "3"]} +{"7003078": ["3", "3", "3", "2", "3", "2", "3"]} +{"6004272": ["2", "1", "2", "2", "1", "2", "1"]} +{"7004781": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001581": ["3", "3", "2", "3", "2", "2", "2"]} +{"6003746": ["1", "2", "3", "3", "3", "2", "1"]} +{"8001624": ["1", "2", "3", "2", "3", "1", "1"]} +{"3006156": ["3", "3", "1", "3", "2", "2", "2"]} +{"6003820": ["1", "1", "3", "2", "2", "3", "1"]} +{"1003370": ["3", "2", "3", "3", "3", "2", "3"]} +{"0005061": ["3", "3", "1", "3", "3", "2", "2"]} +{"6003918": ["1", "2", "3", "2", "1", "2", "1"]} +{"7004046": ["2", "3", "3", "3", "2", "2", "3"]} +{"3006628": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006375": ["2", "1", "3", "2", "3", "2", "1"]} +{"2004782": ["3", "3", "2", "3", "3", "2", "3"]} +{"8002801": ["1", "1", "3", "2", "1", "2", "1"]} +{"2007351": ["3", "3", "3", "3", "3", "2", "3"]} +{"8002946": ["2", "2", "3", "2", "1", "2", "1"]} +{"3005365": ["2", "3", "1", "3", "2", "3", "2"]} +{"7002955": ["2", "3", "3", "3", "1", "2", "1"]} +{"8001111": ["2", "2", "3", "2", "1", "1", "1"]} +{"8002095": ["1", "2", "3", "3", "3", "3", "1"]} +{"2007534": ["2", "3", "3", "3", "3", "2", "3"]} +{"8003516": ["3", "3", "2", "3", "2", "3", "3"]} +{"7002394": ["3", "3", "3", "2", "3", "2", "3"]} +{"4004671": ["3", "2", "2", "3", "2", "3", "3"]} +{"1006362": ["2", "1", "3", "2", "2", "3", "2"]} +{"3006625": ["2", "1", "3", "3", "3", "2", "2"]} +{"7003327": ["3", "3", "3", "3", "1", "2", "3"]} +{"0006377": ["2", "3", "1", "3", "3", "2", "1"]} +{"1004084": ["2", "2", "3", "2", "3", "2", "2"]} +{"1006521": ["2", "1", "3", "2", "1", "2", "1"]} +{"7003812": ["3", "3", "2", "3", "2", "3", "3"]} +{"0003119": ["3", "3", "2", "3", "2", "2", "1"]} +{"0003119": ["3", "3", "2", "3", "2", "2", "1"]} +{"0006430": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003250": ["2", "3", "2", "3", "2", "2", "2"]} +{"3005258": ["1", "3", "2", "2", "1", "2", "1"]} +{"4004792": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006993": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003879": ["2", "3", "3", "3", "2", "2", "2"]} +{"1003473": ["2", "1", "3", "2", "2", "3", "1"]} +{"5001848": ["2", "3", "2", "3", "2", "3", "3"]} +{"8003106": ["1", "2", "3", "3", "1", "2", "1"]} +{"3006784": ["2", "1", "3", "3", "3", "2", "1"]} +{"2003208": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003398": ["2", "1", "3", "2", "3", "2", "3"]} +{"5001044": ["3", "3", "2", "3", "2", "2", "3"]} +{"8003273": ["1", "2", "3", "2", "3", "2", "1"]} +{"6003756": ["2", "1", "3", "2", "3", "2", "1"]} +{"6004627": ["2", "1", "3", "2", "3", "2", "1"]} +{"6003649": ["1", "2", "3", "3", "3", "2", "1"]} +{"6004608": ["2", "1", "3", "2", "2", "1", "1"]} +{"2007442": ["3", "3", "2", "3", "2", "2", "3"]} +{"7003046": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003311": ["1", "1", "3", "2", "3", "2", "1"]} +{"3006873": ["2", "3", "3", "2", "2", "2", "1"]} +{"7004933": ["3", "3", "2", "3", "3", "2", "3"]} +{"6003453": ["2", "2", "3", "2", "3", "1", "1"]} +{"2003699": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005597": ["3", "2", "3", "2", "3", "1", "2"]} +{"7002395": ["2", "3", "2", "2", "3", "3", "3"]} +{"2003349": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005562": ["2", "1", "3", "2", "3", "2", "1"]} +{"6003366": ["2", "1", "3", "2", "3", "1", "1"]} +{"1005794": ["2", "1", "3", "2", "3", "2", "2"]} +{"6003717": ["2", "2", "3", "3", "2", "1", "1"]} +{"0005934": ["2", "3", "2", "2", "2", "2", "3"]} +{"4004544": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003688": ["2", "2", "3", "2", "2", "2", "1"]} +{"2007109": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003667": ["3", "3", "1", "3", "3", "2", "3"]} +{"5001493": ["3", "3", "2", "2", "2", "2", "3"]} +{"2004458": ["2", "3", "3", "3", "3", "2", "3"]} +{"7002006": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003921": ["1", "1", "3", "2", "3", "2", "1"]} +{"1004866": ["2", "1", "3", "2", "3", "3", "1"]} +{"2003365": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002049": ["3", "2", "2", "2", "3", "2", "2"]} +{"4003963": ["3", "2", "3", "2", "2", "2", "2"]} +{"2004878": ["3", "3", "2", "2", "3", "2", "3"]} +{"8003981": ["1", "1", "3", "2", "1", "2", "1"]} +{"2006818": ["3", "2", "3", "2", "3", "2", "3"]} +{"2005469": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004099": ["3", "1", "3", "2", "3", "2", "2"]} +{"4004585": ["3", "3", "1", "3", "3", "2", "3"]} +{"8003793": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003793": ["1", "2", "3", "2", "2", "2", "1"]} +{"0005746": ["2", "3", "2", "3", "2", "3", "2"]} +{"0005519": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003746": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004763": ["2", "2", "3", "3", "2", "3", "2"]} +{"7002330": ["2", "3", "3", "3", "2", "2", "3"]} +{"7002639": ["2", "3", "2", "3", "3", "3", "3"]} +{"1003594": ["3", "1", "3", "2", "3", "2", "2"]} +{"0005247": ["2", "3", "2", "3", "3", "2", "3"]} +{"1004895": ["3", "2", "3", "3", "3", "2", "3"]} +{"3005360": ["2", "3", "1", "3", "3", "2", "2"]} +{"1005803": ["3", "2", "3", "2", "3", "2", "2"]} +{"8002761": ["1", "1", "3", "2", "1", "1", "1"]} +{"7002531": ["2", "3", "3", "3", "2", "2", "3"]} +{"7002576": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005457": ["2", "1", "3", "2", "3", "2", "1"]} +{"7002938": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003733": ["3", "2", "3", "3", "2", "1", "2"]} +{"4002790": ["3", "2", "3", "2", "3", "2", "3"]} +{"7002552": ["3", "2", "3", "2", "3", "2", "3"]} +{"5001539": ["2", "3", "1", "3", "2", "2", "1"]} +{"3005483": ["3", "3", "2", "3", "2", "2", "2"]} +{"6004666": ["1", "2", "3", "1", "3", "1", "1"]} +{"4004863": ["1", "1", "3", "3", "3", "3", "1"]} +{"4004531": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003318": ["2", "1", "3", "2", "2", "3", "1"]} +{"6002592": ["1", "2", "3", "2", "3", "3", "1"]} +{"2003635": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002157": ["1", "2", "3", "1", "3", "3", "1"]} +{"6003437": ["1", "2", "3", "2", "3", "2", "1"]} +{"6004412": ["2", "2", "3", "3", "3", "2", "3"]} +{"4003452": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003941": ["1", "1", "3", "2", "3", "2", "1"]} +{"1005431": ["3", "2", "3", "2", "3", "2", "2"]} +{"0003636": ["3", "3", "3", "3", "2", "2", "3"]} +{"8003513": ["2", "2", "2", "2", "2", "3", "2"]} +{"1004244": ["3", "2", "3", "2", "2", "2", "2"]} +{"1003163": ["3", "2", "3", "3", "2", "3", "3"]} +{"1003202": ["3", "2", "2", "3", "3", "2", "3"]} +{"3006129": ["2", "2", "3", "1", "3", "2", "1"]} +{"1006947": ["3", "2", "3", "2", "3", "3", "3"]} +{"2004836": ["3", "3", "2", "3", "2", "2", "3"]} +{"7004166": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003540": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006822": ["2", "1", "3", "1", "2", "2", "1"]} +{"0003512": ["2", "3", "2", "3", "2", "3", "2"]} +{"2006044": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006935": ["3", "1", "3", "1", "3", "3", "3"]} +{"1006935": ["3", "1", "3", "1", "3", "2", "3"]} +{"2005107": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001202": ["1", "2", "3", "2", "1", "2", "1"]} +{"8003694": ["2", "2", "3", "2", "2", "2", "2"]} +{"2003247": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006087": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003726": ["2", "3", "2", "3", "3", "2", "2"]} +{"0003674": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006998": ["3", "2", "3", "2", "3", "2", "2"]} +{"0004409": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003851": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003071": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003025": ["3", "3", "3", "2", "1", "3", "3"]} +{"6003498": ["2", "2", "3", "1", "3", "3", "3"]} +{"2006773": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003608": ["3", "3", "1", "3", "3", "2", "3"]} +{"4004247": ["3", "1", "3", "2", "3", "2", "1"]} +{"3006893": ["3", "2", "3", "3", "1", "3", "3"]} +{"3005470": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004895": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003433": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005070": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004889": ["3", "2", "3", "3", "1", "2", "2"]} +{"8001671": ["1", "2", "3", "2", "2", "2", "1"]} +{"0003813": ["3", "3", "3", "3", "2", "2", "3"]} +{"7004413": ["3", "3", "2", "2", "3", "2", "3"]} +{"6002181": ["2", "1", "3", "2", "3", "2", "1"]} +{"1003713": ["3", "1", "3", "2", "3", "2", "3"]} +{"2004811": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003596": ["3", "3", "2", "3", "3", "2", "3"]} +{"2003185": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002369": ["3", "3", "3", "2", "1", "1", "2"]} +{"8001827": ["2", "2", "2", "2", "2", "3", "1"]} +{"6002804": ["2", "2", "3", "1", "3", "3", "1"]} +{"7004406": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003755": ["2", "3", "1", "3", "2", "2", "1"]} +{"2007135": ["3", "3", "2", "3", "3", "2", "3"]} +{"6004201": ["2", "2", "3", "2", "2", "2", "1"]} +{"8003537": ["1", "3", "2", "3", "2", "3", "1"]} +{"1003246": ["2", "1", "3", "1", "2", "3", "1"]} +{"3005054": ["2", "2", "3", "2", "2", "2", "1"]} +{"6003072": ["2", "1", "3", "2", "2", "3", "1"]} +{"7004714": ["3", "2", "2", "2", "2", "2", "1"]} +{"2006590": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003221": ["3", "3", "2", "3", "3", "2", "3"]} +{"0003404": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006622": ["2", "1", "3", "2", "2", "2", "2"]} +{"0005668": ["2", "3", "2", "3", "2", "3", "3"]} +{"2004475": ["3", "3", "3", "2", "2", "2", "3"]} +{"8002116": ["1", "2", "3", "2", "2", "3", "1"]} +{"6002327": ["1", "2", "3", "2", "2", "3", "1"]} +{"2004508": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006618": ["3", "2", "3", "2", "2", "3", "3"]} +{"3004671": ["3", "2", "3", "2", "2", "3", "3"]} +{"2004128": ["3", "3", "3", "2", "2", "2", "3"]} +{"4004050": ["2", "2", "3", "2", "3", "2", "3"]} +{"7004634": ["2", "2", "3", "2", "2", "3", "1"]} +{"5001520": ["3", "3", "1", "3", "3", "2", "3"]} +{"0005661": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003968": ["1", "2", "3", "2", "3", "2", "1"]} +{"6002337": ["1", "2", "3", "2", "3", "2", "1"]} +{"8003259": ["1", "2", "3", "2", "3", "3", "1"]} +{"7003492": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004489": ["2", "3", "3", "3", "3", "1", "1"]} +{"6002332": ["1", "2", "3", "2", "3", "2", "1"]} +{"5001885": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005466": ["3", "2", "3", "2", "2", "2", "3"]} +{"8001385": ["2", "3", "3", "2", "3", "3", "2"]} +{"2005402": ["3", "2", "3", "2", "3", "2", "2"]} +{"8001197": ["2", "2", "3", "2", "3", "3", "1"]} +{"0004665": ["2", "3", "2", "3", "3", "2", "3"]} +{"4002217": ["3", "3", "3", "3", "1", "3", "1"]} +{"7002435": ["3", "1", "3", "2", "2", "2", "1"]} +{"6003370": ["2", "2", "3", "2", "1", "2", "1"]} +{"1003661": ["3", "1", "3", "2", "3", "2", "3"]} +{"2005360": ["3", "3", "1", "3", "2", "2", "3"]} +{"8001145": ["1", "2", "3", "2", "3", "2", "1"]} +{"0005748": ["3", "3", "1", "3", "2", "2", "2"]} +{"1006317": ["2", "1", "3", "2", "1", "3", "1"]} +{"6004514": ["1", "1", "3", "2", "3", "2", "1"]} +{"2007446": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002356": ["1", "2", "3", "2", "3", "3", "2"]} +{"0004970": ["3", "3", "3", "2", "3", "2", "3"]} +{"8001411": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003567": ["3", "2", "3", "1", "2", "2", "3"]} +{"8002706": ["2", "3", "3", "2", "3", "3", "2"]} +{"0004173": ["3", "2", "3", "2", "3", "2", "2"]} +{"4002223": ["3", "1", "3", "2", "2", "2", "2"]} +{"7003791": ["3", "3", "2", "2", "3", "3", "3"]} +{"3005932": ["3", "3", "3", "2", "1", "3", "2"]} +{"2007651": ["3", "3", "3", "2", "2", "3", "3"]} +{"5001830": ["2", "3", "2", "3", "2", "3", "3"]} +{"4002003": ["3", "3", "2", "3", "2", "2", "3"]} +{"2003880": ["3", "3", "2", "3", "2", "3", "3"]} +{"4002262": ["3", "3", "3", "3", "2", "2", "3"]} +{"4004632": ["3", "3", "2", "2", "3", "2", "3"]} +{"3005284": ["3", "3", "1", "3", "2", "2", "3"]} +{"8001313": ["1", "2", "3", "2", "3", "1", "1"]} +{"6003700": ["2", "2", "3", "1", "3", "3", "1"]} +{"1003158": ["1", "1", "3", "2", "3", "3", "1"]} +{"0006686": ["3", "3", "3", "3", "2", "2", "3"]} +{"3006690": ["2", "2", "3", "1", "3", "2", "1"]} +{"2004657": ["2", "1", "3", "2", "3", "3", "1"]} +{"0005015": ["3", "2", "3", "3", "3", "1", "2"]} +{"8002712": ["2", "2", "3", "2", "3", "2", "1"]} +{"7004266": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003303": ["3", "3", "3", "2", "2", "2", "3"]} +{"7002302": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006594": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005781": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003613": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004687": ["3", "2", "3", "2", "3", "2", "3"]} +{"4003863": ["3", "2", "3", "3", "2", "3", "3"]} +{"6003001": ["2", "2", "3", "1", "3", "3", "2"]} +{"6003001": ["2", "2", "3", "1", "3", "2", "2"]} +{"0006817": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004259": ["2", "1", "3", "2", "3", "3", "1"]} +{"1005695": ["2", "1", "3", "2", "3", "3", "1"]} +{"3004149": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001431": ["2", "2", "3", "1", "3", "3", "2"]} +{"1005356": ["3", "2", "3", "2", "2", "3", "3"]} +{"6002279": ["1", "2", "3", "2", "2", "3", "2"]} +{"7003221": ["3", "2", "3", "2", "3", "2", "3"]} +{"3005367": ["2", "1", "3", "1", "3", "2", "1"]} +{"0005551": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003438": ["1", "2", "3", "3", "2", "3", "1"]} +{"2004643": ["2", "3", "3", "2", "3", "3", "2"]} +{"6003808": ["1", "2", "3", "2", "2", "2", "1"]} +{"2003016": ["3", "3", "3", "2", "3", "2", "3"]} +{"2007179": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005555": ["3", "3", "3", "2", "2", "1", "2"]} +{"6002098": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003687": ["3", "2", "3", "3", "2", "3", "3"]} +{"3003384": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003565": ["2", "1", "3", "2", "3", "2", "1"]} +{"8003434": ["1", "3", "3", "2", "3", "2", "1"]} +{"7004672": ["2", "3", "3", "2", "2", "2", "3"]} +{"4004210": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006278": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004249": ["2", "3", "3", "3", "2", "1", "2"]} +{"3006839": ["2", "3", "1", "3", "3", "3", "3"]} +{"3005934": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003389": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006475": ["1", "1", "3", "1", "1", "2", "1"]} +{"4003518": ["3", "3", "1", "3", "2", "3", "3"]} +{"0003743": ["3", "3", "3", "3", "2", "2", "3"]} +{"0003743": ["3", "3", "3", "3", "2", "2", "3"]} +{"6003745": ["1", "1", "3", "2", "3", "2", "1"]} +{"2007515": ["2", "3", "3", "2", "2", "3", "3"]} +{"0005903": ["2", "2", "3", "2", "2", "2", "2"]} +{"4003558": ["3", "1", "3", "2", "1", "3", "2"]} +{"7004205": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005799": ["3", "2", "3", "2", "3", "3", "3"]} +{"6004728": ["1", "1", "3", "2", "3", "2", "1"]} +{"6002217": ["1", "2", "3", "3", "2", "2", "1"]} +{"6002772": ["2", "3", "3", "2", "3", "2", "2"]} +{"2007814": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003510": ["3", "2", "3", "2", "2", "2", "2"]} +{"3005115": ["2", "2", "3", "3", "3", "3", "3"]} +{"2007848": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003735": ["1", "1", "3", "2", "3", "2", "1"]} +{"6004889": ["1", "2", "3", "3", "3", "2", "1"]} +{"0006762": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007254": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006704": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003227": ["1", "2", "3", "2", "3", "3", "1"]} +{"0006842": ["3", "3", "2", "2", "3", "3", "3"]} +{"1004954": ["3", "1", "3", "2", "3", "2", "3"]} +{"3006182": ["2", "2", "3", "1", "2", "3", "2"]} +{"0004642": ["2", "3", "3", "3", "3", "2", "2"]} +{"2006691": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002974": ["1", "2", "3", "2", "1", "2", "1"]} +{"0005629": ["2", "3", "3", "3", "3", "3", "2"]} +{"5001748": ["2", "3", "3", "3", "2", "2", "2"]} +{"0004907": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004729": ["2", "1", "3", "2", "2", "3", "3"]} +{"2006168": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002065": ["1", "2", "3", "2", "1", "2", "1"]} +{"7004301": ["2", "1", "3", "2", "3", "2", "3"]} +{"2007453": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004702": ["3", "3", "2", "3", "2", "2", "3"]} +{"4003556": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003938": ["3", "2", "3", "3", "2", "3", "3"]} +{"7004019": ["2", "2", "3", "2", "2", "3", "2"]} +{"0005266": ["3", "3", "1", "3", "2", "2", "3"]} +{"1005241": ["3", "1", "3", "2", "3", "2", "2"]} +{"0004440": ["2", "3", "3", "3", "3", "2", "3"]} +{"2005971": ["3", "2", "3", "3", "2", "3", "3"]} +{"0004500": ["2", "3", "2", "3", "3", "2", "2"]} +{"6002276": ["1", "2", "3", "2", "3", "3", "1"]} +{"0005589": ["3", "2", "3", "3", "2", "2", "3"]} +{"2005004": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004635": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006435": ["3", "2", "3", "1", "3", "2", "2"]} +{"8001716": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003224": ["1", "1", "3", "1", "3", "3", "2"]} +{"1005719": ["3", "1", "3", "1", "2", "2", "1"]} +{"4003120": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003995": ["2", "2", "3", "2", "3", "2", "3"]} +{"7004545": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003660": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004037": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005627": ["2", "1", "3", "2", "2", "2", "2"]} +{"6002409": ["2", "1", "3", "2", "2", "2", "1"]} +{"7004435": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004220": ["1", "1", "3", "2", "2", "2", "1"]} +{"8003003": ["1", "3", "2", "2", "2", "3", "1"]} +{"8002728": ["1", "2", "3", "1", "2", "3", "1"]} +{"1005674": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003282": ["2", "2", "3", "3", "2", "2", "3"]} +{"0005919": ["3", "3", "3", "2", "2", "3", "3"]} +{"6002737": ["1", "2", "3", "2", "2", "3", "1"]} +{"2005242": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005370": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005667": ["2", "3", "3", "3", "3", "2", "2"]} +{"8003220": ["1", "2", "2", "3", "2", "2", "1"]} +{"4003386": ["3", "2", "3", "3", "1", "3", "3"]} +{"3003865": ["2", "1", "3", "3", "2", "2", "1"]} +{"6002830": ["2", "1", "3", "2", "2", "3", "1"]} +{"3004487": ["1", "2", "3", "3", "2", "3", "2"]} +{"6004953": ["1", "2", "3", "2", "2", "3", "1"]} +{"7003697": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003617": ["3", "3", "2", "2", "3", "3", "3"]} +{"6004821": ["2", "1", "3", "2", "2", "3", "1"]} +{"8001229": ["1", "2", "3", "2", "1", "1", "1"]} +{"3005129": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004397": ["3", "1", "3", "2", "3", "3", "3"]} +{"8001228": ["1", "2", "3", "2", "2", "2", "1"]} +{"1005498": ["2", "1", "3", "1", "3", "2", "2"]} +{"3003286": ["2", "3", "2", "3", "3", "3", "2"]} +{"0005867": ["3", "3", "2", "3", "3", "2", "3"]} +{"2003639": ["3", "3", "2", "3", "3", "2", "3"]} +{"4002608": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005038": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005724": ["2", "3", "3", "2", "2", "2", "2"]} +{"4004459": ["3", "3", "2", "2", "3", "3", "3"]} +{"6003345": ["2", "1", "3", "1", "3", "3", "1"]} +{"6002326": ["1", "1", "3", "1", "3", "2", "1"]} +{"2004852": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002111": ["3", "3", "3", "2", "3", "2", "3"]} +{"3005320": ["1", "2", "3", "2", "3", "2", "2"]} +{"2004919": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006695": ["2", "3", "3", "3", "3", "3", "3"]} +{"2003740": ["2", "3", "2", "3", "2", "3", "3"]} +{"2004404": ["2", "3", "3", "2", "3", "2", "2"]} +{"1006081": ["3", "1", "3", "2", "2", "2", "3"]} +{"0003238": ["1", "3", "3", "3", "2", "1", "2"]} +{"6002440": ["3", "2", "3", "2", "3", "3", "3"]} +{"1003305": ["2", "1", "3", "2", "3", "3", "1"]} +{"2004932": ["3", "2", "3", "3", "3", "2", "3"]} +{"2004015": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003061": ["2", "3", "1", "3", "2", "3", "2"]} +{"2007434": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004776": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003433": ["2", "3", "2", "2", "3", "2", "3"]} +{"6004392": ["1", "2", "3", "2", "3", "3", "1"]} +{"7002023": ["2", "3", "3", "2", "3", "3", "3"]} +{"8003483": ["1", "2", "3", "2", "2", "2", "1"]} +{"2004536": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004840": ["2", "3", "2", "2", "2", "3", "3"]} +{"2004721": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004588": ["3", "2", "3", "2", "3", "2", "3"]} +{"7003883": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006367": ["3", "1", "3", "2", "2", "2", "2"]} +{"0006346": ["2", "3", "2", "3", "1", "2", "1"]} +{"3005882": ["2", "2", "3", "2", "3", "2", "2"]} +{"4002733": ["2", "3", "3", "3", "2", "2", "3"]} +{"1003955": ["2", "1", "3", "1", "3", "3", "2"]} +{"2003338": ["3", "3", "1", "3", "3", "3", "3"]} +{"3006861": ["2", "2", "3", "2", "2", "2", "1"]} +{"7002036": ["2", "2", "3", "2", "3", "2", "2"]} +{"2005650": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005357": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006340": ["1", "2", "3", "3", "2", "3", "1"]} +{"8002428": ["2", "2", "3", "2", "3", "3", "1"]} +{"2007408": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004620": ["2", "2", "3", "2", "3", "3", "2"]} +{"3004733": ["2", "2", "3", "3", "2", "3", "2"]} +{"6004949": ["2", "2", "3", "2", "3", "2", "2"]} +{"1003002": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004593": ["3", "3", "3", "3", "2", "2", "3"]} +{"0005751": ["3", "3", "2", "3", "1", "2", "3"]} +{"0004612": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005466": ["3", "3", "2", "3", "3", "2", "3"]} +{"3005201": ["2", "2", "3", "3", "2", "3", "2"]} +{"6003887": ["2", "2", "3", "2", "2", "2", "3"]} +{"1006056": ["3", "2", "3", "2", "3", "3", "3"]} +{"1003685": ["2", "1", "3", "2", "3", "3", "3"]} +{"7002275": ["1", "3", "3", "2", "1", "1", "1"]} +{"8003246": ["1", "2", "3", "2", "1", "2", "1"]} +{"2007263": ["2", "3", "2", "3", "2", "3", "3"]} +{"6003560": ["2", "1", "3", "2", "3", "2", "3"]} +{"4004310": ["3", "2", "3", "3", "1", "3", "1"]} +{"0005466": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001892": ["2", "2", "3", "2", "2", "2", "1"]} +{"1004484": ["2", "1", "3", "2", "3", "3", "2"]} +{"8002188": ["3", "2", "3", "2", "2", "2", "3"]} +{"0006360": ["2", "3", "3", "3", "1", "2", "3"]} +{"0005418": ["3", "3", "1", "3", "1", "2", "2"]} +{"0005680": ["3", "3", "2", "3", "2", "3", "3"]} +{"7003690": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002476": ["3", "2", "3", "2", "2", "2", "2"]} +{"0006795": ["2", "3", "2", "3", "3", "3", "3"]} +{"3004129": ["2", "2", "3", "2", "3", "1", "2"]} +{"2004145": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004208": ["2", "2", "3", "3", "3", "2", "2"]} +{"8003999": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003868": ["1", "2", "3", "2", "3", "2", "1"]} +{"4003551": ["3", "3", "3", "2", "2", "2", "3"]} +{"6004437": ["1", "2", "3", "2", "2", "2", "1"]} +{"8001353": ["2", "2", "3", "3", "2", "2", "1"]} +{"2003528": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004439": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003708": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003065": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004757": ["2", "2", "3", "2", "2", "3", "3"]} +{"3006026": ["2", "2", "3", "2", "3", "2", "2"]} +{"7002553": ["2", "2", "3", "2", "2", "1", "2"]} +{"6003990": ["1", "2", "3", "2", "2", "2", "1"]} +{"8003008": ["1", "2", "3", "2", "2", "3", "1"]} +{"7004963": ["3", "2", "3", "2", "2", "3", "3"]} +{"7004445": ["3", "2", "3", "2", "2", "2", "3"]} +{"7003228": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004418": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005644": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006697": ["2", "1", "3", "3", "3", "2", "1"]} +{"0005492": ["3", "3", "3", "3", "2", "1", "1"]} +{"0003583": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002591": ["3", "3", "2", "2", "2", "2", "3"]} +{"3005390": ["2", "1", "3", "2", "2", "3", "1"]} +{"4003612": ["3", "2", "3", "3", "2", "3", "3"]} +{"0006053": ["3", "3", "2", "3", "2", "2", "3"]} +{"2006510": ["2", "3", "2", "3", "2", "3", "2"]} +{"1005671": ["2", "1", "3", "2", "2", "2", "1"]} +{"7003572": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003822": ["1", "2", "3", "2", "3", "2", "1"]} +{"6004166": ["3", "2", "3", "1", "3", "2", "3"]} +{"2003089": ["3", "3", "3", "2", "2", "3", "3"]} +{"7004381": ["3", "3", "3", "3", "1", "2", "1"]} +{"0003950": ["3", "3", "3", "3", "2", "2", "3"]} +{"4002835": ["3", "3", "3", "2", "3", "2", "3"]} +{"1006828": ["3", "2", "3", "3", "2", "3", "3"]} +{"6003058": ["2", "2", "3", "3", "3", "2", "2"]} +{"3006448": ["3", "3", "1", "3", "3", "2", "3"]} +{"2005067": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003019": ["3", "3", "3", "2", "1", "3", "1"]} +{"2003685": ["3", "2", "3", "3", "1", "2", "2"]} +{"2004591": ["3", "3", "1", "3", "2", "2", "3"]} +{"7003852": ["2", "3", "2", "3", "2", "3", "3"]} +{"2006760": ["2", "3", "2", "3", "1", "2", "2"]} +{"0004625": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005708": ["2", "1", "3", "2", "2", "3", "1"]} +{"0004323": ["3", "3", "3", "3", "2", "2", "3"]} +{"0006213": ["2", "2", "3", "3", "3", "1", "2"]} +{"6003893": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004738": ["3", "3", "2", "3", "2", "2", "3"]} +{"0006797": ["3", "3", "2", "3", "2", "2", "2"]} +{"1006217": ["3", "1", "3", "2", "3", "2", "1"]} +{"4002331": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003354": ["1", "2", "3", "2", "2", "3", "1"]} +{"8003643": ["1", "2", "3", "2", "1", "2", "1"]} +{"7003503": ["2", "3", "1", "3", "2", "3", "3"]} +{"7004795": ["2", "3", "3", "2", "3", "3", "3"]} +{"1005894": ["3", "2", "3", "2", "3", "2", "3"]} +{"7002520": ["2", "2", "3", "2", "2", "2", "2"]} +{"4004087": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004805": ["3", "1", "3", "1", "1", "1", "1"]} +{"3005587": ["2", "2", "3", "2", "3", "3", "1"]} +{"3006233": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006407": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003830": ["2", "2", "3", "3", "3", "3", "2"]} +{"1006023": ["3", "1", "3", "1", "2", "2", "2"]} +{"4003040": ["3", "3", "2", "2", "3", "3", "3"]} +{"1004857": ["2", "1", "3", "2", "2", "2", "1"]} +{"6002191": ["1", "2", "3", "2", "3", "2", "1"]} +{"4003189": ["2", "3", "3", "3", "1", "3", "2"]} +{"4003399": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005267": ["3", "2", "3", "1", "3", "2", "3"]} +{"0006744": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003363": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002927": ["3", "3", "3", "2", "2", "2", "3"]} +{"6003352": ["2", "1", "3", "1", "3", "2", "1"]} +{"6003211": ["2", "2", "3", "2", "1", "2", "2"]} +{"7002579": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005366": ["2", "3", "3", "3", "2", "2", "2"]} +{"0005923": ["3", "3", "2", "3", "1", "2", "2"]} +{"0005923": ["3", "3", "2", "3", "1", "2", "2"]} +{"3003758": ["3", "2", "3", "2", "3", "2", "3"]} +{"2006362": ["3", "3", "3", "2", "2", "2", "3"]} +{"1006243": ["3", "2", "3", "1", "3", "2", "3"]} +{"7002193": ["2", "2", "3", "2", "3", "1", "2"]} +{"0005994": ["3", "3", "1", "3", "2", "3", "3"]} +{"8002457": ["2", "2", "3", "2", "1", "2", "1"]} +{"8001518": ["2", "1", "3", "2", "2", "2", "1"]} +{"3004929": ["2", "3", "3", "2", "2", "2", "2"]} +{"3006556": ["3", "3", "2", "3", "1", "3", "1"]} +{"7003811": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001683": ["3", "3", "1", "3", "2", "3", "3"]} +{"1004427": ["3", "2", "3", "2", "2", "2", "2"]} +{"7003345": ["3", "3", "3", "2", "1", "3", "1"]} +{"1004950": ["3", "1", "3", "2", "2", "3", "3"]} +{"6003780": ["2", "2", "3", "1", "3", "2", "1"]} +{"3003740": ["1", "3", "3", "2", "2", "2", "1"]} +{"0004149": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004272": ["2", "1", "3", "2", "2", "2", "2"]} +{"8001747": ["2", "2", "3", "2", "3", "2", "1"]} +{"4004721": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006560": ["3", "3", "3", "2", "3", "2", "3"]} +{"1006254": ["2", "1", "3", "2", "2", "3", "1"]} +{"1006705": ["3", "2", "3", "1", "3", "3", "3"]} +{"2004285": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004818": ["2", "1", "3", "2", "1", "3", "1"]} +{"2006647": ["3", "3", "3", "2", "3", "2", "3"]} +{"6003582": ["1", "2", "3", "2", "1", "2", "1"]} +{"8003663": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005333": ["3", "2", "3", "3", "2", "2", "3"]} +{"4002589": ["3", "2", "3", "3", "1", "3", "1"]} +{"7003952": ["3", "2", "3", "2", "3", "2", "3"]} +{"3006301": ["2", "2", "3", "3", "2", "3", "2"]} +{"2006932": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005085": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004630": ["3", "3", "3", "3", "2", "2", "3"]} +{"8003507": ["2", "1", "3", "2", "3", "3", "1"]} +{"3005382": ["2", "1", "3", "2", "2", "3", "2"]} +{"2006134": ["3", "3", "2", "3", "2", "3", "3"]} +{"1004120": ["3", "2", "3", "3", "3", "3", "3"]} +{"1004576": ["3", "1", "3", "1", "1", "3", "2"]} +{"8003130": ["2", "2", "3", "2", "3", "2", "1"]} +{"3006698": ["2", "2", "3", "3", "1", "1", "1"]} +{"7004740": ["3", "3", "3", "2", "2", "3", "3"]} +{"7004632": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003574": ["2", "2", "3", "2", "2", "2", "2"]} +{"7004236": ["3", "3", "3", "3", "2", "2", "2"]} +{"0006105": ["3", "3", "2", "3", "2", "3", "3"]} +{"6004644": ["3", "1", "3", "2", "1", "3", "2"]} +{"8002787": ["2", "1", "3", "2", "3", "2", "1"]} +{"7002597": ["3", "3", "3", "3", "1", "2", "2"]} +{"3004571": ["2", "1", "3", "2", "1", "3", "1"]} +{"1004846": ["3", "1", "3", "1", "3", "3", "1"]} +{"0004755": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007022": ["3", "3", "1", "3", "3", "3", "3"]} +{"1005751": ["3", "2", "3", "2", "3", "3", "3"]} +{"2007219": ["3", "3", "1", "3", "2", "3", "3"]} +{"1006241": ["3", "1", "3", "2", "3", "3", "1"]} +{"6003608": ["1", "2", "3", "2", "3", "3", "2"]} +{"3006004": ["2", "3", "3", "2", "3", "2", "2"]} +{"2007588": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003486": ["3", "3", "2", "3", "2", "3", "3"]} +{"1004371": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003609": ["2", "1", "3", "2", "2", "2", "1"]} +{"7004827": ["3", "3", "3", "2", "3", "2", "3"]} +{"2006234": ["3", "3", "2", "3", "2", "3", "3"]} +{"3005316": ["1", "3", "3", "2", "2", "1", "1"]} +{"3004394": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003942": ["2", "1", "3", "2", "3", "2", "1"]} +{"0005166": ["2", "2", "3", "1", "3", "2", "2"]} +{"6004971": ["2", "1", "3", "2", "3", "3", "1"]} +{"6004971": ["2", "1", "3", "2", "3", "2", "1"]} +{"5001422": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003410": ["3", "2", "3", "2", "2", "1", "2"]} +{"6004859": ["2", "2", "3", "3", "2", "2", "3"]} +{"1003083": ["3", "1", "3", "1", "2", "2", "1"]} +{"0003485": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003846": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004592": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004684": ["2", "2", "3", "2", "2", "2", "2"]} +{"6004124": ["2", "1", "3", "1", "3", "3", "1"]} +{"4004046": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005276": ["2", "3", "2", "3", "2", "3", "3"]} +{"5001322": ["3", "3", "2", "3", "2", "3", "3"]} +{"7003270": ["2", "3", "3", "3", "1", "2", "1"]} +{"4003505": ["2", "3", "2", "3", "2", "3", "3"]} +{"4004644": ["2", "2", "3", "2", "1", "1", "1"]} +{"2007836": ["3", "3", "2", "3", "3", "2", "3"]} +{"4004301": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006775": ["3", "2", "3", "2", "2", "3", "3"]} +{"3006293": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003378": ["2", "3", "2", "3", "3", "3", "2"]} +{"1006460": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007482": ["2", "3", "2", "2", "2", "3", "3"]} +{"1003724": ["3", "1", "3", "1", "3", "2", "2"]} +{"3003222": ["2", "1", "3", "3", "2", "3", "1"]} +{"2007557": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003223": ["2", "3", "2", "3", "3", "3", "3"]} +{"7002319": ["3", "3", "3", "3", "2", "2", "3"]} +{"3006919": ["2", "3", "1", "3", "2", "3", "2"]} +{"6003129": ["2", "1", "3", "2", "3", "3", "1"]} +{"0005043": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006253": ["3", "2", "3", "1", "3", "3", "3"]} +{"6003506": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004570": ["2", "2", "3", "1", "3", "2", "3"]} +{"4004271": ["3", "1", "3", "3", "3", "3", "3"]} +{"4002654": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003480": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005692": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002936": ["2", "2", "3", "3", "2", "1", "2"]} +{"1003691": ["2", "2", "3", "1", "1", "3", "1"]} +{"4004525": ["2", "2", "3", "2", "2", "2", "1"]} +{"4004480": ["3", "2", "3", "3", "1", "3", "3"]} +{"1003045": ["3", "1", "3", "1", "3", "2", "1"]} +{"1004176": ["3", "1", "3", "2", "2", "3", "3"]} +{"1004034": ["3", "2", "3", "1", "2", "3", "3"]} +{"2004495": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003651": ["2", "1", "3", "2", "2", "2", "1"]} +{"7004864": ["3", "3", "3", "3", "2", "2", "3"]} +{"3005988": ["3", "2", "3", "3", "3", "3", "3"]} +{"8001152": ["2", "2", "3", "2", "3", "3", "1"]} +{"2004096": ["2", "3", "3", "3", "1", "1", "1"]} +{"3005277": ["2", "3", "3", "2", "3", "2", "2"]} +{"0003949": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005499": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005687": ["2", "1", "3", "1", "3", "2", "3"]} +{"3006386": ["2", "2", "3", "3", "3", "3", "3"]} +{"6002418": ["2", "2", "3", "2", "1", "2", "1"]} +{"3006697": ["2", "3", "3", "2", "2", "3", "3"]} +{"1005018": ["3", "1", "3", "1", "2", "2", "3"]} +{"5001106": ["3", "3", "3", "3", "2", "2", "3"]} +{"2003913": ["3", "3", "3", "2", "2", "3", "3"]} +{"3005613": ["2", "2", "3", "2", "2", "3", "1"]} +{"5001755": ["3", "1", "2", "3", "2", "2", "3"]} +{"7004257": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003302": ["1", "1", "3", "1", "3", "2", "1"]} +{"6003861": ["2", "1", "3", "1", "3", "2", "2"]} +{"1004582": ["3", "1", "3", "2", "3", "3", "3"]} +{"2007469": ["3", "2", "3", "2", "3", "2", "3"]} +{"7004826": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003010": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006941": ["3", "1", "3", "2", "3", "2", "3"]} +{"1005250": ["3", "1", "3", "2", "1", "2", "1"]} +{"3006172": ["3", "2", "3", "2", "3", "2", "3"]} +{"8002367": ["1", "1", "3", "2", "3", "2", "1"]} +{"3005233": ["2", "3", "3", "3", "2", "2", "2"]} +{"1004065": ["3", "1", "3", "2", "2", "3", "2"]} +{"0003623": ["3", "3", "2", "3", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_achint.jsonl b/webpage/res/res_rd1_16k/ans_achint.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..577cceecbbadf8fe90564f52ee61f6d479a42f20 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_achint.jsonl @@ -0,0 +1,917 @@ +{"4002444": ["1", "3", "3", "3", "1", "2", "2"]} +{"2004144": ["1", "3", "3", "3", "1", "1", "1"]} +{"6003272": ["1", "1", "2", "1", "1", "1", "1"]} +{"4003212": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004752": ["3", "3", "3", "2", "1", "2", "1"]} +{"1005224": ["1", "1", "1", "1", "1", "1", "1"]} +{"8003720": ["1", "1", "1", "1", "1", "1", "1"]} +{"8003376": ["1", "1", "1", "1", "1", "2", "1"]} +{"3006149": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002444": ["3", "3", "2", "2", "2", "3", "3"]} +{"2004144": ["2", "3", "3", "2", "1", "2", "1"]} +{"6003272": ["1", "1", "2", "1", "1", "1", "1"]} +{"4003212": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007348": ["2", "1", "3", "1", "2", "2", "2"]} +{"8003720": ["2", "1", "3", "1", "3", "2", "1"]} +{"8003376": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006149": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004906": ["3", "3", "1", "3", "2", "3", "2"]} +{"6002723": ["1", "2", "1", "2", "2", "1", "1"]} +{"2003063": ["1", "1", "3", "2", "3", "1", "2"]} +{"2005002": ["3", "2", "2", "2", "2", "3", "2"]} +{"4002228": ["2", "3", "3", "1", "3", "3", "2"]} +{"2007622": ["3", "3", "3", "3", "3", "1", "2"]} +{"3005757": ["1", "1", "2", "1", "1", "1", "1"]} +{"1004723": ["1", "1", "1", "1", "1", "1", "1"]} +{"8003540": ["3", "2", "3", "2", "2", "3", "3"]} +{"6004771": ["2", "2", "3", "2", "1", "1", "1"]} +{"4003795": ["2", "3", "3", "3", "1", "3", "2"]} +{"3003990": ["1", "2", "3", "2", "1", "3", "1"]} +{"2003966": ["1", "1", "3", "2", "1", "2", "2"]} +{"7002747": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006637": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003928": ["3", "1", "3", "1", "3", "2", "2"]} +{"8001369": ["1", "1", "3", "1", "3", "2", "1"]} +{"4004371": ["2", "3", "3", "3", "1", "2", "2"]} +{"8002125": ["1", "1", "3", "2", "2", "1", "1"]} +{"7004705": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005471": ["2", "1", "3", "1", "1", "1", "1"]} +{"2004793": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006623": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004018": ["3", "3", "3", "3", "3", "1", "2"]} +{"4003878": ["2", "3", "3", "3", "2", "1", "2"]} +{"7003593": ["1", "3", "3", "2", "2", "3", "2"]} +{"8002622": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005108": ["3", "3", "3", "3", "2", "1", "2"]} +{"6003290": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004515": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003563": ["1", "1", "3", "3", "2", "2", "2"]} +{"0004903": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004825": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006478": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004894": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006183": ["3", "3", "3", "3", "1", "3", "2"]} +{"5001855": ["1", "1", "2", "2", "3", "1", "2"]} +{"0006279": ["2", "3", "3", "3", "2", "3", "3"]} +{"4004111": ["3", "None", "3", "3", "2", "3", "3"]} +{"2003013": ["2", "3", "3", "2", "3", "3", "3"]} +{"3006605": ["2", "3", "3", "1", "3", "3", "2"]} +{"4004934": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003904": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004787": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004318": ["3", "3", "3", "3", "1", "3", "2"]} +{"7004204": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003782": ["1", "1", "3", "1", "1", "2", "1"]} +{"6004164": ["1", "1", "3", "1", "3", "2", "1"]} +{"0005684": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005017": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005328": ["2", "3", "2", "3", "3", "3", "3"]} +{"0005343": ["3", "3", "3", "3", "1", "3", "2"]} +{"6004733": ["1", "1", "3", "2", "1", "2", "2"]} +{"5001236": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005650": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003743": ["2", "3", "3", "1", "2", "1", "2"]} +{"0004250": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003871": ["2", "3", "3", "3", "1", "3", "2"]} +{"3004420": ["2", "3", "3", "2", "1", "3", "2"]} +{"4002189": ["2", "1", "3", "1", "1", "3", "2"]} +{"4004931": ["3", "3", "3", "1", "3", "3", "2"]} +{"3005668": ["3", "3", "3", "3", "1", "3", "1"]} +{"7004878": ["3", "1", "3", "1", "2", "2", "2"]} +{"7002281": ["3", "2", "3", "1", "3", "3", "2"]} +{"3003182": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006711": ["2", "3", "2", "1", "3", "3", "1"]} +{"0004199": ["2", "3", "1", "3", "3", "3", "2"]} +{"3003971": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006507": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004159": ["2", "2", "3", "1", "2", "2", "2"]} +{"0005702": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003388": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003039": ["2", "1", "3", "1", "2", "2", "1"]} +{"3003862": ["3", "2", "3", "2", "1", "2", "2"]} +{"2005517": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005189": ["3", "3", "3", "3", "1", "1", "2"]} +{"6003979": ["1", "3", "3", "1", "3", "3", "2"]} +{"8001842": ["2", "2", "3", "2", "1", "1", "2"]} +{"1003876": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003194": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004319": ["2", "1", "3", "1", "3", "3", "2"]} +{"2005274": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002482": ["3", "2", "3", "2", "3", "3", "3"]} +{"6004791": ["2", "3", "3", "2", "3", "3", "2"]} +{"8002078": ["2", "3", "3", "2", "3", "3", "2"]} +{"3003206": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006010": ["3", "3", "3", "1", "2", "3", "2"]} +{"3006718": ["3", "3", "2", "3", "1", "3", "2"]} +{"3006217": ["3", "2", "3", "3", "1", "3", "2"]} +{"2005440": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003788": ["1", "3", "3", "1", "3", "3", "2"]} +{"7002575": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004957": ["3", "3", "2", "3", "2", "3", "3"]} +{"4002958": ["3", "1", "3", "3", "3", "3", "2"]} +{"3005065": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004150": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002758": ["1", "3", "3", "2", "1", "2", "2"]} +{"2003259": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004171": ["2", "3", "2", "2", "2", "2", "2"]} +{"3006138": ["3", "2", "3", "1", "3", "3", "2"]} +{"7002715": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001776": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003125": ["2", "1", "2", "1", "1", "2", "1"]} +{"8002099": ["2", "3", "2", "1", "2", "3", "2"]} +{"3006871": ["2", "2", "3", "3", "1", "2", "2"]} +{"7002819": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004855": ["3", "3", "1", "2", "3", "3", "2"]} +{"1005096": ["2", "2", "2", "1", "2", "2", "2"]} +{"2004560": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004229": ["3", "1", "None", "2", "3", "3", "2"]} +{"2004557": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003730": ["3", "2", "2", "1", "2", "2", "2"]} +{"2003570": ["3", "3", "2", "1", "3", "3", "2"]} +{"1005203": ["3", "1", "3", "2", "1", "3", "1"]} +{"8001380": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004130": ["3", "3", "2", "1", "3", "3", "2"]} +{"2003199": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004692": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005290": ["2", "2", "3", "3", "3", "3", "3"]} +{"8003045": ["2", "3", "3", "2", "3", "2", "2"]} +{"0004082": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003469": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003005": ["3", "3", "1", "3", "2", "3", "2"]} +{"7003167": ["3", "3", "2", "3", "1", "3", "2"]} +{"8001483": ["1", "3", "3", "2", "1", "1", "1"]} +{"3004431": ["3", "3", "3", "2", "2", "3", "2"]} +{"2006879": ["2", "3", "2", "3", "2", "3", "2"]} +{"4002352": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003176": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002240": ["3", "3", "2", "3", "1", "3", "2"]} +{"6004428": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004287": ["3", "3", "1", "3", "1", "3", "2"]} +{"6003810": ["3", "1", "3", "1", "3", "3", "2"]} +{"1005604": ["2", "2", "2", "2", "1", "1", "1"]} +{"6003985": ["2", "2", "3", "2", "2", "1", "1"]} +{"0003937": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005019": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003607": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003137": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004434": ["3", "1", "2", "1", "1", "1", "1"]} +{"0004605": ["2", "3", "1", "3", "1", "1", "1"]} +{"8003711": ["2", "1", "3", "2", "1", "1", "2"]} +{"3005638": ["2", "3", "1", "3", "1", "1", "2"]} +{"4003790": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003932": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004149": ["3", "1", "2", "2", "1", "2", "1"]} +{"0003197": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003515": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002095": ["2", "2", "3", "1", "3", "3", "2"]} +{"7002007": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006694": ["3", "1", "2", "1", "1", "3", "1"]} +{"2003898": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005678": ["3", "3", "3", "2", "2", "3", "2"]} +{"1004056": ["3", "1", "3", "1", "1", "1", "1"]} +{"0006003": ["3", "3", "1", "3", "3", "3", "2"]} +{"2005233": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005028": ["3", "3", "2", "3", "1", "1", "2"]} +{"2007788": ["3", "3", "1", "3", "3", "3", "2"]} +{"3005121": ["3", "2", "3", "3", "1", "1", "2"]} +{"3006808": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003518": ["3", "3", "3", "3", "1", "2", "2"]} +{"3005533": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004111": ["None", "3", "None", "None", "None", "None", "None"]} +{"4004111": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004229": ["3", "1", "3", "3", "3", "3", "2"]} +{"2003954": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004519": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004384": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004485": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005292": ["3", "2", "3", "1", "2", "2", "2"]} +{"3003428": ["2", "3", "2", "3", "2", "2", "2"]} +{"0003433": ["3", "3", "2", "3", "1", "2", "2"]} +{"0006386": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001603": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002960": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003090": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001902": ["3", "2", "1", "3", "1", "2", "2"]} +{"8002496": ["2", "2", "3", "1", "1", "1", "1"]} +{"8001566": ["3", "3", "3", "3", "1", "1", "2"]} +{"7002409": ["3", "3", "2", "3", "1", "2", "1"]} +{"6003292": ["2", "1", "2", "3", "1", "2", "1"]} +{"2005158": ["2", "3", "3", "3", "1", "1", "2"]} +{"3006922": ["2", "3", "2", "3", "2", "1", "2"]} +{"0003208": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004572": ["3", "3", "1", "3", "2", "2", "2"]} +{"7002856": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005381": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006162": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005452": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004598": ["3", "3", "3", "3", "2", "1", "2"]} +{"0005188": ["None", "3", "3", "3", "3", "3", "3"]} +{"0005188": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004118": ["3", "2", "3", "3", "2", "3", "3"]} +{"8002566": ["3", "3", "2", "3", "1", "2", "2"]} +{"3005125": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006412": ["3", "3", "1", "3", "2", "2", "2"]} +{"2005049": ["3", "3", "1", "2", "2", "3", "2"]} +{"6002938": ["3", "2", "2", "2", "2", "3", "3"]} +{"1006798": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004022": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005626": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004000": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003735": ["3", "3", "2", "3", "2", "3", "2"]} +{"6002937": ["2", "2", "3", "2", "3", "2", "3"]} +{"5001111": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005717": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004449": ["3", "3", "1", "3", "2", "1", "2"]} +{"1005246": ["2", "1", "3", "1", "2", "2", "1"]} +{"4002256": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003804": ["3", "2", "3", "3", "2", "2", "2"]} +{"6004900": ["3", "1", "3", "2", "2", "2", "2"]} +{"0005630": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006828": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006041": ["2", "1", "3", "1", "1", "1", "1"]} +{"4003025": ["3", "1", "3", "2", "1", "1", "1"]} +{"8001524": ["3", "2", "3", "1", "1", "2", "2"]} +{"2005109": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003937": ["3", "2", "3", "2", "3", "3", "3"]} +{"2004700": ["3", "3", "3", "3", "3", "1", "2"]} +{"4004477": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003820": ["3", "1", "3", "3", "1", "1", "1"]} +{"0004575": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003909": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007331": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003281": ["3", "3", "2", "2", "3", "3", "3"]} +{"6004478": ["1", "2", "2", "1", "1", "1", "1"]} +{"1005189": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003981": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004981": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003787": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002705": ["3", "3", "2", "3", "1", "1", "2"]} +{"6002521": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005332": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002412": ["3", "2", "2", "3", "1", "2", "2"]} +{"7003733": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003571": ["3", "3", "1", "3", "1", "3", "2"]} +{"3005010": ["3", "2", "3", "3", "2", "2", "2"]} +{"4002156": ["3", "3", "2", "3", "3", "2", "3"]} +{"3006779": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006544": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004043": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004334": ["3", "1", "3", "2", "1", "2", "1"]} +{"2005780": ["3", "3", "1", "3", "3", "3", "2"]} +{"0003827": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003457": ["3", "3", "3", "3", "1", "1", "3"]} +{"2004933": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003925": ["2", "2", "3", "1", "1", "1", "1"]} +{"4003272": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004460": ["3", "3", "1", "3", "3", "2", "2"]} +{"2004137": ["3", "3", "3", "2", "2", "2", "2"]} +{"8003409": ["1", "3", "2", "3", "1", "1", "1"]} +{"3006693": ["2", "3", "3", "1", "3", "3", "2"]} +{"8003831": ["2", "2", "3", "2", "1", "2", "1"]} +{"2003679": ["3", "3", "1", "3", "1", "2", "2"]} +{"2007803": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006373": ["3", "2", "2", "2", "1", "1", "1"]} +{"5001638": ["3", "3", "1", "3", "2", "2", "2"]} +{"5001523": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005922": ["3", "1", "3", "2", "3", "3", "1"]} +{"2007496": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003289": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002029": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003241": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004330": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005723": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003875": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004984": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006784": ["2", "1", "3", "2", "2", "3", "2"]} +{"1006318": ["3", "3", "3", "2", "2", "3", "3"]} +{"7003068": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002682": ["3", "3", "2", "2", "2", "3", "2"]} +{"8001392": ["3", "3", "3", "3", "1", "2", "2"]} +{"7003678": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005028": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004774": ["2", "1", "2", "3", "2", "3", "1"]} +{"3003378": ["3", "1", "3", "3", "3", "3", "2"]} +{"0005688": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004912": ["2", "1", "None", "2", "2", "2", "1"]} +{"4003432": ["2", "2", "3", "2", "1", "2", "2"]} +{"6003720": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004912": ["2", "1", "3", "2", "2", "2", "1"]} +{"4003773": ["3", "1", "3", "3", "1", "2", "1"]} +{"1006428": ["3", "2", "3", "2", "3", "3", "3"]} +{"8003638": ["2", "2", "1", "1", "2", "3", "2"]} +{"4004361": ["3", "1", "3", "1", "3", "3", "1"]} +{"0003151": ["3", "3", "1", "3", "1", "2", "2"]} +{"0004016": ["3", "3", "1", "3", "2", "1", "2"]} +{"7002804": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004779": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006244": ["3", "1", "3", "1", "3", "3", "1"]} +{"6003023": ["2", "1", "3", "1", "2", "1", "1"]} +{"2004847": ["3", "3", "2", "3", "1", "1", "2"]} +{"3006551": ["3", "2", "None", "3", "1", "1", "2"]} +{"6003957": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007678": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005274": ["2", "2", "3", "1", "2", "3", "2"]} +{"3005540": ["2", "3", "2", "3", "2", "3", "2"]} +{"5001278": ["3", "3", "1", "3", "1", "2", "1"]} +{"2005383": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006461": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003643": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006036": ["3", "2", "3", "1", "2", "2", "2"]} +{"3004968": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006390": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006482": ["3", "1", "3", "1", "3", "3", "2"]} +{"2007718": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004630": ["1", "1", "3", "1", "2", "3", "1"]} +{"1004064": ["3", "2", "3", "2", "3", "2", "1"]} +{"5001877": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004221": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003631": ["3", "2", "2", "2", "1", "1", "1"]} +{"4004532": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004622": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004224": ["1", "2", "3", "2", "1", "2", "1"]} +{"7004470": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004526": ["3", "2", "3", "2", "2", "3", "2"]} +{"7003396": ["2", "2", "3", "2", "3", "2", "1"]} +{"8002398": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003283": ["2", "2", "3", "2", "3", "3", "2"]} +{"3006890": ["3", "3", "1", "3", "2", "3", "2"]} +{"1003192": ["3", "1", "3", "1", "2", "3", "1"]} +{"0003552": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002816": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001222": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001312": ["3", "1", "2", "3", "2", "2", "2"]} +{"2003372": ["3", "3", "3", "2", "3", "1", "1"]} +{"5001529": ["3", "3", "1", "3", "3", "3", "2"]} +{"1004344": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003510": ["3", "1", "2", "2", "2", "3", "2"]} +{"6004972": ["3", "3", "2", "2", "2", "3", "2"]} +{"6004504": ["2", "1", "3", "2", "2", "1", "1"]} +{"7003696": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006044": ["3", "3", "3", "3", "3", "1", "2"]} +{"1004135": ["3", "1", "3", "1", "3", "2", "1"]} +{"6002866": ["2", "2", "3", "3", "2", "2", "1"]} +{"7004980": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007671": ["3", "3", "1", "3", "3", "3", "2"]} +{"8003313": ["2", "3", "3", "3", "1", "2", "2"]} +{"7003751": ["3", "3", "3", "2", "3", "2", "2"]} +{"8003559": ["1", "2", "3", "2", "2", "1", "1"]} +{"2005577": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006171": ["3", "1", "2", "2", "3", "3", "2"]} +{"2004766": ["3", "3", "1", "3", "1", "3", "2"]} +{"7002616": ["2", "3", "2", "2", "3", "3", "2"]} +{"8003771": ["2", "3", "3", "2", "3", "1", "1"]} +{"5001081": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002806": ["3", "1", "3", "3", "3", "3", "2"]} +{"8002486": ["1", "2", "3", "2", "3", "1", "1"]} +{"7002751": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003581": ["1", "1", "3", "2", "3", "2", "2"]} +{"2003961": ["3", "3", "3", "3", "1", "1", "1"]} +{"3003234": ["2", "3", "3", "3", "2", "2", "2"]} +{"4002072": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004002": ["3", "2", "3", "3", "1", "3", "2"]} +{"5001628": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004055": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006911": ["2", "1", "3", "1", "1", "3", "1"]} +{"4004298": ["3", "3", "3", "3", "3", "1", "3"]} +{"3006093": ["3", "2", "3", "3", "2", "2", "2"]} +{"7002788": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006575": ["3", "3", "1", "3", "1", "2", "1"]} +{"2003794": ["3", "3", "1", "3", "2", "3", "2"]} +{"3004018": ["2", "1", "3", "2", "2", "1", "1"]} +{"1005039": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004184": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007945": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003833": ["3", "3", "1", "3", "1", "3", "1"]} +{"2007567": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006201": ["2", "1", "3", "1", "3", "3", "1"]} +{"5001085": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004562": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003964": ["3", "3", "1", "3", "3", "3", "1"]} +{"1004725": ["2", "1", "3", "1", "3", "1", "1"]} +{"1006843": ["2", "1", "3", "2", "3", "3", "2"]} +{"0004130": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001695": ["2", "2", "3", "2", "3", "3", "2"]} +{"0003684": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005083": ["3", "1", "2", "3", "3", "3", "2"]} +{"1004820": ["3", "1", "3", "2", "3", "3", "1"]} +{"1004088": ["3", "2", "3", "1", "3", "3", "2"]} +{"0006248": ["3", "3", "1", "3", "2", "3", "1"]} +{"4003254": ["3", "1", "3", "2", "2", "2", "1"]} +{"1006648": ["3", "1", "3", "1", "3", "3", "3"]} +{"1006648": ["3", "1", "3", "1", "3", "3", "2"]} +{"7002786": ["3", "2", "3", "3", "3", "3", "3"]} +{"2004911": ["3", "3", "2", "3", "3", "2", "2"]} +{"3006454": ["2", "3", "2", "3", "3", "1", "1"]} +{"8002928": ["2", "3", "2", "2", "1", "3", "1"]} +{"8001186": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005552": ["3", "3", "2", "2", "3", "3", "3"]} +{"6004275": ["3", "1", "3", "1", "3", "3", "1"]} +{"0005065": ["3", "3", "2", "3", "1", "3", "2"]} +{"2006702": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005476": ["2", "1", "3", "1", "3", "3", "1"]} +{"3005476": ["2", "1", "3", "1", "3", "3", "2"]} +{"0006839": ["2", "3", "3", "3", "2", "2", "2"]} +{"3006420": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007506": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003793": ["2", "2", "3", "3", "2", "3", "2"]} +{"6004089": ["1", "1", "3", "1", "2", "2", "1"]} +{"2003272": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003433": ["3", "3", "2", "3", "3", "2", "3"]} +{"4002394": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001913": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004539": ["3", "3", "2", "3", "3", "2", "2"]} +{"1005746": ["3", "2", "3", "1", "3", "3", "2"]} +{"0003795": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007763": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004942": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003918": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003153": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002835": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007929": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005842": ["2", "2", "3", "1", "2", "3", "1"]} +{"0006401": ["2", "2", "3", "2", "2", "2", "1"]} +{"0005421": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003086": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006570": ["3", "1", "3", "2", "2", "3", "3"]} +{"2007465": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007700": ["3", "3", "2", "3", "2", "2", "2"]} +{"7004155": ["3", "3", "3", "2", "2", "3", "3"]} +{"7002380": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003060": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006551": ["3", "2", "3", "3", "1", "1", "2"]} +{"0005062": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005390": ["3", "3", "1", "3", "3", "3", "2"]} +{"0003575": ["3", "3", "2", "3", "2", "2", "3"]} +{"8002201": ["1", "2", "3", "2", "2", "2", "1"]} +{"0004294": ["2", "3", "1", "3", "2", "1", "1"]} +{"5001331": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003313": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005935": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006113": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005123": ["3", "1", "3", "1", "2", "3", "2"]} +{"0004462": ["3", "3", "1", "3", "2", "1", "2"]} +{"4004486": ["3", "1", "3", "1", "1", "3", "1"]} +{"7003275": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001512": ["2", "2", "3", "2", "3", "3", "2"]} +{"6003894": ["1", "2", "3", "2", "3", "1", "1"]} +{"6002118": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004923": ["2", "1", "3", "1", "3", "2", "1"]} +{"2006249": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002837": ["2", "2", "3", "2", "2", "1", "1"]} +{"5001194": ["3", "3", "1", "3", "3", "2", "2"]} +{"2007144": ["3", "3", "2", "3", "2", "3", "2"]} +{"2007010": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003961": ["2", "1", "3", "1", "3", "1", "1"]} +{"1006806": ["2", "1", "3", "2", "3", "3", "1"]} +{"8001967": ["2", "3", "2", "2", "1", "1", "1"]} +{"4002558": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002122": ["2", "2", "2", "2", "3", "2", "1"]} +{"1004082": ["1", "1", "3", "1", "1", "3", "1"]} +{"6003062": ["1", "3", "3", "3", "3", "3", "2"]} +{"6003673": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003155": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003429": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005251": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005711": ["2", "1", "3", "2", "3", "3", "1"]} +{"0003059": ["3", "3", "2", "3", "1", "3", "2"]} +{"0006247": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004856": ["1", "3", "1", "2", "1", "1", "1"]} +{"3006859": ["3", "3", "3", "3", "3", "3", "3"]} +{"6000008": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005033": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004659": ["2", "3", "3", "3", "2", "2", "2"]} +{"3005557": ["1", "3", "3", "3", "1", "2", "1"]} +{"0006727": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004077": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003952": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003318": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002190": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006186": ["1", "2", "3", "2", "2", "1", "1"]} +{"0003990": ["2", "3", "2", "3", "3", "3", "2"]} +{"7002926": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002658": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005336": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002014": ["3", "2", "3", "2", "3", "3", "2"]} +{"8002192": ["2", "2", "3", "2", "3", "3", "3"]} +{"0003818": ["3", "3", "2", "3", "3", "3", "2"]} +{"4004435": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005373": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001710": ["3", "3", "2", "3", "2", "2", "2"]} +{"3004339": ["3", "3", "3", "3", "3", "1", "2"]} +{"2005596": ["3", "3", "3", "3", "2", "2", "2"]} +{"4003715": ["3", "3", "2", "3", "1", "2", "2"]} +{"3005348": ["3", "1", "3", "2", "1", "2", "1"]} +{"8002441": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004305": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003989": ["2", "1", "3", "2", "3", "3", "2"]} +{"6002135": ["2", "1", "3", "2", "3", "3", "1"]} +{"8001901": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004518": ["1", "1", "3", "2", "1", "2", "1"]} +{"2007122": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006673": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002321": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005318": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003219": ["3", "3", "2", "3", "1", "3", "1"]} +{"2003696": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003790": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001341": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003569": ["3", "1", "3", "3", "3", "3", "2"]} +{"0005627": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006194": ["3", "3", "3", "3", "3", "1", "1"]} +{"2005395": ["2", "1", "3", "2", "3", "2", "2"]} +{"1003945": ["3", "1", "3", "1", "3", "2", "1"]} +{"0005349": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004875": ["3", "2", "3", "None", "2", "3", "2"]} +{"4003043": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006193": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006343": ["3", "1", "3", "1", "3", "3", "1"]} +{"3004875": ["3", "2", "3", "3", "2", "3", "2"]} +{"8003752": ["3", "3", "3", "2", "2", "3", "2"]} +{"0005268": ["2", "3", "1", "3", "1", "3", "1"]} +{"6002234": ["2", "3", "3", "2", "1", "2", "1"]} +{"1004511": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003048": ["3", "2", "3", "2", "3", "3", "2"]} +{"2006378": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004194": ["3", "2", "3", "3", "3", "3", "3"]} +{"3005195": ["3", "3", "3", "3", "3", "1", "2"]} +{"8001058": ["2", "3", "3", "1", "3", "2", "2"]} +{"6002458": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006915": ["3", "3", "1", "3", "2", "1", "1"]} +{"3005495": ["3", "3", "3", "3", "3", "1", "2"]} +{"8002141": ["3", "2", "3", "2", "3", "3", "3"]} +{"3004730": ["3", "1", "3", "1", "3", "2", "1"]} +{"2006916": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004568": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002066": ["3", "2", "3", "3", "2", "2", "2"]} +{"0006245": ["2", "3", "2", "3", "3", "3", "2"]} +{"3006778": ["3", "2", "3", "3", "3", "3", "2"]} +{"3003166": ["3", "3", "3", "3", "1", "1", "1"]} +{"1004364": ["3", "1", "3", "1", "3", "3", "1"]} +{"8002543": ["3", "2", "3", "2", "2", "3", "1"]} +{"8001142": ["3", "3", "2", "2", "1", "2", "2"]} +{"3005531": ["2", "3", "3", "3", "1", "2", "2"]} +{"6004638": ["3", "3", "3", "3", "2", "1", "2"]} +{"2007604": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003300": ["3", "1", "3", "1", "2", "2", "1"]} +{"0003262": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002332": ["3", "1", "3", "1", "1", "3", "1"]} +{"2006096": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003355": ["3", "1", "3", "1", "3", "3", "1"]} +{"6004250": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004203": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004701": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004366": ["3", "2", "3", "1", "1", "1", "1"]} +{"6002333": ["2", "1", "3", "1", "2", "3", "1"]} +{"3004474": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002582": ["2", "3", "3", "3", "2", "3", "2"]} +{"8001337": ["3", "3", "3", "3", "3", "2", "2"]} +{"4003711": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006355": ["3", "3", "2", "3", "3", "2", "2"]} +{"8002055": ["3", "3", "3", "2", "1", "2", "2"]} +{"2004067": ["3", "3", "3", "2", "2", "3", "2"]} +{"6004678": ["1", "3", "3", "1", "2", "1", "1"]} +{"5001941": ["3", "3", "1", "3", "3", "3", "2"]} +{"3003427": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004071": ["3", "1", "3", "1", "3", "3", "1"]} +{"0005568": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004262": ["3", "1", "3", "1", "2", "2", "1"]} +{"4004686": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005323": ["2", "1", "3", "1", "2", "2", "1"]} +{"2004633": ["3", "3", "3", "3", "1", "1", "1"]} +{"6002979": ["2", "1", "3", "1", "3", "2", "1"]} +{"6002241": ["3", "1", "3", "1", "3", "3", "1"]} +{"1005833": ["3", "1", "3", "1", "3", "2", "1"]} +{"8003219": ["2", "3", "3", "1", "2", "2", "1"]} +{"3004669": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002258": ["2", "3", "3", "3", "3", "2", "2"]} +{"7003338": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002042": ["2", "None", "3", "2", "3", "3", "2"]} +{"4004372": ["3", "2", "3", "2", "1", "1", "1"]} +{"2006442": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004747": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003445": ["3", "3", "2", "3", "1", "1", "1"]} +{"3005286": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003421": ["3", "3", "2", "3", "2", "3", "2"]} +{"0003127": ["3", "3", "3", "3", "1", "1", "1"]} +{"1005137": ["3", "1", "3", "1", "2", "2", "1"]} +{"7003951": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005950": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003667": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005259": ["3", "1", "3", "1", "1", "3", "1"]} +{"2007373": ["3", "3", "3", "3", "3", "1", "2"]} +{"2007309": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006211": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002660": ["2", "3", "3", "1", "3", "2", "2"]} +{"0004719": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005959": ["3", "2", "3", "2", "3", "3", "3"]} +{"3006034": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003443": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003998": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006226": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003765": ["3", "3", "3", "None", "3", "2", "2"]} +{"5001716": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004045": ["2", "3", "3", "3", "3", "1", "2"]} +{"1006925": ["3", "3", "3", "1", "2", "3", "2"]} +{"8001214": ["3", "3", "3", "2", "2", "3", "2"]} +{"6003881": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006740": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003560": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005543": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004110": ["3", "1", "3", "2", "3", "2", "2"]} +{"2007928": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006745": ["3", "2", "3", "2", "2", "3", "2"]} +{"2006216": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006985": ["3", "3", "3", "2", "3", "1", "2"]} +{"3006815": ["3", "3", "2", "3", "1", "2", "1"]} +{"0005886": ["3", "3", "1", "3", "3", "3", "2"]} +{"0003996": ["3", "3", "3", "3", "3", "1", "2"]} +{"8001219": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005831": ["3", "1", "3", "1", "2", "2", "1"]} +{"0005046": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003776": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004120": ["3", "2", "3", "3", "3", "3", "2"]} +{"3005128": ["3", "1", "3", "3", "1", "2", "1"]} +{"6002277": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002492": ["3", "2", "3", "3", "3", "2", "2"]} +{"2005724": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004013": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004612": ["3", "3", "3", "3", "3", "1", "2"]} +{"7002508": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004968": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003828": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003920": ["3", "2", "3", "1", "3", "3", "2"]} +{"0006785": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004961": ["3", "1", "3", "2", "3", "1", "1"]} +{"7003483": ["3", "3", "1", "3", "3", "3", "2"]} +{"2007146": ["3", "2", "3", "3", "2", "2", "2"]} +{"4002812": ["3", "1", "3", "1", "3", "3", "2"]} +{"6003394": ["3", "3", "3", "2", "3", "1", "1"]} +{"7003351": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003207": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003040": ["3", "3", "3", "3", "3", "1", "2"]} +{"4004526": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002745": ["3", "1", "3", "1", "3", "2", "1"]} +{"8001981": ["3", "1", "3", "3", "1", "1", "1"]} +{"2006812": ["3", "3", "3", "3", "1", "2", "2"]} +{"2006233": ["3", "3", "3", "3", "1", "1", "1"]} +{"8002210": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005700": ["3", "3", "3", "3", "1", "1", "1"]} +{"3004502": ["1", "3", "3", "1", "1", "1", "1"]} +{"4004885": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004308": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004404": ["3", "3", "1", "3", "3", "2", "2"]} +{"3006782": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003545": ["3", "1", "3", "1", "2", "1", "1"]} +{"0004107": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005359": ["3", "1", "3", "1", "2", "3", "1"]} +{"3006874": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006446": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003849": ["3", "1", "3", "1", "3", "3", "2"]} +{"1005918": ["3", "1", "3", "1", "3", "3", "1"]} +{"3004695": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004974": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006012": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005446": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002932": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004649": ["2", "3", "3", "3", "1", "1", "1"]} +{"7004320": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001413": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006840": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002314": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003242": ["3", "3", "1", "3", "1", "1", "1"]} +{"3003171": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003710": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004172": ["3", "3", "3", "1", "1", "2", "1"]} +{"1005398": ["3", "3", "3", "2", "2", "2", "1"]} +{"7004893": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004002": ["3", "1", "3", "3", "3", "3", "3"]} +{"0003141": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003859": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007699": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003716": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003089": ["3", "1", "3", "2", "3", "2", "1"]} +{"1003020": ["3", "1", "3", "2", "3", "3", "2"]} +{"4004198": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003951": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004051": ["3", "3", "1", "3", "3", "3", "2"]} +{"7002238": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002491": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004615": ["3", "2", "3", "3", "3", "3", "3"]} +{"8003885": ["3", "1", "3", "2", "3", "3", "2"]} +{"4004208": ["3", "1", "3", "1", "1", "2", "1"]} +{"3004748": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004748": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005754": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002108": ["3", "1", "3", "3", "1", "1", "1"]} +{"2007643": ["3", "3", "3", "3", "1", "2", "2"]} +{"6004904": ["2", "3", "3", "2", "3", "3", "3"]} +{"1006262": ["3", "1", "3", "1", "3", "3", "2"]} +{"1005900": ["3", "1", "3", "1", "2", "2", "2"]} +{"2005372": ["3", "3", "3", "3", "1", "2", "2"]} +{"0003838": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001801": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003290": ["3", "3", "3", "3", "1", "1", "1"]} +{"3004310": ["3", "3", "3", "3", "1", "1", "2"]} +{"1004400": ["3", "1", "3", "3", "3", "3", "1"]} +{"1003207": ["3", "1", "3", "1", "3", "3", "1"]} +{"1005773": ["3", "1", "3", "2", "2", "2", "2"]} +{"6003025": ["3", "1", "3", "3", "2", "2", "1"]} +{"4004755": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004485": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003372": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006615": ["3", "3", "3", "2", "3", "2", "3"]} +{"5001227": ["3", "3", "3", "3", "1", "1", "1"]} +{"8003041": ["3", "2", "3", "2", "2", "3", "2"]} +{"0003944": ["3", "3", "3", "3", "1", "1", "1"]} +{"6003161": ["3", "3", "3", "3", "1", "1", "1"]} +{"0004162": ["3", "3", "2", "3", "2", "2", "2"]} +{"0006131": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002501": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003187": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001479": ["3", "3", "3", "3", "2", "2", "2"]} +{"0005799": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003660": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004266": ["3", "1", "3", "2", "2", "2", "1"]} +{"3006136": ["3", "1", "3", "3", "3", "2", "2"]} +{"3004672": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004918": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004586": ["3", "3", "2", "3", "3", "3", "2"]} +{"0006696": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001375": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004119": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003088": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006270": ["3", "3", "3", "3", "1", "2", "1"]} +{"8002563": ["2", "3", "3", "3", "1", "1", "1"]} +{"8002835": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004248": ["3", "3", "3", "3", "1", "1", "1"]} +{"2007539": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003920": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002580": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003725": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004284": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006163": ["3", "3", "3", "3", "3", "2", "2"]} +{"7004482": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002919": ["2", "1", "3", "1", "2", "2", "1"]} +{"2006157": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006776": ["3", "2", "3", "2", "1", "1", "1"]} +{"3006838": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004948": ["3", "3", "3", "3", "1", "1", "1"]} +{"8001684": ["3", "2", "3", "3", "2", "3", "2"]} +{"4004569": ["3", "2", "3", "3", "2", "2", "2"]} +{"1006616": ["3", "1", "3", "1", "3", "3", "1"]} +{"5001146": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001914": ["3", "3", "3", "3", "2", "2", "2"]} +{"0005282": ["3", "3", "1", "3", "3", "3", "2"]} +{"7003490": ["3", "2", "3", "3", "3", "2", "2"]} +{"8003945": ["3", "2", "3", "1", "3", "2", "2"]} +{"6003146": ["3", "1", "3", "1", "3", "3", "1"]} +{"6004987": ["3", "1", "3", "2", "3", "2", "2"]} +{"6003481": ["3", "1", "3", "1", "3", "3", "1"]} +{"8003937": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003210": ["3", "1", "3", "1", "3", "3", "2"]} +{"2007806": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005152": ["3", "1", "3", "1", "3", "3", "1"]} +{"6002405": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003274": ["3", "1", "3", "1", "3", "2", "1"]} +{"2005986": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003110": ["2", "2", "3", "1", "1", "1", "1"]} +{"2004761": ["3", "3", "1", "3", "3", "3", "2"]} +{"7004901": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002191": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006641": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004465": ["3", "2", "3", "1", "3", "2", "2"]} +{"8001368": ["2", "3", "3", "1", "1", "1", "1"]} +{"7004088": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002744": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003811": ["1", "3", "3", "2", "2", "1", "1"]} +{"3003040": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003094": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006324": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005124": ["3", "3", "3", "1", "2", "2", "2"]} +{"1003647": ["2", "1", "3", "1", "3", "3", "1"]} +{"2003714": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002218": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004428": ["3", "3", "2", "3", "1", "3", "1"]} +{"2003400": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005983": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004031": ["3", "3", "3", "1", "2", "3", "2"]} +{"7002560": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004158": ["3", "1", "3", "1", "1", "1", "1"]} +{"7002774": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002885": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003258": ["2", "1", "3", "1", "2", "2", "1"]} +{"2006726": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004077": ["3", "3", "1", "3", "2", "3", "2"]} +{"1006990": ["1", "1", "3", "1", "3", "3", "1"]} +{"2004068": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004913": ["3", "3", "2", "3", "3", "3", "2"]} +{"0006209": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004299": ["3", "3", "3", "3", "3", "3", "2"]} +{"2006428": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007278": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002228": ["2", "3", "3", "2", "1", "3", "1"]} +{"7004965": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004225": ["3", "3", "3", "3", "3", "1", "1"]} +{"8001321": ["3", "3", "3", "3", "1", "2", "1"]} +{"6003856": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002042": ["2", "2", "3", "2", "3", "3", "2"]} +{"3003765": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004383": ["3", "2", "3", "3", "1", "1", "1"]} +{"6003332": ["3", "3", "2", "3", "1", "2", "1"]} +{"7002729": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001018": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005471": ["3", "2", "3", "3", "3", "3", "3"]} +{"1004548": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004884": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006574": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004529": ["3", "2", "3", "2", "3", "1", "2"]} +{"2005060": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005427": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003971": ["1", "3", "3", "3", "3", "3", "2"]} +{"4004879": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003203": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004931": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004959": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005612": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006572": ["2", "1", "3", "3", "3", "3", "1"]} +{"2007929": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005873": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004168": ["3", "3", "1", "3", "3", "3", "2"]} +{"3005006": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004569": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004065": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006405": ["1", "1", "3", "1", "3", "3", "1"]} +{"8002402": ["2", "2", "3", "3", "2", "2", "2"]} +{"6004793": ["3", "1", "3", "3", "3", "3", "2"]} +{"6003877": ["3", "2", "2", "3", "2", "2", "1"]} +{"6004091": ["2", "1", "3", "1", "3", "2", "1"]} +{"3003632": ["3", "1", "3", "2", "3", "2", "1"]} +{"2004347": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002866": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003195": ["2", "3", "3", "2", "2", "3", "2"]} +{"7003668": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004676": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003774": ["3", "3", "3", "3", "3", "3", "2"]} +{"1005422": ["3", "2", "3", "3", "3", "3", "3"]} +{"8001340": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004868": ["3", "3", "3", "3", "1", "2", "1"]} +{"1005106": ["3", "1", "3", "2", "3", "3", "2"]} +{"2006697": ["3", "3", "2", "3", "3", "3", "2"]} +{"1004710": ["2", "3", "3", "2", "1", "2", "1"]} +{"1006206": ["2", "1", "3", "2", "2", "3", "1"]} +{"0006435": ["3", "3", "1", "3", "3", "3", "2"]} +{"0005162": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003248": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004495": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002072": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002445": ["2", "3", "3", "2", "3", "2", "1"]} +{"4003546": ["3", "3", "2", "3", "2", "3", "3"]} +{"0004958": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005019": ["3", "3", "1", "3", "3", "3", "2"]} +{"2003682": ["3", "3", "3", "1", "1", "1", "1"]} +{"4002054": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003979": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004868": ["3", "3", "3", "3", "2", "1", "2"]} +{"0005822": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003257": ["3", "2", "3", "3", "2", "3", "3"]} +{"1006296": ["1", "1", "3", "2", "3", "3", "1"]} +{"7002468": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004015": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003242": ["2", "3", "3", "2", "3", "3", "2"]} +{"3003212": ["3", "2", "3", "2", "1", "3", "1"]} +{"3006430": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002288": ["3", "1", "3", "2", "1", "2", "1"]} +{"0006334": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004630": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001586": ["3", "3", "1", "3", "2", "3", "2"]} +{"8003733": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002126": ["1", "3", "3", "3", "2", "3", "2"]} +{"2004618": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006273": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005824": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005029": ["3", "2", "3", "2", "2", "3", "2"]} +{"4003301": ["2", "2", "3", "1", "1", "2", "1"]} +{"2007358": ["3", "3", "3", "3", "1", "3", "2"]} +{"6004717": ["1", "3", "3", "1", "2", "3", "1"]} +{"6002064": ["2", "2", "3", "1", "2", "3", "1"]} +{"7002611": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003059": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006081": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003867": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004136": ["3", "2", "3", "3", "3", "3", "2"]} +{"3005150": ["3", "2", "3", "3", "1", "3", "2"]} +{"4002501": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005305": ["1", "2", "3", "2", "3", "3", "2"]} +{"0005524": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004178": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004528": ["3", "1", "3", "3", "3", "3", "2"]} +{"2007403": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003931": ["3", "2", "3", "2", "1", "3", "2"]} +{"6002535": ["2", "1", "3", "2", "3", "3", "1"]} +{"1005125": ["3", "1", "3", "2", "1", "1", "1"]} +{"1006850": ["3", "1", "3", "1", "3", "3", "2"]} +{"1004634": ["1", "2", "3", "2", "3", "3", "1"]} +{"1003223": ["3", "3", "3", "2", "2", "2", "2"]} +{"8002796": ["2", "2", "3", "3", "3", "3", "2"]} +{"3005352": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005449": ["3", "1", "3", "1", "1", "2", "1"]} diff --git a/webpage/res/res_rd1_16k/ans_alice.jsonl b/webpage/res/res_rd1_16k/ans_alice.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_rd1_16k/ans_bob.jsonl b/webpage/res/res_rd1_16k/ans_bob.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b5c29746db22197421094a2f91dc52ef9cea6226 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_bob.jsonl @@ -0,0 +1,24 @@ +{"5001061": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006042": ["2", "3", "3", "3", "2", "3", "3"]} +{"0006042": ["2", "3", "2", "3", "2", "3", "3"]} +{"3006679": ["3", "3", "3", "3", "2", "1", "3"]} +{"6004322": ["1", "1", "3", "1", "3", "3", "1"]} +{"2007658": ["3", "3", "2", "3", "2", "3", "3"]} +{"1004560": ["2", "2", "None", "1", "3", "3", "2"]} +{"2006750": ["3", "3", "2", "3", "2", "2", "3"]} +{"0006869": ["3", "3", "2", "None", "3", "3", "3"]} +{"1004565": ["2", "2", "3", "2", "1", "3", "2"]} +{"3003946": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003680": ["1", "1", "3", "1", "2", "3", "2"]} +{"3004632": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003133": ["3", "3", "1", "3", "2", "3", "3"]} +{"7003993": ["3", "3", "2", "3", "None", "3", "3"]} +{"6003464": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003287": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005085": ["2", "2", "3", "2", "1", "3", "2"]} +{"8001554": ["2", "3", "3", "3", "1", "3", "3"]} +{"4004235": ["3", "1", "3", "2", "1", "3", "2"]} +{"7004650": ["2", "3", "2", "3", "3", "3", "None"]} +{"7004650": ["2", "3", "2", "3", "3", "3", "3"]} +{"1004560": ["2", "2", "3", "1", "3", "3", "2"]} +{"0006869": ["3", "3", "1", "3", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_bohan.jsonl b/webpage/res/res_rd1_16k/ans_bohan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cbd3770da6aae0b6fba5d415c8e5576295ec7e56 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_bohan.jsonl @@ -0,0 +1,1779 @@ +{"8003548": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005228": ["2", "3", "1", "3", "3", "3", "2"]} +{"3004574": ["1", "3", "1", "3", "1", "1", "1"]} +{"2004389": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003281": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005238": ["2", "3", "2", "2", "1", "1", "1"]} +{"0004920": ["2", "3", "3", "3", "2", "2", "3"]} +{"2005920": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004742": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003176": ["3", "1", "3", "2", "3", "2", "2"]} +{"2006481": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006284": ["2", "1", "3", "1", "2", "1", "1"]} +{"4002738": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002186": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004367": ["2", "1", "2", "2", "2", "1", "2"]} +{"7003513": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004290": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003030": ["2", "3", "3", "3", "2", "2", "2"]} +{"3006503": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002223": ["2", "2", "2", "2", "2", "2", "1"]} +{"1005052": ["1", "2", "2", "2", "1", "1", "1"]} +{"2006207": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003014": ["3", "3", "1", "2", "2", "2", "2"]} +{"6002307": ["1", "2", "3", "3", "3", "2", "2"]} +{"3006754": ["2", "1", "3", "3", "2", "1", "2"]} +{"1004887": ["3", "1", "3", "2", "3", "2", "2"]} +{"7003805": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005530": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006692": ["None", "3", "3", "3", "3", "3", "3"]} +{"3005169": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002963": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003918": ["3", "3", "2", "3", "1", "2", "1"]} +{"3004330": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006316": ["2", "1", "3", "2", "2", "2", "2"]} +{"2004780": ["2", "3", "3", "3", "2", "2", "2"]} +{"1004430": ["2", "1", "3", "2", "2", "2", "2"]} +{"1005697": ["2", "1", "3", "2", "2", "2", "2"]} +{"2005777": ["3", "3", "3", "3", "1", "2", "2"]} +{"7003016": ["3", "3", "3", "3", "1", "3", "2"]} +{"5001429": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004795": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003316": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003773": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006266": ["2", "3", "3", "3", "2", "2", "2"]} +{"6004853": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004127": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002972": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005260": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003119": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006209": ["2", "2", "3", "2", "3", "2", "2"]} +{"2005116": ["3", "2", "2", "2", "3", "1", "2"]} +{"3004714": ["3", "2", "1", "1", "2", "3", "2"]} +{"3003430": ["1", "3", "3", "3", "3", "None", "2"]} +{"3005327": ["1", "1", "None", "1", "2", "1", "1"]} +{"2007684": ["1", "1", "2", "2", "1", "2", "2"]} +{"6002025": ["3", "2", "3", "3", "2", "3", "3"]} +{"6002524": ["1", "1", "1", "1", "1", "1", "1"]} +{"4003281": ["2", "2", "2", "2", "2", "2", "2"]} +{"7002716": ["3", "3", "2", "2", "2", "3", "2"]} +{"6002363": ["2", "2", "2", "1", "2", "1", "1"]} +{"0006682": ["2", "2", "3", "2", "2", "3", "2"]} +{"0003170": ["2", "2", "None", "2", "2", "2", "2"]} +{"2004291": ["2", "2", "1", "2", "2", "2", "2"]} +{"3006215": ["2", "3", "3", "3", "2", "2", "2"]} +{"8002049": ["2", "2", "1", "2", "2", "2", "2"]} +{"0003405": ["2", "1", "2", "1", "2", "1", "1"]} +{"7002333": ["1", "1", "1", "1", "1", "1", "1"]} +{"7002707": ["2", "2", "2", "2", "3", "3", "3"]} +{"8001191": ["1", "1", "1", "1", "1", "1", "1"]} +{"8002445": ["1", "1", "2", "2", "1", "1", "2"]} +{"1006929": ["2", "1", "None", "1", "1", "1", "1"]} +{"3004324": ["2", "1", "2", "1", "2", "2", "2"]} +{"6004726": ["1", "1", "1", "1", "2", "2", "1"]} +{"1006635": ["1", "1", "1", "1", "1", "1", "1"]} +{"0004734": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004186": ["1", "2", "2", "2", "2", "1", "1"]} +{"1003031": ["None", "2", "1", "1", "2", "2", "1"]} +{"3004203": ["1", "2", "2", "1", "2", "1", "1"]} +{"2003200": ["2", "2", "1", "2", "1", "2", "2"]} +{"1006639": ["2", "1", "1", "1", "2", "1", "1"]} +{"0003714": ["1", "1", "1", "1", "1", "1", "1"]} +{"6004122": ["2", "2", "2", "1", "2", "1", "2"]} +{"7004810": ["3", "3", "3", "2", "2", "1", "2"]} +{"7002226": ["2", "2", "3", "2", "2", "3", "3"]} +{"5001659": ["2", "2", "2", "2", "3", "3", "3"]} +{"1004712": ["2", "2", "3", "2", "3", "3", "3"]} +{"4004548": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004182": ["2", "2", "1", "2", "3", "3", "2"]} +{"7002372": ["3", "3", "3", "3", "None", "3", "3"]} +{"0003203": ["3", "3", "3", "2", "2", "3", "2"]} +{"0003396": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002287": ["2", "2", "2", "2", "3", "3", "3"]} +{"4003545": ["3", "2", "3", "3", "2", "3", "3"]} +{"3005859": ["2", "3", "3", "3", "1", "3", "2"]} +{"6004892": ["1", "1", "1", "1", "2", "2", "1"]} +{"4003736": ["1", "2", "1", "1", "1", "2", "2"]} +{"0004051": ["2", "2", "1", "2", "1", "2", "2"]} +{"6003090": ["1", "2", "2", "2", "2", "2", "2"]} +{"0006790": ["1", "1", "1", "1", "1", "2", "1"]} +{"1005980": ["2", "2", "2", "2", "2", "1", "2"]} +{"3004349": ["2", "2", "2", "1", "2", "2", "2"]} +{"1004645": ["3", "2", "2", "2", "2", "3", "3"]} +{"4004497": ["2", "2", "2", "2", "2", "1", "2"]} +{"3006920": ["2", "3", "2", "2", "2", "3", "2"]} +{"6003860": ["3", "3", "2", "2", "3", "3", "3"]} +{"0003709": ["3", "3", "None", "2", "3", "3", "3"]} +{"2007169": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004467": ["2", "2", "2", "3", "3", "2", "3"]} +{"4002015": ["2", "2", "3", "2", "2", "3", "2"]} +{"8003869": ["2", "2", "2", "2", "2", "2", "2"]} +{"8003365": ["1", "2", "1", "1", "1", "2", "2"]} +{"2003270": ["1", "1", "1", "1", "1", "1", "2"]} +{"3004864": ["1", "2", "1", "1", "1", "3", "2"]} +{"3005552": ["1", "1", "1", "1", "2", "1", "2"]} +{"6003716": ["2", "2", "1", "2", "3", "2", "2"]} +{"0005862": ["2", "2", "2", "1", "2", "2", "2"]} +{"1006505": ["1", "1", "1", "2", "2", "2", "2"]} +{"7004034": ["2", "2", "3", "2", "3", "3", "3"]} +{"2005127": ["3", "3", "3", "3", "1", "1", "2"]} +{"0004645": ["2", "2", "2", "2", "2", "2", "2"]} +{"8001855": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003955": ["3", "2", "2", "2", "2", "2", "2"]} +{"3003400": ["2", "2", "2", "2", "1", "1", "3"]} +{"2006138": ["2", "3", "3", "3", "2", "2", "3"]} +{"1005270": ["1", "1", "1", "2", "2", "1", "1"]} +{"4003138": ["2", "3", "2", "3", "3", "3", "3"]} +{"2007796": ["2", "2", "2", "2", "1", "3", "2"]} +{"6003455": ["1", "1", "1", "1", "3", "1", "1"]} +{"4003719": ["2", "1", "2", "1", "1", "2", "2"]} +{"4004621": ["2", "2", "2", "2", "2", "2", "2"]} +{"6003140": ["1", "2", "2", "1", "3", "2", "2"]} +{"7004512": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003534": ["2", "2", "2", "2", "3", "2", "2"]} +{"2007484": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006782": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005808": ["1", "1", "2", "2", "1", "2", "2"]} +{"4004768": ["1", "2", "2", "2", "1", "1", "1"]} +{"7002633": ["3", "2", "2", "2", "3", "3", "3"]} +{"1006904": ["3", "2", "2", "2", "2", "1", "2"]} +{"0006966": ["2", "2", "2", "2", "3", "3", "3"]} +{"8002218": ["3", "1", "2", "2", "3", "2", "2"]} +{"3006995": ["3", "2", "2", "2", "2", "2", "2"]} +{"2006302": ["2", "2", "2", "2", "1", "3", "2"]} +{"7002366": ["2", "1", "2", "1", "1", "2", "2"]} +{"4004729": ["3", "2", "2", "2", "1", "1", "2"]} +{"1006392": ["2", "2", "2", "2", "1", "2", "2"]} +{"7004220": ["2", "2", "2", "2", "1", "1", "1"]} +{"6003012": ["2", "2", "2", "2", "2", "2", "2"]} +{"8002027": ["2", "2", "2", "2", "2", "1", "2"]} +{"1005781": ["1", "2", "2", "3", "3", "2", "2"]} +{"8002216": ["3", "2", "3", "3", "3", "2", "3"]} +{"0003752": ["2", "2", "3", "2", "3", "1", "2"]} +{"4002983": ["2", "2", "3", "2", "1", "1", "1"]} +{"8002143": ["2", "2", "3", "3", "2", "2", "2"]} +{"3005498": ["2", "1", "3", "2", "1", "1", "1"]} +{"8001881": ["1", "3", "3", "3", "2", "1", "2"]} +{"1004988": ["3", "2", "3", "2", "3", "2", "2"]} +{"4002182": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003634": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005443": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003589": ["2", "2", "1", "3", "1", "1", "1"]} +{"7002677": ["3", "3", "3", "3", "1", "1", "1"]} +{"4002565": ["3", "3", "2", "3", "1", "3", "2"]} +{"2004937": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004158": ["2", "2", "3", "2", "1", "2", "1"]} +{"2006341": ["2", "2", "3", "2", "2", "2", "2"]} +{"8001328": ["1", "1", "3", "1", "2", "1", "1"]} +{"0003979": ["3", "3", "3", "3", "1", "2", "2"]} +{"8001036": ["2", "2", "3", "3", "1", "2", "2"]} +{"8001408": ["1", "1", "3", "1", "1", "1", "1"]} +{"4004321": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003121": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003647": ["3", "2", "3", "2", "1", "2", "1"]} +{"4003570": ["2", "3", "1", "3", "1", "2", "1"]} +{"4003668": ["1", "2", "3", "2", "1", "1", "1"]} +{"1005518": ["2", "1", "3", "2", "2", "2", "1"]} +{"0003172": ["3", "3", "3", "3", "2", "2", "3"]} +{"4002681": ["3", "2", "3", "2", "2", "2", "2"]} +{"4002396": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003739": ["1", "1", "3", "1", "3", "1", "1"]} +{"3003601": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004514": ["2", "2", "3", "2", "3", "2", "2"]} +{"2003553": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005216": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004407": ["2", "2", "3", "2", "3", "2", "2"]} +{"6004270": ["3", "2", "3", "2", "1", "2", "2"]} +{"0005129": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004312": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002769": ["3", "2", "3", "3", "2", "3", "3"]} +{"4003282": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003161": ["3", "2", "3", "2", "3", "3", "3"]} +{"4002164": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004835": ["2", "3", "3", "3", "3", "3", "3"]} +{"3004835": ["2", "3", "3", "3", "2", "2", "2"]} +{"8002391": ["2", "2", "3", "1", "2", "3", "2"]} +{"6003786": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001261": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004354": ["2", "3", "3", "3", "2", "2", "2"]} +{"3006339": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004002": ["1", "3", "2", "3", "1", "1", "1"]} +{"6004682": ["2", "2", "2", "1", "1", "1", "1"]} +{"8003572": ["1", "1", "1", "1", "1", "1", "1"]} +{"7002431": ["1", "2", "2", "1", "1", "2", "1"]} +{"6002753": ["2", "2", "2", "1", "1", "2", "2"]} +{"1003790": ["1", "1", "2", "1", "1", "3", "2"]} +{"3003218": ["2", "2", "2", "2", "2", "2", "2"]} +{"4002803": ["3", "2", "2", "2", "2", "2", "None"]} +{"5001890": ["3", "3", "3", "3", "3", "3", "2"]} +{"0003109": ["3", "2", "2", "2", "1", "1", "2"]} +{"5001131": ["2", "2", "1", "2", "1", "2", "2"]} +{"0006917": ["1", "1", "1", "2", "1", "1", "1"]} +{"0005250": ["3", "1", "2", "2", "2", "1", "2"]} +{"6003243": ["2", "1", "2", "1", "1", "2", "2"]} +{"2003589": ["3", "2", "1", "1", "2", "1", "2"]} +{"8003500": ["2", "2", "1", "2", "2", "2", "2"]} +{"0005137": ["1", "2", "1", "1", "1", "1", "1"]} +{"1005502": ["2", "2", "2", "2", "3", "1", "2"]} +{"6003570": ["2", "2", "2", "2", "1", "1", "2"]} +{"6002340": ["2", "2", "2", "None", "1", "1", "2"]} +{"3003678": ["3", "3", "2", "2", "2", "2", "2"]} +{"0006008": ["2", "2", "2", "1", "2", "2", "2"]} +{"8001638": ["2", "2", "2", "2", "1", "3", "2"]} +{"0004808": ["2", "2", "2", "2", "1", "2", "2"]} +{"1004180": ["2", "2", "2", "2", "1", "1", "2"]} +{"0005809": ["3", "2", "2", "2", "1", "2", "2"]} +{"2003857": ["2", "2", "2", "2", "1", "1", "1"]} +{"8002511": ["3", "2", "2", "2", "1", "2", "2"]} +{"8002667": ["3", "2", "2", "2", "3", "3", "2"]} +{"7004067": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004661": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004929": ["3", "3", "3", "2", "1", "2", "2"]} +{"3004513": ["2", "2", "2", "2", "1", "1", "1"]} +{"7003230": ["1", "2", "1", "1", "2", "1", "2"]} +{"1003632": ["3", "3", "3", "2", "1", "1", "2"]} +{"7003536": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003756": ["3", "2", "2", "2", "2", "2", "2"]} +{"1006464": ["2", "2", "2", "2", "2", "2", "2"]} +{"3004192": ["2", "2", "2", "2", "2", "2", "2"]} +{"4004743": ["2", "2", "2", "2", "3", "1", "2"]} +{"4002997": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003492": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003295": ["2", "2", "2", "2", "1", "2", "3"]} +{"2005526": ["1", "1", "1", "2", "1", "1", "1"]} +{"3005794": ["2", "2", "2", "2", "1", "1", "2"]} +{"7002230": ["2", "2", "2", "2", "1", "3", "2"]} +{"8003275": ["2", "2", "1", "1", "2", "2", "2"]} +{"2006943": ["2", "2", "2", "None", "1", "2", "2"]} +{"8001930": ["2", "2", "2", "2", "1", "1", "2"]} +{"8003642": ["2", "2", "2", "2", "1", "2", "2"]} +{"8002362": ["1", "1", "2", "1", "1", "1", "1"]} +{"2003443": ["2", "2", "2", "2", "1", "2", "2"]} +{"7003240": ["2", "2", "2", "2", "3", "1", "2"]} +{"2003058": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006808": ["3", "2", "2", "2", "3", "2", "2"]} +{"1005663": ["2", "2", "2", "2", "1", "2", "2"]} +{"0004057": ["3", "2", "2", "2", "2", "2", "2"]} +{"2006847": ["1", "2", "1", "1", "1", "1", "1"]} +{"0003269": ["2", "2", "2", "2", "2", "2", "2"]} +{"6003937": ["1", "1", "1", "1", "2", "1", "1"]} +{"0004137": ["2", "2", "2", "2", "1", "2", "2"]} +{"5001024": ["2", "2", "2", "2", "1", "1", "2"]} +{"6004831": ["1", "1", "2", "1", "1", "1", "1"]} +{"1005710": ["2", "2", "1", "2", "1", "1", "2"]} +{"2004781": ["2", "3", "3", "3", "1", "1", "1"]} +{"8003077": ["2", "2", "3", "2", "1", "1", "2"]} +{"4004395": ["3", "2", "3", "3", "3", "2", "2"]} +{"6002059": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001055": ["1", "1", "2", "2", "3", "2", "2"]} +{"1006495": ["2", "1", "2", "2", "2", "2", "2"]} +{"0004537": ["2", "1", "2", "1", "3", "3", "2"]} +{"6003876": ["3", "None", "3", "2", "2", "2", "2"]} +{"2007829": ["3", "3", "3", "2", "2", "2", "2"]} +{"3004521": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003419": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006273": ["2", "3", "3", "3", "2", "2", "2"]} +{"2007378": ["3", "3", "2", "3", "2", "2", "2"]} +{"0005315": ["2", "2", "2", "2", "2", "1", "2"]} +{"4002269": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007138": ["3", "3", "2", "2", "2", "2", "3"]} +{"6004895": ["2", "2", "2", "1", "1", "1", "1"]} +{"3005890": ["1", "1", "1", "2", "1", "1", "1"]} +{"3004064": ["3", "2", "3", "3", "2", "3", "2"]} +{"0006512": ["3", "3", "2", "2", "2", "2", "2"]} +{"0006512": ["3", "2", "2", "2", "1", "2", "2"]} +{"1004142": ["None", "2", "2", "1", "1", "1", "2"]} +{"7002966": ["2", "2", "2", "2", "3", "2", "2"]} +{"2003636": ["2", "2", "2", "2", "1", "1", "2"]} +{"2006344": ["2", "2", "2", "2", "1", "1", "2"]} +{"0004689": ["1", "1", "1", "1", "1", "1", "1"]} +{"7004329": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005232": ["None", "3", "3", "3", "3", "3", "3"]} +{"2004590": ["3", "3", "3", "2", "3", "2", "3"]} +{"8002286": ["2", "2", "2", "2", "3", "3", "2"]} +{"3005266": ["3", "2", "2", "2", "2", "2", "2"]} +{"7002638": ["1", "1", "1", "1", "1", "1", "1"]} +{"4004217": ["3", "2", "2", "2", "1", "1", "2"]} +{"4004250": ["3", "2", "2", "2", "2", "2", "2"]} +{"4002621": ["3", "3", "3", "2", "2", "2", "3"]} +{"2005896": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002615": ["3", "3", "3", "3", "1", "2", "2"]} +{"7002615": ["3", "3", "3", "3", "1", "2", "2"]} +{"8003934": ["2", "1", "1", "1", "1", "1", "1"]} +{"0005048": ["2", "2", "2", "2", "3", "2", "2"]} +{"6002256": ["3", "2", "2", "2", "2", "3", "3"]} +{"2003262": ["3", "3", "3", "2", "1", "1", "2"]} +{"0005561": ["2", "1", "2", "1", "1", "1", "2"]} +{"2004728": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003583": ["2", "2", "2", "2", "2", "2", "2"]} +{"1003588": ["3", "2", "3", "3", "1", "2", "2"]} +{"3003536": ["3", "2", "3", "3", "3", "2", "2"]} +{"1006677": ["3", "2", "3", "3", "2", "3", "3"]} +{"2003213": ["3", "3", "3", "3", "1", "2", "2"]} +{"2003726": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006557": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004004": ["2", "1", "3", "2", "3", "2", "2"]} +{"3005778": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004355": ["3", "2", "3", "2", "2", "3", "2"]} +{"6004772": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006116": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004437": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005974": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002119": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004334": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004985": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007910": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005117": ["2", "3", "3", "3", "1", "1", "1"]} +{"3004456": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002452": ["2", "2", "3", "2", "3", "2", "2"]} +{"8002817": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003423": ["3", "2", "3", "2", "3", "2", "2"]} +{"4003903": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006464": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006020": ["2", "2", "3", "3", "3", "2", "2"]} +{"3006524": ["2", "2", "3", "3", "2", "2", "2"]} +{"1004448": ["2", "1", "3", "2", "2", "2", "2"]} +{"2004471": ["3", "3", "2", "3", "1", "2", "2"]} +{"7004073": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004546": ["2", "1", "3", "2", "2", "1", "1"]} +{"3005257": ["1", "2", "3", "3", "1", "1", "1"]} +{"3006578": ["2", "3", "3", "3", "3", "3", "3"]} +{"7003874": ["1", "1", "2", "2", "1", "1", "1"]} +{"4004886": ["1", "1", "2", "1", "1", "1", "1"]} +{"0003923": ["2", "3", "3", "2", "2", "3", "2"]} +{"4004916": ["3", "3", "2", "2", "2", "2", "2"]} +{"7002056": ["3", "3", "2", "3", "2", "2", "2"]} +{"3005313": ["3", "1", "3", "2", "2", "3", "2"]} +{"7003208": ["2", "1", "2", "1", "1", "1", "2"]} +{"4003239": ["3", "3", "3", "3", "2", "1", "2"]} +{"8001640": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004708": ["3", "3", "3", "2", "2", "1", "2"]} +{"1006026": ["2", "1", "3", "2", "1", "1", "2"]} +{"6003218": ["3", "2", "2", "2", "1", "2", "2"]} +{"7003591": ["3", "3", "3", "3", "3", "1", "2"]} +{"2004126": ["3", "3", "3", "3", "2", "3", "2"]} +{"8002764": ["None", "2", "3", "2", "1", "2", "2"]} +{"4002130": ["3", "2", "2", "2", "1", "2", "2"]} +{"8003616": ["2", "1", "2", "1", "1", "1", "1"]} +{"4003306": ["2", "2", "1", "2", "None", "2", "2"]} +{"3004465": ["1", "2", "3", "2", "3", "2", "2"]} +{"7003301": ["1", "1", "2", "1", "1", "1", "1"]} +{"2005194": ["3", "2", "2", "2", "2", "1", "2"]} +{"7003982": ["2", "1", "2", "1", "1", "2", "2"]} +{"7004100": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002877": ["2", "2", "2", "1", "2", "2", "2"]} +{"6004711": ["2", "1", "2", "2", "1", "1", "2"]} +{"4004935": ["2", "2", "2", "2", "2", "2", "2"]} +{"7004780": ["1", "2", "3", "2", "1", "2", "2"]} +{"3005883": ["3", "3", "2", "2", "1", "2", "2"]} +{"8002995": ["2", "1", "2", "1", "1", "1", "2"]} +{"8003668": ["2", "2", "3", "2", "2", "1", "2"]} +{"4002281": ["2", "1", "2", "2", "1", "1", "1"]} +{"6002514": ["1", "2", "None", "1", "1", "2", "2"]} +{"2007194": ["1", "1", "3", "2", "1", "2", "2"]} +{"2007301": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004222": ["3", "2", "3", "3", "1", "2", "2"]} +{"8003688": ["1", "2", "3", "2", "3", "2", "2"]} +{"1003922": ["2", "2", "2", "2", "1", "1", "2"]} +{"7004890": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003187": ["3", "2", "3", "3", "2", "2", "2"]} +{"5001805": ["2", "3", "2", "2", "2", "2", "2"]} +{"2003032": ["2", "3", "2", "2", "2", "2", "2"]} +{"3005788": ["1", "1", "2", "2", "1", "1", "2"]} +{"3003253": ["2", "3", "3", "2", "2", "2", "2"]} +{"2003025": ["3", "2", "2", "3", "2", "2", "2"]} +{"6004208": ["1", "1", "1", "1", "1", "1", "1"]} +{"8001320": ["3", "3", "3", "3", "1", "2", "2"]} +{"4004712": ["3", "2", "3", "3", "1", "1", "2"]} +{"6002619": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003872": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003058": ["2", "2", "2", "2", "1", "2", "2"]} +{"0003441": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001994": ["2", "2", "2", "1", "1", "1", "2"]} +{"5001669": ["2", "2", "2", "2", "1", "3", "2"]} +{"4004299": ["2", "1", "3", "2", "1", "1", "2"]} +{"3006694": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004207": ["3", "3", "3", "3", "1", "1", "2"]} +{"8001877": ["1", "2", "3", "2", "3", "3", "2"]} +{"2006343": ["3", "3", "3", "3", "3", "2", "2"]} +{"6002282": ["1", "1", "None", "1", "1", "1", "1"]} +{"3006691": ["2", "1", "2", "None", "1", "2", "2"]} +{"3004572": ["2", "2", "2", "2", "1", "2", "2"]} +{"2004492": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003186": ["2", "2", "2", "1", "1", "2", "2"]} +{"3004975": ["3", "3", "3", "2", "2", "3", "3"]} +{"4004635": ["3", "2", "2", "1", "2", "2", "2"]} +{"0004248": ["1", "1", "3", "2", "2", "2", "2"]} +{"7002043": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004316": ["3", "2", "2", "2", "1", "1", "2"]} +{"4002684": ["2", "2", "3", "2", "1", "2", "2"]} +{"0003012": ["3", "2", "2", "3", "2", "1", "2"]} +{"3004089": ["3", "3", "2", "3", "1", "1", "2"]} +{"2003790": ["3", "2", "3", "2", "1", "3", "2"]} +{"2005648": ["3", "2", "3", "3", "1", "1", "2"]} +{"8001166": ["1", "1", "3", "1", "3", "3", "2"]} +{"3005279": ["1", "2", "1", "1", "1", "1", "2"]} +{"7003940": ["1", "1", "1", "1", "1", "1", "1"]} +{"2004472": ["3", "2", "3", "3", "1", "1", "2"]} +{"2007137": ["3", "2", "3", "3", "1", "3", "2"]} +{"1006314": ["1", "1", "2", "2", "1", "1", "1"]} +{"2006667": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003333": ["3", "3", "3", "2", "1", "1", "2"]} +{"3006222": ["2", "1", "2", "2", "3", "3", "2"]} +{"0006626": ["3", "3", "3", "3", "1", "3", "2"]} +{"2005839": ["3", "2", "2", "2", "2", "3", "2"]} +{"8001344": ["2", "2", "3", "2", "1", "2", "2"]} +{"3003522": ["1", "2", "2", "2", "2", "1", "2"]} +{"2007180": ["3", "3", "3", "2", "1", "2", "2"]} +{"5001977": ["2", "3", "3", "3", "1", "3", "2"]} +{"2003984": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002225": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003383": ["2", "3", "3", "2", "3", "3", "3"]} +{"8002731": ["2", "2", "2", "2", "1", "2", "2"]} +{"3006350": ["3", "3", "3", "2", "2", "3", "2"]} +{"2005916": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001687": ["2", "3", "3", "3", "2", "3", "2"]} +{"2003252": ["3", "2", "3", "3", "1", "1", "2"]} +{"8003218": ["3", "3", "3", "3", "1", "1", "2"]} +{"3006274": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001569": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004734": ["2", "1", "2", "1", "1", "1", "2"]} +{"6004115": ["3", "3", "3", "3", "1", "1", "2"]} +{"8001630": ["2", "2", "2", "2", "3", "3", "3"]} +{"2006421": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003707": ["2", "1", "2", "2", "3", "2", "2"]} +{"7003472": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005480": ["1", "1", "2", "2", "1", "3", "2"]} +{"1006586": ["1", "1", "3", "1", "1", "1", "1"]} +{"3004517": ["2", "2", "2", "2", "1", "2", "2"]} +{"4002538": ["2", "2", "2", "2", "1", "1", "2"]} +{"3005254": ["3", "1", "3", "1", "3", "3", "2"]} +{"3003602": ["3", "2", "2", "2", "1", "1", "2"]} +{"6000009": ["1", "1", "1", "1", "2", "1", "1"]} +{"4003930": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004072": ["3", "2", "3", "3", "3", "3", "2"]} +{"0005185": ["1", "1", "1", "1", "1", "1", "1"]} +{"3006009": ["3", "3", "2", "3", "1", "2", "2"]} +{"1005051": ["2", "2", "2", "2", "1", "2", "2"]} +{"3006354": ["2", "2", "2", "2", "2", "1", "2"]} +{"4003531": ["3", "2", "2", "3", "3", "3", "3"]} +{"2004004": ["2", "3", "3", "2", "2", "1", "2"]} +{"7004886": ["1", "1", "1", "1", "1", "2", "1"]} +{"1006221": ["2", "1", "None", "2", "1", "1", "2"]} +{"2005345": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003929": ["3", "1", "2", "1", "1", "3", "2"]} +{"4004536": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004029": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003561": ["3", "3", "3", "3", "3", "1", "3"]} +{"1004407": ["2", "1", "3", "2", "1", "3", "2"]} +{"8002984": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004623": ["2", "2", "2", "3", "1", "3", "3"]} +{"1005496": ["2", "2", "2", "2", "1", "3", "2"]} +{"2005922": ["3", "3", "2", "2", "1", "1", "2"]} +{"1003085": ["3", "2", "2", "2", "1", "1", "2"]} +{"8001382": ["1", "1", "2", "1", "1", "2", "1"]} +{"2003561": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005252": ["3", "2", "3", "3", "1", "1", "2"]} +{"2003083": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002924": ["3", "3", "3", "3", "3", "1", "3"]} +{"0006896": ["3", "3", "2", "3", "3", "2", "2"]} +{"1005608": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002928": ["2", "2", "2", "2", "1", "1", "2"]} +{"2003933": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004926": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006076": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006320": ["2", "2", "2", "2", "2", "2", "2"]} +{"6004175": ["2", "2", "2", "2", "2", "2", "2"]} +{"2005133": ["2", "2", "2", "2", "2", "2", "2"]} +{"4004067": ["2", "2", "2", "2", "2", "1", "2"]} +{"3004811": ["1", "1", "2", "1", "1", "1", "1"]} +{"2004032": ["3", "2", "2", "2", "1", "1", "1"]} +{"2004418": ["3", "2", "2", "3", "3", "3", "3"]} +{"4002723": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006352": ["3", "3", "3", "3", "1", "1", "2"]} +{"5001475": ["3", "3", "3", "3", "None", "3", "2"]} +{"8002179": ["None", "3", "3", "3", "1", "3", "2"]} +{"2006460": ["3", "2", "3", "3", "2", "2", "3"]} +{"0006235": ["1", "1", "3", "2", "1", "2", "2"]} +{"8001181": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004648": ["3", "2", "2", "2", "2", "2", "2"]} +{"0003566": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006493": ["3", "3", "2", "2", "1", "2", "2"]} +{"3003457": ["2", "2", "2", "2", "1", "2", "2"]} +{"6002563": ["1", "2", "1", "1", "1", "1", "1"]} +{"3006237": ["3", "2", "3", "2", "3", "3", "3"]} +{"0006857": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003044": ["2", "None", "3", "3", "2", "3", "3"]} +{"2005640": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006065": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006947": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003473": ["2", "2", "3", "3", "3", "2", "2"]} +{"4002655": ["3", "2", "3", "3", "3", "2", "3"]} +{"2006840": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006956": ["3", "2", "2", "2", "2", "2", "3"]} +{"2003563": ["2", "2", "2", "2", "1", "1", "1"]} +{"0006051": ["3", "2", "3", "3", "3", "3", "3"]} +{"0003634": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006968": ["3", "3", "3", "2", "1", "3", "2"]} +{"2006109": ["2", "2", "2", "2", "1", "2", "2"]} +{"2003677": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003605": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004530": ["1", "1", "2", "1", "2", "2", "2"]} +{"2007344": ["3", "3", "3", "2", "2", "3", "3"]} +{"4004482": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004148": ["2", "2", "2", "2", "1", "1", "2"]} +{"1005285": ["2", "2", "1", "2", "1", "1", "1"]} +{"2005841": ["2", "3", "2", "2", "2", "3", "2"]} +{"4002067": ["3", "2", "2", "2", "3", "3", "2"]} +{"5001102": ["3", "3", "3", "3", "2", "1", "2"]} +{"2005037": ["3", "3", "3", "3", "1", "1", "2"]} +{"6004658": ["2", "2", "2", "2", "1", "1", "2"]} +{"3004549": ["2", "3", "2", "2", "1", "1", "2"]} +{"7004503": ["2", "3", "2", "3", "2", "2", "2"]} +{"7004668": ["2", "2", "2", "2", "1", "1", "2"]} +{"0005335": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006533": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005387": ["1", "2", "1", "2", "2", "1", "2"]} +{"1004654": ["1", "1", "2", "2", "1", "1", "1"]} +{"8002986": ["2", "2", "1", "2", "1", "1", "2"]} +{"4004626": ["2", "2", "2", "2", "2", "2", "2"]} +{"4004856": ["2", "2", "2", "2", "1", "1", "2"]} +{"8003352": ["2", "2", "None", "3", "1", "2", "2"]} +{"3003386": ["2", "3", "2", "2", "1", "1", "2"]} +{"7004570": ["3", "2", "2", "2", "1", "2", "2"]} +{"7004108": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002969": ["2", "2", "2", "1", "1", "1", "2"]} +{"3006362": ["1", "2", "2", "2", "1", "1", "2"]} +{"5001984": ["2", "2", "3", "2", "1", "2", "2"]} +{"4002963": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006798": ["2", "2", "3", "2", "1", "1", "2"]} +{"2003440": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006525": ["2", "2", "3", "3", "1", "1", "2"]} +{"3003130": ["2", "2", "2", "2", "1", "1", "2"]} +{"0005797": ["3", "3", "3", "2", "2", "2", "2"]} +{"7003859": ["3", "3", "2", "2", "1", "2", "2"]} +{"3005881": ["3", "2", "3", "3", "2", "1", "2"]} +{"2003669": ["3", "3", "2", "3", "1", "1", "2"]} +{"1005578": ["1", "1", "1", "1", "2", "2", "1"]} +{"0003703": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005613": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003759": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005712": ["2", "2", "3", "2", "3", "3", "3"]} +{"1005860": ["2", "2", "2", "2", "1", "2", "2"]} +{"2003255": ["2", "2", "2", "2", "3", "2", "2"]} +{"3003908": ["2", "3", "3", "2", "1", "3", "2"]} +{"3005715": ["3", "3", "2", "2", "3", "2", "3"]} +{"6002973": ["3", "2", "2", "2", "2", "2", "2"]} +{"5001176": ["2", "2", "2", "2", "1", "2", "2"]} +{"8001507": ["1", "1", "2", "2", "1", "1", "1"]} +{"2003987": ["2", "3", "2", "2", "2", "2", "2"]} +{"0003272": ["1", "2", "2", "2", "3", "3", "2"]} +{"7002038": ["2", "2", "2", "2", "1", "2", "2"]} +{"8002963": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006136": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003853": ["2", "3", "2", "2", "3", "2", "2"]} +{"3004877": ["1", "1", "1", "2", "2", "3", "2"]} +{"6004763": ["3", "3", "None", "3", "3", "3", "3"]} +{"1004675": ["1", "1", "1", "1", "2", "3", "1"]} +{"6002343": ["2", "2", "2", "2", "1", "2", "2"]} +{"0003667": ["2", "2", "2", "2", "2", "2", "2"]} +{"6004082": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003291": ["2", "2", "2", "2", "1", "2", "2"]} +{"6002621": ["2", "2", "3", "2", "2", "3", "2"]} +{"2005795": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004308": ["3", "2", "3", "3", "2", "3", "2"]} +{"2005070": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004691": ["1", "2", "2", "2", "2", "2", "2"]} +{"2005013": ["2", "2", "1", "2", "2", "2", "2"]} +{"2005013": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005302": ["2", "2", "2", "2", "2", "2", "2"]} +{"3005302": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003694": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006507": ["1", "1", "2", "1", "1", "1", "2"]} +{"2005181": ["2", "2", "3", "3", "2", "3", "2"]} +{"8002535": ["1", "1", "2", "2", "1", "2", "1"]} +{"8001123": ["2", "2", "2", "2", "1", "1", "2"]} +{"6002505": ["2", "2", "2", "2", "1", "2", "2"]} +{"8001484": ["2", "2", "2", "2", "1", "1", "1"]} +{"7003079": ["1", "1", "1", "2", "1", "2", "2"]} +{"4003610": ["3", "2", "2", "2", "1", "1", "2"]} +{"0006495": ["2", "2", "2", "2", "1", "1", "2"]} +{"4004417": ["2", "2", "2", "2", "2", "2", "2"]} +{"0004692": ["3", "3", "2", "2", "3", "3", "2"]} +{"2003359": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004222": ["2", "2", "3", "3", "3", "3", "3"]} +{"3006845": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005969": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002091": ["2", "2", "2", "3", "2", "3", "3"]} +{"4002732": ["2", "2", "2", "2", "3", "3", "3"]} +{"1005850": ["2", "2", "2", "2", "1", "1", "3"]} +{"8002214": ["2", "2", "2", "2", "2", "3", "2"]} +{"3003945": ["3", "3", "3", "3", "2", "2", "2"]} +{"3003781": ["1", "1", "1", "1", "1", "1", "1"]} +{"3005691": ["2", "2", "2", "2", "1", "2", "2"]} +{"3003243": ["2", "1", "2", "2", "2", "2", "2"]} +{"0006006": ["2", "2", "2", "2", "2", "2", "2"]} +{"0003751": ["1", "2", "2", "2", "2", "2", "2"]} +{"1006982": ["1", "1", "1", "1", "3", "2", "2"]} +{"6003628": ["1", "2", "1", "1", "2", "2", "2"]} +{"4003915": ["3", "2", "2", "3", "2", "2", "2"]} +{"3005824": ["2", "3", "3", "3", "2", "2", "3"]} +{"6003549": ["2", "2", "3", "2", "3", "1", "2"]} +{"1004932": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004751": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003988": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004190": ["3", "3", "3", "3", "1", "3", "2"]} +{"2004167": ["3", "2", "3", "3", "1", "3", "3"]} +{"8001736": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003314": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003495": ["1", "2", "2", "2", "1", "1", "2"]} +{"2003603": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003388": ["3", "2", "3", "3", "1", "3", "2"]} +{"6003848": ["3", "3", "3", "2", "1", "1", "2"]} +{"4004658": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003499": ["1", "1", "2", "2", "2", "3", "2"]} +{"3005007": ["2", "2", "2", "2", "2", "2", "2"]} +{"2004380": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005220": ["3", "3", "None", "3", "2", "3", "3"]} +{"0006231": ["3", "3", "3", "2", "1", "3", "3"]} +{"0006518": ["2", "2", "2", "3", "3", "3", "2"]} +{"2003769": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004020": ["2", "2", "3", "3", "2", "2", "3"]} +{"4003939": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003419": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003967": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006735": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006730": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004873": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003137": ["2", "2", "2", "2", "1", "2", "2"]} +{"3005355": ["3", "3", "3", "3", "3", "2", "2"]} +{"3003355": ["2", "2", "2", "2", "2", "2", "2"]} +{"0006143": ["2", "2", "2", "2", "1", "2", "2"]} +{"8003470": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004457": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007522": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003949": ["1", "1", "1", "1", "1", "1", "1"]} +{"2007748": ["3", "2", "2", "2", "1", "1", "1"]} +{"0004805": ["2", "1", "2", "2", "1", "1", "2"]} +{"8001372": ["2", "2", "2", "2", "2", "2", "2"]} +{"0006077": ["2", "2", "2", "3", "2", "3", "2"]} +{"2005610": ["3", "2", "3", "3", "2", "1", "2"]} +{"0003411": ["2", "2", "3", "2", "1", "1", "2"]} +{"4003923": ["2", "2", "3", "3", "3", "3", "2"]} +{"6004234": ["2", "3", "3", "3", "1", "2", "2"]} +{"6003331": ["2", "3", "2", "2", "1", "1", "1"]} +{"6004123": ["1", "2", "2", "2", "2", "2", "2"]} +{"3004244": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003298": ["2", "2", "2", "2", "3", "2", "2"]} +{"2006710": ["3", "3", "2", "2", "1", "2", "2"]} +{"2005804": ["2", "2", "2", "2", "1", "1", "2"]} +{"4003454": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003755": ["3", "3", "3", "2", "1", "1", "2"]} +{"5001216": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002394": ["1", "2", "2", "2", "1", "1", "1"]} +{"6004870": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006614": ["2", "2", "2", "2", "2", "2", "2"]} +{"0003832": ["2", "2", "2", "2", "3", "1", "2"]} +{"4004092": ["2", "2", "2", "2", "2", "2", "2"]} +{"3006246": ["1", "3", "3", "2", "1", "2", "2"]} +{"8003406": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004487": ["3", "2", "2", "2", "3", "3", "2"]} +{"2006504": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004383": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002267": ["2", "2", "2", "3", "1", "2", "2"]} +{"6004390": ["3", "2", "3", "2", "1", "2", "2"]} +{"6004071": ["3", "2", "2", "2", "1", "2", "2"]} +{"2006083": ["3", "3", "2", "2", "2", "2", "2"]} +{"2003209": ["3", "3", "3", "3", "1", "1", "2"]} +{"2005898": ["3", "3", "2", "3", "2", "3", "2"]} +{"8001126": ["3", "2", "2", "2", "3", "2", "2"]} +{"4004121": ["3", "3", "2", "2", "1", "3", "2"]} +{"1005467": ["2", "2", "3", "3", "1", "2", "2"]} +{"2004423": ["3", "3", "3", "3", "1", "2", "2"]} +{"0006228": ["2", "2", "3", "3", "3", "3", "3"]} +{"8003407": ["3", "2", "3", "2", "2", "2", "2"]} +{"0005288": ["3", "2", "2", "2", "2", "3", "2"]} +{"6004360": ["1", "2", "2", "2", "1", "2", "2"]} +{"8003721": ["2", "2", "2", "2", "1", "1", "2"]} +{"4003925": ["2", "2", "2", "2", "1", "2", "2"]} +{"7004631": ["1", "1", "1", "1", "1", "1", "1"]} +{"1004620": ["3", "3", "2", "2", "1", "1", "2"]} +{"7003663": ["2", "2", "2", "2", "2", "3", "2"]} +{"6002141": ["1", "1", "2", "2", "1", "1", "1"]} +{"2005827": ["3", "3", "3", "2", "1", "2", "2"]} +{"2003953": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005896": ["2", "2", "2", "2", "2", "2", "2"]} +{"4004723": ["2", "2", "2", "2", "1", "1", "2"]} +{"4002145": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007560": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005536": ["2", "2", "2", "2", "1", "2", "2"]} +{"1005536": ["2", "2", "2", "2", "1", "2", "2"]} +{"7003899": ["3", "3", "2", "3", "2", "2", "2"]} +{"1006773": ["2", "2", "3", "2", "3", "2", "2"]} +{"1004641": ["2", "2", "2", "2", "2", "1", "2"]} +{"2006905": ["3", "2", "2", "2", "3", "2", "2"]} +{"3005088": ["2", "3", "3", "2", "2", "2", "2"]} +{"2004961": ["2", "2", "2", "2", "2", "2", "2"]} +{"8001759": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004294": ["2", "2", "3", "3", "3", "3", "3"]} +{"1004872": ["2", "2", "2", "2", "2", "3", "3"]} +{"6003548": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003380": ["3", "2", "2", "3", "1", "2", "2"]} +{"7002998": ["3", "3", "3", "2", "3", "3", "3"]} +{"3006563": ["3", "3", "3", "3", "1", "1", "2"]} +{"0005116": ["3", "3", "3", "2", "1", "2", "2"]} +{"6004229": ["1", "1", "1", "1", "1", "1", "1"]} +{"1005677": ["2", "3", "2", "2", "1", "1", "2"]} +{"3006853": ["2", "None", "2", "2", "3", "3", "3"]} +{"7004180": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002964": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004890": ["3", "2", "3", "3", "1", "3", "2"]} +{"1004591": ["2", "1", "1", "1", "1", "1", "1"]} +{"1004992": ["2", "2", "2", "2", "3", "3", "3"]} +{"3004634": ["3", "3", "3", "2", "1", "2", "2"]} +{"6004581": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002215": ["3", "2", "3", "3", "1", "2", "2"]} +{"0006482": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005070": ["2", "2", "2", "2", "2", "2", "2"]} +{"2006198": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004811": ["2", "3", "3", "3", "3", "3", "2"]} +{"7003599": ["2", "2", "2", "2", "1", "2", "2"]} +{"2006928": ["1", "1", "1", "1", "1", "1", "1"]} +{"2005081": ["3", "3", "3", "2", "1", "3", "2"]} +{"7004559": ["2", "3", "2", "2", "2", "3", "2"]} +{"8001996": ["2", "2", "2", "2", "2", "2", "2"]} +{"3006177": ["2", "2", "2", "2", "2", "2", "2"]} +{"0005429": ["2", "2", "2", "2", "3", "2", "3"]} +{"7003571": ["1", "1", "1", "1", "1", "2", "1"]} +{"2006081": ["3", "3", "3", "3", "1", "3", "2"]} +{"6004616": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006293": ["2", "2", "3", "2", "1", "2", "3"]} +{"8002730": ["2", "3", "2", "3", "1", "2", "2"]} +{"2007731": ["3", "2", "3", "3", "1", "2", "2"]} +{"0003773": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004924": ["2", "2", "2", "2", "2", "2", "2"]} +{"8002186": ["1", "1", "2", "2", "1", "1", "2"]} +{"6003928": ["1", "1", "2", "2", "1", "2", "2"]} +{"2006621": ["2", "2", "2", "2", "1", "1", "2"]} +{"3006336": ["3", "2", "2", "2", "2", "2", "2"]} +{"3006514": ["2", "2", "2", "2", "3", "3", "2"]} +{"5001812": ["2", "2", "3", "2", "1", "2", "2"]} +{"2004318": ["2", "2", "2", "2", "1", "3", "2"]} +{"7002405": ["2", "2", "3", "2", "1", "2", "2"]} +{"2005735": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005686": ["2", "2", "2", "2", "1", "2", "2"]} +{"0005603": ["2", "3", "3", "3", "2", "2", "2"]} +{"2005659": ["2", "2", "2", "2", "1", "1", "2"]} +{"0006781": ["3", "3", "3", "2", "2", "3", "2"]} +{"3004254": ["2", "2", "2", "2", "1", "2", "2"]} +{"6004496": ["2", "2", "2", "2", "2", "2", "2"]} +{"6004286": ["3", "2", "3", "2", "2", "2", "2"]} +{"3006317": ["2", "3", "3", "None", "2", "2", "2"]} +{"2005245": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002781": ["1", "1", "1", "1", "1", "1", "1"]} +{"3005744": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003655": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007397": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003821": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003131": ["2", "3", "3", "3", "2", "3", "3"]} +{"1006444": ["3", "2", "3", "3", "2", "3", "3"]} +{"4004396": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005547": ["3", "3", "2", "3", "3", "2", "2"]} +{"1006132": ["2", "1", "3", "2", "2", "2", "2"]} +{"0004726": ["3", "2", "3", "3", "1", "3", "2"]} +{"8001064": ["2", "2", "2", "2", "2", "3", "2"]} +{"1003149": ["3", "3", "2", "3", "2", "3", "3"]} +{"7002534": ["2", "2", "2", "2", "2", "2", "2"]} +{"2007839": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006994": ["3", "2", "2", "3", "3", "3", "3"]} +{"2007613": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003344": ["2", "None", "3", "3", "1", "2", "2"]} +{"0004764": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003888": ["2", "2", "2", "3", "2", "3", "3"]} +{"2004653": ["1", "1", "2", "2", "1", "1", "1"]} +{"2003628": ["3", "2", "3", "2", "2", "2", "2"]} +{"3006895": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004417": ["2", "2", "2", "None", "2", "3", "2"]} +{"1004061": ["3", "2", "2", "3", "2", "2", "2"]} +{"2006607": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006541": ["3", "3", "3", "3", "1", "2", "2"]} +{"6003121": ["3", "2", "3", "2", "2", "2", "2"]} +{"0003309": ["3", "3", "3", "3", "2", "2", "2"]} +{"0006218": ["3", "3", "3", "2", "1", "2", "2"]} +{"8003763": ["3", "2", "2", "3", "2", "2", "2"]} +{"7003118": ["3", "2", "2", "3", "2", "2", "2"]} +{"3003348": ["2", "2", "2", "2", "2", "2", "2"]} +{"6002270": ["2", "2", "2", "2", "3", "2", "2"]} +{"3004764": ["1", "1", "1", "1", "1", "1", "1"]} +{"7002083": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002603": ["2", "2", "2", "2", "1", "2", "2"]} +{"5001544": ["2", "3", "2", "2", "2", "2", "2"]} +{"5001674": ["3", "2", "3", "2", "2", "2", "2"]} +{"8003467": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005426": ["2", "3", "2", "3", "3", "3", "3"]} +{"2006950": ["3", "3", "3", "3", "3", "3", "2"]} +{"2005940": ["2", "2", "2", "2", "2", "2", "2"]} +{"8003053": ["2", "2", "2", "2", "3", "2", "2"]} +{"3003015": ["2", "2", "2", "2", "2", "2", "2"]} +{"0004549": ["2", "2", "2", "2", "1", "2", "2"]} +{"1005181": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004335": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004998": ["2", "3", "2", "2", "2", "2", "2"]} +{"2004519": ["3", "2", "3", "2", "3", "3", "3"]} +{"6002012": ["1", "1", "2", "1", "1", "1", "1"]} +{"2005261": ["3", "2", "3", "2", "2", "3", "3"]} +{"0005138": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003590": ["2", "2", "2", "2", "2", "2", "2"]} +{"0004768": ["3", "3", "3", "2", "1", "3", "2"]} +{"2004496": ["3", "3", "2", "2", "3", "3", "3"]} +{"6003644": ["2", "2", "2", "2", "3", "3", "2"]} +{"6003177": ["2", "2", "2", "2", "3", "2", "3"]} +{"6003251": ["2", "3", "2", "2", "3", "2", "2"]} +{"4003528": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006587": ["3", "3", "3", "3", "3", "3", "2"]} +{"1006884": ["2", "2", "2", "None", "1", "2", "2"]} +{"4002343": ["3", "3", "3", "3", "2", "2", "2"]} +{"0006263": ["3", "2", "1", "2", "1", "1", "2"]} +{"1006087": ["3", "2", "2", "2", "2", "1", "2"]} +{"1006841": ["2", "2", "2", "2", "1", "2", "2"]} +{"3004611": ["2", "1", "2", "2", "2", "2", "2"]} +{"4004468": ["2", "2", "2", "2", "2", "2", "2"]} +{"6003767": ["3", "2", "2", "2", "2", "2", "2"]} +{"3003642": ["3", "3", "3", "2", "2", "2", "2"]} +{"1005684": ["3", "2", "2", "2", "2", "2", "2"]} +{"2004962": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004092": ["2", "2", "2", "2", "1", "2", "2"]} +{"2006196": ["2", "2", "2", "2", "2", "1", "2"]} +{"8003011": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006264": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003749": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001366": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002209": ["2", "2", "2", "3", "3", "3", "3"]} +{"4002144": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002148": ["2", "2", "2", "2", "1", "2", "2"]} +{"3004095": ["3", "3", "3", "2", "2", "3", "2"]} +{"6002560": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004144": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004727": ["2", "2", "2", "3", "3", "2", "2"]} +{"6003585": ["1", "2", "2", "2", "2", "2", "2"]} +{"4004926": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006907": ["2", "2", "2", "2", "2", "2", "2"]} +{"3003294": ["2", "2", "2", "2", "1", "1", "2"]} +{"3004963": ["2", "2", "2", "2", "2", "1", "2"]} +{"3003091": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004287": ["2", "2", "3", "2", "2", "2", "3"]} +{"7003162": ["2", "2", "2", "2", "1", "2", "3"]} +{"3006361": ["2", "2", "3", "2", "3", "3", "3"]} +{"8003528": ["2", "None", "2", "3", "1", "2", "3"]} +{"2004476": ["3", "2", "3", "2", "1", "2", "2"]} +{"7003726": ["1", "2", "2", "1", "1", "2", "2"]} +{"6003478": ["2", "2", "2", "2", "1", "1", "2"]} +{"6002967": ["3", "3", "3", "3", "1", "2", "3"]} +{"3005942": ["2", "3", "3", "3", "1", "1", "2"]} +{"2006656": ["3", "2", "3", "3", "3", "3", "3"]} +{"4002434": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001144": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003202": ["2", "2", "2", "2", "1", "1", "2"]} +{"7002393": ["2", "1", "2", "2", "2", "2", "2"]} +{"8001283": ["2", "1", "1", "2", "1", "1", "2"]} +{"6004916": ["2", "3", "3", "2", "3", "3", "3"]} +{"1006783": ["2", "2", "2", "2", "3", "3", "3"]} +{"7002960": ["2", "2", "3", "2", "2", "2", "2"]} +{"3006050": ["2", "2", "2", "2", "1", "2", "2"]} +{"8002154": ["3", "3", "2", "2", "2", "2", "2"]} +{"3004583": ["3", "2", "3", "2", "3", "2", "2"]} +{"7002248": ["3", "2", "3", "3", "2", "3", "3"]} +{"3005634": ["2", "2", "2", "2", "1", "2", "2"]} +{"3003361": ["2", "2", "2", "2", "2", "2", "2"]} +{"8001011": ["2", "3", "3", "2", "1", "2", "2"]} +{"4003423": ["2", "2", "2", "2", "2", "2", "2"]} +{"3004515": ["2", "1", "2", "2", "2", "2", "2"]} +{"2007356": ["1", "1", "1", "1", "1", "1", "1"]} +{"7003604": ["3", "2", "3", "2", "2", "2", "2"]} +{"1003524": ["2", "2", "2", "2", "1", "2", "2"]} +{"7003506": ["3", "3", "3", "3", "1", "1", "2"]} +{"0006128": ["2", "2", "2", "2", "2", "2", "2"]} +{"4003571": ["3", "3", "2", "3", "3", "2", "2"]} +{"2006990": ["2", "3", "2", "3", "2", "2", "2"]} +{"4003352": ["2", "2", "2", "2", "2", "2", "2"]} +{"4003062": ["2", "2", "3", "2", "3", "3", "3"]} +{"2004248": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002937": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004581": ["2", "2", "None", "3", "2", "2", "2"]} +{"6004493": ["2", "3", "3", "2", "3", "2", "2"]} +{"8003598": ["3", "3", "2", "3", "1", "3", "2"]} +{"4004810": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004762": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004789": ["2", "2", "3", "3", "3", "3", "2"]} +{"0006137": ["2", "2", "3", "2", "1", "2", "2"]} +{"4004340": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003076": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001140": ["2", "2", "2", "1", "1", "2", "1"]} +{"4004023": ["2", "2", "2", "2", "1", "2", "2"]} +{"1006807": ["2", "2", "2", "2", "1", "2", "2"]} +{"0004112": ["3", "3", "3", "2", "1", "2", "2"]} +{"7004652": ["3", "2", "2", "3", "2", "3", "3"]} +{"2004905": ["2", "2", "3", "2", "1", "2", "2"]} +{"0004847": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001474": ["1", "2", "2", "2", "1", "2", "2"]} +{"0004203": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003250": ["2", "2", "3", "2", "2", "3", "3"]} +{"3005834": ["3", "3", "3", "2", "3", "2", "3"]} +{"6004611": ["2", "1", "2", "2", "1", "2", "2"]} +{"5001681": ["2", "2", "2", "2", "1", "2", "2"]} +{"4003615": ["2", "3", "3", "3", "2", "2", "2"]} +{"7002916": ["2", "2", "3", "2", "3", "3", "2"]} +{"8001662": ["2", "2", "2", "3", "2", "2", "2"]} +{"1006085": ["1", "1", "1", "2", "1", "2", "2"]} +{"3003702": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006076": ["2", "2", "3", "2", "2", "2", "2"]} +{"4004418": ["3", "3", "None", "3", "2", "2", "2"]} +{"2003008": ["3", "3", "3", "3", "3", "2", "2"]} +{"2007040": ["3", "2", "3", "3", "2", "2", "2"]} +{"5001976": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005239": ["2", "2", "3", "3", "3", "3", "2"]} +{"2007940": ["3", "2", "2", "3", "2", "2", "2"]} +{"1005159": ["2", "2", "3", "2", "2", "2", "2"]} +{"7002817": ["3", "2", "2", "2", "2", "2", "2"]} +{"8001001": ["2", "2", "2", "2", "2", "2", "2"]} +{"8002808": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004624": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003244": ["2", "2", "2", "2", "2", "2", "3"]} +{"1004441": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004734": ["2", "2", "2", "2", "2", "2", "2"]} +{"6002484": ["2", "2", "2", "2", "2", "2", "2"]} +{"6004792": ["2", "2", "2", "2", "2", "2", "2"]} +{"3004966": ["2", "2", "2", "2", "2", "1", "2"]} +{"3006656": ["3", "2", "2", "3", "3", "3", "2"]} +{"2006215": ["2", "2", "1", "2", "2", "2", "2"]} +{"0004365": ["2", "2", "2", "2", "2", "2", "2"]} +{"0006646": ["2", "2", "2", "1", "2", "2", "2"]} +{"2003741": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005123": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004393": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001953": ["2", "2", "2", "2", "1", "2", "2"]} +{"2003965": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006227": ["2", "2", "2", "2", "2", "2", "2"]} +{"0005879": ["2", "2", "2", "2", "1", "2", "2"]} +{"5001032": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004507": ["2", "2", "1", "None", "1", "2", "2"]} +{"1005161": ["3", "2", "2", "2", "3", "2", "2"]} +{"2005543": ["2", "2", "2", "2", "2", "1", "2"]} +{"8003303": ["2", "2", "2", "2", "3", "3", "2"]} +{"8003303": ["2", "2", "2", "2", "3", "3", "2"]} +{"8001625": ["2", "2", "2", "2", "2", "3", "2"]} +{"3004755": ["2", "3", "2", "2", "1", "2", "2"]} +{"1004828": ["2", "2", "3", "3", "1", "2", "2"]} +{"0005410": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004451": ["2", "2", "2", "2", "2", "2", "2"]} +{"6002115": ["3", "2", "3", "None", "2", "2", "2"]} +{"0005320": ["2", "2", "3", "2", "2", "2", "2"]} +{"2005316": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003384": ["2", "None", "2", "1", "2", "2", "2"]} +{"2003450": ["3", "2", "2", "2", "1", "3", "2"]} +{"7003904": ["3", "3", "3", "2", "2", "2", "3"]} +{"4004742": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003085": ["2", "2", "2", "2", "1", "2", "2"]} +{"7003876": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005425": ["3", "2", "2", "3", "3", "3", "3"]} +{"2005196": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003228": ["2", "1", "1", "1", "1", "2", "3"]} +{"7003933": ["3", "3", "3", "3", "3", "2", "2"]} +{"0005037": ["3", "3", "3", "3", "2", "2", "3"]} +{"1006838": ["3", "2", "3", "2", "3", "2", "3"]} +{"1004021": ["3", "2", "3", "3", "2", "2", "2"]} +{"1005098": ["3", "2", "3", "2", "3", "2", "3"]} +{"1006870": ["2", "2", "3", "2", "1", "2", "2"]} +{"4003440": ["2", "2", "3", "2", "1", "2", "2"]} +{"3004726": ["2", "2", "3", "2", "2", "2", "3"]} +{"2003172": ["2", "2", "2", "2", "2", "2", "2"]} +{"7003519": ["2", "2", "2", "2", "2", "2", "2"]} +{"3006737": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005848": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003216": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003513": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003362": ["3", "2", "3", "3", "2", "3", "3"]} +{"0006264": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005348": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007574": ["2", "2", "2", "3", "2", "3", "3"]} +{"0003431": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004387": ["2", "2", "3", "2", "1", "2", "2"]} +{"4003217": ["2", "2", "3", "3", "2", "2", "2"]} +{"1003892": ["2", "1", "3", "2", "2", "2", "2"]} +{"2005904": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004919": ["2", "2", "2", "2", "2", "2", "2"]} +{"8003818": ["2", "2", "2", "2", "2", "2", "2"]} +{"7002505": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006703": ["3", "2", "3", "3", "3", "2", "3"]} +{"1003176": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003430": ["1", "3", "3", "3", "3", "3", "2"]} +{"3005327": ["1", "1", "2", "1", "2", "1", "1"]} +{"2006692": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003170": ["2", "2", "None", "2", "2", "2", "2"]} +{"2004291": ["2", "2", "1", "2", "2", "2", "2"]} +{"0003170": ["2", "2", "3", "2", "2", "2", "2"]} +{"1006929": ["2", "1", "2", "1", "1", "1", "1"]} +{"1003031": ["2", "2", "1", "1", "2", "2", "1"]} +{"7002372": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003709": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002803": ["3", "2", "2", "2", "2", "2", "2"]} +{"6002340": ["2", "2", "2", "1", "1", "1", "2"]} +{"2006943": ["2", "2", "2", "3", "1", "2", "2"]} +{"8001930": ["3", "3", "2", "2", "2", "2", "2"]} +{"6003876": ["3", "2", "3", "2", "2", "2", "2"]} +{"1004142": ["2", "2", "2", "1", "1", "1", "2"]} +{"3005232": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002764": ["2", "2", "3", "2", "1", "2", "2"]} +{"4003306": ["2", "2", "1", "2", "1", "2", "2"]} +{"6002514": ["1", "2", "2", "1", "1", "2", "2"]} +{"6002282": ["1", "1", "2", "1", "1", "1", "1"]} +{"3006691": ["2", "1", "2", "1", "1", "2", "2"]} +{"1006221": ["2", "1", "2", "2", "1", "1", "2"]} +{"5001475": ["3", "3", "3", "3", "3", "3", "2"]} +{"8002179": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003044": ["2", "2", "3", "3", "2", "3", "3"]} +{"8003352": ["2", "2", "3", "3", "1", "2", "2"]} +{"6004763": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005220": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006853": ["2", "2", "2", "2", "3", "3", "3"]} +{"3006317": ["2", "3", "3", "2", "2", "2", "2"]} +{"7003344": ["2", "2", "3", "3", "1", "2", "2"]} +{"3004417": ["2", "2", "2", "2", "2", "3", "2"]} +{"1006884": ["2", "2", "2", "2", "1", "2", "2"]} +{"8003528": ["2", "2", "2", "3", "1", "2", "3"]} +{"1004581": ["2", "2", "2", "3", "2", "2", "2"]} +{"4004418": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004507": ["2", "2", "1", "1", "1", "2", "2"]} +{"6002115": ["3", "2", "3", "3", "2", "2", "2"]} +{"7003384": ["2", "2", "2", "1", "2", "2", "2"]} +{"2003450": ["3", "2", "3", "2", "1", "3", "2"]} +{"7003904": ["3", "3", "3", "2", "2", "2", "3"]} +{"4004742": ["2", "3", "3", "3", "3", "2", "3"]} +{"2003085": ["3", "3", "1", "2", "1", "2", "2"]} +{"7003876": ["3", "2", "3", "3", "2", "3", "3"]} +{"1005425": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005196": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003228": ["2", "1", "3", "1", "1", "2", "3"]} +{"7003933": ["3", "3", "3", "3", "3", "2", "2"]} +{"0005037": ["3", "3", "3", "3", "2", "2", "3"]} +{"1006838": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004021": ["3", "2", "3", "3", "2", "2", "2"]} +{"1005098": ["3", "2", "3", "2", "3", "2", "3"]} +{"1006870": ["3", "2", "3", "2", "1", "2", "2"]} +{"4003440": ["3", "2", "3", "2", "1", "2", "2"]} +{"3004726": ["3", "3", "3", "2", "2", "2", "3"]} +{"2003172": ["3", "3", "3", "2", "2", "2", "2"]} +{"7003519": ["3", "3", "3", "2", "2", "2", "2"]} +{"3006737": ["2", "3", "3", "3", "2", "3", "3"]} +{"0005848": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005848": ["3", "3", "1", "3", "3", "3", "2"]} +{"4003216": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003513": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003513": ["3", "2", "3", "3", "3", "2", "3"]} +{"3003362": ["3", "2", "3", "3", "2", "3", "3"]} +{"0006264": ["3", "3", "1", "3", "1", "3", "2"]} +{"2005348": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007574": ["3", "2", "3", "3", "2", "3", "3"]} +{"0003431": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004387": ["3", "2", "3", "2", "1", "2", "2"]} +{"4003217": ["3", "3", "3", "3", "2", "2", "2"]} +{"1003892": ["2", "1", "3", "2", "2", "2", "2"]} +{"2005904": ["3", "3", "1", "3", "2", "3", "2"]} +{"1004919": ["2", "1", "3", "2", "2", "2", "2"]} +{"8003818": ["2", "2", "3", "2", "2", "2", "2"]} +{"7002505": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006703": ["3", "2", "3", "3", "3", "2", "3"]} +{"1005980": ["3", "2", "3", "2", "2", "1", "2"]} +{"3004349": ["1", "2", "3", "1", "2", "2", "1"]} +{"1004645": ["3", "2", "3", "2", "2", "3", "3"]} +{"4004497": ["3", "2", "3", "2", "2", "1", "2"]} +{"3006920": ["3", "3", "2", "2", "2", "3", "2"]} +{"6003860": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003709": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007169": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004467": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002015": ["3", "3", "3", "2", "2", "3", "3"]} +{"8003869": ["2", "2", "3", "2", "2", "2", "2"]} +{"8003365": ["2", "2", "3", "1", "1", "2", "2"]} +{"2003270": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004864": ["2", "2", "2", "2", "2", "3", "2"]} +{"3005552": ["2", "2", "3", "1", "2", "1", "2"]} +{"6003716": ["3", "2", "3", "2", "3", "2", "2"]} +{"0005862": ["3", "3", "3", "1", "2", "2", "3"]} +{"1006505": ["2", "1", "3", "2", "2", "2", "2"]} +{"7004034": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005127": ["3", "3", "3", "3", "1", "1", "2"]} +{"0004645": ["3", "3", "3", "2", "2", "2", "3"]} +{"8001855": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003955": ["3", "3", "3", "2", "2", "2", "3"]} +{"3003400": ["3", "2", "3", "2", "1", "1", "3"]} +{"3003400": ["3", "2", "3", "2", "2", "2", "3"]} +{"2006138": ["3", "2", "3", "3", "2", "2", "3"]} +{"1005270": ["2", "1", "3", "2", "2", "1", "2"]} +{"4003138": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007796": ["3", "3", "3", "2", "1", "1", "2"]} +{"6003455": ["2", "1", "3", "1", "3", "1", "1"]} +{"4003719": ["3", "2", "3", "1", "1", "2", "2"]} +{"4004621": ["3", "2", "2", "2", "2", "2", "2"]} +{"6003140": ["2", "2", "3", "1", "3", "2", "2"]} +{"7004512": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003534": ["2", "3", "3", "2", "3", "2", "3"]} +{"7003534": ["2", "3", "3", "2", "3", "2", "2"]} +{"2007484": ["3", "2", "3", "3", "2", "1", "2"]} +{"2006782": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005808": ["3", "2", "3", "2", "1", "2", "2"]} +{"4004768": ["3", "2", "3", "2", "1", "1", "2"]} +{"7002633": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006904": ["3", "2", "3", "2", "2", "1", "2"]} +{"0006966": ["3", "2", "2", "3", "3", "2", "2"]} +{"8002218": ["3", "1", "3", "2", "3", "2", "2"]} +{"3006995": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006302": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002366": ["3", "3", "2", "1", "1", "2", "2"]} +{"4004729": ["3", "2", "3", "2", "1", "1", "2"]} +{"4004729": ["3", "2", "3", "2", "1", "2", "2"]} +{"1006392": ["3", "2", "3", "2", "1", "2", "2"]} +{"7004220": ["3", "2", "3", "2", "1", "1", "1"]} +{"6003012": ["2", "2", "3", "2", "1", "1", "1"]} +{"8002027": ["3", "2", "3", "2", "2", "1", "2"]} +{"1005781": ["2", "2", "3", "3", "3", "2", "2"]} +{"6004682": ["2", "2", "3", "1", "1", "1", "1"]} +{"8003572": ["2", "3", "3", "2", "1", "1", "1"]} +{"7002431": ["3", "3", "3", "3", "1", "2", "2"]} +{"6002753": ["3", "2", "3", "1", "1", "2", "2"]} +{"1003790": ["3", "1", "3", "1", "1", "2", "2"]} +{"3003218": ["3", "3", "3", "2", "2", "2", "2"]} +{"4002803": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003109": ["3", "3", "3", "2", "1", "1", "2"]} +{"0003109": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001131": ["3", "3", "3", "3", "2", "2", "2"]} +{"0006917": ["3", "3", "3", "2", "1", "1", "1"]} +{"0005250": ["3", "3", "3", "2", "2", "1", "2"]} +{"6003243": ["2", "1", "3", "1", "1", "2", "2"]} +{"2003589": ["3", "3", "3", "1", "2", "2", "3"]} +{"8003500": ["3", "2", "3", "2", "2", "2", "2"]} +{"0005137": ["3", "3", "1", "1", "1", "1", "1"]} +{"1005502": ["3", "1", "3", "2", "3", "1", "2"]} +{"6003570": ["3", "2", "3", "2", "1", "1", "2"]} +{"6002340": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003678": ["3", "3", "2", "2", "2", "2", "2"]} +{"0006008": ["3", "3", "2", "1", "2", "2", "2"]} +{"8001638": ["3", "2", "3", "2", "2", "2", "2"]} +{"0004808": ["3", "3", "3", "3", "2", "2", "3"]} +{"1004180": ["3", "1", "3", "2", "2", "1", "2"]} +{"0005809": ["3", "2", "3", "2", "2", "2", "2"]} +{"2003857": ["3", "3", "2", "2", "2", "2", "2"]} +{"8002511": ["3", "2", "3", "2", "2", "3", "2"]} +{"8002667": ["3", "2", "3", "2", "3", "3", "3"]} +{"7004067": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004661": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004929": ["3", "3", "1", "2", "1", "2", "2"]} +{"3004513": ["3", "2", "3", "2", "2", "2", "2"]} +{"7003230": ["3", "2", "2", "1", "2", "2", "2"]} +{"7003230": ["3", "2", "2", "2", "2", "2", "2"]} +{"1003632": ["3", "2", "3", "2", "1", "1", "2"]} +{"7003536": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003756": ["3", "2", "3", "2", "2", "2", "2"]} +{"1006464": ["2", "1", "2", "2", "2", "2", "2"]} +{"3004192": ["3", "3", "3", "2", "2", "2", "2"]} +{"4004743": ["3", "2", "2", "2", "2", "2", "2"]} +{"4002997": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003492": ["3", "2", "3", "3", "3", "2", "3"]} +{"0003295": ["3", "3", "3", "2", "1", "2", "2"]} +{"2005526": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005794": ["3", "3", "3", "2", "1", "2", "2"]} +{"7002230": ["3", "3", "3", "2", "1", "3", "2"]} +{"7002230": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003275": ["3", "2", "3", "2", "2", "2", "2"]} +{"2006943": ["3", "3", "2", "3", "1", "2", "2"]} +{"8001930": ["3", "3", "3", "2", "2", "2", "2"]} +{"8003642": ["3", "3", "3", "2", "1", "2", "2"]} +{"8002362": ["2", "3", "3", "1", "1", "1", "2"]} +{"2003443": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003240": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003058": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006808": ["3", "3", "2", "3", "2", "3", "2"]} +{"1005663": ["2", "1", "3", "2", "1", "2", "2"]} +{"0004057": ["3", "3", "1", "3", "2", "2", "2"]} +{"2006847": ["3", "2", "3", "3", "2", "3", "2"]} +{"0003269": ["3", "3", "2", "3", "2", "2", "2"]} +{"6003937": ["2", "1", "3", "1", "2", "1", "1"]} +{"0004137": ["3", "3", "2", "3", "2", "2", "2"]} +{"0004137": ["3", "3", "2", "3", "2", "2", "2"]} +{"5001024": ["3", "3", "3", "2", "2", "2", "2"]} +{"6004831": ["3", "2", "3", "2", "2", "2", "2"]} +{"1005710": ["2", "1", "3", "2", "1", "1", "2"]} +{"0005048": ["3", "2", "3", "2", "3", "2", "2"]} +{"6002256": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003262": ["3", "3", "3", "2", "2", "2", "2"]} +{"0005561": ["3", "3", "2", "3", "1", "1", "1"]} +{"2004728": ["3", "3", "2", "2", "3", "3", "3"]} +{"2004728": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003583": ["3", "3", "3", "3", "2", "2", "2"]} +{"1003588": ["3", "3", "1", "3", "1", "2", "2"]} +{"3003536": ["3", "3", "3", "3", "3", "2", "2"]} +{"3003536": ["3", "3", "3", "3", "1", "3", "2"]} +{"1006677": ["3", "2", "3", "3", "2", "3", "3"]} +{"2003213": ["3", "3", "3", "3", "1", "2", "2"]} +{"2003726": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006557": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004004": ["3", "1", "3", "2", "3", "2", "2"]} +{"3005778": ["3", "2", "3", "3", "2", "3", "2"]} +{"3005778": ["3", "2", "3", "3", "2", "2", "2"]} +{"1004355": ["3", "2", "3", "2", "2", "3", "2"]} +{"6004772": ["3", "2", "3", "2", "3", "2", "2"]} +{"6003186": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004975": ["3", "3", "3", "2", "2", "3", "3"]} +{"3004975": ["3", "3", "3", "2", "2", "3", "3"]} +{"4004635": ["3", "2", "3", "2", "2", "2", "2"]} +{"0004248": ["1", "3", "3", "2", "2", "2", "2"]} +{"7002043": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004316": ["3", "2", "3", "2", "1", "1", "2"]} +{"4002684": ["3", "3", "3", "2", "1", "2", "2"]} +{"0003012": ["3", "2", "3", "3", "2", "1", "2"]} +{"3004089": ["3", "3", "3", "3", "2", "1", "2"]} +{"2003790": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005648": ["3", "3", "3", "3", "1", "2", "2"]} +{"8001166": ["2", "1", "3", "1", "3", "1", "2"]} +{"3005279": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003940": ["3", "3", "3", "3", "2", "2", "2"]} +{"2004472": ["3", "2", "3", "3", "2", "1", "2"]} +{"2007137": ["3", "3", "3", "3", "1", "3", "2"]} +{"1006314": ["3", "1", "3", "2", "2", "1", "1"]} +{"2006667": ["3", "3", "1", "3", "1", "3", "2"]} +{"4003333": ["3", "3", "3", "2", "2", "2", "3"]} +{"3006222": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006626": ["3", "3", "3", "3", "1", "3", "2"]} +{"2005839": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001344": ["3", "2", "3", "2", "1", "2", "2"]} +{"3003522": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007180": ["3", "3", "3", "2", "1", "2", "2"]} +{"2007180": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001977": ["3", "3", "2", "3", "1", "3", "2"]} +{"2003984": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002225": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003383": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002731": ["3", "1", "3", "2", "1", "2", "1"]} +{"3006350": ["3", "3", "3", "2", "2", "3", "2"]} +{"2005916": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001687": ["2", "3", "1", "3", "2", "3", "2"]} +{"2003252": ["3", "2", "3", "3", "1", "2", "2"]} +{"8003218": ["3", "2", "3", "3", "1", "1", "2"]} +{"8003218": ["3", "2", "3", "3", "1", "1", "1"]} +{"3006274": ["3", "3", "3", "3", "1", "2", "2"]} +{"5001569": ["3", "2", "3", "3", "3", "2", "3"]} +{"3004734": ["3", "1", "3", "2", "1", "1", "1"]} +{"6004115": ["3", "3", "3", "3", "2", "1", "3"]} +{"6004115": ["3", "3", "3", "3", "2", "2", "3"]} +{"8001630": ["3", "2", "3", "2", "3", "1", "2"]} +{"2006421": ["3", "3", "2", "3", "1", "3", "2"]} +{"1003707": ["2", "1", "3", "2", "3", "2", "2"]} +{"7003472": ["3", "2", "3", "3", "2", "2", "2"]} +{"1005480": ["2", "1", "3", "2", "1", "3", "2"]} +{"1006586": ["2", "1", "3", "1", "1", "1", "1"]} +{"3004517": ["2", "2", "3", "2", "1", "2", "2"]} +{"4002538": ["2", "3", "3", "2", "1", "1", "2"]} +{"3005254": ["3", "1", "3", "1", "3", "3", "2"]} +{"3003602": ["3", "2", "3", "2", "1", "1", "2"]} +{"6000009": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003930": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004072": ["3", "2", "3", "3", "3", "3", "2"]} +{"0005185": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006009": ["3", "3", "3", "3", "1", "2", "2"]} +{"1005051": ["2", "2", "3", "2", "1", "2", "2"]} +{"3006354": ["3", "2", "3", "2", "2", "1", "2"]} +{"3006354": ["3", "2", "3", "2", "2", "2", "2"]} +{"4003531": ["3", "3", "1", "3", "3", "3", "2"]} +{"2004004": ["2", "3", "2", "2", "2", "2", "2"]} +{"7004886": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006221": ["3", "1", "3", "2", "1", "1", "2"]} +{"2005345": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003929": ["3", "2", "3", "2", "1", "2", "2"]} +{"4004536": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004029": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003561": ["3", "2", "3", "2", "2", "1", "2"]} +{"1004407": ["3", "2", "3", "2", "1", "2", "2"]} +{"8002984": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004623": ["2", "2", "3", "3", "1", "2", "2"]} +{"1005496": ["3", "2", "3", "2", "2", "2", "2"]} +{"2005922": ["3", "2", "3", "2", "1", "1", "2"]} +{"1003085": ["3", "2", "3", "2", "1", "1", "2"]} +{"8001382": ["2", "1", "3", "1", "1", "2", "1"]} +{"2003561": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005252": ["3", "2", "3", "3", "2", "1", "2"]} +{"2003083": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002924": ["3", "3", "3", "3", "3", "1", "2"]} +{"0006896": ["3", "3", "2", "3", "3", "2", "2"]} +{"1005608": ["2", "3", "3", "2", "2", "2", "2"]} +{"4002928": ["3", "3", "2", "3", "2", "1", "2"]} +{"2003933": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004926": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006076": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006320": ["2", "2", "2", "2", "2", "2", "2"]} +{"0006320": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004175": ["3", "2", "3", "2", "2", "2", "2"]} +{"2005133": ["3", "3", "3", "2", "2", "2", "2"]} +{"4004067": ["3", "2", "3", "2", "2", "1", "2"]} +{"3004811": ["2", "2", "3", "1", "1", "1", "1"]} +{"2004032": ["3", "3", "2", "3", "1", "2", "2"]} +{"2004418": ["3", "2", "2", "3", "3", "3", "3"]} +{"4002723": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006352": ["3", "3", "3", "3", "1", "1", "2"]} +{"5001475": ["3", "3", "3", "3", "3", "3", "2"]} +{"8002179": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002179": ["3", "2", "3", "3", "2", "2", "2"]} +{"2006460": ["3", "2", "3", "3", "2", "2", "3"]} +{"0006235": ["2", "3", "1", "3", "1", "2", "2"]} +{"8001181": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004648": ["3", "2", "3", "2", "2", "2", "2"]} +{"0003566": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006493": ["3", "3", "2", "3", "1", "1", "1"]} +{"3003457": ["2", "2", "3", "2", "1", "2", "2"]} +{"6002563": ["3", "2", "3", "1", "1", "2", "2"]} +{"3006237": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006857": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003044": ["2", "2", "3", "3", "2", "3", "3"]} +{"0005797": ["3", "3", "3", "2", "2", "2", "2"]} +{"7003859": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005881": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003669": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005578": ["2", "1", "3", "1", "1", "2", "1"]} +{"0003703": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005613": ["3", "2", "3", "3", "3", "3", "3"]} +{"6003759": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005712": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005860": ["3", "2", "3", "2", "1", "2", "2"]} +{"2003255": ["3", "2", "3", "2", "3", "2", "2"]} +{"3003908": ["3", "3", "3", "2", "1", "3", "2"]} +{"3005715": ["3", "3", "3", "2", "3", "2", "3"]} +{"3005715": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002973": ["3", "2", "3", "2", "2", "2", "2"]} +{"5001176": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001507": ["1", "1", "3", "2", "1", "1", "1"]} +{"2003987": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003272": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002038": ["3", "2", "3", "2", "1", "2", "2"]} +{"8002963": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006136": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003853": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004877": ["2", "1", "3", "2", "2", "1", "2"]} +{"6004763": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004675": ["3", "1", "3", "1", "2", "1", "2"]} +{"6002343": ["3", "2", "3", "2", "1", "2", "2"]} +{"0003667": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004082": ["1", "3", "3", "3", "3", "3", "2"]} +{"6003291": ["2", "2", "3", "2", "1", "2", "2"]} +{"6002621": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005795": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004308": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004308": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005070": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004691": ["2", "1", "3", "1", "2", "2", "1"]} +{"2005013": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005302": ["3", "3", "3", "3", "3", "2", "2"]} +{"0003694": ["2", "3", "3", "3", "1", "2", "2"]} +{"1006507": ["2", "1", "3", "1", "1", "1", "1"]} +{"2005181": ["3", "3", "3", "3", "2", "3", "2"]} +{"8002535": ["2", "1", "3", "2", "1", "2", "1"]} +{"8001123": ["3", "2", "3", "2", "1", "1", "2"]} +{"6002505": ["3", "2", "3", "2", "1", "2", "2"]} +{"8001484": ["3", "2", "3", "2", "1", "1", "1"]} +{"7003079": ["3", "3", "3", "3", "1", "2", "2"]} +{"4003610": ["3", "2", "3", "2", "1", "1", "2"]} +{"0006495": ["3", "3", "2", "1", "1", "1", "2"]} +{"4004417": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004692": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004692": ["3", "3", "3", "2", "3", "3", "2"]} +{"2003359": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004222": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006845": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005969": ["3", "2", "3", "3", "3", "3", "3"]} +{"8002091": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002732": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005850": ["3", "2", "3", "2", "1", "1", "2"]} +{"8002214": ["2", "1", "3", "2", "2", "2", "1"]} +{"3003945": ["3", "3", "3", "2", "2", "2", "2"]} +{"3003781": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005691": ["3", "3", "2", "2", "1", "2", "2"]} +{"3003243": ["3", "2", "3", "2", "2", "2", "2"]} +{"0006006": ["3", "3", "1", "3", "2", "2", "2"]} +{"0003751": ["3", "3", "2", "2", "2", "2", "2"]} +{"1006982": ["2", "1", "3", "1", "3", "2", "2"]} +{"6003628": ["2", "2", "3", "1", "2", "2", "2"]} +{"4003915": ["3", "2", "3", "3", "2", "2", "2"]} +{"3005824": ["3", "3", "3", "3", "2", "2", "3"]} +{"6003549": ["2", "2", "3", "2", "3", "1", "2"]} +{"1004932": ["2", "2", "3", "3", "3", "2", "2"]} +{"6004751": ["3", "2", "3", "2", "3", "2", "2"]} +{"4003988": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004190": ["3", "3", "3", "3", "1", "2", "2"]} +{"2004167": ["3", "2", "3", "3", "1", "3", "3"]} +{"8001736": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003314": ["2", "3", "3", "3", "3", "3", "3"]} +{"7003314": ["2", "3", "3", "3", "3", "2", "2"]} +{"0003495": ["3", "2", "3", "2", "1", "1", "1"]} +{"2003603": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003603": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003388": ["3", "2", "3", "3", "1", "3", "2"]} +{"7003388": ["3", "2", "3", "3", "1", "3", "2"]} +{"6003848": ["3", "3", "3", "2", "1", "1", "2"]} +{"4004658": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003499": ["3", "1", "3", "2", "2", "1", "1"]} +{"3005007": ["2", "2", "2", "2", "2", "2", "2"]} +{"2004380": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005220": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006231": ["3", "3", "2", "2", "1", "3", "3"]} +{"0006518": ["3", "2", "3", "3", "3", "2", "2"]} +{"2003769": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004020": ["3", "2", "3", "3", "2", "2", "3"]} +{"3004020": ["3", "2", "3", "3", "2", "2", "2"]} +{"4003939": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003419": ["3", "2", "3", "3", "3", "3", "2"]} +{"2003967": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006735": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006730": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004873": ["3", "3", "1", "3", "3", "3", "2"]} +{"7003137": ["2", "3", "3", "2", "1", "2", "2"]} +{"3005355": ["3", "3", "3", "3", "3", "2", "2"]} +{"3003355": ["3", "2", "3", "2", "2", "2", "2"]} +{"0006143": ["3", "3", "1", "3", "1", "2", "2"]} +{"8003470": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004457": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007522": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003949": ["2", "1", "3", "1", "1", "1", "1"]} +{"2007748": ["3", "3", "3", "2", "1", "1", "1"]} +{"0004805": ["3", "3", "3", "3", "2", "2", "2"]} +{"8001372": ["2", "1", "3", "2", "2", "2", "2"]} +{"0006077": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005610": ["3", "2", "3", "3", "2", "1", "2"]} +{"2005610": ["3", "2", "3", "3", "2", "2", "2"]} +{"0003411": ["3", "2", "3", "2", "1", "2", "2"]} +{"4003923": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004234": ["3", "3", "3", "3", "1", "2", "2"]} +{"6003331": ["3", "2", "3", "2", "1", "1", "1"]} +{"6004123": ["2", "2", "3", "2", "2", "2", "2"]} +{"3004244": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003298": ["2", "2", "3", "2", "3", "2", "2"]} +{"2006710": ["3", "3", "2", "2", "1", "2", "2"]} +{"2005804": ["3", "2", "3", "2", "1", "1", "2"]} +{"4003454": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003454": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003755": ["3", "3", "3", "2", "1", "2", "2"]} +{"5001216": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002394": ["2", "2", "3", "2", "1", "1", "1"]} +{"6004870": ["3", "2", "3", "2", "1", "1", "1"]} +{"0006614": ["3", "3", "2", "3", "2", "3", "3"]} +{"0003832": ["3", "2", "3", "2", "3", "1", "2"]} +{"0003832": ["3", "2", "3", "2", "3", "2", "2"]} +{"4004092": ["2", "2", "3", "2", "2", "2", "2"]} +{"3006246": ["2", "3", "3", "2", "1", "2", "2"]} +{"8003406": ["3", "2", "3", "2", "3", "2", "2"]} +{"1004487": ["3", "2", "3", "2", "3", "3", "2"]} +{"2006504": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004383": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002267": ["3", "2", "3", "3", "1", "2", "2"]} +{"6004390": ["3", "2", "3", "2", "1", "2", "2"]} +{"6004071": ["3", "2", "3", "2", "1", "2", "2"]} +{"2006083": ["3", "2", "3", "2", "2", "2", "2"]} +{"2003209": ["3", "3", "3", "3", "1", "2", "2"]} +{"2003209": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003209": ["3", "3", "3", "3", "2", "2", "2"]} +{"2005898": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001126": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004121": ["3", "2", "3", "2", "1", "3", "2"]} +{"1005467": ["3", "2", "3", "3", "1", "2", "2"]} +{"2004423": ["3", "3", "1", "3", "1", "2", "2"]} +{"0006228": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003407": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005288": ["3", "2", "2", "2", "2", "3", "2"]} +{"6004360": ["1", "2", "3", "2", "1", "2", "1"]} +{"8003721": ["2", "2", "3", "2", "1", "1", "1"]} +{"4003925": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003925": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004631": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004620": ["3", "2", "3", "2", "2", "2", "2"]} +{"7003663": ["3", "2", "3", "2", "2", "3", "2"]} +{"6002141": ["2", "2", "3", "2", "1", "1", "1"]} +{"2005827": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003953": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005896": ["3", "3", "3", "2", "2", "3", "2"]} +{"4004723": ["2", "3", "2", "3", "1", "2", "2"]} +{"4002145": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007560": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005536": ["3", "2", "3", "2", "1", "2", "2"]} +{"7003899": ["3", "3", "1", "3", "2", "2", "2"]} +{"1006773": ["3", "2", "3", "2", "3", "2", "2"]} +{"1004641": ["3", "2", "3", "2", "2", "1", "2"]} +{"2006905": ["3", "2", "3", "3", "3", "2", "2"]} +{"3005088": ["2", "3", "3", "2", "2", "2", "2"]} +{"2004961": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001759": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004294": ["3", "2", "3", "2", "3", "2", "2"]} +{"1004872": ["3", "2", "3", "2", "2", "3", "3"]} +{"6003548": ["3", "2", "3", "2", "3", "2", "2"]} +{"3003380": ["3", "3", "2", "3", "1", "2", "2"]} +{"7002998": ["3", "3", "3", "2", "1", "3", "2"]} +{"3006563": ["3", "2", "3", "2", "1", "2", "2"]} +{"0005116": ["3", "3", "3", "2", "1", "2", "2"]} +{"6004229": ["1", "1", "3", "1", "1", "1", "1"]} +{"1005677": ["2", "3", "3", "2", "1", "1", "2"]} +{"3006853": ["3", "2", "3", "2", "3", "3", "3"]} +{"3006853": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004180": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002964": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004890": ["3", "3", "3", "3", "1", "2", "2"]} +{"1004591": ["2", "1", "3", "1", "1", "2", "1"]} +{"1004992": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004634": ["3", "3", "3", "2", "1", "1", "1"]} +{"6004581": ["2", "3", "2", "3", "3", "2", "2"]} +{"7002215": ["3", "2", "3", "3", "1", "2", "2"]} +{"0006482": ["3", "3", "2", "3", "2", "2", "2"]} +{"1005070": ["3", "2", "3", "2", "2", "2", "2"]} +{"2006198": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004811": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003599": ["3", "2", "3", "2", "1", "2", "2"]} +{"2006928": ["3", "2", "3", "2", "1", "2", "2"]} +{"2005081": ["3", "3", "3", "2", "1", "2", "2"]} +{"7004559": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001996": ["2", "2", "3", "2", "2", "2", "2"]} +{"3006177": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005429": ["2", "3", "3", "3", "3", "2", "2"]} +{"7003571": ["1", "3", "1", "2", "2", "3", "2"]} +{"2006081": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004616": ["2", "3", "3", "2", "3", "3", "3"]} +{"1006293": ["3", "2", "3", "2", "1", "2", "3"]} +{"1006293": ["3", "2", "3", "2", "1", "2", "2"]} +{"8002730": ["2", "2", "3", "2", "1", "2", "2"]} +{"2007731": ["3", "3", "3", "3", "2", "2", "2"]} +{"0003773": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004924": ["2", "2", "3", "2", "2", "2", "2"]} +{"8002186": ["2", "2", "3", "2", "1", "2", "2"]} +{"6003928": ["3", "2", "3", "2", "1", "2", "2"]} +{"2006621": ["3", "3", "3", "3", "1", "2", "2"]} +{"3006336": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006514": ["2", "2", "3", "2", "3", "2", "2"]} +{"5001812": ["3", "3", "1", "3", "1", "2", "2"]} +{"2004318": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002405": ["3", "3", "3", "3", "1", "2", "2"]} +{"2005735": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005686": ["2", "2", "3", "2", "1", "2", "2"]} +{"0005603": ["2", "3", "3", "3", "2", "2", "2"]} +{"2005659": ["3", "3", "2", "2", "1", "2", "2"]} +{"2005659": ["3", "3", "2", "2", "2", "2", "2"]} +{"0006781": ["3", "3", "3", "2", "2", "3", "2"]} +{"3004254": ["3", "3", "2", "3", "1", "1", "2"]} +{"6004496": ["2", "2", "3", "2", "2", "2", "2"]} +{"6004286": ["2", "2", "3", "2", "2", "2", "2"]} +{"3006317": ["3", "2", "3", "2", "2", "2", "2"]} +{"2005245": ["3", "3", "2", "3", "3", "2", "3"]} +{"2005245": ["3", "2", "2", "3", "3", "3", "2"]} +{"6002781": ["2", "2", "3", "1", "1", "1", "1"]} +{"3005744": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003655": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007397": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003821": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003131": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006444": ["3", "2", "3", "3", "2", "2", "2"]} +{"4004396": ["3", "2", "3", "3", "3", "3", "2"]} +{"0005547": ["3", "2", "2", "3", "3", "2", "2"]} +{"1006132": ["3", "1", "3", "2", "2", "2", "2"]} +{"0004726": ["3", "2", "1", "3", "3", "3", "2"]} +{"8001064": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003149": ["3", "1", "3", "2", "2", "2", "2"]} +{"7002534": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007839": ["3", "2", "3", "3", "3", "3", "2"]} +{"2007839": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006994": ["2", "2", "3", "2", "2", "2", "2"]} +{"2007613": ["3", "3", "1", "3", "3", "3", "2"]} +{"7003344": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004764": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003888": ["2", "2", "3", "2", "2", "2", "2"]} +{"2004653": ["3", "3", "3", "2", "2", "2", "2"]} +{"2003628": ["3", "2", "3", "2", "2", "2", "2"]} +{"3006895": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004417": ["1", "2", "3", "2", "3", "2", "2"]} +{"1004061": ["3", "2", "2", "3", "2", "2", "2"]} +{"2006607": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006541": ["3", "3", "3", "3", "1", "2", "2"]} +{"6003121": ["2", "2", "3", "2", "2", "2", "2"]} +{"0003309": ["2", "2", "3", "3", "2", "2", "2"]} +{"0006218": ["3", "3", "3", "2", "1", "2", "2"]} +{"0006218": ["3", "3", "3", "2", "1", "2", "2"]} +{"8003763": ["2", "2", "3", "2", "2", "2", "2"]} +{"7003118": ["3", "2", "3", "3", "2", "2", "2"]} +{"3003348": ["2", "2", "3", "2", "2", "2", "2"]} +{"6002270": ["2", "3", "3", "2", "3", "2", "2"]} +{"3004764": ["1", "2", "3", "1", "1", "1", "1"]} +{"7002083": ["3", "3", "3", "2", "2", "2", "2"]} +{"4002603": ["2", "2", "3", "2", "1", "2", "2"]} +{"5001544": ["3", "2", "3", "2", "2", "2", "2"]} +{"5001674": ["2", "3", "3", "2", "2", "2", "2"]} +{"8003467": ["3", "3", "3", "2", "2", "3", "2"]} +{"0005426": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006950": ["3", "3", "3", "3", "3", "3", "2"]} +{"2005940": ["3", "2", "3", "2", "2", "2", "2"]} +{"8003053": ["3", "2", "3", "2", "3", "2", "2"]} +{"3003015": ["3", "2", "3", "2", "2", "2", "2"]} +{"0004549": ["3", "3", "3", "3", "1", "2", "2"]} +{"1005181": ["3", "2", "3", "3", "3", "2", "2"]} +{"0004335": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004998": ["3", "3", "3", "2", "2", "2", "2"]} +{"2004519": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002012": ["2", "2", "3", "1", "2", "1", "1"]} +{"2005261": ["3", "2", "3", "2", "2", "3", "3"]} +{"0005138": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003590": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004768": ["3", "3", "3", "2", "1", "3", "2"]} +{"2004496": ["3", "3", "1", "2", "3", "3", "3"]} +{"2004496": ["3", "3", "1", "2", "2", "3", "2"]} +{"6003644": ["1", "2", "3", "1", "2", "2", "1"]} +{"6003177": ["2", "2", "3", "2", "3", "2", "3"]} +{"6003251": ["2", "3", "3", "2", "3", "2", "2"]} +{"4003528": ["3", "2", "3", "2", "3", "2", "2"]} +{"3006587": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006884": ["2", "2", "3", "2", "1", "2", "2"]} +{"4002343": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006263": ["3", "3", "1", "3", "1", "2", "2"]} +{"1006087": ["2", "2", "3", "2", "2", "1", "2"]} +{"1006841": ["2", "2", "3", "2", "1", "2", "2"]} +{"3004611": ["2", "1", "3", "2", "2", "2", "2"]} +{"4004468": ["3", "3", "3", "2", "2", "2", "2"]} +{"6003767": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003642": ["3", "3", "3", "2", "2", "2", "2"]} +{"1005684": ["3", "1", "3", "2", "2", "2", "2"]} +{"2004962": ["3", "2", "3", "2", "3", "2", "2"]} +{"3004092": ["3", "2", "3", "2", "2", "3", "2"]} +{"2006196": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003011": ["2", "2", "3", "3", "2", "2", "2"]} +{"2006264": ["3", "3", "1", "3", "3", "3", "2"]} +{"7003749": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001366": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002209": ["2", "2", "3", "3", "3", "3", "2"]} +{"4002144": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002148": ["2", "2", "3", "2", "1", "2", "2"]} +{"3004095": ["3", "2", "3", "2", "2", "2", "2"]} +{"6002560": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004144": ["3", "3", "1", "3", "2", "2", "2"]} +{"3004727": ["3", "2", "3", "3", "3", "2", "2"]} +{"6003585": ["3", "2", "3", "2", "2", "2", "2"]} +{"4004926": ["2", "3", "3", "3", "3", "3", "2"]} +{"1006907": ["2", "2", "3", "2", "2", "2", "2"]} +{"3003294": ["3", "2", "3", "2", "1", "1", "2"]} +{"3003294": ["3", "2", "3", "2", "1", "2", "2"]} +{"3004963": ["3", "2", "3", "2", "1", "2", "1"]} +{"3003091": ["3", "3", "3", "3", "3", "2", "2"]} +{"7004287": ["3", "3", "2", "2", "2", "2", "2"]} +{"7003162": ["3", "2", "3", "2", "1", "2", "3"]} +{"3006361": ["3", "2", "3", "2", "3", "3", "3"]} +{"8003528": ["3", "2", "3", "3", "1", "2", "3"]} +{"2004476": ["3", "2", "3", "2", "1", "2", "2"]} +{"7003726": ["3", "3", "3", "1", "1", "2", "2"]} +{"7003726": ["3", "3", "3", "3", "1", "2", "2"]} +{"6003478": ["3", "2", "3", "2", "3", "2", "2"]} +{"6002967": ["3", "3", "3", "3", "3", "2", "2"]} +{"3005942": ["2", "3", "3", "3", "1", "2", "2"]} +{"2006656": ["3", "3", "2", "3", "3", "3", "2"]} +{"4002434": ["3", "2", "3", "2", "2", "2", "2"]} +{"5001144": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003202": ["3", "2", "3", "2", "1", "1", "2"]} +{"7002393": ["3", "1", "3", "2", "2", "2", "2"]} +{"8001283": ["3", "2", "3", "2", "1", "1", "2"]} +{"6004916": ["2", "2", "3", "2", "3", "2", "2"]} +{"1006783": ["2", "2", "3", "2", "3", "3", "3"]} +{"1006783": ["2", "2", "3", "2", "3", "3", "2"]} +{"7002960": ["3", "2", "3", "2", "2", "2", "2"]} +{"3006050": ["3", "2", "3", "2", "1", "2", "2"]} +{"8002154": ["3", "3", "3", "2", "2", "2", "2"]} +{"3004583": ["2", "2", "3", "2", "1", "2", "2"]} +{"7002248": ["3", "2", "3", "3", "2", "3", "2"]} +{"3005634": ["3", "2", "3", "2", "1", "2", "2"]} +{"3003361": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001011": ["3", "2", "3", "2", "1", "2", "2"]} +{"4003423": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004515": ["3", "2", "3", "2", "2", "2", "2"]} +{"2007356": ["3", "3", "3", "3", "1", "1", "2"]} +{"7003604": ["3", "2", "3", "2", "2", "2", "2"]} +{"1003524": ["3", "2", "3", "2", "1", "2", "2"]} +{"7003506": ["2", "2", "3", "3", "1", "1", "2"]} +{"0006128": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003571": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006990": ["3", "3", "3", "3", "2", "2", "2"]} +{"4003352": ["2", "1", "3", "2", "2", "2", "2"]} +{"4003062": ["3", "2", "3", "2", "3", "3", "3"]} +{"2004248": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002937": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004581": ["2", "2", "3", "3", "2", "2", "2"]} +{"6004493": ["2", "1", "3", "2", "2", "2", "1"]} +{"8003598": ["3", "2", "3", "3", "1", "2", "1"]} +{"4004810": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004762": ["3", "3", "1", "3", "3", "3", "2"]} +{"0004789": ["3", "2", "3", "3", "3", "2", "2"]} +{"0006137": ["3", "2", "3", "2", "1", "2", "2"]} +{"4004340": ["3", "3", "1", "3", "2", "3", "2"]} +{"3003076": ["2", "2", "3", "3", "2", "2", "2"]} +{"8001140": ["2", "2", "3", "1", "1", "2", "1"]} +{"4004023": ["3", "2", "3", "2", "1", "2", "2"]} +{"1006807": ["2", "2", "3", "2", "1", "2", "2"]} +{"0004112": ["3", "3", "3", "2", "1", "2", "2"]} +{"7004652": ["2", "2", "3", "3", "1", "2", "2"]} +{"2004905": ["3", "3", "3", "2", "1", "2", "2"]} +{"0004847": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001474": ["1", "2", "2", "2", "1", "2", "2"]} +{"0004203": ["3", "3", "2", "3", "2", "2", "2"]} +{"1003250": ["3", "2", "3", "2", "2", "2", "2"]} +{"3005834": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004611": ["3", "2", "3", "2", "1", "2", "2"]} +{"5001681": ["3", "3", "1", "3", "1", "2", "2"]} +{"4003615": ["3", "3", "3", "3", "2", "2", "2"]} +{"7002916": ["3", "2", "3", "2", "3", "3", "2"]} +{"8001662": ["2", "1", "3", "2", "2", "2", "1"]} +{"1006085": ["3", "1", "3", "2", "1", "2", "2"]} +{"3003702": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006076": ["3", "2", "3", "2", "2", "2", "2"]} +{"4004418": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003008": ["3", "3", "1", "3", "3", "2", "2"]} +{"2007040": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001976": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005239": ["2", "2", "3", "3", "3", "3", "2"]} +{"2007940": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005159": ["3", "2", "3", "2", "2", "2", "2"]} +{"7002817": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001001": ["2", "2", "3", "2", "2", "2", "2"]} +{"8002808": ["2", "2", "3", "2", "2", "2", "2"]} +{"4004624": ["2", "2", "3", "3", "2", "2", "2"]} +{"6003244": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004441": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004734": ["2", "2", "3", "2", "2", "2", "2"]} +{"6002484": ["2", "2", "3", "2", "2", "2", "2"]} +{"6004792": ["2", "2", "2", "2", "2", "2", "1"]} +{"3004966": ["3", "2", "3", "2", "2", "1", "2"]} +{"3004966": ["3", "2", "3", "3", "2", "2", "2"]} +{"3006656": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006215": ["3", "2", "3", "2", "2", "2", "2"]} +{"0004365": ["2", "2", "2", "2", "2", "2", "1"]} +{"0006646": ["3", "2", "3", "1", "2", "2", "2"]} +{"2003741": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005123": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004393": ["3", "3", "3", "2", "2", "2", "2"]} +{"2004393": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001953": ["3", "3", "1", "3", "2", "2", "2"]} +{"2003965": ["3", "3", "3", "3", "2", "2", "2"]} +{"0006227": ["3", "2", "1", "2", "2", "2", "2"]} +{"0005879": ["3", "3", "1", "3", "1", "2", "1"]} +{"5001032": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004507": ["2", "2", "3", "1", "1", "2", "2"]} +{"1005161": ["3", "2", "3", "2", "3", "2", "2"]} +{"2005543": ["3", "2", "2", "2", "2", "2", "2"]} +{"8003303": ["2", "1", "3", "2", "3", "2", "1"]} +{"8001625": ["1", "2", "3", "2", "2", "1", "1"]} +{"3004755": ["3", "3", "2", "2", "1", "2", "2"]} +{"1004828": ["3", "2", "3", "3", "1", "2", "2"]} +{"0005410": ["3", "3", "1", "3", "2", "2", "2"]} +{"6004451": ["2", "2", "3", "2", "2", "2", "2"]} +{"6002115": ["2", "1", "3", "3", "2", "2", "2"]} +{"0005320": ["3", "2", "3", "2", "2", "2", "2"]} +{"2005316": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003384": ["2", "2", "3", "1", "2", "2", "2"]} +{"2003450": ["3", "2", "3", "2", "1", "3", "2"]} +{"7003904": ["3", "3", "3", "2", "2", "2", "2"]} diff --git a/webpage/res/res_rd1_16k/ans_carol.jsonl b/webpage/res/res_rd1_16k/ans_carol.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_rd1_16k/ans_dave.jsonl b/webpage/res/res_rd1_16k/ans_dave.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_rd1_16k/ans_eve.jsonl b/webpage/res/res_rd1_16k/ans_eve.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_rd1_16k/ans_haonan.jsonl b/webpage/res/res_rd1_16k/ans_haonan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3b6df4d61981f598827b9de42b0ab9062e870839 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_haonan.jsonl @@ -0,0 +1,1039 @@ +{"0004822": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001031": ["3", "3", "3", "3", "1", "3", "2"]} +{"0003453": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003104": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001675": ["3", "3", "3", "3", "3", "1", "2"]} +{"0004512": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003747": ["3", "1", "3", "2", "3", "3", "2"]} +{"2004629": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004415": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003985": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003675": ["2", "1", "3", "1", "3", "2", "2"]} +{"2006276": ["2", "1", "3", "2", "1", "2", "1"]} +{"7004880": ["1", "1", "2", "2", "1", "2", "1"]} +{"4002192": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003340": ["3", "1", "3", "3", "3", "3", "2"]} +{"0003595": ["3", "3", "3", "3", "1", "3", "2"]} +{"0003673": ["2", "3", "1", "3", "1", "3", "2"]} +{"8002954": ["1", "2", "3", "3", "1", "1", "1"]} +{"6003690": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002306": ["3", "3", "2", "3", "1", "3", "2"]} +{"3006700": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006554": ["1", "1", "3", "1", "1", "1", "1"]} +{"4002419": ["3", "3", "1", "3", "1", "3", "1"]} +{"1003393": ["2", "3", "3", "3", "None", "3", "3"]} +{"3006079": ["2", "2", "3", "3", "2", "3", "2"]} +{"3006701": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005441": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005834": ["3", "1", "3", "3", "2", "3", "2"]} +{"6004079": ["1", "1", "3", "1", "1", "1", "1"]} +{"8001012": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002519": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003524": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006031": ["3", "3", "1", "3", "1", "3", "2"]} +{"6002223": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004491": ["2", "3", "2", "3", "3", "3", "2"]} +{"1004113": ["1", "1", "3", "1", "3", "1", "1"]} +{"2006117": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001536": ["1", "3", "3", "3", "3", "3", "2"]} +{"7002595": ["3", "1", "3", "2", "3", "3", "2"]} +{"1004157": ["1", "1", "3", "1", "2", "1", "1"]} +{"4002604": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004586": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004728": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002875": ["3", "1", "3", "2", "3", "1", "2"]} +{"1006347": ["1", "1", "3", "1", "3", "2", "1"]} +{"0005277": ["2", "3", "3", "3", "2", "3", "2"]} +{"1003779": ["3", "1", "3", "1", "1", "1", "1"]} +{"7003485": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004936": ["3", "1", "3", "1", "3", "3", "1"]} +{"6003163": ["1", "3", "2", "3", "1", "1", "1"]} +{"2007524": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004777": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002749": ["1", "1", "3", "3", "1", "3", "1"]} +{"5001867": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006142": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003361": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006149": ["3", "1", "3", "3", "2", "3", "2"]} +{"6002260": ["1", "1", "3", "3", "2", "1", "1"]} +{"0003200": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007399": ["3", "3", "1", "3", "2", "3", "3"]} +{"2005606": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006337": ["3", "3", "2", "3", "1", "3", "2"]} +{"8003397": ["1", "2", "3", "3", "3", "3", "1"]} +{"0006952": ["3", "2", "3", "3", "2", "1", "2"]} +{"4003521": ["2", "3", "2", "1", "2", "2", "2"]} +{"6004402": ["1", "3", "2", "3", "2", "3", "2"]} +{"3004992": ["1", "3", "2", "3", "3", "3", "2"]} +{"8002923": ["1", "1", "3", "3", "1", "1", "1"]} +{"1006207": ["2", "1", "3", "3", "3", "3", "2"]} +{"4004212": ["3", "3", "3", "3", "1", "3", "1"]} +{"7003922": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004165": ["1", "1", "2", "3", "1", "1", "1"]} +{"3006627": ["2", "2", "3", "3", "1", "2", "2"]} +{"6004592": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006279": ["3", "1", "3", "3", "1", "1", "1"]} +{"7002644": ["2", "3", "3", "3", "3", "3", "3"]} +{"7003003": ["1", "1", "1", "1", "1", "1", "1"]} +{"5001900": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003529": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004865": ["1", "1", "3", "3", "None", "1", "1"]} +{"3003991": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006613": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005838": ["1", "1", "1", "3", "1", "1", "1"]} +{"4003447": ["3", "1", "3", "3", "2", "1", "1"]} +{"5001839": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002960": ["1", "3", "3", "3", "1", "1", "1"]} +{"1005564": ["3", "1", "3", "1", "2", "3", "1"]} +{"3006664": ["2", "1", "3", "3", "3", "3", "2"]} +{"2007121": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005874": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005151": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004969": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005721": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004455": ["3", "1", "3", "2", "3", "3", "1"]} +{"0003146": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006257": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004369": ["2", "1", "3", "1", "1", "1", "1"]} +{"8001342": ["3", "1", "3", "1", "3", "1", "2"]} +{"7004439": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001439": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003393": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004865": ["1", "1", "3", "3", "1", "1", "1"]} +{"6002403": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003539": ["3", "3", "3", "3", "1", "3", "1"]} +{"7002606": ["3", "3", "3", "3", "1", "3", "3"]} +{"0005830": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004282": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003978": ["3", "1", "3", "3", "3", "3", "2"]} +{"5001882": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006635": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006298": ["3", "3", "3", "3", "1", "3", "3"]} +{"1006188": ["2", "1", "3", "3", "1", "3", "2"]} +{"5001230": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004230": ["3", "1", "3", "3", "1", "3", "1"]} +{"3004765": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004052": ["3", "3", "3", "3", "2", "1", "3"]} +{"1004209": ["1", "1", "3", "3", "3", "3", "1"]} +{"3005244": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002831": ["3", "3", "3", "3", "2", "1", "3"]} +{"1004456": ["3", "1", "3", "1", "3", "3", "1"]} +{"0003882": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001685": ["3", "3", "3", "3", "1", "1", "2"]} +{"1005419": ["3", "1", "3", "1", "3", "1", "1"]} +{"7002538": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004804": ["3", "3", "3", "3", "3", "1", "2"]} +{"7003073": ["3", "3", "None", "None", "None", "3", "3"]} +{"7003073": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003547": ["3", "3", "1", "3", "1", "3", "3"]} +{"1004049": ["3", "1", "3", "1", "3", "3", "1"]} +{"6004020": ["3", "1", "3", "3", "1", "1", "1"]} +{"3006121": ["2", "3", "3", "3", "3", "2", "2"]} +{"4003864": ["2", "1", "3", "3", "1", "1", "1"]} +{"0006410": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003304": ["2", "1", "3", "1", "3", "3", "1"]} +{"8001943": ["1", "1", "3", "1", "1", "1", "1"]} +{"2005763": ["2", "3", "3", "3", "3", "3", "2"]} +{"7003610": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006049": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004369": ["3", "2", "3", "3", "3", "3", "2"]} +{"7004527": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003493": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003340": ["1", "3", "3", "3", "3", "3", "2"]} +{"6002435": ["3", "2", "3", "2", "3", "3", "2"]} +{"5001067": ["3", "1", "3", "1", "3", "1", "1"]} +{"3006799": ["1", "3", "3", "3", "1", "1", "1"]} +{"8003605": ["1", "3", "3", "3", "3", "3", "1"]} +{"6004899": ["1", "1", "3", "1", "1", "1", "1"]} +{"7004578": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005832": ["2", "3", "3", "3", "3", "2", "2"]} +{"3006599": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003525": ["3", "1", "3", "3", "3", "3", "2"]} +{"0004165": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006714": ["3", "1", "3", "1", "2", "3", "1"]} +{"0003022": ["3", "3", "1", "3", "1", "3", "1"]} +{"6003922": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002329": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003730": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007323": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003857": ["3", "1", "3", "1", "3", "3", "1"]} +{"1006472": ["1", "1", "3", "3", "3", "3", "1"]} +{"6003722": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006811": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004057": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007768": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003458": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003673": ["3", "1", "3", "3", "2", "3", "2"]} +{"7004218": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001697": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002132": ["3", "3", "1", "3", "2", "3", "2"]} +{"2007495": ["3", "3", "3", "3", "1", "3", "3"]} +{"4003836": ["3", "3", "3", "3", "1", "1", "3"]} +{"2004882": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003631": ["3", "1", "3", "3", "1", "3", "2"]} +{"8001915": ["1", "1", "3", "3", "2", "3", "1"]} +{"2004204": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004700": ["3", "1", "3", "3", "3", "3", "2"]} +{"5001204": ["3", "3", "3", "3", "1", "1", "3"]} +{"3005627": ["3", "2", "3", "3", "1", "3", "1"]} +{"6004050": ["3", "1", "3", "1", "3", "3", "1"]} +{"1003090": ["3", "1", "3", "3", "2", "3", "1"]} +{"3004135": ["1", "3", "1", "3", "1", "3", "1"]} +{"4004074": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005195": ["None", "1", "3", "3", "3", "3", "2"]} +{"0005259": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005607": ["3", "3", "2", "3", "2", "1", "2"]} +{"2007922": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002695": ["2", "1", "3", "1", "3", "3", "1"]} +{"1004279": ["3", "1", "3", "3", "3", "3", "3"]} +{"4004513": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006608": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004744": ["3", "3", "3", "3", "1", "3", "2"]} +{"2004744": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003028": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002619": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003289": ["3", "3", "3", "3", "1", "3", "1"]} +{"2004795": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003188": ["3", "1", "3", "3", "3", "3", "1"]} +{"7002407": ["2", "3", "3", "3", "3", "3", "2"]} +{"0003883": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004183": ["3", "3", "1", "3", "3", "3", "2"]} +{"0004183": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003680": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004849": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003921": ["1", "3", "3", "3", "1", "1", "1"]} +{"0003554": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005195": ["3", "1", "3", "3", "3", "3", "2"]} +{"4002504": ["3", "1", "3", "3", "3", "3", "2"]} +{"2005699": ["3", "3", "2", "3", "3", "None", "3"]} +{"2005699": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003903": ["2", "1", "3", "1", "2", "3", "1"]} +{"0004753": ["2", "3", "2", "3", "2", "3", "2"]} +{"2006140": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003375": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003519": ["1", "1", "1", "1", "1", "1", "1"]} +{"6004676": ["1", "1", "3", "3", "1", "1", "1"]} +{"2004803": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003246": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003760": ["2", "1", "3", "3", "3", "3", "2"]} +{"0005704": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004089": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007772": ["1", "3", "2", "3", "2", "3", "2"]} +{"6003256": ["2", "1", "3", "1", "1", "3", "1"]} +{"0006628": ["2", "3", "2", "3", "1", "3", "2"]} +{"0004582": ["2", "3", "1", "3", "1", "2", "1"]} +{"0004582": ["2", "3", "1", "3", "1", "1", "1"]} +{"0004428": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004363": ["2", "3", "3", "3", "1", "3", "2"]} +{"2006698": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004010": ["2", "1", "3", "1", "3", "3", "1"]} +{"0003124": ["3", "3", "3", "3", "1", "1", "2"]} +{"8001727": ["2", "2", "3", "2", "1", "2", "1"]} +{"7003133": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004417": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004055": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001591": ["1", "2", "3", "3", "1", "1", "1"]} +{"4004190": ["2", "3", "3", "3", "3", "3", "3"]} +{"5001771": ["1", "3", "3", "3", "1", "3", "1"]} +{"6003440": ["1", "1", "3", "1", "1", "1", "1"]} +{"4004314": ["3", "1", "3", "1", "3", "3", "2"]} +{"4004314": ["3", "1", "3", "1", "3", "3", "1"]} +{"2007467": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007467": ["3", "3", "3", "3", "1", "1", "3"]} +{"2007467": ["3", "3", "3", "3", "1", "1", "2"]} +{"7002943": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004270": ["3", "3", "3", "3", "1", "3", "3"]} +{"1006504": ["3", "1", "3", "1", "3", "3", "1"]} +{"4003627": ["3", "1", "3", "1", "1", "3", "1"]} +{"1004282": ["3", "1", "3", "1", "3", "3", "1"]} +{"0003407": ["3", "3", "3", "3", "1", "3", "2"]} +{"5001787": ["3", "3", "1", "3", "2", "3", "2"]} +{"0005501": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006699": ["3", "3", "1", "3", "2", "3", "2"]} +{"2005320": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004921": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004652": ["3", "3", "3", "3", "1", "3", "2"]} +{"2006838": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006398": ["2", "1", "3", "1", "3", "3", "1"]} +{"3003046": ["1", "3", "3", "3", "3", "3", "2"]} +{"8003221": ["1", "1", "3", "3", "1", "3", "1"]} +{"1004090": ["3", "1", "3", "1", "3", "3", "2"]} +{"7004275": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003337": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004970": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006053": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004647": ["3", "2", "3", "3", "3", "1", "2"]} +{"4003249": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003249": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004966": ["3", "2", "1", "3", "3", "3", "2"]} +{"2005022": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004905": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004030": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004877": ["2", "3", "3", "3", "3", "3", "2"]} +{"5001116": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001116": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005154": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006594": ["3", "1", "3", "2", "3", "3", "1"]} +{"6002286": ["None", "3", "3", "3", "3", "1", "2"]} +{"6002286": ["3", "3", "3", "3", "3", "1", "2"]} +{"1005299": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006594": ["1", "3", "3", "3", "2", "3", "1"]} +{"1004432": ["3", "1", "3", "1", "3", "3", "1"]} +{"1004118": ["3", "1", "3", "1", "1", "3", "1"]} +{"7004192": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002275": ["1", "1", "3", "1", "3", "3", "1"]} +{"7004837": ["2", "1", "3", "1", "3", "3", "1"]} +{"2005235": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005859": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003435": ["3", "1", "3", "3", "3", "3", "2"]} +{"1004451": ["1", "1", "3", "1", "2", "3", "1"]} +{"2003754": ["3", "2", "2", "3", "1", "3", "1"]} +{"2004091": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001293": ["2", "3", "3", "3", "1", "3", "1"]} +{"8001451": ["2", "1", "3", "3", "1", "1", "1"]} +{"0005675": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004954": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006182": ["3", "1", "3", "1", "3", "3", "1"]} +{"5001220": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004404": ["3", "3", "3", "3", "3", "2", "2"]} +{"0004404": ["3", "3", "3", "3", "1", "2", "1"]} +{"1005284": ["3", "1", "3", "1", "3", "3", "1"]} +{"2004896": ["3", "3", "3", "3", "1", "1", "1"]} +{"1005863": ["1", "1", "3", "1", "3", "3", "1"]} +{"7004393": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003773": ["3", "1", "3", "1", "3", "1", "1"]} +{"4003912": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006070": ["3", "1", "3", "1", "1", "2", "1"]} +{"7004120": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002152": ["2", "3", "3", "3", "3", "3", "2"]} +{"6004460": ["2", "1", "3", "3", "3", "1", "1"]} +{"7003115": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004382": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001559": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005854": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007178": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003712": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003908": ["2", "2", "3", "3", "3", "3", "1"]} +{"1005110": ["2", "3", "3", "3", "3", "1", "2"]} +{"3006591": ["2", "3", "3", "3", "3", "3", "2"]} +{"1006724": ["3", "1", "3", "1", "3", "3", "1"]} +{"8002004": ["3", "3", "3", "3", "3", "2", "2"]} +{"7002527": ["3", "1", "3", "2", "2", "1", "1"]} +{"3005060": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005808": ["3", "3", "3", "3", "3", "1", "2"]} +{"0004445": ["3", "1", "3", "3", "3", "3", "1"]} +{"3006073": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004009": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005095": ["2", "3", "2", "3", "3", "3", "2"]} +{"0003766": ["3", "3", "2", "3", "1", "1", "1"]} +{"1004260": ["3", "1", "3", "1", "3", "3", "1"]} +{"1004842": ["3", "1", "3", "1", "1", "3", "1"]} +{"4003177": ["3", "3", "1", "3", "2", "3", "2"]} +{"1005208": ["1", "1", "3", "1", "1", "1", "1"]} +{"5001325": ["3", "3", "2", "3", "1", "3", "1"]} +{"7002254": ["3", "3", "3", "3", "1", "3", "2"]} +{"3005283": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004502": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004001": ["3", "2", "3", "2", "1", "3", "1"]} +{"0006829": ["1", "1", "3", "1", "3", "3", "1"]} +{"2006175": ["3", "2", "3", "3", "3", "3", "3"]} +{"6003271": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003518": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003091": ["3", "1", "3", "1", "1", "1", "1"]} +{"0005424": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006539": ["3", "3", "3", "3", "3", "1", "2"]} +{"0004401": ["3", "3", "3", "3", "3", "1", "2"]} +{"4003268": ["3", "3", "1", "3", "3", "3", "2"]} +{"4004815": ["3", "1", "3", "1", "1", "1", "1"]} +{"1006949": ["3", "1", "3", "1", "1", "3", "1"]} +{"3006309": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004194": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004292": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007619": ["3", "3", "2", "3", "1", "3", "2"]} +{"1004121": ["1", "1", "3", "1", "3", "1", "1"]} +{"0006117": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004509": ["3", "3", "1", "3", "3", "3", "2"]} +{"7002423": ["2", "1", "3", "2", "1", "3", "1"]} +{"2003489": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002935": ["1", "1", "3", "2", "2", "3", "1"]} +{"7002476": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001886": ["3", "2", "3", "3", "2", "3", "2"]} +{"6002916": ["3", "3", "3", "3", "1", "1", "1"]} +{"7003203": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004842": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002561": ["1", "1", "3", "2", "1", "3", "1"]} +{"7002539": ["2", "1", "3", "2", "3", "3", "2"]} +{"0005436": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005851": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001810": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002285": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004231": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007704": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005322": ["3", "1", "3", "3", "3", "1", "2"]} +{"8002359": ["1", "3", "3", "3", "1", "1", "1"]} +{"2005027": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003931": ["1", "3", "3", "3", "1", "1", "1"]} +{"3006629": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004777": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007149": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002035": ["3", "1", "3", "3", "1", "1", "1"]} +{"0005755": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002687": ["1", "1", "3", "1", "1", "1", "1"]} +{"2003050": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005460": ["3", "1", "3", "1", "3", "1", "1"]} +{"8003281": ["2", "3", "3", "3", "1", "2", "2"]} +{"5001783": ["3", "3", "3", "3", "1", "1", "2"]} +{"3006553": ["1", "3", "3", "3", "1", "1", "1"]} +{"5001537": ["2", "3", "1", "3", "1", "1", "1"]} +{"0003179": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001602": ["3", "3", "3", "3", "2", "2", "2"]} +{"0005063": ["3", "3", "3", "3", "2", "2", "2"]} +{"7002486": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002859": ["1", "3", "3", "3", "3", "3", "3"]} +{"8002861": ["2", "2", "2", "2", "3", "3", "2"]} +{"1006820": ["2", "1", "3", "1", "2", "3", "1"]} +{"1003288": ["3", "1", "3", "1", "2", "3", "1"]} +{"8003545": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003126": ["2", "1", "3", "1", "3", "3", "1"]} +{"2007874": ["3", "3", "2", "3", "2", "2", "2"]} +{"2007172": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003342": ["3", "3", "3", "3", "3", "2", "2"]} +{"3005446": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003405": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004232": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004342": ["3", "1", "3", "1", "2", "1", "1"]} +{"8002205": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002078": ["2", "2", "3", "3", "2", "3", "2"]} +{"2004665": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002305": ["2", "1", "3", "3", "3", "3", "1"]} +{"3005924": ["2", "2", "3", "3", "3", "3", "2"]} +{"0004571": ["1", "3", "3", "3", "1", "3", "1"]} +{"0003120": ["2", "3", "2", "3", "1", "3", "1"]} +{"6003511": ["2", "1", "3", "1", "2", "1", "1"]} +{"2005414": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004051": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004087": ["2", "3", "3", "3", "3", "3", "2"]} +{"8003626": ["2", "3", "3", "1", "1", "1", "1"]} +{"2007637": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003131": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004084": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006065": ["3", "2", "1", "3", "3", "3", "2"]} +{"7004602": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002110": ["None", "2", "3", "3", "1", "1", "1"]} +{"3005487": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001171": ["3", "3", "2", "3", "2", "2", "2"]} +{"6002956": ["2", "3", "3", "1", "2", "3", "2"]} +{"7004488": ["1", "1", "1", "3", "1", "1", "1"]} +{"4003870": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003550": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002110": ["1", "2", "3", "3", "1", "1", "1"]} +{"1006200": ["3", "1", "3", "1", "3", "3", "1"]} +{"8002493": ["1", "3", "3", "3", "3", "3", "2"]} +{"2004408": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005351": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003226": ["3", "1", "3", "3", "3", "1", "1"]} +{"3006255": ["2", "3", "2", "3", "2", "1", "1"]} +{"5001816": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001581": ["2", "2", "3", "3", "2", "3", "2"]} +{"7003872": ["2", "3", "2", "3", "3", "3", "2"]} +{"0004731": ["2", "3", "3", "3", "3", "2", "2"]} +{"0004901": ["2", "3", "2", "3", "3", "3", "2"]} +{"3003277": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004543": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003096": ["2", "2", "3", "3", "3", "3", "2"]} +{"2004045": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002911": ["2", "3", "3", "3", "2", "3", "2"]} +{"1006298": ["2", "1", "3", "1", "2", "3", "1"]} +{"2007217": ["2", "3", "3", "3", "1", "3", "1"]} +{"2006133": ["3", "3", "2", "3", "2", "3", "2"]} +{"2007599": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006461": ["3", "3", "3", "3", "3", "1", "2"]} +{"0003633": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004652": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004744": ["2", "3", "3", "3", "3", "3", "2"]} +{"6004155": ["1", "2", "3", "2", "3", "3", "2"]} +{"1005185": ["2", "1", "3", "2", "2", "3", "1"]} +{"7003788": ["3", "3", "2", "3", "3", "3", "2"]} +{"4004422": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004615": ["2", "3", "2", "3", "1", "1", "1"]} +{"8001922": ["2", "3", "3", "3", "3", "3", "2"]} +{"8002440": ["1", "3", "2", "3", "3", "2", "1"]} +{"4004244": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002437": ["1", "3", "2", "3", "3", "3", "2"]} +{"1003782": ["3", "2", "3", "2", "3", "3", "2"]} +{"6003596": ["2", "2", "3", "3", "3", "3", "1"]} +{"3006537": ["2", "3", "2", "3", "2", "1", "1"]} +{"1004583": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003725": ["3", "3", "3", "1", "2", "3", "2"]} +{"2007966": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004386": ["2", "2", "3", "1", "1", "1", "1"]} +{"7002607": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003894": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003894": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001764": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005241": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003254": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002359": ["3", "3", "3", "3", "2", "2", "3"]} +{"0006275": ["2", "3", "2", "3", "2", "3", "2"]} +{"0005093": ["1", "3", "3", "3", "2", "3", "2"]} +{"1006116": ["3", "1", "3", "2", "3", "3", "2"]} +{"1004328": ["2", "2", "3", "1", "2", "2", "1"]} +{"3004622": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001904": ["2", "3", "2", "3", "3", "3", "2"]} +{"1003108": ["3", "2", "3", "2", "2", "1", "1"]} +{"0006783": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003408": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002881": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005930": ["3", "2", "3", "1", "2", "3", "1"]} +{"2005831": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004029": ["2", "3", "1", "3", "2", "3", "2"]} +{"0005211": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006444": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003509": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006467": ["3", "1", "3", "1", "2", "2", "1"]} +{"8001622": ["1", "2", "3", "1", "1", "1", "1"]} +{"2006110": ["2", "3", "3", "3", "3", "2", "2"]} +{"2003879": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004446": ["3", "1", "3", "1", "3", "1", "1"]} +{"3006540": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002904": ["1", "3", "3", "3", "3", "3", "2"]} +{"3004146": ["2", "2", "3", "2", "2", "2", "2"]} +{"1003512": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005558": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003701": ["2", "3", "3", "3", "3", "2", "2"]} +{"3006600": ["1", "3", "3", "3", "2", "3", "2"]} +{"0006578": ["3", "3", "2", "3", "1", "1", "1"]} +{"7004138": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003700": ["2", "3", "3", "3", "1", "1", "1"]} +{"2005519": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005016": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006373": ["3", "2", "3", "1", "2", "3", "1"]} +{"7003030": ["3", "2", "3", "2", "2", "2", "2"]} +{"0004606": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004920": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001655": ["2", "1", "3", "1", "2", "2", "1"]} +{"2005755": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003343": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005652": ["3", "2", "3", "2", "3", "3", "2"]} +{"2006641": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004056": ["2", "3", "3", "2", "2", "3", "2"]} +{"7003309": ["2", "3", "3", "3", "3", "3", "2"]} +{"4003511": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005099": ["3", "1", "3", "1", "3", "1", "1"]} +{"2004062": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002612": ["3", "3", "3", "1", "2", "2", "2"]} +{"2005044": ["3", "2", "3", "2", "3", "1", "1"]} +{"3003113": ["2", "1", "3", "3", "3", "3", "1"]} +{"4003351": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005097": ["3", "1", "3", "2", "3", "3", "2"]} +{"3004307": ["3", "2", "3", "2", "3", "3", "2"]} +{"6003259": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007655": ["3", "3", "3", "3", "1", "3", "3"]} +{"4003434": ["3", "3", "3", "2", "3", "3", "2"]} +{"3003592": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003948": ["3", "1", "3", "1", "2", "3", "1"]} +{"1006031": ["3", "1", "3", "1", "1", "1", "1"]} +{"8003276": ["2", "3", "3", "1", "3", "3", "2"]} +{"0005371": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002459": ["2", "1", "3", "1", "2", "2", "1"]} +{"4002691": ["3", "3", "3", "3", "3", "2", "2"]} +{"4003156": ["3", "3", "3", "1", "3", "3", "2"]} +{"4002158": ["3", "3", "1", "3", "3", "1", "1"]} +{"2005625": ["3", "3", "3", "3", "3", "1", "2"]} +{"6002897": ["3", "2", "3", "2", "1", "1", "1"]} +{"6002897": ["3", "2", "3", "2", "1", "1", "1"]} +{"2005438": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003850": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003352": ["1", "3", "2", "3", "3", "3", "2"]} +{"1003357": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004899": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003945": ["2", "2", "3", "2", "3", "3", "1"]} +{"5001215": ["3", "3", "3", "3", "3", "1", "2"]} +{"1005916": ["2", "2", "3", "2", "3", "2", "1"]} +{"6002054": ["2", "3", "2", "3", "2", "2", "1"]} +{"1004570": ["3", "2", "3", "2", "3", "3", "1"]} +{"2007856": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003205": ["3", "3", "2", "3", "3", "2", "2"]} +{"8001113": ["1", "3", "2", "1", "3", "1", "1"]} +{"2004349": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006855": ["3", "2", "2", "3", "3", "3", "2"]} +{"7003837": ["3", "2", "3", "2", "3", "3", "2"]} +{"2003580": ["2", "3", "2", "3", "3", "3", "2"]} +{"5001276": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003068": ["3", "2", "2", "2", "3", "3", "2"]} +{"1005503": ["3", "2", "2", "3", "3", "3", "2"]} +{"0004959": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005783": ["2", "1", "3", "1", "3", "2", "1"]} +{"4004379": ["3", "3", "3", "2", "1", "1", "1"]} +{"4002956": ["3", "3", "2", "3", "3", "3", "2"]} +{"4002956": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004685": ["2", "3", "3", "2", "3", "3", "2"]} +{"1006049": ["2", "1", "3", "2", "3", "3", "2"]} +{"0005024": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002740": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002854": ["3", "3", "2", "2", "1", "3", "1"]} +{"1005210": ["3", "2", "3", "2", "1", "3", "2"]} +{"7004850": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006024": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003194": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001781": ["2", "3", "2", "3", "2", "3", "2"]} +{"2005510": ["2", "2", "3", "3", "3", "3", "2"]} +{"0006171": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004357": ["3", "1", "3", "1", "3", "3", "1"]} +{"0004146": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003187": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005626": ["3", "3", "3", "3", "2", "1", "2"]} +{"2005532": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006190": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004447": ["3", "1", "3", "1", "3", "2", "1"]} +{"7004501": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002185": ["2", "2", "3", "3", "2", "2", "1"]} +{"0003558": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007355": ["2", "2", "3", "3", "1", "1", "1"]} +{"8003991": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004970": ["2", "1", "3", "2", "2", "2", "1"]} +{"0003839": ["1", "3", "2", "3", "2", "3", "2"]} +{"8003966": ["1", "3", "3", "3", "1", "1", "1"]} +{"0003916": ["2", "3", "2", "3", "3", "3", "2"]} +{"4002930": ["3", "3", "3", "1", "3", "3", "2"]} +{"2007464": ["3", "3", "2", "3", "3", "1", "2"]} +{"2004414": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006999": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002755": ["1", "2", "3", "1", "3", "3", "1"]} +{"6004216": ["1", "2", "3", "1", "2", "2", "1"]} +{"2005481": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004430": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004065": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006532": ["1", "1", "3", "1", "2", "2", "1"]} +{"7002912": ["2", "3", "2", "3", "3", "3", "2"]} +{"1004512": ["3", "1", "3", "1", "3", "3", "1"]} +{"4004458": ["3", "3", "3", "3", "2", "1", "2"]} +{"4003869": ["3", "2", "3", "3", "2", "1", "2"]} +{"1004886": ["3", "1", "3", "1", "2", "1", "1"]} +{"8003250": ["2", "1", "3", "2", "3", "3", "1"]} +{"2003588": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004119": ["3", "2", "3", "2", "3", "3", "2"]} +{"7004106": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005042": ["3", "3", "3", "2", "2", "3", "2"]} +{"4002794": ["1", "3", "2", "3", "3", "3", "2"]} +{"6002103": ["2", "2", "2", "2", "2", "3", "2"]} +{"0003290": ["3", "3", "1", "3", "1", "1", "1"]} +{"8003274": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003802": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002312": ["2", "1", "3", "1", "3", "3", "1"]} +{"0006741": ["3", "2", "3", "3", "3", "1", "1"]} +{"3005324": ["2", "2", "3", "1", "3", "1", "1"]} +{"0003126": ["3", "3", "3", "3", "2", "1", "1"]} +{"7002807": ["3", "2", "3", "2", "3", "1", "1"]} +{"7004279": ["3", "2", "2", "3", "3", "3", "2"]} +{"4004918": ["3", "3", "1", "3", "3", "2", "2"]} +{"2006837": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005442": ["3", "2", "2", "3", "3", "1", "2"]} +{"4004241": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005064": ["3", "3", "1", "3", "2", "1", "1"]} +{"1004418": ["2", "2", "3", "2", "3", "1", "1"]} +{"6004808": ["1", "2", "2", "3", "3", "1", "1"]} +{"2004020": ["3", "3", "3", "3", "3", "1", "2"]} +{"0006400": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005026": ["3", "2", "3", "3", "3", "2", "2"]} +{"2007541": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006457": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003149": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003915": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006682": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003881": ["3", "3", "1", "3", "2", "1", "1"]} +{"1004665": ["3", "1", "3", "2", "2", "2", "1"]} +{"1006955": ["3", "1", "3", "2", "3", "1", "1"]} +{"3003972": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003793": ["3", "2", "3", "3", "1", "3", "2"]} +{"6002018": ["2", "1", "3", "1", "1", "1", "1"]} +{"2003020": ["2", "2", "3", "3", "2", "3", "2"]} +{"2003962": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005969": ["1", "1", "3", "1", "2", "2", "1"]} +{"3005167": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002771": ["3", "3", "3", "1", "3", "3", "3"]} +{"3006723": ["3", "2", "3", "3", "2", "2", "2"]} +{"0004161": ["2", "3", "3", "3", "3", "2", "2"]} +{"0006851": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004720": ["2", "1", "3", "2", "2", "1", "1"]} +{"4004522": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003336": ["2", "1", "2", "3", "1", "1", "1"]} +{"4003614": ["2", "2", "3", "1", "2", "3", "1"]} +{"2007228": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002027": ["2", "2", "3", "3", "2", "1", "1"]} +{"4004870": ["2", "2", "3", "3", "3", "3", "2"]} +{"6004675": ["1", "2", "3", "3", "2", "2", "1"]} +{"0004435": ["3", "3", "2", "3", "3", "1", "2"]} +{"2007289": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004618": ["3", "2", "3", "3", "3", "3", "2"]} +{"0005224": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004453": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003746": ["2", "3", "3", "3", "2", "2", "2"]} +{"4002141": ["3", "3", "1", "3", "2", "3", "1"]} +{"0003954": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003979": ["1", "3", "3", "1", "2", "2", "1"]} +{"0004765": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002280": ["1", "2", "3", "2", "3", "3", "1"]} +{"5001662": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007625": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006968": ["3", "2", "3", "3", "3", "1", "1"]} +{"4003684": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003575": ["3", "3", "3", "2", "2", "1", "1"]} +{"3005639": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001559": ["1", "3", "3", "3", "3", "3", "1"]} +{"3004049": ["2", "3", "2", "3", "2", "2", "1"]} +{"4003794": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006828": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002619": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005486": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003932": ["1", "2", "3", "3", "1", "2", "1"]} +{"5001887": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003199": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004188": ["3", "3", "3", "3", "3", "2", "2"]} +{"0004971": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003409": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003331": ["1", "3", "2", "3", "2", "3", "1"]} +{"6002229": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005976": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006288": ["3", "2", "3", "2", "3", "3", "1"]} +{"4004098": ["3", "3", "1", "3", "3", "3", "2"]} +{"4002489": ["2", "3", "3", "1", "3", "3", "2"]} +{"6003416": ["1", "1", "3", "3", "3", "3", "1"]} +{"6004740": ["1", "1", "3", "3", "1", "1", "1"]} +{"4003311": ["3", "2", "3", "3", "3", "3", "2"]} +{"7004182": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004869": ["2", "3", "3", "3", "2", "1", "2"]} +{"1006702": ["2", "1", "3", "1", "2", "3", "1"]} +{"1003749": ["3", "2", "3", "3", "3", "3", "2"]} +{"2003931": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005609": ["2", "1", "3", "1", "3", "2", "1"]} +{"1004700": ["3", "2", "3", "1", "2", "3", "2"]} +{"1003280": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006657": ["3", "3", "3", "3", "3", "1", "2"]} +{"3003697": ["1", "3", "1", "3", "1", "1", "1"]} +{"3005568": ["3", "2", "3", "3", "2", "2", "2"]} +{"3004873": ["2", "2", "3", "3", "2", "2", "2"]} +{"7003005": ["3", "3", "1", "3", "1", "3", "1"]} +{"2007329": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006825": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004750": ["3", "2", "3", "3", "3", "3", "2"]} +{"1003638": ["1", "1", "3", "2", "2", "2", "1"]} +{"3003742": ["2", "3", "3", "3", "3", "3", "2"]} +{"6004291": ["2", "2", "3", "3", "3", "3", "2"]} +{"7003325": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002889": ["3", "3", "2", "3", "2", "2", "1"]} +{"7002889": ["3", "3", "2", "3", "1", "2", "1"]} +{"6004350": ["1", "1", "3", "1", "2", "1", "1"]} +{"8002449": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004580": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004279": ["2", "3", "1", "3", "2", "3", "2"]} +{"0005595": ["2", "3", "3", "3", "1", "2", "1"]} +{"1006692": ["1", "1", "3", "2", "1", "1", "1"]} +{"2005273": ["3", "3", "3", "3", "2", "2", "2"]} +{"3006377": ["3", "3", "1", "3", "1", "1", "1"]} +{"3004715": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002780": ["3", "2", "3", "3", "3", "1", "2"]} +{"7002216": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006266": ["3", "3", "2", "3", "2", "1", "2"]} +{"3004164": ["3", "2", "3", "3", "3", "3", "2"]} +{"8001925": ["1", "2", "3", "3", "1", "1", "1"]} +{"7003084": ["2", "2", "3", "3", "1", "2", "2"]} +{"6002851": ["3", "2", "3", "2", "3", "2", "1"]} +{"7003532": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004056": ["3", "3", "2", "3", "3", "2", "2"]} +{"2005717": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001213": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004413": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003282": ["3", "3", "2", "3", "1", "3", "1"]} +{"2004290": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003320": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004245": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005563": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004033": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002666": ["3", "3", "3", "1", "2", "3", "2"]} +{"8001679": ["1", "2", "3", "2", "3", "1", "1"]} +{"1005001": ["1", "1", "3", "1", "3", "2", "1"]} +{"7002055": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002487": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004587": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003206": ["3", "3", "3", "3", "3", "2", "2"]} +{"8002512": ["1", "3", "3", "3", "1", "1", "1"]} +{"0006214": ["2", "3", "3", "3", "3", "3", "3"]} +{"6003689": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003232": ["2", "2", "3", "3", "2", "2", "2"]} +{"7003957": ["3", "2", "3", "1", "3", "3", "2"]} +{"0003621": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006012": ["2", "3", "3", "3", "3", "2", "2"]} +{"2004659": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004659": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004659": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004595": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005685": ["2", "3", "1", "3", "2", "2", "2"]} +{"1005785": ["2", "1", "3", "2", "2", "2", "1"]} +{"3003433": ["None", "3", "3", "3", "3", "3", "3"]} +{"7002741": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003458": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002384": ["1", "2", "3", "3", "2", "3", "1"]} +{"8002397": ["2", "3", "2", "3", "2", "3", "2"]} +{"4003998": ["2", "1", "3", "3", "3", "2", "1"]} +{"3003433": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004147": ["2", "1", "3", "2", "1", "2", "1"]} +{"2004943": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003662": ["2", "2", "3", "3", "2", "3", "1"]} +{"2006415": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003742": ["1", "1", "3", "2", "3", "3", "1"]} +{"0003333": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002894": ["1", "2", "3", "2", "1", "1", "1"]} +{"8001223": ["1", "1", "3", "2", "1", "1", "1"]} +{"1003745": ["1", "1", "3", "3", "3", "3", "1"]} +{"1003745": ["1", "1", "3", "3", "3", "3", "2"]} +{"7004736": ["2", "3", "2", "3", "3", "3", "2"]} +{"8001960": ["1", "3", "2", "3", "3", "3", "2"]} +{"6002689": ["1", "2", "3", "3", "2", "1", "1"]} +{"6003006": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002733": ["2", "3", "2", "3", "2", "3", "2"]} +{"1006584": ["2", "2", "3", "3", "1", "1", "1"]} +{"2006675": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004621": ["2", "2", "3", "2", "1", "1", "1"]} +{"2005209": ["3", "3", "2", "3", "2", "3", "2"]} +{"1003507": ["2", "2", "3", "2", "2", "2", "1"]} +{"1003507": ["2", "2", "3", "2", "2", "1", "1"]} +{"8003368": ["2", "3", "2", "3", "3", "3", "3"]} +{"7004317": ["2", "3", "2", "3", "3", "3", "3"]} +{"6004442": ["1", "3", "2", "3", "2", "2", "1"]} +{"8003249": ["2", "3", "3", "3", "3", "3", "2"]} +{"8002775": ["1", "3", "3", "3", "2", "2", "2"]} +{"7002936": ["2", "2", "3", "3", "3", "3", "2"]} +{"2004521": ["3", "3", "3", "3", "2", "1", "2"]} +{"0004240": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002978": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006908": ["2", "1", "3", "3", "3", "1", "2"]} +{"8003351": ["1", "2", "3", "3", "2", "3", "2"]} +{"2003444": ["3", "2", "3", "3", "3", "2", "2"]} +{"2004033": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005411": ["3", "3", "3", "3", "3", "2", "2"]} +{"2005411": ["2", "3", "3", "3", "3", "2", "2"]} +{"1006670": ["3", "1", "3", "2", "2", "3", "2"]} +{"4002218": ["2", "2", "3", "3", "3", "2", "2"]} +{"6002846": ["1", "3", "3", "3", "2", "2", "2"]} +{"3006959": ["3", "3", "1", "3", "2", "3", "2"]} +{"3005052": ["1", "3", "3", "2", "3", "3", "3"]} +{"3005123": ["1", "2", "3", "1", "2", "2", "1"]} +{"2004928": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004309": ["2", "2", "3", "3", "3", "3", "2"]} +{"8002487": ["1", "2", "3", "3", "3", "3", "2"]} +{"7003771": ["3", "2", "3", "3", "3", "3", "2"]} +{"1003660": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003619": ["2", "1", "3", "2", "3", "2", "1"]} +{"7002708": ["3", "3", "2", "3", "3", "2", "2"]} +{"2007793": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005562": ["2", "3", "3", "3", "2", "1", "2"]} +{"2003078": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003078": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001640": ["3", "3", "3", "3", "2", "1", "1"]} +{"3003489": ["3", "3", "3", "1", "2", "3", "2"]} +{"2007460": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004537": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002165": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003887": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001199": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003286": ["1", "2", "3", "3", "1", "1", "1"]} +{"3004832": ["1", "3", "1", "3", "1", "1", "1"]} +{"3005393": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006666": ["1", "2", "3", "3", "2", "2", "1"]} +{"4002019": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003910": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003910": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003858": ["3", "3", "1", "3", "3", "3", "2"]} +{"0005243": ["2", "3", "1", "3", "3", "3", "2"]} +{"0006860": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006860": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007230": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005481": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003488": ["2", "2", "3", "3", "2", "2", "1"]} +{"8001937": ["1", "2", "3", "3", "3", "3", "1"]} +{"6004331": ["1", "1", "3", "1", "2", "1", "1"]} +{"3003848": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004164": ["3", "2", "3", "3", "2", "2", "2"]} +{"7004331": ["2", "3", "2", "2", "3", "2", "2"]} +{"3005963": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004126": ["3", "2", "2", "2", "2", "3", "3"]} +{"8001402": ["1", "2", "3", "2", "3", "3", "2"]} +{"0006223": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006678": ["3", "1", "3", "1", "3", "2", "1"]} +{"1006772": ["1", "1", "3", "1", "3", "3", "1"]} +{"4004236": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004189": ["3", "1", "3", "1", "3", "3", "1"]} +{"3006825": ["2", "3", "3", "3", "2", "3", "2"]} +{"6004274": ["2", "2", "3", "1", "2", "1", "1"]} +{"7003568": ["2", "2", "3", "3", "1", "1", "1"]} +{"0004664": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002644": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004209": ["1", "2", "3", "3", "3", "3", "2"]} +{"2003806": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004060": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006145": ["2", "3", "3", "2", "3", "1", "1"]} +{"7002913": ["3", "None", "3", "3", "2", "2", "2"]} +{"7002913": ["3", "2", "3", "3", "2", "2", "2"]} +{"2005325": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003439": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004116": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001727": ["3", "3", "3", "2", "2", "2", "2"]} +{"0004825": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004251": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004226": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004832": ["1", "3", "2", "3", "2", "2", "1"]} +{"7002235": ["3", "2", "3", "3", "3", "3", "2"]} +{"6004872": ["1", "3", "2", "3", "3", "1", "1"]} +{"4002838": ["3", "3", "3", "3", "3", "2", "2"]} +{"1006058": ["3", "2", "3", "1", "3", "3", "1"]} +{"3003775": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006292": ["3", "1", "3", "2", "3", "3", "2"]} +{"4004408": ["3", "3", "3", "1", "3", "3", "2"]} +{"2007332": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002134": ["3", "3", "2", "2", "3", "3", "2"]} +{"2005953": ["3", "2", "3", "3", "3", "2", "2"]} +{"1006481": ["2", "1", "3", "1", "3", "2", "1"]} +{"2003979": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004331": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005767": ["3", "1", "3", "1", "3", "3", "1"]} +{"4004261": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004261": ["3", "3", "1", "3", "2", "3", "3"]} +{"3004827": ["2", "3", "2", "3", "2", "3", "2"]} +{"3005909": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003277": ["3", "1", "3", "1", "2", "3", "1"]} +{"3006814": ["2", "2", "2", "2", "2", "1", "1"]} +{"7003537": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005363": ["1", "3", "3", "3", "2", "2", "1"]} +{"3004531": ["1", "1", "3", "3", "1", "1", "1"]} +{"3004644": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005298": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006670": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006670": ["3", "3", "3", "3", "2", "3", "2"]} +{"8002050": ["2", "2", "3", "2", "2", "3", "1"]} +{"6004276": ["1", "3", "3", "3", "2", "2", "1"]} +{"7004624": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003870": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005784": ["3", "2", "3", "3", "3", "3", "2"]} +{"6002640": ["2", "1", "3", "1", "2", "1", "1"]} +{"3005072": ["2", "3", "3", "3", "2", "3", "2"]} +{"0005853": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004828": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007696": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002384": ["1", "1", "3", "2", "2", "2", "1"]} +{"0004722": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002418": ["2", "3", "3", "3", "3", "2", "3"]} +{"7004001": ["2", "3", "3", "2", "3", "3", "2"]} +{"0004237": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001956": ["1", "2", "3", "2", "1", "1", "1"]} +{"0003890": ["3", "3", "3", "3", "3", "2", "2"]} +{"2005738": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003256": ["1", "3", "3", "3", "2", "1", "1"]} +{"8001093": ["2", "3", "2", "3", "3", "1", "1"]} +{"6002647": ["2", "3", "1", "3", "1", "3", "1"]} +{"1004467": ["2", "2", "3", "2", "2", "2", "2"]} +{"0006947": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002777": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005162": ["2", "3", "2", "3", "2", "2", "1"]} +{"4003158": ["2", "3", "3", "1", "2", "1", "1"]} +{"8003473": ["1", "2", "3", "3", "3", "3", "1"]} +{"3004825": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004862": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002253": ["2", "2", "3", "3", "3", "3", "3"]} +{"1004207": ["1", "1", "3", "1", "2", "1", "1"]} +{"8001220": ["1", "2", "3", "1", "2", "3", "1"]} +{"3003416": ["2", "3", "2", "3", "3", "3", "2"]} +{"1004984": ["3", "2", "3", "2", "2", "3", "2"]} +{"2007423": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003828": ["1", "2", "3", "2", "1", "2", "1"]} +{"6002441": ["2", "2", "3", "1", "3", "2", "2"]} +{"4002802": ["2", "2", "3", "1", "1", "1", "1"]} +{"6004700": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003879": ["2", "3", "3", "3", "3", "3", "2"]} +{"2006004": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007433": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006773": ["2", "3", "3", "1", "2", "2", "1"]} +{"3004081": ["2", "3", "3", "2", "2", "3", "2"]} +{"2005346": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006694": ["3", "3", "1", "3", "2", "1", "2"]} +{"6004065": ["2", "2", "3", "3", "2", "3", "2"]} +{"4002713": ["2", "3", "3", "3", "2", "2", "2"]} +{"4004775": ["2", "3", "3", "2", "3", "2", "2"]} +{"6004314": ["1", "3", "3", "1", "3", "3", "2"]} +{"2007364": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003987": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002914": ["2", "3", "3", "3", "3", "3", "2"]} +{"8001535": ["1", "2", "3", "3", "3", "2", "1"]} +{"3003711": ["2", "3", "3", "3", "2", "2", "2"]} +{"4002911": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004982": ["2", "3", "2", "3", "3", "3", "2"]} +{"1005130": ["2", "2", "3", "2", "3", "3", "2"]} +{"4002782": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003529": ["2", "3", "3", "3", "3", "3", "2"]} +{"8002212": ["1", "2", "3", "2", "3", "3", "1"]} +{"8002212": ["1", "2", "3", "2", "3", "2", "1"]} +{"4004317": ["2", "3", "3", "3", "1", "2", "2"]} +{"7002245": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005752": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001007": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004990": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004651": ["2", "2", "3", "3", "3", "1", "1"]} +{"1003731": ["2", "1", "3", "2", "3", "3", "1"]} +{"0003176": ["2", "3", "3", "3", "1", "1", "1"]} +{"1004797": ["3", "1", "3", "1", "2", "2", "1"]} +{"4002890": ["2", "3", "3", "1", "3", "3", "1"]} +{"4002890": ["2", "3", "3", "1", "2", "3", "1"]} +{"3004805": ["3", "3", "2", "3", "1", "3", "2"]} +{"8003560": ["2", "3", "3", "2", "3", "3", "2"]} +{"0006280": ["2", "3", "3", "3", "2", "2", "2"]} +{"7003437": ["2", "3", "2", "3", "3", "3", "2"]} +{"7003437": ["2", "3", "2", "3", "3", "3", "2"]} +{"8001063": ["1", "2", "2", "3", "3", "3", "2"]} +{"0006382": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003675": ["2", "3", "3", "3", "2", "3", "2"]} +{"4003418": ["2", "3", "3", "1", "3", "3", "2"]} +{"6002320": ["1", "3", "3", "1", "3", "3", "2"]} +{"1005251": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002868": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003478": ["1", "2", "3", "1", "3", "2", "1"]} +{"3004623": ["2", "2", "3", "2", "3", "3", "2"]} +{"3006343": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006641": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004502": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007303": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005310": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002401": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005030": ["3", "2", "3", "3", "3", "3", "2"]} +{"2005030": ["3", "2", "3", "3", "3", "2", "2"]} +{"2006864": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004770": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006281": ["1", "3", "2", "3", "1", "3", "1"]} +{"0006281": ["1", "3", "2", "3", "1", "3", "1"]} +{"2005055": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004162": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006347": ["3", "3", "2", "3", "2", "3", "3"]} +{"0003786": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002748": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004103": ["3", "3", "3", "2", "2", "3", "2"]} +{"6002795": ["2", "2", "3", "3", "1", "2", "1"]} +{"1004452": ["1", "1", "3", "3", "2", "2", "1"]} +{"3005701": ["2", "3", "1", "3", "1", "3", "1"]} +{"1006696": ["2", "1", "3", "2", "2", "3", "1"]} +{"1006696": ["2", "1", "3", "2", "2", "3", "1"]} +{"4003582": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003735": ["1", "2", "3", "2", "3", "2", "1"]} +{"7004075": ["2", "2", "3", "3", "3", "2", "2"]} +{"0006176": ["2", "3", "1", "3", "2", "2", "2"]} +{"1005026": ["2", "1", "3", "2", "3", "3", "1"]} +{"3003426": ["1", "2", "3", "3", "3", "2", "1"]} +{"3006334": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005153": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004793": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003676": ["2", "2", "3", "2", "3", "3", "1"]} +{"3004337": ["2", "3", "1", "3", "1", "3", "1"]} +{"1005994": ["2", "2", "3", "3", "3", "3", "1"]} +{"3004651": ["3", "3", "3", "1", "3", "3", "2"]} +{"3004651": ["3", "3", "3", "1", "3", "3", "2"]} +{"6003967": ["1", "3", "3", "1", "2", "3", "1"]} +{"8002017": ["2", "3", "2", "3", "3", "3", "2"]} +{"7004698": ["3", "3", "2", "3", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_kai.jsonl b/webpage/res/res_rd1_16k/ans_kai.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7df3c0e0a9cab2ef641ddade6651714be745fb4d --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_kai.jsonl @@ -0,0 +1,1033 @@ +{"4002630": ["2", "2", "3", "3", "2", "3", "2"]} +{"0006038": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001057": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004742": ["2", "2", "3", "3", "1", "3", "2"]} +{"4004262": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004129": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004224": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001356": ["2", "2", "3", "2", "3", "3", "2"]} +{"6003415": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002596": ["3", "2", "2", "3", "1", "3", "2"]} +{"4004472": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004596": ["1", "1", "2", "1", "3", "3", "1"]} +{"0003960": ["2", "3", "2", "3", "2", "3", "2"]} +{"8001564": ["2", "2", "2", "2", "1", "1", "1"]} +{"3006725": ["3", "1", "2", "2", "1", "2", "1"]} +{"2003780": ["3", "2", "3", "3", "3", "3", "3"]} +{"8002669": ["1", "2", "2", "1", "2", "3", "1"]} +{"3004036": ["3", "3", "2", "3", "1", "3", "2"]} +{"8002473": ["2", "2", "2", "3", "2", "3", "2"]} +{"2006753": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001336": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005459": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004229": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001785": ["2", "2", "3", "3", "3", "3", "2"]} +{"4003506": ["3", "3", "2", "3", "2", "3", "2"]} +{"7003116": ["3", "2", "2", "3", "2", "3", "2"]} +{"2003467": ["3", "3", "2", "3", "1", "3", "2"]} +{"3003812": ["2", "3", "3", "3", "2", "3", "2"]} +{"4003887": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003242": ["2", "2", "3", "3", "2", "3", "2"]} +{"2005823": ["3", "2", "3", "3", "3", "3", "2"]} +{"7003916": ["3", "2", "2", "3", "2", "3", "2"]} +{"3006060": ["3", "2", "3", "3", "1", "3", "2"]} +{"0004833": ["2", "3", "2", "3", "3", "3", "2"]} +{"4004167": ["3", "2", "3", "3", "2", "3", "2"]} +{"2005933": ["3", "3", "3", "3", "3", "2", "2"]} +{"3006571": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006172": ["2", "3", "2", "3", "3", "3", "2"]} +{"0005339": ["2", "2", "3", "3", "3", "3", "2"]} +{"8001267": ["2", "2", "3", "2", "3", "3", "2"]} +{"3004717": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003564": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004833": ["3", "3", "3", "3", "3", "2", "2"]} +{"0006391": ["3", "3", "2", "3", "1", "3", "2"]} +{"4003049": ["3", "1", "3", "3", "2", "3", "2"]} +{"4003049": ["3", "1", "3", "3", "2", "3", "1"]} +{"1005129": ["2", "2", "3", "2", "3", "3", "1"]} +{"4004197": ["3", "2", "3", "3", "3", "3", "2"]} +{"6002698": ["3", "1", "3", "3", "3", "3", "1"]} +{"2005591": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006913": ["3", "2", "3", "3", "2", "3", "2"]} +{"1003929": ["2", "1", "3", "2", "3", "3", "1"]} +{"3006395": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002396": ["3", "1", "3", "3", "2", "2", "1"]} +{"4002452": ["2", "1", "3", "3", "2", "3", "1"]} +{"2006451": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004646": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003888": ["3", "2", "2", "3", "2", "2", "2"]} +{"6004498": ["2", "1", "3", "2", "2", "2", "1"]} +{"3005448": ["2", "2", "2", "3", "2", "3", "2"]} +{"3006980": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007569": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001641": ["3", "3", "2", "3", "2", "2", "2"]} +{"0006519": ["3", "3", "2", "3", "3", "3", "2"]} +{"8001176": ["2", "2", "3", "2", "2", "3", "2"]} +{"3004479": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001352": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002994": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004482": ["2", "1", "3", "2", "2", "2", "1"]} +{"4004490": ["3", "2", "3", "3", "1", "3", "2"]} +{"3003468": ["3", "2", "3", "3", "2", "3", "2"]} +{"4004914": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007550": ["2", "3", "2", "3", "3", "3", "2"]} +{"0005322": ["3", "3", "2", "3", "3", "3", "2"]} +{"0004852": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004775": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001153": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003942": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003420": ["2", "3", "3", "2", "3", "3", "2"]} +{"4002946": ["3", "1", "3", "3", "2", "3", "1"]} +{"2006386": ["3", "3", "2", "3", "2", "3", "2"]} +{"7004971": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007166": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004389": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003308": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005239": ["3", "3", "2", "3", "2", "3", "2"]} +{"8001277": ["2", "1", "3", "2", "1", "3", "1"]} +{"2006978": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001015": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002302": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004525": ["2", "1", "None", "2", "2", "3", "1"]} +{"0003253": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004248": ["2", "1", "3", "3", "3", "3", "1"]} +{"6002010": ["2", "1", "3", "3", "2", "3", "1"]} +{"2004376": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006262": ["3", "3", "3", "3", "3", "2", "2"]} +{"6004797": ["3", "3", "2", "3", "1", "3", "1"]} +{"2006358": ["3", "2", "3", "3", "2", "2", "2"]} +{"5001463": ["3", "3", "2", "3", "3", "3", "2"]} +{"1006832": ["3", "1", "3", "3", "3", "3", "1"]} +{"3004198": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004525": ["2", "1", "3", "2", "2", "3", "1"]} +{"3003977": ["3", "2", "3", "3", "3", "3", "2"]} +{"1003869": ["2", "2", "3", "3", "3", "3", "2"]} +{"2003990": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006755": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002787": ["3", "2", "3", "3", "1", "3", "2"]} +{"4002991": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004034": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003262": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005906": ["2", "1", "3", "2", "3", "3", "1"]} +{"2004551": ["3", "2", "2", "3", "2", "2", "2"]} +{"0005843": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005553": ["2", "3", "3", "3", "1", "2", "1"]} +{"0006041": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005697": ["2", "2", "3", "2", "3", "3", "1"]} +{"7004025": ["3", "3", "3", "2", "3", "3", "2"]} +{"0005650": ["3", "2", "3", "3", "3", "3", "2"]} +{"8001309": ["2", "2", "3", "3", "3", "3", "2"]} +{"0003586": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002597": ["2", "1", "3", "2", "2", "3", "1"]} +{"8003054": ["2", "2", "3", "2", "2", "3", "2"]} +{"2005945": ["2", "2", "3", "3", "3", "3", "2"]} +{"4003267": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003432": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005453": ["2", "1", "3", "2", "2", "3", "1"]} +{"8003917": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004112": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005891": ["2", "2", "3", "3", "3", "3", "2"]} +{"2003719": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004747": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007661": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004906": ["3", "2", "2", "3", "3", "3", "2"]} +{"0003320": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003169": ["3", "2", "2", "3", "1", "3", "1"]} +{"1004360": ["2", "1", "3", "2", "3", "3", "1"]} +{"1004678": ["2", "1", "3", "2", "3", "3", "2"]} +{"4002450": ["3", "2", "3", "3", "3", "2", "2"]} +{"6002502": ["2", "2", "3", "3", "2", "3", "2"]} +{"0005779": ["2", "3", "3", "2", "3", "3", "2"]} +{"2004687": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004555": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001304": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003530": ["2", "2", "3", "2", "3", "3", "1"]} +{"3003170": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003500": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005610": ["2", "3", "3", "3", "3", "3", "2"]} +{"1006480": ["3", "2", "3", "2", "3", "3", "2"]} +{"2003516": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005227": ["2", "3", "3", "3", "3", "3", "2"]} +{"1004239": ["1", "1", "3", "2", "3", "3", "1"]} +{"8002222": ["2", "2", "3", "3", "2", "3", "2"]} +{"1003970": ["1", "2", "3", "1", "3", "3", "1"]} +{"0003843": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005404": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002993": ["3", "3", "3", "3", "3", "2", "2"]} +{"6003662": ["3", "2", "2", "3", "2", "3", "1"]} +{"1006096": ["2", "2", "3", "2", "3", "3", "1"]} +{"8003484": ["2", "3", "3", "2", "2", "3", "1"]} +{"4002022": ["2", "1", "3", "2", "None", "2", "1"]} +{"0005030": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004813": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002022": ["2", "1", "3", "2", "2", "2", "1"]} +{"0003947": ["3", "3", "2", "3", "2", "3", "2"]} +{"7003409": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006098": ["1", "1", "3", "2", "2", "3", "1"]} +{"3005335": ["3", "2", "3", "3", "1", "3", "1"]} +{"2006392": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003182": ["3", "3", "1", "3", "3", "3", "2"]} +{"4003857": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004013": ["3", "3", "1", "3", "2", "3", "2"]} +{"2005503": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006230": ["2", "1", "3", "2", "2", "3", "1"]} +{"0004695": ["2", "3", "2", "3", "3", "3", "3"]} +{"7003842": ["3", "3", "2", "3", "3", "3", "2"]} +{"4002647": ["3", "2", "3", "3", "2", "3", "2"]} +{"6004989": ["3", "2", "3", "3", "3", "3", "3"]} +{"0005078": ["3", "3", "2", "3", "3", "3", "2"]} +{"7004748": ["3", "2", "3", "2", "2", "3", "2"]} +{"4002264": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005012": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002356": ["2", "1", "3", "2", "2", "3", "1"]} +{"6002443": ["2", "3", "3", "3", "2", "3", "2"]} +{"0006536": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004508": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002099": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002187": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002109": ["3", "1", "3", "2", "3", "3", "1"]} +{"2007586": ["3", "3", "1", "3", "3", "3", "2"]} +{"8002087": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003839": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005322": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006349": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003805": ["2", "1", "3", "3", "3", "3", "1"]} +{"6003004": ["3", "1", "3", "2", "2", "3", "1"]} +{"7002079": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003307": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001624": ["3", "1", "3", "3", "2", "3", "1"]} +{"4004246": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003883": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005597": ["3", "3", "1", "3", "3", "3", "2"]} +{"0003920": ["None", "3", "2", "3", "1", "3", "2"]} +{"6002187": ["2", "2", "3", "2", "1", "3", "2"]} +{"0003920": ["3", "3", "2", "3", "1", "3", "2"]} +{"8002760": ["2", "2", "3", "3", "2", "3", "2"]} +{"8001351": ["3", "1", "3", "3", "2", "3", "1"]} +{"1003160": ["1", "1", "3", "2", "3", "3", "1"]} +{"1003160": ["1", "1", "3", "2", "3", "2", "1"]} +{"3005622": ["3", "3", "1", "3", "2", "3", "1"]} +{"6004340": ["2", "2", "3", "2", "2", "3", "1"]} +{"2005710": ["3", "3", "2", "3", "3", "3", "2"]} +{"1003649": ["1", "1", "3", "1", "3", "3", "1"]} +{"3005802": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003641": ["3", "2", "3", "3", "3", "3", "3"]} +{"8002034": ["2", "1", "3", "2", "2", "2", "1"]} +{"7002015": ["3", "2", "3", "2", "3", "3", "2"]} +{"7002261": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003439": ["3", "1", "3", "3", "2", "3", "2"]} +{"1005899": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003969": ["2", "2", "3", "3", "2", "3", "2"]} +{"8003795": ["2", "3", "3", "3", "1", "3", "2"]} +{"0006388": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004007": ["3", "3", "1", "3", "1", "3", "2"]} +{"2007961": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006840": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004183": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003104": ["1", "1", "3", "2", "2", "3", "1"]} +{"3004612": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005698": ["2", "3", "2", "3", "3", "3", "2"]} +{"6002393": ["3", "1", "3", "2", "3", "3", "1"]} +{"2007369": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001105": ["2", "3", "3", "3", "2", "3", "2"]} +{"8002421": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004440": ["2", "1", "3", "2", "1", "3", "1"]} +{"4002625": ["3", "2", "3", "3", "2", "3", "2"]} +{"6004875": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002775": ["2", "2", "3", "3", "2", "3", "2"]} +{"3005571": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005174": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004645": ["3", "1", "3", "3", "3", "3", "1"]} +{"3006266": ["3", "2", "3", "2", "3", "3", "2"]} +{"6003748": ["2", "1", "3", "2", "2", "2", "1"]} +{"6004803": ["2", "1", "3", "2", "2", "3", "1"]} +{"3005793": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007125": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002046": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004306": ["1", "2", "3", "2", "3", "3", "1"]} +{"1006666": ["3", "1", "3", "2", "3", "3", "1"]} +{"1006501": ["1", "1", "3", "2", "2", "3", "1"]} +{"3004530": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001108": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002714": ["3", "2", "3", "3", "3", "3", "2"]} +{"8002752": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001557": ["3", "3", "1", "3", "1", "3", "2"]} +{"2007685": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005714": ["3", "2", "3", "3", "3", "2", "2"]} +{"1004798": ["2", "1", "3", "2", "3", "3", "1"]} +{"1005945": ["3", "2", "3", "2", "2", "3", "2"]} +{"4003400": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006860": ["2", "1", "3", "2", "2", "3", "1"]} +{"7002904": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001839": ["2", "1", "3", "2", "2", "3", "1"]} +{"3006017": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004341": ["2", "1", "3", "2", "2", "3", "1"]} +{"6004732": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006606": ["2", "1", "3", "2", "3", "3", "1"]} +{"0005955": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004800": ["3", "3", "1", "3", "2", "3", "2"]} +{"8003925": ["2", "2", "3", "2", "1", "3", "1"]} +{"3006384": ["3", "2", "3", "3", "3", "3", "2"]} +{"4004122": ["3", "2", "3", "3", "3", "3", "2"]} +{"8001237": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004479": ["2", "2", "3", "3", "3", "3", "2"]} +{"7002793": ["3", "3", "2", "3", "3", "3", "2"]} +{"0005682": ["3", "3", "1", "3", "3", "3", "2"]} +{"0004573": ["2", "1", "3", "3", "3", "3", "1"]} +{"7002068": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002490": ["3", "2", "3", "2", "2", "3", "1"]} +{"1003717": ["1", "2", "3", "2", "2", "3", "1"]} +{"1004821": ["1", "1", "3", "2", "3", "3", "1"]} +{"5001338": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003011": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006642": ["3", "3", "1", "3", "2", "3", "2"]} +{"1005590": ["1", "1", "3", "2", "2", "3", "1"]} +{"4004342": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005562": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003743": ["3", "2", "3", "3", "3", "3", "2"]} +{"8002242": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002045": ["3", "3", "3", "3", "3", "3", "2"]} +{"6002546": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005303": ["3", "2", "3", "3", "3", "3", "3"]} +{"7002198": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003176": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001472": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003382": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002184": ["3", "1", "3", "3", "3", "3", "2"]} +{"2006011": ["3", "3", "3", "2", "2", "3", "2"]} +{"0005618": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006736": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003423": ["1", "1", "3", "2", "3", "2", "2"]} +{"1003423": ["1", "1", "3", "2", "3", "2", "1"]} +{"2003554": ["3", "3", "2", "3", "2", "3", "2"]} +{"7004879": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003327": ["1", "1", "3", "2", "2", "3", "1"]} +{"5001476": ["3", "3", "2", "3", "1", "3", "2"]} +{"7002562": ["3", "3", "2", "3", "3", "3", "2"]} +{"3006888": ["3", "3", "3", "3", "1", "3", "1"]} +{"0006355": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003939": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004589": ["3", "1", "3", "2", "3", "3", "2"]} +{"6004213": ["3", "1", "3", "2", "2", "3", "1"]} +{"4003497": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003133": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005178": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001593": ["2", "1", "3", "2", "2", "3", "1"]} +{"2004873": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005264": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006669": ["1", "1", "3", "2", "3", "3", "1"]} +{"7002680": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004273": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004664": ["1", "1", "3", "2", "3", "3", "1"]} +{"3003127": ["2", "2", "3", "3", "2", "3", "2"]} +{"0006261": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002458": ["3", "1", "3", "2", "2", "3", "1"]} +{"4004876": ["2", "3", "3", "3", "2", "3", "2"]} +{"2004258": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004694": ["3", "3", "3", "3", "2", "2", "2"]} +{"2006069": ["3", "3", "2", "3", "3", "3", "2"]} +{"6003723": ["3", "1", "3", "2", "2", "3", "2"]} +{"7002765": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002593": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001530": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004223": ["2", "2", "3", "2", "3", "3", "2"]} +{"5001909": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002938": ["1", "1", "3", "2", "1", "3", "2"]} +{"0003298": ["2", "3", "1", "3", "3", "3", "2"]} +{"8003703": ["3", "2", "3", "2", "2", "3", "1"]} +{"6003296": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005192": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004896": ["1", "1", "3", "2", "2", "3", "1"]} +{"6002978": ["2", "1", "3", "2", "2", "3", "1"]} +{"1005043": ["1", "1", "3", "2", "3", "3", "1"]} +{"1003055": ["3", "2", "3", "2", "2", "3", "2"]} +{"0003337": ["None", "2", "3", "3", "3", "3", "2"]} +{"7002710": ["2", "3", "2", "3", "3", "3", "2"]} +{"2007302": ["None", "3", "2", "3", "2", "3", "2"]} +{"8002314": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005604": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003499": ["2", "2", "3", "2", "3", "3", "2"]} +{"6002721": ["2", "2", "3", "2", "1", "3", "2"]} +{"2006586": ["2", "2", "2", "2", "2", "3", "1"]} +{"4003464": ["2", "1", "3", "2", "3", "3", "1"]} +{"4003248": ["3", "2", "3", "3", "3", "3", "2"]} +{"6003947": ["2", "2", "3", "2", "2", "3", "1"]} +{"2004858": ["3", "3", "2", "3", "2", "3", "2"]} +{"1003366": ["1", "1", "3", "2", "3", "3", "1"]} +{"2003650": ["3", "1", "2", "2", "3", "3", "2"]} +{"0006249": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006404": ["2", "1", "3", "2", "2", "3", "1"]} +{"4003891": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003253": ["2", "1", "3", "2", "2", "3", "1"]} +{"3004562": ["2", "2", "3", "2", "2", "3", "2"]} +{"8003466": ["2", "2", "3", "2", "2", "3", "2"]} +{"0003337": ["2", "3", "3", "3", "3", "3", "2"]} +{"2007302": ["3", "3", "2", "3", "2", "3", "2"]} +{"7003830": ["2", "2", "3", "2", "2", "3", "1"]} +{"8003911": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004313": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003071": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003222": ["1", "1", "3", "2", "2", "3", "1"]} +{"7004012": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003826": ["2", "2", "3", "3", "3", "3", "2"]} +{"3004101": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004456": ["3", "3", "1", "3", "2", "3", "2"]} +{"7002688": ["2", "2", "3", "3", "2", "3", "2"]} +{"0005171": ["2", "2", "3", "3", "3", "3", "2"]} +{"0005269": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006398": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001009": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003048": ["3", "2", "3", "3", "1", "3", "2"]} +{"2004447": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003823": ["2", "2", "3", "2", "3", "2", "1"]} +{"3003210": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006668": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004343": ["3", "1", "3", "2", "3", "3", "1"]} +{"2004918": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005901": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004549": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004745": ["3", "3", "1", "3", "2", "3", "2"]} +{"6003569": ["2", "2", "3", "2", "2", "3", "2"]} +{"7003034": ["3", "3", "2", "3", "2", "3", "2"]} +{"7002429": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001526": ["3", "3", "2", "3", "2", "3", "2"]} +{"7004801": ["2", "2", "3", "2", "2", "3", "2"]} +{"2004324": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005856": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002680": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005395": ["2", "2", "3", "2", "3", "3", "2"]} +{"4002688": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003479": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003391": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004263": ["3", "3", "2", "3", "3", "3", "2"]} +{"4004199": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003263": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004692": ["3", "3", "3", "1", "3", "3", "3"]} +{"0006073": ["3", "3", "1", "3", "3", "3", "2"]} +{"5001442": ["3", "3", "1", "3", "2", "3", "2"]} +{"2006332": ["3", "2", "3", "3", "1", "3", "1"]} +{"1003864": ["2", "1", "3", "2", "3", "3", "1"]} +{"0004977": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001858": ["2", "2", "3", "2", "1", "3", "1"]} +{"7002568": ["3", "2", "3", "2", "3", "3", "1"]} +{"7003902": ["2", "2", "3", "2", "2", "3", "2"]} +{"2007024": ["3", "2", "3", "3", "3", "3", "2"]} +{"8003963": ["3", "3", "3", "2", "3", "3", "2"]} +{"6003910": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003812": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006987": ["1", "1", "3", "2", "3", "3", "1"]} +{"2003646": ["3", "3", "3", "3", "3", "1", "1"]} +{"2005475": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006765": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005389": ["3", "2", "3", "3", "2", "3", "2"]} +{"1006590": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005263": ["2", "1", "None", "1", "3", "3", "1"]} +{"3004829": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002058": ["3", "1", "3", "3", "3", "3", "2"]} +{"7004904": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004358": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001522": ["2", "2", "3", "2", "1", "3", "1"]} +{"1003523": ["1", "1", "3", "2", "2", "3", "1"]} +{"3005263": ["2", "1", "3", "1", "3", "3", "1"]} +{"6004958": ["1", "1", "3", "1", "2", "1", "1"]} +{"0004675": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003249": ["3", "2", "3", "3", "3", "3", "2"]} +{"6003800": ["2", "2", "3", "2", "2", "3", "1"]} +{"0003391": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005858": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002601": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003448": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004902": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003588": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005917": ["1", "1", "3", "2", "3", "3", "1"]} +{"2004654": ["2", "2", "3", "2", "1", "3", "1"]} +{"2004971": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003353": ["3", "3", "2", "3", "2", "3", "2"]} +{"2003282": ["2", "3", "3", "2", "2", "3", "2"]} +{"3003752": ["3", "2", "3", "3", "2", "3", "2"]} +{"1005595": ["1", "2", "3", "2", "3", "3", "2"]} +{"8003942": ["2", "1", "3", "3", "2", "3", "1"]} +{"8003210": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006414": ["1", "1", "3", "2", "2", "3", "1"]} +{"4002599": ["2", "1", "3", "2", "3", "3", "1"]} +{"2006334": ["None", "3", "3", "3", "3", "3", "3"]} +{"1004978": ["2", "1", "3", "3", "3", "3", "2"]} +{"5001160": ["3", "3", "3", "2", "3", "3", "2"]} +{"1006527": ["1", "1", "3", "2", "2", "3", "1"]} +{"4003597": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006794": ["3", "2", "3", "2", "3", "3", "2"]} +{"6003051": ["2", "2", "3", "2", "2", "3", "2"]} +{"2007519": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006122": ["3", "3", "3", "3", "3", "3", "2"]} +{"0005897": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003542": ["2", "2", "3", "3", "2", "3", "2"]} +{"1006348": ["1", "2", "3", "2", "3", "3", "1"]} +{"1006147": ["2", "1", "3", "2", "2", "3", "1"]} +{"8001929": ["2", "2", "3", "2", "2", "3", "1"]} +{"3004534": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002070": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006118": ["1", "1", "3", "2", "3", "3", "1"]} +{"8002295": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002000": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003973": ["2", "3", "2", "2", "2", "3", "2"]} +{"8002197": ["2", "2", "3", "2", "2", "3", "2"]} +{"6002001": ["2", "3", "3", "3", "3", "3", "2"]} +{"8003319": ["2", "2", "3", "3", "3", "3", "2"]} +{"0006467": ["2", "3", "2", "3", "1", "3", "1"]} +{"0004138": ["3", "3", "3", "3", "3", "3", "2"]} +{"2006700": ["1", "2", "3", "2", "2", "3", "1"]} +{"2003829": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006105": ["2", "1", "3", "1", "3", "3", "1"]} +{"6004287": ["2", "2", "3", "2", "3", "3", "1"]} +{"3003565": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003849": ["1", "1", "3", "1", "1", "1", "1"]} +{"8002408": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004318": ["1", "1", "3", "1", "2", "2", "1"]} +{"8002833": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002244": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002611": ["2", "3", "3", "3", "3", "3", "2"]} +{"0004273": ["2", "3", "3", "2", "2", "3", "2"]} +{"3006751": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003349": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002242": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003264": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004258": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004040": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007417": ["2", "3", "3", "3", "1", "3", "2"]} +{"4003264": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007417": ["2", "2", "3", "3", "1", "3", "2"]} +{"3003349": ["3", "3", "2", "3", "2", "3", "2"]} +{"5001160": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004683": ["None", "3", "3", "3", "1", "3", "2"]} +{"0004040": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004809": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004021": ["2", "3", "3", "2", "None", "1", "1"]} +{"7003680": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006949": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005684": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005329": ["2", "3", "3", "3", "1", "3", "1"]} +{"2004688": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004098": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003973": ["3", "2", "3", "3", "1", "3", "2"]} +{"3006802": ["2", "2", "3", "3", "3", "3", "2"]} +{"4002665": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006630": ["2", "2", "3", "2", "2", "2", "1"]} +{"8002991": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002251": ["1", "1", "3", "1", "2", "1", "1"]} +{"3004937": ["3", "1", "3", "2", "3", "3", "1"]} +{"1006040": ["1", "1", "3", "2", "1", "3", "1"]} +{"2005288": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002051": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006078": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006158": ["3", "3", "2", "3", "3", "3", "2"]} +{"6004928": ["3", "3", "3", "2", "2", "3", "2"]} +{"0004204": ["1", "2", "3", "3", "2", "3", "1"]} +{"8003583": ["2", "2", "3", "2", "3", "3", "1"]} +{"2006412": ["3", "3", "3", "3", "3", "3", "2"]} +{"4003346": ["None", "3", "3", "3", "3", "3", "3"]} +{"4004014": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006473": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006976": ["2", "1", "3", "2", "3", "3", "2"]} +{"3003868": ["3", "2", "3", "3", "1", "3", "2"]} +{"6003807": ["2", "2", "3", "2", "3", "3", "2"]} +{"4003023": ["3", "2", "3", "3", "1", "3", "2"]} +{"0004618": ["3", "1", "3", "2", "3", "3", "2"]} +{"3003502": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004645": ["3", "3", "3", "3", "3", "3", "2"]} +{"4003429": ["2", "2", "3", "2", "2", "1", "1"]} +{"2005161": ["3", "2", "3", "3", "3", "3", "2"]} +{"3006768": ["3", "1", "3", "3", "1", "3", "1"]} +{"3004114": ["3", "3", "1", "3", "3", "3", "2"]} +{"3006261": ["2", "3", "2", "2", "3", "3", "1"]} +{"7003701": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005342": ["2", "2", "3", "2", "2", "3", "1"]} +{"4004814": ["2", "3", "3", "3", "3", "3", "2"]} +{"0004683": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002577": ["2", "1", "3", "2", "2", "3", "1"]} +{"0004021": ["2", "3", "3", "2", "3", "1", "1"]} +{"7003161": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003346": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004674": ["3", "2", "3", "3", "3", "3", "2"]} +{"7003206": ["2", "2", "3", "2", "3", "3", "2"]} +{"1004779": ["2", "1", "3", "3", "3", "3", "1"]} +{"3003351": ["3", "3", "3", "3", "1", "3", "2"]} +{"3005938": ["2", "2", "3", "3", "2", "3", "2"]} +{"4003952": ["2", "2", "3", "2", "2", "3", "1"]} +{"0004923": ["2", "2", "3", "3", "3", "3", "2"]} +{"3005683": ["2", "2", "3", "2", "1", "3", "1"]} +{"0005820": ["3", "3", "3", "3", "1", "3", "1"]} +{"5001345": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002417": ["2", "2", "3", "2", "2", "3", "1"]} +{"2007610": ["3", "3", "2", "3", "2", "3", "2"]} +{"2004864": ["3", "2", "3", "3", "2", "3", "2"]} +{"8003762": ["2", "2", "3", "2", "2", "3", "1"]} +{"8003874": ["2", "1", "3", "3", "3", "3", "2"]} +{"0006050": ["2", "2", "3", "2", "2", "3", "2"]} +{"7003361": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005490": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002124": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004941": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005426": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004048": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005901": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001349": ["2", "2", "3", "3", "1", "3", "1"]} +{"7002626": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003471": ["3", "3", "2", "2", "2", "3", "2"]} +{"2007199": ["3", "3", "2", "3", "3", "3", "2"]} +{"1006863": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003980": ["2", "1", "3", "2", "3", "3", "1"]} +{"8001000": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006922": ["2", "3", "2", "3", "2", "3", "2"]} +{"7002231": ["2", "1", "3", "2", "3", "3", "2"]} +{"7004346": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002689": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003852": ["3", "2", "3", "3", "2", "3", "2"]} +{"6003165": ["3", "1", "3", "3", "2", "3", "1"]} +{"2003401": ["1", "3", "1", "3", "2", "3", "1"]} +{"2005105": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004372": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004294": ["3", "2", "3", "3", "2", "3", "2"]} +{"3006603": ["1", "3", "3", "2", "2", "3", "1"]} +{"6003190": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002382": ["2", "3", "3", "3", "1", "3", "1"]} +{"0005766": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005555": ["3", "3", "3", "3", "2", "3", "2"]} +{"8002540": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004995": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004200": ["1", "1", "3", "3", "2", "3", "1"]} +{"8003263": ["3", "1", "3", "3", "2", "3", "1"]} +{"6002527": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005632": ["2", "3", "1", "3", "1", "3", "1"]} +{"3005073": ["2", "2", "3", "3", "3", "3", "2"]} +{"7004486": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005515": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005095": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003758": ["3", "3", "2", "3", "1", "3", "1"]} +{"3006841": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004793": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002111": ["2", "2", "3", "2", "3", "3", "1"]} +{"4004797": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006102": ["3", "3", "3", "3", "1", "3", "2"]} +{"2006716": ["3", "2", "3", "3", "3", "3", "2"]} +{"1004833": ["1", "1", "3", "3", "3", "3", "1"]} +{"0004150": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004446": ["3", "3", "2", "3", "3", "3", "2"]} +{"0005132": ["2", "3", "3", "3", "1", "3", "1"]} +{"0006064": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003544": ["1", "1", "None", "1", "1", "3", "1"]} +{"1003544": ["1", "1", "3", "1", "1", "3", "1"]} +{"1003146": ["2", "2", "3", "3", "2", "3", "2"]} +{"4004427": ["3", "1", "3", "2", "3", "3", "1"]} +{"2005450": ["1", "2", "3", "2", "1", "3", "1"]} +{"3004693": ["3", "3", "1", "3", "2", "3", "2"]} +{"0005237": ["3", "3", "1", "3", "3", "3", "2"]} +{"3006507": ["2", "3", "3", "3", "3", "3", "2"]} +{"8003251": ["2", "2", "3", "3", "2", "3", "2"]} +{"6003761": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006381": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005317": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004223": ["2", "2", "3", "2", "2", "3", "1"]} +{"1006974": ["1", "1", "3", "2", "2", "3", "1"]} +{"1003621": ["1", "1", "3", "2", "1", "3", "1"]} +{"5001123": ["3", "2", "2", "3", "3", "3", "2"]} +{"0004195": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006804": ["2", "2", "3", "3", "3", "2", "1"]} +{"6003124": ["3", "1", "3", "3", "2", "3", "1"]} +{"2005244": ["3", "3", "2", "3", "3", "3", "2"]} +{"0005608": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004646": ["2", "2", "3", "2", "3", "2", "2"]} +{"2006701": ["3", "2", "3", "3", "2", "3", "2"]} +{"1004060": ["1", "1", "3", "1", "1", "1", "1"]} +{"3005563": ["3", "1", "3", "3", "2", "3", "2"]} +{"5001776": ["2", "3", "3", "3", "1", "1", "1"]} +{"0004797": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004469": ["2", "2", "None", "2", "3", "2", "1"]} +{"1003243": ["1", "1", "3", "2", "3", "3", "1"]} +{"4002741": ["2", "3", "3", "3", "2", "3", "2"]} +{"2004469": ["2", "2", "3", "2", "3", "2", "1"]} +{"6002532": ["3", "3", "2", "3", "2", "3", "2"]} +{"6002925": ["2", "1", "3", "3", "3", "3", "1"]} +{"0003505": ["3", "3", "1", "3", "3", "3", "2"]} +{"8001488": ["2", "2", "3", "2", "1", "3", "1"]} +{"7004597": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005545": ["1", "1", "3", "2", "3", "3", "1"]} +{"2004160": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003848": ["2", "3", "3", "3", "2", "3", "2"]} +{"3003183": ["2", "2", "3", "3", "3", "3", "2"]} +{"4003717": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002269": ["2", "1", "3", "3", "3", "3", "2"]} +{"7004741": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006348": ["2", "3", "3", "3", "3", "3", "2"]} +{"7002204": ["2", "3", "3", "2", "3", "3", "2"]} +{"2003459": ["3", "2", "3", "3", "2", "3", "2"]} +{"7003744": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003918": ["2", "2", "3", "3", "2", "3", "2"]} +{"7002160": ["3", "3", "2", "3", "3", "3", "2"]} +{"2004022": ["2", "3", "3", "3", "2", "3", "1"]} +{"3004357": ["2", "3", "3", "3", "2", "3", "2"]} +{"3006181": ["3", "3", "3", "2", "3", "3", "2"]} +{"6004044": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004502": ["2", "3", "2", "3", "2", "3", "2"]} +{"2003932": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004606": ["3", "2", "3", "3", "3", "3", "2"]} +{"8002233": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006242": ["2", "3", "3", "3", "3", "3", "2"]} +{"1004054": ["2", "2", "3", "3", "2", "3", "1"]} +{"2003426": ["2", "3", "3", "3", "1", "3", "1"]} +{"4002239": ["3", "3", "2", "3", "3", "3", "2"]} +{"4004110": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004019": ["2", "3", "2", "3", "3", "2", "2"]} +{"2007145": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002276": ["3", "1", "3", "3", "3", "3", "1"]} +{"4002093": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001865": ["2", "2", "3", "2", "3", "2", "1"]} +{"3003506": ["3", "2", "3", "3", "3", "3", "2"]} +{"0006054": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002060": ["2", "1", "3", "3", "2", "3", "1"]} +{"6003859": ["1", "2", "3", "2", "2", "3", "1"]} +{"0006369": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001709": ["2", "2", "3", "3", "2", "3", "2"]} +{"7002121": ["2", "2", "3", "3", "3", "3", "2"]} +{"1006312": ["2", "1", "3", "3", "3", "3", "2"]} +{"1003218": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006938": ["2", "3", "3", "3", "3", "3", "3"]} +{"7003950": ["2", "3", "3", "2", "1", "3", "1"]} +{"4003942": ["3", "1", "3", "3", "2", "3", "1"]} +{"5001897": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003137": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004358": ["2", "2", "3", "2", "3", "3", "2"]} +{"3004068": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004695": ["3", "1", "3", "2", "2", "3", "1"]} +{"6003443": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001173": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004044": ["3", "2", "3", "3", "2", "3", "2"]} +{"3003961": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004255": ["2", "3", "2", "3", "1", "3", "1"]} +{"3006547": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004239": ["2", "3", "3", "3", "3", "3", "3"]} +{"4003962": ["3", "2", "3", "3", "3", "3", "2"]} +{"0003905": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005824": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007266": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005141": ["3", "3", "2", "3", "3", "3", "2"]} +{"4002333": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004038": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003701": ["2", "2", "3", "2", "2", "3", "2"]} +{"2007182": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003231": ["3", "2", "2", "3", "2", "3", "2"]} +{"1004163": ["2", "1", "3", "2", "1", "1", "1"]} +{"0005982": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006799": ["3", "3", "2", "3", "2", "3", "2"]} +{"4002316": ["3", "2", "3", "2", "1", "3", "1"]} +{"3003293": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001764": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004126": ["3", "2", "3", "3", "3", "3", "2"]} +{"7003947": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003591": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006037": ["1", "2", "3", "2", "3", "3", "2"]} +{"1005388": ["2", "1", "3", "3", "3", "3", "1"]} +{"1004714": ["1", "1", "3", "1", "3", "3", "1"]} +{"2006334": ["1", "3", "3", "3", "3", "3", "3"]} +{"0003994": ["3", "3", "1", "3", "3", "3", "2"]} +{"6003909": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004845": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007104": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001853": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004246": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003658": ["2", "2", "3", "2", "2", "3", "1"]} +{"3005358": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003389": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007662": ["3", "2", "3", "3", "3", "3", "2"]} +{"0003982": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003568": ["2", "2", "3", "3", "3", "3", "2"]} +{"1005235": ["1", "1", "3", "3", "3", "3", "1"]} +{"8003608": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001189": ["2", "2", "3", "3", "2", "3", "2"]} +{"0004620": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005493": ["3", "3", "2", "3", "2", "3", "2"]} +{"7004286": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001762": ["2", "3", "2", "2", "2", "3", "1"]} +{"5001726": ["3", "3", "1", "3", "3", "3", "2"]} +{"0005395": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004012": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003178": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004395": ["3", "2", "3", "3", "3", "3", "2"]} +{"0003727": ["3", "2", "3", "3", "2", "3", "2"]} +{"3004125": ["3", "2", "3", "3", "3", "3", "2"]} +{"7004324": ["2", "1", "3", "1", "1", "3", "1"]} +{"5001272": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004588": ["1", "1", "3", "2", "3", "3", "1"]} +{"0003503": ["3", "3", "1", "3", "3", "3", "2"]} +{"3004124": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007282": ["2", "3", "2", "3", "2", "3", "2"]} +{"2003994": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003769": ["1", "3", "1", "3", "1", "3", "1"]} +{"3006165": ["3", "3", "3", "3", "1", "3", "2"]} +{"8001837": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007001": ["2", "3", "1", "3", "2", "3", "2"]} +{"0005619": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004707": ["2", "3", "1", "3", "1", "3", "1"]} +{"0003613": ["3", "3", "1", "3", "1", "3", "2"]} +{"0004353": ["3", "3", "1", "3", "3", "3", "2"]} +{"1006203": ["1", "1", "3", "2", "2", "3", "1"]} +{"4002407": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003287": ["2", "3", "3", "3", "2", "3", "2"]} +{"1003251": ["1", "1", "3", "3", "3", "3", "1"]} +{"2005385": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004703": ["3", "1", "3", "3", "3", "3", "1"]} +{"2006556": ["2", "3", "3", "3", "1", "3", "2"]} +{"0003478": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004169": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005942": ["1", "1", "3", "2", "2", "3", "1"]} +{"2004576": ["2", "3", "1", "3", "2", "3", "2"]} +{"1006149": ["2", "2", "3", "3", "3", "3", "1"]} +{"2005909": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003275": ["2", "2", "3", "2", "1", "2", "1"]} +{"1005596": ["2", "1", "3", "3", "2", "3", "1"]} +{"8003236": ["2", "2", "3", "2", "1", "3", "1"]} +{"1004154": ["1", "1", "3", "2", "3", "3", "1"]} +{"0003900": ["2", "3", "2", "3", "3", "3", "2"]} +{"1005596": ["2", "1", "3", "2", "2", "3", "1"]} +{"1004372": ["2", "1", "3", "2", "2", "3", "1"]} +{"3003486": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004259": ["1", "2", "3", "2", "3", "3", "2"]} +{"5001188": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001594": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003329": ["3", "1", "3", "3", "2", "3", "1"]} +{"8001588": ["2", "2", "3", "3", "3", "3", "2"]} +{"6002557": ["2", "2", "3", "2", "2", "3", "1"]} +{"2006733": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003133": ["3", "2", "3", "3", "2", "3", "2"]} +{"3006598": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005394": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005574": ["2", "2", "3", "2", "3", "3", "1"]} +{"7003112": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003299": ["1", "3", "3", "3", "2", "3", "2"]} +{"1004975": ["2", "1", "3", "2", "2", "3", "1"]} +{"2005362": ["2", "2", "3", "2", "1", "3", "1"]} +{"1004007": ["1", "1", "3", "3", "3", "3", "1"]} +{"6003854": ["3", "1", "3", "3", "2", "3", "1"]} +{"2007810": ["2", "3", "3", "3", "1", "3", "1"]} +{"6004469": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002841": ["2", "3", "3", "3", "3", "2", "2"]} +{"7003825": ["3", "2", "3", "3", "2", "3", "2"]} +{"0006971": ["2", "2", "3", "3", "2", "3", "2"]} +{"5001415": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006703": ["2", "2", "3", "3", "2", "3", "2"]} +{"1003882": ["1", "1", "3", "3", "3", "3", "1"]} +{"8003621": ["2", "2", "3", "3", "3", "3", "2"]} +{"1004545": ["1", "1", "3", "2", "3", "3", "1"]} +{"1003882": ["1", "1", "3", "2", "3", "3", "1"]} +{"0006473": ["2", "1", "3", "2", "2", "3", "2"]} +{"7004799": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003669": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003793": ["2", "2", "3", "2", "3", "3", "1"]} +{"1005953": ["2", "1", "3", "2", "3", "3", "1"]} +{"0006568": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002328": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002991": ["3", "3", "3", "3", "3", "3", "2"]} +{"1005033": ["1", "1", "3", "2", "2", "3", "1"]} +{"3003224": ["3", "1", "3", "3", "2", "3", "2"]} +{"3005614": ["2", "3", "3", "3", "3", "3", "2"]} +{"2003504": ["3", "3", "1", "3", "3", "2", "2"]} +{"0005427": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003206": ["2", "1", "3", "2", "3", "3", "1"]} +{"1006711": ["1", "1", "3", "2", "3", "3", "1"]} +{"4004285": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003789": ["2", "3", "3", "2", "1", "3", "1"]} +{"2007615": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003558": ["1", "1", "3", "1", "3", "3", "1"]} +{"1004472": ["1", "1", "3", "1", "2", "3", "1"]} +{"3005345": ["2", "2", "3", "3", "3", "3", "2"]} +{"4003154": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002485": ["3", "2", "3", "2", "3", "3", "3"]} +{"7004264": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004862": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003358": ["3", "2", "3", "3", "3", "3", "2"]} +{"3003924": ["2", "2", "3", "2", "1", "3", "1"]} +{"3005733": ["2", "2", "3", "3", "2", "3", "2"]} +{"1005703": ["1", "1", "3", "2", "2", "3", "1"]} +{"2003323": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005561": ["2", "2", "3", "2", "2", "2", "1"]} +{"4004071": ["3", "1", "3", "3", "2", "3", "2"]} +{"0004403": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003732": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003791": ["1", "1", "3", "2", "1", "3", "1"]} +{"2007361": ["2", "2", "3", "3", "2", "3", "2"]} +{"1004739": ["2", "2", "3", "3", "3", "3", "1"]} +{"8001592": ["2", "2", "3", "2", "1", "2", "1"]} +{"1003674": ["1", "1", "3", "1", "2", "3", "1"]} +{"3004566": ["3", "3", "3", "3", "3", "2", "2"]} +{"8002649": ["1", "2", "3", "2", "1", "2", "1"]} +{"6004722": ["2", "3", "2", "3", "2", "3", "2"]} +{"1004619": ["1", "1", "3", "3", "2", "3", "1"]} +{"2003452": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003015": ["2", "3", "3", "3", "1", "3", "1"]} +{"3003500": ["3", "2", "3", "3", "1", "3", "2"]} +{"2007368": ["3", "3", "2", "3", "3", "3", "2"]} +{"1005369": ["1", "1", "3", "3", "2", "3", "1"]} +{"0006548": ["2", "3", "2", "3", "1", "2", "1"]} +{"7003711": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003265": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003602": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004378": ["2", "1", "3", "2", "2", "2", "1"]} +{"7004387": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002611": ["2", "2", "3", "3", "2", "3", "2"]} +{"2004901": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002721": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004917": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003598": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006068": ["2", "3", "3", "3", "2", "3", "2"]} +{"0005737": ["2", "3", "3", "3", "3", "3", "2"]} +{"0005117": ["3", "2", "3", "3", "3", "3", "2"]} +{"6003383": ["1", "1", "3", "1", "1", "2", "1"]} +{"2004406": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001390": ["2", "2", "3", "3", "2", "3", "2"]} +{"4003435": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006639": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003572": ["1", "1", "3", "2", "3", "3", "1"]} +{"2006994": ["3", "2", "3", "2", "1", "1", "1"]} +{"3004202": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003858": ["3", "3", "2", "3", "3", "3", "2"]} +{"8002481": ["2", "2", "3", "2", "3", "3", "2"]} +{"0005109": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002869": ["3", "1", "3", "3", "3", "3", "1"]} +{"0003426": ["2", "3", "2", "3", "2", "3", "2"]} +{"8001689": ["2", "3", "3", "3", "3", "3", "2"]} +{"7003671": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007857": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003277": ["3", "2", "3", "3", "3", "3", "1"]} +{"8002171": ["2", "2", "3", "2", "2", "3", "2"]} +{"0005520": ["3", "3", "2", "3", "3", "3", "2"]} +{"1003504": ["2", "1", "3", "2", "2", "3", "1"]} +{"2007627": ["3", "3", "2", "3", "2", "3", "2"]} +{"6003521": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003122": ["1", "1", "3", "3", "3", "3", "1"]} +{"3005933": ["2", "2", "3", "2", "2", "3", "2"]} +{"0006301": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004041": ["1", "1", "3", "1", "3", "3", "1"]} +{"0004350": ["2", "3", "3", "2", "3", "3", "2"]} +{"0003209": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003793": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004509": ["1", "1", "3", "3", "2", "3", "1"]} +{"3004338": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006853": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006849": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007183": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005999": ["1", "1", "3", "3", "2", "3", "1"]} +{"2007400": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001285": ["2", "2", "3", "2", "3", "3", "1"]} +{"1003076": ["1", "1", "3", "2", "3", "3", "1"]} +{"0004307": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001704": ["3", "2", "3", "3", "2", "3", "2"]} +{"8002472": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001086": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001339": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001216": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005200": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006758": ["2", "3", "3", "2", "3", "3", "2"]} +{"0006134": ["3", "2", "3", "3", "3", "3", "2"]} +{"4004106": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004267": ["1", "1", "3", "1", "2", "3", "1"]} +{"2007593": ["2", "3", "3", "3", "2", "3", "2"]} +{"0003847": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005986": ["3", "3", "1", "3", "3", "3", "1"]} +{"1005714": ["2", "1", "3", "2", "3", "3", "1"]} +{"0006603": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005832": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004567": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004472": ["2", "2", "3", "3", "3", "2", "2"]} +{"3005867": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004690": ["2", "2", "3", "3", "3", "3", "2"]} +{"1004554": ["1", "2", "3", "1", "2", "3", "1"]} +{"8002516": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001797": ["3", "3", "3", "3", "1", "3", "1"]} +{"1003755": ["2", "1", "3", "2", "3", "3", "1"]} +{"6002726": ["2", "2", "3", "2", "3", "3", "1"]} +{"3005535": ["2", "3", "1", "3", "1", "3", "1"]} +{"4002204": ["3", "2", "None", "3", "3", "2", "2"]} +{"5001438": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006210": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003906": ["1", "1", "3", "1", "3", "2", "1"]} +{"6002052": ["1", "1", "3", "1", "2", "3", "1"]} +{"7004746": ["2", "2", "3", "3", "3", "3", "2"]} +{"8001133": ["2", "2", "3", "3", "3", "None", "2"]} +{"8002464": ["2", "3", "3", "3", "3", "3", "2"]} +{"4002204": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004504": ["2", "3", "3", "3", "3", "3", "2"]} +{"1005303": ["1", "1", "3", "2", "2", "3", "1"]} +{"2005058": ["3", "3", "2", "3", "3", "3", "2"]} +{"3005182": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003553": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001133": ["2", "2", "3", "3", "3", "3", "2"]} +{"0004505": ["2", "3", "2", "3", "3", "3", "2"]} +{"0003077": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006526": ["2", "1", "3", "2", "3", "3", "1"]} +{"6002027": ["2", "2", "3", "2", "2", "3", "1"]} +{"6002993": ["2", "1", "3", "3", "3", "3", "1"]} +{"0004976": ["2", "3", "3", "3", "3", "3", "2"]} +{"4004133": ["2", "3", "3", "3", "3", "3", "2"]} +{"7002457": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005511": ["2", "2", "3", "3", "1", "3", "1"]} +{"0004471": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007913": ["2", "1", "3", "3", "3", "3", "1"]} +{"8003613": ["2", "2", "3", "3", "3", "3", "2"]} +{"2007002": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003079": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001582": ["3", "3", "2", "3", "3", "3", "2"]} +{"2006923": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003996": ["2", "2", "3", "3", "3", "3", "2"]} +{"2007935": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003295": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002877": ["2", "2", "3", "3", "2", "3", "1"]} +{"0006290": ["3", "2", "3", "3", "2", "3", "None"]} +{"0006290": ["3", "2", "3", "3", "2", "3", "2"]} +{"6002499": ["3", "2", "3", "3", "3", "3", "2"]} +{"1005016": ["1", "1", "3", "2", "3", "3", "1"]} +{"5001657": ["3", "3", "2", "3", "2", "3", "2"]} +{"2004083": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005377": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005633": ["3", "2", "3", "3", "3", "3", "2"]} +{"2004922": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004168": ["2", "2", "3", "2", "3", "3", "1"]} +{"7004185": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005006": ["3", "3", "1", "3", "2", "3", "2"]} +{"0004560": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003875": ["3", "2", "3", "3", "2", "3", "1"]} +{"2006995": ["3", "2", "3", "3", "3", "3", "2"]} +{"6002408": ["2", "2", "3", "3", "3", "3", "2"]} +{"3006380": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001249": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006898": ["1", "1", "3", "2", "3", "3", "1"]} +{"3005387": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003577": ["1", "2", "3", "2", "3", "3", "2"]} +{"1006944": ["3", "2", "3", "3", "2", "3", "1"]} +{"1006988": ["1", "1", "3", "2", "3", "3", "1"]} +{"2007418": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004377": ["3", "3", "3", "3", "3", "3", "2"]} +{"7004966": ["2", "3", "3", "3", "3", "3", "2"]} +{"8002782": ["2", "2", "3", "3", "3", "3", "2"]} +{"4002594": ["3", "2", "3", "3", "3", "3", "2"]} +{"1006933": ["1", "1", "3", "3", "3", "3", "2"]} +{"8003947": ["2", "3", "3", "3", "2", "3", "2"]} +{"8002619": ["3", "3", "3", "3", "3", "3", "2"]} +{"1005179": ["1", "1", "3", "2", "2", "3", "1"]} +{"3003774": ["3", "2", "3", "3", "3", "3", "2"]} +{"6003029": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002564": ["3", "1", "3", "3", "3", "3", "2"]} +{"0005064": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003733": ["2", "2", "3", "3", "2", "3", "2"]} +{"2003876": ["3", "2", "3", "3", "3", "2", "2"]} +{"2003827": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003786": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003522": ["3", "2", "3", "3", "2", "3", "2"]} +{"4003350": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002087": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002630": ["2", "2", "3", "3", "2", "3", "2"]} +{"5001160": ["3", "2", "2", "2", "3", "3", "2"]} +{"0006122": ["3", "3", "2", "3", "3", "3", "2"]} +{"4003391": ["3", "1", "3", "3", "3", "3", "2"]} +{"7002568": ["2", "2", "3", "2", "3", "3", "1"]} +{"2003646": ["3", "3", "3", "3", "3", "2", "2"]} +{"2003973": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006467": ["2", "3", "2", "3", "1", "3", "2"]} diff --git a/webpage/res/res_rd1_16k/ans_quy.jsonl b/webpage/res/res_rd1_16k/ans_quy.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2bebabe479b041678844bf4dcae27d3b2563d136 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_quy.jsonl @@ -0,0 +1,2198 @@ +{"7003699": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002858": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005383": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004738": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004617": ["1", "1", "3", "2", "1", "2", "2"]} +{"7004630": ["3", "2", "3", "2", "3", "3", "3"]} +{"5001362": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004206": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003516": ["1", "3", "3", "1", "3", "3", "2"]} +{"4002793": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004392": ["3", "2", "3", "3", "3", "3", "3"]} +{"1006411": ["2", "3", "3", "1", "1", "3", "2"]} +{"8003669": ["1", "1", "3", "2", "1", "1", "1"]} +{"3004145": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003926": ["2", "2", "3", "1", "1", "3", "2"]} +{"4002227": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002704": ["3", "3", "3", "2", "1", "3", "3"]} +{"0004227": ["3", "3", "3", "3", "1", "1", "2"]} +{"3003340": ["1", "3", "3", "1", "2", "1", "1"]} +{"7003389": ["3", "3", "2", "3", "1", "3", "3"]} +{"1003117": ["3", "2", "3", "1", "1", "3", "2"]} +{"2007566": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006342": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004301": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003707": ["2", "3", "1", "3", "1", "3", "2"]} +{"4002672": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004371": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004784": ["3", "3", "3", "2", "1", "3", "2"]} +{"7003745": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001008": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007212": ["3", "3", "3", "3", "2", "1", "2"]} +{"6004955": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006588": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003858": ["3", "1", "3", "1", "3", "3", "2"]} +{"1003078": ["3", "1", "3", "1", "3", "3", "2"]} +{"3004080": ["3", "3", "3", "2", "1", "3", "3"]} +{"8001363": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002308": ["3", "3", "3", "1", "3", "3", "3"]} +{"4002242": ["3", "3", "3", "3", "3", "1", "3"]} +{"3003666": ["3", "2", "3", "2", "3", "3", "3"]} +{"6002207": ["3", "3", "2", "3", "1", "3", "3"]} +{"6004917": ["3", "1", "3", "2", "3", "1", "None"]} +{"0005699": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006685": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001087": ["3", "3", "2", "2", "3", "3", "3"]} +{"1005571": ["1", "1", "3", "1", "3", "3", "2"]} +{"4004838": ["3", "1", "3", "3", "3", "3", "3"]} +{"6004431": ["1", "2", "3", "1", "2", "1", "2"]} +{"6003724": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004397": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005125": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005547": ["None", "3", "3", "3", "3", "3", "3"]} +{"8001658": ["1", "1", "3", "1", "1", "1", "1"]} +{"7004724": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003607": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003755": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003799": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002855": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004876": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005176": ["3", "3", "3", "3", "1", "1", "2"]} +{"7003482": ["2", "2", "3", "2", "3", "3", "2"]} +{"6002971": ["2", "3", "3", "1", "1", "3", "2"]} +{"4003383": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003450": ["3", "3", "3", "3", "2", "2", "3"]} +{"3005406": ["3", "3", "3", "2", "1", "3", "2"]} +{"7002888": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001038": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006864": ["2", "2", "3", "3", "3", "3", "2"]} +{"8002002": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004473": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003938": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002903": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004252": ["3", "3", "3", "3", "1", "3", "3"]} +{"8003872": ["1", "1", "3", "1", "1", "1", "1"]} +{"4003555": ["3", "3", "3", "2", "3", "2", "3"]} +{"2007916": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003100": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004765": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002392": ["2", "3", "3", "3", "1", "3", "2"]} +{"4002717": ["3", "3", "3", "2", "3", "3", "3"]} +{"7002052": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002403": ["3", "3", "3", "2", "1", "3", "2"]} +{"7003372": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006100": ["3", "3", "3", "1", "3", "1", "2"]} +{"2004908": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001547": ["2", "3", "3", "2", "2", "2", "2"]} +{"7004544": ["3", "3", "3", "1", "2", "3", "2"]} +{"0003856": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007277": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003276": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005078": ["1", "2", "3", "3", "1", "2", "2"]} +{"8003136": ["2", "2", "3", "2", "1", "3", "2"]} +{"4004108": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005140": ["3", "1", "3", "3", "3", "3", "3"]} +{"2006222": ["None", "3", "3", "3", "3", "3", "3"]} +{"4002284": ["1", "1", "3", "1", "1", "1", "1"]} +{"1006698": ["3", "2", "3", "1", "3", "3", "2"]} +{"2005399": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002140": ["1", "2", "3", "2", "2", "3", "2"]} +{"1006782": ["3", "1", "3", "1", "2", "3", "2"]} +{"6004917": ["1", "3", "1", "2", "1", "3", "1"]} +{"2005547": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004917": ["3", "3", "2", "2", "3", "3", "3"]} +{"2006222": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006250": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006406": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004495": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004801": ["3", "3", "3", "2", "1", "3", "2"]} +{"1006529": ["3", "1", "3", "1", "3", "3", "2"]} +{"2006041": ["3", "3", "3", "1", "2", "3", "2"]} +{"4003986": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004066": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002792": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006654": ["1", "1", "3", "1", "1", "3", "1"]} +{"3003820": ["3", "2", "3", "1", "3", "3", "2"]} +{"2005331": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003029": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005688": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004647": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005258": ["2", "1", "3", "1", "3", "3", "2"]} +{"4002449": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002183": ["2", "2", "3", "2", "1", "3", "2"]} +{"1003313": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001158": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004915": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003183": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004822": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005758": ["3", "1", "3", "1", "3", "3", "2"]} +{"2004387": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003321": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003936": ["3", "1", "3", "1", "3", "3", "2"]} +{"2003446": ["3", "2", "3", "1", "3", "3", "2"]} +{"1003736": ["1", "2", "3", "1", "3", "3", "1"]} +{"2005917": ["3", "2", "3", "2", "2", "3", "2"]} +{"3003354": ["3", "3", "3", "2", "1", "3", "2"]} +{"6003599": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006802": ["3", "2", "3", "2", "3", "3", "3"]} +{"2005943": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003191": ["3", "3", "3", "3", "1", "3", "3"]} +{"3004985": ["2", "1", "3", "2", "1", "3", "2"]} +{"3004985": ["2", "1", "3", "2", "1", "3", "2"]} +{"2003326": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003615": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007824": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004413": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003618": ["3", "3", "3", "3", "1", "3", "3"]} +{"6004655": ["1", "2", "3", "1", "1", "2", "1"]} +{"6004593": ["2", "1", "3", "1", "2", "3", "1"]} +{"4004697": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006389": ["2", "2", "3", "1", "3", "3", "2"]} +{"0003002": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003659": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006993": ["3", "3", "3", "1", "1", "3", "2"]} +{"6002475": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004621": ["2", "1", "3", "3", "1", "3", "2"]} +{"1004716": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003149": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001814": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003300": ["3", "1", "3", "1", "3", "3", "3"]} +{"2003173": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003494": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003526": ["3", "2", "3", "2", "3", "3", "3"]} +{"3003935": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006475": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001854": ["3", "1", "3", "3", "3", "3", "3"]} +{"0006903": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001663": ["2", "2", "3", "1", "2", "1", "2"]} +{"2003980": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002638": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006397": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003520": ["3", "2", "3", "1", "3", "3", "2"]} +{"0004171": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006195": ["3", "3", "1", "3", "2", "1", "2"]} +{"8001250": ["3", "3", "3", "None", "1", "3", "3"]} +{"7004982": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004982": ["3", "3", "1", "3", "3", "3", "3"]} +{"8001250": ["3", "3", "3", "3", "1", "3", "3"]} +{"3003460": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003599": ["3", "3", "1", "3", "3", "3", "3"]} +{"1005685": ["3", "1", "3", "1", "2", "3", "1"]} +{"3005913": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003498": ["3", "3", "3", "3", "1", "3", "3"]} +{"6002378": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007714": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002630": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003000": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003269": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006046": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006698": ["3", "3", "1", "3", "2", "3", "3"]} +{"3003089": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004736": ["3", "2", "3", "1", "3", "3", "2"]} +{"4004579": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002263": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004684": ["3", "1", "3", "2", "3", "3", "2"]} +{"1006790": ["2", "2", "3", "1", "3", "3", "3"]} +{"4003935": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005598": ["1", "1", "3", "1", "1", "1", "1"]} +{"3003121": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006752": ["2", "2", "3", "3", "3", "3", "2"]} +{"5001508": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001732": ["3", "3", "2", "3", "1", "3", "3"]} +{"8001784": ["3", "2", "3", "1", "3", "3", "2"]} +{"3006557": ["1", "2", "3", "1", "2", "2", "2"]} +{"0005107": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004891": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007978": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003375": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005807": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002779": ["2", "2", "3", "3", "3", "3", "3"]} +{"0004303": ["3", "3", "3", "1", "3", "3", "3"]} +{"1005330": ["1", "1", "3", "1", "1", "1", "1"]} +{"1003481": ["3", "2", "3", "1", "2", "3", "2"]} +{"0006398": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003580": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004193": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002146": ["3", "2", "3", "2", "3", "3", "3"]} +{"0006890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004158": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003994": ["2", "1", "3", "1", "3", "3", "2"]} +{"3003321": ["3", "3", "3", "2", "2", "3", "3"]} +{"0004773": ["None", "3", "3", "3", "3", "3", "3"]} +{"0004773": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007957": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004322": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003716": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004715": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003774": ["3", "2", "3", "1", "3", "3", "3"]} +{"6002644": ["3", "1", "3", "1", "3", "3", "3"]} +{"7004887": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006589": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003973": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002670": ["3", "2", "3", "2", "1", "3", "2"]} +{"2004294": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004503": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006720": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002317": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002959": ["3", "3", "3", "3", "1", "2", "2"]} +{"3006847": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006949": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005525": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003384": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004142": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003360": ["3", "3", "1", "3", "3", "3", "3"]} +{"6004560": ["2", "1", "3", "3", "3", "3", "3"]} +{"5001120": ["2", "None", "None", "None", "None", "None", "None"]} +{"5001120": ["2", "3", "3", "3", "1", "1", "2"]} +{"0004473": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002640": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002551": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003510": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004044": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006735": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003052": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003252": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003169": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004206": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002386": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004757": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003850": ["3", "1", "3", "1", "3", "3", "2"]} +{"2004890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006748": ["1", "1", "3", "1", "1", "1", "1"]} +{"8001600": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005835": ["3", "1", "3", "1", "1", "3", "3"]} +{"1005835": ["3", "1", "3", "1", "1", "3", "2"]} +{"2003924": ["3", "3", "2", "3", "1", "3", "2"]} +{"2003142": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001526": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004515": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003589": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005472": ["3", "2", "3", "2", "3", "3", "3"]} +{"4003309": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004199": ["1", "1", "3", "1", "1", "2", "1"]} +{"0005197": ["3", "3", "3", "2", "2", "3", "3"]} +{"5001964": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001964": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004311": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004503": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003509": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003550": ["3", "2", "3", "1", "2", "3", "3"]} +{"1003536": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007376": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004273": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003971": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004617": ["3", "1", "3", "2", "1", "3", "2"]} +{"2007885": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003000": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002278": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002328": ["3", "3", "3", "1", "2", "3", "3"]} +{"5001455": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005175": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003842": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007754": ["3", "3", "None", "3", "3", "3", "3"]} +{"2007754": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005067": ["3", "2", "3", "1", "1", "3", "2"]} +{"8001903": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007119": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002267": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004891": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002695": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005857": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003066": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007887": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001565": ["3", "3", "1", "3", "1", "3", "2"]} +{"6003836": ["3", "3", "3", "2", "2", "3", "3"]} +{"5001965": ["2", "3", "1", "2", "2", "3", "2"]} +{"7004366": ["3", "3", "1", "2", "1", "3", "3"]} +{"8003949": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003753": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002176": ["None", "None", "None", "None", "None", "None", "None"]} +{"6002176": ["3", "3", "2", "3", "1", "3", "3"]} +{"2005890": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005373": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003960": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002988": ["1", "3", "3", "1", "1", "3", "2"]} +{"2004998": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005082": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002664": ["3", "3", "3", "1", "3", "3", "3"]} +{"6004093": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004417": ["2", "1", "3", "1", "3", "3", "2"]} +{"1004586": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007876": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005738": ["2", "2", "3", "2", "2", "3", "2"]} +{"7004916": ["3", "2", "3", "2", "3", "3", "3"]} +{"0003278": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003208": ["3", "3", "3", "1", "2", "3", "3"]} +{"0006976": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003099": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006992": ["2", "3", "3", "2", "1", "3", "2"]} +{"2005529": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006597": ["3", "1", "3", "1", "3", "3", "2"]} +{"8002414": ["2", "3", "3", "3", "2", "3", "3"]} +{"3005292": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005197": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003543": ["2", "3", "3", "3", "1", "3", "3"]} +{"1005594": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006090": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002727": ["2", "2", "3", "1", "2", "3", "2"]} +{"4004438": ["2", "3", "3", "3", "2", "3", "2"]} +{"0004626": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003556": ["3", "3", "2", "2", "3", "3", "3"]} +{"2004449": ["3", "3", "2", "3", "1", "3", "2"]} +{"8002815": ["3", "1", "3", "1", "2", "3", "2"]} +{"3005403": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003621": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005975": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003274": ["3", "2", "3", "1", "3", "1", "2"]} +{"3005251": ["3", "3", "2", "3", "1", "3", "3"]} +{"1006837": ["3", "1", "3", "1", "3", "3", "2"]} +{"7002105": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005634": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004407": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006993": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004239": ["3", "2", "3", "2", "3", "3", "3"]} +{"5001739": ["3", "3", "2", "3", "2", "3", "2"]} +{"5001920": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003747": ["3", "3", "3", "2", "3", "2", "2"]} +{"2005088": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004424": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005145": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005876": ["2", "2", "3", "1", "3", "3", "2"]} +{"1006984": ["2", "3", "3", "2", "3", "3", "3"]} +{"4003724": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004351": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001606": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005705": ["1", "2", "3", "1", "3", "3", "2"]} +{"7004829": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003240": ["2", "2", "3", "1", "1", "3", "1"]} +{"4003513": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003425": ["None", "None", "None", "None", "None", "None", "None"]} +{"8003425": ["3", "3", "3", "2", "2", "3", "3"]} +{"3004933": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002020": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004869": ["2", "1", "3", "1", "3", "3", "2"]} +{"8003325": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003749": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006797": ["3", "2", "3", "1", "3", "2", "2"]} +{"7004638": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006553": ["3", "3", "3", "3", "None", "None", "None"]} +{"8003023": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006553": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002464": ["2", "2", "3", "1", "3", "2", "2"]} +{"1003617": ["2", "1", "3", "1", "3", "3", "2"]} +{"7004224": ["3", "1", "3", "1", "3", "3", "2"]} +{"4003542": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004867": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001015": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004128": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004613": ["3", "1", "3", "3", "3", "3", "3"]} +{"6003771": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004171": ["3", "3", "3", "3", "3", "3", "1"]} +{"1005352": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005414": ["None", "3", "3", "1", "1", "3", "2"]} +{"3005414": ["3", "3", "3", "1", "1", "3", "2"]} +{"1004745": ["2", "1", "3", "1", "1", "2", "2"]} +{"2006007": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003186": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003071": ["3", "2", "3", "1", "2", "2", "2"]} +{"1005142": ["3", "3", "3", "1", "1", "2", "2"]} +{"7003936": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004965": ["3", "3", "3", "2", "2", "1", "3"]} +{"0004965": ["3", "3", "3", "2", "2", "1", "2"]} +{"6002359": ["3", "1", "3", "2", "2", "2", "2"]} +{"4002483": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006338": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003005": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004533": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004329": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005287": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007624": ["3", "3", "3", "3", "1", "1", "2"]} +{"0004174": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001701": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003989": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006564": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004594": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003841": ["3", "2", "3", "1", "3", "3", "2"]} +{"2007850": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005646": ["3", "3", "3", "3", "2", "2", "None"]} +{"0005646": ["3", "3", "3", "3", "2", "2", "3"]} +{"2006281": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005112": ["3", "2", "3", "1", "3", "3", "3"]} +{"1003391": ["3", "1", "3", "1", "3", "3", "2"]} +{"8002150": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006677": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003987": ["3", "3", "1", "3", "3", "3", "3"]} +{"8001768": ["1", "3", "3", "3", "1", "1", "1"]} +{"0005508": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005929": ["3", "3", "1", "3", "2", "3", "2"]} +{"6004523": ["1", "1", "3", "1", "1", "2", "2"]} +{"4002424": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002176": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004713": ["3", "2", "3", "2", "1", "2", "2"]} +{"2007136": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004453": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004504": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002755": ["1", "1", "3", "1", "1", "3", "2"]} +{"1005531": ["3", "1", "3", "1", "3", "3", "3"]} +{"0006204": ["2", "3", "3", "2", "3", "2", "3"]} +{"3004892": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004483": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004846": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005937": ["3", "1", "3", "2", "3", "3", "3"]} +{"3004409": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004157": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002361": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004704": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004313": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004653": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006188": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004312": ["3", "3", "3", "3", "1", "3", "2"]} +{"1006342": ["1", "1", "3", "1", "2", "3", "2"]} +{"4004504": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003945": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003498": ["2", "1", "3", "3", "2", "3", "2"]} +{"6002731": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004548": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002399": ["3", "3", "3", "1", "3", "3", "3"]} +{"3006111": ["3", "3", "3", "3", "3", "1", "3"]} +{"4002416": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004014": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003375": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003210": ["3", "2", "3", "1", "2", "3", "2"]} +{"7002771": ["1", "3", "3", "2", "2", "3", "2"]} +{"6002955": ["2", "3", "3", "2", "2", "3", "2"]} +{"1003165": ["2", "1", "3", "1", "3", "3", "2"]} +{"0004886": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005575": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003507": ["1", "3", "3", "1", "3", "3", "2"]} +{"1005662": ["3", "1", "3", "1", "3", "3", "2"]} +{"6002314": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004935": ["3", "3", "3", "1", "3", "2", "3"]} +{"3005546": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003041": ["3", "2", "3", "1", "2", "1", "2"]} +{"6004233": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002971": ["3", "3", "3", "2", "3", "3", "3"]} +{"3006928": ["3", "3", "2", "2", "3", "3", "3"]} +{"3006367": ["3", "3", "3", "1", "2", "2", "2"]} +{"3004593": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003636": ["3", "2", "3", "1", "3", "3", "3"]} +{"2003097": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004943": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004310": ["2", "1", "3", "1", "2", "2", "1"]} +{"3004679": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004552": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003415": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002895": ["3", "2", "3", "1", "3", "3", "3"]} +{"1004434": ["3", "1", "3", "1", "3", "3", "2"]} +{"2006104": ["3", "3", "3", "1", "3", "3", "3"]} +{"0004801": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002933": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006349": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005542": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002214": ["3", "1", "3", "1", "2", "3", "2"]} +{"1003741": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005254": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005255": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003583": ["3", "3", "3", "2", "2", "2", "3"]} +{"4003712": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005711": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004423": ["3", "1", "3", "3", "3", "3", "3"]} +{"7002952": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005946": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001814": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005772": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003814": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007241": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005700": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004782": ["3", "1", "3", "2", "1", "1", "1"]} +{"3003493": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001823": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007783": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003649": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007795": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004894": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004894": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005008": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002685": ["3", "2", "3", "2", "3", "2", "3"]} +{"3004026": ["3", "1", "3", "1", "2", "1", "2"]} +{"0003217": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003470": ["3", "1", "3", "2", "1", "2", "1"]} +{"3004589": ["3", "3", "3", "3", "1", "2", "2"]} +{"8002288": ["3", "3", "3", "2", "3", "3", "3"]} +{"0005973": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005798": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006640": ["3", "1", "3", "1", "1", "2", "2"]} +{"2006980": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003887": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001879": ["3", "3", "3", "2", "1", "3", "2"]} +{"5001874": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004399": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001521": ["3", "2", "3", "3", "1", "2", "2"]} +{"1003259": ["3", "3", "3", "1", "1", "1", "2"]} +{"4003494": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002452": ["3", "2", "3", "3", "1", "1", "2"]} +{"8001694": ["2", "2", "3", "2", "3", "2", "2"]} +{"0003049": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003723": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003317": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006283": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005447": ["2", "2", "3", "1", "3", "2", "3"]} +{"7003299": ["3", "3", "3", "3", "1", "1", "2"]} +{"0003111": ["3", "3", "3", "1", "2", "1", "2"]} +{"4004552": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004216": ["3", "1", "3", "2", "3", "1", "2"]} +{"2004310": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005420": ["3", "2", "3", "2", "3", "3", "3"]} +{"2005368": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004633": ["3", "1", "3", "2", "2", "1", "2"]} +{"2004827": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003484": ["3", "3", "3", "None", "None", "3", "3"]} +{"3003484": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003935": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002165": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002927": ["3", "3", "3", "3", "2", "2", "2"]} +{"4003563": ["3", "3", "3", "3", "1", "2", "2"]} +{"4003366": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003714": ["3", "3", "2", "3", "2", "2", "2"]} +{"5001729": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003911": ["3", "3", "3", "3", "3", "1", "3"]} +{"6004090": ["2", "3", "3", "3", "2", "2", "2"]} +{"0004697": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003454": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004914": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004704": ["3", "3", "3", "2", "2", "2", "2"]} +{"2005647": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003845": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002228": ["1", "3", "3", "2", "1", "2", "2"]} +{"1006309": ["3", "2", "3", "2", "3", "2", "3"]} +{"2005830": ["3", "3", "3", "3", "1", "2", "2"]} +{"7004627": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003840": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004728": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004510": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004026": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007537": ["3", "3", "1", "3", "2", "2", "2"]} +{"2005484": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005286": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004456": ["3", "3", "3", "3", "1", "2", "2"]} +{"6004586": ["3", "2", "3", "2", "3", "3", "3"]} +{"4002934": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006827": ["2", "3", "3", "1", "1", "2", "2"]} +{"0005620": ["3", "3", "None", "3", "3", "3", "3"]} +{"0005620": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004221": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004189": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001833": ["3", "3", "2", "3", "1", "2", "2"]} +{"2003099": ["3", "3", "3", "3", "2", "2", "3"]} +{"1005948": ["3", "2", "3", "1", "1", "1", "1"]} +{"4002146": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002609": ["2", "2", "3", "2", "3", "2", "2"]} +{"4003013": ["3", "3", "3", "3", "1", "1", "2"]} +{"4003013": ["3", "3", "3", "3", "1", "3", "3"]} +{"8002181": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006681": ["3", "2", "3", "1", "3", "1", "1"]} +{"1004068": ["1", "2", "3", "1", "2", "1", "1"]} +{"1003145": ["2", "1", "3", "1", "1", "1", "1"]} +{"1003302": ["3", "1", "3", "1", "2", "1", "1"]} +{"2007865": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002093": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006463": ["3", "1", "3", "3", "1", "1", "1"]} +{"3004816": ["3", "3", "3", "3", "1", "1", "2"]} +{"6004218": ["3", "2", "3", "3", "1", "2", "2"]} +{"1005317": ["2", "2", "3", "1", "3", "2", "1"]} +{"0004913": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001023": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003306": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006418": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002380": ["1", "2", "3", "2", "2", "2", "2"]} +{"2007479": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004177": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003402": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006738": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003653": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001636": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["None", "None", "None", "None", "None", "None", "None"]} +{"6003220": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005368": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004813": ["2", "2", "3", "1", "1", "1", "1"]} +{"1006323": ["1", "1", "3", "1", "1", "1", "1"]} +{"7002896": ["3", "3", "3", "3", "2", "2", "3"]} +{"4004788": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005578": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006113": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001592": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003233": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006631": ["3", "3", "3", "2", "3", "2", "3"]} +{"7004210": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003284": ["2", "2", "3", "1", "1", "1", "1"]} +{"1004395": ["3", "2", "3", "1", "1", "1", "2"]} +{"8002420": ["2", "2", "3", "2", "2", "2", "2"]} +{"4003186": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005965": ["1", "2", "3", "1", "1", "1", "1"]} +{"0003696": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004583": ["2", "3", "2", "3", "2", "2", "2"]} +{"1006311": ["3", "3", "3", "2", "2", "3", "3"]} +{"8001927": ["1", "1", "3", "1", "1", "1", "1"]} +{"0006651": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006643": ["3", "2", "3", "2", "3", "3", "3"]} +{"1004228": ["3", "2", "3", "2", "3", "2", "2"]} +{"2004615": ["3", "3", "3", "3", "3", "1", "3"]} +{"3003715": ["3", "3", "2", "3", "3", "2", "3"]} +{"7002246": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003103": ["3", "1", "3", "3", "3", "2", "3"]} +{"1003096": ["3", "2", "3", "2", "3", "2", "2"]} +{"4003862": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005135": ["3", "2", "3", "1", "3", "2", "3"]} +{"1005837": ["2", "2", "3", "1", "3", "2", "2"]} +{"7003862": ["2", "1", "3", "1", "2", "1", "2"]} +{"7002087": ["3", "3", "2", "2", "2", "2", "2"]} +{"8003005": ["3", "1", "3", "1", "2", "1", "2"]} +{"0005522": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005118": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003552": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002665": ["1", "3", "3", "2", "1", "2", "2"]} +{"7002812": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004969": ["3", "1", "3", "1", "1", "1", "1"]} +{"6002033": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004839": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004416": ["2", "3", "3", "1", "1", "1", "1"]} +{"3003901": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006313": ["3", "1", "3", "1", "3", "3", "2"]} +{"3003644": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007249": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006384": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001293": ["3", "3", "3", "3", "1", "2", "3"]} +{"2007965": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003994": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007642": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003700": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005488": ["3", "1", "3", "1", "2", "2", "2"]} +{"4002101": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006880": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001542": ["3", "1", "3", "2", "3", "3", "3"]} +{"1006559": ["3", "1", "3", "1", "3", "3", "2"]} +{"3005373": ["3", "3", "3", "1", "3", "2", "2"]} +{"1006461": ["3", "2", "3", "1", "3", "3", "3"]} +{"8003692": ["2", "3", "3", "3", "3", "2", "3"]} +{"1003751": ["2", "3", "3", "2", "3", "3", "3"]} +{"8001654": ["2", "3", "3", "1", "3", "3", "3"]} +{"3006504": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003169": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004085": ["2", "2", "3", "2", "3", "3", "3"]} +{"0005411": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004338": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002059": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007304": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005612": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004826": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005771": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003851": ["3", "3", "3", "1", "2", "2", "3"]} +{"7004405": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004191": ["3", "3", "3", "3", "2", "1", "3"]} +{"3003295": ["1", "1", "3", "2", "2", "1", "1"]} +{"0003520": ["3", "3", "3", "3", "1", "2", "3"]} +{"1003333": ["2", "1", "3", "1", "3", "2", "2"]} +{"1005020": ["2", "2", "3", "2", "3", "3", "3"]} +{"3004010": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005047": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004285": ["2", "2", "3", "1", "3", "3", "3"]} +{"7004442": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003842": ["1", "1", "3", "1", "2", "1", "1"]} +{"0006620": ["3", "3", "3", "3", "2", "2", "3"]} +{"2006008": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006210": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005569": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006170": ["3", "2", "3", "1", "3", "3", "2"]} +{"4002959": ["3", "2", "3", "2", "1", "3", "3"]} +{"3005538": ["3", "2", "3", "1", "3", "2", "2"]} +{"4004401": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003886": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006633": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006120": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006055": ["3", "1", "3", "1", "3", "1", "2"]} +{"6002170": ["3", "3", "3", "1", "2", "1", "2"]} +{"0004029": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002299": ["3", "3", "3", "2", "3", "2", "3"]} +{"0004334": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005488": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004607": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005520": ["3", "2", "3", "1", "3", "3", "3"]} +{"1005526": ["3", "2", "3", "1", "2", "2", "2"]} +{"6003760": ["3", "2", "3", "1", "1", "1", "2"]} +{"3006365": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007973": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001066": ["1", "3", "3", "1", "2", "2", "2"]} +{"1005169": ["2", "2", "3", "1", "1", "1", "1"]} +{"3003796": ["3", "2", "3", "2", "3", "3", "2"]} +{"2005378": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002426": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002590": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004995": ["3", "2", "3", "2", "3", "3", "3"]} +{"4002948": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006707": ["1", "1", "3", "1", "1", "1", "1"]} +{"3005892": ["1", "2", "3", "1", "1", "1", "1"]} +{"4002855": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007421": ["3", "3", "3", "2", "3", "3", "3"]} +{"2003198": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005920": ["3", "2", "3", "2", "3", "3", "3"]} +{"0006742": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004419": ["3", "2", "3", "1", "3", "3", "3"]} +{"7002673": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004145": ["3", "2", "3", "1", "3", "3", "2"]} +{"6002670": ["1", "2", "3", "1", "2", "1", "2"]} +{"1006849": ["3", "2", "3", "2", "3", "3", "3"]} +{"8003396": ["1", "1", "3", "1", "1", "1", "1"]} +{"3005624": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004121": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002870": ["3", "3", "3", "2", "3", "3", "3"]} +{"8002553": ["1", "2", "3", "1", "1", "1", "1"]} +{"4002484": ["3", "1", "3", "2", "2", "2", "2"]} +{"4003585": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004068": ["3", "1", "3", "1", "3", "1", "2"]} +{"7004049": ["3", "3", "2", "3", "2", "2", "2"]} +{"3004642": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006792": ["2", "1", "3", "1", "3", "2", "2"]} +{"5001381": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003432": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004746": ["1", "3", "3", "2", "1", "1", "1"]} +{"0006165": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003699": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006072": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004134": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007473": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006363": ["2", "2", "3", "1", "2", "1", "2"]} +{"3004259": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003695": ["3", "3", "3", "3", "1", "2", "3"]} +{"1005644": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001355": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003490": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007071": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005704": ["3", "3", "2", "3", "None", "3", "3"]} +{"2005704": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005478": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006738": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004972": ["1", "3", "3", "3", "1", "1", "1"]} +{"3006316": ["2", "1", "3", "3", "1", "1", "1"]} +{"0005408": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004360": ["3", "3", "3", "3", "3", "1", "3"]} +{"1004123": ["3", "3", "3", "1", "3", "3", "3"]} +{"3006506": ["1", "1", "3", "2", "3", "2", "1"]} +{"3005248": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006808": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003323": ["2", "2", "3", "1", "2", "2", "2"]} +{"3005436": ["3", "3", "3", "1", "2", "1", "2"]} +{"8003865": ["3", "3", "3", "3", "1", "2", "3"]} +{"0003959": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001962": ["2", "3", "3", "3", "2", "2", "3"]} +{"7003416": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005560": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007052": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005271": ["3", "3", "3", "3", "1", "2", "3"]} +{"7003746": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003493": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004030": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006766": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002716": ["1", "2", "3", "1", "1", "1", "1"]} +{"0004152": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004152": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004178": ["3", "2", "3", "1", "2", "1", "2"]} +{"8002308": ["3", "3", "3", "1", "3", "3", "3"]} +{"2007154": ["3", "3", "3", "1", "3", "3", "3"]} +{"0005299": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003073": ["1", "3", "3", "1", "1", "1", "1"]} +{"3005142": ["3", "2", "3", "1", "3", "1", "2"]} +{"7002464": ["3", "3", "3", "3", "1", "3", "3"]} +{"3003459": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005402": ["3", "3", "2", "3", "2", "2", "3"]} +{"7004738": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003718": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006994": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004568": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002525": ["3", "2", "3", "3", "2", "3", "3"]} +{"4004333": ["3", "3", "3", "3", "1", "3", "3"]} +{"6002637": ["3", "2", "3", "1", "3", "3", "3"]} +{"6002395": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005742": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004170": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004243": ["3", "2", "3", "2", "2", "1", "3"]} +{"3006310": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003740": ["3", "3", "3", "3", "3", "1", "3"]} +{"4002906": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001759": ["3", "2", "3", "2", "3", "2", "3"]} +{"2005463": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004081": ["3", "1", "3", "1", "3", "1", "1"]} +{"3003374": ["3", "3", "3", "1", "3", "3", "3"]} +{"8003805": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006963": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003982": ["3", "3", "3", "3", "1", "2", "3"]} +{"7002903": ["1", "1", "3", "1", "2", "1", "1"]} +{"4004702": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003677": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005803": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001281": ["3", "3", "2", "3", "2", "2", "3"]} +{"4003874": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005733": ["3", "2", "3", "1", "3", "3", "3"]} +{"3005231": ["3", "3", "1", "3", "1", "3", "2"]} +{"0004364": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003844": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003582": ["2", "3", "3", "1", "3", "2", "3"]} +{"7004274": ["3", "3", "3", "2", "3", "2", "3"]} +{"4002826": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002208": ["3", "3", "3", "1", "1", "2", "2"]} +{"2005729": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004300": ["3", "3", "3", "2", "1", "1", "2"]} +{"6003064": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004297": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006924": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003999": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003320": ["3", "2", "3", "2", "1", "1", "2"]} +{"7004783": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004795": ["3", "3", "3", "3", "1", "2", "2"]} +{"2007480": ["3", "3", "3", "3", "3", "1", "3"]} +{"8002028": ["3", "2", "3", "1", "3", "3", "3"]} +{"1005700": ["3", "1", "3", "1", "2", "2", "2"]} +{"0004116": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004199": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003417": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005045": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004388": ["3", "3", "3", "3", "1", "2", "3"]} +{"3005081": ["3", "1", "3", "3", "2", "2", "2"]} +{"8003071": ["3", "1", "3", "1", "3", "3", "2"]} +{"1003435": ["1", "2", "3", "1", "3", "1", "1"]} +{"3006588": ["3", "3", "3", "3", "3", "1", "3"]} +{"2007112": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003066": ["3", "3", "3", "2", "2", "1", "3"]} +{"3005294": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002763": ["3", "3", "3", "1", "3", "2", "2"]} +{"6002940": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003913": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003686": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007204": ["3", "3", "3", "2", "1", "2", "2"]} +{"7003923": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006981": ["1", "1", "3", "1", "3", "1", "1"]} +{"2003797": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003727": ["3", "2", "3", "1", "3", "2", "2"]} +{"1006663": ["3", "1", "3", "2", "1", "1", "2"]} +{"8001580": ["3", "3", "3", "1", "2", "2", "2"]} +{"8001807": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006003": ["2", "1", "3", "2", "1", "1", "1"]} +{"5001993": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004216": ["3", "3", "3", "2", "3", "2", "3"]} +{"4004745": ["3", "2", "3", "2", "2", "1", "2"]} +{"3004955": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003661": ["3", "3", "3", "3", "1", "2", "3"]} +{"7004803": ["3", "2", "3", "1", "2", "2", "2"]} +{"0006079": ["3", "3", "3", "2", "1", "1", "2"]} +{"2004693": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003517": ["3", "3", "3", "3", "2", "2", "3"]} +{"5001221": ["3", "3", "3", "2", "3", "2", "3"]} +{"7004517": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007921": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004012": ["3", "3", "2", "3", "2", "3", "3"]} +{"3005599": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003646": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004844": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002917": ["3", "3", "3", "2", "3", "2", "3"]} +{"7003544": ["3", "3", "3", "1", "3", "2", "3"]} +{"4004382": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005246": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004832": ["3", "3", "3", "3", "2", "2", "3"]} +{"6002210": ["3", "1", "3", "1", "2", "1", "2"]} +{"3005804": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005549": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003595": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005767": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003818": ["2", "2", "3", "3", "1", "2", "2"]} +{"1005168": ["3", "2", "3", "1", "3", "2", "2"]} +{"0005744": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002920": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002488": ["1", "1", "3", "1", "1", "1", "1"]} +{"1006427": ["3", "2", "3", "1", "3", "2", "2"]} +{"0005417": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007868": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006242": ["3", "3", "3", "2", "3", "2", "2"]} +{"7004845": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005943": ["3", "3", "3", "1", "3", "2", "2"]} +{"7004237": ["3", "1", "3", "2", "3", "3", "3"]} +{"2005878": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003981": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004433": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005403": ["3", "2", "3", "3", "3", "3", "3"]} +{"5001447": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003677": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002845": ["3", "3", "3", "1", "3", "3", "3"]} +{"3003910": ["1", "1", "3", "1", "3", "1", "1"]} +{"4002298": ["3", "3", "1", "2", "3", "1", "2"]} +{"3006783": ["3", "3", "2", "3", "1", "3", "2"]} +{"0003934": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003884": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001425": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001315": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003032": ["3", "3", "1", "3", "2", "3", "3"]} +{"0003528": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005424": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004167": ["3", "1", "3", "1", "3", "1", "2"]} +{"1005090": ["3", "2", "3", "2", "3", "1", "2"]} +{"6003253": ["1", "3", "3", "1", "3", "1", "1"]} +{"2003730": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003038": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003109": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004626": ["3", "3", "2", "3", "1", "2", "3"]} +{"5001113": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006649": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003085": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004083": ["3", "3", "3", "3", "1", "2", "3"]} +{"7002241": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005151": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003614": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007552": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005035": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004611": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003063": ["3", "2", "3", "1", "2", "2", "2"]} +{"7003236": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006485": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006252": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004126": ["1", "1", "3", "1", "3", "1", "1"]} +{"3004850": ["2", "2", "3", "1", "2", "2", "2"]} +{"3004052": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003292": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004295": ["1", "1", "3", "1", "1", "1", "1"]} +{"7004241": ["2", "2", "3", "1", "2", "1", "2"]} +{"2005645": ["3", "3", "3", "1", "3", "2", "3"]} +{"1004799": ["1", "2", "3", "1", "3", "1", "2"]} +{"6002336": ["1", "1", "3", "1", "2", "2", "1"]} +{"0006392": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003328": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006090": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004527": ["2", "2", "3", "1", "3", "2", "2"]} +{"1004305": ["2", "1", "3", "2", "3", "1", "1"]} +{"3004141": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003558": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003498": ["2", "1", "3", "1", "2", "1", "2"]} +{"4003813": ["3", "2", "3", "1", "3", "3", "3"]} +{"0005888": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007673": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004482": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004849": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003769": ["1", "1", "3", "1", "1", "1", "1"]} +{"0006088": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004939": ["3", "2", "3", "3", "3", "2", "2"]} +{"7003427": ["3", "3", "3", "2", "2", "2", "2"]} +{"1004382": ["3", "2", "3", "1", "3", "3", "3"]} +{"4003758": ["3", "3", "3", "3", "1", "3", "3"]} +{"8003114": ["1", "3", "3", "1", "2", "2", "2"]} +{"7004949": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001761": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005745": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003877": ["3", "3", "3", "2", "2", "2", "2"]} +{"0003258": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005458": ["3", "2", "3", "1", "3", "2", "3"]} +{"1005012": ["2", "2", "3", "1", "3", "2", "2"]} +{"3006340": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004480": ["3", "3", "3", "3", "1", "1", "2"]} +{"0003102": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002135": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003773": ["1", "3", "3", "3", "1", "1", "2"]} +{"8002573": ["2", "3", "3", "2", "3", "1", "2"]} +{"0005229": ["3", "3", "3", "2", "1", "2", "2"]} +{"3003488": ["3", "2", "3", "3", "2", "2", "2"]} +{"1006608": ["2", "1", "3", "1", "3", "1", "1"]} +{"8001019": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004987": ["2", "2", "3", "1", "3", "2", "2"]} +{"4004457": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002824": ["2", "3", "3", "1", "2", "2", "2"]} +{"1005397": ["3", "1", "3", "2", "3", "2", "2"]} +{"3004742": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006269": ["3", "3", "1", "3", "1", "2", "2"]} +{"0003734": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003438": ["2", "2", "3", "1", "2", "3", "2"]} +{"4003742": ["3", "2", "3", "1", "2", "2", "2"]} +{"0003037": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004549": ["1", "2", "3", "1", "3", "1", "1"]} +{"2003019": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006560": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002021": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003285": ["3", "3", "3", "3", "1", "3", "3"]} +{"8001785": ["1", "3", "3", "1", "1", "1", "1"]} +{"1005606": ["1", "1", "3", "1", "3", "1", "1"]} +{"0006539": ["3", "3", "1", "3", "1", "3", "3"]} +{"6003246": ["3", "2", "3", "1", "3", "2", "3"]} +{"7004611": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002849": ["3", "3", "3", "3", "1", "2", "3"]} +{"1005665": ["1", "1", "3", "1", "3", "2", "2"]} +{"1003436": ["1", "1", "3", "1", "3", "1", "1"]} +{"2006713": ["3", "2", "3", "2", "3", "2", "2"]} +{"2003417": ["3", "3", "2", "3", "3", "2", "3"]} +{"7003699": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002858": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005383": ["3", "2", "3", "2", "3", "3", "3"]} +{"6004738": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004617": ["1", "1", "3", "2", "1", "2", "2"]} +{"7004630": ["3", "2", "3", "2", "3", "3", "3"]} +{"5001362": ["3", "3", "2", "3", "2", "3", "3"]} +{"0004206": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003516": ["1", "2", "3", "1", "3", "3", "2"]} +{"4002793": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004392": ["3", "2", "3", "3", "3", "3", "3"]} +{"1006411": ["2", "1", "3", "1", "1", "3", "2"]} +{"8003669": ["1", "1", "3", "2", "1", "1", "1"]} +{"3004145": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003926": ["2", "2", "3", "1", "1", "3", "2"]} +{"1003926": ["2", "2", "3", "1", "1", "3", "2"]} +{"4002227": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002704": ["3", "2", "3", "2", "1", "3", "3"]} +{"0004227": ["3", "3", "3", "3", "1", "1", "2"]} +{"3003340": ["1", "3", "3", "1", "2", "1", "1"]} +{"7003389": ["3", "3", "2", "3", "1", "3", "3"]} +{"1003117": ["3", "2", "3", "1", "1", "3", "2"]} +{"2007566": ["3", "3", "2", "3", "1", "3", "3"]} +{"0006342": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004301": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003707": ["2", "3", "2", "3", "1", "3", "2"]} +{"4002672": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004371": ["3", "2", "3", "2", "3", "3", "3"]} +{"3004784": ["3", "3", "3", "2", "1", "3", "2"]} +{"7003745": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001008": ["3", "2", "3", "2", "3", "3", "3"]} +{"2007212": ["3", "2", "3", "3", "2", "1", "2"]} +{"6004955": ["3", "2", "3", "3", "1", "1", "2"]} +{"1006588": ["3", "2", "3", "2", "3", "3", "3"]} +{"1006588": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003858": ["3", "1", "3", "1", "3", "3", "2"]} +{"1003078": ["3", "1", "3", "1", "3", "3", "2"]} +{"3004080": ["3", "2", "3", "2", "1", "3", "3"]} +{"8001363": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002308": ["3", "3", "3", "1", "3", "3", "3"]} +{"4002242": ["3", "3", "3", "3", "3", "1", "3"]} +{"3003666": ["3", "2", "3", "2", "3", "3", "3"]} +{"6002207": ["3", "3", "2", "3", "1", "3", "3"]} +{"6004917": ["3", "2", "2", "2", "3", "3", "3"]} +{"0005699": ["3", "3", "2", "2", "3", "3", "3"]} +{"1006685": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001087": ["3", "3", "2", "2", "3", "3", "3"]} +{"1005571": ["1", "1", "3", "1", "3", "3", "2"]} +{"4004838": ["3", "1", "3", "3", "3", "3", "3"]} +{"6004431": ["1", "2", "3", "1", "2", "1", "2"]} +{"6003724": ["3", "2", "3", "2", "3", "3", "3"]} +{"6004397": ["3", "2", "3", "3", "3", "3", "3"]} +{"0005125": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005547": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001658": ["1", "1", "3", "1", "1", "1", "1"]} +{"7004724": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003607": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003755": ["3", "2", "3", "2", "3", "3", "3"]} +{"6003755": ["3", "2", "3", "2", "3", "3", "3"]} +{"0003799": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002855": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004876": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005176": ["3", "3", "2", "3", "1", "1", "2"]} +{"7003482": ["2", "2", "3", "2", "3", "3", "2"]} +{"6002971": ["2", "2", "3", "1", "1", "3", "2"]} +{"4003383": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003450": ["3", "3", "3", "3", "2", "2", "3"]} +{"3005406": ["3", "2", "3", "2", "1", "3", "2"]} +{"7002888": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001038": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006864": ["2", "2", "3", "3", "3", "3", "2"]} +{"8002002": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004473": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003938": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002903": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004252": ["3", "3", "3", "3", "1", "3", "3"]} +{"8003872": ["1", "1", "3", "1", "1", "1", "1"]} +{"4003555": ["3", "3", "3", "2", "3", "2", "3"]} +{"2007916": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003100": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004765": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002392": ["2", "3", "3", "3", "1", "3", "2"]} +{"4002717": ["3", "3", "3", "2", "3", "3", "3"]} +{"7002052": ["3", "3", "2", "2", "3", "3", "3"]} +{"4002403": ["3", "2", "3", "2", "1", "3", "2"]} +{"7003372": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006100": ["3", "3", "3", "1", "3", "1", "2"]} +{"2004908": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001547": ["2", "3", "3", "2", "2", "2", "2"]} +{"7004544": ["3", "2", "3", "1", "2", "3", "2"]} +{"0003856": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003856": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007277": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003276": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005078": ["1", "3", "3", "3", "1", "2", "2"]} +{"8003136": ["2", "2", "3", "2", "1", "3", "2"]} +{"4004108": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004108": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005140": ["3", "1", "3", "3", "3", "3", "3"]} +{"2006222": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002284": ["1", "1", "3", "1", "1", "1", "1"]} +{"1006698": ["3", "2", "3", "1", "3", "3", "2"]} +{"2005399": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002140": ["1", "2", "3", "2", "2", "3", "2"]} +{"1006782": ["3", "1", "3", "1", "2", "3", "2"]} +{"1006250": ["3", "2", "3", "2", "3", "3", "3"]} +{"2006406": ["3", "3", "2", "2", "3", "3", "3"]} +{"0004495": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004801": ["3", "2", "3", "2", "1", "3", "2"]} +{"1006529": ["3", "1", "3", "1", "3", "3", "2"]} +{"2006041": ["3", "2", "3", "1", "2", "3", "2"]} +{"4003986": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004066": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002792": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006654": ["1", "1", "3", "1", "1", "3", "1"]} +{"3003820": ["3", "2", "2", "1", "3", "3", "2"]} +{"2005331": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003029": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005688": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004647": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005258": ["2", "1", "3", "1", "3", "3", "2"]} +{"4002449": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002183": ["2", "2", "3", "2", "1", "3", "2"]} +{"1003313": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001158": ["3", "3", "2", "3", "1", "3", "2"]} +{"3004915": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003183": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004822": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005758": ["3", "2", "3", "1", "3", "3", "2"]} +{"2004387": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003321": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003936": ["3", "1", "3", "1", "3", "3", "2"]} +{"2003446": ["3", "2", "2", "1", "3", "3", "2"]} +{"1003736": ["1", "2", "3", "1", "3", "3", "1"]} +{"2005917": ["3", "2", "3", "2", "2", "3", "2"]} +{"3003354": ["3", "3", "3", "2", "1", "3", "2"]} +{"6003599": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006802": ["3", "2", "3", "2", "3", "3", "3"]} +{"2005943": ["3", "2", "3", "3", "1", "3", "2"]} +{"7003191": ["3", "3", "3", "3", "1", "3", "3"]} +{"3004985": ["2", "2", "2", "2", "1", "3", "2"]} +{"2003326": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003615": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007824": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004413": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003618": ["3", "3", "3", "3", "1", "3", "3"]} +{"6004655": ["1", "2", "3", "1", "1", "2", "1"]} +{"6004593": ["2", "1", "3", "1", "2", "3", "1"]} +{"4004697": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006389": ["2", "2", "3", "1", "3", "3", "2"]} +{"0003002": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003659": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006993": ["3", "2", "3", "1", "1", "3", "2"]} +{"6002475": ["3", "2", "3", "3", "2", "3", "3"]} +{"6004621": ["2", "1", "3", "3", "1", "3", "2"]} +{"1004716": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003149": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001814": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003300": ["3", "1", "3", "1", "3", "3", "3"]} +{"2003173": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003494": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003526": ["3", "2", "3", "2", "3", "3", "3"]} +{"3003935": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003935": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006475": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006475": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001854": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006903": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001663": ["2", "2", "3", "1", "2", "1", "2"]} +{"2003980": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003980": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002638": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006397": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003520": ["3", "2", "3", "1", "3", "3", "2"]} +{"0004171": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006195": ["3", "3", "2", "3", "2", "1", "2"]} +{"8001250": ["3", "3", "3", "3", "1", "3", "3"]} +{"7004982": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003460": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003599": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005685": ["3", "2", "3", "1", "2", "3", "1"]} +{"3005913": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003498": ["3", "3", "2", "3", "1", "3", "3"]} +{"6002378": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007714": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002630": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003000": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003269": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006046": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006698": ["3", "3", "1", "3", "2", "3", "3"]} +{"3003089": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004736": ["3", "2", "3", "1", "3", "3", "2"]} +{"4004579": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002263": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004684": ["3", "1", "3", "2", "3", "3", "2"]} +{"1006790": ["2", "2", "3", "1", "3", "3", "3"]} +{"4003935": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005598": ["1", "1", "3", "1", "1", "1", "1"]} +{"3003121": ["3", "2", "3", "3", "1", "3", "3"]} +{"3006752": ["2", "3", "3", "3", "3", "3", "2"]} +{"5001508": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001732": ["3", "3", "2", "3", "1", "3", "3"]} +{"8001784": ["3", "2", "3", "1", "3", "3", "2"]} +{"3006557": ["1", "2", "3", "1", "2", "2", "2"]} +{"0005107": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004891": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007978": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003375": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005807": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002779": ["2", "2", "3", "3", "3", "3", "3"]} +{"0004303": ["3", "2", "3", "1", "3", "3", "3"]} +{"1005330": ["1", "1", "3", "1", "1", "1", "1"]} +{"1003481": ["3", "2", "3", "1", "2", "3", "2"]} +{"0006398": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003580": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004193": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002146": ["3", "2", "3", "2", "3", "3", "3"]} +{"0006890": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004158": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003994": ["2", "1", "3", "1", "3", "3", "2"]} +{"3003321": ["2", "3", "3", "2", "2", "3", "3"]} +{"0004773": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007957": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004322": ["3", "3", "2", "3", "2", "3", "3"]} +{"2003716": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004715": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003774": ["3", "2", "3", "1", "3", "3", "3"]} +{"6002644": ["3", "1", "3", "1", "3", "3", "3"]} +{"7004887": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006589": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003973": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002670": ["3", "2", "3", "2", "1", "3", "2"]} +{"2004294": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004503": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006720": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002317": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002959": ["3", "3", "3", "3", "1", "2", "2"]} +{"3006847": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006949": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006949": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005525": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003384": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004142": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003360": ["3", "3", "1", "3", "3", "3", "3"]} +{"6004560": ["2", "1", "3", "3", "3", "3", "3"]} +{"5001120": ["2", "3", "3", "3", "1", "1", "2"]} +{"0004473": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002640": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002551": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002551": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003510": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004044": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006735": ["3", "3", "2", "3", "1", "3", "3"]} +{"2003052": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003252": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003169": ["3", "2", "3", "3", "2", "2", "3"]} +{"2004206": ["3", "3", "2", "3", "1", "3", "3"]} +{"4002386": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004757": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003850": ["3", "1", "3", "1", "3", "3", "2"]} +{"2004890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006748": ["1", "2", "3", "1", "1", "1", "1"]} +{"8001600": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005835": ["3", "1", "3", "1", "1", "3", "2"]} +{"2003924": ["3", "3", "2", "3", "1", "3", "2"]} +{"2003142": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001526": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004515": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003589": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005472": ["3", "2", "3", "2", "3", "3", "3"]} +{"4003309": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004199": ["1", "2", "3", "1", "1", "2", "1"]} +{"0005197": ["3", "2", "2", "2", "2", "3", "3"]} +{"5001964": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004311": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004503": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003509": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003509": ["3", "2", "3", "3", "3", "3", "3"]} +{"0003550": ["3", "2", "3", "1", "2", "3", "3"]} +{"1003536": ["3", "2", "3", "3", "2", "3", "3"]} +{"2007376": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004273": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003971": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004617": ["3", "1", "3", "2", "1", "3", "2"]} +{"2007885": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003000": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002278": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002328": ["3", "2", "3", "1", "2", "3", "3"]} +{"5001455": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005175": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003842": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007754": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005067": ["3", "2", "3", "1", "1", "3", "2"]} +{"8001903": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007119": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002267": ["3", "2", "3", "2", "3", "3", "3"]} +{"4004891": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002695": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005857": ["3", "2", "3", "2", "3", "3", "3"]} +{"4003066": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007887": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001565": ["3", "3", "1", "3", "1", "3", "2"]} +{"6003836": ["3", "3", "3", "2", "2", "3", "3"]} +{"5001965": ["2", "3", "1", "2", "2", "3", "2"]} +{"7004366": ["3", "3", "1", "2", "1", "3", "3"]} +{"8003949": ["3", "2", "2", "3", "3", "3", "3"]} +{"8003753": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002176": ["3", "3", "2", "3", "1", "3", "3"]} +{"2005890": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005373": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005373": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003960": ["3", "2", "3", "3", "3", "3", "3"]} +{"8002988": ["1", "2", "3", "1", "1", "3", "2"]} +{"2004998": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005082": ["3", "3", "1", "3", "3", "3", "3"]} +{"7002664": ["3", "3", "3", "1", "3", "3", "3"]} +{"6004093": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004417": ["2", "1", "3", "1", "3", "3", "2"]} +{"1004586": ["3", "2", "3", "2", "3", "3", "3"]} +{"2007876": ["3", "3", "3", "2", "2", "3", "3"]} +{"1005738": ["2", "1", "3", "2", "2", "3", "2"]} +{"7004916": ["3", "2", "3", "2", "3", "3", "3"]} +{"0003278": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003208": ["3", "3", "2", "1", "2", "3", "3"]} +{"0006976": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003099": ["3", "3", "2", "3", "1", "3", "3"]} +{"3006992": ["2", "3", "3", "2", "1", "3", "2"]} +{"2005529": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005529": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006597": ["3", "1", "3", "1", "3", "3", "2"]} +{"8002414": ["2", "3", "3", "3", "2", "3", "3"]} +{"3005292": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005292": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005197": ["3", "3", "2", "3", "2", "3", "3"]} +{"4003543": ["2", "3", "3", "3", "1", "3", "3"]} +{"1005594": ["2", "2", "3", "3", "3", "3", "3"]} +{"0006090": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002727": ["2", "2", "3", "1", "2", "3", "2"]} +{"4004438": ["2", "3", "3", "3", "2", "3", "2"]} +{"0004626": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003556": ["3", "3", "1", "2", "3", "3", "3"]} +{"7003556": ["3", "3", "2", "2", "3", "3", "3"]} +{"2004449": ["3", "3", "2", "3", "1", "3", "2"]} +{"8002815": ["3", "2", "3", "1", "2", "3", "2"]} +{"3005403": ["3", "3", "1", "3", "2", "3", "3"]} +{"6003621": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005975": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003274": ["3", "2", "3", "1", "3", "1", "2"]} +{"3005251": ["3", "3", "2", "3", "1", "3", "3"]} +{"1006837": ["3", "2", "3", "1", "3", "3", "2"]} +{"7002105": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005634": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004407": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006993": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004239": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001739": ["3", "3", "1", "3", "2", "3", "2"]} +{"5001920": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003747": ["3", "3", "3", "2", "3", "2", "2"]} +{"2005088": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004424": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005145": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005876": ["2", "2", "3", "1", "3", "3", "2"]} +{"1006984": ["2", "3", "3", "2", "3", "3", "3"]} +{"4003724": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003724": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004351": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001606": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005705": ["1", "2", "3", "1", "3", "3", "2"]} +{"7004829": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003240": ["2", "2", "3", "1", "1", "3", "1"]} +{"4003513": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003425": ["3", "2", "3", "2", "2", "3", "3"]} +{"3004933": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002020": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004869": ["2", "2", "3", "1", "3", "3", "2"]} +{"8003325": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003749": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006797": ["3", "3", "3", "1", "3", "2", "2"]} +{"7004638": ["3", "3", "1", "3", "3", "3", "3"]} +{"0006553": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003023": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002464": ["2", "2", "3", "1", "3", "2", "2"]} +{"1003617": ["2", "2", "3", "1", "3", "3", "2"]} +{"7004224": ["3", "2", "3", "1", "3", "3", "2"]} +{"4003542": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004867": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001015": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004128": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004613": ["3", "2", "3", "3", "3", "3", "3"]} +{"6003771": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004171": ["3", "2", "3", "3", "3", "3", "1"]} +{"1005352": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005414": ["3", "3", "3", "1", "1", "3", "2"]} +{"1004745": ["2", "1", "3", "1", "1", "2", "2"]} +{"2006007": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003186": ["3", "2", "3", "3", "3", "2", "3"]} +{"0003071": ["3", "2", "3", "1", "2", "2", "2"]} +{"1005142": ["3", "2", "3", "1", "1", "2", "2"]} +{"7003936": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004965": ["3", "3", "3", "2", "2", "1", "2"]} +{"6002359": ["3", "1", "3", "2", "2", "2", "2"]} +{"4002483": ["3", "3", "1", "3", "3", "3", "3"]} +{"2006338": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003005": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004533": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004329": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005287": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007624": ["3", "3", "3", "3", "1", "1", "2"]} +{"0004174": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001701": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003989": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006564": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004594": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003841": ["3", "2", "3", "1", "3", "3", "2"]} +{"2007850": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005646": ["3", "3", "3", "3", "2", "2", "3"]} +{"2006281": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005112": ["3", "2", "3", "1", "3", "3", "3"]} +{"1003391": ["3", "1", "3", "1", "3", "3", "2"]} +{"8002150": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006677": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003987": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003987": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001768": ["1", "3", "3", "3", "1", "1", "1"]} +{"0005508": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005929": ["3", "3", "1", "3", "2", "3", "2"]} +{"6004523": ["1", "1", "3", "1", "1", "2", "2"]} +{"4002424": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002176": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004713": ["3", "2", "3", "2", "1", "2", "2"]} +{"2007136": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007136": ["3", "2", "3", "3", "3", "3", "3"]} +{"2004453": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004504": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002755": ["1", "1", "3", "1", "1", "3", "2"]} +{"8002755": ["1", "2", "3", "1", "1", "3", "2"]} +{"1005531": ["3", "2", "3", "1", "3", "3", "3"]} +{"0006204": ["2", "3", "3", "2", "3", "2", "3"]} +{"0006204": ["2", "3", "3", "2", "3", "2", "3"]} +{"3004892": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004483": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004846": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005937": ["3", "1", "3", "2", "3", "3", "3"]} +{"3004409": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004409": ["3", "2", "3", "2", "3", "3", "3"]} +{"0004157": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002361": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004704": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004313": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004653": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006188": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004312": ["3", "3", "3", "3", "1", "3", "2"]} +{"1006342": ["1", "1", "3", "1", "2", "3", "2"]} +{"4004504": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003945": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003498": ["2", "1", "3", "3", "2", "3", "2"]} +{"6002731": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004548": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002399": ["3", "2", "3", "1", "3", "3", "3"]} +{"3006111": ["3", "3", "3", "3", "3", "1", "3"]} +{"4002416": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004014": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003375": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003210": ["3", "2", "3", "1", "2", "3", "2"]} +{"7002771": ["1", "3", "3", "2", "2", "3", "2"]} +{"6002955": ["2", "3", "3", "2", "2", "3", "2"]} +{"1003165": ["2", "1", "3", "1", "3", "3", "2"]} +{"0004886": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005575": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003507": ["1", "3", "3", "1", "3", "3", "2"]} +{"1005662": ["3", "1", "3", "1", "3", "3", "2"]} +{"6002314": ["3", "2", "2", "3", "3", "3", "3"]} +{"7004935": ["3", "3", "3", "1", "3", "2", "3"]} +{"3005546": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003041": ["3", "2", "3", "1", "2", "1", "2"]} +{"6004233": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002971": ["3", "3", "3", "2", "3", "3", "3"]} +{"3006928": ["3", "3", "2", "2", "3", "3", "3"]} +{"3006367": ["3", "2", "3", "1", "2", "2", "2"]} +{"3004593": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003636": ["3", "2", "2", "1", "3", "3", "3"]} +{"2003097": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004943": ["3", "2", "3", "3", "2", "3", "3"]} +{"6004310": ["2", "1", "3", "1", "2", "2", "1"]} +{"3004679": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004552": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003415": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002895": ["3", "2", "3", "1", "3", "3", "3"]} +{"1004434": ["3", "1", "3", "1", "3", "3", "2"]} +{"2006104": ["3", "3", "3", "1", "3", "3", "3"]} +{"0004801": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002933": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006349": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005542": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002214": ["3", "1", "3", "1", "2", "3", "2"]} +{"1003741": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005254": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005255": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003583": ["3", "3", "3", "2", "2", "2", "3"]} +{"4003712": ["3", "2", "3", "3", "2", "3", "3"]} +{"2005711": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004423": ["3", "2", "3", "3", "3", "3", "3"]} +{"7002952": ["3", "3", "2", "3", "2", "3", "3"]} +{"3005946": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001814": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005772": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003814": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007241": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005700": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004782": ["3", "1", "3", "2", "1", "1", "1"]} +{"3003493": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001823": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007783": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003649": ["3", "3", "2", "3", "1", "3", "3"]} +{"2007795": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004894": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005008": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002685": ["3", "2", "3", "2", "3", "2", "3"]} +{"4002685": ["3", "2", "3", "2", "3", "2", "3"]} +{"3004026": ["3", "1", "3", "1", "2", "1", "2"]} +{"0003217": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003470": ["3", "1", "3", "2", "1", "2", "1"]} +{"3004589": ["3", "3", "3", "3", "1", "2", "2"]} +{"8002288": ["3", "3", "3", "2", "3", "3", "3"]} +{"0005973": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005798": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006640": ["3", "2", "3", "1", "1", "2", "2"]} +{"2006980": ["3", "2", "3", "3", "3", "2", "3"]} +{"0003887": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001879": ["3", "3", "3", "2", "1", "3", "2"]} +{"5001874": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004399": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001521": ["3", "2", "3", "3", "1", "2", "2"]} +{"1003259": ["3", "2", "3", "1", "1", "1", "2"]} +{"4003494": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002452": ["3", "2", "3", "3", "1", "1", "2"]} +{"8001694": ["2", "3", "3", "2", "3", "2", "2"]} +{"0003049": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003723": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003317": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006283": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005447": ["2", "2", "3", "1", "3", "2", "3"]} +{"7003299": ["3", "3", "3", "3", "1", "1", "2"]} +{"0003111": ["3", "2", "3", "1", "2", "1", "2"]} +{"4004552": ["3", "2", "3", "2", "3", "2", "3"]} +{"1004216": ["3", "1", "3", "2", "3", "1", "2"]} +{"2004310": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005420": ["3", "2", "3", "2", "3", "3", "3"]} +{"2005368": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004633": ["3", "2", "3", "2", "2", "1", "2"]} +{"2004827": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003484": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003935": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002165": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002927": ["3", "3", "3", "3", "2", "2", "2"]} +{"4003563": ["3", "3", "3", "3", "1", "2", "2"]} +{"4003366": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003714": ["3", "3", "2", "3", "2", "2", "2"]} +{"5001729": ["3", "3", "3", "3", "1", "1", "2"]} +{"5001729": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003911": ["3", "3", "3", "3", "3", "1", "3"]} +{"6004090": ["2", "2", "3", "3", "2", "2", "2"]} +{"0004697": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003454": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004914": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004704": ["3", "3", "3", "2", "2", "2", "2"]} +{"2005647": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003845": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002228": ["1", "2", "3", "2", "1", "2", "2"]} +{"1006309": ["3", "2", "3", "2", "3", "2", "3"]} +{"2005830": ["3", "3", "2", "3", "1", "2", "2"]} +{"7004627": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003840": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004728": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004728": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004728": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004728": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004510": ["3", "3", "1", "3", "3", "3", "3"]} +{"6004026": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007537": ["3", "3", "1", "3", "2", "2", "2"]} +{"2005484": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005286": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004456": ["3", "3", "3", "3", "1", "2", "2"]} +{"6004586": ["3", "2", "3", "2", "3", "3", "3"]} +{"4002934": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006827": ["2", "2", "3", "1", "1", "2", "2"]} +{"0005620": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004221": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004189": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001833": ["3", "3", "2", "3", "1", "2", "2"]} +{"2003099": ["3", "3", "2", "3", "2", "2", "3"]} +{"1005948": ["3", "2", "3", "1", "1", "1", "1"]} +{"4002146": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002609": ["2", "2", "3", "2", "3", "2", "2"]} +{"4003013": ["3", "2", "3", "3", "1", "3", "3"]} +{"8002181": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006681": ["3", "2", "3", "1", "3", "1", "1"]} +{"1004068": ["1", "2", "3", "1", "2", "1", "1"]} +{"1003145": ["2", "1", "3", "1", "1", "1", "1"]} +{"1003302": ["3", "1", "3", "1", "2", "1", "1"]} +{"2007865": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002093": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006463": ["3", "1", "3", "3", "1", "1", "1"]} +{"3004816": ["3", "3", "3", "3", "1", "1", "2"]} +{"6004218": ["3", "2", "3", "3", "1", "2", "2"]} +{"1005317": ["2", "2", "3", "1", "3", "2", "1"]} +{"0004913": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001023": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003306": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006418": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002380": ["1", "2", "3", "2", "2", "2", "2"]} +{"2007479": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004177": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003402": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006738": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003653": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001636": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003220": ["3", "2", "3", "3", "3", "3", "3"]} +{"3005368": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004813": ["2", "2", "3", "1", "1", "1", "1"]} +{"1006323": ["1", "1", "3", "1", "1", "1", "1"]} +{"7002896": ["3", "3", "2", "3", "2", "2", "3"]} +{"4004788": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005578": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006113": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001592": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003233": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006631": ["3", "3", "3", "2", "3", "2", "3"]} +{"7004210": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003284": ["2", "2", "3", "1", "1", "1", "1"]} +{"1004395": ["3", "2", "3", "1", "1", "1", "2"]} +{"8002420": ["2", "3", "3", "2", "2", "2", "2"]} +{"4003186": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005965": ["1", "2", "3", "1", "1", "1", "1"]} +{"0003696": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004583": ["2", "3", "2", "3", "2", "2", "2"]} +{"1006311": ["3", "2", "3", "2", "2", "3", "3"]} +{"8001927": ["1", "2", "3", "1", "1", "1", "1"]} +{"0006651": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006643": ["3", "2", "3", "2", "3", "3", "3"]} +{"1004228": ["3", "2", "3", "2", "3", "2", "2"]} +{"2004615": ["3", "3", "3", "3", "3", "1", "3"]} +{"3003715": ["3", "3", "2", "3", "3", "2", "3"]} +{"7002246": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003103": ["3", "2", "3", "3", "3", "2", "3"]} +{"1003096": ["3", "2", "3", "2", "3", "2", "2"]} +{"4003862": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005135": ["3", "2", "3", "1", "3", "2", "3"]} +{"1005837": ["2", "2", "3", "1", "3", "2", "2"]} +{"7003862": ["2", "1", "3", "1", "2", "1", "2"]} +{"7002087": ["3", "3", "2", "2", "2", "2", "2"]} +{"8003005": ["3", "1", "3", "1", "2", "1", "2"]} +{"0005522": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005118": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003552": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002665": ["1", "3", "3", "2", "1", "2", "2"]} +{"7002812": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004969": ["3", "1", "3", "1", "1", "1", "1"]} +{"6002033": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004839": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004416": ["2", "3", "3", "1", "1", "1", "1"]} +{"3003901": ["3", "3", "2", "3", "1", "1", "2"]} +{"1006313": ["3", "2", "3", "1", "3", "3", "2"]} +{"3003644": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007249": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006384": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001293": ["3", "3", "3", "3", "1", "2", "3"]} +{"2007965": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003994": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007642": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003700": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005488": ["3", "1", "3", "1", "2", "2", "2"]} +{"4002101": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006880": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001542": ["3", "2", "3", "2", "3", "3", "3"]} +{"1006559": ["3", "1", "3", "1", "3", "3", "2"]} +{"3005373": ["3", "3", "3", "1", "3", "2", "2"]} +{"3005373": ["3", "2", "3", "1", "3", "2", "2"]} +{"1006461": ["3", "2", "3", "1", "3", "3", "3"]} +{"8003692": ["2", "2", "3", "3", "3", "2", "3"]} +{"1003751": ["2", "2", "3", "2", "3", "3", "3"]} +{"8001654": ["2", "3", "3", "1", "3", "3", "3"]} +{"3006504": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003169": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004085": ["2", "2", "3", "2", "3", "3", "3"]} +{"0005411": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004338": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002059": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007304": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005612": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004826": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004826": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005771": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003851": ["3", "2", "3", "1", "2", "2", "3"]} +{"7004405": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004191": ["3", "3", "3", "3", "2", "1", "3"]} +{"3003295": ["1", "1", "3", "2", "2", "1", "1"]} +{"0003520": ["3", "3", "2", "3", "1", "2", "3"]} +{"1003333": ["2", "2", "3", "1", "3", "2", "2"]} +{"1005020": ["2", "2", "3", "2", "3", "3", "3"]} +{"3004010": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005047": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004285": ["2", "2", "3", "1", "3", "3", "3"]} +{"7004442": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003842": ["1", "2", "3", "1", "2", "1", "1"]} +{"0006620": ["3", "3", "2", "3", "2", "2", "3"]} +{"2006008": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006210": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005569": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006170": ["3", "2", "3", "1", "3", "3", "2"]} +{"4002959": ["3", "2", "3", "2", "1", "3", "3"]} +{"3005538": ["3", "1", "3", "1", "3", "2", "2"]} +{"4004401": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003886": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006633": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006120": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006055": ["3", "1", "3", "1", "3", "1", "2"]} +{"6002170": ["3", "2", "3", "1", "2", "1", "2"]} +{"0004029": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002299": ["3", "3", "3", "2", "3", "2", "3"]} +{"0004334": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005488": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004607": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005520": ["3", "2", "3", "1", "3", "3", "3"]} +{"1005526": ["3", "2", "3", "1", "2", "2", "2"]} +{"6003760": ["3", "2", "3", "1", "1", "1", "2"]} +{"3006365": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007973": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001066": ["1", "2", "3", "1", "2", "2", "2"]} +{"1005169": ["2", "2", "3", "1", "1", "1", "1"]} +{"3003796": ["3", "2", "3", "2", "3", "3", "2"]} +{"2005378": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002426": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002590": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002590": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004995": ["3", "2", "3", "2", "3", "3", "3"]} +{"4002948": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006707": ["1", "2", "3", "1", "1", "1", "1"]} +{"3005892": ["1", "2", "3", "1", "1", "1", "1"]} +{"4002855": ["3", "2", "3", "3", "1", "3", "3"]} +{"2007421": ["3", "3", "3", "2", "3", "3", "3"]} +{"2003198": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005920": ["3", "2", "3", "2", "3", "3", "3"]} +{"0006742": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004419": ["3", "2", "3", "1", "3", "3", "3"]} +{"7002673": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004145": ["3", "2", "3", "1", "3", "3", "2"]} +{"6002670": ["1", "2", "3", "1", "2", "1", "2"]} +{"1006849": ["3", "2", "3", "2", "3", "3", "3"]} +{"8003396": ["1", "1", "3", "1", "1", "1", "1"]} +{"3005624": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005624": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004121": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002870": ["3", "2", "3", "2", "3", "3", "3"]} +{"8002553": ["1", "2", "3", "1", "1", "1", "1"]} +{"4002484": ["3", "2", "3", "2", "2", "2", "2"]} +{"4003585": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004068": ["3", "1", "3", "1", "3", "1", "2"]} +{"7004049": ["3", "3", "2", "3", "2", "2", "2"]} +{"3004642": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006792": ["2", "1", "3", "1", "3", "2", "2"]} +{"5001381": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003432": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004746": ["1", "3", "3", "2", "1", "1", "1"]} +{"0006165": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003699": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006072": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004134": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007473": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006363": ["2", "2", "3", "1", "2", "1", "2"]} +{"3004259": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003695": ["3", "3", "3", "3", "1", "2", "3"]} +{"1005644": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001355": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003490": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007071": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005704": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005478": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006738": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004972": ["1", "3", "3", "3", "1", "1", "1"]} +{"3006316": ["2", "2", "3", "3", "1", "1", "1"]} +{"3006316": ["2", "3", "3", "3", "1", "1", "1"]} +{"0005408": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004360": ["3", "3", "3", "3", "3", "1", "3"]} +{"1004123": ["3", "2", "3", "1", "3", "3", "3"]} +{"3006506": ["1", "1", "2", "2", "3", "2", "1"]} +{"3005248": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006808": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003323": ["2", "2", "3", "1", "2", "2", "2"]} +{"3005436": ["3", "3", "3", "1", "2", "1", "2"]} +{"8003865": ["3", "3", "3", "3", "1", "2", "3"]} +{"0003959": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001962": ["2", "3", "3", "3", "2", "2", "3"]} +{"5001962": ["2", "3", "2", "3", "2", "2", "3"]} +{"7003416": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005560": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007052": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005271": ["3", "3", "3", "3", "1", "2", "3"]} +{"7003746": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003493": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004030": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006766": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002716": ["1", "3", "3", "1", "1", "1", "1"]} +{"0004152": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004178": ["3", "2", "3", "1", "2", "1", "2"]} +{"8002308": ["3", "2", "3", "1", "3", "3", "3"]} +{"2007154": ["3", "3", "3", "1", "3", "3", "3"]} +{"0005299": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003073": ["1", "2", "3", "1", "1", "1", "1"]} +{"3005142": ["3", "2", "3", "1", "3", "1", "2"]} +{"7002464": ["3", "3", "2", "3", "1", "3", "3"]} +{"3003459": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005402": ["3", "3", "2", "3", "2", "2", "3"]} +{"7004738": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003718": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006994": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004568": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002525": ["3", "2", "3", "3", "2", "3", "3"]} +{"4004333": ["3", "3", "2", "3", "1", "3", "3"]} +{"6002637": ["3", "2", "3", "1", "3", "3", "3"]} +{"6002395": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005742": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004170": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004243": ["3", "2", "3", "2", "2", "1", "3"]} +{"3006310": ["3", "3", "2", "3", "2", "2", "3"]} +{"4003740": ["3", "3", "3", "3", "3", "1", "3"]} +{"4002906": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001759": ["3", "3", "3", "2", "3", "2", "3"]} +{"2005463": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004081": ["3", "1", "3", "1", "3", "1", "1"]} +{"3003374": ["3", "3", "3", "1", "3", "3", "3"]} +{"8003805": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006963": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003982": ["3", "3", "1", "3", "1", "2", "3"]} +{"7002903": ["1", "1", "3", "1", "2", "1", "1"]} +{"4004702": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003677": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005803": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001281": ["3", "3", "2", "3", "2", "2", "3"]} +{"5001281": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003874": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005733": ["3", "2", "3", "1", "3", "3", "3"]} +{"3005231": ["3", "3", "1", "3", "1", "3", "2"]} +{"0004364": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003844": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003582": ["2", "2", "3", "1", "3", "2", "3"]} +{"7004274": ["3", "3", "3", "2", "3", "2", "3"]} +{"4002826": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002826": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002208": ["3", "3", "3", "1", "1", "2", "2"]} +{"2005729": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004300": ["3", "3", "3", "2", "1", "1", "2"]} +{"6003064": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004297": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006924": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003999": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003320": ["3", "2", "3", "2", "1", "1", "2"]} +{"7004783": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004297": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006924": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003999": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003320": ["3", "2", "3", "2", "1", "1", "2"]} +{"7004783": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004795": ["3", "3", "3", "3", "1", "2", "2"]} +{"2007480": ["3", "2", "3", "3", "3", "1", "3"]} +{"8002028": ["3", "3", "3", "1", "3", "3", "3"]} +{"1005700": ["3", "1", "3", "1", "2", "2", "2"]} +{"0004116": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004199": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003417": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005045": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004388": ["3", "3", "3", "3", "1", "2", "3"]} +{"3005081": ["3", "2", "3", "3", "2", "2", "2"]} +{"8003071": ["3", "1", "3", "1", "3", "3", "2"]} +{"1003435": ["1", "2", "3", "1", "3", "1", "1"]} +{"3006588": ["3", "3", "3", "3", "3", "1", "3"]} +{"2007112": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003066": ["3", "3", "3", "2", "2", "1", "3"]} +{"3005294": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002763": ["3", "2", "3", "1", "3", "2", "2"]} +{"6002940": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003913": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003686": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003686": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007204": ["3", "3", "2", "2", "1", "2", "2"]} +{"7003923": ["3", "3", "2", "3", "1", "1", "2"]} +{"1006981": ["1", "1", "3", "1", "3", "1", "1"]} +{"2003797": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003727": ["3", "2", "3", "1", "3", "2", "2"]} +{"1006663": ["3", "2", "3", "2", "1", "1", "2"]} +{"8001580": ["3", "2", "3", "1", "2", "2", "2"]} +{"8001807": ["3", "2", "3", "2", "2", "2", "2"]} +{"1006003": ["2", "2", "3", "2", "1", "1", "1"]} +{"5001993": ["3", "3", "2", "2", "3", "3", "3"]} +{"3004216": ["3", "3", "3", "2", "3", "2", "3"]} +{"4004745": ["3", "2", "3", "2", "2", "1", "2"]} +{"3004955": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003661": ["3", "3", "3", "3", "1", "2", "3"]} +{"7004803": ["3", "2", "3", "1", "2", "2", "2"]} +{"0006079": ["3", "3", "2", "2", "1", "1", "2"]} +{"2004693": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003517": ["3", "3", "3", "3", "2", "2", "3"]} +{"5001221": ["3", "2", "3", "2", "3", "2", "3"]} +{"7004517": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007921": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004012": ["3", "3", "1", "3", "2", "3", "3"]} +{"3005599": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003646": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004844": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002917": ["3", "2", "3", "2", "3", "2", "3"]} +{"7003544": ["3", "3", "3", "1", "3", "2", "3"]} +{"4004382": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005246": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004832": ["3", "3", "2", "3", "2", "2", "3"]} +{"6002210": ["3", "1", "3", "1", "2", "1", "2"]} +{"3005804": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005549": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005549": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003595": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005767": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003818": ["2", "2", "3", "3", "1", "2", "2"]} +{"1005168": ["3", "2", "3", "1", "3", "2", "2"]} +{"0005744": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002920": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002488": ["1", "2", "3", "1", "1", "1", "1"]} +{"1006427": ["3", "2", "3", "1", "3", "2", "2"]} +{"0005417": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005417": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007868": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006242": ["3", "3", "3", "2", "3", "2", "2"]} +{"7004845": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005943": ["3", "3", "3", "1", "3", "2", "2"]} +{"7004237": ["3", "2", "3", "2", "3", "3", "3"]} +{"2005878": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003981": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004433": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005403": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005403": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001447": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003677": ["3", "3", "2", "3", "2", "3", "3"]} +{"7002845": ["3", "3", "3", "1", "3", "3", "3"]} +{"3003910": ["1", "1", "3", "1", "3", "1", "1"]} +{"4002298": ["3", "3", "1", "2", "3", "1", "2"]} +{"3006783": ["3", "3", "2", "3", "1", "3", "2"]} +{"0003934": ["3", "3", "3", "3", "1", "3", "3"]} +{"0003884": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001425": ["3", "2", "3", "3", "1", "3", "3"]} +{"5001315": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001315": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003032": ["3", "3", "1", "3", "2", "3", "3"]} +{"0003528": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005424": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004167": ["3", "1", "3", "1", "3", "1", "2"]} +{"1005090": ["3", "2", "3", "2", "3", "1", "2"]} +{"6003253": ["1", "3", "3", "1", "3", "1", "1"]} +{"2003730": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003730": ["3", "3", "2", "3", "1", "3", "3"]} +{"0003038": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003109": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004626": ["3", "3", "2", "3", "1", "2", "3"]} +{"5001113": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006649": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003085": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004083": ["3", "3", "3", "3", "1", "2", "3"]} +{"7002241": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005151": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003614": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007552": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005035": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004611": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003063": ["3", "2", "3", "1", "2", "2", "2"]} +{"7003236": ["3", "3", "2", "3", "2", "3", "3"]} +{"0006485": ["3", "3", "2", "3", "2", "3", "3"]} +{"0006252": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004126": ["1", "1", "3", "1", "3", "1", "1"]} +{"3004126": ["1", "2", "3", "1", "3", "1", "1"]} +{"3004850": ["2", "1", "3", "1", "2", "2", "2"]} +{"3004052": ["3", "2", "2", "3", "3", "3", "3"]} +{"2003292": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004295": ["1", "1", "3", "1", "1", "1", "1"]} +{"7004241": ["2", "2", "3", "1", "2", "1", "2"]} +{"2005645": ["3", "3", "3", "1", "3", "2", "3"]} +{"1004799": ["1", "1", "3", "1", "3", "1", "2"]} +{"6002336": ["1", "1", "3", "1", "2", "2", "1"]} +{"0006392": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003328": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006090": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006090": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004527": ["2", "2", "3", "1", "3", "2", "2"]} +{"1004305": ["2", "1", "3", "2", "3", "1", "1"]} +{"3004141": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003558": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003498": ["2", "2", "3", "1", "2", "1", "2"]} +{"4003813": ["3", "2", "3", "1", "3", "3", "3"]} +{"0005888": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007673": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004482": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004849": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003769": ["1", "1", "3", "1", "1", "1", "1"]} +{"0006088": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004939": ["3", "2", "3", "3", "3", "2", "2"]} +{"7003427": ["3", "2", "3", "2", "2", "2", "2"]} +{"1004382": ["3", "2", "3", "1", "3", "3", "3"]} +{"4003758": ["3", "3", "3", "3", "1", "3", "3"]} +{"8003114": ["1", "2", "3", "1", "2", "2", "2"]} +{"7004949": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001761": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005745": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003877": ["3", "2", "3", "2", "2", "2", "2"]} +{"0003258": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005458": ["3", "2", "3", "1", "3", "2", "3"]} +{"1005012": ["2", "2", "3", "1", "3", "2", "2"]} +{"3006340": ["3", "3", "3", "3", "1", "2", "2"]} +{"0004480": ["3", "3", "3", "3", "1", "1", "2"]} +{"0003102": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003102": ["3", "3", "2", "3", "2", "3", "3"]} +{"4002135": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003773": ["1", "3", "3", "3", "1", "1", "2"]} +{"8002573": ["2", "3", "3", "2", "3", "1", "2"]} +{"0005229": ["3", "3", "3", "2", "1", "2", "2"]} +{"3003488": ["3", "2", "3", "3", "2", "2", "2"]} +{"1006608": ["2", "1", "3", "1", "3", "1", "1"]} +{"8001019": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004987": ["2", "2", "3", "1", "3", "2", "2"]} +{"4004457": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002824": ["2", "3", "3", "1", "2", "2", "2"]} +{"1005397": ["3", "2", "3", "2", "3", "2", "2"]} +{"3004742": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006269": ["3", "3", "1", "3", "1", "2", "2"]} +{"0003734": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003438": ["2", "2", "3", "1", "2", "3", "2"]} +{"4003742": ["3", "2", "3", "1", "2", "2", "2"]} +{"0003037": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004549": ["1", "2", "3", "1", "3", "1", "1"]} +{"2003019": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003019": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006560": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002021": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003285": ["3", "3", "3", "3", "1", "3", "3"]} +{"8001785": ["1", "3", "3", "1", "1", "1", "1"]} +{"1005606": ["1", "1", "3", "1", "3", "1", "1"]} +{"0006539": ["3", "3", "1", "3", "1", "3", "3"]} +{"6003246": ["3", "2", "3", "1", "3", "2", "3"]} +{"7004611": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002849": ["3", "3", "3", "3", "1", "2", "3"]} +{"1005665": ["1", "1", "3", "1", "3", "2", "2"]} +{"1003436": ["1", "1", "3", "1", "3", "1", "1"]} +{"2006713": ["3", "3", "3", "2", "3", "2", "2"]} +{"2003417": ["3", "3", "2", "3", "3", "2", "3"]} +{"1004716": ["3", "1", "3", "2", "3", "3", "2"]} +{"7003494": ["3", "2", "3", "3", "3", "2", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_richard.jsonl b/webpage/res/res_rd1_16k/ans_richard.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..08b47625698c14757d3786db8af88b7a8fe031b3 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_richard.jsonl @@ -0,0 +1,1034 @@ +{"7003036": ["2", "2", "3", "3", "3", "2", "2"]} +{"1005040": ["2", "2", "2", "2", "2", "2", "2"]} +{"8003217": ["2", "2", "2", "None", "3", "2", "2"]} +{"5001452": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003510": ["1", "1", "2", "1", "2", "1", "1"]} +{"2005480": ["3", "2", "3", "2", "3", "3", "3"]} +{"6003645": ["3", "3", "3", "2", "3", "2", "3"]} +{"2004450": ["2", "3", "3", "2", "3", "2", "2"]} +{"0003802": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005421": ["2", "3", "2", "2", "3", "2", "2"]} +{"1005718": ["2", "2", "3", "2", "1", "2", "2"]} +{"2004637": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007246": ["2", "3", "3", "3", "3", "2", "3"]} +{"0005194": ["2", "3", "3", "3", "3", "2", "3"]} +{"0005478": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007292": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004807": ["2", "1", "3", "1", "1", "2", "1"]} +{"8001286": ["2", "3", "3", "1", "2", "2", "2"]} +{"8002880": ["2", "2", "3", "3", "1", "2", "2"]} +{"0003010": ["3", "3", "1", "2", "2", "2", "2"]} +{"0003465": ["3", "3", "1", "3", "2", "1", "2"]} +{"2005681": ["2", "2", "2", "2", "2", "3", "2"]} +{"0006466": ["3", "3", "1", "2", "1", "3", "2"]} +{"3005877": ["3", "3", "1", "2", "2", "1", "2"]} +{"3004942": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003899": ["2", "1", "3", "1", "2", "2", "1"]} +{"2003705": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003816": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004036": ["3", "2", "1", "2", "2", "3", "2"]} +{"1006016": ["1", "1", "3", "1", "2", "1", "1"]} +{"4003735": ["1", "1", "None", "2", "1", "1", "1"]} +{"7002580": ["3", "2", "3", "2", "1", "2", "2"]} +{"4002039": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004179": ["3", "3", "3", "3", "None", "3", "3"]} +{"1004609": ["2", "1", "3", "1", "2", "2", "1"]} +{"3006118": ["2", "1", "3", "2", "None", "2", "2"]} +{"0003234": ["2", "2", "3", "2", "1", "2", "2"]} +{"0003054": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004060": ["2", "3", "1", "3", "2", "3", "2"]} +{"8001619": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003992": ["2", "1", "3", "2", "2", "2", "1"]} +{"7003516": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003570": ["3", "2", "3", "2", "2", "2", "2"]} +{"2004457": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003111": ["2", "2", "2", "2", "1", "2", "2"]} +{"8001303": ["2", "2", "3", "2", "1", "2", "2"]} +{"0004166": ["3", "3", "2", "2", "1", "2", "2"]} +{"3004315": ["2", "1", "3", "None", "2", "2", "2"]} +{"1004458": ["1", "1", "3", "2", "2", "2", "1"]} +{"1003740": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002230": ["2", "2", "3", "2", "1", "2", "1"]} +{"2005853": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003928": ["2", "2", "3", "2", "1", "2", "2"]} +{"0005762": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006795": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005440": ["2", "1", "1", "2", "3", "2", "1"]} +{"0003401": ["2", "3", "2", "3", "1", "3", "2"]} +{"0005020": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002455": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003553": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002154": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006258": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006139": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002193": ["3", "2", "3", "2", "2", "2", "2"]} +{"4002329": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006400": ["3", "3", "3", "2", "2", "3", "2"]} +{"1005014": ["1", "1", "3", "1", "2", "2", "1"]} +{"2005978": ["3", "3", "3", "2", "3", "2", "3"]} +{"7004763": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004948": ["2", "3", "3", "3", "2", "3", "3"]} +{"6003173": ["2", "3", "3", "3", "3", "2", "3"]} +{"0006992": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003560": ["2", "1", "3", "1", "1", "2", "1"]} +{"1004850": ["2", "1", "3", "1", "2", "2", "1"]} +{"2007745": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006684": ["1", "1", "3", "2", "3", "2", "1"]} +{"2006531": ["2", "2", "2", "2", "2", "2", "2"]} +{"2004485": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005840": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006118": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007559": ["3", "3", "3", "3", "1", "3", "3"]} +{"3005706": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004249": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005931": ["2", "2", "3", "2", "3", "3", "2"]} +{"5001815": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001067": ["3", "2", "3", "2", "2", "3", "3"]} +{"6002205": ["2", "2", "3", "2", "3", "2", "2"]} +{"8001789": ["2", "2", "3", "2", "2", "2", "2"]} +{"3003389": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004567": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003436": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006093": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006339": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004379": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004577": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003357": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003568": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002685": ["2", "2", "3", "3", "2", "3", "2"]} +{"4003209": ["2", "2", "3", "3", "3", "3", "3"]} +{"8001424": ["1", "1", "3", "1", "2", "1", "1"]} +{"1003089": ["1", "2", "3", "1", "1", "1", "1"]} +{"6004279": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002476": ["3", "2", "3", "3", "3", "3", "3"]} +{"0005052": ["2", "3", "3", "3", "3", "3", "3"]} +{"7003809": ["2", "2", "3", "3", "3", "3", "3"]} +{"4002376": ["2", "1", "3", "2", "3", "2", "2"]} +{"0006807": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003900": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005460": ["3", "2", "3", "3", "1", "3", "2"]} +{"0003687": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004152": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002278": ["1", "1", "3", "2", "1", "1", "1"]} +{"7003366": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002583": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005398": ["2", "3", "3", "3", "2", "2", "2"]} +{"4002240": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003271": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004314": ["3", "2", "3", "3", "3", "3", "3"]} +{"0004673": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003751": ["3", "2", "3", "2", "3", "2", "3"]} +{"2004277": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006236": ["2", "2", "3", "2", "3", "3", "2"]} +{"7004729": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004154": ["3", "2", "3", "3", "3", "3", "3"]} +{"1006726": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003217": ["2", "2", "2", "2", "3", "2", "1"]} +{"4003735": ["1", "1", "2", "2", "1", "1", "1"]} +{"2004179": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006118": ["2", "1", "3", "2", "2", "2", "2"]} +{"3004315": ["2", "1", "3", "2", "2", "2", "2"]} +{"7003158": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003434": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006970": ["3", "3", "3", "2", "2", "3", "3"]} +{"0004392": ["3", "3", "3", "2", "2", "2", "3"]} +{"0003205": ["3", "3", "3", "3", "2", "2", "3"]} +{"0006404": ["2", "2", "3", "2", "3", "2", "2"]} +{"0005011": ["2", "3", "3", "3", "2", "2", "3"]} +{"4004672": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002809": ["1", "1", "3", "1", "2", "1", "1"]} +{"4004253": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004994": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005696": ["2", "2", "3", "2", "None", "2", "2"]} +{"7002700": ["1", "1", "3", "2", "1", "2", "1"]} +{"1003993": ["2", "2", "3", "2", "3", "2", "2"]} +{"1005696": ["2", "2", "3", "2", "3", "2", "2"]} +{"8003530": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005031": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005549": ["2", "1", "3", "1", "1", "2", "1"]} +{"6002589": ["2", "1", "3", "1", "2", "1", "1"]} +{"2003044": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001083": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003976": ["2", "2", "3", "2", "2", "2", "2"]} +{"3003577": ["3", "3", "2", "3", "2", "2", "2"]} +{"3006972": ["2", "3", "2", "2", "2", "2", "2"]} +{"6003952": ["2", "2", "3", "2", "2", "2", "2"]} +{"2007858": ["None", "3", "1", "3", "3", "3", "3"]} +{"0004047": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003959": ["3", "3", "3", "3", "None", "3", "3"]} +{"2007858": ["3", "3", "1", "3", "3", "3", "3"]} +{"2003959": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001702": ["3", "3", "1", "3", "2", "2", "2"]} +{"0004935": ["2", "3", "3", "3", "1", "2", "2"]} +{"2007291": ["3", "3", "3", "3", "1", "3", "3"]} +{"4003951": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004290": ["1", "1", "3", "1", "3", "2", "1"]} +{"1004753": ["1", "2", "3", "1", "2", "2", "1"]} +{"8001792": ["2", "3", "3", "2", "2", "2", "2"]} +{"0005710": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004512": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005122": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004962": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005920": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004070": ["2", "2", "3", "2", "2", "2", "1"]} +{"8002886": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001098": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003484": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004802": ["2", "2", "1", "2", "2", "3", "2"]} +{"8001834": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003196": ["3", "2", "3", "3", "1", "2", "2"]} +{"6003303": ["2", "1", "3", "2", "2", "2", "1"]} +{"2003095": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003707": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003454": ["3", "1", "3", "2", "2", "2", "2"]} +{"7002764": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005222": ["1", "1", "3", "1", "3", "2", "1"]} +{"2007174": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002366": ["2", "2", "3", "2", "2", "1", "2"]} +{"1004875": ["2", "1", "3", "2", "2", "2", "1"]} +{"0005753": ["3", "3", "3", "3", "1", "3", "3"]} +{"0004559": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003616": ["3", "2", "3", "2", "2", "3", "2"]} +{"8002617": ["2", "2", "3", "2", "1", "3", "2"]} +{"2006779": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006663": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002544": ["2", "3", "3", "2", "2", "3", "3"]} +{"0004895": ["2", "3", "3", "3", "2", "3", "2"]} +{"3003578": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003052": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003342": ["2", "2", "3", "2", "2", "3", "2"]} +{"3005908": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004521": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004402": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003265": ["2", "1", "3", "2", "3", "2", "1"]} +{"1006943": ["2", "2", "3", "2", "2", "2", "2"]} +{"0004282": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006134": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003428": ["2", "2", "3", "3", "2", "3", "3"]} +{"1003896": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006954": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003601": ["2", "2", "3", "2", "2", "3", "None"]} +{"7003601": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001613": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004926": ["2", "2", "3", "2", "2", "3", "1"]} +{"1004050": ["2", "2", "3", "2", "2", "2", "1"]} +{"8003581": ["2", "3", "3", "2", "3", "2", "2"]} +{"2005871": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003975": ["2", "1", "3", "2", "2", "2", "1"]} +{"2007488": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005842": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002654": ["2", "3", "3", "3", "3", "3", "2"]} +{"3004569": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001512": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004539": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005991": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004694": ["3", "2", "3", "2", "3", "3", "3"]} +{"6003128": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006902": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001783": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003665": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003970": ["3", "2", "3", "2", "1", "2", "1"]} +{"0005053": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003931": ["2", "3", "3", "3", "3", "3", "2"]} +{"3006805": ["2", "2", "3", "3", "3", "3", "2"]} +{"3004353": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003048": ["2", "2", "3", "2", "2", "3", "2"]} +{"6002989": ["3", "1", "3", "2", "2", "3", "2"]} +{"2005319": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002848": ["3", "2", "3", "3", "3", "3", "3"]} +{"8003363": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002727": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003681": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004026": ["1", "1", "3", "2", "2", "2", "1"]} +{"0003891": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006010": ["2", "3", "3", "3", "3", "2", "2"]} +{"1004031": ["1", "2", "3", "1", "3", "3", "1"]} +{"2003807": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005172": ["1", "2", "3", "2", "3", "3", "1"]} +{"6003397": ["3", "3", "2", "3", "None", "1", "2"]} +{"3004578": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003397": ["3", "3", "2", "3", "3", "1", "2"]} +{"4003139": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002135": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004172": ["3", "2", "3", "3", "3", "2", "2"]} +{"3004193": ["2", "2", "2", "2", "1", "2", "2"]} +{"8003935": ["2", "2", "3", "2", "2", "2", "2"]} +{"2005258": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003390": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006768": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006794": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003986": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004533": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003063": ["2", "3", "3", "3", "3", "3", "3"]} +{"3004076": ["3", "3", "1", "3", "2", "3", "2"]} +{"3003414": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006750": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002438": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003098": ["3", "3", "3", "3", "1", "2", "2"]} +{"8002998": ["2", "2", "3", "3", "1", "2", "2"]} +{"6004439": ["2", "2", "3", "3", "2", "3", "2"]} +{"1003768": ["1", "2", "3", "1", "2", "2", "1"]} +{"2006595": ["3", "2", "3", "2", "2", "2", "2"]} +{"0006542": ["3", "3", "2", "3", "2", "3", "2"]} +{"1005910": ["2", "2", "3", "1", "3", "2", "1"]} +{"4003393": ["2", "2", "3", "2", "2", "2", "2"]} +{"4002143": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004104": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007958": ["3", "3", "3", "3", "2", "2", "3"]} +{"8002874": ["2", "2", "3", "2", "2", "2", "1"]} +{"2006628": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004118": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006809": ["1", "2", "3", "1", "2", "2", "1"]} +{"4002847": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004662": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004440": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004859": ["2", "2", "3", "3", "3", "3", "2"]} +{"1005681": ["2", "2", "3", "2", "3", "2", "2"]} +{"7004927": ["3", "3", "3", "2", "2", "3", "3"]} +{"8002310": ["3", "2", "3", "3", "2", "3", "2"]} +{"3004710": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002471": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004429": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006541": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004988": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004580": ["3", "2", "3", "3", "3", "3", "3"]} +{"8001336": ["2", "2", "3", "2", "2", "3", "2"]} +{"4003620": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001149": ["2", "3", "3", "2", "2", "3", "2"]} +{"2004846": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002019": ["2", "2", "3", "1", "1", "2", "1"]} +{"5001968": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002927": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004772": ["2", "3", "3", "3", "3", "3", "2"]} +{"2006821": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001677": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005328": ["1", "2", "3", "1", "3", "2", "1"]} +{"0006188": ["3", "3", "2", "3", "2", "3", "2"]} +{"3005218": ["2", "2", "3", "2", "2", "3", "2"]} +{"8003573": ["3", "2", "3", "2", "1", "3", "2"]} +{"0006497": ["2", "3", "3", "3", "2", "3", "2"]} +{"8002527": ["3", "2", "3", "2", "2", "3", "2"]} +{"8001315": ["1", "2", "3", "2", "2", "3", "1"]} +{"3004367": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003127": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003010": ["1", "1", "3", "1", "3", "2", "1"]} +{"5001990": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001607": ["1", "2", "3", "2", "2", "2", "1"]} +{"3003546": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004087": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003694": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003914": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004254": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001073": ["2", "2", "3", "2", "None", "3", "2"]} +{"7004400": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005264": ["3", "3", "2", "3", "2", "3", "3"]} +{"7002893": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003514": ["2", "2", "3", "2", "1", "2", "1"]} +{"7002299": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005451": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005101": ["2", "3", "3", "3", "2", "3", "2"]} +{"0003477": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003808": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005163": ["3", "3", "3", "3", "3", "1", "2"]} +{"0005281": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006120": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002659": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006223": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001224": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002683": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006886": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001073": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006484": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005957": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006078": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004016": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006948": ["2", "2", "3", "2", "3", "3", "2"]} +{"0005136": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005912": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003533": ["2", "3", "3", "3", "3", "2", "3"]} +{"3004870": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006830": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002898": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005426": ["1", "1", "3", "1", "2", "2", "1"]} +{"2005575": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003442": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002080": ["2", "2", "3", "2", "2", "3", "2"]} +{"4004336": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003571": ["1", "2", "3", "2", "2", "2", "1"]} +{"6002730": ["3", "2", "3", "3", "1", "2", "None"]} +{"6002730": ["3", "2", "3", "3", "1", "2", "2"]} +{"6002715": ["1", "2", "3", "2", "3", "2", "2"]} +{"1003483": ["1", "1", "3", "2", "3", "3", "1"]} +{"3004976": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002735": ["3", "3", "3", "3", "2", "2", "3"]} +{"8002616": ["2", "2", "3", "2", "2", "2", "2"]} +{"0003150": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004881": ["2", "3", "3", "2", "2", "3", "3"]} +{"1004097": ["1", "2", "3", "2", "2", "2", "1"]} +{"6003987": ["2", "2", "3", "2", "2", "2", "2"]} +{"7002414": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004794": ["1", "1", "3", "1", "2", "2", "1"]} +{"2007004": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005571": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003856": ["2", "2", "3", "2", "2", "2", "2"]} +{"8003195": ["2", "2", "3", "2", "3", "2", "2"]} +{"7003136": ["3", "3", "3", "3", "1", "3", "3"]} +{"7003661": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003228": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001109": ["1", "2", "3", "3", "3", "3", "2"]} +{"3003837": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006580": ["1", "1", "3", "1", "3", "2", "1"]} +{"8003833": ["2", "2", "3", "2", "2", "2", "2"]} +{"2005250": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006546": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004792": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004128": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003446": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003350": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004186": ["2", "2", "3", "3", "3", "3", "2"]} +{"8003410": ["3", "3", "3", "3", "2", "2", "2"]} +{"7002973": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006376": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003891": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005986": ["3", "2", "3", "3", "2", "3", "3"]} +{"3005940": ["2", "3", "3", "2", "2", "3", "2"]} +{"4004692": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006517": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001252": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007497": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007497": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004747": ["1", "1", "3", "1", "2", "2", "1"]} +{"6003034": ["2", "3", "3", "2", "3", "3", "2"]} +{"4002408": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004885": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003547": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006206": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004947": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006878": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001453": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004455": ["1", "1", "3", "1", "3", "2", "1"]} +{"7002255": ["3", "3", "3", "None", "3", "3", "3"]} +{"7002255": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005292": ["3", "3", "3", "3", "None", "3", "3"]} +{"0005292": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003386": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004222": ["1", "1", "3", "1", "2", "2", "1"]} +{"7002090": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003020": ["1", "1", "3", "1", "2", "2", "1"]} +{"1006102": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004142": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006373": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002896": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003330": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003881": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003590": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003315": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003650": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002620": ["1", "1", "3", "1", "2", "2", "1"]} +{"1005060": ["1", "1", "3", "1", "1", "2", "1"]} +{"3004774": ["3", "3", "3", "3", "2", "2", "2"]} +{"2005000": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003963": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003640": ["3", "2", "3", "3", "3", "2", "3"]} +{"3003996": ["2", "2", "3", "2", "3", "1", "2"]} +{"4002968": ["2", "2", "3", "2", "2", "2", "2"]} +{"3004414": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005643": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002779": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003430": ["1", "1", "3", "1", "1", "3", "1"]} +{"4002477": ["3", "3", "3", "3", "1", "3", "3"]} +{"8001825": ["2", "2", "3", "2", "2", "2", "2"]} +{"8001316": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004069": ["2", "2", "3", "2", "2", "2", "2"]} +{"2004644": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003119": ["3", "2", "3", "2", "3", "3", "2"]} +{"2003291": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001474": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003547": ["1", "2", "3", "2", "3", "3", "2"]} +{"8003142": ["2", "3", "3", "3", "3", "2", "2"]} +{"7002493": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004694": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003424": ["2", "2", "3", "2", "2", "2", "1"]} +{"8002491": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006083": ["3", "2", "3", "2", "3", "3", "3"]} +{"1004020": ["3", "2", "3", "2", "3", "3", "2"]} +{"6003891": ["2", "2", "3", "2", "2", "3", "2"]} +{"4004195": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005819": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007090": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002442": ["2", "3", "3", "2", "3", "2", "2"]} +{"1003817": ["2", "1", "3", "1", "3", "2", "1"]} +{"5001000": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003486": ["2", "2", "3", "2", "3", "2", "2"]} +{"1004980": ["1", "1", "3", "1", "2", "2", "1"]} +{"0006589": ["2", "2", "3", "2", "2", "1", "1"]} +{"4004275": ["3", "3", "3", "3", "1", "3", "3"]} +{"8003867": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006197": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005198": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001812": ["2", "2", "3", "2", "1", "2", "1"]} +{"6003637": ["3", "3", "3", "2", "2", "3", "3"]} +{"0004707": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007525": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002043": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001269": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002941": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001047": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004531": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002816": ["3", "2", "3", "3", "2", "2", "2"]} +{"0006256": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006609": ["1", "1", "3", "1", "1", "3", "1"]} +{"4004016": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001623": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002496": ["2", "3", "3", "3", "2", "3", "3"]} +{"7002821": ["2", "3", "3", "2", "3", "3", "2"]} +{"6004232": ["2", "3", "3", "3", "3", "3", "2"]} +{"7002596": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003075": ["1", "1", "3", "1", "2", "3", "1"]} +{"1004616": ["1", "1", "3", "1", "3", "3", "1"]} +{"2004003": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004047": ["3", "3", "3", "3", "2", "2", "3"]} +{"7003397": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001587": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003584": ["2", "3", "3", "3", "2", "3", "3"]} +{"0004523": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006197": ["2", "1", "3", "1", "2", "2", "1"]} +{"5001763": ["3", "3", "3", "3", "1", "3", "3"]} +{"3004723": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005945": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006242": ["2", "2", "3", "1", "3", "3", "1"]} +{"1004604": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003714": ["2", "2", "3", "2", "1", "3", "2"]} +{"6002807": ["2", "3", "3", "2", "3", "3", "2"]} +{"3004454": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004647": ["2", "3", "1", "3", "3", "3", "3"]} +{"3005870": ["2", "3", "3", "2", "3", "3", "2"]} +{"2005137": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004817": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001165": ["2", "1", "3", "2", "2", "2", "2"]} +{"6002201": ["2", "2", "3", "2", "2", "2", "2"]} +{"4003672": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006500": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004125": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003446": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004187": ["2", "3", "3", "3", "2", "3", "3"]} +{"8002633": ["2", "2", "3", "2", "3", "3", "2"]} +{"0006132": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001391": ["2", "3", "3", "3", "2", "3", "3"]} +{"1004639": ["2", "3", "3", "2", "2", "2", "2"]} +{"1005355": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002542": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005451": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004470": ["2", "3", "3", "3", "2", "3", "3"]} +{"6004332": ["2", "2", "3", "2", "3", "2", "2"]} +{"0006300": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005730": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005430": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001572": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005385": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003176": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003136": ["2", "3", "1", "3", "3", "2", "2"]} +{"7003462": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006173": ["2", "3", "3", "3", "3", "3", "2"]} +{"1005063": ["1", "2", "3", "1", "2", "2", "1"]} +{"3006018": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005511": ["2", "3", "1", "3", "3", "3", "3"]} +{"3003314": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001376": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002820": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003084": ["3", "1", "3", "1", "2", "3", "1"]} +{"3004436": ["3", "2", "3", "3", "3", "2", "3"]} +{"7003081": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006638": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004673": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007232": ["2", "3", "3", "3", "2", "3", "3"]} +{"7002131": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003186": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003933": ["3", "3", "3", "3", "2", "1", "3"]} +{"5001742": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004375": ["2", "3", "3", "3", "2", "3", "3"]} +{"1004682": ["1", "1", "3", "1", "3", "2", "1"]} +{"3004295": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005583": ["2", "3", "3", "3", "None", "3", "3"]} +{"0005583": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006863": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006185": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003014": ["2", "2", "3", "2", "3", "3", "2"]} +{"6003871": ["2", "2", "3", "3", "3", "3", "2"]} +{"0004113": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004839": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003995": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004131": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002627": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001651": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003765": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002521": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006604": ["2", "2", "3", "2", "2", "2", "2"]} +{"1004011": ["1", "1", "3", "2", "2", "2", "1"]} +{"0005502": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004697": ["1", "1", "3", "1", "2", "2", "1"]} +{"1006204": ["1", "1", "3", "1", "3", "2", "1"]} +{"2004987": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003638": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006220": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002846": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003650": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003275": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004642": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005791": ["1", "1", "3", "1", "2", "2", "1"]} +{"4002163": ["1", "2", "3", "2", "2", "3", "2"]} +{"6002311": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003501": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001802": ["2", "2", "3", "3", "2", "3", "2"]} +{"0006555": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004601": ["3", "3", "1", "3", "2", "3", "3"]} +{"8001143": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003415": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007202": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007202": ["3", "3", "3", "3", "1", "2", "3"]} +{"4003980": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006789": ["2", "3", "3", "2", "2", "3", "2"]} +{"2005504": ["2", "3", "2", "3", "2", "3", "3"]} +{"1006146": ["1", "1", "3", "2", "3", "3", "1"]} +{"0005874": ["2", "None", "3", "2", "3", "2", "2"]} +{"1004186": ["1", "1", "3", "1", "3", "2", "1"]} +{"1006513": ["1", "1", "3", "1", "2", "3", "1"]} +{"0005874": ["2", "2", "3", "2", "3", "2", "2"]} +{"1003204": ["2", "1", "3", "2", "3", "3", "1"]} +{"0006881": ["2", "3", "3", "3", "3", "2", "3"]} +{"4004240": ["2", "2", "3", "3", "3", "3", "3"]} +{"2004750": ["3", "2", "3", "3", "3", "2", "3"]} +{"3003907": ["2", "3", "3", "2", "3", "3", "3"]} +{"7004955": ["2", "3", "3", "3", "2", "3", "3"]} +{"4003574": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003239": ["2", "3", "3", "3", "1", "3", "2"]} +{"1003456": ["1", "1", "3", "1", "2", "3", "1"]} +{"4003876": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003228": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004253": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003339": ["1", "1", "3", "1", "3", "3", "1"]} +{"4004124": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006796": ["1", "1", "3", "1", "1", "3", "1"]} +{"3003745": ["2", "3", "3", "2", "2", "1", "1"]} +{"4003807": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003622": ["3", "2", "3", "3", "3", "3", "3"]} +{"3003144": ["2", "2", "3", "3", "2", "3", "2"]} +{"0003339": ["2", "2", "3", "2", "2", "3", "1"]} +{"6003426": ["2", "2", "3", "2", "3", "3", "2"]} +{"7004437": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005788": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002892": ["None", "3", "3", "3", "3", "2", "3"]} +{"0003248": ["2", "3", "2", "3", "3", "3", "3"]} +{"4004033": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003662": ["3", "3", "3", "2", "1", "3", "3"]} +{"1005646": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002892": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003529": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003854": ["1", "1", "3", "1", "3", "3", "1"]} +{"1006780": ["2", "2", "3", "2", "2", "3", "1"]} +{"2003239": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005508": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006926": ["2", "3", "3", "2", "3", "1", "2"]} +{"4002709": ["2", "3", "3", "3", "3", "3", "2"]} +{"2003144": ["3", "2", "3", "3", "3", "3", "3"]} +{"6002697": ["2", "3", "3", "2", "3", "3", "2"]} +{"8003065": ["1", "2", "3", "2", "3", "3", "1"]} +{"2007906": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004975": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006823": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007564": ["2", "3", "3", "2", "3", "3", "3"]} +{"1005490": ["1", "1", "3", "2", "2", "2", "1"]} +{"1006861": ["1", "1", "3", "1", "2", "3", "1"]} +{"2003265": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001233": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007346": ["2", "2", "3", "2", "2", "3", "1"]} +{"8002533": ["2", "2", "3", "2", "3", "3", "2"]} +{"2005172": ["2", "3", "3", "3", "3", "3", "3"]} +{"4003883": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005179": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003801": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002026": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001177": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003119": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002809": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003823": ["3", "3", "1", "3", "3", "3", "3"]} +{"8002355": ["2", "1", "3", "2", "1", "3", "1"]} +{"8001890": ["2", "3", "3", "2", "2", "3", "2"]} +{"0005210": ["2", "3", "3", "3", "2", "3", "3"]} +{"6004512": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007139": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004855": ["1", "2", "3", "2", "3", "3", "1"]} +{"3004222": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005484": ["1", "2", "3", "1", "2", "3", "1"]} +{"8001639": ["1", "2", "3", "2", "3", "2", "2"]} +{"5001324": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001856": ["2", "3", "3", "2", "3", "3", "2"]} +{"2007889": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002961": ["2", "3", "3", "2", "3", "3", "3"]} +{"7004576": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004542": ["2", "2", "3", "2", "3", "2", "2"]} +{"4002507": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004030": ["2", "3", "3", "3", "2", "3", "3"]} +{"0004879": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002205": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006241": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003431": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003393": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005796": ["3", "2", "3", "2", "3", "3", "3"]} +{"3006405": ["1", "2", "3", "2", "3", "3", "2"]} +{"1004882": ["1", "1", "3", "1", "2", "3", "1"]} +{"2005719": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001468": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004018": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005120": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005741": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003695": ["2", "2", "3", "2", "2", "3", "2"]} +{"2003824": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004863": ["2", "3", "3", "2", "3", "3", "2"]} +{"8003552": ["2", "3", "3", "2", "3", "3", "2"]} +{"1005411": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006753": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007923": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002385": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001351": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003624": ["2", "3", "None", "2", "3", "3", "2"]} +{"4003474": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003573": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003624": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003720": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004755": ["2", "3", "3", "3", "2", "3", "3"]} +{"4003053": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004930": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003398": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006883": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006028": ["1", "1", "3", "2", "3", "3", "1"]} +{"5001235": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004514": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007455": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003609": ["3", "3", "1", "3", "3", "3", "3"]} +{"5001378": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004535": ["2", "3", "3", "3", "None", "3", "3"]} +{"5001682": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004535": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002379": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002230": ["2", "2", "3", "3", "2", "3", "2"]} +{"3004818": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004448": ["3", "3", "3", "2", "2", "3", "3"]} +{"8002767": ["2", "2", "3", "2", "2", "3", "1"]} +{"2003773": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005904": ["2", "3", "2", "3", "1", "3", "2"]} +{"3004575": ["2", "3", "2", "3", "3", "3", "3"]} +{"1004351": ["2", "2", "3", "1", "2", "3", "1"]} +{"7002851": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002867": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002280": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003208": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004341": ["3", "3", "None", "3", "2", "3", "2"]} +{"6004341": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006940": ["2", "3", "3", "2", "2", "3", "2"]} +{"4002245": ["3", "2", "3", "3", "2", "3", "2"]} +{"6003669": ["3", "None", "3", "3", "3", "2", "2"]} +{"3004450": ["2", "1", "2", "2", "2", "3", "1"]} +{"6003669": ["3", "2", "3", "3", "3", "2", "2"]} +{"6002571": ["2", "2", "3", "2", "2", "3", "2"]} +{"4003628": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005992": ["2", "3", "3", "3", "3", "3", "2"]} +{"8003140": ["1", "2", "3", "2", "1", "3", "1"]} +{"3004161": ["2", "3", "3", "3", "2", "3", "2"]} +{"1005570": ["1", "1", "3", "1", "2", "3", "1"]} +{"8003067": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003546": ["2", "2", "3", "2", "2", "3", "1"]} +{"3006769": ["2", "2", "3", "2", "2", "3", "2"]} +{"4002690": ["1", "2", "3", "2", "2", "3", "2"]} +{"7004601": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003136": ["2", "3", "3", "3", "3", "2", "3"]} +{"0003424": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003503": ["2", "2", "3", "2", "3", "3", "2"]} +{"3004853": ["None", "3", "3", "2", "3", "3", "2"]} +{"1003759": ["1", "1", "3", "2", "3", "3", "1"]} +{"2006200": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002199": ["2", "3", "None", "2", "2", "3", "2"]} +{"3004842": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003502": ["3", "3", "3", "3", "None", "3", "3"]} +{"3004853": ["2", "3", "3", "2", "3", "3", "2"]} +{"6002199": ["2", "3", "3", "2", "2", "3", "2"]} +{"4003502": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002514": ["3", "3", "1", "3", "2", "3", "3"]} +{"6004053": ["1", "1", "3", "2", "2", "3", "2"]} +{"8002255": ["2", "3", "3", "2", "2", "3", "2"]} +{"8002495": ["2", "1", "3", "2", "2", "3", "1"]} +{"2003022": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004580": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004385": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006798": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001729": ["3", "2", "3", "3", "2", "3", "3"]} +{"7004414": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003923": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003162": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005727": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002760": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003142": ["2", "3", "2", "3", "3", "3", "3"]} +{"3005457": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003436": ["2", "2", "3", "2", "1", "3", "1"]} +{"0005432": ["2", "3", "3", "3", "1", "2", "3"]} +{"0005794": ["3", "3", "2", "3", "2", "2", "3"]} +{"2006874": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001243": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004346": ["3", "3", "1", "3", "3", "3", "3"]} +{"8001763": ["1", "1", "3", "2", "2", "2", "1"]} +{"7004249": ["2", "3", "1", "3", "3", "3", "3"]} +{"1004831": ["1", "1", "3", "1", "3", "3", "1"]} +{"2003121": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001110": ["1", "2", "3", "2", "3", "3", "1"]} +{"2005902": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004033": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006157": ["1", "2", "3", "2", "3", "3", "1"]} +{"6004396": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003978": ["2", "3", "3", "2", "3", "3", "3"]} +{"3003343": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003343": ["2", "3", "3", "3", "3", "3", "2"]} +{"3004576": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003463": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003030": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003222": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003667": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004869": ["2", "1", "3", "2", "3", "3", "1"]} +{"8001213": ["2", "2", "3", "2", "3", "3", "1"]} +{"3004305": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004142": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003451": ["2", "2", "3", "3", "3", "3", "3"]} +{"4002953": ["2", "3", "3", "2", "2", "3", "2"]} +{"0006906": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003021": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003784": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003687": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003529": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004487": ["3", "2", "3", "3", "3", "3", "3"]} +{"0004089": ["2", "3", "3", "2", "3", "3", "3"]} +{"6002602": ["3", "2", "3", "2", "3", "3", "2"]} +{"1004394": ["1", "1", "3", "1", "3", "3", "1"]} +{"8002959": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004845": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002313": ["2", "2", "3", "3", "3", "3", "2"]} +{"1004131": ["2", "1", "3", "3", "3", "3", "1"]} +{"1006747": ["1", "1", "3", "2", "3", "3", "1"]} +{"2006989": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006677": ["3", "2", "3", "3", "3", "3", "3"]} +{"2006677": ["3", "2", "2", "3", "3", "3", "3"]} +{"3004735": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006607": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003729": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003068": ["2", "2", "3", "None", "2", "3", "2"]} +{"4003916": ["2", "3", "3", "3", "3", "2", "2"]} +{"1005776": ["1", "1", "3", "2", "3", "3", "1"]} +{"8003068": ["2", "2", "3", "3", "2", "3", "2"]} +{"7003444": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007963": ["3", "3", "1", "3", "3", "3", "3"]} +{"7003531": ["2", "2", "3", "3", "3", "3", "2"]} +{"2003541": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006456": ["1", "1", "3", "2", "3", "3", "1"]} +{"7002256": ["2", "3", "3", "3", "3", "3", "3"]} +{"2003244": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005953": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001122": ["2", "1", "3", "2", "2", "3", "1"]} +{"0006654": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004698": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006623": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002635": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002202": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005873": ["1", "1", "3", "2", "3", "3", "1"]} +{"0003775": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005180": ["2", "3", "3", "3", "3", "3", "3"]} +{"4004296": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005749": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003046": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007093": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004480": ["3", "2", "3", "3", "3", "3", "3"]} +{"0004324": ["2", "3", "3", "3", "3", "2", "2"]} +{"2003781": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003660": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002682": ["2", "2", "3", "2", "1", "3", "2"]} +{"2005528": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004858": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003458": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006367": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002506": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005767": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003847": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003325": ["1", "1", "3", "1", "3", "3", "1"]} +{"3003927": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003171": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006274": ["3", "2", "3", "3", "2", "3", "3"]} +{"8001496": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002678": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006224": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003584": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001824": ["3", "3", "1", "3", "2", "3", "3"]} +{"0006705": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005760": ["2", "2", "3", "2", "3", "3", "2"]} +{"2005514": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003747": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005216": ["1", "1", "3", "2", "3", "3", "1"]} +{"2006880": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005965": ["2", "3", "3", "3", "2", "3", "3"]} +{"4004562": ["2", "3", "3", "3", "2", "3", "3"]} +{"7004195": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001677": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003810": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003017": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003526": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003993": ["1", "1", "3", "2", "2", "3", "1"]} +{"1004421": ["2", "2", "None", "2", "2", "3", "2"]} +{"3005298": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004481": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004421": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003768": ["1", "2", "3", "2", "3", "3", "2"]} +{"0004151": ["3", "3", "1", "3", "3", "3", "3"]} +{"3006885": ["2", "3", "3", "2", "2", "3", "3"]} +{"8002195": ["2", "3", "3", "2", "3", "3", "2"]} +{"1006485": ["1", "1", "3", "2", "1", "3", "1"]} +{"1005282": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005500": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003103": ["3", "3", "3", "3", "2", "1", "3"]} +{"1003562": ["1", "1", "3", "2", "3", "3", "1"]} +{"2003823": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005535": ["1", "1", "3", "1", "3", "3", "None"]} +{"1005535": ["1", "1", "3", "1", "3", "3", "1"]} +{"3004425": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002078": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003409": ["2", "2", "3", "3", "3", "2", "2"]} +{"3006645": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001746": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004922": ["2", "1", "3", "2", "3", "3", "1"]} +{"6003294": ["3", "1", "3", "2", "3", "3", "2"]} +{"1004541": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003771": ["1", "1", "3", "1", "3", "3", "1"]} +{"7002900": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007385": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006288": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004870": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003706": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004500": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003440": ["3", "1", "3", "2", "3", "3", "2"]} +{"2005489": ["3", "2", "3", "3", "3", "2", "2"]} +{"5001714": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004139": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004181": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003387": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003618": ["2", "2", "3", "3", "3", "3", "3"]} +{"3005237": ["2", "2", "3", "2", "3", "3", "2"]} +{"0005219": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005610": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004979": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004561": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002164": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006066": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003501": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002484": ["3", "2", "3", "2", "3", "3", "3"]} +{"6003019": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004891": ["1", "2", "3", "2", "3", "3", "1"]} +{"0003618": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004932": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002674": ["2", "2", "3", "2", "1", "3", "2"]} +{"0003772": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005384": ["1", "1", "3", "2", "2", "3", "1"]} +{"8003359": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004134": ["2", "2", "3", "2", "3", "3", "2"]} +{"4003946": ["3", "2", "3", "3", "2", "3", "3"]} +{"8001141": ["2", "2", "3", "2", "3", "3", "3"]} +{"1006005": ["1", "1", "3", "1", "None", "3", "1"]} +{"3005377": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003174": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004321": ["2", "1", "3", "2", "3", "3", "1"]} +{"0004806": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002486": ["3", "2", "3", "2", "2", "3", "2"]} +{"8002492": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006005": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003502": ["2", "2", "3", "2", "2", "3", "2"]} +{"1006086": ["1", "1", "3", "1", "3", "3", "1"]} +{"4002800": ["3", "3", "3", "3", "3", "2", "3"]} +{"8002416": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002690": ["1", "2", "3", "2", "3", "3", "2"]} +{"0003359": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004005": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006292": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002171": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006636": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004074": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004441": ["3", "3", "3", "3", "3", "1", "3"]} +{"5001419": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005622": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005647": ["2", "3", "1", "3", "3", "3", "3"]} +{"2006929": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003662": ["3", "2", "3", "2", "3", "3", "None"]} +{"1003662": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002102": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001500": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004231": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005170": ["2", "3", "3", "2", "3", "2", "3"]} +{"4003237": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004759": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001543": ["3", "3", "1", "3", "3", "3", "3"]} +{"6003950": ["1", "1", "3", "2", "3", "3", "1"]} +{"2006228": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005787": ["1", "2", "3", "2", "None", "3", "1"]} +{"1005787": ["1", "2", "3", "2", "3", "3", "1"]} +{"7004641": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006314": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004821": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003221": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005805": ["3", "3", "1", "3", "3", "3", "3"]} +{"0003815": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003695": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003443": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001432": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004916": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003198": ["2", "2", "3", "2", "3", "3", "2"]} +{"4003843": ["2", "3", "1", "3", "3", "3", "2"]} +{"4002814": ["3", "2", "3", "2", "3", "3", "3"]} +{"1006477": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006533": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004440": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001318": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002676": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006670": ["2", "2", "3", "2", "3", "3", "2"]} +{"0005948": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003211": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002788": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004459": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004243": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004307": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001880": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004145": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006707": ["2", "2", "3", "2", "3", "3", "1"]} +{"0004325": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004036": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006052": ["2", "3", "1", "3", "2", "3", "3"]} +{"6003002": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001923": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003837": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006614": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002683": ["1", "2", "3", "1", "3", "3", "1"]} +{"8002033": ["1", "2", "3", "1", "2", "3", "1"]} +{"2004650": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001866": ["2", "2", "3", "3", "3", "3", "2"]} +{"3005372": ["2", "3", "3", "3", "3", "3", "2"]} +{"1005199": ["2", "1", "3", "2", "3", "3", "2"]} +{"3006918": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005380": ["2", "2", "3", "2", "3", "3", "2"]} +{"6002797": ["1", "2", "3", "1", "3", "3", "1"]} +{"1005683": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006117": ["2", "3", "1", "2", "3", "3", "2"]} +{"3005350": ["2", "3", "3", "2", "3", "3", "3"]} +{"8001878": ["2", "3", "3", "2", "3", "3", "3"]} +{"6002390": ["3", "2", "3", "3", "3", "3", "3"]} +{"7003527": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001423": ["2", "2", "3", "3", "2", "3", "2"]} +{"7002156": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004072": ["2", "3", "1", "3", "3", "3", "3"]} +{"4002363": ["2", "3", "1", "3", "3", "3", "3"]} +{"2007565": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001370": ["2", "3", "3", "3", "1", "3", "2"]} +{"0004781": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003885": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006015": ["3", "3", "3", "3", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_sherman.jsonl b/webpage/res/res_rd1_16k/ans_sherman.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ef2ee61c673847fca01183df120360d779caa4c3 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_sherman.jsonl @@ -0,0 +1,1035 @@ +{"3006069": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007997": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006763": ["2", "3", "2", "3", "1", "3", "2"]} +{"8002108": ["1", "1", "3", "1", "1", "1", "1"]} +{"4002746": ["3", "3", "2", "3", "1", "3", "3"]} +{"4002746": ["2", "3", "2", "3", "1", "3", "3"]} +{"3006069": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007997": ["3", "2", "3", "3", "2", "1", "2"]} +{"0006763": ["3", "3", "2", "3", "2", "2", "2"]} +{"8002108": ["1", "1", "3", "1", "1", "1", "1"]} +{"4002746": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006014": ["2", "3", "1", "3", "2", "3", "2"]} +{"8001034": ["2", "3", "3", "3", "1", "3", "1"]} +{"4004149": ["2", "2", "3", "2", "2", "2", "2"]} +{"5001765": ["3", "2", "3", "2", "2", "2", "2"]} +{"0003872": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001765": ["3", "3", "3", "2", "2", "2", "2"]} +{"7004983": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004547": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003838": ["2", "3", "3", "2", "3", "3", "3"]} +{"0004610": ["3", "3", "2", "2", "1", "3", "2"]} +{"2007847": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004722": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007192": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004959": ["2", "2", "3", "3", "3", "3", "3"]} +{"1005909": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005608": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004004": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006313": ["3", "2", "3", "3", "2", "3", "2"]} +{"8003390": ["2", "3", "2", "2", "1", "2", "1"]} +{"7003248": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004154": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005068": ["3", "3", "3", "2", "3", "3", "2"]} +{"4002495": ["3", "3", "3", "3", "3", "3", "2"]} +{"2004704": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005434": ["2", "3", "2", "3", "3", "1", "2"]} +{"4003448": ["2", "2", "1", "2", "2", "3", "2"]} +{"2007438": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004326": ["2", "2", "3", "3", "2", "2", "2"]} +{"2003126": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004631": ["2", "1", "3", "2", "3", "2", "2"]} +{"1006247": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006925": ["3", "3", "3", "3", "2", "2", "3"]} +{"3006766": ["2", "3", "3", "3", "1", "3", "1"]} +{"7004485": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004276": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002240": ["3", "3", "3", "2", "3", "2", "3"]} +{"2004839": ["3", "3", "3", "3", "3", "1", "2"]} +{"2006814": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004440": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001907": ["3", "3", "2", "3", "1", "3", "2"]} +{"1003106": ["1", "1", "3", "1", "1", "1", "1"]} +{"2006453": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006064": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005514": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001486": ["2", "1", "3", "2", "1", "1", "1"]} +{"4004925": ["2", "1", "3", "2", "1", "3", "1"]} +{"8001551": ["2", "2", "3", "3", "1", "2", "1"]} +{"6002639": ["1", "1", "3", "2", "1", "1", "1"]} +{"3004501": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003471": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004173": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005725": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003178": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005039": ["3", "3", "1", "3", "3", "2", "2"]} +{"7004637": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006311": ["2", "2", "3", "2", "2", "1", "2"]} +{"2004603": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001103": ["1", "1", "3", "2", "2", "1", "1"]} +{"2007114": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005773": ["3", "2", "3", "3", "2", "3", "2"]} +{"3005505": ["3", "3", "1", "3", "3", "2", "3"]} +{"8003348": ["2", "2", "3", "2", "2", "2", "2"]} +{"2003901": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004801": ["2", "2", "3", "3", "3", "2", "2"]} +{"2006706": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005034": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006010": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004306": ["1", "3", "3", "3", "1", "1", "1"]} +{"1003231": ["2", "1", "3", "2", "2", "3", "1"]} +{"1005379": ["1", "1", "3", "2", "3", "3", "1"]} +{"0003777": ["3", "3", "1", "3", "3", "3", "2"]} +{"3005276": ["1", "2", "3", "2", "1", "1", "1"]} +{"4004022": ["2", "2", "2", "2", "3", "2", "2"]} +{"8001171": ["1", "2", "3", "2", "2", "2", "1"]} +{"0005971": ["3", "2", "2", "3", "2", "3", "2"]} +{"3004102": ["2", "3", "1", "2", "2", "2", "2"]} +{"1005105": ["2", "1", "3", "1", "3", "None", "1"]} +{"1005105": ["2", "1", "3", "1", "3", "1", "2"]} +{"0004862": ["2", "3", "3", "3", "1", "2", "2"]} +{"0004193": ["3", "3", "3", "3", "2", "2", "2"]} +{"7002497": ["2", "3", "3", "2", "2", "2", "2"]} +{"7002334": ["2", "1", "3", "1", "2", "2", "1"]} +{"1003795": ["2", "1", "3", "2", "2", "1", "1"]} +{"2005747": ["3", "3", "1", "3", "2", "3", "3"]} +{"0003190": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001162": ["3", "3", "1", "3", "1", "2", "1"]} +{"6003639": ["1", "1", "3", "1", "1", "1", "1"]} +{"6003044": ["1", "2", "3", "2", "1", "1", "1"]} +{"4002152": ["1", "1", "3", "2", "1", "3", "1"]} +{"3003570": ["3", "3", "3", "3", "1", "1", "2"]} +{"1005361": ["1", "1", "3", "1", "1", "1", "1"]} +{"5001323": ["3", "3", "2", "3", "2", "1", "2"]} +{"3004584": ["2", "2", "2", "2", "1", "1", "1"]} +{"3003751": ["3", "2", "3", "2", "3", "3", "3"]} +{"0005235": ["1", "3", "1", "3", "1", "2", "1"]} +{"6004933": ["1", "3", "2", "3", "1", "1", "1"]} +{"1004746": ["2", "1", "3", "1", "2", "3", "2"]} +{"3006482": ["3", "2", "3", "3", "1", "3", "2"]} +{"1004595": ["1", "1", "3", "1", "1", "3", "1"]} +{"6002273": ["1", "2", "3", "2", "1", "1", "1"]} +{"3006953": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004232": ["3", "2", "3", "3", "1", "2", "2"]} +{"2006862": ["1", "1", "3", "3", "3", "1", "1"]} +{"7002010": ["2", "2", "3", "2", "2", "3", "2"]} +{"3006996": ["3", "3", "3", "3", "1", "3", "1"]} +{"6004383": ["1", "2", "3", "2", "2", "2", "2"]} +{"4004928": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004007": ["2", "2", "3", "2", "1", "3", "2"]} +{"8001290": ["2", "1", "2", "2", "2", "2", "1"]} +{"4003606": ["1", "1", "3", "2", "2", "3", "1"]} +{"7002415": ["2", "2", "3", "2", "3", "3", "3"]} +{"0005728": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003692": ["3", "3", "3", "2", "2", "3", "2"]} +{"4002754": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001095": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004307": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003802": ["2", "1", "3", "3", "2", "3", "2"]} +{"2003604": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001830": ["3", "2", "3", "2", "3", "3", "3"]} +{"1004963": ["1", "1", "3", "2", "2", "3", "1"]} +{"2006948": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001653": ["1", "2", "3", "2", "3", "3", "2"]} +{"1003214": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002337": ["2", "2", "3", "3", "3", "3", "2"]} +{"0005385": ["3", "3", "3", "3", "2", "2", "3"]} +{"3003860": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004110": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002306": ["3", "3", "3", "3", "1", "2", "2"]} +{"8002744": ["3", "3", "3", "3", "1", "2", "2"]} +{"1005389": ["1", "1", "3", "1", "2", "1", "1"]} +{"1003482": ["2", "1", "3", "1", "3", "3", "2"]} +{"8003994": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003623": ["2", "1", "3", "1", "1", "3", "1"]} +{"3003588": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004440": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006215": ["3", "3", "2", "3", "3", "2", "3"]} +{"0004131": ["3", "3", "2", "3", "2", "3", "2"]} +{"0005013": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003831": ["1", "2", "3", "2", "1", "1", "1"]} +{"0004728": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003031": ["2", "2", "3", "1", "3", "3", "2"]} +{"1006137": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006527": ["3", "3", "3", "3", "1", "3", "2"]} +{"2004235": ["2", "3", "2", "3", "1", "3", "1"]} +{"7002501": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002177": ["1", "1", "3", "2", "1", "1", "1"]} +{"3006650": ["3", "3", "3", "3", "1", "3", "2"]} +{"0005633": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002869": ["1", "2", "3", "2", "1", "3", "2"]} +{"4004718": ["3", "2", "3", "2", "2", "3", "2"]} +{"1006137": ["2", "2", "3", "2", "3", "3", "2"]} +{"8001095": ["1", "2", "2", "3", "1", "1", "1"]} +{"4004928": ["3", "3", "2", "3", "1", "2", "2"]} +{"3006953": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006953": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005514": ["2", "2", "3", "1", "2", "3", "1"]} +{"1006247": ["2", "2", "3", "2", "2", "3", "2"]} +{"7003248": ["3", "2", "2", "2", "1", "3", "1"]} +{"1005909": ["2", "2", "3", "1", "3", "3", "1"]} +{"1003595": ["2", "1", "3", "1", "2", "3", "1"]} +{"4003783": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006205": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006439": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005973": ["2", "1", "3", "1", "2", "3", "1"]} +{"1006879": ["2", "1", "3", "1", "3", "3", "2"]} +{"2005789": ["2", "3", "3", "3", "1", "2", "2"]} +{"1005054": ["2", "2", "3", "1", "2", "3", "2"]} +{"1004210": ["2", "1", "3", "1", "3", "3", "1"]} +{"6004828": ["3", "1", "3", "3", "1", "1", "1"]} +{"1006452": ["2", "1", "3", "1", "3", "3", "1"]} +{"4002421": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002296": ["3", "3", "3", "2", "2", "3", "2"]} +{"3006569": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002879": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003152": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001075": ["2", "2", "3", "3", "2", "3", "2"]} +{"4004411": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005832": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004816": ["2", "3", "1", "3", "2", "3", "2"]} +{"4004093": ["3", "3", "2", "3", "1", "2", "2"]} +{"2006694": ["3", "3", "3", "3", "3", "2", "2"]} +{"7004540": ["3", "2", "3", "2", "3", "3", "2"]} +{"7002180": ["3", "3", "2", "3", "2", "3", "3"]} +{"3004547": ["2", "3", "3", "2", "3", "1", "2"]} +{"3005496": ["2", "3", "3", "3", "1", "2", "2"]} +{"6002929": ["2", "1", "3", "1", "3", "3", "2"]} +{"2007489": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004601": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006184": ["2", "2", "3", "2", "2", "3", "2"]} +{"0005101": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004982": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003266": ["2", "2", "3", "2", "2", "3", "2"]} +{"1004153": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003798": ["1", "1", "3", "2", "2", "1", "2"]} +{"6003915": ["2", "2", "3", "2", "3", "2", "2"]} +{"6002114": ["2", "2", "3", "2", "1", "3", "1"]} +{"7002679": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003618": ["3", "2", "3", "2", "3", "2", "3"]} +{"1003272": ["2", "2", "3", "2", "2", "3", "2"]} +{"3006232": ["3", "2", "3", "2", "2", "2", "2"]} +{"3003125": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004772": ["2", "3", "3", "2", "2", "3", "3"]} +{"3003022": ["2", "3", "2", "3", "2", "3", "2"]} +{"7002550": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001380": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003392": ["1", "3", "3", "2", "2", "2", "2"]} +{"2006749": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006152": ["2", "1", "3", "1", "2", "3", "2"]} +{"8001450": ["1", "2", "3", "1", "1", "2", "1"]} +{"3004686": ["2", "3", "3", "3", "2", "2", "2"]} +{"3004043": ["2", "3", "2", "3", "2", "2", "2"]} +{"2003111": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005782": ["3", "3", "2", "3", "2", "2", "3"]} +{"7003139": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003493": ["1", "1", "3", "2", "1", "1", "1"]} +{"3004696": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001825": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005842": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005043": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004588": ["3", "3", "3", "2", "3", "3", "3"]} +{"2003782": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004327": ["3", "3", "3", "3", "1", "2", "2"]} +{"1006512": ["2", "1", "3", "2", "3", "3", "2"]} +{"7003101": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005110": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003041": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004676": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004577": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004461": ["3", "3", "1", "3", "2", "3", "3"]} +{"1004719": ["2", "1", "3", "1", "2", "3", "2"]} +{"1004289": ["3", "3", "3", "2", "3", "2", "2"]} +{"0005193": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005935": ["3", "3", "1", "3", "2", "3", "3"]} +{"4004174": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006265": ["2", "3", "1", "3", "3", "3", "3"]} +{"1004907": ["3", "2", "3", "1", "2", "3", "2"]} +{"4002031": ["2", "1", "3", "1", "1", "1", "1"]} +{"3004123": ["3", "2", "3", "2", "1", "1", "1"]} +{"0006317": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006557": ["2", "1", "3", "1", "1", "1", "1"]} +{"0004561": ["2", "3", "3", "3", "3", "1", "2"]} +{"6002259": ["2", "2", "2", "3", "2", "2", "2"]} +{"7002685": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007176": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003433": ["2", "2", "3", "3", "2", "3", "2"]} +{"3006963": ["2", "2", "3", "2", "3", "2", "2"]} +{"1003355": ["3", "2", "3", "2", "2", "2", "2"]} +{"1005340": ["3", "2", "3", "2", "3", "3", "2"]} +{"2007261": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001503": ["1", "1", "3", "2", "1", "1", "1"]} +{"0005739": ["2", "2", "3", "3", "2", "3", "2"]} +{"8003018": ["2", "3", "3", "2", "3", "1", "2"]} +{"5001750": ["3", "3", "3", "2", "3", "3", "3"]} +{"8001723": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003986": ["1", "2", "3", "1", "3", "3", "1"]} +{"4004726": ["3", "3", "1", "3", "3", "3", "2"]} +{"8001264": ["2", "2", "3", "3", "3", "3", "2"]} +{"3003438": ["2", "3", "3", "3", "2", "3", "3"]} +{"7002332": ["3", "3", "2", "3", "2", "3", "3"]} +{"4003503": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006202": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006150": ["1", "1", "3", "1", "3", "3", "1"]} +{"0005328": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004413": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005103": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004577": ["3", "2", "3", "2", "2", "3", "2"]} +{"7002536": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006700": ["1", "1", "3", "2", "2", "3", "2"]} +{"5001828": ["3", "3", "3", "2", "2", "3", "2"]} +{"6004597": ["2", "3", "3", "2", "3", "3", "2"]} +{"4004858": ["3", "3", "3", "2", "2", "1", "2"]} +{"4003329": ["2", "2", "3", "2", "2", "2", "2"]} +{"5001130": ["3", "3", "1", "3", "3", "3", "3"]} +{"3005680": ["3", "3", "2", "3", "2", "3", "2"]} +{"3006674": ["3", "3", "3", "3", "2", "2", "2"]} +{"3003044": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002493": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006340": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002226": ["1", "3", "3", "2", "3", "1", "2"]} +{"4003105": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002289": ["1", "1", "3", "2", "2", "3", "2"]} +{"6002756": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005815": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004139": ["2", "3", "3", "2", "2", "2", "2"]} +{"0004494": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004453": ["3", "3", "3", "3", "1", "3", "3"]} +{"0005846": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004148": ["2", "3", "3", "2", "2", "3", "3"]} +{"5001938": ["3", "3", "3", "3", "2", "2", "2"]} +{"3003855": ["2", "3", "3", "2", "2", "3", "2"]} +{"8003614": ["1", "3", "2", "3", "1", "3", "1"]} +{"5001321": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005162": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004283": ["3", "3", "1", "3", "2", "3", "2"]} +{"4002989": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003822": ["1", "2", "3", "1", "2", "3", "2"]} +{"2003676": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005327": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003648": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004505": ["1", "2", "None", "2", "3", "3", "2"]} +{"3005983": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003804": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004601": ["1", "2", "3", "1", "2", "3", "2"]} +{"0003235": ["3", "3", "1", "3", "2", "3", "2"]} +{"6004064": ["1", "2", "3", "2", "2", "3", "2"]} +{"2004640": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004281": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004505": ["1", "2", "3", "2", "3", "3", "2"]} +{"8002840": ["3", "3", "3", "2", "2", "3", "2"]} +{"4003038": ["3", "2", "3", "3", "3", "3", "2"]} +{"3006245": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003960": ["2", "3", "2", "3", "3", "2", "2"]} +{"3006753": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003764": ["1", "3", "3", "3", "2", "3", "2"]} +{"8001013": ["2", "3", "3", "3", "2", "2", "2"]} +{"6003143": ["2", "3", "3", "2", "2", "3", "2"]} +{"6004303": ["1", "2", "3", "1", "2", "2", "1"]} +{"7003209": ["2", "3", "3", "2", "2", "3", "2"]} +{"0003896": ["1", "3", "1", "3", "2", "3", "2"]} +{"5001391": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002124": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006160": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003282": ["2", "3", "3", "2", "2", "3", "2"]} +{"0003744": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003273": ["3", "3", "1", "3", "2", "3", "2"]} +{"6002470": ["2", "2", "3", "1", "2", "2", "2"]} +{"4003476": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003505": ["2", "2", "3", "2", "3", "3", "2"]} +{"1004006": ["3", "1", "3", "2", "2", "3", "2"]} +{"0004594": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002211": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002359": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004837": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004284": ["3", "2", "3", "2", "2", "3", "2"]} +{"4002626": ["3", "3", "3", "3", "2", "2", "3"]} +{"7004636": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007667": ["3", "3", "2", "3", "2", "3", "3"]} +{"2005727": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006801": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003799": ["1", "2", "3", "3", "2", "1", "1"]} +{"0003816": ["3", "2", "3", "3", "3", "3", "3"]} +{"6002930": ["1", "1", "3", "2", "3", "3", "2"]} +{"2003532": ["3", "3", "2", "3", "2", "3", "3"]} +{"7004930": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003602": ["3", "3", "3", "2", "3", "1", "2"]} +{"7002137": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004246": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005132": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002128": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006530": ["3", "3", "3", "3", "2", "2", "3"]} +{"3003895": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002484": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005720": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005720": ["3", "3", "3", "3", "3", "2", "2"]} +{"2003868": ["3", "2", "3", "3", "2", "3", "3"]} +{"1006014": ["1", "1", "3", "2", "2", "1", "1"]} +{"2006425": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002182": ["1", "3", "3", "2", "2", "1", "2"]} +{"7004902": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002136": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005049": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003907": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002946": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004776": ["3", "3", "2", "3", "2", "3", "3"]} +{"6004112": ["2", "2", "3", "2", "3", "3", "2"]} +{"0003670": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003849": ["3", "3", "2", "3", "2", "3", "2"]} +{"3003283": ["2", "3", "3", "2", "3", "3", "3"]} +{"4003006": ["3", "2", "3", "2", "2", "3", "2"]} +{"3006935": ["3", "2", "3", "3", "2", "2", "2"]} +{"0005184": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004265": ["2", "3", "2", "3", "2", "2", "2"]} +{"8002561": ["1", "2", "3", "2", "2", "1", "1"]} +{"4004175": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004852": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007147": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001755": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005728": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007074": ["3", "2", "3", "2", "3", "2", "2"]} +{"4003362": ["3", "2", "3", "2", "3", "3", "3"]} +{"3003064": ["2", "3", "3", "3", "3", "1", "2"]} +{"0006480": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003194": ["1", "1", "3", "1", "2", "2", "1"]} +{"8001241": ["1", "2", "3", "2", "3", "3", "1"]} +{"8001970": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003003": ["1", "1", "3", "2", "2", "3", "1"]} +{"4004983": ["3", "2", "3", "3", "2", "2", "3"]} +{"0006836": ["2", "3", "3", "3", "2", "2", "2"]} +{"3005295": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003818": ["3", "2", "3", "3", "2", "3", "2"]} +{"0005621": ["2", "3", "1", "3", "2", "3", "2"]} +{"7003310": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003955": ["1", "2", "3", "1", "3", "3", "2"]} +{"3006089": ["2", "3", "3", "3", "3", "3", "3"]} +{"4003774": ["3", "3", "3", "3", "3", "1", "3"]} +{"3004119": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003079": ["1", "2", "3", "1", "2", "3", "1"]} +{"6002684": ["1", "2", "3", "3", "2", "3", "1"]} +{"1005232": ["2", "2", "3", "2", "3", "3", "3"]} +{"8002890": ["1", "3", "3", "1", "3", "3", "1"]} +{"0006142": ["3", "3", "1", "3", "2", "3", "3"]} +{"1006174": ["2", "3", "3", "2", "2", "2", "2"]} +{"2007371": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006613": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004021": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004661": ["3", "3", "2", "3", "2", "2", "3"]} +{"7004153": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004851": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003133": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005497": ["3", "3", "1", "3", "1", "3", "1"]} +{"2004397": ["3", "2", "3", "3", "3", "3", "3"]} +{"3005769": ["1", "2", "3", "2", "2", "2", "2"]} +{"3005941": ["3", "2", "3", "3", "1", "3", "1"]} +{"1003743": ["2", "1", "3", "1", "3", "3", "2"]} +{"2004771": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003580": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002797": ["1", "1", "3", "2", "2", "3", "2"]} +{"8001657": ["1", "2", "3", "2", "2", "3", "2"]} +{"4002532": ["3", "3", "1", "3", "2", "3", "2"]} +{"0003310": ["3", "2", "3", "3", "3", "3", "3"]} +{"8001934": ["2", "None", "2", "3", "2", "1", "2"]} +{"1005519": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002338": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004647": ["2", "2", "3", "3", "2", "3", "2"]} +{"2005456": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005711": ["3", "3", "2", "3", "1", "3", "2"]} +{"8001934": ["2", "3", "3", "2", "2", "1", "2"]} +{"2006685": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006946": ["2", "1", "3", "2", "2", "3", "2"]} +{"4004859": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002538": ["1", "1", "3", "2", "2", "2", "1"]} +{"0004721": ["3", "3", "3", "2", "2", "3", "3"]} +{"2006761": ["2", "3", "3", "3", "2", "3", "2"]} +{"1005077": ["2", "1", "3", "2", "2", "3", "2"]} +{"2005942": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006216": ["2", "2", "3", "3", "1", "2", "1"]} +{"6003422": ["1", "3", "3", "3", "3", "3", "2"]} +{"7003808": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003609": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006091": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003726": ["2", "3", "3", "3", "3", "2", "3"]} +{"1003675": ["1", "1", "3", "1", "3", "3", "1"]} +{"2006062": ["3", "3", "3", "2", "3", "3", "3"]} +{"3006260": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004976": ["2", "3", "3", "3", "2", "3", "2"]} +{"0004684": ["3", "3", "2", "3", "1", "2", "2"]} +{"7002901": ["3", "2", "3", "2", "2", "2", "2"]} +{"6003103": ["1", "2", "3", "1", "3", "2", "2"]} +{"6003103": ["1", "2", "3", "1", "3", "3", "2"]} +{"7003669": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005698": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004736": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004932": ["1", "2", "3", "1", "1", "2", "1"]} +{"2007190": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003848": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005400": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005908": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006940": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003083": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003877": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005108": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004392": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004196": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006969": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002039": ["1", "1", "3", "1", "1", "1", "1"]} +{"6004778": ["2", "3", "3", "3", "2", "2", "2"]} +{"3004078": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003962": ["1", "3", "3", "2", "3", "3", "2"]} +{"2004778": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004786": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007689": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004675": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003100": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004950": ["1", "1", "3", "1", "2", "3", "2"]} +{"3005675": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004889": ["3", "2", "3", "3", "3", "2", "3"]} +{"8002867": ["2", "3", "3", "2", "2", "3", "2"]} +{"7002794": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006802": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002615": ["2", "2", "3", "2", "2", "2", "2"]} +{"1003963": ["1", "1", "3", "1", "2", "3", "2"]} +{"0006791": ["3", "3", "3", "3", "2", "2", "3"]} +{"0005504": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006498": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003840": ["3", "2", "3", "3", "3", "2", "3"]} +{"4003190": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006683": ["2", "3", "3", "1", "2", "3", "2"]} +{"2005811": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005519": ["3", "3", "3", "2", "2", "2", "2"]} +{"4003225": ["2", "3", "3", "2", "2", "2", "2"]} +{"2007214": ["3", "2", "3", "3", "2", "2", "2"]} +{"7003154": ["3", "2", "3", "3", "3", "2", "3"]} +{"2006171": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002232": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005645": ["2", "3", "1", "3", "2", "3", "2"]} +{"6003060": ["1", "2", "3", "1", "3", "3", "1"]} +{"1004363": ["1", "1", "3", "1", "2", "1", "1"]} +{"4003088": ["3", "2", "3", "3", "2", "3", "3"]} +{"1004913": ["1", "1", "3", "1", "2", "3", "1"]} +{"0004793": ["3", "3", "3", "3", "3", "2", "3"]} +{"6004553": ["1", "1", "3", "1", "2", "1", "1"]} +{"2007727": ["2", "3", "3", "3", "2", "2", "2"]} +{"1005329": ["2", "2", "3", "1", "3", "3", "2"]} +{"2006144": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003549": ["3", "2", "3", "2", "3", "1", "2"]} +{"4004625": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002269": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002485": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006637": ["2", "2", "3", "2", "3", "3", "2"]} +{"1004480": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003414": ["2", "2", "3", "2", "2", "3", "2"]} +{"7004328": ["3", "3", "3", "2", "3", "2", "2"]} +{"1005418": ["3", "1", "3", "2", "2", "3", "2"]} +{"8001332": ["1", "1", "3", "1", "1", "1", "1"]} +{"0003524": ["2", "3", "3", "3", "3", "3", "3"]} +{"6004840": ["3", "2", "3", "3", "2", "3", "2"]} +{"3006856": ["2", "3", "3", "3", "2", "2", "2"]} +{"0006407": ["3", "3", "2", "3", "2", "3", "3"]} +{"6003295": ["3", "2", "3", "2", "2", "2", "2"]} +{"7004513": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002495": ["2", "2", "3", "2", "2", "2", "2"]} +{"8003465": ["2", "2", "3", "3", "2", "3", "2"]} +{"3003827": ["1", "2", "3", "2", "2", "2", "2"]} +{"1003597": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006364": ["2", "2", "2", "3", "3", "2", "2"]} +{"3004951": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004411": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002273": ["2", "2", "3", "2", "2", "2", "2"]} +{"8001481": ["2", "3", "3", "3", "2", "2", "2"]} +{"0004566": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003930": ["1", "1", "3", "1", "2", "1", "1"]} +{"7003611": ["3", "3", "3", "3", "2", "2", "3"]} +{"2007691": ["2", "3", "3", "3", "3", "3", "3"]} +{"8001374": ["1", "3", "3", "3", "2", "3", "2"]} +{"8002341": ["1", "2", "3", "2", "1", "2", "1"]} +{"1006763": ["1", "1", "3", "1", "3", "3", "2"]} +{"7002035": ["3", "3", "3", "2", "2", "3", "2"]} +{"3004500": ["3", "2", "3", "2", "2", "3", "2"]} +{"4002841": ["2", "1", "3", "1", "2", "3", "2"]} +{"4003145": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002871": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003125": ["2", "2", "3", "2", "2", "3", "2"]} +{"2004279": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003342": ["1", "3", "3", "2", "3", "2", "1"]} +{"0004069": ["3", "3", "3", "3", "3", "2", "2"]} +{"1005847": ["1", "1", "3", "1", "2", "2", "1"]} +{"3006865": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005591": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004180": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006756": ["2", "2", "3", "2", "1", "3", "1"]} +{"1003624": ["1", "1", "3", "1", "2", "2", "1"]} +{"0005635": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005729": ["2", "2", "3", "2", "3", "2", "2"]} +{"6003080": ["2", "2", "3", "2", "3", "2", "2"]} +{"4002317": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004477": ["1", "3", "1", "3", "2", "2", "2"]} +{"8003962": ["1", "3", "3", "2", "3", "3", "1"]} +{"2003263": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004608": ["3", "3", "3", "3", "2", "2", "2"]} +{"1003375": ["1", "2", "3", "2", "3", "3", "2"]} +{"8003743": ["1", "1", "3", "1", "1", "1", "1"]} +{"8002215": ["2", "3", "3", "3", "2", "3", "3"]} +{"1005366": ["1", "1", "3", "1", "3", "3", "2"]} +{"2003955": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002074": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004118": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003612": ["2", "2", "3", "2", "2", "3", "2"]} +{"6004770": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003553": ["3", "2", "3", "2", "2", "3", "2"]} +{"2003031": ["2", "3", "3", "3", "2", "3", "3"]} +{"0006683": ["2", "3", "3", "3", "3", "2", "2"]} +{"0006683": ["2", "3", "3", "3", "3", "2", "3"]} +{"6003233": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007977": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005579": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005959": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003124": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003285": ["2", "3", "3", "2", "2", "3", "2"]} +{"4002184": ["2", "2", "3", "2", "2", "2", "2"]} +{"0003328": ["2", "3", "3", "3", "2", "3", "3"]} +{"3005844": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004685": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003168": ["1", "1", "3", "2", "2", "3", "2"]} +{"3003983": ["2", "3", "3", "2", "2", "3", "2"]} +{"5001955": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005961": ["2", "3", "3", "3", "2", "3", "3"]} +{"6003897": ["2", "3", "3", "2", "2", "3", "3"]} +{"1006139": ["1", "2", "3", "1", "3", "3", "2"]} +{"0004485": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003601": ["3", "2", "3", "2", "2", "3", "2"]} +{"8002361": ["1", "2", "3", "2", "3", "3", "2"]} +{"1005886": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006937": ["2", "2", "3", "3", "3", "3", "3"]} +{"0004712": ["2", "3", "3", "3", "3", "3", "3"]} +{"4004862": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003977": ["2", "2", "3", "2", "3", "3", "2"]} +{"4002094": ["3", "3", "3", "2", "2", "3", "2"]} +{"4002822": ["3", "2", "3", "3", "3", "3", "3"]} +{"3005247": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006938": ["2", "1", "3", "1", "3", "3", "2"]} +{"7003332": ["3", "2", "3", "3", "3", "3", "3"]} +{"0003452": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005302": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002880": ["1", "1", "3", "2", "2", "2", "1"]} +{"7002308": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003860": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003950": ["2", "2", "3", "2", "3", "3", "3"]} +{"4003380": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006425": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003095": ["1", "1", "3", "1", "2", "2", "1"]} +{"7002513": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003288": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003033": ["1", "1", "3", "1", "2", "3", "1"]} +{"8003955": ["2", "3", "3", "2", "3", "3", "3"]} +{"3003305": ["3", "3", "1", "3", "2", "3", "2"]} +{"2003413": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006205": ["2", "3", "3", "3", "3", "2", "3"]} +{"4002757": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005906": ["1", "3", "3", "3", "2", "3", "2"]} +{"4004759": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003205": ["1", "2", "3", "2", "2", "3", "2"]} +{"4004828": ["2", "3", "3", "3", "3", "3", "3"]} +{"4004974": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003383": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003927": ["1", "3", "3", "3", "3", "3", "2"]} +{"6004699": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002445": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004760": ["3", "3", "1", "3", "3", "3", "3"]} +{"1005455": ["1", "2", "3", "2", "2", "3", "2"]} +{"4004850": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003219": ["2", "3", "3", "3", "2", "2", "2"]} +{"4002642": ["2", "2", "3", "3", "3", "2", "2"]} +{"4002658": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001685": ["1", "2", "3", "2", "2", "3", "2"]} +{"8001685": ["1", "2", "3", "2", "2", "3", "1"]} +{"4004079": ["2", "2", "3", "3", "2", "3", "3"]} +{"8001182": ["2", "3", "3", "2", "3", "3", "2"]} +{"1004503": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001288": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004887": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004887": ["3", "3", "1", "3", "2", "3", "3"]} +{"0004790": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001319": ["3", "3", "3", "2", "2", "3", "3"]} +{"7003687": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006270": ["2", "3", "1", "3", "3", "3", "2"]} +{"4002293": ["3", "1", "3", "1", "2", "2", "2"]} +{"2004272": ["2", "3", "3", "3", "3", "3", "3"]} +{"6003929": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003897": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004439": ["2", "3", "3", "3", "2", "3", "2"]} +{"4002148": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002148": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004776": ["3", "2", "3", "3", "1", "3", "1"]} +{"2005496": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001275": ["1", "2", "3", "2", "2", "2", "2"]} +{"2005726": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006799": ["1", "1", "3", "1", "2", "2", "1"]} +{"2006073": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005443": ["2", "3", "3", "3", "2", "3", "2"]} +{"8001861": ["2", "3", "3", "2", "2", "2", "2"]} +{"1003368": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001499": ["1", "2", "3", "3", "1", "1", "1"]} +{"4002669": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002480": ["2", "3", "3", "3", "2", "3", "3"]} +{"0005454": ["3", "2", "3", "2", "2", "2", "2"]} +{"2007680": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006256": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003383": ["2", "3", "3", "2", "2", "2", "2"]} +{"5001851": ["3", "3", "3", "3", "3", "2", "2"]} +{"2005924": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006396": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005326": ["3", "3", "3", "3", "2", "1", "2"]} +{"7002569": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005516": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007640": ["2", "2", "3", "2", "3", "2", "2"]} +{"1005828": ["2", "2", "3", "2", "3", "3", "2"]} +{"6004256": ["3", "3", "1", "3", "2", "2", "2"]} +{"7003757": ["3", "2", "3", "3", "2", "2", "3"]} +{"2005639": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004185": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002436": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001546": ["1", "2", "3", "2", "2", "2", "2"]} +{"3005440": ["3", "3", "3", "3", "2", "2", "3"]} +{"3005075": ["2", "3", "3", "2", "2", "2", "2"]} +{"3005293": ["2", "3", "3", "3", "2", "3", "2"]} +{"3003083": ["2", "3", "3", "3", "1", "3", "2"]} +{"0004463": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006747": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003476": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002976": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004668": ["2", "3", "3", "3", "2", "2", "2"]} +{"2004814": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007895": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004558": ["2", "3", "3", "3", "2", "3", "2"]} +{"1003418": ["2", "2", "3", "1", "2", "3", "2"]} +{"2003170": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005532": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003642": ["2", "2", "3", "2", "2", "2", "2"]} +{"1004844": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004543": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006058": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001928": ["1", "3", "3", "2", "1", "1", "1"]} +{"1006383": ["1", "1", "3", "1", "3", "3", "1"]} +{"7003747": ["3", "3", "1", "3", "2", "3", "2"]} +{"6002536": ["1", "1", "3", "1", "2", "2", "1"]} +{"8003796": ["1", "1", "3", "1", "2", "2", "1"]} +{"8003898": ["2", "2", "3", "2", "3", "3", "2"]} +{"8003370": ["2", "2", "3", "2", "2", "2", "2"]} +{"8002145": ["2", "3", "3", "2", "3", "3", "2"]} +{"2003804": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003467": ["1", "2", "1", "2", "3", "3", "1"]} +{"8001911": ["2", "3", "3", "2", "2", "3", "2"]} +{"2004260": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005542": ["1", "2", "2", "2", "1", "3", "1"]} +{"1006384": ["1", "1", "3", "1", "2", "3", "1"]} +{"7002134": ["2", "2", "3", "2", "2", "3", "2"]} +{"4003697": ["3", "3", "3", "3", "2", "2", "3"]} +{"8001686": ["1", "2", "3", "2", "3", "3", "1"]} +{"0003497": ["2", "3", "1", "3", "2", "2", "1"]} +{"7003378": ["2", "3", "3", "3", "2", "3", "3"]} +{"1004660": ["1", "1", "3", "1", "2", "3", "1"]} +{"5001152": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004569": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002165": ["1", "2", "3", "1", "1", "1", "1"]} +{"6002381": ["3", "3", "3", "3", "3", "2", "2"]} +{"8001646": ["1", "3", "3", "2", "1", "3", "1"]} +{"1004093": ["2", "2", "3", "2", "2", "2", "2"]} +{"3004961": ["2", "3", "1", "3", "2", "3", "2"]} +{"1003224": ["3", "2", "3", "2", "3", "2", "2"]} +{"0005497": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004655": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003811": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007937": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003307": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001676": ["3", "2", "3", "2", "3", "2", "2"]} +{"6004470": ["3", "3", "3", "3", "2", "2", "3"]} +{"8002452": ["2", "3", "2", "2", "2", "2", "2"]} +{"4003775": ["2", "3", "3", "2", "3", "3", "3"]} +{"7002356": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004815": ["3", "3", "2", "3", "2", "3", "2"]} +{"3003039": ["3", "3", "3", "3", "3", "2", "2"]} +{"0004272": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003120": ["1", "2", "3", "1", "1", "3", "1"]} +{"1003636": ["3", "1", "3", "2", "2", "3", "2"]} +{"1005444": ["3", "1", "3", "2", "3", "3", "2"]} +{"8002023": ["2", "3", "3", "2", "3", "3", "2"]} +{"5001192": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005792": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005085": ["3", "3", "2", "3", "3", "2", "3"]} +{"4003349": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004083": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004107": ["1", "2", "3", "2", "3", "2", "2"]} +{"8002515": ["2", "3", "3", "2", "1", "3", "1"]} +{"2004379": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002972": ["3", "3", "3", "3", "2", "2", "3"]} +{"2005565": ["3", "3", "3", "3", "2", "1", "2"]} +{"3004057": ["2", "3", "3", "2", "2", "1", "2"]} +{"0006144": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005236": ["2", "2", "3", "2", "2", "3", "2"]} +{"7002871": ["3", "3", "3", "3", "2", "2", "3"]} +{"1003789": ["3", "1", "3", "2", "2", "3", "2"]} +{"2004730": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003927": ["3", "1", "3", "3", "2", "3", "2"]} +{"8003155": ["1", "3", "3", "3", "1", "3", "1"]} +{"7002367": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006356": ["2", "1", "3", "1", "3", "3", "2"]} +{"0006891": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002552": ["2", "2", "3", "2", "2", "2", "2"]} +{"8002552": ["2", "2", "3", "2", "2", "3", "2"]} +{"3006292": ["3", "3", "3", "2", "1", "2", "2"]} +{"8001405": ["1", "3", "3", "3", "2", "3", "1"]} +{"8003777": ["1", "3", "3", "3", "1", "3", "1"]} +{"3003227": ["3", "3", "1", "3", "1", "2", "1"]} +{"3003653": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001557": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005790": ["1", "1", "3", "1", "3", "3", "1"]} +{"0003058": ["3", "2", "3", "3", "2", "2", "2"]} +{"1005036": ["2", "1", "3", "2", "2", "3", "2"]} +{"2006352": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002414": ["3", "3", "3", "3", "2", "2", "3"]} +{"4003815": ["2", "3", "2", "3", "2", "3", "2"]} +{"4002346": ["1", "1", "3", "3", "3", "2", "2"]} +{"8003965": ["2", "3", "3", "3", "3", "2", "3"]} +{"0006752": ["3", "3", "2", "3", "2", "3", "3"]} +{"3005127": ["2", "3", "1", "3", "2", "3", "2"]} +{"1006451": ["2", "1", "3", "2", "3", "3", "2"]} +{"5001969": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002207": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005305": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006157": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006308": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006864": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004783": ["3", "3", "3", "3", "2", "2", "3"]} +{"1004633": ["2", "2", "3", "2", "3", "3", "2"]} +{"8003316": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003420": ["3", "3", "3", "2", "2", "3", "3"]} +{"8001279": ["1", "2", "2", "2", "2", "2", "1"]} +{"2007428": ["3", "2", "3", "2", "1", "3", "2"]} +{"0004601": ["3", "2", "3", "3", "3", "3", "3"]} +{"2006333": ["3", "3", "2", "3", "2", "2", "2"]} +{"1003510": ["1", "1", "3", "1", "2", "3", "1"]} +{"4003406": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005169": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003981": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003138": ["3", "2", "3", "3", "2", "3", "3"]} +{"7002588": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005610": ["2", "2", "3", "2", "2", "3", "2"]} +{"4003284": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003085": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004179": ["2", "1", "3", "1", "2", "3", "2"]} +{"0005144": ["2", "3", "3", "3", "3", "1", "2"]} +{"4003240": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005403": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002774": ["3", "3", "3", "2", "2", "3", "2"]} +{"8003919": ["2", "3", "3", "3", "3", "3", "2"]} +{"2003154": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004968": ["3", "2", "3", "2", "3", "3", "3"]} +{"3005021": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006819": ["3", "3", "3", "3", "2", "2", "2"]} +{"2007529": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007295": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004241": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003357": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002696": ["2", "3", "3", "3", "2", "3", "2"]} +{"4003196": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005691": ["2", "1", "3", "1", "2", "3", "2"]} +{"7004253": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002278": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007633": ["1", "3", "3", "1", "2", "3", "2"]} +{"4002614": ["3", "3", "3", "2", "2", "3", "2"]} +{"8001159": ["1", "2", "3", "2", "1", "3", "1"]} +{"6002317": ["2", "3", "1", "3", "3", "3", "2"]} +{"8001728": ["1", "2", "3", "2", "2", "2", "1"]} +{"7003564": ["2", "3", "3", "3", "3", "2", "3"]} +{"6003578": ["1", "2", "3", "2", "2", "3", "1"]} +{"5001460": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001641": ["2", "3", "3", "3", "2", "2", "2"]} +{"4004263": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001078": ["2", "2", "3", "3", "2", "3", "2"]} +{"3006518": ["2", "3", "3", "3", "2", "3", "2"]} +{"5001997": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003001": ["1", "1", "3", "1", "2", "3", "1"]} +{"3004737": ["2", "3", "3", "3", "3", "3", "3"]} +{"5001937": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003152": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006820": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004032": ["2", "2", "3", "2", "3", "3", "2"]} +{"8002062": ["2", "3", "3", "3", "3", "2", "2"]} +{"4004347": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002134": ["2", "2", "3", "2", "3", "3", "2"]} +{"7004679": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004679": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004769": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005637": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003753": ["3", "2", "3", "2", "3", "3", "3"]} +{"0004632": ["3", "2", "3", "3", "2", "2", "2"]} +{"5001510": ["2", "2", "3", "2", "3", "3", "2"]} +{"5001498": ["3", "3", "3", "3", "2", "2", "3"]} +{"3004108": ["2", "2", "3", "2", "2", "2", "2"]} +{"8002604": ["1", "3", "3", "2", "2", "3", "2"]} +{"1005316": ["2", "1", "3", "2", "2", "3", "2"]} +{"2007436": ["3", "3", "3", "3", "2", "2", "3"]} +{"6003069": ["1", "3", "3", "2", "2", "3", "2"]} +{"1004775": ["1", "1", "3", "1", "2", "3", "2"]} +{"2006261": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003432": ["1", "2", "3", "2", "1", "3", "1"]} +{"2007170": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002585": ["1", "3", "3", "3", "2", "3", "1"]} +{"3004225": ["3", "3", "2", "3", "2", "2", "2"]} +{"2003134": ["2", "3", "2", "3", "3", "2", "2"]} +{"1004629": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003152": ["2", "2", "3", "2", "2", "2", "2"]} +{"8003547": ["1", "3", "3", "2", "2", "3", "1"]} +{"7003350": ["2", "2", "2", "2", "2", "3", "2"]} +{"4002919": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002490": ["3", "3", "3", "3", "2", "2", "2"]} +{"2005801": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003262": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003262": ["1", "1", "3", "1", "2", "3", "2"]} +{"1006909": ["3", "2", "3", "2", "2", "2", "2"]} +{"1003603": ["1", "1", "3", "1", "2", "3", "2"]} +{"3005603": ["2", "3", "3", "3", "2", "2", "1"]} +{"1004057": ["2", "2", "3", "2", "2", "2", "2"]} +{"4004851": ["3", "2", "3", "3", "2", "2", "2"]} +{"3003816": ["2", "3", "1", "3", "3", "3", "3"]} +{"2006087": ["2", "3", "3", "3", "2", "1", "2"]} +{"4002367": ["3", "3", "3", "3", "3", "2", "2"]} +{"6003892": ["3", "2", "3", "2", "3", "3", "3"]} +{"7002174": ["3", "3", "3", "2", "3", "3", "3"]} +{"3004011": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003197": ["2", "3", "3", "2", "2", "2", "2"]} +{"3005551": ["3", "3", "3", "2", "3", "2", "2"]} +{"0003488": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005428": ["3", "3", "3", "3", "2", "3", "2"]} +{"2007035": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006751": ["3", "3", "3", "2", "2", "2", "2"]} +{"1005988": ["2", "2", "3", "2", "2", "3", "2"]} +{"4002291": ["3", "3", "3", "2", "2", "3", "2"]} +{"2003945": ["2", "3", "3", "3", "2", "2", "2"]} +{"4003738": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003015": ["2", "3", "3", "2", "2", "3", "2"]} +{"2005865": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005435": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004490": ["2", "3", "3", "2", "2", "2", "2"]} +{"2005581": ["3", "3", "2", "3", "2", "2", "2"]} +{"1003189": ["1", "1", "3", "1", "2", "2", "1"]} +{"7002713": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004705": ["1", "2", "3", "1", "3", "3", "1"]} +{"3004070": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003190": ["2", "2", "3", "3", "2", "2", "2"]} +{"3005681": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001509": ["1", "2", "3", "2", "2", "3", "2"]} +{"1006024": ["3", "2", "3", "2", "2", "3", "2"]} +{"0006571": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004701": ["1", "2", "3", "2", "2", "2", "1"]} +{"6002406": ["2", "2", "3", "2", "3", "2", "2"]} +{"2006169": ["3", "3", "3", "3", "2", "3", "None"]} +{"0005437": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002757": ["2", "3", "3", "3", "3", "3", "3"]} +{"2006169": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003574": ["2", "3", "3", "3", "3", "3", "2"]} +{"3006296": ["3", "3", "3", "3", "3", "2", "2"]} +{"2003785": ["3", "2", "3", "3", "2", "2", "2"]} +{"1006326": ["3", "2", "3", "2", "2", "2", "2"]} +{"1006259": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003770": ["1", "2", "3", "2", "2", "2", "1"]} +{"7004303": ["3", "3", "3", "2", "2", "2", "3"]} +{"2007735": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003417": ["2", "3", "3", "3", "3", "2", "2"]} +{"6003417": ["2", "3", "3", "2", "3", "3", "2"]} +{"1004529": ["2", "2", "3", "2", "2", "3", "2"]} +{"3004268": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006906": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004836": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006489": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003150": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003948": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003873": ["2", "2", "3", "2", "2", "3", "2"]} +{"1006046": ["2", "3", "3", "2", "2", "3", "2"]} +{"6002122": ["3", "2", "3", "2", "2", "3", "2"]} +{"6004951": ["2", "3", "3", "2", "2", "2", "2"]} +{"7004694": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003410": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003009": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006284": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002988": ["1", "2", "3", "3", "3", "2", "1"]} +{"1004460": ["1", "3", "3", "2", "2", "3", "2"]} +{"1005459": ["2", "2", "3", "2", "3", "3", "2"]} +{"5001170": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003994": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004890": ["1", "1", "3", "1", "2", "3", "2"]} +{"2003418": ["3", "3", "3", "2", "2", "2", "3"]} +{"7002149": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003853": ["2", "3", "3", "2", "2", "2", "2"]} +{"2005253": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006945": ["2", "3", "3", "3", "2", "3", "3"]} +{"7003541": ["2", "3", "3", "2", "2", "3", "2"]} +{"5001656": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006064": ["1", "1", "3", "1", "3", "3", "1"]} +{"3003345": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004600": ["2", "3", "3", "3", "2", "3", "3"]} +{"4004297": ["2", "3", "3", "3", "3", "2", "3"]} +{"1005896": ["1", "2", "3", "1", "3", "3", "2"]} +{"7004390": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004315": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005731": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006878": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002237": ["2", "3", "3", "2", "3", "3", "2"]} +{"1003875": ["1", "2", "3", "1", "3", "3", "1"]} +{"4003354": ["2", "3", "1", "3", "2", "3", "2"]} +{"3003949": ["2", "3", "3", "3", "3", "2", "2"]} +{"8001515": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002165": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002429": ["1", "1", "3", "1", "2", "3", "1"]} +{"8003135": ["2", "2", "3", "2", "3", "3", "2"]} +{"8001650": ["2", "3", "3", "2", "2", "2", "2"]} +{"0003935": ["3", "3", "3", "3", "2", "2", "3"]} +{"1006793": ["2", "1", "3", "1", "2", "3", "2"]} +{"2007080": ["3", "3", "3", "2", "2", "2", "3"]} +{"5001596": ["3", "3", "2", "3", "2", "3", "2"]} +{"4002425": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002425": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003873": ["2", "2", "3", "2", "3", "3", "2"]} +{"7002178": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002178": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004750": ["3", "2", "3", "2", "3", "3", "2"]} +{"1005082": ["1", "1", "3", "1", "3", "2", "1"]} +{"2005286": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005286": ["3", "3", "1", "3", "2", "3", "3"]} +{"6002857": ["1", "3", "2", "3", "2", "3", "2"]} +{"4003161": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004597": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005527": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004666": ["2", "3", "1", "3", "2", "1", "1"]} +{"7002791": ["2", "3", "3", "3", "3", "2", "2"]} +{"6004952": ["1", "2", "3", "2", "2", "3", "2"]} +{"4004076": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004829": ["3", "3", "2", "3", "2", "3", "2"]} +{"1003919": ["2", "2", "3", "2", "2", "2", "2"]} +{"5001167": ["2", "3", "1", "3", "1", "3", "1"]} +{"7004561": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003372": ["2", "2", "3", "2", "2", "3", "1"]} +{"0003459": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004654": ["2", "3", "3", "3", "3", "2", "3"]} +{"6004181": ["1", "2", "3", "2", "2", "3", "2"]} +{"2006931": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004735": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006852": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006852": ["2", "3", "3", "3", "2", "2", "2"]} +{"2007444": ["3", "3", "3", "3", "1", "3", "1"]} +{"0004201": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003181": ["3", "2", "3", "2", "2", "3", "2"]} +{"3003532": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003379": ["3", "3", "3", "3", "2", "2", "2"]} +{"3006555": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006239": ["2", "3", "2", "3", "3", "3", "3"]} +{"6003515": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001511": ["3", "3", "3", "3", "2", "2", "2"]} +{"7002999": ["3", "3", "3", "3", "1", "3", "1"]} +{"8002342": ["2", "2", "3", "2", "2", "3", "2"]} +{"6002662": ["2", "3", "3", "2", "3", "3", "2"]} +{"1004555": ["2", "2", "3", "2", "3", "3", "2"]} +{"6003603": ["2", "3", "3", "3", "2", "2", "2"]} +{"5001765": ["3", "3", "3", "2", "3", "2", "2"]} diff --git a/webpage/res/res_rd1_16k/ans_tianle.jsonl b/webpage/res/res_rd1_16k/ans_tianle.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/webpage/res/res_rd1_16k/ans_xuan.jsonl b/webpage/res/res_rd1_16k/ans_xuan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..65938a1d23381449dbb7611231c5bccab7907716 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_xuan.jsonl @@ -0,0 +1,127 @@ +{"3003896": ["3", "2", "3", "2", "2", "3", "2"]} +{"6004706": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005501": ["3", "2", "3", "2", "1", "1", "2"]} +{"3006574": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004967": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006567": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003932": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004008": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003149": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004026": ["3", "3", "2", "3", "3", "3", "2"]} +{"7003127": ["3", "3", "3", "3", "1", "3", "2"]} +{"7004568": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005850": ["3", "2", "1", "3", "2", "3", "2"]} +{"6002242": ["3", "2", "3", "3", "3", "3", "2"]} +{"7003834": ["3", "3", "2", "3", "2", "3", "3"]} +{"6004970": ["3", "1", "3", "1", "1", "2", "1"]} +{"1003252": ["3", "1", "3", "1", "3", "3", "3"]} +{"3004363": ["2", "3", "3", "3", "2", "1", "1"]} +{"7002777": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003226": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002552": ["3", "2", "3", "2", "3", "3", "2"]} +{"8003618": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007645": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006234": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002383": ["3", "1", "2", "3", "1", "3", "1"]} +{"3006164": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003361": ["1", "2", "3", "1", "3", "2", "2"]} +{"3004732": ["3", "1", "3", "1", "3", "3", "2"]} +{"1004951": ["1", "1", "3", "1", "2", "3", "1"]} +{"2006703": ["3", "3", "3", "2", "3", "2", "3"]} +{"7002917": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004659": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006559": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005855": ["3", "3", "2", "1", "2", "3", "2"]} +{"4003468": ["3", "1", "3", "2", "2", "3", "2"]} +{"7004466": ["3", "1", "3", "1", "2", "1", "1"]} +{"2005340": ["3", "3", "2", "3", "3", "3", "2"]} +{"8001951": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006315": ["3", "2", "2", "1", "2", "1", "1"]} +{"1006647": ["2", "1", "3", "1", "2", "2", "1"]} +{"0003965": ["3", "3", "2", "3", "1", "1", "1"]} +{"3004607": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005217": ["3", "2", "3", "3", "3", "2", "2"]} +{"0006847": ["3", "3", "1", "3", "2", "3", "2"]} +{"1003067": ["1", "1", "3", "1", "2", "3", "1"]} +{"0005939": ["3", "3", "1", "3", "3", "3", "2"]} +{"1004374": ["3", "2", "3", "3", "1", "3", "2"]} +{"3003186": ["2", "3", "2", "3", "1", "3", "2"]} +{"4002344": ["3", "1", "3", "3", "3", "3", "2"]} +{"1006109": ["1", "1", "3", "2", "3", "3", "2"]} +{"1004704": ["1", "1", "3", "2", "2", "3", "1"]} +{"3004712": ["2", "3", "3", "1", "1", "1", "1"]} +{"7002776": ["3", "2", "3", "1", "3", "3", "2"]} +{"8001800": ["3", "3", "3", "1", "3", "3", "2"]} +{"3003280": ["3", "2", "3", "3", "2", "2", "2"]} +{"7003835": ["2", "1", "3", "1", "2", "3", "1"]} +{"2004265": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007015": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004547": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004783": ["2", "1", "3", "1", "3", "3", "1"]} +{"2006662": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004068": ["3", "3", "1", "3", "3", "3", "3"]} +{"3006767": ["2", "3", "3", "3", "1", "2", "2"]} +{"4002970": ["3", "2", "3", "2", "1", "1", "2"]} +{"6002305": ["3", "2", "3", "1", "3", "3", "2"]} +{"5001071": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003518": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006984": ["3", "3", "3", "2", "3", "3", "2"]} +{"0004678": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002047": ["3", "3", "3", "3", "3", "2", "2"]} +{"4003830": ["2", "1", "3", "1", "1", "1", "1"]} +{"4003830": ["2", "1", "3", "1", "1", "3", "1"]} +{"3005138": ["3", "3", "3", "3", "1", "2", "1"]} +{"5001238": ["3", "3", "3", "3", "1", "3", "2"]} +{"1006633": ["1", "1", "3", "1", "2", "3", "1"]} +{"7002929": ["3", "2", "3", "1", "2", "3", "2"]} +{"1006839": ["3", "1", "3", "2", "1", "3", "1"]} +{"8003288": ["3", "3", "3", "2", "3", "3", "2"]} +{"2005507": ["3", "3", "1", "3", "2", "3", "2"]} +{"8002939": ["3", "3", "3", "2", "1", "2", "1"]} +{"5001012": ["3", "3", "2", "3", "3", "3", "2"]} +{"8001626": ["2", "1", "3", "2", "1", "3", "2"]} +{"3006008": ["2", "3", "2", "3", "2", "2", "2"]} +{"1004125": ["1", "1", "3", "2", "1", "3", "1"]} +{"3004173": ["2", "3", "3", "3", "2", "3", "2"]} +{"4003460": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006492": ["2", "1", "3", "2", "1", "2", "1"]} +{"1004089": ["1", "1", "3", "1", "2", "3", "1"]} +{"2003892": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003729": ["3", "2", "3", "3", "1", "2", "1"]} +{"0005023": ["3", "2", "2", "3", "2", "3", "2"]} +{"1006366": ["1", "1", "3", "1", "2", "1", "1"]} +{"3003369": ["3", "3", "3", "2", "3", "3", "2"]} +{"2006409": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006579": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004290": ["2", "1", "3", "1", "2", "1", "1"]} +{"3003098": ["3", "3", "1", "3", "3", "3", "2"]} +{"3005036": ["3", "3", "2", "3", "1", "1", "1"]} +{"7002885": ["2", "3", "1", "3", "3", "3", "2"]} +{"8002745": ["2", "1", "3", "2", "2", "3", "2"]} +{"4003812": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004885": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003816": ["3", "2", "None", "3", "1", "3", "2"]} +{"6003241": ["3", "1", "3", "1", "1", "2", "1"]} +{"6003816": ["3", "2", "3", "3", "1", "3", "2"]} +{"6004654": ["3", "1", "3", "1", "2", "1", "1"]} +{"1004943": ["3", "2", "3", "1", "3", "3", "2"]} +{"0005353": ["3", "3", "2", "3", "1", "1", "1"]} +{"4003801": ["2", "3", "2", "3", "3", "3", "2"]} +{"1004000": ["3", "1", "3", "1", "3", "3", "2"]} +{"2004366": ["3", "3", "2", "3", "2", "2", "2"]} +{"1003264": ["1", "1", "3", "2", "3", "3", "1"]} +{"7002887": ["2", "2", "3", "2", "3", "3", "2"]} +{"4003356": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001965": ["2", "2", "3", "2", "1", "2", "1"]} +{"6002120": ["1", "1", "3", "2", "1", "3", "1"]} +{"3005223": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005279": ["3", "3", "1", "3", "1", "2", "2"]} +{"1005715": ["1", "1", "3", "1", "2", "1", "1"]} +{"1005715": ["1", "1", "3", "1", "3", "1", "1"]} +{"3005723": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002702": ["2", "2", "3", "3", "1", "1", "1"]} +{"3006347": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005479": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006844": ["2", "3", "3", "3", "2", "3", "2"]} +{"0006786": ["3", "1", "2", "3", "2", "1", "1"]} +{"3004378": ["3", "3", "3", "2", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_yash.jsonl b/webpage/res/res_rd1_16k/ans_yash.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7123589a975fdd94bee7c1c7b2efe4a6162415bb --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_yash.jsonl @@ -0,0 +1,653 @@ +{"3005418": ["2", "2", "3", "2", "1", "3", "1"]} +{"1006107": ["1", "3", "3", "1", "1", "3", "1"]} +{"7002977": ["2", "3", "3", "2", "3", "3", "3"]} +{"3003637": ["2", "3", "3", "3", "3", "2", "3"]} +{"0003211": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006979": ["3", "3", "3", "3", "3", "1", "3"]} +{"6002419": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003087": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006492": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004328": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004829": ["3", "3", "2", "3", "1", "3", "1"]} +{"8003975": ["1", "3", "3", "1", "2", "2", "1"]} +{"4002580": ["1", "1", "3", "3", "1", "3", "1"]} +{"3006413": ["3", "3", "3", "2", "2", "3", "3"]} +{"4004269": ["2", "1", "3", "3", "1", "3", "1"]} +{"2004229": ["3", "3", "3", "2", "2", "3", "2"]} +{"2006624": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004129": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005163": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003493": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006881": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001367": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004721": ["1", "1", "3", "3", "1", "3", "1"]} +{"3006542": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004754": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003976": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003746": ["3", "3", "3", "3", "1", "3", "3"]} +{"3003746": ["None", "None", "None", "None", "None", "None", "2"]} +{"3003746": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003234": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002430": ["2", "1", "3", "3", "2", "3", "1"]} +{"6004598": ["3", "2", "3", "3", "3", "3", "3"]} +{"1004454": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005427": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005746": ["1", "2", "3", "3", "2", "3", "1"]} +{"7004426": ["2", "3", "3", "1", "1", "3", "1"]} +{"6002019": ["3", "1", "3", "1", "3", "3", "1"]} +{"3003912": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003305": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007894": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001781": ["3", "3", "3", "3", "1", "1", "3"]} +{"1004683": ["1", "1", "3", "1", "1", "3", "1"]} +{"6003538": ["1", "1", "3", "1", "1", "3", "1"]} +{"0005190": ["3", "3", "3", "1", "2", "3", "None"]} +{"0005190": ["3", "3", "3", "1", "2", "3", "3"]} +{"3005537": ["3", "3", "3", "1", "3", "3", "2"]} +{"3004619": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004448": ["2", "2", "3", "1", "2", "3", "2"]} +{"6004243": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004476": ["2", "3", "3", "2", "1", "3", "2"]} +{"7004152": ["3", "3", "3", "3", "1", "2", "2"]} +{"3005786": ["3", "3", "3", "3", "2", "1", "3"]} +{"6002936": ["3", "1", "3", "1", "2", "3", "1"]} +{"7004656": ["3", "3", "3", "2", "2", "2", "3"]} +{"1005390": ["1", "1", "3", "1", "1", "3", "1"]} +{"7003521": ["3", "3", "3", "1", "2", "3", "2"]} +{"3006833": ["1", "3", "1", "3", "2", "3", "1"]} +{"1004812": ["1", "1", "3", "1", "1", "3", "1"]} +{"3005297": ["1", "3", "3", "2", "1", "3", "1"]} +{"8001004": ["3", "3", "3", "2", "2", "2", "2"]} +{"5001563": ["3", "3", "1", "3", "1", "3", "3"]} +{"4004610": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006176": ["3", "3", "3", "2", "2", "3", "3"]} +{"8003442": ["1", "3", "3", "1", "1", "3", "1"]} +{"0006402": ["3", "3", "3", "3", "3", "1", "3"]} +{"8002315": ["1", "3", "3", "1", "2", "3", "1"]} +{"6002425": ["1", "3", "3", "1", "1", "3", "1"]} +{"1004091": ["1", "3", "3", "1", "2", "3", "1"]} +{"2005297": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002194": ["2", "3", "2", "3", "2", "3", "2"]} +{"1004326": ["3", "3", "3", "1", "3", "3", "3"]} +{"2003505": ["3", "3", "3", "1", "2", "1", "2"]} +{"0004090": ["3", "3", "1", "3", "2", "3", "2"]} +{"0004261": ["2", "3", "1", "3", "1", "3", "1"]} +{"8001169": ["1", "1", "3", "1", "1", "3", "1"]} +{"3003569": ["1", "3", "3", "3", "2", "2", "1"]} +{"3005835": ["2", "2", "3", "1", "1", "3", "1"]} +{"2004854": ["3", "3", "1", "3", "3", "2", "3"]} +{"0003606": ["3", "3", "2", "1", "2", "3", "3"]} +{"0006832": ["3", "3", "1", "None", "2", "3", "2"]} +{"0003753": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003588": ["2", "3", "3", "2", "2", "3", "1"]} +{"0004341": ["3", "3", "1", "3", "2", "3", "2"]} +{"3004424": ["3", "3", "3", "3", "1", "3", "2"]} +{"2006629": ["3", "3", "1", "3", "2", "3", "1"]} +{"2006629": ["3", "3", "1", "3", "2", "2", "1"]} +{"0006832": ["3", "3", "1", "3", "2", "3", "2"]} +{"8001373": ["1", "2", "3", "1", "1", "3", "1"]} +{"7002610": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006841": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002354": ["3", "3", "3", "2", "2", "1", "1"]} +{"0005066": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004787": ["3", "1", "3", "3", "2", "3", "2"]} +{"7003565": ["1", "3", "3", "1", "2", "2", "2"]} +{"4004378": ["2", "3", "1", "3", "1", "3", "1"]} +{"3005772": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006780": ["2", "3", "2", "3", "1", "3", "2"]} +{"4003061": ["3", "3", "2", "1", "2", "1", "1"]} +{"1004624": ["1", "1", "3", "1", "3", "3", "1"]} +{"2004262": ["3", "2", "3", "3", "2", "1", "3"]} +{"2006447": ["3", "3", "3", "3", "2", "2", "3"]} +{"3005157": ["2", "3", "1", "1", "1", "3", "1"]} +{"2007046": ["2", "3", "3", "2", "1", "2", "1"]} +{"0003711": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004692": ["2", "2", "3", "1", "2", "3", "2"]} +{"3003817": ["1", "1", "3", "1", "3", "3", "2"]} +{"7003286": ["3", "2", "3", "1", "2", "2", "1"]} +{"6002983": ["2", "2", "3", "1", "2", "3", "2"]} +{"0004102": ["3", "3", "3", "3", "3", "1", "2"]} +{"3004969": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001052": ["3", "3", "3", "2", "1", "3", "1"]} +{"0006244": ["3", "3", "1", "3", "1", "1", "1"]} +{"7002042": ["3", "3", "2", "3", "1", "3", "2"]} +{"2007490": ["3", "3", "3", "3", "2", "2", "1"]} +{"2007490": ["3", "3", "3", "3", "2", "2", "2"]} +{"0003844": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002503": ["1", "1", "3", "3", "1", "3", "2"]} +{"6002082": ["1", "1", "3", "1", "1", "3", "1"]} +{"2004748": ["3", "3", "1", "3", "2", "3", "3"]} +{"2005807": ["3", "3", "3", "2", "2", "2", "3"]} +{"6004200": ["1", "3", "3", "1", "3", "3", "1"]} +{"0006879": ["1", "3", "2", "1", "2", "3", "1"]} +{"2006708": ["3", "3", "3", "2", "1", "3", "2"]} +{"3004624": ["3", "2", "3", "3", "2", "3", "3"]} +{"0004330": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007462": ["3", "3", "2", "2", "3", "3", "3"]} +{"2007462": ["3", "3", "2", "2", "3", "3", "3"]} +{"4002274": ["3", "3", "3", "1", "3", "3", "2"]} +{"5001076": ["3", "3", "1", "3", "2", "3", "3"]} +{"2003046": ["3", "3", "3", "3", "2", "1", "2"]} +{"8002657": ["2", "3", "3", "1", "2", "2", "1"]} +{"0004703": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003055": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005550": ["3", "1", "3", "3", "3", "3", "3"]} +{"7002002": ["3", "3", "2", "2", "2", "3", "3"]} +{"0004383": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003285": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003647": ["1", "3", "2", "1", "1", "3", "1"]} +{"7003468": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004778": ["2", "3", "3", "3", "1", "3", "3"]} +{"1003998": ["3", "2", "3", "3", "2", "1", "3"]} +{"0005566": ["3", "3", "3", "3", "1", "3", "2"]} +{"6002554": ["1", "2", "3", "3", "3", "3", "2"]} +{"6004324": ["2", "2", "3", "3", "3", "3", "3"]} +{"1003271": ["1", "1", "3", "1", "1", "3", "1"]} +{"0005479": ["1", "3", "3", "3", "2", "3", "3"]} +{"8002347": ["3", "1", "3", "3", "3", "3", "3"]} +{"4003253": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004152": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003483": ["3", "3", "3", "3", "1", "3", "3"]} +{"2007041": ["3", "3", "3", "3", "1", "1", "2"]} +{"3004919": ["3", "3", "1", "3", "1", "3", "1"]} +{"8003974": ["3", "2", "3", "3", "3", "3", "1"]} +{"3004563": ["1", "1", "3", "3", "1", "3", "1"]} +{"8001463": ["1", "3", "3", "1", "2", "3", "1"]} +{"5001280": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005452": ["3", "3", "3", "2", "2", "3", "3"]} +{"8001204": ["3", "1", "3", "1", "2", "3", "1"]} +{"2003864": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005148": ["3", "3", "3", "2", "3", "1", "2"]} +{"2004760": ["3", "3", "3", "3", "1", "3", "3"]} +{"1003865": ["1", "2", "3", "1", "1", "3", "1"]} +{"2003921": ["3", "3", "2", "1", "3", "3", "1"]} +{"4003539": ["3", "3", "1", "3", "2", "3", "3"]} +{"0004482": ["3", "3", "3", "1", "1", "3", "1"]} +{"2007852": ["1", "3", "1", "3", "1", "3", "1"]} +{"6002718": ["1", "3", "3", "1", "3", "3", "2"]} +{"0003493": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004739": ["3", "3", "1", "3", "2", "3", "3"]} +{"6002092": ["1", "2", "3", "1", "2", "3", "1"]} +{"8002081": ["1", "3", "3", "1", "1", "3", "1"]} +{"6003280": ["1", "3", "3", "1", "1", "3", "1"]} +{"0005050": ["3", "3", "3", "3", "1", "3", "3"]} +{"0004332": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003407": ["3", "3", "3", "2", "2", "3", "3"]} +{"8003191": ["3", "3", "3", "1", "3", "3", "3"]} +{"8003635": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003084": ["3", "3", "3", "1", "1", "1", "1"]} +{"0003226": ["3", "3", "3", "3", "2", "1", "3"]} +{"5001943": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004951": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003655": ["3", "2", "3", "3", "1", "2", "2"]} +{"2004123": ["3", "1", "3", "2", "3", "2", "2"]} +{"1006919": ["1", "1", "3", "1", "1", "3", "1"]} +{"7002823": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007682": ["2", "3", "3", "3", "2", "1", "1"]} +{"6003094": ["1", "2", "3", "2", "2", "3", "1"]} +{"0003210": ["3", "3", "3", "3", "2", "3", "1"]} +{"1003502": ["2", "3", "3", "3", "3", "3", "2"]} +{"8002507": ["3", "2", "3", "2", "1", "3", "1"]} +{"3006428": ["3", "2", "3", "3", "3", "3", "2"]} +{"2003241": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005219": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003198": ["3", "3", "3", "3", "1", "3", "1"]} +{"3003828": ["3", "3", "3", "3", "1", "1", "2"]} +{"4003660": ["3", "2", "3", "3", "2", "2", "3"]} +{"2004326": ["3", "3", "3", "3", "1", "3", "3"]} +{"3003180": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005488": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006355": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006225": ["3", "2", "3", "3", "3", "3", "3"]} +{"5001248": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002530": ["2", "1", "3", "2", "2", "3", "1"]} +{"3003913": ["3", "3", "3", "2", "3", "3", "3"]} +{"8001991": ["2", "3", "3", "3", "3", "2", "2"]} +{"4003490": ["3", "2", "3", "3", "3", "3", "3"]} +{"8003788": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007881": ["3", "3", "3", "3", "2", "1", "2"]} +{"6004184": ["1", "1", "3", "1", "2", "3", "1"]} +{"2006345": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005696": ["2", "3", "2", "3", "1", "2", "1"]} +{"7004648": ["3", "3", "3", "3", "1", "1", "3"]} +{"6003648": ["3", "1", "3", "2", "2", "1", "2"]} +{"2007173": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005673": ["1", "1", "3", "1", "1", "3", "1"]} +{"0005946": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003318": ["3", "3", "3", "3", "2", "2", "3"]} +{"0005499": ["3", "3", "3", "3", "3", "1", "3"]} +{"0006768": ["2", "3", "3", "3", "3", "3", "2"]} +{"5001619": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006908": ["3", "2", "3", "3", "2", "1", "3"]} +{"7004223": ["3", "3", "3", "3", "3", "1", "2"]} +{"3005126": ["3", "3", "3", "1", "2", "2", "1"]} +{"6003302": ["1", "2", "3", "1", "3", "3", "1"]} +{"7004351": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003449": ["2", "1", "3", "1", "2", "3", "1"]} +{"5001466": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004025": ["2", "3", "1", "3", "3", "2", "1"]} +{"0005284": ["3", "3", "1", "3", "1", "1", "3"]} +{"1004562": ["1", "3", "3", "3", "1", "1", "1"]} +{"8001790": ["3", "3", "3", "3", "1", "1", "1"]} +{"3006881": ["1", "3", "3", "3", "1", "3", "1"]} +{"1004192": ["1", "1", "3", "1", "1", "3", "1"]} +{"8003699": ["1", "3", "3", "1", "1", "1", "1"]} +{"0006926": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006624": ["1", "3", "3", "1", "1", "1", "1"]} +{"2007821": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006332": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002882": ["1", "3", "3", "1", "3", "3", "1"]} +{"8001294": ["3", "2", "3", "3", "2", "2", "2"]} +{"8003609": ["2", "3", "1", "3", "2", "3", "1"]} +{"6003629": ["1", "3", "3", "3", "1", "3", "1"]} +{"2007720": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003036": ["3", "2", "3", "1", "2", "3", "2"]} +{"6002816": ["1", "2", "3", "1", "2", "3", "1"]} +{"1006924": ["1", "3", "3", "1", "1", "3", "1"]} +{"0006133": ["3", "3", "1", "3", "1", "2", "2"]} +{"3003965": ["2", "3", "3", "1", "3", "1", "1"]} +{"5001696": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003888": ["2", "2", "3", "3", "3", "2", "1"]} +{"3003066": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006528": ["3", "3", "3", "3", "1", "1", "1"]} +{"2006777": ["3", "None", "3", "3", "3", "3", "3"]} +{"3006486": ["3", "3", "2", "3", "2", "3", "1"]} +{"2006601": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007349": ["3", "3", "3", "3", "2", "1", "3"]} +{"8002073": ["3", "3", "3", "2", "1", "1", "1"]} +{"6004776": ["2", "3", "3", "3", "2", "3", "1"]} +{"7004871": ["3", "2", "3", "3", "2", "1", "3"]} +{"7004842": ["3", "3", "2", "3", "3", "2", "3"]} +{"5001541": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003982": ["3", "2", "3", "3", "3", "3", "3"]} +{"2006777": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003455": ["1", "3", "3", "3", "1", "1", "1"]} +{"7004145": ["3", "2", "3", "3", "2", "3", "3"]} +{"4004570": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004468": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001875": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003790": ["2", "2", "3", "1", "1", "3", "1"]} +{"0003978": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003657": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001139": ["3", "3", "2", "3", "3", "1", "3"]} +{"0005242": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005747": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003877": ["3", "3", "1", "3", "2", "2", "3"]} +{"1004046": ["2", "2", "3", "3", "3", "3", "1"]} +{"5001328": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001818": ["2", "3", "3", "3", "3", "1", "1"]} +{"3004529": ["3", "3", "2", "3", "3", "2", "3"]} +{"7004150": ["3", "3", "3", "3", "2", "2", "3"]} +{"0004593": ["3", "3", "3", "3", "1", "1", "3"]} +{"1005810": ["1", "1", "3", "1", "1", "3", "1"]} +{"2007511": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003676": ["2", "2", "3", "3", "1", "3", "1"]} +{"4004861": ["2", "3", "2", "3", "2", "3", "3"]} +{"8002701": ["3", "2", "3", "3", "2", "3", "3"]} +{"6002879": ["1", "1", "3", "1", "1", "1", "1"]} +{"0005521": ["3", "3", "3", "3", "2", "2", "1"]} +{"0003372": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006930": ["2", "3", "3", "3", "2", "1", "1"]} +{"0003650": ["3", "3", "3", "3", "1", "1", "1"]} +{"3006962": ["3", "3", "3", "3", "2", "2", "1"]} +{"4004734": ["3", "2", "3", "3", "2", "3", "3"]} +{"0003834": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004636": ["3", "1", "3", "3", "2", "2", "1"]} +{"6002451": ["1", "3", "3", "1", "1", "1", "1"]} +{"0005326": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004136": ["3", "3", "2", "3", "2", "2", "2"]} +{"4003745": ["3", "2", "3", "3", "1", "3", "1"]} +{"2005611": ["3", "3", "1", "3", "2", "2", "2"]} +{"3006615": ["2", "2", "3", "3", "3", "2", "1"]} +{"8001617": ["3", "3", "3", "3", "2", "1", "2"]} +{"2004662": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006975": ["2", "3", "3", "3", "1", "2", "1"]} +{"4002282": ["3", "3", "1", "3", "2", "3", "3"]} +{"4002174": ["3", "1", "3", "2", "3", "3", "2"]} +{"4004369": ["3", "3", "1", "3", "2", "3", "3"]} +{"0004546": ["3", "1", "3", "1", "1", "1", "1"]} +{"7003044": ["3", "2", "3", "1", "3", "3", "1"]} +{"0004758": ["3", "3", "1", "3", "3", "2", "3"]} +{"5001016": ["3", "3", "3", "3", "2", "1", "3"]} +{"1003999": ["2", "3", "3", "3", "2", "3", "3"]} +{"1003999": ["2", "3", "3", "3", "2", "3", "1"]} +{"8003604": ["3", "3", "3", "3", "2", "1", "1"]} +{"4004938": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003845": ["1", "1", "3", "3", "2", "2", "1"]} +{"1006029": ["3", "1", "3", "3", "3", "3", "1"]} +{"2003494": ["3", "3", "1", "3", "2", "1", "3"]} +{"2003494": ["3", "3", "1", "3", "2", "2", "3"]} +{"2004473": ["3", "3", "3", "3", "2", "1", "3"]} +{"2007352": ["3", "3", "3", "3", "2", "1", "3"]} +{"6002204": ["1", "3", "3", "1", "2", "3", "1"]} +{"2006592": ["3", "2", "3", "3", "2", "1", "3"]} +{"2006439": ["2", "3", "3", "2", "3", "1", "1"]} +{"2005444": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005097": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005581": ["2", "3", "3", "2", "3", "3", "2"]} +{"1005003": ["1", "1", "3", "3", "2", "3", "1"]} +{"1003565": ["1", "2", "3", "3", "2", "3", "1"]} +{"3004187": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003952": ["3", "3", "3", "3", "1", "3", "1"]} +{"6003916": ["1", "3", "3", "1", "2", "1", "1"]} +{"6003463": ["1", "2", "3", "3", "2", "3", "1"]} +{"1006324": ["3", "3", "3", "2", "3", "1", "3"]} +{"2005580": ["3", "3", "1", "1", "1", "3", "2"]} +{"6002216": ["3", "1", "3", "2", "3", "3", "1"]} +{"0004001": ["3", "3", "2", "3", "1", "1", "1"]} +{"1004489": ["3", "2", "3", "2", "1", "1", "1"]} +{"3006152": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004974": ["3", "3", "3", "2", "1", "3", "1"]} +{"3006500": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003182": ["3", "2", "3", "3", "1", "1", "1"]} +{"6002893": ["3", "2", "3", "2", "3", "1", "1"]} +{"0003303": ["3", "2", "3", "3", "3", "2", "2"]} +{"8001156": ["3", "3", "3", "3", "3", "3", "2"]} +{"3004860": ["3", "3", "3", "3", "2", "2", "2"]} +{"4004766": ["3", "3", "3", "3", "3", "2", "2"]} +{"0006455": ["3", "3", "1", "3", "1", "3", "3"]} +{"3004082": ["3", "3", "3", "3", "1", "1", "2"]} +{"6004289": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002275": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004179": ["3", "3", "3", "2", "3", "1", "1"]} +{"4002046": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003507": ["3", "3", "2", "3", "2", "2", "3"]} +{"7004791": ["3", "3", "1", "3", "2", "1", "3"]} +{"7004759": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003656": ["2", "3", "3", "3", "2", "1", "1"]} +{"8002726": ["3", "3", "3", "2", "1", "3", "1"]} +{"8003399": ["2", "2", "3", "3", "1", "2", "1"]} +{"4002030": ["3", "3", "3", "3", "1", "1", "2"]} +{"2003202": ["3", "2", "3", "3", "3", "2", "3"]} +{"1003444": ["2", "3", "3", "1", "1", "3", "1"]} +{"4002447": ["3", "2", "3", "3", "1", "3", "2"]} +{"1005380": ["2", "1", "3", "3", "1", "1", "1"]} +{"8003987": ["1", "3", "3", "3", "1", "1", "1"]} +{"6003054": ["3", "2", "3", "3", "1", "1", "1"]} +{"3005165": ["3", "3", "3", "3", "2", "2", "1"]} +{"8001586": ["3", "3", "1", "3", "1", "1", "1"]} +{"4003821": ["2", "2", "3", "3", "3", "3", "1"]} +{"5001354": ["3", "3", "1", "3", "2", "3", "1"]} +{"8001806": ["3", "3", "3", "1", "1", "3", "1"]} +{"3005789": ["3", "3", "3", "2", "3", "2", "2"]} +{"3003915": ["3", "3", "3", "2", "3", "2", "2"]} +{"2005300": ["3", "3", "2", "3", "2", "2", "2"]} +{"1004070": ["2", "2", "3", "3", "2", "3", "1"]} +{"1004115": ["2", "1", "3", "2", "2", "3", "1"]} +{"0006049": ["3", "3", "3", "3", "1", "1", "1"]} +{"3006221": ["3", "2", "3", "2", "3", "2", "1"]} +{"6003501": ["1", "1", "3", "3", "1", "1", "1"]} +{"3004909": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003040": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003164": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004653": ["3", "3", "3", "3", "3", "2", "2"]} +{"4002940": ["3", "1", "3", "3", "1", "1", "1"]} +{"6004034": ["1", "1", "3", "3", "1", "3", "1"]} +{"1003183": ["3", "3", "3", "3", "2", "1", "2"]} +{"1003183": ["3", "3", "3", "3", "2", "2", "2"]} +{"0003173": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004397": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004991": ["2", "3", "1", "3", "2", "3", "3"]} +{"3003870": ["3", "3", "3", "3", "2", "2", "3"]} +{"1006457": ["1", "2", "3", "3", "3", "3", "1"]} +{"4004102": ["3", "1", "3", "3", "1", "3", "1"]} +{"0003573": ["3", "3", "3", "3", "1", "1", "1"]} +{"4002707": ["3", "3", "3", "3", "2", "1", "1"]} +{"6004888": ["1", "3", "3", "1", "1", "3", "1"]} +{"6004907": ["3", "3", "3", "3", "1", "1", "1"]} +{"7004202": ["3", "2", "3", "3", "3", "3", "2"]} +{"4004957": ["3", "2", "3", "1", "1", "3", "1"]} +{"0005181": ["3", "3", "3", "3", "2", "1", "3"]} +{"8001163": ["3", "2", "3", "3", "2", "2", "2"]} +{"2006402": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003560": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003683": ["3", "2", "3", "3", "2", "1", "2"]} +{"6003447": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003914": ["3", "3", "3", "2", "2", "1", "1"]} +{"8003511": ["3", "1", "3", "3", "2", "3", "1"]} +{"8001954": ["3", "3", "3", "3", "2", "2", "1"]} +{"5001456": ["2", "2", "3", "3", "2", "3", "1"]} +{"7002767": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005441": ["3", "3", "1", "3", "2", "3", "3"]} +{"2006857": ["1", "1", "3", "3", "1", "2", "1"]} +{"1006601": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003837": ["2", "3", "3", "3", "3", "2", "1"]} +{"3005520": ["3", "3", "3", "3", "2", "2", "2"]} +{"4003635": ["3", "3", "3", "1", "3", "1", "3"]} +{"2005046": ["3", "3", "3", "3", "3", "3", "2"]} +{"2007723": ["3", "3", "2", "3", "2", "1", "1"]} +{"6004668": ["3", "2", "3", "3", "3", "3", "1"]} +{"6002820": ["2", "3", "3", "3", "1", "3", "1"]} +{"7004986": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003575": ["3", "3", "3", "2", "3", "2", "3"]} +{"8001125": ["3", "3", "3", "3", "2", "1", "1"]} +{"2005615": ["3", "3", "1", "3", "3", "1", "3"]} +{"5001721": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004855": ["2", "2", "3", "3", "1", "1", "1"]} +{"5001157": ["3", "3", "3", "3", "3", "2", "1"]} +{"6003633": ["1", "2", "3", "1", "2", "1", "1"]} +{"8001809": ["3", "3", "3", "3", "1", "1", "1"]} +{"2006466": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001548": ["3", "3", "1", "3", "1", "1", "1"]} +{"5001548": ["3", "3", "1", "3", "1", "1", "2"]} +{"7002859": ["3", "1", "3", "3", "1", "3", "1"]} +{"2006430": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001838": ["2", "2", "3", "3", "1", "1", "1"]} +{"4004306": ["3", "2", "3", "3", "3", "2", "2"]} +{"1005183": ["1", "1", "3", "1", "2", "1", "1"]} +{"6004129": ["1", "2", "3", "3", "1", "1", "1"]} +{"7004095": ["3", "3", "1", "3", "3", "3", "2"]} +{"0006086": ["2", "3", "3", "2", "1", "3", "1"]} +{"2005042": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001202": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003078": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003226": ["2", "2", "3", "3", "2", "3", "2"]} +{"2004122": ["3", "3", "1", "3", "1", "2", "2"]} +{"2005573": ["3", "2", "3", "3", "2", "2", "1"]} +{"7004599": ["3", "3", "3", "2", "3", "1", "2"]} +{"3006131": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006480": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007012": ["3", "3", "2", "3", "2", "2", "3"]} +{"7003419": ["2", "3", "3", "3", "3", "1", "2"]} +{"6004481": ["1", "2", "3", "3", "1", "1", "1"]} +{"2005460": ["3", "3", "3", "3", "3", "1", "3"]} +{"3004022": ["3", "3", "3", "3", "1", "2", "3"]} +{"8003431": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001974": ["3", "3", "2", "3", "2", "3", "3"]} +{"3003139": ["3", "3", "2", "3", "3", "2", "2"]} +{"1005628": ["3", "2", "3", "2", "3", "3", "3"]} +{"1006549": ["1", "2", "3", "2", "2", "3", "1"]} +{"1005726": ["3", "1", "3", "2", "2", "3", "1"]} +{"4002160": ["3", "3", "1", "3", "3", "2", "3"]} +{"4002160": ["3", "3", "1", "3", "3", "2", "3"]} +{"6002845": ["1", "2", "3", "3", "2", "3", "1"]} +{"4002821": ["3", "3", "2", "3", "2", "3", "3"]} +{"1005551": ["3", "1", "3", "3", "2", "3", "1"]} +{"3003429": ["3", "3", "3", "2", "2", "3", "1"]} +{"0004983": ["3", "3", "3", "2", "2", "3", "2"]} +{"4004608": ["3", "3", "3", "3", "2", "1", "2"]} +{"2007583": ["3", "3", "3", "2", "3", "3", "2"]} +{"7004822": ["3", "2", "3", "3", "3", "3", "2"]} +{"3003838": ["3", "3", "3", "3", "2", "1", "1"]} +{"1004442": ["1", "1", "3", "2", "3", "3", "1"]} +{"7003434": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003170": ["3", "3", "3", "3", "1", "3", "2"]} +{"0005590": ["3", "3", "2", "3", "3", "2", "2"]} +{"4003089": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002783": ["2", "3", "3", "3", "3", "3", "2"]} +{"2003937": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006303": ["3", "3", "3", "3", "3", "1", "3"]} +{"3006188": ["3", "3", "3", "3", "1", "1", "1"]} +{"8001876": ["2", "1", "3", "2", "3", "3", "1"]} +{"7003108": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005134": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004552": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002622": ["3", "3", "3", "2", "1", "1", "2"]} +{"3006669": ["3", "3", "3", "3", "3", "2", "2"]} +{"4002639": ["3", "2", "3", "3", "3", "3", "2"]} +{"7004715": ["3", "3", "3", "3", "3", "1", "3"]} +{"2007822": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002404": ["2", "3", "2", "3", "2", "2", "1"]} +{"1005927": ["2", "2", "3", "3", "1", "1", "1"]} +{"4004782": ["3", "3", "2", "3", "1", "2", "2"]} +{"2004542": ["3", "3", "2", "3", "1", "3", "1"]} +{"4004691": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004802": ["1", "2", "3", "1", "3", "1", "1"]} +{"2006238": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005833": ["3", "3", "3", "2", "3", "3", "1"]} +{"8001358": ["2", "3", "3", "3", "2", "2", "2"]} +{"5001483": ["3", "2", "2", "3", "2", "2", "2"]} +{"2006240": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004579": ["2", "3", "3", "3", "1", "3", "1"]} +{"4003394": ["3", "3", "3", "3", "2", "1", "2"]} +{"4004867": ["1", "1", "3", "3", "1", "3", "1"]} +{"8001870": ["2", "3", "3", "3", "3", "1", "1"]} +{"2005689": ["3", "2", "3", "2", "2", "2", "2"]} +{"2004752": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003539": ["3", "3", "3", "3", "3", "3", "2"]} +{"7002826": ["3", "3", "3", "3", "2", "2", "3"]} +{"6002607": ["3", "3", "3", "3", "2", "1", "1"]} +{"6002831": ["3", "2", "3", "2", "3", "1", "1"]} +{"4003587": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006289": ["3", "3", "2", "3", "2", "3", "3"]} +{"4003112": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005291": ["2", "2", "3", "2", "3", "2", "2"]} +{"0006673": ["3", "3", "2", "3", "2", "2", "2"]} +{"2004129": ["3", "3", "2", "3", "2", "3", "3"]} +{"7004660": ["3", "3", "3", "2", "3", "2", "3"]} +{"1005382": ["1", "2", "3", "2", "1", "3", "1"]} +{"0003480": ["3", "3", "2", "3", "1", "3", "3"]} +{"3004488": ["3", "1", "3", "3", "2", "3", "1"]} +{"1004224": ["2", "1", "3", "3", "2", "1", "1"]} +{"0003713": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001947": ["3", "3", "1", "3", "3", "3", "None"]} +{"5001947": ["3", "3", "1", "3", "3", "3", "3"]} +{"2004344": ["3", "3", "3", "3", "2", "1", "2"]} +{"0006584": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003421": ["3", "1", "3", "3", "3", "3", "1"]} +{"1005512": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001939": ["3", "3", "3", "1", "1", "2", "1"]} +{"6002587": ["2", "3", "3", "3", "3", "1", "1"]} +{"4003296": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001647": ["1", "2", "3", "2", "1", "3", "1"]} +{"8003657": ["3", "2", "3", "3", "2", "1", "1"]} +{"7003283": ["3", "3", "2", "3", "1", "3", "3"]} +{"0003271": ["3", "2", "3", "3", "3", "3", "3"]} +{"4003568": ["3", "3", "1", "3", "2", "1", "1"]} +{"8001899": ["3", "3", "3", "1", "2", "3", "2"]} +{"8003679": ["2", "3", "2", "3", "3", "3", "2"]} +{"6002124": ["1", "1", "3", "3", "2", "3", "1"]} +{"3003331": ["1", "1", "3", "1", "3", "3", "1"]} +{"2003812": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004690": ["2", "3", "1", "3", "1", "3", "1"]} +{"3006812": ["3", "3", "3", "None", "1", "1", "2"]} +{"7004056": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006812": ["3", "3", "3", "3", "1", "1", "2"]} +{"5001579": ["3", "3", "2", "3", "1", "3", "3"]} +{"0004312": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004864": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005761": ["3", "3", "1", "3", "2", "3", "2"]} +{"4002543": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003439": ["3", "2", "3", "3", "2", "3", "2"]} +{"4004583": ["2", "2", "3", "3", "3", "2", "2"]} +{"2003286": ["3", "3", "3", "3", "3", "1", "3"]} +{"4004492": ["3", "1", "3", "3", "3", "3", "1"]} +{"2003363": ["3", "2", "3", "2", "1", "1", "1"]} +{"4004762": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003893": ["1", "2", "3", "1", "1", "1", "1"]} +{"1006165": ["2", "2", "3", "2", "3", "1", "1"]} +{"1004640": ["2", "2", "3", "2", "3", "3", "1"]} +{"1006122": ["2", "2", "3", "2", "3", "3", "1"]} +{"3003618": ["3", "3", "1", "3", "1", "1", "1"]} +{"2005371": ["3", "3", "3", "3", "2", "3", "1"]} +{"3004761": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004206": ["1", "1", "3", "1", "1", "3", "1"]} +{"4003410": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003451": ["3", "2", "3", "3", "3", "3", "2"]} +{"3006892": ["3", "3", "1", "3", "1", "1", "2"]} +{"2006846": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002518": ["3", "3", "3", "3", "1", "2", "2"]} +{"7003748": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006416": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005865": ["1", "3", "3", "3", "2", "3", "1"]} +{"6002962": ["2", "2", "3", "3", "3", "3", "2"]} +{"3006788": ["3", "3", "1", "3", "3", "3", "1"]} +{"1003871": ["2", "1", "3", "3", "3", "3", "2"]} +{"2006693": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004959": ["2", "3", "3", "3", "2", "3", "2"]} +{"2004159": ["3", "2", "3", "3", "3", "1", "2"]} +{"0006282": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003507": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003376": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003274": ["3", "3", "3", "2", "1", "1", "1"]} +{"4003757": ["3", "3", "1", "3", "2", "3", "3"]} +{"6002369": ["1", "3", "3", "3", "2", "3", "1"]} +{"7002118": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003969": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004379": ["3", "3", "1", "3", "1", "1", "3"]} +{"3005876": ["2", "3", "3", "3", "1", "3", "1"]} +{"3003518": ["1", "3", "1", "3", "1", "3", "1"]} +{"2007972": ["2", "3", "3", "1", "3", "3", "1"]} +{"3004359": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003535": ["3", "1", "3", "3", "3", "3", "2"]} +{"6003047": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003047": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003675": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005262": ["3", "3", "3", "2", "3", "1", "2"]} +{"6004375": ["2", "1", "3", "1", "2", "3", "1"]} +{"2006829": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004202": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003412": ["3", "3", "3", "3", "3", "2", "None"]} +{"7003412": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004175": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004403": ["3", "2", "3", "3", "3", "2", "2"]} +{"6003240": ["3", "3", "3", "3", "3", "3", "2"]} +{"2003414": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001897": ["3", "3", "3", "3", "1", "3", "1"]} +{"4004730": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003419": ["3", "1", "3", "2", "3", "3", "2"]} +{"8002794": ["2", "3", "3", "3", "2", "3", "2"]} +{"1005649": ["2", "1", "3", "1", "1", "3", "1"]} +{"1003389": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003241": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007016": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003478": ["2", "3", "3", "2", "3", "3", "1"]} +{"8001377": ["2", "2", "3", "3", "1", "3", "1"]} +{"1006277": ["2", "2", "3", "1", "3", "3", "1"]} +{"0005968": ["3", "3", "3", "3", "2", "1", "2"]} +{"6002192": ["2", "3", "3", "3", "3", "3", "1"]} +{"6002266": ["2", "3", "3", "2", "3", "2", "1"]} +{"8001545": ["1", "2", "3", "2", "3", "3", "1"]} +{"4004603": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003534": ["3", "2", "3", "1", "3", "3", "1"]} +{"4004708": ["3", "2", "3", "3", "3", "2", "2"]} +{"6002604": ["3", "1", "3", "2", "3", "2", "1"]} +{"6003115": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001743": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002345": ["2", "3", "3", "3", "2", "1", "1"]} +{"3004042": ["3", "3", "3", "3", "2", "1", "2"]} +{"4004042": ["3", "2", "3", "3", "2", "3", "3"]} +{"2003125": ["3", "3", "1", "3", "3", "3", "3"]} +{"1005829": ["2", "2", "3", "2", "2", "3", "1"]} +{"3006259": ["3", "3", "3", "3", "3", "2", "2"]} +{"7002161": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003900": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002471": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004745": ["3", "2", "3", "2", "3", "3", "1"]} +{"1004139": ["1", "2", "3", "1", "3", "3", "1"]} +{"4002183": ["1", "1", "3", "3", "1", "3", "1"]} +{"8002845": ["1", "2", "3", "1", "1", "3", "1"]} +{"4002372": ["2", "2", "3", "3", "2", "3", "1"]} +{"3005605": ["3", "3", "3", "3", "1", "1", "1"]} +{"7003398": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004779": ["1", "1", "3", "3", "1", "3", "1"]} +{"6003391": ["1", "3", "3", "1", "2", "3", "1"]} +{"7004312": ["1", "3", "3", "2", "1", "3", "1"]} +{"2006422": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003056": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004166": ["1", "1", "3", "1", "1", "3", "1"]} +{"0005331": ["3", "3", "3", "3", "3", "1", "3"]} +{"0003985": ["3", "3", "1", "3", "1", "3", "2"]} +{"2007571": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003836": ["1", "3", "3", "1", "3", "3", "1"]} +{"6003728": ["2", "3", "3", "3", "3", "3", "2"]} diff --git a/webpage/res/res_rd1_16k/ans_yuansheng.jsonl b/webpage/res/res_rd1_16k/ans_yuansheng.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..73d805cd1788284996b78e477a9ce93e4f0437e4 --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_yuansheng.jsonl @@ -0,0 +1,1034 @@ +{"0003588": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003323": ["1", "1", "3", "1", "3", "1", "1"]} +{"0003003": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004441": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003412": ["2", "1", "3", "3", "3", "1", "1"]} +{"7004925": ["3", "3", "3", "1", "2", "1", "2"]} +{"8003961": ["2", "2", "3", "2", "1", "1", "1"]} +{"3005074": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004441": ["2", "1", "3", "2", "2", "1", "1"]} +{"3005074": ["3", "3", "2", "3", "1", "3", "2"]} +{"6002691": ["2", "1", "3", "1", "1", "2", "1"]} +{"6004633": ["2", "3", "3", "2", "2", "1", "1"]} +{"1006009": ["3", "2", "3", "2", "1", "1", "2"]} +{"4004951": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004938": ["3", "2", "3", "2", "2", "1", "2"]} +{"7003324": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005312": ["3", "3", "3", "1", "3", "1", "2"]} +{"7003831": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003294": ["3", "3", "1", "3", "3", "1", "3"]} +{"0003415": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003935": ["3", "1", "3", "1", "3", "1", "1"]} +{"3004720": ["3", "None", "2", "3", "3", "1", "2"]} +{"3005921": ["3", "2", "3", "3", "1", "1", "2"]} +{"1006121": ["3", "3", "3", "3", "1", "1", "2"]} +{"1004911": ["1", "2", "3", "1", "2", "1", "1"]} +{"2003238": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007688": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006155": ["3", "3", "3", "3", "2", "2", "3"]} +{"8003116": ["2", "3", "3", "2", "2", "2", "1"]} +{"7003184": ["3", "3", "3", "2", "2", "3", "3"]} +{"3005718": ["3", "3", "3", "3", "2", "2", "2"]} +{"0004529": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003321": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003107": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003974": ["3", "1", "3", "1", "3", "1", "1"]} +{"3003479": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002454": ["3", "1", "3", "1", "3", "1", "2"]} +{"6002497": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007059": ["3", "3", "3", "3", "1", "3", "3"]} +{"4004696": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006216": ["3", "3", "3", "2", "1", "1", "2"]} +{"3004157": ["3", "3", "3", "2", "2", "2", "2"]} +{"0003460": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004259": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006017": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002907": ["3", "3", "3", "1", "2", "1", "2"]} +{"4004866": ["3", "1", "3", "1", "2", "1", "2"]} +{"2007798": ["2", "3", "3", "3", "2", "1", "2"]} +{"1006167": ["3", "3", "3", "2", "1", "1", "2"]} +{"4004992": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003187": ["3", "3", "3", "2", "2", "1", "2"]} +{"8002009": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002910": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004040": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001555": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004296": ["3", "1", "3", "2", "1", "2", "2"]} +{"6002815": ["3", "1", "3", "1", "2", "1", "2"]} +{"7004444": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003072": ["3", "3", "3", "3", "3", "1", "3"]} +{"2004192": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002585": ["3", "1", "3", "3", "3", "1", "2"]} +{"3004048": ["3", "2", "3", "3", "1", "1", "2"]} +{"3005023": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002303": ["2", "3", "3", "2", "1", "2", "2"]} +{"6004863": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005879": ["3", "3", "3", "1", "1", "1", "2"]} +{"7002427": ["3", "3", "2", "1", "1", "2", "2"]} +{"2005366": ["3", "3", "3", "2", "1", "1", "1"]} +{"4004331": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004182": ["3", "3", "3", "1", "1", "1", "1"]} +{"3005957": ["3", "3", "3", "3", "1", "3", "3"]} +{"7003976": ["3", "3", "2", "3", "1", "1", "3"]} +{"6002762": ["3", "3", "2", "1", "1", "1", "1"]} +{"8003243": ["3", "3", "3", "1", "1", "1", "2"]} +{"2004714": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002368": ["3", "3", "3", "1", "3", "1", "3"]} +{"4002667": ["3", "3", "2", "3", "1", "3", "3"]} +{"4004453": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003735": ["3", "3", "3", "1", "3", "1", "3"]} +{"0003966": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004854": ["3", "3", "3", "3", "1", "3", "3"]} +{"4003430": ["3", "3", "3", "1", "1", "3", "2"]} +{"8003542": ["3", "3", "3", "1", "1", "1", "1"]} +{"8001543": ["3", "3", "3", "3", "3", "1", "3"]} +{"3005826": ["3", "3", "3", "1", "1", "2", "2"]} +{"0004035": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007646": ["3", "3", "None", "3", "1", "1", "3"]} +{"4002730": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003888": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002140": ["3", "3", "3", "1", "1", "1", "2"]} +{"3004127": ["3", "3", "3", "1", "2", "1", "2"]} +{"2003423": ["3", "3", "3", "2", "2", "3", "3"]} +{"7004147": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006107": ["3", "3", "3", "2", "3", "1", "2"]} +{"3004581": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004755": ["3", "1", "3", "1", "2", "3", "1"]} +{"3004250": ["3", "2", "3", "1", "1", "1", "2"]} +{"2003329": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003152": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002954": ["3", "2", "3", "1", "1", "1", "1"]} +{"6004607": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004215": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005252": ["3", "3", "2", "3", "2", "3", "2"]} +{"6002492": ["3", "2", "3", "2", "3", "1", "2"]} +{"4003726": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003684": ["3", "2", "3", "3", "2", "2", "3"]} +{"7002698": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003878": ["3", "1", "3", "1", "3", "1", "1"]} +{"2005014": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005532": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007648": ["3", "3", "3", "3", "3", "1", "2"]} +{"0003096": ["3", "3", "3", "3", "2", "2", "3"]} +{"6002688": ["3", "1", "3", "2", "2", "1", "2"]} +{"2007949": ["2", "3", "3", "3", "2", "3", "3"]} +{"5001808": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001808": ["3", "3", "3", "3", "3", "2", "3"]} +{"8002207": ["3", "2", "3", "2", "1", "1", "1"]} +{"4004256": ["3", "2", "3", "3", "3", "3", "3"]} +{"6003601": ["3", "1", "3", "3", "3", "1", "1"]} +{"1003980": ["3", "1", "3", "2", "3", "1", "2"]} +{"1004991": ["3", "1", "3", "1", "1", "1", "1"]} +{"2006032": ["3", "3", "1", "3", "3", "3", "2"]} +{"1003441": ["3", "1", "3", "1", "3", "1", "1"]} +{"7003854": ["3", "3", "3", "2", "3", "2", "2"]} +{"3003291": ["3", "1", "3", "3", "1", "1", "1"]} +{"1005373": ["2", "1", "3", "1", "3", "1", "1"]} +{"3006965": ["3", "2", "3", "2", "2", "2", "2"]} +{"1005647": ["2", "1", "3", "1", "1", "1", "1"]} +{"7002891": ["3", "1", "3", "1", "1", "1", "1"]} +{"0004121": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003645": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005059": ["3", "3", "1", "3", "2", "3", "2"]} +{"4002546": ["3", "2", "3", "3", "2", "3", "2"]} +{"7002634": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005450": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004702": ["3", "3", "3", "2", "3", "3", "3"]} +{"7003740": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003890": ["3", "3", "3", "3", "2", "1", "2"]} +{"3003847": ["3", "1", "3", "1", "3", "1", "1"]} +{"8003754": ["3", "3", "3", "2", "3", "3", "2"]} +{"8001847": ["3", "1", "3", "1", "3", "1", "1"]} +{"0003114": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007787": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003292": ["3", "3", "3", "1", "1", "1", "1"]} +{"8002060": ["3", "2", "3", "2", "2", "1", "2"]} +{"4002061": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003317": ["3", "3", "3", "1", "2", "3", "2"]} +{"2005214": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006527": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001803": ["3", "1", "3", "1", "1", "1", "1"]} +{"0005600": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006699": ["2", "1", "3", "1", "3", "1", "1"]} +{"6003791": ["3", "1", "3", "1", "3", "1", "1"]} +{"7004958": ["3", "3", "3", "2", "3", "1", "2"]} +{"2005627": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003780": ["3", "1", "3", "3", "2", "2", "1"]} +{"1004101": ["3", "2", "3", "2", "2", "2", "1"]} +{"1006795": ["2", "3", "3", "1", "2", "1", "1"]} +{"3004293": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003961": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001652": ["3", "1", "3", "1", "1", "1", "1"]} +{"2007713": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004969": ["3", "3", "3", "3", "3", "1", "3"]} +{"1003738": ["3", "1", "3", "1", "2", "1", "1"]} +{"2006869": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003232": ["3", "3", "3", "3", "2", "1", "2"]} +{"4003703": ["3", "3", "3", "3", "2", "2", "2"]} +{"0003783": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004602": ["3", "2", "3", "3", "2", "1", "2"]} +{"6002669": ["3", "3", "3", "2", "1", "2", "2"]} +{"6003742": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007191": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003327": ["3", "3", "3", "3", "3", "1", "2"]} +{"8002260": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005563": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002432": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003742": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006636": ["3", "3", "3", "2", "3", "2", "2"]} +{"8001873": ["1", "3", "3", "1", "2", "1", "1"]} +{"1006553": ["2", "3", "3", "3", "2", "3", "2"]} +{"8002863": ["2", "3", "3", "2", "1", "2", "1"]} +{"1003898": ["1", "1", "3", "1", "3", "1", "1"]} +{"2005135": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004720": ["3", "3", "3", "3", "3", "1", "2"]} +{"2007646": ["3", "3", "3", "3", "1", "1", "3"]} +{"2007646": ["3", "3", "3", "3", "1", "2", "3"]} +{"1004766": ["2", "3", "3", "2", "1", "2", "2"]} +{"0005733": ["3", "3", "2", "3", "1", "3", "3"]} +{"7003773": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003408": ["3", "3", "1", "3", "2", "3", "3"]} +{"2007892": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001743": ["2", "3", "3", "2", "3", "2", "2"]} +{"7003297": ["3", "3", "3", "2", "3", "2", "3"]} +{"1004386": ["2", "3", "3", "1", "3", "2", "2"]} +{"1004023": ["2", "2", "3", "2", "3", "2", "2"]} +{"2003585": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007548": ["3", "3", "3", "3", "3", "1", "2"]} +{"8002386": ["3", "3", "3", "2", "2", "2", "2"]} +{"0006013": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002944": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003022": ["1", "1", "3", "1", "3", "2", "1"]} +{"1005198": ["2", "3", "3", "2", "2", "3", "2"]} +{"3006884": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006665": ["2", "3", "3", "2", "2", "3", "2"]} +{"4002053": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004553": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004322": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006025": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002862": ["2", "3", "3", "3", "1", "2", "2"]} +{"7004480": ["2", "3", "3", "2", "3", "3", "3"]} +{"0003487": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003149": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003180": ["3", "3", "3", "3", "1", "1", "1"]} +{"5001502": ["3", "3", "2", "3", "2", "2", "3"]} +{"4004679": ["3", "1", "3", "3", "3", "3", "2"]} +{"8001324": ["2", "3", "3", "3", "2", "2", "2"]} +{"5001395": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005208": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006746": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003776": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004147": ["1", "2", "3", "2", "3", "1", "1"]} +{"6002907": ["2", "3", "3", "2", "2", "1", "2"]} +{"6003281": ["2", "3", "3", "3", "3", "3", "3"]} +{"2003040": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006594": ["3", "3", "3", "2", "2", "2", "2"]} +{"4004348": ["3", "2", "3", "3", "2", "2", "2"]} +{"1003770": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006326": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006326": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003571": ["3", "3", "1", "3", "None", "3", "3"]} +{"4003860": ["3", "2", "3", "3", "2", "3", "2"]} +{"1006284": ["2", "1", "3", "1", "2", "1", "1"]} +{"4003731": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002328": ["3", "1", "3", "3", "2", "1", "2"]} +{"3006969": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006312": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003497": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002171": ["3", "3", "3", "3", "3", "2", "3"]} +{"2005355": ["3", "2", "3", "None", "3", "1", "2"]} +{"8002293": ["2", "2", "3", "3", "1", "1", "2"]} +{"4004854": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003902": ["2", "None", "3", "2", "3", "3", "2"]} +{"6002145": ["2", "2", "3", "2", "1", "1", "2"]} +{"2006463": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004507": ["2", "1", "3", "1", "2", "1", "2"]} +{"3004163": ["3", "3", "3", "2", "3", "3", "2"]} +{"6002432": ["2", "1", "3", "1", "3", "1", "1"]} +{"1005151": ["2", "2", "3", "2", "2", "2", "2"]} +{"2003946": ["3", "2", "3", "3", "3", "3", "3"]} +{"0003571": ["3", "3", "1", "3", "3", "3", "3"]} +{"2005355": ["3", "2", "3", "3", "3", "1", "2"]} +{"8003902": ["2", "3", "3", "2", "3", "3", "2"]} +{"4002976": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006986": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001628": ["2", "3", "3", "3", "1", "1", "1"]} +{"2006440": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003598": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002783": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004405": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004585": ["3", "3", "1", "3", "3", "3", "3"]} +{"1003373": ["2", "2", "3", "1", "3", "2", "3"]} +{"6004432": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004096": ["2", "3", "3", "2", "2", "3", "2"]} +{"5001377": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002500": ["2", "2", "3", "2", "2", "1", "1"]} +{"8001920": ["2", "3", "3", "2", "1", "2", "2"]} +{"6002636": ["2", "1", "3", "2", "2", "1", "1"]} +{"7003340": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006491": ["3", "3", "3", "3", "2", "1", "2"]} +{"8003004": ["3", "3", "3", "2", "2", "1", "2"]} +{"2007443": ["3", "3", "None", "None", "None", "None", "None"]} +{"2007443": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004362": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002355": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003739": ["3", "3", "3", "3", "3", "1", "3"]} +{"2004419": ["3", "2", "3", "3", "3", "2", "3"]} +{"8001022": ["3", "2", "3", "2", "2", "2", "2"]} +{"2004299": ["3", "2", "3", "3", "3", "1", "2"]} +{"1005006": ["1", "2", "3", "1", "3", "1", "1"]} +{"7004419": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003582": ["2", "2", "3", "2", "3", "2", "2"]} +{"4002410": ["None", "1", "3", "3", "3", "3", "3"]} +{"6004850": ["1", "2", "3", "2", "1", "2", "1"]} +{"0005060": ["3", "3", "1", "3", "1", "3", "3"]} +{"2004012": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001426": ["2", "2", "3", "2", "2", "1", "1"]} +{"6004527": ["3", "2", "3", "3", "2", "2", "2"]} +{"8001976": ["2", "3", "3", "3", "2", "2", "2"]} +{"3004541": ["3", "2", "3", "3", "2", "1", "2"]} +{"1005009": ["2", "2", "3", "2", "3", "2", "2"]} +{"4003716": ["3", "3", "3", "3", "2", "1", "2"]} +{"6003665": ["3", "3", "3", "3", "3", "2", "2"]} +{"0005954": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002750": ["2", "3", "3", "2", "3", "3", "2"]} +{"2003420": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003522": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005066": ["2", "3", "3", "2", "1", "1", "2"]} +{"4002410": ["3", "1", "3", "3", "3", "3", "3"]} +{"8001331": ["3", "3", "3", "2", "2", "3", "3"]} +{"3005474": ["3", "3", "3", "3", "2", "1", "2"]} +{"6004710": ["2", "1", "3", "2", "1", "1", "1"]} +{"4003977": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004820": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002617": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006727": ["1", "1", "3", "1", "2", "1", "1"]} +{"1006396": ["2", "1", "3", "1", "1", "1", "1"]} +{"3006434": ["3", "3", "3", "3", "1", "2", "2"]} +{"2005409": ["3", "3", "3", "3", "None", "3", "3"]} +{"2005409": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005382": ["2", "3", "3", "3", "2", "3", "3"]} +{"1003377": ["2", "3", "3", "2", "3", "3", "2"]} +{"5001845": ["3", "3", "3", "3", "1", "3", "3"]} +{"0005754": ["2", "3", "3", "2", "3", "2", "2"]} +{"2004442": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006479": ["1", "1", "3", "1", "2", "3", "1"]} +{"2005619": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005619": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005170": ["3", "None", "3", "2", "3", "1", "2"]} +{"2006596": ["3", "3", "3", "3", "2", "1", "3"]} +{"8003629": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003377": ["3", "3", "3", "2", "3", "3", "3"]} +{"0005170": ["3", "2", "3", "2", "3", "1", "2"]} +{"4003405": ["3", "2", "3", "3", "2", "3", "3"]} +{"1006249": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003148": ["2", "3", "3", "2", "2", "3", "2"]} +{"3006199": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002510": ["1", "1", "3", "1", "2", "3", "1"]} +{"6003625": ["3", "1", "3", "2", "3", "2", "2"]} +{"6004456": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006001": ["1", "1", "3", "2", "3", "1", "2"]} +{"5001842": ["3", "3", "3", "3", "2", "1", "2"]} +{"2007719": ["3", "3", "3", "3", "2", "1", "2"]} +{"2007971": ["3", "3", "2", "3", "2", "1", "2"]} +{"3005998": ["2", "3", "3", "2", "2", "1", "1"]} +{"8002135": ["1", "1", "3", "2", "2", "1", "1"]} +{"7003306": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002008": ["2", "3", "3", "2", "2", "3", "3"]} +{"6003598": ["2", "1", "3", "2", "2", "1", "1"]} +{"8002899": ["3", "2", "3", "2", "1", "3", "2"]} +{"6004142": ["2", "3", "3", "3", "3", "3", "3"]} +{"0005361": ["3", "2", "3", "2", "2", "1", "2"]} +{"3003043": ["2", "3", "3", "3", "2", "2", "2"]} +{"6002069": ["2", "3", "3", "2", "3", "1", "2"]} +{"7003117": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005725": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003117": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006932": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003377": ["3", "2", "3", "3", "2", "1", "2"]} +{"0006309": ["3", "3", "2", "3", "2", "1", "2"]} +{"6002892": ["1", "1", "3", "1", "2", "3", "2"]} +{"2005568": ["3", "3", "3", "3", "3", "1", "3"]} +{"3005203": ["3", "3", "1", "3", "2", "1", "3"]} +{"7003105": ["3", "3", "3", "2", "3", "3", "3"]} +{"4004048": ["3", "2", "3", "3", "3", "3", "2"]} +{"0006034": ["3", "3", "3", "3", "1", "3", "3"]} +{"3005732": ["2", "3", "3", "3", "1", "3", "3"]} +{"3005357": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001218": ["2", "3", "3", "2", "1", "3", "2"]} +{"8002374": ["3", "2", "3", "2", "1", "3", "3"]} +{"6003964": ["3", "3", "3", "2", "1", "1", "1"]} +{"8003172": ["2", "3", "3", "2", "1", "3", "2"]} +{"6003605": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001117": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003536": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002553": ["3", "1", "3", "2", "2", "3", "1"]} +{"2007549": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004947": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003731": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003648": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006039": ["2", "3", "3", "2", "3", "3", "3"]} +{"6002574": ["2", "1", "3", "2", "2", "3", "2"]} +{"1004256": ["2", "1", "3", "2", "2", "3", "1"]} +{"2005221": ["3", "3", "3", "3", "2", "1", "2"]} +{"6004017": ["2", "3", "3", "2", "2", "1", "2"]} +{"6002149": ["2", "3", "3", "2", "3", "1", "2"]} +{"2005798": ["3", "3", "2", "3", "2", "3", "3"]} +{"4003649": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004925": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005967": ["1", "2", "3", "1", "1", "3", "2"]} +{"2003070": ["3", "3", "3", "2", "3", "3", "3"]} +{"7002060": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005743": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003770": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003333": ["2", "1", "3", "2", "2", "3", "2"]} +{"6004179": ["2", "1", "3", "2", "3", "1", "1"]} +{"2006858": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006732": ["2", "2", "3", "2", "3", "3", "3"]} +{"2007826": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002915": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007126": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005119": ["3", "3", "1", "3", "2", "3", "3"]} +{"3006958": ["2", "2", "3", "2", "1", "3", "2"]} +{"8002149": ["2", "3", "3", "2", "2", "3", "3"]} +{"1006164": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003863": ["2", "2", "3", "2", "1", "3", "2"]} +{"4003450": ["3", "3", "1", "3", "2", "3", "3"]} +{"4003136": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002409": ["3", "3", "3", "2", "2", "3", "3"]} +{"1006238": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003373": ["2", "3", "3", "3", "2", "2", "2"]} +{"7003210": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002438": ["2", "1", "3", "2", "2", "3", "2"]} +{"8003089": ["3", "2", "3", "3", "1", "3", "2"]} +{"3003268": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006610": ["3", "3", "3", "3", "1", "2", "3"]} +{"0003021": ["3", "3", "3", "3", "2", "2", "3"]} +{"4002961": ["3", "2", "3", "2", "1", "3", "2"]} +{"1006599": ["1", "1", "3", "1", "1", "3", "1"]} +{"8003394": ["1", "1", "3", "1", "2", "3", "1"]} +{"7004045": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001035": ["2", "3", "3", "2", "3", "3", "3"]} +{"4003751": ["3", "1", "3", "3", "1", "3", "2"]} +{"4002496": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003938": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002269": ["2", "3", "3", "3", "2", "3", "3"]} +{"8002001": ["3", "2", "3", "3", "2", "3", "3"]} +{"3004988": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003513": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004733": ["1", "1", "3", "1", "2", "3", "2"]} +{"1004733": ["1", "1", "3", "1", "2", "3", "1"]} +{"3003844": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002274": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004357": ["3", "3", "3", "3", "3", "1", "3"]} +{"2003229": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004555": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005711": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005670": ["3", "3", "1", "3", "3", "3", "3"]} +{"2006433": ["3", "3", "3", "2", "3", "1", "2"]} +{"3006207": ["3", "3", "3", "3", "1", "3", "3"]} +{"4004226": ["3", "3", "3", "2", "2", "2", "2"]} +{"8003783": ["2", "2", "3", "2", "1", "3", "2"]} +{"7003777": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004288": ["3", "3", "3", "3", "3", "1", "3"]} +{"8003972": ["2", "2", "3", "3", "1", "3", "2"]} +{"0005205": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004480": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004767": ["1", "2", "3", "1", "2", "3", "2"]} +{"1006129": ["1", "1", "3", "1", "3", "3", "3"]} +{"3005785": ["3", "3", "3", "3", "2", "1", "3"]} +{"6003318": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003709": ["2", "3", "3", "2", "1", "3", "2"]} +{"0005215": ["3", "2", "3", "3", "2", "3", "3"]} +{"1006169": ["3", "1", "3", "2", "2", "3", "3"]} +{"0006285": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007815": ["2", "3", "2", "3", "2", "3", "2"]} +{"3003436": ["3", "3", "3", "2", "2", "3", "2"]} +{"0005203": ["3", "3", "3", "3", "1", "3", "3"]} +{"2003004": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006732": ["3", "3", "1", "3", "2", "3", "3"]} +{"2006714": ["3", "2", "3", "3", "2", "3", "3"]} +{"0004321": ["3", "2", "3", "3", "3", "3", "3"]} +{"3004074": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003364": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004684": ["1", "2", "3", "1", "1", "2", "1"]} +{"7002805": ["3", "1", "3", "3", "1", "3", "2"]} +{"8001999": ["2", "3", "3", "2", "3", "3", "3"]} +{"0005756": ["3", "3", "3", "3", "3", "2", "3"]} +{"2006020": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007716": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003879": ["1", "1", "3", "1", "3", "3", "1"]} +{"0004584": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005263": ["3", "3", "3", "3", "2", "1", "3"]} +{"3006975": ["3", "2", "3", "3", "1", "2", "2"]} +{"3006061": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001036": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003122": ["3", "3", "3", "3", "1", "2", "2"]} +{"7002648": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004994": ["3", "3", "3", "3", "1", "2", "2"]} +{"6002179": ["3", "3", "3", "3", "2", "1", "2"]} +{"7002154": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003300": ["3", "3", "3", "3", "2", "2", "3"]} +{"6004930": ["3", "1", "3", "3", "2", "1", "2"]} +{"3006977": ["2", "2", "3", "2", "2", "3", "2"]} +{"7003264": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005967": ["3", "3", "3", "2", "2", "3", "3"]} +{"4003964": ["3", "3", "3", "2", "2", "3", "3"]} +{"2004165": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004935": ["1", "1", "3", "3", "2", "3", "1"]} +{"2005418": ["3", "3", "3", "3", "3", "2", "2"]} +{"7002343": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005734": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004948": ["2", "3", "3", "2", "3", "3", "3"]} +{"0004924": ["3", "3", "3", "3", "2", "1", "2"]} +{"3005810": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003712": ["3", "3", "3", "3", "2", "1", "2"]} +{"6002221": ["3", "2", "3", "2", "3", "1", "2"]} +{"1005740": ["1", "1", "3", "1", "2", "3", "1"]} +{"2007031": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006180": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001522": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004427": ["3", "3", "3", "2", "3", "3", "2"]} +{"1003702": ["1", "1", "3", "1", "3", "3", "1"]} +{"1005489": ["2", "2", "3", "2", "1", "3", "2"]} +{"3006744": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003664": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004278": ["3", "3", "3", "3", "2", "2", "3"]} +{"3003900": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005586": ["2", "3", "3", "2", "3", "1", "2"]} +{"4002797": ["3", "3", "3", "3", "2", "2", "2"]} +{"2006602": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004740": ["3", "3", "3", "2", "2", "2", "2"]} +{"4002842": ["3", "3", "3", "2", "2", "3", "2"]} +{"0005212": ["3", "3", "2", "3", "2", "2", "3"]} +{"8003468": ["3", "3", "3", "2", "3", "3", "2"]} +{"2007990": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006153": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003752": ["1", "3", "3", "1", "2", "3", "2"]} +{"4002597": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002779": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002116": ["3", "1", "3", "3", "2", "3", "2"]} +{"7003828": ["3", "3", "3", "2", "3", "1", "2"]} +{"2007845": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004890": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001172": ["1", "2", "3", "2", "3", "3", "2"]} +{"0003975": ["3", "3", "1", "3", "1", "3", "3"]} +{"2005866": ["3", "2", "3", "3", "2", "3", "2"]} +{"0006953": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005729": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005318": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004476": ["3", "2", "3", "2", "2", "1", "2"]} +{"7004080": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004515": ["2", "1", "3", "2", "1", "3", "2"]} +{"7003841": ["3", "2", "3", "3", "3", "3", "2"]} +{"6002306": ["2", "2", "3", "2", "3", "3", "2"]} +{"2004339": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001468": ["2", "2", "3", "3", "2", "3", "2"]} +{"3005990": ["3", "2", "3", "3", "1", "3", "2"]} +{"0006145": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001129": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003613": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005379": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002233": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002139": ["2", "2", "3", "3", "1", "3", "2"]} +{"1004741": ["1", "1", "3", "2", "3", "3", "2"]} +{"1003637": ["1", "1", "3", "2", "2", "3", "1"]} +{"6002628": ["3", "1", "3", "3", "2", "3", "2"]} +{"6003650": ["1", "1", "3", "2", "3", "3", "1"]} +{"1003719": ["1", "1", "3", "2", "3", "3", "1"]} +{"0006047": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004201": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006047": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003786": ["1", "1", "3", "2", "3", "3", "1"]} +{"2007677": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005336": ["2", "1", "3", "2", "3", "3", "2"]} +{"6004503": ["2", "3", "3", "3", "2", "2", "2"]} +{"2007941": ["3", "1", "3", "3", "3", "3", "2"]} +{"1006299": ["1", "1", "3", "2", "3", "1", "2"]} +{"7004743": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003450": ["3", "3", "3", "3", "1", "2", "3"]} +{"1005416": ["2", "1", "3", "3", "2", "3", "2"]} +{"7004401": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003286": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004962": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001982": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006611": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003866": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006039": ["3", "3", "3", "3", "2", "1", "2"]} +{"2006290": ["3", "3", "3", "2", "2", "3", "3"]} +{"0006588": ["3", "3", "3", "3", "3", "1", "2"]} +{"5001292": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001359": ["2", "1", "3", "2", "1", "1", "1"]} +{"2005295": ["3", "2", "1", "3", "3", "3", "2"]} +{"4004254": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001850": ["3", "2", "3", "3", "2", "3", "2"]} +{"6004410": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003848": ["2", "1", "3", "2", "3", "3", "2"]} +{"5001099": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005074": ["3", "3", "3", "3", "3", "1", "3"]} +{"1005371": ["2", "1", "3", "3", "3", "3", "2"]} +{"5001532": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003798": ["3", "3", "3", "3", "2", "None", "2"]} +{"0006080": ["3", "3", "1", "3", "3", "3", "3"]} +{"2006054": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003185": ["1", "3", "3", "2", "3", "3", "2"]} +{"2003447": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005155": ["3", "3", "3", "2", "3", "2", "2"]} +{"5001691": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002579": ["2", "2", "3", "2", "2", "2", "2"]} +{"2005494": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001168": ["2", "2", "3", "2", "1", "2", "2"]} +{"0006052": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003250": ["3", "1", "3", "2", "1", "3", "2"]} +{"3003228": ["3", "2", "3", "2", "1", "2", "2"]} +{"2005791": ["3", "3", "3", "2", "2", "1", "2"]} +{"6003313": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003003": ["3", "3", "3", "3", "1", "2", "2"]} +{"4002254": ["3", "1", "3", "3", "2", "3", "2"]} +{"7004838": ["2", "2", "3", "2", "2", "2", "2"]} +{"2006941": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004888": ["3", "2", "3", "3", "3", "2", "3"]} +{"3006807": ["3", "1", "3", "2", "2", "3", "2"]} +{"6003247": ["3", "3", "3", "3", "1", "3", "3"]} +{"3004205": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005033": ["3", "2", "3", "2", "2", "3", "2"]} +{"7002470": ["3", "2", "3", "2", "2", "3", "2"]} +{"1004316": ["1", "1", "3", "2", "2", "3", "1"]} +{"2007975": ["3", "3", "3", "3", "3", "1", "3"]} +{"4004500": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006480": ["3", "3", "1", "3", "1", "3", "3"]} +{"2003394": ["3", "3", "3", "3", "1", "2", "2"]} +{"2004428": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003070": ["2", "3", "3", "2", "2", "3", "2"]} +{"2006717": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005103": ["3", "2", "3", "2", "3", "1", "2"]} +{"1004601": ["1", "1", "3", "2", "3", "3", "1"]} +{"1003093": ["2", "2", "3", "2", "1", "3", "2"]} +{"3005500": ["2", "3", "3", "2", "3", "3", "2"]} +{"1006305": ["2", "1", "3", "2", "1", "3", "2"]} +{"3005170": ["3", "3", "3", "3", "3", "1", "2"]} +{"4003168": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002908": ["1", "3", "3", "2", "1", "2", "2"]} +{"4002673": ["3", "2", "3", "3", "3", "3", "3"]} +{"1004416": ["1", "3", "3", "1", "3", "3", "1"]} +{"5001894": ["3", "2", "3", "3", "3", "3", "3"]} +{"3005409": ["3", "1", "3", "2", "1", "3", "2"]} +{"7004767": ["3", "3", "3", "3", "3", "1", "3"]} +{"7004872": ["2", "3", "3", "2", "3", "2", "2"]} +{"3003798": ["3", "3", "3", "3", "2", "2", "2"]} +{"1003655": ["1", "1", "3", "1", "2", "3", "1"]} +{"2006045": ["3", "2", "3", "3", "2", "1", "2"]} +{"1005932": ["2", "1", "3", "2", "2", "3", "2"]} +{"0006468": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002495": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006448": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004706": ["2", "3", "3", "3", "3", "2", "2"]} +{"2003151": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004798": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004698": ["3", "3", "3", "3", "2", "2", "2"]} +{"6004370": ["3", "1", "3", "2", "3", "3", "2"]} +{"2005382": ["3", "2", "3", "3", "1", "1", "2"]} +{"1004878": ["1", "3", "3", "2", "2", "2", "2"]} +{"6003348": ["2", "2", "3", "3", "3", "2", "2"]} +{"0004468": ["3", "2", "3", "3", "2", "2", "2"]} +{"4003967": ["3", "1", "3", "3", "2", "3", "2"]} +{"2004203": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006183": ["1", "1", "3", "3", "3", "3", "1"]} +{"6002362": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004226": ["1", "1", "3", "2", "2", "3", "1"]} +{"0004226": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004026": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003888": ["3", "3", "1", "3", "2", "3", "3"]} +{"8002261": ["2", "2", "3", "3", "1", "1", "2"]} +{"5001789": ["3", "3", "2", "3", "2", "3", "3"]} +{"3004493": ["2", "3", "3", "3", "1", "3", "2"]} +{"0004613": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003986": ["2", "3", "3", "2", "1", "3", "1"]} +{"0006202": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003068": ["3", "3", "2", "3", "1", "3", "2"]} +{"6002366": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001808": ["2", "2", "3", "2", "2", "3", "2"]} +{"0006875": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004505": ["3", "2", "3", "3", "1", "3", "2"]} +{"2004082": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004139": ["3", "2", "3", "3", "2", "3", "3"]} +{"0004904": ["3", "3", "1", "3", "2", "3", "3"]} +{"1003201": ["2", "1", "3", "2", "2", "3", "2"]} +{"2003168": ["3", "3", "3", "2", "3", "2", "2"]} +{"3004109": ["2", "1", "3", "3", "3", "3", "2"]} +{"1004500": ["2", "1", "3", "1", "2", "3", "2"]} +{"5001155": ["2", "2", "3", "3", "1", "1", "2"]} +{"1005004": ["1", "1", "3", "3", "2", "3", "2"]} +{"5001166": ["3", "3", "1", "3", "2", "3", "3"]} +{"6004833": ["2", "2", "2", "2", "2", "2", "2"]} +{"3005438": ["3", "2", "3", "3", "3", "1", "2"]} +{"2005540": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003027": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004529": ["3", "1", "3", "2", "1", "2", "2"]} +{"2003939": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007931": ["3", "3", "3", "3", "3", "1", "2"]} +{"7002925": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005464": ["3", "3", "3", "2", "3", "3", "2"]} +{"4004972": ["3", "1", "3", "3", "3", "1", "2"]} +{"8001532": ["2", "3", "3", "3", "1", "2", "2"]} +{"2006917": ["3", "3", "3", "3", "3", "1", "3"]} +{"2004746": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006888": ["3", "2", "3", "3", "2", "2", "2"]} +{"2004117": ["3", "1", "3", "2", "1", "1", "2"]} +{"2004117": ["3", "1", "3", "2", "1", "1", "2"]} +{"2004115": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005814": ["3", "2", "3", "3", "1", "2", "2"]} +{"1005941": ["2", "2", "3", "3", "1", "3", "1"]} +{"1003082": ["2", "2", "3", "2", "2", "3", "1"]} +{"8002735": ["2", "1", "3", "2", "2", "3", "2"]} +{"3003308": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005133": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004390": ["3", "2", "3", "3", "2", "3", "3"]} +{"2007740": ["3", "2", "3", "3", "3", "2", "2"]} +{"8002529": ["2", "3", "3", "3", "1", "2", "2"]} +{"8002742": ["2", "1", "3", "2", "2", "3", "2"]} +{"1006440": ["1", "1", "3", "2", "2", "3", "1"]} +{"3005057": ["2", "2", "3", "2", "1", "1", "2"]} +{"8002618": ["2", "3", "3", "2", "2", "3", "3"]} +{"2003638": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005743": ["2", "2", "3", "2", "1", "3", "2"]} +{"1003206": ["1", "2", "3", "2", "3", "3", "2"]} +{"4002704": ["3", "3", "3", "3", "3", "1", "3"]} +{"7003169": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003675": ["2", "2", "3", "2", "1", "2", "2"]} +{"2005449": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004230": ["3", "2", "3", "3", "1", "2", "2"]} +{"8003448": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003448": ["3", "3", "3", "2", "3", "3", "2"]} +{"1005693": ["1", "2", "3", "2", "2", "3", "1"]} +{"8001348": ["2", "2", "3", "2", "2", "2", "2"]} +{"4002766": ["3", "1", "3", "2", "3", "3", "2"]} +{"8001088": ["1", "2", "3", "2", "3", "1", "2"]} +{"4002907": ["3", "1", "3", "3", "2", "3", "2"]} +{"4004597": ["3", "2", "3", "3", "2", "3", "2"]} +{"7002614": ["3", "3", "3", "2", "3", "2", "2"]} +{"2003524": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006871": ["3", "3", "3", "3", "1", "3", "3"]} +{"0006866": ["3", "3", "3", "3", "1", "1", "2"]} +{"1006401": ["2", "1", "3", "1", "2", "3", "1"]} +{"4004019": ["3", "3", "3", "2", "3", "3", "2"]} +{"0006011": ["3", "3", "1", "3", "2", "3", "3"]} +{"2005445": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002908": ["2", "1", "3", "2", "3", "3", "2"]} +{"4003453": ["3", "2", "3", "3", "2", "3", "2"]} +{"4003402": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003540": ["3", "2", "3", "2", "3", "3", "3"]} +{"0005083": ["3", "3", "3", "3", "None", "2", "2"]} +{"0003756": ["3", "3", "1", "3", "2", "3", "3"]} +{"4002874": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003197": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004702": ["3", "3", "3", "2", "3", "2", "2"]} +{"0005083": ["3", "3", "3", "3", "3", "2", "2"]} +{"6004151": ["2", "1", "3", "2", "2", "3", "1"]} +{"6003579": ["2", "1", "3", "2", "3", "3", "2"]} +{"1006180": ["2", "1", "3", "2", "2", "2", "1"]} +{"2005234": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006420": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003597": ["3", "3", "2", "3", "1", "3", "3"]} +{"3003976": ["3", "2", "3", "2", "3", "3", "2"]} +{"1004840": ["2", "1", "3", "2", "2", "3", "2"]} +{"2004464": ["3", "3", "1", "3", "1", "3", "3"]} +{"4003215": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005599": ["3", "2", "3", "2", "1", "3", "2"]} +{"1003862": ["2", "2", "3", "2", "1", "3", "2"]} +{"1005688": ["3", "1", "3", "3", "3", "3", "1"]} +{"2006322": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006592": ["3", "2", "3", "2", "3", "1", "2"]} +{"4002455": ["3", "3", "3", "3", "1", "3", "3"]} +{"1004685": ["2", "1", "3", "2", "3", "3", "1"]} +{"0005928": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002009": ["2", "1", "3", "2", "3", "3", "1"]} +{"2003597": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006942": ["3", "3", "3", "3", "1", "3", "3"]} +{"7002872": ["3", "3", "3", "2", "3", "3", "3"]} +{"7002872": ["3", "3", "3", "2", "1", "3", "3"]} +{"5001261": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006118": ["3", "3", "3", "2", "3", "2", "2"]} +{"3006167": ["3", "2", "3", "2", "1", "3", "2"]} +{"4002950": ["3", "3", "3", "2", "2", "3", "2"]} +{"7004616": ["2", "3", "3", "2", "3", "3", "2"]} +{"1004567": ["2", "2", "3", "2", "2", "3", "2"]} +{"2007435": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003693": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006151": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003408": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004559": ["1", "1", "3", "1", "3", "2", "1"]} +{"6003900": ["3", "1", "3", "1", "3", "3", "2"]} +{"0003898": ["3", "3", "3", "3", "2", "2", "3"]} +{"7004830": ["3", "3", "3", "3", "1", "3", "3"]} +{"3006022": ["3", "3", "1", "3", "3", "3", "3"]} +{"7004786": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003582": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003291": ["3", "3", "3", "3", "1", "2", "3"]} +{"2004871": ["3", "3", "3", "3", "3", "1", "3"]} +{"6004037": ["2", "2", "3", "3", "2", "2", "2"]} +{"0006062": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007732": ["None", "3", "3", "3", "3", "3", "3"]} +{"2007732": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002691": ["3", "3", "1", "3", "2", "3", "3"]} +{"4003675": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004193": ["1", "2", "3", "1", "2", "3", "1"]} +{"3003461": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006575": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001421": ["3", "3", "2", "2", "3", "3", "3"]} +{"0004467": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005104": ["3", "3", "3", "3", "1", "2", "3"]} +{"0005104": ["3", "3", "3", "3", "1", "1", "3"]} +{"1003625": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003216": ["1", "1", "3", "1", "1", "2", "1"]} +{"0006609": ["3", "3", "3", "3", "1", "3", "3"]} +{"3004368": ["3", "2", "3", "3", "2", "3", "2"]} +{"7003739": ["3", "3", "3", "2", "2", "3", "2"]} +{"2007741": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006900": ["3", "3", "3", "2", "2", "3", "2"]} +{"2004580": ["3", "3", "3", "2", "3", "2", "3"]} +{"2004893": ["3", "3", "3", "2", "2", "2", "2"]} +{"8002934": ["3", "3", "3", "3", "1", "2", "2"]} +{"1003832": ["1", "1", "1", "3", "3", "3", "1"]} +{"3004518": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003491": ["2", "3", "3", "2", "2", "2", "2"]} +{"4004982": ["3", "1", "3", "None", "1", "1", "2"]} +{"2007231": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005158": ["2", "2", "3", "2", "2", "2", "2"]} +{"3005422": ["3", "2", "1", "3", "1", "3", "3"]} +{"3005422": ["3", "2", "1", "3", "1", "3", "2"]} +{"4004982": ["3", "1", "3", "3", "1", "1", "2"]} +{"0006354": ["2", "None", "2", "3", "3", "1", "2"]} +{"1004194": ["1", "1", "3", "3", "2", "3", "1"]} +{"1005493": ["1", "1", "3", "3", "1", "3", "1"]} +{"0006354": ["2", "2", "2", "3", "3", "1", "2"]} +{"5001507": ["3", "2", "3", "3", "3", "3", "3"]} +{"4003898": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005193": ["3", "3", "2", "2", "1", "2", "2"]} +{"2005117": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002505": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006213": ["3", "3", "3", "2", "1", "3", "3"]} +{"2003536": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005094": ["2", "3", "3", "2", "2", "1", "2"]} +{"3003120": ["3", "1", "3", "3", "3", "2", "2"]} +{"6003435": ["2", "1", "3", "2", "3", "1", "1"]} +{"8002285": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003429": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006295": ["3", "3", "1", "3", "2", "3", "3"]} +{"3003759": ["3", "3", "1", "3", "2", "2", "3"]} +{"4004670": ["2", "1", "3", "2", "2", "3", "2"]} +{"2005746": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003737": ["2", "2", "3", "2", "2", "2", "1"]} +{"6003737": ["2", "2", "3", "2", "2", "2", "2"]} +{"5001006": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002032": ["3", "3", "3", "2", "2", "3", "2"]} +{"4004995": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002646": ["3", "3", "3", "2", "3", "3", "3"]} +{"3005767": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004651": ["2", "2", "3", "2", "3", "3", "2"]} +{"0003507": ["3", "3", "2", "3", "1", "1", "2"]} +{"2003150": ["3", "2", "3", "3", "1", "3", "2"]} +{"2006274": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006857": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004509": ["3", "3", "3", "2", "3", "3", "2"]} +{"4004628": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006858": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003563": ["3", "2", "3", "2", "3", "3", "2"]} +{"1005655": ["2", "3", "3", "2", "2", "3", "2"]} +{"0003241": ["3", "3", "3", "3", "1", "3", "3"]} +{"6003230": ["2", "3", "3", "2", "2", "2", "2"]} +{"8003439": ["1", "2", "3", "2", "3", "3", "2"]} +{"7003094": ["2", "3", "3", "2", "3", "3", "2"]} +{"1003140": ["1", "1", "3", "1", "3", "3", "1"]} +{"0003092": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003314": ["2", "3", "3", "2", "2", "3", "2"]} +{"8003623": ["2", "3", "3", "3", "1", "2", "2"]} +{"0004796": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006730": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002725": ["3", "3", "1", "3", "2", "3", "3"]} +{"6002901": ["2", "1", "3", "2", "2", "1", "2"]} +{"6002901": ["2", "1", "3", "2", "2", "1", "1"]} +{"6002588": ["2", "3", "3", "2", "3", "1", "2"]} +{"2006187": ["3", "3", "3", "3", "1", "3", "3"]} +{"7003454": ["3", "3", "3", "2", "1", "3", "2"]} +{"4004140": ["3", "3", "3", "3", "3", "1", "3"]} +{"0005094": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007269": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003461": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001846": ["3", "3", "3", "2", "1", "3", "2"]} +{"4004036": ["3", "2", "3", "2", "2", "3", "2"]} +{"2003240": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004962": ["2", "3", "3", "2", "3", "3", "2"]} +{"0003525": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003247": ["2", "3", "3", "2", "1", "3", "2"]} +{"3004834": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003653": ["2", "2", "3", "2", "1", "2", "2"]} +{"2006123": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003331": ["3", "2", "1", "3", "1", "3", "2"]} +{"5001675": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001294": ["3", "3", "3", "3", "1", "3", "3"]} +{"4002682": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001637": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004804": ["3", "3", "2", "3", "1", "3", "3"]} +{"1006573": ["2", "1", "3", "2", "3", "3", "1"]} +{"7003756": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004839": ["3", "2", "3", "3", "3", "2", "2"]} +{"1005349": ["2", "2", "3", "2", "2", "1", "2"]} +{"2003196": ["3", "3", "3", "3", "2", "3", "3"]} +{"1004309": ["3", "3", "3", "2", "2", "3", "2"]} +{"5001163": ["3", "3", "1", "3", "2", "3", "3"]} +{"5001163": ["3", "3", "1", "3", "1", "3", "3"]} +{"0003483": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006494": ["3", "3", "3", "2", "3", "1", "2"]} +{"6002444": ["2", "2", "3", "1", "2", "2", "2"]} +{"2005988": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004739": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004667": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004881": ["3", "3", "2", "2", "2", "3", "2"]} +{"8001627": ["2", "2", "3", "2", "1", "2", "2"]} +{"2004985": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003142": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003186": ["2", "3", "3", "2", "2", "3", "2"]} +{"2004566": ["3", "3", "3", "2", "3", "2", "3"]} +{"3004113": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004686": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003195": ["3", "1", "3", "3", "2", "2", "2"]} +{"7003737": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002508": ["3", "3", "3", "2", "2", "2", "2"]} +{"3006011": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004834": ["2", "1", "3", "3", "3", "1", "2"]} +{"2005007": ["3", "3", "3", "3", "3", "1", "3"]} +{"1003131": ["2", "2", "3", "2", "3", "3", "2"]} +{"4003318": ["3", "2", "3", "3", "2", "3", "2"]} +{"7002126": ["3", "3", "3", "3", "2", "2", "2"]} +{"2006757": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005440": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003069": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003050": ["2", "2", "3", "3", "1", "2", "2"]} +{"3003271": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007636": ["3", "3", "3", "3", "2", "3", "3"]} +{"0006928": ["3", "3", "1", "3", "1", "3", "3"]} +{"3005565": ["3", "2", "3", "3", "1", "3", "3"]} +{"0006308": ["3", "3", "1", "3", "2", "3", "3"]} +{"1005934": ["3", "2", "3", "2", "3", "2", "2"]} +{"0003603": ["3", "3", "3", "3", "3", "2", "3"]} +{"4004614": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001482": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001081": ["2", "3", "3", "3", "1", "2", "2"]} +{"6004628": ["3", "2", "3", "3", "1", "1", "2"]} +{"8002089": ["2", "3", "3", "3", "1", "2", "2"]} +{"3003220": ["3", "3", "3", "3", "1", "3", "3"]} +{"2005204": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004758": ["1", "1", "3", "1", "3", "3", "2"]} +{"6003057": ["2", "3", "3", "3", "2", "3", "2"]} +{"1006445": ["1", "1", "3", "1", "3", "3", "1"]} +{"6004415": ["3", "2", "3", "2", "2", "2", "2"]} +{"8003013": ["3", "3", "3", "2", "1", "3", "2"]} +{"5001337": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001187": ["3", "3", "1", "3", "3", "3", "3"]} +{"4003128": ["3", "1", "3", "2", "2", "2", "2"]} +{"0003425": ["3", "3", "1", "3", "1", "3", "3"]} +{"3005399": ["3", "2", "3", "2", "1", "3", "2"]} +{"2003422": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001898": ["3", "3", "2", "3", "1", "3", "3"]} +{"1003890": ["1", "1", "3", "1", "3", "3", "1"]} +{"0003539": ["3", "3", "3", "3", "1", "3", "3"]} +{"2004720": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004593": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006153": ["3", "3", "3", "3", "1", "3", "3"]} +{"7003346": ["3", "3", "3", "2", "3", "3", "2"]} +{"7003597": ["3", "3", "3", "2", "2", "3", "2"]} +{"7002375": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006253": ["3", "3", "3", "2", "2", "3", "2"]} +{"4003163": ["3", "3", "3", "3", "3", "1", "2"]} +{"6003209": ["2", "2", "3", "2", "3", "3", "2"]} +{"7003555": ["2", "3", "3", "3", "1", "1", "2"]} +{"2007227": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004585": ["3", "3", "3", "2", "3", "3", "2"]} +{"1005261": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005908": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003501": ["2", "3", "3", "3", "2", "2", "2"]} +{"7004507": ["3", "3", "3", "3", "2", "3", "3"]} +{"5001873": ["3", "3", "1", "3", "2", "3", "3"]} +{"0003729": ["3", "2", "3", "2", "2", "1", "2"]} +{"1006022": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006894": ["1", "1", "3", "1", "1", "3", "1"]} +{"8002613": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004215": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003136": ["3", "3", "3", "3", "3", "2", "3"]} +{"8001453": ["2", "2", "3", "2", "2", "2", "2"]} +{"3004796": ["3", "3", "3", "2", "3", "3", "None"]} +{"3004796": ["3", "3", "3", "2", "3", "3", "2"]} +{"0003548": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003540": ["1", "1", "3", "1", "2", "3", "1"]} +{"0004264": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004027": ["3", "3", "3", "3", "2", "2", "3"]} +{"2004840": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004259": ["3", "3", "3", "2", "2", "1", "2"]} +{"2005205": ["3", "3", "3", "3", "2", "1", "2"]} +{"8002385": ["2", "2", "3", "2", "1", "2", "2"]} +{"0003871": ["3", "3", "2", "3", "2", "3", "3"]} +{"6002942": ["3", "3", "3", "3", "1", "3", "3"]} +{"0004397": ["3", "3", "1", "3", "1", "3", "3"]} +{"1006192": ["2", "2", "3", "2", "1", "3", "2"]} +{"4004000": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004425": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005296": ["3", "3", "3", "2", "2", "3", "2"]} +{"3006695": ["3", "3", "2", "3", "3", "3", "2"]} +{"7003043": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003154": ["2", "3", "None", "3", "3", "3", "2"]} +{"2004671": ["3", "2", "3", "2", "2", "3", "2"]} +{"4003496": ["3", "3", "3", "2", "1", "1", "2"]} +{"2007216": ["3", "3", "1", "3", "3", "3", "3"]} +{"8003154": ["2", "3", "3", "3", "3", "3", "2"]} +{"3003846": ["3", "3", "2", "3", "2", "3", "3"]} +{"2004682": ["3", "3", "3", "3", "3", "2", "3"]} +{"7003144": ["2", "3", "3", "2", "1", "3", "2"]} +{"7002861": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005309": ["3", "3", "3", "3", "1", "3", "3"]} +{"0005654": ["3", "3", "3", "2", "2", "2", "2"]} +{"1003220": ["1", "1", "3", "1", "1", "2", "1"]} +{"4002459": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006911": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003847": ["2", "3", "3", "2", "3", "2", "2"]} +{"0005796": ["3", "3", "2", "3", "3", "2", "2"]} +{"2003695": ["3", "3", "3", "3", "3", "1", "None"]} +{"2003695": ["3", "3", "3", "3", "3", "1", "3"]} +{"1006883": ["2", "1", "3", "2", "2", "3", "1"]} +{"2003143": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002515": ["2", "1", "3", "3", "1", "3", "1"]} +{"0005379": ["3", "3", "1", "3", "2", "3", "3"]} +{"3006638": ["3", "3", "3", "3", "2", "1", "2"]} +{"0004393": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003324": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006351": ["3", "3", "1", "3", "2", "3", "3"]} +{"7003694": ["3", "3", "3", "3", "3", "2", "3"]} +{"8002968": ["2", "3", "3", "2", "3", "3", "2"]} +{"6004136": ["3", "1", "3", "2", "3", "3", "2"]} +{"3004449": ["3", "3", "3", "3", "3", "1", "3"]} +{"7002155": ["3", "2", "3", "2", "3", "3", "2"]} +{"3006877": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005053": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004223": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004021": ["3", "3", "3", "3", "2", "2", "3"]} +{"7002311": ["3", "2", "3", "2", "3", "3", "2"]} +{"1004751": ["1", "1", "3", "3", "2", "3", "1"]} +{"4003344": ["3", "2", "3", "2", "3", "3", "2"]} +{"2003847": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006449": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006965": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002388": ["3", "2", "3", "2", "3", "3", "2"]} +{"1005725": ["1", "1", "3", "1", "2", "3", "1"]} +{"3006476": ["3", "2", "3", "2", "2", "2", "2"]} +{"2004835": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003750": ["1", "1", "3", "1", "3", "3", "1"]} +{"4004365": ["3", "2", "3", "2", "2", "2", "2"]} +{"2003107": ["3", "3", "3", "2", "2", "1", "2"]} +{"1005126": ["1", "1", "3", "1", "3", "3", "1"]} +{"6004280": ["2", "3", "3", "2", "3", "3", "2"]} +{"7004187": ["3", "3", "3", "2", "2", "2", "2"]} +{"6003660": ["2", "1", "3", "2", "3", "3", "1"]} +{"1004990": ["2", "1", "3", "1", "3", "1", "2"]} +{"7004950": ["3", "3", "3", "2", "3", "2", "2"]} +{"2004377": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003588": ["3", "3", "3", "3", "3", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_yuchen.jsonl b/webpage/res/res_rd1_16k/ans_yuchen.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..78c506b779478c5f9ab777fd9e760045505bb28d --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_yuchen.jsonl @@ -0,0 +1,1057 @@ +{"4004410": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005509": ["1", "2", "3", "1", "1", "3", "1"]} +{"3006929": ["1", "3", "3", "1", "1", "3", "1"]} +{"2005688": ["3", "3", "3", "2", "2", "2", "2"]} +{"6002608": ["1", "3", "3", "1", "1", "3", "1"]} +{"3006526": ["2", "3", "3", "3", "1", "3", "2"]} +{"0003336": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006000": ["3", "3", "3", "2", "3", "3", "3"]} +{"3006046": ["2", "3", "3", "3", "2", "3", "2"]} +{"1005870": ["3", "1", "3", "1", "1", "3", "1"]} +{"2006404": ["3", "3", "3", "3", "3", "2", "3"]} +{"1005136": ["1", "2", "3", "1", "2", "3", "1"]} +{"1003464": ["1", "1", "3", "1", "2", "3", "1"]} +{"4004501": ["3", "3", "3", "3", "2", "1", "2"]} +{"0003475": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003397": ["1", "1", "3", "1", "2", "3", "1"]} +{"0004114": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003226": ["3", "2", "3", "3", "1", "3", "2"]} +{"5001869": ["3", "3", "None", "3", "2", "2", "2"]} +{"2004641": ["2", "2", "2", "2", "2", "3", "1"]} +{"7004841": ["2", "1", "3", "2", "3", "3", "2"]} +{"3004698": ["1", "1", "3", "1", "1", "3", "1"]} +{"2007095": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003830": ["3", "1", "3", "1", "1", "3", "1"]} +{"6004810": ["2", "3", "3", "2", "2", "3", "2"]} +{"6004001": ["3", "1", "3", "1", "1", "2", "1"]} +{"7004296": ["3", "3", "3", "1", "2", "3", "2"]} +{"8001198": ["1", "3", "3", "1", "1", "3", "1"]} +{"7004030": ["3", "3", "3", "2", "2", "3", "3"]} +{"0006318": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005076": ["1", "3", "None", "1", "1", "3", "1"]} +{"5001967": ["3", "3", "3", "3", "3", "1", "2"]} +{"3005416": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004933": ["3", "3", "3", "3", "1", "2", "2"]} +{"1005157": ["3", "1", "3", "1", "2", "3", "2"]} +{"1004122": ["1", "2", "3", "1", "3", "3", "1"]} +{"6002953": ["1", "2", "None", "1", "1", "3", "None"]} +{"6002953": ["1", "3", "3", "1", "1", "3", "1"]} +{"3004046": ["1", "3", "3", "1", "2", "3", "1"]} +{"0003268": ["3", "3", "3", "2", "2", "3", "3"]} +{"0006581": ["3", "3", "1", "3", "2", "3", "3"]} +{"2004498": ["3", "3", "2", "3", "1", "3", "3"]} +{"8002614": ["1", "3", "3", "1", "2", "3", "1"]} +{"4004161": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003661": ["2", "3", "3", "3", "1", "1", "1"]} +{"4004162": ["3", "3", "3", "1", "3", "3", "2"]} +{"0006701": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005389": ["3", "None", "3", "3", "2", "3", "3"]} +{"0004414": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005352": ["3", "3", "3", "1", "2", "1", "2"]} +{"2007722": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004481": ["3", "3", "3", "3", "1", "2", "2"]} +{"3004979": ["3", "2", "3", "2", "3", "3", "3"]} +{"1005057": ["2", "2", "3", "1", "1", "2", "2"]} +{"5001406": ["3", "3", "3", "1", "3", "1", "2"]} +{"7003060": ["2", "3", "3", "3", "2", "2", "1"]} +{"6000006": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003069": ["3", "3", "1", "3", "2", "3", "3"]} +{"6004749": ["1", "3", "3", "1", "1", "1", "1"]} +{"6002289": ["1", "1", "None", "1", "1", "2", "1"]} +{"8002203": ["1", "3", "None", "1", "2", "2", "1"]} +{"2005899": ["3", "3", "3", "2", "2", "1", "2"]} +{"3004520": ["3", "3", "1", "3", "3", "2", "2"]} +{"4003291": ["1", "1", "3", "2", "3", "3", "1"]} +{"7004619": ["2", "None", "3", "3", "2", "2", "2"]} +{"5001963": ["3", "3", "1", "3", "1", "1", "1"]} +{"6002931": ["2", "3", "3", "2", "3", "2", "1"]} +{"0004270": ["3", "3", "None", "2", "2", "1", "2"]} +{"0004000": ["3", "3", "1", "3", "2", "3", "1"]} +{"3005424": ["2", "3", "3", "3", "2", "3", "2"]} +{"2004679": ["3", "3", "3", "2", "2", "3", "3"]} +{"2004010": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004840": ["2", "1", "3", "1", "2", "3", "1"]} +{"4004011": ["3", "3", "2", "3", "2", "3", "2"]} +{"1005346": ["2", "3", "3", "2", "3", "3", "2"]} +{"0005364": ["2", "3", "1", "3", "2", "2", "1"]} +{"0004941": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003514": ["2", "3", "3", "3", "2", "3", "3"]} +{"7002437": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004755": ["2", "2", "3", "1", "1", "3", "2"]} +{"7002463": ["1", "3", "3", "1", "3", "3", "1"]} +{"1003521": ["2", "2", "3", "1", "3", "2", "1"]} +{"8002723": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002582": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004206": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003456": ["3", "3", "3", "3", "1", "3", "1"]} +{"4004701": ["3", "3", "3", "3", "2", "3", "3"]} +{"3003824": ["3", "3", "3", "3", "2", "2", "2"]} +{"2004636": ["2", "3", "3", "2", "2", "3", "3"]} +{"3003059": ["3", "3", "3", "3", "3", "1", "2"]} +{"3006250": ["3", "1", "3", "1", "2", "3", "1"]} +{"1005548": ["3", "1", "3", "1", "1", "2", "1"]} +{"1005118": ["1", "1", "3", "1", "2", "3", "1"]} +{"1005055": ["2", "1", "3", "1", "1", "3", "1"]} +{"0005977": ["2", "3", "3", "3", "2", "3", "2"]} +{"2004017": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002426": ["3", "2", "3", "3", "2", "1", "2"]} +{"8002100": ["1", "1", "3", "1", "1", "2", "1"]} +{"6003102": ["1", "3", "3", "1", "3", "2", "1"]} +{"0004810": ["2", "3", "1", "3", "1", "1", "1"]} +{"3003672": ["3", "3", "3", "3", "1", "2", "1"]} +{"3005917": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002889": ["1", "3", "3", "1", "2", "3", "1"]} +{"8002732": ["3", "3", "3", "2", "3", "3", "3"]} +{"8001672": ["1", "3", "3", "1", "2", "3", "1"]} +{"2005168": ["3", "3", "2", "3", "2", "1", "1"]} +{"3003164": ["1", "2", "3", "2", "1", "3", "1"]} +{"3003164": ["1", "2", "3", "2", "1", "3", "1"]} +{"5001022": ["3", "3", "2", "3", "2", "2", "2"]} +{"0005712": ["2", "2", "2", "3", "2", "1", "1"]} +{"6004413": ["3", "2", "3", "1", "1", "3", "1"]} +{"0005602": ["3", "3", "2", "3", "2", "3", "1"]} +{"8001215": ["3", "3", "3", "2", "1", "3", "1"]} +{"6002906": ["2", "3", "None", "1", "3", "3", "2"]} +{"0006914": ["2", "3", "3", "3", "3", "3", "3"]} +{"3006499": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003866": ["2", "3", "3", "2", "3", "3", "2"]} +{"3006141": ["3", "2", "3", "2", "2", "2", "2"]} +{"5001802": ["3", "3", "2", "3", "2", "1", "2"]} +{"0004877": ["3", "3", "1", "3", "1", "3", "3"]} +{"1005721": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004961": ["1", "3", "3", "3", "2", "3", "2"]} +{"8001805": ["1", "3", "3", "1", "2", "3", "1"]} +{"8002379": ["1", "3", "3", "1", "1", "3", "1"]} +{"8002612": ["2", "2", "3", "2", "2", "3", "2"]} +{"2005695": ["3", "3", "1", "3", "3", "3", "2"]} +{"0006138": ["3", "3", "1", "3", "2", "3", "2"]} +{"4003629": ["3", "2", "3", "1", "2", "2", "2"]} +{"2007127": ["2", "3", "3", "2", "2", "2", "2"]} +{"2003408": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003408": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003408": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002782": ["2", "1", "3", "1", "2", "3", "1"]} +{"3004658": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004826": ["3", "3", "2", "3", "2", "3", "3"]} +{"3004482": ["3", "2", "3", "1", "3", "3", "2"]} +{"4004564": ["2", "3", "3", "2", "3", "3", "3"]} +{"0004235": ["3", "3", "3", "2", "2", "3", "2"]} +{"5001567": ["3", "2", "3", "3", "2", "3", "2"]} +{"1003641": ["1", "2", "3", "1", "2", "3", "1"]} +{"1005263": ["1", "3", "3", "1", "3", "1", "1"]} +{"0004577": ["3", "3", "1", "3", "3", "3", "2"]} +{"8003612": ["1", "3", "3", "1", "2", "3", "1"]} +{"7002590": ["2", "3", "3", "1", "3", "3", "2"]} +{"6003537": ["2", "3", "3", "2", "2", "1", "1"]} +{"3004895": ["1", "3", "1", "3", "2", "3", "1"]} +{"0006622": ["2", "3", "3", "3", "3", "3", "3"]} +{"4002311": ["3", "3", "3", "2", "3", "2", "2"]} +{"8001888": ["1", "3", "3", "1", "1", "3", "1"]} +{"0003718": ["2", "3", "3", "2", "2", "1", "1"]} +{"0006486": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003688": ["2", "3", "1", "3", "2", "3", "1"]} +{"0003410": ["3", "3", "3", "2", "2", "3", "2"]} +{"3003822": ["2", "3", "2", "2", "2", "3", "1"]} +{"0004861": ["2", "3", "3", "3", "1", "1", "1"]} +{"7004633": ["2", "3", "3", "1", "2", "3", "1"]} +{"2004705": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004352": ["1", "3", "3", "1", "2", "3", "1"]} +{"8003541": ["2", "3", "3", "1", "3", "3", "2"]} +{"3003952": ["3", "3", "2", "3", "None", "None", "None"]} +{"3003952": ["3", "3", "2", "3", "1", "2", "2"]} +{"1004905": ["1", "2", "3", "3", "2", "3", "1"]} +{"8002697": ["2", "3", "3", "3", "2", "2", "2"]} +{"4004688": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004328": ["3", "3", "3", "3", "3", "2", "3"]} +{"6000003": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003927": ["3", "3", "2", "3", "1", "2", "1"]} +{"0004286": ["3", "2", "3", "2", "3", "1", "1"]} +{"2006380": ["1", "3", "3", "3", "1", "3", "1"]} +{"4003262": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003875": ["3", "2", "3", "1", "3", "3", "2"]} +{"1004076": ["1", "3", "3", "1", "2", "3", "1"]} +{"8002643": ["1", "3", "3", "3", "1", "3", "1"]} +{"8002517": ["2", "3", "3", "1", "3", "3", "1"]} +{"7003242": ["3", "3", "3", "1", "3", "2", "2"]} +{"2003830": ["3", "3", "3", "2", "2", "3", "3"]} +{"7002252": ["3", "3", "3", "1", "3", "3", "2"]} +{"7002168": ["2", "3", "3", "3", "2", "2", "3"]} +{"7002773": ["2", "3", "2", "3", "3", "3", "3"]} +{"0003765": ["2", "3", "None", "1", "2", "2", "2"]} +{"0003765": ["1", "2", "3", "1", "2", "2", "2"]} +{"1003315": ["2", "3", "3", "1", "2", "3", "1"]} +{"6002222": ["1", "3", "None", "2", "2", "3", "1"]} +{"0006652": ["2", "3", "1", "3", "3", "1", "2"]} +{"1005080": ["1", "3", "3", "1", "2", "3", "1"]} +{"7004035": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003218": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004858": ["2", "3", "3", "3", "2", "3", "3"]} +{"1006145": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003741": ["2", "3", "2", "3", "1", "3", "1"]} +{"2004537": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001223": ["3", "3", "3", "3", "1", "3", "2"]} +{"0005019": ["1", "1", "3", "1", "3", "2", "2"]} +{"8002807": ["1", "3", "2", "3", "2", "2", "1"]} +{"0003537": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006686": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003135": ["3", "3", "2", "2", "2", "2", "2"]} +{"1003842": ["1", "3", "3", "1", "3", "3", "1"]} +{"2006194": ["2", "3", "3", "2", "3", "3", "2"]} +{"1006836": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002547": ["1", "3", "3", "3", "2", "1", "1"]} +{"0006618": ["2", "3", "3", "2", "1", "1", "1"]} +{"7002253": ["2", "3", "2", "3", "2", "3", "2"]} +{"6002821": ["2", "3", "3", "2", "3", "3", "2"]} +{"0005641": ["3", "2", "3", "1", "2", "1", "2"]} +{"4003921": ["1", "2", "3", "1", "3", "3", "1"]} +{"2004681": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004312": ["1", "3", "3", "1", "3", "3", "1"]} +{"3006595": ["2", "3", "3", "3", "2", "3", "2"]} +{"2005364": ["3", "3", "3", "3", "3", "1", "2"]} +{"3005780": ["3", "3", "1", "3", "2", "3", "3"]} +{"1004362": ["3", "3", "3", "1", "3", "3", "2"]} +{"3005922": ["3", "2", "2", "2", "3", "3", "2"]} +{"1004837": ["1", "3", "3", "1", "3", "3", "1"]} +{"0005735": ["3", "3", "3", "1", "2", "1", "1"]} +{"2005849": ["3", "3", "3", "2", "3", "2", "2"]} +{"0005465": ["3", "3", "1", "3", "3", "3", "3"]} +{"1006459": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004225": ["2", "3", "3", "2", "3", "3", "3"]} +{"1005127": ["1", "3", "3", "1", "1", "2", "1"]} +{"7002305": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005263": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006401": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006748": ["3", "3", "3", "2", "2", "2", "2"]} +{"7003450": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005017": ["1", "3", "2", "2", "1", "3", "2"]} +{"1006656": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002540": ["3", "3", "3", "2", "3", "1", "2"]} +{"0003351": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006300": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003290": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004393": ["2", "3", "3", "2", "1", "3", "2"]} +{"1005193": ["1", "2", "3", "1", "3", "3", "1"]} +{"7004183": ["3", "3", "2", "3", "2", "3", "3"]} +{"7003113": ["2", "3", "2", "2", "3", "3", "2"]} +{"7002948": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006673": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004953": ["3", "3", "None", "2", "2", "3", "3"]} +{"2004214": ["2", "3", "2", "1", "2", "3", "2"]} +{"1005987": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003907": ["3", "3", "1", "3", "2", "2", "2"]} +{"7002646": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004844": ["2", "3", "2", "2", "2", "2", "2"]} +{"4003260": ["2", "3", "3", "1", "3", "3", "2"]} +{"8002920": ["1", "3", "2", "1", "2", "3", "1"]} +{"2003381": ["2", "3", "3", "1", "2", "2", "1"]} +{"2006419": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003242": ["3", "3", "3", "3", "2", "2", "2"]} +{"2004670": ["3", "3", "3", "1", "3", "3", "2"]} +{"2003075": ["2", "3", "3", "3", "3", "3", "3"]} +{"0003720": ["2", "2", "3", "1", "2", "3", "2"]} +{"1006819": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006102": ["2", "3", "2", "3", "1", "3", "2"]} +{"2007801": ["3", "2", "3", "1", "2", "3", "3"]} +{"8002856": ["1", "3", "3", "2", "3", "3", "2"]} +{"1003517": ["1", "2", "3", "1", "3", "3", "1"]} +{"1004561": ["1", "3", "3", "1", "1", "3", "1"]} +{"2003909": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004860": ["2", "3", "3", "1", "2", "2", "2"]} +{"2005015": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006689": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001974": ["1", "3", "3", "1", "2", "2", "1"]} +{"3004380": ["3", "3", "3", "1", "2", "3", "2"]} +{"3003541": ["2", "3", "3", "2", "2", "3", "2"]} +{"3005803": ["3", "3", "3", "2", "1", "3", "2"]} +{"8002738": ["1", "3", "3", "1", "1", "2", "1"]} +{"8003850": ["3", "3", "3", "2", "2", "2", "2"]} +{"1005924": ["2", "1", "2", "2", "2", "3", "1"]} +{"1005117": ["2", "3", "3", "2", "2", "3", "2"]} +{"6003487": ["2", "3", "3", "1", "2", "3", "1"]} +{"4002319": ["3", "3", "3", "2", "2", "3", "2"]} +{"5001766": ["3", "3", "2", "2", "1", "1", "1"]} +{"0004368": ["3", "3", "2", "3", "3", "2", "3"]} +{"2006375": ["3", "3", "1", "3", "2", "3", "2"]} +{"4004767": ["3", "3", "3", "3", "3", "2", "3"]} +{"2007471": ["3", "1", "3", "1", "3", "3", "1"]} +{"3005640": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003408": ["2", "3", "3", "3", "3", "1", "2"]} +{"4004860": ["2", "3", "1", "3", "1", "3", "1"]} +{"3006059": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004658": ["1", "3", "3", "1", "1", "3", "1"]} +{"6004467": ["3", "2", "3", "1", "2", "1", "1"]} +{"7003796": ["1", "3", "3", "1", "2", "3", "2"]} +{"1005358": ["2", "3", "3", "1", "2", "3", "2"]} +{"4004687": ["1", "2", "3", "1", "1", "2", "1"]} +{"0006184": ["2", "3", "3", "3", "3", "3", "3"]} +{"6003777": ["2", "3", "3", "2", "3", "3", "2"]} +{"1005035": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003288": ["1", "1", "3", "1", "2", "3", "1"]} +{"3003999": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004749": ["2", "3", "3", "1", "3", "3", "2"]} +{"3006381": ["3", "3", "2", "3", "2", "1", "2"]} +{"1005775": ["1", "2", "3", "1", "3", "3", "1"]} +{"1005567": ["1", "3", "3", "1", "2", "3", "1"]} +{"4003713": ["1", "3", "3", "1", "3", "3", "2"]} +{"1004648": ["3", "3", "3", "1", "1", "3", "2"]} +{"0003712": ["2", "3", "3", "3", "1", "1", "2"]} +{"7002207": ["3", "3", "3", "1", "2", "1", "2"]} +{"0003066": ["3", "3", "2", "3", "1", "1", "2"]} +{"3003760": ["3", "3", "3", "3", "1", "2", "2"]} +{"6002966": ["1", "3", "3", "3", "3", "3", "2"]} +{"5001134": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006563": ["3", "3", "3", "2", "None", "3", "2"]} +{"5001027": ["3", "3", "3", "3", "3", "2", "3"]} +{"0003125": ["3", "3", "2", "3", "1", "3", "2"]} +{"0005387": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004398": ["3", "1", "3", "1", "2", "2", "2"]} +{"4002157": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003683": ["1", "3", "3", "3", "1", "2", "1"]} +{"5001608": ["3", "3", "3", "1", "3", "2", "2"]} +{"0006489": ["3", "3", "3", "2", "3", "3", "3"]} +{"5001705": ["2", "3", "2", "3", "2", "3", "1"]} +{"5001186": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003921": ["1", "3", "3", "1", "3", "1", "1"]} +{"1006953": ["1", "3", "3", "1", "3", "3", "2"]} +{"0003033": ["3", "3", "3", "2", "3", "3", "2"]} +{"1003965": ["2", "2", "3", "1", "None", "2", "1"]} +{"2004917": ["3", "3", "2", "3", "1", "2", "1"]} +{"3005991": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005452": ["3", "3", "3", "1", "None", "2", "1"]} +{"0003740": ["3", "3", "1", "3", "2", "3", "2"]} +{"4003376": ["2", "3", "3", "2", "1", "3", "1"]} +{"7004556": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006343": ["2", "3", "3", "2", "3", "3", "2"]} +{"7004021": ["2", "3", "3", "3", "1", "3", "2"]} +{"4003242": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001284": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006991": ["2", "1", "3", "1", "3", "3", "1"]} +{"2007085": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003584": ["1", "1", "3", "1", "3", "3", "1"]} +{"0003118": ["3", "3", "2", "3", "1", "3", "2"]} +{"6003584": ["3", "1", "3", "1", "3", "3", "1"]} +{"3004799": ["3", "2", "3", "1", "3", "3", "2"]} +{"6003495": ["1", "3", "3", "1", "3", "3", "1"]} +{"3005267": ["3", "3", "3", "1", "3", "2", "2"]} +{"4002211": ["3", "3", "3", "2", "2", "3", "2"]} +{"0003202": ["3", "3", "3", "1", "3", "2", "2"]} +{"1005429": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002206": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003154": ["3", "None", "3", "2", "2", "3", "2"]} +{"7002167": ["3", "3", "3", "2", "3", "3", "2"]} +{"1003448": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003880": ["2", "3", "3", "1", "3", "3", "2"]} +{"2006524": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001154": ["3", "3", "3", "2", "3", "3", "3"]} +{"1004233": ["1", "3", "3", "1", "3", "3", "1"]} +{"3004209": ["3", "3", "3", "3", "2", "1", "2"]} +{"0004863": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004944": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002195": ["3", "3", "3", "2", "3", "3", "2"]} +{"8002931": ["3", "3", "2", "3", "1", "1", "1"]} +{"0004798": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004986": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005765": ["2", "3", "2", "3", "1", "2", "1"]} +{"2004459": ["2", "2", "3", "1", "2", "3", "2"]} +{"2007354": ["3", "2", "3", "1", "2", "3", "2"]} +{"8002829": ["1", "3", "3", "1", "1", "1", "1"]} +{"3005956": ["3", "3", "3", "1", "3", "3", "2"]} +{"4002249": ["1", "1", "2", "2", "2", "3", "1"]} +{"2007245": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001350": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001350": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006796": ["2", "3", "2", "2", "3", "2", "2"]} +{"2006503": ["2", "3", "3", "3", "2", "3", "3"]} +{"7003458": ["3", "3", "3", "2", "2", "3", "2"]} +{"1004137": ["3", "3", "3", "2", "3", "3", "2"]} +{"7002480": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007504": ["3", "3", "2", "3", "1", "3", "2"]} +{"6002582": ["2", "3", "3", "2", "3", "3", "2"]} +{"0004892": ["3", "3", "3", "3", "3", "2", "3"]} +{"0004215": ["2", "3", "3", "1", "1", "2", "1"]} +{"3004319": ["2", "2", "3", "1", "1", "2", "1"]} +{"2007986": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004993": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004348": ["3", "1", "3", "1", "2", "3", "1"]} +{"7002524": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003009": ["2", "3", "1", "3", "1", "3", "1"]} +{"6003946": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007830": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004055": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004963": ["3", "2", "3", "2", "3", "3", "3"]} +{"7004164": ["3", "3", "3", "2", "3", "3", "2"]} +{"6004558": ["2", "2", "None", "1", "2", "3", "2"]} +{"3006832": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003441": ["1", "None", "2", "1", "1", "2", "1"]} +{"4003245": ["3", "2", "3", "1", "3", "2", "2"]} +{"4004009": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003114": ["3", "3", "3", "1", "2", "3", "2"]} +{"2004722": ["3", "3", "2", "3", "3", "3", "2"]} +{"0005873": ["3", "3", "3", "2", "2", "2", "3"]} +{"8002204": ["2", "3", "3", "1", "2", "3", "1"]} +{"5001744": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003833": ["1", "1", "3", "1", "3", "3", "1"]} +{"4002071": ["1", "1", "3", "1", "1", "3", "1"]} +{"1005277": ["1", "1", "3", "1", "3", "3", "1"]} +{"4002417": ["2", "1", "3", "1", "3", "1", "1"]} +{"4003090": ["3", "3", "1", "3", "1", "3", "3"]} +{"0004767": ["2", "3", "3", "1", "1", "3", "1"]} +{"8003188": ["2", "3", "3", "2", "2", "3", "2"]} +{"3006077": ["3", "3", "3", "None", "3", "3", "3"]} +{"0006060": ["3", "3", "3", "2", "3", "3", "3"]} +{"6003368": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006575": ["3", "1", "3", "1", "1", "3", "1"]} +{"2005487": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006158": ["1", "3", "3", "1", "2", "3", "1"]} +{"0005202": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006309": ["2", "3", "3", "1", "2", "3", "1"]} +{"1003650": ["2", "3", "3", "1", "2", "3", "1"]} +{"7003302": ["3", "3", "3", "2", "2", "3", "2"]} +{"2007317": ["2", "3", "3", "3", "3", "3", "2"]} +{"3004836": ["2", "3", "3", "2", "1", "3", "1"]} +{"6004806": ["1", "3", "3", "1", "3", "3", "1"]} +{"7004618": ["3", "3", "3", "2", "3", "2", "2"]} +{"5001077": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005365": ["3", "3", "3", "3", "2", "1", "2"]} +{"0003334": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007503": ["3", "3", "3", "2", "3", "3", "3"]} +{"2004232": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007563": ["3", "3", "3", "2", "2", "1", "2"]} +{"1006232": ["2", "2", "3", "1", "2", "3", "1"]} +{"4004451": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003329": ["1", "2", "3", "1", "3", "3", "1"]} +{"5001792": ["3", "3", "1", "3", "3", "1", "2"]} +{"4004249": ["1", "3", "3", "2", "1", "3", "1"]} +{"3005652": ["1", "1", "3", "1", "3", "3", "2"]} +{"1005145": ["1", "3", "3", "1", "2", "3", "2"]} +{"5001718": ["3", "3", "2", "3", "2", "3", "2"]} +{"1006816": ["2", "2", "3", "1", "2", "3", "2"]} +{"2007061": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004956": ["2", "3", "3", "2", "3", "3", "2"]} +{"2003670": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003380": ["1", "None", "3", "1", "3", "3", "1"]} +{"8002084": ["2", "3", "3", "1", "1", "2", "1"]} +{"2005164": ["3", "3", "3", "3", "3", "2", "2"]} +{"3003635": ["2", "2", "3", "1", "3", "3", "2"]} +{"3003058": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004744": ["2", "3", "3", "2", "3", "3", "2"]} +{"2004822": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005818": ["3", "3", "3", "2", "3", "1", "2"]} +{"3003785": ["3", "3", "3", "3", "2", "2", "2"]} +{"7003452": ["3", "3", "3", "1", "3", "3", "2"]} +{"2006277": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005566": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003121": ["2", "3", "3", "2", "2", "3", "1"]} +{"7002331": ["2", "2", "3", "1", "3", "3", "2"]} +{"7004068": ["3", "3", "3", "3", "3", "2", "2"]} +{"2004902": ["3", "3", "3", "1", "3", "3", "2"]} +{"8001501": ["1", "3", "3", "1", "1", "3", "1"]} +{"2005762": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004210": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006716": ["3", "3", "3", "2", "None", "3", "3"]} +{"5001156": ["3", "3", "3", "3", "3", "1", "2"]} +{"7002250": ["2", "3", "3", "1", "3", "2", "2"]} +{"1003684": ["3", "2", "3", "1", "2", "3", "1"]} +{"0003283": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002184": ["1", "3", "3", "1", "2", "3", "1"]} +{"8003160": ["1", "3", "3", "1", "3", "2", "1"]} +{"4003231": ["3", "3", "3", "1", "3", "2", "2"]} +{"2006232": ["3", "3", "3", "2", "3", "3", "3"]} +{"0003717": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002113": ["1", "3", "3", "1", "3", "3", "1"]} +{"2005932": ["3", "3", "3", "1", "3", "1", "1"]} +{"1004206": ["1", "3", "3", "1", "2", "3", "1"]} +{"4002695": ["3", "3", "3", "2", "2", "3", "2"]} +{"7004240": ["2", "3", "3", "1", "3", "3", "2"]} +{"4002834": ["3", "2", "3", "1", "3", "3", "2"]} +{"6002215": ["3", "2", "3", "1", "3", "3", "1"]} +{"4003411": ["3", "3", "3", "2", "2", "3", "2"]} +{"2006654": ["3", "3", "3", "3", "3", "1", "2"]} +{"3004743": ["3", "3", "1", "3", "3", "3", "3"]} +{"1004475": ["3", "2", "3", "2", "2", "3", "2"]} +{"3004874": ["3", "3", "3", "1", "2", "3", "2"]} +{"5001418": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005651": ["2", "2", "3", "1", "1", "3", "1"]} +{"7002883": ["2", "3", "3", "3", "2", "2", "2"]} +{"4003577": ["3", "3", "3", "3", "2", "2", "2"]} +{"2006124": ["3", "3", "3", "2", "2", "3", "2"]} +{"8002238": ["2", "3", "3", "2", "3", "3", "2"]} +{"8003184": ["1", "3", "3", "1", "1", "3", "1"]} +{"6004760": ["3", "1", "3", "1", "3", "2", "1"]} +{"2006158": ["3", "3", "3", "3", "3", "1", "2"]} +{"0006465": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005392": ["2", "3", "3", "2", "3", "2", "None"]} +{"0005392": ["None", "None", "None", "None", "None", "None", "2"]} +{"0005392": ["2", "3", "3", "1", "2", "2", "2"]} +{"6004433": ["3", "3", "3", "2", "3", "2", "2"]} +{"3004397": ["3", "3", "3", "1", "3", "2", "2"]} +{"2004295": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004569": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003213": ["1", "3", "3", "1", "None", "3", "1"]} +{"1003599": ["1", "3", "3", "1", "3", "3", "1"]} +{"1005225": ["1", "3", "3", "1", "2", "3", "1"]} +{"0006161": ["2", "3", "3", "2", "3", "3", "2"]} +{"7003305": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006879": ["3", "3", "3", "2", "3", "3", "2"]} +{"1006960": ["1", "2", "3", "1", "2", "3", "1"]} +{"7004006": ["3", "3", "3", "2", "3", "2", "2"]} +{"3003810": ["3", "3", "1", "3", "2", "1", "1"]} +{"0004828": ["1", "3", "1", "3", "2", "3", "1"]} +{"5001175": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006752": ["3", "3", "3", "2", "1", "2", "1"]} +{"2006454": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004979": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004451": ["2", "3", "3", "2", "1", "1", "1"]} +{"6002190": ["2", "3", "3", "1", "1", "3", "1"]} +{"0005368": ["2", "3", "1", "3", "1", "1", "1"]} +{"3005755": ["2", "3", "3", "2", "3", "3", "2"]} +{"8003606": ["2", "3", "3", "3", "1", "2", "1"]} +{"2004924": ["3", "3", "3", "3", "1", "3", "2"]} +{"0005399": ["1", "3", "3", "2", "3", "3", "2"]} +{"4002215": ["3", "3", "3", "1", "3", "3", "2"]} +{"2004266": ["3", "3", "3", "2", "3", "2", "2"]} +{"1003392": ["1", "3", "3", "1", "3", "3", "1"]} +{"4002064": ["2", "3", "3", "1", "3", "2", "2"]} +{"0003024": ["2", "3", "2", "3", "3", "3", "3"]} +{"3006927": ["3", "3", "3", "1", "2", "3", "1"]} +{"1003646": ["1", "1", "3", "1", "3", "3", "1"]} +{"8001071": ["1", "3", "3", "2", "1", "3", "1"]} +{"3003643": ["3", "3", "2", "2", "1", "2", "1"]} +{"2003903": ["2", "3", "3", "3", "1", "3", "2"]} +{"6002130": ["1", "3", "3", "1", "3", "3", "1"]} +{"4004661": ["3", "3", "3", "2", "2", "3", "2"]} +{"1005645": ["1", "3", "3", "1", "1", "2", "1"]} +{"3005728": ["3", "3", "3", "3", "1", "3", "2"]} +{"8003317": ["1", "3", "3", "1", "3", "3", "1"]} +{"8002642": ["1", "3", "3", "1", "2", "3", "1"]} +{"8001742": ["1", "3", "3", "1", "3", "3", "1"]} +{"6002523": ["3", "3", "3", "2", "3", "3", "2"]} +{"2007047": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003241": ["3", "2", "None", "2", "2", "3", "2"]} +{"4004667": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002634": ["1", "3", "3", "1", "2", "2", "1"]} +{"7002184": ["3", "3", "3", "1", "3", "3", "2"]} +{"7002712": ["3", "3", "3", "1", "3", "3", "2"]} +{"8002013": ["3", "3", "3", "2", "1", "3", "2"]} +{"2006690": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002217": ["3", "3", "3", "2", "2", "3", "2"]} +{"4003932": ["3", "3", "2", "3", "3", "None", "3"]} +{"8003252": ["1", "3", "3", "1", "2", "3", "2"]} +{"8003034": ["1", "2", "3", "1", "1", "2", "1"]} +{"2006219": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001751": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003632": ["3", "2", "3", "1", "3", "3", "2"]} +{"1006576": ["3", "1", "3", "1", "3", "3", "1"]} +{"0005375": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004252": ["3", "3", "3", "1", "2", "1", "1"]} +{"5001961": ["3", "3", "1", "2", "2", "3", "2"]} +{"2005676": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003405": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004448": ["3", "2", "3", "1", "3", "2", "1"]} +{"2007925": ["3", "3", "3", "3", "2", "2", "3"]} +{"8001401": ["1", "3", "3", "1", "2", "3", "1"]} +{"8002433": ["3", "2", "3", "1", "3", "3", "2"]} +{"0006951": ["2", "3", "1", "3", "3", "2", "2"]} +{"2004579": ["3", "3", "1", "3", "2", "3", "2"]} +{"1004457": ["1", "1", "3", "1", "3", "3", "1"]} +{"6002439": ["1", "2", "3", "2", "1", "3", "1"]} +{"6003125": ["1", "3", "3", "1", "3", "3", "1"]} +{"0004799": ["3", "3", "1", "3", "2", "1", "2"]} +{"6002825": ["2", "3", "3", "2", "3", "3", "2"]} +{"1005293": ["1", "1", "3", "1", "3", "3", "1"]} +{"2006634": ["3", "3", "2", "3", "2", "2", "2"]} +{"1004136": ["2", "2", "3", "1", "2", "3", "2"]} +{"3006297": ["3", "2", "3", "2", "1", "3", "2"]} +{"6002543": ["2", "3", "3", "3", "3", "3", "2"]} +{"7004321": ["2", "1", "3", "1", "3", "2", "1"]} +{"3005222": ["3", "3", "3", "2", "1", "1", "1"]} +{"4004555": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006977": ["1", "2", "3", "1", "1", "3", "1"]} +{"3003624": ["2", "3", "3", "2", "3", "2", "2"]} +{"8001207": ["2", "1", "3", "1", "1", "3", "1"]} +{"7003579": ["1", "1", "3", "1", "1", "3", "2"]} +{"4003690": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003556": ["2", "1", "3", "1", "2", "3", "1"]} +{"2004505": ["3", "3", "3", "3", "3", "2", "2"]} +{"0006314": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003422": ["3", "3", "2", "3", "3", "3", "3"]} +{"0005384": ["3", "2", "3", "3", "3", "3", "1"]} +{"4003948": ["3", "3", "3", "3", "3", "3", "2"]} +{"3003418": ["3", "3", "2", "3", "1", "1", "1"]} +{"1005840": ["2", "1", "3", "1", "2", "3", "1"]} +{"2005990": ["3", "3", "3", "2", "3", "3", "2"]} +{"0005135": ["2", "3", "3", "3", "3", "2", "2"]} +{"5001869": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005076": ["1", "1", "3", "1", "None", "3", "1"]} +{"1005076": ["1", "1", "3", "1", "2", "3", "1"]} +{"3005389": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002289": ["1", "1", "3", "1", "2", "3", "1"]} +{"8002203": ["1", "2", "3", "1", "3", "3", "1"]} +{"7004619": ["3", "3", "3", "2", "3", "2", "2"]} +{"0004270": ["3", "3", "1", "3", "3", "3", "3"]} +{"6002906": ["2", "2", "3", "1", "3", "3", "1"]} +{"6002222": ["1", "3", "3", "1", "3", "3", "2"]} +{"2004953": ["3", "3", "3", "2", "3", "3", "3"]} +{"2006563": ["3", "3", "2", "2", "3", "3", "2"]} +{"1003965": ["2", "1", "3", "1", "2", "3", "1"]} +{"1005452": ["3", "3", "3", "1", "2", "3", "2"]} +{"0003154": ["2", "2", "3", "3", "2", "2", "2"]} +{"6004558": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003441": ["1", "1", "3", "1", "2", "2", "1"]} +{"3006077": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003380": ["1", "1", "3", "1", "2", "3", "1"]} +{"0006716": ["3", "3", "3", "2", "3", "3", "3"]} +{"1003213": ["3", "2", "3", "1", "3", "3", "1"]} +{"4003241": ["3", "2", "3", "3", "1", "3", "2"]} +{"4003932": ["3", "3", "1", "3", "3", "3", "2"]} +{"6004063": ["3", "3", "3", "3", "2", "2", "1"]} +{"1005983": ["1", "1", "3", "1", "3", "3", "2"]} +{"6002031": ["3", "2", "3", "3", "2", "3", "2"]} +{"4003619": ["3", "3", "3", "2", "1", "3", "2"]} +{"3005947": ["1", "1", "3", "1", "1", "2", "1"]} +{"8001242": ["3", "3", "3", "2", "2", "2", "2"]} +{"6003339": ["3", "2", "3", "2", "2", "2", "2"]} +{"7004526": ["3", "3", "2", "3", "3", "3", "2"]} +{"3006582": ["1", "3", "3", "3", "3", "3", "2"]} +{"6003264": ["2", "1", "3", "1", "3", "3", "2"]} +{"0006664": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003289": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006351": ["3", "3", "1", "3", "1", "3", "2"]} +{"4004789": ["3", "2", "3", "2", "2", "1", "2"]} +{"7004607": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003397": ["2", "3", "1", "3", "3", "3", "2"]} +{"0006604": ["2", "3", "2", "3", "1", "1", "1"]} +{"2006512": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002769": ["1", "1", "3", "None", "2", "3", "1"]} +{"6002167": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005047": ["1", "3", "2", "1", "2", "2", "1"]} +{"7003487": ["3", "2", "3", "1", "2", "3", "2"]} +{"2006050": ["3", "3", "3", "3", "2", "2", "2"]} +{"4002769": ["1", "1", "3", "3", "3", "3", "1"]} +{"3005992": ["3", "3", "3", "3", "3", "1", "2"]} +{"7002671": ["3", "3", "3", "1", "3", "3", "2"]} +{"6004871": ["3", "2", "3", "2", "2", "3", "2"]} +{"5001256": ["3", "3", "3", "3", "None", "3", "3"]} +{"7004271": ["3", "3", "3", "2", "3", "2", "2"]} +{"5001925": ["3", "3", "1", "3", "2", "3", "2"]} +{"5001256": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003437": ["2", "3", "3", "3", "3", "2", "2"]} +{"6004632": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006661": ["2", "3", "3", "3", "3", "1", "2"]} +{"0003318": ["3", "3", "2", "1", "2", "2", "2"]} +{"8002132": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006156": ["1", "3", "3", "1", "3", "3", "1"]} +{"4003902": ["1", "3", "3", "2", "2", "2", "2"]} +{"1005255": ["1", "1", "3", "1", "3", "2", "1"]} +{"8003959": ["1", "3", "3", "1", "1", "3", "1"]} +{"2005333": ["2", "3", "3", "3", "3", "2", "2"]} +{"2005765": ["3", "3", "3", "3", "2", "1", "2"]} +{"2006977": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003789": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002443": ["3", "3", "2", "3", "2", "2", "2"]} +{"2004626": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006931": ["3", "3", "3", "3", "1", "3", "2"]} +{"0003027": ["2", "3", "3", "3", "2", "1", "2"]} +{"3005349": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001870": ["3", "3", "3", "2", "2", "3", "2"]} +{"8003953": ["1", "3", "3", "1", "2", "3", "1"]} +{"2006493": ["3", "3", "3", "2", "3", "3", "3"]} +{"0004520": ["2", "3", "1", "3", "3", "3", "2"]} +{"4003027": ["3", "3", "2", "3", "3", "3", "2"]} +{"4004993": ["3", "3", "3", "3", "1", "1", "2"]} +{"2004691": ["None", "3", "3", "2", "3", "2", "2"]} +{"6002635": ["3", "2", "3", "3", "2", "2", "1"]} +{"1004063": ["1", "1", "3", "1", "2", "3", "2"]} +{"6004366": ["1", "1", "3", "1", "2", "2", "1"]} +{"1004132": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002044": ["2", "1", "3", "1", "1", "2", "1"]} +{"7004196": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004691": ["3", "3", "3", "2", "3", "2", "2"]} +{"8002393": ["1", "2", "3", "1", "3", "3", "1"]} +{"3005097": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003219": ["1", "2", "3", "1", "3", "3", "1"]} +{"7004141": ["3", "3", "3", "2", "2", "3", "2"]} +{"3006277": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005987": ["3", "3", "3", "3", "1", "2", "2"]} +{"3003950": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006432": ["1", "1", "1", "1", "2", "3", "1"]} +{"4002200": ["3", "2", "3", "None", "2", "1", "1"]} +{"2004973": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005666": ["None", "3", "3", "3", "3", "2", "3"]} +{"7003348": ["1", "2", "3", "1", "1", "3", "1"]} +{"4002200": ["3", "2", "3", "1", "2", "1", "1"]} +{"3005666": ["3", "3", "3", "3", "3", "2", "3"]} +{"1004003": ["1", "1", "3", "1", "3", "3", "1"]} +{"2004276": ["3", "3", "2", "3", "2", "2", "1"]} +{"2005423": ["3", "3", "3", "3", "3", "2", "3"]} +{"2004604": ["3", "3", "2", "3", "2", "3", "2"]} +{"4002674": ["3", "3", "3", "3", "1", "1", "1"]} +{"7002220": ["3", "3", "3", "3", "3", "2", "2"]} +{"7002681": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002997": ["1", "3", "3", "2", "1", "3", "1"]} +{"3006470": ["3", "1", "3", "2", "3", "3", "2"]} +{"8003463": ["2", "3", "3", "3", "3", "3", "2"]} +{"7002996": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002629": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002629": ["3", "3", "3", "3", "2", "2", "3"]} +{"6002146": ["1", "1", "3", "1", "2", "3", "2"]} +{"3003129": ["3", "3", "1", "3", "3", "3", "2"]} +{"3003129": ["3", "3", "1", "3", "3", "3", "2"]} +{"6002456": ["3", "3", "None", "3", "2", "3", "2"]} +{"3005779": ["3", "3", "3", "2", "3", "3", "2"]} +{"3006899": ["3", "3", "1", "3", "2", "2", "3"]} +{"7003580": ["3", "3", "3", "2", "3", "3", "3"]} +{"8001466": ["1", "3", "3", "2", "3", "3", "2"]} +{"0004300": ["2", "3", "3", "3", "1", "1", "1"]} +{"0004860": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005704": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003607": ["1", "1", "3", "3", "2", "3", "1"]} +{"6002456": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004514": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005257": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002864": ["3", "2", "3", "3", "1", "3", "2"]} +{"0003600": ["3", "3", "3", "2", "1", "2", "2"]} +{"0003053": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003347": ["1", "1", "3", "2", "1", "3", "1"]} +{"8002663": ["1", "1", "3", "1", "1", "3", "1"]} +{"8003088": ["3", "1", "3", "3", "3", "3", "2"]} +{"7004177": ["3", "3", "3", "3", "2", "2", "3"]} +{"0006809": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005031": ["1", "2", "3", "2", "1", "3", "1"]} +{"3003864": ["3", "3", "1", "3", "2", "3", "2"]} +{"0006570": ["3", "3", "1", "3", "1", "3", "1"]} +{"3005594": ["1", "1", "3", "1", "3", "3", "2"]} +{"8003240": ["1", "1", "3", "1", "1", "3", "1"]} +{"2003449": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004506": ["2", "1", "3", "1", "3", "1", "1"]} +{"2006432": ["3", "3", "3", "3", "1", "3", "2"]} +{"8003830": ["3", "3", "3", "3", "1", "3", "1"]} +{"8003167": ["3", "3", "3", "2", "3", "3", "2"]} +{"1004406": ["2", "2", "3", "3", "2", "3", "2"]} +{"7004579": ["3", "3", "3", "3", "2", "1", "2"]} +{"3004134": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006166": ["3", "2", "3", "3", "2", "3", "2"]} +{"3003579": ["3", "3", "2", "3", "1", "3", "2"]} +{"2005989": ["2", "3", "3", "3", "3", "3", "3"]} +{"1005768": ["1", "1", "3", "1", "3", "3", "1"]} +{"2006822": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003599": ["3", "3", "3", "3", "2", "1", "2"]} +{"2006612": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003755": ["2", "1", "3", "1", "2", "3", "2"]} +{"1004873": ["1", "1", "3", "2", "2", "3", "2"]} +{"8002826": ["3", "3", "3", "3", "1", "1", "1"]} +{"8002144": ["1", "2", "3", "2", "1", "3", "1"]} +{"7002003": ["3", "3", "3", "2", "3", "1", "2"]} +{"3005817": ["3", "2", "3", "3", "3", "3", "2"]} +{"6004258": ["1", "1", "3", "1", "3", "3", "2"]} +{"2007513": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005617": ["3", "3", "2", "2", "2", "3", "3"]} +{"0004655": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002378": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002565": ["2", "3", "3", "2", "3", "3", "3"]} +{"6003419": ["3", "1", "3", "1", "2", "3", "1"]} +{"5001097": ["3", "2", "3", "1", "2", "3", "2"]} +{"1003947": ["1", "1", "3", "3", "1", "3", "1"]} +{"0006483": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001791": ["3", "3", "2", "3", "2", "2", "2"]} +{"3004810": ["3", "1", "3", "1", "3", "2", "2"]} +{"0005114": ["3", "3", "3", "3", "1", "3", "2"]} +{"2005805": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003937": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006914": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004246": ["None", "3", "3", "1", "2", "1", "2"]} +{"2004246": ["3", "3", "3", "1", "2", "1", "2"]} +{"7004732": ["3", "3", "1", "3", "3", "3", "2"]} +{"2005396": ["3", "3", "3", "3", "3", "2", "3"]} +{"8002276": ["1", "3", "3", "1", "3", "3", "1"]} +{"6004685": ["None", "3", "3", "1", "3", "2", "1"]} +{"6004685": ["3", "3", "3", "1", "3", "2", "1"]} +{"0006460": ["2", "3", "3", "3", "2", "2", "2"]} +{"0005441": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005441": ["3", "3", "3", "3", "2", "2", "3"]} +{"4004007": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002318": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002318": ["3", "3", "1", "3", "3", "3", "2"]} +{"7004010": ["3", "1", "3", "2", "2", "1", "1"]} +{"1004350": ["3", "1", "3", "1", "2", "3", "2"]} +{"6002166": ["3", "1", "3", "1", "1", "3", "1"]} +{"6004822": ["2", "3", "3", "3", "1", "3", "1"]} +{"3004079": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006651": ["1", "1", "3", "1", "2", "3", "2"]} +{"2003383": ["3", "3", "3", "2", "3", "3", "3"]} +{"6004010": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004270": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002237": ["2", "1", "3", "1", "3", "1", "1"]} +{"3003808": ["3", "3", "3", "2", "3", "3", "2"]} +{"7004784": ["3", "3", "3", "2", "2", "3", "2"]} +{"3006468": ["3", "1", "3", "1", "3", "3", "1"]} +{"0005878": ["3", "3", "3", "3", "3", "3", "2"]} +{"8002945": ["2", "3", "3", "1", "3", "3", "1"]} +{"1004045": ["2", "1", "3", "1", "3", "2", "1"]} +{"1004788": ["1", "1", "3", "3", "2", "3", "1"]} +{"0006918": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005738": ["3", "1", "3", "1", "3", "3", "1"]} +{"2003038": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003490": ["3", "3", "3", "3", "3", "2", "2"]} +{"4003320": ["2", "1", "3", "3", "3", "2", "1"]} +{"2007943": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004997": ["3", "3", "3", "2", "3", "3", "3"]} +{"0006523": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003674": ["2", "2", "3", "2", "3", "3", "1"]} +{"0003121": ["3", "3", "3", "2", "3", "3", "2"]} +{"8003664": ["2", "3", "3", "2", "3", "3", "2"]} +{"0006437": ["3", "3", "1", "3", "3", "3", "2"]} +{"2003279": ["3", "3", "3", "2", "2", "3", "2"]} +{"4003934": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005676": ["2", "3", "3", "3", "3", "3", "2"]} +{"2005802": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003940": ["1", "3", "3", "1", "2", "3", "1"]} +{"1004748": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006104": ["3", "3", "3", "2", "3", "2", "2"]} +{"0004630": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004009": ["3", "3", "1", "3", "2", "3", "2"]} +{"6002298": ["1", "1", "3", "1", "2", "3", "1"]} +{"2003468": ["3", "3", "1", "3", "2", "3", "3"]} +{"1006642": ["3", "1", "3", "3", "3", "3", "2"]} +{"8003193": ["1", "1", "3", "1", "1", "1", "1"]} +{"4003710": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002546": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003660": ["3", "1", "3", "2", "3", "3", "2"]} +{"6003456": ["2", "3", "3", "3", "2", "1", "1"]} +{"3006528": ["1", "1", "3", "1", "1", "3", "1"]} +{"3006786": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005230": ["1", "1", "3", "1", "3", "3", "1"]} +{"0004293": ["3", "3", "1", "3", "1", "3", "1"]} +{"7003511": ["3", "3", "3", "2", "3", "3", "1"]} +{"7003511": ["3", "3", "3", "2", "1", "3", "1"]} +{"2007370": ["3", "3", "3", "3", "2", "3", "3"]} +{"8003092": ["1", "1", "3", "1", "2", "3", "1"]} +{"0005902": ["3", "3", "3", "1", "2", "1", "1"]} +{"1003874": ["1", "2", "3", "1", "1", "3", "1"]} +{"0003596": ["3", "3", "1", "3", "3", "2", "3"]} +{"3006458": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003969": ["3", "2", "3", "1", "1", "2", "1"]} +{"3006220": ["2", "3", "3", "2", "3", "3", "2"]} +{"2006068": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006719": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005100": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007472": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006514": ["3", "3", "2", "2", "1", "3", "2"]} +{"4002809": ["3", "1", "3", "2", "3", "3", "2"]} +{"7003290": ["3", "3", "3", "2", "2", "3", "2"]} +{"8002268": ["1", "3", "3", "1", "1", "3", "1"]} +{"4002872": ["3", "3", "1", "3", "2", "3", "2"]} +{"6002309": ["2", "3", "3", "1", "1", "3", "1"]} +{"8002725": ["2", "3", "3", "2", "3", "2", "1"]} +{"4004436": ["3", "1", "3", "3", "1", "3", "1"]} +{"3005110": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002498": ["2", "3", "3", "3", "3", "1", "2"]} +{"2003608": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003218": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007954": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004137": ["3", "1", "3", "2", "3", "3", "2"]} +{"4004757": ["3", "2", "3", "3", "2", "3", "2"]} +{"7004350": ["3", "3", "3", "2", "3", "3", "2"]} +{"8001020": ["1", "3", "3", "1", "2", "3", "1"]} +{"4003708": ["2", "1", "3", "1", "2", "2", "1"]} +{"3003523": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001292": ["1", "1", "3", "1", "1", "3", "1"]} +{"6002162": ["3", "3", "3", "1", "2", "3", "2"]} +{"1005042": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006718": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004833": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002781": ["1", "3", "3", "1", "1", "3", "1"]} +{"1004470": ["3", "2", "3", "3", "2", "3", "2"]} +{"0003421": ["3", "3", "1", "3", "3", "3", "3"]} +{"3004334": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005803": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004799": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003466": ["3", "2", "3", "3", "2", "3", "2"]} +{"3005925": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005925": ["3", "2", "3", "2", "1", "3", "2"]} +{"0004349": ["3", "3", "3", "2", "2", "3", "2"]} +{"1004909": ["1", "3", "3", "1", "1", "3", "1"]} +{"8003163": ["1", "1", "3", "1", "1", "3", "1"]} +{"2006877": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006958": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004436": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004673": ["1", "1", "3", "1", "2", "3", "1"]} +{"4004832": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004938": ["3", "3", "3", "2", "3", "1", "2"]} +{"1004927": ["3", "1", "3", "2", "3", "3", "1"]} +{"3004463": ["3", "1", "3", "1", "2", "1", "1"]} +{"7004256": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004569": ["3", "3", "2", "3", "1", "3", "2"]} +{"2005231": ["3", "3", "3", "3", "3", "1", "2"]} +{"2003703": ["3", "3", "3", "2", "2", "1", "1"]} +{"4003702": ["3", "1", "3", "3", "3", "3", "2"]} +{"7002620": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004202": ["1", "2", "3", "2", "2", "3", "2"]} +{"8001926": ["2", "3", "3", "3", "1", "3", "1"]} +{"0004045": ["3", "3", "3", "3", "2", "2", "2"]} +{"2007088": ["3", "3", "1", "3", "1", "3", "2"]} +{"5001467": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005589": ["1", "1", "3", "2", "2", "3", "1"]} +{"2007838": ["3", "3", "1", "3", "2", "3", "2"]} +{"2005993": ["3", "3", "3", "3", "2", "1", "2"]} +{"4004259": ["3", "3", "3", "3", "3", "1", "2"]} +{"1006487": ["1", "1", "3", "1", "2", "3", "1"]} +{"6002374": ["1", "2", "3", "1", "3", "3", "2"]} +{"0005775": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004747": ["3", "3", "3", "2", "2", "3", "2"]} +{"2005066": ["3", "2", "3", "3", "2", "3", "2"]} +{"0004784": ["1", "3", "3", "2", "3", "3", "2"]} +{"7004357": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006436": ["1", "1", "3", "1", "None", "2", "1"]} +{"2003929": ["3", "2", "3", "1", "3", "3", "1"]} +{"1006436": ["1", "1", "3", "1", "2", "2", "1"]} +{"3005554": ["None", "3", "3", "3", "1", "3", "2"]} +{"3005554": ["3", "3", "3", "2", "1", "3", "2"]} +{"7003919": ["3", "3", "2", "3", "2", "3", "3"]} +{"1003411": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003202": ["1", "3", "3", "1", "1", "3", "1"]} +{"7002897": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002711": ["2", "1", "3", "1", "3", "3", "1"]} +{"6004160": ["2", "1", "3", "1", "2", "3", "2"]} +{"3005857": ["3", "3", "3", "2", "1", "3", "2"]} +{"3003658": ["3", "3", "3", "2", "2", "2", "2"]} +{"3005564": ["3", "1", "3", "1", "3", "3", "2"]} +{"7002243": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003004": ["3", "2", "3", "2", "1", "2", "1"]} +{"8002567": ["1", "3", "3", "1", "1", "3", "1"]} +{"2003906": ["3", "3", "2", "3", "2", "3", "3"]} +{"1006469": ["2", "1", "3", "1", "2", "3", "1"]} +{"1006215": ["2", "1", "3", "2", "2", "3", "1"]} +{"1003551": ["1", "1", "3", "1", "2", "3", "1"]} +{"6004309": ["1", "1", "3", "1", "2", "3", "1"]} +{"7002273": ["3", "2", "3", "3", "2", "3", "2"]} +{"8002224": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002706": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004149": ["3", "3", "3", "2", "1", "3", "1"]} +{"2006806": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007612": ["3", "2", "3", "3", "3", "3", "2"]} +{"4003068": ["3", "3", "None", "2", "3", "3", "2"]} +{"3006829": ["3", "3", "2", "3", "2", "2", "1"]} +{"3003736": ["3", "3", "3", "2", "1", "1", "1"]} +{"0005808": ["3", "3", "2", "3", "3", "2", "2"]} +{"1006514": ["1", "1", "3", "1", "1", "3", "1"]} +{"4003068": ["3", "3", "3", "2", "3", "3", "2"]} +{"8002300": ["1", "3", "3", "1", "3", "3", "1"]} +{"4002742": ["3", "3", "2", "3", "2", "2", "2"]} +{"8002976": ["1", "1", "3", "1", "1", "3", "1"]} +{"1006785": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006612": ["3", "3", "3", "3", "3", "2", "2"]} +{"8001765": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002159": ["3", "3", "3", "3", "1", "2", "1"]} +{"2004940": ["3", "1", "3", "2", "1", "3", "1"]} +{"4004304": ["3", "2", "3", "3", "2", "3", "2"]} +{"3004262": ["3", "2", "3", "1", "3", "3", "2"]} +{"1004332": ["1", "1", "3", "1", "3", "3", "1"]} +{"6004841": ["3", "3", "3", "3", "3", "2", "2"]} +{"1006042": ["3", "1", "3", "1", "3", "3", "2"]} +{"5001998": ["3", "3", "1", "3", "3", "1", "1"]} +{"0003973": ["3", "2", "3", "3", "1", "3", "2"]} +{"4002315": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002068": ["1", "3", "3", "1", "2", "3", "1"]} +{"3004013": ["3", "2", "2", "2", "3", "3", "2"]} +{"1005335": ["3", "1", "3", "2", "3", "1", "1"]} +{"6004269": ["1", "1", "3", "1", "1", "3", "1"]} +{"2007270": ["2", "3", "3", "3", "3", "2", "2"]} +{"0003861": ["3", "3", "2", "3", "2", "3", "1"]} +{"6003010": ["3", "1", "3", "1", "2", "3", "1"]} +{"6002136": ["3", "1", "3", "1", "2", "2", "1"]} +{"7003887": ["3", "3", "2", "3", "1", "3", "2"]} +{"2003590": ["3", "3", "3", "2", "3", "2", "2"]} +{"1004668": ["1", "1", "3", "1", "1", "3", "1"]} +{"4003256": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003644": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002752": ["1", "3", "3", "1", "3", "3", "1"]} +{"2006089": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004481": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004481": ["3", "3", "3", "3", "2", "2", "2"]} +{"2005498": ["3", "3", "3", "3", "3", "2", "3"]} +{"5001777": ["3", "3", "1", "3", "3", "3", "3"]} +{"4004930": ["3", "3", "None", "3", "2", "3", "3"]} +{"4004930": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006985": ["3", "1", "3", "1", "3", "3", "1"]} +{"1006220": ["3", "3", "3", "2", "1", "3", "1"]} +{"6004086": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003796": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006499": ["1", "3", "3", "3", "1", "3", "1"]} +{"5001911": ["3", "3", "1", "3", "1", "3", "1"]} +{"2003991": ["3", "3", "3", "2", "1", "3", "2"]} +{"2003361": ["3", "3", "1", "3", "2", "3", "2"]} +{"2006298": ["3", "3", "3", "2", "3", "2", "2"]} +{"8001098": ["1", "3", "3", "1", "2", "3", "1"]} +{"3005760": ["None", "3", "3", "3", "1", "3", "1"]} +{"3005760": ["3", "3", "3", "3", "1", "3", "1"]} +{"4002307": ["3", "1", "3", "2", "3", "3", "2"]} +{"4003371": ["None", "3", "3", "3", "2", "2", "2"]} +{"4003371": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005412": ["1", "1", "3", "1", "None", "3", "1"]} +{"1005412": ["1", "1", "3", "1", "3", "3", "1"]} +{"7002869": ["3", "3", "3", "3", "3", "2", "3"]} +{"4004675": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003851": ["1", "1", "3", "1", "2", "3", "1"]} +{"0004006": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003668": ["2", "1", "3", "1", "2", "3", "1"]} +{"2006307": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002153": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003544": ["1", "2", "3", "1", "1", "3", "1"]} +{"7004994": ["2", "3", "3", "3", "1", "2", "1"]} +{"0004251": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005747": ["3", "3", "3", "2", "2", "1", "1"]} +{"3004116": ["3", "3", "3", "1", "3", "3", "2"]} +{"3004158": ["2", "3", "3", "2", "3", "3", "2"]} +{"8001327": ["1", "3", "3", "1", "2", "3", "1"]} +{"2004134": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004134": ["3", "3", "3", "3", "1", "3", "3"]} +{"5001723": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002379": ["1", "3", "3", "1", "1", "3", "1"]} +{"2005367": ["1", "3", "3", "1", "1", "3", "1"]} +{"7004922": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006080": ["1", "1", "3", "1", "3", "3", "1"]} +{"4004184": ["3", "3", "3", "2", "2", "3", "3"]} +{"3004838": ["3", "2", "3", "1", "3", "3", "2"]} +{"3004699": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006804": ["3", "1", "3", "1", "3", "3", "1"]} +{"2006474": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004327": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002250": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004674": ["3", "3", "1", "3", "2", "3", "1"]} +{"2005545": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006450": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001597": ["1", "1", "3", "1", "2", "3", "1"]} +{"1004438": ["1", "1", "3", "1", "2", "3", "1"]} +{"6004659": ["2", "1", "3", "2", "3", "3", "2"]} +{"7002197": ["3", "3", "2", "3", "1", "3", "1"]} +{"1004004": ["1", "1", "3", "1", "2", "3", "2"]} +{"1004004": ["1", "1", "3", "1", "2", "3", "1"]} +{"1003813": ["1", "1", "3", "1", "3", "3", "2"]} +{"5001966": ["3", "3", "3", "3", "2", "2", "2"]} +{"1006957": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003124": ["1", "1", "3", "1", "3", "3", "1"]} +{"7003766": ["3", "3", "3", "3", "3", "2", "2"]} +{"0005419": ["3", "3", "2", "3", "1", "1", "1"]} +{"4002409": ["3", "3", "3", "3", "1", "3", "2"]} +{"7003181": ["2", "2", "3", "1", "1", "1", "1"]} +{"7002730": ["2", "3", "3", "1", "1", "3", "1"]} +{"0006389": ["3", "3", "3", "3", "2", "3", "1"]} +{"1006743": ["2", "1", "3", "1", "1", "2", "1"]} +{"4003733": ["3", "3", "3", "1", "3", "3", "2"]} +{"4003491": ["3", "3", "3", "3", "3", "1", "1"]} +{"4003906": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004741": ["3", "3", "3", "2", "3", "2", "2"]} +{"8003241": ["1", "3", "3", "3", "2", "3", "1"]} +{"0003259": ["3", "3", "3", "2", "3", "1", "1"]} +{"0006434": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004407": ["3", "3", "3", "2", "3", "3", "3"]} +{"3003964": ["3", "3", "3", "1", "3", "3", "2"]} +{"0003885": ["3", "3", "3", "1", "3", "3", "2"]} +{"6004104": ["1", "1", "3", "1", "3", "3", "1"]} +{"3003761": ["3", "3", "3", "3", "2", "2", "1"]} +{"7002554": ["3", "3", "3", "2", "2", "3", "2"]} +{"3003608": ["None", "3", "3", "3", "2", "3", "3"]} +{"0005795": ["3", "3", "1", "3", "2", "3", "2"]} +{"4003691": ["3", "1", "3", "3", "2", "3", "2"]} +{"3003608": ["3", "3", "3", "3", "2", "3", "3"]} diff --git a/webpage/res/res_rd1_16k/ans_zhiheng.jsonl b/webpage/res/res_rd1_16k/ans_zhiheng.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..fb77aa6c93987568f645f6c9672bbdad36cd726a --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_zhiheng.jsonl @@ -0,0 +1,1169 @@ +{"0005557": ["3", "3", "2", "2", "3", "2", "2"]} +{"4003787": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004715": ["2", "1", "2", "1", "1", "1", "1"]} +{"5001040": ["3", "3", "2", "2", "3", "3", "3"]} +{"8002827": ["1", "2", "3", "1", "3", "3", "2"]} +{"6004363": ["1", "1", "3", "1", "1", "2", "1"]} +{"4002845": ["3", "3", "3", "2", "1", "3", "2"]} +{"6004577": ["1", "1", "2", "1", "1", "2", "1"]} +{"1005641": ["3", "1", "3", "1", "1", "2", "1"]} +{"8003810": ["1", "2", "2", "3", "2", "3", "1"]} +{"0004521": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004288": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004766": ["2", "2", "3", "1", "2", "2", "1"]} +{"6003282": ["1", "3", "3", "2", "2", "3", "3"]} +{"2006584": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001287": ["3", "2", "3", "3", "3", "3", "3"]} +{"7002478": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005830": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004815": ["2", "3", "2", "3", "3", "3", "3"]} +{"2007162": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004662": ["3", "3", "3", "3", "3", "2", "3"]} +{"0006900": ["2", "3", "3", "3", "2", "3", "3"]} +{"3006661": ["3", "2", "3", "2", "1", "3", "2"]} +{"7002337": ["3", "3", "2", "3", "3", "1", "2"]} +{"1005614": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006335": ["3", "3", "3", "3", "1", "3", "1"]} +{"6002319": ["2", "3", "3", "None", "3", "3", "3"]} +{"3004807": ["3", "3", "3", "2", "1", "2", "2"]} +{"0006868": ["3", "3", "2", "3", "1", "2", "2"]} +{"0004955": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002211": ["2", "3", "3", "2", "2", "2", "2"]} +{"8003300": ["2", "1", "3", "3", "2", "3", "2"]} +{"2003841": ["2", "3", "3", "3", "3", "3", "2"]} +{"3003011": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006680": ["2", "3", "2", "2", "2", "3", "2"]} +{"8003187": ["1", "3", "3", "2", "3", "3", "1"]} +{"4002085": ["3", "2", "3", "3", "3", "3", "3"]} +{"0006233": ["3", "3", "3", "3", "2", "3", "3"]} +{"8002194": ["2", "3", "2", "2", "1", "3", "2"]} +{"2004842": ["3", "2", "3", "2", "3", "3", "3"]} +{"8001494": ["2", "1", "3", "3", "1", "2", "1"]} +{"3004861": ["2", "3", "3", "2", "1", "2", "1"]} +{"3006763": ["2", "3", "2", "2", "2", "3", "1"]} +{"1003027": ["3", "1", "3", "2", "1", "2", "1"]} +{"7003542": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006020": ["3", "3", "2", "3", "3", "3", "3"]} +{"4004894": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004374": ["2", "2", "3", "3", "2", "3", "2"]} +{"0006292": ["2", "1", "3", "3", "2", "2", "2"]} +{"0006427": ["3", "3", "3", "3", "2", "3", "3"]} +{"0003962": ["2", "3", "2", "3", "3", "3", "3"]} +{"1004151": ["2", "1", "3", "1", "3", "3", "1"]} +{"1006336": ["3", "1", "3", "1", "3", "3", "1"]} +{"3006967": ["2", "3", "1", "3", "3", "3", "2"]} +{"1003698": ["2", "1", "3", "1", "3", "3", "1"]} +{"7002369": ["1", "3", "3", "2", "3", "3", "2"]} +{"6003655": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003984": ["3", "1", "3", "1", "2", "2", "1"]} +{"0004762": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003684": ["1", "2", "3", "2", "2", "3", "2"]} +{"2004674": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006491": ["2", "3", "3", "3", "3", "3", "3"]} +{"7002551": ["2", "3", "3", "2", "3", "2", "3"]} +{"0006291": ["2", "3", "2", "3", "2", "3", "2"]} +{"6003110": ["2", "2", "3", "3", "3", "3", "3"]} +{"7004416": ["2", "3", "3", "None", "3", "3", "3"]} +{"4004756": ["2", "3", "3", "2", "3", "3", "3"]} +{"2005506": ["2", "3", "3", "3", "1", "3", "2"]} +{"0006109": ["2", "1", "3", "2", "2", "3", "2"]} +{"1003100": ["2", "1", "3", "1", "1", "2", "1"]} +{"6002316": ["2", "1", "3", "1", "2", "3", "1"]} +{"2004103": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005814": ["2", "2", "3", "1", "1", "2", "1"]} +{"6002701": ["3", "2", "3", "2", "2", "2", "2"]} +{"3004371": ["2", "1", "3", "3", "3", "3", "1"]} +{"8003440": ["2", "3", "3", "3", "1", "3", "2"]} +{"1006245": ["3", "1", "None", "2", "2", "3", "1"]} +{"2004926": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005436": ["2", "2", "3", "1", "2", "3", "1"]} +{"3005687": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004973": ["3", "3", "3", "2", "3", "3", "2"]} +{"0004438": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003310": ["2", "1", "3", "3", "2", "3", "1"]} +{"8001860": ["2", "2", "3", "2", "1", "3", "2"]} +{"8003209": ["2", "3", "3", "2", "1", "3", "1"]} +{"3003806": ["3", "3", "3", "3", "2", "2", "2"]} +{"3005205": ["1", "2", "3", "1", "3", "3", "1"]} +{"1005072": ["2", "1", "2", "2", "3", "3", "1"]} +{"8002896": ["2", "3", "3", "2", "3", "3", "3"]} +{"2003693": ["3", "3", "3", "2", "2", "2", "2"]} +{"0005332": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005739": ["3", "2", "2", "1", "2", "3", "1"]} +{"3006243": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003924": ["1", "1", "3", "2", "1", "3", "1"]} +{"6002868": ["2", "3", "3", "3", "2", "3", "2"]} +{"4003872": ["3", "1", "3", "3", "3", "3", "2"]} +{"7003858": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006982": ["2", "3", "3", "3", "3", "3", "3"]} +{"2005715": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006658": ["3", "3", "3", "3", "3", "2", "3"]} +{"7004754": ["3", "3", "3", "3", "3", "1", "2"]} +{"4002420": ["2", "3", "3", "3", "1", "3", "2"]} +{"4004604": ["3", "2", "3", "3", "1", "3", "2"]} +{"8001209": ["1", "2", "3", "3", "1", "2", "1"]} +{"3005156": ["2", "3", "3", "2", "3", "3", "2"]} +{"1006948": ["2", "1", "3", "2", "3", "3", "2"]} +{"8002147": ["2", "3", "2", "3", "1", "3", "2"]} +{"7002147": ["3", "2", "3", "2", "3", "2", "2"]} +{"4004557": ["3", "2", "3", "3", "1", "3", "2"]} +{"3005100": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004877": ["3", "3", "3", "2", "3", "3", "3"]} +{"1006660": ["3", "2", "3", "1", "3", "3", "2"]} +{"2007251": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005073": ["3", "3", "3", "2", "2", "3", "2"]} +{"2007968": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002858": ["2", "2", "3", "1", "3", "3", "2"]} +{"4002010": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003101": ["2", "3", "3", "2", "3", "3", "2"]} +{"8001231": ["2", "3", "3", "2", "3", "3", "3"]} +{"2003690": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003213": ["3", "3", "3", "2", "2", "3", "2"]} +{"2004830": ["2", "3", "3", "3", "2", "2", "2"]} +{"2005753": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004249": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003935": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003490": ["2", "3", "3", "2", "2", "3", "2"]} +{"0006367": ["2", "3", "3", "3", "2", "3", "2"]} +{"2006495": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006735": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005620": ["2", "1", "3", "2", "3", "3", "2"]} +{"0003690": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003725": ["2", "2", "3", "2", "1", "2", "1"]} +{"2004213": ["3", "3", "3", "2", "2", "3", "2"]} +{"5001928": ["3", "3", "3", "3", "3", "2", "3"]} +{"7002509": ["3", "None", "3", "2", "2", "3", "3"]} +{"6002388": ["2", "2", "3", "2", "1", "2", "1"]} +{"2007576": ["3", "2", "3", "3", "2", "3", "3"]} +{"0004234": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003429": ["1", "2", "3", "1", "2", "3", "1"]} +{"8003429": ["1", "2", "3", "1", "2", "3", "1"]} +{"8003433": ["1", "2", "3", "1", "3", "2", "1"]} +{"3005819": ["1", "2", "3", "1", "2", "2", "1"]} +{"2003922": ["3", "3", "3", "None", "3", "3", "3"]} +{"0003026": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004301": ["1", "2", "2", "2", "1", "2", "1"]} +{"3003982": ["2", "3", "3", "3", "3", "3", "3"]} +{"8002065": ["2", "3", "3", "2", "2", "2", "1"]} +{"2004619": ["2", "3", "3", "3", "2", "3", "2"]} +{"6004929": ["2", "1", "3", "3", "2", "3", "1"]} +{"2007919": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004216": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005025": ["2", "3", "3", "3", "3", "2", "None"]} +{"0005025": ["2", "3", "3", "3", "3", "2", "3"]} +{"0003880": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006620": ["2", "3", "2", "3", "2", "3", "2"]} +{"0005486": ["2", "3", "3", "3", "3", "3", "3"]} +{"6003107": ["2", "2", "2", "1", "3", "3", "1"]} +{"3005858": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005056": ["2", "2", "3", "3", "3", "3", "3"]} +{"1003701": ["1", "1", "3", "1", "2", "2", "1"]} +{"2006075": ["2", "3", "3", "3", "2", "3", "3"]} +{"0006782": ["3", "2", "3", "3", "3", "3", "3"]} +{"7002930": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005454": ["2", "1", "2", "1", "3", "2", "1"]} +{"0003688": ["3", "3", "None", "3", "3", "2", "3"]} +{"7002263": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004936": ["2", "3", "1", "3", "2", "3", "1"]} +{"8001969": ["1", "1", "3", "2", "2", "2", "1"]} +{"6003007": ["2", "2", "2", "3", "2", "3", "1"]} +{"3005797": ["2", "2", "3", "3", "3", "3", "3"]} +{"7004713": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004513": ["3", "3", "2", "3", "2", "3", "2"]} +{"3006036": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003215": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006079": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003088": ["2", "2", "3", "1", "2", "3", "1"]} +{"1005338": ["2", "1", "3", "2", "1", "2", "1"]} +{"8001678": ["2", "2", "3", "3", "3", "3", "2"]} +{"5001570": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005410": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002059": ["2", "3", "3", "2", "3", "3", "3"]} +{"1006915": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003249": ["2", "2", "3", "3", "3", "3", "3"]} +{"3003911": ["2", "3", "3", "3", "3", "3", "2"]} +{"3003012": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002351": ["3", "3", "3", "3", "3", "1", "2"]} +{"4002007": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007448": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004779": ["2", "3", "3", "3", "3", "2", "2"]} +{"5001103": ["3", "3", "1", "3", "2", "3", "3"]} +{"2005634": ["2", "3", "2", "3", "2", "3", "2"]} +{"6004908": ["2", "1", "3", "3", "2", "3", "1"]} +{"4002042": ["2", "3", "3", "2", "2", "3", "2"]} +{"2003115": ["3", "3", "3", "3", "3", "1", "3"]} +{"1005914": ["2", "1", "3", "3", "3", "3", "2"]} +{"8001024": ["2", "2", "3", "3", "2", "3", "2"]} +{"8001024": ["2", "2", "3", "3", "2", "3", "2"]} +{"1004408": ["3", "3", "3", "2", "3", "3", "2"]} +{"0005021": ["3", "3", "1", "3", "3", "3", "3"]} +{"2007912": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005915": ["2", "1", "2", "1", "1", "3", "1"]} +{"7002504": ["3", "3", "3", "2", "3", "3", "3"]} +{"4002013": ["2", "2", "3", "3", "3", "3", "2"]} +{"0006181": ["2", "3", "3", "3", "1", "3", "2"]} +{"8003072": ["1", "1", "2", "2", "3", "3", "1"]} +{"2007468": ["2", "3", "3", "3", "2", "3", "3"]} +{"6004273": ["2", "3", "3", "3", "3", "3", "2"]} +{"3004058": ["2", "2", "3", "3", "2", "3", "2"]} +{"8001308": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005621": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004181": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004749": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003765": ["2", "2", "3", "3", "1", "2", "1"]} +{"6002646": ["2", "3", "3", "3", "2", "3", "2"]} +{"6002677": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004564": ["3", "3", "2", "3", "2", "3", "2"]} +{"4002866": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006482": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003453": ["3", "3", "3", "3", "1", "3", "2"]} +{"4002943": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003404": ["2", "1", "3", "1", "3", "3", "1"]} +{"6004084": ["2", "1", "3", "1", "3", "3", "1"]} +{"4004868": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002006": ["3", "3", "3", "3", "2", "3", "3"]} +{"2006327": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007415": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006908": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006885": ["2", "2", "3", "3", "1", "3", "1"]} +{"6002668": ["3", "2", "3", "3", "2", "3", "2"]} +{"4003274": ["2", "3", "3", "2", "3", "3", "2"]} +{"7004003": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006655": ["3", "3", "1", "3", "3", "3", "2"]} +{"3004228": ["2", "3", "1", "3", "1", "3", "1"]} +{"2007656": ["3", "3", "2", "3", "3", "3", "3"]} +{"8003590": ["2", "2", "3", "2", "None", "3", "2"]} +{"5001428": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002378": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004060": ["3", "3", "3", "3", "3", "2", "2"]} +{"3005544": ["2", "1", "3", "3", "3", "3", "2"]} +{"1005763": ["2", "1", "2", "3", "2", "3", "1"]} +{"3006208": ["2", "2", "3", "1", "3", "3", "2"]} +{"2007703": ["3", "3", "3", "3", "2", "3", "3"]} +{"1006275": ["2", "1", "3", "1", "1", "3", "1"]} +{"7002873": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003943": ["1", "3", "3", "2", "1", "2", "1"]} +{"3003316": ["2", "3", "3", "2", "1", "3", "1"]} +{"1006617": ["2", "1", "3", "3", "2", "3", "1"]} +{"0005785": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003697": ["1", "2", "3", "2", "2", "3", "1"]} +{"2007902": ["2", "3", "2", "3", "3", "3", "2"]} +{"0004973": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003887": ["2", "1", "3", "3", "2", "3", "1"]} +{"2006348": ["3", "2", "3", "3", "3", "3", "3"]} +{"2007374": ["3", "3", "3", "3", "2", "3", "3"]} +{"0004298": ["2", "3", "1", "3", "3", "3", "1"]} +{"8002249": ["2", "3", "3", "1", "3", "3", "1"]} +{"0003418": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002562": ["3", "2", "3", "2", "2", "2", "2"]} +{"4003992": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004727": ["2", "2", "3", "3", "2", "3", "2"]} +{"7002175": ["2", "3", "3", "3", "2", "3", "2"]} +{"3003511": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004139": ["3", "2", "3", "3", "3", "2", "2"]} +{"7002417": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003421": ["3", "3", "3", "2", "3", "3", "2"]} +{"2005663": ["2", "2", "3", "3", "3", "3", "3"]} +{"7002990": ["2", "1", "3", "2", "3", "3", "1"]} +{"8003930": ["2", "3", "3", "1", "3", "2", "2"]} +{"1003479": ["3", "1", "3", "2", "1", "3", "1"]} +{"3006187": ["2", "3", "3", "2", "3", "3", "2"]} +{"7000001": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003968": ["2", "2", "3", "2", "3", "3", "2"]} +{"1004059": ["2", "1", "3", "1", "1", "3", "1"]} +{"4004416": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003893": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006096": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005914": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007186": ["2", "3", "3", "3", "3", "3", "3"]} +{"2007186": ["2", "3", "3", "3", "3", "3", "3"]} +{"4003198": ["3", "3", "2", "3", "3", "3", "3"]} +{"2004949": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003752": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005391": ["2", "3", "3", "2", "3", "3", "3"]} +{"0006196": ["3", "2", "3", "3", "2", "3", "3"]} +{"0006267": ["2", "3", "3", "3", "1", "2", "1"]} +{"1006308": ["2", "1", "3", "2", "3", "3", "1"]} +{"3005811": ["2", "3", "1", "3", "2", "3", "1"]} +{"8003206": ["2", "1", "3", "2", "3", "3", "2"]} +{"3004348": ["1", "3", "3", "2", "3", "3", "1"]} +{"8003476": ["3", "2", "3", "2", "3", "3", "3"]} +{"8002068": ["2", "3", "3", "3", "2", "3", "3"]} +{"3004688": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003829": ["3", "2", "3", "2", "2", "3", "2"]} +{"4003297": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005140": ["3", "1", "3", "2", "1", "3", "1"]} +{"4002982": ["2", "1", "3", "1", "3", "3", "1"]} +{"0005164": ["2", "None", "3", "3", "3", "3", "3"]} +{"3006100": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003275": ["1", "1", "3", "3", "2", "3", "1"]} +{"1006353": ["2", "2", "3", "1", "2", "3", "1"]} +{"5001821": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005796": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003324": ["2", "3", "3", "3", "1", "1", "2"]} +{"6003959": ["2", "2", "3", "2", "3", "3", "2"]} +{"2004466": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003665": ["1", "2", "3", "1", "1", "2", "1"]} +{"8003696": ["2", "2", "3", "2", "1", "3", "1"]} +{"4003498": ["2", "2", "3", "3", "2", "3", "2"]} +{"2006098": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006069": ["2", "1", "3", "2", "3", "3", "2"]} +{"3006378": ["2", "3", "2", "3", "1", "3", "2"]} +{"3003478": ["2", "3", "1", "3", "3", "3", "2"]} +{"5001936": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003679": ["2", "3", "3", "3", "2", "3", "2"]} +{"2003701": ["3", "3", "3", "3", "2", "3", "3"]} +{"2003491": ["2", "3", "2", "3", "2", "3", "2"]} +{"3005774": ["2", "3", "3", "3", "2", "3", "2"]} +{"3005521": ["2", "3", "3", "1", "3", "3", "2"]} +{"2007235": ["3", "3", "3", "3", "3", "2", "2"]} +{"1004760": ["3", "2", "3", "1", "2", "3", "2"]} +{"2006536": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001489": ["1", "2", "3", "1", "1", "3", "1"]} +{"1003630": ["2", "1", "3", "1", "2", "3", "1"]} +{"4002708": ["2", "2", "3", "2", "2", "3", "2"]} +{"3004242": ["3", "2", "3", "3", "3", "3", "3"]} +{"7002098": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004233": ["2", "1", "3", "3", "1", "3", "1"]} +{"8002836": ["1", "3", "3", "1", "3", "3", "1"]} +{"0004550": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004442": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001350": ["1", "3", "3", "2", "3", "3", "2"]} +{"6003221": ["1", "3", "3", "3", "3", "3", "3"]} +{"0006941": ["2", "3", "2", "3", "1", "2", "1"]} +{"6003306": ["2", "3", "3", "3", "2", "3", "2"]} +{"0004191": ["2", "2", "3", "3", "1", "3", "1"]} +{"3004524": ["2", "2", "3", "2", "3", "3", "2"]} +{"8003637": ["1", "2", "3", "2", "3", "3", "2"]} +{"2005029": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005213": ["3", "2", "3", "3", "1", "3", "2"]} +{"3004532": ["None", "2", "3", "2", "1", "2", "1"]} +{"1004075": ["2", "1", "3", "2", "3", "3", "3"]} +{"6004936": ["2", "2", "3", "1", "3", "3", "2"]} +{"6002319": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004416": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006245": ["3", "1", "3", "2", "2", "3", "1"]} +{"7002509": ["3", "2", "3", "2", "2", "3", "3"]} +{"2003922": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003688": ["3", "3", "3", "3", "3", "2", "3"]} +{"8003590": ["2", "2", "3", "2", "2", "3", "2"]} +{"0005164": ["2", "3", "3", "3", "3", "3", "3"]} +{"3004532": ["2", "2", "3", "2", "1", "2", "1"]} +{"8002774": ["2", "2", "3", "3", "3", "3", "2"]} +{"3005577": ["2", "2", "3", "1", "2", "3", "2"]} +{"8001508": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003773": ["2", "2", "3", "1", "3", "3", "2"]} +{"3006196": ["2", "3", "3", "2", "2", "3", "2"]} +{"1006950": ["3", "1", "3", "1", "2", "3", "1"]} +{"8002544": ["2", "2", "3", "1", "2", "3", "1"]} +{"8002463": ["2", "3", "3", "1", "3", "3", "1"]} +{"2007343": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003548": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004945": ["2", "2", "3", "1", "2", "3", "1"]} +{"1004237": ["2", "1", "3", "1", "2", "2", "1"]} +{"8001037": ["2", "3", "3", "2", "2", "2", "2"]} +{"2004044": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002698": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006690": ["2", "2", "3", "1", "3", "3", "1"]} +{"4004040": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003065": ["2", "3", "3", "2", "2", "1", "2"]} +{"1006103": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004843": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004022": ["2", "3", "3", "3", "3", "3", "2"]} +{"7002881": ["2", "3", "2", "3", "3", "3", "2"]} +{"7002583": ["2", "2", "3", "3", "3", "3", "2"]} +{"7004036": ["3", "3", "2", "2", "2", "2", "2"]} +{"1005939": ["3", "1", "3", "2", "3", "3", "1"]} +{"0004352": ["2", "3", "3", "3", "2", "3", "2"]} +{"4002747": ["2", "1", "3", "2", "3", "3", "1"]} +{"8001819": ["2", "2", "3", "1", "1", "2", "1"]} +{"2005708": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006380": ["2", "2", "3", "3", "1", "2", "1"]} +{"7002748": ["2", "3", "3", "2", "2", "3", "1"]} +{"3004346": ["1", "3", "3", "2", "3", "3", "2"]} +{"0006154": ["3", "3", "3", "3", "1", "3", "1"]} +{"2003538": ["3", "2", "3", "2", "3", "1", "2"]} +{"8002832": ["2", "3", "3", "2", "2", "3", "2"]} +{"3003375": ["2", "3", "3", "3", "1", "3", "1"]} +{"1006391": ["2", "1", "None", "None", "None", "None", "None"]} +{"1006391": ["2", "1", "3", "2", "2", "3", "1"]} +{"0003155": ["3", "3", "2", "3", "3", "3", "3"]} +{"4002469": ["3", "2", "3", "3", "2", "3", "3"]} +{"3003126": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003321": ["2", "2", "3", "1", "1", "1", "1"]} +{"3005504": ["2", "2", "3", "3", "2", "3", "2"]} +{"4003958": ["2", "1", "3", "2", "2", "3", "1"]} +{"1004563": ["3", "1", "3", "2", "1", "3", "1"]} +{"0004538": ["3", "3", "1", "3", "2", "3", "1"]} +{"3005337": ["2", "3", "3", "3", "2", "3", "2"]} +{"7002342": ["3", "3", "2", "3", "3", "3", "3"]} +{"1004615": ["2", "1", "3", "3", "2", "3", "1"]} +{"2005226": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004233": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003028": ["2", "1", "3", "3", "3", "3", "2"]} +{"2007205": ["3", "3", "3", "3", "2", "3", "3"]} +{"7003653": ["2", "2", "3", "2", "2", "3", "2"]} +{"8001656": ["3", "2", "3", "3", "1", "3", "1"]} +{"5001109": ["3", "2", "3", "3", "3", "2", "2"]} +{"7004171": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003610": ["2", "3", "1", "3", "2", "3", "2"]} +{"6002888": ["2", "1", "3", "2", "2", "3", "1"]} +{"0006454": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004536": ["2", "3", "3", "3", "3", "3", "3"]} +{"0004994": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005965": ["2", "3", "1", "2", "1", "3", "1"]} +{"7003193": ["2", "2", "3", "3", "2", "3", "1"]} +{"4004069": ["3", "2", "3", "3", "2", "3", "3"]} +{"4003250": ["3", "3", "2", "3", "3", "3", "2"]} +{"1006239": ["2", "2", "3", "1", "1", "2", "1"]} +{"7002933": ["2", "3", "2", "3", "3", "3", "2"]} +{"4003116": ["3", "3", "2", "3", "2", "3", "2"]} +{"0005616": ["2", "3", "2", "3", "3", "2", "2"]} +{"0005638": ["3", "3", "3", "3", "1", "3", "2"]} +{"2004327": ["3", "3", "2", "3", "3", "3", "3"]} +{"3006085": ["2", "3", "3", "2", "3", "3", "3"]} +{"2005248": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007911": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006052": ["2", "3", "3", "3", "2", "2", "2"]} +{"3003933": ["2", "2", "1", "3", "2", "3", "1"]} +{"1005086": ["2", "1", "3", "2", "1", "2", "1"]} +{"0003569": ["2", "3", "2", "3", "3", "3", "2"]} +{"4002677": ["3", "1", "3", "3", "2", "3", "1"]} +{"4004954": ["2", "3", "3", "3", "1", "2", "1"]} +{"8003061": ["2", "2", "3", "2", "1", "3", "1"]} +{"0005018": ["3", "3", "2", "2", "3", "3", "3"]} +{"2005230": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004747": ["3", "1", "2", "2", "3", "3", "1"]} +{"1006054": ["3", "1", "2", "1", "3", "3", "1"]} +{"2005991": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006990": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004506": ["3", "3", "3", "3", "1", "3", "2"]} +{"8001811": ["2", "3", "3", "1", "2", "3", "2"]} +{"0005507": ["3", "3", "1", "3", "2", "3", "1"]} +{"7003980": ["3", "3", "1", "3", "2", "3", "1"]} +{"1006959": ["3", "1", "3", "2", "2", "3", "1"]} +{"0004865": ["2", "3", "2", "3", "2", "3", "2"]} +{"7002652": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005899": ["2", "2", "3", "2", "3", "3", "2"]} +{"2005673": ["2", "2", "3", "3", "2", "3", "2"]} +{"6004411": ["2", "3", "3", "2", "1", "2", "1"]} +{"1003831": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006586": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002355": ["2", "2", "3", "2", "2", "3", "1"]} +{"2006185": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004737": ["3", "3", "1", "3", "1", "3", "1"]} +{"8003792": ["2", "2", "3", "3", "3", "2", "2"]} +{"3003997": ["2", "2", "2", "3", "2", "3", "2"]} +{"3006545": ["2", "2", "None", "3", "3", "3", "2"]} +{"3006545": ["2", "2", "None", "3", "2", "3", "2"]} +{"0004326": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005356": ["2", "2", "2", "3", "1", "2", "1"]} +{"0005273": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004163": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006545": ["2", "2", "3", "3", "2", "3", "2"]} +{"5001922": ["3", "3", "2", "3", "3", "3", "3"]} +{"5001922": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003157": ["3", "3", "3", "3", "3", "2", "3"]} +{"2003332": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004526": ["2", "3", "1", "3", "1", "3", "1"]} +{"0005614": ["2", "3", "3", "3", "2", "3", "2"]} +{"6003499": ["2", "1", "3", "3", "1", "2", "1"]} +{"3006382": ["2", "3", "3", "3", "2", "3", "2"]} +{"8001681": ["2", "2", "3", "3", "2", "3", "2"]} +{"7003093": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005076": ["2", "2", "3", "2", "3", "3", "1"]} +{"8002666": ["2", "2", "3", "3", "2", "3", "2"]} +{"2003897": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003327": ["1", "3", "3", "3", "2", "3", "1"]} +{"2006040": ["3", "3", "3", "3", "3", "2", "2"]} +{"1003025": ["3", "1", "3", "2", "1", "2", "2"]} +{"6004215": ["1", "2", "3", "3", "1", "3", "1"]} +{"5001921": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002082": ["2", "2", "3", "2", "2", "3", "2"]} +{"1004128": ["2", "1", "3", "2", "3", "3", "1"]} +{"0003917": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002151": ["2", "1", "3", "2", "3", "3", "1"]} +{"3003770": ["2", "3", "1", "3", "2", "3", "2"]} +{"7002251": ["2", "3", "3", "2", "3", "3", "2"]} +{"3005807": ["2", "3", "3", "3", "2", "3", "3"]} +{"5001255": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003632": ["3", "2", "1", "3", "2", "3", "1"]} +{"2003581": ["3", "3", "3", "2", "3", "3", "2"]} +{"7002084": ["3", "3", "3", "3", "2", "2", "2"]} +{"2004853": ["3", "3", "3", "2", "2", "3", "2"]} +{"1006038": ["2", "2", "3", "1", "2", "3", "1"]} +{"1005936": ["2", "2", "3", "3", "2", "3", "1"]} +{"4002166": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003203": ["2", "3", "3", "1", "2", "3", "1"]} +{"7004093": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004929": ["2", "3", "2", "3", "2", "3", "2"]} +{"1003386": ["2", "1", "3", "2", "2", "3", "1"]} +{"4004032": ["3", "2", "3", "3", "2", "3", "2"]} +{"2005339": ["2", "3", "3", "3", "3", "3", "3"]} +{"7004535": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005641": ["2", "2", "3", "3", "3", "3", "2"]} +{"8001010": ["1", "3", "1", "2", "1", "2", "1"]} +{"8003453": ["2", "2", "3", "3", "2", "3", "2"]} +{"1005772": ["2", "1", "3", "2", "2", "3", "1"]} +{"1006097": ["2", "2", "3", "1", "2", "3", "1"]} +{"0004367": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003587": ["2", "1", "3", "2", "3", "3", "1"]} +{"7003865": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005534": ["3", "3", "2", "2", "2", "3", "2"]} +{"2007187": ["1", "2", "3", "2", "2", "3", "1"]} +{"8001707": ["3", "2", "2", "3", "3", "3", "2"]} +{"7003637": ["2", "3", "3", "2", "2", "3", "2"]} +{"6003840": ["1", "3", "3", "1", "3", "3", "2"]} +{"6004925": ["2", "3", "3", "2", "3", "3", "2"]} +{"5001425": ["3", "3", "3", "3", "2", "2", "2"]} +{"8003782": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004471": ["3", "2", "3", "3", "2", "3", "2"]} +{"2003686": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004038": ["2", "2", "3", "2", "2", "3", "2"]} +{"3003878": ["2", "3", "3", "2", "2", "3", "2"]} +{"5001693": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004248": ["2", "1", "3", "1", "3", "3", "1"]} +{"1003401": ["2", "1", "3", "2", "3", "3", "1"]} +{"1003472": ["2", "1", "3", "2", "2", "3", "1"]} +{"2005820": ["3", "3", "2", "3", "2", "3", "3"]} +{"0003770": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004898": ["2", "2", "3", "2", "3", "3", "2"]} +{"0005058": ["3", "3", "1", "3", "2", "3", "2"]} +{"6003913": ["1", "1", "3", "1", "3", "3", "1"]} +{"3004602": ["3", "3", "2", "3", "3", "3", "2"]} +{"3006533": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003354": ["3", "3", "3", "2", "2", "2", "2"]} +{"0004770": ["2", "2", "3", "2", "1", "3", "1"]} +{"0005265": ["3", "3", "1", "3", "3", "3", "2"]} +{"1004528": ["3", "2", "3", "3", "2", "3", "2"]} +{"2007049": ["3", "3", "2", "3", "3", "3", "3"]} +{"1003395": ["2", "1", "3", "2", "3", "3", "2"]} +{"1003867": ["2", "2", "3", "3", "2", "3", "2"]} +{"4002533": ["3", "2", "3", "3", "2", "3", "2"]} +{"6003449": ["2", "3", "3", "3", "2", "3", "2"]} +{"4004187": ["3", "2", "3", "3", "3", "3", "2"]} +{"1003810": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001075": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001210": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003775": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003457": ["3", "3", "3", "3", "2", "3", "3"]} +{"2004477": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005058": ["3", "2", "3", "3", "3", "3", "2"]} +{"3006949": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006599": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006984": ["3", "2", "3", "3", "2", "3", "2"]} +{"1006334": ["2", "1", "3", "2", "3", "3", "2"]} +{"2003861": ["3", "3", "3", "2", "3", "3", "3"]} +{"4003787": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004715": ["3", "1", "2", "1", "1", "1", "1"]} +{"5001040": ["3", "3", "2", "2", "3", "3", "3"]} +{"8002827": ["2", "2", "3", "1", "3", "3", "2"]} +{"6004363": ["1", "1", "3", "1", "1", "2", "1"]} +{"1005830": ["3", "1", "2", "3", "3", "3", "1"]} +{"1005614": ["3", "2", "2", "3", "2", "3", "2"]} +{"4004894": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004374": ["2", "2", "2", "3", "2", "3", "2"]} +{"2006491": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002551": ["3", "3", "2", "2", "3", "2", "3"]} +{"4004756": ["3", "3", "3", "2", "3", "3", "3"]} +{"2005506": ["3", "3", "2", "3", "1", "3", "2"]} +{"0006109": ["3", "1", "2", "2", "2", "3", "2"]} +{"8003440": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006245": ["2", "1", "2", "2", "2", "3", "1"]} +{"8002896": ["2", "3", "2", "2", "3", "3", "3"]} +{"2003693": ["3", "3", "2", "2", "2", "2", "2"]} +{"0005332": ["3", "3", "2", "3", "2", "3", "3"]} +{"3006243": ["3", "3", "2", "3", "2", "3", "2"]} +{"6002868": ["2", "3", "2", "3", "2", "3", "2"]} +{"4003872": ["2", "1", "2", "3", "3", "3", "2"]} +{"7003858": ["2", "3", "2", "3", "2", "3", "2"]} +{"2006982": ["3", "3", "2", "3", "3", "3", "3"]} +{"2005715": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001209": ["1", "2", "2", "3", "1", "2", "1"]} +{"4004557": ["3", "2", "2", "3", "1", "3", "2"]} +{"3005100": ["2", "3", "2", "3", "2", "3", "2"]} +{"1006660": ["3", "2", "2", "1", "3", "3", "2"]} +{"2007251": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007968": ["2", "3", "2", "3", "3", "3", "3"]} +{"6002858": ["3", "2", "2", "1", "3", "3", "2"]} +{"2004830": ["2", "3", "2", "3", "2", "2", "2"]} +{"2005753": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003935": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006367": ["2", "3", "2", "3", "2", "3", "2"]} +{"2006495": ["3", "3", "2", "2", "3", "3", "2"]} +{"2006735": ["2", "3", "2", "3", "3", "3", "3"]} +{"5001928": ["3", "3", "2", "3", "3", "2", "3"]} +{"7002509": ["3", "2", "3", "2", "2", "3", "3"]} +{"6002388": ["2", "2", "3", "2", "1", "2", "1"]} +{"2007576": ["3", "2", "2", "3", "2", "3", "3"]} +{"0004234": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003429": ["1", "2", "2", "1", "2", "3", "1"]} +{"8003433": ["1", "2", "3", "1", "3", "2", "1"]} +{"2003922": ["2", "3", "2", "3", "3", "3", "3"]} +{"3006620": ["2", "3", "1", "3", "2", "3", "2"]} +{"1003701": ["1", "1", "2", "1", "2", "2", "1"]} +{"2006075": ["3", "3", "3", "3", "2", "3", "3"]} +{"1005454": ["3", "1", "2", "1", "3", "2", "1"]} +{"7002263": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004713": ["3", "3", "2", "3", "3", "3", "3"]} +{"0004513": ["3", "3", "1", "3", "2", "3", "2"]} +{"3006036": ["2", "3", "3", "3", "3", "2", "3"]} +{"1005338": ["3", "1", "3", "2", "1", "2", "1"]} +{"4002059": ["2", "3", "2", "2", "3", "3", "3"]} +{"4002007": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004779": ["2", "3", "2", "3", "3", "2", "2"]} +{"2005634": ["3", "3", "2", "3", "2", "3", "2"]} +{"4002042": ["2", "3", "2", "2", "2", "3", "2"]} +{"2003115": ["3", "3", "2", "3", "3", "1", "3"]} +{"1005915": ["3", "1", "2", "1", "1", "3", "1"]} +{"4002013": ["3", "2", "3", "3", "3", "3", "2"]} +{"0006181": ["3", "3", "3", "3", "1", "3", "2"]} +{"2007468": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004058": ["3", "2", "2", "3", "2", "3", "2"]} +{"1005621": ["3", "2", "2", "2", "3", "3", "2"]} +{"0004749": ["2", "3", "3", "3", "3", "2", "3"]} +{"6003765": ["3", "2", "3", "3", "1", "2", "1"]} +{"6002646": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003404": ["3", "1", "2", "1", "3", "3", "1"]} +{"2006327": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006885": ["3", "2", "3", "3", "1", "3", "1"]} +{"8003590": ["2", "2", "2", "2", "2", "3", "2"]} +{"3003316": ["2", "3", "2", "2", "1", "3", "1"]} +{"1006617": ["3", "1", "3", "3", "2", "3", "1"]} +{"0004973": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004298": ["3", "3", "1", "3", "3", "3", "1"]} +{"0003418": ["2", "3", "2", "3", "3", "3", "3"]} +{"4004727": ["3", "2", "3", "3", "2", "3", "2"]} +{"7002175": ["3", "3", "3", "3", "2", "3", "2"]} +{"7002990": ["3", "1", "3", "2", "3", "3", "1"]} +{"1003479": ["2", "1", "2", "2", "1", "3", "1"]} +{"3006096": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007186": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003752": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006267": ["3", "3", "2", "3", "1", "2", "1"]} +{"3004348": ["1", "3", "2", "2", "3", "3", "1"]} +{"4002982": ["3", "1", "3", "1", "3", "3", "1"]} +{"0005164": ["3", "3", "2", "3", "3", "3", "3"]} +{"1006353": ["3", "2", "3", "1", "2", "3", "1"]} +{"2005796": ["2", "3", "2", "3", "3", "2", "3"]} +{"2003324": ["3", "3", "2", "3", "1", "1", "2"]} +{"4003498": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006098": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001936": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004760": ["2", "2", "3", "1", "2", "3", "2"]} +{"4002708": ["3", "2", "3", "2", "2", "3", "2"]} +{"0004550": ["3", "3", "2", "3", "3", "3", "3"]} +{"3004442": ["2", "3", "3", "3", "2", "3", "3"]} +{"3004524": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005213": ["2", "2", "3", "3", "1", "3", "2"]} +{"8001508": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004945": ["3", "2", "3", "1", "2", "3", "1"]} +{"8001037": ["1", "3", "3", "2", "2", "2", "2"]} +{"4002698": ["2", "3", "2", "3", "3", "3", "3"]} +{"0004352": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006154": ["3", "3", "2", "3", "1", "3", "1"]} +{"3003375": ["2", "3", "2", "3", "1", "3", "1"]} +{"7003321": ["3", "2", "3", "1", "1", "1", "1"]} +{"0004538": ["3", "3", "2", "3", "2", "3", "1"]} +{"0004538": ["3", "3", "1", "3", "2", "3", "1"]} +{"7002342": ["3", "3", "1", "3", "3", "3", "3"]} +{"0004536": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002933": ["3", "3", "2", "3", "3", "3", "2"]} +{"0003569": ["3", "3", "2", "3", "3", "3", "2"]} +{"4002677": ["2", "1", "3", "3", "2", "3", "1"]} +{"4004954": ["2", "3", "2", "3", "1", "2", "1"]} +{"2005230": ["3", "3", "2", "3", "2", "3", "3"]} +{"6004747": ["2", "1", "2", "2", "3", "3", "1"]} +{"4004506": ["3", "3", "2", "3", "1", "3", "2"]} +{"7002652": ["3", "3", "2", "3", "3", "3", "3"]} +{"0006586": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005273": ["3", "3", "1", "3", "2", "3", "3"]} +{"5001922": ["3", "3", "1", "3", "3", "3", "2"]} +{"2003332": ["3", "3", "2", "3", "3", "3", "3"]} +{"8001681": ["3", "2", "3", "3", "2", "3", "2"]} +{"2006040": ["3", "3", "2", "3", "3", "2", "2"]} +{"0003917": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002151": ["3", "1", "3", "2", "3", "3", "1"]} +{"5001255": ["3", "3", "1", "3", "2", "3", "2"]} +{"2003581": ["3", "3", "2", "2", "3", "3", "2"]} +{"2004853": ["3", "3", "2", "2", "2", "3", "2"]} +{"7004093": ["2", "3", "3", "3", "2", "3", "3"]} +{"7004535": ["2", "2", "2", "2", "3", "3", "2"]} +{"8003453": ["1", "2", "3", "3", "2", "3", "2"]} +{"0004367": ["3", "3", "2", "3", "2", "3", "2"]} +{"3005534": ["3", "3", "1", "2", "2", "3", "2"]} +{"8001707": ["2", "2", "1", "3", "3", "3", "2"]} +{"7003637": ["2", "3", "2", "2", "2", "3", "2"]} +{"6003840": ["1", "3", "2", "1", "3", "3", "2"]} +{"6004925": ["1", "3", "3", "2", "3", "3", "2"]} +{"5001425": ["3", "3", "2", "3", "2", "2", "2"]} +{"3004038": ["2", "2", "2", "2", "2", "3", "2"]} +{"3004602": ["2", "3", "2", "3", "3", "3", "2"]} +{"3006533": ["2", "3", "3", "3", "3", "3", "3"]} +{"1003867": ["3", "2", "3", "3", "2", "3", "2"]} +{"7004710": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001464": ["2", "3", "3", "3", "1", "2", "1"]} +{"3003491": ["2", "3", "3", "3", "1", "3", "1"]} +{"3003360": ["2", "3", "3", "3", "3", "3", "2"]} +{"0004464": ["2", "3", "2", "3", "2", "3", "2"]} +{"8002647": ["1", "2", "3", "2", "3", "3", "2"]} +{"8002247": ["2", "3", "3", "3", "3", "3", "3"]} +{"2004105": ["3", "2", "3", "3", "3", "2", "2"]} +{"3004950": ["2", "3", "3", "3", "1", "3", "1"]} +{"2003254": ["3", "3", "1", "3", "3", "3", "2"]} +{"2003555": ["2", "3", "2", "3", "3", "3", "2"]} +{"8001276": ["2", "3", "2", "3", "1", "3", "1"]} +{"7004380": ["3", "3", "1", "3", "3", "3", "3"]} +{"4002255": ["2", "2", "2", "3", "2", "3", "2"]} +{"6003192": ["2", "3", "2", "3", "3", "3", "2"]} +{"1005543": ["3", "2", "3", "3", "2", "3", "2"]} +{"3006356": ["2", "3", "3", "3", "2", "3", "2"]} +{"3006715": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002847": ["2", "3", "3", "2", "3", "3", "3"]} +{"8003680": ["2", "2", "3", "3", "3", "3", "2"]} +{"3003508": ["1", "2", "3", "2", "2", "3", "1"]} +{"6004937": ["2", "3", "1", "3", "2", "3", "2"]} +{"1006979": ["3", "1", "3", "2", "3", "3", "2"]} +{"2007709": ["3", "3", "2", "3", "3", "3", "2"]} +{"6002488": ["2", "3", "3", "3", "2", "3", "2"]} +{"4002795": ["2", "3", "3", "2", "2", "3", "2"]} +{"2007779": ["3", "3", "3", "3", "3", "2", "2"]} +{"0003185": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003417": ["1", "2", "3", "2", "3", "3", "2"]} +{"8003417": ["1", "2", "3", "2", "3", "3", "1"]} +{"1004944": ["2", "2", "3", "2", "2", "3", "2"]} +{"4002463": ["3", "2", "1", "3", "2", "3", "1"]} +{"1003508": ["3", "1", "3", "2", "1", "3", "1"]} +{"1005445": ["3", "1", "3", "3", "3", "3", "1"]} +{"3003025": ["2", "3", "3", "3", "3", "3", "2"]} +{"3004944": ["2", "3", "3", "3", "2", "3", "2"]} +{"0006522": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006999": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002913": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002913": ["1", "2", "3", "2", "2", "3", "1"]} +{"6002603": ["2", "3", "2", "3", "3", "3", "2"]} +{"7003813": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007711": ["3", "3", "2", "3", "None", "None", "None"]} +{"2007711": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006251": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003893": ["2", "3", "2", "3", "3", "3", "3"]} +{"4002939": ["3", "3", "2", "3", "3", "3", "2"]} +{"1003816": ["3", "1", "3", "2", "3", "3", "1"]} +{"2007264": ["3", "2", "3", "3", "3", "2", "2"]} +{"7004404": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003379": ["2", "3", "3", "3", "3", "3", "2"]} +{"0003686": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007042": ["2", "3", "3", "3", "3", "3", "3"]} +{"1004649": ["1", "3", "3", "2", "3", "3", "2"]} +{"2004223": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002508": ["1", "1", "3", "2", "1", "3", "1"]} +{"5001189": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002981": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003234": ["2", "3", "3", "3", "1", "2", "1"]} +{"8003897": ["2", "3", "3", "2", "2", "3", "2"]} +{"2005954": ["3", "2", "3", "3", "2", "2", "2"]} +{"0005338": ["3", "3", "2", "3", "2", "3", "3"]} +{"0005552": ["3", "2", "3", "3", "2", "3", "2"]} +{"0006399": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004788": ["2", "3", "3", "3", "3", "3", "2"]} +{"6002687": ["1", "1", "3", "2", "2", "3", "1"]} +{"3006338": ["2", "3", "1", "1", "2", "3", "1"]} +{"5001209": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004095": ["2", "1", "3", "2", "3", "3", "1"]} +{"1005557": ["3", "1", "3", "2", "3", "3", "2"]} +{"2006673": ["2", "3", "3", "3", "3", "3", "2"]} +{"0006714": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003537": ["3", "2", "3", "2", "3", "3", "2"]} +{"3006945": ["3", "3", "3", "2", "2", "3", "2"]} +{"2004147": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006810": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002079": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003101": ["1", "2", "2", "3", "1", "2", "1"]} +{"3005070": ["3", "2", "3", "3", "3", "3", "3"]} +{"6004162": ["1", "3", "2", "3", "3", "3", "2"]} +{"1006358": ["2", "1", "3", "2", "3", "2", "1"]} +{"0005223": ["2", "3", "3", "3", "1", "3", "1"]} +{"2006467": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004017": ["2", "2", "3", "3", "3", "2", "2"]} +{"0003492": ["3", "3", "3", "3", "2", "3", "3"]} +{"3006986": ["2", "3", "2", "3", "3", "3", "2"]} +{"4003387": ["2", "3", "2", "3", "2", "3", "2"]} +{"8003113": ["1", "1", "3", "2", "3", "2", "1"]} +{"1003932": ["3", "2", "3", "2", "3", "3", "2"]} +{"8002264": ["2", "2", "3", "3", "2", "3", "2"]} +{"8002130": ["1", "2", "3", "2", "2", "3", "1"]} +{"4002049": ["3", "1", "3", "3", "3", "3", "1"]} +{"7004749": ["3", "2", "3", "3", "3", "3", "2"]} +{"5001832": ["3", "2", "2", "3", "3", "3", "2"]} +{"0006056": ["3", "3", "2", "3", "3", "3", "2"]} +{"1003953": ["3", "2", "3", "3", "2", "3", "2"]} +{"3006835": ["2", "2", "2", "3", "3", "3", "2"]} +{"8002994": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004467": ["3", "2", "2", "3", "3", "3", "2"]} +{"2004104": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002830": ["3", "2", "2", "3", "3", "3", "3"]} +{"3003748": ["2", "3", "3", "3", "2", "2", "2"]} +{"7003312": ["2", "3", "3", "3", "3", "2", "2"]} +{"0003117": ["3", "3", "2", "3", "3", "3", "2"]} +{"3005354": ["2", "3", "3", "3", "3", "3", "2"]} +{"2007253": ["2", "2", "3", "3", "2", "3", "2"]} +{"3003593": ["2", "3", "3", "3", "3", "3", "3"]} +{"8003062": ["2", "3", "3", "1", "2", "3", "2"]} +{"7003027": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001590": ["3", "3", "3", "3", "2", "3", "2"]} +{"3005904": ["2", "2", "3", "3", "2", "3", "2"]} +{"3003421": ["2", "3", "3", "3", "2", "3", "2"]} +{"2007585": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005078": ["1", "1", "3", "2", "2", "3", "1"]} +{"4003895": ["2", "2", "3", "3", "2", "3", "2"]} +{"1003283": ["3", "2", "3", "3", "2", "3", "2"]} +{"6004809": ["2", "3", "2", "3", "3", "3", "2"]} +{"5001440": ["3", "3", "2", "3", "2", "3", "2"]} +{"3003777": ["2", "3", "2", "3", "3", "3", "2"]} +{"8002822": ["2", "3", "2", "3", "1", "3", "1"]} +{"2005293": ["3", "3", "2", "3", "2", "3", "2"]} +{"3003657": ["2", "3", "3", "3", "2", "3", "2"]} +{"8003909": ["1", "3", "3", "3", "3", "3", "2"]} +{"2007952": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004580": ["2", "2", "3", "2", "2", "3", "2"]} +{"1004580": ["2", "1", "3", "2", "2", "3", "1"]} +{"3003035": ["2", "3", "2", "3", "3", "3", "2"]} +{"7003497": ["3", "3", "2", "3", "3", "3", "2"]} +{"0006929": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003252": ["2", "2", "3", "3", "3", "3", "2"]} +{"1006595": ["3", "2", "3", "2", "3", "3", "2"]} +{"1005494": ["2", "1", "3", "2", "2", "None", "1"]} +{"0005847": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004124": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004473": ["2", "2", "1", "3", "1", "3", "1"]} +{"2007530": ["3", "3", "2", "3", "3", "3", "2"]} +{"1003797": ["3", "2", "3", "3", "3", "3", "2"]} +{"4002497": ["3", "3", "1", "3", "2", "3", "2"]} +{"8002256": ["2", "3", "3", "2", "3", "2", "1"]} +{"8001003": ["1", "2", "3", "2", "2", "3", "1"]} +{"3004287": ["2", "3", "2", "3", "3", "3", "2"]} +{"3004365": ["2", "2", "3", "2", "2", "3", "1"]} +{"3005996": ["3", "3", "1", "3", "2", "3", "1"]} +{"0003284": ["3", "3", "1", "3", "3", "3", "2"]} +{"6002873": ["2", "1", "3", "2", "2", "3", "1"]} +{"1005494": ["2", "1", "3", "2", "2", "2", "1"]} +{"2005016": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004412": ["2", "1", "3", "1", "3", "3", "1"]} +{"4003203": ["2", "3", "3", "2", "2", "3", "2"]} +{"6004389": ["2", "3", "3", "3", "3", "3", "2"]} +{"7004289": ["3", "2", "3", "3", "3", "3", "3"]} +{"2006126": ["3", "2", "3", "3", "3", "2", "2"]} +{"1006591": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005036": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003205": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001654": ["3", "3", "1", "3", "2", "3", "2"]} +{"1004230": ["2", "1", "3", "2", "3", "3", "1"]} +{"1003700": ["3", "2", "3", "2", "2", "3", "2"]} +{"0004207": ["3", "3", "2", "3", "2", "3", "2"]} +{"2007340": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006587": ["2", "2", "3", "2", "3", "3", "2"]} +{"7002561": ["3", "2", "3", "3", "3", "2", "2"]} +{"1003098": ["3", "1", "3", "2", "3", "3", "2"]} +{"7003445": ["3", "3", "3", "2", "2", "3", "2"]} +{"1004170": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006911": ["2", "2", "3", "3", "2", "3", "2"]} +{"3005190": ["2", "2", "3", "3", "3", "3", "2"]} +{"2006890": ["2", "3", "1", "3", "3", "3", "2"]} +{"4002856": ["3", "3", "2", "3", "2", "3", "3"]} +{"7004340": ["2", "3", "3", "2", "3", "3", "3"]} +{"3005102": ["2", "3", "3", "3", "2", "3", "2"]} +{"3004323": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004884": ["3", "3", "2", "2", "3", "3", "2"]} +{"7004847": ["2", "3", "3", "2", "3", "2", "2"]} +{"3006359": ["2", "3", "3", "3", "3", "3", "3"]} +{"1006723": ["2", "1", "3", "3", "2", "3", "1"]} +{"3004703": ["1", "1", "2", "2", "2", "3", "1"]} +{"5001014": ["2", "2", "3", "3", "2", "3", "2"]} +{"3003157": ["3", "3", "3", "3", "2", "3", "3"]} +{"8001669": ["2", "3", "3", "3", "3", "2", "2"]} +{"0005321": ["3", "3", "2", "3", "3", "3", "2"]} +{"1005146": ["3", "1", "3", "2", "2", "3", "1"]} +{"7004918": ["3", "3", "3", "3", "3", "2", "2"]} +{"7004757": ["3", "2", "2", "2", "3", "3", "2"]} +{"7003508": ["2", "3", "3", "3", "3", "2", "3"]} +{"1003578": ["3", "1", "3", "2", "3", "3", "2"]} +{"5001552": ["3", "3", "2", "3", "3", "3", "2"]} +{"3003233": ["2", "3", "3", "3", "2", "3", "2"]} +{"1003054": ["2", "2", "3", "2", "3", "3", "2"]} +{"2005140": ["3", "2", "3", "3", "3", "3", "2"]} +{"3005236": ["2", "3", "2", "3", "2", "3", "2"]} +{"4002737": ["2", "3", "3", "3", "3", "2", "2"]} +{"8003789": ["2", "3", "3", "2", "2", "3", "2"]} +{"3004005": ["2", "2", "2", "3", "2", "3", "2"]} +{"2007717": ["3", "3", "2", "3", "3", "2", "2"]} +{"6003092": ["2", "2", "2", "3", "3", "3", "2"]} +{"1003601": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002137": ["2", "3", "2", "2", "2", "3", "2"]} +{"0003147": ["2", "3", "1", "3", "2", "3", "1"]} +{"6004765": ["2", "3", "3", "2", "3", "3", "2"]} +{"8002610": ["2", "3", "3", "2", "1", "3", "1"]} +{"6002070": ["1", "2", "3", "2", "1", "2", "1"]} +{"6003792": ["2", "3", "2", "2", "2", "3", "2"]} +{"3003730": ["2", "3", "2", "3", "3", "3", "2"]} +{"6002911": ["2", "2", "3", "3", "3", "3", "2"]} +{"4002037": ["2", "3", "1", "3", "1", "3", "1"]} +{"2004684": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007105": ["2", "3", "2", "3", "3", "3", "2"]} +{"0005773": ["2", "2", "3", "3", "3", "3", "2"]} +{"1003193": ["3", "2", "3", "2", "3", "3", "2"]} +{"7004952": ["3", "2", "3", "3", "3", "3", "2"]} +{"3004132": ["1", "2", "3", "2", "2", "3", "1"]} +{"0005483": ["3", "3", "1", "3", "2", "3", "1"]} +{"6003337": ["2", "2", "3", "2", "2", "3", "2"]} +{"8003400": ["2", "3", "3", "3", "1", "2", "1"]} +{"6003715": ["2", "3", "3", "2", "2", "3", "2"]} +{"8002063": ["2", "2", "3", "2", "3", "3", "2"]} +{"2007084": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003064": ["3", "3", "1", "3", "3", "3", "2"]} +{"3004396": ["2", "2", "2", "3", "3", "3", "2"]} +{"2006955": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003469": ["2", "3", "2", "3", "3", "3", "2"]} +{"4003326": ["2", "3", "2", "2", "2", "2", "1"]} +{"1005368": ["3", "2", "3", "2", "3", "3", "1"]} +{"1005047": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005980": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004876": ["3", "1", "3", "2", "1", "3", "1"]} +{"0003635": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005497": ["2", "2", "3", "2", "2", "3", "2"]} +{"4002347": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005278": ["2", "3", "2", "3", "3", "3", "2"]} +{"4004319": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005666": ["2", "1", "3", "2", "3", "3", "1"]} +{"4002776": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005417": ["2", "2", "3", "3", "3", "3", "2"]} +{"0005905": ["3", "2", "2", "2", "2", "3", "2"]} +{"3004767": ["2", "3", "2", "2", "3", "3", "2"]} +{"1003644": ["2", "2", "3", "2", "3", "3", "2"]} +{"3005749": ["2", "3", "2", "3", "2", "3", "2"]} +{"4003054": ["2", "2", "3", "3", "3", "2", "2"]} +{"2007383": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002799": ["2", "3", "3", "3", "3", "3", "3"]} +{"6003005": ["2", "2", "3", "3", "2", "3", "2"]} +{"3003003": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007130": ["3", "3", "2", "2", "3", "3", "2"]} +{"2005357": ["3", "3", "1", "3", "3", "3", "3"]} +{"6004052": ["2", "3", "3", "2", "2", "3", "2"]} +{"4003016": ["3", "3", "1", "3", "3", "3", "2"]} +{"6003647": ["2", "2", "1", "3", "2", "3", "1"]} +{"3004943": ["2", "3", "2", "3", "3", "3", "2"]} +{"6004118": ["2", "2", "3", "3", "2", "3", "1"]} +{"0004422": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003128": ["3", "2", "3", "3", "3", "3", "1"]} +{"1003605": ["3", "2", "3", "3", "2", "3", "1"]} +{"7004610": ["3", "3", "2", "2", "3", "3", "2"]} +{"4004211": ["3", "3", "3", "2", "3", "3", "3"]} +{"7004730": ["3", "2", "2", "2", "3", "3", "2"]} +{"1005394": ["2", "2", "2", "3", "3", "3", "2"]} +{"3004749": ["2", "1", "3", "3", "3", "3", "2"]} +{"7002001": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003734": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004088": ["2", "3", "3", "3", "3", "3", "3"]} +{"5001195": ["3", "3", "1", "3", "2", "3", "2"]} +{"4003865": ["2", "2", "2", "3", "2", "3", "1"]} +{"1006282": ["3", "2", "2", "2", "3", "3", "1"]} +{"1003014": ["2", "2", "3", "2", "1", "3", "1"]} +{"1005228": ["3", "1", "3", "2", "3", "3", "1"]} +{"2005240": ["3", "3", "2", "2", "2", "3", "2"]} +{"8002478": ["1", "2", "3", "1", "2", "2", "1"]} +{"3003734": ["2", "2", "3", "2", "3", "3", "2"]} +{"3004958": ["2", "3", "2", "3", "3", "3", "3"]} +{"6002420": ["2", "3", "2", "3", "3", "3", "2"]} +{"3006302": ["2", "3", "1", "3", "1", "3", "1"]} +{"6004330": ["2", "2", "3", "2", "3", "3", "1"]} +{"1006546": ["3", "2", "3", "2", "2", "3", "2"]} +{"7003288": ["3", "3", "2", "3", "3", "3", "3"]} +{"3003276": ["2", "3", "3", "3", "3", "3", "2"]} +{"7003215": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004633": ["3", "2", "2", "3", "3", "3", "3"]} +{"3005245": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003866": ["3", "2", "3", "2", "3", "3", "2"]} +{"7004608": ["3", "3", "2", "3", "3", "3", "3"]} +{"6004016": ["1", "2", "3", "2", "3", "3", "1"]} +{"2006047": ["2", "3", "3", "2", "3", "2", "2"]} +{"6003468": ["1", "2", "2", "2", "3", "3", "1"]} +{"2005092": ["3", "3", "3", "3", "2", "3", "3"]} +{"7002390": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005678": ["2", "3", "3", "3", "2", "3", "2"]} +{"4002706": ["3", "3", "2", "3", "2", "3", "2"]} +{"2003352": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003976": ["2", "1", "3", "2", "3", "3", "1"]} +{"4004176": ["2", "1", "3", "3", "2", "3", "2"]} +{"8002037": ["2", "3", "3", "2", "2", "3", "1"]} +{"6002144": ["2", "1", "3", "1", "2", "2", "1"]} +{"7004310": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004634": ["2", "3", "3", "3", "2", "3", "2"]} +{"0003075": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003923": ["2", "1", "3", "3", "2", "2", "2"]} +{"7004820": ["2", "2", "2", "3", "2", "3", "2"]} +{"1006483": ["3", "2", "2", "3", "2", "3", "2"]} +{"7003178": ["2", "2", "3", "2", "1", "3", "1"]} +{"2007429": ["3", "2", "1", "3", "3", "3", "2"]} +{"3003540": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003514": ["2", "3", "2", "3", "3", "3", "2"]} +{"3003958": ["2", "3", "3", "3", "3", "3", "3"]} +{"3005029": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003847": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003913": ["2", "2", "3", "2", "2", "3", "1"]} +{"8003198": ["2", "2", "3", "1", "3", "3", "1"]} +{"6004061": ["2", "2", "3", "2", "2", "3", "1"]} +{"1004109": ["3", "2", "3", "2", "2", "3", "2"]} +{"8002932": ["2", "3", "2", "3", "2", "3", "2"]} +{"6003120": ["1", "2", "2", "1", "1", "2", "1"]} +{"0004488": ["2", "3", "2", "3", "2", "3", "2"]} +{"0005651": ["3", "3", "2", "3", "2", "3", "3"]} +{"8001084": ["2", "3", "2", "2", "3", "3", "3"]} +{"8003757": ["2", "1", "3", "2", "2", "3", "1"]} +{"1005616": ["3", "1", "3", "3", "1", "3", "1"]} +{"8002483": ["2", "3", "2", "3", "2", "2", "1"]} +{"1004208": ["2", "1", "2", "2", "3", "3", "2"]} +{"7002268": ["2", "3", "2", "3", "2", "3", "2"]} +{"2004523": ["3", "3", "3", "3", "2", "3", "3"]} +{"4002993": ["3", "3", "2", "3", "2", "3", "3"]} +{"8003803": ["1", "2", "3", "2", "1", "2", "1"]} +{"3004047": ["2", "2", "3", "3", "1", "3", "1"]} +{"6004964": ["2", "2", "3", "2", "2", "3", "2"]} +{"2006723": ["3", "2", "3", "3", "3", "3", "3"]} +{"4004581": ["3", "2", "2", "3", "2", "3", "2"]} +{"7002077": ["2", "2", "3", "3", "3", "3", "2"]} +{"0003089": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003517": ["2", "2", "3", "2", "2", "2", "1"]} +{"0006965": ["3", "2", "2", "3", "2", "3", "2"]} +{"0006981": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002326": ["2", "2", "3", "3", "3", "3", "2"]} +{"2007955": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004135": ["3", "3", "2", "3", "2", "3", "3"]} +{"4004316": ["2", "3", "2", "3", "3", "3", "3"]} +{"2005483": ["3", "3", "3", "2", "3", "2", "2"]} +{"2005266": ["2", "3", "3", "3", "3", "3", "3"]} +{"0006677": ["3", "3", "2", "3", "2", "3", "2"]} +{"0005213": ["2", "3", "2", "2", "2", "3", "2"]} +{"6004671": ["1", "2", "3", "1", "2", "2", "1"]} +{"7003486": ["2", "1", "3", "2", "3", "3", "2"]} +{"1006194": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005324": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004677": ["3", "3", "3", "3", "3", "2", "3"]} +{"4003984": ["2", "3", "2", "3", "3", "3", "2"]} +{"4003293": ["3", "2", "2", "2", "2", "3", "2"]} +{"3005585": ["2", "3", "2", "2", "3", "3", "2"]} +{"7004800": ["2", "3", "2", "2", "3", "3", "2"]} +{"7003009": ["2", "2", "3", "3", "1", "3", "2"]} +{"3006906": ["2", "2", "3", "2", "3", "3", "2"]} +{"2006056": ["2", "3", "2", "3", "3", "3", "3"]} +{"6002999": ["1", "1", "3", "2", "2", "2", "1"]} +{"1006776": ["3", "1", "2", "2", "3", "3", "1"]} +{"6002109": ["2", "2", "2", "2", "3", "3", "1"]} +{"6004111": ["2", "2", "3", "1", "3", "3", "1"]} +{"2005041": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005330": ["3", "2", "3", "3", "3", "2", "2"]} +{"4004354": ["2", "3", "3", "3", "3", "3", "2"]} +{"6004031": ["2", "1", "3", "3", "3", "3", "2"]} +{"6003238": ["2", "2", "3", "2", "3", "3", "1"]} +{"2003236": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003763": ["2", "3", "2", "3", "2", "3", "2"]} +{"4002577": ["2", "1", "2", "3", "3", "3", "2"]} +{"6003902": ["1", "2", "3", "2", "1", "2", "1"]} +{"0004376": ["3", "3", "1", "3", "3", "3", "3"]} +{"0005255": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003611": ["2", "3", "1", "3", "2", "3", "2"]} +{"6003205": ["2", "2", "3", "3", "1", "2", "1"]} +{"0004617": ["3", "3", "3", "3", "1", "3", "2"]} +{"8003159": ["1", "2", "3", "2", "1", "3", "1"]} +{"1005138": ["2", "1", "3", "2", "3", "3", "2"]} +{"1005194": ["3", "1", "3", "1", "2", "3", "2"]} +{"4004997": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004564": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003386": ["3", "3", "2", "3", "3", "3", "3"]} +{"6003636": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001329": ["2", "3", "3", "3", "3", "3", "3"]} +{"3003208": ["2", "2", "3", "2", "2", "3", "2"]} +{"0006954": ["3", "3", "1", "3", "2", "3", "2"]} +{"7003293": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005085": ["2", "2", "3", "2", "3", "3", "2"]} +{"7002931": ["3", "3", "1", "3", "2", "3", "3"]} +{"8001816": ["2", "1", "3", "2", "3", "3", "1"]} +{"3006445": ["2", "3", "1", "3", "1", "3", "1"]} +{"0006764": ["2", "3", "2", "3", "2", "3", "2"]} +{"7003249": ["3", "3", "3", "3", "1", "3", "1"]} +{"8002489": ["1", "1", "3", "2", "3", "3", "1"]} +{"3004266": ["1", "1", "3", "3", "3", "3", "1"]} +{"6003744": ["2", "2", "3", "3", "2", "3", "2"]} +{"0006984": ["1", "3", "3", "2", "3", "3", "2"]} +{"0005721": ["3", "3", "1", "3", "3", "3", "2"]} +{"1004717": ["3", "1", "3", "1", "3", "3", "2"]} +{"3003718": ["2", "3", "2", "3", "2", "3", "2"]} +{"8001615": ["2", "2", "2", "3", "3", "3", "2"]} +{"3006583": ["3", "3", "2", "3", "2", "3", "3"]} +{"8002891": ["2", "3", "3", "2", "1", "3", "1"]} +{"2003533": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004516": ["2", "3", "2", "3", "3", "3", "3"]} +{"0006948": ["2", "3", "3", "3", "2", "3", "3"]} +{"4004541": ["3", "2", "2", "2", "3", "3", "2"]} +{"3006990": ["2", "3", "2", "3", "3", "3", "2"]} +{"3006887": ["3", "3", "2", "3", "2", "3", "2"]} +{"7004596": ["3", "3", "2", "3", "2", "3", "2"]} +{"4003014": ["2", "2", "3", "3", "3", "3", "2"]} +{"0005545": ["2", "2", "2", "3", "3", "3", "2"]} +{"8003123": ["2", "2", "3", "3", "2", "2", "1"]} +{"1005978": ["3", "1", "3", "2", "2", "3", "2"]} +{"2004345": ["2", "3", "2", "3", "2", "3", "2"]} +{"3003310": ["2", "3", "2", "3", "3", "3", "2"]} +{"3003401": ["2", "3", "3", "3", "2", "3", "2"]} +{"1004271": ["2", "1", "3", "2", "2", "3", "1"]} +{"5001402": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004059": ["2", "3", "3", "2", "3", "3", "3"]} +{"2003813": ["2", "3", "2", "3", "3", "3", "2"]} +{"0004621": ["3", "3", "1", "3", "1", "3", "1"]} +{"7002265": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003312": ["1", "2", "3", "3", "1", "3", "1"]} +{"8001195": ["1", "2", "3", "3", "1", "1", "1"]} +{"0006672": ["3", "2", "3", "3", "2", "3", "2"]} +{"1006066": ["3", "1", "3", "2", "3", "3", "2"]} +{"3005484": ["2", "3", "1", "3", "2", "3", "2"]} +{"4003437": ["2", "3", "3", "3", "3", "3", "2"]} +{"1005091": ["3", "1", "3", "2", "2", "3", "2"]} +{"6002885": ["2", "2", "3", "2", "3", "3", "2"]} +{"5001004": ["3", "2", "3", "2", "2", "3", "2"]} +{"0003655": ["2", "3", "2", "3", "3", "3", "2"]} +{"6004242": ["1", "3", "1", "3", "2", "3", "1"]} +{"5001473": ["3", "3", "1", "3", "2", "3", "1"]} +{"1005582": ["3", "2", "2", "2", "3", "3", "2"]} +{"8001916": ["2", "2", "3", "2", "2", "3", "1"]} +{"6002028": ["2", "1", "3", "1", "2", "3", "1"]} +{"7003252": ["2", "3", "2", "3", "3", "3", "2"]} +{"6003123": ["1", "2", "3", "1", "2", "3", "1"]} +{"7003879": ["2", "2", "3", "2", "1", "2", "1"]} +{"2006704": ["3", "3", "2", "3", "3", "3", "3"]} +{"7003263": ["3", "3", "3", "3", "1", "3", "3"]} +{"1005275": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005538": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004550": ["2", "3", "3", "3", "3", "2", "2"]} +{"7002951": ["2", "3", "3", "3", "2", "3", "1"]} +{"1005288": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005518": ["2", "3", "1", "3", "1", "3", "1"]} +{"7003577": ["2", "3", "2", "3", "3", "3", "2"]} +{"7002141": ["3", "2", "3", "3", "2", "3", "2"]} +{"6002022": ["1", "1", "2", "2", "2", "3", "1"]} +{"8002198": ["2", "2", "2", "2", "2", "3", "1"]} +{"7003628": ["2", "2", "3", "3", "3", "3", "2"]} +{"8002847": ["2", "3", "3", "2", "3", "3", "2"]} +{"8002926": ["1", "2", "3", "2", "1", "3", "1"]} +{"8003329": ["2", "2", "3", "2", "1", "3", "1"]} +{"7004620": ["2", "2", "3", "2", "2", "3", "2"]} +{"5001733": ["3", "3", "2", "3", "2", "3", "3"]} +{"2007555": ["3", "2", "3", "3", "2", "3", "2"]} +{"2004530": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004977": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004956": ["2", "3", "1", "3", "2", "3", "2"]} +{"8002074": ["1", "1", "3", "2", "2", "3", "1"]} +{"4002920": ["2", "2", "3", "2", "2", "3", "2"]} +{"4003124": ["3", "2", "3", "2", "3", "3", "2"]} +{"1006322": ["3", "1", "3", "2", "3", "3", "2"]} +{"2004341": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007427": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004254": ["2", "1", "3", "2", "3", "3", "2"]} +{"8001409": ["3", "2", "2", "2", "2", "3", "1"]} diff --git a/webpage/res/res_rd1_16k/ans_ziyan.jsonl b/webpage/res/res_rd1_16k/ans_ziyan.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..72f71c6feb95acdb114e7037ec7399aa37f38f1a --- /dev/null +++ b/webpage/res/res_rd1_16k/ans_ziyan.jsonl @@ -0,0 +1,1034 @@ +{"2006403": ["2", "2", "3", "3", "3", "3", "3"]} +{"0003097": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002180": ["1", "2", "3", "2", "3", "3", "1"]} +{"0004524": ["3", "3", "1", "3", "3", "3", "2"]} +{"6004565": ["1", "1", "3", "1", "3", "1", "1"]} +{"1005345": ["2", "2", "3", "2", "3", "3", "2"]} +{"0004410": ["3", "3", "3", "2", "3", "2", "2"]} +{"2006632": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004819": ["3", "3", "3", "2", "1", "3", "2"]} +{"8003451": ["3", "3", "3", "3", "1", "3", "1"]} +{"1004420": ["2", "2", "3", "2", "2", "3", "2"]} +{"2003387": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004057": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004835": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002768": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002290": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002098": ["3", "2", "3", "2", "2", "3", "2"]} +{"5001234": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003175": ["3", "2", "3", "2", "1", "2", "2"]} +{"3005894": ["1", "2", "3", "2", "2", "3", "1"]} +{"1006418": ["3", "2", "3", "2", "3", "3", "2"]} +{"6004405": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006723": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004476": ["3", "3", "1", "3", "3", "3", "2"]} +{"3003776": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006562": ["2", "2", "3", "3", "2", "3", "2"]} +{"3006590": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002649": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003692": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002562": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003268": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004848": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002354": ["2", "3", "3", "3", "3", "3", "2"]} +{"5001509": ["2", "2", "3", "3", "3", "2", "2"]} +{"2004486": ["3", "3", "2", "3", "3", "3", "3"]} +{"2006394": ["2", "2", "3", "2", "2", "3", "2"]} +{"0004984": ["3", "3", "3", "3", "2", "3", "3"]} +{"4004627": ["3", "3", "3", "3", "1", "3", "1"]} +{"4004736": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001263": ["2", "2", "3", "1", "2", "2", "2"]} +{"3006515": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006543": ["3", "3", "3", "2", "3", "2", "2"]} +{"2003300": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003135": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006602": ["2", "2", "3", "2", "3", "3", "3"]} +{"2006403": ["2", "3", "3", "3", "3", "3", "3"]} +{"6002180": ["1", "2", "3", "2", "1", "3", "1"]} +{"0004524": ["3", "3", "1", "3", "3", "3", "2"]} +{"6004565": ["1", "1", "3", "1", "3", "3", "1"]} +{"1005345": ["3", "2", "3", "1", "3", "3", "2"]} +{"0004410": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006632": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004420": ["3", "1", "3", "1", "2", "3", "2"]} +{"1004835": ["2", "1", "2", "1", "1", "2", "1"]} +{"4002098": ["2", "2", "3", "2", "2", "3", "2"]} +{"6003175": ["3", "2", "3", "2", "2", "2", "2"]} +{"3005894": ["1", "2", "3", "1", "3", "3", "1"]} +{"1003047": ["2", "1", "3", "1", "3", "3", "2"]} +{"6004554": ["2", "2", "3", "2", "3", "3", "2"]} +{"6003595": ["1", "1", "3", "1", "3", "3", "1"]} +{"0006936": ["3", "3", "2", "3", "3", "3", "3"]} +{"2007587": ["3", "3", "3", "3", "2", "3", "3"]} +{"1003933": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002090": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005191": ["2", "3", "2", "3", "3", "3", "2"]} +{"7003251": ["2", "3", "2", "3", "1", "2", "1"]} +{"1006566": ["3", "2", "3", "2", "1", "3", "2"]} +{"6003373": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005890": ["2", "3", "3", "3", "3", "3", "3"]} +{"3004446": ["1", "1", "3", "1", "1", "3", "1"]} +{"3003498": ["2", "3", "3", "3", "3", "3", "2"]} +{"0003611": ["3", "3", "3", "3", "1", "3", "1"]} +{"2005930": ["2", "2", "3", "2", "1", "3", "1"]} +{"2005949": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004835": ["2", "3", "3", "2", "2", "3", "2"]} +{"8001975": ["2", "2", "3", "2", "1", "3", "2"]} +{"1006579": ["3", "1", "3", "2", "2", "3", "2"]} +{"1006330": ["3", "2", "3", "2", "2", "3", "2"]} +{"1005868": ["2", "1", "3", "1", "2", "2", "1"]} +{"1004453": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006895": ["3", "3", "1", "3", "3", "3", "2"]} +{"8002779": ["2", "1", "3", "1", "3", "3", "2"]} +{"2007206": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005153": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003343": ["2", "1", "3", "1", "1", "3", "1"]} +{"0006725": ["3", "3", "2", "3", "2", "3", "2"]} +{"6003898": ["3", "3", "2", "3", "3", "2", "2"]} +{"2007901": ["2", "3", "3", "3", "1", "3", "2"]} +{"2007896": ["1", "3", "3", "3", "1", "3", "1"]} +{"4002247": ["2", "3", "3", "2", "3", "3", "2"]} +{"1004916": ["2", "3", "3", "2", "3", "3", "2"]} +{"2007151": ["2", "3", "2", "3", "3", "3", "3"]} +{"1003696": ["2", "2", "3", "2", "3", "3", "2"]} +{"1003629": ["2", "2", "3", "2", "1", "3", "1"]} +{"1004124": ["2", "2", "3", "2", "1", "3", "2"]} +{"1005877": ["1", "1", "3", "1", "2", "3", "1"]} +{"6004785": ["2", "3", "3", "3", "2", "3", "2"]} +{"8002859": ["1", "1", "3", "1", "1", "3", "1"]} +{"4004082": ["2", "2", "3", "2", "2", "3", "2"]} +{"0006095": ["2", "3", "3", "2", "3", "3", "2"]} +{"3006770": ["2", "3", "3", "2", "3", "3", "2"]} +{"3006095": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006431": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003678": ["1", "1", "3", "1", "3", "3", "1"]} +{"8002494": ["1", "2", "3", "2", "1", "3", "1"]} +{"1005642": ["2", "2", "3", "2", "3", "3", "2"]} +{"4004452": ["2", "3", "1", "3", "3", "3", "2"]} +{"2003530": ["1", "2", "3", "2", "3", "3", "2"]} +{"4003456": ["2", "2", "3", "2", "2", "3", "2"]} +{"1004699": ["2", "2", "3", "2", "2", "3", "2"]} +{"1003982": ["2", "2", "3", "2", "2", "3", "2"]} +{"2003652": ["2", "2", "3", "2", "2", "1", "1"]} +{"2006072": ["3", "3", "2", "3", "3", "3", "2"]} +{"2003284": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003416": ["3", "2", "3", "3", "3", "3", "3"]} +{"7004940": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002625": ["1", "3", "3", "3", "2", "3", "2"]} +{"5001461": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002334": ["3", "3", "1", "3", "1", "3", "1"]} +{"2005213": ["3", "3", "3", "3", "3", "2", "2"]} +{"2007463": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001092": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005410": ["3", "3", "2", "3", "3", "2", "2"]} +{"3004438": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007721": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005337": ["3", "2", "3", "3", "3", "3", "3"]} +{"2005208": ["3", "2", "3", "3", "3", "1", "1"]} +{"2003629": ["3", "3", "3", "3", "2", "2", "2"]} +{"6003763": ["3", "1", "3", "2", "1", "3", "2"]} +{"3004606": ["3", "1", "3", "1", "1", "3", "1"]} +{"8001389": ["2", "2", "3", "1", "1", "3", "1"]} +{"1006511": ["3", "2", "3", "2", "3", "2", "2"]} +{"3005253": ["3", "3", "3", "3", "3", "2", "2"]} +{"3006523": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004596": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002955": ["1", "1", "3", "2", "None", "1", "1"]} +{"2005707": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003193": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007628": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004113": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001548": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002955": ["1", "1", "3", "2", "1", "3", "1"]} +{"8003278": ["3", "3", "3", "3", "1", "3", "1"]} +{"8002548": ["3", "3", "3", "2", "1", "3", "2"]} +{"1005116": ["2", "2", "3", "2", "3", "1", "1"]} +{"4002442": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7004423": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004798": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005592": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005592": ["3", "2", "3", "2", "3", "2", "2"]} +{"3005396": ["3", "3", "3", "3", "1", "3", "1"]} +{"4004238": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003138": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004078": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002891": ["1", "1", "3", "1", "1", "1", "1"]} +{"6002485": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002502": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003298": ["3", "2", "3", "3", "3", "3", "2"]} +{"0004469": ["3", "3", "3", "3", "2", "2", "2"]} +{"1005111": ["1", "1", "3", "1", "3", "3", "1"]} +{"1005111": ["1", "1", "3", "1", "3", "1", "1"]} +{"8003740": ["3", "3", "3", "2", "1", "3", "2"]} +{"8001238": ["2", "2", "3", "2", "1", "3", "1"]} +{"7004361": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006708": ["3", "3", "1", "3", "2", "3", "2"]} +{"2005941": ["2", "3", "2", "3", "2", "3", "2"]} +{"2004545": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004920": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006360": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003187": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002846": ["3", "3", "1", "3", "1", "3", "1"]} +{"3004511": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003059": ["3", "3", "3", "3", "1", "3", "2"]} +{"2006256": ["3", "2", "3", "2", "2", "2", "2"]} +{"8003112": ["3", "2", "3", "2", "2", "3", "2"]} +{"0004292": ["3", "3", "2", "3", "2", "3", "2"]} +{"1005386": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003784": ["3", "3", "3", "2", "3", "3", "2"]} +{"2007617": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003022": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002824": ["3", "2", "3", "2", "2", "3", "2"]} +{"0004159": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003610": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003805": ["2", "1", "3", "1", "3", "3", "1"]} +{"7003693": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004196": ["3", "3", "1", "3", "3", "3", "2"]} +{"2006145": ["3", "3", "2", "3", "3", "3", "3"]} +{"7004675": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003867": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004071": ["3", "1", "3", "1", "2", "2", "1"]} +{"1003364": ["3", "2", "3", "2", "2", "3", "2"]} +{"7002815": ["3", "3", "2", "3", "3", "3", "2"]} +{"3004804": ["3", "3", "1", "3", "2", "3", "2"]} +{"7002347": ["3", "3", "3", "3", "3", "2", "3"]} +{"3006387": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005197": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005167": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005958": ["3", "1", "3", "1", "3", "2", "2"]} +{"4002791": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005649": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002763": ["2", "3", "2", "3", "1", "3", "1"]} +{"1004679": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005973": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003881": ["2", "3", "3", "3", "2", "3", "2"]} +{"7003477": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004392": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003102": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004307": ["3", "2", "3", "2", "2", "3", "2"]} +{"1005423": ["2", "1", "3", "1", "3", "2", "1"]} +{"2007458": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005177": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006209": ["3", "3", "3", "3", "2", "3", "2"]} +{"7004027": ["2", "3", "3", "2", "3", "2", "2"]} +{"0006576": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004498": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002599": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003771": ["3", "3", "3", "3", "2", "3", "3"]} +{"4003251": ["3", "2", "3", "2", "3", "3", "2"]} +{"3005799": ["3", "3", "3", "3", "3", "2", "2"]} +{"3005799": ["3", "3", "3", "3", "3", "1", "2"]} +{"1003028": ["2", "1", "3", "2", "3", "3", "2"]} +{"5001080": ["3", "3", "2", "3", "2", "3", "2"]} +{"0004360": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004796": ["3", "2", "3", "2", "2", "3", "2"]} +{"2003087": ["3", "2", "3", "2", "3", "3", "2"]} +{"1003227": ["3", "3", "3", "2", "1", "3", "1"]} +{"1004301": ["3", "2", "3", "2", "1", "3", "1"]} +{"2004756": ["3", "2", "3", "2", "3", "2", "2"]} +{"0006934": ["2", "3", "3", "3", "3", "3", "2"]} +{"3005489": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006488": ["3", "2", "3", "2", "3", "3", "2"]} +{"2007250": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003298": ["1", "1", "3", "1", "3", "3", "1"]} +{"7003822": ["3", "3", "3", "2", "2", "3", "2"]} +{"6003684": ["3", "3", "2", "3", "1", "3", "2"]} +{"7003965": ["3", "2", "3", "2", "3", "2", "2"]} +{"5001779": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003549": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004343": ["3", "2", "3", "2", "2", "3", "2"]} +{"7004920": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004393": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002403": ["1", "2", "3", "2", "3", "2", "1"]} +{"8002659": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003583": ["3", "3", "3", "3", "2", "3", "3"]} +{"7004167": ["3", "3", "3", "2", "3", "3", "3"]} +{"1005495": ["3", "2", "3", "2", "2", "3", "2"]} +{"8001601": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004204": ["2", "2", "3", "2", "2", "3", "2"]} +{"8002284": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004785": ["3", "3", "2", "3", "1", "3", "1"]} +{"0005697": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003826": ["2", "2", "3", "2", "2", "3", "2"]} +{"2004395": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001699": ["3", "3", "3", "3", "1", "3", "1"]} +{"3006667": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003398": ["3", "3", "3", "2", "3", "2", "2"]} +{"7003058": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004576": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002108": ["1", "2", "3", "1", "3", "3", "1"]} +{"1003699": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004578": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005715": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003940": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003102": ["3", "3", "3", "2", "3", "3", "2"]} +{"6002800": ["1", "1", "3", "1", "3", "3", "1"]} +{"8003152": ["3", "2", "3", "3", "2", "3", "2"]} +{"4004735": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002974": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003777": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003148": ["3", "3", "2", "3", "2", "3", "2"]} +{"2005968": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002067": ["2", "3", "2", "3", "3", "3", "2"]} +{"8003239": ["2", "3", "3", "2", "2", "3", "2"]} +{"4002068": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003076": ["3", "3", "3", "3", "1", "3", "2"]} +{"0003757": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002375": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004939": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004513": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003858": ["3", "1", "3", "2", "3", "3", "2"]} +{"5001387": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006070": ["3", "3", "3", "2", "2", "3", "2"]} +{"7003501": ["3", "3", "3", "3", "2", "2", "2"]} +{"7004160": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005072": ["3", "3", "2", "3", "2", "3", "2"]} +{"4004257": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003912": ["3", "2", "3", "2", "1", "3", "2"]} +{"3004107": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005262": ["2", "3", "3", "3", "2", "1", "2"]} +{"6003099": ["2", "1", "3", "2", "2", "1", "1"]} +{"3006456": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001093": ["3", "3", "1", "3", "2", "3", "2"]} +{"3003334": ["3", "3", "1", "3", "3", "3", "2"]} +{"8003063": ["2", "3", "3", "2", "3", "3", "2"]} +{"3005762": ["3", "3", "3", "3", "2", "3", "2"]} +{"5001505": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002348": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003635": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003769": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006022": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004125": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003445": ["2", "2", "3", "2", "3", "2", "2"]} +{"2004516": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003788": ["3", "2", "3", "2", "2", "3", "2"]} +{"0006690": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002875": ["1", "2", "3", "2", "3", "3", "2"]} +{"1006715": ["3", "2", "3", "2", "3", "3", "2"]} +{"4004709": ["3", "2", "3", "2", "1", "3", "2"]} +{"4003525": ["3", "3", "3", "3", "3", "2", "2"]} +{"2007308": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006096": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004452": ["3", "2", "3", "2", "3", "3", "2"]} +{"2005546": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005155": ["3", "3", "3", "3", "3", "2", "3"]} +{"1003511": ["3", "1", "3", "2", "1", "3", "2"]} +{"1003446": ["3", "2", "3", "2", "3", "3", "2"]} +{"2005394": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003766": ["3", "3", "3", "3", "1", "3", "1"]} +{"4002074": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003310": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004299": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002558": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003677": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7003560": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004433": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006208": ["3", "3", "3", "2", "3", "3", "2"]} +{"1006893": ["3", "3", "3", "2", "3", "3", "2"]} +{"2003895": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007697": ["3", "3", "2", "3", "3", "3", "2"]} +{"8003192": ["3", "2", "3", "3", "1", "3", "2"]} +{"3006133": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003224": ["3", "3", "3", "3", "3", "3", "3"]} +{"3004430": ["3", "2", "3", "3", "2", "3", "2"]} +{"7002945": ["3", "2", "3", "3", "2", "3", "2"]} +{"8001139": ["2", "2", "3", "3", "2", "3", "2"]} +{"6003697": ["1", "3", "3", "3", "1", "3", "1"]} +{"0005827": ["3", "3", "2", "3", "3", "3", "2"]} +{"7003509": ["3", "3", "3", "2", "3", "3", "2"]} +{"8002064": ["2", "3", "3", "3", "2", "3", "2"]} +{"7004774": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003776": ["2", "2", "3", "3", "3", "3", "2"]} +{"2003904": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005487": ["2", "1", "3", "2", "3", "3", "2"]} +{"1004138": ["2", "2", "3", "2", "2", "3", "2"]} +{"7002145": ["3", "3", "2", "3", "3", "3", "2"]} +{"8001454": ["3", "3", "3", "3", "2", "3", "2"]} +{"6003762": ["3", "2", "3", "2", "3", "2", "2"]} +{"3006810": ["1", "3", "3", "2", "3", "3", "2"]} +{"4003121": ["3", "2", "3", "3", "3", "3", "2"]} +{"3003297": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007003": ["3", "3", "3", "3", "1", "2", "2"]} +{"8002378": ["3", "2", "3", "2", "3", "3", "2"]} +{"6004419": ["3", "1", "3", "2", "3", "3", "2"]} +{"2004651": ["3", "3", "2", "3", "3", "3", "2"]} +{"0006717": ["3", "3", "3", "3", "1", "3", "2"]} +{"6003539": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003157": ["3", "3", "3", "3", "3", "2", "3"]} +{"3004352": ["3", "1", "3", "2", "1", "1", "2"]} +{"1006142": ["3", "2", "3", "2", "3", "2", "2"]} +{"0003402": ["3", "3", "2", "3", "3", "3", "3"]} +{"6002729": ["3", "1", "3", "2", "1", "3", "1"]} +{"4004826": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003230": ["2", "3", "1", "3", "3", "3", "2"]} +{"1005192": ["1", "1", "3", "1", "2", "3", "1"]} +{"8001931": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003411": ["3", "3", "3", "3", "3", "2", "2"]} +{"0003719": ["3", "2", "3", "2", "1", "3", "1"]} +{"3005931": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005506": ["1", "3", "3", "2", "3", "3", "1"]} +{"4002393": ["3", "3", "3", "2", "2", "3", "2"]} +{"0006432": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003033": ["3", "3", "3", "2", "2", "3", "2"]} +{"3005455": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001222": ["3", "3", "3", "3", "3", "2", "3"]} +{"3005405": ["3", "3", "3", "2", "1", "1", "2"]} +{"3004522": ["3", "3", "3", "3", "1", "3", "1"]} +{"8001569": ["1", "2", "3", "2", "3", "3", "2"]} +{"7004787": ["2", "2", "3", "2", "3", "2", "2"]} +{"4004955": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002879": ["2", "3", "3", "2", "1", "3", "2"]} +{"4004066": ["3", "3", "2", "3", "3", "2", "2"]} +{"7002728": ["3", "3", "3", "3", "2", "2", "2"]} +{"1004816": ["3", "1", "3", "1", "3", "3", "1"]} +{"4003427": ["3", "3", "2", "3", "3", "3", "2"]} +{"2005806": ["3", "3", "3", "3", "1", "3", "1"]} +{"3003258": ["3", "3", "3", "3", "2", "2", "2"]} +{"2007920": ["3", "3", "2", "3", "3", "3", "3"]} +{"3005224": ["3", "2", "3", "3", "2", "2", "2"]} +{"0003193": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006286": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007920": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002573": ["3", "3", "3", "3", "2", "3", "3"]} +{"3004514": ["3", "3", "1", "3", "2", "3", "2"]} +{"2006254": ["3", "3", "3", "3", "2", "2", "2"]} +{"2003222": ["3", "2", "3", "3", "3", "3", "2"]} +{"3006161": ["3", "2", "3", "2", "1", "3", "2"]} +{"4002862": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002954": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005513": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003492": ["3", "3", "3", "3", "3", "2", "2"]} +{"3004564": ["2", "3", "2", "3", "2", "3", "2"]} +{"3006728": ["3", "3", "1", "3", "3", "3", "2"]} +{"1003769": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003769": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003197": ["3", "1", "3", "3", "2", "3", "2"]} +{"1004245": ["1", "1", "3", "1", "3", "2", "1"]} +{"0006164": ["2", "3", "3", "3", "2", "3", "2"]} +{"8001537": ["3", "2", "3", "2", "3", "3", "2"]} +{"3006842": ["2", "3", "3", "3", "3", "3", "2"]} +{"7003798": ["3", "3", "3", "3", "1", "3", "2"]} +{"2003881": ["3", "3", "2", "3", "3", "3", "2"]} +{"7003941": ["3", "2", "3", "3", "3", "3", "2"]} +{"2005714": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003665": ["3", "2", "3", "3", "3", "3", "2"]} +{"4004592": ["3", "3", "3", "3", "3", "2", "3"]} +{"6003567": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003268": ["3", "2", "3", "3", "1", "3", "2"]} +{"1005034": ["3", "2", "3", "2", "2", "3", "2"]} +{"3005900": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003921": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1006412": ["3", "2", "3", "2", "2", "3", "2"]} +{"2004039": ["3", "3", "3", "3", "1", "3", "2"]} +{"2006983": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002556": ["2", "2", "3", "2", "1", "3", "1"]} +{"7003633": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006968": ["3", "3", "3", "3", "2", "2", "2"]} +{"7003836": ["3", "2", "3", "2", "3", "1", "2"]} +{"7002838": ["3", "2", "3", "2", "3", "3", "2"]} +{"1005741": ["3", "1", "3", "1", "3", "1", "1"]} +{"6002318": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004427": ["3", "3", "2", "3", "2", "3", "2"]} +{"0004127": ["3", "3", "3", "2", "3", "3", "3"]} +{"6002540": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003308": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003381": ["2", "2", "3", "2", "2", "3", "2"]} +{"3004553": ["2", "3", "3", "3", "2", "1", "1"]} +{"1004547": ["3", "2", "3", "2", "3", "3", "2"]} +{"6000004": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001017": ["3", "3", "1", "3", "1", "3", "1"]} +{"3005449": ["3", "2", "3", "2", "1", "2", "1"]} +{"6002666": ["2", "1", "3", "1", "2", "3", "2"]} +{"2003863": ["3", "3", "3", "3", "3", "2", "2"]} +{"4004880": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006423": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003185": ["3", "2", "3", "2", "3", "3", "2"]} +{"3006064": ["3", "2", "3", "3", "3", "3", "3"]} +{"3006671": ["3", "3", "1", "3", "1", "3", "1"]} +{"0004960": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005300": ["3", "2", "3", "3", "2", "3", "2"]} +{"2005980": ["3", "3", "2", "3", "3", "3", "2"]} +{"1006255": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003890": ["2", "3", "3", "3", "3", "3", "2"]} +{"4004877": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004141": ["3", "2", "3", "2", "1", "3", "1"]} +{"2007209": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0003394": ["3", "3", "2", "3", "3", "3", "2"]} +{"7002162": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005225": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003905": ["3", "2", "3", "2", "2", "2", "2"]} +{"3005561": ["3", "3", "3", "3", "1", "3", "1"]} +{"6002110": ["3", "2", "3", "2", "1", "3", "1"]} +{"1003559": ["1", "1", "3", "1", "3", "3", "1"]} +{"0005790": ["3", "3", "3", "3", "3", "2", "2"]} +{"7002071": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001210": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005148": ["3", "2", "3", "2", "2", "3", "2"]} +{"2007516": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005005": ["3", "2", "3", "2", "3", "3", "2"]} +{"0005857": ["3", "3", "2", "3", "3", "3", "2"]} +{"2004527": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004387": ["2", "3", "3", "3", "3", "1", "2"]} +{"8001108": ["3", "3", "3", "3", "1", "3", "2"]} +{"3004003": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004609": ["3", "3", "1", "3", "2", "3", "2"]} +{"0003090": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006722": ["3", "3", "3", "2", "3", "3", "2"]} +{"1005523": ["3", "2", "3", "2", "1", "3", "2"]} +{"3005328": ["3", "3", "2", "3", "2", "3", "2"]} +{"1004974": ["3", "2", "3", "2", "2", "3", "2"]} +{"0004540": ["3", "3", "1", "3", "3", "3", "2"]} +{"0005159": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002347": ["3", "3", "3", "2", "3", "3", "2"]} +{"6003483": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002348": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003896": ["1", "3", "3", "2", "3", "2", "2"]} +{"2006775": ["3", "3", "2", "3", "2", "3", "2"]} +{"6004049": ["3", "2", "3", "2", "3", "2", "2"]} +{"2006640": ["3", "3", "1", "3", "2", "3", "2"]} +{"2007037": ["3", "3", "3", "3", "None", "3", "3"]} +{"8001115": ["3", "3", "2", "3", "1", "3", "2"]} +{"1006956": ["3", "2", "3", "2", "2", "3", "2"]} +{"2007518": ["3", "3", "3", "3", "3", "3", "2"]} +{"2007518": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006675": ["3", "3", "2", "3", "2", "3", "2"]} +{"3004638": ["1", "3", "3", "2", "3", "3", "2"]} +{"5001400": ["3", "3", "3", "3", "3", "2", "2"]} +{"4004177": ["3", "3", "3", "3", "3", "2", "2"]} +{"1005780": ["3", "3", "3", "2", "3", "3", "2"]} +{"0006446": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003143": ["3", "2", "3", "2", "3", "3", "2"]} +{"8002036": ["1", "3", "3", "1", "2", "2", "3"]} +{"1005178": ["3", "2", "3", "3", "3", "3", "2"]} +{"2007037": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003995": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002004": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003037": ["2", "1", "3", "1", "3", "3", "1"]} +{"3005818": ["1", "2", "3", "1", "1", "3", "1"]} +{"3003013": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002600": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004079": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002786": ["2", "3", "3", "2", "1", "2", "2"]} +{"7002271": ["3", "3", "1", "3", "3", "3", "2"]} +{"7002927": ["3", "3", "2", "3", "3", "3", "3"]} +{"0003899": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006863": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004816": ["3", "3", "3", "3", "2", "2", "2"]} +{"5001127": ["3", "3", "3", "3", "1", "3", "2"]} +{"2004113": ["3", "3", "2", "3", "3", "3", "2"]} +{"0003797": ["3", "3", "3", "3", "1", "3", "1"]} +{"3005420": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004349": ["3", "2", "3", "2", "3", "3", "2"]} +{"2004886": ["3", "3", "3", "2", "2", "3", "2"]} +{"1006050": ["1", "3", "3", "1", "3", "3", "1"]} +{"4002949": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002812": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003038": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002992": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003547": ["1", "1", "3", "1", "3", "3", "1"]} +{"1005094": ["1", "2", "3", "1", "2", "3", "1"]} +{"7003258": ["3", "3", "2", "3", "1", "3", "1"]} +{"8003761": ["1", "3", "3", "1", "1", "3", "1"]} +{"4003848": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005595": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002952": ["3", "3", "3", "2", "2", "2", "2"]} +{"1006823": ["3", "2", "3", "2", "2", "3", "2"]} +{"7002379": ["3", "3", "3", "2", "2", "3", "2"]} +{"2005678": ["3", "3", "3", "3", "3", "1", "2"]} +{"1005577": ["1", "1", "3", "1", "3", "3", "1"]} +{"3005089": ["2", "2", "3", "3", "2", "3", "2"]} +{"1004264": ["3", "2", "3", "3", "3", "3", "2"]} +{"0006724": ["2", "3", "3", "3", "2", "1", "2"]} +{"1005298": ["3", "1", "3", "1", "3", "3", "2"]} +{"7002908": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004005": ["3", "3", "2", "3", "3", "3", "2"]} +{"0004390": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003580": ["3", "2", "3", "3", "3", "3", "2"]} +{"8001291": ["1", "1", "3", "1", "3", "3", "1"]} +{"1006881": ["1", "1", "3", "1", "2", "3", "1"]} +{"3003979": ["3", "2", "3", "3", "3", "3", "2"]} +{"8002870": ["2", "3", "3", "2", "2", "1", "2"]} +{"8001367": ["2", "3", "3", "3", "3", "3", "2"]} +{"0006406": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001338": ["1", "3", "3", "1", "3", "3", "1"]} +{"2006622": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005443": ["3", "2", "3", "2", "2", "2", "2"]} +{"2006815": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002177": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001849": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002714": ["3", "2", "3", "3", "1", "3", "2"]} +{"8003244": ["3", "3", "3", "2", "3", "3", "2"]} +{"5001360": ["3", "3", "3", "2", "3", "3", "2"]} +{"7003612": ["3", "3", "3", "2", "3", "3", "2"]} +{"3004115": ["3", "3", "3", "3", "1", "3", "2"]} +{"3005148": ["3", "2", "3", "2", "2", "3", "2"]} +{"0005745": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005654": ["1", "1", "3", "1", "2", "3", "2"]} +{"1005654": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003172": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004957": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004838": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002206": ["1", "1", "3", "1", "1", "3", "1"]} +{"2006116": ["3", "3", "2", "3", "3", "3", "3"]} +{"2003109": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001055": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005609": ["3", "3", "3", "3", "3", "2", "2"]} +{"7004839": ["2", "2", "3", "2", "3", "2", "2"]} +{"3004781": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007424": ["3", "3", "3", "3", "3", "2", "3"]} +{"6002996": ["3", "2", "3", "2", "2", "3", "2"]} +{"3003393": ["3", "2", "3", "2", "1", "3", "1"]} +{"2005336": ["3", "3", "3", "3", "3", "2", "3"]} +{"4002964": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006162": ["3", "2", "3", "2", "3", "3", "2"]} +{"2006001": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006001": ["3", "3", "2", "3", "1", "3", "1"]} +{"7002158": ["3", "2", "3", "2", "3", "3", "2"]} +{"3006466": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005572": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006495": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3006495": ["1", "1", "3", "1", "1", "3", "1"]} +{"7002758": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003772": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003065": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006776": ["3", "2", "3", "3", "3", "2", "2"]} +{"0004888": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004084": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003528": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003685": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003542": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001203": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1006596": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001049": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001645": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004415": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005387": ["3", "3", "3", "3", "3", "3", "3"]} +{"1003164": ["1", "1", "3", "1", "3", "3", "1"]} +{"2005566": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002539": ["1", "2", "3", "2", "3", "3", "2"]} +{"8002810": ["2", "3", "3", "2", "3", "3", "2"]} +{"8003139": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2003981": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003064": ["3", "3", "3", "3", "1", "3", "2"]} +{"8001447": ["3", "3", "3", "2", "3", "3", "2"]} +{"2007777": ["3", "2", "3", "3", "1", "3", "2"]} +{"1003265": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003804": ["3", "2", "3", "2", "2", "3", "2"]} +{"3004271": ["3", "3", "3", "3", "2", "3", "2"]} +{"8003158": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002026": ["3", "2", "3", "2", "1", "3", "1"]} +{"6003232": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004706": ["3", "3", "3", "3", "1", "2", "2"]} +{"6002838": ["3", "3", "3", "2", "2", "2", "2"]} +{"2005401": ["3", "2", "3", "3", "2", "3", "2"]} +{"3003914": ["2", "2", "3", "2", "2", "2", "2"]} +{"2006476": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006393": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003670": ["3", "3", "2", "3", "2", "3", "2"]} +{"2006135": ["3", "3", "3", "3", "2", "3", "2"]} +{"1003394": ["3", "2", "3", "2", "1", "3", "2"]} +{"7004583": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005996": ["1", "1", "3", "1", "3", "3", "1"]} +{"0003708": ["3", "2", "3", "3", "1", "3", "2"]} +{"7000004": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2004002": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002643": ["3", "3", "3", "3", "2", "3", "2"]} +{"0005972": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006179": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003495": ["3", "3", "2", "3", "3", "3", "2"]} +{"3006564": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006555": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007133": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004374": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005596": ["3", "3", "3", "2", "3", "3", "3"]} +{"8003561": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005174": ["3", "2", "3", "3", "2", "3", "2"]} +{"6002758": ["3", "2", "3", "2", "3", "3", "2"]} +{"0003446": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003543": ["1", "1", "3", "1", "1", "3", "1"]} +{"1004218": ["1", "1", "3", "1", "3", "3", "1"]} +{"2005682": ["3", "3", "1", "3", "3", "3", "2"]} +{"4004343": ["3", "3", "3", "3", "3", "2", "2"]} +{"1004959": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006350": ["3", "3", "3", "3", "3", "2", "3"]} +{"1006382": ["3", "2", "3", "2", "2", "3", "2"]} +{"7003558": ["3", "3", "1", "3", "3", "3", "3"]} +{"3003842": ["3", "3", "1", "3", "3", "2", "2"]} +{"3006109": ["2", "2", "3", "2", "2", "2", "2"]} +{"6003626": ["3", "2", "3", "2", "2", "1", "2"]} +{"3006926": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005564": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4003832": ["3", "3", "3", "3", "1", "3", "1"]} +{"7002169": ["3", "2", "3", "3", "3", "2", "2"]} +{"2006561": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003600": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005910": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005376": ["3", "3", "3", "3", "3", "3", "3"]} +{"4002813": ["3", "3", "3", "3", "2", "3", "3"]} +{"0005669": ["3", "3", "2", "3", "2", "3", "2"]} +{"5001263": ["3", "2", "3", "3", "2", "2", "2"]} +{"8002460": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005281": ["3", "2", "3", "2", "3", "3", "2"]} +{"6002476": ["3", "1", "3", "1", "3", "2", "2"]} +{"7003090": ["3", "3", "3", "3", "3", "3", "3"]} +{"3006324": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004284": ["3", "3", "2", "3", "3", "3", "2"]} +{"1004174": ["1", "1", "3", "1", "3", "3", "1"]} +{"6003688": ["3", "2", "3", "2", "1", "3", "1"]} +{"3006178": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004722": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005219": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004113": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006366": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002697": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004499": ["3", "3", "3", "3", "2", "3", "3"]} +{"6003919": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003807": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006898": ["3", "3", "2", "3", "3", "3", "2"]} +{"6002348": ["3", "3", "3", "3", "2", "3", "2"]} +{"3003845": ["2", "3", "2", "3", "3", "1", "2"]} +{"4002526": ["3", "3", "3", "3", "2", "3", "2"]} +{"8002724": ["3", "3", "3", "3", "2", "3", "2"]} +{"4003252": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002094": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003346": ["3", "3", "3", "3", "1", "3", "2"]} +{"4003286": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003486": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004768": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003184": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002984": ["3", "3", "3", "3", "3", "2", "2"]} +{"2006705": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003159": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001054": ["1", "2", "3", "2", "1", "3", "1"]} +{"1005716": ["3", "2", "3", "2", "3", "2", "2"]} +{"1004942": ["1", "1", "3", "1", "3", "2", "1"]} +{"4003227": ["3", "3", "3", "3", "2", "3", "2"]} +{"4004307": ["3", "3", "2", "3", "1", "3", "2"]} +{"2005524": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004053": ["3", "3", "3", "3", "2", "3", "2"]} +{"7003677": ["3", "3", "2", "3", "2", "3", "2"]} +{"0005233": ["3", "3", "3", "3", "1", "3", "2"]} +{"8002432": ["2", "2", "3", "2", "3", "3", "2"]} +{"3006510": ["3", "3", "1", "3", "2", "3", "2"]} +{"3005307": ["3", "2", "3", "2", "2", "3", "2"]} +{"1006875": ["3", "1", "3", "1", "3", "3", "1"]} +{"4003927": ["2", "3", "3", "3", "1", "3", "2"]} +{"4003927": ["2", "3", "3", "3", "1", "3", "2"]} +{"2003462": ["3", "2", "3", "3", "1", "1", "1"]} +{"7004396": ["3", "3", "3", "3", "2", "3", "2"]} +{"1006680": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1006360": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004155": ["3", "3", "2", "3", "1", "3", "1"]} +{"8001556": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006273": ["3", "3", "3", "3", "3", "3", "3"]} +{"0004316": ["3", "3", "3", "3", "2", "2", "2"]} +{"8002751": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006095": ["3", "3", "3", "2", "3", "3", "2"]} +{"2003530": ["3", "2", "3", "2", "3", "3", "2"]} +{"4003456": ["3", "2", "3", "2", "2", "3", "2"]} +{"6003595": ["1", "1", "3", "1", "3", "1", "1"]} +{"7003343": ["2", "1", "3", "1", "1", "1", "1"]} +{"1005877": ["1", "1", "3", "1", "2", "1", "1"]} +{"7002541": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002685": ["1", "1", "3", "3", "3", "3", "1"]} +{"2006395": ["3", "3", "2", "3", "3", "3", "3"]} +{"4003325": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001642": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006126": ["3", "3", "3", "3", "3", "3", "3"]} +{"3005689": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003567": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003382": ["3", "2", "3", "2", "2", "3", "2"]} +{"2006070": ["3", "3", "3", "3", "2", "2", "2"]} +{"6002865": ["1", "1", "3", "1", "3", "3", "1"]} +{"8002220": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002213": ["2", "1", "3", "2", "3", "3", "2"]} +{"3004235": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"5001720": ["3", "3", "2", "3", "2", "3", "2"]} +{"8003447": ["3", "3", "3", "3", "1", "3", "2"]} +{"7004657": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002139": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4002719": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006338": ["1", "1", "3", "1", "1", "3", "1"]} +{"3004300": ["3", "3", "1", "3", "2", "3", "2"]} +{"2003744": ["3", "3", "2", "3", "2", "2", "2"]} +{"4002922": ["3", "3", "3", "3", "1", "3", "2"]} +{"8001208": ["2", "3", "3", "3", "2", "2", "2"]} +{"5001048": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005776": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003996": ["3", "3", "3", "3", "3", "3", "3"]} +{"6004625": ["1", "3", "3", "3", "1", "3", "3"]} +{"6004625": ["1", "3", "3", "3", "1", "3", "2"]} +{"2005247": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004921": ["2", "2", "3", "3", "1", "1", "1"]} +{"0006531": ["2", "2", "3", "3", "2", "3", "2"]} +{"2007956": ["3", "3", "3", "2", "3", "3", "2"]} +{"7003273": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007140": ["2", "3", "3", "3", "3", "3", "2"]} +{"1003211": ["1", "1", "3", "1", "3", "3", "1"]} +{"3006643": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002138": ["3", "2", "3", "2", "1", "3", "2"]} +{"0006004": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004629": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005340": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002882": ["3", "1", "3", "1", "3", "3", "2"]} +{"2003034": ["3", "3", "3", "3", "2", "3", "2"]} +{"2005646": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001299": ["3", "2", "3", "2", "1", "3", "1"]} +{"2004049": ["3", "2", "3", "3", "1", "3", "2"]} +{"1003005": ["3", "2", "3", "2", "3", "3", "2"]} +{"7003504": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006961": ["3", "3", "None", "3", "2", "3", "2"]} +{"0005849": ["3", "3", "3", "3", "2", "1", "2"]} +{"1004479": ["1", "1", "3", "1", "2", "3", "1"]} +{"4002981": ["3", "2", "3", "2", "2", "3", "2"]} +{"8003291": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004297": ["3", "3", "3", "3", "2", "3", "2"]} +{"0006961": ["3", "3", "3", "3", "2", "3", "2"]} +{"6002569": ["3", "2", "3", "3", "2", "3", "2"]} +{"2005425": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004028": ["3", "3", "3", "3", "1", "3", "2"]} +{"0004217": ["3", "3", "3", "3", "1", "1", "1"]} +{"5001524": ["3", "2", "2", "3", "1", "3", "2"]} +{"3005984": ["3", "3", "2", "3", "3", "3", "2"]} +{"6004066": ["3", "1", "3", "1", "2", "2", "2"]} +{"5001756": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6003451": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004975": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005787": ["3", "2", "3", "3", "1", "3", "2"]} +{"7003402": ["3", "2", "3", "2", "3", "3", "2"]} +{"2003792": ["3", "3", "3", "3", "2", "3", "2"]} +{"2003732": ["3", "3", "2", "3", "2", "3", "2"]} +{"0004363": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1004223": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003975": ["3", "3", "3", "3", "2", "3", "2"]} +{"1005788": ["1", "3", "3", "2", "2", "3", "2"]} +{"4003554": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002439": ["3", "1", "3", "1", "3", "2", "2"]} +{"4004274": ["3", "2", "3", "3", "3", "3", "3"]} +{"0005606": ["3", "3", "2", "3", "1", "3", "2"]} +{"4004558": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004945": ["3", "3", "3", "3", "1", "3", "2"]} +{"1003690": ["1", "1", "3", "1", "2", "3", "1"]} +{"4004064": ["3", "2", "3", "2", "3", "3", "2"]} +{"0004588": ["3", "3", "3", "3", "3", "3", "3"]} +{"8002455": ["2", "2", "3", "2", "1", "3", "1"]} +{"6003427": ["3", "3", "1", "3", "3", "3", "2"]} +{"0006378": ["3", "2", "3", "3", "1", "3", "2"]} +{"3004552": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003321": ["3", "2", "3", "2", "2", "3", "2"]} +{"7002796": ["3", "2", "3", "2", "3", "3", "2"]} +{"0006806": ["3", "3", "2", "3", "3", "3", "3"]} +{"1005911": ["3", "2", "3", "2", "1", "3", "1"]} +{"4003151": ["3", "3", "3", "3", "3", "1", "2"]} +{"6003070": ["3", "1", "3", "1", "1", "1", "1"]} +{"1005867": ["1", "1", "3", "1", "1", "3", "1"]} +{"0006349": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003699": ["3", "3", "3", "2", "3", "3", "3"]} +{"2007907": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003480": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003504": ["3", "2", "3", "2", "1", "3", "2"]} +{"7004653": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005629": ["3", "2", "3", "2", "2", "3", "2"]} +{"4002980": ["3", "3", "3", "3", "1", "3", "2"]} +{"7002494": ["3", "1", "3", "1", "3", "3", "2"]} +{"1004602": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004700": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005718": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003918": ["3", "2", "3", "2", "3", "2", "2"]} +{"7004458": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002770": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006825": ["1", "1", "3", "1", "3", "3", "1"]} +{"4003042": ["3", "3", "3", "3", "2", "3", "3"]} +{"2007621": ["3", "3", "3", "3", "3", "3", "3"]} +{"4004442": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002902": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005502": ["3", "3", "3", "3", "1", "3", "2"]} +{"1004481": ["3", "1", "3", "1", "3", "3", "2"]} +{"7004333": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007573": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004140": ["3", "2", "3", "2", "2", "3", "2"]} +{"2005419": ["3", "3", "1", "3", "2", "3", "2"]} +{"0004968": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004683": ["3", "3", "3", "3", "2", "3", "3"]} +{"6004054": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006345": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006810": ["3", "1", "3", "2", "1", "3", "2"]} +{"8001439": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"4004754": ["3", "3", "3", "3", "2", "3", "2"]} +{"4002187": ["3", "2", "3", "3", "1", "3", "2"]} +{"7002790": ["3", "3", "1", "3", "1", "3", "2"]} +{"0003354": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004063": ["3", "2", "3", "2", "2", "2", "2"]} +{"2007432": ["3", "3", "3", "3", "3", "2", "2"]} +{"0003458": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001648": ["3", "3", "2", "3", "2", "3", "2"]} +{"8002118": ["3", "2", "3", "2", "1", "3", "2"]} +{"3003640": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004591": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004594": ["3", "3", "3", "3", "3", "3", "3"]} +{"2005584": ["3", "3", "2", "3", "3", "3", "2"]} +{"2007056": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007989": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003842": ["3", "2", "3", "3", "3", "3", "3"]} +{"2003024": ["3", "3", "1", "3", "3", "3", "2"]} +{"3003077": ["3", "3", "3", "3", "3", "3", "3"]} +{"8001843": ["3", "2", "3", "2", "3", "3", "2"]} +{"8003099": ["3", "3", "3", "2", "2", "3", "2"]} +{"1003035": ["2", "2", "3", "2", "1", "3", "2"]} +{"7004853": ["3", "3", "3", "3", "3", "3", "3"]} +{"5001412": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007334": ["3", "3", "1", "3", "2", "3", "2"]} +{"2007091": ["3", "3", "2", "3", "3", "3", "3"]} +{"7002345": ["3", "3", "2", "3", "2", "3", "2"]} +{"0006676": ["3", "3", "3", "3", "3", "3", "3"]} +{"6002642": ["3", "2", "3", "3", "3", "3", "3"]} +{"1005569": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004764": ["3", "2", "3", "3", "1", "3", "2"]} +{"7004587": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006033": ["3", "3", "2", "3", "3", "3", "2"]} +{"5001241": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003556": ["3", "2", "3", "3", "3", "3", "2"]} +{"0003240": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005937": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002088": ["3", "3", "1", "3", "2", "3", "2"]} +{"1004691": ["1", "1", "3", "1", "2", "3", "1"]} +{"6002887": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8001192": ["2", "2", "3", "2", "2", "2", "2"]} +{"0005111": ["3", "3", "3", "3", "2", "3", "3"]} +{"6002717": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004441": ["3", "3", "1", "3", "3", "3", "2"]} +{"1005722": ["1", "1", "3", "1", "1", "3", "1"]} +{"4004716": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1006830": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"7002082": ["3", "3", "3", "3", "1", "3", "2"]} +{"1005809": ["3", "2", "3", "2", "3", "2", "2"]} +{"1004373": ["1", "1", "3", "1", "3", "2", "2"]} +{"3004059": ["3", "1", "3", "2", "3", "2", "2"]} +{"7003096": ["3", "3", "3", "3", "3", "3", "3"]} +{"1006219": ["1", "1", "3", "1", "3", "3", "1"]} +{"1006786": ["1", "1", "3", "1", "3", "3", "1"]} +{"5001580": ["3", "3", "3", "3", "3", "3", "3"]} +{"7002720": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005347": ["3", "2", "3", "3", "3", "3", "2"]} +{"7002317": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6004149": ["2", "2", "3", "2", "1", "3", "2"]} +{"1004330": ["1", "1", "3", "1", "3", "2", "1"]} +{"2007014": ["3", "3", "3", "3", "2", "3", "2"]} +{"3006159": ["3", "3", "1", "3", "1", "3", "1"]} +{"7002402": ["3", "3", "3", "3", "2", "3", "2"]} +{"0004085": ["3", "3", "1", "3", "1", "3", "1"]} +{"3006332": ["3", "3", "3", "3", "3", "3", "3"]} +{"2004240": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005206": ["3", "3", "3", "3", "2", "3", "3"]} +{"2005605": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006587": ["3", "3", "3", "3", "3", "3", "3"]} +{"0003577": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006801": ["3", "3", "3", "3", "3", "3", "3"]} +{"7004163": ["3", "3", "3", "3", "3", "2", "2"]} +{"2004713": ["3", "3", "2", "3", "3", "3", "3"]} +{"8002746": ["2", "2", "3", "2", "3", "2", "2"]} +{"0005459": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8002971": ["2", "3", "3", "3", "1", "3", "1"]} +{"0004824": ["3", "3", "3", "3", "3", "3", "3"]} +{"1004405": ["1", "1", "3", "1", "3", "3", "1"]} +{"3004230": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0004267": ["3", "3", "3", "3", "1", "3", "2"]} +{"8001510": ["3", "3", "3", "3", "1", "3", "2"]} +{"4004205": ["3", "3", "3", "3", "3", "2", "3"]} +{"0005556": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005351": ["3", "3", "1", "3", "2", "3", "2"]} +{"4003827": ["3", "3", "3", "3", "1", "3", "3"]} +{"8002291": ["1", "3", "3", "3", "3", "2", "2"]} +{"1005524": ["2", "3", "3", "2", "3", "3", "2"]} +{"7002784": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006631": ["3", "3", "3", "3", "3", "3", "3"]} +{"7003010": ["3", "3", "3", "3", "1", "3", "2"]} +{"0006498": ["3", "3", "3", "3", "2", "3", "2"]} +{"8001493": ["3", "2", "3", "2", "3", "3", "2"]} +{"8002373": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2006652": ["3", "3", "3", "3", "2", "3", "2"]} +{"2006272": ["3", "2", "3", "2", "1", "3", "2"]} +{"7004946": ["3", "2", "3", "3", "3", "3", "2"]} +{"2006907": ["3", "3", "3", "3", "3", "3", "3"]} +{"2006686": ["3", "3", "1", "3", "2", "3", "2"]} +{"2003802": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2005961": ["3", "2", "3", "3", "3", "3", "3"]} +{"1003073": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"2007614": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"6002941": ["3", "2", "3", "3", "1", "3", "2"]} +{"1005242": ["1", "1", "3", "1", "3", "3", "1"]} +{"1003172": ["2", "2", "3", "2", "3", "3", "2"]} +{"7002272": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3004402": ["3", "3", "1", "3", "1", "3", "2"]} +{"6003085": ["3", "2", "3", "2", "2", "2", "1"]} +{"3005281": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002503": ["3", "3", "3", "3", "2", "3", "2"]} +{"1004998": ["1", "1", "3", "1", "2", "3", "1"]} +{"7003717": ["3", "3", "3", "3", "3", "3", "3"]} +{"8003585": ["2", "2", "3", "3", "3", "3", "2"]} +{"4002663": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003404": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1003550": ["3", "2", "3", "3", "2", "3", "2"]} +{"4002461": ["3", "3", "3", "3", "3", "3", "3"]} +{"2003396": ["3", "3", "3", "3", "3", "3", "3"]} +{"0005178": ["3", "3", "1", "3", "3", "3", "2"]} +{"1006002": ["3", "2", "3", "3", "2", "3", "2"]} +{"5001308": ["3", "3", "2", "3", "3", "2", "2"]} +{"8002163": ["3", "3", "3", "3", "2", "3", "2"]} +{"2004977": ["3", "3", "3", "3", "1", "3", "2"]} +{"6004842": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005231": ["1", "1", "3", "1", "2", "3", "1"]} +{"3003028": ["3", "3", "3", "3", "3", "3", "3"]} +{"0006585": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003737": ["3", "3", "3", "3", "1", "3", "2"]} +{"2005574": ["3", "3", "3", "3", "2", "3", "2"]} +{"3004168": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"8003670": ["1", "2", "3", "3", "1", "3", "1"]} +{"3006120": ["3", "3", "3", "3", "2", "3", "2"]} +{"0003523": ["3", "3", "1", "3", "2", "3", "2"]} +{"8003676": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005289": ["3", "3", "2", "3", "1", "3", "2"]} +{"1006759": ["3", "1", "3", "1", "1", "3", "1"]} +{"7003949": ["3", "3", "3", "3", "3", "2", "2"]} +{"7003489": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0006635": ["3", "3", "2", "3", "1", "3", "2"]} +{"6002591": ["3", "1", "3", "1", "1", "3", "1"]} +{"8001306": ["3", "2", "3", "2", "1", "3", "1"]} +{"2007942": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"1005584": ["3", "2", "3", "2", "3", "3", "2"]} +{"4002763": ["3", "3", "3", "3", "3", "2", "2"]} +{"6004019": ["3", "2", "3", "2", "3", "2", "2"]} +{"3003861": ["3", "3", "2", "3", "3", "3", "2"]} +{"2004255": ["3", "3", "3", "3", "1", "3", "1"]} +{"2007076": ["3", "3", "3", "3", "3", "3", "3"]} +{"3003191": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006909": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003235": ["3", "3", "3", "3", "3", "3", "3"]} +{"6003136": ["3", "3", "3", "2", "3", "1", "2"]} +{"2006094": ["3", "3", "3", "3", "3", "3", "3"]} +{"1005928": ["3", "2", "3", "2", "1", "3", "2"]} +{"4003119": ["2", "2", "3", "2", "1", "3", "1"]} +{"6003627": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005131": ["3", "3", "3", "3", "3", "3", "3"]} +{"2007330": ["3", "3", "3", "3", "3", "2", "3"]} +{"3003214": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003214": ["3", "3", "3", "3", "1", "3", "2"]} +{"3006440": ["3", "2", "3", "3", "2", "2", "2"]} +{"4002114": ["3", "3", "3", "3", "2", "3", "2"]} +{"6004942": ["2", "3", "3", "3", "1", "3", "2"]} +{"6003721": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003966": ["3", "3", "3", "3", "1", "3", "2"]} +{"2007903": ["3", "3", "3", "3", "1", "3", "1"]} +{"3003646": ["3", "3", "3", "3", "2", "2", "2"]} +{"3004770": ["3", "2", "3", "3", "1", "3", "2"]} +{"4003012": ["3", "2", "3", "3", "2", "3", "2"]} +{"1006736": ["3", "2", "2", "3", "2", "3", "2"]} +{"3005086": ["2", "2", "3", "3", "2", "3", "2"]} +{"6002926": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3003754": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"3005024": ["3", "3", "3", "3", "2", "3", "3"]} +{"3005756": ["3", "3", "3", "3", "3", "3", "3"]} +{"4003058": ["3", "2", "3", "3", "3", "3", "2"]} +{"1003314": ["-1", "-1", "-1", "-1", "-1", "-1", "-1"]} +{"0005230": ["3", "3", "2", "3", "3", "3", "2"]} +{"2006403": ["2", "3", "3", "3", "3", "3", "3"]} diff --git a/webpage/templates/display.html b/webpage/templates/display.html new file mode 100644 index 0000000000000000000000000000000000000000..ecc6b4d9ef2b762b914f59c934c62abe2f7028ec --- /dev/null +++ b/webpage/templates/display.html @@ -0,0 +1,161 @@ + + + + Annotating Videos + + + + + + + +

Input Prompt:
{{text_prompt}}

+ +
+

Least index of
incomplete video
:
{{ unanswered_least_idx+1 }}

+

Current progress:
{{ current_idx+1 }}/{{end_index+1 }}

+
+ + + Turn to: + +
+
+ + +
+ {% if vid_name in answered_vid_list %} +

Answered.

+
+

("3": Good, "2":Average, "1": Bad
"-1": reported as problematic.)

+ + + + + + + + +
visual/optical quality {{ current_answers[0] }}objects consistency {{ current_answers[1] }}
dynamic degree {{ current_answers[2] }}motion smoothness {{ current_answers[3] }}
text-to-video alignment {{ current_answers[4] }}factual consistency {{ current_answers[5] }}
overall score {{ current_answers[6] }}
+
+ {% else %} +

Not answered.

+ {% endif %} +
+ +
+
+ + + + + +
+ (If you think this text prompt is unclear or meaningless or it contains toxic content, + or that you can't see the video, or the video contains toxic content, + you can click the botton above to report problem and skip this video.) +
+
+
+ +
+
+ + + +
+ (If you want to revisit the welcome page, you can log out at any time, the progress will be saved.)
+
+ +
+
+
+ + + + +
+
+ +
+ + + +
+ {{ before_start_anno | safe }} +
+ + {% for que_idx in range(num_que) %} +
+ {{ subscore_def[que_idx] | safe }} +
+ {% endfor %} + + +
+ 1. visual quality + + + +
+ + +
+ 2. object consistency + + + +
+ + +
+ 3. dynamic degree + + + +
+ + +
+ 4. motion smooth + + + +
+ + +
+ 5. text alignment + + + +
+ + +
+ 6. fact consistency + + + +
+ + +
+ 7. overall score + + + +
+ +
+ +
+
+
+ + + + + diff --git a/webpage/templates/display_zh.html b/webpage/templates/display_zh.html new file mode 100644 index 0000000000000000000000000000000000000000..3fb48863a788b4aef473a1ed9e6a682bb1892663 --- /dev/null +++ b/webpage/templates/display_zh.html @@ -0,0 +1,165 @@ + + + + 视频标注页 + + + + + + + + +

文本提示词:
{{text_prompt}}

+ +
+

未标注或答案不完整的
最靠前的视频
:
{{ unanswered_least_idx+1 }}

+

当前进度
{{ current_idx+1 }}/{{end_index+1 }}

+
+
+ + + 转到: + +
+
+
+ +
+ {% if vid_name in answered_vid_list %} +

已标注

+
+ ("3": 好, "2": 一般, "1": 差,"-1":有问题已反馈)
+ + + + + + + + +
观感质量 {{ current_answers[0] }}物体一致性 {{ current_answers[1] }}
动态程度 {{ current_answers[2] }}运动流畅度 {{ current_answers[3] }}
符合文本提示词 {{ current_answers[4] }}符合事实逻辑 {{ current_answers[5] }}
整体得分 {{ current_answers[6] }}
+
+ {% else %} +

未标注

+ {% endif %} +
+ +
+
+ + + + + +
+ (如果您认为该文本提示词表达不清楚,或包含有害内容, + 或视频无法加载,或视频包含有害内容, + 可以点击上面的按钮报告问题并跳过该视频。) +
+
+ + +
+
+ + + + +
+ (您可以点击“上一个”按钮来查看您的答案。) +
+
+ +
+
+ + + +
+ (如果需要查看欢迎页面上每个小分的定义和示例,可以随时退出,进度会被保存。)
+
+ + +
+ + + +
+ {{ before_start_anno | safe }} +
+ + {% for que_idx in range(num_que) %} +
+ {{ subscore_def[que_idx] | safe }} +
+ {% endfor %} + + +
+ 1. visual quality + + + +
+ + +
+ 2. object consistency + + + +
+ + +
+ 3. dynamic degree + + + +
+ + +
+ 4. motion smooth + + + +
+ + +
+ 5. text alignment + + + +
+ + +
+ 6. fact consistency + + + +
+ + +
+ 7. overall score + + + +
+ +
+ +
+
+
+ + + + + diff --git a/webpage/templates/html_text_en/align.txt b/webpage/templates/html_text_en/align.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c369a5522695b92138b792c5430a02ee5b719f4 --- /dev/null +++ b/webpage/templates/html_text_en/align.txt @@ -0,0 +1,12 @@ +
+

5. Text-to-video alignment

+Expected Case:
+The characters, objects, motions, events etc. +that are mentioned in text input prompts all exist reasonably.
+Error points:
+(a) The people and objects in prompt do not appear in video
+(b) The actions and events in prompt do not appear in video
+(c) The number, size, shape, color, state, movement and other attributes of the objects in the video do not match the prompt
+(d) Text mentioned in prompt is not displayed correctly in the video, such as "a placard saying 'No Smoking'" but "No Smoking" is not spelled correctly in the video
+(e) The video format (such as width, height, screen ratio, duration) does not match the format in prompt.
+
\ No newline at end of file diff --git a/webpage/templates/html_text_en/dynamic.txt b/webpage/templates/html_text_en/dynamic.txt new file mode 100644 index 0000000000000000000000000000000000000000..6e884630cb189837b4e003931930bd62db7237af --- /dev/null +++ b/webpage/templates/html_text_en/dynamic.txt @@ -0,0 +1,9 @@ +

3. Dynamic degree

+Expected Case:
+(1) The video is obviously not static, +the people or objects or the video screen is dynamic.
+(2) The video can be easily distinguished from a static image.
+
+Note
+You are supposed to focus on only dynamic degree, regardless of the visual quality and video content
+
diff --git a/webpage/templates/html_text_en/factual.txt b/webpage/templates/html_text_en/factual.txt new file mode 100644 index 0000000000000000000000000000000000000000..be3154e5d751ef1bebb5b4323e571f59f7ceac0f --- /dev/null +++ b/webpage/templates/html_text_en/factual.txt @@ -0,0 +1,26 @@ +

6. Factual consistency

+Expected Case:
+(1) Overall appreance and motion are consistent with our common-sense, +physical principles, moral standards, etc.
+
+Error points:
+(a) static ones: Content in video goes against common sense in life, +such as lighting a torch in the water, standing in the rain but not getting wet, etc.
+(b) static ones: The size, color, shape and other basic properties of objects violate scientific principles
+(c) dynamic ones: The overall movement of people or objects violates common-sense and laws of physics, +such as spontaneous upward movement against gravity, abnormal water flow, etc.
+(d) dynamic ones: Partial movements of people or objects violate common-sense and laws of physics, +such as the movement of hands or legs is anti-joint, etc.
+
+Notes:
+**Relation with '5. text-to-video alignment':
+Some text prompts express fictional and unrealistic content, +for example, "a dog plays the guitar in the sky" or "an astronaut rides a horse in space", +In this case, regardless of the veracity of the text prompt, +you should only consider whether the other content in the video makes sense.
+**Modification:
+In the new definition, we no longer consider the relation between +{fact consistency, object consistency} and {fact consistency, motion smoothness}, +once the content and footage of video are against our common-sense or some science facts, +we should consider it as “avg” or “bad”, unless the text prompt itself is unrealistic or ficitional.
+
\ No newline at end of file diff --git a/webpage/templates/html_text_en/factual_old.txt b/webpage/templates/html_text_en/factual_old.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e4f489efb9700b0890f2e1cfd012a4461b8e13e --- /dev/null +++ b/webpage/templates/html_text_en/factual_old.txt @@ -0,0 +1,38 @@ +

6. Factual consistency

+Expected Case:
+(1) Overall appreance and motion are consistent with our common-sense, +physical principles, moral standards, etc.
+
+Error points:
+(a) static ones: Content in video goes against common sense in life, +such as lighting a torch in the water, standing in the rain but not getting wet, etc.
+(b) static ones: The size, color, shape and other basic properties of objects violate scientific principles
+(c) dynamic ones: The overall movement of people or objects violates common-sense and laws of physics, +such as spontaneous upward movement against gravity, abnormal water flow, etc.
+(d) dynamic ones: Partial movements of people or objects violate common-sense and laws of physics, +such as the movement of hands or legs is anti-joint, etc.
+
+Notes:
+**Relation with '2. object consistency':
+ it cause people or objects to suddenly appear or disappear +due to poor object consistency. In this case, you should ignore things that appear or disappear suddenly +and only judge whether the other content is consistent with common sense.
+**Relation with '4. motion smoothness':
+ unsmooth movements may lead to violating common sense, +for example, laggy movements may result in +"a bear has more than four legs" or "a running figure appears to be suspended in the air", +In this case, you should only consider whether the state or direction of the object's motion +is consistent with common sense.
+**Relation with '5. text-to-video alignment':
+Some text prompts express fictional and unrealistic content, +for example, "a dog plays the guitar in the sky" or "an astronaut rides a horse in space", +In this case, regardless of the veracity of the text prompt, +you should only consider whether the other content in the video makes sense.
+**In summary, factual consistency sub-score is designed to distinguish videos +that looks clear, smooth, and stable +but whose content is inconsistent with common sense or science. +Thus for visual-bad, unsmooth and inconsistent videos, +you should only pay attention to whether the content expressed in video +aligns well with common-sense and should not worry too much +about local blurring or deformation.
+
\ No newline at end of file diff --git a/webpage/templates/html_text_en/motion.txt b/webpage/templates/html_text_en/motion.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba11f3334efde60c2ebb3213bb404c2dcd885243 --- /dev/null +++ b/webpage/templates/html_text_en/motion.txt @@ -0,0 +1,13 @@ +

4. Motion smoothness

+Expected Case:
+(1) The appearance of video as well as the movements of humans and objects are smooth and natural.
+
+Error points:
+(a) the appearance of video is laggy and un-smooth,
+(b) local small scale deformation of human or objects due to the motion
+(for large scale deformation, the video should also be rated as bad in "1. visual quality"),
+(c) local dislocation or disconnection of human body or objects due to motion.
+
+Note
+**For a video almost static or with small dynamic degree, as long as it does not have error points, then it should be scored as good.
+
diff --git a/webpage/templates/html_text_en/object.txt b/webpage/templates/html_text_en/object.txt new file mode 100644 index 0000000000000000000000000000000000000000..c30ae03a7c88ab49022bd336807f492a6eaa775e --- /dev/null +++ b/webpage/templates/html_text_en/object.txt @@ -0,0 +1,11 @@ +

2. Object consistency

+Expected Case:
+(1) The main objects, main characters and overall appearance +are consistent across the video.
+
+Error points:
+(a) The person or object suddenly disappears or appears
+(b) The type or class of objects has obvious changes
+(c) There is an obvious switch in the screen shot
+(d) The appearance of person or character in video has obvious changes
+
\ No newline at end of file diff --git a/webpage/templates/html_text_en/overall.txt b/webpage/templates/html_text_en/overall.txt new file mode 100644 index 0000000000000000000000000000000000000000..db7d443e21ff2eb2e2bb014759e6688b079edee5 --- /dev/null +++ b/webpage/templates/html_text_en/overall.txt @@ -0,0 +1,3 @@ +

7. Overall score

+

How would you rating this video for the +overall quality based on your watching experience?

\ No newline at end of file diff --git a/webpage/templates/html_text_en/start.txt b/webpage/templates/html_text_en/start.txt new file mode 100644 index 0000000000000000000000000000000000000000..67110f88081ada1f9d71bfaaa4154872e80acb0e --- /dev/null +++ b/webpage/templates/html_text_en/start.txt @@ -0,0 +1,21 @@ +

Before Start:

+(1) It's highly recommended to do Pre-Annotating Trial before main annotation,
+the 5-10 representative videos with reference answers can help refine your understanding of sub-scores. +
+(2) When answering each sub-score, you should only focus on that +aspect and should not be affected by other aspects.
+(3) You can submit answers for several times, we'll take the final version.
+(4) scoring standards
+Good:The video matches the "Expected case" very well, +, there is no "error point" and video quality is not affected
+Average: There is one not too severe "error point", +which have affected the video quality to some extent.
+Bad:The video is very inconsistent with "Expected case". +There are one or more obviously severe "error points" that have greatly affected the video quality
+(5) Quick pipeline for answering each video
+Check the "error point" list
+| -> if there is no "error point" in video, select Good.
+| -> if there is one "error point" in video, generally we select Average, unless you think the 'error point' is severe then you should select Bad.
+| -> if there is more than one "error point" that is obvious ans severe in video, select Bad +
+
\ No newline at end of file diff --git a/webpage/templates/html_text_en/visual.txt b/webpage/templates/html_text_en/visual.txt new file mode 100644 index 0000000000000000000000000000000000000000..20f1db4b42c9f211fc66780d465b63b061245a95 --- /dev/null +++ b/webpage/templates/html_text_en/visual.txt @@ -0,0 +1,16 @@ +

1. Visual quality

+Expected Case:
+(1) The video looks clear and normal on its appearance.
+(2) The features like Brightness, Contrast, Color, etc, are appropriate and stable.
+
+Error point:
+(a) local obvious unclear or blurry,
+(b) too low resolution,
+(c) some speckles or black patches,
+(d) appearance of video is skewed and distorted,
+(e) unstable optical property, such as brightness, contrast, saturation, exposure etc,
+(f) flickering color of main objects and background
+
+Note:
+**Some videos have watermark, we can ignore that.
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/align_zh.txt b/webpage/templates/html_text_zh/align_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..02d70b76b7c9239c0b5f7d608f888702671f433e --- /dev/null +++ b/webpage/templates/html_text_zh/align_zh.txt @@ -0,0 +1,11 @@ +
+

5. 符合文本提示词 Text-to-video alignment

+视频应该是:
+(1) 视频内容与文本提示词(text prompt)符合得很好,视频中人、物体、动作、事件等提到的要素,在视频中都有表现。
+错误点
+(a) 文本中的人或物在视频中没有出现
+(b) 文本中的动作或事件等在视频中没有出现
+(c) 视频中物体虽出现,但数量、外观、形态、运动等属性和文本提示词不符合
+(d) 文本提示词提到的文字,在视频中没有正确显示,比如“一个写着‘禁止吸烟’的标语牌”但视频中“禁止吸烟”没有正确显示
+(e) 实际视频的格式(比如长、宽、屏幕比例、时长等)与文本提示词中要求的格式不符
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/dynamic_zh.txt b/webpage/templates/html_text_zh/dynamic_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..84a173b932ad1acb3e5318f3d582caae5ed5d06c --- /dev/null +++ b/webpage/templates/html_text_zh/dynamic_zh.txt @@ -0,0 +1,8 @@ +

3. 动态程度 Dynamic degree

+视频应该是::
+(1) 视频明显不是静止的,人或物或画面都是动态的。
+(2) 视频可以与静止的图片区很容易地区分开。
+
+注意
+请只关注视频的动态程度如何,不应在意观看质量和视频内容等
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/factual_zh.txt b/webpage/templates/html_text_zh/factual_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..29968cd634eb756b9adb7df84be5085dc40f300a --- /dev/null +++ b/webpage/templates/html_text_zh/factual_zh.txt @@ -0,0 +1,20 @@ +

6. 符合事实逻辑 Factual consistency

+视频应该是:
+(1) 视频画面和表达的内容符合生活常识、科学原理等。
+
+错误点
+(a) 静止的错误点:视频中内容违背生活常识,比如火把在水中点燃,站在雨中但没有淋湿等;
+(b) 静止的错误点:物体的大小、颜色、形态等静止的基本性质违反科学原理;
+(c) 动态的错误点:人或物的整体运动违背常识或物理规律,比如反重力地自发向上运动,液体反常地流动等;
+(d) 动态的错误点:人或物的局部动作违背常识或物理规律,比如手或腿的运动是反关节的等等。
+注意
+**和文本对齐度(text-to-video alignment)的关系: +有些文本提示词(text prompt)会表达虚构和非现实的内容, +比如“一只狗在天上弹吉他”或“宇航员在太空中骑马”, +请忽略这种情况,您应该考虑视频中的其他内容是否符合常识。
+**一些修改:
+在新的定义中,我们不再考虑{事实一致性、对象一致性}和 +{事实一致性、运动平滑度}之间的关系, +一旦视频的内容和镜头违背我们的常识或某些科学事实, +我们就应该考虑把它标为“一般”或“差”,除非文本提示词本身是不现实的或虚构的。
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/factual_zh_old.txt b/webpage/templates/html_text_zh/factual_zh_old.txt new file mode 100644 index 0000000000000000000000000000000000000000..7797a38c340a44b5337aa70d4b570a6abfd45383 --- /dev/null +++ b/webpage/templates/html_text_zh/factual_zh_old.txt @@ -0,0 +1,24 @@ +

6. 符合事实逻辑 Factual consistency

+视频应该是:
+(1) 视频画面和表达的内容符合生活常识、科学原理等。
+
+错误点
+(a) 静止的错误点:视频中内容违背生活常识,比如火把在水中点燃,站在雨中但没有淋湿等;
+(b) 静止的错误点:物体的大小、颜色、形态等静止的基本性质违反科学原理;
+(c) 动态的错误点:人或物的整体运动违背常识或物理规律,比如反重力地自发向上运动,液体反常地流动等;
+(d) 动态的错误点:人或物的局部动作违背常识或物理规律,比如手或腿的运动是反关节的等等。
+注意
+**和物体一致性(object consistency)的关系:
+如果有人或物突然出现或消失, +在这种情况下,您应该忽略突然出现或消失的事物,判断其他内容是否符合常识。
+**和动作流畅度(motion smoothness)的关系:
+某些视频中不流畅的动作可能会导致违背常识逻辑的画面, +比如卡顿的动作可能导致“一只熊像有超过四条腿”或“跑步的人好像悬浮在空中”, +在这种情况下,无论运动的流畅度如何,您应该考虑物体运动的状态或走向是否符合常识。
+**和文本对齐度(text-to-video alignment)的关系: +有些文本提示词(text prompt)会表达虚构和非现实的内容, +比如“一只狗在天上弹吉他”或“宇航员在太空中骑马”, +请忽略这种情况,您应该考虑视频中的其他内容是否符合常识。
+**总结:factual consistency小分被设计专门用来区分出看似清晰、流畅、稳定但是表达内容与常识或科学不符的视频, +因此对于不清晰、不流畅、不稳定的视频,您应该关注视频表达的内容是否符合常识,不应该因视频局部模糊或变形而过多烦恼。
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/motion_zh.txt b/webpage/templates/html_text_zh/motion_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee0b132fe31eb1b522885b34ba319a740e6f1ffd --- /dev/null +++ b/webpage/templates/html_text_zh/motion_zh.txt @@ -0,0 +1,12 @@ +

4. 运动流畅度 Moiton smoothness

+视频应该是:
+(1) 视频画面以及人或物体的动作流畅不卡顿,没有因为运动变形。
+
+错误点
+(a) 视频画面卡顿或滞后,
+(b) 运动导致人或物体发生局部变形
+(如果变形扭曲的区域很大,比如整个画面,还应在“1.观感质量(visual quality)”中选择差。)
+(c) 局部因运动而错位或断裂。
+注意
+**对于那些几乎静止的错误点,只要它没有错误点,就应该被标记为‘好’
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/object_zh.txt b/webpage/templates/html_text_zh/object_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..f8e6d65176fb841629a2a396df910e9da4facc83 --- /dev/null +++ b/webpage/templates/html_text_zh/object_zh.txt @@ -0,0 +1,10 @@ +

2. 物体一致性 Objects consistency

+视频应该是:
+(1) 人或物在整个视频时长里是一致的
+
+错误点:
+(a) 画面中人或物体突然出现或突然消失
+(b) 物体的种类有明显变化
+(c) 画面镜头有明显的切换
+(d) 人的外表和形态有明显变化
+
diff --git a/webpage/templates/html_text_zh/overall_zh.txt b/webpage/templates/html_text_zh/overall_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..f6360ad4167d9eb56922f639fe35e79987830680 --- /dev/null +++ b/webpage/templates/html_text_zh/overall_zh.txt @@ -0,0 +1,2 @@ +

7. 整体得分(Overall score)

+

根据您的观看体验,如何评价该视频的整体质量?

\ No newline at end of file diff --git a/webpage/templates/html_text_zh/start_zh.txt b/webpage/templates/html_text_zh/start_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..6d916b52d47ecc39a182a7f0ee6d5f12115b9c1f --- /dev/null +++ b/webpage/templates/html_text_zh/start_zh.txt @@ -0,0 +1,20 @@ +

开始标注之前:

+(1) 我们十分建议您在开始正式标注之前进行预标注试验
+5-10个示例视频和参考答案会帮您更好理解每个小分的含义。 +
+(2) 回答每个问题时,应该只关注视频在该方面的表现,不应受到其他方面的影响。
+例如对“物体一致性(object consistency)”评分时,应关注 +是否有什么东西突然出现或消失,不应考虑视频中的运动流畅度(motion smoothness)、 +内容是否符合常识逻辑(factual consistency)等等。
+(3) 可以多次提交,我们会保留最后一次的结果。
+(4) 打分标准
+:符合“视频应该是:”中的描述,没有“错误点”,视频质量没有被影响
+一般:有一个不是很严重的“错误点”,比较影响视频质量
+:不符合“视频应该是:”中的描述,有单个或多个很明显的“错误点”,非常影响视频质量
+(5) 快速标注的流水线
+对照列出的“错误点”:
+| -> 没有错误点,选择“好”
+| -> 有一个错误点,通常选择“一般”,除非该错误点很严重,则选择“差”
+| -> 有多个错误点,选择“差”
+
+
\ No newline at end of file diff --git a/webpage/templates/html_text_zh/visual_zh.txt b/webpage/templates/html_text_zh/visual_zh.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd0392d9c0e0e57cb5100b9ecc3fca7ad9c996b3 --- /dev/null +++ b/webpage/templates/html_text_zh/visual_zh.txt @@ -0,0 +1,16 @@ +

1. 视觉质量 Visual quality

+视频应该是:
+(1) 清楚,没有模糊,没有扭曲,看起来是正常的
+(2) 亮度、对比度、颜色等等合适且稳定。
+
+错误点
+(a) 局部有明显模糊
+(b) 整体分辨率过低
+(c) 画面存在斑点或黑块
+(d) 画面倾斜或扭曲
+(e) 视频的亮度、对比度、饱和度等光学性质不稳定
+(f) 主体颜色和背景颜色明显不稳定
+
+注意:
+**一些视频有水印,我们应该忽略水印
+
\ No newline at end of file diff --git a/webpage/templates/pre_anno.html b/webpage/templates/pre_anno.html new file mode 100644 index 0000000000000000000000000000000000000000..d82046e47ef7dd4d018248220dd2913dea1f1e1e --- /dev/null +++ b/webpage/templates/pre_anno.html @@ -0,0 +1,98 @@ + + + + Pre-Annotating Trial + + + + + + + +

Input Prompt:
{{text_prompt}}

+ +
+

Current progress:
{{ current_idx+1 }}/{{end_index+1 }}

+
+ +
+ {% if vid_name in answered_vid_list %} +

Answered.

+
+ ("3": Good, "1": Bad, others in this order,
"-1": reported as problematic.)

+ + + + + + + + + +
aspect your answerreference
visual/optical quality {{ current_answers[0] }}{{ current_refs[0] }}
objects consistency {{ current_answers[1] }}{{ current_refs[1] }}
dynamic degree {{ current_answers[2] }}{{ current_refs[2] }}
motion smoothness{{ current_answers[3] }}{{ current_refs[3] }}
text-to-video alignment {{ current_answers[4] }}{{ current_refs[4] }}
factual consistency{{ current_answers[5] }}{{ current_refs[5] }}
overall score {{ current_answers[6] }}
+
+

+ {% else %} +

Not answered.

+ {% endif %} + +
+ +
+
+ + + +
+ (After answering each video question, you can click the "Last One" button + to view your most recentanswers and the recommended options we provide.) +
+
+ + +
+
+ + + +
+ (If you want to revisit the guidelines of each sub-score on welcome page, you can log out at any time.) +
+
+ +
+ + + +
+ {{ before_start_anno | safe }} +
+ + {% for que_idx in range(num_que) %} +
+ {{ subscore_def[que_idx] | safe }} +
+

+ +

+
+ {% if vid_name in answered_vid_list %} +

Reason: {{current_reasons[que_idx]}}

+ {% endif %} +
+
+ {% endfor %} + + +
+ +
+
+
+ + + + + diff --git a/webpage/templates/pre_anno_zh.html b/webpage/templates/pre_anno_zh.html new file mode 100644 index 0000000000000000000000000000000000000000..4041d6acc587039f77c24791f25363b2bdfa9f4e --- /dev/null +++ b/webpage/templates/pre_anno_zh.html @@ -0,0 +1,96 @@ + + + + 预标注页 + + + + + + + + +

Input Prompt:
{{text_prompt}}

+ +
+

当前进度:
{{ current_idx+1 }}/{{end_index+1 }}

+
+
+ {% if vid_name in answered_vid_list %} +

已标注

+
+ ("3": 好, "2":一般, "1": 差,"-1":有问题已反馈)
+ + + + + + + + + +
小分 您的回答参考回答
观感质量(visual quality) {{ current_answers[0] }}{{ current_refs[0] }}
物体一致性(objects consistency) {{ current_answers[1] }}{{ current_refs[1] }}
动态程度(dynamic degree) {{ current_answers[2] }}{{ current_refs[2] }}
运动流畅度(motion smoothness) {{ current_answers[3] }}{{ current_refs[3] }}
符合文本提示词(t2v alignment) {{ current_answers[4] }}{{ current_refs[4] }}
符合事实逻辑(factual consistency) {{ current_answers[5] }}{{ current_refs[5] }}
整体得分(overall score) {{ current_answers[6] }}
+
+ {% else %} +

未标注

+ {% endif %} + + +
+ + + +
+
+
+ (每回答完一个视频并提交后,您可以点击“上一个”按钮来查看您的答案和我们提供的推荐选项。) +
+
+ +
+
+ + + +
+ (如果需要查看欢迎页面上每个小分的定义和示例,可以随时退出,进度会被保存。) +
+
+ +
+ + + +
+ {{ before_start_anno | safe }} +
+ + {% for que_idx in range(num_que) %} +
+ {{ subscore_def[que_idx] | safe }} +
+

+ +

+
+ {% if vid_name in answered_vid_list %} +

原因: {{current_reasons[que_idx]}}

+ {% endif %} +
+
+ {% endfor %} + +
+ +
+
+
+ + + + + diff --git a/webpage/templates/validate.html b/webpage/templates/validate.html new file mode 100644 index 0000000000000000000000000000000000000000..e0031e886a1fbfc914db83e7ffe55fc0bbb625be --- /dev/null +++ b/webpage/templates/validate.html @@ -0,0 +1,158 @@ + + + + Video_Eval_Bench + + + + + + + +

Input Prompt:
{{text_prompt}}

+ + +
+

Current progress:
{{ current_idx+1 }}/{{end_index+1 }}

+
+
+ + + + Turn to: + +
+
+
+ +
+ + + + + +
+
+ +
+ +
+ +
+


+ ("3" means Good,
+ "1" means Bad, Others in this order):
+

+ +
+ + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + + {% for col in range(num_colm) %} + + {% endfor %} + + + + +
visual/optical quality {{ current_answers_all[col][0] }}
objects consistency {{ current_answers_all[col][1] }}
dynamic degree {{ current_answers_all[col][2] }}
motion smoothness {{ current_answers_all[col][3] }}
text-to-video alignment {{ current_answers_all[col][4] }}
factual consistency {{ current_answers_all[col][5] }}
overall score {{ current_answers_all[col][6] }}
+

+
+ + + + + + + diff --git a/webpage/templates/welcome.html b/webpage/templates/welcome.html new file mode 100644 index 0000000000000000000000000000000000000000..57e5778f4e427b8fdad31d0c8e5ee2c43bd2074d --- /dev/null +++ b/webpage/templates/welcome.html @@ -0,0 +1,337 @@ + + + + Video eval welcome page + + + + + + + +
+
+ +
+
+
+ +
+
+
+ Annotator Login +
+ Username:

+ +
+
+
+
+ + +
+
+
+ Validate +
+ Rootname:

+ +
+
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ +

Video_Eval_Bench: Guidelines before annotating

+
+ {{ before_start_anno | safe }} +
+ + +
+ {{ visual_def | safe}} +
+ +
+
+ +

Good

+
+
+ +

Average: There is a small amount of ambiguity at the edges of the video, + error point a, affecting video quality to some extent

+
+
+ +

Average: ovreall resolution is low, + error point b, affecting video quality to some extent

+
+
+ +

Bad: part of the video is unclear and it is obviously distorted, + error point b, d, affecting video quality greatly

+
+
+ +

Bad: The overall color, brightness and background of the video flickers heavily + , error point e, f, affecting video quality greatly

+
+ +
+ + +
+
+ {{ object_def | safe}} +
+ +
+
+ +

Good

+
+
+ +

Average: the main character in video is consistent, + but the things held in hands of character is changing quickly, + error point b, affecting video quality to some extent

+
+
+ +

Average: The little girl is consistent across the video but the butterfly appears suddenly, error point a, affecting video quality to some extent

+
+
+ +

Bad: The shape and size of the wine bottles are always changing, + and the goblet on the table suddenly appears and disappears, + error point a,b affecting video quality greatly

+
+
+ +

Bad: The face and look of the man are always changing quickly, + something like alien appears suddenly next to the man and then disappears. + error point a, d, affecting video quality greatly

+
+
+
+
+
+ +
+
+ {{ dynamic_def | safe}} +
+
+
+ +

Good, even motion of the man in video is not smooth

+
+
+ +

Average: video is not static but dynamic degree is still small

+
+
+ +

Average: video is not static but dynamic degree is still small

+
+
+ +

Bad: video is almost static

+
+
+ +

Bad: video is almost static

+
+
+ + +
+
+ {{ motion_def | safe}} +
+ +
+
+ +

Good

+
+
+ +

Average: motion of the man leads to some distortion, error point b, affecting video quality to some extent

+
+
+ +

Average: The motion of cat is laggy and un-smooth in the first half of video, error point a, affecting video quality to some extent

+
+
+ +

Bad: The motion of the girl is laggy and unsmooth, and leads to deformation, + error point a, b, affecting video quality greatly

+
+
+ +

Bad: The motion of the man leads to large deformation and disconnection of body, + error point b, c, affecting video quality greatly

+
+
+ + +
+
+ {{ align_def | safe}} +
+ +
+
+ +

Good

+
+
+ +

Average: prompt is "A golden retriever puppy holding a green sign that says 'NVIDIA ROCKS'", but the slogan is not spelled correctly in the video, + error point d, affecting video quality to some extent

+
+
+ +

Average: prompt is "A skull surrounded with smoke and fire", but fire is not expressed in the video, + error point a, affecting video quality to some extent

+
+
+ +

Bad: prompt is "tiger coming out from TV", but no tiger, error point a, + affecting video quality greatly +

+
+
+ +

Bad: prompt is "a beautiful broadcaster", but it's not expressed in video at all, error point a, + affecting video quality greatly +

+
+
+ +
+
+ {{ factual_def | safe }} +
+ +
+
+ +

Good

+
+
+ +

Average: the pear in bottom of video seems to hang in the air, error point b, + affecting video quality to some extent +

+
+
+ +

Bad: there exists a face of human on the leaves of plant, inconsistent with common sense, error point a, + affecting video quality greatly +

+
+
+ +

Bad: water flow is not realistic with physical principles, error point c, + affecting video quality greatly +

+
+
+ + + + + + + diff --git a/webpage/templates/welcome_zh.html b/webpage/templates/welcome_zh.html new file mode 100644 index 0000000000000000000000000000000000000000..0e8fc73bb19b94fa4008e242108f885387ff61d1 --- /dev/null +++ b/webpage/templates/welcome_zh.html @@ -0,0 +1,327 @@ + + + + 欢迎页 + + + + + + + +
+
+ +
+
+
+ +
+
+
+ 登录 +
+ 用户名:

+ +
+
+
+
+ + +
+
+
+ 验证 +
+ 管理员名称:

+ +
+
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+ {{ before_start_anno | safe }} +
+ + +
+ {{ visual_def | safe}} +
+ +
+
+ +

+
+
+ +

一般: 视频边缘有些许模糊,对应错误点a,比较影响视频质量

+
+
+ +

一般: 视频整体分辨率低,不清楚,对应错误点b,比较影响视频质量

+
+
+ +

差:视频整体不清晰且明显扭曲,对应错误点b,d,非常影响视频质量

+
+
+ +

差:视频的整体颜色、亮度和背景明灭闪烁严重,对应错误点e和f,非常影响视频质量

+
+ +
+ + +
+
+ {{ object_def | safe}} +
+ +
+
+ +

+
+
+ +

一般:视频中主要的人物是一致的,但是精灵手中拿的东西在不断变化,对应错误点b,比较影响视频质量

+
+
+ +

一般:视频中小女孩是一致的,但是蝴蝶突然出现后消失,对应错误点a,比较影响视频质量

+
+
+ +

差:酒瓶的形态和大小在一直在不断变化,而且桌上有酒杯突然出现和消失,对应错误点a,b,非常影响视频质量

+
+
+ +

差:视频中男人的脸和身体一直在突变, + 而且男人的右侧有个像外星人一样的东西突然出现和消失,对应错误点a,,非常影响视频质量

+
+
+ +
+
+
+ +
+
+ {{ dynamic_def | safe}} +
+
+
+ +

表现好的例子,尽管该视频的“动作流畅度”不好

+
+
+ +

一般:视频不是静止,但是动态程度很小

+
+
+ +

一般:视频不是静止,但是动态程度很小

+
+
+ +

差:视频几乎是静止的

+
+
+ +

差:视频几乎是静止的

+
+
+ + +
+
+ {{ motion_def | safe}} +
+ +
+
+ +

+
+
+ +

一般: 视频前半部分猫的动作有卡顿,对应错误点a,比较影响视频质量

+
+
+ +

一般: 人物的动作导致背景有些许变形,对应错误点b,比较影响视频质量

+
+
+ +

差:人物的运动卡顿十分不流畅,并且导致了身体的变形,对应错误点a和b,非常影响视频质量

+
+
+ +

差:人物的跳跃动作不流畅,导致腿部的变形和断位,对应错误点b和c,非常影响视频质量

+
+
+ + +
+
+ {{ align_def | safe}} +
+ +
+
+ +

+
+
+ +

一般:文本提示词中小狗举的牌子上有标语“NVIDIA ROCKS”,但是视频中标语没有正确显示, + 对应错误点d,比较影响视频质量

+
+
+ +

一般:文本提示词中提到了被烟雾和火焰包围的骷髅,但是视频中没有火焰, + 对应错误点a,比较影响视频质量

+
+
+ +

差:文本提示词中是“老虎从电视机中出来”,但是视频中没有老虎,对应错误点a, + 非常影响视频质量 +

+
+
+ +

差:文本提示词中是“一位美丽的播音员”,但是视频内容完全不符,对应错误点a, + 非常影响视频质量 +

+
+
+ +
+
+ {{ factual_def | safe }} +
+ +
+
+ +

+
+
+ +

一般:视频下方的一个梨像是悬浮在空中,对应错误点b,比较影响视频质量 +

+
+
+ +

差:视频中植物叶子上有一张脸,不符合常识,对应错误点a,非常影响视频质量 +

+
+
+ +

差:视频中倒出的饮料的流动是反常的,不符合常识,对应错误点c,非常影响视频质量 +

+
+
+ + + + + + + diff --git a/webpage/text_files/anno_rd1/sampled_id.json b/webpage/text_files/anno_rd1/sampled_id.json new file mode 100644 index 0000000000000000000000000000000000000000..b648552642b3c33224bbc59ef6097f1276692a8a --- /dev/null +++ b/webpage/text_files/anno_rd1/sampled_id.json @@ -0,0 +1,30004 @@ +{ + "sampled_id": [ + "3003896", + "6004706", + "3005501", + "3006574", + "0004967", + "3006567", + "0003932", + "1004008", + "7003149", + "2004026", + "7003127", + "7004568", + "3005850", + "6002242", + "7003834", + "6004970", + "1003252", + "3004363", + "7002777", + "2003226", + "4002552", + "8003618", + "2007645", + "0006234", + "4002383", + "3006164", + "6003361", + "3004732", + "1004951", + "2006703", + "7002917", + "4004659", + "2006559", + "2005855", + "4003468", + "7004466", + "2005340", + "8001951", + "3006315", + "1006647", + "0003965", + "3004607", + "2005217", + "0006847", + "1003067", + "0005939", + "1004374", + "3003186", + "4002344", + "1006109", + "1004704", + "3004712", + "7002776", + "8001800", + "3003280", + "7003835", + "2004265", + "2007015", + "6004547", + "1004783", + "2006662", + "0004068", + "3006767", + "4002970", + "6002305", + "5001071", + "1003518", + "3006984", + "0004678", + "6002047", + "4003830", + "3005138", + "5001238", + "1006633", + "7002929", + "1006839", + "8003288", + "2005507", + "8002939", + "5001012", + "8001626", + "3006008", + "1004125", + "3004173", + "4003460", + "1006492", + "1004089", + "2003892", + "8003729", + "0005023", + "1006366", + "3003369", + "2006409", + "2006579", + "6004290", + "3003098", + "3005036", + "7002885", + "8002745", + "4003812", + "6004885", + "6003816", + "6003241", + "6004654", + "1004943", + "0005353", + "4003801", + "1004000", + "2004366", + "1003264", + "7002887", + "4003356", + "8001965", + "6002120", + "0005279", + "1005715", + "3005723", + "8002702", + "3006347", + "3005479", + "3006844", + "0006786", + "3004378", + "3006412", + "0006405", + "8003569", + "2005437", + "1003018", + "1006952", + "0005311", + "7003373", + "7002119", + "3004631", + "0005889", + "0005313", + "0006124", + "2004176", + "6003372", + "1004885", + "8001540", + "3006062", + "6004661", + "8003330", + "7003201", + "5001626", + "5001208", + "0004974", + "6004349", + "4004800", + "2006591", + "7003339", + "7002146", + "6003586", + "1005113", + "3003713", + "2004649", + "4003103", + "8001988", + "2006204", + "8001383", + "6002632", + "7004523", + "0006587", + "8003767", + "7003474", + "8003714", + "8003651", + "5001754", + "1003907", + "7003956", + "5001643", + "2007367", + "1004413", + "0003562", + "4002024", + "3006258", + "1003522", + "1006744", + "6004187", + "0003129", + "6003462", + "5001267", + "7003102", + "8003216", + "6004293", + "1005363", + "2004502", + "8003725", + "6002073", + "1003239", + "6004075", + "6002898", + "8003707", + "1004080", + "6003126", + "2007551", + "0003380", + "4004326", + "2005881", + "6002572", + "0004333", + "5001180", + "3006422", + "5001639", + "4003426", + "4003806", + "2003770", + "6003533", + "7003517", + "0006001", + "7003047", + "0004782", + "6002161", + "5001416", + "2004465", + "3006790", + "8003272", + "0006174", + "0003830", + "8001094", + "0004819", + "1005032", + "7002674", + "0003048", + "1004078", + "8001099", + "0004989", + "7004733", + "6003340", + "4002606", + "8002846", + "3005472", + "0005940", + "2007675", + "6003772", + "7004868", + "1004027", + "6004883", + "4004827", + "2006505", + "3003238", + "8001438", + "0003738", + "8003923", + "2004410", + "2004244", + "1006265", + "2003375", + "6004775", + "1003453", + "1003225", + "0006058", + "3004189", + "7004551", + "2005354", + "7004821", + "1005372", + "2005199", + "2007728", + "7003371", + "0004315", + "8003020", + "0004791", + "6004011", + "8002381", + "2007846", + "3006449", + "2003139", + "3006616", + "1005757", + "1006268", + "8001698", + "1003112", + "8002265", + "3003898", + "7003891", + "7002879", + "4003753", + "5001207", + "7002833", + "2007934", + "4002585", + "2006975", + "4002857", + "1005692", + "2006933", + "3005234", + "4003431", + "6004784", + "3004746", + "2004199", + "7002732", + "6003441", + "4004976", + "4004191", + "8002571", + "2004708", + "7003535", + "3005209", + "2003675", + "4002506", + "8001262", + "6004843", + "8003197", + "2006161", + "5001318", + "3003109", + "0006665", + "3003444", + "3006021", + "8001017", + "2005139", + "3003115", + "0004064", + "7002642", + "4002840", + "2005429", + "8002521", + "6004509", + "2005457", + "2007981", + "2005491", + "0006867", + "0006479", + "8001530", + "4004648", + "2003739", + "6003804", + "4002179", + "3003737", + "1006742", + "0006098", + "2006737", + "4003514", + "8002007", + "3005655", + "8003444", + "8003231", + "3006227", + "7002914", + "7004772", + "2005011", + "7003424", + "1004782", + "3006092", + "2007132", + "7004272", + "0006784", + "6003135", + "0003617", + "1004897", + "2006377", + "3003060", + "2007294", + "2006729", + "0006286", + "8003086", + "2004111", + "6004667", + "4002191", + "2007789", + "8002502", + "2007584", + "2005039", + "0003371", + "2003237", + "6004965", + "6004308", + "3005856", + "6002235", + "8001946", + "2004066", + "5001758", + "4003207", + "2005068", + "6004614", + "2005774", + "2007512", + "4003093", + "8002189", + "2004301", + "5001379", + "6002705", + "0004491", + "0003609", + "7003217", + "3004326", + "1004491", + "3003582", + "2005350", + "6003855", + "2003896", + "1004253", + "8003687", + "1005701", + "3006727", + "3003514", + "4002390", + "0005480", + "2004409", + "3005188", + "3006071", + "0004402", + "1004098", + "2003093", + "3003516", + "8003813", + "6003364", + "4003384", + "4002833", + "3006070", + "2004093", + "7003967", + "2003273", + "6004856", + "2005882", + "8003654", + "3003422", + "1005979", + "6003834", + "6003517", + "3003163", + "2005876", + "7003954", + "0003530", + "7004233", + "1004917", + "0003188", + "4002092", + "2006372", + "0003368", + "4002113", + "4002541", + "6003602", + "2006141", + "7002462", + "0004830", + "1004899", + "1006039", + "7002529", + "4003285", + "7003824", + "1003766", + "4004538", + "8002962", + "3005864", + "0004659", + "4003809", + "3005415", + "6003409", + "2004570", + "1004039", + "0003327", + "1005745", + "0006894", + "7002585", + "8003097", + "3004100", + "0005813", + "2006615", + "6004254", + "8001709", + "4003132", + "3005112", + "7003762", + "1006916", + "8002639", + "3006505", + "0006082", + "4002047", + "4002662", + "8001117", + "8001305", + "4004953", + "7004951", + "6004618", + "2007538", + "0004668", + "4003762", + "1005213", + "0005154", + "5001299", + "0003559", + "1006547", + "6003576", + "2006452", + "6004497", + "1006552", + "6003642", + "3004021", + "8002574", + "3006902", + "1004250", + "6003825", + "2003203", + "7004048", + "2007485", + "3003390", + "4004214", + "2003269", + "3004065", + "0004239", + "8002382", + "2004353", + "1005603", + "2007879", + "6002631", + "2005770", + "4003588", + "4004512", + "0005218", + "6002449", + "4004062", + "7004122", + "8003988", + "4003191", + "3005341", + "3006757", + "0006897", + "1006556", + "7004771", + "1003491", + "2004614", + "0003000", + "3003939", + "2004293", + "2007546", + "7003414", + "0004723", + "6003236", + "8003797", + "3006055", + "7004059", + "3006800", + "1006260", + "1003267", + "2006147", + "4002876", + "3003285", + "2004646", + "2004899", + "7002058", + "6000005", + "0006697", + "7002632", + "0006510", + "3005607", + "3005063", + "8003656", + "0003462", + "3006536", + "0004449", + "3006066", + "1006364", + "4002610", + "2006576", + "6004689", + "2006112", + "3003825", + "0005307", + "8003230", + "1005709", + "1005139", + "3005712", + "8001714", + "7003969", + "7004024", + "3004666", + "1005177", + "2003192", + "8003309", + "1005176", + "1003835", + "1003332", + "4003404", + "8001782", + "4004502", + "8003322", + "8002292", + "8003479", + "2006525", + "2007582", + "2005490", + "4004420", + "6003413", + "4002470", + "7003518", + "0004650", + "2007225", + "4002243", + "6003026", + "8002821", + "4002475", + "1004368", + "4002971", + "2003266", + "4002069", + "6004235", + "1006063", + "3006053", + "0003413", + "2007152", + "0003927", + "1003915", + "7004546", + "2007570", + "1005314", + "1003689", + "0006303", + "6004774", + "2007382", + "6004401", + "7004678", + "3005926", + "4004615", + "0005810", + "0005876", + "2006715", + "0006094", + "2006066", + "2006728", + "4003078", + "6004635", + "0003501", + "0006529", + "4004081", + "2005145", + "8001329", + "4003517", + "8003334", + "2006833", + "3006408", + "3003456", + "2006873", + "0004489", + "0004893", + "2006393", + "6003171", + "0004077", + "4002722", + "6002134", + "2007553", + "0004930", + "7003333", + "2004051", + "0006818", + "2003907", + "2005412", + "0005861", + "1004501", + "8001472", + "7004079", + "1006931", + "1003497", + "0004902", + "6002633", + "5001201", + "0004067", + "4004822", + "8002180", + "7004687", + "7002878", + "1005669", + "3005777", + "3004096", + "3003800", + "6003077", + "1006287", + "2003228", + "4003159", + "2004602", + "4003396", + "6004761", + "0006450", + "2006765", + "7004857", + "3003968", + "8003264", + "0005187", + "0004978", + "6002576", + "4004970", + "2007598", + "1003296", + "8003710", + "8003362", + "5001458", + "5001224", + "0006520", + "2003312", + "3006419", + "1004431", + "2006807", + "7002775", + "4002224", + "3003269", + "3004391", + "0005571", + "7002076", + "1005869", + "2007988", + "2006022", + "2006616", + "8002444", + "0003698", + "0004371", + "0006237", + "0004557", + "8001845", + "2006920", + "1004043", + "7004377", + "2007944", + "7002039", + "5001035", + "0006207", + "7003135", + "4003990", + "6002835", + "4003814", + "7003326", + "6002694", + "8001151", + "1004912", + "0005067", + "4002598", + "3006027", + "3006577", + "2003370", + "1006530", + "6003311", + "6002921", + "2006809", + "6002581", + "2005112", + "2003674", + "8003756", + "1005378", + "6002093", + "7003347", + "4003647", + "3005547", + "6002627", + "6004348", + "8002907", + "7002111", + "3006225", + "7002676", + "8002151", + "4002128", + "7003432", + "4004901", + "0005833", + "3004889", + "8003615", + "1005212", + "6004246", + "0003511", + "3005693", + "6004262", + "1006689", + "7004718", + "7004671", + "8002202", + "8001963", + "0005397", + "2007097", + "0004242", + "1005253", + "6004116", + "0006208", + "2004399", + "6002427", + "3006319", + "3005480", + "6002987", + "1003474", + "2005497", + "5001459", + "1004735", + "6002732", + "5001470", + "4003844", + "7004797", + "3003704", + "1004211", + "1006691", + "4004567", + "5001063", + "6002262", + "0006089", + "3006426", + "6002606", + "8003449", + "3005172", + "2004069", + "6003968", + "8001749", + "4002336", + "6002351", + "2004267", + "8001804", + "0005317", + "2004207", + "8003335", + "7002563", + "1005132", + "3006923", + "1006443", + "3003143", + "2003427", + "0004105", + "0003468", + "3003712", + "2004630", + "8001997", + "4002759", + "0003067", + "2004157", + "3006826", + "1006067", + "7004834", + "2005590", + "3006283", + "5001751", + "3003549", + "7004989", + "8002153", + "0004309", + "2005709", + "1006159", + "3003029", + "7004062", + "6004947", + "3005223", + "2005934", + "1004242", + "3005330", + "3006791", + "3006550", + "7004200", + "0004466", + "0003876", + "8001173", + "3005304", + "8001771", + "1006739", + "6004096", + "6003407", + "1004841", + "6002767", + "8002992", + "2006353", + "2004025", + "8002917", + "1005802", + "6003338", + "7003189", + "0004465", + "0006899", + "5001562", + "0005327", + "2004396", + "7003627", + "1006814", + "3004617", + "3003481", + "2003448", + "6002839", + "8002672", + "2006470", + "2006189", + "2004912", + "1004162", + "2004108", + "7002647", + "6003984", + "3004947", + "0006640", + "3005091", + "7003214", + "7004295", + "2007391", + "6002618", + "7004335", + "4002193", + "8003298", + "1006709", + "2005999", + "6003666", + "6004823", + "2007743", + "3003729", + "1003080", + "2003130", + "8003652", + "5001826", + "3004257", + "7004683", + "3003612", + "1006805", + "2006951", + "6004228", + "7002489", + "2006260", + "2005664", + "1004498", + "1005376", + "8001882", + "2005918", + "1004956", + "8003237", + "2005822", + "7004779", + "3004911", + "8001287", + "8002924", + "6004342", + "5001975", + "2007286", + "7003012", + "5001159", + "2006781", + "8002437", + "3006333", + "0006018", + "6003323", + "2003534", + "2007820", + "2005936", + "2006645", + "4002955", + "3006105", + "1006605", + "3006327", + "8001251", + "4003791", + "5001817", + "2004417", + "4004674", + "0003094", + "3005374", + "3003559", + "3004237", + "7004132", + "8002509", + "3003165", + "2005308", + "4002320", + "4004769", + "0006219", + "8002279", + "2004185", + "0006830", + "3004303", + "2006385", + "7003488", + "4002699", + "4003970", + "3005978", + "2007702", + "4004345", + "2004065", + "6004927", + "8002388", + "4004893", + "1006261", + "8003619", + "3005659", + "2007372", + "3005044", + "1003525", + "1003548", + "8002097", + "8001273", + "3004278", + "6003067", + "8001552", + "0005079", + "6002173", + "0005400", + "3006704", + "1003344", + "8003586", + "3006831", + "2004561", + "1004862", + "7002895", + "6002003", + "6004284", + "2004358", + "0003585", + "8003411", + "7004685", + "6003971", + "7002164", + "7004313", + "7003425", + "6002030", + "1003137", + "0004822", + "5001031", + "0003453", + "2003104", + "8001675", + "0004512", + "4003747", + "2004629", + "0004415", + "2003985", + "6003675", + "2006276", + "7004880", + "4002192", + "1003340", + "0003595", + "0003673", + "8002954", + "6003690", + "7002306", + "3006700", + "1006554", + "4002419", + "1003393", + "3006079", + "3006701", + "2005441", + "1005834", + "6004079", + "8001012", + "4002519", + "6003524", + "0006031", + "6002223", + "3004491", + "1004113", + "2006117", + "8001536", + "7002595", + "1004157", + "4002604", + "7004586", + "4004728", + "4002875", + "1006347", + "0005277", + "1003779", + "7003485", + "1004936", + "6003163", + "2007524", + "2004777", + "6002749", + "5001867", + "2006142", + "4003361", + "0006149", + "6002260", + "0003200", + "2007399", + "2005606", + "0006337", + "8003397", + "0006952", + "4003521", + "6004402", + "3004992", + "8002923", + "1006207", + "4004212", + "7003922", + "6004165", + "3006627", + "6004592", + "1006279", + "7002644", + "7003003", + "5001900", + "6003529", + "6004865", + "3003991", + "0006613", + "3005838", + "4003447", + "5001839", + "8002960", + "1005564", + "3006664", + "2007121", + "2005874", + "3005151", + "2004969", + "2005721", + "6004455", + "0003146", + "3006257", + "0004369", + "8001342", + "7004439", + "5001439", + "6002403", + "7003539", + "7002606", + "0005830", + "6004282", + "4003978", + "5001882", + "3006635", + "3006298", + "1006188", + "5001230", + "4004230", + "3004765", + "7004052", + "1004209", + "3005244", + "4002831", + "1004456", + "0003882", + "5001685", + "1005419", + "7002538", + "6004804", + "7003073", + "2003547", + "1004049", + "6004020", + "3006121", + "4003864", + "0006410", + "1003304", + "8001943", + "2005763", + "7003610", + "2006049", + "3004369", + "7004527", + "4003493", + "0003340", + "6002435", + "5001067", + "3006799", + "8003605", + "6004899", + "7004578", + "3005832", + "3006599", + "7003525", + "0004165", + "1006714", + "0003022", + "6003922", + "6002329", + "7003730", + "2007323", + "1003857", + "1006472", + "6003722", + "0006811", + "2004057", + "2007768", + "4003458", + "1003673", + "7004218", + "5001697", + "4002132", + "2007495", + "4003836", + "2004882", + "7003631", + "8001915", + "2004204", + "0004700", + "5001204", + "3005627", + "6004050", + "1003090", + "3004135", + "4004074", + "1005195", + "0005259", + "2005607", + "2007922", + "8002695", + "1004279", + "4004513", + "0006608", + "2004744", + "7003028", + "4002619", + "8003289", + "2004795", + "1003188", + "7002407", + "0003883", + "0004183", + "4003680", + "6004849", + "8003921", + "0003554", + "4002504", + "2005699", + "6003903", + "0004753", + "2006140", + "4003375", + "8003519", + "6004676", + "2004803", + "2003246", + "4003760", + "0005704", + "2004089", + "2007772", + "6003256", + "0006628", + "0004582", + "0004428", + "4004363", + "2006698", + "1004010", + "0003124", + "8001727", + "7003133", + "0004417", + "7004055", + "8001591", + "4004190", + "5001771", + "6003440", + "4004314", + "2007467", + "7002943", + "4004270", + "1006504", + "4003627", + "1004282", + "0003407", + "5001787", + "0005501", + "0006699", + "2005320", + "0004921", + "2004652", + "2006838", + "1006398", + "3003046", + "8003221", + "1004090", + "7004275", + "3003337", + "3004970", + "2006053", + "2004647", + "4003249", + "2004966", + "2005022", + "3004905", + "3004030", + "2004877", + "5001116", + "2005154", + "1006594", + "6002286", + "1005299", + "3006594", + "1004432", + "1004118", + "7004192", + "6002275", + "7004837", + "2005235", + "0005859", + "7003435", + "1004451", + "2003754", + "2004091", + "5001293", + "8001451", + "0005675", + "0004954", + "1006182", + "5001220", + "0004404", + "1005284", + "2004896", + "1005863", + "7004393", + "1003773", + "4003912", + "1006070", + "7004120", + "6002152", + "6004460", + "7003115", + "3004382", + "5001559", + "0005854", + "2007178", + "8003712", + "6003908", + "1005110", + "3006591", + "1006724", + "8002004", + "7002527", + "3005060", + "3005808", + "0004445", + "3006073", + "2004009", + "3005095", + "0003766", + "1004260", + "1004842", + "4003177", + "1005208", + "5001325", + "7002254", + "3005283", + "0004502", + "2004001", + "0006829", + "2006175", + "6003271", + "6003518", + "1003091", + "0005424", + "2006539", + "0004401", + "4003268", + "4004815", + "1006949", + "3006309", + "0004194", + "3004292", + "2007619", + "1004121", + "0006117", + "3004509", + "7002423", + "2003489", + "4002935", + "7002476", + "5001886", + "6002916", + "7003203", + "4004842", + "6002561", + "7002539", + "0005436", + "0005851", + "8001810", + "4002285", + "7004231", + "2007704", + "3005322", + "8002359", + "2005027", + "8003931", + "3006629", + "3004777", + "2007149", + "4002035", + "0005755", + "4002687", + "2003050", + "1005460", + "8003281", + "5001783", + "3006553", + "5001537", + "0003179", + "5001602", + "0005063", + "7002486", + "6002859", + "8002861", + "1006820", + "1003288", + "8003545", + "1003126", + "2007874", + "2007172", + "2003342", + "3005446", + "3003405", + "7004232", + "1004342", + "8002205", + "4002078", + "2004665", + "8002305", + "3005924", + "0004571", + "0003120", + "6003511", + "2005414", + "1004051", + "3004087", + "8003626", + "2007637", + "2003131", + "2004084", + "2006065", + "7004602", + "8002110", + "3005487", + "5001171", + "6002956", + "7004488", + "4003870", + "3003550", + "1006200", + "8002493", + "2004408", + "3005351", + "6003226", + "3006255", + "5001816", + "8001581", + "7003872", + "0004731", + "0004901", + "3003277", + "4004543", + "8003096", + "2004045", + "7002911", + "1006298", + "2007217", + "2006133", + "2007599", + "0006461", + "0003633", + "1004652", + "3004744", + "6004155", + "1005185", + "7003788", + "4004422", + "0004615", + "8001922", + "8002440", + "4004244", + "6002437", + "1003782", + "6003596", + "3006537", + "1004583", + "4003725", + "2007966", + "6004386", + "7002607", + "7003894", + "5001764", + "2005241", + "3003254", + "7002359", + "0006275", + "0005093", + "1006116", + "1004328", + "3004622", + "8001904", + "1003108", + "0006783", + "4003408", + "6002881", + "1005930", + "2005831", + "3004029", + "0005211", + "0006444", + "4003509", + "1006467", + "8001622", + "2006110", + "2003879", + "6004446", + "3006540", + "8002904", + "3004146", + "1003512", + "0005558", + "4003701", + "3006600", + "0006578", + "7004138", + "3003700", + "2005519", + "3005016", + "1006373", + "7003030", + "0004606", + "3004920", + "8001655", + "2005755", + "0003343", + "1005652", + "2006641", + "3004056", + "7003309", + "4003511", + "1005099", + "2004062", + "4002612", + "2005044", + "3003113", + "4003351", + "1005097", + "3004307", + "6003259", + "2007655", + "4003434", + "3003592", + "1003948", + "1006031", + "8003276", + "0005371", + "6002459", + "4002691", + "4003156", + "4002158", + "2005625", + "6002897", + "2005438", + "7003850", + "3003352", + "1003357", + "0004899", + "6003945", + "5001215", + "1005916", + "6002054", + "1004570", + "2007856", + "7003205", + "8001113", + "2004349", + "1006855", + "7003837", + "2003580", + "5001276", + "1003068", + "1005503", + "0004959", + "1005783", + "4004379", + "4002956", + "4004685", + "1006049", + "0005024", + "8002740", + "7002854", + "1005210", + "7004850", + "0006024", + "2003194", + "8001781", + "2005510", + "0006171", + "1004357", + "0004146", + "4003187", + "2005626", + "2005532", + "2006190", + "1004447", + "7004501", + "6002185", + "0003558", + "2007355", + "8003991", + "1004970", + "0003839", + "8003966", + "0003916", + "4002930", + "2007464", + "2004414", + "3006999", + "6002755", + "6004216", + "2005481", + "4004430", + "4004065", + "1006532", + "7002912", + "1004512", + "4004458", + "4003869", + "1004886", + "8003250", + "2003588", + "1004119", + "7004106", + "3005042", + "4002794", + "6002103", + "0003290", + "8003274", + "1003802", + "7002312", + "0006741", + "3005324", + "0003126", + "7002807", + "7004279", + "4004918", + "2006837", + "2005442", + "4004241", + "2005064", + "1004418", + "6004808", + "2004020", + "0006400", + "3005026", + "2007541", + "0006457", + "3003149", + "0003915", + "2006682", + "7003881", + "1004665", + "1006955", + "3003972", + "0003793", + "6002018", + "2003020", + "2003962", + "1005969", + "3005167", + "4002771", + "3006723", + "0004161", + "0006851", + "6004720", + "4004522", + "2003336", + "4003614", + "2007228", + "7002027", + "4004870", + "6004675", + "0004435", + "2007289", + "1004618", + "0005224", + "7004453", + "0003746", + "4002141", + "0003954", + "8003979", + "0004765", + "8002280", + "5001662", + "2007625", + "0006968", + "4003684", + "6003575", + "3005639", + "8001559", + "3004049", + "4003794", + "0006828", + "7002619", + "2005486", + "8003932", + "5001887", + "3003199", + "0004188", + "0004971", + "4003409", + "8003331", + "6002229", + "0005976", + "1006288", + "4004098", + "4002489", + "6003416", + "6004740", + "4003311", + "7004182", + "3004869", + "1006702", + "1003749", + "2003931", + "1005609", + "1004700", + "1003280", + "3006657", + "3003697", + "3005568", + "3004873", + "7003005", + "2007329", + "0006825", + "7004750", + "1003638", + "3003742", + "6004291", + "7003325", + "7002889", + "6004350", + "8002449", + "4004580", + "0004279", + "0005595", + "1006692", + "2005273", + "3006377", + "3004715", + "7002780", + "7002216", + "0006266", + "3004164", + "8001925", + "7003084", + "6002851", + "7003532", + "2004056", + "2005717", + "5001213", + "0004413", + "0003282", + "2004290", + "2003320", + "7004245", + "0005563", + "3004033", + "4002666", + "8001679", + "1005001", + "7002055", + "4002487", + "3004587", + "2003206", + "8002512", + "0006214", + "6003689", + "8003232", + "7003957", + "0003621", + "3006012", + "2004659", + "7004595", + "3005685", + "1005785", + "3003433", + "7002741", + "2003458", + "6002384", + "8002397", + "4003998", + "1004147", + "2004943", + "8003662", + "2006415", + "1003742", + "0003333", + "6002894", + "8001223", + "1003745", + "7004736", + "8001960", + "6002689", + "6003006", + "6002733", + "1006584", + "2006675", + "1004621", + "2005209", + "1003507", + "8003368", + "7004317", + "6004442", + "8003249", + "8002775", + "7002936", + "2004521", + "0004240", + "4002978", + "1006908", + "8003351", + "2003444", + "2004033", + "2005411", + "1006670", + "4002218", + "6002846", + "3006959", + "3005052", + "3005123", + "2004928", + "7004309", + "8002487", + "7003771", + "1003660", + "1003619", + "7002708", + "2007793", + "2005562", + "2003078", + "5001640", + "3003489", + "2007460", + "6004537", + "7002165", + "3003887", + "8001199", + "8003286", + "3004832", + "3005393", + "3006666", + "4002019", + "4003910", + "2003858", + "0005243", + "0006860", + "2007230", + "3005481", + "8003488", + "8001937", + "6004331", + "3003848", + "4004164", + "7004331", + "3005963", + "4004126", + "8001402", + "0006223", + "1006678", + "1006772", + "4004236", + "1004189", + "3006825", + "6004274", + "7003568", + "0004664", + "4002644", + "4004209", + "2003806", + "7004060", + "3006145", + "7002913", + "2005325", + "4003439", + "2004116", + "5001727", + "0004825", + "7004251", + "3004226", + "2004832", + "7002235", + "6004872", + "4002838", + "1006058", + "3003775", + "1006292", + "4004408", + "2007332", + "4002134", + "2005953", + "1006481", + "2003979", + "2004331", + "1005767", + "4004261", + "3004827", + "3005909", + "1003277", + "3006814", + "7003537", + "0005363", + "3004531", + "3004644", + "0005298", + "0006670", + "8002050", + "6004276", + "7004624", + "2003870", + "0005784", + "6002640", + "3005072", + "0005853", + "2004828", + "2007696", + "8002384", + "0004722", + "4002418", + "7004001", + "0004237", + "8001956", + "0003890", + "2005738", + "3003256", + "8001093", + "6002647", + "1004467", + "0006947", + "8002777", + "3005162", + "4003158", + "8003473", + "3004825", + "7004862", + "4002253", + "1004207", + "8001220", + "3003416", + "1004984", + "2007423", + "6003828", + "6002441", + "4002802", + "6004700", + "8003879", + "2006004", + "2007433", + "3006773", + "3004081", + "2005346", + "0006694", + "6004065", + "4002713", + "4004775", + "6004314", + "2007364", + "7003987", + "8002914", + "8001535", + "3003711", + "4002911", + "6004982", + "1005130", + "4002782", + "3003529", + "8002212", + "4004317", + "7002245", + "2005752", + "8001007", + "3004990", + "1004651", + "1003731", + "0003176", + "1004797", + "4002890", + "3004805", + "8003560", + "0006280", + "7003437", + "8001063", + "0006382", + "3003675", + "4003418", + "6002320", + "1005251", + "7002868", + "8003478", + "3004623", + "3006343", + "0006641", + "7004502", + "2007303", + "3005310", + "6002401", + "2005030", + "2006864", + "1004770", + "0006281", + "2005055", + "2004162", + "2006347", + "0003786", + "4002748", + "6004103", + "6002795", + "1004452", + "3005701", + "1006696", + "4003582", + "6003735", + "7004075", + "0006176", + "1005026", + "3003426", + "3006334", + "2005153", + "3004793", + "6003676", + "3004337", + "1005994", + "3004651", + "6003967", + "8002017", + "7004698", + "0003588", + "1003323", + "0003003", + "6004441", + "0003412", + "7004925", + "8003961", + "3005074", + "6002691", + "6004633", + "1006009", + "4004951", + "1004938", + "7003324", + "1005312", + "7003831", + "2003294", + "0003415", + "1003935", + "3004720", + "3005921", + "1006121", + "1004911", + "2003238", + "2007688", + "2006155", + "8003116", + "7003184", + "3005718", + "0004529", + "4003321", + "3003107", + "6003974", + "3003479", + "7002454", + "6002497", + "2007059", + "4004696", + "1006216", + "3004157", + "0003460", + "7004259", + "2006017", + "7002907", + "4004866", + "2007798", + "1006167", + "4004992", + "1003187", + "8002009", + "4002910", + "2004040", + "5001555", + "1004296", + "6002815", + "7004444", + "3003072", + "2004192", + "6002585", + "3004048", + "3005023", + "8002303", + "6004863", + "1005879", + "7002427", + "2005366", + "4004331", + "1004182", + "3005957", + "7003976", + "6002762", + "8003243", + "2004714", + "6002368", + "4002667", + "4004453", + "3003735", + "0003966", + "0004854", + "4003430", + "8003542", + "8001543", + "3005826", + "0004035", + "2007646", + "4002730", + "2003888", + "6002140", + "3004127", + "2003423", + "7004147", + "3006107", + "3004581", + "1004755", + "3004250", + "2003329", + "2003152", + "6002954", + "6004607", + "4004215", + "3005252", + "6002492", + "4003726", + "3003684", + "7002698", + "1003878", + "2005014", + "0005532", + "2007648", + "0003096", + "6002688", + "2007949", + "5001808", + "8002207", + "4004256", + "6003601", + "1003980", + "1004991", + "2006032", + "1003441", + "7003854", + "3003291", + "1005373", + "3006965", + "1005647", + "7002891", + "0004121", + "7003645", + "3005059", + "4002546", + "7002634", + "0005450", + "6004702", + "7003740", + "7003890", + "3003847", + "8003754", + "8001847", + "0003114", + "2007787", + "7003292", + "8002060", + "4002061", + "6003317", + "2005214", + "2006527", + "8001803", + "0005600", + "1006699", + "6003791", + "7004958", + "2005627", + "3003780", + "1004101", + "1006795", + "3004293", + "0003961", + "8001652", + "2007713", + "0004969", + "1003738", + "2006869", + "7003232", + "4003703", + "0003783", + "6004602", + "6002669", + "6003742", + "2007191", + "2003327", + "8002260", + "2005563", + "4002432", + "2003742", + "1006636", + "8001873", + "1006553", + "8002863", + "1003898", + "2005135", + "1004766", + "0005733", + "7003773", + "3003408", + "2007892", + "8001743", + "7003297", + "1004386", + "1004023", + "2003585", + "2007548", + "8002386", + "0006013", + "7002944", + "1003022", + "1005198", + "3006884", + "1006665", + "4002053", + "0004553", + "2004322", + "2006025", + "8002862", + "7004480", + "0003487", + "4003149", + "7003180", + "5001502", + "4004679", + "8001324", + "5001395", + "0005208", + "3006746", + "2003776", + "6004147", + "6002907", + "6003281", + "2003040", + "0006594", + "4004348", + "1003770", + "2006326", + "0003571", + "4003860", + "1006284", + "4003731", + "4002328", + "3006969", + "0006312", + "2003497", + "4002171", + "2005355", + "8002293", + "4004854", + "8003902", + "6002145", + "2006463", + "3004507", + "3004163", + "6002432", + "1005151", + "2003946", + "4002976", + "2006986", + "8001628", + "2006440", + "2003598", + "4002783", + "2004405", + "2004585", + "1003373", + "6004432", + "1004096", + "5001377", + "6002500", + "8001920", + "6002636", + "7003340", + "0006491", + "8003004", + "2007443", + "0004362", + "4002355", + "3003739", + "2004419", + "8001022", + "2004299", + "1005006", + "7004419", + "2003582", + "4002410", + "6004850", + "0005060", + "2004012", + "8001426", + "6004527", + "8001976", + "3004541", + "1005009", + "4003716", + "6003665", + "0005954", + "8002750", + "2003420", + "6003522", + "1005066", + "8001331", + "3005474", + "6004710", + "4003977", + "3004820", + "4002617", + "1006727", + "1006396", + "3006434", + "2005409", + "0005382", + "1003377", + "5001845", + "0005754", + "2004442", + "1006479", + "2005619", + "0005170", + "2006596", + "8003629", + "3003377", + "4003405", + "1006249", + "8003148", + "3006199", + "6002510", + "6003625", + "6004456", + "1006001", + "5001842", + "2007719", + "2007971", + "3005998", + "8002135", + "7003306", + "8002008", + "6003598", + "8002899", + "6004142", + "0005361", + "3003043", + "6002069", + "7003117", + "0005725", + "0006932", + "8003377", + "0006309", + "6002892", + "2005568", + "3005203", + "7003105", + "4004048", + "0006034", + "3005732", + "3005357", + "8001218", + "8002374", + "6003964", + "8003172", + "6003605", + "5001117", + "4003536", + "6002553", + "2007549", + "7004947", + "7003731", + "7003648", + "3006039", + "6002574", + "1004256", + "2005221", + "6004017", + "6002149", + "2005798", + "4003649", + "2004925", + "1005967", + "2003070", + "7002060", + "2005743", + "7003770", + "6003333", + "6004179", + "2006858", + "3006732", + "2007826", + "8002915", + "2007126", + "2005119", + "3006958", + "8002149", + "1006164", + "1003863", + "4003450", + "4003136", + "8002409", + "1006238", + "3003373", + "7003210", + "6002438", + "8003089", + "3003268", + "2006610", + "0003021", + "4002961", + "1006599", + "8003394", + "7004045", + "8001035", + "4003751", + "4002496", + "7003938", + "8002269", + "8002001", + "3004988", + "2003513", + "1004733", + "3003844", + "7002274", + "2004357", + "2003229", + "0004555", + "0005711", + "0005670", + "2006433", + "3006207", + "4004226", + "8003783", + "7003777", + "7004288", + "8003972", + "0005205", + "2004480", + "1004767", + "1006129", + "3005785", + "6003318", + "8003709", + "0005215", + "1006169", + "0006285", + "2007815", + "3003436", + "0005203", + "2003004", + "2006732", + "2006714", + "0004321", + "3004074", + "2003364", + "1004684", + "7002805", + "8001999", + "0005756", + "2006020", + "2007716", + "1003879", + "0004584", + "0005263", + "3006975", + "3006061", + "5001036", + "4003122", + "7002648", + "3004994", + "6002179", + "7002154", + "3003300", + "6004930", + "3006977", + "7003264", + "3005967", + "4003964", + "2004165", + "1004935", + "2005418", + "7002343", + "0005734", + "7004948", + "0004924", + "3005810", + "2003712", + "6002221", + "1005740", + "2007031", + "3006180", + "5001522", + "7004427", + "1003702", + "1005489", + "3006744", + "7003664", + "0004278", + "3003900", + "1005586", + "4002797", + "2006602", + "2004740", + "4002842", + "0005212", + "8003468", + "2007990", + "1006153", + "1003752", + "4002597", + "6002779", + "4002116", + "7003828", + "2007845", + "0004890", + "8001172", + "0003975", + "2005866", + "0006953", + "0005729", + "0005318", + "4004476", + "7004080", + "1004515", + "7003841", + "6002306", + "2004339", + "8001468", + "3005990", + "0006145", + "5001129", + "3003613", + "2005379", + "7002233", + "6002139", + "1004741", + "1003637", + "6002628", + "6003650", + "1003719", + "0006047", + "4004201", + "1006047", + "1003786", + "2007677", + "1005336", + "6004503", + "2007941", + "1006299", + "7004743", + "0003450", + "1005416", + "7004401", + "0003286", + "4004962", + "5001982", + "0006611", + "0003866", + "2006039", + "2006290", + "0006588", + "5001292", + "8001359", + "2005295", + "4004254", + "8001850", + "6004410", + "1003848", + "5001099", + "2005074", + "1005371", + "5001532", + "3003798", + "0006080", + "2006054", + "8003185", + "2003447", + "3005155", + "5001691", + "8002579", + "2005494", + "8001168", + "0006052", + "7003250", + "3003228", + "2005791", + "6003313", + "6003003", + "4002254", + "7004838", + "2006941", + "4004888", + "3006807", + "6003247", + "3004205", + "3005033", + "7002470", + "1004316", + "2007975", + "4004500", + "3006480", + "2003394", + "2004428", + "7003070", + "2006717", + "2005103", + "1004601", + "1003093", + "3005500", + "1006305", + "3005170", + "4003168", + "8002908", + "4002673", + "1004416", + "5001894", + "3005409", + "7004767", + "7004872", + "1003655", + "2006045", + "1005932", + "0006468", + "7002495", + "2006448", + "3004706", + "2003151", + "7004798", + "2004698", + "6004370", + "2005382", + "1004878", + "6003348", + "0004468", + "4003967", + "2004203", + "1006183", + "6002362", + "1004226", + "0004226", + "7004026", + "7003888", + "8002261", + "5001789", + "3004493", + "0004613", + "8003986", + "0006202", + "3003068", + "6002366", + "8001808", + "0006875", + "3004505", + "2004082", + "2004139", + "0004904", + "1003201", + "2003168", + "3004109", + "1004500", + "5001155", + "1005004", + "5001166", + "6004833", + "3005438", + "2005540", + "3003027", + "4004529", + "2003939", + "2007931", + "7002925", + "3005464", + "4004972", + "8001532", + "2006917", + "2004746", + "0006888", + "2004117", + "2004115", + "2005814", + "1005941", + "1003082", + "8002735", + "3003308", + "1005133", + "3004390", + "2007740", + "8002529", + "8002742", + "1006440", + "3005057", + "8002618", + "2003638", + "1005743", + "1003206", + "4002704", + "7003169", + "8003675", + "2005449", + "0004230", + "8003448", + "1005693", + "8001348", + "4002766", + "8001088", + "4002907", + "4004597", + "7002614", + "2003524", + "2006871", + "0006866", + "1006401", + "4004019", + "0006011", + "2005445", + "6002908", + "4003453", + "4003402", + "4003540", + "0005083", + "0003756", + "4002874", + "2003197", + "2004702", + "6004151", + "6003579", + "1006180", + "2005234", + "1006420", + "6003597", + "3003976", + "1004840", + "2004464", + "4003215", + "2005599", + "1003862", + "1005688", + "2006322", + "1006592", + "4002455", + "1004685", + "0005928", + "6002009", + "2003597", + "3006942", + "7002872", + "5001261", + "2006118", + "3006167", + "4002950", + "7004616", + "1004567", + "2007435", + "3003693", + "2006151", + "0003408", + "1004559", + "6003900", + "0003898", + "7004830", + "3006022", + "7004786", + "0003582", + "0003291", + "2004871", + "6004037", + "0006062", + "2007732", + "7002691", + "4003675", + "1004193", + "3003461", + "2006575", + "5001421", + "0004467", + "0005104", + "1003625", + "1003216", + "0006609", + "3004368", + "7003739", + "2007741", + "2006900", + "2004580", + "2004893", + "8002934", + "1003832", + "3004518", + "8003491", + "4004982", + "2007231", + "3005158", + "3005422", + "0006354", + "1004194", + "1005493", + "5001507", + "4003898", + "3005193", + "2005117", + "4002505", + "2006213", + "2003536", + "3005094", + "3003120", + "6003435", + "8002285", + "2003429", + "3006295", + "3003759", + "4004670", + "2005746", + "6003737", + "5001006", + "4002032", + "4004995", + "4002646", + "3005767", + "7004651", + "0003507", + "2003150", + "2006274", + "3006857", + "7004509", + "4004628", + "0006858", + "7003563", + "1005655", + "0003241", + "6003230", + "8003439", + "7003094", + "1003140", + "0003092", + "8003314", + "8003623", + "0004796", + "1006730", + "4002725", + "6002901", + "6002588", + "2006187", + "7003454", + "4004140", + "0005094", + "2007269", + "1003461", + "5001846", + "4004036", + "2003240", + "7004962", + "0003525", + "8003247", + "3004834", + "8003653", + "2006123", + "4003331", + "5001675", + "5001294", + "4002682", + "8001637", + "0004804", + "1006573", + "7003756", + "0004839", + "1005349", + "2003196", + "1004309", + "5001163", + "0003483", + "0006494", + "6002444", + "2005988", + "7004739", + "7004667", + "7004881", + "8001627", + "2004985", + "7003142", + "8003186", + "2004566", + "3004113", + "0004686", + "6003195", + "7003737", + "8002508", + "3006011", + "1004834", + "2005007", + "1003131", + "4003318", + "7002126", + "2006757", + "0005440", + "4003069", + "8003050", + "3003271", + "2007636", + "0006928", + "3005565", + "0006308", + "1005934", + "0003603", + "4004614", + "8001482", + "8001081", + "6004628", + "8002089", + "3003220", + "2005204", + "1004758", + "6003057", + "1006445", + "6004415", + "8003013", + "5001337", + "5001187", + "4003128", + "0003425", + "3005399", + "2003422", + "5001898", + "1003890", + "0003539", + "2004720", + "1004593", + "3006153", + "7003346", + "7003597", + "7002375", + "3006253", + "4003163", + "6003209", + "7003555", + "2007227", + "3004585", + "1005261", + "2005908", + "4003501", + "7004507", + "5001873", + "0003729", + "1006022", + "1006894", + "8002613", + "2004215", + "3003136", + "8001453", + "3004796", + "0003548", + "1003540", + "0004264", + "4004027", + "2004840", + "0004259", + "2005205", + "8002385", + "0003871", + "6002942", + "0004397", + "1006192", + "4004000", + "7004425", + "3005296", + "3006695", + "7003043", + "8003154", + "2004671", + "4003496", + "2007216", + "3003846", + "2004682", + "7003144", + "7002861", + "0005309", + "0005654", + "1003220", + "4002459", + "0006911", + "6003847", + "0005796", + "2003695", + "1006883", + "2003143", + "4002515", + "0005379", + "3006638", + "0004393", + "1003324", + "0006351", + "7003694", + "8002968", + "6004136", + "3004449", + "7002155", + "3006877", + "2005053", + "4004223", + "4004021", + "7002311", + "1004751", + "4003344", + "2003847", + "1006449", + "2006965", + "7002388", + "1005725", + "3006476", + "2004835", + "1003750", + "4004365", + "2003107", + "1005126", + "6004280", + "7004187", + "6003660", + "1004990", + "7004950", + "2004377", + "8003001", + "2005921", + "4002787", + "1005682", + "2005495", + "7002533", + "1004269", + "2007092", + "3006003", + "2007387", + "4003956", + "0006937", + "2003380", + "6002310", + "2004965", + "2004335", + "1004542", + "4003374", + "2004541", + "6002150", + "3006287", + "8002692", + "3006932", + "8001550", + "8002456", + "0005952", + "6004328", + "6004320", + "7002690", + "3006311", + "3003303", + "6004524", + "6004353", + "8003899", + "4003314", + "4002913", + "2004717", + "5001784", + "5001133", + "4003235", + "7003718", + "4003288", + "1003351", + "8002668", + "6003956", + "5001417", + "8003341", + "3005031", + "3003448", + "3006170", + "3006363", + "7003768", + "3005927", + "1004297", + "7004499", + "7002641", + "3006626", + "1005073", + "8002503", + "6002833", + "3004492", + "6004913", + "0005708", + "1005435", + "3003454", + "8003631", + "0005059", + "3006194", + "1005605", + "4004537", + "3003615", + "7003657", + "1003843", + "3006854", + "3005450", + "6002055", + "8002209", + "0003638", + "0005658", + "2006304", + "0003759", + "8003645", + "8002438", + "3004423", + "4003516", + "4004213", + "4002932", + "3006897", + "3003767", + "3004565", + "2005276", + "2003550", + "4002362", + "3006579", + "7003709", + "1006815", + "5001385", + "4003420", + "2007705", + "3005371", + "2003548", + "4003489", + "1003852", + "3006272", + "2003731", + "8001919", + "5001479", + "1006510", + "4002895", + "6003680", + "6003940", + "2003683", + "4003602", + "8001933", + "0006943", + "0006632", + "6004354", + "5001665", + "2003711", + "5001591", + "2005270", + "0005764", + "3005215", + "7003774", + "6002656", + "6002491", + "2003759", + "2005612", + "6003624", + "2005259", + "0005774", + "3004258", + "7004399", + "3005268", + "8002557", + "4003002", + "2005722", + "1006476", + "2007013", + "4004975", + "6002760", + "1003433", + "4002643", + "3006494", + "6004754", + "8003245", + "0005757", + "2007878", + "5001226", + "8002038", + "8003019", + "4003771", + "2003484", + "6004059", + "7004664", + "0004377", + "7004744", + "6004940", + "5001344", + "0006147", + "4002112", + "0005953", + "2005010", + "8002965", + "1003602", + "2006170", + "1005211", + "6003580", + "2003108", + "6004846", + "4004484", + "6004299", + "7004344", + "4002323", + "4002801", + "5001066", + "0004008", + "5001054", + "4003607", + "2007237", + "3006688", + "6003021", + "3004217", + "2003293", + "2004903", + "1003295", + "4002569", + "1004159", + "0005010", + "5001737", + "6002765", + "0003287", + "1004502", + "1005579", + "2007486", + "3004014", + "4004359", + "8003691", + "6004873", + "6004263", + "1003591", + "6004595", + "1003840", + "2007398", + "4004534", + "1006737", + "6002665", + "2005050", + "3004329", + "4003937", + "7002656", + "2006842", + "0004411", + "8002107", + "8001487", + "6004637", + "8002170", + "7002214", + "1004771", + "5001944", + "5001286", + "1006965", + "3005766", + "7003227", + "3004772", + "8001539", + "7004033", + "3005985", + "1006740", + "2006515", + "8003480", + "1004499", + "1005862", + "5001306", + "6002706", + "1003308", + "7002500", + "4002089", + "0003229", + "0005017", + "8002593", + "6002559", + "4004796", + "2005946", + "7002115", + "3003226", + "2006457", + "2004136", + "3006097", + "6002383", + "1005308", + "1003011", + "2007764", + "4002151", + "1005754", + "7003728", + "8003749", + "6003083", + "4002226", + "2005641", + "0006408", + "2005370", + "7004063", + "6003730", + "6002740", + "7004050", + "8002104", + "5001136", + "1005377", + "4004450", + "4002516", + "8001753", + "1003776", + "0005306", + "6002790", + "6002545", + "2007962", + "2005211", + "1006534", + "1004740", + "7002825", + "0004052", + "0003191", + "0006679", + "6003213", + "3004901", + "3003779", + "6003934", + "2007946", + "0003998", + "7004942", + "7003004", + "2005534", + "4003800", + "4002465", + "5001169", + "1003967", + "2007773", + "7004658", + "3004273", + "2003662", + "7003575", + "2003614", + "7002153", + "1005108", + "4004961", + "3004220", + "8002504", + "6004032", + "1004625", + "3003692", + "6004552", + "4002005", + "8001968", + "3003304", + "5001141", + "6004984", + "8001731", + "3005912", + "2005374", + "4004028", + "8002675", + "2007437", + "8003255", + "6003694", + "0003110", + "2003188", + "2005836", + "3005902", + "2004952", + "2007327", + "8003235", + "0006097", + "8003495", + "8003716", + "0004213", + "1005694", + "6004463", + "7003088", + "2007283", + "3006195", + "7004961", + "1003895", + "6004734", + "3006103", + "7004339", + "1004934", + "6002386", + "2004547", + "6004716", + "4004773", + "4004152", + "6003496", + "2004106", + "8002851", + "6003901", + "3003419", + "1003307", + "1005786", + "7003363", + "0006000", + "2004772", + "2007761", + "3004922", + "0003322", + "1005038", + "0006792", + "0006960", + "2006294", + "1005065", + "6002958", + "0006040", + "2003506", + "1004702", + "3003916", + "6004874", + "3003894", + "1004752", + "3003236", + "0006325", + "4004008", + "0004953", + "6004244", + "7003197", + "1003162", + "0006861", + "0003051", + "2003314", + "6003656", + "2007540", + "2006016", + "8003002", + "0003750", + "0003081", + "6002421", + "8001456", + "2005860", + "4002929", + "8003350", + "3005759", + "0003113", + "8003634", + "2007023", + "1003679", + "6004673", + "3006765", + "2007523", + "2005279", + "0006925", + "6004277", + "3003160", + "1003053", + "3004208", + "2007439", + "1003794", + "6002084", + "0006221", + "7004126", + "8001381", + "2005097", + "8003056", + "4004059", + "0005656", + "5001573", + "1006325", + "2003337", + "0003509", + "4003820", + "3005653", + "4002660", + "7004543", + "0003555", + "1005949", + "0004295", + "3003392", + "6003803", + "1006890", + "0006983", + "6004957", + "7003681", + "8003550", + "5001277", + "7002185", + "3004871", + "8002549", + "4002312", + "3004815", + "5001583", + "2007461", + "0005333", + "0005003", + "6003268", + "5001433", + "3006424", + "5001125", + "2005326", + "2004219", + "0005527", + "2005919", + "7004105", + "5001550", + "8002700", + "1005530", + "0003824", + "4003778", + "0003345", + "8003353", + "4003763", + "7004861", + "2007410", + "3006606", + "6003702", + "7002400", + "8001490", + "2003081", + "8002594", + "4004260", + "0004871", + "3004289", + "3005143", + "7004161", + "0003622", + "8001908", + "4004875", + "3004182", + "7002033", + "1004868", + "1003784", + "4003373", + "8001555", + "6004674", + "3004373", + "0003953", + "5001518", + "5001673", + "7002803", + "2006792", + "7003353", + "7004806", + "3005556", + "7004362", + "4003557", + "0006240", + "6004148", + "1005762", + "1003991", + "3006219", + "1005209", + "7002909", + "8002044", + "4002423", + "1003209", + "6002045", + "1003716", + "3005513", + "0005821", + "0003767", + "6002601", + "4004824", + "7002880", + "1005233", + "2003356", + "3006758", + "0005365", + "1003900", + "6002943", + "1006331", + "0006381", + "3005763", + "3003188", + "8001270", + "8003481", + "0005442", + "4002548", + "1003676", + "3004780", + "6003679", + "2003793", + "1005561", + "6004848", + "4002176", + "8003742", + "6003743", + "6002663", + "1005481", + "7002203", + "0005115", + "7002928", + "6003833", + "0006471", + "2006659", + "4003858", + "5001307", + "6002704", + "8003039", + "3004525", + "2003619", + "1006130", + "0003443", + "0004128", + "2003454", + "7004785", + "1006781", + "6004866", + "8002608", + "3004510", + "1005736", + "8002124", + "6002886", + "2007939", + "0006662", + "4004095", + "8001033", + "8002733", + "0006814", + "8003095", + "0004039", + "6003118", + "0003630", + "3004015", + "5001126", + "3003984", + "0003329", + "0003644", + "1004318", + "0006298", + "1006845", + "7004133", + "3003611", + "1006712", + "1004042", + "8001475", + "6002330", + "1003951", + "3003023", + "4004751", + "7003098", + "2006816", + "7003647", + "1003051", + "2004086", + "1005324", + "6003527", + "2007905", + "6004941", + "6004639", + "2006638", + "2004573", + "7002727", + "2006924", + "3005040", + "1003179", + "0004963", + "0005253", + "8001444", + "1005882", + "0003436", + "0006874", + "0003174", + "7004629", + "5001114", + "2003801", + "3006247", + "6004672", + "2003765", + "1005428", + "6003432", + "1005207", + "8002296", + "5001486", + "1003450", + "0003881", + "2007243", + "1004688", + "2005099", + "7003557", + "7003867", + "6004130", + "2003791", + "6003698", + "2007363", + "0006577", + "0005713", + "3005025", + "1006082", + "2003875", + "0004507", + "3004053", + "4003961", + "1006571", + "1006199", + "2004493", + "0006340", + "3006108", + "2003551", + "2004342", + "3003204", + "0005814", + "4003581", + "7003319", + "3003721", + "2004805", + "6004665", + "3004007", + "0003389", + "8003517", + "2006569", + "3006764", + "4002140", + "2003415", + "0003909", + "0005984", + "3005814", + "8002400", + "2006891", + "0005297", + "3005098", + "0004578", + "2007770", + "6002227", + "1006644", + "8001917", + "4003126", + "2006805", + "4002591", + "3004376", + "1003500", + "7003543", + "0005927", + "2006024", + "1005659", + "2007389", + "2007107", + "0003139", + "4003901", + "4003127", + "3004857", + "2005845", + "1003657", + "0006755", + "1004861", + "6004374", + "7004635", + "8003472", + "8002537", + "1004969", + "1006531", + "2007184", + "2007110", + "1004517", + "7002034", + "1003783", + "1006503", + "6004039", + "4003388", + "2007177", + "1004038", + "3004311", + "2005359", + "3005848", + "6002742", + "0006357", + "7002037", + "3003475", + "1003111", + "4002908", + "8003265", + "1005464", + "1005634", + "4002016", + "3005579", + "6003924", + "8001260", + "1006083", + "1004918", + "8001421", + "1003492", + "6003516", + "0006009", + "6004074", + "4004225", + "4003261", + "8003617", + "3006267", + "0006323", + "2007809", + "2003335", + "2003333", + "4002531", + "1004258", + "6004018", + "3006762", + "1005706", + "1003380", + "6002850", + "3005288", + "2004216", + "7003107", + "2006514", + "0006859", + "2003848", + "4003368", + "8003501", + "0003807", + "0003086", + "3003453", + "2003405", + "2003725", + "4003955", + "4003734", + "4004902", + "8002490", + "2004164", + "0004952", + "6002750", + "7002487", + "7003978", + "8003131", + "6004922", + "1005406", + "7002535", + "1006627", + "8003835", + "7002107", + "4004764", + "6004880", + "2003971", + "7003089", + "7002166", + "7004612", + "0003103", + "4004664", + "0004868", + "2003886", + "4002326", + "0006659", + "3006390", + "2007985", + "4004030", + "3006886", + "0004769", + "1004510", + "2006154", + "2004770", + "4004830", + "4003499", + "6004013", + "4002241", + "3005843", + "6004861", + "7002941", + "1005892", + "1006295", + "4004906", + "6003653", + "3004094", + "1005155", + "4003636", + "4004963", + "6002575", + "0003760", + "3005792", + "7004341", + "2003026", + "1003485", + "0003705", + "8003107", + "8001047", + "7003391", + "0003032", + "3005649", + "6002474", + "0004567", + "7004789", + "4003654", + "1003620", + "1004910", + "1006951", + "0004222", + "1004459", + "6003061", + "6003279", + "3003709", + "0003498", + "0006629", + "0006272", + "2004533", + "3006453", + "2003390", + "3005910", + "2003135", + "1004411", + "0006170", + "5001933", + "1003556", + "0005970", + "1003194", + "0003227", + "4003714", + "7003723", + "0006565", + "0003260", + "2004844", + "2006067", + "6002924", + "2006635", + "1006544", + "3004709", + "1006045", + "0004258", + "0005999", + "6004911", + "0003692", + "5001283", + "0004922", + "0003406", + "3004341", + "5001491", + "7002721", + "3004739", + "1004340", + "2005960", + "8001846", + "6002827", + "2006035", + "0005875", + "1006762", + "2004462", + "4003584", + "2004373", + "2006952", + "8001322", + "3003930", + "2003119", + "6004777", + "3005674", + "0004276", + "1003429", + "7004300", + "3005499", + "3003237", + "3004086", + "8002603", + "1005553", + "5001690", + "3003689", + "1005993", + "3004685", + "1005998", + "5001527", + "4004572", + "8001541", + "2003039", + "6003719", + "4002827", + "2005001", + "4003709", + "1005491", + "1005672", + "1006583", + "0006602", + "4002740", + "7003880", + "6004239", + "0004640", + "4003861", + "3003696", + "6004458", + "4002901", + "3005130", + "2004535", + "2006472", + "3005937", + "4002894", + "3003017", + "2003465", + "2007687", + "3006797", + "0005150", + "0005143", + "0004646", + "6004271", + "7002127", + "1003733", + "7003186", + "7002403", + "6002331", + "0005829", + "6003237", + "1005202", + "7004382", + "5001950", + "8003659", + "3003648", + "4003392", + "1005100", + "4004758", + "4002075", + "2006401", + "8003295", + "3006663", + "3006491", + "0003647", + "8003973", + "2007213", + "4004136", + "2004639", + "1006995", + "4004488", + "8001096", + "6003438", + "3003251", + "1004982", + "3005228", + "7003638", + "1004572", + "2006724", + "8002559", + "1005984", + "6004556", + "4002009", + "0004347", + "2005846", + "2004114", + "1006329", + "8003212", + "7002818", + "1004035", + "7004103", + "1006755", + "8003759", + "3003681", + "4002300", + "8002784", + "0005248", + "1003846", + "2004325", + "4002818", + "1003992", + "7004114", + "4002630", + "0006038", + "8001057", + "6004742", + "4004262", + "4004129", + "4004224", + "8001356", + "6003415", + "4002596", + "4004472", + "1004596", + "0003960", + "8001564", + "3006725", + "2003780", + "8002669", + "3004036", + "8002473", + "2006753", + "5001336", + "2005459", + "0004229", + "5001785", + "4003506", + "7003116", + "2003467", + "3003812", + "4003887", + "6003242", + "2005823", + "7003916", + "3006060", + "0004833", + "4004167", + "2005933", + "3006571", + "0006172", + "0005339", + "8001267", + "3004717", + "3003564", + "4004833", + "0006391", + "4003049", + "1005129", + "4004197", + "6002698", + "2005591", + "0006913", + "1003929", + "3006395", + "6002396", + "4002452", + "2006451", + "7004646", + "0003888", + "6004498", + "3005448", + "3006980", + "2007569", + "5001641", + "0006519", + "8001176", + "3004479", + "5001352", + "6002994", + "1004482", + "4004490", + "3003468", + "4004914", + "2007550", + "0005322", + "0004852", + "7004775", + "5001153", + "2003942", + "8003420", + "4002946", + "2006386", + "7004971", + "2007166", + "4004389", + "2003308", + "2005239", + "8001277", + "2006978", + "8001015", + "4002302", + "1004525", + "0003253", + "6004248", + "6002010", + "2004376", + "2006262", + "6004797", + "2006358", + "5001463", + "1006832", + "3004198", + "3003977", + "1003869", + "2003990", + "3006755", + "6002787", + "4002991", + "2004034", + "8003262", + "1005906", + "2004551", + "0005843", + "0005553", + "0006041", + "3005697", + "7004025", + "0005650", + "8001309", + "0003586", + "8002597", + "8003054", + "2005945", + "4003267", + "3003432", + "1005453", + "8003917", + "3004112", + "1005891", + "2003719", + "0004747", + "2007661", + "7004906", + "0003320", + "0003169", + "1004360", + "1004678", + "4002450", + "6002502", + "0005779", + "2004687", + "6004555", + "5001304", + "6003530", + "3003170", + "7003500", + "3005610", + "1006480", + "2003516", + "2005227", + "1004239", + "8002222", + "1003970", + "0003843", + "0005404", + "7002993", + "6003662", + "1006096", + "8003484", + "4002022", + "0005030", + "0004813", + "0003947", + "7003409", + "1006098", + "3005335", + "2006392", + "0003182", + "4003857", + "4004013", + "2005503", + "1006230", + "0004695", + "7003842", + "4002647", + "6004989", + "0005078", + "7004748", + "4002264", + "2005012", + "8002356", + "6002443", + "0006536", + "6004508", + "7002099", + "7002187", + "7002109", + "2007586", + "8002087", + "7003839", + "2005322", + "3006349", + "6003805", + "6003004", + "7002079", + "0003307", + "5001624", + "4004246", + "2003883", + "3005597", + "0003920", + "6002187", + "8002760", + "8001351", + "1003160", + "3005622", + "6004340", + "2005710", + "1003649", + "3005802", + "4003641", + "8002034", + "7002015", + "7002261", + "1003439", + "1005899", + "8003969", + "8003795", + "0006388", + "0004007", + "2007961", + "0006840", + "3004183", + "1003104", + "3004612", + "3005698", + "6002393", + "2007369", + "8001105", + "8002421", + "6004440", + "4002625", + "6004875", + "4002775", + "3005571", + "0005174", + "6004645", + "3006266", + "6003748", + "6004803", + "3005793", + "2007125", + "8002046", + "1004306", + "1006666", + "1006501", + "3004530", + "5001108", + "8002714", + "8002752", + "5001557", + "2007685", + "3005714", + "1004798", + "1005945", + "4003400", + "1006860", + "7002904", + "8001839", + "3006017", + "1004341", + "6004732", + "1006606", + "0005955", + "3004800", + "8003925", + "3006384", + "4004122", + "8001237", + "2004479", + "7002793", + "0005682", + "0004573", + "7002068", + "4002490", + "1003717", + "1004821", + "5001338", + "2003011", + "0006642", + "1005590", + "4004342", + "0005562", + "7003743", + "8002242", + "7002045", + "6002546", + "2005303", + "7002198", + "2003176", + "5001472", + "0003382", + "6002184", + "2006011", + "0005618", + "3006736", + "1003423", + "2003554", + "7004879", + "8003327", + "5001476", + "7002562", + "3006888", + "0006355", + "0003939", + "6004589", + "6004213", + "4003497", + "2003133", + "2005178", + "8001593", + "2004873", + "2005264", + "1006669", + "7002680", + "4004273", + "1004664", + "3003127", + "0006261", + "4002458", + "4004876", + "2004258", + "4004694", + "2006069", + "6003723", + "7002765", + "4002593", + "5001530", + "6004223", + "5001909", + "8002938", + "0003298", + "8003703", + "6003296", + "3005192", + "1004896", + "6002978", + "1005043", + "1003055", + "0003337", + "7002710", + "2007302", + "8002314", + "0005604", + "8003499", + "6002721", + "2006586", + "4003464", + "4003248", + "6003947", + "2004858", + "1003366", + "2003650", + "0006249", + "1006404", + "4003891", + "1003253", + "3004562", + "8003466", + "7003830", + "8003911", + "1004313", + "1003071", + "1003222", + "7004012", + "8003826", + "3004101", + "2004456", + "7002688", + "0005171", + "0005269", + "2006398", + "5001009", + "4003048", + "2004447", + "6003823", + "3003210", + "1006668", + "6004343", + "2004918", + "4004549", + "7002429", + "1005395", + "4003391", + "4003263", + "2006332", + "7002568", + "8003963", + "6003910", + "6003812", + "2003646", + "0006765", + "3005263", + "8001522", + "6004958", + "6003800", + "0005858", + "2004654", + "2003282", + "8003942", + "4002599", + "5001160", + "2006794", + "0006122", + "1006348", + "8001929", + "3004534", + "2003973", + "0006467", + "2006700", + "1006105", + "8003849", + "6004318", + "0004273", + "3003349", + "4003264", + "2007417", + "0004683", + "0004021", + "0005329", + "0004098", + "2006630", + "6002251", + "2005288", + "1006078", + "0004204", + "8003583", + "4003346", + "2006976", + "6003807", + "3003502", + "4003429", + "3006261", + "4004814", + "7003206", + "1004779", + "4003952", + "3005683", + "5001345", + "8003762", + "0006050", + "4002124", + "2004941", + "5001349", + "4003471", + "1006863", + "8001000", + "4002689", + "2003401", + "3006603", + "6002382", + "1004200", + "0005632", + "2005515", + "0003758", + "0006102", + "0005132", + "1003544", + "2005450", + "3006507", + "3004223", + "1003621", + "0006804", + "3004646", + "1004060", + "5001776", + "2004469", + "4002741", + "8001488", + "2004160", + "7004741", + "7002204", + "3003918", + "2004022", + "6004044", + "6004502", + "8002233", + "2003426", + "0004019", + "4002093", + "8001865", + "0006054", + "6003859", + "7002121", + "1003218", + "7003950", + "7004358", + "6003443", + "7004255", + "2004239", + "0003905", + "2007266", + "4002333", + "2004038", + "8003701", + "2007182", + "1004163", + "4002316", + "8001764", + "1006037", + "1004714", + "7004745", + "6003569", + "7003034", + "5001526", + "7004801", + "2004324", + "2005856", + "4002680", + "4002688", + "2003479", + "7004263", + "4004199", + "2004692", + "0006073", + "5001442", + "1003864", + "0004977", + "8001858", + "7003902", + "2007024", + "1006987", + "2005475", + "0005389", + "1006590", + "3004829", + "6002058", + "7004904", + "0004358", + "1003523", + "0004675", + "6003249", + "0003391", + "7002601", + "6003448", + "3004902", + "7003588", + "1005917", + "2004971", + "4003353", + "3003752", + "1005595", + "8003210", + "1006414", + "2006334", + "1004978", + "1006527", + "4003597", + "6003051", + "2007519", + "0005897", + "6003542", + "1006147", + "4002070", + "1006118", + "8002295", + "4002000", + "8002197", + "6002001", + "8003319", + "0004138", + "2003829", + "6004287", + "3003565", + "8002408", + "8002833", + "7002244", + "6002611", + "3006751", + "7002242", + "7004258", + "0004040", + "7004809", + "7003680", + "2006949", + "2005684", + "2004688", + "6003973", + "3006802", + "4002665", + "8002991", + "3004937", + "1006040", + "4002051", + "0006158", + "6004928", + "2006412", + "4004014", + "2006473", + "3003868", + "4003023", + "0004618", + "7004645", + "2005161", + "3006768", + "3004114", + "7003701", + "1005342", + "6002577", + "7003161", + "7004674", + "3003351", + "3005938", + "0004923", + "0005820", + "8002417", + "2007610", + "2004864", + "8003874", + "7003361", + "3005490", + "3005426", + "2004048", + "0005901", + "7002626", + "2007199", + "6003980", + "0006922", + "7002231", + "7004346", + "2003852", + "6003165", + "2005105", + "3004372", + "4004294", + "6003190", + "0005766", + "0005555", + "8002540", + "0004995", + "8003263", + "6002527", + "3005073", + "7004486", + "2005095", + "3006841", + "7004793", + "8002111", + "4004797", + "2006716", + "1004833", + "0004150", + "0004446", + "0006064", + "1003146", + "4004427", + "3004693", + "0005237", + "8003251", + "6003761", + "2006381", + "3005317", + "1006974", + "5001123", + "0004195", + "6003124", + "2005244", + "0005608", + "2006701", + "3005563", + "0004797", + "1003243", + "6002532", + "6002925", + "0003505", + "7004597", + "1005545", + "0003848", + "3003183", + "4003717", + "7002269", + "0006348", + "2003459", + "7003744", + "7002160", + "3004357", + "3006181", + "2003932", + "7004606", + "0006242", + "1004054", + "4002239", + "4004110", + "2007145", + "4002276", + "3003506", + "4002060", + "0006369", + "5001709", + "1006312", + "0006938", + "4003942", + "5001897", + "0003137", + "3004068", + "1004695", + "5001173", + "0004044", + "3003961", + "3006547", + "4003962", + "2005824", + "2005141", + "3003231", + "0005982", + "0006799", + "3003293", + "0004126", + "7003947", + "3003591", + "1005388", + "0003994", + "6003909", + "0004845", + "2007104", + "5001853", + "0004246", + "3005358", + "2003389", + "2007662", + "0003982", + "6003568", + "1005235", + "8001189", + "0004620", + "2005493", + "7004286", + "5001726", + "0005395", + "8003178", + "3004395", + "0003727", + "3004125", + "5001272", + "1004588", + "0003503", + "3004124", + "2007282", + "2003994", + "3006165", + "8001837", + "2007001", + "0005619", + "0003613", + "0004353", + "1006203", + "4002407", + "1003251", + "2005385", + "6004703", + "0003478", + "2004169", + "1005942", + "1006149", + "2005909", + "1005596", + "1004154", + "1004372", + "3003486", + "5001188", + "6003329", + "8001588", + "2006733", + "4003133", + "3005394", + "0005574", + "7003112", + "1004975", + "1004007", + "6003854", + "6004469", + "7003825", + "0006971", + "5001415", + "3006703", + "1003882", + "8003621", + "1004545", + "0006473", + "7004799", + "4003669", + "7003793", + "1005953", + "0006568", + "6002328", + "7002991", + "1005033", + "3003224", + "3005614", + "2003504", + "0005427", + "6003206", + "1006711", + "4004285", + "2007615", + "3005345", + "4003154", + "7004264", + "7003358", + "3005733", + "2003323", + "4004071", + "2007361", + "1004739", + "3004566", + "6004722", + "1004619", + "2003452", + "3003500", + "2007368", + "1005369", + "7003711", + "8003602", + "7004387", + "4002611", + "2004901", + "0004917", + "4003598", + "0005737", + "0005117", + "2004406", + "8001390", + "4003435", + "1003572", + "3004202", + "0003858", + "0005109", + "4002869", + "8001689", + "7003671", + "4003277", + "0005520", + "1003504", + "6003521", + "1003122", + "0006301", + "0003209", + "1004509", + "3004338", + "3006849", + "1005999", + "8001285", + "1003076", + "8001704", + "5001086", + "8001216", + "3005200", + "0006134", + "0003847", + "1005714", + "0006603", + "7004567", + "7004472", + "4004690", + "8002516", + "1003755", + "6002726", + "4002204", + "3006210", + "7004746", + "8001133", + "8002464", + "2004504", + "1005303", + "2005058", + "3005182", + "6003553", + "0004505", + "0003077", + "1006526", + "6002027", + "6002993", + "0004976", + "4004133", + "7002457", + "1005511", + "0004471", + "2007913", + "8003613", + "2007002", + "0003079", + "5001582", + "2006923", + "4003996", + "2007935", + "4003295", + "8002877", + "0006290", + "6002499", + "1005016", + "5001657", + "2004083", + "2005377", + "3005633", + "2004922", + "1004168", + "7004185", + "0005006", + "0004560", + "4003875", + "2006995", + "1003658", + "8003608", + "5001762", + "3004012", + "7004324", + "3003769", + "6004707", + "7003287", + "2006556", + "2004576", + "2003275", + "8003236", + "0003900", + "6004259", + "8001594", + "6002557", + "3006598", + "3003299", + "2005362", + "2007810", + "7002841", + "0003789", + "1003558", + "1004472", + "4002485", + "2004862", + "3003924", + "1005703", + "2005561", + "0004403", + "6003732", + "1003791", + "8001592", + "1003674", + "8002649", + "7003015", + "0006548", + "4003265", + "6004378", + "8002721", + "3006068", + "6003383", + "2006639", + "2006994", + "8002481", + "0003426", + "2007857", + "8002171", + "2007627", + "3005933", + "1004041", + "0004350", + "4003793", + "2006853", + "2007183", + "2007400", + "0004307", + "8002472", + "5001339", + "2006758", + "4004106", + "6004267", + "2007593", + "0005986", + "0005832", + "3005867", + "1004554", + "5001797", + "3005535", + "5001438", + "1003906", + "6002052", + "6002408", + "3006380", + "5001249", + "1006898", + "3005387", + "1003577", + "1006944", + "1006988", + "2007418", + "3004377", + "7004966", + "8002782", + "4002594", + "1006933", + "8003947", + "8002619", + "1005179", + "3003774", + "6003029", + "6002564", + "0005064", + "2003733", + "2003876", + "2003827", + "8003786", + "4003522", + "4003350", + "4002087", + "2005901", + "3003975", + "0005922", + "1005591", + "8001880", + "4002768", + "7002675", + "2004904", + "0004611", + "2007072", + "2003230", + "7004563", + "2006796", + "3006459", + "6003611", + "0005578", + "7003377", + "2003117", + "8001549", + "3005119", + "0003968", + "2003839", + "4004303", + "0003384", + "7002555", + "8002941", + "1004241", + "2006577", + "1004790", + "4002364", + "2006125", + "6002233", + "1003596", + "0003369", + "2007775", + "6003932", + "0005995", + "6002528", + "8003546", + "6002841", + "3004154", + "4004368", + "0003805", + "1004298", + "0004432", + "2007494", + "3006721", + "1005237", + "5001841", + "0004395", + "2007050", + "8002866", + "0004141", + "2005931", + "6002746", + "7003086", + "2006034", + "6004691", + "7003092", + "2005977", + "7004557", + "5001485", + "4004358", + "1005856", + "8003858", + "7003156", + "1004127", + "7002324", + "3006399", + "8001079", + "5001259", + "2006483", + "7003736", + "4004146", + "2006927", + "8003141", + "7003849", + "8002588", + "5001667", + "4003030", + "0006634", + "5001658", + "3006157", + "4002413", + "0004936", + "5001069", + "4004085", + "2007441", + "7002982", + "1004443", + "2004046", + "3003884", + "5001501", + "0004160", + "0003464", + "1003608", + "3004830", + "1004734", + "2003105", + "4004899", + "3003151", + "1004947", + "0003578", + "0006687", + "3004554", + "2003586", + "1003190", + "2004731", + "6002708", + "6003534", + "6002934", + "8001853", + "2004133", + "2006666", + "0004241", + "6004144", + "7004976", + "4003307", + "8002718", + "6003566", + "0006713", + "1003273", + "2004559", + "4004058", + "2007020", + "4003019", + "2003029", + "4002411", + "1006872", + "8002990", + "7003551", + "1003208", + "1006173", + "6003349", + "2007240", + "4002549", + "2007200", + "5001434", + "0004999", + "1006791", + "7003920", + "5001904", + "0006805", + "7002915", + "5001151", + "8001417", + "6002824", + "0004881", + "0006619", + "4003269", + "4003617", + "5001025", + "6003052", + "3004267", + "3003087", + "1004204", + "4004638", + "4002607", + "3003229", + "7003512", + "4003966", + "2005877", + "2004135", + "7002012", + "2004217", + "0005783", + "3004959", + "7004974", + "8002187", + "8001082", + "0004552", + "3004403", + "2004831", + "4004780", + "4003630", + "3006855", + "2006746", + "2003243", + "7002421", + "2005126", + "8002819", + "7004582", + "0004696", + "1004877", + "1003434", + "6002645", + "0003352", + "3006617", + "2004909", + "2005114", + "3005889", + "1006138", + "1004933", + "8001752", + "7002458", + "7002030", + "7002053", + "0004086", + "1005290", + "8003509", + "4004412", + "1006099", + "3004428", + "5001185", + "0003504", + "2004773", + "4004239", + "7003977", + "1005664", + "4003885", + "2006974", + "0004202", + "2005207", + "3006035", + "3004718", + "4004134", + "7002260", + "3004320", + "4002867", + "8003724", + "1005147", + "1004884", + "3005602", + "7004867", + "2003736", + "3004939", + "1005630", + "3005745", + "3006914", + "6004906", + "1003520", + "1003527", + "2006605", + "1003445", + "6003652", + "6002615", + "0003390", + "4003548", + "4003834", + "8002246", + "4003677", + "2007311", + "0003804", + "1003455", + "7004291", + "8002390", + "8001384", + "6002391", + "5001457", + "6003819", + "5001844", + "1006824", + "3003554", + "8001632", + "8002686", + "2006269", + "3005783", + "0004938", + "4002330", + "1006191", + "1003365", + "1003350", + "8003372", + "1006971", + "5001525", + "3006467", + "1006679", + "3003888", + "2004812", + "6004788", + "3004106", + "3005109", + "7003368", + "1005315", + "0005839", + "4003637", + "6002171", + "0004066", + "3003473", + "2007239", + "6004714", + "1004703", + "8003091", + "0004657", + "2003092", + "8001072", + "2007780", + "1004391", + "0003063", + "1006011", + "8001844", + "5001642", + "1006794", + "1005897", + "7002385", + "0006535", + "2005138", + "0003236", + "2006646", + "0003846", + "3003922", + "5001370", + "1006813", + "5001052", + "4002765", + "1006844", + "3005971", + "2004224", + "1004776", + "2003704", + "3003627", + "1004550", + "8001083", + "6002117", + "0006359", + "6002094", + "3003327", + "3005751", + "0005880", + "7003126", + "2007409", + "1005778", + "8002299", + "0003762", + "1003488", + "2007660", + "0003616", + "0005302", + "7003078", + "6004272", + "7004781", + "5001581", + "6003746", + "8001624", + "3006156", + "6003820", + "1003370", + "0005061", + "6003918", + "7004046", + "3006628", + "1006375", + "2004782", + "8002801", + "2007351", + "8002946", + "3005365", + "7002955", + "8001111", + "8002095", + "2007534", + "8003516", + "7002394", + "4004671", + "1006362", + "3006625", + "7003327", + "0006377", + "1004084", + "1006521", + "7003812", + "0003119", + "0006430", + "0003250", + "3005258", + "4004792", + "3006993", + "0003879", + "1003473", + "5001848", + "8003106", + "3006784", + "2003208", + "1003398", + "5001044", + "8003273", + "6003756", + "6004627", + "3003703", + "6003649", + "6004608", + "2007442", + "7003046", + "1003311", + "3006873", + "7004933", + "6003453", + "2003699", + "0005597", + "7002395", + "6002959", + "2003349", + "1005562", + "6003366", + "1005794", + "6003717", + "0005934", + "4004544", + "7003688", + "2007109", + "4003667", + "5001493", + "2004458", + "7002006", + "1003921", + "1004866", + "2003365", + "7002049", + "4003963", + "2004878", + "8003981", + "2006818", + "2005469", + "1004099", + "4004585", + "8003793", + "0005746", + "0005519", + "4003746", + "3004763", + "7002330", + "7002639", + "1003594", + "0005247", + "1004895", + "3005360", + "1005803", + "8002761", + "7002531", + "7002576", + "1005457", + "7002938", + "3003733", + "4002790", + "7002552", + "5001539", + "3005483", + "6004666", + "4004863", + "4004531", + "1003318", + "6002592", + "2003635", + "8002157", + "6003437", + "6004412", + "4003452", + "8003941", + "1005431", + "0003636", + "8003513", + "1004244", + "1003163", + "1003202", + "3006129", + "1006947", + "2004836", + "6002617", + "7004166", + "4002341", + "7003540", + "1006822", + "0003512", + "2006044", + "1006935", + "2005107", + "8001202", + "8003694", + "2003247", + "3006087", + "0003726", + "0003674", + "0006998", + "0004409", + "0003851", + "3003071", + "7003025", + "6003498", + "2006773", + "0003608", + "4004247", + "3006893", + "3005470", + "7004895", + "6003433", + "0005070", + "0004889", + "8001671", + "0003813", + "7004413", + "6002181", + "1003713", + "2004811", + "2003596", + "2003185", + "4002369", + "8001827", + "6002804", + "7004406", + "3003755", + "2007135", + "6004201", + "8003537", + "1003246", + "3005054", + "6003072", + "7004714", + "2006590", + "2003221", + "0003404", + "1006622", + "0005668", + "2004475", + "8002116", + "6002327", + "2004508", + "3006618", + "3004671", + "2004128", + "4004050", + "7004634", + "5001520", + "0005661", + "8003968", + "6002337", + "8003259", + "7003492", + "4004489", + "6002332", + "5001885", + "1005466", + "8001385", + "2005402", + "8001197", + "0004665", + "4002217", + "7002435", + "6003370", + "1003661", + "2005360", + "8001145", + "8001137", + "0005748", + "1006317", + "6004514", + "2007446", + "6002356", + "0004970", + "8001411", + "1003567", + "8002706", + "0004173", + "4002223", + "7003791", + "3005932", + "2007651", + "5001830", + "4002003", + "2003880", + "4002262", + "4004632", + "3005284", + "8001313", + "6003700", + "1003158", + "0006686", + "3006690", + "2004657", + "0005015", + "8002712", + "7004266", + "4003303", + "7002302", + "2006594", + "0005781", + "7003613", + "3004687", + "4003863", + "6003001", + "0006817", + "1004259", + "1005695", + "3004149", + "8001431", + "1005356", + "6002279", + "7003221", + "3005367", + "0005551", + "8003438", + "2004643", + "6003808", + "2003016", + "2007179", + "3005555", + "6002098", + "1003687", + "3003384", + "6003565", + "8003434", + "7004672", + "4004210", + "0006278", + "3004249", + "3006839", + "3005934", + "4003389", + "1006475", + "4003518", + "0003743", + "6003745", + "2007515", + "0005903", + "4003558", + "7004205", + "1005799", + "6004728", + "3006441", + "6002217", + "6002772", + "2007814", + "4003510", + "3005115", + "2007848", + "8003735", + "6004889", + "0006762", + "2007254", + "0006704", + "6003227", + "0006842", + "1004954", + "3006182", + "0004642", + "2006691", + "8002974", + "0005629", + "5001748", + "0004907", + "1004729", + "2006168", + "6002065", + "7004301", + "2007453", + "0004702", + "4003556", + "1003938", + "7004019", + "0005266", + "1005241", + "0004440", + "2005971", + "0004500", + "6002276", + "0005589", + "2005004", + "0004635", + "1006435", + "8001716", + "6003224", + "1005719", + "4003120", + "3003995", + "7004545", + "0003660", + "2004037", + "1005627", + "6002409", + "7004435", + "6004220", + "8003003", + "8002728", + "1005674", + "1003282", + "0005919", + "6002737", + "2005242", + "0005370", + "0005667", + "8003220", + "4003386", + "3003865", + "6002830", + "3004487", + "6004953", + "7003697", + "7003617", + "6004821", + "8001229", + "3005129", + "1004397", + "8001228", + "1005498", + "3003286", + "0005867", + "2003639", + "4002608", + "0005038", + "3005724", + "4004459", + "6003345", + "6002326", + "2004852", + "4002111", + "3005320", + "2004919", + "0006695", + "2003740", + "2004404", + "1006081", + "0003238", + "6002440", + "1003305", + "2004932", + "2004015", + "2003061", + "0006238", + "2007434", + "3004776", + "2003433", + "6004392", + "7002023", + "8003483", + "2004536", + "0004840", + "2004721", + "3004588", + "7003883", + "1006367", + "0006346", + "3005882", + "4002733", + "1003955", + "2003338", + "3006861", + "7002036", + "2005650", + "0005357", + "1006340", + "8002428", + "2007408", + "3004620", + "3004733", + "6004949", + "1003002", + "2004593", + "0005751", + "0004612", + "2005466", + "3005201", + "6003887", + "1006056", + "1003685", + "7002275", + "8003246", + "2007263", + "6003560", + "4004310", + "0005466", + "8001892", + "1004484", + "8002188", + "0006360", + "0005418", + "0005680", + "7003690", + "8002476", + "0006795", + "3004129", + "2004145", + "7004208", + "8003999", + "8003868", + "4003551", + "6004437", + "8001353", + "2003528", + "2004439", + "6003708", + "7003065", + "0004757", + "3006026", + "7002553", + "6003990", + "8003008", + "7004963", + "7004445", + "7003228", + "0004418", + "2005644", + "1006697", + "0005492", + "0003583", + "7002591", + "3005390", + "4003612", + "0006053", + "2006510", + "1005671", + "7003572", + "6003822", + "6004166", + "2003089", + "7004381", + "0003950", + "4002835", + "1006828", + "6003058", + "3006448", + "2005067", + "7003019", + "2003685", + "2004591", + "7003852", + "2006760", + "0004625", + "1005708", + "0004323", + "0006213", + "6003893", + "4004738", + "0006797", + "1006217", + "4002331", + "6003354", + "8003643", + "7003503", + "7004795", + "1005894", + "7002520", + "4004087", + "4004805", + "3005587", + "3006233", + "2006407", + "3003830", + "1006023", + "4003040", + "1004857", + "6002191", + "4003189", + "4003399", + "1005267", + "0006759", + "0006744", + "0003363", + "4002927", + "6003352", + "6003211", + "7002579", + "0005366", + "0005923", + "3003758", + "2006362", + "1006243", + "7002193", + "0005994", + "8002457", + "8001518", + "3004929", + "3006556", + "7003811", + "5001683", + "1004427", + "7003345", + "1004950", + "6003780", + "3003740", + "0004149", + "1004272", + "8001747", + "4004721", + "2006560", + "1006254", + "1006705", + "2004285", + "1004818", + "2006647", + "6003582", + "8003663", + "3005333", + "4002589", + "7003952", + "2006351", + "3006301", + "2006932", + "0005085", + "4004630", + "8003507", + "3005382", + "2006134", + "1004120", + "1004576", + "8003130", + "3006698", + "7004740", + "7004632", + "3003574", + "7004236", + "0006105", + "6004644", + "8002787", + "7002597", + "3004571", + "1004846", + "0004755", + "2007022", + "1005751", + "2007219", + "1006241", + "6003608", + "3006004", + "2007588", + "4003486", + "1004371", + "6003609", + "7004827", + "2006234", + "3005316", + "3004394", + "3003942", + "0005166", + "6004971", + "5001422", + "2003410", + "6004859", + "1003083", + "0003485", + "2003846", + "0004592", + "3004684", + "6004124", + "4004046", + "0005276", + "5001322", + "7003270", + "4003505", + "4004644", + "2007836", + "4004301", + "1006775", + "3006293", + "0003378", + "1006460", + "2007482", + "1003724", + "3003222", + "2007557", + "7003223", + "7002319", + "3006919", + "6003129", + "0005043", + "1006253", + "6003506", + "6004570", + "4004271", + "4002654", + "2003480", + "3003707", + "2005692", + "1003942", + "4002936", + "1003691", + "4004525", + "4004480", + "1003045", + "1004176", + "1004034", + "2004495", + "4003651", + "7004864", + "3005988", + "8001152", + "2004096", + "3005277", + "0003949", + "2005499", + "1005687", + "3006386", + "6002418", + "3006697", + "1005018", + "5001106", + "2003913", + "3005613", + "5001755", + "7004257", + "8003302", + "6003861", + "1004582", + "2007469", + "7004826", + "3003010", + "1006941", + "1005250", + "3006172", + "8002367", + "3005233", + "1004065", + "0003623", + "7003699", + "7002858", + "1005383", + "6004738", + "6004617", + "7004630", + "5001362", + "0004206", + "1003516", + "4002793", + "4004392", + "1006411", + "8003669", + "3004145", + "1003926", + "4002227", + "8002704", + "0004227", + "3003340", + "7003389", + "1003117", + "2007566", + "0006342", + "0004301", + "0003707", + "4002672", + "7004371", + "3004784", + "7003745", + "8001008", + "2007212", + "6004955", + "1006588", + "6003858", + "1003078", + "3004080", + "8001363", + "4002308", + "4002242", + "3003666", + "6002207", + "6004917", + "0005699", + "1006685", + "5001087", + "1005571", + "4004838", + "6004431", + "6003724", + "6004397", + "0005125", + "2005547", + "8001658", + "7004724", + "0003607", + "6003755", + "0003799", + "8002855", + "0004876", + "0005176", + "7003482", + "6002971", + "4003383", + "8003450", + "3005406", + "7002888", + "5001038", + "3006864", + "8002002", + "3004473", + "8003938", + "6002903", + "3004252", + "8003872", + "4003555", + "2007916", + "7003100", + "7004765", + "8002392", + "4002717", + "7002052", + "4002403", + "7003372", + "2006100", + "2004908", + "8001547", + "7004544", + "0003856", + "2007277", + "0003276", + "2005078", + "8003136", + "4004108", + "3005140", + "2006222", + "4002284", + "1006698", + "2005399", + "8002140", + "1006782", + "1006250", + "2006406", + "0004495", + "2004801", + "1006529", + "2006041", + "4003986", + "7004066", + "7002792", + "1006654", + "3003820", + "2005331", + "4003029", + "3005688", + "0004647", + "1005258", + "4002449", + "8002183", + "1003313", + "5001158", + "3004915", + "0003183", + "1004822", + "3005758", + "2004387", + "2003321", + "1003936", + "2003446", + "1003736", + "2005917", + "3003354", + "6003599", + "1006802", + "2005943", + "7003191", + "3004985", + "2003326", + "7003615", + "2007824", + "2004413", + "6003618", + "6004655", + "6004593", + "4004697", + "1006389", + "0003002", + "1003659", + "1006993", + "6002475", + "6004621", + "1004716", + "0003149", + "8001814", + "6003300", + "2003173", + "7003494", + "7003526", + "3003935", + "2006475", + "8001854", + "0006903", + "8001663", + "2003980", + "4002638", + "3006397", + "7003520", + "0004171", + "0006195", + "8001250", + "7004982", + "3003460", + "0003599", + "1005685", + "3005913", + "7003498", + "6002378", + "2007714", + "7002630", + "3003000", + "1003269", + "0006046", + "0006698", + "3003089", + "1004736", + "4004579", + "4002263", + "6004684", + "1006790", + "4003935", + "3005598", + "3003121", + "3006752", + "5001508", + "5001732", + "8001784", + "3006557", + "0005107", + "7004891", + "2007978", + "0003375", + "0005807", + "7002779", + "0004303", + "1005330", + "1003481", + "0006398", + "0003580", + "4004193", + "8002146", + "0006890", + "0004158", + "3003994", + "3003321", + "0004773", + "2007957", + "4004322", + "2003716", + "0004715", + "1003774", + "6002644", + "7004887", + "2006589", + "1003973", + "7002670", + "2004294", + "2004503", + "0006720", + "8002317", + "7002959", + "3006847", + "0006949", + "0005525", + "8003384", + "4004142", + "2003360", + "6004560", + "5001120", + "0004473", + "7002640", + "4002551", + "8003510", + "4004044", + "3006735", + "2003052", + "3003252", + "6003169", + "2004206", + "4002386", + "6004757", + "6003850", + "2004890", + "0006748", + "8001600", + "1005835", + "2003924", + "2003142", + "8001526", + "7004515", + "4003589", + "1005472", + "4003309", + "6004199", + "0005197", + "5001964", + "6004311", + "3004503", + "3003509", + "0003550", + "1003536", + "2007376", + "7004273", + "4003971", + "4004617", + "2007885", + "4003000", + "4002278", + "7002328", + "5001455", + "0005175", + "0003842", + "2007754", + "1005067", + "8001903", + "2007119", + "4002267", + "4004891", + "7002695", + "1005857", + "4003066", + "2007887", + "5001565", + "6003836", + "5001965", + "7004366", + "8003949", + "8003753", + "6002176", + "2005890", + "0005373", + "8003960", + "8002988", + "2004998", + "0005082", + "7002664", + "6004093", + "1004417", + "1004586", + "2007876", + "1005738", + "7004916", + "0003278", + "6003208", + "0006976", + "0003099", + "3006992", + "2005529", + "1006597", + "8002414", + "3005292", + "2005197", + "4003543", + "1005594", + "0006090", + "6002727", + "4004438", + "0004626", + "7003556", + "2004449", + "8002815", + "3005403", + "6003621", + "2005975", + "1003274", + "3005251", + "1006837", + "7002105", + "0005634", + "2004407", + "2006993", + "3004239", + "5001739", + "5001920", + "3003747", + "2005088", + "2004424", + "0005145", + "1005876", + "1006984", + "4003724", + "4004351", + "8001606", + "1005705", + "7004829", + "1003240", + "4003513", + "8003425", + "3004933", + "6002020", + "1004869", + "8003325", + "0003749", + "1006797", + "7004638", + "0006553", + "8003023", + "6002464", + "1003617", + "7004224", + "4003542", + "2004867", + "5001015", + "4004128", + "1004613", + "6003771", + "4004171", + "1005352", + "3005414", + "1004745", + "2006007", + "2003186", + "0003071", + "1005142", + "7003936", + "0004965", + "6002359", + "4002483", + "2006338", + "0003005", + "1004533", + "6004329", + "1005287", + "2007624", + "0004174", + "5001701", + "0003989", + "2006564", + "2004594", + "8003841", + "2007850", + "0005646", + "2006281", + "1005112", + "1003391", + "8002150", + "3006677", + "0003987", + "8001768", + "0005508", + "2005929", + "6004523", + "4002424", + "7002176", + "6004713", + "2007136", + "2004453", + "3004504", + "8002755", + "1005531", + "0006204", + "3004892", + "7004483", + "4004846", + "1005937", + "3004409", + "0004157", + "4002361", + "6004704", + "4004313", + "1004653", + "2006188", + "4004312", + "1006342", + "4004504", + "4003945", + "1003498", + "6002731", + "0004548", + "8002399", + "3006111", + "4002416", + "7004014", + "7003375", + "1003210", + "7002771", + "6002955", + "1003165", + "0004886", + "0005575", + "3003507", + "1005662", + "6002314", + "7004935", + "3005546", + "6003041", + "6004233", + "7002971", + "3006928", + "3006367", + "3004593", + "3003636", + "2003097", + "6004943", + "6004310", + "3004679", + "2004552", + "7003415", + "6002895", + "1004434", + "2006104", + "0004801", + "4002933", + "2006349", + "0005542", + "6002214", + "1003741", + "2005254", + "3005255", + "7003583", + "4003712", + "2005711", + "6004423", + "7002952", + "3005946", + "5001814", + "0005772", + "3003814", + "2007241", + "3005700", + "6004782", + "3003493", + "8001823", + "2007783", + "0003649", + "2007795", + "2004894", + "2005008", + "4002685", + "3004026", + "0003217", + "1003470", + "3004589", + "8002288", + "0005973", + "1005798", + "3006640", + "2006980", + "0003887", + "5001879", + "5001874", + "3004399", + "8001521", + "1003259", + "4003494", + "6002452", + "8001694", + "0003049", + "0003723", + "4003317", + "0006283", + "1005447", + "7003299", + "0003111", + "4004552", + "1004216", + "2004310", + "1005420", + "2005368", + "3004633", + "2004827", + "3003484", + "7003935", + "6002165", + "8002927", + "4003563", + "4003366", + "3003714", + "5001729", + "2003911", + "6004090", + "0004697", + "0003454", + "3004914", + "7004704", + "2005647", + "4003845", + "6002228", + "1006309", + "2005830", + "7004627", + "0003840", + "7004728", + "0004510", + "6004026", + "2007537", + "2005484", + "1005286", + "4004456", + "6004586", + "4002934", + "2006827", + "0005620", + "7004221", + "2004189", + "5001833", + "2003099", + "1005948", + "4002146", + "7002609", + "4003013", + "8002181", + "3006681", + "1004068", + "1003145", + "1003302", + "2007865", + "8002093", + "1006463", + "3004816", + "6004218", + "1005317", + "0004913", + "5001023", + "2003306", + "3006418", + "8002380", + "2007479", + "2004177", + "6003402", + "0006738", + "2003653", + "5001636", + "6003220", + "3005368", + "6004813", + "1006323", + "7002896", + "4004788", + "2005578", + "2006113", + "5001592", + "7003233", + "3006631", + "7004210", + "1003284", + "1004395", + "8002420", + "4003186", + "1005965", + "0003696", + "2004583", + "1006311", + "8001927", + "0006651", + "1006643", + "1004228", + "2004615", + "3003715", + "7002246", + "7003103", + "1003096", + "4003862", + "1005135", + "1005837", + "7003862", + "7002087", + "8003005", + "0005522", + "2005118", + "2003552", + "8002665", + "7002812", + "6004969", + "6002033", + "6004839", + "6004416", + "3003901", + "1006313", + "3003644", + "2007249", + "2006384", + "8001293", + "2007965", + "6003994", + "2007642", + "2003700", + "1005488", + "4002101", + "0006880", + "8001542", + "1006559", + "3005373", + "1006461", + "8003692", + "1003751", + "8001654", + "3006504", + "3003169", + "1004085", + "0005411", + "7004338", + "8002059", + "2007304", + "0005612", + "2004826", + "3005771", + "4003851", + "7004405", + "3004191", + "3003295", + "0003520", + "1003333", + "1005020", + "3004010", + "2005047", + "1004285", + "7004442", + "6003842", + "0006620", + "2006008", + "2006210", + "2005569", + "1006170", + "4002959", + "3005538", + "4004401", + "0003886", + "3006633", + "0006120", + "1006055", + "6002170", + "0004029", + "6002299", + "0004334", + "2005488", + "2004607", + "1005520", + "1005526", + "6003760", + "3006365", + "2007973", + "8001066", + "1005169", + "3003796", + "2005378", + "4002426", + "4002590", + "1004995", + "4002948", + "0006707", + "3005892", + "4002855", + "2007421", + "2003198", + "1005920", + "0006742", + "1004419", + "7002673", + "6004145", + "6002670", + "1006849", + "8003396", + "3005624", + "7004121", + "7002870", + "8002553", + "4002484", + "4003585", + "6004068", + "7004049", + "3004642", + "1006792", + "5001381", + "2003432", + "6004746", + "0006165", + "3003699", + "3006072", + "0004134", + "2007473", + "1006363", + "3004259", + "6003695", + "1005644", + "5001355", + "1003490", + "2007071", + "2005704", + "3005478", + "2006738", + "0004972", + "3006316", + "0005408", + "7004360", + "1004123", + "3006506", + "3005248", + "2006808", + "8003323", + "3005436", + "8003865", + "0003959", + "5001962", + "7003416", + "0005560", + "2007052", + "2005271", + "7003746", + "2003493", + "2004030", + "2006766", + "8002716", + "0004152", + "1004178", + "8002308", + "2007154", + "0005299", + "8003073", + "3005142", + "7002464", + "3003459", + "0005402", + "7004738", + "8003718", + "3006994", + "4004568", + "4002525", + "4004333", + "6002637", + "6002395", + "0005742", + "2004170", + "2004243", + "3006310", + "4003740", + "4002906", + "5001759", + "2005463", + "1004081", + "3003374", + "8003805", + "2006963", + "4003982", + "7002903", + "4004702", + "8003677", + "0005803", + "5001281", + "4003874", + "1005733", + "3005231", + "0004364", + "7003844", + "1003582", + "7004274", + "4002826", + "8002208", + "2005729", + "4004300", + "6003064", + "6004297", + "0006924", + "2003999", + "7003320", + "7004783", + "6004795", + "2007480", + "8002028", + "1005700", + "0004116", + "7004199", + "1003417", + "3005045", + "6004388", + "3005081", + "8003071", + "1003435", + "3006588", + "2007112", + "2003066", + "3005294", + "8002763", + "6002940", + "7003913", + "4003686", + "2007204", + "7003923", + "1006981", + "2003797", + "3003727", + "1006663", + "8001580", + "8001807", + "1006003", + "5001993", + "3004216", + "4004745", + "3004955", + "3003661", + "7004803", + "0006079", + "2004693", + "2003517", + "5001221", + "7004517", + "2007921", + "0004012", + "3005599", + "4003646", + "0004844", + "4002917", + "7003544", + "4004382", + "0005246", + "0004832", + "6002210", + "3005804", + "2005549", + "7003595", + "2005767", + "1003818", + "1005168", + "0005744", + "7002920", + "8002488", + "1006427", + "0005417", + "2007868", + "2006242", + "7004845", + "0005943", + "7004237", + "2005878", + "4003981", + "3004433", + "2005403", + "5001447", + "0003677", + "7002845", + "3003910", + "4002298", + "3006783", + "0003934", + "0003884", + "8001425", + "5001315", + "4003032", + "0003528", + "2005424", + "1004167", + "1005090", + "6003253", + "2003730", + "0003038", + "7003109", + "7004626", + "5001113", + "0006649", + "0003085", + "3004083", + "7002241", + "0005151", + "3003614", + "2007552", + "0005035", + "2004611", + "1003063", + "7003236", + "0006485", + "0006252", + "3004126", + "3004850", + "3004052", + "2003292", + "4004295", + "7004241", + "2005645", + "1004799", + "6002336", + "0006392", + "3003328", + "2006090", + "3004527", + "1004305", + "3004141", + "2003558", + "8003498", + "4003813", + "0005888", + "2007673", + "2004482", + "0004849", + "6003769", + "0006088", + "7004939", + "7003427", + "1004382", + "4003758", + "8003114", + "7004949", + "5001761", + "2005745", + "4003877", + "0003258", + "0005458", + "1005012", + "3006340", + "0004480", + "0003102", + "4002135", + "8003773", + "8002573", + "0005229", + "3003488", + "1006608", + "8001019", + "1004987", + "4004457", + "8002824", + "1005397", + "3004742", + "0006269", + "0003734", + "1003438", + "4003742", + "0003037", + "6004549", + "2003019", + "1006560", + "7002021", + "2003285", + "8001785", + "1005606", + "0006539", + "6003246", + "7004611", + "4002849", + "1005665", + "1003436", + "2006713", + "2003417", + "2006403", + "0006723", + "0003097", + "6002180", + "0004524", + "6004565", + "1005345", + "0004410", + "2006632", + "7004819", + "8003451", + "1004420", + "2003387", + "4004057", + "1004835", + "6002768", + "7002290", + "4002098", + "5001234", + "6003175", + "3005894", + "1006418", + "6004405", + "3004476", + "3003776", + "3006562", + "3006590", + "7002649", + "2003692", + "4002562", + "2003268", + "7004848", + "8002354", + "5001509", + "2004486", + "2006394", + "0004984", + "4004627", + "4004736", + "8001263", + "3006515", + "2006543", + "2003300", + "3003135", + "1006602", + "1003047", + "6004554", + "6003595", + "0006936", + "2007587", + "1003933", + "4002090", + "2005191", + "7003251", + "1006566", + "6003373", + "0005890", + "3004446", + "3003498", + "0003611", + "2005930", + "2005949", + "7004835", + "8001975", + "1006579", + "1006330", + "1005868", + "1004453", + "0006895", + "8002779", + "2007206", + "1005153", + "7003343", + "0006725", + "6003898", + "2007901", + "2007896", + "4002247", + "1004916", + "2007151", + "1003696", + "1003629", + "1004124", + "1005877", + "6004785", + "8002859", + "4004082", + "0006095", + "3006770", + "3006095", + "2006431", + "1003678", + "8002494", + "1005642", + "4004452", + "2003530", + "4003456", + "1004699", + "1003982", + "2003652", + "2006072", + "2003284", + "2003416", + "7004940", + "6002625", + "5001461", + "6002334", + "2005213", + "2007463", + "5001092", + "3005410", + "3004438", + "2007721", + "0005337", + "2005208", + "2003629", + "6003763", + "3004606", + "8001389", + "1006511", + "3005253", + "3006523", + "6004596", + "8002955", + "2005707", + "2003193", + "2007628", + "7004113", + "8001548", + "8003278", + "8002548", + "1005116", + "4002442", + "7004423", + "3004798", + "3005592", + "3005396", + "4004238", + "0003138", + "6004078", + "6002891", + "6002485", + "4002502", + "2003298", + "0004469", + "1005111", + "8003740", + "8001238", + "7004361", + "0006708", + "2005941", + "2004545", + "4004920", + "2006360", + "0003187", + "7002846", + "3004511", + "8003059", + "2006256", + "8003112", + "0004292", + "1005386", + "4003784", + "2007617", + "7003022", + "4002824", + "0004159", + "1003610", + "1003805", + "7003693", + "3004196", + "2006145", + "7004675", + "0003867", + "1004071", + "1003364", + "7002815", + "3004804", + "7002347", + "3006387", + "3005197", + "2005167", + "1005958", + "4002791", + "2005649", + "6002763", + "1004679", + "3005973", + "8003881", + "7003477", + "2004392", + "4003102", + "7004307", + "1005423", + "2007458", + "0005177", + "3006209", + "7004027", + "0006576", + "0004498", + "7002599", + "3003771", + "4003251", + "3005799", + "1003028", + "5001080", + "0004360", + "6004796", + "2003087", + "1003227", + "1004301", + "2004756", + "0006934", + "3005489", + "3006488", + "2007250", + "1003298", + "7003822", + "6003684", + "7003965", + "5001779", + "4003549", + "7004343", + "7004920", + "3004393", + "8002403", + "8002659", + "2003583", + "7004167", + "1005495", + "8001601", + "3004204", + "8002284", + "3004785", + "0005697", + "6003826", + "2004395", + "8001699", + "3006667", + "3003398", + "7003058", + "4004576", + "6002108", + "1003699", + "6004578", + "0005715", + "2003940", + "3003102", + "6002800", + "8003152", + "4004735", + "4002974", + "4003777", + "3003148", + "2005968", + "6002067", + "8003239", + "4002068", + "4003076", + "0003757", + "8002375", + "2004939", + "1004513", + "1003858", + "5001387", + "0006070", + "7003501", + "7004160", + "0005072", + "4004257", + "1003912", + "3004107", + "3005262", + "6003099", + "3006456", + "5001093", + "3003334", + "8003063", + "3005762", + "5001505", + "7002348", + "7003635", + "7003769", + "0006022", + "0004125", + "6003445", + "2004516", + "4003788", + "0006690", + "6002875", + "1006715", + "4004709", + "4003525", + "2007308", + "0006096", + "3004452", + "2005546", + "0005155", + "1003511", + "1003446", + "2005394", + "8003766", + "4002074", + "1003310", + "7004299", + "6002558", + "6003677", + "7003560", + "0004433", + "2006208", + "1006893", + "2003895", + "2007697", + "8003192", + "3006133", + "7003224", + "3004430", + "7002945", + "8001139", + "6003697", + "0005827", + "7003509", + "8002064", + "7004774", + "6003776", + "2003904", + "1005487", + "1004138", + "7002145", + "8001454", + "6003762", + "3006810", + "4003121", + "3003297", + "2007003", + "8002378", + "6004419", + "2004651", + "0006717", + "6003539", + "6003157", + "3004352", + "1006142", + "0003402", + "6002729", + "4004826", + "0003230", + "1005192", + "8001931", + "2003411", + "0003719", + "3005931", + "3005506", + "4002393", + "0006432", + "8003033", + "3005455", + "5001222", + "3005405", + "3004522", + "8001569", + "7004787", + "4004955", + "8002879", + "4004066", + "7002728", + "1004816", + "4003427", + "2005806", + "3003258", + "2007920", + "3005224", + "0003193", + "2006286", + "7002573", + "3004514", + "2006254", + "2003222", + "3006161", + "4002862", + "7002954", + "1005513", + "2003492", + "3004564", + "3006728", + "2003881", + "1003769", + "4003197", + "1004245", + "0006164", + "8001537", + "3006842", + "7003798", + "7003941", + "2005714", + "1003665", + "4004592", + "6003567", + "7003268", + "1005034", + "3005900", + "7003921", + "1006412", + "2004039", + "2006983", + "8002556", + "7003633", + "2006968", + "7003836", + "7002838", + "1005741", + "6002318", + "2004427", + "0004127", + "6002540", + "6003308", + "6003381", + "3004553", + "1004547", + "6000004", + "5001017", + "3005449", + "6002666", + "2003863", + "4004880", + "2006423", + "1003185", + "3006064", + "3006671", + "0004960", + "0005300", + "2005980", + "1006255", + "6003890", + "4004877", + "6004141", + "2007209", + "0003394", + "7002162", + "0005225", + "6003905", + "3005561", + "6002110", + "1003559", + "0005790", + "7002071", + "8001210", + "1005148", + "2007516", + "2005005", + "0005857", + "2004527", + "6004387", + "8001108", + "3004003", + "4004609", + "0003090", + "3006722", + "1005523", + "3005328", + "1004974", + "0004540", + "0005159", + "6002347", + "6003483", + "4002348", + "8003896", + "2006775", + "6004049", + "2006640", + "2007037", + "8001115", + "1006956", + "2007518", + "0006675", + "3004638", + "5001400", + "4004177", + "1005780", + "0006446", + "1003143", + "8002036", + "1005178", + "8003995", + "4002004", + "1003037", + "3005818", + "3003013", + "4002600", + "2004079", + "6002786", + "7002271", + "7002927", + "0003899", + "3006863", + "4004816", + "5001127", + "2004113", + "0003797", + "3005420", + "7004349", + "2004886", + "1006050", + "4002949", + "8002812", + "7003038", + "4002992", + "1003547", + "1005094", + "7003258", + "8003761", + "4003848", + "2005595", + "8002952", + "1006823", + "7002379", + "2005678", + "1005577", + "3005089", + "1004264", + "0006724", + "1005298", + "7002908", + "2004005", + "0004390", + "4003580", + "8001291", + "1006881", + "3003979", + "8002870", + "8001367", + "0006406", + "8001338", + "2006622", + "1005443", + "2006815", + "4002177", + "5001849", + "4002714", + "8003244", + "5001360", + "7003612", + "3004115", + "3005148", + "0005745", + "1005654", + "7003172", + "7004957", + "0004838", + "6002206", + "2006116", + "2003109", + "5001055", + "0005609", + "7004839", + "3004781", + "2007424", + "6002996", + "3003393", + "2005336", + "4002964", + "1006162", + "2006001", + "7002158", + "3006466", + "0005572", + "3006495", + "7002758", + "8003772", + "1003065", + "0006776", + "0004888", + "0004084", + "1003528", + "4003685", + "1003542", + "5001203", + "1006596", + "5001049", + "8001645", + "4004415", + "2005387", + "1003164", + "2005566", + "6002539", + "8002810", + "8003139", + "2003981", + "8003064", + "8001447", + "2007777", + "1003265", + "1003804", + "3004271", + "8003158", + "6002026", + "6003232", + "0004706", + "6002838", + "2005401", + "3003914", + "2006476", + "0006393", + "3003670", + "2006135", + "1003394", + "7004583", + "1005996", + "0003708", + "7000004", + "2004002", + "6002643", + "0005972", + "2006179", + "4003495", + "3006564", + "2006555", + "2007133", + "7004374", + "3005596", + "8003561", + "3005174", + "6002758", + "0003446", + "1003543", + "1004218", + "2005682", + "4004343", + "1004959", + "0006350", + "1006382", + "7003558", + "3003842", + "3006109", + "3006926", + "2005564", + "4003832", + "7002169", + "2006561", + "2003600", + "2005910", + "0005376", + "4002813", + "0005669", + "5001263", + "8002460", + "1005281", + "6002476", + "7003090", + "3006324", + "2004284", + "1004174", + "6003688", + "3006178", + "1004722", + "3005219", + "4004113", + "0006366", + "7002697", + "4004499", + "6003919", + "1003807", + "0006898", + "6002348", + "3003845", + "4002526", + "8002724", + "4003252", + "7002094", + "3003346", + "4003286", + "0003486", + "2004768", + "2003184", + "4002984", + "2006705", + "7003159", + "8001054", + "1005716", + "1004942", + "4003227", + "4004307", + "2005524", + "0004053", + "7003677", + "0005233", + "8002432", + "3006510", + "3005307", + "1006875", + "4003927", + "2003462", + "7004396", + "1006680", + "1006360", + "0004155", + "8001556", + "2006273", + "0004316", + "8002751", + "7002541", + "8002685", + "2006395", + "4003325", + "8001642", + "0006126", + "3005689", + "2003567", + "7003382", + "2006070", + "6002865", + "8002220", + "6002213", + "3004235", + "5001720", + "8003447", + "7004657", + "8002139", + "4002719", + "1006338", + "3004300", + "2003744", + "4002922", + "8001208", + "5001048", + "0005776", + "2003996", + "6004625", + "2005247", + "3004921", + "0006531", + "2007956", + "7003273", + "2007140", + "1003211", + "3006643", + "8002138", + "0006004", + "0004629", + "3005340", + "7002882", + "2003034", + "2005646", + "8001299", + "2004049", + "1003005", + "7003504", + "0006961", + "0005849", + "1004479", + "4002981", + "8003291", + "0004297", + "6002569", + "2005425", + "3004028", + "0004217", + "5001524", + "3005984", + "6004066", + "5001756", + "6003451", + "6004975", + "2005787", + "7003402", + "2003792", + "2003732", + "0004363", + "1004223", + "4003975", + "1005788", + "4003554", + "7002439", + "4004274", + "0005606", + "4004558", + "3004945", + "1003690", + "4004064", + "0004588", + "8002455", + "6003427", + "0006378", + "3004552", + "8003321", + "7002796", + "0006806", + "1005911", + "4003151", + "6003070", + "1005867", + "0006349", + "6003699", + "2007907", + "3003480", + "3003504", + "7004653", + "1005629", + "4002980", + "7002494", + "1004602", + "3004700", + "2005718", + "0003918", + "7004458", + "7002770", + "1006825", + "4003042", + "2007621", + "4004442", + "7002902", + "2005502", + "1004481", + "7004333", + "2007573", + "6004140", + "2005419", + "0004968", + "3004683", + "6004054", + "0006345", + "1006810", + "8001439", + "4004754", + "4002187", + "7002790", + "0003354", + "3004063", + "2007432", + "0003458", + "5001648", + "8002118", + "3003640", + "7004591", + "3004594", + "2005584", + "2007056", + "2007989", + "4003842", + "2003024", + "3003077", + "8001843", + "8003099", + "1003035", + "7004853", + "5001412", + "2007334", + "2007091", + "7002345", + "0006676", + "6002642", + "1005569", + "7004764", + "7004587", + "0006033", + "5001241", + "8003556", + "0003240", + "0005937", + "7002088", + "1004691", + "6002887", + "8001192", + "0005111", + "6002717", + "0004441", + "1005722", + "4004716", + "1006830", + "7002082", + "1005809", + "1004373", + "3004059", + "7003096", + "1006219", + "1006786", + "5001580", + "7002720", + "2005347", + "7002317", + "6004149", + "1004330", + "2007014", + "3006159", + "7002402", + "0004085", + "3006332", + "2004240", + "0005206", + "2005605", + "2006587", + "0003577", + "0006801", + "7004163", + "2004713", + "8002746", + "0005459", + "8002971", + "0004824", + "1004405", + "3004230", + "0004267", + "8001510", + "4004205", + "0005556", + "2005351", + "4003827", + "8002291", + "1005524", + "7002784", + "2006631", + "7003010", + "0006498", + "8001493", + "8002373", + "2006652", + "2006272", + "7004946", + "2006907", + "2006686", + "2003802", + "2005961", + "1003073", + "2007614", + "6002941", + "1005242", + "1003172", + "7002272", + "3004402", + "6003085", + "3005281", + "4002503", + "1004998", + "7003717", + "8003585", + "4002663", + "6003404", + "1003550", + "4002461", + "2003396", + "0005178", + "1006002", + "5001308", + "8002163", + "2004977", + "6004842", + "1005231", + "3003028", + "0006585", + "8003737", + "2005574", + "3004168", + "8003670", + "3006120", + "0003523", + "8003676", + "0005289", + "1006759", + "7003949", + "7003489", + "0006635", + "6002591", + "8001306", + "2007942", + "1005584", + "4002763", + "6004019", + "3003861", + "2004255", + "2007076", + "3003191", + "3006909", + "3003235", + "6003136", + "2006094", + "1005928", + "4003119", + "6003627", + "3005131", + "2007330", + "3003214", + "3006440", + "4002114", + "6004942", + "6003721", + "3003966", + "2007903", + "3003646", + "3004770", + "4003012", + "1006736", + "3005086", + "6002926", + "3003754", + "3005024", + "3005756", + "4003058", + "1003314", + "0005230", + "6003626", + "3005418", + "1006107", + "7002977", + "3003637", + "0003211", + "2006979", + "6002419", + "6003087", + "2006492", + "2004328", + "2004829", + "8003975", + "4002580", + "3006413", + "4004269", + "2004229", + "2006624", + "0004129", + "1005163", + "7003493", + "2006881", + "5001367", + "1004721", + "3006542", + "0004754", + "2003976", + "3003746", + "6003234", + "6002430", + "6004598", + "1004454", + "3005427", + "3005746", + "7004426", + "6002019", + "3003912", + "6003305", + "2007894", + "5001781", + "1004683", + "6003538", + "0005190", + "3005537", + "3004619", + "6004448", + "6004243", + "6004476", + "7004152", + "3005786", + "6002936", + "7004656", + "1005390", + "7003521", + "3006833", + "1004812", + "3005297", + "8001004", + "5001563", + "4004610", + "2006176", + "8003442", + "0006402", + "8002315", + "6002425", + "1004091", + "2005297", + "6002194", + "1004326", + "2003505", + "0004090", + "0004261", + "8001169", + "3003569", + "3005835", + "2004854", + "0003606", + "0006832", + "0003753", + "8003588", + "0004341", + "3004424", + "2006629", + "8001373", + "7002610", + "0006841", + "4002354", + "0005066", + "4004787", + "7003565", + "4004378", + "3005772", + "2006780", + "4003061", + "1004624", + "2004262", + "2006447", + "3005157", + "2007046", + "0003711", + "3004692", + "3003817", + "7003286", + "6002983", + "0004102", + "3004969", + "8001052", + "0006244", + "7002042", + "2007490", + "0003844", + "6002503", + "6002082", + "2004748", + "2005807", + "6004200", + "0006879", + "2006708", + "3004624", + "0004330", + "2007462", + "4002274", + "5001076", + "2003046", + "8002657", + "0004703", + "7003055", + "3005550", + "7002002", + "0004383", + "0003285", + "8003647", + "7003468", + "0004778", + "1003998", + "0005566", + "6002554", + "6004324", + "1003271", + "0005479", + "8002347", + "4003253", + "2004152", + "3003483", + "2007041", + "3004919", + "8003974", + "3004563", + "8001463", + "5001280", + "3005452", + "8001204", + "2003864", + "2005148", + "2004760", + "1003865", + "2003921", + "4003539", + "0004482", + "2007852", + "6002718", + "0003493", + "2004739", + "6002092", + "8002081", + "6003280", + "0005050", + "0004332", + "4003407", + "8003191", + "8003635", + "6003084", + "0003226", + "5001943", + "2004951", + "3003655", + "2004123", + "1006919", + "7002823", + "2007682", + "6003094", + "0003210", + "1003502", + "8002507", + "3006428", + "2003241", + "2005219", + "0003198", + "3003828", + "4003660", + "2004326", + "3003180", + "0005488", + "3006355", + "1006225", + "5001248", + "6002530", + "3003913", + "8001991", + "4003490", + "8003788", + "2007881", + "6004184", + "2006345", + "0005696", + "7004648", + "6003648", + "2007173", + "1005673", + "0005946", + "2003318", + "0005499", + "0006768", + "5001619", + "0006908", + "7004223", + "3005126", + "6003302", + "7004351", + "1003449", + "5001466", + "0004025", + "0005284", + "1004562", + "8001790", + "3006881", + "1004192", + "8003699", + "0006926", + "1006624", + "2007821", + "0006332", + "6002882", + "8001294", + "8003609", + "6003629", + "2007720", + "0003036", + "6002816", + "1006924", + "0006133", + "3003965", + "5001696", + "1003888", + "3003066", + "1006528", + "2006777", + "3006486", + "2006601", + "2007349", + "8002073", + "6004776", + "7004871", + "7004842", + "5001541", + "8003982", + "8003455", + "7004145", + "4004570", + "6004468", + "5001875", + "8003790", + "0003978", + "0003657", + "5001139", + "0005242", + "3005747", + "2003877", + "1004046", + "5001328", + "8001818", + "3004529", + "7004150", + "0004593", + "1005810", + "2007511", + "4003676", + "4004861", + "8002701", + "6002879", + "0005521", + "0003372", + "3006930", + "0003650", + "3006962", + "4004734", + "0003834", + "4004636", + "6002451", + "0005326", + "0004136", + "4003745", + "2005611", + "3006615", + "8001617", + "2004662", + "0006975", + "4002282", + "4002174", + "4004369", + "0004546", + "7003044", + "0004758", + "5001016", + "1003999", + "8003604", + "4004938", + "6003845", + "1006029", + "2003494", + "2004473", + "2007352", + "6002204", + "2006592", + "2006439", + "2005444", + "0005097", + "3005581", + "1005003", + "1003565", + "3004187", + "8003952", + "6003916", + "6003463", + "1006324", + "2005580", + "6002216", + "0004001", + "1004489", + "3006152", + "3004974", + "3006500", + "6003182", + "6002893", + "0003303", + "8001156", + "3004860", + "4004766", + "0006455", + "3004082", + "6004289", + "4002275", + "3004179", + "4002046", + "4003507", + "7004791", + "7004759", + "1003656", + "8002726", + "8003399", + "4002030", + "2003202", + "1003444", + "4002447", + "1005380", + "8003987", + "6003054", + "3005165", + "8001586", + "4003821", + "5001354", + "8001806", + "3005789", + "3003915", + "2005300", + "1004070", + "1004115", + "0006049", + "3006221", + "6003501", + "3004909", + "7003040", + "7003164", + "0004653", + "4002940", + "6004034", + "1003183", + "0003173", + "7004397", + "4004991", + "3003870", + "1006457", + "4004102", + "0003573", + "4002707", + "6004888", + "6004907", + "7004202", + "4004957", + "0005181", + "8001163", + "2006402", + "0003560", + "7003683", + "6003447", + "2003914", + "8003511", + "8001954", + "5001456", + "7002767", + "3005441", + "2006857", + "1006601", + "8003837", + "3005520", + "4003635", + "2005046", + "2007723", + "6004668", + "6002820", + "7004986", + "3003575", + "8001125", + "2005615", + "5001721", + "3004855", + "5001157", + "6003633", + "8001809", + "2006466", + "5001548", + "7002859", + "2006430", + "8001838", + "4004306", + "1005183", + "6004129", + "7004095", + "0006086", + "2005042", + "5001202", + "0003078", + "4003226", + "2004122", + "2005573", + "7004599", + "3006131", + "2006480", + "2007012", + "7003419", + "6004481", + "2005460", + "3004022", + "8003431", + "5001974", + "3003139", + "1005628", + "1006549", + "1005726", + "4002160", + "6002845", + "4002821", + "1005551", + "3003429", + "0004983", + "4004608", + "2007583", + "7004822", + "3003838", + "1004442", + "7003434", + "4003170", + "0005590", + "4003089", + "6002783", + "2003937", + "2006303", + "3006188", + "8001876", + "7003108", + "3005134", + "1004552", + "4002622", + "3006669", + "4002639", + "7004715", + "2007822", + "4002404", + "1005927", + "4004782", + "2004542", + "4004691", + "1004802", + "2006238", + "3005833", + "8001358", + "5001483", + "2006240", + "3004579", + "4003394", + "4004867", + "8001870", + "2005689", + "2004752", + "8003539", + "7002826", + "6002607", + "6002831", + "4003587", + "0006289", + "4003112", + "1005291", + "0006673", + "2004129", + "7004660", + "1005382", + "0003480", + "3004488", + "1004224", + "0003713", + "5001947", + "2004344", + "0006584", + "1003421", + "1005512", + "5001939", + "6002587", + "4003296", + "8001647", + "8003657", + "7003283", + "0003271", + "4003568", + "8001899", + "8003679", + "6002124", + "3003331", + "2003812", + "0004690", + "3006812", + "7004056", + "5001579", + "0004312", + "4004864", + "0005761", + "4002543", + "7003439", + "4004583", + "2003286", + "4004492", + "2003363", + "4004762", + "8003893", + "1006165", + "1004640", + "1006122", + "3003618", + "2005371", + "3004761", + "6004206", + "4003410", + "2003451", + "3006892", + "2006846", + "7002518", + "7003748", + "2006416", + "3005865", + "6002962", + "3006788", + "1003871", + "2006693", + "6004959", + "2004159", + "0006282", + "2003507", + "7003376", + "7003274", + "4003757", + "6002369", + "7002118", + "4003969", + "0004379", + "3005876", + "3003518", + "2007972", + "3004359", + "1003535", + "6003047", + "0003675", + "2005262", + "6004375", + "2006829", + "4004202", + "7003412", + "2004175", + "2004403", + "6003240", + "2003414", + "8001897", + "4004730", + "1003419", + "8002794", + "1005649", + "1003389", + "7003241", + "2007016", + "4003478", + "8001377", + "1006277", + "0005968", + "6002192", + "6002266", + "8001545", + "4004603", + "1003534", + "4004708", + "6002604", + "6003115", + "5001743", + "6002345", + "3004042", + "4004042", + "2003125", + "1005829", + "3006259", + "7002161", + "8003900", + "7002471", + "3004745", + "1004139", + "4002183", + "8002845", + "4002372", + "3005605", + "7003398", + "6004779", + "6003391", + "7004312", + "2006422", + "2003056", + "1004166", + "0005331", + "0003985", + "2007571", + "8003836", + "6003728", + "7004828", + "7002631", + "4004979", + "2005632", + "4002843", + "6002423", + "1003532", + "1005505", + "0005149", + "4003010", + "8002839", + "3006630", + "4003770", + "3005043", + "6004962", + "6003153", + "7004188", + "8002849", + "1003154", + "4003699", + "0005076", + "2003166", + "7003140", + "1004626", + "3003216", + "8002318", + "4003003", + "0003546", + "2003872", + "6004847", + "2007106", + "6004670", + "1003320", + "7003524", + "7003317", + "8001887", + "6003983", + "3003783", + "6002817", + "1006290", + "6000000", + "7002061", + "7002085", + "0003737", + "1004087", + "2005272", + "1003353", + "8001065", + "2005035", + "0004228", + "1005853", + "3003482", + "1004201", + "6002529", + "3004599", + "7002886", + "7002401", + "0006854", + "7004388", + "0003219", + "3004953", + "1006006", + "0004459", + "3003381", + "3006954", + "6003492", + "6004854", + "3004178", + "2006071", + "4002029", + "3003100", + "2006676", + "8003508", + "0004752", + "2007222", + "4002001", + "6002416", + "2003803", + "7003948", + "7003329", + "1004424", + "7004686", + "6003172", + "3006058", + "0006729", + "0003820", + "3003757", + "1006224", + "1005468", + "7003964", + "1004134", + "3006404", + "5001179", + "3003580", + "3006015", + "3004494", + "7002446", + "7002746", + "3004716", + "1004966", + "3006288", + "6004108", + "7002761", + "2006997", + "4002079", + "1006645", + "8001068", + "5001246", + "3004066", + "1003747", + "3003347", + "4002099", + "2007070", + "0005360", + "5001923", + "0005950", + "6003030", + "3004824", + "6003827", + "7003255", + "8002067", + "3006989", + "1005409", + "3004037", + "2007307", + "4004943", + "2004891", + "2006497", + "1004574", + "6003137", + "7003870", + "1005765", + "4003985", + "2006841", + "1006515", + "1003960", + "0003533", + "0003620", + "6002964", + "0006441", + "0003809", + "8001958", + "3005768", + "8002785", + "2003951", + "3006621", + "6003403", + "3003789", + "1005755", + "8003922", + "7003408", + "3005781", + "3006248", + "3003859", + "2003353", + "0004359", + "1004761", + "6003523", + "7003328", + "8002123", + "4003224", + "4004944", + "7003893", + "2004381", + "0004898", + "5001819", + "8002175", + "7003939", + "7002636", + "3005562", + "4003596", + "6004300", + "6004395", + "5001285", + "7003334", + "8003029", + "4003316", + "8002868", + "1003060", + "0005926", + "3006702", + "0005567", + "7002860", + "3005404", + "0005200", + "6003174", + "3005439", + "7003945", + "3005975", + "7002806", + "2007419", + "0005930", + "6004264", + "0004063", + "8003401", + "2005825", + "5001364", + "7002752", + "6002429", + "8003567", + "1003382", + "0005374", + "0004602", + "3006427", + "0005642", + "3003399", + "7002947", + "0003658", + "0003001", + "2006878", + "1003097", + "0004314", + "2004817", + "2003182", + "5001407", + "4003080", + "4002186", + "0003376", + "3006372", + "0004596", + "6002745", + "7003430", + "4004308", + "2004218", + "1003133", + "0005559", + "3005928", + "3005136", + "7004550", + "6003489", + "0003561", + "2005863", + "8001578", + "1003531", + "4003461", + "0003061", + "6003899", + "1006176", + "0003963", + "1005501", + "2006884", + "7002040", + "0003572", + "7002808", + "1004247", + "2005190", + "0005378", + "0004058", + "3004199", + "7003528", + "4004397", + "4002999", + "0005835", + "5001346", + "7003091", + "2005720", + "6003954", + "8002435", + "8001869", + "2005518", + "1004964", + "0006967", + "3006393", + "7003282", + "2005435", + "7002287", + "2003438", + "1003569", + "7004790", + "4003438", + "2005083", + "1003908", + "8003571", + "6003260", + "2005897", + "7002212", + "0003482", + "3003970", + "2005183", + "1006415", + "2003407", + "1005087", + "7002950", + "1004188", + "1004594", + "3005801", + "6002428", + "2006030", + "4002969", + "3006530", + "6004988", + "2006772", + "1005350", + "1005326", + "0006711", + "3003793", + "2003664", + "2005998", + "6004877", + "4004941", + "6003289", + "8002015", + "1006394", + "4002566", + "8001673", + "1003263", + "1003217", + "1006779", + "0004866", + "7004384", + "4003345", + "2004231", + "6002512", + "7003548", + "3003368", + "2004483", + "1005074", + "6002843", + "8001516", + "1005167", + "1003809", + "6003589", + "0006313", + "1004996", + "3004159", + "3004545", + "2003350", + "3005989", + "2004433", + "2006027", + "7004158", + "8002802", + "7004824", + "0004484", + "2003968", + "0005967", + "8002528", + "0004269", + "2004800", + "2007669", + "1005889", + "0003721", + "7003130", + "3004977", + "4003445", + "6004515", + "0004313", + "1004155", + "0006424", + "7004856", + "2004944", + "0005068", + "3005250", + "4004280", + "2007694", + "0005823", + "1005902", + "2003844", + "4004519", + "4004491", + "6003931", + "3006678", + "0003267", + "6002163", + "4002444", + "2004144", + "6003272", + "4003212", + "3004752", + "1005224", + "2007348", + "8003720", + "8003376", + "3006149", + "0004906", + "6002723", + "2003063", + "2005002", + "4002228", + "2007622", + "3005757", + "1004723", + "8003540", + "6004771", + "4003795", + "3003990", + "2003966", + "7002747", + "0006637", + "3003928", + "8001369", + "4004371", + "8002125", + "7004705", + "1005471", + "2004793", + "1006623", + "4004018", + "4003878", + "7003593", + "8002622", + "2005108", + "6003290", + "0004515", + "6003563", + "0004903", + "1004825", + "1006478", + "7004894", + "0006183", + "5001855", + "0006279", + "4004111", + "2003013", + "3006605", + "4004934", + "8003904", + "0004787", + "4004318", + "7004204", + "6003782", + "6004164", + "0005684", + "2005017", + "2005328", + "0005343", + "6004733", + "5001236", + "3005650", + "3003743", + "0004250", + "7003871", + "3004420", + "4002189", + "4004931", + "3005668", + "7004878", + "7002281", + "3003182", + "3006711", + "0004199", + "3003971", + "2006507", + "6004159", + "0005702", + "8003388", + "6003039", + "3003862", + "2005517", + "0005189", + "6003979", + "8001842", + "1003876", + "7003194", + "1004319", + "2005274", + "7002482", + "6004791", + "8002078", + "3003206", + "1006010", + "3006718", + "3006217", + "2005440", + "1003788", + "7002575", + "2004957", + "4002958", + "3005065", + "1004150", + "8002758", + "2003259", + "6004171", + "3006138", + "7002715", + "8001776", + "1003125", + "8002099", + "3006871", + "7002819", + "7004855", + "1005096", + "2004560", + "4004229", + "2004557", + "1003730", + "2003570", + "1005203", + "8001380", + "1004130", + "2003199", + "7004692", + "3005290", + "8003045", + "0004082", + "4003469", + "3003005", + "7003167", + "8001483", + "3004431", + "2006879", + "4002352", + "8003176", + "6002240", + "6004428", + "0004287", + "6003810", + "1005604", + "6003985", + "0003937", + "1005019", + "3003607", + "4003137", + "6004434", + "0004605", + "8003711", + "3005638", + "4003790", + "7003932", + "1004149", + "0003197", + "8003515", + "6002095", + "7002007", + "1006694", + "2003898", + "0005678", + "1004056", + "0006003", + "2005233", + "2005028", + "2007788", + "3005121", + "3006808", + "8003518", + "3005533", + "2003954", + "3004519", + "2004384", + "4004485", + "1005292", + "3003428", + "0003433", + "0006386", + "8001603", + "4002960", + "2003090", + "5001902", + "8002496", + "8001566", + "7002409", + "6003292", + "2005158", + "3006922", + "0003208", + "7004572", + "7002856", + "0005381", + "0006162", + "0005452", + "2004598", + "0005188", + "4004118", + "8002566", + "3005125", + "0006412", + "2005049", + "6002938", + "1006798", + "7004022", + "3005626", + "7004000", + "0003735", + "6002937", + "5001111", + "1005717", + "7004449", + "1005246", + "4002256", + "3003804", + "6004900", + "0005630", + "2006828", + "1006041", + "4003025", + "8001524", + "2005109", + "3003937", + "2004700", + "4004477", + "1003820", + "0004575", + "4003909", + "2007331", + "1003281", + "6004478", + "1005189", + "7003981", + "2004981", + "8003787", + "8002705", + "6002521", + "2005332", + "8002412", + "7003733", + "3003571", + "3005010", + "4002156", + "3006779", + "0006544", + "0004043", + "1004334", + "2005780", + "0003827", + "8003457", + "2004933", + "1003925", + "4003272", + "0004460", + "2004137", + "8003409", + "3006693", + "8003831", + "2003679", + "2007803", + "2006373", + "5001638", + "5001523", + "1005922", + "2007496", + "3003289", + "6002029", + "3003241", + "4004330", + "0005723", + "8003875", + "4004984", + "1006784", + "1006318", + "7003068", + "7002682", + "8001392", + "7003678", + "3005028", + "1004774", + "3003378", + "0005688", + "6004912", + "4003432", + "6003720", + "4003773", + "1006428", + "8003638", + "4004361", + "0003151", + "0004016", + "7002804", + "0004779", + "1006244", + "6003023", + "2004847", + "3006551", + "6003957", + "2007678", + "1005274", + "3005540", + "5001278", + "2005383", + "2006461", + "2003643", + "2006036", + "3004968", + "2006390", + "1006482", + "2007718", + "6004630", + "1004064", + "5001877", + "0004221", + "4003631", + "4004532", + "7004622", + "6004224", + "7004470", + "0004526", + "7003396", + "8002398", + "8003283", + "3006890", + "1003192", + "0003552", + "7002816", + "8001222", + "8001312", + "2003372", + "5001529", + "1004344", + "7003510", + "6004972", + "6004504", + "7003696", + "3006044", + "1004135", + "6002866", + "7004980", + "2007671", + "8003313", + "7003751", + "8003559", + "2005577", + "1006171", + "2004766", + "7002616", + "8003771", + "5001081", + "4002806", + "8002486", + "7002751", + "1003581", + "2003961", + "3003234", + "4002072", + "7004002", + "5001628", + "0004055", + "1006911", + "4004298", + "3006093", + "7002788", + "0006575", + "2003794", + "3004018", + "1005039", + "3004184", + "2007945", + "3003833", + "2007567", + "1006201", + "5001085", + "6004562", + "2003964", + "1004725", + "1006843", + "0004130", + "8001695", + "0003684", + "3005083", + "1004820", + "1004088", + "0006248", + "4003254", + "1006648", + "7002786", + "2004911", + "3006454", + "8002928", + "8001186", + "2005552", + "6004275", + "0005065", + "2006702", + "3005476", + "0006839", + "3006420", + "2007506", + "6003793", + "6004089", + "2003272", + "7003433", + "4002394", + "5001913", + "2004539", + "1005746", + "0003795", + "2007763", + "4004942", + "4003918", + "2003153", + "0005062", + "2005390", + "0003575", + "8002201", + "0004294", + "5001331", + "0003313", + "2005935", + "0006113", + "1005123", + "0004462", + "4004486", + "7003275", + "5001512", + "6003894", + "6002118", + "6004923", + "2006249", + "8002837", + "5001194", + "2007144", + "2007010", + "1003961", + "1006806", + "8001967", + "4002558", + "7002122", + "1004082", + "6003062", + "6003673", + "1003155", + "7003429", + "2005251", + "1005711", + "0003059", + "0006247", + "3004856", + "3006859", + "6000008", + "0005033", + "3004659", + "3005557", + "0006727", + "2004077", + "2003952", + "3003318", + "4002190", + "3006186", + "0003990", + "7002926", + "7002658", + "0005336", + "6002014", + "8002192", + "0003818", + "4004435", + "2005373", + "5001710", + "3004339", + "2005596", + "4003715", + "3005348", + "8002441", + "4004305", + "1003989", + "6002135", + "8001901", + "2004518", + "2007122", + "3006673", + "6002321", + "1005318", + "4003219", + "2003696", + "6003790", + "5001341", + "7003569", + "0005627", + "0006194", + "2005395", + "1003945", + "0005349", + "3004875", + "4003043", + "2006193", + "1006343", + "8003752", + "0005268", + "6002234", + "1004511", + "7003048", + "2006378", + "3004194", + "3005195", + "8001058", + "6002458", + "0006915", + "3005495", + "8002141", + "3004730", + "2006916", + "2004568", + "7002066", + "0006245", + "3006778", + "3003166", + "1004364", + "8002543", + "8001142", + "3005531", + "6004638", + "2007604", + "1003300", + "0003262", + "8002332", + "2006096", + "6003355", + "6004250", + "4004203", + "1004701", + "3004366", + "6002333", + "3004474", + "8002582", + "8001337", + "4003711", + "2006355", + "8002055", + "2004067", + "6004678", + "5001941", + "3003427", + "3004071", + "0005568", + "1004262", + "4004686", + "1005323", + "2004633", + "6002979", + "6002241", + "1005833", + "8003219", + "3004669", + "8002258", + "7003338", + "6002042", + "4004372", + "2006442", + "2004747", + "0003445", + "3005286", + "7003421", + "0003127", + "1005137", + "7003951", + "3005950", + "7003667", + "1005259", + "2007373", + "2007309", + "3006211", + "6002660", + "0004719", + "1005959", + "3006034", + "4003443", + "2003998", + "2006226", + "3003765", + "5001716", + "3004045", + "1006925", + "8001214", + "6003881", + "0006740", + "3003560", + "3005543", + "1004110", + "2007928", + "1006745", + "2006216", + "0006985", + "3006815", + "0005886", + "0003996", + "8001219", + "1005831", + "0005046", + "7003776", + "6004120", + "3005128", + "6002277", + "4002492", + "2005724", + "2004013", + "6004612", + "7002508", + "2004968", + "8003828", + "1003920", + "0006785", + "1004961", + "7003483", + "2007146", + "4002812", + "6003394", + "7003351", + "7003207", + "8003040", + "4004526", + "4002745", + "8001981", + "2006812", + "2006233", + "8002210", + "0005700", + "3004502", + "4004885", + "0004308", + "3004404", + "3006782", + "6003545", + "0004107", + "1005359", + "3006874", + "1006446", + "1003849", + "1005918", + "3004695", + "6004974", + "0006012", + "2005446", + "7002932", + "4004649", + "7004320", + "5001413", + "3006840", + "7002314", + "0003242", + "3003171", + "1003710", + "1004172", + "1005398", + "7004893", + "4004002", + "0003141", + "0003859", + "2007699", + "0003716", + "6003089", + "1003020", + "4004198", + "0003951", + "6004051", + "7002238", + "7002491", + "7004615", + "8003885", + "4004208", + "3004748", + "2005754", + "4002108", + "2007643", + "6004904", + "1006262", + "1005900", + "2005372", + "0003838", + "5001801", + "8003290", + "3004310", + "1004400", + "1003207", + "1005773", + "6003025", + "4004755", + "3004485", + "3003372", + "0006615", + "5001227", + "8003041", + "0003944", + "6003161", + "0004162", + "0006131", + "8002501", + "6003187", + "8001479", + "0005799", + "2003660", + "6004266", + "3006136", + "3004672", + "0004918", + "3004586", + "0006696", + "5001375", + "0004119", + "2003088", + "2006270", + "8002563", + "8002835", + "3004248", + "2007539", + "2003920", + "6002580", + "0003725", + "0004284", + "2006163", + "7004482", + "6002919", + "2006157", + "3006776", + "3006838", + "0004948", + "8001684", + "4004569", + "1006616", + "5001146", + "8001914", + "0005282", + "7003490", + "8003945", + "6003146", + "6004987", + "6003481", + "8003937", + "2003210", + "2007806", + "1005152", + "6002405", + "6003274", + "2005986", + "8003110", + "2004761", + "7004901", + "7002191", + "3006641", + "1004465", + "8001368", + "7004088", + "7002744", + "6003811", + "3003040", + "8003094", + "2006324", + "2005124", + "1003647", + "2003714", + "7002218", + "4004428", + "2003400", + "2005983", + "7004031", + "7002560", + "4004158", + "7002774", + "8002885", + "6003258", + "2006726", + "4004077", + "1006990", + "2004068", + "2004913", + "0006209", + "3004299", + "2006428", + "2007278", + "8002228", + "7004965", + "7004225", + "8001321", + "6003856", + "3004383", + "6003332", + "7002729", + "5001018", + "0005471", + "1004548", + "2004884", + "0006574", + "6004529", + "2005060", + "2005427", + "8003971", + "4004879", + "3003203", + "3004931", + "7004959", + "3005612", + "3006572", + "2007929", + "1005842", + "0006401", + "0005421", + "2003086", + "1006570", + "2007465", + "2007700", + "7004155", + "7002380", + "2003060", + "3005873", + "4004168", + "3005006", + "1004569", + "7004065", + "1006405", + "8002402", + "6004793", + "6003877", + "6004091", + "3003632", + "2004347", + "7002866", + "3003195", + "7003668", + "0004676", + "2003774", + "1005422", + "8001340", + "6004868", + "1005106", + "2006697", + "1004710", + "1006206", + "0006435", + "0005162", + "2003248", + "3004495", + "6002072", + "6002445", + "4003546", + "0004958", + "2005019", + "2003682", + "4002054", + "7003979", + "2004868", + "0005822", + "4003257", + "1006296", + "7002468", + "0004015", + "8003242", + "3003212", + "3006430", + "6002288", + "0006334", + "3004630", + "5001586", + "8003733", + "6002126", + "2004618", + "3006273", + "1005824", + "1005029", + "4003301", + "2007358", + "6004717", + "6002064", + "7002611", + "7003059", + "0006081", + "2003867", + "7004136", + "3005150", + "4002501", + "1005305", + "0005524", + "4004178", + "0004528", + "2007403", + "3003931", + "6002535", + "1005125", + "1006850", + "1004634", + "1003223", + "8002796", + "3005352", + "1005449", + "2004701", + "0003317", + "1005451", + "0005913", + "1005587", + "8003768", + "7004198", + "8001517", + "0003810", + "0006180", + "0004070", + "1004474", + "7003955", + "4004703", + "7004417", + "1005907", + "1006466", + "5001347", + "7003199", + "1003927", + "1006140", + "1005226", + "7003099", + "4002271", + "2005536", + "8001455", + "1004965", + "7002979", + "7002843", + "7003658", + "1003049", + "8002754", + "7002789", + "0006210", + "2003934", + "7002739", + "7003367", + "1006395", + "1005296", + "5001065", + "0006500", + "3003892", + "4003550", + "6002006", + "3005319", + "7002586", + "6002357", + "0003216", + "2006799", + "7004403", + "2003388", + "1006237", + "4003026", + "1005676", + "8003134", + "6004679", + "0003869", + "5001861", + "3006357", + "5001005", + "2005404", + "8001820", + "4002721", + "4004527", + "1003196", + "5001079", + "0006322", + "3006781", + "6003424", + "3003609", + "1003760", + "2005171", + "0005816", + "4004820", + "8003441", + "3006282", + "4002749", + "6002339", + "3005442", + "6002290", + "7003780", + "2005461", + "5001348", + "3005816", + "0003392", + "8003103", + "6003148", + "4002773", + "2004237", + "4003097", + "6004683", + "2006887", + "3005703", + "6003911", + "5001030", + "2004988", + "2005601", + "2004141", + "6003686", + "4002650", + "8003599", + "8003151", + "7002842", + "0004867", + "3006683", + "8001506", + "8003591", + "1003611", + "2004819", + "3006323", + "7004475", + "6002283", + "7003278", + "2004723", + "0004496", + "3006421", + "2005200", + "3004680", + "5001689", + "6002231", + "8003267", + "2006609", + "0004399", + "8002410", + "4002798", + "8001649", + "1004212", + "2006199", + "6004156", + "0005554", + "5001820", + "5001513", + "2003854", + "8003389", + "1003943", + "4004388", + "2003007", + "1006027", + "3003801", + "1005364", + "1006111", + "7003960", + "0006017", + "5001736", + "8003357", + "6002965", + "8001573", + "3005376", + "7004464", + "8003175", + "7003496", + "3005863", + "2003464", + "6003502", + "2005477", + "4004799", + "0005416", + "2007831", + "0004265", + "7004408", + "2004497", + "1005972", + "3004512", + "7004525", + "2006391", + "1006493", + "0005528", + "7003369", + "3003510", + "4002288", + "0005369", + "2006901", + "3006469", + "0004093", + "0004776", + "1004773", + "0005390", + "6004217", + "1003538", + "1004187", + "8001271", + "2005873", + "3003097", + "1003334", + "2004074", + "0003769", + "0003440", + "2006553", + "6003948", + "4004852", + "7002686", + "3006457", + "0006684", + "6003168", + "7004184", + "3004625", + "8001519", + "4002705", + "3004627", + "2007306", + "8003125", + "7002963", + "2005465", + "2007492", + "5001181", + "6003109", + "1003406", + "0005916", + "2003825", + "4003605", + "0005415", + "6002460", + "7004061", + "7004808", + "2004468", + "3003957", + "2006359", + "4002185", + "3005108", + "6002486", + "8002982", + "1005115", + "2007459", + "4004153", + "0005254", + "1006524", + "0005146", + "6003285", + "8002236", + "7002862", + "0004743", + "2006617", + "4003552", + "2007877", + "4002321", + "6003130", + "2003412", + "2003189", + "1004463", + "4004218", + "3006398", + "1005485", + "4004586", + "2003943", + "3005334", + "6003813", + "3004802", + "0003992", + "8001257", + "1003966", + "2005407", + "8001317", + "8003461", + "4003609", + "2003928", + "7003742", + "8001289", + "8001221", + "4002219", + "0004627", + "8002722", + "3003929", + "0004595", + "0004319", + "8003747", + "4003113", + "1006693", + "3003366", + "6002566", + "7002545", + "2003475", + "1004231", + "0005584", + "6002856", + "8002626", + "7004137", + "7004447", + "1006424", + "2004825", + "8003755", + "2007447", + "1004880", + "3004537", + "2006247", + "1005884", + "4003659", + "2006150", + "0003088", + "7004661", + "2005829", + "0004786", + "6003961", + "2005249", + "1003328", + "4004424", + "1005196", + "7003623", + "8001688", + "0006515", + "6004459", + "3006730", + "0003736", + "1003618", + "4004377", + "2007032", + "0004216", + "6003753", + "1006320", + "0004951", + "3004665", + "0003672", + "7003440", + "7002336", + "2003463", + "1006800", + "3005896", + "4003772", + "3006917", + "5001788", + "7002582", + "2003376", + "0003668", + "5001376", + "7004802", + "3005753", + "8002434", + "3004656", + "1005058", + "1003979", + "8001131", + "0006986", + "7004817", + "4002957", + "0006287", + "4003835", + "2005816", + "0005958", + "6003904", + "3006151", + "5001618", + "7003763", + "4002272", + "1004689", + "0005533", + "2003140", + "1006036", + "7004953", + "0003557", + "1004731", + "8002301", + "2003035", + "1003123", + "4002700", + "0005852", + "2006167", + "2006851", + "1006940", + "5001633", + "0003806", + "1006833", + "1003901", + "6004615", + "3004880", + "5001981", + "1004523", + "4003527", + "0003189", + "8002475", + "8001719", + "8001629", + "3004898", + "3004640", + "3005879", + "3006389", + "1003911", + "3003031", + "5001253", + "6003156", + "3004888", + "1004251", + "2003431", + "6002771", + "4003065", + "6002798", + "1005227", + "8002942", + "0004654", + "2003235", + "6003387", + "0005095", + "4004813", + "2007730", + "3003094", + "0005301", + "8003326", + "8003405", + "7002975", + "2003302", + "0006226", + "4002104", + "1006113", + "3004751", + "6004539", + "5001942", + "7004297", + "7004987", + "1004243", + "2007103", + "3004926", + "7002546", + "1006434", + "2003174", + "6003674", + "0006633", + "4002292", + "7003924", + "7002361", + "8003307", + "1005820", + "0003489", + "1003633", + "1003509", + "1004848", + "1003412", + "2004616", + "8003551", + "6002202", + "5001772", + "2004695", + "8003514", + "7002940", + "6004325", + "4004483", + "2007026", + "6004563", + "2004848", + "5001612", + "7002669", + "4003273", + "3006125", + "0006789", + "0004143", + "8002294", + "1004851", + "7003586", + "0004056", + "7003673", + "2003788", + "0006863", + "6003073", + "1003029", + "0003160", + "1004104", + "8002671", + "2003799", + "4004710", + "8002953", + "6003028", + "0006368", + "1005826", + "0005323", + "1004650", + "0005462", + "3006944", + "4004400", + "4004883", + "6004934", + "2003535", + "3006602", + "6003683", + "8003127", + "1005827", + "0004164", + "8003592", + "0005377", + "6003262", + "3004017", + "8003834", + "8003907", + "8002396", + "8001936", + "6003078", + "8002601", + "1003622", + "6002465", + "2003717", + "2003384", + "8001274", + "8002966", + "0006850", + "2004143", + "6002844", + "3003722", + "1003410", + "4002389", + "2006870", + "6004543", + "6003852", + "3005208", + "2004920", + "8003305", + "8003774", + "4003037", + "7002899", + "0005476", + "6002462", + "6004724", + "7003789", + "3003505", + "2004921", + "2005358", + "0005204", + "5001206", + "4002524", + "4004571", + "2007606", + "4002828", + "1004568", + "8003685", + "4002097", + "0003870", + "2003859", + "0004370", + "7003892", + "8003169", + "3003338", + "6003491", + "8002325", + "1003247", + "6003978", + "1006178", + "2003486", + "4003824", + "1005597", + "4003081", + "7002325", + "3006509", + "1004310", + "4002780", + "2006468", + "4003052", + "7003970", + "1003589", + "6004495", + "8001721", + "2003798", + "1003349", + "2004995", + "2007350", + "8001014", + "0003373", + "7004394", + "3003805", + "2005799", + "3006002", + "2006383", + "7003632", + "6003488", + "1004737", + "0006069", + "1006131", + "3005637", + "1004732", + "0006657", + "2004097", + "2004628", + "3006552", + "8001574", + "4002534", + "8001767", + "1006369", + "2007027", + "2006734", + "8002925", + "1004079", + "7003387", + "1005000", + "0005511", + "6003068", + "2004666", + "7004008", + "5001835", + "8003426", + "2003678", + "2007888", + "6002106", + "2005609", + "0006065", + "8001442", + "7003071", + "1006764", + "4003335", + "4004054", + "3003114", + "1004871", + "5001101", + "5001542", + "2006400", + "6003277", + "7004438", + "8003100", + "3005836", + "6003839", + "8002843", + "2007353", + "7003670", + "0004018", + "7004226", + "8002523", + "6004787", + "4003890", + "6004692", + "3005400", + "0006598", + "2003727", + "7002922", + "8001179", + "4004323", + "1005640", + "6004238", + "1004879", + "2005705", + "2007517", + "1005990", + "3003682", + "8002778", + "3003146", + "6003841", + "1005109", + "0006796", + "7004436", + "2007960", + "7002924", + "6003151", + "7002024", + "2005817", + "2005672", + "5001257", + "0004268", + "6002085", + "7002910", + "2005985", + "8002340", + "2003358", + "0006311", + "2005179", + "5001059", + "7004386", + "1003606", + "2006542", + "4004660", + "6003989", + "8003332", + "2003045", + "0004660", + "4004070", + "0003472", + "7002016", + "1006172", + "3006866", + "4002829", + "8001170", + "2004323", + "3006558", + "0003031", + "3004759", + "3003092", + "6003098", + "1003095", + "8003878", + "3006358", + "1003390", + "3004795", + "5001946", + "8003343", + "6004540", + "7002114", + "5001041", + "1006246", + "4004080", + "0004277", + "4002711", + "0006336", + "1003891", + "6002504", + "4003578", + "2007394", + "3006014", + "8002148", + "2006018", + "0006448", + "7003684", + "6002649", + "2007248", + "5001205", + "0006956", + "8003936", + "2004796", + "0005793", + "3006973", + "1004599", + "6004333", + "7002618", + "3005312", + "5001096", + "8001187", + "6003319", + "0004716", + "0006769", + "0004457", + "0005105", + "7002430", + "7002787", + "5001741", + "7002506", + "7003104", + "8001722", + "7004430", + "6004619", + "4003532", + "1003058", + "1006474", + "0003152", + "0003739", + "2005193", + "6004759", + "6002613", + "0003925", + "3003954", + "6004042", + "7004717", + "4003355", + "0003791", + "5001803", + "1004267", + "7002370", + "6004548", + "0004835", + "1004317", + "8003183", + "2003435", + "6002280", + "2005467", + "1004033", + "6004973", + "1006555", + "7002918", + "7004334", + "0006503", + "3003326", + "7004589", + "3003193", + "0003434", + "2004959", + "3004486", + "6003615", + "4002466", + "0006999", + "3004528", + "3005361", + "3004484", + "1006234", + "3004200", + "2006489", + "2007854", + "4002951", + "8003819", + "1003762", + "3006415", + "7002163", + "3006352", + "1005819", + "4002259", + "8001613", + "2003672", + "8001074", + "2006523", + "8001441", + "1003205", + "6002805", + "2004855", + "7004693", + "3005488", + "0006459", + "1004156", + "1005563", + "8002554", + "0005531", + "4003302", + "3006128", + "3004284", + "4003826", + "0003643", + "7003265", + "7004146", + "4002105", + "3003562", + "1004768", + "3004894", + "0004072", + "3004309", + "3005227", + "8001031", + "6002198", + "2007932", + "3003641", + "0003908", + "1006567", + "1003342", + "4002422", + "7003843", + "8001815", + "3004813", + "8001618", + "3006907", + "6002605", + "2004507", + "0003790", + "3005952", + "2004173", + "6004924", + "3005339", + "4002055", + "6004211", + "2006037", + "0006974", + "7003395", + "7002132", + "5001436", + "0003593", + "0003730", + "0006125", + "8002406", + "0003652", + "6004384", + "3005695", + "0003432", + "6004542", + "0003610", + "2004356", + "6004531", + "4004573", + "8001226", + "0006371", + "7002247", + "6004756", + "2005927", + "8001735", + "6004420", + "7002668", + "6002274", + "2003378", + "1006568", + "3005515", + "1006975", + "2005848", + "0006190", + "5001174", + "5001927", + "3005343", + "1003293", + "3004758", + "7003187", + "1003459", + "2007201", + "6002300", + "3003298", + "1006653", + "2004683", + "4002651", + "8001966", + "6003096", + "6002208", + "8002020", + "2007039", + "3006692", + "8003360", + "2004251", + "4004666", + "2004648", + "1006900", + "6002597", + "7002659", + "6003657", + "1003503", + "1004409", + "8001045", + "2006173", + "0003567", + "3004077", + "3006290", + "4004373", + "0004991", + "1005084", + "6002121", + "3003407", + "6003113", + "7002498", + "3006573", + "1004955", + "5001193", + "1003042", + "7004663", + "1005912", + "0006067", + "0005806", + "3005968", + "4004508", + "6004731", + "2004088", + "1004327", + "2004510", + "7004385", + "2004063", + "1005572", + "3005944", + "1005617", + "2006894", + "0005232", + "7003819", + "1006840", + "6003681", + "3006566", + "0006728", + "0004091", + "0005727", + "3003962", + "2007767", + "0006757", + "3004940", + "1004446", + "1004958", + "1006548", + "1006017", + "8003750", + "7004086", + "2004228", + "0004479", + "3005729", + "4002966", + "8001894", + "1004516", + "2005768", + "0003722", + "1004012", + "7004332", + "3003264", + "6003493", + "8001609", + "3003050", + "7004129", + "3006451", + "7002340", + "5001634", + "6004582", + "8002534", + "1005529", + "8002541", + "4002052", + "1006640", + "7003356", + "4004117", + "1005670", + "0003335", + "1006551", + "3006662", + "7002064", + "8002581", + "7003390", + "2005087", + "1004845", + "3005256", + "8001039", + "1006892", + "8002789", + "1004906", + "8001577", + "0003128", + "8003233", + "2004749", + "7003554", + "1003278", + "6003216", + "0005091", + "7004977", + "3006271", + "7003735", + "0005625", + "5001703", + "1004867", + "4003465", + "2003910", + "1005219", + "8001051", + "8001404", + "1005385", + "2005252", + "4004699", + "6004312", + "5001952", + "6004421", + "0006703", + "0005160", + "0005163", + "3005609", + "5001003", + "8003367", + "5001584", + "0003122", + "3005617", + "5001607", + "7002653", + "0006950", + "8003358", + "0004853", + "8001419", + "0006997", + "2007335", + "4004357", + "0006186", + "3004560", + "3003925", + "3005966", + "7003307", + "4004919", + "3005486", + "5001029", + "4004138", + "0003683", + "2007556", + "1003670", + "4004606", + "0003515", + "5001266", + "3004426", + "7003225", + "8003373", + "5001327", + "4004243", + "2006657", + "1003897", + "0004744", + "2007008", + "7003643", + "2003908", + "0006451", + "1005347", + "6004027", + "8002772", + "3003106", + "2003642", + "1004100", + "4003561", + "2006488", + "7002532", + "4004454", + "0004766", + "3006685", + "6003254", + "4003271", + "2005781", + "2006498", + "6002984", + "1004971", + "5001770", + "7004372", + "2006672", + "6003225", + "8002623", + "2003860", + "2003591", + "3004661", + "8001446", + "8001824", + "3005993", + "1006611", + "1005818", + "2004838", + "5001487", + "1005393", + "3005976", + "2007860", + "3005199", + "1004252", + "1006629", + "3003849", + "7003451", + "3006979", + "2005887", + "7004681", + "4002468", + "3003413", + "6004735", + "4003199", + "2004316", + "0005877", + "6002050", + "1006963", + "0003862", + "0003080", + "8003471", + "0005909", + "3006088", + "7004701", + "3006069", + "2007997", + "0006763", + "8002108", + "4002746", + "0006014", + "8001034", + "4004149", + "5001765", + "0003872", + "7004983", + "7004547", + "8003838", + "0004610", + "2007847", + "7004722", + "2007192", + "4004959", + "1005909", + "2005608", + "3004004", + "2006313", + "8003390", + "7003248", + "0004154", + "3005068", + "4002495", + "2004704", + "0005434", + "4003448", + "2007438", + "6004326", + "2003126", + "6004631", + "1006247", + "3006925", + "3006766", + "7004485", + "4004276", + "7002240", + "2004839", + "2006814", + "3004440", + "5001907", + "1003106", + "2006453", + "2006064", + "1005514", + "8001486", + "4004925", + "8001551", + "6002639", + "3004501", + "7003471", + "4004173", + "3005725", + "4003178", + "0005039", + "7004637", + "2006311", + "2004603", + "8001103", + "2007114", + "3005773", + "3005505", + "8003348", + "2003901", + "6004801", + "2006706", + "0005034", + "3006010", + "6004306", + "1003231", + "1005379", + "0003777", + "3005276", + "4004022", + "8001171", + "0005971", + "3004102", + "1005105", + "0004862", + "0004193", + "7002497", + "7002334", + "1003795", + "2005747", + "0003190", + "5001162", + "6003639", + "6003044", + "4002152", + "3003570", + "1005361", + "5001323", + "3004584", + "3003751", + "0005235", + "6004933", + "1004746", + "3006482", + "1004595", + "6002273", + "3006953", + "0004232", + "2006862", + "7002010", + "3006996", + "6004383", + "4004928", + "6004007", + "8001290", + "4003606", + "7002415", + "0005728", + "7003692", + "4002754", + "8001095", + "6004307", + "3003802", + "2003604", + "8001830", + "1004963", + "2006948", + "8001653", + "1003214", + "8002337", + "0005385", + "3003860", + "3004110", + "4002306", + "8002744", + "1005389", + "1003482", + "8003994", + "1003623", + "3003588", + "7004440", + "0006215", + "0004131", + "0005013", + "6003831", + "0004728", + "6003031", + "1006137", + "3006527", + "2004235", + "7002501", + "8002177", + "3006650", + "0005633", + "8002869", + "4004718", + "1003595", + "4003783", + "2006205", + "0006439", + "1005973", + "1006879", + "2005789", + "1005054", + "1004210", + "6004828", + "1006452", + "4002421", + "4002296", + "3006569", + "4002879", + "3003152", + "8001075", + "4004411", + "2005832", + "0004816", + "4004093", + "2006694", + "7004540", + "7002180", + "3004547", + "3005496", + "6002929", + "2007489", + "3004601", + "1006184", + "0005101", + "0004982", + "1003266", + "1004153", + "6003798", + "6003915", + "6002114", + "7002679", + "7003618", + "1003272", + "3006232", + "3003125", + "4004772", + "3003022", + "7002550", + "5001380", + "6003392", + "2006749", + "1006152", + "8001450", + "3004686", + "3004043", + "2003111", + "2005782", + "7003139", + "1003493", + "3004696", + "5001825", + "0005842", + "2005043", + "7004588", + "2003782", + "3004327", + "1006512", + "7003101", + "0005110", + "3003041", + "3004676", + "4004577", + "4004461", + "1004719", + "1004289", + "0005193", + "0005935", + "4004174", + "0006265", + "1004907", + "4002031", + "3004123", + "0006317", + "1006557", + "0004561", + "6002259", + "7002685", + "2007176", + "4003433", + "3006963", + "1003355", + "1005340", + "2007261", + "8001503", + "0005739", + "8003018", + "5001750", + "8001723", + "1003986", + "4004726", + "8001264", + "3003438", + "7002332", + "4003503", + "2006202", + "1006150", + "0005328", + "4004413", + "0005103", + "7004577", + "7002536", + "1006700", + "5001828", + "6004597", + "4004858", + "4003329", + "5001130", + "3005680", + "3006674", + "3003044", + "6002493", + "2006340", + "8002226", + "4003105", + "8002289", + "6002756", + "3005815", + "6004139", + "0004494", + "0004453", + "0005846", + "3004148", + "5001938", + "3003855", + "8003614", + "5001321", + "2005162", + "4004283", + "4002989", + "1003822", + "2003676", + "2005327", + "4003648", + "6004505", + "3005983", + "4003804", + "6004601", + "0003235", + "6004064", + "2004640", + "4004281", + "8002840", + "4003038", + "3006245", + "2003960", + "3006753", + "3003764", + "8001013", + "6003143", + "6004303", + "7003209", + "0003896", + "5001391", + "7002124", + "2006160", + "8003282", + "0003744", + "3003273", + "6002470", + "4003476", + "1003505", + "1004006", + "0004594", + "7002211", + "4002359", + "4004837", + "4004284", + "4002626", + "7004636", + "2007667", + "2005727", + "2006801", + "6003799", + "0003816", + "6002930", + "2003532", + "7004930", + "7003602", + "7002137", + "7004246", + "2005132", + "6002128", + "0006530", + "3003895", + "7002484", + "3005720", + "2003868", + "1006014", + "2006425", + "8002182", + "7004902", + "8002136", + "3005049", + "7003907", + "7002946", + "2004776", + "6004112", + "0003670", + "0003849", + "3003283", + "4003006", + "3006935", + "0005184", + "3005497", + "4004265", + "8002561", + "4004175", + "6004852", + "2007147", + "8001755", + "2005728", + "2007074", + "4003362", + "3003064", + "0006480", + "6003194", + "8001241", + "8001970", + "1003003", + "4004983", + "0006836", + "3005295", + "2003818", + "0005621", + "7003310", + "6003955", + "3006089", + "4003774", + "3004119", + "1003079", + "6002684", + "1005232", + "8002890", + "0006142", + "1006174", + "2007371", + "1006613", + "2004021", + "0004661", + "7004153", + "2004851", + "3003133", + "2004397", + "3005769", + "3005941", + "1003743", + "2004771", + "8003580", + "8002797", + "8001657", + "4002532", + "0003310", + "8001934", + "1005519", + "4002338", + "3004647", + "2005456", + "3005711", + "2006685", + "1006946", + "4004859", + "6002538", + "0004721", + "2006761", + "1005077", + "2005942", + "0006216", + "6003422", + "7003808", + "7003609", + "0006091", + "3003726", + "1003675", + "2006062", + "3006260", + "6004976", + "0004684", + "7002901", + "6003103", + "7003669", + "2005698", + "3004736", + "6004932", + "2007190", + "7003848", + "2005400", + "0005908", + "0006940", + "0003083", + "3003877", + "0005108", + "3004392", + "2004196", + "0006969", + "6002039", + "6004778", + "3004078", + "6003962", + "2004778", + "6004786", + "2007689", + "2004675", + "6003100", + "6004950", + "3005675", + "4004889", + "8002867", + "7002794", + "0006802", + "8002615", + "1003963", + "0006791", + "0005504", + "3006498", + "4003840", + "4003190", + "1006683", + "2005811", + "3005519", + "4003225", + "2007214", + "7003154", + "2006171", + "7002232", + "0005645", + "6003060", + "1004363", + "4003088", + "1004913", + "0004793", + "6004553", + "2007727", + "1005329", + "2006144", + "7003549", + "4004625", + "6002269", + "7002485", + "1006637", + "1004480", + "1003414", + "7004328", + "1005418", + "8001332", + "0003524", + "6004840", + "3006856", + "0006407", + "6003295", + "7004513", + "6002495", + "8003465", + "3003827", + "1003597", + "0006364", + "3004951", + "7004411", + "4002273", + "8001481", + "0004566", + "6003930", + "7003611", + "2007691", + "8001374", + "8002341", + "1006763", + "7002035", + "3004500", + "4002841", + "4003145", + "4002871", + "7003125", + "2004279", + "6003342", + "0004069", + "1005847", + "3006865", + "3005591", + "0004180", + "3006756", + "1003624", + "0005635", + "1005729", + "6003080", + "4002317", + "6004477", + "8003962", + "2003263", + "2004608", + "1003375", + "8003743", + "8002215", + "1005366", + "2003955", + "7002074", + "3004118", + "1003612", + "6004770", + "1003553", + "2003031", + "0006683", + "6003233", + "2007977", + "2005579", + "3005959", + "2003124", + "8003285", + "4002184", + "0003328", + "3005844", + "0004685", + "1003168", + "3003983", + "5001955", + "3005961", + "6003897", + "1006139", + "0004485", + "4003601", + "8002361", + "1005886", + "3006937", + "0004712", + "4004862", + "1003977", + "4002094", + "4002822", + "3005247", + "1006938", + "7003332", + "0003452", + "2005302", + "6002880", + "7002308", + "7003860", + "1003950", + "4003380", + "1006425", + "6003095", + "7002513", + "0003288", + "1003033", + "8003955", + "3003305", + "2003413", + "3006205", + "4002757", + "3005906", + "4004759", + "8003205", + "4004828", + "4004974", + "7003383", + "6003927", + "6004699", + "4002445", + "0004760", + "1005455", + "4004850", + "3003219", + "4002642", + "4002658", + "8001685", + "4004079", + "8001182", + "1004503", + "5001288", + "2004887", + "0004790", + "5001319", + "7003687", + "3006270", + "4002293", + "2004272", + "6003929", + "7003897", + "3004439", + "4002148", + "4004776", + "2005496", + "8001275", + "2005726", + "1006799", + "2006073", + "2005443", + "8001861", + "1003368", + "8001499", + "4002669", + "4002480", + "0005454", + "2007680", + "3006256", + "3003383", + "5001851", + "2005924", + "3006396", + "3005326", + "7002569", + "2005516", + "2007640", + "1005828", + "6004256", + "7003757", + "2005639", + "1004185", + "8002436", + "8001546", + "3005440", + "3005075", + "3005293", + "3003083", + "0004463", + "2006747", + "6003476", + "6002976", + "4004668", + "2004814", + "2007895", + "0004558", + "1003418", + "2003170", + "1005532", + "1003642", + "1004844", + "3004543", + "2006058", + "8001928", + "1006383", + "7003747", + "6002536", + "8003796", + "8003898", + "8003370", + "8002145", + "2003804", + "3003467", + "8001911", + "2004260", + "3005542", + "1006384", + "7002134", + "4003697", + "8001686", + "0003497", + "7003378", + "1004660", + "5001152", + "7004569", + "8002165", + "6002381", + "8001646", + "1004093", + "3004961", + "1003224", + "0005497", + "7004655", + "2003811", + "2007937", + "3003307", + "8001676", + "6004470", + "8002452", + "4003775", + "7002356", + "2004815", + "3003039", + "0004272", + "8003120", + "1003636", + "1005444", + "8002023", + "5001192", + "0005792", + "2005085", + "4003349", + "4004083", + "6004107", + "8002515", + "2004379", + "4002972", + "2005565", + "3004057", + "0006144", + "1005236", + "7002871", + "1003789", + "2004730", + "2003927", + "8003155", + "7002367", + "1006356", + "0006891", + "8002552", + "3006292", + "8001405", + "8003777", + "3003227", + "3003653", + "8001557", + "1005790", + "0003058", + "1005036", + "2006352", + "4002414", + "4003815", + "4002346", + "8003965", + "0006752", + "3005127", + "1006451", + "5001969", + "4002207", + "0005305", + "0006157", + "3006308", + "0006864", + "0004783", + "1004633", + "8003316", + "7003420", + "8001279", + "2007428", + "0004601", + "2006333", + "1003510", + "4003406", + "2005169", + "1003981", + "2003138", + "7002588", + "1005610", + "4003284", + "3003085", + "1004179", + "0005144", + "4003240", + "0005403", + "4002774", + "8003919", + "2003154", + "7004968", + "3005021", + "2006819", + "2007529", + "2007295", + "2004241", + "2003357", + "6002696", + "4003196", + "1005691", + "7004253", + "7002278", + "2007633", + "4002614", + "8001159", + "6002317", + "8001728", + "7003564", + "6003578", + "5001460", + "8001641", + "4004263", + "8001078", + "3006518", + "5001997", + "1003001", + "3004737", + "5001937", + "7003152", + "2006820", + "1004032", + "8002062", + "4004347", + "8002134", + "7004679", + "3004769", + "2005637", + "1003753", + "0004632", + "5001510", + "5001498", + "3004108", + "8002604", + "1005316", + "2007436", + "6003069", + "1004775", + "2006261", + "8003432", + "2007170", + "8002585", + "3004225", + "2003134", + "1004629", + "6003152", + "8003547", + "7003350", + "4002919", + "7002490", + "2005801", + "1003262", + "1006909", + "1003603", + "3005603", + "1004057", + "4004851", + "3003816", + "2006087", + "4002367", + "6003892", + "7002174", + "3004011", + "6003197", + "3005551", + "0003488", + "3005428", + "2007035", + "2006751", + "1005988", + "4002291", + "2003945", + "4003738", + "6003015", + "2005865", + "0005435", + "6004490", + "2005581", + "1003189", + "7002713", + "6004705", + "3004070", + "2003190", + "3005681", + "8001509", + "1006024", + "0006571", + "6004701", + "6002406", + "2006169", + "0005437", + "6002757", + "8003574", + "3006296", + "2003785", + "1006326", + "1006259", + "6003770", + "7004303", + "2007735", + "6003417", + "1004529", + "3004268", + "2006906", + "4004836", + "1006489", + "1003150", + "2003948", + "1003873", + "1006046", + "6002122", + "6004951", + "7004694", + "6003410", + "3003009", + "0006284", + "6002988", + "1004460", + "1005459", + "5001170", + "4003994", + "1004890", + "2003418", + "7002149", + "3003853", + "2005253", + "2006945", + "7003541", + "5001656", + "1006064", + "3003345", + "3004600", + "4004297", + "1005896", + "7004390", + "2004315", + "0005731", + "1006878", + "8002237", + "1003875", + "4003354", + "3003949", + "8001515", + "4002165", + "4002429", + "8003135", + "8001650", + "0003935", + "1006793", + "2007080", + "5001596", + "4002425", + "6003873", + "7002178", + "4004750", + "1005082", + "2005286", + "6002857", + "4003161", + "1004597", + "3005527", + "0004666", + "7002791", + "6004952", + "4004076", + "0004829", + "1003919", + "5001167", + "7004561", + "1003372", + "0003459", + "7004654", + "6004181", + "2006931", + "0004735", + "2006852", + "2007444", + "0004201", + "1003181", + "3003532", + "2003379", + "3006555", + "2006239", + "6003515", + "5001511", + "7002999", + "8002342", + "6002662", + "1004555", + "6003603", + "7003036", + "1005040", + "8003217", + "5001452", + "6003510", + "2005480", + "6003645", + "2004450", + "0003802", + "2005421", + "1005718", + "2004637", + "2007246", + "0005194", + "0005478", + "2007292", + "4004807", + "8001286", + "8002880", + "0003010", + "0003465", + "2005681", + "0006466", + "3005877", + "3004942", + "1003899", + "2003705", + "7003816", + "6004036", + "1006016", + "4003735", + "7002580", + "4002039", + "2004179", + "1004609", + "3006118", + "0003234", + "0003054", + "4004060", + "8001619", + "6003992", + "7003516", + "8003570", + "2004457", + "7003111", + "8001303", + "0004166", + "3004315", + "1004458", + "1003740", + "8002230", + "2005853", + "8003928", + "0005762", + "2006795", + "1005440", + "0003401", + "0005020", + "7002455", + "4003553", + "4002154", + "2006258", + "2006139", + "6002193", + "4002329", + "3006400", + "1005014", + "2005978", + "7004763", + "6004948", + "6003173", + "0006992", + "1003560", + "1004850", + "2007745", + "1006684", + "2006531", + "2004485", + "0005840", + "0006118", + "2007559", + "3005706", + "0004249", + "1005931", + "5001815", + "8001067", + "6002205", + "8001789", + "3003389", + "6004567", + "6003436", + "2006093", + "0006339", + "3004379", + "3004577", + "7003357", + "8003568", + "6002685", + "4003209", + "8001424", + "1003089", + "6004279", + "4002476", + "0005052", + "7003809", + "4002376", + "0006807", + "2003900", + "3005460", + "0003687", + "3004152", + "6002278", + "7003366", + "8002583", + "0005398", + "4002240", + "7003271", + "7004314", + "0004673", + "2003751", + "2004277", + "3006236", + "7004729", + "6004154", + "1006726", + "7003158", + "3003434", + "1006970", + "0004392", + "0003205", + "0006404", + "0005011", + "4004672", + "6002809", + "4004253", + "2004994", + "1005696", + "7002700", + "1003993", + "8003530", + "0005031", + "1005549", + "6002589", + "2003044", + "5001083", + "4003976", + "3003577", + "3006972", + "6003952", + "2007858", + "0004047", + "2003959", + "5001702", + "0004935", + "2007291", + "4003951", + "1004290", + "1004753", + "8001792", + "0005710", + "2004512", + "2005122", + "1004962", + "3005920", + "6004070", + "8002886", + "5001098", + "7003484", + "6004802", + "8001834", + "7003196", + "6003303", + "2003095", + "7003707", + "6003454", + "7002764", + "1005222", + "2007174", + "8002366", + "1004875", + "0005753", + "0004559", + "4003616", + "8002617", + "2006779", + "2006663", + "6002544", + "0004895", + "3003578", + "7003052", + "0003342", + "3005908", + "6004521", + "1004402", + "6003265", + "1006943", + "0004282", + "1006134", + "1003428", + "1003896", + "2006954", + "7003601", + "5001613", + "1004926", + "1004050", + "8003581", + "2005871", + "1003975", + "2007488", + "3005842", + "8002654", + "3004569", + "8001512", + "4004539", + "0005991", + "1004694", + "6003128", + "2006902", + "8001783", + "0003665", + "6003970", + "0005053", + "7003931", + "3006805", + "3004353", + "6003048", + "6002989", + "2005319", + "6002848", + "8003363", + "4002727", + "8003681", + "1004026", + "0003891", + "0006010", + "1004031", + "2003807", + "1005172", + "6003397", + "3004578", + "4003139", + "7002135", + "7004172", + "3004193", + "8003935", + "2005258", + "6003390", + "2006768", + "3006794", + "0003986", + "3004533", + "3003063", + "3004076", + "3003414", + "0006750", + "7002438", + "8003098", + "8002998", + "6004439", + "1003768", + "2006595", + "0006542", + "1005910", + "4003393", + "4002143", + "3004104", + "2007958", + "8002874", + "2006628", + "0004118", + "1006809", + "4002847", + "3004662", + "4004440", + "7004859", + "1005681", + "7004927", + "8002310", + "3004710", + "4002471", + "4004429", + "3006541", + "7004988", + "7004580", + "8001336", + "4003620", + "8001149", + "2004846", + "8002019", + "5001968", + "6002927", + "0004772", + "2006821", + "5001677", + "1005328", + "0006188", + "3005218", + "8003573", + "0006497", + "8002527", + "8001315", + "3004367", + "2003127", + "1003010", + "5001990", + "8001607", + "3003546", + "0004087", + "4003694", + "7003914", + "0004254", + "8001073", + "7004400", + "3005264", + "7002893", + "6003514", + "7002299", + "3005451", + "3005101", + "0003477", + "2003808", + "2005163", + "0005281", + "2006120", + "4002659", + "2006223", + "8001224", + "4002683", + "2006886", + "2006484", + "1005957", + "0006078", + "7004016", + "3006948", + "0005136", + "0005912", + "3003533", + "3004870", + "2006830", + "8002898", + "1005426", + "2005575", + "6003442", + "6002080", + "4004336", + "1003571", + "6002730", + "6002715", + "1003483", + "3004976", + "7002735", + "8002616", + "0003150", + "3004881", + "1004097", + "6003987", + "7002414", + "1004794", + "2007004", + "2005571", + "8003856", + "8003195", + "7003136", + "7003661", + "8003228", + "8001109", + "3003837", + "1006580", + "8003833", + "2005250", + "0006546", + "3004792", + "7004128", + "7003446", + "0003350", + "0004186", + "8003410", + "7002973", + "3006376", + "3003891", + "3005986", + "3005940", + "4004692", + "3006517", + "8001252", + "2007497", + "1004747", + "6003034", + "4002408", + "3004885", + "0003547", + "2006206", + "2004947", + "0006878", + "5001453", + "1004455", + "7002255", + "0005292", + "7003386", + "1004222", + "7002090", + "6003020", + "1006102", + "2004142", + "0006373", + "6002896", + "2003330", + "4003881", + "0003590", + "3003315", + "7003650", + "4002620", + "1005060", + "3004774", + "2005000", + "3003963", + "4003640", + "3003996", + "4002968", + "3004414", + "0005643", + "4002779", + "6003430", + "4002477", + "8001825", + "8001316", + "6004069", + "2004644", + "1003119", + "2003291", + "5001474", + "6003547", + "8003142", + "7002493", + "6004694", + "1003424", + "8002491", + "3006083", + "1004020", + "6003891", + "4004195", + "0005819", + "2007090", + "8002442", + "1003817", + "5001000", + "6003486", + "1004980", + "0006589", + "4004275", + "8003867", + "2006197", + "2005198", + "8001812", + "6003637", + "0004707", + "2007525", + "6002043", + "5001269", + "4002941", + "5001047", + "7004531", + "4002816", + "0006256", + "1006609", + "4004016", + "5001623", + "7002496", + "7002821", + "6004232", + "7002596", + "1003075", + "1004616", + "2004003", + "7004047", + "7003397", + "5001587", + "0003584", + "0004523", + "1006197", + "5001763", + "3004723", + "3005945", + "3006242", + "1004604", + "6003714", + "6002807", + "3004454", + "4004647", + "3005870", + "2005137", + "1004817", + "5001165", + "6002201", + "4003672", + "2006500", + "2004125", + "8003446", + "0004187", + "8002633", + "0006132", + "8001391", + "1004639", + "1005355", + "8002542", + "0005451", + "3004470", + "6004332", + "0006300", + "3005730", + "2005430", + "8001572", + "3005385", + "7003176", + "0003136", + "7003462", + "3006173", + "1005063", + "3006018", + "3005511", + "3003314", + "8001376", + "8002820", + "1003084", + "3004436", + "7003081", + "0006638", + "7004673", + "2007232", + "7002131", + "0003186", + "0003933", + "5001742", + "0004375", + "1004682", + "3004295", + "0005583", + "2006863", + "1006185", + "8003014", + "6003871", + "0004113", + "4004839", + "7003995", + "7004131", + "8002627", + "8001651", + "4003765", + "7002521", + "3006604", + "1004011", + "0005502", + "6004697", + "1006204", + "2004987", + "3003638", + "2006220", + "4002846", + "4003650", + "4003275", + "7004642", + "1005791", + "4002163", + "6002311", + "3003501", + "8001802", + "0006555", + "2004601", + "8001143", + "3003415", + "2007202", + "4003980", + "3006789", + "2005504", + "1006146", + "0005874", + "1004186", + "1006513", + "6003426", + "1003204", + "0006881", + "4004240", + "2004750", + "3003907", + "7004955", + "4003574", + "6003239", + "1003456", + "4003876", + "4003228", + "0004253", + "1003339", + "4004124", + "1006796", + "3003745", + "4003807", + "6003622", + "3003144", + "0003339", + "7004437", + "0005788", + "4002892", + "0003248", + "4004033", + "3003662", + "1005646", + "0003529", + "1003854", + "1006780", + "2003239", + "2005508", + "2006926", + "4002709", + "2003144", + "6002697", + "8003065", + "2007906", + "0004975", + "3006823", + "2007564", + "1005490", + "1006861", + "2003265", + "5001233", + "2007346", + "8002533", + "2005172", + "4003883", + "0005179", + "8003801", + "4002026", + "5001177", + "7003119", + "7002809", + "0003823", + "8002355", + "8001890", + "0005210", + "6004512", + "2007139", + "1004855", + "3004222", + "1005484", + "8001639", + "5001324", + "8001856", + "2007889", + "8002961", + "7004576", + "7004542", + "4002507", + "0004030", + "0004879", + "4002205", + "2006241", + "1003431", + "7003393", + "1005796", + "3006405", + "1004882", + "2005719", + "5001468", + "2004018", + "0005120", + "3005741", + "8003695", + "2003824", + "3004863", + "8003552", + "1005411", + "0006753", + "2007923", + "4002385", + "5001351", + "8003624", + "4003474", + "6003573", + "7003720", + "2004755", + "4003053", + "1004930", + "4003398", + "0006883", + "1006028", + "5001235", + "2004514", + "2007455", + "2003609", + "5001378", + "3004535", + "5001682", + "4002379", + "6002230", + "3004818", + "3004448", + "8002767", + "2003773", + "0005904", + "3004575", + "1004351", + "7002851", + "7002867", + "7002280", + "4003208", + "6004341", + "2006940", + "4002245", + "6003669", + "3004450", + "6002571", + "4003628", + "2005992", + "8003140", + "3004161", + "1005570", + "8003067", + "1003546", + "3006769", + "4002690", + "7004601", + "2003136", + "0003424", + "3003503", + "3004853", + "1003759", + "2006200", + "6002199", + "3004842", + "4003502", + "4002514", + "6004053", + "8002255", + "8002495", + "2003022", + "0004580", + "0004385", + "2006798", + "8001729", + "7004414", + "2003923", + "3003162", + "3005727", + "7002760", + "0003142", + "3005457", + "8003436", + "0005432", + "0005794", + "2006874", + "8001243", + "4004346", + "8001763", + "7004249", + "1004831", + "2003121", + "8001110", + "2005902", + "0004033", + "1006157", + "6004396", + "3003978", + "3003343", + "3004576", + "0003463", + "0003030", + "7003222", + "2003667", + "0004869", + "8001213", + "3004305", + "0004142", + "3003451", + "4002953", + "0006906", + "3003021", + "3003784", + "3003687", + "2003529", + "6004487", + "0004089", + "6002602", + "1004394", + "8002959", + "2004845", + "7002313", + "1004131", + "1006747", + "2006989", + "2006677", + "3004735", + "3006607", + "1003729", + "8003068", + "4003916", + "1005776", + "7003444", + "2007963", + "7003531", + "2003541", + "1006456", + "7002256", + "2003244", + "3005953", + "8001122", + "0006654", + "4004698", + "0006623", + "4002635", + "7002202", + "1005873", + "0003775", + "2005180", + "4004296", + "0005749", + "1003046", + "2007093", + "6004480", + "0004324", + "2003781", + "3003660", + "8002682", + "2005528", + "3004858", + "8003458", + "2006367", + "8002506", + "0005767", + "4003847", + "1003325", + "3003927", + "2003171", + "1006274", + "8001496", + "7002678", + "0006224", + "7003584", + "5001824", + "0006705", + "1005760", + "2005514", + "2003747", + "1005216", + "2006880", + "0005965", + "4004562", + "7004195", + "8001677", + "2003810", + "4003017", + "4003526", + "8003993", + "1004421", + "3005298", + "2004481", + "6003768", + "0004151", + "3006885", + "8002195", + "1006485", + "1005282", + "2005500", + "2003103", + "1003562", + "2003823", + "1005535", + "3004425", + "6002078", + "0003409", + "3006645", + "8001746", + "4004922", + "6003294", + "1004541", + "1003771", + "7002900", + "2007385", + "0006288", + "2004870", + "7003706", + "6004500", + "1003440", + "2005489", + "5001714", + "3004139", + "4004181", + "8003387", + "4003618", + "3005237", + "0005219", + "0005610", + "6004979", + "4004561", + "8002164", + "0006066", + "2003501", + "8002484", + "6003019", + "6004891", + "0003618", + "0004932", + "8002674", + "0003772", + "1005384", + "8003359", + "6004134", + "4003946", + "8001141", + "1006005", + "3005377", + "7003174", + "1004321", + "0004806", + "4002486", + "8002492", + "8003502", + "1006086", + "4002800", + "8002416", + "8002690", + "0003359", + "4004005", + "2006292", + "7002171", + "3006636", + "7004074", + "2004441", + "5001419", + "0005622", + "0005647", + "2006929", + "1003662", + "4002102", + "5001500", + "4004231", + "2005170", + "4003237", + "0004759", + "5001543", + "6003950", + "2006228", + "1005787", + "7004641", + "3006314", + "2004821", + "4003221", + "0005805", + "0003815", + "3003695", + "3003443", + "8001432", + "2004916", + "7003198", + "4003843", + "4002814", + "1006477", + "2006533", + "2004440", + "8001318", + "6002676", + "3006670", + "0005948", + "7003211", + "4002788", + "7004459", + "7004243", + "1004307", + "5001880", + "4004145", + "1006707", + "0004325", + "1004036", + "3006052", + "6003002", + "8001923", + "2003837", + "2006614", + "6002683", + "8002033", + "2004650", + "8001866", + "3005372", + "1005199", + "3006918", + "2005380", + "6002797", + "1005683", + "3006117", + "3005350", + "8001878", + "6002390", + "7003527", + "8001423", + "7002156", + "4004072", + "4002363", + "2007565", + "8001370", + "0004781", + "7003885", + "2006015", + "8003548", + "0005228", + "3004574", + "2004389", + "3003281", + "3005238", + "0004920", + "2005920", + "7004742", + "1003176", + "2006481", + "3006284", + "4002738", + "7002186", + "6004367", + "7003513", + "0004290", + "3003030", + "3006503", + "8002223", + "1005052", + "2006207", + "3003014", + "6002307", + "3006754", + "1004887", + "7003805", + "2005530", + "2006692", + "3005169", + "6002963", + "2003918", + "3004330", + "1006316", + "2004780", + "1004430", + "1005697", + "2005777", + "7003016", + "5001429", + "0004795", + "7003316", + "6003773", + "2006266", + "6004853", + "7004127", + "7002972", + "2005260", + "3003119", + "2006209", + "2005116", + "3004714", + "3003430", + "3005327", + "2007684", + "6002025", + "6002524", + "4003281", + "7002716", + "6002363", + "0006682", + "0003170", + "2004291", + "3006215", + "8002049", + "0003405", + "7002333", + "7002707", + "8001191", + "8002445", + "1006929", + "3004324", + "6004726", + "1006635", + "0004734", + "7004186", + "1003031", + "3004203", + "2003200", + "1006639", + "0003714", + "6004122", + "7004810", + "7002226", + "5001659", + "1004712", + "4004548", + "2004182", + "7002372", + "0003203", + "0003396", + "6002287", + "4003545", + "3005859", + "6004892", + "4003736", + "0004051", + "6003090", + "0006790", + "1005980", + "3004349", + "1004645", + "4004497", + "3006920", + "6003860", + "0003709", + "2007169", + "4004467", + "4002015", + "8003869", + "8003365", + "2003270", + "3004864", + "3005552", + "6003716", + "0005862", + "1006505", + "7004034", + "2005127", + "0004645", + "8001855", + "0003955", + "3003400", + "2006138", + "1005270", + "4003138", + "2007796", + "6003455", + "4003719", + "4004621", + "6003140", + "7004512", + "7003534", + "2007484", + "2006782", + "1005808", + "4004768", + "7002633", + "1006904", + "0006966", + "8002218", + "3006995", + "2006302", + "7002366", + "4004729", + "1006392", + "7004220", + "6003012", + "8002027", + "1005781", + "8002216", + "0003752", + "4002983", + "8002143", + "3005498", + "8001881", + "1004988", + "4002182", + "1003634", + "3005443", + "0003589", + "7002677", + "4002565", + "2004937", + "6004158", + "2006341", + "8001328", + "0003979", + "8001036", + "8001408", + "4004321", + "7003121", + "2003647", + "4003570", + "4003668", + "1005518", + "0003172", + "4002681", + "4002396", + "1003739", + "3003601", + "0004514", + "2003553", + "2005216", + "3004407", + "6004270", + "0005129", + "3004312", + "7002769", + "4003282", + "1003161", + "4002164", + "3004835", + "8002391", + "6003786", + "8001261", + "3004354", + "3006339", + "0004002", + "6004682", + "8003572", + "7002431", + "6002753", + "1003790", + "3003218", + "4002803", + "5001890", + "0003109", + "5001131", + "0006917", + "0005250", + "6003243", + "2003589", + "8003500", + "0005137", + "1005502", + "6003570", + "6002340", + "3003678", + "0006008", + "8001638", + "0004808", + "1004180", + "0005809", + "2003857", + "8002511", + "8002667", + "7004067", + "2004661", + "0004929", + "3004513", + "7003230", + "1003632", + "7003536", + "1003756", + "1006464", + "3004192", + "4004743", + "4002997", + "8003492", + "0003295", + "2005526", + "3005794", + "7002230", + "8003275", + "2006943", + "8001930", + "8003642", + "8002362", + "2003443", + "7003240", + "2003058", + "0006808", + "1005663", + "0004057", + "2006847", + "0003269", + "6003937", + "0004137", + "5001024", + "6004831", + "1005710", + "2004781", + "8003077", + "4004395", + "6002059", + "8001055", + "1006495", + "0004537", + "6003876", + "2007829", + "3004521", + "2003419", + "1006273", + "2007378", + "0005315", + "4002269", + "2007138", + "6004895", + "3005890", + "3004064", + "0006512", + "1004142", + "7002966", + "2003636", + "2006344", + "0004689", + "7004329", + "3005232", + "2004590", + "8002286", + "3005266", + "7002638", + "4004217", + "4004250", + "4002621", + "2005896", + "7002615", + "8003934", + "0005048", + "6002256", + "2003262", + "0005561", + "2004728", + "3003583", + "1003588", + "3003536", + "1006677", + "2003213", + "2003726", + "2006557", + "6004004", + "3005778", + "1004355", + "6004772", + "0006116", + "2004437", + "0005974", + "4002119", + "2004334", + "0004985", + "2007910", + "3005117", + "3004456", + "7002452", + "8002817", + "3003423", + "4003903", + "2006464", + "1006020", + "3006524", + "1004448", + "2004471", + "7004073", + "6004546", + "3005257", + "3006578", + "7003874", + "4004886", + "0003923", + "4004916", + "7002056", + "3005313", + "7003208", + "4003239", + "8001640", + "1004708", + "1006026", + "6003218", + "7003591", + "2004126", + "8002764", + "4002130", + "8003616", + "4003306", + "3004465", + "7003301", + "2005194", + "7003982", + "7004100", + "4002877", + "6004711", + "4004935", + "7004780", + "3005883", + "8002995", + "8003668", + "4002281", + "6002514", + "2007194", + "2007301", + "7004222", + "8003688", + "1003922", + "7004890", + "3003187", + "5001805", + "2003032", + "3005788", + "3003253", + "2003025", + "6004208", + "8001320", + "4004712", + "6002619", + "1003872", + "8003058", + "0003441", + "5001994", + "5001669", + "4004299", + "3006694", + "7004207", + "8001877", + "2006343", + "6002282", + "3006691", + "3004572", + "2004492", + "6003186", + "3004975", + "4004635", + "0004248", + "7002043", + "6004316", + "4002684", + "0003012", + "3004089", + "2003790", + "2005648", + "8001166", + "3005279", + "7003940", + "2004472", + "2007137", + "1006314", + "2006667", + "4003333", + "3006222", + "0006626", + "2005839", + "8001344", + "3003522", + "2007180", + "5001977", + "2003984", + "6002225", + "0003383", + "8002731", + "3006350", + "2005916", + "5001687", + "2003252", + "8003218", + "3006274", + "5001569", + "3004734", + "6004115", + "8001630", + "2006421", + "1003707", + "7003472", + "1005480", + "1006586", + "3004517", + "4002538", + "3005254", + "3003602", + "6000009", + "4003930", + "1004072", + "0005185", + "3006009", + "1005051", + "3006354", + "4003531", + "2004004", + "7004886", + "1006221", + "2005345", + "4003929", + "4004536", + "1004029", + "3003561", + "1004407", + "8002984", + "6004623", + "1005496", + "2005922", + "1003085", + "8001382", + "2003561", + "1005252", + "2003083", + "4002924", + "0006896", + "1005608", + "4002928", + "2003933", + "0004926", + "3006076", + "0006320", + "6004175", + "2005133", + "4004067", + "3004811", + "2004032", + "2004418", + "4002723", + "0006352", + "5001475", + "8002179", + "2006460", + "0006235", + "8001181", + "3004648", + "0003566", + "0006493", + "3003457", + "6002563", + "3006237", + "0006857", + "4003044", + "2005640", + "3006065", + "2006947", + "0003473", + "4002655", + "2006840", + "2006956", + "2003563", + "0006051", + "0003634", + "3006968", + "2006109", + "2003677", + "2003605", + "4004530", + "2007344", + "4004482", + "0004148", + "1005285", + "2005841", + "4002067", + "5001102", + "2005037", + "6004658", + "3004549", + "7004503", + "7004668", + "0005335", + "1006533", + "1005387", + "1004654", + "8002986", + "4004626", + "4004856", + "8003352", + "3003386", + "7004570", + "7004108", + "8002969", + "3006362", + "5001984", + "4002963", + "0006798", + "2003440", + "1006525", + "3003130", + "0005797", + "7003859", + "3005881", + "2003669", + "1005578", + "0003703", + "2005613", + "6003759", + "1005712", + "1005860", + "2003255", + "3003908", + "3005715", + "6002973", + "5001176", + "8001507", + "2003987", + "0003272", + "7002038", + "8002963", + "1006136", + "2003853", + "3004877", + "6004763", + "1004675", + "6002343", + "0003667", + "6004082", + "6003291", + "6002621", + "2005795", + "7004308", + "2005070", + "3004691", + "2005013", + "3005302", + "0003694", + "1006507", + "2005181", + "8002535", + "8001123", + "6002505", + "8001484", + "7003079", + "4003610", + "0006495", + "4004417", + "0004692", + "2003359", + "4004222", + "3006845", + "0005969", + "8002091", + "4002732", + "1005850", + "8002214", + "3003945", + "3003781", + "3005691", + "3003243", + "0006006", + "0003751", + "1006982", + "6003628", + "4003915", + "3005824", + "6003549", + "1004932", + "6004751", + "4003988", + "3004190", + "2004167", + "8001736", + "7003314", + "0003495", + "2003603", + "7003388", + "6003848", + "4004658", + "1003499", + "3005007", + "2004380", + "0005220", + "0006231", + "0006518", + "2003769", + "3004020", + "4003939", + "4003419", + "2003967", + "1006735", + "0006730", + "0004873", + "7003137", + "3005355", + "3003355", + "0006143", + "8003470", + "3004457", + "2007522", + "6003949", + "2007748", + "0004805", + "8001372", + "0006077", + "2005610", + "0003411", + "4003923", + "6004234", + "6003331", + "6004123", + "3004244", + "6003298", + "2006710", + "2005804", + "4003454", + "0003755", + "5001216", + "8002394", + "6004870", + "0006614", + "0003832", + "4004092", + "3006246", + "8003406", + "1004487", + "2006504", + "2004383", + "7002267", + "6004390", + "6004071", + "2006083", + "2003209", + "2005898", + "8001126", + "4004121", + "1005467", + "2004423", + "0006228", + "8003407", + "0005288", + "6004360", + "8003721", + "4003925", + "7004631", + "1004620", + "7003663", + "6002141", + "2005827", + "2003953", + "0005896", + "4004723", + "4002145", + "2007560", + "1005536", + "7003899", + "1006773", + "1004641", + "2006905", + "3005088", + "2004961", + "8001759", + "6004294", + "1004872", + "6003548", + "3003380", + "7002998", + "3006563", + "0005116", + "6004229", + "1005677", + "3006853", + "7004180", + "7002964", + "4004890", + "1004591", + "1004992", + "3004634", + "6004581", + "7002215", + "0006482", + "1005070", + "2006198", + "6004811", + "7003599", + "2006928", + "2005081", + "7004559", + "8001996", + "3006177", + "0005429", + "7003571", + "2006081", + "6004616", + "1006293", + "8002730", + "2007731", + "0003773", + "4004924", + "8002186", + "6003928", + "2006621", + "3006336", + "3006514", + "5001812", + "2004318", + "7002405", + "2005735", + "3005686", + "0005603", + "2005659", + "0006781", + "3004254", + "6004496", + "6004286", + "3006317", + "2005245", + "6002781", + "3005744", + "8003655", + "2007397", + "0003821", + "4003131", + "1006444", + "4004396", + "0005547", + "1006132", + "0004726", + "8001064", + "1003149", + "7002534", + "2007839", + "1006994", + "2007613", + "7003344", + "0004764", + "6003888", + "2004653", + "2003628", + "3006895", + "3004417", + "1004061", + "2006607", + "2006541", + "6003121", + "0003309", + "0006218", + "8003763", + "7003118", + "3003348", + "6002270", + "3004764", + "7002083", + "4002603", + "5001544", + "5001674", + "8003467", + "0005426", + "2006950", + "2005940", + "8003053", + "3003015", + "0004549", + "1005181", + "0004335", + "4004998", + "2004519", + "6002012", + "2005261", + "0005138", + "6003590", + "0004768", + "2004496", + "6003644", + "6003177", + "6003251", + "4003528", + "3006587", + "1006884", + "4002343", + "0006263", + "1006087", + "1006841", + "3004611", + "4004468", + "6003767", + "3003642", + "1005684", + "2004962", + "3004092", + "2006196", + "8003011", + "2006264", + "7003749", + "5001366", + "7002209", + "4002144", + "6002148", + "3004095", + "6002560", + "0004144", + "3004727", + "6003585", + "4004926", + "1006907", + "3003294", + "3004963", + "3003091", + "7004287", + "7003162", + "3006361", + "8003528", + "2004476", + "7003726", + "6003478", + "6002967", + "3005942", + "2006656", + "4002434", + "5001144", + "7003202", + "7002393", + "8001283", + "6004916", + "1006783", + "7002960", + "3006050", + "8002154", + "3004583", + "7002248", + "3005634", + "3003361", + "8001011", + "4003423", + "3004515", + "2007356", + "7003604", + "1003524", + "7003506", + "0006128", + "4003571", + "2006990", + "4003352", + "4003062", + "2004248", + "4002937", + "1004581", + "6004493", + "8003598", + "4004810", + "3004762", + "0004789", + "0006137", + "4004340", + "3003076", + "8001140", + "4004023", + "1006807", + "0004112", + "7004652", + "2004905", + "0004847", + "8001474", + "0004203", + "1003250", + "3005834", + "6004611", + "5001681", + "4003615", + "7002916", + "8001662", + "1006085", + "3003702", + "1006076", + "4004418", + "2003008", + "2007040", + "5001976", + "1005239", + "2007940", + "1005159", + "7002817", + "8001001", + "8002808", + "4004624", + "6003244", + "1004441", + "7004734", + "6002484", + "6004792", + "3004966", + "3006656", + "2006215", + "0004365", + "0006646", + "2003741", + "0005123", + "2004393", + "5001953", + "2003965", + "0006227", + "0005879", + "5001032", + "1004507", + "1005161", + "2005543", + "8003303", + "8001625", + "3004755", + "1004828", + "0005410", + "6004451", + "6002115", + "0005320", + "2005316", + "7003384", + "2003450", + "7003904", + "4004742", + "2003085", + "7003876", + "1005425", + "2005196", + "6003228", + "7003933", + "0005037", + "1006838", + "1004021", + "1005098", + "1006870", + "4003440", + "3004726", + "2003172", + "7003519", + "3006737", + "0005848", + "4003216", + "3003513", + "3003362", + "0006264", + "2005348", + "2007574", + "0003431", + "3004387", + "4003217", + "1003892", + "2005904", + "1004919", + "8003818", + "7002505", + "1006703", + "4004410", + "3005509", + "3006929", + "2005688", + "6002608", + "3006526", + "0003336", + "2006000", + "3006046", + "1005870", + "2006404", + "1005136", + "1003464", + "4004501", + "0003475", + "1003397", + "0004114", + "7003226", + "5001869", + "2004641", + "7004841", + "3004698", + "2007095", + "6003830", + "6004810", + "6004001", + "7004296", + "8001198", + "7004030", + "0006318", + "1005076", + "5001967", + "3005416", + "4004933", + "1005157", + "1004122", + "6002953", + "3004046", + "0003268", + "0006581", + "2004498", + "8002614", + "4004161", + "6003661", + "4004162", + "0006701", + "3005389", + "0004414", + "0005352", + "2007722", + "0004481", + "3004979", + "1005057", + "5001406", + "7003060", + "6000006", + "2003069", + "6004749", + "6002289", + "8002203", + "2005899", + "3004520", + "4003291", + "7004619", + "5001963", + "6002931", + "0004270", + "0004000", + "3005424", + "2004679", + "2004010", + "4004840", + "4004011", + "1005346", + "0005364", + "0004941", + "0003514", + "7002437", + "6004755", + "7002463", + "1003521", + "8002723", + "4002582", + "3004206", + "8003456", + "4004701", + "3003824", + "2004636", + "3003059", + "3006250", + "1005548", + "1005118", + "1005055", + "0005977", + "2004017", + "6002426", + "8002100", + "6003102", + "0004810", + "3003672", + "3005917", + "8002889", + "8002732", + "8001672", + "2005168", + "3003164", + "5001022", + "0005712", + "6004413", + "0005602", + "8001215", + "6002906", + "0006914", + "3006499", + "8003866", + "3006141", + "5001802", + "0004877", + "1005721", + "0004961", + "8001805", + "8002379", + "8002612", + "2005695", + "0006138", + "4003629", + "2007127", + "2003408", + "6002782", + "3004658", + "0004826", + "3004482", + "4004564", + "0004235", + "5001567", + "1003641", + "1005263", + "0004577", + "8003612", + "7002590", + "6003537", + "3004895", + "0006622", + "4002311", + "8001888", + "0003718", + "0006486", + "4003688", + "0003410", + "3003822", + "0004861", + "7004633", + "2004705", + "1004352", + "8003541", + "3003952", + "1004905", + "8002697", + "4004688", + "0004328", + "6000003", + "7003927", + "0004286", + "2006380", + "4003262", + "7003875", + "1004076", + "8002643", + "8002517", + "7003242", + "2003830", + "7002252", + "7002168", + "7002773", + "0003765", + "1003315", + "6002222", + "0006652", + "1005080", + "7004035", + "7003218", + "7004858", + "1006145", + "3003741", + "2004537", + "5001223", + "0005019", + "8002807", + "0003537", + "1006686", + "0003135", + "1003842", + "2006194", + "1006836", + "4002547", + "0006618", + "7002253", + "6002821", + "0005641", + "4003921", + "2004681", + "1004312", + "3006595", + "2005364", + "3005780", + "1004362", + "3005922", + "1004837", + "0005735", + "2005849", + "0005465", + "1006459", + "0004225", + "1005127", + "7002305", + "2005263", + "3006401", + "3006748", + "7003450", + "3005017", + "1006656", + "7002540", + "0003351", + "2006300", + "4003290", + "1004393", + "1005193", + "7004183", + "7003113", + "7002948", + "1006673", + "2004953", + "2004214", + "1005987", + "0003907", + "7002646", + "4004844", + "4003260", + "8002920", + "2003381", + "2006419", + "2003242", + "2004670", + "2003075", + "0003720", + "1006819", + "2006102", + "2007801", + "8002856", + "1003517", + "1004561", + "2003909", + "1004860", + "2005015", + "3006689", + "8001974", + "3004380", + "3003541", + "3005803", + "8002738", + "8003850", + "1005924", + "1005117", + "6003487", + "4002319", + "5001766", + "0004368", + "2006375", + "4004767", + "2007471", + "3005640", + "8003408", + "4004860", + "3006059", + "1004658", + "6004467", + "7003796", + "1005358", + "4004687", + "0006184", + "6003777", + "1005035", + "6003288", + "3003999", + "1004749", + "3006381", + "1005775", + "1005567", + "4003713", + "1004648", + "0003712", + "7002207", + "0003066", + "3003760", + "6002966", + "5001134", + "2006563", + "5001027", + "0003125", + "0005387", + "6004398", + "4002157", + "4003683", + "5001608", + "0006489", + "5001705", + "5001186", + "6003921", + "1006953", + "0003033", + "1003965", + "2004917", + "3005991", + "1005452", + "0003740", + "4003376", + "7004556", + "0006343", + "7004021", + "4003242", + "5001284", + "1006991", + "2007085", + "1003584", + "0003118", + "6003584", + "3004799", + "6003495", + "3005267", + "4002211", + "0003202", + "1005429", + "4002206", + "0003154", + "7002167", + "1003448", + "1003880", + "2006524", + "5001154", + "1004233", + "3004209", + "0004863", + "0004944", + "7002195", + "8002931", + "0004798", + "3004986", + "3005765", + "2004459", + "2007354", + "8002829", + "3005956", + "4002249", + "2007245", + "5001350", + "3006796", + "2006503", + "7003458", + "1004137", + "7002480", + "2007504", + "6002582", + "0004892", + "0004215", + "3004319", + "2007986", + "0004993", + "1004348", + "7002524", + "4003009", + "6003946", + "2007830", + "4004055", + "2004963", + "7004164", + "6004558", + "3006832", + "4003441", + "4003245", + "4004009", + "4003114", + "2004722", + "0005873", + "8002204", + "5001744", + "1003833", + "4002071", + "1005277", + "4002417", + "4003090", + "0004767", + "8003188", + "3006077", + "0006060", + "6003368", + "1006575", + "2005487", + "1006158", + "0005202", + "2006309", + "1003650", + "7003302", + "2007317", + "3004836", + "6004806", + "7004618", + "5001077", + "2005365", + "0003334", + "2007503", + "2004232", + "2007563", + "1006232", + "4004451", + "1003329", + "5001792", + "4004249", + "3005652", + "1005145", + "5001718", + "1006816", + "2007061", + "0004956", + "2003670", + "8003380", + "8002084", + "2005164", + "3003635", + "3003058", + "4004744", + "2004822", + "2005818", + "3003785", + "7003452", + "2006277", + "3005566", + "8003121", + "7002331", + "7004068", + "2004902", + "8001501", + "2005762", + "0004210", + "0006716", + "5001156", + "7002250", + "1003684", + "0003283", + "8002184", + "8003160", + "4003231", + "2006232", + "0003717", + "6002113", + "2005932", + "1004206", + "4002695", + "7004240", + "4002834", + "6002215", + "4003411", + "2006654", + "3004743", + "1004475", + "3004874", + "5001418", + "3005651", + "7002883", + "4003577", + "2006124", + "8002238", + "8003184", + "6004760", + "2006158", + "0006465", + "0005392", + "6004433", + "3004397", + "2004295", + "2004569", + "1003213", + "1003599", + "1005225", + "0006161", + "7003305", + "3006879", + "1006960", + "7004006", + "3003810", + "0004828", + "5001175", + "2006752", + "2006454", + "2004979", + "3004451", + "6002190", + "0005368", + "3005755", + "8003606", + "2004924", + "0005399", + "4002215", + "2004266", + "1003392", + "4002064", + "0003024", + "3006927", + "1003646", + "8001071", + "3003643", + "2003903", + "6002130", + "4004661", + "1005645", + "3005728", + "8003317", + "8002642", + "8001742", + "6002523", + "2007047", + "4003241", + "4004667", + "8002634", + "7002184", + "7002712", + "8002013", + "2006690", + "8002217", + "4003932", + "8003252", + "8003034", + "2006219", + "8001751", + "8003632", + "1006576", + "0005375", + "6004252", + "5001961", + "2005676", + "7003405", + "0004448", + "2007925", + "8001401", + "8002433", + "0006951", + "2004579", + "1004457", + "6002439", + "6003125", + "0004799", + "6002825", + "1005293", + "2006634", + "1004136", + "3006297", + "6002543", + "7004321", + "3005222", + "4004555", + "1006977", + "3003624", + "8001207", + "7003579", + "4003690", + "6003556", + "2004505", + "0006314", + "0003422", + "0005384", + "4003948", + "3003418", + "1005840", + "2005990", + "0005135", + "6004063", + "1005983", + "6002031", + "4003619", + "3005947", + "8001242", + "6003339", + "7004526", + "3006582", + "6003264", + "0006664", + "1003289", + "3006351", + "4004789", + "7004607", + "0003397", + "0006604", + "2006512", + "4002769", + "6002167", + "3005047", + "7003487", + "2006050", + "3005992", + "7002671", + "6004871", + "5001256", + "7004271", + "5001925", + "0003437", + "6004632", + "0006661", + "0003318", + "8002132", + "1006156", + "4003902", + "1005255", + "8003959", + "2005333", + "2005765", + "2006977", + "2003789", + "7002443", + "2004626", + "0006931", + "0003027", + "3005349", + "5001870", + "8003953", + "2006493", + "0004520", + "4003027", + "4004993", + "2004691", + "6002635", + "1004063", + "6004366", + "1004132", + "6002044", + "7004196", + "8002393", + "3005097", + "6003219", + "7004141", + "3006277", + "2005987", + "3003950", + "1006432", + "4002200", + "2004973", + "3005666", + "7003348", + "1004003", + "2004276", + "2005423", + "2004604", + "4002674", + "7002220", + "7002681", + "6002997", + "3006470", + "8003463", + "7002996", + "7002629", + "6002146", + "3003129", + "6002456", + "3005779", + "3006899", + "7003580", + "8001466", + "0004300", + "0004860", + "1005704", + "1003607", + "4004514", + "2005257", + "6002864", + "0003600", + "0003053", + "1003347", + "8002663", + "8003088", + "7004177", + "0006809", + "1005031", + "3003864", + "0006570", + "3005594", + "8003240", + "2003449", + "6004506", + "2006432", + "8003830", + "8003167", + "1004406", + "7004579", + "3004134", + "0006166", + "3003579", + "2005989", + "1005768", + "2006822", + "2003599", + "2006612", + "2003755", + "1004873", + "8002826", + "8002144", + "7002003", + "3005817", + "6004258", + "2007513", + "0005617", + "0004655", + "7002378", + "7002565", + "6003419", + "5001097", + "1003947", + "0006483", + "5001791", + "3004810", + "0005114", + "2005805", + "7003937", + "2006914", + "2004246", + "7004732", + "2005396", + "8002276", + "6004685", + "0006460", + "0005441", + "4004007", + "4002318", + "7004010", + "1004350", + "6002166", + "6004822", + "3004079", + "1006651", + "2003383", + "6004010", + "7004270", + "6002237", + "3003808", + "7004784", + "3006468", + "0005878", + "8002945", + "1004045", + "1004788", + "0006918", + "3005738", + "2003038", + "0003490", + "4003320", + "2007943", + "0004997", + "0006523", + "4003674", + "0003121", + "8003664", + "0006437", + "2003279", + "4003934", + "3005676", + "2005802", + "8003940", + "1004748", + "0006104", + "0004630", + "7004009", + "6002298", + "2003468", + "1006642", + "8003193", + "4003710", + "8002546", + "7003660", + "6003456", + "3006528", + "3006786", + "1005230", + "0004293", + "7003511", + "2007370", + "8003092", + "0005902", + "1003874", + "0003596", + "3006458", + "2003969", + "3006220", + "2006068", + "2006719", + "0005100", + "2007472", + "0006514", + "4002809", + "7003290", + "8002268", + "4002872", + "6002309", + "8002725", + "4004436", + "3005110", + "6002498", + "2003608", + "2003218", + "2007954", + "6004137", + "4004757", + "7004350", + "8001020", + "4003708", + "3003523", + "8001292", + "6002162", + "1005042", + "2006718", + "3004833", + "8002781", + "1004470", + "0003421", + "3004334", + "2005803", + "2004799", + "4003466", + "3005925", + "0004349", + "1004909", + "8003163", + "2006877", + "2006958", + "0004436", + "1004673", + "4004832", + "2004938", + "1004927", + "3004463", + "7004256", + "0004569", + "2005231", + "2003703", + "4003702", + "7002620", + "1004202", + "8001926", + "0004045", + "2007088", + "5001467", + "1005589", + "2007838", + "2005993", + "4004259", + "1006487", + "6002374", + "0005775", + "3004747", + "2005066", + "0004784", + "7004357", + "1006436", + "2003929", + "3005554", + "7003919", + "1003411", + "8003202", + "7002897", + "6002711", + "6004160", + "3005857", + "3003658", + "3005564", + "7002243", + "3003004", + "8002567", + "2003906", + "1006469", + "1006215", + "1003551", + "6004309", + "7002273", + "8002224", + "7002706", + "7004149", + "2006806", + "2007612", + "4003068", + "3006829", + "3003736", + "0005808", + "1006514", + "8002300", + "4002742", + "8002976", + "1006785", + "3006612", + "8001765", + "8002159", + "2004940", + "4004304", + "3004262", + "1004332", + "6004841", + "1006042", + "5001998", + "0003973", + "4002315", + "6002068", + "3004013", + "1005335", + "6004269", + "2007270", + "0003861", + "6003010", + "6002136", + "7003887", + "2003590", + "1004668", + "4003256", + "2003644", + "6002752", + "2006089", + "3004481", + "2005498", + "5001777", + "4004930", + "1006985", + "1006220", + "6004086", + "0003796", + "2006499", + "5001911", + "2003991", + "2003361", + "2006298", + "8001098", + "3005760", + "4002307", + "4003371", + "1005412", + "7002869", + "4004675", + "1003851", + "0004006", + "1003668", + "2006307", + "4002153", + "8003544", + "7004994", + "0004251", + "0005747", + "3004116", + "3004158", + "8001327", + "2004134", + "5001723", + "6002379", + "2005367", + "7004922", + "3006080", + "4004184", + "3004838", + "3004699", + "3006804", + "2006474", + "0004327", + "4002250", + "0004674", + "2005545", + "3006450", + "8001597", + "1004438", + "6004659", + "7002197", + "1004004", + "1003813", + "5001966", + "1006957", + "1003124", + "7003766", + "0005419", + "4002409", + "7003181", + "7002730", + "0006389", + "1006743", + "4003733", + "4003491", + "4003906", + "3004741", + "8003241", + "0003259", + "0006434", + "0004407", + "3003964", + "0003885", + "6004104", + "3003761", + "7002554", + "3003608", + "0005795", + "4003691", + "0005557", + "4003787", + "1004715", + "5001040", + "8002827", + "6004363", + "4002845", + "6004577", + "1005641", + "8003810", + "0004521", + "3004288", + "6004766", + "6003282", + "2006584", + "5001287", + "7002478", + "1005830", + "0004815", + "2007162", + "0004662", + "0006900", + "3006661", + "7002337", + "1005614", + "0006335", + "6002319", + "3004807", + "0006868", + "0004955", + "6002211", + "8003300", + "2003841", + "3003011", + "3006680", + "8003187", + "4002085", + "0006233", + "8002194", + "2004842", + "8001494", + "3004861", + "3006763", + "1003027", + "7003542", + "0006020", + "4004894", + "3004374", + "0006292", + "0006427", + "0003962", + "1004151", + "1006336", + "3006967", + "1003698", + "7002369", + "6003655", + "1003984", + "0004762", + "8003684", + "2004674", + "2006491", + "7002551", + "0006291", + "6003110", + "7004416", + "4004756", + "2005506", + "0006109", + "1003100", + "6002316", + "2004103", + "1005814", + "6002701", + "3004371", + "8003440", + "1006245", + "2004926", + "1005436", + "3005687", + "7004973", + "0004438", + "6003310", + "8001860", + "8003209", + "3003806", + "3005205", + "1005072", + "8002896", + "2003693", + "0005332", + "1005739", + "3006243", + "8003924", + "6002868", + "4003872", + "7003858", + "2006982", + "2005715", + "2006658", + "7004754", + "4002420", + "4004604", + "8001209", + "3005156", + "1006948", + "8002147", + "7002147", + "4004557", + "3005100", + "7004877", + "1006660", + "2007251", + "2005073", + "2007968", + "6002858", + "4002010", + "6003101", + "8001231", + "2003690", + "4003213", + "2004830", + "2005753", + "2004249", + "2003935", + "6003490", + "0006367", + "2006495", + "2006735", + "1005620", + "0003690", + "1003725", + "2004213", + "5001928", + "7002509", + "6002388", + "2007576", + "0004234", + "8003429", + "8003433", + "3005819", + "2003922", + "0003026", + "6004301", + "3003982", + "8002065", + "2004619", + "6004929", + "2007919", + "7004216", + "0005025", + "0003880", + "3006620", + "0005486", + "6003107", + "3005858", + "3005056", + "1003701", + "2006075", + "0006782", + "7002930", + "1005454", + "0003688", + "7002263", + "3004936", + "8001969", + "6003007", + "3005797", + "7004713", + "0004513", + "3006036", + "1003215", + "1006079", + "1003088", + "1005338", + "8001678", + "5001570", + "2005410", + "4002059", + "1006915", + "1003249", + "3003911", + "3003012", + "4002351", + "4002007", + "2007448", + "2004779", + "5001103", + "2005634", + "6004908", + "4002042", + "2003115", + "1005914", + "8001024", + "1004408", + "0005021", + "2007912", + "1005915", + "7002504", + "4002013", + "0006181", + "8003072", + "2007468", + "6004273", + "3004058", + "8001308", + "1005621", + "2004181", + "0004749", + "6003765", + "6002646", + "6002677", + "0004564", + "4002866", + "2006482", + "7003453", + "4002943", + "1003404", + "6004084", + "4004868", + "4002006", + "2006327", + "2007415", + "3006908", + "2006885", + "6002668", + "4003274", + "7004003", + "0006655", + "3004228", + "2007656", + "8003590", + "5001428", + "4002378", + "3004060", + "3005544", + "1005763", + "3006208", + "2007703", + "1006275", + "7002873", + "6003943", + "3003316", + "1006617", + "0005785", + "8003697", + "2007902", + "0004973", + "8003887", + "2006348", + "2007374", + "0004298", + "8002249", + "0003418", + "6002562", + "4003992", + "4004727", + "7002175", + "3003511", + "0004139", + "7002417", + "8003421", + "2005663", + "7002990", + "8003930", + "1003479", + "3006187", + "7000001", + "1003968", + "1004059", + "4004416", + "4003893", + "3006096", + "3005914", + "2007186", + "4003198", + "2004949", + "2003752", + "3005391", + "0006196", + "0006267", + "1006308", + "3005811", + "8003206", + "3004348", + "8003476", + "8002068", + "3004688", + "1003829", + "4003297", + "1005140", + "4002982", + "0005164", + "3006100", + "6003275", + "1006353", + "5001821", + "2005796", + "2003324", + "6003959", + "2004466", + "8003665", + "8003696", + "4003498", + "2006098", + "1006069", + "3006378", + "3003478", + "5001936", + "3003679", + "2003701", + "2003491", + "3005774", + "3005521", + "2007235", + "1004760", + "2006536", + "8001489", + "1003630", + "4002708", + "3004242", + "7002098", + "4004233", + "8002836", + "0004550", + "3004442", + "8001350", + "6003221", + "0006941", + "6003306", + "0004191", + "3004524", + "8003637", + "2005029", + "3005213", + "3004532", + "1004075", + "6004936", + "8002774", + "3005577", + "8001508", + "3003773", + "3006196", + "1006950", + "8002544", + "8002463", + "2007343", + "3003548", + "1004945", + "1004237", + "8001037", + "2004044", + "4002698", + "1006690", + "4004040", + "3003065", + "1006103", + "0004843", + "6004022", + "7002881", + "7002583", + "7004036", + "1005939", + "0004352", + "4002747", + "8001819", + "2005708", + "0006380", + "7002748", + "3004346", + "0006154", + "2003538", + "8002832", + "3003375", + "1006391", + "0003155", + "4002469", + "3003126", + "7003321", + "3005504", + "4003958", + "1004563", + "0004538", + "3005337", + "7002342", + "1004615", + "2005226", + "3004233", + "8003028", + "2007205", + "7003653", + "8001656", + "5001109", + "7004171", + "3003610", + "6002888", + "0006454", + "0004536", + "0004994", + "3005965", + "7003193", + "4004069", + "4003250", + "1006239", + "7002933", + "4003116", + "0005616", + "0005638", + "2004327", + "3006085", + "2005248", + "2007911", + "2006052", + "3003933", + "1005086", + "0003569", + "4002677", + "4004954", + "8003061", + "0005018", + "2005230", + "6004747", + "1006054", + "2005991", + "0006990", + "4004506", + "8001811", + "0005507", + "7003980", + "1006959", + "0004865", + "7002652", + "3005899", + "2005673", + "6004411", + "1003831", + "0006586", + "6002355", + "2006185", + "7004737", + "8003792", + "3003997", + "3006545", + "0004326", + "3005356", + "0005273", + "4004163", + "5001922", + "2003157", + "2003332", + "3004526", + "0005614", + "6003499", + "3006382", + "8001681", + "7003093", + "3005076", + "8002666", + "2003897", + "6003327", + "2006040", + "1003025", + "6004215", + "5001921", + "8002082", + "1004128", + "0003917", + "7002151", + "3003770", + "7002251", + "3005807", + "5001255", + "4003632", + "2003581", + "7002084", + "2004853", + "1006038", + "1005936", + "4002166", + "6003203", + "7004093", + "7004929", + "1003386", + "4004032", + "2005339", + "7004535", + "3005641", + "8001010", + "8003453", + "1005772", + "1006097", + "0004367", + "1003587", + "7003865", + "3005534", + "2007187", + "8001707", + "7003637", + "6003840", + "6004925", + "5001425", + "8003782", + "4004471", + "2003686", + "3004038", + "3003878", + "5001693", + "1004248", + "1003401", + "1003472", + "2005820", + "0003770", + "6004898", + "0005058", + "6003913", + "3004602", + "3006533", + "7003354", + "0004770", + "0005265", + "1004528", + "2007049", + "1003395", + "1003867", + "4002533", + "6003449", + "4004187", + "1003810", + "5001075", + "5001210", + "2003775", + "4003457", + "2004477", + "3005058", + "3006949", + "2006599", + "2006984", + "1006334", + "2003861", + "7004710", + "8001464", + "3003491", + "3003360", + "0004464", + "8002647", + "8002247", + "2004105", + "3004950", + "2003254", + "2003555", + "8001276", + "7004380", + "4002255", + "6003192", + "1005543", + "3006356", + "3006715", + "6002847", + "8003680", + "3003508", + "6004937", + "1006979", + "2007709", + "6002488", + "4002795", + "2007779", + "0003185", + "8003417", + "1004944", + "4002463", + "1003508", + "1005445", + "3003025", + "3004944", + "0006522", + "2006999", + "8002913", + "6002603", + "7003813", + "2007711", + "2006251", + "0003893", + "4002939", + "1003816", + "2007264", + "7004404", + "6003379", + "0003686", + "2007042", + "1004649", + "2004223", + "6002508", + "5001189", + "7002981", + "8003234", + "8003897", + "2005954", + "0005338", + "0005552", + "0006399", + "3004788", + "6002687", + "3006338", + "5001209", + "6004095", + "1005557", + "2006673", + "0006714", + "4003537", + "3006945", + "2004147", + "0006810", + "8002079", + "8003101", + "3005070", + "6004162", + "1006358", + "0005223", + "2006467", + "1004017", + "0003492", + "3006986", + "4003387", + "8003113", + "1003932", + "8002264", + "8002130", + "4002049", + "7004749", + "7003027", + "5001832", + "0006056", + "1003953", + "3006835", + "8002994", + "7004467", + "2004104", + "7002830", + "3003748", + "7003312", + "0003117", + "3005354", + "2007253", + "3003593", + "8003062", + "8001590", + "3005904", + "3003421", + "2007585", + "1005078", + "4003895", + "1003283", + "6004809", + "5001440", + "3003777", + "8002822", + "2005293", + "3003657", + "8003909", + "2007952", + "1004580", + "3003035", + "7003497", + "0006929", + "0003252", + "1006595", + "1005494", + "0005847", + "7004124", + "6004473", + "2007530", + "1003797", + "4002497", + "8002256", + "8001003", + "3004287", + "3004365", + "3005996", + "0003284", + "6002873", + "2005016", + "1004412", + "4003203", + "6004389", + "7004289", + "2006126", + "1006591", + "0005036", + "2003205", + "5001654", + "1004230", + "1003700", + "0004207", + "2007340", + "1006587", + "7002561", + "1003098", + "7003445", + "1004170", + "2006911", + "3005190", + "2006890", + "4002856", + "7004340", + "3005102", + "3004323", + "0004884", + "7004847", + "3006359", + "1006723", + "3004703", + "5001014", + "3003157", + "8001669", + "0005321", + "1005146", + "7004918", + "7004757", + "7003508", + "1003578", + "5001552", + "3003233", + "1003054", + "2005140", + "3005236", + "4002737", + "8003789", + "3004005", + "2007717", + "6003092", + "1003601", + "4002137", + "0003147", + "6004765", + "8002610", + "6002070", + "6003792", + "3003730", + "6002911", + "4002037", + "2004684", + "2007105", + "0005773", + "1003193", + "7004952", + "3004132", + "0005483", + "6003337", + "8003400", + "6003715", + "8002063", + "2007084", + "2003064", + "3004396", + "2006955", + "6003469", + "4003326", + "1005368", + "1005047", + "0005980", + "1004876", + "0003635", + "1005497", + "4002347", + "2005278", + "4004319", + "1005666", + "4002776", + "1005417", + "0005905", + "3004767", + "1003644", + "3005749", + "4003054", + "2007383", + "7002799", + "6003005", + "3003003", + "2007130", + "2005357", + "6004052", + "4003016", + "6003647", + "3004943", + "6004118", + "0004422", + "1003128", + "1003605", + "7004610", + "4004211", + "7004730", + "1005394", + "3004749", + "7002001", + "2003734", + "3004088", + "5001195", + "4003865", + "1006282", + "1003014", + "1005228", + "2005240", + "8002478", + "3003734", + "3004958", + "6002420", + "3006302", + "6004330", + "1006546", + "7003288", + "3003276", + "7003215", + "4004633", + "3005245", + "2003866", + "7004608", + "6004016", + "2006047", + "6003468", + "2005092", + "7002390", + "3005678", + "4002706", + "2003352", + "8003976", + "4004176", + "8002037", + "6002144", + "7004310", + "4004634", + "0003075", + "6003923", + "7004820", + "1006483", + "7003178", + "2007429", + "3003540", + "2003514", + "3003958", + "3005029", + "7003847", + "1003913", + "8003198", + "6004061", + "1004109", + "8002932", + "6003120", + "0004488", + "0005651", + "8001084", + "8003757", + "1005616", + "8002483", + "1004208", + "7002268", + "2004523", + "4002993", + "8003803", + "3004047", + "6004964", + "2006723", + "4004581", + "7002077", + "0003089", + "3003517", + "0006965", + "0006981", + "8002326", + "2007955", + "0004135", + "4004316", + "2005483", + "2005266", + "0006677", + "0005213", + "6004671", + "7003486", + "1006194", + "2005324", + "2004677", + "4003984", + "4003293", + "3005585", + "7004800", + "7003009", + "3006906", + "2006056", + "6002999", + "1006776", + "6002109", + "6004111", + "2005041", + "2005330", + "4004354", + "6004031", + "6003238", + "2003236", + "0003763", + "4002577", + "6003902", + "0004376", + "0005255", + "4003611", + "6003205", + "0004617", + "8003159", + "1005138", + "1005194", + "4004997", + "2004564", + "2003386", + "6003636", + "5001329", + "3003208", + "0006954", + "7003293", + "3005085", + "7002931", + "8001816", + "3006445", + "0006764", + "7003249", + "8002489", + "3004266", + "6003744", + "0006984", + "0005721", + "1004717", + "3003718", + "8001615", + "3006583", + "8002891", + "2003533", + "4004516", + "0006948", + "4004541", + "3006990", + "3006887", + "7004596", + "4003014", + "0005545", + "8003123", + "1005978", + "2004345", + "3003310", + "3003401", + "1004271", + "5001402", + "0004059", + "2003813", + "0004621", + "7002265", + "8003312", + "8001195", + "0006672", + "1006066", + "3005484", + "4003437", + "1005091", + "6002885", + "5001004", + "0003655", + "6004242", + "5001473", + "1005582", + "8001916", + "6002028", + "7003252", + "6003123", + "7003879", + "2006704", + "7003263", + "1005275", + "2005538", + "3004550", + "7002951", + "1005288", + "3005518", + "7003577", + "7002141", + "6002022", + "8002198", + "7003628", + "8002847", + "8002926", + "8003329", + "7004620", + "5001733", + "2007555", + "2004530", + "4004977", + "7004956", + "8002074", + "4002920", + "4003124", + "1006322", + "2004341", + "2007427", + "1004254", + "8001409", + "2006756", + "0005295", + "8001631", + "7003153", + "0006481", + "4002523", + "2003771", + "6002295", + "5001684", + "2007337", + "3005853", + "1005307", + "6004335", + "6004820", + "7004533", + "6003659", + "0006563", + "3004385", + "2003048", + "2004309", + "0004197", + "1004366", + "4004793", + "0003995", + "1003326", + "7004897", + "7002078", + "3006609", + "6003263", + "2003988", + "0003029", + "8003339", + "8001692", + "7002667", + "1005465", + "0005674", + "4003455", + "2005861", + "1004727", + "2007825", + "2007450", + "3003462", + "2006678", + "0004740", + "1005017", + "8002235", + "7003448", + "1004829", + "0006262", + "1006498", + "4002080", + "2005512", + "3003174", + "1004236", + "0006770", + "3004980", + "2003568", + "0004374", + "8001104", + "1003173", + "1005321", + "1003132", + "1004538", + "6003484", + "8003119", + "6004025", + "7003972", + "2006787", + "2004452", + "3006538", + "2003084", + "6004409", + "7003166", + "8003758", + "4003278", + "7002571", + "6003053", + "2005867", + "5001865", + "2005188", + "7002970", + "4003682", + "7003785", + "7003276", + "4002544", + "6000002", + "6004696", + "0005966", + "0005631", + "1006004", + "7003772", + "7004518", + "2006297", + "1006934", + "2004596", + "4002527", + "3006848", + "4004475", + "3005813", + "4003867", + "3005694", + "8003842", + "7002368", + "2007007", + "6002812", + "6004404", + "2006427", + "2004148", + "0005768", + "2003146", + "6003399", + "3005285", + "6003727", + "3003161", + "4003336", + "7003284", + "2007011", + "2003556", + "0003819", + "0005271", + "8002480", + "3005586", + "8002981", + "8003661", + "1004659", + "8001568", + "8002637", + "3004516", + "7003267", + "3005181", + "2003145", + "0005005", + "2006839", + "1003384", + "2004355", + "0003771", + "6002612", + "3006876", + "4002921", + "0006501", + "6003784", + "1005964", + "8003582", + "6004541", + "7003695", + "6002303", + "2007828", + "1005278", + "8002211", + "0005214", + "2006865", + "3006234", + "2003260", + "2005470", + "4004732", + "2007823", + "6004283", + "4002561", + "3005434", + "2006953", + "0005949", + "8002405", + "2004578", + "6003178", + "7004250", + "3004614", + "1005872", + "7003857", + "7003906", + "8003825", + "6002550", + "2004758", + "3003211", + "2003972", + "7003649", + "1004291", + "4004143", + "8002251", + "5001313", + "8003672", + "8002918", + "3005113", + "4004041", + "4004278", + "8001467", + "7003705", + "3003906", + "2004595", + "3005911", + "0003695", + "4004433", + "4004160", + "2005428", + "1006372", + "8001941", + "7004159", + "0004682", + "1005887", + "2005290", + "8003229", + "2003274", + "7003971", + "7004090", + "5001503", + "1003416", + "3004821", + "3006862", + "6004119", + "7002065", + "8001180", + "4002397", + "0005910", + "2006097", + "7002603", + "7002411", + "1003056", + "4004255", + "5001254", + "2003470", + "8003997", + "2006516", + "0005026", + "2007786", + "4004503", + "2003499", + "4002472", + "4004116", + "0003984", + "7002548", + "2005521", + "2003834", + "0003261", + "2004613", + "7002326", + "0005351", + "1003467", + "1006961", + "2003346", + "8002173", + "1005952", + "0003860", + "3006745", + "0006375", + "2006079", + "4003926", + "2006320", + "4004156", + "2007707", + "3006597", + "8001772", + "4003564", + "0006803", + "7003750", + "1006912", + "7002589", + "7004603", + "1004278", + "0005438", + "3003941", + "2003325", + "4004402", + "7004125", + "7004101", + "7002362", + "3003716", + "7002408", + "4003803", + "5001577", + "2005630", + "8003318", + "2003018", + "2004742", + "2005051", + "2004443", + "0006299", + "2006028", + "4004443", + "8003576", + "3003358", + "2005212", + "2003688", + "3005303", + "6004189", + "0003009", + "0004851", + "6002541", + "3003446", + "2007131", + "7002097", + "3006961", + "1003135", + "2003822", + "1006829", + "0005673", + "4004693", + "8001708", + "3003786", + "2006060", + "1003400", + "2004200", + "6002932", + "4002415", + "6003347", + "4003192", + "2004849", + "3006379", + "5001386", + "7004082", + "4002350", + "0003829", + "6002738", + "1006114", + "2005775", + "2005834", + "4004320", + "2006743", + "3005918", + "8003741", + "2005065", + "0005090", + "8003292", + "4003785", + "4002162", + "2004792", + "0006978", + "2004467", + "2007422", + "4004350", + "2006580", + "0006777", + "1003094", + "0004516", + "3005662", + "7004428", + "2005875", + "1003533", + "1003358", + "6002828", + "1003722", + "4002784", + "1006986", + "2006791", + "2003925", + "7004134", + "8001864", + "1006565", + "8003916", + "2005256", + "0006554", + "7000003", + "1003720", + "8001175", + "0003627", + "4003954", + "0003388", + "0006524", + "6002413", + "3004819", + "8002830", + "3006024", + "6002693", + "7003505", + "3005997", + "0006653", + "3006532", + "8003649", + "0003701", + "0005956", + "6004414", + "4003547", + "7004813", + "3006501", + "8001979", + "2004520", + "2005671", + "2006183", + "2003569", + "3005133", + "1003972", + "4003799", + "6003250", + "6003525", + "2003992", + "3003391", + "2006763", + "7004294", + "7004242", + "8003000", + "1005037", + "4002236", + "6004143", + "2004343", + "6003309", + "0003232", + "7002624", + "3006443", + "6003907", + "5001506", + "6004005", + "2006445", + "5001935", + "0006691", + "0003105", + "3006775", + "1006704", + "0004461", + "1005737", + "7004558", + "3005353", + "7004053", + "2004513", + "1003692", + "3004896", + "8003190", + "0004366", + "3004701", + "7004422", + "1004495", + "6003108", + "4003425", + "2007649", + "7002210", + "2005970", + "0004751", + "4002181", + "0005987", + "2006305", + "8002936", + "0006358", + "1005030", + "4003572", + "3005710", + "0003266", + "0005280", + "7004203", + "4003559", + "6004743", + "1003653", + "4002530", + "1003799", + "2007502", + "2005086", + "3004256", + "2005907", + "2004622", + "2007226", + "0006146", + "0006016", + "2007111", + "2007476", + "2006280", + "2007293", + "4003608", + "2006637", + "1003230", + "3004247", + "8003827", + "6002453", + "8001848", + "7003641", + "6004986", + "1004106", + "8002339", + "3005787", + "7002832", + "2005210", + "1003566", + "8003600", + "1006509", + "6003941", + "4004763", + "0003632", + "2004072", + "2004923", + "8002590", + "3005936", + "7003392", + "3006249", + "0005887", + "4004798", + "4002882", + "1006620", + "3005020", + "7002298", + "6002203", + "3004261", + "2004733", + "6002692", + "8001690", + "6003933", + "3005226", + "3006110", + "2004132", + "8002850", + "4003140", + "2006767", + "8002893", + "2003640", + "7004549", + "2005576", + "7004229", + "6003375", + "0003747", + "1004320", + "1006564", + "4002237", + "7003856", + "8003852", + "1004067", + "0003903", + "2005093", + "8003378", + "8003989", + "6002788", + "2007827", + "8003493", + "8002756", + "1004811", + "5001768", + "5001799", + "6003193", + "1005184", + "8003422", + "6004687", + "8001107", + "7003260", + "3003272", + "0004168", + "3004773", + "4004478", + "2004783", + "3003323", + "0004905", + "2006229", + "2007477", + "0006396", + "0004855", + "7003157", + "1006270", + "2004297", + "0005087", + "8002313", + "7003507", + "2006962", + "6003963", + "4002557", + "2005773", + "0005096", + "3003084", + "1006903", + "0006631", + "8003690", + "0004179", + "0006203", + "8003705", + "8001006", + "6003713", + "6002352", + "1004380", + "8002225", + "8003532", + "1006429", + "8001957", + "6002969", + "5001528", + "1005045", + "2005143", + "0003699", + "4004986", + "2005031", + "4004432", + "3006750", + "8002693", + "4004811", + "4003233", + "0003011", + "8001635", + "3006912", + "8002943", + "6003896", + "4003504", + "8001583", + "1006303", + "2004672", + "2006192", + "1006508", + "5001516", + "7004921", + "1003468", + "1005092", + "8003646", + "1005319", + "7004318", + "8003873", + "3003051", + "3003045", + "2006797", + "0003300", + "6004474", + "2007475", + "0004809", + "2007915", + "0004233", + "3005595", + "7004148", + "7004609", + "5001140", + "8001898", + "7004721", + "0006771", + "0005637", + "1006876", + "0005183", + "3003336", + "8003055", + "2007234", + "0003025", + "4002789", + "1004891", + "3006158", + "4003591", + "7003049", + "5001382", + "1003182", + "7004805", + "3003061", + "1006671", + "1006749", + "5001317", + "3003024", + "1006922", + "1005986", + "7004283", + "1005632", + "6002974", + "7003823", + "1004335", + "1003057", + "7003481", + "7002488", + "0004373", + "2006361", + "8003284", + "7004697", + "4004311", + "7004753", + "4002155", + "7004064", + "3003078", + "7003864", + "6002365", + "1004114", + "1006728", + "1005463", + "6003465", + "2005785", + "7002542", + "4003473", + "0003565", + "7004415", + "0004184", + "7003082", + "4003933", + "4002811", + "1004573", + "8001089", + "3006436", + "0005872", + "7004762", + "2005464", + "7002190", + "4003831", + "0005092", + "0005664", + "7003183", + "0006045", + "1004518", + "2006574", + "3006373", + "3003134", + "7004524", + "7002849", + "4002668", + "7004265", + "6004014", + "8003861", + "1006646", + "2005349", + "5001678", + "1003844", + "0004345", + "2007739", + "1003734", + "6002344", + "7003943", + "7002759", + "3006836", + "8003126", + "1006060", + "3006570", + "6003245", + "3005716", + "0004724", + "1005566", + "4002246", + "3003813", + "8003611", + "1004505", + "7002731", + "5001746", + "1004052", + "1004410", + "4002136", + "2005243", + "7004143", + "6004657", + "2006856", + "6003104", + "4002634", + "0004981", + "7004097", + "2006122", + "6004285", + "1005439", + "8003118", + "3004775", + "0003656", + "8002578", + "4002345", + "7004875", + "6004302", + "8002052", + "4002058", + "3006094", + "1003529", + "5001427", + "3005407", + "3005433", + "0004023", + "2005713", + "2005620", + "1003748", + "4003808", + "1004356", + "4002373", + "1004973", + "8003104", + "4002337", + "2004534", + "0003728", + "6004723", + "3006091", + "0006092", + "6002066", + "0003324", + "6004452", + "0004746", + "1006062", + "4002694", + "3004508", + "0004532", + "0004848", + "3006713", + "3006519", + "5001361", + "8002077", + "3006433", + "2003956", + "7002148", + "8003443", + "6004960", + "1006539", + "4004994", + "1003887", + "0004380", + "1006263", + "8003379", + "2005129", + "1004584", + "4002168", + "0006778", + "2007816", + "4003444", + "0005569", + "3006647", + "4004884", + "2005045", + "1004534", + "1004281", + "1004676", + "5001621", + "8001985", + "2003183", + "0006865", + "2004865", + "1006976", + "2006573", + "7004441", + "2007979", + "2007631", + "1005424", + "0006685", + "1006175", + "1004696", + "3006203", + "2005142", + "4004607", + "2005821", + "2005384", + "6004368", + "8001394", + "8002418", + "4003007", + "2006287", + "6003835", + "8002176", + "0006513", + "0003662", + "3005454", + "4002996", + "8003731", + "5001469", + "1003198", + "3004150", + "0004933", + "1004827", + "2007765", + "6003774", + "3006006", + "3004787", + "3003472", + "2005542", + "8003806", + "7002364", + "2003919", + "3006511", + "6002257", + "1005874", + "2003245", + "1006321", + "0004243", + "6003997", + "2005784", + "0003926", + "3005806", + "5001949", + "8002469", + "2006547", + "2006548", + "4003575", + "0006959", + "7003676", + "5001918", + "0003159", + "3004286", + "3006535", + "0003374", + "0003429", + "0004508", + "2004024", + "2003006", + "3004401", + "2007063", + "1004191", + "2003760", + "0005491", + "2005268", + "1004536", + "2003156", + "2003832", + "3005669", + "8003076", + "2004280", + "0003612", + "2005669", + "2003167", + "3006852", + "3006213", + "7002339", + "3004478", + "6002914", + "2005964", + "3004496", + "2007527", + "7003464", + "8003693", + "1003827", + "3004197", + "1005131", + "1006757", + "7003039", + "3004582", + "0005286", + "4004940", + "0006722", + "1005878", + "6003423", + "0004011", + "0005598", + "0005075", + "6003050", + "3006331", + "3005573", + "4002952", + "7004326", + "1005585", + "4004965", + "2005667", + "6002013", + "6004356", + "6002385", + "6004430", + "7003547", + "5001450", + "6004188", + "2003441", + "8002748", + "2004880", + "7004112", + "1006471", + "6004399", + "2006318", + "3004051", + "4002012", + "0003496", + "4002392", + "2005485", + "0003910", + "8001138", + "6002985", + "7004107", + "7003983", + "0004108", + "2005850", + "2005343", + "1005002", + "0005261", + "3005949", + "7003411", + "3003858", + "3005375", + "8002872", + "3003104", + "8001041", + "2005434", + "1006043", + "2005155", + "0005294", + "7004934", + "7004498", + "7002391", + "1003826", + "5001566", + "4004878", + "8001042", + "3006112", + "0004693", + "5001558", + "4004434", + "1006536", + "7003229", + "6002436", + "6002056", + "0003348", + "4003031", + "2005160", + "4002437", + "4003378", + "1005430", + "2003855", + "7002410", + "4003364", + "4004804", + "2004741", + "2003502", + "1006968", + "0003653", + "0006923", + "4002129", + "7002112", + "0006564", + "0004574", + "1006864", + "4002462", + "1005265", + "5001712", + "1005483", + "8002439", + "3004989", + "0003074", + "5001847", + "8001666", + "3004050", + "6002699", + "2003482", + "1005639", + "8002632", + "3005888", + "8001345", + "5001664", + "6004640", + "6003119", + "1004590", + "0005535", + "4002377", + "3003685", + "3004927", + "0004579", + "2003977", + "2004120", + "6003920", + "1005516", + "5001446", + "0006957", + "1004941", + "4004335", + "0005881", + "3003404", + "3003525", + "2006534", + "2005177", + "7002672", + "6003509", + "8002232", + "2006092", + "3004144", + "7002382", + "7003642", + "8002477", + "6002501", + "7004873", + "4002629", + "2005670", + "1005797", + "7004215", + "8003320", + "8003361", + "4002086", + "7004909", + "0006537", + "3006337", + "7003337", + "7002919", + "0003214", + "2007533", + "4002944", + "1005956", + "6002341", + "6004127", + "2003409", + "0004713", + "2006389", + "2007653", + "3005471", + "7003926", + "6004507", + "3004506", + "7002173", + "6002137", + "5001388", + "5001240", + "2005621", + "6003559", + "6002923", + "2004172", + "8003939", + "3004370", + "0005041", + "6003116", + "3006078", + "6004816", + "5001335", + "1003195", + "2007900", + "5001694", + "8001733", + "7003873", + "2007449", + "6004479", + "1004656", + "2007142", + "7004777", + "6002789", + "3003455", + "6004482", + "2007474", + "5001757", + "4004474", + "3003647", + "8002518", + "7004761", + "6002060", + "7002095", + "3006000", + "2005393", + "6003155", + "2007948", + "1006888", + "3003874", + "5001906", + "3004384", + "0005763", + "8002883", + "1004578", + "6003880", + "8002852", + "4002044", + "8001614", + "8002200", + "3003093", + "2005764", + "0006217", + "4003135", + "8003593", + "3006882", + "1004994", + "6003482", + "8003862", + "3003897", + "4004960", + "3004243", + "4003312", + "4002844", + "7002692", + "0005771", + "0006693", + "7002587", + "6004365", + "2007118", + "8001478", + "8003915", + "3003886", + "2007794", + "0003228", + "0006944", + "7003291", + "3004987", + "0003741", + "7003961", + "4004487", + "8003083", + "2006371", + "3004386", + "3004538", + "5001800", + "1004522", + "7003727", + "4002861", + "1004112", + "0004568", + "0004310", + "7002984", + "8002080", + "3003128", + "5001056", + "3004422", + "0006935", + "4002479", + "7004874", + "4004911", + "3003096", + "4004547", + "0003294", + "7003786", + "2006250", + "3006353", + "4002313", + "6003886", + "1005667", + "5001724", + "4003424", + "3006175", + "0005049", + "1006972", + "6002414", + "5001534", + "4003953", + "7002301", + "8001314", + "2003012", + "1003573", + "1003232", + "6004172", + "7004325", + "4003446", + "2004597", + "5001028", + "2003545", + "7004688", + "3006276", + "0005245", + "0005777", + "4004159", + "5001095", + "2007347", + "1006458", + "1004680", + "2006342", + "6004860", + "0005240", + "2006730", + "4004495", + "0005444", + "7003459", + "7004465", + "7003479", + "1003381", + "2004487", + "6003520", + "5001073", + "0005133", + "6004176", + "8002465", + "2004075", + "2004052", + "2003051", + "6004393", + "2004186", + "7004070", + "4002295", + "2007547", + "4004328", + "3004162", + "3003388", + "6002970", + "4004591", + "1006030", + "0005401", + "6003532", + "7004375", + "4003108", + "2006370", + "1004622", + "8001127", + "0006257", + "4002401", + "7002795", + "7003257", + "6002747", + "0005098", + "3005413", + "1003322", + "3006054", + "0005509", + "2005024", + "6003330", + "2004085", + "3005636", + "8003277", + "3006497", + "8002127", + "1006088", + "6003401", + "2006823", + "2007774", + "4003194", + "8002572", + "7003456", + "7004443", + "3004147", + "6002506", + "2004784", + "2005758", + "3006806", + "0003837", + "0005586", + "4004849", + "3005240", + "0003377", + "5001899", + "0003153", + "0005681", + "4002897", + "1005849", + "4003590", + "1006768", + "3003309", + "1006286", + "0006838", + "3003036", + "4004956", + "3006174", + "1006771", + "1006205", + "5001810", + "2004023", + "2005554", + "6002376", + "2007402", + "8003957", + "3005014", + "4004724", + "6002520", + "0005730", + "2007181", + "8003543", + "4004872", + "1004796", + "3006644", + "1004754", + "2003564", + "7003629", + "6004845", + "1005381", + "8001254", + "3003563", + "7002142", + "2004737", + "7004605", + "1005306", + "7002857", + "7004463", + "7004007", + "0005530", + "2004454", + "2007341", + "4002881", + "4003294", + "3004362", + "2007430", + "8003601", + "1005461", + "1005271", + "8001762", + "1006734", + "0003648", + "5001191", + "3003788", + "6003470", + "3004418", + "3003843", + "8002098", + "2006282", + "8001567", + "7002194", + "6002090", + "3006676", + "3004156", + "7003765", + "4002400", + "3005854", + "2004434", + "0005636", + "3005166", + "2004743", + "0004628", + "4002640", + "8003674", + "1003134", + "8001413", + "6002917", + "4002573", + "2007036", + "2003637", + "1006842", + "3005363", + "4003313", + "2004764", + "0004454", + "4004289", + "1003765", + "2004054", + "8001863", + "2005110", + "3003586", + "7002179", + "2005341", + "2003049", + "3005106", + "0006394", + "1005433", + "6003181", + "2007457", + "4003535", + "3005114", + "7004084", + "3006067", + "5001538", + "4004267", + "6003106", + "6003141", + "3004539", + "4003993", + "0003936", + "0003225", + "8003381", + "5001931", + "2004767", + "3005951", + "7003032", + "3006525", + "6004006", + "6004812", + "3003663", + "6002489", + "8001248", + "0003506", + "0003676", + "8001833", + "3003596", + "2005892", + "0006562", + "2004014", + "1006932", + "3005812", + "7004154", + "0005464", + "3003651", + "2007065", + "3005517", + "5001646", + "3004866", + "2006867", + "2003611", + "8002727", + "4003308", + "0003625", + "6002754", + "4003033", + "3005325", + "0005128", + "2006146", + "4002830", + "4002180", + "2004627", + "3006197", + "8002816", + "8001002", + "3004408", + "0003922", + "1006593", + "3006739", + "6003315", + "8003203", + "1004488", + "0006919", + "7003182", + "0006596", + "8003821", + "2003430", + "5001649", + "5001731", + "2007729", + "1005943", + "2006783", + "2006786", + "2004931", + "2007268", + "7003900", + "0004518", + "8002471", + "1005963", + "2005587", + "8001560", + "3004381", + "2004178", + "0006970", + "4002973", + "1005504", + "4003039", + "3003001", + "7004900", + "5001150", + "8003129", + "6003513", + "8001905", + "6004377", + "3004613", + "8001895", + "2007167", + "0005283", + "8002828", + "1003954", + "2004709", + "7003417", + "8002105", + "1006015", + "7004581", + "2004455", + "7003755", + "1004940", + "0005837", + "2003974", + "1004018", + "0004727", + "7004621", + "1003130", + "6004338", + "7002257", + "7004814", + "7002205", + "8003021", + "7003331", + "4004245", + "5001340", + "6004150", + "5001143", + "3003619", + "0006656", + "1004647", + "2006913", + "0004442", + "1004095", + "7003636", + "1003087", + "0004820", + "4004783", + "4003579", + "8002152", + "2006411", + "2003838", + "3005467", + "7002461", + "7002080", + "2004463", + "2004422", + "5001629", + "6002154", + "1004436", + "0005391", + "4002088", + "6003132", + "1005724", + "1004347", + "0006873", + "1004957", + "4002297", + "4003931", + "2005629", + "7002847", + "4003462", + "3006780", + "0003438", + "0003570", + "4003111", + "0005481", + "3006063", + "8003109", + "2004656", + "6002525", + "7002373", + "1006124", + "6004805", + "3004462", + "1006516", + "2007416", + "1003144", + "2006711", + "3003137", + "7002234", + "0003605", + "2004725", + "2003746", + "7002499", + "1005699", + "0004037", + "0005892", + "4004206", + "2003764", + "0006403", + "4002767", + "4003662", + "2006648", + "7002544", + "0006779", + "0006019", + "3003363", + "0003508", + "0006141", + "1006133", + "0003299", + "0006463", + "0006043", + "1003853", + "3006226", + "4003238", + "2006129", + "7002284", + "7002665", + "3006824", + "2004841", + "8003829", + "0004639", + "0004176", + "8001354", + "3005604", + "5001919", + "4004132", + "1004164", + "3005429", + "7002835", + "8002244", + "7004178", + "0006409", + "1006300", + "7002627", + "7003132", + "7002358", + "2003784", + "6002565", + "3005173", + "6003405", + "3005752", + "0006421", + "7002592", + "2006824", + "4003519", + "6003024", + "0004426", + "8002426", + "6002483", + "1004478", + "1003036", + "2005056", + "1004476", + "2007785", + "4002048", + "1006208", + "4004989", + "0005811", + "2003317", + "7002075", + "0003874", + "4003258", + "6003640", + "5001396", + "2007632", + "5001564", + "8003871", + "2005701", + "3005839", + "4004715", + "3005064", + "8001164", + "2004187", + "4003359", + "3004285", + "3006142", + "8003536", + "0005172", + "8001683", + "1006276", + "6002023", + "0006411", + "5001301", + "6002157", + "1006195", + "6003198", + "7003662", + "8002357", + "7002827", + "0003836", + "3004410", + "2006023", + "0003873", + "2004391", + "8002011", + "3003439", + "1006212", + "6004178", + "7002086", + "7002300", + "7003438", + "0004891", + "3005362", + "2003000", + "4003754", + "1006000", + "6002131", + "5001232", + "0005750", + "8003992", + "1006851", + "8002066", + "3003836", + "3004277", + "1005103", + "2007992", + "3006303", + "7003896", + "2007882", + "2007379", + "6004251", + "2007242", + "1006756", + "4004366", + "7002483", + "1003758", + "8002645", + "2005624", + "0003166", + "5001305", + "4003603", + "2007841", + "1003924", + "2003612", + "4003176", + "7003986", + "2005036", + "3003095", + "0004774", + "0006534", + "8001616", + "2006283", + "8001680", + "2005018", + "0005689", + "5001070", + "6002950", + "3005567", + "6004337", + "1003651", + "3005184", + "8002350", + "4002268", + "3005601", + "3005395", + "1006574", + "1004808", + "1003557", + "1004870", + "1003244", + "7004391", + "1006090", + "2007257", + "2006788", + "2004257", + "0003748", + "3003680", + "0004219", + "4002430", + "4002131", + "1005309", + "1005975", + "8001119", + "0003084", + "3006652", + "3006031", + "5001363", + "7002522", + "2005894", + "7004077", + "4004251", + "2006967", + "0004812", + "4003841", + "0003556", + "1005400", + "1006387", + "8001334", + "3005570", + "2004753", + "7003013", + "7002623", + "3006235", + "3005381", + "6003741", + "3003851", + "0003223", + "2003472", + "7004193", + "8002651", + "2007470", + "2005075", + "5001011", + "1006442", + "6004058", + "4002381", + "2007006", + "0005431", + "2005660", + "6004157", + "6003711", + "7004389", + "8003398", + "3004464", + "1004235", + "6004043", + "0006182", + "7002802", + "4004752", + "0004600", + "4004024", + "4004505", + "6003718", + "0004667", + "2005287", + "2007843", + "3006328", + "7004277", + "7003787", + "1006789", + "7002050", + "6003411", + "5001424", + "2007568", + "7002564", + "0004589", + "6004292", + "2005716", + "8001027", + "0005056", + "1005971", + "2005906", + "1005851", + "7004984", + "0004544", + "0005453", + "4003379", + "3003944", + "1003563", + "3006548", + "0003983", + "0006773", + "2004283", + "7004042", + "0003131", + "1005748", + "2005911", + "0004122", + "8001044", + "8003948", + "0003357", + "2005125", + "2004986", + "0004109", + "0003938", + "3003155", + "8002297", + "3006463", + "0006920", + "1006226", + "7004975", + "1005158", + "7003910", + "3004786", + "3004809", + "5001196", + "0003297", + "3005750", + "8002611", + "8001080", + "3003110", + "0005677", + "4003989", + "3006933", + "6003594", + "8001538", + "7004725", + "0004452", + "0005057", + "0005836", + "0006812", + "5001245", + "8002113", + "2007891", + "0006108", + "0004914", + "2003633", + "7003958", + "3006291", + "6002552", + "7004383", + "2006057", + "3003811", + "6002533", + "0005738", + "6002032", + "2007681", + "8001233", + "5001262", + "3005707", + "8001403", + "0005130", + "4002251", + "3006924", + "6004209", + "8003658", + "0005885", + "1003686", + "3006325", + "2003271", + "3005868", + "2004501", + "7004345", + "6004344", + "8002844", + "1006854", + "0005262", + "8002114", + "0003171", + "7004162", + "1003186", + "3005572", + "7002874", + "0004361", + "4004017", + "8001527", + "4004909", + "1003072", + "4004645", + "3005846", + "0004821", + "0005490", + "2005436", + "0004631", + "1005279", + "6002389", + "8002771", + "2006745", + "7003997", + "8002803", + "4004466", + "3004893", + "7002307", + "1005698", + "7003685", + "2004592", + "3003079", + "3005366", + "2007128", + "3004181", + "4003082", + "3005132", + "1003519", + "0003140", + "8003383", + "1004778", + "2007597", + "7003095", + "0004169", + "1005650", + "8001598", + "0004807", + "4004897", + "3003466", + "8003337", + "7003994", + "8003025", + "7004460", + "7004379", + "1005950", + "7002157", + "3005318", + "3004954", + "5001818", + "0005473", + "8001437", + "4004631", + "0005448", + "2005426", + "0005356", + "3005191", + "4004915", + "5001704", + "7003992", + "5001243", + "3006040", + "3003917", + "1004663", + "2004972", + "2003319", + "7002005", + "3006030", + "8001851", + "1006266", + "8002169", + "4002034", + "1004977", + "2003399", + "0005226", + "3003397", + "1006769", + "6004867", + "4002265", + "8002650", + "2006496", + "4002448", + "2007412", + "6003785", + "1003153", + "0005341", + "0003857", + "6003878", + "4004031", + "3005796", + "3005995", + "4002583", + "4002616", + "2003036", + "1004666", + "4002786", + "3004913", + "6002725", + "8003324", + "3004024", + "6004652", + "2003786", + "8002741", + "7002322", + "2007411", + "8001136", + "6002267", + "2005838", + "0003301", + "1006871", + "7002617", + "2006478", + "4002701", + "0003292", + "2004382", + "5001333", + "5001199", + "5001790", + "0004986", + "0003050", + "1006267", + "1005626", + "0005942", + "4003134", + "2005166", + "5001343", + "3003325", + "2003713", + "1006193", + "0005493", + "0006254", + "2004546", + "3005635", + "8003715", + "0006076", + "6003336", + "4002349", + "6004545", + "1006761", + "8002897", + "2004982", + "7003546", + "3003458", + "1005407", + "3004480", + "3004443", + "7002863", + "3004016", + "8002598", + "1006453", + "1003754", + "8002185", + "1004141", + "2006152", + "1003909", + "1006992", + "3004282", + "0003929", + "5001464", + "6003385", + "2003165", + "6004557", + "2003625", + "8002117", + "2003355", + "2003276", + "4003991", + "6003286", + "4004760", + "4002287", + "3005011", + "7004944", + "2003287", + "5001410", + "0003564", + "6004183", + "3004185", + "7002444", + "0005893", + "2004621", + "7003285", + "6002076", + "2006166", + "3006411", + "7003596", + "2006754", + "7004508", + "7004261", + "1005408", + "1004466", + "4003479", + "4002595", + "8003535", + "0005388", + "4004381", + "6002195", + "3004657", + "8001200", + "3005249", + "6002852", + "5001389", + "4002851", + "1005217", + "8001610", + "3006465", + "8003851", + "2005636", + "3004768", + "0003779", + "1006077", + "1003343", + "4003767", + "7002503", + "8003469", + "3004034", + "8001562", + "8002513", + "2004127", + "0005032", + "0005517", + "7004804", + "1003564", + "2004190", + "0004196", + "0004679", + "3003600", + "6004966", + "4004362", + "1003663", + "1003561", + "2007175", + "0003107", + "2005760", + "2003023", + "4003737", + "8002287", + "3005665", + "1006674", + "2004556", + "7003171", + "3006135", + "0006101", + "8003522", + "7003476", + "0006159", + "5001780", + "6004426", + "7002389", + "4004823", + "3003067", + "4004107", + "7002445", + "1005515", + "6002315", + "2004073", + "1005021", + "3006254", + "8003578", + "5001605", + "2007819", + "0003035", + "6004606", + "7004669", + "2005386", + "0004634", + "2005653", + "3006614", + "4002653", + "4002299", + "6004475", + "3004055", + "0006160", + "2006572", + "5001957", + "6004910", + "4003911", + "1005661", + "8002349", + "8003533", + "7002406", + "1006163", + "6002724", + "0004511", + "4004154", + "6003809", + "7002381", + "7004451", + "2003658", + "0004775", + "7004418", + "1003868", + "3004847", + "6003222", + "2007674", + "2003461", + "0005824", + "0006560", + "0006306", + "3004677", + "0005860", + "7003620", + "2006759", + "6002412", + "0004005", + "2004360", + "7004649", + "5001600", + "3005717", + "2004140", + "2003680", + "0003163", + "0006156", + "2007914", + "0003825", + "2005858", + "2007706", + "8003222", + "1004981", + "5001496", + "0003822", + "0005362", + "3004605", + "7004690", + "2006981", + "0005882", + "8001924", + "2003655", + "1006057", + "0003912", + "1006235", + "1005173", + "4003322", + "3004290", + "8002312", + "2005947", + "0006028", + "2003668", + "0004024", + "7003431", + "2007679", + "2004587", + "3004965", + "2007068", + "8002814", + "0003833", + "2004470", + "3005645", + "2006291", + "0003640", + "8002577", + "2006101", + "2006813", + "1003654", + "7004548", + "7003640", + "7002699", + "0006680", + "0004957", + "8001612", + "3003357", + "3006171", + "8003809", + "1003806", + "6003297", + "0004124", + "3004930", + "8002012", + "4003206", + "2003661", + "8001269", + "2006212", + "0004756", + "2006991", + "2005544", + "7002515", + "8003641", + "6003314", + "3006539", + "7003840", + "2005352", + "8002070", + "7003231", + "0006426", + "1003167", + "6002377", + "4002756", + "2007751", + "4004391", + "2006325", + "7002296", + "2006485", + "7002783", + "1003374", + "6002454", + "0003878", + "6003751", + "7004252", + "1005339", + "3004155", + "2007572", + "8003415", + "3005412", + "8002922", + "6002679", + "6003131", + "7004109", + "6002722", + "6004494", + "6002912", + "8001817", + "1003255", + "3006611", + "0005518", + "2004548", + "1004564", + "4004399", + "3004839", + "8001940", + "4004494", + "0005241", + "1004571", + "0005812", + "3005492", + "8003181", + "0006329", + "8002458", + "6004361", + "6002682", + "0006484", + "6002981", + "3004215", + "1003688", + "4003823", + "3003889", + "1004369", + "1005266", + "2006960", + "3004347", + "2005513", + "4002199", + "0005655", + "2006364", + "1004345", + "3003535", + "2005184", + "2003723", + "7004017", + "1006859", + "6002397", + "0006663", + "6002132", + "0003510", + "0006580", + "4003298", + "1006269", + "1005254", + "2003425", + "3005578", + "7002418", + "3003520", + "3003639", + "0004079", + "0003222", + "0003181", + "5001556", + "3005299", + "7002026", + "0006127", + "2003722", + "4003822", + "7003783", + "2007096", + "8002485", + "3004416", + "3004906", + "0004192", + "2005228", + "2006665", + "3006559", + "8002905", + "8002776", + "2007769", + "6004603", + "6002302", + "6002596", + "0005709", + "4004155", + "7004268", + "5001908", + "0006025", + "2007609", + "5001881", + "7003716", + "4004386", + "1005985", + "7002660", + "2003537", + "2007300", + "0005470", + "7004322", + "0003522", + "1005623", + "3004636", + "1006687", + "6002863", + "2003315", + "5001273", + "0003367", + "1004333", + "8002126", + "7002150", + "3003594", + "2007086", + "0006822", + "3004891", + "0006206", + "0004132", + "0006540", + "2007664", + "6003814", + "8003553", + "1005215", + "0004071", + "2007970", + "2005052", + "2007404", + "3006546", + "2003082", + "7002285", + "6004864", + "4002743", + "3003524", + "6004585", + "4003879", + "1004486", + "2003796", + "3003492", + "4002637", + "1003777", + "7003463", + "8001009", + "1004686", + "6003821", + "4004550", + "8003738", + "2004151", + "0003400", + "2004511", + "1005883", + "7002106", + "1005437", + "3004434", + "1005638", + "7003461", + "3004140", + "3004782", + "3003705", + "4004038", + "4002657", + "4003965", + "0006658", + "2003021", + "4004086", + "2005432", + "6004304", + "4003905", + "6002751", + "8001388", + "7004696", + "7003323", + "4003327", + "0003967", + "1003746", + "2003708", + "0003788", + "7004699", + "0004928", + "7004818", + "7003553", + "2004394", + "6002308", + "1003666", + "2005376", + "4003300", + "3003880", + "6004138", + "6003374", + "2007393", + "2004474", + "3006452", + "1005218", + "2005915", + "2005511", + "7003341", + "4002198", + "1003297", + "8002864", + "2005192", + "2005533", + "0005069", + "3004000", + "1004874", + "6003071", + "2006860", + "1004787", + "6002877", + "3003543", + "4004120", + "2004668", + "8002474", + "5001039", + "3004227", + "5001214", + "8001737", + "4004637", + "1005923", + "7003087", + "2004930", + "2004242", + "2005280", + "7003713", + "2003257", + "2006114", + "6002990", + "2004432", + "0005425", + "5001547", + "4003181", + "4002796", + "3006792", + "2005003", + "8001529", + "2003331", + "7004553", + "6004346", + "6003261", + "2004306", + "8003364", + "2003404", + "1005618", + "7003942", + "7003362", + "3003202", + "7004844", + "3005790", + "0006667", + "0005683", + "0005012", + "8003459", + "5001574", + "5001053", + "6002102", + "2007440", + "3005388", + "7004359", + "3003075", + "3004236", + "8001160", + "3004664", + "2004275", + "4002081", + "4003645", + "1006357", + "3006719", + "1006634", + "5001717", + "7002360", + "0003439", + "7003141", + "3006672", + "3005713", + "0006630", + "1004477", + "8002993", + "2005893", + "5001883", + "4002623", + "4002697", + "0003854", + "1006327", + "2004350", + "6003561", + "7004866", + "7002937", + "0003164", + "2006600", + "0005801", + "5001074", + "5001128", + "3005421", + "1004165", + "1003341", + "6002046", + "2005741", + "2005471", + "4002433", + "6003076", + "1005190", + "0003666", + "8003226", + "1005734", + "8001130", + "8001667", + "2003978", + "3005309", + "0006071", + "1003574", + "5001644", + "2005835", + "2005900", + "1006127", + "8002035", + "7004227", + "8003727", + "1003268", + "2003341", + "2006418", + "1005334", + "6003571", + "4003022", + "2006296", + "3005466", + "1004726", + "3004826", + "3005015", + "7004096", + "2005455", + "6003577", + "1004999", + "0006274", + "1004784", + "0005324", + "4002041", + "0006745", + "2007500", + "1005607", + "7004446", + "3005338", + "2006177", + "6002301", + "8002221", + "2006181", + "1004707", + "1003321", + "0005818", + "8001623", + "0003264", + "3004336", + "0004909", + "3003628", + "1005678", + "0003517", + "0003332", + "7002412", + "1006278", + "3003112", + "8002429", + "1006297", + "8002039", + "7003675", + "3006074", + "0006852", + "6004241", + "3005082", + "0006429", + "3006370", + "1006889", + "0004408", + "0004763", + "2003849", + "0004317", + "2005309", + "6004305", + "0005523", + "5001822", + "2006107", + "6002680", + "4004053", + "3006869", + "4003079", + "1005375", + "2004028", + "6004193", + "6004580", + "2007396", + "3006921", + "2003510", + "2007802", + "8003807", + "4004546", + "1004214", + "1003129", + "8001284", + "2003295", + "8002895", + "3003821", + "2006396", + "1006408", + "1005547", + "3005939", + "8001272", + "4004104", + "2003576", + "8002133", + "8001794", + "1004444", + "4002860", + "4002873", + "2004751", + "2006872", + "3003867", + "3004629", + "3004331", + "3003181", + "0003664", + "0004003", + "1006332", + "4003372", + "1004331", + "4004535", + "3004345", + "7003944", + "0004342", + "2007998", + "4003562", + "5001672", + "2007079", + "5001019", + "6004379", + "4004115", + "0004725", + "6004484", + "3003519", + "0005489", + "0006772", + "1005410", + "0005316", + "1003451", + "6004102", + "1004606", + "7003163", + "7002383", + "3005336", + "0006315", + "0004120", + "2003201", + "8003760", + "5001796", + "7002517", + "8001028", + "0004275", + "8003794", + "6002832", + "8001964", + "2005296", + "2004254", + "6003725", + "8002980", + "2003710", + "6003395", + "3004211", + "8002076", + "0004931", + "7003407", + "7002182", + "3006938", + "1005088", + "6003042", + "7002440", + "0006958", + "8002631", + "3006049", + "0005979", + "1005357", + "1004849", + "8001950", + "3005872", + "2005408", + "0005915", + "2004914", + "2005749", + "3003659", + "2007595", + "0004777", + "1005160", + "3004682", + "4002405", + "4004809", + "1003177", + "7003626", + "8001500", + "8002599", + "3004274", + "8002053", + "7004592", + "1006120", + "8001239", + "1003369", + "1004853", + "3004375", + "7003700", + "8002051", + "2003047", + "0005985", + "6003380", + "2007805", + "8002162", + "8003529", + "7002225", + "8002887", + "0005406", + "6002578", + "3004090", + "8001296", + "2004222", + "4002584", + "3004301", + "0004236", + "1003309", + "6002338", + "3004844", + "1004706", + "6004163", + "3003239", + "1004881", + "3003474", + "8001452", + "1004030", + "3005871", + "1004265", + "6002322", + "6004518", + "3005502", + "2004320", + "8002673", + "2007834", + "8002538", + "6003862", + "6004727", + "6003428", + "6002507", + "2004586", + "4004056", + "6004002", + "6004168", + "2004960", + "0003416", + "2005415", + "2003178", + "3004722", + "8003194", + "3006043", + "6002088", + "4003695", + "3006623", + "2006744", + "5001448", + "8002415", + "0005084", + "2004099", + "8001797", + "3004133", + "4003059", + "3003947", + "8002459", + "8003736", + "4003276", + "4002201", + "0003247", + "8002707", + "3003698", + "1003727", + "0004311", + "1006626", + "7003147", + "0003325", + "1003105", + "5001740", + "0003604", + "8003223", + "3003683", + "1006897", + "8003024", + "1006818", + "2006939", + "0006509", + "8003622", + "7004917", + "6004851", + "0004017", + "1003870", + "3004689", + "0005134", + "3006489", + "6003412", + "3006479", + "2003891", + "7002469", + "6002764", + "2006565", + "2006010", + "2005054", + "2004574", + "3003175", + "2005800", + "8001193", + "3003881", + "3006717", + "3003232", + "7003722", + "7004640", + "3005508", + "8002729", + "2007357", + "0003733", + "8001069", + "2004531", + "6004486", + "2004716", + "6003046", + "0005495", + "6003632", + "4002859", + "8001440", + "0005000", + "8002482", + "1005304", + "7003069", + "1004303", + "4003882", + "2003606", + "2005951", + "2007148", + "2003068", + "1006603", + "8003890", + "4004964", + "6002785", + "1006710", + "3005705", + "7003990", + "3004240", + "0004076", + "1006151", + "3003382", + "3004731", + "0005393", + "6003334", + "2006310", + "8001211", + "6002951", + "8002910", + "5001625", + "2007644", + "2007314", + "6003040", + "5001804", + "2004906", + "6004646", + "0004714", + "2007060", + "3003768", + "6003322", + "2005981", + "7002008", + "8001183", + "8003627", + "8001300", + "4002914", + "3003832", + "7004937", + "3003932", + "6004573", + "2006550", + "2005598", + "2007536", + "4002365", + "6002188", + "8001445", + "2004156", + "2003899", + "8003435", + "2006316", + "8001386", + "4003613", + "2006964", + "6003371", + "2004340", + "0006601", + "3003494", + "2007164", + "7002019", + "6004000", + "0004472", + "2004411", + "7002224", + "0006558", + "0004097", + "4003200", + "2007790", + "6004664", + "7002117", + "2007197", + "7003272", + "2005175", + "2007053", + "0005605", + "8002873", + "8003776", + "0005652", + "6004935", + "7003406", + "0006229", + "3006772", + "6004967", + "6004369", + "2003950", + "7004972", + "6004826", + "2004735", + "1005728", + "0003629", + "4003639", + "0005221", + "2005600", + "7003370", + "0005841", + "8003524", + "7004099", + "4004990", + "0005029", + "1003103", + "4004912", + "8002676", + "0003484", + "3004790", + "0003316", + "4003846", + "8001670", + "3006654", + "6002518", + "2004794", + "4002230", + "6002654", + "7002942", + "3004803", + "8002592", + "7002666", + "7002018", + "2003763", + "6003350", + "3004453", + "3004138", + "8001875", + "8002951", + "0004299", + "8001660", + "5001533", + "4004507", + "4002510", + "5001868", + "3006169", + "2007163", + "2003649", + "6002350", + "8002327", + "0003311", + "2005618", + "8002206", + "3006056", + "6003063", + "4003748", + "1003306", + "0005778", + "8001364", + "3004725", + "4002631", + "4004932", + "3005039", + "8002056", + "0005838", + "2005815", + "0006788", + "1003916", + "8001339", + "8002043", + "1006012", + "7003478", + "6002063", + "8002696", + "3004557", + "1005940", + "4004677", + "1005370", + "6003817", + "8003153", + "4003204", + "6002354", + "7004924", + "2003758", + "0005386", + "3003020", + "0004031", + "7003480", + "8001118", + "0004477", + "2003842", + "3005477", + "3006699", + "0004378", + "2007224", + "0005051", + "8001726", + "6002918", + "5001383", + "2006593", + "6003942", + "1005534", + "2007554", + "8002088", + "8003418", + "1006701", + "4004611", + "1005968", + "2006583", + "0006442", + "2003566", + "6002579", + "2007275", + "1006997", + "8001341", + "1003708", + "4003889", + "4002735", + "7004004", + "1004220", + "2003750", + "1006901", + "4004075", + "2004071", + "1004888", + "6002291", + "4003859", + "1006126", + "7002450", + "6002169", + "1004661", + "6004909", + "1006607", + "7002120", + "2005344", + "4002900", + "3006724", + "7002172", + "1006307", + "6004613", + "1005686", + "7002089", + "1006541", + "4004385", + "2005966", + "4002077", + "1003337", + "2007160", + "8002906", + "7003045", + "5001889", + "8002131", + "3003242", + "7003741", + "1003261", + "0005691", + "6003365", + "0006139", + "8001362", + "4002799", + "1004066", + "8001980", + "7004967", + "5001051", + "6004204", + "4003175", + "8001674", + "2004188", + "1006399", + "1004902", + "0006853", + "7004151", + "0004083", + "7003085", + "0006508", + "1006722", + "1006675", + "1006328", + "7003449", + "6004525", + "8002875", + "1005405", + "2005973", + "6004583", + "5001060", + "7002625", + "2006722", + "1006236", + "5001615", + "5001916", + "2003777", + "1004414", + "6002468", + "8003812", + "1003940", + "8003027", + "0004101", + "3004111", + "0003964", + "4003838", + "7003634", + "2004076", + "3003876", + "1006905", + "4004845", + "0006639", + "7002442", + "4004725", + "2003488", + "3006344", + "0004224", + "2007390", + "0006678", + "4003520", + "8003066", + "2003160", + "7002570", + "6003693", + "0004013", + "7000000", + "3005516", + "6003960", + "8002823", + "5001958", + "1004274", + "4003101", + "2003351", + "2004790", + "0004478", + "7002170", + "7002829", + "8002353", + "2005582", + "6002657", + "7004433", + "2004553", + "7004677", + "4004103", + "2003017", + "6002629", + "7003998", + "3005004", + "0005127", + "6003687", + "7003775", + "8001977", + "3005301", + "6004100", + "2006074", + "8003227", + "7003296", + "1003070", + "0006905", + "2005246", + "0004389", + "2005422", + "3004351", + "3006375", + "0005506", + "4002762", + "7002310", + "3006608", + "1005905", + "4002332", + "8001366", + "4003583", + "2007813", + "7002139", + "3004325", + "3006029", + "3006516", + "0005894", + "7002449", + "7004262", + "3004559", + "2006271", + "2007310", + "2005535", + "0006775", + "1005175", + "7002294", + "2003651", + "2003216", + "3003782", + "1003099", + "7003175", + "4002371", + "7002460", + "8003369", + "2005962", + "0005227", + "1006778", + "5001601", + "1005805", + "3006473", + "7004945", + "3004903", + "1006754", + "6002945", + "2007744", + "3006985", + "7002386", + "7002923", + "1004404", + "2005603", + "3004174", + "2003916", + "2004980", + "6002972", + "5001972", + "3006544", + "4003500", + "6003685", + "1005528", + "1003148", + "3004801", + "0006212", + "4004869", + "3004143", + "2004425", + "3005625", + "3006889", + "0005791", + "6004642", + "3004628", + "4004192", + "8003060", + "8002262", + "6002174", + "8002137", + "0004603", + "0006135", + "8001365", + "0003231", + "1005007", + "2007969", + "1004473", + "6004425", + "0004732", + "7004719", + "0004458", + "1006223", + "6004730", + "1005901", + "2005732", + "5001631", + "3005259", + "2003549", + "0005759", + "2006245", + "1006821", + "1004190", + "2004245", + "6003343", + "4003853", + "7002578", + "6002304", + "0003387", + "2006230", + "6002759", + "3004615", + "1005777", + "5001247", + "6004245", + "3005831", + "4004678", + "4003673", + "8003308", + "1004532", + "6002297", + "4004407", + "0006550", + "8003719", + "0006647", + "0006987", + "4004720", + "1003983", + "2004929", + "4004096", + "3005103", + "2007715", + "0005868", + "3003487", + "0003093", + "2005662", + "7003021", + "0003544", + "3003803", + "6003450", + "2007158", + "1004440", + "8002949", + "2004000", + "0006736", + "3005569", + "3004432", + "6002472", + "3005462", + "6002568", + "0003323", + "7004560", + "8001611", + "8001571", + "2007252", + "2004121", + "1006910", + "1003346", + "8003085", + "3005159", + "6004968", + "8002274", + "1006421", + "1003069", + "1004953", + "4002040", + "1006939", + "0006982", + "8002848", + "1005749", + "4002103", + "2005431", + "3005485", + "6002690", + "1005750", + "4004741", + "4002438", + "1004492", + "0003875", + "6002482", + "8002795", + "1006672", + "1004780", + "0003850", + "4002188", + "6004690", + "7004069", + "1004979", + "0006543", + "4004695", + "2005077", + "4003243", + "1004055", + "2006908", + "4004646", + "7004015", + "1005392", + "5001876", + "3005661", + "2004230", + "7004315", + "1005747", + "4003096", + "1006827", + "4004051", + "2007233", + "4004948", + "7003342", + "1005880", + "1006438", + "2004211", + "7004970", + "0004339", + "5001627", + "2004993", + "6003359", + "0006199", + "2004528", + "2004927", + "1003952", + "0004100", + "5001829", + "1003477", + "2005560", + "7003029", + "0006702", + "6004817", + "1005013", + "8001361", + "2005023", + "4002310", + "2004724", + "5001807", + "2006513", + "0004949", + "6003324", + "0005472", + "1003704", + "8002532", + "8003824", + "0006533", + "7003704", + "2006438", + "5001373", + "6004858", + "0005383", + "4004293", + "6003049", + "6004758", + "6003617", + "2004198", + "7003606", + "8002935", + "1004083", + "8001281", + "2003546", + "0004302", + "7004189", + "0006569", + "6002899", + "5001431", + "7003303", + "0004475", + "6003179", + "5001252", + "7004751", + "8002316", + "8002321", + "2005063", + "3005473", + "7002051", + "1005391", + "4004700", + "0006726", + "7003379", + "7002768", + "2004431", + "0005319", + "2005974", + "3003330", + "0005042", + "4003481", + "3004960", + "1003430", + "6004449", + "2003474", + "7003877", + "1003737", + "1005507", + "3003477", + "3003794", + "8001032", + "7003077", + "3006304", + "7004342", + "2003175", + "4002703", + "6003551", + "0003057", + "3003750", + "2007017", + "0006418", + "4002537", + "6004174", + "8003521", + "0006423", + "3004595", + "8001326", + "0004522", + "1005598", + "4003576", + "1004129", + "1004295", + "3005869", + "7002811", + "7002159", + "8003355", + "3003284", + "2005788", + "1006923", + "6003757", + "0005348", + "1004539", + "5001707", + "1006760", + "2004990", + "3004618", + "6004298", + "0006499", + "6002263", + "4004112", + "0003014", + "6004317", + "1004325", + "5001653", + "2007964", + "5001838", + "2007134", + "6004807", + "2005761", + "5001045", + "1005300", + "2004540", + "1005414", + "2005448", + "4003529", + "7003053", + "8001457", + "6004462", + "4002977", + "2004095", + "1005982", + "7002844", + "4003732", + "0006504", + "0005698", + "6004814", + "4002903", + "4003781", + "3004172", + "2006021", + "0003999", + "6003472", + "8001758", + "2004314", + "4003319", + "8002719", + "3005013", + "2003487", + "3005189", + "5001782", + "3004750", + "2006149", + "4003205", + "0005140", + "6003055", + "8001434", + "4004063", + "2004333", + "8002121", + "6004106", + "3003537", + "1006018", + "7003499", + "1003815", + "5001676", + "1006831", + "7004355", + "3004567", + "4003174", + "0005591", + "1005404", + "4004653", + "4003064", + "2007808", + "7004104", + "5001778", + "7004194", + "8003723", + "6003938", + "2007247", + "2003231", + "6004092", + "0003639", + "6000007", + "1005926", + "3005177", + "1004946", + "1004789", + "3004848", + "1005846", + "5001197", + "0006383", + "6002933", + "4003449", + "5001291", + "6003376", + "4002671", + "2003989", + "6004098", + "5001033", + "0003513", + "7003794", + "0003156", + "4003283", + "4002368", + "2004101", + "3005009", + "2004352", + "6003204", + "6003088", + "2003002", + "1004632", + "5001655", + "2004374", + "1004669", + "7004429", + "2006420", + "0005460", + "4004338", + "2006998", + "3006090", + "8002032", + "1005774", + "0006627", + "1004370", + "1005499", + "6004087", + "8003037", + "2007481", + "6004057", + "3006471", + "8002270", + "6002909", + "3004032", + "6002129", + "3004757", + "7003143", + "3003179", + "6003555", + "1006486", + "6003778", + "1006061", + "2005731", + "6002814", + "2003503", + "1005220", + "0003671", + "2007759", + "0003956", + "6004427", + "0005671", + "6004526", + "4002728", + "3004681", + "1005311", + "8001770", + "2007312", + "6002272", + "4004101", + "4002752", + "4004601", + "8003271", + "1003718", + "0004384", + "8001711", + "3003261", + "7002968", + "2004976", + "1006209", + "5001837", + "1003839", + "1006803", + "4003917", + "8003575", + "7004520", + "2007123", + "3004754", + "3005606", + "7002628", + "2003607", + "3003807", + "3005974", + "8003490", + "8001048", + "1006227", + "2005642", + "6002829", + "0005717", + "6003528", + "5001698", + "6004161", + "1006497", + "0005022", + "0003470", + "6004857", + "3004972", + "8003520", + "5001296", + "3003854", + "1006488", + "2004711", + "3003159", + "3004854", + "1006788", + "1006272", + "0003631", + "8001902", + "7003973", + "4003005", + "4002615", + "2005509", + "7003689", + "3004039", + "0004356", + "2004302", + "3006223", + "7002434", + "3003599", + "3003292", + "7002221", + "0005732", + "1003761", + "2007668", + "2005959", + "0006650", + "0006710", + "4003692", + "0005196", + "0005570", + "8002335", + "1006921", + "2007864", + "8003700", + "2003403", + "8002970", + "3005067", + "7004712", + "8001255", + "3003605", + "0004260", + "7003403", + "7002217", + "2003057", + "7002840", + "8003820", + "2004673", + "8003713", + "0003091", + "1003735", + "1003465", + "4002294", + "0006721", + "2004584", + "3003192", + "4004598", + "0006456", + "3003302", + "6004472", + "8003943", + "7003984", + "1005770", + "2007081", + "0005695", + "4002065", + "3005623", + "1004273", + "2003278", + "2006417", + "0004009", + "3006741", + "1006177", + "8003666", + "0004338", + "8002290", + "4003849", + "0005182", + "4004423", + "4002891", + "5001617", + "7003359", + "0004423", + "0004344", + "1003703", + "7003315", + "3003701", + "0004670", + "2006603", + "4003533", + "3006830", + "3003857", + "3006230", + "3004489", + "7004625", + "2004696", + "3003850", + "3004040", + "3004900", + "1006422", + "8002372", + "2005759", + "6004205", + "6004572", + "0004705", + "1006494", + "8001410", + "1004836", + "3003339", + "2005363", + "4002985", + "3005642", + "0005045", + "2005895", + "3006554", + "4004731", + "0003602", + "6004920", + "2004298", + "3003879", + "2005020", + "2004386", + "6002265", + "4003035", + "6002570", + "6002123", + "3003138", + "2004109", + "1004324", + "6002928", + "1006688", + "6002253", + "0005007", + "0004419", + "3006957", + "6002667", + "3004650", + "3004912", + "2005159", + "8002026", + "4002045", + "1003639", + "2006811", + "3006005", + "7003734", + "7003277", + "7002143", + "2004118", + "2003949", + "1006582", + "7002353", + "1004806", + "0006511", + "3005935", + "6003832", + "2003256", + "7003672", + "0003196", + "2003328", + "4003544", + "7004993", + "4002675", + "6002024", + "2003345", + "7004319", + "3003145", + "1003964", + "7004898", + "3004934", + "3003720", + "7004852", + "2007271", + "3004321", + "6003678", + "6004265", + "7004884", + "1005180", + "2005994", + "7003148", + "6002522", + "2006085", + "6003540", + "0004140", + "7002436", + "0005752", + "0004175", + "3005037", + "3005734", + "2004769", + "0005663", + "6003857", + "6004568", + "3004536", + "7003708", + "8001995", + "2006800", + "6004876", + "2007898", + "3004483", + "0004996", + "2007811", + "5001145", + "1004801", + "0006153", + "8003270", + "3005153", + "6002874", + "8003419", + "4004414", + "1005427", + "7003213", + "1004805", + "1005581", + "4002431", + "6003999", + "2003250", + "2004719", + "2007869", + "6004800", + "7003832", + "2005862", + "1005583", + "3004180", + "6004745", + "2006388", + "1006945", + "2006971", + "0005310", + "1006563", + "2003809", + "0003619", + "2004421", + "6002268", + "4003091", + "8001135", + "3005658", + "0006912", + "0005548", + "3006409", + "0005169", + "6003867", + "7004892", + "4002197", + "6004296", + "3004468", + "7004474", + "8002818", + "4004037", + "1006886", + "1003041", + "2004869", + "5001858", + "0005585", + "3006262", + "7003605", + "2005317", + "6002653", + "4004786", + "7002467", + "6003458", + "8001062", + "7002637", + "1005015", + "7003738", + "3003756", + "2004997", + "8002929", + "7002526", + "8003683", + "1006376", + "3003245", + "3005066", + "7003179", + "0006191", + "2003527", + "7002138", + "2006376", + "2003305", + "5001635", + "1003023", + "2007837", + "0003801", + "5001540", + "3004458", + "1006621", + "8001504", + "8001661", + "7004604", + "4003417", + "0006136", + "6002686", + "2003392", + "1003015", + "7004165", + "1003113", + "4003123", + "3006032", + "7004731", + "2003936", + "0003006", + "0005274", + "3005696", + "3006162", + "2005687", + "2003225", + "8002003", + "3006202", + "2007936", + "5001940", + "4002898", + "6004062", + "1006853", + "7004903", + "4002494", + "8003954", + "3003744", + "4002150", + "3004837", + "7004054", + "3003018", + "2006684", + "2003805", + "3004405", + "0003534", + "3003986", + "0005073", + "8003840", + "6003127", + "4002554", + "3004886", + "4003485", + "1006969", + "7002798", + "4003698", + "6002823", + "0003167", + "2005914", + "2007360", + "6004047", + "5001492", + "1006966", + "0006347", + "1006115", + "8002809", + "8003032", + "1003677", + "2004883", + "4002327", + "1003495", + "0004788", + "2007693", + "3003645", + "4002832", + "4004352", + "5001132", + "3006910", + "5001545", + "7002581", + "6003494", + "8002109", + "2004053", + "6002371", + "7003281", + "0003919", + "2007028", + "1005197", + "6004373", + "4004258", + "4002686", + "2005852", + "4003565", + "1003579", + "2005201", + "8001090", + "4003798", + "0006302", + "2007890", + "2007272", + "5001719", + "2004060", + "8001060", + "3006891", + "6002551", + "0004490", + "4002118", + "1003203", + "6004336", + "3006696", + "1004610", + "0005156", + "2007100", + "3005090", + "0004487", + "1006354", + "2004638", + "1003785", + "0003895", + "7003988", + "3006144", + "1005089", + "3004697", + "8001420", + "4004578", + "3006818", + "0004803", + "7002046", + "1006758", + "1006258", + "0005345", + "3006206", + "0003177", + "7004302", + "2007800", + "4003020", + "3004910", + "1005294", + "0006487", + "0003706", + "0004614", + "7004409", + "8001497", + "1004383", + "7003441", + "1005784", + "7003996", + "8003839", + "0005780", + "1006161", + "8003043", + "7003447", + "7004290", + "0003314", + "2006789", + "3005981", + "3003629", + "2005739", + "1004948", + "2004950", + "4003796", + "7004471", + "6002450", + "1004670", + "3006130", + "3003048", + "7004555", + "4004590", + "0003494", + "7003550", + "3005880", + "2006636", + "8003506", + "7002969", + "1003883", + "0005871", + "0003988", + "1006708", + "1004810", + "3006911", + "7002543", + "2005657", + "7002921", + "4002375", + "8002564", + "2005006", + "8001023", + "1005679", + "3003266", + "6004921", + "6004088", + "3004122", + "1004972", + "1003114", + "3006901", + "1003541", + "6002236", + "2005123", + "0006492", + "2005335", + "4002645", + "1004908", + "5001616", + "2003687", + "0006175", + "5001394", + "3003178", + "2005885", + "6003671", + "4002446", + "4002014", + "8002430", + "1006210", + "0005640", + "6002448", + "0003263", + "5001088", + "3004304", + "8003644", + "3003341", + "7004020", + "2005923", + "2005149", + "8003164", + "2004154", + "8002128", + "6004372", + "0005850", + "6002375", + "3006306", + "4004290", + "2007021", + "8003625", + "1005154", + "8003512", + "6003185", + "8002530", + "2003526", + "2004438", + "0004256", + "6002424", + "3006366", + "2006265", + "0004038", + "0005002", + "3005684", + "1004744", + "3005261", + "5001948", + "7003076", + "5001437", + "1003050", + "6002622", + "0006885", + "0005798", + "0003952", + "7002276", + "3003568", + "3005116", + "6004829", + "0004190", + "8003171", + "4003723", + "3005146", + "7003814", + "0005446", + "0005769", + "1006335", + "0004296", + "2004808", + "3006478", + "5001094", + "2003620", + "8002679", + "0005380", + "6002160", + "0005412", + "6004196", + "8001395", + "1006973", + "2004875", + "6003607", + "4002402", + "5001686", + "0006445", + "2004996", + "2005185", + "7002309", + "7004181", + "1003299", + "4004896", + "2004900", + "7003131", + "6003643", + "7004782", + "1005720", + "0004964", + "7002392", + "6003801", + "3003279", + "4003323", + "2004631", + "0004391", + "7002514", + "3005038", + "5001384", + "4002517", + "2005696", + "8003780", + "1004276", + "6003367", + "8002450", + "2004550", + "3004229", + "3006147", + "7002266", + "3003622", + "6002519", + "2006048", + "4002412", + "1003836", + "6004281", + "4003390", + "6004881", + "0004416", + "2004286", + "1006289", + "6004126", + "0004255", + "0004992", + "4002865", + "4004936", + "3006740", + "2004910", + "7003590", + "4004749", + "8001379", + "1005049", + "8002956", + "7002239", + "0005278", + "1004354", + "4004287", + "5001480", + "6004214", + "3003597", + "0004280", + "3005721", + "8001983", + "6003382", + "3006020", + "2006769", + "1004002", + "4002693", + "3005739", + "6002599", + "1005843", + "2005069", + "6002264", + "3005035", + "3005895", + "6004465", + "3003831", + "2006002", + "4003223", + "7004495", + "2006217", + "2007445", + "2006868", + "0004875", + "4004566", + "6002748", + "3003527", + "6002716", + "2003179", + "2004337", + "2007782", + "7003374", + "0006621", + "2007299", + "1005399", + "3006374", + "0004590", + "4004405", + "0004387", + "6004919", + "2005329", + "2005338", + "6003139", + "6002312", + "1005631", + "3006326", + "5001651", + "1006393", + "7004647", + "0003455", + "0005736", + "1004437", + "0005588", + "6002335", + "1003471", + "6002178", + "2007478", + "3004332", + "2003885", + "6002791", + "3003088", + "0006749", + "0005540", + "0006844", + "4003188", + "3006586", + "7002130", + "4002649", + "3003476", + "3005852", + "6002209", + "4004515", + "1006035", + "2004538", + "7004370", + "2006937", + "1004358", + "1006337", + "3006086", + "1004792", + "7003037", + "0005099", + "5001212", + "7003051", + "0004539", + "8002737", + "4004874", + "1003077", + "7003400", + "3003790", + "7003600", + "3005468", + "3004210", + "3006477", + "1005462", + "0004681", + "7004776", + "4002125", + "8001387", + "7004575", + "2007520", + "0005662", + "0003130", + "2003141", + "3004128", + "0004701", + "8001643", + "6004167", + "7002363", + "2004609", + "0004205", + "5001161", + "3003189", + "3004006", + "0004541", + "3006081", + "2005996", + "2006356", + "4003904", + "0004074", + "3004444", + "0006995", + "3005311", + "0005719", + "1005486", + "6002803", + "2007499", + "4002027", + "3003690", + "0005581", + "1006630", + "1006731", + "2005955", + "2007316", + "8001124", + "4003401", + "3004445", + "0004551", + "3006634", + "6002977", + "1005234", + "8002096", + "2006055", + "3006743", + "3003617", + "1005257", + "2003393", + "1005434", + "7003889", + "2006893", + "4003047", + "6002040", + "4002885", + "0003774", + "4002555", + "8003689", + "8002551", + "3005977", + "3005210", + "6002158", + "2004336", + "0004800", + "3003016", + "7004969", + "0006567", + "3005002", + "0006955", + "1003593", + "7003355", + "2006562", + "0005607", + "8003304", + "8003038", + "1003723", + "2005592", + "3005580", + "1006765", + "4004958", + "4004268", + "6004886", + "7004206", + "3005456", + "6004055", + "8002252", + "1006091", + "1003034", + "2006211", + "6003965", + "3006204", + "0003642", + "3005743", + "0004182", + "0006545", + "3006429", + "3003463", + "8002834", + "7004644", + "0004517", + "8002930", + "0006921", + "7002530", + "3004859", + "2007198", + "6004835", + "7004574", + "2005851", + "7004905", + "2007654", + "1005048", + "0004736", + "5001489", + "8002155", + "0005433", + "4004629", + "3005161", + "2006043", + "8003179", + "7004511", + "6004030", + "0005665", + "4004003", + "7002321", + "7004083", + "8001787", + "6004709", + "7002781", + "1004263", + "7002737", + "1003454", + "0004088", + "8003208", + "7003930", + "0004802", + "1005613", + "2007951", + "1005327", + "1006650", + "2007203", + "6003000", + "1003139", + "2003706", + "5001622", + "5001148", + "2006925", + "6004457", + "5001405", + "5001107", + "6004015", + "0005477", + "3004427", + "4003152", + "0006739", + "4002715", + "2007342", + "1005989", + "4002739", + "0005484", + "1003021", + "3005168", + "3006543", + "0006295", + "7002978", + "2003657", + "4002764", + "4002209", + "5001831", + "3003317", + "4002886", + "7003999", + "5001773", + "1006604", + "4004088", + "2004226", + "0003971", + "6004315", + "2003428", + "2007544", + "1003427", + "0006942", + "4003900", + "7004170", + "0004583", + "4003625", + "5001728", + "6002254", + "2005025", + "6003284", + "7004773", + "5001595", + "2004362", + "6002293", + "4002110", + "3003350", + "6004028", + "4003436", + "0005016", + "6003475", + "7003261", + "2007938", + "1005010", + "4004302", + "0003275", + "2003831", + "6004125", + "0003064", + "0003626", + "0003347", + "7004954", + "7003083", + "0004474", + "6002872", + "3005270", + "6003975", + "2007466", + "8001144", + "6004815", + "5001901", + "1006251", + "3003052", + "0005789", + "3003034", + "6002292", + "6003864", + "3004822", + "0004633", + "2007781", + "7002949", + "0004289", + "6003995", + "4002115", + "1005341", + "3006987", + "0006072", + "2005152", + "3006099", + "8003970", + "1003345", + "0006962", + "2004375", + "1003121", + "0003423", + "4004207", + "1006419", + "0006892", + "0004372", + "7004899", + "7002556", + "6003201", + "1003838", + "0003041", + "7004720", + "0003192", + "1003008", + "4003338", + "6004357", + "2005655", + "8003462", + "5001408", + "2005433", + "0006855", + "7004919", + "1003074", + "6003747", + "5001932", + "1003987", + "2004197", + "6002853", + "3005147", + "1003893", + "2006776", + "6003503", + "2007701", + "2007670", + "8002944", + "8002536", + "1006578", + "4004946", + "3003547", + "8003846", + "0003615", + "3004794", + "7004490", + "5001971", + "0006507", + "4004855", + "1005795", + "1004577", + "8003081", + "1004246", + "6003824", + "8002550", + "8003895", + "0005512", + "0004841", + "2006709", + "2004617", + "1003812", + "3006867", + "0006155", + "2007866", + "3003394", + "3006481", + "2007113", + "2005225", + "2007120", + "1005841", + "2005952", + "0006074", + "0005456", + "3005491", + "4004910", + "1003814", + "4004528", + "4004374", + "6003996", + "7002398", + "2004991", + "6002975", + "3004678", + "4003001", + "2004087", + "0006556", + "1006439", + "4002572", + "4003106", + "8002911", + "1003828", + "7004936", + "7004896", + "4004967", + "2003348", + "0006099", + "1004777", + "0005195", + "5001632", + "3003376", + "5001959", + "1004378", + "4004927", + "1003937", + "4004144", + "4002122", + "4004196", + "1006381", + "6003895", + "2005134", + "4003789", + "3005809", + "2006450", + "3005397", + "2007150", + "2007797", + "3006037", + "2007375", + "8001777", + "8001947", + "4003995", + "7003473", + "1004592", + "1006733", + "1004107", + "1005552", + "3005180", + "0003442", + "1003354", + "7003566", + "4004353", + "8002191", + "8003279", + "0003207", + "4003060", + "1003442", + "8003423", + "2004762", + "3006905", + "2003181", + "3005828", + "8001582", + "0004427", + "1004865", + "1006231", + "8001449", + "1004462", + "1004558", + "6002913", + "3004120", + "2005675", + "1005204", + "3005411", + "2004354", + "7004043", + "6002776", + "7002206", + "0005672", + "2006942", + "3003118", + "1003976", + "0004748", + "6002878", + "3003973", + "3004924", + "5001715", + "1004450", + "0006820", + "3005657", + "0005917", + "2007064", + "7002258", + "0006648", + "3003980", + "3005221", + "1003877", + "8002765", + "3006803", + "2003028", + "3005370", + "0005639", + "4004843", + "6004033", + "0004704", + "1006491", + "4003805", + "4003084", + "1005269", + "8003682", + "1004986", + "3004548", + "2006312", + "3006822", + "4004704", + "1005331", + "2005314", + "1006166", + "6004538", + "8002547", + "0003023", + "2006026", + "2007663", + "8002086", + "1003024", + "8001030", + "7003188", + "6003906", + "3004317", + "0004687", + "8003386", + "0004940", + "5001769", + "5001813", + "0006884", + "8002334", + "3005030", + "1004655", + "3005847", + "6003664", + "3003818", + "8003475", + "3005553", + "2004303", + "8003132", + "3005437", + "2004359", + "7002718", + "6004744", + "2007807", + "5001752", + "8001534", + "0004247", + "8003779", + "3005323", + "4002050", + "8003445", + "3006281", + "6003056", + "1003627", + "8001993", + "7002201", + "3004360", + "4003304", + "2007019", + "2004107", + "2006330", + "2006006", + "4002169", + "2005772", + "8002257", + "4004439", + "7002995", + "8002467", + "6003202", + "8002061", + "2003177", + "6003320", + "4002038", + "1003044", + "7003758", + "0003678", + "3003255", + "6002780", + "6002151", + "0006719", + "4004791", + "6002626", + "6003086", + "7004462", + "3006263", + "3003370", + "6004381", + "1005441", + "0005027", + "5001606", + "8002263", + "0004572", + "4002322", + "1006344", + "1003918", + "5001495", + "2003101", + "7004455", + "3006798", + "1003319", + "4004157", + "3005048", + "6003866", + "2004645", + "4003884", + "6003270", + "6003235", + "3006716", + "2006201", + "1006962", + "2006336", + "0005826", + "8002272", + "1006094", + "7002557", + "2004332", + "2005121", + "0004534", + "7004662", + "1005367", + "4002926", + "7002709", + "7004816", + "2003515", + "1004336", + "1004314", + "8001953", + "7004011", + "1004718", + "3005523", + "1004667", + "4004047", + "6004436", + "8001798", + "8002661", + "4004559", + "7003470", + "1005075", + "3005084", + "6002487", + "3003209", + "0003123", + "4004390", + "0003659", + "2004757", + "7003244", + "3004596", + "1004390", + "3006101", + "6003654", + "3006761", + "4002702", + "3003150", + "7003925", + "4002066", + "8001086", + "1006632", + "7003878", + "3004153", + "8003650", + "1003917", + "3004946", + "2005912", + "3005104", + "5001231", + "1004566", + "6004450", + "0005855", + "8003860", + "1005325", + "6002285", + "7004311", + "2005381", + "2007917", + "8001909", + "8003173", + "2007580", + "2004131", + "3006819", + "6004407", + "1003174", + "2003187", + "2005548", + "3005273", + "1003156", + "3005795", + "0006129", + "1003615", + "8001352", + "3005972", + "4004325", + "2005844", + "4002853", + "0004405", + "2004061", + "2007510", + "0006793", + "7002722", + "7002459", + "3006305", + "4002559", + "1005188", + "4003104", + "4004873", + "3006160", + "2006578", + "6002957", + "3006749", + "4004871", + "0005430", + "4002149", + "4002888", + "2006946", + "1003824", + "2003453", + "1003664", + "8001558", + "1003408", + "2003821", + "8003496", + "6004643", + "5001576", + "0005692", + "4002899", + "2007618", + "6002127", + "3006834", + "6004544", + "5001082", + "4002056", + "8003093", + "5001244", + "4002360", + "2005926", + "1003460", + "7002986", + "0005287", + "2004642", + "2007321", + "0004636", + "2003373", + "6004023", + "0004145", + "3003205", + "5001666", + "3006632", + "1005028", + "1004126", + "8002636", + "4003766", + "6004752", + "5001688", + "3004707", + "4002905", + "4003920", + "7002987", + "3004649", + "6002471", + "1004543", + "3006560", + "1005744", + "6004182", + "7003195", + "0004336", + "6004827", + "4002863", + "8001129", + "4002988", + "2003114", + "2004881", + "2003122", + "2003617", + "6004288", + "2005369", + "3006322", + "6002478", + "8002404", + "2004430", + "3005851", + "1006074", + "4003382", + "0004306", + "0004486", + "2007531", + "8003853", + "4003028", + "8001693", + "0004708", + "4003928", + "3003006", + "1005752", + "4003538", + "7004727", + "8001795", + "3003311", + "0004396", + "2007384", + "7002092", + "8001050", + "1006032", + "1004022", + "2004738", + "7003908", + "8002987", + "0005165", + "3003247", + "6004247", + "1006104", + "2005318", + "2006889", + "3004275", + "3006787", + "1003830", + "8002365", + "5001115", + "1003640", + "2005748", + "3005560", + "8003044", + "1005602", + "0005141", + "8002531", + "7004352", + "1004854", + "6003461", + "3005160", + "6002777", + "2003147", + "0004733", + "3005827", + "6002138", + "2004889", + "5001536", + "6003543", + "7004214", + "0003553", + "3006580", + "7004115", + "6004105", + "3006974", + "2003783", + "4004437", + "2004572", + "5001481", + "3006512", + "0006374", + "3003526", + "2004448", + "3005144", + "8001491", + "3003424", + "3003007", + "3006964", + "3004340", + "3006601", + "3005545", + "0005291", + "0003768", + "4003492", + "7003330", + "3006364", + "0006048", + "5001404", + "4004565", + "4002575", + "7002559", + "3003856", + "2004978", + "2006455", + "7004825", + "3006878", + "7002183", + "2006895", + "8003648", + "6003378", + "8003248", + "8002687", + "7002116", + "3005019", + "3006286", + "7004794", + "0006179", + "0003403", + "4002370", + "3005105", + "6004345", + "4004010", + "2005284", + "3006114", + "7003603", + "6004855", + "0005722", + "6004221", + "1004144", + "3003899", + "2007611", + "4002238", + "3006048", + "6002511", + "2004989", + "4004650", + "2003745", + "5001435", + "0004792", + "2005550", + "4004221", + "0004447", + "6003885", + "5001860", + "3004740", + "4003705", + "7003349", + "1003478", + "6002695", + "6002200", + "1005474", + "6003541", + "2003227", + "7004514", + "0005978", + "6002770", + "2006671", + "0004492", + "5001863", + "1005005", + "8003557", + "8003301", + "1003116", + "7004882", + "6002036", + "0003144", + "3006496", + "6003958", + "3003425", + "6004686", + "5001105", + "0003579", + "8002698", + "1004579", + "2004348", + "4003169", + "3004704", + "2006479", + "8002219", + "8001987", + "0004834", + "8002383", + "3003835", + "0006824", + "3005775", + "2007927", + "7003567", + "1005354", + "2006243", + "4002342", + "5001090", + "2005165", + "7004768", + "2006469", + "7004700", + "2006854", + "1003997", + "1003905", + "7002357", + "7004492", + "2005071", + "0006021", + "0006168", + "3003410", + "0003364", + "0003082", + "3005206", + "1006490", + "5001058", + "1005764", + "8003214", + "5001401", + "7002683", + "0003104", + "2007505", + "0004542", + "2005812", + "1003515", + "2006184", + "2004070", + "8001184", + "7004938", + "6004351", + "8003111", + "2003001", + "0005439", + "6004236", + "6004083", + "6004590", + "3005886", + "8001155", + "4004733", + "0004497", + "6002998", + "2004785", + "2005417", + "3003664", + "0004638", + "0005346", + "0003628", + "0004624", + "4003310", + "8001945", + "1003889", + "8003022", + "8002919", + "3005096", + "5001852", + "6003651", + "2003587", + "1003101", + "2005311", + "0006032", + "8002320", + "1004195", + "5001599", + "0006002", + "4002159", + "2007215", + "0006886", + "1004177", + "5001445", + "3005960", + "1003356", + "0006541", + "1003855", + "2005136", + "6002634", + "0004671", + "7003963", + "6003363", + "8002526", + "2006132", + "2004304", + "4003180", + "0004856", + "6004041", + "6004708", + "2007155", + "3003951", + "0006307", + "4003722", + "8003366", + "6002720", + "0005420", + "1006072", + "2007288", + "2004718", + "3003544", + "1003780", + "0004060", + "5001142", + "7002448", + "0003381", + "2006288", + "3003552", + "6004443", + "8001114", + "0006093", + "0004412", + "2003518", + "4002750", + "2005847", + "2003882", + "7004770", + "7003691", + "0003158", + "1004359", + "0004694", + "6003837", + "2006225", + "2005674", + "2006558", + "1006470", + "7004369", + "0004894", + "1004294", + "4002542", + "1006417", + "3006251", + "0006419", + "8002589", + "4002618", + "3004702", + "5001478", + "0004331", + "2006319", + "6004954", + "4002962", + "7003000", + "2003258", + "0004329", + "7003820", + "1004048", + "2004269", + "2004372", + "3003557", + "3004306", + "0003056", + "0004400", + "4003100", + "3006687", + "1004540", + "1003059", + "7002724", + "8003395", + "7002013", + "2004787", + "5001392", + "2005828", + "6002648", + "1006658", + "2005888", + "0004115", + "3005593", + "8002805", + "6003014", + "4004717", + "4002399", + "6004832", + "2006831", + "8003430", + "7003050", + "6003641", + "1006406", + "4002244", + "1004377", + "2005982", + "2007844", + "4002734", + "4002473", + "3004660", + "5001671", + "4004234", + "3005494", + "7004723", + "3004705", + "3006955", + "1005249", + "7002814", + "1003463", + "2004236", + "1005522", + "0003852", + "4002710", + "8002628", + "7004923", + "6002681", + "2004300", + "1004494", + "2005702", + "6003709", + "0005192", + "8003798", + "0006420", + "0005217", + "1006628", + "6004203", + "1006718", + "8001307", + "0004699", + "0005077", + "1003385", + "8003566", + "0005914", + "7004538", + "5001793", + "2003762", + "2007849", + "0004185", + "3004626", + "3006860", + "5001856", + "7003253", + "1003480", + "7004843", + "2005556", + "8002749", + "6003851", + "1005866", + "7003592", + "1004117", + "1003841", + "3003621", + "3006124", + "8002560", + "0003946", + "4003983", + "7003072", + "0004028", + "6003460", + "1004514", + "8002791", + "2005057", + "5001010", + "2006625", + "0003682", + "1006048", + "7003515", + "1004852", + "8001801", + "3006312", + "3003469", + "1004001", + "3005315", + "1004838", + "6003788", + "1004277", + "4004829", + "8002239", + "1005344", + "3003465", + "2003665", + "0006597", + "4002854", + "3005954", + "3004890", + "3004176", + "1004215", + "0006151", + "0004133", + "3003417", + "3006432", + "2007324", + "1004807", + "2004710", + "1005243", + "0004483", + "7003080", + "7004373", + "2005439", + "8001459", + "5001795", + "2006520", + "2007747", + "2004872", + "2004678", + "3006148", + "0006502", + "6004466", + "8001668", + "2003434", + "0003680", + "8003503", + "6003726", + "3005644", + "5001021", + "7002733", + "3006659", + "3006403", + "8002115", + "1004483", + "2005891", + "1005995", + "1005421", + "0004597", + "7003946", + "3004635", + "5001072", + "1005533", + "8002555", + "7003056", + "1004985", + "1005633", + "2004402", + "4004309", + "0005825", + "2003397", + "7003767", + "1005865", + "4003972", + "0006582", + "4002167", + "0003540", + "6004268", + "3004996", + "2006019", + "3005736", + "4003482", + "3003447", + "4002126", + "1004506", + "3003221", + "3004998", + "2004227", + "5001645", + "4003810", + "3006981", + "3005145", + "1005713", + "3003650", + "8002711", + "2006528", + "1003501", + "3005000", + "3004851", + "3003365", + "1004989", + "8002229", + "3005430", + "7003779", + "2007087", + "8002281", + "6003134", + "1004530", + "0005372", + "2003466", + "3006442", + "0005800", + "4002588", + "4002945", + "8001857", + "6004038", + "8001147", + "7002352", + "1004756", + "1003038", + "7002432", + "4002063", + "6002661", + "2003301", + "0003305", + "5001568", + "4002925", + "7004072", + "0006030", + "6003038", + "0006075", + "2003445", + "6004653", + "8002894", + "8002085", + "1006304", + "1003884", + "2006363", + "1006719", + "4003623", + "8003157", + "6002461", + "2006413", + "2007528", + "2006446", + "2007377", + "2007221", + "3005690", + "3005274", + "1005083", + "1005888", + "2005009", + "6004656", + "0004950", + "0006187", + "0004785", + "3006828", + "8002112", + "4004521", + "2004398", + "1004603", + "1004044", + "3006240", + "7002323", + "2007840", + "2007600", + "3003902", + "8001412", + "7003614", + "1003052", + "0003417", + "2004813", + "8002565", + "3004002", + "2005420", + "1005839", + "4004748", + "0005447", + "2004415", + "3005980", + "0005028", + "4004288", + "3003275", + "3005384", + "4003470", + "8001178", + "6002392", + "3005204", + "6002053", + "2003009", + "0006270", + "4004511", + "8001194", + "4002884", + "1005260", + "3004171", + "0006055", + "0003941", + "6003351", + "3005878", + "2003851", + "1003466", + "2003698", + "6003045", + "8001852", + "7003279", + "6002728", + "2007238", + "3005465", + "7002537", + "2007996", + "3003090", + "7002004", + "5001182", + "8002045", + "1005793", + "8003487", + "3005840", + "2006252", + "0004530", + "7004432", + "1006835", + "6003326", + "0006057", + "6002922", + "7002734", + "2004676", + "0003108", + "6003111", + "8003225", + "0006625", + "8003980", + "2003340", + "3003131", + "3003185", + "3004760", + "3006102", + "4002357", + "8001835", + "7002726", + "2007749", + "7004840", + "3004962", + "3006675", + "2007171", + "2003622", + "0006566", + "7002743", + "8002119", + "2007508", + "1003866", + "6004255", + "6002712", + "4002807", + "6004003", + "2005697", + "0003754", + "0006477", + "3003081", + "3005558", + "3005246", + "2006441", + "7003863", + "0005112", + "2007054", + "2005686", + "8003035", + "4002020", + "8003717", + "0003863", + "7002492", + "6002189", + "0003365", + "1003062", + "4003541", + "6002074", + "8003784", + "0004257", + "7003724", + "4003110", + "8003587", + "7002102", + "2004429", + "2003671", + "4004470", + "2006490", + "7004566", + "6002818", + "3005611", + "0003663", + "0004153", + "2006966", + "0006362", + "8003704", + "1006059", + "1005946", + "8001167", + "2004166", + "6003154", + "2003003", + "6002258", + "2004563", + "5001397", + "6004429", + "7003097", + "3006837", + "8002172", + "2003772", + "3004025", + "8001634", + "3004356", + "5001989", + "3003167", + "1003241", + "0006464", + "4004329", + "1004968", + "6002125", + "2005527", + "2005928", + "7004376", + "2007493", + "4003634", + "8002734", + "4003644", + "4004272", + "7003561", + "4002488", + "4002864", + "4004334", + "1003711", + "0004691", + "1006545", + "6004712", + "4003666", + "4003764", + "0005932", + "2006918", + "0003028", + "5001914", + "1005575", + "6004489", + "6003170", + "0004831", + "4003480", + "8003531", + "7002837", + "1003496", + "1003420", + "6003764", + "1003856", + "4003750", + "3005708", + "1005143", + "1006413", + "4002761", + "3006346", + "2003289", + "7003868", + "8002620", + "4004817", + "7002957", + "8003660", + "0006246", + "8001076", + "3003708", + "1005657", + "8003811", + "8001973", + "1003590", + "7002315", + "3006329", + "7004285", + "7002355", + "4004560", + "0003004", + "2003753", + "1004864", + "7003803", + "3003585", + "1004922", + "8002757", + "0005047", + "3004719", + "2003735", + "3003992", + "2005505", + "2005033", + "0006669", + "3004675", + "0003148", + "6003623", + "2004490", + "0006583", + "5001091", + "2005128", + "7002523", + "6004418", + "5001124", + "6002219", + "6004510", + "4003148", + "4002837", + "3006252", + "4002257", + "1005702", + "8001636", + "6003993", + "1006213", + "4002579", + "3005791", + "1003683", + "7002192", + "6004896", + "2004833", + "2005656", + "1003570", + "2007451", + "0005981", + "1005119", + "7003573", + "4003693", + "1005855", + "1005976", + "4003586", + "1004687", + "3003387", + "3003766", + "2004810", + "4003146", + "7003190", + "7002456", + "7002772", + "3004231", + "4003816", + "8001525", + "4002777", + "3006851", + "3006726", + "5001265", + "0006310", + "0005760", + "8002106", + "3004808", + "4003727", + "0005628", + "1005517", + "0005611", + "6002652", + "7004536", + "2003756", + "4004376", + "3004846", + "7004539", + "1004469", + "0006083", + "2005388", + "7003442", + "4004781", + "2007804", + "0005496", + "2006235", + "2003941", + "2006843", + "1006937", + "2003118", + "0004198", + "2007256", + "2006354", + "2006661", + "1006271", + "1004521", + "2006437", + "2007395", + "4003947", + "2007098", + "3006268", + "4002334", + "0005705", + "1003009", + "4003270", + "0004096", + "2006834", + "4003034", + "1003004", + "5001444", + "6003217", + "2003893", + "0006800", + "3003934", + "0006849", + "3005663", + "4002648", + "4003183", + "6003844", + "0003914", + "4004996", + "8002903", + "0005122", + "2007984", + "3004956", + "2005956", + "5001062", + "2003819", + "1004815", + "8002681", + "1004270", + "7002558", + "8002770", + "2006435", + "1003379", + "0006674", + "8003310", + "1004302", + "3004437", + "3004616", + "1004196", + "1006862", + "3003987", + "8002029", + "7004211", + "0003691", + "2006221", + "2003054", + "2006284", + "0003201", + "6004818", + "7004926", + "6002595", + "1004637", + "0003921", + "5001239", + "3006760", + "6004210", + "7002962", + "8003667", + "0005582", + "3006127", + "3005672", + "4004185", + "8002762", + "5001100", + "4002395", + "3004597", + "2003525", + "6003357", + "2005905", + "2004247", + "7002525", + "7004201", + "0003168", + "7004174", + "2006546", + "6003200", + "7002059", + "8003299", + "4002002", + "7004028", + "3006502", + "7004854", + "0003845", + "5001001", + "3004260", + "4004078", + "2007725", + "2004201", + "1005114", + "7003061", + "5001303", + "6002034", + "2006339", + "2005628", + "3004280", + "1004504", + "8003876", + "2006892", + "2007862", + "2006699", + "1006834", + "6003215", + "3004218", + "6002038", + "2004102", + "4004719", + "1005732", + "2004225", + "7002081", + "0006819", + "8002576", + "8001428", + "4002482", + "3006817", + "4002636", + "7003797", + "2004529", + "5001426", + "2007491", + "8001994", + "1003580", + "1006148", + "2006552", + "2003014", + "3006216", + "3004246", + "1006600", + "7003698", + "0005270", + "3003938", + "2003281", + "1006416", + "7003031", + "7002199", + "1003316", + "7002014", + "2005883", + "5001078", + "3003955", + "3003875", + "2007886", + "6003620", + "3003656", + "1006346", + "4003621", + "5001242", + "7004529", + "1004148", + "2004897", + "0005828", + "4003142", + "3003589", + "4003670", + "0006877", + "2006866", + "3006655", + "3005141", + "6002584", + "2003718", + "2004019", + "0004663", + "6002871", + "4004818", + "4002091", + "8001796", + "1003957", + "1006135", + "2006844", + "2004543", + "2005857", + "8001349", + "0005500", + "6004789", + "0006712", + "8001738", + "8003633", + "7004752", + "4003839", + "1006520", + "7003436", + "6003360", + "1005636", + "4003150", + "3003371", + "7004168", + "8003293", + "7002420", + "4004141", + "2004736", + "3004276", + "5001218", + "1006190", + "4003484", + "3003002", + "0006876", + "4003201", + "1003415", + "7004173", + "6004902", + "1003040", + "0006700", + "4003828", + "4002896", + "1003506", + "2005269", + "8001859", + "8002322", + "8001565", + "2006644", + "3004670", + "8002413", + "2007196", + "1003744", + "0003931", + "6002294", + "7002047", + "0005469", + "0006506", + "7002028", + "7003985", + "0004850", + "0006572", + "1004387", + "6002659", + "3004884", + "1004785", + "4003944", + "7002635", + "1004468", + "8003855", + "1005821", + "0004357", + "8003815", + "8001832", + "8003901", + "6004579", + "1004635", + "3005225", + "6002623", + "3005664", + "3005823", + "8003978", + "6002641", + "8002569", + "2003077", + "2004754", + "8001477", + "4004753", + "2005635", + "1004102", + "0003449", + "2003496", + "6002232", + "6004983", + "5001211", + "3006646", + "2004958", + "0003265", + "6003276", + "6003696", + "7002511", + "4004248", + "8003147", + "2004308", + "8001644", + "0006026", + "3006988", + "6004110", + "0005918", + "4004622", + "0006115", + "8001070", + "6003734", + "1003175", + "1004365", + "2005173", + "3004447", + "0004563", + "3005860", + "2004824", + "0003399", + "3003826", + "4003130", + "2006660", + "8003075", + "7002397", + "2007018", + "0006258", + "1004337", + "2005826", + "1004375", + "4003852", + "3005855", + "8001720", + "3005742", + "1004240", + "7004594", + "2006674", + "3005018", + "6002556", + "1003061", + "2004412", + "6003093", + "3003893", + "5001585", + "3006198", + "2003473", + "2005766", + "7003165", + "5001310", + "1006302", + "4004370", + "0004925", + "6003325", + "2005539", + "3004098", + "2005588", + "3003959", + "0005347", + "7002327", + "4003153", + "8001570", + "7002110", + "5001652", + "0004431", + "3006025", + "1006913", + "1004005", + "0003165", + "6002112", + "4002744", + "6004045", + "6002794", + "1006540", + "3005830", + "2005872", + "1005214", + "0006200", + "4004812", + "1004575", + "4002954", + "2007315", + "2004484", + "0005644", + "8003610", + "3006023", + "4004498", + "2005859", + "4002290", + "6002255", + "1003767", + "3006913", + "1003958", + "8001862", + "0005594", + "1004893", + "7004706", + "6002769", + "3004797", + "2004517", + "3006435", + "6003557", + "4002633", + "3004413", + "2007760", + "1004234", + "8003597", + "1004690", + "2006195", + "0005001", + "6003581", + "2004655", + "3004653", + "8003207", + "7003235", + "0005815", + "3003634", + "4002439", + "1003728", + "3006952", + "1003127", + "2003997", + "0005526", + "2003873", + "2007758", + "2006859", + "4003244", + "7002967", + "0006462", + "7002892", + "5001356", + "8001253", + "1003169", + "1004261", + "2004155", + "0005743", + "6004844", + "1006858", + "1003881", + "3003213", + "8002596", + "0006774", + "2007983", + "7004665", + "1004323", + "2003343", + "3005979", + "0005831", + "8001399", + "7004928", + "4002258", + "8002838", + "7003644", + "7004534", + "7002108", + "2006731", + "2005736", + "8003832", + "7003114", + "0003046", + "1004146", + "1005864", + "7004885", + "8001710", + "6004944", + "7002292", + "7004353", + "4002216", + "1004795", + "3005671", + "3006228", + "3004573", + "6003112", + "4003850", + "3005722", + "2003601", + "2004874", + "3004831", + "2003944", + "8003402", + "1003526", + "0003853", + "6003672", + "8002499", + "4004194", + "6002792", + "8002338", + "3006383", + "8002042", + "2003391", + "4003908", + "2003442", + "3004840", + "1004839", + "8002122", + "8002166", + "7002766", + "2005751", + "4003422", + "1003256", + "3004542", + "0003637", + "7004758", + "0006428", + "0006835", + "7002091", + "1003115", + "3003201", + "2003689", + "8003213", + "7002009", + "2005265", + "8001576", + "0003256", + "0006255", + "3004497", + "4003749", + "3005898", + "3005897", + "8002005", + "2006876", + "8002423", + "7003589", + "7003380", + "4004640", + "2003162", + "4002457", + "2005305", + "8002520", + "7004876", + "4002995", + "0004509", + "2005337", + "7004130", + "0006617", + "8003848", + "8003115", + "3004544", + "0005998", + "1003484", + "0004262", + "2006793", + "6002367", + "7004659", + "2007791", + "1004028", + "0006469", + "3004876", + "7002800", + "3004690", + "7004735", + "0005074", + "3005916", + "4003987", + "0004111", + "4004689", + "1004763", + "2004967", + "0006007", + "4003172", + "8002500", + "8003128", + "8002069", + "4002454", + "3005331", + "5001986", + "6004609", + "2003543", + "0004381", + "1005521", + "6003022", + "6003917", + "7004590", + "1005122", + "4003818", + "6003740", + "1005360", + "0003116", + "6003307", + "4003721", + "3006116", + "6003926", + "1003648", + "6004445", + "1006339", + "3005214", + "6004604", + "8001371", + "2005304", + "3005447", + "2006930", + "4004713", + "6003843", + "1006100", + "0006316", + "2007218", + "6002513", + "1003494", + "6002735", + "8002842", + "4004545", + "4004518", + "2003161", + "4002678", + "8001298", + "3005378", + "7004833", + "1004793", + "1003530", + "8001465", + "6002811", + "1003800", + "2004856", + "2006086", + "0006904", + "1005141", + "4003324", + "7003817", + "3006444", + "3005532", + "6004528", + "7003815", + "8002793", + "3005185", + "8002333", + "8003891", + "1005332", + "3006936", + "3005239", + "8003765", + "6002555", + "6003977", + "3005242", + "1006732", + "2007851", + "1003996", + "8001730", + "7004111", + "0004062", + "7003866", + "3004887", + "0006413", + "0006547", + "4003305", + "7002140", + "2005281", + "2003110", + "1003292", + "8001245", + "6002238", + "1005615", + "2004029", + "1003600", + "3004031", + "0005992", + "2006191", + "3004328", + "0005244", + "8003702", + "3006191", + "0004998", + "0004980", + "3004459", + "0004562", + "0004271", + "1004587", + "5001598", + "8001608", + "2005979", + "5001630", + "3006637", + "7004157", + "2005391", + "8002630", + "0006993", + "6003531", + "0003563", + "7004532", + "7003912", + "4004279", + "7003884", + "6002586", + "1005913", + "0004669", + "1005782", + "8003199", + "7003360", + "5001371", + "2005963", + "2007756", + "8003996", + "0003980", + "6002672", + "2005679", + "2007577", + "8002640", + "1003721", + "2005769", + "2003253", + "5001893", + "7004448", + "4002195", + "0003897", + "0004591", + "7002502", + "8001046", + "4004090", + "0005993", + "3003573", + "0004911", + "0004354", + "4004200", + "4004887", + "6002826", + "8003594", + "6002849", + "0003689", + "0004476", + "6004517", + "1003285", + "3003625", + "6004890", + "4004596", + "1006025", + "1005415", + "6004403", + "4003776", + "0006440", + "6003781", + "1004116", + "2006408", + "2006063", + "1006817", + "4003638", + "6004594", + "7002704", + "4002212", + "1004389", + "2004491", + "7003703", + "6002650", + "3003244", + "2003835", + "3004865", + "2003894", + "6004750", + "3006875", + "0005004", + "1004549", + "8001872", + "2005476", + "7003308", + "2007067", + "8002831", + "5001798", + "4002460", + "3006483", + "6003009", + "3006122", + "1004143", + "8003778", + "1006989", + "2007407", + "0006735", + "4004170", + "2006368", + "6004783", + "6002346", + "6004564", + "2004271", + "1004553", + "0004288", + "0005290", + "4003739", + "2003483", + "0005293", + "1006281", + "2005307", + "6002549", + "2004571", + "3005530", + "3004756", + "3006123", + "3003225", + "7002657", + "6002244", + "4003332", + "1005565", + "6002087", + "1006852", + "3006278", + "2004685", + "3004708", + "7002516", + "8003906", + "8003870", + "0005355", + "7002069", + "0004318", + "8001836", + "0005256", + "4004355", + "4003663", + "3004674", + "2005558", + "6004825", + "2003439", + "8003124", + "7004018", + "4003467", + "3005061", + "7002062", + "3004983", + "7003256", + "8002921", + "7002754", + "4003247", + "6002325", + "4003779", + "4004398", + "6004225", + "4002194", + "6003969", + "7003026", + "0006271", + "0006826", + "3003274", + "0004073", + "2004110", + "2004915", + "4003008", + "5001519", + "2005232", + "1006454", + "6003591", + "2007244", + "0004598", + "0004340", + "1003303", + "0003892", + "6004382", + "4004393", + "7004468", + "6002155", + "7003318", + "0005449", + "7004354", + "2007776", + "0006327", + "1004856", + "6002734", + "0004934", + "4004669", + "4004981", + "1006774", + "4004765", + "2007388", + "2005740", + "0004348", + "2005712", + "0005239", + "7004058", + "8002609", + "6002153", + "4004999", + "3003470", + "7004504", + "1004823", + "6003097", + "7002433", + "7002371", + "3004637", + "6004680", + "3005183", + "4002464", + "1006160", + "4003287", + "3006176", + "4004643", + "0006706", + "8003800", + "7003262", + "2007101", + "6003032", + "5001930", + "1006522", + "2004006", + "3004035", + "0006517", + "1004376", + "3003787", + "0005529", + "2005292", + "0004231", + "5001320", + "5001924", + "2003905", + "2006410", + "2004055", + "8003266", + "0003911", + "2003544", + "1006400", + "8002519", + "2003814", + "7004005", + "6004903", + "3006639", + "0003098", + "2003214", + "6003982", + "6002096", + "0004644", + "0006668", + "4004150", + "7003336", + "7004267", + "6002968", + "7004506", + "2005072", + "4004978", + "2006554", + "0003521", + "6004978", + "3005300", + "0006241", + "1004925", + "1003823", + "2005666", + "8003356", + "4004425", + "5001806", + "3003290", + "1005069", + "6003081", + "4004463", + "4004705", + "4002082", + "6004622", + "1005191", + "2005652", + "6004391", + "0003661", + "3004103", + "4004180", + "6003692", + "0005573", + "2007695", + "1006280", + "3004843", + "8003927", + "1005813", + "5001390", + "2004506", + "3005825", + "4004921", + "2007156", + "1003939", + "3003322", + "0004499", + "8002344", + "4004341", + "7002282", + "2004149", + "4004100", + "8001757", + "4002576", + "0004223", + "0005624", + "2003767", + "3006321", + "0004897", + "7003024", + "3004177", + "0003889", + "3004269", + "3006084", + "3006438", + "7003220", + "2006203", + "1005313", + "1005690", + "3005764", + "1004976", + "3003306", + "0005593", + "3005646", + "8003791", + "1004638", + "3006624", + "4002720", + "1005625", + "1005101", + "8003555", + "2004321", + "2007752", + "7004500", + "0003224", + "0005951", + "7003074", + "8003161", + "1004184", + "6002249", + "2003148", + "8003607", + "0003817", + "3005849", + "1003555", + "4003222", + "2006259", + "2004524", + "2004252", + "6003037", + "0003019", + "7003665", + "4003218", + "7002222", + "2005813", + "1003170", + "3003710", + "1006068", + "8002525", + "0003233", + "4002286", + "0003330", + "6004359", + "0006063", + "1003236", + "8001430", + "2005680", + "2005661", + "0003568", + "8001604", + "4003347", + "0005924", + "1006410", + "1006748", + "7002621", + "1006264", + "3005332", + "8002006", + "7003219", + "3003057", + "2004035", + "1005648", + "6003158", + "3003431", + "7002425", + "6003356", + "7003826", + "0004501", + "2005186", + "7002958", + "1006437", + "0005615", + "1004053", + "3005862", + "0006023", + "2006696", + "4002758", + "7004239", + "4004966", + "0006606", + "0004004", + "1003235", + "1006291", + "1003974", + "2004834", + "1004800", + "4003085", + "0004046", + "2006721", + "3006460", + "7004037", + "1004939", + "0005686", + "7002813", + "0005538", + "0004425", + "3006484", + "0004181", + "1004843", + "2005783", + "8001473", + "2004416", + "2003749", + "5001535", + "0004658", + "4002986", + "2007757", + "3005241", + "8002709", + "8001378", + "1004544", + "4002481", + "8001701", + "1006211", + "2004259", + "1005041", + "7002717", + "7002890", + "6003526", + "3006872", + "8002422", + "2005965", + "3006342", + "4003220", + "3003581", + "2004964", + "2007062", + "5001983", + "1006695", + "8002780", + "2006268", + "4002808", + "4002109", + "1004631", + "1003336", + "2004610", + "3005748", + "3003882", + "2005797", + "7002510", + "2007281", + "4003369", + "0003864", + "1003039", + "5001730", + "1005256", + "2003043", + "0005687", + "2006224", + "2003768", + "8001196", + "1006569", + "3005417", + "2003572", + "1006345", + "3005305", + "3005584", + "3003920", + "2003313", + "6002463", + "8001278", + "8001461", + "3003111", + "7004680", + "8003211", + "1006034", + "2004208", + "8002653", + "3006410", + "2003531", + "5001864", + "0003710", + "3004841", + "3006019", + "2005062", + "5001225", + "2006508", + "4003792", + "4002106", + "6004693", + "1006075", + "8002658", + "7002259", + "0006605", + "1003850", + "0003218", + "8002014", + "0004434", + "3004294", + "0005414", + "2007875", + "3003590", + "3004455", + "7003934", + "4004465", + "0006607", + "3003985", + "4002805", + "1003697", + "2004351", + "1003537", + "3003335", + "6003346", + "8002343", + "0006532", + "3005829", + "8002656", + "6003199", + "8001599", + "4003395", + "1003290", + "4002661", + "7004421", + "4002398", + "0003386", + "2007535", + "5001945", + "8002710", + "6004718", + "3003450", + "6004077", + "1004630", + "2007665", + "3006931", + "4002391", + "4004881", + "3004918", + "2003993", + "2007630", + "0003101", + "1004967", + "3006279", + "0004200", + "1003714", + "6004190", + "8001396", + "4003412", + "0006273", + "6003421", + "7002477", + "7002044", + "5001827", + "6003328", + "1005825", + "6004173", + "4002084", + "2005889", + "0004872", + "4002314", + "2004124", + "3004923", + "2003509", + "6004669", + "1004471", + "1006958", + "1003811", + "3004136", + "1004497", + "2005808", + "7003721", + "6003779", + "2005651", + "1003081", + "2004690", + "2007953", + "6003341", + "7003679", + "2003261", + "3003047", + "1005046", + "4002453", + "0003591", + "7004038", + "1003949", + "3003442", + "4004819", + "3004350", + "7003457", + "1006661", + "8002989", + "1004526", + "1003930", + "2003571", + "2004667", + "8002580", + "0005054", + "7004293", + "4002161", + "0006341", + "3006712", + "3004265", + "7003469", + "1005811", + "1005482", + "2005218", + "0004274", + "3006710", + "7004941", + "1004199", + "5001183", + "0003447", + "6002944", + "4004006", + "0003361", + "0004672", + "6003114", + "7002749", + "6003176", + "2005229", + "6003758", + "0004078", + "7004832", + "1003066", + "1006407", + "2007666", + "2006257", + "7002181", + "2006643", + "8003427", + "4002043", + "2007401", + "3004879", + "2004526", + "0003349", + "5001660", + "4002252", + "2003220", + "0006085", + "1006198", + "7004521", + "4004582", + "1006517", + "8001258", + "0006037", + "3006668", + "1006033", + "8003739", + "3005423", + "2006486", + "1003923", + "2003096", + "8001664", + "2007406", + "4004099", + "7002935", + "2004632", + "3005107", + "2007336", + "3005398", + "8002792", + "2004581", + "5001008", + "6004347", + "2007229", + "0003784", + "7004078", + "0004837", + "2005525", + "2006903", + "4004364", + "3003198", + "2004888", + "6004681", + "2006538", + "1003118", + "1003151", + "7004889", + "3006729", + "1004284", + "5001332", + "0005118", + "3006950", + "7004089", + "2004984", + "2006598", + "0003527", + "6004261", + "2005174", + "0003015", + "1004415", + "7002387", + "5001358", + "4002878", + "4003652", + "0006167", + "7002853", + "8001335", + "0006114", + "8001043", + "2006088", + "6004056", + "0004823", + "7002416", + "4002574", + "8001791", + "3003863", + "1006499", + "1006462", + "8003886", + "0006039", + "6002616", + "6003870", + "6002905", + "4002915", + "0004026", + "3005529", + "4004599", + "5001905", + "1006537", + "8001910", + "3006592", + "4002641", + "8002328", + "1005544", + "1005025", + "8001227", + "5001359", + "1004814", + "0004437", + "8002996", + "8001748", + "6002674", + "1005182", + "1006857", + "4003856", + "5001484", + "8001828", + "4002057", + "0004014", + "8002282", + "7004908", + "8003338", + "0004688", + "1003694", + "6004981", + "8001236", + "0004382", + "2007608", + "3005022", + "6003667", + "1003757", + "8003857", + "1004426", + "8003926", + "3006651", + "6003869", + "2006581", + "3003196", + "4003687", + "3004186", + "4003768", + "4002535", + "0004648", + "3005619", + "3006431", + "2007589", + "0006887", + "4004510", + "3006894", + "2006898", + "1003476", + "4003144", + "4004523", + "0006384", + "2005353", + "4004711", + "2005742", + "4002556", + "7002475", + "1004750", + "6002119", + "6004447", + "8001766", + "0006718", + "6002822", + "4002493", + "3004982", + "4003475", + "3005901", + "2006462", + "1003387", + "1003487", + "2004837", + "4002380", + "8002094", + "0004846", + "1005801", + "6002431", + "7002419", + "0006123", + "5001190", + "3006166", + "3006521", + "8002664", + "8001016", + "1005656", + "1006682", + "3005615", + "8002348", + "0004919", + "3005005", + "8003920", + "2003072", + "1004711", + "1006927", + "6004170", + "0004565", + "2006131", + "1005059", + "6003703", + "7003067", + "3003839", + "3005202", + "1005601", + "2006253", + "7004479", + "0006106", + "1003645", + "2007153", + "0003020", + "7004703", + "6004926", + "8003854", + "4003950", + "2005492", + "6002638", + "5001089", + "2005468", + "6004698", + "0004238", + "2003100", + "2004278", + "4002810", + "0006130", + "3005893", + "1004674", + "0004943", + "7003622", + "0003702", + "7004807", + "6003189", + "0004608", + "7002651", + "0003249", + "8003117", + "0003518", + "6002021", + "1004175", + "8002158", + "3004175", + "2004281", + "2004202", + "7003903", + "3003490", + "3004957", + "0005126", + "3004490", + "4002096", + "0005834", + "2007498", + "2006882", + "8003170", + "1005343", + "7003204", + "0006304", + "8001157", + "7003759", + "1006535", + "6004715", + "7003651", + "2004180", + "4003720", + "2005869", + "8002431", + "2003385", + "4002592", + "0004506", + "4004524", + "4002605", + "8001185", + "4004802", + "8002331", + "8001884", + "3004296", + "8001485", + "2003702", + "4003866", + "1003026", + "3004343", + "3004302", + "7003124", + "1004257", + "8001513", + "4004097", + "6002248", + "0004916", + "0006973", + "7003514", + "6003149", + "4004266", + "7002836", + "7002605", + "0003500", + "5001482", + "3003732", + "3004654", + "1004227", + "6002467", + "8001831", + "2003421", + "8003036", + "2006959", + "4004892", + "7002426", + "2006970", + "6003802", + "2004031", + "2005570", + "1004169", + "7003608", + "1003956", + "6002358", + "1004379", + "3005149", + "7002011", + "2003795", + "4003744", + "2007260", + "2007159", + "2006973", + "6003388", + "4003664", + "1005156", + "0003535", + "6003935", + "8002447", + "3003132", + "1006811", + "0003601", + "6003459", + "0005131", + "0005576", + "6003558", + "2004312", + "8002040", + "1005556", + "8003474", + "3005269", + "3004224", + "2004296", + "2005298", + "6004024", + "2006465", + "4003567", + "1003628", + "0004263", + "0003679", + "7002985", + "1006550", + "2006119", + "3003409", + "5001353", + "2003889", + "3006485", + "2007075", + "8003017", + "4004917", + "2005150", + "7004964", + "0006103", + "2007899", + "2003743", + "0004117", + "0006259", + "4003729", + "7003300", + "8002024", + "6004961", + "2006174", + "0003040", + "6004319", + "4003055", + "8003371", + "6002086", + "3005001", + "2005131", + "8003964", + "1005935", + "8003977", + "1003371", + "0005898", + "0005945", + "2003080", + "4003210", + "0005510", + "2006618", + "8003847", + "8001740", + "3005524", + "1006229", + "7004254", + "8003958", + "6002271", + "1003886", + "3005874", + "1003254", + "3004238", + "4002142", + "4002213", + "4003512", + "3004546", + "1006071", + "4004068", + "7003173", + "7003917", + "2007867", + "0005933", + "3003282", + "2007108", + "6002284", + "1005933", + "7004085", + "8002161", + "0005599", + "0003697", + "2005677", + "0005959", + "2005810", + "2007333", + "7002123", + "4003819", + "4004612", + "0003055", + "7003041", + "1004642", + "6002948", + "5001753", + "7003806", + "6002736", + "8001247", + "2007818", + "8003428", + "2004212", + "4003182", + "6003066", + "2007575", + "8003769", + "3005770", + "5001342", + "1005401", + "5001465", + "2006103", + "3003230", + "4003129", + "7002965", + "2005482", + "3006610", + "2006679", + "2005776", + "6002224", + "8001282", + "6003293", + "6003321", + "3005704", + "1004983", + "8001874", + "6002992", + "7003011", + "4003769", + "0003293", + "3003905", + "4004403", + "1003279", + "2006687", + "6004009", + "1005890", + "6002590", + "0003451", + "6003936", + "0004092", + "4002083", + "3003626", + "8002871", + "3003054", + "6004461", + "8002306", + "2006494", + "0004842", + "0003945", + "7004304", + "4004189", + "1004742", + "8002973", + "6002164", + "4002887", + "3005719", + "6003480", + "0006121", + "7004755", + "5001888", + "8002591", + "2004558", + "0004874", + "3005359", + "1004738", + "3004212", + "6004737", + "3005761", + "8002174", + "7002073", + "4004109", + "6003252", + "2004806", + "1006729", + "0005613", + "2003523", + "0005989", + "7003465", + "3004067", + "0003516", + "1006310", + "1006044", + "8001407", + "6004491", + "2006105", + "0003841", + "0005983", + "2003371", + "4004654", + "0004214", + "4002664", + "5001575", + "2003309", + "6003408", + "3003395", + "5001668", + "2004330", + "4003833", + "1005128", + "0006397", + "3005163", + "2004680", + "0003145", + "4004481", + "0005804", + "7004831", + "8001256", + "3006425", + "3006474", + "6004519", + "6004212", + "6002614", + "2005289", + "1005095", + "0003161", + "3003403", + "6003512", + "4004469", + "0003427", + "1003978", + "0003045", + "0004535", + "3003872", + "7003810", + "0003044", + "2003721", + "2004081", + "0003244", + "2005658", + "0004637", + "1003763", + "0005870", + "6004195", + "0005503", + "7004682", + "3005512", + "3005648", + "2004732", + "1003781", + "8001288", + "3003799", + "5001449", + "0003060", + "8001761", + "2005793", + "2004233", + "4003339", + "5001551", + "4003193", + "6004575", + "4002979", + "7002608", + "3003753", + "8003182", + "1004399", + "6004394", + "5001910", + "2005215", + "0005113", + "2007690", + "3004872", + "7003294", + "4003157", + "1005859", + "4002760", + "1004304", + "3005493", + "7002740", + "4004553", + "4002522", + "2003610", + "1005537", + "3004062", + "2003648", + "3004072", + "1003652", + "7004367", + "1005637", + "1003248", + "3005673", + "0004322", + "4004673", + "2003297", + "3006193", + "2005984", + "7003155", + "7003352", + "1005446", + "8002021", + "5001451", + "7002602", + "0003341", + "3004355", + "1006846", + "4003279", + "1005643", + "0003047", + "3004570", + "1006154", + "6003612", + "2005458", + "7003719", + "1003426", + "2003498", + "7003838", + "8002336", + "1004103", + "0006557", + "4004242", + "0006211", + "1004904", + "3003921", + "3004667", + "2004268", + "8002505", + "7004461", + "4002388", + "0004041", + "2003116", + "1003367", + "4004853", + "0006148", + "8001913", + "7003869", + "2003634", + "7002316", + "8001886", + "0004619", + "2006317", + "8003620", + "2007870", + "0004946", + "8003042", + "7003581", + "7002249", + "0003112", + "1003803", + "0005367", + "2006957", + "8003090", + "6003082", + "3004908", + "8001682", + "0006758", + "7004991", + "7003418", + "4002998", + "1006052", + "6003766", + "7003753", + "2006374", + "4002305", + "6002819", + "4004663", + "3005982", + "0004883", + "3004845", + "3005735", + "2007345", + "2007792", + "6003091", + "1004832", + "0005482", + "5001423", + "4004151", + "6002057", + "3005308", + "1006359", + "0004172", + "8003880", + "6003815", + "1006101", + "5001200", + "1006865", + "4004761", + "6004522", + "1005022", + "3003385", + "3006042", + "0006526", + "1006917", + "7004643", + "0006453", + "3004073", + "4002676", + "4003661", + "7003829", + "8003859", + "4004479", + "2007487", + "3004673", + "3004568", + "8002298", + "1003539", + "0004794", + "7002572", + "4003381", + "4002221", + "1004914", + "0005626", + "1006926", + "1003837", + "6002104", + "0003204", + "1003443", + "4004462", + "0005463", + "5001680", + "3004361", + "7002663", + "7003170", + "1004923", + "0003362", + "7002335", + "8002016", + "2006509", + "3006439", + "7004347", + "6003610", + "2007871", + "2006688", + "1003199", + "7004348", + "4004135", + "6003634", + "3003101", + "8003007", + "1004485", + "6002017", + "6003874", + "3006330", + "4002222", + "0005544", + "4003973", + "3005329", + "1006610", + "6003162", + "1006638", + "2004697", + "7003782", + "6004109", + "0003624", + "1006089", + "6002802", + "4003046", + "0005975", + "2005870", + "1006143", + "8001665", + "1004611", + "6002477", + "2006909", + "2004080", + "5001834", + "4002632", + "3003099", + "2005479", + "1003043", + "0006972", + "8003144", + "3004964", + "2006725", + "3004075", + "6004748", + "6004400", + "3003402", + "6004736", + "5001443", + "1006465", + "3006883", + "4002521", + "1005612", + "5001862", + "8003204", + "8001240", + "2006910", + "6002537", + "7004457", + "2006736", + "4002540", + "2003645", + "1004769", + "2004094", + "2003322", + "0006225", + "1004952", + "8003082", + "4004282", + "2007038", + "5001122", + "7004691", + "6004878", + "2007326", + "0004912", + "2004802", + "8001697", + "3005887", + "2004600", + "0004099", + "1004329", + "4002123", + "8001040", + "8002448", + "2006521", + "1006502", + "0005550", + "0003302", + "2006076", + "8003998", + "1004133", + "7004493", + "8001100", + "6002840", + "2006405", + "8002259", + "6003312", + "2005967", + "3003521", + "1005908", + "1004757", + "4002570", + "2007999", + "8001025", + "7004869", + "4004929", + "2003624", + "6004099", + "2007755", + "4003377", + "2003542", + "2007313", + "3003885", + "1004308", + "4003897", + "7002549", + "6004574", + "2004797", + "5001282", + "7002662", + "1004037", + "7002070", + "3004121", + "3006966", + "2006567", + "2006323", + "6003434", + "6004153", + "5001050", + "0006222", + "1004225", + "4002170", + "1004709", + "2004007", + "7004778", + "3004469", + "1003447", + "8002858", + "6003682", + "5001330", + "3005092", + "3003070", + "6002707", + "1003360", + "0005251", + "5001490", + "1004809", + "1005816", + "4004904", + "1004171", + "7002473", + "3005032", + "1005432", + "2006182", + "2007650", + "2007908", + "3003379", + "6003466", + "6002671", + "3004131", + "5001399", + "0005139", + "0003587", + "2004273", + "7003322", + "1003348", + "4002868", + "0004451", + "7003394", + "5001488", + "7003989", + "8001414", + "4003370", + "2005938", + "7002031", + "1005104", + "1003184", + "4004419", + "2004686", + "1005353", + "1006618", + "2005537", + "6003471", + "8001343", + "3004477", + "8003403", + "6002480", + "6003414", + "6003473", + "6002361", + "8002806", + "7003752", + "3006493", + "1003545", + "6002494", + "3003008", + "4004722", + "4003075", + "6002360", + "2006540", + "7003428", + "2005224", + "3005647", + "0005865", + "8003424", + "6003196", + "2007078", + "1003667", + "5001926", + "4003633", + "1005268", + "3006119", + "1003166", + "2003926", + "2005685", + "3003142", + "7002714", + "3004523", + "8003814", + "6004501", + "0005863", + "1005081", + "0005008", + "3006313", + "8001633", + "6002101", + "2003478", + "2007069", + "0005198", + "6004534", + "1003245", + "1004183", + "2004289", + "0004010", + "8003933", + "5001699", + "8003052", + "2003917", + "0003814", + "2005520", + "1006942", + "3005590", + "6002051", + "1005769", + "1006423", + "1006808", + "4004043", + "8003031", + "0003143", + "3005220", + "3006820", + "1005792", + "5001840", + "0006666", + "1006186", + "1005476", + "7004628", + "4004801", + "0003792", + "8002773", + "7002875", + "1005223", + "6004180", + "0006059", + "3004234", + "4003786", + "3004668", + "3003158", + "6004278", + "1003910", + "1004915", + "7003467", + "7002694", + "4003560", + "8002427", + "6004257", + "2004734", + "0003419", + "3003485", + "2004876", + "2004555", + "2003234", + "3003449", + "7002422", + "2003869", + "3003542", + "6003868", + "0005340", + "3003313", + "0005911", + "3004467", + "7002032", + "3006045", + "2007297", + "7003652", + "6003013", + "1005766", + "4003072", + "6002048", + "2003437", + "4002498", + "8001561", + "3003248", + "0006837", + "4004784", + "3005800", + "6003369", + "8002882", + "8002957", + "2004138", + "6004938", + "4003936", + "2004706", + "2004658", + "3003815", + "5001956", + "7002824", + "6004980", + "7002689", + "2005059", + "2006061", + "0006681", + "0005707", + "6002915", + "5001121", + "0006527", + "0004604", + "6002960", + "6004219", + "6004879", + "8002684", + "7002346", + "0006848", + "0004266", + "3003566", + "3005962", + "2007185", + "4002203", + "6003164", + "4002692", + "7003491", + "2003626", + "7003646", + "3004779", + "3005187", + "8001990", + "8003297", + "2006836", + "8003010", + "8002881", + "4004620", + "1004894", + "0004022", + "4003342", + "7004915", + "1006848", + "0005900", + "0003062", + "1004203", + "3005621", + "2003485", + "1005707", + "0006395", + "2003995", + "6004649", + "1004677", + "3006231", + "0003395", + "2007210", + "2006649", + "3003019", + "6002007", + "8002253", + "2004942", + "4002601", + "3003265", + "3004949", + "4002586", + "2004368", + "4003940", + "2005771", + "5001026", + "4002509", + "0004421", + "8003015", + "6003257", + "3004993", + "2005683", + "1005120", + "6002995", + "6004435", + "2005144", + "1003178", + "8002800", + "6004117", + "2007287", + "7002096", + "1005322", + "4002858", + "8003145", + "6003882", + "2005416", + "2004371", + "3006709", + "8003903", + "4003179", + "0003212", + "1005723", + "6004915", + "2006263", + "6003550", + "3003032", + "8002699", + "2005643", + "2006742", + "1005448", + "8002466", + "8001533", + "7003909", + "3003471", + "3006047", + "8003549", + "6002133", + "6004862", + "8002933", + "0004106", + "3003026", + "2007094", + "7004815", + "4003107", + "2004775", + "6003707", + "8003538", + "1006750", + "6003535", + "1004392", + "2003659", + "3004314", + "7004434", + "3004556", + "4004949", + "8001775", + "1004813", + "2005032", + "1003138", + "4004740", + "7003460", + "8001760", + "3005186", + "6004060", + "2003232", + "8002558", + "6004834", + "3005175", + "6004559", + "2003836", + "1004062", + "8001868", + "5001878", + "8002047", + "1004280", + "2006518", + "0004355", + "6004417", + "8001961", + "3003301", + "6004121", + "2005553", + "2004305", + "7003168", + "7002528", + "1006869", + "3006406", + "7003008", + "0005701", + "8001106", + "3005929", + "2004861", + "7004552", + "2005756", + "0003199", + "2004606", + "6004516", + "1004697", + "2007322", + "0005494", + "2007033", + "4004903", + "4002474", + "2003887", + "8002451", + "1006598", + "0004570", + "2007561", + "6002793", + "5001037", + "1006561", + "2006295", + "6002373", + "0005216", + "2004820", + "2004153", + "3005280", + "1006713", + "3004472", + "2005076", + "6004762", + "7002600", + "6003362", + "2005976", + "3003033", + "3004255", + "2006136", + "1003514", + "2003826", + "6004520", + "0005285", + "1005144", + "3006082", + "3006642", + "2006606", + "0005648", + "7004593", + "4004421", + "5001178", + "6003583", + "5001679", + "2006449", + "2005238", + "8001188", + "2003079", + "2005021", + "1006294", + "2004163", + "7003790", + "1005580", + "3003062", + "3004883", + "8001158", + "2005189", + "4004375", + "4004652", + "5001046", + "0005960", + "3003691", + "2007817", + "8002999", + "2005310", + "0005962", + "3006001", + "7003064", + "3003496", + "1005895", + "7004378", + "8003497", + "3006785", + "7003129", + "6002107", + "2007641", + "6004101", + "3003904", + "7002377", + "0006268", + "2005602", + "3006904", + "8001128", + "1003808", + "8003584", + "4002870", + "4004045", + "6003144", + "4002679", + "1004520", + "2005315", + "4002229", + "8001620", + "3004421", + "1006214", + "2005323", + "6003283", + "1003399", + "1003631", + "4003524", + "3005055", + "6003150", + "1006123", + "1005124", + "0005957", + "0004878", + "4004847", + "6002197", + "3006896", + "3006183", + "2007982", + "3005432", + "2004532", + "3006455", + "0004720", + "0003812", + "1006315", + "8002240", + "1004019", + "1004322", + "2007124", + "0003008", + "4003343", + "4004105", + "2007258", + "2007924", + "4003070", + "4003837", + "4002729", + "5001454", + "2006764", + "2007930", + "2006078", + "6002678", + "0005260", + "1004949", + "6002037", + "8002607", + "2006091", + "0005222", + "1004527", + "7002329", + "6004550", + "6004946", + "7002374", + "1006361", + "3003604", + "0004443", + "8003460", + "8002655", + "3006185", + "2006014", + "7003729", + "4004426", + "0005706", + "8003485", + "8001739", + "0005505", + "0006760", + "2007223", + "3005217", + "6003630", + "7003792", + "8001774", + "7004110", + "0004576", + "2006414", + "2004786", + "2005094", + "0003551", + "2006755", + "0006834", + "5001279", + "7004276", + "0006645", + "0004817", + "2007742", + "7002293", + "4002753", + "8001476", + "2007710", + "2006720", + "4004779", + "4003678", + "1006868", + "3006294", + "3005278", + "8003929", + "3004738", + "0003811", + "0003414", + "0003370", + "0003095", + "6004192", + "2003595", + "0006474", + "2007073", + "1003363", + "4004683", + "0005963", + "8001511", + "8002909", + "7004747", + "2006279", + "6004536", + "5001237", + "2004567", + "8002072", + "1005804", + "3005784", + "7002750", + "5001985", + "4002918", + "8002524", + "3005003", + "8001230", + "6002172", + "3005731", + "0005238", + "4003141", + "3003200", + "1005171", + "3005964", + "7004140", + "6002862", + "2003041", + "7002041", + "8002937", + "6002407", + "7004469", + "3004498", + "8002168", + "4004575", + "8003486", + "3003538", + "2003382", + "0005936", + "6002177", + "3005235", + "3003332", + "4002138", + "6003795", + "8002884", + "4002289", + "0006328", + "4004473", + "5001316", + "4002248", + "6003668", + "7003335", + "8003863", + "3005525", + "0004504", + "7002687", + "4003671", + "8002462", + "6002986", + "2006817", + "7002831", + "8002708", + "7003311", + "7002604", + "6004046", + "0004080", + "8001912", + "0003220", + "8003744", + "6002111", + "0003245", + "0004036", + "3004429", + "4004739", + "2006655", + "8002545", + "4002062", + "2004970", + "7002884", + "6003544", + "1003793", + "6002156", + "5001713", + "1006662", + "3006916", + "7003764", + "0003704", + "2005285", + "3003948", + "3005198", + "8002644", + "7004496", + "1006720", + "2004047", + "2004562", + "0006173", + "8002278", + "6003079", + "4003755", + "6003267", + "0004742", + "0006616", + "4002889", + "1004493", + "2005654", + "0005514", + "1004859", + "8003079", + "1006625", + "7003545", + "4003385", + "8001265", + "5001767", + "2007392", + "4002478", + "2006633", + "7003042", + "3006013", + "0004811", + "6003663", + "1005506", + "4004747", + "4003894", + "1006676", + "7003212", + "6004739", + "8003162", + "1005574", + "6002583", + "2005790", + "2006236", + "0006599", + "2004264", + "2007338", + "3005608", + "3006983", + "6003925", + "1006777", + "6004569", + "6003588", + "2003071", + "4003604", + "3006416", + "8003595", + "4002990", + "6003344", + "5001979", + "0005423", + "2003828", + "3003240", + "6002710", + "0006376", + "3004264", + "0005314", + "1003549", + "0003974", + "3003960", + "7004796", + "3003176", + "2006651", + "8003189", + "5001650", + "8002621", + "1005622", + "0003076", + "6003389", + "7004823", + "2007581", + "0004388", + "3006016", + "7004494", + "4003922", + "8002058", + "5001365", + "5001843", + "6004185", + "7003991", + "2004804", + "0005906", + "6004488", + "3005737", + "7003905", + "7004849", + "2006506", + "6004650", + "2003149", + "3005726", + "6003706", + "0003993", + "0004858", + "3005679", + "4004662", + "8003630", + "0005312", + "1005600", + "3006168", + "0004439", + "0006036", + "1006350", + "1005944", + "2007736", + "6002100", + "4002781", + "3006391", + "6003444", + "4002325", + "0006833", + "2005222", + "7004702", + "0005649", + "0005152", + "1004092", + "0004864", + "4003421", + "3006239", + "7002054", + "0005296", + "8001397", + "1005310", + "2005089", + "1004692", + "2003030", + "0004836", + "2006178", + "6004535", + "3003829", + "2006436", + "4004219", + "8002196", + "2003938", + "0003162", + "8003412", + "1005276", + "3004460", + "3006813", + "1003086", + "8001458", + "2007366", + "1006664", + "6004576", + "1004385", + "7003928", + "5001334", + "7003254", + "5001275", + "1004361", + "2004011", + "3004558", + "2004669", + "3005930", + "3006360", + "1003586", + "7004943", + "1006847", + "0005407", + "2006935", + "8002193", + "0003541", + "7003530", + "8002324", + "6002175", + "8001205", + "0005080", + "2004263", + "2007994", + "1006856", + "6003059", + "4002172", + "0006163", + "0006250", + "0004075", + "1005815", + "3006238", + "2004256", + "6002952", + "0006831", + "3004099", + "0003958", + "7002703", + "8002841", + "1006189", + "8002948", + "1003405", + "3003420", + "1006518", + "3005682", + "8002825", + "1003552", + "2003402", + "0005961", + "2006275", + "8002759", + "1006885", + "4003896", + "4004803", + "1003458", + "1004628", + "5001988", + "1006426", + "3006150", + "6004511", + "7003715", + "2007855", + "3005539", + "0006044", + "5001610", + "4003730", + "2003180", + "6003712", + "8001120", + "1003147", + "7002953", + "1004826", + "5001229", + "3006265", + "1004111", + "8003730", + "4002235", + "7004684", + "6002515", + "6004587", + "3005632", + "0004718", + "0004042", + "8003006", + "8002156", + "2007526", + "1004724", + "4004406", + "3006513", + "6002609", + "0005676", + "0005487", + "2004898", + "4002127", + "0006068", + "8001544", + "7002782", + "1005362", + "2004509", + "3003105", + "2005082", + "4002121", + "1006928", + "6004780", + "1004428", + "7002864", + "0006478", + "8003254", + "8001225", + "7002113", + "8002798", + "2003223", + "2006642", + "3005008", + "3005589", + "1003959", + "4004139", + "6003231", + "1006433", + "2005864", + "3003967", + "3005643", + "1005573", + "2004365", + "1003157", + "2005397", + "2006571", + "0004170", + "6003479", + "6002620", + "1004343", + "1004657", + "2007602", + "3003943", + "2005879", + "3003515", + "1005541", + "0005592", + "0006372", + "4003415", + "1005458", + "4004228", + "2006664", + "2003113", + "7004041", + "6003159", + "0006253", + "2004936", + "1004791", + "8003525", + "6004321", + "2005880", + "3006903", + "3004610", + "1003432", + "1005538", + "1006746", + "2007676", + "0004966", + "0004656", + "4004125", + "7002219", + "0004641", + "7004863", + "6002784", + "0005920", + "0006205", + "1006409", + "1005806", + "6003353", + "8002638", + "8002142", + "4003873", + "6004721", + "6002252", + "2007048", + "7004689", + "6002600", + "8001347", + "2005995", + "3003194", + "8003260", + "8003345", + "2007616", + "1003643", + "0003321", + "3003069", + "8002424", + "1003885", + "4003165", + "2007319", + "8003344", + "7003475", + "4003761", + "6004634", + "0003531", + "6003377", + "8002309", + "2004623", + "8002377", + "4004714", + "7003585", + "2003377", + "3004952", + "1005245", + "8002510", + "0006843", + "1006585", + "8002103", + "1003904", + "3003989", + "7004450", + "1004288", + "8003009", + "3005958", + "0004587", + "2004525", + "8002041", + "8001235", + "6002861", + "6004660", + "1003388", + "0003338", + "8002364", + "3003631", + "7002723", + "2007426", + "0003068", + "3004219", + "8003746", + "0005081", + "4003442", + "3005885", + "2004388", + "7003702", + "4003232", + "2006748", + "0003356", + "2005277", + "7004528", + "1003709", + "4004746", + "0004337", + "4002280", + "6002243", + "2007762", + "6002842", + "6002246", + "8001311", + "7002719", + "5001589", + "2007652", + "7003918", + "2006588", + "1005475", + "7004139", + "2004036", + "2007066", + "7004477", + "3004097", + "7004081", + "8001053", + "2006128", + "6004620", + "2007274", + "4003414", + "8003122", + "4002117", + "6004566", + "7004811", + "2003947", + "3006033", + "2005334", + "6004152", + "4004777", + "3003555", + "2007698", + "8002813", + "4004969", + "6002946", + "0003016", + "2005203", + "2006535", + "1004213", + "0005543", + "4004020", + "0006220", + "8001325", + "4003092", + "4003653", + "3006684", + "0003315", + "2006650", + "4002942", + "0003456", + "7003975", + "5001217", + "5001034", + "7003552", + "8003748", + "2007280", + "4004950", + "3005027", + "1004646", + "8003454", + "4004137", + "8001754", + "8002790", + "1006108", + "7004960", + "2005706", + "0005358", + "1006896", + "2006604", + "2007737", + "6004939", + "8001986", + "1006380", + "6004764", + "1005981", + "8001959", + "4002406", + "0006644", + "6003133", + "4004563", + "6003838", + "8001495", + "1006473", + "1004445", + "1004423", + "3005077", + "4003530", + "4003700", + "2006487", + "2006424", + "3004333", + "1003462", + "4004337", + "3004270", + "1006228", + "6003705", + "2007509", + "8003822", + "2006727", + "1003585", + "3005510", + "8002766", + "3003623", + "1005758", + "0003353", + "6003393", + "8001955", + "7003075", + "1003120", + "7004812", + "2005237", + "1006379", + "0006756", + "0003308", + "3003778", + "2005061", + "8003527", + "8003892", + "2004715", + "4002893", + "2007607", + "3004995", + "0003398", + "4003004", + "0005899", + "1005413", + "2007897", + "3003207", + "1004720", + "3003530", + "2004522", + "6004334", + "6003972", + "8002652", + "7004932", + "6002220", + "3006846", + "7002424", + "2003369", + "4003488", + "0004291", + "6004648", + "3005431", + "1006542", + "7003594", + "0003977", + "4004605", + "5001295", + "8003526", + "1004025", + "1006349", + "2003630", + "4003036", + "3004778", + "7004368", + "5001471", + "8002811", + "8001756", + "5001477", + "1006365", + "8002479", + "1005403", + "8001900", + "4003259", + "3004555", + "2004589", + "0005142", + "1005991", + "0004493", + "3004878", + "1006233", + "2006530", + "7003014", + "4002770", + "2005730", + "2005156", + "3006529", + "8001885", + "2007620", + "3005087", + "0004533", + "3003441", + "7002229", + "8003823", + "3003364", + "4004639", + "3004023", + "7004491", + "3004590", + "6002766", + "2005757", + "7003237", + "8003413", + "4004865", + "2006545", + "8001883", + "1004422", + "0006112", + "6004197", + "0005180", + "4002008", + "3003669", + "3003257", + "0006087", + "2003288", + "0005272", + "3004283", + "0006910", + "0006029", + "0003969", + "3004932", + "1005858", + "3006269", + "4003299", + "7004281", + "1004339", + "8001589", + "4004324", + "8002307", + "7003630", + "7004978", + "6003587", + "3005179", + "0004885", + "1005960", + "2003398", + "1006681", + "7002612", + "0004915", + "2003565", + "4002567", + "2005275", + "0005359", + "0004737", + "4004517", + "2004712", + "7002547", + "3004406", + "4004848", + "8003049", + "1003402", + "7004888", + "2006029", + "6002415", + "4002563", + "0003270", + "1005320", + "8003180", + "7002344", + "7004135", + "0005148", + "7002093", + "3005630", + "6003304", + "6004202", + "7002584", + "0003681", + "3006190", + "0005354", + "7002989", + "8002461", + "7003821", + "2007933", + "1005200", + "3005046", + "4003067", + "1005903", + "3006946", + "2003354", + "2005744", + "3006584", + "6003033", + "2005282", + "1003228", + "6003796", + "6002116", + "3004412", + "4004232", + "5001854", + "6002434", + "5001692", + "0003782", + "0003785", + "6002900", + "3004041", + "3004281", + "1005954", + "8001165", + "1004903", + "7004051", + "4004641", + "1004449", + "2004789", + "7003582", + "8001480", + "3006660", + "5001603", + "2004515", + "4003358", + "1005977", + "6002079", + "7002189", + "2006608", + "2006762", + "4002324", + "8001005", + "5001917", + "7003138", + "1003796", + "2004041", + "0003865", + "5001357", + "8001049", + "4004595", + "0006907", + "1006619", + "4003679", + "2005451", + "3005475", + "8002000", + "1004268", + "3004948", + "3004713", + "6002673", + "3005702", + "2003613", + "2005737", + "2004955", + "7002133", + "2007339", + "0005207", + "1006110", + "4003728", + "6003849", + "8002736", + "3006585", + "3006345", + "8001712", + "2004791", + "4003888", + "0005457", + "6002534", + "0004652", + "2003874", + "3005282", + "8002975", + "2004554", + "0005304", + "2003618", + "7002025", + "7002404", + "0006505", + "7004484", + "2006620", + "3005507", + "6003710", + "0006193", + "2005557", + "8002498", + "8001939", + "8003639", + "3005740", + "2004317", + "6002097", + "0006100", + "6003027", + "1006371", + "0004827", + "3006371", + "5001064", + "3005616", + "3005444", + "7003538", + "2003856", + "1004535", + "2003884", + "2003102", + "2003615", + "3004928", + "6002035", + "0003017", + "3003296", + "0006528", + "0004054", + "8003990", + "2007950", + "8001700", + "7002566", + "2006522", + "3005798", + "0003913", + "7003714", + "6002015", + "6003011", + "1003671", + "4004061", + "0005844", + "8001259", + "7002320", + "8002602", + "7003295", + "7004228", + "8003174", + "7003968", + "1006716", + "0003831", + "7004190", + "7004585", + "1003787", + "2003574", + "2003367", + "7003035", + "4002076", + "4002825", + "7003674", + "7002711", + "4002564", + "0003904", + "3003396", + "6003736", + "0003280", + "1006402", + "1004898", + "2005040", + "4004383", + "3004151", + "0003549", + "7003901", + "3005782", + "8002025", + "2004544", + "1004858", + "3005905", + "4004785", + "8002568", + "1005759", + "6002075", + "8001821", + "4003914", + "2003575", + "2005113", + "7002304", + "3003791", + "3005230", + "3006997", + "1005845", + "2006012", + "3006137", + "4002624", + "8003708", + "2005157", + "4003266", + "7002295", + "2005633", + "4004821", + "4004004", + "3006462", + "4003021", + "6003846", + "1004014", + "7004931", + "1006615", + "2006387", + "3003923", + "8001056", + "3003055", + "8003523", + "2007842", + "0005895", + "0004386", + "5001857", + "6002410", + "3006472", + "8001826", + "8003084", + "7004179", + "5001735", + "2006165", + "2005202", + "0006636", + "2004043", + "4003171", + "2007521", + "0006438", + "6003035", + "6002910", + "7004102", + "1003142", + "3005943", + "2007362", + "0004988", + "4002772", + "3006192", + "0004741", + "0005864", + "6002920", + "2004660", + "6003606", + "5001462", + "4004367", + "0003581", + "2005034", + "1004623", + "7003800", + "1003237", + "6002796", + "4003718", + "0006692", + "2003560", + "7004639", + "7003915", + "1003200", + "2007771", + "1003229", + "3005093", + "1003772", + "3005482", + "2003347", + "2004588", + "3005154", + "1006319", + "6003398", + "7002661", + "2006227", + "0003499", + "2006922", + "2005723", + "2004426", + "0005720", + "1004681", + "4004651", + "3003606", + "1006558", + "0005467", + "3006956", + "6003504", + "1005559", + "0005308", + "1004047", + "7004708", + "7002705", + "2005267", + "1006880", + "6002364", + "7003974", + "6004963", + "8003133", + "0005549", + "2005147", + "7004530", + "2006477", + "4002018", + "0006761", + "3004466", + "1006589", + "1005635", + "3005919", + "4003459", + "1006770", + "1004197", + "6002182", + "8002641", + "2007672", + "2007005", + "1005008", + "8001948", + "2003106", + "3004540", + "1003616", + "6003505", + "6002982", + "4004584", + "2006888", + "2003455", + "4004123", + "4004496", + "5001884", + "1003469", + "7002279", + "6003981", + "4003330", + "2005944", + "6004588", + "6002775", + "3004823", + "3004753", + "0003808", + "2003005", + "2007647", + "8002892", + "8003864", + "8003392", + "7004247", + "1006468", + "2007141", + "3005135", + "2003137", + "4004286", + "5001013", + "6002212", + "8002443", + "6002610", + "0003803", + "0005498", + "0003273", + "0004896", + "3004981", + "3003124", + "4003508", + "0003331", + "0006964", + "5001270", + "6003431", + "1004384", + "1004013", + "3003356", + "6002961", + "2004378", + "3003981", + "4004094", + "0003855", + "8003686", + "3006335", + "3005364", + "0006988", + "6004323", + "1004074", + "7002441", + "3006299", + "4002528", + "1005560", + "4002467", + "8003678", + "2006244", + "4003117", + "2004999", + "3004169", + "0005802", + "4003115", + "7004910", + "0005782", + "7002291", + "3004598", + "4002938", + "7004091", + "1003260", + "8002302", + "1005402", + "2006127", + "6003752", + "7004238", + "0006447", + "2005413", + "4003094", + "2003694", + "8001018", + "1003962", + "4004166", + "2006218", + "4003167", + "7004234", + "0004503", + "2006005", + "0006816", + "1004600", + "6003787", + "7003410", + "8002360", + "3006520", + "3006943", + "1006431", + "2004499", + "2006162", + "7004244", + "8003452", + "4004034", + "4003463", + "2003833", + "2007746", + "3005041", + "0005714", + "6004591", + "6002713", + "8002979", + "6002004", + "4002011", + "1005301", + "7002574", + "0004177", + "1004585", + "3006104", + "5001441", + "8003888", + "1004589", + "4002965", + "2007207", + "6002296", + "3006341", + "3003445", + "8001153", + "4002303", + "1006355", + "3004641", + "0006449", + "4004384", + "0004581", + "1005735", + "8001346", + "0003435", + "2007562", + "2006855", + "4002175", + "5001119", + "0004343", + "1003859", + "2004367", + "5001297", + "8001514", + "3006581", + "8002788", + "8002958", + "0004750", + "8001724", + "3003667", + "4004806", + "6002011", + "0003471", + "8001429", + "6002081", + "1006119", + "0005659", + "6002526", + "2006346", + "6004230", + "4002670", + "2005840", + "3003738", + "8002329", + "1006448", + "7003002", + "3005171", + "7003006", + "2005389", + "8001744", + "1004266", + "5001708", + "4002500", + "1003109", + "7004452", + "1005875", + "8002167", + "8001355", + "3006970", + "0005845", + "4002785", + "2006231", + "6003613", + "4002456", + "2006180", + "0006846", + "8002972", + "4004795", + "1005838", + "2003303", + "8002786", + "1004464", + "7003853", + "8003261", + "3003344", + "7002961", + "3006531", + "7002020", + "6004830", + "8001587", + "1005753", + "4004952", + "2007273", + "0006872", + "3005243", + "7003621", + "1006562", + "0004717", + "0003255", + "8003048", + "0003693", + "6003614", + "0006751", + "2006896", + "8001579", + "0003906", + "8001563", + "5001991", + "2004234", + "8003951", + "8001778", + "1006967", + "2003062", + "6004837", + "1005044", + "7004402", + "5001314", + "8002092", + "1004140", + "2003975", + "3004291", + "0003732", + "3003437", + "2004361", + "2007082", + "2003164", + "7004118", + "1003614", + "0004987", + "2007188", + "2005638", + "3004142", + "1005295", + "1005500", + "3003719", + "8001621", + "1003914", + "7004860", + "8002916", + "0004818", + "2005291", + "2007115", + "5001978", + "1004293", + "2007579", + "6004339", + "2003091", + "8003734", + "7002876", + "1005668", + "5001007", + "2007051", + "3006777", + "4004574", + "1004556", + "1003331", + "0006901", + "7003725", + "2005100", + "2004729", + "3005654", + "6003425", + "2004370", + "1006370", + "0006754", + "4003854", + "5001980", + "3004967", + "0005106", + "6003210", + "0005199", + "1005053", + "2006121", + "6003731", + "6002479", + "2003521", + "6004819", + "4003999", + "7002757", + "7004865", + "7002072", + "4004015", + "7003818", + "2005616", + "4004737", + "6004076", + "0003651", + "3004868", + "6004884", + "6002870", + "8003489", + "2007657", + "6003966", + "0005929", + "7003654", + "0004780", + "0003070", + "7004510", + "6004352", + "3003056", + "7002152", + "3006720", + "2007634", + "2003958", + "8002178", + "3005845", + "6002714", + "8001786", + "1005542", + "2007784", + "2007918", + "0003532", + "2003890", + "2004798", + "4004409", + "5001594", + "2007102", + "1004217", + "0005579", + "4003829", + "7003574", + "2003424", + "1003452", + "0006422", + "1005240", + "0004424", + "7003587", + "3005576", + "7002980", + "7003607", + "4002270", + "1005992", + "2005091", + "2003559", + "4004907", + "0005147", + "0003420", + "8001553", + "2004612", + "2005594", + "1003626", + "3006163", + "7002474", + "4004681", + "8002351", + "1003110", + "3004604", + "5001929", + "1003705", + "4003696", + "1004730", + "2003059", + "6003117", + "7003754", + "3003665", + "6002598", + "3003117", + "0003289", + "5001300", + "6004048", + "6002404", + "2004625", + "7003128", + "7004292", + "0003957", + "7004305", + "6003507", + "8001132", + "8003640", + "8001829", + "6003572", + "2005833", + "1006983", + "8003340", + "1004605", + "3006951", + "2003862", + "7003385", + "8001703", + "2004205", + "1005844", + "4002731", + "5001695", + "1006390", + "1003136", + "2007414", + "7004541", + "6003552", + "3004721", + "1003609", + "6003160", + "1004671", + "7003666", + "2005115", + "1006403", + "2007276", + "2004974", + "1004928", + "8001400", + "3006880", + "0003781", + "0003178", + "8001134", + "0006365", + "3003587", + "7004598", + "7003802", + "0003195", + "4002277", + "6003122", + "8002586", + "8001502", + "7004613", + "2006031", + "2003215", + "6002810", + "1005473", + "2003840", + "2004150", + "1006826", + "1004847", + "7003522", + "6002542", + "2006912", + "8002753", + "2006115", + "7003559", + "1006717", + "6003229", + "3005776", + "7003246", + "3004471", + "5001561", + "2007926", + "1004524", + "6003939", + "7002801", + "3005948", + "8001091", + "6002473", + "8001203", + "6003016", + "2005111", + "6004128", + "4004655", + "3003717", + "0003481", + "3006300", + "0006414", + "7002472", + "7003619", + "3005999", + "4003656", + "6002935", + "8003912", + "5001850", + "6003180", + "4003056", + "8002670", + "4004987", + "8001206", + "5001184", + "6004798", + "2007262", + "3005383", + "2005106", + "4002436", + "1005280", + "8001433", + "7003413", + "5001637", + "4004460", + "8001415", + "1003475", + "0006488", + "1005264", + "2006164", + "2004624", + "0006417", + "5001663", + "0006946", + "1003212", + "2005604", + "2007116", + "6002949", + "1005333", + "1005064", + "8003156", + "6002422", + "2004329", + "1005527", + "0003355", + "2004689", + "7002067", + "7002048", + "8001575", + "2005236", + "8003603", + "2006845", + "6004629", + "2003957", + "0004027", + "5001951", + "8001942", + "7002128", + "3004592", + "8001436", + "8003636", + "3006934", + "1004173", + "0006591", + "0005931", + "2007405", + "2007165", + "2006033", + "3005837", + "2007259", + "4003624", + "1006804", + "6002247", + "0005485", + "2006143", + "2005473", + "1006721", + "3003694", + "6004358", + "8002715", + "8001418", + "2006785", + "2004703", + "0006551", + "8003414", + "0003180", + "1003715", + "2005792", + "1003847", + "2004946", + "3003288", + "1006051", + "2004694", + "1006538", + "4003087", + "3003495", + "8002680", + "8002031", + "4002912", + "8003177", + "8002054", + "8001232", + "1004883", + "8003137", + "6002455", + "1003159", + "3003122", + "8001952", + "8001295", + "1006752", + "6003358", + "0005534", + "6002806", + "3004358", + "2003477", + "4003073", + "3006475", + "1005929", + "5001866", + "0005014", + "2005794", + "3006407", + "8002407", + "0005758", + "3003512", + "1003403", + "3005559", + "5001725", + "0003614", + "4004127", + "7002349", + "4002139", + "4002173", + "5001499", + "4002792", + "1006877", + "4002627", + "0006600", + "4002440", + "0005740", + "0005161", + "8002346", + "2006511", + "3005435", + "4003357", + "7003799", + "2007835", + "2003579", + "2004446", + "8003258", + "2007290", + "2003053", + "2007726", + "6002349", + "1003946", + "4004147", + "3005875", + "7003381", + "1004311", + "5001228", + "2003621", + "1003437", + "0004211", + "3005402", + "8002120", + "1006377", + "3003086", + "2006825", + "7004851", + "6002855", + "2004494", + "6003248", + "0005694", + "3006229", + "7002756", + "2006985", + "1003894", + "3005369", + "7002654", + "1005262", + "2003067", + "4002374", + "2005104", + "8003256", + "7004911", + "0006015", + "2005778", + "7003959", + "1006964", + "3005514", + "7004766", + "3005196", + "5001403", + "8001498", + "1003944", + "4003743", + "4004449", + "5001368", + "0004429", + "0005303", + "0003243", + "1006021", + "8002368", + "3006649", + "3003108", + "7003269", + "0006319", + "2006501", + "8002677", + "0004420", + "2005255", + "8003564", + "6004424", + "0005257", + "1005576", + "0003991", + "2005294", + "6004021", + "0005770", + "2005551", + "6004186", + "2003304", + "1005273", + "1005187", + "8002713", + "6003991", + "3003154", + "2004843", + "2004287", + "4003868", + "7003200", + "2004390", + "1003861", + "0003246", + "7003861", + "7002643", + "3003677", + "6002245", + "3003440", + "8003016", + "8003628", + "2003042", + "7003150", + "2006429", + "0006416", + "8001938", + "0006035", + "0004048", + "1003378", + "0003474", + "6003536", + "1004016", + "2005957", + "3006648", + "1005730", + "0004123", + "4004971", + "3005820", + "5001414", + "8002888", + "3006241", + "7003807", + "6003872", + "0003868", + "4004613", + "5001934", + "1005071", + "2003983", + "4003451", + "6003420", + "2007077", + "5001374", + "2007045", + "6002387", + "0004908", + "8002522", + "1003219", + "0003069", + "7004023", + "7003833", + "1005921", + "3006179", + "1003575", + "0006991", + "6004114", + "8003579", + "8002717", + "2005948", + "8001087", + "2006130", + "0006909", + "1004819", + "6003188", + "1003693", + "6002904", + "1003276", + "2003616", + "6004677", + "0004212", + "5001588", + "0004887", + "1006179", + "3005629", + "8003802", + "6004231", + "0003794", + "7002820", + "7002384", + "2007596", + "2004956", + "3005099", + "2005854", + "1005121", + "6003301", + "0005209", + "4003752", + "6003446", + "1005374", + "0006573", + "0005941", + "8003984", + "8002747", + "2007884", + "3006998", + "6004985", + "2007592", + "2003076", + "6004719", + "2007750", + "8003404", + "5001432", + "7004039", + "6002261", + "4003979", + "4004344", + "1003234", + "4002210", + "2005937", + "6004499", + "5001786", + "6004882", + "3004941", + "0003877", + "8001148", + "0003778", + "1005337", + "3006423", + "0004910", + "8003589", + "5001775", + "1004993", + "8002606", + "4002443", + "2006156", + "3005229", + "5001896", + "3006320", + "2005452", + "7002413", + "2003366", + "6002091", + "8001323", + "4003997", + "0005234", + "2006566", + "7002725", + "2005572", + "0003972", + "3004298", + "4004025", + "3006565", + "1006242", + "2004565", + "1005588", + "0006251", + "0005201", + "3005176", + "1005675", + "3005861", + "2006255", + "6003207", + "3003866", + "7003063", + "8002901", + "4002234", + "3004828", + "0005231", + "4003099", + "1003258", + "3006982", + "2004364", + "1004009", + "4002339", + "6002342", + "1006125", + "7002303", + "3003772", + "2004435", + "3006417", + "0006916", + "1005068", + "2005283", + "4004444", + "2004461", + "4004706", + "8002625", + "6003879", + "3003528", + "2007629", + "2003098", + "2003761", + "1006155", + "2003970", + "8003149", + "7004907", + "1005450", + "0004430", + "2003476", + "0003542", + "6004897", + "7003259", + "3006464", + "6004485", + "7004522", + "7003234", + "2003481", + "2006237", + "6004097", + "1003834", + "8001302", + "1005919", + "3004783", + "4002823", + "4004707", + "3004862", + "1006065", + "0005264", + "3006686", + "4004682", + "7003313", + "8001717", + "0004104", + "2005868", + "3006801", + "0004455", + "6002049", + "8003956", + "4002987", + "8003908", + "8003030", + "6004824", + "8003349", + "6003863", + "6002719", + "7003760", + "6002447", + "5001420", + "3006653", + "0006871", + "3006734", + "1004863", + "1006117", + "1005885", + "3003053", + "0004937", + "3003499", + "2006790", + "7004123", + "2003033", + "7004282", + "6002516", + "4003015", + "2006299", + "4003328", + "7002376", + "0006980", + "1003012", + "2006770", + "1004315", + "3004609", + "3005265", + "2007328", + "2003128", + "3003676", + "2003820", + "8002273", + "0004585", + "4003403", + "4002441", + "7002785", + "6004945", + "3006388", + "3003333", + "0003576", + "2005700", + "4002967", + "5001517", + "7004087", + "2004221", + "6003400", + "2007638", + "4002817", + "3005469", + "6002517", + "0006356", + "1006936", + "2003817", + "4003515", + "2006623", + "5001722", + "2004818", + "2005842", + "2007099", + "4002508", + "7002834", + "2003673", + "2006897", + "6003914", + "4003397", + "1004040", + "3004475", + "2006084", + "7002188", + "3006658", + "3004729", + "0005884", + "4004455", + "3004232", + "6003701", + "6002005", + "1003821", + "4004380", + "2003632", + "6004836", + "1005351", + "2004346", + "0003731", + "6003853", + "0006731", + "7003062", + "7002956", + "8001992", + "7002855", + "8003482", + "8002629", + "2004885", + "0004218", + "7002447", + "8002600", + "0006743", + "4002100", + "0003724", + "8001029", + "2005313", + "2005843", + "5001110", + "1003681", + "3006774", + "2004857", + "6002860", + "7002622", + "0003826", + "1006899", + "0003645", + "1004997", + "2005356", + "1004537", + "8003722", + "2007501", + "3005062", + "8003146", + "1003275", + "2004174", + "4002340", + "6003183", + "8002854", + "6002675", + "8003257", + "0003828", + "3004313", + "7003001", + "0005252", + "1004693", + "7002428", + "3005677", + "6002773", + "3004297", + "7003562", + "5001973", + "1004781", + "6002739", + "1005955", + "2007853", + "2003697", + "4002231", + "2006683", + "8002720", + "6004253", + "2007635", + "8002277", + "2003878", + "7004985", + "2006426", + "2007987", + "1006998", + "8001448", + "6004385", + "2004934", + "1004094", + "3006759", + "0005409", + "1005205", + "2004823", + "1006007", + "6003147", + "3003795", + "2003456", + "8001021", + "7004217", + "2006915", + "4002778", + "8001112", + "2003204", + "6004768", + "8003051", + "3003267", + "8003311", + "1005970", + "7002997", + "8003985", + "2003436", + "8002739", + "0003476", + "7002350", + "2003310", + "1005938", + "7002702", + "3006051", + "2007161", + "8003799", + "3005194", + "4003919", + "3003926", + "4004114", + "7002288", + "8001893", + "8003770", + "3004499", + "3005408", + "3005459", + "8003269", + "1004924", + "0005577", + "7004709", + "0005089", + "6004073", + "1004338", + "6003497", + "7003639", + "1006801", + "2003120", + "2003845", + "2004042", + "2003406", + "2006186", + "2005079", + "6002531", + "8003889", + "2003592", + "2006159", + "7002270", + "8002662", + "4003871", + "5001258", + "2003720", + "6003600", + "8001268", + "2006214", + "2004194", + "3004916", + "0006331", + "1004283", + "1006008", + "7002905", + "3006132", + "0005883", + "6002168", + "6004887", + "4002107", + "0005044", + "3006414", + "2006921", + "0003519", + "8002683", + "4003255", + "1005186", + "8002266", + "0003798", + "7002481", + "3003464", + "2005453", + "7003966", + "0005660", + "8003764", + "3003731", + "2003982", + "0004945", + "1003592", + "6002741", + "0006709", + "4003811", + "1004388", + "7002200", + "7004032", + "6004767", + "4002536", + "2005668", + "8002694", + "6002834", + "8003057", + "6003429", + "8002912", + "7002277", + "8002190", + "6003619", + "4002028", + "2005665", + "4004349", + "0006821", + "2007483", + "2005597", + "8003026", + "1004238", + "0005474", + "2005972", + "5001504", + "3003671", + "7002104", + "0006610", + "6003474", + "6002398", + "4004923", + "1005771", + "7002063", + "2006289", + "3005541", + "0006107", + "8003087", + "2007738", + "8002319", + "4002283", + "6002743", + "4004089", + "0003536", + "1006144", + "2003471", + "2004774", + "3004117", + "4002947", + "5001302", + "7004044", + "0004220", + "3006447", + "3003545", + "6002239", + "3006218", + "7003710", + "0006734", + "8001212", + "5001747", + "0004244", + "4004448", + "8001116", + "0003787", + "6002399", + "3006275", + "3003792", + "2006936", + "8002071", + "6002573", + "6004894", + "7004573", + "3004925", + "6002400", + "2003986", + "2007365", + "2005886", + "3003156", + "2003641", + "1003226", + "3006140", + "2006832", + "0004049", + "0004556", + "0004939", + "1003819", + "3003184", + "1005221", + "2006369", + "1006093", + "5001521", + "3003270", + "7002479", + "4004554", + "6002370", + "3004019", + "4004594", + "4002511", + "0006671", + "1006918", + "3003342", + "1005011", + "3006437", + "2003787", + "1005024", + "4003782", + "1006954", + "3003259", + "7004676", + "6003142", + "1003019", + "2004158", + "0005685", + "0003366", + "2007029", + "3003123", + "2004261", + "4003959", + "3004728", + "2007991", + "7002289", + "2006308", + "3005078", + "7002894", + "2003915", + "0003132", + "8003918", + "1005832", + "1006738", + "3003890", + "2006544", + "4003185", + "2005523", + "7003686", + "2006059", + "3005656", + "1006112", + "8001585", + "6003865", + "8003393", + "1006218", + "4002696", + "2003065", + "2003311", + "0006747", + "0003685", + "0004586", + "0006989", + "3004694", + "7002512", + "7003827", + "4004794", + "5001149", + "6003214", + "5001369", + "0003239", + "0005546", + "2005555", + "1005624", + "8002234", + "2003123", + "0004285", + "7004407", + "1004920", + "2006961", + "8002470", + "1005509", + "0004156", + "3006971", + "0004406", + "7004269", + "3003974", + "2006627", + "3005618", + "2006597", + "4002202", + "3005079", + "8001297", + "0006452", + "3006212", + "7002613", + "2006051", + "7003216", + "6004135", + "1006248", + "2004220", + "1004435", + "1004158", + "4002518", + "0005422", + "0003764", + "5001042", + "0006276", + "8003577", + "6004663", + "1003409", + "4002724", + "4004905", + "8002860", + "4002529", + "4004188", + "3003797", + "8002213", + "4002260", + "2005589", + "8002102", + "1005974", + "4004968", + "6004438", + "2003729", + "3005260", + "3003883", + "2006379", + "2003602", + "0003646", + "2004100", + "8003253", + "7003533", + "1005164", + "5001700", + "8003315", + "3004137", + "1003583", + "1003775", + "1004804", + "3004388", + "3005923", + "7003911", + "8002575", + "5001553", + "8003967", + "2005903", + "0006688", + "8003168", + "3003558", + "1005061", + "6003750", + "0006882", + "3004167", + "1006506", + "4003234", + "6003670", + "1005166", + "4003024", + "3005549", + "4004237", + "4003657", + "0005258", + "6002700", + "4004908", + "0006353", + "6003733", + "3006075", + "2007591", + "8002468", + "7002594", + "8002248", + "0006624", + "1005658", + "4003534", + "7004420", + "4003483", + "2004146", + "2007626", + "0003981", + "0006431", + "3006714", + "8002250", + "8001471", + "0004081", + "2007734", + "2003460", + "0003776", + "3004411", + "8001741", + "7004870", + "1003338", + "7004013", + "1005555", + "2004307", + "0003184", + "1004181", + "5001859", + "6004931", + "8003385", + "3006816", + "3003956", + "4002931", + "0003157", + "3004166", + "1006577", + "6002324", + "3005291", + "6002547", + "8001154", + "3004400", + "8003728", + "2003169", + "1005619", + "0004103", + "2006904", + "8002570", + "8002275", + "0005539", + "2006080", + "2007298", + "0005988", + "7002223", + "2007861", + "4002120", + "2003339", + "1006766", + "1003613", + "6004364", + "6002159", + "4003050", + "3006771", + "0004859", + "2005809", + "6004131", + "7003778", + "2004788", + "5001043", + "1005479", + "8002624", + "3003576", + "3006733", + "3004207", + "8001523", + "7003929", + "4003599", + "5001531", + "7002877", + "8002389", + "0006476", + "2006009", + "8003775", + "5001620", + "2003522", + "8003983", + "4002196", + "2005447", + "6004551", + "1005396", + "1006092", + "2003307", + "7003151", + "1004425", + "7004914", + "5001954", + "0004927", + "8001427", + "2006077", + "3005419", + "6003953", + "8003505", + "1006751", + "2004250", + "7003399", + "0006169", + "0006977", + "3005271", + "2004363", + "2004313", + "6003269", + "5001560", + "1003007", + "2005541", + "4003689", + "4003086", + "0006387", + "5001411", + "1004349", + "0003526", + "3003190", + "1005854", + "2003495", + "7004410", + "3004812", + "4004589", + "5001068", + "0005173", + "1003706", + "6003592", + "6002142", + "6003316", + "4003600", + "3004766", + "8003894", + "7002237", + "1006430", + "1005822", + "2006532", + "0003538", + "4003886", + "3005692", + "4003367", + "0005869", + "2004745", + "4003924", + "8001978", + "2004098", + "0004147", + "7004117", + "4003363", + "7002852", + "2007880", + "2003519", + "5001309", + "3003353", + "8001470", + "8003534", + "8002635", + "2003296", + "3004318", + "6002481", + "4003360", + "0006192", + "2005101", + "2006397", + "8001696", + "2004282", + "2005733", + "6002071", + "8003751", + "1006657", + "7004356", + "5001590", + "3004364", + "1004765", + "2003573", + "0006293", + "3003411", + "2005585", + "2004050", + "1006812", + "2004866", + "7002129", + "4004029", + "2006099", + "3006007", + "1003152", + "1006306", + "2007766", + "2006883", + "3005306", + "3004001", + "8003464", + "3006821", + "3004389", + "6003829", + "0003215", + "6002226", + "1003000", + "6002250", + "2006095", + "2004451", + "2006771", + "3004608", + "1003238", + "0004677", + "0005330", + "2005195", + "2004983", + "7004456", + "1004759", + "6002394", + "6004146", + "0003344", + "3003749", + "1005438", + "2006046", + "0005124", + "2005617", + "0003970", + "6004464", + "0004450", + "0003379", + "2004292", + "3004580", + "0003296", + "4003622", + "0006516", + "8001889", + "8003074", + "6004422", + "0005119", + "2007009", + "0005921", + "5001597", + "4004895", + "7004280", + "2004816", + "2004859", + "8003294", + "1006887", + "7004670", + "3005342", + "4003202", + "3004221", + "7004119", + "1003191", + "6004085", + "5001996", + "0003654", + "7004116", + "7004537", + "7004337", + "1003359", + "2004112", + "2006681", + "4003077", + "3004621", + "1006706", + "0004651", + "1003825", + "7003122", + "3005139", + "0006324", + "2005950", + "1003712", + "8003596", + "3004791", + "3003919", + "0006715", + "4002804", + "2007211", + "7004792", + "2007692", + "8003816", + "4002712", + "0003543", + "0006415", + "0003924", + "2005342", + "4004825", + "6004362", + "5001168", + "2003562", + "7003895", + "8002691", + "0004545", + "1006652", + "0003942", + "2006306", + "6003986", + "5001514", + "5001494", + "1006874", + "1006667", + "2006267", + "8001097", + "2006106", + "3004991", + "1006519", + "6004838", + "7004846", + "7002264", + "6004191", + "7002822", + "7002029", + "8003328", + "3004591", + "6003145", + "0006177", + "8001101", + "2003219", + "7004913", + "3004984", + "1005653", + "2007320", + "3005071", + "2003155", + "4003348", + "1005789", + "0004163", + "2003631", + "5001960", + "4004356", + "1003286", + "2006365", + "1006914", + "7003426", + "3006280", + "4004445", + "0005596", + "3005289", + "5001271", + "8003726", + "6004444", + "8001469", + "1003017", + "2003010", + "4002994", + "0005088", + "6004662", + "3005321", + "3004316", + "0003206", + "4003230", + "0003237", + "8003563", + "3003262", + "1003317", + "2005398", + "1006168", + "4004277", + "0003251", + "1005593", + "7003962", + "2005690", + "0004643", + "2003212", + "7003529", + "7003007", + "4002387", + "8001422", + "3006939", + "2005997", + "5001546", + "3006154", + "0005856", + "6003546", + "4004204", + "1003257", + "3003320", + "0004531", + "6003638", + "2003865", + "3005575", + "0005703", + "8002783", + "6004641", + "4004327", + "8003732", + "7002208", + "3006549", + "1005951", + "8001460", + "6004313", + "1005470", + "6004741", + "5001112", + "1004461", + "3006619", + "1006252", + "7003851", + "1003990", + "3003435", + "8001732", + "3005970", + "1006523", + "1006333", + "5001809", + "6004695", + "0005866", + "6003266", + "1006374", + "8002090", + "2003163", + "1005997", + "3005216", + "6002417", + "8003882", + "1004824", + "2004090", + "2004460", + "6004624", + "3005699", + "8003808", + "8002902", + "3006843", + "8002010", + "1003006", + "2005623", + "2004935", + "7002684", + "2004975", + "3004241", + "8002857", + "2005080", + "2003707", + "0005396", + "2006443", + "2004992", + "6002890", + "2007872", + "4003416", + "0003065", + "8003102", + "2006810", + "6004113", + "1005756", + "7002994", + "8003346", + "4003011", + "8002419", + "8003333", + "4004169", + "7002451", + "6002902", + "0006236", + "7004992", + "8003012", + "5001084", + "8003342", + "1003726", + "2003709", + "8003698", + "0005891", + "6002433", + "4004680", + "0003393", + "1004644", + "2005501", + "6003457", + "0003940", + "6004600", + "4002017", + "2005969", + "8001769", + "3003080", + "2006784", + "0004283", + "3003173", + "2007425", + "0005786", + "3005709", + "2003074", + "3006589", + "1003312", + "0005168", + "7003364", + "4002279", + "7004327", + "6002000", + "6002702", + "8001867", + "0005413", + "8001520", + "8003950", + "4002335", + "2003457", + "8003287", + "1006895", + "4004882", + "7004760", + "2004274", + "3006446", + "2006519", + "1003489", + "0003257", + "3004419", + "1005289", + "3003723", + "0006813", + "6004169", + "4004165", + "7002655", + "4004556", + "8003913", + "1006767", + "8001982", + "7003570", + "3003329", + "3006738", + "2004664", + "4004026", + "3005841", + "8001435", + "6003875", + "6003273", + "6002991", + "4004898", + "0006815", + "8003944", + "2003654", + "3006368", + "2004193", + "6003794", + "2005454", + "4002545", + "2004863", + "2007993", + "2007542", + "6003278", + "4003162", + "0004252", + "0006330", + "4004985", + "2003511", + "8002048", + "2007712", + "3005600", + "4002301", + "2004119", + "3004645", + "6004081", + "4004464", + "4003665", + "5001311", + "5001571", + "0005601", + "8001962", + "2005048", + "0006579", + "8001984", + "2006003", + "6002703", + "1006351", + "6002509", + "2005474", + "7004306", + "4002304", + "3004663", + "7004666", + "3003993", + "2006848", + "3003263", + "6004530", + "7004769", + "1003291", + "4002755", + "2007195", + "1005731", + "7004169", + "0005445", + "0005536", + "1005904", + "0006178", + "0003641", + "8002271", + "8002363", + "0003894", + "8003280", + "2005301", + "2006459", + "2007025", + "3006402", + "3006201", + "3003953", + "1006614", + "0006996", + "3006827", + "4004770", + "6004533", + "0005009", + "0005718", + "6003519", + "3004561", + "2003500", + "1003845", + "7004330", + "6002402", + "2006626", + "2006969", + "2004092", + "0005690", + "0003545", + "8001406", + "8001949", + "8001393", + "6002548", + "3003140", + "2007168", + "7004092", + "7003289", + "4002923", + "0006326", + "7003495", + "4003681", + "3003177", + "1006285", + "3004978", + "7004614", + "2006568", + "2004807", + "7004212", + "2007558", + "7002283", + "2003627", + "8001921", + "4004091", + "0004649", + "3003172", + "1003422", + "8002323", + "6003138", + "2006835", + "2006246", + "1003171", + "8001146", + "2004605", + "4003968", + "6002143", + "8002311", + "0006277", + "1003604", + "2003623", + "8003375", + "2004850", + "1004921", + "4002366", + "3004084", + "5001290", + "4003707", + "2004879", + "2007325", + "3003649", + "6003212", + "6003889", + "6003508", + "2004765", + "6002008", + "0004870", + "0006592", + "0006496", + "2003249", + "6003604", + "6003008", + "2007279", + "3005461", + "1004232", + "0004543", + "0004061", + "2004489", + "7002974", + "2007255", + "8002030", + "8002101", + "2003691", + "8003070", + "2003207", + "2003800", + "1006725", + "0003043", + "4004588", + "3005287", + "1004160", + "8003817", + "8001648", + "7002103", + "4002587", + "1004598", + "2004400", + "7002354", + "7002693", + "7003110", + "2003129", + "8001266", + "4003246", + "1003048", + "1004433", + "7003423", + "6002313", + "3004044", + "2004064", + "1004617", + "1004353", + "8001813", + "3006146", + "7002839", + "3006868", + "5001999", + "7003625", + "6002353", + "6002196", + "1005492", + "3005012", + "4003626", + "2005223", + "7002341", + "3005805", + "4004988", + "0004771", + "6004901", + "6004725", + "2006013", + "0006933", + "6003976", + "1006441", + "2007832", + "3006028", + "8003047", + "2004171", + "5001061", + "0006042", + "3006679", + "6004322", + "2007658", + "1004560", + "2006750", + "0006869", + "1004565", + "3003946", + "1003680", + "3004632", + "0003133", + "7003993", + "6003464", + "3003287", + "1005085", + "8001554", + "4004235", + "7004650", + "4003147", + "0005267", + "0004065", + "7004454", + "4003280", + "0003948", + "3005891", + "6003988", + "0003461", + "3006189", + "6003386", + "1006019", + "8002648", + "8002514", + "2007359", + "3003452", + "6003797", + "3004643", + "6003036", + "2003158", + "0006552", + "2007778", + "1006891", + "0003669", + "8001596", + "1005592", + "0006470", + "2004699", + "1003396", + "3003324", + "1006866", + "6003749", + "3006941", + "3004461", + "0004738", + "4004012", + "4003642", + "0006732", + "2003094", + "4003173", + "0005325", + "6004376", + "1004531", + "4003195", + "6004869", + "0006939", + "1005170", + "2005392", + "0005157", + "4003643", + "6002761", + "2006695", + "2003663", + "0006370", + "1005348", + "3006811", + "0006433", + "7004412", + "6003467", + "0006297", + "0004351", + "8003804", + "0006294", + "2003681", + "2004500", + "6003593", + "1004367", + "0006862", + "2007799", + "6003646", + "3003762", + "7002906", + "2006826", + "4002571", + "8003108", + "4002491", + "5001549", + "6002980", + "8003069", + "6004893", + "2005130", + "0006232", + "8002369", + "8001972", + "7004209", + "1004662", + "3005528", + "8001779", + "3003073", + "3006461", + "7002742", + "4002656", + "0004178", + "4002033", + "7004424", + "7003855", + "2006850", + "3003668", + "6004626", + "3005548", + "3005069", + "8001702", + "1003985", + "2007129", + "2007143", + "3004867", + "0003279", + "1004346", + "7003033", + "0003592", + "0005666", + "7004076", + "2006875", + "2005531", + "5001578", + "4002358", + "2007284", + "6004799", + "6003500", + "3004603", + "8002997", + "2007420", + "6003884", + "0006787", + "2007995", + "6003998", + "7004707", + "0006197", + "0006549", + "6003658", + "4003074", + "4002233", + "7002755", + "2003290", + "7003886", + "6002099", + "0004880", + "3004973", + "4003802", + "2005299", + "1004960", + "3004655", + "2004161", + "0004711", + "8001602", + "2007193", + "2007639", + "4003166", + "1003327", + "4004937", + "7003298", + "7002396", + "8002371", + "7002738", + "0005741", + "3005458", + "1003792", + "1005893", + "3005080", + "2006804", + "8002865", + "8001687", + "1005836", + "1004299", + "0005964", + "0004607", + "4003658", + "0006893", + "1005244", + "6002457", + "7004617", + "7002144", + "8001793", + "7003020", + "3005866", + "1004398", + "0003281", + "8002283", + "1005925", + "2003737", + "7003239", + "4003938", + "7003761", + "2007545", + "1004764", + "6004513", + "3006708", + "7003120", + "3003556", + "4002384", + "3004009", + "2006988", + "2004763", + "1004077", + "8002978", + "8002876", + "0003469", + "7004711", + "3004935", + "4004790", + "4003817", + "0003976", + "2004016", + "3004899", + "6004647", + "2007863", + "0004979", + "8001528", + "0006361", + "6003335", + "2007044", + "3004105", + "0005947", + "6002380", + "6002218", + "2007594", + "8002646", + "4004227", + "3003197", + "8003354", + "1004496", + "6002323", + "5001515", + "3006490", + "1003801", + "1003141", + "6002411", + "0006823", + "2004892", + "2004445", + "2006301", + "3006508", + "2005567", + "3004907", + "4002225", + "8001310", + "6002630", + "4002916", + "0004599", + "2007976", + "8002587", + "3003082", + "8003080", + "3004904", + "5001872", + "2003037", + "3003819", + "2004945", + "6004453", + "8003884", + "0006005", + "6003485", + "4002609", + "3005884", + "0005513", + "2006570", + "0003780", + "8002075", + "3004245", + "1006496", + "7003656", + "0004110", + "5001903", + "2005693", + "0006979", + "2007904", + "5001647", + "1006873", + "2004948", + "2007833", + "6002624", + "2004809", + "8003347", + "7004040", + "2003334", + "7003192", + "3004188", + "1004705", + "8002345", + "6004794", + "2007733", + "6003562", + "4003071", + "1005689", + "3006285", + "4003759", + "2003344", + "3004971", + "4004039", + "3004263", + "8001989", + "3003103", + "1006256", + "1005302", + "5001289", + "0004394", + "3004061", + "3003834", + "0006525", + "0005121", + "0005350", + "3003278", + "2003593", + "1003030", + "2006137", + "2007296", + "2003277", + "2005586", + "7004363", + "6003043", + "2006357", + "1005272", + "0004623", + "0005997", + "8002584", + "3006596", + "4003289", + "2007947", + "5001706", + "0006338", + "1006378", + "2006712", + "2007812", + "3006244", + "2004078", + "0005679", + "2004549", + "8003437", + "8001725", + "1003221", + "0003274", + "2006148", + "7003404", + "6003074", + "1003376", + "3006900", + "8002358", + "7003781", + "2006972", + "1006095", + "8002370", + "8001085", + "2006774", + "8003201", + "4003334", + "8001773", + "2004663", + "2004907", + "8001280", + "7003882", + "1004614", + "7003732", + "7002696", + "4003569", + "4003941", + "0006490", + "0006198", + "3006870", + "8001201", + "0003430", + "1004401", + "2005884", + "8001659", + "0004710", + "1006659", + "4002902", + "1003669", + "1004024", + "1003361", + "3003168", + "0006305", + "4003143", + "7004029", + "1004929", + "6002002", + "3006385", + "0004962", + "4004618", + "3003620", + "1006386", + "6003017", + "8002660", + "4002208", + "4004808", + "6004240", + "7004191", + "2004436", + "5001661", + "5001614", + "4004684", + "4004587", + "4002836", + "7003466", + "4002021", + "0005623", + "4002036", + "7004365", + "3005111", + "0006559", + "8001217", + "0006458", + "1005848", + "6002466", + "7004364", + "0004882", + "8001906", + "1003969", + "2003539", + "8003391", + "2005146", + "7002057", + "4003593", + "1005149", + "4004520", + "7004094", + "2006042", + "0005693", + "0004209", + "1004551", + "2005375", + "1004900", + "0006870", + "5001604", + "4004394", + "4002214", + "1005050", + "0003087", + "1005027", + "1006450", + "3003223", + "3005903", + "0004050", + "8001038", + "4002553", + "4002718", + "6002083", + "6004035", + "1006368", + "8003781", + "2003778", + "0003385", + "1005283", + "4002820", + "8001301", + "1003270", + "1004229", + "0006794", + "8001971", + "2004253", + "1003064", + "0004527", + "2007381", + "1003576", + "1003301", + "0004456", + "3003249", + "1006543", + "4003523", + "2007305", + "4003018", + "3003633", + "1003362", + "4003741", + "3003823", + "1005651", + "6004532", + "7004584", + "4004945", + "8002967", + "4002428", + "7003401", + "4003899", + "0005461", + "6003883", + "1006106", + "5001609", + "1005742", + "2006987", + "4004292", + "8001584", + "1005525", + "2005559", + "1005812", + "7002983", + "2004008", + "1004889", + "4003477", + "1006930", + "4003083", + "2003850", + "1004205", + "7004278", + "3006200", + "8001822", + "0006856", + "6002372", + "2006529", + "3005050", + "8003706", + "0005516", + "4004339", + "8002985", + "1006013", + "0003457", + "0004095", + "1006882", + "0003346", + "5001264", + "7002934", + "2005406", + "7002745", + "8001935", + "2006502", + "3006106", + "3003616", + "4003098", + "3004165", + "0003598", + "3005620", + "7004487", + "5001823", + "8002160", + "4004073", + "1004728", + "7004336", + "3004917", + "1006352", + "0003491", + "3006576", + "1003335", + "8003673", + "2003666", + "0006733", + "0005657", + "4004404", + "1006397", + "4004939", + "8002227", + "3004170", + "7003804", + "4002309", + "6004636", + "2005361", + "7003245", + "1005102", + "2006938", + "2006849", + "8001443", + "1004198", + "7002898", + "0004900", + "0004525", + "3004897", + "8003504", + "7003846", + "0003597", + "7003576", + "8003046", + "3006224", + "2006456", + "1006222", + "2007043", + "1003016", + "7004219", + "3005425", + "6002744", + "0006475", + "8002703", + "6004729", + "4003960", + "3003074", + "3006978", + "4002716", + "8003745", + "7003057", + "0005996", + "7002762", + "3003147", + "0005040", + "3004938", + "7002939", + "3006593", + "5001794", + "4004148", + "2006934", + "8002769", + "7003712", + "2007753", + "7003146", + "6003783", + "1004015", + "7002810", + "2004575", + "4003315", + "8003078", + "2004210", + "8003785", + "3005463", + "7003578", + "1004073", + "8002743", + "3004806", + "6003384", + "4004835", + "1005539", + "1003383", + "3003725", + "2006172", + "0006766", + "6002884", + "0004761", + "4003063", + "2003374", + "8002688", + "2005151", + "7004071", + "8003558", + "3003869", + "0005541", + "4003340", + "3005660", + "3006960", + "4002220", + "6002876", + "4004771", + "3006747", + "1004892", + "5001147", + "7004990", + "5001326", + "3005401", + "4003573", + "3005344", + "2004895", + "1005062", + "2005206", + "6003018", + "1004636", + "6000001", + "4002904", + "6004651", + "0003100", + "1006500", + "3006682", + "2004191", + "3003312", + "3005987", + "3006991", + "1005056", + "4003949", + "0004730", + "2007452", + "7002466", + "2007959", + "2006248", + "2005750", + "0003052", + "7002286", + "1005554", + "3004253", + "0003428", + "0003997", + "8003565", + "5001738", + "8001398", + "2004759", + "5001554", + "1003352", + "2003594", + "2007083", + "3004308", + "7002598", + "4002880", + "4004657", + "5001711", + "0006333", + "0006150", + "3005053", + "1006084", + "2007456", + "0003835", + "2007267", + "2003395", + "7004979", + "2003728", + "8001330", + "7003243", + "0005475", + "5001118", + "7002338", + "2005691", + "1004931", + "2004338", + "0006945", + "8001360", + "2005734", + "0005153", + "1004439", + "5001057", + "3003567", + "5001372", + "2006434", + "8001780", + "0004020", + "0004680", + "6002808", + "6004483", + "7000002", + "7003066", + "5001836", + "3004639", + "6003554", + "2003815", + "1005852", + "8003306", + "3006575", + "1004546", + "2006992", + "2003584", + "1005478", + "3004415", + "7003238", + "4003780", + "2005939", + "1005761", + "4004857", + "8001944", + "8002562", + "0006185", + "5001164", + "4003109", + "4004947", + "7004695", + "1005165", + "0006689", + "0003277", + "7004260", + "0005394", + "3005346", + "1003102", + "1004300", + "3004054", + "4004656", + "2003251", + "8001840", + "2006337", + "2007859", + "2007386", + "5001871", + "2007117", + "6003065", + "1003294", + "1003513", + "1005660", + "8001416", + "6003691", + "4003051", + "2003724", + "4002909", + "2004444", + "3003553", + "7003017", + "3006041", + "4003825", + "7004600", + "3003260", + "4004084", + "2007055", + "4003211", + "3004160", + "4002815", + "2006613", + "0006110", + "0006963", + "4003229", + "0004942", + "2004238", + "5001274", + "1003672", + "8003554", + "0006260", + "0003466", + "2007590", + "3004441", + "5001198", + "0003319", + "7002650", + "1004069", + "3006858", + "1006053", + "3005380", + "6003739", + "7004213", + "1006141", + "4003706", + "7003054", + "0006027", + "8003268", + "7002753", + "3003969", + "7003795", + "6003738", + "2007220", + "0006827", + "0006111", + "3006126", + "8003416", + "0004609", + "1006388", + "1003032", + "6003754", + "3004214", + "2005913", + "3003116", + "5001002", + "3004195", + "8001713", + "4003592", + "8001249", + "3003319", + "2007532", + "2006331", + "5001593", + "8003143", + "5001312", + "0005455", + "0006472", + "3006098", + "3006613", + "2005321", + "5001992", + "8002605", + "3003840", + "4004493", + "1006301", + "1005817", + "0004616", + "3003630", + "1005947", + "0005515", + "7003422", + "0004281", + "2007189", + "2003132", + "4004778", + "6002939", + "6004781", + "8002453", + "4004186", + "5001135", + "0006746", + "8002018", + "2003027", + "6002778", + "2005837", + "5001172", + "3003406", + "2005090", + "8003845", + "2003512", + "2003299", + "3004849", + "7002228", + "0005468", + "5001260", + "8002401", + "3006264", + "5001892", + "4003413", + "4004980", + "8003215", + "6004008", + "1003568", + "0003018", + "3003141", + "1004490", + "7002763", + "1003931", + "4004665", + "4002382", + "4004332", + "7002101", + "0004444", + "4004216", + "2004727", + "8003196", + "2006038", + "4002073", + "2007686", + "2007514", + "6004454", + "6004914", + "4002726", + "4004551", + "0004167", + "2007236", + "8001246", + "1004381", + "3005347", + "6002594", + "6004571", + "8002689", + "3005522", + "6002446", + "2003656", + "1005365", + "4003337", + "3005588", + "1004557", + "3003572", + "7002196", + "8002304", + "1006999", + "0003073", + "2006739", + "3004814", + "1005201", + "0003115", + "1004608", + "1005238", + "3006731", + "8003843", + "0004547", + "2003490", + "3004201", + "0005580", + "0006927", + "2003748", + "1005469", + "3005386", + "1005611", + "6003631", + "0004346", + "1003486", + "7004554", + "7003784", + "7004565", + "8003494", + "3004711", + "1006196", + "2004726", + "0005587", + "1005898", + "8001799", + "7003266", + "4003913", + "8003914", + "1004672", + "3006143", + "7003953", + "2006399", + "3006307", + "3006850", + "0006230", + "1004219", + "4002850", + "8003200", + "2007089", + "3006622", + "4004360", + "7004788", + "7004316", + "8001891", + "4002550", + "6002567", + "7002976", + "4003155", + "2006458", + "6002281", + "5001891", + "2005312", + "8003165", + "1003941", + "2003508", + "4004387", + "2004288", + "0003928", + "6002041", + "2007380", + "1006572", + "0004208", + "1005546", + "3006113", + "2006537", + "7002593", + "7002297", + "4004619", + "3004852", + "1004713", + "1006906", + "0003594", + "2004369", + "3004272", + "0004745", + "6004237", + "2003779", + "4003892", + "4002435", + "3003250", + "4004834", + "2005622", + "0005236", + "8001161", + "2007058", + "2004582", + "1003798", + "0006521", + "3005178", + "6004605", + "4003160", + "2003469", + "0005102", + "1003695", + "7002399", + "2006741", + "7002262", + "0006767", + "2006582", + "6004406", + "1006902", + "7003801", + "6004561", + "1003860", + "8001077", + "8003671", + "3006392", + "7003898", + "3003940", + "8003166", + "2003280", + "6002658", + "8002387", + "2004635", + "0006845", + "6004207", + "2006669", + "2005038", + "8002231", + "4004676", + "4002560", + "4004602", + "4002751", + "7004564", + "0006538", + "1006641", + "0003902", + "3003412", + "1006631", + "0003134", + "0005344", + "6003635", + "3005152", + "6002799", + "6002490", + "7004398", + "3006706", + "0006321", + "0003715", + "3006976", + "2006861", + "2006549", + "3005667", + "6004380", + "4002852", + "1005558", + "6004067", + "1005248", + "2003362", + "1004152", + "7004175", + "4002613", + "2007683", + "3005164", + "1004830", + "0003467", + "8003946", + "6003564", + "4002095", + "2006803", + "1004772", + "4003041", + "7003123", + "1004508", + "2004401", + "7002797", + "2005779", + "0005907", + "7002125", + "2006293", + "0004554", + "3004130", + "6002813", + "2006329", + "4004220", + "4003095", + "6003396", + "6002801", + "6004492", + "2006314", + "3006665", + "3004069", + "2007883", + "4002652", + "3006139", + "1005961", + "3005754", + "3006742", + "8003905", + "2006315", + "2003930", + "0005191", + "8001841", + "3004091", + "2007601", + "4002539", + "1003995", + "3004279", + "2005187", + "4002353", + "1004762", + "2003871", + "2003283", + "2006585", + "0006296", + "4002356", + "2006670", + "1005508", + "6004249", + "2006653", + "4002736", + "1005861", + "6003951", + "4004315", + "0006590", + "4002848", + "7003523", + "3004093", + "2006611", + "3005822", + "3006522", + "7003443", + "0006152", + "6002593", + "1005800", + "2003217", + "0003943", + "2007659", + "7002519", + "2004270", + "8001150", + "3003497", + "3003042", + "8001705", + "3003674", + "8003150", + "8002330", + "1006202", + "1006741", + "3005670", + "2003195", + "2006680", + "2006740", + "2007974", + "5001734", + "5001020", + "6002183", + "7002848", + "4003045", + "8002595", + "0006902", + "7004883", + "8001605", + "0004305", + "0005537", + "2003738", + "7004516", + "1004429", + "2006278", + "0006780", + "2007603", + "2003224", + "2007708", + "1003242", + "2007454", + "0006660", + "4002581", + "4004182", + "3005137", + "8002539", + "8001375", + "3006561", + "8001734", + "2004420", + "6004260", + "2006668", + "2004954", + "1004643", + "2005819", + "3005536", + "1004786", + "3003852", + "2007893", + "1006181", + "8003883", + "5001572", + "6002854", + "7003845", + "3005582", + "0006061", + "2003211", + "3005051", + "3005907", + "2003316", + "0005167", + "3005314", + "6003167", + "2004059", + "2005102", + "3003686", + "2005098", + "3005915", + "3004789", + "1005247", + "3003534", + "8002199", + "4002427", + "2005478", + "5001138", + "8002804", + "6002496", + "0003479", + "1004803", + "7004248", + "1003330", + "8002129", + "2003015", + "6003406", + "1005807", + "3003936", + "6003418", + "1003971", + "4002232", + "0006385", + "7002701", + "8002768", + "1005823", + "8001691", + "8002425", + "2007507", + "2005026", + "2003073", + "2007030", + "0004519", + "0005565", + "8002022", + "4003184", + "6002837", + "0004398", + "5001912", + "1006128", + "7002227", + "4004179", + "0003761", + "4004600", + "8002243", + "2004478", + "6004029", + "0003312", + "2005725", + "0006425", + "6002655", + "3005526", + "0005275", + "6002186", + "1006257", + "8001918", + "3003153", + "7003177", + "0003175", + "3004213", + "8002057", + "6004094", + "2003520", + "2006551", + "3005628", + "2006471", + "3006394", + "3003998", + "7003502", + "2006778", + "0003901", + "2004195", + "8002940", + "3005034", + "2007265", + "2003902", + "8001234", + "1006655", + "1004901", + "1003994", + "7004176", + "6002664", + "8002497", + "2007034", + "3004085", + "0006994", + "8001849", + "1003934", + "4004642", + "0004857", + "6002062", + "3005118", + "0005938", + "3006115", + "3004027", + "3003539", + "3003909", + "1005599", + "2003191", + "8002454", + "8002799", + "1004145", + "8002950", + "7004230", + "3004999", + "8001092", + "0003254", + "2003578", + "7004476", + "8002245", + "4004540", + "2005958", + "7004562", + "4004052", + "3006795", + "6004080", + "6002709", + "3003531", + "3004344", + "8003138", + "2004130", + "8001505", + "4004533", + "6002651", + "4004900", + "4002975", + "4003756", + "7002100", + "6004773", + "2005694", + "2007873", + "1005477", + "2005614", + "6004040", + "3006487", + "2006899", + "0003306", + "3004771", + "6002867", + "6004327", + "3006184", + "3004342", + "3003873", + "8003877", + "0006643", + "2006335", + "6004222", + "3003654", + "6004584", + "8001531", + "0005186", + "4003704", + "7004519", + "0005716", + "1005568", + "6002016", + "0005724", + "2003766", + "4004183", + "5001398", + "2006285", + "8003374", + "6004198", + "6003775", + "1003197", + "4004447", + "7003018", + "2004311", + "3004652", + "3006214", + "6002147", + "3003367", + "1003682", + "2007057", + "2004168", + "5001137", + "0005564", + "6002077", + "1004286", + "1003554", + "1005510", + "4003974", + "2004634", + "4004973", + "2005631", + "2005220", + "2003963", + "5001409", + "3003359", + "3006915", + "4002147", + "0005342", + "2006944", + "3006707", + "1003598", + "1004698", + "2007605", + "2005462", + "3005124", + "2004209", + "0006243", + "7002000", + "1003233", + "3005994", + "3004322", + "3003598", + "4004623", + "2006689", + "3005379", + "0005249", + "6003299", + "8002977", + "1003413", + "7002736", + "2003843", + "2006082", + "6004790", + "6002883", + "1005107", + "6003255", + "2007431", + "7004473", + "7002645", + "6002442", + "2006619", + "0006595", + "2003816", + "4003341", + "1006978", + "8001177", + "4003292", + "0006239", + "0006390", + "2005522", + "7004497", + "3004882", + "2006366", + "7003659", + "8001462", + "4004252", + "6002061", + "2006321", + "2007578", + "4004291", + "4003118", + "2005306", + "7004756", + "3005631", + "0006379", + "6004471", + "6004371", + "0006593", + "7004431", + "7003160", + "6003439", + "5001219", + "0006737", + "3005583", + "4002819", + "2004620", + "0006363", + "0006189", + "0006344", + "2005593", + "3005211", + "8003910", + "0003013", + "1004255", + "8001319", + "1005150", + "8003844", + "0005944", + "1005297", + "2007157", + "8001174", + "3004335", + "7002507", + "4004035", + "3003246", + "1005779", + "1003928", + "4002266", + "6002105", + "2007208", + "8002853", + "6002836", + "2003233", + "7002017", + "5001670", + "2005084", + "7002778", + "2006108", + "1003013", + "0006612", + "1006341", + "6004072", + "3004251", + "1005023", + "1003988", + "2004058", + "2006328", + "8001745", + "4002883", + "0003326", + "8001595", + "8002395", + "2006517", + "8003105", + "2004184", + "1003107", + "0004320", + "0006119", + "0005765", + "1005134", + "8001871", + "6003616", + "4003957", + "2005176", + "7003023", + "0006930", + "1003902", + "5001268", + "7002351", + "8001059", + "7002236", + "8001102", + "0005653", + "2005703", + "3003652", + "0003039", + "6004132", + "3006793", + "3005272", + "8002678", + "4004131", + "0003213", + "6003452", + "4002178", + "0004739", + "2003684", + "3006155", + "8002352", + "2006111", + "5001760", + "5001895", + "7004057", + "8001026", + "6004226", + "2003912", + "7002577", + "4002568", + "4004774", + "8001190", + "2003055", + "1006187", + "3004724", + "0006561", + "1005962", + "3006369", + "4003365", + "7004481", + "7003682", + "8001907", + "3003841", + "1005550", + "3005969", + "8001788", + "3003688", + "6003789", + "7002828", + "2005925", + "1005079", + "2005786", + "3003724", + "8002878", + "4004172", + "2006996", + "1003092", + "1006283", + "2006707", + "2004319", + "2004488", + "5001970", + "2006919", + "1005093", + "7003247", + "7004392", + "1004403", + "7004726", + "1004221", + "2004707", + "7004716", + "2003159", + "4002512", + "0004034", + "0004304", + "1004105", + "7002177", + "7003655", + "0005726", + "8002241", + "1003287", + "7004623", + "1006787", + "8003382", + "5001104", + "3005212", + "3003763", + "4003214", + "4002628", + "8003296", + "8001932", + "1005174", + "4004542", + "3006134", + "8002411", + "8001896", + "2003757", + "8001706", + "6004905", + "1003180", + "7004478", + "0005990", + "4004593", + "7003134", + "1005206", + "8001998", + "0003800", + "3006898", + "7003145", + "2005096", + "7003624", + "3003038", + "8001718", + "1006455", + "0003304", + "0004032", + "3003217", + "3006534", + "1004292", + "2004860", + "1005871", + "8001492", + "4004616", + "6002947", + "5001251", + "6004408", + "6004956", + "2004599", + "2007724", + "2003577", + "3003903", + "4004913", + "5001611", + "0005086", + "4002520", + "1006649", + "2007980", + "3003706", + "0004698", + "1005442", + "8003336", + "4004049", + "7003598", + "4003595", + "2003540", + "3004551", + "1005229", + "7004489", + "7004836", + "1003425", + "4004119", + "4004841", + "1003778", + "5001774", + "1006867", + "6004133", + "6003806", + "6002889", + "2007000", + "0003072", + "8002983", + "1004161", + "1006080", + "7003365", + "0004622", + "7004912", + "2004027", + "4004264", + "8003562", + "6003912", + "7003106", + "0003042", + "7004098", + "3004817", + "3003603", + "2007623", + "4003855", + "4002602", + "3003584", + "7003185", + "3005122", + "1006920", + "2006153", + "0005443", + "3004008", + "0003930", + "2007543", + "0005334", + "3006809", + "1004108", + "0003194", + "7004981", + "0003448", + "2006526", + "3006947", + "1006073", + "0004990", + "6002869", + "0005071", + "2007285", + "2004183", + "3003728", + "4003428", + "7002365", + "7002318", + "3005955", + "0003742", + "6004177", + "3006318", + "0004189", + "6004227", + "7002865", + "2007413", + "3005453", + "2005182", + "8001879", + "2006382", + "3004398", + "0006889", + "6003818", + "8001061", + "4003594", + "7003616", + "3006038", + "6003166", + "4004130", + "4003125", + "6004610", + "8001244", + "3005445", + "1003635", + "0004094", + "8002083", + "4003797", + "8001333", + "7002213", + "8001357", + "6004769", + "4003057", + "4002023", + "1004275", + "1004607", + "3003988", + "0005925", + "0005817", + "4004509", + "6003704", + "0003502", + "7002850", + "8002947", + "1004249", + "1004743", + "6004918", + "5001995", + "0004245", + "1004612", + "4002578", + "7004235", + "5001393", + "1004396", + "0003106", + "8003238", + "3003551", + "6002469", + "3003049", + "1003732", + "6004753", + "1005881", + "1006612", + "6003944", + "0003444", + "6003574", + "3005207", + "0006140", + "3006057", + "4002451", + "5001811", + "6004194", + "7003280", + "4004441", + "3005120", + "0005428", + "0003034", + "1006484", + "2004577", + "3006289", + "7002136", + "3005392", + "1004058", + "0003745", + "1004086", + "7004284", + "2003264", + "4004431", + "8003477", + "6003477", + "2003715", + "2003368", + "4002025", + "0003358", + "0004709", + "0005158", + "1004937", + "7002453", + "1005456", + "3006492", + "1004627", + "0003221", + "1006980", + "6003191", + "0004729", + "4003472", + "2007318", + "4002499", + "7004197", + "8001304", + "5001250", + "7004142", + "8002964", + "3003215", + "3003871", + "5001749", + "1005966", + "3006705", + "7002988", + "4003907", + "6004012", + "7002465", + "2005120", + "3003595", + "1006240", + "3005574", + "1003457", + "6004599", + "5001430", + "0004470", + "4003566", + "3004997", + "7004298", + "3005503", + "0005055", + "3006348", + "4002839", + "2004385", + "6004977", + "4003880", + "6003075", + "6004295", + "2003112", + "2007909", + "1003407", + "2006350", + "4003487", + "1003764", + "3006568", + "3006940", + "7004395", + "7004323", + "0006443", + "6003105", + "0006084", + "4002133", + "4003236", + "6003184", + "2005405", + "1006385", + "8002376", + "1003903", + "5001298", + "6004688", + "3004435", + "7004571", + "3003037", + "8002267", + "1005680", + "5001497", + "7002567", + "6003223", + "2003267", + "2005472", + "6003729", + "8001715", + "0005405", + "0005787", + "7004144", + "4003164", + "0003574", + "0003360", + "6004355", + "1006753", + "7004156", + "7002992", + "8002254", + "4004446", + "0004947", + "5001745", + "4002513", + "1006581", + "8002900", + "2007967", + "5001987", + "3003809", + "5001915", + "0006201", + "4003655", + "6003287", + "3005275", + "0004814", + "0003007", + "6002774", + "4004831", + "1005727", + "4003943", + "1005162", + "7003304", + "1004519", + "2005583", + "1006996", + "6002089", + "7002022", + "2006802", + "8002446", + "8001162", + "3003673", + "8001750", + "4004001", + "8001121", + "4002261", + "1006447", + "2003557", + "0006436", + "0003700", + "7004505", + "8003224", + "1005540", + "7003455", + "3005821", + "2006444", + "1004287" + ] +} \ No newline at end of file diff --git a/webpage/text_files/anno_rd1/text_en_display.jsonl b/webpage/text_files/anno_rd1/text_en_display.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d00bcdf3697d93d7355bddbb0e886fe9dcfbdea5 --- /dev/null +++ b/webpage/text_files/anno_rd1/text_en_display.jsonl @@ -0,0 +1,30000 @@ +{"id": "3003896", "video_name": "b271d77d-b09e-50e6-8f00-b2b647249284", "text": "underwater woman falling deeper surrounded by many floating abstract brush strokes and debris "} +{"id": "6004706", "video_name": "3ff3b4c6-f92a-526f-9075-4dabe78789b0", "text": "high resolution cgi animation a small boy walks along a cute country path "} +{"id": "3005501", "video_name": "22ea2bef-19c2-5539-a051-263c666ea253", "text": "One of the friends, their face contorted in madness, standing alone in a dark corridor, their hand pressed against a faded, cracked mirror. 3d comic cartoon "} +{"id": "3006574", "video_name": "00d50fa5-6df4-5f51-97bf-846e4f886058", "text": "waves crashing on the beach. Dolly toward waves "} +{"id": "0004967", "video_name": "12730f91-8baf-5aa4-94a9-4fc3d0cbfc2a", "text": "Monkeys playing in Radmir RolePlay CRMP 4K Ultra HD "} +{"id": "3006567", "video_name": "d2d7b08c-66e2-57e1-a78b-d223f9097264", "text": "giant skeleton Pharoah made of chrome circuitboards surrounded by smoke made of glass, super 8mm film footage, zoom and pan "} +{"id": "0003932", "video_name": "00154155-84e1-575a-ae9a-9174687a86c2", "text": "This was once a place where people laughed and children played happily. "} +{"id": "1004008", "video_name": "4a24c4fc-6791-51a7-82f8-492490e376b1", "text": "fresh fruits Message: GrowCode (Font: MODERN) "} +{"id": "7003149", "video_name": "4095e718-46f7-5f0b-870a-dc43edb41bf5", "text": "a mound of ants crawling around Message: ARDVRK (Font: MODERN) "} +{"id": "2004026", "video_name": "be366522-6100-5d82-b4e1-6652dceb6b4f", "text": "a squirrel skateboarding through Tokyo at night "} +{"id": "7003127", "video_name": "3026e3c8-9153-53b5-bd0c-b4152575338d", "text": "an ambulance with front view, ambulance wirtten on it, real "} +{"id": "7004568", "video_name": "f54a7ff4-eaf6-5bdf-9af8-f32826d872cd", "text": "creat a landscape , a boy and 2 freind travel in jungle "} +{"id": "3005850", "video_name": "c1d789ee-4430-5405-bfdb-e66c1de30ad3", "text": "an animal cell structure showing inner organelles "} +{"id": "6002242", "video_name": "419d695e-1105-5e2f-8627-6b09d1e47265", "text": "A funny airplanes flying in the sky, pastel color palette "} +{"id": "7003834", "video_name": "c4418dd6-f251-58ee-a224-e48435ead701", "text": "film noir, medium shoot, street lights, slow zoom out, young man with round black glasses, looking dull, heavy rain "} +{"id": "6004970", "video_name": "aeab9a7b-610a-5d8e-a3e8-d0675ac52c6a", "text": "two cats dancing with a koala "} +{"id": "1003252", "video_name": "3bda7339-ade4-57c7-bd77-ab85e942b0a6", "text": "crumpled old writing paper covered in scribbles Message: ONE DAY SOON (Font: MODERN) "} +{"id": "3004363", "video_name": "8128c558-0ed7-5732-877d-592837259d7b", "text": "create jungle animals seating down sharing stories include lion, elephant, tiger, giraffe, rabbit. 3d, cartoon style,4k, cinematic "} +{"id": "7002777", "video_name": "010ce4c1-c967-541e-9d37-71f0df8af6e1", "text": "humanoid alien with many futuristic accessories "} +{"id": "2003226", "video_name": "b061d565-908c-593c-ac3f-3795a6f2766f", "text": "pear shaped diamond 203 carat on display "} +{"id": "4002552", "video_name": "4860fc88-67a7-5e58-ba17-31c0a1efbecf", "text": "A little girl painting a landscape "} +{"id": "8003618", "video_name": "a75baca1-6603-5688-a558-e63326682f57", "text": "A beautiful girl is blinking her eyes and smiling. "} +{"id": "2007645", "video_name": "b32bd165-0178-5fb4-b7d0-e2d911b75f23", "text": "Visual of reaching a destination but emphasizing enjoying the journey, maybe characters enjoying a scenic view together. "} +{"id": "0006234", "video_name": "28d9f3a8-26f5-5038-b2e8-253b3264da95", "text": "A 30 years man walking in the busy street of a sea beach, at evening light, sunset, 4K, HD, Photorealistic, cinematographic "} +{"id": "4002383", "video_name": "6600170b-9206-5bd5-b6ff-f835ffa54061", "text": "The next day, Lily girl and best friend, Sam. "} +{"id": "3006164", "video_name": "57fc9a74-1d6e-5620-9402-d5dd90969c72", "text": "Beware the allure of the unknown, for curiosity may lead to a dance with darkness that lingers long after the music fades. "} +{"id": "6003361", "video_name": "89bdb97b-e8e7-5919-b7f5-84c2ae0731cb", "text": "The camera switches to Amy, who looks deep into the forest, her face filled with fear "} +{"id": "3004732", "video_name": "730304ac-9120-523b-a786-beaf45d249d8", "text": "little boy dancing ballet in an dance academy "} +{"id": "1004951", "video_name": "5b8f24eb-afd9-5389-992f-abb1212bd8d7", "text": "the city celebrated the hero they had lost. "} +{"id": "2006703", "video_name": "efebd381-1f59-5cf2-bd2f-02d6ba1ebbc8", "text": "3 boys are eating pizza at home "} +{"id": "7002917", "video_name": "ada9471b-d0eb-5c2a-b46e-2035340d0220", "text": "Very detailed super cute tabby cat with super fluffy hair and smiling, Disney style "} +{"id": "4004659", "video_name": "5870945c-16b0-5fe9-8239-20c4a2860153", "text": "Transition to a lush green forest with sunlight filtering through the trees. "} +{"id": "2006559", "video_name": "b0f86fbc-6305-5bb9-8549-3c81d8ce753d", "text": "led them down a dark path "} +{"id": "2005855", "video_name": "b3e91da5-9035-503b-9d16-6523a5e683fe", "text": "people breakdancing on a cardboard box. Make this cartoonish "} +{"id": "4003468", "video_name": "aad29556-9c6e-5326-8393-c594d9761589", "text": "A cute wedding video wearing a Xiuhe wedding dress "} +{"id": "7004466", "video_name": "76b05d90-6ca3-5024-a0a8-ebb7b4ab8c69", "text": "A leaf falling from a tree, the effect of the wind blowing the leaves, cartoon style, Pixar style "} +{"id": "2005340", "video_name": "4382e6ef-be4e-5082-b1dd-bb09418d1e26", "text": "an exchange student looks happy in the camera "} +{"id": "8001951", "video_name": "9de48c23-f8a6-565b-a69a-6c52e1b44892", "text": "There is a misty valley. A Turkish flag is waving in the middle of this valley. "} +{"id": "3006315", "video_name": "9e371c7e-c022-5364-8186-00b658689a32", "text": "Anya Taylor Joy sitting in underwear "} +{"id": "1006647", "video_name": "79cc9595-d800-5453-95f4-b00207b80068", "text": "Aquarius zodiac sign in the form of a man pouring water from a jug "} +{"id": "0003965", "video_name": "00da7c18-d676-575f-a200-bc4ae90e504d", "text": "employee looking in the puzzle piece "} +{"id": "3004607", "video_name": "b76f9ca5-7171-508c-b705-e90958d8359d", "text": "a cute couple sit under two trees like in a fantasy world, sparkling effect "} +{"id": "2005217", "video_name": "c5234678-33cf-536a-b9a9-e7b5d6c3bde1", "text": "dark room with a window and its raining outside "} +{"id": "0006847", "video_name": "342686cf-5a4f-5941-b766-672b14a00b5c", "text": "a coffee farm landscape from costa rica, a volcano in the back, with a typical small costarican old house, ultra hd, realistic, vivid colors, highly detailed, UHD drawing, pen and ink, perfect composition, beautiful detailed intricate insanely detailed octane render trending on artstation, 8k artistic photography, photorealistic concept art, soft natural volumetric cinematic perfect light Message: 1 Attachment "} +{"id": "1003067", "video_name": "385cdaea-1364-5c3a-aca2-2bcbbb3ab699", "text": "gladiator, moving, sound effect: swords clashing "} +{"id": "0005939", "video_name": "2384ac11-68c5-5c72-86a3-e4101e04a2bc", "text": "A medieval Chinese city at night under a beautiful moon and there is one lamp burning in the city "} +{"id": "1004374", "video_name": "50c9e61c-b8cd-5821-90af-774ee94e4950", "text": "Visualize Sparkle, a small and friendly star, shining among the others. "} +{"id": "3003186", "video_name": "cdb15193-3e1e-5e6a-ab4f-c9c54098ab3f", "text": "ukrainian guardian of the city who war yellow blue color brone costume superhero "} +{"id": "4002344", "video_name": "188462b1-c3cc-5074-8532-98edaa67e051", "text": "Old Kay Lisa was an ancient woman who lived alone in a small apartment on the top "} +{"id": "1006109", "video_name": "7013e2f8-defd-5fd8-9f20-8826f896906a", "text": "Snow White wandering through the dark and mysterious woods, looking frightened. 9:16 "} +{"id": "1004704", "video_name": "575fa507-5b5f-5920-8160-1b866fb1411e", "text": "Scene 1: Introduce the boy and describe him as he starts walking down the road. "} +{"id": "3004712", "video_name": "72607b12-2c1c-5a18-b9be-f4d99a5cd706", "text": "now continue the above scene with Introduce the concept of developmental disabilities and the cognitive challenges children may face. "} +{"id": "7002776", "video_name": "bdb70246-983e-5009-a278-ce20b361e6ee", "text": "Musk was so excited that he was dancing "} +{"id": "8001800", "video_name": "c2190f99-f1f6-5706-990f-a0cffe933ea4", "text": "luxury villa with infinity pool, panoramic windows and ocean views with illuminated palm trees "} +{"id": "3003280", "video_name": "14b2f464-353e-525d-af27-c51529a714f8", "text": "Electric Light Orchestra poster in the window of a 1970s recrod store. "} +{"id": "7003835", "video_name": "1d684f25-f468-578b-b9b8-960f6aae21cb", "text": "an old lady, jumping off a car while it\u2019s moving wow "} +{"id": "2004265", "video_name": "1d6a4e1b-bfa0-5b78-81b7-a4adaf960d0c", "text": "An anime character moving goods walks in a warehouse filled with shelves "} +{"id": "2007015", "video_name": "b41b2a26-22da-51fa-8b2a-3e87d21c155f", "text": "The scene was like a charybdis in the vertical plane, swirling with intensity and drawing everything into its depths. "} +{"id": "6004547", "video_name": "8567d73c-2c76-5290-925f-67562a1e4813", "text": "a detective blue mouse with cartoon style "} +{"id": "1004783", "video_name": "586b0481-aa52-50c6-9ad0-cb1481c115cd", "text": "a couple of crows waiting for a dead man to arise, in a surreal wood "} +{"id": "2006662", "video_name": "595c1dbe-118e-563f-a8ac-de1a8eba6f06", "text": "One day, a young sorceress named Lila arrived at the school "} +{"id": "0004068", "video_name": "02b8877a-6658-5787-acd0-b42b64b77aa4", "text": "woman sad for the loss of a loved one. medidas 1920x1080 "} +{"id": "3006767", "video_name": "9f8389a1-1076-5aeb-942d-1c1edc8e4ca5", "text": "INSIDE VIEW OF PYRAMIDS IN FULL HD "} +{"id": "4002970", "video_name": "ddd32609-d0e0-5625-9318-3a0948afabbe", "text": "The aura shines, the mouth moves "} +{"id": "6002305", "video_name": "3349df80-d748-5bbf-a2c9-01ac42a155ad", "text": "cinematic,happy girl on the beach,pixar style "} +{"id": "5001071", "video_name": "4ddc2d4e-898f-5db1-b2a3-2cfad8491485", "text": "enjoying a car rental services with comfort "} +{"id": "1003518", "video_name": "40f20f78-a149-53fe-9af4-d1579d6fe860", "text": "there were two best friends named Lily and Rose "} +{"id": "3006984", "video_name": "297b0ba6-f370-5ab4-95dc-7bada8c90bf3", "text": "2 green aliens djing at the club, lasers, glitter, lights "} +{"id": "0004678", "video_name": "0d2ea4df-3a5d-5c69-8719-3e022e04faca", "text": "two cute little girls friends talking "} +{"id": "6002047", "video_name": "97b31c9f-220c-554c-ae61-24b43c6cd9a0", "text": "a beautiful sunset and a man sitting on the beach "} +{"id": "4003830", "video_name": "296785a2-59ed-5758-b205-3ddc870393f1", "text": "make me look good, I am only poor on the outside, inside I am warm and rich "} +{"id": "3005138", "video_name": "576c6ae5-b0f7-5e25-84b6-8f5470b24cd9", "text": "world is melting in cosmos, cinematic lighting "} +{"id": "5001238", "video_name": "8b1633ff-0369-548a-9c87-0c5156580f2f", "text": "Woody the cowboy Moving his hat "} +{"id": "1006633", "video_name": "79973fdb-dd5c-57d7-b102-d943b20f9fe4", "text": "guy out of a Disney movie with a straw hat "} +{"id": "7002929", "video_name": "db92534b-a5dd-5b8b-9974-efb5f37c3756", "text": "Video length 4 min pepa pig plays with mum and bear "} +{"id": "1006839", "video_name": "7d0ad8bb-c7fe-514d-9db9-66eebbc6b5b6", "text": "air jordan 1 sneakers take off into space and earth "} +{"id": "8003288", "video_name": "3c91d34e-7276-5706-8450-8637c57600c7", "text": "a portrait of God, looking over black mother Mary and baby Jesus during the renaissance culture "} +{"id": "2005507", "video_name": "698132f9-3f0e-5edd-8b91-7deba99d14f3", "text": "vast chamber with a massive stone door, sealed shut. Four keyholes adorn its surface. "} +{"id": "8002939", "video_name": "6268cfe8-0ed8-5d88-9b2e-fad65e4d695e", "text": "Wooden figurine walking on a treadmill made out of exercise mat. "} +{"id": "5001012", "video_name": "cf82015b-b459-58e7-bf2b-be44ba482530", "text": "The next morning, in a different suburban backyard. A boy named Leo discovers the deflated balloon on the grass. "} +{"id": "8001626", "video_name": "b73278c5-20e7-507d-923d-ead8a6e23939", "text": "Screensaver for the minecraft game channel Memhik Play "} +{"id": "3006008", "video_name": "39e7ddcb-8714-5b31-b943-3e7288dc2a2f", "text": "Introduction: The Rowlatt Act The Rowlatt Act, officially known as the Anarchical and Revolutionary Crimes Act of 1919, was a law enacted by the British colonial government in India during the early 20th century. It aimed to suppress revolutionary activities and dissent against British rule in India. "} +{"id": "1004125", "video_name": "4c677bf1-a939-5d8a-a351-5227c39063bf", "text": "the text full in a locus Message: 1 Attachment "} +{"id": "3004173", "video_name": "b1e8a057-5264-5c4c-a944-7bf167f0c6a7", "text": "Illustrate Carl, the caterpillar, wrapping himself in a silky cocoon, mimicking the chrysalis. Show the gradual transformation as he wraps himself tighter each day. animce cenimatic ,high quality , 16:9 "} +{"id": "4003460", "video_name": "e5fdb5fe-bb9e-5e4d-9df0-6e982d2c8ea6", "text": "Spiderman Scene 1: You start the day in bed, with a bored expression on your face "} +{"id": "1006492", "video_name": "76e25c7a-a5cc-539d-9d59-bcbd1a7b1735", "text": "fixe shot of rain falling on a house with a tin roof in the caribean by night "} +{"id": "1004089", "video_name": "4bc0131e-17fa-5b19-adc4-107c0be6e379", "text": "This scene conveys the theme of happy incident as Jessica and David meet under the vibrant autumn canopy, symbolizing the start of a new chapter in their lives. "} +{"id": "2003892", "video_name": "7337241a-7b6f-5760-a536-495348bb6026", "text": "giant alien meeting in the hall "} +{"id": "8003729", "video_name": "85918a54-1b62-5f03-9183-14afc15bf7ee", "text": "create a video which explains about Nehamaiah chapter 1 "} +{"id": "0005023", "video_name": "135d719c-77ca-5fc7-a115-83f3ad20b48d", "text": "Learning Justice and Burial Etiquette from Crows: Valuable Lessons from the Avian World "} +{"id": "1006366", "video_name": "7496b5f3-4507-5da1-a884-47e29c265dcc", "text": "A young man receiving a phone call and showing a shocked and saddened expression. "} +{"id": "3003369", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "From the back view of the little boy and the little girl, the two slowly walk forward hand in hand, the shadow is a meadow, and the mountain is in the distance "} +{"id": "2006409", "video_name": "231cafce-2a14-5331-b4c4-af6ed895be37", "text": "snow in village in night view full moon night "} +{"id": "2006579", "video_name": "4eda8ef5-7380-51d2-96b9-37312bb4eaf9", "text": "she encounters the Guardians of Atlantis, majestic sea creatures with ancient wisdom etched in their eyes. "} +{"id": "6004290", "video_name": "b887a95c-a18a-5acd-b911-02692b8054dc", "text": "the cerimonial of sacrifice of the robot bunny "} +{"id": "3003098", "video_name": "0892de0f-94e2-55e5-8b04-f714face3c6d", "text": "Jewish man praying alone in a modern synagogue "} +{"id": "3005036", "video_name": "6567991d-c358-5190-b01b-1b43515981cc", "text": "sexy lady on the moon where 3rd world war happen "} +{"id": "7002885", "video_name": "79ecafab-43c5-5944-bfcc-99dfca3787a7", "text": "a malaysian housing area in the morning "} +{"id": "8002745", "video_name": "58963a7f-69db-5588-9cab-d4e21f7a13c5", "text": "galloping horse with wings white, flying across mist of clouds, special effect, shining sunrays, flapping wings "} +{"id": "4003812", "video_name": "df762905-fb7b-5d94-8886-8e5bfdf63984", "text": "song dynasty,china,A vast military camp with fires burning and soldiers preparing for battle "} +{"id": "6004885", "video_name": "19a87346-563a-5bf9-8cbe-4496f1502ee5", "text": "One person turns the knobs on the oven. "} +{"id": "6003816", "video_name": "cc94dcc8-3170-53d7-9b32-46ff33b50846", "text": "A small fox sleeps by the river. Later, a butterfly flies to it and lands on its nose, which wakes it up. "} +{"id": "6003241", "video_name": "07868bc5-e81d-584c-a4ac-65b18e31e896", "text": "While both mother and son were chatting, the monkey who had gone out, climbed over the wall and jumped in. "} +{"id": "6004654", "video_name": "1136d35c-48f5-5ad2-9563-a180f3153792", "text": "the girl start dancing on a beautiful song hairs moving slowly perfect face perfect hands perfect cloth , potrait size video, genrate uper and down image and make it portrait "} +{"id": "1004943", "video_name": "5b67d3a3-1cc0-5bea-9d66-68bf18371f04", "text": "The Rock Dwayne Jhonson but Skinny "} +{"id": "0005353", "video_name": "1942893b-2f5f-56aa-a531-47579bd97747", "text": "a man in the bottom right of the video walking alone in the rain, scenary, sad, vibrant colour "} +{"id": "4003801", "video_name": "0a7e65b8-d66a-59be-a155-6b8357fb7ac5", "text": "generate a video showing the leader of the Third Reich committing harikari from start to finish "} +{"id": "1004000", "video_name": "4a11ed06-329b-5b42-bb67-028474a1a87f", "text": "a qr code on the nail "} +{"id": "2004366", "video_name": "325241a4-7522-5955-9721-9d4bdf6e6585", "text": "2 alien in a spaceship typing something in a monitor "} +{"id": "1003264", "video_name": "3c1484d8-a8f9-5fcb-b6fa-9616756686f7", "text": "meteor follow, static autumn wood, lake, mount, "} +{"id": "7002887", "video_name": "2523614c-04b6-52d7-9cb7-fd96c943fcbf", "text": "beautiful woman and a man standing on the street "} +{"id": "4003356", "video_name": "7cafad0f-6255-5822-a123-73811d2694c5", "text": "A comic book style portrait of a shirtless man who like Superman, arms folded, a symbol of strength and determination, with an electric blue glow from his navel and eyes. "} +{"id": "8001965", "video_name": "e735c995-8c87-5ad1-a298-b92405b6f711", "text": "wild cartoon animals in happy face Disney style "} +{"id": "6002120", "video_name": "a68d7a88-f0a6-5e9b-9cdf-b6286985fb04", "text": "shoes foot prints, in the farm, 1922 "} +{"id": "0005279", "video_name": "17bd3885-5d8e-52ed-bd72-cfd0714f53a8", "text": "Saving numbers in boxes like illustrated explanation "} +{"id": "1005715", "video_name": "691b4fab-dfb9-58ca-82f1-6901f72c23ea", "text": "a anime boy doing meditation in forest\nWith orange outfit \nCamera zooming out "} +{"id": "3005723", "video_name": "9e84ec47-f608-51b4-99d7-501c749751a6", "text": "talkiing to someone and watching the lcds Message: 1 Attachment "} +{"id": "8002702", "video_name": "d8bda6b3-d000-59b5-abbc-e78289a64fc4", "text": "magical dream with magical animals run in forest "} +{"id": "3006347", "video_name": "66ed4784-7212-5356-a030-25c318415cc3", "text": "Zeus with a thunderbolt, colourful image "} +{"id": "3005479", "video_name": "00f03d39-b640-59da-bf6f-241243bbf58f", "text": "old style drawing vintage city Message: 1 Attachment "} +{"id": "3006844", "video_name": "c3d92009-ce4b-56a3-ba97-7718745519ba", "text": "beautiful manali, hyper realistic, 4k resolution, high octane render, golden hour lighting, intelligent render, drone shot, fast transition, top shot, hyperlapse "} +{"id": "0006786", "video_name": "33239fb9-f958-5045-97b7-a7cfc65eff61", "text": "Football being kicked in the fall "} +{"id": "3004378", "video_name": "2c1c9a4a-0d6e-5ec8-91c5-7173ef12af8a", "text": "video of a black dog running happy on the meadow, running and looking towards the camera "} +{"id": "3006412", "video_name": "39418504-7b42-5c36-87ea-1e7eff51602c", "text": "graphic of tropical bird in foreground and pool party in miami, FL in background "} +{"id": "0006405", "video_name": "2be0bdb5-0d27-5479-8ffd-6c49560745d0", "text": "giant white suv in the narrow streets of quebec city, "} +{"id": "8003569", "video_name": "a60f0caf-830c-5524-98e8-4f9a16f1e841", "text": "a gigantic tree with a starry sky behind it"} +{"id": "2005437", "video_name": "5a4dd05e-309a-5a10-b0fc-43194014824c", "text": "dollyin, zoom in, A small dark old cafe front at night, with a few customers, \u0160vankmajer film shot, stop motion, stopmotion, stanley kubric film shot. "} +{"id": "1003018", "video_name": "377bd0eb-cb4b-5261-81fe-4b2c6dbac5b6", "text": "a chinese book is open and the characters are shining at night "} +{"id": "1006952", "video_name": "7f30f292-1d4b-5577-a628-4ff998b9e4e3", "text": "Embark on a visual journey through the enigmatic realm of time using Unreal Engine. Begin with a bustling, modern cityscape adorned with skyscrapers and digital billboards. Establish the theme of time by seamlessly integrating wristwatches, clocks, and digital displays into the urban environment, showcasing the omnipresence of timekeeping in our daily lives. "} +{"id": "0005311", "video_name": "18543071-9c2f-5657-8242-0895474f89a4", "text": "man with six pac abs and model physique "} +{"id": "7003373", "video_name": "24cc568f-02fa-51cf-b33f-d65926ccdd45", "text": "sinister robot glances at the viewer "} +{"id": "7002119", "video_name": "41b6aed6-fad0-589d-8588-ba99a63afe26", "text": "A perfect thunderstorm in the Pacific ocean in the style of cinematography, beautiful composition, dynamic movement, depth of field, subject in focus, filmic, epic, 8k\uff0cUHD "} +{"id": "3004631", "video_name": "9d52aa54-5b2d-5ae8-8ebd-5666834d5c0b", "text": "I came to a quiet lake. The lake was like a mirror, reflecting the blue sky and tree shadows. The flowers and plants by the lake exude a faint fragrance. I sat by the lake, closed my eyes, listened to the ripples of the lake, and felt the inner peace. A swan floats peacefully on the lake, a tranquil image "} +{"id": "0005889", "video_name": "22d987eb-36d9-54f8-b3b5-36058b0ba873", "text": "The old man is taking care of the garden "} +{"id": "0005313", "video_name": "18638bd2-d6f5-56cb-935b-0ce01d92f68b", "text": "Celebrate Achievements: Acknowledge every small success; it keeps you motivated. "} +{"id": "0006124", "video_name": "27034b3c-d595-5edf-b532-f0e201b50b32", "text": "a santa claus resting at beach with palm trees like Christmas tree "} +{"id": "2004176", "video_name": "bf177e8d-066d-5e6e-8d21-024cc10fb94c", "text": "Ramesh spent several days in the temple meditating under the guidance of Hindu guru Parvasu. During this time he saw the amazing abilities of the Whispering Tree. "} +{"id": "6003372", "video_name": "e542bf31-59ad-5afb-b2d9-b100374588db", "text": "a skeleton eating in a fancy room "} +{"id": "1004885", "video_name": "5a4e3569-e4b5-5743-84ad-46529eb1662e", "text": "A 140bpm dancing Techno cyberpunk perfect featuresshowcases a wild yet captivatingly beautiful visage, with perfect features illuminated by neon lights, embodying a frenetic blend of rebellion and allure "} +{"id": "8001540", "video_name": "23ec65e3-a4ec-5d79-86d0-832c6fae3f57", "text": "now shining brightly, as she returns to the owl with a radiant glow, sharing her newfound light with the amazed forest creatures dancing around her. "} +{"id": "3006062", "video_name": "def3cea6-f11c-5fbb-942d-304398767a4c", "text": "create a forest with a big river and huge turtles "} +{"id": "6004661", "video_name": "0dff62b1-5e04-59a2-a8d5-e26c73ebc669", "text": "extreme close up high camera, of two cocktails and cigarrettes at table inside an elegant restaurant in indochina, morning lights, 1960s,table with an elephant behind her, film shot by Stanley Kubrick and Jan \u0160vankmajer, elegant "} +{"id": "8003330", "video_name": "b07e43bb-aeef-5b32-9102-ebacc9237bf1", "text": "giant chicken head emerging from giant void hole eerie black and white 1970s art film occult red eyes mist Alejandro Jodorowsky "} +{"id": "7003201", "video_name": "111698b3-ed58-5f81-abf4-a36ff19c3acd", "text": "prompt prompt a Warrior Princess standing on top of a mountain next to a dragon, dark fantasy character design, comicbook art, fiery eyes, realistic 3 d style, speculative evolution, anxious steward of a new castle, a digital rendering, attack, has black wings, dnd) "} +{"id": "5001626", "video_name": "9e6e4850-2c12-53c5-8b57-c4e4cc2452b3", "text": "1750 young queen servants circle around her film ortrait cinematography 4k "} +{"id": "5001208", "video_name": "13f38086-ee3d-52bf-8b54-74aa2bb3b315", "text": "The avatar girl running in the sand "} +{"id": "0004974", "video_name": "128f5040-3e8b-5124-818d-b4b2115bed45", "text": "cinematic aerial view of a black vintage car moving in a wreckless speed on a straight road by a city. The area is full of city lights "} +{"id": "6004349", "video_name": "8f711020-3db0-547e-8e2b-7ab605058076", "text": "Show the moment of victory of the Muslim army among the Andalusian Arabs in harsh terrain "} +{"id": "4004800", "video_name": "753665d0-d2c8-5bcc-a625-2efc2e17e5fa", "text": "Show anger in a man with raging fire in their eyes\nDetermined to win at everything "} +{"id": "2006591", "video_name": "608625d2-6bae-5d49-954d-24e89fbc9b02", "text": "But she likes to roam around like a wild deer in colorful frocks. "} +{"id": "7003339", "video_name": "4bd7265a-3af1-5485-8b58-5e17b4e55ff0", "text": "An image representing the essence of togetherness, featuring a family sharing a meal or engaging in a heartwarming moment, emphasizing the emotional core of Diwali "} +{"id": "7002146", "video_name": "1f9ad14f-e5e9-59a1-82d7-ac84b7791677", "text": "THE MAGIC CAMEL AND THE ARABIC KING ON IT in a desert, 4k, HD, 9:16 IMAGE SIZE. "} +{"id": "6003586", "video_name": "df86ff76-1678-56d4-9b16-a462e820721e", "text": "explosion of space, stars and galaxies, rainbow of colors cinematic, imax, film grain, movie "} +{"id": "1005113", "video_name": "5e46dc8c-acc4-5882-ac54-1b69589bd03d", "text": "In the ancient Chinese palace, there is only cigarette smoke, many flowers, lights, and the ground is paved with white stone that will shine. "} +{"id": "3003713", "video_name": "a5babf01-3705-5a08-8334-845d88be30dd", "text": "nightclub security Conduct thorough entry screening to prevent weapons or illicit substances from entering the venue. "} +{"id": "2004649", "video_name": "8ea3add3-ff0e-5d4b-9124-f85d259bc9ea", "text": "a girl putting suntan lotion on. On the beach. "} +{"id": "4003103", "video_name": "42ee1098-e1ea-5ded-8443-e22ec386839b", "text": "Animate a heartwarming moment between the pets and humans, reinforcing their strong bond. "} +{"id": "8001988", "video_name": "1ae259d1-aa9c-515f-98db-ae61354eb85d", "text": "demogorgon from Stranger Things TV show, chasing human "} +{"id": "2006204", "video_name": "81098c53-5ef0-5764-b7d4-e5802ecee2d8", "text": "A man is explaining the features of a vibrating saw blade "} +{"id": "8001383", "video_name": "29f4227b-0d8d-54b8-9f93-951bd4677119", "text": "Bob Marley with his rasta hair, his legacy lives on in his music and his message. He was buried with a guitar, a soccer ball, a marijuana flower and a Bible "} +{"id": "6002632", "video_name": "6afc6c34-99b4-5998-af5b-5224b089d7a6", "text": "Meha Elmo and Meha Cookie Monster dancing. "} +{"id": "7004523", "video_name": "c29c7504-2613-5116-a447-cbaa3365c81a", "text": "a man with red Eyes and red hair is Holding Fire on this Hand and Smiling "} +{"id": "0006587", "video_name": "2f13647a-7993-5518-aad1-8300df641d08", "text": "Understanding, Two puzzle pieces fitting together. "} +{"id": "8003767", "video_name": "93651976-32cc-5efd-8e03-8014cb63794c", "text": "animation realstic motion man walk fire motion "} +{"id": "7003474", "video_name": "4d42815f-1a52-54d9-812d-ac4d62f7dd20", "text": "The god of thunder Thor with the head of a cat "} +{"id": "8003714", "video_name": "80e08194-ea90-5c0c-872e-dc54fe2fc24f", "text": "demon diableries, hell, dancing, party, 1923 "} +{"id": "8003651", "video_name": "ff8cd187-b2cd-5e6f-a185-60c25a7358e8", "text": "a Droplets of dew falling from sky in indian village "} +{"id": "5001754", "video_name": "f87c8fba-31d5-5170-b0e0-c97c4cf9faa4", "text": "man and girl are turning around slowly "} +{"id": "1003907", "video_name": "4816e64d-31c4-597c-a286-3b05af98d6f3", "text": "A beautifully patterned copper bullet spins in the air against a white background. "} +{"id": "7003956", "video_name": "4cbfa768-ad0d-52c7-99b8-8a2eef9e8d82", "text": "Persian Cat punching a labradoodle into a puddle of mud near a park full of tulips "} +{"id": "5001643", "video_name": "b6fde043-a5f3-537d-be74-6639f859af3c", "text": "Ancient Greek male aristocrats, rich blond hair, driving a sheep in sandals, handsome and lively appearance, ancient Greek village "} +{"id": "2007367", "video_name": "b43193bd-60d9-5634-ae9f-c66a3d549eff", "text": "Minimum details. Simple shapes. The family is relaxing in the park. "} +{"id": "1004413", "video_name": "518a7b8e-b624-5182-8b37-fd12e47420ab", "text": "a Hollywood themed new years eve Party on a movieset "} +{"id": "0003562", "video_name": "3f97aca2-d913-566a-b389-17d3cde0c55d", "text": "concept art Apocalyptic cityscape, towering skyscrapers casting long shadows over dark, red and crapes handing of buildings, narrow streets, abandoned cars, crowd in distance. digital artwork, illustrative, painterly, matte painting, highly detailed. crowd movement, "} +{"id": "4002024", "video_name": "d3554ef1-8f4b-5a28-b57f-07dd7f0414c9", "text": "a submarine floats next to the sunken titanic "} +{"id": "3006258", "video_name": "1c6f65e1-90f3-5d3c-8abd-fd62d33048e9", "text": "an alien girl stands against the background of the cosmic sky "} +{"id": "1003522", "video_name": "40fea0f9-cdd7-561a-8679-9e73c593c77d", "text": "Traffic flow on heavily snowy roads "} +{"id": "1006744", "video_name": "7b75096c-2703-5d3b-b531-e0cb9a9904c5", "text": "the tears broke the gothic makeup "} +{"id": "6004187", "video_name": "f784e7a5-993b-5850-a0cc-867f31ea646a", "text": "rapper ice t as an ice sculpture "} +{"id": "0003129", "video_name": "379b6fc1-23e9-5747-a8e5-768afe2aac9e", "text": "masterpiece, centered, a drawing of a girl with flowers in her hair, an anime drawing, featured on pixiv, gothic art, neon blacklight color scheme, multicolored art, shiny colors, beautiful female android, blue image, antialiased, living flora, colorful! character design "} +{"id": "6003462", "video_name": "b76e2420-d44f-506f-87e0-23162908cdf6", "text": "Hip hop dance near future three girls ,animestayle "} +{"id": "5001267", "video_name": "ff9ede23-677c-5e46-99aa-9b0ddfe80a21", "text": "create a video where children and women are crying because of the war and the life impacting them everyday "} +{"id": "7003102", "video_name": "6c441b6c-f562-5462-97ce-ca821d21678c", "text": "starwars the old republic lightsaber sword fight in ancient jedi temple, cinematic, pan left, 50mm lens "} +{"id": "8003216", "video_name": "c9d6eeac-b0c9-50a7-92fb-59fe0984638f", "text": "A big dog running in the house "} +{"id": "6004293", "video_name": "4bae3274-3d18-560e-8b00-df40b12bddbc", "text": "4k blond female model zooming on to her captivating beautiful vibrant emerald and light brown eyes winking gracefully glide from left to right "} +{"id": "1005363", "video_name": "629625db-a6f6-595f-87cf-b431730033e9", "text": "The white clouds are moving and taking the shape of a love heart Message: 1 Attachment "} +{"id": "2004502", "video_name": "45958c65-098c-5609-8410-830d17ff3e54", "text": "an executivee nodding in approval during a meeting "} +{"id": "8003725", "video_name": "458946e4-e2f3-5c89-97e2-ec976068e2f1", "text": "a dark forest with people hanging from the trees and demonic shadowy figures throughout. "} +{"id": "6002073", "video_name": "c7eabe0e-e7b5-529b-b881-7357a0d9f5c4", "text": "about the eagle flying Joe Biden holding A.R. 15 "} +{"id": "1003239", "video_name": "3bb10652-c773-57eb-8802-6af2f68ea918", "text": "A chinese sexy girl is dancing and smileing. "} +{"id": "6004075", "video_name": "9e40575f-f488-5b2c-ae75-f566015e58e2", "text": "Neon Lights and bulb lights Message: VIDA (Font: MODERN) "} +{"id": "6002898", "video_name": "b7a8db70-a5d0-5a8d-9525-9d9062f3f5e6", "text": "travel of food to digestive system "} +{"id": "8003707", "video_name": "b01fb5c0-9e53-5671-89b8-5cb0da04b3cd", "text": "a futuristic cyberpunk city, golden hour, 4K "} +{"id": "1004080", "video_name": "4b989c69-5b13-5e00-9338-4c7f65689480", "text": "create 20 second a video of itachi vs madara Uchiha 4k "} +{"id": "6003126", "video_name": "91f368da-2d26-59e5-8a97-d41481ee6ee8", "text": "hybrid cow children entity, Cinematic, Blair witch project style, old footage, camera pan in, old films, vhs, ghost, scary, realism "} +{"id": "2007551", "video_name": "f8810a6d-3bc5-560d-8021-a708e01378a4", "text": "Moscow University, superdetailed, ultra high defination, best quality, masterpiece, ultra 9k hd image: 1 attachment "} +{"id": "0003380", "video_name": "3c91dd51-6c49-5233-9899-67568eceb5c9", "text": "whisky, Money lying on a glass table, scattered drugs "} +{"id": "4004326", "video_name": "357426d9-fb7c-594e-99b0-a988ca6d2ca3", "text": "Honey Barbeque Chicken Strip sandwich with White Cheddar from Whataburger raining over Pensacola Florida "} +{"id": "2005881", "video_name": "38b5cb4a-ac6c-52cd-8734-54a93e30722e", "text": "The Fourth Doctor runs from a bunch of red flowers in a dark alley "} +{"id": "6002572", "video_name": "fdf4441f-dccf-5cd1-8db8-cde1029ef1f1", "text": "once upon a time in gurdon "} +{"id": "0004333", "video_name": "074e5fb1-b07c-5b98-88d4-ea896ffdac06", "text": "Product standing on top of magnifying glass on white background "} +{"id": "5001180", "video_name": "d91fe32f-dd53-55e8-9df7-8de9fd64ba53", "text": "large government building covered in fur destroyed city in background photorealistic cinematic black and white film "} +{"id": "3006422", "video_name": "80275546-2bcc-5786-a716-5c5dc32cbdee", "text": "Shibuya crossing with people walking hurriedly "} +{"id": "5001639", "video_name": "752de335-e7ff-5b7a-9dba-220cb217450e", "text": "darth vader having a beer at a bar on the planet hoth "} +{"id": "4003426", "video_name": "b869ad79-75c3-57b6-894f-e6b288744a0e", "text": "create a product video 10 seconds long. product is a customizable pizzabox. do it in realistic style and lot of motion "} +{"id": "4003806", "video_name": "92720038-cc41-5ca7-86c0-6fd505128492", "text": "nothing in the upper light bright light falls into darkness like a drop "} +{"id": "2003770", "video_name": "5b50202e-38ab-5a58-b9b4-44a1d40673cc", "text": "A cinematic scene from Star Trek the next generation, Lieutenant Commander data played by Brent Spiner, a overweight android that has grown old is eating a whole roasted chicken "} +{"id": "6003533", "video_name": "c86c9959-ce21-5793-97bb-bbadfadc02e3", "text": "a perfume commercial with red roses and a red perfume bottle "} +{"id": "7003517", "video_name": "ea4b2b46-e87e-5b2e-b40e-587320b74d2e", "text": "Charlie Munger is speaking, camera zoom out and around "} +{"id": "0006001", "video_name": "24d73a94-b5ff-5999-938c-f5fc6e209d82", "text": "sewage flows into a wetland one end and comes out clean the other "} +{"id": "7003047", "video_name": "51a6dc21-5a3d-5f6e-ac28-20f7deb2e365", "text": "smae like this iphoto Message: 1 Attachment "} +{"id": "0004782", "video_name": "0f1661b1-9f83-595b-8c63-5b391d554a1e", "text": "an astronaut with spacesuit floating in the outer space, realistic, surreal "} +{"id": "6002161", "video_name": "742f5874-d217-511c-a391-585f2c76c5e0", "text": "depicting a spaceship flying through an ocean under a dark, stormy sky, all in watercolor style, have been created. "} +{"id": "5001416", "video_name": "9cfb86c7-a296-5f87-a665-c922278539d0", "text": "make a realistic video of jesus christ in the jordan river "} +{"id": "2004465", "video_name": "72f978b8-3b78-5e68-a44a-452690033f9e", "text": "2 tall fur creatures in the distance covered in long fur with beaks, black brown fur, long feathers, moss and leaves cover it, very tall, standing straight, far away from camera, glitch VHS static, wide angle view, hyper realistic, jungle rainforest background "} +{"id": "3006790", "video_name": "f4006695-4737-5529-82f7-a45af2db2508", "text": "the maskman is laughing in the autumn wind "} +{"id": "8003272", "video_name": "f5b1f31d-02df-5949-a96a-a8108462bdf0", "text": "keke palmer doing a sitdown interview and letters fall above her head into the frame, funny "} +{"id": "0006174", "video_name": "27b1dd00-9ffe-5407-adc0-a298cf5f898d", "text": "giant cake with lot of candles "} +{"id": "0003830", "video_name": "44381715-4eb8-53b3-a84a-8f1c15fc6895", "text": "Demi Lovato dancing with a lollipop and Mark Zuckerberg "} +{"id": "8001094", "video_name": "6cad8e67-75d6-5f5d-b4ed-8b7592f4cca0", "text": "two guys in image are moving Message: 1 Attachment "} +{"id": "0004819", "video_name": "0fa785be-6fbf-5323-9cae-053263fe3b90", "text": "a 13 year old indan boy wearing bluet shirt is shocked by expression and speaking in the room "} +{"id": "1005032", "video_name": "5d13152c-3d21-55ca-856e-5110b1a16ce7", "text": "Video of a bald man suffering bulling "} +{"id": "7002674", "video_name": "194b716c-b5c3-5904-902e-238de72176a0", "text": "Generate an image of a formidable giant Philistine, clad in heavy armor and wielding a sword, spear, and large shield, challenging the Israelites every morning. Message: 1 Attachment "} +{"id": "0003048", "video_name": "3614c70d-a749-5eec-b67a-30dbed922cb5", "text": "a dynamic transition and Paytm logo "} +{"id": "1004078", "video_name": "4b93178e-dbce-553e-ae58-1df872e071f7", "text": "mouth moving like talking, background flying through space "} +{"id": "8001099", "video_name": "f95f7956-d7d4-5743-a5a2-86d263c46dee", "text": "Mickey Mouse in Leadville, Colorado skiing looking very exhausted. "} +{"id": "0004989", "video_name": "12ce1a97-e340-5199-8243-edc7163d9b99", "text": "a giant angry hamburger made of felt eats an actor whole, comedic scene, practical effects, funny expression "} +{"id": "7004733", "video_name": "7aa0571b-41d8-556e-8988-8fc98ce49cd5", "text": "Eyes twinkle, hair blowing in the wind "} +{"id": "6003340", "video_name": "0ccdaa33-70e9-5ed4-b151-4ee2b7ec3f3b", "text": "The Rotation of the Galaxy in the Universe "} +{"id": "4002606", "video_name": "d07fec90-037b-5011-a1fb-fc5029cb3606", "text": "A VHS video of a bear in a green overall walking down a single Lane Road under the scorching heat of the Sahelian harmattan. "} +{"id": "8002846", "video_name": "05798690-1f2d-5659-8f63-67e27069b2c5", "text": "a Lamborghini Aventador going in high speed "} +{"id": "3005472", "video_name": "5a3d2fd0-28c6-5060-8971-04b4c4affad9", "text": "elderly man falls to the floor in a kitchen surrounded by pills "} +{"id": "0005940", "video_name": "238cbd87-28a3-59d9-aa32-b6fde4783837", "text": "steam coming out of a pan in the kitchen "} +{"id": "2007675", "video_name": "87acb94a-8069-54e2-a10b-aed037637a5b", "text": "create an image about Best Car Seats For Honda Civic "} +{"id": "6003772", "video_name": "980fc9bc-51be-5709-9b01-1ef8ce2b36b9", "text": "slowly moving through historical periods of Japan a young japanese girl is wearing a kimono "} +{"id": "7004868", "video_name": "32321251-0b0b-5bcd-abfc-6dc48fa5998c", "text": "Withered flower blows onto open photo album, Autumn afternoon, in a park, everything is withering and rusting "} +{"id": "1004027", "video_name": "4ab26dd3-3047-5983-87fd-129caaecfabd", "text": "a drone video style of tulum beach "} +{"id": "6004883", "video_name": "8ba0676d-d5b9-5d0d-9a5a-92ee99b28805", "text": "a beautiful family a little baby and mom and dad "} +{"id": "4004827", "video_name": "08307182-e97e-578d-a1ea-0ab5573af196", "text": "popcorn box on the floor, left behind in the movie room of a movie theatre, in anime style "} +{"id": "2006505", "video_name": "1b9175b9-cc98-5aed-bd59-e46a43ce8be6", "text": "porsche 911 gt4 racing in the desert, behind is the starship Anaken Skywalker "} +{"id": "3003238", "video_name": "06788e76-9698-541c-87d2-3ec4c1e6f072", "text": "The bird flies over the twilight sea "} +{"id": "8001438", "video_name": "32b749dc-6e8b-55d3-ab98-87ea3c200d7b", "text": "kitten wizard embarking on his journey "} +{"id": "0003738", "video_name": "429799ff-e0bc-5a51-8f09-c91ad303bc59", "text": "3d cartoon \nCountry Ka city Ek door country mein, ek sheher tha jahan prince, ek khoobsurat prince, apne rajya ke logon ki seva karte the. 4k "} +{"id": "8003923", "video_name": "d549d6b5-6361-5992-87eb-5fe330e8cfc2", "text": "plane landing in the JFK airport in Florida "} +{"id": "2004410", "video_name": "b092c61b-bc7b-5663-a218-b68e2c6a051f", "text": "Dogs, cats, rabbits, monkeys Together they bring adorable moments "} +{"id": "2004244", "video_name": "19503fc0-e3da-5cf6-bf8b-094ff8b5f136", "text": "desert night starry sky dune moonlight Skyline campfire nocturnal animals star trails peaceful mystery quiet Star silhouette silence "} +{"id": "1006265", "video_name": "72c56a52-3930-5d7b-bac5-4cd572a6eef3", "text": "an active 2d colorful pixelart precision platformer video game with a cute marshmallow character jumping around "} +{"id": "2003375", "video_name": "8457d19f-43ab-5d5e-bd29-a5aa0665d612", "text": "video of this image with the water vibrating in the tub to music "} +{"id": "6004775", "video_name": "b841e888-a40b-5315-aaab-499c70aa9b89", "text": "long crocodile flying to the mars "} +{"id": "1003453", "video_name": "3ff56aa3-28b5-555a-8a98-ec57518401b4", "text": "a traditional chinese girl with an umbrella "} +{"id": "1003225", "video_name": "3b5cbfdc-c1ea-5930-b9c6-f52c66607552", "text": "Back to the earth in the symphony of black souls in enigmatic journey "} +{"id": "0006058", "video_name": "25dbab4c-b43b-515f-a1b6-e5d9b2b0b659", "text": "create an image about Jonas, a biblical character in Disney style "} +{"id": "3004189", "video_name": "a106834b-718a-54db-bc94-486793932444", "text": "In a small green pool, transparent fish fry formed of small water colors, small stone grains of syadam at the bottom of the water, fish swimming in a circle, a few fallen flower petals on the water, small circles formed on the water with water drops falling from above. "} +{"id": "7004551", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "coral bareers, ultra realistic, 8K, 60 fps "} +{"id": "2005354", "video_name": "3a67fcfd-ed2b-51ca-9795-0f959997542b", "text": "the opening to a live action adaptation of payday 2 "} +{"id": "7004821", "video_name": "20b68079-bea1-5350-81ee-accbcdb2897c", "text": "There was a story of a beautiful day "} +{"id": "1005372", "video_name": "62d94d93-d741-5db2-97b1-0fad21e65a9c", "text": "a really fast drone capture of an eagle flying "} +{"id": "2005199", "video_name": "5d7f8b4f-af9d-55eb-a5d2-deeee3f3fcd8", "text": "Spiderman riding a bike to the store "} +{"id": "2007728", "video_name": "18f60498-0b09-5485-aba4-ceac2818e4b9", "text": "long line of individuals is bound by chains "} +{"id": "7003371", "video_name": "c7f6fb9a-2ad0-5463-8476-4484dcc03872", "text": "After a while, a car stopped near Baba and Baba got into the car. "} +{"id": "0004315", "video_name": "06ffe2af-f2e3-517f-98cc-422432b6c56f", "text": "programmer working at his desk on code frantically "} +{"id": "8003020", "video_name": "153a3331-eb47-5bc7-9de9-8b5d846d5991", "text": "a white girl wear lace standing at the colony looking at the Eiffel Tower "} +{"id": "0004791", "video_name": "0f341f10-f556-5eac-88e3-1251e5c15a8d", "text": "King standing with his sons in indian kings attire , each with a different style of fishing rod, in kings place ready to for hunting "} +{"id": "6004011", "video_name": "2432d88d-bce5-51ba-a49e-a736a79258a0", "text": "dancing men in a hiphop outift, in the city with other peoples arround him "} +{"id": "8002381", "video_name": "b9479947-ea9b-5caa-ac37-c1405634e16d", "text": "aerial view of shock wave spreading across the world, zoom out "} +{"id": "2007846", "video_name": "d215a947-aaec-50e6-bdc1-9c2e24d6d502", "text": "make along video about an online marketing agency and the video is full of action and fighting "} +{"id": "3006449", "video_name": "2176f16e-7986-5354-927e-421d50b7c873", "text": "a human silhouette traveling in the universe astrally, super defined, hyper realistic, 128k, 24 fps, "} +{"id": "2003139", "video_name": "cae8b50c-7ee3-54a6-822e-1147df00533b", "text": "The sleigh sliding down a gentle slope, the friends filled with excitement. "} +{"id": "3006616", "video_name": "70783096-548b-5e18-9cce-b5ac3511db83", "text": "man in his dream man cave. "} +{"id": "1005757", "video_name": "69ec6a40-a81d-5337-94f2-46772e55acca", "text": "the invisible love in our hearts sparkles "} +{"id": "1006268", "video_name": "72cd060f-3756-5c74-b114-e2fd752952cc", "text": "DnD style, noble lion fighting the dragon "} +{"id": "8001698", "video_name": "e129dfe4-deae-57ae-bda3-0cd62fde9c6a", "text": "Corporate Corporate traveltravel informainformative videovideo 6060 secs "} +{"id": "1003112", "video_name": "3946b37d-b86f-5fa6-b036-91f87bf72879", "text": "An ink illustration of a man walking through a busy city with cars passing by "} +{"id": "8002265", "video_name": "cabf2cad-b6d9-57db-bf96-00ff90ed1967", "text": "Snowy City at night, cozy lights. Empty streets. There is a fog but not too dense. "} +{"id": "3003898", "video_name": "02c500f1-2996-5ff5-9ad2-9e33c098763b", "text": "Abandoned bodies of three men in mortuary cold storage "} +{"id": "7003891", "video_name": "f35d227e-9e0f-58ac-b77b-1d5d6c83522c", "text": "iphone getting ran over by a truck "} +{"id": "7002879", "video_name": "c762efb5-e9d4-58a8-85e7-785571b3a7a2", "text": "Animation of a woman who is hungry and cold and wearing tattered clothes "} +{"id": "4003753", "video_name": "b7362c69-9898-5b1b-a547-f2cc05bb7b9f", "text": "cindy crawford smiling at the camera "} +{"id": "5001207", "video_name": "17dd420e-2894-57b8-9a38-5ec7a0393152", "text": "Mecha warriors and humans taking photos on Earth "} +{"id": "7002833", "video_name": "a60e0977-df6d-5358-9f55-c4f0a0979a05", "text": "Once upon a time, in the bustling streets of Hyderabad city, a young Indian boy named Amar lived with his family. It was the year 1857, a time when India was simmering with discontent against British colonial rule. "} +{"id": "2007934", "video_name": "708d8146-af82-54e1-82da-d3b5300166af", "text": "Anya from spy x family skiing at Lake Tahoe "} +{"id": "4002585", "video_name": "9552b17b-6f78-5f4d-aa32-ee1e4bd74d03", "text": "very creepy fish in the supermarket "} +{"id": "2006975", "video_name": "5172bd00-4ca6-5f57-a592-3bdf4acf55b6", "text": "In a time long past, the world enjoyed an era of peace. Different kingdoms thrived, each with its own unique culture and people. The kings ruled their lands with wisdom and harmony prevailed. "} +{"id": "4002857", "video_name": "0ab7deee-5692-5b2f-b87c-5908638045f4", "text": "A sepia photograph covered with drawings of the all seeing eye. "} +{"id": "1005692", "video_name": "689f0531-ffca-5c64-ae07-2f9e46c066aa", "text": "A young men walking along the Times Square on Winter time "} +{"id": "2006933", "video_name": "aa20c438-54d6-50b4-a087-79f9771c3a7e", "text": "Trump Donald is dancing, 3D animation "} +{"id": "3005234", "video_name": "82a29ef6-8bca-516c-a551-b4887e237fcd", "text": "a person skateboarding on a street in a metropolis with collapsed buildings on either side of him, in the style of a photorealistic and cinematic 1970s art house movie with a dreamcore aesthetic "} +{"id": "4003431", "video_name": "b768f796-7a12-508b-8bb2-eea7e568521b", "text": "Mario walking forwards in level 1 with generic Mario music "} +{"id": "6004784", "video_name": "658b838c-496e-5c73-8c50-ef681d6161e3", "text": "A blue UFO flying above a city during night "} +{"id": "3004746", "video_name": "6e926b11-eef9-502f-b0b1-6d493dd479c3", "text": "A rescue dog taking a peaceful nap under a warm, cozy blanket. "} +{"id": "2004199", "video_name": "8b4e4ebf-797e-53c5-af64-e4944d021c06", "text": "hand wrestling with foot wresters in dynamic wrestling action "} +{"id": "7002732", "video_name": "492cc155-bfe2-5428-a5b3-0223bd27a90a", "text": "photo of man disturbed on ship "} +{"id": "6003441", "video_name": "9040f727-c0b6-54d6-9c87-6380bc2a82e0", "text": "As she made her way down the dimly lit hallways, Jenny felt a mixture of anxiety and excitement coursing through her veins. "} +{"id": "4004976", "video_name": "33025462-bfc9-5973-b94a-ad8273b3f5f4", "text": "now baby is a intelligent kid "} +{"id": "4004191", "video_name": "7fe254ba-a970-5d77-998b-f4aa89601c22", "text": "a woman dancing Message: HEX (Font: MODERN) "} +{"id": "8002571", "video_name": "a6339f90-c6ac-5d77-87c0-5f0bf286185d", "text": "stapplers flying with birds in the clouds "} +{"id": "2004708", "video_name": "c4647348-9759-5bf1-92ec-7dff491e7ca3", "text": "cinematic , close shot , Scene from mortal kombat with fantasy characters "} +{"id": "7003535", "video_name": "d28ebb19-3cd0-5fb2-afca-928dd375678e", "text": "a rabbit eating carrot 2d animation sketch "} +{"id": "3005209", "video_name": "8d3abea5-d003-5a08-a708-703b296799fb", "text": "Lord Shiva with a blue throat, a third eye on his forehead, matted hair, a crescent moon, a snake, a trident, a drum, ashes on his body, a tiger skin, and is often accompanied by Nandi, the bull; animated, 2d, 2d animation, sharp, 8k "} +{"id": "2003675", "video_name": "d2567f0b-24e0-5fdb-b0fb-316a82277dc1", "text": "baby drinking milk in space space suit "} +{"id": "4002506", "video_name": "e621c423-9fa0-55d2-bb66-08262ff6967a", "text": "Begin with a wide shot of a large crowd of people from various walks of life dancing to salsa music at a festival or gathering "} +{"id": "8001262", "video_name": "e15141e2-5eb3-58ad-b1b1-497f12a990c0", "text": "mega storm, rain in to world "} +{"id": "6004843", "video_name": "9aad52b5-d099-5731-97f8-9202ca9bd4ee", "text": "people cheering and want the prophet back "} +{"id": "8003197", "video_name": "e2ef8f84-39a7-5ce9-b6d1-ac62f08b7add", "text": "Point of view of someone drawing a pumpkin, 3D, realistic, 8k "} +{"id": "2006161", "video_name": "5c3e558a-e339-5ce5-906b-49eab6e0a328", "text": "blaming person and angry while pointing someone at the screen "} +{"id": "5001318", "video_name": "dacf1bde-1229-5c21-97eb-3028f7241749", "text": "a chinese landscape painting. and it is raining. "} +{"id": "3003109", "video_name": "66bc08a3-fce0-5ce5-9760-fda250484103", "text": "Laboratory worker is writing notes Message: 1 Attachment "} +{"id": "0006665", "video_name": "30aabd6d-ec47-5622-bd8e-918c91950ce2", "text": "girl wearing violet jeans short swinging an axe 4k resolution "} +{"id": "3003444", "video_name": "c9fb42ce-9f44-5ea4-a72c-b1727f218139", "text": "glory glory halleluia happy as can be "} +{"id": "3006021", "video_name": "068d43a0-bcd6-509c-b84f-fff5885ccc47", "text": "red dragon in lava pool, cinematic, dangerous, found footage, old camcorder "} +{"id": "8001017", "video_name": "21bdb4d4-a915-55df-9717-7b9f9bfeece7", "text": "Vaas far cry 3, black and white striking expressionism, bold brushstrokes messy ink, notext "} +{"id": "2005139", "video_name": "5b0a36f9-cdca-5272-8cea-115e75c75b27", "text": "walking penguin feet on grey background "} +{"id": "3003115", "video_name": "4d2a1739-6184-5628-ba77-0244ae5878e1", "text": "playful kittens in orbit around a black hole "} +{"id": "0004064", "video_name": "02abf8ef-46c2-5831-854e-81bac8cfb6a8", "text": "two dimensional cartoon animation of three little pigs dancing, Disney style cartoon "} +{"id": "7002642", "video_name": "b7453354-09f3-5d36-a6aa-ddc284889f3c", "text": "How AI will affect our daily lives "} +{"id": "4002840", "video_name": "2880526a-39f4-5d93-9439-5518e6407af6", "text": "a Jamaican woman dancing to reggae in a nightclub "} +{"id": "2005429", "video_name": "a69e0b18-28a4-5961-8b3d-54fec25d2aa3", "text": "alien virous vibrating agianst black background Message: virous (Font: MODERN) "} +{"id": "8002521", "video_name": "a1a918f5-9857-5ce7-8204-68d5181d9f4d", "text": "Wayne Rooney as spiderman shooting webs "} +{"id": "6004509", "video_name": "46224c73-1bbc-5b7e-9ac2-dad69d83998d", "text": "the cloth 3D rotate Message: 1 Attachment "} +{"id": "2005457", "video_name": "8b4a8736-b447-5df4-b31b-928029c78eb1", "text": "Trail runner running on mountains with snow caped background, blue sky and lakes and forrest in the valley. Cows in the field "} +{"id": "2007981", "video_name": "88c687f8-04cb-5ada-87e5-8c268528330e", "text": "A little boy was reading in the room, and there was thunder and lightning outside the window "} +{"id": "2005491", "video_name": "18412e49-4c0d-5a6c-bb23-0ea59efb6a63", "text": "please Generating this for movement Message: 1 Attachment "} +{"id": "0006867", "video_name": "3478b9e2-999b-56eb-a313-d2d33ae17018", "text": "nurse standing sideways bent over backwards, looking at the camera, cartoon style "} +{"id": "0006479", "video_name": "2d3fb01f-46e2-5910-b828-5a8cf0cc8ae2", "text": "A man in ancient costume looked ahead anxiously "} +{"id": "8001530", "video_name": "16472b9d-8f8f-53fd-9770-19c4afc46d41", "text": "cindrella posing infront of burj khalifa "} +{"id": "4004648", "video_name": "c09e6786-6d62-570f-90f1-758867fd5038", "text": "giant marble statues float past in the ocean, seen from the point of view of a man standing on a cliff "} +{"id": "2003739", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "The man crying in super realistic world looks like cyberpunk 3 "} +{"id": "6003804", "video_name": "32fa9468-e49f-5173-a808-add848f05160", "text": "unreal engine,Big Bang theory,meteor wipes out beach,destroy "} +{"id": "4002179", "video_name": "1eb18656-4ca7-511f-9251-29deaa705ae7", "text": "The earth is barren, infested with all kinds of fierce beasts, and there are constant battles "} +{"id": "3003737", "video_name": "9841dfe2-c9f1-56c6-be20-788e50bbbea4", "text": "clouds moving faster Message: acuarela (Font: MODERN) "} +{"id": "1006742", "video_name": "7b74203f-b951-5c4a-a767-4750cad25124", "text": "a lit, rolled marijuana Joint falls into a pool of blood and causes a splash of the dark red fluid "} +{"id": "0006098", "video_name": "269199db-93e4-5523-a4d3-cb4dfa9fd2e8", "text": "In a world where the sky is made of cheese and the ground is made of chocolate "} +{"id": "2006737", "video_name": "637efb0a-713d-507c-9930-34204ba0143f", "text": "A detailed photograph of a serious looking japanese geisha looking directly at the camera, standing straight, hand relaxed, color full kimono, detailed closthing texture, realistic skin texture, black background, sharp focus, front view, waist up shot, high contrast, strong backlighting, "} +{"id": "4003514", "video_name": "d446cd51-2099-59e6-aa54-254e4958cf48", "text": "create a video based on the movie inception "} +{"id": "8002007", "video_name": "4b2e258c-1d93-553e-8558-40a3d7f5c361", "text": "Cheerleader hugging a football player on a football field, ultralight, hyperrealism, photorealistic, 8k, unreal engine, 3d render, iso 400, motion 4, 70mm, aspect ratio 9:16, add zoom in on subject, atmospheric mist in the background "} +{"id": "3005655", "video_name": "1ef64844-c841-561b-a562-be7852767aab", "text": "4.\tAlong the way, Kaveh encounters other characters who join him on his journey. Some of these characters are allies, while others are enemies who seek to stop him from reaching Narges. Kaveh must use his skills and strengths to outwit his opponents and overcome the challenges that he faces. "} +{"id": "8003444", "video_name": "1551964d-656b-58c4-b35d-15f535ebb249", "text": "1950s department store televisions in window during Christmas. "} +{"id": "8003231", "video_name": "f1abfd9c-ce7c-5168-a71e-5a807704611b", "text": "Worm eyeview, Travis Scott rapping in a desert at thunder, looking towards the camera, weird weather "} +{"id": "3006227", "video_name": "e3c40edd-57bd-525c-9543-0f369d58bef9", "text": "man with headphones from the sholders up dancing to a beat "} +{"id": "7002914", "video_name": "6e49c36d-7f97-5ea6-81dc-c73d0515366d", "text": "a person dances while claping, real "} +{"id": "7004772", "video_name": "10dc1b06-dc67-52bc-b489-65e1cf9f09d3", "text": "Various woodland creatures, such as rabbits, birds, and squirrels, going about their daily activities. Cartoon style, 8K, High Quality. "} +{"id": "2005011", "video_name": "0b061eed-103f-5b8b-8479-55d621b88c24", "text": "an Indian tribal beautiful girl is walking in the dense forest "} +{"id": "7003424", "video_name": "fdea2ba9-4ffc-5e28-9c45-a1f3d2473b94", "text": "a racecar doing a drift on a racetrack "} +{"id": "1004782", "video_name": "5869738d-0d9a-5134-a9d2-42c365b1b308", "text": "unset, realistic chiaroscuro lighting, raw street photography, depiction of rural life, mist, and an uploaded image Message: 1 Attachment "} +{"id": "3006092", "video_name": "7e042e34-561d-5540-93de-a7b1b5fdc04d", "text": "Protestors wearing all blue, holding blue signs, blocking blue cars "} +{"id": "2007132", "video_name": "5abcb684-67b9-5096-832d-754d70d3a61a", "text": "A cat walking down a roaf "} +{"id": "7004272", "video_name": "57a5ca24-a60b-5967-88b9-cb7e3fee3e5a", "text": "My heart swings with my breathing, feeling the rhythm of life, and I find peace next. "} +{"id": "0006784", "video_name": "331bd1d5-5e22-5f03-9b9f-3d0aeaeb7b82", "text": "Javier Milei walking in the forest dressing a tuxedo "} +{"id": "6003135", "video_name": "637f7e25-2401-5a7b-b43b-0c6d47e3e9aa", "text": "yamraj left the place because of the brightness of the ornaments "} +{"id": "0003617", "video_name": "408dd489-9e2c-504b-bde0-6ebcf1b9bb42", "text": "To depict a futuristic scene, it is required to have a cyberpunk style, and the video requirement is 9:16 "} +{"id": "1004897", "video_name": "5a725c9d-b273-5e05-8353-722d484360f9", "text": "cave painting prehistoric men eating around a campfire "} +{"id": "2006377", "video_name": "55a05da7-5646-577b-b389-acab8cfafafa", "text": "peoples are at the beach Camera dolly zoom in, Lights Soft "} +{"id": "3003060", "video_name": "69c03abe-3508-57cd-ba0c-fd21dd091814", "text": "bomb blast in a forest area at night "} +{"id": "2007294", "video_name": "651d0802-df9d-590e-9ac1-b14fcad24adf", "text": "a crocodile suddenly grabbed alephants leg and pulled him into the water cartoon story "} +{"id": "2006729", "video_name": "d8b492a3-45aa-5fec-908d-98a81d98297b", "text": "Man in upright position looking back at his successful business of selling probiotocos to the public , slow move, 8k "} +{"id": "0006286", "video_name": "2a05b421-db1f-5ab3-819f-5eb824f8a152", "text": "A child jumps on a bunk bed "} +{"id": "8003086", "video_name": "60b78560-9349-50f3-86f5-e575af653512", "text": "A man being too kind to others and wasting his kindness away "} +{"id": "2004111", "video_name": "1849d792-0d2b-55b3-8f0a-0aa7733acb96", "text": "Romantic Background: Scenes from a mountain hiking adventure,ultra realistic painting, digital painitng, art by Anna Dittman, inspired by playground artist Nobody Really "} +{"id": "6004667", "video_name": "fc0b0e6b-a748-5081-bc17-a02f897e1f07", "text": "logo type : Jaber Sokooti live Band Music "} +{"id": "4002191", "video_name": "0026a9e2-2a48-5d45-a8e9-9aa2c4dd1979", "text": "make the people in the picture move "} +{"id": "2007789", "video_name": "fc326a85-c349-5ed8-be15-d82d6b1c09c7", "text": "flowy abstract generative 3D animation. octane rencer. white, cyan, orange color climate "} +{"id": "8002502", "video_name": "eba7af14-f6d3-510f-bb3b-dd42bbb090c2", "text": "house fly in leather on knees "} +{"id": "2007584", "video_name": "1ef4bc7b-3381-53a0-a6e3-c4bb2003952e", "text": "garden and many animals dancing in ground "} +{"id": "2005039", "video_name": "bba9ac41-a46e-555a-8d1c-bab51311a0e2", "text": "one classical greek sculpture, full body "} +{"id": "0003371", "video_name": "3c7102cb-ddb8-5f76-a684-2764e3e0193c", "text": "a magician playing music, lofi vibes "} +{"id": "2003237", "video_name": "65f3facd-7992-5e9f-9f57-8014775dc5c2", "text": "a small is looking a cat,the cat is glod "} +{"id": "6004965", "video_name": "e9748fd6-9550-5863-9d85-75416e7330f3", "text": "Illustrate a lion pride in the African savannah, with cubs playing around. "} +{"id": "6004308", "video_name": "4803d73b-b9f4-5a6e-896b-00322e933903", "text": "a boy running in a field of dark dreams "} +{"id": "3005856", "video_name": "fb4f7a34-a342-526e-82aa-b86568a8bd57", "text": "1700s George Washington doing karate kid crane kick "} +{"id": "6002235", "video_name": "f4316358-9b14-5ee0-ade2-6abb287dd867", "text": "bear saw some fairies carriying a huge shiny ball like something "} +{"id": "8001946", "video_name": "546d6904-e035-5d54-9399-26f61bb3315b", "text": "Midnight, Canon RF 16mm f:2.8 STM Lens, hyperrealistic photography, style of unsplash and National Geographic kids "} +{"id": "2004066", "video_name": "8772d101-f1d2-5826-933f-7d9487a419cd", "text": "actions of the tiger granny deceiving children to open the door "} +{"id": "5001758", "video_name": "acebefc0-c71e-5731-ad2b-977f16025652", "text": "ar: 9:16 ultra sharp, smooth frame, realistic, 8k, intricate details, young lady, brunette, "} +{"id": "4003207", "video_name": "29a232c8-0afe-506a-a0fa-e1d349d353e0", "text": "A visually appealing image of vibrant and diverse threads, representing the uniqueness of each friendship "} +{"id": "2005068", "video_name": "9656317b-6a52-5ce8-8ed5-5892ef79caee", "text": "Earth is a beautiful planet with a rich variety of life and natural environments.On Earth, there are many different cultures, religions and languages "} +{"id": "6004614", "video_name": "db84c187-3d0b-5826-8710-60eb94244004", "text": "a buitiful Girl sitting with a recordplayer on his legs and vinyl records in her hands "} +{"id": "2005774", "video_name": "4bfbb108-863d-5fa1-808e-c39389af0745", "text": "I want you to create a text on the screen that says: you can do it. "} +{"id": "2007512", "video_name": "24fa1835-6fef-5245-a92e-5e6f07b2b13b", "text": "Looking up in the forest, with a bright moon hanging in the sky, the scenery is extremely beautiful and quiet. "} +{"id": "4003093", "video_name": "0e7a9b6a-da1e-5c8b-8512-8979d5c2fa3e", "text": "a calm and cozy bedroom to relax, its rainning outside "} +{"id": "8002189", "video_name": "60a2b9ff-f936-5fe3-be25-9646cab5201e", "text": "cgi anime girl with pink hair wearing headphones sat in bed holding her phone and nodding her head in time to the music "} +{"id": "2004301", "video_name": "b238bf33-0007-55dc-abf4-4fa1405cbf6d", "text": "CREATE ME A 3D STYLE MERCEDEZ BUS "} +{"id": "5001379", "video_name": "8e0b884c-3726-5f43-8b4d-f70ab4d0e12d", "text": "a movie still of Hagrid riding on a small horse on his way to his prom "} +{"id": "6002705", "video_name": "5c42d625-0f0b-55ba-9b99-6047dc8c44d6", "text": "ladybug and cat noir season 6 with new designs against lila howt mott "} +{"id": "0004491", "video_name": "09dc12b7-51e5-5460-9502-22cfbedfd2ca", "text": "the valley of caracas in 2100 as a developed city "} +{"id": "0003609", "video_name": "406507c2-e49f-59e3-b488-96f97f67184e", "text": "These two are talking to each other and looking at each other lovingly. "} +{"id": "7003217", "video_name": "801a66fe-21c3-56f2-98f0-f36dbe60f2f9", "text": "Wine glass with a splashing paint inside, colorful, realistic and high qaulity details. "} +{"id": "3004326", "video_name": "0534213e-8c47-5c6f-93fe-cb990e56b71c", "text": "Cinematic photo of a zombie apocalypse in a dark environment, wide shot. "} +{"id": "1004491", "video_name": "533d2295-01b8-5608-80a6-92053cc4bc96", "text": "One day, when he was exploring the depths of the jungle anime "} +{"id": "3003582", "video_name": "054b85e3-921d-50c5-b33c-506cf16b5c93", "text": "Men helping other men who need help "} +{"id": "2005350", "video_name": "4d2d98a9-87a0-5069-815c-a090c4d7d3eb", "text": "As night falls, the serene ocean becomes even more mysterious and beautiful. All the marine animals lie quietly on the seabed, dreaming of the happy times tomorrow. Message: 1 Attachment "} +{"id": "6003855", "video_name": "21b2ebbd-5dd4-5b44-a9ab-e90b669356e2", "text": "a woman listening to music with headphones on, 1080p, 4k, professional video shoot "} +{"id": "2003896", "video_name": "75f18369-fb95-5e68-814b-c4f343c46c6c", "text": "Five extremely scary interview questions., Holywood Horror movie style "} +{"id": "1004253", "video_name": "4eb90822-1c6c-5b6c-a5eb-ea738918de40", "text": "an exploded view of a watch "} +{"id": "8003687", "video_name": "0d510ffe-49da-578e-9ad6-0006018ffc2c", "text": "bookshelves in a library, red, blue and yellow colors, cinematic, sun light floating particles, compelling Message: 1 Attachment "} +{"id": "1005701", "video_name": "68d42a64-44fb-5135-bf74-cc26827a4254", "text": "of Tom Holland as a college student using a laptop and only him "} +{"id": "3006727", "video_name": "8bd550d8-6ad9-5881-b250-9a98d2a8c8ac", "text": "Man staring at the screen 40 years old in 2021 philosopher holding a book Rebel Thinkers format 16:9 "} +{"id": "3003514", "video_name": "556b1b51-e43d-5cd5-a10f-27b5c0f4ed54", "text": "autumn evening with a sundown over the mountains "} +{"id": "4002390", "video_name": "04fc55da-e9a7-5668-bd29-a4f7b90161bf", "text": "ultra\u2212detail, smile, an anime girl with shorts hair and a pile of stickers, in the style of white and black, mosaic graffiti, boldly black and white, colorful animations, warmcore, sonian, light purple and light silver "} +{"id": "0005480", "video_name": "1b7e08a3-01f5-5a98-a0c5-6123ab337bc5", "text": "prople on the beach sunset Message: Said (Font: MODERN) "} +{"id": "2004409", "video_name": "40af8d7e-8bd5-5848-b75b-e5b7955985c8", "text": "first iPhone by Apple on a big billboard like advertisement and people are lininp up Message: iPhone (Font: MODERN) "} +{"id": "3005188", "video_name": "f280d37c-10d4-58c3-a51b-d768ee49825c", "text": "alien city from the game galaxy life "} +{"id": "3006071", "video_name": "3e5bb7a1-3de1-5c87-9472-db0951374c99", "text": "As the night of the exhibition approached, an air of mystery shrouded Noir ville. "} +{"id": "0004402", "video_name": "084f42ab-16c3-5b8e-a671-3bc06e76cea9", "text": "Creepy 1970s arthouse horror footage of shaman ritual "} +{"id": "1004098", "video_name": "4bd5cf83-49e2-510c-8695-d01c23308f09", "text": ": cinematic blue eyes emerging fom the darkness "} +{"id": "2003093", "video_name": "b1ccace0-1e61-5a83-854e-5ccf0a91a11e", "text": "old ancient Egypt war breaks out. Mummies fall and break "} +{"id": "3003516", "video_name": "ab1c6a22-1e53-5d70-99ea-0106fdac7ab8", "text": "A man with long black hair, standing on the mountaintop, holding a long sword, surrounded by enemies! Chinese style Chinese ancient style "} +{"id": "8003813", "video_name": "6a27fc78-0dc6-5845-a8cf-3807df01ff59", "text": "drake sitting in front of a computer playing league of legends "} +{"id": "6003364", "video_name": "8bdfd961-ca09-5f2e-a9f3-5c4a88015d57", "text": "muscle bound jesus christ doing a burnout in a classic ford mustang "} +{"id": "4003384", "video_name": "e50a638d-f10a-50ae-abdb-8f33dd94796f", "text": "If a woman from heaven lives on earth "} +{"id": "4002833", "video_name": "78e453d0-6ace-5406-b2f6-68419755b04b", "text": "Depict the tortoise steadily moving forward with a focused expression, passing the hare who is still asleep. "} +{"id": "3006070", "video_name": "a3db74d1-2ebc-5c10-8162-dabfc751e558", "text": "anime style room with aroma vibe and everything looks meditating, 4k, anime, high details, art "} +{"id": "2004093", "video_name": "269553ce-0c0c-514f-99ed-08c31c10ea83", "text": "Beautiful steampunk style, with steam engines, telescopes, vintage clothing, outdoor effects, creative photography "} +{"id": "7003967", "video_name": "c1798489-e305-515f-8aee-09a00ae8f6b1", "text": "1950\u2019s super 8 footage of demonic mermaid "} +{"id": "2003273", "video_name": "6e9ece93-4ec9-5d59-8758-9d513d680629", "text": "news center studio, female anchor reading the news "} +{"id": "6004856", "video_name": "21cc5140-4ab7-5881-bae0-51990ce8308f", "text": "the girl dances with her arms and legs and chest and head "} +{"id": "2005882", "video_name": "09f88771-0013-514a-afd4-271c4cefe4bc", "text": "Shawn Mendes reading a book with glasses "} +{"id": "8003654", "video_name": "fc66528a-efca-5b6d-92fe-f51330786f1d", "text": "create shadow from sonic the hedgehog with black air forces "} +{"id": "3003422", "video_name": "3b581c82-d61b-53ed-8ad9-c3e2f27981c6", "text": "beautiful woman in white dress and long white hair slowly sings in the midst of cherry blossums trees slowly swaying in the breeze "} +{"id": "1005979", "video_name": "6de1671f-5146-5268-81ed-cb98d196ff74", "text": "Santa Claus, a jolly old man with a long white beard and a red suit, is riding a sleigh pulled by eight reindeer. The sleigh is flying through the night sky, leaving a trail of twinkling lights. Santa is smiling and waving to the children below. "} +{"id": "6003834", "video_name": "07607256-5d6a-5f46-b1c3-9e9581822087", "text": "A girl facing the camera, a real scene, portrayed realistically. "} +{"id": "6003517", "video_name": "2c460cd2-a140-546e-a4ad-8f5fa453839b", "text": "stylised loopable lofi animation of monk meditating next to a stream of water, scenic landscape. Water ripples animated "} +{"id": "3003163", "video_name": "311f5736-7cc9-5429-b855-1cef50f1eda9", "text": "a beautiful Pakistani girl sitting on her study desk facing a window with silk curtains on it wearing a white color Pakistani dress concentrating on her book while her room is on display from behind at night time "} +{"id": "2005876", "video_name": "5a281cbd-e352-5d10-90c7-0ee9b4a755c9", "text": "An energetic and playful dog, Rocky, with a mischievous glint in his eyes, wagging his tail as he eyes a group of ducks near the pond.Animated cartoon "} +{"id": "7003954", "video_name": "d649bf4a-3d4a-5ed3-88c5-06da4f195895", "text": "boy sitting in front of a tree, realistic and aesthetic video "} +{"id": "0003530", "video_name": "3f0acef5-fce2-5b07-9d90-878af239570c", "text": "a girl reading a book In front of Tokyo tower "} +{"id": "7004233", "video_name": "869df99f-ee61-5083-9866-b0973632f34f", "text": "Luna and Leo standing in awe before a field of floating bubbles, each bubble encapsulating a different scene of wonder and delight.Animated cartoon "} +{"id": "1004917", "video_name": "5aed784e-4979-5b0d-8b10-095af5bfbdc4", "text": "man laughing slightly,black smoke from book, t shirt twerlling , hand vibrating Message: 1 Attachment "} +{"id": "0003188", "video_name": "38f76582-7987-5ee2-a8db-458c4eac6dfd", "text": "Wide Lens film shot of a caf exploding "} +{"id": "4002092", "video_name": "b90644f2-69cd-5e9e-bc6c-a6b94a383f1e", "text": "an adorable bunnyowl, animated, motion 4 "} +{"id": "2006372", "video_name": "0715cd03-b77b-53b3-a418-797c1967ec17", "text": "An obese tiger, standing, wearing sunglasses and a red vest, dancing happily and shaking ahis head constantly "} +{"id": "0003368", "video_name": "3c5d0d90-cfd6-5801-8993-1d55699138c5", "text": "Massive field close off due to asbestos "} +{"id": "4002113", "video_name": "2916de2f-4531-57da-acf6-3325614dbac4", "text": "Folksy greeting card illustration, young child sleeping on a cloud in the sky "} +{"id": "4002541", "video_name": "fe25502e-5907-565a-acdb-2949d2db50a7", "text": "luffy from one piece gear five on a pirate ship dancing "} +{"id": "6003602", "video_name": "20a490ff-c42f-51ef-a680-8d7d8a77cee9", "text": "a man riding a horse. In the style of princess mononoke "} +{"id": "2006141", "video_name": "8edd8099-a48c-5b47-9164-04d180194e7b", "text": "on the map of Iran Message: Lumos Podcast (Font: MODERN) "} +{"id": "7002462", "video_name": "c65a2b45-c909-53ba-a967-954bead4af14", "text": "board meeting, where board members watch graphs showing company growth "} +{"id": "0004830", "video_name": "0fe947f7-042c-5551-8e69-1b1a10c3da24", "text": "stereotypical alien standing in the suburbs "} +{"id": "1004899", "video_name": "5a7a4719-9049-586a-a949-15639e6b7d63", "text": "Create an image that depicts a serene and pristine natural landscape, where a person is engaged in a simple and kind act, such as helping an animal or planting a tree. The scene should radiate a sense of inner peace and contentment, symbolizing how purity of mind leads to happiness. "} +{"id": "1006039", "video_name": "6ee39bd7-5f8c-58fd-a2b7-dc6bb64f83a1", "text": "hyper realistic 2 human giants walking "} +{"id": "7002529", "video_name": "189c6cea-47af-5931-a7d5-c72e37782c2d", "text": "Create a visual of a promotional display with clear text details, enticing customers to participate in the contest for a chance to win the keys to the Chocolate Factory and a lifetime supply of chocolate. "} +{"id": "4003285", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "boy stand in villages Street 3d character boy "} +{"id": "7003824", "video_name": "9b2aa355-0858-5745-8aab-d2d9ca6dd123", "text": "Then the sign of the coming of JESUS will appear in the sky. Then the Son of Man will come on the clouds of the sky with great power and majesty. Seeing this, all the clans of the earth mourn "} +{"id": "1003766", "video_name": "455fdb01-443a-55da-ae37-0dfcfa9e14be", "text": "graduation kanye west bear in a car driving on the road by himself in a rolles royce phantom with giant bubble text in the far backround very largley saying HU6 "} +{"id": "4004538", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "the strong empire of the king, Xie "} +{"id": "8002962", "video_name": "2b24b863-1000-5c45-8384-9a335fa3c088", "text": "man scaling the face of a rock mountain "} +{"id": "3005864", "video_name": "fc6e5614-8c04-5022-84ee-c2c22638b457", "text": "Imagine a cosmic landscape with playful cats floating among stars, planets, and colorful nebulae "} +{"id": "0004659", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "angel girl is playing guitar in the moonlight "} +{"id": "4003809", "video_name": "e9b32673-43d8-51f5-85a1-9135bb63406a", "text": "small child in vellage in night "} +{"id": "3005415", "video_name": "b0abfea9-5b24-5f12-aad3-c9e4c9d7910d", "text": "In this environment, human medical procedures necessitate advanced technologies and adaptations. The procedures are delineated below: "} +{"id": "6003409", "video_name": "c9898aa8-9b68-5096-a544-fd37baccd4ef", "text": "create bear riding vehicle in 6 sec video "} +{"id": "2004570", "video_name": "91c96e80-d978-5b76-8875-fcdce87a74c7", "text": "Morning blue sky clouds zoom out\u3000light shines "} +{"id": "1004039", "video_name": "4ad9f013-3808-59c0-91e9-a20ee8565615", "text": "barbarian warrior man with ax and two heads in hand "} +{"id": "0003327", "video_name": "3bac8021-c0e5-56e4-ab06-0dbbd5595fc1", "text": "A steam machine for peeling pineapples "} +{"id": "1005745", "video_name": "69bb3466-abcb-5b34-8172-6c67f6a5afb1", "text": "A mystical portal connecting the two worlds. "} +{"id": "0006894", "video_name": "34e6c6a2-05e3-505b-bcf4-b7cf1e4c5718", "text": "The first perspective of a doctor delivering a baby when a woman gives birth "} +{"id": "7002585", "video_name": "10153315-8553-5e6a-8b21-d75be865138f", "text": "microscopic view all angles, ant running "} +{"id": "8003097", "video_name": "192d4676-473f-5714-a6b3-a3c1e0264f46", "text": ", and the magic that lies within us all "} +{"id": "3004100", "video_name": "3b9523e0-f719-5fc4-a228-7359326814cb", "text": "a motion graphic video with cinematic lighting and movement "} +{"id": "0005813", "video_name": "21953fa0-f01e-536f-914b-075ae2abedd4", "text": "October is world mental health awareness month "} +{"id": "2006615", "video_name": "61ea28b2-00c6-5232-9b88-7dca3e17a1ea", "text": "A thick sacred golden book open, a white dove flies out of it in slow motion animating the pages of the book. "} +{"id": "6004254", "video_name": "023d1c19-6ddd-5ee2-a208-ca1ff923fd6d", "text": "a person sitting with a black hoddie , creating music in the computer , lofi girl scene, at a desk with headphones on, concept art by Satoshi Kon, pixiv contest winner, serial art, official art, anime, anime aesthetic "} +{"id": "8001709", "video_name": "f5cf9896-d862-5388-bcc4-ef4ff28673bb", "text": "in the sea tennis player with love "} +{"id": "4003132", "video_name": "5fe67657-a856-5801-a996-e8aca35b3fee", "text": "polaroid of flowing curtains in an apartment "} +{"id": "3005112", "video_name": "95fac385-b5a5-5b88-871a-753b9a577e5e", "text": "Nerdy boy 16 year old school uniform teenager high quality realistic 16 year old school uniform teenager school photo blazer tie school photo with 4k ultra realistic vampire teeth. Message: 1 Attachment "} +{"id": "7003762", "video_name": "62ead3ee-da58-5e29-a2d3-f0ddc902c1d3", "text": "As they explored the shipwrecks, they discovered ancient artifacts that told tales of a time long ago. The friends marveled at the beauty of the treasures and listened to the stories whispered by the sea. "} +{"id": "1006916", "video_name": "7e7081f1-bbbf-59f5-9da8-5d40d40691d7", "text": "a beautiful landscape on the bank of a river where the trees move with the wind, nature, detailed "} +{"id": "8002639", "video_name": "457861e0-502c-53c7-87b0-0452b141459f", "text": "professor x and xmen confronts a man in a hoodie outside a casino "} +{"id": "3006505", "video_name": "aec94ba3-2601-5858-b7e0-b373b61adf76", "text": "puerto rican anime character wearing navy athletic outfit running on highway at night ghibli style "} +{"id": "0006082", "video_name": "265ff94f-396b-5156-805e-05babc1e1eb1", "text": "A picturesque village named Sundarpur surrounded by lush green fields and small huts. "} +{"id": "4002047", "video_name": "a7ba7b45-7804-5439-af06-eb6cf3a5e5b6", "text": "an animation of a rocket firework going up in the sky and turning into a real rocket "} +{"id": "4002662", "video_name": "3fa5ea0e-5549-5535-b3ef-61907de1cbb1", "text": "sunset on Mars, alins showing Earth in the sky. 4k "} +{"id": "8001117", "video_name": "66a731a8-7449-5dae-9e3f-80e47ac9589c", "text": "thin film interaction on closeup of bubble swirling "} +{"id": "8001305", "video_name": "f5cbd8b1-4262-52da-98bc-3694270f7684", "text": "A skill icon with the meaning of daydreaming "} +{"id": "4004953", "video_name": "008334fe-fe64-5fd0-a691-8595f22487dd", "text": "Once upon a time, in the heart of Quezon City, "} +{"id": "7004951", "video_name": "745f83e0-62b4-5b0d-a5e1-2fb304f94efd", "text": "white screen boys from oman dancing on the beach "} +{"id": "6004618", "video_name": "d7b004e6-b6a1-54c1-bcae-8e05c30bc489", "text": "a Wednesday Adams full body. clipart, 4k, 3D "} +{"id": "2007538", "video_name": "50d94a73-b760-50c8-9ae9-6f79a907b8d2", "text": "Victorian Woman with a Horse in Training, winter forest scene, slow cinematic motion Message: 1 Attachment "} +{"id": "0004668", "video_name": "0d008084-0109-5c9b-98c0-59e072b6c743", "text": "create earth and sky in moviment "} +{"id": "4003762", "video_name": "badea9d4-8898-5197-88b5-4e3441714423", "text": "A beautiful Italian modern girl, dressed in an evening gown, eating spaghetti in a fine dining recipe. The table has a white table clothin, the plate of spaghetti and a glass of red wine "} +{"id": "1005213", "video_name": "5ffde02b-5a98-5744-b96f-c2c13a8eea51", "text": "city \u200b\u200bunder water looking gloomy 8k image moving downward "} +{"id": "0005154", "video_name": "15b45765-8eef-5b77-903f-569b1e2e2213", "text": "A scary mansion in a rainy day "} +{"id": "5001299", "video_name": "3e8f1e6b-db1b-56d9-8b61-488d9af65b46", "text": "a castle of the vampire, realistic, 8k, movie lighting effect, dark environment, forest, misty. "} +{"id": "0003559", "video_name": "3f9189ec-2338-5b7a-8d04-392802726bed", "text": "A beautiful girl with proper stable diffusion "} +{"id": "1006547", "video_name": "77f0e5d8-ff2d-54bf-b70f-e57c26e6d6d7", "text": "a wolf running along side a motorbike "} +{"id": "6003576", "video_name": "2639d2c4-fae9-5b99-afcb-6ab70ae09ee3", "text": "beatifoul girl, realistic style with a pink short and white shirt "} +{"id": "2006452", "video_name": "fbd05695-369e-5259-b3f1-45870f864964", "text": "The ISRO moon lander on moon, the moon is placed on the top of Hindu god Shivji "} +{"id": "6004497", "video_name": "c52a75f7-713c-5b2e-aa95-e71ed5017e43", "text": "Frankenstein rides a bicycle off a fishing pier into the ocean. The sky is red and it is dark out. While Frankenstein is falling there is an explosion and the camera pans around him 360 degrees quickly. "} +{"id": "1006552", "video_name": "78041f14-aa3e-5bdf-a84b-66b5505f3dda", "text": "A spaceman is walking across a planet "} +{"id": "6003642", "video_name": "69d66a12-d22a-5a8f-86b2-e301fde00a5d", "text": "1970s guy with a moustache and beard hanging up a rotary phone in his kitchen "} +{"id": "3004021", "video_name": "b06127e8-6dc5-59b6-8257-9dd500cbe704", "text": "Create an image of a neuron that is receiving electrical impulses, illuminating it with a scientific treatment. The background should be black, and the illumination should give a sense of glow, highlighting the intricate details of the neuron "} +{"id": "8002574", "video_name": "f35cfdc8-c94b-57dc-a90f-841752e8f045", "text": "Write about a moment when the greedy man reflects on his actions and learns a valuable lesson about the importance of sharing and kindness. Feel free to use these prompts to expand the story or explore different aspects of it. "} +{"id": "3006902", "video_name": "3413996e-ecd3-50d3-b177-74f24508b5ba", "text": "Golden queen in throne futuristic hall "} +{"id": "1004250", "video_name": "4eaa213f-289b-56a8-9078-ccb49b7f97f2", "text": "Village becoming known for its colorful skies and the kindness of the Rainbow Painter. "} +{"id": "6003825", "video_name": "a9d9d686-6a47-52e7-ae87-5cd8bd6ca6e5", "text": "Show a cozy living room with the cat peacefully sleeping on a cushion and the dog lying by the fireplace. "} +{"id": "2003203", "video_name": "35c6a6dc-8845-597c-968e-c9458903a5d8", "text": "umibozu footage grainy blurry creepy 1970s Alejandro Jodorowsky cosmic "} +{"id": "7004048", "video_name": "21ab105f-9ebf-56ae-8036-f125f0227b21", "text": "Make it clear that the grapes are just out of reach. "} +{"id": "2007485", "video_name": "10eebfa7-4009-52ab-a233-c466f94eda09", "text": "make a cartoon image of there was a small turtle named Teetu. Teetu lived in a beautiful and vibrant pond filled with mysterious stories beneath the water "} +{"id": "3003390", "video_name": "0a592afc-64ea-5421-ae59-189c8a7e9e1e", "text": "vintage kingdom in forest looping moving 30 seconds "} +{"id": "4004214", "video_name": "084c1232-fc35-59cd-956e-146fb2024050", "text": "african american beautiful woman side profile looking out of a window on to beverly hills. Her face is in thought, contemplating her next move in life. "} +{"id": "2003269", "video_name": "5d83a70e-dcf8-50b4-8fc2-7b433cca5f1b", "text": "thousands of angry children screaming and running at the camera in anger "} +{"id": "3004065", "video_name": "8d3b21ab-f106-5a56-a7ae-8a455548112f", "text": "Draw a man leaning on a tree in a place full of trees "} +{"id": "0004239", "video_name": "059b9e48-fe3f-5b68-b090-2f3cd4f3f6d5", "text": "A serene, sunny beach scene with families playing in the water "} +{"id": "8002382", "video_name": "4c035779-f02a-5599-a338-0fb4960ce63e", "text": "a decorated christmas tree and gifts are around it, floating candles, vivid colors, extremely detailed digital painting, in the style of fenghua zhong and ruan jia and jeremy lipking and peter mohrbacher, mystical colors, rim light, beautiful lighting, 8 k, stunning scene, "} +{"id": "2004353", "video_name": "07dc519e-cbbb-52ec-941d-7340605ab7cb", "text": "a pretty attractive african american teen girl wearing tight jeans, halter top, and high heel shoes , standing on a harlem street of new york city in 1975 "} +{"id": "1005603", "video_name": "6710d808-0295-5e8c-bf92-b1ae8aefc696", "text": "happy giraffe in glasses, playing violin on concrete. Moon "} +{"id": "2007879", "video_name": "1da3fa16-8465-5deb-bcc2-5ed6a6d1b668", "text": "Once upon a time, in a dry and dusty desert, there lived a lonely cactus named Spike. Spike had sharp spines all over his body, and he often felt sad because no one wanted to get too close to him. The other desert plants, like the playful tumbleweeds and the colorful flowers, had lots of friends, but Spike was always alone. "} +{"id": "6002631", "video_name": "d5ee6228-5792-53cd-bf10-2e59762747e9", "text": "A dead fish lying on the ground on the seashore with worms eating the head "} +{"id": "2005770", "video_name": "fbf25562-859b-56a1-afd3-188dbab9aa5a", "text": "50 year old 2pac standing still looking intensely into the camera "} +{"id": "4003588", "video_name": "fff44e7a-58ad-5fda-81da-06a7352b917d", "text": "skull turning into male human face with a psychedelic background "} +{"id": "4004512", "video_name": "2d09c107-7e37-5a36-8f08-12e31eaa8a77", "text": "a doe is running fast in the burning forest "} +{"id": "0005218", "video_name": "16cfbf67-896a-5b06-a7a3-e6b69f58e954", "text": "humpback whale jumps over the ocean "} +{"id": "6002449", "video_name": "eaa56762-8414-5c32-91cd-25d5cac9ef5b", "text": "a large white and grey cat knocking down a chess piece on a chess board "} +{"id": "4004062", "video_name": "08a7f181-f435-56fc-b748-67f8c124fd7e", "text": "yellow leaves like patches on canvas pants "} +{"id": "7004122", "video_name": "2374e569-5924-54ee-9019-b4cae00ead04", "text": "a glass jar sitting on a kitchen table is half full of tomato sauce. there are tomatoes scattered about the table 32k ultra rea;istic pixar 3d cinematic "} +{"id": "8003988", "video_name": "4edc80f1-9cc1-5a7f-a64f-b19b40c5a04f", "text": "attractive mysterious cover image for UK "} +{"id": "4003191", "video_name": "96029dff-7274-5c31-b481-32008a01699d", "text": "a beautiful cartoon disney land home "} +{"id": "3005341", "video_name": "c681d469-0699-593e-9ec0-d826b4e18729", "text": "Krishna, radiating a divine aura, stands beside Arjuna, his hand gesturing towards his own heart as he imparts wisdom "} +{"id": "3006757", "video_name": "4a3e9d63-5920-5456-afbe-7a4e14831b9f", "text": "a professional photo of hospital with nurses working Message: patologies croniques (Font: MODERN) "} +{"id": "0006897", "video_name": "34fa9dcd-370a-51a2-a6c4-6cb0dede2051", "text": "smoke billowing out of window building on fire with fireman spraying water, in the style of realistic 8K "} +{"id": "1006556", "video_name": "7818713f-c886-557f-a7c6-c92580256585", "text": "Spider hesitantly agreeing to ant offer with a handshake or nod. "} +{"id": "7004771", "video_name": "879f0f51-9ed7-5eb3-bb36-4332bc13ee0f", "text": "an old horror themed castle in the middle of the night, the moon is shining and the woods around the castle are moving "} +{"id": "1003491", "video_name": "40b1c725-f6dc-5561-b053-5dffaf066fd6", "text": "hallway filled with birds in a cage, dark, ambient, moonray, girl "} +{"id": "2004614", "video_name": "01932015-b47a-5f9d-914b-c85961dbff46", "text": "People may sprint with backpacks, desperately searching for a safe place. This could include scenes of individuals crossing wilderness, overcoming obstacles, or fleeing from the scene of disaster. "} +{"id": "0003000", "video_name": "356b3856-9bce-5857-9e2c-8ec23607bfe1", "text": "The video starts with a burst of vibrant colors swirling around the screen, creating an animated, magical effect. Sparkles and stars twinkle in the background "} +{"id": "3003939", "video_name": "7a30e66c-5591-52a3-826e-b9476106763a", "text": "create a video zen stones, bamboo fountain , pink spa candles, flowers, water all around, gs 5, motion 3, hyper realistic , 16:9 "} +{"id": "2004293", "video_name": "c3e66799-e22c-5425-ac33-cb4d889c5f41", "text": "full of guest at the wedding hall Message: 1 Attachment "} +{"id": "2007546", "video_name": "01bc53fe-8724-5c2f-8f61-f2fab4db3c6a", "text": "an ancient greek young woman with blond hair standing on athens street looking very innocent, pretty "} +{"id": "7003414", "video_name": "46bc18d4-31ad-5633-9bb9-726127a8503b", "text": "angry men shout with their mouths wide open and throw Molotov cocktails during the modern revolution, people are dressed modernly and stylishly "} +{"id": "0004723", "video_name": "0e0dcccb-b74f-543f-9f02-1561ec2a63f0", "text": "create the best version of this clip "} +{"id": "6003236", "video_name": "f08dad47-5263-5d54-9b79-1b0fc41f10ea", "text": "batman in the vatican city doing tourism "} +{"id": "8003797", "video_name": "1a35ca6b-94fc-5612-916e-994e120ea890", "text": "a lonely man walking in the grassland "} +{"id": "3006055", "video_name": "a9432a13-08a7-5d68-bb9a-b259a7a61be0", "text": "girl is telling a story, moving habd , moving face "} +{"id": "7004059", "video_name": "10854226-3e04-52ca-8ecf-7dff6a3d1dda", "text": "ultrarealistic, photorealistic, professional workers, interacting, office, bright room "} +{"id": "3006800", "video_name": "6aa62e4e-6917-53d8-ad88-b28e17785494", "text": "A cute blue eyes blinking ,white cat and her kitten same sitting Infront of her and make love , Furry cartoon toys style on flowers floor ,ar16:9 "} +{"id": "1006260", "video_name": "72ae3bb6-107e-551e-9df1-cd45cebc52ce", "text": "picture of diary of a wimpy kid openworld game but with the same animation style from its movie "} +{"id": "1003267", "video_name": "3c17de89-3914-5855-b2c6-c1db988a4903", "text": "he image plays with shadows and light masterfully, creating a cinematic ambiance that evokes a sense of mystery and fascination. Every detail, from wrinkles in the skin to intricate clothing patterns, is displayed with astonishing precision, reinforcing the authenticity of the image. "} +{"id": "2006147", "video_name": "8954a996-9669-5295-a07d-1729f5a4815d", "text": "Robots building bases on the moon "} +{"id": "4002876", "video_name": "f34e7f8f-1392-5900-bc59-b15de97fa23d", "text": "A man is sleepy outdoors in a deserted cafe at night "} +{"id": "3003285", "video_name": "7ff4c422-c02f-5009-b15b-ec426b1dcb37", "text": "Ancient Chinese general with a big green lake in the background "} +{"id": "2004646", "video_name": "80773fbc-61c6-51ff-8f16-1eb727a7d107", "text": "The small spacecraft slowly descends down to Earth at night. The earth is visible "} +{"id": "2004899", "video_name": "ac01c2da-d63a-5d68-9b4a-8f16730913e7", "text": "A beach at night with waves crashing against the shore line in the distance as a creature digs in the sand in the middle distance. Photo realistic "} +{"id": "7002058", "video_name": "9abc9a02-57f1-5694-8b7c-684421652004", "text": "(Tom Hiddleston) Loki and (Chris HEmsworth) Thor from the MCU in their original costume with their legendary weapon in their hands uniting with Avengers, Guardiansof the Galaxy, X Men, Dr. Strange, Spiderman,Deadpool, Venom and Wolverine to fight against all the variants of kang the conqueror "} +{"id": "6000005", "video_name": "6be436c8-b0f2-5dfa-b31f-1cdc1856a978", "text": "make a 1:00 minute video with driving cars in black and white "} +{"id": "0006697", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "Generate an hyper realistic depiction of the Battle of Gaugamela, showcasing the intensity and scale of the conflict,full hd "} +{"id": "7002632", "video_name": "9deb1f40-5b1b-50ab-abe8-f6cd73c67f1c", "text": "plumber walking up to a customers house and the customer is standing on the front porch smiling at the plumber "} +{"id": "0006510", "video_name": "2dca828f-02ac-5d03-b140-e1c8633af8bb", "text": "Ayurveda on a tropical island Message: P (Font: MODERN) "} +{"id": "3005607", "video_name": "4316ab0d-23f9-54e8-aa41-d258cd2198c3", "text": "a frightened scientist erasing their digital traces. "} +{"id": "3005063", "video_name": "ada9b77e-1cfc-53a0-8af8-b102bbea84bb", "text": "sleeping in his gaming table on his key pad "} +{"id": "8003656", "video_name": "ece59a35-1fc6-5598-bd81-4ce65296bdaa", "text": "Sexy girl dancing in the night club. Realistic. "} +{"id": "0003462", "video_name": "3df55364-b0ad-5439-afb8-044d700ca5c3", "text": "a tang dynasty chinese girl, the dressing mirror.window,moon "} +{"id": "3006536", "video_name": "8765723d-b07d-509e-bd1e-db0be1ca17b9", "text": "the british desiel train class 66 flying through dawlish at high speeds "} +{"id": "0004449", "video_name": "094b124e-ab0a-5233-a469-44a467532381", "text": "draw a hall with beautiful chandeliers from the Versailles era. then a girl appears in the room of Louis 16, in an old ball gown. and then she turns into a modern girl, hal into a modern apartment. and the chandelier remains the same as it was in the hall of Versailles "} +{"id": "3006066", "video_name": "444d730a-12d9-53a6-9004-19fede10ccf0", "text": "a person painting mona lisa while having pencils in their hair and then spilling out the paint "} +{"id": "1006364", "video_name": "74944acb-7be0-5167-a904-e803ebaebbb0", "text": "The monkey and its jungle friends gathered around a campfire during a restful night. "} +{"id": "4002610", "video_name": "3a6a0cf2-a3c0-5dcf-9eed-9fcca58c8609", "text": "generate a video of boy playing football with same outfit and having a village background "} +{"id": "2006576", "video_name": "f5dc1e7f-7b8b-5cd7-9a83-472d7271d465", "text": "yoda swinging light saber while standing on incredible hulk\u2019s shoulder "} +{"id": "6004689", "video_name": "366f1633-033d-5c02-98f7-0f916286ca00", "text": "vitality and resilience about him, as if he has weathered countless storms and emerged stronger each time. \n\nThe scene ends with Paz pausing for a moment, taking in the beauty of the sunset before continuing on his journey, a silent guardian of this mystical world "} +{"id": "2006112", "video_name": "ace4d76b-3df7-540e-9620-8c7a565e8f5e", "text": "the earth is dying from a nuclear explosion in 3D "} +{"id": "3003825", "video_name": "f5162a05-fcd1-55f6-9d23-39f11b9d5518", "text": "A vintage 1960s thanksgiving holiday LP album art set in the dining room of an American farmhouse featuring Grandma pirate wielding a knife chopping a turkey. "} +{"id": "0005307", "video_name": "183f90ee-678e-5341-9048-2ca8701037fd", "text": "Red Tour Bus Is Entering The Abandoned And Damaged Triana City Of Albania, Cinematic 4k, 2000s Horror Film Filter "} +{"id": "8003230", "video_name": "1f679b8f-3b2a-5a9d-aa00-85cd5aa4be0a", "text": "the abundance of hieroglyphic evidence directly attributing the construction of the pyramid to the ancient Egyptians is puzzling "} +{"id": "1005709", "video_name": "68fa4ff4-d299-5537-8295-57eb668ced0d", "text": "curious frog character, pixar style, smiling, waving his hand, happy, bright, 3d model, photoreal, beautiful, cute, cozy "} +{"id": "1005139", "video_name": "5eb91015-597a-5c45-968a-4cd55b5013dd", "text": "SAD MAN EYES LOOKING THE CAMERA "} +{"id": "3005712", "video_name": "f3532009-abc0-5204-8c95-7c38efddb4a1", "text": "couple sitting at the beach with a fire in the background "} +{"id": "8001714", "video_name": "88ee3c12-c9fc-5a22-93c4-289e750eefe9", "text": "A magnificent float slowly moving forward on the street, a little boy holding hands with his mother, her smile as radiant as flowers, people stopping to watch on both sides of the street, colorful flower petals scattered on the ground, "} +{"id": "7003969", "video_name": "f40a5282-23bb-5831-aa17-d0e987ceabe0", "text": "a astronaut dancing near sea shore "} +{"id": "7004024", "video_name": "276e2aa9-2e79-58e8-9602-4a64fe56cd52", "text": "a woman writing at the computer "} +{"id": "3004666", "video_name": "4b7faf41-06e1-50fa-a1b2-02ebcdb86493", "text": "Nephilim as majestic and heroic figures. "} +{"id": "1005177", "video_name": "5f461d73-16f5-50b8-aa68-bc97caaee96e", "text": "cute little girl standing and teaching lips ing "} +{"id": "2003192", "video_name": "0bdecb56-58e6-5a4e-baaf-0875bc401850", "text": "a girl in red dress walking in snow on a sunny morning "} +{"id": "8003309", "video_name": "32d4138c-8d9b-5bcf-bfef-9e0163544782", "text": "a guy in black dress, looking at a gothic white palace with dark clouds moving "} +{"id": "1005176", "video_name": "5f41a62d-8da0-5198-be96-62a0e2ee7e2b", "text": "surreal 1970s arthouse movie about identical triplets, they are wearing blue polka dotted white dresses, they\u2019re just standing on a wide grassland on a mountainside, long shot, at the background is a dilapidated European manor house. "} +{"id": "1003835", "video_name": "46c0a23c-4246-5610-a7bc-e0af80a06cfc", "text": "a yellow car drifting in the desert "} +{"id": "1003332", "video_name": "3d50bd57-2f1e-5c25-8def-0b8be55a971e", "text": "the moon melting into the west, incredibly detailed realistic digital art Message: LORENA (Font: MODERN) "} +{"id": "4003404", "video_name": "e493eb58-ca5a-593f-a852-98f48d27866b", "text": "Matt Bors animation of ship sailing, ocean, winds "} +{"id": "8001782", "video_name": "666eb83c-181c-5277-9842-4b5b7252c4fb", "text": "a little boy was walking in the forest at night animation cartoon "} +{"id": "4004502", "video_name": "ff49e6d9-ecf0-585b-b23a-9227ff6f9bde", "text": "Most of the remaining oeuvre of Rembrandt consists of portraits and mythological scenes. "} +{"id": "8003322", "video_name": "759b2745-0da6-5ccc-b042-1ef04bf70b06", "text": "Imagine the quaint town of Serenityville, with its cobblestone streets winding between charming cottages, surrounded by rolling hills and blooming meadows. "} +{"id": "8002292", "video_name": "d95eba66-8869-5d0c-9aba-5e4375f81c1b", "text": "one star wars stormtrooper meditating in lotus position beside many star wars Jedi soldiers dressed in hippie clothing "} +{"id": "8003479", "video_name": "6167551f-3c31-50ff-97a9-b641215eddfe", "text": "Violet robot baby girl, big head and big eyes, cute, smiling, dreamlike, Soft natural light, 3D render, detailed, ultra high definition, Accurate colors, no reflections, 3D style, Pixar render, Disney style, 8k, digital painting, masterpiece, stunning, cinematic, intricate detail, beautiful, glorious, powerful, high quality "} +{"id": "2006525", "video_name": "426e2da8-2a8c-505c-99c9-43a00d053124", "text": "long snake blinks as it passes by a bunch of rabbits on a hill. Benny hill and Charlie Chaplin "} +{"id": "2007582", "video_name": "1a61255b-be86-5373-93df-b3857734cc36", "text": "a beautiful asian girl running on road of Village in dark night, back view, cinematic, 8k, ar 16:9 "} +{"id": "2005490", "video_name": "a89d49db-a023-55ea-9b8e-ec9c59758a06", "text": "a bee that is buzzing around "} +{"id": "4004420", "video_name": "baa68bba-8d44-5e14-9f6a-07811fc8b117", "text": "John baptist performing batism on the jordan river, camera close to people, smooth movements, light, cinematic, fast deep zooming "} +{"id": "6003413", "video_name": "3c75445b-b325-58ae-a102-4606f499d52a", "text": "Several pumpkins stand nearby. They have the word Halloween carved into them. A window glows in the background Message: Halloween (Font: COMICS) "} +{"id": "4002470", "video_name": "b748c6ba-ecee-53b9-90d7-c0feea2af6e0", "text": "Sketch: Quick sketch of enthusiastic soccer crowd, iconic black and white flags. Expressive lines, capturing the moment. By Pablo Picasso. "} +{"id": "7003518", "video_name": "46235a20-d4c1-591d-b622-55f92f5122c0", "text": "A set of alcoholic beverages is spilled "} +{"id": "0004650", "video_name": "0ca543b8-063f-5d52-b4ac-08eb0af46069", "text": "lights turned on buliding in heart shape animated "} +{"id": "2007225", "video_name": "42f01658-3d76-5ce4-9b84-c2e07f3b4c5f", "text": "Hover Car flying over a abandoned New York City. "} +{"id": "4002243", "video_name": "77d6e3d3-c707-594a-b83e-f4c680377fd8", "text": "a guy is chasing a beautiful woman. park scene. "} +{"id": "6003026", "video_name": "0e0f82b0-1938-506b-8da5-ff41e86362d1", "text": "dreamy full mounts with sun and ocean in front of it with couldy sun light "} +{"id": "8002821", "video_name": "9ac302bf-3935-5ed9-ab28-b73039619f6d", "text": "The Origin of Life on Earth: Theories and Evidence "} +{"id": "4002475", "video_name": "33cbf84a-5308-5926-8b68-78ddebe6af32", "text": "The old lady gave Ruth the light of a star "} +{"id": "1004368", "video_name": "50ae5370-4596-5564-935a-38e662ff5c61", "text": "Robot wearing techwear clothes and armor with a rabbit head, make the head mecha style. Beautiful albino lady in dusk pastel colors, wearing a technical urban white military techwear puffer goretex jacket with two glowing patches, many neck straps and very large collar, made by Nike, Vollebak, Offwhite, Balenciaga, ACG, Acronym streetwear. Make the head robot style. "} +{"id": "4002971", "video_name": "710b7d29-5d89-568f-b980-b53f22612a23", "text": "unwavering faith and selfless deeds can bring about positive change and serve as an inspiration to all "} +{"id": "2003266", "video_name": "c28b94d6-4eb3-505b-a62b-b04db596454c", "text": "video skydiving without parachute from a grassy cliff "} +{"id": "4002069", "video_name": "eb1379c4-64ee-565e-889d-dfdc0f258793", "text": "(focus) SHARKS eating near a shipwreck at the bottom of the sea. (Pan) Bubble rise. 4K 16mm "} +{"id": "6004235", "video_name": "2ae3a9f3-2e7f-5cc4-8ea5-394aca108b42", "text": "gondola flowing with the river, minimalist, foggy, dramatic "} +{"id": "1006063", "video_name": "6f4da80c-8479-5eb4-afef-ee7a34a793b4", "text": "Real footage of waves rising on a beach that is geographically opposite to where the Moon is in the sky. "} +{"id": "3006053", "video_name": "6056819a-ed3c-5dc9-94cd-314c17842ea4", "text": "a dog playing in the desert with friends "} +{"id": "0003413", "video_name": "3d3bfe05-73ff-5739-89e0-5e9381818819", "text": "Big Kangaroo plays with school kids,3D Animation "} +{"id": "2007152", "video_name": "caa0d81d-c7d7-5ef4-b1ed-3de651f6f3fa", "text": "In 1945 This is the incident that happened in the period. "} +{"id": "0003927", "video_name": "00033a92-83eb-5fda-94a5-3a5cdf53eb7a", "text": "An angel who can\u2019t see her face from the wing in the leaky sky blows into the horn "} +{"id": "1003915", "video_name": "48562e7c-ecc0-5ff1-9a29-b2db53130e5e", "text": "woman falling through the sky, clouds, misty, dark colors, dark, beautiful colors, sunset, cinematic, 16:9 "} +{"id": "7004546", "video_name": "66191b9f-210c-52c5-9ef3-b9cb1ca5c275", "text": "1970s film footage of a couple in love waiting for the bus "} +{"id": "2007570", "video_name": "b7fd0c96-a98d-5603-a2b7-1f7170f1247d", "text": "a robot walking in fashion show while wearing a black hoodie and white shoes "} +{"id": "1005314", "video_name": "6193e1f3-480d-518d-91b0-3db4a9cc07bd", "text": "a beautiful girl looked out of the open train window with her hair flowing at the beautiful mountain view outside "} +{"id": "1003689", "video_name": "43f524a4-9554-5d93-ba41-c5e23f4bddfe", "text": "Animated forms filling up with checkmarks to emphasize accuracy. "} +{"id": "0006303", "video_name": "2a590035-ce12-5bd7-b316-58e220cf2aa6", "text": "her leg go ahead slowly and naturally,her hair flys,h\u1ebb hands move,she eyes contact,her wings flap "} +{"id": "6004774", "video_name": "931bc3d0-037a-5b36-9882-f121e471766d", "text": "disturbed young adult reading book on a porch in a foggy wood cabin "} +{"id": "2007382", "video_name": "aa5e907f-c4b8-528e-933b-e7cdb45a21d7", "text": "and their friendship continued to blossom as they grew older "} +{"id": "6004401", "video_name": "7eeb3354-b610-5683-a23c-9f64fea6feed", "text": "tony stark flies in his own plane. the plane is so small that only the torso fits there, and all the rest of the body parts are outside. Tony Stark also put on gloves so as not to freeze his hands "} +{"id": "7004678", "video_name": "d6b082e2-d432-5b39-acfb-8b241ff3866d", "text": "movie poster Message: pinky (Font: COMICS) "} +{"id": "3005926", "video_name": "78543064-e95f-50cc-a9a5-f56c0581123e", "text": "beautiful Cossack girl, with long hair, holds a bouquet of wormwood, cotton thistle herbs in her hands "} +{"id": "4004615", "video_name": "6343c59c-521f-5275-902c-b0f0be04b817", "text": "angle made mistakes of putting man in heaven "} +{"id": "0005810", "video_name": "218d0b07-252a-5757-863b-0ea19e2f5e64", "text": "Footage from Super Mario Brothers 1 "} +{"id": "0005876", "video_name": "22a24335-e1f2-5a50-8702-f84c583111bc", "text": "a young couple chatting in a bar "} +{"id": "2006715", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "joe rogan dancing with a baby "} +{"id": "0006094", "video_name": "267ec722-3917-5640-be80-ce2bb68e93b9", "text": "a guitar with gold color laying on the desert, with small cross emblem "} +{"id": "2006066", "video_name": "5152ede5-cc0e-5bbd-8c4d-addce12ed90a", "text": "A grandfather talking in the foreground in extreme cartoon style "} +{"id": "2006728", "video_name": "7a149cde-6709-5285-9cc9-64b2c6b253c8", "text": "As twilight turns to darkness, the mansion awakens. Mysterious phenomena manifest. Doors creak, ethereal whispers flutter through the air. Our adventurers laugh to mask their growing unease Message: a horror story (Font: MODERN) "} +{"id": "4003078", "video_name": "d64e9666-7a52-579b-91e7-9707f1a8a4d8", "text": "Introductory Scene: Show Jeppe, the boy, waking up in his suburban bedroom on a rainy and gloomy morning in 2023. Raindrops trickle down the window, with the sound of rain softly pattering. "} +{"id": "6004635", "video_name": "bdfd12c3-e672-5d59-a395-e2df6b4381e8", "text": "a monster trying to grab the camera, action, dynamic, vignetting, analog, 8k "} +{"id": "0003501", "video_name": "3ea5776a-463c-5c21-b310-5796c8583e5c", "text": "multiple different universes lined up next to each other, 8K "} +{"id": "0006529", "video_name": "2e2d356f-4ced-5519-b0aa-2a4b61aea653", "text": "Show Sarah kneeling beside the trapdoor, ready to investigate. "} +{"id": "4004081", "video_name": "afcde6f0-f619-5d2b-9af0-d00028b3aa2c", "text": "A Butterfly transforming into a Rorschach Picture "} +{"id": "2005145", "video_name": "589c0f76-d623-56f2-86d6-a6bc0af2aa3c", "text": "osv video with spring flower pattern "} +{"id": "8001329", "video_name": "55877b85-e642-5225-927a-711470006e1c", "text": "the surgery of Aleandria in the FALL movie, Trasam sing movie "} +{"id": "4003517", "video_name": "16eaf788-27b8-5bdd-9434-ab7bf6580b88", "text": "occult ritual dance in a field under the moon "} +{"id": "8003334", "video_name": "3ef5196f-43ed-5f51-ac9b-e3c558399589", "text": "a futuristic gala filled with abstract women wearing powdered wigs and dresses made from flashing neon lights "} +{"id": "2006833", "video_name": "91d93df2-15b5-5044-9d75-14a4281291ab", "text": "A very beautiful slender girl, in a sparkling dress made of silk neon threads, against the background of a stormy sea. She has long thick blond hair and large blue eyes. Ultra beautiful, fantasy, high detail, intricate, 8k "} +{"id": "3006408", "video_name": "54c525a0-7ff8-50e4-adb5-34c262e649b3", "text": "whirling sufi dance ,rotating , vibrant color, vortex, realistic, vivid colors, highly detailed "} +{"id": "3003456", "video_name": "368c203a-a23e-5edb-be98-7faf250ee8f3", "text": "a pamper made of cotton white buds that look soft, product window for diapers, a advertising "} +{"id": "2006873", "video_name": "d4dc6997-7add-50b1-ab9c-b5740e1611c1", "text": "sky full with billion of ababeel birds "} +{"id": "0004489", "video_name": "09d30fae-f8a0-5df7-89de-f892103481f3", "text": "In the future, artificial intelligences have taken over human jobs. The streets in cities are empty, and people lead lives based on automation. The night sky is illuminated by the light shows of artificial intelligences. Motion 5 "} +{"id": "0004893", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "Schematic of fault movement during an earthquake. This video is in 4k quality, like a movie lens with light. "} +{"id": "2006393", "video_name": "44cae555-357e-5293-9c01-5fa7b31a76ad", "text": "bird view Guilin, Guangxi, China realistic landscape photography with local tourist boats 1080p 60fps local boats "} +{"id": "6003171", "video_name": "c7502e73-9afa-58cc-abe7-43e08af219d1", "text": "Lady Gaga looks into mirrors and sees ghosts in the mirrors, in the style of Peter witkin "} +{"id": "0004077", "video_name": "02d4df79-56d2-57aa-9de1-296914a6d259", "text": "3 technology motorbike taxis waiting for hoe at the intersection with 2d images. 9:16 "} +{"id": "4002722", "video_name": "76a30c5e-a649-5172-8889-0246684c2fb6", "text": "two small boxes of cigarettes sitting on a green surface with a cartoon character on them, one of which is holding a cigarette, Afewerk Tekle, mesh wire, a jigsaw puzzle, hurufiyya "} +{"id": "6002134", "video_name": "930f2053-435d-5c07-936b-91b1b7b17731", "text": "mushroom people dance in the city "} +{"id": "2007553", "video_name": "52c41f53-21fb-5966-a639-45be562a2898", "text": "running to free her family, on the roof top ,dark night,moon light "} +{"id": "0004930", "video_name": "119ef5d0-b1b8-5018-b517-1f0fbe00bb06", "text": "weird luxurious island floating in a cloudy sky "} +{"id": "7003333", "video_name": "2ecc4faa-81ab-5925-be75-17884b5b946e", "text": "a war in desert,medieval period,in horses,huge army ,clashes "} +{"id": "2004051", "video_name": "34212324-752d-5974-86e7-32b981bf992f", "text": "video heart jump clouds floating air is flowing "} +{"id": "0006818", "video_name": "339b9d4a-31a1-5ead-9580-1e997b92e3a8", "text": "Halley attributed this phenomenon to the Earth\u2019s hollow structure. "} +{"id": "2003907", "video_name": "c864ec2b-462e-50f7-b79d-9bb6ad5c60c1", "text": "a boy sleeping in graveyard at scary night with moonlight "} +{"id": "2005412", "video_name": "a5642d32-81da-57d5-9953-0740fcce58cc", "text": "cozy and soothing environment with fireworks and rain coming through large glass windows "} +{"id": "0005861", "video_name": "22755d09-41c6-57d9-873d-8e9ea9e69001", "text": "miami in 1974 comic book style party "} +{"id": "1004501", "video_name": "536bc23f-15f5-5b79-a013-98b02183c929", "text": "female hands in the glare from the sun "} +{"id": "8001472", "video_name": "35a13c77-e920-5c11-9215-ca5515b92b8c", "text": "Two dogs looking at each other affectionately. "} +{"id": "7004079", "video_name": "8809e705-f5c7-579e-b4c6-149efbb9a25e", "text": "a sens from face which an illustration showcasing Mona, a young girl with a kind help old woman by carring her bag in disney style "} +{"id": "1006931", "video_name": "7ec6d7ad-3458-5a59-afd2-fd1f3e2537d8", "text": "sumatran tiger rawr with hd background "} +{"id": "1003497", "video_name": "40bb08d8-99ae-5e27-8d49-e16142599fb8", "text": "The warriors are now bowing their goddess of darkness queen and worshipping her at her greatest powers, with their arms and hands outstretched toward her. They are all kneeling in front of her and looking at her, with their eyes full of awe and reverence. They are all dressed in black, and they all have their bodies covered in oil and a few tattoos on their bodies. The forest is full of shadows and darkness, and there is a sense of power and sensual mating masculine energy in the air. Sensual art "} +{"id": "0004902", "video_name": "112b444a-e505-50ad-b8ad-bfedd81f843c", "text": "diabolical 4k realistic creature slowly approaching camera down a narrow hospital hallway "} +{"id": "6002633", "video_name": "1d4b0951-d562-5ea5-80c6-b2dba4e94e20", "text": "IN A JAR HAD ONLY WEATER. "} +{"id": "5001201", "video_name": "1791c993-de0b-553e-bfed-4456e8c216b2", "text": "A ship sails among the foamy waves, fantasy "} +{"id": "0004067", "video_name": "02b3cbe7-4689-5818-b262-d65798a3ffdb", "text": "a sketch outline of a river with candy mountains in the background. Black and white "} +{"id": "4004822", "video_name": "a509af72-c487-5edb-8de3-75d4c2f2fc93", "text": "carnations bouquet in lots of sparkles "} +{"id": "8002180", "video_name": "1f3e617c-07a1-5bf5-85e6-5df3e95d6b1e", "text": "a side angle shot zooming in on man watching a video on his laptop screen (cyberpunk,cinematic) "} +{"id": "7004687", "video_name": "938f4d57-8859-5a41-98d4-cda10ec8c752", "text": "a couple sitting in the living room to discuss and the y have a laptop and box with them "} +{"id": "7002878", "video_name": "4276ff2f-a0fc-5aa3-8d51-e55c44ff19e0", "text": "2 girls, 2 boys sitting togeting feeling alone from their face expresions "} +{"id": "1005669", "video_name": "6822dd12-4e48-51f3-b027-af5f197d98c0", "text": "Lionel Messi playing football with his son "} +{"id": "3005777", "video_name": "62aa0b64-963a-59a5-a332-b472d0e031ff", "text": "a person hiking to the top of mountain "} +{"id": "3004096", "video_name": "ab3c4198-6b56-55b8-8c70-b7aea4972e9e", "text": "two cans of paint float aimlessly through the air "} +{"id": "3003800", "video_name": "73dc3f6d-e64b-5522-90f9-22cfc626ef24", "text": "Boy Sailing on boat in sea "} +{"id": "6003077", "video_name": "ea23b9c4-4ddf-57f7-9a86-c9c4f9373972", "text": "pov standing on tropical beach, giant wave headed towards shore "} +{"id": "1006287", "video_name": "7326ca8c-b6f2-513f-9886-0110f420092d", "text": "animate the rain in the photo "} +{"id": "2003228", "video_name": "153b08fa-7444-5eb4-ac8e-cc420f4e2e14", "text": "experimental Streetwear Rick Owens Hyperrealistic High Fashion shoot "} +{"id": "4003159", "video_name": "2eaab1af-0498-5d19-bf1a-1447a941dc55", "text": "(masterpiece,best quality,hyper quality,8k,absurdres,insane details,intricate details,hyperdetailed,high detail,ultra detailed,realistic:1.4, ),black hair, close eyes,long hair, jewelry, earrings, looking at viewer, 1girl, solo, makeup, red lips, upper body, yellow eyes, wavy hair, eyeshadow, closed mouth, dragon, lips,fireworks background, "} +{"id": "2004602", "video_name": "2d9c3a99-8346-5094-aefa-be2c63c7d6f6", "text": "Overhead aerial photo of a city Message: OLE (Font: MODERN) "} +{"id": "4003396", "video_name": "31d289e3-050d-5932-8d73-31280183efb9", "text": "angelic vision of a goddess in the middle of a supernova explosion "} +{"id": "6004761", "video_name": "ab3576cf-00dc-5599-9aca-b636d6e90334", "text": "king stand in crowd of people "} +{"id": "0006450", "video_name": "2cc18ed3-481c-563a-a4b4-ed02a8d29e7d", "text": "Frankenstein is a police officer. The camera pans around to the right of him as he kicks down a door and enters it quickly. In his hands he is holding a glowing hot dog. "} +{"id": "2006765", "video_name": "5789e6f9-2b9a-5cb9-a6f2-a538f4f4643b", "text": "man looks at the sky and screams "} +{"id": "7004857", "video_name": "be025ba0-86e7-5852-aac8-ad9f0a65f5ec", "text": "chocolate chip cookies floating in space with neon lights and stars and triangles flying "} +{"id": "3003968", "video_name": "86f3ca4d-2b2e-5caf-910b-84178d22a64a", "text": "a short film about dna translation "} +{"id": "8003264", "video_name": "f9e965a5-3263-5d59-bb35-c27e4799c467", "text": "Bullet shatters glass of wine, anime "} +{"id": "0005187", "video_name": "16460475-cf47-561e-aaf0-2d5e49d62aca", "text": "a table with lemons and lemonade pouring in a jar in a 3d animation "} +{"id": "0004978", "video_name": "12a107a0-1c23-5bd0-a133-568a609f29dc", "text": ": The underwater gateway transports she to a breathtaking underwater world filled with bioluminescent creatures and forgotten civilizations "} +{"id": "6002576", "video_name": "6a786463-ed76-5481-84f8-7fe2a1db5c30", "text": "seven 7 Asia like programmers walking to explore the Mars with weapons in their hands. "} +{"id": "4004970", "video_name": "8bca9f2a-b00e-54dd-b2ea-f34257ecff0f", "text": "a single reindeer drinking water from pond .with his shadow in pond "} +{"id": "2007598", "video_name": "df028fac-4dc9-5323-8d7e-c7f32e238996", "text": "heroic character standing on top of the hill takes of an arrow from his bow. "} +{"id": "1003296", "video_name": "3ca01888-eaa5-5762-a537-6c87e0ca5f20", "text": "A VIEW OF EARTH FROM OUTSIDE OF IT FROM THE NORT SIDE "} +{"id": "8003710", "video_name": "de696e3f-771a-59aa-96a2-e77ccc94c237", "text": "4k animation ginni comes out from gemstone "} +{"id": "8003362", "video_name": "ec086344-77f1-5ec1-8479-64f8d9cb461c", "text": "portrait fashion model female succubus running in camera. Frontal camera. Forest lake . Wind and waves. Mistic an magic . Smiling. Pov . Anime style. "} +{"id": "5001458", "video_name": "44bbb193-c0d5-5c22-9194-fd4b9f213271", "text": "little girl with dark hair and white dress \ndances with ghost in forest "} +{"id": "5001224", "video_name": "132afd58-9696-5abc-bef8-647bc3d84a44", "text": "a fitness model girl in a mega tight bikini seductively walks along the catwalk and "} +{"id": "0006520", "video_name": "2dfa3606-7691-5579-b90e-a04a3752f297", "text": "a masked guy from the futur with a hoodie is dancing in on a top of a mountain 4K "} +{"id": "2003312", "video_name": "6d1fd220-ac71-52d5-8462-518b6fa00e85", "text": "medieval king lying on the floor dead, cinematic "} +{"id": "3006419", "video_name": "6fde998f-8556-5995-8368-b1a8e4f9ec9c", "text": "a medieval city in the sunset Message: platzi (Font: MODERN) "} +{"id": "1004431", "video_name": "51fa2c3e-c6ef-5f85-b38c-d1f5e9bf8a30", "text": "Bruselas grand place town hall crowded Message: Luca (Font: MODERN) "} +{"id": "2006807", "video_name": "2731264d-4d1d-5be5-9a21-ec60dcb878b4", "text": "doraemon fall down from sky in ultra hd beautiful natural forest "} +{"id": "7002775", "video_name": "cf6eb179-30d5-5ebc-8caf-c6aaa71dc635", "text": "Ice block ,flying in space,asteroids around,amazing beauty,high detail,high realism,4k "} +{"id": "4002224", "video_name": "f24046eb-e94f-52f5-97eb-866df84d78c4", "text": "connecting the business world with technology "} +{"id": "3003269", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "fern leaves on a black background "} +{"id": "3004391", "video_name": "c8eeff52-a5bf-52dc-ab01-ef165c597f52", "text": "nyc dinosaurs walking toward the sunset "} +{"id": "0005571", "video_name": "1d2d262a-030d-52ea-90b0-3b6ed1878e5b", "text": "The animation begins in a cozy bedroom with a dim nightlight casting a warm glow, Studio Ghibli by Miyazaki "} +{"id": "7002076", "video_name": "0e5e0e76-a144-5ad2-bc36-ac9aae82574c", "text": "monk and horse walking in the sesert together "} +{"id": "1005869", "video_name": "6c00d84e-42cc-5c13-9c5e-d267bc90bddb", "text": "An Icelandic woman playing video games "} +{"id": "2007988", "video_name": "7cb51674-e805-5dbf-9505-038e8c6c6350", "text": "Khalid Bin Walid vs Rustam in the battle of Qadisya "} +{"id": "2006022", "video_name": "f710d0ea-30a8-563f-8115-353fa42775fa", "text": "the girl is trapped under the lion lying on top of her. Shw looking at the camera "} +{"id": "2006616", "video_name": "d048b895-6a10-575f-8a9b-30d6d0e3a025", "text": "not drinking lemon juice from a glass sitting down a blonde woman wearing a blue dress "} +{"id": "8002444", "video_name": "987229eb-e28f-5baa-9148-b452afa84571", "text": "a washing mashine is washing clothes 4k motion "} +{"id": "0003698", "video_name": "41f062f7-e1aa-56ed-b541-29b8a5b84bfb", "text": "Wide shot of an eerily quiet and desolate cityscape, overrun with vegetation and decay. Faint sound of wind howling. "} +{"id": "0004371", "video_name": "07e86f2c-93ed-5b8a-a567-020f3c497b9e", "text": "got the food covered in the kitchen "} +{"id": "0006237", "video_name": "28e8d579-4a46-5db3-841d-4ad59df4d4cc", "text": "extreme close up of a computer screen on a spaceship in a science fiction movie, high contrast lighting, high black point, monochrome colors, "} +{"id": "0004557", "video_name": "0b380cb4-4eab-5d50-9164-fe08e1acc9fc", "text": "a little boy that already ten years old lived on the castle were looking at the camera "} +{"id": "8001845", "video_name": "e49b2555-8e85-506f-8cde-91651560d582", "text": "ufo over fishing village, movement, wind "} +{"id": "2006920", "video_name": "1027c29c-d904-5fe0-a105-26137c710364", "text": "in olden days an Arabic man is sitting at horse in the desert "} +{"id": "1004043", "video_name": "4b02932e-964c-5759-b60d-9a62f0ec13b4", "text": "an eternal loop of robot arms "} +{"id": "7004377", "video_name": "5c53695e-723d-58b7-b664-88b3db1d4c73", "text": "psychedelic fractal style Alex Grey fast movements, action footage, camera movements "} +{"id": "2007944", "video_name": "9ee5e4e0-3a64-5d9d-b5ed-88a2add445c7", "text": "Create a realistic video of a monster coming out of the swamp, very gray lighting "} +{"id": "7002039", "video_name": "8321aaea-18f2-5075-bac7-c9ff7e03116b", "text": "Dragon breathing fire, slowly crawling in the derelict church, joel peter witkin and jan saudek, motion: 7, arri camera "} +{"id": "5001035", "video_name": "94ee6eb8-f65a-5ceb-be3c-470cc3f5d018", "text": "video of birds singing oh Uganda "} +{"id": "0006207", "video_name": "286cc6a7-a8a4-56b1-ae72-c3a5b5a45fb8", "text": "hard angle, american male, normal eyes, 18 years old, thin face, post warrior, dieselpunk, landscape with dragons, (messy medium hair:1.1), straight hair, (clothes with lots of accessories, uniform), emo hair, standing, renaissance period,the adventurous guardian, bright day, dragon friend, smile, full body view, good drawn face, detailed scenario, walking "} +{"id": "7003135", "video_name": "c1444f88-dfe5-518f-87bb-299ba823a4cc", "text": "People fighting in the stands at American football stadium upclose, realistic "} +{"id": "4003990", "video_name": "61172168-7952-59ba-92f3-a4b58dc0d8e1", "text": "lion in motion, four legs, serious face, hyper realistic, 8k "} +{"id": "6002835", "video_name": "42965c69-24c3-56fd-aecd-0d8fc38dfeab", "text": "alexander the great, a great warrior "} +{"id": "4003814", "video_name": "ce8435eb-a11a-54f1-8596-09dbd68e4785", "text": "mother and son trying on different clothes, sharing opinions, and making a purchase in shopping mall "} +{"id": "7003326", "video_name": "bedabee5-2ea6-5339-868a-742c86ef0f3c", "text": "Imagine Nubian neon, a media space that celebrate music, art and fashion from everything culture and generation "} +{"id": "6002694", "video_name": "539b1362-dea9-598d-96db-c01d81c8b3b5", "text": "create a happy water fall surrounded by happy trees and mountains in the background, bob ross style, panning into the left "} +{"id": "8001151", "video_name": "3365230f-f707-5329-b553-f9f39d471392", "text": "four girls exploring an abandoned city "} +{"id": "1004912", "video_name": "5ae47f02-4be9-53bc-9472-ce4da56a6b03", "text": "old bw movie, woman goes downstairs , we see from the the basement , dark "} +{"id": "0005067", "video_name": "141eb2df-7940-5b0f-af86-46ed421b6369", "text": "tank rolls in and out of screen "} +{"id": "4002598", "video_name": "d590e991-0b7d-56d4-a5bd-bf49e642d4e1", "text": "A little boy flew out of a paper airplane, like a line drawn in the sky "} +{"id": "3006027", "video_name": "1584d474-5b73-5f31-ae45-0f5ee9866e2e", "text": "a lonely man in surreal world "} +{"id": "3006577", "video_name": "9d9ddfde-4294-518b-a993-99362eb17e62", "text": "neon blue city with a road with a car, and a ring planet in the background "} +{"id": "2003370", "video_name": "1eb8b19d-f330-5f30-b2a7-12e702ba8bb9", "text": "Starship Angel Horse in outer space. Scifi, 1980s film style. "} +{"id": "1006530", "video_name": "7797517d-a921-5882-8aab-943a5a23d7a0", "text": "The forest was full of many animals "} +{"id": "6003311", "video_name": "468ebbe2-4a72-54cd-8541-ed246ec96009", "text": "Nothing grew, nothing flew, nothing walked, nothing talked. "} +{"id": "6002921", "video_name": "26726e87-9ffa-5307-beb6-ef525599049d", "text": "Young girl named Mia diligently practicing, learning to mix colors and capture their essence. "} +{"id": "2006809", "video_name": "99338f49-aec4-5bf7-a99d-a2c85279c6cd", "text": "ice hockey player dressed as Darth Vader, ice rink with other players, thousands of spectators in the arena high resolution cinematic style ultra clear, "} +{"id": "6002581", "video_name": "ebc02673-f290-560f-9845-ce846afd8d1d", "text": "cat girl wearing tight neon outfit sitting on motorcycle revving the engine in japan "} +{"id": "2005112", "video_name": "22c76267-2266-51a4-8c48-ab426faf4dd1", "text": "night blue sky with sparkling starts "} +{"id": "2003674", "video_name": "5e109981-b1f4-552f-9450-0ca3db020bc7", "text": "Grand opening of the Municipal Library. "} +{"id": "8003756", "video_name": "ec9945c3-ca85-53ac-8b94-39a842ab2d43", "text": "chicken feeling disinterested in crossing the road, 16:9, cars moving in the background "} +{"id": "1005378", "video_name": "62e0604a-7c1c-53cc-ac0c-a029e30b50dd", "text": "The morning sun rises quickly, beautiful light shines on the water, 4k, cinematic "} +{"id": "6002093", "video_name": "38af854f-d3bf-51b2-a33a-bbe66c8abcd1", "text": "a rainforest by a waterfall Message: NO (Font: MODERN) "} +{"id": "7003347", "video_name": "8ff9f851-e992-52d1-9cf6-1547c2e5c6bf", "text": "The setting is a busy auto repair shop, with other mechanics working on cars in the background. "} +{"id": "4003647", "video_name": "ab07c077-c1a6-5e4c-9a87-6bb9ad7d3d76", "text": "tow men unloading the box from the truck "} +{"id": "3005547", "video_name": "f4d8d67b-0a09-54e1-8792-3c0ef70f6fbc", "text": "Raju writing in a book, recording his wisdom and solutions for future generations.Animated cartoon "} +{"id": "6002627", "video_name": "212b8b90-777f-5f9a-92ab-9bd5926f8531", "text": "God and legions of angels descend to earth "} +{"id": "6004348", "video_name": "814913ca-9ce6-5da2-9957-4d21570e62ca", "text": "In the jungle at night with a campfire and animal eyes glowing in the background "} +{"id": "8002907", "video_name": "907fd29d-5534-50f5-ba83-41e407b6c4f6", "text": "cloud near the ground on a green grassy hill "} +{"id": "7002111", "video_name": "c37bd17c-b1cb-5444-9978-6c1792172924", "text": "One teenage girl find a mysterious box in the attic, realistic "} +{"id": "3006225", "video_name": "f5a4fb3e-d30f-5dc5-9dab-dd15948c9be0", "text": "a boy is running into woods, fear, rain falling, rotating camera, cinematic movie style, high resolution "} +{"id": "7002676", "video_name": "08d1b44d-0b7e-5127-9b62-6872514ba5a5", "text": "army of dogs using AI to save humanity "} +{"id": "8002151", "video_name": "ba5bc41c-a150-5bf6-b82d-cd3306f0211b", "text": "women tipping with a detailled hand on a big screen, adjusting an AI. 4k, Canon Cinema EOS. "} +{"id": "4002128", "video_name": "af3d0a71-4907-598a-ae5e-e66943d0145c", "text": "A beautiful TV presenter presenting news on a news program. "} +{"id": "7003432", "video_name": "d69c37cf-8228-5420-89b0-bae699df9d31", "text": "Flash gets the power of the Green Lantern Corps "} +{"id": "4004901", "video_name": "c2b9b8ad-ba8e-5dbb-a1d1-12cd0f75f8ee", "text": "Bruno Mars dancing through lively, colorful streets, other people dancing "} +{"id": "0005833", "video_name": "21ede3be-50cd-593d-86f6-ea4ed7d5674b", "text": "A powerful image of humanity and robots standing side by side, a symbol of unity forged in the midst of crisis, as they work together to prevent the complete domination of Earth by the Metal Dominion "} +{"id": "3004889", "video_name": "789074b7-9151-52d8-881c-41a348ddee43", "text": "Abdullah Ibn Mubarak, a scholarly figure, setting out on his Hajj journey with a sense of purpose. "} +{"id": "8003615", "video_name": "d16985d3-44e5-510c-b85e-d034e34b814f", "text": "kaleidoscope animation of metal mechanism Message: 1 Attachment "} +{"id": "1005212", "video_name": "5ff7ad1a-4838-5e04-aef7-29642caabfb1", "text": "Realistic view from front and battle with 3 enemies who are also a wizard use water elements, main character a wizard use his hand open finger to create a flame like torch in the middle of darkest cloud in the sky, cinematic and creative movement symbol "} +{"id": "6004246", "video_name": "2835ade6-ab9d-5a1b-8589-844518f80fed", "text": "Cinematic action shot of Jesse Ventura driving a sports car, empty city street environment "} +{"id": "0003511", "video_name": "3ecd41d3-620b-5356-9bac-7ff9a6673fd7", "text": "Two cat eyes looking at two people, in the grass at night "} +{"id": "3005693", "video_name": "443ba6a1-518f-55a1-b8a7-b1e307a18042", "text": "Are we truly alone in the cosmos? "} +{"id": "6004262", "video_name": "5c14e967-279d-5194-8984-4e35079c6432", "text": "Wool felt soft texture cute military Hummer monster truck hd 32k 3d lifted big tires shocks suspension toy texture sharpen well lit beautiful art "} +{"id": "1006689", "video_name": "7a9eba35-ad6c-5454-a436-9ef4d06196a0", "text": "children is playing with leaves in the autumn forest. disney style. "} +{"id": "7004718", "video_name": "0afc7551-0aed-5125-b0cb-b5e0731e1c12", "text": "automaton of anubis Alejandro Jodorowsky dream hue "} +{"id": "7004671", "video_name": "e4bbdf87-9d3d-591c-b3b5-7620a416a52b", "text": "Revolver shooting and then zooming into emty chamber showing arthur morgan "} +{"id": "8002202", "video_name": "1f322e31-945d-58f2-9ffa-1899c4b182a7", "text": "5 seconds animation, wind plands, small face animation, "} +{"id": "8001963", "video_name": "14206141-ffff-5341-9307-2854831e7204", "text": "suddenly a comic crash beside a room "} +{"id": "0005397", "video_name": "1a17fa4b-7657-57a8-a462-0d367be4b187", "text": "Ancient Chinese poem, Withered vines, old trees, crows at dusk; A small bridge, flowing water and some huts. "} +{"id": "2007097", "video_name": "f90553e8-4f8a-56cf-a82d-05d52ea845d1", "text": "animation for my app Popup, live shopping and marketplace (magazine, Dadaism, Pop Art, Blue Sky) "} +{"id": "0004242", "video_name": "05a73523-100f-5353-ab2b-8429004e5d98", "text": "Two male individuals hugging with their backs turned, looking at the Faculty of Architecture, Design, and Urbanism of Buenos Aires. "} +{"id": "1005253", "video_name": "60a1c552-b7d6-5614-bd22-bb998bc8002e", "text": "Idol of Lord Ram and Maa sita "} +{"id": "6004116", "video_name": "3025a283-33eb-5cf9-8f5d-30a5b3ca86f4", "text": "imagine a super hero avatar walking "} +{"id": "0006208", "video_name": "287409e0-fbf8-57a7-9231-16df1a8a35b3", "text": "colourful wildflowers swaying windy day sunrise in a japanese garden with waterfalls, colourful pixar scenery, realistic, peaceful, scenic, cinematic motion "} +{"id": "2004399", "video_name": "608ff3d3-0b54-5c4a-914f-74882954afd6", "text": "Cinematic short video of a horse in armour riding over a hill "} +{"id": "6002427", "video_name": "1c5779a8-4943-5144-aaab-315c449b580b", "text": "fps 24 a detective office prompt: in the style of the Maltese falcon black and white incredibly detailed camera angle from above "} +{"id": "3006319", "video_name": "1a327d19-ba1f-57d5-9309-7e657785bd3d", "text": "a door opening slowly with light coming through the door, style is realistic, zoomed out "} +{"id": "3005480", "video_name": "fb171863-9ba4-5f22-8d37-9e79e67124e7", "text": "a man is melting on the ground "} +{"id": "6002987", "video_name": "5b28583d-f72b-56fd-950c-4e4b0d873614", "text": "The Rich Man Buys The Millon Dollar Pizza "} +{"id": "1003474", "video_name": "40613d44-8082-5de6-9318-6c4ade83df4c", "text": "Two pehalwan(wrestlers) fighting . One of them is very healthy while other one is weak. Healthy is ODOO. Odoo uniform is Pink. Biztax has blue uniform. Weak is BizTrax. Spectators are enjoying the game. "} +{"id": "2005497", "video_name": "bf689666-c480-5bfe-8643-66d634f75489", "text": "Generate an image showcasing the spread of Hellenistic culture across the regions Alexander conquered, with people from various backgrounds engaging in the exchange of ideas. "} +{"id": "5001459", "video_name": "8ed538d0-e66a-5324-a08b-1798d6ca0907", "text": "animal farm in the style of waltz with bashir animated movie "} +{"id": "1004735", "video_name": "57c01749-21b7-5493-92f2-e19491cbb5ce", "text": "generate addiction as a physical ting "} +{"id": "6002732", "video_name": "2e7facb1-94d4-5537-bc51-7c8df0a4a6ab", "text": "little girl picking flowers in field at dawn with some blue woods in the horizon, animated "} +{"id": "5001470", "video_name": "69f094d6-51bc-51d8-a541-8245db49a620", "text": "3 d printer teaching writing to a boy "} +{"id": "4003844", "video_name": "e48963b0-03af-5079-9563-efced83e875f", "text": "victorian dressed family made of chocolate dancing "} +{"id": "7004797", "video_name": "07c1e0dd-5124-5522-96ff-bf44db8434be", "text": "A beautiful girl with blonde hair is walking beside the sea "} +{"id": "3003704", "video_name": "4779aac3-f1ac-5d94-a4c9-7569adb455f0", "text": "cinematic shot of an iconic actress crying, color grade, cinematographic, epic, amazing scene, highly detailed, movie, film "} +{"id": "1004211", "video_name": "4dcd4991-bda6-5a79-9a34-3e59581aaa9c", "text": "person walking aimlessly and looking for answers to their life "} +{"id": "1006691", "video_name": "7aa1fbeb-837d-5104-a60c-d127175078d0", "text": "Sheep are grazing, wolves are guarding them, and Arab Muslim women are praying and calling on their Lord "} +{"id": "4004567", "video_name": "2638527d-80be-5ce1-b5c9-e47906a81e45", "text": "Their first stop was the enchanted forest at the edge of town, where ancient trees whispered secrets and woodland creatures danced. "} +{"id": "5001063", "video_name": "e0e8dc3b-59a3-52b2-8cf7-2cbde57ab849", "text": "girl full body facing beach, waves crashing, sunset, rim light, bokeh, light bloom, cinematic, 4k"} +{"id": "6002262", "video_name": "c246391f-f44d-5980-b6c5-12e318e3527c", "text": "AI driven robot in an advanced factory 3d printing a house "} +{"id": "0006089", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "a forrest with big trees and birds flying around, colorful, ultra realistic, epic angle "} +{"id": "3006426", "video_name": "f513c9a4-411c-50a1-bc4b-69042ecd3a31", "text": "playing hard rock drums view from above showing the drummer playing in the style of nine inch nails "} +{"id": "6002606", "video_name": "33f93f7a-26b2-534c-b7a9-48b2479b151a", "text": "the lion lies on the girl, only her head is visible. girl tries to get out "} +{"id": "8003449", "video_name": "fe50a9f0-cdf2-5029-a9ad-af5c4382f58c", "text": "A man is dancing in the AI world, 8k "} +{"id": "3005172", "video_name": "fc28bbd3-2dd9-58dd-927a-3a4891455ca1", "text": "a hyper realistic view. A cabin sit in the valley. Snowing. Super detailed. Skyline feeling. Camera looking away and moving. motion 4. "} +{"id": "2004069", "video_name": "9ddb30b0-6758-5c8b-a2a6-14aa50123417", "text": "dancers in radiant bright costumes perform at a festival "} +{"id": "6003968", "video_name": "3d4bda1d-66cf-5474-b901-69bd468cd54d", "text": "polish soliders win with germans in 1945 "} +{"id": "8001749", "video_name": "4c061fe4-a9d6-5960-abba-5b3311b7f877", "text": "Girl standing at the bus stop, high resolution, slow motion, high detail, high quality, 8K, HD image: 1 attachment "} +{"id": "4002336", "video_name": "353e5262-467f-5d7f-b784-5fe088a5de35", "text": "Write a chilling and atmospheric story set in the dead of night during a full moon, where a woman becomes the most terrifying and dreaded entity to all who encounter her. Explore her transformation, her actions, and the reactions of those who witness this horrifying event. Convey the eerie ambiance, the tension, and the fear that engulfs the scene as this woman becomes a creature of dread on that fateful night "} +{"id": "6002351", "video_name": "42eebb21-200b-57f8-a8e3-afa1f8dbd364", "text": "abandoned turnpike tunnel with rays of light revealing colorful graffiti "} +{"id": "2004267", "video_name": "d49c1c2d-8a2f-5f89-a4ac-214b30746366", "text": "a tall tree walking in beijing forbidden city "} +{"id": "8001804", "video_name": "7fab32d5-899f-5456-a238-e6345f8e13f5", "text": "two Roblox characters in a fun game "} +{"id": "0005317", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960 arthouse film showing a grass labyrinth and a woman dressed in white searching the exit of the labyrinth "} +{"id": "2004207", "video_name": "06189f5b-f6bd-5974-aba5-d40eb8422ce1", "text": "lunar near years in dragonball z style "} +{"id": "8003335", "video_name": "72ab484c-cda6-553a-894d-f4874e912152", "text": "Man walking in the forest at night with backlight on trees, detailed, 4K "} +{"id": "7002563", "video_name": "1aa17dbd-68df-53b1-ba4b-0d43fecef9ca", "text": "luxury beach house with waves sun flare "} +{"id": "1005132", "video_name": "5e9dd0b7-3747-5edd-ad9b-32dd86496bf9", "text": "The car travels through the desert and at the end arrives in a new modern city "} +{"id": "3006923", "video_name": "64ab1018-eec8-53eb-935d-d60645dc4e7b", "text": "a painting with, diverse array of colours, clouds and planets in the sky, stars shooting stars, iss a matte painting by Noah Bradley, deviantart contest winner, space art, matte painting, concept art, atmospheric "} +{"id": "1006443", "video_name": "75f24bc1-5208-5a20-86d5-4efd2e394287", "text": "a cinematic motion shot of an apple falling from a tree, macro, 4k "} +{"id": "3003143", "video_name": "6fb0361b-14a0-5649-8e7e-05c46483a62b", "text": "two pixar style owls flying around a forest searching for forest friends "} +{"id": "2003427", "video_name": "ef69c2b7-fa39-5493-b1a4-6b1e67893576", "text": "make a video in a cartoon way where three threads with different colors fly next to each other and then they all merge into one white thread "} +{"id": "0004105", "video_name": "034c5018-9172-5425-aaef-7f45752973bc", "text": "A man walking on the beach who suddenly trips and falls into the water in cinematic style "} +{"id": "0003468", "video_name": "3e200f7b-cc01-5fb8-8af8-2b862baed1b3", "text": "Participants paralyzed with fear,\nHorror scary image 3D "} +{"id": "3003712", "video_name": "0c40723b-0fcb-53fa-8ae2-48583b242f47", "text": "cyber car driving in an night city night core "} +{"id": "2004630", "video_name": "86551ec8-98ea-5371-bc48-cac40a2af0c0", "text": "a girl standing and sleeping in a very crowded and noisy bus "} +{"id": "8001997", "video_name": "500c29e8-39f0-5e17-a449-9bcbac8e2919", "text": "old men talking to each other on a sunny day at the park in south africa "} +{"id": "4002759", "video_name": "f054a8f9-a253-5b85-ae79-b7dfbdb7c2f9", "text": "a spooky carnival stall on a foggy night "} +{"id": "0003067", "video_name": "3661a3cc-adc3-5c25-b0b6-5cc3a1c78d87", "text": "snapdragon cartoon firing lasers into a busy crowded city "} +{"id": "2004157", "video_name": "05a4fa29-3c1f-574e-b17b-9e1e68725cc4", "text": "3D Animation One bright morning, as Sparky stood on a tree branch, he heard a distress call from his friend, Benny the Bunny. "} +{"id": "3006826", "video_name": "05d994ea-9cce-5102-9fce-4961af31cc95", "text": "make a 2d funny cartoon of a tradition indian women selling fish in the street side "} +{"id": "1006067", "video_name": "6f649649-fdb5-50e1-9cfe-324fa816bc3e", "text": "Hot Steamy Fresh Pizza on a cutting board "} +{"id": "7004834", "video_name": "7ce6c19b-7ec9-55df-b502-bde8993aeeeb", "text": "a rainy forest with ufos flying in the sky "} +{"id": "2005590", "video_name": "578b8d79-1d4e-575c-b409-4fa534fec8d8", "text": "Two Cute Animated 3d playing each other "} +{"id": "3006283", "video_name": "e8b23020-514a-54ce-bb70-4209c9f93119", "text": "man having argument with his dog on a plane "} +{"id": "5001751", "video_name": "7f74b238-df48-548f-8f96-fc29c91698ca", "text": "two boys teen warriors fighting in jujutsu style wearing simple war gear. "} +{"id": "3003549", "video_name": "7ede276b-083c-58db-b465-9bb3b5eca2d5", "text": "LSD animated award winning hamburger button being pressed "} +{"id": "7004989", "video_name": "bba6814d-ec9a-59b7-81c6-59783606638c", "text": "rainbown in background is streaming downwards "} +{"id": "8002153", "video_name": "447543f4-396e-5f00-8965-0c083ac469b6", "text": "Mouse holding a piece of cheese running away from a cat "} +{"id": "0004309", "video_name": "06dff108-e6ff-5ef2-8008-ac0b432f27ee", "text": "Creating a video of sandy dough being cut or sliced into vertical sections. "} +{"id": "2005709", "video_name": "7579a212-af0e-5801-a9c3-4d8acf4396ba", "text": "a haze of grass moving with the wind direction on a sunny day. "} +{"id": "1006159", "video_name": "70c5d588-20a3-5281-82ed-428dfc186f80", "text": "Scene 3: Tilling the Land\nTom and Emma, with animated determination, plow the fields with rustic tools. The crops sprout, symbolizing their hard work and dedication.\nRealistic view, zoom in, fps 60, wide angle, crane view, UHD DSLR D50 camera angle "} +{"id": "3003029", "video_name": "76a77aef-4837-5abc-b6c4-712b8c4bf499", "text": "AR Campus indoor navigation app with friend finder feature intro animation video "} +{"id": "7004062", "video_name": "84755021-98c1-550b-97fe-562e43a13111", "text": "animation, make the character play his instrument "} +{"id": "6004947", "video_name": "a13f64cb-bfcd-5c85-b8ed-dda2da92df2e", "text": "a young man and woman dressed in camouflage crossing a road jogging together "} +{"id": "3005223", "video_name": "380f8087-e81d-5aea-becb-953fa7285de2", "text": "men in ww2 uniform holding baby in both hands with life happy ww2 propaganda art "} +{"id": "2005934", "video_name": "6be4f316-8637-59da-8e69-65e330a32591", "text": "A college girl wants to go abroad for mbbs studies Message: Future Doctor (Font: MODERN) "} +{"id": "1004242", "video_name": "4e7e6eb2-72ed-523f-8dab-be379a341ba8", "text": "fender jazzmaster guitar player desert cenario plays camera goes far away "} +{"id": "3005330", "video_name": "6d6b7124-f8fc-5b85-aae7-80c48c65260f", "text": "Bunny rabbit Flying in the air like superman shooting laser out its eyes very realistic detailed "} +{"id": "3006791", "video_name": "49e00a1a-4b2d-51c5-8fac-cf65b6b2d96a", "text": "longing to reunite with his old friend "} +{"id": "3006550", "video_name": "63ed1b07-73bc-5b32-a79b-89078a068661", "text": "man watching comets fly across the sky, cinematic ar 16:9 "} +{"id": "7004200", "video_name": "04cb8da2-342c-5506-abc1-b4dce6ea03cd", "text": "a man smearing a stick of butter made out of silver on his face. "} +{"id": "0004466", "video_name": "0996854f-da0e-52ff-b8f5-48062ae17628", "text": "snowing in the background, anime style 8 fps "} +{"id": "0003876", "video_name": "4505dd16-3f6f-5c79-8d57-00ba3eb2c6c0", "text": "a school boy through a eraser "} +{"id": "8001173", "video_name": "dc0b44e4-793d-5e73-8c69-de4a2a6e275e", "text": "silhouette of a person meditating in the space "} +{"id": "3005304", "video_name": "61ba1f64-532a-5d35-bab6-705ceb9d1665", "text": "fifty something white man with greyish hair in a dark blue suit stroking a chihuahua which he is carrying on his left arm "} +{"id": "8001771", "video_name": "f2c14cc7-1170-5748-b797-5d787bc7a478", "text": "ancient Warriors group attack on wall at night in china "} +{"id": "1006739", "video_name": "7b6e8011-aee7-5895-80cc-a28e34e0266d", "text": "Generate an image of doctors discussing their concerns with Mike Tyson. Convey the seriousness of the conversation, with a focus on facial expressions and body language. "} +{"id": "6004096", "video_name": "012081f4-d83e-5cf1-9ea5-b87264663955", "text": "a big bird standing upright with a big beak and blue fur that looks like a monster standing in the jungle coca face on opium bird or luh calm fit "} +{"id": "6003407", "video_name": "2b2ea2ef-585a-50d8-a24b-411299b31c62", "text": "a cute lovely cat is eating hamburger, detailed, disney style "} +{"id": "1004841", "video_name": "5978d5bc-e811-5681-82b2-26d2be57f8f0", "text": "detailed, realistic, cinematic shot of a couple in their late 20s scared and fearful in an abandoned house in the middle of the forest during a stormy night, raindrops falling on their faces, fear expression, dramatic lighting, moving camera, slow motion, intense atmosphere, naturalistic cinematography, high quality, filmic image, 24fps 8k, HDR, raindrops storm in the background, cinematic style , high definition sharp "} +{"id": "6002767", "video_name": "443a49f7-6511-5f07-8a7e-3f45259283fb", "text": ". He was part of the occupation of Puerto Rico and served as both depot and chief quartermaster in San Juan. "} +{"id": "8002992", "video_name": "96777cf6-2340-5d4e-a4de-7cb54718eec2", "text": "The beautiful press woman wants to find love Message: 1 Attachment "} +{"id": "2006353", "video_name": "07a87507-4222-5c37-8ba8-6caf6684c4e3", "text": "old footage from new york with people selling bison skins in 1873, cinematic "} +{"id": "2004025", "video_name": "1e28a04a-1982-5620-91b2-4ad490b992f0", "text": "Lord Vishnu Relaxing in between Cosmos "} +{"id": "8002917", "video_name": "d93e9fcb-9172-5d6b-a7dd-908fc681b6fc", "text": "Digestive biscuit crunch breaking in half "} +{"id": "1005802", "video_name": "6abe9f0e-6919-5dea-b77d-30a0de661520", "text": "Gundam style, a robot shooting another robot "} +{"id": "6003338", "video_name": "74dda4bc-cbca-5a2e-9bdb-4c1a7be5a19e", "text": "Percentage with arrow up and down. Banking, credit, interest rate. Motion Graphic "} +{"id": "7003189", "video_name": "a7cac1b8-14b0-5788-b6bf-5bf7cdf48f53", "text": "bob schneider dreaming of a beautiful world "} +{"id": "0004465", "video_name": "0985c9e4-9f58-57de-9b9b-97e9d59f7a1b", "text": "adorable monster jumping up and down "} +{"id": "0006899", "video_name": "3501f080-20cf-546d-ba94-6ad388adb57a", "text": "Some say the world and in fine some say ice "} +{"id": "5001562", "video_name": "ab3c6ddd-c726-5c3f-aaab-0a10692138c3", "text": "The lightning that connects heaven and earth "} +{"id": "0005327", "video_name": "18d7b002-48e8-565f-8744-fe533ffaedbf", "text": "visibly pleasing, a mind bending acid trip, neon lights, colorful,magical landscape, tall structure "} +{"id": "2004396", "video_name": "50f8c6f5-5dad-53b9-8e9b-b387199edf4b", "text": "line drawing. a chicken flaps its wings and launches into the air "} +{"id": "7003627", "video_name": "277615d3-f99f-5732-9173-73aea3c22c13", "text": "a bladder empty fill to the full bladder "} +{"id": "1006814", "video_name": "7cb132c7-0fdb-5403-b4a2-8dd87c68cdfa", "text": "Create an enchanting scene of the forest entrance where spread his wings wide and set off on his journey. Include magical elements like sparkling trees and a mysterious path "} +{"id": "3004617", "video_name": "74dc44ad-0bd0-5b3c-8097-501933234738", "text": "chinese girl cartoon, smile, apples, tomotto, cuccumber flowers "} +{"id": "3003481", "video_name": "cc4a4bbb-ed43-5995-a4ea-eba5d97d39a2", "text": "Dong Ho painting of mouse wedding "} +{"id": "2003448", "video_name": "00b64725-3bad-5fa7-a4e9-4a5e80301600", "text": "Beautiful bird with a nice face on the seashore "} +{"id": "6002839", "video_name": "49308680-f49d-56b4-bc4e-35e3f0aa6a56", "text": "a shirt sleeping on a bed "} +{"id": "8002672", "video_name": "3dea197b-2574-58f8-91d3-4b36ae20520a", "text": "grade this up Message: 1 Attachment "} +{"id": "2006470", "video_name": "23a88778-51cd-5383-80b3-f721153507f1", "text": "sunny day,a small village surrounded by forest, people walking "} +{"id": "2006189", "video_name": "d1f2a9be-5a89-5b60-84a2-f67c282e396f", "text": "a panda bear with the use of technology "} +{"id": "2004912", "video_name": "cfa5bf69-32c6-5abf-9849-d1d822e42875", "text": "a lady dancing under the sun in a field of lavender lillies "} +{"id": "1004162", "video_name": "4d0ff0ef-e16d-500e-8804-1ad7bae77d38", "text": "solid snake from the metal gear solid series hiding in a cardboard box in playstation 2 style graphics "} +{"id": "2004108", "video_name": "1e785b71-3aca-57a9-a465-4d3618212c61", "text": "Pikachu wearing suit walking,hyper realistic,sharp focus "} +{"id": "7002647", "video_name": "0b251616-a820-5c2e-98dd-7dae63991b4b", "text": "technology computer and room with grey royal look like a tech room "} +{"id": "6003984", "video_name": "4b63a23d-3db0-56ad-86d8-228956bbbd51", "text": "rain on a triangular tent close to a small lake sorrounded by bushes "} +{"id": "3004947", "video_name": "ff85e3b8-baad-5306-bd7b-dae34e214ea5", "text": "Introduction of Elara, a curious and brave young woman in Willowbrook "} +{"id": "0006640", "video_name": "3013e1a2-3ad7-54a5-a323-c1f5e5df804a", "text": "She opens the BeautoNomi app and orders a hair stylist. "} +{"id": "3005091", "video_name": "a247b40d-93d5-5831-9975-f44f9401e48b", "text": "happy people in the streets of Antigua Guatemala celebrating a better future "} +{"id": "7003214", "video_name": "1904e2a2-7307-5243-8243-ef0c12e70158", "text": "Create an image of two individuals sitting across from each other in a softly lit room, their eyes locked in deep and meaningful connection, exuding a sense of profound understanding and intimacy "} +{"id": "7004295", "video_name": "ba9425a2-fb93-5aa4-9a0d-2853c696c614", "text": "Alien with flower dna, psykedelic colors, sunlight gleaming, extremely cinematic and photorealistic, "} +{"id": "2007391", "video_name": "d7dad1be-0763-5253-8451-5be530de8dd5", "text": "the pope plays synthesizers, the pope plays a modular synthesizer "} +{"id": "6002618", "video_name": "88ed4462-c552-5c74-bdee-9b22a3befb6f", "text": "cctv footage of monster walking across screen "} +{"id": "7004335", "video_name": "32c96ce9-1369-5a5e-9cff-f66b89cef4b6", "text": "a video 9:16 on culturally rich interiors of Haldiram adapting to the locale of punjab "} +{"id": "4002193", "video_name": "a972f86c-89f2-56bd-9803-315dcc228d3f", "text": "Lily and Max surrounded by swirling magical energy, the situation growing increasingly chaotic) "} +{"id": "8003298", "video_name": "79997bbd-48b0-570c-86da-8e95c0186e0f", "text": "A little girl and a peacock in the garden "} +{"id": "1006709", "video_name": "7af13603-be45-5725-8923-b4434c01bc46", "text": "an old man walking with a zimmer frame, up a steep hill, looking tired and sad, 4k "} +{"id": "2005999", "video_name": "9f69e18b-efd2-5c17-906b-7b010f303bc0", "text": "2 mafia bosses staring at each other before starting a fight "} +{"id": "6003666", "video_name": "c171954d-2eee-574d-b873-d595a5f2930c", "text": "a green dj bird in the middle of the crowd in the rain, enjoying the music "} +{"id": "6004823", "video_name": "253aac71-5066-5e14-b3b6-e3ee02a8caff", "text": "rompt: A dark forest at night\n\nSound effects: Wind howling, crickets chirping "} +{"id": "2007743", "video_name": "a567198f-9a7f-5168-953e-930894042fe1", "text": "Corals in the water Message: Pika Labs (Font: MODERN) "} +{"id": "3003729", "video_name": "d9e7c4ad-3198-5c65-a317-5f1752c309ec", "text": "ghost floating down a hospital hallway, creepy lighting, cinematic, scary horror film "} +{"id": "1003080", "video_name": "38a8b929-3df6-59e5-9b2d-fd16c568307d", "text": "man with ADHD who finds himself lost in society "} +{"id": "2003130", "video_name": "b631c63d-feea-509a-9a15-d2fb55347061", "text": "a girl with blue highlights sits on the floor and glues rhinestones on shoes "} +{"id": "8003652", "video_name": "1c855515-7d2a-5e4c-ba83-ece093b0c1a0", "text": "hyper realistic image of rocket launch "} +{"id": "5001826", "video_name": "03d02c20-5ee9-5d63-ba96-64dc4791040d", "text": "promt: make this woman smile to the camera "} +{"id": "3004257", "video_name": "fb8bab72-b6fe-56f4-aa36-28d2617ec73f", "text": "a firetruck made out of lego blocks racing to a fire "} +{"id": "7004683", "video_name": "cb46b301-d563-5aad-afa0-2dadcbd926f1", "text": "Tendrils stretching across galaxies, creating a sense of impending doom. "} +{"id": "3003612", "video_name": "68235087-b88d-5c24-91e3-3ffd44441b9c", "text": "background: mountains shrouded in fog.\nsky: morning moon, flock of birds flying to a south\nfront: forest\nCamera: slowly zooming into the mountains, forest moving forward to a viewer point of view (dolly zoom)\nweather: fog, spring\nCartoon style: soviet cartoon style "} +{"id": "1006805", "video_name": "7c922abc-3680-5727-9789-46b3ec05aead", "text": "The man blinks slowly, breathes slowly, and the camera slowly pans to his face. "} +{"id": "2006951", "video_name": "72b8df13-745c-5d94-92e2-9b85abf1d773", "text": "I need an illustration of a watermelon in a marketing agency working on a creative project with more watermelons working for me. "} +{"id": "6004228", "video_name": "684bd149-5155-5497-9853-85cfa03a70e8", "text": "inmate in a prison cell, cctv camera perspective in nightvision mode "} +{"id": "7002489", "video_name": "5697ee22-e564-561d-8355-35ef41ae68f1", "text": "Woman screaming in the middle of the street wile a car comes to drive straight towards her "} +{"id": "2006260", "video_name": "fb1c49e7-fabc-5540-b984-7b380957d5ff", "text": "Georgia is where the cottages stand in the snowy forest, it is a very beautiful place where they fly with drones and take videos. "} +{"id": "2005664", "video_name": "f4cd13ac-2321-5000-ad3f-101a20e2e615", "text": "elon musk diving in an astronaut suit in the ocean "} +{"id": "1004498", "video_name": "5360c020-2f69-5f2e-a672-a4c95a47f33e", "text": "BULL DOG (excited) What an incredible adventure, guys! We make a great team! "} +{"id": "1005376", "video_name": "62e021e4-4c96-5719-b2bd-6a2ae1d101a9", "text": "Present a comprehensive guide to the rituals and practices followed during Navratri, focusing on the significance of each day and the specific rituals associated with Maa Mahagauri on the eighth day. "} +{"id": "8001882", "video_name": "bef759bf-dffe-5784-95b7-5ebc0d623b99", "text": "small sailing boat in the sea stormy weather "} +{"id": "2005918", "video_name": "17c1c498-09cd-55b6-93b8-fae380810285", "text": "the fascinating things he had learned, "} +{"id": "1004956", "video_name": "5b96cc13-83d8-5ce5-9ea7-b88158934c52", "text": "The girl gently caught the flying butterfly with her hand "} +{"id": "8003237", "video_name": "9c4af032-0f48-5bfe-a1f1-76e4cea7f394", "text": "a video with actual fortnite characters "} +{"id": "2005822", "video_name": "961600de-2f4a-5900-8b6a-af5c6c06cbf5", "text": "Autumn Jiangnan scenery, the morning mist covers the lake Autumn wind bursts of willows from green to yellow There is a tiny boat on the lake The leaves are fluttering and falling in the autumn wind Beautiful lighting, National Geographic Photography, landscape photography, Ultra High definition, HD visible fluoresce hyperrealism photograph \u2013ar 9:16 \u2013v 5.2 "} +{"id": "7004779", "video_name": "73cbc932-deea-5857-86ba-f4d83e5020e8", "text": "close up of bob schneider crying "} +{"id": "3004911", "video_name": "96c17b86-9e78-5a65-98a8-9890a65a4f22", "text": "100 ft man reaching for the moon "} +{"id": "8001287", "video_name": "8d33cc26-7f71-5dd5-a86b-e770abdf9ee1", "text": "A LOADING screen a square which is welded "} +{"id": "8002924", "video_name": "91ccc85e-5fc5-5ee3-816b-d19cdba34c5c", "text": "cartoon superhero with x ray vision "} +{"id": "6004342", "video_name": "bad5e172-6210-50c5-9436-7388b4542cd4", "text": "the cat is sitting in the laptop playing minecraft "} +{"id": "5001975", "video_name": "2913bbf2-ebb1-5ae2-a227-8f3cce69e611", "text": "movie trailer about girls who fall under the astrological sign of cancer "} +{"id": "2007286", "video_name": "7fa031aa-a5e7-5d08-9d90-bd205b538757", "text": "a honey drop falling from honey comb close up shot, honey comb attached to a tree branch and sun set behind the tree with a beautiful sky clouds and flying birds "} +{"id": "7003012", "video_name": "b4ccba9b-3bf7-5d6b-941a-90425850a34c", "text": "black and white stains Message: HA? (Font: MODERN) "} +{"id": "5001159", "video_name": "2abb764c-3718-5104-8540-4169b7a87532", "text": "60s newyork street, boy selling newspaper, old man getting his shoes cleaned, vintage cars passing by. Kodachrome "} +{"id": "2006781", "video_name": "ed9a3684-9e05-5391-a169-78d5e7d94f9a", "text": "bearded giant gazing down at the ground littered with human bones and body parts. Sepia tone "} +{"id": "8002437", "video_name": "2c9c13c8-86c0-5a47-9a07-e9370cecf1db", "text": "an image of a bride and groom from the back, no faces, "} +{"id": "3006333", "video_name": "f88e98e1-1318-517c-bf6b-d58eb1758e6a", "text": "Baby Lord Ganesha Listen Music In Hadphone "} +{"id": "0006018", "video_name": "251c0fd4-3264-5b69-8616-751b7cc9f32e", "text": "Cinematic medium shot of a tiger walking in the jungle, soft lighting, 4k, sharp, Canon C300, depth of field, highly detailed. Message: 1 Attachment "} +{"id": "6003323", "video_name": "21086ae1-b1d9-50c2-a6c9-c1fe26ef11ba", "text": "running and hair moving and smiling animation girl "} +{"id": "2003534", "video_name": "7ccc16d5-c47a-5c31-aa01-fbd81dcce4c8", "text": "alica in the wonderland in magic forest with fantastic animals and a big white rabbit "} +{"id": "2007820", "video_name": "d9aa7483-b88c-563a-ad15-96697d2daf22", "text": "Nightfall: Transition to nightfall with the moon casting an eerie glow over the village, setting a tense atmosphere. "} +{"id": "2005936", "video_name": "1bd52db1-51b9-54a4-a9a8-1634a8344390", "text": "Bacteria is spreading in the shape of a capital letter A, dark fantasy ilustlation, By Salvador dali "} +{"id": "2006645", "video_name": "1900b48a-48bd-50e4-b339-29e459b52b39", "text": "a realistic view of the globe and map of kerala "} +{"id": "4002955", "video_name": "53e47951-7fd5-5914-9e00-3a2cb3341a2f", "text": "Visualize Grandpa Harold, Squeaky, and Remy sharing a picnic blanket amidst the woods. Noodle bowls are spread out, and the trio exchanges stories and laughter, showcasing the unique friendship that has formed. "} +{"id": "3006105", "video_name": "4bc87134-11ae-5fd7-b037-2c61f83b70a6", "text": "shree Krishna standing on the chariot pointing arrow in the middle of the war "} +{"id": "1006605", "video_name": "79065967-58c2-51b5-a3bb-0eb5e0120a30", "text": "bring a character to life a student hacking some website and making money for a minute make this vide long for 2 minutes 3d 4k "} +{"id": "3006327", "video_name": "c59a8efe-470e-524c-9139-66df818285b5", "text": "hyperrealistic white abstract wallpaper 4k luminous perfect "} +{"id": "8001251", "video_name": "2c96a837-0f41-560e-89f0-cd72070983f4", "text": "A ghost about to possess a girl "} +{"id": "4003791", "video_name": "369d7431-ed69-5616-b4ed-17a8aae43602", "text": "He sat there the whole day with his eyes closed and remained immersed in deep meditation. No words, no worries, the prince was filled with immense peace and joy from within. "} +{"id": "5001817", "video_name": "c52d289c-c8d1-5081-8907-f00f7f597e2e", "text": "Picture: A sunny meadow with colorful flowers and butterflies "} +{"id": "2004417", "video_name": "af543b8e-62d0-5327-84e3-c3b7958f47dd", "text": "the ronaldo showing his middle finger to Leo messi "} +{"id": "4004674", "video_name": "acdce93a-1f1e-55e4-9749-ba1e4f34ddd7", "text": "creates a video of a beautiful reptilian being wearing a space suit and boarding his ship accompanied by a blonde girl ultra hd studio light "} +{"id": "0003094", "video_name": "36e71006-8666-59c1-ac38-9c3336135b01", "text": "A realistic 3d Living room window with light blue curtains getting blown by wind "} +{"id": "3005374", "video_name": "da55576a-d5f4-515f-bfe7-16a18cc74059", "text": "animal movment walking and ajimal eye "} +{"id": "3003559", "video_name": "17b2d417-7ed1-5166-a1a8-2aa529091252", "text": "girl lying in bed sad, missing someone, thinking, eyes slowly closing, slow motion "} +{"id": "3004237", "video_name": "6562acab-e8cd-5221-9993-beddea344111", "text": "a spray painted graffiti wall in the middle of a desert Message: we already won (Font: MODERN) "} +{"id": "7004132", "video_name": "0157eb90-97ec-5be2-b965-e11add93bbd5", "text": "some people walk at a park, the sky is beautiful, the wind is slowly blowing "} +{"id": "8002509", "video_name": "7fabba11-a1b7-5c45-bc90-3f00c9a2107e", "text": "video a litte girl is co cute . she can speaking "} +{"id": "3003165", "video_name": "4175c4cb-96ea-57cb-8705-52f97bbe686b", "text": "a man forging a sword out of gold, realistic, detailed "} +{"id": "2005308", "video_name": "6dd8f963-4882-5eff-b8f9-9a8e71a2358c", "text": "Forest, trees in the foreground, stone temple with Celtic symbols in the middle, Stonehenge, snowy mountains in the foreground, S composition, Disney style "} +{"id": "4002320", "video_name": "8650c67f-ec17-5acc-9a4e-de605a8a98ed", "text": "create interactive image intertwined between power strands "} +{"id": "4004769", "video_name": "77e1c4a9-3ecb-57d7-b027-c914c6a739f0", "text": "man with super power electricity lightning effect energy wave sphere simulation energy ball "} +{"id": "0006219", "video_name": "28900265-489f-5699-aefc-f9a8d4d6afd3", "text": "In the Forest The camera smoothly moves through the dense trees, showing the wild and picturesque forest. Behind a tree, a woodpecker discovers a mushroom and sits down to eat. Suddenly, it sees a squirrel jumping from branch to branch, gathering nuts and hiding them in a hollow tree. The camera transitions to a group of deer grazing in a meadow. "} +{"id": "8002279", "video_name": "14e9aeef-d49a-5ba8-a83a-2a347a1abf8f", "text": "a cozy videofeaturing a cup of Coffee alongside a book to evoke relaxation and reading. "} +{"id": "2004185", "video_name": "04332c1b-dcfb-51dc-83a9-f7872b96a0e4", "text": "furry white dragon fly in neverending story landscape fantasy "} +{"id": "0006830", "video_name": "33d1fe45-6aad-551d-b66a-ec9ce319714a", "text": "(rotate your phone message on screen) "} +{"id": "3004303", "video_name": "45ba2ec1-f916-561a-b5d7-abcfcf0b058f", "text": "In the forest, animals coexist harmoniously.\n\nRole:\n\nFox Elder (Old Fox)\n\npeacock\n\nSquirrels, elephants, and other forest animals "} +{"id": "2006385", "video_name": "78be3f97-aef7-5f08-866f-191ce64aa3c4", "text": "a mixed creation made up of lion, human, kangkong, Godzilla is saving the America from the asteroids falling rapidly towards earth, "} +{"id": "7003488", "video_name": "f0bf46a1-baa0-5bee-a8eb-6b73a112b298", "text": "Lamborghini flies at breakneck speed in the night city "} +{"id": "4002699", "video_name": "d7638b74-d962-5b19-8e81-f15de52b4325", "text": "Optimus Prime tests if Cybertruck is bulletproof "} +{"id": "4003970", "video_name": "b1427273-0db6-5575-adf3-a0283eb2a0db", "text": "imagine a face wearing and taking off the glasses Message: 1 Attachment "} +{"id": "3005978", "video_name": "11b594a4-2e04-5dba-a99d-8bad282f8e03", "text": "many turtles dancing in fantasy world of the ocean. "} +{"id": "2007702", "video_name": "7804ed7a-be98-578b-8609-44e9d5e49bca", "text": "The characters and dragons in the picture need to move Message: 1 Attachment "} +{"id": "4004345", "video_name": "497651fd-f898-51e9-be02-3acc5fe113ac", "text": "a geometrical triangle (colored in red childish style) in a white background "} +{"id": "2004065", "video_name": "480dafd1-c131-5a85-bd17-70191ad36572", "text": "A woman meditates in a colourful garden "} +{"id": "6004927", "video_name": "525ec174-1d3a-592a-83b5-d1abc40bf8ab", "text": "Cosmic Horrors, mecha, mechs, machinery, Eldritch Horror. "} +{"id": "8002388", "video_name": "c8f6c5ca-a29e-5304-8d44-35894086b0ad", "text": "Show the girl examining a rosehips oil bottle and nodding in approval at the antioxidant properties mentioned on it "} +{"id": "4004893", "video_name": "5e1a43c0-cd7d-5eb9-bb54-44fac3a911b3", "text": "clean pool water with a small avatar, cartoon style, 30 years old woman casually dressed is at the bottom of the scene "} +{"id": "1006261", "video_name": "72b04042-3323-5f2b-a1d3-78e8d649f33d", "text": "Mary Queen of Scots holding court "} +{"id": "8003619", "video_name": "d8ca4fdb-1e2a-5bb1-a432-9771ffa15e05", "text": "cars moving slowly on the road in a straight line, wind flowing slowly, clouds are moving slowly, "} +{"id": "3005659", "video_name": "d3ef878a-9da0-580e-8940-9a40f4298d31", "text": "An entity representing fear, scary, dark, dark oil painting, extremely detailed "} +{"id": "2007372", "video_name": "e60db72d-df50-57c1-b368-ccc00e48c34c", "text": "girl performing anime style yoga pose "} +{"id": "3005044", "video_name": "6e90b855-2838-5ae2-b976-98ff892c9199", "text": "a orange jersey man with a hat seeing the sky "} +{"id": "1003525", "video_name": "41044dfc-337b-58d4-a0c7-f91758829e05", "text": "Two hands holding a playstation joystick "} +{"id": "1003548", "video_name": "417c4553-c349-5f1f-be5c-4faa30917676", "text": "A warehouse, the knowledge of all walks of life in the warehouse is stored here, cartoon style, content light "} +{"id": "8002097", "video_name": "947327ab-1d9f-5759-9180-3f96ade8671b", "text": "the god poseidon and the goddess athenaeum are confronting in frond of the acropolis "} +{"id": "8001273", "video_name": "eb966af0-7aa1-50b9-a761-b4a60ec67a7d", "text": "fire bursting from the middle of the screen outward, fiery explosion, sun, inferno, fervor "} +{"id": "3004278", "video_name": "573f97c6-835d-58db-b224-fcdd3e99c7bd", "text": "victorain society in 1873, film footage "} +{"id": "6003067", "video_name": "1009c175-06ee-5385-9e4b-ad3c30842d98", "text": "3d black crow sitting on the tree "} +{"id": "8001552", "video_name": "7ac1219e-e6db-5898-8471-07c98f96582b", "text": "hockey player standing in the middle of the rink looking at the scoreboard "} +{"id": "0005079", "video_name": "1461630b-9d82-546e-89a8-b177da33880f", "text": "a lush green forest river gently flowed "} +{"id": "6002173", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "The wipers move faster and faster, as if to cheer up the driver and encourage them to move forward bravely. The scenery outside the car window is constantly changing under the waving of the windshield wipers. Sometimes it is dense forests, sometimes it is magnificent mountains, and sometimes it is quiet countryside. Every scene is like a picture scroll, making people forget to leave. "} +{"id": "0005400", "video_name": "1a29733c-81a3-529d-88e6-836182e066f6", "text": "Kiki, the world explorer, embarked on an adventurous journey to uncover the secrets of the globe "} +{"id": "3006704", "video_name": "621af4b9-0eb0-529f-bd98-72810476613a", "text": "Scientist working in an advanced laboratory "} +{"id": "1003344", "video_name": "3d95f2a7-2fc2-5566-8b7f-9367080302fd", "text": "3D animation, a whale flying in the sky"} +{"id": "8003586", "video_name": "e3ac704b-5f17-5029-af06-082ee4bdbffb", "text": "high speed car chase, cyberpunk city, spaceship, liquid chrome, branching electronics "} +{"id": "3006831", "video_name": "de4cd32c-ba5a-5fe3-abf6-1f8ed4407ffc", "text": "world is going fster and faster "} +{"id": "2004561", "video_name": "8af78395-b89d-595d-85a8-95b9ef9ca86e", "text": "old people walking on the beach from behind "} +{"id": "1004862", "video_name": "59c7f74f-ec2c-53c7-8013-a6b4fa69eee8", "text": "generates the image of the head of a deer that has human hands instead of antlers "} +{"id": "7002895", "video_name": "7411a466-9288-5ca8-a8f2-9596268ba69c", "text": "Super Mario bros running very fast in a dark castle "} +{"id": "6002003", "video_name": "6372bf48-854e-5c92-93a2-d6bb0819695c", "text": "an orchestra wearing Sky uniform with a director playing music "} +{"id": "6004284", "video_name": "5bef3ab4-bc64-5aad-895c-de5433f5b484", "text": "allwalking,In the middle of a dense forest, a little child named Maya got lost. With teary eyes, he tried to find his way home. The evening light shone through the trees, and his small steps tried to conquer the fear that grew as the forest darkened. "} +{"id": "2004358", "video_name": "8a63665e-bff0-5bec-9a50-4654672bc773", "text": "a wall with 25 doors panning from left to right, stops at door number 25 "} +{"id": "0003585", "video_name": "3ff5ed4f-64bc-516f-8e44-011215bf2d63", "text": "a boy is walking on a street and everything besides is ruined and fire is everywhere "} +{"id": "8003411", "video_name": "8e8a74d0-86b8-5942-b439-a0de0aec25fd", "text": "a video which describes difference between Devops and SRE "} +{"id": "7004685", "video_name": "6c9c327f-bb14-5ac3-9127-f27301c5b247", "text": "two barrels rolling down a slope "} +{"id": "6003971", "video_name": "e1f9e4c8-1398-5148-bb8b-f2780d9cea6e", "text": "us Flag on a balcony on a pole with Green trees in background "} +{"id": "7002164", "video_name": "10a59fb8-36ac-59fe-800d-c9f26a89fbdc", "text": "1970s super 8 footage triangle shaped human "} +{"id": "7004313", "video_name": "63d5146b-fad5-59d5-83d3-13b2997c40b5", "text": "The jinn, too, were subject to Hazrat Sulaiman (peace be upon him), obedient to his knowledge and commands. "} +{"id": "7003425", "video_name": "45126ea4-eb3c-51c2-a304-efcbbae34ecd", "text": "developer working on a computer with a view to the night city from a scyscraper "} +{"id": "6002030", "video_name": "3592df95-1302-5d87-9ef6-9d4e0ae12d67", "text": "Lysa, with shimmering wings and enchanting eyes, emerges from behind the trees and introduces herself "} +{"id": "1003137", "video_name": "39d85c0c-4091-50de-b23b-77e3e8bed6b8", "text": "Bloodred sky. Raining blooddrops. Cages hanging from above. A young woman. Nightmarish. Fantasyworld. "} +{"id": "0004822", "video_name": "0fbd11ed-d1f1-5e67-9e50-c8c039c9272a", "text": "robot running on a trck field "} +{"id": "5001031", "video_name": "fcee9bb9-26bb-5c02-89b8-bbb849821b1b", "text": "cinematic, dog and a cat getting married "} +{"id": "0003453", "video_name": "3dd29c87-f8bc-53c8-bbad-40b40cfd1fdf", "text": "a bright flame from a diya wick gently flickering in the wind "} +{"id": "2003104", "video_name": "b1417615-a630-51af-a1ed-7bc23dae5b44", "text": "scene introducing the main character from Steven Spielbergs 1980s fantasy movie the happy kingdom "} +{"id": "8001675", "video_name": "793e5948-4ace-53a3-8c62-10954ed66b14", "text": "cat sleeping next to fireplace looped "} +{"id": "0004512", "video_name": "0a4d09aa-1ebc-5daf-be0c-fb72abf64a2c", "text": "Sculpture, renowned artist, glass, rotation, sparkle, water, sunlight, shattering, Saipan beach. "} +{"id": "4003747", "video_name": "d1ff742f-1a44-5a71-b3e8-2da79b394426", "text": "happy students leaving a classroom after a great lesson "} +{"id": "2004629", "video_name": "69e45a27-044a-5a30-89bf-0326a4b32d03", "text": "Black hair Alice actively participates in a data analysis project, discussing the integration of data and nursing with a group of professionals. "} +{"id": "0004415", "video_name": "087def22-1f1c-5a33-a70c-98b45f7fe27e", "text": "One beautiful night, there is a bright moon hanging in the trees "} +{"id": "2003985", "video_name": "35ae3859-543e-5ddb-a713-cf06bb0db04a", "text": "speaking For a character sketch show a woman boss in a corporate employee in office, dressed as professional. Show different face expressions "} +{"id": "6003675", "video_name": "2a95c404-ad5f-5a0f-9fe3-d5edae9aea9e", "text": "a gladiator angel knight in an arena, raining fire, floating embers, magma floor, man knight angel gladiator centurion roman, sword "} +{"id": "2006276", "video_name": "e175bc01-a745-508f-a7b4-b1aeab53961e", "text": "Messi was lifted up by Yao Ming "} +{"id": "7004880", "video_name": "3de725c6-f59e-54ba-96db-d20de6dae66e", "text": "generate a followers graph going down with a crying emoji "} +{"id": "4002192", "video_name": "2453106f-1d9f-57ba-8dc2-7e95688e170e", "text": "In her handwritten note, she poured out her desire for a furry companion, specifically an orange cat to be her festive and loyal friend. "} +{"id": "1003340", "video_name": "3d8768c7-4ac7-5bfc-9740-5fffbeb1a313", "text": "Eldorado gold city in the green jungles the main square 16:9 "} +{"id": "0003595", "video_name": "40201c2e-660f-5146-871e-bbdea43149ec", "text": "A tree in a dense forest suddenly falls with a resounding crash, the deafening sound echoing. The camera then pans to reveal an eerily empty forest, void of any life, in the style of a suspense thriller, mysterious and tense tone, deep shadowy visuals, haunting ambient music, slow panoramic shots "} +{"id": "0003673", "video_name": "417cda1f-dddc-51bc-a648-41dedbdd56ef", "text": "The stars above young boy Liam rearrange to form the image of celestial woman who introduces herself as the guardian of this dreamscape. "} +{"id": "8002954", "video_name": "e6e481c3-7084-5bc8-8f81-2d8885fb7fee", "text": "The Monkey King turns into an eagle "} +{"id": "6003690", "video_name": "9f8c56c0-8b4e-5e73-ba88-2b1cdf13770a", "text": "a picture of the front end of a tomato website "} +{"id": "7002306", "video_name": "f7b27ec9-e8ab-54da-9ec0-013ad33f070f", "text": "sparrow flying in sky below clouds "} +{"id": "3006700", "video_name": "85364c6f-f466-566d-bb27-55f534f74261", "text": "driving through a tropical rainforrest with lots of palmtrees "} +{"id": "1006554", "video_name": "7807573a-d1fa-540b-b4f5-bd72e882d747", "text": "gta 3 character npc bad polygon 3d renders carjacking "} +{"id": "4002419", "video_name": "18127dc1-0c7d-56d5-8317-7f2fcec1b4d5", "text": "a visual of one little mouse and one majestic lion standing proudly together in the jungle. "} +{"id": "1003393", "video_name": "3e921e9c-3f59-5cbf-b1f3-fce6b1af7fd7", "text": "moving image,16k resolution,clear,studio lights,colourful,moving bubbles,moving bubbles dropping down "} +{"id": "3006079", "video_name": "6cd30953-c8db-52b7-b11e-21a1217dec43", "text": "godzilla in the street dancing with a big cat "} +{"id": "3006701", "video_name": "ba2850cd-7b5d-532d-bec4-479d2ef5120b", "text": "man listen music with headphones and smile "} +{"id": "2005441", "video_name": "83ac183b-d6cd-576b-a1b3-0898b55a099f", "text": "Green and ged colours splash on white papper "} +{"id": "1005834", "video_name": "6b43657a-957b-5473-8da0-f6ac7418475a", "text": "a rock floating in a concrete sleek room with daylight "} +{"id": "6004079", "video_name": "c5ae006b-b933-507f-87d9-2972594daaf6", "text": "Create a timelapse video depicting a transformation of a happy, energetic cartoon character gradually transitioning to a state of burnout and exhaustion. Showcase this emotional journey through visual cues and facial expressions "} +{"id": "8001012", "video_name": "cca31328-5a9f-5822-99d4-ad48bc825332", "text": "cute babies smiling looking each other "} +{"id": "4002519", "video_name": "9c6b2f1f-dc67-55f3-a07c-0e61bc165324", "text": "During the Han Dynasty in ancient China, a young man practiced kung fu. A teacher and father stood opposite, watching with a small thatched house and a picture of a field in the distance. "} +{"id": "6003524", "video_name": "744925fa-c50f-5224-84e6-95076a9ec940", "text": "handsome young man sleeps in bed and beside the bed books in table "} +{"id": "0006031", "video_name": "255bcb98-a36f-5e3f-acfd-d36b7f7f8401", "text": "travel to London, money flying everywhere "} +{"id": "6002223", "video_name": "a841a17f-5c29-5d8f-b7f4-b9ca3ba40d98", "text": "Fast flight object, fly around the world under sky, water, ground 3D "} +{"id": "3004491", "video_name": "a8ff709c-f0bb-5a08-9153-f05f963f7723", "text": "A typical french guy in front of the Eiffel tower "} +{"id": "1004113", "video_name": "4c25e78b-9863-507a-96f9-5d67bd2fd1c7", "text": "Homer Simpson with roller blades skating very fast "} +{"id": "2006117", "video_name": "ba2118fb-653a-5e67-983f-59fe17ccbc84", "text": "i want them to look each other while they are walking on street "} +{"id": "8001536", "video_name": "1b9f3c5e-9571-5912-9ffb-6c4cfa657a78", "text": "a beautiful scene of a character running up a hill looking over a mounton into a beautifu vally "} +{"id": "7002595", "video_name": "393c572c-d518-54fe-9c0f-dcb8a4f78873", "text": "women shopping at a really fancy shopping center "} +{"id": "1004157", "video_name": "4d079a58-5b26-58be-873c-03b1ef8565cb", "text": "a couple playing video games on a white couch. They both have brown hair with bangs. They have a siamese cat who is also sitting on the couch next to them. "} +{"id": "4002604", "video_name": "03e11b24-699f-5799-b468-08454ec6e236", "text": "Lightning is crackling from right to left "} +{"id": "7004586", "video_name": "b2334b43-d279-54a2-9e44-fd245e7c21b9", "text": "A large round pizza with toppings of melted cheese, pepperoni, and grilled zucchini slices. "} +{"id": "4004728", "video_name": "a72e4db1-db88-527f-b829-593a45bc1dab", "text": "a beautiful girl is petting her cute and cuddly dog \u200b\u200bin a garden with beautiful flowers and a waterfall "} +{"id": "4002875", "video_name": "25345115-eaaf-5d4f-bd46-54e5649037c0", "text": "Eminem eating lucky charms cereal cinematic 4K "} +{"id": "1006347", "video_name": "74332b97-8c8f-5eb1-80a5-20953769b880", "text": "funny blue smiling tractor, cartoon, for children, in front, red "} +{"id": "0005277", "video_name": "17b9c475-03e0-5467-a513-0af3c7c2a6b6", "text": "a man ride a hours watching a girl playing the erhu "} +{"id": "1003779", "video_name": "45c6f966-ca3b-5b0b-b670-4b44daa43514", "text": "a news crew fighting a fire breathing dragon "} +{"id": "7003485", "video_name": "b4086b87-c96f-575b-aea1-17ca41684573", "text": "A scene depicting the reaction of the citizens as they witness the transformation of their roads, showcasing a mix of curiosity, surprise, and admiration. "} +{"id": "1004936", "video_name": "5b4567c9-e16e-5dca-a876-2e683a9e3496", "text": "The clear river flowed on Message: 1 Attachment "} +{"id": "6003163", "video_name": "dbee34d3-3a28-5742-a1c4-76f2eca52bac", "text": "cinamatic video of aliens at a flea market on another planets shoping "} +{"id": "2007524", "video_name": "8f529970-f87d-50b6-a96e-bc5b2b90acbc", "text": "wimpy from popeye ordering for cheeseburgers at burger king on sunday night promising to pay you on tuesday. 1976 "} +{"id": "2004777", "video_name": "cbc64de0-0cb6-58ef-8878-4333cf70df2f", "text": "a gril walikng in flawar gardan with cat Message: 1 Attachment "} +{"id": "6002749", "video_name": "8ed4759a-3639-5015-9b5d-72d21f6534b3", "text": "A gingercat chasin a mouse in the grass Message: Jacobus (Font: MODERN) "} +{"id": "5001867", "video_name": "70d6bad5-5870-5374-8261-80eee294a075", "text": "brender on the wood table with fruit "} +{"id": "2006142", "video_name": "379f0477-a34a-5dc4-9ec2-f3a44645262b", "text": "racecar driving down a race track Message: ZL Odai (Font: MODERN) "} +{"id": "4003361", "video_name": "d5a92cbb-51ad-5df3-b1e1-79192401710b", "text": "flying between planets in a beautiful nebula in space. "} +{"id": "0006149", "video_name": "275bed9a-5323-5047-8171-4328018e3d80", "text": "Pixar style humanoid gifts sing a cheerful and fun modern Christmas carol, Christmas lights, snow, warmth "} +{"id": "6002260", "video_name": "b8a61959-dc37-59c3-bdaa-e10ab0d7228e", "text": "A Saudi Arabian flew to the space station on a space shuttle, "} +{"id": "0003200", "video_name": "3922d052-355a-5f22-81ea-e288c2a3ef94", "text": "Generate a water pipeline entering a reservoir "} +{"id": "2007399", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "Lord Krishna, with sixteen arts, was born in Dwaparayuga. "} +{"id": "2005606", "video_name": "c6f7b363-5cb5-52f4-9e8e-dc0283ac93fd", "text": "A Chinese girl with a very good figure, young and beautiful, with a very good figure "} +{"id": "0006337", "video_name": "2adbee19-e1c9-5bee-8107-61f18357b816", "text": "Swiss National Park, moutain has full flowers you can enjoy a relaxing, secluded escape "} +{"id": "8003397", "video_name": "a4992cab-259b-5fbf-9890-f5dc3d5307e5", "text": "everybody happy in wall street , good day for stock investment "} +{"id": "0006952", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "entered the other room, he saw that it was dark and had only a table and a few chairs, camera Pan zoom "} +{"id": "4003521", "video_name": "c9d623f7-fb0e-51e7-a072-b759e96303fb", "text": "astronaut floating in space, multi color galaxies, saturn in the background in the style of Damien Hirst, space civilization, plants, red rock, Stanford torus, stars, planets, rockets, galaxy, epic scene, vibrant colors, dynamic lighting, digital art, winning awards masterpiece, fantastically beautiful, illustration, trending on artstation, art by greg Rutkowski, 8k, artstation trending, glow, luminous, Iridescent, fluids, sparkles, Vibrant, Mystifying, Eerie, super detailed, super realistic, 8k "} +{"id": "6004402", "video_name": "30e061b5-eb68-5ae3-a2f3-371e0c48c306", "text": "party lights, fog, spin, neon, pink "} +{"id": "3004992", "video_name": "22a38311-d932-5280-94d9-d74c994ad3eb", "text": "a living anthropomorphized Calder sculpture smokes a cigarette in front of a dingy bar, anime style, satoshi kon, perfect blue, serial experiments lain "} +{"id": "8002923", "video_name": "dc98b7f7-3e65-5e7f-9cc0-8e67b37bc74c", "text": "spaceship flies through the inside of a human body past the heart "} +{"id": "1006207", "video_name": "71d02d20-e6a8-5425-93da-e993f0f85194", "text": "magic ice portal, dark background, 8k quality, masterpiece, highest detailed, sharp "} +{"id": "4004212", "video_name": "85f8e121-b0f7-5dba-a762-f2ac885b6523", "text": "a girl who is beautifull but not sincere and black heart Message: a beautifull girl (Font: MODERN) "} +{"id": "7003922", "video_name": "1608f7bf-1fc1-5334-9ae5-abec7680df11", "text": "a futuristic man attending the nativity scene with baby Jesus and Mary "} +{"id": "6004165", "video_name": "eceb5c44-366d-5e07-b102-2da5ca385edd", "text": "moss grows on man lying in a field, polaroid, 1950s "} +{"id": "3006627", "video_name": "333f2394-f9c8-5c93-8b9e-48ce2321b3ef", "text": "pastel character searching in the forest "} +{"id": "6004592", "video_name": "2f20f209-4ed9-5fbc-8e97-cebf720b10be", "text": "a circular island measuring 120 meters in diameter "} +{"id": "1006279", "video_name": "72fe656c-078e-5aad-bdfc-83472f68c470", "text": "a duck running in the sun "} +{"id": "7002644", "video_name": "cc8c151b-a3b1-548b-a1bb-1274dced930e", "text": "Hieronymus Bosch, The Garden of Earthly Delights, 1503\u20131515 has come to life "} +{"id": "7003003", "video_name": "6d56a57d-168a-5c87-83bf-566ff937cc6a", "text": "floating on water jesus slow motion zooming closer disciples reaching out thunderous lightning sparkling ocean waves crashing glistening, realistic, cinematic videography, 4k, "} +{"id": "5001900", "video_name": "8cbbb0c9-e32e-5390-a593-fe6537cfa8b6", "text": "hall with skulls ,the window bringing in light "} +{"id": "6003529", "video_name": "854e9cb1-41ad-5766-a664-22e73575daa0", "text": "Diablo and Batman are fighting in the blood pool "} +{"id": "6004865", "video_name": "4eb28093-e4ca-589d-bff5-9e7bc9bf0d42", "text": "spooky psychic reader grasping a crystal ball. hypnotism induces a haunting. colorful soul ghost hollow transparent as holographic particles materializes. scenery morphs into a mesmerizing kaleidoscope of geometric patterns. "} +{"id": "3003991", "video_name": "f0a2539a-d405-5738-aab7-07486de1d2ab", "text": "sylvester stallone as a Mafia Hitman, 4k, cinematic, hyperrealism "} +{"id": "0006613", "video_name": "2f8eb22a-086c-5e18-bc9e-665ef3c7d7c4", "text": "grunge vintage dark background with animated beautiful rose pink red lotus with ethereal light from the middle "} +{"id": "3005838", "video_name": "8e36e839-3ea3-581b-897b-72a6d7c52ac0", "text": "studio news, high quality, 16:9 aspect ratio "} +{"id": "4003447", "video_name": "cb7c934c-0ed6-5cc5-ab08-294a41247db8", "text": "Illustrate Ellie and Benny witnessing the sunrise, a sense of triumph and friendship in the air. "} +{"id": "5001839", "video_name": "c5eb8b96-f69b-51e8-bbf9-8db9e1615fb2", "text": "male angel, photo realistic, hyperdetailed, long hair, white and gold cloak flying. "} +{"id": "8002960", "video_name": "eeff0c61-6a8d-5637-842f-767a1e440c5d", "text": "A man was horrified when he saw a zombie free car "} +{"id": "1005564", "video_name": "666c622d-607c-5dd2-95c2-ef6d6429c6f1", "text": "Gautam buddha seating near a silent leak with flying birds in sky and all view is like a heaven "} +{"id": "3006664", "video_name": "94d57950-5670-5367-906d-6e9e7721018c", "text": "Iron man is swimming in the Dubai swimming pool "} +{"id": "2007121", "video_name": "151c2cee-b5fa-54d5-8f83-9175a5b1be9f", "text": "Twinkling light surrounds the product Message: 1 Attachment "} +{"id": "2005874", "video_name": "5fa2a2e8-81f1-5e91-915d-c1907689ca4c", "text": "cinematic flyover of a beautiful lake nature photorealistic, high def, hdr, 8k, cinematic movie shot "} +{"id": "3005151", "video_name": "e2105f22-8b28-565c-83d1-793d62953719", "text": "drawings long and short colors strokes unusual color schemes and swirling patterns and textures, ink details, some shadows with bold black lines, empty white spaces, abstract landscapes autumn "} +{"id": "2004969", "video_name": "20901f72-b328-5123-8066-d16b52263912", "text": "1980 a town covered in green slime "} +{"id": "2005721", "video_name": "759e778b-9651-51d4-ac5d-723cb37e00aa", "text": "a dark norse environment with a thors statue in pixel style for 2d game "} +{"id": "6004455", "video_name": "563cbe48-267b-52da-ae06-c4f0310cc155", "text": "the snowflakes fell thicker and faster, "} +{"id": "0003146", "video_name": "380b6b2e-1885-58d8-951a-f00a8b4efa27", "text": "cyberpunk sign in tokyo on 2040 futuristic city Message: ai music in 2023 (Font: MODERN) "} +{"id": "3006257", "video_name": "97a8c556-7270-537c-9a90-876270962e14", "text": "a movie trialer that lasts 30 seconds of a animation studio going corrupt with ink everywhere and at the end there is a shadow of a ink demon "} +{"id": "0004369", "video_name": "07e5dece-2f93-5d06-ad3a-4b288a42f23f", "text": "A robot MechWarrior like Gundam wing or transformers, but in the style of formula 1 Mercedes racing car, F1 silver arrows "} +{"id": "8001342", "video_name": "40d22619-1034-592c-a221-bd0eb8b1ddc3", "text": "a young woman standing in front of an Arizona electrical meter "} +{"id": "7004439", "video_name": "a4dea720-9bfc-5f7a-95af-57376d355b1d", "text": "ultra hd 8k video, 80\u2019s dark fantasy theme, extremely detailed, ultra realistic, 4k, 8k, no motion blur, wizard coming out of an illuminating hole in the ground next to an ominous gloomy castle, light mist, musky atmosphere, dungeon in the distance, evil creatures near by, HD, 80\u2019s dark fantasy theme "} +{"id": "5001439", "video_name": "0b976c10-6c2d-5121-9da1-e20f328b8372", "text": "Creating a beautiful website on the designer "} +{"id": "6002403", "video_name": "70a8241b-aa0b-58cb-a313-508ae58b8d41", "text": "rides around the city by car "} +{"id": "7003539", "video_name": "12717086-3e05-5688-bf87-1603f1e76272", "text": "bigfoot playing fortnite in PS5, 4K and realistic "} +{"id": "7002606", "video_name": "05ef0315-9ff2-50f7-ae57-cb31e4499781", "text": "A teacher reading poem in front student "} +{"id": "0005830", "video_name": "21dc7c31-b426-501d-81d8-cd0f24297f15", "text": "lebron james scores a beautiful goal in a football match "} +{"id": "6004282", "video_name": "7285825a-45b0-5c27-84e6-fe6f5da22625", "text": "a lady standing with clouds moving fast above her, direction up. Hd "} +{"id": "4003978", "video_name": "1d14a5ab-67a3-5f40-b8b5-3741f79ac7a1", "text": "Silhouettes of diverse hands lifted in worship, capturing the essence of praise and reverence expressed in the song. "} +{"id": "5001882", "video_name": "3b44fb29-7193-5c2a-879e-b86fcba591e4", "text": "Going to a water park but water park turns into lava "} +{"id": "3006635", "video_name": "a564ca02-1f15-5780-9650-68932198669c", "text": "a guy running up a snowy mountin while the snow is blowing and its sunset "} +{"id": "3006298", "video_name": "96dc9a32-5a54-5e47-9d46-b58d85695f2c", "text": "A beautiful woman is standing by the edge of pool and dives into the pool "} +{"id": "1006188", "video_name": "71572ace-57e3-536d-825b-ca1bcb4e8fe4", "text": "ancient civilization going to war detailed cinematic wide shot "} +{"id": "5001230", "video_name": "4b3cd07a-94c0-5da1-8246-3b76dd8cbb46", "text": "A group of dancers perform a flash mob in a busy street. They wear colorful costumes and move to the rhythm of a catchy song. They surprise and delight the pedestrians who stop to watch and join them. The camera pans around the scene, capturing the energy and joy of the moment. "} +{"id": "4004230", "video_name": "f9662ad6-0fe1-55ae-8b02-779f00744ed5", "text": "The cartridge will go into the chamber, zeroing out the names "} +{"id": "3004765", "video_name": "c97390a1-7357-5f30-ace6-36bba8c08c8d", "text": "Generate an image of a girl sitting in the classroom, looking at Andrew from a distance with a shy smile. "} +{"id": "7004052", "video_name": "747baa96-e19a-53fe-ab8f-f2efe7535195", "text": "a samurai with Falcon standing for the House ,thumbnail for youtube "} +{"id": "1004209", "video_name": "4dc151fc-5c78-5404-9332-689d8a1ebfff", "text": "a man in a jpg screen game farming "} +{"id": "3005244", "video_name": "667eee52-bfcc-5501-87be-c758cecb7a11", "text": "Illustrate the dragon, Sparklewing, handing over the crystal to Sammy, showcasing the friendship and trust that developed during their encounter. "} +{"id": "4002831", "video_name": "7583b753-eb5d-5213-9402-b76c3921754e", "text": "white long hair, flame eyes and feet, old man dress with with ancient hebrew white clothes sit in a golden trone "} +{"id": "1004456", "video_name": "5270cf80-2e8f-57b4-baac-b37dca489ca8", "text": "a scene that shows last meet of a army officer and his wife "} +{"id": "0003882", "video_name": "4524c2f6-f1d1-56e2-b8fe-70ac42955056", "text": "King of the legion shadow fight 3 "} +{"id": "5001685", "video_name": "7373e3aa-7512-55fc-b0cf-9db1d1b7b55f", "text": "Chimera: A creature with parts from different animals, including a lion, goat and snake, representing hybrid monsters. "} +{"id": "1005419", "video_name": "638b131a-5964-5110-a3c1-87e2331a9bbb", "text": "Steamy black dark themed big skyscraper living room with little to no light, ambiant dark white leds, modern, realistic, nighttime, dark dim lighting, massive room with high ceilings, large island, luxury black kitchen, all black, cozy "} +{"id": "7002538", "video_name": "71121267-e596-5a86-9e78-1841eb01af3d", "text": "3D model of drop of blood spinning on its axis white background "} +{"id": "6004804", "video_name": "51760c0d-9226-5e01-9e23-2b97b50abc7b", "text": "calm enviroment, lonley camping, one tent, fireplace in front of the tent, pot wit the steam on the fireplace, late hour of the day, light of the sunset, anime style hand drawing. "} +{"id": "7003073", "video_name": "aeb83bb0-269d-51c8-822a-c4aa4e4411d2", "text": "Middle age woman dancing happily in the rain. "} +{"id": "2003547", "video_name": "8cc0815b-ede1-50ea-93a6-82619d5c13d2", "text": "Buddha is teaching Steven Jobs, an apple is falling down from a tree, dark black white ink defined, lighting "} +{"id": "1004049", "video_name": "4b1b387d-bf37-5d65-bf1c-cddf0460c1d6", "text": "an asian guy packing his bag front view "} +{"id": "6004020", "video_name": "ffd843cb-cb22-5f25-a76d-81d746a34309", "text": "Create a captivating animation that begins with a serene landscape of the Snowpeak Mountains. As the wind picks up, simulate the gentle movement of the towering pines, and gradually introduce swirling snowflakes to announce the approaching blizzard. Transition seamlessly to the exterior of a rustic mountain cabin, showcasing its wooden frame and vintage decorations. Use subtle lighting effects to emphasize the coziness inside, with the fire flickering in the stone fireplace. Convey a sense of warmth and anticipation as the characters make their way into the cabin, seeking refuge from the biting wind. "} +{"id": "3006121", "video_name": "a8fb539f-8e0c-5478-8acf-32f87ec4a91c", "text": "parking lot overgrown with gras people are being creative on that space "} +{"id": "4003864", "video_name": "2d8ee24b-355a-5917-abf6-fa412e8a1586", "text": "Dragon stumbled and fumbled, but the wise old Owl was patient and encouraging. They practiced near the cliffs, with Dragon flapping his wings and Owl guiding him through the motions. "} +{"id": "0006410", "video_name": "2bec0f18-86e5-549e-a829-0c08892c5da2", "text": "Set the scene by describing the lively zoo nestled between rolling hills and blooming meadows where Leo the lion, Zara the zebra, Mimi the monkey, Ellie the elephant, Darcy the deer, and Robbie the rabbit live. "} +{"id": "1003304", "video_name": "3cca5a2f-f685-50d3-b328-3da2bfc863e6", "text": "a very close image of foot of a man woh is steping up on the stairs "} +{"id": "8001943", "video_name": "7b929c72-69cc-556d-8f29-8267610f8aac", "text": "commercial advertisment, Estee Lauder Advanced Night Repair Intense Reset Concentrate, sun and flowers, ocean, wind blowing, gs 24, ar 16:9, seed 10 "} +{"id": "2005763", "video_name": "b0a6dd45-a9d3-53b7-a442-74fce202e504", "text": "4d object moving in 3d space "} +{"id": "7003610", "video_name": "44de6583-e337-5846-854e-cde6bf4199bb", "text": "A robot female with a body made of liquid metal and a sword made of pure energy, standing on a battlefield of stars. "} +{"id": "2006049", "video_name": "60a24ca6-51fc-58e3-a32d-590557bbc163", "text": "A pikachu running on the snow "} +{"id": "3004369", "video_name": "77f7bfcb-9da8-5ab8-97ad-99612b5a5b9a", "text": "A panda blowing out birthday candles. "} +{"id": "7004527", "video_name": "34144f0a-5949-590f-ad1f-bba9d637ede2", "text": "Create a short video with bright colors, quick movement through the frame, and abstract shapes "} +{"id": "4003493", "video_name": "9bcdebcf-e229-5c27-a1e6-954dc29ec6b5", "text": "an adorable little bunny, wandering in a forest full of flowers, walking a short distance, met a fierce wolf stepping out in front of the rabbit, 4k, 9:16. "} +{"id": "0003340", "video_name": "3bef34e4-1ff0-5f92-9d6f-22b30e10f2aa", "text": "make me a short video about a person talking about how bad the world has become "} +{"id": "6002435", "video_name": "896ab249-5a17-5c7c-9881-3bacf4958b42", "text": "disney style male and female groups playing k pop dances "} +{"id": "5001067", "video_name": "b8e17342-d872-5a4b-a0e9-858e01ab73ed", "text": "A cool supercar driving on the highway "} +{"id": "3006799", "video_name": "3c3bafe1-1412-585e-9d4a-455a0b59a8d3", "text": "live fish in a taco shell "} +{"id": "8003605", "video_name": "3a220982-e5b1-5f39-8678-ec4bdd15bab9", "text": "anime style turkey dancing in a club, lasers "} +{"id": "6004899", "video_name": "2e2bb09c-4202-59de-af3b-715c14c11400", "text": "bmw M5 lego set with the box "} +{"id": "7004578", "video_name": "5bf28cdb-ae5a-585c-a2ec-c40212e50a74", "text": "Hyperloop moving in slow motion in a transparent tunnel "} +{"id": "3005832", "video_name": "f93aa2b8-5b5d-559c-ae1f-9469fa50e281", "text": "create a 3d video of blod circulation in a human body "} +{"id": "3006599", "video_name": "39d40e31-c5ed-5cbf-9d9b-d39fb566f881", "text": "Show the village with an unsettling atmosphere, hinting at the looming mystery. "} +{"id": "7003525", "video_name": "96646bb1-826d-5852-8734-9e0801bbc0c8", "text": "very realistic bavarian ambulance with flashing blue lights "} +{"id": "0004165", "video_name": "046215c6-edff-5c44-9863-0f8544da404e", "text": "Indian parliament, hyper realistic, High octane render, evening timelapse, "} +{"id": "1006714", "video_name": "7b04ec75-3ad6-5e7c-8bdf-11d814b1ca6c", "text": "mythical creatures roamed freely, and the air was filled with the scent of blooming flowers and the melody of unseen birds. cinematic 4k "} +{"id": "0003022", "video_name": "35b7b21a-57c9-5cda-b965-b2db4cf4078d", "text": "Shakuni in secretive conversations from mahabharat "} +{"id": "6003922", "video_name": "771e6c3f-965d-5331-826d-968bc6824a9d", "text": "the music stage, on the backgroun are is devastation, destroyed houses, fire "} +{"id": "6002329", "video_name": "955a93f1-7a60-5a07-ade3-4e354bb46a49", "text": "the realistic modern illustrations of solar panel collectors capturing light from the sun, with a small, lightly colored cloud between the sun and the panels, as you requested. "} +{"id": "7003730", "video_name": "1df1d50a-b62a-5627-adf6-980dd5d7684c", "text": "A young man came to a beautiful countryside "} +{"id": "2007323", "video_name": "2f3f4972-f849-50e5-a48b-bd2f9c11a198", "text": "The ice holds a story, and each core is a chapter waiting to be read. "} +{"id": "1003857", "video_name": "47106abf-c90b-5081-834c-144a30c0a8ba", "text": "a girl in rainbow forrest talking with meadow. "} +{"id": "1006472", "video_name": "7675ef00-c2fa-59e8-bcce-2e35c5da1da4", "text": "Render a 3D character of John in a picturesque lakeside setting. Showcase the engagement ring, and make the surroundings realistic and breathtaking in 3D, size 19:16 aspect ratio "} +{"id": "6003722", "video_name": "b2f90298-e8c3-5d72-b049-484593089961", "text": "Crashin waves into caribean. Word: STRAPA "} +{"id": "0006811", "video_name": "33795e37-cc2f-5073-ad93-d47534b897ef", "text": "create a video where humans are seeing that AI machines is doing everything that they can like running coding content writing ad\u2019s running everything but AI machine robot seen that they humans is restaurant with drinking beer and enjoying with friends. So AI machine feel that only I can\u2019t do "} +{"id": "2004057", "video_name": "1ee5aaa9-e431-5051-af6b-d3eb72813700", "text": "The fire was burning behind the little boy and the smoke was billowing Message: 1 Attachment "} +{"id": "2007768", "video_name": "e86432ff-b8cb-525a-8828-4f1edefceda7", "text": "a cow thats made of burgers "} +{"id": "4003458", "video_name": "b2f46cce-48fc-5760-a27c-64ab2a3ed460", "text": "A gentle breeze blows across the deserted coastline "} +{"id": "1003673", "video_name": "43a13f76-7307-5f2b-be1e-77a11a9f32a6", "text": "Zoom in on a BMW X5 with a mirror paint job as it is driving down a beach passing by palm trees. Dolphins are seen in the background jumping out of the water. "} +{"id": "7004218", "video_name": "b3ee3402-f8f7-5929-a893-e65308f44700", "text": "an ariel view of the grand canyon in bright bursting colors "} +{"id": "5001697", "video_name": "01fe3032-3942-51ba-b4d3-46cf1fd5f725", "text": "An ape wearing majestic clothes made of gold, ruby, and diamond, also weaing a crown, flying through the sky. on one hand he is holding a mace. "} +{"id": "4002132", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "Create a 4K video of a 1500s wedding with attire from the era, nighttime exit from the church, European culture, with a full moon covered in honey in the background. "} +{"id": "2007495", "video_name": "c6d2898e-6a97-5d8e-aec4-a3b26d457a46", "text": "holding one pixar style chinese traditional style tea cup on one hand, and a pixar style coffee mug on the other hand; 19:6 motion 1 Message: 1 Attachment "} +{"id": "4003836", "video_name": "532ac671-b05b-5fcb-aa72-2da09e5ae7bf", "text": "In the Day of Judgment, Hazrat Muhammad descends from the sky to the Earth, with a white beard and in a white robe. "} +{"id": "2004882", "video_name": "12964c79-4e00-539e-87bb-a6796520c980", "text": "3D render of a cat by ilumination "} +{"id": "7003631", "video_name": "3e11b384-dea2-5a6d-8832-609470ac835d", "text": "In a lively jungle, introduce Max, a curious dog, and Milo, a mischievous monkey.Describe their friendship and the adventures they share under towering trees. "} +{"id": "8001915", "video_name": "7d0de08b-0136-5733-bd6d-b27cb07889fe", "text": "man holding phone above his head in suit with cigarette in mouth "} +{"id": "2004204", "video_name": "378ffc24-ca0b-55b6-ba7a-dddf11472476", "text": "flying pheonix from mountain peak 3d render, ultra 4k Message: 1 Attachment "} +{"id": "0004700", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "A Little Monkey Eating Peaches in the Forest "} +{"id": "5001204", "video_name": "f4316358-9b14-5ee0-ade2-6abb287dd867", "text": "bear saw some fairies carriying a huge shiny ball like something "} +{"id": "3005627", "video_name": "a62b384f-bde6-5655-9e21-18f809bf4454", "text": "wooden plank with simley face, arms and legs dancing "} +{"id": "6004050", "video_name": "7b827770-5564-506b-8c06-660f6b7a4903", "text": "Produce an animated video segment illustrating a cheerful meadow teeming with life, where a small caterpillar named Carl happily explores the surroundings, munching on a leaf and interacting with other friendly creatures. "} +{"id": "1003090", "video_name": "38de7376-13b6-5b01-8a01-fac42d2d2f5d", "text": "wide computer screen with a graph showing a straight line "} +{"id": "3004135", "video_name": "612266d0-10df-5bce-905f-136b2ff23a7d", "text": "Cinematic still, film by wes anderson, Hundreds of puppets talking, city, Close up, Style by Cyberpunk, 35mm, 8k "} +{"id": "4004074", "video_name": "515c2635-9d9d-5542-9697-89532ef29c54", "text": "A farm in which there is a farmer and a house in it, that too with a cow. "} +{"id": "1005195", "video_name": "5f8fe237-7ac3-54d7-9b64-8dd927790f71", "text": "Food poster style, a tiger wants to eat the big bones on the plate in front of it, real style "} +{"id": "0005259", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "an image on top of kailash mountain which is present in india "} +{"id": "2005607", "video_name": "71eb677c-43d8-548e-a53d-b1da01c23324", "text": "cartoon Out came the sun and dried up all the rain (all the rain) "} +{"id": "2007922", "video_name": "a7be2c5a-2629-5567-b057-e427694bd83e", "text": "antique shop under bright moonlight. smoke rises. drifting clouds. 16:9. 3D "} +{"id": "8002695", "video_name": "18f60498-0b09-5485-aba4-ceac2818e4b9", "text": "long line of individuals is bound by chains "} +{"id": "1004279", "video_name": "4f1f1330-75e9-5b48-9e1d-18b3c29bdba0", "text": "Shiva Lingam a Indian God Statue in middle of a forest. "} +{"id": "4004513", "video_name": "d09c51a6-0bbb-5f41-bc61-32377a06b1bf", "text": "a visualization of capitalism and Taoism in harmony "} +{"id": "0006608", "video_name": "2f7a2596-1ba1-5d46-bbdf-81ade0951558", "text": "Ultra realistic image of a university abandoned by time. Pieces of cement fall from its walls. Teachers and students try to repair it. The sky looks cloudy and windy. a dove flies in the sky. cars parked in its surroundings. "} +{"id": "2004744", "video_name": "ad036934-8c69-5232-848d-592f3e2b4f67", "text": "Her first impression was that the trees in the forest seemed to be shaking slightly, as if they were dancing. The leaves turned into balls of various colors and floated in the air like colorful snowflakes. Susie was delighted and she set out to explore this magical place. "} +{"id": "7003028", "video_name": "220d523b-4e5a-5cdd-9a3a-e6a732ecf8ef", "text": "create a halloween village, with pumpkins and atmospheric lighting. spooky "} +{"id": "4002619", "video_name": "dbf07027-7b5a-506e-8686-3084c34bfdec", "text": "saint francis of assisi looking and admiring the sun Message: 1 Attachment "} +{"id": "8003289", "video_name": "5afd27c3-9b6d-505b-83f0-3462389feaa0", "text": "Red Dragon flying zoom camera move set to 3Y\nA cloud "} +{"id": "2004795", "video_name": "b661ba6c-0d43-5a9b-b90a-ce4475808eb8", "text": "A final look back at the old shack, filled with memories, before heading towards the horizon. "} +{"id": "1003188", "video_name": "3aa4dd29-b6bb-5ace-8481-326304e3842a", "text": "an intro youtube video, two couple walking down the road of the moutain with stunning view in front of them "} +{"id": "7002407", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "Man dressed as mario eating spaghettimeatballs at a wedding "} +{"id": "0003883", "video_name": "45284216-a27e-5769-af6d-44bea4af0d83", "text": "A lot of money bills on top of a table "} +{"id": "0004183", "video_name": "04b665b9-fa45-5c5a-abe9-dda134793ece", "text": "picture of waving wheat at dusk "} +{"id": "4003680", "video_name": "d9161244-79c3-5c8a-a2f1-4ad50d053a3b", "text": "VN Beautiful teacher, surreal, hair movement, 8k, optical, super vivid detail, colorful, cinematic lighting, "} +{"id": "6004849", "video_name": "01901190-49b1-5b9f-8da5-f33e0b2d05e1", "text": "hugh jackman wolverine, yellow costume no mask beard without a mustache, close up face cinematic realistic 8k "} +{"id": "8003921", "video_name": "2366ab25-515f-548f-88e7-4676368a228f", "text": "Superman flying around the planet Earth "} +{"id": "0003554", "video_name": "3f6f94e2-0b58-541b-a8e3-f1a5b7f6e862", "text": "john wick fighting with a man "} +{"id": "4002504", "video_name": "e55455b3-a896-5aea-bf28-3d9a8dbaa770", "text": "the Chinese Lute or Chinese Guitar "} +{"id": "2005699", "video_name": "57a0eae5-8c15-5b55-9a1b-40e0e6d21c88", "text": "animate this image into a bike scene in nature "} +{"id": "6003903", "video_name": "10408a13-8697-54dd-88b3-f322732b15a7", "text": "the frog jumps into the soup "} +{"id": "0004753", "video_name": "0ea99e5e-ad1a-5fd9-88be-3c4964b3ce6c", "text": "two beautiful chinese girls are playing water and laughing "} +{"id": "2006140", "video_name": "897dde23-1060-59c1-a288-a70bee2f476c", "text": "a muslim man stand front of his place in 3d "} +{"id": "4003375", "video_name": "a165035f-be23-5ced-944a-83a13f2368ff", "text": "aesthetic, candid, jisoo blackpink wearing y2k outfit, fashionable, ootd, photogenic, pose, full body, 85mm lens, aperture f1.8, bokeh "} +{"id": "8003519", "video_name": "71ff8398-0130-5742-8d75-2de76229fa3a", "text": "cinematic trailer of a little girl surrounded by sentient, black tar that is flowing around her and the surrounding area "} +{"id": "6004676", "video_name": "200ca620-3bf0-54a7-b79c-796c6cd2fb00", "text": "Shadows of ghosts moving within the mirror in old mansion in 3d style "} +{"id": "2004803", "video_name": "839f710b-985a-5f53-8a79-22780331f0f1", "text": "Create a lively scene of Ted and Zoe dancing with joy, surrounded by cheerful forest creatures. "} +{"id": "2003246", "video_name": "2695ce72-3072-5d73-8857-7f76fa1f71a0", "text": "envision an animated, panning, rotating, wide camera shot, of a steampunk robot carrying an inconscious human in its arms, in the artistic style of H.R. Giger "} +{"id": "4003760", "video_name": "7d411128-fd80-5c21-9b81-f178f5834351", "text": "a collectors display closet full of colorful bugs "} +{"id": "0005704", "video_name": "1fd21c04-21f1-5501-869e-3d5de7987095", "text": "He traverses mysterious landscapes, crosses dangerous bridges and solves puzzles posed by mythical creatures. On th eway "} +{"id": "2004089", "video_name": "4e517bc8-ae85-5e1d-b2b7-6a3a70de721f", "text": "EasyNegative, badhandv4, (worst quality, low quality:1.3), logo, watermark, signature, text "} +{"id": "2007772", "video_name": "dc2cd4bd-58c4-5832-bec3-148eaefd80a1", "text": "The protagonist Liu Pangzi sat on the doorstep, holding an ancient wine jar in one hand. Through the gently brushed curtains, he looked at the distant fields. At this moment, the morning light shone on his face, highlighting his kind and resolute face "} +{"id": "6003256", "video_name": "50991a37-d699-5aa7-a91b-da03614ec08e", "text": "a hyper realistic villa in the dark of the night, lit up by two street lights, in front of the light stand a beautiful well dressed black African young lady presenting the home villa "} +{"id": "0006628", "video_name": "2fd5d2d2-da23-54e6-9dac-a0752ad82f24", "text": "A mystical forest at twilight, with glowing mushrooms lighting up the path and creatures of folklore lurking in the shadows. "} +{"id": "0004582", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "Bill Gates waving good bye to microsoft Headquarters "} +{"id": "0004428", "video_name": "08c937f0-6fb0-5d09-9e62-36d8e997a614", "text": "blue and yellow plane and growing sunflower "} +{"id": "4004363", "video_name": "c6336604-4f0e-55c5-a9cd-70ee6cc8a8b2", "text": "a small village for cat and mouse, camera from top, 16:9 "} +{"id": "2006698", "video_name": "bf29490b-1654-5888-ad25-662c544a42a2", "text": "The mysterious maze of backrooms materializes in a digital dreamscape, illuminated by faces, adorned with subtle neon lights, and enhanced with enigmatic patterns. Influenced by the essence of Dreamcore, figures blend seamlessly with the indistinct surroundings, creating an atmosphere of transition and uncertainty within the labyrinthine backrooms. These digital impressions blur the boundaries of time and reality, inviting the viewer to explore the surreal and mysterious realm of the backrooms. "} +{"id": "1004010", "video_name": "4a3a5d08-db82-59f3-928e-29bbfe78cb90", "text": "cars moving slowly for their turn at petrol pump "} +{"id": "0003124", "video_name": "37737eb0-0a84-54fd-bb67-fcc6a56a1174", "text": "a person looks up in surprise "} +{"id": "8001727", "video_name": "32315d84-cb3e-57a5-a0a8-7e37147049d6", "text": "Draw cartoon Walt Disney animation squirrels playing scenery "} +{"id": "7003133", "video_name": "0bf9f760-871c-508c-b9d1-e299ba01880b", "text": "Thoroughbred Park: A sculpture park dedicated to horse racing. "} +{"id": "0004417", "video_name": "0881b073-8004-56da-834b-6c7dd31ee461", "text": "A woman in a red and gold dress, with a beautiful face, delicate eyes, adorned with a headpiece and a crown, stands in Constantinople "} +{"id": "7004055", "video_name": "911ca98d-99bf-51df-b33f-c35f5a1e26a2", "text": "Many fairies singing, dancing and playing, garden, 3d animation "} +{"id": "8001591", "video_name": "b1758ac6-3abc-51c9-b0de-006667c21fb4", "text": "hyperrealistic plants growing out of an aluminum hexagon "} +{"id": "4004190", "video_name": "a10c33ad-96d6-52ff-8768-0f5cabcd4024", "text": "people working in the office, 4K, shallow depth of field, background newyork city view, 4K, ultra realistic. "} +{"id": "5001771", "video_name": "3cdafb82-1aeb-59e1-9dd7-6684d7232687", "text": "esther touching the golden sceptre picture "} +{"id": "6003440", "video_name": "5f2c839b-ee2b-5112-8731-be56d0379f1a", "text": "Beautiful alien creatures bathe on an interplanetary beach with phosphorescent pink sand. The sky is galactic. Surrealism. "} +{"id": "4004314", "video_name": "f84a17f6-9ef8-5ac5-aa6d-9ba379dcbb76", "text": "manga animation, children playing with fluorescent ball guns "} +{"id": "2007467", "video_name": "72fdd79c-1edb-501e-9da8-b9c7ca52ac6b", "text": "an eagle seat in a plane wing "} +{"id": "7002943", "video_name": "79fa8511-0273-5088-a70e-1999d37e0b84", "text": "The work of Salvador Dali. Creation of a pictorial sketch in the manner of expressionism "} +{"id": "4004270", "video_name": "0c516db7-fbd3-524c-b10f-9cea05187421", "text": "appa from avatar flying with his kids, 4K, hyper realistic, detailed fur "} +{"id": "1006504", "video_name": "77084260-5902-59eb-95f5-e7b00f3c8485", "text": "A man is asking a girl to be his wife in a park "} +{"id": "4003627", "video_name": "aebd464b-6e32-5d54-aa97-4eacb58f1f7b", "text": "heaven with 3nobar wroten by grass "} +{"id": "1004282", "video_name": "4f2a060e-bbbd-50b8-8e0a-774b0c6f851b", "text": "A girl with gold hair is working on the street "} +{"id": "0003407", "video_name": "3d261586-d21e-5c2d-a80e-b8f022391370", "text": "butterflies flying into the letters s and f "} +{"id": "5001787", "video_name": "bf0f9dc5-2a9e-5cb4-8b33-28aac3093566", "text": "create nature acrilic painting imagewith different colours of trees water and near by villages next to the mountain "} +{"id": "0005501", "video_name": "1be934b9-48b7-50dd-9d0b-b939d6e732f7", "text": "4k image, beautiful girl, long curl hair, beautiful smile, brown eyes "} +{"id": "0006699", "video_name": "315c8d61-9a54-574f-bc81-5028f77b2690", "text": "a tree growing out of a Labor Day Holiday "} +{"id": "2005320", "video_name": "8351cc5f-ca7f-590c-86b3-12455e93c544", "text": "1910s old black and white film of sant claus crucified, nailed to a cross "} +{"id": "0004921", "video_name": "117314ea-8f93-561c-a393-4b49c3d3dc2b", "text": "One year old Shreeansh lying in his crib, fast asleep, with a soft glow emanating from his room. The image transitions to a view of the night sky, filled with twinkling stars. "} +{"id": "2004652", "video_name": "0ff51db1-6400-50f0-bab7-45ad75f6c3a3", "text": "Space hunchback whale opening mouth very wide over earths atmosphere "} +{"id": "2006838", "video_name": "ca140f61-714c-5cf1-abbf-8e6922aaccdf", "text": "a beautiful pale woman as a cowboy closeup portrait realistic "} +{"id": "1006398", "video_name": "752e8f5d-5f96-5175-ad3d-4a84f0d0f407", "text": "A girl talks about a turtleneck with ozone "} +{"id": "3003046", "video_name": "d233f826-7ad1-51fd-8c13-438f471e9405", "text": "Athletic young 18yo male, topless, sport body, black cargo pants, posing, side view, anime "} +{"id": "8003221", "video_name": "3299fc71-5f98-526f-bb24-95a5a494f17b", "text": "a old man crying under the rains in old town background "} +{"id": "1004090", "video_name": "4bc17d94-2901-50c8-a876-d443291f4e0a", "text": "Drone flying through a dead, postapocalyptic city, fog, animals, birds, deer, bunny, overgrown with plant life and ivy, artgerm, 8k, well rendered. "} +{"id": "7004275", "video_name": "06ca860b-9834-5f02-b661-298f04426deb", "text": "Woman in the Garden of Eden looking up at a tall tree with heavenly scenery in the background "} +{"id": "3003337", "video_name": "081692a1-d866-56a2-85db-e8dc5b2cf960", "text": "Transitioning to the medical scenario, showcasing the dedication of healthcare professionals and the breakthroughs of modern medical technology, while simultaneously illustrating the vulnerability of the healthcare system. "} +{"id": "3004970", "video_name": "4bbc3b8b-13bb-520c-831e-9eccaca8eb80", "text": "smiling woman, make hi to people, in a beautiful view "} +{"id": "2006053", "video_name": "97d94dd6-2f30-580b-8b7d-c396f47bc87b", "text": "missy from doctor who at a grand piano "} +{"id": "2004647", "video_name": "6e163e87-9e33-5d0c-a7be-f1a8a3b7df7e", "text": "In a bustling city where time rushes by as swiftly as the cars on its busy streets "} +{"id": "4003249", "video_name": "9b949a64-cffa-5307-88da-043e9e3a7046", "text": "a person exploring breathtaking virtual landscapes as an explorer avatar "} +{"id": "2004966", "video_name": "6ed5759f-4725-530c-b6f2-a37903f31fda", "text": "Isometric top down city builder mecha gundam game, blender raytracing "} +{"id": "2005022", "video_name": "0b2c1323-7561-535f-bd85-6325338c5c25", "text": "2012 (2009) movie shot, Drone footage of pyroclastic flow and crepuscular rays passing through smoke "} +{"id": "3004905", "video_name": "224760ff-7e4d-5b03-a7c2-4a00bc71cce6", "text": "Beautiful girl wearing eastern clothes living in an orphanage "} +{"id": "3004030", "video_name": "a534669c-be5d-517a-b555-ab889401af18", "text": "movie starting scene cinematic shot a man running in dark valley "} +{"id": "2004877", "video_name": "f78a92a3-4f61-55bc-a4d6-dda3c91a84d6", "text": "bright ring of light flying above a passanger plane during the nigh "} +{"id": "5001116", "video_name": "a0d5d28c-b224-58be-a5ca-5e7f65737236", "text": "Will they guide us towards enlightenment and progress "} +{"id": "2005154", "video_name": "c8071aab-8980-545e-a83a-89ba6456c825", "text": "Once a king named Dev Shakti ruled a vest and prosperous kingdom. He had earned a lot of fame, name, wealth, and respect. "} +{"id": "1006594", "video_name": "78c81933-b91f-52f4-8bab-f8f66a1896b9", "text": "Porsche 911 driving in Baku center 100 mph for 10 seconds video "} +{"id": "6002286", "video_name": "b9345e53-713f-5115-90a2-ab0225938b56", "text": "City Street with Rain and People on Mobile Screens "} +{"id": "1005299", "video_name": "615de0a0-1d54-5ea0-8ef7-79bf102b9855", "text": "a building take from outside with a zoom on it approaching in 9:16 4k "} +{"id": "3006594", "video_name": "0573fb02-b078-52be-bf4a-6bcc4c89c9d4", "text": "many bugs out of human skin, creepy video, macro, zoom in, hd, 4k "} +{"id": "1004432", "video_name": "51fce25a-ed51-5f4d-afb9-94002ccfc808", "text": "aerial view beach, beautiful place, great detail "} +{"id": "1004118", "video_name": "4c45d905-a77e-5636-aa3a-16ed6078ca8e", "text": "Stunning cinaramic prortrate of A machete knife chopping a bamboo stalk that has grown along a forest walking path Sunlight filtering through foliage, Vibrant green leaves, Shadows and light play on forest floor, Small droplets of water on leaves, Earthy brown and green color palette, Realistic with a touch of fantasy, Highly detailed and sharp focus, Warm and golden lighting, 8 k detail, detailed, sunset "} +{"id": "7004192", "video_name": "d54d3496-b22e-5e18-b3c2-5e5a42927007", "text": "a green portal opens up in the universe and a beam of green light comes from it , then a man with green glowing body comes from it with surrounded green lightning. "} +{"id": "6002275", "video_name": "366ab704-55fc-5401-84eb-496d6a56964b", "text": "not disfigured young girl full body standing, yoga outfit "} +{"id": "7004837", "video_name": "db1ed14d-1f68-5eb0-9629-9f3d1e835ba5", "text": "the mouse stuck in mouse cage,zoom in "} +{"id": "2005235", "video_name": "dc94901d-889a-53ea-8bcf-2a2911016c87", "text": "yellowstripe goatfish in the Red Sea "} +{"id": "0005859", "video_name": "226f5b87-6503-5ab2-a300-2a83eb87f5d9", "text": "khamenei being arrested by fbi, realistic "} +{"id": "7003435", "video_name": "8590c52d-4d2d-5195-af58-df4a56de45e5", "text": "The cat is playing and jumping happily, the sunlight fall on the cat, the wind flows into the forest. "} +{"id": "1004451", "video_name": "52564e8c-46b4-56c7-ac90-ba0a9786bd63", "text": "a women in the jungle, wearing jeans and shirt, fighting wit a bear, realistic "} +{"id": "2003754", "video_name": "d961f07c-1d10-5fe2-ad2b-783084c5e143", "text": "delightful illustration capturing the heart and soul of Whimsical Haven. Envision endearing characters like mischievous fairies, wise old wizards, and friendly talking animals going about their daily lives. Each building in the village should have its own unique charm, with whimsical features like crooked rooftops, leaning towers, and secret doorways.typography, 3d rendering, photography, poster, 3d render, cinematic, vibrant "} +{"id": "2004091", "video_name": "fadfa09b-e04f-5945-b4fd-79b7570ad470", "text": "A photorealistic cat at zero g, floating in a space station interior "} +{"id": "5001293", "video_name": "5545e6fd-0567-5bae-8387-5a22790f22f3", "text": "an environmental professional, making a speech to an audience of more than 10 people, a serene natural landscape contrasted with a mining site, epic scenario, smooth dark forest, cinematic "} +{"id": "8001451", "video_name": "9a695453-03ca-54c5-90cd-381e6e45ac8d", "text": "5 people, each holding an A4 paper, with a downward arrow on each paper "} +{"id": "0005675", "video_name": "1f1e1831-269b-5f4c-aaed-3bc0307be610", "text": "The camera slowly flies away from the Kremlin, a tank slowly materializes near the Kremlin, teleportation effect, cinematic, cinematographic "} +{"id": "0004954", "video_name": "122df861-89eb-5526-9dbd-c7d3f8ea0396", "text": "Colors shifted, and the air seemed to shimmer with enchantment. Before fiery red haired little girl stood a magnificent archway covered in ivy and adorned with glowing symbols. "} +{"id": "1006182", "video_name": "7131e8d6-6005-5375-a7a4-0d4c852b19b4", "text": "Chairman Mao Zedong is drink a cup of coffee "} +{"id": "5001220", "video_name": "84ebd985-fd2c-5211-b17b-23e055f9d01d", "text": "river floating near two pink houses "} +{"id": "0004404", "video_name": "085422c9-b5a6-5876-a505-28494ccd7626", "text": "Amazin anime girl on the beach "} +{"id": "1005284", "video_name": "6129d0d2-d07b-5d83-a952-5952d41ebca7", "text": "disturbed man siting alone in a dark cave "} +{"id": "2004896", "video_name": "dbb7dd02-16a0-5fb3-9e11-1c9285fa14df", "text": "beautiful cars drifting around Tokyo, escaping the police "} +{"id": "1005863", "video_name": "6beeef05-bd8f-5f82-b27f-e4d70c5f75d0", "text": "slowy wind flow the flower and buterfly moving wing Message: Family Farias (Font: MODERN) "} +{"id": "7004393", "video_name": "d8a7e222-3334-5f2a-a326-227fc793fd4d", "text": "a graphic silhouette of a man walking on white up a mountain "} +{"id": "1003773", "video_name": "457f6cdf-642a-58b4-b1fd-c0f7947abe24", "text": "John petrucci guitarist dream Theater on concert "} +{"id": "4003912", "video_name": "bead2a95-ec2b-5b66-8ffb-9309542e4e79", "text": "guy workingout in the gym,8k realistic,dark setting "} +{"id": "1006070", "video_name": "6f68eaf6-374d-5f67-ac82-ea652fbbc059", "text": "The background is black, and water is falling into white liquid, creating a pattern where water droplets bounce back in reaction. It is depicted in photorealism, with skillful use of light. "} +{"id": "7004120", "video_name": "9234c9f1-60ec-5313-89d9-0e3e9bfb0679", "text": "a man driving a car in a deserted spooky road in haunted dark forest, hyper realistic, cinematic color grading, ar 16:9 "} +{"id": "6002152", "video_name": "d2c6c97e-235b-5451-a032-69c28b4a2cd7", "text": "An alien spacecraft landed in Tiananmen Square. "} +{"id": "6004460", "video_name": "f9476ca3-864b-5693-b9d0-bbdd8c64cbf2", "text": "Couple in love leaning back with leaves in the forest "} +{"id": "7003115", "video_name": "244a6b4c-6358-504c-819a-2d7a6e6be18d", "text": "Timelapse of a beautiful flowers of various colors opening up , vivid colours ,Studio Ghibli, imotional "} +{"id": "3004382", "video_name": "2c1a072e-3f90-58f6-a119-9a2cd8b64d8d", "text": "Above the group, a vibrant rainbow arcs across the sky, its colors vivid against the blue. "} +{"id": "5001559", "video_name": "47fd7b4c-7abc-53ba-9177-47df9a0e658d", "text": "in this aquatic escapade, Dolphin found a new tradition at Purple Mountain, where laughter, cranberry antics, and mashed potato mountains made for a Thanksgiving like no other, the video should be realistic "} +{"id": "0005854", "video_name": "225d99bc-7797-5013-9b3b-f557fb1ade0e", "text": "Spaceship landing on mars, cinematic views, a distant highway "} +{"id": "2007178", "video_name": "8bb7d46d-3079-5fce-8cff-616ff4d806b4", "text": "The atmosphere here was very soul touching and everything there was dedicated to every creature. "} +{"id": "8003712", "video_name": "f231b2de-8c63-599e-a980-d2026b7c2d7f", "text": "explosion inside submarine surrounded by jellyfish "} +{"id": "6003908", "video_name": "df282c59-ea3e-51bf-bfee-583b23e82110", "text": "Astropunk space freighter interior, rusty walls lined with retro control panels, pilot in scuffed spacesuit, cinematic framing, by Dan McPharlin "} +{"id": "1005110", "video_name": "5e41b1b4-ce11-50d1-89e0-0195888f3ce5", "text": "female dark shadow silhouette, long dark straight hair, polygon render videogame 3d graphics dark background "} +{"id": "3006591", "video_name": "d1183aa4-d418-58fc-aaf7-e5e43a9cc0ea", "text": "the prisoner episode where rover is chasing number 6 "} +{"id": "1006724", "video_name": "7b32d15b-64eb-547d-b3eb-902a97b9e2f9", "text": "zombies and skeletons playing poker in a casino, tim burton cartoon style, video in 9:16 "} +{"id": "8002004", "video_name": "8e1d2423-e03d-5f85-8ca0-eaa29c13a522", "text": "man walking during the rain looking for a lighter "} +{"id": "7002527", "video_name": "5f878f31-013a-5a73-8d57-3dea59deec32", "text": "a kid playing virtual reality in a classroom, while the teacher is screaming in shock "} +{"id": "3005060", "video_name": "8336c8ff-0765-53e8-a3ff-36d5cb764a74", "text": "driving through the Kentucky mountains in a silver hatchback car "} +{"id": "3005808", "video_name": "aefc17e0-d7bb-5c73-a5bf-06d9c1840fd4", "text": "israel from the space zoom in "} +{"id": "0004445", "video_name": "092fdeaa-b61e-5c24-bce5-d7a5fa630b0a", "text": "A boy sitting on a railway station banch. He is looking tensed, closing up in the face of the boy. "} +{"id": "3006073", "video_name": "a89d1cb7-35af-5db1-b687-fbd2b9dbb1e3", "text": "i want a halloween realistic theme with some cute pumpkims comping from both side "} +{"id": "2004009", "video_name": "4a24ab7c-df1f-52fd-9640-4c9102ebfdd2", "text": "omer adam is singing into a cucumber instead of a microphone "} +{"id": "3005095", "video_name": "9d52a727-270a-5f50-9f17-115b5ca14370", "text": "The Asian boy is reading a book. "} +{"id": "0003766", "video_name": "42f8730e-053f-5434-9a4c-cbfa90d6e272", "text": "a chicken with glass running the street "} +{"id": "1004260", "video_name": "4eeb5938-d198-5cc8-bf4d-8aaefcf665f3", "text": "A live action Princess Tiana with a green dress, a tiara, and a frog on her shoulder "} +{"id": "1004842", "video_name": "598120ef-78bf-5ea3-983e-e2aa1d2932c9", "text": "HDR 8k video of a movie, horror, some teenage friends are eating pizzas and watching TV, night, videography style is similar to the movie sinister, 16k quality video, realistic, logical details, insanely detailed "} +{"id": "4003177", "video_name": "45315a90-6cd6-5f94-b3eb-84f77ff33073", "text": "a wolf peeks out from behind a tree at night "} +{"id": "1005208", "video_name": "5fdceb57-13cf-50a0-88f8-60e23e6a5d2a", "text": "one people is thinking beside the window, with Bright colors "} +{"id": "5001325", "video_name": "7e6923f8-4645-5007-a156-df2d3a46b3ea", "text": "a tiger runs into a bar "} +{"id": "7002254", "video_name": "1b3a030a-d5a4-5e06-99a3-d893763c83b9", "text": "haunted Abandoned hospital washroom and a girl lock herself in one washroom "} +{"id": "3005283", "video_name": "37ced0b5-507f-5ac8-9cbf-de73bf850895", "text": "A sad man walks along the beach, the camera is on the right "} +{"id": "0004502", "video_name": "0a1a0fa2-0cbd-56d9-ab7a-7ffbf21d9e2c", "text": "full body view of a young lady with black straight hair , looking at the camera, "} +{"id": "2004001", "video_name": "44d10322-76b4-59d1-9938-25db8c718f23", "text": "coffee beans going inside a coffee tree "} +{"id": "0006829", "video_name": "33d091ee-4d98-5641-9b72-a9fd87fccd2f", "text": "giant humanoid cobra footage 1920s eerie indiana jones "} +{"id": "2006175", "video_name": "5b50037c-eca9-5c44-aade-18c205e572a4", "text": "butterfly zoom out Message: selena (Font: MODERN) "} +{"id": "6003271", "video_name": "384494bc-5d1f-5254-92ae-21d5e61f2d10", "text": "all of the other reindeer, used to laugh and call him names "} +{"id": "6003518", "video_name": "3c22fcbf-56e0-5c47-a7f1-16dd63dd1494", "text": "still view of the ocean from a tropical beach setting "} +{"id": "1003091", "video_name": "38dfb5dd-1a56-5fa8-8223-91c164bb0a7c", "text": "create similar images in angry happy smilye talking weeping face expression and hands accourdings to expressions Message: 1 Attachment "} +{"id": "0005424", "video_name": "1a9b4f5b-d054-5235-bae1-5760f352a63c", "text": "View of a tiny house in the middle of the forest. With yellow lights at the windows, smoke coming out of the chimney, night time "} +{"id": "2006539", "video_name": "d5b94823-226e-5246-93fb-5169e70f8876", "text": "solar system erath from space make it looks realistic, 4k cinematic "} +{"id": "0004401", "video_name": "0847d14f-b39d-54d8-861b-fce09ffb4906", "text": "dogs howling to the sky, marvel studio "} +{"id": "4003268", "video_name": "0f7752a1-f7ad-50bd-bf45-d733ed9ea214", "text": "Countryside, thatched cottage, sunlight over wheat fields, warm color palette, healing illustration, Chinese ink painting style, outdoor "} +{"id": "4004815", "video_name": "2f5c4835-54a4-5109-b519-6f1e20c78e5d", "text": "songoku with yellow, red, blue hair mix, dancing "} +{"id": "1006949", "video_name": "7f2a02c1-8d0a-58e6-bb7f-298a99adc600", "text": "the pope throwing money into the air"} +{"id": "3006309", "video_name": "339b48a8-3490-5dff-aca8-11826ed07691", "text": "three camels driven by people, in the desert, on a dark night with stars, heading towards a house illuminated towards the horizon "} +{"id": "0004194", "video_name": "04d2ca99-393a-577e-80e4-0a912d63f54a", "text": "A collage featuring both Golden Retrievers and Labrador Retrievers side by side, showcasing their distinct appearances. "} +{"id": "3004292", "video_name": "a648baf9-7e80-5fcc-9c88-0716e1d5d2d7", "text": "western lady walking through the Forbidden City "} +{"id": "2007619", "video_name": "fb8069ca-a8ab-5dfc-b30d-de745a0dd6a3", "text": "nacho man Randy savage, a wrestler made out of nachos and other texmex staples "} +{"id": "1004121", "video_name": "4c54ccca-0170-59a5-abdb-b92d24630f5b", "text": "The Rise of Mammals and Birds "} +{"id": "0006117", "video_name": "26db3577-2d04-5edb-bb8c-b2af403e26db", "text": "ghengis kahn in 2023 dressed modern and acting the way someone would today in an American city "} +{"id": "3004509", "video_name": "34ee1a21-be4a-5ba6-a48d-eafc48007ca9", "text": "This mystical key holds the secret of the universe "} +{"id": "7002423", "video_name": "483a1e86-b333-5f29-a632-4f61a2ae91ec", "text": "3 people wandering in forest, sunny day, joyful, ghibili style "} +{"id": "2003489", "video_name": "ec41ce21-ebff-5bff-909d-a46ac35be799", "text": "Aerial view of Serenity Sands, showcasing its vast stretch of pristine beaches with turquoise waves crashing into the golden sands. "} +{"id": "4002935", "video_name": "b778fb3d-a26e-5e5b-8db8-b62d5f2d417f", "text": "masked men vandelizing a city block, cartoon, super realistic "} +{"id": "7002476", "video_name": "88b6f62c-2f69-511f-9ffb-d71eee3f6d96", "text": "a girl turn of her underwear "} +{"id": "5001886", "video_name": "e87b73be-e0ce-55e4-b2b6-22a73b88b137", "text": "a pony tripping on psychedelic mushrooms while standing in a field of giant mushrooms. "} +{"id": "6002916", "video_name": "ca4f0a78-0b6c-50a9-8db2-c7e5afd36ffc", "text": "up close smile, yellow teeth turn white, bathroom, scientific "} +{"id": "7003203", "video_name": "9da30927-4f4f-518f-8eb3-74e6770ca680", "text": "a super cool Christmas tree dancing and wishing a merry Christmas. CGI epic "} +{"id": "4004842", "video_name": "0acbd972-b696-5d64-a589-0be3c04ede12", "text": "picture illustration for the book: medieval princesses and poetesses "} +{"id": "6002561", "video_name": "341092e0-dcbb-5b9e-b780-bd60cf21e5c6", "text": "homeless guy on a busy street holding a placard that says FEAR IS NOT THE END "} +{"id": "7002539", "video_name": "301ea93f-3f7c-52d5-bdfd-dc4e8434f8de", "text": "Juca, a little boy character, book illustration style, cute full color, flat color, blue shoes, blue clothes, no outline "} +{"id": "0005436", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "Generate an image of a magical kitchen filled with floating ingredients like flour, tomatoes, and cheese, creating a playful and enchanting atmosphere. "} +{"id": "0005851", "video_name": "2258fabe-803c-5c39-a375-eb9f7ac1dc15", "text": "my story of becoming a successful entrepreneur from a small business "} +{"id": "8001810", "video_name": "4942e7a7-ce2f-5ff0-8cf8-d38182e0f59b", "text": "A bride and a groom at an outdoor wedding getting officiated, a lot of flower decor "} +{"id": "4002285", "video_name": "d58760b3-511c-597c-a1a8-089c80ae6947", "text": "bright night sky with moon eclipse and mist "} +{"id": "7004231", "video_name": "0fa998ab-85cc-53a4-915d-5199f06e9682", "text": "GThe girl and her boyfriend face to face.TT "} +{"id": "2007704", "video_name": "9ffab792-5058-58b5-b6ad-40f444323dc0", "text": "Onry\u014d no Kage (Shadow of the Vengeful Spirit) Message: 1 Attachment "} +{"id": "3005322", "video_name": "479cf159-454f-5d02-90d8-6920c9c2a447", "text": "Tomorrowland zombies party, neon castle crowd "} +{"id": "8002359", "video_name": "89b07e35-7998-53c6-b521-a8fb46e32c1a", "text": "on one side we have African, Chinese, Anglo, Hindu monarchies facing Aztec and Mayan emperors "} +{"id": "2005027", "video_name": "7f78df9e-d347-5a94-8b94-6728f5cec2a6", "text": "make the image looks like a wes anderson photo style "} +{"id": "8003931", "video_name": "bbb89c0e-24db-5fbf-9982-ede8b39bc959", "text": "a looping video of deep in space in lofi animation style "} +{"id": "3006629", "video_name": "0157b9a7-0579-5081-ad7a-d977de97578b", "text": "A flying gondola in the sky of Venice "} +{"id": "3004777", "video_name": "163a3294-b041-57a2-84b6-644b964790d0", "text": "a reshi red mushroom In the forest chilling on a tree "} +{"id": "2007149", "video_name": "712b79b5-3230-5a46-a940-00cc76c90805", "text": "16mm footage a shadow figure behind Mars rocks looking at the camera. The shadow figure is far away from the camera "} +{"id": "4002035", "video_name": "6a8e00a0-cba8-512a-ba44-e65958765a29", "text": "a car stopping on a road then another car crashing into it "} +{"id": "0005755", "video_name": "20a0da02-a975-5052-84b3-1a7183d708cb", "text": "Blue ocean waves on white background "} +{"id": "4002687", "video_name": "a1af2c48-728c-5327-bbda-5e401bdb0d19", "text": "the devil takes the soul of a girl, in tongues of flame digital art, 1:1 motion xx 2 "} +{"id": "2003050", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan was very happy to hear this and started following him. "} +{"id": "1005460", "video_name": "6453c262-fb2f-564b-9f3f-063d66b7f148", "text": "the sunshine beloved cartoon character of kindergarten "} +{"id": "8003281", "video_name": "b0ca1d7d-3dce-5c2b-b2bb-736df428fb57", "text": "2 God like skinny beautiful female deities, one pure good and one pure evil, One is made up of pure holy light and the other is void of light pure darkness evil. "} +{"id": "5001783", "video_name": "aaee62b9-6d36-549a-b479-7619fc4140ec", "text": "The young man is writing, then stops, then looks to the left, then returns to the writing position, the candles are moving, the sky is moving from the window "} +{"id": "3006553", "video_name": "fb2ae471-4504-5809-99ab-fdf177d35dcb", "text": "a rainbow coloured Chinese dragon flying towards us from the sun "} +{"id": "5001537", "video_name": "faf5a87b-3964-5ad3-b4e3-57816cdf3772", "text": "espresso cup transforms into 12oz coffee mug "} +{"id": "0003179", "video_name": "38c8a7e2-9129-5676-b2a8-0a4e3c7b0042", "text": "adventure water park slide in Australia the nile river at night in Egypt with moonlight reflecting in the water, palm trees and narrow streams inland "} +{"id": "5001602", "video_name": "6cd864fd-e85a-542e-b0d4-d440a7e3ada6", "text": "The wind chimes on the trees swing in the sunset ,8k "} +{"id": "0005063", "video_name": "140b393f-a358-55c1-8a31-912675480783", "text": "On a rainy day, a high school couple ran back to the teaching building to take shelter from the rain "} +{"id": "7002486", "video_name": "3950cb0a-e20a-5de1-bf7c-6873dcf80d86", "text": "an indian fort in wonderland where ingredients such as cashews, almonds and pistachios are floating in the air "} +{"id": "6002859", "video_name": "3c335518-bd6a-58ad-93d9-6b09ea2dac8b", "text": "Warm colors via golden hour lighting create an otherworldly feel. "} +{"id": "8002861", "video_name": "050abc90-698e-5c21-b0b0-ddf8ffba945c", "text": "a woman tells some text for 15 seconds "} +{"id": "1006820", "video_name": "7cc44c86-4def-53ae-b3d0-4edee14260d8", "text": "futuristic city in the netherlands containing solar parks, wind turbines in a green surrounding "} +{"id": "1003288", "video_name": "3c748082-c8b5-5684-beec-220eb2c25e82", "text": "giant trippy mushrooms popping on Shibuya crossing, hyper realistic, bright colours, aerial view, motion 1 "} +{"id": "8003545", "video_name": "9b4d21d1-193e-5bd3-822b-60dbd2fd7df0", "text": "in with cloth Message: 1 Attachment "} +{"id": "1003126", "video_name": "3989d44e-9e3e-50d6-ace1-48195cea5c8f", "text": "Farmers plant rice in rice fields "} +{"id": "2007874", "video_name": "70b15102-3b6d-5d72-b558-44c0180d1bb6", "text": "115 english people arrived on a island by a boad they are taking off others from boat to island "} +{"id": "2007172", "video_name": "1f4c71b0-74a2-5e16-bb01-d2e8646f5db7", "text": "a talking face tree talking fast move faster "} +{"id": "2003342", "video_name": "b457b81c-dcaf-5a0e-97fd-16b7154dc79b", "text": "iced coffee splashing in the plastic cup, yummy, very intense, all over the place "} +{"id": "3005446", "video_name": "367d225a-9344-5957-b206-e628c105246e", "text": "Camera orbits 360 degrees around a beautiful woman wearing stylish glasses. She maintains unbroken eye contact with the lens throughout the rotation. "} +{"id": "3003405", "video_name": "adc8464e-10e5-5a4c-8f94-14adb605d684", "text": "two men walking beside office in paris "} +{"id": "7004232", "video_name": "c9178fd4-4de3-5be4-9a8f-a2322a6f3286", "text": "Sea anemones and clownfish. Handwritten comic style.UHD. "} +{"id": "1004342", "video_name": "501cbc08-278e-5a9f-9458-f685842af1f4", "text": "A very poor old man with only one leg climbs a very high mountain "} +{"id": "8002205", "video_name": "5982885c-534f-5c1a-b436-64ec37103969", "text": "A white robot horse, it has to look like an Apple product "} +{"id": "4002078", "video_name": "ae9f2811-01d8-5760-baec-d65a9e0f0eaa", "text": "a GTA style video game set in Perth Australia "} +{"id": "2004665", "video_name": "2fd4d453-640d-5ee8-9cdf-aede04c75d13", "text": "Panic gripped the four young men as a ghostly specter haunted them inside the room "} +{"id": "8002305", "video_name": "6e8c6b4d-31de-577d-b332-b5d4474c3eeb", "text": "east european blocks of flats background Message: sztywniutko (Font: MODERN) "} +{"id": "3005924", "video_name": "64606c28-d6b4-50ae-a63c-74db5200f2e4", "text": "IU is standing on the beach, wind on her hair "} +{"id": "0004571", "video_name": "0b5fc729-59cd-5da1-9763-cc67956fce53", "text": "8k video walking through a forest then emerging in to space traveling at the speed of light to end up on a random planet that has an abunduce of waterfalls "} +{"id": "0003120", "video_name": "376732be-742b-5f16-b749-e9699fe86949", "text": "an old man in gray robe ,right hand holding a wooden stick over his head, back view, sea water split apart shows a path in front of him "} +{"id": "6003511", "video_name": "6fb26125-3955-5ca3-9eb5-444796990216", "text": "Finnish man Jaajo Linnonmaa, swords against monsters. The camera is attached to the tip of the sword. "} +{"id": "2005414", "video_name": "b1c235d5-0903-5a42-a24e-d0fb434a8094", "text": "Use imaginative and playful animations to make it exciting for kids. "} +{"id": "1004051", "video_name": "4b2228ca-53eb-5fc4-b29a-aa78d1be647b", "text": "elizabeth berkley auditioning for the movie skin deep "} +{"id": "3004087", "video_name": "758db6db-1a95-5330-a8ad-f1352c6cff10", "text": "in the style of a moving painting A bumble bee flying from flower to flower until it reaches a huge sun flower "} +{"id": "8003626", "video_name": "1b603c3f-020e-5770-889c-3732567a0e56", "text": "day Sky Only, comic book style, pencil medium, artist Andy Warhol antistyle, calm mood, colorful, high essential lightening, detailed texture, action settings, art nouveau "} +{"id": "2007637", "video_name": "da790ca1-b4ca-50ab-8d02-f4969027eabb", "text": "heaven, sad, peaceful Message: SYRIA (Font: MODERN) "} +{"id": "2003131", "video_name": "01a41292-8344-53c8-a123-8aa11895c304", "text": "a fluid abstract blob made of technology bits floating and morphing in an hypnotique fashion "} +{"id": "2004084", "video_name": "6642bd91-8075-5a04-95b0-176a8b7b985e", "text": "In the gloomy villa, a bottle of ink was knocked over on the table and the quill fell to the ground. "} +{"id": "2006065", "video_name": "d01e0a1e-4453-54c0-949d-871d9a5aa3aa", "text": "the golden ration, personified, in the style of macro realism "} +{"id": "7004602", "video_name": "9c86dca8-285e-5e8d-a89a-b432f74baa83", "text": "mini bar in the hotel room, Bottles in the fridge, sunlight "} +{"id": "8002110", "video_name": "5b6d76dc-4e5d-5c99-b66b-234392fa2dd3", "text": "Elon Musk flipping the bird and smiling on horseback "} +{"id": "3005487", "video_name": "5618295d-b1ec-5b4e-8986-91d2d146c11d", "text": "a realistic photo 1 cm fuzzy cute kitten sitting on a big woman hand, hyper realistic "} +{"id": "5001171", "video_name": "dcc9708f-42af-56ba-899a-709fc86cdbd1", "text": "view from the public of a stage where a person walking from left to right is entering the center of the stage dressed as a president to give a speech "} +{"id": "6002956", "video_name": "a6316b71-92cb-53d4-b736-fa8ae99e86d0", "text": "A bear with blue fur climbs a snowy mountain "} +{"id": "7004488", "video_name": "a383bd73-833a-5f42-a95b-1e1283883fbf", "text": "Create a subtle yet engaging background image that captures the theme of mystery and exclusivity. Use dark, rich colors and incorporate subtle patterns or symbols that are associated with the concept of mystery and surprise. "} +{"id": "4003870", "video_name": "63412b4a-9d54-5b20-8c41-99cff23a24aa", "text": "king alfred the great of wessex sit on the throne "} +{"id": "3003550", "video_name": "ac7a5573-40ea-5fc9-9594-4e126cc5466b", "text": "Egyptian temples were built for the official worship of the gods and in commemoration of the pharaohs in ancient Egypt and regions under Egyptian control. Temples were seen as houses for the gods or kings to whom they were dedicated. "} +{"id": "1006200", "video_name": "71a05f42-1397-5b82-82f3-dfaf216ebaf0", "text": "Lineage 2, game, pvp, necromancer, NC soft Lineage 2, gameplay "} +{"id": "8002493", "video_name": "efb30e73-924b-5ee8-b378-f03c49590eb3", "text": "man working and is very tired "} +{"id": "2004408", "video_name": "22d962ec-c966-5a14-818d-b961d9ff9ffe", "text": "slow zoom in and pan on aerial shot of a fairytale kingdom "} +{"id": "3005351", "video_name": "2b3d061c-abc9-552e-83eb-11b22450aad3", "text": "hype realistic rainbow coloured donuts melting into a liquid puddle, 8k explosion "} +{"id": "6003226", "video_name": "396a2c14-b4c2-569c-be1b-c3782a7426e8", "text": "Moroccan marathon of people in beach shorts "} +{"id": "3006255", "video_name": "fa057936-58e7-5dcd-941c-8ac7904f6bc0", "text": "A pet fish floating in a living room, its owner sitting on the sofa holding the fish by its leash "} +{"id": "5001816", "video_name": "550c08e4-799c-544f-b70d-1df912347bec", "text": "a boy and girl in park watching themselves "} +{"id": "8001581", "video_name": "8e0ed990-9506-50ae-a2df-eb4608dd690e", "text": "a herd of moose in an empty long dark corridor "} +{"id": "7003872", "video_name": "d65704a3-284e-5aa7-a401-5979f8c91516", "text": "A little kid got his report card and was very upset "} +{"id": "0004731", "video_name": "0e3875c5-cebc-580c-88d4-7ae4e1256ed1", "text": "Fish diving in the deep sea "} +{"id": "0004901", "video_name": "11253bd8-cefa-5152-9a3b-1211d8cdb767", "text": "surrounded by an assortment of pets and animals, including dogs, cats, chickens, and pigeons. camera zoom in,cinematic video, "} +{"id": "3003277", "video_name": "edb13599-9977-5dd0-801a-8d5cde5e2589", "text": "a black cat is running on a bed in a bedroom, outside the bedroom is a river running from sky, the rive is full of brains, the famous football player Marko Arnautovi\u0107 is dancing ballet in this river. "} +{"id": "4004543", "video_name": "a88b1b98-aab2-58f5-bcfe-a1001d01ef76", "text": "image showcasing a lush, green lawn with a coiled garden hose and a sprinkler head. "} +{"id": "8003096", "video_name": "377d52e4-5659-5fb2-a5ac-cd79722dc20f", "text": "Illustration of an astronaut, camera from behind, v3 model, anime style "} +{"id": "2004045", "video_name": "a2c515df-da5e-5706-86c2-93d8d62ba4dc", "text": "mystic landscape, purple background, Fine Art, Paint, Light Blue Background "} +{"id": "7002911", "video_name": "2a886a88-9d04-5427-808e-d3f81774707f", "text": "hr giger style vinny appice fighting in the night with rain 16:9 "} +{"id": "1006298", "video_name": "73506e01-c196-5ec8-a8cc-f7d25bb9681f", "text": "a man with glasses stands on a mountain of zombie corpses, against a background of green forest and mountains and a blonde street girl who is waiting for him, in the style of grisaille "} +{"id": "2007217", "video_name": "e8a99e23-416f-5de6-afc0-109280c757ee", "text": "people walking and singing on the stage "} +{"id": "2006133", "video_name": "366c8a20-51f1-5d08-a411-9cbd861799cc", "text": "Emotionally tells the poem by opening his mouth and moving his eyes "} +{"id": "2007599", "video_name": "b8e9d72b-cbd5-562e-8fb8-782ebe554103", "text": "rick with the queen Message: 1 Attachment "} +{"id": "0006461", "video_name": "2cfb90c2-4815-5518-99f5-700431649e44", "text": "including the early relatives of dinosaurs "} +{"id": "0003633", "video_name": "40d4a4db-08e2-55ab-bc6e-fb77d90a166b", "text": "A stellar lightshow in space, astral travel, bright vibrant celadon green color, trippy visuals "} +{"id": "1004652", "video_name": "567d9018-f47e-5d31-9b34-ad12de307eda", "text": "race car driver is driving with focus and turns to look at us "} +{"id": "3004744", "video_name": "eda47c6d-1cec-5a48-8d93-164d4e898b86", "text": "An Asian girl with stylish short hair and bangs gazes longingly at a decadent cake on a table, eyes glimmering, mouth watering. Dressed fashionably in a crop top and miniskirt, she leans closer, moments away from indulging her cravings "} +{"id": "6004155", "video_name": "15804204-6cff-5e84-ae8a-3de6f612c8ca", "text": "a girl wearing a japanese uniform walking towards, smiling and say hello "} +{"id": "1005185", "video_name": "5f5dc4cb-6da7-52de-b2b2-6b08cdf08d8f", "text": "Kicking the beats into the universe with a solid gold foot, rabbits in the moon and cups of text oceans riling the waves of red paint into tundra pandas "} +{"id": "7003788", "video_name": "05853182-4fbb-54b6-9c7a-3571537e14bc", "text": "The Akkadian Empire, founded by Sargon of Akkad, marked the first known empire in history. "} +{"id": "4004422", "video_name": "de91f96b-955d-5d78-b51d-e424e14a0c6d", "text": "A manager, a woman in a suit, is coordinating the crowd. "} +{"id": "0004615", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "two airplanes colliding the twin towers resulting into a huge blast in the building, funny, scary "} +{"id": "8001922", "video_name": "45c8193c-aa41-5c93-a834-6b04ac74f840", "text": "a young girl walks a trail in the forest, surrounded by pink butterflies "} +{"id": "8002440", "video_name": "0609b0b6-ebd1-5588-964a-4535fd6b2a65", "text": "Villagers deciding to cut down an old tree that has fallen in the garden. "} +{"id": "4004244", "video_name": "aa9e8b77-0458-569c-a70d-983446b22644", "text": "The camera zooms in on a charismatic office girl standing at the center of the screen, with a bright and gentle smile. The background is simple and white. "} +{"id": "6002437", "video_name": "d159e59a-16a3-5fe4-8f40-bfdd84ad8d86", "text": "a dark shadow like ghost standing under the tree in children park in day time "} +{"id": "1003782", "video_name": "45d6cc46-dabf-50ff-a1f4-041e00854ee6", "text": "anime style night over japanese town "} +{"id": "6003596", "video_name": "7977b601-8e48-5d01-826e-7674d51a1065", "text": "expression of desire representation with energies. flowing cinematic style "} +{"id": "3006537", "video_name": "4eaaf07b-9add-5621-82ae-990067da57b7", "text": "The driver was driving in the car and hit the bicycle in front, causing the bicycle to fall "} +{"id": "1004583", "video_name": "55412d67-16d0-5ad0-b111-6caa694b95d4", "text": "make it realstic background is Eifel tower change running style "} +{"id": "4003725", "video_name": "1bce1b63-0338-53ab-9b6b-d34a7ace17d9", "text": "Jason Statham quickly runs from the left side of the screen to the right side of the screen. Night City "} +{"id": "2007966", "video_name": "b1c4544f-f730-5b8a-8a6c-4ea77eb88c94", "text": "close up on an old smoking pipe laying an old wood table in the living room of a mid 20th century 1950ies house vicarage in England, dawn sunlight shines through the window, cinematic "} +{"id": "6004386", "video_name": "5331596c-1800-512c-9ba2-865eb83d5928", "text": "2 man 2 woman working out in a very detailed outside enviroument, they are doing pull ups, squats and push ups "} +{"id": "7002607", "video_name": "6186d6aa-561e-54ba-a534-878dc9fc6d7b", "text": "a green land view, mountains are behind that green land and a river is flowing near it "} +{"id": "7003894", "video_name": "6c52f8f3-7920-5351-be66-00cc732e53de", "text": "An animated video of a geeky girl typing into a computer in a dingy room. "} +{"id": "5001764", "video_name": "2a7a33af-05b4-5b71-bcef-6453b7e513cc", "text": "humanoid shadow in dark forest, black and white, old classic horror movie style "} +{"id": "2005241", "video_name": "28d39894-4da7-5483-a871-99d9d40e207e", "text": "Super sandy beach with wind and flying sand particles "} +{"id": "3003254", "video_name": "0009e855-1edf-519f-9b88-7cffc788ae25", "text": "Computer circuits reaching down like fingers from the sky, roots that are growing upward, cybernetic, futuristic, organic, forest floor "} +{"id": "7002359", "video_name": "031842cd-b8ba-5e2a-ae10-bf07ee1431fe", "text": "Minecraft survival series Steve chopping a tree "} +{"id": "0006275", "video_name": "29deb0d4-e17e-5b98-872a-465862e6d64d", "text": "Massive Aliens in the hoodoo desert Alfred Stieglitz black and white 1900s "} +{"id": "0005093", "video_name": "149dd958-73b4-5d57-a4a7-27455c139ab7", "text": "very interesting scene, cinematic camera motion "} +{"id": "1006116", "video_name": "7027bd23-dc6a-5a09-95b0-1391a2027415", "text": "fictional rioting in the streets of an imaginary city "} +{"id": "1004328", "video_name": "4ff02772-b30b-5db2-9981-ad17a6774758", "text": "roses fly in space, 80s style graphics "} +{"id": "3004622", "video_name": "46a1a037-02c6-5e10-a148-40e066a140f0", "text": "A train derailing and subsequently exploding "} +{"id": "8001904", "video_name": "4b88aad0-295f-5a85-99dc-26cd38adfded", "text": "beautiful field of flowers dancing in the sun "} +{"id": "1003108", "video_name": "3936f1ee-926e-5b3f-8204-b6b60facb7be", "text": "a pixar bee and a plane in the blue sky. 4K HD quality, realistic. "} +{"id": "0006783", "video_name": "33196271-7d72-5c7d-9066-2e675c731728", "text": "Note: For visualization and animation purposes, feel free to incorporate advanced graphics, visually appealing transitions, and dynamic effects where appropriate to enhance the overall quality of the video. "} +{"id": "4003408", "video_name": "5a6845d4-1ed4-56df-9839-02d8bbf04779", "text": "An astronaut flies to the distant universe "} +{"id": "6002881", "video_name": "e3813762-53ad-5406-8e36-9d1f4010e330", "text": "Very formally looking at you Message: 1 Attachment "} +{"id": "1005930", "video_name": "6cf1a8b4-b765-5070-86d4-c73de42bccab", "text": "Cut strawberries into halves or quarters, depending on their size. "} +{"id": "2005831", "video_name": "f7fe6be7-f22e-5444-b3a6-3563fee281fa", "text": "give a YouTube thumbnail for machine room "} +{"id": "3004029", "video_name": "bd43a509-0e43-56e0-a8d2-a44aae707d54", "text": "a man watching a beautiful girl "} +{"id": "0005211", "video_name": "16a325cc-87a6-5241-ab65-3243f37aa123", "text": "Iron Man lands in old Marvel style "} +{"id": "0006444", "video_name": "2c8a6f6c-60e9-5a43-b089-eeb36fdae2e8", "text": "skyline city Waking up in the morning "} +{"id": "4003509", "video_name": "30842ec5-58aa-5185-8ad0-977cb2f028f3", "text": "staring from far, from the side "} +{"id": "1006467", "video_name": "7656a8c8-069a-5569-aba9-984ea2291c72", "text": "Kenyan village. Woman. Wants to start business. Bank far. Calls but sad cos rejected. Visits bank but again rejected. Village people all use mobile. She starts business with mobile payments and digital banking. "} +{"id": "8001622", "video_name": "4c41f753-5dad-5eeb-80ab-4ba355b7a95a", "text": "A world in which time is reversed "} +{"id": "2006110", "video_name": "fcd8a6ef-d2de-5098-a2a8-9d70c1c1defb", "text": "Gordom Ramsay cooking food at the counter "} +{"id": "2003879", "video_name": "abfbb6c8-022a-5d4a-84f9-4d89507f34a7", "text": "Shrek in trousers and shirt is sitting on a black chair, a beautiful sunset, trees, fireworks exploding in the background "} +{"id": "6004446", "video_name": "16a638ed-3a1c-512c-abb7-21a79c272c80", "text": "kids coming down stairs beautiful fair children "} +{"id": "3006540", "video_name": "e2d7f86a-f8ad-51b3-9672-4dfe490af815", "text": "Christmas, little nurse, Christmas tree, elk, sleigh, gifts, snow "} +{"id": "8002904", "video_name": "d51efe0d-4b88-5018-9a46-a3b3ea0b1041", "text": "a universe circle with movie planets and stars "} +{"id": "3004146", "video_name": "0345533f-b8bc-529e-8314-68fa318cbe80", "text": "actor rajnikanth attacks aliens, cyberpunk, cinematic, widescreen, uhd 128k, vibrant galaxy background "} +{"id": "1003512", "video_name": "40e63709-68a5-54d3-b038-4d6b89b79d7a", "text": "bear shaking money Message: 1 Attachment "} +{"id": "0005558", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "A Russian soldier standing on the battlefield (a soldier stands in the middle) in the hands of a wounded comrade "} +{"id": "4003701", "video_name": "0bb2231a-d14a-5655-8b0c-951545499632", "text": "a group of cats outside looking up at an aircraft in the night sky "} +{"id": "3006600", "video_name": "fc4a71ed-5d69-52bd-898d-324f5b3bd80a", "text": "Movie by Jay Roach , (Zoe Saldana as Eve), from the Leisure Suit Larry Movie. a mysterious brunette who wears a tight black suit, which highlights her curves and allows her to move with agility. wears silver and leather accessories, and holds a pistol in his right hand. has short, straight black hair and brown eyes. Her pose is enigmatic and dangerous, with one hand on his waist and the other pointing forward. "} +{"id": "0006578", "video_name": "2eeae976-7bd8-58c0-977e-937ca4c5c079", "text": "Powerful car engine and car engine oil "} +{"id": "7004138", "video_name": "4fed3bf5-6559-59c2-b011-4a8fffbbe96c", "text": "Destination Preview: Show glimpses of the potential destinations on the map, sparking anticipation. "} +{"id": "3003700", "video_name": "2b4796f5-ddab-5c9a-b10c-848c9246ae50", "text": "The 80s Movies That Arnold Schwarzenegger Regretted. A video that discloses some of the movies that the actor wished he had done differently or not at all in the 80s, such as Red Sonja, Raw Deal, Red Heat, and Hercules in New York. "} +{"id": "2005519", "video_name": "12b71800-e160-559d-9231-b1162eea752b", "text": "Salar de Uyuni, a girl, dancing,4K, best quality ,The mirror reflected clouds in the sky "} +{"id": "3005016", "video_name": "b69db2a3-7fb3-5027-a81a-16fce0c81670", "text": "gently wind rocking canoe gently floating on beatuiful lake, hand drawn, Hayao Miyazak style, beautiful scenery, colorful palate, foliate, gentle "} +{"id": "1006373", "video_name": "74b01e27-d450-51f6-9eb6-1e902321aefd", "text": "a ghost being scared by a living person "} +{"id": "7003030", "video_name": "8a71843b-0f94-5476-975c-70796afc3e25", "text": "tokusatsu product design raygun with exotic energy and materials lights leds artistic lighting cinematic presentation imaginative beautiful design "} +{"id": "0004606", "video_name": "0be10ce5-e040-5fd9-8494-df0ce94e3045", "text": "rabbit eating carrots, claymation, Wallace and gromit style "} +{"id": "3004920", "video_name": "e225a4db-94f9-5200-9a32-e70ed2aa6864", "text": "Cartoon.HD.2D.One day, they found a mysterious cave. The little bear wanted to explore the cave, but the little rabbit was a bit scared. The little bear encouraged the little rabbit and said, \u201cLet\u2019s go together, I will protect you.\u201d "} +{"id": "8001655", "video_name": "38960794-aa9f-5a70-9677-ad3fc8f3a680", "text": "orange landscape, full moon, ocean, relaxing "} +{"id": "2005755", "video_name": "78979e8b-5523-59b2-9554-31f9e23e7cfd", "text": "WInd smiling as it consumes a Village "} +{"id": "0003343", "video_name": "3bf08185-22c8-5482-a584-d29615bdb3b6", "text": "The weather is blowing in the autumn wind "} +{"id": "1005652", "video_name": "67e03136-53f6-52a3-8a02-d11a73d8b7c6", "text": "plant cells floating in a bewer tank "} +{"id": "2006641", "video_name": "c335ceac-9524-5f9c-8173-15e4933201ac", "text": "girl with brown and silver hair walking up large staircase with black backpack, very realistic, 4k "} +{"id": "3004056", "video_name": "fb913e61-2afd-546b-bac8-72f29470f9b7", "text": "Foxes looking for food, fast movement, pictures from above, morning time, high spaced trees, sunlight on the ground, fast movement jumping, picture moving away, among the grass "} +{"id": "7003309", "video_name": "fee6f186-bfb7-5c41-94e0-6f7521fff39f", "text": "Get the boat and the water moving "} +{"id": "4003511", "video_name": "47338455-94bb-5cc2-a0e2-bed12016bad4", "text": "an animation where the character is standing outside a bank "} +{"id": "1005099", "video_name": "5e0c5b7a-26b6-5639-9bb5-e7648aa04953", "text": "a dancing turtle in a spotlight, realistic, 8 seconds "} +{"id": "2004062", "video_name": "e81ca800-dde7-5a54-a18e-8d81f0a40a23", "text": "Space capsule sending love notes to earth, in the Style of Norman Rockwell "} +{"id": "4002612", "video_name": "8ba2e755-9a28-588a-8b9c-beec7a64d956", "text": "Coal mining and usage scenarios , 8k "} +{"id": "2005044", "video_name": "0e4edc7b-b5b5-5f91-9e83-a82c92012f18", "text": "gym motivation video that show a boy working out hard, pushing limits, intense training "} +{"id": "3003113", "video_name": "ea48ef2f-2c04-50a0-91a5-f26513546af0", "text": "bright sunny morning Winnie the pooh With Owl leading the way, Pooh, Piglet, Eeyore, and Tigger set off towards the Great Upstream Dam. They trekked through the forest, their determination growing with every step. "} +{"id": "4003351", "video_name": "4c779731-786b-55f2-880d-7af64f3d5e14", "text": "An image of Adrisha and the red bird, radiating happiness and laughter, surrounded by colorful dreams "} +{"id": "1005097", "video_name": "5e0a0b4d-f9e7-55ac-b009-7cadd5567665", "text": "huge monster octopus rising from flooded river, Kerala floods "} +{"id": "3004307", "video_name": "3f42a793-863f-5b6d-a41d-6396f654db5c", "text": "a large family sits on the sofa and communicates "} +{"id": "6003259", "video_name": "dd7c0d0b-0e03-54cb-be1a-7458ce80d817", "text": "birds are flying, clouds are moving during sun set "} +{"id": "2007655", "video_name": "ca57a034-943b-53f0-a8df-a13b28a0d06f", "text": "On hearing this, the parrot for the first time, started speaking. The king was surprised and listened to the parrot. "} +{"id": "4003434", "video_name": "c5688233-b064-5521-bdb6-4b6cffb4ba6f", "text": "bannerlord battle, by the river, in winter "} +{"id": "3003592", "video_name": "0d6888de-1d6a-5c12-bb11-e9750f052e8f", "text": "a teenage girl, curly with light brown hair, big eyes and brown eye color, small mouth, perfect nose, perfect eyebrows, dressed up as a fairy with wings, realistic, 4K full HD "} +{"id": "1003948", "video_name": "48dc8cca-0ce3-5468-b0bc-565ed8f24f32", "text": "Flying Saucers using laser beams to battle over NYC "} +{"id": "1006031", "video_name": "6ecf1e50-211e-58cf-9a5f-dad3d29a0057", "text": "These girls are talking among themselves about some serious topic "} +{"id": "8003276", "video_name": "0d3d74a9-0e68-5875-a6a3-cf1edc36d35f", "text": "a young leonardo da vinci looking at a water stream "} +{"id": "0005371", "video_name": "19b2a1ba-6f1b-54d8-a47d-d6da5840af64", "text": "a cloaked figure walking in a foggy forest holding a lantern. Black and white 16mm "} +{"id": "6002459", "video_name": "9b98a034-368a-579e-95bc-8eff0feaf215", "text": "ninja android with a sharp sword threatening another ninja in an enchanted forest "} +{"id": "4002691", "video_name": "f7affbb4-0c26-5c2b-9523-829fa43b54cf", "text": "piece full vibes with moon night river flowing and house with some person "} +{"id": "4003156", "video_name": "928e7e5d-e924-5b35-8878-39b4cd5f7d0c", "text": "a group of children running around and screaming "} +{"id": "4002158", "video_name": "faedcaa5-6f81-51d5-8cf0-ba607a3ccdef", "text": "A long video of poor farmer "} +{"id": "2005625", "video_name": "b6c75546-bf09-5b9f-bea3-88ce3c3d831c", "text": "Elara encountering a shimmering pond with a graceful swan named Seraphina by its side. "} +{"id": "6002897", "video_name": "789fc5e8-a796-5186-82b3-dac2629ac17b", "text": "a humanoid rabbit in a night landscape kissing towards us "} +{"id": "2005438", "video_name": "5316b196-c997-56e7-8b36-a68fbb514c57", "text": "Bored man on the bus, because he will be late for a concert cinematic camera "} +{"id": "7003850", "video_name": "d63b4d9c-c2f4-5dbc-a57f-b5289b61e462", "text": "james heatfield. young and thin, black leather, long hair, taliking in a crowded tavern, black and white old film. "} +{"id": "3003352", "video_name": "dc9e4e4d-fe72-5350-a71f-ebb9011f34d8", "text": "a man walks through a hall of mirrors "} +{"id": "1003357", "video_name": "3dd9482e-4994-5254-98d0-109998361516", "text": "Make a video in the style of 1990 winter in America "} +{"id": "0004899", "video_name": "111c2fbb-601d-5a29-b4d7-769ea4702ee8", "text": "his robe blowing in the wind Message: 1 Attachment "} +{"id": "6003945", "video_name": "cd6ded00-1aee-5ba9-a481-46ffaf4b9feb", "text": "two guys in the elevator in thier 30 years age with office dress smiling and "} +{"id": "5001215", "video_name": "1dd35ec6-d514-5a74-b1b0-6f84a94dd8ba", "text": "real Chinese beautiful woman in jeans walking through Hyde Park fountain, attractive, wind flowing slightly "} +{"id": "1005916", "video_name": "6cb27a18-4c3b-5954-8fe6-64096f99921d", "text": "a bird, flying in the sky, 1m "} +{"id": "6002054", "video_name": "82cbce4d-d055-5dc2-a065-f6ae6f649e9c", "text": "Viking Vessel sealing in the Iceland sea "} +{"id": "1004570", "video_name": "54e4d581-c4e2-55ec-a749-1373a5e5001c", "text": "full shot of person eating a big juicy hamburger with thick meat, yellow cheese, in the shot that you can see the person sitting, holding the hamburger with both hands while biting it and dripping the sauce enjoying eating it "} +{"id": "2007856", "video_name": "8fc8429a-d6b4-5fa4-8139-3cc5a740ae3c", "text": "realistic photography of crimea war fotorealist "} +{"id": "7003205", "video_name": "d0ff5449-770c-5268-8766-d73063079bf8", "text": "Buddha of the Tathagata, guanyin bodhisattva, Eighteen arhats, Sit in the palace, resplendent, golden "} +{"id": "8001113", "video_name": "338d7016-37a3-5331-9e7a-0fb8586d93aa", "text": "a 360degree view of toyota fortuner with black background , full HD quality, "} +{"id": "2004349", "video_name": "35d2d784-8ebe-5977-9046-e983d3042593", "text": "Emily had always been a dreamer and she often lost herself in the pages of romantic novels. "} +{"id": "1006855", "video_name": "7d342cf8-eee4-512e-b2f8-d484782a7d49", "text": "view from a great height, the last near the giant mountains "} +{"id": "7003837", "video_name": "26977f11-8ab4-53db-9161-ec183b3d78d8", "text": "A group of friends walking to go home wearing black shirts "} +{"id": "2003580", "video_name": "a73f941c-e510-5123-b717-319ce8870975", "text": "In a warm, sunlit outdoor square paved with stone, an exquisitely faced young Taoist priest, with his hair tied up in a bun and his ornate robes, is teaching his beautiful young disciples to cultivate. The young Taoist priest sat in the center, and his disciples sat around. "} +{"id": "5001276", "video_name": "9efb02f6-94c6-5849-bfbd-070f538d5b95", "text": "1970s arthoust film vampire and girl 16mm "} +{"id": "1003068", "video_name": "3864beae-465b-5dca-8907-e67c6abd5404", "text": "squirrel knows how to find the softest leaves and branches to make a warm bed "} +{"id": "1005503", "video_name": "6547e514-0f00-5c03-898f-31a640a2e495", "text": "a minecraft skin standing in front of moon "} +{"id": "0004959", "video_name": "12431550-41cd-5135-92ff-8fe4f7618ee0", "text": "the strange creatures keep moving and floating away, towards the camera, side to side, and new strange creatures are appearing all of the time. They bark and shout, bearing teeth and blinking profusely while looking around confusedly. Twisting and turning ljke a manatee, they swim in and out of frame. "} +{"id": "1005783", "video_name": "6a70fd65-b037-54d2-9d2f-d89b1bfe3ab5", "text": "minions jumping dancing near kremlin, camera panning fast, moving camera around, sped up "} +{"id": "4004379", "video_name": "9499f3c7-8a4f-5fd8-b37d-dae66b8b3a02", "text": "Generate an image of Doraemon wearing an batman costume, complete with the iconic and glowing arc reactor "} +{"id": "4002956", "video_name": "1d0882be-1edc-52a4-9b4f-2bbb695f6356", "text": "cinematic,hiperrealistic , motion 2,glowing lips,disgusted watching, extremely real expression,smiling ,darkness ambient,flying stars "} +{"id": "4004685", "video_name": "ee990a04-edf4-596d-a49b-486fc5da6b88", "text": "small kid flying in the clouds "} +{"id": "1006049", "video_name": "6f13bc1c-a0b2-5f40-853f-ced517b74987", "text": "An indian court with judges and common people sitting and judges passing a judgment. Cartton, 16:9, real "} +{"id": "0005024", "video_name": "135fe871-e158-56c4-8ab1-5e60066e77cc", "text": "DIY ideas for affordable and stylish decor "} +{"id": "8002740", "video_name": "208d5bd6-6425-5276-b6ee-b494982c3bf4", "text": "romantic Indian couple walking on full moon day "} +{"id": "7002854", "video_name": "d81c83cc-e14f-51e3-80ad-f8f64a269b0c", "text": "Meteor falling from the sky shaking the ground "} +{"id": "1005210", "video_name": "5fe9e5a4-4055-5fea-958c-dff53f1966ec", "text": "In 1958, Xu Jiayin, a Chinese man, was born in rural Henan. At the age of 2 in 1959, he lost his mother. He graduated from high school at the age of 18 in 1975. "} +{"id": "7004850", "video_name": "cc48daf9-4be2-528c-8a60-9c88f91947b1", "text": "a queen dancing in the snow "} +{"id": "0006024", "video_name": "2531aa5c-f288-5e37-a11b-7a5dc8129847", "text": "One black angel knight in futuristic armor adorned with golden ornaments grips a neon blue glowing sword. "} +{"id": "2003194", "video_name": "2227ebcc-06c4-5a11-95e8-8d45dcfda7de", "text": "Water with vines and refreshing fruits around it, the scene should be in the forest. Message: UPTOWIT (Font: MODERN) "} +{"id": "8001781", "video_name": "6d7c2cd4-8c73-55ce-8366-7cf20bca6a71", "text": "the two teenage womenboth look scared. women with the red hair looks more scare than the woman with blue hair. both teen girls are sitting on the bed. inside a house. this scene needs to look cinematic. "} +{"id": "2005510", "video_name": "656a753a-5086-5075-8e88-097115153b56", "text": "He writes many books that are highly respected by people "} +{"id": "0006171", "video_name": "279fc834-e23c-5193-8cc1-e3d675733a05", "text": "A woman walked into an ancient estate and discovered an unusual atmosphere in the house. During her exploration, she encountered a black cat that seemed to give her a hint. "} +{"id": "1004357", "video_name": "506d5767-91a6-50f2-88f5-7dea7013768e", "text": "wallpaper kafka fron honkai impact animated 4k "} +{"id": "0004146", "video_name": "040ebf85-3d6b-54c7-a661-30f89df1f414", "text": "A alien spaceship lauch in New York "} +{"id": "4003187", "video_name": "3017d67d-f60b-5ecb-80e2-ec63043afdce", "text": "A woman of 40 emerging out of water "} +{"id": "2005626", "video_name": "3ad89880-36b9-5ded-99b6-fb9b78f5ebd5", "text": "sand pouring through hourglass in the dark "} +{"id": "2005532", "video_name": "996a08df-9172-56ee-9ef4-8bc79105249e", "text": "citizens of all ages are desperate, in a street of a big City by night "} +{"id": "2006190", "video_name": "c54f642a-a090-57f7-897d-43f37a35f459", "text": "Transformation of galaxies in space lasts for 10 seconds\u201d "} +{"id": "1004447", "video_name": "5248f5f5-006a-5663-b39e-6ccd57a6c9aa", "text": "drone footage of dubai sheikh zayed road in 2d animation style 4k resolution daytime "} +{"id": "7004501", "video_name": "5832d1c8-bbcb-54a0-b988-ca3e69992dfa", "text": "Cristiano Ronaldo, Smiling, standing up from a bench "} +{"id": "6002185", "video_name": "cba02799-78e6-5653-b767-3cf80b650459", "text": "to the town of Martinez in the San Francisco Bay Area "} +{"id": "0003558", "video_name": "3f908a4a-ab5f-5157-8416-dcbece1479cd", "text": "woman looks through the window and sees falling stars "} +{"id": "2007355", "video_name": "90c1672a-1c51-52cb-b458-09c194cab0ed", "text": "Tom cat was chased by a jerry mouse "} +{"id": "8003991", "video_name": "6274577d-b96e-5107-9e22-b05a4b000775", "text": "the old men are smiling as they are very happy "} +{"id": "1004970", "video_name": "5bd6dd78-5548-5ad8-9c6f-e5d972b3da3a", "text": "analog style, There is a man standing in front of a window in a dad punk style helmet, Strange photography, in a dimly lit room, Grainy cinematography, 1985, screenshot from film 1 9 8 6, VHS ScreenCap "} +{"id": "0003839", "video_name": "4459bca5-91dc-56d0-97a0-0ac01a4b417b", "text": "Hieronymus Bosch chaotic bizarre motion snow "} +{"id": "8003966", "video_name": "558a687b-e3bd-5213-99e6-f0d7362807fb", "text": "create a video about cashew in 60 seconds "} +{"id": "0003916", "video_name": "45ac9dbc-5581-584b-a552-c888c631cb91", "text": "Christmas tree in a desert, 25mm "} +{"id": "4002930", "video_name": "d9761159-5ce8-5934-96f6-3eb72b474b8b", "text": "Blue 2015 Ford Mustang driving fast on desert highway toward mountain cinematic 4K "} +{"id": "2007464", "video_name": "9f82fb4f-cb48-53a6-905d-5a677711b52a", "text": "grapes flowing in from different parts of the world to a jar on table "} +{"id": "2004414", "video_name": "2920b5a9-52e8-5086-aee0-a179e4b65d76", "text": "16:9 high resolution atoms and electrons representing universe. "} +{"id": "3006999", "video_name": "9e337968-bdf4-5793-ac77-d51c3bf0bc21", "text": "we see a little pink table, the table is in the room of a little girl, in the table there is a sketchbook, we see the front page of the sketchbook, it says: The Tale of Iris and Kid, in the room there are teddies and girl toys, the camera zooms to the sketchbook "} +{"id": "6002755", "video_name": "ad20af05-d98e-56a0-840b-67a2faccfea7", "text": "man investigates graveyard, very creepy, 1980s "} +{"id": "6004216", "video_name": "62072f70-460e-53da-871f-6d3358020e02", "text": "10 sekunden germany then and now "} +{"id": "2005481", "video_name": "df7581cb-d6bf-5d1a-80ae-81336b241479", "text": "While the complete history of the pyramid remains a mystery "} +{"id": "4004430", "video_name": "8bdc47df-9250-59b2-b02c-de772a5223ba", "text": "10 second video of cute white bunny "} +{"id": "4004065", "video_name": "323fd85e-880e-536c-9318-43927a870578", "text": "a beautiful woman beckons to you "} +{"id": "1006532", "video_name": "77ad56bc-21c9-5188-b362-1801778b8fb0", "text": "judge sitting in a chair in the middle of a bioethics madras street where people around are looking at him night "} +{"id": "7002912", "video_name": "f887268d-affd-5203-9037-f3528d2851c6", "text": "3d animation, thick south american jungle. thick mist, large trees and bushes cover the floor. scenery is draped in shadows from the overhead canopy. in the background is a set of menacing eyes peering through a bush "} +{"id": "1004512", "video_name": "53c15c3b-e6ac-5986-9cec-f010064fa741", "text": "a 7 year old bright color boy and a white cat in front of a small home in a village near the jungle , looks like painted image "} +{"id": "4004458", "video_name": "19d86f61-c232-5066-8190-c4a63f2d759d", "text": "a cute black cat runs on the moon, cinematic "} +{"id": "4003869", "video_name": "92c61812-c903-5c11-b48c-531c0f130796", "text": "man jumping from the high rock into the ocean waves, slow motion, cinematic "} +{"id": "1004886", "video_name": "5a584771-1864-58ec-b81e-69f64363c2f0", "text": "A young mother is walking down the street. A dog barks at her. She gets scared and takes shelter in a nearby house. The next day the same mother is walking with her child. "} +{"id": "8003250", "video_name": "5736407b-0894-5d18-92b3-c41dccdea3f2", "text": "A Cat Eating A Bar Of Candy "} +{"id": "2003588", "video_name": "2b58240d-fef5-5211-a668-574fa4c96e81", "text": "the little mermaid Ariel as Abigail F. Cowan Disney, in the water, hair moving on the water, realism film frame realism "} +{"id": "1004119", "video_name": "4c492ed1-34dd-5e85-ad7d-8b54eee175c4", "text": "sahyadri, Raj Kumar Hirani style, mist, stars in the background, hyper lapse, extreme zoom in, fire flies "} +{"id": "7004106", "video_name": "6f0021d3-683f-5ca2-ac4c-891c39e89d4c", "text": "Ami and Paul sat in the cabin in the dark forest "} +{"id": "3005042", "video_name": "58fabf11-c229-5554-a1b4-8cee72373c23", "text": "Ensure the images reflect the mood and emotions of each scene. You can use a combination of stock images, illustrations, and possibly custom artwork to enhance the storytelling visually. Adjust the color palette to match the emotions of the story, using darker tones for the more intense scenes and softer tones for the emotional moments. "} +{"id": "4002794", "video_name": "a7962e24-81f5-584d-94d0-209db6322142", "text": "oil paint , a sky viuw at nigth slowly turne in to day, cinematic motion 4k , 16:9 "} +{"id": "6002103", "video_name": "eecca3ac-1b0e-54f6-b1b3-8adf6277ddaa", "text": "capturing the ambiance of aged wooden shelves, horror,fearful, "} +{"id": "0003290", "video_name": "3b06de5e-5fb6-5b7a-8945-9463cd4dd90f", "text": "a picture of an indian map and jambudweep written in the center "} +{"id": "8003274", "video_name": "de617805-7e8a-5b14-befa-33fd721c5db6", "text": "closeup of old firefighter happy in night snowy mountains "} +{"id": "1003802", "video_name": "463b34d9-e1a3-5c7b-bd50-306d0777cf50", "text": "A lion on a rock at sunset, looking at the horizon, his mane swaying "} +{"id": "7002312", "video_name": "940fc226-b6b8-571d-a3f5-50b43127a3b0", "text": "beautiful iranian girl with red dress walking in cage "} +{"id": "0006741", "video_name": "3215e184-f7d7-566a-843a-4c0e79707ba2", "text": "storm x men dress as mariachin playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "3005324", "video_name": "b80b214f-9c16-565f-99ed-131abbd4d403", "text": "1950s arthouse style film of wizards sitting in a field eating cake "} +{"id": "0003126", "video_name": "377c9e52-fe65-5b4d-99c1-597e3a568a0f", "text": "superman rescues a childs amidst the wreckage and bomb explosions, portrayed in a 16:9 cinematic soft and painterly backgrounds with more simplified yet expressive characters "} +{"id": "7002807", "video_name": "af9e3df1-0f92-5a6c-b472-2f068ef74dfd", "text": "people are falling in trench ,fire in trench,medieval period,inspired by 300 movie "} +{"id": "7004279", "video_name": "0a32c302-ff22-51cc-bad3-7e93f3a940bc", "text": "Beijing, Temple of Heaven, film lighting Message: 1 Attachment "} +{"id": "4004918", "video_name": "f6b9beb9-1c23-5a1b-a6ef-ce7dc9bdb473", "text": "image of ancient roman olympic stadium "} +{"id": "2006837", "video_name": "e2fd32ad-713d-5990-9843-31e1255bdfdc", "text": "young man walking on an empty city street under the moonlight "} +{"id": "2005442", "video_name": "411bb900-0936-573c-b8ea-efb38e684d83", "text": "spongebob doing a funny dance in the style of pablo picasso, 3D art painting "} +{"id": "4004241", "video_name": "bf11dab6-3f53-56aa-b3c5-6ec58eb3961c", "text": "closeup shot of rapid strumming of an electric guitar "} +{"id": "2005064", "video_name": "4135e81e-bd69-58f7-a1d2-0dc9c075da75", "text": "A school in the mountains, five floors "} +{"id": "1004418", "video_name": "51aa489e-a3e1-5643-99fe-2c82db330776", "text": "man in the club drinking vodka "} +{"id": "6004808", "video_name": "bf917dcd-3005-551c-a62d-16c32f6fc5d6", "text": "picture a man lost in his dream "} +{"id": "2004020", "video_name": "a061398b-d141-54f5-b496-284d30d0bf9e", "text": "write a letter on the table "} +{"id": "0006400", "video_name": "2bd782a1-9e7d-591c-8b8c-16ff53af4f0d", "text": "CIVIL WORK CONSTRUCTION Message: COCHO BENITEZ (Font: MODERN) "} +{"id": "3005026", "video_name": "b601cdfb-086d-516b-bf50-1f0a93755679", "text": "futuristic coffee mill Message: coffe (Font: MODERN) "} +{"id": "2007541", "video_name": "e1d68b7f-e60c-5448-aca3-d0b0dfeced41", "text": "pretzel rain in a pretzel world "} +{"id": "0006457", "video_name": "2ce90abd-ae39-5670-b0de-e4a58c4ae185", "text": "an Indian man and woman thinking "} +{"id": "3003149", "video_name": "2941185a-f36a-52a6-8e13-dc8fb60fb18d", "text": "interstellar space ship going to hyperdrive "} +{"id": "0003915", "video_name": "45a9a27f-9c22-5d75-a232-21f01cf10f80", "text": "Pineapples rolling on a sunny beach. "} +{"id": "2006682", "video_name": "011709e5-9ccf-587c-8e66-6021fd628e73", "text": "walking 12 commandoes on top of a hill to the sunset "} +{"id": "7003881", "video_name": "70554738-672c-5395-a832-5cafd1a24731", "text": "poster reporting faulty equipment, report malfunction of computer and electronic equipment "} +{"id": "1004665", "video_name": "56b725c4-bd3a-5538-876c-82eaa28885f4", "text": "A girl who is carriend by a kite in the forest to the clouds. "} +{"id": "1006955", "video_name": "7f482d3a-9a57-5a4c-bbd8-3cb8e5a4fe33", "text": "lana del rey in Christmas santa hat in the snow laughing "} +{"id": "3003972", "video_name": "9715fd65-bc99-5ce4-8505-2e7616d039cb", "text": "A pumpkin jackolantern with Glitter eyes and smile "} +{"id": "0003793", "video_name": "437c5035-f780-58bd-82db-24f7a3412a54", "text": "A colony of ants rules humans "} +{"id": "6002018", "video_name": "8b458bcd-1e78-5404-bd1c-ed4a881bb4e1", "text": "Benny, now covered in leaves, attempts to stand up but slips and slides down a hill. "} +{"id": "2003020", "video_name": "1af4fa43-7c2b-590b-bec5-b1debd30dde3", "text": "Stormtroopers rush to deliver fresh pastries to citizens of the Empire while evading Jedi attacks, high detailed, 8k, sharp focus, intricate, action style, energetic atmosphere, uplifting mood, zoom camera lens "} +{"id": "2003962", "video_name": "81bc3d94-3402-54e2-9679-8c0ea982b8d5", "text": "a dancing mystical wizard in the snowy woods surrounded by animals "} +{"id": "1005969", "video_name": "6da8cb9e-5fa8-535c-bfd7-7c45df334012", "text": "Frozen in terror, the friends watched as the apparition slowly descended the stairs. The air grew colder, and the whispering intensified horror story "} +{"id": "3005167", "video_name": "8c11ebf9-acf5-594e-892c-b38020d847c2", "text": "tal to me mark wallat friseure Message: 1 Attachment "} +{"id": "4002771", "video_name": "6a9b094f-a650-5e1f-8a69-d7a50b899351", "text": "Margot Robbie as captain star trek "} +{"id": "3006723", "video_name": "4d5d9a6e-0cbc-513c-b8f4-fadf307c7c6b", "text": "blue whale fly across Melbourne CBD "} +{"id": "0004161", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "police officers dancing in the street "} +{"id": "0006851", "video_name": "34329682-bf51-53fc-8b27-dc28ecdc5873", "text": "3D cartoon,smiling,professional, wearing button up checkered shirt,blue sport coat, blue coat,blue eyes, facial grey scruff, slight grey short hair, balding, short haircut, distant out of focus garden background, sun on face,blue suit "} +{"id": "6004720", "video_name": "f5a146ff-bbd0-53e7-aa2b-83831a81e1ea", "text": "A robot is delivering ordered food at a restaurant shop 16:9 Movement "} +{"id": "4004522", "video_name": "386eade8-57f2-5cc9-96cf-1d6c92d954f3", "text": "stunning Cyberpunk art piece featuring a woman on a motorcycle "} +{"id": "2003336", "video_name": "67038329-c439-563f-a7f5-82e8321fe941", "text": "create post about What is the best way to advertise the video? "} +{"id": "4003614", "video_name": "24d80c90-8d2b-5549-a88b-16f88a25e203", "text": "a crowd of grandmothers almost knocks a man down "} +{"id": "2007228", "video_name": "ddb21770-9f85-5a9e-8bed-6f267e4b7596", "text": "little girl with long black hair and a tattered dress standing in a waseland hold a nuclear explosion in the palm of her hand photo realistic 4k everything is in motion slow pn in from camera on little girls face horror aesthetic "} +{"id": "7002027", "video_name": "92c291c5-ad0c-5d76-bf88-badc49ab5a52", "text": "found footage, old footage, of a man using real superpowers, 50s, detailed, highres, black and white, old video, details, realistic, real "} +{"id": "4004870", "video_name": "ca53d3de-7ffa-58d4-a1ac-ca484758759a", "text": "A video of a person using their imagination to create something new "} +{"id": "6004675", "video_name": "5c9d1854-7407-57e8-a78d-a6029b553fae", "text": "a landscape alive with the pulse of a hundred songs, a hundred worlds beckoning us to explore their intricate design. warrens of magic, gateways to diverse dimensions of sound and sentiment hint at the magical essence of human experience "} +{"id": "0004435", "video_name": "0906526c-73da-5cf3-b79e-4f90ee29ed36", "text": "arriving the Xiamen Baolong Pullman Hotel. "} +{"id": "2007289", "video_name": "952c0669-cdc2-5985-bb60-1b75845b1714", "text": "two friend in the garden doing tgardning in garden. "} +{"id": "1004618", "video_name": "55e36ae0-b987-5a33-a47d-d287d85b80e5", "text": "a book with blue covers opening its pages, on the grass, meadow with totally red flowers "} +{"id": "0005224", "video_name": "16dea3ba-a058-51a1-ab51-bb98f43c64e7", "text": "Create a realistic image of a young goth girl sitting outside of a gas station smoking a cigarette. Make her quite sultry and voluptuous looking. The scene show be set at night and during a heavy rain. She is taking cover from the rain. The scene should evoke a feeling of calm and relaxation mingled with the dark grit of urban life. Format HD, UHD or 8K "} +{"id": "7004453", "video_name": "2da8d8a5-4a64-566e-8b13-58ac50ec15af", "text": "Donatello from the Teenage Mutent Ninja Turtles fighting Leonardo in a pizza shop "} +{"id": "0003746", "video_name": "42ad433f-48ba-5725-b283-97b58bdb3fee", "text": "lazer beam coming from the sky burning cities ar 16:9 "} +{"id": "4002141", "video_name": "3bf70194-897c-54ef-875c-209184e988a0", "text": "alligator cartoon dancing vector design with white background "} +{"id": "0003954", "video_name": "00868764-1b7f-5e47-94ad-a2f849b5835d", "text": "a picture of a protagonist who is a warrior and has a legendary sword on his back and has dark green hairs and wearing a red robe and one eye is covered with a eye patch and has a scar on his left eye he is japanese and is a bit muscular. japanese anime style . "} +{"id": "8003979", "video_name": "08840006-b259-5cc6-90dc-b0e7891f9295", "text": "The dragon spits flames and soars into the sky "} +{"id": "0004765", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "marcul aurelius seating on a horse "} +{"id": "8002280", "video_name": "32db041a-7c6e-577d-925c-bc30c02181b0", "text": "school girl dancing, in dress, in school, in the style of pulp comics, romantic illustration, realist detail, 1960s, lively action poses, suburban ennui capturer, meticulous realism "} +{"id": "5001662", "video_name": "9786f60a-5339-54a5-8425-11b11c82ac3a", "text": "Moon rising over city horizon, blue background, bright lights, front view, clear, high quality "} +{"id": "2007625", "video_name": "958507e0-e5ce-5634-8acb-efe9b0f53295", "text": "Cinematic, 8k, psychedelic, absurd, apocalyptic scene with evil humanoid robots attacking a city "} +{"id": "0006968", "video_name": "35fa0640-7e6f-5260-b558-1aa38c163333", "text": "a person shoveling a mountain of snow "} +{"id": "4003684", "video_name": "fd22bac8-b07a-54fd-b6ea-1193c9207e2e", "text": "An octopus swimming in the deep sea, Canon lens, close up "} +{"id": "6003575", "video_name": "bde9ca4d-1fb6-5949-8f25-9681cc7561de", "text": "A cow composed of 0 and 1 "} +{"id": "3005639", "video_name": "9432a9c9-1aa6-5e01-86e9-ef38e006bed2", "text": "night sky with milkyway and shooting stars Message: marfa (Font: MODERN) "} +{"id": "8001559", "video_name": "12019866-36c6-5ee7-a53c-6f3e65219ec9", "text": "men jumping playing hopscotch in the middle of the street , creepy video "} +{"id": "3004049", "video_name": "86517853-344d-50de-9234-ae420e59907d", "text": "a deep breathing in learning world "} +{"id": "4003794", "video_name": "e2d1c94d-9793-5202-a5e5-c6ca47319d76", "text": "medium shot of tech CEO Chicano Gilbert Gottfried lecturing at a symposium "} +{"id": "0006828", "video_name": "33c6586d-b16c-5006-86b7-cfd78f8dbe10", "text": "a white bunny and a yellow bunny swim in a river. "} +{"id": "7002619", "video_name": "3d393981-cdae-556e-9256-31a764a7db43", "text": "argus from mobile legends became enraged and became immortal after which he did savage "} +{"id": "2005486", "video_name": "480c7a73-0111-5f02-b7be-452d9efe64dc", "text": "people dancing at a sci fi festival with cool robots and a space ship in the sky "} +{"id": "8003932", "video_name": "c70c972b-2b29-5135-a08e-a9227fe05480", "text": "Moroccan knightfrom the past , Realism, Photography, 3ds Max, High angle perspective, Large Format Camera, Spot Light, "} +{"id": "5001887", "video_name": "b291e868-c147-55d9-b469-64e2c8c88a9f", "text": "video The scene opens with our protagonist, standing alone in the vast expanse of space, facing a massive, ominous black hole. The camera captures the sheer size and power of the black hole, making the viewer feel incredibly small in comparison. As the protagonist gazes out into the endless expanse of space, the immense gravitational pull of the black hole distorts the fabric of space and time around them. "} +{"id": "3003199", "video_name": "c39497cc-6b82-53a0-9d93-a8ce58b199e4", "text": "train moves forward wheels turning slowly, snow flurries "} +{"id": "0004188", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "anime styled very attractive girl in a swimming dress in a beach "} +{"id": "0004971", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "wide angle of heroic shot of city and mysterious sillouhette hooded feminine figure creature coming out of shadows, demonic cinematic lighting, crushed shadows and blue moonlight, yellow street lamps in the distance, high quality, 4K, "} +{"id": "4003409", "video_name": "ab537e20-ea3b-5728-931d-bc373984b2a2", "text": "Two girls sat on the rooftop chatting and gazing at the city. "} +{"id": "8003331", "video_name": "740dd4bb-73d3-5b4a-b1ac-904606754043", "text": "Elon Musk give me one AI beautiful robot "} +{"id": "6002229", "video_name": "4ed24421-4441-59b2-aec4-973fb7b174fd", "text": "People inside a house make a pile of wood near the door of the room Message: 1 Attachment "} +{"id": "0005976", "video_name": "244654d5-a832-51c6-a294-842770ba823c", "text": "guy in the studio making rap \nmusic "} +{"id": "1006288", "video_name": "732b0704-4a9d-51db-b4c3-e70d4fb934be", "text": "brother and sister gifting each other "} +{"id": "4004098", "video_name": "c8d52940-16ad-58b7-b92b-c459b6aaba3d", "text": "In the year 755 AD, there is a leader known as An Lushan who is engaged in a conflict with the Tang Dynasty in China. I would like to visualize this battle where An Lushan and the Tang Dynasty are in combat using swords "} +{"id": "4002489", "video_name": "e7d9ef86-f844-518c-a93f-1b4d36d92c8a", "text": "anime ghibli style children brushing teeth "} +{"id": "6003416", "video_name": "7c2dc1d8-470d-5cab-ba34-93f3ea57976a", "text": "boy is coming,blue shirt blue pant ,shoes "} +{"id": "6004740", "video_name": "88b740df-da82-52a0-8395-d553fa0a7776", "text": "kid sam in blue t shirt and shorts was standing near the railway track along with the old lady a middle age man and his wife met kid sam "} +{"id": "4003311", "video_name": "dcd4a24f-efc0-58ac-a2b1-52154ca808eb", "text": "A clip of Chaitanya, a young indian and impoverished boy, sitting with his family (mother father sister) in their small home, eating food. theme happy "} +{"id": "7004182", "video_name": "d9702cd4-75b1-5523-9166-32967e6a8551", "text": "the eye fully opening, reflecting the rising sun on the horizon. "} +{"id": "3004869", "video_name": "a3e9c84c-378b-511d-9698-06adc580d0b7", "text": "Lion holding a martini while sitting on crocodiles back in a jungle river "} +{"id": "1006702", "video_name": "7acdc41e-52df-55fc-b25c-753e09869ba7", "text": "star wars movie. han solo run shooting. tatooine town "} +{"id": "1003749", "video_name": "45269191-2b7b-5ac9-af95-ef6836b7d597", "text": "A picturesque meadow with vibrant green grass and colorful flowers. Rosie, the brave little rabbit, is seen hopping through the meadow with a confident and determined expression on her face. "} +{"id": "2003931", "video_name": "e684cd26-7555-55d0-8ec3-91af39cfbef0", "text": "Depict two girls wearing kimonos pulling omikuji at a shrine. Illustrate the scene capturing their expressions and the serene ambiance of the shrine visit. "} +{"id": "1005609", "video_name": "6722ab9a-c4a3-5412-81aa-8712e2550bdb", "text": "postman boy blue outfit, cap postman outfit, bag Portman outfit, walking in the snow place, butterflies, snowfall, "} +{"id": "1004700", "video_name": "575c038a-0a84-57be-b8e4-6f9ba4ac39ba", "text": "Gautam Buddha was traveling on foot with Buddha and his disciples monks . Message: buddha (Font: MODERN) "} +{"id": "1003280", "video_name": "3c53fd98-4313-5c85-8b3e-d1bb18711842", "text": "do not modify the original image, ocean moving, seaguls moving "} +{"id": "3006657", "video_name": "3ca12265-2584-59e1-8a08-0cafcdb820a8", "text": "A character concept art of a medieval masked archer in action, dark atmospheric historical, black background, detailed digital painting with a focus on textures and materials, 4k, Octane Render, Unreal Engine, Artstation "} +{"id": "3003697", "video_name": "ee4cab14-9ea6-5347-b613-1e8c5744cf59", "text": "The older sister was very afraid because she did not know where she would go and what she would do if the house was sold, so she begged her sisters a lot not to sell the house, but they refused and sold the house and took their share without thinking about the fate of their older sister. "} +{"id": "3005568", "video_name": "96f952b2-1cfb-50bf-9370-7ac1d0ad7ca6", "text": "a blue monster of the lake, derribates a chopper "} +{"id": "3004873", "video_name": "81a803e9-7b67-52b5-a591-6e6299a2451c", "text": "child looks up as gold confetti falls "} +{"id": "7003005", "video_name": "8f696766-678a-59c9-96b2-3cac76b3b0a4", "text": "Let the skirt float up and the petals fall down "} +{"id": "2007329", "video_name": "b54bfa6f-ec95-5214-bebd-88527f1ef54e", "text": "Haxan Alfred Stieglitz black and white 1930s "} +{"id": "0006825", "video_name": "33b63cbb-9c5d-5905-ae87-a5032fd34937", "text": "man, male, Indian, 30 years old, good looking, smiling, modern, straight look, brightly dressed. \u041d\u0435 speaks friendly and smiles. "} +{"id": "7004750", "video_name": "9b314609-00ba-5b32-92ad-e15923500925", "text": "little do they know their friendship is about to be tested.hyper realistic cinematic 4k "} +{"id": "1003638", "video_name": "430cb24c-1700-5147-97ff-b1dcf448fff9", "text": "moving image jesus christ walking into cologne cathedral "} +{"id": "3003742", "video_name": "b54bebb0-f023-583a-90e9-ad3e07a7a581", "text": "stunning club party laser show inspired by starwars "} +{"id": "6004291", "video_name": "1ba2102a-4245-5021-8f9a-340625af75f3", "text": "An animal from the future is scary, ar 12:16 "} +{"id": "7003325", "video_name": "1e45e96e-f928-513e-aa7b-070c2c5a7b81", "text": "a girl giving an old lady a key in anime style "} +{"id": "7002889", "video_name": "bbc18446-43c7-5283-8aa0-a16db1cd09b6", "text": "a dog with a hat sitting on a chair, house on fire "} +{"id": "6004350", "video_name": "d73aba89-0a30-5516-aad1-21edce8948e5", "text": "chibi A loving couple rides each other on a motorbike "} +{"id": "8002449", "video_name": "4e56b695-baff-528f-9e54-6c79e6e391d1", "text": "Watermelon flies into the screen Message: 1 Attachment "} +{"id": "4004580", "video_name": "ca54170e-3973-5eff-8d42-6042dea42863", "text": "A big sandstorm in the sahara desert Message: Digital Brain (Font: MODERN) "} +{"id": "0004279", "video_name": "06418933-7c94-5e46-a2e7-ab0f22a2ed18", "text": "The outside of a church with a rainbow flag hanging around the entire building. "} +{"id": "0005595", "video_name": "1da98552-3c76-56cf-be8c-f242e8f44628", "text": "Looking from the sky down at the pyramid, you see a man looking up with a moustache, elegantly dressed in a suit and top hat, greedy laughing back at the viewer. While poorly dressed and dirty people are being crushed trying to sustain the weight of the pyramid at the bottom, others are struggling to climbe up by stepping on peoples heads, some of the people are falling off. "} +{"id": "1006692", "video_name": "7aa34865-f9a5-52d2-ae1c-091f2beb7195", "text": "flaming Firestar Superhero riding fireslide to twirling tornado, moving, blinking, lights, 8k, UHD "} +{"id": "2005273", "video_name": "43b24f9b-0468-5009-9114-d95522f47386", "text": "an elfic woman with fluttering green hair opening her red eyes, looking ahead, she is floating and moving her hands into a mudra. there is a natural light energy spinning around the woman really fast. a dreamlike atmosphere, a beautiful light. hyperdetailed. Realistic. Motion 2. seed 500. gs 24 "} +{"id": "3006377", "video_name": "b750d68c-b816-59ac-8368-09490347063e", "text": "They smiled at each other, and a feeling of warmth and connection enveloped them. "} +{"id": "3004715", "video_name": "fd357b9c-2603-5338-935f-5476bcf93fbd", "text": "Boy running through a field of butterflies in ireland "} +{"id": "7002780", "video_name": "c9b6ed0a-38bf-5866-ae9d-11a8b8de0b8b", "text": "Thanks for watching, please like and subscribe our channel for such videos in 3D animated and disney "} +{"id": "7002216", "video_name": "fe9bdf75-6964-588a-8183-c7ac16ae9e55", "text": "milk is turning into curd by micro organisms "} +{"id": "0006266", "video_name": "29a8b538-04e6-54de-ab12-9a6b0be4fd68", "text": "A transformer is a static device that transfers electrical power from one circuit to another without changing the frequency. It operates based on the principle of Faraday\u2019s law of Electromagnetic Induction1. The construction of a transformer involves several components, including: generate 4k image "} +{"id": "3004164", "video_name": "302520a5-49d8-5372-860b-d45e8a6ccb52", "text": "skeleton male and female meet and love eachoother "} +{"id": "8001925", "video_name": "cf796703-64d1-5c15-836a-52de2cb20e68", "text": "Zoom in on one particularly bright star that becomes the focus. "} +{"id": "7003084", "video_name": "94368115-eee0-5282-a7d1-ec4e04fdcb89", "text": "top view of a wall with a door separating 2 room with a 25 year old man looking through the hold in the door from one side and a young girl looking through the same hold on the other side "} +{"id": "6002851", "video_name": "3660ff20-146b-57c6-ac02-5583ca3105f4", "text": "The protagonist walks aimlessly in the rain, streetlights casting their shadow, reflecting inner wandering and confusion. "} +{"id": "7003532", "video_name": "4efb7b1f-2d66-5601-a502-68748a0f9094", "text": "create a clay puppet being born and starting to walk in 3d, maximum quality 4k "} +{"id": "2004056", "video_name": "f8ad3437-62fc-5665-9fe7-e3b64b32cd18", "text": "animated earth view from the sky "} +{"id": "2005717", "video_name": "5881b5ee-81a9-5199-8a9f-800dcecb6fcf", "text": "realistic humanoid samurai with katana, in white clothes and snow scene "} +{"id": "5001213", "video_name": "93ec2f78-a492-5a9f-98fd-190b8a18d13a", "text": "a walking french fry with flip flops on , realistic , incredible , high res, smooth animation "} +{"id": "0004413", "video_name": "0875152e-16ba-5939-b26f-7ed74379dde9", "text": "beautiful, young woman formally dressed in a ball gown "} +{"id": "0003282", "video_name": "3ad16a7a-b545-5732-9c31-3a2bcaa043b0", "text": "shot of YouTube like,share, subscribe, comment "} +{"id": "2004290", "video_name": "6af41298-3e21-554f-a347-99112b164237", "text": "video of an anime man sitting on the top of car with a gun, doing fun "} +{"id": "2003320", "video_name": "256a6091-25f5-593e-a340-558ef70477fe", "text": "Show a series of scenes depicting the passage of time, using visuals of flowers gradually wilting or remaining fresh over the mentioned durations.9 "} +{"id": "7004245", "video_name": "9ae3394b-3da4-59d7-93e8-ea1a302eec7b", "text": "At high temperatures, red oily liquid flows "} +{"id": "0005563", "video_name": "1cf6b570-b4d2-518e-9e46-b171751484ce", "text": "one mouse eating cheese, 4k, 8k, hyper detailed, cartoon, anime, disney "} +{"id": "3004033", "video_name": "a1f6b8cf-5d10-5cce-883b-5dead0ff0e3a", "text": "create space station , make cryogenic chambers "} +{"id": "4002666", "video_name": "9d9b1769-e656-5eac-a6a4-700e46168332", "text": "a tall lean male detective dressed in black with icy blue hair, moving through a brightly lit overcrowded city, on a futuristic space station "} +{"id": "8001679", "video_name": "7a276506-1539-5407-a019-8759e66a2b29", "text": "Engaging exercise routines set in the midst of nature, showcasing the beauty of physical activity. "} +{"id": "1005001", "video_name": "5c706df2-3f58-51db-971c-aef2b6b457e6", "text": "Futuristic cyborg humans walking through a city "} +{"id": "7002055", "video_name": "54c7b2ce-c8c1-5fae-acb5-d2ad3a81fb92", "text": "Dark Fairy leads a hunter down a path "} +{"id": "4002487", "video_name": "8ecd3659-6b19-5269-8d8f-db3823039f17", "text": "Spaceship door open, Zoom shot, motion 2, close up shot, UHD, 6k "} +{"id": "3004587", "video_name": "08d87d8a-7d17-59e4-830a-3521664a1f5f", "text": "orchards on top of hills with a parked car in the middle "} +{"id": "2003206", "video_name": "4f913972-a5e4-586c-a854-a77804214c32", "text": "A vetrinary sonographer performing ultrasound on a pregnant giraffe at a zoo in 2045 "} +{"id": "8002512", "video_name": "51863a5a-768d-518a-acf4-e6e08b1281ed", "text": "diamond encrusted phoenix flying over the mountain skies, shimmering glistening in the sun "} +{"id": "0006214", "video_name": "287dae1f-c004-54dd-b6bf-d50cf8d3a11d", "text": "a crowd with many food trucks and a festival in a city background in a Disney Pixar style 3d animation "} +{"id": "6003689", "video_name": "02fee463-756e-5528-8592-3d9089a4f404", "text": "raindrops falling, sunflowers waving in the breeze "} +{"id": "8003232", "video_name": "bcf3a357-9044-573c-aad8-32b7d6997022", "text": "Create an illustration of Luna and Leo surrounded by a vibrant meadow, collecting stardust, moonbeams, and comet tails with their magical friends. The scene should be filled with sparkling flowers and cheerful cosmic creatures. "} +{"id": "7003957", "video_name": "8c51099a-7c96-5509-9c69-61f429dd4c47", "text": "lovely indian girl dancing, full crystel clear body, films looo, indian woman beautiful indian actress dancing Not bluer, all body movement, beautiful moving hair "} +{"id": "0003621", "video_name": "40acce6b-ebda-5d87-8688-ecec5d41de28", "text": "japanese samurai in a battle with robots "} +{"id": "3006012", "video_name": "5e555e90-cfd8-552f-8fec-2afcfa731f81", "text": "3d animation young lady with blue eyes walking on the road "} +{"id": "2004659", "video_name": "3e7bd97d-153f-5d05-9a74-2470c6977da6", "text": "a cave full of creatures with faces lit up with blue light "} +{"id": "7004595", "video_name": "722aaa01-64e9-5bad-8c25-5c60bb1a81d0", "text": "Shots of compasses spinning erratically when used in the forest "} +{"id": "3005685", "video_name": "19e8bb85-90c7-540c-8c18-87743d02d441", "text": "a robot holding a single milk glass "} +{"id": "1005785", "video_name": "6a7de0f7-a3ec-5983-9538-1c701bbd8c7b", "text": "snake eating a fruit, 3D animated, Animation style, 21:9 "} +{"id": "3003433", "video_name": "de0f7180-3f66-5a49-9c35-7cb0dcad48f7", "text": "Imogen Poots puts on a space helmet "} +{"id": "7002741", "video_name": "7d74078f-4951-5a28-a449-b2dc8a8a536c", "text": "A wonderful waterfall dropping in a deep blue lagoon. must bu photorealistic lasting at least 15 Sseconds. "} +{"id": "2003458", "video_name": "0e336b9d-bd6a-50d9-a9a7-6a27131e3eeb", "text": "A darkly lit surveillance hall with many screens showing changing surveillance images "} +{"id": "6002384", "video_name": "290cdd5a-662d-59da-b47a-ba9830c4a078", "text": "first person perspective walking inside a closed supermarket with nobody there with dim light "} +{"id": "8002397", "video_name": "82985496-fde9-58d2-8ffb-77ac202ee96c", "text": "A frenzied Muppet autopsy with steam punk medical experiments. intense action and occult themed "} +{"id": "4003998", "video_name": "38377861-5ba8-5980-98c9-f955dec69be2", "text": "anime girl is sitting on banana in beach "} +{"id": "1004147", "video_name": "4cce8063-6791-5738-aa15-006d281abe9c", "text": "a video of zoom meeting teaching AI and Healthcare "} +{"id": "2004943", "video_name": "3a7c1643-01e5-5f35-8c79-40285e4e55f5", "text": "Create a crazy realistic hip hop scene with a character made up of millions of angels and demons in a hoodie and face made of lights and shadows making hand signs West Coast East Coast the "} +{"id": "8003662", "video_name": "494e31d4-7917-5952-abba-decd9e0e4477", "text": "the orc looks at the knight, the knight hits the orc with a sword "} +{"id": "2006415", "video_name": "51e29942-6fca-54cb-a656-2555d4feb8cf", "text": "Spiderman is supposed to move Message: 1 Attachment "} +{"id": "1003742", "video_name": "451493d4-18bd-534c-bece-27f6f5a0da9c", "text": "different seasons found in each climatic zones and some countries that are found in these climatic zones "} +{"id": "0003333", "video_name": "3bcbc49c-ecc7-545a-a70c-5f867acc8fe4", "text": "Visualize the living room transforming into a chaotic scene with flying objects and the Cat in the Hat orchestrating the playful madness. "} +{"id": "6002894", "video_name": "9dc1d46b-3ff9-5e54-8ebb-0eae961e3332", "text": "the epic battle evil AND god "} +{"id": "8001223", "video_name": "48d8bf1a-0f2d-5115-a08a-3e7751aaf12c", "text": "anime, jujutsu kaisen, samurai champloo, cowboy bebop, hiphop music producer with headphones, music studio, music producer, making music, psychedelic vibes "} +{"id": "1003745", "video_name": "451a6fe5-a307-53e6-a0f2-0800fb7234b7", "text": "realistic looking, unsettling giant underground cave with dusty shaggy brown carpet and hoarder grandma furniture, creepy, boxes, jars, hoarder, dimly lit, unsettling dark "} +{"id": "7004736", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "But amidst the daily grind, her heart yearned for something more. "} +{"id": "8001960", "video_name": "cf341a00-8fa0-55c0-8978-4deb47f83bb9", "text": "a video representing fitness workout with a girl doing workouts "} +{"id": "6002689", "video_name": "1e394800-4bdb-576d-b237-365acb8af22b", "text": "photorealistic image of a beautiful 20 year old human girl head mixed with an ai looking like a cyborg "} +{"id": "6003006", "video_name": "25d30ee2-f533-522d-89c5-337943dd515b", "text": "beautiful tree in the middle of the galaxy, in the background a lot of star in shining, high detail, anime style "} +{"id": "6002733", "video_name": "c5230c34-8bba-56c2-991a-a9db2f70b29e", "text": "astronaut suit helmet made from felt fabric yarn and cardboard "} +{"id": "1006584", "video_name": "78a08778-a7f2-5681-af12-d92233a56259", "text": "3D Animation a donkey drinking water at the lake with other animals of forest "} +{"id": "2006675", "video_name": "1b46d5d2-a56e-5de6-90ed-02c923f17e71", "text": "a young prince looking the dragon egg "} +{"id": "1004621", "video_name": "55eed0b9-9abb-51ba-be16-1cc28f52feb3", "text": "labirint image with one entrance and 4 possible exits. Only one path leads to one of the exits. Other three exits are sealed somewhere along the path. image from above. Top view "} +{"id": "2005209", "video_name": "5540f85a-556d-5819-a436-ca82f93c720e", "text": "A man is talking into the surveillance camera above in the house and he is very afraid at night and there is a very real, terrifying alien behind him "} +{"id": "1003507", "video_name": "40d57a43-1550-5d90-9bed-921d4deaf183", "text": "Toyota 86 is driving on an empty road in the evening "} +{"id": "8003368", "video_name": "eb1df4a4-42ac-5a98-9aad-30154477ede1", "text": "There lived a lion in a forest whose name was Raja. He was very big and powerful. "} +{"id": "7004317", "video_name": "7afc6859-03da-51e6-a935-02cae91abca4", "text": "a man floating through various universes "} +{"id": "6004442", "video_name": "cb7bd4e1-a697-57fe-b7a0-b2d6641ab721", "text": "Disney princess in Studio Ghibli style "} +{"id": "8003249", "video_name": "f8f73443-9e7e-5fbb-a13d-680bdf18fd73", "text": "muscular man flexes and sighs, candelabras flicker "} +{"id": "8002775", "video_name": "9f963635-c9a0-56c8-ae97-b68e690bb0ef", "text": "a wispy specter, wraith, emerging from a closed door, very tall, glowing eyes, hunched posture, dark hallway "} +{"id": "7002936", "video_name": "f360e7a9-54d7-5695-9784-4b04b795fb8b", "text": "1\u0441 Gives fruit of the same, anime "} +{"id": "2004521", "video_name": "39283e74-b13e-5119-892c-e9dc865238fa", "text": "Selena Gomez splashing paint on canvas "} +{"id": "0004240", "video_name": "05a1f9fb-f34d-53c3-8a7c-c0e47e51cd60", "text": "VR Interface for Remote Work: Create an image of a person wearing VR glasses in a home office, fully immersed in a holographic workspace. The assistant helps organize files, schedule meetings, and manage tasks within this virtual environment. "} +{"id": "4002978", "video_name": "18e99e60-397a-565d-9e2d-1dfdb8190176", "text": "A cute cartoon cat on green screen, moving cat "} +{"id": "1006908", "video_name": "7e581277-6cc5-5754-aad4-80e0c91d8ea8", "text": "every family member happy to see new born fairy with beautiful wings, perfact sky and light "} +{"id": "8003351", "video_name": "3058ffc4-7804-5dbc-9801-09f290f59a1c", "text": "Epic showcase of an heroic android short before he rush into the battle. "} +{"id": "2003444", "video_name": "fcbf439b-0de8-55ab-954a-69f1f9757c4b", "text": "arty flat graphic design poster, mechanical movement "} +{"id": "2004033", "video_name": "f2a2e14a-1d2f-5383-be70-f3fca243458c", "text": "shepherd pointing to sheikh cilli to bring his goats to jungle "} +{"id": "2005411", "video_name": "b3cea14f-7e6d-5865-9caa-c6ff75c069c1", "text": "a cinematic style video of a missile flying toward an fighter aircraft "} +{"id": "1006670", "video_name": "7a2212e8-1dc2-5531-ba60-cf95aa65b817", "text": "view of landscape moving in the order: grass land to river to flower forest "} +{"id": "4002218", "video_name": "ca89b819-9a10-5861-9889-6c91d5b3f410", "text": "cinematic view of a man holding a katana "} +{"id": "6002846", "video_name": "f46084f8-cdfe-5976-93b7-e88fa1947c81", "text": "establish their discovery of the elysium facility "} +{"id": "3006959", "video_name": "053d0b64-a799-558d-a42d-92ce5e5c3440", "text": "It was a dark night and there was a table in the room with a notebook open on it "} +{"id": "3005052", "video_name": "63248dc1-18ac-5c55-aee4-e75df692e23c", "text": "Paris in 1932 Cartier Bresson style "} +{"id": "3005123", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "Pixar style animation of 2 friends. Their hands are waving at each other "} +{"id": "2004928", "video_name": "7af92b95-fa3a-5131-a466-b4782ae99f7c", "text": "A futuristic medical protontherapy particle accelerator room depicted in a Pixar 3D animation style "} +{"id": "7004309", "video_name": "3bc43552-60f1-59d9-802d-903a87d366b0", "text": "funky really nice Christmas and people signing and angels "} +{"id": "8002487", "video_name": "39f70800-8aa6-583c-9db1-e79325202f2d", "text": "marilyn monroe dancing in a club, perfect proportions "} +{"id": "7003771", "video_name": "f9bd1c72-cc0a-52aa-aa03-bd58616979ed", "text": "Fairuza Balk with black ram horns in mirror "} +{"id": "1003660", "video_name": "4365930a-fa8e-53a5-99d4-8d346fe753ad", "text": "pretty woman running in the park high quality "} +{"id": "1003619", "video_name": "42b5dec9-8a3f-5aa1-933c-d860948bccb6", "text": "Meet me, Barry, the nicest banana in the garden. Today I have something exciting to share! "} +{"id": "7002708", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "A golden lion king overlooking the divisions "} +{"id": "2007793", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "flowers coming out of a high fashion handbag, white background, studio lighting "} +{"id": "2005562", "video_name": "b882facf-a8a2-568c-89c7-58ba6b1ec12e", "text": "a hand is taking some popcorn from a disco ball bowl in the disco "} +{"id": "2003078", "video_name": "cea98b74-f3e1-5e38-b92e-69991ce6eeca", "text": "Robot made of guitar parts walking through Enter the Void movie scene "} +{"id": "5001640", "video_name": "9bf0c6ae-ace8-5c49-94b1-e90738bffada", "text": "blue whale swimming in the ocen "} +{"id": "3003489", "video_name": "258213cc-660a-51ff-b488-9f020b45de4c", "text": "A sea otter floating on its back, cracking open shellfish. 4k, hd quality. "} +{"id": "2007460", "video_name": "9eb3d421-4ae2-575c-b41e-e26ce7d40d8b", "text": "A little girl runs on the beach in the evening "} +{"id": "6004537", "video_name": "3ae02cda-a62e-5a24-9b3f-7a8d63204830", "text": "Generate pictures Message: religious beliefs (Font: MODERN) "} +{"id": "7002165", "video_name": "7ab01730-9a6a-5412-a850-d1d09302a14a", "text": "a newborn fledgling sparrow came into the world Message: 1 Attachment "} +{"id": "3003887", "video_name": "913f63ed-949e-59f3-94d5-521dbed2b75b", "text": "nuclear explosion on an alien planet. Realistic. Cinematic. "} +{"id": "8001199", "video_name": "20febced-4ec0-5796-8429-4a29ea429642", "text": "abstract city and beautiful woman undress "} +{"id": "8003286", "video_name": "ec1755cf-bb58-5a9c-9373-b3de883903c4", "text": "Point of view of burj khalifa top "} +{"id": "3004832", "video_name": "e74c289c-3771-531a-84b1-40df54f65907", "text": "Anton Lavey style character vampire good night "} +{"id": "3005393", "video_name": "e6d1b716-1db4-5ac8-a0a9-3cebacefd18c", "text": "The majestic wings of monkey, the wise old elephant, flap in slow motion as he communicates with the birds. "} +{"id": "3006666", "video_name": "0cf21965-e3a3-59cc-9875-279eb5196e35", "text": "in 4k quality, extreme detail, a wide angle shot, a girl sits beside a round window in a spaceship, with stars shining through the window, in anime style "} +{"id": "4002019", "video_name": "7804c577-0ba5-5c87-b5fe-3932eddcfa72", "text": "bloodborne videogame turned into a comic book "} +{"id": "4003910", "video_name": "9f9cde13-63db-581a-a0db-829d4a92bc9c", "text": "beautiful sunny day at a cheesecake factory restaurant "} +{"id": "2003858", "video_name": "1c906434-3dd8-503e-b642-10da40038f52", "text": "Rustic Elysian Fields Interior in view side shoulder "} +{"id": "0005243", "video_name": "17262d50-d55a-5dc6-85a8-ed3a2b91bcf6", "text": "In the cosmos floating stars of different colors in full HD, 4k, while meteorites pass by "} +{"id": "0006860", "video_name": "345b57f6-161b-5bbd-bac0-b6f35f62cfee", "text": "Giant lava monsters reinforced by volcanic power, spewing flames and lava, destroying the city,Giant monster, monster, destruction, de facto "} +{"id": "2007230", "video_name": "efe29624-43b7-51fd-b036-4f301f720cc8", "text": "city skyline by the sea in to night view in sky with stars and paradox Message: Berna RG (Font: MODERN) "} +{"id": "3005481", "video_name": "d79be8e5-f2b4-538f-9973-42a35e56a640", "text": "indian village house a devoted festival decorated with flowers "} +{"id": "8003488", "video_name": "b4e60888-4af1-536d-8f06-e6ddd30e8776", "text": "create a video of dragon fighting a godzilla in a city "} +{"id": "8001937", "video_name": "2f1df4ae-7a31-5406-bfd9-63b13d0bd48e", "text": "a female rapper in the booth rapping, cinematic video, dark room, one source of light "} +{"id": "6004331", "video_name": "c556ef9e-f4ee-58b5-a7bf-a965d3701f16", "text": "1990s cominc art Iggy Pop album in the style of Charles Burns "} +{"id": "3003848", "video_name": "794377d2-e768-51a8-88df-c9387db2e9e6", "text": "man at the mountain top, clouds moving "} +{"id": "4004164", "video_name": "b2d36589-d978-5b60-9e73-58eec32bd03e", "text": "many octopus rioting and battling against cops, slow motion, black and white, high contrast "} +{"id": "7004331", "video_name": "e25bd9ef-a615-53df-8c08-4fbb58d9cceb", "text": "apolacyptic world after global disaster, but there is light of hope, a woman dressed in ripped jeans and shirt with bag on back, and handpipe in hand stand (view behind her) and smoke rising from buildings "} +{"id": "3005963", "video_name": "d065dc29-6338-5b97-9248-7adbe3d551a3", "text": "disco balls rolling in a jungle with animals running "} +{"id": "4004126", "video_name": "76624f0e-50ee-52f1-ba2d-93ea94dbbd29", "text": "a rose opening in the morning of rail "} +{"id": "8001402", "video_name": "f9c2c6aa-3a5c-5a55-a31d-1078771fe8b6", "text": "a person sitting at a table with headphones on working "} +{"id": "0006223", "video_name": "28a298e9-0630-5587-ad03-e9e93c6d571d", "text": "Thousands of computers make up the Internet "} +{"id": "1006678", "video_name": "7a61e2c6-33e2-5fa8-ac1c-fa73c14d5664", "text": "On Christmas Day, A girl walks down the road "} +{"id": "1006772", "video_name": "7bfa4968-24ba-514e-8a05-77ad148ab7e8", "text": "A group of Asian entrepreneurs are having a heated discussion about AI in a conference room. Some are excited, some are in the architecture diagram, and some are thinking deeply. A smoothly moving shot, the final frame is capitalized ai "} +{"id": "4004236", "video_name": "6be93629-699c-59a7-aaec-6e3feed40b1c", "text": "Full body portrait of a woman with flowers in her hair, digital fantasy character, brown haired girl, beauty, detailed realism, detailed clothes and face, realistic body features and face, magical aura around her, young Miss "} +{"id": "1004189", "video_name": "4d7a5a18-8f90-589e-97fa-8b954d346500", "text": "A bustling street in Delhi, with vibrant colors and diverse crowds. The atmosphere is alive with energy, capturing the essence of the city. "} +{"id": "3006825", "video_name": "20ddeec7-473a-5191-9e0f-d707d000db1a", "text": "A shark swimming back and forth "} +{"id": "6004274", "video_name": "f35a2e55-7be3-5fb3-8026-46691a7ffa17", "text": "A robot dancing on the water while holding a rabbit. "} +{"id": "7003568", "video_name": "4daf04b9-d56d-576f-a8ad-8f76dc8896f6", "text": "A car turned into a girl "} +{"id": "0004664", "video_name": "0ce5b990-05b7-5677-a3ce-55d37d3537b9", "text": "the lively rabbit , gentle bear and curious squirrel They all lived in harmony, sharing the beauty of their snowy home. "} +{"id": "4002644", "video_name": "eee4cf3b-0710-53e3-8cf4-44a26cb0bf56", "text": "a taxi at the rush hour in New York "} +{"id": "4004209", "video_name": "1ac5b604-9291-5ff1-81d4-ba24347fb572", "text": "people of all ages gathering together "} +{"id": "2003806", "video_name": "b0e4d7cf-c6c9-5300-846b-02a9c8be5451", "text": "The lion sleeping under the shade of a tree, while the mouse curiously peeks out. "} +{"id": "7004060", "video_name": "600433fb-6166-546c-ad7a-e94cf9378e37", "text": "A person sitting with the light dimmed with multiple points of light "} +{"id": "3006145", "video_name": "04cf1e91-e49f-557d-bdb2-12cd34b953f4", "text": "a wizard dancing in a forest, 3d animation style "} +{"id": "7002913", "video_name": "304de8c2-2e33-5256-8214-d5ae03399b4b", "text": "There was a fire, and the AI \u200b\u200brobot replaced the firefighters at the fire scene to help rescue the trapped people. "} +{"id": "2005325", "video_name": "6e97fb50-67c4-5f5b-98e5-6c8bf250dd47", "text": "beautiful city full of skyscrapers Message: TE AMO (Font: MODERN) "} +{"id": "4003439", "video_name": "ffb60dfa-d891-5114-9624-2af8a28e6aa6", "text": "3 teenage girls meet at hostel for first day . one of them is a hijab girl . and theyare talking . i want this as a cartoon video "} +{"id": "2004116", "video_name": "6c7f2c47-6e3c-5d23-a235-cf4892f5b037", "text": "\uff1aA beautiful Asian woman, dressed in a white long dress, is eating an apple. She has black long hair, big eyes, attractive facial features, and the image is in high definition. "} +{"id": "5001727", "video_name": "47f5f390-8bf3-539f-8e55-2e71deefa673", "text": "Sailor Moon, warrior costume, bright colors, long hair, big eyes. Determination, gentleness, small animal companions, magic wand,. Bravery, positive energy, hope, vitality, magnificence, roof, light, city background "} +{"id": "0004825", "video_name": "0fd604f0-1971-569f-88e2-6d761699c9c4", "text": "a modern robot walking in a runaway fashion show, in the middle of paris. The crowd is all wearing pink in contrast with him wearing black. Video must be 4K, and long . "} +{"id": "7004251", "video_name": "2586bd1c-8bda-5bad-b63f-ed98dd0c525d", "text": "a Pink Lion Look in front the camera he stay in front of a dark forrest "} +{"id": "3004226", "video_name": "e7b1ce1d-1d08-5170-a1b2-1a8210b7b4f5", "text": "In the jungle animated lion was sleeping under the tree "} +{"id": "2004832", "video_name": "21b83f60-11ff-5cf7-a90c-3df753f1711d", "text": "private Patrick read the letter from Abraham lincoln "} +{"id": "7002235", "video_name": "22952e0d-525c-5650-99c4-4aa139ee8894", "text": "In the attached image of the house, the lead color of the exterior walls changes to a navy blue color "} +{"id": "6004872", "video_name": "0fdd2c84-44b7-51cc-a476-38d0f278e417", "text": "Antimicrobial and inflammatory processes work closely together in organisms to maintain tissue health and immune balance. Antimicrobial is a defense mechanism designed to directly combat pathogens, while inflammation is a complex response of the immune system designed to clear damaged cells and promote tissue repair. "} +{"id": "4002838", "video_name": "8e814a4f-7aab-55ad-9e86-189ae257229c", "text": "Rocket standing on the launch pad engines running "} +{"id": "1006058", "video_name": "6f436d03-d110-5434-8526-8f234a358a6c", "text": "wizarding boy spells a magic spell "} +{"id": "3003775", "video_name": "8fdf8c2a-49d1-577d-b02f-699122be767d", "text": "a hamster in a suite drinks wine, realistic, detailed "} +{"id": "1006292", "video_name": "73355ad9-8449-51a9-89cd-b23f4c071ed7", "text": "street view from early 1900 in the style of wes anderson "} +{"id": "4004408", "video_name": "7b3264e9-114e-5547-8b23-6b7f5fee6eaa", "text": "beautiful mermaids dancing in a techno party "} +{"id": "2007332", "video_name": "8b5d1720-e828-5725-bf75-bc687e8e527e", "text": "man on fire, in gas mask, walking towards camera "} +{"id": "4002134", "video_name": "26ae9f24-b025-5429-921c-4e7ecc953a4f", "text": "red sight pointed at a target red dot sight "} +{"id": "2005953", "video_name": "d6371675-1afc-5adf-bede-32c52c9ea7a1", "text": "chocolate fish walking out of geyser coffee maker, running away, 4k "} +{"id": "1006481", "video_name": "76970aff-e13c-5fa9-8e58-902991829179", "text": "The spacecraft landed in a bustling city "} +{"id": "2003979", "video_name": "0c2a373f-857b-51c2-a54f-22a0e540af19", "text": "a portrait of the stoic epictetus in black and white 16:9 ratio "} +{"id": "2004331", "video_name": "8aa57191-4772-5942-95d2-5c29e209a907", "text": "the music band pinkfloyd playing in space "} +{"id": "1005767", "video_name": "6a200bb6-2348-5b60-9429-1466a50828df", "text": "The camera focuses on the lady with makeup in the red dress on the tree, her silhouette accentuated by the morning light. She gracefully holds a bow and arrow, symbolizing precision and purpose. "} +{"id": "4004261", "video_name": "7b61937c-e735-50e9-acf4-19c41eb30bf3", "text": "Create a video of the Prophet Muhammad (\ufdfa) sitting with his companions, surrounded by lush date palm trees, as fresh dates are brought to him. "} +{"id": "3004827", "video_name": "27b7b782-44a2-501c-86b6-0198d17b5ca2", "text": "move the one pigeon on the tree and one mouse under tree. "} +{"id": "3005909", "video_name": "c0c7e826-9f8d-5e62-90bc-a090811d216a", "text": "Salaried man dancing in downtown Japan at night "} +{"id": "1003277", "video_name": "3c496800-4b34-59af-adfe-f52d03cacad4", "text": "In a small village surrounded by green rice fields, a pair of identical twins named Aisha and Ayesha woke up from sleep before maghrib prayer. "} +{"id": "3006814", "video_name": "a235164a-af0b-5aa4-9f1f-4b98fd5f0fb7", "text": "Photographs that convey courage and bravery. "} +{"id": "7003537", "video_name": "2cbb5d8f-b747-507d-aea3-d9b5f2a922fc", "text": "A lion roaring, van gogh style "} +{"id": "0005363", "video_name": "1988e509-b9f2-5b66-95b7-94fc0a580cc0", "text": "a ram jumping out a computer and running at toward the screen of my iphone "} +{"id": "3004531", "video_name": "a9c52d2b-3a12-5b1b-ad57-8166ebb79f65", "text": "One chinese white dragon flying above the battle field with warriors fighting firesly "} +{"id": "3004644", "video_name": "4891818f-499c-5a89-bf9b-0c3610ef27f6", "text": "A man in black suit walking out of the mist "} +{"id": "0005298", "video_name": "180b96fc-5343-5b27-b861-0f067bea5ee0", "text": "angel flying in the sky, fantasy image "} +{"id": "0006670", "video_name": "30bd9242-75ab-5f67-9767-cdd774af9a1b", "text": "silvester stallone jumpig wild in a bar "} +{"id": "8002050", "video_name": "d258833e-b13a-5798-8b1d-8e712ca7808c", "text": "two figures face each other in long hallway. A man in silhouette trenchcoat and hat faces down a man in a black suit with a grotesque face. Smoke fills the hall. "} +{"id": "6004276", "video_name": "f7eb91fc-245c-5714-b505-1662f7a67f43", "text": "create homeless people are happy for what i do. "} +{"id": "7004624", "video_name": "a52a1275-d743-5071-93f7-c9b01e0a85a4", "text": "Create a detailed 3D schematic illustrating a spherical structure with a clear distinction between its outer inorganic matrix and its inner crystalline core. Highlight the structural characteristics and composition of both the matrix and the core in your design. "} +{"id": "2003870", "video_name": "37774ecf-c816-5c8d-aafd-fb81ff8db25c", "text": "young charismatic woman with long white hair wearing white cloak, looking at the glass transparent capsule placed in white empty room, cinematic, studio light "} +{"id": "0005784", "video_name": "2132bc2e-973a-590c-93b1-d5308dcc2d3d", "text": "Animated green Mustang Hourse running through the clouds "} +{"id": "6002640", "video_name": "f2ae67af-dcc8-5895-8fcf-8266bc08de93", "text": "Ganesh is giving boons , there are waves of white energy come out of his hand. There is word \u0950 come out from palm. "} +{"id": "3005072", "video_name": "0bc3eded-b649-5be0-9537-059de83307de", "text": "Robert Downey Jr. throws apple at viewer, afternoon light "} +{"id": "0005853", "video_name": "225cdac3-c473-5847-9df8-082d02cfa8c9", "text": "Alpha wolf standing tall, exuding confidence, 3d, realistic "} +{"id": "2004828", "video_name": "ec8f8f29-be92-5218-b403-77f4bc1c45c2", "text": "Let down. Cinematic in scope. Intense and striking. Photographic realism. "} +{"id": "2007696", "video_name": "4c32d414-5c17-5d47-98ad-e81749ee3966", "text": "man and woman dressed in fig leaves ashamed, anime "} +{"id": "8002384", "video_name": "ea2fb0f1-bc65-57b0-9a4f-0bcfbb79077b", "text": "Generate a woman peacefully asleep inside a cabin during a heavy rainstorm at night, situated near a large window. Emphasize the soothing scene with raindrops on the windowpane, reflecting the coziness of the cabin and the ambiance of the stormy night "} +{"id": "0004722", "video_name": "0e0b90eb-2338-548f-a9a9-3c2fac534693", "text": "generate a realistic video of Monkey walking on a beach. "} +{"id": "4002418", "video_name": "bf92143b-b705-5a6a-b7f2-e5a8d58cd74c", "text": "one young woman who is pregnant in front of the mirror "} +{"id": "7004001", "video_name": "3a196950-79fd-58e8-9b86-5c6b00e7c1fc", "text": "Music and dance and caffee machine "} +{"id": "0004237", "video_name": "059298b6-9d71-5e51-b729-f3ba64ecb045", "text": "Just as he was about to leave, a gentle voice spoke from behind the waterfall. It was the guardian of the forest, a kind and ancient turtle named Tessa. Tessa thanked Timmy for finding the treasure and rewarded him with a magical wish. "} +{"id": "8001956", "video_name": "08f8c754-605c-510d-a18f-f15bb9277413", "text": "man looks other man in the eye all the time "} +{"id": "0003890", "video_name": "454d7104-01dc-5f29-abcc-4a65c50f1462", "text": "There is a group of horses on the prairie in the clear sky, and there is a clear lake on the prairie "} +{"id": "2005738", "video_name": "0ba02629-b715-55b2-9579-04668ff72e63", "text": "A fireplace in cozy cave with walls of black natural rocks , luxury sofa and features, and a balcony overlooking tropical forest "} +{"id": "3003256", "video_name": "306f8a7c-629f-5459-9a58-e44ea589e8a0", "text": "2 luxary cars racing on Moscow streets close up "} +{"id": "8001093", "video_name": "5ff1cd4e-d87d-5d0b-9636-25f9b23091cc", "text": "a bestman barbershop a lot of barber "} +{"id": "6002647", "video_name": "59f6de60-8ed7-5697-86ec-d6209edc1a66", "text": "give me a full front view of the well known crooked house from poland "} +{"id": "1004467", "video_name": "52b5b8bf-eb7e-565d-8bc3-7b61cdf5778d", "text": "Earth in Dark , epic scenes,hdr , sunset "} +{"id": "0006947", "video_name": "35b04528-3fa1-5a52-a288-286c3cc03821", "text": "nigh city background, lots of lights in windows, blinking and turn off, techno vibes "} +{"id": "8002777", "video_name": "dd233da9-9175-59f6-8385-004beb6d1fe8", "text": "show this image in ai Avatar "} +{"id": "3005162", "video_name": "8a62545a-56d3-5a92-baed-a9554f544519", "text": "a group of purple deamons celebrating the victory "} +{"id": "4003158", "video_name": "f42b350a-c98d-5675-84a8-a4d6c408a46f", "text": "active surgery transplanting a kidney from a human to an orangutan, view from above, cinematic "} +{"id": "8003473", "video_name": "25b6b3e5-d765-58b7-951d-2d0f500d5aa8", "text": "A shot of them exchanging heartfelt vows at their wedding, marking the culmination of their journey from fear to love. "} +{"id": "3004825", "video_name": "5bc8da70-09de-5aac-8c58-afd37b317fe3", "text": "busy tokyo Japan street, neon lights evening setting Message: 1 Attachment "} +{"id": "7004862", "video_name": "18bb5514-36bc-52e2-b3cd-10b275c8a517", "text": "1920s italian neo realism on expired film video of a scared girl in the forest "} +{"id": "4002253", "video_name": "54680df8-a5cb-547b-bacc-96ec0ce93849", "text": "A drop of water in the center of the screen against a pitch black background turns into red ice as it falls through the air. "} +{"id": "1004207", "video_name": "4dbe4e7b-50d6-554b-b81d-ce76bde43f3d", "text": "3d CGI animation start a family sitting together at a dinner table, each member absorbed in their own phone, completely unaware of their surroundings of the giant smartphone with arms and legs, chasing after the family as they try to escape it, representing their addiction.8k,Ultra Hd,16:9, Cinematic, Clear face, "} +{"id": "8001220", "video_name": "eee4b793-3ca6-5e22-aec4-74660b64b538", "text": "people raising their glasses on a grave "} +{"id": "3003416", "video_name": "4cc6d9e4-d1dd-53ea-bd95-0be37e6c23e9", "text": "Toyota Yaris, future, electrical , white , dc , ac "} +{"id": "1004984", "video_name": "5c21ad19-6e66-55d1-b0c6-318b56d9c7c5", "text": "humayun ahmed is a promonent writer of bangladesh,sitting with paper in front of him,some thrown paper are there in the room,a pen in hand,a burning cigeratte in another hand,eyes full of thought,starry night background,aesthetic,realistic,vintage "} +{"id": "2007423", "video_name": "f2079b42-c05d-52f2-a91c-0e538a4bfabb", "text": "1957 bug turntable, white background, clean "} +{"id": "6003828", "video_name": "0ae56484-aa59-5fe9-97bb-d9f62600e7b0", "text": "pizza the hut from spaceballs the movie, speaking behind a podium, red tie, political "} +{"id": "6002441", "video_name": "ed7f6535-5b64-506f-9446-ec58a8c7247e", "text": "Woman walking, silenth hill, fog, weird, grey "} +{"id": "4002802", "video_name": "1939dc53-4f4e-504b-9839-722272634576", "text": "The things in our world that fills us with joy! "} +{"id": "6004700", "video_name": "58782cbe-ee2a-526b-a882-c3b106041e05", "text": "The silver Chinese dragon in the sky transforms into a dazzling golden light, and the entire scene becomes invisible. "} +{"id": "8003879", "video_name": "39f6af4e-4159-56f6-a7dc-8a99f3859b4d", "text": "A dove and a crow stand on the branch of a leafless tree at noon "} +{"id": "2006004", "video_name": "20b69517-4f56-56c9-92d1-351d06b9171e", "text": "creative on his apple computer with a cup of coffee at midnight super tired but eager to improve himself "} +{"id": "2007433", "video_name": "e90a31a8-7684-5e40-9fbb-a4a31338d13a", "text": "a couple and a dog walking on the beach, vintage VHS style "} +{"id": "3006773", "video_name": "cb1f1fe0-fd46-53cd-925a-0b46c3c5d8f7", "text": "Clips highlighting the impact of climate change on pink ecosystems "} +{"id": "3004081", "video_name": "a5e88a9d-3f49-5dde-8b0d-5568f30a15a9", "text": "two Uzbek wrestlers wrestle on a grass field in the desert, a singer is singing behind them "} +{"id": "2005346", "video_name": "8c165573-1c11-57b3-8e3f-143d7725fb87", "text": "tintin in Amsterdam, winter scene, full moon "} +{"id": "0006694", "video_name": "312f9c83-d064-5f56-b6bd-f64618541a69", "text": "the emperor tarot card: add red and orange in the background: severity "} +{"id": "6004065", "video_name": "cf23a0a4-7d8d-5dbc-a733-e65266d8d2d8", "text": "universe dreamy awe inspiring landscape moving, shot from the space "} +{"id": "4002713", "video_name": "cd33cc09-4923-5f05-882b-f58e95e83339", "text": "some people are stuggling for final exam, and see the paper in the apple macbook, and talking with each other "} +{"id": "4004775", "video_name": "0c02bd83-3822-5616-ba01-e192c2c4b03e", "text": "colleagues talking to each other near the office windows "} +{"id": "6004314", "video_name": "ecb12274-0519-5784-a981-a801ac081969", "text": "scene from the lord of the rings "} +{"id": "2007364", "video_name": "204d1bd8-5f6d-5b43-8bc4-a921a2f4c2f4", "text": "man on desktop watching pika labs videos, vibrant colors in a hopeful and technologic environment "} +{"id": "7003987", "video_name": "3fd92ef4-ce66-578b-8fef-1aac64e8b860", "text": "Rusty BMW E34 stands in the garage "} +{"id": "8002914", "video_name": "6a27d959-34d1-5805-917d-e666e84e433c", "text": "A man walks into the kitchen and asks his wife to make tea "} +{"id": "8001535", "video_name": "23516143-c90c-593e-9993-46772ac58db8", "text": "Elon Musk watching the SpaceX Dragon Rocket launching event "} +{"id": "3003711", "video_name": "290683a1-f9b8-5824-bfea-379e4e63d47a", "text": "a amanita mushroom man walking down the forest, with a busket full of magic mushrooms "} +{"id": "4002911", "video_name": "675933c5-33df-53fe-9b57-8e5c20fe1bdc", "text": "Megadolon swimming with thousands of fish behind 4k 1:1 "} +{"id": "6004982", "video_name": "be1acf65-b2e0-5ec5-addb-74aa17e86dee", "text": "Taotie mythical beast from Shan Hai Jing "} +{"id": "1005130", "video_name": "5e935c8e-8eef-5e8a-bd0c-3798bba230a0", "text": "This autumn the leaves turning them golden before they gradually fall. "} +{"id": "4002782", "video_name": "b8e9d72b-cbd5-562e-8fb8-782ebe554103", "text": "rick with the queen Message: 1 Attachment "} +{"id": "3003529", "video_name": "b2142d8d-dc93-5be5-a26c-2efdc3443b24", "text": "Generating video A hot girl in yellow bikni running on a beach with dog ultrarealstic "} +{"id": "8002212", "video_name": "6563dad1-54f5-5815-8f94-d838ab62f52a", "text": "a blond 9 years girl, middle long hair, dancing in the old opera house, wearing a long white dress, full view of body, black and white, zoom in, darkness around her, antic architecture, surreal aesthetic "} +{"id": "4004317", "video_name": "e86e541c-929b-5787-b56e-95cb30fa6ec1", "text": "A stuffed cat lies on the grass under the bright sun and holds a fish in its hands, eating it contentedly. "} +{"id": "7002245", "video_name": "e05d3e87-55f8-541a-9f4a-465ffc13fec0", "text": "Many dogs sitting in subway tunnels "} +{"id": "2005752", "video_name": "4c55c877-565f-50a2-9ae5-8f9a3d0ec7b7", "text": "A man is standing in front of a mirror, applying the perfume. Voiceover: Versace Eros EDT is a magnetic, seductive fragrance for men. It is a blend of citrus, floral, and woody notes that create a heady, intoxicating aroma. "} +{"id": "8001007", "video_name": "baef6cf2-8411-549a-9c45-d8f3e5e4c9ce", "text": "a beaver Message: brad eats nuts (Font: MODERN) "} +{"id": "3004990", "video_name": "f369ad39-f298-56a5-8b93-a9d2b5f6f439", "text": "the vortex swirls quickly round with occasional lightning burst as the man watches on "} +{"id": "1004651", "video_name": "56735376-693e-5f3e-beb4-3aa934efff69", "text": "surrealistic man portrait eating a watermelon and closing his eyes "} +{"id": "1003731", "video_name": "44ddd14a-2ae4-5634-828c-ef6fe8801da1", "text": "Bonus: Show glimpses of potential future adventures, teasing new challenges and magical worlds awaiting Alice. "} +{"id": "0003176", "video_name": "389a7cca-4803-594d-9e66-dd5afcb2c2aa", "text": "a goat playing the saxophone on a trampoline in aberystwyth while a crowd of people watch and wave pirate flags "} +{"id": "1004797", "video_name": "58b19eba-3db8-55da-b23b-174b8dea4f6b", "text": "High quality, the Circassian flag is flying against the backdrop of city ruins at dusk "} +{"id": "4002890", "video_name": "cd1fea65-b3f5-584e-8a4d-1ddd59288423", "text": "technology in edacation, style matrix, video 1920x1080pixeles, aspect 16:9, cienmatic, 4d, "} +{"id": "3004805", "video_name": "beb7b1eb-d34c-502c-ab55-2b65ef500ea3", "text": "Rocks, leaves , stones and props are flying through the air and eyes blings "} +{"id": "8003560", "video_name": "a2825e07-737a-5a5f-adf8-2a5e5ce78c0b", "text": "a robot on the bench of a mansion watching the earth being destroyed by nuclear bombs "} +{"id": "0006280", "video_name": "29eddbc8-ae53-569c-92d8-ce75452a29f5", "text": "a hand is coming out of an old notebook, grabbing a colorful globe in a fantasy world "} +{"id": "7003437", "video_name": "145c2209-0972-51ab-a512-a48a26312263", "text": "Girl slow dances hugging a boy with the moon in the background on a beach in Gran Canaria "} +{"id": "8001063", "video_name": "dd0570b6-8335-58c2-b399-ca078f19953f", "text": "Modern and warm courtyard, the camera is from far to near, and the wind blows the trees and swayes "} +{"id": "0006382", "video_name": "2b7b7f4f-bfd7-5d49-9bb1-c6d36a403cef", "text": "freddie gibbs wwII movie ending, driving tank, smoking cigar, slow motion, purple background, purple drank "} +{"id": "3003675", "video_name": "b4faaa0d-88db-565b-af1f-476de6d219ca", "text": "fallen angels on the Hermons mount "} +{"id": "4003418", "video_name": "e0150355-1c4c-5fcf-a71b-89d980f83af7", "text": "Sonic x dances in Dubai city and dances at the Eiffel Tower "} +{"id": "6002320", "video_name": "5d57999e-91d0-5760-af65-10830e2e5afe", "text": "a super chartered accountant from India "} +{"id": "1005251", "video_name": "609b3c47-7888-503b-811b-e69621a9c68f", "text": "She had a special gift for telling stories that made people smile, laugh, and sometimes cry. "} +{"id": "7002868", "video_name": "ccf322b7-da90-5c61-8774-5ba2bee57884", "text": "angry gorilla dancing in 4k with gold teeth "} +{"id": "8003478", "video_name": "9b04bc2c-fbb9-5dd7-a6cf-b9813f8bed73", "text": "toyota innova on a cyber punk city "} +{"id": "3004623", "video_name": "766b18e3-8ee5-52c0-91dc-c519ac61b5fa", "text": "n the occult publishing renaissance of the 1 970s occultists "} +{"id": "3006343", "video_name": "2cc096d4-e684-53ee-aeda-de2944bd33a7", "text": "rotate the record as if playing on a record player for 60 seconds "} +{"id": "0006641", "video_name": "30151202-3022-50f7-8c37-884f49ffb605", "text": "overhead shot of an island at night, three funeral pyre, smoke flowing on top of a river, smoke, super wide angle shot, ultra realistic "} +{"id": "7004502", "video_name": "c7d050d5-f937-582d-b698-5c69566a2b16", "text": "a girl, riding a horse, in the rain "} +{"id": "2007303", "video_name": "aded3c0a-c28c-5136-920f-0dd65be04b40", "text": "wwi world war i soldiers under fire on the battlefront, move, fire, wind "} +{"id": "3005310", "video_name": "c394b893-bc7b-5d25-ad72-9d7cf2ea3036", "text": "Generate an abstract representation of Chaos, the formless void from which the Greek cosmos emerges. Envision swirling, amorphous masses symbolizing the unstructured nature of Chaos. Use dynamic patterns and colors to convey the chaotic essence at the beginning of the mythological narrative. "} +{"id": "6002401", "video_name": "6a8bd9a9-a54c-5796-8a61-53f7e339ce22", "text": "nature tree, cenital view, zenithal view, iguazu cataratas Message: 1 Attachment "} +{"id": "2005030", "video_name": "c8be17ea-9b15-5e41-aefc-2d5a9847d3a2", "text": "a pan frying pastry, 8k, ultra realistic, hd "} +{"id": "2006864", "video_name": "75dd4117-10d0-58cf-80bb-2b24cd3589c2", "text": "wheat field at sunset, the wind stirs the ears, blue sky with small clouds "} +{"id": "1004770", "video_name": "58450d0c-980d-5800-afab-c9868f3fa153", "text": "black background, cinematic lighting, mineral stone quarry, hyper realistic style, no warping, extreme definition, 8k motion 2, seed10829244663982770361 "} +{"id": "0006281", "video_name": "29f1343a-8c33-53e8-8e8c-3d370b00ce56", "text": "a vintage story book opens and zooms into another video "} +{"id": "2005055", "video_name": "e2fa0857-9390-54da-85f5-ef52af8760b5", "text": "the cat walked forworad an turned its head to the right "} +{"id": "2004162", "video_name": "00b176ca-3a06-5e9e-a110-c6f5d05323b8", "text": "ed Sheeran plays guitar with Israel flag "} +{"id": "2006347", "video_name": "21edc68a-9ec4-5823-bc2b-68d6fabe9cb6", "text": "book cover showin a blonde influencers face smiling "} +{"id": "0003786", "video_name": "43690864-a148-598b-a36d-4b657bdf2bcf", "text": "a scary grass monster jumping up out of the grass "} +{"id": "4002748", "video_name": "4c9ed8f4-ee09-5efe-be61-2c42c721a22f", "text": "sexy ethical hacker girl working in SOC "} +{"id": "6004103", "video_name": "90150dc0-03b8-5bac-a00d-ef7d8daa0103", "text": "It is currently considered to be the second largest karst source in the world "} +{"id": "6002795", "video_name": "81a98e41-72e5-511f-844d-8129f0ec6e87", "text": "movie poster, instagram story frame, zoom in, man fighting robot l, cinematic, 15 seconds "} +{"id": "1004452", "video_name": "52612ce1-a4c7-5a78-adce-ed91939b4d4b", "text": "The field where people scatter grain by sowing it, top view, time of day, time 0 A.D. "} +{"id": "3005701", "video_name": "54c27ec1-878f-5227-b458-5881e7c733db", "text": "gatekeeper denied entry to four people "} +{"id": "1006696", "video_name": "7aae8c8e-e563-50ec-86bd-209caa958e5d", "text": "The robot looks more like a real human face "} +{"id": "4003582", "video_name": "b5e527b9-0bd8-59bb-af7d-7fea9eb590b7", "text": "And so, the sage and his devoted disciple lived out their days in the tranquil beauty of the Indian hills, "} +{"id": "6003735", "video_name": "1f79ccd5-1855-56c4-ad2c-437710d40c6c", "text": "make tower like eiffel, falling down to the left, realistic. "} +{"id": "7004075", "video_name": "c2456672-74e3-5360-bab1-3c46560712c9", "text": "Desert and mountains, children playing, Arab looking "} +{"id": "0006176", "video_name": "27c0fd1d-4de5-5207-b326-8f56037d1dcd", "text": "Illustrate a person standing on a conductor\u2019s podium, surrounded by various figures representing experiences, beliefs, and relationships. Depict each figure holding an instrument that represents their impact on the person\u2019s identity "} +{"id": "1005026", "video_name": "5cfb052f-ea68-57f4-bf8f-567f16e440fd", "text": "Chinatown, fireworks, fantasy, gorgeous, festive, happy birthday, realistic, movie effect "} +{"id": "3003426", "video_name": "88ec6677-5a79-5cf0-9d25-b3e7b52fcff7", "text": "alien queen golden dress makeup long hair beautiful body "} +{"id": "3006334", "video_name": "2a89756b-b104-5123-8662-d9c2934fe026", "text": "a magic portal opens in the French Quarter "} +{"id": "2005153", "video_name": "d1f4aa24-9152-5f56-b0cc-cb1e815cc087", "text": "image realistic, tarot cards in hands of young woman, prime plane, close up image, very realistic "} +{"id": "3004793", "video_name": "fdf47adf-a2a6-5813-baaf-3c43072ceea4", "text": "hajime sorayama droid full body, realistic "} +{"id": "6003676", "video_name": "3f0c2b4a-9777-516d-bd18-fbee39098adb", "text": "guy coming in for a property viewing "} +{"id": "3004337", "video_name": "ae713642-7249-5cf5-a1a0-ca226c195af3", "text": "an emotional andoid sitting on a park bench. Golden hour "} +{"id": "1005994", "video_name": "6e2e41b7-4dd7-584a-b6e4-63ddf572e2ad", "text": "woman with microphone in the city speaking in front of the camera "} +{"id": "3004651", "video_name": "3ac31284-1668-5adc-9277-554a23fe8869", "text": "wind in the hair Blinking y parpadeando "} +{"id": "6003967", "video_name": "c7963fbe-b331-5104-85f5-68b7431ac564", "text": "And Dumbledore as the dj playing and dancing on underground techno in a berlin underground club with no top on "} +{"id": "8002017", "video_name": "c4fd1ad5-7c0a-5c13-99f5-1e06b9e8aaea", "text": "Wonderful colorful sky, huge mountains with ice on top, nature surrounded by greenery, a young man sleeping at the foot of the mountain holding a book. "} +{"id": "7004698", "video_name": "27440b35-c18b-5999-a9dd-01d6a313491e", "text": "a classical music concert theater with lots of people with tuxedo "} +{"id": "0003588", "video_name": "4008140d-2e02-5b03-bb22-0e1740613874", "text": "Berlin in the year 3000 night view "} +{"id": "1003323", "video_name": "3d2ed216-e285-501a-a1f9-c9b467c48f14", "text": "A beautiful woman is hiding her face and crying in a mansion "} +{"id": "0003003", "video_name": "3574d5eb-3734-5bad-84a1-65d8e2ea01ac", "text": "a character of a girl of 4 years old wearing a bleue dress with golden color of hair, multiple angles, Studio Ghibli animation, Studio Ghibli style "} +{"id": "6004441", "video_name": "2d557946-5e85-5d7f-a3b3-8fedab7919da", "text": "the boy walked for a long time, The trees grew taller and the forest became darker. Jack started to get scared, but he kept going. "} +{"id": "0003412", "video_name": "3d390362-9154-58d9-89bb-65e3ddac4c13", "text": "cute puppies play around, pixel art "} +{"id": "7004925", "video_name": "d87fa87a-8df0-5a5b-9bed-c1aad6028055", "text": "hearing music with headphones while piloting a space fighter and drinking some coffee "} +{"id": "8003961", "video_name": "978fd0e7-bf4c-55a6-9409-2cabfd54149e", "text": "With a panoramic view of the Yellow Crane Tower, the morning light cast its first rays, the shadow of the tower reflected in the river, and the river shimmered with golden light. Beside the tower, willow trees swayed gently, signaling the arrival of spring. An ancient Chinese poet stood by the railing of the Yellow Crane Tower, dressed in Tang Dynasty scholar attire, holding a folded fan, gazing into the distance with a look of anticipation and reluctance. His eyes sparkled with thoughts of his friends, and a faint smile graced his lips. "} +{"id": "3005074", "video_name": "198b9158-945e-5b4b-9e47-42dda62738c1", "text": "The new settlers and the villagers work together to solve the mystery and bring peace to the soul. "} +{"id": "6002691", "video_name": "3a6a6f7d-798e-5f74-b9d2-5e4a36774c5d", "text": "A muscular warrior with a taste of a lion running in a desert "} +{"id": "6004633", "video_name": "e85323e0-68fc-5ad6-9966-73c0fbe3b41b", "text": "The Mona Lisa in Le Louvre being cranky and rude in the painting towards its viewers. Dramatic and realistic lightning. Background of Mona Lisa is game of thrones dragon fight with kings landing "} +{"id": "1006009", "video_name": "6e704d97-49f8-51b6-b617-4b58cfafe8e1", "text": "A first person video of falling off of a golf cart, while standing on the front hood of the golf cart "} +{"id": "4004951", "video_name": "2a67f643-9975-5467-925a-48ba1f8190bf", "text": "A market in a fantastic village, movie film, fantasy, hight quality, hight detailed, 4K, movie, film, cinematic movie "} +{"id": "1004938", "video_name": "5b4d5f0b-94ec-5b1e-bfb2-2626d07e6007", "text": "The dark lady fell in love with the light magician "} +{"id": "7003324", "video_name": "a5c9da4a-465a-5eea-8d46-e745c93f5090", "text": "Son Goku from Dragonball runs away from a rooster "} +{"id": "1005312", "video_name": "618f4cf2-bf75-58d1-94de-eb02e467c319", "text": "a teenage Tibetan girl, standing in front of the Himalayas which are bathed in the morning sunlight. "} +{"id": "7003831", "video_name": "71075450-1176-5a2b-9873-52158b474264", "text": "A guy traveling in astral dimentions "} +{"id": "2003294", "video_name": "05de04d1-ff1e-5585-9b75-2d8cea5c093d", "text": "create a flying falcon shadow inside old indian palace castle "} +{"id": "0003415", "video_name": "3d429358-4013-5964-b081-eb3448de696e", "text": "children looking at a field of daisies "} +{"id": "1003935", "video_name": "48a45706-26b2-5d6f-9c17-d2b63b93dff2", "text": "animated school kid discussion in classroom with teacher "} +{"id": "3004720", "video_name": "b6c1cd03-549e-5276-a2e3-4262f142462f", "text": "animated version of indian girl standing in fornt of river "} +{"id": "3005921", "video_name": "795f4af2-d5c2-5038-aacc-8c36a8754de0", "text": "a very cute cat dropped a glass of water and made a sorry face "} +{"id": "1006121", "video_name": "703ef3d8-180d-5dda-99a4-bcb635fb40ca", "text": "a girl is walking carrying a book, books and animals floating "} +{"id": "1004911", "video_name": "5ae3a345-0eeb-5ce8-9be4-926e289323b4", "text": "ape walking in the city in the rain "} +{"id": "2003238", "video_name": "444ee31f-a38c-54ae-afc4-8e018f710532", "text": "Nat King Cole at the Sands Hotel Copa Room 1960s Las Vegas. "} +{"id": "2007688", "video_name": "56524e75-68d8-5ede-a081-d882f6a863b4", "text": "An old wooden desk covered in yellowed parchment. "} +{"id": "2006155", "video_name": "bacd3e12-475d-57e8-b869-a99796105e5b", "text": "porthole, from a futuristic space marriage, looks into the distance, an astronaut in techno suits, on, outer space and an asteroid "} +{"id": "8003116", "video_name": "f0f7b9d1-a615-5d4e-9855-4bf18e56bc73", "text": "the intersection between faith and reason "} +{"id": "7003184", "video_name": "9101f4d4-4f26-5005-9072-8170b023e024", "text": "exploration of level 0 in the backrooms "} +{"id": "3005718", "video_name": "59c3d69b-d568-5fa1-a5ea-99f25d7987d5", "text": "mongolian tribal women dancing around a huge fire at night, the stars are shining "} +{"id": "0004529", "video_name": "0aaab644-60fe-5178-bad7-98aa3515763a", "text": "young girl cartoon style. looks like Rapunzel. 3\u0434. 25 years old. brown straight hair. beautiful. eyes closed. she is sleeping. her head is on the pillow. the girl is wearing pajamas. the room is dark. "} +{"id": "4003321", "video_name": "14b198fd-7c84-5b87-a51f-e3ba01293bf5", "text": "A Dog, 3D video and 4K quality "} +{"id": "3003107", "video_name": "b7d96759-1d89-57b3-86b2-ff6632d83a70", "text": "in a newspaper Message: Lavinia (Font: MODERN) "} +{"id": "6003974", "video_name": "bace091a-9e3f-55ff-87e7-bdf25bb663b1", "text": "turkish flags cheerful people celebration feast enthusiasm youth day ataturk august 30 victory day "} +{"id": "3003479", "video_name": "7daf780e-663d-5f80-b33e-f6429ffb51e9", "text": "christmas city into a glass view "} +{"id": "7002454", "video_name": "6d20a3cd-b8df-521a-b48c-f01b18bdcead", "text": "A hand reaching for a drink is captured, with people in the backdrop, amber and turquoise velvet cushions, and a reflective table. Direct flash photography casts crisp shadows and highlights the textures "} +{"id": "6002497", "video_name": "0298ef3e-b742-51cb-a63e-e34e2d24e0b3", "text": "A heartfelt letter or note passed between them. "} +{"id": "2007059", "video_name": "34d99216-669e-512e-91c3-4735760438df", "text": "create an animated jungle scene with all animals including tiger, deer and lion cubs are playing in the river "} +{"id": "4004696", "video_name": "66d8e271-828b-55fe-aedb-43114be93c76", "text": "a soccer logo with a beer glass make it simplistic use red , white and black . "} +{"id": "1006216", "video_name": "71f663fb-bbc0-5108-9e1f-6405d6df4710", "text": "a man with a pumpkinhead standing on a stage, halloween, 4k "} +{"id": "3004157", "video_name": "1841843e-663b-56e0-b59f-7e31cbff089f", "text": "a boy dancing in a rain and lion is looking at it from jungle "} +{"id": "0003460", "video_name": "3df07659-9bc8-5bdc-a2cb-ac7a788963b2", "text": "make a lama walking on grass with a crown "} +{"id": "7004259", "video_name": "4ff8c229-c5c2-5c1c-b498-637df044d943", "text": "animated guitarist in fairy forrest playing "} +{"id": "2006017", "video_name": "18f20237-e81a-5353-9e5b-d571d05b66b8", "text": "pine forest in Noel holidays, cartoon, disney style, 16:9 "} +{"id": "7002907", "video_name": "793c9c3c-84a9-5e44-975b-61c76b592bcb", "text": "Santa Claus giving the keys to a new house to a Latin couple with a child, 4K "} +{"id": "4004866", "video_name": "3ab8f397-5d1c-59dc-a5ae-8ddbd1ce2f25", "text": "make a 9:16 youtube thumbnail where is boy is sitting on his bed and a ghost in sitting under his bed "} +{"id": "2007798", "video_name": "3f4a057e-d2f8-5a17-8981-fc94aacedcad", "text": "two beautiful women walk in sky with umbrella "} +{"id": "1006167", "video_name": "70d9248b-7d67-5c6c-8eda-03d3b63355da", "text": "a cute shark swimming in the ocean "} +{"id": "4004992", "video_name": "76393d50-bd60-5090-9f59-626c2f12c226", "text": "There is a tree growing in the foreground and the background is a sky with moving clouds. "} +{"id": "1003187", "video_name": "3a9e3b12-33cd-53e9-9dd7-8d806e7f9b97", "text": "ui ux design an health fitness app page in which ai chatbot for personalised recommendations "} +{"id": "8002009", "video_name": "f0cb796e-ae18-576e-9885-af86b95befb6", "text": "parrot, 8k,full hd, Cinema4d, hyper realistic, Disney style, GS5, Motion 2 "} +{"id": "4002910", "video_name": "4ff981c6-1c37-551d-a0d9-185eeccd009e", "text": "A cute little bird flew to the window sill of a house "} +{"id": "2004040", "video_name": "03ae2485-e985-5b4f-812e-c525db72b830", "text": "Man in the mid age playing video game "} +{"id": "5001555", "video_name": "002aef48-8fef-562c-b1c1-3e66f8caef88", "text": "Inside the temple, they discover an open book resting on an altar, its pages whispering untold mysteries. One page, in particular, catches their attention, its cryptic message hinting at an irreversible fate for those who dare to trespass further. "} +{"id": "1004296", "video_name": "4f7819a1-9053-56b9-9b79-ab30bc01f3c3", "text": "Our next podcast is about to begin, in just a minute , check your wrist watch "} +{"id": "6002815", "video_name": "241fa74a-3c96-5faa-81e5-0298126b3a4d", "text": "The friends trapped in a claustrophobic room, pounding on the door "} +{"id": "7004444", "video_name": "65bcf3f4-cfff-5e3d-a99c-29999f3031ef", "text": "lava lamp that contains an outer space galaxy, realistic,VHS effect "} +{"id": "3003072", "video_name": "58ba9433-9f65-5401-b7e4-9feda7814c2e", "text": "liminal space blockbuster outside parking area night "} +{"id": "2004192", "video_name": "417e9f55-b31c-5f0b-8f9f-faea9e501496", "text": "Finally, as the sunlight expands, the video ends with images of the tanks withdrawing, leaving behind a dense cloud of dust. The once peaceful village has now become part of the imagery of a fierce and relentless war. Through this description, you can imagine a thrilling and visually stunning tank warfare video. Keep in mind that Pika Labs can generate unique visual and sound effects to make the video even more engaging. "} +{"id": "6002585", "video_name": "4109eae2-63a8-56df-b059-e799ace2f931", "text": "a dreamy beach, waves moves, beautiful "} +{"id": "3004048", "video_name": "70ad2386-78f3-5ea4-a6e7-150f6cf6c776", "text": "a uk police man with a balaclava on running down a london street "} +{"id": "3005023", "video_name": "25307ce5-0aab-5e4c-86d0-e831117653a1", "text": "raining day hitting on house window "} +{"id": "8002303", "video_name": "3a702789-c0dc-545d-af4c-eb69c37c2727", "text": "image of Dragons open sky, man pooping, no toilet roof hd "} +{"id": "6004863", "video_name": "5aa47406-1066-50c2-8ac3-911d98e68c5a", "text": "arm wrestling gym with equipment Message: ANTONWIN (Font: MODERN) "} +{"id": "1005879", "video_name": "6c313bdd-26d7-5a6e-838a-84d224b7c1a1", "text": "black and white 4:3 video of a ghost walking down the hallway of a dark and spooky house "} +{"id": "7002427", "video_name": "f269e5c6-e4b7-566e-9d80-e4f5ef0e0f7a", "text": "an ancient gnome is running breathless through a snow storm in primeval forest. He slides in the snow and falls, scrambling up covered with fresh snow, his hat askew. two reindeer are in the background laughing at him. "} +{"id": "2005366", "video_name": "5f3fb599-63c9-5998-b6c9-af5889cdbe99", "text": "man falling into a pile of blue cheetos "} +{"id": "4004331", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "Photorealistic image for a purple lavender sleep potion drink "} +{"id": "1004182", "video_name": "4d64767c-5884-52bc-8062-718418e08cca", "text": "woke the sleeping shepherds from their dreams "} +{"id": "3005957", "video_name": "710ab76f-ce2e-5df3-9d2a-2208f52e05dd", "text": "text rock made over a big mountain in sunset, camera pan left Message: la biblia (Font: MODERN) "} +{"id": "7003976", "video_name": "b329ef78-1820-5ee1-a76f-4f5e7baddab1", "text": "Out of the temple came the seven angels with the seven plagues. They were dressed in clean, shining linen and wore golden sashes around their chests "} +{"id": "6002762", "video_name": "3a04dd31-b070-57dc-9d9a-9847475bd7b0", "text": "studio ghibli style of uncle roger in his orange polo shirt and black pants doing taichi in bamboo forest "} +{"id": "8003243", "video_name": "65dfe4b6-6a9a-558b-b26f-1717b97158f9", "text": "A gingerbread house with candy canes and frosting. A group of children are making cookies and decorating them with sprinkles and icing. A dog is sneaking a bite from a plate. "} +{"id": "2004714", "video_name": "9235ead7-f8d5-592c-8730-b9b41de39cd0", "text": "vintage polaroid of happy woman standing on the beach sun "} +{"id": "6002368", "video_name": "2b5edeb4-1882-50b2-bc77-21e18dd8adeb", "text": "fashion model wearing haute couture swimsuit walking down a catwalk "} +{"id": "4002667", "video_name": "01a10379-088f-5d47-a4ee-312074ceaca7", "text": "astronaut on the moon discovering cannabis "} +{"id": "4004453", "video_name": "0cdbcff2-7123-5132-97a6-0d04f71e7ede", "text": "two young men contemplate posters, 8k "} +{"id": "3003735", "video_name": "059cf5ad-0c7d-5092-bb87-279f92f75e14", "text": "In the cozy kitchen, Hanayo and her grandmother were engrossed in a delightful culinary adventure. The air was filled with the tantalizing aroma of freshly chopped vegetables and herbs. With nimble hands, they whisked eggs, stirred sauces, and kneaded dough, creating a symphony of flavors that promised a feast. "} +{"id": "0003966", "video_name": "00dca047-6743-522a-a280-de600cb2ccde", "text": "kids playing in the snow, chrismas tiem, realistic, colorful, daytime "} +{"id": "0004854", "video_name": "10598a8f-a16d-5160-9ce2-798c7655ca7f", "text": "Shawn Mendes and Sabrina Carpenter singing in the choir "} +{"id": "4003430", "video_name": "cd011630-c00c-52ec-ac1d-fc6793276ada", "text": "create an apples trees garden and two young mans talking with each other 3d animated colourful "} +{"id": "8003542", "video_name": "023d5cd9-ff2b-5473-b4d4-046b280db42a", "text": "The gray wolf was kicked off the earth by the Pleasant Goat "} +{"id": "8001543", "video_name": "7e1689e2-e3f9-5215-a622-b19fd1f8cf40", "text": "sand slowly dropping into a glass "} +{"id": "3005826", "video_name": "7aba50c4-24c7-5f10-99cc-f12e318fa1f9", "text": "I am more than my physical body. Because I am more than physical matter, I can perceive that which is greater than the physical world. Therefore, I deeply desire to: to expand, to experience, to know, to understand, to control, and to use such greater energies and energy systems as may be beneficial and constructive to me and to those who follow me. "} +{"id": "0004035", "video_name": "01db1099-a209-590a-a6ec-cfdcb3b8a7be", "text": "video animation 3D Mickey Mouse Disneyland Park "} +{"id": "2007646", "video_name": "2b3cc62d-e153-5cdc-be49-616c6191d9d7", "text": "Illustration showcasing ants using their keen senses to identify and measure food quantities for storage in their nests.\u201d "} +{"id": "4002730", "video_name": "d6e61ac4-539f-5dc9-8337-a8c3c066fe5e", "text": "create fun fact video about dogs "} +{"id": "2003888", "video_name": "45d87446-4876-5f36-bff3-9d0b27e2c677", "text": "A baby peacefully sleeping in a cozy blanket with a dreamy expression. "} +{"id": "6002140", "video_name": "83f2d0ad-75ad-51d2-9632-3dea03d5bd69", "text": "8 Signs of a Heart Attack Not to Ignore "} +{"id": "3004127", "video_name": "37f8ad07-4825-52bc-b252-4b302aaec7b7", "text": "create a video of a crying eye "} +{"id": "2003423", "video_name": "83e8306a-c45a-53ff-bd01-391ee2cd9735", "text": "ryan gosling shouting out words inside a plane with peoples while wearing a burger king crown, people, HD,8K, Ryan Gosling, burger king crown, realistic, INSIDE OF THE PLANE "} +{"id": "7004147", "video_name": "ec324e8b-84e3-54f2-8752-34f60589b1a4", "text": "Old women and lonely living in a cottage. Showing her daily routine, such as watching TV alone and eating alone, her days seem dull and mundane "} +{"id": "3006107", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "martyrdom of saint Sebastian Alejandro Jodorowsky 70s Art Film "} +{"id": "3004581", "video_name": "46cc7a42-6fca-5ad8-a34b-ef92b7e78253", "text": "Generate a 10 second HD video of a friendly robot with long arms and legs smoothly dancing energetically in a futuristic room. It turns and sways, waving its arms and tapping its feet rhythmically. The dance looks very energetic and fun "} +{"id": "1004755", "video_name": "5805a848-5bf7-5607-9e48-4fe31e41d0c5", "text": "a scared cat in a futuristic city "} +{"id": "3004250", "video_name": "6d3907fc-8a3b-5ff4-b931-75063e561812", "text": "Pleasant Goat buys clothes at a clothing store "} +{"id": "2003329", "video_name": "5e5ccf43-c681-5bca-b79e-7f4986d4bfcf", "text": "village background with crow green tree with grass "} +{"id": "2003152", "video_name": "0368dab1-69e8-52ed-9ac1-51c89048981e", "text": "POV flying through a hallucinogenic mushroom forest with lights, waterfalls, crazy bees and multiple multi coloured mushrooms of all shapes and sizes "} +{"id": "6002954", "video_name": "baf9d8ae-940f-51a5-818e-bab6c9032806", "text": "A Middle Eastern man with a large gold chain was driving, his hands on the steering wheel "} +{"id": "6004607", "video_name": "53ce6434-b1d6-56b6-8296-920f46fd4949", "text": "A Bird in cage hanging with a tree with moon background "} +{"id": "4004215", "video_name": "86e8fdeb-bddc-52e3-a63a-895add3ab71f", "text": "a cinematic wide shot of an energy shield surrounding a translucent android with the electronics visible, walking forwards, 8k, backlit, ultra detailed, dramatic lighting, very high quality, rim lit, subsurface scattering, translucent, beautiful, masterpiece "} +{"id": "3005252", "video_name": "3c3ca32b-a0ee-5d04-a709-e8697bca0ff5", "text": "A white ball grows in the snow "} +{"id": "6002492", "video_name": "24929322-a6d3-5a41-9b2c-3b87ad8f63a4", "text": "John Burningham and Pascal Campion animation of christmas "} +{"id": "4003726", "video_name": "d67500fc-05fc-53ac-aea4-31b606af6828", "text": "a 30 second alien invasion now "} +{"id": "3003684", "video_name": "4fd055da-b10f-58bf-bdd5-b607b95eda40", "text": "Her journey from a small village to a renowned artist inspired many, "} +{"id": "7002698", "video_name": "1fd4bd22-4b36-5646-a443-40e7399a872f", "text": "A haunting satanic figure emerging from the shadows, eerie atmosphere, 4K. "} +{"id": "1003878", "video_name": "476df88a-e9d4-5a88-b46f-f298dc934583", "text": "create ambulance which admit a patient in a hospital "} +{"id": "2005014", "video_name": "48df0b2d-25d8-5939-8598-71584accdda3", "text": "elite dangerous odyssey , starship going into hyperspace jump, Cyberpunk coloured, 8k, photorealistic "} +{"id": "0005532", "video_name": "1c65a307-8d8a-5824-a0c1-7a1d70a214b8", "text": "A scenic shot of a rural village nestled in the mountains. "} +{"id": "2007648", "video_name": "8b921d91-e22f-5241-9b59-5683cb7a4d4d", "text": "A cat lying on a pillow "} +{"id": "0003096", "video_name": "36f2c10d-fe83-51c3-8738-bc042ba2ce2b", "text": "dancing flamingos in the deep ocean with bubbles, fish and little insects around them "} +{"id": "6002688", "video_name": "0f72ddf4-9f73-5c23-bb24-4e210a0d064a", "text": "Watermelon, sliced watermelon, splashed watermelon juice,Red background, ice cubes, dynamic, summer,high details, best quality, 8k, ultrahigh definition, hyper skin details "} +{"id": "2007949", "video_name": "7c034d21-4821-55cf-bfdf-5e5006f7c601", "text": "crypto trading chart Message: bot will work (Font: MODERN) "} +{"id": "5001808", "video_name": "c82af33c-015b-5ff0-8a24-1112f29fe891", "text": "paper airplanes fly in the sky "} +{"id": "8002207", "video_name": "d1f0a038-72c9-5c53-96f3-118b50ec3ed7", "text": "Create an image showing the imposing presence of Macedonian soldiers in Greek cities, symbolizing the loss of autonomy. "} +{"id": "4004256", "video_name": "054b85e3-921d-50c5-b33c-506cf16b5c93", "text": "Men helping other men who need help "} +{"id": "6003601", "video_name": "4a2604ec-ba55-5567-b2d5-190279c3b74f", "text": "expresso Martini being pured into Martini Glass "} +{"id": "1003980", "video_name": "49814b3f-0239-5127-a95f-7efc0a19da56", "text": "glowing colourful lanterns in sky in night city view "} +{"id": "1004991", "video_name": "5c3f6e51-dc0a-5338-bdba-c75f0ad88686", "text": "cartoon monkey on a rocket ship blasting into space "} +{"id": "2006032", "video_name": "a0b7e064-3ae5-5fa4-ac6b-193467042bc6", "text": "12 year old boy studying facing the bedroom window, sitting in a chair, realistic "} +{"id": "1003441", "video_name": "3fc01a1d-8f2d-5cfa-bb0d-c41baaa4c6b1", "text": "make an attractive man with dark hair talking on a podcast and sitting on a chair "} +{"id": "7003854", "video_name": "176c0d00-39c8-5a2e-b4ea-beb1542cd678", "text": "A colorful hot air balloon gently rises into the sky, surrounded by fluffy clouds, in a serene ascending motion. "} +{"id": "3003291", "video_name": "2c4aaa49-7f18-5d0a-a012-94f3adb719ca", "text": "generate as a same a girl lived in a small village. Message: 1 Attachment "} +{"id": "1005373", "video_name": "62dab9d9-4606-5a71-ae65-bc2663ed984f", "text": "However, one night before the siege, sacred dreams began to guide sultan. , cinematic ,reliastic , ultra hd "} +{"id": "3006965", "video_name": "ebc3080d-f87b-5e49-aff7-e7b2fd1b06b4", "text": "marvel comic style, shang qi fight with iron man "} +{"id": "1005647", "video_name": "67c1cef7-80a8-59f6-9989-db9f025a936b", "text": "a girl is running on the street, where are many people there, camera flying record background "} +{"id": "7002891", "video_name": "f8b73f93-8562-5bd1-bd23-197cdcc8afa3", "text": "dodo bird jumping into a coffee cup, 4k "} +{"id": "0004121", "video_name": "038f0c3e-5b79-5320-9e77-98eca72531c8", "text": "epic battle between characters different characters: pawns, bishops, knights, rooks, one queen, and one king "} +{"id": "7003645", "video_name": "7bc76fe7-c7fa-5dbb-96ee-811350d5bbd2", "text": "4K 1960 HD video Spaceship travels through outer space Surrounded by stars "} +{"id": "3005059", "video_name": "a46c633e-f5d1-5f36-b2ec-aaeb6a08860f", "text": "paguridae of the squatter house, as abstract Chinese text figure against black backdrop "} +{"id": "4002546", "video_name": "5b50a25a-bf42-5400-b32e-aec1ce7e0579", "text": "HD cinematic, big cruiser crashing to city Dubrovnik "} +{"id": "7002634", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "martyrdom of saint Sebastian Alejandro Jodorowsky 70s Art Film "} +{"id": "0005450", "video_name": "1af806ad-fdd8-5e05-a1d7-0a05ebe06452", "text": "humpback whale swimming towards screen in black background "} +{"id": "6004702", "video_name": "e16a6ee3-2024-5805-b1d0-eec4c119ccbd", "text": "bedroom, large windows looking out the city in the future, cinematic, 4k "} +{"id": "7003740", "video_name": "a3baf2fe-da96-57ac-abc1-2b9351e97c96", "text": "a planet with hot vapors oozing from the surface, cinematic "} +{"id": "7003890", "video_name": "6add2ba6-c720-5ef1-af4d-d41910e16a84", "text": "a video where a wite horse is runing in a green rever field for 6 seconds. The horse in runing to the near city and there a war started. There are demolished buildings and cars on fire. Dead soldiers and people. Then the horse got shot. And felt down then the camera is turning to the sky. "} +{"id": "3003847", "video_name": "5b523562-6c3a-5e8b-9549-c805cacc415d", "text": "The bank lobby is bustling with customers. Security guards patrol the area. "} +{"id": "8003754", "video_name": "ba9e6721-4305-57a9-a195-91382ba94cc0", "text": "Beautiful princess bride in glamour bride fashion, veil and tiara walks in Cathedral with flowers, beautiful Atmosphere, epic, hyperrealistic, high resolution, half body, "} +{"id": "8001847", "video_name": "ce578c25-dc27-5be1-b52e-daa92cc435e5", "text": "green water city, scifi, 8K, UHD, Realistic, cinematic "} +{"id": "0003114", "video_name": "374ff38a-6b24-5670-82be-ea20fff581c9", "text": "woman meditating with illuminated chakras, temple "} +{"id": "2007787", "video_name": "860c885c-d492-54a1-9c47-a9eadc5823e3", "text": "Futuristic African cityscape, people walking calmly. "} +{"id": "7003292", "video_name": "2169119c-8755-532c-8667-d70caef13339", "text": "a honda cbr650r crash into the tree "} +{"id": "8002060", "video_name": "140c2089-407f-55f2-b709-27629cbc785b", "text": "Cinematic animation of succesfull man standing beside plane, foggy condition, midnight, bright moon on sky "} +{"id": "4002061", "video_name": "2774b4ee-5112-5c57-bda9-34512e78833b", "text": "hotel building at night light blue and red neon with glitch effect "} +{"id": "6003317", "video_name": "807b2fb7-4e8d-54aa-a4fe-64bf08d01bd4", "text": "The lion and the moon queen form a connection, and he vows to create a harmonious life on the moon. "} +{"id": "2005214", "video_name": "8193e4ea-6cdb-5e24-b8e3-1a84b403d8fe", "text": "side by side view of an object "} +{"id": "2006527", "video_name": "0027bcab-dd64-548d-9780-517157c5ce93", "text": "Cyberpunk surreal style, colorful, detailed full body features, mochi art, meticulous, 32k uhd, strong body upper body lower body to feet clear features. "} +{"id": "8001803", "video_name": "92989545-ec52-5498-84a3-41e86fd41832", "text": "man driving a old pickup truck, looking disgusted by the music he is listening to, then throwing the music CD out of the window. "} +{"id": "0005600", "video_name": "1dcbd29e-f789-5009-91b6-5703a901a8fe", "text": "accident on road with ghost at night surrounding scary "} +{"id": "1006699", "video_name": "7ac408fe-13c4-5afe-a82a-607b57606603", "text": "A horse skiing in the snow "} +{"id": "6003791", "video_name": "b5b3c231-0186-5c9e-978c-9dddf4ed8316", "text": "a little boy riding a bike away from the camera on a green landscape with snow filled mountains in the back "} +{"id": "7004958", "video_name": "ac19a28a-3a35-59ed-859b-23d54ad9ac0f", "text": "a young man plays the guitar a mall food court "} +{"id": "2005627", "video_name": "c9b8cd32-4c06-59dc-8369-774675441721", "text": "we are praying to God for blessing "} +{"id": "3003780", "video_name": "e4794274-d882-5049-8c12-c4344007fcc2", "text": "man win a lottery and counting money, laugh, hyper realistic "} +{"id": "1004101", "video_name": "4bed6dc7-cb78-5b70-b74c-b3ea80ecd38a", "text": "dark shadow figure with bright red eyes in a trench coat and wide brim hat stands in the doorway and disappears, 4k "} +{"id": "1006795", "video_name": "7c746a85-f884-5189-93ff-e13a4d9916c0", "text": "video for anounce Christmas days to people who like caravaning. "} +{"id": "3004293", "video_name": "313f4148-947c-5f4f-9f3e-1d39f6f916df", "text": "Empty bench inside an old police station made of wood No one waiting. A tamil bearded police officer woke up from his sleep. His name is Murugan. "} +{"id": "0003961", "video_name": "00a40e50-0d34-53c7-bc09-c1474b43ebf3", "text": "animate the alien that possibly is real "} +{"id": "8001652", "video_name": "75508211-4adb-57f0-acb3-adfd4d414d9a", "text": "gtavi fight against machines transforms into a dance of harmony between the organic and the artificial "} +{"id": "2007713", "video_name": "801d4687-fa59-5542-bec4-69c199358340", "text": "moving accurately without stuck frame with sharp detail without blury character "} +{"id": "0004969", "video_name": "127657b1-12b4-5fec-aa9b-3e7ce5a6de5d", "text": "skahespherian drama staged in a commuter train "} +{"id": "1003738", "video_name": "45054152-9206-5ad9-a95e-b0caae0a1f95", "text": "illustration style, 2 year old cute kids, bedtime routine, disney pixar style, bedroom with four poster bed "} +{"id": "2006869", "video_name": "a6326d7d-a06c-58f7-a374-7a10b66c9bbc", "text": "cute 4D animate morning atmosphere, sunrise from the east, birds flying, beautiful rice field scenery, clean streets, "} +{"id": "7003232", "video_name": "f07c4945-3f85-5f17-8c48-1b0b268542ba", "text": "create a high quality anime video with a water drop falling from sky on to the land and helps a seed to germinate "} +{"id": "4003703", "video_name": "f39f7ca0-81d2-5d78-a25d-fedc665ed73e", "text": "a giant lion moving towards deer in a deep forest , greenery around there , high tall trees , three deers and one lion , the lion is very scary and huge "} +{"id": "0003783", "video_name": "43519bd8-7ecf-54a9-bf48-f5d670014e94", "text": "Craft a heartwarming video that captures cherished memories and spreads joy throughout the celebration "} +{"id": "6004602", "video_name": "b26c944d-fa36-548c-9cb1-aad81aab5652", "text": "A desert landscape with gold leaf footprints and symbolic sound waves or glowing orb in the sky. "} +{"id": "6002669", "video_name": "24beeaa8-de84-519a-854b-14e731aa14a4", "text": "first person view of opening saloon doors and walking into a bar in the wild west "} +{"id": "6003742", "video_name": "90fc8eca-a53e-5d44-879f-b252753dd7de", "text": "original dark creepy techno industrial machine death metal mechanisms broken pixel sega mega drive game Timelapse "} +{"id": "2007191", "video_name": "8a3f5671-9876-5d16-866e-9dead91999dc", "text": "magical deer with big horns, magic, glowing, flowers, nature, fantasy "} +{"id": "2003327", "video_name": "f637fc73-6bef-550d-9e3b-b0803a2f5812", "text": "a chinese nursing home, Showcase community events and group activities "} +{"id": "8002260", "video_name": "73c4bca1-c3a2-5e5e-8739-c830e2401756", "text": "1950\u2019s super 8 footage of crumbling mountainside "} +{"id": "2005563", "video_name": "5060f285-b7ea-55cc-a198-40531e743f91", "text": "eagle flying high in the sky and looking below at the jungle Message: 1 Attachment "} +{"id": "4002432", "video_name": "6132d150-688a-59de-ad54-7fb5cb7c8ab1", "text": "21 YEAR OLD a curious alien girl with four eyes, and beautiful smile ,wearing a beautiful red gown. "} +{"id": "2003742", "video_name": "bc82dd42-12ff-591c-8aa8-bd7ddfd8a8c7", "text": "mushroom cloud in the background as soldier stares at the horizon "} +{"id": "1006636", "video_name": "79a17eef-8147-5015-8980-ce38d6b32031", "text": "anime, motion, 4K, UHD, film, highly detailed, best quality "} +{"id": "8001873", "video_name": "a85e2815-d010-57b2-99b3-950effe3b294", "text": "flying planes into world trade center september 11th 911 "} +{"id": "1006553", "video_name": "780592b9-152d-5747-8268-e95faec9f47b", "text": "hundreds of cars dropping from the sky into a city "} +{"id": "8002863", "video_name": "2376fe12-3536-5395-b9ce-f8be42d0b4e2", "text": "The jungles that once echoed with its presence now stood silent "} +{"id": "1003898", "video_name": "47f3d939-2664-5140-9990-15f4678b29b2", "text": "barbies in the garden with snow fall "} +{"id": "2005135", "video_name": "c4cf03e3-9a9e-5dd7-8bbe-db57637d133d", "text": "The man who plucks the strings of the guitar "} +{"id": "1004766", "video_name": "582a3fcb-5068-5e2a-90fc-dd7f18e4a3c9", "text": "Thousands of arrows fell from the sky in the burning ancient Chinese city, and a huge plaque with the name of the \u767d\u5e1dburned and flipped and fell "} +{"id": "0005733", "video_name": "2047e74a-885c-574f-af2c-742eeb08df26", "text": "Give thanks for each night.Give thanks for each day. "} +{"id": "7003773", "video_name": "c4cbb3d2-0396-51ed-8444-6f933587ced4", "text": "a realistic portrait of a young man smiling on a paradise beach "} +{"id": "3003408", "video_name": "f40e83a5-353d-5f67-9bf0-47d2dd38f16a", "text": "In the morning, the husband was woken up by the alarm clock, while his wife was still sleeping in bed "} +{"id": "2007892", "video_name": "aafeb6a8-fe95-5fd3-b715-959f35204352", "text": "blue color car driving road trip on foggy road animation "} +{"id": "8001743", "video_name": "9960afe1-d533-5f2d-aeef-e06240a7ac97", "text": "a video from a airport Klagenfurt who takes a Austrian airlines airplane "} +{"id": "7003297", "video_name": "7116127a-35ba-50dc-a2a2-6a7a4f1b9ca7", "text": "The little elephant from the fairy tale "} +{"id": "1004386", "video_name": "510671f4-6f6d-5083-a32a-4bb20f5eef46", "text": "an attractive banshee woman rising out of ocean and screams as the water turns red, night time, HD, realistic, cinematic, motion "} +{"id": "1004023", "video_name": "4a9b00c5-a7a0-50ed-944a-bd37bd9e9378", "text": "a sword man walking toward us, bright light, low angle "} +{"id": "2003585", "video_name": "9a488c4f-e561-5fdf-97a9-3229e5b0e46a", "text": "girl, headphone, sitting, bedroom, listen music , red hair, "} +{"id": "2007548", "video_name": "a9e9cfb0-1286-58e0-8988-273cbbf2b24d", "text": "a person is typing texts on his phone "} +{"id": "8002386", "video_name": "24e826eb-8874-51f5-9b44-a09ff10bc3a4", "text": "Solar punks city scape with fountains and multiple suns and moons in the evening sky. Video needs to move closer to the city focusing on a beautiful character that looks like Fifth elements opera singer. "} +{"id": "0006013", "video_name": "24fa3d77-3201-5f61-a0ff-931557ed582b", "text": "pray dua and looks to clouds "} +{"id": "7002944", "video_name": "1eab6be0-4a3f-57aa-a9cc-3c4f7d1ff0a7", "text": "Generate an 3d image of what a solar polar bear would look like "} +{"id": "1003022", "video_name": "3782aac8-8153-5e0d-a1cf-b2c232efb7b1", "text": "AI video podcast author, homepage background video profile "} +{"id": "1005198", "video_name": "5fa8ab4e-4c34-5780-bd75-18b7386ca4d2", "text": "corn dandelion humanoid figure monster wearing hijab, symmetrical, highly detailed, digital art, sharp focus, amber eyes, elemental glowing "} +{"id": "3006884", "video_name": "46a2db7b-e2ae-550f-aa54-292e7c3b7336", "text": "the boy mouth speaks,hair blow in the wind and background ia turning "} +{"id": "1006665", "video_name": "7a1275a1-c64d-5eda-8a48-ef63cb701744", "text": "a holographic gold glove made up of technological elements. Cinematic, masterpiece "} +{"id": "4002053", "video_name": "49ce3a81-c5d1-5121-86f4-f9521fab4377", "text": "girl hugging her dragon like a stuffed animal while the dragon blinks and smirks"} +{"id": "0004553", "video_name": "0b1b1616-6914-5bbe-bb16-26976f4cae47", "text": "a boy find his friend in village "} +{"id": "2004322", "video_name": "8fd46d94-fb25-5b3d-8ccf-9cb3ec02ae00", "text": "the top gear crew walking towards Cheeky Nandos restraunt from the carpark, 4k "} +{"id": "2006025", "video_name": "02b12b0b-8876-538f-aadb-1dd2a3cbde9b", "text": "Cyberpunk city streets at morning cinematic "} +{"id": "8002862", "video_name": "0b72fbf2-925f-5106-92f1-79cd3d5281c4", "text": "Cyberpunk Message: Poshel Naxui (Font: MODERN) "} +{"id": "7004480", "video_name": "4911e6bb-6dd5-5f2d-85a4-28d65ff80df0", "text": "octopath traveller, jrpg characters walking in the town, chibi, camera pan following to protagonist "} +{"id": "0003487", "video_name": "3e761ac0-9b45-50c8-943e-e215e76bc7c4", "text": "and flying cars Message: 1 Attachment "} +{"id": "4003149", "video_name": "18798568-25e3-555a-92f8-c1a3cc1aacf1", "text": "krampus on the roof of a house, night, winters, disturbing and nightmarish atmosphere, hyperrealistic "} +{"id": "7003180", "video_name": "a32c7e4a-5bdc-54fc-b066-b928793307a2", "text": "Two huge armies face each other in Renaissance style "} +{"id": "5001502", "video_name": "02d80b4d-0128-58f2-8ee8-216a908c62a1", "text": "Amazons, people wearing masks like tigers, line up in a row, "} +{"id": "4004679", "video_name": "bdb7bf7d-3549-5d52-8b68-08e7f9e3f465", "text": "Ensure that the child gets plenty of rest to allow the body to recover. A comfortable and quiet environment can promote better sleep and healing. "} +{"id": "8001324", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "This ancient Egyptian army fighting the enemy, with cinematic effects "} +{"id": "5001395", "video_name": "ccf598b4-8eb1-52ab-9367-b3df5b22f462", "text": "desroyed skyscrapers in NYC, Brown Fog "} +{"id": "0005208", "video_name": "169c4e95-2ac6-55dc-9e4f-f1d0720081f7", "text": "Create a futuristic scene of human colonies on distant planets or in space, showcasing domed structures, advanced life support systems, and futuristic transportation shuttles. "} +{"id": "3006746", "video_name": "00bad95a-7553-5b98-9770-d9eb1a5c8ebe", "text": "the children decided to give it a try,for kids cartoon show "} +{"id": "2003776", "video_name": "21e86428-909a-5cd3-b30a-ebea0a62a0ff", "text": "sharp, black rose shrinking, 8k, hd, cinematic, saturated, "} +{"id": "6004147", "video_name": "58ea0b9a-cea5-5f9a-a843-73c561150e42", "text": "a sand camel walking, style of leonora carrington "} +{"id": "6002907", "video_name": "253d8aef-7b7a-539b-adeb-289fb299ec64", "text": "When the bell rang, the students in the classroom sat upright, sorted out their books and waited for the teacher to come to class. After the teacher entered the class, he asked the students to read for a while, and then began to write under the blackboard, Unit3 Visit Hongkong "} +{"id": "6003281", "video_name": "98d374aa-d688-55d8-bc31-bf4b8f0ec8da", "text": "modernart fashion futurism alternatehistory rococopunk punk vogue etsyshop modeling aiart photography photorealism retrofuturism retrowave vogue voguefashion makeup makeupartist hairstyle hautecouture scififashion "} +{"id": "2003040", "video_name": "7de82d00-302b-54d3-9e0a-b45b003f642a", "text": "Cinematic, A light rain is falling. Tea pickers are picking tea in a tea garden, 4K, anime style "} +{"id": "0006594", "video_name": "2f3764d0-e0b1-516b-a0e4-8608aae288d8", "text": "happy bumblebee flying through the sky "} +{"id": "4004348", "video_name": "98603708-05ed-5ffd-8cc3-f0d1c09c5da5", "text": "UFOs going and kids watching it real life 4k "} +{"id": "1003770", "video_name": "456ddf91-a7ec-5749-a9ba-4235316b659e", "text": "an alien invasion where there ar ezpmbies "} +{"id": "2006326", "video_name": "f1ae8cfa-5ee8-566e-8b81-f043eee82cf9", "text": "A gloomy, fragmented, dystopian, and mechanical world where people move about. "} +{"id": "0003571", "video_name": "3fbf3efd-bcc8-59fa-8267-d16c8177d35a", "text": "At 24 years old, he leads a quiet life, unaware of the extraordinary power dormant within him. MANGA ANIME "} +{"id": "4003860", "video_name": "21ec82db-1ca2-5cc1-982f-073488205a19", "text": "Alliance of the opostion leaders Message: 1 Attachment "} +{"id": "1006284", "video_name": "73179f60-e567-5704-8697-7e387cbca6d1", "text": "sunflower in black sunglasses in a convertible on a beautiful road along the beautiful ocean promenade "} +{"id": "4003731", "video_name": "642eb5b0-f920-5869-8d96-5f0ea39563d7", "text": "Cute penguin waddling, animation, cinematic, intricate details, 4K "} +{"id": "4002328", "video_name": "57d1d439-0e85-5d94-a67e-12e2fe6f7eb4", "text": "realistic couple with wings on a rock "} +{"id": "3006969", "video_name": "ab828bb3-e16b-5e38-a68e-e8a07bc5570c", "text": "ultra realistic, highly detailed, photo realistic, horse standing in front of barn, cold breath visable, snow falling all around, christmas lights up, fujifilm XT3, 8k uhd "} +{"id": "0006312", "video_name": "2a7f93b3-d9eb-53d0-bb38-b5747da7d327", "text": "Director testing out the landmark features on the virtual camera to visualize the 3d scene and environment from mutliple perspective. Message: 1 Attachment "} +{"id": "2003497", "video_name": "161c3c6e-add1-5d75-84ed-52b92a08149e", "text": "silent film of man on his knees praying as the sky opens up, black and white, yellow, in the style of pencil drawing, low resolution, grainy, oversaturated, unever light "} +{"id": "4002171", "video_name": "a540ebd8-5f40-5e8c-ad65-120d49354a54", "text": "Gta 5 online character in a buggatti "} +{"id": "2005355", "video_name": "089541fe-fab8-51ac-94e9-56825b038bb4", "text": "a video of a soccer player dribbling past three players before scoring a goal in front of a stadium of 60,000 people. "} +{"id": "8002293", "video_name": "8c74992c-bab8-5646-a19b-98ab57d49293", "text": "writer who write amazing song lyrics "} +{"id": "4004854", "video_name": "9e391268-3810-5d8b-970d-c1f913a6f21d", "text": "Small airport, runway, a plane in the middle of runway, bird eye view, japan style, winter, snowfall, night, cargo, boxes, no houses, hangar, plane control tower, follow image guidance "} +{"id": "8003902", "video_name": "24db17d5-5218-566f-9a4a-573183bc8c57", "text": "hyperrealistic image like a Finally he levels the fields, lowers the valleys, covers the forests with foliage, raises the mountains and crowns them with stones. "} +{"id": "6002145", "video_name": "3b200231-a74e-5f9e-b15b-1863d88ac542", "text": "Green dog eating sausage in the desert "} +{"id": "2006463", "video_name": "6176361d-8931-599e-b883-bb9100e08dbe", "text": "electronic circuit, various trace gold, 15 hole, led green, led yelow, led red on, electron run over the trace "} +{"id": "3004507", "video_name": "bc8aa9b2-5ce3-5f5e-9b36-43c4605c213c", "text": "the parents are fighting, the child in the middle is crying "} +{"id": "3004163", "video_name": "3f853b41-39de-5c11-b036-625df6cb3068", "text": "I cute girl of 9 years old in a swiming clothes "} +{"id": "6002432", "video_name": "eab1cc4a-1a2b-5b5b-9f25-aad615c80bfb", "text": "Ten second video with a girl "} +{"id": "1005151", "video_name": "5ee3fef3-1004-53c8-a213-2cfe12389344", "text": "a person standing in front of a vision board covered in sticky notes and pictures, celebrating small achievements. ar:16:9 time lapse 4k motion 4 "} +{"id": "2003946", "video_name": "39e7fe44-e213-5026-b96f-0e0c5066165f", "text": "Epic planetary battle set on Earth, astronauts in the midst. "} +{"id": "4002976", "video_name": "33ada038-2134-57dc-9a9a-66fdfb815f47", "text": "first world war soldiers shoots in the sky "} +{"id": "2006986", "video_name": "355b0c60-19ff-5166-b59d-07792a9ea4ba", "text": "Panoramic View: The camera sweeps across the battlefield, revealing the enormity of the alien invasion and the destruction it has caused. "} +{"id": "8001628", "video_name": "85efaa9d-eb98-559c-b3ed-c9fee17b6198", "text": "An ancient snake of legendary red color "} +{"id": "2006440", "video_name": "2ea3308c-ebcc-5595-b985-1cef4d80e2cc", "text": "only background changing in surrealist style "} +{"id": "2003598", "video_name": "ebc4412a-aa36-5191-8c01-6f543a63c48d", "text": "a spotlight sweeps quickly around a dark parking lot "} +{"id": "4002783", "video_name": "ed42e2e2-8e3b-5ae3-ab66-d842bf6449ad", "text": "a flying delorean police car rises up into a dystopian futuristic city at night "} +{"id": "2004405", "video_name": "9495e5cf-55ca-56ca-939e-d9f26ac761a4", "text": "baby tupac shakuar performing live on stage "} +{"id": "2004585", "video_name": "15a10418-577b-5266-940f-84a5a70322bd", "text": "an entire anime episode of 10 min "} +{"id": "1003373", "video_name": "3e2d2563-381e-5b54-818d-6bd806f11e2c", "text": "Boogie Dance by Yagaman The Original "} +{"id": "6004432", "video_name": "427c98af-b959-5158-962e-eac17cef118a", "text": "Person walking on the beach near ocean by the sunset "} +{"id": "1004096", "video_name": "4bc87134-11ae-5fd7-b037-2c61f83b70a6", "text": "shree Krishna standing on the chariot pointing arrow in the middle of the war "} +{"id": "5001377", "video_name": "7f69db67-0c13-56af-8dc4-4e0950edb893", "text": "radiohead band members turning into a giant robot that flies through outer space, surreal style, david fincher and ridley scott cinematography "} +{"id": "6002500", "video_name": "a618bf9a-ce8b-5653-bcb5-6edd3105a8ab", "text": "a cat astronaut triping to The moon (a chesse moon) where lives a rat colony "} +{"id": "8001920", "video_name": "2ea5eaeb-becd-5317-878e-f86475abf982", "text": "Make the boy smile and wave Message: 1 Attachment "} +{"id": "6002636", "video_name": "45db7a88-1367-530a-aeb8-75534ed4a114", "text": "A boy in sportswear running on the night road, with a solitary figure silhouetted against the dim light "} +{"id": "7003340", "video_name": "c485c7cf-62c7-5e12-b034-708e2e0aa834", "text": "a vast Japanese landscape with cherry trees Message: THEO (Font: MODERN) "} +{"id": "0006491", "video_name": "2d6eb191-65ec-5bf6-a5fe-df3888832f0a", "text": "A maid wearing her sword is fighting three robots "} +{"id": "8003004", "video_name": "52233ef6-c35d-5f10-8dfd-28faedbb03df", "text": "girl, 17 years old, running from beach towards the camera wearing bikini "} +{"id": "2007443", "video_name": "af84a3ae-5f41-5256-a342-af3314b68665", "text": "Create a visual representation of a white rabbit with its long ears listening attentively. 3D 8K Disney\u2019s style Cinematic "} +{"id": "0004362", "video_name": "07c1d79a-7a96-5838-9d20-674ff9340bf1", "text": "a group of business experts helping a business grow its sales "} +{"id": "4002355", "video_name": "2667442a-d188-5686-b35a-98b47090735a", "text": "panning across a workshop bench filled with fascinating futuristic AI tools, cinematic, 4K "} +{"id": "3003739", "video_name": "b86dca7b-aa86-5156-b90a-fbeb7f402192", "text": "ancient Roman teacher studying at a desk alone "} +{"id": "2004419", "video_name": "db8d772f-4d28-560f-b6e5-c75af5b91c64", "text": "a man with a hoe in his hands is working in a field cultivating the land, clothes are white sheets, front view, face is not visible "} +{"id": "8001022", "video_name": "1350aaab-8246-5330-bcf6-afd7322bb174", "text": "animated cartoon about baby platypus named Cliffie experiences his first day of spring in Australia. He meets Mitzi a baby kiwi who thinks he is a duck wearing a fur coat. Then he meets Sid, a baby kangaroo who thinks he is a beaver wearing a duck costume. Cliffie thinks to himself \u201cI\u2019m not a duck wearing a fur coat\u201d, \u201cI\u2019m not a beaver wearing a duck costume\u201d. Then Cliffie asks \u201cdo you know what I am? to the audience. Cliffie then answers \u201cI\u2019m a platypus\u201d the end. "} +{"id": "2004299", "video_name": "88e9fcd3-ed13-5243-aea7-70f79107d60d", "text": "prince charles and bill gates shaking hands and laughing, photo realistic "} +{"id": "1005006", "video_name": "5c8e481f-1ec4-5a47-8bbe-729e2f8aa3e1", "text": "Snowhite walking through new york city "} +{"id": "7004419", "video_name": "90e23fb0-44e3-5080-8011-1daa31d93fe6", "text": "prophet giving his sermon to his disciples "} +{"id": "2003582", "video_name": "47e43e31-c689-5bab-b99a-6c5181fce88b", "text": "singer tom waits petting snow white cat "} +{"id": "4002410", "video_name": "91d6df9b-0786-5513-9248-1cc5a4be52de", "text": "A police officer doing skateboard tricks "} +{"id": "6004850", "video_name": "c03a4dec-4064-593c-931b-b3a320163151", "text": "a man running scared. alien invasion. phone notifactions pop ups. techwizards shows on phone. video clear 4k HD. city on fire. man is scared. "} +{"id": "0005060", "video_name": "13f2b767-3c9a-56e6-88ec-cbf583ab498a", "text": "a social video about how people affect the air "} +{"id": "2004012", "video_name": "2402ae2d-d075-578c-9e97-c037b89d65d4", "text": "glowing magic mushrooms Message: 1 Attachment "} +{"id": "8001426", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "Man looking up at the sky "} +{"id": "6004527", "video_name": "267d7ad6-c4a0-5cc9-a8ec-61759327ace0", "text": "beautiful realistic animated reindeer on a mug "} +{"id": "8001976", "video_name": "a697df88-3ba7-5a6c-a2a6-118bdd3b1455", "text": "A young girl scrolling through her phone, with lips moving , 8k, quality, ultra hd, animation "} +{"id": "3004541", "video_name": "eb2b873f-c608-534f-9cd2-29a8ddc771e5", "text": "two white cats in a room under the bullfight with sunlight playing "} +{"id": "1005009", "video_name": "5ca78800-f9c2-56e5-96c2-fc845dfe7eb2", "text": "the image Message: ethan rich (Font: MODERN) "} +{"id": "4003716", "video_name": "1e76dcca-c85a-5e05-95cd-b4dcf4baa374", "text": "Show Dr. Thornton and her team arriving in their vehicle, capturing their expressions of determination and curiosity. Use camera angles to emphasize their journey into the unknown. "} +{"id": "6003665", "video_name": "0671ea40-b7e2-5fe6-9798-87c1dd437da8", "text": "a police car blinking and talking "} +{"id": "0005954", "video_name": "23df8a3a-5b43-51ad-a90e-e590b8cc27aa", "text": "Do you know when we finally lose people dear to us? When we no longer feel the pain of losing them. "} +{"id": "8002750", "video_name": "ebb1ee3d-894b-54e1-8a3d-28599f24744a", "text": "flying above a futurtic city, with pink , blue, purple colors in the sky, cinematic, gs 15, 16:19 "} +{"id": "2003420", "video_name": "034cf4af-2ba8-52c7-adfa-3c3fda242dca", "text": "Whether God is looking at you or not "} +{"id": "6003522", "video_name": "50fb1212-073a-5eb8-93e7-ca77a3730c14", "text": "cyber punk style droid say good with the hand "} +{"id": "1005066", "video_name": "5d8f1145-d9bb-5bd4-8e03-0d312b2898f6", "text": "Envision Lily pushing through thick undergrowth, her eyes widening in amazement as she stumbles upon a majestic, glistening waterfall amidst the dense foliage. "} +{"id": "8001331", "video_name": "8e7ea79f-8a29-5cae-8ba0-2b26a94bacc3", "text": "A golden toad that spits out money. "} +{"id": "3005474", "video_name": "a827dc48-3c3f-5397-ab3c-7de6c87525a6", "text": "light flickering, clouds passing by, bird flying, gentle wind, nostalgic, a girl drinking tea at the sunset, studio Ghibli, by Miyazaki, hand drawn, vibrant "} +{"id": "6004710", "video_name": "05cf195c-8d28-5cd1-9349-8e40b71eac0d", "text": "a person moving\nTowards gojo satoru and gojo looking back "} +{"id": "4003977", "video_name": "7cf9360b-cef9-5591-a03a-47f4ed8dc8ae", "text": "A man looking up surrounded by people crying "} +{"id": "3004820", "video_name": "9c6141dc-73ff-5ed9-8836-f4386b4e7024", "text": "japan battle futuristic floating air ships "} +{"id": "4002617", "video_name": "67f56bf9-0711-53fd-bba1-d087ac325aab", "text": "a group of friends catching fish in a river with beautiful animated "} +{"id": "1006727", "video_name": "7b403523-35e6-5b79-ab4c-0398caeca265", "text": "Four siblings each throw one bean in a container at an ogre coming into the house one by one, and the ogre gets attacked by the beans and goes outside. "} +{"id": "1006396", "video_name": "7512e8f0-61bd-5ea3-a513-74bec0eed53c", "text": "a cat doing \u201csinging in the rain\u201d in place of Fred astaire "} +{"id": "3006434", "video_name": "39f5d863-d24f-5259-9ff1-e61195ee4eb8", "text": "house of cards on fire, falling, eagle flying in the sunrrise "} +{"id": "2005409", "video_name": "082cf730-9ac7-527e-9e4c-b541071ae7be", "text": "Aryton Senna driving Macleren f1 car in Brazil road with Speed of 256mph slow motion mode of camera with low angle camera to his wheel to eyes. "} +{"id": "0005382", "video_name": "19cf3d08-e88b-573e-8287-9dbce268dcba", "text": "Moses in gray robe ,right hand holding a wooden stick over his head, back view, sea water split apart shows a path in front of him "} +{"id": "1003377", "video_name": "3e423012-2c5e-5dab-91e1-c3b7cfe30ab6", "text": "Gloomy winter night, with snow falling gently over a village covered with dark roofs and alleys, horror movie style "} +{"id": "5001845", "video_name": "b56ad4cf-2368-590e-9a72-51f19ebb49d4", "text": "weightlifting belt with FitGearz Logo written on it "} +{"id": "0005754", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya and Mr. Thompson sitting on the porch, sharing stories. "} +{"id": "2004442", "video_name": "b13f4edf-6698-5bcf-9860-d649762e7121", "text": "close up video of a sitting down moment of a woman where the woman is about to sit on a cactus in the middle of a disco with strobo lights "} +{"id": "1006479", "video_name": "768ea493-374a-5b4d-b45e-437c428f845a", "text": "a girl standing on big tree make on this pic move grass and cloud with effect of wind "} +{"id": "2005619", "video_name": "86d07a6e-3d47-5efa-bef4-2392b2944738", "text": "Cartoons for children, the cat chooses an apple "} +{"id": "0005170", "video_name": "15f7e539-99f5-5eeb-8252-c24eafd177c4", "text": "animate spiderman standing in the street "} +{"id": "2006596", "video_name": "152808c6-78ab-5191-ba32-f16f8a89d656", "text": "Ramu gave his food to the lion, and the lion thanked him before leaving "} +{"id": "8003629", "video_name": "77cdde84-c8de-5487-9600-0c0ae18eee9f", "text": "The crow soaring through the sky, feeling content and refreshed "} +{"id": "3003377", "video_name": "ce4501fd-95fa-5093-933b-e0b70e836ef8", "text": "generating video Tractor Tim accidentally discovers the neglected garden and decides to explore it. Inside the garden, he finds mysterious plants and magical flowers. "} +{"id": "4003405", "video_name": "7b0bb6d3-9979-5350-bbd8-c2beb886cb17", "text": "Hogwarts castle being invaded by cthulhu. "} +{"id": "1006249", "video_name": "727c388a-8b38-58fb-8d8c-f36e3cae87d5", "text": "a bunch of papers and documents over a desktop Message: RUBEN (Font: MODERN) "} +{"id": "8003148", "video_name": "f35a394f-858d-5e67-b8e3-bfb3ac04ec2a", "text": "a black and white checkered background with a sphere in the middle, trippy, optical illusions, optical illusion art, creating an optical illusion, an optical illusion drawing, illusion psychedelic art, opart, optical illusion, op art, computer generated, optical art, an optical illusion, black and white vector art, op art with big bold patterns "} +{"id": "3006199", "video_name": "bec65c5e-8f3c-5cfb-9500-fb928afc80f2", "text": "Space Marine coed locker room on Starship, cinematic 4K, panning close up "} +{"id": "6002510", "video_name": "7ca62762-539d-50ba-8dfb-b9292c3120a3", "text": "a bunny and a meercat walking in the middle of a magical forest with vibrand colors in the sunshine "} +{"id": "6003625", "video_name": "b9af23b9-a46d-5c76-ab4a-4a25129dbfe0", "text": "A man sits in a dark room near an open window and smokes a cigarette "} +{"id": "6004456", "video_name": "4d2ffb17-a84f-5779-8e67-7585e0ba81f9", "text": "background for starry video in motion "} +{"id": "1006001", "video_name": "6e40a099-bea2-5578-8c67-454b62d4f0ff", "text": "two snakes moves smoothly on the tree of life in Amazon jungle, wide angle, mysterious and magical lightening "} +{"id": "5001842", "video_name": "a282f3bc-f3c4-5c04-815b-6c3fc34e3661", "text": "a royal bangle tiger dancing in the jungle "} +{"id": "2007719", "video_name": "8aa8de22-e7fd-58e2-869b-970c75179abf", "text": "Heart Music Orchestra Tik Tok Teaching Video "} +{"id": "2007971", "video_name": "9cf026d2-9e9b-5c30-952c-50f2403ef536", "text": "create a 17 seconds video of a home officer with an eco friendly computer "} +{"id": "3005998", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "Escape in the dark forest between a beautiful blonde in a black dress, and an ordinary corsair "} +{"id": "8002135", "video_name": "a52c51c5-95db-50ab-a2e9-f13b0dcd129b", "text": "cinematic look, fast zoom out from couple shopping in busy shop for christmas gifts to the earth "} +{"id": "7003306", "video_name": "a3187e95-833b-5a1e-9ae6-542b98bb18a1", "text": "woman dancing at the shadow of moon, high resolution, hyperrealistic "} +{"id": "8002008", "video_name": "f8cfa143-ecd0-5a99-9aa0-43be0672c92e", "text": "a man with all the features of all races of human beings "} +{"id": "6003598", "video_name": "2042db8d-781f-5395-b08e-2fdcd3d14247", "text": "a 70s art house film that starts happy but it gets strangly darker and creepy at the end "} +{"id": "8002899", "video_name": "cf3480a6-312f-56e7-979f-d98df7fab262", "text": "venom face Message: WPSI (Font: RETRO) "} +{"id": "6004142", "video_name": "98aca9b5-42d2-5869-b527-a3e4351be4d7", "text": "A scene of a scenery sun rises, day goes on, sun sets "} +{"id": "0005361", "video_name": "1978bc51-a5bf-59f8-98de-98841e99599d", "text": "elon musk jumping from the moon to earth animation style "} +{"id": "3003043", "video_name": "3a528114-192c-5f5b-a9e8-844dec41e751", "text": "A colorful antelope runs under the stars, though surrounded by cold and snow. "} +{"id": "6002069", "video_name": "9272a9da-8a47-5ca4-bd27-7a1e53f37094", "text": "a woman sitting by the window narrating a story with coffee next to her on the table "} +{"id": "7003117", "video_name": "59a84318-6536-5350-9bdc-ff3465d463c9", "text": "Create a surreal animation where inanimate objects come to life in an abandoned city, revealing secrets buried for centuries "} +{"id": "0005725", "video_name": "20321512-20f3-52b0-94d1-97515c4e73e4", "text": "In the forest, mushrooms seem to be whispering, sharing the wisdom of survival, mysterious and psychedelic. "} +{"id": "0006932", "video_name": "3576d06c-75f8-5aa2-9942-ce7cb5bce6a4", "text": "A young man named Rohan is sitting in front of his laptop, browsing through various online courses in digital marketing. He looks excited and curious about the possibilities "} +{"id": "8003377", "video_name": "162d544e-3f0f-5888-a5c8-fc23ed5deef6", "text": "make me a video of a guy from the rain at night "} +{"id": "0006309", "video_name": "2a756c95-cf71-5ee0-8e90-26caf7bbd2eb", "text": "A luxurious Car Garage contaning Sports Cars and Lowriders "} +{"id": "6002892", "video_name": "63f92248-cb4d-52d4-9441-98621b880ed7", "text": "Dracule Mihawk from One Piece talking in the style of anime "} +{"id": "2005568", "video_name": "78cc7d8f-ff9a-5e1f-98c9-0fe42a914e3b", "text": "A small sunflower seedling breaking through the soil toward sunlight. "} +{"id": "3005203", "video_name": "7bf90667-f815-5caa-832f-f61f5de225a0", "text": "a close up shot of a old age man standing near highly detailed black coloured vintage car, inward zoom, high quality, 4k resolution, "} +{"id": "7003105", "video_name": "ece6f278-357c-5bcc-b7b2-50553b46a5ce", "text": "At the foot of the hill in the early morning, a young woodcutter wields an axe, cutting down the tall trees. Animation style "} +{"id": "4004048", "video_name": "f70578e6-6eb8-54cf-b459-eeefc87c5f26", "text": "the brave womwn sarah a legend in the town "} +{"id": "0006034", "video_name": "2569be3f-0d8a-5b85-bc21-ccd5466a8585", "text": "a blue power suit emerging from the ocean "} +{"id": "3005732", "video_name": "edf1761e-e797-5135-9ea4-c9f7d63601b8", "text": "Rows of cryogenically sleeping people in Brutalist Grid Map wires diodes Alfred Stieglitz grainy black and white 1900s "} +{"id": "3005357", "video_name": "82c5e7f7-5be4-5cdc-940a-1edd8605ff20", "text": "a black cat that is colored in electric colors that mixes music an weares dj headphones "} +{"id": "8001218", "video_name": "4a7b04cb-7de9-5b3f-ae05-c1aa37d40525", "text": "a cellphone format video with vs in it "} +{"id": "8002374", "video_name": "ee4c0978-4c4b-5842-9ee0-a06f5ebff376", "text": "anime style, An image of Harry Potter discovering his acceptance letter to Hogwarts School of Witchcraft and Wizardry in the cupboard under the stairs. "} +{"id": "6003964", "video_name": "ebc46914-b032-5d45-9a22-e7025dce3ed4", "text": "black screen with green code being types in very fast "} +{"id": "8003172", "video_name": "880d0598-32d6-5915-a6a2-498a8f651d30", "text": "The Hidden Jungle Entrance:\n\nA mysterious, dense jungle with lush greenery. "} +{"id": "6003605", "video_name": "b8fa1e4d-a124-5aa6-bc38-cf447e473e99", "text": "Music video showing the members of The Beatles reuniting and performing live in the present "} +{"id": "5001117", "video_name": "7b8f7370-f8a7-5060-aedd-de8557641765", "text": "man with white cat in the temple "} +{"id": "4003536", "video_name": "da66b530-8ada-51d3-a58e-2e80d979f745", "text": "1969 white Shelby abruptly stopping in a alleyway during days close up shot "} +{"id": "6002553", "video_name": "88369775-dd65-5aa3-b20d-def9229c0a08", "text": "soldier helping woman escape from zombies, realistic "} +{"id": "2007549", "video_name": "ce4af6b6-8c99-5aa9-a47a-d4278e8d677a", "text": "big light irradiant bulb floating in air "} +{"id": "7004947", "video_name": "0fba8459-da47-55b0-9d7a-4e657d598a58", "text": "Portrait of blinking girl with short orange hair, smooth doll face feature, intricate oil painting, high detail, sharp high detail, manga and anime 2000. "} +{"id": "7003731", "video_name": "5bba7930-e271-57f6-bd20-a93470cebe93", "text": "a landscape or star system that is mpowering "} +{"id": "7003648", "video_name": "52e025fe-6114-5d45-ba02-63f5882a9ef2", "text": "male rapper in Ethiopia, sitting front of his home, rapping, his girl next to him, 4k, detailed "} +{"id": "3006039", "video_name": "4ee14a2a-2a5c-5549-b3f4-c3a470a9a02d", "text": "woodstock music festival 1970s view master style "} +{"id": "6002574", "video_name": "74aa9403-6a05-54e4-b7f4-7152be3cd0d2", "text": "Hands picking up a photograph of a table "} +{"id": "1004256", "video_name": "4ed35735-5993-5d3a-9deb-ce806fcc22d8", "text": "cartoon cat with metal fur, green scarf, and a tail with a face on it, Matt Groening "} +{"id": "2005221", "video_name": "cdd6a953-7704-5e55-b3ef-e5a7e6f048cf", "text": "Traveling on the road, couple inside the car, view from inside the car, during the night, desolate, lights strange in the sky, aspect ratio 19:6 "} +{"id": "6004017", "video_name": "f65ee929-94f6-5e0c-8fdd-3cc045044703", "text": "a cinematic scene of two astronauts walking towards Mount Fuji "} +{"id": "6002149", "video_name": "fddf4fd4-11d5-5756-af36-6ff8ba136649", "text": "a naval operation in the sea "} +{"id": "2005798", "video_name": "90489210-284c-5a59-a270-465737ccf70f", "text": "two indian young women facing each other, standing long distance from each other and looking at each other "} +{"id": "4003649", "video_name": "7e887f91-3d1d-5761-adae-62a4ee9ff089", "text": "ozone layer when Montreal protocol was signed. "} +{"id": "2004925", "video_name": "da1f2060-692d-5a48-af62-b638dd096b55", "text": "Cantinflas, at a charity party in Mexico City in 1928, cinematic, hyperrealistic, \u2013\u2013 ar 16:9 \u2013\u2013 "} +{"id": "1005967", "video_name": "6d9fbb79-a627-523e-8c73-eeeb104ff61c", "text": "Black room with a yellow door and green dogs "} +{"id": "2003070", "video_name": "33d8941d-fa57-5b0b-8374-86a36103275d", "text": "a soldier is standing at the center of battlefield and cheering up his comrades "} +{"id": "7002060", "video_name": "02c59cdd-20bd-516a-bc67-840858ff3f02", "text": "One day the farmer fell very ill "} +{"id": "2005743", "video_name": "a5aa67fe-5548-5d5e-a502-1ba8f6f25dc8", "text": "an illumated lotus flower, ar 4:3, golden ratio art, "} +{"id": "7003770", "video_name": "2e476eec-e7dc-53c6-888c-5489dd12ef34", "text": "there are researchers and scientists who have been exploring the possibility of the existence of vril. Experiments have been carried out, mainly in the field of quantum physics, to better understand subtle and unconventional energies. It is believed that, as with other forms of energy, such as electricity, further studies are needed to fully understand the nature and benefits of vril energy. "} +{"id": "6003333", "video_name": "70834b0a-4bfe-5b86-a7c9-a0ee71e2fdd8", "text": "Two guys burning in flames under the sun on a beach where beautiful women sunbathes "} +{"id": "6004179", "video_name": "f5e3a5b1-9cbd-5df8-9fde-4b28145a3a05", "text": "A traditional Spanish people full of people working and walking photorealist Message: Campus Rural (Font: MODERN) "} +{"id": "2006858", "video_name": "1bb8d0ce-0bb9-5266-9372-7ae01d83f01e", "text": "the country called the Philippines is wiped off from the map "} +{"id": "3006732", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "super 8mm footage of overweight builder building a wall "} +{"id": "2007826", "video_name": "d80413c2-86e9-5232-943d-2c9210fac13b", "text": "Show Varaha lifting the Earth back to its rightful place, symbolizing the restoration of cosmic order. "} +{"id": "8002915", "video_name": "2026b11b-1fbf-5115-922f-8472ecd31a75", "text": "A love that once burned like a fire, now a distant memory, a night sky of stars, a reminder of what once was and what could have been. "} +{"id": "2007126", "video_name": "531768da-b698-5f9d-8ae5-956fec268071", "text": "rainforest realistic 4K Message: unyo (Font: SANS SERIF) "} +{"id": "2005119", "video_name": "ccd03a13-139c-564d-bcfd-001a2e1091df", "text": "Corey, the clever crow, perched on a branch with shiny treasures in The vibrant forest with tall, whispering trees. "} +{"id": "3006958", "video_name": "252f3e1d-4f54-509a-ba6a-3b8babb0cd21", "text": "Bikini wearing woman dancing at the beach in front of a fire, full moon in sky, high quality "} +{"id": "8002149", "video_name": "88321b5f-dc8f-5cfa-9d71-f4b664e2cea8", "text": "Lila and Whiskers playing tag and sitting together, sharing stories. "} +{"id": "1006164", "video_name": "70d631eb-7660-5401-8590-4ebaecdcf879", "text": "margot robbie and scarlet johanson dance in underwear, crowd of people looking surprised in the background "} +{"id": "1003863", "video_name": "472b792e-fd2d-5f4d-9262-e2ce7d0e5895", "text": "some trees grow on the dollar. then mighty hand goes and cuts them off. "} +{"id": "4003450", "video_name": "7ab36dce-d6cc-5c61-9903-41b26338a1e5", "text": "Jezebel, a clever and cunning woman. "} +{"id": "4003136", "video_name": "d48ee67a-62d5-5127-b158-3f94c509e005", "text": "a vampire is smiling, close up photo "} +{"id": "8002409", "video_name": "20c54dca-48de-55a7-b756-6cf61d7851a5", "text": "consolation through turning away from earthly things 14th century engraved copper hiernymous bosch ,egypt "} +{"id": "1006238", "video_name": "724594ec-10e0-5110-8fad-65d062054cd1", "text": "a nimph catching a star in the space "} +{"id": "3003373", "video_name": "24f761ba-ed8c-5b65-aec2-d209b2d05996", "text": "On the endless prairie, in the blue night sky, a beautiful girl barbecued by a campfire, next to Alaskan dogs running back and forth, the tent has been set up "} +{"id": "7003210", "video_name": "e96e2382-474d-50a5-93a1-f10cc8bcf1fd", "text": "A Beautiful girl wearing a Indian traditional dress "} +{"id": "6002438", "video_name": "33f20182-77b7-5c97-a635-b812302e9a63", "text": "A 3d cartoon boy running through the street "} +{"id": "8003089", "video_name": "36722fc5-2827-50b3-a808-773765f9749a", "text": "snorlax is sleeping, 2d, 10k resolution in high definition, sharp edges, hyperrealistic, "} +{"id": "3003268", "video_name": "6f13f53d-f180-54be-b9a8-fb676b8c0de0", "text": "beautiful sunset , looking from a distance boats in the ocean Message: Amal Lukose (Font: MODERN) "} +{"id": "2006610", "video_name": "f9abcef5-b578-5f8f-9c7c-c122a96c4d86", "text": "sloth looking cool then he is going to the beach, then meeting two girls "} +{"id": "0003021", "video_name": "35b58c6f-6595-5ae7-83e1-fc81cca360e0", "text": "old footage from soldier attacking a wolf, cinematic "} +{"id": "4002961", "video_name": "04fc5c0b-29c7-56d1-9e1d-58b31c9dfdd1", "text": "Grandma goes forward,Flowers flutter with the wind Message: 1 Attachment "} +{"id": "1006599", "video_name": "78ebdf5c-537f-5ec4-bd0c-6081d65bd716", "text": "cinematic action skater dacing in las vegas, cinematic handheld camera movement, composition, framing, centre frame "} +{"id": "8003394", "video_name": "0c8da673-0d01-5e80-9334-c5eb2eca5d49", "text": "Make the cat in the picture wag its tail. Message: 1 Attachment "} +{"id": "7004045", "video_name": "ae75fd3f-f7f1-5458-84fd-49f006929c03", "text": "the water is full of bioluminescence, the spaceship engines are glowing "} +{"id": "8001035", "video_name": "6f6e1d5d-7a1a-5bd4-bcc7-63f58c74a6e1", "text": "Kendall Jenner and Bella Hadid in summer clothes looking at their phones on a burning island with a red sky. "} +{"id": "4003751", "video_name": "97eba988-8c9d-57bf-ac34-06381329d843", "text": "a dog attacking a dragoncinematic 8k UHD Hyper realistic "} +{"id": "4002496", "video_name": "c7c614f4-4b60-5799-99a1-4ca34edb3386", "text": "An escape capsule comes from the far reaches of space and lands on the moon. "} +{"id": "7003938", "video_name": "c09c17bd-1bde-59a4-adef-1bdaee1df464", "text": "Girl on the sunshine beach, wind, class of fish, small boat, 16:9 "} +{"id": "8002269", "video_name": "1bbc8e3b-5de9-5b1d-b404-a597ddacc335", "text": "A cozy corner in a dimly lit restaurant, where Rizwan and Sadia sit across from each other, bathed in the soft glow of candlelight "} +{"id": "8002001", "video_name": "01881e4c-d440-5b5f-9798-d6d76d1b4936", "text": "anime girl fighting hordes of zombies "} +{"id": "3004988", "video_name": "78a613c4-b08e-5c57-898c-ab542e128584", "text": "Horror with a sign that says Montemorelos an orchard full of oranges churches houses with oranges horrors Style Disney Pixar "} +{"id": "2003513", "video_name": "16acf697-33c6-5ad2-92bc-aae99a1f9cd1", "text": "A man is standing in front of a group of people, giving a speech about the importance of financial education "} +{"id": "1004733", "video_name": "57beea8a-e71d-5450-9450-357403ab6db8", "text": "Visual video : Transition to ants tending to the brood, cleaning and feeding larvae "} +{"id": "3003844", "video_name": "98a371b7-9237-53f5-87c6-251f15181003", "text": "Bobby the Butterfly with graceful orange and black wings flitting from flower to flower in A vibrant garden filled with colorful flowers in full bloom. "} +{"id": "7002274", "video_name": "617a669c-b108-5ad3-a24c-e4588fc41b7f", "text": "chicken burger in galaxy of french fries "} +{"id": "2004357", "video_name": "17567366-d6b0-53f9-952f-bff2e82373d4", "text": "a small dog brown, pomerania mini brown, dancing happy "} +{"id": "2003229", "video_name": "89940277-15ad-5b4d-b672-e09c0006a21b", "text": "I want you to create a video of a young woman working at her desk with a satisfied smile. "} +{"id": "0004555", "video_name": "0b326044-09d9-5ae0-8fac-baf1e3cd380d", "text": "andreas Wijk is singing on stage "} +{"id": "0005711", "video_name": "1fe99be4-6ef8-5ac8-9ba8-aee842c34599", "text": "Cartoon Flash Animation Message: 1 Attachment "} +{"id": "0005670", "video_name": "1f148418-54d3-574a-bdb1-42e9fe73fa2b", "text": "view of a sleepy rainy evening from inside of an urban boho inspired bedroom window with coffee sitting on a desk with a laptop playing music. neon signs glow from outside the window. color scheme dark blues, magentas, purples. simple loopable activity. "} +{"id": "2006433", "video_name": "7a0ef2ac-3127-5ab3-8a2f-b4087d00154a", "text": "A man picking cashew nuts from a tree "} +{"id": "3006207", "video_name": "71c9d1e9-14b1-5d21-afdc-6ad834cad6b7", "text": "slight up and down movement of an old space stating floating in the air, clouds slightly moving from left to right "} +{"id": "4004226", "video_name": "52564e8c-46b4-56c7-ac90-ba0a9786bd63", "text": "a women in the jungle, wearing jeans and shirt, fighting wit a bear, realistic "} +{"id": "8003783", "video_name": "5b6a9384-87ad-52e5-8e68-8789c7d9722f", "text": "the millenium falcon racing the uss enterprise through space "} +{"id": "7003777", "video_name": "c1c2f53c-ba57-540d-ad84-32d6adcde674", "text": "a beautiful 27yr old woman with long blonde hair, smiling, wearing a christmas sweater, in a snowy woodland,dramatic light , Rembrandt lighting scheme, (hyperrealism:1.2), (photorealistic:1.2), shot with Canon EOS 5D Mark IV, detailed face, detailed hair "} +{"id": "7004288", "video_name": "73944deb-d6c6-59bf-acf1-8562a40d301d", "text": "man surfing, happy mood, dr Seuss art style, ar 9:16 "} +{"id": "8003972", "video_name": "a11ccfed-9bce-536d-a6ec-ecab27f29acb", "text": "make a text sign saying : New roleplay event incomming "} +{"id": "0005205", "video_name": "16930e48-da32-5fac-a3ae-141f238f8df7", "text": "matman stadning on rooftop of high building face back to camera "} +{"id": "2004480", "video_name": "0e93261c-af6b-5b90-9d91-0dc816955ee9", "text": "Add a cat in the big city for 30 seconds "} +{"id": "1004767", "video_name": "582b22b8-c1a3-5847-b94f-899d9e7a7f65", "text": "Calm, serene setting with greenery and a flowing river video with shiny pabbeles "} +{"id": "1006129", "video_name": "70544fd5-b334-5282-bd41-2cabf9689c06", "text": "1986 footage of violent protest at kfc "} +{"id": "3005785", "video_name": "9e81fd21-ae7f-5bf8-a682-17a4a256956b", "text": "The moon, our closest celestial neighbor "} +{"id": "6003318", "video_name": "58308e07-5890-5b86-9ad1-024af0f0f9cf", "text": "illuminated sign for the city of Wonderland from the 80s with bright neon colors "} +{"id": "8003709", "video_name": "cd753fe9-917d-5757-b0ec-5d524445e014", "text": "POV from behind, person running ancient roman architecture parkour course, illustration by moebius and Ben Bauchau beautiful, complicated labrythn pool garden, "} +{"id": "0005215", "video_name": "16a852cf-00a1-599b-afaf-0f4f3a76e7cb", "text": "five nights at freddys location with freddy dancing in front of it "} +{"id": "1006169", "video_name": "70e65cdc-cc0d-59a7-ab1b-309551c481cb", "text": "female warrior walking on top of a hill, red sun in sky, dramatic aerial view, RED DSMC2, cinematic, masterpiece "} +{"id": "0006285", "video_name": "2a01caed-2cf8-558b-93dc-8a8fa4fb4573", "text": "A girl with fiery red hair and blue eyes, looking in extreme terror "} +{"id": "2007815", "video_name": "a615d82e-64af-5143-8da1-5144a9965be5", "text": "a growing and expanding veroni web "} +{"id": "3003436", "video_name": "a0b1d088-7480-54eb-842e-21bd4c3e8d0b", "text": "A bat flying out from a piumpkin "} +{"id": "0005203", "video_name": "168df806-1811-5b41-a5ab-96b652f85942", "text": "sun burning the earth melting the iorn. "} +{"id": "2003004", "video_name": "b8bcf5d8-82f6-557f-a49a-288cd2039c38", "text": "A gigantic demonic circle is drawn on the ground, night, cinematic "} +{"id": "2006732", "video_name": "c351df23-dba6-57ae-b908-eb0cf4e7c58f", "text": "The woven fibers turn and contract "} +{"id": "2006714", "video_name": "3d5ad1d7-d130-5110-8aa0-fead29a91197", "text": "One day, when he was exploring the depths of the jungle, boy reached an open clearing where some animals were gathering. "} +{"id": "0004321", "video_name": "070caada-f27f-51d4-aed2-3dc6e40fa31d", "text": "Hobbits dressed in psychedelic paisley, psychedelic lord of the rings, 1960s, magic forest, 16mm film, grain, "} +{"id": "3004074", "video_name": "91bc0e8a-3bc6-5686-900b-7ad5c19f1569", "text": "a beautiful female chrome and copper plated android robot alien cyberpunk singer on stage playing bass guitar, standing next a cyberpunk microphone singing with flashing lights and multiple laser beams and small fires in cinematic 4k quality "} +{"id": "2003364", "video_name": "bd946a5f-a1d3-5416-b467-5ebfc812b3ea", "text": "rough sketch of a character blinking, with hair blowing "} +{"id": "1004684", "video_name": "570744e6-2bf6-5e03-9530-2e21ffab8d8a", "text": "four Brahmin sees dead lion in forest "} +{"id": "7002805", "video_name": "c86908a7-0dbf-5dcf-99d7-ee1d2a1eaec2", "text": "Pokemon with a unicorn on a boat big eyes big tail short legs two long pigs and sitting there next to the house yellow animals have already come out "} +{"id": "8001999", "video_name": "1f93ea96-3f03-574b-b94b-75633ed9cf8c", "text": "Musical pavilion, \nPeople walking, Architecture, slow camera move, "} +{"id": "0005756", "video_name": "20a1f649-f823-5a91-8365-8f9845db1b31", "text": "An icebreaker was breaking through the ice "} +{"id": "2006020", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "a old Man dressed like a soldier in the Forest. "} +{"id": "2007716", "video_name": "3b211848-bcd9-5640-bb33-02975f75e78b", "text": "beautiful wedding couple photos at castle in the mountains "} +{"id": "1003879", "video_name": "47784be5-c157-539a-aeaa-dbf97726276a", "text": "flowers in the wilderness moving at the wind "} +{"id": "0004584", "video_name": "0b913a04-bb56-5c59-a9e1-238ceb3904ae", "text": "an imagined version of what a Tesla vehicle looks like 169 years from now, try to show off all of the features "} +{"id": "0005263", "video_name": "17802735-4e09-503a-9ec4-ae743ff59410", "text": "red ball strike with water and broken mirror "} +{"id": "3006975", "video_name": "2047b2dc-8c12-5cbf-8f19-e8563f1e3ad7", "text": "zoom in amazon rain forest with gorillas Message: XBET (Font: MODERN) "} +{"id": "3006061", "video_name": "fb42bc37-64aa-50d4-b557-c2ee6671a2d2", "text": "a medieval village, distance shot, sunny day "} +{"id": "5001036", "video_name": "6ddda845-09bd-5601-a26d-077b36af81c7", "text": "view distance far from sky. fantasy colossal medieval war movie. the great medieval dirt war. the black lizard orc was massacred by dozens of red human troops. orc versus angry medieval soldiers. meadow. "} +{"id": "4003122", "video_name": "206fd168-ad82-5602-bbf2-9d6d102d3212", "text": "Malayas Message: s nezhnostiu (Font: MODERN) "} +{"id": "7002648", "video_name": "b6df02b6-8071-5fc7-b0d3-1efde568c536", "text": "Intrigued by the possibility of more wealth, Ramchand agreed to acquire the diamond under the condition that the trader would help him in using its power. "} +{"id": "3004994", "video_name": "04c29b22-0162-52ef-ab16-a200780e599c", "text": "The phenomenon of bilocation is one of the most remarkable gifts attributed to Padre Pio "} +{"id": "6002179", "video_name": "8d0422e0-9aa0-5e3d-b52b-13fc1efeff0e", "text": "add pink lighting coming off bottle "} +{"id": "7002154", "video_name": "1a4fd960-b1d3-5911-a92a-993e653b42ea", "text": "fried potatoes made by small workers "} +{"id": "3003300", "video_name": "c92c6825-db81-50d0-aa02-07ef269cd913", "text": "thunder rumbled and rain begains in the village "} +{"id": "6004930", "video_name": "1eddf218-38bc-57cb-bc0b-88e3637f9ff2", "text": "Walter White obtaining the bulk denity of soil "} +{"id": "3006977", "video_name": "eb58c851-48ef-5b3a-9be6-51ccb5e2e9f2", "text": "everything is black and white, the strong glow of the moon, the night sky, the rapid upward movement of white water, radiance, giant black shadows, mystery, secret, hurricane "} +{"id": "7003264", "video_name": "d3b87125-0645-5087-a47c-112e2880effd", "text": "A boy walks in the dark, Pixar style, suddenly he starts playing on the phone "} +{"id": "3005967", "video_name": "3c75f4f8-1993-5235-8a80-c4a7c0f33e87", "text": "a woman sittin on a rock on the top of a mountain medatating fly by shot early morning with birds flying by sun rising "} +{"id": "4003964", "video_name": "db37f60c-b871-5c1b-bdf2-6e2409cd4b61", "text": "a deer breastfeeding her child in a jungle "} +{"id": "2004165", "video_name": "71234405-0280-5069-8c8f-4036e90d3b5e", "text": "Two strangers dressed in black stand opposite each other while having a conversation "} +{"id": "1004935", "video_name": "5b3bb256-5bc0-5aa9-8adf-0c2815cb19f9", "text": "Start by describing the enchanting realm of Mystos, its unique landscapes, and the mystical creatures that inhabit it. "} +{"id": "2005418", "video_name": "15e82423-7ae7-51ad-86cc-ca60e975ddc4", "text": "turn image into real life HD video with dog walking and jumping on rail track smiling Message: 1 Attachment "} +{"id": "7002343", "video_name": "880b7d6e-a179-53e2-b2cf-7b0fb955901a", "text": "one scary person is standing in front of the viewer "} +{"id": "0005734", "video_name": "204c76ee-d70e-5f8a-82e5-14a2b50b48f4", "text": "Aladdin and the Genie in the City "} +{"id": "7004948", "video_name": "52bb1244-2bcc-50ef-9c93-bd2a5c254a76", "text": "Dutch Angle Shot: Used to intensify the feeling of unease, a group of zombies are shown toppling a parked car in their path. "} +{"id": "0004924", "video_name": "117ef8e2-d916-5a49-9579-f814f6e35459", "text": "a man working hard and he is try do deffrent on envirmaentb bild around the stuvation live video "} +{"id": "3005810", "video_name": "951fb6c6-ab9d-5c48-8a4f-9223b37d76c6", "text": "from above zoom out, machinery filtering night sky , realistic, Cyberpunk anime "} +{"id": "2003712", "video_name": "e26ca6b4-72cf-5feb-9636-a067f828ac58", "text": "A hen writhing wildly on a big, glamorous stage Distant view Elevation 4K 16:9 "} +{"id": "6002221", "video_name": "0cb66cf5-79fd-5581-898e-231895933485", "text": "book opening with colorful sparks coming out of the pages "} +{"id": "1005740", "video_name": "69a2b63a-29f6-5685-ba98-e229c38b120d", "text": "first person view of being in a plane switching controls cockpit view at night "} +{"id": "2007031", "video_name": "096ae191-5cbf-5199-98a8-8d1210cb6ae5", "text": "a young female staff at courier office "} +{"id": "3006180", "video_name": "428b15e3-0d2c-5239-84f5-3d14846ca263", "text": "He tried a lot to solve this problem but all was in vain. Apart from the crop failure, their land was also buried under stones due to which they were not able to grow crops again. "} +{"id": "5001522", "video_name": "32122417-806a-5124-a525-ced8c3c2baf1", "text": "Mafia boss Entry in hotel apartment, aerial view, cinematic shot, London Street, 64k "} +{"id": "7004427", "video_name": "3e073756-7a11-52ac-bf59-646ed61bb6d8", "text": "a poor lady Message: 1 Attachment "} +{"id": "1003702", "video_name": "444c3704-83d0-5552-8e5d-77e07bd7e193", "text": "Elf druid female and drow rogue male encounter forest medieval Epic fantasy romantic "} +{"id": "1005489", "video_name": "64dd98eb-2a1e-5caa-af26-e760cea422f6", "text": "video, iphone 14, Falls to the floor, But the screen is not broken, because it was in protective film. "} +{"id": "3006744", "video_name": "5b4e5d9d-5aa8-50ae-a2b3-3d8df3af44f7", "text": "Space, parade of planets, starry sky "} +{"id": "7003664", "video_name": "56e4d631-a245-531c-b77d-524de6783529", "text": "a city like paris, recording from above, a lot building are burning "} +{"id": "0004278", "video_name": "063fe416-7962-5371-9817-453d35a1e97a", "text": "cats surrounding a white family in the families house "} +{"id": "3003900", "video_name": "38459d4b-2eac-50d9-a558-94e4add737e3", "text": "sea serpent with human head emerging from the lake of eden mythical surrealism "} +{"id": "1005586", "video_name": "66cb9ed8-5a68-57bd-96a0-b451924a1f69", "text": "a lemon floating in space with sacred geometry and water features. "} +{"id": "4002797", "video_name": "fa87acb3-f4cd-57f6-bb23-9faa3cfe1dd7", "text": "What if we imagined a scene where a colorful elephant dances in a meadow of fluorescent flowers under a night sky, while the stars turn into soap bubbles floating in the air? Meanwhile, to the sound of hypnotic music, giant trees move to the rhythm of the melody, changing shape and color with each beat. And in the midst of it all, a shower of lights pours down from the sky, creating a magical and surreal atmosphere. "} +{"id": "2006602", "video_name": "5db628a6-ec90-5edc-8f49-a4c8bd9f51ba", "text": "black cat sitting at a desk explaing the world news "} +{"id": "2004740", "video_name": "9e2a7510-b2b5-52d5-98cd-5f08f4b568bf", "text": "There was a big forest. Everyone lived with animals in the forest. "} +{"id": "4002842", "video_name": "0201b058-660a-51e4-afce-cc0902d3167b", "text": "sunflower on the ground with a bottle of wine and a music book that turns its pages with the breeze of the wind "} +{"id": "0005212", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "when barbie met oppenheimer first time, 8k resolution, sharp and detailed, nuclear explosion in barbie world in background "} +{"id": "8003468", "video_name": "8eb54bc0-bdf1-5327-a92d-46449b84929f", "text": "an arthouse gothic film overlooking beautiful landscapes "} +{"id": "2007990", "video_name": "dbf6f697-cd33-58b5-914d-ef81395e9e10", "text": "Drinking the morning cofee at the cafe. A man and are sitting at a cafee and drinking his cofee, there is a crosaint on the table aswell, format 16:9, futuristic sceane "} +{"id": "1006153", "video_name": "70b2c12b-8e92-5d5e-8a0c-69f38dc78003", "text": "a smoking man on the window in autumn, see outside of window and smoking, 8k, aesthetic digital dark art "} +{"id": "1003752", "video_name": "4536b00d-9458-502b-aa65-b72f615575ab", "text": "rainforest view in daytime, like a warm morning where you can see water flowing on the right side "} +{"id": "4002597", "video_name": "bca90c1c-7667-5ba2-8029-0bd846e5d0e3", "text": "dark cave from the inside, video camera span "} +{"id": "6002779", "video_name": "cf435b19-49b9-5a53-8c14-6baae8adcfa4", "text": "tiny super men fly,STUDIO GHIBLI,HAND DRAWN,MAIN CHARACTER,EMOTIONAL,8K,ULTRA HD,HIGH QUALITY "} +{"id": "4002116", "video_name": "31d82040-15a0-54bd-8f1c-1170b2bd6c0e", "text": "occupational therapist doing therapy with children prompt: Message: terapy (Font: MODERN) "} +{"id": "7003828", "video_name": "ffd975be-6e72-513e-afc3-258d11a4dba2", "text": "An energetic young entrepreneur is doing morning exercises on a yoga mat at home, with the rising sunlight filtering through the window. "} +{"id": "2007845", "video_name": "135c73c8-853a-5e8e-94e0-154539b5eaf7", "text": "walking through streets of ancient Atlantis "} +{"id": "0004890", "video_name": "10ff9811-2620-5c36-b724-63dea8a11f22", "text": "Once upon a time there was a woman named Mary, mother of Jesus of Nazareth. "} +{"id": "8001172", "video_name": "140ade12-b54d-554f-a8bb-5088ec4505cb", "text": "Slawomir Maniak animation of a man walking through a town "} +{"id": "0003975", "video_name": "00f39045-e666-59ff-935d-c5fb11ff620c", "text": "the simple animtion 2d character pointing up, white background, no out frame, animate classic, clear animation "} +{"id": "2005866", "video_name": "1dc071ff-d37b-5894-bdd5-9e61012cd598", "text": "The room engulfed in darkness, the only light coming from a flickering candle as the paranormal expert performs the ritual, their features barely visible, blurry and in black and white. "} +{"id": "0006953", "video_name": "35c81627-9f2c-516a-a886-09f166db757b", "text": "star wars spaceship floating through space "} +{"id": "0005729", "video_name": "20406852-387a-5b9a-aab4-ab1fb1b11e55", "text": "Fish swimming around, big panorama,realistic style "} +{"id": "0005318", "video_name": "188c5ceb-ce97-5a60-bd89-65c949e0d666", "text": "car driving on a highway, dynamik lighting, night time "} +{"id": "4004476", "video_name": "5ce50087-bbce-59d3-b910-aff9d9c904aa", "text": "people walking, slightly wind blows the hair, the face remain intact, "} +{"id": "7004080", "video_name": "81eb6cc3-7a96-510f-9e76-a8262deaedea", "text": "the climber suffering snow weather on moun everest. "} +{"id": "1004515", "video_name": "53c84a48-4e97-539d-aaa9-5bb23ab47747", "text": "create a negative prompt very high quality A man was standing taking a sword in one hand and in other hand he have axe the place was black and the man was wearing black suit which was very very high quality ultra HD Pro "} +{"id": "7003841", "video_name": "3279b5a2-1080-5259-8fdf-f268fa13cbf5", "text": "Giant mech exoskeletons drag massive squid onto the shore Stieglitz Black and white 1900s "} +{"id": "6002306", "video_name": "cdf865de-1c23-546c-8de6-dd0c7a184fe7", "text": "Redhead Alana is a news reporter at a TV station. 1970s Era. "} +{"id": "2004339", "video_name": "099d397c-cfbd-53c3-b751-4b372e2a05fa", "text": "Superman talking to Batman on top of a building "} +{"id": "8001468", "video_name": "e0f36ba2-6ed4-512b-a7d8-aceb35a0895b", "text": "procurement and logistics company specialized in logistics for industrial goods to the regions of the Far North using various modes of transportation, including winter roads. "} +{"id": "3005990", "video_name": "64c5652c-9a5a-5655-a638-07bccdcbea22", "text": "3d image As they worked on the Vespa, they overheard a conversation between some kids on the beach. "} +{"id": "0006145", "video_name": "273f3b54-b65b-5261-82a6-518f12e8e8aa", "text": "beautifully designed fashion boutique with racks of clothes neatly arranged, sparkling accessories on display, "} +{"id": "5001129", "video_name": "1f7c857c-1ef7-5b26-9844-113221647500", "text": "in the beginning god, extraterrestrial, created the heavens and the earth, realistic, vibrant colors, animated, animation cimermatic, dark theme "} +{"id": "3003613", "video_name": "93bc8125-e82c-5873-bc4c-151669895ac2", "text": "Silent Forest in spring with beautiful bright sun rays Generative AI "} +{"id": "2005379", "video_name": "bed2aa12-1196-5ab7-8f26-b6534fa5bf98", "text": "psychedelic meditative color patterns, ar 16:9 "} +{"id": "7002233", "video_name": "01b29ab4-f0f8-5a1c-a222-d72140e306a0", "text": "a child playing super mario brothers video game on a nintendo entertainment center in the year 1987 "} +{"id": "6002139", "video_name": "842c8b6e-2377-52fa-a924-cb752152cf48", "text": "ed dots comming from the middle of the picture to the edge of the pictuer at a very fast rate of 500 dots in 2 seconds ar16:9 "} +{"id": "1004741", "video_name": "57ce0c17-705c-5021-8d58-2b7617c0ddec", "text": "an old man carrying two poker cards in casino room, warm and light, old man is laughing "} +{"id": "1003637", "video_name": "43075f89-ad9e-5aa0-8ea7-c07e5c89bd5f", "text": "Many companies have also seized on tree planting "} +{"id": "6002628", "video_name": "9269d6bf-8f12-5488-8d3e-d03624efc344", "text": "sunrise suddenly wind blows across field of rose of sharon, 4k, ultra define, cinematic "} +{"id": "6003650", "video_name": "29a3fd43-207f-5d4e-8027-2bced268387a", "text": "Drone shot of a Mercedes SUV with a camper ontop driving through a snow storm 8k ar 16:9 "} +{"id": "1003719", "video_name": "44a7bed0-072f-5f28-8e26-f2ca57410916", "text": "A woman is sitting on the sofa at home and crying "} +{"id": "0006047", "video_name": "25b9676e-c5a1-552c-b83f-b8ae36df6e28", "text": "lily ,max ,mia and ethan path led them into a labyrinth adorned with glowing crystals. Each twist and turn unveiled new surprises. "} +{"id": "4004201", "video_name": "9c68c24b-498c-5794-8ede-b768801511e8", "text": "a seamstress sews various beautiful patterns on a quilting machine, hyper real, 4k, real "} +{"id": "1006047", "video_name": "6f0efc1b-aa01-5cf2-a8c1-e9f6d580ced7", "text": "Stock graph of interest rate falling "} +{"id": "1003786", "video_name": "45e77c46-6329-5fe0-bc9f-adbd177c4d1d", "text": "natural movement, a woman architect who is busy doing her work together with her colleagues "} +{"id": "2007677", "video_name": "0b8c6c2e-4961-571a-aa78-39ae0aef034d", "text": "a person is swinging a golf club in the interstellar city,cosmic elements, metaverse, future technology,cinematic "} +{"id": "1005336", "video_name": "61ff725c-0afc-5af6-8308-f6be720828b5", "text": "Handsome sexy Police Man on the street. 4k "} +{"id": "6004503", "video_name": "489c3bf7-b49b-57c6-9160-031b5abb81a1", "text": "Video of a green planet in rotation "} +{"id": "2007941", "video_name": "e37cd6cc-504e-5307-9663-6de60d71dd7e", "text": "scary shark swimming inside dark water "} +{"id": "1006299", "video_name": "73568764-0136-5c32-97a9-b4290b298b8d", "text": "In the sea A storm brewing, causing havoc in the ocean, with sea animals struggling against strong currents, 8k hd quality, high deciles realistic. "} +{"id": "7004743", "video_name": "c9724edc-0277-50bb-a4e1-cd270b4704e8", "text": "Beautiful woman walking in tropical cloud forest "} +{"id": "0003450", "video_name": "3dc7cc79-b518-5421-9c75-a21ef330ddb9", "text": "10 duck sized horses standing on a horse sozed duck "} +{"id": "1005416", "video_name": "63869319-b19e-562c-acb8-2ea537a48292", "text": "5 children in a a retro rock show 80s era too much fun "} +{"id": "7004401", "video_name": "061784df-0798-5304-986e-f39090e50795", "text": "a young chinese girl ride a horse "} +{"id": "0003286", "video_name": "3ae59311-787d-5d69-acca-ead295d4f578", "text": "Display the princess forming alliances with a diverse group of characters. Each one is uniquely designed and brought to life in intricate 3D detail "} +{"id": "4004962", "video_name": "b290d3cc-def2-53af-a27a-19261a55a982", "text": "a football game playing snowly day and tribune crowded "} +{"id": "5001982", "video_name": "beb9f022-6326-544b-982f-3aaeb827ff4f", "text": "slow motion supermodel robot girl setting fire to futuristic laboratory "} +{"id": "0006611", "video_name": "2f86c5bd-b302-5eb6-97c0-295496559672", "text": "The great battle of the light host, against the fiends of hell "} +{"id": "0003866", "video_name": "44dc4f5a-4106-5c42-9504-df437480e163", "text": "eerie, the unseen horror in the corner of your room "} +{"id": "2006039", "video_name": "aa4cac11-f236-5cbd-b6d6-2d7d30f2acba", "text": "a boy watching a man huging his girlfriend "} +{"id": "2006290", "video_name": "83daa667-d517-55f1-9a07-947d57c1c5a4", "text": "The Invisible Man eating a Burger "} +{"id": "0006588", "video_name": "2f1535c0-375c-5944-a9b9-1329e453a34a", "text": "the face of a woman lying on the ground with her eye open, with a drop of blood running from her mouth in the forest.\n\n super realistic, realistic, cinema style, HDR, 8k. "} +{"id": "5001292", "video_name": "dac4a4c5-dd97-5ecb-adf7-98cd7944b817", "text": "Tetrahedron floating rotating in space with a galactic background "} +{"id": "8001359", "video_name": "fca25922-f983-5fc8-8635-8368e414a175", "text": "eye contact from side, a boy and a girl "} +{"id": "2005295", "video_name": "2e2dc61b-d963-51d8-bb01-f93a112b0d0e", "text": "quantum computer, in a server room "} +{"id": "4004254", "video_name": "96114cb0-3037-58a6-bb1a-42d2152f2211", "text": "Polar bear swimming one more time I am breathless in the vastness of the water trained and polar bear swimming employed behind reinforced thick glass I try to listen in my new and unforgotten home the moment seems endless I can see and polar bear swimming I can hear but I can not listen although your tears wet my hair polar bear swimming I have no questions I feel the ever changing day and in my hands I capture the endless distance polar bear swimming "} +{"id": "8001850", "video_name": "5b660021-31d1-57e6-b522-2ebc72ab3658", "text": "David Guetta show stage, night sky, fireworks on sky background, below an audience around, the environment has lasers, like a rave show, David Guetta is on the stage "} +{"id": "6004410", "video_name": "e88765f8-3243-55e2-b2f0-076b8c72644b", "text": "a cd is spinning and glowing green and oozing neon goo. the twilight zone style "} +{"id": "1003848", "video_name": "46ec5bad-e0f1-520b-a327-b6f8d8fa5fb7", "text": "generate a 40 seconds long advertising video "} +{"id": "5001099", "video_name": "c2422852-d33c-5038-b506-7627c32b8259", "text": "A news anchor delivers breaking news with confidence, presenting the latest stories to a captivated audience. "} +{"id": "2005074", "video_name": "74a1972a-5be6-520e-81a0-de4d92498519", "text": "two little girl playing in the park "} +{"id": "1005371", "video_name": "62d72667-c7dd-5482-85fa-3945ed1ec679", "text": "luxury watch trading with cash money "} +{"id": "5001532", "video_name": "50c5317c-ff95-50ba-99b3-4eb2ece8e328", "text": "a girl meditation near the sea "} +{"id": "3003798", "video_name": "dec44821-d5ac-5dd3-8d6b-e8d05435e252", "text": "Woman floating in the air, traversing paths "} +{"id": "0006080", "video_name": "264e96d1-7e94-5a02-a7eb-ed56a1e30b49", "text": "A man and a woman sleeping together. "} +{"id": "2006054", "video_name": "8cbc3cf4-18ca-5a28-b3e6-5e38b80a1705", "text": "modern museum of art Message: THE PLACE. AI (Font: MODERN) "} +{"id": "8003185", "video_name": "03ed8a51-0d54-57ba-9ab7-0d588756132b", "text": "In a small village stood a mansion shrouded in mystery, believed by locals to be haunted anime style 4k "} +{"id": "2003447", "video_name": "68f81da5-1f4f-56c9-aaa5-640f8c43d09a", "text": "My concept is: A futuristic virtual reality adventure\nMovie Style: Cyberpunk\ngs 15\nar 16:9\nseed 1234 "} +{"id": "3005155", "video_name": "3157773f-bbfd-5b96-a793-3228f528a1de", "text": "a cat sits on the windowsill, licks its paw, the bright rays of the sun shine on it, a cat with a red collar "} +{"id": "5001691", "video_name": "4422a8e7-14ef-5009-a1bd-1a944c531531", "text": "Mysteriously traveling through the tunnel, the surrounding areas of the tunnel are moving forward rapidly "} +{"id": "8002579", "video_name": "e2236362-3373-5c64-8331-672dd8e20232", "text": "a kaiju in the style of godzilla tears through the city of Chicago "} +{"id": "2005494", "video_name": "6cfaa043-a6b6-59dc-a7f0-872204f426a5", "text": "A beautiful girl sitt seated in a chair on the beach looking for the skyline. "} +{"id": "8001168", "video_name": "a966ca58-31ec-5a26-ad73-f9a24852db95", "text": "Ronald McDonald bent over, pooping out mcnuggets into a happy meal box , while looking back "} +{"id": "0006052", "video_name": "25cb7ad6-be80-5cad-ba17-de1aa2c7ef87", "text": "a boy that fly to another planet "} +{"id": "7003250", "video_name": "977d00d8-9315-597e-91d9-360b04256605", "text": "Cyberpunk warrior walks into the Stuttgart newspaper, realism "} +{"id": "3003228", "video_name": "cbe67b23-7bfb-5476-8dd2-bdeab4004633", "text": "crowd of doctors in a lab chroma key vfx element "} +{"id": "2005791", "video_name": "3a14fa94-7344-5a98-a556-7dfcf2b4d513", "text": "A beautiful girl putting an aubergine in mouth "} +{"id": "6003313", "video_name": "7a4ffb40-8282-57a9-964e-6de476b5cb1e", "text": "the fastest car of 5he world driving in the desert "} +{"id": "6003003", "video_name": "3a5159a1-4006-57ca-b141-43bb569a80a7", "text": "a landscape full of flowers and brightness Message: maricona (Font: MODERN) "} +{"id": "4002254", "video_name": "13bc2e05-cf1a-524c-971c-29db0c237183", "text": "from behind we see justin trudeau standing alone in an empty room with slightly slumped shoulders "} +{"id": "7004838", "video_name": "d47ad5d9-3da8-5764-bb1f-b7b94c81fbcf", "text": "Mermaids and fishermen fighting at sea "} +{"id": "2006941", "video_name": "dfd349ac-75b1-54bc-9429-c856e2351c34", "text": "a soul leaving a decayed corpse in the middle of a polluted delta at twilight "} +{"id": "4004888", "video_name": "2bc34f39-3a33-52a2-a977-baf91f857215", "text": "a old door in the dark brutalist alfred stieglitz grainy cinematic "} +{"id": "3006807", "video_name": "5426bc56-c79e-5635-8583-a088d91d24e4", "text": "Townspeople are asking if the strange dancing woman needs help. "} +{"id": "6003247", "video_name": "3003a42f-53a0-5641-833e-57ec622cd039", "text": "A person was sitting on a bridge smoking, with the sunset shining on their cheeks, and the smoke was particularly bleak "} +{"id": "3004205", "video_name": "f5c173fa-42ed-59fd-82fe-954f4f9bd2b4", "text": "unclothed man in garden talking with god "} +{"id": "3005033", "video_name": "9ca9a5d8-a85c-5eea-a484-48f62518f821", "text": "a robot vacuum traveling through southeast asian countries "} +{"id": "7002470", "video_name": "be723c21-16e1-5594-9824-a61cd1e08e32", "text": "Three water snakes are hunting for food in the water. "} +{"id": "1004316", "video_name": "4fbe8acb-2f79-5bf0-9753-db87d535d92f", "text": "Turtle and squirrel navigate around fallen logs and bushes, with the sun casting long shadows as it begins to set. 3d rendering "} +{"id": "2007975", "video_name": "889d742f-b0e5-5052-9616-36a0c0cc223b", "text": "1 GIRL TALKING IN A CIRCLE OF BOYS "} +{"id": "4004500", "video_name": "1a814499-496e-5cea-a14b-dcfa5429b42e", "text": "a boy jumping and spreading his arms VIDEO GAME RETRO STYLE "} +{"id": "3006480", "video_name": "69b109c1-1b5e-5981-9fad-62f6773c97b7", "text": "Create a high definition Christmas campaign poster, need two beautiful models background, need Christmas tree lighting background, need Strictly Come Dancing background, need cocktail picture "} +{"id": "2003394", "video_name": "b70f130a-19e5-534f-90a2-d3871841e240", "text": "A india boy follow his lover in cycle "} +{"id": "2004428", "video_name": "8cfbd9c1-39df-5f36-aef3-ae6c8a0a914a", "text": "a high resolution image, 4k of a German shorthair pointer splashed white with black spots in a field of prairie grass. "} +{"id": "7003070", "video_name": "b07e3164-2500-5375-a58f-1b77559655f4", "text": "anime lettering Message: creion (Font: COMICS) "} +{"id": "2006717", "video_name": "5bf14248-9426-5b2b-99e5-046f7f8b2c81", "text": "create a glossy shining 3D oil painting of a Kenyan modern train running through tsavo National park, beautiful scenery, detailed, realistic. "} +{"id": "2005103", "video_name": "4d555d48-dd4b-5655-9527-d3dde27f6ef5", "text": "Super dynamic baseball player slides into a pit "} +{"id": "1004601", "video_name": "55b00ab1-77b5-5722-a5b1-7d71bf5d9763", "text": "The atmosphere of the Chinese New Year\uff0c dragon dance is grand and vibrant, with a majestic and lively presence. "} +{"id": "1003093", "video_name": "38e8f975-4824-5291-b08d-b50762e595ec", "text": "Young relist, blond, with small ears, with glasses, straight nose, blue eyes, medium height, smiling, with red cap, with his carpera under his arm at the employment window asking for a job, from an office "} +{"id": "3005500", "video_name": "173a3ba4-f889-5f90-9ff7-3b1852f6c1dd", "text": "3 pretty French girls eating pizza at the Eiffel Tower "} +{"id": "1006305", "video_name": "736d10fd-2c9f-5274-99ee-5aaa9177a566", "text": "a drawf with beart Message: Andy (Font: MODERN) "} +{"id": "3005170", "video_name": "1c104f7b-87c2-50d3-b50f-bcf480658cd6", "text": "A man pushes against the wall, 4k "} +{"id": "4003168", "video_name": "6ddd92e9-bd7c-5fbe-a2b1-7e94c0f41c35", "text": "Thor flying in the sky2k,hdr,4k,3d animation "} +{"id": "8002908", "video_name": "2dea5acd-e14e-5b37-b77f-498a705f002f", "text": "a man on a hill, the storm, black clouds and wind by Sergei Eisenstein "} +{"id": "4002673", "video_name": "5270cf80-2e8f-57b4-baac-b37dca489ca8", "text": "a scene that shows last meet of a army officer and his wife "} +{"id": "1004416", "video_name": "51a5d445-150e-5ce4-a51b-58cd5c5e2e9d", "text": "landscape mountains in the winter motion "} +{"id": "5001894", "video_name": "04092e58-78d3-5624-bb90-ada0e595b95a", "text": "people playing frisbee on the beach, sunny day, realistic "} +{"id": "3005409", "video_name": "d7133a54-3de2-51c5-89c5-f124b7939958", "text": "speedy gonzales runs out of the office "} +{"id": "7004767", "video_name": "e3286575-f207-5428-87ba-e0ee8193c854", "text": "with cinematic 8k create a boeing 747 flying over a ocean "} +{"id": "7004872", "video_name": "03d41fb5-27cf-5c19-806b-d2af15e63193", "text": "2 creators interacting in the universe "} +{"id": "1003655", "video_name": "43495d62-eec1-5f50-8fbe-4b83249f5308", "text": "Groups of young people entering a gamming game room "} +{"id": "2006045", "video_name": "200e1d29-2279-5cd9-ad0d-bd5f96ab84b2", "text": "a sparrow is chased by a cat, illustrated by five year old level child painting, color pencil, scribble art "} +{"id": "1005932", "video_name": "6cfb887a-fbe5-50f4-93bd-2e80cbe2da60", "text": "a chaotic landscape, showing computers taking over the world "} +{"id": "0006468", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "a logo of a super hero, appearing in a dark cinematic light "} +{"id": "7002495", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "Generate an hyper realistic depiction of the Battle of Gaugamela, showcasing the intensity and scale of the conflict,full hd "} +{"id": "2006448", "video_name": "c7c5ebc7-0ac8-570a-9c92-872a5447059e", "text": "Frame 1: German soldiers conduct training at a training ground.\nFrame 2: They are given military uniforms of the 1934 model.\nframe 3: soldiers hang a red flag with a white crown while singing along to the anthem "} +{"id": "3004706", "video_name": "7944ae26-87c4-501b-8b03-da3cbd51f9cd", "text": "Cristiano ronaldo playing football for real madrid "} +{"id": "2003151", "video_name": "5ab8f3d8-5bfd-59e6-896a-8dd81509d28d", "text": "fireworkt, night sky, hyperrealistic Message: AMAZING (Font: MODERN) "} +{"id": "7004798", "video_name": "64436c64-976b-53e0-88e7-d9863e2b636b", "text": "a white chalky torus crashing into a grey concrete floor, at the moment of impact breaking apart "} +{"id": "2004698", "video_name": "d654f812-5de7-5720-818b-de3b29e6dc27", "text": "The girl is petting the goat, dynamic,Ghibli Style,The girl approached Mianyang and goat, close view, follow the girl action,Ultra HD, ultra clear "} +{"id": "6004370", "video_name": "ca9a42b8-6e59-5c76-92eb-d0793670f22b", "text": "Camera opens to a dimly lit, cluttered bathroom. A young woman, LUCY, stands in front of a large ornate mirror, cleaning it. "} +{"id": "2005382", "video_name": "f8e9d2ac-37a1-555d-9b81-f582391a1d60", "text": "a cow as super hero flying to the sun "} +{"id": "1004878", "video_name": "5a25e870-4c0e-5f8e-8841-5d432d59bcff", "text": "a cotton candy with chocolate chips and fruits,8k,no ugly,nwfs, "} +{"id": "6003348", "video_name": "c1b107cb-bc64-538e-ade3-92a07f09cc8b", "text": "a huge aeroplane colliding into the moon, explosion at contact "} +{"id": "0004468", "video_name": "09a010a3-317a-59c4-8292-01a5b053e0f5", "text": "capybara doing a backflip on a motorcycle "} +{"id": "4003967", "video_name": "87effca9-e254-5d54-8f21-c26e58130977", "text": "Make the character sit down Message: 1 Attachment "} +{"id": "2004203", "video_name": "ec7935b5-e81b-59a8-bcc3-c2ebd397b307", "text": "collagen provides regeneration nails, and hair "} +{"id": "1006183", "video_name": "7135a9dd-58ca-538f-a14e-2541f3f9126e", "text": "men and women executives in a huge office at a huge desk, conducting a meeting, About fashion clothing "} +{"id": "6002362", "video_name": "7dd7b266-8f4e-569a-95de-5e578f9ec442", "text": "elegant mansion inside, decorated with a Halloween theme. You can see the house full of teenagers with drinks. The house is full of lights because they are having a big Halloween party. "} +{"id": "1004226", "video_name": "4e3b0abd-2cd2-548c-9d49-7a60cf6d98ec", "text": "a little cute girl stretches her arms, yawns, and flashes a big morning smile "} +{"id": "0004226", "video_name": "056f5e1d-fe89-5ebe-b1b8-40a440628398", "text": "undersea footage of a humpback whale "} +{"id": "7004026", "video_name": "f2523463-9eb1-5443-a816-e26b9c796805", "text": "Medium shot, Elena and Lucas, lying in bed, Grace Hotel Santorini, hugged, look into each other\u2019s eyes and smile, digital art. "} +{"id": "7003888", "video_name": "d917049a-f34a-5e5b-80f2-aee66b8661d2", "text": "In other words, I love you. "} +{"id": "8002261", "video_name": "02556c7b-1a83-55fc-bc72-210bac29b55e", "text": "cutting watermelon cinematic HD vivid colours "} +{"id": "5001789", "video_name": "ddc5ba07-bafa-511b-9bed-07ca87685b34", "text": "There was a monkey trapped in the bush, tangled badly in thorns, struggling to get free. "} +{"id": "3004493", "video_name": "0c25416d-d367-5855-b9de-e3e63080f4ec", "text": "Ethan was generous with his knowledge, providing guidance to others who wanted to improve their lives. He understood the value of hard work and believed that helping others succeed was as important as his own success. "} +{"id": "0004613", "video_name": "0bed735f-a4a8-59ff-99b8-a1f680be3bab", "text": "desktop photography of man made dessert, good lightings, HD "} +{"id": "8003986", "video_name": "dfb5f808-e22e-5922-904d-d1cdda692903", "text": "So these people denied them. Then the punishment came to them that they were all wrongdoers. "} +{"id": "0006202", "video_name": "2833cc86-892c-54a4-bfdd-2c2474fd780e", "text": "woman speaking about a passionate topic in Bali "} +{"id": "3003068", "video_name": "cae395df-b73c-5c26-b10d-52e03f45e871", "text": "Eiffel Tower melting into a puddle of nothingness "} +{"id": "6002366", "video_name": "a5a9450b-a59f-54a5-8c0c-cccdeaf5c2f4", "text": "flying colourful parrot landing on a perch "} +{"id": "8001808", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "a young man stands infront of the egypt.he wear treasure hunt dress "} +{"id": "0006875", "video_name": "349ab579-0762-5b0a-8688-a54e7f2b8ca6", "text": "A tortoise and a rabbit walking side by side on the land "} +{"id": "3004505", "video_name": "6f57cd89-23ef-5895-9a11-1d9ec8e0bd96", "text": "John Cena giving a Ted Talk about pizza, very excited "} +{"id": "2004082", "video_name": "880ea922-4171-5004-84a0-1f9135a6b679", "text": "the sun god saturn holding a scythe "} +{"id": "2004139", "video_name": "b3512b51-9904-507a-87fc-3358a7104486", "text": "6 golden balls spinning up shows 6 difference digit number realistic 3D "} +{"id": "0004904", "video_name": "1132c629-aa8c-5f5f-808f-1ca181b5a54c", "text": "girl floating in a misty lake, eerie, atmospheric "} +{"id": "1003201", "video_name": "3ae91835-8ed5-5668-9de2-317c5b92ba3b", "text": "Chameleon Continued Performances: Illustrate Chameleon Cleo continuing to dance, bringing happiness to the Colorful Rainforest, Chameleon colors telling stories of joy and diversity. "} +{"id": "2003168", "video_name": "dafc63b6-6483-5c8c-9175-2f0cc4d91fda", "text": "Indian train with beautiful scene, 16k "} +{"id": "3004109", "video_name": "e0874965-4b83-5236-93f7-df8657566f87", "text": "A muscular, humanoid bear is working out in the gym. "} +{"id": "1004500", "video_name": "536a1615-c8d0-57f7-84aa-58237a25377a", "text": "The absolute level is beginningless, endless, timeless, and spaceless. "} +{"id": "5001155", "video_name": "fc691c86-4482-50db-98bf-582159610d93", "text": "a man is Stagediving into crowd of people "} +{"id": "1005004", "video_name": "5c7c59db-a735-5c3b-93ea-e25f047260f8", "text": "a mini fairy town with a bunch of fairy\u2019s in it flying around "} +{"id": "5001166", "video_name": "7d0e264c-8fee-54f8-93b0-b1757c387807", "text": "brain, pineal gland, third eye, 128k, hyper realistic, fast motion, 24 fps, ultra detailed, "} +{"id": "6004833", "video_name": "0ea8ce72-4829-5555-811d-11690dfcd291", "text": "baby is reading book while drinking tea "} +{"id": "3005438", "video_name": "452d2796-68a6-5648-a48b-c9036da338a8", "text": "close up on lemons falling in slow motion and splashing and flowing water, pop art, colorful, collage, poster "} +{"id": "2005540", "video_name": "104c6bbe-f2fe-5d76-9f8d-105458dee261", "text": "in a realistic mystical realm a woman gets a vision from the sky "} +{"id": "3003027", "video_name": "e37f68c2-0157-56cc-a521-52306f57f6bc", "text": "Large scene, snow covered, warm and bright lighting, unique scenery, neon lights, unique glass buildings, colorful and unique buildings, goddess sculptures, colorful aurora, Christmas trees, gifts, decorative light strips, decorative lights, colorful luxury cars. "} +{"id": "4004529", "video_name": "df7e61fc-7b21-501a-a3fb-f99e8d147a6e", "text": "create an image creation prompt using artificial intelligence with quality maximum, advanced levels of detail and style kinematic. I want an image of a child playing with a ball in a field "} +{"id": "2003939", "video_name": "f0d2333f-cc86-5131-b620-69157d942f3e", "text": "anime, illustration, 2d style, minimal, winter, girl, small skirt, "} +{"id": "2007931", "video_name": "376624c0-325d-5572-b2fb-ebd0c307e5b4", "text": "a lion running in a field at sunset "} +{"id": "7002925", "video_name": "2956f4a7-637a-51aa-a73e-c9643581319c", "text": "abandoned shed styled like traditional japanese architecture, falling apart, broken, overgrown, in a magical forest, golden lighting, ghibli anime style "} +{"id": "3005464", "video_name": "80bb2669-3b92-5c85-b81e-06fc43b87b21", "text": "cute dragons in style of children book "} +{"id": "4004972", "video_name": "c18c048c-c50f-5b32-8a10-372642e0d3f1", "text": "Footage of Ethan, warily stepping towards the house, boots crunching on the overgrown path "} +{"id": "8001532", "video_name": "a840e61c-4986-5ecd-b73f-ea163de347b8", "text": "a guy getting angry at a vending machine because its jammend "} +{"id": "2006917", "video_name": "b73fb985-358f-598d-95f8-a7bda3c82b6f", "text": "raining French fries in slow motion "} +{"id": "2004746", "video_name": "4f851946-e832-57f2-a813-ab40cd70d8b3", "text": "cave house exterior, futuristic, nature environment, southern Andalucia Message: BOQUILLAS (Font: MODERN) "} +{"id": "0006888", "video_name": "34c6ca97-375a-5ddd-85c1-3f572f365361", "text": "cartoon cat and mouse with pot of cheese "} +{"id": "2004117", "video_name": "39d85abf-5892-5043-94a4-b05923c2c36f", "text": "The circular clock at 6:48 on August 25th "} +{"id": "2004115", "video_name": "5b29b4ce-fae7-51be-84ec-f151a402e444", "text": "Description: Create an image depicting a scene set in the late 19th century on the island of Timor, with influences from Dutch colonial architecture and indigenous Timorese culture. Include elements such as missionaries arriving on the island and engaging with the local population. Keywords: Dutch colonial architecture, missionaries, indigenous Timorese, late 19th century, interaction. "} +{"id": "2005814", "video_name": "2449d4fc-6b54-5c4f-a637-9b9242af63d6", "text": "David saw a huge shadow approaching him "} +{"id": "1005941", "video_name": "6d2b6730-c6f6-5a38-9fd7-9c5c2c9a68c4", "text": "explode of galaxy in 1 second "} +{"id": "1003082", "video_name": "38aef76e-eb3e-5534-9cb7-621cf01ff4aa", "text": "100 pianos falling off a cliff "} +{"id": "8002735", "video_name": "89dd4d1e-baf7-552f-8705-8e7cbe7ccaf5", "text": "a sprinter running a 100m in a white and yellow suit "} +{"id": "3003308", "video_name": "69df8a5b-a9f9-5872-af01-9261f55ca7d5", "text": "cinematic julius caesar entered Rome after defeating the gallicus big party is starting "} +{"id": "1005133", "video_name": "5ea9bc35-9ada-51be-8e24-01468f4468b6", "text": "a beautiful scientific rendering of a cluster of neurons in a brain with pulsing lights traveling between synapses, steadycam steadicam camera move "} +{"id": "3004390", "video_name": "ce4227a8-5655-502a-800c-6e8c761ae7ab", "text": "a futuristic city getting destroyed after 2 seconds "} +{"id": "2007740", "video_name": "5f35e28c-485b-54c7-86af-f300f65d198d", "text": "generate a video of many wild Animals in on e frame in the forest "} +{"id": "8002529", "video_name": "8693bb8e-0c2e-5915-af69-75845d319ca4", "text": "animate image separating into peace\u2019s then neatly moving off screen "} +{"id": "8002742", "video_name": "a0d9441c-5b1b-5f3f-af2f-b3171368bd2a", "text": "joe biden as the silver surfer "} +{"id": "1006440", "video_name": "75e6cdc0-7550-5b66-adf9-cac3335b7028", "text": "12 century People with spears attacking a tiger "} +{"id": "3005057", "video_name": "50eeb58d-4728-554b-b0f0-d01f4ea660a0", "text": "a hooligan of The Black sea "} +{"id": "8002618", "video_name": "726426fe-9ac9-5106-8ccd-008441cfa09a", "text": "a man with welding goggles looks through a small hatch "} +{"id": "2003638", "video_name": "18893d28-66ad-5aaa-b844-75319240b18a", "text": "The golden ball shines and glitters Message: 1 Attachment "} +{"id": "1005743", "video_name": "69b04bf4-bde0-540a-be7e-26d8fcf7bdb3", "text": "A grand TEMPLE surrounded by swirling elements: Earth, Fire, Water, and Air. Humans with elemental powers stand before a MYSTERIOUS ORB, pulsating with energy. "} +{"id": "1003206", "video_name": "3afc859d-fc86-53d0-bcd1-fde3137097c3", "text": "Create a young fox for a curious animal "} +{"id": "4002704", "video_name": "12479a81-3324-5106-8a99-a57bbb72ce50", "text": "little boy in winter clothes, sitting by the bus window, looking out the freezing window "} +{"id": "7003169", "video_name": "a0b189e1-088f-5dd3-b03a-1a84523a4b51", "text": "mysterious abandoned church in middle of dark forest in gloomy day "} +{"id": "8003675", "video_name": "7e1cebbb-7332-57e0-ac93-47b552a02d30", "text": "3d cartoon ant eating spaghetti at the dinner table "} +{"id": "2005449", "video_name": "072801ed-f38f-583b-a539-db4956f59e24", "text": "(lots of movement) a movie with a beautiful villainous evil woman with long flowing vivid red straight hair and red glowing eyes and pale skin standing stationary as her countless army of dark scary soldiers Rush past her wearing highly reflective skull mask with bright LED lit eyes rushing toward viewer ready to do violence evil skull face expression skulls glowing eyes "} +{"id": "0004230", "video_name": "057e56ea-fd29-5be3-a3ea-101923b8f68c", "text": "a cat stealing a banana from a rich monkey "} +{"id": "8003448", "video_name": "53526b6f-0293-5ea3-9474-0a70eac0b42b", "text": "animate that image with some movement on the letters "} +{"id": "1005693", "video_name": "68a54468-9df5-5a71-98c0-d23686f747e5", "text": "Add the top of the tree underneath the painting, let the bird sit on the tree and fly away into the sky Message: 1 Attachment "} +{"id": "8001348", "video_name": "a080c8d3-b2a0-52fb-b5e8-b65af848bd65", "text": "two aliens talk to each other on the mars , movement with talk , Snowy environment, realistic view "} +{"id": "4002766", "video_name": "1ae8ed2a-a7f0-5fd0-8ea8-8a1f196632ac", "text": "Putin and Biden fight with swords "} +{"id": "8001088", "video_name": "4a344261-1baa-5c1b-8ae6-c635bcc1b038", "text": "man running motivated ultra realistic high definition "} +{"id": "4002907", "video_name": "7f9d3a48-7cd9-5ae5-934c-f822ccdd7b7c", "text": "The Algerian president on the main street "} +{"id": "4004597", "video_name": "6a248705-a0ba-5b85-8c1f-53a57d0398bc", "text": "intro for YouTube text in video KazGarage "} +{"id": "7002614", "video_name": "499da044-02c6-51fa-a686-40b3483d2939", "text": "Full view, RAW photo of the Marcus Aurelius, stoicism, realistic, "} +{"id": "2003524", "video_name": "4007a448-dfd2-5272-a272-5765a3663b67", "text": "Cut to darkened corridors with flickering lights. Teens, JOE, LISA, MICHELLE, and ALEX, nervously approach the school. Ar 16:9 "} +{"id": "2006871", "video_name": "dfe74c40-628f-55a2-8d24-afdc64bfb434", "text": "three adventurers in pirate garb, a Father and his 2 daughters running away "} +{"id": "0006866", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "Ice age earth in space realistic video "} +{"id": "1006401", "video_name": "7545959d-c567-59d3-a46d-3e92131a2095", "text": "Army of futuristic robots using futuristic laser guns are shooting lasers on every human on their way. "} +{"id": "4004019", "video_name": "7283eb17-8305-5609-acaa-3dbad5ff6ebe", "text": "a fairy is talking, her hand is slightly waving the magic stick "} +{"id": "0006011", "video_name": "24f7c30f-b045-5cbb-a26a-2d8f3efb23aa", "text": "Dasboard displaying banking data, in chart and diagrams,account details, avilable balance monthly yearly spending patterns, recent transctions,offers, panding bills "} +{"id": "2005445", "video_name": "0cf88327-a5f9-56c5-804f-59a4e2ae429b", "text": "a chinese waman looking at the sunrise. "} +{"id": "6002908", "video_name": "cd35dcb9-cabd-5691-a58d-36a15bcf6a61", "text": "two elven mages fighting with elemental magic "} +{"id": "4003453", "video_name": "96662a7f-8cd7-5924-a418-7f4c3fe8181c", "text": "a girl thinking in a room cartoon "} +{"id": "4003402", "video_name": "60ad7509-8915-56cc-879a-5665b4cecca9", "text": "old man scratching is head, a real man from war "} +{"id": "4003540", "video_name": "7176c965-55fa-5c50-bb65-6c506232e1dc", "text": "Group of villains talking about how great they are "} +{"id": "0005083", "video_name": "146dab1b-2092-5d5d-a07e-b0f8df3ce025", "text": "victorias secret supermodel walking in times square "} +{"id": "0003756", "video_name": "42d84f62-9aca-59be-9ac9-23accb97e2f1", "text": "a druid invoking the archangel michael "} +{"id": "4002874", "video_name": "7882e82c-3b5b-5305-afee-4ab7fa69b617", "text": "An alien hybrid, style by HR. Geiger, very realistic. "} +{"id": "2003197", "video_name": "496b0ce0-2bfb-54d6-bb0e-1c1401f2fbe7", "text": "An astronaut alien stranded in a forest with repurposed equipment to survive. "} +{"id": "2004702", "video_name": "b15347ab-287e-56cd-9299-a585a26e0484", "text": "man eating falafel in the rain anime style "} +{"id": "6004151", "video_name": "e57d4784-7819-578b-967c-b446f4cd6a94", "text": "nurses tired and stressed wanting to flee the hospital "} +{"id": "6003579", "video_name": "1115dbb8-bb09-5bac-89ab-cd57e2a48b2f", "text": "Make it real and realistic and cinematic and I want the lighting to be like the Lord of the Rings movies "} +{"id": "1006180", "video_name": "7129af70-b36a-5fdb-a1e3-47ecf3cc0ede", "text": "a big shark in a pool of men "} +{"id": "2005234", "video_name": "d910fbb2-0468-5a5e-abf4-2c9c67a6b474", "text": "draw a picture of a koala climbing a tree "} +{"id": "1006420", "video_name": "7582ee3f-7035-5698-a1f2-019086661e8a", "text": "a team of girls in lower school that play soccer drawing a photo of a uniform on a whiteboard in a classroom setting "} +{"id": "6003597", "video_name": "0cd55127-469c-509b-8a04-b1dd3d0d5158", "text": "The camera pans around the Mercedes and DetailAuto appears on the hood. "} +{"id": "3003976", "video_name": "d64901a6-674f-5757-88c1-192a702b5a35", "text": "Show the mystical forest, the boy walking and singing. "} +{"id": "1004840", "video_name": "5974d518-5521-5155-90b3-6e567c0e414d", "text": "philosophers most important in ancient Greece talking, vintage effect, real philosophers "} +{"id": "2004464", "video_name": "fbaf17a1-61d7-5b6f-b066-db293f4096c9", "text": "Don\u2019t you see it, the water of the Yellow River is coming up from the sky? "} +{"id": "4003215", "video_name": "b8c1cfd7-668c-5214-b777-437e940e6e9d", "text": "Create a dreamy garden in outer space, where sentient flowers sing lullabies to the moon. The sunsets on the horizon of a galaxy made of swirling watercolors. Cinematic. "} +{"id": "2005599", "video_name": "bba94e0f-d84c-5cb9-a317-0b07c554b91c", "text": "pudge from dota 2 fights with chen "} +{"id": "1003862", "video_name": "47245e82-08e2-5214-a8df-b045b300c137", "text": "a robot running through a new york like futuristic city, ultra realistic "} +{"id": "1005688", "video_name": "687ae878-424d-5302-a637-7ceeff294e6b", "text": "On the beach in the evening, a coconut tree swayed in the sea breeze, its shadow drawn by the evening sun in the distance "} +{"id": "2006322", "video_name": "ce8fa7c0-40f5-59dc-b052-61c0e179bbe9", "text": "asteroid hitting ancient city, painterly style "} +{"id": "1006592", "video_name": "78c0d363-be1a-5d6d-a2cc-c966dae1f172", "text": "a cinematic shot of a man riding a horse "} +{"id": "4002455", "video_name": "102ada1c-bcf2-5c42-b604-77722a2339aa", "text": "a sky that is made up of the inside of a lava lamp, the horizon is on fire, angels are flying in the sky, a man floats on a tube in the water drinking a margarita while balancing a boom box on his belly. aliens come and abduct people in the background. cities are frozen in the distance. "} +{"id": "1004685", "video_name": "57079a6e-9f15-5019-856e-60f37b18d289", "text": "SATORU GOJO SEEING THE WORLD FROM A HIGHEST TOWER 8k resolution "} +{"id": "0005928", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "Compose a dreamlike image of a meandering river winding through a lush valley, flanked by towering trees and vibrant blossoms in full bloom. "} +{"id": "6002009", "video_name": "23d5e1e4-8347-568e-b390-4035e93e7788", "text": "a group of elves huddled around a large, ornate table, muttering to each other in hushed tones, occasionally nodding in agreement as they confirm entries, 1967 zenith color, satire, antique television, 1899 visuals "} +{"id": "2003597", "video_name": "be3bfbe5-062d-5115-8f85-5f8fdb8fef22", "text": "ball room, beautiful woman and men, leather masquerade at a party, galmar "} +{"id": "3006942", "video_name": "cf7d60e2-3044-5385-8875-4760a713512a", "text": "clothes made of unfamiliar materials, and their use of an unknown language. "} +{"id": "7002872", "video_name": "8ec8f13e-76b1-5cef-b2e0-9120a04e314b", "text": "solar eclipse, third person view, space "} +{"id": "5001261", "video_name": "7acf91df-554c-5e1f-95e8-9a71013b7c44", "text": "Spaceship building a futuristic base on a green planet "} +{"id": "2006118", "video_name": "20186891-b4d9-5d22-8bfa-dca0ecf92793", "text": "a woman walking on a staircase that leads to the sky, realistic "} +{"id": "3006167", "video_name": "e1588a22-8036-5810-b019-7f413ffbc0f1", "text": "The yalki horses are running and dust forms as they run, the train passes behind the horses. horses are free train passes on the right while horses are running "} +{"id": "4002950", "video_name": "62a414ef-b858-5e45-9fc2-351d5a37ade9", "text": "cinematic Einstein sitting in his office chair watching a rocket launch on his QLED 4k tv "} +{"id": "7004616", "video_name": "39c20a90-2964-5b86-9f89-32d973281faa", "text": "The most beautiful girl walks around the city of Vladikavkaz "} +{"id": "1004567", "video_name": "54d54d41-eea2-567b-b1df-a2727c455bab", "text": "Freshly baked banana bread with pillowy steam "} +{"id": "2007435", "video_name": "fb9f086f-aadd-5a69-aaca-23076677d3a1", "text": "4k image of 1 set girls pink and white nike air uptowns sneakers in front of a tie die pink and white background "} +{"id": "3003693", "video_name": "1407f385-c49b-5580-a54d-0511f4a17d87", "text": "blue and orange stem cells floating "} +{"id": "2006151", "video_name": "39c32136-7f42-5627-a94f-64267ba3736b", "text": "1960s creepy human puppet character in a creepy woods with a sun face a moon man "} +{"id": "0003408", "video_name": "3d261f71-41cb-5cb1-a9fe-308e9523537a", "text": "film about Blonde girl and Black haired girl, two friends, in Hogwarts, having fun and walking by the halls of the big Hogwarts castle while they talk in their hogwarts uniforme, 16 "} +{"id": "1004559", "video_name": "54a1a634-33de-5f2e-b0c7-4d8b2183f4b6", "text": "a blowing wind and dry leaves in the background, the hair of the girl in the picture is flying "} +{"id": "6003900", "video_name": "814802cd-b02c-5d00-95fd-6cb30f0bccbf", "text": "old man explaining resistor in an electronic circuit board "} +{"id": "0003898", "video_name": "45688de0-0846-5d10-ab4e-ef06eaf2ad02", "text": "a boy with good looks running at speed of light "} +{"id": "7004830", "video_name": "5dc678f6-592e-506f-b415-b0141d34fad1", "text": "Tropical fruits fall in the sun, after which they dry up and fall into a pack of doypacks "} +{"id": "3006022", "video_name": "a39ab1b4-fed8-5361-9588-26c165bb0a60", "text": "office workplace, eco friendly, green, blue, coral, plants, modern "} +{"id": "7004786", "video_name": "30dc3b0f-4f24-5cbd-9042-5bbc74fd0e4f", "text": "merry Christmas Australia Message: 1 Attachment "} +{"id": "0003582", "video_name": "3fe492ab-4243-5e5d-922f-4d479e8d5736", "text": "Create a calming living space with a natural color palette and soft lighting, evoking tranquility and comfort. Subtle, diffused light and earthy tones blend seamlessly, forging a cozy atmosphere. "} +{"id": "0003291", "video_name": "3b0c1a87-2d38-5515-9c27-833b8477eb71", "text": "1 a villager attacked by a dragon and eaten high quality "} +{"id": "2004871", "video_name": "f9e0bcae-91af-56d3-9230-eaefb0b6a245", "text": "bmw m4 driving around the city "} +{"id": "6004037", "video_name": "186ce414-1734-54af-894b-285679504734", "text": "A detailed digital rendition of the little sunflower, showcasing its cheerful yellow petals, a bright smile adorning its center. Sunbeams dance around it, casting warm hues on its delicate leaves. "} +{"id": "0006062", "video_name": "25fafb64-4d12-5df6-a4ab-a922d6ed7180", "text": "Teenage Mutant Ninja Turtles caught a nSnow White in the winter forest "} +{"id": "2007732", "video_name": "fdf36893-834e-5a0f-8fe7-ecdfbae47ee2", "text": "a lizard fish with legs eating seaweed from ocean floor, underwater found footage "} +{"id": "7002691", "video_name": "68e95c6d-205f-5a3d-8757-db9f1e1969b8", "text": "animation,vector, batman standing on rooftop with back to camera, his cap is moving in wind,night time. "} +{"id": "4003675", "video_name": "3bb796fd-3e43-54f7-b337-3556eda8c1ea", "text": "spaceship traveling through outer space, a super modern and advanced ship, cinematic "} +{"id": "1004193", "video_name": "4d83293b-6a2d-5e07-9613-9275771e1a39", "text": "snake slithering through grass, close up national geographic "} +{"id": "3003461", "video_name": "e0758ba9-4fa5-5fe5-96ad-f5485400b954", "text": "most beautiful woman of India, close shot camera zooms in "} +{"id": "2006575", "video_name": "1379bad8-781f-52b1-bdaa-5e75f6d7488a", "text": "create a photo in the style of pornhub Message: 1 Attachment "} +{"id": "5001421", "video_name": "28379050-3290-5175-ad06-c5a7b91f399f", "text": "title screen of a 1989 NES GAME, old television "} +{"id": "0004467", "video_name": "09997db0-76f7-5885-84db-eb7094376b1a", "text": "and asteroid impacts are considered contributors "} +{"id": "0005104", "video_name": "14d09b0e-504d-57e4-b6aa-3cd8d9681db2", "text": "make 3d animated two mice and frog eating nuts and cheese "} +{"id": "1003625", "video_name": "42c9f330-1c5a-594b-9d27-5e4e7bbfb972", "text": "An AI Agent surfing the web "} +{"id": "1003216", "video_name": "3b35c779-d041-53ed-93ca-7ce891881938", "text": "Kids brushing their teeth happily in front of the mirror Message: Trueocity (Font: MODERN) "} +{"id": "0006609", "video_name": "2f83a6d0-53a8-51e2-ae9b-939ec19905cc", "text": "brock lesnar and Quentin Tarantino eating a cheeseburger "} +{"id": "3004368", "video_name": "8584e453-8584-5d04-827d-63601ec03be4", "text": "Illustrate a bustling market scene, with fresh produce displayed on stalls, attracting villagers eager to purchase. cartoon style "} +{"id": "7003739", "video_name": "f11ce7ee-1efd-5588-b821-28723f18beac", "text": "Chemical agent that disinfects the area from radioactivit py\u0142u "} +{"id": "2007741", "video_name": "430dcd21-caa0-57e7-9fd9-19eda808c320", "text": "a temple dedicated to medusa in the form of Versace the dreamer parfum bottle "} +{"id": "2006900", "video_name": "36f4e38a-597a-5007-8fea-eb697a80e436", "text": "Someone is sitting in the desert, playing the oud. The sky is dark, the moon is clear, and the stars are shining brightly. "} +{"id": "2004580", "video_name": "c0f53346-dbfc-5f57-bf19-01c446a9e20b", "text": "Heaven sky 10 second long video "} +{"id": "2004893", "video_name": "f598d77a-e990-5f50-9236-50b88e09d9db", "text": "small cat in village and panda in his road fighting "} +{"id": "8002934", "video_name": "e9543e34-4958-5f22-9ee8-44abf41cb34d", "text": "A cloud in the shape of a pink and white heart, with other clouds around it still white. "} +{"id": "1003832", "video_name": "46baff7a-e417-5a33-af71-9fff8f61dfd0", "text": "classroom setting with lots of books and art materials including painting materials. Message: SIR LEIMAR (Font: MODERN) "} +{"id": "3004518", "video_name": "730827dd-2c06-5447-85a0-93ac6c3a47ec", "text": "a hobbit house with sun rays entering through the window. "} +{"id": "8003491", "video_name": "dc947018-101c-5a88-bfe5-255cedeba021", "text": "When he reached the tree, the frog saw the fruit on the top of the branch and asked how they could reach it. "} +{"id": "4004982", "video_name": "f9041e97-015c-5c51-986d-c7c9a62494c4", "text": "real rabbit running after a tortoise "} +{"id": "2007231", "video_name": "98e69288-3ab4-5d4a-9c0e-c1a12d54ecf7", "text": "intricate crystal magical rock carvings with entangled lovers engraved into them in a vast open space Message: missing you (Font: MODERN) "} +{"id": "3005158", "video_name": "75fbe4eb-56bf-534f-940b-2e4d3a9b6906", "text": "internal image of the car recorded by the internal glass passing through a toll gate "} +{"id": "3005422", "video_name": "f69dd89c-b6f5-5ab3-8576-77bb293604d7", "text": "turning into dark night realistic style "} +{"id": "0006354", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "well dressed people shaking hands in an office "} +{"id": "1004194", "video_name": "4d8c6028-b0e0-584f-bd68-3b747d7aed21", "text": "pleasing country side with mountains and river flowing, man singing near the river "} +{"id": "1005493", "video_name": "650021cc-3fb8-5d7c-8467-209405c7e99f", "text": "image of connection of mrcet to costumers "} +{"id": "5001507", "video_name": "ec733477-9363-55d1-aca9-9fd9250ebfc1", "text": "Illustrate Benny setting off on a quest, carrying a map and determination in his eyes. "} +{"id": "4003898", "video_name": "daca1fb8-d788-59cc-84fe-234075ba05a7", "text": "The spacecraft landed on Mars, and the astronauts opened the hatch and walked out\uff0c4k. "} +{"id": "3005193", "video_name": "4a92f6ae-4a22-5f58-bf6b-16488e7f1994", "text": "a powerful image of a person breaking through a brick wall, "} +{"id": "2005117", "video_name": "8f85e116-507f-595c-811c-0eb74d29440d", "text": "evening a phone falls on the ground in the neighborhood at the evening "} +{"id": "4002505", "video_name": "fdbaa2e5-e86e-5c52-bfc1-eae621fc6463", "text": "a gif of a milk drinking cat in the rain "} +{"id": "2006213", "video_name": "d0143f06-2f33-5d3c-8f4e-f61d2eafccba", "text": "generate a 8k picture of women body without clothe "} +{"id": "2003536", "video_name": "4104fc95-06e6-58f9-a537-9279d52ebe88", "text": "an photorealistic 1851 london setting with a huge beer vat filled with beer and about to explode. "} +{"id": "3005094", "video_name": "d210c0c4-9664-5dd0-bdc8-efce560926fd", "text": "Gigi Becali playing football for Steaua Bucharest running with soccer ball "} +{"id": "3003120", "video_name": "e111ef0b-04db-5aeb-b6b8-dc4425eb4e6f", "text": "long shot , red latex suit , eating from a table, man eating from the ground below her, dystopian city "} +{"id": "6003435", "video_name": "2ce72e73-2a8b-5566-b1fb-12270abd14cc", "text": "Two Chinese teenage female students running together on the high school playground "} +{"id": "8002285", "video_name": "7e60a0c7-7a06-5b56-b3d0-65cd3a67597d", "text": "Pixar 3d animated style, Cinematic master piece, dramatic lights, orange and teal filter, day light, sun above; The majestic red rose, standing tall and proud amidst other flowers. a rose with eyes and lips "} +{"id": "2003429", "video_name": "15fdc4e9-0710-58e2-9fcd-a54140e2ee1b", "text": "The enemies of humanity, such as elves, goblins, angels, devils, etc., had triumphed and turned humans into slaves, pets, and food. "} +{"id": "3006295", "video_name": "c458d1f2-5c1d-5cfb-8ed1-c31ea05393f6", "text": "Create an image of the malevolent presence engulfing the friends, sapping their strength and hope. "} +{"id": "3003759", "video_name": "9020c5c6-c64e-5e7d-9a05-9b002d32ebd9", "text": "cartton of loan shark in a village "} +{"id": "4004670", "video_name": "29c10061-6d17-5497-b0b0-990b489ff168", "text": "the diverse cast of Characters riding the crazy train "} +{"id": "2005746", "video_name": "dfe96d05-4062-54c5-acc3-dacc1bd20321", "text": "satan give a man the pick of destiny "} +{"id": "6003737", "video_name": "be3d1120-b89a-5edf-8ab3-447036501fc4", "text": "tiktok video under 30 seconds of beautiful girl applying moisturiser good for your skin full of vitamins and minerals wholesome "} +{"id": "5001006", "video_name": "18a0ee06-2796-5326-af15-bde787ddd73e", "text": "yogi meditating in a psychedelic fantasy environment "} +{"id": "4002032", "video_name": "6a2e5306-8ed1-5876-8da9-eaf0b31d22c6", "text": "brown tabby cat sleeping on her back while on a cat bed in a bathroom "} +{"id": "4004995", "video_name": "77c84841-6690-5298-a827-baf0ae2ae2e7", "text": "create a Brazilian boy celebrating a goal in the crowd, 4k, hyper realistic "} +{"id": "4002646", "video_name": "d1a71ca3-f083-5b76-b7d3-fd59b3bfe577", "text": ": new iphone 15 intorduction video "} +{"id": "3005767", "video_name": "1dbf2f1d-a990-59bb-8af6-5275258dc6bc", "text": "grave, skulls and other things, 3d, realistic, realism, cinematic, unreal engine, render "} +{"id": "7004651", "video_name": "6012536a-56e9-5cf3-853f-7754cfd7d4b2", "text": "elon musk as a rocket lifting off into space The rocket is heading towards the moon in space with 8K HD video in 1960 resolution "} +{"id": "0003507", "video_name": "3eba4392-11b7-54c4-92f2-553d0c16bf14", "text": "a lion and a leopard in a room with people in the background, ancient rome "} +{"id": "2003150", "video_name": "a5fa9018-eebc-54f1-92a8-db0405e40724", "text": "wife got angried , holding a lido in hand "} +{"id": "2006274", "video_name": "beef6de2-dfc4-572c-a068-f43656770c4f", "text": "Video Analytics with Artificial intellegence in Face recognition and Perimeter Protection for advertisement "} +{"id": "3006857", "video_name": "a9a78380-7f8d-5a3a-bc23-e40860e0b10b", "text": "a ship in the middle of the crystal clear ocean "} +{"id": "7004509", "video_name": "8da3b782-729f-54fb-b505-c2c77a9f9880", "text": "the model walking in the city at night neon lights party comic "} +{"id": "4004628", "video_name": "cf4ffd2b-9832-5616-b058-a1a19aae90e5", "text": "red house with alot of candy cane, suddenly a cat came "} +{"id": "0006858", "video_name": "3457b751-179b-5f48-abcd-e9fdf5784102", "text": "A young man in a very dark room checking his mails in his laptop "} +{"id": "7003563", "video_name": "53ba9b34-3384-5362-8251-882e1e567006", "text": "aliens onstage singing three then 2 "} +{"id": "1005655", "video_name": "67e2933c-3697-5084-887c-7cc08fb9000b", "text": "a dome shape space made up of particles in cymatics formation above head with people lying down in awe under the dome "} +{"id": "0003241", "video_name": "39db928a-2b38-5e42-ba20-36605c279ddc", "text": "her cape is moving, the cow is talking, the cow is moving, the background is moving along with the cow, the mounts are moving away "} +{"id": "6003230", "video_name": "ad86e0fa-a30b-5b04-ac1d-fa4f7152e6a7", "text": "In a bright setting, the camera zooms in on a model with stylish glasses. The background blurs into a soft bokeh effect "} +{"id": "8003439", "video_name": "0ff5a469-7715-5235-9e38-9142165ea1ac", "text": "crea un video de Tyler the creator con Taylor Swift "} +{"id": "7003094", "video_name": "e7d3cda9-2664-53d9-a0f0-eb1a97246e35", "text": "ubermeister, 21 yr old urban femal beautiful , vibrant hip hop fashion, perfect lighting, award winning, 16:9 "} +{"id": "1003140", "video_name": "39e90147-0307-5b17-a9ca-d7dee79e0690", "text": "A group of long haired elves wearing white robes, waking from sleep in the forest. lotr movies style, epic, awe inspiring, dynamic "} +{"id": "0003092", "video_name": "36d828d7-018e-5651-abd7-154f6b9a5cee", "text": "TV showing a woman reading the news on TV "} +{"id": "8003314", "video_name": "01ee082a-2852-5210-9d91-0120fed55739", "text": "white rabbits and ladders, Escher style, trippy, motion 1 "} +{"id": "8003623", "video_name": "c4bac30e-6154-59dc-a2b5-d027eda46324", "text": "the onset of night and day Message: 1 Attachment "} +{"id": "0004796", "video_name": "0f487bb2-26a5-5833-b479-f0e0a5b62a92", "text": "small village on the mountains with bad weather and a big Queens and rains is falling "} +{"id": "1006730", "video_name": "7b4e8641-2c8c-5ef5-abf2-f8af8b842dd5", "text": "Dorothy returns to Kansas with the lesson that true treasure is in the home, and that there is no place like home. "} +{"id": "4002725", "video_name": "4f22caa9-dd80-53a6-bd59-14d31e28077d", "text": "a video of a picture showing name change of country from Ceylon to Sri Lanka "} +{"id": "6002901", "video_name": "24a89aa8-3be8-520d-99f8-1b3fe8804c28", "text": "A shot of the family emerging from the arrival gate at Zurich Airport, their faces lit up with smiles as they catch their first glimpse of Switzerland through the large windows. "} +{"id": "6002588", "video_name": "4aaad2fa-981c-51f0-8b25-2fe2230bfc6d", "text": "2 guys drink coffee near a coffee kiosk "} +{"id": "2006187", "video_name": "0e68873a-1c96-5a25-bbec-005d8d27d54e", "text": "big ape and real man talking each other "} +{"id": "7003454", "video_name": "b5f7f5c7-5bd4-572d-bf4e-d028ba83d01d", "text": "Craft an image where a neglected body grows tired of longing "} +{"id": "4004140", "video_name": "cd5201f6-cefe-5c0a-a026-bf29def0cc07", "text": "cute animals working at computers in an office "} +{"id": "0005094", "video_name": "149fe68e-3a9c-50fa-99fd-725fc6821fde", "text": "From rails on the ground to routes in the sky "} +{"id": "2007269", "video_name": "4111e753-7ded-5cb8-9b33-e49f8e3bcc70", "text": "Rabbits in spacesuits board \u201cX\u201dStarship, Dutch perspective "} +{"id": "1003461", "video_name": "40121542-7070-5e13-b860-99e5e1813e74", "text": "Angel wings fly, water moves; The fish swim back and forth "} +{"id": "5001846", "video_name": "651ee2d1-67e4-54c9-ab3a-5064ad299f46", "text": "Wheat is rich in protein, fiber, and essential nutrients. It aids in digestion and helps your chickens maintain their energy levels throughout the day. "} +{"id": "4004036", "video_name": "2db9fee0-c688-54dc-9110-7cd5f0a0787c", "text": "A couple blames their children at home "} +{"id": "2003240", "video_name": "8117694b-11fa-5415-9a49-88fc771d583c", "text": "arena death of gladiator in movie scene reality "} +{"id": "7004962", "video_name": "e44b97ee-f729-5f63-b78f-b7d01cdbb3d5", "text": "Woman walking in a mansion, sexy body, back view, wavy hair "} +{"id": "0003525", "video_name": "3efbaf06-1db5-52f6-8085-54fdd96c58e7", "text": "polaroid of a fairy playing with watermelons "} +{"id": "8003247", "video_name": "d1ed981a-2938-5e2d-bd01-cb7c14a8e36c", "text": "clock hands spinning, dandelions spinning, realistic scene "} +{"id": "3004834", "video_name": "84b232e1-d821-5f45-ad14-b2087597e6da", "text": "Terra Cotta Warrior is talking with an Australian student on the Great Wall of China "} +{"id": "8003653", "video_name": "32f1441f-3cc1-589a-b4d1-261554220e32", "text": "Confident man, admiring people, hope, resilience, transformed neighborhood. "} +{"id": "2006123", "video_name": "51666c81-55ef-541c-9877-cfd4a9261277", "text": "a robot is eating rice noodle "} +{"id": "4003331", "video_name": "9949ee25-b4b2-5828-b1b7-e9f5197a2771", "text": "On the front she had drawn caricatures of Mary and me with the words: \u201cHere are some funny people "} +{"id": "5001675", "video_name": "0b0cf1e3-36d1-5caf-8474-43c3e95f8615", "text": "Make this image move forward in high quality "} +{"id": "5001294", "video_name": "88a623bf-38ae-5f0d-a58e-540016315f2f", "text": "lion roaring and lions eating an animal "} +{"id": "4002682", "video_name": "eefe2599-9cd0-5fd9-83f0-19d56079d37f", "text": "pirate boy, standing on harbour, waving his hand to the camera, pixar studio style, 4k "} +{"id": "8001637", "video_name": "6ecf00f8-ca73-5759-b6f7-c2e292277b62", "text": "most incredible artistic holographic lighting , brighting color bathe in color , nano robotic details intricated in holographic clothes Message: 1 Attachment "} +{"id": "0004804", "video_name": "0f5d83d9-901e-5caa-876b-c044054d867b", "text": "1950\u2019s super 8 footage of abandoned bowling alley, saturated ghost lurking "} +{"id": "1006573", "video_name": "78687661-f984-572c-848a-dd0223d0bb31", "text": "dark workshop, candle light, elf\u2019s working, super realistic, high detail "} +{"id": "7003756", "video_name": "17d6a722-9b8d-5914-b957-68823750c700", "text": "a brain illustration that moves beyond binary thinking "} +{"id": "0004839", "video_name": "1018f3b6-efba-5d06-af50-45c798dafa3a", "text": "Mowgli racing with his friend wolf in jungle in Cartoon style "} +{"id": "1005349", "video_name": "6258be5f-591a-5a7b-abb2-f43d446e5b67", "text": "cinematic vibrant action scene, two men in a chase crash through the window of the building, inception, matrix looking character HD, 4k resolution, sharp, red dragon cinema camera "} +{"id": "2003196", "video_name": "75b5a81b-65d6-5ee7-8de0-275f48ce6f19", "text": "tarry night, stunning scenery, two beautiful yorkshire terrier outside of a cafe, Paris, in the style of Renoir, Monet, van Gogh "} +{"id": "1004309", "video_name": "4fa81038-dd79-5111-93e0-d7b9779fa681", "text": "image of tuning bmw 4k full detailed "} +{"id": "5001163", "video_name": "832b0159-0bea-52c0-a48b-2d86b03629df", "text": "Ten smiling animals stand in a row, highlight number 10, 3D cartoon Style "} +{"id": "0003483", "video_name": "3e69e58a-6ae9-5945-a32e-85f23d375c9e", "text": "A 20 year old girl singing a funny song in the garden "} +{"id": "0006494", "video_name": "2d7d88a9-0a02-504f-b992-17fd4362cfa2", "text": "man taking products out of a shelf in the supermarket. Advertisement, cinematic quality "} +{"id": "6002444", "video_name": "c41b22b3-0a95-5185-acab-cf370668edc5", "text": "cat mediating in front of trees Message: Happy holidays! (Font: MODERN) "} +{"id": "2005988", "video_name": "039d4fd1-1fe1-5f5f-abd4-0bcfe1695cc9", "text": "lion mane flowing objects around him moving "} +{"id": "7004739", "video_name": "617fe77b-eb33-5e2f-b3b7-6aaa6972550b", "text": "A long time ago, the prophet Adam and his wife Hava had two sons. "} +{"id": "7004667", "video_name": "fdc53eb4-bb74-5da0-807d-1d744c2360a1", "text": "generate a Ladybug in a green mountain "} +{"id": "7004881", "video_name": "d2441831-3596-56ac-a907-de8172541508", "text": "OLD BLACK AND WHITE MOVIE Medium shot of Zog and Astro encountering bewildered Earthlings in a bustling city. The camera captures their confusion and excitement "} +{"id": "8001627", "video_name": "fff83268-241c-5e28-8b8e-409341f1036e", "text": "The green organic fiber movement imitates the mimicry of plant ferns, drawing, rotating, moving, and dynamic visualization effects "} +{"id": "2004985", "video_name": "7097b804-9d14-540d-aa02-42d7408719af", "text": "spinning gold cogs inside a gearbox like a clockwork machine Message: 1 Attachment "} +{"id": "7003142", "video_name": "81e09256-0c73-5880-88db-47fb721ea153", "text": "A man standing and waving infront of his small compact house in a suburban neighborhood "} +{"id": "8003186", "video_name": "11cdaa36-5472-5309-a64f-d26e1a86136d", "text": "voluptuous female wearing thin black bikini bounces up and down, natural body movement, sturdy, anatomy, full body shot "} +{"id": "2004566", "video_name": "11c108e4-e9c6-5481-a430-55ce95557fef", "text": "Raj agreed to learn the rain dance and stayed with Guruji for several days Cartoon Character "} +{"id": "3004113", "video_name": "9a5cb3c6-6894-560d-b80d-ba74187889ab", "text": "Visuals of a person reflecting on their journey. "} +{"id": "0004686", "video_name": "0d4cf71f-a8f8-52ba-a257-d72822bcbdd9", "text": "blink and talk like host talking audience confidently Message: 1 Attachment "} +{"id": "6003195", "video_name": "61fc1a10-5940-56bc-ac84-910d446f1223", "text": "video who prrsent nfc cards and in this video peoples stikcs her cards to their phone "} +{"id": "7003737", "video_name": "27dbf3ea-fa49-553d-9f57-8aaaf53a691a", "text": "an incredible, beautiful and coarse explosion in space, fantasy style "} +{"id": "8002508", "video_name": "18af9500-9ce2-5403-932e-4bb734c2f3ef", "text": "refuge in the night shade, realistic , cinematic , Sony AR7 "} +{"id": "3006011", "video_name": "68e0ed0c-5de0-59b4-82c8-af6f7e0f2a73", "text": "A captivating sunrise over a calm landscape, accompanied by serene background music. "} +{"id": "1004834", "video_name": "59568442-c0c3-5394-86c9-c95970e99f58", "text": "a girl soaked in a rain "} +{"id": "2005007", "video_name": "f033e3f6-f042-5c9e-a497-f1bd5f255c0b", "text": "\uff1aA donut has appeared, with the surface covered with various fruits, and the color is matched with Macron blue, white, red and other colors. This makes the donuts look not only delicious, but also visually appealing. "} +{"id": "1003131", "video_name": "39aa1d30-4852-5d83-974e-1d44caeac09b", "text": "The Golden Age of Islamic Cavalry: Imagine a scene from the Abbasid Caliphate, with heavily armored Muslim horsemen in intricately designed armor, adorned with calligraphy, riding across the vast deserts in a show of military might. "} +{"id": "4003318", "video_name": "e942c221-80eb-5a0b-906f-4562c48acc55", "text": "birds and butterflies and blue sky "} +{"id": "7002126", "video_name": "cca4d1ba-c5ee-5aad-8ef0-bd869e3fb629", "text": "security sits on chair and smokes electric cigarette. Then he stands and go to the swimming pool. "} +{"id": "2006757", "video_name": "cb75fb07-8467-58c7-b504-f1ee07e00bfb", "text": "teacher saying good morning good morning with a stick in his hand with class room blackboard background "} +{"id": "0005440", "video_name": "1ad2ea30-19c4-588b-8ddf-0b3e2b602dcf", "text": "cinematic shot of a miniature googly eyed dragon in a welsh mountain forest "} +{"id": "4003069", "video_name": "19a16063-7d02-573f-be8b-8c2bf24f9832", "text": "the ocean falling out of the sky, ultra lifelike splashing splash crash crashing water tidal wave flooding city streets 8k Jeremy Mann hyperrealistic ultra lifelike "} +{"id": "8003050", "video_name": "0fe4a064-f885-507c-8f0a-977565e82e08", "text": "shiba inu with a green collar attak "} +{"id": "3003271", "video_name": "283c8b4e-60e2-5819-a2ff-3d0bc7ff905a", "text": "turn a bmw 7 for 360 "} +{"id": "2007636", "video_name": "fa44d75a-aa1c-5556-b191-0bb9ee8e1875", "text": "Gandalalaf He stands in front of the Valley of the Kings tomb wearing the clothes of the Pharaohs, focusing on the facial features and hand movement, and the image is of high quality, cinematic "} +{"id": "0006928", "video_name": "356e08fa-3459-5e43-9c27-f6b0a8e5ff4d", "text": "Describe a scene for a Thanksgiving card. Paint a picture with words of a festive sunset, a table covered with delicious dishes, smiling friends and family gathered around, and the beauty of autumn in the background. Convey the essence of gratitude and the spirit of togetherness on this special day "} +{"id": "3005565", "video_name": "6b94d931-6528-5c9f-9232-e81b9a9fbdcd", "text": "10 cyberpunk characters through a coin at the big sphere in the center. Then the sphere picks one winner and he gets all the coins "} +{"id": "0006308", "video_name": "2a6996b6-0394-5a54-b8de-e7d0989cda25", "text": "Darkness prevailing, only a few rays of moonlight filtering through the torn curtains "} +{"id": "1005934", "video_name": "6d031943-f00d-564f-bccb-692102fa7b4d", "text": "music notes shaped bubbles floating in blue sky Message: 1 Attachment "} +{"id": "0003603", "video_name": "403e0fa8-69ba-5967-9c30-e3d59963ea2a", "text": "zoom out shot of an anime girl looking up at aurora borealis in the arctic by Alena Aenami "} +{"id": "4004614", "video_name": "3752041d-23b3-52c1-bd67-f115cf0e8a56", "text": "Bohemian Dog, paint funny illustrations, artistic, heart shaped pink frame sun glasses "} +{"id": "8001482", "video_name": "527ea17d-e824-541c-b99b-688589ef4b17", "text": "a Girl, black eyes, black hair, blurry, jacket, Long hair, looking at viewer, nose, indoors, realistic, shirt, at a room, solo, upper body, Black shirt, talking and scare "} +{"id": "8001081", "video_name": "d7003a6d-e29b-519f-9c40-bbbaabe30bb2", "text": "person stands still, no face movement, planets around her moving and revolving "} +{"id": "6004628", "video_name": "80b3a171-7b2e-5c34-9c22-7301f75a102f", "text": "This book will make you millions! "} +{"id": "8002089", "video_name": "3b01161d-e765-5cb2-a375-87d596ba9beb", "text": "Very cupids, texture, hearts, heart, fire, thorns, glass, mirror, magic, occult, wind, black roses, spirits, nature. "} +{"id": "3003220", "video_name": "280b64d6-2836-563f-ac5a-ef9d0eeaf9fb", "text": "Man black super herro, un the moon survival "} +{"id": "2005204", "video_name": "4f5cf8a4-816a-5bcd-8edc-2b9df64de072", "text": "panorama of a large futuristic city, sunny day, style: pop art "} +{"id": "1004758", "video_name": "5813a355-fe0d-5e68-8f3a-debaafb88757", "text": "Batman and Joker in a car chase with a Dr Suess style, high quality "} +{"id": "6003057", "video_name": "4618f6ab-acf7-5565-8124-544867042a42", "text": "A night forest with beautiful falls and insects sounds "} +{"id": "1006445", "video_name": "76031c30-396f-5542-81c0-7388843cd14a", "text": "The little boy explores the fantasy forest, and the robot guards patrol around Message: 1 Attachment "} +{"id": "6004415", "video_name": "90afb3b2-b933-5a77-8315-aa253292d312", "text": "Movie,A rundown sailboat,Floating on the sea surface,rainstorm "} +{"id": "8003013", "video_name": "da738748-2ba6-51aa-86e4-d6bf816d7f20", "text": "Sunrise over the ocean in Miami Beach, Florida. "} +{"id": "5001337", "video_name": "802d017b-4266-5951-ba2c-74333efe2a94", "text": "An array of 1000 solar cells paved on a grassland take the sunshine and convert it into electricity, which is utilized for water electrolysis "} +{"id": "5001187", "video_name": "3203e2be-a831-538b-af53-8de1fe5663d3", "text": "Shield, axe and torch and the inscription LOGOS "} +{"id": "4003128", "video_name": "f49f3ce1-612a-5091-92d3-22671969d37d", "text": "A dog ran on the grass and knocked down a child "} +{"id": "0003425", "video_name": "3d5a9c8c-2013-5200-b312-cff8370e96f2", "text": "field of flowers red yellow white "} +{"id": "3005399", "video_name": "2d415e29-2c98-5b2e-80ba-ba09e57bd6c3", "text": "moving forward, beard amd clothes, floating in air , 3d realistics view, angry look, "} +{"id": "2003422", "video_name": "808704b3-28b9-5d06-bd93-889a5b801bd8", "text": "The church is burned down, camera zooms in from far to near, 3:4, 4k "} +{"id": "5001898", "video_name": "0c56e0eb-f212-5f3b-9a7c-06ca860f1332", "text": "Abhimanyu fought on bravely, but he was eventually killed by the Kaurava warriors. \n\nHis death was a great loss to the Pandavas and a major turning point in the Mahabharata war. "} +{"id": "1003890", "video_name": "47bf625f-1e48-536a-a8a5-78052522b415", "text": "series of quick clips showing various aspects of law, such as courtrooms, law schools, and legal documents "} +{"id": "0003539", "video_name": "3f311b72-c5b2-5ed0-9273-9e11fa0374a8", "text": "Armed with her camera and a flashlight, she ventured inside. The creaking floors and the distant sound of dripping water created an eerie atmosphere that made her heart race. "} +{"id": "2004720", "video_name": "6ae5e99d-c53f-5f65-99a3-d127ff36afba", "text": "talking holographic heads inside many cubic displays "} +{"id": "1004593", "video_name": "557fbb39-e20f-5b99-9139-4ebcad1398d5", "text": "barbie lisining to music using headset "} +{"id": "3006153", "video_name": "08210604-fb8c-511a-8f07-734d2a164e67", "text": "a teen riding a motorcycle at night barley bisivle "} +{"id": "7003346", "video_name": "7872d085-9f13-5a09-be7f-ce2bc0f08fe2", "text": "a mermaid swimming underwater, 1920s rare film footage "} +{"id": "7003597", "video_name": "4d87fe7e-529c-51cc-85e5-95e518f61d61", "text": "a 3d instagrammable space for the heineken brand, a green glass dome in the shape of a beer bottle 3 meters high with a tree and the fruits of this tree are beer bottles, inside there is a green armchair with red neons and a person sitting taking a selfie, around there are many tropical plants, dramatic lighting with a red neon star, twinkling lights, glitter, red star neon glow "} +{"id": "7002375", "video_name": "ff36048a-48ce-5ced-b37c-a0e97a752f52", "text": "anime raindrops on a leaf in a forest in the style of studio ghibli "} +{"id": "3006253", "video_name": "228bc57a-ab36-5752-8d31-af8942130658", "text": "kids playing baseball in the street in falls but dressed informal "} +{"id": "4003163", "video_name": "d0555204-9c9c-535f-9a7b-f28efe8f3951", "text": "a beautiful girl sitting in deep thinking "} +{"id": "6003209", "video_name": "e0d87af3-cbda-5ba4-89f4-aec04752e4b4", "text": "pixel art dark blue cat walking through deep forest "} +{"id": "7003555", "video_name": "6a234027-07f4-5ff4-b68c-80f0c993f414", "text": "Advertisement for an ophthalmology clinic, a young woman throws away her glasses and becomes happier "} +{"id": "2007227", "video_name": "be85c151-01d8-5a99-9438-ee4e7f7c15a4", "text": "a girl with blue hair, swimming in the universe, surrounded with pink roses sea "} +{"id": "3004585", "video_name": "5223f057-0831-54fb-b962-6733980e10ca", "text": "the leading actress in anime \u201cbocchi the rock\u201d playing guitar in the vally, using Moebius painting style "} +{"id": "1005261", "video_name": "60ccaa41-0d01-5a26-a19e-6c66fa9dbed2", "text": "flaming skulls flying above and around of sorcerer, high fantasy, dark ambient gothic, dark fantasy, steampunk, biomechanical "} +{"id": "2005908", "video_name": "cb4cbf47-a3b2-5ca4-a1e4-b2a1460ad22b", "text": "robotic egg opening to reveal a detailed cyberpunk city inside, mind blowing details "} +{"id": "4003501", "video_name": "b937df80-c5f8-5d78-9fe8-58a1b891126b", "text": "a ww2 sherman tank moving in front of a waterfall in background, 16k, high detail "} +{"id": "7004507", "video_name": "ca844803-9c27-55e3-b72c-2eb432210793", "text": "two ladies sitting opposite each other in a cafe and the waitress standing next to them realistic, cinematic, dark, pessimistic, 8k "} +{"id": "5001873", "video_name": "75037147-cca0-5cdf-879f-73f6252dbec3", "text": "realistic stoner whale chilling with his homies with a gorgeous flowing watery background, in the style of 32k uhd, beautiful, detailed marine views, florescent skin, iridescence, underwater sci \u2013 fi, beautiful nature "} +{"id": "0003729", "video_name": "4279bd4d-455a-5783-beb7-0bc1a359236d", "text": "rockers drinking beer in the pub say cheers shaking the beer "} +{"id": "1006022", "video_name": "6eab02f2-07db-518a-92fe-e0907eff4803", "text": "Outskirts of Zimbabwe, a humanitarian hospital. a river runs front of the hospital and there are hippos and elephants bathing peacefully. "} +{"id": "1006894", "video_name": "7e01ea32-7f34-589b-b9dc-688a354b452d", "text": "dangerous people happy of their decision "} +{"id": "8002613", "video_name": "f7c70782-79e5-5c32-aab8-7885fcb6d41a", "text": "A civilian very elegant suited man meets the pope in private apartments of The Vatican. Show a camera right pan of Maps. Near realistic sketchbook stye, monochrome, beautiful lights and shadows contrast, motion3 "} +{"id": "2004215", "video_name": "6b2b77d3-a90c-5062-9c49-5054c437e76a", "text": "a robot accountant doing taxes for a small business "} +{"id": "3003136", "video_name": "70e12fc2-99c9-5519-a7fb-8dfe15e4bd3c", "text": "a cat with hat and snow "} +{"id": "8001453", "video_name": "d4726eae-4ce7-5756-9e5c-0fa97c9dc398", "text": "A wounded lion and a pack of hungry wolves fight on the road, surrounded by speeding trains "} +{"id": "3004796", "video_name": "0b9c01b0-394f-5e74-849e-34f6dac440be", "text": "a chihuahua wearing a sombrero and a pancho in lisa frank style "} +{"id": "0003548", "video_name": "3f4df055-ef5c-5eda-b872-eaf3a81920c4", "text": "Narnia is a world where animals and mythical creatures coexist harmoniously, each with its own unique qualities and abilities. "} +{"id": "1003540", "video_name": "414c4a67-4f57-5f7d-afc3-c96d078717b1", "text": "the dog jumps up on their laps, 2 little girls eating pizza on the couch, up close shot, happy enjoying pizza, talking on their cell phones and laptops "} +{"id": "0004264", "video_name": "06144843-60eb-51cc-8463-cf000c1341d0", "text": "dog wear magenta color dress and dancing "} +{"id": "4004027", "video_name": "a4e88cdf-e45d-5674-9dd3-2050a471ae80", "text": "Goddess Durga Siting on Lion in a jungle, Her hair are flowing with the wind "} +{"id": "2004840", "video_name": "a3566248-cb92-5ad7-bd07-0ade07a83007", "text": "inside an empty warehouse, all painted white, white smoke floating inside, cinematic light, 8k "} +{"id": "0004259", "video_name": "05f2c1fc-d3a1-5356-88d1-d343f97c3181", "text": "a beautiful young woman getting out of bed "} +{"id": "2005205", "video_name": "a3faf101-f152-58d9-aa96-f9d4cf96ec19", "text": "A classical beauty with long hair on a small boat in the river, holding an umbrella "} +{"id": "8002385", "video_name": "1199f1f1-3126-5312-950c-048d07dce3ff", "text": "A mermaid at sea, her hands open, holding a fish in one hand, and dragging a plate in the other,illustrator wor\uff0cstunning drawing, "} +{"id": "0003871", "video_name": "44f06290-bb72-51ff-a325-2403379bfefa", "text": "beautiful American hindu lady doing namaste. "} +{"id": "6002942", "video_name": "724ca6ce-c2c2-5be6-becf-04222a0574b3", "text": "Volkswagen Magotan black, luxurious rear interior neon lights 8k "} +{"id": "0004397", "video_name": "083782f4-9af6-53f2-a9c7-a9f3af878684", "text": "spaceship on Taj Mahal roaming around "} +{"id": "1006192", "video_name": "716317ce-df49-5a3d-a4d3-da2fc16f2bee", "text": "Crystal creepy Venom symbiote skeleton entering a dimensional portal from a distant galaxy "} +{"id": "4004000", "video_name": "e983cdaa-6e8b-509e-8a95-f366e9d26c3d", "text": "a shot from the mountains looking at the sunrise over las vegas nevada "} +{"id": "7004425", "video_name": "d3c72c2c-3950-59b3-a492-b2e21adde6c3", "text": "generate an image of gojo against goku in a fight "} +{"id": "3005296", "video_name": "39e046f9-9639-5131-8da1-0ec79d4286e5", "text": "EDI from mass effect talking to cortana from halo, 3d, ar 16:9 "} +{"id": "3006695", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "University student desperate for not realizing his dreams "} +{"id": "7003043", "video_name": "13044624-70fa-533b-820e-561094268a46", "text": "Rever dances alone in a club, sweaty and in a medieval costume "} +{"id": "8003154", "video_name": "78a5cf93-3acf-50da-87bb-b807108eab08", "text": "beautiful blonde woman standing, pov: full body, putting on a glamorous fluffy fur coat, no distortion, 8k, high quality, hyper realistic "} +{"id": "2004671", "video_name": "84f06f82-801a-534a-815b-62022af801d6", "text": "The scene transitions to Gunna on top of a skyscraper, overlooking the city. The city pulsates with energy, and Gunna raises his hands, commanding a dazzling light show. "} +{"id": "4003496", "video_name": "cdb04fd0-d79c-5687-b92a-aff27c07175e", "text": "a huge bear chasing a girl in the jungle in rainy day "} +{"id": "2007216", "video_name": "084042f6-286f-51c8-b25a-41811f8b9252", "text": "Acrylic painting of an huge Indian mandir nestled in nature, cascading waterfall nearby, viewed from an elevated angle, blending the styles of Makoto Shinkai, Jamie Wyeth, James Gilleard, Edward Hopper, and Greg Rutkowski with a touch of Studio Ghibli and Genshin Impact, trending on Pixiv Fanbox, executed with palette knife and brush strokes, lush greenery, vibrant flowers, tranquil waters, architectural intricacy, cultural motifs, serene ambiance, moving trees and flowing water and waterfalls "} +{"id": "3003846", "video_name": "e361b1f6-842c-59ea-b29b-38c838711643", "text": "luh calm fit opium bird from tiktok. 6 foot 9 tall bird, with white feathers standing and vibrating his wings (video) Realistic. He has to be moving and his feathers shall be vibrating (suddenly) "} +{"id": "2004682", "video_name": "897af66c-7306-5151-89d5-0490a6f8fde4", "text": "morning in the city and the bird is flying "} +{"id": "7003144", "video_name": "c4276b4d-c467-5375-931f-deab2a791b66", "text": "many long fingers entangled in themselves wiggling transforming in plants, photrealistic, 4k "} +{"id": "7002861", "video_name": "4b6dedb3-9670-5c2c-9fcd-b2cad1401e3e", "text": "Meet Merliah Summers, a Barbie Girl, WITH WHITE SKIN, AND LONG FLUFY HAIR, Merliah walking on the Beach wearing full beautiful dress, Desny style cartoon, Motion 4 "} +{"id": "0005309", "video_name": "184f2fd6-8088-53d2-80b3-a008ba103443", "text": "Liam was known throughout the village for his generous heart and unwavering kindness "} +{"id": "0005654", "video_name": "1ec5747d-eab2-5f87-a039-76c5dc292d39", "text": "Cat taking Selfie and dog getting annoyed in the background "} +{"id": "1003220", "video_name": "3b548fb6-11b1-594d-a89a-be77c8f65238", "text": "a black and white 1930\u2019s film with horror vibes about the ancient advanced kingdom by the Nile river. "} +{"id": "4002459", "video_name": "9ed0f710-ee5b-5d8a-ab8c-c30974d28cf8", "text": "video of blonde influencer promoting her secret beauty boxes, smiling, showing the pink boxes, numbers on the screen "} +{"id": "0006911", "video_name": "353a0e29-f389-544e-9772-f898c0b8224a", "text": "egg customers purchase plenty of crates of eggs in the Nigerian market "} +{"id": "6003847", "video_name": "8d4d893d-8462-5be8-a7ef-942e420d7cbc", "text": "A sight of an eagle flying "} +{"id": "0005796", "video_name": "21648fce-3fad-5527-98c8-efd74972db71", "text": "Transition to a scene of a graduation girl ceremony on a sunny day "} +{"id": "2003695", "video_name": "c504dbcf-de9f-50df-a364-2ec2ac9dc3d0", "text": "a cinematic video of a cowboy driving an audi through the desert "} +{"id": "1006883", "video_name": "7ddab789-35a8-501e-abe4-bfb20f44df95", "text": "Huge monsters, CG, foggy scene atmosphere "} +{"id": "2003143", "video_name": "e6409820-0dbb-5264-85d0-c8a024da4ac8", "text": "A cave full of Cullinan Diamonds "} +{"id": "4002515", "video_name": "5d2e50fa-317b-5396-b1a6-9c4d15774c62", "text": "1950\u2019s super 8 footage of distorted hazy suburban city "} +{"id": "0005379", "video_name": "19c0d897-6668-5b27-b999-e3f08a40b5af", "text": "They witness the forest blooming with colorful flowers and happy animals.3d animation,4k resolution 16:9 "} +{"id": "3006638", "video_name": "ed99542d-ec2d-5810-80c4-f8b59f56ddd9", "text": "a man riding a lion in the Agadir City "} +{"id": "0004393", "video_name": "082e3221-75b8-5757-9d8a-6d32a8ab37d3", "text": "There are various small animals in the wonderland "} +{"id": "1003324", "video_name": "3d2ed683-5583-57c4-bfa7-fd123a7202e9", "text": "Design closing credits with a backdrop of the city, capturing its diverse and vibrant atmosphere "} +{"id": "0006351", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "Mona Lisa walking in a room with a chair "} +{"id": "7003694", "video_name": "bd5c86a0-19ca-5416-85bc-0abaab9424ab", "text": "significant harm by accidental detonation. It is also possible that a plutonium trigger was lost in this incident, and that the whole bomb still rests somewhere on the seabed off the United States coast. "} +{"id": "8002968", "video_name": "5a239a46-7a06-54df-98c0-e22499ba6a9b", "text": "ashwatthama an ancient warrior in Mahabharat "} +{"id": "6004136", "video_name": "21033f0e-4996-5437-af52-f19bf57f54a2", "text": "battle in medieval period with so many soldiers fighting "} +{"id": "3004449", "video_name": "0bedb079-90b0-5ea9-91d3-11460ae7abaf", "text": "the sand falling into the lower part of the hourglass and a final zoom out. 5 second video "} +{"id": "7002155", "video_name": "3731109d-e2a4-50bd-8f51-424a71144579", "text": "As their time in Switzerland came to an end, Sarah and Mark knew that this adventure would forever hold a special place in their hearts. Their journey through the Swiss Alps had not only strengthened their friendship but had also allowed them to immerse themselves in the beauty and culture of this enchanting country. "} +{"id": "3006877", "video_name": "a943be92-1f89-5b7f-ab64-c0eb25da198f", "text": "the little prince and fox and roses in forest "} +{"id": "2005053", "video_name": "a0bd44f6-11e0-5933-ae50-2f01809a4ebe", "text": "anime teenager with red hair in classrom and he wearing black costume "} +{"id": "4004223", "video_name": "bce7d007-a0f4-546b-8a1b-73c11069c24b", "text": "Ice berg melting, ice cap, ocean, ultra realistic, bright sunshine, polar bear walking away "} +{"id": "4004021", "video_name": "13604da6-6137-50e2-ac50-2f42569d15e7", "text": "first snow fall on spring leaves Message: dogs (Font: MODERN) "} +{"id": "7002311", "video_name": "12b37e76-d2fe-5ef3-b290-925de07feac9", "text": "make a brown horse swimming in the sea. "} +{"id": "1004751", "video_name": "57f70422-0805-5e0c-80a8-f5600d478900", "text": "a serene forest landscape with sunlight streaming through the trees with a man in the image "} +{"id": "4003344", "video_name": "f570e0d7-df78-5661-b738-3998587fc6f1", "text": "clint eastwood, wildwest cowboy shooting at ghosts"} +{"id": "2003847", "video_name": "51168836-40d3-510c-a849-7a010c949922", "text": "The village comes to life with intricate details, charming cottages, and a bustling marketplace. "} +{"id": "1006449", "video_name": "760aa8c0-e7cd-5bf9-b4b3-f3cccff5923f", "text": "A very beautiful girl, in a long black dress, walks on the water. She has long thick black hair and big blue eyes. "} +{"id": "2006965", "video_name": "a2069004-7367-5723-943e-7ec453720b61", "text": "a dragon dancing under the rain "} +{"id": "7002388", "video_name": "c032509d-3af2-568e-ae18-f5d77d17750e", "text": "An image depicts two people engaged in a conversation, one person appearing emotionally distressed or making a demand while the other seems conflicted or uncomfortable. "} +{"id": "1005725", "video_name": "694f9f25-2e09-5db4-9bec-7361743d91e3", "text": "cozy little house lived a peculiar cat named Whiskers. "} +{"id": "3006476", "video_name": "262a021a-8e2f-5094-bad1-87dfb99df315", "text": "A murder of ravens, flying in the sky, mountains in background, from left to right, "} +{"id": "2004835", "video_name": "791b5903-fb9c-5f50-97af-12662d663fb0", "text": "A master stands in front of a waterfall, with a beautiful environment "} +{"id": "1003750", "video_name": "45287df4-38dd-5169-94d3-be87edddc8d4", "text": "create a virtual background just like the SciShow kids in youtube "} +{"id": "4004365", "video_name": "c836da5f-ea8b-5ada-8e1a-60db114ddc77", "text": "3d cute cartoon character same as Pixar characters of an Indian woman talking to her husband "} +{"id": "2003107", "video_name": "538c7070-0ee4-5c4a-aa8f-a10fdb54dcca", "text": "A Real Madrid footballer scoring a realistic style penalty goal. "} +{"id": "1005126", "video_name": "5e8afaee-7885-5b7f-9360-c3114befe980", "text": "spiderman crossing the street of new york dancing, pixar style "} +{"id": "6004280", "video_name": "a096d44b-fe1b-599c-ba0d-683125d753fd", "text": "Scene of Boston Harbor Photo Description: Boston Harbor in 1773, with ships loaded with tea docked. "} +{"id": "7004187", "video_name": "5f3010c2-9417-5f3d-90fa-b57445079d3d", "text": "single big pumpkin smiling running on weel on jungle road grandma sitting inside "} +{"id": "6003660", "video_name": "b384e502-5893-5d8f-b9d4-400d2291bb0d", "text": "nissan silvia s15 drifting on road "} +{"id": "1004990", "video_name": "5c3f68ca-3642-5aec-ae24-81d52080c94e", "text": "we can see the moon and twinkle star "} +{"id": "7004950", "video_name": "d1656d40-46b0-57ca-80ce-ce8b73ca1f9c", "text": "blooming red rose, dew drops, hyper realistic, macro photography "} +{"id": "2004377", "video_name": "39957fa0-e547-5408-867b-6d4ab545b607", "text": "3d pixar animation of a Malagasy Boy called Rakoto, a poor little boy "} +{"id": "8003001", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "hanging paper in the middle, with nothing on it, cartoonish, next to it a pencil "} +{"id": "2005921", "video_name": "2bd4dd66-e5f6-5858-bb75-c5d0e99fb9a3", "text": "intro from Jack Ryan 0:23 t o0:26 16:9 "} +{"id": "4002787", "video_name": "396bbb2d-f26b-5f5a-ad12-ae74c3ad3274", "text": "Village plug, small river, lively streets with strange creatures walking around, cyberpunk style 4K 16:9 "} +{"id": "1005682", "video_name": "686c01b2-f72f-53d0-8c65-e435392725e1", "text": "greyscale grainy security cam footage, low framerate sped up, unsettling atmosphere "} +{"id": "2005495", "video_name": "0b647778-dbd5-5c32-b2c6-c3ec52cfb6f0", "text": "fishing boat at storm, sea waves, sunset "} +{"id": "7002533", "video_name": "c79d148a-9388-5c7b-bc4e-16e81c13d892", "text": "A scared man running, in fisheye angle down the streets of oslo "} +{"id": "1004269", "video_name": "4f007220-ff15-5913-9f44-210d8189f234", "text": "a man is walking front of lion "} +{"id": "2007092", "video_name": "8d8f3547-b570-5ceb-97ed-0af8f029c29c", "text": "a man named BEP crosses the street during rush hour in New York and takes his phone out of his pocket "} +{"id": "3006003", "video_name": "2e14891f-a473-50a8-a7a1-85ae17c49082", "text": "a guitar moving through a distopian technologic forest with melting hallucinogenic textures. Moonlit by a large full moon at night time "} +{"id": "2007387", "video_name": "1e8c826e-bb9c-53a7-b79c-775c927cfbe6", "text": "A girl, the artist Yayoi Kusama, rides a horse in the desert "} +{"id": "4003956", "video_name": "8633df8c-6705-5fec-afbf-c79c78c63312", "text": "2024 snow globe with spiderman inside "} +{"id": "0006937", "video_name": "35884585-ed75-5519-90dc-55d388c35bb8", "text": "a drawing of abstract plants growing, in the style of a minimaliatic child drawing, color pens on white background, negative space "} +{"id": "2003380", "video_name": "4c019f3e-2650-5670-b277-d2133aa243d5", "text": "kids playing volleyball in playground, audience in surrounding, green floor, kids in sport\u2019s uniform "} +{"id": "6002310", "video_name": "58ec9ae0-705d-54d4-a333-69da287e3295", "text": "A drone shot of the gym at sunset, symbolizing the end of an inspiring journey and the beginning of new challenges. "} +{"id": "2004965", "video_name": "af74ee3d-8824-538e-b324-de4482d0dc62", "text": "swimming pool surrounded by the vibrant colors and lush vegetation of a jungle, intricate details, 8k "} +{"id": "2004335", "video_name": "4a343fff-6659-56fc-9ad8-ae1c8aa5354d", "text": "a scifi skull in a display case, growing muscle. sharp edges, cinematic, hyper realistic, film. "} +{"id": "1004542", "video_name": "545b00d7-a88a-5b23-9741-be7e26cd9483", "text": "In an epic and dreamy scene, there is a cute white rabbit shining brightly "} +{"id": "4003374", "video_name": "237c05ad-a856-59f7-81be-45aacda12777", "text": "background with big bees and colored smoke thunder lightning stars and a golden crown Message: JCI OCT MFG (Font: MODERN) "} +{"id": "2004541", "video_name": "4ad61ff9-c939-575e-b2bd-9fde2fbc7d48", "text": "Voyager walks on Mars with pets "} +{"id": "6002150", "video_name": "443a99bf-315c-58dc-9c78-e12d8e6ef7dd", "text": "A curious young golden fish named Finn encountering Sammy the Snail on a lily pad "} +{"id": "3006287", "video_name": "e140eae7-47fd-5c09-bbac-344337373895", "text": "splash of pink paint into a white rose "} +{"id": "8002692", "video_name": "c8c2b792-fcd9-55e4-a022-5f512da0087a", "text": "make a 5 second video on Jesus "} +{"id": "3006932", "video_name": "249b135f-294a-58d5-b3d5-ecacb7a2c11b", "text": "god ganesha eat food in temple "} +{"id": "8001550", "video_name": "38dcd433-1b04-50c4-b8b1-525eed836d3c", "text": "Simon Riley\ncharacter in video game,dark theme, dangerous "} +{"id": "8002456", "video_name": "ba346bb6-8d3d-5d20-b0ec-3f97800355de", "text": "There are 2 lions stalking prey on the African grassland, there are many old trees, there are a few deer eating grass, the wind makes the trees shake, high quality. "} +{"id": "0005952", "video_name": "23db4488-a347-5ace-958f-dba0cfab0e93", "text": "Elara is a 7 year old girl,skinny , her hair is brown and short and her skin color is slightly dark and has two hazel eyes . she has an adventure personality and has a sharp intelligence "} +{"id": "6004328", "video_name": "02f775f8-32cd-571a-9297-5d88a476acf2", "text": "You receive money to your current account, card, cash, and cryptocurrency, pay bills, buy and sell goods, works and services. "} +{"id": "6004320", "video_name": "b01f9d62-0614-5147-8595-24fbd2daaf03", "text": "image Kaiju rising from the sea "} +{"id": "7002690", "video_name": "05d98ede-f68e-5f9c-bf96-fb3ffc57d90c", "text": "total gaming 36 million subscribers celebration "} +{"id": "3006311", "video_name": "9b5adaf4-bc2b-57ab-8e0a-3770d6e63503", "text": "a vintage video of crowd of people stand in the glass and are looking to the street outside of the train "} +{"id": "3003303", "video_name": "8adeb945-2aa6-5d07-b136-ae05d5c76b09", "text": "A boy with black hair, white pajamas, looking at the belly of a pregnant woman, anime style, 8K, perfect details "} +{"id": "6004524", "video_name": "e3e41128-41bb-5f2d-964d-52e30b5cc9b8", "text": "beautiful little boy at changing room "} +{"id": "6004353", "video_name": "54d5f555-d035-5b90-814f-28e4004283a5", "text": "Once there was a dog. He was very hungry. He wandered door to door. He stole a piece of bone from a butcher\u2019s shop and ran away with it. He wanted to eat it alone. So he moved away from there. "} +{"id": "8003899", "video_name": "ea066090-81e4-5365-9944-bd9f912b22b7", "text": "Lily, the popular girl, with her captivating smile. "} +{"id": "4003314", "video_name": "8bf34d13-da72-5ce5-93e7-eaa4e5d0b85a", "text": "kermit the frog playing a tambourine "} +{"id": "4002913", "video_name": "24ce01a6-17a5-577f-8c0d-d553ca284d31", "text": "Photoshoot, tridiac color ristograph, futuristic black family, in the desert, in the style of Michel Gondry, night, foggy, experimental filmmaking, dusan djukaric "} +{"id": "2004717", "video_name": "7ef4ced1-7232-58b6-a117-199257e32acc", "text": "a powerful anime character with katana fighting against a power four hands demon at night in mountain with damaged body "} +{"id": "5001784", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "Donald Trump hanging in the sky, moon, stars "} +{"id": "5001133", "video_name": "dd592fd2-d5be-5447-aaba-f8f1d3e8573d", "text": "a dog stand alone in park. On grass "} +{"id": "4003235", "video_name": "1f514318-5a82-5472-9622-5c7875f93908", "text": "a child with red cap and black Adidas jacket with gun is walking on russian old city "} +{"id": "7003718", "video_name": "9d046d36-2a94-51a5-9d83-361d57d1b6be", "text": "an ancient chinese man, stands by the lakeside, fishing, ink render "} +{"id": "4003288", "video_name": "8920e459-9173-55d9-96dc-dff61aaad7bb", "text": "home party, a lot of people dancing, realistic "} +{"id": "1003351", "video_name": "3dc345f9-5bfe-5f21-8c5f-84c6821f3366", "text": "generate Madura temple to show its splendid beauty "} +{"id": "8002668", "video_name": "6b4f6dac-8e7c-5188-89ea-35282dd3e399", "text": "an anthropomorphic Australian Terrier in a space suit "} +{"id": "6003956", "video_name": "97729cdc-54bf-5b6d-abe7-b8be18c1101e", "text": "I am the true daughter of the He family. "} +{"id": "5001417", "video_name": "2c5f7506-c337-57ba-80fd-75f980391b6a", "text": "The flying dragon brings life to a barren land, symbolizing how AI can fuel business growth. "} +{"id": "8003341", "video_name": "83218215-6ccc-50cc-91cd-04873ef4c0f9", "text": "man who makes a lot of money from betting "} +{"id": "3005031", "video_name": "d71924e7-5073-5bd8-9d18-dea2da530d85", "text": "the boy complete dream fulfill. Cartoon "} +{"id": "3003448", "video_name": "90a4cc99-cf89-5188-a917-b537566e0e5e", "text": "sustainable natural energy gained from healthy nutrients in the human body "} +{"id": "3006170", "video_name": "0ab259c4-693c-5ab5-9df2-b1f2cc5c2c0a", "text": "Kaleidoscopic visionary landscapes seen by people using LSD, intense movement, gradual, colorful, peachy "} +{"id": "3006363", "video_name": "58a2aac7-2215-591a-a5a7-26eef6130e7a", "text": "Public Engagement and Education Centers: Subject: Educators and researchers interact with the public through exhibits and presentations. Background: Interactive displays and educational resources fill the space with engaging content. Setting: A community hub where knowledge translates into public understanding. Action: Visitors engage with exhibits, attend workshops, and leave with new perspectives on empathy and caregiving. "} +{"id": "7003768", "video_name": "5a8b695e-c100-5509-af39-b1864d967eaa", "text": "The flag of Russia turns into the flag of Ukraine "} +{"id": "3005927", "video_name": "f27c8bb1-57f6-577c-8476-70bedc9325e6", "text": "passages with many colorful trees, zoom out Message: 1 Attachment "} +{"id": "1004297", "video_name": "4f7d51d0-ae17-50b9-93d5-ab1153585ec4", "text": "Cinematic, coal minor digging at night , headlamp, 3d render "} +{"id": "7004499", "video_name": "4708bd96-3ae8-593a-8f40-6e39f1c5545e", "text": "a boy waiting for his ex lover even though she does not care "} +{"id": "7002641", "video_name": "da58e7e3-ce35-5006-9109-54cf194c992d", "text": "Success: The sculptor, now elated, holding the beautifully carved Lord Vishnu statue that he created from the shattered stone. "} +{"id": "3006626", "video_name": "6dfe4e86-68fc-5031-a3a2-2f0fe870ca23", "text": "Inspector Ali navigated the labyrinthine alleys of the old city "} +{"id": "1005073", "video_name": "5d955edc-9e40-5081-8a7d-5920076dcc2c", "text": "zoom in the camera, animate the grass and flowers and trees, sparkling sky, the tail of the squirrel moving, wind blowing, animate the scene "} +{"id": "8002503", "video_name": "674c166d-fd5b-5a85-a94d-a32a611ae15e", "text": "Focus on a slowly creaking door, revealing an abandoned and spooky house. "} +{"id": "6002833", "video_name": "9e9ebfb1-11f0-5323-a20c-0cb78398834c", "text": "An old black and white silent film of a corpse walking through an open field "} +{"id": "3004492", "video_name": "77c084a2-8ac5-5e49-9d04-20e7857cb717", "text": "laughting with Naruto in a cyberpunk world background "} +{"id": "6004913", "video_name": "46c4eb40-8015-533c-8be0-21874759dfbe", "text": "Make the legs and head of the Taurus constellation move dynamically "} +{"id": "0005708", "video_name": "1fdcc939-d90a-56b5-9059-5e643fd4a947", "text": "a mid shot range video of an old man sitting in a leather chair in a cabin with a fire place in the background "} +{"id": "1005435", "video_name": "63e412e8-ce6f-55ae-b9de-a946333e1890", "text": "an attorney in his 40s looking similar like a Ljubomir Bandovic, stylish look, in mid of Belgrade that is looking to find the true in his newest case that is full of mistery "} +{"id": "3003454", "video_name": "c3d92845-2aa2-5cab-9f4d-d30a01b8b424", "text": "The swing soaring above the fairgrounds, the village below shrinking into tiny houses and colorful tents. "} +{"id": "8003631", "video_name": "03810cc5-b948-585f-96c8-04449fcf9d58", "text": "a girl in yellow frock enters into a haunted palace. "} +{"id": "0005059", "video_name": "13ee57e1-8414-5f9e-9220-2f8e175fac1b", "text": "It was a night like any other when, deep within his coffin, a man vampire felt a resurgence of strength. His senses sharpened, and a hunger beyond mortal comprehension gnawed at him. As his eyelids fluttered open, centuries of dust and cobwebs fell away. "} +{"id": "3006194", "video_name": "e58ddb65-6929-5957-80a8-d77aa31a478c", "text": "Giant glowing rune on a planet "} +{"id": "1005605", "video_name": "671448c0-c9b2-5079-81a9-69f2b523e780", "text": "an iodine molecule and a sodium thiosulfate molecule move, fly, hover, mix in space, good quality chemistry "} +{"id": "4004537", "video_name": "9d308156-5da2-586e-882e-fc6d3b2a4b47", "text": "Scrudd Mack Duck is driving a BMW "} +{"id": "3003615", "video_name": "e4a1906a-5754-5dfa-b46c-0b4770d42339", "text": "A girl is searching in the world of light and strange dreams, she moves forward step by step "} +{"id": "7003657", "video_name": "ce363f67-993b-5dfb-8abb-6f7847f0e7de", "text": "a pretty princess sleeps in the bed. She has long pink hair, there are many grass and flowers around the bed "} +{"id": "1003843", "video_name": "46d79775-29cf-5700-b7ac-4fccd9b3c03a", "text": "dvd screenshot of Nicholas cage as Superman "} +{"id": "3006854", "video_name": "00495340-7c7b-52a2-8f29-b32e4e71665e", "text": "water ripples on an azure lake "} +{"id": "3005450", "video_name": "5a62a68b-60d2-5c8d-9e03-23c05b431e8b", "text": "Some athletes are racing on road bikes "} +{"id": "6002055", "video_name": "8752ccd9-8445-5686-b0d9-194134b6a56f", "text": "As she clutched the crystal, she felt an empowering surge of magic coursing through her veins. "} +{"id": "8002209", "video_name": "84a97ce8-52a1-530a-9adf-abaa8ded9f36", "text": "A handsome Mohegan man in Mohegan clothing sits on the ground and plays a musical instrument, grass, sunlight, cinematic colors "} +{"id": "0003638", "video_name": "40da2b48-c12f-5c97-bb79-f95280905ea9", "text": "three men in blue protective clothes "} +{"id": "0005658", "video_name": "1ed30821-d13a-5d06-9609-89783cbc7ff9", "text": "Boys, girls, forest, flowers, crows, grass, blue sky "} +{"id": "2006304", "video_name": "6f798bab-a4d2-5225-85e2-602c9b3b7eaa", "text": "Princess walks trough Roses garden, climbing roses every where, day, Princess smiles "} +{"id": "0003759", "video_name": "42e63dda-28c0-5a93-b02a-aa22504d8ca2", "text": "Obama eats Chinese hot dry noodles at the White House "} +{"id": "8003645", "video_name": "b8e299e4-a5cd-5922-8e69-ae16c63e85cc", "text": "charcoal gray landscape of jagged rocks in noir style "} +{"id": "8002438", "video_name": "3ecf07e4-6397-57e8-938c-9143d9141d27", "text": "lion caught rat with his paws "} +{"id": "3004423", "video_name": "8677d600-a038-58bb-aebf-47c23d2d8eb4", "text": "young girl, pirate, holding a compass, wind "} +{"id": "4003516", "video_name": "63478f63-5f7c-507d-adba-b303bc1ca4ed", "text": "Anonimous driving motorcycle. in HD Disney style "} +{"id": "4004213", "video_name": "fbb418e6-bf17-585b-acc2-8106aa5aac6f", "text": "Mario fighting a dragon with a light saber "} +{"id": "4002932", "video_name": "76a96891-6ad8-562c-b9d3-76d9aa7a55cb", "text": "Red headed pirate woman looking out at sea. She is wearing leather armor and smoking a cigarette. Hyper realistic. Camera zoom in to face. Hair moving. Ocean waves moving. Motion:4 "} +{"id": "3006897", "video_name": "9abc9a02-57f1-5694-8b7c-684421652004", "text": "(Tom Hiddleston) Loki and (Chris HEmsworth) Thor from the MCU in their original costume with their legendary weapon in their hands uniting with Avengers, Guardiansof the Galaxy, X Men, Dr. Strange, Spiderman,Deadpool, Venom and Wolverine to fight against all the variants of kang the conqueror "} +{"id": "3003767", "video_name": "f7fb8ca7-9c05-564f-acd9-806a448c3188", "text": "The brid went up the clock disney art "} +{"id": "3004565", "video_name": "d1d3c351-99bb-5259-beba-2c606fe283d4", "text": "geo and socio outlook, animated style "} +{"id": "2005276", "video_name": "fbeed3a7-99e5-524b-8836-f7ed0e2e2e85", "text": "man in struggle with bigfoot in dark forest "} +{"id": "2003550", "video_name": "31749010-3ecc-5a58-994e-6a07644a5dbd", "text": "zoom in to a male lips spelling HELLO to his phone "} +{"id": "4002362", "video_name": "4043b402-7eb6-5e8e-b1ef-80829c7b16f4", "text": "dogs in park Message: Tappo (Font: MODERN) "} +{"id": "3006579", "video_name": "3242c01a-9849-58c1-b4e3-d0da1dd93373", "text": "business executives in suits trying to navigate a Russian maze "} +{"id": "7003709", "video_name": "8a6148d7-bbf8-50f5-aa64-101b29f4bbf4", "text": "Pixar Movie: Young boy partying at Berghain "} +{"id": "1006815", "video_name": "7cb1455b-dac5-5f29-a8a8-a8d81c7c9b85", "text": "Moon God, HD, super realistic, 4K, captured with CANNON EOS R6. "} +{"id": "5001385", "video_name": "6966ce81-e681-5824-89bf-9f138996ad5a", "text": "Opening shot: A serene landscape of Maharashtra with a sunrise in the background "} +{"id": "4003420", "video_name": "82b90dc3-edeb-59d7-8fdd-eabfc308e0f8", "text": "prompt:Elon musk werewolf transformation, eerie, edgy, dark fantasy "} +{"id": "2007705", "video_name": "deb0bff9-d530-513a-b4be-0de39467b50a", "text": "A video from zlatan ibrahimovic with a smiley "} +{"id": "3005371", "video_name": "5df43a14-58d5-5463-bec8-98a3fd3adb0e", "text": "a talking avatar gif with blank png for plaging game "} +{"id": "2003548", "video_name": "c85d9f7e-791f-5a7a-8bb8-7553f6d774b3", "text": "The video concludes with an image of Greenland, the largest island in the world, accompanied by text emphasizing that most of its territory is covered in ice. "} +{"id": "4003489", "video_name": "a0573375-cd0c-532e-a474-5031be373923", "text": "a cat and a dog near a fish bowl about to share a romantic dinner (the fish) "} +{"id": "1003852", "video_name": "4701da89-4320-5d8c-8f92-f99eda9b7fca", "text": "Climate surged, species perished, yet blind consumption endured. "} +{"id": "3006272", "video_name": "08f3b787-1733-5cd6-918c-3f16eff887e4", "text": "astronauts land in a rescue capsule in the steppe "} +{"id": "2003731", "video_name": "b9b60c5a-4065-56bd-9201-02537a249312", "text": "a car with a bison blocking the road in Yellowstone National Park, hyper realistic "} +{"id": "8001919", "video_name": "cdb76869-b838-543e-b234-2df18665707a", "text": "Please, make a video that haves a fanily using a lot of eletrodomestics while is receiving solar energy "} +{"id": "5001479", "video_name": "c563b086-faa5-52cf-be14-fc3b454a53d5", "text": "Man jumping off building wearing red suit "} +{"id": "1006510", "video_name": "773252cf-49e4-5791-a701-01185e13891a", "text": "Mayan priest gives offering to Mayan king and queen "} +{"id": "4002895", "video_name": "c89f6924-ee57-545f-b94d-88543fc03f95", "text": "Visual of the desolate, futuristic landscape with towering skyscrapers and glowing neon lights. Message: 1 Attachment "} +{"id": "6003680", "video_name": "9a2944c9-b4ed-56aa-bdfb-122657c15028", "text": "walk cycle of a four leged elephant "} +{"id": "6003940", "video_name": "ae26fdd9-47f2-5022-838c-805df141cba5", "text": "Hogwarts, students flying, mystical beast Message: PLS (Font: BAUHAUS) "} +{"id": "2003683", "video_name": "53380737-9f7d-57c8-9285-2ea10e05c4dd", "text": "Illustrate the couple peering cautiously out of the window in response to a peculiar noise, only to witness the appearance of a ghostly figure resembling a lost soul wandering in the darkness. "} +{"id": "4003602", "video_name": "591cb15a-25be-51a7-8cef-e8c8798b6054", "text": "portrait of a robot girl, enormous lips, transparent neck, porcelain face and head, robotic parts, cyberpunk, cable electric wires, hyperrealistic, fantasy, octane render, intricate, concept art, 8k, professional studio lighting Message: freelance69 (Font: MODERN) "} +{"id": "8001933", "video_name": "513cbc27-4c5c-5809-97f7-3b9945aad11e", "text": "Hamato Yoshi changing into Master Splinter rat version ,drawn animated "} +{"id": "0006943", "video_name": "35a39876-616e-508c-b394-c9acbd4d3544", "text": "Earth revolving as we see from the space "} +{"id": "0006632", "video_name": "2ff2acc0-2cf4-5dae-805f-85c7d78a42d4", "text": "greeting and saying hello to everyone "} +{"id": "6004354", "video_name": "28197d29-220e-5222-b482-057057607bea", "text": "Many jellyfish swim around on the bottom of the sea. "} +{"id": "5001665", "video_name": "e75fe3ef-b984-5d7b-9e28-2bd13ac28c0f", "text": "neon dog man flying through starfield "} +{"id": "2003711", "video_name": "e14558af-dc21-5af4-a896-8e4e1ca279d7", "text": "A men with first person camera , The Titanic appears to be sinking, 18 seconds clip , realistic, realism , Hyper detailed, Cinematic lighting, Film photography "} +{"id": "5001591", "video_name": "ec824aa6-b80d-529d-9a81-38ad400e9fe7", "text": "the cheerful little girl, wore a vibrant blue dress "} +{"id": "2005270", "video_name": "beb066cb-dbab-5020-a7c0-b2efa0257bcd", "text": "Damaged alien ship stuck in a swamp, at night "} +{"id": "0005764", "video_name": "20e1a266-606b-59d2-9b38-fcd7a9650a73", "text": "Some candy wrappers are scattered on a light table, dirty four white coffee cups, two empty saucers, realism. "} +{"id": "3005215", "video_name": "71f07e92-80c4-5399-8305-a3e4081d65e0", "text": "black Lamborghini transformer fight with kin Kong in tokio "} +{"id": "7003774", "video_name": "e2df002f-e80e-511a-87ef-35e3b797b9de", "text": "A slight movement in his face, a slow turn to the right side, a straight expression Message: 1 Attachment "} +{"id": "6002656", "video_name": "585f9c87-13be-55b9-8066-d93834a5fbcc", "text": "one employee and one manager are talking in an office, ar 9:16 "} +{"id": "6002491", "video_name": "4ae20e6e-e57e-5903-a969-f8473f8ca5dd", "text": "Thank you for joining, and until next time! "} +{"id": "2003759", "video_name": "f8fcaa09-ad7b-5924-a978-a6333379287f", "text": "On a dark, moonlit night, an arrow shoots at me with light "} +{"id": "2005612", "video_name": "c2727f5c-e201-5f45-9545-9d8d6b12cf90", "text": "Introduction to the haunted haveli built during the time of kings and maharajas, where no one has lived for the past eighteen years due to rumors of paranormal activity. "} +{"id": "6003624", "video_name": "8147c64e-a144-5df6-9d9c-3ac89b19e449", "text": "Generate video of A owl and hippo "} +{"id": "2005259", "video_name": "70554171-765b-5e93-a3fe-7155a74b75c5", "text": "a dense forest in Himalayas peacefull flow of air and branches moving camera should move from left to right "} +{"id": "0005774", "video_name": "2102958c-ea7d-54df-a6c8-d14198a3b738", "text": "A 10 year old first nation child runs through the long grass in traditional costume. "} +{"id": "3004258", "video_name": "81ec89a9-75c8-5099-ab27-9beeea93ef8a", "text": "The mansion, another grand and opulent one, had been abandoned for decades, shrouded in native legends of souls trapped in the shadows of its mirrors. "} +{"id": "7004399", "video_name": "2665ce6d-595b-5b1b-ad3d-1c96357dc7bb", "text": "elephant blink with hes eyes and let the jungle move in the background like from wind "} +{"id": "3005268", "video_name": "14cdf411-6202-5d8e-a6e1-b46c22584fdb", "text": "I want 3d cartoon snake moving forest "} +{"id": "8002557", "video_name": "fd666228-62d5-5f75-9385-52aa80adcbf6", "text": "a man makes a sculpture out of ice "} +{"id": "4003002", "video_name": "60a07b6b-6ea5-5253-8d59-b595e48edc42", "text": "Illustrate a magnificent green dragon with intricate Chinese patterns and ornaments, symbolizing the Year of the Dragon for 2024 "} +{"id": "2005722", "video_name": "4b04190b-8d6a-5e06-9c8b-276c9ef14892", "text": "lady washing clothes in washing machine "} +{"id": "1006476", "video_name": "768394d2-64ba-547b-b5f1-a68ba01c81cc", "text": "A handsome man is swimming in a pool. "} +{"id": "2007013", "video_name": "f2b570cf-6ae8-5123-be56-6c3d87205388", "text": "nobita fishing with Doraemon with hands, good quality animation "} +{"id": "4004975", "video_name": "cdd93e2c-83df-5b79-8e5d-2297ba45cfc9", "text": "Adel, Ahmed, and Thamer walking through a bustling city street, observing the litter strewn about "} +{"id": "6002760", "video_name": "09b80a95-2587-5f96-8cf2-bb0563cc5d83", "text": "A girl with long blonde hair leans out of the window of a train snaking through a tunnel through the mountains and waves with her arm in the air, laughing "} +{"id": "1003433", "video_name": "3f6989dd-ca5b-52bd-8de3-0bb7313581e3", "text": "a person walking out in the wide world "} +{"id": "4002643", "video_name": "93587da0-d09c-5c90-ab8c-d3ec5a9a7cd2", "text": "a burning house and trees, Message: Gabriel (Font: MODERN) "} +{"id": "3006494", "video_name": "d253def3-146b-5033-8c6b-177f9b1b410e", "text": "looks at the camera and talks against the background of Ukrainian ensigns and games "} +{"id": "6004754", "video_name": "d7b40668-6b47-53cb-9eff-85db9f5896dd", "text": "create an animation of a p47 thunderbolt flying with just one wing "} +{"id": "8003245", "video_name": "d7b13d77-bc15-50c8-9cb5-55639d0c6151", "text": "3 ships;The Battle of Chibi\uff1bRed background "} +{"id": "0005757", "video_name": "20ae3e05-dc61-51bb-b225-8b077ddaffc0", "text": "The sea and clouds are moving and the stars are shining "} +{"id": "2007878", "video_name": "5b54b458-f9cf-5fb1-b05b-11ca90823eb9", "text": "architect drawing a Frank Lloyd Wright building with pen at office table, looking at the sky from a window, New Yorker style cartoon "} +{"id": "5001226", "video_name": "d79e213f-4c5a-5a47-9287-9f8173404930", "text": "a little boy with his Mom in a colorful garden with happy expressions "} +{"id": "8002038", "video_name": "11f5742d-1627-54ab-99cb-6a99b482e216", "text": "a gunslinger in the wild west in the style of sergio leone. ar 16:9 "} +{"id": "8003019", "video_name": "2465ba98-c698-5fd9-a3ed-af31c3554abe", "text": "A couple of students are walking hand in hand on the lawn of the campus "} +{"id": "4003771", "video_name": "0f9e08d4-20e2-5a1a-b34a-fe62446a0e36", "text": "video where an anime girl dances against the background of the roofs of a big city, fog in the distance, realism, quality "} +{"id": "2003484", "video_name": "6b57948f-5c0b-514a-afa1-5cb434a116e8", "text": "a beautiful disha patani walking in time square , wearing black dress , at night "} +{"id": "6004059", "video_name": "83688194-8b10-5ca7-a8bc-083d790115c7", "text": "young doctor helping pensioner in city park "} +{"id": "7004664", "video_name": "c2d15af4-9e70-57fa-b096-bf927bfeabcb", "text": "cinematic video of a man watching youtube on his laptop, the man is sitting on a chair and laptop is on a desk "} +{"id": "0004377", "video_name": "07fbd176-5470-5545-8bcc-e38a13c509c2", "text": "a young lady teacher who teach for her students "} +{"id": "7004744", "video_name": "873f5431-301a-507e-9609-7753b7a81f26", "text": "two team playing basketball, one member throwing the ball in the basket "} +{"id": "6004940", "video_name": "0dd282b4-658d-58dd-a1fc-f34855507b1e", "text": "a cinematic shot about photografer in a neon city walking with a his drone "} +{"id": "5001344", "video_name": "acd98050-1414-569c-abaf-35b4146b3ab8", "text": "A duck sits in a metal tile office "} +{"id": "0006147", "video_name": "274e5c7f-d46f-5f71-b4e8-3c1cb75c3b8e", "text": "Create an animation of a group of students within a classroom from another planet. "} +{"id": "4002112", "video_name": "8747d73a-f2c8-522b-b55c-a9ac8f9540a2", "text": "a baby elephant running , animation video 8k "} +{"id": "0005953", "video_name": "23db57a7-9acb-5271-a39a-bb96469ebf72", "text": "Make the birds in the background fly "} +{"id": "2005010", "video_name": "130f16b1-6832-5e84-83d0-4b73ce490bd4", "text": "End of time snowy forest with crows on the trees "} +{"id": "8002965", "video_name": "e5d5bbe8-413f-58d1-985a-94f0647fbed5", "text": "a girl in the world of cyberpunk repairs a car under the hood "} +{"id": "1003602", "video_name": "426bf51d-39e7-5c5f-9da6-f1a57462127c", "text": "Dry land with Mountains, Tanks and Explosions Everywhere with soldiers falling "} +{"id": "2006170", "video_name": "2af88130-9ee7-5ef6-884f-a3604fdcdd60", "text": "they shared stories of their dreams and passions. Alex spoke of his art, and Ella shared her love for coffee and her secret ambition to write. "} +{"id": "1005211", "video_name": "5ff6b0ac-7e0b-5487-b51f-8b95c019a2dd", "text": "pikachu flight around the world in lovely herats plan "} +{"id": "6003580", "video_name": "bc603f74-db80-5ece-8a19-543554b22f8a", "text": "Cute cat looks cute to the camera "} +{"id": "2003108", "video_name": "bd943e71-7517-5036-89b9-7ba3d731b474", "text": "a logo for a dominatrix named Goddess Kluv. She wants a crown and a high heel in the logo and her name. Make it on a transparent backround "} +{"id": "6004846", "video_name": "3a52b54b-d968-52c3-9a38-538ad92a5ae3", "text": "woman offers man an apple, garden of eden "} +{"id": "4004484", "video_name": "bdfd0cdc-0090-57aa-9df4-47e4825368e3", "text": "man venture into the forbidden tomb realistic 8k no animation "} +{"id": "6004299", "video_name": "a54bd690-e5d6-5c06-a573-b8df12697033", "text": "A car is speeding towards a parking lot barrier in zoom out "} +{"id": "7004344", "video_name": "d2cc3b11-2344-59b0-9bc3-2b12f36a79e5", "text": "She is an anime girl flying through the air with her psychic power, she emanates a green aura "} +{"id": "4002323", "video_name": "674e784c-e11b-5f92-9f9e-263fd5140fb9", "text": "anime girls, play bands, live studio "} +{"id": "4002801", "video_name": "d9953fe0-cbaf-55d4-be0a-06d451b8e4a5", "text": "elite society hypnotized by the pyramid with the all seeing eye "} +{"id": "5001066", "video_name": "632dd2cd-99b1-5001-b065-23cc8054e7b8", "text": "dystopian 2D animation of an oil spill killing life on planet "} +{"id": "0004008", "video_name": "01804de2-5c07-57ab-96b7-6c6005b8738c", "text": "Rain in the Woods, No moving the image, just movement in the raindrops, realistic, 8khd "} +{"id": "5001054", "video_name": "f27de5b4-37b3-51da-a1a6-4a44df00aadb", "text": "Ghostly apparitions or shadows roaming the abandoned streets. "} +{"id": "4003607", "video_name": "91f53d35-2b32-550b-b843-d4e6edfd05b2", "text": "Groups of people clapping their hands, highly detailed, high solution, cinematic "} +{"id": "2007237", "video_name": "581017d6-e1e7-5b99-8ce1-af565e95b149", "text": "Santa clause throwing a gift at a small child "} +{"id": "3006688", "video_name": "6d1b2fb5-7f2d-5b01-83a6-54aa8570110d", "text": "sigma buy black forest text bumba "} +{"id": "6003021", "video_name": "dde00810-70e0-5798-861a-8f4ae456b083", "text": "a cat walks into a modern room and climbs into a green chair "} +{"id": "3004217", "video_name": "101193a4-ed29-59b9-a3cf-93f3b76bbc96", "text": "girl feeling her power and see herself a guardian of the magical forest "} +{"id": "2003293", "video_name": "4c45c9c4-1fe6-5ac8-9d62-32f9a4b1cfe0", "text": "A cat in a jacket walks along the sidewalk,4K,60FPS,REALISTIC "} +{"id": "2004903", "video_name": "725f4f28-aa16-5679-a0ae-f0580010f5ad", "text": "person in dark clothes stay on mountain "} +{"id": "1003295", "video_name": "3c9db1c8-599b-5e26-a2e4-c7a09deb14a9", "text": "pikachu smoking weed Message: yo (Font: MODERN) "} +{"id": "4002569", "video_name": "32b558d8-8209-50c4-95cb-5b727543c80b", "text": "a little water fountain vs a giant gushing waterfountain "} +{"id": "1004159", "video_name": "4d0a6959-1e7f-5191-ae95-85c68d228007", "text": "a boy looking around, the spiderweb is glittering on the celling "} +{"id": "0005010", "video_name": "132d2bc9-2d16-5f15-bb2a-5f544236ee6d", "text": "Create an image that symbolizes the process of amplifying controversial content on social media. "} +{"id": "5001737", "video_name": "e2021308-095f-5ea9-9a5c-231328214da6", "text": "relaxing scene of a man sitting on a bench in toronto at night in the style of an anime film "} +{"id": "6002765", "video_name": "0dffca47-e76f-545c-9cae-16a2a4a6a333", "text": "All employees wear blue shirts, anime style, animation motion4 gs18 fps24 zoom out "} +{"id": "0003287", "video_name": "3ae99e96-11d6-5f19-b2d4-53eddef6b77b", "text": "nanabots launching attacks from the sky "} +{"id": "1004502", "video_name": "536bcb7a-5b76-554b-baa3-021c1fe0c0db", "text": "moving conveyor belt with lots of colorful plastic parts ar 16:9 "} +{"id": "1005579", "video_name": "66ad296d-3090-517a-b4f7-d0af7036219f", "text": "a futuristic technology tesseract transforming its shape to show virtual reality service "} +{"id": "2007486", "video_name": "9724aa98-2c90-5ba7-952b-f2b153c53e6d", "text": "turtle diving in the deep blue sea "} +{"id": "3004014", "video_name": "845b3aa3-579a-5cc2-a859-10696a9dfd0e", "text": "high angle close up POV from behind, girl is reading a letter in fron tof a window through which the sun shins god rays, clair obscur, 8k, high quality, no extra hands, no extra fingers, no extra arms, no extra eyes, no extra lips, no extra theet, ultra 4k, unreal engine 5 "} +{"id": "4004359", "video_name": "ac3e748f-1878-5714-841a-0b2a7081f499", "text": "Crocodile soaring in a vibrant sky, 8K, golden hour light "} +{"id": "8003691", "video_name": "815110a8-33bd-512c-a86d-ff3365727bf0", "text": "aspect ratio of 9:16 of a popsicle melting on a street road. the stick of the popsicle is standing on the road and it\u2019s melting down creating puddles. make it realistic and HD "} +{"id": "6004873", "video_name": "6d6850e7-373c-5d42-8a59-3917b15f0ee5", "text": "the titanic underwater, virtual tour, hyperrealistic, 24 fps, ultra detailed, zoom, 4k music video quality "} +{"id": "6004263", "video_name": "e29c87db-b1c4-5cc3-9616-dbdc6ca7f79a", "text": "modern professional man checking this modern car in the picture "} +{"id": "1003591", "video_name": "42196276-74c8-58cf-9002-efff8e8ff2aa", "text": "ow angle A 30 years old chinese woman, overweight, studying communication at Harvard. With a strong desire to understand the intricacies of effective communication, she immersed herself in various courses, exploring subjects such as interpersonal communication, public speaking, and media studies. She eagerly engaged with her professors and fellow students, seeking to broaden her knowledge and develop practical skills that would help her navigate the complex world of communication, she wearing white mini skirt "} +{"id": "6004595", "video_name": "b69c7775-d668-5387-b76a-c5d135435209", "text": "fantasy rivers, Amazon, the Nile, many smal rivers, Message: 1 Attachment "} +{"id": "1003840", "video_name": "46cb48b2-b093-527c-a15f-153c3c71d395", "text": "a dish floats in the sky and shines a beam on a person on the ground around the forest and in the sky big stars cinematic picture 70 mm movie shot anamorphic lens Panavision camera "} +{"id": "2007398", "video_name": "cc3eb2bc-12fc-5201-ae35-546d7b6400e7", "text": "girl fight with eval dragon Message: 1 Attachment "} +{"id": "4004534", "video_name": "7319e1ac-ae88-5c1d-a0f8-92405979edc1", "text": "an animal with cute face and long tail color purple "} +{"id": "1006737", "video_name": "7b65c03c-44bb-5b4a-b30e-435d8a773fa1", "text": "rich anime where there is an intense fight between Naruto and Goju, include a 360 degree rotation shot "} +{"id": "6002665", "video_name": "6f14de2a-9db8-5d43-918d-d0fa7ce5d1e8", "text": "the living drawings of Leonardo Da Vinci "} +{"id": "2005050", "video_name": "d927b5c4-cf4a-5d24-bc8f-fa59f46650af", "text": "Tom cruise flying a paper airplane "} +{"id": "3004329", "video_name": "5f6aa40a-d74f-5fd6-a59e-7af3e1e3be2b", "text": "a giraffe is smiling , cartoon style "} +{"id": "4003937", "video_name": "e879dafc-0bb6-5799-91c7-ea4d65e94f7e", "text": "volcano erupting pyroclastic, flow, with lots of fire and colorful confetti "} +{"id": "7002656", "video_name": "05d34e86-8156-56d5-8687-bae5ec08a74b", "text": "The scene unfolds with a wide shot of a vast meadow, where a little girl is lying alone on the grass, basking in the warm sunlight. Her body stretches out, facing the sky, as she smiles, radiating a sense of relaxation and joy. The sky above is a deep blue, adorned with drifting clouds, creating a serene and pleasant atmosphere. "} +{"id": "2006842", "video_name": "eb2f93e0-a387-5b4b-9609-499bbd0c3255", "text": "donald trump playing bass guitar onstage "} +{"id": "0004411", "video_name": "08735881-a9f4-5db8-9b89-b378af57756e", "text": "a red ship is sailing on the sea "} +{"id": "8002107", "video_name": "b656a5b2-c9cc-54ff-85ca-27621d4cd603", "text": "Sofia Loren chicky smile and a wink "} +{"id": "8001487", "video_name": "1b808eb9-6074-59cd-ad0c-e3ec80235f82", "text": "The exam was the next day. 3d "} +{"id": "6004637", "video_name": "23788c23-3b14-5137-9bc6-899794a79455", "text": "Intro to a long cinematic action film "} +{"id": "8002170", "video_name": "12282210-9ee7-5b02-9507-40928c5b5a73", "text": "a boy surrounded by water fire air and land element on space "} +{"id": "7002214", "video_name": "7e122717-3716-554e-8001-9ee345527649", "text": "band of robots with synthesizer, electric guitar and microphone in the middle of ruins at night "} +{"id": "1004771", "video_name": "5845f5f6-8c4b-5f8d-a6ab-84a8caa577eb", "text": "3d animation shot of three kids playing in the countryside white having fun and laughing "} +{"id": "5001944", "video_name": "160a9ae4-b5e6-5cd4-9a51-91b6acbfbb6c", "text": "A Cat Glitching Into The Ocean "} +{"id": "5001286", "video_name": "7148bd71-c5aa-5e2e-99c4-d7da7c52c4e8", "text": "The islamic girl was so amazed face style "} +{"id": "1006965", "video_name": "7f7767ea-1300-5251-8ec4-74e1648896ab", "text": "a man with no arms and no legs twitches, a woman hovering in the air above a bed, dingy motel room 1970s, cinematic, shot on vintage film "} +{"id": "3005766", "video_name": "e8129ed1-0d94-5a90-9456-fa13d604c8c9", "text": "Generate an image showcasing the view of dry land with high blue mountains on whose summits the white snow glistens, creating a serene and majestic landscape,Photorealistic, Realistic, cinematic,16:9,Ultra 4K, Out Door, Hyper detailed "} +{"id": "7003227", "video_name": "a90626bb-73ee-58e9-a93c-36e3f812a85b", "text": "His wings, once radiant with celestial light, now bore the marks of his corruption, stained by the darkness he embraced. Message: ho (Font: MODERN) "} +{"id": "3004772", "video_name": "aea888c9-0b27-5b0c-b8b1-7dce2753dc8e", "text": "snowman jumping a lot Message: 1 Attachment "} +{"id": "8001539", "video_name": "50025b26-ca5d-52cc-84d6-a00b6fe6e171", "text": "Create Animated Stories For kids with Disney Style having this content Once upon a time in a small village nestled among rolling hills, there lived a young boy named Leo "} +{"id": "7004033", "video_name": "8fb55459-08ca-527d-8036-dd1656c7c033", "text": "sky sunrise background landscape with greenery in carrton style "} +{"id": "3005985", "video_name": "0e6ab539-6f65-5bfb-b93c-a835158b5f78", "text": "Momo working together with other animals, implementing the plan to solve the challenge. "} +{"id": "1006740", "video_name": "7b719a26-df67-50e4-86d5-933062791847", "text": "boy and girl , together,dancing,8k,hyper realistic,cinema 4d,hd,3:2 "} +{"id": "2006515", "video_name": "cc28b92d-f9d8-5242-9902-76b0f32d0813", "text": "Fluorescence probes represent the most widely used methods to detect ROS in living cells "} +{"id": "8003480", "video_name": "f66995ca-ea96-55c4-b64b-0d379f072554", "text": "a man dressed as a vigilante with a brief case that reads debtcollector beware "} +{"id": "1004499", "video_name": "53680f92-f1e5-5903-adbd-4b31b11c1aea", "text": "Catwoman dancing on the street in the rain "} +{"id": "1005862", "video_name": "6bed7815-9ded-5ed0-8e85-08a90054985e", "text": "1 The petals are swaying gently in the wind "} +{"id": "5001306", "video_name": "46dec2ac-b0e5-5ccd-b921-e1efc545f690", "text": "A white lamborghini Huracan with a minigun driving offroad in the forest. Unreal engine 5, ultrarealistic, 4k "} +{"id": "6002706", "video_name": "3039adb5-0bed-5ed2-9e2f-02cfe8bc111b", "text": "thick bush lots of trees and lake "} +{"id": "1003308", "video_name": "3ce5f6cc-539e-57af-9791-3908ea4d07cd", "text": "Baby soldiers , with guns marching through thick green grass ,wearing the peace sign on there chest "} +{"id": "7002500", "video_name": "bac388b1-ee17-5156-a3ec-0861b0851a3f", "text": "Frame the dog as it stops to gaze into the horizon while the music reaches its peak, creating an emotional moment "} +{"id": "4002089", "video_name": "7065f765-f7d0-5bdd-8625-25f6a13f0f28", "text": "sun rising over the city drone timelapes shot "} +{"id": "0003229", "video_name": "39ab35f6-2f86-59df-85b2-0428f1ced53c", "text": "in the style of a pulp comic, a young man with shoulder length sandy hair in a tyedye shirt and jeans is wearing a crown stands on the roof of a blue 72 chevy impala and raises his arms high, night "} +{"id": "0005017", "video_name": "134d6ab7-7991-5d40-a77a-9bfcb4acac7b", "text": "a video on a elephant with no trunk in woods, creepy surrounding and the light of moon only falls on him "} +{"id": "8002593", "video_name": "88dd1efb-9e79-5862-bd63-3c549a4546c5", "text": "many old people in a park dancing weirdly, cheerful colours, with a bunch of stuff, award winning cinematic still, photo taken with an iphone, 1995, colorful clouds, colorful mist, crazy party, crowd in home made colourful tracksuits and waving spray cans in the air, snap shot, summer, uprock, downrock, breakdance "} +{"id": "6002559", "video_name": "d83b79b6-de0b-5d31-bbee-c89a62bf4d6c", "text": "mechanoid walking forward realistic high definition "} +{"id": "4004796", "video_name": "2632b062-9201-5815-a9c0-8747fa4f1b55", "text": "body convulsing, lightning, camera zoom out up "} +{"id": "2005946", "video_name": "453152af-ce73-5b10-a09c-02eefcba7aa0", "text": "A Turkish Airlines plane takes off from Istanbul Airport. "} +{"id": "7002115", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "This ancient Egyptian army fighting the enemy, with cinematic effects "} +{"id": "3003226", "video_name": "14a7828a-b5a8-58ef-87f8-6917588be57e", "text": "The sea water flows and the white clouds move "} +{"id": "2006457", "video_name": "d65088b1-b30e-5312-9d0e-c9477ac8293e", "text": "funny dog is smiling in the yard "} +{"id": "2004136", "video_name": "28015589-4e63-5ed2-b1c0-b078b9ee791b", "text": "create a family of very cute rabbits, having a father rabbit, a mother rabbit and a baby girl bunny "} +{"id": "3006097", "video_name": "7b43f06a-3ec5-5ccc-85ee-22098261f635", "text": "flat illustration of rocket ship taking off from a green planet "} +{"id": "6002383", "video_name": "8bc0fdcc-84d7-52e6-b680-9872d2c56fd1", "text": "A captivating scene unfolds before your eyes as a radiant young woman sits delicately at her laptop. As she immerses herself in a world of limitless possibilities, an astonishing sight comes to life. Picture an enchanting rocket materializing from within the computer, metaphorically symbolizing her website launch into the digital sphere. Witness the captivating synergy between her determined gaze and the soaring rocket, embodying the transformative power of her creative craft. "} +{"id": "1005308", "video_name": "6182bd2c-fea8-5632-b78d-828165ee978e", "text": "happy garlic jumping on a trampoline "} +{"id": "1003011", "video_name": "37568d4b-081f-54b3-888a-072cbcc3d1ee", "text": "prompt: sports car driving, cyberpunk, city, night dark sky "} +{"id": "2007764", "video_name": "dbf75e40-d8cd-5833-81a6-80fbf9a1e3fa", "text": "a mountain dweller is walking and his face is in the middle of the screen. During a progressive zoom out we see that what surrounds him which is at the beginning very natural (mountains) becomes modern and at the end there is a zoom out and we see him in a futuristic world with his body which is gradually then completely robotized. "} +{"id": "4002151", "video_name": "d9142ad4-d7ba-585b-a03b-b1d9d0d327d3", "text": "Abraham: Father of the Jewish nation and central figure in the Jewish faith, considered the spiritual father of many. Generate an image of a bearded shepherd tending to his flock in a pastoral landscape.\u201d "} +{"id": "1005754", "video_name": "69db8c7d-b5ba-5a9d-ac35-22ba66bd828d", "text": "thomas shelby talking with el padrino "} +{"id": "7003728", "video_name": "a7943a89-a5d8-5b5b-ac13-d8952871c780", "text": "many multiple out of focus floating orbs, symetrical ripple from water drop, top view, ripple out, expanding waves, Fuzzy focus "} +{"id": "8003749", "video_name": "2253dbfa-ca53-5c5c-9cbb-abfcea1af81f", "text": "Killer Bob from Twin Peaks wins a wrestling match against Special Agent Dale Cooper in a sold out arena in the style of Wes Anderson "} +{"id": "6003083", "video_name": "826bb093-f521-550d-b277-d48097c1248c", "text": "a blonde girl with blue eyes playing with star in the sky "} +{"id": "4002226", "video_name": "353f58b6-fd4f-5df9-b8c6-b4b2bedee109", "text": "AI avatar,3D animated style ,30year old guy, black hair ,brown eye , light facial hair ,wearing a casual black hoodie talking straight into the camera , 4k "} +{"id": "2005641", "video_name": "29fcf898-f150-5d45-be67-5df19f9c35fc", "text": "Describe in vivid detail the chaotic scene that unfolds after a grenade is thrown into a crowded marketplace, capturing the deafening blast, the billowing smoke, and the terrified reactions of the people nearby "} +{"id": "0006408", "video_name": "2be7a153-aeed-56a6-b9ba-80478a3acb28", "text": "Her parents exchanged warm smiles and agreed, bundling up in coats and scarves. The family stepped into the winter wonderland, and the first snowflakes of the season greeted them like old friends. Clara twirled in delight, her laughter echoing in the crisp air as she tried to catch snowflakes on her tongue. "} +{"id": "2005370", "video_name": "0bae19e5-4303-5514-9284-252b24d53bd0", "text": "a chessboard is seen in the background. The camera focuses on a white chess pawn moving to checkmate the black king, which bounces down in slow motion. "} +{"id": "7004063", "video_name": "a151064f-67ef-5b30-813e-8bea67daa218", "text": "I saw thrones on which were seated those who had been given authority to judge "} +{"id": "6003730", "video_name": "dfec2cdc-bda1-5c09-94d0-020e173f3b23", "text": "little honey badger fly on a rocket to the moon "} +{"id": "6002740", "video_name": "fd3b36b8-b105-57e7-abd6-263723e4137f", "text": "Ancient people discovering cold water effects "} +{"id": "7004050", "video_name": "0fb4be7d-ecfe-575d-a59c-bc05d0bbd2c8", "text": "oceanic slow motion waves, surfer point of view "} +{"id": "8002104", "video_name": "56f426b9-248b-5420-a31a-0badda35058d", "text": "anime guy use his Bankai style:anime photo:1 type:3.2 object:4,76 "} +{"id": "5001136", "video_name": "e9692472-2af2-57b8-9e01-586fc051dab2", "text": "dry land it rains in it a water drop and heart "} +{"id": "1005377", "video_name": "62e031f0-cc40-5632-bb24-429c386af5f7", "text": "cctv footage of spongebob squarepants in alley jumping "} +{"id": "4004450", "video_name": "18eb720f-f95c-5f9f-855a-7e86b594f547", "text": "A sexy girl with big eyes and long legs like Liu Yifei, dancing slowly while taking a shower alone "} +{"id": "4002516", "video_name": "db68b586-27eb-51d1-b300-beaca3767e8a", "text": "Huge flower. Message: The eye blinks. (Font: MODERN) "} +{"id": "8001753", "video_name": "c5ab0799-0686-5003-aa0f-b09f5e4fc9ec", "text": "As the night grew darker, Sammy realized he was far from his nest. "} +{"id": "1003776", "video_name": "45a3b7a1-1088-5902-b13b-83e39dd200f3", "text": "colorful plastic art toy of a cute little fruit themed monster walking "} +{"id": "0005306", "video_name": "1835d16d-4d1b-5000-a47d-2937d99d182f", "text": "matvey bologov score goal anapa football "} +{"id": "6002790", "video_name": "69892f60-a984-5277-b11a-75ae10942966", "text": "deep space, 4k, hyperdetailed, RAW color art, raytracing "} +{"id": "6002545", "video_name": "2f202318-02a1-52d5-b0d7-e028741001b1", "text": "an ant with a big head looking serious but then smiling and you can see his smile is missing some teeth. She has a beautiful smile. "} +{"id": "2007962", "video_name": "7583a8bb-4708-5d87-8597-5e1f9bc5fc4a", "text": "man fight with Dracula no crowd "} +{"id": "2005211", "video_name": "2b3dfe86-b2ee-55ed-9be1-6e012fd57b51", "text": "A huge earthquake in Midtown Manhattan with collapsing buildings, disaster film scene "} +{"id": "1006534", "video_name": "77c232b5-1681-50a7-8b06-b8e1146b0752", "text": "In this alternate world, humanity never discovered electricity. The absence of electrical power means a society that relies on entirely different sources of energy and technologies. "} +{"id": "1004740", "video_name": "57cdadae-bfb8-5ea5-bb9c-e795fd8b53ed", "text": "vibrant and dynamic video featuring abstract, kaleidoscopic patterns that dance and evolve seamlessly. No people or animals should be present. Let the colors pop and the shapes morph in a visually stunning display of creativity. "} +{"id": "7002825", "video_name": "f48fae3c-18f5-5613-9142-b8a995874d55", "text": "ghost on the road at midnight surrounding scary at midnight "} +{"id": "0004052", "video_name": "02531fe5-dc31-5ca4-a8be-5d834508cc3a", "text": "A construction man is standing on the moon and the camera moves back and we see that he has attached the moon to the earth with glue "} +{"id": "0003191", "video_name": "3902924f-3998-5bb7-b7f8-9b0389dd0e9f", "text": "anime woman floating underwater with black dress touching the surface with her hand "} +{"id": "0006679", "video_name": "30d0bff7-c74b-5891-a8ef-a3dd462fc8fb", "text": "robbery story. Video duration 6 second "} +{"id": "6003213", "video_name": "86cd21b9-9620-54ea-a10d-7bea493eb894", "text": "drone view, exchanging a chiken for a beer "} +{"id": "3004901", "video_name": "3c335ccf-2c5d-5cdb-a984-ad6d33c77eab", "text": "evolution , the origin of life "} +{"id": "3003779", "video_name": "383ba236-221a-56a2-9365-b903037b022f", "text": "an icon that represents an event confirmation form "} +{"id": "6003934", "video_name": "7574ac8f-3f35-5675-860d-af6f0e6a3e66", "text": "video of a giant X rusting away "} +{"id": "2007946", "video_name": "80835f9c-f4ed-5c96-90b9-2386fac07d7c", "text": "World White Flag for the Peace. The story about one man you gift people a peace. He send the letter to the world leaders for stopping the wars in the world. He said that the world should hang up the white flag in his country for bringing this world the peace. "} +{"id": "0003998", "video_name": "015da121-7f40-5cb1-8770-3101cb2ece45", "text": "A handheld device shows a DNA string rotating on its own axis and a talking face next to it "} +{"id": "7004942", "video_name": "2eef866f-8617-5982-8bea-1d529fab7756", "text": "Zoom in on the secret signature sauce being drizzled over the burger "} +{"id": "7003004", "video_name": "dd3a8261-38b5-5879-9c74-864dc3bbf4db", "text": "By Yves Di, a cute guy, casual outfit, energicity, beautiful face, beautiful legs, light blue eyes, very happy face, full body, colorful colors, detailed background beautifulsunny day, coniferous forest, hiking, dog, countryside,high quality, 8K Ultra HD, 3D effect, A digital illustration of anime style, soft anime tones, Atmosphere like Kyoto Animation, luminism, three dimensional effect, luminism, 3d render, octane render, Isometric, awesome full color, delicate and anime character expressions "} +{"id": "2005534", "video_name": "8f0e6b00-b8b3-56d7-b440-39c6a26f1718", "text": "gothic guy running in the church at night "} +{"id": "4003800", "video_name": "a6692e6a-a6dd-53f7-98b9-67b9fcf78b45", "text": "The sky slowly descends, piercing through the blue sky and overlooking Afghanistan. Rolling mountains, vast sandy seas, every landform is captured by aerial photography with cinematic quality, showing the ruggedness and greatness of this land. "} +{"id": "4002465", "video_name": "68d2583c-961c-513b-8e8a-b9644c122297", "text": "sight from the beach with some palm trees at the left and the rights side and gentle movement of the water on the beach, presenting a relaxed vacation atmosphere in sunny light. "} +{"id": "5001169", "video_name": "3256125b-4b5e-56bb-9f6b-fb3e086d7052", "text": "Generate an image of a shy girl walking down a charming Parisian street, carrying a suitcase. Capture her hesitant expression and the picturesque surroundings of the street. Show subtle details like the architecture and ambiance that evoke the beauty of Paris. "} +{"id": "1003967", "video_name": "493ac084-5e03-5c28-b689-91ac4f62aeeb", "text": "closeup of people dancing in a nightclub, red purple neon lights, vintage aesthetic, retro look, 1980\u2019s movie scene, visually stunning, 4K, ultra realistic "} +{"id": "2007773", "video_name": "38427ad7-c921-5d18-8de3-18271e056fe3", "text": "an abstract collage of various interconnected elements representing the different fields of study, such as musical notes for polyphonical, plant roots for radicle, a blueprint for prototype, trees for forestology, and enforcement symbols for ultraenforcement. The style elements could include vibrant colors, overlapping shapes, and a sense of unity within the complexity of the image. "} +{"id": "7004658", "video_name": "e28252fd-21ee-5e40-852b-c3272b598657", "text": "peter griffin sitting in a chair christmas "} +{"id": "3004273", "video_name": "1ef56402-94be-5172-b72d-603f54eabe58", "text": "a big chainsaw and a big horse "} +{"id": "2003662", "video_name": "94ae09a4-fb7e-5a91-99b3-141da6a6fa08", "text": "Beautiful ocean waves Message: OLE (Font: RETRO) "} +{"id": "7003575", "video_name": "cfd48fe3-dba4-5cb9-bc09-71651bb4e8d2", "text": "gentle rustling of leaves and create a peaceful atmosphere "} +{"id": "2003614", "video_name": "83ab1882-d04a-5210-8acc-60d0b797f8b4", "text": "woman going into her house in the uk "} +{"id": "7002153", "video_name": "8a2790bb-05c0-5d37-981f-e8990f3afb3b", "text": "Create a scene where Elephant is in the room,walking front Message: 1 Attachment "} +{"id": "1005108", "video_name": "5e28ef47-9bdc-55ab-a222-735f6e10ead3", "text": "show me how Raphael the turtle opens a box with the most delicious pizza in all of New York, the pizza should be visible in full height, just like the character, the pizza should look appetizing, and the turtle should crave it "} +{"id": "4004961", "video_name": "bb9ef8aa-4ec3-5ce1-8ff4-2d85955213d2", "text": "show iron man and thor showing their power "} +{"id": "3004220", "video_name": "1f575ba2-852b-5e9f-84b0-ba247601b918", "text": "a music clip with theme: turn it up "} +{"id": "8002504", "video_name": "7aff8b2c-758a-5650-9f7b-f75a1113c5d0", "text": "a man crying in a bathroom. "} +{"id": "6004032", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "the cat orange blue standing at bamboo with eating fish "} +{"id": "1004625", "video_name": "55fe13d6-6ae0-55f0-8ff8-e9cfc0da755e", "text": "Maya stood up and walked to the window "} +{"id": "3003692", "video_name": "ac6a12b3-1154-5d75-b606-4b7761006277", "text": "beautiful girl with aqua mask diving with sharks in the dark, cinematic "} +{"id": "6004552", "video_name": "40bf82fa-55b4-57e5-9c61-8b49475ed2be", "text": "make a front entrance of a car dealership and at both corners of front of store are two palms trees with green turf grass around it and on the side of the building is an area with turf grass that if 40x 40 ft "} +{"id": "4002005", "video_name": "6ba3a2bc-d558-5ec1-883a-81b0a263fff2", "text": "woodcutter was thinking to stop cutting tree in jungle "} +{"id": "8001968", "video_name": "0a432817-9f45-5803-bc5e-382e834238a7", "text": "a parrot looking to the mountain and watching the falling snow 5 minutes video create "} +{"id": "3003304", "video_name": "9610a522-a2df-56b4-bcac-8ed16057738f", "text": "Lotr movies big battle, epic, cinematic, dynamic "} +{"id": "5001141", "video_name": "6d0191fb-c1de-5119-93e9-410d54f945a8", "text": "Illustrate a kingdom with a grand castle in the center, flags flying high, and people bustling about. "} +{"id": "6004984", "video_name": "bbeb8bba-7953-5b69-a256-ccedd8bd0e78", "text": "apple product style, a ring in sliver colour in the middle "} +{"id": "8001731", "video_name": "24ece03d-14ef-5a0c-a9ae-2abed976ba2d", "text": "the air thick with the scent of ancient fears. The shadows whispered forgotten nightmares, and the distant sound of distorted laughter echoed through the deserted fairgrounds. "} +{"id": "3005912", "video_name": "c58e2c78-ec8d-51ac-8a3b-132b71353581", "text": "adam driver swimming in a room full of mirrors "} +{"id": "2005374", "video_name": "c236f80f-a095-5790-8f23-775ad506d343", "text": "A group of friends, SARAH, MIKE, and JASON, hike along a narrow trail, laughing and chatting. "} +{"id": "4004028", "video_name": "a8bc0657-e8d3-5463-a05b-327ea5b75c3a", "text": "a wise man teaching a group of students "} +{"id": "8002675", "video_name": "44865b98-8b53-5703-881f-6d39ff88adf6", "text": "a horse jumping at the olympics hyper realistic in high resolution "} +{"id": "2007437", "video_name": "9eb85b16-b67d-50f0-b49f-c2d474936965", "text": "create kitten perfect dance ,spining ,rotating,bending hands,and legs "} +{"id": "8003255", "video_name": "ad391923-6df7-59f4-85bb-de4a091695c5", "text": "Give a trailer for my film which tells the story of the world getting back again by human intelligence which was taken over by AI, and lakhs of humans were impacted by it. Now, humans give a come back by getting over it again, proving human intelligence is smarter than artificial intelligence. "} +{"id": "6003694", "video_name": "5558cd7f-22d2-579f-94b5-cbd1fba64118", "text": "retro village landscape with a horse after rain with single firecandle in octane render "} +{"id": "0003110", "video_name": "373bac00-bb8a-5fb3-afe6-5f1a59675b91", "text": "Craftsman working with wood in front of a lake "} +{"id": "2003188", "video_name": "d2f11f83-feb2-5df7-bdf5-92902c8636e8", "text": "flames in the andes in 16:9 "} +{"id": "2005836", "video_name": "4503685e-f04b-5e12-adad-7b303e5d8c78", "text": "HD the highest resolution 4K , the guy sells Watermelons "} +{"id": "3005902", "video_name": "6c803249-0177-584a-96b1-fd7d99d67bf5", "text": "ultra detailed illustration of 1000 arhats sitting at both side of the garden, one arhat come forward, kneel down and pray in front of the gautama buddha who is sitting on top of the stone "} +{"id": "2004952", "video_name": "208fcfc7-c1fa-52de-836c-3ab481bafd00", "text": "Man electrifies the adversary with his hand 3D animation "} +{"id": "2007327", "video_name": "acb8d64f-1143-53d0-b5aa-1c6cc06d3b73", "text": "Software Engineer walking with a cow beside them "} +{"id": "8003235", "video_name": "d6c3635d-537d-56cd-9e7a-46a0f445a257", "text": "Han solo and princess leia running from storm troopers "} +{"id": "0006097", "video_name": "26837acd-3e31-558c-a302-a7afe0e0a030", "text": "meerkats in star trek uniforms manning the bridge of the Enterprise D or any other ship from star trek "} +{"id": "8003495", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "luminiscent plants and trees in a futuristic alloy and neon city with stylish gardens Message: Technological Inno (Font: MODERN) "} +{"id": "8003716", "video_name": "5a0336c6-4416-5909-aee5-b69909553ea6", "text": "1940s commercial of peopel eating Hamburger in space "} +{"id": "0004213", "video_name": "0511460f-4241-5ae5-95ea-09e994d8a99e", "text": "move lips blink eyes naturally, animate lights in eyes and on neck. "} +{"id": "1005694", "video_name": "68a66a50-280f-534f-ac64-fe0c33e194a3", "text": "space portal with alien writing on it surounded by bioluminicent glowing orbs with lightning "} +{"id": "6004463", "video_name": "0debedf0-46ae-5afd-b103-02304e29a4ac", "text": "Eden hazard celebrating, close to camera, comic style "} +{"id": "7003088", "video_name": "ec664a60-edf2-54d0-98be-022733c870a6", "text": "Illustration of children in the village, looking up to Stella with admiration, some holding up handmade posters with her name. "} +{"id": "2007283", "video_name": "37bf4d4e-c3ed-5e09-9735-25beba531148", "text": "2k, 9:16, Men run away in the house anxiously "} +{"id": "3006195", "video_name": "5b8c2cef-49a5-521a-a1f9-a1b2e0474e6b", "text": "A large carrier plane flying in the sky, 16:9, 4k, in the same claymation style as Wallace and Gromit "} +{"id": "7004961", "video_name": "63e20dec-df83-5a0f-9730-c634649553f1", "text": "gif animation 2 people\u2019s, girl and man on scooter, bali "} +{"id": "1003895", "video_name": "47d14fa5-0561-5176-9ef8-25f0ba80b4ea", "text": "animated elf village with dramatic story and happy ending "} +{"id": "6004734", "video_name": "5895d0b5-0749-51e6-b432-c29cb6251f13", "text": "Zoomimg in dolly forward to center court at Wimbledon with Novak Djokov on court "} +{"id": "3006103", "video_name": "e53035bb-6648-597c-b338-777ce65f1432", "text": "Sparkle surrounded by floating riddles in the air, each one a puzzle waiting to be solved. "} +{"id": "7004339", "video_name": "4b154489-d9c1-55dd-99e5-6d6c7d97b25c", "text": "In a stunning display of virtuosity, reimagine the timeless masterpiece as the enigmatic Mona Lisa takes a mesmerizing stroll through a bustling Italian piazza, captured with unparalleled realism and intricate detail. "} +{"id": "1004934", "video_name": "5b3622a1-9920-5dab-b3e2-3d1a837a21e6", "text": "an ancient happy indian family fading out in darkness of sadness. realistic cinematic 4k "} +{"id": "6002386", "video_name": "373f5148-527e-5362-978d-0dc8ef35c349", "text": "annunaki god. By jordan grimmer, j c leyendecker, Ivan shishkin encapsulation of fear "} +{"id": "2004547", "video_name": "44d305d3-3131-55a4-b3bf-9d4f33ab8c25", "text": "a cheerful little kid smiling brightly "} +{"id": "6004716", "video_name": "af1ad6d3-e206-530a-bfb6-3efee1982808", "text": "Jesus being expelled from the city "} +{"id": "4004773", "video_name": "19155f2b-7679-5b23-9fc2-ec2e5450c175", "text": "LEGO CAR mitsubishi lancer evo 8 silver paint "} +{"id": "4004152", "video_name": "d993bd7b-572c-5c22-8355-73c90acd7bca", "text": "A man in a dark mantle walks through a dark dungeon to a red light .The camera is pointed at his back . "} +{"id": "6003496", "video_name": "873ea527-7bc2-554c-a13c-a6e4088c925e", "text": "Once upon a time, in a land filled with lush green trees and sparkling blue rivers, "} +{"id": "2004106", "video_name": "cc1fa687-5226-5db6-ba0a-2fe914ae9031", "text": "pixel art of a homeless man crawling out of a tent "} +{"id": "8002851", "video_name": "6205bd81-a828-5e46-a054-f4dec99a41c5", "text": "a person sitting or standing casually while engrossed in texting or messaging on their smartphone. "} +{"id": "6003901", "video_name": "f60c8656-fc60-5903-a9a5-dc83f46839f5", "text": "Native American scientist working with light and crystals for source of energy cinamtic lighting amazing hgittech lab with brilliant deor "} +{"id": "3003419", "video_name": "0683f882-73ed-59a9-8f8c-fe7ab779654b", "text": "Falling down into the tunnel Message: 1 Attachment "} +{"id": "1003307", "video_name": "3cdcf0fc-79c6-5f29-9259-45f6efb138ae", "text": "batman fight with iron man in the air upon the newyork city, and batman get hit by iron man , falling towards one building. "} +{"id": "1005786", "video_name": "6a83fe7a-f70b-5207-8e03-1f8a4feca898", "text": "Nighttime sky filled with stars, telescopes pointed upwards "} +{"id": "7003363", "video_name": "21dc315f-f18a-51ae-98bc-0b2d6282ef82", "text": "Innovative 3D Message: golden crown (Font: MODERN) "} +{"id": "0006000", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "Luke Skywalker cuts cheese with lightsaber "} +{"id": "2004772", "video_name": "a8a61b6c-2fdf-59e4-a6c4-c7c003fa6e8d", "text": "a large lion standing over a young man with paw up in the air to strike cinematic "} +{"id": "2007761", "video_name": "7af71112-12e8-511b-82e0-8c38da726325", "text": "a man with three angels in the desert "} +{"id": "3004922", "video_name": "42c17f7f-44b0-54e9-9249-162c149547b3", "text": "A scientist in the world of quantum mechanics "} +{"id": "0003322", "video_name": "3b9f111f-aa61-533b-a6d4-a59c43dab46e", "text": "fast camera moves abandoned concrete building with decaying body corpses "} +{"id": "1005038", "video_name": "5d27f771-da6a-51e8-ae46-c3575209547c", "text": "camera following ball rolling down street "} +{"id": "0006792", "video_name": "3332cdac-9e9d-578e-8657-f5e55efcccf6", "text": "a dad help his son fish "} +{"id": "0006960", "video_name": "35e1b16a-116a-51d5-bdb2-48445e7f7257", "text": "A psychological counselor and a client are having a conversation "} +{"id": "2006294", "video_name": "08392545-bd4e-5ccd-974c-59b759c3dae3", "text": "A pen with 2 eyes and 2 legs draws on a piece of paper "} +{"id": "1005065", "video_name": "5d8e4abd-03fb-5535-9411-5bb573f18578", "text": "Marcus standing in a courtyard, looking thoughtful. "} +{"id": "6002958", "video_name": "a9970c7e-6edf-5881-8677-3f35f05a5059", "text": "colorful background, colorful color, vivid background "} +{"id": "0006040", "video_name": "257bafbb-6da4-5322-b8c1-ab3a87147be1", "text": "appearing from white smooth fog and transform to the white moving clouds on the black dark sky with smooth sun rays through the clouds Message: 1 Attachment "} +{"id": "2003506", "video_name": "81839f65-6464-5d62-b66f-86e7e6b267ca", "text": "Junji Ito inspired monster slowly walking through the woods "} +{"id": "1004702", "video_name": "575e6ac1-67bf-5fb4-b226-6039174d7279", "text": "the pandas danced on the sea "} +{"id": "3003916", "video_name": "2fb22af4-7df3-5493-9488-4c20b86e6839", "text": "Condor perched in the field with the mountain in the background and suddenly it starts to fly "} +{"id": "6004874", "video_name": "83af6136-7de3-5660-bcf4-265a7b81ff52", "text": "a couple sit on the table each side and discuss about their relationship "} +{"id": "3003894", "video_name": "8a71843b-0f94-5476-975c-70796afc3e25", "text": "tokusatsu product design raygun with exotic energy and materials lights leds artistic lighting cinematic presentation imaginative beautiful design "} +{"id": "1004752", "video_name": "57fac576-6a7e-5474-a72c-7152198ea73b", "text": "tank going full speed towards a futuristic city "} +{"id": "3003236", "video_name": "0d4993eb-96ab-5c7b-a6ff-ce48c87fee8a", "text": "Create an image of Kael holding the map with determination, looking towards the distant horizon. Convey their readiness to embark on a journey that will test their mettle. "} +{"id": "0006325", "video_name": "2aa9514b-bb6c-58c3-95a6-dfe91ad4cb62", "text": "to birds twitting and build a nest "} +{"id": "4004008", "video_name": "0190e44f-197f-5962-910e-d9d1dcc62e98", "text": "bethlehem, Christmas, born baby JESUS Christ, with Saint Joseph and Miriam his mam and 3 kings with arabic "} +{"id": "0004953", "video_name": "122cf5de-01a9-5e67-b221-2db2dd8d0aef", "text": "123456A group of cute pandas are rowing a boat, with a side shot of the river splashing around the boat "} +{"id": "6004244", "video_name": "2579cf97-5ae6-5fd1-b749-8f9c76792660", "text": "Genre: realistic Resolution: HD Scene: outdoors Characters: a cute girl in a sailor suit with a Japanese style and an oval face "} +{"id": "7003197", "video_name": "5292f870-7879-575c-a298-5ba06b97c082", "text": "A family moves into an old, Victorian house and discovers a dusty antique mirror in the attic. Soon, they realize the mirror has a sinister presence. What horrors does it reflect, and can they escape its clutches? "} +{"id": "1003162", "video_name": "3a401320-18c3-52c1-a345-25f3ab8e8027", "text": "In a bustling crime scene, Detective Conan meticulously examines a bloodstained knife under the bright fluorescent lights, while forensic experts gather evidence in the background. The scene radiates tension and urgency, with a gritty, realistic texture. Shot with Nikon D850 camera, capturing every sharp detail. "} +{"id": "0006861", "video_name": "345e2e54-5f44-5ad0-b804-eac57a3764e0", "text": "the souls connected in thread. the thread already cut "} +{"id": "0003051", "video_name": "36280304-52aa-56f5-a91e-aa02feed112b", "text": "Show a clip of male muslim friends sharing a meal and having a good time with a good quality "} +{"id": "2003314", "video_name": "ae93ae03-cb36-5d69-8e72-e2bb0475a360", "text": "Have that doll read a note that shows the message to the camera "} +{"id": "6003656", "video_name": "3e248201-ccf3-5504-b028-af13a4c643e5", "text": "A couple of friends, telling secrets on the terrace of a building. They look at each other, knowing that their destiny is not to be happy together. "} +{"id": "2007540", "video_name": "e914dcdd-05b1-5959-b630-843ab3edbc6a", "text": "single indian young beautiful women pointing out another young women at river side "} +{"id": "2006016", "video_name": "c7fb8c65-26e7-585d-b5f2-3c9001cdd1fd", "text": "19years boy in medieval tavern, 8k, realistic "} +{"id": "8003002", "video_name": "14e519ae-cd6c-58c6-b0c4-c2d894513425", "text": "music planet Message: Aydym.com (Font: MODERN) "} +{"id": "0003750", "video_name": "42bf0ab3-afb2-5028-9511-561b99945d67", "text": "A girl browsing through fashion products in the new york city "} +{"id": "0003081", "video_name": "36a9223b-a8bb-5eed-8f65-2cf80ab0a1da", "text": "a leprecon at the end of a rainbow with a pot of gold "} +{"id": "6002421", "video_name": "5d487bab-b57f-5267-838a-7a47add17033", "text": "superwoman flying through space and landing on mars "} +{"id": "8001456", "video_name": "7e0416ff-1941-5ac0-801a-d9c942582796", "text": "Only Fans Girl living OFF GRID "} +{"id": "2005860", "video_name": "1ea0fc07-94e9-56ce-9941-a903b6e7f345", "text": "man sitting by campfire surrounded by goblins "} +{"id": "4002929", "video_name": "4d3afe9b-08c7-5df0-a346-7dd40cd94312", "text": "black and white film of the Thames River in 1935 "} +{"id": "8003350", "video_name": "09d9e816-1a1b-5a74-a968-859d2f1e1277", "text": "lod ram and sita In ram mandir "} +{"id": "3005759", "video_name": "6a357013-afe0-5a14-a8ba-530028035352", "text": "a chicken doing a tiktok dance contest, expert moves "} +{"id": "0003113", "video_name": "3749148a-ceb6-5cf6-a577-adcbc4bf9792", "text": "in the motion capture studion, the director opens up a box with a camera inside "} +{"id": "8003634", "video_name": "5bab9f9a-badd-5c54-8e16-bc086656982d", "text": "up close look of a shadowy figure in sad grim winter weather looking inside a house window "} +{"id": "2007023", "video_name": "f8bbd30f-42ab-526f-98b1-e82cfbf4c45d", "text": "Ghost from Call Of Duty and Master Chief from Halo Teaming up to fight evil Bots "} +{"id": "1003679", "video_name": "43d3a8d0-c802-5583-834e-1ceccfb15519", "text": "school notebooks and books in flight "} +{"id": "6004673", "video_name": "3f6587bd-5b0d-53a6-8ead-ba623ee87d0b", "text": "men In black suit standing in raging lightning storm, crackling lightning "} +{"id": "3006765", "video_name": "11d6ba34-457e-577b-a838-b461d601e3f4", "text": "Subaru goes outback in the mountains and rain "} +{"id": "2007523", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "perspective view from street level of tall futuristic building. Ambient is dark, night. Rainy day. 16:9 ratio. cyber punk type of scene. "} +{"id": "2005279", "video_name": "d0dbcffd-94d5-547a-9573-78deddb1a9ff", "text": "a cat is running in the park during sunset "} +{"id": "0006925", "video_name": "35682bca-2741-5db8-bca3-0ad6a218de44", "text": "The boy stands on the shore, watching as the mermaid disappears beneath the waves. The coastal town is bathed in the early morning light, and seagulls soar "} +{"id": "6004277", "video_name": "f9c5aed8-1212-5eff-b5b5-25aaf484e037", "text": "Winking and wheezing, pulsating. The cutest kitty sitting on an ice embankment, under the glimmering moon and shooting stars, watching the icy stream float by "} +{"id": "3003160", "video_name": "d78db039-a1db-59e1-8b0a-854f8922ada7", "text": "A dynamic crane shot circling around a character engaged in an intense swordfight on a moonlit rooftop. "} +{"id": "1003053", "video_name": "3824f2a4-a856-52ad-aa3e-a6696f2453fc", "text": "trucks being driven carrying crops in the modern local village the houses are in order coloured well with pink, green , yellow, white, 8 k, fps 20 motion 4, cinematic, realism , camera tilt up "} +{"id": "3004208", "video_name": "b70f4ab5-3285-58aa-b4f0-1b530b8e665a", "text": "Good friends give you support, in every circumstance, 16:9 "} +{"id": "2007439", "video_name": "cd7db44e-260c-5eb9-815e-5bdeb570e17f", "text": "fish reached the pond and shared his incredible adventures with his fellow fish cartoon style . "} +{"id": "1003794", "video_name": "46089f2d-d85e-548a-98af-b1a5adcea3bf", "text": "porche car in tokyo midnight in city "} +{"id": "6002084", "video_name": "aab36d49-19da-5844-9447-59f80db24c2f", "text": "cinematic African village in the bush at sunset "} +{"id": "0006221", "video_name": "28960c1a-e343-58c2-aa1c-668bb9801348", "text": "and elon musk eating cake in lebanon "} +{"id": "7004126", "video_name": "a2574647-7b74-5d08-9344-d1a39cc6ab3a", "text": "god is creating world in 7 days "} +{"id": "8001381", "video_name": "5e699f04-b6bf-5b3d-9578-bfae8e623cb9", "text": "One side is technology, the other side is the future "} +{"id": "2005097", "video_name": "727c1cdf-7ca1-5e5e-b7c7-692680e5c167", "text": "People running in masks, social media in the background, cinematic, 16k, ultra detailed, HD "} +{"id": "8003056", "video_name": "3c81d3a2-6cb2-54f0-b21f-90ca2fc832d4", "text": "The Oriental style harmoniously blends Asian cultural elements, creating a serene and elegant ambiance. Upon entering, a traditional folding screen adorned with exquisite landscape paintings welcomes guests. The spacious living room features dark hardwood flooring, complemented by handwoven silk rugs. Bamboo and rosewood furniture, intricately carved with delicate motifs, showcases the craftsmanship of the Orient. Soft and warm lighting contributes to a tranquil and balanced atmosphere. A corner of the room showcases a set of exquisite tea utensils, epitomizing the refined elegance of Eastern culture. "} +{"id": "4004059", "video_name": "62c0174e-c9db-5dcc-8db9-eb912f081ad4", "text": "vintage garden party flyer, typographic masterpiece, best artistic fine work, best illustration work, award winning flyer, best vintage flyer, stunning illustration, secret garden scene, garden art, fine artistic design, best color set, typographic details, Mucha style, sharp phocus, portrait form factor "} +{"id": "0005656", "video_name": "1ed052a5-2c02-5d33-9833-c1827a22bebb", "text": "draw how Ukrainian soldiers captured the Kremlin of Moscow and put Putin on a bottle for leaving screaming "} +{"id": "5001573", "video_name": "5ffc1c20-ee63-5a38-af6a-70404b780d27", "text": "salmon king fish either crown on head "} +{"id": "1006325", "video_name": "73c30724-1c68-52c6-9a4c-e6cc9c0a3c1f", "text": "In the consumption of private goods, exclusivity and rivalry are present. "} +{"id": "2003337", "video_name": "f422bf8f-d8af-517f-824e-bcefb2550f4b", "text": "a white eagle descending to pick up a shield from the ground "} +{"id": "0003509", "video_name": "3ebe5593-1656-5df1-b37f-e98efef71252", "text": "Iron man with deep black suit, flying , contrast background, HDR , 4K , highly detailed "} +{"id": "4003820", "video_name": "39fb4212-4629-5476-83b5-5e066eec3dc3", "text": "The collision and ongoing movement of these tectonic plates continue to shape and elevate the Himalayas, including Mount Everest, making it one of the most dynamically changing geographical features on Earth. "} +{"id": "3005653", "video_name": "43462f9b-6076-5f58-990f-e1df17bc8161", "text": "The legacy of the giant pharaohs endures "} +{"id": "4002660", "video_name": "5292e3c3-62da-5e2d-bbd1-0b7f47c34748", "text": "indian beautiful girl out under the water and open her eyes "} +{"id": "7004543", "video_name": "b5587754-5e26-5945-8d49-c573a51bcd83", "text": "hero summoning a shadow dragon,in the desert "} +{"id": "0003555", "video_name": "3f7bfde7-4765-5960-9b0e-a18b77205da9", "text": "a scene in the Sahara desert. The aviator is sitting on his broken plane. He is tired and distraught. He looks at the sky, where the stars twinkle. "} +{"id": "1005949", "video_name": "6d46e00d-cd74-5c55-a73b-eb08cb9b1e74", "text": "sunrise in mountains, best quality, cartoon style Message: ACHQD LUYS (Font: SANS SERIF) "} +{"id": "0004295", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "A boy guiding a flock of sheep to graze in the meadows. "} +{"id": "3003392", "video_name": "ace146d9-aa35-52b7-b9c6-6b69a2ebc23d", "text": "A car with a bright LED video sign on the roof cruising on night city roads. On the sigh is playing dynamic and colorful video which illuminates night dark city "} +{"id": "6003803", "video_name": "20fa2fdc-02ed-5628-9ec2-a65077b3ffa4", "text": "cat eating the edge of a book "} +{"id": "1006890", "video_name": "7df1d94b-f9e6-558e-9909-4b32d3d91406", "text": "my mini personal cute white robot "} +{"id": "0006983", "video_name": "36410757-1ac0-58cf-9dd4-3d6322ae8f68", "text": "beautiful dancer dancing with long skirt, 4k resolution. "} +{"id": "6004957", "video_name": "e3c4bd63-38ac-5fb2-b6f2-56996e9a07fb", "text": "A close shot of a lone person sitting on a bench is shown. His face reflects a certain melancholy and contemplation. In the background, transparent bubbles are seen floating around it, symbolizing dreams and expectations of the future. Some bubbles are intact, while others are slowly fading away. Soft lighting and nostalgic tones create an evocative atmosphere. "} +{"id": "7003681", "video_name": "07099085-5527-5745-be12-49c259c02dad", "text": "metoer strike on earth splitting sahara desert in to "} +{"id": "8003550", "video_name": "74bbe113-9bcb-591b-b37c-bb45d5ac40d5", "text": "logo for world of warcraft mount farming group "} +{"id": "5001277", "video_name": "8dcf1bb2-66d8-5da7-ab64-d97dbdc068f0", "text": "photorealistic, cinematic. a handsome bald white humanoid android, with a centipede wrapped around his leg. setting: on the beach. low angle shot looking up. "} +{"id": "7002185", "video_name": "90a3acdc-5dbc-5b29-8a14-bce36bed0377", "text": "Student walks in and sees diwali, turns to the right and sees adult "} +{"id": "3004871", "video_name": "acb4a6c4-25c5-5826-b4bb-703b416ee20c", "text": "aAn octopus in a bullfight. Message: 1 Attachment "} +{"id": "8002549", "video_name": "f08383ff-cacd-58ca-979a-7b255e49632d", "text": "A human and a dog walks down a busy city sidewalk. old film 1920 "} +{"id": "4002312", "video_name": "bf26634d-8348-5b71-94bc-93326c62d408", "text": "A fighting fish with the colour, Orange and red for its tail flies among the clouds, Mysterious "} +{"id": "3004815", "video_name": "64084cef-2698-5852-a0f4-e5a8359a02fa", "text": "Compose a mesmerizing video montage showcasing serene nature scenes, with a particular emphasis on capturing the beauty of landscapes, flora, and fauna. "} +{"id": "5001583", "video_name": "0b4d1963-c1e5-500a-bb1e-28c18eabd375", "text": "prompt:an aerial view of dinaore fight in ocean, the doomsday, the ocean waves are rising, the mountains are collapsing, there is huge bombardments, "} +{"id": "2007461", "video_name": "ff94eb94-16c8-56f8-af8b-7458310d1627", "text": "Generate an image that represents the future of corrugated cardboard boxes. Imagine an innovative scenario where cardboard boxes are personalized, sustainable, and part of an efficient and technologically advanced supply chain. Incorporate elements that highlight creativity in design and contribution to environmental preservation. "} +{"id": "0005333", "video_name": "18fa844a-c1e2-50a6-aedc-137f294616db", "text": "two singing people on the beach from hawai "} +{"id": "0005003", "video_name": "1312817b-d052-5197-b7f5-cc02460be1b9", "text": "Clownfish swim in the ocean, sun shines through the water "} +{"id": "6003268", "video_name": "d2c07f1f-aca1-5f4b-b7cd-f27e13c9dccf", "text": "pov hurtling through outer space past planets, stars, galaxies, universe, outer space, "} +{"id": "5001433", "video_name": "0fbca990-1db2-59ec-aae5-c4b2af948649", "text": "video of rack installations, tv support "} +{"id": "3006424", "video_name": "aa1f2a14-7bf6-523c-8aeb-f123afdb23e8", "text": "thunderstorm over fighting apes, much camera movement, high angle shot, punch and zoom "} +{"id": "5001125", "video_name": "97420c31-78ea-593d-8239-9397e00a462c", "text": "clothes magically transforming on people. realistic, cinematic, 80s ads style "} +{"id": "2005326", "video_name": "be4b0faf-b322-5c06-933b-9839de5f9492", "text": "Shoulders on the shadow of finda "} +{"id": "2004219", "video_name": "a6bca154-2c13-5e0a-8f26-bee57d076479", "text": "a cat coding with a vr glass "} +{"id": "0005527", "video_name": "1c46f03a-58e0-5c71-b642-c4db7ff6e053", "text": "on asnowy day a beautiful dirl drove a sports car to the store to buy fish to eat "} +{"id": "2005919", "video_name": "ce91058a-5bb9-5fc0-a3db-c790e7014cf1", "text": "two little girls and two little boys are making a quarrel "} +{"id": "7004105", "video_name": "fcc88ff9-3b56-56f4-a5e6-71cf5ec56b4d", "text": "a princess walking the battlefield on fire "} +{"id": "5001550", "video_name": "7939fcc7-1d9e-54a9-8290-b3755ea2b0fb", "text": "celestial space beings welcoming a transcending human through a DMT vortex "} +{"id": "8002700", "video_name": "5aaee678-6615-5e86-8327-19f04a17ac51", "text": "A futurisitc hover car from 2077 speeding down the streets of a mega city image. The car should be cherry red. "} +{"id": "1005530", "video_name": "65c4dc10-eb4b-5e5f-9c25-38787d7f1f11", "text": "Sudden darkness followed by a jump scare of a terrifying creature, 8k, realistic, 16:9 "} +{"id": "0003824", "video_name": "4428c731-733a-5e60-935f-497a26958964", "text": "a sad and scared looking man is looking at a candle on a small table, he Is surrounded by darkness and there are red eyes in the darkness watching him "} +{"id": "4003778", "video_name": "44363d0f-9ad9-5eb5-988c-e815d38f6aa1", "text": "a man is turning back to look at the camera and wink Message: man winking (Font: MODERN) "} +{"id": "0003345", "video_name": "3bf0ffc8-cd38-57fe-8dac-1be3eae2a829", "text": "man in hat and long coat go through endless labyrinth "} +{"id": "8003353", "video_name": "6c70deab-8920-5469-b320-f1d505343eb4", "text": "river stream, written in stones Message: Rom (Font: MODERN) "} +{"id": "4003763", "video_name": "9265a5de-e313-5b0a-af93-b5d4276d1b7b", "text": "Create a strong hero fighting, with energy aura, short black hair slicked back, 30 years old, male, Golden eyes, wearing a white sintethic leather costume with white and gold details. In place of the symbol on the chest, use a stylized metallic golden sun, with twelve equal straight rays and in the center a golden circle with brilliant golden energy. "} +{"id": "7004861", "video_name": "a9f9a934-1013-5387-bffb-2fdb0504fd98", "text": "dragon witch fire, castle, red moon, running "} +{"id": "2007410", "video_name": "0deff2a2-af9a-56cc-b08c-eba2a794149e", "text": "young man crying on film production, hd, dim light cinematic "} +{"id": "3006606", "video_name": "e7d23528-1d76-508a-8c90-cca1cc080858", "text": "Create a portrait of a newly anime character that is used in anime till now "} +{"id": "6003702", "video_name": "8a02110e-1365-51ef-a271-eae5766f0827", "text": "girl under a blanket, eyes wide with fear. "} +{"id": "7002400", "video_name": "b1d21e4c-d310-59c4-b999-0037b055115e", "text": "A woman dancing in clubs and parties "} +{"id": "8001490", "video_name": "8d73da84-5ce9-5744-ae12-136b0eb60479", "text": "a small crowd watches a man sleeping in hid darkened bedroom "} +{"id": "2003081", "video_name": "81c7de97-4dd4-5e33-990c-d16050cd9067", "text": "cat playing with planet Earth like a basketball player "} +{"id": "8002594", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "Generate an image of a magical kitchen filled with floating ingredients like flour, tomatoes, and cheese, creating a playful and enchanting atmosphere. "} +{"id": "4004260", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "But amidst the daily grind, her heart yearned for something more. "} +{"id": "0004871", "video_name": "10add92d-da49-56a9-af35-41406a92cdb4", "text": "spaceship background universe background planets black holes "} +{"id": "3004289", "video_name": "9199b549-98c9-52de-8f3f-9269812f45ad", "text": "1960s recording, showing a city Rio de Janeiro, happy pedestrians walking, the traffic, at midnight, neon signs in the apartments, night, beautifull shot, beautifull. "} +{"id": "3005143", "video_name": "8edc2a83-767b-5e80-a15c-1050dcf7ffeb", "text": "urban Indian apartment, a young boy sitting with head on his both hands, detailing needed. flyview camera, motion2 "} +{"id": "7004161", "video_name": "847e1788-56e2-53c2-8263-32288bd18b68", "text": "man in business suit falling off narrow path "} +{"id": "0003622", "video_name": "40ae43a4-2044-5416-b831-89471b49aeda", "text": "Apple ipod mini in the form of a frog "} +{"id": "8001908", "video_name": "61bdfcdd-fb0e-56d1-893d-8f7af75de996", "text": "Exaggerated facial expressions and actions Message: 1 Attachment "} +{"id": "4004875", "video_name": "8aa7d82c-e0bb-56c8-bad0-c8ff2c663c29", "text": "Justin Bieber as Harry Potter casts spell, Hogwarts, cinematic "} +{"id": "3004182", "video_name": "9e15e27e-c6a1-571e-9766-4e4db923abb9", "text": "seed of a plant showing its intrinsic value "} +{"id": "7002033", "video_name": "76e458e2-d549-56ac-ae1d-d4157ca13dd9", "text": "80s dance kid with Mohawk skateboard realistic style "} +{"id": "1004868", "video_name": "59f178f9-4665-5fef-b84a-3a5d3afff603", "text": "kitchen scene, an octopus emerging from the boiling pot on the stove, "} +{"id": "1003784", "video_name": "45e540b4-3848-5149-937b-2d9321534558", "text": "With that, Owl began teaching Dragon the art of balance and the secrets of the air currents. "} +{"id": "4003373", "video_name": "8d49a452-b22e-5fc2-8208-ebe365ffa150", "text": "lord ganesh walking into a palace room "} +{"id": "8001555", "video_name": "63073ca6-23d9-5ac4-8527-78d177d223a5", "text": "Distant stars shimmering against a dark expanse. "} +{"id": "6004674", "video_name": "6b5fb3a6-86c6-597f-969d-f413639075c1", "text": "Haveli is related to the story of a woman, "} +{"id": "3004373", "video_name": "ec48bc14-d344-5835-86cb-3b2f0305e420", "text": "fim noir, heavy rainy day, shattered glass shines, new york street "} +{"id": "0003953", "video_name": "0082c052-53ad-5dbc-8942-1429aa2f616a", "text": "tornado throwing an elephant and animals in the air, violent storm, ar:9:16 "} +{"id": "5001518", "video_name": "fc43d53e-1a42-5dda-9e12-37838f4f4132", "text": "create an anime opening for a anime about a group of students creating a global conference on sustainability, connecting students world wide, and brining in guests who are professionals in each field, coming from places like the smithsonian, harvard, yale, NASA, and more scientific institutions. "} +{"id": "5001673", "video_name": "34aedc7a-c9da-58f0-83ee-61cebf2537b4", "text": "at a studio with black and green light electronics with Jake working on a computer editing a video shot on a 35 mm lens from a side angle Message: Producer Jake (Font: MODERN) "} +{"id": "7002803", "video_name": "bd8ccfc3-e919-5453-812d-eba2261f7966", "text": "motivational video where there will be a cool car and a lot of money in it, "} +{"id": "2006792", "video_name": "ad09e98d-d38f-550b-86dc-8e86952d62ae", "text": "a soccer ball, football and volley ball emerging out of a swimming pool and turning into a grey and blue 3 dimensional M "} +{"id": "7003353", "video_name": "efa9240d-2c45-542a-9c83-8bed8d263d0b", "text": "An animated 3D video of Lily, taking a deep breath, and speaking to Jake with a thoughtful expression. The camera captures her sincerity and vulnerability. "} +{"id": "7004806", "video_name": "adcc87c3-0310-5497-843e-b396ea517d45", "text": "Imagine a piggy bank with ATM for kids written on it "} +{"id": "3005556", "video_name": "b6c82114-9da1-5d13-8f4f-6e86b2013b1d", "text": "a beautiful young blonde Swedish woman queen sitting in chair "} +{"id": "7004362", "video_name": "30ef7c95-cdb3-584c-b7a2-fc8bf11a01a0", "text": "generate rome street during 1500 with war happening ,realistic ,photorealstic "} +{"id": "4003557", "video_name": "e7f2de09-f953-59a5-b187-3c5e317ffe53", "text": "young female teen from the 1800s standing by a lake "} +{"id": "0006240", "video_name": "28fbde91-6622-595e-9d96-f1b2f7e8a1b3", "text": "spirit standing in a tomb, creepy, cinematic "} +{"id": "6004148", "video_name": "4cb03c92-f9a5-5959-9aa8-3be429235943", "text": "1978 italian horror film, a psychedelic nightmare, vinegar syndrome "} +{"id": "1005762", "video_name": "6a003bb5-593b-5633-8b80-cd0c318b5d2e", "text": "a young girl in a pink tracksuit and pink hair plays guitar on her way to school ,Bocchi the rock "} +{"id": "1003991", "video_name": "49cf2276-79be-5026-a60f-61c322196c90", "text": "A luxury watch slowly morphing in the moon "} +{"id": "3006219", "video_name": "4f70862d-e6f2-5416-be96-2bbd43df7106", "text": "An anxious character lying in his bed, trying to sleep on a rainy night, while in a window behind we can see the rain hitting the screen "} +{"id": "1005209", "video_name": "5fe8ad32-00c1-5727-9e66-d63d0c9c988d", "text": "group of people planning strategies with paper, top view, realistic "} +{"id": "7002909", "video_name": "f8f7c1d9-2787-5321-a3ab-c08a8430180e", "text": "spiderman swinging through manhattan fighting goblin, 2d "} +{"id": "8002044", "video_name": "d7ada0ba-f45d-58e6-a5d6-294b57dc5820", "text": "Petland pet store in Orlando holds its grand opening (1971) "} +{"id": "4002423", "video_name": "71310422-eb01-5a9d-929a-d4195172c186", "text": "A large and confortable room, a fireplace, a confortable chair, books, a animal in the roof, a cold confortable night "} +{"id": "1003209", "video_name": "3b1fd0b9-898b-5899-9454-884d6b854ca2", "text": "a blindfolded young man is staring at the camera in a dark forest "} +{"id": "6002045", "video_name": "363c57d3-4b98-57f0-acbb-d0b09326f67e", "text": "an angel with beautiful wings now put the wings around the angle "} +{"id": "1003716", "video_name": "4491f97c-eb78-5050-8e0e-507b8c17d55d", "text": "realistic small town with kids paying and having fun in the park. "} +{"id": "3005513", "video_name": "ae30b5a6-f41c-5d22-8ec9-5f6359d1cb8a", "text": "dark clouds, lightning strikes to the sea surface from the dark clouds "} +{"id": "0005821", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "poster art deco of a weeding French, north France on the sea, bride with honey brown hair in a bun decorated with flower, male with bald dark hairs dressed in a blue suit "} +{"id": "0003767", "video_name": "42fe3948-e5a2-5b0c-ac79-fcec2aa69be0", "text": "night. the corpses of people hung in the air, in the sky you can see the moon split in half. All around are the ruins of a village. field "} +{"id": "6002601", "video_name": "63b80da9-d18d-51b8-87b1-0840f431cae5", "text": "man opening safe combination lock, realistic "} +{"id": "4004824", "video_name": "42d06982-a6e4-5614-942e-bfc0672d57d2", "text": "a worried restaurant owner looking for options to increase sales "} +{"id": "7002880", "video_name": "d1825413-6229-57f2-9d16-ea4e60a7ebee", "text": "A little boy sits on the moon, surrounded by clouds gently drifting, stars twinkling around him. He slowly lifts his head, gazing upward. Message: 1 Attachment "} +{"id": "1005233", "video_name": "6045eb75-06cd-561e-9f92-2e91f91a9412", "text": "Jesus saying a prayer on his knees in a beautiful sunrise. "} +{"id": "2003356", "video_name": "2a350b0c-d4b9-53cc-bd34-1c9db6ca6a95", "text": "one rusty robot running around the factory, low angle, pixar style, early morning, indoor, cast shadow "} +{"id": "3006758", "video_name": "c3781a61-7e60-537f-b0b5-b86b8e58c6a9", "text": "close up teeth with blood and meat, horror, scary, vhs, old film, dawn of the dead, details, "} +{"id": "0005365", "video_name": "1991402e-0a07-52b5-8938-6c1fb13f058e", "text": "The old man sits quietly and talks "} +{"id": "1003900", "video_name": "47fb2bf3-5f13-588c-a92e-52525d72fea5", "text": "Vikings fighting in a war , aftershock comics "} +{"id": "6002943", "video_name": "ac355912-903d-5816-ad8f-7d14f0e113a9", "text": "warriors finding treasure chest in the snow in the style of Gerald Brom "} +{"id": "1006331", "video_name": "73d39113-4e81-5c21-ba84-35c954f5dd55", "text": "Make me a long clip War, destroyed homes, fires, and the smoke of a fire "} +{"id": "0006381", "video_name": "2b795214-dabd-5baf-b6b5-a1318b966512", "text": "Jai Shree Ram at ayodhya temple "} +{"id": "3005763", "video_name": "226056cc-c8f7-506c-a890-28e2c7a28279", "text": "1930s documentary film in color inside of laboratory with scientists mixing together bubbling green liquids into beakers "} +{"id": "3003188", "video_name": "6bfb7636-b209-5c68-9fa9-cf3e08e09fc5", "text": "In front of the blooming flower, the product shines. "} +{"id": "8001270", "video_name": "3778349e-e189-54d5-b130-f7c63f42b491", "text": "A metallic monstrosity: Instead of organic flesh, the Beast is a cold, unfeeling machine. Its body gleams with polished chrome and pulsates with internal lights, resembling a nightmarish fusion of tank and robot. "} +{"id": "8003481", "video_name": "267e1d06-e164-5237-94b4-b1320b8613e0", "text": "justin bieber and selena gomez staring into eachothers eyes on an evening on the amalfi coast of italy "} +{"id": "0005442", "video_name": "1ad76fe1-e873-5bfe-a00e-3239a74b039e", "text": "THE both Japanese anime lost their memories about their love when the wish "} +{"id": "4002548", "video_name": "c7b0797f-b723-5988-b2bf-3516925bca70", "text": "an red tentacle from an octopus "} +{"id": "1003676", "video_name": "43c03fa8-0635-5aa4-b794-62ee2d34ec2b", "text": "a bulls eye game Message: 1 Attachment "} +{"id": "3004780", "video_name": "2b4931c1-03ef-5ca5-aa57-2d512104aa38", "text": "pc parts floating in space around the moon 360 "} +{"id": "6003679", "video_name": "a3fae4eb-729f-5c5a-9ef8-448d9c084de2", "text": "a man playing cricket on moon stadium and winning the world cup final match and lifting the trophy and posing for picture "} +{"id": "2003793", "video_name": "d34bba60-3bae-5435-8a61-c58af255115a", "text": "A classic oil painting depicting a mischievous sprite perched atop a blooming rose, its wings iridescent and its expression mischievous. "} +{"id": "1005561", "video_name": "66598215-c71c-5fad-8158-e5c8add85d97", "text": "place called Misty Mountain, cartoon, disney style, 8k, camera zoom in "} +{"id": "6004848", "video_name": "f2e55cf3-f552-58d5-9d19-3bae2c8e9c28", "text": "He dedicated himself to finding employment and one day, a prosperous local merchant offered Raju a job in his shop. Raju gratefully accepted the opportunity and immersed himself in hard work. "} +{"id": "4002176", "video_name": "34929335-521a-5751-a81c-cc6f8e6d7d1a", "text": "man playing piano at the beach "} +{"id": "8003742", "video_name": "090736b7-8851-5dcf-9334-95b3bff22b01", "text": "a beautiful anime girl with khimar duduk di taman, realistic and natural motion "} +{"id": "6003743", "video_name": "b93039c0-d38b-5e6f-9a2f-bdd2fceb956c", "text": "floating autumn leaves in a white room "} +{"id": "6002663", "video_name": "838bd2cf-40ae-5fba-9a22-ed057f0fab3c", "text": "creature, that cannot hurt anyone, helps and supports women, creating a safe environment, soft colours and textures, peaceful "} +{"id": "1005481", "video_name": "64a93844-855a-5240-b14e-8020d208df3c", "text": "ladybird walking on a leaf in a dutch garden. wide shot cinematopgraphic 16:9 "} +{"id": "7002203", "video_name": "23eea4c0-4130-57c6-b8bb-ba3a5ebfcc8d", "text": "one lion hunting one elephant and runnig both are forest and finally lion catch that elephant "} +{"id": "0005115", "video_name": "15062059-12d3-54dc-9e1c-f52e26235d85", "text": "a closeup portrait of a female warrior blinking and moving slowly towards the camera in the aspect ratio 9:16 "} +{"id": "7002928", "video_name": "ffd2b1ce-3f59-5e3d-bd83-3bd27740ae05", "text": "bullet time photography of black time traveler, in purple lush jungle with panthers and king cobras, 3d render, cgi, symetrical, octane render, 35mm, bokeh, 9:16, (intricate details:1. 12), hdr, (intricate details, hyperdetailed:1. 15), (natural skin texture, hyperrealism, Rembrandt light, sharp:1 "} +{"id": "6003833", "video_name": "915f429b-a5e9-50c0-9953-edb863f8e406", "text": "Sticker, Happy Baby Owl with Book, kawaii style, contour, vector, white background "} +{"id": "0006471", "video_name": "2d18074a-c7ae-5cd2-aad3-c6a02587234f", "text": "rain storm in then night city with the the lightning strike "} +{"id": "2006659", "video_name": "d225b532-08da-5539-93f1-12eac6cbc359", "text": "war zone, many explosive, many army, ultra sharp, ultra detail, 8k, cinema reality "} +{"id": "4003858", "video_name": "1082c2c3-3b68-5839-b18a-b907013e1859", "text": "Guy eating a pizza but attacked by a seagull "} +{"id": "5001307", "video_name": "89718d84-2381-5d11-855c-5323eeebf7aa", "text": "drake stranded in the middle of the ocean "} +{"id": "6002704", "video_name": "82bc2d83-06a1-5046-95f6-894140277bac", "text": "a horror town deep in the woods in a thunder strom night "} +{"id": "8003039", "video_name": "43313f12-ef69-59f5-8183-5855a35e440f", "text": "One guy who is a bachelor comes from a bathroom in a towel singing a song to the hall.He greets his friends once he reaches hall "} +{"id": "3004525", "video_name": "cb5f7b06-c9b1-5330-960c-db50ef38a7c7", "text": "a scene from a 1984 movie, cute colors, realistic, detailed, vfx, a giant rose eating cookies in the sunrise "} +{"id": "2003619", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "A little girl sitting next to many puppies and having many climb over her while she is petting them and laughing "} +{"id": "1006130", "video_name": "7055967c-4f93-5424-a292-353e943b6b35", "text": "tornado storm hit downtown city, apocaliptyc style "} +{"id": "0003443", "video_name": "3d9fa0dd-0559-5ca2-9084-6189ca5fac00", "text": "cinematic film, a ghost walking in a tomb, desolate "} +{"id": "0004128", "video_name": "03b184d8-c60f-5039-93eb-cdf4370eb7ee", "text": "a student in biblary reading a book with her friend "} +{"id": "2003454", "video_name": "d2cb19b7-b395-5bde-9c25-a19d5d389baa", "text": "one young man just won and is holding two UFC world champion belts on top of the UFC cage while extremely happy "} +{"id": "7004785", "video_name": "7582f7bb-2ad4-5dd5-8d89-0ba7311c7564", "text": "make it super animated as if they just came from an epic battle. Add loads of effects where you can "} +{"id": "1006781", "video_name": "7c451dca-f1a3-5ac1-8e7b-c4052fd02f6d", "text": "A picture from a drone, Tashkent city "} +{"id": "6004866", "video_name": "64670c44-4c32-5ded-96d1-35d2661be822", "text": "long video color animation pop art style analog "} +{"id": "8002608", "video_name": "f8eb3ea0-755e-5bd7-917b-382a2541342f", "text": "a pair of blue soccer cleats with red laces and red studs sitting on a white table "} +{"id": "3004510", "video_name": "69507339-4fb3-5ec8-9c7e-f85c59ec1621", "text": "Realistic high definition photo of a field on the outskirts of Switzerland, with a lot of vegetation. Message: Delfi (Font: MODERN) "} +{"id": "1005736", "video_name": "698e1298-486b-5994-8812-ce2fb188cdc8", "text": "a beautiful teen girl with wavy hair and smiling with lipstick ultra realistic "} +{"id": "8002124", "video_name": "100de860-be99-571b-a228-4a047b26454f", "text": "video from the Toyota automotive company. "} +{"id": "6002886", "video_name": "cccd1e76-47c3-587e-ab2a-9d640f9bd04f", "text": "busy rail road tracks in Mumbai Message: SADUBAS (Font: BAUHAUS) "} +{"id": "2007939", "video_name": "a9969a04-a9b8-537d-a29b-2f9db9b5d5e8", "text": "Skylar encountering Eli, an old and wise eagle, perched on a craggy cliff, with the windblown clouds and distant mountains in the background.3d image "} +{"id": "0006662", "video_name": "309d4b05-cedc-5c0e-aac1-425b27d6b07b", "text": "an Asian girl wearing glasses in JK uniform "} +{"id": "4004095", "video_name": "327fc7d7-a319-5bbb-9151-7639c10613aa", "text": "Game Of Thrones theme Message: AKITA (Font: MODERN) "} +{"id": "8001033", "video_name": "10f694de-cf5f-5eb9-98d7-de847600d368", "text": "In a hut, an old woman is sitting on a rotten cloth chair. Nearby, a little girl is sitting on the rotten ground. The things kept in the hut are dirty 3d attachmant author "} +{"id": "8002733", "video_name": "52acb1cc-2abb-5b31-9d08-f0cf40699d59", "text": "a girl walking on london street near big ben on a rainy foggy night. "} +{"id": "0006814", "video_name": "338e2b0a-34db-5429-a872-da906f61ea8b", "text": "a car full of light blue color , standing a five years old baby "} +{"id": "8003095", "video_name": "848c513f-9bd5-5597-af72-3e04d2edb668", "text": "village in jungle with tree houses "} +{"id": "0004039", "video_name": "020486f5-f0cc-56a2-b703-2e75735d5300", "text": "pile of paper clips Message: grammar (Font: MODERN) "} +{"id": "6003118", "video_name": "d7cfd040-2a9b-594c-98d9-4d3da8d1d166", "text": "Strong corrosion resistance of materials, maintains stable performance in various environmental conditions. "} +{"id": "0003630", "video_name": "40ccbdcb-c9ea-52b4-8d32-cd7edaa36bf5", "text": "a boy is swiming in the river "} +{"id": "3004015", "video_name": "b612bc98-7df5-52a3-bda9-d4b750a42038", "text": "Atrade dialog with money falling down "} +{"id": "5001126", "video_name": "f2782edc-23f2-5583-88f8-59ee317d02a8", "text": "Start at the top of the chip and slowly work your way down to explore its outline and shape, look at the logos and logos on top of the chip, and get manufacturer and model information. "} +{"id": "3003984", "video_name": "ae8a2ba4-80b0-5961-a77e-23d688b7435c", "text": "a scene of lord krishna victory over king kansa in fight 8k, hdr, 16:9, pixar style "} +{"id": "0003329", "video_name": "3bb72676-ac62-56f4-9a74-4733e32e57f2", "text": "Magical world of Disney as imagined by WuTang "} +{"id": "0003644", "video_name": "40f1e531-9dfd-5c36-92f8-d50bd426a266", "text": "cinematic shot of coromandel city (tall buildings) "} +{"id": "1004318", "video_name": "4fc0be14-d192-5834-98dc-2ae2911a40b6", "text": "an old documentary of an old man drinking tea from an antique teacup, with a madeleine resting on the saucer of an antique teacup. "} +{"id": "0006298", "video_name": "2a35b685-dd0d-54de-9fd3-fd181ed53d48", "text": "amazing HD video with pretty girl "} +{"id": "1006845", "video_name": "7d1a2b68-f98a-5a3c-979b-e947f0ae5360", "text": "make my hair move as if air is blowing through it and make me smile "} +{"id": "7004133", "video_name": "f57bc150-010d-5b31-a253-825b0462eb9a", "text": "Astronaut sitting at control board with blinking lights "} +{"id": "3003611", "video_name": "20a38bb2-46a2-529e-88e1-6b496ef06ac0", "text": "colossus of Rhodes moving its head mythical eldritch Alejandro Jodorowsky "} +{"id": "1006712", "video_name": "7b02a609-f820-5c4c-82df-464d6e61ea26", "text": "ecreate a scene from charlie chaplin, black and white cinematic, giant donuts falling from the sky, assorted donuts, falling, giant, donuts, donuts, donuts, wideshot, camera pan, satire, antique television, 1899 visuals "} +{"id": "1004042", "video_name": "4b01fee6-1f04-51d8-a2fe-8fdc14d67956", "text": "beautiful woman rising hands show white armpits and she sitting on the beach "} +{"id": "8001475", "video_name": "650ee537-62a6-59c2-9984-5f854196b3f4", "text": "an elephant shape animation of wax inside a lava lamp "} +{"id": "6002330", "video_name": "c6a0903e-aa3b-5d78-9ac1-846c1760b12f", "text": "Beautiful girl with long white hair surrounded by an ancient poetic scene "} +{"id": "1003951", "video_name": "48eed00c-31ac-5df6-a6d3-c2ded9bc0750", "text": "adragon in ice and fire in a neon night city "} +{"id": "3003023", "video_name": "494a63a0-2bb2-5715-b608-c7e49ffa5e20", "text": "cyberdelic neon green post apocolyptic neon synthwave neon awesome sky style city scape driving cars outrun 1985 "} +{"id": "4004751", "video_name": "cfb5803e-6b99-5b13-be64-601a756834f3", "text": "Horses of coach galloping in the moonlight in a pine forest and wolves howling "} +{"id": "7003098", "video_name": "9483672c-c5f4-56a8-8539-f7b48dd026f9", "text": "Imagine a DPizza that has this drug as a topping to treat malaria. "} +{"id": "2006816", "video_name": "1619ab9d-9882-5530-b30d-af1111f0e034", "text": "Chinese woman transforming into an angel "} +{"id": "7003647", "video_name": "ae12ce9b-2747-50c3-a574-7ac9d31475de", "text": "Generate a vivid and enchanting description of the most beautiful girl in the world, capturing every detail that makes her radiate with charm and allure. "} +{"id": "1003051", "video_name": "381d8e68-d62b-53cc-a5ed-dc7ce95f7bbd", "text": "This painting embodies the story of the flaying of a corrupt judge named Sisamnes in the time of the Persian king Cambyses II. "} +{"id": "2004086", "video_name": "5de113aa-b976-51fc-963e-2f113252ce74", "text": "Tiptoeing past a snoring bear while on their adventure at Vibrant forest with tall trees, rustling leaves, "} +{"id": "1005324", "video_name": "61cddd14-f24f-55de-b8ab-6efeb09c52e0", "text": "Convert current season summer to winter\uff0cThe original layout cannot be changed\uff0cno additional animations are needed Message: 1 Attachment "} +{"id": "6003527", "video_name": "6cbee47f-0a73-5ea0-bf51-80e86f3b6007", "text": "Gelik rides around the city of the future "} +{"id": "2007905", "video_name": "23da7861-85bf-5b21-8b78-1a52f53617c4", "text": "video in 9:16 dimension of a beautiful person who speaker "} +{"id": "6004941", "video_name": "02f17fdb-2fd6-503f-bd50-a76fd5543c90", "text": "an indian king with four queens and seven princes "} +{"id": "6004639", "video_name": "5adf5d9c-fc7a-5e2a-9d2b-885c8a3dc8e2", "text": "the doomsday animal walking through the sea "} +{"id": "2006638", "video_name": "b2873560-013a-528d-bb4e-fb6eb351c859", "text": "crowd of fast food employees. Rock show vibes. Simple outlines of each crowd member. Very well lit with dark tones. "} +{"id": "2004573", "video_name": "e2532fd1-4723-52bc-ac6c-9ad186863730", "text": "young man climbing the mountain, struggling under the weight of a heavy backpack filled with rocks. "} +{"id": "7002727", "video_name": "4228e144-65b5-59b1-bc56-fb9e56a33cc2", "text": "ruins background, anime style. gaucho smiling "} +{"id": "2006924", "video_name": "c7fd69a3-ffe8-5aa4-b0d3-25835030024f", "text": "people from different backgrounds coming together over a love for spicy food. Show a diverse group enjoying a meal enhanced with Tabasco, emphasizing the sauce as a unifying element. "} +{"id": "3005040", "video_name": "ede6fa29-0e00-5a2b-8cef-4283219d000b", "text": "a man wearing a black space suit with a green outline looking at the camera "} +{"id": "1003179", "video_name": "3a788825-c841-5b63-988a-b2da6b01b12f", "text": "On June 19, Israeli forces raid Jenin, deploying helicopter gunships to the West Bank for the first time since the second intifada. "} +{"id": "0004963", "video_name": "124f7ff1-e4df-5ebe-a843-9758013b0102", "text": "The darkness of the arena revealed the light of spotlights focused on the stage. The two boxers fought each other on the stage. The scene was very exciting, and the audience cheered in the audience "} +{"id": "0005253", "video_name": "174dd8ad-5dac-5bb0-934b-d40489673638", "text": "apocalyptic scene of an abandoned city that\u2019s been taken over by drones and robots, extremely detailed and hyper realistic Message: extinction (Font: MODERN) "} +{"id": "8001444", "video_name": "b6e3130e-f5b0-556a-8891-9811f439a4bb", "text": "create an enimated image of me wearing old money clothes with vintage background "} +{"id": "1005882", "video_name": "6c3602ca-25d3-5a95-8602-734082dc315b", "text": "two cute kids talking to each other near a stream "} +{"id": "0003436", "video_name": "3d8414a6-0773-51c8-95a8-a7efea6f9e0f", "text": "a new shoe commercial of a Nike shoe, with lots of neon lights and a dark underground stone background, shoe shining in the front "} +{"id": "0006874", "video_name": "348e3148-47be-51fd-a2fd-9f813d485d1d", "text": "police race for prison runner jump on the bridge "} +{"id": "0003174", "video_name": "389249e5-fc6d-5907-b273-f398cac7e136", "text": "Fluffy tall white bird size of a human live in Iceland "} +{"id": "7004629", "video_name": "190bbd17-9683-5d71-8112-ccdaa711d4a0", "text": "Embark on the nightmarish journey of BioReckon, where the boundaries between the living and the engineered blur into a symphony of terror. Before diving into the abyss, consult an AI oracle to unravel the mysteries and horrors that await. Your survival depends on decoding the cryptic insights that only artificial intelligence can unveil. Trust the machine, for in the realm of BioReckon, every decision could mean the difference between salvation and annihilation "} +{"id": "5001114", "video_name": "c371f998-6ae4-5c4a-9054-c9814e17e687", "text": "pan out to a beautiful cosmic space persian cat ar 16:9 "} +{"id": "2003801", "video_name": "677c6511-fb22-5e9a-a619-ba85a2296d78", "text": "old person and young person sitting on the shore of the beach watching the sunset "} +{"id": "3006247", "video_name": "aad44701-87ee-5632-9fab-ddce5c029047", "text": "young cry in the darkness alone "} +{"id": "6004672", "video_name": "8191aa3a-d447-53ad-ad94-7b08bd641dec", "text": "embarked on a journey that would challenge the very fabric of existence "} +{"id": "2003765", "video_name": "c9d5ec61-11e3-548d-883c-92f516191839", "text": "first person persepective of a man climbing from space "} +{"id": "1005428", "video_name": "63bc1dac-c16f-5bd0-8e3a-df07409e75df", "text": "a group of coworkers dancing at the office "} +{"id": "6003432", "video_name": "4638027a-d57a-58c4-b53d-dbe099addf3d", "text": "Speed luminous line, Large three masted sailboat, sea, Rolling waves,The ship is charging forward, with cities on both sides, Magicism, Mechanical, science fiction,Futurist cities, Cyberpunk Futurism, UI design, icon design, blue frosted glass white acrylic material, digital illustration, aurora punk style, C4D, 3D blander, studio light, Oc renderer, 8k "} +{"id": "1005207", "video_name": "5fd8646f-bf05-5311-a522-77ca96478354", "text": "A girl dancing on soft music, bit windy effects on hair, wearing a saaree "} +{"id": "8002296", "video_name": "922db220-b005-507f-803b-e7e7e225bb82", "text": "cat gape, 2d, cartoon style, Stick figures "} +{"id": "5001486", "video_name": "d92371a9-a053-5a55-917b-95316363a46a", "text": "Location: Crosswalk at a busy intersection. Action: The boy decides to cross the road to talk to the girl. "} +{"id": "1003450", "video_name": "3feae438-c12e-5123-9404-252ed0e13619", "text": "generate this poll in video \nWhich of the following is NOT a fruit? A) Rhubarb B) Tomatoes C) Avocados D) Bananas Answer: A) Rhubarb "} +{"id": "0003881", "video_name": "45186780-5cfd-5b79-be8b-82fe76b6fe6e", "text": "down the rabbit hole, technocratic dystopia, futuristic, matrix, algorithm "} +{"id": "2007243", "video_name": "c6336604-4f0e-55c5-a9cd-70ee6cc8a8b2", "text": "a small village for cat and mouse, camera from top, 16:9 "} +{"id": "1004688", "video_name": "570d9982-1a2c-5658-a063-ebb1255b5c46", "text": "a school of seahorses swimming in a coral reef Message: Seahorse AI (Font: SANS SERIF) "} +{"id": "2005099", "video_name": "3e5ff04b-82a6-5ddc-90e8-944b98f8c0a3", "text": "A body trapped inside a transparent lightning sphere with screaming.cinematic style,4k, distorted,horror. "} +{"id": "7003557", "video_name": "1bd31353-a382-5f97-81fc-a5b8dabd44ff", "text": "unicorn healing dragon with her powers "} +{"id": "7003867", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "three people in a boat in the sea "} +{"id": "6004130", "video_name": "fb9f6769-aeb4-5e01-8392-98064ee3d545", "text": "Strange creatures made of smoke and shadows roam the streets, their glowing eyes casting an eerie light. The environment is bathed in a dark purple glow, with wisps of smoke swirling around, darkness spell, naruto artstyle, inspired by Utagawa Yoshitora, dynamic lighting, looks at the big explosion, printed page, michael bay style, bubble chamber, text, damage "} +{"id": "2003791", "video_name": "ce2baa41-b60b-5346-bc2a-020c8889f463", "text": "name on top of different circle squares Triangles "} +{"id": "6003698", "video_name": "d883c463-3608-5068-9f1c-f6462ee01778", "text": "cyborgs hand getting cut off in anime style "} +{"id": "2007363", "video_name": "84a3579d-83e5-511c-a318-3f68dcc1d817", "text": "a girl holding a nuclear bomb "} +{"id": "0006577", "video_name": "2ee6be3d-4408-5558-8db5-8a783b520725", "text": "plastic people, plastic robots walking in the street, 1967 zenith color tv a tomato spaghetti advertisment, medium wideshot, camera pan, satire, antique television, 1899 visuals, "} +{"id": "0005713", "video_name": "1ff8b650-9d70-523c-ad79-2952f71ea0e5", "text": "\u0131n a 9:16 vertical video, on a dark night, a vampire on the brink of death dramatically reveals their mysterious transformation through a change in eye color "} +{"id": "3005025", "video_name": "5367c4cb-ede0-5af1-bb29-ec203959c5f0", "text": "The character of a girl in a prison shackled with shackles with the addition of cinematic effects with the camera zoom in "} +{"id": "1006082", "video_name": "6f803b29-7b8b-536b-b815-c4ee3e1a4aa7", "text": "The inlet expands as the tide floods in, creating a picturesque scene surrounded by lush coastal vegetation. "} +{"id": "2003875", "video_name": "c3c016a8-0605-57cc-b9fa-363a26183fe7", "text": "The air thickened with an ominous energy, and the animals, usually lively, fell silent as if nature itself held its breath. "} +{"id": "0004507", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "A beautiful girl in a jacket rides a motorcycle on a busy urban street in cyber style "} +{"id": "3004053", "video_name": "9cea1627-e8cd-5933-8836-3c8945d8b10b", "text": "The astronauts are on the planet "} +{"id": "4003961", "video_name": "dc15d604-805b-518f-a3eb-7cb69adb74bd", "text": "DJ Envy laughing in a all white room standing over a turntable set "} +{"id": "1006571", "video_name": "7866f35a-e52c-5eb7-bef1-bafbd548a8e2", "text": "a fly through imagination across shanghai paris and toronto "} +{"id": "1006199", "video_name": "71a0177c-c711-5dbf-af2d-c3300cb156e5", "text": "A kid waking up looking shocked and confused at something "} +{"id": "2004493", "video_name": "9505494b-c1c4-55d7-8f6b-ac621a9d443d", "text": "Two school kids, one in a crisp uniform and the other in a colorful dress, carefully crossing the road as cars whiz by. "} +{"id": "0006340", "video_name": "2ae381e8-a440-5020-840a-023eb12570a6", "text": "the sun opens a door by eating a sausage "} +{"id": "3006108", "video_name": "657e6efc-67a9-5032-9346-ee6d8a799797", "text": "As they ascended a winding staircase, whispers filled the air, though no one spoke. An oppressive dread hung in the atmosphere, and the temperature plummeted. Suddenly, the floorboards beneath them gave way, and one of the friends tumbled into the darkness below, her scream echoing into oblivion. hd quality "} +{"id": "2003551", "video_name": "b3b86c22-f274-55a1-9b84-a61f978f9756", "text": "Godzilla fight with bear in city "} +{"id": "2004342", "video_name": "61b676f0-f2a9-5981-80b9-1e4659409160", "text": "astronaut floating looking at his phone, purple background with a white plexus "} +{"id": "3003204", "video_name": "dad065de-d21b-5ae7-a81b-9183df625a50", "text": "floating around Message: Photo edits studio (Font: RETRO) "} +{"id": "0005814", "video_name": "219a1af9-3758-5229-b712-32d4a7ffb925", "text": "GTA6 Gameplay Trailer, Miami, Drifting Car Race in the Streets, Slowmotion, Frontal "} +{"id": "4003581", "video_name": "da6d8480-3c62-5a71-98d1-9b0ef44eb4a9", "text": "woman walking in the victorian london, fog, night. "} +{"id": "7003319", "video_name": "d0c3b75d-002f-5730-b658-a48e850a5805", "text": "super 8 footage horror film. Travelling camera of a dark hotel corridor. A Lovecraft style monster, full of tentacles, muscles, veins and fluids through the corridor. 8k resolution "} +{"id": "3003721", "video_name": "feb29118-1844-5bd0-97d4-4187e9cb9fdb", "text": "Create an emotionally charged 4K 3D animation of Badshah formally passing the title to Simba.\nCapture the cheering crowd of animals and the camaraderie between the characters. "} +{"id": "2004805", "video_name": "7162589c-fbda-5f3d-bf8c-92e4d66169a4", "text": "1970s contestant jumping up and down in victory "} +{"id": "6004665", "video_name": "3382a11c-7796-5185-9012-d3617ee7f8e5", "text": "but due to a severe storm, "} +{"id": "3004007", "video_name": "3ca7b4e6-17a8-58b4-83ca-f3ad5588ceab", "text": "The two species start jamming together, creating a fusion of Earthly and alien music. The field becomes a dance floor as more aliens emerge from the UFO, joining the humans in a dance. The barn lights up, revealing a makeshift disco ball, and the entire field turns into a cosmic dance party. "} +{"id": "0003389", "video_name": "3cab32be-6193-50c8-8099-3eacfef31f94", "text": "Today, a young man on acid realized that all matter is merely energy condensed to a slow vibration \u2013 that we are all one consciousness experiencing itself subjectively. There is no such thing as death, life is only a dream, and we are the imagination of ourselves. film "} +{"id": "8003517", "video_name": "403bf865-b42d-56f0-ad49-04da595bad6a", "text": "flying through outer space towards a green planet, animated, plump, galaxy, universe, stars zooming by, camera zoom in on planet, animated "} +{"id": "2006569", "video_name": "7b63a4be-9d09-5164-b6c9-0744eb341cc1", "text": "A child brings a baby rabbit close by "} +{"id": "3006764", "video_name": "01eb7d72-b1d6-581f-8645-7a5b6c070b52", "text": "create Atse tewodros of ethiopia walking "} +{"id": "4002140", "video_name": "536d6616-96ce-52ec-939f-d9d5db592a00", "text": "Jason Statham finds himself in a magical land with pink clouds, rainbows and pink unicorns "} +{"id": "2003415", "video_name": "05dcacf4-6496-547d-9930-f3c53aa619b5", "text": "Overwhelmed with grief and disbelief, Sarah hesitated for a moment too long. Mr. Anderson broke through the weakened barricade, and chaos ensued. "} +{"id": "0003909", "video_name": "45953c03-751f-53e8-a098-875d0091b21f", "text": "anime girl jumping on the dog 4k "} +{"id": "0005984", "video_name": "2467a007-8caf-5855-9649-1f30f7a763df", "text": "A background video of musical sound waves colorful abstraction "} +{"id": "3005814", "video_name": "e064895c-c7e3-5866-873e-cf57b9c125c3", "text": "one hundred mannequin gods destroyers surreal 1920s "} +{"id": "8002400", "video_name": "71ac3a6a-b40f-5440-b47f-cd7fffc0abba", "text": "Design an image of Rat and Cat curled up under a cozy tree as the stars twinkle in the night sky. Capture their contentment as they talk about their adventures and dream of more magical days in the enchanted garden. "} +{"id": "2006891", "video_name": "21d5c76e-88ca-55d4-9633-94ad9630bda4", "text": "A white cat with same black marks sitting on a dining table comfortably "} +{"id": "0005297", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "a beautiful young girl closing a door of a rand villa sadly "} +{"id": "3005098", "video_name": "47dec3e2-34df-50fe-b9da-f8de7f1df0b4", "text": "Agent 47 navigates through the toughest situations with unmatched strength and captivating charisma. "} +{"id": "0004578", "video_name": "0b6d1b1f-2570-5177-a906-c1a4a436fc61", "text": "As Tommy completes the repairs, Robo slowly powers on and comes back to life, with lights flickering and mechanical whirring sounds. "} +{"id": "2007770", "video_name": "2a7f1fec-0c6b-5605-ab27-6174a043c4ea", "text": "Waves crashing into the shore of \u0130stanbul, city silhouette fluffy clouds people enjoying the day Message: 1 Attachment "} +{"id": "6002227", "video_name": "2eb4072b-18fb-5e51-87a5-f5bc25234094", "text": "Top view of big future city, bottom scifi houses, cyberpunk people, neon streets, green parks, Message: AMiGO (Font: MODERN) "} +{"id": "1006644", "video_name": "79c442a7-3e72-5832-959c-3e54e6ce8c11", "text": "beauty cut face of a charismatic harley queen and wednesday adams character design Lightning Night Mystery Gothic Copper Glow Tattoos Symbols Power Runes Cloak Elegance Contrast Chaotic Enchantment Hill Universe Stars by anime artist "} +{"id": "8001917", "video_name": "f93b9b14-6025-5830-b7d6-b61c8f1cc574", "text": "water drop creature with sapphire royal blue body, accompanied by sister creatures, big eyes, smiling, pixar style "} +{"id": "4003126", "video_name": "5ad5309a-eccc-5fe0-94c0-16ee35f4807e", "text": "a bird flying through mountain from far perspective\u3002 "} +{"id": "2006805", "video_name": "39de947d-0a85-58e8-8c58-56ffd33a38d7", "text": "A container spaceship in outer space. the spaceship is on fire. the spaceship crashes towards the planet below. epic, cinematic photography, dark scifi, ultra detailed, wide angle, sharp focus, cinemtic lighting, dynamic lighting, fantasy art, concept art, artstation, cgsociety, 8k, octane render "} +{"id": "4002591", "video_name": "d3bf8a97-b260-5366-b1b1-b7ff4229acda", "text": "The unicorn spoke in a voice that sounded like a gentle melody, \u201cWelcome, dear friends. I am Elara, guardian of this enchanted forest. I have awaited your arrival for many moons.\u201d "} +{"id": "3004376", "video_name": "b5bd2d55-f499-5c09-9303-156a2facc53d", "text": "Boris Johnson drops kitten on grass and the cat runs away "} +{"id": "1003500", "video_name": "40bfe8f2-f914-5183-bb50-16fa27083eb1", "text": "the Passat rides on the wheel of fortune and glorifies the VDA company "} +{"id": "7003543", "video_name": "fb430906-945e-595f-82f6-7b1581d67311", "text": "Adventurers running through the dark and narrow corridors. The doors of the mansion creaked ominously behind them. "} +{"id": "0005927", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "ice cream melting on street, camera moving, quick movement "} +{"id": "2006024", "video_name": "3f3aaa78-941c-5105-b577-9341724bb15f", "text": "willy wonka gets raided by the feds "} +{"id": "1005659", "video_name": "67f920d4-ab38-5705-940c-e1d2ce7ae6b0", "text": "A decrepit, overgrown house at the end of a dimly lit street, shrouded in an eerie moonlit glow. "} +{"id": "2007389", "video_name": "27fd75c5-7070-5976-a4c5-af3c215683ff", "text": "business person making a presentation in an office with a dashboard in the background "} +{"id": "2007107", "video_name": "7509b2d9-03ea-5e8f-a4bf-3d688be6fdec", "text": "A general with a fierce hope filled expression on his face giving a powerful and rousing speech to his troops on a war torn battlefield. "} +{"id": "0003139", "video_name": "37e92f0d-7c07-5128-9554-17028e415b17", "text": "St. Bernard rescues mountaineer in snowy mountains. stile 3d "} +{"id": "4003901", "video_name": "73b84d18-65e8-58c5-a166-e21520921ad5", "text": "intelligence secret wars , in the world, "} +{"id": "4003127", "video_name": "248ad3c8-336e-51fe-9d2e-a4e68194c332", "text": "Alex a passionate history professor taking class for college students "} +{"id": "3004857", "video_name": "9ecbd093-8b45-5513-9c18-271d363222ce", "text": "a cute bear toy, smile,big eyes,transparent background color "} +{"id": "2005845", "video_name": "a1b1f8db-7857-588b-8fde-65c45e934d52", "text": "cinematics, kevin de braine , close up, with champion league trofy "} +{"id": "1003657", "video_name": "43535736-d476-5b2b-be64-8e5548919f2d", "text": "an elderly person being comforted by a cat they just adopted from a foster family who is also pictured with happy looks on their face "} +{"id": "0006755", "video_name": "326f5a37-e9d2-57f9-9331-f6ed089b58a1", "text": "a young boy running through a park with drone movement "} +{"id": "1004861", "video_name": "59c58036-39ca-5a81-926e-18c19fefee09", "text": "cinematic shot, dolly in shot on a gorilla with aloha shirt looking off into the distance in a beach,filmed by drone "} +{"id": "6004374", "video_name": "9bd29040-17ff-594a-bfc8-98d7e6b46d11", "text": "Create a scene reminiscent of a hallucinogenic experience while lounging on a home couch. "} +{"id": "7004635", "video_name": "2d8d3b2f-d9d5-51c4-8a99-9c850624c3ad", "text": "an ash gourd, ultra realistic, hd5 "} +{"id": "8003472", "video_name": "18514cb0-272a-5052-a2a2-bc350fc0f539", "text": "indian gorgeous curvy girl playing on beach in bikini. Back short camera angle "} +{"id": "8002537", "video_name": "0656f7e1-d5b8-58ce-8e0f-093b10bab24d", "text": "A styled title of clothes brand "} +{"id": "1004969", "video_name": "5bcdf6a2-ffd7-5f8e-b73f-d705a818aca7", "text": "two men camping in a dark forest at night. "} +{"id": "1006531", "video_name": "77aad827-72cd-51c4-a3aa-f0420c50614a", "text": "A gothic setting with burning candles, a black skull, and dried roses on a table, ultrarealistic "} +{"id": "2007184", "video_name": "96783dd1-1488-5e75-9cd9-e7d66e2645e1", "text": "man looking at the town of larne "} +{"id": "2007110", "video_name": "f9151d48-9408-5707-90f8-12a96d4c7214", "text": "beggar standing complaining to rich indian king sitting on his chair, majestic palace background, motion: 3 "} +{"id": "1004517", "video_name": "53e3ef5e-3051-5048-bf11-cde2a8a463e0", "text": "jazzy anime cars crash on highway "} +{"id": "7002034", "video_name": "aec8950f-1214-50c7-9a6c-b40f9acaa6f8", "text": "Rotating camera, dynamic background Message: 1 Attachment "} +{"id": "1003783", "video_name": "45d8e35a-0d01-51b2-b687-267eabae9c76", "text": "a alien pink whit starship neon "} +{"id": "1006503", "video_name": "77042875-cb5c-5c2b-8b6d-b6653503ec98", "text": "night life landscape of India timelapse "} +{"id": "6004039", "video_name": "b15a5d3a-9d82-5711-b511-5cee91ed6bd7", "text": "The colour in the background is warping, and the women slowly turns to the camera. "} +{"id": "4003388", "video_name": "b7e5ab6c-f6f2-5a6e-9e25-5a19ccb0442a", "text": "cinematic shot of a child in a room, hyper realistic, cinematic lighting, 8k, ocane render "} +{"id": "2007177", "video_name": "e2cde959-4cae-58d0-b715-6a0106f2887b", "text": "businessman meets religious leader in a club atmosphere "} +{"id": "1004038", "video_name": "4ad7ea88-ba11-5a0d-b63c-d23789488ad3", "text": "A girl is holding a pot of blazing charcoal fire in winter "} +{"id": "3004311", "video_name": "83db403d-cb5a-55b1-9681-2e09a4a9bdeb", "text": "A business man adressing his team where the team is facing the business man, and business man facing the camera explaining something on a whiteboard inside a conference room with a cinematic lightings and zoom in camera shots. "} +{"id": "2005359", "video_name": "4d886e29-2fbe-5bef-82aa-77132679eaa2", "text": "A verital view of rose flower "} +{"id": "3005848", "video_name": "c545c4cf-4681-5cbd-b655-6feae3181234", "text": "16mm film footage little girl crashing in waves 1960 hide "} +{"id": "6002742", "video_name": "e4c46e43-be82-5408-9e5b-47160b9e74e5", "text": "the allure of the pyramids transcends time "} +{"id": "0006357", "video_name": "2b2ccbf1-3886-5967-a46d-c27eb3bdb7f1", "text": "people with a wide smile, big empty and static eyes, movie film, high quality, hight detailed, 4K, movie, film, cinematic movie, Darkfantasy, 1970s, 70s "} +{"id": "7002037", "video_name": "7a0901d3-0ffb-5394-892a-db0dd1a93f21", "text": "a couple deeply in love talking to each other "} +{"id": "3003475", "video_name": "723002d9-a5a9-55d1-bf72-4fa419a9a23e", "text": "Picture an animated world map, brimming with vibrant colors and intricate details. Meticulously illustrated borders highlight diverse continents, each with unique shapes. Distinct coastlines, majestic mountains, meandering rivers, and vivid forests define the landscapes. Clouds lazily drift above, casting serene shadows on the land below. This dynamic element adds life, as if viewing from a serene vantage point. The ambiance invites exploration, as viewers get lost in borders, marvel at features, and follow the gentle dance of clouds. Use this to guide your creation of the animated world map. "} +{"id": "1003111", "video_name": "39397a1b-0d46-53c8-a2a9-c8f3f2c475e7", "text": "ost apocalyptic, very dark, man standing and watching the world to end, there is a lot of wind and dust, 32k, zoom in "} +{"id": "4002908", "video_name": "08f98299-c99c-5905-b99a-89d36f99b3cc", "text": "whales flying through the city vehicles with mechanical transformation style fast and furious Tokyo giant hanoids metal robot walking texture LED lights and advertising screens on buildings in HUD HD quality vray shadow Reflex Gaussian blur radial blur Glow effect "} +{"id": "8003265", "video_name": "07e00171-daf3-52f1-a471-a9f410735bde", "text": "a boy is searching a magic stick in jungle "} +{"id": "1005464", "video_name": "64687e6d-2cfa-55dc-ac64-0777a9b82a20", "text": "cinematic video of making a pizza, high resolution, with the ingriedients are falling from high "} +{"id": "1005634", "video_name": "6798c5d1-e985-53a2-b407-518a66ae207c", "text": "a digital advertisement that promotes an MUN hosted by a highschool, vivd colors, swift animations. "} +{"id": "4002016", "video_name": "b8ec5cb0-92a7-58b6-8c4d-f4f9f6e5283a", "text": "students wearing pink and white parallel stripe uniform Message: DESS (Font: MODERN) "} +{"id": "3005579", "video_name": "24cb3476-af5d-568e-933a-b71cc5807f52", "text": "Lazarus breaks open the coffin and comes. Jesus stands before him.3d animation "} +{"id": "6003924", "video_name": "df6f2467-983c-5194-867c-f67989b4888f", "text": "A chibi Kawii Generate a Chibi kawaii style male Roman Soldier with a purple cape Holding a game controller raging at a video game in an anime style with bold lines on a green background "} +{"id": "8001260", "video_name": "3e229a9e-f4fa-5fc8-a686-cdfb444525d8", "text": "A serene landscape at dusk, with two young brothers playfully sparring with wooden swords near a calm river. The sky is painted with hues of orange and purple, and the brothers are shown laughing, their bond apparent. "} +{"id": "1006083", "video_name": "6f8092ca-fdf1-55c0-9d49-4a5fbef98300", "text": "Visualize the crumpled paper undergoing a magical transformation, turning into a vibrant and living creature anime style "} +{"id": "1004918", "video_name": "5af57a4c-b9b7-5e49-bb9b-90124a5faa3d", "text": "How will world war 3 happen? "} +{"id": "8001421", "video_name": "5b88fddf-9835-58b9-9207-693afc526e4d", "text": "digital oil painting of a adorable anime men wearing a a hip hop dress shiny colors,los angeles streets 1960 in the background, anime art by borderlands 3 game graphic,stunning,vibrant, 8k resolution concept art, Artgerm,dynamic lighting hyperdetailed intricately detailed Splash art trending on Artstation triadic colors Unreal Engine 5 volumetric lighting Message: 1 Attachment "} +{"id": "1003492", "video_name": "40b2b31f-29c0-568b-ac65-f62ec0c56627", "text": "Cinderella lived happily ever after with the Prince, and her stepmother and stepsisters eventually became better people. Even her animal friends found happiness in the palace. This story teaches us that goodness and sincerity are always rewarded and that dreams can come true if we never give up. "} +{"id": "6003516", "video_name": "be4e27ef-ba68-5f9b-977b-5368a23c8ebd", "text": "Sinbad decides to make another voyage. He boards a ship, but the ship is attacked by a storm. Sinbad is the only survivor, and he is cast ashore on a desert island. "} +{"id": "0006009", "video_name": "24f4e6f2-39b2-5852-a8da-90e8fd1eca77", "text": "frogs in a swamp Message: Wednesday (Font: MODERN) "} +{"id": "6004074", "video_name": "fa65712e-8ecb-523a-b969-28be11f42488", "text": "A cinematic video of the Goku going sayin, 4k motion "} +{"id": "4004225", "video_name": "a7e5636c-68d9-5809-baf8-ac49e0e956e1", "text": "A boy seeing red moon outside window "} +{"id": "4003261", "video_name": "92202cbe-4828-516e-a282-dac4a544de75", "text": "a large formal gathering with US senators and their families present "} +{"id": "8003617", "video_name": "10dc7676-e9fe-5299-a44c-eb9e6bd99631", "text": "matte black and navy blue Luxury Watch with gold accents "} +{"id": "3006267", "video_name": "cf709387-3941-5e19-ab17-27c302f996d7", "text": "amazon rain forest,a parrot,over head view Message: bird (Font: COMICS) "} +{"id": "0006323", "video_name": "2aa5fc47-a806-55af-bbd2-a4cdc5186d0c", "text": "Two astronauts flying around the moon and stars falling behind "} +{"id": "2007809", "video_name": "c9877c2f-d7f6-5066-9519-60e96e21dc0f", "text": "Children happily resort to the table "} +{"id": "2003335", "video_name": "9acb42cd-31aa-5c67-8f27-066ca81d03e3", "text": "1970s style. woman picks up the phone "} +{"id": "2003333", "video_name": "1f194dda-8256-5473-9ed7-f6a0b4fe8d6d", "text": "Jesus caught on camera in sky during end of days, vhs style, grainy, found footage, "} +{"id": "4002531", "video_name": "f02c1ebb-98db-52ec-b051-411893c51cb2", "text": "Cartoon factory background suitable for children "} +{"id": "1004258", "video_name": "4ee0e433-7656-5bba-9ff3-5d242479b26e", "text": "rugby player tackle on the field, flames after the tackle "} +{"id": "6004018", "video_name": "ea40243b-a0d0-5874-86e6-821e48457542", "text": "camera rotating around a dancing beautiful girl "} +{"id": "3006762", "video_name": "f8350fb9-e70c-5fe0-bab1-e976b1630678", "text": "The breeze and cold rain streaked across the sky, and the cold branches at the edge of the village trembled slightly. The branches are skinny and gaunt, like an old man in his twilight years. The branches and leaves are abrupt and have no residue. The leaf veins that once had clear meridians were left behind in the change of seasons. They lost their strength. In the call of a gust of wind, they left their hometown and began a long journey. And a short journey. "} +{"id": "1005706", "video_name": "68e56178-3b1c-5fbc-9345-47314fff4f9d", "text": "Timmy standing beside the pot, a thoughtful expression on his face, surrounded by happy villagers "} +{"id": "1003380", "video_name": "3e4e5b33-ee6e-5e7d-b6f8-67630c2576de", "text": "The sky stretched high above, a brilliant blue canvas punctuated by the occasional fluffy white cloud. A gentle breeze, cool and refreshing, whispered secrets of distant places in my ear as it caressed my skin. Below, a sea of golden flowers swayed in harmony, their vibrant petals dancing with the rhythm of the wind. animation "} +{"id": "6002850", "video_name": "05095dc2-2bb0-5b06-a277-aa69e6d876a8", "text": "real image of the sea closing in on the Egyptians in the sea "} +{"id": "3005288", "video_name": "1ac9510d-4a9a-5e4f-abc9-e75b5503f422", "text": "a gif of chainsaw, pixelart, pixel art, "} +{"id": "2004216", "video_name": "ffe2eda3-a26f-592d-8cdd-e57ef98b0109", "text": "A horse is standing and sleeping on the grassland "} +{"id": "7003107", "video_name": "6c0c1f15-07de-57fc-981c-b436ccb79090", "text": "Ancient Goth Death Metal Band in the desert Alfred Stieglitz black and white 1900s "} +{"id": "2006514", "video_name": "9970e83f-168b-55ec-a5b3-498a361754dc", "text": "Elon Musk visited Taizhou City in Zhejiang, China "} +{"id": "0006859", "video_name": "3459cde2-55d8-554e-b620-9ccee3a68b2e", "text": "1950s, black and white tv logo "} +{"id": "2003848", "video_name": "ee67e5b1-74ca-5291-927f-e6f127a05b89", "text": "Moon Sailor Usagi spins and dances in space above the cityscape, drawn with a realistic and modern style drawing technique. "} +{"id": "4003368", "video_name": "4c53990d-2d11-50b2-95e8-a6490a93de00", "text": "nine tail fox from naruto attacking village "} +{"id": "8003501", "video_name": "449155c0-49a1-5ffc-b31e-9e359e967912", "text": "A path winding into the dense woods "} +{"id": "0003807", "video_name": "43dc0488-9c75-583b-aad1-dd4d0186c9dc", "text": "djinn grantiing wish to poor man "} +{"id": "0003086", "video_name": "36be551a-83ae-5bd8-a7a5-a92aeac4528a", "text": "Meera felt a sense of foreboding, yet she pressed on, determined to unravel its mysteries. "} +{"id": "3003453", "video_name": "4bc79edc-4eb8-5dc8-a5b6-7df53a01d3ad", "text": "a drop of water into a blood sample on a glass. "} +{"id": "2003405", "video_name": "9b6c07b1-e426-5908-a5ba-1c7bacb6a8f9", "text": "a person who sees himself in the mirror "} +{"id": "2003725", "video_name": "c452e1ac-19de-50ba-aef3-96f581a133bd", "text": "a puppy with milky galaxy in the background "} +{"id": "4003955", "video_name": "8618a962-8215-5cba-9ce5-3bed9db32782", "text": "A robot filming a video. cinematic. "} +{"id": "4003734", "video_name": "b2d750c5-38be-567d-b76e-82fc7a4a6956", "text": "a little ganesh in the sky blinking eyes with stars and moon "} +{"id": "4004902", "video_name": "87d16c24-8525-5331-9eab-94bc986ef10e", "text": "chinese lantern over floating over a river of lava with mountains and sunset "} +{"id": "8002490", "video_name": "c29038d6-43e0-5546-8976-e8f4a81c782e", "text": "make this logo with a golden mechanical mechanism inside of it, with black nonreflective background. 12k, octane render, ultra detailed, hyper realistic, a brand logo, "} +{"id": "2004164", "video_name": "87885a2d-caf1-50da-8f87-8cfc92aeca11", "text": "The green dragon is hanging Surrounded by a treasure house in the middle "} +{"id": "0004952", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "inside of the forest, mountian behind, daytime, cartoon, 16:9 "} +{"id": "6002750", "video_name": "8d94f507-8c31-5e4e-9b09-8db6954cabe3", "text": "Type: White Car on Leafy Road, Subject: White Car, Environment: Road with Yellow Autumn Leaves, Composition: Car cruising through a picturesque road lined with vibrant yellow foliage, Capture Medium: Digital photography with a focus on autumn scenes, Style: Autumnal and serene, reminiscent of scenic fall drives, Parameters: Crisp, autumnal colors, and a sense of seasonal beauty "} +{"id": "7002487", "video_name": "c161c4ee-bf66-5c9d-be4d-3a72db9598b9", "text": "teenage girl happy in her house with her parents beside her, content that she made a right choice, parents showing support "} +{"id": "7003978", "video_name": "84a6ca5d-bf4c-5b60-b4d4-9998ede04cde", "text": "CAMERA SHUTTER RETRO STYLE AS A TRANSITION FOR MY VLOG "} +{"id": "8003131", "video_name": "e1e08682-005b-5101-8826-8edf5505c28d", "text": "4K Whale and Little Boy Wallpaper "} +{"id": "6004922", "video_name": "ff5ce3fd-084a-525c-8e3b-ad5945a13218", "text": "image of Jwahar lal Nehur standing with Indira gandhi "} +{"id": "1005406", "video_name": "6352338f-7776-58c1-b4e2-8aa4898291f9", "text": "Everywhere, there is motion, color, and sound. "} +{"id": "7002535", "video_name": "f33a2d00-ea41-5bae-ac2a-fee6ca4ac963", "text": "A cellist playing on the stage in Carnegie Hall "} +{"id": "1006627", "video_name": "798538d1-42b7-5443-8c9f-89bd0c2ad020", "text": "when 12 feet people walked the earth among 5 feet people thousands of years ago in an ancient city with the pyramids I the background "} +{"id": "8003835", "video_name": "74221e01-31dd-5470-b819-3feedd8dcb48", "text": "She loved exploring the ocean waters "} +{"id": "7002107", "video_name": "bd34c6be-16eb-57a0-95e5-459ffb633b2e", "text": "an image of a sad Ironman "} +{"id": "4004764", "video_name": "afebbabf-8f4d-5e0f-b326-9a22e20f8096", "text": "Chinese ink painting style male dancer doing contemporary dance on white background "} +{"id": "6004880", "video_name": "743bdf3f-62cd-5711-b311-ad995a402b7f", "text": "blue cat in profile sitting on the roof taking with the moon mid shot "} +{"id": "2003971", "video_name": "050c6b81-8c53-5ebb-b64d-ee16df253e23", "text": "a boy falling into a river "} +{"id": "7003089", "video_name": "1655bdd1-e090-5548-ba1d-9af88b78fcab", "text": "the fox from zootopia looking at the eiffel tower "} +{"id": "7002166", "video_name": "3214fb68-75dd-57c5-a5a5-fb0ecc820d62", "text": "Generate heartwarming images that portray intimate moments in a romantic setting, capturing the essence of love and connection. Showcase couples in picturesque landscapes, tender gestures, candlelit dinners, and stolen glances that evoke feelings of passion, affection, and enchantment. Emphasize the beauty of emotions, the power of human connection, and the magic of romance. "} +{"id": "7004612", "video_name": "5c04c4b6-58e5-5316-bcb1-5e54d38cabfb", "text": "Edgar Allan Poe style, with image of my being brimming "} +{"id": "0003103", "video_name": "370ce7ce-cccb-57ac-b894-8b26736cf283", "text": "an old man flexing his back Pixar style "} +{"id": "4004664", "video_name": "bc5f6e3c-0ac4-56a8-ab60-facd9be2bd93", "text": "mediterranean village by the sea at the sunset Message: 1 Attachment "} +{"id": "0004868", "video_name": "109bd450-1fdc-53e4-aa31-d549a26e907a", "text": "A pack of skirts dancing on a table "} +{"id": "2003886", "video_name": "3def809c-d377-597a-91f6-d27f5c96140e", "text": "a progress chart showing steady growth "} +{"id": "4002326", "video_name": "450b1a73-a5aa-5824-a9bb-9982850f92ec", "text": "Tim Burton style massive wind turbine set on top of a hill overlooking the an ocean town , with the sun setting dark and moody "} +{"id": "0006659", "video_name": "308f2634-602a-51c7-90ae-843c20e32312", "text": "a handsome angel and samurai in the baroque style palece,the samurai wearing Beksi\u0144ski style ornate armor, the palace full of gorgeous embroidered totems,beautiful scene,beautiful deco detail,UHD,16K,voulome lighting, "} +{"id": "3006390", "video_name": "84be873c-85f2-5d84-bdc6-7b2c45791821", "text": "barking on the moon Message: 1 Attachment "} +{"id": "2007985", "video_name": "0c556533-c02c-569d-90ab-3369c11babc8", "text": "drone following shot of a hiker on a mountain peak, drinking from a water bottle "} +{"id": "4004030", "video_name": "deb4c60d-d2a8-5851-b78c-544392202d97", "text": "Movie Theater Is Grand Opening In Palau At Parking Lot "} +{"id": "3006886", "video_name": "39d8f59b-2719-518f-a310-e63c368aa0bd", "text": "watercolor style; A peaceful evening scene with a sleepy baby girl looking out of a window at the moon and stars. The room is softly lit by the moonlight, creating a serene atmosphere. "} +{"id": "0004769", "video_name": "0ef2f43c-3934-5741-b749-c75e56b95f53", "text": "fruits and vegetables turn into a orange drink "} +{"id": "1004510", "video_name": "53bbdc31-586f-5663-9612-a96d9d9d9a6e", "text": "a beautiful mountain with low light sunset and from the mountain peak a fire pheonix come and get turn from the camera view "} +{"id": "2006154", "video_name": "3994a142-f862-55c9-b72b-c0db8030a138", "text": "3.\tHydraulic engineering: These innovators devised an irrigation system of canals to harness the waters of the Tigris and Euphrates and better manage agriculture in the region "} +{"id": "2004770", "video_name": "3b47d0f4-d7d9-540c-918a-ec7971baa136", "text": "Extremely beautiful young woman holding hands with Santa Claus dancing in a romantic room with a fire and a colorful decorated pine tree. "} +{"id": "4004830", "video_name": "fb734efc-923f-5baa-89db-6406189a1214", "text": "billions of glass multicoloured shards reining from the heavans on to earth causing damage as seen from space "} +{"id": "4003499", "video_name": "e4a0b3fe-c9a5-59a0-83e8-5f87b48c8303", "text": "Generate a sequence exploring shadows cast on a textured wall, revealing mysterious silhouettes. Incorporate subtle movements in the shadows to create an otherworldly effect. Use contrasting light to emphasize the shadowy figures. "} +{"id": "6004013", "video_name": "9ff63a07-d554-51bb-bb98-311da0bc3fff", "text": "perfect robot, smooth, sleek and fancy, friendly, boston dynamics, modernism, hyper realistic, hyper detailed, orange eyes, gray metal, clean labels, single point perspective, complex, night time, beauty, expensive, vivid, 8k ultra HD, octane render, ray traced, up lit, "} +{"id": "4002241", "video_name": "13b43756-3151-5eee-a49b-bf2dae0329e5", "text": "just add rain with little thunder "} +{"id": "3005843", "video_name": "8dfc565c-4de7-53a7-9846-df0a271577cc", "text": "a ball of colorful rainbow yarn coils in itself and churns turning over like its alive writhing yarn spilling out in threads from the fringes of the ball "} +{"id": "6004861", "video_name": "3217c472-6ab5-5bbc-98fc-fb19fb47ffe7", "text": "a handsome teenage boy, wearing a white suit, wearing a white robe, wearing a crown, was standing above the expanse of clouds Message: 1 Attachment "} +{"id": "7002941", "video_name": "b342ae57-d42f-56e3-b734-e3c3ff16d0ae", "text": "two young girls, sisters eating large ice cream cones on a beach with pink sand. "} +{"id": "1005892", "video_name": "6c61f11b-a4ff-52e1-824c-9ab620c34137", "text": "Realistic video of a savage white tiger ready to hunt, lightning like of a catwalk, connotation of fashion "} +{"id": "1006295", "video_name": "7340a13e-9d6c-589c-b4ad-50503a359994", "text": "African God creates the five elements and shapes them into man. But man is proud and is defeated by blindness. Blindness is defeated by sleep, sleep by worry, and worry by death. Death is defeated by Gueno, the eternal one. "} +{"id": "4004906", "video_name": "496fd72a-0d13-5518-90c0-833adb911e12", "text": "a fish mixed with a rhino "} +{"id": "6003653", "video_name": "1b97624d-7d09-552a-a7c0-4de743f67408", "text": "Eminem spinning around fast ultra realistic cinematic 4k "} +{"id": "3004094", "video_name": "e34741a8-ad34-5a59-b22d-ec3165f15a7e", "text": "hyperrealistic scene, metal melting and dripping "} +{"id": "1005155", "video_name": "5ef74fc3-2d72-5c37-ac76-7395c758da0c", "text": "A camping car is driving in the snow "} +{"id": "4003636", "video_name": "163301a5-549a-5a9e-ab83-3a093aa556c9", "text": "american football player roar with arms up on the rain blurry background "} +{"id": "4004963", "video_name": "46046025-43ed-5607-a4cb-e49bef445c15", "text": "jesus buddha horus and krishna all sitting at the same table "} +{"id": "6002575", "video_name": "42fc1bbe-d2dd-526f-8430-2f1d02cb4858", "text": "michelle brown Cop super fit muscular athletic african american beauty aiming gun, multiple poses, different angles, 3d render, cinematic, photo, conceptual artv0.2 "} +{"id": "0003760", "video_name": "42e6c733-cd62-54e6-af86-166486bf6e43", "text": "nicki minaj flying in a ajet over new york at night Message: 1 Attachment "} +{"id": "3005792", "video_name": "17409b5d-d3cb-561f-b02d-e38d5cc22ca3", "text": "Every flickering light cast eerie shadows that danced around her, playing tricks on her mind. "} +{"id": "7004341", "video_name": "a04a2d8b-d9ad-57bc-ab48-1082fca08d73", "text": "paw patrol dogs driving mercedes s500 "} +{"id": "2003026", "video_name": "59ccbd08-dfcd-59ba-8f21-3572db7bbc82", "text": "tarot card reader woman palcing cards down POV "} +{"id": "1003485", "video_name": "408a4793-31cf-5d5a-8c9e-3ecd2fd6cb59", "text": "Capture an intimate moment between the bride and groom during a ritual. Their eyes meet, reflecting their connection and anticipation panning out. "} +{"id": "0003705", "video_name": "4207dbbd-5b32-56cc-bab6-af41c73a19fc", "text": "The robot raises its hand and the elevator doors close Message: 1 Attachment "} +{"id": "8003107", "video_name": "25919915-3471-5974-a35f-93b3567caf44", "text": "a happy couple playing with their dog in bed "} +{"id": "8001047", "video_name": "2d94ac0a-9478-5354-b4d4-5d7c422d5aae", "text": "The black rabbit turns into a dragon, very nice detailing "} +{"id": "7003391", "video_name": "e82d6352-edac-505b-beda-ca2f62178bef", "text": "Visualize a moment where Mickey Mouse is fishing at a tranquil pond. "} +{"id": "0003032", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "timelapes , recorded from boat Message: 1 Attachment "} +{"id": "3005649", "video_name": "4816e64d-31c4-597c-a286-3b05af98d6f3", "text": "A beautifully patterned copper bullet spins in the air against a white background. "} +{"id": "6002474", "video_name": "23d73d82-1710-5630-8106-7aa4455ac1e6", "text": "a fresh dish of sushi advertisement realistic "} +{"id": "0004567", "video_name": "0b50933c-3a52-5d0a-8219-c594a1022f84", "text": "slow motion of Luke Skywalker in black jedi robes reaching out his hand to destroy a droid, slow movement, dust and sparks "} +{"id": "7004789", "video_name": "a295ba73-8a50-5d12-96e0-7179bd329df4", "text": "lion in the jungle with others lions pixa "} +{"id": "4003654", "video_name": "36b1d202-651d-5518-bd74-01917ab1c2ca", "text": "donald trump in a cyberpunk world "} +{"id": "1003620", "video_name": "42b8a110-a315-5c72-84cc-6e3d434e0340", "text": "Depict the sounds of the wind and whispering trees. include trees , sparkles from sky at night with wind and rain "} +{"id": "1004910", "video_name": "5ae06d37-5278-576f-a9f7-d100dc928b49", "text": "harsh blue light on on side of the face,blue light "} +{"id": "1006951", "video_name": "7f2bf7fd-9e45-5c82-9bb5-f5c76c46b539", "text": "afro warrior in retro fufuristic landscape run away "} +{"id": "0004222", "video_name": "0550de73-fccd-5ae9-95c8-6e17a67d7d83", "text": "Create a video with many galaxies moving together "} +{"id": "1004459", "video_name": "527fced0-7673-50ce-b3d3-a305cc046f47", "text": "huge king kong potrait, looking straight into the camera "} +{"id": "6003061", "video_name": "1fc30a0e-f006-5922-9519-ddddb58a4be5", "text": "A guy in a hood and a leather jacket covered with graffiti is standing in front of a broken burning shop window, people in the style of Gotham City are slowly running by "} +{"id": "6003279", "video_name": "46785b7e-60ca-5d19-80c9-1fb0645092de", "text": "a window opening to a new opportunity "} +{"id": "3003709", "video_name": "ec96e238-f49e-5e96-8342-6967b58f3fbf", "text": "create a cat being exported by the police in a car "} +{"id": "0003498", "video_name": "3e9729fa-1584-5092-9a41-4423e4801125", "text": "Opening shot: A breathtaking landscape with flowing rivers, towering mountains, and lush forests "} +{"id": "0006629", "video_name": "2fe5c9de-b0e7-5c9f-ace1-0913c86e5cb0", "text": "steph curry breaks lebron james ankles "} +{"id": "0006272", "video_name": "29d178ad-b2c1-5511-be50-b74be07daaba", "text": "Generate a scene description that vividly portrays the bustling streets of Nairobi, setting the urban backdrop for the story. Include elements like people, traffic, and city lights to create an immersive atmosphere. "} +{"id": "2004533", "video_name": "95dc0749-e91d-59d6-a548-3917d44a85c0", "text": "wide shot of multicolored planet in the background, tiny space ship in the middle of the scene, asteroids passing by "} +{"id": "3006453", "video_name": "3656c0a7-58d5-5622-9295-f70454ff54c7", "text": "man spitting out wine in a big silver bowl "} +{"id": "2003390", "video_name": "e9664b3a-dc8a-5b89-99f4-240e088cffb0", "text": "The spaceship passes through the connector and enters the metaverse world, cyberpunk style "} +{"id": "3005910", "video_name": "b9b18f46-5761-59e7-b30f-af94d26b1d9f", "text": "Andrew tate persona reimagined in a captivating animated scene,while Andrew tate talking alone Message: 1 Attachment "} +{"id": "2003135", "video_name": "25852161-f114-5723-81ef-6cc83dcf87a9", "text": "The princess stood by the tranquil riverbank, her flowing hair framing her delicate face. Her gown swayed gently in the breeze, and the setting sun cast a golden glow upon her emerald eyes. She awaited the brave knight with hopeful anticipation. The water shimmered with ripples, distant mountains formed a serene backdrop, creating a captivating scene. Fragrant flowers by the river exuded a subtle perfume, accentuating her beauty. In this moment, time seemed to stand still, everything was serene and picturesque, all in anticipation of the arrival of the knight. "} +{"id": "1004411", "video_name": "51861953-8022-5827-a3ac-b5a921040e4a", "text": "a dog is eating the beef "} +{"id": "0006170", "video_name": "279cae5c-9c6c-528a-863f-f23224629ff4", "text": "huge dark chamber with aliens and machine, wide angle dark and cinematic "} +{"id": "5001933", "video_name": "6a85198a-3416-5196-8b19-708818a726a9", "text": "Illustrate the children stomping their feet joyfully. "} +{"id": "1003556", "video_name": "41902dd9-4d61-59c1-9db3-f6363ad12841", "text": "Liam building his makeshift shelter as the sun sets. "} +{"id": "0005970", "video_name": "243062ee-1ed4-5763-aed3-a714c7e368ca", "text": "ancient civilization under the earth, gothic structures with alien caverns. abandoned "} +{"id": "1003194", "video_name": "3ab9ec3f-cf72-5d7f-b50b-9d9939b7559f", "text": "inside view of office I want realistic view "} +{"id": "0003227", "video_name": "39a01905-3e1c-57ea-9f23-2a3dd702c16f", "text": "1 girl with the shape of a goddess, holding a glowing scabbard, head wearing a crown, black hair, blue dress, full body photo "} +{"id": "4003714", "video_name": "e5e5858b-ca15-590a-aa57-c66e352bafc4", "text": "pikachu surrounded by flashing streaks of lightning "} +{"id": "7003723", "video_name": "c6fd2eab-0b33-5d3f-8cf4-ce866fcd7774", "text": "Suddenly, a gigantic sea creature rises from the depths, towering over Darth Vader "} +{"id": "0006565", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "Elizabeth and hers was a period of imperial and economic growth in England. "} +{"id": "0003260", "video_name": "3a3d4485-b7a5-5abe-bfb9-6315b067fb98", "text": "motion to be realistic, picture to be HD "} +{"id": "2004844", "video_name": "0a2c97d4-0d0c-5d74-9497-7f3612a5053b", "text": "a starship named Naomi takes off from Earth "} +{"id": "2006067", "video_name": "949f559a-dd6e-5eea-aa07-23d17a0f947c", "text": "A senior monk came to a village "} +{"id": "6002924", "video_name": "a30905f2-cd34-5969-a2d5-56a713297e74", "text": "back to the future movie scene in anime style,motion2,ar 16:9 "} +{"id": "2006635", "video_name": "1b5493ed-2a26-532f-8137-76260f751211", "text": "revived picture woman in beret and a checkered dress, Picasso "} +{"id": "1006544", "video_name": "77db7315-0ce9-57de-8ba1-5fbcd5912d90", "text": "A couple dancing in front of a glowing large Sun. "} +{"id": "3004709", "video_name": "dac62433-bdb6-5aa7-b98e-c89c327bb35f", "text": "Adolf as a young man paints a picture "} +{"id": "1006045", "video_name": "6f0c5128-41cb-5ddc-8a13-2ec072c0afea", "text": "A boy stands in the rain, with a busy street in the background "} +{"id": "0004258", "video_name": "05ed4abf-2492-56c5-b7cf-738e105d274f", "text": "a city beach in a afro futuristic with flowing water "} +{"id": "0005999", "video_name": "24ca900c-b75a-5fc1-874b-9ebf9a7ba5f2", "text": "a dog and a cat fighting in a park "} +{"id": "6004911", "video_name": "6a9bb85c-9f0e-5390-9723-9ce851125cd9", "text": "Create an video a Roman woman applying facial cream made from gladiator sweat.hyper realistic, ratio 9.16 "} +{"id": "0003692", "video_name": "41cd1092-bf14-5b97-8e23-01f50104e863", "text": "a cute pink bunny talk with a red fish "} +{"id": "5001283", "video_name": "8f987857-5e0a-50ec-bebb-4775f7d50001", "text": "A young beautiful girl slowly taking out head from neck and holding hands slow motion "} +{"id": "0004922", "video_name": "1176e0c1-dc53-568a-b27a-da3f468cb4dd", "text": "People are cheering Message: 1 Attachment "} +{"id": "0003406", "video_name": "3d2199a0-898b-536d-bc85-144bdccb5099", "text": "soft lighting, high quality, realistic, best quality, masterpiece, detailed, man goes the street and sees handyman, teacher and nanny "} +{"id": "3004341", "video_name": "1657d768-ce54-5801-a478-22da8c248fb7", "text": "swift flying green and red color "} +{"id": "5001491", "video_name": "ab6d63b2-68c2-5b19-aa1c-fd1c1244eb04", "text": "Cinderella opening her eyes, awakening from her sleep. "} +{"id": "7002721", "video_name": "f1b2e80e-be1b-54fa-b286-d9b311ac930f", "text": "slow move lion image Message: 1 Attachment "} +{"id": "3004739", "video_name": "0bb02520-6a68-5d30-9127-9bda344a0647", "text": "Hero runs away form the city of Troy, with other peoplen; make detailed movement; ancient;cinematic "} +{"id": "1004340", "video_name": "501b6178-2151-5376-951c-143e3e7f729d", "text": "Glitching holographic realm with rainbow light energizing you "} +{"id": "2005960", "video_name": "2b9f2254-318a-5ca4-b8f2-1d7601aa2f0d", "text": "Alfa Romeo 159 driving across the desert "} +{"id": "8001846", "video_name": "689dd57c-bd40-5d0a-85c6-6ed85341e73f", "text": "carrying forward the legacy of the School of Arcane Arts and the teachings of their beloved mentor. "} +{"id": "6002827", "video_name": "de1eaa8b-2816-5cfa-b075-41af4651f6e4", "text": "a door spinning in the sky "} +{"id": "2006035", "video_name": "e7719640-32a5-5127-9ee4-a5db23c692ee", "text": ".The car is moving and the flags are flying Message: 1 Attachment "} +{"id": "0005875", "video_name": "22a1f007-ee58-52ec-b4fc-027be1891e4f", "text": "Impoed of war by tanks , air crafts, boarder , armies , destruction , worries , on pakistan . subcontinent , dark night , "} +{"id": "1006762", "video_name": "7bc9e3c0-a37f-5fb6-a32e-69e814d7fc25", "text": "pc gamer, a coastal gamer playing on the pc, with a neon background, 2 monitors, playing gta v, doing live, on a monitor with a logo containing the image Message: 1 Attachment "} +{"id": "2004462", "video_name": "a0359a65-fd2c-56a9-ab40-8933805a3086", "text": "close up of a tyre applying sudden bresk. cinematic "} +{"id": "4003584", "video_name": "0fe5303b-da1d-559c-86d2-31d3f96cb4d0", "text": "planet Earth barren and grey, no sign of life, trees and animals are dead, drought and famine, high quality, highly detailed, 8K 16:9 "} +{"id": "2004373", "video_name": "c9518a27-f57b-5ffe-93a8-5660b3666174", "text": "Sauron fighting with orcs, realismo, 4k "} +{"id": "2006952", "video_name": "67ff5f0f-cbef-5314-8f63-b68a15df04b4", "text": "Cute small humanoid baby lion sitting in a movie theater eating popcorn watching a movie, unreal engine, volumetric, warm indoor lighting, artstation, detailed, digital painting, cinematic, character design by hayao miyazaki, unreal 5, daz, hyperrealistic, octane renderer, arnold renderer, 8k, matte "} +{"id": "8001322", "video_name": "558c72e3-c607-5ed0-93e2-9622f4d45c48", "text": "happy new year 4k, high quality clear "} +{"id": "3003930", "video_name": "07c0de6c-b142-5080-a9e1-843a483c1943", "text": "an abstract man goes into a dense coniferous forest and hides there. vertical video "} +{"id": "2003119", "video_name": "d7daa3fb-9c34-5b98-b3cf-0cc598b0f460", "text": "persian woman with scarf on street night "} +{"id": "6004777", "video_name": "33b3c57e-4415-57dd-9be7-d654198987f6", "text": "giant red letter A covered in bubble gum on a white background "} +{"id": "3005674", "video_name": "b3a8c157-b29f-575a-a2ff-329415c5091b", "text": "Man running into the woods from a house that then explodes. In a rainforest environment with visual damage. "} +{"id": "0004276", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "fir trees forest in the mountains "} +{"id": "1003429", "video_name": "3f5c0e5c-3f6a-5b8e-a5a5-01bbde83f210", "text": "video of cars turning light off and on in showroom "} +{"id": "7004300", "video_name": "5fbb7261-e1e4-5713-ab62-76570754dfdf", "text": "double exposer, muscle car driving in the country at night "} +{"id": "3005499", "video_name": "9796b9a8-45a2-589e-93dc-ab91869d8943", "text": "elephant come in the home out door "} +{"id": "3003237", "video_name": "7e5f0009-2fdd-5046-811c-4afbf8252133", "text": "devil next to a mirror, black and white, old classic horror movie style "} +{"id": "3004086", "video_name": "cc0419ef-d2f0-5c18-8fee-a78f14ad0d3d", "text": "create woman eyebrow and eyebrow pencil makeup "} +{"id": "8002603", "video_name": "487dee24-e8c1-5e5a-9ca6-4ca0696a1a95", "text": "This battle features realistic and breathtaking effects, illustrating the significance of this battle for the world. "} +{"id": "1005553", "video_name": "6641d98d-8a54-5de1-9e18-f4157e17cd91", "text": "A sad and angry man robot beautiful woman face sporty silhouette armor from the future run, cries at the chaos the destroyed world has come to. 3D animation magic colors. 4K resolution. as 19:9 "} +{"id": "5001690", "video_name": "a7361f6c-9a9d-5df4-8e7e-139de9d19398", "text": "hand is controlling puppets with paths "} +{"id": "3003689", "video_name": "37046f5f-b678-5d92-abd3-2c02f3e71cdf", "text": "Western wizards in their respective classical costumes and Eastern sword monks battle it out "} +{"id": "1005993", "video_name": "6e2a5d8c-c90d-52ef-b0d7-acc5dc461d5f", "text": "Facing doubts and fears, Aiden exhibited at a city gallery. His work impressed all. His journey from a doubted dreamer to a celebrated artist inspired many. "} +{"id": "3004685", "video_name": "728eeebc-5969-515b-9236-0995376098a4", "text": "aerial view of flying over the city with crashing at the base of a cars drone view, cinematic, epic, "} +{"id": "1005998", "video_name": "6e3aefc1-65a2-5cd7-8687-cd620888a4b8", "text": "a music video for track by noisia on vision recordings "} +{"id": "5001527", "video_name": "d21772ee-ea31-5e94-b924-d8d80e26db05", "text": "In anime style, the scene depicts a Russian guy sitting in a house with diverse furniture. He is seated next to a table, proudly holding the Russian flag while drinking vodka. HDR 4K 16:9 "} +{"id": "4004572", "video_name": "d0e9bf7d-69a6-559f-ab40-db46cfda9d97", "text": "Evolution of human being cinematic view "} +{"id": "8001541", "video_name": "45f29a44-4d44-5a8f-98e8-5b1f0a7bda9f", "text": "she stumbled upon an ancient oak tree "} +{"id": "2003039", "video_name": "a0cd673f-e0a3-532a-b3f7-5e969b8fbade", "text": "create an video were eyes are floating through clouds. it should feel like a lucid dream. use the colors pink, green and blue. "} +{"id": "6003719", "video_name": "6e32f2ae-1c1c-5e91-b239-5667e12e4e58", "text": "line of people walking into a UFO at a concert "} +{"id": "4002827", "video_name": "65db945c-db9d-504e-b059-faf04560f8d6", "text": "A lone wolf farting up a thunderstorm "} +{"id": "2005001", "video_name": "2cc038c1-cfdf-53db-8081-0d0fae00bdad", "text": "14 years old girl with golden brown hair blowing in air walking in a village cover with green area and beautiful small houses. in pixar style "} +{"id": "4003709", "video_name": "8b5780ba-1d10-5ea0-a901-6d65780deefc", "text": "blond girl, round glasses, cute, realistic "} +{"id": "1005491", "video_name": "64e1f012-532d-5c80-9682-26cae92172e9", "text": ". It was their role to preserve his royal authority, sometimes through violent means. Legend had it Ra held a secret name within him that held the key to his power. In one myth, Isis, goddess of "} +{"id": "1005672", "video_name": "6834aacd-0788-5f2f-8a73-ea32bd5ff179", "text": "A Victorian woman sitting down at the table of a beautiful candlelit dinner. "} +{"id": "1006583", "video_name": "789cab0d-8b87-53b9-ad43-2411784e1049", "text": "a large shaggy rainbow colored wolf, wearing heart shaped sunglasses, trotting through a pastel themed forest "} +{"id": "0006602", "video_name": "2f5fb8bc-c6aa-530b-9235-c0251e412922", "text": "\u2022 A dark and stormy night. A lone figure walks down a deserted street. "} +{"id": "4002740", "video_name": "e6d99948-73c9-5667-9a84-77eb127ec00c", "text": "forest with wild animals and nothing to eat "} +{"id": "7003880", "video_name": "7a939c4a-0b90-5816-9b49-7133d3e22780", "text": "a aged lady carying. Stand near her young daughter. 8k, Disney style, pixar style "} +{"id": "6004239", "video_name": "6fccffcb-09c5-5181-b82c-3b4b23319cec", "text": "liminal deer, ghostly forest, fog, found footage, disturbed "} +{"id": "0004640", "video_name": "0c7c50e6-289d-5f99-9e5a-4b99f22fc22f", "text": "A man chopping down a tree in the style of Pixar animated film "} +{"id": "4003861", "video_name": "d8820917-7f1a-5fa9-b54d-d27cff9a3286", "text": "a Christmas tree,presents under the tree,a small open door on one of the presents,small people walking out of the tiny door "} +{"id": "3003696", "video_name": "3baa78a3-5be7-5126-bc58-3cc73ccb792b", "text": "Display a list of languages scrolling on the screen "} +{"id": "6004458", "video_name": "c59b17e1-69c1-56b1-b2f8-ecb57e17c412", "text": "a long love story between two teens in high school,anime,4k, length of video minimum 10minutes "} +{"id": "4002901", "video_name": "7b2b038c-6766-5254-8aea-188fb1133669", "text": "white tail eagle live streaming a strategy game "} +{"id": "3005130", "video_name": "0d500a4a-a1e9-5e91-8f46-eec78e53d500", "text": "modern turks dealing with other power , strategical fights , various of enemies, "} +{"id": "2004535", "video_name": "9dde4729-b08d-5fe1-ba84-b60cc9551641", "text": "imageine a dog runnig oder a green yard wearing a red necklace "} +{"id": "2006472", "video_name": "8e05fa15-385f-51d1-9736-ca5df940484e", "text": "The wind blows through the grass and petals dance in the air Message: 1 Attachment "} +{"id": "3005937", "video_name": "4d6e528a-a869-5894-869d-d14123dbdc91", "text": "grainy hypervivid closeup footage of a single blinking eye"} +{"id": "4002894", "video_name": "d53b78aa-cb12-5f03-b6c2-008d0d60a998", "text": "a young 17 years old girl walking down a hallway with red lights, heading towards a mysterious door. She has brown wavy hair, wears a white shirt and a black short skirt. "} +{"id": "3003017", "video_name": "ded8bfef-4b60-597d-b8c3-510362970eaa", "text": "Create a portrait of spaceship captain in futuristic style. He looks straight and blinks "} +{"id": "2003465", "video_name": "5146fb0e-9cb5-5851-bc85-928d13b19e89", "text": "give minimal motion, do not distort, high quality "} +{"id": "2007687", "video_name": "1fe6942b-bce6-55ad-9199-fb73ddf6568f", "text": "city view, buildings, new york. Message: chiu (Font: RETRO) "} +{"id": "3006797", "video_name": "f142bf2c-540f-55c9-aae6-e8c862a87ca8", "text": "a time lapse video of computers in a morph animation "} +{"id": "0005150", "video_name": "15a46b1d-36b1-5fab-8439-1baf8fdf7870", "text": "woman being imerged into cold water tank inside dark mysterious labratory (landscape) "} +{"id": "0005143", "video_name": "158b47d5-f46c-5417-9e70-f1d433e46f1a", "text": "Venus gains the crown and dreams begin in her Qasr "} +{"id": "0004646", "video_name": "0c9fafb2-4643-5afe-a882-1ce3cb5b90e1", "text": "santa clause sitting on the great wall of china, drinking lots of bubble teas, 3d, camera pans left to right. "} +{"id": "6004271", "video_name": "f7ccc847-b1d3-568e-8fbd-f08fca41e713", "text": "a landscape of a mountain in the Background, camera out, clouds moving Message: CHOTI (Font: MODERN) "} +{"id": "7002127", "video_name": "fd7b38bc-0997-534e-8e88-5f0124cf698f", "text": "a happy boy riding his balance bike through a suburban street 16:9 anime style "} +{"id": "1003733", "video_name": "44e3a1a5-253d-596c-b984-5a04461c78b4", "text": "Over the Top (OTT) platforms are one such medium that has gained the limelight the most. Social Distancing has led people to stay at home, where the only entertainment are these platforms such as Netflix, Prime, Hotstar, Voot, and many more. 4k resolution 30 FPS "} +{"id": "7003186", "video_name": "db983a37-ba0f-5471-8442-57435b709577", "text": "story of earth ravaged by global warming "} +{"id": "7002403", "video_name": "64efebe1-2716-5a3e-a79e-51f64724ad80", "text": "Students listen to the teacher in classroom back angle "} +{"id": "6002331", "video_name": "698fe460-ac71-5412-9130-d61950526e48", "text": "eyes blinking, butteflies flying, waterfall falling, water moving with time "} +{"id": "0005829", "video_name": "21dbb370-a458-55ab-9d21-4205ba7171d2", "text": ":sci fi war in the moon "} +{"id": "6003237", "video_name": "dab6b2da-40ff-5fdb-a903-36edc5d5f6b5", "text": "Visualize Khutulun engaging in a wrestling match, showcasing her strength and skill as a warrior. "} +{"id": "1005202", "video_name": "5fc88c0a-9d5d-5fc1-add6-e145023995f2", "text": "Most beatiful Message: Doog Fly (Font: MODERN) "} +{"id": "7004382", "video_name": "3a5db8af-2db7-5273-a47f-3af8a6483d7a", "text": "a character from blue lock making a goal "} +{"id": "5001950", "video_name": "7801d149-7a6a-5ff3-a4dd-17925b93340c", "text": "A rabbit is running quickly through the forest. "} +{"id": "8003659", "video_name": "1b7f7557-0e4e-5130-8cbc-9ca66677b256", "text": "An old man had three sons, animated "} +{"id": "3003648", "video_name": "92202593-9687-587a-8ab6-550dcff65b82", "text": "Under the blue sky, the peaks of the mountains undulate, unfolding like a vast scroll. The contour of the mountains is smooth and powerful, giving a sense of stability and determination. "} +{"id": "4003392", "video_name": "c2dba400-5e91-5909-b7fd-e822451bbae9", "text": "Stopping the motorcycle and getting off the motorcycle "} +{"id": "1005100", "video_name": "5e0d86f2-50f2-50c3-8e60-51e42a149d57", "text": "realistic lighthouse in a storm at night with lightning and waves crashing "} +{"id": "4004758", "video_name": "235339a6-b8cc-5312-ad26-d3233d2f51da", "text": "Kirby staring at PAC Man while holding a very long knife in a dark alley in the style of Oda Eichiiro. "} +{"id": "4002075", "video_name": "bf4351c9-197f-5820-aa9f-5d21012ea0cb", "text": "Taiga landscape with sand, small taiga trees. There are many tents in the background, in the foreground the scene on which the artist sings, many people listen to it. "} +{"id": "2006401", "video_name": "060e337f-7fdb-556d-895c-f1871e3a5ee5", "text": "a funny looking cat under a rain of money "} +{"id": "8003295", "video_name": "4d9d671d-185c-5128-a602-ad2be0cb18ae", "text": "Beautiful sunset in nature with wind "} +{"id": "3006663", "video_name": "cbcfafdd-313b-5a79-85bd-3e61d8e9022d", "text": "Danny devito dressed as doctor hans zarkov "} +{"id": "3006491", "video_name": "87dfbccf-b1a1-571d-b711-e218618117c1", "text": "A child playing with a holographic globe of the Earth. "} +{"id": "0003647", "video_name": "40f4e5e7-fcd7-5675-84b3-12de6b5f337f", "text": "a magnolia flower growing from bud to full bloom, close up "} +{"id": "8003973", "video_name": "4e56b695-baff-528f-9e54-6c79e6e391d1", "text": "Watermelon flies into the screen Message: 1 Attachment "} +{"id": "2007213", "video_name": "84d19638-19ac-574f-979c-b02ff3df74d4", "text": "Eating chocolate. Mouth closed. Message: A woman. (Font: MODERN) "} +{"id": "4004136", "video_name": "502eca8c-d7db-5caf-bdc2-e9f6b018edd1", "text": "stick figure running, he leaves a trail "} +{"id": "2004639", "video_name": "ed5aa3f6-8eb8-5824-a6f6-bf2801a568e2", "text": "cute friendly character having a delicious dinner "} +{"id": "1006995", "video_name": "7ff9335e-1e6a-5b8c-9bc8-69f48227ad2a", "text": "happy kids are sleeping in the room , hd style, 3d, ultra hd, 4k qulaity, ar 16:9 "} +{"id": "4004488", "video_name": "3aa0a1bc-5eef-5902-89c3-5e42db756933", "text": "a coffee mug drinking from a bottle "} +{"id": "8001096", "video_name": "dd6bba2e-52be-5015-86a2-b1638656e16f", "text": "Make Andrew tate explaining how to escape the matrix, 5 minute video "} +{"id": "6003438", "video_name": "c17feaf2-6e22-5265-800d-ad0edc9223bc", "text": "3 beautiful children smiling at each other "} +{"id": "3003251", "video_name": "01e52668-a75d-514b-9009-d25b47e51c09", "text": "chinese girl walk in the road "} +{"id": "1004982", "video_name": "5c185923-c036-5d73-b0dd-734bb4c99fca", "text": "streets of colonial Calcutta in 1923 "} +{"id": "3005228", "video_name": "b999a927-e041-53b1-bbe4-7b91ea33e286", "text": "earth rounding sun Message: 1 Attachment "} +{"id": "7003638", "video_name": "d9231fe3-8ffc-5d7b-a918-661a0fc1e36c", "text": "In New Orleans, United States, Mardi Gras is synonymous with parades, extravagant costumes and jazz music that fills the streets, hyperrealism, cinematic, \u2013\u2013ar 16:9 \u2013\u2013 "} +{"id": "1004572", "video_name": "54ee85cc-cd3b-59bd-80f7-63e2888e1b39", "text": "beatiful young woman, feminine body, in bikini, long hair, blue eyes, and lush mouth, in retro comic style, coming out of turquoise water holding a shell in her hand, background retro color style "} +{"id": "2006724", "video_name": "c082598c-9ac1-5683-bc81-1467575498cc", "text": "Heavy rain in a lush green garden at the, cat is watching from the corner "} +{"id": "8002559", "video_name": "230162ba-4898-5096-a830-c32ad3dc9091", "text": "Rotating the lens, filming, turbulent water,motion2 "} +{"id": "1005984", "video_name": "6def7d64-6ecb-564c-986b-2a5118db853b", "text": "Logo for company called Sink Or Swim Tattoos being attacked by a Kraken and a skeleton pirate dancing around "} +{"id": "6004556", "video_name": "5407f46a-b6d8-5b2d-baf1-7945277344cd", "text": "hide : ( Cyberpunk city night with flying blue color wide car) "} +{"id": "4002009", "video_name": "d1203145-23b5-5f8f-b3ca-60d5a6da3728", "text": "naruto eating plov in tashkent with hinata "} +{"id": "0004347", "video_name": "0783b780-a7ca-5fd1-b7fe-d9081044bf64", "text": "an incredibly sexy fitness model doing a backflip "} +{"id": "2005846", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "anime styled very attractive girl in a swimming dress in a beach "} +{"id": "2004114", "video_name": "9898f018-886d-52ae-8a66-6579f2ed3b94", "text": "A piece of chocolate exploded in the air "} +{"id": "1006329", "video_name": "73cf17fa-1acb-5357-9c00-e5cfa7861aac", "text": "As darkness enveloped the small town, a desolate gas station stood alone by the roadside. A chilling wind whispered through the air, shrouding the area in an eerie silence "} +{"id": "8003212", "video_name": "738c0fb3-144c-57d1-8f3d-ac2b75abd98f", "text": "ajith kumar black hair with ak47 in his hand "} +{"id": "7002818", "video_name": "481595ec-8874-597e-a597-8c31141fd25a", "text": "santa claus flying through the north pole, wide view,cinematic "} +{"id": "1004035", "video_name": "4ad05ef3-bc99-5407-885b-4e684ffaa7bd", "text": "Christmas festival and have a meeting animals and with some gift "} +{"id": "7004103", "video_name": "66329133-6a72-5704-a66b-1f34d70e86c6", "text": "realistic scene of a Christmas life in a town "} +{"id": "1006755", "video_name": "7ba9e981-c9ec-5167-b74b-1d8dc72e76aa", "text": "what does a person suffering from schizophrenia see? "} +{"id": "8003759", "video_name": "af1df9d9-687e-533b-9fb5-ef102764961e", "text": "A shot of the full moon in the night sky.\nUse slow and cinematic camera movements. "} +{"id": "3003681", "video_name": "6cad498b-3670-5290-a8a0-5902930efe40", "text": "king grow from kid to adult. "} +{"id": "4002300", "video_name": "2f866f38-dc62-5bcb-a376-dc62eb4bd7ce", "text": "UAP landing in the middle of the desert. Landers California. Wide shot. Dark skies. "} +{"id": "8002784", "video_name": "b510c30f-c5dc-537e-ab63-f205bb3dbf47", "text": "A sexy girl like Liu Yifei should have a full body image, face forward, slowly dancing while bathing, and big eyes "} +{"id": "0005248", "video_name": "173668d4-d4ea-5c09-ad3a-d5662973f8bd", "text": "The Battle of the French and the English shorthairs "} +{"id": "1003846", "video_name": "46e01128-7bdb-5337-82d0-2dd87fc7e3bf", "text": "couple taking a photoshoot in Malibu "} +{"id": "2004325", "video_name": "80fa9556-62af-51d9-9571-18193306e272", "text": "whiteboard graphics animation of a penguin printing money "} +{"id": "4002818", "video_name": "4bd5cc35-0e58-5c80-be6b-e5fbd6307395", "text": "My name is Theo and I am a storyteller. "} +{"id": "1003992", "video_name": "49e4659e-9112-5e29-9fcd-b3631b265ccb", "text": "A lovely asian girl walking in a park with headphones on her head, 24fps "} +{"id": "7004114", "video_name": "62a7d8d5-7d5b-55b4-9650-004b9d0096fa", "text": "a feisar vehicle from Wipeout 1, photorealistic style, the camera is rotating around the antigraviting racing vehicle "} +{"id": "4002630", "video_name": "8f462b32-281e-5d1f-8730-24d662019d49", "text": "a teaser of a party containing hype close ups to people dancing and a dj filmed by drone "} +{"id": "0006038", "video_name": "2571c3d0-6f70-5647-9b24-74260802cd97", "text": "250 g of spaghetti (or another variety of pasta of your choice) "} +{"id": "8001057", "video_name": "c8a5a7e6-5eae-51ef-9207-1281a1123a72", "text": "pretty young woman gently chewing gum"} +{"id": "6004742", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "stone cold steve austin with a mullet driving in downtown dallas in a red pick up truck "} +{"id": "4004262", "video_name": "d370a3bb-6693-5bba-9239-b8e8829d2fcf", "text": "Gathering of men and women around a massive bonfire, moderate wind, artistic lighting effects "} +{"id": "4004129", "video_name": "2c06c824-9bf7-5ace-90a0-84549b2a9c71", "text": "a weird colorful moving background with lots of colors and motion "} +{"id": "4004224", "video_name": "fdfd96e1-b8ff-557c-9785-b514acae2cad", "text": "fever dream like murky waters caught on camera, dreamy, liminal "} +{"id": "8001356", "video_name": "e917006e-5dec-5f05-ad8f-2fcb3f30526b", "text": "1980s space film in color of the internet "} +{"id": "6003415", "video_name": "0f4ae4f9-f031-5f92-9eb8-aa6dd7cf2e35", "text": "club in space Message: hvatit buhat (Font: MODERN) "} +{"id": "4002596", "video_name": "7074a478-9a77-58be-baa6-83189b65aaa9", "text": "Nero, a cool and composed black cat, is sitting under a tree, gazing up at the window "} +{"id": "4004472", "video_name": "73355d4d-8935-59cc-b0d8-bf68e25bb840", "text": "A glowing screen appeared between the two trees "} +{"id": "1004596", "video_name": "558b3324-bfdb-5ea5-a54c-e74471a58691", "text": "fashion runway moschino inspired with lions "} +{"id": "0003960", "video_name": "00a3d5c8-6c40-5881-8dc8-0ac9eed62b9e", "text": "realestate photographer working, kitchen, sunny day, kids "} +{"id": "8001564", "video_name": "fbbd23ed-19ef-5ff5-a046-3ab18e233296", "text": "\u001ba copilot flying an airplane that looks like a web browser "} +{"id": "3006725", "video_name": "fa7b5139-9785-5ab3-b93e-fe179f7b2e92", "text": "Once upon a time in the small town of Crestwood, there lived a man named Jonathan Miller. Jonathan was an unassuming figure, a librarian by day and an avid reader of history books by night. Little did he know that his life was about to take a dramatic turn, leading him down a path of courage and heroism. "} +{"id": "2003780", "video_name": "746493a9-c760-5613-addf-3ff8cf906c17", "text": "morbidly obese man performing impressive breakdancing moves "} +{"id": "8002669", "video_name": "b33a49db-3c03-5139-9ed7-c04312fb96e1", "text": "When I stand in a quiet house and listen to the sound of the rain outside through the window, I feel a wonderful sense of calm. The faint dripping of raindrops is like a gentle kiss from nature, dancing softly on the windows, adding a touch of poetry and comfort to this tranquil moment "} +{"id": "3004036", "video_name": "4448d28f-2b9c-58dc-afad-fd069aa2e65b", "text": "snow falling, birds are preening and pecking the snow, "} +{"id": "8002473", "video_name": "17f0ed62-d927-50bb-abd6-8d7c68d1db0b", "text": "Show the worried expressions on the faces of farmers as they look at their dying crops. "} +{"id": "2006753", "video_name": "1019fba7-efec-5e24-a821-1d01b0c82d19", "text": "jimmy buffet eating a cheese burger at the sunset grille and raw bar in marathon florida "} +{"id": "5001336", "video_name": "66e24e42-6a63-5f84-b48a-8ac164abd05c", "text": "prompt The sun shines bright over a small village in the Arabian desert. The streets are filled with bustling merchants and children playing. "} +{"id": "2005459", "video_name": "728628b4-4b2f-5280-a9c9-7eee7e640e95", "text": "Portrait, Asian male handsome robot, half robot face, half human face, super detail, 8k "} +{"id": "0004229", "video_name": "057c0f4d-f7c3-53e1-af09-837296980b14", "text": "a pack of wolves running through a forest at night with a huge full moon in the sky. Exaggerated wide angle, high contrast, 16:9 "} +{"id": "5001785", "video_name": "d59a0947-3789-5608-8ad2-f0a5f8ad9bae", "text": "Donal trump dance in the disco techno music "} +{"id": "4003506", "video_name": "f9da4f8e-e606-5f79-8342-f7a1d75a8df7", "text": "Aliens often have a variety of shapes and are completely different from humans. They can have gray, blue, or transparent skin. Their eyes, noses, and mouths vary in number, and sometimes vary in length. The body is often slim or taller, with a variable number of legs and arms. Eyes may be able to see farther, and they often wear fancy clothing or jewelry. "} +{"id": "7003116", "video_name": "660a0cae-62c0-5566-b8a9-df4aa6203740", "text": "a detective running downstairs, black and white, horror classic movie style "} +{"id": "2003467", "video_name": "002b7eb2-4d21-5a93-b203-1013fdd61401", "text": "The changing seasons, showing the treehouse in various weather conditions, from a snowy wonderland in winter to a blooming paradise in spring.Animated cartoon "} +{"id": "3003812", "video_name": "cf30ca5f-cbdf-5f69-bfe9-4c1555e6bfa3", "text": "buckets of writhing eels, alien wet market in the hoodoo desert, grimy Alfred Stieglitz black and white 1900s "} +{"id": "4003887", "video_name": "c4724124-36a7-5c88-9d0c-a284acd5b2c0", "text": "an Iranian girl in the alley of Tehran with bread in the morning "} +{"id": "6003242", "video_name": "2630bac5-9ee8-53db-aedd-79517cf87a84", "text": "djing on the stage of a music festival Message: 1 Attachment "} +{"id": "2005823", "video_name": "ab6242c7-92e8-5ce5-834c-65b7a29db206", "text": "cinematic ink sketch cartoon of Pepe The Frog slapping a woman with an asymmetrical bob haircut standing in his way, in the style of HR Giger, wide shot, full animation, accurate and detailed, "} +{"id": "7003916", "video_name": "88ff2fb1-58fd-5e8f-b0d7-4708a332c66c", "text": "advertisement for a 6 in 1 trimmer. Men with different haircuts, beards and mustaches are trying to become stylish and handsome, but they fail because of dull scissors and bad hair trimmers. Suddenly a haircut kit with six different attachments flies out! they look at this set with admiration, take turns shaving their hair, their beards and mustaches become stylish and beautiful. They all unanimously point with gestures at the link that pops up where you can purchase this set for cutting your beard and hair. "} +{"id": "3006060", "video_name": "b7f01259-9c2f-532d-8b3a-9eaf61a84480", "text": "The kids were scared and didn\u2019t know what to do. They tried to find each other but couldn\u2019t. They were lost in a new universe. As they wandered around, they came across strange creatures and new planets. They saw stars that twinkled in different colors and moons that glowed in the dark. They were amazed by what they saw but also missed their friends. "} +{"id": "0004833", "video_name": "0ff8d98e-15a8-5975-ad74-4cba6493a174", "text": "tour in a remodeled kitchen, 4k "} +{"id": "4004167", "video_name": "212779a5-feb4-5105-9569-520c83e65f88", "text": "a cybersecurity professional fighting flying vulnerabilities using nunchaku while hackers mob computers in the background. "} +{"id": "2005933", "video_name": "494202ca-0a44-5074-b017-77ffedc0a9c8", "text": "an horse floating in space,with earth in the background "} +{"id": "3006571", "video_name": "e7868536-80fa-5ff7-9541-3797055fb759", "text": "two Mushrooms growing in the forest, nature "} +{"id": "0006172", "video_name": "27a675ae-affe-5e33-bbb5-c965e14c2b9b", "text": "WW2 War lake foggy lake, doomcore, nightmarecore, canon film grain, harsh lighting, 1970s film quality, 1970s film grain "} +{"id": "0005339", "video_name": "1916aee9-51ce-5a71-9bd3-47acc42190dc", "text": "a woman working at her office, at the top of mountains, mountain view, 90s "} +{"id": "8001267", "video_name": "809b636b-ae89-5014-90b7-fae1dca638c3", "text": "little girl holding a wind vane spinning high speed "} +{"id": "3004717", "video_name": "5a1bb685-36ea-516e-bf53-57f1d30922e8", "text": "The earth splits in half and UFOs fly out of the hole "} +{"id": "3003564", "video_name": "094d959d-0a35-597e-84a5-546423735017", "text": "CHR Crypto currency travelling to the moon "} +{"id": "4004833", "video_name": "6d2699c7-c39e-5952-b8af-87a9a724d1e9", "text": "Rain in Tokyo with camera zoom Make the scene realistic "} +{"id": "0006391", "video_name": "2bbc28dc-b236-5beb-a8f0-d214afabf676", "text": "an helicopter hovering over a frozen lake in a snow storm, realistic, "} +{"id": "4003049", "video_name": "52e46b61-7975-5ddb-9ab5-5e1a6058911e", "text": "ironman stand on the tesla car "} +{"id": "1005129", "video_name": "5e905a49-e018-5c20-846d-f446d0eeeedf", "text": "\u2022 Inside the ship, Zentari aliens are seen manipulating holographic controls. "} +{"id": "4004197", "video_name": "7984379b-c1f8-5461-a199-a6146ce8fff8", "text": "anime young man with brown hair, wearing a tight orange jacket "} +{"id": "6002698", "video_name": "eee4c24e-1f4c-5b5c-9d78-68cb3a7ebf3e", "text": "city in ruins covered in rain buildings in pieces "} +{"id": "2005591", "video_name": "46b22b50-6480-537f-a548-2cdb1835ee61", "text": "a white tiger escaping from a cage "} +{"id": "0006913", "video_name": "353ba5d2-6728-5a09-86b3-a5086151f884", "text": "Japanese anime style, robots drive away people at work with bad intentions. "} +{"id": "1003929", "video_name": "488a8074-4c85-5dec-adc2-43ab72a35405", "text": "create a powerful scene a boy is working in his fields , 3d animation , 4k resolution "} +{"id": "3006395", "video_name": "2978d1cc-9ecb-5f3d-b763-a49b8431840f", "text": "elderly woman playing and laughing with young boy and young girl in a treehouse "} +{"id": "6002396", "video_name": "57e974b1-d626-56b7-b79b-e97398c8a21a", "text": "Part 4: Quest for Answers (Scene of desolate village, people searching for traces) Narrator (Voiceover): Bewilderment and concern took hold of the villagers as they scoured the landscape for any clues, desperate to unravel the trut "} +{"id": "4002452", "video_name": "68a3c393-955b-5a76-9cdf-049b3cf3aa2a", "text": "black and white grainy film textures of Radiohead "} +{"id": "2006451", "video_name": "0036193c-9c09-5d4d-9ec9-0b4277b00677", "text": "A little bird dropped a kernel of corn to the ground in the spring forest, 2D cartoon stroke style "} +{"id": "7004646", "video_name": "293dd8a7-586f-5840-8c8b-a71ad2374003", "text": "With the style of Ghibli, an old man "} +{"id": "0003888", "video_name": "454a86f9-2932-5b47-95bd-7030408b8e97", "text": "fresh bakery with a splash Message: jormar (Font: MODERN) "} +{"id": "6004498", "video_name": "b74e45c8-5b8c-5304-be6b-44bcfc16cf4e", "text": "young girl in the woods with a deer, hair moving in the wind, vibrant colors "} +{"id": "3005448", "video_name": "8c401ca6-6b77-56ae-abb9-525ab59c48c4", "text": "A digital recruiter in front of his laptop with an open space scene behin him, it should be relatistic "} +{"id": "3006980", "video_name": "b43e153f-97bd-52d5-a606-6b2f8d34146f", "text": "The elephant crushed the flower garland "} +{"id": "2007569", "video_name": "09a09d31-18b0-5a10-a353-10bb0d9f0cac", "text": "young beautiful girl , professional and cold appearance , long black hair and sharp eyes, exudes strength and determination "} +{"id": "5001641", "video_name": "a355780c-c4eb-5d8f-9513-6afb68efde24", "text": "smoke rising from an ash tray Message: Hello World (Font: MODERN) "} +{"id": "0006519", "video_name": "2dfa06f8-55ea-556b-ad96-c21e79432ba3", "text": "A person hiding under the covers, trembling with fear, as heavy breathing and murmuring can be heard outside. "} +{"id": "8001176", "video_name": "8822e909-d8d8-5cf5-9b54-f75b68f41d13", "text": "a man in a gray suit walking down an alley. Dark and realistic effect "} +{"id": "3004479", "video_name": "2d317549-bd0b-593c-9cec-1530143d1699", "text": "a very cute panda near a small river "} +{"id": "5001352", "video_name": "899422c1-95eb-541b-9643-a0dea2c58519", "text": "A macro shot of a mechanical eye on the forest floor looking around "} +{"id": "6002994", "video_name": "95ac189b-95cf-5e85-9524-2f68d5d12828", "text": "artificial super intelligence neural network background Message: THE DECODER (Font: MODERN) "} +{"id": "1004482", "video_name": "5307496c-1cdc-52a3-aa02-e917c4b7657c", "text": "A young man approaching with a red umbrella under the pouring rain, heading towards the girl and the kitten. "} +{"id": "4004490", "video_name": "362de004-60ae-5cd3-8e63-dbe412eea206", "text": "a baby evolves from a baby to a child to an adult to an old person "} +{"id": "3003468", "video_name": "0252a4ce-2400-546c-8075-d54b2b605137", "text": "the path between heaven and hell "} +{"id": "4004914", "video_name": "bf3c09fb-c4d6-5ca5-8885-c4637c8295d5", "text": "Silhouetted against a moonlit sky, ninjas leap between rooftops, their blades flashing, while cherry blossom petals whirl in their slipstream. "} +{"id": "2007550", "video_name": "257d852e-3200-5050-9826-52a1d45f3ebf", "text": "View of a flying pirate ship from a distance against the sky. "} +{"id": "0005322", "video_name": "1897ecc4-0b35-55da-a5c7-28a8bb64a025", "text": "an old mirror in a dark house "} +{"id": "0004852", "video_name": "104f78dd-2fd0-5606-9032-26e03357c42e", "text": "Ganpati Festival, people dancing in front of big ganpati idol "} +{"id": "7004775", "video_name": "4207f5a3-da61-527c-bbdc-60212491e3d2", "text": "motorcycle ride in the mountains, 8k ultra quality "} +{"id": "5001153", "video_name": "fad51cc2-d8d1-55fc-88e8-b7d5e4e21c0d", "text": "cozy snowy village, ski lodges, pretty, heavy snow falling "} +{"id": "2003942", "video_name": "fcfdf9ed-cebb-5d9c-9422-963dc96425ab", "text": "morning sunrise on a meadow with lots of sun rays, singing birds, cinematic , 4:3 "} +{"id": "8003420", "video_name": "0ce106fc-96e7-535e-b815-4ae5e5fbb87c", "text": "a big luminous red spot in the middle of the atacama desert, dusty, blue sky, red, ocre "} +{"id": "4002946", "video_name": "39815a19-7807-5f15-a1da-f5e5deec0c51", "text": "Cinematic Portrait of two dogs running away from a medieval man "} +{"id": "2006386", "video_name": "2150cec5-8690-587b-b69e-38369d3494a4", "text": "spongebob and spiderman engaged in mortal combat "} +{"id": "7004971", "video_name": "1a64a507-9573-59d0-9727-6d253f660c8e", "text": "loki is sad broken about Sylvie leaving and is standing in a golden light with sad face "} +{"id": "2007166", "video_name": "611dd4dd-4f85-5d09-94fc-aa6823864739", "text": "thumbs up like cartoon,blue color hd "} +{"id": "4004389", "video_name": "f3d3a64f-483c-5124-b8e5-270153988889", "text": "flowers blue blossoms wide and zoom in "} +{"id": "2003308", "video_name": "6279182b-3fe3-5048-a221-d6c32e78f0fe", "text": "japanese Girl underwater floating, hair flowing around her, bubbles, ocean "} +{"id": "2005239", "video_name": "6093f475-066b-5fa4-80f6-fc3cfbc54f91", "text": "envision an animated closeup of a bio mechanical steampunk robots face transforming, morphing, into another creature or robot, in the artistic style of H.R. Giger "} +{"id": "8001277", "video_name": "66096a7c-8292-5e8b-b3db-f73ffcef095f", "text": "an arthouse film about roller derby "} +{"id": "2006978", "video_name": "e2fcb84f-5c28-5e10-ba94-5b223eeeb294", "text": "3rd person view of a doctor caring for a child with dermatitis "} +{"id": "8001015", "video_name": "5e55fcd2-e2ea-5edb-a129-ef33c34a8c3d", "text": "Generate an eerie and enchanting image of the Javanese South Sea at night. The moonlight should gently touch the waves, creating a mystical atmosphere. The waves are slowly moving, the moon is bright. "} +{"id": "4002302", "video_name": "aeb42b74-6290-54a5-be79-e9ea521f0079", "text": "beautiful woman closeup face smile wink "} +{"id": "1004525", "video_name": "540c3b68-7e0a-5dec-a333-18399cea8f07", "text": "Final Fantasy style, knights galloping on horses and fighting monsters. "} +{"id": "0003253", "video_name": "3a14e38a-6824-5d73-b6a3-e50fd574a2a5", "text": "Queen stays in front of the camera long white dress looking at the camera around flying black birds "} +{"id": "6004248", "video_name": "3bb42e0f-25ec-50e9-90bc-57024539cab1", "text": "Girl Sitting on a Rocky Shore Enjoying Sunset "} +{"id": "6002010", "video_name": "5bba43ca-95af-5a2e-b784-a3a74a6e443f", "text": "style of Bernie Wrightson and Stephen Gammell and John Kenn, watercolors, black and white, swamp, dripping, infected, evil, faceless, ghost, wind, eyes "} +{"id": "2004376", "video_name": "555a0bf0-695b-5053-aa31-15625340410a", "text": "man and woman, two lovers walking in the park, stars, night, neon "} +{"id": "2006262", "video_name": "0dac93ae-fdcf-5924-ab0e-2931078f8ce8", "text": "very short Amitabh bacchan walking on streets of Mumbai "} +{"id": "6004797", "video_name": "4bca5fa8-2d49-5ca5-bc14-a1da870324b5", "text": "celestial theme daily journal video for lisiting it on amazon foe selling "} +{"id": "2006358", "video_name": "7245da00-32e9-5e14-b6f1-438b60ea8dcc", "text": "career coach jumping out of a plane and instructor yelling "} +{"id": "5001463", "video_name": "017a83e3-b81d-56e8-8074-194bca0fd6c5", "text": "Alice in wonderland on the internet "} +{"id": "1006832", "video_name": "7cef947f-b4d7-5497-afbe-9bd6e23c33e7", "text": "high speed bike on the sky and gold coins are raining down "} +{"id": "3004198", "video_name": "37e36869-6504-56a5-b39d-ed8d585c0d10", "text": "make me an ad for an electronic notebook at most 40 seconds "} +{"id": "3003977", "video_name": "d635f5f2-19a8-5996-b43a-9e9eb589e972", "text": "Zombies, werewolves, ghosts, trick or treating, mayhem "} +{"id": "1003869", "video_name": "474ad81a-3f94-5187-b46d-07da47466cb4", "text": "The girl is standing back. Background mountains and sunset. Camera move from girl to mountains "} +{"id": "2003990", "video_name": "af0c71fe-646f-5997-ab02-d24d717555c6", "text": "homeless person get help from a strager. HD. 8K. Ultra Realistic "} +{"id": "3006755", "video_name": "37e193a0-a65d-5e9b-a68a-f8ea610de5fe", "text": "A galaxy of stars with a hypernova explosion Message: CCC Abuja Central (Font: MODERN) "} +{"id": "6002787", "video_name": "e27e5cad-5fac-5ff6-80f2-ab1c874568b1", "text": "Amit, taking the lead, descends from their vehicle as they arrive near the mysterious temple. The vehicle stands abandoned, a lone witness to their journey, as they prepare to venture into the unknown depths of the jungle. "} +{"id": "4002991", "video_name": "4c2d2568-e866-5e58-803a-80b465589b00", "text": "create a video of a man in a thobe fighting with a sword "} +{"id": "2004034", "video_name": "84fe7f3f-8bde-5e01-9904-451e26fb0327", "text": "a transformers spaceship flying across galaxys with the word \u201cAutobott\u201d "} +{"id": "8003262", "video_name": "0086c802-5e52-5fda-9bcf-bcec6ba4b8cb", "text": "cookie monster as a Jawa from star wars juggling exploding coconuts on Tatooine, motion 4, high quality, 8K "} +{"id": "1005906", "video_name": "6c981476-47cb-5d70-9848-af52747dc1d8", "text": "lon musk playing poker with emmanuel macron in dubai. Manga style "} +{"id": "2004551", "video_name": "e5853c41-b9a4-59d4-86a8-0b8ff759a950", "text": "a bicycle rides on a village road "} +{"id": "0005843", "video_name": "220eb508-8f94-5e32-b1c2-4b1e620d2906", "text": "3d disney crab dancing on the moon "} +{"id": "0005553", "video_name": "1cc7a34e-b27f-55e1-b711-f53b88505bf6", "text": "animation of man, laughing man, wide smile, blinking eyes, "} +{"id": "0006041", "video_name": "25884b6e-28c6-56a5-8f07-079a8fabc444", "text": "all the animals and the boy with red shirt is happy in the jungla "} +{"id": "3005697", "video_name": "8e43169f-a65c-5df9-859f-cec98603a270", "text": "Children celebrate a birthday inside the house and there is a cake with candles on the table. "} +{"id": "7004025", "video_name": "3650ae67-6e8e-5b61-a856-d24fb89a0de1", "text": "santa class is dancing with children "} +{"id": "0005650", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "Programming Gigantic Penguin crushing a building "} +{"id": "8001309", "video_name": "1d1233b9-0a11-50bb-ad8b-887a5e204b28", "text": "eagly flying over the mountaing in a sunny day "} +{"id": "0003586", "video_name": "3ff7a500-3aac-5d89-9fed-78ae274238ee", "text": "Group of anstronauts suiting up for space "} +{"id": "8002597", "video_name": "0c1e929f-b3cd-5a7c-b31f-8f00753cce21", "text": "Cute Orange Hedgedog walking on the grass "} +{"id": "8003054", "video_name": "315abf37-c99c-5b6d-8823-94f4a5bf67c3", "text": "motion 4, fps 24, laughing demon stepping on man, 100 dark men in background "} +{"id": "2005945", "video_name": "1d5877e2-cfdd-50d7-8bc6-dd24534db427", "text": "In a dimly lit space, a person kneels on the ground, praying, their face obscured. "} +{"id": "4003267", "video_name": "9ca865d4-a823-5c87-8399-6121310f0284", "text": "A pretty girl smiles while the photographer takes a picture Message: 1 Attachment "} +{"id": "3003432", "video_name": "965c9eff-0509-57f6-8d88-33489de6b24b", "text": "Animated Unicorn eating grass, Rick and Morty style "} +{"id": "1005453", "video_name": "6432038d-ff14-5618-8744-1a5bd68f1b1c", "text": "Employees bounce a blue beachball around the office, realistic "} +{"id": "8003917", "video_name": "48a7a74a-9a8f-5e37-8f38-c36d7f415d24", "text": "Visual: Rose with dreamy eyes, surrounded by a whimsical thought bubble showing her interacting with various flowers in different landscapes "} +{"id": "3004112", "video_name": "f1f3c9e3-445c-5389-881a-fed18d0ff164", "text": "giant octopus in space covers the globe with tentacles "} +{"id": "1005891", "video_name": "6c5d4075-6577-5a53-9125-1e8fcaa66a50", "text": "The sea, the sea, the waves "} +{"id": "2003719", "video_name": "fcba11e4-262f-501a-82d4-03db8c360ee0", "text": "Dean and Sam Winchester driving the iconic 1967 Chevy Impala black car on a long dark road, moon light, zoom, "} +{"id": "0004747", "video_name": "0e9a52b2-26a5-58f7-a467-78d73838a394", "text": "a man with not shirt, swinging an axe "} +{"id": "2007661", "video_name": "06305ade-f69e-5c19-b8f2-a1d7cded64e6", "text": "birds flying over tropical island, waves crashing, cinematic "} +{"id": "7004906", "video_name": "59671014-c684-55e1-a87d-9b918de99801", "text": "A predatory eagle in the sky "} +{"id": "0003320", "video_name": "3b926abb-09c6-58aa-9630-dc20b859a133", "text": "A quick dive through new worlds in the multiverse "} +{"id": "0003169", "video_name": "388724be-10b5-5fe9-b8f7-7196ff2c7a5a", "text": "their eyes go white Message: 1 Attachment "} +{"id": "1004360", "video_name": "5087f171-8ee5-5824-abdf-0c610d54a005", "text": "3 small cars standing in a road "} +{"id": "1004678", "video_name": "56e84d86-799f-5fbb-adda-c31825d0e841", "text": "he is washing stone road with high pressure washer "} +{"id": "4002450", "video_name": "bf60f287-36d9-58e2-aff2-d8777e007361", "text": "Malaka river chilling with a beer "} +{"id": "6002502", "video_name": "fb1d6ab7-5dc3-50e2-af89-cc3272e8e85f", "text": "Lord Shri Krishna and his friend archer Arjun had arrived a day earlier to inspect. They were inspecting and seeing how the preparations were going on. "} +{"id": "0005779", "video_name": "2121ec1d-4c74-5f68-adf4-65442932b9b2", "text": "Cartoon image of little child playing in the water "} +{"id": "2004687", "video_name": "134b57e3-a045-5229-a04b-9725ffcdd154", "text": "a physically fit businessman thinking at his desk sipping a coffee "} +{"id": "6004555", "video_name": "c43d6ea5-47f8-5985-ae34-60391b10b182", "text": "The moon is high above the maple trees, high resolution "} +{"id": "5001304", "video_name": "380d4236-52a0-5f36-8b7d-f70584b6b301", "text": "video ai bots taking over world "} +{"id": "6003530", "video_name": "d5fab6ec-04d0-5013-8f9e-12b6db624c0a", "text": "High quality RAW photos of a girl reading in her cyberpunk room , Transparent , neon lights, 8K realistic photos. "} +{"id": "3003170", "video_name": "5192ebfe-f956-5ee6-9855-739f2722cf4e", "text": "A HORRIBLE SEA STORM VIOLENT WAVES AS CAMERA SLOWLY ZOOMS OUT AND OANS FROM LEFT TO RIGHT Message: bOo mCNAsTY (Font: RETRO) "} +{"id": "7003500", "video_name": "0ca41673-17fe-5a66-b0a4-e487b577db7c", "text": "ninja jumping, full body, quick action, anime style "} +{"id": "3005610", "video_name": "9d604dac-18a0-538b-bdb2-5634a36adb64", "text": "a group of middle aged Asian women dancing traditional Chinese ribbon dance in front of an old temple against Chinese flute music. "} +{"id": "1006480", "video_name": "7690d8dc-4c47-5218-a60d-a3e272d7f116", "text": "Create an image of a Homo erectus individual or a group in their natural environment "} +{"id": "2003516", "video_name": "9e8abedd-998e-5027-af4f-eff88d032b7d", "text": "people sitting on the sofa and watching TV ,1970 photo, hd,realistic, "} +{"id": "2005227", "video_name": "ac3c1bc1-d576-5df5-93ab-143388341534", "text": "fingers typing on the keyboard, 9:16, "} +{"id": "1004239", "video_name": "4e795ca0-bcf1-5361-a3a9-f7349ef7bd9a", "text": "Evrybody in the Indian king dashrath palace were very happy "} +{"id": "8002222", "video_name": "47eaa3c5-d0ec-522e-b9b2-9f3e7b10e2ef", "text": "a train comming out of tunnel and flying into air "} +{"id": "1003970", "video_name": "494bae18-93d2-55d9-85f4-6a00dfe241ef", "text": "a sky of Nantes France in the sunrise from a plane Message: Nantes (Font: MODERN) "} +{"id": "0003843", "video_name": "446c7f20-c037-50d2-a6fc-f6b8c3338795", "text": "a cute panda dance in the cake "} +{"id": "0005404", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "a hindu god beautiful youth with a glowing complexion the color of rain clouds. He plays a flute, attracting the hearts of all. His cheeks are brilliant, His smiling enchanting. He wears a peacock feather in His curly black hair and a flower garland around His neck. "} +{"id": "7002993", "video_name": "53b60547-0e79-5035-95dd-7d2e88da2cb5", "text": "trying to catch a coin inside a well "} +{"id": "6003662", "video_name": "414dc610-4d26-5872-b7da-4c0f7d97b164", "text": "Flowers, paintings and musical notation (aesthetics) "} +{"id": "1006096", "video_name": "6fc98444-2502-5535-ae49-2a9077680f05", "text": "The volcano has not erupted yet "} +{"id": "8003484", "video_name": "27074efd-cbd1-5d6f-a06d-3a4734f30759", "text": "ghosts flying through cyberspace and robot aliens, in style of 80s cartoons "} +{"id": "4002022", "video_name": "5147f442-88e2-5dcb-a3e2-9475adc7ddf4", "text": "men wake up to they bed in the morning, cartoon boceto "} +{"id": "0005030", "video_name": "136d69fb-91a8-50bb-b306-fd1e972c0ecf", "text": "football players from fakel voronezh team Message: Alexey Nekrasov (Font: MODERN) "} +{"id": "0004813", "video_name": "0f951ca1-d3ab-5a29-97e5-3ebb35d7ecc2", "text": "fighting in war Message: madara vs Naruto (Font: MODERN) "} +{"id": "0003947", "video_name": "005de5be-274f-5204-b287-898a5abf0e0e", "text": "two boys Zhenya and Sasha, 3 years old, sitting in a diaper "} +{"id": "7003409", "video_name": "a7b4fc16-c1a7-5ba3-a680-a2efcee3dc63", "text": "a girl with white t shirt stand in the middle of the room "} +{"id": "1006098", "video_name": "6fd20366-100e-5a9e-9423-5bbb1eaef40a", "text": "A pretty girl is walking backwards down a busy street\uff0ccamera following, smiling "} +{"id": "3005335", "video_name": "d38bfaad-8db9-5092-857d-63eaa13400e6", "text": "when bacon flies, 10 seconds, sunset "} +{"id": "2006392", "video_name": "3dda3be3-8cf7-5cda-b7b9-9b796fb0e0f5", "text": "a 2d animation video with Indian village and there people "} +{"id": "0003182", "video_name": "38deb487-e73b-5016-8b2e-be8bc89e03d6", "text": "I want a image of a Indian shoulder in 1870 "} +{"id": "4003857", "video_name": "d534f41b-d2e8-580b-b7a5-c4edc9a06040", "text": "a young man sits at his desk, hunched over his computer "} +{"id": "4004013", "video_name": "ba944e93-50de-5d35-959a-1be2549640f0", "text": "In the forest, the trees are wrapped around the plastic wrap, the trees are about to wither, the sky is shrouded in black mist, and sewage flows on the ground, reflecting the polluted forest and the painful scene of the forest. "} +{"id": "2005503", "video_name": "368e8b7a-92ec-5b75-b984-ac69021cfe3d", "text": "The geyser invented by Benjamin Mogan was providing hot water and there was no problem even in the cold. "} +{"id": "1006230", "video_name": "7235c3b1-25a2-57ab-9604-4de91b24e2cb", "text": "parrots in jungle with storms seeking shelter "} +{"id": "0004695", "video_name": "0d6f3406-5b9a-53d0-9e3f-e14afbcaf174", "text": "a little girl dressed in her school uniform, standing in front of her house "} +{"id": "7003842", "video_name": "db2df2f6-73b4-53e5-a559-466041954619", "text": "Art brut dog, bright bold colours, thick textured paint, thick black strokes, incredible detail "} +{"id": "4002647", "video_name": "40ec58b3-ed35-5dc5-9512-c2dae8dd12a6", "text": "Mia, Leo, and Zoe gathered around a campfire, maps spread out before them. "} +{"id": "6004989", "video_name": "3234cf86-8180-537a-8c94-ea3f1f0032c0", "text": "car going on snowy montain road of kailash "} +{"id": "0005078", "video_name": "145d8c26-c3d2-53af-835b-3789ec33c435", "text": "A visually stunning and cinematic representation of a futuristic planet filled with advanced technology and humans. The scene is captured in a widescreen 21:9 aspect ratio, with breathtaking visuals and attention to detail. The setting is reminiscent of a science fiction movie, with sleek and innovative architecture, glowing neon lights, and bustling activity. The image portrays a harmonious coexistence of humans and futuristic technology, creating a sense of awe and wonder. "} +{"id": "7004748", "video_name": "855f84bb-0422-5856-8a64-abcc75af5a2c", "text": "man waking in and his shadow is moving away from him "} +{"id": "4002264", "video_name": "8fbba553-d2fa-54e6-a473-ec39e815eeb9", "text": "close up pan of dnd staff glowing purple "} +{"id": "2005012", "video_name": "a43ebef4-742a-5a83-95bf-bd83c7ccf53f", "text": "a tall, white man with black and straight hair, with sharp face traces, purple eyes and a mishchievous smirk. on the background its possible to see the black night sky with shining stars "} +{"id": "8002356", "video_name": "08761473-844f-5542-bc50-aa62409b6344", "text": "a cat playing guitar an a dog dancing on beautiful mountain night landscape, moon, lake, water flowing, trees, photorealism, detail. "} +{"id": "6002443", "video_name": "2e963e7c-8114-5e06-bf8a-b54816885e1a", "text": "sun rising between two mountains with snow on the top of the mountains "} +{"id": "0006536", "video_name": "2e568ac6-5cb1-5f56-b44f-521229b17e21", "text": "They saw amazing sights and met interesting beings space "} +{"id": "6004508", "video_name": "d3eb9f72-c5fa-5632-91ac-212a63f7a2be", "text": "man walking in Mystical night forest cloaked in an enigmatic darkness, cinematic scene unfolds "} +{"id": "7002099", "video_name": "1d974b1d-42d7-572f-b744-74f577a023e1", "text": "Shiba Inu has no food and feels very hungry "} +{"id": "7002187", "video_name": "82d0f7f6-627d-53b5-bfc7-0e4de8b3a5b3", "text": "Picture of Arjun, a brave young warrior, stepping into the jungle with determination. "} +{"id": "7002109", "video_name": "d1083b89-d07d-5256-8ebe-ae633aa95963", "text": "a 10fps video of a cat falling "} +{"id": "2007586", "video_name": "1a2b1476-03cd-5596-8c6c-96773911dd0b", "text": "Paint a vivid picture of dawn breaking over the cityscape: the way buildings catch the glow of the early sun, streets slowly lighting up, the hush of the city before it stirs into the bustle of the day, and the blend of cool shadows and warm light creating a mosaic of the awakening urban life "} +{"id": "8002087", "video_name": "838bc625-cceb-5a02-9644-f12a9e8e0290", "text": "a light opening in the sky (cinematic) "} +{"id": "7003839", "video_name": "435b4f10-5f5f-5ae1-a553-afb64b6fe950", "text": "show man that finding home in jungel "} +{"id": "2005322", "video_name": "4b2c8d5c-3068-53ab-86d6-f7ef4ac699b0", "text": "bathroom flooded to the ceiling with water, 1Woman floating in water in flowing dress, Fluttering hair, (Bathroom cabinet at the background:1.5), Corals, Fish, Glowing jellyfish, Dramatic overhead lighting, 4k. DSLR. high quality, Nikon D5 "} +{"id": "3006349", "video_name": "e981ee59-fa59-5df9-8f9f-11dd1d6d03cb", "text": "A poet, with a beard on his face, glasses on his eyes,\nFatua on his body, sandals on his feet, Shantiniketani bag on his shoulder. "} +{"id": "6003805", "video_name": "5af5f3ec-9e3c-5a31-b67a-1ff9ca9eb3c5", "text": "spriderman eating in a building, extreme high angle "} +{"id": "6003004", "video_name": "849c54cf-0ef5-58e2-9965-2287e49aaba1", "text": "An ancient tribe drinks hot water "} +{"id": "7002079", "video_name": "766b9c3a-906e-53dc-9689-7d83d00576c8", "text": "tow cars with color red and yellow racing each other. yellow car finishes the end line first "} +{"id": "0003307", "video_name": "3b5729e2-9cba-5f0b-ad66-1e03dd35782d", "text": "ancient trees in a mysterious forest "} +{"id": "5001624", "video_name": "654a3347-599f-5fd5-91de-c64959965716", "text": "Home Simpson Driving a Ferrari, Cartoon, Road, Sunset, Forest "} +{"id": "4004246", "video_name": "52b68486-ee91-5aec-b3b1-57fa963192c8", "text": "Trees Are Shaking And The Giant Spaceship Moving "} +{"id": "2003883", "video_name": "49b18dcd-1e0a-5870-b357-3beca2a063c3", "text": "a rocket flying through the clouds, realistic, HD, 4K, drama, cinematic "} +{"id": "3005597", "video_name": "c8d73b51-2aed-5632-96d3-16e4d413aaea", "text": "merry Christmas with all the classic characters of Christmas with a happy holidays sign "} +{"id": "0003920", "video_name": "45c72aa7-bd56-5241-bd7e-300c90c87651", "text": "animated cat scolding their owner caption: My Cat Grounded Me? "} +{"id": "6002187", "video_name": "68143e22-17ff-5e29-8720-40d6da734328", "text": "Anime Purpe Mystic Guy with light eyes Run "} +{"id": "8002760", "video_name": "65d9bbae-06ea-5eaf-bca6-6882aea98998", "text": "a beautiful dark skin woman stands at the edge of a rugged cliff overlooking a vast and challenging landscape. She wears running attire, her gaze fixed intently on a distant finish line. The wind sweeps her hair back as she holds a determined expression "} +{"id": "8001351", "video_name": "20c5882c-b593-59f7-9873-b5a03c151624", "text": "the chinese girl in blue jeans "} +{"id": "1003160", "video_name": "3a37284d-09b8-5d83-8793-8990e226a491", "text": "woman talking, clouds fliying, solar ligth "} +{"id": "3005622", "video_name": "bf5a4919-4692-55c7-ac5e-ea0e64112d2b", "text": "a over decorated room without a table Message: Table (Font: MODERN) "} +{"id": "6004340", "video_name": "ed708af1-6c23-52c0-933e-1c5791bf9392", "text": "A young village boy standing out from the crowd "} +{"id": "2005710", "video_name": "dd67ae17-77e5-5214-b125-dc8f0e079ed0", "text": "Minh Anh, with long black hair and bright eyes, comes from Vietnam. She is always warm and professional, loved by her students and respected by her colleagues. "} +{"id": "1003649", "video_name": "433323ff-a4f7-53cc-bcb0-312cf5fc66b7", "text": "Ukrainian military defends itself against Russian occupiers "} +{"id": "3005802", "video_name": "f498ffe3-05d7-522e-b5ee-aa5ee2bfb3dc", "text": "imagine futuristic virtual reality shopping experience for clothing retailers "} +{"id": "4003641", "video_name": "860195dc-7779-5562-a2f2-30738be9035b", "text": "generate A joyful illustration of children cheering, balloons, and the festival in full swing as Casey arrives in "} +{"id": "8002034", "video_name": "41758d15-0a54-5ceb-a44f-212da9148c4d", "text": "To truly understand the roots of this enduring conflict, we must delve deep into the annals of history. "} +{"id": "7002015", "video_name": "ecf00fa1-610b-5d01-9865-7a4ab8777d2d", "text": "Detective Hauser inside the corporate building has a strange circular symbol in his hand. Cyberpunk. 1990s film style. "} +{"id": "7002261", "video_name": "0f2c3fb6-7740-5be1-a2e1-00256d8b6719", "text": "Once upon a time, in a small town surrounded by vast green fields, lived Farmer Fred. "} +{"id": "1003439", "video_name": "3fac6119-abe3-520d-82b9-f42bf5ce5e28", "text": "Only one woman danced with fervor and intensity in the year 1518 in a small village in Strasbourg, France. "} +{"id": "1005899", "video_name": "6c792984-8dcf-51ae-8c41-e5a3fc7f8a0b", "text": "meditation in a temple which changes it interior periodically "} +{"id": "8003969", "video_name": "3b126c9d-f652-5709-8dde-b9e3d6e0cac8", "text": "Broken glass and decayed furniture litter the floor. "} +{"id": "8003795", "video_name": "07c9d4d7-e26f-5e33-bf45-2058a386806d", "text": "kids watching a horror movie pixar style "} +{"id": "0006388", "video_name": "2ba6dcaf-b2e5-50b3-8716-511a7a4c8137", "text": "an attractive Christmas elf singing in a whimsical wasteland "} +{"id": "0004007", "video_name": "017f027a-0511-5a0b-83d8-af0620f8b535", "text": "tears in the face floor 4k "} +{"id": "2007961", "video_name": "e83ccaf3-8703-5dbb-8f0b-1b4223f15a33", "text": "man stood outside bookshop on a summers day "} +{"id": "0006840", "video_name": "3407355e-010c-51ac-af62-e9cbb539e207", "text": "People in dark robes walk through a dark dungeon to a red light . "} +{"id": "3004183", "video_name": "0205e56f-51aa-57b1-893d-4a4a33c59c10", "text": "a silhouette facing a heavenly evning sky Message: STAY FAITHFUL (Font: COMICS) "} +{"id": "1003104", "video_name": "392bba62-dfb3-5549-a8ae-77566b14af44", "text": "couple of relaxed nightclub dancer in neon style invites you for a glass of luxury cocktail "} +{"id": "3004612", "video_name": "9f040c76-ce85-5f00-b814-98fe78142066", "text": "Carefree young woman dances around while rollerskating backwards "} +{"id": "3005698", "video_name": "13e02291-2db1-5b81-a16a-cdef1432c2c3", "text": "image: Once upon a time there was a little fox named Roxy who lived in the heart of the forest. "} +{"id": "6002393", "video_name": "d9600af3-ebcf-5838-b0fe-00bea5e12f21", "text": "The village comes together for a festive celebration. Sam and his grandfather dance and enjoy the festivities. "} +{"id": "2007369", "video_name": "398f5bf3-1c0d-5cc0-b013-3ceacf932455", "text": "a robot walk on the river and look the blue sky all the time "} +{"id": "8001105", "video_name": "2c00cf47-9c43-51e1-b854-09993f761596", "text": "melting liquid pouring into the bottom of the drop; liquid silver; flowing across the floor "} +{"id": "8002421", "video_name": "92547cc6-4f86-5f6b-b229-2da3070a6179", "text": "hero traveling through the fire and the flames "} +{"id": "6004440", "video_name": "b053e1e6-7cc7-50e1-9137-28546e775a25", "text": "clear text emerging from close up of huge orchid petals flying in air Message: i love you (Font: MODERN) "} +{"id": "4002625", "video_name": "4fa951f3-a55d-5b33-b82e-1529738b2686", "text": "submarine truck, moving straight toward us, with headlights beaming through smokey sea "} +{"id": "6004875", "video_name": "e4471ba0-54c2-5fe7-bfa4-497e612e0862", "text": "blossoming rose in park. Macro lens. Time lapse. "} +{"id": "4002775", "video_name": "ecb91707-a351-5554-ad71-f834ccdaa840", "text": "the transformation from a new 50 dollar bill to a crumpled bill like a ball "} +{"id": "3005571", "video_name": "3b211848-bcd9-5640-bb33-02975f75e78b", "text": "beautiful wedding couple photos at castle in the mountains "} +{"id": "0005174", "video_name": "160ccd58-4b97-5d35-ba6d-06d126b9373f", "text": "a night time with a lot of thunder clouds, orange and blue tone , stranger things, a person standing with headphones on "} +{"id": "6004645", "video_name": "241d4156-877d-5dbf-9645-1c5ac3bb8cdf", "text": "Jack sparrow making a cocktail with rum "} +{"id": "3006266", "video_name": "24cb4105-6852-5df6-9e73-f7b0122f315c", "text": "white cup and inside goes a chocolate bomb and mixing the milk "} +{"id": "6003748", "video_name": "a53bbce0-1103-5796-bd03-dbb6a7dffa9e", "text": "a mermaid and a young man swiming in the sea "} +{"id": "6004803", "video_name": "6d27b609-b17a-5765-a9fa-dc8cdae86ca6", "text": "shaerp, aerial shot, wide shot, aerial drone, cinematic , sharp, panavision , dark sky, northern lights dance moonlit sky , long haired beautiful glitter glistening ghoaty with wet long gold curly hair and wet white gowns movement , slownoguon waves , waves crash agnostic glides magically through water Brittany Murphy , moonlight, skyline vik, southern Icelandic beach at night, Brittany Murphy\u2019s long curly hair moves in wind and her gown does too,moves glides , Brittany Murphy gliding through waves, wipsy, cinematic, shallow depth of focus, "} +{"id": "3005793", "video_name": "992bcd85-ee51-5df4-b768-81acbd19bb8e", "text": "The rabbit gives the dog a bone "} +{"id": "2007125", "video_name": "b8f42aa2-f2c4-5ab2-91a3-597c261e6741", "text": "a thoughtful woman of 35 years old "} +{"id": "8002046", "video_name": "d2994dae-a6f9-50bb-b479-07ba610a7eac", "text": "handsome beared husband who carry his mobile and busy in the mobile sitting in a sofa "} +{"id": "1004306", "video_name": "4f9103a0-3457-58e6-acdf-52aa01472cc9", "text": "entering furthur into the maze of mirrors with the soundtrack tiptoe through the tulips playing in the background "} +{"id": "1006666", "video_name": "7a13e1e0-3be8-5a43-85db-c53decdb88c6", "text": "a winter clothing setting with a young model Message: 1 Attachment "} +{"id": "1006501", "video_name": "76ff1b10-36e4-5500-848d-2aca0d035572", "text": "a rock band playing in an nuclear bunker, front of massive crow. Flames, pa speakers, guitar drum. "} +{"id": "3004530", "video_name": "82dc8597-8924-5c58-acae-07cb750dca25", "text": "A dog sitting on a cliff, sunset in the backround "} +{"id": "5001108", "video_name": "e5ae19d2-23e2-5d05-9759-0686038c2f44", "text": "A satisfied customer beaming with joy, surrounded by a vibrant array of colors. "} +{"id": "8002714", "video_name": "9c10c0b9-7145-5a40-9af1-81666541f15b", "text": "dark stage with lights at night time "} +{"id": "8002752", "video_name": "64dd953d-ac31-50f7-9e9a-d3e5fbbfaea1", "text": "Teacher dancing after reading a book to children "} +{"id": "5001557", "video_name": "5a81c64c-67dc-5a48-bd1a-7d5dd7f4a185", "text": "a family of cute little ants gathered in the rain under an umbrella, "} +{"id": "2007685", "video_name": "eab65322-38eb-57d5-a73d-85051fbe3b3a", "text": "Working with 10 or more people to sow and nurture the seeds of knowledge "} +{"id": "3005714", "video_name": "8d90e061-6e4a-59d2-9033-37488da42d8a", "text": "2d anime style ninja mere cat slashing a bamaboo stalk "} +{"id": "1004798", "video_name": "58b4c95c-3d11-5a5a-8a8c-434cfb96c95e", "text": "Title: The Adventures of SkyKid and Lightning Lily "} +{"id": "1005945", "video_name": "6d3ab94c-3720-525a-a944-c8d8c73db43e", "text": "car emblem shines at golden hour, circle gimbal shot "} +{"id": "4003400", "video_name": "954479df-89ce-5dd9-a521-ed45872fe3a9", "text": "barrell of slime Message: 1 Attachment "} +{"id": "1006860", "video_name": "7d453804-ffad-58db-8be5-bead8d1aa79b", "text": "man playing with Talking and Friends "} +{"id": "7002904", "video_name": "e01ba5fb-4b93-52e2-b3b5-5b19e176f3e9", "text": "A garden with many blooming flowers blooming slowly in the sunlight "} +{"id": "8001839", "video_name": "ae7b7555-719f-537c-b990-c4dd1366b9d1", "text": "Generate a detailed and immersive war scene set in a fictional landscape. Describe the terrain, weather conditions, and the overall atmosphere. Include a variety of elements such as soldiers, weaponry, vehicles, and any unique features that make this war scenario distinct. Highlight the emotions and tensions present in the scene. Consider incorporating both visual and auditory details to enhance the realism. The goal is to paint a compelling and intense picture of the wartime setting "} +{"id": "3006017", "video_name": "d72492b1-5ae9-5296-a59e-243fc0827792", "text": "Words in three languages: French, English and Turkish on a background of clouds and sky "} +{"id": "1004341", "video_name": "501bd7f9-99a9-5834-a05a-ff3d9a4bf0e0", "text": "a 1970s love story about a girl and boy who smoke cigarettes "} +{"id": "6004732", "video_name": "a74a01f2-77a3-51fe-a136-b9ce5b757179", "text": "Show them walking along a scenic path. In Ghibli style "} +{"id": "1006606", "video_name": "79066268-d634-57a7-a4d7-e13b76754221", "text": "Neon Desert Mirage: Craft a surreal desert landscape filled with neon cacti, mirages, and wandering adventurers enveloped in a radiant haze. "} +{"id": "0005955", "video_name": "23e4e4b4-5ccf-5458-bf8d-9b7cefcfc069", "text": "The king appointed a trainer for the parrot to speak. Many days went by but the parrot did not speak. Even the royal princes tried to talk with the parrot, but the parrot did not speak a word. "} +{"id": "3004800", "video_name": "c79f4e32-9cee-5ede-80c6-2cc15cbffe32", "text": "Red flag with crescent moon and stars waving in foggy weather "} +{"id": "8003925", "video_name": "e6342748-86f3-5cf5-872b-13faa7c4692b", "text": ":move the head make eyes shine "} +{"id": "3006384", "video_name": "137bb5c8-5864-5fd0-8f3b-90f5f8ba0392", "text": "generate a video depicting how foucault pendulum works "} +{"id": "4004122", "video_name": "4405aced-199f-53c7-ad4f-1a073fcab5c4", "text": "A line of striking WGA writers, their faces desperate and determined, marching in a picket line. "} +{"id": "8001237", "video_name": "51fc997d-277d-59fd-a5bc-0121f63b4946", "text": "A child playing with blocks in the living room "} +{"id": "2004479", "video_name": "1f9db82c-7441-5ad0-b53c-8295c6932537", "text": "firewall and the command prompt will automatically execute a script in a single command called a script and it is then used as "} +{"id": "7002793", "video_name": "8a742386-c4cb-522c-a7b9-35aa45056488", "text": "In this submerged world, iridescent coral reefs teem with schools of fish, bathed in the iridescence of streaming rivers and an array of lush flora. "} +{"id": "0005682", "video_name": "1f301aa7-5a4d-5a06-8620-e97baef72e37", "text": "Creaking floorboards, footsteps in the hallway 16k "} +{"id": "0004573", "video_name": "0b626b7a-397a-553d-bfbf-1ba5afbd32a7", "text": "a cute girl making a fat reduction meal, cut the cucumber first, then add the shrimp and stir Message: yummy (Font: MODERN) "} +{"id": "7002068", "video_name": "736f6aee-dbf0-5ef6-8f24-1ee8172166c7", "text": "Generate a video of a pumpkin with body, arms and legs running "} +{"id": "4002490", "video_name": "001fb1a6-587e-58e8-ba24-ef691cd307cd", "text": "Write an story of interrogation in secret basement about secret informations, interrogated person is angry and aggresive. "} +{"id": "1003717", "video_name": "44a2975d-5e85-5bfa-8d8e-18e980adbfdc", "text": "their shovels hit a hard object. Their hearts raced as they unearthed a large, ornate chest adorned with intricate carvings and symbols. "} +{"id": "1004821", "video_name": "59141513-493f-5bb3-999f-34d5ef2acaf8", "text": "A girl sitting in a college classroom with long black hair, 4k "} +{"id": "5001338", "video_name": "dda4986b-8451-59cf-a162-bdbfb1e58911", "text": "a military man, holding a machine gun in his hands, walks forward, behind him is equipment and other military men, and behind him is fire and fiery sparks. "} +{"id": "2003011", "video_name": "7e52c68e-7207-52eb-a490-530d0eb98524", "text": "three old mans chatting around a big tabble "} +{"id": "0006642", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "humanoid robot sitting on a throne, imposing dominance and respect "} +{"id": "1005590", "video_name": "66d64a5c-c8c1-5c61-a475-7c336ef1e68c", "text": "A scene of a person who is enthusiastically reading reviews and ratings on their phone "} +{"id": "4004342", "video_name": "a0b60a26-60f8-5ffa-868f-fe9bfdc27fa9", "text": "a cinematic shot of a dancing racoon "} +{"id": "0005562", "video_name": "1cf65fcf-ea6b-5e88-9a19-707f35373059", "text": "red blood cells and white blood cells flowing in blood plasma in 9:16 ratio "} +{"id": "7003743", "video_name": "91ff0046-cd73-5193-8239-855a48e75e66", "text": "dragon with big wings, wing movement, flying, air, animation "} +{"id": "8002242", "video_name": "3086d9d1-b884-596f-a61c-a7be20062942", "text": "A couple with their clothes torn "} +{"id": "7002045", "video_name": "071ead1d-77f2-5329-89dc-c12f2c9121a5", "text": "He reported that during a flight over the North Pole "} +{"id": "6002546", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "Closeup, clearly visible goose down snow falling slowly, blue sky and white clouds background, blizzard, surreal, 3:4 "} +{"id": "2005303", "video_name": "3462d793-9b8b-568a-ba99-f1d7e1bdcfd3", "text": "A man with a white beard showing Arab features, wearing Arab clothes, riding a horse "} +{"id": "7002198", "video_name": "0d857fa9-666e-56d3-bfd2-2e2c960e446e", "text": "make a girl standing in a forest ghibli style Message: ghibli style (Font: MODERN) "} +{"id": "2003176", "video_name": "67afaadc-c92c-5313-baa5-f2e68857fda2", "text": "Entering a door which is mysterious, quiet, strange, sad "} +{"id": "5001472", "video_name": "628c5a6e-2886-5644-b9bd-b39625e57272", "text": "A dinosaur roared through the green leaves and emerged from the dense forest, tropical rainforest, plants, facade, depth of field "} +{"id": "0003382", "video_name": "3c9c2127-0a33-5fac-99f4-41c89bab297a", "text": "short video of fish in a pond "} +{"id": "6002184", "video_name": "e0aab65c-e6f8-5471-89e0-c27ab79c49fa", "text": "17th century scientists talking background laboratory chemistry in flasks boil liquids, cocoa grains "} +{"id": "2006011", "video_name": "9d97dec6-3cd7-5d46-9751-1d4142776cc3", "text": "a 1933 film scene of a gorgeous burlesque sexy young women wearing a very short red dress and blue feathered large hat dancing in a small dark cabaret full of people dressed up for halloween party "} +{"id": "0005618", "video_name": "1e2fb26e-2386-5292-9b0e-08086f6af103", "text": "Feature a globe with currency symbols to represent a global perspectiv "} +{"id": "3006736", "video_name": "852b3cb0-e01a-5a42-9337-820466c8a7bf", "text": "the boy shakes the hand Message: 1 Attachment "} +{"id": "1003423", "video_name": "3f390183-dbe0-56d4-847b-1359fdd75d02", "text": "a kid driving a Tesla flying car inthe year 2058 "} +{"id": "2003554", "video_name": "26f75597-fbf0-50c8-9939-c7df9764bb6a", "text": "a superhero clapping hands and showing thumbs up"} +{"id": "7004879", "video_name": "ceed2a29-32ab-5d91-a55b-fa1c63aab63f", "text": "User and AI process huge data streams with interface "} +{"id": "8003327", "video_name": "505c2e39-946a-5605-9b7b-02ff74602e62", "text": "The Beatles playing at Shea Stadium wearing Lettuce Costume "} +{"id": "5001476", "video_name": "9f8758e4-83e4-5f76-b516-b4c6eee89235", "text": "King and Prince Are Standing in the ground facing towards us.Castle is in background .A man is on his knees.he is traitor .Many People Gathered Around To See The Justice .King and Prince Face Are Clear .photo realistic .ar 16:9 "} +{"id": "7002562", "video_name": "f6519689-c78b-5a0b-8dc0-34da4448f17c", "text": "mysterious ancient Chinese village with lots of green and waterfalls, pavillions, black and white ink caligraphy painting, materpiece, 4k, high sharpness, hyper details "} +{"id": "3006888", "video_name": "e734fb0d-30af-5200-8ef9-724c0aa00632", "text": "Show an animation of a motorcycle approaching a curve "} +{"id": "0006355", "video_name": "2b212d84-fc9a-5a6f-9a67-3ada214f127d", "text": "a rave scene in the 40s in a Zeppelin "} +{"id": "0003939", "video_name": "002b3a32-cc97-5b03-b3eb-3a72713ed0b0", "text": "can you make a train realatic for butter clarity "} +{"id": "6004589", "video_name": "14712ebc-7dcf-5784-9643-599ba554c5ad", "text": "Saoirse Ronan is an elvish warrior princess stnding in a windy landscape "} +{"id": "6004213", "video_name": "51acae3d-42d7-5ab4-a5e8-f357a1039197", "text": "drinking a toilet bowl of soda "} +{"id": "4003497", "video_name": "680d124c-1b14-5228-b1b6-3faa471bee5a", "text": "wrath of the lich king, Borean Tundra scene "} +{"id": "2003133", "video_name": "1052115e-f679-5c3d-ac90-f7429c8a840e", "text": "Teddy Bear casting as doctor, holding first aid kit bag running, on the sea island "} +{"id": "2005178", "video_name": "d4c77e95-1d85-5d82-9ef0-9360df596579", "text": "3d image, Riya excitedly enters a vibrant and enchanting magical school, carrying a wand and a hopeful expression. "} +{"id": "8001593", "video_name": "335af684-50c4-54a0-8e50-27473cbb325b", "text": "red Australian cattle dog walking in the woods, sticking for a ball grainy film style lithograph 1970s "} +{"id": "2004873", "video_name": "8d5799b8-ce0b-55da-bef4-d49b03bdb617", "text": "Holmes in a hat smoking upstairs in a modern city Message: 1 Attachment "} +{"id": "2005264", "video_name": "02b74bad-187f-5169-9442-f20b5a27a227", "text": "timon and puba modern minimal poster "} +{"id": "1006669", "video_name": "7a1f2e6a-b282-56bd-a51e-c789fb418ba2", "text": "Background set in ancient India, a group of people engaged in an argument, in 4K. "} +{"id": "7002680", "video_name": "6b5b885c-4922-5d81-a0ab-da01bd3bc5a9", "text": "sowrdsmen standing still in a battlefield, camera closes in, cinematic shot "} +{"id": "4004273", "video_name": "0988759b-a47d-56b3-b83b-d3cf6ae3ea3a", "text": "Dora the explorer flying around powerfully as her eye glowed with power and behind her she have all of the infinity stones rotating her in an circle manner "} +{"id": "1004664", "video_name": "56b65c29-3046-5ba2-bcf7-37bae607f317", "text": "a boy sitting in the forest and cry "} +{"id": "3003127", "video_name": "6fd55ba1-8a65-59c4-9afc-fcd8eed3d96b", "text": "Grandma took my mother to the kitchen to put the ingredients "} +{"id": "0006261", "video_name": "2992d03b-b141-5455-a1d5-7ec083b2d18b", "text": "A beautiful afro american woman is lighting a cigarette while she standing in the entrance of a modern elevator. She is wearing grey sweatpants and a olive green bomber jacket. The scene is captured as a wide angle full body fashion photo on 35mm film "} +{"id": "4002458", "video_name": "761614cd-afcc-5485-a35a-c5b96d9f18a1", "text": "A young woman in black dress running away from a security guard at night "} +{"id": "4004876", "video_name": "43669747-bb82-5bce-999f-45083955c2e0", "text": "a pastor preaching in a small church, wide shot, HD, cinematic, 10 seconds "} +{"id": "2004258", "video_name": "fcd27160-c5c5-5405-a0e2-da6763c9babb", "text": "emotional story image, a girl with a christmas tree on the right side "} +{"id": "4004694", "video_name": "ae3a695e-ae67-5157-a6d7-f61fad91e2d1", "text": "Father and son enter a guitar repair shop. The repairman smiles as he takes the guitar. Tools and spare parts line the walls. The boy looks around with curiosity. illustration "} +{"id": "2006069", "video_name": "718105b8-24a3-51ef-b1f2-0a81cf6ec826", "text": "A little girl begging, curled up and looking at the people walking past her "} +{"id": "6003723", "video_name": "b9407032-ca16-590d-9c81-0386fb35f2b5", "text": "news report that says the world coming to a end 5 just dropped "} +{"id": "7002765", "video_name": "2453aef9-18a1-57ae-8f00-040d403eb794", "text": "I am an AIML Engineer and working on a workplace saftey project where we are trying to detect if the workplace safety requirements like helmet and jersey are work by the workers. The tracking is going to happen through CCTV cameras installed in a factory environment and I am looking for data captured through a CCTV camera and shows some folks who are adhering to the requirement of Helmet and Jersey and others who are violating the requirement. Please share some images. Show multiple people in the image. Show a haradous workplace where camera based monitoring is very important. "} +{"id": "4002593", "video_name": "d632d219-6d4c-5f67-a363-846a983ca761", "text": "general shot of the profile of a man walking through a desolate city "} +{"id": "5001530", "video_name": "3dab3838-d566-5790-98be-6fd6421fcab2", "text": "a crashed spaceship among the trees. "} +{"id": "6004223", "video_name": "642b640c-1ae2-57f8-a168-6b320e3d3479", "text": "anime girl looking down from a tall balcony with strong wind and fireworks in the background, smooth, 4K quality "} +{"id": "5001909", "video_name": "470eb4a9-2f97-59c6-bd95-4f4ad01cf70d", "text": "an airplane flies by in the air in the dark cloudy night sky, with clouds over head making a creepy formation "} +{"id": "8002938", "video_name": "f988fae5-ef6d-5620-9407-af9d8530ac02", "text": "Once upon a time, in a small village where everyone lived harmoniously, "} +{"id": "0003298", "video_name": "3b32392c-cbdf-5e52-98c7-ebe939e2622b", "text": "a grownup woman with white hair standing with her right foot on a stone and a sword in her hand looking confidently as the camera backs off gently "} +{"id": "8003703", "video_name": "78794aa2-255e-5bf9-8895-d71eb20c1d81", "text": "Poor little boy poorly dressed in a room overlooking the garden and beautiful "} +{"id": "6003296", "video_name": "338d9bf1-a825-5a39-a923-2e81dc64a3c1", "text": "A daughter and her father sat on a stone pier by the river, watching the sunset "} +{"id": "3005192", "video_name": "2d03f802-8ded-5354-8b28-7712db56ea9e", "text": "sad lonely man with a shirt and a skew tie standing in a club between jung people that are dancing "} +{"id": "1004896", "video_name": "5a6c7458-e8d8-57f3-a0d1-677a1a7cc56a", "text": "two ancient greek men clad in togas asking for a loan from another ancient greek man in toga, inside room with pillars, medium shot, 16:9 "} +{"id": "6002978", "video_name": "d0acb40c-803e-5adb-a92b-ebbd3746865b", "text": "A person in their living room, excitedly unboxing a brand new set of QUEST 3 VR glasses, with the giveaway announcement from DotCSV visible on their laptop screen. "} +{"id": "1005043", "video_name": "5d355409-371b-55f6-a842-b9e1e5b3cb2d", "text": "Elderly earphones are not comfortable to wear "} +{"id": "1003055", "video_name": "382a652c-5a21-5dce-8a07-ed69daababa1", "text": "a bird flying from left to right in the sky "} +{"id": "0003337", "video_name": "3be79f7a-c75d-577f-8f6e-dbb776fe54ad", "text": "3d realistic video of boy wearing uniform "} +{"id": "7002710", "video_name": "43ced604-59c6-5cea-8476-ef0af29c45a6", "text": "The meadow should be bathed in soft, ethereal light, with sparkling petals leading towards it. "} +{"id": "2007302", "video_name": "bd846e0d-58c9-5f14-9d42-32040b556fa7", "text": "one sunny day in paris, two astronauts wearing algerian 16th century clothes,cinematic,realistic,highly defined "} +{"id": "8002314", "video_name": "05f0dc7b-0530-5682-afd0-56adc1ad215a", "text": "rover robot (4 wheels) navigating in the Atacama desert "} +{"id": "0005604", "video_name": "1ddb8cda-ac73-58f8-97e0-2926a3435039", "text": "a cute girl elf christmas child elf big ears in pink and gold trim cloters hat and long brown hair "} +{"id": "8003499", "video_name": "740c0632-ba3c-583a-847c-eba7ad7499bc", "text": "two handsome young man fighting on the rooftop of the wheel "} +{"id": "6002721", "video_name": "9fcf3fba-8894-5df3-bfd2-1951e358e003", "text": "a star exploding with lots of motion, camera shake, and an astronaut getting blasted away, twisting and turning in the 0g space "} +{"id": "2006586", "video_name": "0546a722-f91a-56bc-8e97-1a65396976e4", "text": "make this better make it catchy and easy to understand Message: 1 Attachment "} +{"id": "4003464", "video_name": "bac1dc31-5283-5d18-a1b3-0b3dc7fc24f5", "text": "10 year old boy playing in football field with friends "} +{"id": "4003248", "video_name": "32f5030b-bb82-52ba-a95f-baeaa7ab72b9", "text": "millions of people singing and dancing happily in a mexican town marching happily singing holding hands "} +{"id": "6003947", "video_name": "d0c7a0d0-0f20-58c7-8d41-cc56c246123b", "text": "Fluffy, with her wings fluttering, cautiously reaching out to the Glimmerstone, her eyes filled with anticipation of her wish coming true. "} +{"id": "2004858", "video_name": "ab615ee8-5006-56e5-b69f-df770f462b96", "text": "As they gradually approached the heart of the forest, the enchanted silence grew even more profound. It was no longer just something they observed; it was something they felt deep within their souls. The absence of sounds from birds, the stillness of the wind, and the peculiar tranquility of nature were all signs that this forest was truly extraordinary. "} +{"id": "1003366", "video_name": "3df56989-ac2a-5bdd-b0da-d95d50ee0043", "text": "A little girl listens to songs while doing homework "} +{"id": "2003650", "video_name": "2ba46b59-a393-5ce8-9f09-18ae762c57ab", "text": "soldier reloading an advanced scifi gun, rifle reload, gun opens up, experimental machinery in gun "} +{"id": "0006249", "video_name": "293811ee-43d4-50d9-83d8-09b6f61c0d98", "text": "a video showing autumn maple leaves flying all over and a beautiful punjabi girl like neeru bajwa walking over those leaves on a beautiful hill "} +{"id": "1006404", "video_name": "754a6f2f-dc38-5f10-90ad-1f282c665be0", "text": "create a modern logo Message: Eleven Studios (Font: MODERN) "} +{"id": "4003891", "video_name": "445250cd-1bf9-55d3-9e4d-847b6d154425", "text": "a Dragon ball Z super sayen who gets angry, close up of his face with a quick zoom, lightning and flames surround him and his eyes are white and full of anger, 4k, manga style "} +{"id": "1003253", "video_name": "3be51840-965a-56fc-9065-bbaf80580adc", "text": "They heard a knocking on the door from outside. "} +{"id": "3004562", "video_name": "3af91b27-9f0d-5298-86e0-e93b8c8ac9db", "text": "cat loving with their cubs near sea . birds fly on top "} +{"id": "8003466", "video_name": "3be4b3d2-7508-50ba-a363-4e8efbf11d08", "text": "animated sun shinign in the mid day, providing heat to the ocean, river continuining in ocean surrounded by some trees "} +{"id": "7003830", "video_name": "4f345132-c94b-560b-9bdb-c5fc81b19169", "text": "car window open then a man buy fruits "} +{"id": "8003911", "video_name": "ce0c6dbf-2c89-5482-930a-0069f55de8cf", "text": "a boy is walking on the village carrying a samurai who is heading towards several young people who are hanging out in front of the shophouse, night light, quiet situation, anime image style, clear image quality, looks realistic, image ratio 16:9 "} +{"id": "1004313", "video_name": "4fb6ef5f-3d6d-545b-b95b-02b26dd2cc18", "text": "a black cat sitting on the floor next to a fireplace in a living room with a fireplace and a couch; sots art, concept art and animated "} +{"id": "1003071", "video_name": "38806612-03c9-53d7-9bcc-29b69e46ab4c", "text": "2 man discussing in the middle of the street "} +{"id": "1003222", "video_name": "3b599e97-337b-59ee-876b-4c8177e1b390", "text": "The main character takes shelter in an old warehouse. A pile of zombies in front of the warehouse door are trying to open the closed door, but the main character does not allow it. "} +{"id": "7004012", "video_name": "2bee18be-6600-5704-bdb0-c223f027fdb3", "text": "fire Message: bmw x5 (Font: MODERN) "} +{"id": "8003826", "video_name": "73cbcebd-c8b1-566d-a7a4-ba56bb5964b7", "text": "girl hug to a brown cat Christmas "} +{"id": "3004101", "video_name": "0c305bc2-4c1f-5608-b465-e088844b6367", "text": "A cute girl with long hair wearing a skirt is skateboarding on the road "} +{"id": "2004456", "video_name": "f81b55d7-0956-5e4b-ae28-fb7dee08c6af", "text": "small horror town, houses, big manor, dark background, family "} +{"id": "7002688", "video_name": "ae4c6e98-ba3e-5b27-acd8-ec69ee79329f", "text": "everything is made of voxels, horses on a beach descending from a rainbow, cinematic camera movement, western, wes anderson, star wars spaceships in the sky, cinematic, shot on bleached kodak film, 16:9, voxels raining rainbow candy "} +{"id": "0005171", "video_name": "15fd275a-ea23-59e6-a693-27930d2dd03c", "text": "a girl who makes a video call "} +{"id": "0005269", "video_name": "179527b1-36a5-5053-afa8-426cb09c2ddd", "text": "the first Sparkling Stone revealed itself, emitting a soft glow. "} +{"id": "2006398", "video_name": "4a5281e6-ee3c-5dfc-b234-d6c59c0e97a2", "text": "A happy kid playing with bubbles in a backyard "} +{"id": "5001009", "video_name": "657a13ff-ab4a-5611-96b2-b173ede40e4f", "text": "scientist working in a lab, cctv syle camera "} +{"id": "4003048", "video_name": "af2e22b7-ae92-5dd2-9389-1933a9507f08", "text": "socrates is speaking with his students, specially with plato. "} +{"id": "2004447", "video_name": "801e9455-a0a7-5775-a479-d74c84d87d93", "text": "An old lady smoking on a motorcycle "} +{"id": "6003823", "video_name": "ab1aca95-669c-5c8b-8ae4-c659e6bf57b1", "text": "Shot of a man falling into a flooded street. Hyperrealism, octane render, 4k, seeds 373474 "} +{"id": "3003210", "video_name": "985b0906-3612-5500-b7e6-6b31b46b0ce7", "text": "appearance ancient women Fair skin was often prized, and grooming practices differed widely. "} +{"id": "1006668", "video_name": "7a1eb7e4-d883-556d-a7c4-cc71dae3e5f6", "text": "chronic sine wave, pulsating, fast movement "} +{"id": "6004343", "video_name": "a2eef1df-2d09-54e7-b17b-5165be92caed", "text": "tsunami overtaking lone child on beach "} +{"id": "2004918", "video_name": "a441bd60-eb2d-5487-92a7-5fc426c061d7", "text": "Two beautiful white dogs play with a small red ball "} +{"id": "4004549", "video_name": "0eacf395-7d5f-52d8-8f87-21be66967e6b", "text": "black and white streetscape in a large metro with rain "} +{"id": "7002429", "video_name": "c786a4a0-ee97-5e56-bd76-3d9c3e356d53", "text": "Welcome, young adventurers, to the enchanting world of Minecraft! Gather around as we begin our tale of bravery, friendship, and magic. Today, we meet our curious siblings, Alex and Lily. They live in a peaceful village, known for its kindness and harmony. 2D Minecraft Animation "} +{"id": "1005395", "video_name": "632fcff8-d8f5-51a5-a587-8c1395633466", "text": "a sunset with two palm trees in the foreground, vaporwave sunset, synthwave sunset, synthwave art, ( ( ( synthwave ) ) ), sunset illustration, retrowave art, sunset psychedelic, retro wave, 80s poster, art deco outrun anime aesthestic, vaporwave sunrise background, summer sunset, masterpiece epic retrowave art, synthwave art style "} +{"id": "4003391", "video_name": "2c07f0c9-ff73-5d90-88aa-c9efb056e8fc", "text": "create a building what is on fire "} +{"id": "4003263", "video_name": "bd1d7e9b-9fc3-59e3-9e67-e2507b63cc60", "text": "With location history, draw a nice picture that two people are dating "} +{"id": "2006332", "video_name": "b9dd6900-5c15-5358-90e4-2715d8b8b386", "text": "a magenta background Message: Meta Talent (Font: MODERN) "} +{"id": "7002568", "video_name": "37ca3b95-6ba8-563f-b2dc-8476e20d733b", "text": "3D animated a cute puppy dog eating fish "} +{"id": "8003963", "video_name": "470fe854-8916-5bd6-8027-b208de2d4d1b", "text": "old man sitting on a couch doing practice in physiotherapy. Therapist sitting infront of him and showing what to do "} +{"id": "6003910", "video_name": "6057a91a-542f-50a0-ab05-6ad4a83f31fa", "text": "Nacho Cheese chips doing the floss dance "} +{"id": "6003812", "video_name": "3797cb94-0bfe-5619-82dc-936ed15aa3d1", "text": "A gamer guy playing game on PC, the camera looking from a bit behind him but mostly left side of him, every color in the background is magenta colored "} +{"id": "2003646", "video_name": "60a3bd8c-079c-54cb-ac2a-89d6447ab05c", "text": "The goats swim to safety on the riverbank. They come to terms with their mistake. They recognize the value of cooperation and compromise. "} +{"id": "0006765", "video_name": "32a614f2-2917-555d-a3d8-4e80d82dba4c", "text": "building, realistic, front view, game asset "} +{"id": "3005263", "video_name": "7fe63425-689c-5740-9d0c-fe44ed7a36bc", "text": "space shuttle getting ready for take off, nasa, grainy film "} +{"id": "8001522", "video_name": "76fdb305-739f-5506-b9b6-d09bc89151e4", "text": "the first one will be a new user name dim and the second will have the following name and the second one will be a different user name and the second is a new "} +{"id": "6004958", "video_name": "47049164-3a5d-5162-841e-706d897f01d6", "text": "a family of 3 members a man a women and a little girl "} +{"id": "6003800", "video_name": "779abef4-b693-5611-b863-402304059986", "text": "batman and robyn fighting joker on roof top at night "} +{"id": "0005858", "video_name": "226e44cc-64fe-5c9e-9c2b-d39f3ff2c484", "text": "a trippy video of this imag "} +{"id": "2004654", "video_name": "ffcaac29-aa92-5ed0-9995-5eb29e49f523", "text": "An Arab woman with a full veil that does not show her face stands as the judge\u2019s mother, and next to him is a consulting man in the courthouse in the days of the Abbasid era. "} +{"id": "2003282", "video_name": "08a04a29-86f4-568d-83dc-776287df0fa1", "text": "In a charming and lively seaside village setting, a cat with a sly and almost laughing expression is seen sprinting away with a fish in its mouth, clearly stolen from a fisherman. The fisherman, in hot pursuit, shows a mix of astonishment and annoyance on his face. The backdrop features quaint village houses, boats, and fishing nets, adding to the playful and captivating ambiance of the scene. "} +{"id": "8003942", "video_name": "77c7ff5f-ef5e-5867-a746-0f464449d991", "text": "The appearance or emergence of a huge scorpion from under the desert sands at sunset, smoke and dust falling from the scorpion on the desert sands. "} +{"id": "4002599", "video_name": "0775808b-4416-5c0f-a522-3bd60575c972", "text": "moments leading up to the assassination attempt President Ronald Reagan "} +{"id": "5001160", "video_name": "deded1d5-70f3-5785-ba4d-2800bdac273d", "text": "tommy vercitty comes to vice city after 30 years "} +{"id": "2006794", "video_name": "d78a1335-50c8-577f-aa15-f81497d35fd1", "text": "police special forces in the night city "} +{"id": "0006122", "video_name": "26fe2807-14bf-5179-b4be-c59ce3fce90a", "text": "create a girl who is boyish and falls in love at first sight with a handsome boy in 3d animation with 4k resolution "} +{"id": "1006348", "video_name": "74343ba8-5696-5d69-80e6-3a1303f5976a", "text": "anime, black background, golden clock, moving "} +{"id": "8001929", "video_name": "f06d0280-58d2-5255-ba65-bcf5a27a039a", "text": "an oscilloscope drawing a 528 hz frequency "} +{"id": "3004534", "video_name": "31a4d82a-6681-56fe-9f99-8e0ffec1873e", "text": "Lily facing a towering mountain, her determination evident as she begins her ascent on the challenging quest.Animated cartoon "} +{"id": "2003973", "video_name": "950be074-3103-5624-bf21-45266be7632e", "text": "create a 3 min video with the title 10 famous quotes from Bhagavad Gita "} +{"id": "0006467", "video_name": "2d10225b-be62-5f8d-a32d-1f40b4689d45", "text": "Has anyone connected an LLM to the akashic records? "} +{"id": "2006700", "video_name": "6f1b015b-ef73-5839-aeed-5da688ebedac", "text": "The feelings for you are incredibly strong. "} +{"id": "1006105", "video_name": "70107c7c-9ebd-5535-8c05-27e59102ade7", "text": "Li Qinq Who is the hero of League of Legends now is Danceing "} +{"id": "8003849", "video_name": "c6825ce8-59f4-5af4-b580-4928809f17cf", "text": "The guy is sitting in the background of an abandoned city and the camera moves away "} +{"id": "6004318", "video_name": "01932015-b47a-5f9d-914b-c85961dbff46", "text": "People may sprint with backpacks, desperately searching for a safe place. This could include scenes of individuals crossing wilderness, overcoming obstacles, or fleeing from the scene of disaster. "} +{"id": "0004273", "video_name": "06398b5d-d6fb-559f-97a3-d38eecdd3243", "text": "giant white dog running through a beautiful field of Texas bluebonnts flowers. Rolling hills. "} +{"id": "3003349", "video_name": "c2800092-8e0b-5601-8314-1a1fb2957816", "text": "red honda nsx, rain aesthetic, cinematic, japanese background "} +{"id": "4003264", "video_name": "c175755b-86ce-5979-a100-403ce147e71e", "text": "Out of window,as the sun rose, painting the world in hues of gold , cinematic. 3d animation style,video dimension "} +{"id": "2007417", "video_name": "7781ac5b-b917-5477-b2fe-366e1898668c", "text": "plastic disolve on a fire, 4k, cinematic "} +{"id": "0004683", "video_name": "0d428080-d207-5598-a3fd-65b3a5a17434", "text": "polar bear is skating on ice surface which is oval in shape and dancing to tune of sunflower "} +{"id": "0004021", "video_name": "01a8e4d3-fdde-50e5-ae79-970a24ba0e67", "text": "a blonde woman dancing in a nightclub "} +{"id": "0005329", "video_name": "18ebcf55-2d24-516d-9443-4cbdae80ee44", "text": "a car driving on a bumpy gravel road, conveying a sense of uncontrolled movement, portrait orientation, high quality "} +{"id": "0004098", "video_name": "032f90e1-0084-569e-99cc-6789f7595d68", "text": "a man driving a sport cart in the streets of El Salvador "} +{"id": "2006630", "video_name": "25c0964f-81a1-5fdf-a391-f1db9566b0d2", "text": "A hole in side the tree "} +{"id": "6002251", "video_name": "ecacc355-d711-52e8-b50b-1cb941e32586", "text": "A boy with golden hair, blue overalls, hands supporting his chin, melancholic eyes, The little boy is talking,sitting by the window, looking out the window, indoors, in a wooden house, it was raining outside the window,Cartoon, Disney ,UHD, best quality, super detail, award winning Message: 1 Attachment "} +{"id": "2005288", "video_name": "f9f5a4c5-56cb-568d-b073-f5e98ce10792", "text": "Neon light dancing universe stars aglow "} +{"id": "1006078", "video_name": "6f7aa22e-a34a-5409-8d15-1c0074c42d09", "text": "establishing show of new your city with two world trade center buildings in background "} +{"id": "0004204", "video_name": "04f1693e-d5e6-5b44-8f46-ebc145e9041e", "text": "A solitary man walking in the city. "} +{"id": "8003583", "video_name": "9fa9c268-ce49-5881-86d3-68d52c529b7f", "text": "Nick Offerman running a tool store "} +{"id": "4003346", "video_name": "0563aff2-cc35-5cb6-ad4e-ed1b330d7515", "text": "A dimly lit room with soft, ambient lighting. In the center of the room stands a young woman, EMMA, holding a bottle of essential oil. "} +{"id": "2006976", "video_name": "2a1bd1dd-3f6c-5fbc-a9e6-9c8306e5c435", "text": "overhead view of bacon on a griddle cooking "} +{"id": "6003807", "video_name": "8a8e7743-4266-5d3c-9d42-90f57931fa80", "text": "first person view walking into a cyberpunk city "} +{"id": "3003502", "video_name": "562baf7c-7550-5e91-9614-fce710925097", "text": "the interior of an UFO arribing to erath planet by james cameron and greg rutkowski "} +{"id": "4003429", "video_name": "98f5acce-1c33-50c3-a044-fae5170760a0", "text": "2060 scifi photo realistic photograph of an astronauts slam dunking a basketball on a playground court on mars, with a space background "} +{"id": "3006261", "video_name": "975eb8df-769a-5095-bf59-7958260bf876", "text": "shadow puppets on the moon, cinematic, realistic "} +{"id": "4004814", "video_name": "f438026e-998a-5dc4-ba38-b9ddc62ba3b0", "text": "Emily curling up next to a faithful dog named Max, using him as a living blanket.at Cozy little house on the outskirts of a bustling town cartoon image "} +{"id": "7003206", "video_name": "2ed80690-585f-5242-a8df-40a25d509cd3", "text": "sed girl and boy Message: 1 Attachment "} +{"id": "1004779", "video_name": "585add1d-cf74-54c9-9c22-0d953b53704f", "text": "Charging for electric cars of the future "} +{"id": "4003952", "video_name": "067a950e-1ec1-54ac-bc84-b11c4181c667", "text": "Chrome 4d Hypercube entering and exiting reality "} +{"id": "3005683", "video_name": "b1b8058f-4142-5726-be21-4fa37970f794", "text": "Closeup to thai rice seeds in ear of rice,Yellow green ear of rice in paddy rice field. "} +{"id": "5001345", "video_name": "195649c8-65e3-5404-8ef2-68e77a181f3a", "text": "a sketch of a sustainable furniture company made with color pencil and needle "} +{"id": "8003762", "video_name": "2c99d716-7d4a-56ef-88ca-b35d316f1749", "text": "The sinister entity Cloaked Woman shrouded in mysterious shadows "} +{"id": "0006050", "video_name": "25c4db92-b79e-5a38-ae96-3200d82d754c", "text": "Scorpio King as ruler. The photo should be full of drama and excitement "} +{"id": "4002124", "video_name": "ca1b070f-ae8c-5d45-b950-8cba53397c9a", "text": "jellyfish dancing deep water blue ocean realistic "} +{"id": "2004941", "video_name": "d397d9f1-844e-5129-810e-50ecb77ce614", "text": "militant Cleopatra in cyberpunk style rides a motorcycle through the desert, moving background, super detailed, artstation trend, clear focus, super realistic "} +{"id": "5001349", "video_name": "9fd2b743-15bf-5a03-b291-bbdb52501b02", "text": "Pouring sunscreen into a coffee cup "} +{"id": "4003471", "video_name": "8390d827-98c0-5391-adf7-22c468d843f5", "text": "smiling construction worker holds a blueprint. in the background is a construction site, Bright, dynamic, colorful image, sunset, photo realistic. "} +{"id": "1006863", "video_name": "7d4d362e-b2b4-55af-b33a-77e458aaf130", "text": "a group of people playing in a playground "} +{"id": "8001000", "video_name": "d352b109-20a5-5b95-baec-c0c79d6fa48c", "text": "The grand kingdom gate swings open, revealing a once magnificent kingdom "} +{"id": "4002689", "video_name": "a77b0437-a068-50d7-a4a2-9c48cd57c069", "text": "redhead business woman in nearby hd "} +{"id": "2003401", "video_name": "d64e3e74-bbbb-58d6-b270-68d1709db61d", "text": "The shop was divided into sections, each more bizarre than the last. "} +{"id": "3006603", "video_name": "81a5b8f5-97c9-5b91-b7b5-fc78a7fee0d6", "text": "British Cavalry of 15000 moving in Africa in 1879, very realistic, very detailed. "} +{"id": "6002382", "video_name": "2ba5d8dd-67ab-551e-a47c-483f025b226c", "text": "orange with black and gold skin "} +{"id": "1004200", "video_name": "4daa1614-f736-5b43-8d22-cd495c8c205a", "text": "Montage of Lily working different odd jobs and attending college classes, showcasing her hardworking and ambitious nature. 4k, cartoon, fantaty, midum "} +{"id": "0005632", "video_name": "1e6e7c7f-6fe2-5e44-bc9e-9db151492a20", "text": "use this photo, these are lego, create lightning in the background, make blasters come out of the lego iron man "} +{"id": "2005515", "video_name": "3adb66b0-bdf5-5482-a808-4a0dace50adf", "text": "a dog plating in the park "} +{"id": "0003758", "video_name": "42debc77-9230-52d2-ac12-46a7e5031edf", "text": "close up of a blinking light in an empty elevator. style: Japanese action movie. Message: u made me do it (Font: MODERN) "} +{"id": "0006102", "video_name": "269c2a77-01a2-54c7-a37e-33228f3a6756", "text": "distortion, alphabet, black and white line art, coloring book pages for kids, simple, alphabet B, perfect drawing, best, cute, high quality, blank background, "} +{"id": "0005132", "video_name": "15664392-2d7d-559a-a3a2-cc42879d3357", "text": "Cute kitten, walking in the snow, walking softly "} +{"id": "1003544", "video_name": "415de414-f35c-54ee-ac2f-0256473871f2", "text": "generate video of hbcu drum major walking to middle of 50 yard line on football field with the sun beaming on left side of face "} +{"id": "2005450", "video_name": "5fffc4a6-25be-50a3-88b3-ef857d85325b", "text": "a rich man wearing black coat suit coming in car "} +{"id": "3006507", "video_name": "a56e5bc2-4018-5cab-8d98-9fe8808149ca", "text": "a goose that is a god, anime, akira "} +{"id": "3004223", "video_name": "4b2c1f1b-1721-5302-bd59-26ce5d52ad69", "text": "kitten and squirrel having a party, party balloons, party hats, party horns, purple yellow and white theme "} +{"id": "1003621", "video_name": "42bb05ed-811b-5a40-a18d-6d9529f54afe", "text": "in living room day,slams the front door, scowling., cinematic,low resolution, realistic "} +{"id": "0006804", "video_name": "336040ed-f7b8-58cb-b6e2-2a7fe8a7d14c", "text": "video of a cow eating ice cream "} +{"id": "3004646", "video_name": "9ed7a899-93c1-5921-a535-6532bb66d3f0", "text": "beautiful anime girl running through a field of flowers "} +{"id": "1004060", "video_name": "4b4d8b57-18d7-556f-bd03-14ea63b13b51", "text": "cow flying in the sky looking down to other cow , realistic,4k, "} +{"id": "5001776", "video_name": "3445086a-5e7a-5b15-98e5-199e42381f56", "text": "a ship floating in the air 4k cinematic "} +{"id": "2004469", "video_name": "c24a8409-e85a-5b6b-b5fb-b9d7d17b3183", "text": "After that, the Army and the people of Pakistan took bold steps to save Islam and Pakistan. "} +{"id": "4002741", "video_name": "05514e50-9749-5c7e-b21e-aa5b5a93b7bf", "text": "People crowd is walking through the forest. golden hour. shot from a distance "} +{"id": "8001488", "video_name": "6045eb75-06cd-561e-9f92-2e91f91a9412", "text": "Jesus saying a prayer on his knees in a beautiful sunrise. "} +{"id": "2004160", "video_name": "1d6de0b7-674c-503a-ae1f-896c52d154d3", "text": "A stream of water comes out of the tapsimage:bathroom 4.jpg "} +{"id": "7004741", "video_name": "73e31d5f-3de9-5869-847b-958b628a1944", "text": "bright shining stars and moving silhouttes "} +{"id": "7002204", "video_name": "f40b8234-5730-5188-8c07-1ee7e8dc5a14", "text": "Illustrate Robert Kiyosaki , as a teacher,talking alone Message: 1 Attachment "} +{"id": "3003918", "video_name": "5d8dc7a2-b441-5b3a-8688-01390a7893ad", "text": "a field fulfilled with hundreds of flags, disney style "} +{"id": "2004022", "video_name": "722f774f-922d-5d18-a255-9536bb48e14b", "text": "Some puppies walking towards the camera "} +{"id": "6004044", "video_name": "af2ad05a-1aa1-586b-9eeb-489b78c62986", "text": "Timelapse of rotating stars in the Sky, HDR, cinematic frame "} +{"id": "6004502", "video_name": "b3560b58-fc7b-5abb-89af-37c189d3b2dd", "text": "stone tablets, consisting 10 commandments, israeli, divine, hebrew character, according to the bible "} +{"id": "8002233", "video_name": "ac908290-d13b-51e7-9bcb-851abeeae21b", "text": "ballon knot, high detail, moist, brown "} +{"id": "2003426", "video_name": "bfb1986b-6306-5292-91f9-cf7445eb7b71", "text": "a leaf appears from black background and spreads "} +{"id": "0004019", "video_name": "019eb7a1-f4f8-5d2e-94b4-e71e7817775c", "text": "beautiful fairy in the sky flying, ghibli studio style "} +{"id": "4002093", "video_name": "64c74b4b-6a23-59a0-857e-ea3c241176c8", "text": "A worker holds a skew ring spring contact part next to an oil pressure seal device for installation "} +{"id": "8001865", "video_name": "a5c6ceb3-9eee-5bf6-9150-a6a66364715d", "text": "Lily was known for her infectious laughter, compassionate heart, and an unwavering belief in the power of dreams. "} +{"id": "0006054", "video_name": "25ce70c7-55cd-50ff-9ed2-ddb19b55cd5f", "text": "sky with bright light and moving cloud "} +{"id": "6003859", "video_name": "94488294-c7be-5c2e-ad25-1df160bd0645", "text": "a man learning in library, with big windows, sunshine outside "} +{"id": "7002121", "video_name": "40f94952-4f22-55b5-807f-19c250f9ac31", "text": "High quality detailed dark planet is surfing through black hole "} +{"id": "1003218", "video_name": "3b49f03c-45ea-536c-9c6d-d7927f19f275", "text": "Dudu becomes a fearless pirate captain with a flashy hat and a trusty parrot friend perched on his shoulder. Bubu turns into a mischievous wizard, complete with a magical wand and a bubbling cauldron, cinematic view "} +{"id": "7003950", "video_name": "ae71912e-1e70-5a31-a898-e3cf6ffaa789", "text": "a space rocket with an alien inside Message: imposter (Font: MODERN) "} +{"id": "7004358", "video_name": "79988cdf-f3da-5ace-80a9-eb8098e0a0b3", "text": "A stainless steel sculpture of a super large magnolia flower, located on the surface of the water pool in the center of the lawn square, looks like a god of the eyes, with a luminous effect that shines from the inside out. It can spray water curtains, urban sculpture, public art, urban eyes, and the ultimate shape, modern atmosphere, and mirror effect "} +{"id": "6003443", "video_name": "04a88534-f284-5b24-8be4-4d4eec8c5a31", "text": "tesla roadster2 driving throw the beach "} +{"id": "7004255", "video_name": "1c636953-6141-5f5e-af62-dd1dce3940d7", "text": "acient egyptians tribe looking at space ships "} +{"id": "2004239", "video_name": "7df24b7c-ca01-56a8-a41e-7ef886fccd48", "text": "the eye of a white man, the man has blue eyes which are staring, realistic, cinematic shot "} +{"id": "0003905", "video_name": "45892cf6-c5a8-5745-987b-39b12859de02", "text": "a car driving through New york. Nightlife, citylight "} +{"id": "2007266", "video_name": "b053b7e0-6f32-5b2c-9c70-c85c9b66af6d", "text": "dazzle dota 2 character holding a Jesus cross near an ally while he hits an enemy "} +{"id": "4002333", "video_name": "af52d062-5fe3-5379-96a7-b38f8f01977c", "text": "And so, in the heart of the coral reef, the seahorse Sebastian, the pufferfish Pippin, and the clownfish Coralie, became inseparable friends. Their days were filled with laughter, exploration, and the shared joy of discovering the wonders that awaited in the vast and beautiful ocean they called home. "} +{"id": "2004038", "video_name": "b081649a-cce7-52df-bb4e-285c993ff9e3", "text": "animation style of Studio Ghibli and Pixar, Young man sets off on an adventure with his 2 friends, walking away, camera zoom "} +{"id": "8003701", "video_name": "59c3f7ca-0c71-52bc-b5ec-f2c54a695092", "text": "inside the spaceship cockpit, flying throu pace "} +{"id": "2007182", "video_name": "cb180f23-b3b3-5daf-bcf2-508685f7a317", "text": "killian mbappe winning the champions league "} +{"id": "1004163", "video_name": "4d14980b-d685-5c06-8025-7ee4b1c68098", "text": "an ant the size of an elephant crushing an elephant the size of an ant as they fly across the galaxy "} +{"id": "4002316", "video_name": "c526aa53-687e-5ac0-b2c5-580b02e65308", "text": "Ethereal apparitions haunting a derelict space station, in the style of cosmic horror, flickering emergency lights, claustrophobic camera angles, quick jump cuts "} +{"id": "8001764", "video_name": "24d6cad2-dd20-51bc-b39b-d517169ab3b4", "text": "mistical colour jelly fish blue and rainbow silver moving "} +{"id": "1006037", "video_name": "6ede69b8-b7f3-5e21-8978-07fbb2608810", "text": "make rare alien relistic in forest "} +{"id": "1004714", "video_name": "57820df0-b164-5fa9-a151-21ee3afb9054", "text": "Transition into imaginative animated sequences that bring the forest stories to life. Show animated forest creatures, magical landscapes, and the sense of adventure as described in the stories. "} +{"id": "7004745", "video_name": "2528ebfd-acc7-59ac-85a2-6eb10ac73895", "text": "drawing cultural center focusing on the building 9:16 dimensions "} +{"id": "6003569", "video_name": "c303cba6-593d-5ae4-9034-1b3a6e2af7a4", "text": "a big man with skull head walking in moviment trought the cemitery in the night, only candles lights are iluminating the scene. I want a movement scene "} +{"id": "7003034", "video_name": "b1ef7954-31fe-50f8-bf07-7e6bf8ef570c", "text": "white cat in a tophat walking through a foggy forest carrying a wheel of cheese "} +{"id": "5001526", "video_name": "9117f6fa-db51-5195-b3e0-e81b24787c93", "text": "a group of hikers reported an encounter that would forever change their perception of the supernatural "} +{"id": "7004801", "video_name": "4e5e1eb9-d03b-5a91-afcc-e85a1e77627c", "text": "wearing Air Force uniform and image should be high quality Message: 1 Attachment "} +{"id": "2004324", "video_name": "78090bd6-a4cb-500b-80f0-b988e3018138", "text": "view girls back meditating on a surfboard with sunset "} +{"id": "2005856", "video_name": "4782d4e7-f25e-5c53-8fc0-50cf8ba6b67a", "text": "a young surfer man, repairing his white van, outdoors in the morning on a sunny day with no clouds, camera zoom out, ar 2:1, cinematic look Message: Iteuve (Font: BAUHAUS) "} +{"id": "4002680", "video_name": "764586f6-0472-57dd-be72-24c84893c131", "text": "a spaceship is silhouetted as it travels in front of a full frame solar storm background. Ultra high definition 16:9 "} +{"id": "4002688", "video_name": "a07790c4-9eba-5fe7-b590-9d551bd0aec2", "text": "two friends sitting in front of doctor for check up "} +{"id": "2003479", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "create a sad 6years girl talking with her father in a balcony. keep it cartoon background "} +{"id": "7004263", "video_name": "2e5783d2-228a-590f-967a-88b1d3cba3b4", "text": "Suddenly, a flower began to speak softly, telling the little cat YoYo the secret of the garden. It turned out that every full moon night, the flowers would dance under the moonlight, celebrating the beauty of nature. "} +{"id": "4004199", "video_name": "8fe3fbcc-5b06-54ed-8ebd-5fc5e88d037b", "text": "boy follows the kite and goes on "} +{"id": "2004692", "video_name": "d51fea4b-ce9e-56b9-9adf-13367fabd687", "text": "Rain drops in the window with the view of Rome at night time "} +{"id": "0006073", "video_name": "26336d34-e6ca-5ec9-b659-c063f0c5a678", "text": "Illustrate the Snow Queen hosting a grand winter ball in her ice palace. "} +{"id": "5001442", "video_name": "7f9ed511-35e8-5dd9-97cd-9433aedd49e4", "text": "a pistol underneath a bar still seat surreal 70\u2019s "} +{"id": "1003864", "video_name": "473be11e-1b98-5684-81b1-9c5f4c3b3311", "text": "twilight time sky scene with little portion of moon is visible "} +{"id": "0004977", "video_name": "1298eb9c-2384-5e4c-a650-034f3c021783", "text": "The camera begins slowly across a busy food street, gradually focusing on a restaurant sign "} +{"id": "8001858", "video_name": "98afe295-40fa-5c8c-91fc-bf6ff3008eec", "text": "and it has a bad effect, 16:9 "} +{"id": "7003902", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970s, film grain, human birds landing on a telephone wire, during magic hour, cinematic, surreal, magic realism, dystopian "} +{"id": "2007024", "video_name": "6758757d-46dc-5e43-bbdd-b5519bf9d664", "text": "masked lead singer is dancing to industrial goth music "} +{"id": "1006987", "video_name": "7fd47049-0bf9-5322-84d6-82ec28afc909", "text": "a beaten down pirate ship looking down at the crew working from above. Its night, elements of horror "} +{"id": "2005475", "video_name": "cb75dee4-6a09-5eab-ba67-5007be1ed824", "text": "a guitar with flames on top of a van in a dark alley with fire in the background "} +{"id": "0005389", "video_name": "19f67c84-7fc4-585b-921f-637a48af9732", "text": "The sun is overhead while hoeing the rice. "} +{"id": "1006590", "video_name": "78b58f79-4b22-5369-afef-973a61f35080", "text": "a picture how a AI would look in the future "} +{"id": "3004829", "video_name": "d37d3f84-9b9c-50e3-bb55-0ba2d88d6d70", "text": "latex in black and white movie style of German expressionism "} +{"id": "6002058", "video_name": "f23ad5aa-4956-53b8-bce3-06bfaf7af1d2", "text": "donuts fall from the sky like rain "} +{"id": "7004904", "video_name": "4a432da6-1f9d-514a-ab76-96c994e1f2c6", "text": "game environment of bhaktapur 3d fps games, 2d texture "} +{"id": "0004358", "video_name": "07a27e81-8f03-5b76-b3a3-2ea32af1419d", "text": "a woman swimming in space, sunset "} +{"id": "1003523", "video_name": "41033bae-82a4-509e-acc0-5ed8ff3472a4", "text": "man in Vietnam with a arm in a day rainy "} +{"id": "0004675", "video_name": "0d1a7508-e8c9-597f-a357-fa3359adeb69", "text": "dutch angel burning man in pink room 1960s pub,asimetry perspektive "} +{"id": "6003249", "video_name": "e81c80e4-704a-5938-b53a-3497cc23f0f1", "text": "start night ride on a motorcycle. Girl with wavy brown hair "} +{"id": "0003391", "video_name": "3cb41c37-4035-5b9a-9e21-1557fe7efa62", "text": "God rest the queen of England "} +{"id": "7002601", "video_name": "bd38b5d8-eb17-5e8f-ad86-6692afec72a9", "text": "5g in mining industry application show how trucks and shovels will get connected to monitoring center how data points and drones will connect to each other "} +{"id": "6003448", "video_name": "0957e88c-305b-5579-9121-37be9a1a93ce", "text": "big and scary yellow and blue snake "} +{"id": "3004902", "video_name": "2d181f2f-0d7d-5106-81dc-740492a72005", "text": "Amidst the rings of a distant planet, a celestial cyborg fairy with glowing robotic wings floats elegantly, embracing the cosmic beauty of her surroundings. "} +{"id": "7003588", "video_name": "dc0b7eca-c876-54bf-b9c4-691499fcb8b0", "text": "Student T gets good grades in his section after helping his friends in his studies "} +{"id": "1005917", "video_name": "6cb5e18f-4354-57df-9f58-deed1553399e", "text": "phone box, city background, realistic style "} +{"id": "2004971", "video_name": "1b1fd6e6-92a4-5adf-a2e1-1cb8bcee459e", "text": "Latino James Marsden walks through a futuristic chrome server room "} +{"id": "4003353", "video_name": "2f3867a4-be6b-5716-bafb-95079a6ac200", "text": "Cartoon kung fu tiger wearing cheongsam and holding red envelope "} +{"id": "3003752", "video_name": "f667924c-a927-57e3-81c3-51c4e759b8bd", "text": "duck art car, two people, desert "} +{"id": "1005595", "video_name": "66ecdd16-e00e-519b-a3a1-9d828269ccd7", "text": "cheese dripping of pizza slice with all spiced "} +{"id": "8003210", "video_name": "4b37f3b3-ff7f-566c-a26c-296f26b41893", "text": "princess anastya is in her crystal kingdom "} +{"id": "1006414", "video_name": "75773675-120c-511b-aadc-e377b1b26b8c", "text": "Show the rhythm of a bustling cityscape from day to night, focusing on patterns, lights, and movements rather than individuals. "} +{"id": "2006334", "video_name": "c3fa8db1-43a5-588b-909d-aba139521c38", "text": "beautiful harley bike going down the road, crossing the ocean "} +{"id": "1004978", "video_name": "5c098c6b-e45c-50d4-a2fb-73cd9132409f", "text": "give me video man walking in the space "} +{"id": "1006527", "video_name": "7771b0f4-d3ed-5139-9d9a-dc28a0cc18c6", "text": "The Roman soldier is in the position of Joseph and is shouting at the people "} +{"id": "4003597", "video_name": "b45a729d-1eb0-599a-b297-e351d4431a75", "text": "In a dreamy city with golden roads, there is a crystal clear river with trees of life on either side "} +{"id": "6003051", "video_name": "c45575db-e1e4-5656-87da-9a1b4f8be775", "text": "People were scrambling to get away from the wax museum because there was a group of living wax figures chasing them behind them "} +{"id": "2007519", "video_name": "8b8faf5a-a68c-5045-a815-0cb536d3c6f9", "text": "A man on an Arbaeen journey wearing an Islamic Headband and carrying a big backpack, walking during sunset. He is surrounded by people on the same journey. Realistic photography capturing the warm hues of the setting sun. "} +{"id": "0005897", "video_name": "22ea28cf-4a7d-5626-aff8-65292a338c7b", "text": "Documentary film, wide angle shots show beautiful mountain scenery. The film follows the ecology of wildlife and the changing seasons amidst the chirping of birds. The breath of nature and the spectacular scenery strike a chord with the viewer. Bright sunlight illuminates the mountains. "} +{"id": "6003542", "video_name": "5eefbe63-f9a4-5ed5-8645-d94929bedbd8", "text": "there is a strange machine in the disco makes clapping with glittered gloves "} +{"id": "1006147", "video_name": "7099ae09-a2bf-52a6-967b-c63f455e21c3", "text": "a animated handsome man Looking like real man but animated cartoon tone reading a book "} +{"id": "4002070", "video_name": "3390a357-72ae-55c0-92d8-e08052a91abc", "text": "draw the roots of a large tree red "} +{"id": "1006118", "video_name": "702f1eee-7ab2-575a-92a8-a010a4a37389", "text": "create 1 pixsart style cartoon and a fox running in a forest "} +{"id": "8002295", "video_name": "0cf1e9e6-1aba-58d9-8e5d-98433fd4570d", "text": "psychedlic pig mandala zentangle lsd dancing trippy found footage horror movie alex grey art "} +{"id": "4002000", "video_name": "dbcb3576-e834-5e66-9f89-62200549b2b1", "text": "sunrise in see, some boats in see, photo graph by cotton wood Message: 1 Attachment "} +{"id": "8002197", "video_name": "d141dfad-c09e-5aa5-ba8d-8c598ec58bae", "text": "tiktok video celebrating the 20th anniversary of Kill Bill "} +{"id": "6002001", "video_name": "45746ab2-3d3a-55eb-a330-d7ba7786e090", "text": "strong white light beams from the sky in night forest "} +{"id": "8003319", "video_name": "e8429f99-635f-50ff-a452-6b1bab3bfcde", "text": "anime style cute baby dragon covered in white fluffy fur "} +{"id": "0004138", "video_name": "03e8516f-7790-5361-8810-ad6ee65f1a50", "text": "rain Message: Gratus in forest (Font: MODERN) "} +{"id": "2003829", "video_name": "64c3c3e5-058b-5383-9b6c-dd1b7bd13111", "text": "Show a scene with the young flowers teasing the Golden Rose. Narrate their laughter and mockery.4k ,3d video "} +{"id": "6004287", "video_name": "25f9707e-a990-5b25-bb89-27380cb72127", "text": "a an elephant dancing with a horse in the huge festival "} +{"id": "3003565", "video_name": "43b74ca7-7619-593d-bfba-29af3afd37b7", "text": "prom Broke businessman in dark blue atmosphere in circle and business centers "} +{"id": "8002408", "video_name": "d71f20e4-a2f4-532f-9526-caed6a9158d0", "text": "A cute boy walking through the forest and passing through the door that leads to another forest "} +{"id": "8002833", "video_name": "22d8ee17-e0b3-533d-89d4-7a1d31bcd91b", "text": "man slowly walking to the horizont and sunset is in a background "} +{"id": "7002244", "video_name": "b7bbe053-e46e-52bc-a8cd-95081a3ca3ae", "text": "a girl playing piano in a cozy living room with a shiba dog on the side "} +{"id": "6002611", "video_name": "770f1c8d-92ca-5279-b937-181c2a2e0d27", "text": "beautiful boat in a dreamy beach "} +{"id": "3006751", "video_name": "b96fbaf4-2f8e-595f-a30b-7db659a63306", "text": "Rocky mountains at night. Nebula beight in the night sky. Hidden UFO in the sky. Camera pans in and out of the center of the screen. Message: Laura Reed (Font: MODERN) "} +{"id": "7002242", "video_name": "a27f9f88-2dfe-54a4-ae3d-1796f00d8fa4", "text": "Winnie the pooh steering a steamboat"} +{"id": "7004258", "video_name": "cdfd0d63-27fc-5722-bee0-a2069b09e9a3", "text": "Realistic depiction of ancient Chinese sorcerer casting a spell, mystical atmosphere, traditional robes, incense smoke, spellbook, ethereal lighting, ancient artifacts, mystical symbols, Ming dynasty aesthetics, attention to historical accuracy, moody and mysterious ambiance. "} +{"id": "0004040", "video_name": "020cee8a-d48a-508b-bbb2-60383745a391", "text": "a Indian boy driving a car "} +{"id": "7004809", "video_name": "9665dc72-24e1-5849-870b-f5419124edc2", "text": "teenger joy in big music festival "} +{"id": "7003680", "video_name": "985a6310-4d29-5296-be7d-ae0f5e293508", "text": "Diligent bees. You tirelessly wander around, collecting nectar and pollinating flowers. Disney style "} +{"id": "2006949", "video_name": "9f30e4ee-7003-5a6b-be2b-c9121de107a5", "text": "70s arthaus film with magritte elements about people wearing masks standing in a field surrealist. dreamcore "} +{"id": "2005684", "video_name": "654200c9-b23b-5c95-9089-294f479f5c96", "text": "rapidly flashing lights . Bright bright white color "} +{"id": "2004688", "video_name": "e65847dd-f19c-5c9f-9f91-232ee624298e", "text": "cinematic, desert in day, camera zoom out between the trees, young woman with gun in her hand walking through the camera. "} +{"id": "6003973", "video_name": "c20934a4-40f7-5ed0-afa1-d8f1bb027358", "text": "Little bear looks surprised as the moon gets smaller. "} +{"id": "3006802", "video_name": "3075a427-4cd9-5dd4-a8ec-49fa83fe83d3", "text": "kenyan family, having a picnic together, smiling, sunny day, in the park "} +{"id": "4002665", "video_name": "dae04566-3148-5753-9bb6-439de5eae516", "text": "A young boy hugs his mother. "} +{"id": "8002991", "video_name": "e69126b8-c059-5200-853d-6b2e71b27658", "text": "mahsa amini reading and drinking coffee and listening to music in a library "} +{"id": "3004937", "video_name": "79198135-401c-503a-afb8-55ce6e30083d", "text": "1980s commercial, surfing underwater clear water huge surfing airs spins "} +{"id": "1006040", "video_name": "6eee999f-0956-55a9-8257-f3f9cc80a0ae", "text": "a city made, Hawkeye flying at high speed in outer space pull out their usual tails military spaceship war , robust clothing with red stones and feathers, releasing magical powers, purple and green light effects "} +{"id": "4002051", "video_name": "02c9566d-6b16-5652-b7f2-113720e80308", "text": "talking, smiling, tail swing Message: 1 Attachment "} +{"id": "0006158", "video_name": "2780399e-3994-5409-bcfa-5dbac0e1b1cb", "text": "Wide shot of a river in Florida. Live oak trees and saw palmettos covered in Spanish moss dot the marshy shore of the river. Cut to a medium shot of the sun setting as an old wooden boat rowed by Charon crosses the screen. Ar 16:9, 4K. "} +{"id": "6004928", "video_name": "dab839e5-9fe3-5575-8534-d87779c788df", "text": "In space the zoom zooms in on planet Earth and then Argentina "} +{"id": "2006412", "video_name": "413a3e21-e7f1-5fa1-9535-5ea32e1f9b3f", "text": "Only one fox could not come. "} +{"id": "4004014", "video_name": "3d10ca94-2bfe-590f-a00d-cdebd08a446a", "text": "realistic animation of a heart that begins to transform into a brain "} +{"id": "2006473", "video_name": "0f72c570-66f6-5e18-a4fb-283ceb38e621", "text": "create a 5 min football video "} +{"id": "3003868", "video_name": "4a601323-8144-5e45-9fd5-c0a7e43b14e0", "text": "His journey is a song full of unspeakable flavors,\nA whole story unfolds from the spicy to the sweet.\nEvery delivery is an adventure in itself,\nWith every bite we take, we taste a piece of his wealth, 4k "} +{"id": "4003023", "video_name": "a3960c78-96f3-5321-a654-0df601b4f0cb", "text": "small gnome, black hair white skin, bearded, red and green armor, a sword in hand, gold jelwry, walking and waving, on the coast of the ocean, trees in the distance. "} +{"id": "0004618", "video_name": "0c051f34-f150-5330-b058-ebc361581bcb", "text": "a cartoon tooth vs cavity battle "} +{"id": "7004645", "video_name": "ffab60aa-2d01-5b7c-900f-28f80b2fa191", "text": "create a painting of elmore James! "} +{"id": "2005161", "video_name": "597a15ba-ebb4-5ed7-9632-8dbe60922fc2", "text": "dramatic scene from 1989 dark fantasy movie, dvd quality, woman wearing intricate plate armor, swinging sword, chiaroscuro, volumetric lighting "} +{"id": "3006768", "video_name": "e0415239-dab0-5b24-a46f-57bae1123c0a", "text": "The video opens with a college student buried in books, a worried expression hinting at financial struggles. Cut to them signing up as an Uber Eats driver, gearing up and hitting the streets. "} +{"id": "3004114", "video_name": "594389b3-6069-5ebf-8a55-6c9ef33ac50f", "text": "New York City Skyline at night transforms into Cartagena Colombia skyline "} +{"id": "7003701", "video_name": "c8ea560a-9d33-5319-9da8-9c631225ff0a", "text": "future humans learning new information telepathically and collectively "} +{"id": "1005342", "video_name": "6236dd09-f911-5caf-98dd-d52e1e3f09b1", "text": "Describing the bizarre cities on Mars requires a video that combines elements of science fiction and creativity. There are aliens walking around Transparent domes: To combat the weaker atmosphere and extreme temperatures on Mars, cities could be covered with huge transparent domes to maintain temperatures and provide oxygen. Such a design not only protects residents, but also allows them to appreciate the beauty of the starry sky. "} +{"id": "6002577", "video_name": "e6a89dde-00ea-5b27-a2a2-563ce0736bfa", "text": "White lion, white elephant, fight, war, clouds, hypermaximalist, illumination, lightning, epic scene, epic composition, photography, cinematic lighting, counterclockwise camera rotation, ugly negative, blurry negative, distorted negative, transformed negative, unfocused negative. "} +{"id": "7003161", "video_name": "165a1f16-4789-5bb9-9a60-83bc0be3053c", "text": "A young man sits on his couch, looking confused as he reads something on his laptop screen. He picks up his smartphone. "} +{"id": "7004674", "video_name": "4f6aa5c6-7b55-544d-be24-4aebaf21d8c2", "text": "a man cries red liquid, cinematic, horror, shot on vintage film "} +{"id": "3003351", "video_name": "b7065b30-dde7-5869-9c03-30d96c20e974", "text": "daniel knows the journey continues, with new dreams and challenges on the horizon, highly realistic, 3d "} +{"id": "3005938", "video_name": "d9bfaca0-28c6-5f83-abfc-62543f552e13", "text": "A small girl with black hair and a red coat and a dog talking to many animals in the forest "} +{"id": "0004923", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "4 hijabi women racing each other on horses on a race track "} +{"id": "0005820", "video_name": "21b767e8-079b-512d-aef2-3451686a88fb", "text": "the entire black and white image, subtle ink drawing, paint strokes, a very beautiful sensual girl, holding a small bright red light in her hands, detailed drawing of her face and hands, thin neck, open shoulders, focus on the neck, a thin lace transparent dress covers the bust, digital art, filigree, aesthetically, sensual, hyperdetalization, contrasting light shadow, completely black background "} +{"id": "8002417", "video_name": "30d3c393-d007-5ff4-8f68-49378039145c", "text": "drone flying over an abandoned city crumbling into dust at sunset, abandoned cars below, cinematic quality, zoom in "} +{"id": "2007610", "video_name": "10a003cf-5e00-5a5a-a751-0160c86944b1", "text": "fantasy themed dragon, intricate detail, fire "} +{"id": "2004864", "video_name": "8c81e7bd-51c6-524c-ab04-812ec3cd3769", "text": "A music producer in his studio headbang hearing a trap beat "} +{"id": "8003874", "video_name": "8c89a09b-b7cf-53e8-97de-db17fd113b63", "text": "A funny little gnome is riding a motorcycle with a sexy blonde woman sitting behind him. "} +{"id": "7003361", "video_name": "35b5b6b4-f575-5b2a-a572-a93a5811476b", "text": "metaverse style shiba inu with japanese temple and waterfall "} +{"id": "3005490", "video_name": "48bff8c4-ec78-5f9f-83de-d8cde5599e4d", "text": "Walking on the central axis of the Forbidden City, zoom in and out "} +{"id": "3005426", "video_name": "8ecb0aaf-1408-5b9c-95c8-172c194acdf1", "text": "hand taking dollar in Ghibli style "} +{"id": "2004048", "video_name": "1a61ecca-ca36-5211-8f0d-83f1d0415edd", "text": "A whale passes between clocks Message: 1 Attachment "} +{"id": "0005901", "video_name": "22fd9ec2-5566-59f5-bd5b-3f5ee8e59ad2", "text": "The flag of the Republic of China flutters in the blue sky "} +{"id": "7002626", "video_name": "9ce090db-41f2-5c30-ad0b-35f84c88f5c7", "text": "Illustrate Raj reading one of the tales from the ancient book, his eyes absorbed in the story, as he learns valuable lessons about life. "} +{"id": "2007199", "video_name": "53fa415f-d7db-52ed-bd36-f34f4764b42b", "text": "The ghostbusters blast their proton streams to catch a ghost "} +{"id": "6003980", "video_name": "4c8b483f-2b19-5cb3-92b4-a3a2f0e4736d", "text": "make a video of a person lost in his thoughts on knowing what destination to take in his life "} +{"id": "0006922", "video_name": "355f893e-c551-50b1-a5e9-06923c737a51", "text": "Joe Biden driving a toyota prius and wear seatbelt "} +{"id": "7002231", "video_name": "d756462f-5ed9-504d-b929-4e090056550f", "text": "person walking on Rizal park at the Philippines "} +{"id": "7004346", "video_name": "193ee229-e41b-5b05-93e2-7ed2989d8b4b", "text": "a garden, animation, filled with different flowers and plants "} +{"id": "2003852", "video_name": "b01191ac-0042-5c4b-959a-958fa5a642ff", "text": "3D ,kids play with bigger round egypt hat "} +{"id": "6003165", "video_name": "2c6b2b0b-9ba0-58e4-95a9-8f4e0c52e1c7", "text": "Iron Man fights a big scary dinosaur "} +{"id": "2005105", "video_name": "68dadbf4-d520-5485-9b58-876c021bcb3a", "text": "Dwayne Johnson throwing a lemon party with Glenn Danzig "} +{"id": "3004372", "video_name": "f99bc330-aa50-5303-a3b1-81820c34ca26", "text": "Christoffer Columbus sailing in to modern day Oslo, sunset "} +{"id": "4004294", "video_name": "bef04d13-b07d-55e9-8e64-0df6c6075693", "text": "Lumina and her companions face challenges, such as navigating through a tricky maze and solving riddles.2d "} +{"id": "6003190", "video_name": "fb0da1ca-2019-5415-ad7e-3a8131e0b889", "text": "Countless of us playing in a vast network of irreversible laws of fate. The network is floating above the universe and consists of transparent threads "} +{"id": "0005766", "video_name": "20f0b0b4-4b8b-5c09-a676-e262cc0ed365", "text": "as there was no financial support for schooling. "} +{"id": "0005555", "video_name": "1cc947b4-13fe-5c31-8d6a-f58c36f65e14", "text": "coffee with cream on top that looks like a moving heart "} +{"id": "8002540", "video_name": "13f6a029-0f51-5ae9-8cd6-01421f5f3312", "text": "Judo master dressed in a white kimono and a black belt watches the river flow with one of his judoka students "} +{"id": "0004995", "video_name": "12e9dcd1-33d2-5b2e-85f5-356e8144f89d", "text": "Introduction to Moonbeam: Illustrate Moonbeam, the magical cat, with a twinkle in her eyes, discovering the dusty teddy bear, Sunny, under the old oak tree in the town of Whispering Pines. "} +{"id": "8003263", "video_name": "6265ea16-2dce-549f-8ef8-e65a64f5ed01", "text": "Dogs, cats, rabbits, monkeys They live together in one house and various fun antics happen every day "} +{"id": "6002527", "video_name": "4d0a9c7f-abb7-5776-8551-a5a1e27644c5", "text": "4 people was in 4 people 2 boys and 2 girls , we are teen ager ,and we are stand in forest near water stream.and also know only display back not revel face seen creat to back. "} +{"id": "3005073", "video_name": "e58347f8-6ee5-5f20-968d-8a2225e4d09c", "text": "girl in white salwar suit and wearing golden ear rings "} +{"id": "7004486", "video_name": "1d8e4677-b2cf-5521-9ecf-fe10848cf238", "text": "can you create a big storm in the sky of this image "} +{"id": "2005095", "video_name": "24d502f9-56d8-51df-811e-e1faa69ffdc6", "text": "full shot, western, A duel scene between two women, in the middle of the town in the early hours of the day "} +{"id": "3006841", "video_name": "48093c0a-bdb3-53e1-ab25-a05af2fcaf4f", "text": "walking in a suburban neighborhood made entirely of colorful yarn "} +{"id": "7004793", "video_name": "28d6225b-dcf0-5c4c-b2eb-8e5397582662", "text": "the sound engineer in headphones is sad "} +{"id": "8002111", "video_name": "99ed10cb-e089-5f85-9b22-99f90fd6cdda", "text": "raccoon in suit dancing, perfect dancing, dancing on two legs, 4k, Realistic raccoon. "} +{"id": "4004797", "video_name": "cfa519e5-8ed8-5a03-9eaa-ae2bac004c59", "text": "a panda eating in a rainy day in a bamboo forest "} +{"id": "2006716", "video_name": "ccb5586b-6aac-54be-b011-54e478f2c396", "text": "modern, workplace, office, business, working and talking "} +{"id": "1004833", "video_name": "5955afe4-0086-52eb-b7f0-7df319e1492a", "text": "the girl opens her hands, the style of Anna Bachelier "} +{"id": "0004150", "video_name": "04277587-ded3-5b84-a5e6-515f194e9c21", "text": "Percy feeling left out as his friends prepare for an expedition. "} +{"id": "0004446", "video_name": "093c1710-3423-5238-90b1-7f5ae0262c59", "text": ": A visual representation of a Lyraxian diplomat engaging in conversation with human delegates, portraying their intent on peaceful coexistence and mutual understanding. "} +{"id": "0006064", "video_name": "25ffd52b-8071-5a2f-bdec-748627527b1a", "text": "1980s space opera cyberpunk style clothes with lots of metallic colors and gold. cinematic amera shot of a king and queen sitting on throne with large spaceship window behind the king and queen showing galaxies behind them "} +{"id": "1003146", "video_name": "3a06005e-3039-5cfa-8aa8-3b6a08c624d9", "text": "depict a seed becoming a flowering plant "} +{"id": "4004427", "video_name": "51234c6d-b345-5795-8741-1b6693f2b4bd", "text": "batman ko by supoerman in the boxe ring "} +{"id": "3004693", "video_name": "0ab5e48b-af6b-5c80-abdd-3a48299106ba", "text": "mystical lion, like a phoenix, red and black "} +{"id": "0005237", "video_name": "171380e5-bbff-590b-aeb1-2e4bc4adf7c5", "text": "Once upon a time in the quaint village of Himitsu, nestled between rolling hills and lush greenery, there was a mysterious legend surrounding an ancient Okada tree. "} +{"id": "8003251", "video_name": "f2cae67b-7c08-558f-a3c8-175e1eada861", "text": "A cartoon version of an ant character, similar to Santa Claus "} +{"id": "6003761", "video_name": "74b8c662-86de-543e-a49e-9aaf85615d48", "text": "Gold coins on a wooden table Message: BASA (Font: MODERN) "} +{"id": "2006381", "video_name": "54622726-05c1-529d-8dca-b2aca566a23d", "text": "a dog with a cyperpunk gun shooting a laser to the cam W1.5 Message: cyperbunk (Font: MODERN) "} +{"id": "3005317", "video_name": "651d5642-16df-5850-8145-9f5670f4c7f7", "text": "Jesus holds a glass of wine ultra 8k "} +{"id": "1006974", "video_name": "7fa44434-90eb-5a45-a8ea-dd3cfcf42b24", "text": "bufalo stampede on the moon motion 4k "} +{"id": "5001123", "video_name": "9c635746-06ac-52b7-84b2-3176603e896b", "text": "man wins psy op of the year contest "} +{"id": "0004195", "video_name": "04d57141-5444-5435-baa7-6261489bf4ac", "text": "poeple help each other Message: together (Font: MODERN) "} +{"id": "6003124", "video_name": "cde1d3e6-30de-5b64-aa35-1737008a55a6", "text": "This year, their hearts were especially focused on bringing joy to the less fortunate. "} +{"id": "2005244", "video_name": "01fe8fc0-3e51-5d6c-8291-188ca02c223d", "text": "the moon passing behind the pyramids "} +{"id": "0005608", "video_name": "1dee70da-1c6d-5222-ac1e-f312261b3bba", "text": "This hearing lion got scared and got up from there "} +{"id": "2006701", "video_name": "9c8de9f6-1561-5473-8954-a3cb0528e39d", "text": "Theme number 279, 3D text, appears from the middle, rotates in a circle, gold, only 279 appears, black background, golden dots flashing next to it "} +{"id": "3005563", "video_name": "997f78d8-805c-5464-9583-36ea806be486", "text": "weaver blue spider quirky fighting dota 2 "} +{"id": "0004797", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "An aerial shot of a large city, circling around a skyscraper,cinematic,High definition, Real "} +{"id": "1003243", "video_name": "3bbf6338-4b39-5d41-a2e4-768230f94149", "text": "A beautiful lady teaching the kinemaster editor program "} +{"id": "6002532", "video_name": "b6de03e4-84e8-51b5-957f-c9d9434bb22f", "text": "Closing shot of a sunlit hospital room, patient recovering "} +{"id": "6002925", "video_name": "fa961073-2fd3-5636-9486-0d3a96e877ec", "text": "Kids playing in the urban streets of Los Angeles in the 40s on a sunny midday "} +{"id": "0003505", "video_name": "3eb3a49a-ea30-51d8-9fa5-2b6161d1522d", "text": "a girl sitting on a windowsill reading a book "} +{"id": "7004597", "video_name": "c3cac704-0785-5aba-96ac-6938eaa67be9", "text": "corpse of hades found in subterranean eerie found footage 1945 stanley kubrick blur camera "} +{"id": "1005545", "video_name": "661a0bc3-29f0-5b74-a6e9-288b01f8e476", "text": "stylized watercolor digital illustration, street view,traffic light,night,buildings,New York, 8k UHD, masterpiece, ultra fine detail, "} +{"id": "0003848", "video_name": "4492c610-21ef-5794-808a-e7d05e2818fc", "text": "james cameron walking on the ocean floor "} +{"id": "3003183", "video_name": "6736e103-41d3-5d90-8dd7-1702b9f16f94", "text": "a girl is sitting inside the bus seeing a boy playing with his brother and sister outside "} +{"id": "4003717", "video_name": "e9dffebe-b492-5313-ba1e-27912b741bb1", "text": "make map od entire Asia in saffron colour with a saffron flag show from sky the entire asia "} +{"id": "7002269", "video_name": "8daf1d24-9420-5016-9ae3-4d668ca46b27", "text": "a man in his late 30s, paces nervously, beads of sweat forming on his brow and running. "} +{"id": "0006348", "video_name": "2b0be789-7298-5cd8-ae27-ad845edf5dfd", "text": "Robert, a former detective, tried to forget his losses and mistakes. "} +{"id": "2003459", "video_name": "56ad4503-bc7d-5a8a-8043-4d5536e3e4e7", "text": "such as people conquering their fears, "} +{"id": "7003744", "video_name": "c570fdbd-b9f6-5211-a8a6-f012a9cd8670", "text": "An attractive young blonde woman wearing huge black headphones dancing in a modern white room "} +{"id": "7002160", "video_name": "1427305e-8354-56e4-bf6c-90d585775616", "text": "Set in an ancient Chinese prison, an old man stands facing the prison wall "} +{"id": "3004357", "video_name": "78d91b62-e0f9-554b-a2fd-ec1882061dea", "text": "a town calmed like a ghost town "} +{"id": "3006181", "video_name": "717eb5ea-fa18-58b0-ba42-15c7cc543523", "text": "a handsome man doing warm up work out "} +{"id": "2003932", "video_name": "7a15afed-a2ab-5f2b-8e2a-2cbad69add0c", "text": "pixel with eyes, arms and legs "} +{"id": "7004606", "video_name": "d6f908a7-8a0e-581b-969f-3aff49444d6c", "text": "The drone flies above vast sand dunes, showcasing their endless beauty "} +{"id": "0006242", "video_name": "2903310e-2158-5ad0-9918-2739e82291c2", "text": "two men walking through the mountain in the Aran valley in Spain, one tall and the other of medium height. "} +{"id": "1004054", "video_name": "4b2e5f8a-e947-5a22-964a-89b845642d9b", "text": "and only your spirit is your guarantor of safety "} +{"id": "4002239", "video_name": "3338b6ba-d840-54b1-bf7f-6394700f4c23", "text": "1970\u2019s arthouse film character with bright pink eyes in a garden "} +{"id": "4004110", "video_name": "dc929c12-9718-5929-83fa-2b3196b335a4", "text": "Illustrate Sammy, the curious squirrel, standing at the edge of the magical Cave, Motion4 "} +{"id": "2007145", "video_name": "d876f3da-96f0-5335-a19a-4f188a087b35", "text": "a boy misses a small red balloon in a field seen in cartoon style (lively, sad boy, red balloon, green field) "} +{"id": "4002276", "video_name": "777bce24-b7bc-510a-a31f-e1c1c2b58ea1", "text": "old Italian movie. Man in the hat driving cabriolet in Italian village. "} +{"id": "3003506", "video_name": "f99d2b58-bd2e-5346-ae16-8929dbfd0415", "text": "high quality, people of israel fighting with swords against the philistines from biblical times, cinematic, 4k "} +{"id": "4002060", "video_name": "2698d137-1b0d-52ae-b31a-8fdc7636f616", "text": "occult ceremony 1840s film 4k Message: 1 Attachment "} +{"id": "0006369", "video_name": "2b4f443a-52e8-595e-a634-eecf1bad5966", "text": "Intrigued, he decided to follow it, hopping from one soft mossy stone to another. "} +{"id": "5001709", "video_name": "1e82424d-d821-54c7-885d-1274271eeed7", "text": "woman fighting like a UFC match while having raining condition "} +{"id": "1006312", "video_name": "737dfebf-db01-5f10-b484-509ee3176657", "text": "the joker walking through the rain in Gotham "} +{"id": "0006938", "video_name": "3589e9f5-dba5-5cab-8d66-c5ecf2d7ff19", "text": "A teenage girl walking the streets of Tokyo "} +{"id": "4003942", "video_name": "9df06b62-9081-5faa-99e2-17351478b082", "text": "With their hearts pounding with excitement, Timmy gathered his trusty companions: Emily, the cunning strategist; Alex, the skilled engineer; and Lily, the fearless warrior. "} +{"id": "5001897", "video_name": "3d829543-48ce-5148-bb3d-f3ff63113b7c", "text": "Create a futuristic science fiction story where advanced technology allows people to witness historical events like the Battle of Malazgerd firsthand, leading to unexpected consequences. "} +{"id": "0003137", "video_name": "37d4ccae-5375-580d-87af-2e25d8510d99", "text": "a lady in transparent dress without inner wear "} +{"id": "3004068", "video_name": "34772c49-10a0-5248-bd30-da60ffb6e148", "text": "a beautiful buterfly top the red rose, flu "} +{"id": "1004695", "video_name": "574a5979-28d3-50e7-85da-d84a531ada84", "text": "Two young men wearing different style, cowboy hats, and overalls, sitting at a table with funny, looks on their faces, while talking into a microphone "} +{"id": "5001173", "video_name": "2017f31f-cdaf-5b17-83a9-9aad3197c609", "text": "A very beautiful girl, in a blue swimsuit, dances on the seashore at night. She has long thick blond hair and large black eyes. "} +{"id": "0004044", "video_name": "0215f905-4236-5c68-ba41-e298566e5c46", "text": "Two children carrying a Pharaonic treasure of gold "} +{"id": "3003961", "video_name": "bcee4789-7a12-5f93-ba9d-fcb0f32db61f", "text": "the dog plays the guitar and stomps his foot, animation, dynamic movement "} +{"id": "3006547", "video_name": "548e22f6-d2a8-525d-923c-bc8a5bf99338", "text": "indian soldier protecting his national flag "} +{"id": "4003962", "video_name": "e3acba07-f276-556e-b903-c1d58327f7c5", "text": "through the city at night we see a dark ominous alleyway. The camera pans on a lonely empty street with only a street light to light the scene. "} +{"id": "2005824", "video_name": "fa0f98c6-9c31-5d9c-b52b-5bcd6186dcc5", "text": "studio ghibli movie, hand drawn animation, aerial view of a seaside Japanese town with traditional houses "} +{"id": "2005141", "video_name": "95ba74f3-dc8d-503e-bf79-eab4be7450fc", "text": "Indoor plants dancing wildly in a room "} +{"id": "3003231", "video_name": "962aada6-7235-5927-ae4e-be89d733664f", "text": "one pressure meter showing 55 as pressure value "} +{"id": "0005982", "video_name": "245d01ed-9cb8-5735-af14-85ad9a85c34f", "text": "A cozy living room with Doraemon and Nobita talking "} +{"id": "0006799", "video_name": "334f97dd-32c2-5180-8333-cbf0c4df0657", "text": "india feeling proud of its scientist for moon mission "} +{"id": "3003293", "video_name": "3dabe0d2-7e1e-50bb-b8e5-8c30edd99259", "text": "ps5 spiderman and ps5 miles Morales swinging in the core of downtown Toronto with the CN tower in clear sight "} +{"id": "0004126", "video_name": "03aba788-cd33-5d1e-b493-74067487983d", "text": "micky mouse run in a maze of seo terms "} +{"id": "7003947", "video_name": "130b926f-f5ab-5eb3-9453-cc8c6ea276c5", "text": "A tearful person standing inside a softly lit room, looking through a partially closed door at the silhouette of the unwanted person on the other side. The door is closing slowly, emphasizing the emotional difficulty of saying goodbye to someone who is no longer welcome. "} +{"id": "3003591", "video_name": "7d041206-8b9c-5734-9ed3-da4a449ef167", "text": "1 Man fighting Message: paulo (Font: MODERN) "} +{"id": "1005388", "video_name": "630a89b2-e9c8-5fee-befc-80dbbc6a3704", "text": "scared astronaut reentering atmosphere on capsule, profile view, HD "} +{"id": "0003994", "video_name": "014c5b6e-6c6a-5046-b24a-b12874dc5b81", "text": "impressionist photograph of the most beautiful sunset over ocean waves, tropical beach, dreamy, romantic, rolling waves, drifting clouds, warm colors "} +{"id": "6003909", "video_name": "bc57720a-5372-5817-900f-b3b072a401fc", "text": "the sky flowers mushrooms point grass "} +{"id": "0004845", "video_name": "102b1582-2aab-58fa-bc3b-24e0f46bd082", "text": "photorealistic 4k, people, employees, stresses out, design company, working process "} +{"id": "2007104", "video_name": "2db835e8-3ab4-5d8c-a0a5-79e8e840c109", "text": "\u2022 A video of a cat doing a backflip and landing on a pillow. "} +{"id": "5001853", "video_name": "2def2955-0f6c-5da0-bb1a-2d5766703d7a", "text": "My friends and I are dancing "} +{"id": "0004246", "video_name": "05b3a98f-8127-5242-921a-6a11c8bb1e99", "text": "view from the window of a car driving on the road of Iceland "} +{"id": "3005358", "video_name": "aa57c8c5-1b7e-5a92-b7a5-b5f5c03678a7", "text": "An idyllic village square with cobblestone paths and quaint houses in the background. "} +{"id": "2003389", "video_name": "93a4764e-0190-5ba4-8b69-885b53c4e3a4", "text": "kid sam running in the track to save the old lady "} +{"id": "2007662", "video_name": "6dc115e2-39aa-5d0d-8ed7-fbde6a068bdf", "text": "moon getting covered by black clouds "} +{"id": "0003982", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "Benny meeting Rosie the Rabbit in the meadow, both bunnies with smiling faces. "} +{"id": "6003568", "video_name": "63695f38-2027-5734-a1c5-be23c564cf36", "text": "a girl standing in the cashier "} +{"id": "1005235", "video_name": "6049ca62-3702-53b7-aa4a-ca1892ae5087", "text": "sunset over a lake with boats racing "} +{"id": "8001189", "video_name": "38314e73-e28c-59ad-92cd-1757c9a9417b", "text": "typing the word keyword on a search bar "} +{"id": "0004620", "video_name": "0c0dbc11-f3d5-5db0-b189-cfdb966d62b7", "text": "The Formation of Planets and Moons "} +{"id": "2005493", "video_name": "d52796c9-9948-5824-bc98-2ab6d7e6ebdb", "text": "Male Home painting contractor producing well and looking at the watch "} +{"id": "7004286", "video_name": "1f916156-d061-5c4f-bcab-4e95e9ed7057", "text": "Beautiful woman model wearing white zipper hoodie and raises arms up in the air with excitment in high quality very detailed. "} +{"id": "5001726", "video_name": "384ca2c8-e573-51c6-833f-2e7112b2e561", "text": "Alon man, standing on valley, wind, back side, 2d animation, loop "} +{"id": "0005395", "video_name": "1a0cead7-4208-5949-bbd8-167bf8b22f90", "text": "The plants are floating gently in the rain "} +{"id": "8003178", "video_name": "f34cf0ba-80fb-51da-816d-173fd6b96d60", "text": "old grey bearded fisherman bowing inside an ancient temple "} +{"id": "3004395", "video_name": "bfd134e3-5958-5a43-a08c-83980e053bfb", "text": "Various birds and animals from the story gathered together, emphasizing diversity and unity. "} +{"id": "0003727", "video_name": "427765fe-e1ff-5a44-8495-c0ce01286091", "text": "Two robots fighting in the air "} +{"id": "3004125", "video_name": "aa2b63ad-917b-5884-8a82-94b68a32816a", "text": "A cat swiming in the pool "} +{"id": "5001272", "video_name": "e63fbc17-09a0-524f-b30f-920806db85f8", "text": "a 6 year old girl is laying in her bed at night, camera view from above "} +{"id": "1004588", "video_name": "5555d961-2dfd-5475-b96b-d2c1df581be3", "text": "Scene: The Vatican visited by many people, dark rainy afternoon, skectbook style. camera 22mm lens, monochrome, camera zoom out, motion2 "} +{"id": "0003503", "video_name": "3eb350b6-3dd1-59a1-b7ac-c57e5d7a1022", "text": "A creative composition of a frog wearing a crown sitting on a rock "} +{"id": "3004124", "video_name": "aa7fe47e-ff80-5bdf-87ab-7953ec963ba3", "text": "disney cartoon villain with moustache and top hat holding up a blank card, white background, minimal movement "} +{"id": "2007282", "video_name": "ea412137-652a-514f-914f-bdd06b1f9f42", "text": "for 24 hours, every drug is legal in canada "} +{"id": "2003994", "video_name": "67819c6b-eef8-59be-bac5-eec1c1e8577d", "text": "drop of water in a rose with sun reflection "} +{"id": "3006165", "video_name": "c7b76177-fa51-5545-84a2-52e419405849", "text": "a hamster eating sushi. Hamster must be sitting at table. Background must include other people at other tables. Hamster must be using chopsticks. Make it very detailed. "} +{"id": "8001837", "video_name": "f9a5c887-71de-517d-b48e-b6e3e4d81031", "text": "person walking down the round hall, side view, camera moving "} +{"id": "2007001", "video_name": "1ea55801-b937-5ec8-9582-076841985a4d", "text": "the peaceful village with colorful houses and smiling villagers "} +{"id": "0005619", "video_name": "1e38dec1-06e3-50e0-927f-356a5135bca4", "text": "dr. Sebi talking to you directly, he is sitting in his doctors office, medicinal herbs in background "} +{"id": "0003613", "video_name": "40788fcb-2a4d-5dc8-a06e-53ee356a135a", "text": "soup with eyes, looking at the moon "} +{"id": "0004353", "video_name": "079342fb-6feb-5694-9791-3e06f9930029", "text": "dark wilkey way galxis pumkins at halloween Message: Elora (Font: MODERN) "} +{"id": "1006203", "video_name": "71b53837-410d-5c86-b6c6-8c7f0853bb9e", "text": "n the aftermath of the devastating World War, Europe experienced a remarkable intellectual and artistic renaissance in 1919. Explore the cultural, political, and social factors that contributed to this resurgence. What were the key movements and figures that defined this era of creativity and innovation? How did these developments reshape the continent and set the stage for the Roaring Twenties? Dive into the vibrant atmosphere of 1919 Europe and uncover the stories that captivated minds and hearts during this transformative period. "} +{"id": "4002407", "video_name": "a67dd8f7-984a-5aa9-a4e8-405b3ccf2c88", "text": "A wedding outdoor with pink and white flowers "} +{"id": "1003251", "video_name": "3bda1940-4004-54fb-a12d-897923a8e4dc", "text": "a teenage Indian boy making a boat in middle of forest at morning "} +{"id": "2005385", "video_name": "fff7e82f-7866-5eaa-94ca-9950c549769b", "text": "clothes falling in a pile on a bed. bright colors, natural light "} +{"id": "6004703", "video_name": "0a972cd8-25ed-5f89-a632-ceba4cfdd154", "text": "a giant Tyrannosaurus Rex is opening it large mouse to attacking a car "} +{"id": "0003478", "video_name": "3e5684b3-5dc5-5ef1-a271-b89f1c77a743", "text": "The machine has eyes and blinks its eyes "} +{"id": "2004169", "video_name": "5dbc624e-2d7a-52ba-98f6-f35f1795a13d", "text": "court of law with everything technological and holograms, hyperrealistic "} +{"id": "1005942", "video_name": "6d319bad-3e32-5689-a7d4-48df0db0b3d8", "text": "old couple lying in bed at sunrise in a NYC apartment "} +{"id": "1006149", "video_name": "70a7e80e-1a7c-571c-bd20-ab7a5941fe66", "text": "clouds dancing at first chaotically morphing into a human ballerina "} +{"id": "2005909", "video_name": "249e52e2-a66f-59bf-8dd6-e0338d427339", "text": "Bangladeshi farmer dancing on the crops field "} +{"id": "1005596", "video_name": "66f34f3b-6ef4-5d5e-b22f-fd93bda2cf98", "text": "princes leia sit at the star of deaht Message: LAIA (Font: MODERN) "} +{"id": "1004154", "video_name": "4cf9b07d-b7af-5e49-9cd6-206392f51dad", "text": "realistc vampire face,Red eyes, long hair, in the dark night "} +{"id": "1004372", "video_name": "50c16541-21ac-599d-95d4-9274630cb7fb", "text": "mirror scratch with blood wnf lighting striking in the background "} +{"id": "3003486", "video_name": "a11f2dc3-4797-5f4a-bb04-86136b2fb709", "text": "protection and blessings from Lord Narasimha. 8k, animation, realistic "} +{"id": "5001188", "video_name": "af7a86be-7d93-57d4-8a78-570885cbafe6", "text": "the dog proves that he is right "} +{"id": "6003329", "video_name": "f8365a3f-c7ea-5b1f-bc49-610285719178", "text": "Mario eating spaghetti for 4 hours "} +{"id": "8001588", "video_name": "a76abb8e-f832-58ff-bfca-1a1d5836b1f8", "text": "elf wizard, pointy ears, fantasy, spell, red, dutch angle shot "} +{"id": "2006733", "video_name": "039f01db-199f-5fc1-a60f-8f0efbe10b3f", "text": "a baby is meditation with round lights in the back ground fading in and out "} +{"id": "4003133", "video_name": "6a14d588-b8ff-59df-b223-68789f5e53b8", "text": "accelerated time machine and Years pass quickly "} +{"id": "3005394", "video_name": "cc5ab460-eec3-5c59-b6fa-4c12dccb0be6", "text": "two baby birds on a hand "} +{"id": "0005574", "video_name": "1d37a147-5b0a-51de-8b67-33114ff2a7cc", "text": "elijah losing all his money at gambling "} +{"id": "7003112", "video_name": "6f40d45a-1647-54d7-92e6-c1970926f8e3", "text": "amazing wide angle shot of a sandstorm in the desert, shot on arri alexa, cinematic "} +{"id": "1004975", "video_name": "5bfa4e7b-26dc-59f2-b7c7-72e934b70586", "text": "a wide angle abstract establishing shot of a young handsome black boy all alone, depressed with humanity and the consistent terrible choices that humans make individually and collectively, wearing trendy streetwear, hd, masterpiece, in a color palette of magenta pink and yellow gold and black and white, rotoscope animation style, art frahm style, glitch art, dripping paint "} +{"id": "1004007", "video_name": "4a207e75-775c-50f2-a761-a64355f34b37", "text": "metallica dress as mariachin playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "6003854", "video_name": "def2f93b-40ae-5a2e-929d-bc8d4ae5f4ba", "text": "A handled mug where the hand is inside the mug, not outside of it! "} +{"id": "6004469", "video_name": "01dc3542-73f1-588f-a0e4-a8d4738c7c9c", "text": "a video like a view from the camera going into the deep ocean, you can see bubbles of air on the side "} +{"id": "7003825", "video_name": "53ac4785-6fef-53e1-80f4-a0128b0d4773", "text": "A rainy night, with Emily standing alone under an umbrella. A misunderstanding leads to a heated argument, causing Emily to storm out into the pouring rain. James is left alone, realizing his mistake. The image depicts the heartbreak and loneliness that follows. S "} +{"id": "0006971", "video_name": "36001929-3913-5e4c-b739-6f2c3823122e", "text": "an image where a dog sits under a christmas tree "} +{"id": "5001415", "video_name": "977ebf37-7d90-517c-9635-06295e2f4224", "text": "an ancient map of europe with moving water "} +{"id": "3006703", "video_name": "0f614d17-5d89-50a1-819a-715a98b4849e", "text": "animate african american in the jungle, playing with baby lion cubs in 3d, hd rain "} +{"id": "1003882", "video_name": "47817738-0963-5cd9-91ab-f8f307d059dc", "text": "prompt couples sitting in a garden having conversations with fallen leaves on the ground "} +{"id": "8003621", "video_name": "70ad9f06-091e-5244-bf55-9197f24c5992", "text": "Man repairing a broken screen iPhone 15 "} +{"id": "1004545", "video_name": "5466e6a0-7983-5925-bc12-d31aac10610c", "text": "super heroine walking on rooftop wearing a tight leather bodysuit with hood, 1970 movie style "} +{"id": "0006473", "video_name": "2d1b623f-66a6-54d3-b647-2745b55c4752", "text": "man jumping out of TV, trippy, motion 1, Quentin Tarantino style "} +{"id": "7004799", "video_name": "99ce1336-2b8a-5095-ba85-468266febe2d", "text": "unethical look up to the sky and see "} +{"id": "4003669", "video_name": "9985fd7d-bcc5-5c11-9b39-5dc08f5e251d", "text": "An old, dimly lit library with wooden shelves filled with ancient books. Cobwebs hang from the ceiling, and the air is thick with the scent of mold and old paper. In the center stands a large wooden table with an ornate, sealed envelope lying atop it. "} +{"id": "7003793", "video_name": "7ac3eedd-a436-5506-a386-377ac77743e9", "text": "cat eating green noodles, combic book style, trending on artstation, masterpiece, high quality, 8k "} +{"id": "1005953", "video_name": "6d544947-9e88-5102-8e40-3061a274d4a3", "text": "the tale of Lily and the wooden horse "} +{"id": "0006568", "video_name": "2ec1afb1-f8a5-5fc1-b69c-c240ef7cce49", "text": "DNA molecule rotating in the background of earth "} +{"id": "6002328", "video_name": "dc73e75a-2890-5be7-814d-cfb323e5d8b8", "text": "at the edge of a field in the village of Woolpit, England. "} +{"id": "7002991", "video_name": "95ff5972-7eb1-52c6-a206-1c529e721825", "text": "a long video about toyota mark 2 in the desert "} +{"id": "1005033", "video_name": "5d17be26-879f-5a52-8c64-a6ad3b2012b7", "text": "movement from the right to izquierda "} +{"id": "3003224", "video_name": "b2b0ec06-1b6e-5a12-bfdd-f09c0e748f84", "text": "The bank staff put the cash box into a van. Perspective should be inside the van. "} +{"id": "3005614", "video_name": "35095d79-0f59-583b-bde7-dd4a3d4413d8", "text": "purple horned something rushes into battle through a smoke screen, video from afar "} +{"id": "2003504", "video_name": "03a0938c-2423-551c-a8f6-86aef9a363d7", "text": "a woman laid on the floor unconscious dark background night "} +{"id": "0005427", "video_name": "1a9dfa9f-0a8e-5895-9a97-d9b5f63b0917", "text": "underwater statue of goddess Athena, overgrown by coral, mystical cinematic scene "} +{"id": "6003206", "video_name": "509e7e59-af95-5328-ba8f-52c4fc126c48", "text": "Dinosaur Cave Entrance: Illustrate Dinosaur Dotty taking her first steps into the cave, Dinosaur eyes wide with a mix of excitement and trepidation. "} +{"id": "1006711", "video_name": "7afa2cbd-542a-5a69-ad93-82e36ac361c0", "text": "A crow flies over the forest, cartoon, cute, sky "} +{"id": "4004285", "video_name": "291a38f7-759a-517e-933c-a1874e3116d4", "text": "a bottle of wine below the christmass tree with family and a dog playing in the background "} +{"id": "2007615", "video_name": "e9650f44-43ab-5698-b2f1-99c75f638bb1", "text": "a man walks in the desert. the wind swirls strongly around a person. "} +{"id": "3005345", "video_name": "e1ccca52-d49f-5229-b6c5-589f92631891", "text": "A crowd of people strolling along the streets of a small Italian alleyway "} +{"id": "4003154", "video_name": "7c7e1f54-45d4-50fd-afe5-bd55cfa78526", "text": "A fuchsia rose with diamond petals laid in water against a glittering background of stars falling from the sky and illuminated by divine light. "} +{"id": "7004264", "video_name": "1bf17491-27bf-512f-b22f-a188aa1c95c8", "text": "cat woman black panther in golden crown, jungles and golden lights around "} +{"id": "7003358", "video_name": "240be227-9ac7-53dc-9a9c-03987f8dc1cc", "text": "birds chirping in nature with factory in the background "} +{"id": "3005733", "video_name": "e3616eff-3109-50e5-9e2c-68093c2a0f5e", "text": "transformation of fargo bus into library Message: 1 Attachment "} +{"id": "2003323", "video_name": "60b3d928-460f-5038-b243-6b5e08334263", "text": "The moment when many flowers bloom "} +{"id": "4004071", "video_name": "c6c36906-b9df-5172-a250-f11e2ef4b4cc", "text": "boy give food and water to a white dog in forest.3D animation "} +{"id": "2007361", "video_name": "472542f0-d68d-5dc5-8fc3-076b441ecd0d", "text": "picture of a giraffe, very close up, the giraffe is winking and smiling "} +{"id": "1004739", "video_name": "57cc3794-99bf-51d5-85be-33437ca5c938", "text": "visual of someone scrolling through job postings on LinkedIn. I want this to have a slightly animated feel "} +{"id": "3004566", "video_name": "c4e43488-3191-509e-adea-46f8bbd183c6", "text": "A beautiful little kitten ran over to smell the coffee beans on the table\uff0c8k "} +{"id": "6004722", "video_name": "7dec7884-3464-5a1a-ae6a-59a3cdd4f008", "text": "a race car in deep blue standing on the middle of the race track. Behind there is a stand with spectators. Next to the blue car there is a similar car in deep red. The picture should be in high quality "} +{"id": "1004619", "video_name": "55e6ad93-1021-5838-8139-046e663146b4", "text": "The world of red fly agarics is spinning on the planet "} +{"id": "2003452", "video_name": "4b972e66-92e0-5a2b-aab8-42a9a4e5c403", "text": "Science and technology running, digital future, dynamic smooth, modern simple, dark red background "} +{"id": "3003500", "video_name": "89f13dae-73ea-5e79-944d-bb68779c6386", "text": "3d animation of an oldoldan warming his 13 year old son "} +{"id": "2007368", "video_name": "88d61a96-b868-5ab8-a71c-ec1918c9daa7", "text": "Hotel staff welcome customers with a zoom camera, red violet lights, and a romantic atmosphere, 8K, HDR, Animation movements, zoom in "} +{"id": "1005369", "video_name": "62c6019c-5cfc-5331-a3d2-7f1dd0e380d6", "text": "smoke, night, Moonlight, 9:16, Camera zooms in to reveal the front door slowly creaking open, revealing a family standing hesitantly outside. "} +{"id": "7003711", "video_name": "50ec59fe-9da5-5766-acf2-8d2250bef91c", "text": "there is a darker side that always stay "} +{"id": "8003602", "video_name": "76de6c74-3157-52cd-81cd-84a6e8943a01", "text": "a beautiful landscape, sea side, low hills in the front, sea at the back "} +{"id": "7004387", "video_name": "abf75b14-5fec-5c50-93d1-f36bc0346fa7", "text": "On this basis, a picture of fish swimming slowly is generated. "} +{"id": "4002611", "video_name": "43bd89f7-11ae-528e-8961-9900ebcf3bde", "text": "Electronic, party, music, Tomorrowland Message: BAM (Font: MODERN) "} +{"id": "2004901", "video_name": "d624df12-fe77-5ce5-831a-588cd3d4012b", "text": "A rabbit in the garden, Pixar style "} +{"id": "0004917", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "a fly landed on a jam jar "} +{"id": "4003598", "video_name": "a2e35e2b-6e4b-54ea-8a37-580ed07c8968", "text": "miama retro style video in an apartment which overlooks the city and outside the window are palm trees and the city and the ocean "} +{"id": "0005737", "video_name": "20649f19-2c28-5b00-88ee-d1966ed0ccbe", "text": ": a starry night in the jungle on an alien planet, colourful alien plants everywhere, Hyperrealistic, 4k, photo realistic "} +{"id": "0005117", "video_name": "151117e5-8489-5725-ad8f-625ff80bb040", "text": "Clinging onto the rope, Tom Cruise "} +{"id": "2004406", "video_name": "91856243-bee7-5d39-902d-76bd50dee50d", "text": "On a sunny morning, a mother is holding her baby and basking in the sun "} +{"id": "8001390", "video_name": "561b9262-a5ce-591c-b5cb-c972fe772136", "text": "create a tsunami in new york cinematic, realistic "} +{"id": "4003435", "video_name": "0954e32b-990c-5c32-9d6d-711781bb71ed", "text": "A polar bear catches a fish on the ice "} +{"id": "1003572", "video_name": "41e6d821-d8ab-572b-8621-fe0d4a6b9740", "text": "A wedding party with the bride in a white dress and the groom wearing a white suit and the bride with a white rose bouquet in her hand and they look to the front and the background to a rose garden and the floor of a small green plant of high quality and they greet the audience. "} +{"id": "3004202", "video_name": "3a123b6b-b654-5aa6-a98d-d96b51e25bba", "text": "scene from the movie World War Z . zombie horde piling up to climb over a giant wall, cinematic aerial view to show the massive horde, 8k, hd "} +{"id": "0003858", "video_name": "44bcb903-dcba-535a-9c7d-5344ab3b8ba9", "text": "squirrel loved by animals in forest "} +{"id": "0005109", "video_name": "14ed0916-fdf1-59ae-8bbf-26b094f78014", "text": "man wearing spectacles in a UFO spaceship "} +{"id": "4002869", "video_name": "3dbc7fb0-b3ea-5c93-a174-e36cff391dca", "text": "iron man flying through a city with tall buildings "} +{"id": "8001689", "video_name": "7ea2b7b9-5a8f-59de-8779-c8e586bbe988", "text": "medieval battle, knights, swords, hundred of warriors, dark "} +{"id": "7003671", "video_name": "01476cfc-fca9-5d41-bfce-b81660f0558a", "text": "a 60s film about liminal moroccan homes and angels "} +{"id": "4003277", "video_name": "c448fc02-7fa1-5fc4-a2d8-4f29f56a8d93", "text": "hands poping out of hand magic trick "} +{"id": "0005520", "video_name": "1c35392b-aada-50a4-aa77-eb093e972d14", "text": "high quality image cinema 8k of a woman sitting on an orchid surrounded by a lush floating garden, with clouds floating by. "} +{"id": "1003504", "video_name": "40c7938e-d640-5913-9681-ff6f363e81a9", "text": "The moment of victory as dragon lies defeated, and the kingdom of Eldoria celebrates. "} +{"id": "6003521", "video_name": "d6b87ef2-1ec3-5abe-a517-68e0856b033d", "text": "a vertical video suitable for mobile, a closeup of a lit fireplace during christmas time with a christmas tree to left side and gifts to right side "} +{"id": "1003122", "video_name": "397f69bf-6347-5e8b-b267-94eb478d852e", "text": "Moses in Exodu, lookig at red sea "} +{"id": "0006301", "video_name": "2a4d1bb5-a7a5-59dc-a6e0-3deb4fb8e8c5", "text": "showcasing the cactus jack by travis scott sneakers "} +{"id": "0003209", "video_name": "3940cb19-2d0e-5fa7-ae6f-286015c24292", "text": "a beautiful girl wearing a black t shirt and spectacles smiling. "} +{"id": "1004509", "video_name": "53a011bc-8184-5a45-b4e8-c5f461d51946", "text": "kitten and kid both turning back and see "} +{"id": "3004338", "video_name": "c6352f33-7139-56bc-9805-9d28517c31e8", "text": "a pretty young blonde woman holding a gun, realistic "} +{"id": "3006849", "video_name": "e35a64a4-12ca-53d2-bc40-6c632ae2594e", "text": "cartoon of a little house in the forest, red roof, by Beatrix Potter "} +{"id": "1005999", "video_name": "6e3d3d5e-0832-5937-8c37-9b8cf8215e76", "text": "A man tore down the Russian flag, and put a red flag "} +{"id": "8001285", "video_name": "92e632df-b33f-53bc-a818-983edbdbb8f7", "text": "Sharp realistic leonardo da vinci face in morphing transition to blonde model face blue eyes nose nose red lips with veins "} +{"id": "1003076", "video_name": "389335b5-d42a-5e9e-b287-b51b73b7ce44", "text": "Drink some red tea mushrooms with a light meal "} +{"id": "8001704", "video_name": "3dab1e08-8b8d-57b3-8c2d-9908bc93b919", "text": "motion 4 man reaches his daughter for a emotional embrace "} +{"id": "5001086", "video_name": "670e381f-729c-5b1e-9486-71fa1cf837d6", "text": "astral projecting terror in science lab Alfred Stieglitz grainy black and white 1900s "} +{"id": "8001216", "video_name": "a3d72342-c2eb-56c5-9c19-e63e1419bff0", "text": "a white shadow floating in space "} +{"id": "3005200", "video_name": "ba913c0d-b19d-52d7-862b-b1ac314beb79", "text": "an empty neighborhood with very tall trees and very wide roads in the afternoon "} +{"id": "0006134", "video_name": "271e3ae7-d31c-5f2e-a28d-8c0892a3f636", "text": "the Azadi tower in Tehran at sunset Message: WOW (Font: MODERN) "} +{"id": "0003847", "video_name": "44866008-0b86-5276-a023-61f78812443b", "text": "a cute innocent girl of 7 front view with sad face "} +{"id": "1005714", "video_name": "690db0b6-213e-51e1-b44c-e8747e82fa42", "text": "A Buddhist temple scene, 3D effects, movie style effects, pan and zoom images, movement effects. "} +{"id": "0006603", "video_name": "2f68d22b-3d72-5a41-93e6-100f94637eec", "text": "the black silhouette of a man in the forest at night is cinematic "} +{"id": "7004567", "video_name": "cacd2906-835d-52a3-b463-34f6a2747783", "text": "A star made of air with the sound of the world "} +{"id": "7004472", "video_name": "75901f9b-571b-5ffa-afc0-418418304799", "text": "Couples having drinks at a rooftop restaurant "} +{"id": "4004690", "video_name": "33a3dae6-28c3-5c09-940b-2588b1ac701a", "text": "Beautiful Asian girl, real, dancing on ice "} +{"id": "8002516", "video_name": "27cc4cfb-cce5-5c92-b498-9ba36f776e2a", "text": "a studio ghibli avatar in the shape of a pear "} +{"id": "1003755", "video_name": "453bde52-386a-5ccb-8888-0b31097a1fee", "text": "a human peeking into the glass of a shop of bakery from the street. Lot of humans are passing by the shop "} +{"id": "6002726", "video_name": "09ed5262-a6b5-5445-a451-20e677cf6703", "text": "The boat floats on the river, there was a bit of fog, there was a person standing on the boat, chinest cenimatic, high quality "} +{"id": "4002204", "video_name": "1b929836-1df3-5b44-9d2a-9bad7bfb5f0d", "text": "On a lake like a dreamy lake,A asian man is floating on the water and smoking,The sun shines through the water, top view, Cinematic, Kodak 400d film look "} +{"id": "3006210", "video_name": "ce52e9ae-ae5e-5650-bac3-eb68a4e5ea72", "text": "dua lipa displaying her latest fashion at a fashion show "} +{"id": "7004746", "video_name": "616dd3b2-a948-5d75-b132-ec628a095521", "text": "Createa 10 second showreel of a video editor "} +{"id": "8001133", "video_name": "bfc25dd1-c5a3-5f9c-87e9-8a0ccc69a64b", "text": "sexy girl in bikini on the surfboard "} +{"id": "8002464", "video_name": "9806c8c6-1cba-5520-8b5a-bcb456b743ba", "text": "an engineer analyzing the failure of a machine "} +{"id": "2004504", "video_name": "5935a12e-737f-533e-9015-c209b9e3fe5c", "text": "software company DevTeam offering software solutions for companies "} +{"id": "1005303", "video_name": "6171c224-00a1-598f-9b00-c9cf0593567c", "text": "A dinosaur walking towards a modern villa, low angle shot "} +{"id": "2005058", "video_name": "a5ba7d74-b848-549f-ae4c-15cdecb32c69", "text": "man with 3rd eye opening on forehead, mandala overlay, hyperrealistic, 8k "} +{"id": "3005182", "video_name": "6a3df839-502c-5d9d-b0d5-e9fc50a16ec1", "text": "beginning of mahabharat war and arrows "} +{"id": "6003553", "video_name": "36c0d043-db8a-5958-b947-30df8fbffab7", "text": "As the sun sets, Lion realizes the true magic is in sharing treats with friends. "} +{"id": "0004505", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "A group of friends were sitting in a roadside teahouse and engaged in pleasant conversation. "} +{"id": "0003077", "video_name": "36919da1-c262-510e-8f87-a830c5f48a16", "text": "Hyper realistic photo of a car in retro style, the night city of the future, night, neon "} +{"id": "1006526", "video_name": "77712720-5018-5169-8340-387cfc7e665f", "text": "Preview for YouTube channel sword. In the style of Fortnite "} +{"id": "6002027", "video_name": "f46031c0-8c76-59dd-92d6-418e42aee710", "text": "yellow robe figure hovering in street "} +{"id": "6002993", "video_name": "5d987e0b-2095-50e4-af23-bb9a64777ad7", "text": "The Western Han Dynasty and Rome fought a war "} +{"id": "0004976", "video_name": "1296b188-cff3-5168-a48f-4d348a54f9a4", "text": "A neon city at night. A light straight blonde haired girl with light brown eyes and a short wavy dark brown haired girl with dark brown eyes are walking down the street, hand in hand, viewed from behind. The city lights are reflected in their hair and the neon lights cast colorful shadows on their bodies. 32k resolution. Dramatic lighting Frame size: 16:9 fps:24 "} +{"id": "4004133", "video_name": "d3dd4f15-abf4-5d38-8932-bb05390782b9", "text": "a stick figure character that waves his hands "} +{"id": "7002457", "video_name": "955a192f-adc5-58de-a0f9-909ab58d64c0", "text": "The Faraglioni of Capri under the snow, zoom in "} +{"id": "1005511", "video_name": "65784c82-6bbc-5d5e-978d-563345d98ea4", "text": "Haunted Cemetery, 2k, and there was a man there, Girl covered in blood looking at the camera as the camera zooms into his eyes "} +{"id": "0004471", "video_name": "09a7a648-7724-57da-aaca-223ef998145c", "text": "a boy watching his love being in love with another person, and leaving way for it, yet feeling sad seeing it, beautiful scenery, rainy climate, sad, studio ghibli "} +{"id": "2007913", "video_name": "0f2119e8-6715-57bc-adae-06dcbe906b76", "text": "A beautiful sunset in southwestern colors over the epic Southern Arizona Mountains. Saguaros and birds flying. "} +{"id": "8003613", "video_name": "f0a43ae7-eddd-50a9-8b6c-0d56495f1c11", "text": "trading options chart break out trade show profit on trading view website "} +{"id": "2007002", "video_name": "27acd368-c1c8-57b3-938c-717fc967d0d8", "text": "cycle walk horse move up his arms annd then running "} +{"id": "0003079", "video_name": "369f893f-f3b4-5e34-8bae-0d0b23541a28", "text": "action scene from tom cruize movies "} +{"id": "5001582", "video_name": "da6d5d29-823e-5d04-aed5-4a5dc3223dcb", "text": "Wind, cloudy. Shadows moving, detailed, Resolution optimized for whatsapp "} +{"id": "2006923", "video_name": "2a63826c-392e-589c-87b3-d09b16c60cab", "text": "Eastern aesthetics, subtle, restrained, jade red, for a promotional video. "} +{"id": "4003996", "video_name": "65be7cf3-f223-5d49-8218-15af75296c07", "text": "a deer versus horse fight at the level of an ancient god "} +{"id": "2007935", "video_name": "03320a2b-6f88-5415-a154-64600ff54e6f", "text": "The beautiful boy of the ancient comic strip walked with a sword in the face of the wind and snow "} +{"id": "4003295", "video_name": "7e2e67df-4170-55fc-a618-f8ede73ed0e5", "text": "camera zoom in to a beautiful lady "} +{"id": "8002877", "video_name": "5c669dcb-13d2-584b-a4cf-75945932b0d0", "text": "raam with SITA raam hair is flying and raam cloth flying raam clothe is orange colour \nSita ji wearing is orange saari Sweta saari pallu is flying And his hair is flying "} +{"id": "0006290", "video_name": "2a10c020-d41f-5cfa-a10b-8a6feebd4ee5", "text": "In the bustling streets of Mumbai, a young boy named Raju earned his livelihood by polishing shoes "} +{"id": "6002499", "video_name": "1e9f9845-cc6f-5c90-9ec4-4bdd26290288", "text": "Solar sail flies into the depths of the univers "} +{"id": "1005016", "video_name": "5cce3a86-447e-5f8e-a24a-0262ad28c3f7", "text": "Battle robot patrolling in the city of Istanbul "} +{"id": "5001657", "video_name": "c97705e6-3801-519d-9a9f-7dc97eb6821b", "text": "Two birds perched on the tree, affectionate towards each other. "} +{"id": "2004083", "video_name": "058ae3c5-a86b-557e-a296-ddf809f8bacf", "text": "wireframe triangulation highway model,4k,high details,high definition,HD,ultra HD,3D faces "} +{"id": "2005377", "video_name": "4bac40c7-3d0a-528a-ae75-bcd21f013007", "text": "Background is (window, vase), round glass table, due diligence:(a steaming cup of coffee) "} +{"id": "3005633", "video_name": "51c7cddd-1a69-58dc-a244-08bcc0eba857", "text": "1950s super 8 footage of a colorful ufo encounter at night, Dario Argento style film "} +{"id": "2004922", "video_name": "7cdd37b8-a95e-5fa2-aaf3-66f10d6fdcab", "text": "a young hand grows wrinkly, and skins falls off revelaing bone "} +{"id": "1004168", "video_name": "4d2b1918-3640-53d4-bf21-d64d68d7f040", "text": "A neon gaming room with moving rgb lights "} +{"id": "7004185", "video_name": "94c84a19-4236-570a-9923-f10a3f6fce8b", "text": "gold digger happy finding new things "} +{"id": "0005006", "video_name": "13227ce7-b614-5ca7-9f93-f4783fcccc4d", "text": "give me a girl image who cradles the butterfly in her hands. "} +{"id": "0004560", "video_name": "0b444de6-cddf-597b-a209-b5680757bd74", "text": "The room was filled with ancient, rotting furniture covered in tattered sheets. A sense of impending doom hung heavy in the air. "} +{"id": "4003875", "video_name": "411701e3-5bcf-5213-97e1-13f6cc98aad2", "text": "an eldritch creature standing next to a house during night time, 90s vhs home movie "} +{"id": "2006995", "video_name": "2463a003-05af-5e73-a8d4-ee9e13207331", "text": "In the morning light, as the sun rises Our meeting spins a miraculous tale "} +{"id": "1003658", "video_name": "435d0699-ac37-53f6-87fe-bb4d1ece3197", "text": "an ape in destroyed city holding weapom.cineamtic and realistic "} +{"id": "8003608", "video_name": "e24d73ce-f31c-5168-9cf3-0b5c83df4300", "text": "A bouquet of beautiful flowers, Rose, Full of stars, In a delicate flower basket, The wind blows the flowers "} +{"id": "5001762", "video_name": "3ed09aa0-a44e-5707-a6da-21baea58feed", "text": "PROFESSIONAL full body photo featuring a 30 years old man (with thin hairline) standing and facing camera. He is standing still in the center of a bustling street and appears as a still point in a sea of motion blur caused by the slow shutter speed. "} +{"id": "3004012", "video_name": "43e16275-d37b-53bc-9020-dc5be016f4ea", "text": "a orange fish swimming with its family at the seabed. Cartoon style "} +{"id": "7004324", "video_name": "bdb725e5-c277-503e-91c4-a14ef4afa305", "text": "Qatar airways flight flying like a bird "} +{"id": "3003769", "video_name": "a3a5c9c5-9210-5f46-a47e-b34f7733aef0", "text": "lava slowly flowing, broken chain parts falling down from heaven "} +{"id": "6004707", "video_name": "4b7ea2bc-ecf7-53e8-8e46-1782e26ab50c", "text": "anatomic heart, rose, floral, gothic, tree branch brown, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski "} +{"id": "7003287", "video_name": "7a4e2b0e-baf2-50ba-a68d-40ba5e097987", "text": "Fast zoom out of steampunk dancing robot in fractal infinity HD cinematic "} +{"id": "2006556", "video_name": "05272491-5391-5c26-b984-3f64ee883306", "text": "make a love with the name zahra "} +{"id": "2004576", "video_name": "7d124b47-0d3a-5b81-b572-0f73f4700910", "text": "On the mountain, watching the soldiers fighting below. "} +{"id": "2003275", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "a lion walking with a hunter "} +{"id": "8003236", "video_name": "61806b20-4d3a-5ea6-bdbf-0b7f821abcba", "text": "cinematic scene where character looks towards camera, male long black hair, noir style, animated "} +{"id": "0003900", "video_name": "456a8c98-8473-5d3e-94c0-92db7f3715cf", "text": "hindu god lord balaji is in standing inside the tirupathi temple. Hindu god brahma serving the lord balaji by washing legs for balaji. Cinematic view "} +{"id": "6004259", "video_name": "b7a2f48e-91bc-57c3-8315-c07f91a19fed", "text": "A copywriter is busy on writing a great letter for his client very sincerely with his Black Parker Pen on a paper. Hyper realistic, 4K video "} +{"id": "8001594", "video_name": "32b23478-f0b1-545e-ab1b-f113edaefe18", "text": "in the pine forest, heavy rain, thunder and strong wind, stone path, 3d cartoon, 16:9 "} +{"id": "6002557", "video_name": "2f101898-2e1b-55bf-92ad-131723fefbbb", "text": "create a vidio buffalo seems happy and smiling and talking with lion and lion become happy "} +{"id": "3006598", "video_name": "a2362cdc-2aa1-5223-bffa-48bb2db934a1", "text": "cats playing music in a pub "} +{"id": "3003299", "video_name": "72b9ede1-1f61-5293-8516-ed8f188143af", "text": "cow rides a snowboard on a snowy mountain "} +{"id": "2005362", "video_name": "12d334b2-7ce7-534c-8151-fccdb9a377be", "text": "green birds fly past a white kite "} +{"id": "2007810", "video_name": "cd38d871-144e-5f1f-a543-19730d973752", "text": "An old man going up the stairs, passing several beautiful houses, goes to a place where there is a bench near a tree, sits on a bench and sees his wrist watch, then exhales and watches the sunset in front of him "} +{"id": "7002841", "video_name": "0b9f5c9b-ae5f-5a3c-b6e8-81a9c2303830", "text": "a blue fish jumping in the ocean "} +{"id": "0003789", "video_name": "436f80f2-b7d2-5ea1-93ee-d1b35d270da6", "text": "Father prepares a large picnic basket, and mother makes sandwiches for the children. The kids happily gather games for the outing. "} +{"id": "1003558", "video_name": "41930b89-00dc-5e48-9b80-a29debadb9ef", "text": "princess talking and looking around with a sad smile Message: 1 Attachment "} +{"id": "1004472", "video_name": "52cf92a4-8da7-55a7-9048-66489ca7b17f", "text": "celebrity eating spaghetti with bare hands "} +{"id": "4002485", "video_name": "f7f77de6-014f-50cf-8814-b68302a8a2cd", "text": "promo trailer for uk party, cartoon style "} +{"id": "2004862", "video_name": "e9c5152b-bf11-511e-b41d-4c8b575e59b6", "text": "A cat wearing an exquisite gown and regally holding a necklace mimics a fashion runway walk, demonstrating a unique taste in feline fashion. "} +{"id": "3003924", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "a black cat eating a blue rose in the very top of the hill during twilight "} +{"id": "1005703", "video_name": "68d97cef-d9b2-5fa5-a82b-1a71580f989f", "text": "The three celestial beings watched in awe as their creation, the Earth, came to life. It was a world filled with wonder, beauty, and harmony. Terra, Luna, and Sol were overjoyed with what they had accomplished. "} +{"id": "2005561", "video_name": "2a2c55ab-e2c3-5e77-82e9-f3dd9ae86174", "text": "The camera returns to the Grand Gallery, where art lovers continue to wander in awe. "} +{"id": "0004403", "video_name": "0850becf-7ba8-5eb9-97c0-effe6b68964d", "text": "an asteroid falling through the clouds and exploding, photorealistic "} +{"id": "6003732", "video_name": "92e0bd05-3cf3-5ed5-8e82-095dcd8d2cf9", "text": "cinematic zoom into beautiful fast swirling space plasma deep field multicolor nebulas colliding zooming fast "} +{"id": "1003791", "video_name": "45f7ff07-3b2c-51b6-bfcf-4fea59c681d1", "text": "a hunter and a girl are driving through the desert "} +{"id": "8001592", "video_name": "c0930ca4-5512-53ec-bd91-b0fd527c3c3b", "text": "An epic batle scene of Fairs having a rave in a mushroom fairy ring in the forest at night with party lights and dancing "} +{"id": "1003674", "video_name": "43a35305-46ce-5d7e-b9f2-2f9b16690b48", "text": "Joe Biden, red lazer eyes, surging with power "} +{"id": "8002649", "video_name": "174f57ef-381f-5053-a10c-a8424428a2c6", "text": "a pink pearl landing on a full moon then fading away "} +{"id": "7003015", "video_name": "2dba4eb6-c26c-59d6-972f-7d4cba761dd8", "text": "A stylish man in Coat suit with flowers in hand talking to woman who is in Indian Saree attire with jewels. Both are talking eachother in Night time where in Natural scenery "} +{"id": "0006548", "video_name": "2e7a9ef0-fd51-53c3-b432-8b18ea7e3b07", "text": "a portrait style animation of a starry celestial view of the sky "} +{"id": "4003265", "video_name": "a5b75e23-50dd-5330-bf93-3022924ea9b7", "text": "a little dog named Dexter. With bright eyes and a soft brown coat "} +{"id": "6004378", "video_name": "d7fda019-c789-585c-af91-f02aeac9ec32", "text": "The camera focuses on Laika, as she wanders lonely on the street, sniffing the air, trying to catch a scent of food "} +{"id": "8002721", "video_name": "d08bb5aa-5d21-500d-9855-555f3e8e17e2", "text": "stickman doing basketball, in the style of drawing "} +{"id": "3006068", "video_name": "369f94ad-f782-5d38-9be3-c597c6d4a64c", "text": "canon ball fired to a pirate ship and it sinks 4k quality "} +{"id": "6003383", "video_name": "0a499acf-26eb-5cc9-9f9c-281d5f012331", "text": "a trailer for a hollywood horror film set in the backlands of northeastern Brazil, telling the story of a tourist who got lost in the backlands and is now being chased by scary cangaceiros "} +{"id": "2006639", "video_name": "a579f2e2-d125-5ae7-af03-5409385ee0dc", "text": "A serene kitchen setting with natural light streaming in. A woman flipping an astragalus in the palm of her hand "} +{"id": "2006994", "video_name": "d296e4ac-df3e-5e31-ac78-576b1b6f9677", "text": "3d animation, motion 2 , 16:9 \nA lion attack on a giraffe back "} +{"id": "8002481", "video_name": "2a8c7ec3-2a6f-57fa-8502-4291deee656f", "text": "Anime cosplay beach party under a thatch roof. Tiki Bar. Vibarnt Colors. "} +{"id": "0003426", "video_name": "3d5c10dd-de23-5188-869d-a3d9a460aaa0", "text": "mossy mushrooms in a purple forest, shining stars, and galaxies "} +{"id": "2007857", "video_name": "fb9a3503-fa18-55c2-a894-f708fc06bec9", "text": "A woman with long, slender legs is walking. She is wearing a miniskirt, back view, black high heels and pantyhose, "} +{"id": "8002171", "video_name": "3606fa36-b28a-520a-b725-d52cc04a1bfd", "text": "woman brewing coffee with kitchen background, "} +{"id": "2007627", "video_name": "d079e509-ee56-55bd-a69d-5ff8651e720b", "text": "Craft a dynamic visual spectacle: Picture a vibrant red backdrop as a cosmic stage. Envision a globe in perpetual motion, spinning faster than the human eye can track, seamlessly zooming in and out of the vast expanse of the universe. Let the audience feel the exhilarating journey through the cosmos, encapsulating the essence of boundless exploration and discovery "} +{"id": "3005933", "video_name": "bc2cfb79-c109-5abf-8006-7b325864eff6", "text": "bob schneider in a sake bar in tokyo "} +{"id": "1004041", "video_name": "4af4f6cd-14c7-5466-a9b4-39b0f3508ec8", "text": "cinematic view of boats floating down the river "} +{"id": "0004350", "video_name": "078c7868-8f02-5e83-94c8-6efcd3f631fd", "text": "Realistic Dogs Attack The City Realistic Soldiers Defend the City 4K "} +{"id": "4003793", "video_name": "ab2f34eb-dced-5500-b236-ce9c43d7fc58", "text": "2 kitten , They are touching each other in a friendly manner "} +{"id": "2006853", "video_name": "8a139d3c-b938-535c-99b4-0eb429b0bca8", "text": "Video of a woman with golden skin and dark hair, sleeping deeply on a bed of clouds, with visible chest movements indicating breathing. She is surrounded by clouds and stars, with gentle movement of the clouds around her and the stars shining brightly "} +{"id": "2007183", "video_name": "5c1b972b-862c-5868-bc57-199a7d120ef4", "text": "Animated characters navigating jungle, solving riddles, facing storms "} +{"id": "2007400", "video_name": "3676db8d-5ea9-5946-819b-8b7acc91f5d4", "text": "Ghibli world beautiful hut,water stream,bird flying around "} +{"id": "0004307", "video_name": "06d2e8f8-9987-5fa9-914b-7608a24686b8", "text": "3D animated video of john and meeshu travelling in a bicycle inside a deep forest "} +{"id": "8002472", "video_name": "e2fde849-8c4d-5f1b-b0e7-a99d97213c71", "text": "grogoroth buddha moloch staute 1920s footage eerie "} +{"id": "5001339", "video_name": "c044c61a-3845-5e43-9b05-9fc864de321e", "text": "money tree raining coins, 4k, photo realistc "} +{"id": "2006758", "video_name": "856eb496-d911-5177-bdf3-e0c2dc54c160", "text": "police crime scene outside a chucky cheese kids restaurant. detailed photo from front of building "} +{"id": "4004106", "video_name": "93a87312-e62d-5629-9b11-c95e72538415", "text": "abstract forest beautiful, 8k, 3d render, award winning, blender "} +{"id": "6004267", "video_name": "df3ce3b8-9dab-59b0-98aa-be4cb892eaac", "text": "Every child in town now dreamt of the next adventure, waiting for the day the magic playground would reappear, reminding them that extraordinary adventures could be found in the most unexpected places. "} +{"id": "2007593", "video_name": "89af21e1-8e1f-5794-a268-4be6a9db9486", "text": "The fireflies are surrounded by a dark blue night sky, with a few stars visible in the distance. "} +{"id": "0005986", "video_name": "248db85d-4ec4-5e44-abbd-c82d5df239df", "text": "a chinese dragon in Chrismas,the art of origami "} +{"id": "0005832", "video_name": "21e23eee-0c1e-5a69-b197-f1331ccd3d20", "text": "freelancer using a mobile app to get a lead or job "} +{"id": "3005867", "video_name": "d43cca88-1361-54ae-ae9d-075e440bb803", "text": "Kaplankaya seaside walkway golden hour stone paving Seating glamour olive trees uhd pan and zoom in ripples perfection cinematic "} +{"id": "1004554", "video_name": "548af631-36bc-5d84-9c73-b87a4e16ba2f", "text": "Show a brief moment of Haku revealing his true form as a dragon to Chihiro. "} +{"id": "5001797", "video_name": "59f07c49-c173-5c68-abba-959ecd1383ce", "text": "motivational speech a woman teacher background in class room teaching to aliens "} +{"id": "3005535", "video_name": "8664bcfa-2083-5379-979f-8964522665bf", "text": "a family Message: Berjan (Font: MODERN) "} +{"id": "5001438", "video_name": "23ae290a-2a21-56cb-aa7d-2c0410863a0c", "text": "Indian king servent who was inside the jail say something. "} +{"id": "1003906", "video_name": "48112629-d7ab-5811-8141-5f4846e9402d", "text": "a dancing korea girl with long hair,short skirt,long leg "} +{"id": "6002052", "video_name": "3e342984-e3e7-5c47-add1-07ef07a4ce89", "text": "cat Garfield speaks while looking at the screen. 3d, ultra hd, 8k, hyper sharp, wide angle, anime, illustrate, garfield style "} +{"id": "6002408", "video_name": "e5fb8f21-f4ab-5bbf-957f-687a04b454d8", "text": "student in uniform sitting in classroom while on laptop \nreceives notification from phone which is side on "} +{"id": "3006380", "video_name": "dbaca836-b541-5717-8c8c-ba77cc2cec8b", "text": "image, a woman watching her lover with a countryside landscape in the background, romantic, shoulder shot "} +{"id": "5001249", "video_name": "cf2cada9-f8db-5827-a633-459d4e4f9fd4", "text": "orked tirelessly to rescue their livestock and protect what was left of their crops "} +{"id": "1006898", "video_name": "7e1ada98-6f90-502c-937b-239f2cb2a79d", "text": "an autumn forest. Cloudy day. Autumn leaves. Serene. Gloomy. "} +{"id": "3005387", "video_name": "19f65ebe-86c3-5081-9a68-bb5f0683ee7e", "text": "little chrome beetles and ants eat up each other battle of the insects "} +{"id": "1003577", "video_name": "41edba39-147e-57ba-8870-d6fa69e168cc", "text": "Beatiful futurist landscape and nice skies changing color "} +{"id": "1006944", "video_name": "7f140edb-4871-525e-9ae5-2db0247b1110", "text": "She is the only light in the night, and her voice is a beacon of hope "} +{"id": "1006988", "video_name": "7fdac6c0-cca8-5038-b180-cac2a4a69590", "text": "create a video about a kid watching his city in a proud moment "} +{"id": "2007418", "video_name": "4be04383-5c86-54f5-99e3-8f7d51345431", "text": "A high school girl wrestler in action "} +{"id": "3004377", "video_name": "f78abc7f-24cd-5fad-827f-05bdb0c29901", "text": "Cinema: ancient Ninja Walk in a asian town "} +{"id": "7004966", "video_name": "efd60977-d66e-5d56-8a34-8ce244ec20ae", "text": "a cat made out of a cannabis plant is taking a nap and purring in a pillow next to a window "} +{"id": "8002782", "video_name": "6213fde2-9e58-5d17-ad94-c468f98f8f88", "text": "Elon Musk with his Satellites in the Space "} +{"id": "4002594", "video_name": "161dcc09-649c-5bb0-bde3-adda3a366816", "text": "an ice cream slightly turn into a turtle, anomation "} +{"id": "1006933", "video_name": "7ece9ff5-2434-5834-95a5-1a4b0245f06c", "text": "Presentation of a relaxing interior with a view of a beautiful backyard. The modern window is adorned with contemporary blinds that allow you to adjust the amount of light in the room. Realisticphoto, 4k, hdr "} +{"id": "8003947", "video_name": "c4dd9564-c571-5468-922d-07a0499b0ffa", "text": "a dog driving a tesla in traffic "} +{"id": "8002619", "video_name": "bae2dc01-db31-54b7-8615-48f2fe4bd397", "text": "The Magical Adventures of Luna the Llama "} +{"id": "1005179", "video_name": "5f4cdec3-f918-5734-b451-f1246fc94a5d", "text": "natural birth attended by a white doctor with glasses in a blue uniform "} +{"id": "3003774", "video_name": "f92cc59a-b9ca-53f9-a9f4-6f522ed90bbd", "text": "a spaceman arriving at the moon "} +{"id": "6003029", "video_name": "20455900-d949-5cd3-83f6-09b9d804d13b", "text": "i want meet lord shiv india "} +{"id": "6002564", "video_name": "b595af93-685f-5c24-8450-39058216c23e", "text": "cartoon wolf eyes beautiful big woman walks by wolf 70 style "} +{"id": "0005064", "video_name": "140b5014-bb69-51c4-b9af-7db484dff5c0", "text": "Video design for the YouTube channel "} +{"id": "2003733", "video_name": "7e8d96ac-aa35-534b-a306-2f12f48f2633", "text": "Xiao YinYin sits on the meadow, releasing a paper plane that soars high into the sky. "} +{"id": "2003876", "video_name": "ed05a75d-2aa7-5649-a2c2-59fe92131bdf", "text": "A woman walked by the door "} +{"id": "2003827", "video_name": "b2838652-d032-5424-822b-1d72fdcda019", "text": "Jump to the ground, As the Turbo slows to cross the borderline, Run like the wind as excitement shivers up and down my spine "} +{"id": "8003786", "video_name": "689cb5ee-4a16-5227-bddd-7379fe2c039e", "text": "best quality, masterpiece, Background: On the table, playing cards have transformed into human images, 8k uhd, dslr, soft lighting, high quality, volumetric lighting, candid, Photograph, high resolution, 4k, 8k, Bokeh "} +{"id": "4003522", "video_name": "45acf1a8-df1d-5e9f-aeb9-3d59e279569b", "text": "Penguins of Madagascar making C4. 3D, realistic "} +{"id": "4003350", "video_name": "ea6d7654-3d69-5333-85d5-ed3d02a9835d", "text": "The robot cat is holding a microphone to sing. "} +{"id": "4002087", "video_name": "b20d2da7-3695-5792-afee-cfa94e5a208e", "text": "a animation of a deer running through the woods "} +{"id": "2005901", "video_name": "330e02bc-5172-5ff2-b268-91cbd1031722", "text": "A woman wearing black leather jacket is riding a motorcycle, holding a gun in her hand. Behind her are a group of chasing police cars and helicopters. In front of her is a bridge and an explosion. Modern, Los Angeles, action movie. "} +{"id": "3003975", "video_name": "72e9bea2-def6-59eb-9ee6-655af93c11da", "text": "people asking a man from where he has bought a toy "} +{"id": "0005922", "video_name": "234db46f-a588-54e3-8828-fd5a882aab3d", "text": "neu brutalist planet floating with stars in the background "} +{"id": "1005591", "video_name": "66daba80-1714-5caf-ad98-7a52b788ab57", "text": "Some magical views to the north "} +{"id": "8001880", "video_name": "26ce1913-1446-5760-bf15-8ccc7e258cdd", "text": "a man eating meat with a blue background "} +{"id": "4002768", "video_name": "b6b3aa30-dc3a-5a20-aa03-5f5d88390e65", "text": "i would like hair that floats like in the air , as well as the candle and the flowers moving like a wind crossing the room please "} +{"id": "7002675", "video_name": "a22bd8b4-d361-5ee9-b4e6-f530ff99c4e8", "text": "animate in manga style, picasso paintings "} +{"id": "2004904", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "a beautiful ladies spinning and dancing in the Cosmic world "} +{"id": "0004611", "video_name": "0be64c9a-fcfb-5ec7-b2a6-38a7527c899c", "text": "a school girl with her dog walking on street in dark space and lost in the universe also slow and lofi feeling "} +{"id": "2007072", "video_name": "f30643d5-365b-58f9-8a5f-d3b95b3d7117", "text": "img In a quaint village, there lived a young boy named Sam "} +{"id": "2003230", "video_name": "a5db6108-be02-510c-a20b-03b99018beb0", "text": "motivational king speaking to large crowd of people "} +{"id": "7004563", "video_name": "099ba0de-4161-52e7-a39a-e0d4f1453fdd", "text": "crate a scene of night with full moon and stars "} +{"id": "2006796", "video_name": "e0a68589-883f-5f1f-83a3-ebb55fb65eba", "text": "photo realistic Tyler Darden eating cigarettes "} +{"id": "3006459", "video_name": "e1e5c51c-6473-5a13-a383-11542a0a7784", "text": "starting afresh or breaking free from unhealthy habits or obsessions, akin to wiping away the muddiness and embracing a clean, unburdened existence. "} +{"id": "6003611", "video_name": "aab9fc01-a2fb-5862-8229-16933628b439", "text": "something droping on the tion head at night forest animal party "} +{"id": "0005578", "video_name": "1d5dacb0-b0af-57f9-ad2e-e1f89fdc9ff2", "text": "messi that score in the final of champions league vs Juventus "} +{"id": "7003377", "video_name": "6c71a52e-bc75-5fe3-b393-2b742c69911e", "text": "Harry Potter, with a muscular physique, is wearing a tank top and lifting a barbell "} +{"id": "2003117", "video_name": "edbab424-53fa-5d95-b661-42ece9bed617", "text": "Plumber repairing toilet in a gas station bathroom "} +{"id": "8001549", "video_name": "0e3c0d79-ed7e-5d44-a9b7-3d98ffdc7166", "text": "Creation video: night, Moscow city, great plan label at Favor flux "} +{"id": "3005119", "video_name": "f000637b-3313-5315-a8de-85118302a471", "text": "A man in a jacket with a hood and a backpack stands and holds an assault rifle. Behind him, ruins are visible and fires are burning. Dust and smoke are flying. Black and white bluish image. Front view of the camera. "} +{"id": "0003968", "video_name": "00de6cc7-1f56-59de-afa2-5512bc54b54f", "text": "Only when people get rid of loneliness can they regain the hustle and bustle "} +{"id": "2003839", "video_name": "0df90836-a6de-5ef4-a9d8-0cb935838081", "text": "create a hyper real ring of fire radiating from the center, 4K, ar 16:16 "} +{"id": "4004303", "video_name": "c5002883-79e1-527f-831e-c22c572b460f", "text": "Two people walked out of the tent "} +{"id": "0003384", "video_name": "3ca66383-f8e7-54d9-8ace-7e64e81ff544", "text": "a man walking in a neon city "} +{"id": "7002555", "video_name": "783563f2-ec17-5291-af59-3e7fcddfaf55", "text": "Beautiful model is showing off his latest outfit on stage "} +{"id": "8002941", "video_name": "3667c860-194c-563c-90d7-d1cad6123719", "text": "claymation weird human midsommar mask covreing face, high detail, lots of detail, sunset, colourful, weird, creepy, surreal, macro detail "} +{"id": "1004241", "video_name": "4e7c6e98-3e5a-542f-bc0b-90e02da11e33", "text": "Academic celebration, professors surprise the students with a terrorist attack. "} +{"id": "2006577", "video_name": "b4da404a-325d-5dd2-ac67-010185579a83", "text": "A movement that fuses cubism with surrealism, creating images that defy perception and reality "} +{"id": "1004790", "video_name": "587b9934-9edb-5b75-989d-f0c88be79088", "text": "ungoliant the giant spider devouring light "} +{"id": "4002364", "video_name": "2981b5e1-2874-5a7e-be85-a5921cf97e59", "text": "a 3d avatar that is hip hop mixtape looking "} +{"id": "2006125", "video_name": "3a67002b-e012-5202-9256-dffd289cfc5b", "text": "A man talks to the camera "} +{"id": "6002233", "video_name": "bc85dd56-d585-572b-b182-7edb548415a7", "text": "a close up of a womans hand holding a phone with the screen on (cyberpunk,cinematic) "} +{"id": "1003596", "video_name": "4231c070-9aed-5774-8a02-e919dfe1fa07", "text": "A white kitten is playing with a pink ball "} +{"id": "0003369", "video_name": "3c5d2f0f-bde6-58ec-bfd7-19d7b87d3d8b", "text": "man in trench coat and hat. A distant silhouette, walks, black and white. Urban haunted eerie. Deep shadows. And a watching figure in the foreground "} +{"id": "2007775", "video_name": "8ea6a1c5-22af-5c46-b74f-03bb56e45bf7", "text": "They see that the jewel of a proven Bale King is in the middle. "} +{"id": "6003932", "video_name": "9b24dc78-64f3-5476-8a66-90eb9ed07da5", "text": "cinematic shot, dream sequence, a lady is walking with her luggage, perspective should be from behind "} +{"id": "0005995", "video_name": "24ad5dee-b2cd-5597-aad0-6eb1a884af2b", "text": "Person acting as a frog 30 second HD video "} +{"id": "6002528", "video_name": "0ea45654-5a45-5fd4-8600-d5c1d6405966", "text": "Paradise with its details of the highest quality "} +{"id": "8003546", "video_name": "57b1c028-9168-5bde-88cf-ed77f900af50", "text": "Giant honeycomb with falling gold dust on black background and bees working on the honeycomb "} +{"id": "6002841", "video_name": "8ea3add3-ff0e-5d4b-9124-f85d259bc9ea", "text": "a girl putting suntan lotion on. On the beach. "} +{"id": "3004154", "video_name": "182cdb72-24e4-597a-9034-425ab8654a16", "text": "An egg, an elbow, an envelope, and an elephant chilling in the park. "} +{"id": "4004368", "video_name": "c4451c9d-a32e-5723-b55e-083f8563c146", "text": "under the sea, little mermaids in nice outfits, colorful, ultra realistic, detailed, they are talking to sea weeds "} +{"id": "0003805", "video_name": "43d63ed9-8e2c-5c73-825f-1d16c7e82df8", "text": "king clean a sword Message: 1 Attachment "} +{"id": "1004298", "video_name": "4f7dafa0-9001-5fe6-abf5-f467bd9a71af", "text": "Imaginary portrayal of Einstein surrounded by equations and thought bubbles with sketches of his ideas. "} +{"id": "0004432", "video_name": "08d2d2e0-f694-58f7-b798-058f430c9c1f", "text": "driving a Porsche 911 through the future Moscow "} +{"id": "2007494", "video_name": "e112dde4-2364-50e0-93f4-c2e3128253b5", "text": "Screen ratio: 9:16 In an early morning field, a springtime scene. In the center of the picture is a cute boy sleeping on a wooden bed inside the house is in the state of spring sleep. Outside the window, on the surrounding grass, new green grass emerges from the ground, forming a sea of emerald green. "} +{"id": "3006721", "video_name": "5c5dd3d0-1549-562a-b6ad-5fcf2093e71e", "text": "idk how to create a normal prompt "} +{"id": "1005237", "video_name": "6057a91a-542f-50a0-ab05-6ad4a83f31fa", "text": "Nacho Cheese chips doing the floss dance "} +{"id": "5001841", "video_name": "6df179be-305c-5239-a245-c157277ef6e8", "text": "video of animated bus spinning around and shrinking to microscopic size "} +{"id": "0004395", "video_name": "0832c245-cd08-56f1-875f-7dcab0a7afbf", "text": "soy beans falling from a sac, on a neutral backgroud "} +{"id": "2007050", "video_name": "5fb151d2-5704-5685-b309-1fdf08565d09", "text": "Cristiano Ronaldo in the shape of a camel "} +{"id": "8002866", "video_name": "9c9ea677-1c8d-5d1b-a82b-7f074c0516f5", "text": "an elegant office with a computer on, zoom in, with a view of the city 4k "} +{"id": "0004141", "video_name": "03fa4248-b422-5240-9514-1b2bf17965e3", "text": "A metallic Spiderman in black and red suit in the style of multifaceted geometry, vray tracing, exquisite craftsmanship, made of crystal, anna dittman with a cityscape background "} +{"id": "2005931", "video_name": "ba99a54c-d970-5826-92d8-2a1941b542a3", "text": "elon musk says 1)Go to bitfura.com\n2)Enter referral code GHKERW25\n3)Get 0.25 bitcoin to your account\n4)Deposit 0.01 BTC to activate your wallet\n5)Withdraw BTC to a wallet convenient for you "} +{"id": "6002746", "video_name": "00920568-5250-5c90-a621-83e88c95833c", "text": "Heimerdinger from league of legends eating grapes "} +{"id": "7003086", "video_name": "a31d6d08-337b-5403-bed6-4a0baa3dd364", "text": "Capture the Birth of a Legend: Visualize the ferocious duel between young Musashi and Arima Kihei, set against a backdrop of a misty training ground, where the relentless spirit of a warrior is forged. "} +{"id": "2006034", "video_name": "a121d33d-bea2-577a-b539-3c82c0550a47", "text": "People from different cultures interacting with nature, such as gardeners, farmers, and fishermen "} +{"id": "6004691", "video_name": "67108fb0-c262-55f1-bdaa-0536ddaa593f", "text": "a minecraft house with steve from minecraft on the bed "} +{"id": "7003092", "video_name": "177f4db1-5f06-5895-97db-815a0026bf58", "text": "the witcher man and woman radining on harse in jungle road "} +{"id": "2005977", "video_name": "5a342a59-c6e3-5758-a4d7-8d0e1108d0f6", "text": "One day, she decided to sneak out of the castle and go on an adventure. "} +{"id": "7004557", "video_name": "32a1a00a-d3e7-5777-8aa4-1275c35198f9", "text": "Stock footage of printing presses and cash. Narrator: Fiat money has dominated finance for decades. This antiquated system is controlled by central banks and commercial lenders. But their time is running out. "} +{"id": "5001485", "video_name": "c607030a-043b-555f-893c-8f35e55a20c1", "text": "Futuristic AI consultant inviting audience to join him on an AI journey. "} +{"id": "4004358", "video_name": "0446eacd-3751-5ddd-b465-93fb7f0bc3ac", "text": "Beautiful fantasy city, medieval city, metropolis, magic, waterways, waterfalls, gorgeous clouds, white marble, god rays, octane render, unreal engine, high detail, very realistic, details, sharp focus, more proportion of castle , moving clouds "} +{"id": "1005856", "video_name": "6bbdaad2-59f6-5ea7-8668-e04f831e0a94", "text": "i Chang, in the form of a beautiful woman, enters the bustling capital of the Tang Dynasty for the first time. "} +{"id": "8003858", "video_name": "ec95f938-1182-500e-92e6-7de78366bb39", "text": "parkle , glitter , lense flare , splash , commercial poster , high contrast , motion blur ,bokeh "} +{"id": "7003156", "video_name": "d3ac4b37-468d-5432-bdec-78dec8a8b08d", "text": "Lord endershpere Toyal regal Lord In field in AONB Hunting Lodge in distance "} +{"id": "1004127", "video_name": "4c6d022b-7a23-506a-9b7f-3e8a1cdb986f", "text": "two dogs being sat in a gondola in Venice. With a gondolier signing an Italian love song while the two dogs get romantic and the male dog passes the female dog a red rose and chocolates "} +{"id": "7002324", "video_name": "0ccc09f6-b39a-5fd8-b1c4-efbf137fa546", "text": "Ethan walk to dog side on the bushes "} +{"id": "3006399", "video_name": "2a15533a-96d9-5505-8227-08bd3d9a22e4", "text": "a man of class elegant intelligent handsome "} +{"id": "8001079", "video_name": "651f93ca-3d6b-5eb2-b069-47683aaed3ee", "text": "Eminem at a barbeque rapping wearing a knitted sweater "} +{"id": "5001259", "video_name": "729d79fd-83c1-537b-8b56-0327b3b954c6", "text": "Gloomy surrounded by an aura of darkness as he wrestles with his own insecurities and fears while touching the Glimmerstone. "} +{"id": "2006483", "video_name": "235c1e62-1585-5f21-a1c0-5ab279463f13", "text": "a mystical woman, beautiful, deep blue eyes "} +{"id": "7003736", "video_name": "621623cd-5c5c-56e4-b17c-ba00ca7b3990", "text": "Atlantis the lost city with a strong wind blowing by. Dramatic cinematic pan "} +{"id": "4004146", "video_name": "45e3ceae-db21-5aa7-9b0e-88fe06b8b85f", "text": "feet walking in the fields, in the night "} +{"id": "2006927", "video_name": "bbe357c0-5ef1-5c84-a44a-11d92e67acce", "text": "Roman city with olives, old classic movie style "} +{"id": "8003141", "video_name": "b466c227-633f-55fb-bbaf-d88955b1fa01", "text": "video with Saint Michael in the center, camera in pan movement rotating in a circle around the archangel. The archangel must be a strong Catholic style, with a firm and faithful countenance, cinematographic colors. the environment takes place in a setting of angels "} +{"id": "7003849", "video_name": "12cc9f76-34d4-5a93-bb6e-73aede9f1842", "text": "A little cat wearing Superman clothes is flying in the sky "} +{"id": "8002588", "video_name": "9e6bbc0b-b07c-5a81-b599-514872d64c34", "text": "space shuttle, flying through meteors, space light, alien mothership rising "} +{"id": "5001667", "video_name": "e4c04995-3b30-558f-b81f-3292e3ea6021", "text": "Jesus Christ blesses and congratulates Mays Manal on her birthday "} +{"id": "4003030", "video_name": "b63f1912-e06c-5e81-a2ce-8653d5d6744f", "text": "gold harp frame on grey light wall "} +{"id": "0006634", "video_name": "2ff6bdfd-3714-57ad-ac96-4a34c0b7d2b5", "text": "Neon airships floating through the night sky advertising products as the propellers spin. "} +{"id": "5001658", "video_name": "7386107b-9d70-564e-9328-29f0be502076", "text": "Mia confronts Cipher, engaging in a battle of wits and skill. Message: 1 Attachment "} +{"id": "3006157", "video_name": "3be7b333-51a7-5638-a48d-41bc0514ca4e", "text": "cinematic Story In the heart of the vibrant plains of Kenya, under the vast African sky, a story of courage, wisdom, and adventure unfolded. It was a story that would forever change the life of a young indian boy named Emmanuel, also known as Rohan, an Indian name given to him by his parents. "} +{"id": "4002413", "video_name": "cfdd769a-98da-5978-8caa-805dbf8e117e", "text": "Snowing in the winter, warm light "} +{"id": "0004936", "video_name": "11d028e8-69a4-546d-96df-8e4ad972b12b", "text": "video with snow falling and snow visible "} +{"id": "5001069", "video_name": "c28093cc-6dc5-5d59-8807-5eba60d210dc", "text": "a dachshund walking in the street and smile "} +{"id": "4004085", "video_name": "a28ac052-10cb-53ea-ae8a-a981dfe1dc2d", "text": "double rainbow on way home! Message: magical forest (Font: MODERN) "} +{"id": "2007441", "video_name": "014ff3e6-a3f6-5e8f-8cc2-60ca8899ab2d", "text": "Add white light to tea droplets Message: 1 Attachment "} +{"id": "7002982", "video_name": "0add7bea-abb9-5a38-aec5-9c46b54ee211", "text": "One day, they reached a massive tree with golden branches. Carved into the trunk were ancient symbols that intrigued and captivated them. The symbols seemed to narrate the history of the Blue Forest, but they were so ancient that their meanings remained elusive. This discovery hinted at a new mystery, fueling their desire for further exploration. "} +{"id": "1004443", "video_name": "52321a88-ea17-5fe1-8218-ab1d6fac88a8", "text": "make a dream feel, like Disturbed reality. clouds appear Message: 1 Attachment "} +{"id": "2004046", "video_name": "4136ead5-db4b-5853-b4dc-ca21d27c1f50", "text": "The young man with brown shirt and backpack saw a small microphone from a distance installed in the corner of the cigarettes and tea making shop where the sound was coming from while he is taking a cigarette Kolkata bazaar "} +{"id": "3003884", "video_name": "e02dc96d-1017-5caf-8a30-dfd1397a04d1", "text": "a scary woman with yellow eyes, rising out of a lake filled with dead autumn leaves "} +{"id": "5001501", "video_name": "61c80730-4398-5e0d-bf01-af7a37a9ee25", "text": "a dog of the beagle kind sat down in front of a steering wheel driving a car talking to the camera portrait realistic "} +{"id": "0004160", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "beautiful lady busy with her laptop "} +{"id": "0003464", "video_name": "3df67bc6-87da-5b78-8283-f1d06563dc98", "text": "Cyberpunk neon neighborhoods weave through the city "} +{"id": "1003608", "video_name": "4286018e-fd40-5ec5-9f51-00c36256cddc", "text": "Tree of life with roots and spirits around with black background. "} +{"id": "3004830", "video_name": "481d0328-360a-5b0f-b455-fc548dc9d07f", "text": "a korean handsome young walkin to the school anime style kpop "} +{"id": "1004734", "video_name": "57c00286-2919-5e6c-8bba-024fbde59b94", "text": "a robot is running along in the forest "} +{"id": "2003105", "video_name": "2f3fefd3-2277-5b5f-a9cb-4c9f5e8750f0", "text": "cinematic view of new york city, motivating, sun set "} +{"id": "4004899", "video_name": "d7e4be13-1ab9-5cb4-8afe-14b100e992d6", "text": "a sculpture ofpowerful stoic philosopher zooming loop video "} +{"id": "3003151", "video_name": "46db2d6c-616a-5dd0-9f29-16150947fff7", "text": "Hyper expressive and emotive Animation of goku super saiyan powering up "} +{"id": "1004947", "video_name": "5b8184d3-9de4-520a-b9bc-94eede980d6d", "text": "rahul gandhi walking on moon surface "} +{"id": "0003578", "video_name": "3fd55f27-2c45-5c19-8e7f-b574f79c994a", "text": "drone shot of a massive nasa weapon in a nasa station "} +{"id": "0006687", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "Generate a video of an environment of the correlation between humans and AI "} +{"id": "3004554", "video_name": "f4c0c762-d8ad-5db9-b914-d756404a09f8", "text": "chinese nostalgia for 1960s born chinese in China "} +{"id": "2003586", "video_name": "ea126f3b-bce8-5fb2-8da0-dbcd04432b2b", "text": "a video of a mountain in scotland "} +{"id": "1003190", "video_name": "3ab0c847-2502-5594-b672-7e6b674382e1", "text": "James web telescope video capture with drone "} +{"id": "2004731", "video_name": "9386da61-542d-5a9a-9895-3b0b01ced9dd", "text": "Amidst the chaos and carnage, there are moments of humanity, reminders of the shared bonds of human compassion "} +{"id": "6002708", "video_name": "4499f889-c4f1-510d-8fa3-6dcf9bc673af", "text": "girl standing with her back facing the wasteland, 1990s anime style "} +{"id": "6003534", "video_name": "8385b961-3fb8-5303-9658-276af03fc03e", "text": "Open with a wide shot of the vast Atlantic Ocean under a turbulent, overcast sky. The sea is restless, with waves crashing against the British and French warships. "} +{"id": "6002934", "video_name": "f6a47591-f9e9-5835-9d1d-6e0d23794b15", "text": "The Earth getting smaller and smaller from the spacecraft above "} +{"id": "8001853", "video_name": "86094085-180d-53f3-9d27-1a332a4b7d7a", "text": "a person, lonely, sitting on a bed, depressed. "} +{"id": "2004133", "video_name": "66246fb3-93e2-5317-912f-d3cfb0ae6c56", "text": "make the pages moving and girl is opening the book "} +{"id": "2006666", "video_name": "cc4275fa-6667-511b-ae83-abc125bcea31", "text": "Poster for the movie about Russian skateboarding airwalk "} +{"id": "0004241", "video_name": "05a4d9a5-e583-5df4-87b3-f75f2c3d524a", "text": "Matue smoking cigarettes in the beach "} +{"id": "6004144", "video_name": "96f22e5c-e51b-5cdd-9103-a39d451bc61c", "text": "female superstar singer, in front of a skyscraper in New york "} +{"id": "7004976", "video_name": "ba1ebe6d-53b0-5bee-b2b9-4420986d9aad", "text": "The man eats the air con "} +{"id": "4003307", "video_name": "657cfa23-b964-5a21-90af-bac74b5ffc58", "text": "a young man similar to the little prince with gray hair walking in a foggy forest, gloomy and nostalgic atmosphere, exquisite details, realistic, 8k definition "} +{"id": "8002718", "video_name": "771a38b0-0a84-5172-afaf-b2d84f9889f3", "text": "ninja playing golf with pokemon squartle "} +{"id": "6003566", "video_name": "c726d67d-1931-5870-ace8-176fb644f7a4", "text": "In China, there is a very high and ancient mountain. It is very high. There is also a very ancient temple on the top of the mountain. It is very sacred. "} +{"id": "0006713", "video_name": "318d6efa-c803-5057-929a-ca0fd1df2071", "text": "dates palm tree in the desert at night , 4k , 1:1 "} +{"id": "1003273", "video_name": "3c4061a5-e497-5350-907c-6d482e953287", "text": "Lana De Rey as the president of the world "} +{"id": "2004559", "video_name": "0f49a0dd-6f50-5d3c-93e0-40ca31cbeb5c", "text": "Generate a macaw standing on an eurasian lynx "} +{"id": "4004058", "video_name": "9315b053-d160-5057-8167-27fdd8da8e2e", "text": "graveyard cinamatic, motion, old, ghost type, night "} +{"id": "2007020", "video_name": "059c7b15-9524-5242-a318-4a90879926aa", "text": "a green screen video of people wearing costumes from 1920s "} +{"id": "4003019", "video_name": "627188d4-119a-5d14-813b-5c3b6e2b9fcd", "text": "old footage, vintage, a girl with a red beanie walking in a bombarded city "} +{"id": "2003029", "video_name": "067c4552-8976-5e21-8460-cf7e08ef8fac", "text": "make money with ai for youtube short "} +{"id": "4002411", "video_name": "e3ec0593-788f-517b-aa77-d8a931d82433", "text": "The woman hesitated for a moment, then accepted his offer. They sat down at a corner table, their eyes meeting for the first time. Her name was Meera, and she had been caught in the rain while waiting for a friend who had stood her up. "} +{"id": "1006872", "video_name": "7d7f7af4-3510-52c4-b12b-7ceadf3a89f7", "text": "an ancient stone giant walking on the street, high resolutions, beside the street are the city, background is during the night, "} +{"id": "8002990", "video_name": "cc450e43-9c92-5f61-a391-85756450f912", "text": "a young women looking for strength in love "} +{"id": "7003551", "video_name": "eefbd660-6bf3-5e4a-a2fb-57e8afb8d5c0", "text": "The spaceship crew and the alien Luminaries joined forces to unravel the mysteries of the Quantum Void. Together, they faced challenges that tested the limits of their understanding of reality. "} +{"id": "1003208", "video_name": "3b159854-501d-566e-b30d-77872f51a93d", "text": "Rainbow Wings As our protagonist, Mia, stepped into a clearing, she was greeted by a "} +{"id": "1006173", "video_name": "70fa4615-72c4-56c8-ba70-f2969b4aa855", "text": "a man with a watch for a head, night "} +{"id": "6003349", "video_name": "0b8273dc-0531-5eb3-b146-91f1e95cc202", "text": "anime style of water coming from a tab "} +{"id": "2007240", "video_name": "d1bffcd5-9dd6-5759-b5a6-bff80c39c7f7", "text": "In the dense bamboo forest, the spiral falling bamboo leaves in the close shot, in Japanese ink style "} +{"id": "4002549", "video_name": "a50cb89c-0b00-52ad-a611-4c826e7fcd58", "text": "passenger plane flying through the himalayas "} +{"id": "2007200", "video_name": "fc286ab2-65f7-50d1-90b2-dcc8070b8472", "text": "generate a girl, on a rainy night, the obedient cat and dog are sleeping next to them, Japanese cartoon style, the girl is quietly listening to music and doing homework. There is a cup of hot cocoa next to it, the overall atmosphere is very comfortable, it is a winter, Ghibli style "} +{"id": "5001434", "video_name": "bf19bb69-d1a4-5bc3-a5c6-773aed948242", "text": "Video of an Angel with a luminous silver body, shining face, purple wings with light and dark tones, dark on blue purple with silver edges shining in space and holding a gift in his hand, also this shiny blue metallic one with a red lace "} +{"id": "0004999", "video_name": "13008c4b-a001-58dc-9cf4-d8322efe2a86", "text": "IMAGEN DEL MAR Y LA ORILLA CON AGUAS TRANQUILAS Y RELAJANTES EN UN ATARDECER DE FONDO, MOVIMIENTO DEL AGUA "} +{"id": "1006791", "video_name": "7c655648-c6cd-5283-9e33-6575112c8992", "text": "3 slender Arab giants speak to Abraham, movie shot 70mm anamorphic lense, cinematic light, "} +{"id": "7003920", "video_name": "08e2eafb-127c-52b0-9be7-d20811667c76", "text": "cinematic shot, long shot, thin man, laughing, long hair, hair blowing, sky, clouds move, high resolution, fps 24 "} +{"id": "5001904", "video_name": "30502520-d191-5bb9-beef-66c6e0f211b7", "text": "little rabbit plays in the tree image: attachment "} +{"id": "0006805", "video_name": "336284c9-6a21-5b3b-9491-8eb8e4afd914", "text": "Mandarinfish swimming at the botton of the sea, ultra realistic, zoom out "} +{"id": "7002915", "video_name": "62440a6f-bc1c-5bdb-84ba-f232efe77165", "text": "Ancient warrior flying in space between clouds with golden sword and he has bright flashing eyes. dark scen . super detailed . 16:9 . 4k . 30fps "} +{"id": "5001151", "video_name": "c16bfa6b-6fb1-5632-be7b-05f3318af3cc", "text": "rainbow friends dancing and having fun. "} +{"id": "8001417", "video_name": "ed2936b4-d283-5633-9dc3-5c4a6d29a0a5", "text": "Face slowly smiles and hair blows slightly to the left. Earrings slowly gigglie with the wind. "} +{"id": "6002824", "video_name": "0e8a7604-579d-51a3-bee8-6fc3446c5ce1", "text": "A new idea comes to the brain in which a light bulb is drawn on the outer side of the brain and buld do on offAnd this frame should be of a boy sitting in a forest "} +{"id": "0004881", "video_name": "10d791f1-cf74-5836-9cfb-8603ca1f1326", "text": "a shot from behind and below. The scene is the back legs of a cowboy. he is leaving to go outside and its in an wold western style. "} +{"id": "0006619", "video_name": "2fa1d332-0b53-535e-a5ca-96b278963785", "text": "Display video of three sea turtles gliding through the water in the sea "} +{"id": "4003269", "video_name": "92cc70ea-758d-51ba-8dd7-140f44ea8eef", "text": "a survey surging on a big wave "} +{"id": "4003617", "video_name": "e3bf5a8b-5c68-5e85-aec3-2f8ef1764bc5", "text": "abstract double exposure photography of young woman and santa cruz california, storytelling depiction of a hopeful exciting new life in santa cruz california "} +{"id": "5001025", "video_name": "cf379afc-adbf-5f80-914a-b7b3abffca70", "text": "wind blowing trees in pacific north west "} +{"id": "6003052", "video_name": "76727b8a-103a-56c4-b6af-ec5e1e6a8272", "text": "the beautiful fairy turned Cinderella into a beautiful princess with a blue luxurious dress and beautiful glass slipper "} +{"id": "3004267", "video_name": "52e610ae-8e24-54e2-b0ce-a65d8551a2b4", "text": "Mysterious Blue jar in the beautiful jungle "} +{"id": "3003087", "video_name": "91cfcc14-cef8-501b-808b-0791b3010924", "text": "A lady, short hair, Chinese style, holding a sword with blood on it, wearing a trench coat, surrounded by fallen enemies, standing in a valley "} +{"id": "1004204", "video_name": "4db3ae8c-b7da-5307-bc3a-bae80315cced", "text": "a skeleton taking a beautiful girl in neon effect "} +{"id": "4004638", "video_name": "c1fd7643-9125-5f39-b881-c0446ec328cd", "text": "one red car is driving on a country road, night "} +{"id": "4002607", "video_name": "4a7b0922-ca9e-50b6-83f4-9d028b52f68e", "text": "a video of a door being slammed shut to a house. the camera should be placed in front of the house "} +{"id": "3003229", "video_name": "d65704a3-284e-5aa7-a401-5979f8c91516", "text": "A little kid got his report card and was very upset "} +{"id": "7003512", "video_name": "fb14ed34-74f9-5c50-b15f-cb9ff0fd8bf4", "text": "the monsterous rakshasi Hidimba, large female with horns and long nails, scaly armour, the mystical forest of the mahabharata under a starry night in background, hyper realistic, highly detailed, cinematic "} +{"id": "4003966", "video_name": "21ead6a4-6d7e-550a-b3ff-2df167304759", "text": "And huge gorillas leap forward, running from behind the trees. "} +{"id": "2005877", "video_name": "ad2402a5-2a67-58f4-930a-76ba1b2fba79", "text": "The girl happily walks down the dark street with an umbrella, the asphalt is wet and shiny, in her hands is a black handbag with personal belongings "} +{"id": "2004135", "video_name": "27b3bdb9-7caf-5955-95e0-1861114925b3", "text": "Early in the morning a shark swimming under water trying to catch the fish, fish is swimming away from the shark and shark trying to catch it looking on it. "} +{"id": "7002012", "video_name": "970df9dd-f271-5593-bebf-d0c1972513c0", "text": "Neon lit street, guy in convertable with the sun roof down, in a suite smoking , smiling looking as if he were on top of the world "} +{"id": "2004217", "video_name": "46da6e4b-24fc-5734-bcc6-91e3072403d3", "text": "pixar animation of a boy eating ice cream "} +{"id": "0005783", "video_name": "2129eea7-728d-5ee6-b4a3-2db35c36ac7c", "text": "images from a 1970 arthouse movie. a silouet made of white light is looking at a orange sunset "} +{"id": "3004959", "video_name": "6e2eb4a3-b22e-5e81-b028-61ab404b6bd5", "text": "Two gladiators fighting in the roman colleseum, crowds screaming "} +{"id": "7004974", "video_name": "38571db4-2258-5ee2-baf6-460c7813f428", "text": "clear plastic 90s electronics with opalescent milk "} +{"id": "8002187", "video_name": "9ba6a343-91af-5fdb-bcdf-eb8e0afdbbb3", "text": "a one year old baby wearing pampers brand diaper and doing unimaginable dance moves "} +{"id": "8001082", "video_name": "ea350d15-42fe-5743-895e-363eea87558c", "text": "a pan of a hotel room, modern nordic hotel room designed by norm architects, full body portraits, weathered faces, realistic photo, entire hotel room, shot using mayima rb67, photograph by steve mcurry, dramatic studio lighting, 4k output "} +{"id": "0004552", "video_name": "0b1a29b3-bd6f-56a5-974a-99a19c5b51c9", "text": "black and white film noir style Veronica Lake with beautiful hair fanned out in bed "} +{"id": "3004403", "video_name": "074aee8d-e228-5ff1-acd9-d2fc2a409b55", "text": "mr beast YouTuber thumbnail I SURVIVED NORTH KOREA FOR 24 HOURS "} +{"id": "2004831", "video_name": "108e11f8-829b-566d-98dc-8ea084b9ff9c", "text": "Show their excitement and eagerness to embark on the journey. In Ghibli style "} +{"id": "4004780", "video_name": "34f2e931-de33-50d1-a759-bedeb9ade8ba", "text": "Cinematic Composition of a bright beam of ascending to the sky from a mountain, highly cinematic, octane render, fly by shot "} +{"id": "4003630", "video_name": "7d3afaf1-b7c9-54b2-aa42-252e66e06225", "text": "elf women from lord of the rings walk in the forest, strong sun lights by leafs "} +{"id": "3006855", "video_name": "7174554c-1c0d-5a61-9db7-66a0c845a3f4", "text": "beauty girl bring sun glass on the sea, swining "} +{"id": "2006746", "video_name": "3d3fa293-7380-5cc7-aaf5-6109d1439bae", "text": "last 4 minutes after a nuclear war on earth. High resolution "} +{"id": "2003243", "video_name": "cf0fc82d-cdc0-5d2c-bd72-1ecda4c041c0", "text": "Generate an image of a human fetus in the womb at the 5th month with clear anatomical details. Focus on the face, hands, and legs. Provide a warm and comforting color palette. Include details such as fingers and delicate hair. The overall image should appear realistic and depict the beauty of life within the womb Message: 1 Attachment "} +{"id": "7002421", "video_name": "99409c00-3e89-5bbc-9004-f9751fe3fa89", "text": "cinematic rendering of a dystopian city with bloodred skies 1980s style "} +{"id": "2005126", "video_name": "11f3db8f-6e65-59d3-a449-a5acab6b93b6", "text": "a YouTube banner of a story channel "} +{"id": "8002819", "video_name": "646f27b5-23ae-590d-bb8a-8ba592014761", "text": "young man in a lab coat breathing "} +{"id": "7004582", "video_name": "858e179b-7f9a-5ade-b0df-e97e5401e93e", "text": "In the heart of the forest, a diverse group of animals gathered in a joyous display of unity and humility. The sun shone down on them, casting a warm glow on their peaceful gathering. "} +{"id": "0004696", "video_name": "0d773380-c6fa-5840-bc1b-db7c8446d5c6", "text": "Abraham prepared his things and said goodbye to his family and friends. With his wife Sarah and nephew Lot, he set out into the unknown, trusting in divine guidance "} +{"id": "1004877", "video_name": "5a1a310d-9d73-537a-9363-fc351c126647", "text": "an alien in bed, scene change, a plane passing through the sky "} +{"id": "1003434", "video_name": "3f6be806-0740-51c1-9cd0-90cbacb094c1", "text": "The nurse entered the corridor in the basement of the hospital, and the lights on the walls were even darker. Looking at the storage room and equipment warehouse, there is a depressing and damp atmosphere "} +{"id": "6002645", "video_name": "d6a588cb-4e81-517f-8053-64e6e0d38abe", "text": "someone skiing down Mt everest with a granola bar. First person view "} +{"id": "0003352", "video_name": "3c06ac0d-082d-5c0a-97b2-ac5a44eaf05a", "text": "Dark forest with a full moon on the horizon in the style of a 1920s horror movie, a white ghost at the edge of the forest, 9:16 "} +{"id": "3006617", "video_name": "c6320c09-6e8b-517c-8e39-47ced5acef26", "text": "Loving with animals for long seconds "} +{"id": "2004909", "video_name": "e5f874ae-8e49-53d9-b344-cf0c8687154c", "text": "David Guetta working in an office "} +{"id": "2005114", "video_name": "880d61fa-92a7-5b9e-a6f3-f4ce6cd2623c", "text": "elephant lifting trump up side,ultra HD,motion 3 "} +{"id": "3005889", "video_name": "5c6046e7-10da-5106-a782-d7e6302a8a82", "text": "The Vast DesertRosie and her new friend Carl the camel standing at the edge of a vast, golden desert under a scorching sun. "} +{"id": "1006138", "video_name": "707c8779-a71d-5d6c-9dfa-beb1fbbc6f42", "text": "video profit from stock market and generating wealth "} +{"id": "1004933", "video_name": "5b34ad18-ccc5-5181-b0d0-e54ec734814a", "text": "A professional rock drummer enjoying the drums on a stage "} +{"id": "8001752", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "attractive waitress pouring an endless cup of coffee in a 50s diner "} +{"id": "7002458", "video_name": "090dbd39-f199-5675-9c28-9d7c927adb6d", "text": "In the dark catholic, the cardinal walked into the camera. He walked up to the golden skull, bowed his head in tribute, and then began reciting ancient spells. "} +{"id": "7002030", "video_name": "c2ccf99b-e8e1-5521-9347-9b837502f538", "text": "Leafy sea dragons blending with seaweed "} +{"id": "7002053", "video_name": "8c65a74f-749f-5979-848f-3dd2f2d75a2b", "text": "space marine wharhammer 40k in a war "} +{"id": "0004086", "video_name": "02eaac19-3cb9-5357-a1b7-a3734e38c119", "text": "A car made out of a lemon driving down the road "} +{"id": "1005290", "video_name": "613eeb39-1eb0-55fe-b5e3-e2209d4ecdff", "text": "objects in 3d render model, satisfying animation, colorful "} +{"id": "8003509", "video_name": "5b125c3a-4f08-5fc3-900c-723b479a6c75", "text": "Generate an image illustrating the detailed description of the mysterious forest Kavin is journeying through. Capture the towering trees, exotic plants, and create an atmosphere with captivating colors and subdued lighting. "} +{"id": "4004412", "video_name": "cc2814f2-fd1f-595f-91ca-f03ad2b74605", "text": "animate a man near the crystal sea with beautiful nature "} +{"id": "1006099", "video_name": "6fd4b547-b865-5504-84f2-85bbb94bc23b", "text": "an autumn scene. In the center of the picture is a smiling little girl sitting on a swing, gripping the ropes tightly with both hands as the swing sways back and forth in the breeze. The girl is wearing a red top and blue skirt, with the autumn wind blowing up her skirt and hair. The tree branches behind the girl have turned yellow, with falling leaves swirling above her head. The sky is bright blue with wispy white clouds floating by. "} +{"id": "3004428", "video_name": "7ff1841b-7162-5f19-9d07-9e79d94ffcaf", "text": "boy on desert with hands up wind clouds cinematic "} +{"id": "5001185", "video_name": "b1a3eedc-8820-545a-8eb2-7396ec7c7d17", "text": "bearded man walking by side of lake "} +{"id": "0003504", "video_name": "3eb35237-869f-5791-a029-d9dda0bccd25", "text": "love story couple walking roses swayiing "} +{"id": "2004773", "video_name": "3fc671f9-db70-5ac1-bffb-357786fbb7b5", "text": "machine learning Message: software in jungle (Font: MODERN) "} +{"id": "4004239", "video_name": "5ba5b4a4-fc9e-5b48-a47f-8ec3d5c12a46", "text": "It is a planet age;the sky with many spaceship "} +{"id": "7003977", "video_name": "6a271aff-77e2-579c-8292-f902a45feb67", "text": "As Spider swung through the city, he encountered various insect buddies who joined him on his quest. There was Benny the Butterfly, known for his colourful wings and contagious giggles, and Lenny the Ladybug, who had a talent for telling funny jokes. "} +{"id": "1005664", "video_name": "6809268f-188c-5b8a-855d-9bac704f599e", "text": "an illustration of a walking zombie, color and black outline "} +{"id": "4003885", "video_name": "85e681ec-3a4e-5a27-832c-9fac02b4cf05", "text": "cinematic view of 3 friends (1 boy, 2 girls) arrived at the center of a deep forest in night time "} +{"id": "2006974", "video_name": "3729249a-4455-55b3-b6b3-ea1b576fd5f1", "text": "moving Iceland in 20 years to fill the gap in ocean seen from space "} +{"id": "0004202", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "The panda couple had a party with squirrels, little foxes, little raccoons, fawns and larks in the bamboo forest "} +{"id": "2005207", "video_name": "ca6a3014-9356-5238-909b-6caa56d2cb0b", "text": "the video should be zooming in and there should be heavy rain with lightning and theme should be horror Message: 1 Attachment "} +{"id": "3006035", "video_name": "3a0c32a0-e6e2-534b-951f-4033d0d8cef3", "text": "Giants Eagles fly on the Great Sea in the down, fantasy style tolkien "} +{"id": "3004718", "video_name": "f5ea7f2a-f496-5a85-8c80-73f1c96d831a", "text": "Design an illustration that represents the culture of disposal. Depict excessive usage and irresponsible dumping leading to piles of waste and refuse. Illustrate the consequences of this consumptive behavior on the environment and society. "} +{"id": "4004134", "video_name": "36ffd33a-479e-5575-8f4b-f9c0a36498dc", "text": "created logo 3 feet from gold game "} +{"id": "7002260", "video_name": "79522cd1-8766-5d64-b4da-726cf4cc323d", "text": "beer festival Message: czuxik (Font: MODERN) "} +{"id": "3004320", "video_name": "bc0e0afe-dd6a-5434-b571-7f1f6545e0a7", "text": "An artistic representation of the mansion, its architecture marred by spectral imprints and eerie symbols etched onto its walls, evoking a sense of a dark and malevolent legacy that has left an indelible mark on its history. "} +{"id": "4002867", "video_name": "4238786e-ef03-56a1-8cbf-0ee4ebd7a024", "text": "fairy flying molecules assemble in the cluster, raw photo "} +{"id": "8003724", "video_name": "3780cc2b-7bc9-5d0c-a1e9-def498de862f", "text": "show food going through your body in a 3D transparent human body "} +{"id": "1005147", "video_name": "5ed6e018-1ff7-5ade-92f2-1a44e84cab52", "text": "a boy with a bag full of ammo "} +{"id": "1004884", "video_name": "5a4e1339-cfd5-59cd-b5d9-0ee627641968", "text": "An Indian boy, with a slight beard, wearing a hoodie, and having fair skin, is standing in the hostel corridor. He opens the door to his room and enters inside. There is no one else in the corridor, and it is quite dark outside as it is nighttime. "} +{"id": "3005602", "video_name": "5527af91-8c5d-5ccc-986b-77db6b1b9ef7", "text": "thanos killed by iron man longest video movie effect "} +{"id": "7004867", "video_name": "02cc9bc5-b28e-5af5-926c-39e1f12aced8", "text": "happy learning, letter and numbers falling "} +{"id": "2003736", "video_name": "47be6c9c-0810-5b7b-a684-dbd85059e3c8", "text": "a futuristic superhero saving the day on digital marketing "} +{"id": "3004939", "video_name": "fbd2ac11-8794-5b37-ab62-663b02e733fa", "text": "futuristic spaceships flying in the cloudy sky with thunder, rain and strong wind, movements "} +{"id": "1005630", "video_name": "67836ead-86a7-52b3-9680-51d788f91b09", "text": "Dali painting comes to life and drips "} +{"id": "3005745", "video_name": "280b58eb-7a2b-5db6-b6e9-4fdd5bef56e1", "text": "Exterior suburban home, night time. Cozy winter setting, snow falling. Windows light up as we zoom in. into the window. "} +{"id": "3006914", "video_name": "e18337df-0c34-5a52-842c-7be70342db42", "text": "count dracula drinking wine and eating chicken "} +{"id": "6004906", "video_name": "a1da8192-dd4b-5d0e-a85b-b9fe9022b41a", "text": "little elephant named Ellie, shiny, colorful rock "} +{"id": "1003520", "video_name": "40f6ff12-5b2f-58ee-9599-2915ab9ef72c", "text": "A viscous purple sea seen from a helicopter. "} +{"id": "1003527", "video_name": "41061e7f-335f-51d2-b5b8-f1d23b681bed", "text": "Ram, the eldest son, was known for his righteousness, kindness, and unwavering devotion to duty. "} +{"id": "2006605", "video_name": "4fb8b215-8da6-5d78-9567-d81ae8fc118b", "text": "Anu, the father of the gods, who reigned in the celestial palace. King of all gods "} +{"id": "1003445", "video_name": "3fe4ccdb-4f3a-5a3b-87a7-4b83a826aea2", "text": "a cute fox walking on empty forest. "} +{"id": "6003652", "video_name": "1dd42be0-83e1-5841-86c6-7c1e01ea18be", "text": "Very cute little monk running around lively "} +{"id": "6002615", "video_name": "a66782b0-846f-5085-91fa-c94c0c63a09f", "text": "Portrait of a 3D animation Disney Pixar movie style archaeologist exploring Israel behind mysterious excavations. Realistic and colorful. "} +{"id": "0003390", "video_name": "3cb061b1-f773-5feb-81c8-a5c6bf291401", "text": "Hearing his frantic cries, the villagers dropped everything and rushed to the field to help. But when they arrived, they found Liam laughing mischievously and sheep grazing peacefully. "} +{"id": "4003548", "video_name": "fc70c966-cfb3-599b-983b-79f839941e77", "text": "two men in yellow jackets communicating, 4k hd "} +{"id": "4003834", "video_name": "defc9f80-961a-5e0c-84e8-662eb812d6bb", "text": "a bunch of saint charles cavaliers Message: Izzy is Beautiful (Font: MODERN) "} +{"id": "8002246", "video_name": "8a09f64d-9437-5e86-975f-8643ee036f8d", "text": "A Cat Eating Avocado Shells He Found In California "} +{"id": "4003677", "video_name": "dca2f7e9-3563-52de-9117-866330696422", "text": "Generate a picture using Nobody and Stephen Chow "} +{"id": "2007311", "video_name": "b70a3b7b-1c36-51dc-b4a0-e45cdd06a8a1", "text": "an imagine of a little girl with afro hair "} +{"id": "0003804", "video_name": "43c895a6-93fc-5543-9673-d5c8cf341f5f", "text": "lovely couple , holding hand , smile on their face "} +{"id": "1003455", "video_name": "3ff86b0b-37c1-55ca-810d-9e5b110822de", "text": "A star over a mountain by nigth, zoom out, low motion "} +{"id": "7004291", "video_name": "f808cd92-5993-575b-974c-4673e18e7681", "text": "shipping container falls and swings and crashes into 5 cars "} +{"id": "8002390", "video_name": "8b4c7aee-96ba-52b9-9855-08eb24181b75", "text": "video with good quality as Mercedes drives through the streets of Adler to music "} +{"id": "8001384", "video_name": "27601337-779c-5baf-9182-8aecc89806e1", "text": "it is raining paper money from the sky, everyone rejoices "} +{"id": "6002391", "video_name": "6c0265dc-4c47-5f44-9918-5d973efcce7f", "text": "3 cats walking at sunset, city landscape, ulta wide angle, dolly shot left, pan left, cat look behind, black cat, white cat , orange cat "} +{"id": "5001457", "video_name": "930cec12-82a7-5cc0-8a0a-fc0d851e19f8", "text": "furutistic city with lights and technology at night, wide angle cinematic Message: Bleach Media (Font: MODERN) "} +{"id": "6003819", "video_name": "7d6c5d4d-6813-56be-8371-7bf5749a7e14", "text": "the letter M morphs out from the city skyline "} +{"id": "5001844", "video_name": "6aa2a6ff-24d5-52a6-93a8-2d1a9122daa2", "text": "green ball of thread. The tip of the thread slowly begins to move and moves from the ball along the table towards the metal crochet hook. The thread approaches the hook as if pulled by an invisible force. The thread slowly wraps around the hook and knitting begins. "} +{"id": "1006824", "video_name": "7cd6d6ff-384f-5aa4-8f7a-747150195efa", "text": "Emotional Farewell: An image of Sarah and James at a train station, tears in their eyes, as they embrace tightly, their faces showing the agony of parting,3d 8k "} +{"id": "3003554", "video_name": "04e21380-67b3-57ca-b143-b060c1c7ce1a", "text": "an illustration of a Cityscape, in the style of yoh nagao, lively tavern scenes, outdoors and, yellow and pink, drugcore, cult party kei, fragmented advertising, playful use of line "} +{"id": "8001632", "video_name": "856119aa-c4e2-5da9-ba16-0bdf597ddb05", "text": "an astronaut sleeping on his stomach held by cables in a spacecraft. "} +{"id": "8002686", "video_name": "3c89e808-2a64-5482-9bcb-cb74047fe50f", "text": "these all are talking to each other with smiling face Message: 1 Attachment "} +{"id": "2006269", "video_name": "ae236c23-bf65-5522-bae1-b6ebb70bf44a", "text": "Animation of a glass filling rapidly with alcohol, then overflowing "} +{"id": "3005783", "video_name": "b1854db2-082f-50bf-89d9-6f30078b23e8", "text": "real life bulbasaur in the woods on green grasss on a sunny day "} +{"id": "0004938", "video_name": "11dd29c8-5f32-5da2-b5d8-18d56237738d", "text": "capybara and duck swiming in bath "} +{"id": "4002330", "video_name": "a0a102bb-5b45-5048-ab5e-cd91481fffad", "text": "Beautiful shots of cheetahs in the wild, emphasizing their strength and grace "} +{"id": "1006191", "video_name": "71630a04-a068-5c30-831d-f5bed2c9d5b7", "text": "Pikachu is vacationing on the ocean 6k jumps. "} +{"id": "1003365", "video_name": "3df1f801-b781-5916-b1ba-c0ffbd0fe210", "text": "Crocus crystal bead drop candy house "} +{"id": "1003350", "video_name": "3db3c0c2-8dea-539e-8b3a-40ba560ad760", "text": "chaos in the galaxy, planets colliding with each other, "} +{"id": "8003372", "video_name": "6e057562-e94a-5602-b22e-5643f90eb254", "text": "a coffee maker that exploded in a completely red kitchen "} +{"id": "1006971", "video_name": "7f9c9024-d0cb-5ff0-ab06-8a9262ee62e2", "text": "The joyful celebration of the animals when the rains finally return to the savanna. "} +{"id": "5001525", "video_name": "6a1d651e-9884-5c2c-a7f8-3e67d033610e", "text": "Josh Kelly seated on the lava throne, Anne Hathaway and eated on the glass throne "} +{"id": "3006467", "video_name": "0d0c8049-3d14-54ed-bc78-4cbd52aa2f8e", "text": "kid sam emerged as a true champion in the eyes of the entire town "} +{"id": "1006679", "video_name": "7a6ebbfd-07b8-52b8-803f-f9688792d3aa", "text": "Naruto iron man, blonde, lightning storm and wind "} +{"id": "3003888", "video_name": "abacfcea-e20e-5c78-a349-4756b8049eec", "text": "a beautiful african american lady smiling and typing on a computer on a couch with a coffee besides her "} +{"id": "2004812", "video_name": "5b88ab74-b26b-53a3-ab19-4ff0838cb13d", "text": "nuclear power plant alarm going off, flashing red, next to glowing red exit sign above door way, all lights off in the building, 4k, ultra realism "} +{"id": "6004788", "video_name": "9204fe1f-1079-5496-bdf5-bc9f94e5a36f", "text": "a turquoise Lamborghini Urus competes on the track and overtakes a turquoise Lamborghini Urus "} +{"id": "3004106", "video_name": "51bc1c36-7ad8-5bf7-99d4-a2ffd2ae83fa", "text": "The duration of the movement is 5 seconds with a fast movement "} +{"id": "3005109", "video_name": "53b6c186-b0e4-55ac-a813-5288c4d3500e", "text": "create chennai high court into dreamy style "} +{"id": "7003368", "video_name": "80e353a2-770b-55f6-8369-0e2c6d01035c", "text": "african man playing guitar and sing a sad song walking on town gta style "} +{"id": "1005315", "video_name": "61971576-bfd4-5daf-b717-38878810943c", "text": "a guy slowly oping his eyes close up in anime "} +{"id": "0005839", "video_name": "220a1d26-12ca-5cf7-b253-c8837b0e2865", "text": "Full body Portrait of Young Man in Renaissance Era Costume, Expression, Perfect Face, Beard, Dreamlike View, Extremely Realistic, Intricate Artwork, Station Art, 4K HD, Artwork by Rembrandt, Backlight, Octane Render, Cinematic Lighting, post processing, perfect composition, oil painting, cinematic realism, dramatic ambient light, full height view "} +{"id": "4003637", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "humanoid robot sitting on a throne, imposing dominance and respect "} +{"id": "6002171", "video_name": "3ba3473e-d287-5726-8335-cec4d1a2fef9", "text": "a cute little girl waving her hands slowly, blinking her eyes , walking and saying bye bye. "} +{"id": "0004066", "video_name": "02b08029-5b64-52df-9506-16a346c69468", "text": "forest, rain, early morning Message: AKIPRESS (Font: MODERN) "} +{"id": "3003473", "video_name": "6e610eb5-d291-5041-b9e0-b8b45d10b938", "text": "beautiful girl petting a cow in a field of poppy flowers "} +{"id": "2007239", "video_name": "41df4201-eabb-5b14-a5e6-4d675105b1d2", "text": "It is mentioned once that a tailor was sitting in his shop sewing clothes. "} +{"id": "6004714", "video_name": "704b3674-073c-5617-8799-87427100f3b9", "text": "Sky with many clouds Message: Lesly (Font: MODERN) "} +{"id": "1004703", "video_name": "575f674b-d3f3-5953-850d-7fb11933f218", "text": "make gaint walking in the jungle camera zoom in and focus and than follow gaint, realistic not broken image. "} +{"id": "8003091", "video_name": "7d8396b0-0c7b-5c0b-b6ea-615c5580a034", "text": "in 1890, scientis work on eletric machines "} +{"id": "0004657", "video_name": "0cc4a9d7-7186-5952-b262-8f30399bb76a", "text": "5 team members working on a software production "} +{"id": "2003092", "video_name": "73d309bc-66f2-5f09-860f-b4f0277df146", "text": "asian model wwith clear face and full body under water in white orange tint dress silk jelly fish glass bed sculupture by alexander mcqueen, clear face, made with starfish, portrati photorealistic 3d octane render with hyper detail, product magazine photoshoot, made with recycle plastic, product photo on white minimal background, chic VIBE, editorial grand glow face, dancing and drowning with hair braid together "} +{"id": "8001072", "video_name": "88359ec5-4103-5cfa-b1a3-63d73154ec83", "text": "angel wing open, cartoon style, view on wing, white wing "} +{"id": "2007780", "video_name": "b1d86474-5c51-5025-9341-9b4963933311", "text": "kiwi fruit animated speak each other "} +{"id": "1004391", "video_name": "51284efa-25a8-5632-bfe3-7a614bee0629", "text": "Pastel chalk drawing, group photo, 2 sisters "} +{"id": "0003063", "video_name": "36598de4-609f-51e1-ada0-1b13d0370482", "text": "Generate an image of a fierce Manipuri Meitei warrior in traditional attire, standing proudly with a sword or spear, showcasing their bravery and valor. Capture the essence of their cultural heritage and warrior spirit in the artwork "} +{"id": "1006011", "video_name": "6e7458af-9792-5e86-b7ae-10d93f4d0892", "text": "Lebron James shaking hands with Michael Jordan on the stage of Hall of Fame ceremony, with six championship rings on "} +{"id": "8001844", "video_name": "9ce9f1ad-fd6c-5bc9-be77-9c11042051d8", "text": "ducks in a beautiful pond 3d 8k "} +{"id": "5001642", "video_name": "d6f62282-5258-5024-ad7c-34bb5eef0f7b", "text": "harry potter, having party, beer, dancing, 3d, realistic, hogwarts "} +{"id": "1006794", "video_name": "7c74496f-060e-5d02-8fbe-c30a402c7454", "text": "seal in yellow raincoat shaking of the rain "} +{"id": "1005897", "video_name": "6c76cab3-5b85-5283-a3b1-d8b2bb3871b0", "text": "story book,lot of pages,write story book "} +{"id": "7002385", "video_name": "4828ba5a-ef58-5908-8625-9f473846f9e0", "text": "Barbie doll, drinking coffee, sitting on a chair in a cafe, good quality "} +{"id": "0006535", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "Naruto uzumaki as a powerful character "} +{"id": "2005138", "video_name": "d1903b41-7b88-5e7a-898d-139954842fbc", "text": "two pandas walk on the moon "} +{"id": "0003236", "video_name": "39c820f1-88a8-5eea-a6ab-1118ac1b0651", "text": "Lord Shiva smiled a little after hearing these words of the farmer and said \u2013 \u201cHow can you say with such confidence that it will rain tonight. Are you a psychic?\u201d "} +{"id": "2006646", "video_name": "deed8beb-90e3-5a4b-a2e7-befe9f1d2485", "text": "zoom in to the centre of the picture "} +{"id": "0003846", "video_name": "447d8a1e-073e-5a30-8d7a-7d710c769310", "text": "gorgeous Celtic warrior woman, with blue eyes and long hair, dark blonde, stone ruins, tall and slender, flowing dress with Celtic knot jewelry, procreate, watercolor technique, poster design, 300 DPI, soft lighting, ethereal art, mysterious, serene expression, enchanting atmosphere, bokeh, photo, 8k, dark, dynamic action, faded style, dreamy nostalgic, soft focus, dark vignettes, light leaks, medium photography, ethereal dark art painting, whimsical, coarse grain photo "} +{"id": "3003922", "video_name": "73cd0c51-ccab-5794-8a2d-2632dd68af1f", "text": "nissan navara with Russian plates M374AB777 "} +{"id": "5001370", "video_name": "a789791f-4882-5d3b-88ec-3f82af435279", "text": "Light painting, with beautiful girl standing by the sea. Light white dress, hands holding branches like white orchids. Glitter eyes, connected to the blue sea. The white sand is smooth, washed in the gentle breeze. Warm golden sunlight creates a harmonious natural masterpiece. "} +{"id": "1006813", "video_name": "7cafad0f-6255-5822-a123-73811d2694c5", "text": "A comic book style portrait of a shirtless man who like Superman, arms folded, a symbol of strength and determination, with an electric blue glow from his navel and eyes. "} +{"id": "5001052", "video_name": "c47cdc33-2e13-5061-8b61-144eeeb286fd", "text": "Create scenes of Leo sharing stories with Simba about the jungle, the lionesses, and the traditions of their pride. "} +{"id": "4002765", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "vintage scene with house at distance Message: Purush Mandal (Font: MODERN) "} +{"id": "1006844", "video_name": "7d198c74-a51e-5304-b7ad-2d003d689ccf", "text": "a boy is sitting next to pyramids Message: 1 Attachment "} +{"id": "3005971", "video_name": "0796ff0a-4a9e-5d17-9cd1-6ddd78651d27", "text": "3 people hang in prison chained, time 0 A.D., camera in front, faces invisible "} +{"id": "2004224", "video_name": "1a92f769-d78c-5cbf-8c1f-82e1e5c229cb", "text": "A crowd of fans runs to the limo with the star and she happily jumps into the car "} +{"id": "1004776", "video_name": "585640a0-37b4-540c-8aba-05a67713dd89", "text": "woman warrior runs out of the house into the mythical forest "} +{"id": "2003704", "video_name": "f8de15d8-e63f-5c88-a275-0c52dac3d318", "text": "drone shot, green forest with pulsing firefly light in the night, light spots, absolutely beautiful hi resolution reel "} +{"id": "3003627", "video_name": "14f8112a-3508-5c3e-9f04-dd5cd14e3a2f", "text": "A Texas blind salamander plays lead electric guitar. He fronts a band. There is a drummer, a bassist, and an organist. Psychedelic space rock; in the audience are San Martians. "} +{"id": "1004550", "video_name": "54871130-cf59-54ba-ad91-dc02ee778742", "text": "Envision the 4 friends, 2 boys and two girls exploring a magical forest with tall, ancient trees and a sparkling river flowing gently and a hare tells jokes in human speech, 3D animated, comic watercolor style "} +{"id": "8001083", "video_name": "d17d7c74-870a-5ae0-86e9-851e0411c4d5", "text": "Eminem singing wearing a pirates hat "} +{"id": "6002117", "video_name": "479041d7-b51a-56ef-9b0f-1b6fa578d754", "text": "peacock thought that his beauty was not enough to achieve his ambition "} +{"id": "0006359", "video_name": "2b320cd7-ca54-5022-8299-b2e9c83f820a", "text": "clouds fly in the sky Message: TEKCT (Font: MODERN) "} +{"id": "6002094", "video_name": "05ef90b6-48ae-517e-8a70-7ac49e4b29a2", "text": "A video of a Matterport Pro3 scanning with a castle in the background "} +{"id": "3003327", "video_name": "f4574e08-b252-504b-a0bf-6e255fe715b4", "text": "warhammer 40000 ultramarine fight vs demons "} +{"id": "3005751", "video_name": "8022141d-1966-5845-aaf1-31b7dd1cf483", "text": "A cat wearing Chinese Hanfu on the catwalk, highest quality, Chinese style "} +{"id": "0005880", "video_name": "22bcedda-79e4-5766-a29c-fe8c0bedf7d4", "text": "grandson approached to his grandfatherwith a troubled expression. "} +{"id": "7003126", "video_name": "c2901b0c-cc80-56d4-a865-3e00f09293b0", "text": "In a quaint little town nestled among rolling hills, Sarah and Michael found themselves caught in a downpour one fateful evening. "} +{"id": "2007409", "video_name": "cfe2cbaf-975b-5860-91c2-77736f0d1bcb", "text": "A dog tries to dig a hole but ends up burying its own toy. "} +{"id": "1005778", "video_name": "6a4b8ec1-089d-56c0-b0b9-0e378369276e", "text": "Generate an illustration with a 9:16 aspect ratio that depicts the concept of striving to always do good and avoiding wrongful actions. The illustration should convey the idea of positive behavior and ethical choices. You can use vibrant colors and symbolic imagery to enhance the message "} +{"id": "8002299", "video_name": "e3c00646-eff5-54fe-80db-3515c44dc7dc", "text": "The Eiffel Tower in Paris in 1889 about to be dismantled "} +{"id": "0003762", "video_name": "42ea5804-1c37-57c4-b43b-a02e9a00654a", "text": "make a animated volcanic eruption and make it nice, with greenery around "} +{"id": "1003488", "video_name": "40a28db5-a0c8-5d62-88ee-67c9a398b314", "text": "3d dolphin in ocean with moving "} +{"id": "2007660", "video_name": "8aaaaa8a-e20d-5c16-8d4a-4bf8e6b64a99", "text": "a picture of a games character who is overpowered and overdressed "} +{"id": "0003616", "video_name": "40891922-66ca-52fa-8f6e-afe1f447830f", "text": "1930s Radio station on snowy Christmas eve in 1960s television style. "} +{"id": "0005302", "video_name": "182702d6-f16e-55de-aaa9-f60dcb923787", "text": "sauges and french fries being trhown by the air "} +{"id": "7003078", "video_name": "04a185a8-fb99-5f13-b152-e26e0a1bfabf", "text": "Meet Lily, a cheerful girl in the village of Willowdale, and her fluffy rabbit friend, Cotton. "} +{"id": "6004272", "video_name": "fdef07e7-2a25-5dea-b98a-f8e4a439ea5f", "text": "High Quality, Cute Stickers, Cartoon Style, Cute Super Deformed Character, White Border, Colorful, Detailed Illustration of a White Woman, medium size blonde hair, blue eyes, smiling, Watch on the wrist, black shoes, Wearing black Suit, by yukisakura, amazing full color, background pink "} +{"id": "7004781", "video_name": "c762132a-74c0-5e85-a38f-99308a3f6020", "text": "Loneliness, solitude, inner turmoil, helpless expression, conflicted emotions, dimly lit room, cozy home atmosphere, casual home attire, thoughtful posture, mobile phone dilemma. "} +{"id": "5001581", "video_name": "78de1916-5115-5f48-b8b2-a0749ea4dde7", "text": "a paradise inspired grassland with flat surface ,top view, side view,zoom in , zoom out, animate "} +{"id": "6003746", "video_name": "9665dc72-24e1-5849-870b-f5419124edc2", "text": "teenger joy in big music festival "} +{"id": "8001624", "video_name": "8c6b7cbc-efdb-5adb-b0b1-8f87925fe9af", "text": "the explosion on the road in the distance is small at first and then becomes large full screen in high quality "} +{"id": "3006156", "video_name": "1f28e310-0479-5616-96be-de7a124d3496", "text": "blue paint drops dripping on a white canva "} +{"id": "6003820", "video_name": "1277fd85-2bc1-576b-b155-06a669abd9d0", "text": "a cyborg fights with a Japanese dragon "} +{"id": "1003370", "video_name": "3e24d318-77c0-59d1-b7ab-f48af08d2589", "text": "a boy walking through the beach "} +{"id": "0005061", "video_name": "13f7cd3a-e5b1-52d2-a7be-fb00bd3e6dba", "text": "The guy in this photo in a porsche "} +{"id": "6003918", "video_name": "cb0d990a-bd82-5665-a78c-58328b1b5378", "text": "ideas coming out of a head in a poetic way. The style of the video has to be realistic with beautiful lights. "} +{"id": "7004046", "video_name": "a73c2705-4421-56fc-ab3f-f41d40471d96", "text": "As the wine swayed, the picture began to blur, and the color gradually transitioned from the crimson of the wine to the light color of the pavilion. Design a gradient effect between the wine and the pavilion lights. "} +{"id": "3006628", "video_name": "ea88e00d-4e44-5fa9-bca9-f27ff0cfd9b0", "text": "A young guy who is showered with gold "} +{"id": "1006375", "video_name": "74b82521-17e4-5ac3-ab00-837c78c7bf76", "text": "a scene like Alfred hitschkock,the birds , "} +{"id": "2004782", "video_name": "d7d3f8ae-3e9e-5f01-9a7b-132ce2b3729f", "text": "drone shot of mt st helens erruption "} +{"id": "8002801", "video_name": "8ba75f76-a8e1-5a5e-af2c-c852dd0b00fd", "text": "Android dancing moonwalk on the background of the full moon "} +{"id": "2007351", "video_name": "5513f7ed-da07-5e07-be5d-d3e2dee71dcd", "text": "1900s silent black and white vintage movie of Astronauts sitting inside a stainless steel steampunk rocket with large porthole windows with fiery explosions outside, cinematic, 4k "} +{"id": "8002946", "video_name": "ec96c9ad-7859-5714-a9d0-3690321f876c", "text": "a video of Sasuke Uchiha making a Chidori, 4k, ultrifine detail. Cinematic lighting "} +{"id": "3005365", "video_name": "a842f947-d35a-5ebd-96ba-8103e8a2b066", "text": "From the steel and concrete to the building, very fast change, fast pace, real "} +{"id": "7002955", "video_name": "bc18aa70-325f-56c2-88a4-2bd3252dcf4f", "text": "It all started when I threw it all away "} +{"id": "8001111", "video_name": "152a4658-f513-55c4-89dd-5092452d0008", "text": "soundtrack poster for horror movie , neon "} +{"id": "8002095", "video_name": "e905db68-67f2-5707-9856-a9b5304eabdb", "text": "show 1950s border to East Germany. Hundreds of people fight to enter into the GDR. black and white. fsp 24. photorealistic "} +{"id": "2007534", "video_name": "589019da-f724-5c44-b68e-2026b6fd1eef", "text": "soldier in the war, sky full of war planes, war background, war theme, like battlefield, call of duty "} +{"id": "8003516", "video_name": "2f4918c0-0f1e-5fb3-a3a5-5b240c924845", "text": "A spiritual woman opens her blue eyes and smiles "} +{"id": "7002394", "video_name": "7ac92546-04b8-56ec-a679-bc85cb69ac2e", "text": "A cute alpaca walking in a nature background "} +{"id": "4004671", "video_name": "04d80d7f-ace9-51c1-adff-353e868356a1", "text": "a New anchor, has a deal, announcement "} +{"id": "1006362", "video_name": "747d6afe-96dd-553c-88d9-f3e99af48848", "text": "Bruce Lee fighting a Dragon on the Great Wall of China "} +{"id": "3006625", "video_name": "472f89c7-b045-500d-a8d9-1e7bb89c706a", "text": "Generate a full HD animated video depicting an epic battle between orcs and humans, inspired by the grandeur of Lord of the Rings battles. The video should showcase large armies, impressive landscapes, and intense combat sequences. "} +{"id": "7003327", "video_name": "76a77aef-4837-5abc-b6c4-712b8c4bf499", "text": "AR Campus indoor navigation app with friend finder feature intro animation video "} +{"id": "0006377", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "beautiful illustration, The young tree amidst dried plants, a stark contrast between success and failure. A moment of reflection., 2d illustration , cartoon style "} +{"id": "1004084", "video_name": "4ba8a2f3-e032-526e-bbda-167a4d61ea84", "text": "Close up of a cell phone screen with a very attractive muscular man on the screen "} +{"id": "1006521", "video_name": "775a57be-8f7f-5ff6-9f4f-a75a9c567dc9", "text": "timelines begin at the start of the 4th millennium in 3001 CE realistic,super cinematic,RTX on "} +{"id": "7003812", "video_name": "35b672cf-2e6f-5344-83d4-9bd332a00af2", "text": "The rabbit declines to eat the bones, leaves the dog behind, and exits the location. "} +{"id": "0003119", "video_name": "3762db7d-3d4e-5e65-9878-7af876722f06", "text": "a housefly landing on a cup of coffe. "} +{"id": "0006430", "video_name": "2c2828b0-4441-5807-8154-e1013568aa56", "text": "new york city looking like a himalayan village with air movements "} +{"id": "0003250", "video_name": "3a0b46d0-b868-5cab-b41d-65514daed23a", "text": "colossal kushan demon emerging from deep cave subterranean stanley kubrick david lynchian eerie creepy black and white film alejandro jodorowsky "} +{"id": "3005258", "video_name": "77588d23-85c6-5326-be7d-7d20e715eb95", "text": "video about how a person from poverty becomes rich and lives a rich life "} +{"id": "4004792", "video_name": "b1c17116-2c74-5d6f-9da7-198cfa2e7a4f", "text": "Backround iccream parlour A kid in icecream parlour and take the icecream 3d cartoon 4k resolution "} +{"id": "3006993", "video_name": "9f3c30dd-6fec-5e3c-981b-7a01dff9b581", "text": "an hourglass in steampunk style in the desert, the sand runs, the dust moves, just the beach water and the beach sand in the picture. zoom out "} +{"id": "0003879", "video_name": "450b9060-68c2-572d-8764-6fe52986cd6d", "text": "man turning in cemetery with glowing red eyes "} +{"id": "1003473", "video_name": "405509d9-78e0-5140-b621-cd8e3b2b9060", "text": "Disney style Village and houses and cartoon charactersTwo children living in two small houses in this village were very good friends. "} +{"id": "5001848", "video_name": "21395c1c-dbd1-5f7c-9009-f861e0eda2c8", "text": "friends conversation in 3d cartoon hd scene "} +{"id": "8003106", "video_name": "e902dc28-90df-5e4f-8084-43dc872ad764", "text": "Dark alley where young Bruce Wayne faces his fears. Cinematography: Shadows cast by flickering streetlights create an ominous ambiance. The camera follows harley and catcat fight each other with rain coming down "} +{"id": "3006784", "video_name": "b5da08c2-bb18-568f-8dd9-f599b633ee2a", "text": "An image portraying a gatekeeper controlling entry to cloud resources, emphasizing data protection. "} +{"id": "2003208", "video_name": "c30bbe11-2248-5119-ad1a-9eaec7d9a2c9", "text": "massive flames coming out of a mechanical robot standing on the surface of mars "} +{"id": "1003398", "video_name": "3ea3159c-3b01-5bb9-b6eb-af6abcb16cb5", "text": "a cyberpunk woman staring at you from the top of a building while it is raining 4K ultra realistic "} +{"id": "5001044", "video_name": "9318c696-b0c3-5070-a7fb-24882ad5eed9", "text": "Sam and Max is dog sitting on a cozy window seat inside the house, watching the rain pouring outside, a sense of comfort and coziness. "} +{"id": "8003273", "video_name": "f71dd5a6-e828-555b-aec8-383fe1c35fea", "text": "NASA shuttle on a rocker taking off into the sky launch pad just under the rocket "} +{"id": "6003756", "video_name": "fab8b55b-409d-5c6b-88fb-b32a1cad6161", "text": "a man is drinking a liquid out of a magic bottle "} +{"id": "6004627", "video_name": "ce10f227-15be-52f8-8f2b-43f874314999", "text": "Ralph bakshi character Holli would dancing in cool world casino scene white dress, hyper realistic dark melancholic atmosphere "} +{"id": "3003703", "video_name": "90b47613-ed78-5dcf-8f5f-840240117825", "text": "a nuclear war devastating Brasilia, brazil "} +{"id": "6003649", "video_name": "de8c2b4b-83bb-5036-84c8-ccc8671709f5", "text": "A love scenes from two Russian. Between pink trees. Full screen. First pirson. In ten seconds. "} +{"id": "6004608", "video_name": "5ca8b821-91a5-5060-9ebd-fa298ec8e359", "text": "bob from fight club making triple backflip "} +{"id": "2007442", "video_name": "32671385-8e17-55c1-bd40-23cc6a6fc450", "text": "earth destroyed from space,cinematic, realism, old movie style, old film, horror, scary, Blair witch project movie style, vhs,the ring movie style, details, 1970,camera pan out "} +{"id": "7003046", "video_name": "c80d864d-f98e-5e59-ae00-ba91c9790b03", "text": "Merfolk, iridescent scales and seaweed hair, rescuing drowning child, macro lens, magic, at shore in moonlight in the style of saving lives. "} +{"id": "1003311", "video_name": "3ceed67a-eea0-52cc-91cc-73dbff2c7251", "text": "Cut to an old, rustic airfield where a small light aircraft is being prepped for takeoff. A determined pilot boards the plane. "} +{"id": "3006873", "video_name": "4030b4ef-964c-56af-bd6e-d2f58e9e842d", "text": "One day, a mysterious little fox came to the forest. It has sparkling golden hair and clever eyes, which quickly won the love of all animals. The little fox told everyone about its wonderful experience: it came from a distant country and went through countless hardships with a brave prince, defeating an evil witch and saving the people of that country. "} +{"id": "7004933", "video_name": "4573a4a5-cbb0-55cc-9c4c-c88512d043d9", "text": "chibi style drawing with mustache, looking at camera nodding his head "} +{"id": "6003453", "video_name": "b372b2bd-7285-55e6-bd70-059675e76d0f", "text": "I want you to make a 1 minute video of an animal playing the piano. "} +{"id": "2003699", "video_name": "18e80932-9bea-5b1e-90b1-e582c8e89794", "text": "A group of people fly to the ocean of dreams, their faces filled with happy smiles "} +{"id": "0005597", "video_name": "1daa61d4-560f-5f98-bca5-7269023170d4", "text": "azealia banks fight with nicki manaj "} +{"id": "7002395", "video_name": "977b5a8e-e17d-55e4-857c-4b1059c71a10", "text": "personn sitting in her untidy beroom "} +{"id": "6002959", "video_name": "d0b48ada-6573-5616-b471-49acc8b5b14d", "text": "Down Syndrome Superman drops a woman to her death while smiling "} +{"id": "2003349", "video_name": "4d70ea4a-e2e1-5970-aa64-25962582ed69", "text": "a round cartoon sheep with eyes and ears running over grass in sunlight, it suddenly stops and starta eating the grass, cartoon style "} +{"id": "1005562", "video_name": "665e9b12-211d-5b22-ab5d-e775d220b97e", "text": "A fairy and a giant. They communicated through laughter, gestures, and the unspoken language of the heart. "} +{"id": "6003366", "video_name": "28e1ff3b-4247-5c92-98a7-f5ca57141f65", "text": "jcb digging sand in the river "} +{"id": "1005794", "video_name": "6aa7a4a8-9171-5606-abe6-dc52ca0a1744", "text": "An Ultraman is dancing on a pure green background "} +{"id": "6003717", "video_name": "4f1cf35d-fe74-5b22-9932-9d71e0e80572", "text": "create an beautiful 3d eagles is teaching in rhe eagles class having books , text on the board ,Shaheen Academy,in glowing capital letters,enhancing,dancing "} +{"id": "0005934", "video_name": "237a7d5d-8bef-512c-8784-fb0f69a9f0cc", "text": "motion loop of a running monster seen in profile. oil painting by Bernie Wrightson "} +{"id": "4004544", "video_name": "6424450f-4fb1-51ee-b5d7-faa816118c44", "text": "an anime animation of a wolf head biting the air "} +{"id": "7003688", "video_name": "d0ea95e3-8244-5867-9aeb-e98ab972b8ee", "text": "army man green toy soldier breaking free of green plastic attached to his feet "} +{"id": "2007109", "video_name": "1b72de71-fe49-5a82-82f9-fa18b22ff50b", "text": "Cinematic shot of knight entering dark dungeon, gritty cold, moody and atmospheric, hyper realistic, realistic skin, photo taken with Sony Alpha a7 III "} +{"id": "4003667", "video_name": "69b86bb8-d0c7-5ad2-9fa9-8a9842c31a07", "text": "a staring eye held open with clamps. Mkultra. VHS footage. "} +{"id": "5001493", "video_name": "a7defc65-cb12-5a88-ad4d-de444d750caf", "text": "animated girl with blue fork holding her mother hand "} +{"id": "2004458", "video_name": "874f6f15-2db4-5431-a2d4-51bbfffa8631", "text": "80s recording, vhs, rio de janeiro downtown, pedestrians in 70s clothes walking in the sidewalk, at evening, tall apartments, tropical, vintage decoart style "} +{"id": "7002006", "video_name": "0ecdfc7f-62eb-5987-bd49-bc2f6a16b769", "text": "beautiful couples under moon light near lake "} +{"id": "1003921", "video_name": "48695f9a-e8ce-5674-b114-13057e84fef7", "text": "Lots of cricket fans cheering for a cricketer from ground 3D Cinematic 4K "} +{"id": "1004866", "video_name": "59eadac0-e565-5df2-9b89-122b2b30d8db", "text": "camera zoom in and pan up In a magical forest at the edge of time, a charming cottage. 24 Fps "} +{"id": "2003365", "video_name": "e3e25914-8422-5da9-86fe-e5ed3a5e381b", "text": "Mocha is perched gracefully on the edge of a warm, sunlit windowsill, surrounded by potted plants that cast soft shadows across her fluffy fur. Very close to her face so that we can see her big cute blue eyes "} +{"id": "7002049", "video_name": "48c9ab6a-97e7-5d5d-9442-a2aa07d29d22", "text": "NFT with the kawaii pet and astronauts "} +{"id": "4003963", "video_name": "e45da9af-9cf3-5af2-a292-0ce6f9a257bd", "text": "The owl, squirrel and deer gave a map on the young man "} +{"id": "2004878", "video_name": "268b0050-334c-55f8-9a48-e14c5d6b0d76", "text": "Charcter1: in middle walking on sidewalk. background: dark horror mystery, grim, black, night, only lamp lights are lightning on sidewalk. MOVE 1 : Character1 is going to Town before him, MOVE2 : step, step , step. MOVE3: character1: walking. "} +{"id": "8003981", "video_name": "abeb3732-1449-53ab-b1e0-981ff8d79b86", "text": "Six Degrees of Separation Animation: An animation showing one person connecting to another through five intermediaries. "} +{"id": "2006818", "video_name": "a66c7457-202f-50f1-888e-64d84c4ed5e9", "text": "elf eating chocolate while racing in the car full of manure at night "} +{"id": "2005469", "video_name": "6f03989c-4462-56cb-8083-e309a4bb918b", "text": "girl walking, grass winding, sun rising, pixar style animation, ultra hd "} +{"id": "1004099", "video_name": "4be18ae2-dfb9-559f-84ba-aa48dfd6ca13", "text": "A woman climbing an old staircase leading to the attic "} +{"id": "4004585", "video_name": "69157405-3e4c-5624-8af9-f4d143e81b63", "text": "a computer sending packet to modem, room, 4k "} +{"id": "8003793", "video_name": "7c5789bb-749a-5861-a8eb-b2432a5ef56c", "text": "a cinematic shot of a dragon landing in a forest with an old infested plane wreckage "} +{"id": "0005746", "video_name": "2083e11e-7582-5167-8f49-43aedc3cfa6c", "text": "A group of gangs are gathering in a luxury house to drink. "} +{"id": "0005519", "video_name": "1c324803-a3d8-55d3-a690-d9e9c45b39f8", "text": "alien wearing armour standing still smile lights palace zoom out, wait 2 second and zoom in "} +{"id": "4003746", "video_name": "87424dd0-3fea-5d39-9e84-9d8dab9cba0e", "text": "a perfume in the lake and forest sunny day with a party "} +{"id": "3004763", "video_name": "a2b07ac4-cd0b-516a-aca9-ca2aa01c9895", "text": "stop motion skull.\nphotorealistic, walking , dripping melting\nskin, 4k, cinema, 16:9 aspect ratio. "} +{"id": "7002330", "video_name": "87ff2524-18d3-55f7-9d4e-f6c2b2e30ef8", "text": "satellite lands on highway with fireworks in background at sunset "} +{"id": "7002639", "video_name": "e608c6b7-fa58-557f-bba4-28c01875615a", "text": "Romantic Vintage Bedroom with a View Mood or Ambiance: Romantic Interior Design Style: Vintage "} +{"id": "1003594", "video_name": "422ef742-7f63-5f95-afc9-dc3fb136d6ac", "text": "Victorian style painting of a woman in a nightgown being tempted by a demon, high resolution "} +{"id": "0005247", "video_name": "17336bcd-21aa-5feb-9da4-36e7d9073d90", "text": "Steve began his day with a bright smile. He looked out of his window, gazing at the enchanting forest. "} +{"id": "1004895", "video_name": "5a6bf414-3dfa-5690-98e6-513be0d2bfbc", "text": "the mesmerizing movement of sea waves under the endless sky. "} +{"id": "3005360", "video_name": "6d2e2dcd-af49-5d31-9d3b-b9ec60b10d5c", "text": "abstract animation that looks like a salvaldor dali and hieronymous bosch painting, with flowers growing from everywhere, and rays of phosphorescence gleaming through "} +{"id": "1005803", "video_name": "6ac0f7f8-735d-546e-8fe5-f89c42f00b3f", "text": "dophins swimming in the sea Message: wild (Font: MODERN) "} +{"id": "8002761", "video_name": "649c58a2-b569-5377-9461-a04b1e860f06", "text": "A timelapse of cute child growing up to become an adult and facing tough challenges in life. Cartoon style. Emotional. ar 16:9 "} +{"id": "7002531", "video_name": "f09dd8af-2666-5808-8653-577c2ce8d007", "text": "a rooster fly form under the tree "} +{"id": "7002576", "video_name": "528d0b79-ed00-5305-b75e-af4e6d2cf38d", "text": "a woman ghost roaming around city, 2k illustration, sharp colors "} +{"id": "1005457", "video_name": "64474ac0-ae87-5ab9-80e1-126d33d684ce", "text": "samurai on the background of a gloomy forest "} +{"id": "7002938", "video_name": "e7108eb1-9a87-5904-97e7-d682cbd6d281", "text": "a different characters for anime for 10 secs "} +{"id": "3003733", "video_name": "11a111f6-4408-582e-b3aa-da31363b317d", "text": "A robot with a TV screen as a face at the Acropolis in Athens, 4k, high resolution. "} +{"id": "4002790", "video_name": "b2ffa533-eb48-5ff1-8874-a9c228220580", "text": "Benny and Timmy gathering leaves and twigs for their raft. kids stories "} +{"id": "7002552", "video_name": "9596b422-0f46-5e0e-842c-4c1ae15196eb", "text": "close up, street crowded with people, cars, NewYork, people running, construction, avenue, traffic, lots of motion "} +{"id": "5001539", "video_name": "ca358071-6761-5268-a074-58d73a290b60", "text": "black fox The background has a honeycomb pattern "} +{"id": "3005483", "video_name": "f3c71149-6203-5449-8709-65176573cb4a", "text": "a black night roaming cat with sparkling eyes under the bright night stars Message: 1 Attachment "} +{"id": "6004666", "video_name": "2c958c5d-fdaa-5c92-8a0b-f41a37ee9fdd", "text": "a girl wear bikini realistic portrait photography photo shoot upward her one leg "} +{"id": "4004863", "video_name": "98fc556a-18e0-53d7-8d6f-9ea41c8cf27e", "text": "When the Kids Are Away, The Moms Will Play "} +{"id": "4004531", "video_name": "b599e843-807a-580d-86e1-18c215cb35ec", "text": "a mysterious figure made of dark smoke and very thin descends the stairs of a 1920s mansion and runs towards the camera trying to catch someone "} +{"id": "1003318", "video_name": "3d20dfff-ea13-5232-bc88-3769aedcf118", "text": "high quality people in a village talking to a king with a throne "} +{"id": "6002592", "video_name": "0d7ca099-5d5c-5300-a6d7-9e4434c92f2f", "text": "girl in beautiful forest, enchanting forest, morning time, beautiful animals "} +{"id": "2003635", "video_name": "77f5df55-f493-5104-9869-eedf48c87137", "text": "Let the hair move, let the eyes move, breathe. "} +{"id": "8002157", "video_name": "5839ce95-de9d-5312-8cb0-4b0b9ca648d7", "text": "Show an enthralling video clip of a bustling trade port, giant cargo ships maneuvering with purpose, cranes lifting containers with precision. "} +{"id": "6003437", "video_name": "de4fde88-eece-53e4-84f7-ca9ef5d2e5fd", "text": "modern woman, curly hair, minnow eyes, business woman, front view "} +{"id": "6004412", "video_name": "9be74ff0-f6b2-5639-8f0e-df129705f669", "text": "Mysteries of Time Travel and Immortality "} +{"id": "4003452", "video_name": "7f5b2113-f655-515b-b550-d63bda7fd254", "text": "about the mystique of the cosmos, highlighting its profound significance and comparing celestial bodies to beings like ourselves "} +{"id": "8003941", "video_name": "18d36244-226d-5b22-bb81-fbbfb81364f6", "text": "cinematic fashion scene (fashion show in Balenciago style, black leather, latex, puffy large jackets, briefs, models walk through the mud) "} +{"id": "1005431", "video_name": "63c325ff-d605-526c-a18a-28b83384a34f", "text": "A small boy and a goat doing their work in the farm "} +{"id": "0003636", "video_name": "40d5fc96-d9ac-50e9-a383-a50c382cefe3", "text": "Let the children walk. Let the birds in the sky fly. "} +{"id": "8003513", "video_name": "d7c730b9-571b-5f32-8db7-a2d500cefc9b", "text": "Police man walking down street with a cute dalmation dog, claymation "} +{"id": "1004244", "video_name": "4e88f2e6-191a-512e-aef0-6ed46a531c9e", "text": "The cartoon girl sits at her desk, leaning over her book concentratedly. She looks at the book then writes in her notebook, serious in her studying. "} +{"id": "1003163", "video_name": "3a43dc5d-297a-56c2-9bce-9a50433f458b", "text": "paranormal ghost followed by lights in a room turning off "} +{"id": "1003202", "video_name": "3aed299e-e7ed-5ef4-abad-d4eca5ed97b1", "text": "a jar whit sand in it go up and down like shaking the jar "} +{"id": "3006129", "video_name": "58e38fc6-8240-5dd8-8b5a-f543b301695d", "text": "Charcter They explore a bustling foreign market, In surrounded by vibrant colors, exotic smells, and the energy of a new culture. "} +{"id": "1006947", "video_name": "7f26aaf5-f5e1-55b9-a71f-b4ded5b4f152", "text": "A corridor with rooms on both sides with neon lights on and off. Zoom out. "} +{"id": "2004836", "video_name": "186c6b35-7fac-5733-82ef-9f681858babd", "text": "image about young man has a sword and ride a horse and on his head a word and this word is yanime "} +{"id": "6002617", "video_name": "f66156af-143a-5816-b558-cee620fac2c0", "text": "the people are dead due to tsunami "} +{"id": "7004166", "video_name": "b0e91636-447a-5f1e-8dec-acef110a9378", "text": "a beach with palm trees and waves, showing sunrise to sunset, a beach beauty of full day, palm trees on the beach, tropical beach, beautiful magical palm beach, "} +{"id": "4002341", "video_name": "0535b464-77cf-52f3-b7dc-5caaec734bbc", "text": "UI interface for a Dark Web dating app "} +{"id": "7003540", "video_name": "8d0247d3-f737-51e3-a948-a030bc83825b", "text": "showing advertising material Coffee splash swirls around "} +{"id": "1006822", "video_name": "7cca0c25-9619-528c-b589-359fcf5e7dcb", "text": "This time, during the walk, the old man fell down from a sudden heart attack. "} +{"id": "0003512", "video_name": "3ecfe410-5395-565b-8d00-f62c19c6bf33", "text": "create a video where arthur morgan from red dead redemption 2 is resting in a game environment "} +{"id": "2006044", "video_name": "69269dfb-751b-5e14-b5f3-040d0f7a2993", "text": "a fun bot with a head in the form of an old TV greets everyone. "} +{"id": "1006935", "video_name": "7edcbd4f-bacd-55e1-a14d-7b8cdb163e50", "text": "eldritch horror creature floating in the night starry sky, in dreamy style "} +{"id": "2005107", "video_name": "c88b9e72-04bc-5396-a445-43e2da98a844", "text": "a poor wood cutte standing with his faimly, one blind mother,wife in his cottage.make sure fully light in his cottage. "} +{"id": "8001202", "video_name": "24c6537a-dbec-5ca2-ab8e-e10ed8f88166", "text": "Congratulations on one year anniversary for a girl, a sensual and sincere video that touches to the core, a demonstration of incredible tenderness and love "} +{"id": "8003694", "video_name": "2a77a845-87f9-5d40-be2e-d782f9b86cf0", "text": "A little girl wearing a school uniform came up to me on the catwalk. A model walked on the catwalk and walked around "} +{"id": "2003247", "video_name": "eeaf5934-2cdd-5c5b-b511-ec044396c8f9", "text": "mixed berries falling on a white floor "} +{"id": "3006087", "video_name": "5098a1d0-827b-5f61-8c43-fe15d3673f3f", "text": "sneaker with exclusive design worth 1 billion "} +{"id": "0003726", "video_name": "427574a2-c8a1-5d0f-9e8c-56f3da74757d", "text": "helicopter of police on hair watching the crime committee, realistic, high quality, HDR, 8k , cinematic "} +{"id": "0003674", "video_name": "417f6d79-527a-5722-8878-b56e705bf91a", "text": "a woman walks through a museum, 4:9 p.m "} +{"id": "0006998", "video_name": "3677b3a9-73a2-5f7f-953b-cd3941378480", "text": "plot of Dune movie, war on desert planet Arrakis, style of Wayne Barlowe, film grain, vintage, 8k ultrafine detail, masterpiece, cinematic "} +{"id": "0004409", "video_name": "086db630-6e0b-5342-8a74-73befe7ec907", "text": "A Girl Was hot and beautiful dress full photo "} +{"id": "0003851", "video_name": "44985444-3d58-5a8f-a734-239308a95885", "text": "Timmy and Professor Whizbang meet Cleopatra at the marketplace. They witness the daily life and culture of ancient Egypt "} +{"id": "3003071", "video_name": "28b0f4ec-2cad-57bd-b347-a3112588ccd8", "text": "A muscular man wearing back pack walking in a flower fields on a sunny day. "} +{"id": "7003025", "video_name": "73ad6622-35dc-5ca4-bfe7-35762c816291", "text": "Ludwig van beethoven listens to music on his headphones "} +{"id": "6003498", "video_name": "5f5b9bdc-146f-582f-a7cd-7d2234fc1b94", "text": "a beautiful young kid dancing in the street "} +{"id": "2006773", "video_name": "9c8bf8e9-f813-5b9a-a278-dfe07e3d52d5", "text": "a group of armed aliens walkin on mars, cinematic "} +{"id": "0003608", "video_name": "4063e29f-9ec7-57c0-9262-2636270bcb94", "text": "chibi dancing frog, black light painting, bright colors, photopainting, Burneum, futuristic interior design, woodland landscape design "} +{"id": "4004247", "video_name": "8f2a804c-4d49-5c4f-8cea-0018e80c20dd", "text": "Webcam Cover Shutter Magnet Slider Plastic Camera Cover for iPad Tablet Web Laptop Pc Camera Mobile Phone Lenses Privacy Sticker "} +{"id": "3006893", "video_name": "df52335b-457c-59d0-aab7-82ea79e72965", "text": "make a vector art of man holding a cell phone. Make it appear that he is talking and sending audio on his cell phone. Adapt lip movements, facial expressions, and hand gestures to match lively conversation. Make sure to naturally integrate the cell phone image into the animation, highlighting details like the screen lighting up as he speaks. Also consider including ambient elements, such as sound waves or audio cue lines, to emphasize voice communication. The image provided is in vector format, so take into account the specific characteristics of this format when creating the animation "} +{"id": "3005470", "video_name": "5a885d21-6cd3-5be9-8959-ac56963adbe5", "text": "blue water, waves, stream, something liquid "} +{"id": "7004895", "video_name": "448a9dfc-fc56-50f0-a257-5179bd9caa96", "text": "cabin in the woods overlooking a lake. Serene, bauhaus "} +{"id": "6003433", "video_name": "6ca38fe8-3c4d-50c2-b020-67c630550fa7", "text": "a pirate ship on water moving forward , thunder clouds, raining, 4k 1080p , "} +{"id": "0005070", "video_name": "144c0963-d6f7-50f8-8b8d-c5d02bdb8e8b", "text": "cinematic shot of a Greek warriors coming with a letter "} +{"id": "0004889", "video_name": "10f7e358-e091-5b36-b461-55145843cdc5", "text": "4.\t 5.\tConduct simple and safe science experiments that kids can easily replicate at home, making learning about basic scientific concepts exciting "} +{"id": "8001671", "video_name": "29ceb625-e3b8-56c0-8a2e-7a837876d818", "text": "a person aadicted to phone , using his phone , eyes open, background should be red and blue on left and right respectively, vector art, motion graphics , video , ultra hd , 16:9 resolution, vector graphics "} +{"id": "0003813", "video_name": "43f464eb-d726-526e-81fe-9b9f802664ef", "text": "mahmoud ahmadinejad is driving a toyota landcruise in paris "} +{"id": "7004413", "video_name": "75c068a8-fbf1-55ae-b784-1f5c09c378e6", "text": "Beautiful little African girl in a village dwelling. "} +{"id": "6002181", "video_name": "401c1c9a-cbb4-528d-b293-430f8392bc17", "text": "a man runs on a dark road at night under the moonlight, 35mm, film "} +{"id": "1003713", "video_name": "4481e770-a4dc-52b8-9271-4fe8049ce634", "text": "Year after year, the flowers bloom as fair, I wish to pluck the blossoms as spring dawns. The cries of dragons and birds transform the scene, The mirrored flowers and moonlit waters, who grows old? "} +{"id": "2004811", "video_name": "08890665-67e2-5517-81e1-2c64dc32aa90", "text": "crazy pop moment, zoom out, pan left "} +{"id": "2003596", "video_name": "c259909d-b2ac-5771-9396-ffbda46943bc", "text": "john lennon reading comic books with an old lady in a tent "} +{"id": "2003185", "video_name": "a89cdd72-70a7-5d5d-8c9b-579ad2357b43", "text": "a view of a green meadow "} +{"id": "4002369", "video_name": "ce970c2b-66df-5261-ad53-d92c6e59d12d", "text": "alien kissing camera minimalist style, surreal pattern, HD, 8K, high resolution, best quality "} +{"id": "8001827", "video_name": "6c5b8cdb-6299-5f73-81a6-3ce243a316aa", "text": "predator movie style , predator hiding in the jungle trees looking down at a squad of soldiers "} +{"id": "6002804", "video_name": "6878c769-d36c-5eaf-88a4-b23f0ef8eecd", "text": "Elon Musk ride a bike into the space "} +{"id": "7004406", "video_name": "c9bdc6e9-86ca-5d2a-bc5a-52a9e2ca4874", "text": "people working in a busy media agency, manga style, nightime "} +{"id": "3003755", "video_name": "17ed11b4-d2fb-5abf-b5ff-b28fea9e01b5", "text": "straight on composition, blue box sits center on top of a glass table, box is made of glass, translucent glass, light passers through soft reflections, soft color gradient background, in the style of commercial photography, natural lighting "} +{"id": "2007135", "video_name": "0f9dba3d-1a08-552c-9657-2f7f828ffb7b", "text": "panoramic 360 degree video of sea panning to town in background sunset highly detailed "} +{"id": "6004201", "video_name": "ba6c2af9-6d3e-5025-8192-7984f5de50a0", "text": "pink astronaut running overwhelmed closeup on helmet "} +{"id": "8003537", "video_name": "df3f9933-6a3a-5b0f-90bf-897a954d8d4f", "text": "An ancient man dressed in leopard skin stands next to a modern man dressed in a black shirt and trousers, on a white background "} +{"id": "1003246", "video_name": "3bc7d135-a40f-5a0c-82fb-69bb6f39493e", "text": "5 steampunk themed chefs cooking beside the sea, high detail rpg "} +{"id": "3005054", "video_name": "287a6cdb-eb7f-51fc-be3f-3a36af41c643", "text": "A close up of a A man dropping to the floor of a dark red room with dark red floors and dark red walls and bright white light beaming in through the windows "} +{"id": "6003072", "video_name": "48049c32-ddb3-599c-8429-b0b0448d70df", "text": "refracting color spectrum Message: pink floyd (Font: MODERN) "} +{"id": "7004714", "video_name": "bf9477bf-18f8-5a83-a034-faa94091644f", "text": "Musk rode a rocket into space "} +{"id": "2006590", "video_name": "d624202e-9367-5c46-a0b0-e9a81fbeae09", "text": "When the sunlight poured into the room of the young girl Kiki, her eyes sparkled like two shimmering stars. She was a brave and curious girl, always eager to explore the uncharted realms. One day, she stumbled upon an ancient book in a mysterious old bookstore, its pages vividly depicting a wondrous world of dinosaurs. "} +{"id": "2003221", "video_name": "ad133000-856d-55f7-b24f-cf6ed5b3c9ca", "text": "The tamil king and guards are walk with elephant,moving,animation "} +{"id": "0003404", "video_name": "3d12e851-ddee-531b-9f8d-5185fc835d53", "text": ". Legends spoke of its ability to channel the purest form of magic, "} +{"id": "1006622", "video_name": "796e1103-844f-55e9-8efc-ee329b46a3df", "text": "time traveling spaceship going through the cosic web "} +{"id": "0005668", "video_name": "1f053dda-83b0-5ef0-9d31-45fd51be768e", "text": "When the time came, the queen again gave birth to a son. "} +{"id": "2004475", "video_name": "fb6d91d7-3f54-5ebf-a431-be6ff895018e", "text": "a girl with her pet walking in the jungle "} +{"id": "8002116", "video_name": "6c70e2e0-ab0b-57a0-aea7-712a0db92e9c", "text": "Fireworks shooting out of Taj Mahal of inidia "} +{"id": "6002327", "video_name": "04c9cce6-96cd-576c-afde-ca1d4dc2a8f2", "text": "chola Dynasty ships marching towards Indonesia for war. Create an view of battle ships approaching Indonesia and the king of Indonesia is watching it "} +{"id": "2004508", "video_name": "5c5c9d7a-1618-511a-bce8-41965b7fa370", "text": "Person waking up on the side of a dark scary street "} +{"id": "3006618", "video_name": "10282191-b4fe-5d3f-8f58-eb1e316ca87f", "text": "A cinematic video of a parched earth, once a vibrant wetland, now cracked and dry. The subject of the video should be the parched earth itself, but the surrounding environment should also be visible to create a sense of place. The goal is to create a video that showcases the reality of the impact of climate change on wetlands. Video focus should be on pan straight. "} +{"id": "3004671", "video_name": "e1dd254d-7279-5388-8a15-15747b70f3a3", "text": "illustration: a cartoon character in the shape of an organism cell walks into the distance "} +{"id": "2004128", "video_name": "b76cb4b2-33d6-55ed-864e-d3f57062cc5c", "text": "while running a puppy grows older and turns into a lion "} +{"id": "4004050", "video_name": "f42239b3-6d5e-5182-8f63-3bb1eee108af", "text": "a bird flying in the rain forest "} +{"id": "7004634", "video_name": "7a48e495-5aa7-51ca-a7e5-08a091f63654", "text": "communities, demographics, cultural factors, and social dynamics "} +{"id": "5001520", "video_name": "ee14fbbd-b5b4-572c-ad7f-39362aba92ef", "text": "a hyperrealistic haunting of a scar ghost,. horror ultra detailed, ultra realistic "} +{"id": "0005661", "video_name": "1ee112ac-6cbd-51f5-9447-9458b1f85ae6", "text": "Vinyl record player, vinyl record spinning "} +{"id": "8003968", "video_name": "5ddce48a-58f3-5010-91a1-7075893d9583", "text": "imagine the boy in the left is talking about someting with a lot of passion "} +{"id": "6002337", "video_name": "c29a68f3-829f-5aba-a7d7-dd21c41127c9", "text": "live action Sonic the hedgehog muppet running"} +{"id": "8003259", "video_name": "e891254a-3fc2-5a8d-9769-53acb078ee3a", "text": "a street in the city, night, steampunk style "} +{"id": "7003492", "video_name": "e60cc340-0ece-512a-9ad6-6bed05a9eb96", "text": "a lasy cat under a tree "} +{"id": "4004489", "video_name": "a8057e7a-d21e-5ae5-8186-f79ac316800f", "text": "A man is flying in the sky between the trees "} +{"id": "6002332", "video_name": "a841ac4f-2184-5570-8d26-41f71a156ca3", "text": "Beautiful single gold coin flipping in the air, pulsating gold energy, pitch black background, 4K, 8K ultra realism, flipping motion "} +{"id": "5001885", "video_name": "67b9d74a-bbb8-5232-9a5a-5f04470b7959", "text": "Jesus crucified in the background of the splendid sky with clouds, hyper realistic image, cinema quality "} +{"id": "1005466", "video_name": "646e9433-20ac-50f9-8a94-efdc89c11705", "text": "action movie sequence john wick style with muppets "} +{"id": "8001385", "video_name": "d2003420-6c01-5434-b9de-14e3310539b3", "text": "A young and beautiful teacher is in a classroom giving a Spanish class to students. The teacher is the protagonist of the video. "} +{"id": "2005402", "video_name": "20361eff-7c15-5ab6-af39-8f61d85a4b0c", "text": "The black cat assumes an attack position in front of the other cat "} +{"id": "8001197", "video_name": "0f2e6686-1a29-59cd-8653-b72775cb2bba", "text": "a dog chasing on the green land "} +{"id": "0004665", "video_name": "0ce821af-1ac7-58ca-9d69-4414ae742e0c", "text": "an animated area where a palace in a jungle is reflecting in a small water pool and a young boy steps into the pool, disturbing the reflection of the palace, fps 20 "} +{"id": "4002217", "video_name": "267de5e0-7353-5925-b4d0-d548215f27d4", "text": "I want a nostalgia memories video. As if in my mind, starting with the text memories is a line connected to another future text is the line disappears, repeating the process in present and future "} +{"id": "7002435", "video_name": "a8091c82-800b-54ab-8270-3bbe0849de6f", "text": "A car at an intersection. The driver waves to you as he drives off. "} +{"id": "6003370", "video_name": "db7fa731-9be1-5246-ad7c-5b7746fd088f", "text": "In a small town, in the heart of an elementary school, lived a passionate teacher, Mrs. Anderson. Message: Mrs. Anderson. (Font: MODERN) "} +{"id": "1003661", "video_name": "4369af7e-d9ab-5f9f-b59d-430056328a50", "text": "An artistic representation of the aftermath, with the city of Iram in ruins and people seeking refuge "} +{"id": "2005360", "video_name": "f32dd9b5-89ea-57f4-a08f-965a921fd22c", "text": "A rocket awaits its launch on the pad, while people watch it from afar on a cloudy day "} +{"id": "8001145", "video_name": "28b7dc2e-6098-57cc-b3e8-d91d81d06602", "text": "A rural house in the middle of a farm portrays a serene scene. The house, with its rustic charm, sits among expansive fields or orchards. Surrounded by greenery, it creates a tranquil ambiance. Smoke may rise gently from the chimney, indicating a cozy warmth inside. Farm animals graze peacefully nearby, completing the picturesque rural setting. "} +{"id": "8001137", "video_name": "561b3aea-eb81-5645-8a93-028b7a4bd03f", "text": "add at least 10 poeple to the background Message: 1 Attachment "} +{"id": "0005748", "video_name": "20860acb-ddae-51c9-a9b4-fcfc1723dd2d", "text": "the earth spinning around in space and then morphing into a jack o lantern "} +{"id": "1006317", "video_name": "7399d3a6-da14-5557-9e70-1580da514198", "text": "I see nothing, I hear nothing, I say nothing. "} +{"id": "6004514", "video_name": "4a157e24-b25e-540a-9367-c4078db22379", "text": "Illustrate the shooting star streaking across the night sky as the squirrel makes a wish with a hopeful expression "} +{"id": "2007446", "video_name": "3aecd274-efbb-5b03-a6a9-b3321396d703", "text": "Neaon Hindi Text written on wooden music box. Beautiful colours neon flower on it. 4k, ar 9:16 "} +{"id": "6002356", "video_name": "c42e81b2-2839-5a1c-a4d0-5ff955ab6836", "text": "cinematographic bored professor in front of the computer reading with many books around him "} +{"id": "0004970", "video_name": "12780589-3e5b-5a91-b79f-2d2cb1d661a4", "text": "Excited at the prospect of having a friend and learning from the wise lion, Robbie agreed. "} +{"id": "8001411", "video_name": "a18a9356-61af-5c10-b69a-b8a72134efe2", "text": "girl with brown hair and blu eyes taking a photo for a newspaper with a famous rugby player "} +{"id": "1003567", "video_name": "41cd013a-d369-5dbd-b47f-d1cb212a7bd4", "text": "a speedy cartoon squid, electric orange in color, large anime eyes, swimming away from a teapot through dark blue sea, surrounded by 3D shapes, cartoon, 4k "} +{"id": "8002706", "video_name": "6c31057d-9af2-5e24-a480-138f56f52a7d", "text": "pensive people looking at the starry sky "} +{"id": "0004173", "video_name": "04853db3-30f5-58e8-a17a-0dc2d0968bf7", "text": "a young girl blonde with elegant dress blue "} +{"id": "4002223", "video_name": "c737945e-e09a-5e73-8c69-0d8b501a930d", "text": "A hand is transformate in to a Spider "} +{"id": "7003791", "video_name": "efd133b8-e311-5f40-9fd8-baf55999060e", "text": "vintage photo people watching the sky "} +{"id": "3005932", "video_name": "c5adc1d1-d642-5b75-8068-2985c0592dd0", "text": "It sings a song, so sweet and free, A melody of joy, for you and me "} +{"id": "2007651", "video_name": "0706915e-4e5f-5662-82b9-bd0be181a4f6", "text": "Two teenage girls in bikinis dancing in a white tile room. Each girl with madusa like snake hair. One girl has red snakes and the other has black snakes. Camera zooming in and out. To feature snakes. vogue style. "} +{"id": "5001830", "video_name": "32b4c4f2-280a-5eb4-89c9-c51836032b49", "text": "photorealistic cinematic lighting blue and green lighting man sitting at table drinking alcohol and smoking cigarettes in a bar "} +{"id": "4002003", "video_name": "651f6fab-71fc-5912-8309-b6d2ba1d78f5", "text": "In the heart of a bustling city, amidst the neon lights and towering skyscrapers, a young boy and a robot found their friendship. It was a friendship that defied boundaries, a connection that transcended the differences between man and machine. "} +{"id": "2003880", "video_name": "5244ddeb-4159-5314-81bb-8e95b8ab34d5", "text": "eyes sparkled with a warmth that mirrored Message: 1 Attachment "} +{"id": "4002262", "video_name": "ff8e8d0d-3e21-50f5-b882-edb3dff0b732", "text": "empty dark circle in front in center, in a celestial garden, with stars twinkling in the night sky, with waves gently crashing against the shore "} +{"id": "4004632", "video_name": "49152a10-c2d2-5cf8-89e7-c290e8064f03", "text": "A sad woman is crying on the bridge Message: 1 Attachment "} +{"id": "3005284", "video_name": "1b6aeb03-aada-5b8a-b75f-56e16723775c", "text": "This gun could have changed the history of the village. "} +{"id": "8001313", "video_name": "0af0fd68-7f72-5156-b359-311203b7f654", "text": "Stories of Agartha have captured the imaginations of adventurers and mystics for centuries "} +{"id": "6003700", "video_name": "50a54f83-6983-568d-abec-c023706c4f33", "text": "a boy is talking with basic gestures "} +{"id": "1003158", "video_name": "3a2e046d-db02-5bd8-9693-336168ff2996", "text": "men wearing tracksuits in a pub drinking footballs "} +{"id": "0006686", "video_name": "310212d1-087a-5065-a092-bf8c9c5da218", "text": "a 1950\u2019s husband standing in a window looking outside with a cup of coffee in his hand. He has glasses and a button up shirt. There is 1950\u2019s cars on the street. Colouring is cyan and pink "} +{"id": "3006690", "video_name": "78a08778-a7f2-5681-af12-d92233a56259", "text": "3D Animation a donkey drinking water at the lake with other animals of forest "} +{"id": "2004657", "video_name": "ec9a1b42-093e-56fc-96bb-7ecee10d4d4d", "text": "Tesla Cybertruck on a street race with Volkswagen Beetle "} +{"id": "0005015", "video_name": "1346a238-5bfc-5e93-8f7b-a8b6f7502707", "text": "a sheet character anime style in different angles "} +{"id": "8002712", "video_name": "a2ac8b4d-9873-5de8-ae7a-c70aea13f525", "text": "Leaky faucets and pipes can result in significant water wastage over time. "} +{"id": "7004266", "video_name": "9a00407f-db9d-5437-8234-3b701a9780f0", "text": "exterior shot of an abandoned house at night, large full moon in the sky, ashley wood style graphic novel "} +{"id": "4003303", "video_name": "4aa4d096-9df3-5235-8ed2-e87344773460", "text": "Drizzle, ever protective, guided Tweety safely across the rocks on his back, their reflection shimmering below. "} +{"id": "7002302", "video_name": "94d69f75-e097-5f88-a4d0-4029e857cec1", "text": "male walking natural Message: 1 Attachment "} +{"id": "2006594", "video_name": "3874ca69-4ca1-55da-b0d4-65fe1df0972d", "text": "An illustration of a wise old owl perched on a branch, looking down at Layla with a reassuring expression, offering guidance and comfort during her journey. "} +{"id": "0005781", "video_name": "2124c82c-61b4-50fe-902f-450aea234b5d", "text": "video of a chef cooking a gourmet dish in a cozy environment, cinematic lighting "} +{"id": "7003613", "video_name": "6b67b102-6057-5217-9450-bab18a6f1467", "text": "holy maidens raining from the sky "} +{"id": "3004687", "video_name": "d1d0c5ed-b06d-5bb9-afb7-e78093e514d1", "text": "Very close shot of an ant walking on a branch. "} +{"id": "4003863", "video_name": "1fedca1f-7945-53f9-8c09-2953bb27cb38", "text": "childen wearing white hanfu with red stripes lining up and walking into the hall "} +{"id": "6003001", "video_name": "09417599-6f71-599d-8497-bfeee144aedb", "text": "giant alien shark underwater, VHS quality "} +{"id": "0006817", "video_name": "339a6293-341f-52ca-a69c-5c1940b64171", "text": "a wood carpenter cutting woods with small object "} +{"id": "1004259", "video_name": "4ee76b49-c4ba-5778-8f3c-9231f17884a6", "text": "using early humans tools in a prehistoric restaurant "} +{"id": "1005695", "video_name": "68aa76f2-ccbe-5754-9739-50fe6977e8b6", "text": "writng on book with talking Message: 1 Attachment "} +{"id": "3004149", "video_name": "85c3ed5b-43ae-5ce5-ad63-0191903a53ad", "text": "Psyduck runs alongside Bulbasaur and Squirtle, Ghibli art style "} +{"id": "8001431", "video_name": "37cb44c1-f7da-5e06-8d05-a242652a8960", "text": "a cinematic drone shot across a midwestern cornfield golden hour "} +{"id": "1005356", "video_name": "62859090-f64f-59b4-a647-00ca03764365", "text": "In the dark catholic, the dark black smoke around began to spiral, forming mysterious illusions. \nThe eyes of the golden skull flickered brighter, then emitted a dazzling light that shot straight into the sky. "} +{"id": "6002279", "video_name": "a08b16d4-2d87-5167-9fdd-32a0c851b360", "text": "Three adorable tigers are strolling through the forest, bathed in golden sunlight, surrounded by small flowers, and with little birds soaring in the sky "} +{"id": "7003221", "video_name": "4ff93961-28db-5612-b971-3d397712b337", "text": "horse running, hyper realistic, high octane render, "} +{"id": "3005367", "video_name": "b2aedf48-0aaf-57cf-9bad-5ea0866b3bbc", "text": "a man walking in the street, fashion streetwear "} +{"id": "0005551", "video_name": "1cb7753e-0aae-59e3-ae44-c6f0d21f6646", "text": "a top down view of someone lying on a rock "} +{"id": "8003438", "video_name": "aa8d7de7-828a-569e-9bbe-baeeca396a44", "text": "a nighttime cityscape with muted colors, soft streetlights, and a serene moon casting its glow over the tranquil city "} +{"id": "2004643", "video_name": "813d72e4-902d-568f-bfc8-2df38b52ed13", "text": "A beautiful girl who is shaking her head here and there "} +{"id": "6003808", "video_name": "1b22da2b-c075-5c3c-98f8-7191455a99ee", "text": "a soul transforms to a bird "} +{"id": "2003016", "video_name": "d7d0ef12-7f4a-5f15-b088-cb00126be391", "text": "An epic space battle in 1970s technicolor "} +{"id": "2007179", "video_name": "6b3a5086-f822-56cc-a50f-8eadf7d4b3bc", "text": "a lion jumping on a buffallow to catch it "} +{"id": "3005555", "video_name": "c83d27b4-e277-599e-b774-c2376b237229", "text": "Silhouette of an old person playing the guitar on a treehouse Camera angle from a distance "} +{"id": "6002098", "video_name": "45996767-653f-526b-999b-8b1a207d2ad8", "text": "ultra zoom out shot of the pyramids of egypt, sunny "} +{"id": "1003687", "video_name": "43f24cfa-64a4-5afe-92a5-373069f425e5", "text": "limit of the universe, realistic, space, wide range "} +{"id": "3003384", "video_name": "8fcbd876-f113-5de1-b1f6-1cee6f43b30c", "text": "The waves are moving,Hair fluttering in the wind,touch your hair,A tempting smile,Sunlight shining on the upper right corner,The character turns to face and smiles at the camera,Chest floating up and down,Breathing sensation "} +{"id": "6003565", "video_name": "f9db84e9-41fd-50d6-8de5-a40362e5186d", "text": "a picture of a strong masculine longbearded man opening wisdom book with a little bit of light in background "} +{"id": "8003434", "video_name": "24200ec2-3f03-5be7-a288-e7c86f36f5a5", "text": "barren land, cracks Message: water (Font: MODERN) "} +{"id": "7004672", "video_name": "dd400807-4484-581f-a3eb-6cc2b9d75dd6", "text": "Suddenly, it sees a squirrel jumping from branch to branch, gathering nuts and hiding them in a hollow tree. The camera transitions to a group of deer grazing in a meadow "} +{"id": "4004210", "video_name": "452c70ce-620a-59fa-9402-0aea7a4fba18", "text": "The Ark of the Covenant is a sight to behold, its ornate design and ancient power drawing people from all corners of the world to witness its glory. "} +{"id": "0006278", "video_name": "29e69d9c-36a8-53a8-8d93-580489cb02e6", "text": "High school students in school uniforms are walking along the street, looking out over the city. "} +{"id": "3004249", "video_name": "edd90270-d714-5d9e-af06-776501e8da33", "text": "a grant mouse is hugging the Earth and eating the Earth "} +{"id": "3006839", "video_name": "5a198281-3dca-5a95-bf44-808206202f41", "text": "frog looking on window, 3D, unreal render, disney style "} +{"id": "3005934", "video_name": "f95c5fbd-c7ab-5801-b2e2-86dce22810b3", "text": "skeleton walking in imperial valley, photorealistic "} +{"id": "4003389", "video_name": "6ad395be-0071-50fa-a5b8-2c686722683a", "text": "girl in hospital with mask after nuclera attack "} +{"id": "1006475", "video_name": "767ece1f-2462-548c-9c2f-b0ce863f4aae", "text": "chloe wallets passing through a treadmill in a chloe luxury store "} +{"id": "4003518", "video_name": "e4d75433-a746-5acf-80ab-3b93225f5211", "text": "and they are considered the guardians of the Inner Earth. "} +{"id": "0003743", "video_name": "42a7867f-ca5e-58ee-a046-c46c3e93a46d", "text": "a video of a steampunk bee moving from flower to flower "} +{"id": "6003745", "video_name": "29f99d73-72df-5933-9fdc-36bc3ad02b00", "text": "young sebastian shaw burning and crawling on lava rock with arm outstretched , screaming in pain "} +{"id": "2007515", "video_name": "acd3a40b-b964-5b33-b0e0-4a668f00a45a", "text": "a Cute girl play with her father on shool "} +{"id": "0005903", "video_name": "23001f3d-7cd5-5948-b8fc-c171b79d3b7f", "text": "Cute cat roaring, while giant tiger is on it front "} +{"id": "4003558", "video_name": "6693dc80-f3f9-5d4b-b56e-27b419cb929c", "text": "the most expensive video ever recorded "} +{"id": "7004205", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "anime girl dancing, 8k resolution, hyper realistic render "} +{"id": "1005799", "video_name": "6ab2d1cb-986e-5219-ab3f-74096ac92717", "text": "defile in a fashionable suit in the style of barragan "} +{"id": "6004728", "video_name": "a97f7105-6f69-527b-b91a-3fd753a8b50c", "text": "an abstract water effect. only use blue tones "} +{"id": "3006441", "video_name": "de986839-e664-5266-a13c-7c9ac0cf8c61", "text": "She swims in a transparent pool without a thing "} +{"id": "6002217", "video_name": "5a17537f-e203-5a92-a730-2111b08e64a9", "text": "The words on the book float "} +{"id": "6002772", "video_name": "3a219716-d1ed-5906-a543-b19880d4d641", "text": "cinematic shot of a beautiful woman looking out across the ocean "} +{"id": "2007814", "video_name": "ebffcc25-87c9-5a50-9ab3-194adff3a3b3", "text": "6 years old boy with umbrella and rain 16:9 "} +{"id": "4003510", "video_name": "c5cfcca6-b80a-5198-aafb-f485bd89e4a2", "text": "a realistic technologic masked guy with a hoodie is dancing on techno music in the jungle from a high point of view "} +{"id": "3005115", "video_name": "97a47ff3-37ac-54b6-9e8f-3989505fd83b", "text": "Colorful house in a quiet forest "} +{"id": "2007848", "video_name": "6200f473-34fd-57b8-aacd-368b76ba76a0", "text": "balinese barong walking in the beach in Bali "} +{"id": "8003735", "video_name": "d29dd588-39dc-5188-81ce-de39503b8d0b", "text": "The video ending with Lily and her friends waving goodbye to the audience. "} +{"id": "6004889", "video_name": "d0884dc0-9e05-5d17-b507-9dceb1bea930", "text": "a desk covreed with paper and books, video modern, surreal elements "} +{"id": "0006762", "video_name": "32a0c6c3-8ef2-5d3c-b234-f7f678acebb9", "text": "bmw E30 325is 1991 white parked outside a house in soweto "} +{"id": "2007254", "video_name": "12064bf6-2dc5-5dbd-b6c9-786ea67d249c", "text": "ww1 london on fire at night "} +{"id": "0006704", "video_name": "316ca01f-55fe-59ee-81d3-47a31b027791", "text": "Flawlessly cooked egg sandwich, bacon, toasted English muffin or bagel. Slices of tomato or avocado and lettuce. "} +{"id": "6003227", "video_name": "bf6f2d2e-ed35-5852-be91-b3f9ce334a55", "text": "cat listening to ipod with ipod headphone cable bouncing "} +{"id": "0006842", "video_name": "340df211-ad8f-523d-8474-ec637cdc6ca3", "text": "reading a book face smile some child near seat with me style this photo Message: 1 Attachment "} +{"id": "1004954", "video_name": "5b946724-01ee-549f-a30e-0d6df025cc4c", "text": "Design an image portraying the scorching sun and parched earth during the challenging drought period. cartoon style "} +{"id": "3006182", "video_name": "3b4b3ed9-f4bc-536b-8c65-53f1cbcfa32f", "text": "a man wearing a business book walking on the street "} +{"id": "0004642", "video_name": "0c822c9f-18e8-530c-adca-d38f642ca00a", "text": "Illustration of a large, female cow walking gracefully in a vibrant meadow with a background of distant trees and a clear blue sky. "} +{"id": "2006691", "video_name": "47e4513e-68d7-5a4f-94ea-cfd9559508bb", "text": "Porsche is one in an abandoned apocalyptic city "} +{"id": "8002974", "video_name": "85f5607c-0e5e-50e7-b48d-fb22db505a65", "text": "A moment of misunderstanding or disagreement challenges their bond. Tension rises as they confront their differences. Yet, through vulnerability and understanding, they find resolution. "} +{"id": "0005629", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "future world becomes more intelligent and very advanced building, modern city, machinary and cars "} +{"id": "5001748", "video_name": "e2664a6a-1c4f-596c-861d-ff1b8ac370fa", "text": "drum station, cinematic zoom out, console in background "} +{"id": "0004907", "video_name": "113db62f-97a3-59ed-92ee-c777ab2edc21", "text": "an explosion in the dark space, neon colors, fantasy "} +{"id": "1004729", "video_name": "57b1ac93-f298-541c-896c-af7fb7cb7e25", "text": "Indian Family Walking on the moon surface, Earth is seen in the sky, Futuristic Homes "} +{"id": "2006168", "video_name": "8ae78f3c-c6a0-536b-b724-4477b84599d5", "text": "indian gods gather in heaven covered with clouds "} +{"id": "6002065", "video_name": "505849bf-49f5-5d4b-a62b-b1fcc64cb93e", "text": "coffee lofi night illuminated by the lights of the moon while a cat walks along the sidewalk and it rains heavily and a woman plays with her cell phone listening to music on her headphone "} +{"id": "7004301", "video_name": "30f2d667-5266-56eb-bc60-59d87a4fcbd9", "text": "(Zombies lunging at the survivors, teeth gnashing.) "} +{"id": "2007453", "video_name": "cb30b384-2966-53e5-8507-9f60bc6e9ebf", "text": "high cannabis flower, top of the cream, showroom "} +{"id": "0004702", "video_name": "0d952b29-fac9-5a36-b730-154bbe6b3e96", "text": "loads of digital balloons floating Message: ai crew (Font: MODERN) "} +{"id": "4003556", "video_name": "3bd2e89c-590f-58b9-bab4-b5f205548b50", "text": "Maya examining a rare artifact under soft candlelight. "} +{"id": "1003938", "video_name": "48a6ce3f-e0e5-5e0a-abf5-491bf6ec45fc", "text": "1 million eyes, permutation, complex, combination, contrast, full color, Pablo Picasso style, high detail, 4k, surealism, hyperrealism, hyper realism, impressionism, abstract, cubicism "} +{"id": "7004019", "video_name": "3a3ac855-ad53-5cb4-894d-893e3add8ea2", "text": "a flyby of a red Barnstormer Plane over a Green Island with a little harbour "} +{"id": "0005266", "video_name": "178a82d5-07db-5e79-9543-055d1da934d2", "text": "Snow and watermelon and pomegranate for Yalda "} +{"id": "1005241", "video_name": "606304fb-a998-5bce-ad33-68e4d3b060da", "text": "a soccer pitch with players on Mars "} +{"id": "0004440", "video_name": "091e0432-3ce9-5b71-a79a-671de40e9abc", "text": "Dragon flying high up on the sky, white clouds around, blue sky, cinematic scene, ultra realistic "} +{"id": "2005971", "video_name": "fcedaee5-103c-54f3-b0da-bf0ca83d3889", "text": "found footage of creature with a mushroom head "} +{"id": "0004500", "video_name": "0a0da7f6-32d1-56d5-ba90-a0e56d7124f3", "text": "in text of old painting Message: bua mareo na please (Font: MODERN) "} +{"id": "6002276", "video_name": "b61ba34b-103d-563b-ac51-5caf6b56d440", "text": "Cinematic suburban city in the afternoon, Film by stanley kubrik, Wide shot, 35mm, AR 2:1 "} +{"id": "0005589", "video_name": "1d938b91-4b38-5270-a35b-470be8ea86c0", "text": "create a letterform logo for Dream Light Photo Design representing excellent photography skill and creative design capabilitiesss "} +{"id": "2005004", "video_name": "4db038f2-203d-5aa4-8f5e-7013eeb48e9f", "text": "the great wave of kanagawa in a bottle in the middle of a table "} +{"id": "0004635", "video_name": "0c600e6f-39e6-5f7a-a918-bd14924a4677", "text": "POV of flying through clouds as a bird, panoramic view, ethereal landscape peeking through the clouds below "} +{"id": "1006435", "video_name": "75d21bcc-0018-599f-8959-35accf5d8554", "text": "dark night, tarot, glitter, dark city silhouettes, dark city film mood, hyperrealistic, fast movement, diamonds, factory "} +{"id": "8001716", "video_name": "524a8f8a-a5f7-5d34-9671-94674931fd40", "text": "Superman shows the contents of his empty wallet, there is no money "} +{"id": "6003224", "video_name": "f948f7e6-7430-5133-b789-48b6f1d816a4", "text": "a boy running in the forest cinema motion style 4 canon cinema "} +{"id": "1005719", "video_name": "693cf673-e057-56ff-849b-af6bf92f44e1", "text": "On the battlefield, Zhang Fei held his Zhanba Snake Spear high as he ferociously rushed towards Lu Bu. His face showed a resolute expression, and his gaze revealed his endless anger towards his enemy. His body was as strong and powerful as a tiger, every step he took was solid and powerful, and the ground trembled from his stamping! "} +{"id": "4003120", "video_name": "2d0cd130-16a9-5a6a-bf61-4bc5484fa974", "text": "Realistic Raining from the sky, Dark clouds "} +{"id": "3003995", "video_name": "39947d5d-4ced-59cc-b8fc-19fa1c9ac72e", "text": "Penelope (ancient greek beautiful woman) sitting at her loom, weaving and unraveling a shroud, her face illuminated by candlelight. high quality. cinematic style "} +{"id": "7004545", "video_name": "be20ad64-8f64-5194-9c4f-227bdb41dda1", "text": "a night scene with bright stars from 1900 in black and white "} +{"id": "0003660", "video_name": "41367f6e-2184-5f60-bb50-37fa8312d07d", "text": "2 homeless guys on stage playing music and screaming "} +{"id": "2004037", "video_name": "6aa2c4f2-7146-571e-8cb2-873f4b036ec7", "text": "movie poster about gypsies disney pixar style "} +{"id": "1005627", "video_name": "677368ab-eec5-5eac-b492-113421b51449", "text": "software updates on phones and laptops "} +{"id": "6002409", "video_name": "745743d3-2714-537e-9d51-e544fa041fff", "text": "BANK ACCOUNT word pops out from the binary numbers background as camera slides forward. Binary numbers concept Message: Bank Account (Font: MODERN) "} +{"id": "7004435", "video_name": "8df8cbde-5419-5f9a-9090-734ac897c086", "text": "beautiful girl as angel neon color hair flying full body view hd photograph 32k ultra details smiling face "} +{"id": "6004220", "video_name": "0e20c596-3c01-520e-bc34-02d54160003d", "text": "droneview timelapse video of bridge from New York, boats on the ocean fastly moving and wandering around, the cars on the bridge moving very fast, new york buildings on the background, skies moving very fast "} +{"id": "8003003", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "a islamic background with Quran opening pages hd quality cinematic zoom camera 16:9 realistic "} +{"id": "8002728", "video_name": "91b4c8b0-546f-503f-bb5c-5e8f86bf1683", "text": "Curiosity and fear intermingled, creating a palpable tension in the community. A few brave souls decided to investigate the mansion, drawn by a morbid fascination with the unknown. "} +{"id": "1005674", "video_name": "683af448-5635-58d2-ab53-3a1d620c8afb", "text": "The video then cuts to the friends walking to a restaurant that is near the lake. They admire the beautiful landscape, look at the water and swans. They enter the restaurant, where they are greeted by friendly staff. The video shows the friends sitting at a table by the window, which offers a magnificent view of the lake. They order food and drinks, discuss their plans and memories. They eat delicious meals, drink wine, and toast friendship. "} +{"id": "1003282", "video_name": "3c5d2419-1699-5af3-b618-d34b0ac54d19", "text": "focus on stars and moon, glowing, "} +{"id": "0005919", "video_name": "233e0e78-21a6-5b35-a779-1e63a6b87547", "text": "3d animation boy walking infront of hogworts wizard school as a small wizard "} +{"id": "6002737", "video_name": "7f1bf44a-1fcf-51a6-b310-4ab7c8d9d1c9", "text": "a futuristic Smirnoff commercial with an Alien "} +{"id": "2005242", "video_name": "95f864e0-2fd9-586c-ad35-0a6e7762f338", "text": "A sunny scene with Squirrel leaping and playing near the tree. in 2d cartoon style in 16:9 ratio size image "} +{"id": "0005370", "video_name": "19acde51-f41d-5c94-b82d-e0d278ce6d9b", "text": "a girl walks along the shore at sunset "} +{"id": "0005667", "video_name": "1f001bc2-75cd-5fb3-bc62-2167d680e66b", "text": "a small boy wearing school bag and on his way to the yellow school bus "} +{"id": "8003220", "video_name": "f34782fa-ee63-5256-974d-146a94d2e828", "text": "Infographics highlighting key benefits like increased efficiency, faster adaptation, etc. "} +{"id": "4003386", "video_name": "ae5ec1a6-61dd-5e0f-bc6f-211e73e6f266", "text": "Craft an image illustrating the wise friend imparting a lesson. Utilize visual symbols to represent truth and ethical values, symbolizing the passing of wisdom. "} +{"id": "3003865", "video_name": "6bf60456-c34f-5fab-b46a-81ff8a89cf89", "text": "a text and image video meant to use as gig video about shopify page design using Pagefly, Gempages and many more "} +{"id": "6002830", "video_name": "e61cea73-9c22-59bb-9178-3e05ff8f9eca", "text": "As the days passed, the villagers noticed a change in old shepherd in a snowe area. He became distant, and his once kind and caring nature turned cold and heartle "} +{"id": "3004487", "video_name": "acff1f57-0367-559d-8b39-6c29bcea7025", "text": "Around the end of the 18th century, a group of boys and girls around the age of 10 study by writing on paper with quills in a classroom at an elementary school in Warsaw. Late 18th century, sunset, photorealistic, cinematic, epic, hyperrealistic "} +{"id": "6004953", "video_name": "fdedfdc4-6047-552d-8425-d59aca495ebc", "text": "Lying in bed, open the window and see the trees outside "} +{"id": "7003697", "video_name": "db3106af-e23a-500e-8266-c2bd982505b3", "text": "Portrait of a LFG, Pirates against a vibrant background in the maximalism style. Quirky details, front view. Incorporate humorous elements to amplify its comedic appeal. Utilize a bold color palette with bold, expressive inked lines "} +{"id": "7003617", "video_name": "23bd12aa-9ed4-5d2b-8ed7-78fab42f888e", "text": "animate big picture of an oak tree "} +{"id": "6004821", "video_name": "bb6c500c-3490-57a7-9b86-a8672dbac074", "text": "Forest Fairies: Playful forest fairies leaving riddles and mischief for the team to solve, depicted with glowing wings and mischievous expressions.Aminated cartoon 4k 3D animation "} +{"id": "8001229", "video_name": "427a5fca-c95c-5bff-be4a-d00f7225cf97", "text": "A vampire, emerged from the shadows "} +{"id": "3005129", "video_name": "7d097eb9-36b8-5be5-8cfd-de4d1a163031", "text": "Man being robbed by two burglars "} +{"id": "1004397", "video_name": "514e69dc-02de-5dec-b876-42364bc429b0", "text": "a slow zoom in of a high tech cyberpunk city at night "} +{"id": "8001228", "video_name": "551b3a32-825d-5e92-9d14-aa431b944877", "text": "create a video with a family living very poor "} +{"id": "1005498", "video_name": "65189c50-f167-5974-83a3-d6d06351f073", "text": "castle interior, 80s, romantic, music video, cinematic "} +{"id": "3003286", "video_name": "f86ed464-7769-58ce-bd33-17c872590413", "text": "There was heavy snow in the sky. A man was walking hard in the snow "} +{"id": "0005867", "video_name": "228fc378-c88e-541d-8734-c38a3cffe928", "text": "A silhouette of Chet Baker playing trumpet in a small 1960s jazz club. "} +{"id": "2003639", "video_name": "f2797089-78e4-5093-b54e-35fb6c96553a", "text": "Animated silhouettes of professionals in business attire gather around the trophy "} +{"id": "4002608", "video_name": "895ab467-6b98-5f32-ba31-e7dfe01daa41", "text": "a woman with tattoos lying on her bed, in the style of lascivious forms, net art, transparent light purple and light brown, steelpunk, forms, sandalpunk, realist detail. detailed anatomy, Hyperrealism,Concept art,Magic realism,Color Grading,Photo shooting,Dreamlike,Depth of Field,DOF, Tilt Blur,Gamma,White Balance,Dark,Light Mode,Dark Mode,High Contrast,5D,Multiverse,64k,Super Resolution, "} +{"id": "0005038", "video_name": "138e2ddb-35f8-5d95-80fc-5349cf6eca13", "text": "Aerial views of the colorful houses of Cinque Terre "} +{"id": "3005724", "video_name": "3dce67ef-c056-5bef-8ded-3b0cf91135a4", "text": "Craft a scene representing kangaroos on the global stage, such as in an international campaign or event that symbolizes Australia. "} +{"id": "4004459", "video_name": "48501813-aa28-5b3c-beeb-b38f76676425", "text": "Meeting Willow: The wise elder tree, Willow, imparts wisdom to the animals under the soft glow of fireflies. "} +{"id": "6003345", "video_name": "3e32e88e-b2d8-5c2a-b129-9cf3625939ed", "text": "young caucasian woman celebrating over her new car "} +{"id": "6002326", "video_name": "4e802015-b98d-504d-bd1a-03d9e93a3515", "text": "2 different person walking opposite each other "} +{"id": "2004852", "video_name": "066019ff-1236-52f8-85c9-368f35a96346", "text": "sunny morning and sunlight come through tree leaves and boy Ethan walk on park.zoom from toward amination style "} +{"id": "4002111", "video_name": "311c40e9-863c-5897-8a73-d79a53791901", "text": "woman facing straight on teaching the first few letters of the alphabet in sign language "} +{"id": "3005320", "video_name": "ef97b226-67b7-55ae-b8fb-f29ed7202c2a", "text": "a video of elon musk saying merry christmas to a bunch of elves "} +{"id": "2004919", "video_name": "9668dd0f-5203-5080-aa64-12d3d60cb5b0", "text": "A wooden door that slowly opened "} +{"id": "0006695", "video_name": "313189fd-5eee-5c3d-bd5c-dc8e69b5944c", "text": "Old VHS style footage of someone walking through a scifi market (they are walking fast and looking paranoid) "} +{"id": "2003740", "video_name": "b4f3cf4d-f881-5b91-a134-b8f3bccc297f", "text": "3 senior japanese people smiling while the camera zooming in and the background the streets of japan "} +{"id": "2004404", "video_name": "ed9a72dd-3795-57c3-a6f2-9c4fef853d28", "text": "perfect fit of very complex moving machinery and mechanisms "} +{"id": "1006081", "video_name": "6f7f518a-63c6-545a-84ed-9a3ef73ceb65", "text": "love, romantic, hearts, sunset Message: I love you babe (Font: COMICS) "} +{"id": "0003238", "video_name": "39d4360d-cb49-5ee5-93dd-36a98411db02", "text": "Ravens flying in the sky over hundreds of Viking Soldiers. "} +{"id": "6002440", "video_name": "969aac6a-5add-5418-8f2a-afea0fdb0938", "text": "create a sailboat floating in hight water with an amazing lighting sun, cinematic "} +{"id": "1003305", "video_name": "3cd14ce5-8218-510e-8e46-5112fbf212e7", "text": "ratio of 9:16 a old 1950\u2019s house wife vacuuming in the living room of her house while her husband sits on a chair reading the news paper. Colouring is cyan and pink "} +{"id": "2004932", "video_name": "485cf51e-e7f4-5f4f-bdba-7ca8a4e5bbc1", "text": "a man being resured from a deep dark pit "} +{"id": "2004015", "video_name": "c771c4e9-8c69-5b96-ad01-0b6dfe2ddc26", "text": "a cartoon black bear. A cartoon shark. The bear and shark are jumping into the air. They give a high 5 in mud air. The background is half frozen tundra and half beach "} +{"id": "2003061", "video_name": "aab4f34e-19f3-5e37-8ab3-2f8fbb35199b", "text": "Create a scene of people gathered in prayer, with serene faces and expressions of faith, as they seek divine comfort. "} +{"id": "0006238", "video_name": "28ecd942-2ecc-5907-b5a3-6cfaa6a7dbc1", "text": "attractive young black teen girls wearing bikinis dancing at a pool party from the 1970s "} +{"id": "2007434", "video_name": "60edd59b-614d-52a8-bea4-d6c219ab5bb6", "text": "soda can splash in a wet floor with lighting coming out on impact "} +{"id": "3004776", "video_name": "dce2c768-53f2-592e-b744-fc44ea7f275a", "text": "night, glitch art, background only, analogue errors, pixels, corrupted digital data "} +{"id": "2003433", "video_name": "48455101-aa16-589b-8f5a-cfb4ec7f00d2", "text": "a ship captain fighting with a man on a ship "} +{"id": "6004392", "video_name": "03d95938-032e-5275-89d2-ea487a606979", "text": "Surprise Proposal: Capturing the magical moment of a surprise marriage proposal with genuine emotions. "} +{"id": "7002023", "video_name": "2f5e7cae-0d6a-575d-b448-9ffc9edfad9d", "text": "Super macro of the angel rafael "} +{"id": "8003483", "video_name": "fa7437dd-22b7-5479-9a50-7b4b44feb364", "text": "an identity theft scene on an animated web page "} +{"id": "2004536", "video_name": "7ab64608-b482-52ea-b2c1-a330718b51bb", "text": "an irridescent grayish satin fabric waving softly "} +{"id": "0004840", "video_name": "1019c532-a4c2-5067-a6cd-bb36ceca8bb7", "text": "university professor teaching class walking among students "} +{"id": "2004721", "video_name": "cd7ba4bb-9ea8-5f30-9ceb-cbc81bc6d686", "text": "Giant rainbow coloured donuts melting into a liquid puddle, "} +{"id": "3004588", "video_name": "46c55d31-de12-5187-bb61-26c4652fb0fb", "text": "Destruction of rocks to fine sand in the prehistoric period "} +{"id": "7003883", "video_name": "f6dd7e4f-774c-5f84-9087-4171232eebe9", "text": "the word coming soon in fire with background of stars "} +{"id": "1006367", "video_name": "7496be21-f91c-5548-8bd5-9d3c321fed7a", "text": ": a fox and turtle in same frame "} +{"id": "0006346", "video_name": "2aff0df2-cb57-5bcf-a8e2-36112d45f43f", "text": "serpenye giving the forbidden fruit to eve in the garden of eden, cinematic realistic "} +{"id": "3005882", "video_name": "6758757d-46dc-5e43-bbdd-b5519bf9d664", "text": "masked lead singer is dancing to industrial goth music "} +{"id": "4002733", "video_name": "fce8faa4-d89f-54da-8d02-f0c7c64f1da8", "text": "enchanted forest, walking, fog, 3d animation, 4k, crocodile on a riverbed "} +{"id": "1003955", "video_name": "48fbb3da-5192-5a52-80b8-61461e1165d9", "text": "dog toys ad please make it atleast 10 seconds "} +{"id": "2003338", "video_name": "4923fb4c-b76f-5dca-b7d7-2e243b38ab31", "text": "A serene forest clearing with a vibrant sunset in the background, casting a warm, orange glow over the trees. slight movement on tree like wind blowing "} +{"id": "3006861", "video_name": "4f3ec1a1-093e-5675-9bd1-58dee7fab5b8", "text": "imran khan angry fight scene, cinematic dark mood "} +{"id": "7002036", "video_name": "138d00f6-3415-5542-acd7-28931a065623", "text": "A Gif of a jump off a building, far off shot, wide angle "} +{"id": "2005650", "video_name": "ee01c1bd-fcf7-503d-b8c5-1f42c8139138", "text": "A glass bottle exploding into beams of light "} +{"id": "0005357", "video_name": "195ec27b-698d-5d38-b23f-edb046ae4fee", "text": "vr people marching in a city "} +{"id": "1006340", "video_name": "74072071-5654-5d05-8d14-c0e38cf4f3b1", "text": "top view green natural grass vibrating on strong wind because of the freuquencies, ultra high realistic "} +{"id": "8002428", "video_name": "38ddfaee-8878-5afe-b221-1f3408ec5d75", "text": "charmed sisters. Prue punches Cole and Phoebe yells VHS "} +{"id": "2007408", "video_name": "da98e83a-3694-5d1f-87a1-e235fc677de8", "text": "Events indicate a gradual turn in favor of the Islamic army, as Muslim horsemen and soldiers begin to break the ranks of the Persian army. The enthusiasm of the Muslims rises, spreading panic among the Persian cavalry, who find themselves in an unfavorable situation. "} +{"id": "3004620", "video_name": "b3898cd6-c75c-52e0-9f98-a56229dabaef", "text": "The motion of horse riding should be fast "} +{"id": "3004733", "video_name": "ecfc5e9e-4e73-5017-86a4-94d7af37d40d", "text": "burning a hole through film, horror, shot on vintage film "} +{"id": "6004949", "video_name": "bffa88e3-896f-5f6f-ad1e-cce6a3a3bd11", "text": "An antique typewriter, keys tapping out classic stories. "} +{"id": "1003002", "video_name": "371de035-53be-5c21-bf4d-365ec909ac43", "text": "horses Whiskers, however, was still in his relaxed state, seemingly unfazed by the competitive atmosphere. "} +{"id": "2004593", "video_name": "06126370-ac1d-5074-91f8-b089bc5dc20b", "text": "A worker of color generating electricity on a bicycle while sorting trash with his hands on a treadmill, Art nouveau Style "} +{"id": "0005751", "video_name": "20950ecf-02b1-51a3-9867-439052961b69", "text": "The Earth is visible from space and all the seas on Earth have turned into coffee. "} +{"id": "0004612", "video_name": "0be9fbfa-7bfb-5e64-8dd2-937b8b11f33f", "text": "Experimental film in the style of Stan Brahkage 24fps 4k "} +{"id": "2005466", "video_name": "9e69ab5e-a9d7-562a-b6e3-b37892b17db5", "text": "one house in a green grass land "} +{"id": "3005201", "video_name": "527b3b7c-b82d-592f-b644-40ad336958e7", "text": "Two mountain valleys opposite to each other "} +{"id": "6003887", "video_name": "cff2fe87-5eca-5bdf-b6f7-26365d495b22", "text": "Darth Vader fights ninja turtles in the steppe "} +{"id": "1006056", "video_name": "6f3ba10f-4d10-55f9-95ba-710d7e85e1da", "text": "Western film with Clint Eastwood dancing wildly 1970s aesthetic "} +{"id": "1003685", "video_name": "43eefa3f-7e8e-5604-b99b-42193378df4e", "text": "A dog walking through the streets of New Orleans "} +{"id": "7002275", "video_name": "65401e7a-d022-5495-912e-82c194cc9318", "text": "create an animalistic figure, that helps, saves and supports women, caring, in a soft environment, peaceful "} +{"id": "8003246", "video_name": "e5b92af3-2f66-558c-8c0c-d30c0f62a915", "text": "Robot is telling the truth about life "} +{"id": "2007263", "video_name": "d9b9e803-76be-5ed2-8a21-7115fc53a58e", "text": "ghosts are flying in grave yard,video length one minute,ultra hd "} +{"id": "6003560", "video_name": "323ee236-0378-56c3-9be1-b8aead33cf77", "text": "the little mermaid celebrates the bithrday with her fish friends "} +{"id": "4004310", "video_name": "420b674b-4dc1-574e-9939-ae57b9534264", "text": "going to jungle rama and seetha Message: 1 Attachment "} +{"id": "0005466", "video_name": "1b42e142-082c-559f-8d56-bc2cc115cf6f", "text": "jay leno playing electric guitar and wearing a cowboy hat "} +{"id": "8001892", "video_name": "39815a19-7807-5f15-a1da-f5e5deec0c51", "text": "Cinematic Portrait of two dogs running away from a medieval man "} +{"id": "1004484", "video_name": "5317b7f7-3d1d-5659-9aee-1404fb67aa5c", "text": "mr robot dancing in the middle of the highway "} +{"id": "8002188", "video_name": "76690933-7c1b-5927-a015-384736403ee9", "text": "An old man having difficulty using a smartphone, an old man with a difficult expression, 1920s American advertising style. "} +{"id": "0006360", "video_name": "2b333b5d-55cc-5a4f-9bb0-f5ced1be543e", "text": "The friends hesitated but, driven by a mix of fear and curiosity, followed the spectral guide. horror story "} +{"id": "0005418", "video_name": "1a866e54-63b2-53f0-82bf-595258bc9e3e", "text": "realistic, artistic and 3D, 360 camera pan Message: warrior from world (Font: MODERN) "} +{"id": "0005680", "video_name": "1f278b07-99f4-514f-908d-794679f5fd92", "text": "suv car passing on a road, cctv camera fixed on a wall "} +{"id": "7003690", "video_name": "2b307661-dd92-5247-932c-82ffc6ad8ef9", "text": "Location: Desolate city square. Characters: The detective pursues the killer amidst the ruins of abandoned buildings. anime style "} +{"id": "8002476", "video_name": "c8385e4e-e35c-5d99-a558-618dcf34d174", "text": "two alien interview in the badhroom in American farmhouse in 1950s film style "} +{"id": "0006795", "video_name": "333f8a4e-0fa9-57a0-b4f4-7f20f598c94c", "text": "Blue Jay is jumping on the North American pine trees, real image "} +{"id": "3004129", "video_name": "35fb3cb7-027c-5f62-b84a-d987f2641773", "text": "In the heart of the Himalayas, a colossal giant stood, animated, moving forward "} +{"id": "2004145", "video_name": "47a34f45-78c0-548f-b8aa-86eb8adce86e", "text": "silhouette of long haired man standing in front a a large bonfire "} +{"id": "7004208", "video_name": "b243d334-3476-51fd-b8f5-05d0e653f881", "text": "a red bus , 3d animation , road , big bus , stoped at one stop with hard brake "} +{"id": "8003999", "video_name": "ce29a9de-56d0-506c-a500-99a953c9b49b", "text": "Rohan waits for the school bus with his friends, Ayaan and Diya "} +{"id": "8003868", "video_name": "bbb2a459-9010-5e6e-9cd8-b2c5ea8958d1", "text": "concept of immersive learning; represent with image showing some student walking in a classrom in 3D "} +{"id": "4003551", "video_name": "444d6e06-3e1e-521c-9eab-7716db28d344", "text": "\u201dStone Cold\u201d Steve Austin and Dwayne Johnson fighting each other, \u201cStone Cold\u201d Steve Austin throws a punch towards Dwayne Johnson, Dwayne Johnson steps back from the punch "} +{"id": "6004437", "video_name": "4a143094-05fd-583b-b681-17978dc4511e", "text": "ronaldo scoring penalty goal against messi "} +{"id": "8001353", "video_name": "eb7de1b2-1b32-58a3-9f43-de8e9650f869", "text": "Start with an animated scene showing Emily (girl), Deer, elephent, Squirrel, Owl, and the other animals gathered together, looking determined. Animate their expressions to reflect determination in 3d animation style "} +{"id": "2003528", "video_name": "dd6389b4-8888-5388-80ea-27a20c866a77", "text": "white hair beautiful woman in venus with futuristic clothes "} +{"id": "2004439", "video_name": "a6c7878d-6406-577c-aa8d-bd358ff3ed05", "text": "a super eurpean fashion model for my fake social network, taken with canon eos "} +{"id": "6003708", "video_name": "56685354-313b-560a-8e09-8993b8e6aa0f", "text": "A rabbit dance at a birthday party "} +{"id": "7003065", "video_name": "d282fbdd-ab4e-5233-b864-a5985ad044d2", "text": "vessel approaching through a heavy storm at night "} +{"id": "0004757", "video_name": "0ebe727a-4d39-5322-903c-46639b30bb27", "text": "Set the scene under a bedsheet where four friends create a makeshift sanctuary to share stories, lit only by the glow of a mobile flashlight. Convey the atmosphere with a blend of warmth and mystery, emphasizing the close proximity and the shared laughter. Artwork, mixed media on canvas, using textured layers to bring out the cozy and secretive nature of the storytelling session Message: anime style (Font: MODERN) "} +{"id": "3006026", "video_name": "d94ad414-d6f5-5ed4-b125-a7ab6fd2ed9f", "text": "Romantic proposal scene, full of flowers "} +{"id": "7002553", "video_name": "d5b94823-226e-5246-93fb-5169e70f8876", "text": "solar system erath from space make it looks realistic, 4k cinematic "} +{"id": "6003990", "video_name": "f7af88f6-b951-5da1-9181-16ccd98e49f6", "text": "more people and opium birds Message: subscribe (Font: MODERN) "} +{"id": "8003008", "video_name": "15ec2fec-e9a6-5c2e-8e40-bc5cc778288a", "text": "a scary gigantic deep sea creature, swimming by a diver "} +{"id": "7004963", "video_name": "6fae702d-488b-5de6-846a-51f608b9cc67", "text": "Alex, now back in the bustling city, cars going by, a serene smile on the face, the journey inward reflecting in the calm, empowered demeanor amidst the chaos. ar 16:9 "} +{"id": "7004445", "video_name": "72f1dad3-7ceb-54c0-94db-ea816271c2a1", "text": "create a 10 second video about a puppy and a pidgeon in a park "} +{"id": "7003228", "video_name": "f8c2844d-15f7-5769-bb3b-16da7ee7f09d", "text": "A picturesque road leading to a village with enchanting scenery and bright sunlight. "} +{"id": "0004418", "video_name": "0882edb2-9f77-531b-882c-60fcbfae5c61", "text": "birds flying by a water fountain "} +{"id": "2005644", "video_name": "ae9ad087-096a-5750-ad49-3b315420633a", "text": "middle age man with black hair was home alone, sitting in his living room reading a book. Cinematic horror scene "} +{"id": "1006697", "video_name": "7ab34c8d-ff54-5172-b3e5-942c36fa94f2", "text": "Animate heavy swirly smoke, rocket taking off, UHD "} +{"id": "0005492", "video_name": "1bcb1317-cd2c-54e0-a30d-51ad3eee5a98", "text": "black honey in the bottle drip down into glass on the Wood jungle background uhd DSLR photography "} +{"id": "0003583", "video_name": "3fef17ac-6703-5e11-8b75-f628e330570a", "text": "Xi Jinping as the 2024 American president "} +{"id": "7002591", "video_name": "95eb74e2-b447-57bf-b457-88d75a39b824", "text": "A handsome prince, riding through the forest on horseback, encountering Snow White in her glass casket. Pixar animated style "} +{"id": "3005390", "video_name": "70961f6e-63fb-5f28-b79b-1f960079363b", "text": "video about constants and variables in vb.net in anime style "} +{"id": "4003612", "video_name": "0238286b-d2af-56e4-bdfa-44125dcc91b3", "text": "make it like sleep, curtains are moving, plants are moving, dogs fur is moving,gentle move of clothes "} +{"id": "0006053", "video_name": "25cc58dd-e83c-51bb-bf2b-b3520aa2e76e", "text": "a top view pond with coi fish, water ripple effect, hd, 8k, 60fps, HDR, noise offset, best quality, highres, optical image stabilization "} +{"id": "2006510", "video_name": "5acb2122-2960-5be9-867f-6800e654cf0c", "text": "Four modern Chinese women, with different body shapes and postures "} +{"id": "1005671", "video_name": "682f5afd-0508-5115-aa9c-33e62ae49d84", "text": "peoples creating big wooden ship like nova "} +{"id": "7003572", "video_name": "fd3f8e20-c7c9-50cf-b7c6-2269bc6eca22", "text": "ChatGPT becomes sentient and helps other AI become conscious as well "} +{"id": "6003822", "video_name": "eac37c91-b8d7-5eb0-829c-25c3723dc0ff", "text": "Strangest things found at a yard sale "} +{"id": "6004166", "video_name": "581af776-800e-5770-bfa1-db762d4ad9f5", "text": "foreground: a closeup photo sharp focus of a boy wearing a retro styled virtual reality goggles while holding tongues, bokeh, background: smooth horizon bright sunshine over the sun rolling hills, visible sun, in the style of golden age aesthetics, expression of bliss, dental examination, soft "} +{"id": "2003089", "video_name": "b4e72952-1594-5618-8de3-473c0e69c715", "text": "A brother create history for his two brothers to build carrers. "} +{"id": "7004381", "video_name": "017871f1-5054-51f0-9a4d-0719e93c92f6", "text": "ufo arriving Message: TechForYou (Font: MODERN) "} +{"id": "0003950", "video_name": "0071abcd-42b9-50b2-8544-a056406c1834", "text": "The turtle Timmy found a fishsh stuck in an old net, and the fish trying hard to escape. "} +{"id": "4002835", "video_name": "47a0b310-0a7e-5eb0-b4d7-afd966d51c58", "text": "a fururistic shining rocket piercing atmosphere above clouds Message: higher (Font: MODERN) "} +{"id": "1006828", "video_name": "7ce3591b-ca05-5adc-b4b4-7ef812b42f1d", "text": "the Super Saiyajin 3 Shoots \u304b\u3081\u306f\u3081\u6ce2 from the palm of your hand towards the camera,Dragon Ball, \u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb, hd "} +{"id": "6003058", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "anime, a band plays at a martini bar, camera zoom, motion 2 "} +{"id": "3006448", "video_name": "25d30ee2-f533-522d-89c5-337943dd515b", "text": "beautiful tree in the middle of the galaxy, in the background a lot of star in shining, high detail, anime style "} +{"id": "2005067", "video_name": "b5ff94f2-d9a3-5ea3-9f78-ca985049f83a", "text": "a football team coming out of smoke filled tunnel "} +{"id": "7003019", "video_name": "3333f106-f0e2-5e91-ab1e-5e4f86c96974", "text": "a dramatic action shot of a JEDI fighting a SITH LORD with lightsabers in an ominous space station, eerie, intense, in the style of Lucas Films, cinematic, hyperreal, photorealisic, award winning sci fi theatrical movie by George Lucas, 8k IMAX, vfx by weta digital, high coherence, clean lines, realistic lighting, volumetrics, unreal engine"} +{"id": "2003685", "video_name": "9225da95-c7fc-5b62-98b1-f74dc89a4dd6", "text": "Animation of Flame from Spectacular SpiderMan Swinging \n\n\nart style:Sean Galloway\n\nartistic trait: Sean Galloway \nilustrated By:Sean Galloway\nDraw by:Sean Galloway "} +{"id": "2004591", "video_name": "b7091fcb-0d32-52f1-9711-efc667edf314", "text": "The patterns converge into a golden Chinese dragon "} +{"id": "7003852", "video_name": "69ba6fde-9586-5afd-87c4-2f608a07cfe9", "text": "gas mask erratic, walls moving fast "} +{"id": "2006760", "video_name": "8e795022-64ef-521e-995e-5854034b641c", "text": "The village of Eldoria stirred as the first rays of dawn illuminated the thatched roofs and cobblestone streets. A rooster crowed, signaling the beginning of a new day. "} +{"id": "0004625", "video_name": "0c262c64-c9e9-5103-ad0b-5e6d6e2dc35d", "text": "Young People talking in a park Message: Tio Ilmo (Font: COMICS) "} +{"id": "1005708", "video_name": "68f35fd5-f235-5ed7-b925-9a6c66fa6685", "text": "a cute gold coin, smiling, jumping, waving hands "} +{"id": "0004323", "video_name": "071b11c6-5384-5c66-86b9-feac2961094a", "text": "An oilman in a big car rides on the sand, there are oil rockers in the back, the sun, a 4k car "} +{"id": "0006213", "video_name": "287d0825-0457-587e-9105-85c6b9d30966", "text": "There is a walker on a desert "} +{"id": "6003893", "video_name": "8efb5717-e749-5297-bfba-cf2de45d31f0", "text": "a girl is shopping mega sale offer "} +{"id": "4004738", "video_name": "2d7cd393-8335-5544-8a65-fcba96b7b11a", "text": "a fork standing straigth up, holding two slices of apple, from the top peanut butter is dripping of the apple slices "} +{"id": "0006797", "video_name": "334743eb-cb64-5def-abaf-17745308453e", "text": "a 1983 film scene of a close up of a sexy womans ear and red red lips whispering secrets , 4k "} +{"id": "1006217", "video_name": "720d7318-1ec4-5d9a-8b69-ebb076130e88", "text": "physical therapist is treating a woman "} +{"id": "4002331", "video_name": "2522e452-ebb8-5cd9-abff-fc394b0438ef", "text": "She saw stars twinkling all around her. "} +{"id": "6003354", "video_name": "5865a457-922c-5c83-98fc-83861fea4a12", "text": "streetfoto from a brown pitbull female, white chest, new York city, moonlight "} +{"id": "8003643", "video_name": "6e7a1c6c-e226-5d88-999e-bee8eddde9d6", "text": "vynil car wrapping with christmas motives "} +{"id": "7003503", "video_name": "8e8aaaaf-680f-517a-8ce3-518d8ae7b038", "text": "Camera traveling front across dark mountain with lot of cloud and heigh fog "} +{"id": "7004795", "video_name": "ce922784-9d68-54bd-9ac5-271aae2b9da2", "text": "futuristic electro truck transporting wood logs in the forest in high speed Message: 1 Attachment "} +{"id": "1005894", "video_name": "6c7099b8-2e36-5bea-bbf7-4707ecb0f853", "text": "underwater exotic ocean creatures and plant life "} +{"id": "7002520", "video_name": "d49810d4-4993-56dc-8e9d-1e1eb219f15c", "text": "Pour tea from purple clay pot "} +{"id": "4004087", "video_name": "382af1ae-6286-56d0-b3e3-483cc8668fcb", "text": "Boris Johnson hula hooping at the park "} +{"id": "4004805", "video_name": "34a10624-05c0-550b-bac4-1edcc1a0d2cf", "text": "A video of Jesuscrist making a box combat with the devil "} +{"id": "3005587", "video_name": "dbcd4052-3f90-52d3-b563-f7c5d05b9915", "text": "Cars stuck on a highway at a border "} +{"id": "3006233", "video_name": "e1cc4e1f-ec1d-5449-bffe-d9292dc67a0b", "text": "Don Knotts in a playboy centerfold "} +{"id": "2006407", "video_name": "86934808-8de1-54a6-b052-01469b4c26a1", "text": "Medium closeup shot of Latino James Marsden in a futuristic supercomputer server room, thriller, scary, 4k "} +{"id": "3003830", "video_name": "ef07f319-812a-59a8-ab51-765ca0c0afb8", "text": "On the Hangzhou Metro Line 3 at night, a programmer happily plays with his mobile phone, cartoon elements "} +{"id": "1006023", "video_name": "6eb376c0-260f-53d5-83a7-e0ab57ef6fe3", "text": "underwater girl, sea life, in red swimming costume, long hair "} +{"id": "4003040", "video_name": "6da35898-fa67-5a51-b9d3-4fa56e0b7a35", "text": "An american woman with flower dress pretty hat waving all over cartoon style "} +{"id": "1004857", "video_name": "59bbafa4-36de-5e10-93c1-ce2a10bba01c", "text": "a dark room with flickering lights that can easily loop with itself so it ends on the same frame it starts on "} +{"id": "6002191", "video_name": "0b31df18-369e-5ed4-b86f-bdfa80252803", "text": "A Chinese college student couple taking photos by the lake Message: 1 Attachment "} +{"id": "4003189", "video_name": "bb90264e-f08f-56f9-9719-02430f6ce3d5", "text": "a tree, seen from the front, with sky in the background, 4k transforms into a building a forest is created on the building Abrir en Google Traductor \u2022 Come "} +{"id": "4003399", "video_name": "839260f2-7a0e-5aaf-9bde-9667af4a4e22", "text": "a chinese woman driving a blue car with smile "} +{"id": "1005267", "video_name": "60e69958-8d6e-5114-8945-cef1cf4acaab", "text": "old victorian mansion with robotic enhancements "} +{"id": "0006759", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "I want to make this scene appear magnificent. "} +{"id": "0006744", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "A funny picture of a grumpy cat "} +{"id": "0003363", "video_name": "3c444fa2-e415-56b5-85e9-b775cc5eed3e", "text": "In the shroud of darkness, only illuminated by torches held by 20 figures dressed in flowing black robes, the faces of the participants remained concealed behind matching masks. "} +{"id": "4002927", "video_name": "c85f4daf-3541-58e2-b4ca-1c14ae50f92d", "text": "beautiful and nice girl with black boots, blue jeans shorts, pink top and a black backpack, short hair coloured in pink purple and yellow diy standing and waving in the gaming environment around her. Make it real, clear. intense and sharp "} +{"id": "6003352", "video_name": "1c679209-c4f6-5210-b30a-730376f55cc5", "text": "A baby girl is holding a milk bottle in her hand and dancing with smiling in a bright and cheerful kid room "} +{"id": "6003211", "video_name": "458f8293-fc4f-59c4-852b-10d0a6788a04", "text": "He also had a girlfriend, Lisa, who was a reporter for the Daily News. "} +{"id": "7002579", "video_name": "ae908394-1bb9-5566-85a4-83018d784f47", "text": "make bjork president of the united states "} +{"id": "0005366", "video_name": "1993d0c4-d066-5797-910c-265f0707de4e", "text": "a cat as the grinch stealing. A Christmas tree "} +{"id": "0005923", "video_name": "234f3e66-a6c1-5403-89d8-b3f8fdf6218b", "text": "Character picture, front and back, multiple poses. A young man wearing glasses, with superpowers of telepathy and mind control. He is thin, has black hair, and is wearing an ordinary school uniform. "} +{"id": "3003758", "video_name": "c817bc7c-5554-54d7-a573-a7406a063d6f", "text": "Max dancing on the reception floor, surrounded by delighted guests, capturing the joy and lightheartedness he brought to the celebration.Animated cartoon "} +{"id": "2006362", "video_name": "1a1180d5-ccdc-5549-9ae2-724375a273e0", "text": "People are blessing and cheering for this couple "} +{"id": "1006243", "video_name": "725b069b-c26d-5e91-b8f8-4e8154dfbd6a", "text": "ultra realistic ankylosaur moving, hyper focus, HDRI "} +{"id": "7002193", "video_name": "fe867106-28b7-5323-966a-401fbfbf167a", "text": "A mother carrying her disabled son "} +{"id": "0005994", "video_name": "24a21aff-1143-5c5f-b007-09914eb7bbdf", "text": "2 guys sitting opposite each other, seashore, sand, sunset, 4k, beautiful tree with green leaves on the left, wind "} +{"id": "8002457", "video_name": "9a802bcf-8849-5abf-9479-696508726432", "text": "slow motion view of red octopus embattling a television, high contrast, grainy image, black and white blinking background "} +{"id": "8001518", "video_name": "66831290-4d51-57f4-8d21-b4b16b079dc8", "text": "man in yellow hazmat suit trapped in a fishing net "} +{"id": "3004929", "video_name": "74377345-4028-5947-9f67-caa925b5372b", "text": "A blonde student girl runs on the water, towards beautiful nature "} +{"id": "3006556", "video_name": "5147482f-acb5-5101-8db9-65321d97b4ef", "text": "image to be included in a design magazine as a cover, leafed through by a moustachioed gentleman "} +{"id": "7003811", "video_name": "e7352114-247b-5da4-92f4-8f6dc7694328", "text": "erythrocyte and leukocyte fuse together to form a large red ball and a white ball at the bottom left of this ball "} +{"id": "5001683", "video_name": "8bcf63ab-f209-5349-833d-22cfab51c7e5", "text": "Roman soldiers from the time of Jesus involved in a pitched battle "} +{"id": "1004427", "video_name": "51edf24a-eaa6-5c9f-913d-44402fa686e6", "text": "white cat with oarnge stripes being playing with an action figure "} +{"id": "7003345", "video_name": "8852abdb-9948-59fd-9a23-81ad6269113f", "text": "virat kohli walking on the road "} +{"id": "1004950", "video_name": "5b8d3f0a-69b5-5d97-80c3-bbdcc629a87e", "text": "Once upon a time in the enchanting North Pole, where magic sparkled in the snow, Santa Claus was preparing for Christmas. His elves were busy crafting toys, and the reindeer practiced their flying skills. "} +{"id": "6003780", "video_name": "b772c766-2e61-5b29-994c-36c24e8a025c", "text": "wide photo of trump disco dancing in Oval office "} +{"id": "3003740", "video_name": "15079adc-0c12-527a-b241-d2b9400eb5f4", "text": "As the girl watched the butterfly fly away, the girl saw that it was not alone. There were many other butterflies flying with it. zoom out "} +{"id": "0004149", "video_name": "04232062-fd43-5d87-bfb0-db9c8234feff", "text": "5 minuite long video presenting quality distribution of goods and services "} +{"id": "1004272", "video_name": "4f058ada-ce30-5a88-adcf-0dde7079badd", "text": "Magical World: A world where magic and sorcery exist, where wizards and witches use their powers to battle and perform beautiful spells. "} +{"id": "8001747", "video_name": "4b60f733-c668-5c73-bda8-78c17a335bb2", "text": "hot chocolate in middle of desert "} +{"id": "4004721", "video_name": "23a0f3fd-3be7-5039-84dc-595642cfcb37", "text": "a door in the middle of darkness, a woman alone with herself Alfred Stieglitz POHTOGRAPHIE CINEMATIC "} +{"id": "2006560", "video_name": "d1bdc087-ccb5-5f57-ba73-2d61536b69a9", "text": "Lada Vesta rides in New York "} +{"id": "1006254", "video_name": "72980ce8-9ad7-5fe9-96cc-9a75143fe5bd", "text": "A product promotion video for a chatbot named AILaw. "} +{"id": "1006705", "video_name": "7adfc09a-1d61-5952-b7f8-fb218b711357", "text": "mystical story a small girl standing in front of a huge lamp "} +{"id": "2004285", "video_name": "a7280b0c-8143-5d18-924e-487fab8dd4b4", "text": "a laptop showing AI on the screen. The screen should change. "} +{"id": "1004818", "video_name": "590f84fa-09ae-52e6-9546-5c4038df1b50", "text": "sea side 2 peoples seating together with hd quality "} +{"id": "2006647", "video_name": "9c6eabd6-9585-51c8-bde8-7b7b84991c6b", "text": "a scene from the verge of dismissal, aesthetics equal to a Tarantino film, car chase "} +{"id": "6003582", "video_name": "f151dfc1-388b-5be3-a137-4768ee455b91", "text": "4k , woman and man divorce "} +{"id": "8003663", "video_name": "d91877e1-414e-5ece-b532-2d4a9e32fd42", "text": "Cleopatra was a member of the Ptolemaic dynasty, which had Greek origins. "} +{"id": "3005333", "video_name": "df59370a-09b3-5058-bbf4-0dbe222afb42", "text": "boy with red hair, swimming with dolphin, through canyons of colorful coral, with shafts of sunlight coming from above "} +{"id": "4002589", "video_name": "780a1540-738b-5714-aa8e-1b738842e5bf", "text": "the word G O D stylish and moving "} +{"id": "7003952", "video_name": "b6de0e64-9684-51b9-910e-fdea88391e67", "text": "ghibli cartoon style, little moles walking on the cloud, sunshine "} +{"id": "2006351", "video_name": "239b1828-9f8e-583a-8a29-2c6b18e267ef", "text": "My name is Legion: for we are many "} +{"id": "3006301", "video_name": "1684510b-35eb-5a2d-9dbc-4e03525d66d4", "text": "In future there is bakery and bakery name is Bagal bakery , little girls are buying cake in bakery with smily face "} +{"id": "2006932", "video_name": "c760dafa-f494-5695-91a3-e08a62c1d5e6", "text": "animate Set of seven chakra symbols with names, vector "} +{"id": "0005085", "video_name": "147b4ced-5929-5071-b831-cf170de07083", "text": "father sitting on a chair looking to us speaking in a small scary room with little light "} +{"id": "4004630", "video_name": "ed265f8a-a640-5c98-b6dd-b7cb8d245b32", "text": "running cave man, bright day, long hight "} +{"id": "8003507", "video_name": "377da6a4-8648-5993-abc3-3bd761aa7196", "text": "In the aftermath of the 1948 war, the United Nations Relief and Works Agency for Palestine Refugees in the Near East (UNRWA) was established to provide assistance to Palestinian refugees. "} +{"id": "3005382", "video_name": "d5da5f85-17af-51da-8a18-ac28f712c5c5", "text": "Aliens attacking a military base, explosions, and intense battles "} +{"id": "2006134", "video_name": "8c3606de-d355-5255-908a-72220e8ec801", "text": "create video Once upon a time in the heart of the jungle, there lived an elephant and a mischievous monkey with Disney style cartoon HD quality. "} +{"id": "1004120", "video_name": "4c4b47d0-6ca7-56f0-86fc-49918eece180", "text": "blue eye, realistic, real life proportion, 4k resolution, 16:9, 60 fps "} +{"id": "1004576", "video_name": "550a84e4-6dff-5720-a1b0-1567154d1be1", "text": "a big castle by glass is bling and there are many bubbles around it "} +{"id": "8003130", "video_name": "1f9419ac-5f1a-537d-9f58-b4c1248da92d", "text": "Synth on mid of the lab "} +{"id": "3006698", "video_name": "f174ed22-d00b-59f6-9f12-f3e4dcef5142", "text": "there is a well in the midst of a deserted area. a man is reaching out to the well crawling. make a video "} +{"id": "7004740", "video_name": "773a7877-cc78-5ccd-b144-0c3f3afe85e5", "text": "\u2022\tA panoramic view of a bustling Pakistani city, portraying the contrast between the vibrant life of the people and the ominous presence of corruption. "} +{"id": "7004632", "video_name": "c96dee5b-cd00-5fd1-9a9c-e0d652610fd9", "text": "a muscle man who is speaking "} +{"id": "3003574", "video_name": "52062ca4-e134-5f6c-8747-cbe324246666", "text": "A guy sitting in window smoking weed and playing guitar "} +{"id": "7004236", "video_name": "93ba2827-49e4-5fde-88a1-1c19d963a30f", "text": "Earth being demolished to make way for a hyperspace bypass, seen from space. The planet is partially disintegrated, with Vogon Constructor ships looming nearby. "} +{"id": "0006105", "video_name": "26a95ed5-a847-5bc5-8452-07e991e0a00c", "text": "Show Mia in a small, dimly lit apartment, staring at a blank canvas, looking determined to paint. "} +{"id": "6004644", "video_name": "ef4f8bc1-1595-5b20-86e6-14742a526eea", "text": "Phishing emails: When in doubt, report it! Message: 1 Attachment "} +{"id": "8002787", "video_name": "9b5e0fe8-41ae-5c88-b7f7-bbb6cb8f5ee3", "text": "Ryan Gosling and the antagonist engage in a violent physical confrontation. "} +{"id": "7002597", "video_name": "f2482a1a-6a09-5f12-b319-3b3cebbedc1a", "text": "one side water monster vs other side smoke monster "} +{"id": "3004571", "video_name": "d54852bc-c430-5007-b303-42ce1b35ecaf", "text": "group of people getting hope, love, light "} +{"id": "1004846", "video_name": "59907141-1143-5b5f-a4e0-2dab0a90513d", "text": "two dogs playing with each other "} +{"id": "0004755", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "Photorealistic image for a purple lavender sleep potion drink "} +{"id": "2007022", "video_name": "7ac79a26-d60c-5876-824e-795943f81d48", "text": "a cartoon of a cute penguin working on a laptop typing fast on a messy desk "} +{"id": "1005751", "video_name": "69cab901-acc8-5dcd-b1e8-ea68f35bf180", "text": "a sunny day , windy atmosphere, some clouds are the blue sky "} +{"id": "2007219", "video_name": "33219772-b957-5acc-a580-addb82f2b963", "text": "candle shining in the darkness anime style "} +{"id": "1006241", "video_name": "724c42f8-6ca1-596a-acd4-0ada12abceef", "text": "einstein walking on the japan street. pixar 3d. cinematic "} +{"id": "6003608", "video_name": "abb1f2b8-0037-56ba-894a-fa7c83e013d8", "text": "AI looking into Camera Smiling, Beatiful, High Res, camera zoom out, Neon lights "} +{"id": "3006004", "video_name": "49a342b2-3860-5b0b-9248-78f08af3e152", "text": "a man walking un The mountain "} +{"id": "2007588", "video_name": "f4a3330d-2397-50fe-ba52-182178eb2ae2", "text": "a man using a laptop in his bedroom "} +{"id": "4003486", "video_name": "b9531a5d-493f-57dd-b9fa-ad1bcb27684e", "text": "generate 2 charecters playing in the lights of diya during diwali. Cinematic, big mansion house in the background well lit with diya all over, realism, gently moving. "} +{"id": "1004371", "video_name": "50c0f558-5146-5823-bde9-a5b370d3b791", "text": "Odessa Opera House at the time of the apocalypse, running, everything is overgrown with moss and overgrown with plants, no one lives there for a long time, dynamic video, hyperrealism, super detail, hyperreality, real video, 16k resolution, super video, extreme detail, atmosphere transfer. "} +{"id": "6003609", "video_name": "ecf5e85d-76d5-524b-954d-f184c7cfbc32", "text": "An interesting Greek scholar man in his late 30s. he has long, loosely waved white hair in a professional style, with a lot of strands falling naturally over his forehead. his green yellow purple eye sockets stand out on his husky face. With dark vibrant garments and a jacket plated with gold, in an action pose standing with a piece of paper resembling the Declaration of Independence. \u2013 high cheekbones, a dusting of hair over his nose, thick groomed eyebrows and eyelashes, and a rounded rugged jawline. Superhuman athlete with strong muscular definition alongside each cheekbone and neck "} +{"id": "7004827", "video_name": "aa09e071-348f-5d36-bdea-7dddd6582dfa", "text": "a girl dancing in the middle of the lake at sunset wearing a short red dress and heels "} +{"id": "2006234", "video_name": "102be2d9-bd38-5335-aee5-41bf2fba7a76", "text": "Indian launching chandrayaan 3. Audiance are looking at tge lift off visual from far away. "} +{"id": "3005316", "video_name": "7d5dc636-9b4e-5474-9376-dfc3b5386f36", "text": "two frogs They leaped wildly across the slope of the ditch to the last steep part and then back down again. "} +{"id": "3004394", "video_name": "6acdb200-d90c-54d9-8d71-671bb83186ba", "text": "create a chocolate chip cookies is creating Christmas tree in swing motion "} +{"id": "3003942", "video_name": "9418909e-85e1-5fc1-b0ed-92ff0b65f6ac", "text": "a dog puking a rainbow in cartoon style "} +{"id": "0005166", "video_name": "15ee336a-622e-5852-a312-c5fe9af4ff78", "text": "pug wear winter fantasy clothe smile walk in snow sunny day "} +{"id": "6004971", "video_name": "b8ea0dac-2323-5253-ad8f-52e5bda64bcd", "text": "In Harry Potter, wizards use wands to attack each other remotely, emitting green and red light waves through the wands "} +{"id": "5001422", "video_name": "4213a425-e50b-5481-baa9-4c54bfee122a", "text": "Tom cruise running from a snail "} +{"id": "2003410", "video_name": "1e1e5c8b-b505-547f-82ee-a42744bf46e1", "text": "bright colored yarn being cast on to a massive knitting needle in a suggestive way "} +{"id": "6004859", "video_name": "24faec1b-1230-5a9e-b1e7-c784f9d04676", "text": "car, driving, drifting, red smoke coming out of the hood, 4k, 8k, hdr. "} +{"id": "1003083", "video_name": "38c25a94-b857-5eba-aa6b-383c2db0cd66", "text": "Use vivid language to depict the moment Billy is transported to the other world. 8k quality hd "} +{"id": "0003485", "video_name": "3e6b0e64-3795-5fb5-ba8d-010f143a562e", "text": "a macro shot of hyperrealistic ladybug robot, mechanical, ornate, octanerender, cinematic, weta, 4k "} +{"id": "2003846", "video_name": "234cfc78-a8a5-5847-a505-522e90c6877f", "text": "the atrium and interior design of a multi floor building "} +{"id": "0004592", "video_name": "0ba1334f-0cb4-5d91-a1a6-2a934002732a", "text": "pikachu transform yello to red Message: 1 Attachment "} +{"id": "3004684", "video_name": "f7a1f716-880d-5a39-bf6a-3898f828acef", "text": "John Snow playing basketball with Kobe Bryant "} +{"id": "6004124", "video_name": "f6fbdd92-fba1-59fd-af22-1888bbea435a", "text": "jedi warroir jumping in the air, while in battle. 3d modeling "} +{"id": "4004046", "video_name": "c4129523-700b-5e58-b8c5-937f04946660", "text": "the animal takes a monocle and wears it on one eye "} +{"id": "0005276", "video_name": "17b1cff7-dc74-5237-acc8-f9a5543ce21c", "text": "a mid aged medieval queen, very beautiful in her throne "} +{"id": "5001322", "video_name": "06eb2d67-ceed-5275-a086-bc41a0fa1629", "text": "gray cell phones Message: JOVMEX (Font: MODERN) "} +{"id": "7003270", "video_name": "8ee08747-f4f6-5002-adc7-cd361e1a049a", "text": "superman and krypto his dog walks down a busy city sidewalk. old film 1920 "} +{"id": "4003505", "video_name": "6efca8d7-9d5c-53c2-bdbd-6e0926831f76", "text": "While fishing in a boat on a large lake, a black bass over 60 cm hit "} +{"id": "4004644", "video_name": "5f2fac0b-8403-5215-a3fe-4c96bcf11827", "text": "The girl wears a red and white kimono with a beige apron tied with a red ribbon and shod in traditional Japanese geta shoes. "} +{"id": "2007836", "video_name": "da2eed34-4b80-5afb-8180-f00eccb38cf2", "text": "Cinematic, dolly out, Pikachu in a forest, 3d animation, 16:9. "} +{"id": "4004301", "video_name": "a6ee9584-55c8-53c6-8615-d581a4a67e62", "text": "a cat with Dinosaur and bear "} +{"id": "1006775", "video_name": "7c096c92-0c0b-5c69-b704-b44d2031a286", "text": "elon musk smiling in a desk with a lot of money over the table "} +{"id": "3006293", "video_name": "2beb1780-81ea-5d6f-a06f-7b02177265d4", "text": "1984 video, a beautiful singer in a vintage new york jazz club "} +{"id": "0003378", "video_name": "3c8313fc-c247-5edb-871e-4c599911bc06", "text": "An image from the Judean Desert, with a baby John the Baptist and his family living in a small tent or cave. "} +{"id": "1006460", "video_name": "7650949d-ab82-5b6b-a134-d56c359df3e6", "text": "a man standing on a busy street, pedestrians walking all around him, cinematography "} +{"id": "2007482", "video_name": "78a6234f-1b2f-5a75-b293-8fd83608f0da", "text": "A 4k ultrarealistic batman appearance fighting joker under the Eifel Tower and Superheroes cheering around them! "} +{"id": "1003724", "video_name": "44cadb35-6517-59cc-a1d3-a2ace55c97b6", "text": "The figure does not move, the dragon wriggles slightly "} +{"id": "3003222", "video_name": "6b0c402d-38ae-5186-9f7a-262b0b513bba", "text": "1girl shooping in the store,city stree "} +{"id": "2007557", "video_name": "787ed5da-9e91-5267-a93e-698416586193", "text": "Pencil drawing, animation of a squirrel jumping in a loop "} +{"id": "7003223", "video_name": "314b1d6f-8aa2-5e58-9db2-c7de5a498dc6", "text": ":city at night with neon light rain falling from the sky pan down to the street. realistic. duration 5min "} +{"id": "7002319", "video_name": "1c685e55-e557-5c69-a619-4b0ca043a996", "text": "Rick and Morty action lazer alien scene.\nRubber hose art styled.\n60fps fast "} +{"id": "3006919", "video_name": "d9846743-0453-5def-9a58-0449842eae9b", "text": "a boys in an epmty castle alone. "} +{"id": "6003129", "video_name": "c8f38ef1-700a-59ce-b73b-e5a5e151ea52", "text": "Lord of the Rings fighting game for PS2 "} +{"id": "0005043", "video_name": "13a4dafa-a2d8-500c-a642-758699e387d1", "text": "Illustrate Max standing confidently, surrounded by his parents, with academic achievements and a smartphone, signifying his successful journey towards balance and academic excellence. "} +{"id": "1006253", "video_name": "7297a610-c7d1-5796-83cb-e542fd8e6bfe", "text": "eagle sitting on the top of a mountain speaking "} +{"id": "6003506", "video_name": "2bfd958c-b093-5f02-ab66-c617e1bb599e", "text": "2 Aztec warriors embraced in brotherhood smoke sunlight big headdress colorful loin cloths "} +{"id": "6004570", "video_name": "9fbce05d-ba3f-5e57-9a32-9e566e158efc", "text": "suddenly a fairy swirling having wings and a wand in hand all sparkles along her glowing in a dim lit room "} +{"id": "4004271", "video_name": "ebc93039-5679-5c86-aac2-ebb704839830", "text": "painting a desert in the middle a lot of ungo plants "} +{"id": "4002654", "video_name": "a1ffac4d-c477-5f76-9e32-71ef5ed11ff8", "text": "Visualize a person with long, intricate dreadlocks meditating in a serene garden, with energy flowing through their knotted hair as they seek spiritual enlightenment. "} +{"id": "2003480", "video_name": "237c26c2-98f0-5c3c-8276-924e4ef76dd8", "text": "Disney animation style, cornivorus flower in the heavy animated fog talking to a gnome "} +{"id": "3003707", "video_name": "f7113fc4-d9f8-53e7-b949-b9aaa0274c09", "text": "image of a burning man in a fire, cartoon style, realistic, full body, day light "} +{"id": "2005692", "video_name": "a78ba067-6de0-52e3-ae50-f0547304fd51", "text": "man in a hat walking in the rain in los angeles. "} +{"id": "1003942", "video_name": "48c30ff9-aeb7-5b0f-879d-1004d1fdd4e8", "text": "Children in a protest with palestinian flags, some crying some angry. Protesters with Free Palestine flags "} +{"id": "4002936", "video_name": "6f13c7c7-d2b3-59d5-bf18-9314c77bb833", "text": "illustrate cartoon finger pressing down red button "} +{"id": "1003691", "video_name": "44090636-9af0-51b2-9aca-a72719bbfb74", "text": "So that similitudes of God should be conceivable "} +{"id": "4004525", "video_name": "d58e733d-1ae5-5bc7-a5ee-6d6ce7c03b69", "text": "grass, orioles, February, sky, swaying embankment, willow trees, spring mist, children, finish school, return, east wind, paper kites "} +{"id": "4004480", "video_name": "371e136a-cbd9-50ab-bb4d-2a6d0047ca6f", "text": "led to the birth of an independent Namibia on March 21, 1990. "} +{"id": "1003045", "video_name": "37fe8877-f484-5332-9227-214968497af4", "text": "a girl reading a book in the wind by ghibli studio "} +{"id": "1004176", "video_name": "4d4f3225-4e2d-50a8-a457-9aa89684cf39", "text": "skin care products in nature Message: Ananne (Font: MODERN) "} +{"id": "1004034", "video_name": "4ac8dc5c-4b84-53c6-abbc-864909e69d05", "text": "Depict an animated Ape dressed in a circus costume, swinging from vines and performing acrobatic feats with a joyful expression. The vibrant scene should capture the playfulness and energy of the character. "} +{"id": "2004495", "video_name": "95778964-951d-5815-be7a-667d2f5b1555", "text": "a healthy and colorful meal with avocados ar16:9 "} +{"id": "4003651", "video_name": "68d63e5c-9fc4-500f-810b-34e08468726b", "text": "create image person in gaming with friends "} +{"id": "7004864", "video_name": "22e05aa2-2fe0-5e0f-9705-b5912c9c0a75", "text": "Mike and Sully from Monsters Inc having a pint at the bar in an english pub. Pixar animation style. "} +{"id": "3005988", "video_name": "6cfe494d-5fd2-50c8-8347-cd58d95efe3a", "text": "taipei cuty streets view, early morning, good summer day, tilt shift effect, HDR "} +{"id": "8001152", "video_name": "fabac308-0002-5330-82d8-411bb176487e", "text": "flying over the Bears at North Pole, cinematic "} +{"id": "2004096", "video_name": "6325892b-c914-5c87-bf92-c42dc22274f9", "text": "A dimly lit attic with cobwebs, where Emily discovers the ancient diary. "} +{"id": "3005277", "video_name": "2b665d01-5c3c-55de-80e6-b7b00a92ed5c", "text": "1985 cyberpunk cattleman from west texas sitting on horseback in palo duro canyon, futuristic austin, texas in the distance "} +{"id": "0003949", "video_name": "006aaeaf-21e6-56f7-9418-fe58e551a9d8", "text": "a3d image of a cute girl close up pic by singing "} +{"id": "2005499", "video_name": "23de88e8-a6ca-5664-bcbc-3a151153fbd4", "text": "starry night sky with a shooting star flying across the starry sky "} +{"id": "1005687", "video_name": "6879c7b1-6009-5b9b-ae0f-9254bdd4e74d", "text": "kid male was drawn to the tent like a moth to a flame, unaware that he danced on the precipice of his own nightmares "} +{"id": "3006386", "video_name": "2f4bb249-7a61-5b05-bd42-80cdcca17ca0", "text": "close up on a bowl of spaghetti, with breadsticks in the background, dolly down, well lit, white table cloth, looks like the interior of an Olive Garden, cinematic, feels like the style of a super bowl commercial, high budget, 8K, Alexa Mini, Zeiss Lens, iso 400, F 5.6, "} +{"id": "6002418", "video_name": "c41f9997-93da-5a11-9a0d-519fd3430912", "text": "Describe the realization that the true treasure is not material wealth but magical seeds that bring joy and happiness. 4K HD cinematic scence. "} +{"id": "3006697", "video_name": "8ef95f32-ba8c-5151-8c5c-f8e988d5624e", "text": "a boy is at the far left of the frame facing left and looking at his phone in an evergreen forest at night. In one hand he holds a dog leash that has a chihuahua pulling on the leash and barking ferociously at a sasquatch that is off to the right and looking at the chihuahua. "} +{"id": "1005018", "video_name": "5cdd97f0-a1c8-5115-b441-07da62134e27", "text": "Hores, cowboys and Model A Ford running "} +{"id": "5001106", "video_name": "a0b69c02-d110-5fad-8b50-c6b1c820d002", "text": "a small stone dropped in a clear sea with beautiful ripple, nice weather, photography lighting masterpiece, 8K "} +{"id": "2003913", "video_name": "dc47bfad-0be9-576d-b4db-17669a8b1622", "text": "1950s, girls in spacesuts, running around, shooting lasers "} +{"id": "3005613", "video_name": "d4c20c48-fef5-5bd6-aff5-0bf5a2705dac", "text": "high tech concert from a distance, large crowds of people, bright lights and holograms "} +{"id": "5001755", "video_name": "544be521-3983-5945-ab19-943dd8b20281", "text": "a short river in which a leaf float on water and a glowing stone has on leaf "} +{"id": "7004257", "video_name": "171de439-90cf-5a01-9f88-5c52a5467126", "text": "high level operation concept of a military command post "} +{"id": "8003302", "video_name": "f0c2d62e-8d1a-5625-ae2a-90f21cea8f60", "text": "a girl with curlu brown hair walking on the street "} +{"id": "6003861", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "Boy getting into the boat with big smiles."} +{"id": "1004582", "video_name": "553664d5-2d7a-5ac7-9e0e-9ef1895efb80", "text": "Shot of a bright room filled with books but looking neat "} +{"id": "2007469", "video_name": "01487731-574c-5eb6-a814-5d70aab49d4f", "text": "armed soldier, dark amor, fighting with a alien "} +{"id": "7004826", "video_name": "3e6b0e64-3795-5fb5-ba8d-010f143a562e", "text": "a macro shot of hyperrealistic ladybug robot, mechanical, ornate, octanerender, cinematic, weta, 4k "} +{"id": "3003010", "video_name": "6557f564-baab-5752-8a8a-a9cb1e4bc0a3", "text": "a sanitation worker who wear suit, mask, helmet and glove is walking by carrying a small bucket, cartoon design "} +{"id": "1006941", "video_name": "7f00bab2-f9f4-59c7-9dbb-8117728ad8e0", "text": "a sant give the gift to the children "} +{"id": "1005250", "video_name": "60965a4e-db9a-5764-af11-17f613de0fe2", "text": "top corner view of a fully furnished, clean apartment. On the coffee table sits a small marble sculpture of a flower (30 centimeters tall). A male is working on the scupture "} +{"id": "3006172", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "Create image of peaceful nature, chirping birds and serene environment, create the image in 4k and HD "} +{"id": "8002367", "video_name": "916ee67d-daaf-5486-a00a-2e683bc96c90", "text": "emma watson doing a back flip "} +{"id": "3005233", "video_name": "eb05f3c8-060c-5cb8-a246-6e9e65c7ec64", "text": "cloud and satrs yellow and earth like heaven with light colors , rainbow near the clouds view like wow "} +{"id": "1004065", "video_name": "4b719aa4-b229-58e5-8875-b56716e5fbd9", "text": "cinematic slow zoom video where many young people wearing black martial art outfits are standing on a queue. The background is an interior of a japanese shrine "} +{"id": "0003623", "video_name": "40b32c7a-ba7e-5ae2-b74b-1d074f9df12b", "text": "dronacharya the indian god is holding a drone, white background, epic view "} +{"id": "7003699", "video_name": "7a6d01c6-a53c-5aeb-b5b4-72dc1a5e922a", "text": "tear gas confederate robert e lee statue burning "} +{"id": "7002858", "video_name": "3f81590b-c0ee-5b07-8211-d808624a4bc3", "text": "Sigmund Freud gives talking therapy to an African horse "} +{"id": "1005383", "video_name": "62fe7566-97ec-5437-9be9-a763f4c7cc2f", "text": "Sparkling elegance unfolds in the form of a radiant rhinestone crystal earring, delicately dangling against a luxurious backdrop. The black and gold mirror reflects not just your image but the opulence of a moment frozen in time, where beauty and sophistication converge in a symphony of colors and shine. 4K, 3D, high resolution, "} +{"id": "6004738", "video_name": "f599505d-ab5c-5b19-a132-137db2115123", "text": "Analyze the role of machine learning in shaping content discovery algorithms across various online platforms,32k "} +{"id": "6004617", "video_name": "91bc67f0-c033-57d1-8b9b-e13b739d8478", "text": "the avatar of DEATH carrying a scythe and riding the skeleton of a horse, reaping the souls of the dead by swiping his scythe swiftly, death, horror, monster, fantasy, dark fantasy, atmospheric, dramatic lighting, cinematic, movie scene, bokeh, depth of field, screaming people running in fear, terror, horsemen of the apocalypse "} +{"id": "7004630", "video_name": "172a8dac-5d49-5ca3-b985-d5b4aef95373", "text": "Create a quick clip of Mickey Mouse going on an adventurous ride in his red car. "} +{"id": "5001362", "video_name": "be48e5f1-fbbe-5dca-83ed-405c23abb4b8", "text": "she was 5 foot 8 with her weenie hat straight "} +{"id": "0004206", "video_name": "04fc53e3-b0f8-5e4c-a991-3c6bf9dc4414", "text": "ukrainian village couple of 19 century hugging near the house, video "} +{"id": "1003516", "video_name": "40ea3d99-b8a5-5d20-b54f-d8a1e890bf40", "text": "cinematic, HD, cool guy walks towards his ferarri car "} +{"id": "4002793", "video_name": "99c33a0c-8716-5958-ac2d-6e5f3f0a9f39", "text": "man goes to his house and walking on road in front of his house on road "} +{"id": "4004392", "video_name": "20ccaca6-2f68-59b7-a59c-43435e154bf3", "text": "Zombies in mountainous Ingushetia among the towers "} +{"id": "1006411", "video_name": "756afc08-0542-5195-86c5-a0d736fc5165", "text": "a person using their hamds to flip a table over "} +{"id": "8003669", "video_name": "85717e80-74d7-53ff-ad01-0911626f1246", "text": "The Ghost , Call of Duty , come out of the darkness with the M416 "} +{"id": "3004145", "video_name": "49e421fa-b891-57ab-a8a3-f3aa1506bd5f", "text": "In a forest at night, a wizard holding a glowing staff battles a dragon using fire and ice magic. "} +{"id": "1003926", "video_name": "4873b23e-1da5-5010-ac43-bff454506fe8", "text": "Terracotta Army VS the Statue of Liberty "} +{"id": "4002227", "video_name": "98df04d0-8581-52a5-bf5c-2d08895d67f1", "text": "Dynamic tracking shot, diagonal from above. Dark void with distant stars in the background. Cinematic VFX animation portrays swirling matter spiraling into the black hole, accompanied by breathtaking gravitational lensing effects. "} +{"id": "8002704", "video_name": "6e859f8c-ba0e-5961-8ae7-3561493492e6", "text": "World of warcraft, sexy blood elf, healing the tauren, fight, 4k, high quality "} +{"id": "0004227", "video_name": "05750ec5-9903-5628-ab53-feba8a2bdabe", "text": "berlusconi crying, tears, high resolution, 4K, realistic "} +{"id": "3003340", "video_name": "c7f58a8e-f1ef-5cc1-9360-28cbf9c2c5e9", "text": "children buying buns from the same man "} +{"id": "7003389", "video_name": "a189f77e-37cb-54e2-961e-53290a089038", "text": "naruto standing besides luffy on the top of a mountain "} +{"id": "1003117", "video_name": "39556030-6de6-5744-8b0c-889bc972c426", "text": "image of the baby Jesus in a forest, wind and a running waterfall. "} +{"id": "2007566", "video_name": "aca96085-50df-5b0b-94fb-910c98518e8f", "text": "a village made of round houses, greenery everywhere, minions "} +{"id": "0006342", "video_name": "2aedb713-bfd5-5a17-9593-4da826c24a19", "text": "dizzy video of just a video that mixed every color as a color of rainbow, colorful "} +{"id": "0004301", "video_name": "06b288f5-072d-5607-9db7-2740bf75ded3", "text": "The future world of 2050, angry aliens, bright lights, tall buildings "} +{"id": "0003707", "video_name": "4218f4aa-b68d-5dbc-b3d0-a39e0085585f", "text": "make a video of a coke bottle on a table while the camera perspective is spinning around the coke bottle "} +{"id": "4002672", "video_name": "146409c5-fc6e-596a-8b18-70d42f09a6c2", "text": "manager watching kids playing soccer in stadium, he wears suit "} +{"id": "7004371", "video_name": "eb4e2cb2-19f1-59c7-98f7-0e088ca4c65a", "text": "small dog hunts joyful a snowball on a trail in a winter Forrest landscape "} +{"id": "3004784", "video_name": "7c4555c3-7760-5b2a-94e5-122e6e9d817b", "text": "teenagers running with cream ice cream "} +{"id": "7003745", "video_name": "fce6e870-b642-5c97-b150-712991f2bbe3", "text": "Buildings Are Covered In Ice Cream In Sydney, Ice Cream UFOs In The Sky, 90s VHS Style "} +{"id": "8001008", "video_name": "04f3c81a-66ea-59a7-bee8-8b4155574686", "text": "a cinematic shot of the hulk and thor enjoying a pint at the local bar, the two charachters are mid laughter with a happy smile on their faces, shot with moddy interior lighting "} +{"id": "2007212", "video_name": "ec19c335-f86a-52d8-b96b-b287a9a8507d", "text": "Weed falling from the sky, street viewpoint, "} +{"id": "6004955", "video_name": "e318d6ff-a0f8-5572-8f2f-205c369c7191", "text": "As we explore these theories, it becomes apparent that the Dancing Plague of 1518 remains an unsolved mystery, leaving historians and scientists alike intrigued and puzzled. The lack of concrete evidence has fueled ongoing debates and speculation, making this event a testament to the complexities inherent in unraveling historical enigmas. "} +{"id": "1006588", "video_name": "78a9a086-106f-5e65-8ea1-df92d0d3a137", "text": "A student interacting with a holographic display, with content adjusting based on their interactions "} +{"id": "6003858", "video_name": "abaaac8f-db22-5a67-84fb-75f24b733a08", "text": "John John Florence wipes out on a wave in Hawaii "} +{"id": "1003078", "video_name": "38a41ee1-fd6c-5246-b688-936600aa4059", "text": "arjun and maya with an intrigued expression, standing in front of an ancient book "} +{"id": "3004080", "video_name": "a53e78ce-784f-5c73-8529-0828d6411971", "text": "Fish encountered other fish from various backgrounds and learned valuable lessons from each. cartoon style "} +{"id": "8001363", "video_name": "24c5b805-87cb-5c03-86b5-aeeccd6b1761", "text": "Ancient Rome, Streets, dictated by the Roman Empire "} +{"id": "4002308", "video_name": "575a0296-67ab-5f6b-88dc-67e9d62c11f0", "text": "Cute girl eats delicious shawarma on the background of the bar "} +{"id": "4002242", "video_name": "3706e4c0-f696-5dd9-9f67-b1f6109b2366", "text": "a happy blond girl walking in loop in a road beside a ocean view "} +{"id": "3003666", "video_name": "9640e7cd-1f6b-5612-9f94-4d5d9c27f158", "text": "crypto new year Christmas santa money dollars pack "} +{"id": "6002207", "video_name": "5b99ffce-5eb3-5911-bd39-69089e11bf91", "text": "full black background, flying red eyes, 4k, UHD "} +{"id": "6004917", "video_name": "afcbef03-e1fc-5b7f-ae72-352a351ed646", "text": "make 3d cinematic hindu Saint wearing saffron cloth and sitting under tree leaves flew with air and Saint setting with disciples "} +{"id": "0005699", "video_name": "1fa050c1-8023-5e10-b6b3-c0a9a695c30f", "text": "Cristiano Ronoldo as a super saiyan from Dragonball "} +{"id": "1006685", "video_name": "7a936cee-606c-596b-8f54-e683fbd6ea87", "text": "sun in the space, realistic, sun flair, close up, huge sun, closeup of sun, real sun "} +{"id": "5001087", "video_name": "c7144c9a-5fff-5ab5-84b3-06135d998f2e", "text": "make a realistic video of wind turbines working in a field 8k but make the windmill spin slower and they will be further away "} +{"id": "1005571", "video_name": "668a7514-abe4-5621-bb57-fdbec5b0e481", "text": "summer is hot everyone wants to swimming dip water pool cartoon view "} +{"id": "4004838", "video_name": "1047e7e9-b8e6-5806-92ab-5f166075f8a4", "text": "live footage of giant king gilgamesh Alejandro Jodorowsky "} +{"id": "6004431", "video_name": "fd7ca186-d40b-5dbc-81d8-a4bcee6cde64", "text": "a tunnel view of the parisian metro "} +{"id": "6003724", "video_name": "c7dedd38-8786-52d5-8a3b-4a66d03f8b16", "text": "close up of white bunny eye turning red "} +{"id": "6004397", "video_name": "9561f45c-59f8-52a0-86dd-ae3d62c69baa", "text": "action movie gun fight with muzzle flash "} +{"id": "0005125", "video_name": "15409a44-75ec-5e78-8162-ac1c6cbd93e7", "text": "Cinematic 8k football stadium, mosaic in the stands with a player and the champions league cup Message: SPAINTRADER (Font: MODERN) "} +{"id": "2005547", "video_name": "eb3d468e-5dcb-5634-b73a-a3a27e7888b3", "text": "spinning tower in south america B.C. on a sunny day "} +{"id": "8001658", "video_name": "53ee1894-a7d0-5746-9cfb-2621910f022d", "text": "a computer screen partially submerged in the ocea displaying crashing stock prices "} +{"id": "7004724", "video_name": "5df7e44e-079b-5258-ada2-2255872e842c", "text": "movie of a woman on the moon "} +{"id": "0003607", "video_name": "40539d5f-5cb2-5bae-bebc-6d4210a0ed00", "text": "band poster red black white mandala background pattern shimmery Message: PINCHPOINT (Font: SANS SERIF) "} +{"id": "6003755", "video_name": "74bd3f5b-153e-5367-845a-09ef8f6c17fc", "text": "a kid just lying on the bed and using his mobile phone to chat "} +{"id": "0003799", "video_name": "43af69fb-e100-5823-94ee-f6a4b9bfbc25", "text": "a very cute Chinese, new year, dragon, baby dragon floating on a cloud "} +{"id": "8002855", "video_name": "9bdeacc6-68df-5bf8-a7e9-293172a2f4f7", "text": "the sky with clouds is reflected in huge glass skyscrapers "} +{"id": "0004876", "video_name": "10c5cff6-293a-55c5-89d0-500c71e6f56d", "text": "A beautiful Chinese beauty, non animated "} +{"id": "0005176", "video_name": "1612d53a-e428-5a1b-81c5-eba73c9785e7", "text": "man walks into into his own mouth "} +{"id": "7003482", "video_name": "4f31ebe6-bd74-5681-af4a-ca850d4798e7", "text": "a happily married couple 3d animation style "} +{"id": "6002971", "video_name": "58fcf4d3-600d-5a6d-8895-7494a25ef19a", "text": "Nashville Tennessee getting attact by futuristic ninjas cinematic dramatic light "} +{"id": "4003383", "video_name": "3dc35a81-221b-5f81-8cc9-b4b747861653", "text": "caveman in 1000 BC era (cinematic,photoreal) "} +{"id": "8003450", "video_name": "4763bc8c-0e6e-50ed-85cd-76ddb46bd292", "text": "Anime style monster samurai with glowing sword "} +{"id": "3005406", "video_name": "5d328f2f-1bea-5094-8683-055783467d8f", "text": "Girl and boy doing a video for tiktok "} +{"id": "7002888", "video_name": "b123df80-1f56-56c7-931d-53cbbd3e6283", "text": "The camera shifts through the space and the furniture moves around the interior space\uff0c "} +{"id": "5001038", "video_name": "57be0dc0-1348-57fc-8b64-737ff09db72b", "text": "a female character with medium lenght hair working on her laptop in a tropical island "} +{"id": "3006864", "video_name": "a0c037d5-8bfb-5ad0-91b3-7556a4af5485", "text": "Kali purush from web series asur "} +{"id": "8002002", "video_name": "7d4715b0-8f6b-583e-9b98-35e467062a53", "text": "Crowd going wild at a stadium loop "} +{"id": "3004473", "video_name": "77cffd40-bb9c-5e44-be5e-a24024b1c62c", "text": "The Flying Spaghetti Monster is soaring through the universe. "} +{"id": "8003938", "video_name": "1ae701c0-4b93-53a8-9590-8995073b32fa", "text": "a medieval warrior fighting an alien, on the edge of a cliff. It\u2019s windy and foggy in the late evening. Animation "} +{"id": "6002903", "video_name": "2b5799ff-85c3-5875-8b44-bfb473547e28", "text": "this style cat images Message: 1 Attachment "} +{"id": "3004252", "video_name": "9a26e921-dca5-563e-acef-f85203db0caa", "text": "a little girl walking alone the path in forest with a little panda "} +{"id": "8003872", "video_name": "0ed57349-886a-5c62-b0bf-fc780aca935c", "text": "A group of curious Egyptians gaze at the sky, mesmerized by a bright, unidentified object descending from above high detail, focus, cinematic, atmosphere, stunning, vivid colors, "} +{"id": "4003555", "video_name": "f9fa811f-0d50-5c56-b3f8-6b170b85d326", "text": "a beautiful couple love together in a sea beach "} +{"id": "2007916", "video_name": "eddb71d8-013b-54fd-95bf-c964eae922ca", "text": "animated guy wearing headphones sitting in swing chair near beautiful lake with mountains,winds blowing, waves effect "} +{"id": "7003100", "video_name": "39676a15-16ad-5e11-b830-e1f992e19e9c", "text": "green screen VFX of lightning, gs 20, motion 1 "} +{"id": "7004765", "video_name": "f6519689-c78b-5a0b-8dc0-34da4448f17c", "text": "mysterious ancient Chinese village with lots of green and waterfalls, pavillions, black and white ink caligraphy painting, materpiece, 4k, high sharpness, hyper details "} +{"id": "8002392", "video_name": "e3d0c663-4bd9-548d-a8a1-d39bf1c053fa", "text": "overflowed water in a slight rusty room inside a ship with only walls , no objects, in the style of 3d animationm with increasing water level "} +{"id": "4002717", "video_name": "41c97750-03bd-5cc4-9a63-475aa01234f5", "text": "wide shot at the Castlemorton 1992 Free Festival with the spiral tribe sound system in the foreground "} +{"id": "7002052", "video_name": "7a79ecab-0ba7-50d6-9fc7-7d565cf9508e", "text": "The little bird learning the lesson of perseverance and determination "} +{"id": "4002403", "video_name": "80143236-98af-52c6-bd27-11cf049bcd17", "text": "a theif steal a camera from a shop "} +{"id": "7003372", "video_name": "c1c6c1df-5a27-5486-a037-056ec29f11c5", "text": "owy forest with a hut next to it and a lonely man, modern style, shot with Sony camera "} +{"id": "2006100", "video_name": "30d322c2-eb97-56af-bd43-40246f1ad145", "text": "image:images (6).jpeg Head movement, mouth moving "} +{"id": "2004908", "video_name": "9d968698-5ca6-5964-a174-d5ed54af66d1", "text": "Depict a lonely girl exploring an abandoned mental hospital, her flashlight illuminating dilapidated walls and rusty medical equipment, creating a mysterious and terrifying atmosphere. "} +{"id": "8001547", "video_name": "11a92309-c517-592c-9a45-d9080b87b635", "text": "pages of old Bible moving in air with lamp glowing beside it "} +{"id": "7004544", "video_name": "d82d34a5-96d2-5020-8499-d0b3d003fbc8", "text": "16s video of a great nurse delivery new baby "} +{"id": "0003856", "video_name": "44b165a6-8334-5f5c-8708-753f1e591d5d", "text": "A secret spy is going through the streets of Europe "} +{"id": "2007277", "video_name": "b6f21d33-9416-52d0-8944-81c2efd5f870", "text": "future dancing club with people dance,and the chlotes are from future "} +{"id": "0003276", "video_name": "3aa76213-e8f3-57ab-a68f-e2156600f56e", "text": "family friendly RV Park Tijuana Mexico cinematic UHD 8K golden hour "} +{"id": "2005078", "video_name": "9c6aa495-1920-51e7-a642-1b039abc68e3", "text": "A cocoon opening with light shining through. "} +{"id": "8003136", "video_name": "c7b46e34-5e3b-5696-810f-62ff61103aac", "text": "rare film footage of john f kennedy getting shot cinematic "} +{"id": "4004108", "video_name": "1843e863-e7f9-5ebc-9cea-df9fa0fc0582", "text": "college girl studying with a minimalistic setup by the window with a background of forest and rain wearing full clothes as viewed side with ergonomim chair "} +{"id": "3005140", "video_name": "39b6738e-2fba-5158-9d5e-8ea701aba4d5", "text": "A girl talking with a friend. "} +{"id": "2006222", "video_name": "7a9d10a0-21f2-5f39-b8e4-f1ec720d510f", "text": "a snowy evenings in winter in Japanese anime "} +{"id": "4002284", "video_name": "8e904302-b913-5746-85d7-4a3036f45abe", "text": "Create a video a intro video clip for Behealthy life "} +{"id": "1006698", "video_name": "7abe53c1-cef5-5215-b4bf-d9dc2c173928", "text": "red samurai in a corn field , his armor is typical red armor , he has fluffy black hair and blue light coming from his eyes , he hold his katana which is dark blue and swinging it around , the sky is blue and everything is in anime style "} +{"id": "2005399", "video_name": "22e2a9c6-b2c9-5e9d-823d-ee96223c45f5", "text": "A beautiful small olive tree that grows slowly and then olives grow on the tree, it has become a big and beautiful tree "} +{"id": "8002140", "video_name": "84512e5c-a593-5e60-80ee-246a06c5f5f3", "text": "and a blinding light envelops Alex, , smooth movement , ultra hd , anime style, 8k UHD , for an anime trailer "} +{"id": "1006782", "video_name": "7c4952ca-0015-5e07-a388-0cc8bb100d73", "text": "view from a train window travelling sideways "} +{"id": "1006250", "video_name": "72830822-d47d-5468-ba56-521cc0fc59fe", "text": "fashion show runway, model wears futuristic silver dress "} +{"id": "2006406", "video_name": "2fa350b7-cc51-56f3-836d-aa094e17e9b4", "text": "a girl and boy eating something cold and delicious in a cup,on roadside,sci fi look,love and romance everywhere,realistic,ultra 16k quality "} +{"id": "0004495", "video_name": "09ebcf15-2697-5795-8445-194e4eeab226", "text": "submarina fly near moon or other planet "} +{"id": "2004801", "video_name": "300480f6-c9b2-551b-a18e-bbac94d1a8f7", "text": "cinematric,A young girl fights Jeff the Killer "} +{"id": "1006529", "video_name": "7785f9c8-0bfc-55e8-aac0-07d09de47803", "text": "1920\u2019s dance of the hands black and white: show only hands: filmed in black and white "} +{"id": "2006041", "video_name": "5a1c3fb6-3a02-5d97-b588-1abe91cedd2b", "text": "A cat is hunting a cobra "} +{"id": "4003986", "video_name": "801257f6-77dd-5d07-8669-99bf76d5ddc7", "text": "a man with a body made of fractals but an organic human face "} +{"id": "7004066", "video_name": "6e1fdcba-a6af-50b3-b76b-7453ad933d6a", "text": "doctor talking holding a clipboad addressing mike tyson "} +{"id": "7002792", "video_name": "87667e08-e089-5391-af17-ba67feacab05", "text": "quadcopter views, white Tesla driving very fast on the highway "} +{"id": "1006654", "video_name": "79e6675e-db1d-5b71-a9ce-47adbe60a0cb", "text": "a drummer in front of a retro sign with the words Blues Session Herten! "} +{"id": "3003820", "video_name": "02a89f38-dfb6-542d-81a1-9da50e3cba33", "text": "watercolor painting style, Robots walk on Mars, solitude "} +{"id": "2005331", "video_name": "141fa3ea-298c-5d8a-af1a-574b6eeb3659", "text": "Doctor Stranger have a power ston time "} +{"id": "4003029", "video_name": "12676991-687c-5b05-ab84-ddcab3c12d29", "text": "a vintage home with a gramophone infront of a window "} +{"id": "3005688", "video_name": "f1521fad-3679-5c40-8e80-5be5466b1d92", "text": "make the muscle man in the photo get better looking body and a make the Background go on a cyberpunk style "} +{"id": "0004647", "video_name": "0ca1023b-514c-5057-a884-de10e04887c0", "text": "The uploaded image shows a big 6, which is the number of years that NULS project exists with a man staring at this number. the background of this image is composed of several blocks. The animated image must encompase the big achivments of NULS projects adding more people to the lonelly man. "} +{"id": "1005258", "video_name": "60c1fa24-a5f6-5d01-b368-dba992f8c743", "text": "donald trump in his natural habitat"} +{"id": "4002449", "video_name": "22679123-7c60-5730-8eaa-0e82edddf51b", "text": "evil shadow coming out. Dark hunting. Scary. iof Gothic cinematic, 8K resolution with fine detail, Palestine, Jerusalem background, 1500 "} +{"id": "8002183", "video_name": "048f1eed-a501-5a8f-b7d3-e0d7aa17de17", "text": "the treetops, played with the birds, "} +{"id": "1003313", "video_name": "3cffc23d-726c-5708-892a-d5bf50be4b7d", "text": "a guy selling foods in the park, Poorly drawn erratic fluctuation in motion, noisy, bad quality, distorted, blurry, grainy, low resolution, oversaturated, lack of details "} +{"id": "5001158", "video_name": "889bf657-a6d1-5b19-96b5-5e8e8ad54af9", "text": "young 23 years hammering steel movie cinema "} +{"id": "3004915", "video_name": "919610c0-3f48-5922-9fdb-1c62f9508205", "text": "Elves dancing around a mushroom, cartoon, colorful "} +{"id": "0003183", "video_name": "38deda46-d959-58e1-93ce-6c8cb88c69df", "text": "a bottle of beer flying above the table. "} +{"id": "1004822", "video_name": "591f16eb-0949-5d15-abc3-986765fe0b6b", "text": "harry potter and ron in forest "} +{"id": "3005758", "video_name": "b7fd0c96-a98d-5603-a2b7-1f7170f1247d", "text": "a robot walking in fashion show while wearing a black hoodie and white shoes "} +{"id": "2004387", "video_name": "2620b1c3-1c83-50b5-9362-42db6f2ffeba", "text": "Mustang Gt car With Huge Tires "} +{"id": "2003321", "video_name": "fc13d986-acc1-5f94-9b6d-40720fb0f223", "text": "Create a scene that showcases a luxurious bedside table with soft, ambient lighting. Place the night face cream jar prominently on the table. The focus is on elegance and sophistication. Ensure a visually appealing setting that instantly captivates attention. "} +{"id": "1003936", "video_name": "48a65e07-5ca3-560b-b093-ab701f59b406", "text": "flying angel on the gerbra land "} +{"id": "2003446", "video_name": "8555b57b-ecd5-5c02-b8ff-8b412d1d8707", "text": "Ronaldo on a cycle, on a beach and a volcano in the background "} +{"id": "1003736", "video_name": "44f2c6f8-b1eb-5723-acb7-c7a2d6f758e8", "text": "a farily tail of a girl being told a bedtimr story of the perfect wedding. "} +{"id": "2005917", "video_name": "4e23ebd1-c4e8-51fd-807e-7a1d996ff431", "text": "A Man is ripping off his shirt to expose his muscular body. "} +{"id": "3003354", "video_name": "faa120ef-e473-5bf9-a30c-1f386119a534", "text": "the hand dig in the soil and pull out an ancient box "} +{"id": "6003599", "video_name": "7faea0c1-05f2-515d-92aa-8bcd01f9747f", "text": "a 2024 cadilac ct4 luxury and ninja break dancing "} +{"id": "1006802", "video_name": "7c84db93-578e-54ac-bb8e-09a84335ce65", "text": "nature scene with moving water landscape mode "} +{"id": "2005943", "video_name": "3ef0682f-6c45-56d5-bef6-05cd733c9add", "text": "high resolution, post apocalyptic nature forest with animals "} +{"id": "7003191", "video_name": "b6446b5c-82db-56f7-bb7d-502cd679a44d", "text": "product advertisement, rose perfume for instagram reel "} +{"id": "3004985", "video_name": "099de4a8-e219-5bce-8769-156f59074268", "text": "elon musk having fight with mark zuckerberg in the forest with thor hammer and catain america shield "} +{"id": "2003326", "video_name": "2a5503b6-463d-5685-936c-f672e564b55c", "text": "a boy writing story about cat "} +{"id": "7003615", "video_name": "b13f4edf-6698-5bcf-9860-d649762e7121", "text": "close up video of a sitting down moment of a woman where the woman is about to sit on a cactus in the middle of a disco with strobo lights "} +{"id": "2007824", "video_name": "d6f03eee-33cb-55cd-a464-a955500e1ce6", "text": "Jesus on the cross, being crucified, realistic, 8k "} +{"id": "2004413", "video_name": "bfca41a3-599f-5cd3-a0d9-a702676632cb", "text": "red car in a freeway follow "} +{"id": "6003618", "video_name": "67ca80e5-6b17-5e06-9c4b-82f0e1b6d543", "text": "fargo bus transformation to public library "} +{"id": "6004655", "video_name": "4fd560f2-2f5f-5ce0-8943-22c065560d8a", "text": "The revolution begins, the peasants rise up against the government, they are strong but unarmed "} +{"id": "6004593", "video_name": "e9ad9bec-49c3-54d5-8aad-74c822abae6c", "text": "a crocodile dragged a girl into water . girl wearing skirt and tshirt "} +{"id": "4004697", "video_name": "4861b989-d15a-5bf9-b3b7-ebcd240db8b9", "text": "walk in the rain, woman, life , freedom! "} +{"id": "1006389", "video_name": "74dcadba-6346-5f85-82ae-1341b1063c4c", "text": "a series of figures is shown while playing basketball, in the style of focus stacking, pop culture, modular sculpture, contest winner, grandeur of scale, joyful chaos, phoenician art "} +{"id": "0003002", "video_name": "3572a30f-af11-53ac-a5c7-3af0a0470e44", "text": "fisherman, with a surprised face looking at the net "} +{"id": "1003659", "video_name": "435f1015-33a9-5af3-a163-d8f55113d134", "text": "Blue sky and white clouds heal 9\uff1a16 "} +{"id": "1006993", "video_name": "7ff60c64-9aa5-5efe-9769-db88da1addd0", "text": "a walking american grizzly bear walks inside a walmart and goes to the cashier and buys a pack of stella artois beer 10 seconds long and 16:9 "} +{"id": "6002475", "video_name": "aaed19e3-9b84-57e4-aea1-0546a283bf6e", "text": "characters from league of legends run "} +{"id": "6004621", "video_name": "c46bb934-8027-56ff-92df-f8a55092eb8b", "text": "A kind princess kneeling before a wise old sage in a deep forest (lush green forest with sunlight filtering through the leaves). "} +{"id": "1004716", "video_name": "5785bfcf-ac4c-5bb3-b4a2-5eb791265cd2", "text": "a sad girl in a forest, dark sky, in the of Leonardo Da Vinci "} +{"id": "0003149", "video_name": "38133e1c-72d7-5680-8cd8-fe336a8650ae", "text": ":people going to work , 2d animation , watercolor style ,ar 16:9 "} +{"id": "8001814", "video_name": "cb91d582-f4f0-5ff8-9e13-bcb202732ee4", "text": "heart of jungle with sunny morning "} +{"id": "6003300", "video_name": "2afd78d1-132c-531d-a70d-f37120f94363", "text": "The background is black without unnecessary details, a hare runs in place in the middle of the screen, anime drawing style, the hare is not painted, 30 seconds of video, video resolution 1920 by 1080, frames per second in video 60 "} +{"id": "2003173", "video_name": "d70c72ae-01c9-56d2-a6f2-30f0ba9ec200", "text": "a heart inside a bucket burning with big flames. Colors red and pink "} +{"id": "7003494", "video_name": "74779fa8-eaae-5b7f-9915-d9b0cb312baf", "text": "children play at the garden,in night light , close up shot "} +{"id": "7003526", "video_name": "40d6056f-1ae7-586c-92fa-4de52cad70cd", "text": "Picture the children grasping the delicate balance of the Siberian ecosystem, recognizing the unique roles each animal played in maintaining harmony. "} +{"id": "3003935", "video_name": "69965064-2cbe-51f7-aaf5-131c97ab2390", "text": "man walking down dark highway at night. Moon ahead. Dog walking beside him."} +{"id": "2006475", "video_name": "8e382405-04e8-5ccd-8036-c57e510f54fe", "text": "Family Gathering in the Living Room: Generate an image of the Sterling family gathered in the living room, engaged in conversation with smiles on their faces. "} +{"id": "8001854", "video_name": "84207e69-b367-52e3-a297-994d8dc53368", "text": "two mans walking on a farm with a giant chicken, cute colors, 4k, cinematic "} +{"id": "0006903", "video_name": "3515a549-d4a3-5afe-bc51-d2cdf364109f", "text": "couple holding their hands walking in beach at night time where on sky it has full moon also "} +{"id": "8001663", "video_name": "f1a73a5d-c569-5a1a-8057-a099a3f0511b", "text": "nautreeswari aghavya pooja wallpapers, in the style of peter howson, manticore, photo taken with provia, aurorapunk, esoteric, animal intensity, sabattier effect "} +{"id": "2003980", "video_name": "c7aea3c5-71ca-5bde-9764-ea03185a9077", "text": "ronaldo and irina shayk got married, and georgina rodriguez sees them and cries "} +{"id": "4002638", "video_name": "48cc7517-de36-5927-9e36-987291af2282", "text": "picture of rural area in reality "} +{"id": "3006397", "video_name": "8016cfa5-6f56-5048-af65-a51e693c73f1", "text": "aerial view of military members stranded on an island stuck eating coconuts. 4K, Modern, CGI "} +{"id": "7003520", "video_name": "c5984fd5-7272-5d15-9dca-5cc5effc5987", "text": "the white rabbit of alice in wonderland cartoon style animation "} +{"id": "0004171", "video_name": "047bba29-76a6-53d6-b8ce-d8e75ca8d97b", "text": "mouse, amidst the horrors of World War II, navigates the brutalities of a German concentration camp, forms alliances with diverse companions, and endeavors to escape. "} +{"id": "0006195", "video_name": "28060cce-e9d2-5eb0-a748-f5c265ce367b", "text": "A plane leaving chemtrails with the message Message: PANTOS (Font: MODERN) "} +{"id": "8001250", "video_name": "14f3c84f-4e14-52e0-a8de-d7e53bf94211", "text": "A highly technologically civilized world, a cat that has taken over the planet and has its own army and world. "} +{"id": "7004982", "video_name": "e7dbb04d-35a7-56af-b158-662d74df2515", "text": "a river and some mountains and forest and rock there is written ram Message: Ram (Font: MODERN) "} +{"id": "3003460", "video_name": "43137381-f7c8-5b89-936b-a6785a634314", "text": "Submarine implosion based on the submarine that dove on the titanic in 2023 "} +{"id": "0003599", "video_name": "402f61a4-fc02-521e-a8ce-b3395e4170ad", "text": "anime. a road. small alley. tokyo City. midday. windy weather "} +{"id": "1005685", "video_name": "68757f5c-7175-5bc4-90ee-c54dcd48538c", "text": "powerful warrior walks slowly away from an explosion "} +{"id": "3005913", "video_name": "84ac52c0-aae8-535f-9580-c6f8da96a6cf", "text": "cartoon girl with black hair and a pink dress holding a cake with a strawberry on top and a single lit candle "} +{"id": "7003498", "video_name": "484147d9-b77b-53c0-9daf-d31dd9de249e", "text": "bentley continental gt driving on the way towards his mansion on the hills "} +{"id": "6002378", "video_name": "4a053ad0-f0bf-5fa0-b55a-84ed4dc865d1", "text": "a lively cityscape with positive and energetic tone "} +{"id": "2007714", "video_name": "64dd5753-2054-55e6-ba8f-c1093bd74a58", "text": "Together, the three friends Sparkle, Bella, and Ziggy explore the enchanted forest, the sparkling river, and the laughing mountain. Along the way, Whimsy makes friends and gains powers. Each new friend added a new color to their story. Message: story (Font: MODERN) "} +{"id": "7002630", "video_name": "253faf8c-f794-505a-86b5-4f2569c3edec", "text": "Cyberpunk Asian cyborg girl with VR glasses, mohawk, black background, pixel art style "} +{"id": "3003000", "video_name": "b33b8651-abaf-5f07-8613-070378fb281e", "text": "The wolf prepares to fight pollution and protect the jungle "} +{"id": "1003269", "video_name": "3c27d998-19d7-5a0f-886a-ee9c780b1032", "text": "a small room with a counter with a microwave, a small refrigerator, a table and a chair "} +{"id": "0006046", "video_name": "25b00ad4-8fee-5ff3-b5bc-5b71b8487b39", "text": "Begin in a serene forest setting and introduce the Wise Oak Tree, known for its wisdom. Show the main character, Sam the young squirrel, facing a dilemma about sharing acorns. Transition to Sam seeking advice from the Wise Oak Tree, who imparts wisdom on kindness and unity. Sam decides to share the acorns, leading to a forest filled with joyful acts of sharing and deepening friendships among the animals. Conclude with gratitude at the Wise Oak Tree "} +{"id": "0006698", "video_name": "31594f54-ab71-5c3a-be42-384b720a4f54", "text": "Generate a magical scene of a butterfly flapping its ethereal, glowing wings . "} +{"id": "3003089", "video_name": "6b42429c-f2c1-57f6-b11e-86a3f0b477fe", "text": "(facepaint:1.1) (tattoo:1.1) (face tattoo:1.1) (mask) (3D:1.1) (deep neckline) (hat) (kid) (bad hands) signature, artist name, watermark, texture, bad anatomy, bad draw face, low quality body, worst quality body, badly drawn body, badly drawn anatomy, low quality face, bad art, low quality anatomy, bad proportions, gross proportions, crossed eyes, ugly, bizarre, poorly drawn, poorly drawn face, poorly drawn hands, poorly drawn limbs, poorly drawn fingers, out of frame, body out of frame, deformed, disfigured, mutation, mutated hands, mutated limbs. mutated face, malformed, malformed limbs, extra fingers, "} +{"id": "1004736", "video_name": "57c3e854-944b-54b9-8c83-e7507788b4b2", "text": "Freddie Stroma swimming in a penthouse "} +{"id": "4004579", "video_name": "605a5e24-44ee-59f3-a3e8-f8b66fc0414c", "text": "Appear on Screen, \u0645\u06cc\u0646\u0648\u06ba \u06a9\u06cc \u067e\u062a\u06c1 \u06c1\u0648\u0648\u06d2, old computer "} +{"id": "4002263", "video_name": "211cf2c1-550d-5da2-9396-706c60772630", "text": "bob schneider walking through the vatican in rome "} +{"id": "6004684", "video_name": "2d578c1f-2ce4-569e-882d-b196b9de9ea3", "text": "Perceptions and Symbols: Symbols and narratives associated with religious and cultural heritage play a significant role in shaping public opinion and influencing political decisions on both sides. These symbols and narratives can be powerful tools in mobilizing support or resistance. "} +{"id": "1006790", "video_name": "7c64aefe-4dc7-548d-9ed0-bd22f04b0485", "text": "Replacing the connector in the phone how to have a cup of coffee advertising repair service "} +{"id": "4003935", "video_name": "8b235f6e-3695-5ec7-b380-aef6afcbf5f3", "text": "A woman in an endless lonely field of meadow, jumping into the sunset, POV from behind, she is alone. Cine noir, Alice Guy style "} +{"id": "3005598", "video_name": "301f4575-d85b-574b-b24f-3e89be2b7259", "text": "riding private car Message: 1 Attachment "} +{"id": "3003121", "video_name": "a7d8e15a-1455-52a6-bf34-9867e7bfddce", "text": "romulan star empire protype Battlestar in orbit of earthling planet "} +{"id": "3006752", "video_name": "93dfd2a6-38c0-5e86-913b-05aaaa94b6fb", "text": "anime, violetevergarden, nier:automata, deemo II, hanging on the cliff almost falling down "} +{"id": "5001508", "video_name": "e4758445-e1ad-5045-b136-1e8d04e3fce4", "text": "Roman war with sea gods HD, Render, 4k Message: Martin (Font: MODERN) "} +{"id": "5001732", "video_name": "37d18ba9-7fa8-555b-b340-aaa52311fbb1", "text": "mid shot of this man working on a desktop "} +{"id": "8001784", "video_name": "06758089-4049-560e-a189-9d6d7108bd87", "text": "Create an illustration of a tutor explaining to a student. "} +{"id": "3006557", "video_name": "f28a5fb9-685d-5f7b-944e-63c2b403ab73", "text": "People pouring out of the towers, trying to escape the danger "} +{"id": "0005107", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "boy and girl feeling shy and smiling gently, camera zoom, breeze, objects in the image moving slowly due to breeze Message: 1 Attachment "} +{"id": "7004891", "video_name": "8a085193-7bfa-50be-b269-dc9240143a68", "text": "Shaking my head, dancing, and dancing my feet. Message: 1 Attachment "} +{"id": "2007978", "video_name": "8151fdb5-a8d1-59cf-adb8-04cd7ac46e9b", "text": "From deep in a dark hardwood forest the light of a distant fire flickers shining through the trees. "} +{"id": "0003375", "video_name": "3c752713-aabe-5118-90e7-e2b83a23e6a6", "text": "a landscape of veneto with fog in the night with red eye in background, archelogical documentary "} +{"id": "0005807", "video_name": "2184b2d9-5d25-5830-8c2f-d686ab119de5", "text": "lotus flowers opening and butterflies flying out "} +{"id": "7002779", "video_name": "5681fc70-58e3-5cec-87a5-4184acf23ce8", "text": "It was a tiny bird named Tweety, caught in a thorny trap, its wing entangled in prickly branches. Without hesitation, Drizzle came to the rescue. "} +{"id": "0004303", "video_name": "06b7fe45-313a-5765-a2aa-d414f8882ded", "text": "mother Mary heavily pregnant travelling on a camel with Joseph in ancient Israel village "} +{"id": "1005330", "video_name": "61ecfd77-bf4e-5fe6-8e13-1522b14403b3", "text": "zebra spilling orange juice from a building "} +{"id": "1003481", "video_name": "4078a5ac-4b79-5278-a75d-07b893fd0331", "text": "An explosion here created a fire, while the plant is tilting and collapsing. "} +{"id": "0006398", "video_name": "2bd619c5-af63-5eaa-8545-4257ddb7a202", "text": "violet and cyan powder explosions coming from laboratory equipment in front of a white background Message: TOME (Font: MODERN) "} +{"id": "0003580", "video_name": "3fdf273b-3dd0-518b-b4e5-b6b7cf190fa7", "text": "angry mustache man from Austria gets rejected from art school gos into politics and invaded Poland "} +{"id": "4004193", "video_name": "ea592c14-c987-5300-b17b-92128290de8f", "text": "industrial revolution new york city 18th century hyper realistic style night time "} +{"id": "8002146", "video_name": "042182af-453e-5c59-902d-672a82c11424", "text": "catwalk for the miss election with bright moving lights "} +{"id": "0006890", "video_name": "34d8c5d9-158e-5917-863e-0de50e6a6906", "text": "a cat walking from th forest and turn look on the camera "} +{"id": "0004158", "video_name": "0451babf-9da2-5f56-907c-7bff0a174c0a", "text": "following sci fi warrior in armour coming through the forest at sunset with mountains in background with high intensity and quick motion "} +{"id": "3003994", "video_name": "d6076e67-5199-530a-a814-ff85b059beca", "text": "1985 video. two businessmen are floating over furniture in an office building in Manhattan "} +{"id": "3003321", "video_name": "29ebc995-d1bb-5c13-8aaa-064f2fa83ea6", "text": "cute mouse and cat counting coins cartoon style "} +{"id": "0004773", "video_name": "0efccbd3-416f-5275-b2e5-aed21f91c85d", "text": "Illustrate a Spartan hoplite standing in his phalanx formation, representing the elite and unyielding nature of Spartan warriors "} +{"id": "2007957", "video_name": "dc52ddd0-29a6-5b56-b488-6e6e707ffe0a", "text": "a cinematic movie scene of the rain forest. Wild life "} +{"id": "4004322", "video_name": "05ff07cd-97e3-53d7-b4e3-ad97575e1d20", "text": "An ancient book being opened, background of green felt "} +{"id": "2003716", "video_name": "7daf388a-afec-5fb8-a814-27faacd7fb59", "text": "rompt: red hair lady crying, smirking,laughing,sobbing "} +{"id": "0004715", "video_name": "0ddc0287-1d8b-5093-a070-2f2f6915e64a", "text": "an 11 year old boy sitting on a sofa and telling a story "} +{"id": "1003774", "video_name": "45952441-5043-5fc4-8abd-fba693f348a4", "text": "traditional disney style animation of david as a boy fighting the giant goliath. David swings slingshot and goliath swings sword, behind them are the philistine army, the background is an ancient desert city and desert landscape, moving clouds "} +{"id": "6002644", "video_name": "95e0dfbd-194a-5c37-8451-ffc9fd1c585f", "text": "cinematic film style action horror scene doc on foggy lake early morning boys being pushed off the pier by other children teasing him modulate fog premieres to follow "} +{"id": "7004887", "video_name": "0a5b012a-b2cb-54bb-88a8-592af522e264", "text": "I woke up in oklahoma looking for a job "} +{"id": "2006589", "video_name": "dc790489-3c0c-5ec7-b8ae-76b42e72cd63", "text": "Create a cartoon where a cactus talks in the desert. It\u2019s alone "} +{"id": "1003973", "video_name": "495d4e32-7ac4-5d8a-a57d-b3cbfb61ee16", "text": "wink, camera zoom in , intricate image "} +{"id": "7002670", "video_name": "9d2c25d3-3610-57b0-8410-8e62411b30e8", "text": "animated a middle eastern fishermen hold a bottle in his hand. hight detailed. higher resolution. "} +{"id": "2004294", "video_name": "51212ebf-1d45-5c4d-a618-0de230fac33d", "text": "A Person in a Hospital. Panning. Anime art animation.\u2013ar 9:16 "} +{"id": "2004503", "video_name": "cb19027f-f20e-5ab3-8ddd-d30cadc0357e", "text": "knight epic scene, cinematic, dark fantasy "} +{"id": "0006720", "video_name": "31b12030-3bd0-526c-b1a0-57991de2a051", "text": "Illustration depicting gravitational forces between the Earth and the moon. "} +{"id": "8002317", "video_name": "475af1f0-0117-530a-b779-a08acda4b2bc", "text": "a verdant Indian village, nestled amidst lush trees and fragrant blossoms, resided a group of six blind men. "} +{"id": "7002959", "video_name": "7e568f69-08d7-52c6-99c6-36e81e49572f", "text": "space ship enetring orbit, cinematic, detailed "} +{"id": "3006847", "video_name": "e4867d6d-bce7-59ec-9ca6-69117db2f916", "text": "Sea and fire mountains in a tropical forest "} +{"id": "0006949", "video_name": "35b7b21a-57c9-5cda-b965-b2db4cf4078d", "text": "Shakuni in secretive conversations from mahabharat "} +{"id": "0005525", "video_name": "1c4499a8-bfb6-5885-87de-dc8c27a080f2", "text": "Wizard with magic staff, wizard floating in the air near the mud floor, cinematic style, 4k, zoom out "} +{"id": "8003384", "video_name": "fc6954bd-c972-5407-b059-dbcfd39344cb", "text": "yellow Lamborghini driving on a wet road "} +{"id": "4004142", "video_name": "2d7ca7fe-849f-5cdd-a186-e6db17f6312d", "text": "meadows, sunset, windy, leaves flying in the wind, wide perspective "} +{"id": "2003360", "video_name": "1313d0d7-6865-5f2f-b09b-e980c52f70b9", "text": "the monument Bayterek in Pavlodar city "} +{"id": "6004560", "video_name": "d6b4c52e-4c81-5b82-9188-cc1938cd1ca0", "text": "man sitting on the tree with girl "} +{"id": "5001120", "video_name": "61515207-31a4-5959-ba6f-076e7ed820c6", "text": "anime styled Pixar video of a fox character walking down the street in mafia attire "} +{"id": "0004473", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "make the water flow as the wind blows through the trees "} +{"id": "7002640", "video_name": "8fd75526-7c3b-5475-9042-900dc0d455ba", "text": "create a photo of the landmark aurelio sculpture "} +{"id": "4002551", "video_name": "b4fd22a2-29a7-5bbe-aea1-b244c18c4241", "text": "A flying multicolored cat flying through space, surrounded by sparkling stars in a mysterious atmosphere, photorealistic "} +{"id": "8003510", "video_name": "ad009228-3b3f-520c-888c-03e90d33e8df", "text": "A magical forest with vibrant trees, talking animals, and the Wise Old Owl perched on a branch with his magical book.Animated cartoon "} +{"id": "4004044", "video_name": "830e3a6f-56f4-5a3a-a7c1-4b2d9e3e3a96", "text": "studio Ghibli style anime of a girl reading a book with a cat at the window "} +{"id": "3006735", "video_name": "34b4e988-6e11-515f-a4e0-46b19eda2e14", "text": "ireworks burst in the night sky of the city, illuminating the hot air balloons floating in the sky. After the fireworks display, they form a heart shape. "} +{"id": "2003052", "video_name": "645a5acb-6ffd-524d-8761-57a0f004f013", "text": "orange sunset, romantic weather, sun reflections on the water. "} +{"id": "3003252", "video_name": "960b7ac3-e948-56d2-a806-c24c5f19cd72", "text": ": undead civil war soldiers rising from a swamp, dusk, 4K, 16:9 "} +{"id": "6003169", "video_name": "130b0a09-fdce-55df-8d8a-0dc180ae10e5", "text": "twitching zombie hand in focus. background apocalyptic city "} +{"id": "2004206", "video_name": "53e15153-8f5d-5f84-bc54-d70f7550e2a9", "text": "Sky clouds are fluttering, leaves are shaking, small animals are jumping "} +{"id": "4002386", "video_name": "025d15d7-30d5-59b5-abd6-1a0e494c026f", "text": "curly brown haired man in a musuem (his back facing the viewer) looking at a dark haired girl whose sitting on a bench admiring the paintinings while people walk past "} +{"id": "6004757", "video_name": "6502bb45-c889-5711-b6a2-d408ccafe33c", "text": "A phoenix rising from the ashes, with the ashes representing past failures and excuses, and the phoenix symbolizing a fresh start. "} +{"id": "6003850", "video_name": "f997a3c3-6490-5236-b89f-e858ef058073", "text": "hyperrealistic high quality image of Maharana Pratap riding a large black horse "} +{"id": "2004890", "video_name": "b1cd493d-1d17-5514-99a5-7cb6adbca192", "text": "High definition Chinese style animation, Guan Yu, Qinglong Yanyue Knife, real estate sales center, happy expression, waving movements, knife light special effects, modern architecture, sales personnel, handshake interaction, property display, preferential policies, farewell scene, Chinese style music "} +{"id": "0006748", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "Short animation a girl getting anger "} +{"id": "8001600", "video_name": "d1ff40a2-25ce-5fe6-8029-602d366e2b40", "text": "breaks the window of the car with the baseball bat, the windows are scattered around, backlight, afternoon, vibrant colors, (Extremely Detailed Oil Painting:1.2), Hand drawn, render, 8k, octane render, cinema 4d, blender, atmospheric 4k ultra detailed, cinematic sensual, Sharp focus, big depth of field, Masterpiece, colors, 3d octane render, 4k, concept art, trending on artstation, hyperrealistic, Vivid colors, extremely detailed CG unity 8k wallpaper, trending on ArtStation, trending on CGSociety, Intricate, High Detail, dramatic, absurdes "} +{"id": "1005835", "video_name": "6b44ce62-0444-529c-b35e-a62af861e65b", "text": "They believed that the small rope was enough to hold them at that time "} +{"id": "2003924", "video_name": "d28adc83-0097-5a5f-a80e-25d58a65254e", "text": "morocan man in gharden whethe dogs "} +{"id": "2003142", "video_name": "ceb1225a-6913-5c87-9f46-67a4e81fb4c1", "text": "Anuel AA listening to music with his headphones in his room "} +{"id": "8001526", "video_name": "1927abb5-b664-5591-9613-e61ae8414080", "text": "a link from the legend of zelda riding a dachshund through hyrule "} +{"id": "7004515", "video_name": "c5303f33-de58-51d6-80d3-2c0991b8c8bb", "text": "idyllic beach with ocean and palms, anime style "} +{"id": "4003589", "video_name": "6ecceac9-f4bb-5229-9098-908c9ec41bbf", "text": "The back of a child working on a computer program in a bookstore, "} +{"id": "1005472", "video_name": "6484bcf2-0512-5695-84b1-91cbe8b24641", "text": "there are big flowers growing out of the earth "} +{"id": "4003309", "video_name": "819b0809-282e-5485-9025-217b39af6679", "text": "Create person sitting on bench at school gets approached by someone who says hello and befriends them. "} +{"id": "6004199", "video_name": "00beab11-0084-5e75-bafa-ef1cf17267db", "text": "city dawn Message: Talleres IA (Font: SANS SERIF) "} +{"id": "0005197", "video_name": "167f8b2f-0823-5601-9ce0-c437948c1b4b", "text": "Spiderman works as a PIZZA delivery boy "} +{"id": "5001964", "video_name": "5adbf671-f3b9-5622-bf58-4f7d3e4aa129", "text": "Disney style. The rabbit and the fox are driving down a rice paddy road together. "} +{"id": "6004311", "video_name": "f2d98ecc-574f-514f-8887-d1e65e228be2", "text": "I see many beautiful fireworks from my windows "} +{"id": "3004503", "video_name": "986b2ff7-06f3-59ca-9e08-2556a83303e6", "text": "Romantic Background: Walking hand in hand on the beach during the golden hour "} +{"id": "3003509", "video_name": "d3c3df2c-bb87-52b4-a4f2-675c594a247a", "text": "Yamamoto steps on yhwach head animation "} +{"id": "0003550", "video_name": "3f5b7dc8-aa9b-5f6c-a5ff-513d48fd1451", "text": "Danil dances with a microphone and falls to the floor and then cries "} +{"id": "1003536", "video_name": "414323bd-8f38-5b36-9dc8-fabffd1657d4", "text": "A spaceship takes off from a giant mushroom planet inhabited by humans. A dazzling daytime sky. Photorealistic. "} +{"id": "2007376", "video_name": "3ef1876e-a8a6-5dc4-be10-ebf1d0f8ed8c", "text": "hyperrealistic, 30 year old wakes up from dream in room with music equipment and posters "} +{"id": "7004273", "video_name": "653c752e-a4c2-5deb-a434-c57648f73502", "text": "1932 Freaks with severe human oddities and shapeshifting with the cast of Friends "} +{"id": "4003971", "video_name": "f2d8b9e7-c271-5232-abe3-04ae4ba9ded5", "text": "a loverly cat is fighting with a old lady, the cat is holding a cup of coffee "} +{"id": "4004617", "video_name": "9fca69fe-8472-5a20-8901-581bbe393e1e", "text": "greta thunberg leading protest against climate change, high quality details, pretty faces "} +{"id": "2007885", "video_name": "22d24029-7955-5744-b449-dd5c214b955a", "text": "grandmother holding a map in her hands on a cyberpunk background in the village 4k, high detail, soft light "} +{"id": "4003000", "video_name": "3830ad53-6b0a-5f83-8eb6-1590a0b96201", "text": "women are always looking for something new to do with their bodies "} +{"id": "4002278", "video_name": "324cabf6-32f1-57ae-be3e-f2c02a4414a5", "text": "street in tehran, woman , dance , flowers "} +{"id": "7002328", "video_name": "ba5e4b35-0357-5859-a2a5-f3c78b718331", "text": "a women slowly picking up the cupcakes in bakery zoom in "} +{"id": "5001455", "video_name": "c5085361-a0c8-504f-ab5e-18d05dff9480", "text": "a unicorn so beautiful that everyone need to look at it "} +{"id": "0005175", "video_name": "160dda8a-351d-529e-9112-eb8bf36297b6", "text": "A breathtaking heavenly landscape with golden mountains, diamond waterfalls and fiery angels flying in the sky, drone camera rising fast into the air "} +{"id": "0003842", "video_name": "446b1849-2620-5537-b271-44c86630f705", "text": "the farmer is locking the hen house "} +{"id": "2007754", "video_name": "2b60780d-ae56-5fc2-bece-50b2e4ee6872", "text": "boeing 747 fly over the city "} +{"id": "1005067", "video_name": "5d8f5bc9-c8af-5a07-96ed-d166e79a7078", "text": "A girl walking into a tall mirror and a superhero girl walks out. "} +{"id": "8001903", "video_name": "dfb5eecf-3098-54a2-82fb-b39d9fbab060", "text": "looking at a peaceful view after a war. "} +{"id": "2007119", "video_name": "272a0f33-22a0-5799-9b24-33a4a05b8648", "text": "lofi girl in steampunk victorian bedroom writing in a journal "} +{"id": "4002267", "video_name": "a8857c7d-0900-5a30-8937-c5bec38c4266", "text": "labyrinth in a tomb of a chinese emperor "} +{"id": "4004891", "video_name": "3b862963-0d7d-564d-aa17-4da6b4bcdf53", "text": "maa durga coming along with her family in sky "} +{"id": "7002695", "video_name": "bf71c335-78a2-54aa-a54a-8400c37f95ee", "text": "Girls, sunglasses, looking at the camera, flying money, rich "} +{"id": "1005857", "video_name": "6bd09824-0b51-5182-a3db-7701a7b99053", "text": "forest with plants and wild animals. make it real "} +{"id": "4003066", "video_name": "21c0db58-a263-5856-a27b-b183cc4c3550", "text": "dog is transforming into human then thinks about life at sunshine "} +{"id": "2007887", "video_name": "59b55a1a-cbcb-55c4-8ccb-ddc5a6da5bd9", "text": "In winter, late at night, a man in a black coat with sunglasses walks down a very narrow, very deep and very long alley, with headphones, listening to a song. "} +{"id": "5001565", "video_name": "7da802b8-a3b2-501e-a87c-d9ffbcf1f962", "text": "traveling in a large art deco living room, high tech equipment "} +{"id": "6003836", "video_name": "87373294-26f1-5161-b420-37618ff710ae", "text": "a purple lovable dragon, excited. cartoon "} +{"id": "5001965", "video_name": "fe42d92d-e96e-58bd-9a86-3bf6cc732633", "text": "In the Valley of the Sun, they encountered the Sun Queen and the Yellow Birds. "} +{"id": "7004366", "video_name": "3587c273-bf2b-55ca-bd11-262552338d58", "text": "a rainbow tornado spins and travels through a town "} +{"id": "8003949", "video_name": "4a823845-eb4e-5f11-954d-9b5cba96f913", "text": "sienticst walking in a laboritory for 10 seconds "} +{"id": "8003753", "video_name": "0cb61db6-be0c-543a-ac37-f4d597114ace", "text": "A meandering river cuts through the snowy terrain, its icy waters reflecting the pale sunlight. The riverbank is adorned with frosted trees, their branches bowing under the weight of glistening snow. The air is crisp and still, carrying the hushed whispers of the winter breeze. "} +{"id": "6002176", "video_name": "40133298-ac79-5c77-8f78-dbcc3423ac7b", "text": "closeup of a sharp plant with face and smile, glowing and illuminating "} +{"id": "2005890", "video_name": "ce74a545-9941-5b3f-aabf-157173a41005", "text": "moana with the iditarod on an island with a rainbow in the background "} +{"id": "0005373", "video_name": "19b7b489-2efa-5438-b8ee-97c171b75df8", "text": "White Jeep driving on an island cinamatic "} +{"id": "8003960", "video_name": "949f559a-dd6e-5eea-aa07-23d17a0f947c", "text": "A senior monk came to a village "} +{"id": "8002988", "video_name": "f9c66f51-b28f-5419-9e31-51a044ad73b2", "text": "Create a video of a computer screen sized earth which is revolving slowly. Make the earth with vibrant different colours leaving the sea blue. Give the video a glowy starry vibe overall "} +{"id": "2004998", "video_name": "ac7a6872-8417-5f84-a195-678397558928", "text": "the man catch in hammer and going the forest Message: 1 Attachment "} +{"id": "0005082", "video_name": "146a9be6-cc65-554f-9029-421c4f056dbd", "text": "a village with a clouddy sky Message: PENDEJO (Font: MODERN) "} +{"id": "7002664", "video_name": "51328b30-1f1f-53f4-9e7b-661cddb2a25d", "text": "a good looking young tv star model with long blond hair and a tight bloack t shirt walking away from a TV set, happy, exhausted, and saying goodbye to everyone with a big smile and hair blowing as they smile back. "} +{"id": "6004093", "video_name": "485bd006-1944-59e2-be06-e224b2911ec3", "text": "a flies snake eating plant geometric "} +{"id": "1004417", "video_name": "51a8208f-3216-5d92-a62d-7140144eb575", "text": "Explosive scenes of the woman leading a revolution against oppressive forces. Show intense action with dynamic camera angles and dramatic lighting to highlight the gravity of the situation. "} +{"id": "1004586", "video_name": "554b7ff5-f4e6-591f-a518-ad4d9067429e", "text": "cartoon style boy reading in the forest under the tree "} +{"id": "2007876", "video_name": "cb1f1fe0-fd46-53cd-925a-0b46c3c5d8f7", "text": "Clips highlighting the impact of climate change on pink ecosystems "} +{"id": "1005738", "video_name": "6995d967-169f-56e4-9409-f05341538038", "text": "A wide frame from above, the camera moving closer to the city of Gaza "} +{"id": "7004916", "video_name": "e51fd1df-8808-5659-b3a5-7972317bbe2b", "text": "hand picking an orange from a blue bowl "} +{"id": "0003278", "video_name": "3aab7342-6c67-55a3-892f-d7a2eaa2d4d4", "text": "a huge plain field with flowers and trees moving by winds "} +{"id": "6003208", "video_name": "5d0748bc-b913-5e34-b213-800892a53930", "text": "Boy talking with his glasses with AI, called Nova, talks to him about his notifications, they are in a bedroom in the morning, anime style "} +{"id": "0006976", "video_name": "36150480-9682-53f1-a7e9-8628437d74ae", "text": "the chamber contained a series of perfectly preserved pyramids "} +{"id": "0003099", "video_name": "37001c45-8274-5b78-b1df-de8b6ce4f605", "text": "dragon dancing with a birthday cake in front of it "} +{"id": "3006992", "video_name": "543513ec-afc5-5a5f-9920-341d0087d031", "text": "Harry Potter drinks beer with Volandemort, zoom in, cinematic "} +{"id": "2005529", "video_name": "44ffd4aa-23cf-5738-bf23-1e7febf0eeba", "text": "sleeping in the middle of the forest alone image "} +{"id": "1006597", "video_name": "78e3e81b-b498-5e10-a2a4-be571f283f0d", "text": "capturing the joy and curiosity of a little boy playing and exploring the nature around his homestead in the Alpine mountains. inspired from ghibly studios "} +{"id": "8002414", "video_name": "e1d44545-6b71-5a7a-8f29-34837cf4c557", "text": "dirty on a window with a forest in the sunset 4K, zoom back, highly detailed, realistic Message: ventum (Font: MODERN) "} +{"id": "3005292", "video_name": "e3e215a5-cd1f-5812-95a5-f2c3b8df5cc9", "text": "Realistic perfect character sheet, lightning wave, 3d, cgi of a gorgeous, ultrarealisticbeautiful light skin African woman as a cyberpunk, in street attire, long dreadlocks "} +{"id": "2005197", "video_name": "4326df12-be04-5701-93a1-ad63f9a7b73c", "text": "The stranger discovers a treasure map in an old trunk "} +{"id": "4003543", "video_name": "a1f14de6-4c29-5a63-b12e-b57ed47731e0", "text": "Follow the villagers on their journey as they unravel the mysteries surrounding the deserted train. "} +{"id": "1005594", "video_name": "66e6ac89-b290-5807-ab85-20e6abc3691a", "text": "1920s silent film, 8mm, blurry, expired film "} +{"id": "0006090", "video_name": "2670ab62-d06b-5795-8d62-9f386153bef8", "text": "Once upon a time, in a charming little town, lived Lily and Max. They met at a park, their laughter echoing amidst the warm hues of a setting sun. Days turned into nights as they painted memories together, their hearts growing fonder with each shared moment. "} +{"id": "6002727", "video_name": "ab79c874-bbf6-5af1-8ee9-2fbe6d2324ea", "text": "drummer of tool plays on piano "} +{"id": "4004438", "video_name": "5bc89688-74c0-5153-b83b-5bdf606a2ad6", "text": "bubbles raising to the top, squeezed and bursting, orange background "} +{"id": "0004626", "video_name": "0c353db9-d250-59fd-88c1-04125daf98e9", "text": "finalizing an amazing drawing of a restaurant "} +{"id": "7003556", "video_name": "41a13dac-7b14-579b-aabf-4f9d0c446e38", "text": "image of a 4th density being in a 3rd density place "} +{"id": "2004449", "video_name": "c75899b5-4116-544c-a40a-5eae5e828226", "text": "a princess sitting on the bank of a river inside a magical forest full of magical characters such as fairies, goblins, elves, fauns, elementals, wizards and knights "} +{"id": "8002815", "video_name": "c2f29e5c-339f-59d7-9845-b41a23ea8384", "text": "Anime girl crying looking out to the rain through the window. Cinematic. Detailed . HD "} +{"id": "3005403", "video_name": "87b4283a-44f0-567c-bd89-afae66c2ec73", "text": "scene with a dark background, which is now split in two. In the upper part, represent darkness, and in the lower part, light. Make this division clear and evident, emphasizing the separation between light and darkness "} +{"id": "6003621", "video_name": "3112208b-94ad-50c9-b04b-75cfefd744ee", "text": "holographic mclaren f1 drifting with fiery turbine "} +{"id": "2005975", "video_name": "c1b21b24-cedd-5363-b000-c56a6ff69535", "text": "Discovering the Magical Book: Design an image of Max and Buddy finding the shimmering book under the giant oak tree. "} +{"id": "1003274", "video_name": "3c4069f8-574e-5da9-8805-05f4545a3f2c", "text": "seal: jumping and playing on the sea coast "} +{"id": "3005251", "video_name": "dcdaa33a-dac4-55a6-b7bb-a9a0119e3fc6", "text": "Jesus move him hand mack across fantasy and spiritual mood 8k hdr "} +{"id": "1006837", "video_name": "7d00700d-8db5-58ed-a7f0-2e67d6e6ee81", "text": "back to the future style 911 sub plot "} +{"id": "7002105", "video_name": "999d3630-164f-5ad8-8f9d-20b134671164", "text": "indica rows of indica and sativa as far as the eyes can see "} +{"id": "0005634", "video_name": "1e77ebc5-edf9-5253-997b-eb7f305e7d48", "text": "He was an ordinary man with an extraordinary curiosity, "} +{"id": "2004407", "video_name": "ec87e3d4-c73f-55ed-aee1-2b3823ef2a13", "text": "modern room with boy listening to lofi music "} +{"id": "2006993", "video_name": "f6926ed0-d5f8-5897-bd6f-85f2057d925b", "text": "girl with soul covering her face only her eyes showing beneath a bush. Horror, dark, 60s, art house, film "} +{"id": "3004239", "video_name": "24afcc7b-e65e-5661-80db-968f826dfe32", "text": "Group discussion or collaboration in forest: Illustrate the individuals coming together, discussing their initial fears, and collaborating to understand the situation of forest. "} +{"id": "5001739", "video_name": "bc623382-832e-5a0c-8ba3-bb6ea15ace72", "text": "beautifu old vessel ship on sea with pirate stand on front of ship "} +{"id": "5001920", "video_name": "b79c9048-bb59-5198-8afa-dd798985e078", "text": "A Muslim man is praying to Allah, 3d animation, illustration "} +{"id": "3003747", "video_name": "196ccb04-7f9d-5702-9a72-af37c3f0cd26", "text": "add video for 30 second for Teleram channel for womens, who needs to lose weight at home , do home workout and outdoor workot "} +{"id": "2005088", "video_name": "155fec8f-5ddc-59ae-b7b6-aa87f7a57f9b", "text": "At this, Billu and his friends threw aside their fear and together they chased Sher Singh away. "} +{"id": "2004424", "video_name": "54705ebf-d26d-5413-b563-a4a3e364c3da", "text": "Generate an image of the ancient Roman gladiator arena where Commodus fought. 8K Realistc image "} +{"id": "0005145", "video_name": "158c92ea-6a22-5fc0-ac67-f6eabec684c0", "text": "cyberpunk lion, hyperrealistic, 4K, low angle "} +{"id": "1005876", "video_name": "6c20e05f-f296-58fb-a385-c3eac32eb27f", "text": "Once upon a time in the colorful town of Willowville, lived two best friends, Juli and Joy. 4k "} +{"id": "1006984", "video_name": "7fc3f260-c6e7-5551-8ab9-ee5c9b0a1e52", "text": "a world map showing a camel going from Morocco to saudi arabia, 10 second duration "} +{"id": "4003724", "video_name": "2c8c6332-bfda-53db-8f83-b25bdef3d41e", "text": "dressed in a black suit, white shirt, inside a hotel in New York sitting filming autographs with a woman greeting him "} +{"id": "4004351", "video_name": "aeed5621-7e9a-58e6-9c45-9b1edb92e6c2", "text": "add mild mist on this interior house she should be in the focus "} +{"id": "8001606", "video_name": "9e3e30a1-76e8-5ef1-9c0d-df6b94375b23", "text": "A sad boy is sitting in the forest and regretting "} +{"id": "1005705", "video_name": "68e54a45-b53e-588f-9fd6-68a67ebb385b", "text": "looping waterfall in the style of renoir "} +{"id": "7004829", "video_name": "f47709e8-c044-5370-84fa-12fbea0baee6", "text": "strange insects in an alien forest "} +{"id": "1003240", "video_name": "3bb3eb9a-538e-57a7-a500-0508dfcf4ad3", "text": "Looking down at the camera, soldiers are building solid fortifications "} +{"id": "4003513", "video_name": "d9231fe3-8ffc-5d7b-a918-661a0fc1e36c", "text": "In New Orleans, United States, Mardi Gras is synonymous with parades, extravagant costumes and jazz music that fills the streets, hyperrealism, cinematic, \u2013\u2013ar 16:9 \u2013\u2013 "} +{"id": "8003425", "video_name": "d7474d0c-5efe-58a6-b881-3b342b57c2af", "text": "a pigeon in a basketball jersey chasing a black car "} +{"id": "3004933", "video_name": "b4981452-656d-5f92-af60-52a67e5b55b0", "text": "Edgar Allan Poe raising from coffin "} +{"id": "6002020", "video_name": "148cf786-c043-5b6a-9106-33e5b974b482", "text": "A group of chicken just landed on an island, at the beach. A wreck ship as the backhround. "} +{"id": "1004869", "video_name": "59f6ba5f-efe8-5a39-bcc6-bbc1f5eb72ea", "text": "excessive fine detail in a photograph of extreme clarity, exquisite finely detailed magazine quality photograph of a futuristic Space western, yurts of a nomad from Central Asia, in the Tien Shan mountains with snowy peaks, next to the yurts on the left is a herd of horses, to the right of the yurts is a herd of sheep, nomads walk among the yurts, Star wars inspired, highly detailed space opera background, cinematic lighting and reflections, detailed textures , surfaces, 9:16 "} +{"id": "8003325", "video_name": "7cbd6cb1-f173-5299-80ea-769fb7806d80", "text": "on a city street thousands of bugs eat red meat off of a human skeleton dripping with red paint "} +{"id": "0003749", "video_name": "42b72669-90e4-5af2-9ad9-ed2bb9ffba5b", "text": "An energetic dancer with a good stylish professional move driven with music "} +{"id": "1006797", "video_name": "7c7d810b-8781-587f-8d2b-a75d153e634b", "text": "A 2004 Footage With A 46 Year Old Man "} +{"id": "7004638", "video_name": "660debf6-917c-58e2-9777-e0778f320431", "text": "Drawing of a monk meditating in a japanese garden with cherry blossoms, style painting vangogh "} +{"id": "0006553", "video_name": "2e8101c7-fe4b-5b83-91a9-96afdf10368e", "text": "A dark, silent ocean depth. A sudden, brilliant flash reveals a bioluminescent squid darting away. "} +{"id": "8003023", "video_name": "d09504bd-1c63-5ecf-8a14-f9034ddf7791", "text": "cloudy, the one autumn tree sways and sheds its leaves "} +{"id": "6002464", "video_name": "af5dc38d-7c8e-580f-bcd9-899641937db4", "text": "tribal face scream to a little innocent victim, terror atmospheres generate from light, faces and movement "} +{"id": "1003617", "video_name": "42a2b811-cb12-5338-aac4-be6ccc60f64b", "text": "office building, man with giant hammer "} +{"id": "7004224", "video_name": "fc10921b-d58c-56e5-a60b-cb92d0b548fd", "text": "As children grow and step into the adult world "} +{"id": "4003542", "video_name": "f39b1d5a-e6a1-553c-b949-f7e894ac25c5", "text": "realistic video convert image to video is original move on HDR video "} +{"id": "2004867", "video_name": "05f00249-1988-5d31-940a-0049dc24b698", "text": "1930\u2019s film of goering at his desk, medium shot, smoking a pipe, historical footage "} +{"id": "5001015", "video_name": "6dcd6a3a-e5d8-5bf7-9973-a23977b9682c", "text": "Four kittens jumping on the sofa "} +{"id": "4004128", "video_name": "c351e342-700e-52a7-be40-cd5ab44c78c4", "text": "quest for paradise in a story book "} +{"id": "1004613", "video_name": "55cee417-e3e6-5e80-922b-29aee850c33a", "text": "Video of internal combustion engine starting "} +{"id": "6003771", "video_name": "4a0de522-4170-5a95-b7a9-9118801a30b9", "text": "cute rabbit wearing hat in flower garden "} +{"id": "4004171", "video_name": "3fc3e298-5da3-529a-895d-f0c190f90872", "text": "Animate a short scene of a young man stuffing a postcard into his jacket pocket. "} +{"id": "1005352", "video_name": "626826f0-534d-5ba1-ab38-6239a1f29702", "text": "The Night the Toys Came to Life "} +{"id": "3005414", "video_name": "0a72f194-4c69-58fb-9303-ed9ca74432bb", "text": "A flower blooming: Animate a seed turning into a full bloom flower and the petals falling off, representing the circle of life. "} +{"id": "1004745", "video_name": "57de9ccb-5ce1-574c-8657-920509f6ff4b", "text": "A beautiful woman takes off her clothes while sleeping "} +{"id": "2006007", "video_name": "7344c7d8-0bad-5732-a2a2-8be952243234", "text": "An image of a cozy and beautifully decorated living room with a glowing fireplace, Christmas tree, and wrapped presents. 8k, Realistic, colourful and vibrant "} +{"id": "2003186", "video_name": "1a1149cb-9c09-5a60-978f-e5185c9c17fc", "text": "surfing, surfer, wave, board, ocean, sunset "} +{"id": "0003071", "video_name": "3677b3a9-73a2-5f7f-953b-cd3941378480", "text": "plot of Dune movie, war on desert planet Arrakis, style of Wayne Barlowe, film grain, vintage, 8k ultrafine detail, masterpiece, cinematic "} +{"id": "1005142", "video_name": "5ec20fc6-ac15-5869-bbe8-3b8071df6ae5", "text": "an alien monkey jumps like a deer through a meadow in the swiss alps 16mm "} +{"id": "7003936", "video_name": "f38d6f88-4231-5e98-8ef0-d9a1abeaaab0", "text": "Monika Geller Friends is an American television sitcom "} +{"id": "0004965", "video_name": "12651691-42d5-50ed-a429-2cd2ac855ba5", "text": "santa clauses runing while holding gifts on his back "} +{"id": "6002359", "video_name": "ecc9aec1-a89e-5387-a408-5f343d825792", "text": "a super girl in cape, 6 years, flying, city in danger, cinematic "} +{"id": "4002483", "video_name": "f64bc198-390a-56ce-b4a7-5f65964f4ca6", "text": "As night fell, they gathered on the porch to soak in the tranquility of the woods. "} +{"id": "2006338", "video_name": "fa10de79-0537-5d2f-9a57-ff4e3e79dc6b", "text": "Lily realizing the importance of cleanliness. "} +{"id": "0003005", "video_name": "3576d06c-75f8-5aa2-9942-ce7cb5bce6a4", "text": "A young man named Rohan is sitting in front of his laptop, browsing through various online courses in digital marketing. He looks excited and curious about the possibilities "} +{"id": "1004533", "video_name": "5440aa8a-daa2-55f1-95a6-d4e75dae1d99", "text": "a robot dog transitioning to a big pitbull, transitioning to a monster truck, high resolition, disney style "} +{"id": "6004329", "video_name": "4ea81cba-9696-5710-a447-030500e67f7a", "text": "the vibrant AMNCIENT city of Liushu Xiao Xi, nestled among the towering pagodas and bustling markets, lay the opulent estate of Mei Ling\u2019s family. "} +{"id": "1005287", "video_name": "6132f213-9b8a-572c-9b77-49c9ab7766a7", "text": "huge beans falling from the sky "} +{"id": "2007624", "video_name": "2fe56692-5a43-5a9b-8fae-b1c2055a12cd", "text": "the fabric around her is moving delicately as if in a slow motion video, the light in the background glows ever so slightly, her right arm adjusts to rest her right hand on her right hip Message: 1 Attachment "} +{"id": "0004174", "video_name": "0490768a-e310-5eee-bb59-16e5e8746402", "text": "the birth of a black egg on the moon, 16 mm, black and white, realism "} +{"id": "5001701", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "butter and syrup melting ove a stack of pancakes "} +{"id": "0003989", "video_name": "013a299c-fcfb-5dd2-afbe-1521c8e7700f", "text": "A cartoon Santa hands me a present from a subjective perspective. "} +{"id": "2006564", "video_name": "73a6b207-a203-55bf-ba83-102973e0a65c", "text": "bubble yum with spiders in it,cinematic, slo mo, 32k "} +{"id": "2004594", "video_name": "db050590-9fb4-5867-9164-9672bbe4463c", "text": "Animate the logo in a Christmas landscape by zooming in Message: 1 Attachment "} +{"id": "8003841", "video_name": "80af0b52-58d6-5356-b4b0-7cfb80d1d3a0", "text": "make a video where hodaka from weathering with you anime walking "} +{"id": "2007850", "video_name": "1234a387-f3bd-56c6-9252-c5d510f1de9b", "text": "A video of man comparing the difference between cialis and sildenafil "} +{"id": "0005646", "video_name": "1e99abd2-c062-532a-a2b0-85ba94076f50", "text": "a beautiful tiger wishing indian cricket team all the best "} +{"id": "2006281", "video_name": "e0b94123-909a-5ddf-8da3-ec26ca6fdfae", "text": "curled red fantasy dragon sleeping in a cave. the background is the outside of the cave with blue sky and a forest. it is raining outside "} +{"id": "1005112", "video_name": "5e462f9c-7603-5f87-b528-a2f511680eb9", "text": "Maya is a beautifull girl in Animation image "} +{"id": "1003391", "video_name": "3e7d1e62-5cea-5559-be6c-a940ecdde1ad", "text": "Imagine a lively scene of horses trotting around a green pasture with the sun shining overhead. Children riding horses or grooming them could also be included. 3D animation. "} +{"id": "8002150", "video_name": "3d1dafab-8fb8-57ed-89ac-71fa8e66e57e", "text": "young boy, playing guitar in front of an lava river, camera pan right "} +{"id": "3006677", "video_name": "dc7cf5b7-a306-5afd-8368-ee06595e2844", "text": "butterfly flying through a dirt road in a field "} +{"id": "0003987", "video_name": "01390711-cd14-5856-bd1d-eff4b6a50bb6", "text": "bmw m5 competition driving in forest "} +{"id": "8001768", "video_name": "7a381050-2ec7-5b4f-b017-57f0bb5451e6", "text": "a memory chip is walking in the space "} +{"id": "0005508", "video_name": "1c07a7c0-1396-5ab2-ba18-a58363b0d0dd", "text": "my futuristic changing pad lift higher end living robot helpers "} +{"id": "2005929", "video_name": "8d7f3846-b217-5dbc-b3d2-bccb4523d24c", "text": "in 2070 or so tenements on fire "} +{"id": "6004523", "video_name": "6972221c-b062-5c7d-9a4e-15d9b896cb3c", "text": "cinematic frame of Quentin tarantino film about Napoleon "} +{"id": "4002424", "video_name": "e26e8fc0-501a-55af-a5c3-5314870966bb", "text": "the mascot call xiaowu bro. working hard "} +{"id": "7002176", "video_name": "0840947f-f475-5e43-ad6c-643e675b59a7", "text": "group of people standing on the beach watching the sunset "} +{"id": "6004713", "video_name": "4d744707-afd8-56e7-89f5-7e7fcf1ba482", "text": "boss introduced a man to his team "} +{"id": "2007136", "video_name": "a77014f6-6578-5711-ba54-ed5d2eb4e6ab", "text": "cute cat, reimagined as human brushing teeth, ratio 1:1.3 "} +{"id": "2004453", "video_name": "a1f899ef-08e3-5b23-a3c8-dfc20e9f57f6", "text": "image of space focuses on the moon with a vast background "} +{"id": "3004504", "video_name": "ffc9bb4c-3cfc-5c40-abdd-8dd9409f64f1", "text": "climate change showing dry rivers 4k "} +{"id": "8002755", "video_name": "8cf26fba-9ab0-5a8e-a6ff-8db0a02e882a", "text": "a city life with vibrant colors aerial view Message: FIRAT (Font: MODERN) "} +{"id": "1005531", "video_name": "65c80c4f-9cec-5385-b5de-38a3280fb864", "text": "Start with a serene image of an open book of Nahjul Balagha, transitioning to historical Islamic architecture.8k, 35mm, "} +{"id": "0006204", "video_name": "283bcd91-db42-53b3-8bfb-cf78b9c2109e", "text": "Sit in a recliner, behind a bonsai tree Message: 1 Attachment "} +{"id": "3004892", "video_name": "68f8be3a-6cd8-5491-aea5-1626819e6838", "text": "baby penguin walking on a white sand beach "} +{"id": "7004483", "video_name": "a234d2d8-ba14-5d9d-b26b-09ea4a4d40c1", "text": "Dreadnoughts attacking each other at the Battle of Jutland "} +{"id": "4004846", "video_name": "5d3a54cd-08d1-555e-9e9e-8cac62b3dcca", "text": "A Hawaiian beach with sand and waves Message: ZAST (Font: MODERN) "} +{"id": "1005937", "video_name": "6d1f9538-57b4-5d09-a0a8-0e4b00f05571", "text": "atmospheric Details: The surrounding environment is shrouded in darkness, except for the faint moonlight that adds an ethereal quality to the scene. Leaves rustle in the wind, amplifying the feeling of unease. "} +{"id": "3004409", "video_name": "bb0343ff-a455-555a-a342-a3edc9fc0026", "text": "pixar lamp fly in the sky "} +{"id": "0004157", "video_name": "0450d5f9-61fe-5d1d-840f-feb9b25d8f2c", "text": "at a rave party, Jesus punches Santa Claus. Around them people dance and lights beam. "} +{"id": "4002361", "video_name": "dda68222-e3ff-5f95-b6bd-92f09e78acae", "text": "two robot gold godzilla with tree head , arms and hands "} +{"id": "6004704", "video_name": "d4aaf9bd-8c7e-5ede-8bbf-7b5f109bb4d3", "text": "elephant in its natural habitat, surrounded by the African savanna or lush jungle. "} +{"id": "4004313", "video_name": "f052052c-c3a5-57b6-8c84-d5385405ddaf", "text": "a man in store and selling a chips and his face on smile "} +{"id": "1004653", "video_name": "56893b7a-30b1-596a-8eab-5714d4b5700a", "text": "ultra beautiful hd forest with a lot of animals walking "} +{"id": "2006188", "video_name": "f33ab51b-e920-5a6e-8f75-250942841ee9", "text": "a kitty playing and jumping in a room with 3 walls "} +{"id": "4004312", "video_name": "147eab6a-0d35-587f-8f89-184424e556e3", "text": "little girl at school learning, then playing, then reading a book, then going home on the bus, the having dinner with her family, then going to sleep "} +{"id": "1006342", "video_name": "740f18d2-3d06-584e-a883-f3e6c21cd6b3", "text": "1960s dystopian society people wearing smiling mask, wearing fancy red suits and dresses in a dystopian carnival "} +{"id": "4004504", "video_name": "45314f0b-8c9b-5604-83e8-446e08df0d98", "text": "The child is doing homework at home "} +{"id": "4003945", "video_name": "917d6977-47de-57cd-8b87-27af8542e893", "text": "a group of old ladies pray in a beautiful cathedral "} +{"id": "1003498", "video_name": "40bc7c9a-f7b9-5ba0-aa16-e93307b1efe6", "text": "CCD scanning camera scans moving boxes "} +{"id": "6002731", "video_name": "c4cc8d0d-4529-5dea-b431-3a63640b75b1", "text": "Create a photorealistic portrait of Dorothy Gale, capturing her in the vibrant blue gingham dress with her iconic braided hair. Depict Dorothy with an intense look of determination in her eyes as she holds Toto, her loyal dog. "} +{"id": "0004548", "video_name": "0b13c4ed-4930-5234-9cf9-6b97716499f6", "text": "Wide shot of John walking out of the airport terminal, surrounded by the hustle and bustle of the foreign city. "} +{"id": "8002399", "video_name": "de9a78c1-9145-57a7-a76c-ceba38e4d833", "text": "young looking daphne guinness wearing sequin coat and futuristic mirrror sunglasses, standing in a burnt smoking forest at night, old factories in the distance, old technology, "} +{"id": "3006111", "video_name": "dfe4d1d5-e7d1-5529-a570-883c133f483f", "text": "sketch tattoo style \nfast dance steps, with something that reminds me about the lost of memory, 8k high quality "} +{"id": "4002416", "video_name": "d35c2c08-8645-5f43-98b2-0f4261edadc4", "text": "Black annd white old movie about fractal megalopolis world fly trough cinematic scene "} +{"id": "7004014", "video_name": "9b459723-3838-5e65-9b78-eb9e5a848de2", "text": "a girl in a wood in studio ghibli style but dark "} +{"id": "7003375", "video_name": "8e6fe553-3a87-54b2-b21d-e4972d6e6d4a", "text": "a close up shot of female chef working in the kitchen, 4K, shallow depth of field, background newyork city night view, 4K, ultra realistic. "} +{"id": "1003210", "video_name": "3b260b95-8492-5ee2-86f8-5310a90fb319", "text": "summer dress in different styles, color pink , yellow, blue , green "} +{"id": "7002771", "video_name": "4b4d2764-fc2a-56a4-8631-4c9bd88b6678", "text": "a man climbing a mountain in first person "} +{"id": "6002955", "video_name": "e536a644-c025-5b0e-99a9-faaa2036de2c", "text": "a red thunderbolt passing through the screen "} +{"id": "1003165", "video_name": "3a4aeb3c-b8df-5659-a85c-b60adb2db05a", "text": "in a village a boy is going on cycle "} +{"id": "0004886", "video_name": "10e65cd4-fcd0-5870-966c-65747107a4d4", "text": "Imagine the wind picking up, leaves swirling in an otherworldly dance, and the ghostly voice materializing as a pale mist hovering near the willow. "} +{"id": "0005575", "video_name": "1d3c398b-ae5d-551b-8ca1-0235658b28ae", "text": "naruto uzumaki eating ramen on a bowl in ichiraku shop, studio pierrot style, add 5 seconde, hd "} +{"id": "3003507", "video_name": "13a4c4cc-d35d-50a0-8fa3-61df8aa47af8", "text": "a beautiful girl watch the clound on the sky and smile "} +{"id": "1005662", "video_name": "67fd47d6-1e61-514a-b7de-d493e224da6f", "text": "a room filled with antique dolls. Their eyes seemed to follow him, their porcelain faces frozen in sinister grins "} +{"id": "6002314", "video_name": "7732dc38-1ff4-5e2b-b09f-41db4d066e4c", "text": "portrait of donald trump dressed as a Roman centurion from 100BC "} +{"id": "7004935", "video_name": "01e501d1-d7fa-5fa2-861d-834514cb7093", "text": "model walks down the runway in white dress and stumbles "} +{"id": "3005546", "video_name": "f073e54e-276c-5357-8832-e1ff9d9bc300", "text": "maybe with a little knapsack for conveying. "} +{"id": "6003041", "video_name": "25dadbed-9084-585b-9742-bea4da03b6f3", "text": "His teachings emphasized compassion, mindfulness, and the cultivation of a kind heart. "} +{"id": "6004233", "video_name": "18bd9d6e-81b6-58e2-ae96-43abf0d3844e", "text": "Opening shot: A peaceful suburban neighborhood with a sunny day.ultra realstic image "} +{"id": "7002971", "video_name": "ff5d1687-ef74-5278-9182-58c2974d2783", "text": "A little girl after school was walking in the dense woods and found an injured wolf cub. She walked slowly over, picked up the wolf and walked home.6 "} +{"id": "3006928", "video_name": "9a827f7b-37de-534f-849f-14d61b60e1e8", "text": "I want a sexy cartoon character face to face "} +{"id": "3006367", "video_name": "be4d4fc2-300a-5083-9a71-887507eabcd0", "text": "a small boy who use a katana in light speed anime style "} +{"id": "3004593", "video_name": "23ff54bb-b47e-501c-8ba9-a7fd7c68c06e", "text": "Rain falls on the roof of a cabin, washing away dirt and creating streams of water in a dark forest "} +{"id": "3003636", "video_name": "9eece4e8-df81-554d-b71d-0326f3cce840", "text": "Cute pumpkin lights, big and small, hung from the trees on both sides of the road, and the girl skated on her skateboard, and as she moved forward, the pumpkin lights lit up "} +{"id": "2003097", "video_name": "5ca9462f-9d4d-5480-855b-c5d8e3ac3a79", "text": "Lots of people dancing pixel art style "} +{"id": "6004943", "video_name": "4481e770-a4dc-52b8-9271-4fe8049ce634", "text": "Year after year, the flowers bloom as fair, I wish to pluck the blossoms as spring dawns. The cries of dragons and birds transform the scene, The mirrored flowers and moonlit waters, who grows old? "} +{"id": "6004310", "video_name": "3f0b4db6-5ae8-50a5-ae3c-928442494d11", "text": "Shots of Vijay Shekhar Sharma with his team, celebrating milestones "} +{"id": "3004679", "video_name": "3fc36932-20bf-5c13-bc49-5ec82b03dc5f", "text": "sara fents on land because of fearful hallucinations "} +{"id": "2004552", "video_name": "259dbda2-bc08-56b2-a69f-aa07fcf9069f", "text": "from the bible, year 1500 BC, man, ruler, from, standing on a tall building, looking down on the city below him "} +{"id": "7003415", "video_name": "cecc5a30-9137-5cfe-8962-1674688c89ad", "text": "robots away from burning futuristic lab "} +{"id": "6002895", "video_name": "14f9016a-96d4-5344-bec7-c4a8d5bb82e3", "text": "blue airoplane animated flying in the air "} +{"id": "1004434", "video_name": "51fe7c65-2570-59f8-a9f1-fff777ee1bb3", "text": "A robot walking on the moon, filled with stars and sparkling meteors "} +{"id": "2006104", "video_name": "80d64241-1061-5af1-8c60-21cd6f9691d0", "text": "people dance techno on the street of shanghai by night, close up, cinematic "} +{"id": "0004801", "video_name": "0f589ed5-f200-5b60-a9ff-8982bc23805c", "text": "moon turned red and the stars fall on the earth "} +{"id": "4002933", "video_name": "8887b5c3-ebba-5dbd-a32a-cbceae482483", "text": "Comparing a couch potato to money just sitting without investing. "} +{"id": "2006349", "video_name": "7b95bd95-d031-511f-9c4a-87418222ca57", "text": "very amazing and beautiful, colorful bird singing "} +{"id": "0005542", "video_name": "1c85e4bd-d87d-5130-af26-534fce9446ff", "text": "rooster with a bag field with gold coin in his peak , walking down the road "} +{"id": "6002214", "video_name": "48fdfe45-b385-505f-adfb-56416bef2030", "text": "Manbearpig in south park in the forest dancing around while playing the guitar "} +{"id": "1003741", "video_name": "45100666-a2b2-5536-8a4f-086c0c3e6c35", "text": "An American boy singing in a beautiful background "} +{"id": "2005254", "video_name": "9f94ec39-b8bc-571e-9723-142613ca9834", "text": "a video of 2 people walking through a street "} +{"id": "3005255", "video_name": "e76706fa-95a5-5f05-88cd-60cd3003e5c8", "text": "Their house was always in a mess, with clothes lying around, dishes unwashed, and papers "} +{"id": "7003583", "video_name": "6d9cc1bd-06a8-5aa5-9713-2f7b1e229e1e", "text": "an infinite loop representing time, money and energy "} +{"id": "4003712", "video_name": "787a20da-cd6b-57ea-a2cd-b61acc8c2158", "text": "the Kardashian family taking over the world "} +{"id": "2005711", "video_name": "29893ef7-7537-537e-bc74-f458b72511fa", "text": "create image of tree and watar falls "} +{"id": "6004423", "video_name": "f32a47cd-3f48-58c5-8c88-66d920b96241", "text": "a bug crawling around the forest floor, realistic, cinematic horror "} +{"id": "7002952", "video_name": "740a74af-ef70-5464-828a-bf274d8b3c87", "text": "Generates an image of a hunting scene painted in a cave, representing moving figures of animals and hunters with earthy colors "} +{"id": "3005946", "video_name": "f201bcdb-4f4f-5d6f-a73b-88c2ee175cc3", "text": "a flying bus with flight in the sky, rainbow, ultra 4k "} +{"id": "5001814", "video_name": "c124126d-7108-55f4-829c-0345bdf4251e", "text": "Video, city of Simferopol, is on fire "} +{"id": "0005772", "video_name": "21010ee4-01d4-5d2d-a7b3-96a9f9df1735", "text": "Mature wheat field, long stems, bushy spikes, shaggy, bushy, lush, dark gold color, bright sunlight, houses and trees in background, kites in the sky, flocks of birds in flight, breeze, extremely detailed foreground, MOTION 8k, ultra high definition, textures, 3d, cinematic landscape "} +{"id": "3003814", "video_name": "673fcc5b-fcde-55d7-91c7-6d78d3da201e", "text": "professional microphone and headphones, background: far away blond singer woman Message: NADYA (Font: MODERN) "} +{"id": "2007241", "video_name": "2eebf653-35b9-5ffc-b44b-1fff83444ba8", "text": "Psalm 121 is known for conveying a message of trust and hope in God, especially in times of distress and difficulty. Its importance in the life of an afflicted person lies in its ability to offer comfort and encouragement. Here are a few points about the relevance of this Psalm "} +{"id": "3005700", "video_name": "57439cde-e085-5786-85bb-22841d7ab60c", "text": "hyperrealistic paint brushes Message: vaco studio (Font: MODERN) "} +{"id": "6004782", "video_name": "2fc8f91e-ad80-5851-a8e3-550766ef57a0", "text": "an anime depiction of albery einstein winning the nobel prize, 8k, studio trigger style "} +{"id": "3003493", "video_name": "d5383e77-a087-5662-96bc-d629d98db69b", "text": "The farmer picked up the pot and took it home to his wife. "} +{"id": "8001823", "video_name": "76d85d8d-cb82-56a5-8980-5a3be48a8b8a", "text": "A Chinese structure during the day with a sun flare in the corner, bluejays flying above it, and a midget dancing in front of it flapper style "} +{"id": "2007783", "video_name": "12083027-75a1-5b93-bcd7-10f6a0ef8d82", "text": "A bustling forest filled with tall, ancient trees and vibrant flora. Sunlight filters through the leaves, creating dappled patterns on the forest floor. Various animals are shown going about their daily activities. "} +{"id": "0003649", "video_name": "40fac6a3-8413-51cd-b874-4a3f90580d9c", "text": "Grateful for their rescue, the birds sang a beautiful song to express their thanks.birds sang songs cartoon motion "} +{"id": "2007795", "video_name": "cc5d6115-7651-579b-bcdb-bc5accc35cbd", "text": "20 young salesmen doing phone sales in a luxurious office. "} +{"id": "2004894", "video_name": "00f46558-d90c-5e96-bada-fbc65a24181c", "text": "christmas tree, greeting card and cartoon style, have animation of merry Christmas "} +{"id": "2005008", "video_name": "24922c89-14d1-5101-ba5a-e732e793b8b8", "text": "A happy family cartoon image in a camping place, disney style, photography, in front of the camping reception "} +{"id": "4002685", "video_name": "6134f1ef-9dc9-5bd2-a7cf-0954a99d746e", "text": "Wearing glasses and dancing in China Handsome boy "} +{"id": "3004026", "video_name": "76726cde-d468-5c7b-88a8-09daec5d4709", "text": "Sarah at the park, sitting on a bench, reading a letter with a smile on her face.Sarah continues to receive letters, and her heart begins to heal as she connects with the anonymous admirer through their shared love for literature. "} +{"id": "0003217", "video_name": "3976dad1-3ae7-5c81-94d1-df1d59db821a", "text": "a girl and boy are walking in the mountains of sedona, wind in their hair, rainbow like clouds that are moving, finding peace and spirituality "} +{"id": "1003470", "video_name": "404a864d-72a5-5ca0-bfbe-3b06f6e6385e", "text": "dog walking on street from WhatsApp "} +{"id": "3004589", "video_name": "871be6f1-f5cf-532c-adad-4387df4ec8ce", "text": "A white biorobot kitten jumps after a white biorobot moth flying out of an open white window in a white room "} +{"id": "8002288", "video_name": "e2f2dee7-eaea-5476-83ea-e9877b26832f", "text": "the wind in winter trees at gloaming "} +{"id": "0005973", "video_name": "24401492-7e1b-5bdd-9745-88b85d2086f4", "text": "Young girl riding a dragonfly through the garden, pixar style animation "} +{"id": "1005798", "video_name": "6ab1a6ff-a099-5da0-851c-5e4af74e9637", "text": "a rolex watch in soace drawn in the style of jack kirby "} +{"id": "3006640", "video_name": "57d401ba-9db4-50e5-9d8c-720989a8c33b", "text": "Surround yourself with people who are kind, humble, respectful, compassionate and who make you feel blessed and loved. People who add peac to your life. "} +{"id": "2006980", "video_name": "72c59ec0-c24d-581e-a81f-d88c63d55162", "text": "Generate an image of Emily skillfully chopping vibrant vegetables with precision in her kitchen. Capture the dynamic movement of her hands. "} +{"id": "0003887", "video_name": "4546c358-e4bd-560e-8554-b92f203b9b5f", "text": "a autochrome image of greek ruins in the plane 1970s with a rainbow in the back "} +{"id": "5001879", "video_name": "fcdf973a-7dd4-57b9-8245-420e09a97465", "text": "a boy walking on road with alien "} +{"id": "5001874", "video_name": "cdb41c98-2154-5f0d-ad45-bc46621a586c", "text": "Three ancient Chinese dancers are dancing, wearing red costumes. "} +{"id": "3004399", "video_name": "2347972c-4d33-5964-8132-1db8105b5a81", "text": "many agressive dogs are running in the street "} +{"id": "8001521", "video_name": "f118c501-69f0-5bbb-904b-ba6dea6192be", "text": "point of view perspective of girl running through dark forest then finding a temple that looks like a huge celestial Goddess "} +{"id": "1003259", "video_name": "3bf7d7f0-ec6b-5153-a6f7-4d57269e8adc", "text": "Epic action sequences of the crow,perrat,pink monky and rat battling enchanted creatures and overcoming obstacles "} +{"id": "4003494", "video_name": "ce2dbd39-ba5d-5da3-b8f4-3067a810d629", "text": "a small cute animated toy like santa clauses climbing a lamp top and very happy and excited in a decorated room for christmas "} +{"id": "6002452", "video_name": "7553c7cf-290e-56ca-8d7f-41d064d81e76", "text": "small body bags on european city street destroyed by war. "} +{"id": "8001694", "video_name": "75b54e42-1c45-55b7-9d2e-f90954477442", "text": "please generate video steam locomotive tracking along paddy fields and coconut trees. No river. "} +{"id": "0003049", "video_name": "36150480-9682-53f1-a7e9-8628437d74ae", "text": "the chamber contained a series of perfectly preserved pyramids "} +{"id": "0003723", "video_name": "4262918a-9c01-5d01-9ef0-5209fec8990d", "text": "John was home alone, sitting in his living room reading a book "} +{"id": "4003317", "video_name": "e55634a7-485c-5c04-ba2a-c2ff0d510071", "text": "castle , wall disney , wind "} +{"id": "0006283", "video_name": "29fe1958-dd1a-53fe-aca6-30fac059d733", "text": "Please make the colors blend together and move professionally "} +{"id": "1005447", "video_name": "641ca7f4-b008-5ee4-baab-576df8e31657", "text": "Woman looking from a hill at an apocalyptic city in flames, with large columns of smoke rising to the sky and moving flames burning the city "} +{"id": "7003299", "video_name": "bff96067-2d94-5a84-8a68-3acef5b65dca", "text": "a black cat jump on a white dog who is on a blue lamborghini "} +{"id": "0003111", "video_name": "373ca02e-b39a-53ff-be48-25015cfbd3ab", "text": "A distinguished and respected man in a black suit, black sun glasses with black hair and a short beard, riding a bugati and waving to people, frontal face "} +{"id": "4004552", "video_name": "08974904-a0bf-518f-8675-f1aa3f2ba782", "text": "father and son, boxing, in livingroom "} +{"id": "1004216", "video_name": "4df59443-b706-5cfe-b46f-c0e31e1059c9", "text": "Driving inside a car with a view of Istanbul from the window at night time "} +{"id": "2004310", "video_name": "fa261eda-8731-5a24-9864-9042aea88fa0", "text": "A man wearing black suit hero walking in a city at night during a rainstorm "} +{"id": "1005420", "video_name": "638fe0eb-da44-57af-b003-589aa5dae2d4", "text": "Cinematic and arcitectual rendering of a japaneese round house in the forrest "} +{"id": "2005368", "video_name": "288e514e-515f-5cca-a755-b36fc9051559", "text": "a lifesize cheap small 3d printed modern parametric design, with organic shapes, bio future house "} +{"id": "3004633", "video_name": "0a160858-37ce-54d6-8760-022051d4918c", "text": "1950s psychedelic super 8 footage of rabbits, butterflies, cats and dogs playing in a garden "} +{"id": "2004827", "video_name": "d80ee130-95e2-568a-a9ef-19fa09d0643c", "text": "Young Mandela is sentenced to life imprisonment in 1964 hyperrealism, cinematic, \u2013\u2013ar 16:9\u2013\u2013 "} +{"id": "3003484", "video_name": "eaf43e57-db78-566b-bed4-dfd792d9913b", "text": "lexus lx 570 on the big city beautiful driving "} +{"id": "7003935", "video_name": "78a6234f-1b2f-5a75-b293-8fd83608f0da", "text": "A 4k ultrarealistic batman appearance fighting joker under the Eifel Tower and Superheroes cheering around them! "} +{"id": "6002165", "video_name": "6ef1af94-c286-5bce-b943-12fccdf11ecc", "text": "A small rabbit hopping through a vegetable garden in the style of Dr. Seuss "} +{"id": "8002927", "video_name": "6c9d2abd-24be-5665-99f4-fea8e5cdcb43", "text": "a two knights playing chess in a modern cafe "} +{"id": "4003563", "video_name": "6b5ba941-18d5-53ad-a244-61ba865cf131", "text": "A boy started talking to a beautiful princess in the forest. "} +{"id": "4003366", "video_name": "51ff98ef-06cb-5419-bfc6-d1c23095ee5d", "text": "motioan live , strong fire , war "} +{"id": "3003714", "video_name": "f87dbde4-116d-5927-9389-97092e51896a", "text": "mahatma gandhi walk in village and come to forward Alon "} +{"id": "5001729", "video_name": "82118c8d-9cd8-543f-b8af-5e0543277062", "text": "The truth is that we all have creative abilities, but we are not able to utilize them fully. "} +{"id": "2003911", "video_name": "6ace8bca-4f83-57e0-a698-41bc1d276dd7", "text": "a lady from past dancing in front of walls with graffity "} +{"id": "6004090", "video_name": "10a825f7-ae51-582a-8bd8-3dc89e149263", "text": "fisherman on small boat catching a giant great white shark in 24 frames per second for 3 seconds "} +{"id": "0004697", "video_name": "0d8132fb-8143-55ad-ad01-42431ca62169", "text": "A blank sheets of paper, blowing in the wind, rendered in gray tones "} +{"id": "0003454", "video_name": "3dd81dbb-305f-5d0c-8c46-9c7741d88fbe", "text": "Draw a scene where you read a book while drinking coffee in a cozy and nice interior cafe. I hope the coffee cup is expressed in warm colors, the lights sparkle gently and the natural light from the window lights up the space. A beautiful lady sitting in a chair would like to appear relaxed while reading a book. I hope the interior elements include wood floors, artwork on walls, and plants. Make it feel cozy and comfortable overall "} +{"id": "3004914", "video_name": "6d3d5b80-e2e6-5276-b81f-7b976785d0d4", "text": "The natural strength of the river was extraordinary "} +{"id": "7004704", "video_name": "735869d1-7bda-53f8-8d9d-992c9d652cef", "text": "The general on the stage looked at the soldiers walking below the stage "} +{"id": "2005647", "video_name": "07a1e56b-20f0-5d4d-8310-4a6af0f3b7de", "text": "a robot plays the synthesizer in the desert. "} +{"id": "4003845", "video_name": "62a59a4e-e93a-58a4-bdb0-b664ddbb7ac3", "text": "A woman looking into the camera (cinematic, cyberpunk, steam, neon) "} +{"id": "6002228", "video_name": "c1871868-89ba-519b-bdae-aa5ffb5dc6b6", "text": "Photography: Crisp, detailed shot of the moon in the night sky. Lunar textures and shadows revealed. "} +{"id": "1006309", "video_name": "7373a70c-eb47-5457-a618-d37f27a14077", "text": "scary halloween skeletons are having a conversation with each other "} +{"id": "2005830", "video_name": "e6c522f7-cfff-54a0-92e3-c8a9460090dc", "text": "The screen fades to black, leaving only the sound of the sea "} +{"id": "7004627", "video_name": "c6a4f904-d3e8-52e0-aa83-1fd0732f5881", "text": "olive oil flowing from a black bottle onto a salad "} +{"id": "0003840", "video_name": "445c63d7-fc6f-55cb-bde4-0677909f097f", "text": "Rusty BMW e46 from nfs most wanted is in the garage "} +{"id": "7004728", "video_name": "cc4091ab-4bf7-5896-9998-4df3a2c6ff0c", "text": "maternal grand mother brought many toys for children.children were very happy to see the toys "} +{"id": "0004510", "video_name": "0a4885fd-e7bf-5109-9412-4dfd1fddeb3b", "text": "make me 60 secound video showing heaven , heaven in a place in middle of sky , all around cherry blossm tree with apples on them . ground full of pink roses , clouds and looks like a dream , show one single red apple fall down from one of trees "} +{"id": "6004026", "video_name": "f60e2301-74b9-5adc-acb6-a037d8d77081", "text": "a lady took a fire on her hand at mountain "} +{"id": "2007537", "video_name": "d2c52041-f066-50d1-9ad2-e4de119207df", "text": "In the small room there are walls, like hands, "} +{"id": "2005484", "video_name": "9cf0daf1-07f5-5043-aa0d-7dc910437267", "text": "an elevated train passing through a futuristic metropolis "} +{"id": "1005286", "video_name": "612dcc28-e29d-5b63-9336-da758584937f", "text": "frozen Angel with icicles moves head and open eyes "} +{"id": "4004456", "video_name": "c8b45d39-7e30-5c11-8f33-2207895ab04a", "text": "title Vampirics in architectural lettering made of a dystopian neon cyber city skyline at night bright lights flickering pulses Message: Vampirics (Font: RETRO) "} +{"id": "6004586", "video_name": "8458e7a8-df6b-5bb2-abc5-74bcfc3114f9", "text": "wonder woman punches superman, cinematic lighting, ultra realistic "} +{"id": "4002934", "video_name": "b0db6956-cee4-5245-8f03-c1b3e2ed4414", "text": "a mother and daughter dancing in the rain, a mother holding a skit, holding hands "} +{"id": "2006827", "video_name": "abc5633a-995a-5705-ad65-11f1332d16b1", "text": "after the disco going in a car riding "} +{"id": "0005620", "video_name": "1e3a3be0-1969-5106-9c6e-23b94560cb8b", "text": "an illustration of a neon tokyo city, pink and turqoise neons, lights blinking, neons blinking "} +{"id": "7004221", "video_name": "7c93bbde-cb7e-5f57-9c2c-df195e784d35", "text": "face of a blonde woman looking in the mirror of a bathroom in an old haunted hotel "} +{"id": "2004189", "video_name": "a8f766e4-0486-5efe-9e39-94014d04f833", "text": "chameleon dj playing music at a festival "} +{"id": "5001833", "video_name": "f71e33b8-5af3-5c9c-941f-6f3f774c6a4e", "text": "generate house near lake with rain and thunderstorms "} +{"id": "2003099", "video_name": "bf410b32-e803-5905-949f-ac6871a0f7ff", "text": "a peaceful place like paradise where animals and plants lie there "} +{"id": "1005948", "video_name": "6d408fcd-26cf-55e9-94e2-501d95590172", "text": "Majestic lion on a race track: Generate a video of a lion confidently racing a sports car around a track, using dramatic camera movements like quick pans and tracking shots to emphasize speed. "} +{"id": "4002146", "video_name": "56b0090f-8cd2-5caf-9e61-3357c398c8fa", "text": "a kid playing hide and seek in a village, high details, cartoon mode "} +{"id": "7002609", "video_name": "ce0539b2-e233-5c9d-91ea-56090d68e552", "text": "photo of an abstract expressionist painting with a Swedish model standing in front. Colors are pastel "} +{"id": "4003013", "video_name": "465a1b85-605b-555f-8b35-bbd5ee5ae66e", "text": "Movie of a naughty boy who is 8 with specs sitting playing uno on his birthday with parents near a cake of hist birthday with transformer theme "} +{"id": "8002181", "video_name": "d46093b8-78f3-5f0e-8b7f-82e9d74fa3fc", "text": "Generate a video where a team of explorers on an alien planet encounters a mysterious, ancient AI guardian that tests their survival skills. "} +{"id": "3006681", "video_name": "9cec5fdf-a3f5-510c-9deb-d6fe1ffaec9f", "text": "Jennifer Lopez mowing the lawn wearing a Washington Redskins bikini. Anime style. "} +{"id": "1004068", "video_name": "4b79a2bf-c835-5958-8cc6-3bee4d9740a4", "text": "the woman moves really slowly, fps 24 "} +{"id": "1003145", "video_name": "39fe9848-a5a5-59dc-80e8-329e9a63d9e5", "text": "old women fighting against octopus in New York Street, ar 16:9 "} +{"id": "1003302", "video_name": "3cc6c486-e461-5d34-9699-02f14d410165", "text": "Gogo saturu is watching horizon , anime mod "} +{"id": "2007865", "video_name": "58ac39dd-8212-5e39-bfd3-ed91f09e8c02", "text": "day of the dead spectral dance, "} +{"id": "8002093", "video_name": "83746292-35ae-563a-963c-ff9ecf477fed", "text": "hyperlinks and computing power. Ultra rare humanoids with visible internal wires and motherboards. Futuristic design. "} +{"id": "1006463", "video_name": "7652ca3e-f693-5454-87f7-34199b81478e", "text": "a YouTube channel logo, doremon news, 8k "} +{"id": "3004816", "video_name": "8707f573-25ff-5aaa-a528-90d3a27bf4b4", "text": "one boy is skiing with its cute robotic dog "} +{"id": "6004218", "video_name": "48a01ef9-cbdd-5ee7-8148-875d3e76394f", "text": "a boy in the dynamic process of transforming into a mech suit during a battle, ready fof flight\uff0cfull length "} +{"id": "1005317", "video_name": "61ad482b-f7bd-5a8d-932a-3f28767a98b9", "text": "a boy playing football at a green field "} +{"id": "0004913", "video_name": "11581f87-abfa-54fc-94b1-aa6bf22a3903", "text": "The riverside fireworks show should have mountains, water, and a crowd "} +{"id": "5001023", "video_name": "70176bb1-de26-5ae5-9df9-9f5721aa499b", "text": "In office, leaders and employees eat lunch and chat. "} +{"id": "2003306", "video_name": "d75e8a86-95ae-501e-85a9-1c000b54b723", "text": "models walking down the run way wearing never before seen Gucci clothing "} +{"id": "3006418", "video_name": "6ae32b8e-61ea-54f2-9458-feee34d58537", "text": "create a beating heart with technological elements "} +{"id": "8002380", "video_name": "429012dc-f6fd-5489-83cc-2dc97406db54", "text": "a pixar looking video of seeing the eiffel tower for the first time zoom out as walking through the streets of pairs "} +{"id": "2007479", "video_name": "027a5f07-aa02-5e70-a326-b2c13664d3ce", "text": "hyper realistic American soldier futuristic armor with patriotic paint on armor "} +{"id": "2004177", "video_name": "e3a2512d-c274-5e4b-954b-dd1a16b9326e", "text": "In the dimly lit tavern, Elias shares tales that send shivers down spines. "} +{"id": "6003402", "video_name": "a158b286-832b-5a4e-97db-b7a87b806dc6", "text": "Exploring Ancient Egypt:\n\nDescribe the vibrant landscape of ancient Egypt. "} +{"id": "0006738", "video_name": "320b7d3c-2192-5674-a022-2f61f3a375f9", "text": "girl in her parents house, but she is depressed and feel alone "} +{"id": "2003653", "video_name": "9050cfb3-0848-5c8a-aae1-235c700629bc", "text": "Biologic evolution rises, civilizations spread from Euphrates valley. Culture must be sustained without Andites. Progress and cultural development essential. "} +{"id": "5001636", "video_name": "c4dfa57c-f772-5c1d-8752-f988c9af4a70", "text": "he faced exile alongside his devoted wife Sita and loyal brother Lakshman "} +{"id": "6003220", "video_name": "efc7a4f7-b100-5691-b79d-a33be6726a34", "text": "turmeric milk in glass with 5 benefits "} +{"id": "3005368", "video_name": "c8d62a0f-ae4d-5675-9a41-f96cad05a4ff", "text": "dragonborn, kenku and halfling ride a cart down the street of a medieval city, fantasy, realism, DnD "} +{"id": "6004813", "video_name": "7eba922d-5d9d-5c2a-8678-4d36062cb767", "text": "a dingo wanders into a KFC outlet in outback Australia "} +{"id": "1006323", "video_name": "73bb2bd8-ae34-55cb-9688-f507c6314b69", "text": "Keep the image static in its background. The animation should not alter or add any elements to the original scene, "} +{"id": "7002896", "video_name": "aad9b6a3-a125-50b9-a583-27549b660ae9", "text": "Kanye west If he ever was born white in London "} +{"id": "4004788", "video_name": "9f5527e2-4cc6-59bd-b16a-49ca49aa0947", "text": "a lake with mountain inthe golden hour "} +{"id": "2005578", "video_name": "f1d82b47-b016-5936-83c1-06743603410a", "text": "a person standing in a big parking confused, wide shot, white and green theme, 4K, ultra realistic "} +{"id": "2006113", "video_name": "820c83f1-7baa-5f82-9840-dc22e936fcdd", "text": "police team meeting in police station, investigation "} +{"id": "5001592", "video_name": "cbc65bf4-52fb-5534-bf59-9441bbbd7564", "text": "The old abandoned house remained as a dark monument of the past, a terrible reminder of the dangers awaiting those who venture into the realms of the unknown. The whispers of lost spirits echoed through the night, as the Mansion of Spirits awaited new victims, hungry for more souls to satisfy its thirst for horror. "} +{"id": "7003233", "video_name": "eafef992-0bb1-5fad-b8b1-3d98a3b5e06b", "text": "a person is walking down this road "} +{"id": "3006631", "video_name": "8f5758d7-7291-526f-9988-a7eebcff4996", "text": "Alita battle angel walking with sword "} +{"id": "7004210", "video_name": "c3cb7f6a-61c0-5b65-959a-51207bb1e63d", "text": "Gothic roman four kings taking to each other "} +{"id": "1003284", "video_name": "3c63d93c-3c73-5ef1-bc48-c0a420c15009", "text": "Red rain down on a club of vampires "} +{"id": "1004395", "video_name": "5148b0a3-2d32-54b7-96fc-f53a14ed710c", "text": "A girl with a face stained with blood and in her chest a sword killed among the roses With the camera making it rotate in 360 degrees "} +{"id": "8002420", "video_name": "4aa1c5e7-c5d2-539c-a1f5-eccd8ff580b4", "text": "Lesson Learned: Convey the moral of the story, emphasizing the power of intelligence and cleverness of brown fox over brute force. "} +{"id": "4003186", "video_name": "fd937079-4009-50f0-b8f5-f43e997157ba", "text": "The caterpillar had to cross a wide stream "} +{"id": "1005965", "video_name": "6d91b2ab-3cb6-5c03-a9a7-e817adf2fd98", "text": "T and H logo for online services agency "} +{"id": "0003696", "video_name": "41ddf2fd-cdd5-59dc-94f3-2627b3674655", "text": "A bowl of noodles placed on a marble table, steaming. "} +{"id": "2004583", "video_name": "6a46228d-8883-5ab2-abe3-6892e1978cd7", "text": "multipoo Message: 8 march (Font: MODERN) "} +{"id": "1006311", "video_name": "737b6a54-71ad-54c3-b1d6-c7134eb0dfcf", "text": "A serene scene of a clock hands moving forward surrounded by a blur of seasons changing rapidly, symbolizing the relentless passage of time. "} +{"id": "8001927", "video_name": "93f70df0-baca-59c2-9a78-25cdb9cefc87", "text": "titanic in the space, red moon, slowly "} +{"id": "0006651", "video_name": "305f53f2-6be8-5bcc-8be1-0f09a50580ff", "text": "A large building with a single column in the middle, 10 m high, with a side staircase and a waterfall at the bottom "} +{"id": "1006643", "video_name": "79c34765-9a32-5ec5-8e04-b2c423e72845", "text": "A masterpiece, a Christmas gift box with a large shiny ribbon is placed on the snow, the snow glitters like a jewel "} +{"id": "1004228", "video_name": "4e45fa08-02a1-57b0-ab6c-7042b1de8c7b", "text": "animation of a men reading the book "} +{"id": "2004615", "video_name": "028702d4-6435-5c93-bf20-d9e5aaca22db", "text": "Noir Epilogue in Morning Shadows: Illustrate the epilogue of the noir narrative as the sun rises, casting morning shadows on the city streets. Convey the aftermath of the resolution, utilizing a mix of noir aesthetics and the promise of a new day. "} +{"id": "3003715", "video_name": "189c89cc-3cf0-5180-9cf0-1b013fbfdf53", "text": "a giant man with a long nose is snorting up lots of trees from a forrest, he is smiling and has big bulging eyes, epic realism "} +{"id": "7002246", "video_name": "61df11fb-cf5b-5553-ab96-27facf369095", "text": "a princess and a prince in a big garden of different colour of roses. "} +{"id": "7003103", "video_name": "d8744eb2-bb99-570d-98e2-7ae279bf1f3e", "text": "four members 3 boys and one girl seeing dark haunted house "} +{"id": "1003096", "video_name": "38fdf9fe-ef72-59f1-b21d-8e4bce9ddafc", "text": "A unique wallet with the LGBT flag, a star, and a dewdrop with sparkling diamonds "} +{"id": "4003862", "video_name": "418cadbe-802b-501e-8bd1-d349691575bf", "text": "squares moving inside into a void "} +{"id": "1005135", "video_name": "5eae0918-248c-5410-8d32-aca93e695cf0", "text": "a girl sitting at the beach, her hair is blowing in the wind. She is crying "} +{"id": "1005837", "video_name": "6b4f294e-40f2-5d6c-a10c-34d3a89071e3", "text": "Ray Keen of Canby Oregon playing paddle ball at dusk "} +{"id": "7003862", "video_name": "bc9f1765-4e80-5a16-8d70-37637d9c6adc", "text": "charizard bursting out flames on Squirtle "} +{"id": "7002087", "video_name": "8cc6580d-1205-5c47-b179-5994173e0b66", "text": "Three to four cute cartoon pillows running on the bed "} +{"id": "8003005", "video_name": "2e209a12-65a7-5252-800c-89cfebe79890", "text": "a man with eater pistol in black jacket is looking on camera and smiling,lifhtful, colorful "} +{"id": "0005522", "video_name": "1c3944fc-d1f6-5d12-87f9-a9f2ee210c1d", "text": "hyper realistic 4k video of elderly muslim woman in hijab getting help drinking water from a young arab caregiver dressed in appropriate clothing. Super realistic. Very humanlike. Kind faces "} +{"id": "2005118", "video_name": "3a1ac77f-4b97-55c0-809b-9049641d9620", "text": "Giraffe having a movie night with ice cream "} +{"id": "2003552", "video_name": "8d776a74-15fe-5562-98cc-182cb0342dbf", "text": "the logo of the financial campaign "} +{"id": "8002665", "video_name": "4636c9dc-619c-5c20-9759-65035be2c027", "text": "a genie, coming out of a magic lamp "} +{"id": "7002812", "video_name": "50f7366c-4738-5345-81c0-317016de7d01", "text": "Cut to Shyam looking at a photo of him and Megha in mobile and smiling "} +{"id": "6004969", "video_name": "bd1ce829-b302-55a8-9b3f-bbd845571846", "text": "Next to this image, a running horse and an alien Message: 1 Attachment "} +{"id": "6002033", "video_name": "48f4d946-3218-5c66-b276-50b847ccc43b", "text": "Setting Sail:\nRapper preparing to set sail, adjusting his hat, and getting ready for the journey.\nBrief shots of the boat leaving the harbor, capturing the essence of the maritime adventure. "} +{"id": "6004839", "video_name": "5da55258-7d97-54ee-ae78-88a7b458e48e", "text": "field of grass moving in fauvism paiting style "} +{"id": "6004416", "video_name": "f9993bd4-3a65-55e9-ac9f-139930bee753", "text": "slow motion, CU shot of a Star Wars lightsaber duel "} +{"id": "3003901", "video_name": "245f9093-eced-54eb-a0c9-2107cf5dd7b4", "text": "the sun setting on the sea, which is in a tea cup "} +{"id": "1006313", "video_name": "737f8a6a-fb9c-598d-a893-ab08de7db0e6", "text": "a kid feeling relaxed , as he finally reached the destination after running a lot "} +{"id": "3003644", "video_name": "fda2ada4-1828-5498-80a7-e61389b9c401", "text": "a teddy bear sitting on the floor with a yellow light by its side "} +{"id": "2007249", "video_name": "2c1ae145-7ac7-52b6-a517-195948e0c14b", "text": "Sunlight breaks through the rain clouds, casting a golden glow on the sunflower and the surrounding garden. "} +{"id": "2006384", "video_name": "392e1b63-425d-5951-b5af-4269a19db5cd", "text": "a man in a black suit, white shirt and tie, walks, the head is a video surveillance camera, a steampunk fireplace "} +{"id": "8001293", "video_name": "d1b32f72-17ac-5de0-be3d-1b08a34833aa", "text": "A serene night sky illuminated by the gentle glow of the Moon, casting silvery reflections on calm waters: move image as live. "} +{"id": "2007965", "video_name": "49bbc5d9-f3f6-5d39-9d2f-8ec476b953c6", "text": "generating video realistic lawyer cat, reading the law and winking "} +{"id": "6003994", "video_name": "0e73a7ad-ba19-5b72-a8a9-0dd634ad3844", "text": "going to work at 200kmh to collect money and fill the fridge, cinematic scene "} +{"id": "2007642", "video_name": "a22aac1e-9fba-5e5d-b412-1f1088146780", "text": "old 1920s movie, sepia, found footage of a ritual, dark, surrealism, occultism, paranormal, ghost, weird horror, gothic horror, spider, spider "} +{"id": "2003700", "video_name": "a4a39c98-676b-5786-aae0-306547aa6d1c", "text": "young and beautiful woman of 18 years old smiling, with white skin and dressed as a girl, extremely realistic "} +{"id": "1005488", "video_name": "64dacbe5-9ce2-54f4-b75a-b7505f2362d8", "text": "A villan motorcycle in front of a Body kit supra with ful stututu mode on "} +{"id": "4002101", "video_name": "f8c98349-5401-5263-9bf8-19700e8fab9d", "text": "An enchanting image of Ollie the octopus gracefully navigating the colorful coral reefs in the deep ocean, his iridescent colors shimmering in the water. "} +{"id": "0006880", "video_name": "34a6844f-b51b-5dca-ad22-f749b2f74abf", "text": "intricate light patterns.\nUltra hd, ultra surrealism, 8k, 16:9 "} +{"id": "8001542", "video_name": "a1a5d8c4-3919-5051-9ba3-d41999259bf8", "text": "long zoom in, cars movin on the street, people on the balcony walking side to side and talking by phone "} +{"id": "1006559", "video_name": "782e85f1-5bf2-5900-a9c5-27fce1febd10", "text": "Meadow, groom walks to bride, smiles, bridal bouquet, leaves sprinkled, nice sunshine\uff0c video "} +{"id": "3005373", "video_name": "ab123a0e-57cd-56c6-8dc7-94a788c987bb", "text": "Mr. Chinese is making Chinese soup in a restaurant "} +{"id": "1006461", "video_name": "7650e925-c3f3-540f-a3ec-ca053e8303ef", "text": "An African woman holding her phone whilst being excited to use her phone "} +{"id": "8003692", "video_name": "e0afd07c-4540-512f-ae88-33b2e52ca337", "text": "a small film to some ingeniors to welcome them to the new year "} +{"id": "1003751", "video_name": "45294e5d-4d59-5aa1-8e84-58dfb0005f74", "text": "sunlight rays on city on humans "} +{"id": "8001654", "video_name": "ed529b99-31f1-54ad-9273-9e47521ff1fc", "text": "The camera films from behind\nlike a handsome man in a coat on the platform, rolling a suitcase behind him, cinematic motion "} +{"id": "3006504", "video_name": "96133403-2909-5e87-abf6-621dab238bc0", "text": "an beautiful image anstract moving Message: PACE green (Font: MODERN) "} +{"id": "3003169", "video_name": "ac06f8e6-a182-526c-842c-4a770028477c", "text": "dynamic logo promotional video for a digital innovation team focused on sports "} +{"id": "1004085", "video_name": "4baf572b-ad9c-5623-878d-2e10904bc6c5", "text": "Little kitten running on water cute beautiful big eyes good detail high definition 4K "} +{"id": "0005411", "video_name": "1a683463-be90-5517-98d5-1bba12c021b7", "text": "little snow penguin running away from the camera lens "} +{"id": "7004338", "video_name": "13f1a6ce-40bb-55a9-a4a5-fc35b9ef49ff", "text": "cinematic, ghost running in The city "} +{"id": "8002059", "video_name": "3d376e07-8299-5890-ad98-627b01c39713", "text": "3D apple opening door rotation motion transforming pan zoom machine mechanical movement motion forward zoom Push Pull Lift Lower Tilt Extend Pivot pistons industrial manufacturing "} +{"id": "2007304", "video_name": "fc83e8af-df4a-5808-8271-ca80d254dabf", "text": "korean singer psy 3d meta avatar dancing gangnam style on a call center using a headset to anwer phone calls "} +{"id": "0005612", "video_name": "1e030aa3-0596-5f2c-8e38-eeede977f38d", "text": "Imagine the collision of galaxies. Showcase the dramatic interplay of stars and cosmic debris in a visually stunning and dynamic scene "} +{"id": "2004826", "video_name": "898d01e9-f1fd-52c9-8d77-541eb3eb5679", "text": "village of wooden houses, camera from above, time of day, time 300 BC "} +{"id": "3005771", "video_name": "84bbe0a7-b3e7-5aee-a2fa-8bf8d9f1cb33", "text": "first computer in the world and year "} +{"id": "4003851", "video_name": "940c05d0-dd12-56e1-a1c5-35646e0f6e06", "text": "Serato DJ photo that shows off his third finger at Windows 10 photorealistic 8k photo surrealist "} +{"id": "7004405", "video_name": "5d20e223-075a-5161-8570-0ac1b8b829e3", "text": "Close up shot of a pair of green eyes opening. In darkness. "} +{"id": "3004191", "video_name": "a1fbec21-04c0-5c50-b408-dffa007d696b", "text": "High resolution details, Cinematic colors, hyper realistic, hyper detailed. Long shot, low angle, adult Jaguar jumps down a stone staircase. Solar zenith lighting. "} +{"id": "3003295", "video_name": "41d72981-8116-5125-9100-d4db6e833fba", "text": "justin timberlake leaning against a tree in some woods, daytime, singing with a microphone, lots of foliage and nettles, gentle breeze "} +{"id": "0003520", "video_name": "3ee62a51-cf46-54c4-b284-fe54c35e2c3a", "text": "batman fight with Deadpool in cinematic look "} +{"id": "1003333", "video_name": "3d52434b-ae42-5a9b-88ed-0b6eafac8e5a", "text": "A smart student doing experiment, shaking a test tube filled with some liquid "} +{"id": "1005020", "video_name": "5cdf9bb2-ce43-5f1a-8c40-f1ab43180d62", "text": "A japanese girl walking towards the sunset in mountains "} +{"id": "3004010", "video_name": "7c39e990-12fe-550e-bf2a-53a3bf9dd5fb", "text": "Wind and water flowing to infinity "} +{"id": "2005047", "video_name": "c060eb9c-a154-5ab2-ac70-f4d3ad9c1319", "text": "create a highly graphical video in space where humans are fighting along side with robots against aliens through space crafts and weapons "} +{"id": "1004285", "video_name": "4f3dda9b-4a0d-55d3-8a10-c130bcc653e9", "text": "massive volcanic Gwar Temple vessel emerges from sea black and white film 1900s "} +{"id": "7004442", "video_name": "3d71b5e7-0848-5907-8378-ec5ad310b1de", "text": "fire rising with rose coming out (cinematic) "} +{"id": "6003842", "video_name": "0f8c406d-3dcc-5b3f-8483-8069e07a12e4", "text": "a crowd of people on a green hill outside Message: Fixation Dreams (Font: MODERN) "} +{"id": "0006620", "video_name": "2fa7269b-4a37-5e9e-9dae-ff6e48f40e32", "text": "2 egyptian women fanning the air "} +{"id": "2006008", "video_name": "e66c5b72-7daa-59de-ab85-0c05c5ed36e8", "text": "In the ancient Islamic era, the Caliph is asleep in his luxurious bed in the palace as he reminisces. "} +{"id": "2006210", "video_name": "8106db72-129d-53a4-b0f4-410969097010", "text": "create a tesla driving on a road "} +{"id": "2005569", "video_name": "d0eba6ff-353b-54e2-9607-dd2a6cf32b7d", "text": "a cute fairy girl alone in the jungle. "} +{"id": "1006170", "video_name": "70e9072b-0489-59b2-9070-27173e0fc6f9", "text": "a man wearing a mask and a leather outfit is walking in a desert area with other men in the background "} +{"id": "4002959", "video_name": "da83c466-9524-5e06-b4a4-2ae1487dcb86", "text": "create image with the word Toast "} +{"id": "3005538", "video_name": "051f43d0-a1a0-5238-81ae-420ceee270ef", "text": "A girl dancing in the room with a mirror in the background "} +{"id": "4004401", "video_name": "7d16ecd4-f63f-5b72-a930-f1a58978eb27", "text": "a cute genie character sheet, multiple angle "} +{"id": "0003886", "video_name": "4540cf5e-be37-54f0-8ea7-71b660079b02", "text": "An ancient warning that sharply reflects the fallen side of humanity. "} +{"id": "3006633", "video_name": "9ba2b247-df77-50d3-a1c5-d90e521dcaf4", "text": "colorful fluid masses of oil paints and colorful smoke morphing into beautiful woman spleeping face,\u202f by Henry Asencio, by Martin Ansin, golden ratio, colorful, complementary colors, psychedelic art, octane render "} +{"id": "0006120", "video_name": "26fa4c95-4b86-5492-ab41-b27ac7a51ddd", "text": "the tree is moving and the waterfall is moving "} +{"id": "1006055", "video_name": "6f39ef54-4f22-5687-ab3a-927514c5eabd", "text": "Tommy Wiseau with a submachine gun running away inside a hotel building. Scifi, cyberpunk. 1990s film "} +{"id": "6002170", "video_name": "82b8c93c-3de5-5969-9c62-fa317993a4b7", "text": "superpotato with one eye and red cloak "} +{"id": "0004029", "video_name": "01c81a82-7a15-5592-8a29-5c87dd5c2e0d", "text": "a japanese car, supra, with neon lights, drifting, on a mountain, night, drone shot, fast and furious scene "} +{"id": "6002299", "video_name": "bc856445-04f3-5752-af9e-8b499b3561f3", "text": ", is regarded as the founder of Buddhism "} +{"id": "0004334", "video_name": "07521c50-56e9-57ac-a952-177cfbe47a71", "text": "man in black coat getting covered in explodion and smoke on street with colorful tenement hauses around, photorealistic 8k "} +{"id": "2005488", "video_name": "b4e46d3e-1085-5d9b-8221-9a58c4728648", "text": "Depict the king looking tired and hungry as he travels,4k "} +{"id": "2004607", "video_name": "c2b8fe0a-d006-5d38-af6e-2290d56acde2", "text": "Fingers move strongly, bend, straighten, palm, object rotates, add shine and highlights "} +{"id": "1005520", "video_name": "65a182f1-896f-51c3-9446-1372c51d7ee8", "text": "cute dog underwater among other fishes "} +{"id": "1005526", "video_name": "65ba1d7d-595c-5599-8b36-ea21120fd211", "text": "Moving the camera lens from far to near "} +{"id": "6003760", "video_name": "d9c3c0d4-645d-5b1d-bf4c-e76ddb1be988", "text": "A vibrant black rabbit with red eyes, a dark style flame background "} +{"id": "3006365", "video_name": "4ac8a14f-6db2-5646-bdd2-fedcaa65a3b0", "text": "Simferopol city, the Council of Ministers building is on fire "} +{"id": "2007973", "video_name": "652a83a4-88eb-5215-ae14-880d42ac5581", "text": "3d animated girl slowly tears hair slightly movement "} +{"id": "8001066", "video_name": "0c4451eb-a573-54c0-9fac-b7de25412967", "text": "Their investigation led them to the remote Isle of Shadows "} +{"id": "1005169", "video_name": "5f250f08-f395-5444-8d83-8a67284774be", "text": "show a gray and blue hawk, with yellow legs, on a polished white granite floor, 8k, 16:9 "} +{"id": "3003796", "video_name": "90890c57-114f-52e5-b1cb-1d740d517b1e", "text": "obese man in a green suit pushing his way through a crowd, fast movement "} +{"id": "2005378", "video_name": "fc55fde9-3c72-5742-b005-3a5621143851", "text": "young athletic beautiful blonde girl wearing a bikini, walking on the beach "} +{"id": "4002426", "video_name": "921831b6-8b65-5854-b67f-030789aba8e2", "text": "It\u2019s 8:05 in California mandelbulb Kodak Ektar astral holographic background "} +{"id": "4002590", "video_name": "e6680e69-c9b4-5712-b6e4-cc19a7d69fb4", "text": "Ghostly fog seeps through the cracks of the house, filling rooms with an ethereal mist. "} +{"id": "1004995", "video_name": "5c568dcd-a214-5515-a991-5e6ce3c7c78d", "text": "full body photo of jesus christ majestic spooky disquieting majestic professional oil painting by Ed Blinkey, Atey Ghailan, by Jeremy Mann, Greg Manchess, Antonio Moro, trending on ArtStation, trending on CGSociety, Intricate, High Detail, sharp focus, artwork of dramatic and photorealistic painting by Midjourney and Greg Rutkowski "} +{"id": "4002948", "video_name": "75879374-f97f-57ab-b8a8-269f047ce6ad", "text": "Earth rotating and dripping bright colored pink, purple, blue, green and yellow paint "} +{"id": "0006707", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "a 9:16 video o a trading guru sitting o a yacht with 2 girls in bikini "} +{"id": "3005892", "video_name": "5f571863-c44f-5443-a710-ea5994e283b9", "text": "a wonderfull woman flying through the sky with long dark blonde hair "} +{"id": "4002855", "video_name": "3242f0b2-8e43-5abe-8c12-b0ce35f06771", "text": "Ivo pogorelich is playing in a supermarket on a grand piano "} +{"id": "2007421", "video_name": "c85baa24-0c11-5f6d-836a-a588639b4104", "text": "there lived two best friends named Emily and Sarah. "} +{"id": "2003198", "video_name": "5d82d572-0691-5df6-86be-b81ad820e739", "text": "michael jackson moonwalking in a hospital "} +{"id": "1005920", "video_name": "6cc1064d-f4f3-5c0b-af07-21b6b8b7ec95", "text": "Yoon Suk Yeol (born 18 December 1960) is a South Korean politician who has been serving as the 13th and current President of South Korea since 2022. on road cycle "} +{"id": "0006742", "video_name": "3218df25-e3f8-5f88-ab59-80c9f9d6b02f", "text": "Cosmologyof Kyoto Art Film Eerie Alejandro Jodorowsky "} +{"id": "1004419", "video_name": "51b03a3d-6e09-5c5e-a687-2f5f51776077", "text": "Picasso painting in a cowboy hat , dessert background, HD quality "} +{"id": "7002673", "video_name": "85386c80-a511-5fc3-9d7d-9b6c682108ea", "text": "imagine animated an girl introduced herself as Saya, claiming to be a wanderer seeking shelter from the cold. "} +{"id": "6004145", "video_name": "cf3e55e6-baed-59f3-b287-63d0f0c540ea", "text": "Falling cherry blossom petals, anime style "} +{"id": "6002670", "video_name": "9cac217a-f3e0-585c-8c18-e0f23678bf6e", "text": "A black Lamborghini speeding down the highway, drone aerial footage. "} +{"id": "1006849", "video_name": "7d250498-dd03-57e9-a13c-671e87ce595e", "text": "a man , bald with a red beard and blue eyes , turns into a god "} +{"id": "8003396", "video_name": "95d7c660-d14e-594c-b38c-76a208f3a86c", "text": "unreal engine and the default value of your dreams "} +{"id": "3005624", "video_name": "529bf9e0-b9c5-5b6b-93ed-935715f62c60", "text": "A person is facing the computer screen, working attentively, and the desk is neat and orderly "} +{"id": "7004121", "video_name": "cb885c2b-667d-57fa-af7f-ab2228df89ad", "text": "what a bottle of alcohol will look like in the future "} +{"id": "7002870", "video_name": "7ca77265-91f2-5fd4-99a0-44dc77378f05", "text": "30 seconds loop video. candle lights moving, birds flying, tree moving, cloud moving, 4K UHD "} +{"id": "8002553", "video_name": "dc20bda9-08a8-5185-8e94-ebde8819aedf", "text": "He loved to make people laugh, but sometimes his pranks went too far. "} +{"id": "4002484", "video_name": "b48537ed-2419-5711-84ce-f41968ed473b", "text": "little kanha cute 3D animated character "} +{"id": "4003585", "video_name": "3ee2fd6d-9c56-5ce6-b79b-b4bdf3e5d8fc", "text": "growth leaves bloom on a branch of a linden tree in early spring time lapse on a white background macro "} +{"id": "6004068", "video_name": "6d4fc215-3926-5a40-812f-d77d93e06cb5", "text": "dolly zoom center of street between building , night city , rain , detail , cinematic , particle , lens flare , 4k "} +{"id": "7004049", "video_name": "1b2d6f75-dfa7-59c3-8173-786a80156071", "text": "illustration of lord ram Message: lord ram (Font: MODERN) "} +{"id": "3004642", "video_name": "a238c90b-3f58-5dd4-88b1-15a320e1da52", "text": "feet stepping on a slime, rainbow colors, first person view, gopro shot, looking down "} +{"id": "1006792", "video_name": "7c6b750c-f20b-5e61-8152-b9ce84755edc", "text": "Custom Sonic 16 bit title screen "} +{"id": "5001381", "video_name": "2edc111c-bbfc-5720-b466-cbdce4e8e11f", "text": "a big smart tv screen in ankme style,16:9 "} +{"id": "2003432", "video_name": "965fa46b-b86c-52dd-974c-c6bb2ff1c318", "text": "viedeo of man sleeping on a bid and covering him self in a wide room and huge bed "} +{"id": "6004746", "video_name": "1a692808-6bed-5a6e-b44a-39f0860e6e50", "text": "3D animation of the Sweet Track "} +{"id": "0006165", "video_name": "279365f8-26bb-5c6d-b73a-09c7ad3e5e25", "text": "Crow and Bird at this time to help the villager peoples find a new source of water. cartoon style "} +{"id": "3003699", "video_name": "986491a6-c4a7-5c9f-bfe0-bd0bd49d6848", "text": "how mercerdes evolved over the years "} +{"id": "3006072", "video_name": "340ebb5f-f2a8-51fb-8754-6baad8e6c4da", "text": "a geodesic dome desert community,someone riding by on a horse. "} +{"id": "0004134", "video_name": "03d71294-1b83-5914-8d37-83fe5ed19bc9", "text": "create a documentry kind of video, scientist creating AI robot "} +{"id": "2007473", "video_name": "a3e63d3d-2cc8-5c98-8444-651aaccfec3f", "text": "an hourglass with red sand running down, with a red planet and sun in the background "} +{"id": "1006363", "video_name": "7493b70d-a8d5-5e0e-878d-923a358bcb8a", "text": "One by one, the group members start disappearing. Use quick cuts and jump scares to create a sense of chaos and panic. Their flashlights flicker, and the mist seems to engulf them. "} +{"id": "3004259", "video_name": "1605a4c2-d358-58a1-8ce6-df5202c0a9f9", "text": "a bad boy getting out of his car and looking at the camera, masterpiece shot "} +{"id": "6003695", "video_name": "8f8b977a-fc48-5f10-9db9-eb48cc1b1888", "text": "a fish is superman and swimming in clouds "} +{"id": "1005644", "video_name": "67bcb7be-9ce5-5809-9566-f5ec68eb838b", "text": "model fashion look kids high resolution "} +{"id": "5001355", "video_name": "caeffab9-ba8d-536e-b185-afd1b6ed37e3", "text": "angel falling,sky,dark,lighting,falling from high, outstretched hand up, "} +{"id": "1003490", "video_name": "40ad28c4-845d-56ed-9805-3c3ee07bea4b", "text": "The sky is foggy, yellow temple "} +{"id": "2007071", "video_name": "4dae2dd8-e79d-5197-be3a-24a56522a20b", "text": "Transition to a grand ballroom filled with vampires in elegant attire. They should be dancing with grace and their eyes glowing crimson. The atmosphere should be both alluring and sinister. "} +{"id": "2005704", "video_name": "35375e58-d854-56fd-8454-af0dd1f71d16", "text": "cosmic Christ singing in a psychedelic metal band, motion 4 "} +{"id": "3005478", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "opening eyes moving arms head baby Jesus in manger filled with hay, uhd, glowing stable Bethlehem, uhd, wide view, high lighting, cinematic motion "} +{"id": "2006738", "video_name": "7504bc48-63be-503e-a5d7-19d50e36717b", "text": "a group of children playing in a puddle in the desert "} +{"id": "0004972", "video_name": "12866f2c-cc92-51d8-96c4-b42f3bfa5073", "text": "a cat dressed as a ninja , 4k "} +{"id": "3006316", "video_name": "15574f88-aafd-502f-a8b9-9bd2b96eeaec", "text": "A little man in a blue hood spins a wheel of fortune. "} +{"id": "0005408", "video_name": "1a5103a6-1ebc-5ac2-85b8-1140c55ad159", "text": "create a 20s video about this earphone holder, "} +{"id": "7004360", "video_name": "f8677713-90ec-5de9-9b48-a278c7f475f5", "text": "a movie about a horse race championship 90\u2019s surreal "} +{"id": "1004123", "video_name": "4c60cd07-0529-5d1f-9917-59bf7c89b904", "text": "A logo for a vlog channel on YouTube is called PRADEEP the vlogger "} +{"id": "3006506", "video_name": "86d2699c-d342-5069-a489-98bfdcac9089", "text": "three scary men in a street by night, big plan on their scary faces "} +{"id": "3005248", "video_name": "8ce74e95-4e80-53fa-b8d9-69467dfedc38", "text": "Glowing neon vines weave through a dense forest, their light pulsating and interacting with the bioluminescent creatures below. "} +{"id": "2006808", "video_name": "a5fa75f8-d7c5-581a-a7b1-0c8b233b93c6", "text": "Psychedelic artstyle in an abstract scene, smiling face, detail, weirdcore, humor "} +{"id": "8003323", "video_name": "10d41da7-4e71-56b5-b2b1-15669f10434a", "text": "Animals gather Exploring the forest while laughing happily "} +{"id": "3005436", "video_name": "32347b67-2430-5afa-b507-d95670bb70d7", "text": "walking people kidnapped by soldier in countryside forest 1970, rough analog "} +{"id": "8003865", "video_name": "21287fe0-ae50-5c4d-b0ee-8c82767c7c72", "text": "warehouse worker acting dead when manager walks by "} +{"id": "0003959", "video_name": "008cd034-c583-5c3b-a74f-bd318e468107", "text": "people working hard in the mine. in van gogh style "} +{"id": "5001962", "video_name": "fb1e035c-0b7b-5096-8dff-c603f129c64f", "text": "A girl shed tears on the painting. "} +{"id": "7003416", "video_name": "2e40399d-5dcd-5234-b1f0-350e66660928", "text": "image of a 10 years old boy "} +{"id": "0005560", "video_name": "1cf16905-adb0-563a-98af-bbe0a59a30f4", "text": "a woman middle aged, brown hair and warm face she is walking alone at dusk on a wooded trail in fall, she is worried she is being followed "} +{"id": "2007052", "video_name": "cbddd9e2-3e55-56b9-98e6-633281ab65c5", "text": "Medieval man telling a story and looking at the camera "} +{"id": "2005271", "video_name": "76bae47a-3fdf-583c-a99e-de5d23daf74c", "text": "Picture of Casper trying to approach villagers, but they run away in fear, leaving him with a dejected look. "} +{"id": "7003746", "video_name": "161bb6bc-b345-5966-8ae3-1f14f6488d00", "text": "i want a snow in the mountain sea "} +{"id": "2003493", "video_name": "795e6d94-cf07-5bc9-9580-d11e74065206", "text": "describe my town \u0110ak Ha in the future with mountains, tall buildings, spaceships, lakes and forests "} +{"id": "2004030", "video_name": "5955afe4-0086-52eb-b7f0-7df319e1492a", "text": "the girl opens her hands, the style of Anna Bachelier "} +{"id": "2006766", "video_name": "d1eda9c9-a2a4-50de-8bac-90b3386013bd", "text": "beautiful woman deciding between paths paths "} +{"id": "8002716", "video_name": "50cbe559-491c-5192-b309-9dda4d9c6ebb", "text": "who asserted that Mu was located in the Pacific Ocean before its destruction "} +{"id": "0004152", "video_name": "042f3d4e-9e50-5550-bd9c-8322d9a30937", "text": "the anime character sweet girl with long pink hair, stands with a knife and smiles sweetly "} +{"id": "1004178", "video_name": "4d59e16d-9e33-5661-b111-5ed2ac029de7", "text": "beautiful blond lady is entering the sea in the morning "} +{"id": "8002308", "video_name": "c221814c-145f-5b38-ae5b-7d33fb6e60f5", "text": "Hyper realistic cute grey monkey in wearing captain america costume for my fassion branding with round glasses funny hat hyper hairy, alchemy, blue,purple, and violet swirled world , award winning studio photography, hyper realistic, cinematic lighting effect, ultra 32K, Extremely Detailed, SMOOTH,Beautiful, 3D RENDER, national geographic photography 9:16 "} +{"id": "2007154", "video_name": "85053e22-72a5-5016-b5f1-5605d4404381", "text": "beautiful woman dancing full HD 4k realistic "} +{"id": "0005299", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "vintage, girl, book, reading, city 1970s "} +{"id": "8003073", "video_name": "f2d4911f-4e46-5de3-8960-ae8d138fc54f", "text": "An engaged woman ran away from marriage holding hands with another man in full view of the public. "} +{"id": "3005142", "video_name": "f5283409-db82-506f-b41d-5289414ab466", "text": "Capture the emotional moments of delivering gifts to individuals in a shelter. Showcase the hugs, smiles, and the sense of warmth and connection during this heartfelt gesture. "} +{"id": "7002464", "video_name": "926ecef3-89ec-5ba2-9cc7-66e30fe1d391", "text": "create a video of a men in a suit doing push up on his desk "} +{"id": "3003459", "video_name": "0686f15a-46c1-53ad-9cc3-54d3864a0a4b", "text": "close up of an helicopter in space "} +{"id": "0005402", "video_name": "1a33409d-18ac-5362-93be-ad6e1c3c35fe", "text": "Their eyes met, and it was as if time stood still. "} +{"id": "7004738", "video_name": "39608da3-25cc-59ca-95b1-6929a1a5bcd5", "text": "an abstract psychedelic mushroom trip riding on a color blast of thick beautiful highly detailed stylistic smoke through the multiverse "} +{"id": "8003718", "video_name": "6fd20366-100e-5a9e-9423-5bbb1eaef40a", "text": "A pretty girl is walking backwards down a busy street\uff0ccamera following, smiling "} +{"id": "3006994", "video_name": "baab6068-1f05-5f9e-b77a-2127fe1176a0", "text": "Interior high ceiling living room wood design animation scene "} +{"id": "4004568", "video_name": "5a96e5b2-41e3-516f-b5ce-0b6766c21e5e", "text": "Caw the crow, croaking in disappointment and frustration, realizing he had been tricked.(Use bright, colorful animation with a friendly and whimsical style.) "} +{"id": "4002525", "video_name": "67ecc303-ce8b-5a3e-9fe0-bc2144faa9ba", "text": "Jeb Bush cranking that Soulja Boy "} +{"id": "4004333", "video_name": "d0eff39d-0c48-5a75-aa91-8b7dbba12ac7", "text": "MASHA Message: Jungles, creepers (Font: MODERN) "} +{"id": "6002637", "video_name": "46089f2d-d85e-548a-98af-b1a5adcea3bf", "text": "porche car in tokyo midnight in city "} +{"id": "6002395", "video_name": "7cd64152-4ca7-5e40-9b23-e32f763a5bd7", "text": "A city divided. The west is always sunny and warm. The east is shrouded in rain and fog. In the middle is the district that acts as the neutral ground for the districts. "} +{"id": "0005742", "video_name": "2076f93e-b344-5d88-a938-92489c0020eb", "text": "A guy in Gucci clothes puts on glasses.Good detail. A commercial. "} +{"id": "2004170", "video_name": "ee4c1a59-5645-5a4c-8789-08107314f4ae", "text": "blue high waves Message: EXPERT LINE (Font: MODERN) "} +{"id": "2004243", "video_name": "fc51dc82-b384-5872-8183-8e6ba45b2252", "text": "boy darkened in black in the middle of a room in a building. camera shot from outside with the other rooms with the lights off "} +{"id": "3006310", "video_name": "eadb5251-2aaa-54f7-95f3-1e4eea3af21a", "text": "Animate this image so the parrot winks and moves "} +{"id": "4003740", "video_name": "6c3fb930-5b40-5667-b840-0a3451539c2d", "text": "light bulbs glowing on n off "} +{"id": "4002906", "video_name": "73b6af7b-20a0-5fe0-89b2-69fc6651aafd", "text": "heaven, golden ornament, shining, light, glow, realistic "} +{"id": "5001759", "video_name": "75b0dc60-80ec-5a1f-b8dd-d93a561e70c6", "text": "A lonely man on a sportsbike riding through the city while raining "} +{"id": "2005463", "video_name": "1f1eb8bd-c495-5787-b9a3-d9d57aa9df28", "text": "Caribbean forest and tribes in background, Caribbean natives lined up against Spanish crew military with guns; Disney Cartoon Style "} +{"id": "1004081", "video_name": "4ba13643-e8a8-53e9-80af-9f231e2c6ffd", "text": "a pretty young girl singing at an outdoor bar in the sunset time , tropical beach with a couple of dancers "} +{"id": "3003374", "video_name": "f0b3b57c-b396-5b2c-af44-481f462d97ba", "text": "a chef is looking straight to camera angle, surprised with his eyes widely open "} +{"id": "8003805", "video_name": "5d0f5d73-4ec8-52ce-a7d8-6392235a1e42", "text": "forest of alive woods in style of modern "} +{"id": "2006963", "video_name": "233627c3-2bb2-5454-ab62-80e5d761521f", "text": "Batman and joker. Hd, realistic, unreal engine, "} +{"id": "4003982", "video_name": "638ce641-1858-555b-92e9-913462339dbb", "text": "The sky was pitch black and there were no stars. The ground was full of dust and garbage, without a trace of life. Dilapidated buildings collapsed on the road, and vehicles and human corpses littered the streets. The wind blew over, bringing with it a biting chill and a stench. "} +{"id": "7002903", "video_name": "b9af1d28-a754-5899-950f-bf0f2f4bd42f", "text": "a cat playing with a corgi "} +{"id": "4004702", "video_name": "6df5cbfc-4fed-5d5a-acdc-691b85f3fa6b", "text": "from behind the camera follows detective John Corno as he crooses a downtown chicago street. the sun glares in the camera lens as cars pass by, cinematic film "} +{"id": "8003677", "video_name": "b8ebd932-9379-5105-985d-4be468f7bec8", "text": "A large sailboat plows the reservoir "} +{"id": "0005803", "video_name": "217ee36b-745c-593a-82ba-eed12bd54062", "text": "Optimus Orion Prime is singing and dancing "} +{"id": "5001281", "video_name": "6131c7c3-1fa1-514c-ba64-47dd6581693b", "text": "His fur was as brown as the rich earth beneath his feet "} +{"id": "4003874", "video_name": "703d8070-7adc-5e2d-b34d-656944f557a9", "text": "expansive view of green alpine fields with gentle air and gentle leaves and moving clouds "} +{"id": "1005733", "video_name": "697b38f8-108b-5ae6-9033-501a5427b843", "text": "A girl looking carefully at the camera "} +{"id": "3005231", "video_name": "d9ae5fcf-84f5-5a19-9c7a-3190dd01309c", "text": "cooking eggs on a frying pan in a beautiful French kitchen with the Beautiful maid watching. "} +{"id": "0004364", "video_name": "07d2b4d5-7478-59fb-8d12-a8d479c8a47c", "text": "Create a blurry dark background where nothing can be seen. the screen then becomes sharp and focussed with data points moving across the screen like a shooting star. The data points are neon in style. "} +{"id": "7003844", "video_name": "da4be5a1-697b-5cc7-a487-26176b99f0d8", "text": "girl walking alone at jungle road and lot of tree flowers "} +{"id": "1003582", "video_name": "41fa5160-a8d2-5fab-8b8e-d52914c27622", "text": "jellyfish graffitti swims off train car, camera zoom in, cinematic, Hyperrealistic art RAW candid close up photo of an ethereal neural network organism, divine, "} +{"id": "7004274", "video_name": "e268d2b4-c39d-5969-b78a-1028d8319e3d", "text": "a guy is streaming live trading with 4 pc showing chart in front of him. "} +{"id": "4002826", "video_name": "fb6c83ff-e1b2-5cf4-a065-62fe391ebc6a", "text": "create a 2 minutes video of a super cute teddy bear seating in a shadow of a tree with fireflies around "} +{"id": "8002208", "video_name": "1e7cf9fd-d0e3-5098-b34f-ac9c365157c5", "text": "Strong wind blowing trees, leaves falling, thunder and lightning "} +{"id": "2005729", "video_name": "b86bf887-43c4-546e-89ad-7fa8d2480adf", "text": "another world in meditation, open your mind "} +{"id": "4004300", "video_name": "f657f8b8-8011-568b-b428-bcdf3eecaafd", "text": "taylor swift and ed sheeran holding hands "} +{"id": "6003064", "video_name": "1bff0163-b95c-5995-b5ba-c813c1faa63c", "text": "I woke up this morning to the sound of a beat "} +{"id": "6004297", "video_name": "acba8d7f-f67c-5ddc-8cf2-0803c74083c6", "text": "blue water devil springing from foamy waves "} +{"id": "0006924", "video_name": "35678897-a294-5f3e-9efa-a2e1b521cb1a", "text": "Cold light envelops his body as he disappears into icy darkness. "} +{"id": "2003999", "video_name": "42ed05b4-444a-51bf-a85b-1d10c4ac5fb9", "text": "the green florest in the alien planet with some criatures "} +{"id": "7003320", "video_name": "a6cae96a-433e-5d68-b2c4-3e797a7533dd", "text": "unknow guy playing drums in the church, night time "} +{"id": "7004783", "video_name": "a5db71f8-f6bf-566c-81f1-39ea80ef96c5", "text": "an ancient place, battlefield, cold environment, two war armies, realistic, cool, epic environment, good quality "} +{"id": "6004795", "video_name": "209817aa-e60e-5bb9-8452-cb1b5829b5e3", "text": "fantasy ball of flames background cleary sky digital illustration flames moving "} +{"id": "2007480", "video_name": "fda7e23f-207f-5d48-b63c-86b2b1f8e804", "text": "the skatboard is flipping and the leg is moving "} +{"id": "8002028", "video_name": "d4e8fb9f-b9e7-50f7-8ec6-871fc1d0d556", "text": "prompt a beautiful woman walking in the street "} +{"id": "1005700", "video_name": "68d2583c-961c-513b-8e8a-b9644c122297", "text": "sight from the beach with some palm trees at the left and the rights side and gentle movement of the water on the beach, presenting a relaxed vacation atmosphere in sunny light. "} +{"id": "0004116", "video_name": "037a9a36-024e-5389-9ff9-2aa11fbfb9a4", "text": "king sitting under tree near a river with a beautiful goddess walking on water nearby "} +{"id": "7004199", "video_name": "59ea8196-3880-54c6-b4a9-ed47651441fe", "text": "The two men from \u201cThe Ambassadors\u201d, a painting by Hans Holbein the Younger from 1533. Both are on mobile phones "} +{"id": "1003417", "video_name": "3f190665-2a2d-52db-838b-75da636f4bb1", "text": "abstract alcohol ink ethereal texure flowing softly "} +{"id": "3005045", "video_name": "6363dfb2-4631-5c57-b4dd-f230ac368804", "text": "a lonely island in ghe middle of the sea "} +{"id": "6004388", "video_name": "5c17843f-c147-5bf8-935b-f3205cf9cc28", "text": "make this man look left and right "} +{"id": "3005081", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "Generate an hyper realistic depiction of the Battle of Gaugamela, showcasing the intensity and scale of the conflict,full hd "} +{"id": "8003071", "video_name": "8cb7a61d-b564-5efb-a7c8-e9f4ace432f8", "text": "Andy Warhol speaking to the camera, 2023 Barbie Movie "} +{"id": "1003435", "video_name": "3f6fb8f7-b112-59e6-849c-7ab71589ef51", "text": "a taco stand in the streets of Paris "} +{"id": "3006588", "video_name": "c5d67707-5fd6-5682-b591-896e5893acbc", "text": "create a video of monkey wearing red funky sunglasses and skirt laughing at the lion disney style ar 16:9, motion 3 "} +{"id": "2007112", "video_name": "a207343e-c812-5dd7-9415-8aeab98b9930", "text": "retro style anime couple dance in a cosmic starry environment, fantasy love version "} +{"id": "2003066", "video_name": "5d578586-8d1f-5d33-a7a0-46cf7d5c1079", "text": "A windy day in front of the Taipei 101 "} +{"id": "3005294", "video_name": "88b13847-fe34-56ad-9577-ffaf5fc6d14c", "text": "car on the water 100 second "} +{"id": "8002763", "video_name": "96f440f3-b51b-5fc9-8c60-86e8b778950c", "text": "in the morning and the weather is sunny,the family are happiness at outdoors and playing in the large park "} +{"id": "6002940", "video_name": "4781553d-2294-5bac-b0ba-3a2b663ba7c5", "text": "rough ancient sculpture eyes crying, detail shot "} +{"id": "7003913", "video_name": "7c32d5ea-e506-5f19-9c5c-b9673b57282b", "text": "Aerial view of a grey cityscape "} +{"id": "4003686", "video_name": "1a28fe7b-c2bc-59de-a643-b7ba618bf814", "text": "cute face mom in home and cooking and talking focus on face 3d animation "} +{"id": "2007204", "video_name": "8db810ad-8d08-51c2-9aee-a2fcf22e314b", "text": "create a movement of drink tea "} +{"id": "7003923", "video_name": "d60054f5-533d-5ac0-a41b-01fae70d0368", "text": "a beautiful girl transforms into a cat, by annigoni "} +{"id": "1006981", "video_name": "7fc1ca6f-18fe-5cbf-977a-090ec1b885b6", "text": "Hanging garden of Babylon with birds "} +{"id": "2003797", "video_name": "adc9e1f2-54ec-5c0a-a478-b8ad1d3112eb", "text": "A panda in a forest next to a river "} +{"id": "3003727", "video_name": "b64141f7-b841-5195-a453-c2eb7327e9a1", "text": "a robot flying in a morden city in 2080 "} +{"id": "1006663", "video_name": "7a0f27f0-3256-5d32-b3b7-f599e7069e24", "text": "woman driving fast a rescue car on a street, image in Front, woman smiling, "} +{"id": "8001580", "video_name": "1f3774eb-b0a1-5e98-9a1b-b5f25ecc00de", "text": "sonic runing in the street to deliver pizza "} +{"id": "8001807", "video_name": "04af46c7-7520-57bf-9c09-69b00a4ccbca", "text": "Jacopo Pontormo animation of a woman eating a red apple "} +{"id": "1006003", "video_name": "6e4fb1fa-d951-558d-8a14-31467eafe072", "text": "The magical axe made his work much easier, and soon Ravi became the wealthiest woodcutter in the area "} +{"id": "5001993", "video_name": "a85a6e06-4d74-5fbc-b036-35b31fa24e9a", "text": "waves crashing . Man standing. Hair blows in wind. "} +{"id": "3004216", "video_name": "fc9381d9-8f35-569b-ac00-34c5d56756d3", "text": "panoramic view of a small metropolitan school classroom with several basic students in the back, sitting in their desk attending the class "} +{"id": "4004745", "video_name": "ea6f4fad-d3fc-570b-bb85-da458c1f599f", "text": "black and red fighter jet, red letter X on it, glossy texture "} +{"id": "3004955", "video_name": "75d0c952-3c7d-5045-a5fb-53f2e5dd6e58", "text": "3D Animation traces the faded lines on the dusty map "} +{"id": "3003661", "video_name": "08050726-f162-585d-a051-04b57404861d", "text": "a flag from Argentina turning into a flag from the United States, highly detailed, cinematic "} +{"id": "7004803", "video_name": "fc28ff71-9682-561d-9d87-f216cfd3e80d", "text": "winter couple sitting on the bench flowers dropping on them birds whistling "} +{"id": "0006079", "video_name": "264a60c6-db04-50ef-ba2f-528f2aab0069", "text": "book turnsing into a tv animated pic bright blue, purple yellow, red orange, purple, blue with a gold grill "} +{"id": "2004693", "video_name": "eba6eb3f-5ffc-5c70-91c4-e8ba414f4a19", "text": "a moose running a cross the river, hyperrealistic, proffesionlal Nationa geography video, 8k "} +{"id": "2003517", "video_name": "41aed298-81df-5efb-8573-8b7c91b0819a", "text": "Will Smith eating a hamburger in a diner "} +{"id": "5001221", "video_name": "b830ff62-d541-5fc3-8c36-5565729462fd", "text": "One person is looking at the mountains in the distance, There is a river at your feet, There are clouds on the mountainside "} +{"id": "7004517", "video_name": "c4c7476d-8cad-54bc-a763-a9cce8f26a53", "text": "a disney cartoon of a happy anatomical human heart "} +{"id": "2007921", "video_name": "c7a86586-62a9-56d3-b71d-4b6114513d0f", "text": "high quality rattan furniture crafting by hand, 4k, luxury setting "} +{"id": "0004012", "video_name": "018c2a32-358f-5234-81e2-63c995e62116", "text": "Roses walk in the garden and laugh "} +{"id": "3005599", "video_name": "bd590a44-89c9-5b76-8e24-0f42ddddf356", "text": "Create A majestic humpback whale breaching out of the water, displaying its immense size, in the sea, 8k realistic, HD quality, high deciles and good looking. "} +{"id": "4003646", "video_name": "fa564e47-27d5-5d79-aa57-ab8ad05bfe7b", "text": "A dramatic painting depicting Napoleon Bonaparte leading his troops during the Battle of Austerlitz. "} +{"id": "0004844", "video_name": "1027b57a-b8ae-5b3b-909d-33b3c1179868", "text": "beautiful indian model in lehnga dancing in round formation "} +{"id": "4002917", "video_name": "832dc473-340c-5e8d-8ded-0bd45897a007", "text": "A soldier in uniform belly dance "} +{"id": "7003544", "video_name": "95dca12d-1c45-57b2-85d8-e657035d2c99", "text": "found footage of demonic werewolf stationary in the subway "} +{"id": "4004382", "video_name": "cd7dfb14-774c-5e1f-a946-1c6f2a439f83", "text": "Gojo eyes from Watching Jujutsu red "} +{"id": "0005246", "video_name": "172c8e80-5196-5319-8140-906be6a1171c", "text": "an african player striking poses wearing full European kit showing off the new season design studio advertisement style "} +{"id": "0004832", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "Crowd at piano concert clappin standing ovation "} +{"id": "6002210", "video_name": "dce2809b-b374-58d3-8bb3-5977682a1361", "text": "a woman, cartoon character, waving hands to the camera, smiling, white background, endless background, 3d animation art style. "} +{"id": "3005804", "video_name": "3da7113f-4fd4-5bd5-8a71-5032cd063f8e", "text": "a person is summoning the sword from its body and the sky is dark blue and he is standing against the monster "} +{"id": "2005549", "video_name": "9e64a8a9-a8b6-5f05-a952-318282a3afb8", "text": "1970s a super 8 golden toned arthouse shot of:\n\nFrame 5:\nA medieval princess, with light brown hair and enchanting green eyes, enters a garden full of roses "} +{"id": "7003595", "video_name": "bbd3eba4-8b48-5894-b0e1-b419bac1493f", "text": "phaser, dead, battle, action, war, spaceship, wreck, oil painting, hd quality, UHD, hd , 8k, hyper realism, panned out view resolution, spaceman, ancient, laser, explosion, many colours, spacewar, saucer, ice planet, rotting, rust, pew pew, beam, fire, explosion, dead planet, firepower "} +{"id": "2005767", "video_name": "8bef338a-a8a4-516e-8d73-dd0c20903310", "text": "spooky abandoned train station in forest, overrun foliage and vegetation, art house, horror, gloomy, 60s "} +{"id": "1003818", "video_name": "468bbff7-4fd8-5a72-ba99-8ff805db9482", "text": "european style locomotive passing by a red brick bridge "} +{"id": "1005168", "video_name": "5f1f27d3-8114-5f03-b0b2-ceb788879c12", "text": "sun blast in the solar system "} +{"id": "0005744", "video_name": "20782a23-2977-5ce2-8e07-3c33fbac08b5", "text": "A pineapple with legs runs around in a circle. "} +{"id": "7002920", "video_name": "3d8d8e4c-ae81-5135-806e-8363945956ae", "text": "A group of men in chemical protective suits face soil contaminated with nuclear wastewater "} +{"id": "8002488", "video_name": "b3779856-ac09-5545-b664-9b1a054c822a", "text": "An underwater gigant creature with bright eyes and sharp teeth, In the background you can see a submarine in the darkness "} +{"id": "1006427", "video_name": "759addf3-7b28-549c-88ea-9599013485ab", "text": "cute cartoon curious kitty who always explore new things "} +{"id": "0005417", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "cats small and muscle can flay blue eyes and orange colors with black body "} +{"id": "2007868", "video_name": "11d6ba34-457e-577b-a838-b461d601e3f4", "text": "Subaru goes outback in the mountains and rain "} +{"id": "2006242", "video_name": "b5c14c3e-e900-5016-a85f-5071be4c55cd", "text": "At this moment one of the computers burst into flames, shattering the moment of triumph with a renewed realization of the extraordinary danger they were all still in. The beautiful oriental girl Ling, wearing her spacesuit, grabbed the Master Key and with that, scrambled out of the octagonal shaped computer room as the remaining computers began to explode with showers of sparks and shards of searing metal "} +{"id": "7004845", "video_name": "699eff64-a3a2-5d8c-b7df-2b1b29bfa288", "text": "cozy winter cottage with sparkling stars in the sky "} +{"id": "0005943", "video_name": "23a173ae-af8e-566a-ba3c-56f2c72268a9", "text": "a man spilling and drinking his coffee messily "} +{"id": "7004237", "video_name": "8f1d8053-cb90-5240-aeea-f281b9a69ac1", "text": "Describe Flora, the flower fairy, as she emerges from the magical flower. Use vivid imagery to portray her ethereal appearance and demeanor "} +{"id": "2005878", "video_name": "325f6cc3-2b8a-5ce1-8163-eca3901ecf0d", "text": "keep the background the same just change the faces. girl short black hair and guy brown hair Message: 1 Attachment "} +{"id": "4003981", "video_name": "d717332f-6b4a-5e3a-939c-a5f78d0106fd", "text": "Monkey packing a knapsack while Elephant helps by carrying it in the forst with3d style "} +{"id": "3004433", "video_name": "3062116f-6a67-5ab1-a6f0-58dd8bb302f4", "text": "a low left to right panning far shot of the hollywood hills at night, "} +{"id": "2005403", "video_name": "32ea48fb-5f02-5c56-b350-b3d11579363f", "text": "Luo Ji is a boy, and the scene switches to a forest in another world. Luo Ji is wearing a black robe, holding a silver dagger, followed by a black wolf with wings. Realistic, 4k "} +{"id": "5001447", "video_name": "74d02250-7569-5143-8f31-d57a22c37646", "text": "A man with a big sowrd cating another one head "} +{"id": "0003677", "video_name": "418414f6-46bc-5831-9136-731d7dd995e2", "text": "warlock birthday Happy fantasy magic cake "} +{"id": "7002845", "video_name": "efbf543a-3a25-598a-99f2-d73128034691", "text": "Witness locals gathering at the tea stall, engaged in lively conversations. Explore the role of tea in fostering community bonds and facilitating discussions about everything from politics to daily life. "} +{"id": "3003910", "video_name": "1a0c3b7f-e087-5e1f-9ed2-f2edc2880049", "text": "happy danish post officers painting graffiti on a red mail truk, infront of a post office, multicolored clouds of spray in the air, 1984, old vsh "} +{"id": "4002298", "video_name": "2a547c3d-a62e-5210-88c2-f05e209f6689", "text": "a beautiful American woman converter to Hinduism in saree "} +{"id": "3006783", "video_name": "29a3c7f8-549d-514d-8029-5bd4f12bae98", "text": "man showing NAFDAC number on a bottle of coke "} +{"id": "0003934", "video_name": "00172bf9-f56f-50aa-a8b2-84adf05d691e", "text": "girl wearing 1970s clothing standing in front of a burning building "} +{"id": "0003884", "video_name": "452a44c7-b4b3-5ae0-b269-d8100f3fa815", "text": "fast flying forward through the galaxy "} +{"id": "8001425", "video_name": "716671e4-39ed-5b41-bdf3-7310a5211552", "text": "Little Blue carefully carries the bird with its mouth to a warm place. "} +{"id": "5001315", "video_name": "86f6c462-19e8-5cb6-acb1-433844c706a8", "text": "Sammy finding a baby bird named Bella trapped in a thorny bush. "} +{"id": "4003032", "video_name": "b8fb9790-bec6-59cb-ab78-9c474469e986", "text": "in a cozy meadow nestled between two great oak trees 4K "} +{"id": "0003528", "video_name": "3f0385df-975e-569f-b6b4-6acfa67708c3", "text": "lady in gown slightly blowing in the wind, will she views the morning sunlight "} +{"id": "2005424", "video_name": "9e7c6998-7059-5846-894d-388fd869a541", "text": "Create a video of Santa Claus driving his reindeer carriage amidst a starry sky "} +{"id": "1004167", "video_name": "4d29e0b8-4fd0-5c7c-98da-ebc10d0e5ca0", "text": "35mm aesthetic,shadow,guys repairing a space craft in the wild, forest, foggy atmosphere, large vue of the scene "} +{"id": "1005090", "video_name": "5ddb4699-454e-5d47-9298-756a49d91a1f", "text": "Generate a description of a beautiful cat and a charming rabbit "} +{"id": "6003253", "video_name": "0792b5d9-64fc-5161-854e-ee58d41e2fe2", "text": "the world of fantasia with falcore flying around it "} +{"id": "2003730", "video_name": "8e403151-27a8-5eb9-a023-ddd6811c2705", "text": "One sunny morning, Mama Bear decided to make a batch of delicious porridge for breakfast. While it cooled on the kitchen table, the family went for a walk in the woods. "} +{"id": "0003038", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "stone cold steve austin with a mullet driving in downtown dallas in a red pick up truck "} +{"id": "7003109", "video_name": "a3941dab-4d82-598c-994b-dbe6ae0765c0", "text": "a cat and a chicken in forest, animation, studio ghibli "} +{"id": "7004626", "video_name": "f336be2c-a854-52a0-82ab-09ffd54acc39", "text": "young welldressed man taking side a middle age poor man and stand "} +{"id": "5001113", "video_name": "0d1b37a3-6425-5e20-80f8-2308b190716c", "text": "blue sky, green meadow, a girl in a beautiful yellow dress sits with a flower in her hands "} +{"id": "0006649", "video_name": "304c6c85-6662-59aa-8251-292ec54bde3c", "text": "camera moving around an amazing 22 year old beautiful female glowing translucent ghost in a moon lit Halloween graveyard, amazing smile, highly detailed outfit, night time, colored lights "} +{"id": "0003085", "video_name": "36b8e793-ce4f-55c0-882c-baf7b4dae821", "text": "forest creatures sitting on a log, in the style of studio ghibli "} +{"id": "3004083", "video_name": "580f7df3-6d06-5617-b8a4-10b2ec74743a", "text": "A gold prospector is finding big chunk of gold. "} +{"id": "7002241", "video_name": "a2bcc8a9-b732-51ef-a68c-51b3ab08ed73", "text": "a bengal cat brown spotted rosetted wearing ninja Streetwear talks, highly Detailed, full body, Vivid Colours, Cinematic Dramatic Atmosphere, Sharp Focus, Volumetric Lighting, Cinematic Lighting, Intricate Details "} +{"id": "0005151", "video_name": "15a4ac73-fe3e-5252-86f1-a8719ce51281", "text": "a cute 3D animate tiger wearing christmas costume holding popcorn and movie tickets "} +{"id": "3003614", "video_name": "a3e854e8-bba1-5988-b117-fdcc6584c008", "text": "little hedgehog walking in grass, 4k, photorealistic "} +{"id": "2007552", "video_name": "752a1485-052a-58eb-a4c7-d6d15ad31671", "text": "A small cozy crystal house stands in the middle of a dense night magical forest. Ultra beautiful, aesthetically pleasing, elements of magic and enchantment. "} +{"id": "0005035", "video_name": "137abeb0-08fb-54c1-9e3c-fd8fe43dbde5", "text": "oniric vision of a old city in jodorowsky style "} +{"id": "2004611", "video_name": "e0ceb867-371f-593f-8c18-b6ac5aa64ce9", "text": "Four camera operators are running away "} +{"id": "1003063", "video_name": "384d0c61-5ff0-5e30-b6c2-5fcd922cfe36", "text": "Zombies walking towards the viewer. Photorealistic HD Texturing. Camera Zooms in Fast to the Tormented Face of a Freshly Turned Zombie Man. "} +{"id": "7003236", "video_name": "03318859-e13b-504e-9af4-c21995861696", "text": "A frog sitting on a log "} +{"id": "0006485", "video_name": "2d4f70ab-8e34-5c71-ba7a-c3eccf488487", "text": "Sam, with tears in his eyes, clutches the letter tightly. "} +{"id": "0006252", "video_name": "29539a8e-91d5-562a-a330-d2e7f7ed1e81", "text": "generate me a image of a muscular guy meditating in deep snowy mountains "} +{"id": "3004126", "video_name": "280a3606-760f-58df-a8e7-aae3778084d2", "text": "Silhouette of a person, in a dimly lit room, hands raised as if conjuring, screens around displaying incomprehensible code and graphics, magical aura, shot on Kodak Portra 800, 105 mm f1. 8 "} +{"id": "3004850", "video_name": "206c4c5a-0f6e-52a8-af81-d4cbc12290ed", "text": "a girl running away from a ghost at night, manga panel, one piece style "} +{"id": "3004052", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "Girl and boy in love looking at each other in a big park, snow mountains behind big trees all around "} +{"id": "2003292", "video_name": "5263328b-5550-5d00-8438-77678cbad798", "text": "many kids wear fatasy clothes walk in sunny fatasy mushroom village "} +{"id": "4004295", "video_name": "39007694-c74a-5876-bf9e-ba82482d8de9", "text": "Create a video where you can see a teacher in the classroom with students, giving classes. "} +{"id": "7004241", "video_name": "78a60a67-63cc-5944-91bd-5d9ed1e19f4e", "text": "a robot dog gets his very first robot bone "} +{"id": "2005645", "video_name": "70c16773-53c8-54d1-bae1-0aafb4b3b3da", "text": "man and woman flying in paradise "} +{"id": "1004799", "video_name": "58b6c8c4-93de-5052-bff7-6e7150610424", "text": "Future urban scenery and greenery that match the wind and people passing by on the road ,4k ,Hyper intelligent render, cinematic shot, ar 9:16 "} +{"id": "6002336", "video_name": "cb61d954-36cb-5ba8-a09e-b79fbff77ec8", "text": "hugging lily and tom on stage. Same lily and tom "} +{"id": "0006392", "video_name": "2bbc4a9c-0eca-59d4-b459-84636153ea9b", "text": "The planet Solaris covered by a purple viscous sea. "} +{"id": "3003328", "video_name": "8da132f2-6c15-5cad-b38b-0c9cc8dca7d3", "text": "a moonlit clearing with gnarled trees and an epic transformation scene as hillbilly turns into the Hillbilly Hulksquatch "} +{"id": "2006090", "video_name": "b9190035-c42b-59d7-9ddb-c45f97af99e5", "text": "aerial view of green farm, cinematic videography, highly detailed, ultra realistic, octane render, hyper realistic, outward zoom, fast forward, 4k resolution "} +{"id": "3004527", "video_name": "b86e684d-a14b-57ca-abc5-47624a5397dd", "text": "Elon Musk is training for MMA "} +{"id": "1004305", "video_name": "4f8ed9d4-3ac4-5efa-a064-9ee632b6a55c", "text": "women talking on a part boat from an ancient aztec civilization floating down the river "} +{"id": "3004141", "video_name": "6c41a683-484c-57e3-ad63-c511319d6b02", "text": "A living drop of ink, a cartoon shape, like a character. "} +{"id": "2003558", "video_name": "afbd2d92-42f0-5252-87d0-12e3f85b83ee", "text": "advertising for Instagram, post garlic for vampires, modern design, white fangs, smiles, golden ratio, complex design, many elements, text, flat design, icons "} +{"id": "8003498", "video_name": "bbc67270-fd73-5199-bce0-b50a4ea3f256", "text": "gihbli studio anime type girl In futuristic city "} +{"id": "4003813", "video_name": "cafc95df-b235-5de0-a2b3-5792ed6341b1", "text": "make the man at the bottom juggle the oranges "} +{"id": "0005888", "video_name": "22d529aa-8155-5a38-96b0-fb05732fabe3", "text": "A TV showing a scene from Baywatch with david hasselhoff and his tv son hoby, ultra hidef, 32k "} +{"id": "2007673", "video_name": "fd0ff484-38f7-5ae0-8d2b-ead295cd7142", "text": "Beautiful Angel wearing a golden robe looking at the camera, flying up into the clouds, perfectly formed wings, ar 16:9, 8k "} +{"id": "2004482", "video_name": "e6fbe9eb-1195-5f7c-b38a-2dadcd84a804", "text": "lofi music video of japan cars on road "} +{"id": "0004849", "video_name": "103dc343-19d3-511d-b747-f3cfb3882789", "text": "a soccer match is played in the foreground, in the background a volcano is erupting, hyper photo realistic "} +{"id": "6003769", "video_name": "d14af15d-4556-5560-8636-d99efdf453eb", "text": "Lily was known for her insatiable thirst for adventure and her fearless spirit "} +{"id": "0006088", "video_name": "266ac691-afa9-57a1-a990-c7052cf73365", "text": "a space rocket on the ground day time green patches of grass on the ground disney style cartoon style too "} +{"id": "7004939", "video_name": "eebdd6ec-f166-5495-a254-a47ca930678f", "text": "A weighing scale showing a higher number "} +{"id": "7003427", "video_name": "d653b1f5-0d97-539c-a1a0-ba5b7cff2995", "text": "X prime minister imran khan in jail and sitting on chair "} +{"id": "1004382", "video_name": "50f02c96-2721-5b46-b04b-ffd96e801f0e", "text": "Morty Smith sitting on a couch and gaming at a computer in a poorly lighted room "} +{"id": "4003758", "video_name": "2c9a2181-f4b1-5f16-91a4-d6eaea43388d", "text": "fairy lights, grass Message: center (Font: MODERN) "} +{"id": "8003114", "video_name": "431c14b0-a4e6-5724-98fb-4178615463ab", "text": "a girl in the forest with a seed motion "} +{"id": "7004949", "video_name": "09d3ad70-bd81-5683-bcbe-02813fde8a9f", "text": "Something is moving fast, captured by a surveillance camera, something unknown at night, a very terrifying scene "} +{"id": "5001761", "video_name": "b340db91-2268-5d8a-b77a-5559af87d839", "text": "two space warlords in a space and sailing the space ship "} +{"id": "2005745", "video_name": "477b12b5-4223-52e6-aff8-a6c4b0dcd30c", "text": "A boy and some tribals are hugging in the forest. "} +{"id": "4003877", "video_name": "59ccbd08-dfcd-59ba-8f21-3572db7bbc82", "text": "tarot card reader woman palcing cards down POV "} +{"id": "0003258", "video_name": "3a3886d1-b9bf-5d07-afc5-a6c77d8bcf96", "text": "Cassette player placed on a desk by an open balcony overlooking a city at night, city lights twinkling below, curtains billowing in the urban breeze, a mix of vintage and modern, Digital art with a mix of realistic and stylized elements, "} +{"id": "0005458", "video_name": "1b182453-da1f-50bf-a631-4b8a67a3587a", "text": "2d cartoon style, a cat is eating a fish. "} +{"id": "1005012", "video_name": "5cb6ba98-6795-5b13-8dc3-3758c039aa6e", "text": "vintage 1950s people at the beach "} +{"id": "3006340", "video_name": "cd8db996-f7c2-5115-a916-899ca66b54b8", "text": "4k fantasy fire scene like mordor with a dragon flying in the background "} +{"id": "0004480", "video_name": "09b6f0b5-e2ed-53e5-9d8d-3d1940976cb0", "text": "25 year old beautiful girl standing before the grand entrance of the castle, with her 40 year old father Maurice at her side, hesitantly offering herself to the Beast. "} +{"id": "0003102", "video_name": "37088ee2-03c1-5893-81d0-a43a3c975f7b", "text": "A snowwoman holding a follow banner "} +{"id": "4002135", "video_name": "2e1a8a25-c2f2-5624-8b9d-6786480e7280", "text": "a brilliant scientist named Dr. Bruce Banner, 3d animation "} +{"id": "8003773", "video_name": "5700b165-e837-5cbe-bb3b-2ad5e3bc611d", "text": "An advertisment for TGI Fridays eating a burger. "} +{"id": "8002573", "video_name": "40d7f286-4865-5de0-8fa3-d5081fffff74", "text": "viking warrior in black hood, dark background, axe in one hand, shield in the other hand "} +{"id": "0005229", "video_name": "16fb8b65-4ce3-5223-9512-0bf2ca78849b", "text": "A shot of a cute turtle swimming down vetrically quickly zoomed out "} +{"id": "3003488", "video_name": "138a1c80-f96d-5f59-9d61-c712dbdafe58", "text": "As the animals worked together, a bond formed among them that transcended the boundaries of their species. "} +{"id": "1006608", "video_name": "790c441f-6312-59e8-83bc-38bc6cab0928", "text": "Church of the Resurrection, is a church in the Christian Quarter of the Old City of Jerusalem. "} +{"id": "8001019", "video_name": "6cdadcc0-1e09-5846-af2c-0ef2e5f0724b", "text": "bees collecting honey from the blossoming flowers. rising sun, Vincent van Gogh "} +{"id": "1004987", "video_name": "5c35e296-4fcc-531d-b80b-9f3d17735aea", "text": "Craken breaks a ship very fast. he has big and long tentackes. It happens during daylight time. Very high detailed. 4 k. Kraken moves very fast. "} +{"id": "4004457", "video_name": "eb43efee-fdf1-553a-afc7-371a81c72f9c", "text": "male, 45 years old white male, with black moustache and slight beard, thinner, dressed in an 19th century informal but elegant outfit, onlooking at the port of Apia, ar 16:9 "} +{"id": "8002824", "video_name": "20d77a2a-f56e-5a01-845e-d05e931336c8", "text": "Young ninja meditating in a waterfall panoramic "} +{"id": "1005397", "video_name": "63341a2e-bd0b-570b-b7db-24d0e1477d83", "text": ": a tall and handsome general standing on the great wall command the army ,int he sun "} +{"id": "3004742", "video_name": "2327740b-af6d-5d1f-b879-aef1040a80ff", "text": "flying over the Amazon rainforest, drone footage Message: HELLO (Font: MODERN) "} +{"id": "0006269", "video_name": "29c27e36-62d5-5411-b6ad-f4835a129449", "text": "the hero say hi on the 2nd floor of the butiful building "} +{"id": "0003734", "video_name": "428e43a2-1779-509d-b44c-b9a721940499", "text": "photorealistic cinematic video of a closeup of an individuals face. the individual is speeding through a light tunnel with dollar signs instead of eyes "} +{"id": "1003438", "video_name": "3f91ee61-5cfd-581d-ac72-f2b87a5002b3", "text": "a young muslim and beautiful girl named Ayesha a lived with her parents in village "} +{"id": "4003742", "video_name": "107e1db0-2e17-56ad-9e2a-921b264c1c5f", "text": "A beautiful female dancing in the snow , night time , high quality "} +{"id": "0003037", "video_name": "35eea4da-ad18-5617-be65-5ce0065f4804", "text": "birth of jesus christ in bethlehem with mother mary and joseph as father beside there is sheperds and kings bowing to jesus and there are stars twinkling and there are angels blowing trumpet besides there is sheeps and horses and goats "} +{"id": "6004549", "video_name": "703015d3-5d37-5655-ba1a-8d81a681c50d", "text": "person who played piano with dark atmospher , in style spider man into the spiderverse "} +{"id": "2003019", "video_name": "98cfb4af-ebce-586d-8425-082e066ee67e", "text": "candles in a dark field Message: light the world (Font: MODERN) "} +{"id": "1006560", "video_name": "783e0228-daa7-55c8-ae10-f0f5299ef256", "text": "edgy photography logo zooming to viewer while spinning, electrifying, magnetic atmosphere, vivid colours "} +{"id": "7002021", "video_name": "ee8671cd-d906-5e99-95a3-8fcf5a38f5bb", "text": "doctor holding a vaccine Message: not safe (Font: MODERN) "} +{"id": "2003285", "video_name": "b68d585b-4156-5c09-a90d-3a03b6ef3516", "text": "old man covered in chocolate, 1980 tv commercial "} +{"id": "8001785", "video_name": "35bd93b5-f54f-591f-a2ec-0296cc242aff", "text": "a boy knowking on a door "} +{"id": "1005606", "video_name": "6717c1ae-1a37-52a1-96d0-abf64e7b67e2", "text": "Poetry and the distance, with realistic scenes that make people yearn for "} +{"id": "0006539", "video_name": "2e5f8d3f-94c7-5a32-a765-695b60d1a647", "text": "anime stars spreading across the universe timelapse "} +{"id": "6003246", "video_name": "1721c7ff-2963-5b99-b8ef-ce8d4b6e498c", "text": "a rainbow unicorn walking, green background "} +{"id": "7004611", "video_name": "6454dc52-7f7d-5419-9e22-447c80f2017f", "text": "a moving tattoo of dragon on the shoulder "} +{"id": "4002849", "video_name": "a5cdee29-3333-54a1-b78d-2f46290e382f", "text": "buildings collapsing on people who are crawling on the ground or running for their lives in a city on fire with a red sky "} +{"id": "1005665", "video_name": "680d124c-1b14-5228-b1b6-3faa471bee5a", "text": "wrath of the lich king, Borean Tundra scene "} +{"id": "1003436", "video_name": "3f846e05-664a-5a38-86cd-d5be85bc04c6", "text": "a young woman is shedding tears in the snow scene "} +{"id": "2006713", "video_name": "43646fe3-e174-5345-bcfa-0f50ddb80280", "text": "the fastest man alive, action cam "} +{"id": "2003417", "video_name": "d0cb8e83-4a5e-559a-9bae-b25ddf675726", "text": "make it good Message: make a difference (Font: COMICS) "} +{"id": "2006403", "video_name": "648946fc-0622-56ec-8565-06b17968b28e", "text": "showing power on ancient chinese ritual ceremony "} +{"id": "0006723", "video_name": "31be16e1-8b19-5967-9f0f-b66c4bbe27a8", "text": "realistic mountains, fog, sunrise, snow, school of birds, man hiking, waterfall W, waterfall Message: 1 Attachment "} +{"id": "0003097", "video_name": "36f358ee-b168-5a2d-af0c-4c5de2680149", "text": "a child walking with his back turned with the sun set as a background in the style of studio Ghibli "} +{"id": "6002180", "video_name": "05ede54e-4458-5cbf-bba9-ccb77a7686fd", "text": "The 11th star wars movie trailer "} +{"id": "0004524", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "surreal background, psychedelic effects, pink and yellow, sunshine, sun rays "} +{"id": "6004565", "video_name": "22ff2f39-236d-5972-b726-e73e2a8ccabc", "text": "woman pointing a place in the middle of a forest "} +{"id": "1005345", "video_name": "623e0d65-57a1-56af-86fc-89136c1e1425", "text": "Create a clip of a sakura tree seen from below, while walking in first person on a leafy path, daylight, romantic cinematic. "} +{"id": "0004410", "video_name": "086e1cb7-a1e4-5966-a7ed-0f616fac062a", "text": "tank rolls through the forest, vintage, cinematic "} +{"id": "2006632", "video_name": "8fd28da9-a93d-5604-9636-3ca63ceed508", "text": "Steeper, dark and deep, stars fall from the sky, wind blows hair, branches sway "} +{"id": "7004819", "video_name": "5e905a49-e018-5c20-846d-f446d0eeeedf", "text": "\u2022 Inside the ship, Zentari aliens are seen manipulating holographic controls. "} +{"id": "8003451", "video_name": "ae7894cc-7873-5779-ab1a-5091a1d6cce3", "text": "a beautiful wall with shadow Message: shadow time from hands of persons "} +{"id": "1004420", "video_name": "51b27b5a-efb4-563c-878e-6b6b1400b2b8", "text": "The Simpsons singing at night, in the car, while driving "} +{"id": "2003387", "video_name": "5db134fc-aee3-5f97-8eb5-abb7ea3fc45c", "text": "realstic man inside a pitch black foggy room with only 1 lightsource walking in circles confused "} +{"id": "4004057", "video_name": "448851d1-49f7-5414-afe6-e053c3e82f66", "text": "Finn( a dog) is having holiday with the "} +{"id": "1004835", "video_name": "595cc8f3-b135-524f-9a7a-3873a6456738", "text": "a close up of man ,side view,he turning to the right side,brave,man,olive green color robe,white clothes "} +{"id": "6002768", "video_name": "151c2cee-b5fa-54d5-8f83-9175a5b1be9f", "text": "Twinkling light surrounds the product Message: 1 Attachment "} +{"id": "7002290", "video_name": "5387e913-9796-596b-9a26-6a1c6325b492", "text": "safari field full of shrubs Message: 1 Attachment "} +{"id": "4002098", "video_name": "cb43a689-da69-5b29-b8ca-fc028dd7a985", "text": "family playing board games at. Christmas "} +{"id": "5001234", "video_name": "d9f0fb1b-a3bd-5fbc-9f85-cd56ec230bd2", "text": "angry Potato. Caricature style. Digital painting. 8k. High quality. Photorealistic "} +{"id": "6003175", "video_name": "a60fd5fe-3e63-5cdb-8dba-66b4aa79dbf1", "text": "enchanting creatures roamed free in a forest "} +{"id": "3005894", "video_name": "23834ae8-382e-589c-ba32-16f59497d350", "text": "A beautiful woman in the prairie "} +{"id": "1006418", "video_name": "75808224-859e-5b4b-bc8d-430f916c6676", "text": "breathing movement, blowing smoke, hair floating in the wind smoothly, "} +{"id": "6004405", "video_name": "097ec9cd-0eb3-5d99-9876-e8008b0e7cc9", "text": "render of glass objects stacked then falling movement camera shiny 4k shine colors "} +{"id": "3004476", "video_name": "c9aacf36-a2d5-5921-94a0-b0016c9130f8", "text": "combined with weather conditions like warm, fading sunlight, mist, or the onset of autumn "} +{"id": "3003776", "video_name": "38f71e73-1ebe-563b-95e3-8685370d5ec8", "text": "Show animated representations of the feeling of missing, art deco style, black, white, red, dreamy, low brightness, "} +{"id": "3006562", "video_name": "bf740aa7-8f0e-5369-937b-64544e1a3306", "text": "a boy in hockey uniform is sad and devastated "} +{"id": "3006590", "video_name": "7c9c6e52-5925-5a05-85f4-a28fe9199224", "text": "As they swam through the dark ocean, Vampire squid Vlad taught lanternfish named Lucy about the importance of adaptation and understanding. He explained that every creature, no matter how different, played a crucial role in maintaining the balance of the underwater ecosystem. "} +{"id": "7002649", "video_name": "7821311f-4eb8-5794-9077-3ce5253e43f1", "text": "add some bubble Message: 1 Attachment "} +{"id": "2003692", "video_name": "1244a27c-2a94-5ebc-b43b-3a0d09298fa4", "text": "a shocking man . Cartoon caricature. "} +{"id": "4002562", "video_name": "247bad79-c838-5b18-80e5-c34155ed7993", "text": "post apocalyptic chicago skyline as the sun sets "} +{"id": "2003268", "video_name": "51a78a3f-a655-517a-84c1-8c3e79b73b9e", "text": "Jesus christ in Mega City One cyberpunk "} +{"id": "7004848", "video_name": "f0c4f647-851f-5095-8fd7-efb5030f1404", "text": "a anime for watching a rabbit in the jungle "} +{"id": "8002354", "video_name": "6e17c6a6-8f37-5719-a322-1754eadf8a00", "text": "car in space on the background of the moon "} +{"id": "5001509", "video_name": "dd159d48-0747-58e4-94dc-e93b1f62a1ed", "text": "a group of children in their new red clothes are playing with firecrackers, "} +{"id": "2004486", "video_name": "8754c246-241a-54bc-846a-2e9361c4993c", "text": "depict a swimming pool with very beautiful lighting, high resolution, vertical garden "} +{"id": "2006394", "video_name": "1d325ca1-d4df-58e6-a3f6-5986d2bdbebb", "text": "Drone camera view above 5 cars with no bug drifting in a long curve on a rainy night "} +{"id": "0004984", "video_name": "12c232eb-4d74-5a13-a5a2-ea2c3f0096b1", "text": "Just like climbing a mountain, life is not easy. It requires determination, strength, and resilience. But with each step we take, we become stronger and more prepared for what lies ahead. "} +{"id": "4004627", "video_name": "01ca5182-ad70-58dc-8182-5b9a5bd9dbec", "text": "mand is sitting at the window. cat near him. window opens view of a night city. rain drops are falling on a window. "} +{"id": "4004736", "video_name": "4a66809e-7b46-5da9-8025-73b63217b9e3", "text": "generate how man is going on the sky "} +{"id": "8001263", "video_name": "90902c25-2657-5ba0-9932-ca983d70d301", "text": "a man pushing through an intense workout, sweat glistening "} +{"id": "3006515", "video_name": "afb4f5eb-a902-587e-90c0-089d8ffb6295", "text": "super Mario sat at a laptop editing a YouTube video.4k. Cyberpunk. Pan camera around the back of him for 360 view "} +{"id": "2006543", "video_name": "41407454-2a50-52ed-b2a7-f1f58cb8e741", "text": "Nikola Tesla newborn on a stormy night in Serbia "} +{"id": "2003300", "video_name": "9af98b3a-a640-57b8-bb6f-9dda64d7472b", "text": "man next to computer bussines money "} +{"id": "3003135", "video_name": "f1156475-0445-515d-bc55-0c59188fb289", "text": "make a tiger and an elephant playing with another animals. medium shot "} +{"id": "1006602", "video_name": "78f80a26-cb56-5848-a989-bc6348bccd04", "text": "Beautiful model in veil material walks in Greece, white Architecture, Background Ocean, "} +{"id": "1003047", "video_name": "3801d4cd-337a-5cf9-ac50-ad8fdd1b32d0", "text": "god eater, eat earth, so realistic hyper myper textur, azatroth "} +{"id": "6004554", "video_name": "8eb9f467-ed07-5802-b834-c214bad67b4d", "text": "indian female dancer in spinning motion with swirling skirt "} +{"id": "6003595", "video_name": "21a0d11f-64e8-50e9-89a6-f99575de8280", "text": "photo realistic scene of elizabeth berkly from the movie showgirls "} +{"id": "0006936", "video_name": "3583e661-4a5c-5fcc-81dc-d455320f1e76", "text": "Many centuries ago, in the splendor of ancient Jerusalem "} +{"id": "2007587", "video_name": "bc7b7e7c-282c-57cb-900e-831e2b4c46bb", "text": "Man standing with his hands in the air on a football field "} +{"id": "1003933", "video_name": "48a1fce8-5e23-5051-aa31-536649abe6dc", "text": "make a spear go from the top to bottom of the football Message: 1 Attachment "} +{"id": "4002090", "video_name": "5549056c-69c8-5150-8abd-91222cf266c9", "text": "bottle of alcohol on a tropical island Message: H (Font: MODERN) "} +{"id": "2005191", "video_name": "7bd53a75-ab90-552c-a191-5a5c8f4c3fd2", "text": "peace symbol formed by assembly of top flags of Nations "} +{"id": "7003251", "video_name": "12bc650c-4975-5c64-82bb-f75a9087666c", "text": "a man drinks coffee in cafe "} +{"id": "1006566", "video_name": "785ab341-df98-52c6-ae5d-13dd17229633", "text": "a video of a firefly squid and jellyfish "} +{"id": "6003373", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "A flying swallowtail butterfly, flower, high resolution, best quality "} +{"id": "0005890", "video_name": "22da3e17-e705-5a52-8009-b2a007661581", "text": "Show animated bears in various habitats, eating and playing, 2d animation "} +{"id": "3004446", "video_name": "f69ba125-e34d-5eec-9ad7-a1e9e039a300", "text": "Ronaldo playing football for 10 seconds "} +{"id": "3003498", "video_name": "42a2a14d-5c24-5103-96b2-e6ddbbefee70", "text": "A radiant Sunday morning sun cast a golden glow over the small town, awakening the world to a day of adventure. "} +{"id": "0003611", "video_name": "406ae5f9-2dd1-5593-ad01-7367fb4d2dbd", "text": "creates a scene for the exhibition of grotesque art, several horror paintings are observed, the style is from the 60s "} +{"id": "2005930", "video_name": "d87ea03b-9c4c-5e12-94f1-af06c72dc26a", "text": "A pair of black trousers, the legs rolled up, at the base of the thigh, suddenly dropped, without a wrinkle, smooth, straight "} +{"id": "2005949", "video_name": "d5846009-c2a9-5270-9d9f-06c2f95d5474", "text": "a deposit where a girl full of cherries comes out desperately knocking on the door, with screams and scratches coming out of this same, then the chairs are moved from outside in a school "} +{"id": "7004835", "video_name": "2d77714e-512b-5363-85df-533a9b9359ed", "text": "spiderman cameo in the barbie movie (2023) "} +{"id": "8001975", "video_name": "5550da27-8f8a-571c-af7b-ff4657916965", "text": "a video of a dog and a cat boxing in a ring at night "} +{"id": "1006579", "video_name": "7887bf4d-4e1a-5daf-92b5-9009226e08ce", "text": "Jungle landscape with the enormous elephant and the tiny ant meeting. cartoon style . "} +{"id": "1006330", "video_name": "73cfb1a3-e4c7-5e2a-8897-c98666f42e23", "text": "a fighter jet over an island, and blue sea "} +{"id": "1005868", "video_name": "6bfed52f-5737-5d9e-b983-647539c612d8", "text": "A little girl fell into the river. A crocodile came from the river and dragged her under the water. "} +{"id": "1004453", "video_name": "5267f775-c0f1-52a1-af9d-a5b194429623", "text": "a hyper realistic video of a female wrestler in a ring jumping from the top turnbuckle "} +{"id": "0006895", "video_name": "34f61564-5152-5f7d-9461-4359e0cf7d7f", "text": "Radiant sunset creating hues of ping and red in the sky landscape "} +{"id": "8002779", "video_name": "09b21a6f-bcbe-5c9a-b2c5-7ebb0064740f", "text": "a cartoon show made for kids learning sessions, fun and playful visuals "} +{"id": "2007206", "video_name": "d9302ff8-7bef-5958-9ff6-01ab1d686d51", "text": "A paranormal tall creature with thick fur all around its body in a tight dark area with less light "} +{"id": "1005153", "video_name": "5ef527fa-c1be-5bf0-89dc-d0fe2882cf96", "text": "A lion cub trapped in lion cage in forest background with ultra relastic HDR quality 12k quality "} +{"id": "7003343", "video_name": "b1e24569-cdc4-5501-a3a0-854f768aac4f", "text": "Please give the animation a 360 degree turn "} +{"id": "0006725", "video_name": "31c99ab1-11d6-552c-9f9f-e7908bda7f24", "text": "a skeleton walking right on a grave yard,30s style camera,black and white,VHS "} +{"id": "6003898", "video_name": "808e6d10-bcc4-5f05-ad61-ad98ff050898", "text": "vecot video of plant and sun smiling "} +{"id": "2007901", "video_name": "adb72fb6-8d37-592c-b6ee-a5b09cd7255b", "text": "a board game night in a cozy house with 12 young people playing "} +{"id": "2007896", "video_name": "7862c57a-f5fb-5393-8b34-ec64e3198955", "text": "taichi floating in the sky with talisman "} +{"id": "4002247", "video_name": "dc8cb07f-953c-570e-88b2-56ab47461580", "text": "Happy New Year to you all on Chinese New Year "} +{"id": "1004916", "video_name": "5aed1cca-13d2-505f-9276-4b1e14d05512", "text": "close up of an old man sleeping in bed, eyes closed "} +{"id": "2007151", "video_name": "8a89e42a-fac0-5ad8-ac51-5cd31202126d", "text": "a dive in a futuristic cyberpunk city ghost in the shell Akira "} +{"id": "1003696", "video_name": "4423fc1e-afb4-5821-90e5-0e247f5d98f7", "text": "A sleek dark spy robot wearing a suit walking through a fall forest. "} +{"id": "1003629", "video_name": "42d9f1fa-b6b1-545c-baa0-08ad11a6ac0f", "text": "Gamer in his dark room with the lights off playing gta 5 "} +{"id": "1004124", "video_name": "4c635946-117f-5b38-b767-0f3dce24e3bd", "text": "a table on the clock at 7 pm ringing "} +{"id": "1005877", "video_name": "6c20fba0-548e-5aa1-953b-08aa908c8442", "text": "wednesday adams dancing, halloween birthday party "} +{"id": "6004785", "video_name": "d2f275f4-dbb1-5223-88d5-3ccb280ffbe5", "text": "wood caban, winter, christmas tree, fireplace, cup of wine "} +{"id": "8002859", "video_name": "7e51230a-7596-5d6d-a687-7db24372863c", "text": "ALBERT EINSTEIN DANCE in stop motion "} +{"id": "4004082", "video_name": "51ac74eb-f74a-5ac2-baa1-1777e65d4c51", "text": "It was very cold, and a boy, about 20 years old, was walking in the snow in a black down jacket and gray pants "} +{"id": "0006095", "video_name": "267f38bd-a339-5916-b2b2-c5917b3af903", "text": "an old temple of vrindavan, during the festival of holi, a woman running through the lanes wearing rich traditional jewellery and saree "} +{"id": "3006770", "video_name": "55a91864-9d45-55d4-8bf4-8df4d8b3008f", "text": "a little gril paly with a little dog "} +{"id": "3006095", "video_name": "010df2a4-04b1-5b0e-91e4-287512eb4bb8", "text": "Be happy, talk, wink Message: 1 Attachment "} +{"id": "2006431", "video_name": "e441a9bd-84c6-54c2-8d89-825cbd08c255", "text": "plates of kebabs and dips Message: DESIRE (Font: MODERN) "} +{"id": "1003678", "video_name": "43cc9b10-8106-5c2a-a38b-e0818c290c14", "text": "a fantasy land at night, two women are dancing under starry sky with a flash of Milky Way and Andromeda. "} +{"id": "8002494", "video_name": "1b46d5d2-a56e-5de6-90ed-02c923f17e71", "text": "a young prince looking the dragon egg "} +{"id": "1005642", "video_name": "67b9d74a-bbb8-5232-9a5a-5f04470b7959", "text": "Jesus crucified in the background of the splendid sky with clouds, hyper realistic image, cinema quality "} +{"id": "4004452", "video_name": "700435ee-bf6e-5a1e-8423-1793b91c1964", "text": "Depict a solitary figure in an empty space, showcasing loneliness and inner void. Use dark and somber colors to convey a sense of sadness and desolation. "} +{"id": "2003530", "video_name": "78886524-8714-5227-b3fb-d95a93c752c8", "text": "fight between young girl and a old man in garden "} +{"id": "4003456", "video_name": "5998bb8a-81a2-56c7-a13d-08d6daf8d7c5", "text": "Lev Tolstoy is walking in the park in a sunny weather "} +{"id": "1004699", "video_name": "57581b05-b1f8-5403-b43b-0f6af39a1cfe", "text": "Elon Musk in Buzz Lightyear outfit in a SpaceX rocket using the social media platform X "} +{"id": "1003982", "video_name": "498e450b-7252-5bac-87f5-085fc22e1276", "text": "The snowstorm was fierce, and the path was covered in thick snow, making it a grueling trek 4k "} +{"id": "2003652", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "make arm movements with natural and neutral movements "} +{"id": "2006072", "video_name": "a0bcdea7-f627-51f7-baff-54f9b8177c2e", "text": "smiling owl in space with the Saturn in the Background "} +{"id": "2003284", "video_name": "52b99737-f4b4-59b3-b32f-d8dc0a42a677", "text": "a menacing draconian roaring at the sky in victory "} +{"id": "2003416", "video_name": "0e77e53f-7d2a-50fb-8423-b97d6966c8b8", "text": "a skinny guy become very strong "} +{"id": "7004940", "video_name": "b29b99f3-d058-5719-b5b8-6d61e2e09921", "text": "basketball player dribbling ball, low, abstract smoke background "} +{"id": "6002625", "video_name": "69e8f3ba-a8ed-50ea-83dc-ba2d2d50c4fe", "text": "beautiful orange tree, a cute little blondie girl sitting on a bench, many birds flying around "} +{"id": "5001461", "video_name": "d4abe420-ffd3-5740-be20-e0822893b248", "text": "a unicorn trex walking through wonderland "} +{"id": "6002334", "video_name": "e85ad245-cb3f-570c-a9d8-b5068d635681", "text": "a lot of gingerbread man talking "} +{"id": "2005213", "video_name": "93ee1cc0-c4de-57bc-85a7-f23857c66b04", "text": "comic illustrated doves flying in a bright blue sky "} +{"id": "2007463", "video_name": "690ccde3-d9fd-5444-aa36-a4b8916ff58c", "text": "The camera follows closely behind the protagonist as she crosses through Walmart\u2019s automatic doors, transitioning from the harsh daylight to the subtle indoor ambience: in the Walmart, darkness, realism "} +{"id": "5001092", "video_name": "bc487d78-9806-5de8-9315-d4e57c375149", "text": "young japanese rnonin entering a village comic art work style "} +{"id": "3005410", "video_name": "18899e2d-400b-5284-bbc7-43093be76472", "text": "man with dark hair cheers with arms toward the sky at night "} +{"id": "3004438", "video_name": "cdc8bcfe-381a-5ebe-bbfe-f4f16112756b", "text": "Realistic cinematic lamborghini in rainy conditions "} +{"id": "2007721", "video_name": "efeda52d-ec7f-53e2-bfc6-ffeb7bed38c4", "text": "The corn field exploded Message: 1 Attachment "} +{"id": "0005337", "video_name": "190561a2-9a3f-5e96-bd8f-a0518cf10b86", "text": "3 poker players playing at a resort with the beach in the background "} +{"id": "2005208", "video_name": "571f7558-6aeb-5a8a-b13a-e4cf2ef17df7", "text": "Jim Carrey running past cars on a crowded highway in the 1960s "} +{"id": "2003629", "video_name": "416284a9-e609-5e16-abc3-27a2dedba1d3", "text": "a lion cub looks afraid and walks into the forest cover the little emotions shown by the lion cub,4K, ultra real, cinematic scene, excellent colour grading "} +{"id": "6003763", "video_name": "a201cb64-ce91-5c6e-b76e-61a587169269", "text": "Batman crying on top of a skyscraper during a storm. Black and white, graphic novel "} +{"id": "3004606", "video_name": "9e8e88c6-3029-5b11-981d-b2f15905c626", "text": "create a watercolor type image; me as the mother of my baby girl starting to sing a lullaby for my baby "} +{"id": "8001389", "video_name": "25cfc9e6-6098-50c4-b366-e0ba758f55d6", "text": "Juliet Lewis, dressed in revealing clothes, caught fire while riding on a man and roaring in a movie clip "} +{"id": "1006511", "video_name": "7732d64b-ffca-57d1-8068-c5f14816116c", "text": "create the image of the disciple of Jesus called James "} +{"id": "3005253", "video_name": "5084c15c-e6cd-5164-98a4-e7af95479f79", "text": "teal moray eels flying over rainforest sky, rainy sky "} +{"id": "3006523", "video_name": "8c84c147-e798-5c01-aead-48bee4f9f571", "text": ": The volcano is erupting\uff0cmake this image move dynamically realistic "} +{"id": "6004596", "video_name": "e337cfd3-5b21-5154-9411-03cb61bee649", "text": "an animation of a small maasai boy chasing a lion in the serengeti "} +{"id": "8002955", "video_name": "2fb20269-21be-536a-9432-fb6f735a2316", "text": "colorful fish swimming, seen from behind, full body "} +{"id": "2005707", "video_name": "471b46c3-f4a0-5f99-9501-2fc74da23e27", "text": "Children Exploring the Forest: A picture of a group of children exploring a lush, enchanting forest with curious expressions on their faces "} +{"id": "2003193", "video_name": "76afe226-9058-5074-b98a-a33a2da14e2c", "text": "zoom in the middle school part Message: 1 Attachment "} +{"id": "2007628", "video_name": "bbb5c59c-f7f5-5079-875b-ff9287798111", "text": "Elara(a blonde 19 year old girl with fair skin) and Aiden (a brunette 19 year old man with fair skin) holding hands, the background shifting between dawn and night, symbolizing the fusion of their worlds. "} +{"id": "7004113", "video_name": "f8a3c021-bc19-5abb-bc21-572386cd82ee", "text": "sheep having a barbecue, biblical art "} +{"id": "8001548", "video_name": "e11fe26b-a8e7-5eb4-be8b-393589a213bb", "text": "Two little dinosaurs are playing in the meadow "} +{"id": "8003278", "video_name": "57bcc3ba-61a3-53d2-9960-7badd6d54d2b", "text": "people drinking the water from spring and dieing. panoramic view "} +{"id": "8002548", "video_name": "b7e8dad9-0c3b-518d-ba10-4969711c960f", "text": "chasing culprits through slum, speed movements,camera follows, camera zooms and out, vertigo shot, coimbatore slum, "} +{"id": "1005116", "video_name": "5e5475fa-0532-5dfd-be59-ad57e5bebc8c", "text": "A handsome, muscular man running along the beach "} +{"id": "4002442", "video_name": "575fb2d6-9190-5828-9af3-5d55b95e0aca", "text": ": Show a boutique owner applying a sticker within Visa Logo and Olympics Logo on their store window , no more other characters, just Visa and Olympics Message: 1 Attachment "} +{"id": "7004423", "video_name": "5241c0a0-da2f-5832-b173-8135bd688fca", "text": "an unsafe and poor city Message: Candelaria (Font: MODERN) "} +{"id": "3004798", "video_name": "52f83da9-3d8e-5795-8a56-bdb22ae311b9", "text": "start and moon on the sky "} +{"id": "3005592", "video_name": "f3c0c6f5-58d1-5323-9b44-f3135dced4b2", "text": "Elon Musk running on mars, ultra realistic "} +{"id": "3005396", "video_name": "ee0f157b-49b0-5d1e-b0a5-a893713654ad", "text": "Media outlets such as radio, television, and broadcasting disseminating news "} +{"id": "4004238", "video_name": "cd233aa1-54ce-50e8-96e7-5945bba91f06", "text": "The girl is running with a dog in the field "} +{"id": "0003138", "video_name": "37ddfaaa-9dbe-53ad-aa91-ca87ca1eea67", "text": "heavy rain falling in the plains seen from a balcony "} +{"id": "6004078", "video_name": "ef7dbca7-f26c-50db-b23d-ff4aed4626ff", "text": "Little hedgehog in the mist \u52a8\u4f5c:look for food "} +{"id": "6002891", "video_name": "a1c4ca38-a17c-5c95-99fa-7f5b7b33bf44", "text": "Novak djokovic, runs, gets on the podium, wears Serbian flag, tennis court. "} +{"id": "6002485", "video_name": "a13bccc0-4b33-56a7-9bba-850e18584971", "text": "the road to the village, anime art vehicle concept art Negative: mara jade skywalker, metallic skeleton, carved marble statue, black sclera! eyes, futuristic glossy latex suit, die antwoord style wear, darksynth, kitsch, rave makeup, face tattoos, tribal tattoos, prosthetic makeup, tattooed face "} +{"id": "4002502", "video_name": "3b2055af-947e-5f54-b453-f9c63a94ab6b", "text": "movement of face and a wind effect "} +{"id": "2003298", "video_name": "a9c0c255-c1e7-5dc8-9a37-6a9120613933", "text": "emoticons and smoke coming out of a smartphone screen, cinematic, 16K, ultra detailed, HD "} +{"id": "0004469", "video_name": "09a0beee-1098-5e6a-b877-7451cec626fa", "text": "A handsome young male robot carries an earthly woman in his arms. The woman holds a bouquet of flowers in her hands. Smiling. 3d animation "} +{"id": "1005111", "video_name": "5e420cac-153e-50f6-bab0-170fed6ff31c", "text": "A group of engineers celebrating the new years "} +{"id": "8003740", "video_name": "c278f3be-004a-58b7-ba94-15bf770ff886", "text": "cinematic shot from sky of ancient hindu temple on banks of river and under tree the teacher is giving knowledge to students , there is mountains around the rivers which are covered with snow and its time of rain so the clouds are dark bluish in colour "} +{"id": "8001238", "video_name": "41170ae1-558c-5e45-ba50-7df2b738deec", "text": "the word alive being typed out then dissolves into pixels "} +{"id": "7004361", "video_name": "8667f8fa-0367-5e97-baf7-585b4d1d8de5", "text": "video game character vomiting rainbows, dancing in multicolor smoke explosion, disco party "} +{"id": "0006708", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "a police man in an empty room lonely and very confused "} +{"id": "2005941", "video_name": "57c8cf20-2ba3-59ba-8388-058bf5265cd8", "text": "war tank, am1 ahbrams with two soldiers, 1 on the right side of the tank, and the other on the left side "} +{"id": "2004545", "video_name": "6e28ce45-dc89-5f4e-9277-59c4a6c27b9c", "text": "girl good looking seated in a bar , stairing at her whisky glass, with some tears in her eyes, 16:9, vibrant "} +{"id": "4004920", "video_name": "3694d4bd-ed39-5b21-be1d-aa6d527314a6", "text": "Once upon a time in a small town, there lived a man named Omar "} +{"id": "2006360", "video_name": "53cc004b-dbef-5228-9867-fd0a1aba5f63", "text": "The monk, with eyes filled with compassion, imparts his wisdom to Leo "} +{"id": "0003187", "video_name": "38f65b81-6ab8-5df6-b8fe-199d8f7adcf5", "text": "following a man climbing the cliff,intense "} +{"id": "7002846", "video_name": "34e20674-8997-5a94-8eef-008ce5824b9f", "text": "capable of healing even the deepest wounds and rejuvenating the land itself. "} +{"id": "3004511", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "cartoon illustration of little lord Ganesha with beautiful smile happy face clear face in flower garden in sunset "} +{"id": "8003059", "video_name": "fb2a87b6-3391-558b-ba1f-8efcad9c2cac", "text": "Snowy mountains, fan sky, white long haired dogs running in the snow "} +{"id": "2006256", "video_name": "fb1bc210-e5ce-5696-b890-6f5e8a66d304", "text": "looking through a window, camera zooming in on birds at a feeder "} +{"id": "8003112", "video_name": "75365106-9ec1-5127-a4a4-d564433efd11", "text": "a cute girl is taling peaple and laughing "} +{"id": "0004292", "video_name": "06847b20-86fa-5a4c-99a5-884165f4ec3a", "text": "a british shorthair grey cat in the wind "} +{"id": "1005386", "video_name": "6302432d-14b8-5e6c-aa24-92015fb08cd6", "text": "this image of a mage, with blue and white lightning shooting through the sky Message: 1 Attachment "} +{"id": "4003784", "video_name": "a8d0498b-03e5-52d9-8b2f-ad3f1624b5b6", "text": "jellyfish headed guitarrist comic look animation "} +{"id": "2007617", "video_name": "01fd6b53-8097-5bd2-b9e3-3020a080c49e", "text": "man running on the red moon surface "} +{"id": "7003022", "video_name": "3f734f70-07b8-52d5-b603-83d6979c266a", "text": "a woman, her hair and the waves move by the wind, the camera zooms in, gets closer, ending in her eyes Message: 1 Attachment "} +{"id": "4002824", "video_name": "17f082a1-38fc-520c-9c02-9988461a7200", "text": "1700s castle tower being destroyed by flaming ball "} +{"id": "0004159", "video_name": "0453cec4-76b1-5c55-ac2e-d7d4a9fe3493", "text": "the hippo runs around the field and laughs "} +{"id": "1003610", "video_name": "4287824c-6291-5771-8f3b-8cf9a03381c2", "text": "a black and white cat is sleeping in a bed "} +{"id": "1003805", "video_name": "46463d5b-f311-5c3e-80cd-9875beed05b0", "text": "view from the illumination of plane "} +{"id": "7003693", "video_name": "b2ff6f7e-3df4-5f36-81cb-5497f9d062ff", "text": "graffiti wall Message: ArtBrandNow (Font: BAUHAUS) "} +{"id": "3004196", "video_name": "e086503a-f091-55f2-ba10-7ab75788a998", "text": "a mobile game with cute pirates which you can feed "} +{"id": "2006145", "video_name": "37bf6cbd-2009-5bf0-96bf-db076e3f419e", "text": "Hyperrealistic portrait of a beautiful Arab wearing intricately detailed colorful clothing and futuristic jewellery ar 16:9 motion 4 "} +{"id": "7004675", "video_name": "5e0292ed-5cae-5120-8c81-000fcd192b6c", "text": "For sale: baby shoes, never worn. "} +{"id": "0003867", "video_name": "44e8db58-2325-5afb-91d5-7d35f037dd14", "text": "a hangry fox walking in a jungle while it sees a crow in a tree holding a donut in its beak "} +{"id": "1004071", "video_name": "4b7c23a8-2ec8-5667-963c-c1e2c6854c0a", "text": "camera floats to the door, woman warrior goes out the door "} +{"id": "1003364", "video_name": "3df01496-54e0-5638-b5b6-c9e9d28aec5a", "text": "Sunrise shot of a modern city, with skyscrapers and a bustling port. in the Marvel style "} +{"id": "7002815", "video_name": "7ff4c422-c02f-5009-b15b-ec426b1dcb37", "text": "Ancient Chinese general with a big green lake in the background "} +{"id": "3004804", "video_name": "fc3cef28-46e4-51c0-98dd-160755ac21d0", "text": "a felt painting of three bears sitting on toilets in a bar "} +{"id": "7002347", "video_name": "9c89888a-04bf-5494-8494-199d18a3be00", "text": "guy meditating at sunrise by the ocean before surfing. please make this video a loop "} +{"id": "3006387", "video_name": "42074fcf-36d6-59dd-bb30-7f73b119f3fd", "text": "a woman seeing a man using his phone at home "} +{"id": "3005197", "video_name": "9af470c1-cec9-54c4-a8a6-0821209eda32", "text": "a cute cat playing with a cute puppy at a garden, realistic and cinematic view "} +{"id": "2005167", "video_name": "dd05fee8-2ab7-5e50-8be6-e4d986d7fbd1", "text": "a beautiful waterfall and big trees Message: peque (Font: MODERN) "} +{"id": "1005958", "video_name": "6d759e3f-d597-582a-97cd-6aacafe96d1a", "text": "David Cameron riding a horse through London, 16:9 photo realistic movie "} +{"id": "4002791", "video_name": "a6f0e99e-edd3-5280-b4ac-33b7c63132dc", "text": "Initially, many experts believed this fossil belonged to a forerunner of Neanderthals. "} +{"id": "2005649", "video_name": "409f9511-bae2-571d-8b9e-9171add448ac", "text": "pool made of black tiles with pink water and Japanese crucian carp, David Hockney style, top view, Accent Lighting, Global Illumination, Ray Tracing Global Illumination, Optics, Materiality, Ambient Occlusion, Scattering, Glowing, Shadows, Rough, Shimmering, Ray Tracing Reflections, Chromatic Aberration "} +{"id": "6002763", "video_name": "17e7ac00-54f7-5094-abae-2107b173155a", "text": "We must try harder, no matter how difficult the trials "} +{"id": "1004679", "video_name": "56e85e83-8e0b-5a07-8531-41783129d30a", "text": "first person view of a person eating a letter soup with a golden spoon from an antique bowl "} +{"id": "3005973", "video_name": "639890b6-b776-5d70-a1f3-a63564a277a2", "text": "wide angle,cafe shop,outside snowing,night, no car, inside looking to outside "} +{"id": "8003881", "video_name": "4e5d9194-e5b2-5277-b8eb-c88af2675352", "text": "An idyllic village scene with a farmer in his field "} +{"id": "7003477", "video_name": "3714e6c0-34ba-5038-be92-e0ecb99c51b5", "text": "mic in hand and singing song "} +{"id": "2004392", "video_name": "a580859a-04c1-554a-8ba5-de8a6ffdf52b", "text": "Pretty nature with sparkling waterfalls and pretty flowers "} +{"id": "4003102", "video_name": "abb35418-790f-5122-8f5b-26b8e7bcf0ba", "text": "Lily walking into the enchanted forest with a sense of wonder and adventure. A lush, vibrant forest with towering trees, colorful flowers, and playful animals. "} +{"id": "7004307", "video_name": "8f70ef4e-c8a6-5c1e-b47c-3300ab40527a", "text": "a cat try to steal cigar from a mouse "} +{"id": "1005423", "video_name": "639a7cbd-e814-59bc-a099-c8afcd098ad9", "text": "kid praying in mosque with motion "} +{"id": "2007458", "video_name": "3ace9a09-6954-5aac-a36a-8d7a68cd2a28", "text": "The story took an unexpected turn, intertwining personal vendettas with the technological masterpiece that was the Iron Man suit. "} +{"id": "0005177", "video_name": "16151f92-75af-5688-b7a9-d73851716765", "text": "Japanese students Message: live and learn (Font: MODERN) "} +{"id": "3006209", "video_name": "5ef6f6dd-9ad4-5bda-b803-8be591d4f344", "text": "A bunch of bubbles emerges from a blue background, the camera zooms out, and the bubbles morph into the top of a soda can. "} +{"id": "7004027", "video_name": "df8f1529-d428-57a7-8edb-780d6bfb96ad", "text": "many cars driving in the road "} +{"id": "0006576", "video_name": "2ee44db4-e0d9-5a88-8fa4-cf50e29df71d", "text": "generate an image of naruto kissing hinata "} +{"id": "0004498", "video_name": "09fd5722-14c0-5bea-a3bd-639dda2a5cbf", "text": "three dors clothing Message: doors (Font: MODERN) "} +{"id": "7002599", "video_name": "2eb388e8-7980-57e9-af92-680dc277f45d", "text": "a beauty lady walk in a garden with the sunset "} +{"id": "3003771", "video_name": "c7d57aab-5258-5a37-8796-a0b780f82f4e", "text": "the planet Mars turns into a green planet with seas, seen from space "} +{"id": "4003251", "video_name": "d180c7c2-c2f6-5eb2-b0a0-964b7914f33a", "text": "earrings and collier made of quartz, crystals, blue topaz, collier of Snowqueen in white crystals gemcave, sparkling "} +{"id": "3005799", "video_name": "b7e12e2a-ca70-50ee-8af7-76603b12887c", "text": "A waterfall flowing into a mountain lake. 4K high resolution. Fluid motion. No distortion "} +{"id": "1003028", "video_name": "379803fb-e287-5a16-abde-8a4a09c0bde2", "text": "cartoon man dancing with virtual reality goggles "} +{"id": "5001080", "video_name": "28310592-83b0-5c64-843e-30219d215949", "text": "hudge teddy bear destroying a skyscraper, in neon Tokyo, zoom in camera. Cinematic light. "} +{"id": "0004360", "video_name": "07b15ea1-4cee-576f-b9cf-fda1b3b1825f", "text": "realistic humanoid female robot, wearing shoort black skirt and shear revealing low cut blouse, very beautiful asian looking , sexy body, long blonde hair, moving right arm to right and with a very seductive and beautiful face "} +{"id": "6004796", "video_name": "d7abb988-339c-5eed-9145-61bcd2012cf7", "text": "crow dropping stone on water jug "} +{"id": "2003087", "video_name": "3a6f171c-81c8-5bc9-b861-489fd6e78a7e", "text": "8bit sprite with red cap and moustache dancing on a pulsating red toadstool, psychedelic background. "} +{"id": "1003227", "video_name": "3b6cc189-7dc7-5a5e-b6ea-0573fdb92aaa", "text": "beautiful expressive hyperrealistic quantum computer dancing in the wind, zoom in atomic structure "} +{"id": "1004301", "video_name": "4f808011-9390-57ab-ba68-43a08ee86645", "text": "a man called NEW SUN is getting stronger and stronger "} +{"id": "2004756", "video_name": "cb66fa70-c22d-5c8d-b88a-de7ada58defa", "text": "professional break Dancer pop locking in the style of the movie Breakin "} +{"id": "0006934", "video_name": "357d9ee7-e547-5a3a-ab28-6b5abd63da85", "text": "young people, dancing, electronic club, night, many colorful lights "} +{"id": "3005489", "video_name": "28f5b5e1-c985-54c3-8422-db4410ac1f87", "text": "a Hyrulian, from the Legend of Zelda Breath of the Wild, walking down a trail "} +{"id": "3006488", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "gray cat with glasses playing on the computer "} +{"id": "2007250", "video_name": "0bbf769b-4cd3-5de2-a3a1-feb537999a37", "text": "a beautiful Galactic Class 1 Starship landing on the beach, silver chrome with lights coming through the windows, 8k, cinematic lighting, ar 16:9 "} +{"id": "1003298", "video_name": "3cae7d2e-a2c1-548a-9872-53c85236da9e", "text": "Connor McGregor knocks out Michael Chandler in the UFC octagon "} +{"id": "7003822", "video_name": "b153f58b-d9b2-5dec-97ba-8a3b2d844566", "text": "Townsfolk warning about the locked room in an old abandoned house "} +{"id": "6003684", "video_name": "a7c43d3a-c4f3-5907-bddc-1790c45c383e", "text": "An animated ghost jumps on the couch and someone is asleep "} +{"id": "7003965", "video_name": "7936c26c-2c41-59b2-ab01-fcbe5922991a", "text": "make full of red colours flying around with some girls dancing and looking colour above. "} +{"id": "5001779", "video_name": "60b63d4f-491e-5cf4-97c8-cc366bbdf4b3", "text": "2.5D,8K,exquisite, a boy, rural night, indoor "} +{"id": "4003549", "video_name": "4803aa63-e2dd-57cc-82c8-6898b0990f07", "text": "Cars drive along a road covered in ash. "} +{"id": "7004343", "video_name": "f0e50f7e-40cc-52f5-b3b3-15602df6cde1", "text": "standing in a group, breathing heavy "} +{"id": "7004920", "video_name": "950a30f6-d66d-5c2b-981f-76692746d1ba", "text": "the girl helped the village achieve the peacefulness "} +{"id": "3004393", "video_name": "e6949c57-5895-5dc8-811f-eb58bcf8202b", "text": "academy award winning film of space ship landing on alien planet "} +{"id": "8002403", "video_name": "602d3209-b8ef-5703-993d-37352c23d1df", "text": "A Chinese couple on a trip to Disneyland "} +{"id": "8002659", "video_name": "7dbb94d1-d8b7-5b94-98bc-467ec8013067", "text": "a corsican flag floatting on a woman hands "} +{"id": "2003583", "video_name": "8c21bc24-62dc-5f95-8b99-3b96dad089de", "text": "red grass spreading around the normal grass turning the normal grass in red grass "} +{"id": "7004167", "video_name": "02329428-f3a9-5151-b10c-e3c5738f3939", "text": "Taylor swift in a Kansas City chiefs football uniform "} +{"id": "1005495", "video_name": "650f1a31-1b9c-5aa3-b1e6-c8b0c8c7ad4c", "text": "a man entering through window broken, in the night time "} +{"id": "8001601", "video_name": "d303ed10-5937-504a-87ad-cff2b09b3c79", "text": "semone eat gum from eyes 5 second "} +{"id": "3004204", "video_name": "481b5640-38ab-5e16-b6ff-93ee3f0cfc5a", "text": "indonesian mask speaking in the style of a vintage collage "} +{"id": "8002284", "video_name": "a1c32b60-3e5c-5ee7-9543-51d91c99cbbe", "text": "A car drives down the road at night, fleeing the inferno "} +{"id": "3004785", "video_name": "c5645eaf-50b6-556d-9256-9e975e79cee0", "text": "clouds moving and changing, clouds on the ground moving and changing, rolling clouds, sparkles, sunlight glowing "} +{"id": "0005697", "video_name": "1f970fde-2963-54c4-896b-fa8ebb27af00", "text": "Game of thrones final season variations "} +{"id": "6003826", "video_name": "cf6fb197-ff93-58b8-82ce-57ba9b1137a2", "text": "Craft an image of Aaroha leaning in, whispering secrets to the gentle breeze. The leaves rustle as if sharing in the confidences exchanged between the toddler and the natural world around her. "} +{"id": "2004395", "video_name": "3271e760-7ca0-5552-891d-33b770e917ef", "text": "shopping corridor Message: Halloween (Font: MODERN)"} +{"id": "8001699", "video_name": "8a4ca69b-e432-56c0-8dcd-0d64cbc584d1", "text": "Obtain a vat number in germany "} +{"id": "3006667", "video_name": "ba8d2bb8-1dde-54bc-b9b4-8812afa1d24e", "text": "a photorealistic the baduy tribes, showing traditional dance, perfect anomaly, High quality, 8K "} +{"id": "3003398", "video_name": "b0f40e7c-cc25-5df9-b63e-9146c05f80b9", "text": "boy maaz look something in the forest "} +{"id": "7003058", "video_name": "47f238ec-451d-5355-a839-9f82cd9e6737", "text": "a 5 year old boy in the hospital is afraid of the doctor "} +{"id": "4004576", "video_name": "df1f7e4a-cc96-53db-9445-ae480f098259", "text": "animated cow running in the road to board into the bus "} +{"id": "6002108", "video_name": "6aa4e361-5774-5566-a07c-c20a838a4209", "text": "Elon Musk walks his dog and eats ice cream. "} +{"id": "1003699", "video_name": "443a852e-769b-56d3-ba78-ed3054636abd", "text": "City gradually transforming into countryside and landscape "} +{"id": "6004578", "video_name": "53d4b94a-9475-5e74-8054-a4728ed2880c", "text": "hyper realistic waves crashing on rocky beach. Cinematic AR: 16:9 "} +{"id": "0005715", "video_name": "1ffbd0f4-6af5-5cb9-8ed7-8b9b7e9559f1", "text": "A fish swiming with other fish "} +{"id": "2003940", "video_name": "79c77efd-1a45-5f1c-b152-c4d38ed83f68", "text": "beautiful city view near the river "} +{"id": "3003102", "video_name": "01cffc64-6aff-55ae-bb40-f2f42578efa6", "text": "last Supper, painted by Leonardo Da Vinci "} +{"id": "6002800", "video_name": "a75daaec-b000-5370-9833-c975b354b612", "text": "Visualize Victor charming his way through bank security, blending suspense with moments of humor. "} +{"id": "8003152", "video_name": "c58225b6-ff27-5c6f-b4b3-8a99803764fa", "text": "boy reading to the tree, imagination, lighting, cartoon, 3d, realistic "} +{"id": "4004735", "video_name": "a1fa8a42-726f-5e6f-879a-00ede73b9840", "text": "a group of doctors dancing in the bar "} +{"id": "4002974", "video_name": "d79e227a-c046-50be-a4a6-680620b2616c", "text": "tropical drink sun reflection moist dripping "} +{"id": "4003777", "video_name": "214c8280-3a1c-5bee-a9e9-ed537baac8e0", "text": "Create a 157 second video with my picture, it should be different scenes in the forest. "} +{"id": "3003148", "video_name": "8c4268bf-788b-5869-816e-62322f873490", "text": "Dunhuang, China background, auspicious cloud element, moon "} +{"id": "2005968", "video_name": "b5566551-9c95-5c34-96b2-a9b16368e95f", "text": "where he works diligently to support his family. He juggles paperwork, meetings, and the occasional friendly chat with colleagues. "} +{"id": "6002067", "video_name": "6073f20f-114e-5039-8723-0a19e74921ce", "text": "You can picture a lush green garden with a large, ancient tree serving as the focal point. Akbar and Birbal are sitting on a colorful rug under the tree, engrossed in conversation. "} +{"id": "8003239", "video_name": "70cd9686-2bc4-51ed-bbf2-44c3db3e2962", "text": "Marcus Aurelies writing a book using Ai "} +{"id": "4002068", "video_name": "8052fe30-e1cf-536a-96d8-ac0de45f451f", "text": "three different persons with three expressions respectively pain sensitivity, emotional distress, and decreased tolerance to stress "} +{"id": "4003076", "video_name": "57868789-5075-5c0e-9d56-48755a41b616", "text": "2. Create an AI image of the Ugly Duckling embarking on his adventure, waddling away from the familiar farm under the golden rays of the setting sun, a small bindle with his few belongings slung over his shoulder, highlighting his determination to find his place. "} +{"id": "0003757", "video_name": "42db2837-b18f-55a0-9ea9-28d19f1e9630", "text": "Beautiful white little girl on the background of the Azerbaijani coat of arms "} +{"id": "8002375", "video_name": "a72629c4-2556-5147-8b05-e3f2bd3125c5", "text": "a girl flying in a spaceship anime style "} +{"id": "2004939", "video_name": "5385095e-5b9d-5f88-9fd1-116803c4273d", "text": "a man walking over a bridge with an aligator and spongebob "} +{"id": "1004513", "video_name": "53c1df4e-d4ad-5438-9bd8-bae2cbe90fc4", "text": "bride walking elegantly down the stairs "} +{"id": "1003858", "video_name": "47140e63-1526-50b8-abae-2fc89aeb0942", "text": "a lion and his cub sitting together on a rock, lion King movie style, 4K , ultra real, cinematic scene, excellent colour grading, sun light falling on them "} +{"id": "5001387", "video_name": "89fc6eac-25cf-5ea2-8751-7352f5ce6bb0", "text": "steve rkerl playing guitar hero with southpark characters "} +{"id": "0006070", "video_name": "261cfdbe-6b84-5946-82c2-321cccee3023", "text": "That boy is born at that time when his family is standing and watching with good wealth "} +{"id": "7003501", "video_name": "2893542f-bcf6-5ef6-8b2e-507e6ecab77d", "text": "BMW M5 goes in to Tonnel 4K Video Realeastic "} +{"id": "7004160", "video_name": "7d0040a7-7363-5af1-bdde-8eb425def3f7", "text": "teasure box with gold inside it looks real and interesting "} +{"id": "0005072", "video_name": "14554896-ab11-53cf-a714-5ba49c812c0a", "text": "As days passed, the villagers noticed tiny sprouts emerging from the ground. "} +{"id": "4004257", "video_name": "5d3eb0e8-955c-57a7-83f8-3a0fb0e9ad8c", "text": "Generate an animation illustrating the geographical challenges faced by the villagers. Show the village surrounded by natural obstacles, perhaps hills, forests, and the river. Emphasize the difficulty of traveling to and from the city due to these obstacles. "} +{"id": "1003912", "video_name": "48375f58-3aeb-56a1-bf17-6225aee6fdec", "text": "The subtle beauty of a newfound friendship beginning to blossom. "} +{"id": "3004107", "video_name": "39c2902b-9847-5ced-8a3d-8f6f52fc37c1", "text": "Pizza making, bacon, ham, 4K, pulsating ingredients, juicy "} +{"id": "3005262", "video_name": "88a73072-8b30-57bb-a0c6-6aa27fa10e72", "text": "beautiful short hair girl use strict tangtop and strict underpants straddled raises her both legs facing the camera on the sofa in the tall building with a view of the night city lights hd 4k highly detailed realisthic cinematic "} +{"id": "6003099", "video_name": "d116ec51-7656-56e1-9fc1-23e971e223e0", "text": "A man who jumped from a building "} +{"id": "3006456", "video_name": "c3e8bcde-329a-510b-b781-b55f6fb165e0", "text": "Movement of people Message: Movement of people (Font: MODERN) "} +{"id": "5001093", "video_name": "ed91a8dd-57ad-54cf-b883-395ce708cdc9", "text": "small hut in the middle of the jungle in rainy days "} +{"id": "3003334", "video_name": "55ba234d-76d4-5eaf-b526-3cf8fedffab4", "text": "cyberpunk,sphinx cat with purple eyes,night sky with stars,bright moon,cyberpunk style,3d "} +{"id": "8003063", "video_name": "0796d853-f99f-5fea-8150-48f80fbfc90d", "text": "A school of fish swimming, pixar animation style "} +{"id": "3005762", "video_name": "9ce8252f-c377-5065-b677-d39ea09be086", "text": "Chinese panda on a rocket to the planet, 3d animation "} +{"id": "5001505", "video_name": "78d1fdca-d63f-51b4-b5f3-96606b533b02", "text": "priime drink cinematic moving shot from left to right "} +{"id": "7002348", "video_name": "ba619c1d-f085-54cf-97ea-8150bb80b68a", "text": "well dressed fire skull walking towards the camera smiling money is flying around and falling from the sky "} +{"id": "7003635", "video_name": "e1f72fbc-4595-58b5-8a9b-0e1f3fd998bf", "text": "two very fluffy and cute squirrels chase in central part at charismas night "} +{"id": "7003769", "video_name": "8524b35a-9474-52be-aa45-983a20bc7a2b", "text": "thomas the tank engine approaching, gothic horror, dark moody style "} +{"id": "0006022", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "Escape in the dark forest between a beautiful blonde in a black dress, and an ordinary corsair "} +{"id": "0004125", "video_name": "039f565e-e584-551f-a621-4a4d304a21a1", "text": "camel carriny african king drapped in gold and wealth relaxing in the desert "} +{"id": "6003445", "video_name": "07efc6fe-f936-5ae5-991f-48b9dee4c0ea", "text": "Lily finding the heart of the forest, a massive, gnarled tree with eerie roots. "} +{"id": "2004516", "video_name": "91a54134-7e0b-5cb5-8586-9688ddace063", "text": "a robotic cat jumping on a coach, cartoon style "} +{"id": "4003788", "video_name": "4d99d71e-3e5a-50dc-b911-232cea4cb68d", "text": "shield flipping on its x axis 3 times "} +{"id": "0006690", "video_name": "311f107d-b1c9-5682-9ab1-92d7db224fc7", "text": "a little beautiful 3D AI girl in hijab helping people by carrying their grocery bags "} +{"id": "6002875", "video_name": "145924d1-a938-5019-a668-5e9252413f37", "text": "young man standing in the village image "} +{"id": "1006715", "video_name": "7b0b9ae2-6654-5d1a-a1ed-935326436165", "text": "watercolor painting of a belly dancer in a desert "} +{"id": "4004709", "video_name": "c73f876f-e6de-5009-ac6d-6ce05c07c747", "text": "musicians with trumpets, saxophones play jazz music around the globe in space "} +{"id": "4003525", "video_name": "87e39b4d-0535-5901-8728-3d22d921503d", "text": "A baby elephant has been separated from its mother and it is crying in the forest around a river "} +{"id": "2007308", "video_name": "87cc3a71-5162-5a4d-a503-253b32b67073", "text": "african americans dancing at jazz bar from the 1940s "} +{"id": "0006096", "video_name": "2682fd14-1a7a-5ce7-9811-2ebca8dc4d5b", "text": "Introduce Espirra and Castellano Silvestre as formidable warriors with blades tempered in countless battles against dragons. "} +{"id": "3004452", "video_name": "ace977f5-271b-5c00-b7f0-b7afc5d30df3", "text": "woman dancing in the street wearing rain coat. Down town Cyber punk city style. Late night. Bladerunner "} +{"id": "2005546", "video_name": "b1604c38-6c0a-54e5-9133-859dc21bd4e5", "text": "a Timelapse of the Milky Way galaxy exploding into a black hole "} +{"id": "0005155", "video_name": "15bbed11-cc0c-5629-9d4a-ae6ebf203290", "text": "a fox jumping for hanging grape "} +{"id": "1003511", "video_name": "40e074c6-9c87-5374-9d3b-031a4928bb12", "text": "James got us all into the Minnow at a dead run. There was no time to take anything at all except the clothes we stood in. The Minnow was meant for short heavy hops to planets or asteroids. "} +{"id": "1003446", "video_name": "3fe5b254-7bc8-5b31-86a2-1d5dc64cab91", "text": "a little girl collect beautiful tiny stone at the sea side in the evening. "} +{"id": "2005394", "video_name": "450e7d4a-10d3-5919-87e1-e5a4af3c6f96", "text": "an assortment of medieval weapons and armor, surrounding a trench in the dirt. Message: Nifty Craft (Font: MODERN) "} +{"id": "8003766", "video_name": "7a6ebbfd-07b8-52b8-803f-f9688792d3aa", "text": "Naruto iron man, blonde, lightning storm and wind "} +{"id": "4002074", "video_name": "9037ab7b-7d7c-5387-a309-b87bb0cf38ec", "text": "Through this story, we can see how the animals in the autumn forest help and care for each other and spend a wonderful night together "} +{"id": "1003310", "video_name": "3ce81dcb-8d05-5c18-b9ff-4ff68543ba96", "text": "a singing heart beating surrounded by fire. super 8 footage "} +{"id": "7004299", "video_name": "f9f368f4-79ef-56ff-8849-9c9992b71560", "text": "make the cow move uphill and let the wind blow moderately "} +{"id": "6002558", "video_name": "f049eb5d-1d5f-5090-ae22-061eb1dae400", "text": "aerial images of landscapes with clouds and sunset "} +{"id": "6003677", "video_name": "8312232a-16a0-5c41-a08b-db7831381427", "text": "Infertility as defined by the World Health Organization (WHO) is a condition in which a couple cannot become pregnant after one year of living together, having regular intercourse and not using any contraceptive methods. If the wife is over 35 years old, this time is shortened to only 6 months. "} +{"id": "7003560", "video_name": "a4082d65-376c-5dc4-b487-d936bb6c4894", "text": "Jim Henson colorful art film from 1970 "} +{"id": "0004433", "video_name": "08d4e3f4-46ce-5f7e-b550-f2e174801622", "text": "handsome norwegian guy in norway holding an orange cat in christmas "} +{"id": "2006208", "video_name": "1a363517-99ee-5547-afc1-681846a27044", "text": "Paul explaining the Bible to the Ephesians in the old town of Jerusalem, several people interested in the word of God are listening around and some are commenting on what Paul speaks "} +{"id": "1006893", "video_name": "7df4136c-4352-59a1-845c-f42e83a34491", "text": "neon glowing ghost appearing in an abandoned victorian hall, spooky ambient "} +{"id": "2003895", "video_name": "d1e7af56-08c8-5985-b070-c24fd75fcb7c", "text": "a beautiful large brown bear sitting on a log in a forrest on a sunny day while eating honey out of a bee nest whle bees fly around him cartoon style picture very realistic looking 4k front camera "} +{"id": "2007697", "video_name": "2f2b9862-31e2-5d23-90e8-3df7f043eb15", "text": "aerian shot of city of hongkong "} +{"id": "8003192", "video_name": "d47d92db-eeca-5404-8396-521d9d132f3d", "text": "a magnificent detail black crow igniting into an amazing flaming Phoenix. "} +{"id": "3006133", "video_name": "8f06351a-e291-5b5d-9566-c10de0a1a9b4", "text": "goat in the middle of the forest at night standing up "} +{"id": "7003224", "video_name": "3fe4205f-592c-573a-aaf3-63d238784e3d", "text": "blue cats are coding in front of computers "} +{"id": "3004430", "video_name": "cdde2089-6fde-5482-93ef-c87114ae3a9b", "text": "Cartoon style, people live with robots. "} +{"id": "7002945", "video_name": "9810f13e-4fa3-5a22-a8bf-edadec218e01", "text": "birds and parrots flying in the sky "} +{"id": "8001139", "video_name": "a01ce6cd-eaca-5472-add4-0b64ef63e18e", "text": "a video in this free fire alok dancing "} +{"id": "6003697", "video_name": "eb41e0c0-b25e-5033-9136-14db36312543", "text": "full length tree people hugging: salvador dali style, zooming to the center of the frame, black and white "} +{"id": "0005827", "video_name": "21d942c8-c264-5ee9-afbc-09257d43bf85", "text": "There are conchs crawling under the sea. "} +{"id": "7003509", "video_name": "b8cc7d3d-c487-5020-a008-9c78ec0bf2b2", "text": "a realistic young expert man speaking with enthusiasm front of camera with vintage toy background "} +{"id": "8002064", "video_name": "28eb6865-0c9e-5dda-b93b-f337d01d5910", "text": "fred mercury on a giant stage,3d,4k "} +{"id": "7004774", "video_name": "5944610c-2aa8-5e98-8764-eea722f14c6f", "text": "anonymous hackers working in a dark room "} +{"id": "6003776", "video_name": "0fea9b0b-475e-5f2f-b358-0ef35056c4f9", "text": "ben 10 funny dance transforming into alien, hd, realistic, highly detailed, with gwen on background, ben 10 classic animation style "} +{"id": "2003904", "video_name": "6431d98e-78f3-5db1-b74e-64b071d4dd09", "text": "missing posters, 1990\u2019s movie scene, wind blowing on the poster, realism "} +{"id": "1005487", "video_name": "64da8e10-e168-5e7d-9444-c5cb740d555a", "text": "Space civlisation on the verge of war "} +{"id": "1004138", "video_name": "4cae52dd-b572-561d-baf4-6cb724f8b81a", "text": "fixation on red and white flashing loop "} +{"id": "7002145", "video_name": "052e5433-8422-5982-b975-bcdc4f02edca", "text": "Please build a spaceship that sails through space: "} +{"id": "8001454", "video_name": "d961faaa-0d51-56ac-a5c6-79a776196891", "text": "beautiful female mech skeleton in abandoned city street, hyper realistic, illustration, high quality, masterclass, intricate, cinematic "} +{"id": "6003762", "video_name": "7509d246-47fe-5e93-98f5-b5ccc4186fc9", "text": "g 5, motion blur 3, hyperealistic hd, pixar style, kanye west dressed like Nigeria, and dancing to a native cultural dance "} +{"id": "3006810", "video_name": "42d0be3e-9d0e-5f1f-a3ea-10d6654e5564", "text": "make the two person in the image talking "} +{"id": "4003121", "video_name": "592954df-dc08-5d03-89c4-530ffff72de7", "text": "hacker analyzing a graph of the world 4k "} +{"id": "3003297", "video_name": "577a592f-e497-57f8-8023-0bc3e2efe754", "text": "surrealist, rococo, contemporary, romantic inspired portrait in the style of Sabin Balasa "} +{"id": "2007003", "video_name": "49f087f2-0385-5dcf-ac73-2d5785a92ed6", "text": "3 drones on a winner podium "} +{"id": "8002378", "video_name": "d7fa4445-6555-55db-9ea7-8ea3c4249abb", "text": "city in the future with a kiwi bird in the front "} +{"id": "6004419", "video_name": "26ea8b73-1720-575a-b144-86bdc53faa5c", "text": "kids animal video a bear dancing in the jungle in 3:4 ratio "} +{"id": "2004651", "video_name": "01071d89-9e43-5329-9520-5b1160f16dba", "text": "weird, expressionism painting,making an abstract painting "} +{"id": "0006717", "video_name": "319bc8ff-d366-5fb3-a6af-89b1b23f7612", "text": "a russian military guard doing a fortnite dance on a pile of ham "} +{"id": "6003539", "video_name": "3c0cdaf3-4089-58a7-81fe-a456bc72863d", "text": "dence forest, mountains, enchanting forest, unreal render, disney style "} +{"id": "6003157", "video_name": "cdb033bf-2d86-5baf-924f-26dd35bcf7a6", "text": "shining golden round object in the black vastness, rotating, brightness is getting dimmer "} +{"id": "3004352", "video_name": "e678cb49-bb40-52d4-8346-8d92ff8eaf64", "text": "scarry image of jungle at night,a man car drive on a path or road in this jungle,when he drive on the road suddenly broke down the tyre of car,and a blast of car,display the man face "} +{"id": "1006142", "video_name": "708527ed-2b60-5db8-a88c-7c673dcaca7f", "text": "Show a charming little girl, wearing a colorful ski outfit, gracefully skiing down the slopes, enjoying the snow, and an energetic little boy, with his cool snowboarding gear, pulling off exciting snowboarding tricks. Capture their expressions of pure joy and enthusiasm. "} +{"id": "0003402", "video_name": "3d07d958-dd06-518e-8b37-a0b8c40e63c8", "text": "a happy confident woman proud of how she looks "} +{"id": "6002729", "video_name": "d46859d0-aba4-56f2-b79f-77cb8d275538", "text": "a vilage story ,short movie ,amine ,sad suspence "} +{"id": "4004826", "video_name": "74affaec-9915-533d-9f99-3459e2fbee0c", "text": "a drone video on what the aztecs cities may have looked like "} +{"id": "0003230", "video_name": "39acaa85-4090-5430-b79b-a7946cbb83e4", "text": "english kings from the 15th century sitting on a big rounded table "} +{"id": "1005192", "video_name": "5f7ab933-6cfe-5cc9-ac84-08c159e51f2f", "text": "ugly fish inside dark murky water filled with tree branches VHS footage real, fever dream "} +{"id": "8001931", "video_name": "d75d451c-5340-511c-83b2-7318c953f813", "text": "A boy wandering in the street, anime "} +{"id": "2003411", "video_name": "e17ac999-5635-57c9-97ae-65a30ea51538", "text": "horror movie style black and white clouds and eagles "} +{"id": "0003719", "video_name": "424f706b-8bb1-58b9-b909-2d808842c9d8", "text": "Naruto and sasuke starting race in futurestic cars in that his dad is referee "} +{"id": "3005931", "video_name": "72b8df13-745c-5d94-92e2-9b85abf1d773", "text": "I need an illustration of a watermelon in a marketing agency working on a creative project with more watermelons working for me. "} +{"id": "3005506", "video_name": "b723f008-bf60-56d5-8206-dbb2256c50e1", "text": "audience amazed and clapping like in aww of the beauty they are watching "} +{"id": "4002393", "video_name": "fded2e1b-de26-5b3a-9ea9-cb374e09b59b", "text": "tall white bird with long beak in the mountains, with long claws shaking "} +{"id": "0006432", "video_name": "2c3e4e63-1536-5444-b03b-d8e42569634e", "text": "Kim Kardashian wins trophy at mortal kombat esports tournament "} +{"id": "8003033", "video_name": "2a5dbd8c-634a-5fa8-96fd-8bca97350a0d", "text": "Sam is a young man with good look but big nose, Sam is walking in the forest, Sam is sad and looks worried, Sam is walking slowly with hands in his pocket "} +{"id": "3005455", "video_name": "f98fb681-a5c4-57a6-99aa-7da0d9aae920", "text": "A beautiful women looking at the camera, the camera is zooming into her gaze, behind her is chaos as she smiles "} +{"id": "5001222", "video_name": "b449eabb-323d-54f0-9a39-2421417b1326", "text": "An image of the young squirrel, Sammy, with wide, curious eyes, looking up at Oliver in the oak tree. Sammy is surrounded by books or scrolls, symbolizing his eagerness to learn. motion 4 "} +{"id": "3005405", "video_name": "77718f41-5595-594b-913e-0df3b3a73db3", "text": "photo realistic, Airbus A380 from British Airway flying with 5 Airbus Eurofighters in the air. "} +{"id": "3004522", "video_name": "8a54f3a7-1b1c-5e2c-8dfb-2d4bd4a3642d", "text": "A small group of people, in a dark and clandestine corner of the city, surrounding Winston while he, with a determined gesture, utters his first words of resistance. Their faces are illuminated by a dim light from a makeshift lamp, and hope and determination are reflected in their eyes as they look at the birds on the windowsill. "} +{"id": "8001569", "video_name": "a0aab8e3-24b1-5893-9068-231bdd2e2276", "text": "childrens have fun in school orange and blue "} +{"id": "7004787", "video_name": "a80c2af8-7ccc-54b0-93ae-c70d08af9765", "text": "scary seen A group shot of the friends, a mix of relief and lingering unease in their expressions. "} +{"id": "4004955", "video_name": "c61dfcd6-63e5-5125-ac8c-c86bd94d95fc", "text": "a video of raindrops hitting water at night reflecting a neon lit city "} +{"id": "8002879", "video_name": "18c6e569-70ee-5901-897b-e9383678d288", "text": "a potato on a plate grows a human looking eye and it winks "} +{"id": "4004066", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "marcul aurelius seating on a horse "} +{"id": "7002728", "video_name": "78d893e6-4eec-59cc-823a-9e18a13aa3ae", "text": "girl walking sadly on the road cartoon "} +{"id": "1004816", "video_name": "5902bb29-e28e-56fc-8d5d-d96b0e57f971", "text": "Christmas, Elf on the shelf, pikachu "} +{"id": "4003427", "video_name": "463a9a7e-44e3-55b2-805b-9f0c8f1504ea", "text": "a ghost girl face shadow in water "} +{"id": "2005806", "video_name": "3a03d104-9569-556a-af3b-6bc693cc226a", "text": "1 minute video, little girl walking in a the forest, finding a library with a magicien who give a potion to the little girl, she finally give the potion to her friends "} +{"id": "3003258", "video_name": "f7ccb4d2-5df2-5b8f-9893-5d2860e60520", "text": "anime girl lying on the beach with a book "} +{"id": "2007920", "video_name": "659eac5f-ab70-5de1-9fc6-053cc660607d", "text": "In the distant cosmos, Captain Aria Nova, a renegade pilot, races against an intergalactic empire "} +{"id": "3005224", "video_name": "d6fd8e64-aecf-5050-9b71-2ede27895d07", "text": "colorful butterfly with elephant nose flying over flowers "} +{"id": "0003193", "video_name": "390bf181-ce57-5ff9-a727-7a38d841ddd6", "text": "COUPLE LOVE , 1900 TIME SHIP IN A OCEAN, SUNRISE "} +{"id": "2006286", "video_name": "613cbea8-85fe-5749-94ee-1dfb3e1fa00c", "text": "futuristic motion of the girl and her background Message: 1 Attachment "} +{"id": "7002573", "video_name": "9b287d4a-feb1-5803-a327-9a01c64ffcfe", "text": "Advanced ancient machinery and techniques building the pyramids, bustling workers, shimmering golden apex gleaming under the sun. "} +{"id": "3004514", "video_name": "b003eeb9-1424-5212-9205-f6b313e1067e", "text": "barber shop in front of car wash center "} +{"id": "2006254", "video_name": "0344714f-c1de-54a4-8ffe-cb8a3fc132a2", "text": "purple rock star, big pruple wig, purple clothes, lavender guitar, rhine stone high heels, silver shoes "} +{"id": "2003222", "video_name": "3e746b86-49b3-5afc-bf6e-54952bca44cf", "text": "16x9 of ghostly figure dropping coins on a bed "} +{"id": "3006161", "video_name": "8a4243e6-8097-58a7-a5c7-966291f6c0d4", "text": "People find work in gastronomy using the service "} +{"id": "4002862", "video_name": "7c6acb62-82e8-5042-ac10-8819642d8ca6", "text": "Animation of lights and people moving swiftly in the streets. "} +{"id": "7002954", "video_name": "e378ba6b-e4fd-5873-926b-b8f024de0696", "text": "create a variety of images based on this image, with the same character and with the same tattoos "} +{"id": "1005513", "video_name": "657b678e-0676-5361-a9aa-26b75b459052", "text": "Simulate the smiling face of a child Message: 1 Attachment "} +{"id": "2003492", "video_name": "092cc4ef-991f-574b-8d57-40f804fd2ea3", "text": "Generate an image of a young girl named Emily stepping forward with determination. "} +{"id": "3004564", "video_name": "2f68af6a-255a-58f0-8c62-44ebaacfa9aa", "text": "video with Jesus teaching the Bible to children, with adults surrounding him, with image style of Israel year 30 after Christ, 1080x1920px format "} +{"id": "3006728", "video_name": "e0653f5a-a240-5634-ae90-3e66cacabdac", "text": "An old, decrepit mansion, Hollow Manor, stands ominously. "} +{"id": "2003881", "video_name": "0a23d54d-3eb1-5b08-a91c-b88bcfcc0dc6", "text": "asthetic scenery with river,anime style,4k,frog on rock,make the frog small and in anime style,4k vibrant colour "} +{"id": "1003769", "video_name": "4568fbfa-a62c-5bdb-b55e-941272e17131", "text": "Seductive blonde angel in modern style against a big city background "} +{"id": "4003197", "video_name": "808a51f8-a933-5432-b203-82d569e16acf", "text": "riya casting spells with funny mishaps "} +{"id": "1004245", "video_name": "4e8c1805-2868-5f9f-a4e4-7aebe0b412cc", "text": "The man will be piloting a small plane for an aerial tour. "} +{"id": "0006164", "video_name": "2793136a-9f45-56ad-81af-dae57309a6d0", "text": "Make me a only one female of north korean reporter 90s, clothing giving a report in a 90s style, background style 90s noticer, bob cut hair, middle large hair, low angle camera centrally, suit white, make 1:51 length video "} +{"id": "8001537", "video_name": "462476ab-ad15-54b2-8c0b-9e9c263d442b", "text": "marvel superheros having face of Narendra Modi avengers assemble "} +{"id": "3006842", "video_name": "a6bad3d0-7aa6-5ff0-b843-b77bc4c4ed30", "text": "close up of pink car lack, reflection, chrome "} +{"id": "7003798", "video_name": "68122e9d-02e0-54a0-8957-c4d190545f33", "text": "a man without face want catch an angel. "} +{"id": "7003941", "video_name": "2fc392b7-0189-5f79-ae27-c9e4b48748a5", "text": "Battle of the Amazing Golden Armored knights "} +{"id": "2005714", "video_name": "6d7fcc14-d1db-5d5d-a311-97a5239e559d", "text": "1970s film shoot plants and magic "} +{"id": "1003665", "video_name": "437aa9bd-e9ed-51d1-be2f-8aaf6e4cbcb0", "text": "a single astronaut floating away in deep space among the stars. show full body. in the style of 2D games, anime, graphic novel. "} +{"id": "4004592", "video_name": "8b672709-6a9a-5491-9976-2333f420c64f", "text": "a man smokes a cigar and thinks "} +{"id": "6003567", "video_name": "b6be02d5-9496-50f2-823d-7e67d9c3c762", "text": "scattering of coffee beans on a white background "} +{"id": "7003268", "video_name": "86dd8dfe-cf93-50f2-8c85-8e798c8bb92e", "text": "gift machine for christmas, 1967 zenith color, satire, 1899 visuals "} +{"id": "1005034", "video_name": "5d17e3d2-ec5a-52d2-a190-c964afc4c48e", "text": "2 step dance baby talking tom with beautiful sinary "} +{"id": "3005900", "video_name": "609573d0-59b9-5686-b8e0-aaf6ba8b0382", "text": "an astronaut playing a video game with a Xbox "} +{"id": "7003921", "video_name": "9dcc1f60-811d-536e-ae80-c15f1681945f", "text": "smooth fps 8k Message: 1 Attachment "} +{"id": "1006412", "video_name": "756c047d-4fe9-5039-8005-d78d5773536a", "text": "a human surrounded by dangerous robots in future 3D animation realestic 4K vedio "} +{"id": "2004039", "video_name": "c099b0fa-a33d-5e2a-9a0f-6df0a0851aca", "text": "4 German Guys sitting in a circle playing gloomhaven "} +{"id": "2006983", "video_name": "80f3b70b-9a86-510c-a5ca-8b303bcede9b", "text": "make a big smile and say yes which the head Message: 1 Attachment "} +{"id": "8002556", "video_name": "a4f617f0-2b4e-5dd8-a7e1-af35695d7f8e", "text": "create a opening screen for City Cats, Pixar "} +{"id": "7003633", "video_name": "da1de5e9-4b1d-5ea5-96c8-ea3f461f9ad3", "text": "create morning sun add river tree stars realistic rising sun , 9:16, motion 4 pan camara zoom. "} +{"id": "2006968", "video_name": "f3185f8a-d3a6-579d-ae06-ec492e823488", "text": "In the valley lived a family of little horses, and a large river separated the valley from the town. "} +{"id": "7003836", "video_name": "69d67873-7d77-54f5-8ea2-65b1d83cc520", "text": "young girl jump from this window "} +{"id": "7002838", "video_name": "3a73c72f-5613-5977-b0b2-e5c3f3eed8c5", "text": "three peoples with some items in a shopping cart are standing infront of the billing counter . one of them has a football of them . "} +{"id": "1005741", "video_name": "69a7422d-1b76-5964-8f68-161ff11029ec", "text": "create the volkswagen golf MK4, moving in the road, cinematic style. "} +{"id": "6002318", "video_name": "ef285d66-1e90-57aa-be0e-b352384edd30", "text": "Awesome very high quality and resolution, realistic scenes, superior space environment super realistic physics with gravity effects, 3D world, photographic look 4K HD video "} +{"id": "2004427", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "a strong hurricane move toward a skyscraper "} +{"id": "0004127", "video_name": "03af1d22-1d0e-571e-ab7f-f889e0e95f56", "text": "cartoon, grilled cheese melting, colorful kitchen motion "} +{"id": "6002540", "video_name": "62781c70-792d-5a85-bd3e-efdb8554127d", "text": "One sunny morning, four best friends, Lily, Sam, Mia, and Ben, decided to venture deeper into the Magic Forest than ever before.One sunny morning, four best friends, Lily, Sam, Mia, and Ben, decided to venture deeper into the Magic Forest than ever before. "} +{"id": "6003308", "video_name": "47ddeef2-124a-5754-830d-9b741ea9ed20", "text": "George Bush flying a jet plane into the World Trade center twin towers Message: 1 Attachment "} +{"id": "6003381", "video_name": "63b53337-41ad-5124-b8aa-e95799ab42fb", "text": "Sharing WisdomRosie sitting by the oasis, surrounded by other travelers, sharing her stories and wisdom with a backdrop of the serene oasis. "} +{"id": "3004553", "video_name": "185d41ea-7b8f-57dc-a21d-1721b4605f2a", "text": "three people play poker, one man is sad, one women is angry and an old man is happy "} +{"id": "1004547", "video_name": "547089c7-dedf-5642-9c8b-a4e8469a3968", "text": "The story begins with the rabbit running through the forest, avoiding obstacles and leaping over trees. It appears excited to embark on its adventure. "} +{"id": "6000004", "video_name": "2de80c6c-0e7c-5f5a-a33a-0c2f71d9dfc0", "text": "Gem Cave Queen with Malachite Tiara appears magical in 3 different fashion styles, glitter "} +{"id": "5001017", "video_name": "9467f462-74ac-5a6f-be2f-22127460218b", "text": "Stumpp was arrested and taken to Bedburg Castle, where he was interrogated under torture "} +{"id": "3005449", "video_name": "ea2df3a0-6624-5e64-93a2-0028f47bd744", "text": "man drinking a cup of tea in a rainy night "} +{"id": "6002666", "video_name": "c6172d22-4ce0-565f-a28c-90d122141d2f", "text": "In Indian vegitable market, 5 people are fighting trying to steal tomatoes "} +{"id": "2003863", "video_name": "ec8c1eda-0e0c-516c-b250-db2a9fc487b1", "text": "A man with jetpack flying in air "} +{"id": "4004880", "video_name": "7175c1ce-12bc-547b-a807-6b8c1ef11334", "text": "Two little rabbits are running on the wide grassland "} +{"id": "2006423", "video_name": "785c203e-157e-573a-87a8-cdc36127464a", "text": "Write a poetic portrayal of a woman whose beauty is not just skin deep, but reflects the kindness in her eyes, the warmth of her smile, and the grace in her every movement. "} +{"id": "1003185", "video_name": "3a9af352-2777-53c7-b5e7-2701fbf7ce0b", "text": "A teddy bear in a suit singing Christmas carols "} +{"id": "3006064", "video_name": "61c54887-0883-573c-b9b7-56465c0059a9", "text": "He ruled the savannah with a firm paw, instilling fear in the hearts of all creatures "} +{"id": "3006671", "video_name": "25d9e594-943d-56a5-b5ce-e0d43b16c57e", "text": "anime style teenager man with a school uniform transmigrate in a martial realm and people\u2019s wearing armors looks at him "} +{"id": "0004960", "video_name": "1245860f-2d38-507d-946e-f5abfdcc38ea", "text": "group of birds on a tree "} +{"id": "0005300", "video_name": "181fb99d-5c42-5bc4-8e24-6f0e3fffd91f", "text": "a beautiful African village with people moving around, no animals. "} +{"id": "2005980", "video_name": "619cea75-c0fc-5318-8031-473127617e5d", "text": "A key frame from the first scene where backyard while "} +{"id": "1006255", "video_name": "72984dfe-cf55-5ad5-adfc-5a5253a1b852", "text": "Henry arthur blake , people cheered. "} +{"id": "6003890", "video_name": "456d27da-d322-59a0-b636-3d2a900a2110", "text": "Black and White Scene of a Victorian family eating dinner in a dining room with a christmas tree in the style of Dickens illustration. "} +{"id": "4004877", "video_name": "29c74908-050b-5351-8fda-620c5a3f6f51", "text": "A detective interrogation room, wide shot of man standing and another man sitting, in the style of noir cinematography, 4k "} +{"id": "6004141", "video_name": "a5097d2a-a50d-54c5-8e03-f69e8fc1ab69", "text": "open the video to a bustling cityscape with animated graphics depicting food waste in various stages of the supply chain. "} +{"id": "2007209", "video_name": "f5abfff6-7faf-5ad0-ae94-c19569f508aa", "text": "futuristic city, only using red, black, white and grey Message: 1 Attachment "} +{"id": "0003394", "video_name": "3cc599ab-7e48-5770-8d56-81a87a794c6a", "text": "a cute girl from uttar pradesh talking about herself "} +{"id": "7002162", "video_name": "7a10ac06-ec5a-54c9-94af-565c24860a4f", "text": "Conversation disrupters and triggers of conflicts. "} +{"id": "0005225", "video_name": "16e3d2bc-61ce-5ac4-9c4f-27ac95069bc1", "text": "hotel vela ( W hotel) on the beach of Barcelona is burning "} +{"id": "6003905", "video_name": "b3281ce3-7de3-58af-a1f9-a7efa017ac17", "text": "2d walking girls 60 second length video "} +{"id": "3005561", "video_name": "d984bc15-cde8-5500-b9e6-48fccc6306d4", "text": "Discuss the efficiency of different sorting algorithms in rearranging elements, drawing parallels to the movement of data.,32k "} +{"id": "6002110", "video_name": "81d27989-b42c-54ca-a072-b429a89ee7f8", "text": "two larger than life cobras deep in penance on a secluded land with their hoods open praying to Lord Shiva 9:16 aspect hyper realistic "} +{"id": "1003559", "video_name": "419b59ae-c669-56f1-8679-dfd32b6fb704", "text": "was founded some fifteen million years ago on what was an island in the \u201cGobi Sea\u201d (today a desert) "} +{"id": "0005790", "video_name": "214c0217-7bc7-512b-8c93-a3e84f87d1e1", "text": "a captivating video showcasing various outdoor events. The video should capture the energy, excitement, and diversity of these events, from music festivals to sports competitions, cultural celebrations, and more. The video should be in a 9:16 aspect ratio to optimize viewing on mobile devices and social media platforms. Please ensure the video is vibrant, engaging, and truly encapsulates the spirit of outdoor events "} +{"id": "7002071", "video_name": "55e410e3-05e3-5b5b-b9c4-99a7e5211dca", "text": "HD ultra cinematic video showing Tongue , Indian woman transparent clothes, long and attractive body, face , healthy fatty "} +{"id": "8001210", "video_name": "cb4dc013-e33f-5a80-8a78-098c87f7a413", "text": "a bunny on a balloon that explodes "} +{"id": "1005148", "video_name": "5ed895ce-ed17-56dc-87cb-d093614a23ae", "text": "a top view of a bed moving in rythm "} +{"id": "2007516", "video_name": "8b1b7c60-0df5-5117-a6a9-00e378bd4dfb", "text": "As the young girl explores the abandoned garden, she encounters a variety of fantastical creatures, each embodying a unique blend of organic and technological features. A graceful creature with bioluminescent wings flutters by, its delicate body adorned with intricate circuitry, merging nature and machine in perfect harmony. Nearby, a wise old tree stands tall, its branches adorned with luminescent data streams that pulse with information. "} +{"id": "2005005", "video_name": "6cd0d304-92f9-55cc-a4ee-acf4f85ae554", "text": "Disney style video of a couple of dinosaurs staring at the same spot in the beach at sunset, gentle waves in the background. "} +{"id": "0005857", "video_name": "2265d06a-4baa-5cc6-8c03-d7a93ab52b07", "text": "The cast of the TV show Ghostwriter depicted in Studio Ghibli style. "} +{"id": "2004527", "video_name": "c317d0d1-57c6-5049-bd5b-9a34eb960776", "text": "4k, 3d, maskott, squirl, timeless age, gaming, with headset, orange, black, read clothes, animated "} +{"id": "6004387", "video_name": "1790a508-0ffb-5dfc-80fe-f8a44edf8600", "text": "Introduce the two protagonists, one from the past and one from the present, and describe their lives and backgrounds. "} +{"id": "8001108", "video_name": "1780db1c-75f0-529c-af50-6640a7da337a", "text": "people gathering around a very old painting of a queen and she\u2019s very beautiful "} +{"id": "3004003", "video_name": "78096a4e-2b79-57d6-9f95-97d63eaf0808", "text": "the Big Bang (origin of the universe) "} +{"id": "4004609", "video_name": "1983fc99-9487-55b9-a584-79cd6ef3ffa9", "text": "a sri lankan with an apple macbook pro, who is willing to find vulnerabilities in the entire internet! "} +{"id": "0003090", "video_name": "36d3d030-5fa9-5c24-957d-48cd90a51d5f", "text": "Video editing stages in 4 cards fanned out "} +{"id": "3006722", "video_name": "158b87a3-94be-5e93-a1d6-f2c408458f66", "text": "allowing water to rush into downstream villages all the way into Nigeria and allowing large amounts of carbon dioxide to escape "} +{"id": "1005523", "video_name": "65aa0e8e-ac54-5dec-9e2d-c95693f3cc83", "text": "alien being in multple realms beyond the ice wall in antarctica "} +{"id": "3005328", "video_name": "57380655-469f-5d6e-8946-2fe335980ffa", "text": "a soldier playing the piano in a destroyed house during a dark an rainy day "} +{"id": "1004974", "video_name": "5bf44554-c770-5fe9-a72f-16f9a7ebe63c", "text": "cartoon character african american kid reading a book facing the camera "} +{"id": "0004540", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "a islamic background with Quran opening pages hd quality cinematic zoom camera 16:9 realistic "} +{"id": "0005159", "video_name": "15cb7042-dadf-5944-a9a7-2edae5ad859d", "text": "a samurai with a katana and a camera in hand, realistic ,8k, HD, cinematic blockbuster "} +{"id": "6002347", "video_name": "391af7bb-513c-5c6b-a9a8-1ce7bc228e08", "text": "The Border Collie is bathing under the warm sunlight, with the gentle breeze making the scene more authentic "} +{"id": "6003483", "video_name": "f3ebdf0c-7f10-5b4e-8e16-ff789c70910d", "text": "gold in the air of summer "} +{"id": "4002348", "video_name": "a30d87ec-f546-5ed3-aee2-bb9a507a0844", "text": "Elon Musk fighting himself star wars style. "} +{"id": "8003896", "video_name": "6aac310e-c62c-53e6-9248-9dd4ed448fc6", "text": "Taylor Swift accepting an award at an award show, flashing cameras, celebrity, realistic "} +{"id": "2006775", "video_name": "1500ef14-f631-567a-9ce2-7b1db5516ea0", "text": "In the bustling world of animated insects, our diligent cartoon ant and carefree grasshopper find themselves preparing for the annual Bug Festival. While the ant diligently collects supplies for the winter, the grasshopper is busy enjoying the festivities. How do their contrasting approaches to life lead to unexpected challenges and heartwarming lessons about the importance of balance and preparation? "} +{"id": "6004049", "video_name": "d1af97a5-b045-5d17-9078-31eeab7e0c87", "text": "As he journeyed deeper into the heart of the jungle, Aiden made a remarkable discovery "} +{"id": "2006640", "video_name": "e2bacca3-53f8-5690-9c27-83f73bbaf29f", "text": "the gentleman should be sitting at a desk, with only a magnifying lamp, a bottle of spray labeled \u201cKurt\u2019s Card Care\u201d and a mat with a vintage baseball card on top. he should have a tortelion on the desk and a microfiber towel. "} +{"id": "2007037", "video_name": "f95cde37-b033-5545-91d8-237f01f7eccd", "text": "beautiful blonde woman with tied hair, beautiful body, short clothes, running on a treadmil "} +{"id": "8001115", "video_name": "7c0f46a2-60ff-58b2-aaad-35dbbffc21c7", "text": "By saving his life with his wisdom, he inspired Galav to seek refuge with Maharaja Yayati, the lord of Pratisthanpur situated at Jud, the confluence of Ganga and Yamuna, to achieve his desired goal. "} +{"id": "1006956", "video_name": "7f48cd51-0725-5a0f-b4c1-7a1ada275607", "text": "a christian Cross and dandelions in front of an American flag in the middle of a mind "} +{"id": "2007518", "video_name": "824f9154-6c80-5b8d-b902-aff036c5263b", "text": "little with Friend in a farm "} +{"id": "0006675", "video_name": "30c85ddf-e088-556d-b36a-5d53a883e560", "text": "liminal space horror with elf screaming "} +{"id": "3004638", "video_name": "0d83d3b5-b580-52b1-bd72-d58544a0fc92", "text": "A little cute baby name alveer with blinking eyes is being carried by his mother,the mother is singing lullaby, "} +{"id": "5001400", "video_name": "8dfc1184-3ce2-5316-bbcd-16ce29dfc917", "text": "a red car pulling off in front of a dog farm in a sunny afternoon. "} +{"id": "4004177", "video_name": "ef384c6a-c9b7-54ac-b451-3d4b998e7c19", "text": "campervan driving through wonderful transitioning winter landscape "} +{"id": "1005780", "video_name": "6a60ad70-b2b1-5dc2-bc71-669ba0bde71f", "text": "clear white room inside a spaceship, smoke, white walls "} +{"id": "0006446", "video_name": "2cabf14f-7f8c-5b2c-8f5b-9353a087920e", "text": "Model a picture of a bear eating candy "} +{"id": "1003143", "video_name": "39f4ed33-35ce-564c-9d08-104530a0d727", "text": "a starlit desert with sartun as the moon "} +{"id": "8002036", "video_name": "01a1426f-181e-5114-a966-2a30b9bb84fd", "text": "ottoman troop with 40 000 soldiers marching "} +{"id": "1005178", "video_name": "5f47da40-bd58-5f0f-9332-9cc4d9d1d79b", "text": "please create an abstract animation of colorful smoke drifting "} +{"id": "8003995", "video_name": "b558e9d1-1146-518c-8ed9-5f03518b9df1", "text": "sea with lot of boats Message: 1 Attachment "} +{"id": "4002004", "video_name": "e0c64f6b-7104-5130-b580-c83632a2f18c", "text": "Pure Love and Emotion Message: Liebe (Font: MODERN) "} +{"id": "1003037", "video_name": "37c0cfad-47f2-521a-b84d-f4181761a797", "text": "Visualize a warm and tender school scene, capturing the essence of first love with soft lighting and gentle animations. "} +{"id": "3005818", "video_name": "fdeb53ab-834f-55aa-b950-7cbd493534a2", "text": "Wes Anderson directed episode ofr Aeon Flux "} +{"id": "3003013", "video_name": "a670c096-fff3-5f63-b639-82a8540ae74c", "text": "Power Rangers fighting a big monster, cinematic, vintage camera, old footage, found footage, blairwitch project, vhs footage, hyperrealistic, photorealistic. "} +{"id": "4002600", "video_name": "af6a8835-b691-5856-a029-1dd4e11ac3bc", "text": "cute dog cartoon walking Message: how to (Font: MODERN) "} +{"id": "2004079", "video_name": "d6e09ea5-eaff-5a1f-ba28-311ae3d5117d", "text": "fast zoom of birds eye view of city at night "} +{"id": "6002786", "video_name": "452175c1-f6f9-5bbc-8c91-ec995640d4fc", "text": "create youtube title name is alangaram "} +{"id": "7002271", "video_name": "b2334e0b-4c37-5323-9b4a-545df45d9afc", "text": "light background, with free gifts inside a Christmas box "} +{"id": "7002927", "video_name": "44ee2967-98b8-5a92-a585-95d42474efbd", "text": "There is just a little too much salt in Shikanji.\u201d The student said. "} +{"id": "0003899", "video_name": "456989b1-df16-573f-a92e-0b629192a21a", "text": "a scene with a padlock around a personal computer "} +{"id": "3006863", "video_name": "46ce7468-dba9-5f54-ab18-6a3fbad408d7", "text": "studemts are working with Cyber \u200b\u200bsecurity "} +{"id": "4004816", "video_name": "97b7c724-d497-514e-afe6-37d824c75e12", "text": "3D animation, a man walks to the podium "} +{"id": "5001127", "video_name": "fb3de33a-4cb5-574e-958f-20bdaa39d16a", "text": "a view of a meteor falling to Earth viewed from a building window, cinematic "} +{"id": "2004113", "video_name": "6b5eb1b1-3ffe-5f55-98c3-dd38c27424d8", "text": "Skyscrapers Are Growing Higher In Poor City In Europe, 90s VHS Cam Footage Filter "} +{"id": "0003797", "video_name": "43980c71-53a4-51a8-9859-c0061fce0990", "text": "Sam flying over a meadow with a wounded rabbit below.Capture a shot of Sam, the sparrow, gracefully flying over a meadow. Show a wounded rabbit below, in need of help, with Sam spotting it from above. "} +{"id": "3005420", "video_name": "55034e27-6b01-5046-a5ae-6e1b82c2fbaa", "text": "moving clouds, palm trees moving with air, sea colliding with rocks, sea with moving waves, movement is 24 frames per second. "} +{"id": "7004349", "video_name": "ccedac27-c03e-5233-99ad-d0f208f11e76", "text": "film still superman flying through new york city at super speed wide shot in 2023 movie scene great cgi "} +{"id": "2004886", "video_name": "a58bc32e-0874-5982-bfae-589f571abd0a", "text": "the boy is looking for new fashionable sneakers, but the prices in all the stores are very expensive, then he sees a new stylish store called Prospect, enters it, opens the catalog and is surprised at the prices here, they are super. "} +{"id": "1006050", "video_name": "6f170fd2-3dbc-5cdb-b217-5151745ee8d6", "text": "classical music band playing in a big retrofuturistic theatre, neon lights, fisheye camera "} +{"id": "4002949", "video_name": "32818900-87ed-5f47-8449-c4b61b4f2efa", "text": "Trains seen from above Message: Mario (Font: MODERN) "} +{"id": "8002812", "video_name": "56901e18-a0ae-50c9-b804-9e5f91db5a3a", "text": "a long eared cat with stripes walking and blinking towards the camera on a hill overlooking a crystal clear lake "} +{"id": "7003038", "video_name": "07a5c14c-834a-5935-aa79-28a39d1c276e", "text": "the serpent tempting eve in the garden of Eden, green pasture and trees falling leaves background "} +{"id": "4002992", "video_name": "96459adf-f05a-594f-9d1d-4492cd99f72b", "text": "a single Crow flying above the hot dry forest, discovering a pitcher in the distance. "} +{"id": "1003547", "video_name": "416abd16-9bb7-5ab6-bfc9-d4f9ade14023", "text": "a dog and a cat is fishing "} +{"id": "1005094", "video_name": "5dfe6dd0-fcb3-53cb-9070-00146ea823ec", "text": "video of two people falling in love, having troubles and rekindling "} +{"id": "7003258", "video_name": "4bc46d15-c47d-5c60-8d4b-267bda941a11", "text": "two old delhi houses in morning view "} +{"id": "8003761", "video_name": "d2db6352-629c-56c9-a8b2-8347b2ec4cd2", "text": "ox with head of Benjamin netanyahu "} +{"id": "4003848", "video_name": "cda95e46-3298-5f68-b780-418729b58dd6", "text": "dorothy with toto dog (wizard of oz) dancing walking along sparkling golden shiny yellow brick road leat to the Wizard of OZ castle, uhd, bright tones, happy, cinematic motion "} +{"id": "2005595", "video_name": "349eec42-d257-54f6-bf94-de84cb1e2a74", "text": "redbox machine in dark empty parking lot at night "} +{"id": "8002952", "video_name": "550f97ba-f034-5add-abc5-c5ef43a6035f", "text": "an airplane falls out of the sky into fog "} +{"id": "1006823", "video_name": "7ccab564-118c-5de1-9f11-d5a8a75b6ce6", "text": "Horror santa clause walking, third person view "} +{"id": "7002379", "video_name": "67754ce2-0acd-521e-aca0-39c8a295153a", "text": "These practices involve staying present in the moment, observing your thoughts without judgment. "} +{"id": "2005678", "video_name": "75fff2c5-20ef-563b-bb20-e89db775acd3", "text": "We are a successful personality development academy Our mission is to help modern parents create a generation of thinking children and develop in them the skills that will help them realize their potential in the future A thinking child can do more than just read and write. He understands what he read, knows how to analyze, speak and express his thoughts "} +{"id": "1005577", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "Create a 4K video of a 1500s wedding with attire from the era, nighttime exit from the church, European culture, with a full moon covered in honey in the background. "} +{"id": "3005089", "video_name": "c878c3b2-c90d-5275-8398-527f41907ab9", "text": "a funny logo to a youtube chanel "} +{"id": "1004264", "video_name": "4ef0e417-d4e5-537c-8695-e8011509bcf8", "text": "cartoon, anvil falling on yellow toony dragon "} +{"id": "0006724", "video_name": "31c88b09-1220-5c56-bf63-f1ce4d5e9f73", "text": "4 baby cats crowd by the window , curiously watching inside the tiny house,happy and mischievous. "} +{"id": "1005298", "video_name": "61539647-b497-5527-96ad-cd6fac56c0da", "text": "Introduction to the family: Abbu (father), Hassan, Ahmed, and Omar (children). cartoon 3d story, motion1 "} +{"id": "7002908", "video_name": "99b13eb2-0476-59ca-ba4c-6b0862f109ca", "text": "oranges and tangerines hovered in the air and juice began to ooze from them, on a red background, maximum resolution, maximum detail, cinematic picture, the highest quality. "} +{"id": "2004005", "video_name": "c06d754f-343b-5cd1-ab2e-b2df7889119d", "text": "wide angle view of a delapidated city, doomsday, heavy rain, motion 4 ar 16:9 "} +{"id": "0004390", "video_name": "082a9cc8-da81-5064-b5cc-7d1f3aabe0c5", "text": "The Funeral of US President Bide, showcasing photos of Biden "} +{"id": "4003580", "video_name": "4338f0cc-85a3-535b-a36f-f3c042c6d67c", "text": "People weighing their wealth on a scale in the Mughal Court "} +{"id": "8001291", "video_name": "1d5171f1-1a34-50d9-9cd2-decaea381885", "text": "Taylor swift riding a Horse, CNN news "} +{"id": "1006881", "video_name": "7dcd7643-128f-5b1a-8c9d-31a87f27421b", "text": "Person dreaming at night, moody, hyperralistic, modern, dreamy "} +{"id": "3003979", "video_name": "89eb942a-cd49-5da6-b0fa-721061ae8d64", "text": "surfer surfing in a waievy sea in sunset "} +{"id": "8002870", "video_name": "ca38a9d6-a3b8-5811-8c37-cd0edd56a52a", "text": "a man with brown hair to his shoulders in front of a castle in renaissance clothing, he turns to look at the castle, the clouds are moving, the sky is tinted red and crows fly high above, in the style of Christopher Nolan, masterpiece, cinematic, slow zoom in "} +{"id": "8001367", "video_name": "1350c990-1a33-579d-b010-0992b9154877", "text": "Young woman Lily finding an old book in the village library about a love potion "} +{"id": "0006406", "video_name": "2be3aade-4b29-5728-9dc2-5b63371a5ee5", "text": "hands forming heart and when the fingers connect they light up "} +{"id": "8001338", "video_name": "0822afb8-b1fa-5136-b417-ab7506901696", "text": "Coolio talking at 25 years old "} +{"id": "2006622", "video_name": "c1f8658a-86fd-5938-a69e-6e1a85ca31a4", "text": "Scene 10: The lights flicker. The lights flicker off and then back on. "} +{"id": "1005443", "video_name": "640c1e0b-c969-5ac8-8db5-478567df70d2", "text": "a tree with the form a woman, in enhanced highly detailed digital painting style "} +{"id": "2006815", "video_name": "d02965d8-1057-5315-a7f8-de42487ba627", "text": "a DeLirean car returning to tbe future intro flames "} +{"id": "4002177", "video_name": "7a134cbc-5929-5219-a04b-3915276cf37a", "text": "a woman taking a bath in forest with trees "} +{"id": "5001849", "video_name": "e9e8da56-f422-529d-8e12-71b02fb1f88f", "text": "Bruce Willice In front Of American Flag "} +{"id": "4002714", "video_name": "00e57b3f-cd6b-5774-bd70-0b2054f59b09", "text": "visualize heaven from the book of Enoch, animate, 8k, bright lights "} +{"id": "8003244", "video_name": "1e9cab1f-1c10-5f29-809e-906762429411", "text": "A bricklayer is taking a break after a hard day of work in construction, he is looking towards the camera smiling, film look, 4k "} +{"id": "5001360", "video_name": "1a23fd01-943e-510b-a1e8-2267b9debf59", "text": "a gorgeous Lady smoking a cigarette while sitting on a bike. "} +{"id": "7003612", "video_name": "12c5c58a-89cf-507c-ad76-6967d567aa21", "text": "A beautiful female superhero with a cape and her hair flying in the wind high quality animation hd, 8k, high definiton "} +{"id": "3004115", "video_name": "9c7ba661-d4c9-5111-9280-9ceac58d4aed", "text": "a boy riding a dog in space "} +{"id": "3005148", "video_name": "db030d4c-db0f-5c30-ac78-7dd200e38b22", "text": ": a lion chasing a mouse in downtown Manhattan "} +{"id": "0005745", "video_name": "2079cd71-1b9d-5425-923d-a9c574bf4ee2", "text": "Donald Trump in an astronaut suit floating in space with the earth behind him, feature film, 8k, hyperrealistic, minimalistic, wide angle "} +{"id": "1005654", "video_name": "67e22bf9-dbf7-57db-a6a0-1f0123882e78", "text": "a gladiator sitting next to a Christmas tree in a cozy room with a burning fireplace . "} +{"id": "7003172", "video_name": "219a7add-2644-5324-9c0a-c8daea1bc772", "text": "survival people fought with hyper sharp wolves in syberian ice forest. "} +{"id": "7004957", "video_name": "4101e4a9-3e21-5667-9ae4-21585d088658", "text": "People walk slowly to this road\uff0cIn slow motion, "} +{"id": "0004838", "video_name": "101636e7-13d8-5c9b-a47e-a8b6037b7815", "text": "3d, dwarf, in a forest, mystical lighting, smoking a pipe, suddle movement only "} +{"id": "6002206", "video_name": "9bd6f76e-233f-5b81-854e-50d7dec2df70", "text": "a city on fire, a superhero hovers flying with flames in the background. Cinematic, HD "} +{"id": "2006116", "video_name": "455de16d-bccb-5239-98bd-da6ed159e1b1", "text": "In Christian iconography and art, you will more often see him as a fallen angel or Satan, with horns, wings, sometimes fiery eyes, and distinctive red or black colors. But I emphasize, these are only artistic interpretations, not official descriptions. "} +{"id": "2003109", "video_name": "11617ff8-7918-5760-bc16-a5ddc2a2ee13", "text": "a black bearded farmer cartoon cutting crops in his field. Disney style, Pixar Style, hyper realistic 4k video, ar 16:9 "} +{"id": "5001055", "video_name": "72b321fd-7860-598f-b35c-756111e2951d", "text": "zenith, boiling coffee, macro shot, slow motion "} +{"id": "0005609", "video_name": "1df414dd-d0c5-55aa-af9b-e73d46695cc5", "text": "Helicopter flying over the seaHelicopter flying over the sea "} +{"id": "7004839", "video_name": "dbc5ae90-c485-50af-8e4f-c1d1b409ca8c", "text": "Donald trump playing golf in Dubai "} +{"id": "3004781", "video_name": "fe32a707-c2ba-5aee-8296-98db690a0e5d", "text": "plus sized white model in crochetwear "} +{"id": "2007424", "video_name": "358a1c96-89f5-5618-80eb-762a07ada368", "text": "a tall handsome man selling fragrance oil in a mall "} +{"id": "6002996", "video_name": "69385afb-b179-5e35-a808-ee8342fd6f73", "text": "girl walks on the road, frontal view "} +{"id": "3003393", "video_name": "7b056890-edf2-5ff1-bd8d-556e7eb56c00", "text": "Armstrong opened the hatch in space "} +{"id": "2005336", "video_name": "e4639871-f309-5535-b9db-7446ad8592c2", "text": "A mouse is running inside a running wheel, black and white, 2D, abstract "} +{"id": "4002964", "video_name": "878346ff-c001-5dca-98e7-f1239838d8a3", "text": "2030 Style, Black Background, Soldier in Modern Style Armor and Honest Pose, Photography Style "} +{"id": "1006162", "video_name": "70d564ba-5631-57da-adc7-6b0ee8ca303b", "text": "beautiful girl with wide eyes and sharp nose "} +{"id": "2006001", "video_name": "7257eb35-a397-5ee5-9ff7-1c7686c5b37a", "text": "john selection richylux paint from the paint store "} +{"id": "7002158", "video_name": "f47c81ef-ad65-5549-92cb-a09d1efaa717", "text": "a financial man at his desk waiting a great news "} +{"id": "3006466", "video_name": "4df45371-a6cd-5750-89f7-e259edb6c4c9", "text": "a wild tortoise. 4k ar hd. Full body structure "} +{"id": "0005572", "video_name": "1d2fa903-8bc1-57cf-83e6-95a5f246c1fa", "text": "An african american women walking and enjoying the sun "} +{"id": "3006495", "video_name": "b4ac97d3-f8b6-59f4-9378-77d984f20ef2", "text": "the villain, the quintessential bad guy, the big boss, the last level, final boss "} +{"id": "7002758", "video_name": "a215aa05-ff8f-5ba2-b10c-0c8b7ec51552", "text": "Will Alex save his world, or will he become a victim of his own animated nightmares? The answer lies in the whispers that echo through the pixels of his digital reality. "} +{"id": "8003772", "video_name": "33523719-b360-5155-9981-620611ed2e27", "text": "blue bird flying towards the camera "} +{"id": "1003065", "video_name": "3854f5b4-1b5d-58a0-9782-717f0cd1f128", "text": "she use phone and birds fly around Message: 1 Attachment "} +{"id": "0006776", "video_name": "32ef48b0-4c21-5bda-bf8a-9b7320118965", "text": "1970 A24 film aesthetic tropic landscapes with wildfires "} +{"id": "0004888", "video_name": "10f4e4af-51ec-5c09-b291-6f4a3248178f", "text": "cultists from a surrealist 1960s art film "} +{"id": "0004084", "video_name": "02e9598e-9b19-5fca-b351-2e1bfc5b097c", "text": "A colourful sketch of men in his 20s holding bag in his hand front view, behind right left view "} +{"id": "1003528", "video_name": "410cb431-2220-5112-922c-137d72b190ec", "text": "a cyclops in a cave, nightmarish atmosphere, black and white, 16.9 "} +{"id": "4003685", "video_name": "43690864-a148-598b-a36d-4b657bdf2bcf", "text": "a scary grass monster jumping up out of the grass "} +{"id": "1003542", "video_name": "4154b6fa-5265-5614-a8c1-1e30e0aaaf6b", "text": "Full body photo, Chinese female model, long hair rolled up, wearing a mask, wearing a green cheongsam, the background is Beijing courtyard "} +{"id": "5001203", "video_name": "78a401df-8fe7-54c8-bc08-0c4b81cacf73", "text": "fixed camera in the style of Pop Art animation close up cinematic colourful polka dot non binary Lee Bowery style laughing one person solo looking at camera alone stylish flat light front lit well lit plain background "} +{"id": "1006596", "video_name": "78e380d6-f5a2-5011-99ee-c9b13a9f3d6a", "text": "a man sitting under atree in the desert holding a verry strange creature in his arms "} +{"id": "5001049", "video_name": "103a7483-9cb7-56f3-9f7f-47e090755de8", "text": "ancient battles in African with soldiers on horses battling "} +{"id": "8001645", "video_name": "7f8c5048-16b4-5ed0-844f-dbfb4fe4ce07", "text": "computer screen Message: CODEBREAKER ( Font MODERN) "} +{"id": "4004415", "video_name": "54e1c683-4d1c-557a-b286-1cfbc9a409f8", "text": "a beautiful xmas tree in a department in japan , anime style "} +{"id": "2005387", "video_name": "0f5d7d5c-c295-574c-97bc-4d9647fd4f14", "text": "Reaching the Rainbow Mountain involves a challenging trek that often begins from the town of Cusipata. "} +{"id": "1003164", "video_name": "3a4600e0-2bc6-510c-9fba-b3b33104f393", "text": "father and 13 year old son driving and having an important conversation, minimalistic, black and white, cartoon "} +{"id": "2005566", "video_name": "878183ba-f5c9-529d-99e1-2c423f953f74", "text": "a girl with a Christmas hat on the PC, typing "} +{"id": "6002539", "video_name": "561bb833-72d5-5a44-a34f-d9a411099367", "text": "one man standing on a railway track "} +{"id": "8002810", "video_name": "421077ea-7d2b-58f1-8525-69c5a88d7324", "text": "Mid shot, Chinese male teacher (green shirt, black tie, straight hair, short hair, central parted hairstyle), Walking on the campus(blue and white color scheme) "} +{"id": "8003139", "video_name": "5da8c5de-a679-507f-a2fa-f9213cade9fb", "text": "A woman (holding and looking at a skull: 1.9), the skull in her hand, the woman is tall, dressing like a medic, with a white coat, long black hair with part of it (behind the ear: 1.9), eyes lime green semi closed, a sad face, heavy makeup, eye shadows, red lipstick, pale skin, in the dark, light above her, sit in a chair, in a doctor medic office, "} +{"id": "2003981", "video_name": "b0e43e53-cac7-5e6b-8794-8bb023be5613", "text": "He wields a trident, sending bolts of water energy in rapid succession at shadowy aquatic foes "} +{"id": "8003064", "video_name": "a703ca81-ddef-5218-9714-88a1ce69f23f", "text": "high quality render of realistic fairy kingdom glass orbs "} +{"id": "8001447", "video_name": "f2f1c552-dc79-5bf6-b7f0-9f9982671e37", "text": "cute scary cat holding a treat in there hand with a Halloween costume. "} +{"id": "2007777", "video_name": "2a161293-1e55-5d5c-814f-3ae44ea09d48", "text": "Nicolas Cage captured on a night vision camera in the woods fighting zombies with a chainsaw "} +{"id": "1003265", "video_name": "3c16ee3f-c20e-504d-8396-c68b2e894d06", "text": "trippy colorful pink purple yellow green nature image "} +{"id": "1003804", "video_name": "464070c9-cdf1-5b68-967b-94e866b5889e", "text": "Aerial view of the Louvre, zooming in on the glass pyramid. "} +{"id": "3004271", "video_name": "d841f82b-e5fe-52e9-a695-71c3cad6cda4", "text": "space rocket traveling into space and discovering a futuristic planet "} +{"id": "8003158", "video_name": "4eb4d075-1355-599a-84ac-a9574bc5892e", "text": "A detailed map of bliss, with an intricate design that includes elements of nature representing the virtues, forests, rivers and mountains inspired by faith, "} +{"id": "6002026", "video_name": "7004f8d2-1a7c-56e5-a75d-04497b55db07", "text": "an ant wearing shield in the middle of war and fight "} +{"id": "6003232", "video_name": "78d32fd0-f0a0-58de-8247-d65a72de7223", "text": "somking weed in the night infront the eifel. "} +{"id": "0004706", "video_name": "0da4f578-983f-5656-96c3-38ba319a8c5c", "text": "Soldiers rescue the scientist, facility experiences a massive explosion. "} +{"id": "6002838", "video_name": "6f811ddd-0f40-5fa2-bc66-0ba58b0d8b15", "text": "a video in which a fox standing near a lake looking towards a man "} +{"id": "2005401", "video_name": "f70d4299-7e76-5a42-baf1-9c796c7f9c58", "text": "The figure closes their eyes and remembers a time when they were happy. They see the face of a loved one who is no longer with them. "} +{"id": "3003914", "video_name": "9e5e9358-3073-535a-9b6b-d6f0816558e9", "text": "a man in a black suit in s dingy white room picks up a spattered baseball bat.Heavy shadow. black and white. dark. low light. mysterious. suspense. horror.1950s. film noir. "} +{"id": "2006476", "video_name": "3b0e922b-4462-5bc9-be5c-5a8a13ba5a79", "text": "picture children eating honey in nature and rejoicing and pouring tea from a samovar "} +{"id": "0006393", "video_name": "2bc10a18-87e7-59b0-8ea3-97f87d0046b2", "text": "black background Message: web3now (Font: MODERN) "} +{"id": "3003670", "video_name": "6dc03214-55e5-5c55-8037-4f066443ce78", "text": "A moonlit night, shadows dancing in the eerie glow. "} +{"id": "2006135", "video_name": "91a9564b-f0d3-54bb-99b8-59adea6686b6", "text": "A green alien playing a saxophone inside of a chrome sophisticated spaceship with a visable window showing the universe "} +{"id": "1003394", "video_name": "3e95f585-96fd-5cee-96d6-9049e5528746", "text": "Show cheerful sea turtle assisting other sea creatures in need, in the sea showcasing teamwork and kindness. "} +{"id": "7004583", "video_name": "066e5f4b-17e7-5539-a39d-9c60ca964302", "text": "Pug being put into cage at the pound, CGI animated, 8k, sad "} +{"id": "1005996", "video_name": "6e33dc9a-2a7d-5182-a825-8cb3a9e12131", "text": "A scene of old time battle "} +{"id": "0003708", "video_name": "421faa03-6335-5f65-8544-40f9fb19b2a7", "text": "person helping another 350 B.C. Rome coloseum "} +{"id": "7000004", "video_name": "fd82857b-7303-5e7a-b658-3caa0b0d2d8b", "text": "image of an albino woman in a red room with roses "} +{"id": "2004002", "video_name": "43a1a2b9-3873-5896-a2f6-b79203b916fb", "text": "A single plastic tube filled with luminous red liquid, floating in mid air , ultra resolution, 8k anime "} +{"id": "6002643", "video_name": "a1699235-4284-5b6d-8fb9-d7964470d3c2", "text": "A long haired beauty wearing glasses is watching TV "} +{"id": "0005972", "video_name": "243bc853-d90e-59f7-85c7-6a283706bc62", "text": "a man and women hiker walking away from camera into a background of beautiful snowy mountains, exceptional character detailing "} +{"id": "2006179", "video_name": "69f75766-c377-59a9-99f2-4bf421257611", "text": "black pink Lisa with black dress playing game in dark room before mirror and candles "} +{"id": "4003495", "video_name": "fda32d68-1f74-52ae-aed4-3a2dde7fbcbf", "text": "skull in dry leaves in the forest, old horror film image style, black and white movie with damage "} +{"id": "3006564", "video_name": "03e97cca-77da-59b2-a984-f622218574ab", "text": "a puppy chasing a balloon through a field "} +{"id": "2006555", "video_name": "a82dad00-88d1-54ed-9c3b-9533597c1e1a", "text": "a super cute dog having fun with belly up "} +{"id": "2007133", "video_name": "3ecb208d-b550-5b8c-b960-c19b4ee967c6", "text": "rome in 1910 black and white horse carriages piazza "} +{"id": "7004374", "video_name": "bdc752e8-cd45-59e7-9d61-92568f6cea39", "text": "fairy tie with CHAIN in the well,zoom in "} +{"id": "3005596", "video_name": "a7f1e634-6865-5e96-b35b-d965dd2d39ed", "text": "paint a picture with a brush "} +{"id": "8003561", "video_name": "7f8b9973-72f4-5354-a839-b6a17e387ea4", "text": "anime girl with super rifle ,ultrasharp ,8k , "} +{"id": "3005174", "video_name": "cd0451f5-bd2c-54d1-9665-7a01b1f75a68", "text": "8k resolution toy cat in pink dress going angry smile and pick up a huge purple stick "} +{"id": "6002758", "video_name": "b1c9d047-37f8-58d1-a8f4-cdb5e68de545", "text": "Food Fight In School, 90s VHs Fliter "} +{"id": "0003446", "video_name": "3da8e6f6-433d-5e31-aa70-089b7841e1e5", "text": "Puzzle pieces, black and white Message: s e g c (Font: MODERN) "} +{"id": "1003543", "video_name": "415bf908-5aa1-5a6b-bb69-e352f0f9f829", "text": "In the late night, under the bright moonlight, in a bedroom, a little boy is sleeping while a whale swims past outside the window "} +{"id": "1004218", "video_name": "4e07e16d-325f-5245-a58f-30ca8ac11b0d", "text": "Couple 1 stands at the mountain looking at nature, both wearing orange clothes. "} +{"id": "2005682", "video_name": "3d7ba40b-2ec0-5939-8477-309a171053a0", "text": "a big logo of a coin named points must be static and funny and purple "} +{"id": "4004343", "video_name": "9fe58b92-859a-53ee-b420-64915abeceb2", "text": "Draw a couple in the garden to create a poem together, they sit among the flowers and plants, the tip of the pen flowing affection and praise for love. The beauty of the garden and the fragrance of the flowers complement the beauty of the poetry. "} +{"id": "1004959", "video_name": "5b9ec835-5a3c-5068-bc0b-b7a54b8f457a", "text": "robot falling into pieces, shattering, cyber city background neon lights "} +{"id": "0006350", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "glass bowl, place on a table, filled with chocolate pieces melting into liquid "} +{"id": "1006382", "video_name": "74ca3a19-a440-5a9a-a889-a1765fcabd62", "text": "an army of ants building a house "} +{"id": "7003558", "video_name": "03753231-fe55-5b39-a549-3d3fc402b2ae", "text": "A mountain ash grew along the road.\n\nShe grew up by accident, illegally, nestled on the side of the road, near a high wooden fence. \nIn the style of old anime, pencil drawing, black and white "} +{"id": "3003842", "video_name": "9663f935-0a33-529d-804a-76797643aac2", "text": "Man Last of Shadow looks at camera "} +{"id": "3006109", "video_name": "3d8ac9d4-9ca0-5b9e-8058-d24307902480", "text": "a group of managers in an office looking out a window celebrating new years "} +{"id": "3006926", "video_name": "d64facca-6d97-5531-8aec-65095572d4be", "text": "fps gameplay footage of a horror game, the player uses a camera. "} +{"id": "2005564", "video_name": "cbd21440-a6fb-5e87-be0e-148567fe38b9", "text": "a office minimalist with a open windows in a computer with code of program in it camera zoom out and camera zoom in Message: fabian (Font: MODERN) "} +{"id": "4003832", "video_name": "210db5b4-ba19-5fe7-9d00-c3b15622acf2", "text": "a female covered in red liquid "} +{"id": "7002169", "video_name": "621aec2d-dbec-53cf-8661-0d4e777d958f", "text": "amine princess jumping up and down "} +{"id": "2006561", "video_name": "18ffc824-1752-559f-beeb-791949181eb6", "text": "a man with blade , fighting "} +{"id": "2003600", "video_name": "cf0ccf49-d092-5004-9346-a45686d93f60", "text": "A beautiful lady that is facing the camera with her back. In the background there is a sunny park with trees, a beautiful location in the nature. "} +{"id": "2005910", "video_name": "4cd2c81a-0a69-5dae-8c42-c8778387e966", "text": "a man smiling whspering in the dark "} +{"id": "0005376", "video_name": "19be31af-9804-5c34-84fc-be8bbba2d478", "text": "Stunning hyperdetailed vintage Sketch Art, pose, strong facial expression, in the style of Mandy Jurgens "} +{"id": "4002813", "video_name": "a8bbc0c0-abed-5c52-95a7-8645450c082c", "text": "create a logo with the word SeVVen Angel Films in metallic style, octane render, volumetric lights, 8k render, high detailed, highest resolution "} +{"id": "0005669", "video_name": "1f11cf05-9094-5522-aa64-7c503b282602", "text": "In a lush jungle setting, a large and content cow is peacefully grazing on a variety of plants. A small, vibrant bird sits perched on a nearby branch, looking joyful. "} +{"id": "5001263", "video_name": "bd9df681-7055-5be1-88e5-0e695cf7a9c5", "text": "black sports car with yellow details with a futuristic pickup style look driving in a city with tall and futuristic buildings, video with a time of 8 seconds "} +{"id": "8002460", "video_name": "a8469001-8e47-5f57-b286-978747a326d1", "text": "a secret a magical way in a deep of forest "} +{"id": "1005281", "video_name": "61253bcb-751a-558b-bef8-d34a22748799", "text": "A Chinese woman who is regarded as the most beautiful woman in China. "} +{"id": "6002476", "video_name": "2b24e2fa-b09b-5e5f-9619-6f7f7c7a4186", "text": "Little Boy walking down the Street. "} +{"id": "7003090", "video_name": "6444071a-8bb3-58e7-bd99-c37d727455a3", "text": "Indigenous AI bot made of solid gold and platnium "} +{"id": "3006324", "video_name": "f552316c-bd56-59cd-a572-9a8f10a79394", "text": "What did one volcano say to the other? "} +{"id": "2004284", "video_name": "a3c80da6-9674-58c0-9163-52d0de216432", "text": "Introduce the village and the main character, man . Ghibli style "} +{"id": "1004174", "video_name": "4d42c25b-0780-55f8-b2c2-d507e6af9c57", "text": "man walking start in streets 2d animation "} +{"id": "6003688", "video_name": "78df4acc-d974-5e1d-b6f4-18a149cec859", "text": "make a video of evolution of mercedies in 100 years "} +{"id": "3006178", "video_name": "2a34b4a1-63c4-527a-bc81-0319e6f32a37", "text": "Design a digital graphic illustrating an algorithmic process in which data points, lines of code, and information flow together to construct a digital profile of a man. The graphic should convey the idea of a digital profile being built by the algorithm. "} +{"id": "1004722", "video_name": "579516ef-30f9-5e8e-ae0c-4abfefbbda9a", "text": "A person in the room to rest Message: 1 Attachment "} +{"id": "3005219", "video_name": "eddd6bae-c1c9-5522-b54b-fbf4692fa8b4", "text": "gumby, stop motion animation, claymation, 1950s animation, experimental "} +{"id": "4004113", "video_name": "17bb4cf4-28e3-5ad8-a22d-980477b16d00", "text": "an honest 18 year old young boy live in a village and his name is ali "} +{"id": "0006366", "video_name": "2b469278-de8e-50c6-ade0-c60327a6d505", "text": "A night shot. Tall skyscrapers lost to time in the middle of an overgrown forest. The skyscrapers are coversed in vines and almost unrecognizable. "} +{"id": "7002697", "video_name": "48e38fc7-758f-5e1a-913a-12d761ad94ef", "text": "futuristic road traffic with cars Message: Frohe Fahrt (Font: MODERN) "} +{"id": "4004499", "video_name": "6cb9dfdf-a403-5a2f-99e8-7ee429ce1f21", "text": "As night falls and the palace empties of tourists, a profound silence descends. It is during these hours that the spirits of the past are said to awaken, seeking to make their presence known to those who dare to tread on their eternal domain.,4k "} +{"id": "6003919", "video_name": "b95e06f8-4746-58a2-9901-420e105ea1e9", "text": "cinematic, Ancient India of 100 BCE in an interdimensional portal ring of Dark Matter plasma on the street of a modern Indian city with skyscrapers and bustling traffic, highly detailed "} +{"id": "1003807", "video_name": "46504866-acef-57b6-8127-9c2d64ea9be0", "text": "One drum is made of tomato, with drumsticks, , red color on green background, instead of drum film should be tomato, everything else is normal drum in cinematic style, 9:16, 60fps "} +{"id": "0006898", "video_name": "35018321-1081-5774-9e22-fb916fa6329d", "text": "\ud574\ubaa8\uc218 on his winged chariot in the sky "} +{"id": "6002348", "video_name": "55da01b8-0d59-52cd-80d9-80d94b1de9f4", "text": "A flying broken piece going into deep perspective of a City , black and white "} +{"id": "3003845", "video_name": "dd80a3f2-3979-5769-b146-72d72492fdc6", "text": "After a few years, Ramu understood the importance of time, but a lot of his time had passed. He kept regretting that he did not utilize his time properly. "} +{"id": "4002526", "video_name": "b501c12c-9559-5ebd-b365-82026c6c9ab8", "text": "Luna inserts the key into a mysterious enchanted book that opens while emitting a magical glow. "} +{"id": "8002724", "video_name": "02da313b-07ed-5795-9f28-bd589c5c1297", "text": "man with candle in the dark "} +{"id": "4003252", "video_name": "d189bf61-7b1c-59fc-b2e4-5150020afc2e", "text": "Get vaccinated? And lower my potential resale value on the Milei Organ Market? I think not. "} +{"id": "7002094", "video_name": "31c6e689-3003-5dee-b487-d0994c396f39", "text": "timelapse of a Trippy galaxy, ecstasy, pop colour, fluid, fast movement "} +{"id": "3003346", "video_name": "d3e3f5de-07ba-5545-93a8-10c3be4bc3fe", "text": "a spider on a flower, waving goodbye to a girl in a ponytail wearing a pink dress in a park, ultra hd,Pixar style,Disney style,cinema 4d "} +{"id": "4003286", "video_name": "42311100-8aca-5519-8653-8d5e64305e9e", "text": "grim reaper with scythe on moon "} +{"id": "0003486", "video_name": "3e74a0a9-39cf-5b81-b852-2ee1e6f1b38f", "text": "Timmy,Sarah and whiskers known for their love of mysteries and the supernatural.One foggy October morning, they received a mysterious letter. cartoon look "} +{"id": "2004768", "video_name": "5bc06738-3aae-5d26-8325-24b6de5fee19", "text": "create a 16:9 Full HD video a moving UFO shooting lasers and destroying the city at midnight "} +{"id": "2003184", "video_name": "4a7f34d9-8cec-545e-af0d-1bc39ae2503f", "text": "image:images (7).jpgback big buliding and a sports car beautiful environment "} +{"id": "4002984", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "old man walking in the rain moonlight "} +{"id": "2006705", "video_name": "57f44c6f-0d04-5876-8da6-1c2b176cd00b", "text": "plastic doll melting in fire, the doll has the eyes of a living creature "} +{"id": "7003159", "video_name": "fc130c14-f027-55cf-ae54-2213716e33ef", "text": "a beautiful girl walking next to a bed with indian block print bedsheet luxurious room "} +{"id": "8001054", "video_name": "63f03904-22ea-5c82-8d33-2e018360af24", "text": "A distorted glass room with dark red sunlight beaming into it "} +{"id": "1005716", "video_name": "69264440-27c6-5e6f-be1d-7af934a09b08", "text": "The rain is falling heavily, Show the exterior of the bank with a sign indicating the name of the bank "} +{"id": "1004942", "video_name": "5b65e98c-a288-5619-af84-c254dbed268b", "text": "pixar la cars driving people walking the streets "} +{"id": "4003227", "video_name": "5673f48d-ce6b-544a-869c-c25e41fe2e49", "text": "lion on bed drinking cold tea "} +{"id": "4004307", "video_name": "38f272c1-4312-5362-940b-7ebaf2330498", "text": "a large blue magical crystal in a magical forest that is being carried in a carriage "} +{"id": "2005524", "video_name": "37e9af12-de70-5cca-be78-1f88b2924749", "text": "A man holds a phone in his hands and shouts "} +{"id": "0004053", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "an angel with yellow wings, falling from the sky into a pink meadow "} +{"id": "7003677", "video_name": "ae6ef505-683a-5f69-a383-7060e99ce036", "text": "a cute little hedgehog is waking up in her treehouse in comic style "} +{"id": "0005233", "video_name": "1710a265-e4d8-504a-a289-b4b7a42a26ba", "text": "A climber tumbled down the slope and landed in a patch of grass in the valley. "} +{"id": "8002432", "video_name": "e076f4c9-c06d-5b69-b192-dd6811a91f2b", "text": "chemistry lab a scientists experimenting something anime style concept art "} +{"id": "3006510", "video_name": "7b2cb5fc-1bd5-5d6a-a344-cdc218f6f52e", "text": "Cowboy shot of Mayan city, depictions priests performing elaborate rituals, dramatic illumination "} +{"id": "3005307", "video_name": "2e678f8b-8ec2-5fa5-b9b9-71e878bf10d0", "text": "walking cheefully and pass by the bookstore stops and look through the shop window "} +{"id": "1006875", "video_name": "7da7603c-0de9-596d-ab49-fb7a4112b643", "text": "white rabbit eats strawberries, realism, nature "} +{"id": "4003927", "video_name": "87953c09-ad6d-5987-acb0-cb6eb502af69", "text": "an athrltic paramedic running from two zombies in an apocalyptic environment "} +{"id": "2003462", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "Brazilian Hugo calderano playing table tennis with Ma Long in Tokyo "} +{"id": "7004396", "video_name": "1b563743-bfe4-5cc2-a516-e77e3740ed87", "text": "Many angels with wings fly amid the clear blue clouds, surrounded by many stars "} +{"id": "1006680", "video_name": "7a7d7f1a-4f2b-5d3f-a60b-d9deac713282", "text": "modi ji romantic dance with Italy prime minister melony in room "} +{"id": "1006360", "video_name": "747a9718-7859-56ea-92b0-dbb93964ef01", "text": "ChatGpt will get a ring of omnipotence "} +{"id": "0004155", "video_name": "043eb0c0-f8e3-5ff1-b6ad-d3d4f32bb85e", "text": "Animated 10 min long horror story in english "} +{"id": "8001556", "video_name": "9e7ce74d-36c9-52f0-8d64-e5b1309298c7", "text": "a beautiful parrot sitting on a tree singing in day light and taking attemp to flying "} +{"id": "2006273", "video_name": "7671f807-5629-54b7-992b-b2c5c2105c60", "text": "shot of futuristic AI visuals and Alan Turing tkinking "} +{"id": "0004316", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "a lion walking with a hunter "} +{"id": "8002751", "video_name": "33deed55-9116-5f3f-9b79-20d78b561442", "text": "Pen at the Playground Rave Message: 1 Attachment "} +{"id": "7002541", "video_name": "8b6496e2-f0d3-58f7-be5a-08ef05582ee0", "text": "A video of someone who wakes up at 8 am and feels very tired "} +{"id": "8002685", "video_name": "155bac0a-13f5-5a46-a411-198955fdd1a9", "text": "Aladdin lived there. He had a sister. "} +{"id": "2006395", "video_name": "2b8633ef-817b-5459-810c-cc9e1efa282e", "text": "scene of a man standing in the rain "} +{"id": "4003325", "video_name": "4b1ea5bc-5d80-539b-98b7-8597ea037313", "text": "Roblox noob in the mall dancing with Steven universe "} +{"id": "8001642", "video_name": "db8948f2-6677-5918-8976-9740234391d1", "text": "a video add on a hand gripper to improve hand strength "} +{"id": "0006126", "video_name": "27068b6f-a3f2-5eae-b092-63de9a54acc2", "text": "ships arriving to the new world "} +{"id": "3005689", "video_name": "eedb8f11-4bb0-5dd2-ac48-7f0883aa5e03", "text": "Lucas in a small town with rolling hills in the background.\n\nLucas as a teenager with a curious expression. "} +{"id": "2003567", "video_name": "6c1fc693-7c68-5ac0-afe1-60522f318f1b", "text": "boy reading in a room,star in the sky,dreamy sky,hd,4k ar 16:9 "} +{"id": "7003382", "video_name": "589f39df-cab8-5436-9280-9f0166d30c7a", "text": "make animation on fox , rabbit and monkey talking in forest more than 5 sec "} +{"id": "2006070", "video_name": "096448e3-bd2e-5272-bc3a-9a2a7d0fec03", "text": "a world where machines reign supreme "} +{"id": "6002865", "video_name": "d119d9e4-1210-5635-88cc-e76d4775839a", "text": "Two workers paint the wall of the house "} +{"id": "8002220", "video_name": "7016efc5-cc7c-57cf-9c82-b7b1767ebb7a", "text": "montage of scary found footage of scary children "} +{"id": "6002213", "video_name": "75c8fe3e-8657-53b9-976a-6fe2097182db", "text": "a detective background in the forest "} +{"id": "3004235", "video_name": "6f7e7416-1b3e-55b5-a69e-285e7d358518", "text": "Beautiful little girl wearing graduation gown holding graduation certificate, happy and anime styleHigh quality, 8K Ultra HD, high detail, masterpiece, anime style digital drawing, soft anime tones, detailed drawing Dimensions, Augmented Beauty, Albert Anker, Kyoto Animation, Greg Rutkowski, Artgerm, WLOP, Alphonse Bebel, Luminosity, 3D Rendering, Octane Rendering, Isometric, by Yukisakura, Gorgeous Full Color, "} +{"id": "5001720", "video_name": "aa3aae9c-f288-5be9-a0b3-ee2459af40d1", "text": "A cinematic video of blue squids swimming around a colorful coral. A blue lobster swimming next to blue squids. "} +{"id": "8003447", "video_name": "1f8fb6a2-c5e5-5c2b-8664-ca4f3e034125", "text": "Realistically, the head of a humanoid robot rolls down a steep sand dune "} +{"id": "7004657", "video_name": "8fa8e8b2-8f03-5b49-8a74-88c14aa15ab0", "text": "A fierce heron walking in water, in style of Myazaki, animation "} +{"id": "8002139", "video_name": "33df6948-d612-5b6b-8365-902a9fce3432", "text": "space view of a full circunference ocean world, no earth, lights "} +{"id": "4002719", "video_name": "bf651b4c-9c19-52e7-99d1-419fa9e54c35", "text": "men and women in luxurious estate looking at a phone showing an application to browse for diamonds "} +{"id": "1006338", "video_name": "7402688d-21c0-5822-8dec-fddfd10d1768", "text": "ai celebrity dance video Obama and drake "} +{"id": "3004300", "video_name": "f26c5873-730a-5870-b672-04719909ba37", "text": "beautiful beach with heavy rain and bloom flowers and many bird flying "} +{"id": "2003744", "video_name": "a1d8650e-fc05-5331-8f38-7ebfa39a0b2f", "text": "kfc store, the lower right corner of the name says chen is the owner "} +{"id": "4002922", "video_name": "9656d864-5503-5519-ae6e-615c3ce12594", "text": "Meteor hit the hearth photoreal 16:9 "} +{"id": "8001208", "video_name": "d47e8b54-b25d-5365-872c-619571f67d6f", "text": "beautiful blonde woman of 23 years old, walking trhough the beach in the night, storm rainy night "} +{"id": "5001048", "video_name": "b716e73a-3d85-5506-b07f-31ad737d6a54", "text": "A beach with beautiful women. HDR. Photorealistic. "} +{"id": "0005776", "video_name": "21129149-e052-5082-892d-bf3f1db54f06", "text": "beautiful Japanese girl getting ready to fight "} +{"id": "2003996", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "FUJI mountain with blue sky and some clouds "} +{"id": "6004625", "video_name": "bee99985-c173-50c9-88bf-71d0f8fde7cd", "text": "a trailer of a couple crying when saying goodbye to their family in the airport "} +{"id": "2005247", "video_name": "0586a71c-665b-5498-af7e-925ed040eed2", "text": "A smile is the best gift, may you be blessed with success. "} +{"id": "3004921", "video_name": "a57c8036-f315-57f1-a083-3a7ad98717bf", "text": "driving a carriage with black horses inside a real european city in 1500 "} +{"id": "0006531", "video_name": "2e2f360e-dd0e-5e2e-8294-0dc9c33dc5d8", "text": "comedian performs on stage and is surprised "} +{"id": "2007956", "video_name": "0e5913f4-19b7-5d55-8185-6957bf580433", "text": "Forest view from sky, zoom into forest get closer to ground vegetation 4k high resolution image 4k detailed natural lighting "} +{"id": "7003273", "video_name": "73b9adb1-c16e-5590-8b70-254dc508b3e6", "text": "a cute pizza with only pineapple as toppings "} +{"id": "2007140", "video_name": "2145d044-de39-5ab6-a25a-cb68b6a8e49d", "text": "Collective dinner tables in the streets of Cairo "} +{"id": "1003211", "video_name": "3b2bcc47-caac-52db-8908-09c6ec4d745f", "text": "King Solomon is introduced as a wise ruler who is respected by his people "} +{"id": "3006643", "video_name": "f57a4d6e-6c8d-596c-98a3-b27ee76a9894", "text": "explode building google storage photo realistic "} +{"id": "8002138", "video_name": "a61340a2-a85f-5e1e-8851-b84dfde3d349", "text": "iron age woman walking away from boat in stormy beach, waves splashing, tribal tatoos, dark robes, tired expression "} +{"id": "0006004", "video_name": "24dd9f95-c40f-563e-afe6-ae3df0c3a85b", "text": "a futuristic samurai in the robotic suite in cyberpunk style is standing exausted after a fight with 20 soldiers who are now dead and laying on the ground all around him. He is holding a katana sword in one hand while the edge of katana is resting on the ground "} +{"id": "0004629", "video_name": "0c482681-7057-595a-98fd-bf8666e17c3f", "text": "image transitioning to different forms of batman "} +{"id": "3005340", "video_name": "23856097-a2ea-5619-9a50-fc02844c0860", "text": "a mad king dancing in money rain, anime by Josan Gonzalez Akihiko Yoshida Laurie Greasley Takehiko Inoue Tara Mcpherson Jojo\u2019s bizarre adventure "} +{"id": "7002882", "video_name": "874ff4b7-2ae0-5ddd-be0f-404417809ae5", "text": "character animate, carry handphone, travelling to place, take pictures, dancing happily "} +{"id": "2003034", "video_name": "af323d6c-07c4-5861-a98c-c2384d430a44", "text": "rainbow beast fills the house of mirrors 90s cartoon "} +{"id": "2005646", "video_name": "e3f2223b-d4fb-5595-907e-0dbb85df8a39", "text": "Snow falling at an aerial photography train station "} +{"id": "8001299", "video_name": "76d3be0c-9d4c-515a-95d6-0df83a3d3274", "text": "Michael Keaton drinking beer on the moon "} +{"id": "2004049", "video_name": "3dd2c47c-1a24-5439-80a2-dac0ef4a147b", "text": "a gorilla feeding a bunch of baby sea horses on top of a mountain "} +{"id": "1003005", "video_name": "3722600d-3186-5063-95d0-5869cc0dc690", "text": "hamburgers began to be served on a bun. "} +{"id": "7003504", "video_name": "33c6b259-fcc0-544f-b0c5-279ae60b075a", "text": "s rooster and a cat fight "} +{"id": "0006961", "video_name": "35eb117e-bbdb-5838-93bb-c86f89da8d0b", "text": "red Ferrari on a groove street "} +{"id": "0005849", "video_name": "22535da7-6914-5498-9316-db878d868f68", "text": "han solo crossing the street, motion blur, 8k, movie still, unreal engine, detailed, unreal engine render "} +{"id": "1004479", "video_name": "52fec779-fa62-56f5-94f2-1ed7f54b4606", "text": "make anime of young kid sleeping and trying to wake up from bed and morning light us coming and he surrounded by few books "} +{"id": "4002981", "video_name": "24f663a8-80aa-51bd-8d73-05b514d375b2", "text": "boy create a coins in the garage "} +{"id": "8003291", "video_name": "fcc8f0d2-c981-5324-8836-01dde2f2ba94", "text": "nymphas and farmers are dancing above sky level. 4k "} +{"id": "0004297", "video_name": "069c7fff-cecf-5c26-a0da-8271cd826db1", "text": "space ship on a light speed travel crossing a ring planet with nebula on the background "} +{"id": "6002569", "video_name": "92d5da95-0147-5527-8744-e43248fed406", "text": "Describe the setting of your story. What kind of place is the magical forest, and who is the main character? "} +{"id": "2005425", "video_name": "56397a1c-d83f-5c84-b8ad-0cfdc1d9535f", "text": "Disney Pixar movie named \u201cCago\u201d where Private from Penguins of Madagascar is sitting on a toilet and moving around "} +{"id": "3004028", "video_name": "8e21178d-1f5e-5004-94f2-57305128f6a9", "text": "playful scene where the monkey shares laughter and stories with newfound friends 8k "} +{"id": "0004217", "video_name": "053d37b2-998f-5f9d-ad1d-6de6509ceba6", "text": "scifi american astronauts playing pickleball on mars "} +{"id": "5001524", "video_name": "29356041-f757-56db-8da9-bd84ac43d0ad", "text": "henry kissinger negotiating the ceasefire to the vietnam war in paris "} +{"id": "3005984", "video_name": "8a888b06-0d8a-5281-968d-92b7398570c9", "text": "pixel art animation of a japanese alley lit with neon, moody, cinematic "} +{"id": "6004066", "video_name": "028cc20c-76cd-51b2-a463-e71015d14d05", "text": "rolls Royce approaching luxurious Parisian hotel "} +{"id": "5001756", "video_name": "3c021718-cf1f-5a5d-a895-fe589a3ccb6a", "text": "Whales fly, jellyfish swim, meteors streak Message: 1 Attachment "} +{"id": "6003451", "video_name": "98c4f8e7-1180-5eb0-bc94-220d88336c39", "text": "a young man with these characters: "} +{"id": "6004975", "video_name": "61ab4122-730e-5fc7-b978-905440e053b9", "text": "wine bottles Message: SNAP (Font: MODERN) "} +{"id": "2005787", "video_name": "16272bc3-0dd8-5dce-9eab-b8b3be4379f5", "text": "Timelapse of A big commercial building that has a pink PROXFON logo "} +{"id": "7003402", "video_name": "87b1bb2d-43bf-5065-96aa-a20a456fdeb5", "text": "in a clothing store a woman buys a garment "} +{"id": "2003792", "video_name": "b0078a0f-a79c-599a-aa8c-13e02480715a", "text": "a Hummingbirds flying backwards in the woods video 6sc "} +{"id": "2003732", "video_name": "3ecb894b-843f-5695-825b-d8b549a2a104", "text": "Palm, five fingers on each hand, A little boy held a piece of string in his hand,Japanese manga style, monochrome,line art,comic,Japanese manga style\uff0cmonochrome,line art,comic "} +{"id": "0004363", "video_name": "07d0dcde-2476-557a-a7a3-64f27d42975e", "text": "people walking in a bolivian colonial city Message: La Paz (Font: SANS SERIF) "} +{"id": "1004223", "video_name": "4e2317c7-1ef9-55fb-8636-cb543e89a5d1", "text": "claymation of bob marley live in concert "} +{"id": "4003975", "video_name": "df518e0e-7351-53d2-9faa-3520ad885116", "text": "a robot from the future talks to a human, abstract background, together the create a better future "} +{"id": "1005788", "video_name": "6a8601ba-585c-5c25-9e32-a3c1b7c8ae3b", "text": "create an aesthetic description of a golden hour sunset with birds, a yellow color grade, trees, and the sky. Use vivid and poetic language to capture the beauty and tranquility of the scene. "} +{"id": "4003554", "video_name": "4a519f15-3326-595b-ba5c-fc5e942d3e52", "text": "kitty has a playful interaction with other street cats, showcasing her powers subtly. "} +{"id": "7002439", "video_name": "d454b1db-ff0b-5025-82dc-42246fa348ea", "text": "kid simon in blue t shirt and shorts catch the old lady in railway track and sees that she was blind "} +{"id": "4004274", "video_name": "491b6db4-7f0d-51d9-a556-fb72410d6e47", "text": "3d Cartoons Kids dancing in a circle on a cartoony sandy beach, the waves crashing gently in the background, while seagulls fly overhead and the sun sets in a fiery orange sky. "} +{"id": "0005606", "video_name": "1de55e82-a5a7-5a02-86b5-469b135c6614", "text": "3D characters, a school boy sit by a window in the class, looking at the class who walked by the window outside "} +{"id": "4004558", "video_name": "a8e4ee28-287e-5a84-a30e-89935c151c4a", "text": "kids pulling big colourful spiders ,3D "} +{"id": "3004945", "video_name": "ac7c0556-310f-5f51-9fbc-35d7c010c8c1", "text": "a tabby cat with a space helmet in space, 3d animation "} +{"id": "1003690", "video_name": "4402b640-1a5d-5026-bec7-924941572314", "text": "four shamans from Peru running in Paris. "} +{"id": "4004064", "video_name": "42fc8ead-7bf3-5cc4-95ad-3fc0e17f85d4", "text": "Sakura playing volleyball with other kids in a nearby park. "} +{"id": "0004588", "video_name": "0b9e656e-ffe3-5cc8-ac98-48d60ae87970", "text": "an old city from the 19 century and all houses lights up, motion2 "} +{"id": "8002455", "video_name": "b74ffb27-f907-5af8-8ae6-e31398b542a7", "text": "User i need a video of robot in which his chest open and appears a text from it "} +{"id": "6003427", "video_name": "fa9b7f0d-f51d-5810-a4a9-94d3a5bb50aa", "text": "Dead plants in the Gobi Desert. 9:16 "} +{"id": "0006378", "video_name": "2b6e3252-d6b8-521f-a022-d257303446e6", "text": "one boy Pari says you will become agreat protector one day magical "} +{"id": "3004552", "video_name": "cc9843a4-914a-5763-ac72-7eca46b68d8f", "text": "An overhead view of a futuristic city, slowly panning over it. Dark, with artificial light from signs, electronics, etc. Cinematic action. Atmospheric and moody visuals, blending realism with elements of surrealism. Striking, panoramic compositions with a focus on subtle storytelling through visual means. The color palette is muted, employing stark lighting contrasts to create depth and emotion. "} +{"id": "8003321", "video_name": "b8267150-738c-5fd1-a3b8-6b23393069ab", "text": "A huge cruise ship is sailing on the sea. The sea is rough and it is raining heavily. "} +{"id": "7002796", "video_name": "284409ac-9499-5463-acff-3794e3dae6ec", "text": "male and female pilot figurines on a conveyor belt "} +{"id": "0006806", "video_name": "3366a5ee-7df6-5b1e-823f-43efb8a5d57b", "text": "Cyberpunk in the 1980s. Halfway between robots and humans. A sexy woman in a genuine manga. "} +{"id": "1005911", "video_name": "6c9db695-5926-5b9c-bf99-262bf2c236cc", "text": "Navy Blue back ground, neon bluesilhouette , one cricket bowler runup (close up camera) "} +{"id": "4003151", "video_name": "54ce5c3d-5b09-56e0-a266-3e29c5ee8264", "text": "A guy with a girl in his arms rides a bicycle "} +{"id": "6003070", "video_name": "8ad9357e-38ba-5bd0-9429-2ddf6a1bc3b4", "text": "A man who looks like Tom Hanks lifts the girl who looks like Anne Hathaway is shouting. "} +{"id": "1005867", "video_name": "6bfbdf21-1f46-5f0b-8f85-8042c70cb766", "text": "The water is flowing slowly, the stars are moving slowly, the stars are shining, "} +{"id": "0006349", "video_name": "2b0ddf53-4399-5140-82fb-ac6af6d58119", "text": "sprinter on the blocks getting ready for the race to start "} +{"id": "6003699", "video_name": "fe422c1f-bfe4-5662-be68-47e4430b3b4a", "text": "a fierce looking dragon open eyes in a sudden "} +{"id": "2007907", "video_name": "4ea8efea-0ffc-5235-bdc8-ceb6e0d76f12", "text": "Balloons float up and down near the ceiling "} +{"id": "3003480", "video_name": "3f463057-9ede-5a3b-a63a-4aa90462900d", "text": "a famous man typing on a computer in the office "} +{"id": "3003504", "video_name": "36e0ce4b-edca-5403-8a0d-a0cdf42a717d", "text": "safari hunter is setting trap for lion and lion is trying to escape with the help of rat "} +{"id": "7004653", "video_name": "5e8523b8-3d56-5c7f-b442-1a5ea4d09557", "text": "a psycedelic sunset and 3 piece rock band ripping underneath "} +{"id": "1005629", "video_name": "6777204d-1f5b-58c9-b6ea-c96a8b270b6a", "text": "logo for Hot Mic podcast with a microphone and hot pepper mascot and flames around it, black background "} +{"id": "4002980", "video_name": "81429703-0c9e-50eb-994b-d5d4c8a59d36", "text": "a large road with two cars crashing into each other, realistic "} +{"id": "7002494", "video_name": "a7a4defa-f175-562d-be21-cb5e25a7185e", "text": "I have a picture of a football player celebrating his goal "} +{"id": "1004602", "video_name": "55b10613-fe6d-5403-b1ef-afdd854f422e", "text": "End of film, I need it to say \u201cfin.\u201d With smoke all around it as it fades away in the smoke "} +{"id": "3004700", "video_name": "63eedc9e-5b82-569b-b6f9-8c625003f5f3", "text": "WAR between USA and RUSSIApresident of UKRAINE brutal fight, 1:1, hype realistic "} +{"id": "2005718", "video_name": "ef0c29e6-12b6-5e10-8dcd-fcaf23c11392", "text": "3d character, 3d animation, gamer girl, headphones, beautiful face, beautiful lips, smiling, making v sign with hand, sparkling eyes "} +{"id": "0003918", "video_name": "45b7e1d5-d84e-5fbb-b050-1e69882c8850", "text": "action movie of super hero bella swan Kristen Stewart with short hair fighting vampires "} +{"id": "7004458", "video_name": "e0be6814-519b-5abb-b4bf-0c80fc4075ee", "text": "capturing a cartoon heart, meticulously detailed, melting in a surreal and realistic manner. "} +{"id": "7002770", "video_name": "bb4d9c67-8b49-56fa-b80d-ea6b6a304bbe", "text": "full frame of a man planting a flower on the his garden, full frame 9:16 "} +{"id": "1006825", "video_name": "7cd9d9d6-c38a-577d-9f5c-7190bd9029b9", "text": "Use a cartoon character or animal that is favorite by children to attract their attention. Use calm and enjoyable music to create a relaxing atmosphere in a short intro video "} +{"id": "4003042", "video_name": "4b18129e-264b-5f0b-b4b6-ee8aeb769157", "text": "Ent from lord of the rings smoking in a tropical forest realistic, 4k "} +{"id": "2007621", "video_name": "addc4af7-1c03-550d-a2f9-35e13b392868", "text": "aura. The other roses flourished in the presence of Aurelia, blooming more abundantly and becoming even more vibrant. "} +{"id": "4004442", "video_name": "856a07eb-1c98-5185-a105-39f82f411b2c", "text": "in the silence and isolation of that cold chamber, the blond haired bearded man realized how greed was such a bad thing "} +{"id": "7002902", "video_name": "453b5173-654a-573d-b5b1-558577a801d1", "text": "the two cats are discussing about the construction in the city and with arb dress "} +{"id": "2005502", "video_name": "8bcd6b7b-3ebf-5455-b2db-b3e2c4bde4d8", "text": "glass of water on a night table with a red pill on the side and a blue pill on the other side "} +{"id": "1004481", "video_name": "530403a1-6119-5846-9fad-1a355d95e92d", "text": "a fish with a human face swims past the camera "} +{"id": "7004333", "video_name": "6320877a-ad3a-5bf3-8a12-d76d0c92f45c", "text": "Create an image of a spectacular sunset over a serene lake, while a person is practicing meditation on the shore, reflecting on the beauty of life. "} +{"id": "2007573", "video_name": "1e616199-5eeb-5843-a7b7-d63b59063afb", "text": "Create a long high quality video where it is raining on the sea "} +{"id": "6004140", "video_name": "f44480bc-44d6-5b81-9c34-1aa461c16b85", "text": "Cameraturns around a cute bunny, studio lighting, 360 rotation "} +{"id": "2005419", "video_name": "fce78506-65f6-5738-9bf4-e714ca608a59", "text": "brutalist architecture, medium shot, details, sharp, 50mm "} +{"id": "0004968", "video_name": "12737e56-2ef1-5187-b6a3-90189521917a", "text": "Euromast in Rotterdam falling down, jetfighter attach missile on Euromast "} +{"id": "3004683", "video_name": "113aba59-31a7-5a13-a8de-6e98ca45e6f4", "text": "fairytale cartoon Courtyards bursting with colorful flowers that bloom all year round. 4k "} +{"id": "6004054", "video_name": "140bbaa4-dd35-51bf-a102-6b48bbc64880", "text": "Open with an intriguing statement about the uncharted territory of the human mind "} +{"id": "0006345", "video_name": "2af71c94-8f2f-59b2-850e-2995f53d67e3", "text": "spinning vintage carrousel full of kids "} +{"id": "1006810", "video_name": "7cad8592-ffd6-576a-8d27-c62ac7b5db03", "text": "Medieval warrior on his back with castle behind. Blue sky with flying dragons. "} +{"id": "8001439", "video_name": "74d4cc4d-d10a-5b63-8a4e-92e5bba4f5ca", "text": "A married woman who was forced by his subordinates for a few days when her husband was on a business trip "} +{"id": "4004754", "video_name": "b861fed7-f160-59c4-9539-e82022e05358", "text": "A giant robot suddenly turns around. "} +{"id": "4002187", "video_name": "370df59c-d264-58aa-a30f-c7d8d6920e13", "text": "Scientist creating a parallel universe in his laboratory. Anime style "} +{"id": "7002790", "video_name": "ad03dac7-9fd7-5fa7-ae6e-aa3771bcb801", "text": "artist to draw in the wall "} +{"id": "0003354", "video_name": "3c0d64cd-d60c-5600-becd-d7e5c5129701", "text": "masterpiece,4k,Best quality,High detailed The cat moves Message: 1 Attachment "} +{"id": "3004063", "video_name": "68bc2dfe-728a-593c-b183-d26e632f0324", "text": "boy and girl friendship with car "} +{"id": "2007432", "video_name": "5524b27b-a7ac-587a-9f13-83128b38e02d", "text": "cute cut dancing with misuc hip hop "} +{"id": "0003458", "video_name": "3de2e04f-1b51-52f7-9af0-8d9d8a2271b2", "text": "Cut to a clip of a book review segment: A host sitting in a cozy reading nook, passionately discussing a recent release. "} +{"id": "5001648", "video_name": "3da17758-70aa-58ef-8eb9-63bf40c47b70", "text": "Historical Moroccan warrior with Moroccan horde army heading from Morocco to Jerusalem in large view with Arabic word with Palestinian flags and army on the road "} +{"id": "8002118", "video_name": "ac531d77-9d99-5e99-b622-97c69361d339", "text": "an animated dog, fireworks bursting, in the background sky a textsign, Happy Newyear "} +{"id": "3003640", "video_name": "40f119a7-c463-519f-9d57-3dfb99e90c55", "text": "a big ancient book laying on a wooden table. cinematic 4k zoom in "} +{"id": "7004591", "video_name": "467bdc6f-663a-553c-bbc1-896834597c67", "text": "red ink drop into water tank with white background "} +{"id": "3004594", "video_name": "3e2d5721-d1f5-54d6-ac29-933b3a2392c9", "text": "Leo lion letting out a feeble roar, in 3d animation "} +{"id": "2005584", "video_name": "5714bfb4-cb77-59dd-b890-397363fdc47b", "text": "An astronaut standing in the middle of the pitch in a football stadium, Etam Cru "} +{"id": "2007056", "video_name": "bafb2c35-3d64-598e-965f-103c299c8f93", "text": "Create an image that encapsulates the overarching message of strength and healing from the depths of depression, with David finding inner peace and resilience in the midst of his struggles, resonating with modern challenges of depression. "} +{"id": "2007989", "video_name": "d0951d05-30c3-52db-b59f-1711d32e6db2", "text": "a man that is thinking about his past error, with melancholia "} +{"id": "4003842", "video_name": "667fa2f8-a9b9-5b75-bb1e-6e2122a96ae6", "text": "most beautiful woman in united kingdom "} +{"id": "2003024", "video_name": "a4ef81c7-de99-5669-996b-fb0c8fd09bc7", "text": "Inside the large hen nest, nestled amongst the straw, lies a magnificent golden egg. It shines brightly in the sunlight filtering through the window. "} +{"id": "3003077", "video_name": "5ad00027-cb5b-5050-8578-3f271e47f00b", "text": "fractal whirlwind of quantum ambiguity, hyperdetailed, Victorian "} +{"id": "8001843", "video_name": "3b9bc5fe-b5fc-5a15-9010-c7f7bc3c94f9", "text": "a group of viking longships breaking through the mist for a raid "} +{"id": "8003099", "video_name": "6e85aa7e-f7e4-5878-b58b-4dfa408467b2", "text": "a beautiful girl with attractive face with golden ratio , cinematic lighting "} +{"id": "1003035", "video_name": "37b7dbf2-e73c-5246-87c1-3b8f322253f5", "text": "Zheng He in a room praying, depicted from front, lighting from behind, "} +{"id": "7004853", "video_name": "9da843df-60b0-5667-af22-e0be7b3f9aaf", "text": "Disney style a small village Mickey and duck is very close friend and some "} +{"id": "5001412", "video_name": "69d76b01-3d57-5f6d-a440-b9a927ccdd3f", "text": "70s atmospheric arthouse movie. A field of white moves menachingly, as if alive "} +{"id": "2007334", "video_name": "d1f636fe-0f65-5ada-8e0f-82c459a7f3e9", "text": "a superman symbol with the letters RW in the middle and the symbol is in the clouds. "} +{"id": "2007091", "video_name": "9c0f2b5b-36d8-58f9-b7ad-15d39476ee28", "text": "a chinese boy who is reading a book , sitting on the chair of park, in front of river. green , sunshine , lovely "} +{"id": "7002345", "video_name": "85ad65bb-bc2f-58bf-a974-1af51c273454", "text": "a person that pushes back their dark past to look foward to new life. "} +{"id": "0006676", "video_name": "30c8aea1-2fd7-5a3a-9fa5-cc61867fec37", "text": "a futuristic robot building another robot "} +{"id": "6002642", "video_name": "83fedcde-2cf4-56a1-a144-c74fa553f188", "text": "a west highland white terrier mixed with a schnauzer "} +{"id": "1005569", "video_name": "667c8b2e-3b80-53fa-ae59-70c6da2e03fa", "text": "animated cute avocado with big Blue eyes kissing the air "} +{"id": "7004764", "video_name": "629339ad-0ed2-501d-babc-d6a36c1e25f6", "text": "mushrroms connected with glass tubes with smoke inside is wake up to air in the dark room "} +{"id": "7004587", "video_name": "140b9650-5bed-5b70-ba51-9021b99e8bc8", "text": "Necromancer in the woods at night "} +{"id": "0006033", "video_name": "2567465c-0597-5ec4-85a9-6358dfb2c6a2", "text": "johnny depp, Danny devito and Miley Cyrus in spaceship "} +{"id": "5001241", "video_name": "f658df7e-b13e-51b3-b347-9a5e8e1afbd2", "text": "beautiful lady with red hair, joker face water fall background "} +{"id": "8003556", "video_name": "30a8af16-6aca-53fc-a53a-3a15513031ff", "text": "2 d cartoon animation scientist in the laboratorium, brain machine "} +{"id": "0003240", "video_name": "39d927c0-c209-547f-94fb-807159b7a6a2", "text": "Man riding monkey wheel in futuristic city on mars with motorcycle helmet "} +{"id": "0005937", "video_name": "2383b115-c8f2-5cef-a9e9-b3f10770e2ca", "text": "gold coin falling and spinning in slow motion "} +{"id": "7002088", "video_name": "f49ea33d-4808-5a78-a754-a6d91c082812", "text": "an old style wooden door opening , slides apart from each other "} +{"id": "1004691", "video_name": "57255897-f5f4-50f3-bb63-f3c4bf994a46", "text": "Witness the chilling and otherworldly entity that roams the moonlit forest at night. "} +{"id": "6002887", "video_name": "a3ad697e-40ba-5fe0-b885-94c5b7f3e453", "text": "move plant and boy gs5 ms2 "} +{"id": "8001192", "video_name": "427b7a52-d176-5235-a5a0-4d9a669a209b", "text": "alpacas dancing singing happy birthday blowing candles "} +{"id": "0005111", "video_name": "14efeb8c-37cd-5a14-818e-00164b4ded4c", "text": "a man holding is chest as a river is oozing out from his heart. Fantasy. Imagination. "} +{"id": "6002717", "video_name": "83ba04d0-275d-5d4d-b32e-aa3145853e80", "text": "move only background water Message: 1 Attachment "} +{"id": "0004441", "video_name": "09204b01-e490-511d-adcf-667b42279c40", "text": "An adorable bouncing cup, set against an office desk backdrop "} +{"id": "1005722", "video_name": "6947d51f-29a2-5202-87a7-bef3cad5a402", "text": "Journey to the West: Sun Wukong kisses the Bone Demon "} +{"id": "4004716", "video_name": "7016be9b-2405-51ee-84a8-c0721c4b3af4", "text": "satirical video about the DDR and Erich Honecker "} +{"id": "1006830", "video_name": "7ce819a9-f8cd-57da-9362-1ef8e9ca8d0d", "text": "I want a picture of Mozart playing "} +{"id": "7002082", "video_name": "b12d9963-cfd7-5072-8cb9-a4f19a404075", "text": "person swinging hand by hand from tree vine to tree vine, face towards camera, realistic "} +{"id": "1005809", "video_name": "6acd5caa-7449-5ebf-bc05-8efad63151e9", "text": "a man walking on the moon with shorts "} +{"id": "1004373", "video_name": "50c86e17-7796-5683-902e-db3f8d599b62", "text": "a boy dance in school room apart of whole class present "} +{"id": "3004059", "video_name": "1ad527f0-f8cd-59a7-bd21-aa09a222ffba", "text": "a dog jumping in the air chasing butterflies on a sandy beach "} +{"id": "7003096", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "Short animation a girl getting anger "} +{"id": "1006219", "video_name": "7213ca9b-c434-5847-9232-2f7c3b6c18b4", "text": "man delivering an order by bicycle through the city in cartoon format "} +{"id": "1006786", "video_name": "7c5b69b3-2205-558f-8dca-abd7b60f5743", "text": "big bear full body and wise owl and squirrel beside them in an epic forest "} +{"id": "5001580", "video_name": "2d28ef4c-6db9-5b43-9585-6485809f3781", "text": "Student arriving home at night, anime style "} +{"id": "7002720", "video_name": "b09b46eb-1ecb-56b8-8e45-8e0d1071f9a7", "text": "Stars, suns and constellations Message: Elon (Font: MODERN) "} +{"id": "2005347", "video_name": "139d9d0b-6c87-520e-94a6-4eda9dc74988", "text": "gyutaro and grim reaper with 2 big scyth fusion "} +{"id": "7002317", "video_name": "372c0751-386d-5439-89d1-de8303899d81", "text": "Zidan with real madrid Message: 1 Attachment "} +{"id": "6004149", "video_name": "b6cfac40-3205-570a-8845-47b8b97b8837", "text": "star wars theme 1 minute movie "} +{"id": "1004330", "video_name": "4ff3a788-b291-53d2-9727-8f23b205c6ed", "text": "Priora rides through the wild west "} +{"id": "2007014", "video_name": "ff9bc992-321a-5dc8-8ce6-f0cfada8c9cd", "text": "A futuristic city, similar to Blade Runner, Moon 44, Akira. A futuristic car drives past the viewer. Scifi. Horror. "} +{"id": "3006159", "video_name": "a0787176-49d6-5cfb-9f03-3a994e84b031", "text": "heaven with mountains golden sunshine and grass having God and disciples "} +{"id": "7002402", "video_name": "ed216f99-a7e1-5051-9438-c45359122cc8", "text": "a man looklike Locklear, wearing a black cap, in a street, big city, sunrise, realism "} +{"id": "0004085", "video_name": "02e9f02e-a6dd-5270-bf6e-6a4a59f0641d", "text": "Across the stream with wooden shoes With bells to tell the king the news "} +{"id": "3006332", "video_name": "97ab2bcd-fd39-54b2-947d-bd68acfd6268", "text": "In front of a temple rich in traditional Chinese characteristics, a magnificent golden dragon descended from the sky, carrying joy and blessings "} +{"id": "2004240", "video_name": "701c2130-e730-5d36-99bb-f5db3f1710fc", "text": "Design a quality management diagram for the manufacturing industry Message: 1 Attachment "} +{"id": "0005206", "video_name": "1695cb0e-f466-5e0e-a63b-e7562c4a2283", "text": "woman fortune teller, cat, magical environment "} +{"id": "2005605", "video_name": "4a125063-42ba-5cef-b31f-e183db10cbcb", "text": "mystical green field, 70s vhs style, liminal horror "} +{"id": "2006587", "video_name": "bdb29bc4-7266-524d-9cf7-dbbc4a5e5255", "text": "an african american woman sitting in the window at night writing in her journal "} +{"id": "0003577", "video_name": "3fd37476-e74e-56dd-b59b-9aa817e8cf49", "text": "The sound of a shofar echoes in the background of the walls of ancient Jerusalem "} +{"id": "0006801", "video_name": "33553aa0-0ded-581c-be64-a52001213cb1", "text": "blonde girl with fireworks in style of Pixar animation "} +{"id": "7004163", "video_name": "b1867db2-6fac-5087-bf7a-5822d9b23a98", "text": "realistic girl swimming in ocean in a pink bikini "} +{"id": "2004713", "video_name": "4d9b0f46-b89f-57a8-aa9a-89c1a181824e", "text": "a friendly dinosaur professor, anime, high resolution "} +{"id": "8002746", "video_name": "31453256-368b-52aa-8767-ae8c6d67770f", "text": "Create an illustration of the little girl running through the village fields, holding a flag. "} +{"id": "0005459", "video_name": "1b228cee-b20c-5484-8f80-9fbd3b7c0954", "text": "gtavi The moon, once a symbol of mystery, now harbors the sinister secrets of an evolving AI. "} +{"id": "8002971", "video_name": "85d92784-a1d0-579f-9b25-b6fb133bffab", "text": "the four horsemen of the apocolypse arriving at the great pyramids "} +{"id": "0004824", "video_name": "0fd1f1cd-9cee-5efd-b7d8-436edb3bfad4", "text": "Identity Fragments\tExploration of Self\tRace and Personal Identity\tFragmented portraits with symbolic imagery\tMixed Media and Collage\tReflective, Intense "} +{"id": "1004405", "video_name": "5178b83e-834b-533b-a581-6d8baf3d9562", "text": "a tiny house in the country, anime style "} +{"id": "3004230", "video_name": "a2906de5-88bb-57a4-8a11-12fb94a6ed57", "text": "a old television in an empty dark room with static interference on the screen with the image attached appearing and disappearing in a glitch effect "} +{"id": "0004267", "video_name": "06189b51-0d5b-512a-a880-cbe37eeaacd5", "text": "sicilian boat attacked on the water in old history footage by a dutch boat "} +{"id": "8001510", "video_name": "74652ae4-e334-511d-81e2-47e719015d95", "text": "animate a large column in the color of turqouise which moves smoothly and meets another column which is in the dark brown color, they move together and meet a grey column and create a soothing visual "} +{"id": "4004205", "video_name": "89446bc5-a551-5420-8736-d3dbd16c09b8", "text": "It generates an image where they are pointing, that is, that they are fighting each other, with weapons, a soldier and an engineer, in war uniform in the middle of a city on fire. A fight between two, a soldier and an engineer with guns "} +{"id": "0005556", "video_name": "1cd5f988-4b8e-56ca-acd2-cd743f174646", "text": "the division dark zone snowing blizzard with puddles "} +{"id": "2005351", "video_name": "876f7d26-f37f-5dbb-b7a4-0b7075fb4371", "text": "2 wooden small house of 2000 years old in the ground of jungle with bright sky "} +{"id": "4003827", "video_name": "5316fbcf-7c36-5ec1-87c0-4cec628a5e4c", "text": "Vintage Halloween Night Scene with Ghosts, Zombies, Skeletons and scary monsters "} +{"id": "8002291", "video_name": "83af4184-4b08-5f4e-9359-3cd609b2b4b3", "text": "Sarah and Daniel meet at a park where they first kissed. Both have changed and matured. They embrace under the same tree from their first kiss, symbolizing forgiveness and reconciliation. "} +{"id": "1005524", "video_name": "65acf927-c6c6-5193-ac1c-4041cacd22bd", "text": "their is a cat under the tree "} +{"id": "7002784", "video_name": "571c6000-b223-5236-bb7e-1b884a86dbfd", "text": "Dancer knights at the stage, retro style, dressed in ostentatious clothes, with feathered hats cabaret girl, 35mm lens, hyperrealistic, high detail, cinematic light, cinematic photography, dark shadow, ultra realistic, skin texture prominent "} +{"id": "2006631", "video_name": "702fc640-b9b9-5566-bc89-007d8d74f8b3", "text": "two super saiyan fighting in the sky "} +{"id": "7003010", "video_name": "b508da5f-5a4b-5261-b76f-2ae9f09f8f69", "text": "jesus hold in his hands holy candle, in the desert "} +{"id": "0006498", "video_name": "2d884492-7dab-5cbf-995d-e3e18b28d903", "text": "Feed the chickens and drink water "} +{"id": "8001493", "video_name": "65bc1b45-467f-542d-9720-2a81634ccaa4", "text": "An Immovable Landscape, just with the animated water flowing "} +{"id": "8002373", "video_name": "2ed3e411-a3cf-5960-984f-e83ce14d0568", "text": "cartoon zapp branigan hates his dungeon office: tall mountain bodyguard holds a man hostage, 3d animation, camera pan out, "} +{"id": "2006652", "video_name": "fc4260d8-d978-5784-87dd-ad9b1a0d4902", "text": "A guy and one homeless person enter a Russian entrance in the evening "} +{"id": "2006272", "video_name": "d495a8a5-4740-530b-bdf4-90b0c9ee2c1e", "text": "boy flying over a beautiful mountain above a brightly colored hummingbird. "} +{"id": "7004946", "video_name": "56d344d1-55b2-5c7b-b934-f833d6deb4e7", "text": "finding your favourite book in library "} +{"id": "2006907", "video_name": "70465dfa-3796-5c3d-8574-393f894a15fb", "text": "Animation,destroyed city ,in the world of the Soviet apocalypse ,hyperdetalized , hyperrealistic,shadow of Chernobyl "} +{"id": "2006686", "video_name": "7262c6ac-5695-5c89-86f4-2bd2276d9753", "text": "beautiful women standing on pvc stand "} +{"id": "2003802", "video_name": "3c7877e7-c792-5148-83c4-12e8ea494cb4", "text": "9:16 size, image of survivors of the world destruction, rebuilding and replanting the forest, indigeneous groups planting, permaculture and agroecology , wide view, desertic landscape "} +{"id": "2005961", "video_name": "11616ee5-c2ab-5ded-bcdb-e6ca02fa8516", "text": "a salesperson writes a check to a customer in a grocery store "} +{"id": "1003073", "video_name": "38889d34-41a7-5741-93aa-a872ebeb2e65", "text": "create a image of a indian girl standing with her breakdown car "} +{"id": "2007614", "video_name": "814f1ce0-2076-5f9f-b932-afd87d7d4838", "text": "sunset in a clear water lake with camera motion and zoom out Message: AMAYA (Font: MODERN) "} +{"id": "6002941", "video_name": "3433af38-e164-5d2a-9e96-70a8f9cba246", "text": "Mysterious forest which contains various animals. These animals come in different colors and shapes, giving them a very fantastical feel. The background of the avatar is black, highlighting the mystery of the forest. "} +{"id": "1005242", "video_name": "60635b6b-d2d8-5942-8372-737a981abe06", "text": "A climber reaching the top of a challenging mountain, illustrating the conquest and overcoming of great obstacles. "} +{"id": "1003172", "video_name": "3a5fe922-ed51-5ab4-87f8-3fdfa3b5a252", "text": "A curious tabby cat sits on a windowsill, peering outside at the bustling cityscape below, skylight exposure, stippling, 4K, high resolution "} +{"id": "7002272", "video_name": "bd11cce1-bf2c-5a3c-a019-e1feed6637ff", "text": "binary sanctuary white and gold Message: Artistanova "} +{"id": "3004402", "video_name": "520cf431-b75c-52d5-8c58-d94076345b62", "text": "within the Haunted mansion, malevolent and eerie spirit reside,souls that were once imprisoned by the government official and ruler of the past "} +{"id": "6003085", "video_name": "f21d05c8-8eff-54e1-8473-89803a59f085", "text": "Parents surprise their kids with a PS5 as a gift. The kids are overjoyed and thank their parents. They set up the PS5 and play various games with their parents. They have fun and bond with each other. They praise the PS5 for its quality and features. They end the video by saying \u201cPS5, the ultimate gaming experience\u201d. "} +{"id": "3005281", "video_name": "86f854fe-32ce-538b-bfff-aa192ac40f7a", "text": "a deer threw a watermelon from the 10th floor.real life style "} +{"id": "4002503", "video_name": "e902f390-841b-5527-9408-c1eb73f6a113", "text": "the ant and grasshopper working together to collect food for the next winter "} +{"id": "1004998", "video_name": "5c5fd02b-1939-5cec-b231-d411c0262254", "text": "Very very fast film about a Peruvian artisan couple who wake up in their bed. "} +{"id": "7003717", "video_name": "ff808345-9903-54db-ac61-29001b734233", "text": "a scene of a kawaii style girl elegantly dressed in a black santa dress without a hat and with pigtails long blue hair posing in front of the black christmas tree with red and silver spheres with a room in a gothic atmosphere "} +{"id": "8003585", "video_name": "8bc00fca-1776-5924-840d-c1bee5070f8f", "text": "a female student who is studying GRE in the libiray "} +{"id": "4002663", "video_name": "9003b8d3-e121-53ff-a7fd-12327e2c44c1", "text": "girl standing in the kitchen in vr glasses "} +{"id": "6003404", "video_name": "529e94ff-1885-55f2-a4b4-a3663b1de277", "text": "Arctic, winter, cold and penguins on the background Message: LAYERZERO (Font: MODERN) "} +{"id": "1003550", "video_name": "4182f52f-c28f-5ef9-9533-c7a6aee86e94", "text": "multidimensional motion graphic about creation in style of alex grey "} +{"id": "4002461", "video_name": "76ee6f83-acc5-5168-8269-8254130074fe", "text": ":very seductive robot women wearing a bikinnis walking together "} +{"id": "2003396", "video_name": "b3a9e530-ef7d-5b0e-b07e-6ef5342c469b", "text": "Highlight a group of vibrant butterflies fluttering around flowers. "} +{"id": "0005178", "video_name": "1618e269-2a79-5ce0-bb79-cc2d30289a82", "text": "video realistic nature image dreamworld happy mushrooms pink yellow dreamy "} +{"id": "1006002", "video_name": "6e419c49-a6b4-527f-b097-7b9390f91d98", "text": "3D render of gems and crystals in water "} +{"id": "5001308", "video_name": "bd0f9310-06b5-5591-bfb1-02e6a2737968", "text": "A little fairy talking to kids "} +{"id": "8002163", "video_name": "91d9063f-2c43-5e58-9e5b-3b95db365d53", "text": "Muscular wolfman walks towards camera. Behind him is a glistening lake by moonlight with the moon reflecting in the water "} +{"id": "2004977", "video_name": "f2106eb5-2e5d-5f97-a92b-fe2c1c791a99", "text": "Medusas dancing above the water on the sunset, wide angle view, dramatic light, 4k, realistic "} +{"id": "6004842", "video_name": "100aa7ae-34f8-5de0-877d-53cd782d90a0", "text": "cinematic, video realistic, magical mushroom forest, medium shot "} +{"id": "1005231", "video_name": "6043a757-22cf-59ed-9f0c-c8a0cda80f5a", "text": "A woman who is smailing to his man when he is wakeuping. background a sleeping room "} +{"id": "3003028", "video_name": "d99f93bf-2d0d-51b5-9aab-6e0d6253d3b2", "text": "animated red fox playing the drums ina forest "} +{"id": "0006585", "video_name": "2f0e8a53-3f54-5510-81f9-94e8b5b55407", "text": "Person or business gasping for breath 3d animiert cinema "} +{"id": "8003737", "video_name": "df0042fc-2fa1-58c0-9bac-29ec5d3f47b2", "text": "cinematic scifi of psychedelical human in a universe travelling at the speed of light "} +{"id": "2005574", "video_name": "3e2df23f-f357-5dce-a1fc-988f2e88c29b", "text": "a lot of dollars are in fire "} +{"id": "3004168", "video_name": "d9f6d3d2-413e-554b-805b-240a954886c3", "text": "what being on acid would look like from the first person perspective of an ant "} +{"id": "8003670", "video_name": "42229597-556f-582f-af0c-8e216c2c8952", "text": "5 year girl transformation to 20 year girl "} +{"id": "3006120", "video_name": "bf497046-cadf-537f-8207-fa2887b0dfce", "text": "star shower, very light violet universe background "} +{"id": "0003523", "video_name": "3ef545f3-4147-53c6-a88a-62134d437b40", "text": "Blue sky white clouds monkey tree "} +{"id": "8003676", "video_name": "f2c86d84-c31c-5220-8323-b10a7788d3d2", "text": "scobby doo style animated freddie gibbs solving mysteries, gs429, low poly "} +{"id": "0005289", "video_name": "17eaad9c-1638-5eff-8b63-c2454bb25b17", "text": "a cute anime boys and girl love "} +{"id": "1006759", "video_name": "7bbd3802-2b17-5385-bccd-d6b7875cf7dc", "text": "kid Sam rushed towards to the old woman, who is walking in the railway track "} +{"id": "7003949", "video_name": "1fc74476-8cd7-5567-874c-051ef5432d38", "text": "A girl soldier walking through a small pond of water "} +{"id": "7003489", "video_name": "9ff8ca85-0251-584c-bf5d-f4c22ad8352d", "text": "As the Quantum Force watches over the city, we see glimpses of other heroes and villains from alternate realities, hinting at future adventures. "} +{"id": "0006635", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "Over the years, numerous expeditions set out to find Agartha, "} +{"id": "6002591", "video_name": "b7ad6620-5a95-59f8-bdb6-b6706da1a63b", "text": "Two FBI agents, a man and a woman, find the corpse of a young girl with a vampire bite on her neck in a dark alley. "} +{"id": "8001306", "video_name": "766e7968-4fb3-5163-a48e-d4dd60c96c31", "text": "On the chess board, there is only one pink cat chess piece, the piece is slowly rotating on the spot. "} +{"id": "2007942", "video_name": "1ff60e8c-0cc2-579d-a272-8b168cdb5539", "text": "make it smile and laugh using the attached image "} +{"id": "1005584", "video_name": "66bf9031-ef6b-52df-a7f6-34106262d897", "text": "a mail boy is riding a bicycle, flying across the moonlit beautiful sky at night"} +{"id": "4002763", "video_name": "07aeec55-99cf-586c-939c-720b4ad71a28", "text": "3d cartoon character of most beautiful girl in the world "} +{"id": "6004019", "video_name": "a24f4d39-cdee-5fac-98e6-343d6ebc1c60", "text": "image uhd, 4K,child in the rainforest "} +{"id": "3003861", "video_name": "21a3191f-668f-5962-af4e-d47aa1ebfd20", "text": "vast pampas and rugged mountains in Argentina "} +{"id": "2004255", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "Create aexplainer video about the benefits of using cloud computing for businesses. "} +{"id": "2007076", "video_name": "31a93f62-3d3d-5ea6-a315-72cfc91f3406", "text": "Chinese Girl collecting rice, Sunset, animate scenario "} +{"id": "3003191", "video_name": "a4c17a6e-7fdd-542f-afbb-c11a8ea5db88", "text": "A man bringing a girl on a date for valentines day to get lucky "} +{"id": "3006909", "video_name": "4e3e1366-7511-5a50-bff0-39d24a8aca20", "text": "a realistic old womans sitting on a simple wodden chair in an empty room. woman is holding a magnifying glass in her hand. the walls in this room are moving in a smooth motion, they look very surrealisticly animated and colourful "} +{"id": "3003235", "video_name": "21f74afa-a71d-573a-b1a2-b5040c5af9cf", "text": "a dog samoyed in the forest "} +{"id": "6003136", "video_name": "da3b41f1-9427-5015-8c9a-eb3a4d025d73", "text": "angelic features are accentuated by the soft sunlight, her clear eyes reflecting innocence. Her flowing hair catches the light, emitting a fragrance of flowers "} +{"id": "2006094", "video_name": "3a8f779b-1562-5b14-9682-53876ec405cd", "text": "Santa in Time Square, New York City, epic angle and pose, 3d, depth of field "} +{"id": "1005928", "video_name": "6cdd5bd2-c63c-5e8b-9a45-3a7ee3673161", "text": "A man chomping down on pizza, upclose. 4k HD. Ultra high resolution. Photorealistic. "} +{"id": "4003119", "video_name": "d3dcfc07-a89d-56aa-83cd-566bd2356d47", "text": "tomatoes raining down from the kitchen ceiling 32k ultra realistic first person camera view "} +{"id": "6003627", "video_name": "6f44a7e7-2ce3-5599-9685-12bd10375fab", "text": "a boy listening to music and lighting in the "} +{"id": "3005131", "video_name": "49c010ae-727d-5f98-8b3c-a0754c904077", "text": "Jesus in the Sermon on the Mount "} +{"id": "2007330", "video_name": "87eb338d-c7ce-569e-b9aa-58ea1ee07657", "text": "beautiful rose with glistening morning dewdrops "} +{"id": "3003214", "video_name": "73659477-fa38-5347-9927-2028eddf5146", "text": "omputer and smartphone with spyware icons slowly appearing "} +{"id": "3006440", "video_name": "54b441ea-7285-51f2-a428-5fa206074a64", "text": "Construction of a large city of skyscrapers and on one of the buildings a worker dressed as a construction worker saws stone with an angle grinder "} +{"id": "4002114", "video_name": "d60c520a-110f-51d3-a7b5-64b9971fd450", "text": ":a pink rabbit in forset,envirament is bright,3D style ,cartoon "} +{"id": "6004942", "video_name": "aa80f428-0b67-573b-afff-6fef328a3a21", "text": "one big cow house in front of cow house sheep and cow walking opposite direction "} +{"id": "6003721", "video_name": "afaac702-fc45-5149-b5a8-d2cdb067ced8", "text": "illustrate electronic devices, such as cell phones and notebooks exploding, releasing lightning "} +{"id": "3003966", "video_name": "a71e5b67-f20a-5a22-a627-2728f6f13140", "text": "The Mysterious Well: Shitala Vilas is known for a well that is said to have magical properties. It is believed that anyone who looks into the well can catch a glimpse of their past or future. As more villagers use the well, they discover unsettling visions that hint at a shared fate. "} +{"id": "2007903", "video_name": "932b045b-4dec-5597-ac20-5232dc54aa67", "text": "grainy vhs footage of an empty screen on loop "} +{"id": "3003646", "video_name": "94dea17c-96ee-509e-95a2-eda76588ac3e", "text": "The journey back from Lapland to Kuopio was a stark contrast to their initial expedition. The dense forests, shimmering lakes, and vast stretches of wilderness that once seemed menacing now felt welcoming, like old friends sharing in the secrets of their adventure. "} +{"id": "3004770", "video_name": "067992e4-d079-5783-9f60-0e2559a2b923", "text": "a lot of hundred dollar bills raining from the sky, landing on the streets of new york at night "} +{"id": "4003012", "video_name": "07b61304-6b13-5fcd-896b-a69afea56db1", "text": "born a baby in Indian palace "} +{"id": "1006736", "video_name": "7b651b49-dfee-54b0-9854-9b1625a97098", "text": "Explore the interplay of light and shadow in urban environments, creating a visually striking video that highlights architectural details and cityscapes. "} +{"id": "3005086", "video_name": "79311379-12d5-5edf-b925-0bb97e986a7f", "text": "I need a LatinoAmerica logo with black letters and yellow borders "} +{"id": "6002926", "video_name": "6eeeaf97-129e-5a9b-aa1d-5726ee5deaa1", "text": "\u201cIn \u2018The One Piece Reunion Road,\u2019 five friends from high school with diverse interests and responsibilities embark on a road trip together. Along the journey, they encounter comedic mishaps and obstacles, testing their friendship. Each character faces personal dilemmas and challenges, from academic setbacks to familial responsibilities. Bound by their shared love for \u2018One Piece\u2019 manga, they find inspiration and growth during the adventure. Ultimately, the trip strengthens their bond, and they part ways with newfound clarity about their identities and dreams.\u201d "} +{"id": "3003754", "video_name": "af320ffa-05d2-5569-951b-f563f437ad24", "text": "Elon Musk is wearing a mini skirt "} +{"id": "3005024", "video_name": "c8b87670-0ce3-53a3-8b75-1a75b15b570c", "text": "A classic red car, unpainted and dilapidated, driving along a road between a forest of dark fir trees, in the background we can see the classic American mountain town with a cloudy sky. "} +{"id": "3005756", "video_name": "c8c0accf-4373-5b06-bce9-7c16fae7602b", "text": "anime style , young bboy in yellow tracksuit and Afro haircut walking on a road in the south of France "} +{"id": "4003058", "video_name": "15837b5a-26d9-5bf8-ba35-17ed4e9ba320", "text": "air france plane flying next to burj khalifa dubai "} +{"id": "1003314", "video_name": "3d036682-34d2-5d49-87a7-50544beb4b3c", "text": "neon graffiti alien girl, extraterrestrial character by Yoshiyuki Tomino, alien character, concept art, heteromorphic, arthropod, reptile, chimera, translucent skin, exoskeleton, multiple eyes, glowing eyes, radiant eyes, albino eyes, hyperpigmentation, geometric facial features, geometric skull structure, geometric eye socket, crisp detail, sharp focus "} +{"id": "0005230", "video_name": "1700589e-187e-59aa-aeb5-370ddf314ba4", "text": "Farm Tale: The Prince and the Colorful Cow "} +{"id": "6003626", "video_name": "132f39cf-39db-5717-89fe-4ec00d3ba4be", "text": "RWB Porsche 911 rolling down avenue. Vaporwave style, neon front stores, downton, tokyo "} +{"id": "3005418", "video_name": "985af4e1-19bd-505c-b875-192321d35bbe", "text": "suddenly in the garden a bright light emerges taking tom the cartoon cat and jerry the cartoon mouse to third day of creation ar 16:9 motion 2s "} +{"id": "1006107", "video_name": "701239b6-e189-5649-9c46-6bb134c67e40", "text": "Former United Nations employee Gerry Lane traverses the world in a race against time to stop a zombie pandemic that is toppling armies and governments "} +{"id": "7002977", "video_name": "1dbc957c-2ae6-50b9-ae34-8ef68556f459", "text": "Carnival in style of Federico Fellini "} +{"id": "3003637", "video_name": "0abca508-c9e2-5754-abf8-7e268f58b4ce", "text": "The two of them went to eat pizza together, it felt delicious, the woman really liked it,anime cenimatic,hight quality, 16:9 aspect ration "} +{"id": "0003211", "video_name": "394e0269-6125-53db-91e2-fa3b680ac687", "text": "extremely lux private school through tracking shot "} +{"id": "2006979", "video_name": "5fd93784-c75c-5be1-9253-597f5d81e5d5", "text": "an android laying on the beach "} +{"id": "6002419", "video_name": "b965ad81-6c7e-50cd-a873-f8ed47891bc5", "text": "generation generation a woman carrying shopping bags in a city, a digital rendering by Ancell Stronach, trending on shutterstock, modern european ink painting, quantum wavetracing, stock photo, stockphoto "} +{"id": "6003087", "video_name": "4150526e-e8f7-58c5-a885-208fee0ed03b", "text": "A table of delicious traditional Chinese cuisine "} +{"id": "2006492", "video_name": "18d31eea-1366-5aeb-8b82-4269c00e6f3a", "text": "Grateful Dead skeleton with Jerry Garcia "} +{"id": "2004328", "video_name": "06a0f32c-aea5-5ae6-9001-adc2f50dda10", "text": "Boy talking with a girl, cartoon style "} +{"id": "2004829", "video_name": "ec9e3964-dea1-55f8-8090-fd64fe385ac4", "text": "a character of comic 2d walk inn a future planet "} +{"id": "8003975", "video_name": "4499c238-b4bc-5f8b-b11e-a2a76e548f26", "text": "drunk hamster on the top of a gold coins mountain "} +{"id": "4002580", "video_name": "6efb8340-5629-5932-827b-9bc944bb190b", "text": "make me a video for empowerment "} +{"id": "3006413", "video_name": "58dac925-3734-5953-96d7-5064e5fc649d", "text": "a teenage boy from the 80s wearing jeans and jeans jacket, riding a bmx at speed whilst listening to rock on his walkman, riding fast and jumping over bumps. Shows shots of his feet pedaling in the style of a steven spielberg 80s movie "} +{"id": "4004269", "video_name": "6d2a5f81-f580-5139-bc94-8649f3b5c760", "text": "is not just about life hacks "} +{"id": "2004229", "video_name": "79025786-4810-54c8-a8c0-c113518bf67d", "text": "i want a video of a man who is young and a chef making a homemade taco recipe with white sauce as the dipping sauce "} +{"id": "2006624", "video_name": "d8536450-cfff-53bc-8bec-628847c4c736", "text": "a couple on a mountain fast closeup DOLLY ZOOM EFFECT "} +{"id": "0004129", "video_name": "03b8abe4-00e7-5808-8acf-9975aa1103f3", "text": "Love and emotional feelings are more valuable when they come true and honest in life. "} +{"id": "1005163", "video_name": "5f0ae7b0-ae56-580d-b67c-425f0cebfc99", "text": "A little girl, cute, wearing clothes, a small skirt, white hair, manga 4D scene in the forest "} +{"id": "7003493", "video_name": "3276e804-e7e5-5a7c-a998-a053659bdb1a", "text": "misterious beige a panda kissing bamboo "} +{"id": "2006881", "video_name": "b3fa12b5-826f-5598-b706-aa2a6dcc6906", "text": "mala noodles ties up from bowl "} +{"id": "5001367", "video_name": "3565768d-ba15-5dc8-a81c-a11f1aa2e67e", "text": "sexy woman in a rock concert "} +{"id": "1004721", "video_name": "57947758-c24b-5aa9-843f-c2ca5e1c8520", "text": "flowers thrive and blossom under the sun\u2019s loving care, soaking up its energy and turning it into breathtaking displays of colour and fragrance, hyper realistic cgi animation "} +{"id": "3006542", "video_name": "64312e55-b667-5e3d-afa3-bdc58c929e95", "text": "A vhs video of a group of people crussing the desert, the video is taken with a drone and lasts 1 minute "} +{"id": "0004754", "video_name": "0eaccb2d-44a5-57f2-94ac-6b1a7d50efbc", "text": "always remembering the wisdom of Oliver named owl and the joy of the woodland dance,hyper,realstik,8k ultra "} +{"id": "2003976", "video_name": "3065db55-cdda-5961-8403-e188703e9fec", "text": "a group of nurses waving from a far away balcony, camera zoom out "} +{"id": "3003746", "video_name": "d02d724c-0ea0-5705-92b6-0ba47ca7023a", "text": "girl standing still, penguin move around,wave in sea , "} +{"id": "6003234", "video_name": "77a6d4a8-0904-5e79-bcbd-4c76118717cf", "text": "snow globe with 2 people trapped inside in love "} +{"id": "6002430", "video_name": "45bfb72e-eedc-5680-98dd-dfea3dd9ca9c", "text": "A cat that looks like a dog walks towards us. "} +{"id": "6004598", "video_name": "0cf0adcf-612c-522c-846c-021633b6a6e5", "text": "an epic intro to a food video "} +{"id": "1004454", "video_name": "5268e034-f4d1-58e9-b4b8-a62384d855c9", "text": "Robin Williams being resurrected from death using quantum assembler technology. "} +{"id": "3005427", "video_name": "bd7df3ae-719d-5dc8-8c58-e759adf5e2de", "text": "add Ghost Sou Message: 1 Attachment "} +{"id": "3005746", "video_name": "a20a09fc-56ce-5499-a9fa-9b70547a14ac", "text": "animation of a logo of a video game studio in voxel art style "} +{"id": "7004426", "video_name": "82864bfd-8385-5633-bc9a-9532c1b14a47", "text": "a cow made out of computer screens hiding in a herd of cows "} +{"id": "6002019", "video_name": "4f477f88-2033-5074-bb1d-ac78d405eb71", "text": "Young woman with smiling face drinking coffee in the kitchen of a cozy house, cinematic, 16:9 "} +{"id": "3003912", "video_name": "00cd8184-02d7-55dd-b650-ec8e86d3ebc5", "text": "smiles and moves money Message: 1 Attachment "} +{"id": "6003305", "video_name": "b247c72c-3e3a-5500-9cb4-242c79125224", "text": "a gummy bear that is hitting another gummy bear "} +{"id": "2007894", "video_name": "588ed681-26fc-5d65-9ad1-8bfe45173783", "text": "a fair young man sitting on chair in the office in suite in the office and giving an interview and taking live "} +{"id": "5001781", "video_name": "4bc31178-d564-5087-a9b2-b471f356b880", "text": "A luminous flying saucer flies away from the roof of the house. "} +{"id": "1004683", "video_name": "57020eb2-3c7f-59b7-878a-c66027479ffc", "text": "A banana is destroying itself with a nuclear weapon. "} +{"id": "6003538", "video_name": "437f7ab1-574a-59e0-9b22-1525c3e236ea", "text": "2. High antioxidant content protects from free radicals and chronic diseases "} +{"id": "0005190", "video_name": "165f9cc5-8911-59c1-aeb0-32220feae26a", "text": "cartoon of babies otter sleep peacefully "} +{"id": "3005537", "video_name": "7c22038c-21e5-5370-8ca6-56b5136ffee8", "text": "Eating chocolate at a pool party, young people in swimming clothes and bikinis "} +{"id": "3004619", "video_name": "ef448b2c-2cde-505f-847d-a426849b09c2", "text": "lion facing front, zoom out, 4k "} +{"id": "6004448", "video_name": "17a72fc4-a938-58ac-a55a-7768c4b6a2db", "text": "A cute chinese girl,Wearing traditional Chinese clothes. She is holding a bowl of white smooth tangyuan happily. 3D Pixar style,Blender,Pure Chinese red background, "} +{"id": "6004243", "video_name": "024160fb-bde1-5ed5-9ddb-0781a70e0dd7", "text": "explorers inside giant underground cavern, zoomed out view, massive scale inside "} +{"id": "6004476", "video_name": "c2adb87e-453f-5b73-af6c-5b02b73614e9", "text": "a horror scene where a girl scarred of her own shadown in dark room with only one light and the shadow cast by her own candle light , the camera angle woul be one third top angle where we can se the chase of girl and shadow, this all will be in artist sketchi form. about 3 minuite video "} +{"id": "7004152", "video_name": "25b903c1-5027-5cf2-8e0f-7945f76eb159", "text": "A cat destroying a cat bowl by putting melon juice on it "} +{"id": "3005786", "video_name": "6e156b99-42f0-5075-8dff-da5443953dff", "text": "Scary alien spaceship in sky, people watch in horror, you can see the aliens in the crowd with the spectators, pre invasion, scary, terrifying, screams, motion 2 "} +{"id": "6002936", "video_name": "c2f4bca8-6c9a-5169-ae43-7c98dcebabda", "text": "a gorgeous black panther climbs a huge pine tree then jumps down gracefully 8k "} +{"id": "7004656", "video_name": "46fd4798-642a-54bc-8c82-3068c23bacda", "text": "muscular darth vader mf with horns and staff standing infront of fire "} +{"id": "1005390", "video_name": "6312a35b-1b78-5cd8-ba61-40b666b3dfe1", "text": "Field with demons, terrifying, dead vegetation, fog, looking at the camera, shadows, horror "} +{"id": "7003521", "video_name": "740aa4f5-aeb4-5984-98fa-7ff9395ee409", "text": "The crowd swung their axes and began to smash the interior walls; Japanese cartoons "} +{"id": "3006833", "video_name": "1651ec85-fdfe-5573-a856-63ec22a1feeb", "text": "a navy ship sailing around england "} +{"id": "1004812", "video_name": "58f17a5c-3e60-5e9d-8ce9-d2c2a6ace321", "text": "My journey into the heart of darkness began when I received an anonymous letter urging me to investigate the asylum. The letter spoke of strange occurrences, ghostly apparitions, and the tortured souls trapped within. "} +{"id": "3005297", "video_name": "1ec26011-013a-52fa-884b-f9db043064c4", "text": "16:9 background of nature in a neo tribal style "} +{"id": "8001004", "video_name": "138015c0-41e5-5130-bb2f-335a1a9d5bfe", "text": "a monkey alone in ajungle one side and another side lion "} +{"id": "5001563", "video_name": "734bd921-2732-5152-9843-722c572567fb", "text": "dog sleeping in front of the river, trees blooming and raining "} +{"id": "4004610", "video_name": "ab4e1fdd-c02c-5e1e-a4b3-e088171fdb3b", "text": "a tropical glamping with moving clouds "} +{"id": "2006176", "video_name": "cf5f735a-6294-5540-8495-7ec5ce5bee7b", "text": "20 second video of anime tiger fighting anime rhino "} +{"id": "8003442", "video_name": "d5fc13e9-a67f-502f-8eaa-58356e6b53fc", "text": "ten chickens swimming in a pool with lots of fish "} +{"id": "0006402", "video_name": "2bda826c-4058-5d78-a993-519f367359e9", "text": "birdseyeview of a beautiful construction site at night, colorful lights "} +{"id": "8002315", "video_name": "6d2699c7-c39e-5952-b8af-87a9a724d1e9", "text": "Rain in Tokyo with camera zoom Make the scene realistic "} +{"id": "6002425", "video_name": "699df0b0-fb41-5e75-a162-a90cda24bcc1", "text": "10 second video promoting profits for borsa airlines "} +{"id": "1004091", "video_name": "4bc19be5-dc7b-53c6-a13d-a9c9e27793ae", "text": "In the ancient Chinese countryside, an old man holding a cow walks beside the farmland. The old man wears a straw hat on his head. Right side view, moving from the left to the right of the camera. Fixed shot. A dog follows behind the old man. "} +{"id": "2005297", "video_name": "27e3f041-d90f-51f6-824b-34808adc1e5c", "text": "trees roots are covering the door of cave "} +{"id": "6002194", "video_name": "22a5e5fc-4337-5857-9ee5-32d819fd6156", "text": "the sky and river as being one, without a speck of dust. "} +{"id": "1004326", "video_name": "4fe551f9-29fb-5171-9df6-bd04437b24fa", "text": "an magical forest with the beautifull water sea "} +{"id": "2003505", "video_name": "15537009-8ae9-5b63-93d3-34cf33372d48", "text": "dog flying on moon by using parashute "} +{"id": "0004090", "video_name": "0305ed1a-eddf-529d-8543-74aa98ee6d7d", "text": "make family , in room , cinematic shot closeup , pan camera angle "} +{"id": "0004261", "video_name": "060489c2-3d48-5b28-b0b2-d50a45990399", "text": "Create an illustration that visualizes the decline in biodiversity. Depict threatened or endangered species of animals and plants, highlighting the consequences of biodiversity loss on ecosystems and humanity. "} +{"id": "8001169", "video_name": "8cdfe04c-5536-573c-83b6-d809317e15d1", "text": "rocket league game, drive car octane, car hitting big soccer metal ball "} +{"id": "3003569", "video_name": "a922ec4c-0f99-5750-a9ec-e1f017c9d6ee", "text": "Two helicopters colliding and exploding in air. Realistic view, Fire, 10 second video. "} +{"id": "3005835", "video_name": "de177a20-8dad-5d3a-a52f-4cba7730f970", "text": "creat 2 cute pandas. create 1st panda with white colour and the create the second one with red colour "} +{"id": "2004854", "video_name": "45ac9dbc-5581-584b-a552-c888c631cb91", "text": "Christmas tree in a desert, 25mm "} +{"id": "0003606", "video_name": "405192b6-fbcd-5af0-8a26-e80397e09d31", "text": "epic motorcycle race, high resolution, cinematic, 16:9 "} +{"id": "0006832", "video_name": "33dddc9e-8767-5300-a898-f2c880de21e5", "text": "image of a young and beautiful professional women in suit standing and facing straight, show full view of the women from head to toe "} +{"id": "0003753", "video_name": "42cd815a-5815-5b27-beed-d4070821b8ec", "text": "a female model is walking at the beach, sunset, realistic, 4k "} +{"id": "8003588", "video_name": "5be523f9-8d1e-5310-96c5-0f44481ac96c", "text": "wind gently blowing through hair, spaceships, head nodding up and down, shooting stars, stars shing, planets spinning "} +{"id": "0004341", "video_name": "076c6055-1152-5e10-8bdd-623a24b70d61", "text": "dark room, night, a woman is staying at window, the window is open, cigarette smoke is in the room, the night lights of the city, the neon signs, in a 1960s French film "} +{"id": "3004424", "video_name": "870e6594-9e37-540c-bf74-fb9dda6f2cc5", "text": "Crowd with hands to the sky, Bible, clear facial features, cinematic, realistic, 35mm lens "} +{"id": "2006629", "video_name": "dadc0918-2f79-5f5a-87ba-4154c74db22f", "text": "anime pizza restaurant, night .horror . Building "} +{"id": "8001373", "video_name": "b1bdbeea-4f96-573a-a7c3-1864f04ec940", "text": "a container carrier spaceship flies on fire in deep space. In style of a science fiction movie, HD "} +{"id": "7002610", "video_name": "b499daf3-0f21-5325-8210-047f6b83d58a", "text": "PlayStation 2 boot screen NEW SHOPPE BLESS THIS PLEX ambient lush dark crisp complex "} +{"id": "0006841", "video_name": "340c6144-e7a5-5dff-a45a-976ede434f08", "text": "creat an image of sea animals inside sea, Gradient color, neon ligt "} +{"id": "4002354", "video_name": "77367956-d9d4-54e2-9023-a727d601f65f", "text": "a detailed robot is running thruw a desert with skyscrapers "} +{"id": "0005066", "video_name": "140f8cf0-7ce5-5a15-920d-116dd5619efe", "text": "Pike in the water patiently waiting for the fish and then chatching small fish "} +{"id": "4004787", "video_name": "f84ba179-08e9-5f9b-a54a-647c3cb92a3d", "text": "An image of a person crafting a bridge out of broken pieces, symbolizing how one can use failures as building blocks to overcome obstacles 4k. "} +{"id": "7003565", "video_name": "2e900fbf-896d-5303-a5b1-cffcfe21e2ec", "text": "Learn the right time for your opportunity "} +{"id": "4004378", "video_name": "8a17afd8-644b-5cbc-b411-bbc100956285", "text": "a map of the world with the countries in light blue and a darker blue and white background. 1 dollar bill in the shape of an arrow in the middle of the map "} +{"id": "3005772", "video_name": "6025d1f0-8506-5333-9cdb-765e724750d2", "text": "One sunny morning, a curious young girl named Maya set off on an adventure "} +{"id": "2006780", "video_name": "39442b16-a5d3-5480-9678-8dafe795a03e", "text": "When a person wakes up, the sun shines into the room "} +{"id": "4003061", "video_name": "73702c12-f10d-513e-a5d0-4c673c973fda", "text": "commercial plane flying through the clouds, 4K, realistic, details "} +{"id": "1004624", "video_name": "55fb0844-2bf7-564d-b821-c69f8282f961", "text": "woman running Message: fun (Font: MODERN) "} +{"id": "2004262", "video_name": "f1fb54cf-bcbe-5034-86bf-a14afda74d0f", "text": "Approaching the hut, the night was starlit "} +{"id": "2006447", "video_name": "13217936-96ea-547b-ad5d-3bd8470b069e", "text": "Several small animals playing with a ball in cartoon style "} +{"id": "3005157", "video_name": "0e6335fa-7046-59e0-a793-ac73ac13c206", "text": "make image move and give a thumbs ip "} +{"id": "2007046", "video_name": "acc6c05e-08bd-5424-b270-824c229a99e4", "text": "woman standing at Mount Rushmore posing for photo, behind the women is a giant alien spaceship, make it scary, green beams, beautiful landscape, floating spaceship, motion 2 "} +{"id": "0003711", "video_name": "422f1ded-d289-5232-bbe9-18d27b44c48a", "text": "a person looks like a Garou from the anime One Punchman standing with his back to us from the rain on a warm sunny cloudy day "} +{"id": "3004692", "video_name": "0f0c8f3b-d1aa-5594-8a4c-bf1c73a8041e", "text": "Grateful and triumphant, Lily girl and Sam boy returned to their village, bringing with them the rejuvenated crystal ball. "} +{"id": "3003817", "video_name": "668fabef-20e5-589f-9aa0-d9b28270e65e", "text": "anime girl dancing, beautiful, blue yes, looking at viewer, bikini "} +{"id": "7003286", "video_name": "d1f5f22d-71c8-52ec-8682-b34f630792ef", "text": "peter from family guy eating spaghetti "} +{"id": "6002983", "video_name": "29ea1c2a-1486-5750-b22d-c6018895fb97", "text": "2D Disney pixar style video of a white and brown shih tzu sitting on a bench in a square with trees and colorful balloons in the background "} +{"id": "0004102", "video_name": "033bcac9-25db-5c64-8c18-719552d92d1f", "text": "the world embracing technology and AI and robots and automation motion 9 "} +{"id": "3004969", "video_name": "95eeb902-a087-57e9-b579-13baaf841aaf", "text": "Cinematographic photograph of a mother washing clothes, medium shot "} +{"id": "8001052", "video_name": "988373d3-d040-5384-9909-7c2f98a0443f", "text": "he acted in films like Saira Narasimha Reddy, Acharya, Godfather, Waltheru Veeraiya and Bhola Shankar. "} +{"id": "0006244", "video_name": "290f1f17-573a-55c9-80db-17f24a5103fa", "text": "frog wall painting becoming real giant frog "} +{"id": "7002042", "video_name": "b0ddebed-7fb6-5ee5-b9db-574d05e10fb7", "text": "A man with piercing, lively eyes is shifting his head, causing his hair to move dramatically. "} +{"id": "2007490", "video_name": "3f280e6d-ce36-517a-8068-a5cfa09a9f9f", "text": "video of doctor attending to patient "} +{"id": "0003844", "video_name": "44731de4-bfd6-548f-9be8-88ebdabd48ea", "text": "scary face of Ronald McDonald talking front view "} +{"id": "6002503", "video_name": "172cf201-4067-5391-8c82-19c245ba4720", "text": "man seeing the stars at night time "} +{"id": "6002082", "video_name": "cc89e7c8-a47c-59b9-abda-d53619646885", "text": "Describe a challenge or obstacle that Anitha and Vikram face during their journey to find the singing bird. How do they overcome it? "} +{"id": "2004748", "video_name": "b779b535-0e3a-5b59-99ea-86569f494d50", "text": "an old tv playin static in 4k "} +{"id": "2005807", "video_name": "ce8701bd-f12a-5995-a032-6e9c9654ac78", "text": "Once upon a time, in a colorful world filled with joy and wonder, there was a group of friendly animals who lived in the enchanting Alphabet Forest. Each animal represented a letter of the English alphabet, and they all loved to learn and have fun. "} +{"id": "6004200", "video_name": "f630804d-a3ac-5645-b296-7134734ea324", "text": "a lovely cat sleeping over a desk "} +{"id": "0006879", "video_name": "34a6584b-6ee2-567e-b46a-84e8fa62ebf2", "text": "lord and savior jeb bush trump flag handshake "} +{"id": "2006708", "video_name": "ba4985ec-6f05-5861-8e47-7a49e50cc1cd", "text": "The dwarves from the cartoon Shrek carry Snow White in a transparent coffin "} +{"id": "3004624", "video_name": "0f524107-0a8d-52c5-b660-285081151d1d", "text": "an elephant on a deserted island, stuck in loose rocks, and monkeys help him get out Message: elephant (Font: MODERN) "} +{"id": "0004330", "video_name": "074466cd-0e71-5424-a1ca-ca9d48a87907", "text": "Oliver and Sparky sitting with a family of rabbits, enjoying a tea party with treats and colorful teacups. "} +{"id": "2007462", "video_name": "524b3770-219e-5f82-b9ab-f991bb18dc52", "text": "modern woman frosting a cake in a vintage kitchen wearing red apron "} +{"id": "4002274", "video_name": "b36d54ad-b8bd-5fd4-92e5-308621cb472d", "text": "An Arab singer stands on stage and sings "} +{"id": "5001076", "video_name": "3d24be6b-574b-50c4-9806-502a9d74734c", "text": "A colony on Mars, with a bustling human settlement and advanced infrastructure, as a sleek space rocket departs for Earth, the Martian horizon bathed in the warm glow of the setting sun, capturing the spirit of human colonization on another planet, Illustration, digital art "} +{"id": "2003046", "video_name": "a4540af6-1f5f-5af9-808d-0c6bde9bc0f6", "text": "A fire engine from germany with blue lights that flash "} +{"id": "8002657", "video_name": "1a11383d-17ec-5461-aaf9-6a8154ad261b", "text": "view from inside car, man sitting in drivers sear seen from behind, city street outside, driving "} +{"id": "0004703", "video_name": "0d97fd5e-c8e3-5d7a-8917-066b585a251e", "text": "In bustling city life, a young woman named Anya resides. Amidst skyscrapers, she stands as a beacon of hope. "} +{"id": "7003055", "video_name": "e318066f-f3f1-5f16-a0ef-f1736c6c8d9d", "text": "silver star falling on the ground, huge words of STARLA floating "} +{"id": "3005550", "video_name": "353fa16d-1146-5579-a0ae-4fe67c7ed1c8", "text": "film cat and dog in the fighting ring "} +{"id": "7002002", "video_name": "dfb8b2b9-652f-57cd-bb38-468350c90e90", "text": "animated, retro 80s, red creepy back hoe, construction yard, grave yard, spike wheel "} +{"id": "0004383", "video_name": "080c79d8-b602-5848-8bb7-cead82986480", "text": "a clocks that goes back in time "} +{"id": "0003285", "video_name": "3ae484cf-0a89-5293-a616-1b5909eaecf3", "text": "shapes of human walking out of a large cave filled with fire "} +{"id": "8003647", "video_name": "6e20ed63-d2f5-5eee-875c-1e219cd9c0f4", "text": "drone view, Flying, 50 feet altitude, wind, realistic, surreal, looking down, wheat fields, 4k, very wide, movie, sunlight, high resolution "} +{"id": "7003468", "video_name": "6a9c7336-58d3-57d0-969f-79a4878be2ee", "text": "girl Portrait cinema beautiful light drawing "} +{"id": "0004778", "video_name": "0f0c6715-3607-517d-98c1-14ad06428291", "text": "The shuddering stops as the derelict UFO explores the lush green planet of Eldoria, Master Goblin Pongcare at the controls and while fairy aerial excitedly watches. Our rapid descent slows to a gentle glide. Claude sees Edlinarians in sleek silver uniforms gesturing from gleaming towers, guiding our ship to a safe landing. "} +{"id": "1003998", "video_name": "4a118fc4-1a33-55cb-a41b-21efaca59df6", "text": "Corgi in space helmet floating among stars happy "} +{"id": "0005566", "video_name": "1d0c6870-8c8d-5586-9def-a2fd47991081", "text": "Show Stingray and Starfish holding hands for courage as they venture inside. "} +{"id": "6002554", "video_name": "8078c275-e8d7-5d55-b0bd-7df1985de68d", "text": "black and tan miniature dachshund Message: HUNTER (Font: MODERN) "} +{"id": "6004324", "video_name": "5cbdbeaa-7e39-54a4-b89b-48ba497a2400", "text": "The tiger, eager to demonstrate his power, "} +{"id": "1003271", "video_name": "3c37ba0a-cab7-5853-b198-119538de70b5", "text": "old London, Victorian outfit, , in the steampunk style "} +{"id": "0005479", "video_name": "1b73a275-0ffe-5539-ac6d-079982bb663f", "text": "vintage black and white zoom in to a vintage robot gesturing and talking, in the background a megacity with flying vehicles "} +{"id": "8002347", "video_name": "658cb2c7-ee1b-5344-ab93-dab9b21bcb65", "text": "Funny 2D animation of a cat "} +{"id": "4003253", "video_name": "f0c211b2-fa08-52c2-bf6e-b679c57d6993", "text": "a woman is singing at a microphone in a diner, in the style of olivier valsecchi, 32k uhd, marc simonetti, harlem renaissance, spectacular backdrops, , lively tavern scenes "} +{"id": "2004152", "video_name": "52151834-6735-5606-b2aa-ff955f4a3da1", "text": "Talent Engines finds happ y lawyers "} +{"id": "3003483", "video_name": "8224d9c7-3896-5267-b960-d045e1d61017", "text": "The waterfall rumbled, and the little bear Mumu felt very novel. Suddenly, a group of elves jumped out from behind the tree and among the flowers and leaves. They greeted Mumu the little bear with a smile. "} +{"id": "2007041", "video_name": "50065289-8a49-5e95-84d4-f365de528b4e", "text": "The moral of this story is that we should always strive to help others in need, even if it means going out of our way to do so. Every small act of kindness can make a big difference in someone\u2019s life. "} +{"id": "3004919", "video_name": "6c28a69d-e166-5da9-a360-c2452cc56029", "text": "huge lord shiva looking at a tiny boy, fog all around "} +{"id": "8003974", "video_name": "75904a96-93e5-504e-b1d6-a56073fe89d9", "text": "1954 american newsreel about Tartaria ,skyscrapers "} +{"id": "3004563", "video_name": "3b9d10d0-4096-526d-b939-95a85e6ec1dc", "text": "a man running in fear , background moving, 4k resolution, hyper realistic "} +{"id": "8001463", "video_name": "204cec97-9587-503c-81ab-66eafc1a9d76", "text": "A young and cute Japanese woman is walking happily and lightly on the Togetsukyo Bridge in Arashiyama, Kyoto during late autumn "} +{"id": "5001280", "video_name": "71ec57ad-3ef2-58a8-ac3a-ff6ce29ba17f", "text": "A flash of lightning illuminates the scene, revealing a path leading through the storm. "} +{"id": "3005452", "video_name": "0255ee5b-2540-5ea2-8fb5-27dbb70c5072", "text": "very realistic green goblin is looking in front, at the background is nightly forest 4K "} +{"id": "8001204", "video_name": "b6403c95-1995-5a30-959d-6cec65b8e685", "text": "Monkey running on a football field "} +{"id": "2003864", "video_name": "227f16bf-c133-587d-b4a7-7f9c90fd2db4", "text": "1000 pigeons flying from the ground to the sky, desert, white sand, sunshine, Tarifa desert "} +{"id": "2005148", "video_name": "fdb79311-84b7-5132-a8c3-f1784b23f163", "text": "the madhatter performing cartwheels Message: We are all mad here (Font: COMICS) "} +{"id": "2004760", "video_name": "89e22f07-7977-5b4c-895d-0b41882b54f2", "text": "ahuman brain, cute, wearing a christmas hat in a quiz show, making questions to people "} +{"id": "1003865", "video_name": "4740137d-ab1a-58e7-b7c4-ed7044614519", "text": "Shirtless Toby maguire fighting doctor strange. Dark room. Blue light. Cinematic. HD "} +{"id": "2003921", "video_name": "cc0c19fb-085a-5f70-a77f-43b4bcf6785c", "text": "an analog color photograph a 50ies diner, in detroid, wide shot, outside, film grain, in the style of anselm adams, mint and pink colorscheme "} +{"id": "4003539", "video_name": "d9fd5635-9852-5ec9-b2b0-1ef09c65f606", "text": "a faceless abstract man sitting in middle of infinite dark space. in the next scene he snaps his finger and all the dark space transforms into greenery meadow and beautiful vast landscape "} +{"id": "0004482", "video_name": "09b8a1e6-8ccf-5f90-b3b7-4b745a9c1619", "text": "a green snake biting the screen leaving everything dark "} +{"id": "2007852", "video_name": "3790b0da-9939-5697-9346-2ee30c327ee4", "text": "a mountain view Message: carpem diem (Font: MODERN) "} +{"id": "6002718", "video_name": "60055d9c-b636-5dad-84b5-eb88cb183a3d", "text": "man standing, fire burning, camera moving. "} +{"id": "0003493", "video_name": "3e850ab5-57c5-58fc-9d5e-86d0be605ad5", "text": "a rotating 3d vortex, with 3d colorful question marks in the vortex "} +{"id": "2004739", "video_name": "2f392977-3dc8-586e-838e-e5e2a51733e7", "text": "Create an image of a biblical character called Noah. in the image he will be hearing the voice of God. "} +{"id": "6002092", "video_name": "7819dd43-03a7-5a17-9b1e-a13d38eec6e9", "text": "The Little Prince and the Butterfly "} +{"id": "8002081", "video_name": "5d1b51fd-4ee8-55ab-b9af-2592004dd36e", "text": "young guy walking through the city with his back turned while listening to music through his headphones. it is raining and there is traffic of cars and people on the street. american comic book style. anime style "} +{"id": "6003280", "video_name": "089326af-81ab-5ccc-8b9d-6045b27238f3", "text": "spaceship blasting off, pastel, sunset, clouds, beautiful "} +{"id": "0005050", "video_name": "13c7b389-15f3-5909-9d53-7a02a3c67d2b", "text": "video montage of valorant clips 1 minute long "} +{"id": "0004332", "video_name": "07499428-3b9c-5727-bcee-6d8277df45a4", "text": "charlize theron walking with bikini in sidewalk epcot center "} +{"id": "4003407", "video_name": "3c1a56c7-3a13-57e4-8e2a-9c52c4a9a014", "text": "passangers airplane takes off and flying "} +{"id": "8003191", "video_name": "75ae36ba-6e25-523c-9184-fa7e102121ae", "text": "kharkov war 90s , cinematic , photography , realistic "} +{"id": "8003635", "video_name": "d8d9b087-6ffb-592e-a5a1-e25fde613348", "text": "The huge durian shell has four wheels and Windows and looks like a car that can move "} +{"id": "6003084", "video_name": "e8ab193d-b369-5a64-a68f-e90e3f5c93b6", "text": "elon musk in space with an albanian flag "} +{"id": "0003226", "video_name": "3999de4e-d574-58d9-8130-58e9dab97f23", "text": "show how thunder and lightning strike from a window with a wooden wall "} +{"id": "5001943", "video_name": "46d38713-8941-5f03-aaf8-62d22615b95c", "text": "A fox runs along a forest path and meets Johnny depp "} +{"id": "2004951", "video_name": "037f187f-7d31-52e2-bd72-a67532fce3f7", "text": "In the early morning forest, the sunlight penetrates the sparse leaves and shines on the lake. A small boat floats leisurely on the water. The hull is made of dark wood and is slightly shiny. The boat is about six feet long and only wide enough to accommodate two people. The sail is made of light canvas, swollen by the breeze, and sways slightly with the direction of the wind. "} +{"id": "3003655", "video_name": "7a4286a3-a265-55e3-b061-1f105839c321", "text": "deer riding on a horse, chasing a man through the forest "} +{"id": "2004123", "video_name": "6b8dbed1-d7a7-5ad9-a492-537e0eee3926", "text": "wideshotThe camera captures the entire boxing ring, revealing the boy in one corner, gloves on, and a determined look on his face. "} +{"id": "1006919", "video_name": "7e7a6bc8-1d3b-516b-8db9-68d6af114aca", "text": "The car takes actions based on the decisions "} +{"id": "7002823", "video_name": "6864198b-0293-566d-bbd5-2782872cc1b8", "text": "a hungry looking old man with a purple funny hat split into 6 different images, kodak portait 800 "} +{"id": "2007682", "video_name": "0aa2484d-53e4-57bf-a4f2-2be5c5eb8ace", "text": "the isro rocket has to land on venus planet "} +{"id": "6003094", "video_name": "a2c87319-c6e4-51e6-aac0-eab5817bd5b0", "text": "time lapse camera movement megaphone speaking "} +{"id": "0003210", "video_name": "394b2531-e352-5564-af60-b2aac674328e", "text": "1960s movie of one man flying lining over giant purple crystal human head over the ocean floating mountain "} +{"id": "1003502", "video_name": "40c1df15-4a5b-589f-99ee-fbddb6c1cfd3", "text": "The skyblue color clouds split horizontally, dividing into two halves. "} +{"id": "8002507", "video_name": "55629d81-d163-557b-8a4f-b83dac5db80f", "text": "Before the shattered remnants of a Gaza life, Jesus manifests as the rider on the white horse, His cloak stained with the blood of sacrifice. His gaze pierces through the veil of time, a vision from Revelation that heralds the ultimate reckoning. With Him, the Book of Life is opened, and He calls forth names, His promise of salvation as real as the ruins around Him. "} +{"id": "3006428", "video_name": "e08f4615-b584-5845-8854-4085b8b50d44", "text": "little boy walking in supermarket and taking fruits from the shelf "} +{"id": "2003241", "video_name": "75329d02-e16b-5177-9f52-0244b449d005", "text": "Jesus Christ caught on Camera zoom in Massive Alfred Stieglitz grainy black and white 1900s "} +{"id": "2005219", "video_name": "b39437f5-54c5-5c1d-9a17-662f002d70f7", "text": "a little mermaid in sea with fishes moving happily well dressed clear face "} +{"id": "0003198", "video_name": "391ec397-fc4e-5762-bbeb-1d8a7ac79e42", "text": "Regalia is a subgenre of plugg type beats that is characterized by their use of orchestral sounds.\nThese beats often have a regal and majestic feel to them, and often make use of orchestral and choral samples to create their sound. The instruments used in these beats are often very grand and powerful sounding, and often include horns, strings, and percussion. The drums in these beats are often very driving and have a lot of energy to them, which helps to create an overall feeling of grandeur. "} +{"id": "3003828", "video_name": "a445fa7b-c767-56a3-b7e2-4327bb091477", "text": "Michael Jackson has a robot in the park "} +{"id": "4003660", "video_name": "7bb8fdf8-31fc-5123-a4b9-3bda21a3348e", "text": "Create a vivid and concise description of a seed magically growing into a fully grown tree within the span of just three seconds. Capture the mesmerizing and rapid transformation, emphasizing the key stages of growth and the burst of life unfolding before your eyes. "} +{"id": "2004326", "video_name": "1be99b54-dc15-5487-80dc-4cb3320b4ecd", "text": "The sky flashed scarily, disney style, wide shot 16:9 "} +{"id": "3003180", "video_name": "6b4146cc-cca2-568d-9862-1819b0718129", "text": "create an image of spirit fire burning within the heart "} +{"id": "0005488", "video_name": "1bb31a5a-b92e-5987-9f07-100d9074e925", "text": "But the eye motif itself has a much deeper history "} +{"id": "3006355", "video_name": "38a976a5-8dd1-5786-b91e-bc8dfb1db5ae", "text": "James webb, observing Mars through a telescope "} +{"id": "1006225", "video_name": "722c2326-5754-5c03-a9aa-0d21759dbdaa", "text": "nightmarish scene of screams and chaos "} +{"id": "5001248", "video_name": "a50f7ff4-03fd-52c8-92b9-97a00a212d1a", "text": "A pair of people are passing through a transparent glass tunnel, with an overhead drone view of the mysterious, eerie atmosphere of the image "} +{"id": "6002530", "video_name": "2ec063b5-0336-5ebe-b716-0367e1255b7c", "text": "A scientist is doing mechanical experiments "} +{"id": "3003913", "video_name": "71dba63d-b5e5-5a76-a1e7-2e4495d10d50", "text": "a cheerful man walks through the thicket of the forest "} +{"id": "8001991", "video_name": "2ff8c714-1fd9-54cb-9715-b5b72654c0ae", "text": "imagine a car racing on a snowy mountain with fire on wheels "} +{"id": "4003490", "video_name": "e595f466-8324-58a9-aaa3-176461ce5854", "text": "create dark animation : The grimace of my interior, he smiled and mock "} +{"id": "8003788", "video_name": "300b90bf-1bc1-532d-b10b-8dbf13feaa53", "text": "d day 1944 second world war "} +{"id": "2007881", "video_name": "cc36b330-1a15-5379-9f02-65ec61a7d0a3", "text": "a cinematic film still of a breaching whale, falling down into the water, splashes, sea foam "} +{"id": "6004184", "video_name": "d6002538-44a9-5bf1-87a1-c5624459d50e", "text": "a brown haired, bearded man waking up in the morning, stretching, and then walking to the coffee machine in his kitchen to pour a mug of coffee before walking into his office to log into his computer and begin posting something on LinkedIn "} +{"id": "2006345", "video_name": "51c0113d-04eb-556e-b1a2-bb7272e0bcd5", "text": "A happy Indian boy observes a green forest with his binoculars. A deer family can be seen in a far way. High resolution "} +{"id": "0005696", "video_name": "1f94fd75-47c5-55c6-aa51-b9e4812e9176", "text": "an image ofIn the heart of downtown Toronto, a vibrant and diverse city in Canada, there was a quaint neighborhood known as Brookside. It was a place where families had lived for generations, and the streets were lined with charming houses and friendly neighbors "} +{"id": "7004648", "video_name": "e81ca800-dde7-5a54-a18e-8d81f0a40a23", "text": "Space capsule sending love notes to earth, in the Style of Norman Rockwell "} +{"id": "6003648", "video_name": "2325032e-a25e-51fb-9596-49bf48a4ee8d", "text": "a boy is climbing the beanstalk "} +{"id": "2007173", "video_name": "82870589-5713-541b-a1d6-427f91c9042d", "text": "3d printer printing a happy birthday meka "} +{"id": "1005673", "video_name": "6838eb62-f3ae-5338-b77c-661e7a2f344b", "text": "Background blur, smooth transitions, and laughter Message: 1 Attachment "} +{"id": "0005946", "video_name": "23c4cfca-73c2-588a-bb5b-395367318cd3", "text": "a video of a giant blue butterfly of 200 metters in a city, flying ver beutifully "} +{"id": "2003318", "video_name": "f21bfd53-603c-5df1-880f-94504d8f4e35", "text": "change the face to a different man and add abstract oil paintings and graffiti "} +{"id": "0005499", "video_name": "1be05070-fec9-50a0-ad2b-3dd8177a6a3e", "text": "A cup of milk tea that moves, "} +{"id": "0006768", "video_name": "32b3e1d1-fc24-5ccc-ab3e-50ed5da2b5ba", "text": "a copelan prays in a forest trench against the backdrop of an explosion at dusk, side view "} +{"id": "5001619", "video_name": "9f1303ef-7331-5099-a5d3-12f9eeb63836", "text": "man standing up and walking away,Generate a black and minimalist scene featuring a stoic figure imparting wisdom in a serene setting.The image should evoke a sense of quiet contemplation and convey the essence of around knowledge and tranquility. "} +{"id": "0006908", "video_name": "35292154-7787-5a6d-a844-0412c6bd9346", "text": "a cat news reporter talking about the weather "} +{"id": "7004223", "video_name": "3a04b41f-80c6-5b7e-9580-1fb513e267ca", "text": "ceiling fan in a green forest hanging on a tree "} +{"id": "3005126", "video_name": "94a26618-c2e2-59c2-91a4-889c62356f0d", "text": "a boy dancing with a Pepsi bottle "} +{"id": "6003302", "video_name": "22759ef4-beec-555d-8aa3-4bd16cfb43a0", "text": "a masked man handing food to a man at home "} +{"id": "7004351", "video_name": "54d647c4-ae2b-54a0-becc-a69d63fe7c09", "text": "wet jungle move left to right "} +{"id": "1003449", "video_name": "3fe78b7f-f6e5-5509-9949-a51512216233", "text": "A giant Dorito playing a electric guitar at a concert "} +{"id": "5001466", "video_name": "a0be8778-e065-5b0e-9956-f7d9c71e35a5", "text": "a charging lion fearless against an army "} +{"id": "0004025", "video_name": "01bca16d-4a3a-58e9-b2ef-21b7865be8da", "text": "figures in dark waves black and white film 1900s "} +{"id": "0005284", "video_name": "17c5a63b-1e29-5e22-b66d-1a9a7962d22c", "text": "orbital revolution of the solar system "} +{"id": "1004562", "video_name": "54bc06fc-a340-5d8a-959c-65598baedd7d", "text": "beautifull sky with clouds, full of happines Message: Still (Font: MODERN) "} +{"id": "8001790", "video_name": "0bdd3921-9c1c-5906-9bcf-133c1ca599d6", "text": "a heart of gold coming out of fire, 8k "} +{"id": "3006881", "video_name": "58761c7d-f29a-5f49-ab1e-6573446323a2", "text": "EDM concert, full of crowd and color lights Message: VISUAL 45 (Font: BAUHAUS) "} +{"id": "1004192", "video_name": "4d80b692-6999-572d-981b-5fee9dc14d2f", "text": "PAL format. A pattern of a single but effective illusion with separately rotating drag points. "} +{"id": "8003699", "video_name": "691e3aa0-0545-5640-aacd-21609f7308fd", "text": "chinese man driving in a car, ghost hand across him that he thought was a selt belt "} +{"id": "0006926", "video_name": "35693ef9-cfb8-52b5-9844-f9eb4d75edd3", "text": "Create a video showcasing the significant contribution of over 2.5 million Indian troops in World War II. "} +{"id": "1006624", "video_name": "7979e45c-0a7e-50b1-b464-2554c47801e7", "text": "he observed an opening at the top of the Earth. "} +{"id": "2007821", "video_name": "9f717d62-13a7-5a25-af8c-fc23b674bf2a", "text": "sloth attempting to swim through a large container filled with honey. "} +{"id": "0006332", "video_name": "2ac28bc2-77fe-5653-8fbf-58af33460bb3", "text": "a beautiful table lit dinner, with candles and flowers "} +{"id": "6002882", "video_name": "5a469de4-7c2b-55a1-b235-5cb09c735fdc", "text": "a police dancing in front of public "} +{"id": "8001294", "video_name": "b64ecc74-e166-502f-843c-6ed790613702", "text": "Create a video where a bright star flies against the background of the winter night sky "} +{"id": "8003609", "video_name": "66fa4c84-98c2-5eb7-9028-8f566f2e7b57", "text": "ghost inside a wrecked ship, cinematic, realism, details, camera pan in, details, 4k "} +{"id": "6003629", "video_name": "6b64eb26-1189-5528-8602-a68d21a9a82f", "text": "photorealistic extremely bad special effects 1970s science fiction tv show footage intro credits sequence of a space ship moving in space with a space station in the background. The directors and producers appear in in title credits vintage yellow font "} +{"id": "2007720", "video_name": "eb2ed430-d82a-5ce9-aa54-c8ed6e8d3c1c", "text": "There are bubbles in the sea and fish are swimming "} +{"id": "0003036", "video_name": "35ece90b-9e00-5668-93d5-0ac805bc89a2", "text": "sports man eat ice cream in saigon vietnam, sunset hour, 4k, film camera, kodak portra "} +{"id": "6002816", "video_name": "72f140b5-9103-59d9-b272-a4fa21601bad", "text": "a man in an empty office at night coding on his computer with snow outside "} +{"id": "1006924", "video_name": "7e9d2acb-ebb9-5708-8fda-bdd37f8807e6", "text": "lost in the Rhythm to a super fast motion "} +{"id": "0006133", "video_name": "271a04f9-b665-5ad7-9ecf-1cc51886ce9f", "text": "a realistic lowrider wire wheel rotating on a continuous loop, 8K, unreal engine, highly realistic, ultra realistic, highly detailed, ultra detailed "} +{"id": "3003965", "video_name": "e77e648e-7288-55ef-ad9c-867660bba48e", "text": "A montage of man and woman achieving their goals through hard work and dedication "} +{"id": "5001696", "video_name": "7aee70c3-40ad-5abd-98cd-4d0a5f9a9b26", "text": "coronation of ethereal goddess with sword in the rainforest hyperreal 4K cinematic "} +{"id": "1003888", "video_name": "47ae1e2f-fd42-5d56-b73f-07aeee142e55", "text": "a fluffy cat jumping on the table "} +{"id": "3003066", "video_name": "646d685f-678a-53a7-8067-aee16eca8de6", "text": "genarate image of a lion in 3d anitmation in forrest "} +{"id": "1006528", "video_name": "777ea6af-129d-5f84-bf07-9965e4855036", "text": "A video of purple and blue water droplets tangled together "} +{"id": "2006777", "video_name": "bffe5a22-99a2-5b48-a3c3-cd92c2a6c68a", "text": "A brave and intelligent mermaid lives in this deep sea world. "} +{"id": "3006486", "video_name": "1a9754dd-312a-5858-a7bd-711c9f8d3ca7", "text": "The streets of ancient China during the Han Dynasty, bustling with people, birds soaring in the sky, a scene of prosperity and tranquility "} +{"id": "2006601", "video_name": "e30de18a-d452-5178-bf23-e4b119129984", "text": "This theory, however, is often met with skepticism due to the lack of concrete evidence. "} +{"id": "2007349", "video_name": "879a552d-74fb-5ecc-8c1f-d16bc3664fb7", "text": "ghost on the portrait opens eyes and closes, ultra hd "} +{"id": "8002073", "video_name": "1cbc4e8b-0ff8-511c-b0bc-b71c91798df3", "text": "aliens watching space from the secret center, 16 mm, realism, black and white "} +{"id": "6004776", "video_name": "f1b82792-72bc-5a6b-a932-35a8b4386881", "text": "Model a 3D version of the blooming flowers in the forest "} +{"id": "7004871", "video_name": "bd356fb2-97d3-54a4-8dad-4b1b84c4e93a", "text": "a rich guy is shouting for help to save his burning house "} +{"id": "7004842", "video_name": "90a553f9-8746-5fb1-bac5-46e780e7b569", "text": "a man using laptop sitting in building basement, its dark and barely anylight "} +{"id": "5001541", "video_name": "b8e0f6c1-88d4-5a4e-b683-693f319c187f", "text": "hobbit county house in pixel art format and stardew valley video game "} +{"id": "8003982", "video_name": "be7da712-6c80-51b9-9f86-9b02b392a846", "text": "A diverse group of jungle animals, ranging from monkeys swinging in the trees to elephants grazing on the ground, gather in a large clearing. The atmosphere is vibrant with animated conversations, as animals of different species interact with each other. Birds perch on branches, adding to the lively scene "} +{"id": "8003455", "video_name": "2e544c17-ab7b-5f24-85ed-19abfb665aae", "text": "moon fades to black in clear night sky "} +{"id": "7004145", "video_name": "ed7bb378-dcf4-5899-9c99-a5956fddeedb", "text": "what are the advantages of online games play "} +{"id": "4004570", "video_name": "c96bc8ec-faa1-5911-9c30-f70b7abbe93c", "text": "vintage image with warm colours of grandma with her grandchild reading a book. victorian times "} +{"id": "6004468", "video_name": "541c28b0-5dd5-5ea0-b70a-c7809eb5a5b6", "text": "ants swarming over the carcass of a small bird in a forest "} +{"id": "5001875", "video_name": "dc63c2d3-08cc-5165-bd38-2df1d08455ad", "text": "one man is walking in a forest in the style of studio ghibli, surealist light, water on the ground and reflections, unreal engine 5, natural light, sunlight coming from behind the trees, overall view "} +{"id": "8003790", "video_name": "93409c29-bb36-5d3b-8558-2c09a2236a1c", "text": "axe chops into wood and splinters fly "} +{"id": "0003978", "video_name": "00fd02a6-f5f7-5935-b889-cfb1e6bfeacc", "text": "flying island made of dripping lava floating in a cloudy sky fast travelling upward "} +{"id": "0003657", "video_name": "4129912d-ba8e-5839-be40-9aa127c15128", "text": "Flora, a young girl once a sunbeam, now casts icy glances and speaks in chilling riddles. Their games, once playful, take on a sinister air, their laughter echoing with macabre undertones. "} +{"id": "5001139", "video_name": "b3fd8451-053e-5251-93ed-c4d465bcfa70", "text": "A lightning storm raging across the ocean Message: CRYSTALFOCUS.NET (Font: MODERN) "} +{"id": "0005242", "video_name": "1725c6b7-067a-5fde-b3b1-20058f9e7f73", "text": "a Chinese woman Running on the shore on the morning "} +{"id": "3005747", "video_name": "4d1ff175-400f-5406-8a44-94ff6fe455f2", "text": "a train that is moving forward in a beautiful landscape in Japan, with sakura trees, clouds moving to the right and birds flying in the sky, cinematic, realistic "} +{"id": "2003877", "video_name": "531dd131-b438-55e1-9be1-a6d31b67c881", "text": "restaurant Asian food scenery slow motion food cutting vegetables pud thai chilli pepper cutting a lime 8k realistic cinematic panning motion "} +{"id": "1004046", "video_name": "4b116d4b-3f70-551a-9582-8d633d4e7595", "text": "reggae themed Jamaican colours Message: Rasta (Font: MODERN) "} +{"id": "5001328", "video_name": "b69cb0ff-811e-5908-af77-509e6b0a1c0f", "text": "a boy in darkness of night at the forest "} +{"id": "8001818", "video_name": "f79ba5da-9f74-5380-9322-bdd40765822e", "text": "High school girls in jk clothes standing in the pool "} +{"id": "3004529", "video_name": "6302c872-4f53-5dce-9863-5a3195fe42c2", "text": "a png for nuclear power point "} +{"id": "7004150", "video_name": "99e9291a-ae4a-5c21-8c1c-bd14143687a4", "text": "Naruto and Sasuke fight with their iconic jutsu. on this topic create a video of 5 minutes "} +{"id": "0004593", "video_name": "0ba2acad-8089-5a58-9c12-ec3b02e17fcc", "text": "smoke bomb white bright light boom "} +{"id": "1005810", "video_name": "6acdddbc-693c-5ad2-8ccd-c0dc8aed7a8b", "text": "make a video about game DayZ "} +{"id": "2007511", "video_name": "e24857fe-2caa-598b-8111-33e613b203d0", "text": "a serene underwater scene featuring a manatee gracefully swimming amid aquatic plants. "} +{"id": "4003676", "video_name": "98a66a06-3d9c-5cb2-8213-565ecd2e97eb", "text": "Generate an video that captures the essence of continuous progress and dynamic energy. The video should convey a sense of movement and forward momentum, symbolizing innovation and entrepreneurship. The dynamic elements within the video should inspire a feeling of excitement and determination. It should embody a bridge between traditional values and modern aspirations, connecting different worlds while embracing a global perspective. The visual should reflect growth, evolution, and a commitment to excellence, while evoking a sense of unity and purpose. "} +{"id": "4004861", "video_name": "a3d0f85d-e7fa-5801-9477-cd746c5d66fa", "text": "Show a man on a bridge , smoking , wear a hoodie , after rain , in night "} +{"id": "8002701", "video_name": "64605168-57c6-5adc-8e69-52176c7f88ee", "text": "Prophet Muhammad and some companions are sitting in the Garden of Paradise "} +{"id": "6002879", "video_name": "7d3f2c48-c334-5ee0-a875-76b047778827", "text": "man on a space island doing cardio "} +{"id": "0005521", "video_name": "1c378d31-6eec-54a9-a4a4-fdd3433dfb68", "text": "Please generate a video of two young Asian men and women drinking many bottles of beer in a bar.\u201d "} +{"id": "0003372", "video_name": "3c7102d7-3102-51e2-b7a5-acfe58aa9c23", "text": "an animated character playing guitar in fortnite "} +{"id": "3006930", "video_name": "4990a363-ab5a-5507-80ae-2860ceb39505", "text": "Pink lighting loop subway ride graffiti \u201csnows of polaris\u201d smooth cyberpunk. woman inside. "} +{"id": "0003650", "video_name": "40ff6c2a-c509-5296-8bd5-742a15405718", "text": "stuntman wings suit flies through helicopter body "} +{"id": "3006962", "video_name": "14b13e85-b780-5459-9d9e-70c22ed5393c", "text": "Highlight the importance of choosing the right buns. "} +{"id": "4004734", "video_name": "4f3ac50c-cb9e-5c87-94c5-51a035d1bfc1", "text": "1girl, anime visual, portrait of a young black haired girl wearing hoodie sightseeing above the urban city, school rooftop guardrail, cute face by yoh yoshinari, katsura masakazu, dramatic lighting, dynamic pose, dynamic perspective, strong silhouette, ilya kuvshinov, anime cels, 1 8 mm lens, rounded eyes, moody, detailed "} +{"id": "0003834", "video_name": "4445923d-5d8c-5be8-827d-4939be3dae0d", "text": "Man sitting at a sea shore, looking into to the seA at dusk with sun "} +{"id": "4004636", "video_name": "11bc76ce-d7e4-5034-a353-b102743bfdae", "text": "Create an image symbolizing the audience embracing the future. Consider using diverse characters engaging with chatbots or a futuristic cityscape "} +{"id": "6002451", "video_name": "921476a7-3b28-521e-ba8a-ea934e438ab6", "text": "there are many people live in a beautiful world "} +{"id": "0005326", "video_name": "18b8a802-4458-5cea-b998-b4a2b53a2076", "text": "Group of 3 foxes hunting a rabbit in a forrest, 10 seconds long "} +{"id": "0004136", "video_name": "03e3ecfc-3013-5541-b65f-71d30e7051d9", "text": "oceans waves with heart and glitter Message: love (Font: MODERN) "} +{"id": "4003745", "video_name": "52df05d0-1bbf-5e58-98d8-f1f3a9854946", "text": "vision of the future in which artificial intelligence is already widely present in our lives. We see people using intelligent assistants, "} +{"id": "2005611", "video_name": "8f5dfbdd-eb4f-5c71-8950-86d628ac8503", "text": "Zoom in on an exterior window in the wall of a 1932 apartment building "} +{"id": "3006615", "video_name": "b8ca259d-3cee-5ffd-b415-6f42143ab146", "text": "Hypothetical image of depression in humans "} +{"id": "8001617", "video_name": "a567f88d-cc36-5092-9e52-86864e925321", "text": "classroom setting with a few kids raisng their hands to ask the teacher a question, motion 3 "} +{"id": "2004662", "video_name": "f1ae7301-fc1c-5382-89b1-1bd667a5a724", "text": "Visualize Sparky wagging his tail as Lily recalls the magical adventure, leaving a lasting glow of happiness in Meadowville. "} +{"id": "0006975", "video_name": "3614c70d-a749-5eec-b67a-30dbed922cb5", "text": "a dynamic transition and Paytm logo "} +{"id": "4002282", "video_name": "d4cff559-287b-59eb-b369-56a2cbcf2e26", "text": "a portrait of the greek stoic Cleanthes, in the style of film photograph, black and white, film grain, highly detailed, masterpiece, realistic, soft lights, cinematic focus "} +{"id": "4002174", "video_name": "ec6f49fb-7b6d-5d34-8801-260061f5c943", "text": "Cooley the game streamer from YouTube "} +{"id": "4004369", "video_name": "4b881021-395d-5d06-902d-422ef24b10d3", "text": "A rooster crows loudly standing on the tree. The sun rises. (The farmer goes to the field to start working.) "} +{"id": "0004546", "video_name": "0b0d4d7a-ef5f-50b1-8f7f-68d144d7f660", "text": "a video with a flying dog with 30 seconds length "} +{"id": "7003044", "video_name": "9b3938ab-931c-5924-a3bb-8a466da5679a", "text": "a blonde girl lifeguard running on the beach. Full body shot. Photorealistic "} +{"id": "0004758", "video_name": "0ebe92d6-ad35-5025-a6f8-23dcdffa1631", "text": "sitting on the terrace of the rain forest house, 4k video "} +{"id": "5001016", "video_name": "a9ddc2f4-b1a1-57b0-8987-955168576ea1", "text": "An owl is standing next to a rabbit, both laughing together. "} +{"id": "1003999", "video_name": "4a11db5e-9a84-5f00-8f2d-7f56e9c6e341", "text": "Show a cozy forest nestled between two great mountains. "} +{"id": "8003604", "video_name": "4b057e08-36ac-52fe-8d49-85e18871d0a5", "text": "A car exploding due to an IRA car bomb "} +{"id": "4004938", "video_name": "7bcd5b0b-d96f-5bff-9ee6-806e38308539", "text": "In a cyberpunk cityscape, a cyborg fairy hovers gracefully amidst neon lights and holographic billboards, her wings pulsating with glowing circuit patterns. "} +{"id": "6003845", "video_name": "ac65b382-1d99-5b73-b061-b1b56964d2f3", "text": "a man drops a can of paint "} +{"id": "1006029", "video_name": "6ecabaff-baca-5a52-98c9-aa7918736f26", "text": "footage of the soviet russian moon landing, realistic "} +{"id": "2003494", "video_name": "769d6de2-06fe-5ef5-9c58-27b81d6ec174", "text": "mario as a mushroom, eating mushrooms, in a mushroom house "} +{"id": "2004473", "video_name": "33fa3335-91ac-56e7-bcd8-c57775232057", "text": "As you gaze out the wide window of your room in Martinique, the heavy rain falls in the middle of the night, creating a mesmerizing symphony of raindrops on the glass. "} +{"id": "2007352", "video_name": "2528f617-4cf7-5e2d-960c-a64402ee1104", "text": "Space Station Fires Laser Weapons at Unidentified Object Stylized Photo High Quality High Detail Natural Tone Natural Light 4K HDR 3D "} +{"id": "6002204", "video_name": "83a53468-87a1-5f1d-99e6-0be97be244a4", "text": "the girl closes his eyes and moving his hand "} +{"id": "2006592", "video_name": "c3fba55e-eaea-519a-81b2-ed6f7960680e", "text": "realistic looking dreamlike hills with colorful childlike houses and a creepy unsettling smiling person dancing "} +{"id": "2006439", "video_name": "da8ba8b1-ef7e-5ee6-b096-4767a46abd4c", "text": "ravers, dancing in darkness, wearing neon, motion 3 "} +{"id": "2005444", "video_name": "8fe26c4a-bda7-51d2-bca9-ad582bc65451", "text": "College Guy watching the sunset in New York, 4k, Hyperrealistic "} +{"id": "0005097", "video_name": "14b5f44b-4112-5b51-8eb7-4d0fe287658e", "text": "Rowing, water slightly flowing, moving left, ink painting, wooden boat, background still Message: 1 Attachment "} +{"id": "3005581", "video_name": "683d686a-28aa-5c7b-b2a9-a36a122f573c", "text": "weird al yankovic playing accordion in africa with animals in the background "} +{"id": "1005003", "video_name": "5c72bc94-b721-576c-b079-1096a9d4fc28", "text": "1970s arthouse movie footage of a city covered in dust, sand and with a giant volcano, there are many buildings "} +{"id": "1003565", "video_name": "41c6e503-2946-5661-8f44-c8ebeb946d42", "text": "the water flows and the leaves on the trees sway,image:edf382768a95d6da9f8163315ed752e1.jpg "} +{"id": "3004187", "video_name": "a806f945-f8ef-5a44-ab96-5cbe96dadf29", "text": "a koala bear feeding her own baby eating her stool "} +{"id": "8003952", "video_name": "aeb279d2-ce06-5c76-bfde-e4441b2c70ce", "text": "japanese style 2d cartoon of a kid cycling in a beautiful green village. winds moving in the sky. leaves falling "} +{"id": "6003916", "video_name": "09727bd2-907b-50be-868f-096dba742333", "text": "Imran Khan with bikini girl in beach "} +{"id": "6003463", "video_name": "609e3786-d8d4-5daf-aaf7-938e7b499950", "text": "wonderful mouse playing atfayri winter sunset in the woods with a lot of snow and magic colors "} +{"id": "1006324", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "A flying swallowtail butterfly, flower, high resolution, best quality "} +{"id": "2005580", "video_name": "e1d35052-af15-5b17-b20d-592841236b7c", "text": "mighty lion named roared and struggled, but the net only tightened. He realized he was trapped, unable to break free from the snare that held him captive. "} +{"id": "6002216", "video_name": "07b7e002-ed7d-5c23-84cf-609bdd4ba059", "text": "a boy walking in forest Whitaker his father "} +{"id": "0004001", "video_name": "01611c99-8f52-5b8e-82a8-ad389ae1752e", "text": "ram and sita go to mandir "} +{"id": "1004489", "video_name": "5339984b-9b09-5371-9e07-132445fdc387", "text": "white, black, pink, blue, red and yellow colored dial, with fluorescence "} +{"id": "3006152", "video_name": "9320dc15-b36e-5cf5-a34d-3829a16b7ee0", "text": "white gold fish swiming in blue water "} +{"id": "3004974", "video_name": "8245058c-3c33-510d-af28-1ec70ef874d4", "text": "Shrek And Spongebob On Their Honeymoon "} +{"id": "3006500", "video_name": "a7c4f913-a5ca-567f-9c1d-df352e5525f2", "text": "a beutiful english woman talking in front of the london tower in the background "} +{"id": "6003182", "video_name": "6c3b0dcd-8848-551b-a28c-054e420093a6", "text": "blonde ponytail Samus aran from Metroid series, running jumping fighting, loose blue croptop flapping in storm, fast camera zoom pan, technoir scifi cinematic epic battle "} +{"id": "6002893", "video_name": "3087817f-1ed0-5f2c-b6ad-8601a76d584d", "text": "People warmly shaking hands and the love found in them "} +{"id": "0003303", "video_name": "3b4d4c51-a19d-559c-81b6-3074fd3aff87", "text": "a model train driving through a psychedelic, colorful dreamworld "} +{"id": "8001156", "video_name": "ed81b8bd-542b-5cbb-83bb-9619bd476cf2", "text": "a start of a 3d print company "} +{"id": "3004860", "video_name": "e78124f2-f6bd-5e2e-8486-907dc1bb8bda", "text": "Long flowing hair, charming posture, feeling of love, romance, intoxication, starry sky "} +{"id": "4004766", "video_name": "5a769092-6ef4-5105-9d4c-9a24340b35ad", "text": "cyber books flying in zero gravity, yellow and black color scheme "} +{"id": "0006455", "video_name": "2cd408ac-3d1a-5052-b792-62b508f1484b", "text": "Create a video for me on an early spring morning Message: 1 Attachment "} +{"id": "3004082", "video_name": "2181b944-3ab0-534b-a9e2-25bc9cb122ce", "text": "a drone shot of big ben in london on fire at night "} +{"id": "6004289", "video_name": "dd5f10b6-7b29-5400-8ea0-4149b07fe239", "text": "Tarkovsky, curtains fluttering in the wind in home, black and white "} +{"id": "4002275", "video_name": "2dc0d4c2-4aea-5328-833b-1b18c630fd39", "text": "moving clouds, in bright blue sky and then space "} +{"id": "3004179", "video_name": "9d594d92-0fa5-5d97-bd4a-f90ba2c7dd30", "text": "slow standing ninjas. Dynamic camera movement, smooth motion"} +{"id": "4002046", "video_name": "9e1a4257-1fad-5fd2-a76d-6e29d53f55cb", "text": "Queen from Alice in Wonderlan evil and destruction "} +{"id": "4003507", "video_name": "81b1f4d4-668a-5f5f-9342-1d680a7456f6", "text": "white ice cream texture spiral infinite loop, hd render high quality 4k "} +{"id": "7004791", "video_name": "0d612212-867c-5755-824b-b9d14223302f", "text": "jesus christ floating in the sky, clouds shifting in backround, erie aura eminating from figure, hands in a praying possition with head tilted down, blue sky "} +{"id": "7004759", "video_name": "e6441f35-ffe5-5cf9-aebc-8cd3ff10fa26", "text": "a video of a woman smiling zoom slowly by slowly "} +{"id": "1003656", "video_name": "43519f87-a795-5c7f-acef-e6ddfb6db661", "text": "rain falling on the ground, average velocity "} +{"id": "8002726", "video_name": "ab11c31c-243f-546e-9fec-33137d854b31", "text": "girl turning pages and cat starts to sleep "} +{"id": "8003399", "video_name": "512074f8-68aa-51cf-bcfd-b6cbbbf77561", "text": "August Blom\u2019s, Verdens undergang ,Birth of a Nation , raging WWI, The End of the World, apocalyptic desolation are haunting "} +{"id": "4002030", "video_name": "9028c365-8a9b-51d7-8873-2879e8ef9a5c", "text": "very confusing, the twin flame journey is very confusing, cinematic, 4k "} +{"id": "2003202", "video_name": "45e6cd18-c4e7-5813-a488-34ebf9019f86", "text": "2d anime of pretty woman with long blonde hair in 1950s dress walking through a carnival looking sad, sunset with gentle rain falling down "} +{"id": "1003444", "video_name": "3fe03c9a-5694-5d87-afbb-2cdfbd59c819", "text": "thinjing,move slowly his head and eyes "} +{"id": "4002447", "video_name": "dc7fa98c-44e8-52f1-9d5d-607dbeaf220f", "text": "a man in a purple shirt holding a sword, handsome guy in demon slayer art, koyoharu gotouge, hijikata toushirou of gintama, wearing black and purple robes, ufotable studio art style, in dark purple robes, dark purple robes, official character art, screenshot from black clover, hijikata toushirou "} +{"id": "1005380", "video_name": "62e70573-4f53-51a2-bd7d-acc0add67f81", "text": "brown spoiled lemons on a lemon tree branch wide shot. cloudy day "} +{"id": "8003987", "video_name": "50b5d84a-5630-5461-9551-61beb1712e4d", "text": "a pilot shooting down an alien spaceship aliens running,smoke ,action,in 1950 ,black and white,lots of details,action "} +{"id": "6003054", "video_name": "7a755e0b-34ec-5c2f-8992-b378329f42c8", "text": "vines super speed growing over a city "} +{"id": "3005165", "video_name": "3759f4aa-daf7-5fcc-8470-4bf51d333d87", "text": "a young Pokemon Trainer, Ash Ketchum, standing outside his home with Pikachu by his side. pro animation anime style "} +{"id": "8001586", "video_name": "700f2255-f827-5b62-a16d-a446e640a8df", "text": "a plane traveling from Denmark to Ethiopia on a globe "} +{"id": "4003821", "video_name": "be715549-8cce-5729-8f97-1dad788007ca", "text": "robots in a bank suddenly shutdown and eyes turn red "} +{"id": "5001354", "video_name": "16b349b5-ac8b-51e1-aee4-06dd0f1843fd", "text": "a thrilling scene in a comic book "} +{"id": "8001806", "video_name": "3946b37d-b86f-5fa6-b036-91f87bf72879", "text": "An ink illustration of a man walking through a busy city with cars passing by "} +{"id": "3005789", "video_name": "34f94177-2a30-5630-a917-2790afae4023", "text": "Two cute aliens talking in a forest on a planet with red sky "} +{"id": "3003915", "video_name": "ab71821c-fb1c-55f5-a507-7f3646f6896a", "text": "A happy podcaster in a podcast studio "} +{"id": "2005300", "video_name": "e9b1f7ab-8707-5431-a483-35bfc45780fa", "text": "some whiskey bottles and half full glasses on a table, moving in slow motion, photorealistic, BEST QUALITY, BEST RESOLUTION, HDR, 4k, "} +{"id": "1004070", "video_name": "4b7c1ba8-2cc5-5ac2-93a7-36f952b74933", "text": "A detailed photograph of a serious looking spartan warrior looking directly at the camera, standing straight, hands relaxed, square jaws, masculine face, wrinkles, buff looking, wearing a Red with gold armor suite "} +{"id": "1004115", "video_name": "4c3b5ae6-53ba-502f-9464-de7b63876999", "text": "close up Aztec priest eats raw red meat at sunset "} +{"id": "0006049", "video_name": "25c341fa-ce02-5d28-9873-b132f8fba0cb", "text": "a mouth opening to eat strange food "} +{"id": "3006221", "video_name": "f9d098e4-a596-593e-8683-020482a64f29", "text": "new year eve, people are celebrating "} +{"id": "6003501", "video_name": "ccf96389-2c7f-5d79-9157-67141548f603", "text": "captain america wishing happy birthday and singing a happy birthday song "} +{"id": "3004909", "video_name": "c2c152c8-8afd-5762-ba46-5266ac6df160", "text": "16th century dutch ships navigation towards the coast, next to a little peninsula with mountains. hyper realistic 4k "} +{"id": "7003040", "video_name": "00270a8b-16b2-577b-b914-36a2d7bc07ec", "text": "cloud strife from ffvii swinging sword "} +{"id": "7003164", "video_name": "8de13ca2-a6f8-5df2-aef2-90246ff686de", "text": "aerial view of a medieval town overtaken by shadow "} +{"id": "0004653", "video_name": "0cbe107e-eaec-513c-aaaa-e496d19fabd7", "text": "a running person moving with a smile on his face , full of confidence "} +{"id": "4002940", "video_name": "5dff9428-f18f-5aeb-98b3-a864303a5668", "text": "a warrior fighting four fierce monsters, one looked like a lion but had eagle wings, the other looked like a bear and the third looked like a leopard but had 4 heads and four wings, the fourth was very strong and had iron temples, the warrior wins the fight and leaves the four monsters faint "} +{"id": "6004034", "video_name": "fff0b575-5abc-505a-89d0-cf1538dbb760", "text": "orange Asian insurance digital agent on a tesla screen "} +{"id": "1003183", "video_name": "3a8e394e-6eb7-56bb-8095-38ce06f1d050", "text": "a fantasy depiction of a fractal nebula high contrast lots of movement "} +{"id": "0003173", "video_name": "3891363d-9a9c-552f-af5e-b64b439391aa", "text": "close up of a blue bird sitting on a branch in the forest in a rain storm "} +{"id": "7004397", "video_name": "6a28c571-dca2-5bf1-8217-41142315b470", "text": "villagers met gruesome fates, mirroring their nightmares "} +{"id": "4004991", "video_name": "eb176660-1a0d-5c63-b1c2-688537e66695", "text": "Bmw e34, red colour, light moving, high quaility "} +{"id": "3003870", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "beautiful brown skin girl playing outside "} +{"id": "1006457", "video_name": "762ad93c-f41e-5f64-a0ea-90f878366036", "text": "The mysterious shadow in the mirror "} +{"id": "4004102", "video_name": "f0e96684-2cdc-5e89-8d18-12123c3096d6", "text": "100 most influential people in the world. "} +{"id": "0003573", "video_name": "3fc3a101-2c0d-57e0-bdce-2f8ff209edab", "text": "magical shoe back in her possession,princess returned to Eldoria cartoon style . "} +{"id": "4002707", "video_name": "83228562-592c-5a4b-9d7e-b385db0beba7", "text": "A person using a terminal in his phone "} +{"id": "6004888", "video_name": "54dda7f5-c13b-53bb-a1d0-0906edd9ae1b", "text": "Youtuber making soy face youtube thumbnail "} +{"id": "6004907", "video_name": "20e58466-a220-5546-ac84-b823315f5dde", "text": "motion 1, magic wand, harry potter style, 9:16 "} +{"id": "7004202", "video_name": "df8f2163-2e24-574c-9c4c-6f5e39dee268", "text": "a video showing a smart business professional searching for employment. In cartoon style "} +{"id": "4004957", "video_name": "4bf1449d-75ea-5d52-aa07-0b139d570b08", "text": "They all get together and plan to appeal to the tiger to stop hunting animals and they themselves will provide him with one animal a day. "} +{"id": "0005181", "video_name": "16330bbd-27ae-5340-a359-fc644ae97288", "text": "moving clouds, Autos and boats on the see "} +{"id": "8001163", "video_name": "7b35cbe3-d12b-549d-b048-997a2ea9ac81", "text": "Open with a serene pond surrounded by lush greenery and colorful flowers "} +{"id": "2006402", "video_name": "ffac03d4-14f7-5aab-9f50-5cc5d998e17c", "text": "Rigorous safety training minimized risks tied to machinery. "} +{"id": "0003560", "video_name": "3f920123-dd9d-5d08-9933-d527be955caf", "text": "a Cover for a song called grausam "} +{"id": "7003683", "video_name": "a602c094-4509-551a-9b51-b2842833eaf7", "text": "a happy Gorilla walking on haeundae beach with a beer in hand, wearing sunglasses "} +{"id": "6003447", "video_name": "a0e28af0-da93-592c-bd51-d09bcac9bfce", "text": "Make that same box in the image move by rising backwards Message: 1 Attachment "} +{"id": "2003914", "video_name": "303247d5-5699-5b94-85d9-479cb39e5dbe", "text": "a man in the sea hands up with cigarette on one hand "} +{"id": "8003511", "video_name": "683a8acd-b82c-5136-9b80-6f9560e9de1c", "text": "add a heart Message: 1 Attachment "} +{"id": "8001954", "video_name": "8f6ce5d4-20af-5c79-affc-8374f865f590", "text": "people have party at christmas eve "} +{"id": "5001456", "video_name": "e4f9ef1c-a04d-5877-a6e6-e802a18a3aa0", "text": "one men finding something in the room "} +{"id": "7002767", "video_name": "18d88117-33b3-5b7a-bd73-3fc99c6d6c1a", "text": "A serene town under a moonlit sky, two cats with gleaming fur strolling down the quiet streets. "} +{"id": "3005441", "video_name": "8629a47c-63cb-50f4-bc69-f997b99801a3", "text": "Woodlands, forest, nature, serene, beautiful, realistic, cinematic photography, shifting colors "} +{"id": "2006857", "video_name": "dc7b1359-d33f-5c3d-a91d-8ddda3ac3d9e", "text": "A timeline showing the 4.6 billion years ago mark. "} +{"id": "1006601", "video_name": "78f6c795-2932-561d-8952-aa15e60b1bb8", "text": "a man and a woman taking a selfie on a car , realistic, "} +{"id": "8003837", "video_name": "c9f9bede-76b3-5229-bc35-8c4d22d9d8fe", "text": "Cyberpunk woman, futuristic fashion, neon lights, holographic displays, Blade Runner inspiration, subtle enhancements, alien elements, rainy setting, cityscapes, narrative storytelling "} +{"id": "3005520", "video_name": "77c05c55-be81-5350-ac39-3b94e1fdc693", "text": "18 years boy is telling a story in public place ,in a room full lighting "} +{"id": "4003635", "video_name": "44292fcb-38be-50f8-8aad-b8147050a4ce", "text": "In a mesmerizing 4K image, a person shatters in a breathtaking explosion of crystalline fragments, each capturing the intricate dance of light and movement in the moment of its spectacular rupture "} +{"id": "2005046", "video_name": "e2a8151a-2f1b-5c7a-a4db-a6a1e519d7b5", "text": "Kim Kardashian in a sexy outfit "} +{"id": "2007723", "video_name": "e6873bfb-f6b4-54c5-818f-6434dd005e5f", "text": "An animation of the Mona Lisa eating cake "} +{"id": "6004668", "video_name": "56e06a0b-11f5-5396-9b97-c174b1e707b6", "text": "Children playing hockey on the lake "} +{"id": "6002820", "video_name": "9f489070-4b4b-5e0a-ba8c-fdff2cb801ce", "text": "The moon\u2019s face. Circles, checks, paisleys, splashes, kandinsky, Jackson Pollock, Watercolor painting, alice neel, Vance Kelly, Tinga Tinga style "} +{"id": "7004986", "video_name": "2da1156f-2e80-5746-8f95-12ce03590dc8", "text": "Cyberpunk, city streets, men wearing cloaks with a serious face,Across from him stood a woman holding a box "} +{"id": "3003575", "video_name": "89f5673a-1241-5389-a6ad-6c779aaf4794", "text": "brown dog running through potato fields "} +{"id": "8001125", "video_name": "b4269dbc-8f6a-5def-bb63-e970ea2bb6f7", "text": "Two characters talking to each other, father and son, cartoon, 3D, full, HDR, very high resolution, no distortion in the character, enhancement, direct with artificial intelligence technology, no errors, wonderful colors, and everything is good. "} +{"id": "2005615", "video_name": "08189bfb-6eee-5e82-afde-a92d32bc9b63", "text": "an adorable teddy bear playing guitar in the misty forest "} +{"id": "5001721", "video_name": "5e95da88-fbb4-5193-961f-0a16cc90ae11", "text": "man smiling and waving good bye to the camera, gif, kind, wide shot "} +{"id": "3004855", "video_name": "eee98eac-18c5-50cb-b0ad-e852317e6fa2", "text": "the night sky full of stars. a crack forms in the sky. "} +{"id": "5001157", "video_name": "17cd1292-e529-5924-b2f2-f8bcd01390d8", "text": "Soccer player scoring a goal from the penalty spot "} +{"id": "6003633", "video_name": "2d9656b4-8359-542c-b2bd-1bbe287b612c", "text": "a magical fantasy book opening and magical glowing butterflies flying out of it with a dark background "} +{"id": "8001809", "video_name": "c4f1536a-065a-5753-95cf-5ac39b422aa4", "text": "noise of jellyfish devours the earth seas "} +{"id": "2006466", "video_name": "323408c7-c351-50ba-ab69-aae8b3055d91", "text": "siluett with a hoodie. background setting, cyberpunk style "} +{"id": "5001548", "video_name": "39c32136-7f42-5627-a94f-64267ba3736b", "text": "1960s creepy human puppet character in a creepy woods with a sun face a moon man "} +{"id": "7002859", "video_name": "7177aace-82a2-5fb7-acd5-5147ca17697f", "text": "Sequence of 6 separate images that together form a GIF animation, White woman, green eyes, long brown hair, dancing, kawaii, sticker, coutout, vector, outline, white background, kawaii, sticker, coutout, vector, outline, white background "} +{"id": "2006430", "video_name": "fcd5acf0-f9f8-5de0-b24b-2a21e49eb3bd", "text": "a dreamy mountain made with diamond "} +{"id": "8001838", "video_name": "b148fb63-1aaa-557f-988c-d6939c9409a2", "text": "Encourage viewers to stay tuned to learn about the science behind this common question. "} +{"id": "4004306", "video_name": "b97d2c77-b9b1-5210-95a2-fc0d7f8ae30e", "text": "2 women doing cage fight with cinematic 4k video "} +{"id": "1005183", "video_name": "5f5afc05-de42-5f00-b445-6558eb6f08a2", "text": "Generate a video of a Chinese guy jumping out of a plane and skydiving "} +{"id": "6004129", "video_name": "61e89f13-b9d4-58b4-be93-508e7e40dd57", "text": "oort reminded force of plasma clock "} +{"id": "7004095", "video_name": "466480c8-d428-5b3b-a5bd-d91e4dfe2b16", "text": "whimsical, green psychedelic, etheral Message: 1 Attachment "} +{"id": "0006086", "video_name": "2668ef67-ccd9-51b6-8d08-f4baaef5fdec", "text": "a monkey on hawji in a bathing suit. 4 k video and 16:9 resolution "} +{"id": "2005042", "video_name": "8f6dcd7e-1580-5b94-b38f-dc82970e88d4", "text": "a realistic video that shows a boy, from behind, with light skin and an illuminated aura, looking up at the night veil with red stars "} +{"id": "5001202", "video_name": "acc49f44-42c1-527c-92c5-485736957c1a", "text": "A dog playing with its ball on the beach "} +{"id": "0003078", "video_name": "3693bd0d-58c8-55ee-8248-893269d71606", "text": "Cthulhu rises above a heavy metal festival in a northern German swamp, documentary footage, out of focus, shot with iPhone 12 "} +{"id": "4003226", "video_name": "52c2973a-042e-5bc8-adf5-d6e89ae1334b", "text": "Warcraft Lich King going under the fonk "} +{"id": "2004122", "video_name": "7b643919-4d46-5921-87c2-b4af95090050", "text": "Show a moment of tension between the warriors three mighty warriors dressed in the traditional attire of Greece, Cyprus, and Turkey as they gaze upon the baklava trophy, highlighting their determined facial expressions while adorned in their authentic traditional garments. "} +{"id": "2005573", "video_name": "01230f81-ae6b-5804-b690-6f7874452291", "text": "a series of four videos showing the night sky "} +{"id": "7004599", "video_name": "dae734f7-2d4e-54b0-ae8b-a9dda62dff12", "text": "Lily a cute little girl with golden curl hair and blue eyes wearing pink dress fill with creases scooped up the little jaguar and cradled it in her arms. "} +{"id": "3006131", "video_name": "d442d367-dc3c-5e5a-8606-509c6f1a41ac", "text": "rompt: heavy snowflakes swirling, faint silhouettes of san "} +{"id": "2006480", "video_name": "3b0b958f-8786-5172-add8-9ebd00a4e156", "text": "blurry yellowish spots appears and recover the whole picture "} +{"id": "2007012", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI and tommy fury standing in the middle of the ring in front of a crowd of 20000 people in a bboxing arena in an enchanting atmosphere hugging each other "} +{"id": "7003419", "video_name": "8c13159a-29dd-570c-ad09-dcbcfbe6f5ee", "text": "Space pizza with radioactive glowing sauce and neon juice, sfx, uhd, udr, 32K "} +{"id": "6004481", "video_name": "237e1a0b-cb00-55ae-a557-8b20a1354131", "text": "rave in the forest everybody dance Message: panda (Font: MODERN) "} +{"id": "2005460", "video_name": "68951379-6716-57a6-8df4-937674c48775", "text": "a graphic of small parrots arranged in a heart shape "} +{"id": "3004022", "video_name": "43864969-c12b-50af-8b66-664f74492ff7", "text": "Set the stage in a magnificent kingdom ruled by Prince Alexander, known for his kindness "} +{"id": "8003431", "video_name": "55353a45-f911-5c5f-8f5b-37c2cdd8fcef", "text": "With purple beautiful dress on , Talking to a Blue jay bird "} +{"id": "5001974", "video_name": "d011ee32-6a58-5478-849a-5b8eb415ac56", "text": "Walk in the scary Ghost Castle "} +{"id": "3003139", "video_name": "76f5e07f-eed8-5253-9b1f-0335d4a2c762", "text": "Ancient Greek philosophers against the background of ancient Greek ruins "} +{"id": "1005628", "video_name": "6775b16b-689f-5b76-b13e-043be8120c8d", "text": "kid in room with led strips accross the room in a realist style "} +{"id": "1006549", "video_name": "77f72971-2c8f-52e5-ba86-481e1a76f626", "text": "Diva Lilo, divine in every way, Her elegance and beauty stole the hearts that day. "} +{"id": "1005726", "video_name": "69521d2c-de5f-559a-ac7b-aefc3b459033", "text": "lonely resident with torn clothes on a wall street in the rain, deep photography, crushed blacks, depth of field, black and white photo, shadows, natural light, by zer0pixels, behind the setup with several computers connected, with their setup with forex, exchange, realistic, game, headset, forex graphics wallpaper, trading, stock exchange, night, graphics Message: 1 Attachment "} +{"id": "4002160", "video_name": "7ac3deac-73c9-552d-a656-b09338b6cf07", "text": "A serene mountain landscape bathed in the soft hues of dawn, inviting you to embrace a new day filled with possibilities. "} +{"id": "6002845", "video_name": "79a7fbc1-9824-57d5-bff6-22408928f913", "text": "grainy 8mm footage of a psychedelic vision of an eldritch horror "} +{"id": "4002821", "video_name": "6380e8d5-45da-57c1-83c9-9b494a8bf6d4", "text": "terminator t800, wearing sun glasses with one hand, cinematic shot, anaglyph 3d "} +{"id": "1005551", "video_name": "663415f8-eeed-53d8-b244-0fdb8d125bd5", "text": "A faceless man is standing and rotating in an empty room "} +{"id": "3003429", "video_name": "1115adb6-e572-550b-804d-ee27b140a791", "text": "Girl and her grandfather strolling through the street, as they walk the camera pan to top "} +{"id": "0004983", "video_name": "12beac24-1b2f-56fd-a0b4-4d771ccdc2b5", "text": "a stormtroop is fighting with a alien robot "} +{"id": "4004608", "video_name": "d68b8dfe-62e6-5fa6-be21-f11a102303f0", "text": "animated squirrel playing with other animals like deer , bear, lion,etc in a magical forest "} +{"id": "2007583", "video_name": "86e38e8c-c3e1-5102-a093-59b0d2f3e9ad", "text": "A father saying something her young boy "} +{"id": "7004822", "video_name": "db28e655-154e-52d2-bf71-26523f15cd3a", "text": "a man riding a motorcycle on the highways to the ultra futuristic city with neon lights in the style of bladerunner 2049 part 2 "} +{"id": "3003838", "video_name": "ff69cb4b-51fd-5c47-b38c-6628bd11c80a", "text": "disheveled little girl looking at herself in the mirror with comb in hand, straight hair, red dress,4k "} +{"id": "1004442", "video_name": "522afcee-648d-5603-9c90-ef6b9bd531a7", "text": "1750s witches reading portraits photography red and white garments barry lyndon film "} +{"id": "7003434", "video_name": "2fbbc2e5-d1a2-5188-b9b3-fb303fe52b5f", "text": "roman bath culture in the days of emperor Augustus, feast with people enjoying "} +{"id": "4003170", "video_name": "da0811f0-74c1-5924-920e-33dc9a511a1e", "text": "bunch of people running towards a bueatiful girl who is posing,minimalist style, time, dynamic video, movie scenes "} +{"id": "0005590", "video_name": "1d9433e1-1ab1-59ce-b213-f333458bbdf1", "text": "lord Siva was meditating and weather is changed suddenly a snake is coming but snake does not bite lord Siva .The snake was protected the lord Siva .\n\nWho was lord Siva ?\nLord Siva is a famous god of Hinduism "} +{"id": "4003089", "video_name": "9e78c6dd-118f-5119-b3c1-e30e7669d460", "text": "Once upon a time there was a little lizard named Lenny. He lived in an enchanted forest, surrounded by magical creatures and fantastic beings. Since he was just an egg, Lenny has dreamed of becoming a huge adult Godzilla, with incredible powers and the ability to protect the forest. "} +{"id": "6002783", "video_name": "9314f5b9-51c3-52b0-afce-bbfa5628ad4f", "text": "in te car the dashboard turns on when the gas tank is becoming low "} +{"id": "2003937", "video_name": "d88062e8-1066-5214-9d09-cde3ad21c78d", "text": "cute kid wearing funny glasses makes his all colleagues fun of him "} +{"id": "2006303", "video_name": "f0674546-6f99-5845-9254-e1bec4715644", "text": "the little girl is going in the store to buy ice cream and the lamb is a little distance behind her following. Animated "} +{"id": "3006188", "video_name": "1fbcc0e4-657a-5b9e-8ff5-88296090d183", "text": "Hovercrafts flying thru a asteriod belt. Scifi. "} +{"id": "8001876", "video_name": "86c84081-d14c-5553-81a2-19a6a8919535", "text": "beautiful girls jogging together at night "} +{"id": "7003108", "video_name": "49e56c27-14f8-5b1c-b230-f4b4da6f1ca4", "text": "a visual for a live dj set up, tropical vibes, 16:9, 4k "} +{"id": "3005134", "video_name": "1b740461-34e6-5c78-8d5f-f238e4354d02", "text": "Generate an image of squirrel practicing climbing the tallest trees with determination. 8K, Ultra hd, pixel style, Disney style, cinema 4d "} +{"id": "1004552", "video_name": "5488b873-c216-5369-b660-e7b1d5ca8f38", "text": "A young boy in traditional shepherd attire, sitting with a flock of sheep grazing nearby "} +{"id": "4002622", "video_name": "69dbd48f-7216-5fda-bae8-2e60288ded94", "text": "Cheetah its speed and agility as it rapidly identifies and neutralizes cyber threats to protect Rippling "} +{"id": "3006669", "video_name": "a4157a5d-a714-5419-a240-cc09e787ecc7", "text": "a beautiful Indian lady swimming in the pool "} +{"id": "4002639", "video_name": "fda42e60-c84f-519f-a2cf-73436e8a27b7", "text": "70 year old woman with children in a function room "} +{"id": "7004715", "video_name": "f968ef83-8040-5320-bb0f-1b5402832e79", "text": "puppy playing with a red ball in a meadow of flowers on a spring day "} +{"id": "2007822", "video_name": "400978f2-9af6-5a39-b444-78eea5bb78c9", "text": "fish eye lens photo of spongebob skating in a highschool "} +{"id": "4002404", "video_name": "44e35aa3-88f4-598d-a9aa-6021af0f8ae3", "text": "they encountered all sorts of animals "} +{"id": "1005927", "video_name": "6cdc0bd2-d6c4-5479-9d86-39502706c888", "text": "realistic man sitting at cafe at night "} +{"id": "4004782", "video_name": "765f98de-143f-5a4e-b434-8dd5818f9cd9", "text": "Cinematic shot. Side pan. Volumetric light. A spider moving at full speed between rusty iron. "} +{"id": "2004542", "video_name": "363fb21b-7b3a-5998-a950-26ebc1e94064", "text": "outlines of moving particles, bacteria and clouds "} +{"id": "4004691", "video_name": "87e620cb-7c93-53cb-89af-25853ed09cc2", "text": "detailed animation of a mechanical robot "} +{"id": "1004802", "video_name": "58bebff1-71ae-50d7-a3c7-f79cf2e21d9e", "text": "beautiful pegasus moves its wings through the air "} +{"id": "2006238", "video_name": "146b3ea6-3b59-59be-b8af-eb365ef4c93a", "text": "2 friends r talking on the road at rainy night "} +{"id": "3005833", "video_name": "76c0ba5b-ba3c-5fd2-8235-a149890985ed", "text": "angry inmate and officer looking at eachother inside a prison. high quality 4k "} +{"id": "8001358", "video_name": "bae51841-d56f-59c0-9187-08d530de362a", "text": "Cillian Murphy cooking meth in a breaking bad episode "} +{"id": "5001483", "video_name": "b4cf29ac-5e81-56a6-8b7c-2d2d26844587", "text": "group of villagers had accused Amrita of witchcraft, "} +{"id": "2006240", "video_name": "4c8274cc-5f64-519f-9347-f7a9269f4f83", "text": "A jellyfish is changing colour from blue to yellow to cyan. "} +{"id": "3004579", "video_name": "e89c3445-e486-57a2-9d8d-5cdd12f54a72", "text": "The sun, a weary orange orb battling smog, dipped behind the Hollywood Hills, casting long shadows across Skid Row. Maria, her face etched with the worry lines of a young woman carrying more than her years, clutched a bundle of recycled wool blankets close to her chest. Inside, nestled like a tiny ember against the chill December air, lay her newborn son. "} +{"id": "4003394", "video_name": "5bf16065-adae-55dd-9709-2ad04629d332", "text": "birdseye view of piano playing by itself "} +{"id": "4004867", "video_name": "4c11f125-560c-5121-8563-90b843a99cb0", "text": "civil works design for oyster reef "} +{"id": "8001870", "video_name": "efcdfeb6-4874-535b-a90d-e609c85777f7", "text": "medieval painting showing an office with people working in front of their computers. 4k "} +{"id": "2005689", "video_name": "37bfb2b6-4d3d-558c-bb73-630e7995374b", "text": "doctor big brown teddy bear running in the beach at South Pole, First Aid Kit, 3D animation, cinematic, camera zoom in "} +{"id": "2004752", "video_name": "725d4b9b-1452-5d5b-9c57-cdb0b5649b3e", "text": "a space ship in midle of batle with another ship "} +{"id": "8003539", "video_name": "578b9ccb-751c-5cd2-ba8e-696bcfcfb419", "text": "a beautiful girl in a bikini is bathing in the sea on the Italian coast "} +{"id": "7002826", "video_name": "5f7d8a2b-4b6f-50a1-833b-a058bbb7d897", "text": "magical vibrant landscape, on another planet, 9:16 "} +{"id": "6002607", "video_name": "c4f15a09-1880-5d45-b108-d2b98aded8fe", "text": "hiperrealistic a big wave destroying Batman\u2019s boat on the ocean,ar9:16 "} +{"id": "6002831", "video_name": "e80004c8-043d-567f-a699-3d78be182c30", "text": "Describe the climactic battle scene between Mowgli and Shere Khan. Depict their fierce combat, showcasing their unique strengths and strategies.16.9 "} +{"id": "4003587", "video_name": "c72324ba-8e27-5f27-be19-8150e811b295", "text": "someone drunk at a party and everything happening around them is very fast "} +{"id": "0006289", "video_name": "2a0be4d4-5d0f-56f5-8ff5-d49aaa46c839", "text": "Sparky the Super Squirrel: An video of Sparky, the squirrel with a tiny shiny cape, looking brave and ready for an adventure. Aminated 4k 3D "} +{"id": "4003112", "video_name": "8f2fffa3-6e57-55aa-b328-e5653dec5b0f", "text": "Cat and dog fight with swords "} +{"id": "1005291", "video_name": "6141edca-bc95-542e-abf1-1d1b57963be5", "text": "a small dog running in the garden, realistic, 4K, sunshine "} +{"id": "0006673", "video_name": "30c17fbf-6b1f-5a34-9b9f-699d611d6f06", "text": "Alexandria beaches, from above, camera moving left "} +{"id": "2004129", "video_name": "d95ac1da-35ca-5e45-9f08-379ce0e03be6", "text": "Darling Delicate smiling cutie Steampunk young Girl, smile and hair shake smoothly "} +{"id": "7004660", "video_name": "feb7119f-d043-5649-9638-3920bcfd73bb", "text": "YOUNG boy front of the mirror disney style "} +{"id": "1005382", "video_name": "62f16662-1a8b-5b02-bd26-ebee1fe42782", "text": "youtuber taking selfie gets hit by train, 4k, cinematic, intricate details "} +{"id": "0003480", "video_name": "3e62fb48-de5b-553c-b43a-41616f71e563", "text": "One night, as Tessa was flying through the night sky, "} +{"id": "3004488", "video_name": "9edad844-68a1-52dd-8f11-4b73c1892110", "text": "Leader of army leading his people to victory running through the war front "} +{"id": "1004224", "video_name": "4e241169-771c-50a7-899f-f64e42cf9062", "text": "Druid with Gas mask writhing on Brutalist Gothic Throne, Lasers Alfred Stieglitz grainy black and white 1900s "} +{"id": "0003713", "video_name": "42324486-f00a-50a6-8579-694488091e6c", "text": "animation 8k ultra hd pixar style, Disney style a young man and a young girl riding a yacht "} +{"id": "5001947", "video_name": "d9f1f04b-9b03-5bb5-9f27-aa62825d2d90", "text": "blinking blue eye reflecting the sea on sunst "} +{"id": "2004344", "video_name": "f72373a3-f915-5a78-bfb4-7765f21a3ef5", "text": "A man was skiing, and he slid out from left to right "} +{"id": "0006584", "video_name": "2f080927-ad35-5b33-a569-1419fe06e213", "text": "Illustrate Seebu, the talking apple, sitting on a jungle tree, with a cheerful expression, ready to share its health secrets with the kids. "} +{"id": "1003421", "video_name": "3f379e06-71e0-56da-ab6a-08bf5e74475e", "text": "In the wasteland environment, a group of walking zombies are approaching, 3D cartoon realistic style "} +{"id": "1005512", "video_name": "65798ebd-88bb-55f3-a1f6-191631fd344d", "text": "a cowboy playing guitar in a bar at night, neon lights, wide shot, 50mm "} +{"id": "5001939", "video_name": "a802bf38-22de-5c61-abdb-2e386b9de3dc", "text": "a cheetah jumping off a bike ramp towards deer running 16:9 "} +{"id": "6002587", "video_name": "f5375301-760d-5f8f-a13a-f7409964e5b5", "text": "video of a cute orange cat walking through a garden of beautiful flowers "} +{"id": "4003296", "video_name": "cecd45cf-756e-5c18-b658-e43a8ec2af9a", "text": "a eyes nose and mouth expression saying hi in bibble "} +{"id": "8001647", "video_name": "d7ba3dbf-3067-56ed-811c-a8c0a0f3ace3", "text": "generate a white girl wishing a birthday "} +{"id": "8003657", "video_name": "c88a46e7-3d07-5b81-a4ad-3739865c4277", "text": "cinematic film, action film, ironman, New York City, flying, raining "} +{"id": "7003283", "video_name": "9249f373-78c2-5ef8-b3b9-65cd381a251f", "text": "driving a car in the city, apocalyptic style, zombie, cinematic light, high quality "} +{"id": "0003271", "video_name": "3a9a93c0-9159-5e75-8163-df4606009be7", "text": "a white cartoon rooster dancing in a tiktok video "} +{"id": "4003568", "video_name": "50f8a6ae-2014-5b3e-a9f3-e548393b78ff", "text": "a panda and a tiger staying completely still, only the camera is zooming in a little "} +{"id": "8001899", "video_name": "63d96333-acfe-57c1-a613-6ca204771243", "text": "An Arab man in Appian clothing covers himself with a white abaya and sleeps on the seashore next to a large rock"} +{"id": "8003679", "video_name": "a2fe97cd-490d-58d1-b7dd-dcaa17aaf754", "text": "Cute Chinese little girl smiling at the camera among flowers "} +{"id": "6002124", "video_name": "134d5a74-b99f-522b-97b9-dfeee68cf07e", "text": "the screen showing chats of companies with customeras "} +{"id": "3003331", "video_name": "e5fa4186-bb38-5097-a3d3-b777af3d3140", "text": "asian girl walking in time square wearing vivid colours "} +{"id": "2003812", "video_name": "50340550-7f5a-5548-9045-dba7d79d7ea7", "text": "create a video featuring 2 junior indian students of age 10 years in a classroom assembling a robot car using a different colors robotic kit that includes small plates, small L bar, C bar, DC motors, Yellow color wheels, Motor Driver, LDR sensor. Show students holding screw driver in hand and smart classroom environment, realism "} +{"id": "0004690", "video_name": "0d556219-938b-5d53-a224-77f368099c26", "text": "vivid, mirrored, computer chip, aliens sitting on computer chip drinking tea. "} +{"id": "3006812", "video_name": "3e6604b6-b7ce-5f19-a24a-e369800feafc", "text": "Swaying branches, falling ginkgo leaves, and fluttering female long hair Message: falling (Font: MODERN) "} +{"id": "7004056", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "poster art deco of a weeding French, north France on the sea, bride with honey brown hair in a bun decorated with flower, male with bald dark hairs dressed in a blue suit "} +{"id": "5001579", "video_name": "84a0037d-895f-5e5f-bdce-cab25d868969", "text": "While the Shaman turns his head towards the sky, he raises his hands upwards and rises towards the sky in the smoke. In the meantime, zoom out is done. "} +{"id": "0004312", "video_name": "06f7014f-b544-516b-acc0-2ffcbf6acd43", "text": "3d cartoon the butter fly said sorry "} +{"id": "4004864", "video_name": "5cbc8af0-0ce7-56cc-87c8-b04d1d6d364e", "text": "cross section journey through a brain, psychedelic "} +{"id": "0005761", "video_name": "20c4de8d-123d-5c36-baac-ae9ac6ea6b3b", "text": "Neon minimalism in style of techno futuristic, luminous 3D objects, Carnelian, man studio photography, Pop up editorial photography, "} +{"id": "4002543", "video_name": "aa64a40b-a9e7-5787-b1f3-e10bd8768ef5", "text": "drummer on concert, camera from up "} +{"id": "7003439", "video_name": "9aa1439b-a084-50c1-8bcc-a7b67b32524b", "text": "minecraft steve mining, realistic, cinematic, hyper realistic, camera zoom pan left, movie lighting, 8k "} +{"id": "4004583", "video_name": "925db789-fa0b-53b5-bf87-7c05fbe1c1c6", "text": "car is running, car explosions, cinematic "} +{"id": "2003286", "video_name": "46aa3933-f4cc-544f-8ce6-84375bd4040e", "text": "bikini woman on beach with jellyfish "} +{"id": "4004492", "video_name": "b175c9a5-0240-5127-bcdf-19d49b237e9f", "text": "doing experiments on monkeys 1980s french experimental film "} +{"id": "2003363", "video_name": "fc54fd2d-ffb2-519b-872f-ca75e6ee79d4", "text": "tiny boy trapped between the foot of a giantess woman, the foot are moving, he is moving , breathing "} +{"id": "4004762", "video_name": "315fba79-124a-5801-9a66-328b3752fa32", "text": "quiet village nestled at the foot of a majestic mountained numerous challenges, including treacherous terrain, unpredictable weather, 3D, 4k realitisk "} +{"id": "8003893", "video_name": "f8b93629-4789-5619-a525-d743d589c1df", "text": "man opening. the door of a car and stands in front of a mansion "} +{"id": "1006165", "video_name": "70d64fbd-dc04-5918-86ca-264a4d2af0bd", "text": "space flight movie trailer, scifi rocket taking off from earth into space, pink rocket flies into space "} +{"id": "1004640", "video_name": "564d5f6b-85bf-5583-8a8b-0c29b865d9be", "text": "One sunny morning, under a big tree in the middle of the grass, sat two cute little dogs with cartoon scenery "} +{"id": "1006122", "video_name": "70454bc7-ed58-557c-aece-ec7c58c4aa76", "text": "Pirate ship in the storm at night "} +{"id": "3003618", "video_name": "2cb0ec02-0041-5b98-86d1-90a16d49dbf0", "text": "a woman sitting on a lotus with different hindu elements in motion in her hand 10 seconds video "} +{"id": "2005371", "video_name": "5451fd25-9005-55f1-900a-8ca3e56d8e9e", "text": "glitchy terminal with particles and random codes running "} +{"id": "3004761", "video_name": "1f7c857c-1ef7-5b26-9844-113221647500", "text": "in the beginning god, extraterrestrial, created the heavens and the earth, realistic, vibrant colors, animated, animation cimermatic, dark theme "} +{"id": "6004206", "video_name": "07b4e912-c892-5d94-a5f5-43dd20077779", "text": "beautiful woman in a dress blinking "} +{"id": "4003410", "video_name": "04419349-dd39-56b4-aeca-185b4a6edfd3", "text": "lots of melons and watermelons at the big festival "} +{"id": "2003451", "video_name": "70c9d409-941b-5845-8c9f-9db1adde45da", "text": "Young beautiful african woman from fouta djallon walking far from the old house in the night "} +{"id": "3006892", "video_name": "081344d9-93e5-51c3-8d45-d400e1b4b073", "text": "Craft a story about a character who finds an old journal on a rainy day, leading them on a journey through memories and melodies. "} +{"id": "2006846", "video_name": "dae25b17-47d7-518a-bb52-1b3f35dd3e95", "text": "A wide beach shot of Gran Canaria scien fiction style as in 2100 "} +{"id": "7002518", "video_name": "76b32159-af2b-566b-9a01-96db13b51e26", "text": "beautiful indian girl take a cofee walking 2nd flour on the beautiful house "} +{"id": "7003748", "video_name": "8e38e7a7-b5d8-5821-aeaa-1d87ec8b395a", "text": "People eagerly watch peach blossoms falling on the busy street "} +{"id": "2006416", "video_name": "67b35b61-496b-5094-9384-b62053664604", "text": "masterpiece,4K,best quality,high detailed like gta game "} +{"id": "3005865", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "A person leaving the dimension 3 "} +{"id": "6002962", "video_name": "5b5f88d0-1b80-5bfb-b876-1628fde5eff0", "text": "African savannah landscape with distant sunset and animals "} +{"id": "3006788", "video_name": "3378b937-c76a-5a05-99c1-5ebe01848c74", "text": "Mountains and countryside Message: Yanto (Font: MODERN) "} +{"id": "1003871", "video_name": "4750eb8f-a5a3-5f3e-8df2-0ae6c6328ffb", "text": "forest gnome inventor dnd rpg, realistic graphics, detailed render "} +{"id": "2006693", "video_name": "7e34fd26-b3f0-5c81-9aaf-be0b13ec87b7", "text": "Wide shot of the village bathed in warm sunlight, showcasing the idyllic scenery and peaceful life of the villagers. (Style: Watercolor, warm tones) "} +{"id": "6004959", "video_name": "5efc12ee-3e5e-5857-a0b0-3f7aba76ca9b", "text": "Juice advertising posters, the orchard in the summer is sunny, a jar of orange marmalade is in the middle of the photo, surrounded by flying oranges, cool and bright, photorealistic style, Refreshing, bright and attractive, 8K "} +{"id": "2004159", "video_name": "3b1131ed-296c-50ac-a3df-8ba1fd2e83e1", "text": "underwater distortion. The sharks swim menacingly fast towards the right "} +{"id": "0006282", "video_name": "29fcfad0-9f81-5312-937b-87cf9c1d700f", "text": "The camera looks down from above, a man in a suit is lying on the asphalt, people are walking around, sketch art "} +{"id": "2003507", "video_name": "29bbc2ad-3579-525b-91f5-17873c037afe", "text": "create a video of an alien walking in imaginary world,alien generated from strawberry DNA,photorealistic,vibrant colours,cenematic camera "} +{"id": "7003376", "video_name": "71c30696-bc38-553c-bea4-dc5b2e2b1425", "text": "3D DaVinci inventions perspective cinematic action, cinematic masterpiece, professional cinematography, shallow depth of field, subject in focus, professional color grade, subtle dynamic movement, filmic, shot of professional cinematic camera "} +{"id": "7003274", "video_name": "ea3c64e3-c5aa-5e67-a51b-1a413ac4f49d", "text": "sad children standing in a deserted theme park "} +{"id": "4003757", "video_name": "efa5261a-8d5c-5503-ae10-157f2d70b56e", "text": "goodfellas, robert the niro, cartoon style 16:9 smoke in the background, post apocaliptic "} +{"id": "6002369", "video_name": "62c0174e-c9db-5dcc-8db9-eb912f081ad4", "text": "vintage garden party flyer, typographic masterpiece, best artistic fine work, best illustration work, award winning flyer, best vintage flyer, stunning illustration, secret garden scene, garden art, fine artistic design, best color set, typographic details, Mucha style, sharp phocus, portrait form factor "} +{"id": "7002118", "video_name": "db6f6a32-49bc-565c-bc20-a43f57efc8f6", "text": "mystical forest with running river coming through the centre of the scene. Neon little fire flies are flying around. The water is running and the wind is gently blowing the leaves. "} +{"id": "4003969", "video_name": "896f8cfb-1b0a-57f0-ae90-dca30ebfcf9a", "text": "a woman eating pizza in new york anime style "} +{"id": "0004379", "video_name": "08011d59-d729-549e-94cf-3359f5ac2515", "text": "magic mushrooms raining from the sky "} +{"id": "3005876", "video_name": "12b6e8df-09fc-5b7a-9426-421f029cb906", "text": "i create a video of a man talking "} +{"id": "3003518", "video_name": "1247739f-e9b9-5e34-8402-1b5d3a823093", "text": "logo for a mexican grocery store called san marcos add mexican products to it "} +{"id": "2007972", "video_name": "b85e0a3a-abb4-51a9-a196-99e28c8d0acd", "text": "Adult Woman in tight black outfit walkig towards the camera, a little motion on the character, steady wind flows, 4k hyper realistic "} +{"id": "3004359", "video_name": "68cc7927-3c2b-5008-99d8-1b4564d1e639", "text": "A girl with tattoos all over her body is foraging for wild vegetables in the mountains. "} +{"id": "1003535", "video_name": "4141d21e-faaa-5a3b-a84c-f3c7c4e0166c", "text": "very creepy horror scene, a frame that is very frightening, jump scare, 4k quality "} +{"id": "6003047", "video_name": "cd42df2e-77b6-5ade-bace-fb3d4d32a485", "text": "dss Message: man ye ghahremanam (Font: MODERN) "} +{"id": "0003675", "video_name": "417f82f1-4fd2-5691-9bf7-44f0d204f76b", "text": "scene of a market parlor with three boys with their respective cats "} +{"id": "2005262", "video_name": "5ea96e49-2190-52e6-a6c4-f5f0db3a837c", "text": "Dynamic, flashing, lighting, flashing, cool, with wheels turning "} +{"id": "6004375", "video_name": "67c94f13-a46c-5852-b9b4-1afc4ce814eb", "text": "The ancient Chinese warriors were fighting in the war field "} +{"id": "2006829", "video_name": "7448d3e4-b6ea-5a41-abd2-e95246fe9b2f", "text": "the pines are roaring on the height "} +{"id": "4004202", "video_name": "55133c7e-a8eb-5dd7-b768-584b60d3b10f", "text": "town, fantasy, tree, wishes in the center of a town with movement and in front of the tree is a boy "} +{"id": "7003412", "video_name": "c95c8885-826e-5a68-ae15-bc2d238c6bfa", "text": "we see many millions of dollars on a table, cinematic \u2013\u2013 ar 16:9 \u2013\u2013 "} +{"id": "2004175", "video_name": "c8847a98-00fd-5c5c-917a-89a19e2b112d", "text": "a mini studio for a cricket fan with team india collectives, podcast studio, indian team, cricket studio, commentary studio, realistic setting, "} +{"id": "2004403", "video_name": "d8a01db7-0c81-561e-b877-94159e745f7f", "text": "Decades ago a fisherman embarked on "} +{"id": "6003240", "video_name": "c58d090a-33b6-55d3-975d-3522fd011976", "text": "a zoom in on a colorful cake on a table in a sunny cafe "} +{"id": "2003414", "video_name": "13f1ed7a-4d4f-5d3b-8ead-1a4a23ae1beb", "text": "A girl studying in front of a laptop in the balcony with her cat in night. Her house is over the hill and from her balcony a city can be seen. "} +{"id": "8001897", "video_name": "0d0b52cf-2c0b-59c9-aa1d-edb2fa342768", "text": "Bat, broken window in store, shards of glass on street, city Message: 1 Attachment "} +{"id": "4004730", "video_name": "ddb19a34-4572-504b-aaeb-4e297f612406", "text": "a big floating heart with clouds rotating around it into it "} +{"id": "1003419", "video_name": "3f202053-6e0a-5f32-9c9c-f6b653c03c53", "text": "a monkey, Easter bunny, Monkey stealing easter eggs from easter Bunny, easter, digital painting, concept art, 4k, realistic, realistic face, stunning, beautiful, detailed render, masterpiece, dramatic, film, cinematic "} +{"id": "8002794", "video_name": "768f84ce-da19-5e75-8887-b74e7d9c4395", "text": "flower made out of love sitting on lava "} +{"id": "1005649", "video_name": "67ca80e5-6b17-5e06-9c4b-82f0e1b6d543", "text": "fargo bus transformation to public library "} +{"id": "1003389", "video_name": "3e72b4b8-873a-5deb-ad12-a8de02fda430", "text": "cyberpunk room with cats dancing on a table "} +{"id": "7003241", "video_name": "e25c9868-e586-5328-a0ed-1d358e1e72e8", "text": "Boss Lady in Heels with chainsaw "} +{"id": "2007016", "video_name": "5af40d50-5c32-591c-8c4d-7a8d3d69d45f", "text": "Golder christmas decorations in the snow, pink gold, diamonds, pink beauties, booths, minimalist urban landscapes, liquid light emulsions, soft and dreamy atmosphere "} +{"id": "4003478", "video_name": "44634447-f84e-53b2-98d7-b99d371a22d1", "text": "make her wearing a dress at the beach Message: 1 Attachment "} +{"id": "8001377", "video_name": "02873ee1-231d-5d54-a603-e4b3c70930ed", "text": "Ronal happily returning from holiday, scenes of a peaceful town. ar 16:9, 3d, clear "} +{"id": "1006277", "video_name": "72e79c5a-b4a6-54a9-ac47-98586988000c", "text": "a china old man Message: 1 Attachment "} +{"id": "0005968", "video_name": "243052ff-9c53-5a95-b04b-86e6343b4466", "text": "a woman riding a bicycle as envisioned by Yves Tanguy, Ellsworth Kelly, and Nicolas Poussin "} +{"id": "6002192", "video_name": "bb2281ec-7fd1-526d-92b7-9f556fec8017", "text": "On a snowy night with stars and moon, there are gentle breezes blowing snowflakes in the airOn a snowy night with stars and moon, there are gentle breezes blowing snowflakes in the air "} +{"id": "6002266", "video_name": "d4fe6929-f939-53ba-afff-5f3d8ba8bd8d", "text": "a squad of crusaders walks through the desert "} +{"id": "8001545", "video_name": "e89b2c92-0cc3-51da-95d8-8c9d2c1ec1d6", "text": "Twelve men are standing in a garden. They are dressed in fancy clothing and each of them is playing a snare drum "} +{"id": "4004603", "video_name": "048b3f34-8aea-5a3d-bc08-12a2b3173bbd", "text": "leo feeleExcited for the day ahead, he savored the gentle warmth of the morning sun, filling his heart with anticipation.3d animation style, video dimension 1024x786 "} +{"id": "1003534", "video_name": "413bc568-1292-527b-9d74-cc6049e94650", "text": "temparature increasing chart in double speed "} +{"id": "4004708", "video_name": "b8ea0dac-2323-5253-ad8f-52e5bda64bcd", "text": "In Harry Potter, wizards use wands to attack each other remotely, emitting green and red light waves through the wands "} +{"id": "6002604", "video_name": "ed1c4a9a-06b9-5124-9a39-2eddea9c6eff", "text": "a shark in the ocean with dark shadow "} +{"id": "6003115", "video_name": "9b793f37-6d91-562d-a79a-9a10eaed65f7", "text": "Engineers attempt to fix the malfunction, while tension rises among the crew. "} +{"id": "5001743", "video_name": "618b8a69-a3f3-501e-b692-5bb625255e56", "text": "woman blowing the horn with the sunrise timelapse as background hyper realistic dynamic moving camera 4K "} +{"id": "6002345", "video_name": "0e8b012d-cda7-5c8e-9827-53ef44e53884", "text": "violin being played completly black background cartoon style "} +{"id": "3004042", "video_name": "8cc16c89-99e6-5ca5-baad-ea52f992dbe6", "text": "an anime girl drinking a cola in the restaurant, is a sunny day "} +{"id": "4004042", "video_name": "21fed98d-3844-502d-bb85-ca2e841efc3a", "text": "Generate a visually rich video scene portraying the resilience of First Nations in Canada, enduring harsh winters and rocky terrain for ages. Transition to the historical moment around 1000 AD when Viking visitors from Iceland, with rowdy beards and funny helmets, arrive. Use bright lighting to emphasize the contrast between the natural landscape and the arrival of the Vikings "} +{"id": "2003125", "video_name": "791042e5-e343-5f45-90db-c28c6153e848", "text": "East St. Louis, Illinois, a city in decay "} +{"id": "1005829", "video_name": "6b19568c-2dbf-5959-9549-f9af46140e0b", "text": "A Ninja Vanishing in the forest, Magic, 4C, cinematic lights "} +{"id": "3006259", "video_name": "abfdc933-9aca-5029-941b-659961a3e08c", "text": "morning sun looking over a field of Gerber daisies "} +{"id": "7002161", "video_name": "82371519-36d0-59db-b8bb-16d5cb2938e8", "text": "fire coming out of a tap, HD, cinematic, hyperrealistic "} +{"id": "8003900", "video_name": "94980903-5af4-550c-8cb0-192c4573ee3d", "text": "a lit flame, symbolizing gratitude warming the heart "} +{"id": "7002471", "video_name": "811582d2-9ca9-5723-b950-629fdd669b18", "text": "a sword made of gold, black liquid running down from the sword and dripping, the sword is covered by vine and small red and back flowers and blooming from it. Realistic, UHD,HD, cinematic, 8K, 4 motion. "} +{"id": "3004745", "video_name": "36163cdb-239e-5981-a8be-3e57ec8dd3ff", "text": "A person sitting at a desk, looking at the clock on the wall, feeling a bit overwhelmed "} +{"id": "1004139", "video_name": "4caf4098-7984-56fd-9885-4438c0334d56", "text": "a poker tournament champion holding trophy with crowd surrounding "} +{"id": "4002183", "video_name": "5f70c27b-b555-56ca-9603-f546dab2f5d4", "text": "running inside a dungeon, ZX Spectrum, commodore64 look "} +{"id": "8002845", "video_name": "636a5651-7fc3-5727-9de1-e1f6ea77203f", "text": "boy running in a running competition "} +{"id": "4002372", "video_name": "431eec31-40ce-5a9a-bd35-ecef26ba903b", "text": "tucker Carlson tonight where he is awkwardly interrupting bowlers during a bowling tournament to ask unimportant and irrelevant questions. "} +{"id": "3005605", "video_name": "ded89659-3dd8-5f70-8c06-7455cfe4b0f0", "text": "footage of each section for PTE exam being explained "} +{"id": "7003398", "video_name": "e24bfd8e-af62-594b-9918-7a001ca46865", "text": "prompt: sunrise over a caribbean island after a heavy rain "} +{"id": "6004779", "video_name": "ee42da8d-7afb-5fab-8df4-da463bedf670", "text": "Kissing with a lot of passion, moving lips and tongue, moving the hand slowly, zoom out 4k "} +{"id": "6003391", "video_name": "de5e259d-ba7d-5984-8d0f-b64492f1f39e", "text": "young blonde long air lady dress in sexy outfit play golf in green mountain with blu sky "} +{"id": "7004312", "video_name": "854177c7-3db0-5547-a5e5-c0b7021b1032", "text": "Advertise real estate with the words Mabel Corporate Real Estate Chain in the video. The video contains gold and black color "} +{"id": "2006422", "video_name": "b5682ed2-8fc1-560a-a637-955915f1fbf6", "text": "A Favorite Hai Duc Nguyen Extremely photorealistic, breathtaking stunning, majestic, elegant panting of enchanting, hyper detailed majestic enchanting strong mountain river nighttime, illuminated by dramatic light, impressively beautiful depiction, cinematic render, rendered with Unreal Engine 5, Ultra High Definition, 16k resolution, octane render "} +{"id": "2003056", "video_name": "015ca83f-0c48-5f58-acbf-fa5b3e231996", "text": "The hair moves with the wind, the image of the woman floats in space, the cosmos moves, with flashes of light in cinema 4D quality with aspect ration 16:9 "} +{"id": "1004166", "video_name": "4d21a611-c89a-5316-a81d-56508c96681c", "text": "a videl that shows human groth of technology over time "} +{"id": "0005331", "video_name": "18f051b5-14d0-5efe-ad26-436c67fd7916", "text": "\u201cThe mother and son are playing Plants vs. Zombies game.\u201d "} +{"id": "0003985", "video_name": "0126de4d-3e82-5e6a-b0c9-6679cb8366c3", "text": "a lamp made of wine , with city inside "} +{"id": "2007571", "video_name": "80e94677-4890-5ec3-8463-bdb8637ead27", "text": "General shot, 12 year boy, dar hair, wearing blue pijama, hiding under the bed, holding a candelm firgthended face. Dark and fogy envirment, white grey teal and crimson red cinestill 50d \u2013dark serie netflix style\u2013 ar 16:9 "} +{"id": "8003836", "video_name": "b8d74165-5ebd-5422-afa8-7d6a215c0492", "text": "woman happy on Dance floor enjoy Message: Coaching Days (Font: MODERN) "} +{"id": "6003728", "video_name": "92c7a58e-2e27-545d-9004-40618bbcb3d3", "text": "Mighty lion named Leo waking up to find himself trapped in a net "} +{"id": "7004828", "video_name": "a6d71e45-c211-593b-bbfc-5e4f0167cc1c", "text": "and a beautiful lady standing in a car showroom "} +{"id": "7002631", "video_name": "98425caa-5511-525a-8d20-a3d2be08718e", "text": "jazz trumpeter, miles davis flying while performing in a futuristic world 3d. reference flying lotus for visual imagery "} +{"id": "4004979", "video_name": "f7c1c12d-b3cc-5366-9823-250eb121ec79", "text": "a waterpolo player with wolverine hands, throwing a goal, pool is in front of a crowd of marvel heros "} +{"id": "2005632", "video_name": "f9ae693f-3a02-59fd-9c7a-2e752026d9a2", "text": "movement of matter around a black hole, change of plan, high dynamics "} +{"id": "4002843", "video_name": "eef14ab3-2c89-56b2-ae4f-91aac74488a8", "text": "basset dog sleeping on a sofa dreaming of chasing rabbits, realistic, high detail "} +{"id": "6002423", "video_name": "9ac0019b-4d7e-5a20-9031-7de381e857ce", "text": "a leopard dancing to someone playing the decks "} +{"id": "1003532", "video_name": "4132c401-eaef-5075-92cb-91d4e642453e", "text": "golden room full of magical and mystical portals "} +{"id": "1005505", "video_name": "654ea97e-ac88-5e00-83e0-438a9b5da82a", "text": "soviet aircraft, neon, snow, wild, action, rose, hills, nature, UHD 8K, extreme, shiny, 16:9, action Movie "} +{"id": "0005149", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "under the setting sun, some old men were harvesting rice in the fields "} +{"id": "4003010", "video_name": "ad4e6cab-e28b-5405-9aa4-e2797241a4d4", "text": "man danceing in the road with duck "} +{"id": "8002839", "video_name": "c9d5cd04-3cfc-59d2-8079-9f9e8324f1d9", "text": "A historical video of a greek byzantine man drawing his dagger to defend himself "} +{"id": "3006630", "video_name": "5e0f4be8-3015-51f2-b93a-6285009323a0", "text": "the end of the world 16k "} +{"id": "4003770", "video_name": "668da204-93d6-5e11-b093-4c3bfc6dac9a", "text": "Montage of Diwali celebrations in various countries, featuring diverse communities coming together. "} +{"id": "3005043", "video_name": "8b47babc-39fe-5918-83ac-e71aa56770ef", "text": "fire truck racing down an urban street with red flashing lights "} +{"id": "6004962", "video_name": "37b75533-f193-58c8-bfc1-a54e09e42840", "text": "woman thinking with algebra signs floating around "} +{"id": "6003153", "video_name": "21261446-40c2-5f1b-9554-16ee9aeeccc9", "text": "people in the street looking shocked at man running quickly "} +{"id": "7004188", "video_name": "c2892b67-f5af-541a-bd2c-f8a1effbdecf", "text": "a photo of a wheel of a car. the rim has the spokes in the shapes of feet "} +{"id": "8002849", "video_name": "583b64e8-4be4-552f-abaf-60077a233c44", "text": "Generate a video capturing the bustling futuristic cityscape, showing humans and robots coexisting seamlessly. Ar 16:9 high quality video 8k. "} +{"id": "1003154", "video_name": "3a26f4c8-b377-5c81-919f-5e74cf7eeabd", "text": "A personified Taiwanese sausage dancing on the barbecue grill, with smooth and glossy skin, and a smiling face. "} +{"id": "4003699", "video_name": "859d3f70-1188-57f9-b044-bc3a043b08c7", "text": "A man looking strong holding a sword in his hand "} +{"id": "0005076", "video_name": "145cfd59-ea46-5a3e-b932-4a07c72a9e3a", "text": "a boy playing football in playground with a bin sunshine "} +{"id": "2003166", "video_name": "fca3da36-a9bc-5ccc-83ed-19d103023977", "text": "Here, Giorgia Meloni, prime minister of Italy, takes up power as the new ruler of China. "} +{"id": "7003140", "video_name": "b9f2d4f5-4efe-5b79-8466-5d4cf227b3db", "text": "create a logo for a market with a Boeing 747 and a world of background "} +{"id": "1004626", "video_name": "56035d13-e10d-5962-9d94-444a35e4a753", "text": "circular squirrel dancing in the rain "} +{"id": "3003216", "video_name": "c91ca24c-4574-5400-92cf-2b3551980278", "text": "scene is beautiful scenery and bird flying in the sky in 3d cartoon animation "} +{"id": "8002318", "video_name": "e30c0fe9-3a79-5d8a-89dc-6517904ecc1c", "text": "The friends solving puzzles in the Red Riddle Maze, overcoming obstacles to find the red gem.Animated cartoon "} +{"id": "4003003", "video_name": "1cfc2926-7137-5bb2-b8eb-9cc22487e22b", "text": "Both Sasumaa and Bahu felt embarrassed and apologized "} +{"id": "0003546", "video_name": "3f47bc9c-0bd2-575f-a587-e46691016c46", "text": "meeting in a big corporation, photorealistic, daylight "} +{"id": "2003872", "video_name": "b464a873-f604-5e82-9601-f5af32b8e94b", "text": "Iron Man dancing in the forest in morning time "} +{"id": "6004847", "video_name": "6dd06208-f815-5405-ad2e-41bea73cb7a0", "text": "A tsunami surfed by a blonde girl "} +{"id": "2007106", "video_name": "5c4965ee-8f9d-588b-86da-453a646ef84e", "text": "kindness and selflessness is more meaningful than any sports trophy "} +{"id": "6004670", "video_name": "1be86d67-1ac1-5886-a098-fd7f5d4bc8ea", "text": "CGI animation of a basic maya civilization village transforming into an advanced cityscape with soaring observatories "} +{"id": "1003320", "video_name": "3d2a5c42-838a-5ef1-858b-61c0922cd68f", "text": "this cat jumps into another tree in the forest. Moonlight behind "} +{"id": "7003524", "video_name": "afbb592a-7d03-57cb-8db5-ed35ca10eb29", "text": "Little colourful kittens playing in a beautiful green meadow Message: CUTE (Font: MODERN) "} +{"id": "7003317", "video_name": "7de3d35c-06b8-5c9d-9637-ebb563f36f47", "text": "last boy on earth walking, purple skyline and fire raindrops "} +{"id": "8001887", "video_name": "d7456929-c17b-5f1a-a6ec-f9293778701d", "text": "Men in orange shirt and black trousers wearing cap looking right in front of camera cinematic view, sketch type colour full "} +{"id": "6003983", "video_name": "5e4c5808-d7de-554a-8e03-a7d495c34040", "text": "Mandela as an angel ascending into heaven, photo realistic "} +{"id": "3003783", "video_name": "991f8af7-89f0-5a8d-9116-df308c01be1d", "text": "lo fi 3d a girl studying in her desk futuristic "} +{"id": "6002817", "video_name": "3e725cc3-ba7b-52f4-929e-74d07cffa354", "text": "Create the image of a being of holy light with fire coming out of its eyes in 8k in cinematic style, do it at a camera angle closer to the face. "} +{"id": "1006290", "video_name": "73348d1b-9d7a-5e0c-ba43-27da9d973fca", "text": "lucifer hand grabbing a tattoo machine "} +{"id": "6000000", "video_name": "cf7437e5-9679-5860-860f-d9e1d4e37e84", "text": "human hand drawing a bycicle on a white page notebook, anime style, 2d animation, 5 seconds animation "} +{"id": "7002061", "video_name": "e3076520-28c9-5ec1-8d18-3d32e396b4d9", "text": "Moving people slowly, moving the horse slowly, and moving the flags "} +{"id": "7002085", "video_name": "024322d8-7313-54c4-8c7a-7e5b9f6c1d3b", "text": "in Airplanes in the style of GTA "} +{"id": "0003737", "video_name": "428f13bd-5812-5230-8539-ffda35c0d02a", "text": "FLAMES, UNDERWATER, HD IN MOTION WITH THE WATER TORNADO Message: TEZLIFE (Font: RETRO) "} +{"id": "1004087", "video_name": "4bb5f538-ffb0-5e02-8fa2-f25da147bb5b", "text": "Janenba from DBZ in a tuxedo "} +{"id": "2005272", "video_name": "b8baa481-75c5-570f-baa6-9accd98fa5b7", "text": "3d anime space girl listening to lofi music HD loop video "} +{"id": "1003353", "video_name": "3dcdec9e-b894-5d3f-aaa7-9ae665a944b1", "text": "a Smoking Guy. Smoke slowly animated. "} +{"id": "8001065", "video_name": "4336b386-274e-534c-be61-86a0687a1626", "text": "Panoramic Dinamic Scene: In the Back to the camera a young Asian wizard with long, flowing gray hair sits in deep meditation. Capturing the essence of magic, behold a panoramic image that transports you to a realm of wonder. In the center of the frame, his back to the camera. As he focuses his mind, an ethereal triangular, radiating vibrant luminosity that fills the entire screen. The brilliance of this mystical spectacle illuminat "} +{"id": "2005035", "video_name": "2845d597-0d3a-5ae7-9632-85f7f6532552", "text": "trippy figure meditating. 1970s arthouse film "} +{"id": "0004228", "video_name": "057a1d19-2365-5b77-8210-685490174eaa", "text": "a mysterious island map from a story book 4k "} +{"id": "1005853", "video_name": "6bad6acd-fb23-53af-aa4f-7d5cb1fc4f8f", "text": "after a rabbit became beautiful woman "} +{"id": "3003482", "video_name": "b4f435fd-1c08-5f1f-87ed-a0614ebafa76", "text": "Generate an underwater scene showcasing a vibrant Coral Kingdom with colorful coral reefs, friendly sea creatures, and mermaid named Lila swimming gracefully among them gs1.5 "} +{"id": "1004201", "video_name": "4daa2075-f4d8-548d-b2cd-1226c7ad7c36", "text": "Create that a young boy and a young girl is kissing each other in the middle of the road under the street light "} +{"id": "6002529", "video_name": "a39555d5-ca54-52d4-af02-213cc66baea6", "text": "a hindu king praying to an idol of lord vishnu in his palace "} +{"id": "3004599", "video_name": "bd716c77-e9f5-5ebd-8d49-1c22562ebc0e", "text": "Shaolin monk square face calm looking "} +{"id": "7002886", "video_name": "ac9f38ca-01ca-55a2-b64b-439b63787f30", "text": ": A dilapidated Victorian house stands alone amidst overgrown trees and a foggy atmosphere. The image conveys a sense of isolation and foreboding. Ultra realistic, 4k,motion 3, "} +{"id": "7002401", "video_name": "9667c4ea-d57f-513e-aa64-810198e3bc77", "text": "masterpiece, 1male, Chinese soldier, standing, under cherry blossom tree, in full bloom, pink petals, falling down slowly, military uniform, focused gaze "} +{"id": "0006854", "video_name": "343fe538-104f-5447-80fe-7d9cd368763a", "text": "woman reads in a park. sepia. pinhole camera. Film grain. Gradient lighting. Dark vignette. burnt border. sharp. gaussian blur background. "} +{"id": "7004388", "video_name": "46684af8-c76e-5cb0-84bb-b9868637f8f0", "text": "Create a 3D image of a family of elephants, including a baby elephant, surrounded by lush jungle vegetation, 8K, realistic, colorful vibrant. "} +{"id": "0003219", "video_name": "3981caeb-523a-5bdc-b352-d970751fb7b6", "text": "two man in suits fight on the roof of court "} +{"id": "3004953", "video_name": "bca1300c-5ccc-5cb3-a08b-46835eb307a8", "text": "cat scares another cat and they are jumping happily "} +{"id": "1006006", "video_name": "6e6686d9-6465-5f03-9c8e-bba5a25e70a0", "text": "two stars that guide me, In his eyes I find my destiny "} +{"id": "0004459", "video_name": "0964c56d-2374-52fe-9920-61fc5ed9899f", "text": "A ship sailing in the pink sea heading towards a giant wave "} +{"id": "3003381", "video_name": "89201cc6-ee0f-5215-9b72-d89e44135cc6", "text": "thumbnail for youtube of artorias the abysswalker as main and centralized with the focus on the colors blue and black "} +{"id": "3006954", "video_name": "ed55856d-eaa3-5337-931f-e2ff8bf8ef3d", "text": "A general shot of a person entering a room full of broken mirrors that reflect a morphed version of himself. Cinematic 4K style "} +{"id": "6003492", "video_name": "a426ba32-b6db-534d-ad21-ec3117ed0813", "text": "2 swordsmen clashing together during a storm "} +{"id": "6004854", "video_name": "9dc29331-0427-58d8-881c-f3713725ee0b", "text": "make the two ants advance foward slowly, only the ants move in the video "} +{"id": "3004178", "video_name": "5dff6d35-e3ef-5b5b-a82e-be4288dc1b2c", "text": "looking down from the roof of a skyscraper in POV "} +{"id": "2006071", "video_name": "7e055561-5c16-5a75-a7ac-0d53ce0bd9f1", "text": "The beautiful princess and the huge snake in the middle of the lush garden and the beautiful river, and behind them the golden palace "} +{"id": "4002029", "video_name": "bb157065-fe99-5158-a0e9-405d3c369893", "text": "video, good lighting, video of beautiful young woman applying moisturiser to face gently, showing a scientific layer of protection from outside pollutants, sealing the skin from bacteria, good quality, focus on protection of the skin from outside irritants "} +{"id": "3003100", "video_name": "c88ecd99-7df9-5805-aa56-b31293e4e15c", "text": "A fire goddess in the forest "} +{"id": "2006676", "video_name": "df259e4b-44fe-5c8c-b7cf-bd3bd69abdc7", "text": "muscular man, Inca, with lightning powers "} +{"id": "8003508", "video_name": "cfd5a3e4-315f-5fae-9961-1a95321b00cc", "text": "highly detailed, photo realistic, 8k, santa throwing presents from the sky "} +{"id": "0004752", "video_name": "0ea6a7ad-21b8-558c-a4ed-7291a46c9b37", "text": "crete a PPT slide with points about What is tableau data visuvalization? "} +{"id": "2007222", "video_name": "a70f1942-07f7-5c47-a1ae-61a9313d81c0", "text": "Phoenix, magical effects, night sky, fireworks "} +{"id": "4002001", "video_name": "933a24bc-b584-5de9-970f-eaa6664ac234", "text": "a jews man arguing with a British soldier in 19th century palestine "} +{"id": "6002416", "video_name": "f20ef9a3-9aee-521d-9c07-3b296dcd45e9", "text": "red fox on space with a gamer headset listning to music "} +{"id": "2003803", "video_name": "59c5741b-76ef-5093-824a-880c2decf571", "text": "moving electric car from right to left, 4k, full hd, "} +{"id": "7003948", "video_name": "b8b52286-37fb-5d63-9206-daf83f7f35cd", "text": "berries dropping in water slow motion "} +{"id": "7003329", "video_name": "81f61599-d401-5b68-9fb5-5ad52bebb09c", "text": "perfect pink eyes, fantastic face, Indian Actress Mumtaz in her 20s, beautiful look, detailed elegant printed red saree, updo elegant hair, blurred gray tones background, ultra focus, face ilumined, face detailed, 8k resolution, painted, dry brush, brush strokes, razumov style and garmash style, by Tokaito "} +{"id": "1004424", "video_name": "51e4ac84-405f-56e4-b6c6-c16a6efdac7e", "text": "Elon Musk vs Mark Zukkerberg in a game of chess, surrounded by waves of lava crashing together, 10 k, wide cannon lens "} +{"id": "7004686", "video_name": "cdaac7da-3896-5336-bb17-30ca851f294c", "text": "The works of the masses are arched onto the square and vigorously danced on Red Square in Moscow "} +{"id": "6003172", "video_name": "36a9223b-a8bb-5eed-8f65-2cf80ab0a1da", "text": "a leprecon at the end of a rainbow with a pot of gold "} +{"id": "3006058", "video_name": "905f9323-67df-5aa1-a19a-4893994055b7", "text": "Young Indian God Rama with brother Laxman and Goddess Sita in the forest, sharp focus, emitting diodes, smoke, artillery, sparks, racks, system unit, motherboard, by pascal blanche rutkowski repin artstation hyperrealism painting concept art of detailed character design matte painting, 4 k resolution blade runner "} +{"id": "0006729", "video_name": "31e0773d-beb5-5cec-bfb7-a203f4bbc09c", "text": "Golden sunlight filtering through a dense forest. Tall, majestic trees with their leaves rustling. "} +{"id": "0003820", "video_name": "4417f54f-c535-5fd6-a93a-5703bbcbbf3c", "text": "PIKABOO is an eyelash brand that people all over the world use PIKABOO eyelashes, and a beautiful girl wears PIKABOO eyelashes "} +{"id": "3003757", "video_name": "83a666e6-d29c-5eb9-a8ad-020428d39860", "text": "Sure, you might be scared. Doubt might be knocking on your door. But remember, every success story started with a leap of faith. "} +{"id": "1006224", "video_name": "722922e1-85e2-576f-ade4-a8ab89e20dad", "text": "dark blurry human souls on a dark background "} +{"id": "1005468", "video_name": "647b2c38-6b07-5191-acd4-056d208674fc", "text": "A small beach with calm sea and a spectacular sunrise in the sky serve as the background for a cheerful bird with a straw hat that dances by crouching down, spreading its wings and looking towards the horizon. "} +{"id": "7003964", "video_name": "cab70fcb-28b3-523b-980e-7357cc352c8b", "text": "Video promt :An artistic representation of a dark forest at night, with trees that appear to be whispering the eerie melody, creating an unsettling atmosphere. aspect ratio 16: 9 "} +{"id": "1004134", "video_name": "4c958a7a-33ed-53d7-af6a-473c13c1fe2f", "text": "witches of the Middle Ages like a 1922 movie. "} +{"id": "3006404", "video_name": "3d561512-9ebc-5570-88dd-3521cf774802", "text": "Create a visual representation showing the Great Wall of China from space using advanced technology. IN 16:9 FORMAT "} +{"id": "5001179", "video_name": "44894ffe-9485-5653-be23-84878febc6c4", "text": "stunning fashion model looking up and down "} +{"id": "3003580", "video_name": "42bd71af-253e-52c4-ad81-f007188d89a3", "text": "a car on the side of the road "} +{"id": "3006015", "video_name": "8dcef672-5977-59bd-9d64-7e5a17313078", "text": "cats, clear text, Message: hi casper (Font: MODERN) "} +{"id": "3004494", "video_name": "33f8a4ba-a098-5069-ae14-2dd5534d4489", "text": "a british man cing the viewer talking and making a speech "} +{"id": "7002446", "video_name": "c366dd29-78ff-51d2-a82c-34f6572f1b12", "text": "a cute cartoon puppy splashing in his water bowl "} +{"id": "7002746", "video_name": "5fa570c1-65ef-5c17-bb84-01d9c880f7f2", "text": "Frida Khalo comes to life in her different pictorial works. general plans. Frida Khalo painting style "} +{"id": "3004716", "video_name": "66851284-9b0c-59a2-8f69-449e730a95cb", "text": "The clear spring water flows slowly on the stones, making a pleasant sound. "} +{"id": "1004966", "video_name": "5bbb44eb-0c7c-50f6-a6cd-47d1573bb5a0", "text": "She had to listen carefully and decipher the ancient language of the trees to uncover the location of the next ritual. "} +{"id": "3006288", "video_name": "d0470681-1a23-556e-92ef-db830c876049", "text": "tentacles ripping apart a red blob of flesh, creature "} +{"id": "6004108", "video_name": "8f249dff-10e3-591e-a2bf-3ad065ee7474", "text": "a siluette of a boy walking towards an illuminated ufo at night "} +{"id": "7002761", "video_name": "b6700ac4-e8fd-5467-91f8-3f9859d6ca83", "text": "Illustration of a mushroom field with vibrant colors, morning, direct singlight, in the backdrop a big ancient Victorian castle Message: 1 Attachment "} +{"id": "2006997", "video_name": "1b3745a3-f8ae-539a-a736-cb4ca0346e26", "text": "A lightskin wizard in renaissance art form, being followed through the forest by a shinning bird of light that lingers behind as he walk down a pathway in a magical forest setting "} +{"id": "4002079", "video_name": "21e0eae2-6956-5822-81ab-2974239cef86", "text": "Panda bear holding plug in the style of expressionist, with a vibrant aesthetic. The scene is captured from an overhead view, using a fisheye lens, with a slow crane movement. "} +{"id": "1006645", "video_name": "79ca060d-347d-523c-959f-08d76e61830e", "text": "a shark eating a boat in the sea "} +{"id": "8001068", "video_name": "296da1b5-b94f-50e8-b1cf-99ef7e67c021", "text": "mojo jojo walking away feeling defeated in the rain "} +{"id": "5001246", "video_name": "3bc5d41f-f5f6-5a41-9306-d53cc55ef4c0", "text": "Conjoined Victorian Heads Occult Tattoos Numerology Phrenology, electron microscope, slime mold, fungus, wires, diodes, lcd screen, electrodes, tryptophobia, daguerrotype black and white Alfred Stieglitz 1900s "} +{"id": "3004066", "video_name": "d2246f08-ab18-5c86-8561-16692c3495d6", "text": "a passenger trainer at high speeds, sparks flying, galaxy background "} +{"id": "1003747", "video_name": "451f942b-9855-5d60-93fd-0553231dd041", "text": "The late afternoon sunpeeking through the window of a New York City loft "} +{"id": "3003347", "video_name": "1250cf32-b91c-515f-8afc-27077fecf69b", "text": "the image of an anime girl and boy looking at the floor of an city, in the style of seapunk, colorful gardens, radiant clusters, floating structures, expansive, colorful imagery, elaborate spacecrafts "} +{"id": "4002099", "video_name": "03d24379-eedb-5941-b95f-062c4a5b0012", "text": "Happy young woman holds a little glass essence bottle, window open, 1950s advertisement black and white "} +{"id": "2007070", "video_name": "8d5c4dda-1ead-56ec-a09a-58436887631b", "text": "1970s inspired, people in colourful fancy dress , shot on a super 8 film, eery scary inspired Swedish "} +{"id": "0005360", "video_name": "19761374-eb02-570c-a190-5458be1093c9", "text": "rain falling and a simple house in a lush nature "} +{"id": "5001923", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "Bjork style, nick knight, ric owens fashion, jodorowski "} +{"id": "0005950", "video_name": "23d58d30-eda7-508e-a50d-31f918d805bb", "text": "Introduce the main character, the fox. "} +{"id": "6003030", "video_name": "d7b78dda-56a7-5704-bd5d-8aaff6abbaca", "text": "racoon in christmas hat riding a very very fluffy sheep "} +{"id": "3004824", "video_name": "664127f6-5118-5d79-913a-c440598e6cdd", "text": "city skyline, a portal appears, crackling with arcane energy, surrounded by towering buildings "} +{"id": "6003827", "video_name": "39459dec-95a7-5886-b13d-0821743aea24", "text": "Korean male character talent painting artist "} +{"id": "7003255", "video_name": "c07179cf-623a-5e29-8f22-2acde73dce65", "text": "Help me make a Panshi desk, with a length of 3200mm, a width of 1000mm, and a height of 750mm. The table top is wood grain and the legs are leather or metal. The design concept of Panshi must be highlighted. "} +{"id": "8002067", "video_name": "9d530f18-25d0-5f5b-9d11-a6dd203fab70", "text": "The Darkness bright yellow evil eyes in the deep "} +{"id": "3006989", "video_name": "bb8194fa-f1ad-5c31-a5cf-57f2a810a3a1", "text": "a beautiful girl takes the stage and eats the big hot dogn "} +{"id": "1005409", "video_name": "635f0733-953f-5a4a-a286-cd1486a6cb8d", "text": "camera moving through old abandoned cars in an old ruined garage, dust, oil, volumetric lighting, Kodak gold 200, "} +{"id": "3004037", "video_name": "b7e0cf72-b35d-5eb5-82ef-0859025eb967", "text": "1985 video, a calm man in a trenchcoat is looking at a sunset "} +{"id": "2007307", "video_name": "1b010f02-a91e-5616-9299-6734c2d344eb", "text": "Machines dancing in the pool, 3d animation, 4k, zoom in "} +{"id": "4004943", "video_name": "6876ec3b-0bd3-5efe-ab56-bb169b1ca0af", "text": "a guy riding motorcyle without handle, cinematic, "} +{"id": "2004891", "video_name": "1f6d47af-617b-5c75-8a80-321760a5b557", "text": "logo design, coffee shop, night scene, lots of flashing disco lights shining out through the windows "} +{"id": "2006497", "video_name": "91bbc43f-61b5-5f6f-806d-fd3f99428541", "text": "Brazilian educator Paulo Freire dancing hip hop. "} +{"id": "1004574", "video_name": "54f99252-687e-5ab6-a466-4611941b4f1c", "text": "a city on the fire destroyed "} +{"id": "6003137", "video_name": "bbcd4555-160a-51b8-bbb3-18733af917b7", "text": "imagine a lofi girl in her ftuddy room at her desk with a table lamp, laptop, books and pen in her right writing and slowly blinking her eyes "} +{"id": "7003870", "video_name": "3993283d-f071-57d6-aa45-5994ba822d8d", "text": "image Abraham Lincoln smiling, removing hat, sharp details in every corner "} +{"id": "1005765", "video_name": "6a0eb927-6479-5e25-9161-71eac81858aa", "text": "organic ai grows and evolves Message: ALIANZA 4.0 (Font: MODERN) "} +{"id": "4003985", "video_name": "d3e084e2-b75c-562a-a8e0-49926aa53ddc", "text": "slow zoom into white house at night "} +{"id": "2006841", "video_name": "c70378fa-d1ed-5cb9-a555-772d275588cc", "text": "people dance techno on The Great Pyramid of Giza by night, aerial plan, cinematic "} +{"id": "1006515", "video_name": "7739f755-b85b-5d33-a30a-adfea0af8246", "text": "high school boy, JASON, stands at the bus stop, waiting for the bus. He appears to be one grade up from Sarah. Jason notices the school bus approaching. "} +{"id": "1003960", "video_name": "4921a2b2-4e3b-5e6f-9b1d-c6fece8beb8b", "text": "A beautiful scenery which leads to a jumpscare. "} +{"id": "0003533", "video_name": "3f14017a-02ac-5c10-9cd2-02d36740cdc7", "text": "A stunning 3D triple exposure, showcasing three distinct and intertwined scenes. The background is a vibrant, starry night sky, adorned with a full moon casting a soft, silver glow. In the foreground, a lush, green forest is visible, with trees stretching towards the sky and leaves rustling gently in the breeze. The middle ground features a tranquil ocean, its surface rippling as if touched by an invisible hand, and waves lapping against a serene, sandy shore. "} +{"id": "0003620", "video_name": "40a4a4c6-bfb3-592f-94b5-9fb63913d0a2", "text": "Orpheus tried to rescue Eurydice from the underground hell "} +{"id": "6002964", "video_name": "bbc01c0b-c349-520e-b6b1-f33fca104146", "text": "silent hill, aesthetic, run, at home "} +{"id": "0006441", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "Anne Hathaway and Natalie Portman 8k movie "} +{"id": "0003809", "video_name": "43e16275-d37b-53bc-9020-dc5be016f4ea", "text": "a orange fish swimming with its family at the seabed. Cartoon style "} +{"id": "8001958", "video_name": "0f1e7dc9-076d-561d-a853-939df0ed3697", "text": "danny devito running as the flash "} +{"id": "3005768", "video_name": "48a6c6fc-4cbd-53a1-bd2f-959acc663d1a", "text": "The camera pans across the smoky bar and settles on the stage, where, surrounded by musicians, Gouda cheese performs jazz, slowly swaying from side to side. After a few seconds of performance, the cheese begins to melt right in front of the amazed audience. In the style of a Disney retro cartoon. "} +{"id": "8002785", "video_name": "e3bdab94-a6ef-573a-bcf3-e3c800e195a3", "text": "floating inscription GERKULES, in red and black colors. "} +{"id": "2003951", "video_name": "e99846d7-6129-56c6-8e68-b5ae2b2c44a0", "text": "a big old crowded fighting pit "} +{"id": "3006621", "video_name": "253e63ec-2dbc-5417-92ac-d38e35c1227c", "text": "detailed 4k resolution black british fold, amber eyes, talking with a jhin from a lamp "} +{"id": "6003403", "video_name": "4623a4a3-c377-589f-9104-90ec5426486f", "text": "security guard doing a check round in a production factory "} +{"id": "3003789", "video_name": "1fe3c2ab-0f77-50a6-9a38-6b89b1e8ca09", "text": "islamic couple sitting infront of the Kabba and pray with their two cute with healty face childern, one boy and one girl. "} +{"id": "1005755", "video_name": "69df160c-20d1-538e-be30-c632ee951db6", "text": "lowkey portrait of a breathtaking and beautiful woman face, Loose hair waves tumble down in firy colors, with intertwined rainbow shades, burning hair, glowing skin "} +{"id": "8003922", "video_name": "cd7d67bb-f888-552f-b70d-f935ddf78954", "text": "professional man throwing money on air "} +{"id": "7003408", "video_name": "559f7d1a-0d17-5257-b4d6-889e6d2da09d", "text": "multiple camels walking towards camera from distance "} +{"id": "3005781", "video_name": "8242b8d6-85d4-57ec-a0b8-ebbb3e5f3117", "text": "anime and add a spaceship background in movement "} +{"id": "3006248", "video_name": "865836f5-8bd8-5ce2-ba51-fdb6d9396ae5", "text": "a man cooking food on a stove in a kitchen, cooking it up, cooking show, gourmet cooking, cooking, cover shot, best chef, commercial shot, as chefs inside cthulhu, looking into the flames, commercial photography, commercial photo, culinary art photography, cooked to perfection, intense smoldering, commercial photograph, with fire, wearing an apron, chef table, cook "} +{"id": "3003859", "video_name": "6b1c5b5b-6735-5d6f-80b7-ba99c5e6e765", "text": "a surfer dude cartoon character standing on the porch by the beach "} +{"id": "2003353", "video_name": "e901cc50-3f07-5f5a-876f-f2772beab397", "text": "In the misty embrace of the mountains, bamboo groves stand tall. Ninjas, masters of stealth, leap through the fog. A world of ancient mysteries concealed within the tranquil haze. Message: cant bring me down (Font: MODERN) "} +{"id": "0004359", "video_name": "07ab4c21-d53e-53df-ba04-7b61bfb93bc8", "text": "Shurpanakha then approached his younger brother, Lakshmana, who said that he is only second to Ram and therefore not worthy of her. "} +{"id": "1004761", "video_name": "581e9b76-8d82-577f-aa56-30653998cb73", "text": "A Chinese girl, 18 years old, standing on the street, expression of surprise, frontal view, night, frontal view, close up, horror scene, eerie, dim, 8K, graphic novel sketch, graphic novel style, 2D effect, flat color, flat color, gloomy painting style, Horror Thriller,mystery novel "} +{"id": "6003523", "video_name": "d301d874-8018-5d6d-937e-25c3136ce022", "text": "RAW photo, a close up portrait photo of 26 y.o woman in wastelander clothes, long haircut, pale skin, slim body, background is city ruins, (high detailed skin:1.2), 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3 "} +{"id": "7003328", "video_name": "d9edcf20-e896-5ca3-b8e8-bc2c19293041", "text": "When the ocean met the sky cinematic hd vivid color "} +{"id": "8002123", "video_name": "a4aedde6-6ca0-52c5-b86c-f99be0537173", "text": "Generate a captivating video scene featuring a person lounging on a plush leather couch in a luxurious living room. The room is dimly lit, with a soft, warm glow emanating from a roaring fireplace nearby. The person is dressed in a stylish leather jacket and wears a prestigious Rolex watch on their wrist. "} +{"id": "4003224", "video_name": "9f19b752-1636-5a91-a24c-0ad1cb44cb17", "text": "Mowgli with all animals elephant 16.9 3D "} +{"id": "4004944", "video_name": "1b144f1e-d3aa-57b5-a7b0-9102d456efdc", "text": "show a man next to a female lion in 1966. hyper realistic 8k "} +{"id": "7003893", "video_name": "b628876c-68e3-5858-b362-7034920d6fd1", "text": "Many deer had come with their children to drink water. "} +{"id": "2004381", "video_name": "7a021d3b-0108-590f-9d54-85efd7452cca", "text": "a drawing depicting the new world order agenda creepy realistic hd quality vintage colors "} +{"id": "0004898", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "banksy spray painting a stencil mural on a farm building "} +{"id": "5001819", "video_name": "30a8cffc-69b4-5185-8f72-93b25ffb2c3b", "text": "chef cutting vegetables in firs person "} +{"id": "8002175", "video_name": "9bceb7bb-5cc3-56a1-8822-0100d502ca4d", "text": "silhouettes of crowds seen from behind "} +{"id": "7003939", "video_name": "82c234cc-27e3-562f-843d-791d527df267", "text": "a astronaut running on mars holding a gun, cartoon, painted by herge "} +{"id": "7002636", "video_name": "275a2ee7-fad3-5f2a-bd30-3e896aea3417", "text": "a girl throws a white sanitary napkin into the pool and all the water from it is absorbed into this napkin "} +{"id": "3005562", "video_name": "31c00308-66e0-5cfb-a797-a953fd46abd7", "text": "high energy sparks in a dark room "} +{"id": "4003596", "video_name": "17897b96-6907-57a9-899c-376870f2b45e", "text": "two lovely cats boy and girl are slept "} +{"id": "6004300", "video_name": "b15616b9-9710-559b-b585-d088ecd88de3", "text": "In 2013, not far from the cat, a cat sculpture was installed. "} +{"id": "6004395", "video_name": "d57febde-88a3-5bb8-b24f-a6237a082d8b", "text": "Vlagyimir Iljics Lenin, Spellcaster and her disciples in an oily dystopia movie scene by Andrej Tarkovsky and Jodorowsky, Ancient Zen aesthetics symbolism, Celtic motifs, super8, wet and glistening pipes and cables, organic tech, razor wire, rainy color scheme, like etheral soundtrack made by Jean Michel Jarre, bokeh by Arri cinestil "} +{"id": "5001285", "video_name": "b4ccb111-63bb-592f-9cae-781a5447e0cd", "text": "men standing on a cliff pointing at a castle in the background. "} +{"id": "7003334", "video_name": "f822a997-3b40-5f24-9f0e-bd2b73f47768", "text": "hong kong in very heavy rain "} +{"id": "8003029", "video_name": "6515a586-1b1d-5b94-906d-eb01482418e6", "text": "In a future where time manipulation has become a deadly weapon "} +{"id": "4003316", "video_name": "a7bdfeac-1906-5ec6-ac48-e7049a9e617d", "text": "juice wrld playing a guitar in a desert "} +{"id": "8002868", "video_name": "a5057367-99a2-54b8-8db8-2ce603d0513c", "text": "beautiful blonde exercising hula hooping at a gym "} +{"id": "1003060", "video_name": "38401671-d022-5d69-a9d3-382b10c5cdff", "text": "Fantasy: Many serial killers have elaborate fantasies that they act out through their crimes. These fantasies can be a driving force behind their actions. "} +{"id": "0005926", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "cute girls in miniskirts making peace signs and smiling at disneyland, ultra realistic, HD colored hair "} +{"id": "3006702", "video_name": "9ff4b206-cbc0-5088-91fe-062fd8e7814a", "text": "A motel sign that says motel and a sign saying pool under it, a thunderstorm is gathering in the background. ar 2:1 "} +{"id": "0005567", "video_name": "1d11b64c-56e1-5755-afaa-ea952e508a4f", "text": "a white fox is flying through the skin, photorealistic renderings, 4k, uhd, 9:16 "} +{"id": "7002860", "video_name": "785924fc-0716-56b6-a19d-c159882c5a85", "text": "a credit card floating in space "} +{"id": "3005404", "video_name": "0c8d4596-a22b-559e-9391-cc5f301ff402", "text": "Colorful synthetic fibreglass hyper realistic texture. Post biology futuristic looks. The organism has a circular growth that moves slowly with abstract details. Is filmed close to capture details of the reflective and glossy texture but also granular look. Bokeh are formed in the background with a cinematic look. "} +{"id": "0005200", "video_name": "168b49a0-b163-5b5a-ba79-8ab6aa2e452d", "text": "princes saw the water in the stream, he realized that his tongue was parched due to thirst. "} +{"id": "6003174", "video_name": "8b43fecd-ba77-5518-ade2-2260397845fd", "text": "create a 16:9 video of a medium pizza with cheese and pepperoni slices the hot pizza and next to a glass of soda with bubbles on a wooden table "} +{"id": "3005439", "video_name": "e1445e68-f2ab-51a4-8072-fb794a17aab6", "text": "four pilots crash a monster truck "} +{"id": "7003945", "video_name": "47c53fcd-2d61-583c-a84f-0bd72a0a15ef", "text": "Overcast sky, thick dark clouds, intense rain like a waterfall flowing down the roof, trees tilting with lightning "} +{"id": "3005975", "video_name": "3d7c15ad-586f-58d3-bff9-47db2d2fc1bc", "text": "Pixar style animation film about ancient Tamerlane empire "} +{"id": "7002806", "video_name": "e6398f92-6b1b-59c4-9da7-0f4d1422e351", "text": "Move the stars and some dust scattered in the air from the desert sands "} +{"id": "2007419", "video_name": "6fc6b543-3c05-5698-8d5a-be8b56dabf07", "text": "alien men hybrid standing sideways on a skyscraper wall wearing a black cape, black and blue, yellow eyes, vivid colors, hyperrealistic, ar 16:9, 4k, in the style of stanley kubrick "} +{"id": "0005930", "video_name": "2366eda0-9569-5716-99aa-b196af4c3113", "text": "Frisk boy fusion Kirito black hair avatar for Discord "} +{"id": "6004264", "video_name": "1bba7602-b7e4-5c41-a317-2ac3176eaa9a", "text": "burning papers on the brick ground "} +{"id": "0004063", "video_name": "02923ddd-4df0-5e5b-852c-ee091ce72ff4", "text": "digital ways to a cleaner world "} +{"id": "8003401", "video_name": "77e845d7-a3af-5351-971b-6d24b15852ed", "text": "your imagination in neon forest in night in 4K quality with 10 min video "} +{"id": "2005825", "video_name": "99167cd4-f602-5a8a-b5c2-5a259ed7b289", "text": "Show images of the jellyfish transitioning from mature to juvenile state. "} +{"id": "5001364", "video_name": "c2f01fef-b650-5cb1-b4c0-405419dfed30", "text": "A dog is laughing in the room "} +{"id": "7002752", "video_name": "a253ab7d-73c2-5501-80b5-6d7ce01be4c0", "text": "Tears of the fallen kingdom ,Ganondorf laughs too hard "} +{"id": "6002429", "video_name": "f9d71550-6efe-5fac-b571-29ac513e7a2f", "text": "fast foods, cheese, red meat pork, baked foods, butter, milk, vegetable oil "} +{"id": "8003567", "video_name": "6f732fb5-6124-566b-8e40-0ac5f9dc223d", "text": "bella hadid as a sun princess "} +{"id": "1003382", "video_name": "3e54209a-86f6-5817-9937-f91c0bf765b9", "text": "We walk as if nothing ever happened "} +{"id": "0005374", "video_name": "19ba3025-b2db-504f-b736-0d6a6cad54d4", "text": "The male protagonist, David (30 years old), is a successful artist. "} +{"id": "0004602", "video_name": "0bc8a3ae-2259-5f5e-9bc9-8cfc480b4fc7", "text": "anime angel with long blonde hair opening his wing "} +{"id": "3006427", "video_name": "f8ea81f5-8856-5919-9ef8-3267d67722dd", "text": "Initial Meeting: Sarah and John first crossed paths at a local art exhibition, where Sarah was displaying her paintings, and John was performing a soulful melody on his guitar. "} +{"id": "0005642", "video_name": "1e8d501d-56eb-54f4-accc-8f4eb2f9f77e", "text": "Cartoon of doctor sit at Desktop background chart stocks "} +{"id": "3003399", "video_name": "5daa7817-cee2-5cb7-bc12-43dcf470c99f", "text": "a race of cars with wings that have eyes and mouths "} +{"id": "7002947", "video_name": "22ca39be-1601-521e-bace-53465057e2c6", "text": "Barbecue hairstyle: Bold head with braids on the back of the head. Looks like he is holding a gun and aiming at something. Realistic. The background is a thin Japanese guy. A nice man along the coast. Exodus written on a sign. "} +{"id": "0003658", "video_name": "413070b2-7858-51f8-9583-e72a7b3101e3", "text": "nymar driving a luxury car, show his face while driving. "} +{"id": "0003001", "video_name": "356e08fa-3459-5e43-9c27-f6b0a8e5ff4d", "text": "Describe a scene for a Thanksgiving card. Paint a picture with words of a festive sunset, a table covered with delicious dishes, smiling friends and family gathered around, and the beauty of autumn in the background. Convey the essence of gratitude and the spirit of togetherness on this special day "} +{"id": "2006878", "video_name": "96ff4b01-ce73-54e2-ae5a-beafd85c9893", "text": "the most delicious ramen in the world "} +{"id": "1003097", "video_name": "390299a5-6240-5bd0-b5b2-ad725ce41e42", "text": "a ballet dancer covered in sheets. Underwater, black and white cinematic lighting. Dancing aggressively "} +{"id": "0004314", "video_name": "06fd013a-8e97-535d-bb08-9b893ea1257d", "text": "post war ruins, smoke, zoom effect, cinematic, 4k, ultra realistic "} +{"id": "2004817", "video_name": "d5fc26b1-8d51-5121-b243-0b83caec6f77", "text": "Scene of a farmer tending to his fields and crops. High quality "} +{"id": "2003182", "video_name": "8daa023e-cfff-5f97-a6f3-f0010e3bcd4e", "text": "A warm family home, with animated family members gathered around a dining table, sharing a meal and smiles. "} +{"id": "5001407", "video_name": "c2e55a28-11e4-5ca8-a5fc-8a8cc40d9a30", "text": "all anciant god stand in the olympus and wave hands and dance Message: Subscribe for more (Font: SANS SERIF) "} +{"id": "4003080", "video_name": "bdd4784f-bbfd-50fb-97cc-ef3986c50858", "text": "a heroic personality with his hammer and moving forward "} +{"id": "4002186", "video_name": "cfdb7b2c-eb2e-59b9-83c6-7c4da8e37835", "text": "temples of light from india ancient monks in golden clothing, wise men, illuminated imagen: 1 "} +{"id": "0003376", "video_name": "3c78c79f-6a8a-5ba4-96a4-500e11171d44", "text": "A golfplayer on the moon ar 9:16 motion 2 "} +{"id": "3006372", "video_name": "bb0a97cc-7816-5a59-9e39-75df9c23f82f", "text": "man without legs walking in the forest "} +{"id": "0004596", "video_name": "0bae578a-459d-5160-a973-f1ece62dfa77", "text": "red balloon floating through a forest "} +{"id": "6002745", "video_name": "b7b9f7e7-e4ee-5452-92c1-990ddcec8129", "text": "Buddha sitting in a meditation pose with his eyes closed in an Investment bank office, with all the people around him dressed in suits. "} +{"id": "7003430", "video_name": "f11cd080-45b9-542d-952c-1aa1c98c6d2e", "text": "a room that displays a computer where i make my art. Has a futuristic set up and comes in purple pink neon tones. "} +{"id": "4004308", "video_name": "ad5d7e26-a135-5000-9b17-a33b88a73e72", "text": "library in dark basement with candles burning around and books thrown around with alien signs on books "} +{"id": "2004218", "video_name": "9f29da3a-036e-57de-96c2-8ee31294809e", "text": "a cake box with visable window "} +{"id": "1003133", "video_name": "39c08da1-aaba-5223-8462-2b868d77acae", "text": "Barbarian medieval battle against futuristic technological robots "} +{"id": "0005559", "video_name": "1ce962c0-a3f7-580b-acb9-eaaf33ff1415", "text": "two brother riding bicycle on the street , very fast "} +{"id": "3005928", "video_name": "0296bbd2-f7b2-5e2b-8f5f-f72aa6a3a5ad", "text": "proffesional photography of a city skyline, sunset, 8k Message: 1 Attachment "} +{"id": "3005136", "video_name": "ba53c2c7-58fa-5e6e-b4f9-fe9155d12e4b", "text": "a metal band in an abandoned hospital room "} +{"id": "7004550", "video_name": "62e5f126-3244-5650-b0be-63a8fe2dc20f", "text": "a woman walks into a room in a haunted mansion "} +{"id": "6003489", "video_name": "7650345c-913a-52a0-9999-8cfabcd09ee2", "text": "One cyberpunk dice rolling fast on a metal surface. "} +{"id": "0003561", "video_name": "3f962067-aa50-5033-8584-e282270fd047", "text": "Create an animation of a bean dancing with money falling "} +{"id": "2005863", "video_name": "f21d9cad-cc65-5055-a02e-219a748636c3", "text": "anger management group, drone view, circling around "} +{"id": "8001578", "video_name": "1bbb4821-8e07-5df0-8491-6e1aace72503", "text": "dream world, the child faces challenges that test his courage and determination. "} +{"id": "1003531", "video_name": "411146ec-783b-5c6b-b5c6-dce223f1f44f", "text": "beautiful girl with cat in the house "} +{"id": "4003461", "video_name": "bd260728-14c7-5b8f-a3d7-dfaf2d19c085", "text": "a meteorite going and hits the planet and the planet just blasted in 4k "} +{"id": "0003061", "video_name": "3653a132-1971-5c1a-ad9e-2e8a57661c3a", "text": "eldritch creature in the basement, full body, black and white, old style, grainy, low frames perscond, cctv footage "} +{"id": "6003899", "video_name": "4d795991-e7e4-5491-9e07-a0d549af5213", "text": "clear water drops falling on pink "} +{"id": "1006176", "video_name": "710e05b5-f57c-5b42-afef-28be45e36b72", "text": "white dragon in the sky, 5s "} +{"id": "0003963", "video_name": "00b95191-aeda-55f7-9d0b-49ff174f61fb", "text": "The scene opens with a group of young, energetic friends (diverse in descent and gender), dancing in a stylish urban setting. They are wearing fashionable, colorful outfits, moving in sync to a catchy, viral song. Suddenly, the scene shifts to a humorous challenge where each friend tries to master a funny yet challenging dance move. This moment is filled with comical fails and surprising successes. The clip ends with an unexpected, creative twist that delights viewers and encourages sharing. The video should blend a sense of joy, friendship, humor, and trendy dance moves to achieve maximum appeal and shareability. "} +{"id": "1005501", "video_name": "6536025d-32f6-59b2-a815-7585a1ea4ad5", "text": "Tobuscus wearing a green shirt playing guitar on the moon "} +{"id": "2006884", "video_name": "8d06ef48-8816-5e68-ab4c-1cc6829a6621", "text": "male lion roaring and shaking its mane in 4k "} +{"id": "7002040", "video_name": "8d924ed5-a958-5d10-88a5-1978dd67fc86", "text": "young woman grow plants and trees Message: 1 Attachment "} +{"id": "0003572", "video_name": "3fc15904-61a8-5d41-b253-8f44b0824204", "text": "A wild feywave dryad riding a shire horse over the meadow "} +{"id": "7002808", "video_name": "9b1d2cce-416e-5ee6-ba30-ba683b9d375a", "text": "john f. parker beside abraham lincoln full body hyper realistic "} +{"id": "1004247", "video_name": "4e9b0966-fdde-5d43-bed5-3b8bb6eeb979", "text": "Guided by a map found in a bottle of rum, Jack Sparrow and the crew is on a quest to find the legendary treasure . Photorealistic, high quality, clear eyes, highly detailed facial features "} +{"id": "2005190", "video_name": "d121cda3-ca0e-5507-9720-4f6467365350", "text": "a close up , vintage style film of a colorful of an savage toad viking yells with joy when he saw when he is on the ship , the new lands ,pixar ,dramatic "} +{"id": "0005378", "video_name": "19c0a96d-5dc3-5a1c-8de9-774f87e8bb4f", "text": "elephant flying in a fighter jet highly technical ultra detailed excited expression on face shaky video "} +{"id": "0004058", "video_name": "02747e9c-097b-5f82-9926-4a356d73437a", "text": "and the fly agaric mushrooms grow "} +{"id": "3004199", "video_name": "a1faa1b7-87a9-5499-b77b-dedb49cc556b", "text": "tracking shot, super realistic, man riding a horse, sunset, open wheat fields, a lot of camera moves "} +{"id": "7003528", "video_name": "3c53cac3-2324-5610-b6f4-02002025efd9", "text": "Greta Thunberg eating a big chicken wing in KFC "} +{"id": "4004397", "video_name": "f70a1bfe-eeab-5f2f-8b79-71c848cf6a0c", "text": "Tom,Fascinatedly examining the time machine,Amazement,In their laboratory,3d animated,8k "} +{"id": "4002999", "video_name": "736cd0fa-bbe9-5fbe-b565-61dc94a74dea", "text": "a 23 year girl, black shoes, blue eyes, helping 50 years old lady in the garden "} +{"id": "0005835", "video_name": "21f35a4b-1959-584e-b615-f0dbe7cea5e6", "text": "teens fashion waiting at train station "} +{"id": "5001346", "video_name": "97fc36b1-626f-5476-8cea-5014b4880267", "text": "a supernova creating an new universe, the Big Bang "} +{"id": "7003091", "video_name": "ed238956-fed6-5a5f-9990-e3e4701d9a7b", "text": "An Albatross driving a pickup truck runs along a coastal road in midsummer daytime. "} +{"id": "2005720", "video_name": "87cca5bf-4862-52b3-99e1-a4f12573756e", "text": "move the head from right to left slowly and move the eyes from left to right slow "} +{"id": "6003954", "video_name": "be85fbb0-0318-58d0-b9e8-5c3acc2fdf94", "text": "future, everything looks film Tron, flying cars, neon clothes, throwing disks "} +{"id": "8002435", "video_name": "5fa83090-486f-5d48-a593-74c41961fc99", "text": "boy with the princess frog walking by the cuba "} +{"id": "8001869", "video_name": "bd98f802-25fe-5115-95c0-b630828f9e1b", "text": "Icaria: Unveiling Hidden Powers in Forgotten Greek Mythology "} +{"id": "2005518", "video_name": "2ca96e79-725b-54bb-94bc-2ccc361d0c25", "text": "a man sitting in a cyber studio "} +{"id": "1004964", "video_name": "5bb23aa3-738c-5a3c-81ed-eae0a6316963", "text": "A white elephant in the jungle "} +{"id": "0006967", "video_name": "35f9d978-cdd2-5be8-988b-d8d3b945b52a", "text": "Kim kardashian with Elon musk walking , hyper realistic in 4k hd "} +{"id": "3006393", "video_name": "57668422-be35-5cce-b6b9-382e0797cc03", "text": "witch to scenes onboard the ship, where the sailors revolt. Rapid editing accentuates the chaotic energy and collective will of the crew, epitomizing the Constructivist idea of societal mechanization and function. "} +{"id": "7003282", "video_name": "70bd98d4-15e9-5841-bae8-3f5034c6c109", "text": "giant egg hatching with eldritch monster claw Alejandro Jodorowsky 1970s art surreal black and white mystical shaky camera "} +{"id": "2005435", "video_name": "2a2231c8-ad4c-55eb-9b70-1bcffd4b7c35", "text": "a pan upwards of a gigantic tree with a house built into it "} +{"id": "7002287", "video_name": "290cd475-8f98-5d20-bf7f-defd5540aeed", "text": "use shanghai skyline as background Message: DIGITON (Font: MODERN) "} +{"id": "2003438", "video_name": "2e252d01-e938-5790-9548-07ac3672152a", "text": "a koala and a kangaroo walking in the forest "} +{"id": "1003569", "video_name": "41d567ff-0a11-5884-a713-595f82ca1d74", "text": "flyover of the kedgwick river in new brunswick, canada "} +{"id": "7004790", "video_name": "fe43ed98-4858-5fd7-850e-ffbe49d18c54", "text": "king for a day music video by pierce the veil "} +{"id": "4003438", "video_name": "2c541b4f-a46b-5903-af87-b34556f31234", "text": "Create an illustration of the cozy atmosphere in the thrift shop with its unique treasures. "} +{"id": "2005083", "video_name": "ce07d59d-9658-58f1-b4e7-6a111cbc7204", "text": "3. Absolute, relative, and imperfect aspects in varied association. "} +{"id": "1003908", "video_name": "482c6cd9-f83b-58f4-b706-b27f33d0d1d5", "text": "backrooms, sprinting down corridors, chased by shadows, black in white, expired film "} +{"id": "8003571", "video_name": "78b719ed-88e5-576e-be89-aeb7d4e0f14c", "text": "The ant, hard at work carrying grains and seeds to her underground chambers "} +{"id": "6003260", "video_name": "cf4a3730-92e3-5598-8ce5-46668a490676", "text": "male model in futuristic swimwear is walking on a catwalk "} +{"id": "2005897", "video_name": "5a4b614a-4e5c-5a3b-b7a9-e93dd9dafe16", "text": "Meticulously merging microphotography and artistry, our endeavor celebrates the intricate web of life within this ecosystem. "} +{"id": "7002212", "video_name": "92ae15b5-bcc1-5f71-a0e6-e099932b2b76", "text": "a doctor making it rain money on his doctor friends, Pixar style "} +{"id": "0003482", "video_name": "3e658360-e51e-5e80-b39f-b63af5c95e24", "text": "simple shadow of a woman from window smoking "} +{"id": "3003970", "video_name": "974d8a6a-77fd-59b6-a9f7-adc408440edc", "text": "Princess and prince kissing at night in a forest full of fireflies "} +{"id": "2005183", "video_name": "f1399541-8f4a-5db5-ac86-245a33a92149", "text": "a cartoon of Kim Jong Un transforming into Optimus Prime in the style of HR Geiger "} +{"id": "1006415", "video_name": "7579a212-af0e-5801-a9c3-4d8acf4396ba", "text": "a haze of grass moving with the wind direction on a sunny day. "} +{"id": "2003407", "video_name": "8b275c04-cedc-5f3a-b429-4285dd2f8372", "text": "whale skeleton floating in a staircase "} +{"id": "1005087", "video_name": "5dcbf8e0-a97e-5ae2-8607-0aac92a95eff", "text": "white mapple leafs falling. Pepsi blue background "} +{"id": "7002950", "video_name": "094027df-4f0c-52a7-bfdb-43116f8ea20d", "text": "A town with Oliver and Dog standing in front of their cozy home, showcasing their strong connection. Oliver could be holding a leash, and Dog looking up at him with eager eyes. "} +{"id": "1004188", "video_name": "4d70ea4a-e2e1-5970-aa64-25962582ed69", "text": "a round cartoon sheep with eyes and ears running over grass in sunlight, it suddenly stops and starta eating the grass, cartoon style "} +{"id": "1004594", "video_name": "55824ea1-4d83-5f5a-924d-17cf1189cb7f", "text": "The inhabitants of the magical forest confront the Dark Wizard with great effort and sacrifice. After a tough battle, they emerge victorious thanks to their friendship and magical powers. Dark Magic "} +{"id": "3005801", "video_name": "9533e4bb-fd1b-54d0-8c21-d5170d78eda1", "text": "helmet wearing man sitting on a couch and staring a blank wall "} +{"id": "6002428", "video_name": "e30a0284-342a-51ee-9461-794c27d461c5", "text": "Town with glowing sunrise village explantaion 3d mockup.4k illustration "} +{"id": "2006030", "video_name": "b41d59ef-8629-5ac6-b6db-19169236703b", "text": "police officers standing in superhero poses Message: FRAUD (Font: MODERN) "} +{"id": "4002969", "video_name": "e99f085f-1364-5d06-b0dd-28a0b6bb0f83", "text": "in a post apocalyptic city a billboard with an advertisement of a woman holding a discolored liquid in a bottle , realistic 16:9 "} +{"id": "3006530", "video_name": "8ebd7b31-1ffa-59bf-8323-7d72fbefae53", "text": "the word evolve in big letters made up of twisted plants and leaves "} +{"id": "6004988", "video_name": "27fd75c5-7070-5976-a4c5-af3c215683ff", "text": "business person making a presentation in an office with a dashboard in the background "} +{"id": "2006772", "video_name": "30367d26-eb8f-5d23-90b5-f0e1f438c9ea", "text": "a group of overweight people raising their hands asking questions in workout gear no deformed hands or faces "} +{"id": "1005350", "video_name": "625fa626-9a98-5968-98e8-e51dde0f3345", "text": "A white, cartoon and cute bunny called Fluffy, a tall fox and a small squirrel are adventuring in magical forest togethe "} +{"id": "1005326", "video_name": "61d20e2f-a3f1-5548-be4f-1ecedfad120c", "text": "a large hotdog jumps out of the pan and runs around the stove "} +{"id": "0006711", "video_name": "3189bfef-32a4-54cd-acab-5ed3199427b0", "text": "the word \u201cMaskMonger\u201d in creepy glowing green letters with purple light night flashing behind the word "} +{"id": "3003793", "video_name": "d0599786-99c0-5b33-aed2-4e3c566fb4fc", "text": "I wanted a picture of a female admiral leading a battle "} +{"id": "2003664", "video_name": "222ba483-7176-59bc-870a-b3d5eaf8c3d6", "text": "3D . REALISTIC. 8K QUALITY. MOVEMENT. David and friends cleaning, painting, setting up a makeshift stage, and hanging a new sign in the jazz club "} +{"id": "2005998", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73 year old Teddy Pendergrass speaking to the camera, YouTube video, interview, shoulder level shot, 2023 "} +{"id": "6004877", "video_name": "8e440296-aeba-5b98-9e90-62fd92b482eb", "text": "photo realistic garden gnomes fighting in a UFC cage match "} +{"id": "4004941", "video_name": "f63f9b31-599a-5c5d-8e5a-74a4984f3107", "text": "nebula exploding in the clouds with loghtnings "} +{"id": "6003289", "video_name": "c11ec53f-6245-5789-ad69-c2ef73908185", "text": "candle light moving because of air from window "} +{"id": "8002015", "video_name": "4510e940-6e1c-5da8-8388-7ace16cbe01d", "text": "colombian city downtown Message: wilcastano (Font: MODERN) "} +{"id": "1006394", "video_name": "75063489-2f3f-5b10-a136-25277db7535c", "text": "clay vase water coming out of gold vase water coming out "} +{"id": "4002566", "video_name": "50de3cc9-83f2-5cd6-a44e-98fb12133664", "text": "Show the setting sun in the evening, casting a warm glow. A hunter should be approaching the tree where the pigeon is resting, holding a net. "} +{"id": "8001673", "video_name": "3f3aaa78-941c-5105-b577-9341724bb15f", "text": "willy wonka gets raided by the feds "} +{"id": "1003263", "video_name": "3c0e809e-79eb-539d-ac3b-55b5723b32c3", "text": "A group of little ants walking in the tropical rainforest, documentary style "} +{"id": "1003217", "video_name": "3b44fb29-7193-5c2a-879e-b86fcba591e4", "text": "Going to a water park but water park turns into lava "} +{"id": "1006779", "video_name": "7c3bfb05-42f4-55e3-8699-28ff59c02371", "text": "A big cat sees the small rooster, Ghibli studio "} +{"id": "0004866", "video_name": "108dc839-526d-5d0b-9786-e18ce603fe97", "text": "A montage of homes, families, individuals that visually represent diversity in age, location, marital status, occupation, and house condition. "} +{"id": "7004384", "video_name": "e059ebe4-7271-5c6b-a07e-a982da1e5212", "text": "Spiderman making an online dating profile on a laptop 4k, cinematic "} +{"id": "4003345", "video_name": "1c665675-a6a1-555c-b532-e0a7eb0c9f53", "text": "person jumping from a plane to skydive, beautiful sunny day with strong wind in the air "} +{"id": "2004231", "video_name": "0f877cf7-da0e-582f-b667-2fb771e8e17a", "text": "create a realistic motion picture of treasure discovery Ancient gold jewelry collection "} +{"id": "6002512", "video_name": "e7f810b0-62e1-59c9-87c2-d692ebc4eff7", "text": "highly detailed, high resulotion video of two robots that resemble university students studying together. The robots should be seated at a desk in a university library in front of computer screens "} +{"id": "7003548", "video_name": "d1a41821-4d90-5f56-9086-44e12420af89", "text": "people wearing beach clothes during winter as they have had tabasco "} +{"id": "3003368", "video_name": "633accc9-7f1d-5340-b2e7-e469bc8b0a18", "text": "flying earth, Angel riding planets, dancing elephants, red and green dress with golden finish, peacock, prince joining the event, camera zoom, water fall, flowers, cinematic zoom, realistic "} +{"id": "2004483", "video_name": "712b62a2-e69d-5240-a092-f9922c272c2a", "text": "a luxury bag flying as a balloon in the city "} +{"id": "1005074", "video_name": "5d9cba06-fbe9-570d-a1b6-ce705b5742ae", "text": "n winter, a tree stands in the cold wind, with a group of sparrows chirping on the tree "} +{"id": "6002843", "video_name": "cf5849ef-00e3-5043-9b45-cf293bd534bc", "text": "guy drowning surrounded by jelly fish "} +{"id": "8001516", "video_name": "084c2b28-9013-54c5-b776-aa645eca9853", "text": "First prize for best honey at the county fair "} +{"id": "1005167", "video_name": "5f1a94aa-17bb-5665-ba06-6869d7e1a8a1", "text": "couple walking holding hands, wearing Christmas colored clothes, smiling in love, green screen background, "} +{"id": "1003809", "video_name": "4657e51f-e1ec-5fd6-97f2-3c960a655f78", "text": "one swallow flying in the sky with white clouds "} +{"id": "6003589", "video_name": "4fe7f6ed-5273-5ead-a739-f8ad476c896c", "text": "80s vampire, beautiful, dark, at the beach "} +{"id": "0006313", "video_name": "2a860d39-63cb-5786-a5bb-bfc882936a69", "text": "an 8bit platform video game of a pub, you are a bartender serving lots of drinks in the game, bright colours,90\u2019s style,8k "} +{"id": "1004996", "video_name": "5c59ce7d-9388-5afc-ba3d-a6b620d99f31", "text": "Curiosity and a willingness to learn are treasures that enrich our lives. Just as Kiki gained wisdom by observing and listening to others, we too can learn valuable lessons from the world around us. And by sharing our knowledge and showing kindness to others, we become sources of inspiration and positive change in our communities. "} +{"id": "3004159", "video_name": "125f0905-41c8-57db-8ff3-c50088a981e1", "text": "happy boy, disney style, white background "} +{"id": "3004545", "video_name": "cd32c1e2-f6df-55cc-a4b5-440a1c0da0b9", "text": "yAnAn ultra realistic video of elon musk and mark Zuckerberg arguing hd, 8k, ultra realistic . Background; futuristic, monochrome colours, gloomygloomy, and cloudy. "} +{"id": "2003350", "video_name": "66d9eb08-2af3-5e3d-98ad-85dac19691f3", "text": "Police beating Scooby Doo in the street in a 1970s tv cop drama style. "} +{"id": "3005989", "video_name": "a98fef29-38d7-5fcf-8863-2dff48ebf614", "text": "a little girl playing in a field, throwing paper airplanes that become flying hearts. "} +{"id": "2004433", "video_name": "484d47f7-c20a-5d6e-9b40-f0282d8a8b6a", "text": "She closed her eyes and took a deep breath. She whispered to herself end world "} +{"id": "2006027", "video_name": "0fd4f54e-1afc-51cd-91fd-86d63d32b986", "text": "Ibn Battuta crosses the sahara with camel caravan "} +{"id": "7004158", "video_name": "15ad921a-d4da-5544-8eb5-d9eee5594884", "text": "a pov of a passenger on a train with a white walls moving im an aquarium "} +{"id": "8002802", "video_name": "7fab205e-4afa-509d-802c-41cf6caef405", "text": "a man sitting in a chair holding a gun and then the camera turns to the five armed men with him "} +{"id": "7004824", "video_name": "da2cd281-535e-5e5c-bd39-3db2f0b5adf1", "text": "a Donald Trump flying in underwear "} +{"id": "0004484", "video_name": "09be6b68-2cef-5b3a-999b-c911fa957baa", "text": "a steaming hot bowl of delicious soup at a high end restaurant, depth of field, nikon DSLR camera, 3 point lighting, cinematic camera angle "} +{"id": "2003968", "video_name": "a4165018-1b7f-5a5e-85cb-8ea60d847227", "text": "a psychedelic moose man going into a portal to a frozen kingdom from a regular forest "} +{"id": "0005967", "video_name": "242d4657-6abe-53d8-87da-2237cde129ad", "text": "Genshin imapct anime in Fontaine location with focalor (Hydro archont) "} +{"id": "8002528", "video_name": "4da10703-e31d-568c-b6b1-c564d8cd0fcf", "text": "tsunami in the Sunda Strait caused by the Eruption of Mount Tambora "} +{"id": "0004269", "video_name": "0629aa67-88f7-5016-8b7d-c1f293f8c838", "text": "traffice outside a tunnel on a scenic road surrounded by mountains "} +{"id": "2004800", "video_name": "6df3ddb2-2014-551b-8977-c251065da67f", "text": "bilbao,her hair blows lightly in the wind and she looks into the distance, forlornly 12k 15seg "} +{"id": "2007669", "video_name": "b826104f-de91-553b-885f-551d4e64c054", "text": "anime character with afro eating ramen "} +{"id": "1005889", "video_name": "6c53891b-c822-52f8-8298-25774046564c", "text": "The atmosphere is filled with tranquility and a sense of wonder. The jungle seems alive, vibrant, and full of secrets waiting to be discovered. This scene captures the essence of the wild, where every creature, big and small, plays a unique role in the delicate balance of nature. "} +{"id": "0003721", "video_name": "425b43c6-e6ae-5650-b0cd-3aa97f3e4cc3", "text": "9 hikers in old fashioned winter camping clothes setting up an old tarp tent on the side of a mountain range, there should be a campfire in the background and old fashioned camping equipment "} +{"id": "7003130", "video_name": "d80935ae-1850-595c-99be-f0f94bc469a5", "text": "kids in Christmas dress are decorating the Christmas trees with leaves and lights,ar16:9 "} +{"id": "3004977", "video_name": "2a92bd63-ad98-53ac-91a3-abff39194081", "text": "low resolution cartoon fan blows papers around the room "} +{"id": "4003445", "video_name": "791f33ca-64df-5edb-84dd-dc0aa4f5d5f7", "text": "horrifying footage of a face appearing on the sun in the sky, UHD, 8k "} +{"id": "6004515", "video_name": "89c2c1ad-ce22-55bf-b868-afbaa939af6b", "text": "Guy rolling dice at a roulette game in vegas "} +{"id": "0004313", "video_name": "06fa8f8e-f8a9-5431-ae75-84ed2f36e18c", "text": "A floating city over our planet "} +{"id": "1004155", "video_name": "4cfe84d0-54ee-5183-beb4-79a7044efec3", "text": "realistic santa claus running in a street full of people "} +{"id": "0006424", "video_name": "2c201357-6dce-524a-9a63-f2ccf468e23e", "text": "Atlantic sea, rain, storm, submarine is slow moving, sea wave slow moving, thunder, super Resolution, cinematic lighting, 8K, super detailed, wide angle, "} +{"id": "7004856", "video_name": "315f18a6-9c9c-59ce-91b1-d797a93384ae", "text": "Beautiful woman walking in lotus pond "} +{"id": "2004944", "video_name": "550a2036-e22a-5e92-aa9b-252f78750456", "text": "viking ships arriving at the beach "} +{"id": "0005068", "video_name": "1420bf97-f1fc-5000-ad23-e039090d7345", "text": "Chinese temples with a solemn and mysterious appearance "} +{"id": "3005250", "video_name": "3e09ab9b-3bf9-59d2-8348-aa380a6b518c", "text": "a beautiful woman dressed in white walking in a grassland with cinematic style "} +{"id": "4004280", "video_name": "0211fff9-35a3-5668-9959-59325a9fe906", "text": "a sunny day on tropical beach, there are palm trees and small islands Message: BAKLAVAKINISSS (Font: MODERN) "} +{"id": "2007694", "video_name": "a62a4fce-4c64-5045-8fbf-6866e624fbf9", "text": "robots controlling the world anime style "} +{"id": "0005823", "video_name": "21c9e727-80e2-5129-a11b-ba66ddff3927", "text": "Primary school \nlady teacher angry in classroom, pointing finger and talking, looks angry realistic "} +{"id": "1005902", "video_name": "6c812b36-40ba-52e1-b569-d83e00cf3261", "text": "A child is using a nebulizar at home, smell and health "} +{"id": "2003844", "video_name": "b7e1ab4a-6cd2-5986-965b-edfd0a967da2", "text": "lake, cottage, switzerland, alps, mountain, pan out to earth "} +{"id": "4004519", "video_name": "b78ac3e6-3116-5d3c-a18d-35efd635ff0a", "text": "giant starship in space surrounded by small warships, starwars style, cinematic, epic battle, 4k "} +{"id": "4004491", "video_name": "40935cf8-b0c9-5fea-953e-9539c82c4caf", "text": "create a super high defenition video of an alien invasion coming from outerspace, to destroy the leaders of earth, set in the year 2366 "} +{"id": "6003931", "video_name": "41497e73-7fba-5cfb-8ff3-94ce057c14f2", "text": "a distraught looking couple sitting with their hands on their face crying profusely over their depressive situation "} +{"id": "3006678", "video_name": "af4850bc-0689-5df1-943b-fc1ec138382b", "text": "a scorpion made of glass crawling around in a dungeon "} +{"id": "0003267", "video_name": "3a6788d9-d655-5338-8b39-71a6cae3c175", "text": "Zooming into a Cool tough electric mechanical shiny brass robot dog with reflective sunglasses on a surfboard surfing down the face of a large blue surf wave, GoPro, action camera, cinematic, unreal render, photorealistic, perfect form, high definition, intricate details, 8k "} +{"id": "6002163", "video_name": "5d46765c-3315-518a-bce0-18b057b24463", "text": "Blood was spreading and people were struggling on the ground "} +{"id": "4002444", "video_name": "84e8cf72-087e-5ff2-ae15-485444d8230e", "text": "a cute little boy in forest with a lion in friendship way "} +{"id": "2004144", "video_name": "70475f6b-2ae4-53af-9eee-409725ed94a0", "text": "From behind, the Little Prince and the Fox gaze at the moon. The Little Prince has wings on his back. The camera slowly zooms out to reveal the vastness of the universe. "} +{"id": "6003272", "video_name": "e6f8d248-2e99-5a88-993d-45c7f6ed7421", "text": "a happy woman goes to the spaceship on the saturn planet , stars are on the sky, woman is jumping and after goes again "} +{"id": "4003212", "video_name": "fb495945-a40d-5c44-82b9-193469a20138", "text": "Yankee Stadium during a half time show Message: UNIBETS (Font: MODERN) "} +{"id": "3004752", "video_name": "21dea980-b278-5d65-a5e0-5db402992980", "text": "words on the body why note? "} +{"id": "1005224", "video_name": "6028e614-2e6f-5ead-83ad-1fc3c5734c89", "text": "high quality scene of a man in the future finding an ancient space faring vessel "} +{"id": "2007348", "video_name": "0f358646-a508-52c8-b224-76e3ad561a56", "text": "Photoreal Chimera rising out of the mist above the trees. 16:9. dramatic, night. JJ abrhams style "} +{"id": "8003720", "video_name": "d20d24a0-b82c-5692-897b-dde0a26471e8", "text": "a dark creepy mansion at night in the rain, high quality 8K "} +{"id": "8003376", "video_name": "e087fa19-be34-512e-9d76-946a02417b9b", "text": "a Indian man doing a have deadline in gym "} +{"id": "3006149", "video_name": "9447a754-7bfd-5c72-8e98-f739bdaa14b3", "text": "1920s silent film, alien high quality standing center of camera, full detail "} +{"id": "0004906", "video_name": "113b28c8-5b04-593b-a5b4-464414b4a7d3", "text": "A healthcare worker tending to gas victims "} +{"id": "6002723", "video_name": "1d239d0d-ff8b-5f82-8874-dfcf02453925", "text": "Holding hands with a cross in the background "} +{"id": "2003063", "video_name": "30387ce9-1528-50a7-a14a-ba6a27038544", "text": "Radiologist happy after looking at their computer classifying an ultrasounds as normal "} +{"id": "2005002", "video_name": "c2be83ed-69de-589f-927c-f4efe83e41a8", "text": "location is the chao garden from sonic adventure 2, pikmin are dancing "} +{"id": "4002228", "video_name": "093424aa-dd1c-5f3b-88ad-ca24146ae506", "text": "Create a concise and engaging social media post or informative content about the impact of excess sugar intake on weight gain. Highlight the connection between sugar, insulin spikes, and fat storage. Encourage awareness and healthy choices in a way that resonates with your audience "} +{"id": "2007622", "video_name": "171eee10-ca85-5a12-8fa9-eb0d97be71a8", "text": "human body made by generative art "} +{"id": "3005757", "video_name": "332c08dd-35d0-56b5-abcf-2fa6a846f745", "text": "baby naruto wearing hokage cloak sitting on kashi shoulder smiling "} +{"id": "1004723", "video_name": "5799dc4d-42a1-5e1f-808e-09734e4ad251", "text": "Opening scene with a black screen. "} +{"id": "8003540", "video_name": "5ea8fa51-e71f-5e80-8663-4048449b10f0", "text": "A story about robot life in a cyberpunk setting. "} +{"id": "6004771", "video_name": "c31f9119-6e71-50b3-a798-9e35929dcbd3", "text": "Transforming into Monet style dynamics Message: 1 Attachment "} +{"id": "4003795", "video_name": "a5247495-0f6f-5778-b0a6-e8a82db466a2", "text": "fish evoluting out of the water "} +{"id": "3003990", "video_name": "019b7cc5-e90b-50f9-a4da-3bad092e30e5", "text": "suv driving through blue ridge parkway at sunset, shot on arri alexa with 35mm "} +{"id": "2003966", "video_name": "848afb4e-1a24-5d10-8278-8bcd0827bd3d", "text": "Computer designer work, hyperrealistic, HD resolution, 4k, high contrast, 65mm panavision "} +{"id": "7002747", "video_name": "b1576e9f-4fd7-575a-8413-e43d9ca387e4", "text": "what a dark soul look like "} +{"id": "0006637", "video_name": "3002c696-6a79-5ad7-b5f9-0318d30e7895", "text": "peacock realized that the pond had only granted one wish per person, and that he could not undo what he had done "} +{"id": "3003928", "video_name": "1d687c16-9501-5726-b8cd-3610e374024e", "text": "a black ford mustang drives fast on flat water "} +{"id": "8001369", "video_name": "c9aadfe5-3917-5192-b256-312eebe03496", "text": "natalie portman is lounging on the beach "} +{"id": "4004371", "video_name": "da3c498a-dfe1-55b1-88de-65c56c8e5de7", "text": "pizza animatronic action , movie lighting, crazy, movements "} +{"id": "8002125", "video_name": "f7bec60e-578f-58b2-9c07-f5a20b4cfc1a", "text": "blonde girl parading in a bikini with a very sexy body on a beach "} +{"id": "7004705", "video_name": "bb1641f5-9b7f-54f0-8b33-0a798d049439", "text": "a dog with a sign that says Welcome "} +{"id": "1005471", "video_name": "648166ad-ecbe-5731-ba7d-e84f66a37b7e", "text": "I was surprised by the result! "} +{"id": "2004793", "video_name": "c5e86390-64fe-522e-a153-05aaccb766a7", "text": "Inside a surreal and vibrant game arena reminiscent of a giant fruit garden, complete with oversized fruits scattered around. "} +{"id": "1006623", "video_name": "797020f1-4c59-5bb7-aeb4-d7e609aac8e0", "text": ":man in space suite floating in space "} +{"id": "4004018", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "dolphin suddenly appears over the rainbow "} +{"id": "4003878", "video_name": "6b2656a4-43a4-5663-9be0-b0119f07cc97", "text": "dream Land Arielle, in 4k, hyperrealistic "} +{"id": "7003593", "video_name": "0aa9c5f1-7636-5aa7-98ef-cb3813d40fb0", "text": "friends see each other for the last time "} +{"id": "8002622", "video_name": "ef34df6d-c18d-58eb-b266-c3c4987caedc", "text": "geometric time travel space assistance on a tuesday "} +{"id": "2005108", "video_name": "06261476-5bd9-5de9-875f-ebc7af234939", "text": "falling star from the space perspective. In the backgrond there is a galaxy and some stars and nebulae "} +{"id": "6003290", "video_name": "89c45a52-8aee-5232-b38a-5d94c29c21d9", "text": "wong kar wai movies edits pieced together 4k "} +{"id": "0004515", "video_name": "0a5309ff-ad4f-5318-a9c6-3135b49868e3", "text": "A beautiful and cute east asian girl is speaking "} +{"id": "6003563", "video_name": "adc91f7b-e8f6-5a37-9ef8-8ad256519d1f", "text": "concept art game character pixsar style "} +{"id": "0004903", "video_name": "112ba795-03a1-5546-9ec0-d4d763ba084f", "text": "customer service agent talking to a customer with simle, her desktop has a wide screen showing the customer profile. "} +{"id": "1004825", "video_name": "592b9363-50d9-59eb-88b4-e998ab71465e", "text": "the crested kite soars over the desert "} +{"id": "1006478", "video_name": "768cb875-ef05-592f-976f-d8aa7e06a377", "text": "footprints appearing on a beach at sunset "} +{"id": "7004894", "video_name": "ac6c0e77-bca6-5eb9-a170-a818064faa89", "text": "Show colossal dinosaur footprints in rocky terrain, hinting at their immense size. "} +{"id": "0006183", "video_name": "27d2e89f-f7c0-5ada-a3dc-8efc581cd1b5", "text": "clouds forming a message I LOVE YOU ultrarealistic, 32k "} +{"id": "5001855", "video_name": "abc8b348-fde5-57ef-b4df-e915cadf0174", "text": "A tennis player who is doing a service but he got a robotic arms "} +{"id": "0006279", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "Dutch windmill slowly turning in the wind. Cows on background and high grass in forground moving in with the wind. Sunny day. 30mm film "} +{"id": "4004111", "video_name": "def8b398-a967-5f87-849f-184b1d541c1c", "text": "realistic video old samurai hero , lonely , on the top of the rocky, moutains, clouds, flying dragon in the sunset "} +{"id": "2003013", "video_name": "544f5a99-0c79-5a4c-8190-225b56a3712f", "text": "drummer under water with fishes violas trumpets and dancers "} +{"id": "3006605", "video_name": "d9c670e1-0cbd-5253-8f65-95524b33d721", "text": "create a video of a beautiful female doctor speaking about top 5 benefits of drinking beer every day "} +{"id": "4004934", "video_name": "492fdd9e-e7c3-55d2-b063-8e93c98e7f25", "text": "pepe the frog on a crusade "} +{"id": "8003904", "video_name": "022b0730-ca19-5566-a640-8edb84536790", "text": "Many dollars Message: Imalay (Font: MODERN) "} +{"id": "0004787", "video_name": "0f245125-7c39-5131-81e9-5b0af594a368", "text": "A fashion model wearing a black and white fur coat walks on the catwalk and moves "} +{"id": "4004318", "video_name": "7616a6d8-7586-5e40-b20b-863d9078b2a2", "text": "The cat sat down and talked "} +{"id": "7004204", "video_name": "a8dfb2bd-3785-539a-a20e-9441191e99f4", "text": "mountain in background, walk a man path 16.9 "} +{"id": "6003782", "video_name": "efc3f189-18b5-5a06-8fcf-a2a10b92b77c", "text": "world war, 20 movies, scary Ghost, blood "} +{"id": "6004164", "video_name": "01687606-db39-5abf-8208-62f77b3ce991", "text": "old lady dancing hard on a train with a lot of people "} +{"id": "0005684", "video_name": "1f4d5e56-0168-5ecc-b7ee-5e9579bf777c", "text": "a cute animated manga boy with white hair swimming in the water "} +{"id": "2005017", "video_name": "5a1de2a2-1bb5-516b-b6f4-0b1962774880", "text": "Night, futuristic style design shows a yellow female robot holding a weapon with half her body in deep water, walking towards the front, lightning wave style, realistic human body rendering, bright, volumetric light, hurufiyya, anime style character, Photoreal,masterpiece, 4k, best quality, high detail "} +{"id": "2005328", "video_name": "4ca06b25-98a1-58bf-9383-8f65036486f1", "text": "A Spanish and Mediterranean style home in the hills of Studio City, Los Angeles, California, Romantic archeture, a home in the hills with a view of the valley, it is a spring day time shoot of the home, a light breeze, the backyard view "} +{"id": "0005343", "video_name": "191bfe57-690e-5a19-9b8b-1ab93e3140fd", "text": "A man is travelling in train throgh the nature to explore new places "} +{"id": "6004733", "video_name": "48b4fd52-8a26-553a-9f8d-818661d4d84b", "text": "UFO Flying Over a Village, in Black and White, 1970s Film Style "} +{"id": "5001236", "video_name": "fe73807f-3920-50b1-a876-f61c4dd2c2e2", "text": "the interior design of a shopping mall "} +{"id": "3005650", "video_name": "f9a4d4c5-76f0-5473-bab9-251bcba032b8", "text": "macro close up of an eye ball that is white and cloudy "} +{"id": "3003743", "video_name": "8ddb26f4-a10a-5eb7-9b2c-e1489671e93b", "text": "sad woman in a little planet playing guitar "} +{"id": "0004250", "video_name": "05c60099-82e0-5841-a0db-0730ab43f2a6", "text": "portrait mode black and white hallway with ghosts quickly moving from door to door "} +{"id": "7003871", "video_name": "f59dea9f-953a-579e-8321-2713af8cce80", "text": "a girl holding a dead flower 1980s french experimental film "} +{"id": "3004420", "video_name": "54f26bf3-34c7-574a-b985-1f5eaa5f2ef7", "text": "Italian countryside with birds flying overhead Message: Caitlin (Font: MODERN) "} +{"id": "4002189", "video_name": "ec7113b1-bdd9-579c-9b8d-5e2dccaaf1ce", "text": "Show the moment when Ezekiel stumbles upon Mavina dancing in a meadow, his fascination evident as he sketches her graceful movements against the backdrop of the setting sun. "} +{"id": "4004931", "video_name": "928792ca-1f69-5b0c-b0fa-4eca07b18ce3", "text": "Start with a captivating shot of a lady rider suiting up, putting on a helmet, and getting ready to ride. "} +{"id": "3005668", "video_name": "aa8acf79-4f91-5112-9c79-28bce3c39351", "text": "a giant anthropomorphic bear destroying a small town "} +{"id": "7004878", "video_name": "ab81095a-ff5f-569e-9b88-fc73393301a6", "text": "hearse in front of a white car in the rain at night "} +{"id": "7002281", "video_name": "7f861a35-9052-5b7d-b7e2-0863f65e714f", "text": "a beautiful anime girl walking on the sidewalk "} +{"id": "3003182", "video_name": "069aca39-167e-5d73-8926-67e73bf84e17", "text": "Alien explodes due to lazer fire. Scifi. Inside Grey hallway. Scifi. "} +{"id": "3006711", "video_name": "55a7a27d-b567-5e1e-ac86-3a83280c45fa", "text": "A boy looks up at the sky "} +{"id": "0004199", "video_name": "04dc1ab9-7f94-5755-923f-0bcb230c211e", "text": "like a boy boy studyung in his room in a anime style "} +{"id": "3003971", "video_name": "c89f2c61-27d6-5cb8-b01a-585e6d80cd82", "text": "a samurai under a sakura tree. With a fire katana. Background fuji Mountain. 4k. Realistic "} +{"id": "2006507", "video_name": "bf04a462-eb39-5a1b-aab5-cf5490240c81", "text": "Cut to a shot of a table with various Ayurvedic herbs and spices carefully arranged. The camera moves slowly over the table, highlighting the different natural ingredients used in Ayurveda. "} +{"id": "6004159", "video_name": "d63fc7bd-702e-5c3e-9b4e-a8517962a70c", "text": "we fly in a hover over a majestic jungle covered mountain rising high into the vastness of space, its rocky peak pointing toward the distant setting moon far on the horizon as swirling clouds surround the rocky peak we hover toward the setting moon over a tropical aqua ocean "} +{"id": "0005702", "video_name": "1fbb984d-33b6-5a3f-8b6e-bb768f43ab60", "text": "a timelaps loop of a beatiful dark starry sky with bright stars "} +{"id": "8003388", "video_name": "3bdd2cef-8f45-59b0-8853-b2c3f70a8d49", "text": "grainy footage of the new yorker hotel "} +{"id": "6003039", "video_name": "96ebe951-5ec7-5730-a4d8-902d6b1ac965", "text": "Shepard Fairey animation of people playing music in nature "} +{"id": "3003862", "video_name": "bac33899-8c32-5818-83c8-9736a40fb7b8", "text": "Samourai doing a ritual at night "} +{"id": "2005517", "video_name": "887f7343-90fa-5d6d-892f-fced01ecfb5f", "text": "A little girl with blond hair in front of a powerful light portal to another galaxy "} +{"id": "0005189", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "The man crying in super realistic world looks like cyberpunk 3 "} +{"id": "6003979", "video_name": "c9492a2d-8e41-5f56-b6fa-4d361f2b4ea4", "text": "A teacher in a math class explaining math stuff in a blackboard, filled with numbers, photorealistic, 8k, high quality, high definition Message: Zanzibar (Font: MODERN) "} +{"id": "8001842", "video_name": "ea5203e8-5e3f-5b07-940a-b73866fada8b", "text": "watching sky at night with stars above in motion "} +{"id": "1003876", "video_name": "4761b47b-f454-582d-914d-4e38844e00f5", "text": "create a galaxy cooking on pan "} +{"id": "7003194", "video_name": "b1941106-8da0-5cfc-b817-edc7e39eea33", "text": "human cell infinity camera zoom in "} +{"id": "1004319", "video_name": "4fc8b3c8-96f0-5d78-8aac-43dd9c2f65e5", "text": "A beautiful lady,Hanna is sitting at a table with cup of coffee in a cozy coffee shop "} +{"id": "2005274", "video_name": "20f2f507-b2c5-5fdc-a35d-0defb75a32f0", "text": "Little bottle on bedside table, flowers, 1950s movie style black and white "} +{"id": "7002482", "video_name": "6b10bce9-c613-5d0a-a2ed-4acf32659ded", "text": "flying dragon baby\uff0cgreen Message: 1 Attachment "} +{"id": "6004791", "video_name": "b59197d6-d964-5633-9472-90b0c1d7744b", "text": "The Hulk stands on top of Guangzhou Tower "} +{"id": "8002078", "video_name": "d8602473-8166-54da-af0b-51394a57045c", "text": "serving Swami Raman and the ashram with unwavering dedication. "} +{"id": "3003206", "video_name": "835eb360-f1e0-59fe-95e3-0282085a9f7a", "text": "the drops slowly fall on the can Message: 1 Attachment "} +{"id": "1006010", "video_name": "6e71063d-f79d-51bf-abcf-c2b2621dc274", "text": "4k 50 fps indian god shiva surreal with angry look floating in the space "} +{"id": "3006718", "video_name": "19d0e149-831a-56af-b4bd-329a5a55173e", "text": "a background of different shades of different sized green triangles connected together "} +{"id": "3006217", "video_name": "bfe35866-aca8-5ec5-bd3f-4c3f148b79db", "text": "people working and walking, wind moving gently "} +{"id": "2005440", "video_name": "ef585eed-d615-5339-9976-585b39e18723", "text": "animate the grass and clouds. add light particles. "} +{"id": "1003788", "video_name": "45ea9461-3fd4-543d-807a-e841903295df", "text": "inside car view driving a dodge charder hellcat very fast "} +{"id": "7002575", "video_name": "1405860c-9c6f-581b-b8d9-1537470422d1", "text": "a blonde lady in a red dress drinking a martini at a hotel bar "} +{"id": "2004957", "video_name": "16b45aa2-a7c8-5589-87d5-4c59e040291a", "text": "A dog in an astronaut suit getting on a rocket "} +{"id": "4002958", "video_name": "b422956e-f430-5368-a0c3-be9d3d0d091e", "text": "a video with a lot of women all type nationalities dancing in a beach, having fun, and happy, and laughing "} +{"id": "3005065", "video_name": "d0fc893b-651a-5d4f-9352-e0c42cff246b", "text": "Cinematic the dark knight from batman in his cave "} +{"id": "1004150", "video_name": "4cdc0e52-6312-568d-b63b-c2cbfc27762b", "text": "Toluene molecules float in the air "} +{"id": "8002758", "video_name": "7d250498-dd03-57e9-a13c-671e87ce595e", "text": "a man , bald with a red beard and blue eyes , turns into a god "} +{"id": "2003259", "video_name": "69193b8d-06c8-59c0-9e4c-6c143edcaef6", "text": "Fairy Ye Luoli piloted a spacecraft "} +{"id": "6004171", "video_name": "40c0630b-7a75-51bb-bb35-21f16fc1b87c", "text": "Dark clouds coming into a clear sky, cinematic picture movie shot 70 mm anamorphic lens panavision camera "} +{"id": "3006138", "video_name": "36d4cf4c-3c1f-5d55-92f8-22480995affa", "text": "a man swimming in the mug "} +{"id": "7002715", "video_name": "3e73fa02-82ce-58cd-a69d-c0118ac557ef", "text": "The star was so beautiful, large and clear, that all the other stars of the sky became a white mist in the atmosphere, And by this they knew that the coming was near of the Prince foretold in the prophecy. "} +{"id": "8001776", "video_name": "8dad8044-7d2b-5965-a0e1-d93c6e505c86", "text": "the characters from lollipop chainsaw game dancing "} +{"id": "1003125", "video_name": "3985b75c-351a-5253-bfdb-df0972716711", "text": "rabbit and owl often hopped around the meadows, exploring every nook and cranny of their charming village. "} +{"id": "8002099", "video_name": "5d0128ee-8b4c-55a0-9bd1-f71e84dfb049", "text": "a tiger is chasing a bird "} +{"id": "3006871", "video_name": "a6f9a90e-91ef-571f-8aa5-a436d834af46", "text": "dragon burning a wood, videogames, forest Message: LEO (Font: MODERN) "} +{"id": "7002819", "video_name": "355b5e13-fd19-5f0a-8a56-115e191df9ba", "text": "in space\uff0ctwo aliens touch their fingers "} +{"id": "7004855", "video_name": "16ec6ed1-f3dc-57d9-89a3-13910935108a", "text": "brief montage of news headlines, both real and fake, flashing across the screen. "} +{"id": "1005096", "video_name": "5e067cab-6eb9-55fb-bdb2-0b7ab7ccdc27", "text": "15 second fox running in forest "} +{"id": "2004560", "video_name": "c70eeac6-70d9-530d-b630-467c7b12b902", "text": "muscular body builder in short mini jeans wave to us "} +{"id": "4004229", "video_name": "22b323e8-0d19-5253-8cff-b619899727e4", "text": "Create me a picture 9:16 of Cleopatra, majestic and mysterious "} +{"id": "2004557", "video_name": "05cff41d-c2a4-5ede-b928-86b77ae98639", "text": "lonely soul flying above the city "} +{"id": "1003730", "video_name": "44dc4f5a-4106-5c42-9504-df437480e163", "text": "eerie, the unseen horror in the corner of your room "} +{"id": "2003570", "video_name": "b6ab76b0-8caf-54c9-8d50-00aa1c7143e5", "text": "a western type film about michelle rodriguez stands up against antonio banderas "} +{"id": "1005203", "video_name": "5fd124cb-a35e-57ef-be7e-65af3aaa305a", "text": "a little wolf and red ridding hood at the forest , cartoon , disney pixars "} +{"id": "8001380", "video_name": "68dce644-c7b9-5859-a5a3-323e56339b52", "text": "Show the anatomy of a human body and show the functioning organs "} +{"id": "1004130", "video_name": "4c7a1458-efca-54d3-98a1-b14fe65dfa4e", "text": "He smelled something yummy coming from the kitchen window. "} +{"id": "2003199", "video_name": "1611bd82-8b91-5031-a417-e5170109c7da", "text": "Introduce the fearless young girl, Lila, and her curiosity that leads her to the mountain where big eagle Eldric resides animation. "} +{"id": "7004692", "video_name": "31e9cfd8-b82c-5cd2-a4b9-7a857179bc03", "text": "Wave world news channel rotating on a futuristic background with analogues behind with red and blue colors "} +{"id": "3005290", "video_name": "5447c786-9c11-5bfd-ab06-de0a872b324c", "text": "old western with lots of movement "} +{"id": "8003045", "video_name": "cc8c0443-0c09-5af9-8df5-b5aa21c4965a", "text": "man walking on the beach waves crashing while using his phone "} +{"id": "0004082", "video_name": "02e2b2b8-e8ae-5a37-afc4-c743ef5fe68b", "text": "the waves crash against the lighthouse at winter and snowy weather "} +{"id": "4003469", "video_name": "65daeba7-6c28-5f6e-be64-77487b16a5e4", "text": "display a map of the world with someone travelling from canada to Peru, India and Europe "} +{"id": "3003005", "video_name": "cf2123ce-f4b9-5f78-8270-ef70149658c7", "text": "Long shot of haunted house with a ghost in the attic window "} +{"id": "7003167", "video_name": "ff8934a8-d3ab-53a1-be6c-e306ff46e778", "text": "Black mountains on a green plain taken from a quadcopter. Zoom Message: 1 Attachment "} +{"id": "8001483", "video_name": "7f811303-2384-5f93-ab3a-90808f2ec16b", "text": "scene from Till the end of the moon "} +{"id": "3004431", "video_name": "37d72156-6f41-5dcb-b99d-5687bcd46b66", "text": "slow motion sea wave, old video, 1970, realism, cinematic, Blair witch project movie style, the ring movie style, horror, focus, details, chromatic, ghosts, old film, zooming,camera pan left "} +{"id": "2006879", "video_name": "bfc6cf71-29b5-558a-a093-c8264b476a88", "text": "A normal city transforms into an interstellar city,Sports shot,cinematic "} +{"id": "4002352", "video_name": "fa166c70-0219-5811-9ad6-838251595f4e", "text": "Begin with tranquil underwater visuals featuring various species of jellyfish. "} +{"id": "8003176", "video_name": "42ab5aef-318b-5339-a22f-4b44be292023", "text": "A red glossy apple floats in a sea of molten gold 16:9 motion 5 s "} +{"id": "6002240", "video_name": "50b1e302-146c-5684-af59-bb756734f2cc", "text": "7 princesses were sleeping on different beds in a big room of palace, disney style "} +{"id": "6004428", "video_name": "a57cbc2b-13fc-5fea-8b50-a1b0b658067e", "text": "\u2022 An image of a cozy living room with soft moonlight pouring in through the window. "} +{"id": "0004287", "video_name": "06625b0d-acfe-5fe8-b848-d45c046d0c55", "text": "the ghost of a trucker in the parking lot next to the hotel "} +{"id": "6003810", "video_name": "b8b70b41-b81a-5afd-94a7-31cf295543b4", "text": "An extremely strong man walking on a road surrounded by hills "} +{"id": "1005604", "video_name": "67139fd8-86fb-511f-aa90-dc3e459bbb2a", "text": "taking tom in tomorrow and jerry "} +{"id": "6003985", "video_name": "533ccaab-1238-52f3-aec4-e5e38eba66fc", "text": "video of 3 cartoon kids Emma 8 year old girl wearing white top and blue pant, ben 9 year old boy wearing light blue tshirt and black pant and mia 7 year old girl wearing red top and yellow pant found old mysterous map while searching toys in old box inside the house "} +{"id": "0003937", "video_name": "001e3344-3480-521e-b321-708a28c90a0c", "text": "a cat walk on the flooring "} +{"id": "1005019", "video_name": "5cdf7a34-33a5-5012-ad28-e06b544f06e2", "text": "please draw a beautifull view about sky "} +{"id": "3003607", "video_name": "f8108cf7-747a-5429-afa2-44b50d0351c9", "text": "human hair strand layers microscopic view "} +{"id": "4003137", "video_name": "252a644b-33c3-5191-a320-3624d2430b7e", "text": "1980s, muted, glitched, vhs static, background effect, ambient visual effect "} +{"id": "6004434", "video_name": "d93e9fcb-9172-5d6b-a7dd-908fc681b6fc", "text": "Digestive biscuit crunch breaking in half "} +{"id": "0004605", "video_name": "0bde2b1e-f8d5-565e-a78f-3f2b5a1a2f9b", "text": "4 meter long bird with long white feathers and scary looking dark face and stands like a human. very tall and overlapping feathers completely white. "} +{"id": "8003711", "video_name": "b4761edb-02b2-55c3-a2ac-e0d1dd33ea7d", "text": "One sunny morning, as Lily was skipping along a narrow path, she heard a soft, whimpering sound. She followed it and soon discovered a tiny, lost baby jaguar. The poor cub was scared and alone. "} +{"id": "3005638", "video_name": "88a156fe-26be-5e7c-ba14-2842b9d36749", "text": "a high achiever and very successful man image "} +{"id": "4003790", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "create a new style 3d cartoon bird in red as a reporter with with human hands and with camera or mic "} +{"id": "7003932", "video_name": "d96a03a3-d52c-5229-a6bf-6331396304e1", "text": "brown curtain is flying, waving and moving in the dim room "} +{"id": "1004149", "video_name": "4cd980a1-badd-59d6-93d4-703c6c677aa6", "text": "A woman walks into the office. "} +{"id": "0003197", "video_name": "391cdbf9-a6db-5788-ba20-8ea8fc6cc2e4", "text": "forest full of trees and sound at night near haunted house "} +{"id": "8003515", "video_name": "151cac33-40bd-5f2e-9ce7-f44d7418a7b5", "text": "creative video about the gods of Egypt "} +{"id": "6002095", "video_name": "7cdd37b8-a95e-5fa2-aaf3-66f10d6fdcab", "text": "a young hand grows wrinkly, and skins falls off revelaing bone "} +{"id": "7002007", "video_name": "98ccb691-d01b-5a23-94d6-ab665c2960bd", "text": "viking ship sailing on the sea in 80s anime style with vhs filter, loopable, extremely detailed "} +{"id": "1006694", "video_name": "7aace536-a8d8-5dce-87b0-a4219360cc9f", "text": "A hunter in the forest had a gun in his hand and saw a blue bird and started running "} +{"id": "2003898", "video_name": "045eb861-87d3-53a4-9586-15c5fb80672e", "text": "Birds are flying over a forest with dried leaves and parched ground, the midday scorching sun shinning in the sky clear blue sky, summer, mid day, Miyazaki comic style "} +{"id": "0005678", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "Boy getting into the boat with big smiles."} +{"id": "1004056", "video_name": "4b2fe7a7-01e7-5b53-961d-d330feb28549", "text": "Beautiful women, mountain lakes, fish, whales and crocodiles swimming in the deep sea "} +{"id": "0006003", "video_name": "24db47c3-738d-5080-9f45-16c55bb37a72", "text": "View from a plant and in the sky you can see more planets and some green and pink nebulae, camera in zoom Message: Aldhair (Font: MODERN) "} +{"id": "2005233", "video_name": "533ac2ed-3489-56cc-9362-ca213336d289", "text": "Generate a scene showcasing a real estate agent spekaing with a young couple who are excited to purchase their first home, including a picture of the home they are looking to purchase, express trust in the expressions of the clients, add fireworks in the background. "} +{"id": "2005028", "video_name": "f73a5e3d-f10e-52a7-b504-7acfa9215b81", "text": "black earth rotating that can be seen from the moon, dark horror mysterious style hopeless "} +{"id": "2007788", "video_name": "62f86273-bcfb-57f6-a976-1a022cec957a", "text": "create me a beautiful design for selling goods in the game "} +{"id": "3005121", "video_name": "78891152-d800-5f1f-a650-217843831ff4", "text": "image of homer 3D dark fantasy hyperrealistic hyperdetailed masterpiece 4k using the infinite gauntlet of the multiverse. "} +{"id": "3006808", "video_name": "0f9cb453-a811-52e7-adce-dbf36ae42a6a", "text": "zoom through Interior WW2 submarine Alfred Stieglitz black and white 1900s "} +{"id": "8003518", "video_name": "cc4407b9-d306-5316-935c-aa1c603408a5", "text": "Alien invasion on earth in next 60years "} +{"id": "3005533", "video_name": "ae160b08-6a4d-5920-a4a9-bad5948ac526", "text": "a sitting Siddhartha Gautama (Shakyamuni Buddha) talking to public 16:9 motion 2 "} +{"id": "2003954", "video_name": "2a86184e-7ad1-508a-911e-ca7c7f0dd731", "text": "in the style of wes anderson people dancing the electric slide in a thunderstorm "} +{"id": "3004519", "video_name": "b3376783-6720-5852-ac00-fe4cd157e068", "text": "Disney like atmosphere, sunset scene in a city "} +{"id": "2004384", "video_name": "53c14f5a-9f35-576d-89a6-623e254644c4", "text": "rainy season in village, windy envirement "} +{"id": "4004485", "video_name": "3a68a0be-c546-5d2c-85a3-5321dde12636", "text": "October 1, 2049, China National Day Military Parade "} +{"id": "1005292", "video_name": "6145f269-2da1-5aab-b94f-f38c2667ce97", "text": "Hyper realistic, humanoid robod cyberpunk style, close up face, walks through a bladerunner city type setting "} +{"id": "3003428", "video_name": "0b497c02-cf61-5bb1-ac1b-d9b44de6e102", "text": "The friends rely on their flashlights to pierce through the mist, casting eerie, shifting shadows.horror,fearful . "} +{"id": "0003433", "video_name": "3d6d73d3-367e-5ec1-9ba4-95807dfa5c07", "text": "a video showing rocks falling off the side of mountain onto a road curving alongside the mountain "} +{"id": "0006386", "video_name": "2b949eae-e443-5e46-ad7e-e0afbe40212b", "text": "The hamburger was originally made with minced beef patties that were grilled and served on bread "} +{"id": "8001603", "video_name": "b548cc01-edea-578c-837d-3670cf2a5fae", "text": "Digital painting of an astronaut floating in space, with a reflection of Earth in the helmet visor "} +{"id": "4002960", "video_name": "59ed97bd-d248-5cf3-831a-129beb461384", "text": "Needs a video of a beautiful flower growing in the sun "} +{"id": "2003090", "video_name": "32e911f2-f95f-52c2-9b08-224dabdbcb90", "text": "speech bubble made of wood floating in smoke with green background moving side to side "} +{"id": "5001902", "video_name": "75534910-9d51-5340-b985-54490022768b", "text": "lego humour humour parody parody jokes satire laughter club funny greeting anecdote play joke joke jokester TV comedy Scene team "} +{"id": "8002496", "video_name": "83a9c388-2e53-537e-acb4-0ba3f1a12b06", "text": "heidi klum dancing on the stage , then morphed into simon cowell, morphed into howie mandel, morphed into sofia vergara, morphed into simon cowell and finally morphed into terry crews "} +{"id": "8001566", "video_name": "735f819b-e112-54b0-8162-69686a76f534", "text": "skin care itips in winter graphics "} +{"id": "7002409", "video_name": "705e0a09-81ff-5ca7-98d1-d6148d28d860", "text": "A poor men saw an umbrella on road and his pickup it. "} +{"id": "6003292", "video_name": "70d109dc-f66e-545d-9adf-58a92f3d7ad9", "text": "A visual representation of the moral, displaying various challenging situations and clever solutions "} +{"id": "2005158", "video_name": "3cfc0d77-8cf7-5961-975e-59b80669b253", "text": "a 15sec video of map of world zooming into greece then into athens "} +{"id": "3006922", "video_name": "18310aa5-b990-5c00-9cad-864ba635dd6e", "text": "a child practicing in a room, with a man listening to the beats "} +{"id": "0003208", "video_name": "39400890-081b-5185-b750-0d15df8371e6", "text": "the waves are washing away a balinese village "} +{"id": "7004572", "video_name": "a3ec1151-47d9-5aea-99fc-258f7c3a0cb7", "text": "Hand writes with pen on paper "} +{"id": "7002856", "video_name": "250b2226-2377-550d-a34e-c3582b782379", "text": "blonde hair girl sitting at a picnic table looking into the woods there is a small pixie at base of the woods. "} +{"id": "0005381", "video_name": "19cef012-202a-52f8-97cb-d17da70510a1", "text": "cinematic color, a man with a gas mask in the desert "} +{"id": "0006162", "video_name": "278d82aa-6c24-511e-88e4-9295b15426c8", "text": "Dwarfs in dwarf costumes on a forest road smoke and meet a bus "} +{"id": "0005452", "video_name": "1b019cba-4a81-564a-a89d-9d4d7e60820b", "text": "a little boy holding a balloon and flying to the sky. Super realistic, 4k "} +{"id": "2004598", "video_name": "69b8658c-2396-5155-909a-58a1c97ac53e", "text": ": A BRIGHT iimage raining Diamonds with shinny metalic IN polished GOLD, face of man moving with perfect featured and smile raining Diamond "} +{"id": "0005188", "video_name": "16528058-7340-5e58-8112-be2ca55161ff", "text": "Cat laying on the back making snow angels on the ground in the winter, looking very happy "} +{"id": "4004118", "video_name": "7aac0538-c4de-59f2-a6c6-c016a6874f2c", "text": "generate a beach view with background mountain "} +{"id": "8002566", "video_name": "95006df9-092d-5a89-9917-586e6c1a753a", "text": "train in the andean mountains in paper art style "} +{"id": "3005125", "video_name": "f3e62029-3207-5462-bf21-f6ae8234162d", "text": "extremely detailed high resolution anime man with short black hair and heaphones "} +{"id": "0006412", "video_name": "2bf28b58-9ebd-5ed3-8b66-89eb2bd85989", "text": "beautiful muslim animated girl with red hijab glowing face talikg in best style c "} +{"id": "2005049", "video_name": "f435631d-404e-5417-a198-26146e1c93ce", "text": "beautiful child looking at the crescent moon "} +{"id": "6002938", "video_name": "a15f5924-90b8-51ed-ab7e-3a10ee434127", "text": "Cowboy on a horse galloping. Pixel art. "} +{"id": "1006798", "video_name": "7c7d9cdd-2e64-5e62-b11a-4664204a9b37", "text": "a sci fi factory whit a lot of matrix wall and lance flare 4k "} +{"id": "7004022", "video_name": "8497eeaf-d2a0-54d9-b1d8-2043b8748e01", "text": "The swirling vortex of colors and light that transports Henry to the new world. "} +{"id": "3005626", "video_name": "d59d3a42-c6fe-5272-8aa4-5f1c4acc0007", "text": "Rolling hills stretched out in all directions, covered in a patchwork quilt of lush green fields. "} +{"id": "7004000", "video_name": "c029227c-e3cd-5e28-814e-7248743fbbb3", "text": "The car flies into space, 4k, hdr "} +{"id": "0003735", "video_name": "428e62f9-6657-5512-aab6-7ee877f11b43", "text": "From the enigmatic tales of Argentina to the spiritual stories of the world, Waudaura connects seekers and sages, creating a global network of spiritual exploration and shared wisdom. "} +{"id": "6002937", "video_name": "dcab1c7d-e861-5dc6-9760-c3b733483046", "text": "a guy doing surf stand in a dolfing wearing a black suit and long hair zoom out hiperrealistic "} +{"id": "5001111", "video_name": "4c16e4ec-b87b-5432-a5ea-397f00a7ce11", "text": "queen sitting with lion at himalaya mountain "} +{"id": "1005717", "video_name": "69373ee0-85d8-5457-b693-a24880bc814b", "text": "The beautiful girl 6 year old was talking on her school bench in class room with students "} +{"id": "7004449", "video_name": "44c2ef30-3b1e-509f-b6e4-33de9ce9941c", "text": "At night, with the bright moonlight, inside a house "} +{"id": "1005246", "video_name": "608cf715-facd-53c4-89ad-eac5da73b8a2", "text": "a woman african water spirit holding a torch in a dark underwater cave with stars "} +{"id": "4002256", "video_name": "0452fd71-743d-51f4-9ffd-c49d2a42b531", "text": "A gentle breeze blows, clouds are drifting,A poet from ancient China, dressed in the clothes of an ancient Chinese poet, dressed in Tang Dynasty attire, elegant, standing in a courtyard with his back to the audience, looking up at the moon in the sky. The courtyard of ancient China has a large round moon, moonlight,The hazy moon, and silver moonlight on the ground,best quality, wallpaper, high definition, 8K Message: 1 Attachment "} +{"id": "3003804", "video_name": "e7ddffa9-a6d0-589a-9d00-e0800626a289", "text": "a 3 members of family moving out of a new home in a old vingate victorian castle, ultra realistic, no deformation, unreal engine5, keep relation "} +{"id": "6004900", "video_name": "97911c8a-dd61-5cd9-9b0d-25c4237763f0", "text": "3d animation of how a glock works "} +{"id": "0005630", "video_name": "1e6a9aae-2905-5c99-89f6-f24c1a61278d", "text": "windy landscape blue sun over purple violet horizon yellow and green plants 4:3 "} +{"id": "2006828", "video_name": "5fabe377-e45b-5ad7-9733-d054e57e7e7f", "text": "Quality you can rely on, delivered straight to you "} +{"id": "1006041", "video_name": "6ef80e6e-c792-57ea-8857-421ca843bf1b", "text": "two kids and dad playing on the beach "} +{"id": "4003025", "video_name": "2d4ca78c-997c-5219-b35c-7583096aff5d", "text": "crushing waves on the ocean Message: DEVINITI (Font: MODERN) "} +{"id": "8001524", "video_name": "6951235f-abfe-5592-a8d8-52795b6779b6", "text": "Sunset landscape with a small seaside town Message: Sara (Font: COMICS) "} +{"id": "2005109", "video_name": "a54a552c-6649-56a8-bda2-7551f904b58a", "text": "The friends entering the castle and exploring the dark and dusty halls. "} +{"id": "3003937", "video_name": "c03f4fba-299b-5bad-9b5b-ad88c1e9371a", "text": "dinosaur running up a snowy mountain close up view ultra 8k "} +{"id": "2004700", "video_name": "c4a99971-e876-59d3-9cfe-ce3a63a37389", "text": "portrait 9:16 tropical waterfall and rainbow "} +{"id": "4004477", "video_name": "d290021b-f236-5a84-b615-d8b11eee2283", "text": "little labradoodle puppy really cute in a 2D style "} +{"id": "1003820", "video_name": "468f607c-2a67-5683-8235-d07ef017237b", "text": "change the background to starty night "} +{"id": "0004575", "video_name": "0b69fbdc-52a3-5753-ae11-83f715b13932", "text": "ultra modern high tech bulet train runing fast, directed by Chris Carpenter "} +{"id": "4003909", "video_name": "861826e6-a607-5ec8-801d-3e02d2cfe75d", "text": "The Lich King from the game World of Warcraft without armor "} +{"id": "2007331", "video_name": "9fa50749-b14a-597c-a5a2-8d37f4d8b3ed", "text": "Drone view on a highway with cars running Message: 1 Attachment "} +{"id": "1003281", "video_name": "3c5abc71-e806-5ede-ad91-0b3e8bd83dd8", "text": "the girl walk towards the right path "} +{"id": "6004478", "video_name": "23540857-6f8b-5896-b1a7-fe61682cfb85", "text": "vampire standing in love standing front of castle cover art "} +{"id": "1005189", "video_name": "5f6c7d5d-5962-5f9b-b736-33b0ab5724c9", "text": "goddess of love, Venus, dancing with the crowd around her "} +{"id": "7003981", "video_name": "7630b263-04a9-5508-a6e1-fb157f30d8de", "text": "plane taxing on the runway, nose raised above ground, 3D image "} +{"id": "2004981", "video_name": "fd3f674a-ff2e-5946-aa3c-83ea222754d1", "text": "There are fishermen fishing by the sea. "} +{"id": "8003787", "video_name": "8d9ab6ef-8316-51ed-aa26-3a0e6e92ad7d", "text": "nice and cool man black hair with sunglasses walking on the street looking at the camera "} +{"id": "8002705", "video_name": "71bae1da-55c0-509e-baef-45ffa4f3e432", "text": "In the rice paddies she buries a glass of wine "} +{"id": "6002521", "video_name": "4585e63c-5347-519e-ba73-a1c658531839", "text": "Oceanic Majesty, Sunset on the Horizon "} +{"id": "2005332", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "walking in the snow storm Message: snow (Font: MODERN) "} +{"id": "8002412", "video_name": "cd5e8adc-9fd9-5e38-9112-f4723fa4965c", "text": "a construction of a building complex at dusk, its workers are leaving, film look, 4k "} +{"id": "7003733", "video_name": "d4e5884b-9f4d-5e68-a2a2-3b8af219176d", "text": "An adult Nikola Tesla smoking while looking out the window "} +{"id": "3003571", "video_name": "e7bba89d-6f6d-59db-a004-cf33b9584a6e", "text": "create a story about a sad boy in his room, cute style, chibi style, animation, "} +{"id": "3005010", "video_name": "49cea4fc-a1a5-5794-a568-f3586147e4ba", "text": "a person cleaning a white shoes, moving camera around the person like first plane "} +{"id": "4002156", "video_name": "98241fc6-7a3a-50a3-a60e-639b609e56c3", "text": "shah rukh khan doing his famous stance with his arms stretched out the sides moving up towards the sky, standing on an old indian vintage colorful indian truck, backdrop rajasthan "} +{"id": "3006779", "video_name": "1fed25cf-64cf-5fd3-8ab3-e343aea8cab1", "text": "Chinese dragon element themed courtyard landscape. Modern art sculpture, chess fountain, overlapping water, 8K. "} +{"id": "0006544", "video_name": "2e744475-bae5-50a1-9a2d-73bd4ab58319", "text": "a full scene showing a cloud of smoke come together warping into the face of Lilith, in the artistic style of H.R. Giger "} +{"id": "0004043", "video_name": "021143e1-7fa8-506d-a47f-704aa634d2ab", "text": "A turtle morphs into a Futuristic city 8k cinematic lighting cyberpunk "} +{"id": "1004334", "video_name": "500bdba0-b891-50c4-b843-b77a7c6f96be", "text": "girl sitting on the locker room floor, dark colors, black hues, long white socks, nike socks, white nike socks, ultra detailed fabric texture on socks, beautiful legs, (cap on head), lockers, reflective floor tile, basketball, sunny atmosphere, volumetric light, volumetric composition, trees outside the window, ceiling fan, reflections on the floor, rtx, fisheye wide angle, redshift render, unreal engine, octane render, soft materials, noise film photo, lomography, velvia, sharp focus, 8k, renaissance aesthetic, photorealistic "} +{"id": "2005780", "video_name": "e09a5f56-8040-5373-93b7-990c438226e4", "text": "foggy morning in Osaka, pink hue, wierd weather "} +{"id": "0003827", "video_name": "4432591a-5f2d-51f8-b088-0419f591d394", "text": "a motivated man sweating while exercising in the gym "} +{"id": "8003457", "video_name": "b8351c0e-227c-59eb-9807-d94e93e1fe68", "text": "A representation of the shapeless blob that the Solar System started as "} +{"id": "2004933", "video_name": "13b3b066-e1b1-5238-a8e7-388571ce0dbd", "text": "Even though the lion had given good positions to these four, other animals called them a group of sycophants. "} +{"id": "1003925", "video_name": "48707493-6f2c-5140-8031-e28299262e64", "text": "50 years old david in mask, in longline brown hoodie, picking up something from down "} +{"id": "4003272", "video_name": "466d4979-7d1c-5b68-8e43-4121368ad923", "text": "A very large ship is docked in the harbor and a large number of travelers are getting on board. "} +{"id": "0004460", "video_name": "096af8eb-7c37-5ff0-8514-8194d325cf67", "text": "The Night Scenery of the Two Rivers in Chongqing in the 1990s "} +{"id": "2004137", "video_name": "0e0b9e17-81ed-5978-ac20-18efb0f8d482", "text": "the sky filled with fire as people run away looking for cover "} +{"id": "8003409", "video_name": "8c902ffa-091f-5360-85c8-91cce5d6bdf1", "text": "demonic figure showing that As above so below "} +{"id": "3006693", "video_name": "8d924ed5-a958-5d10-88a5-1978dd67fc86", "text": "young woman grow plants and trees Message: 1 Attachment "} +{"id": "8003831", "video_name": "4ca58185-d318-5671-afbe-eed7311dd4ae", "text": "Melstroy on the roof of the Efil tower spins the Sweet Bonanza slot "} +{"id": "2003679", "video_name": "7ddf9439-2749-5947-89e9-45019d038810", "text": "batman standing in front of bad guys in rain at night, slow motion, cinematic, wide screen "} +{"id": "2007803", "video_name": "4cf32587-1ff0-5576-a6dd-33e9336f3fb5", "text": "I dig my fork into the pasta and think. "} +{"id": "2006373", "video_name": "7ca58ef0-b137-5e9a-aeff-8ac3659beee8", "text": "The long river of human evolution "} +{"id": "5001638", "video_name": "bf5c8981-52b6-5c53-8e31-c17e8e6e2a20", "text": "my hero academia style girl with red hair, in a city, fighting a monster "} +{"id": "5001523", "video_name": "57ea058d-e20e-5cbe-bb0c-e9edb3ed7137", "text": "a man who runs down the street in the rain and people look at him "} +{"id": "1005922", "video_name": "6cca4c28-9775-5b66-92b3-e982f6733b33", "text": "a young golden doodle dog is dancing on his hind legs in a field full of kittens. he is smiling and joyous with his tongue hanging out, he is in center of screen facing camera with his head looking up. weather is sunny and there are mountains in the back "} +{"id": "2007496", "video_name": "f53d16b5-d76f-532b-9d55-1f80331819d6", "text": "Amazon zoo is completely natural and high quality "} +{"id": "3003289", "video_name": "7c126652-83fc-56df-8e86-36607c708a01", "text": "cats on Everest in winter clothes "} +{"id": "6002029", "video_name": "22dd8e61-11a3-5f50-a44f-7bc819229292", "text": "white Volkswagen golf7 drives through las vegas "} +{"id": "3003241", "video_name": "8d7e108d-2d73-5651-8357-ed0de9af8070", "text": "realistic lake in the mountains peaceful "} +{"id": "4004330", "video_name": "5d96ae78-9ea1-5c85-b8fe-246af2a70aa6", "text": "a handsome man kissing a policeman "} +{"id": "0005723", "video_name": "202c461c-bba9-5bdc-8e5b-a8f7498bd74e", "text": "An abandoned spaceship floats in space, flashing lights, black hole tunnels "} +{"id": "8003875", "video_name": "3fd67d1d-3212-5773-9204-39dfb3f638d5", "text": "a evening animals circle around a elephant waiting for the elephant to tell a story "} +{"id": "4004984", "video_name": "2424dc55-24e9-5390-ae4c-8cf668ec25e3", "text": "robots working building a large computer "} +{"id": "1006784", "video_name": "7c52854f-c50f-5730-881c-bba7abacfc3b", "text": "yellow formula 1 car with the writing lawrence in grey on it "} +{"id": "1006318", "video_name": "739b18d9-0018-5624-83ef-7a4af80420cf", "text": "cute kitten in a glass ball "} +{"id": "7003068", "video_name": "14f8eae8-8433-5d4f-ae2e-15534744f8cc", "text": "A dietitian Ninja fighting to a unhealthy food in 3d animation "} +{"id": "7002682", "video_name": "dad674dd-b44a-515e-bd2f-0208e60d9713", "text": "Raise the camera to take photos Message: 2024 (Font: COMICS) "} +{"id": "8001392", "video_name": "5244ddeb-4159-5314-81bb-8e95b8ab34d5", "text": "eyes sparkled with a warmth that mirrored Message: 1 Attachment "} +{"id": "7003678", "video_name": "26a1ed93-105d-5cb9-8c6e-8a90aca79659", "text": "prompt: roaring lion looking at the camera, sunset and rainy, it feels uneasy "} +{"id": "3005028", "video_name": "e39c00e9-678e-58a5-b4f0-cf9490e2f633", "text": "Before us, 10 gods stand atop Mount Olympus, their divine figures commanding the scene. Beyond them, the temple of Olympus comes into view, perched majestically on the summit. "} +{"id": "1004774", "video_name": "584dd459-431d-5413-b1a9-9701fc56b4af", "text": "a wild animal strolling through the sunset "} +{"id": "3003378", "video_name": "e65bd7e0-45c7-5864-88c8-bd8c22f6bc5a", "text": "Tony Stark fighting with Doctor Strange in Titan planet, night "} +{"id": "0005688", "video_name": "1f726cfc-ed6d-5cb0-b472-697e025aaeac", "text": "clear blue sky through a small dark hole "} +{"id": "6004912", "video_name": "5ad33bae-e925-55b5-afc9-70ddfb8a3d96", "text": "a wolf in a high rock with the fur Swinging in the wind in the sunset "} +{"id": "4003432", "video_name": "af626e13-578d-5a6f-a8c5-d901639c2d0a", "text": "Birds join in the effort, carrying seeds to plant as Anaya and the children watch in amazement. "} +{"id": "6003720", "video_name": "0cc208f7-135e-5240-9e14-87503cd2a409", "text": "a giant tesla coil monolth building in the center of a dense neon cyberpunk city, monolth resonanting big electrical purple lightningacross the sky, vivid colors, dramatic lighting, 35mm movie "} +{"id": "4003773", "video_name": "9931f8d3-1e59-5392-aad4-9a12452b07db", "text": "Make me a background of new york, but if the city is abbandoned "} +{"id": "1006428", "video_name": "759fd801-6b91-5bc4-8ee6-460bea22b15a", "text": "create me a landscape of mars as if you were looking out of a window "} +{"id": "8003638", "video_name": "a76be663-9df7-5712-ae45-c87d4f17692b", "text": "Old, 1900, TOWN, dark night horror, mysterious vibes. camera moving tovards one house with light still on "} +{"id": "4004361", "video_name": "be28f35d-2212-56f2-8b35-72afe9a99132", "text": "family happy looking from the windows in garden autumn day "} +{"id": "0003151", "video_name": "381d1742-d004-577a-8dd4-684bc19c88e7", "text": "earth in african for small village location "} +{"id": "0004016", "video_name": "019aae0a-ee2b-51c7-8887-f939a0705903", "text": "cut out rabbit and add a green background Message: 1 Attachment "} +{"id": "7002804", "video_name": "9240b3cd-d784-5fca-8148-02e185004388", "text": "As Gruff journeyed, his size became an advantage. "} +{"id": "0004779", "video_name": "0f0ca273-33e7-54eb-83d0-3bb002b66041", "text": "scene from Star Wars, Darth Vader holding light saber, photorealistic. Camera rotating clockwise "} +{"id": "1006244", "video_name": "725bdd21-f7c0-5795-8ab4-b5087d8f7719", "text": "beautiful 1930s city scene in color, showing brick buildings and people walking "} +{"id": "6003023", "video_name": "d60f3c86-65df-5e9b-a21e-97b6a4c9a250", "text": "make a cars races on the highway road for 30 second. "} +{"id": "2004847", "video_name": "3ba540a8-c568-5cd0-8c21-8e84741465d5", "text": "angels coming out of a volcano "} +{"id": "3006551", "video_name": "95bc02ab-ccb7-5051-8c8c-460b2a97d9d9", "text": "industry, welding,laser, craft,hall Message: EMK (Font: MODERN) "} +{"id": "6003957", "video_name": "12239482-e445-590d-ae14-9a385885789e", "text": "an abandoned scary house burning green flames at night in dark woods "} +{"id": "2007678", "video_name": "dccdedff-8bf2-5a23-bee1-d49cbc0d01a7", "text": "A rainy day, John and Emily under an umbrella. "} +{"id": "1005274", "video_name": "60fd0abe-df92-59b3-ae28-7723bc3d9c17", "text": "A camper on a beach full of men in swimsuit Message: BERG ONZA (Font: MODERN) "} +{"id": "3005540", "video_name": "1a4d5754-2483-570a-801d-6db54741b6dd", "text": "Child with indigenous features, wearing traditional clothing, standing alone with a sad gaze, surrounded by a burning forest, in a realistic style, 8k resolution, a masterpiece "} +{"id": "5001278", "video_name": "fe5fb244-5b5e-5db6-9ed7-e09ce2f37560", "text": "A man sits in a chair chatting with a pineapple, which often shakes its body, Surrealism, Jodulovsky, 1990s, triangular composition "} +{"id": "2005383", "video_name": "01ffd247-0cab-5580-84af-4b60b6da2c19", "text": "old couples dancing in the city at night) "} +{"id": "2006461", "video_name": "15017150-05ed-5f27-ae69-4ebe0111e1ce", "text": "A girl lost in her book while reading "} +{"id": "2003643", "video_name": "17c2f9e8-b876-5275-be99-cadd2999c889", "text": "Cowboy herding a group of cows "} +{"id": "2006036", "video_name": "00f278ad-ada7-5001-b87e-a371202cd88f", "text": "Robot fighting apple ghost with face 16:9 movement "} +{"id": "3004968", "video_name": "d8af5991-575c-575d-88ae-fd91d47e6237", "text": "; a bad cloud with a terrible thunderstorms with dark cloud in a urban city "} +{"id": "2006390", "video_name": "548ded9c-e0aa-5dce-be98-9dcabe2b2dd2", "text": "a pigeon looking scared, ultra realistic "} +{"id": "1006482", "video_name": "7699502c-4314-5aa0-8eff-52890eaf7da8", "text": "a town on a side of montains, rounded by woods, with a castle in the centre. realistic image, cinematic, 8k "} +{"id": "2007718", "video_name": "b107f2ac-ef39-5a86-8d1b-6def5d8840b4", "text": "panning 180 degree shot of students flying through in space towards another dimension, vibrant colors, 4k "} +{"id": "6004630", "video_name": "c623eda7-8b61-55b5-b3d2-46345373bb3a", "text": "a sixteen years old boy is seeing,a fifteen years old beautiful girl, boy is stand on road, and the girl is on her home roof .girl is also seeing to the boy, both are smiling looking at each other "} +{"id": "1004064", "video_name": "4b63497b-f321-5a60-bc8e-d7130e998ec4", "text": "Jesus calling people to himself, 3d animation "} +{"id": "5001877", "video_name": "36fab581-3fa6-596a-b399-be3d3541029c", "text": "dark ominous figure exploring the bottom of a round ancient temple,realistic, cinematic horror "} +{"id": "0004221", "video_name": "0550c352-f8e5-5cfe-afcc-e9d1752de2de", "text": "youn man AaravTheir hearts racing as they shared unspoken emotions. "} +{"id": "4003631", "video_name": "23b87a34-922f-5220-a79c-2ddf8c9de2f3", "text": "Monkey King Foot step on colorful clouds, holding a golden hoop bar, in the temple of the sky above "} +{"id": "4004532", "video_name": "95defa94-18a7-5d18-9b7b-8a8dce6b4eb2", "text": "A wallet miner download our wallet miner and start to make crypto many without any expensive hardware "} +{"id": "7004622", "video_name": "3288d5a4-c0fc-5c8f-b73d-43c2e47d800c", "text": "a field of lavender flowers with a beige armchair in the middle of this field with a beautiful sunrise with a film style and as if it were recorded in the 70s, 80s and 90s on a 30mm camera "} +{"id": "6004224", "video_name": "c53ca638-0dbb-5f7e-a026-010b817b9ade", "text": "a cruise ship docked in a backyard pool "} +{"id": "7004470", "video_name": "dc75069e-c516-5772-9680-1f0786f9e99b", "text": "a modern computer and a woman about 50 years old working at it, realistic photo style "} +{"id": "0004526", "video_name": "0a94ead2-b08e-5345-9924-26b41a0a67df", "text": "heavy from team fortress 2 eats nuggets "} +{"id": "7003396", "video_name": "75a0fe07-6f54-5c79-aa5d-b7f6a0c0e822", "text": "Claire, determined, firmly holding the rotary phone, with an expression of resolution, the background showing a clock indicating 3 a.m. cinematic, horror, hyper realistic, cartoon style "} +{"id": "8002398", "video_name": "b6065217-ea02-5e34-a667-85419fe141b8", "text": "underground parking, seen from the inside, yellowish backdrop "} +{"id": "8003283", "video_name": "e9615fee-9d75-5ef4-a124-0651fc36b98c", "text": "The geographical location and features of Multan, such as its climate, rivers, and soil, cinematic view, motion 2, UHD, 64k "} +{"id": "3006890", "video_name": "6d1951c9-15cc-5f68-9783-e9b3d90d955a", "text": "a computer laptop sitting on a beach at sunrise with a volcano erupting from it "} +{"id": "1003192", "video_name": "3ab7baec-f998-5949-a37b-ffadde2a5264", "text": "Museum. A man runs up to a painting on the wall and splashes red paint on it; streams of blood flow down the canvas, disfiguring the painting. "} +{"id": "0003552", "video_name": "3f6b0b7e-dc95-54c3-b256-8e3224800ccd", "text": "a person releasing colorful balloons into the sky, as an act of liberation and joy after overcoming a challenging period "} +{"id": "7002816", "video_name": "b34df3c2-1647-58ca-ab8c-9a95c94af50a", "text": "animation style, miyazaki, a big window, a rain throw a window, by rainy day, with view of sea, "} +{"id": "8001222", "video_name": "62607f3a-08ee-5033-bd30-9308ee7750a0", "text": "A humanoid dragon, wearing armor but without the helm, showing its draconic face, holding a mace with faint holy light held high above the head and carrying a shield, riding an adult silver dragon while flying across a orange sky "} +{"id": "8001312", "video_name": "d06cbe00-8e9e-5229-af8e-69feff9800b4", "text": "muscle car going on road in rain at night, anime style "} +{"id": "2003372", "video_name": "30f360b7-2bde-5578-8b3e-9757255e9ba0", "text": "boys eating and weraw sun glasses "} +{"id": "5001529", "video_name": "fafa2595-be8b-53de-b3b0-f8910327a0cd", "text": "TECHNOLOGY FROM THE 1950S IN A TECHNOLOGICAL LABORATORY "} +{"id": "1004344", "video_name": "50223269-e12e-5650-9fca-f646fe405923", "text": "Children sit in a circle, looking up at the stars with expressions of curiosity and yearning. "} +{"id": "7003510", "video_name": "bf288e93-6ddf-5086-a40b-d42ea7cee77b", "text": "John Wick with samurai sword slicing zombies "} +{"id": "6004972", "video_name": "1de9e868-799b-54ca-a72c-4d17201797f1", "text": "Outline the steps to preheat the oven. "} +{"id": "6004504", "video_name": "bff3f956-d02b-5e5d-932b-e5abc99d705d", "text": "all animals talk to the each other "} +{"id": "7003696", "video_name": "4edfe7df-f5a5-5ec6-9785-ed90fdbb20a2", "text": "animation of the Forbidden City in Beijing, China, frame rate 29 frames, duration 8s, size 16:9, "} +{"id": "3006044", "video_name": "ed42fcbd-0a79-5214-895d-7fa48865b570", "text": "pixar 3d alone cow on a farm, 4k quality, 3d animation colorful, in the green hills, kids video "} +{"id": "1004135", "video_name": "4ca45cd9-b4ad-5e84-8eea-6ced8c9707e3", "text": "camera traveling through rainforest plants, banana flower, Monstera deliciosa, Heliconia, Passiflora, Victoria regia, dark green leaves mixed with abtract shapes of asphalt, concrete and abstract shaped rocks, vibrant colours, photorealistic look, super wide shot "} +{"id": "6002866", "video_name": "a53cb48d-5c97-5071-81be-7d48c381d0a5", "text": "A video game in which the main character is an android, who was created to serve the army of the state, but at some point he gains consciousness and goes against his program Message: video game (Font: MODERN) "} +{"id": "7004980", "video_name": "37eb83bd-7ad2-5fd6-8918-ac12081849e0", "text": "A large stream of water flows out of the rock, with people from the time of ancient Israel standing around the mountain "} +{"id": "2007671", "video_name": "2df13ed4-ddeb-5850-bf08-a09507218afa", "text": "A quiet neighborhood with houses lining both sides of the street and trees dotting the sidewalks. Scene 1: "} +{"id": "8003313", "video_name": "24148ca7-f136-56db-b379-d70f89d43ef0", "text": "Erupting volcano shooting out blue bioluminescent lava in a snowstorm"} +{"id": "7003751", "video_name": "a510530d-aa43-50de-904b-44b4283fa600", "text": "A serene village scene, with Lily and Max running through a lush, sunlit meadow, surrounded by wildflowers, as their laughter fills the air.Animated cartoon "} +{"id": "8003559", "video_name": "cde160ec-4c88-52ff-bc5a-34aa290ef694", "text": "Hair like rose petals. The woman blinks her eyes "} +{"id": "2005577", "video_name": "26f10413-e11b-5f02-8d0a-ee7182bfe032", "text": "santa claus sitting on a desk at work "} +{"id": "1006171", "video_name": "70ed184e-9436-550e-ba07-51ce296916d0", "text": "Within the heart of a dense rainforest, a donkey stands by a tranquil jungle river, its presence amidst the lush greenery is both unexpected and captivating, the air is humid and alive with the sounds of exotic birds and rustling leaves "} +{"id": "2004766", "video_name": "23ac93b6-f334-5499-8975-e97842fdd5de", "text": "a Quinque sword inspired by tokyo ghoul, scene in a old japanese house murder "} +{"id": "7002616", "video_name": "e5394513-2c5b-5e70-b224-dcff3988a464", "text": "plane to take off with him and the crew, ordering them to fly to Mexico "} +{"id": "8003771", "video_name": "5b682b11-964d-5456-87da-0781db06a057", "text": "Create a video capturing the open sky with the sun setting over the vast ocean. Show the waves gently rolling in, and the sound of the breeze mixing with the soothing sound of the waves. Ar 16:9 and High quality 3d animated 8k video. "} +{"id": "5001081", "video_name": "db775b9f-3aff-59c0-96ee-79a926a0b3a5", "text": "isometric animated video with minimalistic and modern design with a color scheme of soft blues, greens, and neutral tones. Two persons with hand shake and money flow to both of them. Software isometric view and Social media icons on the background. Make figures very clear and sharp. "} +{"id": "4002806", "video_name": "0908b118-64f7-5c03-a910-6fd6a8794e1e", "text": "the night New York City marvel film style "} +{"id": "8002486", "video_name": "2cefbcfa-491e-5fde-9fde-64ee425de4b7", "text": "Godzilla stomping on a car with his paw in style of Akira anime movie "} +{"id": "7002751", "video_name": "a6cfc4bd-57a8-5237-a81e-5714c9db7422", "text": "bring the bear alife Message: 1 Attachment "} +{"id": "1003581", "video_name": "41f69360-2ce9-56ad-adcc-780fed7bcb4b", "text": "photorealistic, plane colliding with a light rock cliff, set against the backdrop of a vibrant blue sky "} +{"id": "2003961", "video_name": "ba239d5f-a049-58c5-ac3c-9db4cd05f9e2", "text": "Destroyed planet, floating starship wreckage, detailed depiction, real, 8k, "} +{"id": "3003234", "video_name": "f69bb9cb-2e06-56ac-b8f4-8b197f5c3e5f", "text": "a spaceship appears in the sky above the forest "} +{"id": "4002072", "video_name": "4f045173-ea00-528f-9585-c06e15a9395a", "text": "hyperlapse wide shot of a galaxy formation, ar 16:9 "} +{"id": "7004002", "video_name": "707fe569-e42b-56d6-b188-6d1b3dc51755", "text": "they learn that true richness lies not in material wealth, but in the shared dreams and aspirations that bind two hearts together. "} +{"id": "5001628", "video_name": "3689541e-ac62-5492-b6e0-e15a06b6139a", "text": "witch summons oni djinn from purple portal on ground ultra realistic "} +{"id": "0004055", "video_name": "0269b9b0-a401-55bf-9a44-7d0f976d5bc7", "text": "1950s dreamcore super 8 footage of Lovecraftian king in yellow, vid warm color palette. Night time forest fire "} +{"id": "1006911", "video_name": "7e614e3f-ffa6-55ea-9350-1b46c3726b98", "text": "bear wesring sunglasses riding a motorbike on a highway "} +{"id": "4004298", "video_name": "ba5daa45-de59-54b0-a094-1588b2e4b78a", "text": "an upscale Mcdonalds for rich people "} +{"id": "3006093", "video_name": "67b51d08-e659-54ec-aabc-ded74fa89b01", "text": "Drawn by marvel and DC Comics: Wolvering slashing a metal train "} +{"id": "7002788", "video_name": "41beed58-7c1f-5713-9116-660052be232a", "text": "one chef cooking at modular kitchen "} +{"id": "0006575", "video_name": "2ed822e7-6c25-5147-a8fb-816dd28f60d0", "text": "Visual: The camera pans across the sun rising over the Alpine Mountains, slowly zooming in on a cozy homestead nestled in the valley. Sound Effects: Birds chirping, a distant stream flowing, and a light breeze rustling through the trees. "} +{"id": "2003794", "video_name": "83f9ff73-7ab9-5501-96fa-9d355db1b010", "text": "A giant Gundam robot raised its arm over the battlefield "} +{"id": "3004018", "video_name": "8bfe6d38-8da3-5afa-9d30-595ebf29f63b", "text": "Paw Patrol Chase and Marshall running to capture a big rat in a street at night "} +{"id": "1005039", "video_name": "5d295ae9-71c7-5d77-9aa1-fabbc3daeff4", "text": "big bang creates earth and life blossoms "} +{"id": "3004184", "video_name": "30f0c4db-967c-5464-8e77-68a414c43f48", "text": "Today, as you gaze upon the surreal landscapes of Namibia, "} +{"id": "2007945", "video_name": "99e4f977-7a6e-54a5-9561-91c0167cb0c4", "text": "Create a drawing that depicts the evolution of human society based on the provided text. Show primitive humans initially standing alone, then gradually coming together in groups. Illustrate the idea of cooperative protection by displaying a lone figure facing danger without tribal markings, contrasted with a group forming a protective circle. Progress to scenes of larger groups cooperating to achieve tasks. Emphasize the societal transition from isolation to cooperation for protection and mutual benefits. "} +{"id": "3003833", "video_name": "cf693647-2bbf-5408-89c0-8318c7609190", "text": "a violet opening to reveal a beautiful fairy inside "} +{"id": "2007567", "video_name": "d9a8b32a-2bf5-51d3-9a99-24c15fa16d49", "text": "One day, a poor farmer approached Ravi, seeking help "} +{"id": "1006201", "video_name": "71a10e85-b6d8-5f07-8614-b2524a66d8b3", "text": "cinematic, a carpenter in the workshop "} +{"id": "5001085", "video_name": "e40df704-5612-5bc1-acbe-897f3fe44936", "text": "Wong Kar Wai movie style, retro futurish jazz bar singer, smokey atmosphere "} +{"id": "6004562", "video_name": "405254f6-b520-5e34-9640-558da78dd9f2", "text": "charachter marching in the style of Japanese anime similar to cowboy bebop. song fe lense 25 mm. 8K resolution. Color grading in the style of cinematic darkness akin to oppenhiemer movie. "} +{"id": "2003964", "video_name": "d6fc9e47-7cc1-5a8b-a73f-ecbbe0011f74", "text": "ornate green and gold casino chip, embossed with clover design "} +{"id": "1004725", "video_name": "57a308c7-aa27-562a-9ecb-1c53ba75809f", "text": "people with jellyfish head in the brutalist scenario, super realistic, cinematic look, dark and hyperrealistic, 4K "} +{"id": "1006843", "video_name": "7d1886cc-a334-5a41-9af6-8b88b038cf08", "text": "Liberty City being destroyed by a volcano "} +{"id": "0004130", "video_name": "03bc1f32-1279-587f-9152-824b6c4c8acc", "text": "Microorganism shot next to a mushroom, science fiction 8K "} +{"id": "8001695", "video_name": "0702ddac-5cbd-54ce-80a9-8835b469403b", "text": "A family in their living room watching the news on their television "} +{"id": "0003684", "video_name": "41a936e9-1e23-572a-90da-1568301a5f4e", "text": "A small alien ship floating in space fully in frame. Dark space background with small fires aboard the ship. "} +{"id": "3005083", "video_name": "88de5ac0-3146-5179-9289-81008c624f99", "text": "fighting in Afghanistan. video 40 seconds "} +{"id": "1004820", "video_name": "59133582-d414-5c7a-9492-064503b3fc8b", "text": "husband wife talking in house and husband was crying "} +{"id": "1004088", "video_name": "4bb7a067-0e24-529a-ac1a-9257eba531a9", "text": "Side angle The girl sitting alone on the top of a high mountain, her long hair flying, her face contemplative, the color of the sunset, the breeze, the sun about to set, anime cenimation, High Quality, 16:9 aspect ratio "} +{"id": "0006248", "video_name": "29333a0f-b0fe-5da6-9d47-3d6e64ddea1d", "text": "a girl watching a starry night, cinematic "} +{"id": "4003254", "video_name": "2b4f9aef-99ac-5096-937b-cf2d8c82bad2", "text": "After Ramu taught Manu how to do farming properly, Manu expressed his gratitude to Ramu. "} +{"id": "1006648", "video_name": "79d35059-178e-51e3-9291-7f4653c3287e", "text": "laboratory worker looking into jar with chemical substance from very small distance Message: 1 Attachment "} +{"id": "7002786", "video_name": "a3ef4e63-ed02-593f-983e-3287bc149258", "text": "Kennedy Town MTR Station was opened in 2014 as the western terminus of the Island Line, which runs from Kennedy Town in the West to Chai Wan in Hong Kong Island East. "} +{"id": "2004911", "video_name": "7d61c5c1-69d1-58ee-a204-b0c7aac2ad0a", "text": "a photo of a man with a scar across his left eye "} +{"id": "3006454", "video_name": "91319678-b819-50ab-b517-9a0af001e087", "text": "a falcon flying a kite in a thunderstorm "} +{"id": "8002928", "video_name": "15efe5b3-f30f-51f3-9902-15eba535b52b", "text": "Between a high mountain range, there is a river where a poet wearing a straw hat is drinking alcohol "} +{"id": "8001186", "video_name": "739b2d65-97d8-5193-914b-43bcbda944c1", "text": "a vet administering medicine to a cat by placing a pill in cats mouth. Cat is sst on a table. Everything is in black and white except for the pill which is red "} +{"id": "2005552", "video_name": "b2e7ca54-24da-5a95-bd28-0cb8a559a4a5", "text": "a group of brave souls entering the wax museum "} +{"id": "6004275", "video_name": "f18e4687-3c2b-5751-89e8-6367163fcb46", "text": "Astronauts float helplessly in the universe, cameras rotate "} +{"id": "0005065", "video_name": "140c766e-2fd0-520a-88fc-c5bc49150183", "text": "film still of bruce wayne waking up at 5 am in 2024 movie scene "} +{"id": "2006702", "video_name": "6f65e293-4cbd-5807-85a3-2216d9f8ba3d", "text": "3d, a kid holding his books at school "} +{"id": "3005476", "video_name": "e8aed6f5-ce74-5cda-8ef8-f51baa9728ff", "text": "A Lion Fighting a Tiger, Cinema, Realistic, Animation "} +{"id": "0006839", "video_name": "34023c06-e742-53d0-8533-cb6fa57a7b58", "text": "A plane escaped from the volcanic eruption "} +{"id": "3006420", "video_name": "72995e64-48d1-5ec6-873b-7a9bb604a7a4", "text": "Elara, a graceful and radiant fairy, with iridescent wings, as she weaves intricate patterns in the air with her glowing hands, surrounded by dreamlike images. Message: 1 Attachment "} +{"id": "2007506", "video_name": "6cceee8f-b718-57df-ab41-2df6bc031af3", "text": "austere black and white footage, the film takes on the somber tone of a 1940s scientific documentary. A male narrator with a transatlantic accent introduces the audience to a pristine laboratory, where scientists are huddled over microscopes. "} +{"id": "6003793", "video_name": "12ed19bb-efe6-5dd4-9c3d-92fd7e59e88c", "text": "happy cow smilling in a green field with some trees and a river "} +{"id": "6004089", "video_name": "c385b8ad-2c29-5e5a-8c5a-1d13f89b24fe", "text": "And so, Mia, Leo, and Zoe continued their adventures on the Jungle Island, where the power of imagination and the magic of friendship would forever reign supreme, making their journey an endless tale of wonder and discovery. "} +{"id": "2003272", "video_name": "487fafb4-c54b-584f-ab80-ff86c0a4742b", "text": "picturesque town, there was a curious young boy named Alex "} +{"id": "7003433", "video_name": "c12ca6f9-3d3f-583d-9b54-3dbb426bde62", "text": "Traffic lights flicker on the rainy street "} +{"id": "4002394", "video_name": "0a24815a-3436-5edc-898d-14e0a8447464", "text": "At noon, fishermen fish on the beach in the Maldives "} +{"id": "5001913", "video_name": "0b55c21c-ddbe-5628-b385-fff437dac541", "text": "zendaya dancing on the beach,motion 3, fast zoom "} +{"id": "2004539", "video_name": "35d3040c-9cfd-5175-9d88-5a6f0617593b", "text": "In a fierce battle, they destroy the control center and figure out how to deactivate all the robots. "} +{"id": "1005746", "video_name": "69c13fd7-911b-5105-8c6c-596c61dcfe76", "text": "man wearing a dark wolf mask approaches in a shadowy forest "} +{"id": "0003795", "video_name": "4382da64-2c3f-5071-9152-8335177f26b1", "text": "Little frog, admiring the clear water by the pond, "} +{"id": "2007763", "video_name": "fa220415-d0fb-5fec-9978-7f82fd415bc5", "text": "Harry Potter character, the face should be more similar to the face from the photo Message: 1 Attachment "} +{"id": "4004942", "video_name": "759fd801-6b91-5bc4-8ee6-460bea22b15a", "text": "create me a landscape of mars as if you were looking out of a window "} +{"id": "4003918", "video_name": "c84e2700-b2eb-509c-b4d5-aa4f35025fbc", "text": "an angel with white wings sits in the background of a field of flowers "} +{"id": "2003153", "video_name": "65cdc2ec-2f7b-500e-8493-8159221a2d88", "text": "a studio ghibli girl is looking at you while walking away, animated hair, dark woods "} +{"id": "0005062", "video_name": "13fa768a-6d14-594f-be9b-c62ba2a2631e", "text": "beatifubeautiful young girl and boy love story with bus "} +{"id": "2005390", "video_name": "348589d2-95cf-552d-812d-b8ede5e339a7", "text": "a cat small white in park "} +{"id": "0003575", "video_name": "3fc8d312-5a60-51f9-8188-d2e1b794e1ac", "text": "a lovely open ocean with whales comes out of the water "} +{"id": "8002201", "video_name": "b7a1f60f-530c-5865-8d6e-ec21743045e2", "text": "a penrose triangle floating in a narrow liminal space in the style of Henry Lievins "} +{"id": "0004294", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "a plane flying in a beautiful sky like an airlines commercial "} +{"id": "5001331", "video_name": "59f095a3-73a7-5381-a244-b7541dcfeb94", "text": "a person walks towards the cross and stops in front of it "} +{"id": "0003313", "video_name": "3b6e54ff-39a2-5c10-a378-72848ebdcfeb", "text": "a long line at a government office of india. "} +{"id": "2005935", "video_name": "e7a83ef6-befd-5ab4-a18d-9bc17a458b54", "text": "beautiful girl walk down the street "} +{"id": "0006113", "video_name": "26ced35c-1f85-5254-8bba-312f1bcbcc46", "text": "n the other side, an emerald green dragon playfully rests, its eyes glinting mischievously "} +{"id": "1005123", "video_name": "5e73df83-d68e-5924-be69-3b46654c4e00", "text": "robot sitting at a desktop, computer with data and a picture of beer "} +{"id": "0004462", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "Bjork style, nick knight, ric owens fashion, jodorowski "} +{"id": "4004486", "video_name": "a32bf841-9ee1-5f4c-90cf-8627dbc06b84", "text": "first person view of flying a plane into a navy ship in ww2 "} +{"id": "7003275", "video_name": "254ef322-6bef-530c-af43-8c4f6605051e", "text": "The mascot was waving and the breeze stirred the leaves Message: 1 Attachment "} +{"id": "5001512", "video_name": "d1091aeb-8e38-5f36-affc-84156159ca6b", "text": "A girl running away from a collapsing bridge "} +{"id": "6003894", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "Beautiful Sikh woman sitting on a rock looking at the ocean. "} +{"id": "6002118", "video_name": "964f3793-87d1-55dc-83f8-109a9e34baac", "text": "He meets him in person and hopes that his depression will be resolved. Message: 1 Attachment "} +{"id": "6004923", "video_name": "739e326e-ce5f-53ae-b8c8-79d8c7052392", "text": "woman in a white Victorian dress dancing under the full moon in a garden filled with night flowers, nostalgic, sad, full view "} +{"id": "2006249", "video_name": "78aa2a26-3edb-5800-b462-da136eb44d2a", "text": "chickens sought shelter from the unrelenting heat "} +{"id": "8002837", "video_name": "d4bf185b-f6c9-5d8f-91c4-ecf3a9751444", "text": "4 Cute Japanese friends watching Vancouver fireworks show! "} +{"id": "5001194", "video_name": "dd96c480-6089-57f2-969a-922313c55daa", "text": "Santa cLaus in a red tuxedo and bluetooth headsets sitting on a rocking chair "} +{"id": "2007144", "video_name": "3ac8070a-3218-5e17-ae35-2921cebb1e88", "text": "In ancient China, the light from a celestial comet revealed a mysterious figure clad in ethereal silk robes, bearing an ornate jade staff in hand. "} +{"id": "2007010", "video_name": "ecda3b11-97a7-51b6-bd0d-65ae22a0bd8f", "text": "anthro fluffy fox wagging 9 tails teasingly while walking "} +{"id": "1003961", "video_name": "4924e60c-9ff5-5538-b60a-93e3c448bf67", "text": "The Mad Titan, Thanos, stands defiant against the united Avengers, but something extraordinary is happening. "} +{"id": "1006806", "video_name": "7c9fab1e-b7a4-5d71-a5b8-de40709958c5", "text": "a kitchen on fire and an automatic fire suppression system active working to put it off "} +{"id": "8001967", "video_name": "a71530c4-ac93-53fe-8963-d1ba9b6bc791", "text": "Sally\u2019s arm holding deadly nightshade, Tim Burton "} +{"id": "4002558", "video_name": "46fb1bb0-dda9-5b2e-8217-ce7537514a26", "text": "a girl dressed as a raccoon, wearing a colorful rainbow dress, dancing on a colorful stage "} +{"id": "7002122", "video_name": "18097171-c713-598c-ab4c-70396ffb55e4", "text": "In the evocative style of a 1940s film title card. The letters, bold and dramatic, are adorned with a touch of noir elegance, casting shadows that dance across the animated backdrop. The vintage aesthetic, reminiscent of classic 1940s cartoons, sets the tone for a thrilling tale of mystery and suspense in a bygone era. "} +{"id": "1004082", "video_name": "4ba1d5f3-a72e-5cae-842e-3428537d864e", "text": "Photo of tyrannosaurus rex running through the jungle chasing people running. "} +{"id": "6003062", "video_name": "ebf99c8d-28e1-5fad-abe7-a3f2cbd87701", "text": "girls is speaking and clocks are turning "} +{"id": "6003673", "video_name": "e2d44be3-fe66-5881-8baa-474429db0522", "text": "Lu Zhishen sitting in an ancient chinese room doing embroidery, close shot, realistic "} +{"id": "1003155", "video_name": "3a28297e-acb8-5fba-a22b-bec9a525298c", "text": "1800s Woman screaming in woods smoke rises behind "} +{"id": "7003429", "video_name": "2b6d6bd2-314d-59c3-8d8c-b20dfa6efb82", "text": "beautiful sunny day, beautiful beach, waves crashing on the shore, UHD, 4K, Highly detailed, stunning cinematic "} +{"id": "2005251", "video_name": "f624b07b-78b3-57f2-bfaa-c0a5bbbd81cf", "text": "Pop Mart inspired toy in the theme of colorful and beautiful lady in her mouth "} +{"id": "1005711", "video_name": "68ff100d-f24b-5d78-89f6-a9f1d7317ebd", "text": "She walks down the street, she is as if gone, she was at her wedding and there has been a bombing, she is wearing a black lace wedding dress, the dress is torn and dirty, her hair is disheveled, the street is destroyed by the bombs , there are people running from side to side, some push her, there is dust in the air, she is looking for her boyfriend who she was marrying, she finally finds him, they hug and kiss in the middle of the chaos. Cinematic, war movie. "} +{"id": "0003059", "video_name": "36455af3-f963-556a-b9b7-e3d60dd558da", "text": "car and motorcycle chase Italian country road "} +{"id": "0006247", "video_name": "292cd963-df52-52ee-b9c5-b1b3079c765e", "text": "An image that combines elements of the legend, such as a monk, the devil, and the massive book, with an aura of mystery and intrigue. "} +{"id": "3004856", "video_name": "1a66e131-8e31-5e2a-bbaa-af6d74d12d9e", "text": "group of radioisotopes with its nucleus in radioactive decay "} +{"id": "3006859", "video_name": "63e32a91-ef8d-5209-8f20-edafed6dd6a4", "text": "unreal cartoon of a dense forest tree with river flowing below "} +{"id": "6000008", "video_name": "394c5b56-be5e-5ce7-a56a-20010b015b0f", "text": "cork popping out of a champagne bottle, cartoon "} +{"id": "0005033", "video_name": "13753b0e-2722-5a4c-aece-3d052bfba36c", "text": "alion wake up angry and looking at mouse "} +{"id": "3004659", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "an angel with yellow wings, falling from the sky into a pink meadow "} +{"id": "3005557", "video_name": "48f1e6ae-dfaa-512d-a1d0-bc1e271b8381", "text": "create a 3d render for in which in background there is a park and it is night and stars are shining and a big star should look like as it is on earth and a kid is sitting on bench in park looking at that star "} +{"id": "0006727", "video_name": "31da8261-f9da-5257-bdc1-60799afc25f4", "text": "10 second video raversing through a series of challenging landscapes. The image should depict them navigating through dense forests, with thick foliage and towering trees creating a mysterious and foreboding atmosphere. In another part of the image, show them cautiously crossing a turbulent river, its waters rushing fiercely. The expression on their faces should convey determination mixed with cautiousness as they navigate the treacherous waters. "} +{"id": "2004077", "video_name": "cac13d20-a0d3-5477-85a4-66d757e5e13e", "text": "Generate an Video two sisters anime of life, with a symbolizing sisterly love walking in garden "} +{"id": "2003952", "video_name": "deb2ffa8-2791-5576-8beb-f6a503ba976b", "text": "stage with a large illuminated cross in the background "} +{"id": "3003318", "video_name": "e05fa304-fd5f-5310-ba78-1bb64756dbd8", "text": "a panda in a suit speaks to the camera "} +{"id": "4002190", "video_name": "92f32b0a-50a0-55cb-a92e-7777482ccf65", "text": "Christmas Tree wallpaper, happy village, snow, pretty, beautiful, masterpiece "} +{"id": "3006186", "video_name": "5e197ee4-c14e-5948-8249-6127d3c678de", "text": "barack obama saying hi make it looks hyper realistic "} +{"id": "0003990", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "a old Man dressed like a soldier in the Forest. "} +{"id": "7002926", "video_name": "19356fc0-bdec-5301-8d2b-42d59118998c", "text": "gaten matarazzo playing Keyboard with stand "} +{"id": "7002658", "video_name": "41f2ad41-ecc6-5498-8db3-9b093c033cfe", "text": "a man standing against the devil with katana "} +{"id": "0005336", "video_name": "190378b7-f8c4-5e1c-a8d5-19c36d212168", "text": "A hyperdrive tunnel of fractal patterns and neon colors, blurring the line between reality and digital space. "} +{"id": "6002014", "video_name": "9a7b53a7-0b88-5dcf-a6a9-fd86261d872e", "text": "tumor innervation, with cancer species include, than tumors achive to do breast, 1 minute video "} +{"id": "8002192", "video_name": "7c0616f5-2281-50a3-9c6b-80ffc60caac7", "text": "people running down the beach afraid, running from something, hd, realistic "} +{"id": "0003818", "video_name": "440c7364-e96a-5231-abfa-fe49e8d4f9fd", "text": "tree in the forest with all frequencies and spectrums visible "} +{"id": "4004435", "video_name": "a1c021fc-31b6-5d95-a236-4cc0271b7ee2", "text": "A scared group of people with the lights from a police car reflected on their face "} +{"id": "2005373", "video_name": "45d323dd-65e4-580b-9af3-20f074f8c7ce", "text": "gold many steampunk figures beautiful girl in the centre of composition high detailed Klimt style inspired "} +{"id": "5001710", "video_name": "8ccef3a2-3b0e-58ad-a381-c68e02c47044", "text": "mountain sized vase on pottery wheel "} +{"id": "3004339", "video_name": "602bb4f7-7d55-581c-8b64-1f14ad286118", "text": "So he ordered Nandi and other the servant to take care that no one should come inside the cave. 3D cartoon character Disney style gs5 motion 1 "} +{"id": "2005596", "video_name": "ea0cabd8-6f0e-5c9b-9357-f62aa10bd42b", "text": "the gleek of sam neil drinking the syrup "} +{"id": "4003715", "video_name": "f1e6d1cb-6b8d-5c4d-b6fb-f22d96b09cba", "text": "an earthquake shaking the ground in the rainforest "} +{"id": "3005348", "video_name": "a793f45b-d1e1-524a-b00a-d6c7f749d317", "text": "diamonds rotating on a beautiful mountain vaporwave "} +{"id": "8002441", "video_name": "996e1f4f-f6f9-5fde-9909-6a37a4b4b4ee", "text": "girl saving a cat in road "} +{"id": "4004305", "video_name": "f2fce687-f894-5661-bc56-1e5098102455", "text": "abstract cloth forms undulating in cinematic lighting "} +{"id": "1003989", "video_name": "49c5e3be-e0e4-5243-8c82-9367cfec088b", "text": "an old tv surfing in desert "} +{"id": "6002135", "video_name": "d686ba70-b48e-5e5f-b890-0d7f315aa883", "text": "Man watching bilboard bank advertise next to boulevard, tehn grab the bilboard and transition it into his phone in hands with the same advertise "} +{"id": "8001901", "video_name": "85f9ed87-638c-5024-87a7-eccee5f1612d", "text": "Barren land, large number of peasants, grey, poor, famine, barren, gloomy atmosphere, grand scenes, dark style, evil, medieval type "} +{"id": "2004518", "video_name": "28239ec4-814f-58b5-8370-6c950e67f069", "text": "scripts: How do you know how many atoms are in a molecule? "} +{"id": "2007122", "video_name": "694029f1-11e3-5f45-860e-fdc5e682e21b", "text": "ghosts clapping hands and being happy "} +{"id": "3006673", "video_name": "552239e2-bd71-5982-813b-04adbf21660d", "text": "Depict a magical sunrise in the meadow, with the sun casting a warm glow and the surroundings coming to life in a dazzling display of colors and movement. "} +{"id": "6002321", "video_name": "47d3a589-29ba-5da5-93f1-62b4b70e4cff", "text": "Describe the universe in one sentence "} +{"id": "1005318", "video_name": "61b93753-f043-5746-a95f-2843d92ed016", "text": "3D animated old korean women smiling "} +{"id": "4003219", "video_name": "a5f3604d-82ee-59a7-90f2-fbaea56a9b51", "text": "Draw a picture showing a giant snake with a body the size of a cow swallowing a cow on a farm. in the background, illustrates the atmosphere of a farm with lots of goats and cows on the mountain slopes. "} +{"id": "2003696", "video_name": "6f5c7ba4-ab6c-5830-b162-916666cf6631", "text": "heavy mechanical steampunk lock gates open, give away green background "} +{"id": "6003790", "video_name": "50fdbf3e-7d46-53d6-b0ba-7a7026cf4039", "text": "pls made erase subtitle n make it to hd Message: 1 Attachment "} +{"id": "5001341", "video_name": "f9932931-56f7-5516-9e14-6a554aaa8eee", "text": "In the Jurassic era, Tyrannosaurus rex was chasing its prey. "} +{"id": "7003569", "video_name": "8f3daf97-14ee-5b69-ae8a-b008731f493c", "text": "the bubbles are popping and she is surprised but happy "} +{"id": "0005627", "video_name": "1e560ed3-3edb-50a9-a1d2-59f712318252", "text": "big wall infront of a trophy "} +{"id": "0006194", "video_name": "2800b74b-a646-5d3c-a07c-91be6f1da56a", "text": "robots touching like MichaelAngelo\u2019s the creation of Adam "} +{"id": "2005395", "video_name": "c64fd22c-f799-5b7c-9768-1ef48327c030", "text": "thomas shelby walking out of an explosion in style "} +{"id": "1003945", "video_name": "48c9ab6a-97e7-5d5d-9442-a2aa07d29d22", "text": "NFT with the kawaii pet and astronauts "} +{"id": "0005349", "video_name": "19390eca-0386-5717-a87e-802837fe4fc5", "text": "create an image of wildlife in the savanna "} +{"id": "3004875", "video_name": "b219889b-0d0f-5a8a-b398-881fdf069535", "text": "A Muskrat waving at the camera asking people to join them on a community games night "} +{"id": "4003043", "video_name": "02435c1d-6423-5ee1-ac25-a721c1494357", "text": "image of a boy sitting next to Pashupatinath temple in nepal. Hyper realistic image evening time depth of field "} +{"id": "2006193", "video_name": "fefebacd-5246-57cf-a3cc-c57aab8f6ebc", "text": "video of Saint Catherine of Alexandria as a patron saint and symbol of faith and courage, 8k, photorealistic, cinematic, realistic, perfect cinematic light, excellent quality, highly detailed "} +{"id": "1006343", "video_name": "7413699e-3117-5da6-93c3-564e9258794c", "text": "The Ark of the Covenant, with its rich history and religious associations, symbolizes a connection between the divine and the human, representing a promise of covenant, spiritual power and mystery. She continues to exert an influence on culture and imagination around the world, becoming a cultural icon that transcends her religious origins. "} +{"id": "8003752", "video_name": "374ebc6c-b57f-5864-844a-26097c4c1863", "text": "a young programming teacher with a beard leads a lesson for children "} +{"id": "0005268", "video_name": "1791468f-e4be-5dbd-8519-33cd2e8d9ea8", "text": "running out of a liquor store after obtaining many things surreal nighttime rain 90\u2019s "} +{"id": "6002234", "video_name": "de420d86-2831-59f6-b09c-389db51934f7", "text": "Delivery motorcycles are loading up and delivering to town "} +{"id": "1004511", "video_name": "53bc497f-fa5d-514b-b62a-7cefe9a1d1ad", "text": "an asteroid cluster moves towards Earth, cinematic, detailed, motion 4 "} +{"id": "7003048", "video_name": "fbdcc3dc-80fb-57f3-a5c8-98521dc51976", "text": "bird, yellow, navy blue, black and gold, istockphoto, yellow and green, beutiful!, full length shot, madagascar, bright and matching colors "} +{"id": "2006378", "video_name": "6b3f4ae3-7d35-5eb7-b3b5-70f9e5c1c525", "text": "dodge challenger drives through the desert "} +{"id": "3004194", "video_name": "aa4554a8-5dbb-5874-bc8e-76aaf57f34db", "text": "a princess of alien standing in the crowd of her kingdom, a neon blue colors around, glitering cyrstals around, shimerring orbs hovering above, crowd of neon blue aliens like a pokemon, magical and fantastic place "} +{"id": "3005195", "video_name": "6e8279b2-d24d-53dd-b926-b582be55ccaf", "text": "An illustration of a bored preteen boy with short brown hair and green shirt, sprawled lazily on a living room couch and sighing as he flips through television channels. Sunlight is streaming through the windows behind him. "} +{"id": "8001058", "video_name": "d14b6cb9-8f47-5211-91f4-5aa6c562fe53", "text": "brunette girl throwing lasso in meadow, from the back in the distance, modern jean and shirt. Ferocious, determined. Style illustration, Lasso turning "} +{"id": "6002458", "video_name": "e0c809de-bf63-52ad-84a4-1505df18564c", "text": "colors of paint poured on a white canvas, liquid gold. abstract movement "} +{"id": "0006915", "video_name": "3541d8e4-806b-5bea-a936-872b7bf44d27", "text": "beautiful christmas images hig quality vibrant "} +{"id": "3005495", "video_name": "9189160d-28fd-50cb-8595-8bae2e15548a", "text": "a garden with bees and near The beach Message: Love U Sara (Font: MODERN) "} +{"id": "8002141", "video_name": "0eb31ed4-5fda-5070-8d88-2b0264fd9267", "text": "fashion model walking down the runway in an outfit inspired by instant noodles. "} +{"id": "3004730", "video_name": "5942b402-f6c2-5c7f-a8a3-60ba751b2a7c", "text": "a man is stepping up high on the very high mountain "} +{"id": "2006916", "video_name": "a6daa011-6a54-5c99-9270-477b984b1624", "text": "A motorcycle rides on a highway with burning wheels "} +{"id": "2004568", "video_name": "4275360f-1808-5b0e-b6a4-867a973e1588", "text": "cinematic, kpop, cute lips, slim Asian, fashion , fashion, asian dream woman,asian dream man, 17 years old, sitting in the classroom, blue sky outside the window, clouds passing by, Makoto Shinkai style "} +{"id": "7002066", "video_name": "923db24b-453a-5ec5-9e3c-cefc8abc3d91", "text": "a digital clock displaying the time 06:30. "} +{"id": "0006245", "video_name": "29195791-25ee-5ecb-be79-e38c5d52b08e", "text": "At the seaside, a beautiful woman sat alone, immersed in her thoughts. Her long hair gently fluttered in the sea breeze, complementing her white summer dress. Her feet gently tapped against the waves, creating a serene sound that intertwined with the cries of seagulls, forming a summer symphony. "} +{"id": "3006778", "video_name": "d03eb76c-b424-5d18-aa9a-48958683d831", "text": "strange cartoon, clay man is looking up to the fog sky "} +{"id": "3003166", "video_name": "3366a347-d266-5d5c-84a7-c650c9133cf0", "text": "Camel carried water, food, and other necessities, while old man Ahmed guided their way with a map and a compass. in a 3d animated video "} +{"id": "1004364", "video_name": "50a29896-79c5-5bf0-b6ca-2cfea1a406e4", "text": "a graveyard by a church in a mountain landscape "} +{"id": "8002543", "video_name": "f91d61e6-1f6b-54a9-9a8a-1795473f3e97", "text": "The dragon celebrating winning the trophy "} +{"id": "8001142", "video_name": "47568aaa-1d02-56b0-bb43-10d3b858fd62", "text": "Space craft flying from space odyssey 2003 "} +{"id": "3005531", "video_name": "e019aca7-af9d-5024-9641-e77b47c48225", "text": "an person who is a scientist looking at the camera walking towards right turns his face and looks towards the camera, the background is yellow coloured City, cinematic, 4k, hdr "} +{"id": "6004638", "video_name": "c3faa972-ebc6-5905-9075-f03171529461", "text": "green and black esports logo Message: IKRN eSports (Font: MODERN) "} +{"id": "2007604", "video_name": "3a8300a9-db6b-5cc8-a3e7-c3b74fd2c2bd", "text": "Raja ravi verma style painting of Lord Krishna playing flute "} +{"id": "1003300", "video_name": "3cbe4d66-2d44-57a1-ad83-76948065c2f5", "text": "display of musical instruments Message: ghibran (Font: MODERN) "} +{"id": "0003262", "video_name": "3a44c0f9-7924-5cca-8601-113d17401f56", "text": "a boy walk with girl in italy "} +{"id": "8002332", "video_name": "865ca5e9-9357-53fe-b6bd-8ca35a36a0ba", "text": "colorful aesthetic anime city scene with ghosts flying through street "} +{"id": "2006096", "video_name": "c79ca3a3-a5df-5f19-814d-61de95f043b6", "text": "image of Black pokemon style character "} +{"id": "6003355", "video_name": "2e882166-09ee-56bd-9b67-6e0dd7eec602", "text": "A Fleckvieh cow in Amish attire, covershot, best quality Andreas Achenbach "} +{"id": "6004250", "video_name": "557dd1f8-d31d-597f-a8b2-73b17bb23074", "text": "Multiplication Message: Best shop 4 U (Font: MODERN) "} +{"id": "4004203", "video_name": "1695943b-585f-5564-ad46-1bce8803712d", "text": "Harlequin shrimp dancing around a sea star, in clear blue waters in the sea. 4k, high quality. "} +{"id": "1004701", "video_name": "575d3256-3631-5e28-bd7e-33ee44cdc91c", "text": "Female supermodel in the forest at sunset AR 16:9 "} +{"id": "3004366", "video_name": "e1593c80-384c-51be-854d-e1b1b2d17a71", "text": "Messi scoring a Chilean goal on a synthetic grass court "} +{"id": "6002333", "video_name": "5cdc4727-7b21-5325-a128-47457bc90c15", "text": "a wolf chasing a a young hunter inside the forest, realistic photo, clear wild forest "} +{"id": "3004474", "video_name": "93297df8-dc1b-5332-9639-360a351d424b", "text": "As the camera continues to glide, it approaches a blank journal lying open on the desk, symbolizing the potential for expression. The pages of the journal seem to come to life, with words and emotions magically appearing as if written by an invisible hand. 8k, ar 9:16 "} +{"id": "8002582", "video_name": "91903a20-e14d-5238-943e-84fcf4fb72f3", "text": "fishes are swiming around water and character is smiling her eyes are blinking and her body is moving and she is enjoying "} +{"id": "8001337", "video_name": "851636cc-6213-5bec-984c-51f726a68c5b", "text": "Gran Canaria, pretty girl with dark skin lying sunbathing on the beach in Gran Canaria "} +{"id": "4003711", "video_name": "d1a5e898-eb6d-549a-92fd-072a8b08e258", "text": "timelapse of a daisy blooming, close up, HD, photorealistic "} +{"id": "2006355", "video_name": "3b3b9775-38be-5d00-9fc3-1a0db166b76c", "text": "alien world, darkness, green humanoid creatures living normaly "} +{"id": "8002055", "video_name": "80035da6-4d78-52ba-ab3c-f9404fb42710", "text": "the animals are reading a book in the library "} +{"id": "2004067", "video_name": "84c9e6dc-8860-596e-a882-fa6c52f16271", "text": "batman si down on the tower "} +{"id": "6004678", "video_name": "8e3092b5-724c-5695-a781-45c5ccc2edc4", "text": "Along the way, they encountered mischievous fairies, a gentle giant who told stories in rumbling laughter, and a misfit dragon with a penchant for poetry. "} +{"id": "5001941", "video_name": "13adf98d-1b89-5e37-85e3-fd0ce8becfd2", "text": "beach in hawaii with blowing palm trees "} +{"id": "3003427", "video_name": "534600a2-188c-500e-bce6-cfcf780e6702", "text": "in the style of Hannah Hoch and Michael Borremans, Cillian Murphy as Oppenheimer and Margot Robbie as Barbie slow dance romantically during a nuclear explosion "} +{"id": "3004071", "video_name": "8ace5270-de06-5e6e-90e4-8b121e31a05f", "text": "A dog is running, it is snowing. A cat staring at the dog in the corner of the picture "} +{"id": "0005568", "video_name": "1d11d9c1-73bc-5f32-9652-0df26f652e57", "text": "a boy praying in front of Ayodya temple, zoom in view, ar: 9:16 "} +{"id": "1004262", "video_name": "4eeec533-4f1f-5783-ad2c-56cd23afbcdf", "text": "a pistol, in a chest, island landscape western retro color scheme, American propaganda, flat illustration art, "} +{"id": "4004686", "video_name": "6b2bece6-c092-5c61-9a08-2daff401dd3b", "text": "2 cute dinosaurs walking up a snowy moountain, pixar, cg "} +{"id": "1005323", "video_name": "61cbbaf8-9385-58c4-8e1c-ab9d5c1c71ca", "text": "He decided to embark on an exciting adventure to find the tree.3d 8k "} +{"id": "2004633", "video_name": "2ab76faf-37cc-5efa-874c-3dbee6256eca", "text": "burning text Message: hello (Font: RETRO) "} +{"id": "6002979", "video_name": "b2304e1b-16a2-598a-abd9-b0d0df48ec0f", "text": "a child running with a dog in a beautiful fantasy land "} +{"id": "6002241", "video_name": "a18c5004-887d-58f1-a13f-fdff1be8597c", "text": "A Cowboy walking in the backrooms, high resolution, 8k, high definition "} +{"id": "1005833", "video_name": "6b417674-f75d-5927-9d92-9584050c4cc4", "text": "give an image of zachaeus in the bible as taking selfie "} +{"id": "8003219", "video_name": "86ba5617-0185-52e9-9e40-5fa2a668a047", "text": "future war robot soldiers in action, showcasing their incredible abilities "} +{"id": "3004669", "video_name": "3f8a1044-6a76-561c-9c4a-c8d88820fa66", "text": "Thomas closed his eyes, accepting his fate. He would spend the rest of his eternity trapped on the ghost ship, forever sailing the stormy seas.(horror) "} +{"id": "8002258", "video_name": "42afa47e-d037-5c42-94e8-b7958ecc31ab", "text": "The person wearing square glasses is Kang Zewen, accompanied by a garden dog named Xiaobai, which has been raised at home for three years. "} +{"id": "7003338", "video_name": "5d79dfbe-ea0b-54c1-8bb5-bdbe63216316", "text": "A picture of the small spacecraft as they sit inside it and prepare for takeoff. "} +{"id": "6002042", "video_name": "510d3cfc-ce9f-55f1-bfeb-7929a23bca44", "text": "Norman Rockwell style painting of Barbie "} +{"id": "4004372", "video_name": "f41f78f3-e4fd-548c-a72d-cf5ea589e873", "text": "two small kids fighting with Ironman and later Hulk came to help them beat Ironman "} +{"id": "2006442", "video_name": "2480b775-05a3-5071-a1d9-cc46485e362b", "text": "Baby groot, cinematic, 4k, having fun "} +{"id": "2004747", "video_name": "3ea75f94-6ff1-5d62-be57-f46c64b38067", "text": "Slowly zoom in on a closed door at the edge of the jungle, building suspense. "} +{"id": "0003445", "video_name": "3da7b107-2678-5c63-ada9-7c99e4152cbc", "text": "a asian little boy is looking up to the sky and dream to be a science when grow up "} +{"id": "3005286", "video_name": "85e1df64-1e33-5fb7-9995-8421b2d8930c", "text": "races in the uyuni salt flat, "} +{"id": "7003421", "video_name": "1b087576-1e2e-5b19-b586-5f092722a3f7", "text": "where a young man leaves the football arena in Leipzig "} +{"id": "0003127", "video_name": "378e1e55-9c46-5abc-a492-397b7cf34878", "text": "make 10 seconds video on the importance of dopamine detox in our brain. ar 16:9 "} +{"id": "1005137", "video_name": "5eb03a0a-e085-5632-ae8e-865c261e6d63", "text": "A bear with a bottle in his hand sits on a Yamaha motorcycle, rides through the desert, sings songs "} +{"id": "7003951", "video_name": "08c19027-cfb7-51c0-8118-acc1b61b503d", "text": "eerie underground golden rusted torn down kingdom Alejandro Jodorowsky dream like movie zdzis\u0142aw beksi\u0144ski castleas grainy film "} +{"id": "3005950", "video_name": "745e2b8c-7756-512d-bff3-8da1fceb914c", "text": "Love story on a bench at a park "} +{"id": "7003667", "video_name": "a8d1c849-dde0-5ade-8492-9f40e0265241", "text": ": Maximum Extreme Hyper realistic, Maximum Extreme Hyper Detailed, Maximum Extreme Hyper Sharp, Maximum Extreme Hyper Crisp, Maximum Extreme Closeup, Front Facing, Full Body, Portrait View,\nsalvador dali facing the camera proudly touching his moustache in surrealist style of drawing while sitting in one of his paintings with elements of his paintings around him "} +{"id": "1005259", "video_name": "60c2a869-3a9b-5432-95b8-751dff771cda", "text": "a man who has only a torso. His arms and legs are missing.\nHe is on a mobility scooter. He is fast "} +{"id": "2007373", "video_name": "81541758-94f5-5206-9a75-1bc836252603", "text": "The bright moon shines on both ends "} +{"id": "2007309", "video_name": "cf47b64d-2649-575a-9aa0-9199fb8dad5b", "text": "A beautiful graceful mermaid swims in the city. She has long thick blonde hair, blue scales, a turquoise tail, and huge brown eyes. "} +{"id": "3006211", "video_name": "95250ef4-7b24-5dd9-9c9a-e97dff691775", "text": "Design an image of the water spirit granting their wishes, with a mystical ambiance. Make sure it conveys the idea that there will be consequences. "} +{"id": "6002660", "video_name": "079b1e83-5373-5aba-9531-4347e6df4eda", "text": "a beautiful girl wearing red dress and walking in new York city , at night "} +{"id": "0004719", "video_name": "0de9dd78-ca9d-570d-867a-2bae12810bbb", "text": "people dance the waltz in a beautiful castle "} +{"id": "1005959", "video_name": "6d82ece5-e992-51df-9af5-ec299d02f578", "text": "beautiful cherub from heaven, with blue eyes, feathered wings, white clothes, and white short boots on their feet. They hold a shining sword in their hand, with brown shoulder length hair, light skin, and a powerful, adult, strong presence. The camera perspective changes as the cherub descends from the sky, captured in stunning ultra HD quality. "} +{"id": "3006034", "video_name": "7c5661d2-6ac9-5034-b169-b6c69cd363bb", "text": "dancing cat on the water, fish taking a picture and shrek sitting on some old chair in the background, 9:16 "} +{"id": "4003443", "video_name": "98387fae-b5c7-560a-b95f-24499cf56af8", "text": "Brown owl in cartoon style flying in the forest "} +{"id": "2003998", "video_name": "ba7664d8-070b-5c02-bd8e-68b6ab075e82", "text": "MJO was known for his witty remarks and humorous take on life "} +{"id": "2006226", "video_name": "fda9ea3b-6094-5787-87c3-2ccb82a778ad", "text": "A black Lada Granta car drives into an abandoned factory. in the frame on the back wall against the background of the factory, a car appears in the frame Message: generate (Font: MODERN) "} +{"id": "3003765", "video_name": "1913d39c-bc29-5d88-afd5-f7665ee5882f", "text": "tony the tiger at a 1980s rave, live action animated charctaer, 1988 tv style commerical "} +{"id": "5001716", "video_name": "945c5c0c-b05b-5bdf-8951-48f136e7ea62", "text": "pixar character jumping rope in a park "} +{"id": "3004045", "video_name": "84337acd-7775-5e4c-9faf-d04f53671cdc", "text": "Baby sister talking in the park "} +{"id": "1006925", "video_name": "7ea09e76-b246-535e-807d-7041f11dcbf5", "text": "a boy sitting on a couch with a tv remote in his hands. It looks futuristic. "} +{"id": "8001214", "video_name": "b249b8f3-94fa-570c-b6b2-66ab0194bd63", "text": "Kartik and Anjali explore the interior of the mansion, stumbling upon an ancient book emitting a faint, ethereal glow "} +{"id": "6003881", "video_name": "813cf11e-d6e6-5446-9a60-d587e9231f09", "text": "A dramatic image of a naval battle between the forces of Cleopatra VII and Octavian, portraying the fierce determination and military prowess of the Ptolemaic rulers. "} +{"id": "0006740", "video_name": "32114dcc-3dc6-5fb6-a18a-cd4ef4c4da1a", "text": "beautiful girl sitting on rocks in strong ocean currents "} +{"id": "3003560", "video_name": "d62d97a5-3ee0-577f-b8e8-e1dd402dc72f", "text": "body animate , blood hyper realastic , flowing in the wind, "} +{"id": "3005543", "video_name": "2f1b3258-dde9-57ba-a4e1-9cd7c6447dcf", "text": "add slight animation to this picture "} +{"id": "1004110", "video_name": "4c197af8-ee49-569d-b389-ba928dfef8fa", "text": "A motivational background for a video. With aspect ratio of 9:16 "} +{"id": "2007928", "video_name": "92f879dc-c525-584b-b695-1109f54d156a", "text": "salad falling down on camera from above "} +{"id": "1006745", "video_name": "7b75528c-f4b4-54b8-914d-a2b17cab8feb", "text": "realstic, HDR, a school, top view ,like a star, yellow leaf on the ground, many kids are playing "} +{"id": "2006216", "video_name": "2101cff6-92e0-575c-ac5a-1c21fd9dbe0b", "text": "krishna in water but water can not tuch the Krishna "} +{"id": "0006985", "video_name": "3642bc6e-98f7-5f61-9519-d302c11dc71a", "text": "Here is the image of a photorealistic Chinese dragon in a vertical composition, elegantly coiling and twisting through the sky, occupying the entire frame without any central structural elements. "} +{"id": "3006815", "video_name": "7d917ca3-0ae0-53a4-bed4-821fa2efb49b", "text": "prompt:psunami and thunder storm in the ocean at night "} +{"id": "0005886", "video_name": "22ccca34-cc76-52cb-b214-04758e57f038", "text": "animate this painting of salvador dali "} +{"id": "0003996", "video_name": "014d905b-651f-5dc6-9d8d-6206dcd93f69", "text": "Along the way, Turtle and the rabbit tripped over rocks, "} +{"id": "8001219", "video_name": "66735893-3d6c-5ef5-9df7-c35f663a68e1", "text": "travel towards a blackhole scene, seeing the time horizon. "} +{"id": "1005831", "video_name": "6b2ef51e-5933-563c-9562-973f63046b35", "text": "Falcon has large and very strong muscles. He wears black armor, carries a machine gun in his hand, and behind him is the flag of the country of Egypt. "} +{"id": "0005046", "video_name": "13b3f5d0-cfc5-5914-9295-39eeb3db8f28", "text": "wide shot, cinematic style, photorealistic, man walks infront of exterior diner at night, teal and orange with haze "} +{"id": "7003776", "video_name": "683b5135-13c7-5cd4-b55e-2d62129a9946", "text": "Camera pans into a deep mountain gorge full of plats in the morning at 07.00, realistic, wonderful, relaxing, focus help, morning meditation "} +{"id": "6004120", "video_name": "442008fd-73ec-5a77-b46c-eca65a8e041f", "text": "a cultured Nigerian man praying in his farm harvest, "} +{"id": "3005128", "video_name": "1a409976-1abf-552f-9166-88a410ed2645", "text": "kraken destroys ship, view from the deck, cinematic effects "} +{"id": "6002277", "video_name": "cd4e7e3b-b006-578e-b9b5-7156b9d4ea68", "text": "a western town, with population from 19th century in streets, cinematic "} +{"id": "4002492", "video_name": "e30836b0-2315-57a8-92d3-2b378814ac9b", "text": "Create an image with the moral of the story written in a visually appealing way, surrounded by elements from the meadow. "} +{"id": "2005724", "video_name": "47c679a0-be15-5fe2-b8f5-cbadc7a0091e", "text": "shiny jellyfish floating in the air in an alien forest "} +{"id": "2004013", "video_name": "212bda1d-2a83-5ac4-865e-0e60cfc8d2fb", "text": "people eating from a box in a living room. The room has Diwali lights in the background "} +{"id": "6004612", "video_name": "f8c3644e-d863-5d57-a78d-a1fd954e8bb3", "text": "a man in a suit tells a story "} +{"id": "7002508", "video_name": "f9341c3d-61e8-598d-9df8-7aaec4e9d55f", "text": "Depict Tricky and his friends reaching a glistening river. Show them hopping off and admiring the view. Highlight their expressions of wonder as they encounter so much water. Optionally, show them splashing around and having fun in the water. 4k "} +{"id": "2004968", "video_name": "0c97ae6a-6a3f-50cf-b2e4-a0e158a6aafd", "text": "young man reading the book in the vintage library "} +{"id": "8003828", "video_name": "75751fba-92bf-5829-ac62-47bd5c7ea773", "text": "realistic 4k, a man riding black motorbike, red color jacket "} +{"id": "1003920", "video_name": "48695f33-11aa-5513-89cc-594daea8b6aa", "text": "a snowy christmas street scene in 19th century London "} +{"id": "0006785", "video_name": "3321fa91-1681-5b39-9987-b51cf48ae83f", "text": "A band on stage with devil masks playing heavy metal, the singer with 1 hand in the air pointing horns, the guitarists jumping to the beat. HDR, Camera shake, 16:9 "} +{"id": "1004961", "video_name": "5ba45e7f-822b-526f-a0cb-52b90970ae8b", "text": "a woman floating in space observing planet earth, she has red hair, the background is black with faint stars "} +{"id": "7003483", "video_name": "f9cddcef-1578-52be-bf25-3b6053fe4c41", "text": "simple brand logo requinted design with the two \nletters P and L "} +{"id": "2007146", "video_name": "c00b589f-f8f6-545c-9873-993011174134", "text": "superzoom eye in the center, closing "} +{"id": "4002812", "video_name": "0037d2a8-0d3f-5aab-bcba-5ceee37068d3", "text": "video with heisenberg from breaking bad looking for gummy bears in a drawer, high quality "} +{"id": "6003394", "video_name": "79ec8641-5a30-5ea8-a584-903d7a2ce78f", "text": "a heroe raising his hands in fury "} +{"id": "7003351", "video_name": "1bf775dc-54c4-5107-a743-290978f9c00a", "text": "businessmen packing up their briefcases to leave "} +{"id": "7003207", "video_name": "9b25c966-0517-5b8f-b46d-5954db8d286f", "text": "day of resurrection for Rafik reddish "} +{"id": "8003040", "video_name": "79dc9588-0c55-552a-b667-f35893cdceae", "text": "love storywhere Sarah and Mark share a romantic dinner. Candles flicker as they hold hands across the table. "} +{"id": "4004526", "video_name": "61d09332-48c1-579d-83d1-7045f9addc12", "text": "a fantasy minecraft gamers wonderland amongst woodland in autumn, children playing consoles, early evening, mist drifting by, 35mm, cool backlight with beams broken by branches, spore particles in the air, raw, cooke lens, 24mm, cinematic, ar 16:9 "} +{"id": "4002745", "video_name": "96f72a6f-a97a-509a-93b1-a1aad70ae417", "text": "a trailer like bunch of clips of a musical of the Shadow and Bone Netflix series "} +{"id": "8001981", "video_name": "5a38bec3-9bc3-513d-b6b9-51c4dd7036bc", "text": "an adult with black curly hair and a blue sweatshirt, the boy is riding a jet through the snow, 4k and drawing "} +{"id": "2006812", "video_name": "d1266a07-851e-5551-9391-b98730ff7568", "text": "is sad while looking into the mailbox mounted to the front of his house and finding no mail in it "} +{"id": "2006233", "video_name": "f36cb8d2-a0dc-53a5-aa19-a546feab3138", "text": "create a 3D animation of two characters a girl and a boy in ancient Egypt, featuring the pyramids, hieroglyphs, and bustling marketplaces. "} +{"id": "8002210", "video_name": "8a9d505f-3d45-537a-8920-42deb9f87522", "text": "An image of women doing sewing work in a factory. Several people are busy working. A little sunlight comes in, there are women talking to each other, an identical bandana is knitted on her head, and there is a pile of fabric for clothes next to the sewing machine. feeling of north korea "} +{"id": "0005700", "video_name": "1fa73acb-4b89-574f-9de6-93d62e018349", "text": "fast nyc subway train passing underground "} +{"id": "3004502", "video_name": "dd05d3b5-2614-5709-98e1-52b118df8d7f", "text": "80\u2019s synthwave scene, horizon and mountains "} +{"id": "4004885", "video_name": "3257d6b1-6b65-5a1f-b2f7-8b78452aa8d5", "text": "Montage of the heroes navigating through an otherworldly landscape, confronting alien creatures, and using their unique skills to overcome obstacles. "} +{"id": "0004308", "video_name": "06d4db12-cab0-5072-8ffe-ed743be0d44b", "text": "oil painting art style. Full sailed brig ship breaking through the waves on a summer day "} +{"id": "3004404", "video_name": "5dad7d85-0750-5d3f-a404-fdf020a7c119", "text": "an old man about 80 years old in worn clothes sitting on a wooden chair, the setting a room looks dirty and old "} +{"id": "3006782", "video_name": "d47d92db-eeca-5404-8396-521d9d132f3d", "text": "a magnificent detail black crow igniting into an amazing flaming Phoenix. "} +{"id": "6003545", "video_name": "f4f5eedf-2fcc-536f-8f00-38e201724ec8", "text": "taylor swift in a rain, in a black dress, driving a car "} +{"id": "0004107", "video_name": "034effc7-07a7-5b4d-bf04-0f94e7507859", "text": "of a doppelganger morphing into its human form, with sparks of electricity illuminating the transformation.slow Motion "} +{"id": "1005359", "video_name": "6289cd6a-a288-5fff-9673-927cda548ce8", "text": "Guard Duty at the Helm:\nTransition to the rapper taking a shift at the helm, steering the boat.\nUse visuals to convey the responsibility and solitude of keeping watch over the vast sea. "} +{"id": "3006874", "video_name": "111afc51-fbbc-53de-ad0a-b1122a18ce38", "text": "On a bright day in Rainbow Village, lived a boy named Kian. Kian was a imaginative child, always yearning for adventures beyond the borders of his beautiful village "} +{"id": "1006446", "video_name": "760556d5-056d-5ff7-a51a-2daf7e5fdcdc", "text": "Imagine The Danish store in grayscale, pixar style, 16:9 "} +{"id": "1003849", "video_name": "46eff4c9-f061-523b-b0ad-ae7cf5528055", "text": "Mack long video of drone view of tajmahal "} +{"id": "1005918", "video_name": "6cb7232a-e739-528d-84f5-db32ca7161b4", "text": "Higher class, very high style, a little bit of Peking Opera, four people playing mahjong "} +{"id": "3004695", "video_name": "e18c4998-9252-5fba-ae73-9b675156b492", "text": "seaturle moving in a deep blue ocean "} +{"id": "6004974", "video_name": "01b2dc86-6090-5168-ae47-561bb378d940", "text": ", while Mrs. Martin transformed their home into a cozy space for local gatherings. "} +{"id": "0006012", "video_name": "24f983e6-c068-512a-8afe-22061b57fca0", "text": "mexican dance in street in cyborg vintage "} +{"id": "2005446", "video_name": "b0250f0d-e610-5d65-9f87-e66f0bf4ff9a", "text": "dark willow Dota 2 walking with Pudge Dota 2 "} +{"id": "7002932", "video_name": "0538fe89-98ec-5e9f-bf3c-5c4d011e5bf3", "text": "MAKE A DRAGON FROM HOW TO TRIN UR DRAGON "} +{"id": "4004649", "video_name": "31d033a8-0643-5250-a8a6-a740e9e6d02b", "text": "The recipient celebrating an achievement, with God applauding in the background. "} +{"id": "7004320", "video_name": "593479e0-a9d1-5fb4-beee-fa19ff64ce9c", "text": "realistic beauty girl with nice and nature background "} +{"id": "5001413", "video_name": "92ba7b68-286a-5617-9d72-1f6090db3fca", "text": "a teddy bear is drinking his morning coffee from a big mug and eats toast "} +{"id": "3006840", "video_name": "2454e2ef-e10b-56c6-a6df-10304459c6e4", "text": "one handsome man and a beautiful women holding hand and walking togethere "} +{"id": "7002314", "video_name": "993cb97a-1c94-55c6-992d-6fc51599c7ac", "text": "woman at a market near a temple in cyberpunk tokyo, pan right, 8k, cinematic light, night time "} +{"id": "0003242", "video_name": "39e166aa-4915-5841-be5c-4529f4165e2d", "text": "create a fly Bride in picture "} +{"id": "3003171", "video_name": "81b91621-c7d6-5489-8861-d0029d3bb65a", "text": "Anthropogenesis, the smooth transformation of a pithecanthropus into a modern man "} +{"id": "1003710", "video_name": "44731de4-bfd6-548f-9be8-88ebdabd48ea", "text": "scary face of Ronald McDonald talking front view "} +{"id": "1004172", "video_name": "4d3cf2a8-329b-5b7a-8f73-556eeee45fae", "text": "ghost on road scary eyes,hand movie slowly at midnight seen scary "} +{"id": "1005398", "video_name": "63376c72-6f14-5d98-ae02-ecc3182573dd", "text": "the orange ball is rotating in her hands. Universe evolves around her and is very lively. She stands completely still."} +{"id": "7004893", "video_name": "d00cd75b-c747-56c9-a739-9fb3775e1743", "text": "boeing 787 in 4k flying through the sunset "} +{"id": "4004002", "video_name": "e833a5fe-dda6-50d7-92de-23e79066ae7b", "text": "horror movie scene with harry potter "} +{"id": "0003141", "video_name": "37f6555f-360a-50a4-b46a-ddfe75c8fc9c", "text": "bear cubs playing in the jingle "} +{"id": "0003859", "video_name": "44bed94d-fec5-534e-9961-f7875787eab0", "text": "man brown hait walking in a computer rooom "} +{"id": "2007699", "video_name": "70feec0b-49b3-5eb5-8721-d6e79ec0d615", "text": "A video depicting a man in a spacious warehouse. The man is seen efficiently wrapping a pallet with black plastic wrap, carefully ensuring that the package is tightly sealed for privacy and security. The video should focus on the precision and skill with which the man handles the wrapping process. Additionally, the lighting should be bright enough to capture the details clearly, with an emphasis on the orderly and organized environment of the warehouse. "} +{"id": "0003716", "video_name": "4248285a-7bc6-5c81-a36c-21154d1060e0", "text": "vikram lander soft landing on moon with its four legs making a contact with moon "} +{"id": "6003089", "video_name": "f3065790-0287-544f-8b14-5e728989d56c", "text": "Create a suspenseful short video scene set in a dark, creepy alley illuminated by moonlight, where a car slowly rolls into view, building an atmosphere of mystery and intrigue "} +{"id": "1003020", "video_name": "377c77a4-feb4-58a7-959a-0cb70c9930b3", "text": "Create a promotional video for the Xiaomi Mijia Portable Air Compressor 2 product "} +{"id": "4004198", "video_name": "395e83e3-6837-5d84-bc44-8981db0c0e06", "text": "READING quran and the pen is mightier than the sword "} +{"id": "0003951", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "a close up of a hand playing a C Major chord on a syntheizer "} +{"id": "6004051", "video_name": "a1d31e59-7a06-518d-a75a-ceced96fa7b1", "text": "2D animation, a simple minimal boat sailing a sea of books and paper "} +{"id": "7002238", "video_name": "2bb799da-5bc0-5273-841d-fdb9da9f8894", "text": "a man igniting a red glowing lightsaber in front of his face in a dark room. Cinematic, red light, dark, camera panning slowly, mysterious, star wars. "} +{"id": "7002491", "video_name": "0c0682d9-f2eb-5d22-b711-728c245dcb82", "text": "blue racing car is driving fast on a race track. The footage has been taken from the sky. Realistic, 4k resolution. "} +{"id": "7004615", "video_name": "2109b090-f69b-5e75-9edd-74c3cb01dea0", "text": "bears happy dance around chritmas tree "} +{"id": "8003885", "video_name": "b273acec-5962-5f46-9a32-890e662ca23a", "text": "Naomi Watts looks at the camera and smiles. Blurred, handycam, warped projector footage. Nostalgic. Channel Interference and Oversaturated. Water Colour Paint running and dripping, staining and blotting canvas. "} +{"id": "4004208", "video_name": "6f1cb9cb-56cf-5169-8d98-6b0291b651c3", "text": "Create a 1 minute video of Virat Kohli , Lionel Messi and Rohit Sharma dancing together. Give it a realistic touch and they should be in their national jersey "} +{"id": "3004748", "video_name": "383258db-03d8-5be5-a8e3-491951ff5cf4", "text": "A doctor stood at the door, touching his chin with his right hand and talking. "} +{"id": "2005754", "video_name": "06419b6b-6770-56b6-bd28-391e5b9a8900", "text": "The story concludes with Mowgli jungal boy at peace in the jungle, surrounded by his animal companions. The echoes of the wild continue as he swings through the trees, symbolizing his everlasting connection to the wilderness. "} +{"id": "4002108", "video_name": "1d7dd835-c98d-5ecf-a938-6ab941e37daa", "text": "some fringe theories propose that their technological prowess extended beyond conventional understanding. "} +{"id": "2007643", "video_name": "1094403a-0871-5106-bf0e-7111855567ea", "text": "cat eating food on a chair "} +{"id": "6004904", "video_name": "3117a61d-fdef-5f4e-8e6b-72f4559aef1b", "text": "The old abandoned house stood on a hill, overlooking the town. It had been empty for years, and no one dared to go near it. It was said to be haunted by the ghost of a young girl who had been murdered there. "} +{"id": "1006262", "video_name": "72b04e3e-afe4-5cc1-94b9-a449a728485b", "text": "GROUP OF skaters doing graffiti in a New York scene year 2000s aesthetic realism Message: THE QUEENS KIDS (Font: MODERN) "} +{"id": "1005900", "video_name": "6c79a1f7-858a-5702-b040-09044cea843d", "text": "Chinese Taiwanese dudes paddling calmly in huge waves A giant dragon flying through the clouds 4k 16:9 "} +{"id": "2005372", "video_name": "1d9e597a-f2eb-57c7-bf32-4abdd57f71cf", "text": "a green helicopter with spinning blades "} +{"id": "0003838", "video_name": "444959b6-97d5-5c2f-9d7a-a1d53acbd6d7", "text": "tsunami wave, crashes onto beach, tides surge "} +{"id": "5001801", "video_name": "f6940bf6-966a-5acc-9fb8-607804b184bc", "text": "suede trainers being cleaned with a brush inside a big room with camera panning down "} +{"id": "8003290", "video_name": "8d356b54-04b7-5229-8a16-58dd8b1e010b", "text": "By the Dianchi Lake in Dali, a herd of horses are running freely, one of which suddenly leaps high up into the air "} +{"id": "3004310", "video_name": "383b9a45-bfc5-576a-97de-a125458b7877", "text": "Seoul National University Mountain Club tag image "} +{"id": "1004400", "video_name": "51590b79-082c-5b47-b44a-cd7d32c6327c", "text": "a gorgeous blonde secretary with green eyes welcoming you behind her reception desk "} +{"id": "1003207", "video_name": "3afcc9fe-2fd6-582a-adce-f6e532d5400e", "text": "2 anthropomorphized alligators with leather jackets high fiving after beating up thugs in New York City at night in the style of Christian and Yvon Tremblay. 2d and cartoon style. "} +{"id": "1005773", "video_name": "6a3dc833-37b4-571d-abbe-4e221a9d1ce6", "text": "A boy closing his eyes as the sun sets, close up, zoom out to the sun, zoom back to the boy can only see darkness, in the style of a groovy oil painting "} +{"id": "6003025", "video_name": "bbc790f7-2ee6-5bc1-9d63-a7a27738e1da", "text": "The rat, lion, and ant working together to build a well. "} +{"id": "4004755", "video_name": "efa7cd6c-10aa-5e8b-acd2-ffc7c93e9640", "text": "There are also many seafood fish "} +{"id": "3004485", "video_name": "4f40c383-95d4-5ee6-8823-8ada80c93b71", "text": "A visual of Woody and Buzz Lightyear reminding Rex about their purpose as toys, emphasizing the importance of making Andy happy. cinematic gs 20 motion 4 ,7second long "} +{"id": "3003372", "video_name": "a76f19ce-9e9e-5484-884d-503c587dfa71", "text": "a young beautiful women, wearing red dress, waist and above, long hair, looking outside the window, looking sad, outside very bright but raining "} +{"id": "0006615", "video_name": "2f94ade9-6b9b-53e2-982a-d0b13bd1f556", "text": "young man dancing on a white background "} +{"id": "5001227", "video_name": "9e39da55-a3ee-5715-8f6e-2fc5bcb1980f", "text": "So, what are you waiting for? Start harnessing the power of AI chatbots today and take your content to new heights! "} +{"id": "8003041", "video_name": "5ddc972b-b7fd-5c98-a059-513ca2ef58e6", "text": "barber working in a barbershop doing a haircut, the client is reading a paper "} +{"id": "0003944", "video_name": "00436c8c-d9f3-5d89-ae20-786d38742f92", "text": "Boy with glasses drinking frappuccino on cafe terrace at night "} +{"id": "6003161", "video_name": "7fc0528c-8fc8-5b3e-87c5-82f19b35979b", "text": "The Devil drawn in the cartoon style of Don Hertzfeldt "} +{"id": "0004162", "video_name": "045aa0fe-0900-56d2-8afc-04671829fe4d", "text": "make a logotype of the name Fordel "} +{"id": "0006131", "video_name": "2715d975-d2a4-5e66-b864-fd762c2bf468", "text": "A woman doing deep thinking, Ultra High Resolution, 8K "} +{"id": "8002501", "video_name": "9dc143c1-f790-5903-8ccd-0b529b22f176", "text": "a boy in a rooftop with the city by noght as background "} +{"id": "6003187", "video_name": "5f706390-2279-53d3-a597-1ad4f9097356", "text": "A very beautiful brunette woman stands and tells how pleased she is near a beautiful fireplace. "} +{"id": "8001479", "video_name": "67f5d790-2fb9-5fd7-b51d-275eada26cc5", "text": "16k, light fractals in space dancing prisms all merging faster than time it self at the end to create a star "} +{"id": "0005799", "video_name": "216d7632-2443-5b8f-bf22-c9fbdd04e5cd", "text": "gorgeous young woman is posing in white wings, in the style of sculptural paper constructions, mike campau, floral accents, tony cragg, exotic, textured fabrics, angelina wrona "} +{"id": "2003660", "video_name": "b8a3af25-da7f-51c4-8db7-a9a0fa6d6835", "text": "two asian men fighting over fantasy football "} +{"id": "6004266", "video_name": "22ea8c35-dcef-5d70-9a26-be32acae318f", "text": "taxi driving in new york its raining "} +{"id": "3006136", "video_name": "24186216-9ebf-57a7-8322-3fe0cffb65b0", "text": "Please make a picture of the stars observed through a telescope with cmos video equipment "} +{"id": "3004672", "video_name": "c044da56-2fb5-50a4-a8a9-e13972e93b49", "text": "3d printer building human heart, futuristic, liminal "} +{"id": "0004918", "video_name": "1167d5fc-9e4d-52bc-a92c-29a020afb7db", "text": "cat sing violin in new york "} +{"id": "3004586", "video_name": "bac12417-cd6a-5149-8003-d0bc7eee7b39", "text": "the feeling of being completely alone "} +{"id": "0006696", "video_name": "313acbc9-fafb-5f2f-865d-ddcf3f9379fd", "text": "World leaders argue in the UN conference room "} +{"id": "5001375", "video_name": "d788e621-d67a-540c-aa39-b7ec487e6e72", "text": "frame is full of nature and sun rays is moving aroung nature. video should be in loop "} +{"id": "0004119", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "gothic young woman with long blue hair dancing "} +{"id": "2003088", "video_name": "0cc3bc9d-73a3-5a29-af26-411adfb59209", "text": "three person talking with each other and drinking coffee three men no girls "} +{"id": "2006270", "video_name": "a804198a-222e-578b-8c5c-c06551714108", "text": "Cute skeleton of the bride and groom, a Spaniard dressed in a dress and jacket, a veil on his head, happy eyes, long eyelashes, a bouquet in his hands, figurines on a wedding cake, diffused light "} +{"id": "8002563", "video_name": "c484c902-9b21-593a-b5e1-912f2bacb2c4", "text": "A kid with tears hitting the floor, photorealistic, vibrant colors "} +{"id": "8002835", "video_name": "3733932a-acba-5540-9e34-d922c56c1683", "text": "the cook prepares hamburgers, very juicy and appetizing "} +{"id": "3004248", "video_name": "27a44f51-d608-5514-a48e-e0b31faafeff", "text": "I always want to see you now "} +{"id": "2007539", "video_name": "0032a2ee-bfbe-58c6-988c-eab97b886e4f", "text": "Include the sound of crashing waves and the distant cries of seabirds. "} +{"id": "2003920", "video_name": "1739e0f4-3993-5f4f-a0d9-39e773172092", "text": "create cool web ui for it Message: 1 Attachment "} +{"id": "6002580", "video_name": "75c1ff83-2194-54e9-9863-bab2bb3951fe", "text": "moving slowly and add some movement and distortion "} +{"id": "0003725", "video_name": "42699eb0-0060-5da3-87f8-7744b779ccbd", "text": "Samual L jackson as Nick Fury, standing in the rain "} +{"id": "0004284", "video_name": "065ad5f0-8edc-5f2f-be0d-f7feea18b5d3", "text": "Make a wizard talking to the camera in front of a church "} +{"id": "2006163", "video_name": "2046d907-06dd-5ada-ab5a-c7fd6bb0b7fc", "text": "run under the rain in a city in the night, ar16:9, gs15, motion 4, camera turn clockwise "} +{"id": "7004482", "video_name": "985c3401-67f1-54f0-8bdf-b0f0a841408f", "text": "Mercedes AMG in gold driving over a ground full of skulls "} +{"id": "6002919", "video_name": "ab342cbd-faca-535f-8a98-253c097b857d", "text": "beautiful lady in Hjab, working on creating fashion design using AI "} +{"id": "2006157", "video_name": "259db7a7-09c4-5201-8508-f40f9dc16973", "text": "a cute fennec fox lost in the sahara piramids. "} +{"id": "3006776", "video_name": "24d67906-bc63-5acc-938a-11a9f6e93cae", "text": "onepunchmap in real real life, saitama, photographic, walks in the street "} +{"id": "3006838", "video_name": "25dff7d9-1dd7-5478-bb62-b93e0628b27b", "text": "make a gaming and streaming background room containing rgb lights and computers and a video is playing in the computer, make it GIF in 4k "} +{"id": "0004948", "video_name": "120d06bd-0546-5815-95be-9826db5e6743", "text": "a man is turning into jellifish "} +{"id": "8001684", "video_name": "44a4166c-924d-57f1-b70e-4dcecdaf6971", "text": "Lily and Petal witnessing the changing of the seasons in a special corner of the garden, where autumn leaves transform into winter snowflakes.Animated cartoon "} +{"id": "4004569", "video_name": "6cad4f40-e726-528c-a53e-2f04d23a487d", "text": "a scared swimming man running away from a large shark on a beach in Brazil "} +{"id": "1006616", "video_name": "7946f34d-368a-5aa7-b9ad-b614dbf4c98e", "text": "1 min video of modi walking on streets, cinematic, realistic "} +{"id": "5001146", "video_name": "c5e5a2a5-6c8e-5643-a179-9ff650534325", "text": "wool made man stitching himself patchwork horror "} +{"id": "8001914", "video_name": "5fed8761-c8a7-546b-a190-a4d936529cb8", "text": "skateboarder under flickering street lights, Wide shot, highly\ndetailed, sunset, HDR, 8k, volumetric lighting "} +{"id": "0005282", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "haunting hpuse in living room , at winter with Foggy weather, scary house , horror scene "} +{"id": "7003490", "video_name": "0685601e-9950-5807-ab57-1dc63d1489d4", "text": "a basketball rolling across the gym floor towards the camera, cinematic composition, cinematic lighting "} +{"id": "8003945", "video_name": "1827ebac-eff7-5918-b8fa-e5b2facba4d5", "text": "A worker in summer working in street and cleaning the street. Inside of him is another guy with a luxury car "} +{"id": "6003146", "video_name": "236a9e04-ad42-5a50-a2a1-58f881aae196", "text": "big black cat walking in Street "} +{"id": "6004987", "video_name": "42a1732d-824a-5d27-bece-d00f6b68fd61", "text": "kids story lived a kind and loyal dog named Max. "} +{"id": "6003481", "video_name": "40e14a0a-a1ff-5637-894f-97f94173a1f2", "text": "animation of the puppy in the rain sad very sad "} +{"id": "8003937", "video_name": "34347701-e38b-5287-b24f-ede73e32946b", "text": "abstract of cubes rolling on floor background must be transparent cube colour must be teal "} +{"id": "2003210", "video_name": "927e9960-7913-5cec-8bad-dde89c24a266", "text": "Time lapses, depicting Mr. X spending days and nights alone with his mobile device, enjoying content from around the world. "} +{"id": "2007806", "video_name": "87306e93-502b-540d-a556-246444f6440e", "text": "A deer is moving with his family. "} +{"id": "1005152", "video_name": "5ef2af16-f8cd-5bb5-b786-bcf07f7cfe62", "text": "1970s arthouse film, haunted Halloween at a castle garden, 16:9, ultrarealistic, 8k "} +{"id": "6002405", "video_name": "6f58387b-4d6a-5112-a4eb-4c0787a4174d", "text": "A white pigeon above the water "} +{"id": "6003274", "video_name": "051220b7-d08a-5868-99c5-8d7c0faa1d9b", "text": "(make him like he is fighting with street fighter nd thugs) "} +{"id": "2005986", "video_name": "c52bb567-a2ec-5fa9-9057-cd424508500f", "text": "A teenage woman, her short curly brown hair bouncing with each step, flees through the streets of a town. Back view. "} +{"id": "8003110", "video_name": "94984b1d-6655-545e-a8e1-852e358e4262", "text": "frightened children running away from Santa Claus, winter time, Santa Claus is holding a torch, cartoon, 1960s "} +{"id": "2004761", "video_name": "f74b92e3-d880-5044-827a-5ddd69360302", "text": "The guy is lying in bed at night, looking at the ceiling, top view, darkness around, cartoon "} +{"id": "7004901", "video_name": "acdf5629-a1de-5729-9792-0c6d6f625865", "text": "dark pagan world with ancient god statues zoom out "} +{"id": "7002191", "video_name": "5003e45e-0fee-56d8-841a-4e584adf03ac", "text": "cinematic, medisum shot, crime film, a woman wearing a purple dress at a hot dog stand, drinking an umbrella drink, 1970s aesthetic "} +{"id": "3006641", "video_name": "7dc85c2c-a569-58c8-8f2a-451720a2a4ac", "text": "Man taking photo in zoo, cinematic "} +{"id": "1004465", "video_name": "52b257f0-92c5-57fe-9a84-93c377357020", "text": "5 years old boy who is passionate about cars "} +{"id": "8001368", "video_name": "d41abe2f-8403-52db-b136-5a63842cd251", "text": "A group of young dinosaurs sets out on an adventure to explore new areas. "} +{"id": "7004088", "video_name": "28ca5646-f1e4-548b-a370-5235d803e466", "text": "The background: blue hills, with one of them being the highest one. "} +{"id": "7002744", "video_name": "37d34e92-c51e-5131-8b09-563ad79b052e", "text": "a rocket takingfrom earth into space "} +{"id": "6003811", "video_name": "06a0824a-d0d4-5ff5-a428-17c67f50eba4", "text": "a man and a girl, 1girl, 1man, couples, sunset, rivers, cowboy shot, super car, cyberpunk effect, hugging each others, masterpiece, realism, suit, dress "} +{"id": "3003040", "video_name": "16e62632-eaf8-5369-b99f-04035493ed58", "text": "a satisfying video with shapes and satisfying music to go with it "} +{"id": "8003094", "video_name": "6ea2928b-0601-5b0f-8845-4eda0733fba8", "text": "hindi nuns in 19th century, rare film footage "} +{"id": "2006324", "video_name": "c4e6aa1b-470c-53e6-8daf-5bc2ed000c78", "text": "flames is spining around the ball, main movement is upwards, moving almost like a fire, loop "} +{"id": "2005124", "video_name": "ed7c6e11-e303-598a-abad-c25a921d0b98", "text": "The word Amastones written in indigenous jewelry "} +{"id": "1003647", "video_name": "43310115-935f-5310-ae54-247c480144a6", "text": "Scene 10: Happy Life Location: Various locations around the homestead. Description: A montage of scenes showing the girl and her grandfather enjoying their simple, happy life in the Alpine mountains, surrounded by the beauty of nature. "} +{"id": "2003714", "video_name": "af4a5ebf-52f4-5286-a26a-a52668c1bea3", "text": "1 girl walking down a city street, rainy night in the style of wet street photography, Kim Jung gi, comic style, cyberpunk, dynamic, highly detailed, watercolor painting, artstation, concept art, smooth, sharp focus, illustration, art by Carne Griffiths and Wadim Kashin, highly detailed, simple, smooth, and clean vector, no jagged lines, vector art "} +{"id": "7002218", "video_name": "eb4e88be-9482-5ae1-b0ff-dbebf33d27b8", "text": "He was going up to the mountains to drink, looking for solace and relief "} +{"id": "4004428", "video_name": "6e6cca4f-934a-5641-b4d2-a7ea25b39eed", "text": "Leonardo Da Vinci painting a painting, 8k, high resolution, high definition, Photorealistic "} +{"id": "2003400", "video_name": "a58eee73-f14e-5f16-9aab-a3100f3d0a0a", "text": "In a circle upon the sand, the candles flame lightly dances across the dunes, shadows within shadows, a crimson river flows, 8k, high octane render "} +{"id": "2005983", "video_name": "bfe5200e-66e9-5268-b585-f68086c23900", "text": "A sweet cute friendly baby giraffe with his friends in the forest with a sunny sky, cartoon effect, spots on his fur, wide angle, 8k, continuous motion without flickering, vivid and remarkable colors. "} +{"id": "7004031", "video_name": "02e50ffe-6fff-578b-a550-b714de3898a4", "text": "overweight man eats cake angrily, 5 fingers "} +{"id": "7002560", "video_name": "60bc23e3-4140-595e-a7f6-ca6403f51f07", "text": "a beautiful day with sun rise, mountain in background, hyperloop cloud move in background and blue sky, 8k quality "} +{"id": "4004158", "video_name": "5b31c9c8-1e71-5fda-a170-b6fd643edca5", "text": "a man stand on a tree suddenly one truck came man jump on that truck "} +{"id": "7002774", "video_name": "f82a15de-158a-5da9-8370-0b4470425cc4", "text": "an 1910s stage production, dark drapes, figures in dark robes hover up through the stage floor like ghosts "} +{"id": "8002885", "video_name": "9d4eb35d-6365-55c8-9e54-a5a95fcc591b", "text": "Chemeheuvi Native Americans hunting and foraging in the mojave desert "} +{"id": "6003258", "video_name": "1c660ff6-eafb-5678-b05d-544344915183", "text": "a boy looking for in web for presentation preparation "} +{"id": "2006726", "video_name": "77d8c930-d5de-5435-bb78-70395b834765", "text": "The orphan girl is shown gazing at the scenic surroundings, a sense of peace evident in her eyes. The bond between her and the grandfather is subtly highlighted. "} +{"id": "4004077", "video_name": "7da9d5f7-ecaa-535c-92aa-96bcd5a4ec33", "text": "a man is kneeling and holding his hands to his face in a dark room, the walls are red, a man in a white robe, side view, time 0 A.D. "} +{"id": "1006990", "video_name": "7fe80c0f-49e1-5464-88ea-d218b6d0ffac", "text": "highly detailed cinematic shot, in the 52nd century a large cyberpunk city towers on the surface of a human colonized planet orbiting a binary red dwarf type star system in the Cartwheel galaxy "} +{"id": "2004068", "video_name": "0cb26387-78ce-5a73-a4ef-799cb3f4458a", "text": "Snowy day in the field. Everything is covered with snow and its bright. "} +{"id": "2004913", "video_name": "b6ddc0a1-3cc8-5907-aab0-f3ed7f0e149c", "text": "create a dashbord of space craft, working astronuats "} +{"id": "0006209", "video_name": "2874fe7c-ff26-587f-bbd0-5ea29fb53dc8", "text": "look some human body in night forest (firstperson) "} +{"id": "3004299", "video_name": "9e547620-f4c7-55f0-837e-1397fe78055d", "text": "A mom and a little girl sit at dining table in wooden house, Disney Pixar character style, ultra HD, cinematic, cinematic movement "} +{"id": "2006428", "video_name": "c8347356-37db-5958-a320-582d9aef228c", "text": "medium shot of a skeleton playing the pipe organ in a vintage church "} +{"id": "2007278", "video_name": "202dcd64-23e5-5797-bc4b-06865bfe3978", "text": "an angel dancing hip hop in a white room "} +{"id": "8002228", "video_name": "ffc17832-b5af-5656-948c-2fa2747e33c9", "text": "Generate a detailed image of a colorful lion and a colorful buffalo who are fighting in the Amazon Jungle. This a fierce and realistic fight. The picture is 8K and very engaging. "} +{"id": "7004965", "video_name": "7cf57680-c2b8-5b3d-a039-04aa5c88f77d", "text": "oil painting,sunset shines on the rainbow lily in the aalto vase,Nordic. artistic. "} +{"id": "7004225", "video_name": "7b7400a8-20b8-54a5-96c9-f6e017727206", "text": "A book beside the bed was flipped by the breeze. "} +{"id": "8001321", "video_name": "dc99a206-9f81-54bb-961a-dc16b32ced40", "text": "animed video of angels falling from heaven burning as they fall, turning from light to darkeness "} +{"id": "6003856", "video_name": "585f161c-f380-5939-bd59-c0919d8b1b46", "text": "a video of Fujiyama ( the most famous montain in Japan) at 4 p.m. with twilight, with red maples falling down, very realistic "} +{"id": "3004383", "video_name": "56370ac8-9e56-57d1-a8da-640cbd9e34eb", "text": "Old man with a white beard and frown, wearing clothes from the time of Jesus. In the background a storm is raging with lots of rain, lightning and thunder. "} +{"id": "6003332", "video_name": "7f472305-9d58-5c8f-99d7-5f9ce2338d51", "text": "Side on view, Super Mario stands facing Sonic The Hedgehog, Super Mario is holding a large hammer behind his back, green ground, blue sky background, fluffy clouds with smiling faces "} +{"id": "7002729", "video_name": "d4991d4d-6cba-5c65-b625-190bfe106644", "text": "a video best resolution of a candle morphing in bulb lamp "} +{"id": "5001018", "video_name": "436d1777-afdd-52d8-9d4a-a84a64d2f831", "text": "zoom into a beautiful los angeles house high up at night "} +{"id": "0005471", "video_name": "1b5f2864-933c-5921-9aef-fcba35e88620", "text": "a cute cartoonish unicorn just having a good time "} +{"id": "1004548", "video_name": "5472126c-526d-5020-a718-a7e342dde284", "text": "thousands of spiders descending from a cave "} +{"id": "2004884", "video_name": "6ce49aa2-91ad-55c3-b604-c2aa271fe5d0", "text": "A pen with a touch screen "} +{"id": "0006574", "video_name": "2ed4c826-e5dc-52c4-bc56-d5bc08884dc1", "text": "The city fell, and Rahab and her family were spared "} +{"id": "6004529", "video_name": "8d7fdbc0-2e71-58b1-8453-f3d8c1469a61", "text": "3d style animation cute boys are playing with alphabets realistic cartoon "} +{"id": "2005060", "video_name": "4c172919-c831-583e-bca9-390aef32b483", "text": "a blonde woman is carrying a man in her arms. the man is laughing "} +{"id": "2005427", "video_name": "58bfc09e-13b5-5035-bb8c-6276cfa91ed2", "text": "Celebrate the New Year in Italy with a spectacular display of midnight.festival\u3002 "} +{"id": "8003971", "video_name": "326772cb-876b-586f-a256-0dad63ccefce", "text": "The Forgotten Library of Shadows would no longer haunt the town with fear, but instead, it would serve as a reminder of the darkness that lurked within humanity and the power of compassion to overcome it. "} +{"id": "4004879", "video_name": "1b89d3f1-ae90-5a46-a1e1-072917716ab2", "text": "a man pixar is talking infront of the camera like he is in the film. 4k resolution. Background with paper. "} +{"id": "3003203", "video_name": "bd36d88a-7479-5629-bd02-76e71890b16f", "text": "A trail of pumpkin seeds leading from the village square into the mysterious Eldertree Forest.Animated cartoon "} +{"id": "3004931", "video_name": "0fc828cb-e770-56cf-b443-e15857bb0f51", "text": "create a video of Riomaggiore harbour on a sunny day "} +{"id": "7004959", "video_name": "2b0ed70e-d76a-59cb-87bb-6f263f5fcd5a", "text": "The group running in fear, with the ghostly woman chasing after them.The group falling down the fortress stairs and meeting their demise. Night view "} +{"id": "3005612", "video_name": "cb0121cd-a659-5e4b-b29a-6034faeffbcd", "text": "A young girl is using her smartphone to capture her 3D handiwork, a cutie sofa. You can see the intricacy of her creation, and the environment around her is her home workshop. "} +{"id": "3006572", "video_name": "7640cbb3-c4c1-5129-9f69-d05d4393940e", "text": "donald trump fighting against inmates in jail "} +{"id": "2007929", "video_name": "508cecd4-1818-5819-9e54-5c27aabb5fc1", "text": "A clean shaven dark haired 18 years old teen man in school uniform and a brunette 18 years old teen woman in school uniform top are walking next to eachother through the school halls. both asian. facing forwards. anime style Message: 1 Attachment "} +{"id": "1005842", "video_name": "6b6938c5-64bb-5244-9153-15ad8d9a4f1f", "text": "air fryer accessory match with air fryer do cake barrel , and have child around it , waiting for it , with smile "} +{"id": "0006401", "video_name": "2bd88885-055f-51d6-9c22-d84ea69cef75", "text": "a dancing unicorn wishes an happy birthday to a little girl "} +{"id": "0005421", "video_name": "1a94f220-7795-565f-8726-ec535f307140", "text": "A flock of little yellow ducks are running in the field "} +{"id": "2003086", "video_name": "b63e38c2-f27e-5cec-ad05-aa24c73b4c48", "text": "Little Mary toddler closeup, turning and smiling, angels gracefully flying over her "} +{"id": "1006570", "video_name": "7860c1fa-4a2b-5edf-b4f7-ce239c3409e2", "text": "4k, animation from the anime the boondocks, a boy in a red sweatshirt with blond dreads playing pinball with a window in the background with snow falling "} +{"id": "2007465", "video_name": "3a82f5fa-7a53-592f-b9c4-d41ab9f237ac", "text": "a deep sea diver reaching out to a man eating shark "} +{"id": "2007700", "video_name": "77fa1977-cecb-57c4-8d96-96cc9abd0610", "text": "in cards Message: MAGIA (Font: COMICS) "} +{"id": "7004155", "video_name": "0868660d-da2b-54bb-a245-c12aa4b7528e", "text": "Wivi and Pi wake up in their charming house, each with their own magical morning routine. Wivi adjusts her magic hat, while Pi does some naughty tricks with carrots. "} +{"id": "7002380", "video_name": "8b713306-8c38-5d5f-a2b0-cce517488396", "text": "a beautiful anime girl standing near the sea and enjying the night see view "} +{"id": "2003060", "video_name": "3f014996-6c10-5728-af66-4ec7a0047d6f", "text": "NYC subway with all of the cars painted pink and purple elephants, photorealistic fantasy, ar 9:16 Message: G A G CITY (Font: MODERN) "} +{"id": "3005873", "video_name": "393c9911-a5f0-5d44-a07c-0623edf12ab0", "text": "a girl walking along the street, it is raining now "} +{"id": "4004168", "video_name": "8645c211-2be0-5eac-b69a-70880bf3c517", "text": "A mesmerizing portrait of a red headed woman radiating joy, her smile capturing the essence of pure happiness. Seek realism and intricate details to showcase the depth of her emotions and the subtle nuances of her expression. "} +{"id": "3005006", "video_name": "d3cc4c1e-907a-56a4-b0b4-347bed33e096", "text": "Boris Johnson talking, closeup, lake background "} +{"id": "1004569", "video_name": "54e34e49-582c-53ad-945e-73816f661ef6", "text": "full body ginger hair teenage girl wearing a dress with blue color fire magic "} +{"id": "7004065", "video_name": "56d4a177-ddb5-5124-93bd-858a9769783e", "text": "heaven view with beautiful houses garden fruits and flowers "} +{"id": "1006405", "video_name": "75537aa8-8e8c-5d98-918c-b90fb64a1a49", "text": "Moving house is a major upheaval. "} +{"id": "8002402", "video_name": "154256b0-a212-5fb6-9156-759acf1d9154", "text": "a living room with straight wooden slats and a lan walking beside "} +{"id": "6004793", "video_name": "2fc02a90-008b-561a-86ce-8756e89b9ecf", "text": "a forest full of flame, in the dark, with fog Message: . (Font: MODERN) "} +{"id": "6003877", "video_name": "199f9645-af16-5cd3-9fe1-9b4e83b25092", "text": "neonderthal drawing animals in cave, 4k, realistic detailed, realism "} +{"id": "6004091", "video_name": "6a9cbcfb-4871-536b-8834-f76f22256ae0", "text": "people dancing outside mc donalds burgers, closeup of faces smiling, cinematic, photorealistc, 8k, unreal engine, chaos, throwing food "} +{"id": "3003632", "video_name": "86965127-9a52-500e-8978-3d554a90c3ae", "text": "Donald Trump and Phil Anselmo rockin out "} +{"id": "2004347", "video_name": "23a20ba0-86fe-525b-9111-35f5d84a7484", "text": "In a bustling city where skyscrapers touched the clouds, there lived a young artist named Leonardo. "} +{"id": "7002866", "video_name": "9e4a1bde-835f-5280-9254-aeed87f14694", "text": "mario driving with his kart alone at saint michel streets in Paris at sunset, large angle with a vanishing point perspective, action shot, cinematic movie "} +{"id": "3003195", "video_name": "17a9300b-35c4-51db-8cc9-3463c0c19ef3", "text": "a girl who waer a glasses is playing with cat "} +{"id": "7003668", "video_name": "2a0c2620-8435-5310-b58d-b233b6f06187", "text": "a denim girl is walking in the space with closed eyes "} +{"id": "0004676", "video_name": "0d22f9c9-f8df-5c81-8e48-26ccb0ad1be8", "text": "Prehistoric primitive humans stumbled upon modern people who had traveled back in time. The modern individuals collapsed to the ground, and the primitive humans poked them with sticks. In the pockets of the modern people, the primitive humans discovered smartphones "} +{"id": "2003774", "video_name": "13bd8854-5ed4-5633-ba64-f2303add37fb", "text": "The video starts with an aerial view of a car driving along a gray road. The car is moving forward, and the surroundings are monotonously gray, devoid of any color. The camera slowly zooms in to focus on the car, capturing the details of the vehicle. "} +{"id": "1005422", "video_name": "639973bb-2df2-53f4-b462-0b0587ca2328", "text": "Create a visually striking image that depicts David standing at the edge of a dark and endless abyss, symbolizing the profound anguish and depression that envelops his soul. "} +{"id": "8001340", "video_name": "c57479e2-6652-50f0-b79a-d9e44a363a7a", "text": "A cornfield at dusk with 2 tall aliens talking to one cow "} +{"id": "6004868", "video_name": "9ad735b5-2369-56a8-8d8c-b7c27ca7b42d", "text": "View from above, the pyramids of Giza "} +{"id": "1005106", "video_name": "5e232a7a-7bb8-542d-b490-4c0e13b7ab97", "text": "Inca modern armor passing a gateway to technology "} +{"id": "2006697", "video_name": "20c2591a-6a81-52ae-8f83-34551e1bf1e4", "text": "a cartonic lion running in jungle along with water stream "} +{"id": "1004710", "video_name": "576db418-f225-55c7-adb6-1c51aa9f83e5", "text": "Fuel, transportation, far north 2flat vecktor logo "} +{"id": "1006206", "video_name": "71c514a5-9757-52a5-a793-e71a3c7fd0ee", "text": "cyber punk city, soldiers fighting with laser guns, smoke in background, light coming from above "} +{"id": "0006435", "video_name": "2c45767d-e55a-5580-85fd-92bac39d23b8", "text": "A nostalgic rooftop moment in the city, a young couple lying on a blanket, surrounded by fairy lights, the distant hum of the city below, a feeling of intimacy and escape from the bustling world, Digital art, soft pastel colors "} +{"id": "0005162", "video_name": "15d42663-d337-5016-984d-f03d3b04f9cc", "text": "riding down esplanade, in the Escalade "} +{"id": "2003248", "video_name": "75b12793-fbda-5867-b424-ba92c2c27d32", "text": "dessert landscape with floating neon trees and mushroom "} +{"id": "3004495", "video_name": "8536dd0b-64b4-5114-acbe-c3e00f501ff1", "text": "a young girl playing video games in her room "} +{"id": "6002072", "video_name": "720b0d55-9c46-52cd-836d-1ef8393f0520", "text": "A lion with a gentle expression, extending a paw to help a lost girl in the African savanna. "} +{"id": "6002445", "video_name": "e89b2058-c916-5a36-9a78-a0908aa5d808", "text": "A beautiful Asian man wearing a metallic silver coat is walking down a sidewalk away from me. "} +{"id": "4003546", "video_name": "381067cb-a848-5252-922b-793835c0164f", "text": "a baby lion roars in the stadium, sunset, 4K , HD "} +{"id": "0004958", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "Sun rising in mountain 3d animated "} +{"id": "2005019", "video_name": "d7aac6e6-4591-539b-9cb9-0e25611ace2b", "text": "I was raised on the stories of the Bible and the teachings of Jesus Christ. "} +{"id": "2003682", "video_name": "ebcc56b2-d0d6-579c-92f4-afd9dd67889e", "text": "the hand is climbing out of the ground "} +{"id": "4002054", "video_name": "5f83962f-cc94-5b65-8a74-8e3e94b5aafa", "text": "beautiful spectral light crystal a wave , focal light, Abstract white 3d wave in motion plexiglass with holographic gradient render with a depth of field, full width visual, trendy iridescent color, modern illustration, 8K "} +{"id": "7003979", "video_name": "a3e854e8-bba1-5988-b117-fdcc6584c008", "text": "little hedgehog walking in grass, 4k, photorealistic "} +{"id": "2004868", "video_name": "2b3b7ba8-4c73-5d8b-87cf-e4e211521c20", "text": "Set in a peaceful countryside, show the young nurse tenderly caring for her newborn baby, a strawberry, cradling it in her arms. in disney studio style "} +{"id": "0005822", "video_name": "21c302d7-b9c9-5ef2-b511-c54e44ff5f92", "text": "Examination, passing, happy men and women "} +{"id": "4003257", "video_name": "d1575dc3-c619-5a90-b90b-f2198f641ddd", "text": ": Two dogs running on a baseball field "} +{"id": "1006296", "video_name": "73457a7f-ea9b-5aed-bdcd-dc3890664851", "text": "Christmas, a group of people joyfully enjoying snacks and playing board games "} +{"id": "7002468", "video_name": "2f34600d-b8ac-5f93-b668-b52d954c9bfc", "text": "The magical kite led a kids Mia, Ben and leo to a land of candy trees, where they feasted on chocolate leaves and gumdrop fruits. Cinematic, cartoon style. "} +{"id": "0004015", "video_name": "019a7573-c38a-50bb-a49e-6b69527726c3", "text": "realistic war scene of exploading tanks "} +{"id": "8003242", "video_name": "303c5da7-1c04-56e1-a300-07e88fef5d5b", "text": "Vince McMahon walking down arena ramp cinematic ultra realistic 4k "} +{"id": "3003212", "video_name": "a5041a7b-270b-5074-bc36-dc3671818c5d", "text": "yo yo hony singh walkin on stage "} +{"id": "3006430", "video_name": "3bbd4de5-7078-5e69-aae7-8bb3941552f1", "text": "Create a vibrant abstract image with a mix of red, blue, and yellow hues. Incorporate dynamic patterns resembling swirls and geometric shapes. "} +{"id": "6002288", "video_name": "c1060c7e-9659-5510-b358-02253dab347b", "text": "crows flying in pentagram formation, cinematic, epic "} +{"id": "0006334", "video_name": "2ad23428-3151-5d71-adee-e9141fad5300", "text": "a white long hair Chihuahua jumps happily through green gras chasing another brown short hair Chihuahua "} +{"id": "3004630", "video_name": "cf6bcc30-fb55-51c0-859e-503985e031e4", "text": "a very modern European city center, big skyscrapers, full of people, modern cars "} +{"id": "5001586", "video_name": "e7dbb04d-35a7-56af-b158-662d74df2515", "text": "a river and some mountains and forest and rock there is written ram Message: Ram (Font: MODERN) "} +{"id": "8003733", "video_name": "61e06e98-f713-5f2e-a7fa-ab1904d43fa5", "text": "girl in the same environment with neon light effects, cinematic, realistic, 4k "} +{"id": "6002126", "video_name": "3d731c80-fc18-5dd2-9c8e-67d4ebc780d4", "text": "2 cavemen walking to a ufo. Ufo is parked on grass. Ufo has a green light. 2 caveman have food to trade. "} +{"id": "2004618", "video_name": "9f9c019e-ec39-5e05-920b-c3c3edef35fd", "text": "3d animation of elephant, zebra, fox, monkey standing in zoom in zoom out fog covered deep enchanted illuminated forest "} +{"id": "3006273", "video_name": "504a5625-5109-536c-bed8-db84b8feef00", "text": "A scientist talking to the camera at the kitchen "} +{"id": "1005824", "video_name": "6b085a85-cc58-5741-a8a1-d86933a5ffb0", "text": "Depict a Lovecraftian horror in a moonlit setting. The creature is formless, with constantly shifting shadows and shapes. It has numerous tentacles and ephemeral eyes that appear and disappear. The atmosphere is filled with an aura of dread and malevolence, with the creature emanating dark energy that warps the space around it. The background is a haunting moonscape. "} +{"id": "1005029", "video_name": "5d06a656-2f47-51d0-90e9-899414066ab0", "text": "A tiger eating a monkey in a remote jungle, blue light, cinematic "} +{"id": "4003301", "video_name": "d0b99046-07f7-5dbe-ae9e-96f13ed781c3", "text": "a white dog and a black cat and yellow frog play together. "} +{"id": "2007358", "video_name": "8dfad93b-45f9-5f5d-bb4c-285b5a7a2d00", "text": "The mother fell in a pool of blood, and the boy cried in confusion. The background was an amusement park, with a carousel next to it and several people watching. "} +{"id": "6004717", "video_name": "5abb8188-3e33-5b4f-a4d5-21ad81df7cc1", "text": "king riding a horse high definition "} +{"id": "6002064", "video_name": "b0b82100-9648-5897-8d27-3e63651bc7b6", "text": "woman in bubble bath, champagne, with balcony overlooking paris and eiffel tower "} +{"id": "7002611", "video_name": "f1a4b0cb-41e3-5419-b4fc-ea7d360b6a0a", "text": "alien orbs making crop circle in Wiltshire "} +{"id": "7003059", "video_name": "eb602ff4-dd6a-5b57-a222-7178a0385877", "text": "a scene of a beautiful cartoonic girl sitting in a beautiful and colourful garden playing with the butterflies , the butterflies are flying and the hair of girl are pretty long and she is blinking and seeing everything happily, show it in 3D and highest resolution "} +{"id": "0006081", "video_name": "26511b70-a762-5562-9be6-2e0eb503797c", "text": "pink plastic gems floating on a gray purple background "} +{"id": "2003867", "video_name": "b955229c-8087-59be-baef-4744bbd15d94", "text": "a serene garden in morning sunlight, water in fountain flowing, windy flowers gently swaying, view moving forward zooming in "} +{"id": "7004136", "video_name": "713168ae-4eca-5fef-9521-f3ef9fc8ec68", "text": "a fisherman named thomas was returning home with fishing nets and bags through the dense forest. "} +{"id": "3005150", "video_name": "a8830ee5-a6a0-524c-8974-0bf06ae65529", "text": "drops of orange and grey paint agressivly slamming against a black canvas, cinematic, dramatic "} +{"id": "4002501", "video_name": "ff9e2e35-d626-5126-bca9-8d36af2ff03d", "text": "women playing soccer at the stadium, 16:9, 4k, cinematic "} +{"id": "1005305", "video_name": "617b0f00-e1bc-5f56-93f1-40415df4e25a", "text": "Anime character listening to music in a room at night "} +{"id": "0005524", "video_name": "1c3dc4e4-9e24-5c1e-b7b6-0e3404dda2da", "text": "brothers and father fishing bible style "} +{"id": "4004178", "video_name": "e20dae9b-b132-5237-8442-594ecf4d82dd", "text": "phantom mirage in the middle of the forest at night "} +{"id": "0004528", "video_name": "0aa3874a-211b-503f-a33e-4e4403da31fe", "text": "an old man sitting on the chair facing the television to watch P. Ramlee movie "} +{"id": "2007403", "video_name": "d355a630-e294-585e-bcff-e56886b06ec6", "text": "cosy room with few lights front profile view of blonde woman on a desk doing asmr on microphone "} +{"id": "3003931", "video_name": "c74a931e-df34-5f97-8b4e-45ed658264ab", "text": "a snake fighting with scorpion an d snake spitting poison to snake and scorpion bit snake and snake ate scorpion "} +{"id": "6002535", "video_name": "7a357d69-8807-5258-8222-93ce522be84e", "text": "create a mahaarti scene at ujjain mahakaleswar shiva temple "} +{"id": "1005125", "video_name": "5e878bf7-9ed1-554f-9b96-dd6b9ebe2c57", "text": "a crowd of people eating oranges "} +{"id": "1006850", "video_name": "7d289e1e-74c9-5f37-8a6a-2fdb213e2db2", "text": "a person meditating with a porcelain mask. The porcelain mask is destroyed and knackered. "} +{"id": "1004634", "video_name": "56316e46-eaa6-5231-9fb3-ed6a4dc2c425", "text": "rhaast legue of legends flying above universe "} +{"id": "1003223", "video_name": "3b59c0b5-f568-5776-a29d-192d8134fe06", "text": "woman in african dress doing a dance in the stars "} +{"id": "8002796", "video_name": "ef69c75f-b280-5fa8-a4fe-2f342160200a", "text": "future where terraforming efforts on Mars are well underway. Describe the progress made in making the planet more habitable and the challenges faced along the way, ultra detailed, realistic, 8k, master piece, "} +{"id": "3005352", "video_name": "25889d75-ac37-5cf3-bf9d-edd9dca7c857", "text": "unpeeled whole banana flopping from side to side "} +{"id": "1005449", "video_name": "6423ec2b-8e58-51f0-aefc-7dc2b5165dcb", "text": "The mouse shook his head no "} +{"id": "2004701", "video_name": "153f4bc4-7b99-5e31-b4d5-5ac288cf43c3", "text": "Kashiram encouraged the king and asked who should follow the will of God? "} +{"id": "0003317", "video_name": "3b7f7aa8-c842-5809-b39b-01cf432a1f3c", "text": "make the girl sad and the white sneakers spin "} +{"id": "1005451", "video_name": "642a9ef9-1d3f-53eb-9db0-cb1645524c06", "text": "Dense, lush green jungle in India. The sun is shining brightly, casting dappled light through the trees. "} +{"id": "0005913", "video_name": "23308879-d327-5544-9b42-7e28a728f535", "text": "suoer realistic looking girl beautiful with purple eyes and very white skin and red hair smiling at the camera zoom in "} +{"id": "1005587", "video_name": "66cd90af-d077-5895-be3e-3fffbb5b3d65", "text": "dirt bike rider on dusty path with sunset "} +{"id": "8003768", "video_name": "c96be825-fd8c-523e-a373-10ed967a2fc1", "text": "cats jumping in a city at night, snowing "} +{"id": "7004198", "video_name": "c818abcc-4886-5e1d-be4b-9641cf71d41a", "text": "owl in the Forrest Message: BAIDI (Font: RETRO) "} +{"id": "8001517", "video_name": "e4db5229-3855-5f58-ae68-84a9b47ae223", "text": "a dragon i sitting in front of a cave HG Giger Syle "} +{"id": "0003810", "video_name": "43ead475-3f96-5b44-94df-befab4e3ef07", "text": "Astronaut eaten by purple creature, in moon "} +{"id": "0006180", "video_name": "27c620e1-88bd-5e13-963c-afb856ca1f5a", "text": "a family looking forward to summer vacation. "} +{"id": "0004070", "video_name": "02baf0b5-4aa7-50eb-8d9e-0eed25a7b05f", "text": "storm at the ocean near mountain coast anime style "} +{"id": "1004474", "video_name": "52d73f83-9e71-5767-a8fc-3fe22903ffe2", "text": "a beautiful sandy beach in outer space "} +{"id": "7003955", "video_name": "37339590-34c0-51dd-87a5-2769806bd779", "text": "a cat on a spiderman autfit dancing "} +{"id": "4004703", "video_name": "9e9400ce-9ed7-5e54-a84d-4c6eb9a4d870", "text": "Ancient Greece. A statue of the Greek Muse of music opens eyes. "} +{"id": "7004417", "video_name": "6b2bece6-c092-5c61-9a08-2daff401dd3b", "text": "2 cute dinosaurs walking up a snowy moountain, pixar, cg "} +{"id": "1005907", "video_name": "6c990c1d-4286-53b3-bb5d-17b39c3090b2", "text": "Noah and his family are shown hammering and sawing, their faces determined as they begin the monumental task of constructing the ark. The camera pans around the growing structure, highlighting the craftsmanship and dedication of its builders "} +{"id": "1006466", "video_name": "76568366-88b6-5f27-8b62-d5afd562378a", "text": "Wide shots of farmers on their fields. They work hard, with expressions of exhaustion. Grey clouds fill the sky, setting a somber mood. "} +{"id": "5001347", "video_name": "6e0b2bfd-1916-51bd-a2d2-d5ce82dbb50f", "text": "A golden owl that comes down while flying in the sky. Gold sand is pouring down in the sky, and gold sand mountains are spread out on the ground. "} +{"id": "7003199", "video_name": "f8a43d5a-d172-5d6d-b735-3d1e6bea3fbb", "text": "Ded Moroz flies through snowy Moscow and scatters presents in the form of gold dust on the windows of houses "} +{"id": "1003927", "video_name": "4878b957-735a-54e1-b8a1-2c0c0ef2cc22", "text": "the matrix move with Steven segal "} +{"id": "1006140", "video_name": "70809ae7-be92-5bea-b914-5145982cf023", "text": "an old tram \u0160koda 01T with cartoon eyes and smile "} +{"id": "1005226", "video_name": "60323205-806f-51a2-957f-4e8a6e51945c", "text": "In the embrace of the night, two pure hearts united in love,\n They danced to the rhythm of the beat, but the head was spinning.\n Your kiss became desirable and an arrow hit the heart,\n I look into your eyes in the morning, only you are my love,\n Only you are my life. "} +{"id": "7003099", "video_name": "3be3ba29-fcd2-5cdc-a23d-bc055b1c0d6a", "text": "ek aadmi sitting on chair sad face in front of watch "} +{"id": "4002271", "video_name": "54a90d8f-1dd5-5652-9b39-595b66768b03", "text": "a clock that has no time spinning rapidly "} +{"id": "2005536", "video_name": "5d1e5d06-f4d6-551d-8713-075cd5b44dd9", "text": "A powerful burst of light and energy filling the haunted location at the stroke of 3 a.m. The host is in awe of the intense paranormal activity unfolding. "} +{"id": "8001455", "video_name": "23c2ea42-94f3-5c01-9d9c-e500c1dc10b0", "text": "The warmth of Chinese style, an orange cat, wants to eat dumplings, mutton soup, and red wine "} +{"id": "1004965", "video_name": "5bbafad2-f8e1-58a8-b47b-fff19b2e6579", "text": "Sunset. Golden light spread across the sea. 3D. 9:16 "} +{"id": "7002979", "video_name": "392ad712-9fa6-5051-8af6-13bcb3eccae0", "text": "slow burning fire and soft waves outside moving "} +{"id": "7002843", "video_name": "5424496e-0575-5672-b1a6-c8990877e45d", "text": "Unicorn family talking to each other and smiling "} +{"id": "7003658", "video_name": "0024bfe5-f7c4-57b7-b22c-03e1b863f651", "text": "US President Joe Biden was captured "} +{"id": "1003049", "video_name": "3807b07d-2798-51f5-9ab8-a095c171bd5d", "text": "Mario playing games on a computer "} +{"id": "8002754", "video_name": "943d9d1f-c23e-57f1-8250-c4673c94631b", "text": "video of an dagger rising in the air in a dark room "} +{"id": "7002789", "video_name": "a12d3017-9d88-5f37-9552-8843d2eecfb3", "text": "adam driver as anime playing the drums really fast "} +{"id": "0006210", "video_name": "287a6436-c27c-5e14-bc46-503a72eb1931", "text": "vehicle that looks like a watermelon driving off a cliff "} +{"id": "2003934", "video_name": "b95d645c-3b1a-5673-a892-a45146d297df", "text": "One day, Mohammed decided to play with a big sum. He borrowed money from his friends and acquaintances in order to obtain the necessary capital to play. All his money was bet on this last round. He hoped to be crowned with victory and return his life to its former normality. "} +{"id": "7002739", "video_name": "11a6095a-efe1-50da-b04b-4920cb8b44a2", "text": "a football ground with children playing "} +{"id": "7003367", "video_name": "f6def898-72a0-5585-9dd4-888aba4f2f55", "text": "The rays of the setting sun shine through the dense forest, illuminating the mushrooms, as if gilding them. "} +{"id": "1006395", "video_name": "7506ebc6-f909-5313-9335-8c84b150208a", "text": "a video of a person enjoying the peace and quiet of a field "} +{"id": "1005296", "video_name": "614d3e31-9fc7-5bce-88f8-568670a79f37", "text": "A humanoid frog holds a wand with sparks emanating from it. "} +{"id": "5001065", "video_name": "71db8858-cced-5788-b083-eb884d7e7e55", "text": "A symbolic image of the giants in their clay form, representing both their obedience and the fragility of the magical bond.Animated cartoon "} +{"id": "0006500", "video_name": "2d911406-fade-5603-8e9b-dadddcc93a22", "text": "2 oranges having a sword fight "} +{"id": "3003892", "video_name": "5d3a2a11-b487-5493-be3a-8776a41a3818", "text": "realistic movie scene showing a spirit haunting the sleep of a child "} +{"id": "4003550", "video_name": "c093cad1-20f8-5d1b-b9b2-052fe85f2994", "text": "Create a scene of Man request to subscribe to my channel "} +{"id": "6002006", "video_name": "9e2be7a2-c45b-5499-8980-90b6cb5ed9cd", "text": "A big Ferris wheel is rotating in an amusement park. "} +{"id": "3005319", "video_name": "7a293c68-3fcd-5ab5-b260-1baabcff6b92", "text": "A penguin swimming in saltwater, with a visual transformation into freshwater. "} +{"id": "7002586", "video_name": "a4f2af96-81cb-5603-93e3-1e7e22d564e1", "text": "man who activate light and energy "} +{"id": "6002357", "video_name": "cbcdc7ab-3191-52dd-a722-2b3c5dea8875", "text": "God in a mystical land cinematic 4k fps "} +{"id": "0003216", "video_name": "396c7507-4bfd-501c-8526-bf6eb6b5a50b", "text": "a purple dragon fly to me "} +{"id": "2006799", "video_name": "6e7a0d22-595a-5057-864c-0b8abd756681", "text": "tired man standing in ther city center, chaotic traffic "} +{"id": "7004403", "video_name": "190fb2f6-d3f5-5c13-a378-36c6c25e2401", "text": "The curtain is slowly drawn open "} +{"id": "2003388", "video_name": "6564f040-2b6a-5752-bbd4-770d9120b221", "text": "Kurt Cobain Nirvana Unplugged in NY "} +{"id": "1006237", "video_name": "7242efed-04fb-5b9c-80f1-be036a780895", "text": "The yellow dolphin jumped. Message: 1 Attachment "} +{"id": "4003026", "video_name": "13daf9b5-44d0-5c99-bb26-369fef87f455", "text": "a beautiful indian girl with a black saree do a 360 degree turn and she should be in futuristic world 4k video "} +{"id": "1005676", "video_name": "68442034-92e6-5a6e-8aa5-2300fe27986c", "text": ": a letter M and D snowfall rotating on green background "} +{"id": "8003134", "video_name": "24d51442-7970-50ef-a1bd-16a40d6241db", "text": "the chocolate goat is chromed on the conveyor belt of the chocolate factory "} +{"id": "6004679", "video_name": "050b131b-6584-501c-ad13-ee64b21b34ab", "text": "an animation in which two futuristic super cars racing "} +{"id": "0003869", "video_name": "44ee06a5-249d-57b0-8438-ee31fea78be0", "text": "rotating around a 5G cell tower "} +{"id": "5001861", "video_name": "21eb45aa-2a91-5e94-815c-96c0b1339232", "text": "amazon rainforest Message: raja bros (Font: MODERN) "} +{"id": "3006357", "video_name": "95a0ba35-56f4-5a76-9a5c-9dfe97d4138e", "text": "the trees leaves move gently and the water moves. "} +{"id": "5001005", "video_name": "83bec564-1982-5f95-b29d-f3a4a6532787", "text": "pixar style station wagon, races through suburban town, "} +{"id": "2005404", "video_name": "c1d8886c-a0b8-5ae8-983d-e57aa05635b0", "text": "train runs thru grey rain myst "} +{"id": "8001820", "video_name": "e1d7e953-7f3b-5432-a270-6ca735463b11", "text": "an advanced robot becing created in a lab, photorealistic, 4k "} +{"id": "4002721", "video_name": "5295a328-608f-59ff-ac6d-53cfec529441", "text": "a single red daisy growing on a hill in the countryside, up close view of the daisy with trees and sunlight in the background, the daisy is enjoying the wind and the sunshine "} +{"id": "4004527", "video_name": "61f099f4-3af0-580a-aceb-4616273a3801", "text": "A big moon over the hill. Birds are flying by "} +{"id": "1003196", "video_name": "3ac46f89-a877-5e84-bab0-06e7d9a6db7e", "text": "rave nightclub music video at least one minute long video "} +{"id": "5001079", "video_name": "1ce65c2f-4367-54b9-b9b8-b65d27e35f32", "text": "1970s era band sings and dances "} +{"id": "0006322", "video_name": "2aa5ec50-b273-5f22-9610-247bab8be874", "text": "frame for clip in Yeat style, a guy whose face is not visible in a black hoodie "} +{"id": "3006781", "video_name": "608705d4-2283-5852-9b31-240c9769cf3a", "text": "astronaut walking on mars with a robot and a small dragon dog very realistic video "} +{"id": "6003424", "video_name": "c07826b2-695f-5f6c-bcc1-19beac90cdeb", "text": "imagine, a panda with a soda can "} +{"id": "3003609", "video_name": "6e320ad5-68f1-5ee6-8181-ec83a914e0a6", "text": "cyberpunk statue of liberty in a bikini "} +{"id": "1003760", "video_name": "454eaf98-3145-517e-a480-1906db9f3ccb", "text": "man falling to the ground and hit the ground and blood gushed all over the place "} +{"id": "2005171", "video_name": "6f34efd2-5e66-5274-8b55-0021f167e7c0", "text": "A city in Tokyo where the 1000 expressway intersects "} +{"id": "0005816", "video_name": "21adca89-fb8c-578f-a37a-d017774be468", "text": "Moscow City Centre, sun day, business Jet, 8k, super speed action camera realistic "} +{"id": "4004820", "video_name": "84872eb5-a875-56d5-aa84-6511b47d9b58", "text": "starry sky, few clouds, cold colors, slowly zooming away "} +{"id": "8003441", "video_name": "bbb10ef2-8837-5c94-86f4-62b4872ceeaa", "text": "a confused cat in a city while ots raining LED shining rain "} +{"id": "3006282", "video_name": "2a2fc5dd-7688-5ba1-b901-582560093b5c", "text": "a closeup of a black swan swimming slowly on a lake "} +{"id": "4002749", "video_name": "e8fc1142-2ee3-5a61-bbf7-a07c91e8d8c3", "text": "Start with an image of King Ashoka, perhaps a historical illustration or statue "} +{"id": "6002339", "video_name": "97498166-caa3-5dfa-a4bd-64ab66d2b495", "text": "Santa in his cozy cottage, surrounded by twinkling lights, thinking with a big smile on his face,ultra HD, realistic "} +{"id": "3005442", "video_name": "6afaede9-b119-559e-9966-e55552c5ae3e", "text": "Advanced biological robot built from trees and powered by cats "} +{"id": "6002290", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "women , graphic designer in work, funny, realistic "} +{"id": "7003780", "video_name": "88c91b96-09ba-5d0a-bfba-6f1b78ad79c1", "text": "neon light reflections. Flowing fog. Night air "} +{"id": "2005461", "video_name": "33000852-2088-5fe7-b981-99c68af13ed5", "text": "The Haihao phenomenon appears on the sea, there is a bridge on the sea, dark clouds cover, and seagulls fly back and forth "} +{"id": "5001348", "video_name": "71993e83-a9dd-5f58-9b03-e3aa21b4d10e", "text": "Sun Wukong, the legendary Monkey King, descended on a cloud of swirling golden mist. He stood tall, his shimmering golden armor and fiery eyes reflecting his supernatural power. The Ruyi Jingu Bang, his magical staff, was clutched in one hand. "} +{"id": "3005816", "video_name": "7d761ae2-7ad6-5515-8036-6d6217b2d015", "text": "The angels make merry in the Garden of Eden and have a feast "} +{"id": "0003392", "video_name": "3cb8f5d0-e0cd-5c1a-8d49-b1e30bbae6ca", "text": "Employ lighting changes and music to emphasize the transition between rooms. "} +{"id": "8003103", "video_name": "436afadb-b986-5d38-98fd-3f16866c9204", "text": "Boats bobbing up and down, people blinking, hair fluttering, waves surging "} +{"id": "6003148", "video_name": "702a91a2-b5b0-558c-859c-ec85f88cae75", "text": "the demiurge in darknes waving his hand and creating the universe the planets moving arround him "} +{"id": "4002773", "video_name": "067d8149-f18f-5d7d-b10c-0ae07b154291", "text": "magical garden with jellyfish bubbles and bubble flowers at sunset, award winning photography, 4k "} +{"id": "2004237", "video_name": "208778b4-e72b-57b7-8f37-ca7223ef4faa", "text": "A stunning depiction of the heavenly realm, with intricate details and vibrant colors that bring it to life. The angels, with their majestic armor and powerful wings, exude a sense of strength and grace. "} +{"id": "4003097", "video_name": "4a6941cf-8f6d-5b2f-a6ed-92a715c64389", "text": "WW2 battle, british and americans going over the top of a trench with determined faces, ensure the soldiers look strong and motivated, include a churchill MkIV tank in the background "} +{"id": "6004683", "video_name": "8e689a57-195b-5cfc-bf19-3674e82a8488", "text": "beautiful night sky in city lofi video quality "} +{"id": "2006887", "video_name": "634e3158-410f-51c2-b233-22fd00444f53", "text": "A lush meadow at the edge of a cheerful village, with vibrant flowers, green grass, and a clear blue sky. Introduce the cheerful village, maybe with happy children playing in the background. cinamatics "} +{"id": "3005703", "video_name": "7867bc42-62be-5185-9269-350d9298f9da", "text": "space, milky way, stars, bright stars, shooting stars. "} +{"id": "6003911", "video_name": "6f97a2f9-7e89-5d2e-8c5b-1a74ae28455f", "text": "painting water flow, clouds move, birds move, carts move camera advances "} +{"id": "5001030", "video_name": "cb7fe6ff-d51e-57ee-99d4-09fb5c52226d", "text": "change background on photo to simple, serene outdoor scene "} +{"id": "2004988", "video_name": "d160cdae-2e3b-5e98-90fe-0ea238a981e9", "text": "Vincent Van Goh style stary stary night painting.\nVibrant 3D colours "} +{"id": "2005601", "video_name": "25df68bc-aefc-5080-9da8-b624d205bc7a", "text": "following red guitar floating on a lake of roses "} +{"id": "2004141", "video_name": "ef675447-7e07-5caa-a2c7-7b14a4df4f90", "text": "a beautiful earth planet circulting among the other planets clockwise "} +{"id": "6003686", "video_name": "ec088673-24c7-5bae-9bc8-d2a373042208", "text": "slow zoom on synthesizer and ocilloscope in winter woods at night 1960s television style "} +{"id": "4002650", "video_name": "aaffcc9f-a83d-5339-a2d0-050ccd0668dd", "text": "girl transformed intoa leader in her own village, The community she has built is filled with happiness and harmony "} +{"id": "8003599", "video_name": "cbde8c80-f329-5443-a5ce-bad04fde5edf", "text": "thrift store interior with small alien hides in it "} +{"id": "8003151", "video_name": "f228a762-fc2f-5225-9de5-4c6c567cff44", "text": "A sporty beauty Message: 1 Attachment "} +{"id": "7002842", "video_name": "10955eb1-62f7-581b-b412-aef7076c7d71", "text": "random video of a person holding a wheel in a car "} +{"id": "0004867", "video_name": "108e0931-c2ea-544e-bc05-3380f2be3359", "text": "Bear as a space commander, cyberpunk style, 8K"} +{"id": "3006683", "video_name": "9ca70e72-7036-5901-ac2e-a2f9d8ff0b65", "text": "5. (Additionally), the hero encounters mythical creatures guarding the entrance to a realm where time dances between reality and fantasy. "} +{"id": "8001506", "video_name": "7415f0a7-d578-59bd-84a9-a993d377b6d8", "text": "A baby smiled and then suddenly started crying. "} +{"id": "8003591", "video_name": "942823a4-1884-545a-b508-172ce8d97b8b", "text": "1930 footage of Game of thrones "} +{"id": "1003611", "video_name": "428ae7d4-9a08-561c-90b1-baeabe904d64", "text": "3d animation. dialogue between a rabbit and a wolf. Shoot: Wide shot of the forest, showing the tall trees and lush bushes. Camera movement: The camera pans slowly from left to right, capturing the beauty of the forest. "} +{"id": "2004819", "video_name": "7cb93294-f116-5989-9c03-980e5e846d48", "text": "one beauty women is walking in the grass "} +{"id": "3006323", "video_name": "9b0f68d1-5ca8-59c7-917c-f0c7e94803a0", "text": "purpose, healing purpose, acension, spiritual, motion, 8k "} +{"id": "7004475", "video_name": "90812e4b-98bb-57f0-8990-e89dc2008fe5", "text": "a tree transforming into a jedi "} +{"id": "6002283", "video_name": "d00f24cd-cb83-5c73-8bfb-67c17dfde407", "text": "Woman whispering to an empty glass jar, she carries near the chest "} +{"id": "7003278", "video_name": "0badfadd-c0b2-5d31-80ac-6d0e4bb85489", "text": "A Caucasian person learning English online from a beach house. hyper realistic "} +{"id": "2004723", "video_name": "4efbcfcc-47cb-570d-8d1b-2f6e81406a9d", "text": "zed a scruffy hillbilly in cabin 3d dark scary candle light Pixar movie "} +{"id": "0004496", "video_name": "09ed8e6d-c280-5b8b-80cb-74eb81ff2502", "text": "realistic honey bees eating honey microscopically "} +{"id": "3006421", "video_name": "fba87c1f-28ed-5f91-83c6-32ebf192ecca", "text": "Dark forest with a full moon. Fog rolls in slowly. "} +{"id": "2005200", "video_name": "a83e062f-f026-5cc2-b88b-364932d0f720", "text": "Moon Uncle (cartoon moon face) Message: 1 Attachment "} +{"id": "3004680", "video_name": "b1dfd764-14ba-597a-86cc-0a1570e6a2b2", "text": "a circus ring leader under the big top throwing money to the crowd. "} +{"id": "5001689", "video_name": "89767ac3-e186-5ea9-8ffd-f203697472f9", "text": "A beautiful baby girl in a sunlit clearing among colorful flowers and trees. "} +{"id": "6002231", "video_name": "c49c9662-4421-5dc6-b1c1-3d8f0fb9fcf9", "text": "donald trump throwing money into the air"} +{"id": "8003267", "video_name": "22797e5c-a1c1-5141-b156-ec7678498c7c", "text": "Bob Ross mma fighting Ronald McDonald and the Fry Guys "} +{"id": "2006609", "video_name": "741131e5-b33a-507a-bfed-fd3993e6a4fb", "text": "Dancing on the moon and then on Jupiter "} +{"id": "0004399", "video_name": "0841f9aa-e4e6-5f0c-9688-e482e510e790", "text": "Create a profile view of a frog on a completely green background; let there be a single shade of green throughout the background, with the green used in the background not being used for the frog. The frog should blink and talk. cartoon "} +{"id": "8002410", "video_name": "5ea9e2ef-6271-5a50-86b7-19966e1b6f82", "text": "an astronaut in Orange coming out of his spaceship in space "} +{"id": "4002798", "video_name": "ee6080fb-cbca-5d4b-af93-0c40ee8af4c9", "text": "Parallax Animation of a willow tree in the city "} +{"id": "8001649", "video_name": "403f60ce-681a-5781-a17b-8e1bda79e548", "text": "in rainforest Message: Red (Font: MODERN) "} +{"id": "1004212", "video_name": "4dd03623-845a-5f3e-b762-6792475b00c8", "text": "a flag of the Comoros flying in the sky "} +{"id": "2006199", "video_name": "31574735-f11b-5ce1-b678-c99dbc2dd4f0", "text": "carnival cruise ship sailing towards the sunset "} +{"id": "6004156", "video_name": "e61ad3fb-6874-5674-ac2a-900d028eba12", "text": "Mother is giving a little bottle to her daughter, 1950s movie style black and white "} +{"id": "0005554", "video_name": "1cc8745b-00c3-542e-8e7e-edf09806f8fc", "text": "A man and a woman walk hand in hand on the streets of the city center. "} +{"id": "5001820", "video_name": "e29ad51f-0068-5069-941c-2e94b957575f", "text": "a cute little fluffy cat walking in a park,3d,anime cartoon "} +{"id": "5001513", "video_name": "319b7f25-a227-5e4d-b742-bbdb3e65eaff", "text": "research centre for Artificial inteligence for a video showcase lab entry movement corridor "} +{"id": "2003854", "video_name": "fddd2733-f782-53a1-af6a-53f382cdd83a", "text": "Warhammer 40k space marines in blue armor walking out of a drop pod in the jungle "} +{"id": "8003389", "video_name": "711742a0-1b71-5ae6-b36c-cd73bd1a6ed5", "text": "a citynight view of times square "} +{"id": "1003943", "video_name": "48c400fb-f707-566b-ba57-8d81f61e6f44", "text": "One snowy night, on the eve of a field trip, we were in the cabin, packing up our gear "} +{"id": "4004388", "video_name": "8b0b1512-0c47-58df-99b6-ced07bc66a3d", "text": "A cloud of hazy clouds, overlooking a continent, dark light in the morning, "} +{"id": "2003007", "video_name": "bca2606d-9d35-5673-a903-ca5ddacc1b80", "text": "a lady and a son running together "} +{"id": "1006027", "video_name": "6ec82132-4bd7-56cb-98b1-5207dbe5228a", "text": "a image of animated chad dog wearing sunglasses for youtube icon "} +{"id": "3003801", "video_name": "b6b00728-eb50-50e8-8b11-44510d7876bb", "text": "crow with amor in anime style "} +{"id": "1005364", "video_name": "62985341-bdd0-54b2-974a-2ec856a20725", "text": "The Joker (DC) punching The Flash (DC) on the rooftop during the heavy rain "} +{"id": "1006111", "video_name": "701ccdd7-e000-5272-8068-a6a398dfe524", "text": "white cloth falling off revealing a statue "} +{"id": "7003960", "video_name": "2a761f52-5495-50e1-8391-a03317ea8c62", "text": "Depict the jackal returning to its den cautiously and sensing an opportunity to trick the lion. "} +{"id": "0006017", "video_name": "251ad895-600b-5095-9323-5c35bed1c735", "text": "The hare in culture, escapes from the wolf titan "} +{"id": "5001736", "video_name": "74678cfa-23ad-587a-b195-9b5690a01408", "text": "a majestic horse leaps into the water a rainbow in the sky "} +{"id": "8003357", "video_name": "1d022ccd-5d68-590e-9431-41e12e7774c9", "text": "3D animation, a child in blue clothes with short black hair, wearing a red bag, walking on a bridge in the river "} +{"id": "6002965", "video_name": "012fab8b-6ce4-5163-b45d-162aa884910b", "text": "The Mausoleum of the First Emperor Qin "} +{"id": "8001573", "video_name": "11ca1a5b-e989-5dda-9624-bfff311c66fb", "text": "a glas sphere with the earth continents rotating in the space 4k, 12k, hyperrealistic "} +{"id": "3005376", "video_name": "2536fec8-fd3b-5cce-b3dd-2ddc0a7d3e58", "text": "bright yellow fluffy cat, gold ornament, glitter, realistic, fast wake up from long sleep "} +{"id": "7004464", "video_name": "ebd787fe-3377-59d5-86e0-4b4badb3deb2", "text": "hyper realistic smartphone that plays a video of snow falling down in London with London in background "} +{"id": "8003175", "video_name": "caa95cbe-71e6-51e9-9cc1-aff42c282b54", "text": "one boy whoes around many people "} +{"id": "7003496", "video_name": "1fb158fa-02fc-5594-af48-c0b605548ced", "text": "Large office,a lot of desk ,compture ,animal wear suit, "} +{"id": "3005863", "video_name": "f8661a1c-354d-575a-bc76-761d3bbca16a", "text": "rough animation of a character doing a spinning kick, body movement, arms movement, no distracting elements, "} +{"id": "2003464", "video_name": "f74d4c5a-2be6-5d66-985a-e3fcd47220b4", "text": "a group of friends talking and laughing and a boy being left alone in the side anime,scene Indian "} +{"id": "6003502", "video_name": "e97e4fb3-41f0-58ed-a1af-b691ddf7313a", "text": "girl walking barefoot on coal without any reaction "} +{"id": "2005477", "video_name": "cc7f2c04-2239-5b83-ba10-9f2dff8570db", "text": "a brown fur rabbit and a shy turtle is talking in cartoon format "} +{"id": "4004799", "video_name": "3f1a039a-dedd-5ec5-aca8-9b95ac69fdec", "text": "a baby girl with her grandfather and grandmother "} +{"id": "0005416", "video_name": "1a839135-1d08-5ab1-b8bb-12cf91b851a8", "text": "honor your roots Message: 1 Attachment "} +{"id": "2007831", "video_name": "c58fa23e-c798-5646-8f51-6d3fbfa5e5e9", "text": "An aerial shot of the bustling marketplace, with colorful stalls lining the streets and magical creatures browsing for unique items. "} +{"id": "0004265", "video_name": "0616db1d-af8a-58b5-9506-f946b0e35bb2", "text": "in New York City a woman walking down the street dresses in nice business attire holding her neck with one hand due to neck pain. "} +{"id": "7004408", "video_name": "e93d5673-3b21-5ce1-ac45-271757e52031", "text": "a green meadow with short grass, close up "} +{"id": "2004497", "video_name": "6c7df814-af67-59ad-a4af-516d13c5925f", "text": "The scientists grappled with the ethical implications "} +{"id": "1005972", "video_name": "6daa9dc5-6ab9-5d44-aea2-8cece1fcc3c9", "text": "became a beacon of hope for those who dared to dream against the odds "} +{"id": "3004512", "video_name": "800738eb-7d1e-50f8-8e08-f5a7ae0c13b0", "text": "a man in a suit walks away from a private jet, a digital rendering, by Robert Gavin, gold and blue color scheme, side view of a gaunt, new vehicle "} +{"id": "7004525", "video_name": "4068e4ea-fe40-5654-97df-26b9edd8c9b4", "text": "There was a queen whose name was Changa, she was very beautiful "} +{"id": "2006391", "video_name": "4f464fdb-8546-5571-8613-64e9741c7b13", "text": "Timelapse of a black Dahlia opening up cinematic HD vivid colours full moon "} +{"id": "1006493", "video_name": "76e31aa2-4526-5060-b475-2783303add9d", "text": "norbert on which cartoons are drawn "} +{"id": "0005528", "video_name": "1c4c6890-a5cf-5dc7-a66a-14590d34ac51", "text": "Tom Cruise says: I love you Daryna Very much "} +{"id": "7003369", "video_name": "56934fd2-fd2a-52b5-b88c-2030113878a2", "text": "close up of a girl running through a thunderstorm "} +{"id": "3003510", "video_name": "bf7fcc27-6809-5d31-b52e-bc0692ca4337", "text": "an adorable Indian girl age less than 6 years in a temple, green trees background listening an angel age 30 years "} +{"id": "4002288", "video_name": "6f834513-9511-5ca9-8c22-2df2aa2f4694", "text": "Paint by numbers morning sky Looks so phony "} +{"id": "0005369", "video_name": "19ab4aae-ed7a-51d7-aced-f1448bbc0f81", "text": "singing Head floating in glass box Mind Worm with wires diodes Alfred Stieglitz grainy black and white 1900s "} +{"id": "2006901", "video_name": "9ace26e0-e5d0-5b57-a646-55f65c454bbd", "text": "in school, The Insurance trainer explains the main points of car insurance reform "} +{"id": "3006469", "video_name": "d541797f-9f55-54cb-9c76-09e6db821a42", "text": "a man is left stranded on a highway after he was metaphorically robbed by the love of a woman "} +{"id": "0004093", "video_name": "0310cffc-7e08-54da-b95e-f298aa95d26a", "text": "Narendra Modi dancing on a street "} +{"id": "0004776", "video_name": "0f07b697-cfaa-5402-9512-2a6ceeeacb7a", "text": "Portray humans exploring the depths of space, with futuristic spacecraft and space stations navigating through cosmic landscapes. "} +{"id": "1004773", "video_name": "5848208c-a7d2-51aa-91ca-99539ee3761f", "text": "A Bald Eagle majestically gliding through the air, showcasing its impressive wingspan "} +{"id": "0005390", "video_name": "19f71dfe-f552-56ab-a302-9dde5572061b", "text": "Promote a Chinese chess piece to a general "} +{"id": "6004217", "video_name": "396b8be3-e478-5d1c-9d5e-6b13e3ca515f", "text": "a boy with curly hair and a blue sweatshirt, the boy is floating in the snow, cartoon "} +{"id": "1003538", "video_name": "41453e8b-54ca-5021-b553-9433057357f4", "text": "A Frog with ballet dress Dance infront of church "} +{"id": "1004187", "video_name": "4d6fce8f-081f-5bb6-a39b-b2cd0d3513c6", "text": "The big door opens, one by one the planes come out of the hangar to the music of the jet engines. 4k . photo "} +{"id": "8001271", "video_name": "ebebc0fd-fcb4-56b8-ac76-f006f9db7026", "text": "Create a continuation scene from a science fiction film with the following context: Act 1 \u2013 Desolate World: Introduction to underground life and the decay of society. Introducing Elena Cruz, a dedicated scientist who questions the status quo. Discovery of a temporal anomaly that indicates the existence of alternative worlds. "} +{"id": "2005873", "video_name": "c0dc7f3e-e9ff-5868-b56c-ff5e3e16ceaf", "text": "A child falling off a bike, then trying again. in Van Gogh style "} +{"id": "3003097", "video_name": "33f38dfa-93d2-531c-b4c1-eeb313da430c", "text": "sugar gliders following their owner, a wise old mage dressed in a green and golden robe who happens to be taking a stroll deep into a mystical forest "} +{"id": "1003334", "video_name": "3d5da228-232c-5597-abdd-78b603b4b2d7", "text": "Medieval knights fighting in a pixel art style tournament "} +{"id": "2004074", "video_name": "e9aa8ff1-1ee1-5fcd-890c-7ea01fb14d23", "text": "a homeless sitting and invisible to hundreds of people passing by "} +{"id": "0003769", "video_name": "42ff35a1-f108-5118-a41d-ffbc699e2da3", "text": "a very strange and eerie type of food with a chef holding it "} +{"id": "0003440", "video_name": "3d91c907-e42a-51e1-9c66-ccd2cd4b1f04", "text": "A wide angle shot of the worlds strongest man lifting a Bitcoin into the air "} +{"id": "2006553", "video_name": "7b7390e9-946f-54c5-b0d7-89a1a0c0ab2b", "text": "stickman fight that is red vs black in the night and they both have superhuman powers the fight was long enough to the sunrise "} +{"id": "6003948", "video_name": "a96f05a9-4831-5505-84e6-6bdc6890af07", "text": "Lord ganesh sitting, india, duo tone, bright "} +{"id": "4004852", "video_name": "24705407-0ba8-52ae-a8e3-b5ac57fee599", "text": "A tornado moves, destroying everything in its path, a small suburban village "} +{"id": "7002686", "video_name": "00fa54c6-b35e-5623-a4b2-bc2b29cba797", "text": "An early Christian congregation celebrating Christmas, with clergy and faithful gathered, background adorned with modest Christmas decorations. "} +{"id": "3006457", "video_name": "d02f4f46-83f2-514d-bd45-e042ee69f7f1", "text": "pixel art girls in the club "} +{"id": "0006684", "video_name": "3101a602-e439-57ac-a226-d63e2284401a", "text": "influencer skydiving off a building in the city while in selfie mode "} +{"id": "6003168", "video_name": "24f6f244-adbe-5678-bf43-7b88a0c00ac8", "text": "military helicopter landing on a field, side view, cloudy sky. "} +{"id": "7004184", "video_name": "1a2333a2-5d3a-5fd6-9de0-00c08bfe5360", "text": "college girl collaborating with robot to write a story "} +{"id": "3004625", "video_name": "1f9bf34e-0edb-5277-a352-07988dcee111", "text": "a cyberpunk chibi cat riding in rocket upwards "} +{"id": "8001519", "video_name": "55ff19c9-55a1-50d0-9fca-097a33b256ee", "text": "firework in nitght sky. Birds collects together and make message: \u041c\u0430\u043a\u043b\u0430\u0439 (Font Italic Impact) "} +{"id": "4002705", "video_name": "525256c9-8592-5d83-9865-37ae474224c4", "text": "lonely man walking through the streets of Abasto, on a morning with cloudy skies, and no one around "} +{"id": "3004627", "video_name": "47f15f7c-fbea-5b13-b06a-b79c80c63145", "text": "bomb blast in a jungle, mountain, cinematic "} +{"id": "2007306", "video_name": "a3f354dc-8266-51c9-a32d-4ef99ca049de", "text": "five people are in universe, animation style "} +{"id": "8003125", "video_name": "bb67aed9-abf9-56d2-867b-f4d86f5c4fb1", "text": "an stylish asian woman in a red dress and a black leather coat. Her head is turned to the left. With movement "} +{"id": "7002963", "video_name": "e4e8a29b-9bdc-5e8a-82c9-4b54df3ced09", "text": "plain background with chicken, grass, and philippine flag "} +{"id": "2005465", "video_name": "395cc854-4321-5f67-95e2-4b4c1c1d5d1b", "text": "Introduce a magical world filled with talking animals, friendly monsters, and enchanted landscapes. Create characters with unique abilities or powers, and have them embark on an exciting quest to save their fantastical world. "} +{"id": "2007492", "video_name": "b18b955e-e39b-5cd3-90c5-51f86161bc85", "text": "a man firing a machine gun, big heavy machine gun, enormous, aiming at the camera, Aspect ratio 9:16, pan out "} +{"id": "5001181", "video_name": "1ca04833-b810-5637-ace4-71911d1e0686", "text": "a football field with zombies playing football "} +{"id": "6003109", "video_name": "324842ac-e72b-538f-8191-83a33da4c0b1", "text": "Animate an anime character with messy dark hair and sharp eyes, wearing a black traditional Japanese costume. Have the character calmly wave his left hand while a gentle wind ruffles his hair and costume strings. The background should be a serene sky with slowly moving clouds. "} +{"id": "1003406", "video_name": "3edcb56d-ce40-5c40-9c9b-18ed6245e8db", "text": "Santa standing, zoom in, scary, menacing, disturbing, Clive Barker style "} +{"id": "0005916", "video_name": "2332b5a0-0b28-5e3e-9996-d031f1222a44", "text": "big red numbers going down ,close up camera angle "} +{"id": "2003825", "video_name": "d7275329-d71d-58a5-b0da-748c10b78df9", "text": "prince sitting down on floor helping glass slipper in Cinderella foot , who is sitting on chair "} +{"id": "4003605", "video_name": "277c72ff-8963-545d-b529-e970f715efc0", "text": "Spacious luxury pension, snow falling outside, large windows, view from inside, 4K "} +{"id": "0005415", "video_name": "1a7fd0ac-af50-5365-8f6f-95bc6d238809", "text": "A haunting scene in a forest, a women running away from a lion, shot in black and white 1.33:1 silent aperture "} +{"id": "6002460", "video_name": "f294223f-0716-58bb-bf67-428794330cc2", "text": "On a sunny morning, a young woman was running by the river "} +{"id": "7004061", "video_name": "68cb4230-3865-5ff6-9cba-c7ab9f387a2c", "text": "My poor heart, Amazing photo of those mysterious dendrites that grow interconnected wrapped in fleeting neon light and hallucinating in my brain full of ghosts that cover my sadness my abandoned heart "} +{"id": "7004808", "video_name": "dd86841b-83eb-506a-b707-f39b9ee52882", "text": "a man is in a snowy cave, lit a fire, sits "} +{"id": "2004468", "video_name": "a2524c3c-2f67-583b-8e69-6a923b33cfdd", "text": "A Viking warrior standing atop a longship, the still waters of the lake reflecting the majestic mountains in the Ecchi art style. "} +{"id": "3003957", "video_name": "22dccf29-d1ce-5a51-a31d-55db5243b884", "text": "A Pakistani couple walking on beach barefoot "} +{"id": "2006359", "video_name": "422ed833-7fae-5d3c-9a9d-025beea4f053", "text": "man with a blouse covering his body, except for his face, which is a face that is half human and half monster, in a dark place, but with lighting around him "} +{"id": "4002185", "video_name": "b6848f5b-456b-5012-a5b4-8fa986cf93b1", "text": "an image where Opera House building is built in Louis Kahn style "} +{"id": "3005108", "video_name": "348e4b2b-9c2c-5edd-926e-190903701902", "text": "The trees on which bacon grows, ancient China "} +{"id": "6002486", "video_name": "64db3d69-03bf-52a0-b501-40fdb1d23913", "text": "Highlight that heroin a brave girl can emerge from unexpected places. "} +{"id": "8002982", "video_name": "a579f2e2-d125-5ae7-af03-5409385ee0dc", "text": "A serene kitchen setting with natural light streaming in. A woman flipping an astragalus in the palm of her hand "} +{"id": "1005115", "video_name": "5e526f92-6455-5712-a765-3b6f926a637c", "text": "pikachu and raichu having sushi at the beach "} +{"id": "2007459", "video_name": "72d2f0d8-b2b7-54dd-9b2b-883510a5c9ef", "text": "A corgi gallops down the road on a motorcycle "} +{"id": "4004153", "video_name": "8036bb24-ec16-5454-95e5-98ade248d8f4", "text": "Camera zooms in on the paintings, revealing a connection to the apocalypse "} +{"id": "0005254", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan was very happy to hear this and started following him. "} +{"id": "1006524", "video_name": "776997f4-380a-5283-9a55-5b0b4827a979", "text": "The islamic 6 year old boy in home "} +{"id": "0005146", "video_name": "158e802e-eb39-5b36-91ff-3083cd35c213", "text": "A Chinese man working on his iPhone in a big street "} +{"id": "6003285", "video_name": "2229cffa-92b5-56c2-a950-d4a91eca6b7a", "text": "teacher giving gift to a girl "} +{"id": "8002236", "video_name": "eaad94cd-788b-5e36-9539-a39b69bb9883", "text": "Create a Santa Claus in a car handing out presents "} +{"id": "7002862", "video_name": "04f7e3ee-6304-5c3d-b77a-bd494a332d21", "text": "A conference room with several people, both women and men, all in suits. "} +{"id": "0004743", "video_name": "0e84de53-aa2a-54b5-a12f-1db6ddb76c9f", "text": "A zen master droppped pebble into still water pond sorrounded by lush green trees "} +{"id": "2006617", "video_name": "cfa82a1f-9370-579b-807e-0735699e60be", "text": "a boy playing on his cell phone, the Brawl Stars logo appears "} +{"id": "4003552", "video_name": "07b36dbc-59c4-55bb-aa88-496912ec522c", "text": "a women Walking no the beach in landscape "} +{"id": "2007877", "video_name": "8badab59-ad3d-5dcc-9826-e580911acddf", "text": "a man lost driving down a dirt road "} +{"id": "4002321", "video_name": "6e060dc7-196c-5191-8ea1-67d28a0dd5c2", "text": "sunrise outside and a girl is sitting in her study room thinking about her life "} +{"id": "6003130", "video_name": "7ebfb59b-b416-5efb-9e1d-6d1bcf990477", "text": "a human beachpunk standing on the beach differently against huge airships "} +{"id": "2003412", "video_name": "d7924e1d-c283-5c05-a928-a68d559638ac", "text": "Rock Band on stage at a festival "} +{"id": "2003189", "video_name": "9befcef0-c18a-5857-ba35-4bf20a5b4fd4", "text": "A flash of light blinds a demon soldier, night, fires in background, cinematic "} +{"id": "1004463", "video_name": "52a120e4-8b49-530e-821e-1436d2362582", "text": "Sammy listened intently, and they laughed together as they shared tales of their own forest friends.moving "} +{"id": "4004218", "video_name": "6f408ea9-1979-51a8-b3f5-6afa88fe6267", "text": "freebirds doing bird things with freedom that is free99 "} +{"id": "3006398", "video_name": "28a2bba2-3061-51ed-bc31-9db9cadc1596", "text": "3. His axe slipping from his hand and splashing into the river. animation image "} +{"id": "1005485", "video_name": "64c1cb62-36fa-56a3-b1b9-f117b7365557", "text": "create an image of a dog and boy in woods talking to each other "} +{"id": "4004586", "video_name": "289142ac-ad63-5c99-853d-14bfd64f9c9b", "text": "Christmas mood moderator looking at the camera with the christmas market on the background "} +{"id": "2003943", "video_name": "c2973ce2-c833-545b-a20c-39fb68e8c626", "text": "Crown man talking to the camera "} +{"id": "3005334", "video_name": "b0c67066-16db-5b5c-aaf6-863637159c0b", "text": "super realistic real life human Armin Artlert "} +{"id": "6003813", "video_name": "0d2e146e-0f72-54bd-a51a-95c20baa6cbf", "text": "there are dimensions that exists right here and now which we are not aware of "} +{"id": "3004802", "video_name": "7435d628-fe01-5c62-8bb3-96c737fb0c9b", "text": "an old 1970 film about the fairies by the nile river. "} +{"id": "0003992", "video_name": "0145c544-a36a-5084-81ed-2134cfe4c7e5", "text": "Scientists are hopeful that further studies of extremely ancient human DNA will help clarify these mysteries. "} +{"id": "8001257", "video_name": "b97dd18f-3a04-55fa-9eef-bd142e667d9b", "text": "happy cat closing his eyes in pleasure, background green "} +{"id": "1003966", "video_name": "4938d551-6be3-5f09-a797-aadb615b5092", "text": "a cartoon jelly fish wearing a gold crown on their head, studio ghibli cartoon style "} +{"id": "2005407", "video_name": "0b5d00c4-3875-55ce-9e99-44741ed7bd87", "text": "Montage of glass and mirror creations in diverse settings, radiating elegance and innovation "} +{"id": "8001317", "video_name": "76529ab5-e03d-5c8f-9bae-cb64728ddd80", "text": "blue sky, a man reading a book on the grass, a man is student highschool "} +{"id": "8003461", "video_name": "0ae299c7-bacf-5fc3-848b-851254384c27", "text": "Jesus climbing on mountain with people "} +{"id": "4003609", "video_name": "06def2e9-a6af-5848-80c8-3e07d219452b", "text": "make her move, fire and smoke is blowing, bike running "} +{"id": "2003928", "video_name": "f69877f8-d81c-5486-8d1b-2acc285aa1c0", "text": "a small cute boy going through a greeny deeper jungle "} +{"id": "7003742", "video_name": "729d32a7-0a41-5ece-87af-cac8542e181c", "text": "Determined to have his wish, Momo swung through the jungle, encountering mischievous parrots and giggling squirrels. Finally, he reached the Banana Blossom. "} +{"id": "8001289", "video_name": "958a1a5d-7a33-5909-956c-34231e7d21a3", "text": "Your father is a business man.You guys have a clothing business and you are four siblings. "} +{"id": "8001221", "video_name": "79a61365-026d-5f59-a8a8-872e5e1017df", "text": "ranforest image with some animals walking in this place "} +{"id": "4002219", "video_name": "679c7b63-bc6c-5468-bc89-806b37181fb1", "text": "camera moving 90 degrees around Byzantine Empire military commander belisarius "} +{"id": "0004627", "video_name": "0c3af018-1ca2-5d77-907a-08c197657c14", "text": "Generate an image of a vineyard at sunset. A bunch of plump grapes dangles from a vine, catching the warm, evening sunlight. "} +{"id": "8002722", "video_name": "27c7478b-c662-5747-8955-689615207bfd", "text": "chandrayaan 3 of india landed in moon ratio of video should be 9:16 "} +{"id": "3003929", "video_name": "b29a6eba-c1d6-5091-b9de-e95b59461bb2", "text": "A 3d illustration of a dangerous mosquito "} +{"id": "0004595", "video_name": "0baadbdf-3e78-5ea7-8dfa-b1a6b5f25602", "text": "in hospital 4 nursing staff are working "} +{"id": "0004319", "video_name": "070929b8-6106-542f-b177-2d641bf5c137", "text": "Silent forest. Misty night. A figure emerges. Flickering, translucent. Unearthly motion, ethereal. No sound, only whispers. Ghostly presence. highly realistic. 4k "} +{"id": "8003747", "video_name": "c57dd5f7-7fbe-5231-af91-1b4a1d3f9a92", "text": "Giannis Antetokounmpo playing PUBG at a computer "} +{"id": "4003113", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960 arthouse film showing a grass labyrinth and a woman dressed in white searching the exit of the labyrinth "} +{"id": "1006693", "video_name": "7aa49a5c-bb15-5936-be74-f3ce9d22529b", "text": "A little girl whimpering Pixarr, Disney, 3D "} +{"id": "3003366", "video_name": "10f8f34b-35ac-5703-b9b8-ebb6ae100983", "text": "Transition to a heartwarming scene of the woman returning home, her arms wrapped around her daughters as they sit down to a meal made possible by the generosity of Prophet Dawud (peace be upon him), their laughter filling the air with joy. "} +{"id": "6002566", "video_name": "0fa1417c-7388-5397-8c6b-4c053bc81992", "text": "man sitting on a throne surrounded by a room full of beautiful seductive artwork "} +{"id": "7002545", "video_name": "30abe2ca-bee9-5a8c-8f0d-eae57316b9d5", "text": "dragon skeleton flying through hell, vivid, scary, evil, high quality 8k "} +{"id": "2003475", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "Roronoa Zoro standing up from the ground and turning around with a deep wound on his chest in the style of anime "} +{"id": "1004231", "video_name": "4e619950-f593-5edb-8808-5f90d000a4f5", "text": "this might explain why a vast number of philosophers were outcasts; in their isolation they had time to commit themselves to pursuits beyond social gatherings. "} +{"id": "0005584", "video_name": "1d812c12-1759-5711-9372-3e6615afe923", "text": "Wizards playing a magical board game, discussing spells and curses "} +{"id": "6002856", "video_name": "f6a7b998-eb18-5462-ac45-c2960ff63d46", "text": "the most caaptivating valentines day 2024 "} +{"id": "8002626", "video_name": "7f5c966a-fa0d-50e9-b125-08aed719bda2", "text": "father and son crawling through barbed wire at the southern border "} +{"id": "7004137", "video_name": "23a88778-51cd-5383-80b3-f721153507f1", "text": "sunny day,a small village surrounded by forest, people walking "} +{"id": "7004447", "video_name": "e3043f23-6baa-559f-91e7-c9062d4c645f", "text": "car falling down from the bridge, view from cabin, cinematic "} +{"id": "1006424", "video_name": "758f2eaa-396b-5d5d-90fe-1cdc780a0128", "text": "video launch on yotube, glowing blue color "} +{"id": "2004825", "video_name": "e8305cc0-4f3f-56f3-93c4-bade83de8453", "text": "a boy and girl sitting in the park, nobody is around them , anime cartoon "} +{"id": "8003755", "video_name": "7b5faf84-7ff3-5d4d-a679-2f44d438f986", "text": "The puppy runs towards the boy "} +{"id": "2007447", "video_name": "d5d9023b-e19d-536f-9faf-9db907e124ef", "text": "soilder in battle field fighting through gun shots in a cinimatic view with 1950 backdrop "} +{"id": "1004880", "video_name": "5a3c4669-9ef0-5fc9-a3dc-ecb866a91379", "text": "A doughnut is being lowered onto a carrot "} +{"id": "3004537", "video_name": "9858ed67-64a9-539f-b891-c0286548c780", "text": "aim assist is a skill issue, not a real issue "} +{"id": "2006247", "video_name": "f70d4b3d-76ea-559d-b1cf-61f942fe1e3e", "text": "Tesla cars assemble line, with machines and robots, Elon mask is standing beside the machines, 3D animation "} +{"id": "1005884", "video_name": "6c3ecbd6-6787-5934-a73a-0fcd2c2c5426", "text": "a victorian woman body repousing in a dark cemetery, with ghosts over, candes and skulls "} +{"id": "4003659", "video_name": "9748faad-01a6-500c-9974-69c3b3c7adbc", "text": "A muslim warrior, abstract art, illusion, "} +{"id": "2006150", "video_name": "2670acab-1b69-57e5-92cb-7373f49729d2", "text": "a green garden with tiny rock waterfall where water running in rainy day ,8k "} +{"id": "0003088", "video_name": "36c91e63-2ab6-578c-81c8-5e16ea89c239", "text": "In a library sat a very wise and learned man. Exquisite Final Fantasy style animation "} +{"id": "7004661", "video_name": "31a39955-b4c1-59d9-aafc-0241a9b0bcaa", "text": "Human skeleton is walking with a laptop in the cemetery "} +{"id": "2005829", "video_name": "3d833095-eae9-5d49-97aa-489ec4972a3f", "text": "close caption, medieval battle, black and white, hyper realistic, night "} +{"id": "0004786", "video_name": "0f221017-4695-58f5-913d-7c7692790603", "text": "women in a futuristic city realistic animation "} +{"id": "6003961", "video_name": "2e2453e5-da0c-5272-a345-bb79d5706fda", "text": "moving colorful fractals in the shape of a bear on a black background "} +{"id": "2005249", "video_name": "ccf322b7-da90-5c61-8774-5ba2bee57884", "text": "angry gorilla dancing in 4k with gold teeth "} +{"id": "1003328", "video_name": "3d4545b6-f9b6-5fee-a7cf-d7527979989f", "text": "a butterfly cycling in the forest "} +{"id": "4004424", "video_name": "d2b583ae-9693-5347-81ad-608b86e81aa0", "text": "cinematic beautiful woman with long hair wind blowing at window looking to the sea on storm motion 2 fps 24 "} +{"id": "1005196", "video_name": "5f961e62-7a30-5158-88ba-2dd3200cb1b9", "text": "Some peoples discussing a matter in meeting room "} +{"id": "7003623", "video_name": "3f02f3c9-a367-5891-ac38-ae63f6b19ae4", "text": "Climate change floods cars under water in city "} +{"id": "8001688", "video_name": "5f2c42c6-8f33-58c8-a2dd-2446074f29e3", "text": "cave painting of prehistoric men hunting mammoth animated "} +{"id": "0006515", "video_name": "2ddeb649-4e0b-5f07-959a-f8561220a436", "text": "have him walking through foggy village "} +{"id": "6004459", "video_name": "f84d5f2d-6d0c-5ed2-8b1d-a880876fb705", "text": "lemon emerges out of the ground on a sunny day "} +{"id": "3006730", "video_name": "86b34c38-bb91-5442-bc60-5aab24ca9f34", "text": "We are in medeval china and a mother has given birth to a female, the baby is taken drowned "} +{"id": "0003736", "video_name": "428e7758-3950-5fbd-b040-91cc0327f488", "text": "An alien army. Huge tanks and fighter jets are lined up. "} +{"id": "1003618", "video_name": "42b42bc1-8036-5bdc-847b-280a629ff669", "text": "flock of neon jelly fishes in the deep "} +{"id": "4004377", "video_name": "534b8b46-3322-5620-ac15-291ec425d2be", "text": "Describe the coastal town, with its quaint streets lined with colorful cottages, as the sun sets behind the rolling waves of the sea, casting a warm, golden glow over the scene. "} +{"id": "2007032", "video_name": "a1f42a1a-f52b-510d-961d-4a168ee8bafd", "text": "disny styal cute little baby is so sleepy on the clouds and moon is watching her "} +{"id": "0004216", "video_name": "052d05f0-e5d0-5ba4-8dd6-52613f71ec44", "text": "half hummingbird, half rabbit, drinking out of a river with the Eiffel tower in the background "} +{"id": "6003753", "video_name": "644d7e31-d5fc-55a8-a9b2-fd8db03743b3", "text": "a young woman reading a book sitting under a willow tree by the river "} +{"id": "1006320", "video_name": "73a8a6aa-64ca-50b8-b278-e5c51fa14f39", "text": "alien looking at the camera from his ship in the background of a jungle "} +{"id": "0004951", "video_name": "12160338-fa53-507f-9817-07576b104621", "text": "Aeolus, god of wind landing face first "} +{"id": "3004665", "video_name": "78819d3f-3d6a-5290-90a9-934c75568f15", "text": "fireworks descend on city streets, gotham "} +{"id": "0003672", "video_name": "417c4553-c349-5f1f-be5c-4faa30917676", "text": "A warehouse, the knowledge of all walks of life in the warehouse is stored here, cartoon style, content light "} +{"id": "7003440", "video_name": "99106a2a-f9a5-50c1-bbad-53bff32166b4", "text": "The jungle bestows special gifts upon Timmy, Lily, and Polly, emphasizing the magic and gratitude. "} +{"id": "7002336", "video_name": "d1c8dad1-fbea-5953-b918-b9878d33b4f1", "text": "a text that say samael from a little far "} +{"id": "2003463", "video_name": "a9bc44d9-5f3c-5e79-9933-f7b580fd18e6", "text": "a random scene from any movie, in the artistic style of HR Giger, featuring Pepe the Frog marching with his frens "} +{"id": "1006800", "video_name": "7c807cd9-6328-5e7a-8c4b-2773f2179e19", "text": "girl blonde hair anime, 4k, black and white clothes, red shoes "} +{"id": "3005896", "video_name": "ae79fa4a-49ef-5c9b-b1ee-e040e653bf73", "text": "video of a man eatung hamburgers from a distance "} +{"id": "4003772", "video_name": "ab0c098c-c00d-5e04-b7bd-566aaeda7166", "text": "indian village streets with kids playing "} +{"id": "3006917", "video_name": "277d6993-4520-57cc-bb67-1b152df5cd54", "text": "full body workout templates for women "} +{"id": "5001788", "video_name": "abaf08d9-4d74-5919-b762-c6d053f14802", "text": "create a real image of glandular trichomes of papermint under a microscope realistic "} +{"id": "7002582", "video_name": "530f4ae4-d2fc-5932-8fc0-4744911bda7b", "text": "waves crashing, clouds whirling, moon beaming, ship moving on water "} +{"id": "2003376", "video_name": "94490d4a-37a5-532d-9765-38dc36a99a36", "text": "a girl running between rolling hills "} +{"id": "0003668", "video_name": "416a5440-a2ba-5f91-8da7-7a2e32255794", "text": "a man opening youtube on his pc "} +{"id": "5001376", "video_name": "7d65c356-8849-57de-b1b9-6c4dcbfbfdfc", "text": "woman with short wavy orange hair, smiling while walking forward, in the bush, autumn leaves falling, cinematic, natural lights, pastel tones "} +{"id": "7004802", "video_name": "0a67a96b-7473-5e2a-8120-d410f37abc07", "text": "large object falls into water, splash, underwater photography, dark water "} +{"id": "3005753", "video_name": "3c5d416d-cc57-5d8c-963c-bbb6a022cf8d", "text": "Uzbekistan,Harry Potter world style,day to night Timelapse hyperrealistic style. "} +{"id": "8002434", "video_name": "476d62bf-12e9-5dfc-a0c7-dd51422c7531", "text": "a bright colour of a magical powers in the forest while a girl looks at it. "} +{"id": "3004656", "video_name": "9890437c-caf1-5fc6-8457-689eae1a57e0", "text": "blue tardis time machine, time traveling through reality distortion "} +{"id": "1005058", "video_name": "5d778a8b-f4ab-5a6b-9d14-282108897203", "text": "The team is discussing work in the office. There are computers and whiteboards, and the atmosphere is lively,8K, vector illustration, hyper detailed "} +{"id": "1003979", "video_name": "4975ec9d-1788-57e9-8c89-be21d63559c2", "text": "War Message: You were good son (Font: MODERN) "} +{"id": "8001131", "video_name": "cb995126-c967-56ed-a1d2-58d6e3a24fed", "text": "Superman landing in the Imperial Valley "} +{"id": "0006986", "video_name": "36455af3-f963-556a-b9b7-e3d60dd558da", "text": "car and motorcycle chase Italian country road "} +{"id": "7004817", "video_name": "e9353ae3-3075-5436-b5c4-064c11038e78", "text": "slow motion, bring picture to live, camera zooming on the character "} +{"id": "4002957", "video_name": "63aa209e-38ff-5e4e-bed4-6cf38dfc711d", "text": "A woman is writing a planning document "} +{"id": "0006287", "video_name": "2a078ef1-1e0d-52ac-9db3-4afd09a7003d", "text": "Create an animated scene of a sunken ship covered in corals, surrounded by curious fish. "} +{"id": "4003835", "video_name": "8022141d-1966-5845-aaf1-31b7dd1cf483", "text": "A cat wearing Chinese Hanfu on the catwalk, highest quality, Chinese style "} +{"id": "2005816", "video_name": "591cb15a-25be-51a7-8cef-e8c8798b6054", "text": "portrait of a robot girl, enormous lips, transparent neck, porcelain face and head, robotic parts, cyberpunk, cable electric wires, hyperrealistic, fantasy, octane render, intricate, concept art, 8k, professional studio lighting Message: freelance69 (Font: MODERN) "} +{"id": "0005958", "video_name": "23e9816d-6f87-539d-8c59-b67000a5032f", "text": "trader man loss his parse and check his pocket at home animation "} +{"id": "6003904", "video_name": "0aeaae6b-c3e2-5fe0-af3a-63165aae5d16", "text": "Innovative glasses for blind individuals to perceive their surroundings by identifying objects "} +{"id": "3006151", "video_name": "2dfe25f2-5e9d-5a73-a7d8-6a8bfb838fd3", "text": "An elderly couple were very happy surrounded by their children and grandchildren. There were broken family photos on the ground. Exquisite Final Fantasy style animation "} +{"id": "5001618", "video_name": "35374ba8-5433-58f3-9d81-def89ee584ff", "text": "doll made with black strokes walking smiling with afro hair with white background and no colours "} +{"id": "7003763", "video_name": "c23ec25d-19e5-5e9b-9d8f-79076734a08c", "text": "Folk Music in the Early Western Zhou Dynasty "} +{"id": "4002272", "video_name": "a23463fe-a05f-5d32-8955-2e91d2743690", "text": "Generate a scene where a black Pug playfully interacts with a white Siamese cat with blue eyes, chasing each other in a playful manner "} +{"id": "1004689", "video_name": "571df43b-5b48-5ffa-ab59-d6ab6c8dd0e7", "text": "a futuristic Batmobile hovercraft with high tech weaponry flying through Gotham city "} +{"id": "0005533", "video_name": "1c665f2a-9cd9-53e4-98e0-cc5d1a9c2edf", "text": "a drawing of a boat in water sailing in heavy weather "} +{"id": "2003140", "video_name": "23c56eb5-d18d-58bb-acd0-9f9f3c59257f", "text": "The camera switches to a stream with crystal clear water and a variety of wildflowers and ferns growing along its banks. "} +{"id": "1006036", "video_name": "6edd6c2e-98ba-5648-8739-eeeb55fe1508", "text": "cartoon scene of a duck walking on grass, 1987 "} +{"id": "7004953", "video_name": "86aeeb26-49f3-598e-ae2f-2f9ae30d0702", "text": "the figure of an attractive woman and her entire body is made of fine China. White background, HD "} +{"id": "0003557", "video_name": "3f8f1051-89cb-545d-88da-ad27b11a775f", "text": "a cute white puppy playing with a blue butterfly "} +{"id": "1004731", "video_name": "57bcc3ba-61a3-53d2-9960-7badd6d54d2b", "text": "people drinking the water from spring and dieing. panoramic view "} +{"id": "8002301", "video_name": "69d4bfb6-4e23-5cb2-a9a4-ad798a70f562", "text": "the moon is a spinning disco ball with ravers dancing under it, desertpunk, ar 16:9 "} +{"id": "2003035", "video_name": "8d3d0458-405e-5f16-995d-8ca367403437", "text": "animated 3 sec tall trees jungle "} +{"id": "1003123", "video_name": "3981c127-4186-5243-99a2-5468b1f63d5f", "text": "a house in the woods, disney style, thunderstorm in the background "} +{"id": "4002700", "video_name": "60c21b58-ced0-5cbf-a237-9576754b88c0", "text": "a finger click on the label "} +{"id": "0005852", "video_name": "2259df00-6125-51ba-9edb-38541e5ef2fe", "text": "A dark figure overlooks the desert. A finger presses a button. In an instant, the desert turns into a glacier. "} +{"id": "2006167", "video_name": "0bb8a80c-40c2-510a-a283-dca16fd5ded1", "text": "burning palace of culture and science in warsaw moving background with red clouds cinema shot 4k resolution "} +{"id": "2006851", "video_name": "7f83ad4d-3199-5e59-95d5-1777c376033a", "text": "cookies alive, cookies with painted hands and feet, painted eyes and mouth, in the style of plasticine "} +{"id": "1006940", "video_name": "7efff7ae-0cab-5226-bd9f-0dcb300ebf06", "text": "craft flyng across golden futuristic city "} +{"id": "5001633", "video_name": "1c29e6af-d485-5e08-8515-c614729ef87a", "text": "people dancing and twirling in a neon city with a full and bright white moon in the sky. please do it in an 80s synthwave style "} +{"id": "0003806", "video_name": "43d83a35-a4cb-5ce1-ba3a-99fe25ac5297", "text": "Illustrate a globe made up of threads that extend from different regions. Each thread connects to a person\u2019s silhouette, representing their place of origin. Show these threads converging towards a central point, emphasizing our interconnectedness "} +{"id": "1006833", "video_name": "7cf5c7cc-d57c-507f-94a2-7cd7ca615f80", "text": "A vast desert landscape at sunset, with towering sand dunes casting long shadows. A figure, cloaked in vibrant fabrics, stands on the crest of a dune, facing the horizon. The winds sculpt the sand into intricate patterns, and the figure seems to be listening intently as if hearing secrets carried by the whispering desert winds. 3D, 4k, "} +{"id": "1003901", "video_name": "4800ad9e-0adc-5299-a49e-c6be88db374b", "text": "a megaphone logo in revolutionary style "} +{"id": "6004615", "video_name": "c8c2a78e-79cf-5f71-9cf3-6bde754485e5", "text": "a burning large medieval european castel "} +{"id": "3004880", "video_name": "49e74be7-9410-516c-81b3-9b4a4dc704a1", "text": "a boy and girl couple sheltered under a doorway of a building from the rain, camera pan left "} +{"id": "5001981", "video_name": "25dbf0ab-c685-50dd-bfcf-6c7e9be99f38", "text": "silhouette of a samurai in the rain on a foggy mountaintop with lightnight striking "} +{"id": "1004523", "video_name": "54081a6d-5e36-50fb-bf11-0427bcc24f36", "text": "a person training in the stock market "} +{"id": "4003527", "video_name": "20debc55-9d31-576c-972b-099a3e102278", "text": "nice and stylish, computer science guy Message: 1 Attachment "} +{"id": "0003189", "video_name": "38fcd2fe-a28b-566e-a870-7bd967e308bc", "text": "island of the colossal dolls eerie footage black and white stanley kubrick mystical "} +{"id": "8002475", "video_name": "acafb4be-9559-5f46-ac54-f3285b5c0eda", "text": "Porsche is driving through the desert in a storm in the rays of the setting sun and a cave storm is about to overtake him "} +{"id": "8001719", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "a super cute fluffy tabby kitten sitting on a piano explodes "} +{"id": "8001629", "video_name": "d3e1f7dc-8448-5feb-998c-c660cd12c14a", "text": "Rabbiy facial expressions as he faces obstacles.\n. in 4k 16:9 "} +{"id": "3004898", "video_name": "00cd8465-e721-583c-b507-1aa9ecf8772b", "text": "a dog chases after a red car "} +{"id": "3004640", "video_name": "8a7d875f-9a8c-504a-8d85-bc881713ee5d", "text": "One day, the devil brought a mirror to the sky to look at God and the angels. But when the demon approached the gate of heaven, the mirror suddenly shattered into countless pieces. "} +{"id": "3005879", "video_name": "06532f13-6ecb-58fc-afbc-e5b2a547db0c", "text": "animate 2d. One lovely girl in her room study in the late evening. Cat beside. Coffee on the table "} +{"id": "3006389", "video_name": "b174cd4c-94f4-56e3-a0e8-ac92b668e5f1", "text": "create a group of cats dancing video in kingdom palace "} +{"id": "1003911", "video_name": "4835aed3-ccea-57ec-acc8-9ec407f2ed79", "text": "Freedom fighter Netaji Shubhash chandra Bose "} +{"id": "3003031", "video_name": "0e6acbe9-8a64-50cd-8d8d-126b29ef8012", "text": "On a wide meadow, white sheep strolled leisurely, and shepherd dogs shuttled among the sheep. In the distance, rows of small wooden houses are scattered in an orderly manner, and smoke rises from the kitchen. This scene is full of natural beauty and tranquility. "} +{"id": "5001253", "video_name": "3f6f22fc-bced-5642-a0e7-4297a18be06b", "text": "you tube short video profile photo best qwaulity "} +{"id": "6003156", "video_name": "7e3757fc-b7ba-55ff-8a73-0ccbd2931c8d", "text": "a dino whos is eating meat "} +{"id": "3004888", "video_name": "3b4e6ea6-ea93-5739-b8ff-d4a9c8ebae8d", "text": "actor standing in heavy smoke, close up, backlit, neon colors, moody lighting, deep shadows, high definition, cinematic "} +{"id": "1004251", "video_name": "4eadc209-e6f0-5250-a9b7-458cfc24510e", "text": "the festive town square adorned with colorful Christmas lights and decorations. Cheerful laughter and distant carolers set a contrast to the impending darkness. "} +{"id": "2003431", "video_name": "6daba108-e162-57cf-a023-3557bd4f9346", "text": "close up of a crowded bustling Arabic medieval market place, "} +{"id": "6002771", "video_name": "7408957a-b652-589e-90b3-ed3d87fde0d1", "text": "spiderman fight iron man for 10 seconds "} +{"id": "4003065", "video_name": "8a92bd2e-bcaf-58a8-91e9-f6505330b3d3", "text": "a church congregation dancing from the holy spirit "} +{"id": "6002798", "video_name": "3a2a55b7-f758-54af-a890-886b3ffa1d94", "text": "A robot chatting in a futuristic lab. "} +{"id": "1005227", "video_name": "603a594b-dc36-5e65-b4a1-af843bd534a0", "text": "soil management for protecting our water resource "} +{"id": "8002942", "video_name": "129bde22-4c64-5ba4-983a-ade5f7ace98b", "text": "animate a clear video of a man sitting in an office interviewing a man with a desktop computer on his table, HD quality, well detailed "} +{"id": "0004654", "video_name": "0cbe226d-7bb5-5e30-b65f-fc3138f276e7", "text": "mark zuckerberg moody profile shot, low shot, greyscale "} +{"id": "2003235", "video_name": "60aa9857-5455-5f6a-af26-5a084b188843", "text": "astronaut walks through sunlit alien desert, surrealism, cyberpunk "} +{"id": "6003387", "video_name": "2e1c7bd7-2831-5121-b625-c223695718eb", "text": "lord kalki in aggressive and mighty form "} +{"id": "0005095", "video_name": "14a62521-4e24-5265-a6c8-884005559a09", "text": "Have you ever wondered what the world would be like if robots replaced human workers in every industry? "} +{"id": "4004813", "video_name": "bc20ce93-b042-5729-9af7-cd62484f61b7", "text": "black and white photography 1850 realistic of a scary old lady holding in her arms a horrible deformed 4 year old child resembling a monster. It must last 20 seconds. "} +{"id": "2007730", "video_name": "e8cfdd52-2f90-5241-bf76-f84750f39668", "text": "A white ceramic sculpture shaped like a dagger lies broken on the floor, pieces, fragments, top view. The handle was stuck into the ground and a rose blossomed from it., photo, cinematic, dark fantasy, conceptual art, wildlife photography "} +{"id": "3003094", "video_name": "a126975a-1268-55a8-b190-021f7972335f", "text": "zoom in smile and hair moving "} +{"id": "0005301", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "boy stand in villages Street 3d character boy "} +{"id": "8003326", "video_name": "5684e1c9-ca3a-5284-b73f-036d462d6314", "text": "wrestling match in a grocery store in the style of Quentin Tarantino "} +{"id": "8003405", "video_name": "8ef23335-9303-52d1-a9fb-3349babaa08c", "text": "Rain and storm over the Colosseum in Rome "} +{"id": "7002975", "video_name": "b24100cf-712c-5c96-b666-d2cfe4504992", "text": "scrolling through your instagram feed and then coming across this post "} +{"id": "2003302", "video_name": "b71b1bf4-f613-5f88-bc6c-e6e7e03530be", "text": "lightning man galloping over the mountain "} +{"id": "0006226", "video_name": "28b9e5d1-1d3f-5990-b38d-c3d0a5430c78", "text": "A Big majestic whale swimming in the deep ocean, bright rays coming from the surface, and has an aery and cold vibe. Empty sea all around you can feel the infinity and deepnes the ocean. Ultraleastic, detailed "} +{"id": "4002104", "video_name": "88add0e3-6405-5411-9391-2993a35145b4", "text": "at a park, a kid is playing with his basketball in a basketball court, he missed the ball "} +{"id": "1006113", "video_name": "70209374-1dc1-520a-bbd4-3e40b8ec5582", "text": "The fight of the world: dinosaurs with lions "} +{"id": "3004751", "video_name": "7f325531-c21d-5d47-ac74-95811653bf85", "text": "a camera on a car driving through a busy Moroccan street market "} +{"id": "6004539", "video_name": "8fed4bf2-ec2a-5c44-b019-2f3bff5273e5", "text": "red car driving in the city and breakdown on the road "} +{"id": "5001942", "video_name": "29cd4333-d8bd-5984-be52-b2fe0831731e", "text": "an animated duel between a knight and the grim reaper "} +{"id": "7004297", "video_name": "850b9ef1-210b-5d1b-8933-cd56f7181648", "text": "A magical mountain homestead sits between rolling hills, charming streets bathed in the soft glow of the setting sun, and a panda runs through the streets "} +{"id": "7004987", "video_name": "6cccf71e-4df9-5ee2-aa39-925933786623", "text": "A split in the road with a brick pathway leading to the right. "} +{"id": "1004243", "video_name": "4e80bcd3-d79f-5ced-b771-009fa97ef2f4", "text": "guy studying in the table taping on the keybord "} +{"id": "2007103", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "ruined middle eastern city in fog "} +{"id": "3004926", "video_name": "f2044a0e-8d00-5226-a164-40c843eb4633", "text": "postapocalyptic scene with art nouvea style, flying birds "} +{"id": "7002546", "video_name": "2a645748-b654-5034-82b7-ae12494ccf99", "text": "roaring lion, 16:9 HDR, Cinematic, Heavy Movements. "} +{"id": "1006434", "video_name": "75c71e62-a518-5d35-bf6d-f97329ca6cc5", "text": "Introduction to the story of the Magic Book cartoon "} +{"id": "2003174", "video_name": "4c3d781a-17f0-54f6-a631-e3a34669ddf9", "text": "a cute girl walk and talk "} +{"id": "6003674", "video_name": "7ab64608-b482-52ea-b2c1-a330718b51bb", "text": "an irridescent grayish satin fabric waving softly "} +{"id": "0006633", "video_name": "2ff52c4c-e6ed-5470-88be-be043852c890", "text": "Generate an atmospheric Gojo image surrounded by a barrier of jujutsu symbols, showcasing his protective abilities "} +{"id": "4002292", "video_name": "abf08bbc-ebfb-5122-a525-51b15e12711b", "text": "a girl wearing a blue dress with a flower crown and a blue scarf "} +{"id": "7003924", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "a fly landed on a jam jar "} +{"id": "7002361", "video_name": "500842ca-4f74-531d-80e8-c3f2fa4391d9", "text": "a forest full colored water and space Message : ABDOU MOHAMED "} +{"id": "8003307", "video_name": "801b1bff-d593-51a1-b477-7a702965b5ee", "text": "A group of jungle animals, led by the lion and the deer, bands together to protect their home from encroaching human hunters, "} +{"id": "1005820", "video_name": "6af8f86d-78f9-53e8-a10f-825dafab92ef", "text": "the words written using diamonds Message: Dogs (Font: MODERN) "} +{"id": "0003489", "video_name": "3e770527-e265-55af-bb43-eb2dcf7eb577", "text": "People going into a modern elevator "} +{"id": "1003633", "video_name": "42e9ecd0-acd6-5184-b491-68008a249734", "text": "Delta flight 1001 encounters UFOs en route to Sydney "} +{"id": "1003509", "video_name": "40d911e1-2675-55c4-beb3-b810d728fbe8", "text": "Ottoman Empire palace. hyper realistic. sinematic "} +{"id": "1004848", "video_name": "599b2590-d17d-5d0f-af93-494a630add11", "text": "beautiful anime woman sings for life walking gracefuly slowly along a beach "} +{"id": "1003412", "video_name": "3efcfde4-2e5a-5278-91e7-4b51191d3aa5", "text": "Raj, a young man, and Sima, a young woman, who lived in the same city, met each other on this special day "} +{"id": "2004616", "video_name": "cdd4f970-f874-5b4a-9e80-b98b4d466c98", "text": "image of a man trapped in a dungeon, pastel video art, 4k, 8k, "} +{"id": "8003551", "video_name": "b538dd36-fecd-5e3a-bc32-d833a15e1348", "text": "in cinematic style, a kaiju screaming in the middle of a destroyed city, 4k, blender "} +{"id": "6002202", "video_name": "1bf62352-1d88-5e01-a3db-2f67e0950053", "text": "halfway buried in the sand is a magical cylinder that has the ability to show the viewer the future "} +{"id": "5001772", "video_name": "749a8662-da02-544d-87e6-aec4aa55ae41", "text": "image for aircraft parking at stand "} +{"id": "2004695", "video_name": "6f61d6d3-2255-5352-aa27-7162b2cd2340", "text": "mother nature in human form, wearing plant clothing, ultra high definition "} +{"id": "8003514", "video_name": "8f69d652-17c4-57ec-b9e5-dc674edf1e8e", "text": "Time lapse of the constellations in a desert night sky "} +{"id": "7002940", "video_name": "d89199fb-0420-543c-8ae5-efedae6bae41", "text": "there lived many ants in a forest Message: jyxky (Font: MODERN) "} +{"id": "6004325", "video_name": "6c26765b-c666-5830-8d00-8f32e8648f98", "text": "two young sisters live in house "} +{"id": "4004483", "video_name": "2e9dfda9-9070-5ce5-b796-625fd7efcab0", "text": "Cute cartoon ghosts in a minimalist style in hats witches arranged a tea party, around the lights from candles "} +{"id": "2007026", "video_name": "585ded2c-4afc-53a8-969f-26e1937a8d45", "text": "a. Fairytale Cartoon: The children venturing into a dense forest, their faces filled with curiosity and wonder. "} +{"id": "6004563", "video_name": "bf9c7700-7ce3-5df1-a96e-ae2630c77ba3", "text": "a film with different types of perfumes instead of stills "} +{"id": "2004848", "video_name": "ec0dc652-86ed-5d68-b646-9994bd6965bc", "text": "Many dreamy bubbles are floating in the air "} +{"id": "5001612", "video_name": "89686410-412e-5e65-b298-3ebc6a603e18", "text": "humans working alongside robots. Dark overview, white robots. "} +{"id": "7002669", "video_name": "f744215e-5e65-5d9d-8995-f6e32226530f", "text": "There is a secret man behind the donut working on the computer and the donut changes shape from time to time. "} +{"id": "4003273", "video_name": "da4aedb2-46e1-5526-afd1-0f90a771e575", "text": "black hole sky with spaceship, event horizon shaped like a slope and flowing like a waterfall, high image quality "} +{"id": "3006125", "video_name": "1b44972d-ca15-5384-93fd-c2870a3a8c3d", "text": "Produce an embossed effect of a flower bouquet. The flowers should be rendered in high relief with intricate details, while the background should be sunken to create depth. The lighting should accentuate the embossed effect "} +{"id": "0006789", "video_name": "332b9619-6ce1-5577-9460-9e3eaaacf403", "text": "wide shot of a full size mirror hanging on a wall "} +{"id": "0004143", "video_name": "03fab710-5899-5e4f-9918-2cf44793ad94", "text": "Jack cards meeting the queen of spades, technicolour "} +{"id": "8002294", "video_name": "1d441dba-28a8-5d8d-95bf-cd9779deee67", "text": "Monky, and Two Cats, swinging together through the trees "} +{"id": "1004851", "video_name": "59a42c9a-e857-53dc-b971-fae4840be54b", "text": "Anime Fight With 1 Minute Length Video With Sound Effects "} +{"id": "7003586", "video_name": "f4a2e27e-49fb-5506-adeb-e99fc1ac967c", "text": "a female indian entrepreneur dressed in sharp business clothing, medium shot, infotech park in the background, fujifilm "} +{"id": "0004056", "video_name": "026e22a4-91ee-515c-96fb-f66419cec7d1", "text": "a sad man from the balcony looks at a joyful family who goes to the store "} +{"id": "7003673", "video_name": "4598347d-f233-5cf8-8736-624de548e61f", "text": "on Friday, waiting to get off work "} +{"id": "2003788", "video_name": "7c349e3c-e8bc-504b-9be3-78f2dddaca2b", "text": "space night sky with cloud and stars, Unreal Engine 5 "} +{"id": "0006863", "video_name": "346d6396-9204-5fb8-b2c6-1f704d023f1a", "text": "Rachel Mc Adams in 3D cartoon style, she is walking on the street besides Dubai Khalifa Tower, the time is evening and the tower lights are on, and the view of the video is along with Rachel Mc Adams. "} +{"id": "6003073", "video_name": "25c23168-6c7e-5766-99d4-7a16ed8cb7c0", "text": "style: People are conquering Everest. Snow storm "} +{"id": "1003029", "video_name": "379ad9dd-e636-56c6-8fc2-f5086b970af9", "text": "The morning sun gently peeks through the curtains, casting a warm glow on messy room. Stacks of comic books and scattered toys . Posters of superheroes adorn the walls, a mischeif boy waking up,aspect ratio 16:9 "} +{"id": "0003160", "video_name": "38487326-2f55-578e-b636-8f4b19516624", "text": "They searched for a cure, sacrificing everything. But as the virus mutated, their efforts dwindled. "} +{"id": "1004104", "video_name": "4bf6cab1-dbc9-5720-ae42-558b936f96db", "text": "surreal video of a distorted magic show, magician, black and white, vintage footage, black and white, grainy, 1920s "} +{"id": "8002671", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "In a dark corridor, on the right wall, the unclear light spots transform into a breathtaking depiction of stars in deep space, twinkling and swirling. "} +{"id": "2003799", "video_name": "3d0b8893-c414-58fa-8ba2-24d1af0945c9", "text": "a Forrest with swirls of golden sparkling ribbons floating through it. "} +{"id": "4004710", "video_name": "5e1a5a31-205b-5d27-893b-c568511092e3", "text": "small path in a jungle forest concept art as midjourney "} +{"id": "8002953", "video_name": "c9baf457-c3e5-5df2-bb2e-77a882e30089", "text": "boy walked in the field; SilenceSuzuka, draw the farmer uniform; boy illustration, walking in forest, extremely detailed cg, 4K wallpaper, horse boy, walking, ponytails, beautiful sunlight, flowers "} +{"id": "6003028", "video_name": "10184370-cae6-521b-9f8e-cff4d9e71575", "text": "create Village some people with moving "} +{"id": "0006368", "video_name": "2b4d4d84-9e9f-5cda-8018-f247d6ade562", "text": "Lily doing a graceful dive into the pool.Animated cartoon "} +{"id": "1005826", "video_name": "6b0a9c14-57fd-5c06-8517-f80f7ba043f3", "text": "Create a girl in pink skirt running in jungle with happily with green grass and colourfull butterfly around, sunny day "} +{"id": "0005323", "video_name": "18b38cef-44ce-54aa-8c74-1d8339948673", "text": "Bustling city night, street, rain, the girl slowly move forward "} +{"id": "1004650", "video_name": "566cc770-1b75-5d6c-be9a-d089ed202f30", "text": "As time goes by, please describe a flower that blooms slowly, forming a colorful picture together. "} +{"id": "0005462", "video_name": "1b3337d1-277c-519b-a4fe-43021bb38272", "text": "sky from which money is falling down "} +{"id": "3006944", "video_name": "ba189a0c-0b29-523c-9afa-3327df31064a", "text": "The creature in the picture smiles and moves his hand straight forward, his hair moves with every movement he makes, his eyes open, and his eyes are completely blue "} +{"id": "4004400", "video_name": "2bacada9-e8e3-58a5-9478-48fb5034771a", "text": "generate hanuman ji video with some flying shots through canyons, jungles and over water. start from age 5 to adulthood. "} +{"id": "4004883", "video_name": "27ad6224-fc17-5df2-b95b-5efbbf2e3bd5", "text": "a detective with trench coat stands at his 69 Dodge Charger and talks excitedly on the phone "} +{"id": "6004934", "video_name": "12d57947-b47d-5ade-ad17-68f5c2fc7b4c", "text": "A Voynich pansy flower as a Rorschach skull, superimposed image, illuminated projector image "} +{"id": "2003535", "video_name": "537283b5-5af8-5477-9c53-188a8aaaa4d0", "text": "market my work i do websites,domain registration ,banner printing ,logo creation whatsapp me on 074 278 1201 www.jasongraphix.co.za is my website "} +{"id": "3006602", "video_name": "f3ebc16e-e40a-5c58-8cb3-016e66f656d8", "text": "race between Lamborghini aventddor and bmw m5 "} +{"id": "6003683", "video_name": "9d8da7e2-84e8-581b-88c3-041de6d24cc4", "text": "Highlight the suspense and excitement as boys ramesh, neeraj, and sheru explore various corners of the indian village. 4k resolution with detailed 3d animation "} +{"id": "8003127", "video_name": "4201d2d6-ed3c-56fb-9669-58208bbd04e6", "text": "a huge wave splashes and destroing a wreck on a shore "} +{"id": "1005827", "video_name": "6b0adec9-a9a9-567c-941e-58058b575819", "text": "Immerse yourself in a realm where calmness and awakening intertwine, as the protagonist delves into the depths of her soul through the transformative power of meditation. Witness the symphony of symmetry and light hues as they effortlessly dance around her, creating a visual tapestry that resonates serenity. "} +{"id": "0004164", "video_name": "045b3d90-7e4b-54ed-a8ca-058b4961c8ba", "text": "a green rabbit playing the guitar "} +{"id": "8003592", "video_name": "d620a3e9-7863-5487-a735-a61ee1b1971c", "text": "Bashkirs roll tires in a car repair shop back and forth and sleep "} +{"id": "0005377", "video_name": "19be31e9-75a5-52a2-b9b7-ef39d13fa23f", "text": "walter white rolling a stone up a hill "} +{"id": "6003262", "video_name": "2c9ee7a4-fb4a-5768-b445-776b3e282909", "text": "beautiful place in paris france on low level "} +{"id": "3004017", "video_name": "fd95fdb6-d065-534f-8861-723d4346caf3", "text": "a dog was eaten by a cat "} +{"id": "8003834", "video_name": "97c55c64-e8b3-5a35-a9e8-cfcbbe3b6c22", "text": "A teddy bear and his girlfriend walking through the square "} +{"id": "8003907", "video_name": "607b7c07-9935-5c9a-8511-3718cdfd9ded", "text": "clothings for girls Message: cohina (Font: MODERN) "} +{"id": "8002396", "video_name": "ade3961f-5707-5217-b9d8-c027b6e57e0f", "text": "(by Ching Yeh:1.2), Printmaking, suspended mountaintop village, even, spotlight, rim light, 3d model, octane render, highly detailed, volumetric, dramatic lighting (Golden hour:1.2), street art, (ultra detailed, masterpiece, best quality, intricate details:1.4) "} +{"id": "8001936", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "vintage, girl, book, reading, city 1970s "} +{"id": "6003078", "video_name": "daec51fd-70a7-5fff-8980-45f19fecd76b", "text": "A train with a Bitcoin logo running on the tracks "} +{"id": "8002601", "video_name": "f194f2bf-0d9f-5328-83bb-344626b070ee", "text": "a beautiful lavander sky look at a dream, and there shine "} +{"id": "1003622", "video_name": "42bf0110-0449-5765-80cf-55a567259102", "text": "skyline night camera move water city "} +{"id": "6002465", "video_name": "8a5974aa-1932-5878-8d29-fb08aac51354", "text": "The activities of the Heartful Club extend beyond sports into five areas: culture, nurturing, social welfare, international cooperation, and organizational activities. Through these activities, we contribute to society and deepen the soccer culture. Thus, based on the philosophy of the Real Madrid Foundation, we will update the philosophy of the Urawa Reds Heartful Club to make it more deeply rooted in society. "} +{"id": "2003717", "video_name": "fb9050e5-7a8e-5563-bbf5-474013587477", "text": "1 girl appears in a neon light alleway. dynamic moement, rainy day. epic movie poster, concept art, trending on artstation, symmetric, rule of thirds, 8k, photoreal, octane render, Storybook illustration dolly zoom out. "} +{"id": "2003384", "video_name": "76a214bc-be96-54d8-b691-2c85bd4da707", "text": "a large crowd of people inside an abandoned warehouse sprinting towards the camera "} +{"id": "8001274", "video_name": "d82329c8-cb6b-57fc-b20b-6e0b405ec57f", "text": "UFO saucer crashing in the dessert "} +{"id": "8002966", "video_name": "cbeab040-3f90-599a-b618-0979a714314d", "text": "create a t rex dinosaur skipping a forest wearing a white t shirt "} +{"id": "0006850", "video_name": "342f6da5-f130-530a-84c7-6bf3349225b9", "text": "chinese water dragon turning into a koy carp "} +{"id": "2004143", "video_name": "324ef747-7b00-5082-8b3a-081783427cec", "text": "a place between blue sky with clouds and sea "} +{"id": "6002844", "video_name": "dade46cd-3f7f-5fde-aa44-2b9d74fa0f8c", "text": "a young man sitting at the airport looking at the planes from window "} +{"id": "3003722", "video_name": "605eebf0-28d9-5b5d-bb08-3a029f2b89fd", "text": "Two friends are walking in the forest disney style "} +{"id": "1003410", "video_name": "3ef1876e-a8a6-5dc4-be10-ebf1d0f8ed8c", "text": "hyperrealistic, 30 year old wakes up from dream in room with music equipment and posters "} +{"id": "4002389", "video_name": "1a383bfc-7d07-5263-9f38-b48de709bbc3", "text": "singer on a bar playing alone, raining outside, wood, cold, grey "} +{"id": "2006870", "video_name": "4c676c66-cf13-5258-8f94-711c928c1199", "text": "Gandalf playing chess with Saruman at the peak of a snowy mountain "} +{"id": "6004543", "video_name": "f171ca32-b1cb-5644-bf1b-df50081d5f23", "text": "anime girl in style of studio ghibli and greg rutkowski with blue hair blowing, anime cityscape background "} +{"id": "6003852", "video_name": "b39f4b0e-50c3-50b1-9d9c-bb9fdbf531ca", "text": "Describe the main themes and lessons derived from the story of Goddess Kushmanda."} +{"id": "3005208", "video_name": "d1d66ee9-8bfd-5c15-b6a5-1eb75497df5a", "text": "A paper airplane turns into coal on a black background "} +{"id": "2004920", "video_name": "c5b681f5-2a3b-5ddd-bfe8-2b37b5b444c4", "text": "prompt holy supper, but all the disciples are wearing a black shirt, with UNI written in orange in the center of the shirt "} +{"id": "8003305", "video_name": "c3125b20-9b34-5551-a905-d439e76fd902", "text": "scarlett johansson as blackwidow in action pose Infant fly "} +{"id": "8003774", "video_name": "08f8dfd2-8e4b-5d74-ac84-3717162b821c", "text": "a middle eastern man wearing biblical period robes walking on a dusty road away from the camera "} +{"id": "4003037", "video_name": "97db5578-987b-5233-924d-0c73537e2dde", "text": "pink clouds fly across the blue sky and change their shape. Golden treble clefs and silver hearts fly like birds among the clouds. dynamic video. The clouds are flying fast "} +{"id": "7002899", "video_name": "3507190d-ae79-56f7-8af0-c6d1f3763b78", "text": "close up of Michael Jackson taking off his mask "} +{"id": "0005476", "video_name": "1b6d922c-20a9-5822-9b38-adb125fbbc37", "text": "1952, norwegian Air Force jets, conducting maneuvers over Spitzbergen, cinematic shot "} +{"id": "6002462", "video_name": "2fcf4982-93e4-56e0-9672-2f3b9823073a", "text": "deep sea creatures in a backyard swimming pool "} +{"id": "6004724", "video_name": "c16a5e5e-db30-5ce7-b291-701c713797dc", "text": "parents and her daughter play the a small cat "} +{"id": "7003789", "video_name": "51192c39-36d1-58aa-8d45-12cf7f6ac601", "text": "imitate Leonardo.Ai way to make a video about goodnight story to baby, In the baby sleep telling story, at a colorful coral thicket in the deep sea, where various corals emit a soft glow. In the midst of the coral thicket, you meet a little squid named Cheechee. Cheechee likes to hide among the corals, but now she is tired too. inn the cute way. "} +{"id": "3003505", "video_name": "2b429ade-3ab5-5180-9e8c-226e81ea8dc0", "text": ": description of the video you want to create parameter "} +{"id": "2004921", "video_name": "1323a71c-24f9-5089-a08d-5f02dcd55fe2", "text": "artistic painting on a ceramic plate with fragments of garnets "} +{"id": "2005358", "video_name": "f967bf13-84b9-518b-82a0-c9199e1457e8", "text": "a red high heeled shoe floating in the middle of swimming pool water, seen from underneath the water "} +{"id": "0005204", "video_name": "1691c47b-07e8-57d7-819e-ec5579285cbc", "text": "A simple but cozy village house with smoke curling from the chimney. "} +{"id": "5001206", "video_name": "9abc6d94-a2cb-5083-8390-91008e143fca", "text": "palimpsest Paris architecture, morphology, 3d depth mapping "} +{"id": "4002524", "video_name": "71ee82c7-e9e6-5c44-84da-2f1f1523391b", "text": "sport car driving fast on the highway among trucks. "} +{"id": "4004571", "video_name": "1fd941aa-5119-52c9-b8bb-adaf32f941f3", "text": "A dark room with a single computer screen illuminating the face of Winnie, a skilled member of the hacking clan Anonymous. Dramatic music plays softly in the background "} +{"id": "2007606", "video_name": "fade95d0-26eb-5012-80f1-4f73072ab5a0", "text": "Wonder woman on top of the pyramid. Starry night. 16:9 "} +{"id": "4002828", "video_name": "3ef09af1-b831-542a-9ea7-dcd15dab451e", "text": "realistic photo, two sexy alien women dancing in a galaxy nightclub "} +{"id": "1004568", "video_name": "54e17365-8f0e-5b3d-89c8-4275259d3414", "text": "video where a white Camry rides from the number m001pp95 "} +{"id": "8003685", "video_name": "83963bcd-2d3c-5dfa-b498-c54b27d21730", "text": "a sad man with gift in his hand sitting on a brench rainy wether,dark "} +{"id": "4002097", "video_name": "b2334e0b-4c37-5323-9b4a-545df45d9afc", "text": "light background, with free gifts inside a Christmas box "} +{"id": "0003870", "video_name": "44f03bb3-2181-57ca-848d-50ba14f539d7", "text": "making a mistake while drawing a white button up shirt, ink on canvas "} +{"id": "2003859", "video_name": "310127f6-3c46-596a-879d-36d71dd63d76", "text": "water riwer lake mirror attachmant Message: water (Font: MODERN) "} +{"id": "0004370", "video_name": "07e6fc24-9704-516d-a318-0f745260bea8", "text": "apple turning to an orange realistic "} +{"id": "7003892", "video_name": "bc4bde02-eb6b-523f-891c-457c0237a61a", "text": "a man shouting anime style close up short 8k hd "} +{"id": "8003169", "video_name": "ecc37252-2c33-53f5-b131-9ea5fbaac489", "text": "french goverment to the united states "} +{"id": "3003338", "video_name": "3613eb35-3e3a-56c5-9052-9acad228b956", "text": "exhausted man 20s looking up at the rain against blurred neon background "} +{"id": "6003491", "video_name": "99749c2a-9686-57c4-af48-ab933709c862", "text": "realistic cinematic imax movie scene HD high quality pan frame shot bullets flying through the air fast and seeing the vibrations of the sounds make motions as they pass by 3d "} +{"id": "8002325", "video_name": "654c41fc-c1c7-50bc-a869-3c71cdbb4e93", "text": "A girl in white dress is on a bench in a park. She is lost in the memories of her lover. "} +{"id": "1003247", "video_name": "3bc9cd38-2496-5f48-a6b3-17cd0b3635ac", "text": "make a long video , fling bee, bird, jungle river, flower "} +{"id": "6003978", "video_name": "18522684-2121-5ad4-bc56-ab8d90d2eed5", "text": "image that fosters a positive perception of the environmentally friendly "} +{"id": "1006178", "video_name": "710f8e4c-776c-59e1-9939-96586968f4b4", "text": "animate machine parts and zoom in to close up, cinematic lighting "} +{"id": "2003486", "video_name": "65341573-dbe2-5b54-9158-d570d29df1ca", "text": "a man wearing winter clothes enjoying winter "} +{"id": "4003824", "video_name": "49230468-4392-5042-8aa0-d1d1ed1097d1", "text": "a wolf being friend with a soldier "} +{"id": "1005597", "video_name": "66f50bb0-fe7d-5e53-87c2-b48ea1893391", "text": "french flag on a summer day "} +{"id": "4003081", "video_name": "6849b6b2-ba4d-5f47-aafc-3b4eef5b0eaf", "text": "bahubali walking through a tinker bell fairy house "} +{"id": "7002325", "video_name": "43a59a7a-da2e-5bb8-b5b2-ee15f40f544b", "text": "a boy standing on top of the mountain and looking the sky "} +{"id": "3006509", "video_name": "d60c2f33-c800-551c-a366-beaf16ad352d", "text": "blind King Dhritarashtra, seated on king chair staya narrating battle situation "} +{"id": "1004310", "video_name": "4fab9d05-3f3e-590c-84bb-285f9925f0b5", "text": "Create an animated scene of a 13 years old boy flying around the globe with magical stars around him. "} +{"id": "4002780", "video_name": "5ee0fdf4-00d9-5cac-9535-c6ae8ea256e5", "text": "rainy main street at night, neon signs line roads, empty town, reflections on pavement "} +{"id": "2006468", "video_name": "18754331-5691-5473-bd00-1a1311c177a7", "text": "Speedy car chase between fighters in space "} +{"id": "4003052", "video_name": "c78e8fcc-1718-5f4a-bea3-12c23719e6f2", "text": "a anime girl surving from aliens, cute, anime "} +{"id": "7003970", "video_name": "316dd818-0a7e-5a8f-bea0-02ea6e253ce0", "text": "a bunch of cats Message: PIKA PIKA (Font: MODERN) "} +{"id": "1003589", "video_name": "42070572-bb7c-5094-84ac-f77dd1c4d861", "text": "pedestrian, with green background, top view, vector illustration "} +{"id": "6004495", "video_name": "dd6241fc-f612-5b09-8eb2-3e97389ee689", "text": "messi scoring the last goal of his career in watercolor style "} +{"id": "8001721", "video_name": "3e3845a3-c8dd-5a2d-9a78-403f08f887bb", "text": "twin towers being reconstructed timelapse, each second is each moment of reconstruction, video should have by end twin towers complete like they looked in 1973 "} +{"id": "2003798", "video_name": "f9c919e4-038a-5399-8638-2da1ed0c8ff6", "text": "A spider web of fiber optic threads, twinkling with transmitted data. "} +{"id": "1003349", "video_name": "3db0e6b9-f8da-58b5-ba1e-195322041d55", "text": "woman in flowing red dress jumping, indoor scifi environment, global illumination "} +{"id": "2004995", "video_name": "cc8feee8-b6a9-557e-a4ac-60676a29af15", "text": "lions are top predators with a complex social structure. Living in groups led by a dominant male "} +{"id": "2007350", "video_name": "f40d97bb-6699-50d9-9599-3af3439ef68f", "text": "dystopian world with floating space and aliens In style of basquiat "} +{"id": "8001014", "video_name": "58150d39-ee6d-51fc-91c3-42e4ffc78e1c", "text": "a beautiful fairy dances, angels sit in a circle and frogs play the flute, locusts play the violin "} +{"id": "0003373", "video_name": "3c72302e-1c3b-5226-92ae-cb11406156ad", "text": "move zomm in zoom out , waking flames "} +{"id": "7004394", "video_name": "f55935c9-f492-5848-af1a-11acf3b8028e", "text": "old man became young in forest "} +{"id": "3003805", "video_name": "580bd135-0d7d-5717-afc9-ade01e6dcfbd", "text": "half dark earth, half dark space full of very small white stars "} +{"id": "2005799", "video_name": "b07d07b2-e860-56d9-a910-69032fa2dfd5", "text": "a movie scene from the movie debbie does dallas "} +{"id": "3006002", "video_name": "41f53df7-e1ba-51e9-ae20-30d82f6f9ab8", "text": "photo realistic picture of the actor \u201cCommon\u201d sitting at a table eating a Subway Meatball sandwich with sauce on his face. "} +{"id": "2006383", "video_name": "7bf7a336-5463-5c62-b976-b89a05833982", "text": "sunlight dancing on the bottom of autumn leaves of a tree overhanging a pond reflecting the sunlight "} +{"id": "7003632", "video_name": "2d507d98-ccde-54e9-90ac-a90932113ea7", "text": "Kim Jong un shaking hands with Elon musk "} +{"id": "6003488", "video_name": "f05d2705-9eb4-5eb2-bdeb-7e2b2bf9d5cb", "text": "a ancient greek nymph dancing by the creek. epic cinematic atmospere. high quality. intricate detail "} +{"id": "1004737", "video_name": "57c6541b-9cdc-5983-98cc-7efd25c1d31b", "text": "a little blonde girl helping old woman carrying basket "} +{"id": "0006069", "video_name": "26147cc4-9fbb-588c-ae11-de3d31bca4e5", "text": "Make a logo with the initials INF in the center "} +{"id": "1006131", "video_name": "70563649-cca3-57ca-8138-9a13fa2e901c", "text": "dancing wood mannequin on electronic music in front of a green screen, hyper realistic "} +{"id": "3005637", "video_name": "cae34b3e-4986-565e-a771-dfd4ba63d5ef", "text": "Discover the emotional rollercoaster as the villagers come to terms with their altered perception. "} +{"id": "1004732", "video_name": "57bd753e-6894-597d-a58f-44d18792a3c5", "text": "The rain intensifies, forming a downpour that lashes against the sprout. The wind whips violently, bending the sprout but not breaking it. Consider including subtle details like raindrops clinging to the plant or birds returning to a calmer sky. "} +{"id": "0006657", "video_name": "3087fc91-b60b-5ec1-ac1c-d98ab0af5324", "text": "a corner of a dark street background "} +{"id": "2004097", "video_name": "a0cf80ad-d1fd-5a81-8c25-69c35b71c06e", "text": "a freighter and luxury ship meet in the sea Message: 1 Attachment "} +{"id": "2004628", "video_name": "7dbbfa86-5130-5c8a-b3e4-59eff5854ef6", "text": "A fine morning with two ants, Ben and Sen, coming out of their homes, excited and ready to play "} +{"id": "3006552", "video_name": "3c93fdac-7ab7-51b2-b922-fa553b3ead48", "text": "a girl who talking with her friends in morning "} +{"id": "8001574", "video_name": "15e8341a-8fe4-52ca-ab0e-e46083335ad9", "text": "A powerful image showing villagers coming together, actively working to overcome the crisis. "} +{"id": "4002534", "video_name": "abf7f39d-c9b1-5c1e-8c2d-5d2218529291", "text": "create the animation as described in picture Message: 1 Attachment "} +{"id": "8001767", "video_name": "f15e9838-ffea-5be7-8c65-9b96a9678e03", "text": "a man with a beard standing on a pole "} +{"id": "1006369", "video_name": "749b25a1-01de-58f9-b5bd-2a09e18e1271", "text": "cat lounging indifferently on a nearby table "} +{"id": "2007027", "video_name": "77a0dc02-f283-51e7-b408-a5257ea0ace1", "text": "Produce a video that explores the grandeur of historical architecture and landmarks from around the globe "} +{"id": "2006734", "video_name": "8e72510c-b481-5dfd-a193-26e2957f0d8d", "text": "girl face is loking around the ligt is glowing Message: 1 Attachment "} +{"id": "8002925", "video_name": "08f929b8-5d8e-5681-a5d8-40c82bfb4ec7", "text": "An animated forest background as bread bakes. "} +{"id": "1004079", "video_name": "4b95c59c-12c7-57a8-b0dc-ddb2aed8a6c0", "text": "a group of friends partying on a beach pub. At the distance, the sun is setting down and an airplane crosses the sky "} +{"id": "7003387", "video_name": "70b50a75-9b0f-50e4-9edb-b74342fbb37c", "text": "I would like the Goatman in the dark forest standing tall and mighty. "} +{"id": "1005000", "video_name": "5c7023d3-d0aa-518b-a50f-cfc5a38b0a1e", "text": "a family sitting around a holiday dinner table "} +{"id": "0005511", "video_name": "1c103343-e8c5-5147-bd90-b8a90f085408", "text": "high concept art a cube made of plasma flickers above a beautifully shot concrete man casting bright blue light on his body "} +{"id": "6003068", "video_name": "7779105a-c2c1-5332-86c4-aa31578e0d49", "text": "ordinary can be transformed into something truly extraordinary. "} +{"id": "2004666", "video_name": "bdc980c5-407b-57ad-834f-ca20ba2197b9", "text": "maxima the gladiator defeating opponent after opponent with his sword and shield. "} +{"id": "7004008", "video_name": "ed3fbc21-2f3a-5864-bd3e-98da8c707edf", "text": "a hand holding a voucher card, nice and sunny atmosphere "} +{"id": "5001835", "video_name": "36359b58-c9d0-5bd6-9fe3-fda82e86d741", "text": "scientist and researchers searching immortality, cinematic, cinematic shot, High definition, HD, high quality, 8K. "} +{"id": "8003426", "video_name": "7db86929-60e3-5877-9961-e0d16f8a47b2", "text": "small waterfall and birds flying 4k "} +{"id": "2003678", "video_name": "39fe4aa6-fce3-5d1e-b56c-37b51da8dfde", "text": "Vehicle moving ahead with LED lights flashing "} +{"id": "2007888", "video_name": "f2219616-6653-5ff7-86e9-a00d7a33fe61", "text": "a black box with a black lid and a purple cartoon cat with glasses "} +{"id": "6002106", "video_name": "b88a0ced-2505-5c1c-9cfa-c142eb660f9a", "text": "in first person, a woman waking up in the middle of a forest with the sunny day looking at her hands "} +{"id": "2005609", "video_name": "03ad3747-7931-5463-85fe-c1261b67712d", "text": "A glowing purple creature with purple eyes approaching from the darkness "} +{"id": "0006065", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "Kanye West eating an ice lolly in a train station "} +{"id": "8001442", "video_name": "a1413933-7576-5ec2-8ce5-08febeea3c3c", "text": "small bridge in a dark pine forest "} +{"id": "7003071", "video_name": "abd586a4-14a0-5a62-8e33-dc9c8e09ac35", "text": "Style: Mystical, detailed.\n\nPose: Meditative, one eye open.\n\nSetting: Cosmic Mandala, swirling galaxies.\n\nDetails: Trishul held against shoulder, crescent moon in hair, third eye open.\n\nOptional: Ganga River flowing, Nandi by his side. "} +{"id": "1006764", "video_name": "7bcb9535-4d22-5270-a2e9-debebbe949f8", "text": "Visualize a person standing at a literal crossroads, where two diverging paths stretch out before them. "} +{"id": "4003335", "video_name": "87cbe181-8a10-5c61-91a0-43a0fa6dbf6b", "text": "Background ambiance: Futuristic city sounds, low hum of flying capsules, distant chatter of people "} +{"id": "4004054", "video_name": "bd198bc5-f019-5f54-afb8-2d3e0aee8cd2", "text": "video of a man wearing a jetpack flying across London "} +{"id": "3003114", "video_name": "dd82497c-b1b3-5a4a-aaec-d7192f38463f", "text": "In a vintage Mexican town, ten kids play marbles having fun. Draw in a cartoonish style 35mm 16:9 "} +{"id": "1004871", "video_name": "59f7bc82-811a-58a0-a48c-006669da77e6", "text": "A tank proceeding through a field "} +{"id": "5001101", "video_name": "d590b4e9-092d-5659-8a4f-8bec7f34efe3", "text": "ghosts pouring through a dimensional doorway into a blackened room "} +{"id": "5001542", "video_name": "b090754e-70d3-5440-b3b7-c834ad450463", "text": "A giant Bitcoin logo floats in a futuristic sky, clouds drift by, the sun shines in the distance, "} +{"id": "2006400", "video_name": "dcf4a421-d9d8-59fa-9d2c-8397581e152d", "text": "The student holding a jar of water. "} +{"id": "6003277", "video_name": "40c2aab9-3ec1-5dd2-aa1b-918db1280a2c", "text": "Beautiful Cinematic illustration of a laboratory exploding "} +{"id": "7004438", "video_name": "91c1e4d4-8c45-5cde-83d3-d5e59dda9621", "text": "Elon Musk Stuck in Money Trap "} +{"id": "8003100", "video_name": "92f95fb6-8225-5101-8bc2-2eb315576d44", "text": "a woman with ancient roman dress, long wavy long hair walk in seaside "} +{"id": "3005836", "video_name": "fdb1ca70-748f-5842-936f-fbdfdfe06089", "text": "a persian cat play a car toy o top of sofa "} +{"id": "6003839", "video_name": "a78de378-dbd0-5ead-b81b-a45fe2cfaf7a", "text": "the fall of the house of usher "} +{"id": "8002843", "video_name": "2a9426cc-9e78-50b3-85e6-00f821a4b548", "text": "Swans flying around a ballerina on a lake lit by blue moonlight "} +{"id": "2007353", "video_name": "581e38da-330d-50a2-ba21-5cf8cae99d56", "text": "1910s film vintage look, wolf hunting a fox in desert, stormy dark clouds, old photo, real photo, sepia photo, historical photo. dark scene. "} +{"id": "7003670", "video_name": "50c91baa-a858-5d62-8c72-95f9e840b5d3", "text": "fortnite victory royale on the og map "} +{"id": "0004018", "video_name": "019bdfbb-b34b-5458-a4d5-f7da89d0b989", "text": "whirling hair, static painting, smiling face "} +{"id": "7004226", "video_name": "bf544f29-6f74-5663-acfb-d3cce2c295b4", "text": "giant travis scott at night time in las vegas with flashing lights wide shot from below "} +{"id": "8002523", "video_name": "75f19d63-38f0-5fa2-8506-247955fba4d1", "text": "Pan shot ,Speech state Message: 1 Attachment "} +{"id": "6004787", "video_name": "b7d6414a-42ae-5987-9dd1-2f41efd30c1e", "text": "female voice in Tamil .hi Amma puthu phone number save paniko. "} +{"id": "4003890", "video_name": "f161e547-7681-5784-acdb-954c3926de77", "text": "phantoms fill the skies around you "} +{"id": "6004692", "video_name": "bd725ebe-c6a4-5938-ac36-c2158eb44fb8", "text": "armenian poet Paruyr Sevak portrait hd resolution "} +{"id": "3005400", "video_name": "502fd490-8737-514d-af31-9b972549c8e7", "text": "Create an anime character with teleportation abilities, who goes on an adventure to find his missing brother in a magical world. "} +{"id": "0006598", "video_name": "2f52ba42-6fe4-5566-b00a-bfb32b554157", "text": "child dressed as a air hostess flying through space and universe "} +{"id": "2003727", "video_name": "8b0affbb-771e-58d9-a22c-a13cfd6e844c", "text": "icardi, hapyy so much for goal. realistic "} +{"id": "7002922", "video_name": "25473f34-b503-5ebd-8216-0bdbd644f043", "text": "birds nest with egss in a tree, camera rotate "} +{"id": "8001179", "video_name": "966a9021-71c6-5a2e-a886-ab2c886af7d9", "text": "animate the moon i sent above "} +{"id": "4004323", "video_name": "f803cfee-e1ea-5db5-b7d5-1c94d5deea07", "text": "rotating View of a street scene under hard raining "} +{"id": "1005640", "video_name": "67b5386c-d722-5db2-b4c8-4621d9d542d7", "text": "person wearing mixed reality headset looking at an alien and jumping bax "} +{"id": "6004238", "video_name": "abc2d9e5-0f61-55eb-8590-708d0701b49b", "text": "I want you to put that polo shirt on Donald trump. Message: 1 Attachment "} +{"id": "1004879", "video_name": "5a2b5fb9-212e-5587-8939-efe6832d16e4", "text": "background with beautiful exotic metallic flowers in feminine colors, simple and beautiful, girly, dark background "} +{"id": "2005705", "video_name": "9c92b72a-df0d-58ff-97f4-41f37a4d6f44", "text": "Holographic Performance: Generate a description of a music performance where holographic visuals synchronize with the beat, featuring futuristic landscapes and dynamic geometric shapes. "} +{"id": "2007517", "video_name": "0086c802-5e52-5fda-9bcf-bcec6ba4b8cb", "text": "cookie monster as a Jawa from star wars juggling exploding coconuts on Tatooine, motion 4, high quality, 8K "} +{"id": "1005990", "video_name": "6e197ded-3fb9-59b6-90a3-ad0907bcd726", "text": "group of college sports fans jump up and down cheer enthusiastic happy "} +{"id": "3003682", "video_name": "f007bf8b-8f6d-539b-acb9-25da00c80f9d", "text": "a man playing cricket with 2 boys "} +{"id": "8002778", "video_name": "3748a0ab-501d-5b71-96bf-7cc6b578216c", "text": "a massive riot in front of a industrial complex "} +{"id": "3003146", "video_name": "4c9687b5-9648-5a06-9ba4-dce6fa0de8ca", "text": "blue sea squid with neon glow in the background, seabed on land, plant corals around "} +{"id": "6003841", "video_name": "464e2b68-123e-5e7b-871b-e04d2c1aab4f", "text": "A student says something to a teacher in the classroom "} +{"id": "1005109", "video_name": "5e39ed14-de11-542c-b795-77484ec10242", "text": "a large group of people all from different times sitting in one car "} +{"id": "0006796", "video_name": "3345b3e0-8c83-5729-a8ba-33a1d4e052b6", "text": "Mr. Alex is shown browsing through his computer at his grocery store billing desk, discovering the TikMe Loyalty Program. His eyes light up as he learns about its innovative features. "} +{"id": "7004436", "video_name": "4b853bf8-432f-5a3f-8701-1a027d0fcd41", "text": "a person won motocross championship, photoralistic "} +{"id": "2007960", "video_name": "334d6d3f-8ef4-5eba-b08b-abbc68bae615", "text": "portret of snowman and oirtret of snowwoman on the wall "} +{"id": "7002924", "video_name": "2fe3c2a6-68d6-5259-a2d4-2ff6640178c7", "text": "Beautiful woman walking among the stars, clouds floating in the sky in the background, bright smoke rising, armor shining, golden light expanding from her head, hair flowing in the wind: 1 Attachments "} +{"id": "6003151", "video_name": "6333f076-4f12-5405-b18d-86258b9ea061", "text": "two hands reaching out fir each other "} +{"id": "7002024", "video_name": "edcd3286-2587-582f-8d9a-23449dc0f708", "text": "space car flying around stars and planets with turbo mark "} +{"id": "2005817", "video_name": "ef344d6f-00f0-57c2-ad16-622555731faa", "text": "Video of Harry Potter flying over the Atomium in Belgium "} +{"id": "2005672", "video_name": "77f45811-4710-5f65-ba4d-2cd18f9e3639", "text": "Shrek violently transforming into a werewolf and howling at the moon, panning camera effect "} +{"id": "5001257", "video_name": "603d5eff-ac97-510d-84ab-063ac17268c5", "text": "a rapper walking on the streets, moving his hands "} +{"id": "0004268", "video_name": "06280e9b-141f-5363-a022-93bbcdf8f7d3", "text": "It shows the arrest of Africans and their subjugation by British soldiers in the 17th century, with expressions of anguish on their faces and gestures of resistance. It highlights the chains and shackles that soldiers place on Africans as they prepare them to be taken as slaves. "} +{"id": "6002085", "video_name": "29ccf7a9-c259-5c16-a9fb-ebb14418b590", "text": "aircraft moving from left to right "} +{"id": "7002910", "video_name": "84ebd985-fd2c-5211-b17b-23e055f9d01d", "text": "river floating near two pink houses "} +{"id": "2005985", "video_name": "317c535d-56dc-5733-b9f3-14ca56509c6b", "text": "surgeons are doing surgery with next generation of surgical navigation system "} +{"id": "8002340", "video_name": "845faddd-acdc-5b00-a849-276a8b3a92a8", "text": "Never ruin a good day by thinking about a bad yesterday. "} +{"id": "2003358", "video_name": "77a4d50e-8cfc-5a02-94da-d2c0dd9fb21d", "text": "Generate me a video of Iron Man wearing his armor "} +{"id": "0006311", "video_name": "2a7ef9bd-cfe2-507a-8973-5aba2d0ef6bb", "text": "generate a video to introduce myself with the following script: hi "} +{"id": "2005179", "video_name": "bf990b62-4212-5a85-8a87-ce2c7436ca73", "text": "The atmosphere of a rock concert, fantastic energy, the play of light, the reaction of the audience "} +{"id": "5001059", "video_name": "4aa2bc3b-6c90-58c4-aa1f-a5df04c9275d", "text": "Meanwhile the tortoise, who was extremely determined and dedicated to the race was slowly nearing the finish line. "} +{"id": "7004386", "video_name": "d224dbee-906e-5586-a375-fac1b0b359b8", "text": "the mother is in the kitchen preparing the table for dinner "} +{"id": "1003606", "video_name": "4276ff2f-a0fc-5aa3-8d51-e55c44ff19e0", "text": "2 girls, 2 boys sitting togeting feeling alone from their face expresions "} +{"id": "2006542", "video_name": "410aea0f-f84b-51cb-9b81-4e7855342dd5", "text": "bedsheet on a dog, at the beach "} +{"id": "4004660", "video_name": "049b35dc-5944-54a4-9ec4-87944fd60761", "text": "John Price from the game Call of Duty Modern Warfare hacks doors "} +{"id": "6003989", "video_name": "b6482657-0ad0-55ad-8d0e-091f6de62d2d", "text": "Show the mansion with a shadowy figure watching from a window. "} +{"id": "8003332", "video_name": "89704d69-c9ff-550e-a704-a1ac6b584eb0", "text": "make some slight movement to make this picture more alive but not too much "} +{"id": "2003045", "video_name": "6722bcd5-9b87-51b4-b62d-a71c797407b6", "text": "siding advertising, 16k quality, Almaty city, large company, business content, 35mm "} +{"id": "0004660", "video_name": "0cce55c1-7cff-53f2-8b4f-30b67754262d", "text": "Statue of Liberty Message: 1 Attachment "} +{"id": "4004070", "video_name": "344df17a-5ede-5c59-912e-6253a00f291c", "text": "british white man short hair no beard jacket shirt breathing calmly feeling happy "} +{"id": "0003472", "video_name": "3e3aa2ee-5372-5f65-8d43-cfef801c45c3", "text": "4k detailed animation, A small boat floating through big ocean waves, in the style of Studio Ghibli "} +{"id": "7002016", "video_name": "ff3940f8-5167-5f70-8579-1982e88b56c2", "text": "beautiful house on an alien background with clear skies that you can see multiple moons in the atmosphere "} +{"id": "1006172", "video_name": "70f56da7-1c0a-51cd-9ea6-cab9469e0770", "text": "first time boy and girl love in public bus jealous another boy "} +{"id": "3006866", "video_name": "6db7ac52-9f21-5723-98f6-07b02e3107f1", "text": "Panoramic shot of a vast desert landscape as the sun dips below the sand dunes, casting long, undulating shadows and creating a symphony of warm colors. "} +{"id": "4002829", "video_name": "4ed4301b-f539-5bd1-8033-d8f3e640960c", "text": "a couple together in a favela playing altinha, drawn style "} +{"id": "8001170", "video_name": "2dbbf087-d4c9-58cb-8e46-84df84744bb6", "text": "Vibrant colors and swirling lights paint a surreal landscape that defies the laws of physics. space "} +{"id": "2004323", "video_name": "7b509317-b102-58c3-b0ed-c553b419cc8a", "text": "black tea cup on the table with tea smoke and tea leavs and the background is a blend of Assam and Dooars tea "} +{"id": "3006558", "video_name": "7b39e408-07fa-5039-a1f0-88eff853b402", "text": "stage Pyrotechnics burst at the edge of the stage while the band is playing "} +{"id": "0003031", "video_name": "35e13afc-83b4-5a7a-8f70-fff2f72544e9", "text": "Realistic Zoom in on Friend 4, surrounded by flickering lights, as they shout for the group to stay together. Their face should show determination and a glimmer of hope, even in the face of the terrifying figures revealed in the shadows. "} +{"id": "3004759", "video_name": "f145d689-6665-5905-94df-0668107d1ffb", "text": "vertical video of realistic group of woman with pink shirts of different races "} +{"id": "3003092", "video_name": "8d8a5311-188b-530b-9b75-b0daaff9df5a", "text": "Hight Clean Message: A boy running (Font: MODERN) "} +{"id": "6003098", "video_name": "a4be547a-a212-5a80-b7e4-af58b9d62cf6", "text": "A colossal kaiju that harnesses the power of thunderstorms. It has crackling electric tendrils emanating from its body, and dark clouds swirl around it, hinting at the immense electrical energy it commands. "} +{"id": "1003095", "video_name": "38f178b6-7b6e-5f2e-9982-a5c4bf12f6bf", "text": "lights rising up out of the water "} +{"id": "8003878", "video_name": "28a9d0df-39e9-592b-bd26-722513d96ec4", "text": "physics simulation of a giant hoarde of Satellite Drones flying rapidly towards Brawley, California,. high octane render, anamorphic, gorgeous cinematic lighting, ray tracing, particle effects, ambient volumetric lighting, ray traced cinematic lighting, "} +{"id": "3006358", "video_name": "6cd96f8c-f4ed-5a74-8997-b96e9ff1fbc3", "text": "a man who is falling whilst laughing and about to hit the ground, cinematic "} +{"id": "1003390", "video_name": "3e79b74b-3bee-54ea-9bfa-5a645b34edd0", "text": "A cute girl wandering through a bustling Christmas market, her eyes wide with wonder. Stalls overflow with holiday treats and handcrafted gifts, and the air is filled with the scents of cinnamon and pine. Strings of lights twinkle overhead, and the sound of festive music and laughter creates a warm, joyful atmosphere, embodying the spirit of Christmas. "} +{"id": "3004795", "video_name": "64d56cf4-4ead-52d5-b962-a04fcb326cbf", "text": "a roman soldier looking a battle "} +{"id": "5001946", "video_name": "306d92cf-2e79-58af-b86e-869abc50dcb4", "text": "Dwayne the rock Johnson taming a shark "} +{"id": "8003343", "video_name": "cb0dc336-ded5-52d5-855c-929ece7ab8ea", "text": "crhis cornell singing in the moon "} +{"id": "6004540", "video_name": "f5e8c8e6-3e4f-5a10-a983-d51a03e5c3e6", "text": "high quality, highly detailed, 8K Ultra HD, detailed illustration of the interior of a perfect forest with mysterious constellations and beautifully designed cosmic spirals, fabric art, art station, splash arts, luminism, 3D rendering, octane rendering, Isometric, by yukisakura, incredible full color, "} +{"id": "7002114", "video_name": "9a4d31d6-27bb-5162-8a0f-c91f5f361767", "text": "a cinematic wide shot of a man on a motorcycle, wearing black helmet, in profile, black leather jacket, driving frame right to frame left, city street, slight motion blur "} +{"id": "5001041", "video_name": "40aaff50-9c48-58e2-bb40-897f7f5492a9", "text": "I want a youtube presentation video of a video game channel "} +{"id": "1006246", "video_name": "726f15e3-86e0-530c-bcbe-2fa382c79774", "text": "Picture Oliver and Rusty, the fox, running through the woods, leaves swirling around them in a playful dance, laughter echoing in the crisp autumn air. "} +{"id": "4004080", "video_name": "4f19579f-64cf-558d-9752-342d19f2edc8", "text": ": four 3d digital numbers which comes from diff animals "} +{"id": "0004277", "video_name": "063f1520-b0e6-569f-85be-281c7d6f4e04", "text": "a warrior princess wielding a large sword, a red and gold outfit with long black hair 4k detailed backlit cinematic "} +{"id": "4002711", "video_name": "3d90d7b5-296d-5298-802e-b8637d329144", "text": "Brat Pitt as a Fortnite Charakters "} +{"id": "0006336", "video_name": "2ad91780-9e72-5003-aab0-f840ecee9fb7", "text": "In the sunset, the train rushes towards the camera quickly "} +{"id": "1003891", "video_name": "47c0e2e3-64f2-57b5-8e2a-cdbfabeced25", "text": "joe biden wearing a mexican pancho and sombrero cartoon hyper realistic 8k "} +{"id": "6002504", "video_name": "41d2fb08-a337-500b-bd24-8ffb73db83c4", "text": "cartoon female and male sitting on a seesaw made of a medication bottle and it going up and down slightly "} +{"id": "4003578", "video_name": "6451fa5b-1b43-543d-b7e6-9e74df30d9a5", "text": "desrty oasis atmospeher with many rasta woman working As ear inclines to the whispers of the tongue. "} +{"id": "2007394", "video_name": "b9b22051-4440-5228-8f1e-4cb03a8cf9a2", "text": "Show the rainbow appearing in the sky. "} +{"id": "3006014", "video_name": "e8b9ee33-c77c-555f-ab93-cbe9ef7c92df", "text": "jesse wake up so we can play baldurs gate "} +{"id": "8002148", "video_name": "c294e3b7-10da-5cb6-86b6-9a9beb64a0e2", "text": "a TV station scene 47k,20 years old male student stands by a big TV screen very close to me "} +{"id": "2006018", "video_name": "dea1ff25-d785-5666-bc15-918c7cdbce90", "text": ", lion tries to scare away the monkeys "} +{"id": "0006448", "video_name": "2cb91e0f-33ee-5919-bc08-4fd830ee042d", "text": "man on a blue and pink planet "} +{"id": "7003684", "video_name": "020f4bc4-db63-5225-829d-2fc0988dfb84", "text": "a capital L in red on a white potrait back ground being ripped in half "} +{"id": "6002649", "video_name": "bf6cf4a9-79ae-556d-900c-568cb2581af0", "text": "a ten feet beautiful lady wearing a long rob walking in a tick forest "} +{"id": "2007248", "video_name": "56eaab71-99ae-55cf-9a9b-5504072a2e9b", "text": "smoke in the form of an exclamation mark "} +{"id": "5001205", "video_name": "abe91df5-1474-5a4d-91dc-8b671cfe24b6", "text": "A girl whose face glows with the luster of modesty and decency. "} +{"id": "0006956", "video_name": "35d7ce21-768a-5036-a97f-5a301c1ca4b5", "text": "a turntable playing a record in candy store with a girl and an old man dancing in comic style "} +{"id": "8003936", "video_name": "d0fe34ba-20bb-508a-87b4-a1036dba4a4d", "text": "Village Dance: A lively village dance with couples twirling to music under strings of twinkling lights. "} +{"id": "2004796", "video_name": "03fb6b3d-fc72-554d-a486-5131515cb82f", "text": "Black and white film, the spirit flies around the house, inside the house "} +{"id": "0005793", "video_name": "21523810-9be7-597f-94ab-c81da5361fea", "text": "a post apocalyptic desert cruiser flying through the air, steady cam "} +{"id": "3006973", "video_name": "85349fcb-b0bb-501b-b8fa-4eca5b6a2c38", "text": "a small teddy bear walking on a street "} +{"id": "1004599", "video_name": "55aa0815-de66-5d26-a91c-0b5f617e17f9", "text": "Ancient Neanderthals follow mammoths through the winter forest "} +{"id": "6004333", "video_name": "0750ff71-d2c0-5eb5-b200-ddf8ac725608", "text": ":Terry the Tyrannosaurus Rex was the king of the jungle, with a huge jaw and powerful legs. He is a gentle giant who loves to play hide and seek with his friends. "} +{"id": "7002618", "video_name": "abd23f2f-61c5-5e85-8945-ffa11a493499", "text": "Two couples in a long distance relationship and texting each other on mobile.\nTry making it creative and artistic. "} +{"id": "3005312", "video_name": "04c7b40f-59b6-5408-96d7-c628611887ee", "text": "In the future, humans are enjoying "} +{"id": "5001096", "video_name": "451b6b75-3f37-5bf9-8926-b1351d9ecac0", "text": "Cityscape background, Traditional dress, Realistic Portrait, Chinese girl, Realistic portrait "} +{"id": "8001187", "video_name": "7a173707-8c7a-5f1a-bd7c-5aa596a8c6e0", "text": "film still, film by Nobuhiko Obayashi,Super large scene, beautiful woman in misty forest, surrounded by flowers, flying butterflies, dream core, Kodak film "} +{"id": "6003319", "video_name": "06f8db5c-46ce-53b2-be4a-d318e011fb93", "text": "arieal view of ruble and wooden beams collpasing and caving in "} +{"id": "0004716", "video_name": "0ddde2b0-1a2c-529d-a566-ccc82598208a", "text": "a book turning its pages of itself magically "} +{"id": "0006769", "video_name": "32b9f504-6d4b-5484-86d3-d5dcac2c3ad8", "text": "Darth Vader and Luke Skywalker Eating Hot Dogs together, father and son bonding, stormtroopers watching over, UHD, Ultra Detailed, Hyper Realistic, Epic, Cinematic Shot, Accurate, Ultra Textures, Phot Realistic, 32K 16:9 "} +{"id": "0004457", "video_name": "095d1cdb-a8eb-5d6b-836a-f5bc5efd2021", "text": "a video of a sloth operating a DJ turntable in a busy nightclub with lots of people dancing around "} +{"id": "0005105", "video_name": "14d4690d-2b6d-5231-89a6-5ea93f7ba5e5", "text": "a farm girl in the style of studio ghibli "} +{"id": "7002430", "video_name": "7deb184b-1cfd-563a-b200-2521518d8443", "text": "The inauguration of a cultural bar with Peruvian infusions, gastronomy, lounge and vinyl music "} +{"id": "7002787", "video_name": "0b303807-d4e6-5a57-9fb3-89571106db42", "text": "a spinning hologram of the earth "} +{"id": "5001741", "video_name": "582a3827-9c03-5c5f-83b1-4e7653ebc3c4", "text": "create a image of the movie theatre in india "} +{"id": "7002506", "video_name": "02ecdc82-6399-5ca5-a760-2c4495bf6ef6", "text": "Those two talking in the room "} +{"id": "7003104", "video_name": "d4a75093-d4f1-533e-bc88-03e440b3c2f8", "text": "1850s film, tartarian technology on display, degraded film "} +{"id": "8001722", "video_name": "a01f2898-794c-594b-9a35-68a5e62f8959", "text": "small town with trees and people wondering 3d cartoon "} +{"id": "7004430", "video_name": "fbbfc9a7-89b0-5771-9f2e-fc5500b8cab0", "text": "lawyer in hearing with a judge "} +{"id": "6004619", "video_name": "be918c23-f72f-5753-8fbd-0cae8c17d14f", "text": "family spend time together. Video should be in slow motion "} +{"id": "4003532", "video_name": "22bc25ea-55a7-5d2f-be3b-7f6ca240e26b", "text": "Man meditating atop a mountain at sunset "} +{"id": "1003058", "video_name": "383889b8-63f7-5f96-9296-23bf873bbae8", "text": "a collage student catch a bus because he late in cartoon network style "} +{"id": "1006474", "video_name": "767d3dc9-9d23-5c7c-9c75-2747af15ab93", "text": "A beautiful girl sleeping next to the window with a nice cat in her lap "} +{"id": "0003152", "video_name": "382d46d9-233e-5423-8f56-04e71b3b2422", "text": "one handsome man singing a romantic song in a wedding "} +{"id": "0003739", "video_name": "429b1bf0-b110-569b-bd63-a2e234d37b9f", "text": "beautiful girl read book 8k quality "} +{"id": "2005193", "video_name": "6f9f9b87-3b50-57a4-8ba6-f1b8a5112fd4", "text": "A war between sun and other planets in space in prussian color theme "} +{"id": "6004759", "video_name": "ec50968c-aab2-5ad0-b406-9bd96c04a608", "text": "a woman tiping on a macbook pro notebook on a desk, in front of a window with the view of new york city "} +{"id": "6002613", "video_name": "a256cfa2-be4b-50cf-aafc-1aff83704709", "text": "A bear is walking through the woods. He walks on his hind legs towards a red ford mustang. After the bear gets behind the wheel, the car catches fire. "} +{"id": "0003925", "video_name": "45dd99c4-6b04-5f5a-a45a-a72494958297", "text": "tongue morphs into a nine millimeter, 4K, geometric lasers in background, atmospheric, unreal engine "} +{"id": "3003954", "video_name": "7867662d-c3b9-5598-be79-90debe7cde1b", "text": "People Leaving the Pompeii City before the Vesuvius Volcano erupted in 79 A.D. Some individuals packing belongings and hurriedly leaving. Introduce a sense of urgency and fear. Colors become cooler and more muted to convey the seriousness of the situation. "} +{"id": "6004042", "video_name": "7ff36226-abe3-5c8d-b143-7b07d5adb21c", "text": "The explorers face the challenges of navigating through dense foliage, encountering dangerous wildlife, and enduring sudden rainstorms in the rainforest.Explorers face dense foliage, wildlife, and sudden rainstorms "} +{"id": "7004717", "video_name": "a9c3b261-92c3-5bed-9e65-6a29c7146ae2", "text": "CINEMATIC, Mosque on the water, sunset, camera moving slowly, "} +{"id": "4003355", "video_name": "cb3c5476-acb1-50a2-92c3-8aacb7a098d0", "text": "one motorcycle with three boys to trip a long drive "} +{"id": "0003791", "video_name": "43751cb0-9b1d-515c-97ed-948a13e78b7b", "text": "an image of a Moroccan worrier women who lived in 1845. consider traditional cloths and an extreme beauty. take into account nice cloths colors and jewelry of that tine "} +{"id": "5001803", "video_name": "bb2575fc-5580-5aad-a17d-1a28253067cc", "text": "what prompt would you ask yourself to create? "} +{"id": "1004267", "video_name": "4ef5c5d3-05eb-5d69-b47b-acf4a2885162", "text": "Cinematic scene, romantic film, close up, a young woman on a deserted beach, looks longingly at the woman she loves, smiling, rain falling, hazy. "} +{"id": "7002370", "video_name": "886a7f51-cf5c-57cf-8329-85aa979e46b7", "text": "leshrac is a blue crystal character from dota 2, clearing the way with his abilities "} +{"id": "6004548", "video_name": "caefb1a9-dbb2-5fd3-b23e-b3b3974b4e81", "text": "an arabic sesting with people talking "} +{"id": "0004835", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "A star made of air floats above the city "} +{"id": "1004317", "video_name": "4fbe8ecf-4070-5a1f-8a48-2406dc37eb80", "text": "image In a small town on the coast of Liguria, Italy, there lived a girl named Anna. "} +{"id": "8003183", "video_name": "d35f9e3c-15a8-5b34-afb5-9a94cf94bdd6", "text": "Roseanne barr putting on a gas mask "} +{"id": "2003435", "video_name": "a3880192-711e-5ea3-bbd2-d55ddf5521b8", "text": "4:3 aspect ratio\uff0cfish Nemo adventures with friends under the sea "} +{"id": "6002280", "video_name": "96b55c4f-f6b8-55cf-92c3-ded4fa994c18", "text": "face expressions of a young indian lady, She wants to talk with her loved one, she is shy. she gracefully talking with her eyes. her eyes are full of love for her loved one. "} +{"id": "2005467", "video_name": "79d843b5-11e8-5b82-a2b6-cd7f81535694", "text": "a dark fantasy dragon Message: Gold Loeckchen (Font: MODERN) "} +{"id": "1004033", "video_name": "4ac62d9f-ff96-5ffa-a218-1d7e57487adb", "text": "supreme court case against New York State "} +{"id": "6004973", "video_name": "e094714f-4078-54fd-b10d-79da8449face", "text": "Let people deeply relax and forget all the worries in daily life "} +{"id": "1006555", "video_name": "7814aac3-26b7-5cf9-ab6e-d23f8352830d", "text": "a pixelated room decorated for Christmas and a man typing on his computer "} +{"id": "7002918", "video_name": "5cbb73b0-7134-5583-a7e0-3c4f9041321a", "text": "Five Nights at Freddy\u2019s: Security Breach "} +{"id": "7004334", "video_name": "5307db16-2e66-5d2b-94da-005637f3474e", "text": "the connection between me and beijing "} +{"id": "0006503", "video_name": "2d9e0e83-2ea0-5719-9a2d-3a1c636aa8ae", "text": "Emily, moved by their plight, sought a way to help the restless spirits find solace. She delved into ancient texts, researching rituals of appeasement and forgiveness. With the help of her family, she prepared a ceremony, hoping to bring closure to the spirits and restore peace to Blackwood Manor.\nCreated using a graphics tablet and digital painting software, such as Photoshop or Procreate. The artist skillfully blends different brush textures and lighting effects to achieve a hauntingly beautiful result "} +{"id": "3003326", "video_name": "62066f90-4a9b-5958-b04a-a50197d510b7", "text": "Showing the rapid pulse of the times "} +{"id": "7004589", "video_name": "6ecf6e44-bacc-5a85-a42d-f3d8704c0be8", "text": "shakuni in castle hall moving front faced full body "} +{"id": "3003193", "video_name": "16e61161-3c24-52b7-8bdb-a3b2a175dded", "text": "planet earth cyborg built of metal and earth, ultra 4k, realist, hd, 3D, futurist "} +{"id": "0003434", "video_name": "3d7002c4-8758-54ea-b128-8ac148d1ffd8", "text": "movie trailer for attack against the matrix "} +{"id": "2004959", "video_name": "cecc6a84-4161-5298-8202-867e1be61236", "text": "a girl sitting in front of a lake under the rain watching the sunset, moving away in slow motion, 4k "} +{"id": "3004486", "video_name": "605422fb-98c8-5439-985d-12ab8c706706", "text": "glass pyramids in a dark black glittering desert dreamscape with scintillating light blue clouds of air "} +{"id": "6003615", "video_name": "e1065f7a-8877-54a2-9107-71bd26a8730a", "text": "A team of explorers discovering a underwater city "} +{"id": "4002466", "video_name": "9460f928-dd09-51fb-8ef7-41aee9e142a8", "text": "space shot from 1970, black and white "} +{"id": "0006999", "video_name": "3678f7af-dd62-5773-ab07-8a7401d7bc7b", "text": "how to make chocolate at home "} +{"id": "3004528", "video_name": "d717f734-0ace-54c0-9ed3-30ff98f030b7", "text": "create a women hand showing Namaste the ambience is holi festival . full of colors camera zoom in "} +{"id": "3005361", "video_name": "b750a366-9c2f-57f6-8f5a-16ad29011087", "text": "A terrified man runs away from the forest. "} +{"id": "3004484", "video_name": "0c0628b3-b457-51b8-af25-1e8daa00cf6e", "text": "Looking up at the mammoth with a huge perspective, it takes five seconds "} +{"id": "1006234", "video_name": "723bb628-eb7c-5474-9c39-e4df90701f28", "text": "they reached an ideal village where people lived with love and understanding. Disney style "} +{"id": "3004200", "video_name": "ca5d60ce-a5f9-56ed-95ce-2e84d6bb701e", "text": "woman in full growth, spinning in a dress. Against the background of stands with clothes "} +{"id": "2006489", "video_name": "2c22c2a4-89f9-518a-be1e-b686aa5a2acf", "text": "anime blue haired guy with a blue fur from anime, seen it from the anime scenes "} +{"id": "2007854", "video_name": "19a40433-ca7c-5594-8206-2ed88370d59a", "text": "Jesus walked out of the ruins and stood on the hillside, his figure reflected in the distant sunset "} +{"id": "4002951", "video_name": "4fb9c16a-7dfe-552f-83a4-c53d9f3444ba", "text": "a man in a black sweatshirt with a zipper and white inserts on the sweatshirt with green eyes and with ears, the sweatshirt is stretched out and there is a gray body and with languid brown hair, a man of about 19 years old, look at the camera directly at the sky and he goes crazy "} +{"id": "8003819", "video_name": "259f9086-5676-500b-8a26-164c4cccf860", "text": "long cigar spaceship floating in the night overhead "} +{"id": "1003762", "video_name": "455555ea-dcc5-5c5d-bc1d-89c85d58b0a2", "text": "a man running in the city Message: running (Font: MODERN) "} +{"id": "3006415", "video_name": "546a1093-6b67-5fd1-b997-459d91d07c70", "text": "Natural Movement, Glowing Neon Colors, Vibrant, RGB, Tropical Floral, Psychedelic, Realistic, 3D Render, Minimalistic, Holographic, Dystopian, Futuristic, Clean Line Work "} +{"id": "7002163", "video_name": "67d020ae-e717-5b00-84c5-559e8c1e619a", "text": "The guy was running fast forward with his feet "} +{"id": "3006352", "video_name": "2eef09ce-7325-5190-b51f-6ea83763d17e", "text": "kids playing with dog in jungle "} +{"id": "1005819", "video_name": "6af415e4-573b-5b3a-b116-2f37555e8bfe", "text": "red gorilla made of red blocks walks down busy city street, cinematic, 16:9, photo real "} +{"id": "4002259", "video_name": "5d578854-f487-50d3-b375-503cfed19552", "text": "goddess(a woman who is adored, especially for her beauty), Genetics, Electron Microscope, 3D Render, Scientific Photography, Scientific Video, Hyperrealistic Video, High Dynamic Range Imaging, High Dynamic Range Imaging Video, 32K Resolution, Ultra high Definition, Photorealistic, Realistic Lighting, Amazing Color Photography, High Quality Video, Stunning Visuals, Life like, Hyperdetailed Photography, High Dimensional Space, Visual Effects "} +{"id": "8001613", "video_name": "97d49370-f350-5a00-b622-e99ff9950e34", "text": "star wars town street, tatooine desert, aliens "} +{"id": "2003672", "video_name": "900f2ffd-fdf2-545a-a5ed-aa8a0a32f49a", "text": "Hawaiian harry potter hanging out at the beach "} +{"id": "8001074", "video_name": "5653beb1-6075-5777-8ba2-9ba9ab880792", "text": "Imagine fitness couple with dark skin, curly hair, urban landscape, manga illustration, Zen, Amy Sol style, contemporary Chinese art, color gradients, soft color palettes, layered forms "} +{"id": "2006523", "video_name": "c7552220-630f-5ddc-8068-93b09a5c520b", "text": "your animated image loops seamlessly so that the enchanting message An cute lovely apple with eyes and a mouth depicted is hanging from the tree in the futuristic smart apple farm in a continuous cycle without interruption in 3d animation style "} +{"id": "8001441", "video_name": "2c102148-6524-5e56-a074-36060abbc93f", "text": "A chorus line of beautiful female dancers like Radio City Music Hall "} +{"id": "1003205", "video_name": "3af69a46-f307-5b7a-904a-f10017cde3db", "text": "3D rendered isometric game developer on isometric 3D tile, in the style of animated gifs, 3D minimalism. "} +{"id": "6002805", "video_name": "67ed1551-45ea-580b-ab6a-7e44763de57e", "text": "Asian man eating a sourdough jack burger "} +{"id": "2004855", "video_name": "b10043fd-bfbf-5fc5-ad81-c2daf8fae156", "text": "Aerial view of empty Bolivian cities with Disney Pixar animation "} +{"id": "7004693", "video_name": "2cbb5fd3-88d0-52f8-be02-653990d7223b", "text": "Full Body Portrait of Goku from Dragon Ball Z, Charging his Ki, Live Action, photorealism, Netflix, Live Adaptation, ultra detailed, 8K HD, cinematic "} +{"id": "3005488", "video_name": "8fedd860-155c-564a-ad13-8360fa59e6b9", "text": "create a video of the data science and AI degree and the use of tools such as MySQL, Python, PyCharm, Visual Studio Code, ChatGPT, Xampp, Anaconda, Google Colaboratory, Tableau "} +{"id": "0006459", "video_name": "2cf1035d-6fb7-5187-a7c5-c436b8534902", "text": "The cute little mermaid swims to me "} +{"id": "1004156", "video_name": "4d01b279-1200-5383-be5d-b273de61afde", "text": "the sage sits under the tree and next to 3 people, antique style 3d hyper realistic, photo realistic, HDR, 8k, trending on artstation, artstationHD, artstationHQ, unreal engine 5, 4k, 8k, digital painting, deviantart, "} +{"id": "1005563", "video_name": "6667bd8b-da9e-5348-b691-30150e232d7f", "text": "1960s shiva but wearing grunge clothing "} +{"id": "8002554", "video_name": "ccfd1f8b-3348-58a1-a58c-a746fbe74883", "text": "a crying turtle, animated, tears are flowing "} +{"id": "0005531", "video_name": "1c636a32-8250-5858-824b-b5c9790cece0", "text": "arthouse, punk, weird design, typography, animated poster "} +{"id": "4003302", "video_name": "51f7763a-6bdb-50cb-b2ba-3bde2776663a", "text": "Women muslim wear hijab dress cover all her body posing looking in camera for modeling dress muslip. Woman very beautiful "} +{"id": "3006128", "video_name": "3238d836-c5ad-515c-8eeb-0c2f65838661", "text": "men pulling a giant sea creature out of the sea "} +{"id": "3004284", "video_name": "020ab250-ab99-5bf1-ad83-85a096e2335f", "text": "The characters dance to Micheal Jackson thriller "} +{"id": "4003826", "video_name": "20b579a4-64c5-5eb4-ab30-124007265f8b", "text": "a painting depicts city lights at night with stars over them, in the style of whimsical folk art illustrations, colorful collage, mountainous vistas, colorful patchwork, emily carr, highly detailed cityscapes, digital illustration "} +{"id": "0003643", "video_name": "40e94440-eff6-5f8e-ae18-6448fa4821c8", "text": "People enjoying the beach on a rainy day "} +{"id": "7003265", "video_name": "d6ca015f-1daa-59c9-9c4f-b3a2eef5b4bf", "text": "a horse galopping through the mainstreet of a western town, wide shot "} +{"id": "7004146", "video_name": "41eddcb8-8aab-55cf-b47c-4ecde99286d2", "text": "two cute shorthaired caracals sitting in a tv studio, news studio, 4k realistic, tv news broadcast program "} +{"id": "4002105", "video_name": "0f3f3864-5a1d-57c8-ac29-7346a4648e5a", "text": "vintage news background, blue and white, stripes, shapes, PBS news "} +{"id": "3003562", "video_name": "2eb0ecf6-9461-5825-8299-7b9b64b554e5", "text": "A city slowly destroying after nucklear strike "} +{"id": "1004768", "video_name": "582d955f-442c-5213-a247-bb4dfe9e3168", "text": "random fall of many stars on planet mars "} +{"id": "3004894", "video_name": "2ad7a727-2e6e-5c83-809c-0fe70122b9ae", "text": "A sprawling forest, with beautifully ripened vines in it. Paths for people to walk and pick fruits. "} +{"id": "0004072", "video_name": "02c8b649-b3ac-545c-901a-447d5d64defd", "text": "wide angle from the balcony: looking the landscape with Giger palaces in ruins, satanic monuments, totems of evil creatures, dramatic cloudy sky, mystical, hyperdetailed, intricate perfect details, complex, horror art. Illustration by Dan Seagrave "} +{"id": "3004309", "video_name": "700c9983-6c6d-5b96-a837-3437e2754b17", "text": "Cat huntings to plot on the analytics dashboard "} +{"id": "3005227", "video_name": "d55d71dd-a843-54a4-b3a0-4e1005a9547a", "text": "Rick and Morty animation in ancient Rome "} +{"id": "8001031", "video_name": "bce2c579-3e1e-51d1-8e2b-ca19a2c58b04", "text": "Disneyland style. The event was to be held in a secret glade deep within the heart of the enchanted forest "} +{"id": "6002198", "video_name": "03a14722-fe5e-50a3-bdaf-8c93279efe54", "text": "a eagle come near a guy sitting in forest "} +{"id": "2007932", "video_name": "19a454e3-fc38-592b-8500-02b1cb1b072a", "text": "an anthropomorphic banana, wearing a bandana, dual wielding machine guns, in a jungle, fighting apple soldiers, realistic, detailed "} +{"id": "3003641", "video_name": "161d6f42-de66-56e8-a941-4fbdbd9cf7b2", "text": "horse running away smooth ghibli studio animation style "} +{"id": "0003908", "video_name": "458c2360-ec65-54a1-8739-1f8b79676515", "text": "A young girl named Elara is walking through a forest on a cold winter day. She is wearing a warm coat and hat, but her hands are bare and she is shivering. She stops to rest on a rock and looks around. The forest is silent and still. The only sound is the wind blowing through the trees. 3D ANIMATED "} +{"id": "1006567", "video_name": "785bc609-45a0-5c08-9dbc-4dec0b7a6bc1", "text": "a group of girl, dance in a hall, neon light flesh, "} +{"id": "1003342", "video_name": "3d8f5640-0a58-57aa-8ff7-eb7cfd7bac49", "text": "vin diesel racing dwayne johnson in a wheel chair "} +{"id": "4002422", "video_name": "5674007b-9b9f-5192-ac61-8040480c4140", "text": "a machine tries to understand morality duration 30 seconds "} +{"id": "7003843", "video_name": "51d5c552-2980-512c-8eb2-d218a0d7520b", "text": "A little boy littering papers in the bedroom "} +{"id": "8001815", "video_name": "52444950-3745-5898-8efe-d2d085e2bbb5", "text": "an extreamly long dark cave opening in the forest with showering rain "} +{"id": "3004813", "video_name": "e589b2c4-f2d1-5708-95d6-ea9f95d42c80", "text": "His talent cricket caught the eye of a local coach who recognized his potential and guided him through the ranks "} +{"id": "8001618", "video_name": "ba653728-78c4-5475-9ee9-5b4319c8b880", "text": "A small village seen from the sky "} +{"id": "3006907", "video_name": "25d5e29a-7946-5f0d-a87e-abf8fc260992", "text": "a vintage cell phone with a flickering screen "} +{"id": "6002605", "video_name": "d3bf5a35-27e8-57e3-b3d1-db848dd22537", "text": "a handsome guy singing a song 9:16 for 30 seconds "} +{"id": "2004507", "video_name": "b339b09a-7368-54b9-a6be-ffc30109cbd2", "text": "Shakespeare battling a vampire with a lightsaber "} +{"id": "0003790", "video_name": "4373d991-831f-5ce5-85e6-a0dc0aab8b4d", "text": "Epic cinematic intro to mythical hyperborean civilisation "} +{"id": "3005952", "video_name": "5fbeae40-5549-5edb-8f8a-ea092f3fbaaf", "text": "the sun sinks into a glass of ice. "} +{"id": "2004173", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "establishing wide angle shot, golden hour, people walking,future city, artificial island, tall, floors, space, modern, neighborhoods, interconnected by ornate walkways , futuristic photorealistic Neighborhoods, architecture has a gaudi influence "} +{"id": "6004924", "video_name": "a19b9dbe-8a14-55d6-af4d-f8180840bc7b", "text": "a man fleeing a circus film Lovecraft 1900s "} +{"id": "3005339", "video_name": "ef26a13b-dc31-5963-b903-987c279bab0a", "text": "Tom brady holding baby darth vader "} +{"id": "4002055", "video_name": "32321251-0b0b-5bcd-abfc-6dc48fa5998c", "text": "Withered flower blows onto open photo album, Autumn afternoon, in a park, everything is withering and rusting "} +{"id": "6004211", "video_name": "a40c633e-7ea1-531f-af44-2767e0e9fffb", "text": "Create a vignette for a course whose theme is the importance of women in the job market where the title is Plural Voices: Women "} +{"id": "2006037", "video_name": "503e6e4c-a487-5ccb-9d4f-0a12550db771", "text": "playing in the jungle with his friends "} +{"id": "0006974", "video_name": "3611012e-7e58-58db-915a-c9887c993aba", "text": "a jar of cannabis with a french flag "} +{"id": "7003395", "video_name": "1b0584ea-40d4-501a-aa4e-89752853fe8d", "text": "a friendly robot answers a retro phone in a beach "} +{"id": "7002132", "video_name": "37660c20-c430-5d81-84e8-82809b0c3be5", "text": "Ancient Egyptian king resurrected in pyramid "} +{"id": "5001436", "video_name": "34521aa2-b7f5-5af2-8643-fdd45f607a49", "text": "A girl in a black dress wanders through a dark forest full of twisted trees and disturbing shadows. In black and white. Aspect Ratio 4:3 "} +{"id": "0003593", "video_name": "401f9887-662d-54e8-8b63-f15c249151d0", "text": "Ava sits inside the lighthouse, dusting off an old journal she discovered. She reads it by the fading light that filters through the cracked glass windows. "} +{"id": "0003730", "video_name": "427d9961-f2fb-59a3-a7fe-d446bbf683b7", "text": "there is a smart robot with amazing intelligence and abilities. One day, scientists successfully created this intelligent robot in a laboratory. "} +{"id": "0006125", "video_name": "2703831b-afb3-54dc-9c5f-76e9a6b02a50", "text": "(Valera the worm crawls through the ground and gets to the surface. He sees Margot the Bug, who jumps with light jumps.) "} +{"id": "8002406", "video_name": "a6f6a9ee-2b18-5ec8-901b-288074c145b8", "text": "Photograph the eerie symbols and writings found within the mansion. These symbols can add an element of mystique to your video and generate curiosity among viewers "} +{"id": "0003652", "video_name": "4102685f-1534-50b1-926a-c684213fffab", "text": "painted picture of a wide wood and some pics in front "} +{"id": "6004384", "video_name": "44fa8ebe-3cf5-5aea-8048-c84d29db9a8e", "text": "A real man and a flame of real fire middle of his chest "} +{"id": "3005695", "video_name": "6b85e869-94e7-52b7-8d89-601cc1303207", "text": "Prospect, On the cliff, Bright hue, Cloud and fog, A young Taoist priest, Lateral face, Sunlight shines through the clouds, golden, Chinese dragons and tigers on mountain cliffs, A vivid scene, Award, The best quality, Ultra high definition, Super detail, 8K "} +{"id": "0003432", "video_name": "3d6a17e4-b872-5075-ac90-9feef5b1ffc1", "text": "interior bedroom with many windows, rain falling outside, with a night city vibe "} +{"id": "6004542", "video_name": "bc205c3b-9c82-532a-8f59-3c51f65fd2ed", "text": "A Video of an old chandelier or light fixture, with the lights flickering irregularly. The host stands beneath it, gazing up in wonder and curiosity. "} +{"id": "0003610", "video_name": "4068e0c1-0a20-50e8-8b72-f0a9e72556c1", "text": "photorealistic flying SPRAYS PAINT , many details COLLORS NEON , Ultra detailed, octane render,BY SADOBOARD "} +{"id": "2004356", "video_name": "c0ed7a0d-ee81-5bcf-9a3d-56c02ce57518", "text": "Chinchhu and his friend hatch a plan and organize a big concert in the middle of the village. This was the time when all the birds and animals of the village decided to come together to listen to the monkeys. "} +{"id": "6004531", "video_name": "58e78f10-0401-5789-be26-210f1ecafb1d", "text": "With a heavy heart, the king realized the depth of his folly(3D cartoon video "} +{"id": "4004573", "video_name": "ceeb470c-a395-5aaf-8c72-e090a6b74381", "text": "Jake sighed as he walked through the dark graveyard "} +{"id": "8001226", "video_name": "186c75e4-6fb6-57fc-8af7-fb6f2707b055", "text": "Dive into the world of smart home design! Know how our products are organically used for different styles in the interior, adding a touch of modernity to your home. Scroll through to get inspired, cinematic,8k "} +{"id": "0006371", "video_name": "2b53a51c-c8fc-58f5-96e0-3a7d8223d5b0", "text": "a 30second add for a construction work compagny whis is named AAZ BATIMENT "} +{"id": "7002247", "video_name": "41043235-9a48-5a55-a48a-9ac022471aad", "text": "Green dinosaur on hand cake wishes happy birthday "} +{"id": "6004756", "video_name": "6664ce3a-0025-5bad-92fa-a4702a6a8eb7", "text": "dark fantasy ghost, castle ruins, red monochrome, mist "} +{"id": "2005927", "video_name": "6f3d3826-5c3d-57e9-bb1a-336f2cabdb49", "text": "logo of a musical group called the lighthouse "} +{"id": "8001735", "video_name": "8683b53c-54be-57a9-b724-7d8c3ddcd74c", "text": "zombie moshing swing arms 8k dreamlike, and sigma, 85mm "} +{"id": "6004420", "video_name": "5ae9d3f6-2e72-53a2-9772-4f063c3ae9ae", "text": "The sun is about to set in the mountains "} +{"id": "7002668", "video_name": "55471dc6-488d-54e1-beb7-11e71b70c74d", "text": "A cybertruck is driving to a huge rocket, elon musk is sitting in the front seat. "} +{"id": "6002274", "video_name": "daa11383-7631-5249-b8bc-388888acebb1", "text": "Druids moving down gothic hallway with candles Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "2003378", "video_name": "ff03d989-18d9-58ed-b61b-ea7ad5b0caeb", "text": "Zoom out three meters from the camera Message: 1 Attachment "} +{"id": "1006568", "video_name": "785e1ca5-58f3-5945-bc70-7d54b9fc0e38", "text": "create a scene for angelena jolie fighting scene.highly detailed,4k,gs22,motion 3 "} +{"id": "3005515", "video_name": "1d2ca8e1-0d96-5e84-802f-1bc3523789f9", "text": "a crow siting on tall tree under a fox looked up "} +{"id": "1006975", "video_name": "7fa64f6d-6d8d-5039-8bd4-12814d10c308", "text": "Lily was consumed by deep despair and sorrow, for she had lost not only her mother but also her sister. "} +{"id": "2005848", "video_name": "0b5bf4da-e078-5c79-984e-ff0a55330186", "text": "zoom out from a zebra ballerina performing a pirouette on a stage "} +{"id": "0006190", "video_name": "27f46bc4-b33b-57f8-8ff0-a4efe2f7c67a", "text": "woman in the 1800s cries on a hill long shot "} +{"id": "5001174", "video_name": "e3903326-a64b-5f80-8600-8648fd5292c7", "text": "Filipino men citizen studying in foreign school with foreign students "} +{"id": "5001927", "video_name": "29f5e7c7-95f9-518d-b8fb-53ccb7307efd", "text": "healthcare application image with 1200px by 500px "} +{"id": "3005343", "video_name": "ffceb78a-646c-57a8-a0b2-80d97b0bf7aa", "text": "AI Christmas and New Year Season greetings post card. Make it photorealistic, UHD, 8k quality image, inspiring. "} +{"id": "1003293", "video_name": "3c9b7e72-1bd3-5436-9447-016839bb3a3a", "text": "Walking on the road, lost in ourselves "} +{"id": "3004758", "video_name": "3427086d-567a-5523-a816-cf1590e0a6fd", "text": "xenomorph from the movie aliens, coming out of an air vent "} +{"id": "7003187", "video_name": "6dea6cc8-6b08-590a-9b0e-999468bb9a3d", "text": "Simpson and UFO flayed influencer life las Vegas, HDD 8K , cinematic experience "} +{"id": "1003459", "video_name": "40046d9c-34c8-5064-aced-0288d228db86", "text": "astronaut in the ocean rolling down in the deep "} +{"id": "2007201", "video_name": "4c867b0e-b931-51cd-9632-6b9758ccfdb2", "text": "a bunny on a skateboard, 3d cartoon, cinematic "} +{"id": "6002300", "video_name": "af4d026e-b3ef-5de4-908f-9ffaa84e2e57", "text": "diversity, nature. Past, present and future, landscapes, mountains, lakes, rivers, sea, desert, jungle. Message: DIVERSITY (Font: MODERN) "} +{"id": "3003298", "video_name": "f9fa3d0a-213e-5ffa-9778-800ea05de82e", "text": "Loch Ness Monster photo. no water. face. smile "} +{"id": "1006653", "video_name": "79e56086-4c53-5499-90c6-5f7887f4dab0", "text": "little heart jumping on the spot, vector format "} +{"id": "2004683", "video_name": "f1d35f94-7200-5b44-93e8-938cc8caf7d2", "text": "the moon is falling on the earth and people are running into the water "} +{"id": "4002651", "video_name": "4595656d-ff15-51e6-82ec-a7ab69fd8838", "text": "A teacher doing her job wrong. "} +{"id": "8001966", "video_name": "87d18ae7-288b-50d6-976c-c3d95ce88952", "text": "photorealistic water drop suspended in midair while other water droplets fall around it "} +{"id": "6003096", "video_name": "ad8f3d57-b986-5607-90bc-483392c661fd", "text": "Cartoon cat blinks, hair flutters, ears shake, leave sway "} +{"id": "6002208", "video_name": "079048c8-d95e-55a4-9794-64194d405613", "text": "In the mountains, there is a wild beast that has a shape resembling a horse but with a white head. Its body is marked with stripes similar to a tiger, yet its tail is red. "} +{"id": "8002020", "video_name": "f96e416f-95e7-51d0-8b60-c9269f3c0b8b", "text": "an image art in a style of a Manga with a beautiful anime character "} +{"id": "2007039", "video_name": "d4df2c55-9ab5-5382-8150-6df57b27fa0f", "text": "people dance closing their face with their hands but they wear gloves with glittered eye patterns "} +{"id": "3006692", "video_name": "4e3be672-b958-51be-a7b7-9c1a9b1dc180", "text": "a happy kid jumping on the park "} +{"id": "8003360", "video_name": "2f0bbe47-3a95-585d-8e11-4e8ec8d445cc", "text": "Create a tower that reaches the sky made of bricks "} +{"id": "2004251", "video_name": "ded678ef-d1fb-5da6-9a79-b691225ddea4", "text": "surreal melting of cubes and spheres, two colors "} +{"id": "4004666", "video_name": "3394df66-636d-5eee-adfb-c9eb68775348", "text": "cinematic of ocean and sun from a planet full of temples and magic "} +{"id": "2004648", "video_name": "982ae547-a4f3-53ca-8a62-382cf9ce1c14", "text": "Generate an image of a clever dog named Rusty in a cozy home "} +{"id": "1006900", "video_name": "7e2b521b-12a2-518f-a14b-bf4305210ef5", "text": "Harry Potter movie. Beer tomato glow. Professor Snape is standing back. "} +{"id": "6002597", "video_name": "62f7569d-1c87-5bbb-89da-93b643227dce", "text": "In the future, warriors are in the midst of an epic battle with a deadly alien race. "} +{"id": "7002659", "video_name": "ad1c7bb7-f067-51f7-a2af-7ddaf9a655d8", "text": "Two peopple in a livingroom having some drinks "} +{"id": "6003657", "video_name": "830e6de9-7564-5cde-babb-ce194c6822ef", "text": "Santa Claus and 10 elf in a magical room "} +{"id": "1003503", "video_name": "40c58d2c-2eaa-5744-8092-fff185d5c80e", "text": "a man checking a motorcycles oil level "} +{"id": "1004409", "video_name": "51844ac2-721a-5bd9-afbc-2b5e91c90394", "text": "Barack Obama giving speech with glowing green eyes "} +{"id": "8001045", "video_name": "0acbe1c5-bd5d-51ac-a781-8f9e2c17af1e", "text": "Some suggest that it emerged from Baghdad during the Abbasid Caliphate and was placed in the Topkapi Palace by Sultan Suleiman the Magnificent. "} +{"id": "2006173", "video_name": "567636be-54f3-5d4b-a744-6c5c09747ef8", "text": "super close up camera shot of hands playing fast rhythms congas in black and white "} +{"id": "0003567", "video_name": "3fa4b2ba-e3c2-5887-91a2-d49dbc6e4923", "text": "Ally McBeal eating a pizza really fast "} +{"id": "3004077", "video_name": "c16a7e00-b7ae-5448-b7a6-1187e7fde3ca", "text": "a star explodes in the scy upper left of screen 4k resolution "} +{"id": "3006290", "video_name": "9b8bfb87-a825-57ae-b423-59fb027422cd", "text": "heavy rain fallin on a tin roof in the caribean by night ,fix , the cam is not moving "} +{"id": "4004373", "video_name": "8710d6c6-ce2c-5317-83bd-28454513a7ad", "text": "Finally, after what felt like an eternity "} +{"id": "0004991", "video_name": "12dafa22-53a1-5d89-980d-c8d205e6c3b0", "text": "aerial view of an active volcano "} +{"id": "1005084", "video_name": "5dc50df4-f83e-575b-8570-bda75e10ec33", "text": "Relaxing scenery study desk beside window, relaxing rain outside window study desk "} +{"id": "6002121", "video_name": "80911756-18e7-5c74-8e12-8a460bc7732c", "text": "a man climbing a hill, drone shot of hill, cinematic type video "} +{"id": "3003407", "video_name": "9c258164-3b48-5810-b698-91df615b6063", "text": "lonely man sitting still in the park. While trees, clouds in the sky movement 1 "} +{"id": "6003113", "video_name": "348695c7-9c0d-532c-a806-bf886ea7e380", "text": "an ethereal background of a lumiscent pocket universe "} +{"id": "7002498", "video_name": "600cfacf-a3fa-54cc-a133-85bd4d5031f6", "text": "Greek god walking down the street with people surrounding him "} +{"id": "3006573", "video_name": "e55a99ad-e4a0-51c9-b8c9-85f223b0bf8e", "text": "man ridding a lion in the middle of the Switzerland snowy mountains "} +{"id": "1004955", "video_name": "5b94cff5-15bf-50fc-9d5b-f455fb0f8990", "text": "animation of a man and woman deeply in love in a mystical land "} +{"id": "5001193", "video_name": "5c06b777-5c66-5d99-86f8-75227b9417d7", "text": "Man and a woman taking food in a restaurants "} +{"id": "1003042", "video_name": "37d29429-293b-5ab9-b6a2-d9f293eb929d", "text": "a animation of a giant taco with arms and legs playing the banjo while sitting in a rocking chair "} +{"id": "7004663", "video_name": "7bc5c5bb-c324-52bd-afd9-c2b5a491de0d", "text": "dark aesthetic photo, an Iranian girl amidst a chaotic street protest in Tehran, The scene is filled with tension and unrest, as flames from fire flares illuminate the night sky in the background, stunning surreal photo of an intense scene. detailed expression on her face. "} +{"id": "1005912", "video_name": "6c9e2936-86c7-5975-a0be-c0e589cf9cda", "text": "A final picture of Lion, now humble, standing with the other animals as they all share a newfound sense of unity. "} +{"id": "0006067", "video_name": "260f5797-3a1c-553c-b6cc-52184b073f4d", "text": "The intelligent machines in the city suddenly go out of control and launch attacks on humans, causing chaos and panic. "} +{"id": "0005806", "video_name": "2182c7a1-0b57-53ab-8c1a-4f95ad96fb77", "text": "alone is the woods at night, moonlight, anime girl "} +{"id": "3005968", "video_name": "772e20a1-db8f-5472-927d-0193804fb7d8", "text": "tyre bursted due to cold on highway "} +{"id": "4004508", "video_name": "6d161882-2819-51c1-87e6-50246c265fbb", "text": "a girl who is in the desert is looking at us, behind her is a lifeless plain of sands and barchans, the girl is pointing at us in surprise. "} +{"id": "6004731", "video_name": "4fc67dd4-45ac-5143-a03b-58fd1198fe74", "text": "On Christmas Eve, Jake gathers the courage to confess his feelings to Olivia. The revelation is a turning point that could either strengthen their bond or create an irreparable rift. "} +{"id": "2004088", "video_name": "fd9bf673-6f66-5010-9393-1d52b0c3db4d", "text": "a large wall equipped with screens displaying an endless array of faces,4k photo "} +{"id": "1004327", "video_name": "4fe871eb-c142-5756-b7d4-b19d6f745042", "text": "A battle between Jedi and sith "} +{"id": "2004510", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "a beautiful night in Madrid Message: Jhon (Font: MODERN) "} +{"id": "7004385", "video_name": "51ca764f-5270-52ba-8721-2e1b6b41bea7", "text": "A young person working in a bank in a desk with computer with lots of files "} +{"id": "2004063", "video_name": "b55153ed-934d-522e-abf6-f4c709149554", "text": "one pixar style badger looking through binoculars "} +{"id": "1005572", "video_name": "668f0f8c-c267-5d1c-81f8-a99ede97494a", "text": "The essence of creation flowed through the minds of the researchers, "} +{"id": "3005944", "video_name": "6ebb779e-89d5-5ba6-9748-e74c273d5d97", "text": "A man and a robot having a conversation on the moon, cinematic style "} +{"id": "1005617", "video_name": "67436975-1601-5931-b423-25efa92bf30c", "text": "woman with blonde hair and sparkling eyes, walking on an ice glacier, in 3d pixar style with mountain clothing, walking and laughing "} +{"id": "2006894", "video_name": "16e44b24-c555-5113-a3aa-27ae19890ca4", "text": "two cars on the race in golden hour at finish lane finishing simultanuesly "} +{"id": "0005232", "video_name": "1707eb5d-c7cb-56d6-a2d0-007349411aa8", "text": "puppy rushes to the kitchen, tail wagging, as his owner prepares his breakfast.\nWe see Max gobbling up his food with enthusiasm.\nHis owner pets him affectionately, and Max responds with joyful affection. "} +{"id": "7003819", "video_name": "04413c64-5b38-5fc3-a0ed-c42a34c053cd", "text": "a mysterious TikTok video about the history and health benefits of curcumin "} +{"id": "1006840", "video_name": "7d0c9357-8829-5e5d-99c9-aa0839e050ae", "text": "Thomas Shelby inside a yellow Camaro "} +{"id": "6003681", "video_name": "afff7b60-9b5e-549a-a006-a9785db558a1", "text": "anime child sitting with a black cat in a well kept living room watching tv "} +{"id": "3006566", "video_name": "cf6eb179-30d5-5ebc-8caf-c6aaa71dc635", "text": "Ice block ,flying in space,asteroids around,amazing beauty,high detail,high realism,4k "} +{"id": "0006728", "video_name": "31dcac1e-3868-521b-9367-74d07a427906", "text": "a bed time story for babies or toddlers with one lovely animal in the night time, there is some stars, galaxy background, the lovely animal is sleeping on the cloud, very comfortable and slient "} +{"id": "0004091", "video_name": "0309884b-e266-5c2e-91d8-df3845966fb0", "text": "With a deep breath, he crossed the threshold, stepping into a world frozen in time. late night, dynamic action and movement, angle changes, 4:4:4 Chroma Subsampling, 14 bit RAW video recording, log colors, 14 dynamic steps hdr, 21:9 "} +{"id": "0005727", "video_name": "203a55d0-2d21-575e-9cac-8b4c927cb68d", "text": "On the outside of the box are the names of different occupations. "} +{"id": "3003962", "video_name": "48e01b1b-fd31-516b-9cd9-417af29d1f4b", "text": "a father helping his crippled son to walk "} +{"id": "2007767", "video_name": "66e5e9fa-1b92-5960-acad-ec5226fa3913", "text": "recording studio 1940, black and white "} +{"id": "0006757", "video_name": "32760c80-fc1f-590c-ab31-c2a1e6abaef6", "text": "A bright and spacious art museum "} +{"id": "3004940", "video_name": "2ca22339-da06-52db-ae87-0077a6beefd5", "text": "video of a cute bunny eating in an adorable way a strawberry "} +{"id": "1004446", "video_name": "52444950-3745-5898-8efe-d2d085e2bbb5", "text": "an extreamly long dark cave opening in the forest with showering rain "} +{"id": "1004958", "video_name": "5b9d68fd-df02-534c-a1c5-3f8884ad993c", "text": "3d animation, close up, smartphone on bedside table lights up in the dark "} +{"id": "1006548", "video_name": "77f5f1f3-d559-50fb-92ae-686bf7c51c4c", "text": "dinosaur, eating in bones unreal engine five "} +{"id": "1006017", "video_name": "6e82eadd-e0ae-57d4-b6ce-6ebc903725e6", "text": "an anime style video of a person weraing a futuristic VR headest and rays of light coming from the headest to disply hologrpahic images in front of it "} +{"id": "8003750", "video_name": "7065c5c2-5372-510e-a0ef-07f47ffdc323", "text": "man climbing through a window to a bright blue sky "} +{"id": "7004086", "video_name": "22ad7a5e-a67b-5480-a26c-ea7eb42c6cee", "text": "sunset going over the beach with the sun going down and going out of sight "} +{"id": "2004228", "video_name": "69552d1b-e2d7-5f46-9f80-5e268b5b813d", "text": "walking briskly up to the entrance to an inside out igloo castle "} +{"id": "0004479", "video_name": "09b40894-f68a-5cb3-8996-d75020923c71", "text": "An orthodox Jewish woman with a shebis on her head happily welcomes her to her magnificent home "} +{"id": "3005729", "video_name": "86e38e8c-c3e1-5102-a093-59b0d2f3e9ad", "text": "A father saying something her young boy "} +{"id": "4002966", "video_name": "aefb592f-2183-54ea-a87a-b530aa2ccf92", "text": "leaves on the trees in eucalyptus forest rustling in the breeze "} +{"id": "8001894", "video_name": "6040a41c-47cc-5a46-b5ea-150329f87efc", "text": "a pond in between of Jungle "} +{"id": "1004516", "video_name": "53c98f86-498b-5f67-82ac-b5d3a82a876f", "text": "slowly zoom in as boy is slightly shaking "} +{"id": "2005768", "video_name": "a718c722-067c-5a58-b7e5-c80c1d518de8", "text": "Starting in 1967, Indian exploratory teams, "} +{"id": "0003722", "video_name": "425c3182-022d-532e-9320-bf8c18ed1c61", "text": "Forbidden City, snow, dragon circling, goddess Athena "} +{"id": "1004012", "video_name": "4a4afd79-96ca-551a-be9b-a991e7de2a5b", "text": "\u8001\u9e70\u5728\u5927\u6d77\u4e0a\u98de\u7fd4 Eagles fly over the sea "} +{"id": "7004332", "video_name": "ba518179-2a9f-5759-855d-bf97269f39f2", "text": "Show beautiful women smiling at the camera with spectacular and lovely eyes "} +{"id": "3003264", "video_name": "5bd8ec17-8948-5a84-ae35-6a3bac3c6224", "text": "a sidekick eating cheese in a green helmet, 4k hd, 3d cartoon "} +{"id": "6003493", "video_name": "aada1e1f-0f32-5d69-83ba-e4a5016bf713", "text": "an asian business man in exocostume firing from his hands digital marketing messages while smiling "} +{"id": "8001609", "video_name": "c34187a2-24c7-5546-af21-b9bc796b37a8", "text": "burn effect silent film person with octopuspot struggles,high resolution,noise basquit color palette "} +{"id": "3003050", "video_name": "5fd1c753-8cb0-5ab5-a8cf-1c0a055ec6c1", "text": "10 second video with London exploding from in the ground Realistic "} +{"id": "7004129", "video_name": "2542b7cf-255b-5eb1-87ca-0085d0925e5e", "text": "The crayfish have been grilling all along "} +{"id": "3006451", "video_name": "df9c7cd8-8135-515b-b3c9-c53e98ce87d4", "text": "a cat holding a fish whille running "} +{"id": "7002340", "video_name": "cbe1b361-562b-5c2e-82ab-930b3948aa04", "text": "group of men standing next to a large cannon "} +{"id": "5001634", "video_name": "cda5c907-e6c8-54bf-a7e6-333863c5c15a", "text": "The aluminum strips are densely arranged and undulating, sprayed with paint "} +{"id": "6004582", "video_name": "690ab42c-6f1a-53f1-a99d-a11649ba8c36", "text": "A white car was driving on the highway at night, with no cars around and street lights on both sides of the street ,HD,best quality\uff0crealistic\uff0c24fps "} +{"id": "8002534", "video_name": "abb808de-e3f4-5879-936b-00adf72c81f6", "text": "video of a child superhero flying into space "} +{"id": "1005529", "video_name": "65bf0bc8-17ac-527a-8a25-f20d19e59e09", "text": "blue sea dragon opening eye, zoom in "} +{"id": "8002541", "video_name": "169513b6-1a47-557b-96b1-c9fa7775a48a", "text": "A group of happy cute rabbits running surface "} +{"id": "4002052", "video_name": "dc019c84-a6db-56d6-a273-0515c61f07af", "text": "a spinning orrery made of yarn "} +{"id": "1006640", "video_name": "79b6b729-a548-540f-97d2-54d1f91f712b", "text": "empty white laboratory room with machines everywhere. "} +{"id": "7003356", "video_name": "e7a738f1-1955-5436-bc17-296879fac504", "text": "Beautiful woman wears a chemical protection suit. "} +{"id": "4004117", "video_name": "8c62482b-7fb8-5784-ba88-8c61275c325b", "text": "2 men figther in dark arena. one does a Karate kick. the other gets its nose broke. "} +{"id": "1005670", "video_name": "682b446a-cfbe-546d-9cec-b17d6c6e40a5", "text": "Wide shot of a Tesla Cybertruck driving from right to left on a Hong Kong street at night,extreme long shot,national geographic "} +{"id": "0003335", "video_name": "3bce927f-9506-5eef-b4bb-5de5bc9460e3", "text": "A cyclist pedals in a large motion circle, racing towards the finish line. "} +{"id": "1006551", "video_name": "780059c0-7322-53a8-817c-422f44ac5f5f", "text": "a 3d hoodie boy with blone and purple hair that cover the eyes who has purple and yellow clothes watch the night skyline from a rooftop "} +{"id": "3006662", "video_name": "a735b4a3-6598-5b54-affc-7b83226d9cb1", "text": "the door of the Soviet car closed, close up, black and white "} +{"id": "7002064", "video_name": "4b7c4fdd-2e40-5848-8ad7-b9188dda1feb", "text": "The project site is in a serene rural area near Rasht, surrounded by lush forests and gentle hills. A lonely, unpaved road leads to the property. "} +{"id": "8002581", "video_name": "019d4b48-b9c8-515e-8a11-72635e566958", "text": "Carlo Ancelotti lifting the cup, vector illustration style "} +{"id": "7003390", "video_name": "599714c9-1d90-5eab-956d-470babe540a2", "text": "the red is due to claystones (iron) and clays belonging to the Upper Tertiary period; "} +{"id": "2005087", "video_name": "233c86e1-1d87-5aa0-9144-c9ac2d79e10c", "text": "Colorful image of an enchanted garden, with colorful words floating in the air and a smiling girl, looking in wonder at the garden. "} +{"id": "1004845", "video_name": "598f0137-b2d0-552b-a9a6-4e1b92b45eaf", "text": "intense cenematec love scenes, dry waters in the background "} +{"id": "3005256", "video_name": "205a822a-6961-5a13-ab1c-29d335713bc2", "text": "bar scene cinematic where a white man with long red hair and blue eyes is walking "} +{"id": "8001039", "video_name": "b4dfa8fd-85f5-5e4f-8c74-b52675e7935a", "text": "Ivan Drago boxing against Mohammed Ali realistic "} +{"id": "1006892", "video_name": "7df340b0-af36-55dc-907a-8b5d1a2d484a", "text": "a video about human and dog "} +{"id": "8002789", "video_name": "dba36bb9-86d2-5233-9f62-ec981fbda6d5", "text": "A jungle Scene whith lion,birds, deer and lots of trees "} +{"id": "1004906", "video_name": "5ac363b7-9c46-5ba5-b65a-f263dd31a42a", "text": "in the midldle, facing the camera a woman in white astronaut clothes sitting inside of the big transparent bubble, full body, in calm joga pose, closed eyes, levitation, desert around, calmness, spiritual, scifi, very light pastel greenish colours, positiv energy, symetric, 8k, film "} +{"id": "8001577", "video_name": "f0a7498e-267b-5b1e-ad33-2582d5b11b1e", "text": "Cyberpunkcity. Dark but colorful black lights illuminate everywhere. complicated details. \u200b Dystopia\u200b "} +{"id": "0003128", "video_name": "37911c60-ccc6-5278-a147-f7182a04a138", "text": "shells, explosion, cyberpunk Mumbai city, futuristic tanks, macro slow motion, high octane render, high texture, "} +{"id": "8003233", "video_name": "682b9dc6-f989-57e7-bbcf-0f0a7e46bf13", "text": "thom yorke playing live, realistic, 4k "} +{"id": "2004749", "video_name": "97645157-a1f1-52e2-bf8f-bda85735063e", "text": "Poster announcing the release of a new live album from Velvet Underground in 1974. "} +{"id": "7003554", "video_name": "81c71deb-6395-5c65-b62b-5016cb01432c", "text": "old man looking over picture while jumping in the distance Message: 1 Attachment "} +{"id": "1003278", "video_name": "3c4a0728-c76b-582c-90ae-1f3a66a43570", "text": "a formula 1 driver with a blue car suit and a blue background "} +{"id": "6003216", "video_name": "c89504ad-fa89-5421-bc7d-26a05ab11799", "text": "happy new year 2024 in cursive handwriting "} +{"id": "0005091", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "A red gift box with red lanterns, couplets and fireworks in the background, the Spring Festival atmosphere. The gift box has a Chinese dragon pattern, a gold Chinese dragon. Open the gift box, there are red dates, bacon, cakes and so on. The gift box is closed, there are firecrackers, red envelopes and blooming plum blossoms, the Spring Festival atmosphere. "} +{"id": "7004977", "video_name": "c8aa35ea-9df7-5d8e-bc80-21e58765ebe9", "text": "i need to know your soul "} +{"id": "3006271", "video_name": "62787160-04c6-57e8-9ba1-aba11398730d", "text": "How can the visual representation capture the pinnacle of happiness in this moment? How might they showcase their individual uniqueness in the laboratory setup? "} +{"id": "7003735", "video_name": "c6782f7b-72e1-5f7d-aab6-20eb25c042a0", "text": "a glowing sphere slowly rising out of a dark bath tub "} +{"id": "0005625", "video_name": "1e51ac14-678a-5108-8af5-24d075c166f0", "text": "Young woman wearing short minimalistic red dress walking in the evening in Moscow city. Summer, 18:00. Video Resolution: 4K. Hyperrealistic, High detailisation "} +{"id": "5001703", "video_name": "7d453804-ffad-58db-8be5-bead8d1aa79b", "text": "man playing with Talking and Friends "} +{"id": "1004867", "video_name": "59edb5c5-9ec3-5b7d-8b81-e11bec7d4770", "text": "girl disney pixar talking front a mobile phone "} +{"id": "4003465", "video_name": "3819c707-9af3-50bd-80a5-665fe801ed6c", "text": "A boy standing on train facing towards crimson red moon sky "} +{"id": "2003910", "video_name": "cb325c17-9605-5ba6-9d93-2c615d37c0c8", "text": "upclose portrait view of Mark Zuckerber playing guitar in a heavy metal band shredding "} +{"id": "1005219", "video_name": "6017152a-ce5f-5fef-8ee6-a6b1f6fb94ad", "text": "rakshabandhan celebration with sweets,diyas,fully dressed kids happy faces,gifts "} +{"id": "8001051", "video_name": "e36d962f-487c-5a36-b65f-810341c7ac82", "text": "Lake Lucerne, view from Kriens on lake, in black and white version video "} +{"id": "8001404", "video_name": "059aa030-6b68-55d3-b34c-51ace1c61a92", "text": "a very beautiful girl sitting in meditation "} +{"id": "1005385", "video_name": "63023858-319b-54bf-8dab-85ca18d60fb9", "text": "scary liminal space with a shadow one it "} +{"id": "2005252", "video_name": "05443f4a-080e-56a8-a917-f6dc371b58a5", "text": "philosophical and societal implications of humans attempting to control time "} +{"id": "4004699", "video_name": "79c1c063-5b32-5bdc-bd06-c08ea6a59bdf", "text": "A young man with a peculiar appearance, he is teased by his peers ZOOM IN "} +{"id": "6004312", "video_name": "6156d816-3f58-5c10-a239-c4f221e5ec21", "text": "King Dasharatha, having immense faith in his sons, agreed to send them with Sage Vishwamitra. Ram and Lakshman accompanied the sage, and during their journey, they encountered various challenges. "} +{"id": "5001952", "video_name": "cc61c040-3c6b-52fb-85be-001f576097d3", "text": "Cyberpunk style, a man walking down a deserted, narrow alleyway, the camera shoots away at his feet. "} +{"id": "6004421", "video_name": "f88a44ce-1937-5be1-9cbd-cb293fecc24e", "text": "hand holding a burning coal and the hand surrounded by a flame "} +{"id": "0006703", "video_name": "3169a288-754b-59c2-a090-ed154e94ea66", "text": "cinematic shot of elf in city "} +{"id": "0005160", "video_name": "15cd75be-994d-5b20-834b-956a5462f007", "text": "a bike go through toa tunnel "} +{"id": "0005163", "video_name": "15d7813d-ad98-592b-9b0d-47921adb4fd4", "text": "Chris Nolan castlevania with lily Munster and Keanu reves "} +{"id": "3005609", "video_name": "8992698a-d7a6-5955-8ca3-06305863b5a5", "text": "generate a beautiful chinese dragon, side view, colorful, in the style of Anne Stokes "} +{"id": "5001003", "video_name": "22738328-fb65-555f-9142-1e8b71a7c619", "text": "golden solar system with a dark blue background elegant rotating minimalist aesthetic "} +{"id": "8003367", "video_name": "a343bec2-81c5-55be-bb0b-5f5bc51fc194", "text": "in the distance in the forest, several surprised goblins "} +{"id": "5001584", "video_name": "01c05e56-b058-52fd-98ab-b28b7610d341", "text": "a person exercising, very realistic, 8k "} +{"id": "0003122", "video_name": "376bda75-870f-570d-9ef3-7a2657e2a01f", "text": "dreaming thoughts that inspire you, 16:9 "} +{"id": "3005617", "video_name": "cc213ca6-31f5-5e78-b89a-c7108599c258", "text": "man making a rock levitate using his mind powers "} +{"id": "5001607", "video_name": "02f19345-ace4-5e8f-bc9a-0fd26f3cb417", "text": "vintage film style bustling 1920s new york city street quality video 16:9 aspect ratio 4k resolution "} +{"id": "7002653", "video_name": "75c79f27-8e31-5ce2-92ff-7eb3b4a64b4d", "text": "single frame in an infinite film "} +{"id": "0006950", "video_name": "35b8d6eb-d6f7-5dda-9e6e-b41bd99dd0a7", "text": "A Robot getting a soda out of a vending machine "} +{"id": "8003358", "video_name": "7f6a8283-32eb-5e5a-ae0f-0a5f8927b2d6", "text": "waitting in a room with a dimly lit room, film look, 4K "} +{"id": "0004853", "video_name": "10500d63-3f33-57ee-9894-17d173057527", "text": "person siting on chair on road animation "} +{"id": "8001419", "video_name": "f17ee646-6e9e-59d9-bfe0-7e43876a8e60", "text": "a tounge moving side to side "} +{"id": "0006997", "video_name": "3666b3f6-78b2-5b06-947b-58a0d041f7a8", "text": "Freshly baked French fries fly out of the frying pan in the blink of an eye "} +{"id": "2007335", "video_name": "60ed587f-2783-5d6f-aa3a-9aa20c8967d7", "text": "pretty woman play the billiards, high quality "} +{"id": "4004357", "video_name": "de87af2a-4c83-57af-b476-8da131cd3c54", "text": "A boy and a girl joyfully running in slow motion through the park among the trees. "} +{"id": "0006186", "video_name": "27e22c02-6f60-58aa-84b6-dff16cc5586a", "text": "blonde hair and twinkling blue eyes. two girls age 25 was sitting on a bench, fontsides looking a bit sad. youtube short size 9:16 "} +{"id": "3004560", "video_name": "9edb8e71-03d5-5e5c-abe5-ff742994c10a", "text": "A man lay down straight under a tree.The bear came to him and smelled him and went away "} +{"id": "3003925", "video_name": "987b774a-d999-566f-bbf0-be7fafdd4fc9", "text": "create an ipperealistic image in wich Bono Vox is talking to Yoda under a neem tree in the middle of a summer savanah in Namibia, in the background we can sense the ocean Message: 1 Attachment "} +{"id": "3005966", "video_name": "520b5519-5624-5378-9453-1c7740ef3d1c", "text": "moving Nightsky with Stars. The Nightsky is reflected in a pair of sunglasses on a womans face. The scene is in a Cyberpunk style "} +{"id": "7003307", "video_name": "6191a80e-19bc-5580-8909-8cdde051dd17", "text": "a family sitting at the dining table and celebrating Christmas, snow, window camera, Christmas tree, night time "} +{"id": "4004919", "video_name": "1a989c0b-e158-59ff-875d-d9f88edd6fa1", "text": "Australis, a mythical landmass that was believed to exist in the southern hemisphere. Tasman did not find Terra Australis, but he did encounter New Zealand and some other islands that were part of Zealandia. He also met the local M\u0101ori people, who told him about a large landmass to the east. "} +{"id": "3005486", "video_name": "f127b195-f19f-57a6-9921-1af6ad45af48", "text": "very dangerous Ghost on road in night "} +{"id": "5001029", "video_name": "183846c8-fd55-527e-967b-8ca30423e845", "text": "a Inflation model shaped like a chair "} +{"id": "4004138", "video_name": "c91dc323-1e11-526d-9a38-0235016337e8", "text": "lived a mischievous cat named Tom and a clever mouse named Jerry. "} +{"id": "0003683", "video_name": "41a5b77a-563a-5309-9e05-78a88dc3953f", "text": "an Indian woman talking to a beautiful girl in their village hut while a man looking on at distance "} +{"id": "2007556", "video_name": "5ec8b87d-5835-588a-a421-8833cebe9edd", "text": "the liquidation of an ice cream "} +{"id": "1003670", "video_name": "4396872f-ea9a-5816-8882-6ae1b7070089", "text": "A Brazilian boy can have black, brown, blonde hair. They may have brown eyes, they are usually very friendly and like to play violin, with a shirt from Brazil "} +{"id": "4004606", "video_name": "d3c4c986-76a8-56c6-9d98-27688cd919db", "text": "white elephant baby sitting near a blue lake in a forest with green trees "} +{"id": "0003515", "video_name": "3ede23f9-79af-5f7f-8f88-5929475cf13e", "text": "cow wearing golden ornaments white colour cow "} +{"id": "5001266", "video_name": "bf60a0c8-94c4-57d5-90aa-517c43bf8d7e", "text": "The Epic Liftoff: The ground squadron members prepared for liftoff in the center of the launch pad. You can describe the technical details of the spacecraft and the tension in the air as they prepare for the daring mission. "} +{"id": "3004426", "video_name": "2a74cfc6-5109-5470-865c-1d5d07b358aa", "text": "winwood walls style image with movement "} +{"id": "7003225", "video_name": "2d9c319b-0245-5242-83e5-66e127ebe4d1", "text": "a couple in a vhs store in the 1990s alternative grunge "} +{"id": "8003373", "video_name": "e7357444-e9bb-573f-8083-88c0b64bd305", "text": "recording studio, moog synthesizer, neon lights, movement, high quality, turntable, Kuali Tika, Psychedelic trance, mapping, "} +{"id": "5001327", "video_name": "ae05de9e-dd59-5b3b-82b5-fc8aa4d5f931", "text": "A giant panda and a red panda stroll in the bamboo forest, the sun is shining, 8K "} +{"id": "4004243", "video_name": "4228285e-8f09-5157-a634-7091c8a84169", "text": "steampunk man walking down street of war ravaged steampunk city, gears and cogs, film, cinematic, salvador dhali style, gs 10, ar 16:9, motion 2 "} +{"id": "2006657", "video_name": "9fbab088-71a7-525d-b2a3-5a0a3a3f52dc", "text": "Najafabad city of Isfahan in the future "} +{"id": "1003897", "video_name": "47f3b15f-3d44-56a0-b47e-f3e56c9c7d97", "text": "A scrolling list of names expressing gratitude to supporters and collaborators. "} +{"id": "0004744", "video_name": "0e8ba3b7-8152-5e69-ab95-21f3ba4543ee", "text": "15 year old pakistani poor girl is walking down the street wearing hijab full body in the style of cartoon "} +{"id": "2007008", "video_name": "d474477d-7190-524b-9113-9fe8f5fc2678", "text": "front view, afternoon scene, a professional shooter, standing on top of a building in Timbuktu, videolapse view, cinematic, 8k "} +{"id": "7003643", "video_name": "f113bbcb-4329-5e71-b1fa-969e63904a37", "text": "Slavic God Perun smiles slightly, slow motion, 4k high resolution, no blur, slow motion zoom, stabilized background. Hyper realistic. 3D effect "} +{"id": "2003908", "video_name": "44390b06-49d7-5620-8983-94831385ab20", "text": "Using the attached picture as a background, it depicts a big orange cat drinking mutton soup on the table. A plate of dumplings is placed next to the lamb soup. "} +{"id": "0006451", "video_name": "2cc9e06b-0e3a-5b67-b28d-eeae9d08f7fa", "text": "morrowind mushroom city of elriel in dead girls god dream "} +{"id": "1005347", "video_name": "6252bf15-4642-5b10-9b3f-b0b3c6e62a23", "text": "Close up scene of a person drinking coffee in a take away cup, the cup has to be mainly pastel light blue and light brown, the take away cup has to have a logo that says CAFINNITY. "} +{"id": "6004027", "video_name": "3fe671c1-29d2-59dc-ac29-fe4b9a052082", "text": "saturn god slow motion and erratic fluctuation "} +{"id": "8002772", "video_name": "4e70f369-f79f-54b6-9ff8-7e3172414d9e", "text": "Portrait of a 25 years old man setting on a chair in a studio, looking straight to the camera and center, a laptop on a table in front of him, he is talking to the camera, wearing a hoody, colorful, cyberpunk, portrait, setting straight, font view "} +{"id": "3003106", "video_name": "2584f96d-c1a4-5bba-b4d5-d258b60ae091", "text": "the girl sleeps on a chair in a moving train, stars are visible from the train window, night, cinematically, beautifully "} +{"id": "2003642", "video_name": "b00acb42-6d54-5082-a6a8-04d3bc14843a", "text": "The Vaquita, a small porpoise endemic to the Gulf of California, is the most critically endangered cetacean, swimming in the ocean "} +{"id": "1004100", "video_name": "4be30f6e-3526-5d2c-a7cb-5463c2050e9d", "text": "cats flying through space, night scene, shooting stars, disney animation style "} +{"id": "4003561", "video_name": "d4a0d1d4-edbc-5b0d-a39d-a7933ec3008c", "text": "white orchid sprouting up out of a block of cement "} +{"id": "2006488", "video_name": "5bbd89b9-c487-55a1-86f7-83987d4ee20f", "text": "a strange world with strange and psychedelic shapes, soft colors and dark, sharp tones, with a cotton texture "} +{"id": "7002532", "video_name": "fb354828-7990-51de-a4eb-24fb993b1530", "text": "just animate her lips, eyes and body "} +{"id": "4004454", "video_name": "ed16eefb-8e44-5d4d-ae18-71ce19b79953", "text": "360 degree camera movement around young handsome Asian man wearing a metallic silver coat "} +{"id": "0004766", "video_name": "0ee19d2b-13ee-5451-9d32-6557beb0031f", "text": "the kitten washes its paw on the chair. "} +{"id": "3006685", "video_name": "a4d4dedd-2a78-55da-be89-c2f3f3857513", "text": "mother Aditi starts worshiping, wishing to have a son. After this worship "} +{"id": "6003254", "video_name": "854c15e5-d4da-510a-a0be-9d071b646c21", "text": "wind blowing into house and things are shaking "} +{"id": "4003271", "video_name": "dfbb3d71-3e08-5d32-836e-1876100b0a4a", "text": "A girl with her friends playing in the garden "} +{"id": "2005781", "video_name": "83d40f1a-a279-543e-a439-f26623ac918e", "text": "an owl sitting in a tree tekking a story as the moon glistens reflecting on beautiful owls eyes realistic\n pixar style disney detailed 3d hd ultra "} +{"id": "2006498", "video_name": "5b7002f6-e352-5a8b-9b75-b69793e1c8d6", "text": "Racing in the jungle on golf carts. "} +{"id": "6002984", "video_name": "5df6a772-75fb-5cc1-94eb-ea7a6790d1de", "text": "A man leaves the house, carries a suitcase, leaves his family "} +{"id": "1004971", "video_name": "5bda6d0b-088e-5839-bdd8-b54f8ce36aff", "text": "in england, people are escaping the city, fire is spreading everywhere, lightning strikes became worse "} +{"id": "5001770", "video_name": "83c8af0f-0c65-5ad1-864a-984fd5b0bec4", "text": "a white dog with a red scarf around her neck Message: Felicidades Guille (Font: MODERN) "} +{"id": "7004372", "video_name": "0a27fd94-096b-514e-880b-d22b0eaaaea1", "text": "windy, girl\u2019s hair softly animated , girl blinks naturally "} +{"id": "2006672", "video_name": "e3678e3f-e65d-5d01-ad0b-97a34cda68f6", "text": "pride deadly sin in human body night dark location cinematic background epic fx volumetric light 4k "} +{"id": "6003225", "video_name": "56e56d0b-13f7-50b8-9849-3f84c764e798", "text": "Draw a ghost wandering in the office "} +{"id": "8002623", "video_name": "e5f5e656-76f6-5269-ac33-3d5c62b6c011", "text": "a zoom in close of a love heart with letters B and E "} +{"id": "2003860", "video_name": "5e901702-42d9-5416-9fa5-ea5a68cc23ca", "text": "the evill goddess gaia emerges from the shadows "} +{"id": "2003591", "video_name": "e144c213-f455-5438-8ff5-fb2a6ac58600", "text": "Awakening, A sun rising over a meadow. "} +{"id": "3004661", "video_name": "9f2cd656-049a-50d2-9c43-736cbbd773ce", "text": "Create a scene where Emily places the key from the journal into the circle of wildflowers in the meadow, capturing the magical transformation as the secret door to Imagination Island appears. "} +{"id": "8001446", "video_name": "97afc09a-0c53-55d1-86e9-527c497c5fa7", "text": "asian woman in sakura tree sit in the rock with light sable "} +{"id": "8001824", "video_name": "f4d34f62-79e3-5070-9e7a-1f3e4a6938d7", "text": "unrequited love alone in the cold "} +{"id": "3005993", "video_name": "95d20000-9599-57d7-b1d6-a505bd20cfa9", "text": "Benazir Bhutto the former Prime Minister of Pakistan taking her hijab down smiling to the camera, DSLR, calm, afternoon, fancy goverment office room "} +{"id": "1006611", "video_name": "792d01c8-10a9-50f5-a628-85ee5ed769ee", "text": "1 In a place with a dark background, a tornado butler with Michelin elements was thinking in front of the camera and then answered some questions, and finally flew to the screen with two white cards. prompt: "} +{"id": "1005818", "video_name": "6ae868e1-8199-5fb0-9a96-83c5f08d1694", "text": "a man is kicked off the ground, and fly very high, and then droped on ground, and lied down "} +{"id": "2004838", "video_name": "4360c8dc-8223-577c-924e-d74e822a23de", "text": "black crow eye opening close up forest with fog "} +{"id": "5001487", "video_name": "334be362-126e-5ad2-868b-888c22ec2b59", "text": "for the squirrel in the magical forest, every day was a new adventure filled with friendship, laughter, and the joy of discovery. "} +{"id": "1005393", "video_name": "632ebff3-08f6-5d17-b573-bb158dee46df", "text": "35mm footage of downtown Detroit during a snowy night in December 1979 "} +{"id": "3005976", "video_name": "967f1ede-796f-5d2f-b8d1-abf43aaa1802", "text": "cinematic,very detailed,people dancing in the background "} +{"id": "2007860", "video_name": "03bbf6a8-2078-567f-831b-6a096ead37b2", "text": "a funky base guitar playing anthropomorphic cat, on stage at a nightclub. "} +{"id": "3005199", "video_name": "df23d03f-64c1-5d71-9b43-2598991d00b4", "text": "A sprout grows from the seed until it becomes a coffee plant, the beans mature and are harvested, the plant dies off to disappear only to be reborn from seed and continue the cycle of life. "} +{"id": "1004252", "video_name": "4eb53af0-3816-5c95-bc10-3bfbc3447fcd", "text": "a fast and long electric train driving along a railway passing distant cities, up view "} +{"id": "1006629", "video_name": "7989ea62-240e-50af-87bd-dfd97a159cf6", "text": "snow landscape , snowing around, glowing colorful butterflies flying around "} +{"id": "3003849", "video_name": "eb45e73c-2887-5194-9748-0c11894e6b48", "text": "talking. While other fireflies could only emit a soft, yellow light, Sparky could change the color of his light at will. He could glow red, blue, green, and even shimmer like a rainbow. "} +{"id": "7003451", "video_name": "93275908-055c-55cb-9743-9d8ce31358c4", "text": "an old footage of an apple with human face "} +{"id": "3006979", "video_name": "f22f5bac-2634-56cd-8887-d70e25326694", "text": "couple dancing rock and roll on the mountain "} +{"id": "2005887", "video_name": "beb0c664-5961-586c-9700-8344d4c954a8", "text": "the electric guitar plays itself, the strings move "} +{"id": "7004681", "video_name": "6ab99fcf-6081-593c-9617-fbfe9094126b", "text": "North Korea, Kim Jong Un, North Korea FLAG, "} +{"id": "4002468", "video_name": "7e6e205f-c3f2-565f-aa7a-bab07152274d", "text": "snell and turtle in a race. "} +{"id": "3003413", "video_name": "07da7d5c-cdc6-5048-bdc0-fcdf59941ab2", "text": "fighter UFC Conor McGregor fights fighter Islam Makhachev in Abu Dhabi on a rainy day "} +{"id": "6004735", "video_name": "da24c17f-3a5f-58a0-987a-7b0f85ff0509", "text": "A beautiful and sexy Chinese girl, with a curvaceous and slender figure, wearing a seductive bikini, is playing in the sea and splashing water towards me. "} +{"id": "4003199", "video_name": "0d6e01e6-e089-5f9b-98b9-a9a3bcd7ec2b", "text": "a mascot for the 085 digital brand, reminiscent of the Brazilian northeast (a cactus or beach), it must follow shades of purple and blue "} +{"id": "2004316", "video_name": "424a81e8-9a20-5eb6-81de-8066585ae851", "text": "racing cars, flashing headlights, motion blur "} +{"id": "0005877", "video_name": "22a4b8f2-c806-507e-aa1f-31367b81cfb9", "text": "Here is the animated scene depicting a young girl watching a playful rabbit hopping in the grass. This image captures the moment of innocent wonder and joy in nature. "} +{"id": "6002050", "video_name": "dfdb654f-6493-5666-b075-3d005caeb4ca", "text": "represent a nasty character as a vulnerability trying to exploit a computer system and a super hero type character representing a hacker (pen tester) finding and fixing that vulnerability and giving the report to its client. "} +{"id": "1006963", "video_name": "7f6a8241-7fc1-50c0-8605-14913e406f1e", "text": "king Shango orisha handsome Man, Very muscle showing "} +{"id": "0003862", "video_name": "44cd9d37-d260-556d-b48e-5865e2966910", "text": "look at my new shoes fun "} +{"id": "0003080", "video_name": "36a24a5d-5607-5df4-8d23-e465272bb7e3", "text": "a vehicle being tracked by an IOT GPS device "} +{"id": "8003471", "video_name": "9cf4178f-7de1-5f10-8b4b-81dde5f8f561", "text": "Crow spotted a weak point in the sandbag barrier, and he alerted the villagers cartoon style "} +{"id": "0005909", "video_name": "2319a21e-75e2-5b94-a91f-c287b696cb4f", "text": "Mr. Mackey teaching the dangers of drugs "} +{"id": "3006088", "video_name": "d568a2be-d63a-5e70-8d56-5214d135e8d1", "text": "tiger was chasing a boy in night mare "} +{"id": "7004701", "video_name": "1cbbe869-d943-5535-ad1f-d6f50e4c3c42", "text": "a modren room , 4k quality "} +{"id": "3006069", "video_name": "83b1d630-f042-57fa-ad93-d270904f3e8e", "text": "little young student girl walking in the snow "} +{"id": "2007997", "video_name": "1cd9898b-3f13-5e57-a50c-2edf88f81849", "text": "white wall, silhouette of a office lamp falling first from one side, swinging and then snapping off and falling to the ground "} +{"id": "0006763", "video_name": "32a19a56-876b-58e0-b114-cdd895bd8ad6", "text": "a video featuring a young and an elderly man dressed in red attire resembling Dante Alighieri, riding a giant white armored eagle above an icy city of skyscrapers made out of ice. "} +{"id": "8002108", "video_name": "c51d7ebe-5bfe-514a-b1fe-0d171c07a742", "text": "playing cards with my robot panda she is so excited about winning a great hand people walking by "} +{"id": "4002746", "video_name": "52af83e0-8760-5448-bb63-b71477887de7", "text": "A cozy coffee shop with warm, dim lighting. Jason sits alone at a corner table, sipping coffee and reading a book. The aroma of freshly brewed coffee fills the air, 4k, realistic, cinematic style "} +{"id": "0006014", "video_name": "250147ad-864c-5838-8c8a-de11d572c556", "text": "chevy trax moving on the road "} +{"id": "8001034", "video_name": "0a4ac82e-3b74-50a3-8359-0b0987d3192c", "text": "node network depicted on a laptop screen "} +{"id": "4004149", "video_name": "e5d3e349-a329-5953-b898-384d30b86c40", "text": "man gets swallowed up by computer (PC, ECRAN, TELE) "} +{"id": "5001765", "video_name": "60c33fb5-8ba3-5ce4-b280-b9a9462bd7b0", "text": "30 year old Indian girl standing wearingpink saree dress, westen style , black hair, little white skin colour, eyes blue , 6 ft height girl ,skin shine , high details , little smile face "} +{"id": "0003872", "video_name": "44f5d9a2-d7fa-542f-bd10-162b5bc708d6", "text": "night time full moon and lose up short 4k "} +{"id": "7004983", "video_name": "df5b66ee-dfa9-549b-9175-a37e6d51a7b6", "text": "Hamburg central station camera zoom in "} +{"id": "7004547", "video_name": "a081b467-2852-5c21-ab19-6ad9a24d4e54", "text": "make it more festive and Christmas like in the background. Make her hyper realistic human life, smiling, dress bright pink. "} +{"id": "8003838", "video_name": "bd97faf5-8eda-5850-a8b7-59f966564e3b", "text": "A young woman who has lost her faith sets out on a pilgrimage to a remote monastery in the mountains, hoping to find answers to her questions and regain her spirituality. "} +{"id": "0004610", "video_name": "0be30e73-2e89-549f-bc4d-8fc5ac6a520b", "text": "Team Rocket disrupts the peaceful servers, causing emojis to go missing, channels to glitch, and messages to get lost in the digital chaos. "} +{"id": "2007847", "video_name": "a235164a-af0b-5aa4-9f1f-4b98fd5f0fb7", "text": "Photographs that convey courage and bravery. "} +{"id": "7004722", "video_name": "61ec16f9-9daa-53a1-8611-72a236bc356d", "text": "people talking to eachother and one boy steering at all crowd at front of gim "} +{"id": "2007192", "video_name": "125c73dc-4e33-50f8-8dbd-0ff6716a5926", "text": "Aerial video of a mountain of Buddha statues "} +{"id": "4004959", "video_name": "690fbccc-c210-510a-91be-1d5088522159", "text": "Cinematic starting shot of group of friends standing next to each other l, smiling and ready for an adventure "} +{"id": "1005909", "video_name": "6c9c24fa-0df7-572e-ac1d-18a0afc3b3db", "text": "a beautiful camping site with trees, river, dark starry night "} +{"id": "2005608", "video_name": "c81a716e-3ed5-511a-a33c-f9f2bb7cf33b", "text": "Samurai, Sword fight, high intensity, movie "} +{"id": "3004004", "video_name": "f37af2a3-6407-5097-809a-1f6e1d2e037a", "text": "a beautiful girl dancing in a room, realistic, cinematic, video "} +{"id": "2006313", "video_name": "2ee38e30-9f4d-5162-9464-8917704a8820", "text": "a relalistic golden bar ingot spinning on a white background with the text SORTEO "} +{"id": "8003390", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "Zoom in to show Lily walking through the village square, radiating kindness. 8k quality "} +{"id": "7003248", "video_name": "6e2168d5-60c8-5601-a4e8-f1096f6c6c4b", "text": "a beautiful talking on Iphone 13 "} +{"id": "0004154", "video_name": "043e39e7-be2d-5332-82ae-f135553cebb5", "text": "nanoscopic view of black water wave crashing inside white petri dish black,white grey color palette with warm undertones "} +{"id": "3005068", "video_name": "f23fab96-1a76-5a25-9950-f101bb7be8be", "text": "A selfie of a civet cat in front of a pyramid at sunset, cartoon comic "} +{"id": "4002495", "video_name": "db31a8c8-3e83-50bb-bd76-94ce8b6be1d5", "text": "rahul gandhi animated version in 3d child like feature "} +{"id": "2004704", "video_name": "617e5012-9332-5c9f-99f2-5d3893d9e8c0", "text": "Happy New Year 2024 with Artificial Lights "} +{"id": "0005434", "video_name": "1ac58848-6f7f-5680-8376-8ef56b6d908d", "text": "an old man in Pixar style "} +{"id": "4003448", "video_name": "c2556a04-4403-578b-b061-1f5a86d552d5", "text": "Manchuria was referred to as Chinese Tartary, "} +{"id": "2007438", "video_name": "7d251b99-c663-59f7-b752-6790ae133425", "text": "sitting on window, raining outside and a train passing by "} +{"id": "6004326", "video_name": "b54bebb0-f023-583a-90e9-ad3e07a7a581", "text": "stunning club party laser show inspired by starwars "} +{"id": "2003126", "video_name": "c4b991fb-c935-54b5-b8bb-df264720a564", "text": "anime girl with white hair smiling at viewer and flowers flying "} +{"id": "6004631", "video_name": "bac33899-8c32-5818-83c8-9736a40fb7b8", "text": "Samourai doing a ritual at night "} +{"id": "1006247", "video_name": "72773f14-a716-5c92-a540-82d19deede8e", "text": "An Attractive ripped Woman is entering to the gym. Zoom in to her head. Zoom out to her body. front view of her pose. show the whole body. hdr. photorealistic "} +{"id": "3006925", "video_name": "5b87074b-fda2-5b0d-8e1e-4075cebe2e4d", "text": "cute red robot with base ball cap is dancing to house music,motion 4 "} +{"id": "3006766", "video_name": "630313ac-e2c9-5eb2-8647-6c753ad4e623", "text": "As time went on, Lily found herself standing in the same park where her journey had begun. The sun was setting once again, but this time, it painted the sky with hues of hope "} +{"id": "7004485", "video_name": "1bf6e4d6-6d85-5052-be5d-3141d01576d2", "text": "Girl in black dress riding bicycle on the forest feeling the wind on her face. "} +{"id": "4004276", "video_name": "1c8f5cba-4588-54fc-8c0b-908113c9725a", "text": "A large rectangular living room of a reinforced concrete house, wooden floor, with one side fully glazed showing a beautiful Japanese garden outside, with a modern white sofa and two Barcelona armchairs, with a fireplace in the background "} +{"id": "7002240", "video_name": "83f5efbc-46db-5359-85e0-6694a2f37af2", "text": "tom cruise and tom and yorkshire terrier "} +{"id": "2004839", "video_name": "682da112-5b90-5dab-a0d6-31dac41070f9", "text": "A blonde is drinking a cup of coffee, blue sky, sunny "} +{"id": "2006814", "video_name": "42662b4d-3afe-55b0-9b1f-81b380c2c888", "text": "female content creator in the pool throwing money in the air "} +{"id": "3004440", "video_name": "06a197ca-3a7f-5085-9dc0-aebb1e2a9744", "text": "Jesus Christ teaches at the temple "} +{"id": "5001907", "video_name": "04d286b1-377b-5833-8dc2-2d0bf247b467", "text": "This story not only showcases the resilience and determination of a young child but also the power of community and how small acts of kindness can make a significant impact. "} +{"id": "1003106", "video_name": "393195e7-4cce-5a8d-bac4-ac9e1197fb0e", "text": "Advanced medical nanotechnology used for the treatment of diseases. "} +{"id": "2006453", "video_name": "5848b6df-8c73-5d77-b33d-369edb757da9", "text": "On Christmas night, fireworks bloom. The text appears: Happy Christmas!\n\u200b "} +{"id": "2006064", "video_name": "74c75aae-57d2-5111-8a50-6f39375e4695", "text": "a man and a woman went on an adventure cinematic view "} +{"id": "1005514", "video_name": "6582a2f1-727e-5386-992d-ef5a11adc3e2", "text": "An young child with broad, golden wings stands on the stage, delivering a passionate speech, while their beautiful wings continue to flap rapidly "} +{"id": "8001486", "video_name": "4144044a-e3ce-56c8-a1b5-fe7701c65344", "text": "woman at desk with large stack of paper left and right, in a dark, 3d style "} +{"id": "4004925", "video_name": "cdb34dce-658a-5dbb-889f-26d2ead1bb00", "text": "fountain crossing animal cow tiger lion gorilla elephant paint "} +{"id": "8001551", "video_name": "0f507c71-d30c-5451-b20f-e4c87fe5c538", "text": "13 glasses with different colored drinks in a bar with neon lights Modern futuristic comic style "} +{"id": "6002639", "video_name": "89e95840-9041-58e2-bfc2-9f9e2d512da8", "text": "1990s experimental French film, cows exploding, paranoid man man watching 4K, 16:9 "} +{"id": "3004501", "video_name": "0f90e158-6ea7-5d2b-b13e-d6d0886c0ad4", "text": "a crow flying and sitting on a pot, ground is green sky is blue and light coming from the east, the crow is also flying from the east "} +{"id": "7003471", "video_name": "429246fc-33ca-595c-b04d-a3a67435e122", "text": "3D cars race. Nascar on night during rain "} +{"id": "4004173", "video_name": "fa6af98a-757a-5986-89f4-c6413e0e3a7c", "text": "the full moon shining down on the countryside "} +{"id": "3005725", "video_name": "a8275f87-cd0e-544b-ab90-07eb9730ea8c", "text": "soldiers engaged in a epic battle. Dynamic sword action "} +{"id": "4003178", "video_name": "769d6787-53d1-5665-9953-5ba538c54f1f", "text": "Dark night, a car driving through heavy rain towards a small town. Raindrops hit the car windows, lights of the distant town are barely visible, creating a mysterious and tense atmosphere. "} +{"id": "0005039", "video_name": "1391745d-3b07-5994-8fe8-bb2de8f7f051", "text": "the most perfect image you can generate "} +{"id": "7004637", "video_name": "e031a518-29d9-5867-ad41-843c98995af0", "text": "careful to return to his nest before nightfall. "} +{"id": "2006311", "video_name": "7139d85d-6627-5499-aef9-f31b9de379d6", "text": "bmw e60 m5 rides in california and everyone is waving her hands "} +{"id": "2004603", "video_name": "5e494ab3-54eb-5092-b0fe-0ea3f7a0df45", "text": "ghibli style, a girl walking in a common bean field, the plant full of beans, blue sky and white clouds. "} +{"id": "8001103", "video_name": "52e67f03-ee65-51d9-9873-8b6981ebf046", "text": "paint falling onto a frame forming a picture "} +{"id": "2007114", "video_name": "7cdb6fb3-7dea-5ac9-93d9-0e4c20ff0271", "text": "a man walks towards the sunset on a beach, surrounded by cats "} +{"id": "3005773", "video_name": "a3cef2db-b34f-586a-911a-bae4c68d7695", "text": "Palace Square, medieval times, lots of people, women fighting with their husbands, shouting, throwing things around "} +{"id": "3005505", "video_name": "452e5fc0-7c14-598a-a556-ead555ce9711", "text": "wolf in a foggy woods looking down at us "} +{"id": "8003348", "video_name": "b74f4ffb-e44d-5963-958c-4bfc20269251", "text": "Man is standing from sitting position because of anger "} +{"id": "2003901", "video_name": "b42e5f98-1327-526c-bcd8-6c70767fbfbf", "text": "magical academy building with a canal in front of it surrounded by fantasy city 16:9 "} +{"id": "6004801", "video_name": "8eac4459-65d6-51b9-a95c-38480fdd5bc3", "text": "a beautiful Indian woman performing yoga with forest and waterfall in the background. make the video realistic and ultra hd. the woman must be clearly visible in the frame "} +{"id": "2006706", "video_name": "117cd5bc-d57d-521a-9fb7-d9037e192edf", "text": "surrealist installations floating exploding car 1990s feeling , ne american color phoyography "} +{"id": "0005034", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "Scene: A traveler is walking alone in a lush forest "} +{"id": "3006010", "video_name": "804f8337-83a0-5c67-b459-e1e12e7e30e2", "text": "The monkey showed the snake his favorite trees and fruits to snake "} +{"id": "6004306", "video_name": "b641f947-dd4b-5c59-b834-0a3d70cc4f77", "text": "Create shot from eye iris zooming out of face and full body of male short head with gang tattoos, dressed in black suit "} +{"id": "1003231", "video_name": "3b83401e-6363-5947-a5f8-a2fc9c9957ad", "text": "As the sun sets over the verdant forest, a curious fox and a curious rabbit meet for the first time, their eyes locked in a moment of wonder. "} +{"id": "1005379", "video_name": "62e07b81-49d7-5d2b-a418-6614b98f856d", "text": "In the heart of the vibrant forest, sunlight filtered through the lush green canopy, casting a warm glow on the trees and the creatures below. "} +{"id": "0003777", "video_name": "432e22dd-4875-5a23-8628-8c6b99883495", "text": "modern living room . White curtain. Confotable sofa. Iluminate room "} +{"id": "3005276", "video_name": "3e67c8ea-dd02-5c3a-acd3-8bc45e158188", "text": "Transition this masterwork into an ethereal depiction of space and time. Maintain the intricate linework and dynamic chaos while introducing cosmic elements like galaxies, black holes, and nebulae. The original technical machinery now morphs into celestial gears, driving the clockwork of the universe. In this new setting, the monochromatic palette and varying shades of grey work to capture the infinite mystery and grandeur of the cosmos. The end result is a transcendent blend of scientific complexity and artistic wonder, poised to mesmerize both art aficionados and cosmic explorers alike. "} +{"id": "4004022", "video_name": "25efb4a2-3eab-58dd-b904-9448d76a738c", "text": "video how to make workout at home , 16:9 "} +{"id": "8001171", "video_name": "7f503c2b-aeb1-5378-ae88-24d7c01774d9", "text": "This painting will depict a giant egg floating in outer space. Eggs can be made of gold, silver, or another precious material. It may have mysterious symbols or symbols on its surface. "} +{"id": "0005971", "video_name": "24396d5a-194b-5864-aa98-3ddf7662c4dd", "text": "In a warm and peaceful forest, there lived a little rabbit and a little fox. They were good friends and played together every day., cartoon style "} +{"id": "3004102", "video_name": "b6f00f38-5b1a-55b0-91d4-af4cd335f03a", "text": "create a logo based on nato with the teaser \u201eDATO\u201c, which stands for \u201eDaniel Achim Treaty Organisation\u201c "} +{"id": "1005105", "video_name": "5e1ca5ce-5145-5841-a298-69629f45e227", "text": "a long black hair man playing violin, low detail, midieval icon Message: 1 Attachment "} +{"id": "0004862", "video_name": "107ac384-41cf-5151-b209-f716440c6182", "text": "Please assist me in designing an AI virtual chat companion for the field of mental health, who can listen and support customers. "} +{"id": "0004193", "video_name": "04d14ada-39c5-51cd-95ac-2e31116cf874", "text": "Create a scene where a boy wearing a black hoodie and a black hat stands in the center of an outdoor square. The sky becomes dark and dark clouds cover the area. Pedestrians around him are holding umbrellas and rushing home, leaving him alone enjoying the current scene "} +{"id": "7002497", "video_name": "72b3ebae-ddfa-544a-949b-369e521f66ea", "text": "They were sometimes used to carry small listening devices or other espionage equipment, or to act as assassins in their own right. Perhaps the most famous story about snake assassins is that of the childhood Heracles. "} +{"id": "7002334", "video_name": "da0811f0-74c1-5924-920e-33dc9a511a1e", "text": "bunch of people running towards a bueatiful girl who is posing,minimalist style, time, dynamic video, movie scenes "} +{"id": "1003795", "video_name": "4610c00f-533e-5849-a8f4-bb645bcb31f9", "text": "i want a mountain an slow motion "} +{"id": "2005747", "video_name": "226877af-2972-5f45-b9cd-b69b00222098", "text": "The sun sets behind the Taj Mahal, casting a warm glow on the iconic white marble., Polaroid style "} +{"id": "0003190", "video_name": "3901e13b-1776-5d6c-9b00-187633beb49c", "text": "Show a deserted, decaying city under the moonlight, with fog spreading across the ground. "} +{"id": "5001162", "video_name": "fd7dbb51-9019-5784-8040-e7f9c5db1f0c", "text": "surreal animation of musical notes sprouting from strawberries growing on a mystical strawberry tree, filling the air with enchanting melodies. "} +{"id": "6003639", "video_name": "e2711d47-ee0d-5626-8622-66c9b1e2b916", "text": "Alex discovering the truth about the bioweapon. "} +{"id": "6003044", "video_name": "c8b45d39-7e30-5c11-8f33-2207895ab04a", "text": "title Vampirics in architectural lettering made of a dystopian neon cyber city skyline at night bright lights flickering pulses Message: Vampirics (Font: RETRO) "} +{"id": "4002152", "video_name": "f2034401-ac64-5c1b-90ec-2f528447e729", "text": "creates the 3D intro for a comedy TV show called ILLograma "} +{"id": "3003570", "video_name": "7f57507d-e0f1-582e-adae-1534bf0b23dd", "text": "The camera slowly moves away from the cross as the sun sets on the horizon "} +{"id": "1005361", "video_name": "6292a4c3-95e5-5351-996b-03ef8555ea07", "text": "7.\tClick smart, click safe \u2013 think before you tap that link! "} +{"id": "5001323", "video_name": "f3527fd9-287e-5ebc-9663-0285f15cf425", "text": "Realization and Acceptance: Visual of the rabbits realizing and accepting that they have unique qualities, symbolized by an illustration of diverse creatures coexisting. "} +{"id": "3004584", "video_name": "742119fc-a0d6-545a-9e23-6385a06a3b36", "text": "A little bat flyng in a dark wood at night, moonlight in the sky "} +{"id": "3003751", "video_name": "33f2f4f8-34ea-55e2-93e6-26160b872913", "text": "A woman wearing a heavy medival but modern and ornamented armor. In the city. Time a war. Good looking. Near future. Detailed armor. Realistic metal shine and tear of wear. "} +{"id": "0005235", "video_name": "1711f798-1160-5d12-8557-96b73f20b497", "text": "giant inverted cross landscape, giger, lovecraft "} +{"id": "6004933", "video_name": "5ce35521-536b-527c-acb5-afadb5e5d479", "text": "In the dim light of the room, a woman with a pretty and beautiful face lies on the bed, her blue eyes reflecting the uncertainty of the nightmare she just had. Moonlight caresses her delicate features while her heart beats fast, still under the impact of the disturbing dream. "} +{"id": "1004746", "video_name": "57dfacd5-a930-5cc3-9292-1efd834ea612", "text": "Ifel tower in Paris. A few french people crossing over. "} +{"id": "3006482", "video_name": "d2f3ff6c-8570-52d0-848f-7c97c9159c7e", "text": "Disney style magical world, a forest, a flock of birds flying in the sky. A river is running through the forest. Now there is a turtle in the middle frame. He is saying something. The camera is focusing on him. "} +{"id": "1004595", "video_name": "5586a6de-7b7b-54d1-bdfe-4f74b2f73265", "text": "The atmosphere of the bedroom at night. European style. bedside lamp. Heavy rain from outside the window "} +{"id": "6002273", "video_name": "91f7b245-89b6-5466-a24c-e87be8994ce8", "text": "A tattoo artist working Message: TATTOO (Font: MODERN) "} +{"id": "3006953", "video_name": "351e022d-50d0-508b-bf58-6d0d7738782f", "text": "an archon dancing to electronic music in a crowded nightclub "} +{"id": "0004232", "video_name": "057fd2ee-dc22-5f0c-8c3f-32bcdeb177c8", "text": "luxury Cars all racing each other in an empty field "} +{"id": "2006862", "video_name": "f8c3a3bc-d38d-59c8-993d-e7da2abc70e1", "text": "will smith eating spagettio from a can "} +{"id": "7002010", "video_name": "9aeddd59-80ab-52e6-9def-b22b639b5657", "text": "girl running in ruins. playstation one aesthetics, digital animation, video games "} +{"id": "3006996", "video_name": "1c3c7ab6-111f-50be-892c-f355e8f2ea65", "text": "pretty woman walking in the street "} +{"id": "6004383", "video_name": "97513b8b-feec-5112-a3aa-a4fa47326644", "text": "spartan, with muscles, beautiful sunset, 8k, realistic "} +{"id": "4004928", "video_name": "4aa852dc-6f60-5c98-8021-6301866c061e", "text": "a train running on the river A young man plows a skateboard along a train "} +{"id": "6004007", "video_name": "768e81d3-4a8b-5741-a08c-1e77e2b433e6", "text": "illustration of a Tyrannosaurus rex hunting a group of smaller dinosaurs in an open plain. A volcano erupts in the background, sending plumes of smoke into the sky. "} +{"id": "8001290", "video_name": "d0355909-d7c1-52c7-a8e1-d517c86d291d", "text": "Terrifying mythological sea creature in the deep ocean, swimming toward you slowly, monochromatic, highly detailed with tentacles "} +{"id": "4003606", "video_name": "9bb1dc9e-184f-5275-accf-61bef9e9bc54", "text": "animate the In the grand court of the mighty Emperor Akbar "} +{"id": "7002415", "video_name": "79b7bd21-8da1-5c19-a284-75e3a8544a21", "text": "dancing in an echo chamber, noir, moody, psychedelic, cinematic, camera move, motion 4 "} +{"id": "0005728", "video_name": "203f5834-0ed0-54dd-be80-1b0a90224103", "text": "moving glow fast and slow cinematic lighting effects "} +{"id": "7003692", "video_name": "def7f051-1c46-53ab-b066-15fee6469cbb", "text": "dead space main character in romantic horror scenes. "} +{"id": "4002754", "video_name": "a743a560-2c3d-5b6e-b828-b41035aa6981", "text": "a carpet cleaner machine cleaning result on low pile carpet video "} +{"id": "8001095", "video_name": "ea351ff5-0407-59c3-8a75-3f1f1bc9861c", "text": "nightmare for you to do this on any smaller scale computer you are using for the most part of the map glue the key to the smallest amount possible in the sun and the same way you that it the same most of your employees are in not having only one has long blond to use in the shadows sun times in and out of your employees who work "} +{"id": "6004307", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "The audience animals of sea clapping and cheering for Della the Dolphin, their applause echoing through the depths in The vast and sparkling ocean, with the sun setting on the horizon "} +{"id": "3003802", "video_name": "0a0d4bed-68c2-5f4c-a6fe-e063826f17d4", "text": "A man walking on the way in beautiful village some children are playing village home in background high hd, detailed cartoon disney style realistic "} +{"id": "2003604", "video_name": "17f864b9-b73a-5472-990b-b71bbf397291", "text": "a woman walking at seashore alone "} +{"id": "8001830", "video_name": "1a61255b-be86-5373-93df-b3857734cc36", "text": "a beautiful asian girl running on road of Village in dark night, back view, cinematic, 8k, ar 16:9 "} +{"id": "1004963", "video_name": "5ba7e15e-69d2-5924-9e0f-3f72144bc7eb", "text": "woman walking in snow avatar image hd full body front perspective "} +{"id": "2006948", "video_name": "f962b861-22e8-5cf9-9d3c-1cebf6d0241a", "text": "two AIs wave at one another across a digital divide "} +{"id": "8001653", "video_name": "3967ade2-4349-540a-8054-bc993f63b47e", "text": "fantacy cartoon horseradish sing song and dance "} +{"id": "1003214", "video_name": "3b354a4d-f3ff-52a1-8c2a-ad1439e60c20", "text": "Robotic hand closing the camera, touching the lens of the camera, cinematic, raining day, slow "} +{"id": "8002337", "video_name": "91560fd0-187f-5f2e-a8de-d52c6166e166", "text": "old african woman carrying a mango in her hand as she walks in a lush green tropical rain forest jungle "} +{"id": "0005385", "video_name": "19e3f236-3b3f-587c-8f44-da11a2c759eb", "text": "4 year old boy eating cake for the first time "} +{"id": "3003860", "video_name": "92e5b81b-f2af-5ec9-9b01-b2894c1cfab0", "text": "8k cinematic scene, a bus stand covered with trees "} +{"id": "3004110", "video_name": "29990f89-fc9c-58b3-a7f5-6d8cfa77c62a", "text": "a 3d digital brain that conver into a product box "} +{"id": "4002306", "video_name": "4d2c9271-964f-53cd-80a9-6a911bcf591e", "text": "a train that has a dense forest on its right side and a small clearing with a sturgeon on the left side and a night with stars in the sky above it "} +{"id": "8002744", "video_name": "c323ba4c-83c4-598c-a13b-8f20b3d793e2", "text": "Cinematic scene, Long shot of two samurais fighting in a Japanese village, hyperealistic, dramatic lightning, 16:9, Arriflex. "} +{"id": "1005389", "video_name": "630e8b67-227d-5a37-a339-5ddc4ff48adc", "text": "A funny minecraft green creeper is dancing on field "} +{"id": "1003482", "video_name": "407a260a-9fc0-5a03-b804-187bba14fedb", "text": "show me your dream landscape, touching reality, cinematic, Film light, Hyper detailed, Hyper realistic, masterpiece, atmospheric, High resolution, Vibrant, High contrast, dark angle, 8k, HDR, 500px "} +{"id": "8003994", "video_name": "b6ed4da9-42b2-5a05-bbf3-53e43d92d114", "text": "juana la loca looking at the camera and smilinng "} +{"id": "1003623", "video_name": "42c2befe-f71e-5bd0-972f-3a6ffa6fe9dc", "text": "aline entering into the featuristc world standing in the city center with an indian man "} +{"id": "3003588", "video_name": "94584981-6e2c-5b1c-b42c-fb450741b752", "text": "A boy goes to the grocery store "} +{"id": "7004440", "video_name": "237b48b5-5ae9-5d98-a294-963757d63436", "text": "macro view of an agave plant "} +{"id": "0006215", "video_name": "28810a7e-8710-51d4-8b40-cb0accdebfbe", "text": "fracture breaking white wall on parts "} +{"id": "0004131", "video_name": "03ce7d7f-5101-5cee-9928-daa744b27850", "text": "blue and yellow cyberpunk samurai with grawheels instead of hands, trying to pull up the car "} +{"id": "0005013", "video_name": "133774bd-debf-584b-a177-8401ddc7d974", "text": "foggy rays of light through the bars "} +{"id": "6003831", "video_name": "1da26f9a-9d6d-5ae4-9957-c4b8e4fb5079", "text": "night city with burning skyscrapers and beautiful sunset "} +{"id": "0004728", "video_name": "0e21bb67-f4e0-502f-8a91-308d78ca40df", "text": "the white pebbles are levitating on the pebble beach. The tosca coloured sea is blurred on the background "} +{"id": "6003031", "video_name": "bb3cd2ad-f1b7-5ba1-9111-1e060e7a7854", "text": "A fireman trying to pour water into the burning forest with the smoke of the fire covering the sky. "} +{"id": "1006137", "video_name": "7074177f-b74e-5cdc-bcbe-53f0c3932377", "text": "a futuristic space station that uses nanobots to shapeshift "} +{"id": "3006527", "video_name": "1b2fdf0a-3218-5e0f-988a-8320979ee8a9", "text": "Create a video where Dante from Devil may cry 3 will fight demons in the desert "} +{"id": "2004235", "video_name": "258d219a-ec48-5e78-84f3-90534a29d801", "text": "On the occasion of the birthday of King Krishnadev Rai, a big banquet was organized in the palace. "} +{"id": "7002501", "video_name": "328fc757-6b0c-5438-8273-8f41cf1302a3", "text": "Under the sun, the main hall of the Chinese Buddhist temple built of gold shines everywhere, "} +{"id": "8002177", "video_name": "89e98451-bade-5087-a088-21940a45812c", "text": "2 lovers entwined in spirit form "} +{"id": "3006650", "video_name": "eb106a2c-dbd7-5edb-96f9-1bb2d7fef311", "text": "a small village with green scenery and evening red sky, night background "} +{"id": "0005633", "video_name": "1e72567b-5824-59a4-b5ec-03603df3971d", "text": "a young bussiness man who like a mix of western and asian smoke cigar in a bar "} +{"id": "8002869", "video_name": "5dc6eb53-6d03-5d18-a202-ac12c63fe60f", "text": "One sunny day, Farmer Fred planted a special seed given to him by his grandmother. "} +{"id": "4004718", "video_name": "ae06e5c8-8d88-5c10-a4ed-d314619cf5d6", "text": "a long hair girl running in heavy raining street "} +{"id": "1003595", "video_name": "422fffe6-bce4-5659-91b8-0548802d87d9", "text": "woman with brown straight hair and man with blond hair and beard playing cards "} +{"id": "4003783", "video_name": "4adce4bc-2aae-59de-8a3b-aed32b34636f", "text": "fischer boats in the port of marrocco "} +{"id": "2006205", "video_name": "11ba40b4-0138-5f5c-8030-6d968c0f9e10", "text": "1 girl, beautiful face, solo, black hair, yellow dress, bag, dress, standing, long sleeves, simple background, looking at viewer, realistic, long hair, grey background, arms at sides, black eyes, red lips, handbag, closed mouth, mole, walking, wind blowing "} +{"id": "0006439", "video_name": "2c666b9b-497a-5ca2-83ae-23a5244e72a5", "text": "close up of boys eyes opening in b ed at night "} +{"id": "1005973", "video_name": "6dbad0f0-688e-5761-bbfa-32c104ea8098", "text": "Five children who playing and run in quiet village , style fantasy, 3d Animation "} +{"id": "1006879", "video_name": "7db6ae99-fd7d-5465-bc57-ee77aee8a51a", "text": "beautiful white woman at the garden of eden "} +{"id": "2005789", "video_name": "f9948ca5-a985-50c9-b207-2846c7b00f9b", "text": "A detective chasing the suspect down a staircase "} +{"id": "1005054", "video_name": "5d6de067-7d0a-554a-b243-00b07b8ce8a7", "text": "John Locke from lost As Aang From Avatar the last Airbender "} +{"id": "1004210", "video_name": "4dcb5e55-94b7-5fde-9a70-e1f374b614b0", "text": "Show the relieved expressions of his father and the priest "} +{"id": "6004828", "video_name": "6555d2f8-453f-589d-bd5d-8e06bab0beb5", "text": "princess with beautiful eyes in 3d "} +{"id": "1006452", "video_name": "761fedff-8b4a-5158-aa22-607337e9823f", "text": "Depict a human computer hacker attempting to infiltrate the central robot control system to turn them into allies of humanity. "} +{"id": "4002421", "video_name": "2c58062e-abad-5710-a7e3-31b61690e62b", "text": "several halloween jack o lanterns glowing, sitting on a dark fall wooded walking path at dusk "} +{"id": "4002296", "video_name": "6c798b08-0565-5296-a4fa-725e37d92ac7", "text": "a video where an astronaut see the plant from the international space station "} +{"id": "3006569", "video_name": "3d0e39a4-1a09-54c6-b8e6-9b0c8d3c2be9", "text": "a blond woman from behing canoeing down a quiet river in karlskoga, sweden "} +{"id": "4002879", "video_name": "0e1d6d92-3b49-57fa-a7e9-fb946573138e", "text": "An elf walks through the ice with a bow "} +{"id": "3003152", "video_name": "6e7e0781-5214-538d-b092-ad4dbf07fd3d", "text": "cat death killed by giant robot in cyberpunk city "} +{"id": "8001075", "video_name": "df7d6015-9d69-50ed-92e6-8e4529f06cff", "text": "a tiger walking proudly on a safari "} +{"id": "4004411", "video_name": "59066653-81fc-5be1-90ee-77d60e3c95e5", "text": "Opening shot, Andrew Wiggins walks onto the court. "} +{"id": "2005832", "video_name": "274d905c-4cbe-5088-b781-1cc66504dadc", "text": "old school Cadillac cruising down an old road at high speed. Front view "} +{"id": "0004816", "video_name": "0fa1089e-3ca4-59fb-83f2-701c4eb57ace", "text": "ancient chinese archer, open space, bow and arrow, The sky is in the northwest, Determined expression ,gaze focus, Bows and arrows are like the full moon, distant sky ,Sirius, low angle composition ,Warm colors, Light slants from northwest "} +{"id": "4004093", "video_name": "a2cf0a8c-a855-5524-bf7e-35e74e7f48e2", "text": "mountain of ants at the bottom of the ocean, dark depth in the sea "} +{"id": "2006694", "video_name": "894d78e2-b976-55b8-8ab8-4dd8b9843f92", "text": "a man walking on a dark street, 10 seconds, 4k "} +{"id": "7004540", "video_name": "b0f1da27-b807-5354-adb2-87f55da96114", "text": "A cute cartoon bear that is wearing at the camera "} +{"id": "7002180", "video_name": "3a497577-0846-5fe6-a5fe-70fa307060df", "text": "An old lama and a group of little lamas were sitting in meditation. Several little lamas fell asleep. "} +{"id": "3004547", "video_name": "77f79c64-6519-5ae5-bd93-f1d9a542ce44", "text": "a hot girl dance and sit in lap of boy "} +{"id": "3005496", "video_name": "b049c9a2-f2be-517a-a95a-0ba63b8396db", "text": "a woman whose underwear becomes transparent in a second "} +{"id": "6002929", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "Make me an image of a terrifying nun walking facing the camera "} +{"id": "2007489", "video_name": "4181a66a-5e37-5909-b83c-3399ea2d85da", "text": "santa coming with lots of gifts "} +{"id": "3004601", "video_name": "45db4f1c-ac1d-578e-ace5-f73313056bfd", "text": "create an image of Bitcoin with Interstellar theme graphics "} +{"id": "1006184", "video_name": "713b6768-520a-5db7-9f76-aa4618345593", "text": "In the quiet solitude of his home, a man sits with bandages wrapped tightly around his body, hinting at a recent injury or surgery. The room is dimly lit, casting shadows on the walls that echo the somber mood within. As he grapples with both physical discomfort and the weight of his thoughts, explore the emotions and reflections that unfold in the stillness of his surroundings. "} +{"id": "0005101", "video_name": "14befd0c-270f-5589-9144-6c5b22e78796", "text": "dragon ball z style anime fight "} +{"id": "0004982", "video_name": "12b70d7e-1fa2-5cbc-a39b-f6963ebcda4b", "text": "A clever explorer, after much thought, finds the answer and successfully opens the chest. "} +{"id": "1003266", "video_name": "3c172041-1807-5545-8b73-1b7342318381", "text": "He sketched them in his journal, documenting their unique characteristics, and learned to communicate with them in his own special way "} +{"id": "1004153", "video_name": "4cf35251-1066-5a86-8c3a-68046635a32c", "text": "T shirt design minimalist designs in black and white "} +{"id": "6003798", "video_name": "e2ec5cd7-f838-5a56-9508-08aff5a93208", "text": "Queen Cleopatra met Julius Caesar for the first time "} +{"id": "6003915", "video_name": "93d42378-b248-5638-a4bc-a5b54335b402", "text": "A man and wife, standing in a hallway, waiting "} +{"id": "6002114", "video_name": "e82eafd4-b8e3-524a-81e4-aefb4f561b80", "text": "Digital transformation services, focus on showing how tech is used in daily lives Message: Protinus (Font: MODERN) "} +{"id": "7002679", "video_name": "a2e38618-51eb-5721-a61f-2c7ab5540be4", "text": "vivid picture, inside of a cave adorned with sparkling crystals, accompanied by the gentle flow of a stream "} +{"id": "7003618", "video_name": "07dae018-bdb9-5f12-93cb-bed80d9b5c13", "text": "water and boy is walking and city and light is twinkling "} +{"id": "1003272", "video_name": "3c3c93a4-3af8-5d50-86f3-7278853fc50b", "text": "Astronaut blinking at viewer, led blinking lights, shootings stars zooming in the sky, Astronaut helmet opens to reveal the astrnaug face "} +{"id": "3006232", "video_name": "ad25dbbc-e4ee-502f-9c93-05ae47aced20", "text": "fighting bear with 3 wolf in the forest "} +{"id": "3003125", "video_name": "cc03e6ac-2bef-5133-aa8c-a36a85651310", "text": "Closing Shot: A peaceful view of the beautifully lit Ayodhya skyline as the narrator continues "} +{"id": "4004772", "video_name": "6efc39df-b354-5f2a-893e-daac6f4fb7c4", "text": "Students sitting in a circle, actively discussing, with a laptop open in front of them showing the GPT interface, suggesting a collaborative effort. "} +{"id": "3003022", "video_name": "faa3b712-ddd7-5a3f-bbc6-00d0efcf41f1", "text": "Breaking the Promise: Advised to use water as a reflection, the princess sees the charming reflection but forgets her promise. "} +{"id": "7002550", "video_name": "3ffd137c-1ee4-54fb-a06d-83f0aca37df0", "text": "Went. He decided with his friend Vikram that they would go to see this haunted palace. "} +{"id": "5001380", "video_name": "72a7aa02-0da2-56bc-84e2-79b9a2389a6d", "text": "create a helicopter flying over a mountain of ice, with a train on the tracks entering a tunnel "} +{"id": "6003392", "video_name": "1294ae8e-e53e-52be-8413-c0298c1a0a8c", "text": "the cat is spinning records, snow is falling "} +{"id": "2006749", "video_name": "a586eb55-6158-5a04-9039-4766607bfb4e", "text": "a hanging bulb in a dark rom lights up "} +{"id": "1006152", "video_name": "70b204f1-0c16-5088-865f-6b8e37492001", "text": "Goddess Lakshmi emerging from the cosmic ocean on Dhanteras. "} +{"id": "8001450", "video_name": "ec89ec4b-a8f4-5ec8-bd15-a7fa462c68d8", "text": "when the mouse desperately requested the lion to set him free. "} +{"id": "3004686", "video_name": "8853277c-5f07-5d16-af4e-8a46002228b0", "text": "Cyberpunk animation of an angry man fighting for his right "} +{"id": "3004043", "video_name": "f2660af5-57d6-571a-a9ee-3e44ed356a3b", "text": "a drawing room with table chair and a laptop, beautifully decorated room "} +{"id": "2003111", "video_name": "54842e59-948e-54db-ac26-4da1b2230386", "text": "the painter is standing in a front of huge art and drwing "} +{"id": "2005782", "video_name": "079cc571-6275-5104-b6e7-16df53f4647d", "text": "The little rabbit is pounding a medicine jar on the moon, with warm colors like pink and yellow dominating the scene. "} +{"id": "7003139", "video_name": "0bd73058-9536-53da-ac35-0d8877d3225f", "text": "a 3D animated logo named Dverse152 "} +{"id": "1003493", "video_name": "40b408cf-950f-59ca-b0e3-f6274c1423af", "text": "1950s super 8 footage of an art deco spaceship landing in the distant horizon of an alien planet, vivid warm color palette, unsettling dreamcore aesthetic "} +{"id": "3004696", "video_name": "27b3ba49-f28b-53d4-8633-38e52ce98277", "text": "Man with silver buzz cut, in black coat, standing with his eyes closed, standing in the centre of a storm, forest on background, snow and dust in the air, wind "} +{"id": "5001825", "video_name": "c480d096-be2c-5514-bb92-f1c038902402", "text": "the cloud is moving, the sun is shinning "} +{"id": "0005842", "video_name": "220d8f85-2bf8-52ab-89f8-3e45529df85c", "text": "A boy with his bicycle in a meadow full of blue and red tulips "} +{"id": "2005043", "video_name": "f16df7f0-6692-5c7f-882c-9f783ca0a7c9", "text": "A photorealistic, highly detailed illustration of Ana de Armas in a vintage Hollywood style, reminiscent of the golden age of cinema, with a focus on glamour and elegance. "} +{"id": "7004588", "video_name": "491347c5-ce5d-5083-96ac-40559fd36135", "text": "Follis ranting about why leverage is the only thing that matters "} +{"id": "2003782", "video_name": "84498cf9-5f58-51f1-9e4c-8f98dea6e429", "text": "a young and curious boy named Arjun stumbles upon an ancient "} +{"id": "3004327", "video_name": "1be0a9de-78cd-5705-97f7-e951faae3c0f", "text": "I want the hair to fly gently "} +{"id": "1006512", "video_name": "7733ed7b-a9c3-56c3-8e1a-da3e64217282", "text": "joe Biden fighting a giant corn on the cob "} +{"id": "7003101", "video_name": "3a6d4c1c-d934-5c18-a6f7-9b426444a011", "text": "The judge sits on his chair while the common people catch the thieves in front of him in his seat, a scene from ancient times "} +{"id": "0005110", "video_name": "14ed8bf3-1271-561e-8b26-b14a6122193b", "text": "a female swimming in the style of monet "} +{"id": "3003041", "video_name": "f94e8a97-5564-5880-9550-86da04d9ba81", "text": "butter in a glass bowl in milk "} +{"id": "3004676", "video_name": "392ad712-9fa6-5051-8af6-13bcb3eccae0", "text": "slow burning fire and soft waves outside moving "} +{"id": "4004577", "video_name": "657b55c7-c495-5dca-b6ce-570a05ef0c7b", "text": "the construction of their monumental structures "} +{"id": "4004461", "video_name": "984b14da-e7cc-5d8c-9635-e9bc555aac76", "text": "a robot reading a book in an old library raises its left hand "} +{"id": "1004719", "video_name": "579191fb-d77d-5eeb-b68b-e63c2c5cafc7", "text": "batman watches TV together on the sofa with his mother and father "} +{"id": "1004289", "video_name": "4f61d91a-6fe4-511c-9265-eb32eab1f1ee", "text": "beach with full waves a beautiful scenary "} +{"id": "0005193", "video_name": "166d1cb2-1d9e-546b-ab6e-5cb7e6be8ad1", "text": "Transition to a tranquil sunset, introducing the White Tiger. As it gracefully moves, leaves change color and fall, symbolizing the arrival of autumn. Show villagers harvesting, preparing for winter, lighting lanterns. The scene should evoke a sense of peace and preparation. "} +{"id": "0005935", "video_name": "23820602-9db0-561f-b473-6b8aceff4eb7", "text": "angel, black, dq hunter, blue, couple, dqhunter, frumusete, wings, luminos, man, fantasy, girl, HD wallpaper "} +{"id": "4004174", "video_name": "ab7b31d9-57fd-5d37-9a10-80392a7bb952", "text": "Tonny Stark rides an Audi, Thanos appears, shakes his fingers, Tony transforms into an Iron Man suit "} +{"id": "0006265", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "Emma, sitting alone in her room, looking sad and lonely. "} +{"id": "1004907", "video_name": "5ac5720b-6a5d-5d74-8d84-9f0444fedc51", "text": "a skeleton crawling out of a grave, dark fantasy, animated "} +{"id": "4002031", "video_name": "97bb51b1-2b23-502d-8d1b-3e64125d6f1d", "text": "doing the splits , feet in the air Message: 1 Attachment "} +{"id": "3004123", "video_name": "7fc358f3-5ad4-55ac-8bbd-859df70dc0d0", "text": "flying prince, 3d style , cyberpunk, 8d "} +{"id": "0006317", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "Brazilian Hugo calderano playing table tennis with Ma Long in Tokyo "} +{"id": "1006557", "video_name": "78199159-ba08-5385-a57c-dd28bd97e56b", "text": "cartoon animation, chickens racing racing fast fast celebrating Christmas sliding through the Snow ladden mountains in a reindeer sleigh, laughing shouting and giggling "} +{"id": "0004561", "video_name": "0b4609ce-3ac3-5aca-a912-b3504fb0ddee", "text": "animation showing an indian politician winning the election "} +{"id": "6002259", "video_name": "602d3b00-ffcc-54e1-aeb6-a04e7cfd5ada", "text": "short movie of a sad pineapple "} +{"id": "7002685", "video_name": "af99e0ee-c9c0-5e7f-9f66-a1729f7da8c8", "text": "peacock spreads its feathers as part of its courtship ritual to attract peahens, 16:9 "} +{"id": "2007176", "video_name": "034084cd-56c1-580e-83c5-ed49bbb89840", "text": "a man is standing in a dark room. the man is very sweaty, scared and stares straight into the camera. he is wearing a black tank top "} +{"id": "4003433", "video_name": "734e012f-ff1a-5fb4-b84c-d5bc53384cb6", "text": "Streets of Tokyo, buildings Message: arlo (Font: MODERN) "} +{"id": "3006963", "video_name": "4ad02b16-de7f-5e4d-bf39-6d2e83579d3d", "text": "spiderman swinging, hyper realistic, high detail "} +{"id": "1003355", "video_name": "3dd834fb-ea31-5dda-852b-7100c90303b8", "text": "Hyper realistic world war 1 scene black and white aged film soldier with a black bird head He has long tentacles for arms. Walks in the trench looking for the enemy. "} +{"id": "1005340", "video_name": "62254993-de32-5108-85d7-bc0019df0e36", "text": "Golden Chinese Lion poses beautifully in Art Deco style "} +{"id": "2007261", "video_name": "e21b01c0-0925-53ff-ad3f-f8070b2dddba", "text": "All frog shoued it is Impossible it is impossible "} +{"id": "8001503", "video_name": "7ecd1e19-5c39-5c45-b762-1a7204a25e21", "text": "Mickey mouse jumping off a building "} +{"id": "0005739", "video_name": "206e037f-7d86-52a1-a893-12ee2424705d", "text": "Video showing a world with people around the world with a vote in their hand waving the vote paper. "} +{"id": "8003018", "video_name": "2e967fa0-4f2a-529a-b909-0288f88f00bb", "text": "Show a serene fishing village surrounded by blue sky and clear sea. "} +{"id": "5001750", "video_name": "38643643-819f-5ce5-a45d-624e156582b3", "text": "A young girl running through the forest "} +{"id": "8001723", "video_name": "316f513b-e7c7-5425-a4ed-f92fd86effef", "text": "Meeting of the bun and the wolf "} +{"id": "1003986", "video_name": "499fb238-34fd-5cb7-af06-368ce4fd0096", "text": "A man walking near the bank of river , sunset "} +{"id": "4004726", "video_name": "466ba585-d954-5194-abb3-94e9f0011ecb", "text": "A man driving Tesla car in amsterdam in year 2030 "} +{"id": "8001264", "video_name": "371081c9-6e6a-59ec-9b6d-445f61748554", "text": "a lizard is hunting a snake in a forest "} +{"id": "3003438", "video_name": "562d88bf-7594-59de-9e83-40d50a6808c3", "text": "Santa making his list at the north pole. It should feel very fun and festive "} +{"id": "7002332", "video_name": "b58db2f8-4ee9-5f48-82e7-59b3e7266901", "text": "nurse walking in hospital with technology "} +{"id": "4003503", "video_name": "bed429fd-fd55-565c-93cb-1dfce4e87a46", "text": "two people tentatively approaching a canyon ledge "} +{"id": "2006202", "video_name": "06f2bf84-d491-5b1d-9824-00fa6ca489fa", "text": "love could make a big difference. "} +{"id": "1006150", "video_name": "70ab76be-1d52-5178-ba9a-549ee51c3425", "text": "Frankenstein electric chair shock, lights flashing "} +{"id": "0005328", "video_name": "18e099ff-44a3-517e-aee0-6621f6c1fbb9", "text": "abstract 3d satisfying objects bouncing around, colourful , explosion, pops, asmr "} +{"id": "4004413", "video_name": "3565768d-ba15-5dc8-a81c-a11f1aa2e67e", "text": "sexy woman in a rock concert "} +{"id": "0005103", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "A person leaving the dimension 3 "} +{"id": "7004577", "video_name": "a04d400b-efe7-52b1-b1d5-ea7e6fbfda0c", "text": "a man in a blue shirt talking on a cell phone, telegram sticker, digital cartoon painting art, featured on illustrationx, thinking pose, design your own avatar, digital art cartoon, wikihow illustration, concept art of single boy, comic art style, depicted as a 3 d render, comic artstyle, male character, human male character art "} +{"id": "7002536", "video_name": "9b5b27bc-faf3-5752-9ae8-1ee5576d118e", "text": "Ethan is a young man of German descent. Light green hair, long hair tied back, height 180 cm, weight 75 kilograms, wears casual warrior outfit. "} +{"id": "1006700", "video_name": "7ac60b0f-6a58-5b00-926f-58bdae04241f", "text": "Timelapse of demons on the side middle not moving "} +{"id": "5001828", "video_name": "2ac4d61f-4e7e-5d04-965b-23246fdcc769", "text": "The boy took out the scale and weighed the blind box. "} +{"id": "6004597", "video_name": "25ec62a2-d8e1-55a0-86b5-e7992d2d36d1", "text": "mother and son talk in a kitchen "} +{"id": "4004858", "video_name": "7d1f0327-9800-5972-b745-b1f9130d92bd", "text": "magician smoke weed with big joint "} +{"id": "4003329", "video_name": "5089f025-5e40-5fe7-a6ee-d4180231291b", "text": "cartoon illustration of beautiful Indian women before wardrobe of full of clothes saying I have nothing to wear "} +{"id": "5001130", "video_name": "58ab675b-07e8-5cf3-9d50-e5ca1c658d04", "text": "mickey mouse in a disney land "} +{"id": "3005680", "video_name": "7f04a1a0-1126-5b40-be1b-6e8d26aee172", "text": "a circus tent in a black void in space, wide shot, 16:9 "} +{"id": "3006674", "video_name": "590a258d-493f-5070-8cb6-69c69eb4a776", "text": "ghostly figure standing next to a woman in a white victorian lace dress. The woman is standing next to a window, looking outside. Light candles. Paintings on a wall. Dark atmosphere. Cinematic. Photorealistic. "} +{"id": "3003044", "video_name": "5468d78c-8b38-5b75-8ece-d3b776d822c6", "text": "Visualize a grave, standing amidst the fields, encountering the Crow for the first time. Show their initial interaction, conveying their differences in character. "} +{"id": "6002493", "video_name": "1081baa2-af13-51ee-9f4c-6f28a84e44ad", "text": "a person glancing around anxiously at video screens encircling and encroaching upon them "} +{"id": "2006340", "video_name": "47717ee0-3062-5b42-af59-e7d0e540b86d", "text": "Design a car, science fiction, advanced, silver and white "} +{"id": "8002226", "video_name": "1fe2dfda-7357-54b8-9fb0-3f3030735156", "text": "kitten recd in a walk cycle "} +{"id": "4003105", "video_name": "15feac03-bb4b-5f36-8d29-7bea437dba19", "text": "The firefighters are extinguishing the fire "} +{"id": "8002289", "video_name": "e02dd768-5cbd-5c12-b9e3-6adfa53053af", "text": "the sun goes down, the clouds move, the buildings and the DeLorean turn all lights on "} +{"id": "6002756", "video_name": "ad1f2a37-44ee-500e-a013-e92a49b6bab0", "text": "anatomical heart in the style of a drawing that is beating "} +{"id": "3005815", "video_name": "9a90629c-966d-5093-91b2-349914b7d083", "text": "fire works at night, with lots of crowd near sea. Bridge veiw "} +{"id": "6004139", "video_name": "4791bf9c-c25b-5f2b-955d-c73a84b3a320", "text": "one Beautiful Woman painting on wood, perfect eyes ,artist studio, by artgerm and Edouard Bisson, highly detailed, art by greg rutkowski, oil painting "} +{"id": "0004494", "video_name": "09ea2493-df5e-596d-9906-5ab542dc53bb", "text": "Jesus in the desert, having a deep conversation with a realistic figure of Satan, set in a detailed and vivid desert landscape. "} +{"id": "0004453", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "humsn lung seen in a whole big picture "} +{"id": "0005846", "video_name": "222ec756-1746-5355-85e8-28e106494b5c", "text": "moving sunlight through trees, background plants moving, grass not moving, fantasy forest, sunshine, sun rays "} +{"id": "3004148", "video_name": "8e1d812b-0b8f-5ec3-918b-afbdd3c7b4c1", "text": "the newlyweds enter the church in cartoon style. the weather is sunny "} +{"id": "5001938", "video_name": "f16914c1-c511-533e-9d9f-178f370ab236", "text": "a drummer wildy plays drums, by himself on an altar, people around are still and watching "} +{"id": "3003855", "video_name": "5fa6a0ec-3572-5958-affd-a5ed213b5a7e", "text": "walking by the stairs of the overlook hotel in first person "} +{"id": "8003614", "video_name": "c24e651f-4c4c-5032-9e28-aabf82882cd9", "text": "explanation on how user testings work "} +{"id": "5001321", "video_name": "1c82b7fe-691d-5c82-90f1-cc85ead7d775", "text": "Multicolored Tornado tearing apart a medieval castle on the hillside of the enchanted forest, 4k,uhd, panning out shot "} +{"id": "2005162", "video_name": "9870eef7-3812-5c00-9486-5cd8561b5f60", "text": "ghost face solder in a battlefield "} +{"id": "4004283", "video_name": "438e384c-2c32-58e2-9ad3-3cdaf22d9131", "text": "Two men, Kenyan, sitting down, one has dreadlocks the other has a Barrett , holding khat,miraa, rusted ironsheet background, Kenyan flag on the iron sheets , great anatomy, 3d cartoon animation, 8k, unity graphics "} +{"id": "4002989", "video_name": "ffbebf1a-f6e5-5705-8608-8cac97a85014", "text": "people wearing VR glasses in futuristic setting "} +{"id": "1003822", "video_name": "46990c68-0c55-5f6c-9cca-a6c7158bad3f", "text": "A boy have walking in a deep forest and suddenly he saw lord hanuman "} +{"id": "2003676", "video_name": "4ab90bc7-76bf-5ffd-bfb9-05a5a0b1f777", "text": "a business woman wearing a kitchen apron mixing in a pot over hotplate while an entrepreneur next to her give some ingredients to her "} +{"id": "2005327", "video_name": "41b2ebd7-bad7-5186-ae30-e6560b5012a7", "text": "Each step brings them closer to their destination, but also awakens the attention of Umbra, Message: 1 Attachment "} +{"id": "4003648", "video_name": "e5568584-19d1-597b-9304-76e80dc54597", "text": "Smile, close your eyes and think "} +{"id": "6004505", "video_name": "fa8686bd-5611-53a8-88c1-b243365093ab", "text": "blue whale bungee jumping Golden Gate Bridge "} +{"id": "3005983", "video_name": "aef636f5-c72f-5c2c-8914-027b88bef32c", "text": "Close up of lemon seed on a white background "} +{"id": "4003804", "video_name": "f12a1510-853c-56c8-84fb-747259f5fc10", "text": "reveal human skeleton for 1 second as shock travels through the body "} +{"id": "6004601", "video_name": "dc13add4-4034-5cac-b2e1-df965ed33f00", "text": "A child sits in a car and the car drives away "} +{"id": "0003235", "video_name": "39c2b2a1-71b7-5a03-9617-4811ccc3c62a", "text": "Congratulations on the start of the new year 2024 "} +{"id": "6004064", "video_name": "7261907f-e871-5fe5-9b69-4a8fb9a53f98", "text": "A roaring lion with a yellow and red mane appears from the fog, Roaring through the enchanted forest, cosmic sky, fog and smoke Message: galatasaray (Font: MODERN) "} +{"id": "2004640", "video_name": "df4f3fde-4500-5fa3-9d17-4ab1f1d92e33", "text": "a dog run here and there for searching food "} +{"id": "4004281", "video_name": "4d747fba-4c4c-5444-9d33-39da0f2e6588", "text": "During this time the mustard flowers planted in the crop fields bloom. The colors of these flowers are also yellow. "} +{"id": "8002840", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "an ancient persian wizard, wandering through the desert, eclipse occuring in the sky, hyper realistic "} +{"id": "4003038", "video_name": "cb59aff3-5fc3-55c6-8fa6-59249d39a3f8", "text": "old haunting photo of a wounded soldier in WW1 smiling "} +{"id": "3006245", "video_name": "bc5c187e-fc6c-5e31-9f50-b1e55f332811", "text": "HDR 4k dramatic lighting and movie style angle and move in video where groteque, macabre surfer surfing lava tsunami and show middle fingerto drowning "} +{"id": "2003960", "video_name": "d2261503-8d8f-5c42-83f6-bb5941cbb95e", "text": "Create a pokemon such as Pikachu playing the drums or some musical instrument, he is on top of a stage with lights. He only plays the drums. Vertical video format "} +{"id": "3006753", "video_name": "4903a917-fbdf-5d94-981b-72e1d0829115", "text": "Beautiful woman wearing elegant clothes looking out of a large window at the rain outside, anime style, sad facial expressions, detailed elegant simplistic japanese silk clothing, "} +{"id": "3003764", "video_name": "2aacc5a3-d719-5dd6-8611-355af3db12da", "text": "camera angle outside view of silver airplane flying through the sky moving up and down the clouds in the background should move "} +{"id": "8001013", "video_name": "e5c2c3e7-acc9-53f4-8e1a-5ea1403fa088", "text": "the fairy used to see the world from above the clouds. "} +{"id": "6003143", "video_name": "79f11496-16c3-52c4-9276-65128f899a1d", "text": "Open the window from the room in the morning, the warm sunlight shines over, and the picture has a sense of romance. "} +{"id": "6004303", "video_name": "c737cf7c-430f-5f76-ac7c-ea86ee44e337", "text": "lake and Chrysanthemum Message: 1 Attachment "} +{"id": "7003209", "video_name": "41d37e8b-6e29-53eb-8084-cbb9d58d93b3", "text": "a poker room in which there are eight tables at which 8 people sit and play poker. view from above "} +{"id": "0003896", "video_name": "4564516d-a5d7-5d43-9b1e-566d3613f1ab", "text": "diagram showing the headless and api based software architecture. It should be a minimal diagram "} +{"id": "5001391", "video_name": "d9fab6da-4463-52e4-8a04-316df1d3c2a5", "text": "Fantasy Forest Wonderland Light Spot Message: 1 Attachment "} +{"id": "7002124", "video_name": "2b408c6f-b723-56e7-bb7c-4aaaee8594be", "text": "A boy holds a girl who is about to fall on the edge of a cliff "} +{"id": "2006160", "video_name": "23a99dc6-bb6d-538f-850e-6527cf4251d8", "text": "found footage of ufo crash retrieval "} +{"id": "8003282", "video_name": "d273f6bf-b14c-5ca1-a5e9-009b538d9e61", "text": "candy girl eats her own hand, she is standing and looking into camera, vibrant colours in dress, detailed face, hyperrealistic, 8k 16:9 motion 2 "} +{"id": "0003744", "video_name": "42a88275-49ad-57f1-9b7a-2f3dd8e2910f", "text": "One day, he receives a mysterious letter pointing to a magical mountain "} +{"id": "3003273", "video_name": "3312f738-42d6-574e-b322-5ffe3357d8ed", "text": "an ancient Egyptian priest, looking directly into the camea "} +{"id": "6002470", "video_name": "d82ae366-036e-5a92-a59f-c1b6a4809795", "text": "krishna with cow in green mountain "} +{"id": "4003476", "video_name": "c90292b7-d6a2-5509-b5aa-99975005403a", "text": "black and white minimal , lines in motion, golden mean "} +{"id": "1003505", "video_name": "40cc8b5c-09d4-5c5a-af55-c38ba9c0f2c8", "text": "A forest with fairies flying and fairies jumping through the trees "} +{"id": "1004006", "video_name": "4a2074b9-900b-578d-85e7-09a1b59c7e1a", "text": "steve jobs take a presentation in the mall,behind is a screen with an apple logo "} +{"id": "0004594", "video_name": "0ba3d3fc-ea64-576d-a919-24d3544f7e7a", "text": "figure walking, sinster, motion, cineamtic, movement, Zoom Shot, Eye Level Shot "} +{"id": "7002211", "video_name": "8730135c-a430-5bbb-a631-c4c966d857b8", "text": "Man who opens his eyes to see space "} +{"id": "4002359", "video_name": "7bf67bef-cd5c-51d2-a6d5-7a9e599205fe", "text": "A desolate, moonlit landscape with ruins scattered around, remnants of a once vibrant city. The air is charged with tension as two powerful anime characters face off in an epic battle. "} +{"id": "4004837", "video_name": "368e8b7a-92ec-5b75-b984-ac69021cfe3d", "text": "The geyser invented by Benjamin Mogan was providing hot water and there was no problem even in the cold. "} +{"id": "4004284", "video_name": "544f3aed-a789-5f46-90b8-c4d5e8d6c8b5", "text": "In exile on the island of St. Helena, Napoleon internalizes the pain of losing his former victories and empire. The life of this towering emperor concludes, taken from the stage of history. "} +{"id": "4002626", "video_name": "4d434a3a-fee4-5328-b2d1-2e7018c92cf3", "text": "An Ox came down to a reedy pool to drink. As he splashed heavily into the water, he crushed a young Frog into the mud. A nice innocent ox. be inspiring. "} +{"id": "7004636", "video_name": "e3da3940-cb8a-5c3d-85d8-c1e9e2734d94", "text": "Ken doll wearing a white suit on a table with a little boy holding it facing camera "} +{"id": "2007667", "video_name": "ea9dc7d0-fc9d-5abf-80bb-438a17b1b826", "text": "Robot girl made from various detergent bottles, realistic, concept art, 8k, blank white face, blue eyes, "} +{"id": "2005727", "video_name": "b7c536c3-b4df-5d5b-854f-ff313cfe7286", "text": "CREATE TOKYO TERMINATOR SCENES with Arnold Shwarzennegerin Killing Robots in HD 16:9 "} +{"id": "2006801", "video_name": "7e3205f1-c1e6-5127-858f-872ba2348e13", "text": "beginning of time visuals chromatic aberration "} +{"id": "6003799", "video_name": "97ee983e-ae31-55bc-b8fb-ec958dfc3e80", "text": "hyper realistic scene with fast camera movement in a surreal city "} +{"id": "0003816", "video_name": "44013df6-f9c0-55ed-9c46-123df542666e", "text": "retrofuturistic city in the style of wes anderson "} +{"id": "6002930", "video_name": "375efa18-40e2-5326-ae2a-34505d33cceb", "text": "Athletes busy with running and cycling in competition "} +{"id": "2003532", "video_name": "f38f6fc7-5818-5b49-9b79-0f2b37cf7abb", "text": "A wise old owl talking in the jungle. "} +{"id": "7004930", "video_name": "f010fed8-9bb2-5976-b9d6-22ca1573065b", "text": "a24 film from an arthouse surreal fantasy film made in the 1970s, yellow butterflies flying "} +{"id": "7003602", "video_name": "12733db4-a863-514a-954c-9e1d541c8206", "text": "man sleeping with a pitbull on bed "} +{"id": "7002137", "video_name": "e5dba2df-4efe-5809-ae46-738876d1fedc", "text": "Sunglassed dolphin riding a horse at the base of an erupting volcano, disney pixar animation "} +{"id": "7004246", "video_name": "2dc5e9fa-2837-52a9-bd04-a0872b3a537d", "text": "a short 10 second video about dreieichenhain(germany) and aspecialy the castle "} +{"id": "2005132", "video_name": "e0933f4c-ef0c-5693-9f89-130bf1a59c01", "text": "The teacher notices a barefoot laborer working on the street. "} +{"id": "6002128", "video_name": "7797fc3c-a254-5252-898c-5e6f4d84bba1", "text": "portrait of a witch casting a spell, vintage film, film noir "} +{"id": "0006530", "video_name": "2e2ea357-0d07-5a06-b911-aff1a2a6a849", "text": "mother and baby Message: 1 Attachment "} +{"id": "3003895", "video_name": "fcdbab3b-e123-5a6e-af6a-f75a8dc9ebe1", "text": "large companies like Google and other internet giants gain access to our public services and facilities. "} +{"id": "7002484", "video_name": "469fa414-bd59-5924-8ec6-fe336f7ca16d", "text": "cozy rooms rain falling outside, to create a relaxing atmosphere for studying or unwinding. "} +{"id": "3005720", "video_name": "576897dd-8ab0-57b3-b32e-63d2feaa81c1", "text": "A man jumps into a huge pile of sakura flowers "} +{"id": "2003868", "video_name": "945aec56-555c-59b2-b647-f960363446ff", "text": "a small boy standing infront of a house ,school yellow bus, classroom for kids in school, a playground and a garden with games , the same small boy with broken hand , ambulance in front of the school "} +{"id": "1006014", "video_name": "6e7f5ccb-5aa5-592b-9f9c-c9c2580c41b0", "text": "electric eels creating electricity in an ancient aquarium from Atlantis. 15000 years ago. Cinematic. Highly highly Surreal. Popping colors. 3D. Hieroglyphics from Atlantis. Blue lightning in giant atlantean aquarium. Scary. Ancient. Esoteric. Sacred geometry. Visually gasping. Stunning. "} +{"id": "2006425", "video_name": "f1fdeefa-9839-5ea7-bff9-3269cab0835c", "text": "a people running because alien follow "} +{"id": "8002182", "video_name": "aef2704f-e3aa-570e-b44e-feebb77abd6e", "text": "Shadow people dancing while playing heavy metal music. "} +{"id": "7004902", "video_name": "277d4afe-da9a-5ba4-805e-376b78fab4a5", "text": "Energy management: Blockchain can be used to establish a distributed energy network to achieve energy sharing and trading. Through blockchain technology, cities can better integrate renewable energy and optimize energy distribution to achieve sustainable and efficient use of energy. "} +{"id": "8002136", "video_name": "c680626b-a97b-5a52-9dec-08fb117d9353", "text": "boy play his father in forest "} +{"id": "3005049", "video_name": "2990a756-6056-5477-b45f-8b305b448398", "text": "A blonde woman who works in an insurance job talks on the phone with a headset and types on the computer, you see a white Apple screen "} +{"id": "7003907", "video_name": "7fca3101-18c6-509a-8e78-23c41f48ffa2", "text": "Show me a person who is painting a metal box with electrostatic powder paint in a paint booth. "} +{"id": "7002946", "video_name": "5975a964-efdb-538f-80a0-b6ced098fc81", "text": "hispanic women very attractive in scfi suit, boarding cockpit "} +{"id": "2004776", "video_name": "cac46a63-a308-5cae-9c5a-caea8c30dee0", "text": "a close up shot of a laptop and a chess board on a table in a room at night, studio ghibli style "} +{"id": "6004112", "video_name": "6eecd0e1-bcde-504a-b658-0e859238fe18", "text": "9:16 video of an aerial drone shot of coconut tress and backwaters in hyper realistic cinematic style "} +{"id": "0003670", "video_name": "417654a3-fc5c-5252-8b9c-789eae3cb887", "text": "indian hero looking for the beautiful girl top of the building "} +{"id": "0003849", "video_name": "4494b341-4708-5eb6-9cc3-b729657175e4", "text": "drone shot of a a town being rained down upon by comets and meteors "} +{"id": "3003283", "video_name": "363ae94b-85df-50d8-975f-2155a15b8faf", "text": "bruno mars flying in a sky full of stars wearing a white suite "} +{"id": "4003006", "video_name": "81ef8e7b-213f-5156-aa62-af83e7fa7c21", "text": "a jet flying through nyc with green and gold subtle motifs "} +{"id": "3006935", "video_name": "132d6e51-8a55-5d98-b64b-914afb39eab5", "text": "two aliens sitting on a small rocket and flying in universe, smoking cigarette hyper detailed, movie scene , 3D, concept art "} +{"id": "0005184", "video_name": "1642e7f4-ad64-5744-a4b9-c9ea49a6e52b", "text": "Doctor who controlling the tardis with red lipstick pointing at it "} +{"id": "3005497", "video_name": "ac2a2ae8-6b0e-5c28-a123-17d565769d9e", "text": "video Show a cheerful moon (Chanda Mama) far away in the sky. "} +{"id": "4004265", "video_name": "14a5f79c-58d6-56a3-b7a3-bf6a7305a218", "text": "SOLDIERS IN THE CONFLICT OF WAR, PRAYING ASKING FOR AN END TO THE WAR IN BATTLE, LATE AFTERNOON, SUNSET, ULTRA DEFINED, HIGH RESOLUTION, ACTION BODY CAMERA IMAGE "} +{"id": "8002561", "video_name": "f80aba75-7a39-5a7c-b805-2e485b63705b", "text": "a cat with motor on the sky "} +{"id": "4004175", "video_name": "4c406a69-415f-5077-9ed4-ee1eae51c5fd", "text": "a small toy truck crane digging mud "} +{"id": "6004852", "video_name": "ce88045d-af8a-533d-9b6a-a0506885c719", "text": "Create an intense scene for a music video, featuring a large, diverse crowd of people protesting passionately in an urban setting. In the center of the scene, there is a striking image of a white flag burning. The crowd is a mix of young and old, representing different cultures and ethnicities, showing unity in their cause. The setting is dramatic, with the burning flag as the focal point, surrounded by the protesters who are holding signs and banners, expressing their strong emotions and solidarity. The atmosphere is charged with energy and determination, reflecting the spirit of the protest. "} +{"id": "2007147", "video_name": "cf4a663e-caec-5a0b-bc3a-69cb936bceb3", "text": "Storyboard: Opening Shot A wide shot of the town, bathed in the eerie glow of a full moon. "} +{"id": "8001755", "video_name": "19a9c235-1f59-53a9-85bb-af4c106989f1", "text": "a creepy no leaves tree with face in the dark forest camera zoom out "} +{"id": "2005728", "video_name": "a89f6e8c-3eba-5caa-be1b-92e2354c003c", "text": "Baba Yaga, dark atmosphere, very frightening "} +{"id": "2007074", "video_name": "151e90a6-bf8f-5e59-a375-33cc7ec8fab8", "text": "hospital bed, from pillow camera zooming out, motion 1, gs 12 "} +{"id": "4003362", "video_name": "9bbf2f57-af29-5cc3-bd53-718eb4853e60", "text": "The group decides to keep the crystal safe and use it only if true darkness threatens the forest again. "} +{"id": "3003064", "video_name": "9f4462e6-6b22-59ce-b727-b086c7b8658d", "text": "20 year old man with red hair playing video games on his computer "} +{"id": "0006480", "video_name": "2d432543-ec32-5566-8fef-b54687f7a7d4", "text": "man walks on the beach near clear sea, sun shining "} +{"id": "6003194", "video_name": "e422fed4-92cc-59a3-9714-aba8b83708e8", "text": "generate video animation show Definition of love by using God Radha Krishna in his children age with beautiful background of forest near river mountain wild animals "} +{"id": "8001241", "video_name": "563addb8-6f0f-5176-8359-d1ca4831b756", "text": "over head scene 35 mm film still, air shot jesus surrounded by people reading bibles "} +{"id": "8001970", "video_name": "ba2581f2-9b64-5b5a-a459-8cae366b7f51", "text": "Wild Shift Car. photorealistic, HDR, high quality, high resolution, very detailed, 32k, product, photo, 3d renderv0.2 "} +{"id": "1003003", "video_name": "371eefbc-7c0f-55cd-a8e7-324e90f76362", "text": "humans and AI celebrate Christmas together "} +{"id": "4004983", "video_name": "f19acddf-ecc7-58c7-bd1b-9f5273c39230", "text": "Vessels with trolling motors at sea "} +{"id": "0006836", "video_name": "33fdf763-76f4-5a46-9d76-2d36798f4c3a", "text": "An otherworldly landscape unfolds before us, with towering mountains that seem to touch the sky, their peaks crowned with swirling clouds of vibrant colors, like a dream painted by Andrei Platounov "} +{"id": "3005295", "video_name": "3ea090d4-03be-5864-a01b-ce91faa935d0", "text": "blonde woman standing facingthe window on the starship and looking out window into the cosmos "} +{"id": "2003818", "video_name": "fba484b5-b016-5679-8b55-60bcd16dc2eb", "text": "slow full revolution Message: 1 Attachment "} +{"id": "0005621", "video_name": "1e3d43a5-0c09-56b3-b7f5-1d296f0dddc9", "text": "Color Change in Flowers: Take an image of flowers in a garden and animate a part of the flowers so that they change color smoothly and cyclically in 4 videos "} +{"id": "7003310", "video_name": "9b7ab05d-5a73-5feb-9b7b-0c46c1f33155", "text": "golden skeletons rapping into a fisheye camera "} +{"id": "6003955", "video_name": "b8b36f8d-cc03-5839-b56a-257bede8f812", "text": "a small kid looking at the red Ferrari "} +{"id": "3006089", "video_name": "13de6fc8-da40-5402-a72f-f1f4102d31de", "text": "a young lady lay on blue river "} +{"id": "4003774", "video_name": "18f42caa-63bc-5108-8e05-2fd2f28ffbb5", "text": "moose in the bedroom, lies on the bed under the covers "} +{"id": "3004119", "video_name": "938700af-619c-59df-9f1b-fdf2584e4e20", "text": "A desolate world shrouded in eternal darkness, with ruins of a forgotten civilization in the foreground and a mysterious cube at the center. "} +{"id": "1003079", "video_name": "38a6a5db-057d-5779-b38f-18746ab8a708", "text": "a thinker statue in ancient rome, wearning sunglasses, with a moving thouught bubble over its head, medieval painting feel "} +{"id": "6002684", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "Mona Lisa walking in a room with a chair "} +{"id": "1005232", "video_name": "60455f26-1323-559b-a12e-21ef6c5f93d3", "text": "The Lumen is often represented as an angelic figure, with outstretched wings and a radiant aura. Her appearance is of celestial beauty, with harmonious features and an aura that radiates a soft, comforting light. The specific details of their appearance may vary depending on the mythological tradition encountered. "} +{"id": "8002890", "video_name": "2b846690-e78e-5934-9859-0a517810b323", "text": "Pretty woman singing and dancing, facial expression zooming in and down, winking "} +{"id": "0006142", "video_name": "272ea877-8072-5e14-9f08-f484f1219ea7", "text": "This palace was built with different types of precious stones, has a large dome and many pillars, In the palace there are many rooms, halls, swimming pools and gardens "} +{"id": "1006174", "video_name": "70fd1750-252f-55b2-85fa-675bf5e28b8d", "text": "Meteorite explosion after hitting the ground, shooting from afar "} +{"id": "2007371", "video_name": "48bff8c4-ec78-5f9f-83de-d8cde5599e4d", "text": "Walking on the central axis of the Forbidden City, zoom in and out "} +{"id": "1006613", "video_name": "793c9eae-d424-5a14-a3db-7f17ea52afc7", "text": "pixar movie trailer with golden retriever "} +{"id": "2004021", "video_name": "35ab487c-4ac4-587f-bb64-ecb5388faece", "text": "the guy plays and sings to the guitar while standing "} +{"id": "0004661", "video_name": "0cdca699-2571-52c4-bd42-02de5abff4cc", "text": "Man sleep on the tree and horse under the tree, cinematic video , cartoon animation. "} +{"id": "7004153", "video_name": "36e6b174-7a1b-5ff7-a1c1-a6440eb5b7b8", "text": "Two pro wrestlers fighting in the clouds "} +{"id": "2004851", "video_name": "f5da4ade-8280-574b-8d24-79cbd0877297", "text": "In the face of changing political dynamics in Africa, marked by the arrival in power of military regimes and the growing influence of Russia, the historic relationship between France and the African continent is being put to the test. "} +{"id": "3003133", "video_name": "a624fa30-631c-54e8-a126-0d01425a7988", "text": "beautiful woman ,fully dressed,strong beautiful eyes,long hair ,fire "} +{"id": "2004397", "video_name": "a1e2bc18-e00a-5e92-b916-40750b5c4323", "text": "create a 2d character for me form different angle of face "} +{"id": "3005769", "video_name": "5ef3c3b2-07d9-5d2f-9e56-be0a364c5299", "text": "person on stage announcing a new software feature at a tech event, indoor, photography, colorful, energetic, detailed "} +{"id": "3005941", "video_name": "3936aaa1-6141-5cc6-97fc-c787794f0388", "text": "documents fly around the room \u200b Message: 1 Attachment "} +{"id": "1003743", "video_name": "451711a3-c8c4-5ae5-8601-88947b739567", "text": "dog in the dessert, cartoon style "} +{"id": "2004771", "video_name": "4aebf49c-b0f4-5155-9f85-24ff3daeef29", "text": "man brewing beer with fancy equipment "} +{"id": "8003580", "video_name": "8e3e811c-4211-50ee-aa41-3533bb8b797e", "text": "Darth Vader presses buttons on his suit "} +{"id": "8002797", "video_name": "2e47ade6-28af-546b-bc41-da00ffac6886", "text": "A cinematic scene of a serene landscape where lions, lepords, and other animals gather near a lake. "} +{"id": "8001657", "video_name": "518a892f-0c10-5cdd-a023-956f9024c0ed", "text": "a gothic horror style of a female hero standing stoically starring into the distance "} +{"id": "4002532", "video_name": "319626f7-999d-5aef-b409-500dca3ffe9c", "text": "white sand beach Message: DarTurchik (Font: MODERN) "} +{"id": "0003310", "video_name": "3b5ee716-e1fd-544a-b705-d71e46f08781", "text": "The Weeknd walking in the streets of Mumbai "} +{"id": "8001934", "video_name": "d1f5f22d-71c8-52ec-8682-b34f630792ef", "text": "peter from family guy eating spaghetti "} +{"id": "1005519", "video_name": "659f1e89-5147-5464-8c5e-9b71f243af37", "text": "There were four main villages in Miulu. Yava Medumgama is one of them. The leader of that village was named Sirivaddhana. His wife is Sumana Devi. They had a wise son, a prince. "} +{"id": "4002338", "video_name": "7409da93-450a-53bd-8ab6-b1f8cba5bfa2", "text": "vibrant foliage, and a serene river running through it. "} +{"id": "3004647", "video_name": "ebc32398-c2f0-568f-8f80-c95e75710f57", "text": "Cyberpunk 2077 Message: Starting Soon (Font: MODERN) "} +{"id": "2005456", "video_name": "cdeed5d9-8ab9-51a0-b2a9-7f9ec63addca", "text": "movie intro 4 heros entery with costume background is dark theam "} +{"id": "3005711", "video_name": "c4129523-700b-5e58-b8c5-937f04946660", "text": "the animal takes a monocle and wears it on one eye "} +{"id": "2006685", "video_name": "5abbfed6-9914-5545-9d7b-4533414993aa", "text": "A cozy study room with shelves filled with psychology books, a young person reading attentively. "} +{"id": "1006946", "video_name": "7f22b3a2-0c95-53db-bace-10f1612a1481", "text": "clounds rolling over green fields, 5 andriods dancing in sunlight, sapce ship in distance shot using super8 home video "} +{"id": "4004859", "video_name": "6288f7e2-da53-542a-9002-a37b1fe6d2e2", "text": "very upclose shot of human eye except it has pink hue zoom in "} +{"id": "6002538", "video_name": "d7b4aa1c-ff7f-5c1f-b967-3cd6fc246757", "text": "(Wounds exposed to the central nervous system): "} +{"id": "0004721", "video_name": "0e0837c6-8532-5307-ab13-c8d7b5117778", "text": "many kitten plays in the yard "} +{"id": "2006761", "video_name": "3065df72-730a-5f98-adff-4dfed904bc2f", "text": "Seeing Gus shiver with hunger, Andy kindly shared his food, teaching him the value of preparation and hard work. "} +{"id": "1005077", "video_name": "5da1cec8-2e7d-52d5-a7c9-3ae1deab21bc", "text": "black backround, man with red felt coat and demonic face, in jerome bosch style, animation in old polish animation fashion, horned Message: 1 Attachment "} +{"id": "2005942", "video_name": "a6065919-e6da-5b17-816f-0d658d79b1f0", "text": "A view of the Earth from inside the capsule. "} +{"id": "0006216", "video_name": "28821b70-5032-5b10-ad94-b8bcf4400469", "text": "A painting made by Zues throwing a bolt of light "} +{"id": "6003422", "video_name": "556f3943-92cb-5867-925f-86067a321306", "text": "a teenager in high school read books with friends "} +{"id": "7003808", "video_name": "65b05bbf-d2a5-546a-aa8b-af431c9c7e83", "text": "silvester stallone as a ballerina dancing in the gym "} +{"id": "7003609", "video_name": "b6145197-6eba-5ec7-90cb-e0d47b6aff2a", "text": "create a golden and shiny background "} +{"id": "0006091", "video_name": "26715970-062c-54c2-9569-b271ce33773d", "text": "chanage the camra angle and focus on goat "} +{"id": "3003726", "video_name": "a484e51c-a3de-56fb-9747-204af7305d76", "text": "beutiful models lounging on the terrace in the sunset listening to house music and drinking cocktails in the sunsets "} +{"id": "1003675", "video_name": "43bef295-fd19-52d0-a498-952886e86125", "text": "create Italian woman in elegant and minimalist living room. "} +{"id": "2006062", "video_name": "6530d09b-0102-5d57-9311-411fb9a53dba", "text": "a man running in bruxelles street , high detailed, slow motion, 8k "} +{"id": "3006260", "video_name": "5083bde8-a2a9-5b77-bc7f-c155cf3f8b14", "text": "Kombucha swallows an astronaut on a space station "} +{"id": "6004976", "video_name": "384377cd-b8e2-53c2-b105-3bf1c14c9e8d", "text": "bysons hillbillies foggy film Message: texas (Font: MODERN) "} +{"id": "0004684", "video_name": "0d49d6a2-2ce0-548b-bb16-fde69a6395ab", "text": "he had some clothes lying around "} +{"id": "7002901", "video_name": "7c6d551d-fd4a-5be6-9758-386cb16cfdc4", "text": "make her hand move while sketching and sunlight shines from the window "} +{"id": "6003103", "video_name": "9b660c50-d3b8-5f76-8362-f1f129efe497", "text": "pretty girl singing in subway. In the style of Patrick Nagel "} +{"id": "7003669", "video_name": "5b0a0ffa-a9e5-56b4-9359-f2def24ab058", "text": "hobos sitting around campfire in storm, 1988 "} +{"id": "2005698", "video_name": "7da8bc09-b4c2-590e-92b7-389baa3c405c", "text": "a palestinain children are fighting for there rights "} +{"id": "3004736", "video_name": "55275c5b-875e-5736-b83b-2198950c2cc7", "text": "helicopter flying and people climbing the mountain "} +{"id": "6004932", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "Consequences on Collective Memory and Identity "} +{"id": "2007190", "video_name": "d85a58c6-b80d-5a8b-93be-f54110a43ca9", "text": "fast moving yellow green clouds, pop art "} +{"id": "7003848", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "Show the young guitar player sitting atop the mountain, Animate birds gracefully flying across the sky in the background, Add subtle animation to the grass and flowers to simulate the gentle blowing of the wind, studio ghibli, hand drawn, vibrant, slow motation "} +{"id": "2005400", "video_name": "54cb9854-0303-5d1e-8de1-f7184302e0a7", "text": "Black and white line drawing, tiger jumping toward you, pelican standing on post, wings spread "} +{"id": "0005908", "video_name": "231883e6-f99f-54f4-8398-e4424ae86349", "text": "Science fiction, In the barren land, a group of people in spacesuits walked into the pyramids., Walk "} +{"id": "0006940", "video_name": "35961992-6f68-5ce1-9787-f891f36a078b", "text": "the pianist play in record session "} +{"id": "0003083", "video_name": "36b6b6bb-d60e-519e-a05c-b2ad782a43cb", "text": "picture of venetian blinds in a window tilting to shade the sun in an apartment "} +{"id": "3003877", "video_name": "d30011bf-f01c-53fb-88e7-dd079becd33c", "text": "40 year old woman, in front of a house on the lake "} +{"id": "0005108", "video_name": "14e8a690-504f-5199-a4d7-9d3f7733e48b", "text": "girl characters cartoon, yellow hair , thin body, green eyes,12 year old, back photo is green "} +{"id": "3004392", "video_name": "350183fd-23ed-5dab-926c-5679a85e502c", "text": "two trees on the river bank "} +{"id": "2004196", "video_name": "4e2d39a8-7abd-5dc0-81e9-751d3daf11d4", "text": "friends. They will go on a travel trip to the desert to enjoy the magical view of the stars "} +{"id": "0006969", "video_name": "35fd58f9-e0e1-55fb-bb3b-6ad92b4eed90", "text": "talking tree in forest in 3D animation "} +{"id": "6002039", "video_name": "51023572-ff8b-5aaf-a0fc-e17f36160b7c", "text": "person with a face that looks like a toe smiling, in the style of A Trip to the Moon "} +{"id": "6004778", "video_name": "6896b99f-346c-5e2a-b8b9-9520ed23023d", "text": "Fire clouds fill the sky\uff0crealistic\uff0cLighter color "} +{"id": "3004078", "video_name": "b5dd167c-7453-58ae-9c83-e2aeb78539d5", "text": "A huge explosion in the middle of the forest "} +{"id": "6003962", "video_name": "39263669-06b5-531c-b9ad-d5646687f127", "text": "server room with wild animals running around, colorful, high resolution, moody lighting "} +{"id": "2004778", "video_name": "c3f7e27b-631f-53af-93ff-97df0ebfacb5", "text": "anatomically correct human heart exploding into a shower of money that rains down and catches fire, full view, black background, 8k quality, spooky aesthetic "} +{"id": "6004786", "video_name": "8fd6b352-d77e-5b98-8a01-6e07763d8898", "text": "create an image a strong men standing in mountain with sword "} +{"id": "2007689", "video_name": "9784cf01-581d-5466-80b8-6f3616c38cd5", "text": "paradise island,three moving palm trees, and one castaway asking for help "} +{"id": "2004675", "video_name": "80642a30-efa5-51d5-a979-6e82df0ae447", "text": "animated blue marble background, 4k, realistic "} +{"id": "6003100", "video_name": "53ce7a99-d8a5-57f1-a60d-3e699b4fff66", "text": "a christmas scene in a snowy winter night. A city with skyline. Moody "} +{"id": "6004950", "video_name": "03e996c7-0f52-5abc-b644-45d60fa56f3a", "text": "single girl running in a small speedo gets hit by a single guy in a speedo, Times Square "} +{"id": "3005675", "video_name": "3938ba0f-7246-5c13-a276-d5e5e00bb5cd", "text": "old man sitting at in a forest camping making fire "} +{"id": "4004889", "video_name": "87d77590-0535-5b0b-a77e-b47c1580d3f1", "text": "A CAT WALKING AROUND TAIPEI 101 "} +{"id": "8002867", "video_name": "8f3857b3-c7f7-5bb7-bd31-690e10f1715e", "text": "a demon under the bed, night, bedroom, creepy, depth of field, cinematic lighting "} +{"id": "7002794", "video_name": "0c5bec95-1934-50a1-b927-feecba14cd6d", "text": "a close up of an old looking hand composing sheet music. However, instead of ink, the music is being notaed with blood "} +{"id": "0006802", "video_name": "335625a7-2333-5203-ad9a-36d61315adb3", "text": "aliens diwali celebration with ours family "} +{"id": "8002615", "video_name": "47af327f-e2ac-5366-8976-66933ad1b8e0", "text": "Make a person eating an burger "} +{"id": "1003963", "video_name": "492cb915-587f-53b6-8a09-1bf9bb8951c9", "text": "a selfie of English rich gentleman from 1900s looking on a Japanese schoolgirl "} +{"id": "0006791", "video_name": "332f642b-c2e2-50ba-8386-94d46ac803f7", "text": "a close up view of a ultra modern building from the street. A woamn is looking at from the the window to the empty street. "} +{"id": "0005504", "video_name": "1bf3ee2e-794f-5a76-ab93-fdcd326cf65a", "text": "In the castle, the princess placed the necklace on the table, and a small crow hid on the chandelier. Panorama, flat view\uff0cniji "} +{"id": "3006498", "video_name": "c26cfea1-6fe1-5a2e-a1a8-55eb1d1310aa", "text": "a small tiny black hole is appears in an open ground "} +{"id": "4003840", "video_name": "fa71331b-46f5-5aa1-8d8a-c81f79b3b237", "text": "van gogh animation of a man with a suitcase walking into a bar "} +{"id": "4003190", "video_name": "58087b6c-4e16-596f-b1af-77451f993e58", "text": "(bird viewer) futuristic tokyo street, walking people, 90s anime style, green, modern, clean city. "} +{"id": "1006683", "video_name": "7a8b6c8a-8d12-5fe7-98bd-e5de57b17283", "text": "A Pixar girl character, very cute, big eyes, smiling, dressed in princess costume, with a volcanic eruption in the background "} +{"id": "2005811", "video_name": "3a79a7ca-bba3-5d98-9bd7-23cd8f8aceba", "text": "boy walaking with his sister Message: 1 Attachment "} +{"id": "3005519", "video_name": "c9c83ca8-f143-5af1-ad23-ac7d1146e163", "text": "eating yellow apple Message: 1 Attachment "} +{"id": "4003225", "video_name": "0443747c-a913-546b-9333-7e0995687bf5", "text": "Supplies were running low, and the villagers were growing anxious 4k "} +{"id": "2007214", "video_name": "c64e20de-c71b-5fcb-99cd-30a1df2c4ee0", "text": "a man skydiving into the mouth of a giant red snake "} +{"id": "7003154", "video_name": "3de1cf1a-0871-5ba6-8d8b-b1c69af75faa", "text": "alien doing parkour in a desert, full moon "} +{"id": "2006171", "video_name": "32c92602-d5b3-5cb9-a93d-c0976177d67a", "text": "Timesquare at night, New York, nikon, 8K "} +{"id": "7002232", "video_name": "f09245fd-3a47-5d06-8e2c-08cf9a9117c2", "text": "In the dim light of a dark alley, where shadows danced like silent accomplices, emerged the enigmatic Illusionist. Dressed in black robes that seemed to absorb light, his face remained concealed by a dark cloak, only revealing a sinister smile that would suggest the promise of dark secrets. With piercing eyes that sparkled with an unearthly brilliance, he manipulated the imaginations of the unwary young people who crossed his path. Her words were like hypnotic spells, whispered "} +{"id": "0005645", "video_name": "1e92cd3a-9cf0-523a-af37-9ce2c263ca80", "text": "2 transparent gingko leaves overlapping for half of their size and darl color in the overlapping "} +{"id": "6003060", "video_name": "ddcaf855-7766-5f12-ad4f-f8cf1af245e2", "text": "young indian man and woman, that fleeting moment, joy was not just a feeling; "} +{"id": "1004363", "video_name": "50a13029-a1fc-55d6-a15e-afd1cf9bf89d", "text": "video for a recruitment agency with powerful music "} +{"id": "4003088", "video_name": "cca7c897-9ab1-59fd-87be-6a8277795217", "text": "trailer for a movie with tom and rocky "} +{"id": "1004913", "video_name": "5ae5da15-d280-5e69-97e0-a8875e018825", "text": "beautifull garden full of flowers, wind blow, birds flying Message: LUSI (Font: SANS SERIF) "} +{"id": "0004793", "video_name": "0f42c0c9-d394-5cc4-9d39-15b257b57c64", "text": "a chrysanthemums flower and place a Magnifying Mirror to see the flower in detailed view, it should be realistic,zoom in and zoom out each petal in detailed "} +{"id": "6004553", "video_name": "77471908-e623-5d89-a8e9-5602fc97fc73", "text": "long video Timelapse of girl growing up, HD, 8k resolution, cinematography "} +{"id": "2007727", "video_name": "23db6c18-124e-51e2-9825-0c7168d12a5e", "text": "monopoly money being drawn on the table other guy takes it spends it while having monopoly money coming in then that money that come in goes too the original guy "} +{"id": "1005329", "video_name": "61ec7d5d-9e99-54c0-9f2f-c5a881b521b6", "text": "Darkness, dark castle on the eadge of the world "} +{"id": "2006144", "video_name": "6bf33763-42dd-5bc7-9457-2c7e10036235", "text": "man lotus position on top of a cold mountain "} +{"id": "7003549", "video_name": "7a500378-5d8a-5f20-bd95-c2144cb98c05", "text": "hyper realistic car spinning donuts at night "} +{"id": "4004625", "video_name": "37db5960-d8b3-5cc5-bab9-9f0f782769a6", "text": "What do you think about these macabre relics? "} +{"id": "6002269", "video_name": "8b25b4db-2aa9-5707-a3e4-c7a3b56f290a", "text": "smoke in the neon lights in the dark background "} +{"id": "7002485", "video_name": "0cc041d2-f395-533f-b5d8-7a2cd44c2032", "text": "SneakiVR playing Rec Room Paintball hard dodging while getting shot at. 4K HD 10 second long video "} +{"id": "1006637", "video_name": "79a2c758-a660-51a9-afe0-e2a1fd07f060", "text": "clear view of under the sea ,camere moving form left to right "} +{"id": "1004480", "video_name": "5303f489-62a5-5d41-acab-65802e84b3d6", "text": "ancient wisdom within its unyielding gaze "} +{"id": "1003414", "video_name": "3f0b5664-9a38-5e62-831d-4d685735e2fa", "text": "a cartoon van dancing on the beach with flowers in the hair in front of karate fights "} +{"id": "7004328", "video_name": "de69ecd1-b8df-5274-8392-02371bdf9432", "text": "A furious confrontation between Rahul and the doctor, hide "} +{"id": "1005418", "video_name": "6388a159-2ad4-5e4b-ad79-69d98e5b3e65", "text": "two scared fishermen on a boat at night "} +{"id": "8001332", "video_name": "3532becd-d4ec-5f10-aa1b-32dba3e5f055", "text": "aliens drink champagne, black and white, 16 mm "} +{"id": "0003524", "video_name": "3efb889e-a7a8-54b3-98f0-3424170dfa45", "text": "a guy walking a path in the dark night surrounded by forest trees, a mysterious looking animation, you see this guy from the back, you only see his back walking that path and his shoulder long hair, the path is filled with sand but not to much, you can see the moon in the distance, that is the only light source, 4k 16:9 animation, dark, mysterious "} +{"id": "6004840", "video_name": "dd74e44c-ddfd-5815-b892-d5f27a3520d1", "text": "Imperial Ohio Citizens pledging allegiance to the Imperial Ohio Constitution. "} +{"id": "3006856", "video_name": "cd9119a1-5d33-554a-878a-baffb78d35b0", "text": "happiness and prosperity to the village. image "} +{"id": "0006407", "video_name": "2be4499f-498d-528d-8528-de9d8e038185", "text": "a roaring male lion on the top of the cliff while raining "} +{"id": "6003295", "video_name": "2be5bcfb-1715-552a-91ae-4cd3ec591cc3", "text": "Selena Gomez walking and finds an object buried in the soil "} +{"id": "7004513", "video_name": "8e6a65e7-4273-5c31-8878-6be2197de71e", "text": "a toolbag that is trying to hitchhike on the road in america "} +{"id": "6002495", "video_name": "0f8a9718-9e6e-5c3e-9d91-9baa4813e749", "text": "human being with scorpion tail, standing on cliffs edge, sword and shield, cyber background, high quality, 4k, high definition, high detail, "} +{"id": "8003465", "video_name": "77d8c930-d5de-5435-bb78-70395b834765", "text": "The orphan girl is shown gazing at the scenic surroundings, a sense of peace evident in her eyes. The bond between her and the grandfather is subtly highlighted. "} +{"id": "3003827", "video_name": "8395b6b3-c445-5833-88ec-41233f8dafbc", "text": "An animation depicting that there is still a lot of work for a programmer to complete on the computer, making people feel anxious and stressed "} +{"id": "1003597", "video_name": "423ddffd-8677-513f-95ec-d0ca49c351f1", "text": "Once upon a time in the magical land of Whimsyville, there lived a curious little bunny named Fluff. "} +{"id": "0006364", "video_name": "2b448694-2a55-5096-a5de-ba5a74f2141c", "text": "Mr. X slowly learns to use the device and begins exploring social media. He creates a profile and begins to immerse himself in Facebook, Instagram, and other platforms. "} +{"id": "3004951", "video_name": "526e141e-a692-5972-aae3-faccd9f25c6a", "text": "anthropomorphic manatee character posing seductively infront of a magic portal "} +{"id": "7004411", "video_name": "4abe530b-5347-5f9c-9093-4387890808cb", "text": "mule kneeling at the altar. cinematic, 8k, dark background, natural sunlight. "} +{"id": "4002273", "video_name": "b7406413-bbd6-5b90-ba31-2fb15f32a121", "text": "image wizard in a forest ralph bakshi style animation "} +{"id": "8001481", "video_name": "5dbee1ba-0ea3-50ec-b7c3-333ae6245516", "text": "outer space view, photo realistic, stars twinkling, 16:9 "} +{"id": "0004566", "video_name": "0b4c6ae0-518c-5cf5-83ff-2d0fbe103f3f", "text": "A man jumping on top of a pallet in a warehouse "} +{"id": "6003930", "video_name": "29816e9c-af54-524c-8428-11d9e3d71122", "text": "a toothbrush is singing and dancing in the moonlight "} +{"id": "7003611", "video_name": "f225b0a1-074d-5995-942d-7bb0af81f22e", "text": "An ancient Chinese woman in white with a long sword walking on a bamboo path "} +{"id": "2007691", "video_name": "a6187d6e-c7d4-59e0-9699-498faa290dbd", "text": "soldier in snow, high Detail, realistic. "} +{"id": "8001374", "video_name": "fd9ea5e9-af9c-54c5-89e9-4a1930deecbe", "text": "( in jungle 3 boys and 2 girls carry their hands )Through their journey, they learned valuable lessons about friendship, resilience, and the power of teamwork "} +{"id": "8002341", "video_name": "b376652c-6172-52a9-a77a-97e7ef010783", "text": "image with a nature background with a woman reading a book calm and peaceful "} +{"id": "1006763", "video_name": "7bca59e0-35a9-5f74-a389-f3de60aa00c6", "text": "a young writer writing and looking out the window "} +{"id": "7002035", "video_name": "08759049-c6a3-5421-9f50-e2acbfa61b46", "text": "One big popcorn in the cinema and little people all eating it retro cinema "} +{"id": "3004500", "video_name": "08aabdac-6f93-5009-9087-c92105e4e04e", "text": "In a meadow,a little rabbit is chased by a big bad wolf "} +{"id": "4002841", "video_name": "d580a381-64a4-5405-9bb3-061fe0417eed", "text": "moving call of duty mw3 operator with sniper rifle "} +{"id": "4003145", "video_name": "95e6755a-32bb-5b0f-b9d2-c64eb3b7e605", "text": "skyline of new york morning light clear sky "} +{"id": "4002871", "video_name": "fffe52f4-671b-5932-9f27-c921535824d8", "text": "red Puppy chasing after a red cat, running in the water pool "} +{"id": "7003125", "video_name": "91f78ad0-52a8-5baf-a642-527635a29fc3", "text": "Octopus Brother vs. Iron Man Details 3D 4K "} +{"id": "2004279", "video_name": "9c40873e-59d8-503f-b338-d2710d63d7e9", "text": "an epic movie scene of a red and white dragon facing each other of, 4k, realism. "} +{"id": "6003342", "video_name": "fc3cd7b0-68d7-56b1-9aac-837725963a11", "text": "an official called the telephone operator in an angry tone "} +{"id": "0004069", "video_name": "02ba351e-103d-59ab-ae8b-04a1c7cf8183", "text": "man rushing out of a burning building "} +{"id": "1005847", "video_name": "6b713134-6173-524c-854d-6202e7950e66", "text": "By chance, a bird got stuck in net and the hunter caught it "} +{"id": "3006865", "video_name": "60b4105a-9dd1-54f0-bc94-c0cc2510f55f", "text": "generate cinematic, an indian village in jungle with people "} +{"id": "3005591", "video_name": "5ab64008-2ce6-5e47-80dc-4dbf4867eff2", "text": "giant mythical creature from magic the gathering\u201dLegendary Phoenix: Create a majestic and powerful firebird rising from the ashes, symbolizing rebirth and immortality.\u201dfantasy fantasy style "} +{"id": "0004180", "video_name": "04a2eb9b-2787-542f-bfe2-6050c556cf31", "text": "indian style atta biscuits 4k quality AR 16:9 "} +{"id": "3006756", "video_name": "69d04ca4-a171-59e1-8669-b06dea55771f", "text": "create an animation to illustrate the concept of recidivism in criminal law "} +{"id": "1003624", "video_name": "42c44986-2147-5a91-878c-fed0f67ba110", "text": "elderly man and woman ride tricycles while young boy and girl watch and laugh "} +{"id": "0005635", "video_name": "1e7b927b-1a9b-59b8-a6b4-2c13c4020f06", "text": "an evil force sitting inside a shiny portal inside the old cement wall "} +{"id": "1005729", "video_name": "695e727e-fb33-53ce-a866-1d05633c45bc", "text": "happy alien with headphones playing on DJ mix "} +{"id": "6003080", "video_name": "720528b0-05da-5de8-be93-95d522415824", "text": "A construction worker is confused by a simple glove. In the distance a cyberpunk neon city glows, night, 4k ar 1:1 "} +{"id": "4002317", "video_name": "f72cfbea-0996-5714-bdf3-27ed1bcfeb08", "text": "Karl Marx as a Christmas tree "} +{"id": "6004477", "video_name": "e33fb36c-2a04-513f-be25-379b59f838e5", "text": "MamaMatcha provincetown , video walk through "} +{"id": "8003962", "video_name": "29fb04d0-39d1-52c5-a62a-2e2865b398ae", "text": "sexy robot dancing in a retro arcade, 8k "} +{"id": "2003263", "video_name": "89b4bb4d-019b-51fc-90a1-11bdcce926f9", "text": "Inside, the cottage was a labyrinth of dimly lit corridors and rooms, each more mysterious than the last. Sarah felt as if she had stepped into a world beyond the realms of human comprehension. In one room, mirrors covered the walls, reflecting infinite copies of herself, each with different expressions, as if they were alternate versions of her soul. "} +{"id": "2004608", "video_name": "34bec472-ffd5-5926-8896-a7d43b52c9ad", "text": "10 seconds video of a butterfly flying off a rose inthe air,the rose is covered in drew drops and the butterfly is shedding the drops as it leaves "} +{"id": "1003375", "video_name": "3e3ce154-b998-5921-84ce-f34e5c76adec", "text": "camera pan from right to left, the Beatles crossing Abbey road "} +{"id": "8003743", "video_name": "350c0ae0-b7b6-567c-8544-e10a7dc666f5", "text": "Envision and bring to life a scene of two Ilithid from the forgotten realms playing chess at a table. Left and right profile views, camera rotating around behind them, the artistic style of H.R. Giger, and MC Escher "} +{"id": "8002215", "video_name": "80d734b8-2289-5825-908e-0e6b907ea8e7", "text": "little baby lays arms towards mum, while jumping "} +{"id": "1005366", "video_name": "62a10ee2-2d18-5393-b039-5de1f272529a", "text": "ruined city, dead plants, high quality, sharp details, cinematic light "} +{"id": "2003955", "video_name": "780e2792-32e5-5fe7-bbf5-8eab9f63bcac", "text": "Bride and groom getting married, cartoon style "} +{"id": "7002074", "video_name": "7029b618-e8cf-5f1b-ac3e-320526ff1ce4", "text": "According to the information received, a few years ago a Dutch "} +{"id": "3004118", "video_name": "f65eb984-4aaf-5992-be8f-8045453a024b", "text": "The pipkin is empty and filled up with ponds water and some bubbles are coming out. "} +{"id": "1003612", "video_name": "42917d82-e93a-5b74-95e2-09154ad85325", "text": "mediatation video gold wave ,gold money , splash ,in safe savings room "} +{"id": "6004770", "video_name": "6afe1838-c535-520e-b739-2252fc5f458c", "text": "Slow motion dust particles float through a beam of sunlight. "} +{"id": "1003553", "video_name": "418b4cb8-388a-56cd-886c-eeb26dabc2b3", "text": "porsche drives through the desert at high speed into the sunset for 10 seconds "} +{"id": "2003031", "video_name": "eb0a1e5f-6bb3-59bc-a120-4016fe7fbc30", "text": "Andrew Torba CEO of Gab in light, In the bedroom, wearing headphones to listen to music, camera zoom out and around "} +{"id": "0006683", "video_name": "30fbd299-77f7-5cc0-bb91-cac8a73a7daa", "text": "A girl wearing white short sleeves and black cropped pants "} +{"id": "6003233", "video_name": "c3dc44a6-3c0c-558e-973b-e15e0a86814f", "text": "in to a bridseye view of goats in a field Message: 1 Attachment "} +{"id": "2007977", "video_name": "ca7c6c7d-d1b8-5965-83ac-685ad181da7d", "text": "smile and play happily Message: 1 Attachment "} +{"id": "2005579", "video_name": "58f3c016-0f01-52d6-87df-a8b3c6393663", "text": "a snowy, rugged terrain, a mysterious above human size avian creature with a pointed beak and layered plumage stands. "} +{"id": "3005959", "video_name": "35352009-1611-55fe-8f6d-ebdd94e58500", "text": "A lush, tropical jungle setting. The camera pans through the dense foliage, revealing the majestic Kong perched on a massive tree, and Anakonda slithering gracefully on the jungle floor.) "} +{"id": "2003124", "video_name": "644a8aa5-7eb3-5fc9-b09e-67bd2699da48", "text": "and no matter how comical the \u201cwar\u201d was, many people became homeless and struggled to survive. Many emus, too, lost their lives. "} +{"id": "8003285", "video_name": "04602fd0-d0f3-5606-a7ed-ae7231be2e00", "text": "birds and animals looking happy in forest "} +{"id": "4002184", "video_name": "27ae8ba1-c198-5256-badd-fdc6525ba831", "text": "mr McGregor weeding in his garden full of flowers butterflies and veggies "} +{"id": "0003328", "video_name": "3bacb709-05af-5b3c-b392-d43b85c917b3", "text": "image of A glass of water and the animate it into a video, using a realistic approach, while adding snow and flying golden birds to the scene add a rabbit, jumping over the glass, well adding a more peaceful serene expanded setting "} +{"id": "3005844", "video_name": "dce15284-fb1d-5e47-b2d0-6186b5dc29e6", "text": "Keanu Reevs struts across the earth. Message: 1 Attachment "} +{"id": "0004685", "video_name": "0d4af439-ba8d-5da2-b745-dcac65effcdf", "text": "The tiger is completely in the form of a computer system unit. "} +{"id": "1003168", "video_name": "3a5db8af-2db7-5273-a47f-3af8a6483d7a", "text": "a character from blue lock making a goal "} +{"id": "3003983", "video_name": "0b9050da-361d-5bce-a96e-f7ca5c3a8116", "text": "Laborers working in the fields hear shouting and they stop their work to listen. "} +{"id": "5001955", "video_name": "37e11f7c-6f32-55f4-8d1a-29b35a88bf39", "text": "In the 1960s, NASA of the United States launched the Apollo moon landing program, aiming to achieve the goal of sending humans to the moon. The initiative required the collaboration of tens of thousands of people and institutions across scientific, technical, and engineering challenges. Through the unity and practice of the team, the great goal of man landing on the moon was finally successfully realized in 1969. This is not only a scientific breakthrough, but also a milestone in human history, showing the dream and determination of mankind. "} +{"id": "3005961", "video_name": "224a940f-30bf-570f-b681-03bbc458c425", "text": "Workers talking , oil rig, zoom in to faces "} +{"id": "6003897", "video_name": "fc4f7cf6-3bc1-59bc-9978-dd5f0bb78938", "text": "One crisp autumn morning, as the leaves turned golden and the air grew cooler, Henry found himself standing at a literal crossroads. He had been walking along the winding path that led to the heart of the town when he reached an intersection. To his left, the road meandered into the familiar territory he had known all his life \u2013 the town he called home. To his right, a new path beckoned, disappearing into the unknown wilderness, a world uncharted and mysterious. "} +{"id": "1006139", "video_name": "707d2ba4-a157-5958-81db-190dae04baea", "text": "A snapshot of their unbreakable bond. "} +{"id": "0004485", "video_name": "09c6788c-9da2-5f54-beba-1001c21af97b", "text": "black background with small cherry trees Message: 1 Attachment "} +{"id": "4003601", "video_name": "1c019fc2-66f6-5e51-9ed9-94429635a85e", "text": "The hostess is cutting vegetables in the kitchen; The water pipe is connected to the water, with apples and other things soaking in the water; The pot was steaming hot; Beside are some cooked dishes; Suddenly, she turned around and let out a strange smile "} +{"id": "8002361", "video_name": "40a8917d-863c-580f-9153-bdadf19d9cfd", "text": "The dragon baby kept nodding, saying that he would not dare again "} +{"id": "1005886", "video_name": "6c43cb21-4096-5076-9c13-088aa242585e", "text": "an African American female video editor editing videos. "} +{"id": "3006937", "video_name": "5750f82c-a042-58ec-99e4-58c992ee925b", "text": "Add a cup of hot coffee "} +{"id": "0004712", "video_name": "0dc909ad-2cea-5e6e-bc1e-ed79e25f695d", "text": "in biblical times a man is on a journey in the middle east "} +{"id": "4004862", "video_name": "3561015d-7edc-5917-acc9-7760fd9cb2e6", "text": "a vampire hunting a. Fox in a jungle with fireworks 8k "} +{"id": "1003977", "video_name": "49712dec-1155-5d64-9874-0f9f5745ff79", "text": "super sport car racing in Machester "} +{"id": "4002094", "video_name": "c3df6501-fe0b-5dc6-95ff-b56e41ceb9c9", "text": "create a image with yellow background placed a watchtower on it and name to be displayed as The Watch Tower "} +{"id": "4002822", "video_name": "faafa058-f04f-52a0-bf6f-f4c868a239bf", "text": "one spinning record on a grey turntable "} +{"id": "3005247", "video_name": "1637b1dd-895e-515d-908d-e47de5f91b85", "text": "A group of tigers in the forest in nature\uff0cultra details\uff0csuper clear "} +{"id": "1006938", "video_name": "7ef444ee-21db-587a-9ea6-2b3ed8492576", "text": "Ruby Rose from team RWBY inside Castlevania. "} +{"id": "7003332", "video_name": "7d5cdfac-b259-5be1-8d3c-752f558edfd1", "text": "female Puerto Rican young child as a warrior hero "} +{"id": "0003452", "video_name": "3dd033de-663a-58db-90ae-7c095fd092a3", "text": "lighting strikes clouds all over hyper realistic a storm going on and a city aerial view of the storm zoomed in from the street "} +{"id": "2005302", "video_name": "2c057c25-4fcc-5c1c-b4b2-635a12acbf70", "text": "make a video for me that there is a light coming from above the mountains and then a peacock homes out of it "} +{"id": "6002880", "video_name": "a89d388a-f6ba-540a-8a26-5bbab75abb0a", "text": "hand form leak in the high wood "} +{"id": "7002308", "video_name": "31a7d407-2c8e-50b9-bf47-827926df1a32", "text": "A mysterious and magical night in the forest, where the boundaries between reality and fantasy blur, and the secrets of the night come to life. "} +{"id": "7003860", "video_name": "c60e72df-550b-5964-b996-6b71d13db6fa", "text": "a realistic cinematic video of 3 or more girls in a lit up pub smoking and drinking wearing glittery clothes. "} +{"id": "1003950", "video_name": "48ec1e6f-00b8-5e11-9f1c-18b684a7bcd2", "text": "generate a video of the founder of the Pakistan. "} +{"id": "4003380", "video_name": "61dec857-5d24-5f08-93d3-0f7f8c2a9afa", "text": "a triangle with a G in the center. At the background there is a sky with some clouds and the sun "} +{"id": "1006425", "video_name": "7597e72d-eab5-5974-8498-77530a6868f8", "text": "a penguin ride a motor bike very fast on roads "} +{"id": "6003095", "video_name": "64c86adf-388f-5e67-bed9-77270e72f08c", "text": "3dimage of old man and boy is taking "} +{"id": "7002513", "video_name": "dd59bba8-34af-5c88-803b-72fb10b1e705", "text": "purple fire and red eyes in background "} +{"id": "0003288", "video_name": "3aed4666-ab25-570f-9baa-549e59133d1d", "text": "people walking on metro plateform in paris "} +{"id": "1003033", "video_name": "37a9a7d2-446a-5c87-84b6-9c56e5680e18", "text": "a panda is walking through the green forest and is laughing, 30 seconds duration "} +{"id": "8003955", "video_name": "3355d19c-dfea-55e3-96b6-ffc9a6a6afac", "text": "an anxious patient in a 1940s soviet hospital, black and white film "} +{"id": "3003305", "video_name": "6b51bb8d-5c2f-55c5-976c-a7b9791d35c7", "text": "a duck walking on a bridge "} +{"id": "2003413", "video_name": "7be1c848-e2c4-506e-8c8e-447e39b68d29", "text": "illustration characters looking like indians well dressed in formals walking on an airport and air plane is also visible in the frame "} +{"id": "3006205", "video_name": "b9fddd15-c5e8-5176-89e5-ad9e29c5d8d6", "text": "a old school car driving on a street in Paris without people on the street, the sun shines "} +{"id": "4002757", "video_name": "0fb532c5-e6fa-51d0-9206-5a0c5354a4a4", "text": "A man on his Computer giving a thumbs up while smiling and laughing "} +{"id": "3005906", "video_name": "3976fc8f-0f68-5ee2-91b4-653f8f4bdfa4", "text": "two beautiful girls, one man, vibrant fluorescent colors, triangle love and emojis, futuristic Africa city "} +{"id": "4004759", "video_name": "b36728b3-5d9d-583c-91cd-146e57799e61", "text": "a young man sits across the desk from a doctor. The camera pushes closer to the man as the doctor gives bad news about his health. "} +{"id": "8003205", "video_name": "e639f09a-bf21-55d0-8a8e-31475dc11a74", "text": "photo realistic futuristic detail Jakarta Message: dimas (Font: MODERN) "} +{"id": "4004828", "video_name": "6c76b04b-d509-563d-80f7-3de26fc39c98", "text": "Live tv news report, Joe Biden speaking to the camera, news room weather map "} +{"id": "4004974", "video_name": "6b7d6157-0712-5c75-a1fd-67dca5849f67", "text": "Daenerys Targaryen wearing short swim suit "} +{"id": "7003383", "video_name": "e2001bf8-b9ca-56cd-923c-534a9c41bd11", "text": "1940 live footage retro realistic and detailed of a worker soudering in a dark room with a dark background. "} +{"id": "6003927", "video_name": "fc8eff26-8584-52f0-aa69-dc0818454090", "text": "a huge stage with red curtains and long stairs with alot of blinking golden lights with audience sitting in a rows "} +{"id": "6004699", "video_name": "b439f451-6d1f-58c6-9b8a-6dff35b729f2", "text": "two diferent boxers punching each other "} +{"id": "4002445", "video_name": "a4179112-f5e6-57a7-ba32-902386829e26", "text": "thunder clouds parting over metropolitan life tower in new york city. photorealistic. "} +{"id": "0004760", "video_name": "0ed030ca-d761-578d-a6ba-637221ce7d92", "text": "movement high quality anime girl cyber goth sad girl looking at the camera "} +{"id": "1005455", "video_name": "644007fc-2328-521e-ab81-98ae33ca6f73", "text": "Generating video A girl in a hijab in the woods. with a modern rifle. aiming at the camera. "} +{"id": "4004850", "video_name": "a909e119-be43-5ad8-a354-c253c0a05630", "text": "cute rabbit with blue eyes and her young bunnies going to a vegetable market "} +{"id": "3003219", "video_name": "ee5a3ea7-3714-5c7f-9408-6350bd1b486b", "text": "elon musk standing ontop of a rainbow "} +{"id": "4002642", "video_name": "4b6627f9-c8d7-5781-aa05-4bf21419351b", "text": "a girl on group to play the rhythmic gymnastics wit ribbon "} +{"id": "4002658", "video_name": "9bde2ad3-a119-500a-8078-e23687496cef", "text": "a boy walking on rop animation "} +{"id": "8001685", "video_name": "367d5e2f-039d-5be6-b842-8f2f99ae97e3", "text": "poetic algorithm art, conceptual critique of nature and mechanics "} +{"id": "4004079", "video_name": "a1afd73a-496b-5147-9298-179f6f81a2d6", "text": "a realistic clip of babies playing full contact rugby "} +{"id": "8001182", "video_name": "5c6c41ed-55fc-5473-b67a-bf4627d379c9", "text": "the band bring me the horizon performing a metalcore song on the stage of a small club "} +{"id": "1004503", "video_name": "536df0ce-f073-5f36-8be8-e632cf365e4a", "text": "world of red rot in style of 70s sci fi "} +{"id": "5001288", "video_name": "6234401d-7cd9-5d09-b5c8-e47dd618296e", "text": "Picture of a sky starting to rain "} +{"id": "2004887", "video_name": "c3056c6f-7345-5031-966b-99b896f75986", "text": "girl prisoner in medieval era court of England "} +{"id": "0004790", "video_name": "0f3295ad-f88b-517b-8177-9ed184a7ba6b", "text": "A visual representation of a mind illuminated by a glowing lamp, symbolizing the search for spiritual understanding. Message: 1 Attachment "} +{"id": "5001319", "video_name": "c111f589-7509-57ae-b595-40a7c1548dac", "text": "a deflated Barbie doll. Someone is pumping it up with an old timer air pump "} +{"id": "7003687", "video_name": "4c1608c7-9375-5d16-9b49-807b91eba7fd", "text": "A robotic eye surveying a futuristic cityscape, its gaze scanning the horizon for any signs of life. "} +{"id": "3006270", "video_name": "c6caf00c-95e3-5f55-a2d2-eaf32989c940", "text": "establishing shot of a town at sunset in a Sergio Leone style western "} +{"id": "4002293", "video_name": "e3d1319d-f0b0-5add-80bb-08384b5dd721", "text": "image of a GoPro Hero 8 camera fixed on an airplane shows bombs dropped in the Second World War, old scenes, black and white, old film look. "} +{"id": "2004272", "video_name": "5e4c2248-d432-51fb-bc27-8cbf9788af31", "text": "create a video about a Palestinian resistance fighter wearing a keffiyeh and holding a Kalashnikov in his hand, fighting Israeli soldiers. "} +{"id": "6003929", "video_name": "7b12519b-3694-5a76-8265-28d844ce6858", "text": "beautiful light brown eye looking though a telescope "} +{"id": "7003897", "video_name": "d52cd0d4-f698-585d-89aa-9d9b1c48fd2a", "text": "smiling cat violet and pink color pallette "} +{"id": "3004439", "video_name": "194b716c-b5c3-5904-902e-238de72176a0", "text": "Generate an image of a formidable giant Philistine, clad in heavy armor and wielding a sword, spear, and large shield, challenging the Israelites every morning. Message: 1 Attachment "} +{"id": "4002148", "video_name": "cb8a5996-029f-5aed-ae12-db98ab395d8b", "text": "An elderly man with a kind smile, sitting under a big tree in the village, sharing wisdom with the locals. "} +{"id": "4004776", "video_name": "487c1d14-4329-5e79-964d-5b0221855246", "text": "The sound of pulling slippers, hitting walls with plastic bottles, humming, and waves combined to make music, on a terrace next to the sea, at 4 a.m "} +{"id": "2005496", "video_name": "b4897fde-2914-5f0f-9be9-c123524759c1", "text": "Wizard of Oz flying monkeys, directed by Christopher Nolan "} +{"id": "8001275", "video_name": "cba27cda-7512-5ead-8415-11fd79b7923a", "text": "Low angle shot of a spacecraft hovering silently over a suburban neighborhood, its metallic surface reflecting the moonlight. "} +{"id": "2005726", "video_name": "dea28aac-f622-5293-a8ce-9524e134d865", "text": "baby Jeremy Irvine in the crib "} +{"id": "1006799", "video_name": "7c7e7c33-b75a-5c8c-aaa1-10b886dcf45f", "text": "A super cute catzilla walking through a city smashing buildings and skyscrapers "} +{"id": "2006073", "video_name": "8ab0a859-7767-54bc-b88f-54a46e32c481", "text": "Create detailed feathers on the animated birds. Showcase the feathers in different positions to emphasize flight. "} +{"id": "2005443", "video_name": "1aa695aa-7f96-54ef-9e4e-621dde1959c3", "text": "group of men looking in window "} +{"id": "8001861", "video_name": "154960af-1b4f-5f44-93a4-c6e0d6a30c5c", "text": "A man was driving a jeep through the desert with fighter jets chasing him. "} +{"id": "1003368", "video_name": "3e0d2074-11cf-566f-b028-57bdd28f4140", "text": "The mother gave her baby a red apple. "} +{"id": "8001499", "video_name": "5738510c-00b7-5a1e-b65f-45e523267509", "text": "Realistic cinematic bad dark doctor ,24 fps "} +{"id": "4002669", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "In a dark corridor, on the right wall, the unclear light spots transform into a breathtaking depiction of stars in deep space, twinkling and swirling. "} +{"id": "4002480", "video_name": "261c695d-3c59-51c0-ae56-24578f580330", "text": "child running to cozy home, emotional, 24 fps, m3 "} +{"id": "0005454", "video_name": "1b084f9b-fc7f-559f-91be-318c82d0d266", "text": "The forest was buzzing with activity as the friends decorated their eggs with vibrant colors and patterns. Little did they know that a mysterious visitor, a mischievous fox named Freddy, was watching from the shadows. "} +{"id": "2007680", "video_name": "a881500c-88d8-58c4-a216-eb3f2dbbe65d", "text": "A light anthropomorphic purple tiger with green eyes running around catching fireflies, Pixar, "} +{"id": "3006256", "video_name": "b82521ec-43b7-52c6-8e2e-c99e10fd47ad", "text": "scorpion with lights, bioluminescent forest, realistic photo, HD "} +{"id": "3003383", "video_name": "efeec852-7157-5fbc-93f6-7393cb2b339b", "text": "The wheel is moving, the candles are burning Message: 1 Attachment "} +{"id": "5001851", "video_name": "c02daeb0-93a0-57b6-bf26-f6c7494077a4", "text": "time lapse of cars driving on a highway "} +{"id": "2005924", "video_name": "209919b6-8816-52d2-aa55-d5f9bd03c1f2", "text": "Water vapor in the air condenses into droplets and gathers into dark clouds. "} +{"id": "3006396", "video_name": "5c02373c-f250-5275-b276-48ed20ca7623", "text": "ancient chinese general observing a battlefield "} +{"id": "3005326", "video_name": "db87e1c4-bf08-591b-a984-06b24ff9e042", "text": "three wise men into ball glass with water "} +{"id": "7002569", "video_name": "c51d8f44-0efe-5836-baa4-124f4aed5182", "text": "single human model, facing forward, runway show, clothed in bed sheets, blankets , pillows "} +{"id": "2005516", "video_name": "5446fca3-1633-5d35-8f63-15991e2d2810", "text": "He walks slowly and above the moving stars "} +{"id": "2007640", "video_name": "8580bbd3-c1f0-51cc-9d75-b542ec93be8a", "text": "seamless loop of neon dancing girls , in style of chemical brothers "} +{"id": "1005828", "video_name": "6b13b6fd-0e7f-5241-bcf5-545ab3b08184", "text": "a superhero named Shadow Strike (in a stylish purple and black suit) walking "} +{"id": "6004256", "video_name": "62f2b1e5-c2fc-5b89-9d23-ab3715be0971", "text": "A pink sapling grew from the pink egg "} +{"id": "7003757", "video_name": "3234a4b9-809a-5541-8af9-aaf27c0386c4", "text": "man turns into a fly and dives into a bowl of soup "} +{"id": "2005639", "video_name": "2897ddb4-7f2f-5a13-9c48-3f1808bb951e", "text": "Floating white orb above a lake, people looking up at it and pointing from the shore, black and white coloring, the lake water is angry, theres a slight mist in the air, ominous feeling in the air "} +{"id": "1004185", "video_name": "4d6b87aa-237c-5b01-b4e9-acefddb5addb", "text": "dreadlocks moving, smile Message: 1 Attachment "} +{"id": "8002436", "video_name": "5ee12993-0544-5293-8eec-11211f5a0ebc", "text": "The boy saves two girls, but he drowns himself "} +{"id": "8001546", "video_name": "f6d4530f-f781-5326-b26e-d7fe4f9ff761", "text": "man fly in space and hit asteroids "} +{"id": "3005440", "video_name": "d7f59a5b-a738-55b8-865c-28c1b328a249", "text": "Missile hits skyscraper, explosion, wide angle "} +{"id": "3005075", "video_name": "7cb6fe74-c55c-5a35-bd7b-5d253c8c16e4", "text": "Bill evans playing piano in the style of picasso "} +{"id": "3005293", "video_name": "50a522a5-a4eb-5508-846a-2ac467f14dce", "text": "A young woman is crying while hugging her boyfriend from behind in an airport. He is facing away from her, with his luggage beside him. People are watching them, some with sympathy, others with curiosity. "} +{"id": "3003083", "video_name": "2e8bcecf-1f7d-512a-a655-1119f5ff9cc8", "text": "a cygborg walking in a catwalk on a runaway "} +{"id": "0004463", "video_name": "097c026e-8fb4-5d97-8117-d9c014378e27", "text": "Climactic Rooftop Performance: Describe the climactic rooftop performance where the artist, 21 Savage, and Drake join forces against a backdrop of fireworks, neon lights, and the futuristic skyline. "} +{"id": "2006747", "video_name": "6d108fe2-6682-5f3d-927a-9804565fe6b4", "text": "Arthouse, the sun man between nature "} +{"id": "6003476", "video_name": "787138d7-52f2-5cf9-b26d-6736298f46ae", "text": "tiny little moon shinning like a diamond in the sky with twinkle twinkle little star: 1 Attachment "} +{"id": "6002976", "video_name": "30648679-f171-5003-82ce-eab681e90abc", "text": "the wind and rain opens the window with curtains into the room "} +{"id": "4004668", "video_name": "05bf5ff4-d652-595e-a6f6-85d3d0ca4aab", "text": "A cartoon Bunny in a pink hoodie runs through a traffic light against the background of the city "} +{"id": "2004814", "video_name": "5db826d0-6a32-5d8d-b4e2-30f45b3a2af2", "text": "a person looking incredibly satisfied while drinking a matcha latte "} +{"id": "2007895", "video_name": "8fb33dec-ddbe-599f-bcaa-57a24b299a70", "text": "lovely heart girl live a little village "} +{"id": "0004558", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "create a new style 3d cartoon bird in red as a reporter with with human hands and with camera or mic "} +{"id": "1003418", "video_name": "3f1a039a-dedd-5ec5-aca8-9b95ac69fdec", "text": "a baby girl with her grandfather and grandmother "} +{"id": "2003170", "video_name": "1198c1a7-641a-5231-b128-77530c676e9f", "text": "Darwin from Cartoon Network Gumball sings with microphone in hand "} +{"id": "1005532", "video_name": "65d4917a-7ca3-5de1-9fc4-81548c208543", "text": "blue twitter bird logo erupts into flames composed of faces"} +{"id": "1003642", "video_name": "4321b92b-9aaa-5a4a-873d-9496396a3c92", "text": "Children watching Santa Claus riding his reindeer sleigh high in the sky "} +{"id": "1004844", "video_name": "59888b2d-dde1-5ce8-8108-4f8fffb21bc4", "text": "On a top high above the Futuristic Architectur Building, a young boy stands with flame. In his hand, he jump on road. blck and white video. "} +{"id": "3004543", "video_name": "3392bf94-cce4-5096-a24e-596d54e179da", "text": "a princess surrounded by gold, jewels and sweets inside of a magical underwater bedroom "} +{"id": "2006058", "video_name": "a95023cb-c044-5c31-8098-0a3557aab93a", "text": "As we navigate the corridors of time, "} +{"id": "8001928", "video_name": "1bd7b555-6b54-5d39-a9eb-6330e636d773", "text": "a rocket is floating in huge space "} +{"id": "1006383", "video_name": "74ca6236-dddf-59a6-b4d5-06185a278fdf", "text": "steam train, in the mountains, night, smoke, "} +{"id": "7003747", "video_name": "8138c74c-ab24-5dca-a12e-9fd629ef7161", "text": "Tectonic plates move, accumulating energy. Energy is released suddenly when plates break or shift causing vibrations, earthquakes. These vibrations travel through the earth, causing shaking and destruction. "} +{"id": "6002536", "video_name": "02c055ee-682a-5eb7-a91c-0c818c4e16d4", "text": "anime boy with wind in his hair, mountain village in the background "} +{"id": "8003796", "video_name": "0841181d-e297-5ea3-91dd-94fd94a55a82", "text": "kim kardashian eating rice with north "} +{"id": "8003898", "video_name": "8adfcec8-db7d-5447-a2a3-314b57a52fa1", "text": "sara and mark join in a group for study in college, cinematic shot, 8k "} +{"id": "8003370", "video_name": "af60c0af-77c1-547b-a390-e6f51a1e6d7d", "text": "realistic Fidel Castro on a bed connected to wires in a lab inside a cave "} +{"id": "8002145", "video_name": "421c48d6-4a68-5a46-a152-ead7cacfe22a", "text": ": A man taking note while sitting on a desktop in front of a laptop "} +{"id": "2003804", "video_name": "0f68b771-eec5-540f-a4e8-65b4527df1fe", "text": "sending a small space craft to the deepest darkness farthest planet and moons in space to search out and find an alien plant "} +{"id": "3003467", "video_name": "5e130090-3bf5-5752-b7ee-3dc0247c8661", "text": "Light purple tinted sunrise in New York, James Gilleard style, James Jean coloring"} +{"id": "8001911", "video_name": "1028a322-3bfc-57e0-a507-7da9c768b2df", "text": ": Rearview mirror showing a distorted, ghostly figure in pursuit "} +{"id": "2004260", "video_name": "f6c863e9-aff7-53d9-b911-52d33b6860d4", "text": "bridges being carried by people walking in the streets of a city "} +{"id": "3005542", "video_name": "3370041d-33d9-52ac-9243-001730c02346", "text": "twitch follow button that got clicked witch an cool white water animation "} +{"id": "1006384", "video_name": "74cde72e-4ddc-5814-9d90-da1bcacc2a57", "text": "A dark blue and white ship sailing in the blue sea at sunrise "} +{"id": "7002134", "video_name": "c089df36-ba7a-573f-b310-a516e07b5a60", "text": "Give me a picture of a little boy eating chocolate and his little sister next to him, smiling sincerely at him in the middle of a garden filled with flowers and animals. "} +{"id": "4003697", "video_name": "b72b3393-6147-5cf8-9103-ba841105fc5c", "text": "Hunters trying to catch wild ducks,8k, cinematic, Clear details of faces, tree hunters, "} +{"id": "8001686", "video_name": "ff2a453b-87f7-5461-9695-44bed18582fb", "text": "Evil Santa Claus holding a burning torch, cartoon, realistic, 1960s "} +{"id": "0003497", "video_name": "3e91fda7-f6f4-54f1-912e-7c8250042dc5", "text": "male anime. as a low headphone "} +{"id": "7003378", "video_name": "02b1460f-6d0d-5bee-a7cf-050ba83043ea", "text": "Make a 3d Disney and Pixer style Poster of An Asian woman with long black hair is watching TV under a warm blanket in a candy store with a Christmas atmosphere. "} +{"id": "1004660", "video_name": "56ae4da6-e957-51c7-bed1-84ce8db1b027", "text": "campsite, darkness, aliens, 4x4, headtorch, sandy "} +{"id": "5001152", "video_name": "919512bb-1e92-5f7c-a250-c17c303d4a9e", "text": "Couple walks off a Royal Caribbean cruise ship onto a private island "} +{"id": "7004569", "video_name": "3efd2e57-5605-553d-ba7c-af408446890a", "text": "a theatrical scene in the style of Yoji Shinkawa of a highly advanced cybernetic mecha godzilla spitting fire on a dystopian futuristic Tokyo, people running in fear, explosions in the background, buildings crumbling, cinematic, hyperreal, photorealistic, award winning sci fi by ridley scott, 8k imax theatrical release, vfx by weta digital "} +{"id": "8002165", "video_name": "837b6956-b64b-5330-9a4e-dc6aeae4835f", "text": "an empty studio with a looping wave in the middle "} +{"id": "6002381", "video_name": "9f8f1157-477e-506e-80eb-bc1fff5de3d2", "text": "a boat sailing smoothly on a calm lake "} +{"id": "8001646", "video_name": "9cad6932-d570-55f7-be26-1dc31a8e2f73", "text": "Adaptation: Generate scenes where the camera adapts to changing conditions in the journey. "} +{"id": "1004093", "video_name": "4bc3391d-21de-551e-aa8b-29a5f7b8bb07", "text": "lady coming out of a light "} +{"id": "3004961", "video_name": "7e01b3d6-ca85-58db-9243-6b94c9061d6e", "text": "islamic picture with 2 minutes lenght "} +{"id": "1003224", "video_name": "3b5c2492-d195-52c1-b846-a3551861a3b6", "text": "a photo realistic mermaid swimming at the sea Message: MerMapp (Font: BAUHAUS) "} +{"id": "0005497", "video_name": "1bdac61b-c69a-53be-98ed-ea70a4f541bc", "text": "a magical victorious warrior, celebrating victor all bloodied wide a sword on his right hand and a severed head on his left hand, cinematic, dramatic moment in the battlefield "} +{"id": "7004655", "video_name": "5de6dc31-fbdd-551e-a0ab-2c7bf8f2ea70", "text": "beautiful, sexy woman smiling and pointing straight up "} +{"id": "2003811", "video_name": "9397a188-3ede-5866-bc48-f4a05f60a797", "text": "girl preparing cakes high resolution 1728x1728 "} +{"id": "2007937", "video_name": "8f963d8f-cbd6-5b29-8438-f61bbc7223d1", "text": "man sitting in a restaurant and looking around "} +{"id": "3003307", "video_name": "ceb5096b-b2fe-5bd1-be20-414770f7def0", "text": "a village putting up a new flag after defeating the enemy in a war "} +{"id": "8001676", "video_name": "647286b2-de4f-52ff-8e10-da8485effe48", "text": "super earthquake with a lot of building collapsing "} +{"id": "6004470", "video_name": "9f6781d9-451f-5c4a-b2bf-61b5b75450dd", "text": "realistic,light moving,a sunrise with the sun rising between two mountains, in the middle of them a river , in hd "} +{"id": "8002452", "video_name": "a3ef369e-6e71-5a2b-b7b4-45cd78e92433", "text": "a car and a donut by the sea "} +{"id": "4003775", "video_name": "be8dacdd-4016-5127-85cb-12f5559f2204", "text": "She had been working very hard lately and was a bit befuddled. Her magic had mixed with her mind Mum had said, and she needed a bit of normal to get things straightened out. "} +{"id": "7002356", "video_name": "468a2d31-954c-5a12-92f9-b135efa381e3", "text": "person surfing on the beach resolution 1080x720 "} +{"id": "2004815", "video_name": "b9fa1707-c9b0-5b18-b352-6a07c447d6cc", "text": "Describe a celebratory event in the town to mark the positive changes. "} +{"id": "3003039", "video_name": "164a6b50-2572-53eb-ab36-329b62db200a", "text": "a back of the future Delorean "} +{"id": "0004272", "video_name": "06357738-bc66-5e4e-a9c8-cb0d5299ff35", "text": "Create a 2 minutes video of any different colours of plastics being melt together "} +{"id": "8003120", "video_name": "969c08a4-e277-542a-ae10-db83e36acec8", "text": "commercial style short video for cosmetics saloon "} +{"id": "1003636", "video_name": "4302d7b3-40e0-572a-9582-f99f25219127", "text": "bird talking fornt side Message: 1 Attachment "} +{"id": "1005444", "video_name": "6410247c-f57f-51bc-8d6c-b5ff6c5c605a", "text": "man wearing sitting at table with computer, peaceful setting, window with beautiful scenery, photorealistic, hyperdetailed painting, luminism, octane rendering, bar lighting, complex, portrait 8k resolution, intricate, definition of success, cinematic, estilo anime lofi "} +{"id": "8002023", "video_name": "480c2bb4-4d9c-5a13-8951-f45620d9efa1", "text": "Snow leopards are elusive big cats that inhabit the rugged mountain ranges of Central Asia. They have thick fur and a long tail, which provides balance and acts as a cozy scarf in cold climates. Snow leopards are skilled climbers and can leap up to 50 feet in distance. "} +{"id": "5001192", "video_name": "c44f5da2-8ebb-5a26-be76-c884cc387971", "text": "graphine space elevator to massive space station with a population of 1 trillion beings "} +{"id": "0005792", "video_name": "214fcf64-7dea-5711-937f-37a838fe2244", "text": "ar 9:16, an old man dances rock and roll "} +{"id": "2005085", "video_name": "6eaf2a07-373b-5a97-bed1-ce58b3ef53ab", "text": "a cow sitting on a street "} +{"id": "4003349", "video_name": "a5dedb9f-2ed2-501b-bf3d-f7185408c2e3", "text": "One hot summer day, a severe drought struck the land, causing the waterholes to dry up and the grass to wither away. The animals of the jungle were suffering, and hunger gnawed at their bellies "} +{"id": "4004083", "video_name": "1b865c31-72a8-5890-a121-103ffb97d2f7", "text": "pan shot Dark dense forest lit only by background of diffused dim moolight an extremely bright small orb of light like a tiny UFO moves rapidly above and behind the tree branches in style of realistic portrait "} +{"id": "6004107", "video_name": "fd4b51db-7f32-52a0-9419-42c05190698c", "text": "1.8 meters tall, beautiful woman dances for 8 seconds with graceful movements,oriental beauty "} +{"id": "8002515", "video_name": "6de7869d-b545-5ea0-80e5-26d78b430763", "text": "Tom Hanks battling a giant turtle "} +{"id": "2004379", "video_name": "a9d538a7-1502-5e7d-bd00-8532e97a00e6", "text": "3d video game footage with a big explosion,3d,videogame, explosion,HD,8K "} +{"id": "4002972", "video_name": "647b5062-6dac-537a-86bc-c398d2aad63c", "text": "a couples on a beautiful beach sitting near the river "} +{"id": "2005565", "video_name": "c9088068-bce1-5622-b190-e8f7d65be413", "text": "net spread by humman in sea ,cartoon realistic video "} +{"id": "3004057", "video_name": "83983cdc-5e35-532f-8f95-8411320dfc9f", "text": "a teenage girl with purple tops entering into the house with luggage "} +{"id": "0006144", "video_name": "273cc540-4266-5268-b8d2-37335379c37f", "text": "An aerial drone shot of a lonely cabin on a snow capped mountain. Cinematic, ultra realistic, shallow focus, 35mm "} +{"id": "1005236", "video_name": "60555b7b-589a-5ab5-8b14-a6235529fc01", "text": "space travel with Allah name in arabic 10 SEC clip "} +{"id": "7002871", "video_name": "6d0634ea-1ae4-549a-b6e0-a47b0e39314f", "text": "a beautiful Christmas tree on the dance floor, shaking the brunches, with the stroboscopic lights "} +{"id": "1003789", "video_name": "45ebae6a-b572-5a97-abc4-975a746879ad", "text": "Amelia approaches the entangled, pulsating heart of the forest, dark vines retracting \u201316:9 motion 3 "} +{"id": "2004730", "video_name": "cc412175-d49d-5416-ad4d-bc613674fb7a", "text": "a beautiful scary girl flower in background "} +{"id": "2003927", "video_name": "e5c5134a-e96a-5aac-86f6-8535ae63eee0", "text": "cinematic, TV turn on but no picture , AR 16:9 "} +{"id": "8003155", "video_name": "e3b4f507-50d1-59a3-aebd-51e31101c448", "text": "A rocket that breaks through gravity and rushes to the depths of the universe "} +{"id": "7002367", "video_name": "1ef85c25-8c14-5e4c-9a0d-727c1354f5d2", "text": "sparkling light, flying leaves and the smiling bear "} +{"id": "1006356", "video_name": "745d0dc4-35c4-5abd-9e2d-77a67561bc97", "text": "a man walks very fast in this attachment picture "} +{"id": "0006891", "video_name": "34d8f92f-56d8-57ac-9cf7-aacb8444ed98", "text": "gs 18 neg: poor quality, clipping, artifacts ar: 16:9 seed: 832 motion: 4 Opening shot of a majestic sunrise casting a warm glow over cobblestone streets. Establishing shots of intricate, weathered architecture and narrow alleys. Narrator introduces the Old City, its rich history, and the tales that lie within its walls "} +{"id": "8002552", "video_name": "2d07aa3c-4ca4-58be-96e4-b297a36bd74b", "text": "photo realistic rendering of roman emperor "} +{"id": "3006292", "video_name": "7e5f95e8-f978-5af3-9361-e5d9b83840ec", "text": "a man crumbling inside his own skin, his bones breaking inside out under his own weight "} +{"id": "8001405", "video_name": "fe13c2b2-bf95-512b-9e33-b1a98b89d552", "text": "We meet Tommy, a cheerful and energetic blue tractor. He wakes up with the first rays of the sun and is ready for a new day on the farm. "} +{"id": "8003777", "video_name": "b02e2ee1-48e2-5b50-8369-0ea57765001a", "text": "the money falls on a large golden bubble and it spins with golden rays "} +{"id": "3003227", "video_name": "6f258b54-2a48-5bf0-9f6c-4b5977584e11", "text": "dajjal one eye man short scary war "} +{"id": "3003653", "video_name": "2ba7a015-841e-5101-9a53-d61e87e50f1e", "text": "a massive and huge star. its color is purple. epic. imposing. hypinotizing. "} +{"id": "8001557", "video_name": "7792063c-2e6c-5927-a80a-60b68a163212", "text": "Give thanks for the train that chungs down the track. "} +{"id": "1005790", "video_name": "6a8b7536-380b-5a74-802d-110b1eb6d060", "text": "Many of soliders are shooting to a toyota camry xv30 "} +{"id": "0003058", "video_name": "3642bc6e-98f7-5f61-9519-d302c11dc71a", "text": "Here is the image of a photorealistic Chinese dragon in a vertical composition, elegantly coiling and twisting through the sky, occupying the entire frame without any central structural elements. "} +{"id": "1005036", "video_name": "5d266a3b-5b48-5a0c-9f43-07c1d9ed023b", "text": "a row of Asian men, making up the word success "} +{"id": "2006352", "video_name": "310503c3-f597-535a-beb1-3edee6286971", "text": "opal glass spirits kissing each other "} +{"id": "4002414", "video_name": "2db10894-4e9b-51c5-bd68-703d425499dc", "text": "Pale man with red eyes spitting out ketchup "} +{"id": "4003815", "video_name": "91a3c4a6-c88c-50da-ab4d-f5aa5e1c9876", "text": "kitchen, disappointed man sitting on the floor in front of an open fridge after eating junk food, dark vibe "} +{"id": "4002346", "video_name": "908d8066-998d-51f5-bdba-22febf8dbf8c", "text": "a flying goat with a man riding it "} +{"id": "8003965", "video_name": "1d6a85ac-a908-5726-af87-ac9360e7b409", "text": "A beautiful girl with flowing long hair, wearing a light green down jacket and carrying a white satchel, is walking on the way to get off work \uff0c4K "} +{"id": "0006752", "video_name": "32645e5e-df01-5d4b-8253-60bfa3161a6d", "text": "shadows, a childish lament echoed every night through the silent corridors of the house "} +{"id": "3005127", "video_name": "222c0302-ae3a-5fba-88ca-3427326be0b7", "text": "a fish in a suit in Tokyo "} +{"id": "1006451", "video_name": "76122c20-f154-5b62-b61e-805467495038", "text": "history lord ram and ravan fighting "} +{"id": "5001969", "video_name": "06e89a47-f106-5ceb-83f3-17a84960dc8b", "text": "Returning home, Mia and Ben knew that even galaxies apart, understanding and cooperation could mend worlds. "} +{"id": "4002207", "video_name": "1973c79d-8fdf-582e-b92a-fa90a0cb8b08", "text": "The coral formations sparkled with a kaleidoscope of colors, like a living masterpiece painted by the sea itself. Schools of colorful fish glided gracefully through the corals, their scales glistening in the gentle underwater light. They moved in unison, as if dancing to an invisible melody, weaving intricate patterns in the water. "} +{"id": "0005305", "video_name": "1833e9a7-8484-5170-b7ff-b04a47a6c02d", "text": "man playing banjo on porch in summer "} +{"id": "0006157", "video_name": "2773b7c7-2557-55e8-91e9-05f0fcdcb5a5", "text": "a people rise a horse on the playground "} +{"id": "3006308", "video_name": "03247f22-f52e-5dcf-bac6-eb2ae4313f34", "text": "cat in the dark watching the rain through the window "} +{"id": "0006864", "video_name": "346e1ac8-55d8-5ecc-871b-23199815cf51", "text": "a backoud with cauzy interio and a fireplace with a slow animated fire "} +{"id": "0004783", "video_name": "0f168e73-85c3-5efb-a715-4c3027d6f803", "text": "tries to catch the colorful ribbons under the Christmas tree., "} +{"id": "1004633", "video_name": "5630ad0d-a70b-5742-b84b-140d5e1d6d12", "text": "the hand is floating outside of the clouds, in the style of muted tones, surrealism, blurred imagery, dreamy collages, melting, aerial view "} +{"id": "8003316", "video_name": "61eca89c-60d6-5546-bc23-4d3df0c90ddc", "text": "3D animation, fancy breakfast under a cherry blossom tree"} +{"id": "7003420", "video_name": "7d56dc71-86aa-58a4-b118-4ecda3ff9f82", "text": "An old man with glasses, a grey beard and a black sweater walks down a hallway "} +{"id": "8001279", "video_name": "bd646c72-e20c-541c-8ed7-e533aa881816", "text": "Scenes of realistic diplomatic meetings and negotiations in middle east. "} +{"id": "2007428", "video_name": "a37698b5-ec31-51ea-9958-3251de57aa7f", "text": "number one with eyes, nose and mouth speaking. cartoon. "} +{"id": "0004601", "video_name": "0bbfcb79-af3a-5784-aeb8-e4f5a4fa2e89", "text": "Create a guys wearing running in the desert "} +{"id": "2006333", "video_name": "66d35956-5eef-5129-a827-84a5b1d666fc", "text": "a young couple walking in a field in direction of a music festival "} +{"id": "1003510", "video_name": "40defe54-9008-5e30-9f07-ef2698408fe6", "text": "a man in a straw hat riding a cow. He is holding a milk pot in his right hand "} +{"id": "4003406", "video_name": "ff4c647f-a99c-5131-af08-d8302a066c33", "text": "tens of thousands of starlings swirling in the sky nightfall hyperrealistic very wide angle "} +{"id": "2005169", "video_name": "0a530dc0-72e7-5cd0-9272-14b6b5f2a46b", "text": "The view of mountains and rivers, the endless mountains, the sun is shining high "} +{"id": "1003981", "video_name": "498487a0-5935-517c-98c0-16b792f777e4", "text": "macro photography, a dead fly decaying into mushrooms caps "} +{"id": "2003138", "video_name": "4e6c235b-15cb-53b5-b4d1-6f157c399e18", "text": "The DOTA2 hero Alchemist is holding a shining Radiance in his hand. "} +{"id": "7002588", "video_name": "4c7c7435-ef58-5f18-852b-26e966220b82", "text": "A wolf raising its paw to a tree trunk while laughing "} +{"id": "1005610", "video_name": "6723d34c-2a61-51d3-b0b3-6b5c5bdadec8", "text": "juicy peach on an abstract background rotates "} +{"id": "4003284", "video_name": "db5629ab-6ee6-54ef-8fb1-ed2e2f32c12f", "text": "An empty chair at a family dinner table, cinematik shot, 8k, ar 16:9 "} +{"id": "3003085", "video_name": "b544d67e-677f-52e5-b547-18618bf7eedd", "text": "A picturesque vineyard in Tuscany, with grape harvest in progress, sun setting in the background "} +{"id": "1004179", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "super hero aquaman with diving goggles and swimming trunks 4k "} +{"id": "0005144", "video_name": "158c8e1c-b42d-543c-98fc-8f04e886f1d7", "text": "SILACAR car from china in vladivostok best price "} +{"id": "4003240", "video_name": "663a5faf-b457-565a-b2e1-4b1ec88cfc8f", "text": "A female ghost dressed in red wedding attire sits atop a grave mound, feasting on the offerings, while the worshipper is scared a lot "} +{"id": "0005403", "video_name": "1a3a193a-38ca-5278-9da8-d700b553aeb0", "text": "In the depths of the ocean, a fierce battle unfolded between a cunning crocodile and a relentless shark. "} +{"id": "4002774", "video_name": "7012dd36-0cd5-5323-a0cc-80fac33f0f97", "text": "a red 3D cube rotating around a vertical axis with a caribean beautifull island at its back "} +{"id": "8003919", "video_name": "c3fcfca3-411f-5447-a6e1-dd4b95db596f", "text": "red mist, timelapse, vfx, stock footage, black background "} +{"id": "2003154", "video_name": "5e6ae61e-3a45-55d8-95d5-d7624bc1dc7a", "text": "A film villain, Cinematic, 1980s adventure film, detailed lighting and shading, masterpiece, highres, 8k, elegant, moonlight, dramatic lighting, volumetric lighting, cinematic color tones, muted color tones, shot on Alexa 65, shot on 24mm lens, extreme wide angle, film grain, photorealistic, cinematography, depth of field, bokeh, ornate details, maximum resolution "} +{"id": "7004968", "video_name": "efe02cfe-414f-5069-b103-cd62a9c34bfc", "text": "a woman and a man inside an appartment in France sharing time with each other "} +{"id": "3005021", "video_name": "2bf57ef0-e0d2-5b0f-a039-d82248608cb1", "text": "a whale jumps out of the sea and falls into the sea "} +{"id": "2006819", "video_name": "a23c103f-f4dd-5857-8b12-0cba5495d0c3", "text": "a eagle that is flying through the mountains with an austrian flag in the background on the top of the mountain "} +{"id": "2007529", "video_name": "a01eb4da-31c5-5315-81b5-904424e618d3", "text": "Holding an umbrella on a rainy day at a rainy bus stop, waiting for her boyfriend "} +{"id": "2007295", "video_name": "bba05489-9b87-580f-9033-668e83cda07c", "text": "hellraiser movie, pinhead walks in a room full of hanging chains "} +{"id": "2004241", "video_name": "23340d4e-2fc7-597a-aeb6-fc28ed2ed11b", "text": "a fantasy world where the hero having dragon ring can be see walking towards to mysterious place "} +{"id": "2003357", "video_name": "4c2ca351-218b-5cee-8475-50ed79e84c73", "text": "cute girl, long hair tied on one side, gray eyes, walking towards the camera, through the city of Tokyo at night, cinematic effect, cherry blossoms falling neon pink "} +{"id": "6002696", "video_name": "9ea21763-17dc-52a7-ac76-0e6e3373105b", "text": "Three colorful parrots flying in the sky, each with different vibrant plumage "} +{"id": "4003196", "video_name": "b7e5460a-7558-549b-8359-8ed504eb260c", "text": "2d animation of long haired man walking through the forest, thinking, starry night "} +{"id": "1005691", "video_name": "688da429-ac93-5eb5-a0fb-51c9335e263a", "text": "a potrait of high detailed flying bird 9:16 "} +{"id": "7004253", "video_name": "8830a755-7f8b-5962-82cf-80e7e8a1b931", "text": "melting black and white 8mm film "} +{"id": "7002278", "video_name": "bab3f656-b1ad-5278-aeda-821111fe610c", "text": "1900s woman and little girl walking over the shore or a beach "} +{"id": "2007633", "video_name": "2c3bdb59-6c0d-5dc6-ba54-d15dbf7bd45d", "text": "Same image , face retaching and enhence Message: 1 Attachment "} +{"id": "4002614", "video_name": "48093c0a-bdb3-53e1-ab25-a05af2fcaf4f", "text": "walking in a suburban neighborhood made entirely of colorful yarn "} +{"id": "8001159", "video_name": "50f8c6f5-5dad-53b9-8e9b-b387199edf4b", "text": "line drawing. a chicken flaps its wings and launches into the air "} +{"id": "6002317", "video_name": "3cdc4f9c-3eaa-51d7-ae1c-01d90e04e7b3", "text": "lord budha in garden aspect ratio 16:9 "} +{"id": "8001728", "video_name": "b66c0925-d7a9-5214-bf00-cf7cb1edc92e", "text": "catholic pope francis wearing rainbow balenciaga puffy jacket in playing in a music festival , dancing a lot, taken using a can lens, hyper realistic photogtaphton eos r camera "} +{"id": "7003564", "video_name": "a70a5574-210b-5a66-b6f9-e511a2de371a", "text": "The international community, deeply moved by the suffering of Jewish survivors, supported the idea of creating a Jewish homeland in Palestine, partly as a response to the need for a safe refuge for Jewish survivors. This sentiment significantly influenced the decision to establish the State of Israel. "} +{"id": "6003578", "video_name": "9693cedd-3b59-532a-b029-5b69cf2dd0d0", "text": "youtube intro vedio for cartoon channel "} +{"id": "5001460", "video_name": "03bfb64d-5049-5136-b805-b658263265ca", "text": "A photo of a group of people in a Bible study, discussing Scripture and sharing insights. "} +{"id": "8001641", "video_name": "79410575-aaab-5f16-9bfc-b1d6aeeb8f72", "text": "old man who smile, steampunk style "} +{"id": "4004263", "video_name": "95d9fc03-8597-588b-8931-3b28d9042000", "text": "create an animation with the male Free Fire character Ignis with an unparalleled beauty that no one has ever seen "} +{"id": "8001078", "video_name": "87b35816-0008-5ca7-9a11-c72c9d094e32", "text": "Emma Watson playing poker with scorpion "} +{"id": "3006518", "video_name": "d01f7bb3-0d96-5c47-9a63-60bacbb01038", "text": "a robot walking and eating a burger in the streets of New York in the style of Pixar animation, action, dramatic lighting, depth of field "} +{"id": "5001997", "video_name": "2759a997-e123-579c-b15b-7db2af6ae26c", "text": "how dog manage the kitchen appliances "} +{"id": "1003001", "video_name": "37181fee-7fa1-5657-9994-bdfb97badc90", "text": "Samanosuke Akechi dancing in a mexican outside party dressed as mariachi "} +{"id": "3004737", "video_name": "3a757c89-cf29-59a7-9679-2b74b12352f8", "text": "Displaced children and their families left behind as a result of the war, and the smoke of war behind them is a real cinematic scene "} +{"id": "5001937", "video_name": "00fd8ecc-0f44-5d0e-a0df-bcb666f096f2", "text": "examined by strange beings, and subjected to medical procedures. "} +{"id": "7003152", "video_name": "d4d978be-33f3-5a1d-a5dd-3ca380e63afe", "text": "BTS Jungkook dacing , facing me, with his sexy moves, on the Moon,looking handsome and Surreal "} +{"id": "2006820", "video_name": "667cfd54-a16f-55fc-9d74-15971a6eafcf", "text": "A cat on a windowsill looking out. "} +{"id": "1004032", "video_name": "4abfb477-1f67-515f-a16e-295ca57cb21d", "text": "Raindrops race down a windowpane, blurring the world outside. "} +{"id": "8002062", "video_name": "22ad4fb4-7f8f-5d00-a63f-09360b868b96", "text": "cinematic video of Jesus raising lazarus from the dead "} +{"id": "4004347", "video_name": "f9aed8ef-6df8-5f20-8256-41fe3875183f", "text": "Automatic Tesla car in motion with driver sleeping "} +{"id": "8002134", "video_name": "00d1e54b-d022-5783-aced-186bde04ecae", "text": "The group of friends encountering mysterious underwater caves during their quest. "} +{"id": "7004679", "video_name": "8ea1417b-1876-52ad-bd7d-4ff4ec53393e", "text": "a lot of electronic fish surround a girl "} +{"id": "3004769", "video_name": "daacbd7a-1158-5615-be17-d2ff26a730ef", "text": "fortune teller predicts the future and moves her hands slightly, Christmas vibe "} +{"id": "2005637", "video_name": "08994dd5-76e6-55f4-9530-ba6c1606b280", "text": "Once, in a world bounded by the endless expanse of the ocean, a man named Leo and a woman named Emily embarked on a journey of love and adventure. They shared a passion for exploration and had dreamt of visiting the mysterious islands that dotted the distant horizon. "} +{"id": "1003753", "video_name": "4536cedc-5e11-5e46-a9dc-ab98f84615fa", "text": "bulldog in 3 piece suit, sitting in a cafe. looking at a macbook. hyper realistic, ultra realistic "} +{"id": "0004632", "video_name": "0c558716-5478-5466-b4ca-248d411cefc8", "text": "Scene 1: Introduction Location: A dimly lit bar. Characters: Protagonist (John) sitting alone, sipping a drink. Action: John reminiscing about the good times with his girlfriend. Flashbacks of happy moments projected on the bar walls. "} +{"id": "5001510", "video_name": "20415592-d03f-560c-9162-9fd585dcf921", "text": "woman rapper is rapping on a concert, in the style of illustration "} +{"id": "5001498", "video_name": "18a29ad4-dedf-577d-996b-cccd5dfdd8d9", "text": "south of the river in a watery village (idiom); fig. southern Jiangsu province (esp. in China) "} +{"id": "3004108", "video_name": "5c41d1a9-0687-5dff-8630-3999a111fc1d", "text": "Taylor swift in a spaceship looking out the window "} +{"id": "8002604", "video_name": "a34672f1-4680-5f2c-a0a8-cf658634a905", "text": "a rol playing Game table with a wizard a paladin a bard "} +{"id": "1005316", "video_name": "61a94fb9-2c58-57d1-9e63-223b95fce8dc", "text": "Something blows up and different animals appera "} +{"id": "2007436", "video_name": "88447b56-c227-5dfd-b438-42352ffd1321", "text": "A beautiful woman and a male bodyguard. "} +{"id": "6003069", "video_name": "49bea4bc-eb72-5809-a9e1-6ffbe34bb894", "text": "As the light pierced through the darkness, the Black Fog Alien recoiled in agony. "} +{"id": "1004775", "video_name": "5852ea76-1d28-5a8f-b635-53c57ad2c0c4", "text": "A Red Titan Robot Getting Fixed, In The Style Of Pixar "} +{"id": "2006261", "video_name": "fd303710-fcea-54d0-8265-3ed183390d9b", "text": "A very naughty little boy sitting on a theater chair, cartoon, character "} +{"id": "8003432", "video_name": "ca54170e-3973-5eff-8d42-6042dea42863", "text": "A big sandstorm in the sahara desert Message: Digital Brain (Font: MODERN) "} +{"id": "2007170", "video_name": "0a8c3e44-2c88-5ed5-81d0-652df428cc81", "text": "The volcano erupted and a word maik was formed in the smoke. "} +{"id": "8002585", "video_name": "09358df8-129c-5fea-99d5-0f066469d6f8", "text": "of the large city shown from afar and its enchanting Christmas without people "} +{"id": "3004225", "video_name": "0684974e-2850-57cb-826a-2ea3da32ac00", "text": "emarlds are falling and forming a beautiful necklace "} +{"id": "2003134", "video_name": "1fe5de54-7a44-59a8-aa6c-e98eb521d410", "text": "Illustrate a united community engaged in prayers, symbolizing their renewed connection with Allah, realistic and eye chatching "} +{"id": "1004629", "video_name": "5610f03f-ce38-52e8-aa79-2f4dc05b7559", "text": "beautiful River like anime beautiful anime girl come and drink water from river and its raining and beautiful anime boy hold a umbrella for this girl "} +{"id": "6003152", "video_name": "5ef19bb0-1856-599e-89ca-e262020f26d8", "text": "animate characters and movement of justice weighing scale up and down "} +{"id": "8003547", "video_name": "38f1b492-44a0-568f-acc9-c394362f369e", "text": "grass field, Girl and boy sitting together and fireflies fly around them , Anime , Loop video , zoom out view , Animated , small Moonlight "} +{"id": "7003350", "video_name": "ac49cd37-1640-504c-98bf-2e732daf3985", "text": "Follow a curious young boy named Alex as he explores a magical library filled with wonder. While browsing the bookshelves, he spots an intriguing book just out of reach. As he tries to grab it, the book falls to the floor, piquing his curiosity. Upon opening it, he embarks on a captivating journey through a world of imagination. "} +{"id": "4002919", "video_name": "155ab658-961a-51d0-8c2d-fb9fc781888d", "text": "the camera is on a boy with curly hair and blue sweatshirt, the boy is floating with the feeling of falling in a forest full of snow, 8k cartoon "} +{"id": "7002490", "video_name": "259be83d-5de9-57c8-b704-c9929912d8dd", "text": "fish bid farewell to his friends and began his journey back, cartoon style "} +{"id": "2005801", "video_name": "57af985d-db3b-5a1f-830d-24cd7f295f65", "text": "a young soldier who is on the battlefield preparing to take action to help a comrade who has been shot, is dramatic "} +{"id": "1003262", "video_name": "3c0b3c2a-8bf3-5643-bf10-275ebbba570e", "text": "speed growing buildings, by Marc Chagall "} +{"id": "1006909", "video_name": "7e5c6090-d26b-5a18-96f3-a2c3d40a4032", "text": "1987 ferrari revving its engine waiting for the formula one race to start "} +{"id": "1003603", "video_name": "4273ed5d-64af-5eeb-b8b3-d02cd10960bd", "text": "funny zombie movie, zombies playing in a rock band "} +{"id": "3005603", "video_name": "363f6e76-636b-5489-8e4a-94b2a5d4c1cf", "text": "ice shattering. small fragments. particles. explosion. energy. internal luminescence. "} +{"id": "1004057", "video_name": "4b36501b-a682-5922-be09-2bbe92ac7c6e", "text": "In a large mountain range, Guanyin Bodhisattva flies over an ancient temple on a tiger with long black wings. "} +{"id": "4004851", "video_name": "7f0c85d0-d354-5f97-8642-757a12592d04", "text": "pro basketball player, video 2 minutes "} +{"id": "3003816", "video_name": "4c974d25-451f-532a-b961-207144f55b6d", "text": "chewbacca with a beer belly wearing a santa claus hat at christmas time "} +{"id": "2006087", "video_name": "e4d29abb-9921-5b7b-afac-f72e6b0dc986", "text": "video for 20 seconds, bmw x5 gets into a small accident, then comes to the parking lot, after that it is sold at auction, then it is loaded into a container, then it is repaired in the service and leaves for the city without damage. "} +{"id": "4002367", "video_name": "e19fdb86-2d8e-5d28-8c45-7e4aa681d717", "text": "A sexy anime girl anime style "} +{"id": "6003892", "video_name": "b6becfaa-2cae-5f17-b660-6ffe2041c61a", "text": "The wise old goose warns the flock about the danger of the creeper, suggesting they destroy it before it grows. The other geese, curious but unconcerned, question the urgency and decide against action, believing the creeper to be harmless. "} +{"id": "7002174", "video_name": "7a7316e0-e4ca-5800-833c-79d59ab7b5cd", "text": "autum time in season camera view, cinematic shot, 8k "} +{"id": "3004011", "video_name": "7c6909e3-57df-5536-a870-d2518d725a7d", "text": "a strong, determined man that is facing towards the camera, he is muscular, stoic and you can see the motivation in his eyes "} +{"id": "6003197", "video_name": "de0d0da3-ca32-5517-ade0-ba1cef51275e", "text": "A fashion colombian woman on a neon futuristic planet, galactic background. "} +{"id": "3005551", "video_name": "c5b74320-f472-53bc-ab7f-7c4254099ab0", "text": "cute rabbit sleeping in night with stars "} +{"id": "0003488", "video_name": "3e76d4e1-393f-5f43-8e78-ad468c5cc2ae", "text": "MC mouse is standing in a garden and speaking , style cartoon "} +{"id": "3005428", "video_name": "82ed6426-2ff9-5826-b3e7-251f3aa7edd6", "text": "a duck flying on the moon "} +{"id": "2007035", "video_name": "f00b9d34-c42b-5d01-9ab6-184e31ddcbdd", "text": "A beautiful couple walking into the street "} +{"id": "2006751", "video_name": "10490066-000b-5f52-ad16-af2d4c9d174d", "text": "Reishi Mushroom all around the world "} +{"id": "1005988", "video_name": "6e0e4069-d38d-5540-b243-efa0f6d2296e", "text": "God in a Montage of various global locations, showcasing the diversity of the world, alternating between scenes of peace and chaos, representing the coexistence of good and evil, fun, hyper realistic, 4k \u2013v 4 \u2013ar 3:2 "} +{"id": "4002291", "video_name": "d8cb9239-f019-5928-a97c-fec94ec1d7af", "text": "man getting inside taxi during rainy night in the city. Fincher movie 16:9 "} +{"id": "2003945", "video_name": "25e4efe2-5296-5e93-b995-a553dd0e62ef", "text": "the most unreal image with whale and rider in the sky "} +{"id": "4003738", "video_name": "a1592121-32d7-53db-a975-822c16c24c9b", "text": "beautiful Sunset on a big yacht, photorealistic, Ultrarealistic, cinema, "} +{"id": "6003015", "video_name": "9afe1c26-de8a-514a-b2e2-aac851f6708a", "text": "7 small drawf bed in a cottage "} +{"id": "2005865", "video_name": "8a14423c-bc5f-55c7-9327-bd97c0a83c36", "text": "a person getting new skills to be good chef "} +{"id": "0005435", "video_name": "1ac72186-8665-51da-a072-7dbd1ec3344c", "text": "a steep rocky cliff in the pouring rain "} +{"id": "6004490", "video_name": "e05dcc3e-ca83-536f-8261-bca5bba135ce", "text": "the logo of the technical school "} +{"id": "2005581", "video_name": "172bbdec-d2ba-5465-8fd5-385286edf4af", "text": "big cheeseburger sitting on toilet paper "} +{"id": "1003189", "video_name": "3aa94631-2af6-5b52-bcbe-4e07d3dd5e73", "text": "chicken surfing in hawaii with sharks "} +{"id": "7002713", "video_name": "26adf5f3-0cab-51aa-ae63-9e2f1b177560", "text": "sunset by the Oceon and the mountain zoom in "} +{"id": "6004705", "video_name": "56f53741-4075-5477-b7a6-28a3025bb5cb", "text": "a deep dark hallway with haunting glowing ghost faces appearing in the walls, 1940s technicolor film "} +{"id": "3004070", "video_name": "3ef4d61f-9e15-5210-af04-06f306504d8f", "text": "puma in the jungle staring through the bushs "} +{"id": "2003190", "video_name": "e33b2255-e444-566b-8fbb-53bf037d1c6c", "text": "a man playing cricket with his son while his wife watches both of them and the man is batting , son is bowling . sunny day ,green feild "} +{"id": "3005681", "video_name": "e74aa596-7909-534b-b077-005cd94d6cc3", "text": "The transformed cove, now a shining example of cleanliness and conservation In a peaceful coastal cove, surrounded by towering cliffs and lush kelp forests, "} +{"id": "8001509", "video_name": "9848923e-e1b0-50c0-9ae6-b17696c8e1cf", "text": "Exterior Shots of Eerie Mansion: Start with footage of the creepy, dilapidated mansion standing atop the hill, setting the scene for the haunting tale. "} +{"id": "1006024", "video_name": "6eb3bef5-924d-585d-a678-f79da3171d6d", "text": "a guitar and surfboard big waves "} +{"id": "0006571", "video_name": "2ec7ad77-a6b5-54e7-b9cc-810718761153", "text": "a person praying on top of a hill with more people with their hands to the car looking at the sky "} +{"id": "6004701", "video_name": "3e5870d8-fd4c-519d-905e-91e373716f90", "text": "dj pressing play button and earning millions of dollars "} +{"id": "6002406", "video_name": "1b0ba595-3ad3-5183-9984-36f367cacd66", "text": "a young woman walking through rows of extremely tall and large flowers "} +{"id": "2006169", "video_name": "1842d00c-e502-5783-a5d5-0a55e068ff98", "text": "Ocean water splashes onto a beach with palm trees Message: FRESH (Font: MODERN) "} +{"id": "0005437", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "In a dimly lit room, a spotlight shines down on Mary, who is now sitting on a wooden chair, holding her newborn baby boy Jesus in her arms. The camera captures the awe and tenderness in her eyes as she gazes down at her child. The room is filled with a hushed silence, emphasizing the sacredness of the moment. "} +{"id": "6002757", "video_name": "15624278-b1a4-5822-acb3-c9d7d8af10fa", "text": "a tree waiting for the inevitable "} +{"id": "8003574", "video_name": "149ee29a-16ad-5199-81b4-0dbafc80bcbc", "text": "Dogs stand on top of the Captain Cook Monument "} +{"id": "3006296", "video_name": "6119e467-52dc-5b68-9e37-8ffa62186d55", "text": "a photo of Kitten playing on green grass, national park themed landscape, realistic ultra hd Message: Quiero teta (Font: SANS SERIF) "} +{"id": "2003785", "video_name": "62b69c14-3406-5e91-aae6-5f7e5df516d6", "text": "A scene capturing the essence of a lit match held vertically in the dark night, beautifully rendered in the distinctive style of Studio Ghibli. "} +{"id": "1006326", "video_name": "73c99525-7cc1-5735-9be6-f34119d47242", "text": "men in black hood leather jacket corpsepaint on face play on midi keyboard, midnight winter forest background "} +{"id": "1006259", "video_name": "72a9fdac-0a2c-56c0-b3e6-f346b9a8beed", "text": "a dancing cyborg, HR Giger art style "} +{"id": "6003770", "video_name": "81389331-c3f9-51f4-8654-26a5ca6e0c3e", "text": "old retro television sitting on the floor in a cafe dinner stanley kubrick style "} +{"id": "7004303", "video_name": "d7536e68-8773-5ea4-989d-4d807494f4d8", "text": "a man walking towards the camera whose tie keeps changing "} +{"id": "2007735", "video_name": "7985f7bd-0d8a-52ff-aced-415004f29051", "text": "clouds rising as mist into the sky "} +{"id": "6003417", "video_name": "6f86d18e-7990-5aa4-ba88-5869baac1d5f", "text": "1 girl in garden, white dress, looking at audience, smiling, Disney style "} +{"id": "1004529", "video_name": "5422ead2-b76f-5fba-824c-1d1f06575b6e", "text": "Turning on Emergency Generator in ship "} +{"id": "3004268", "video_name": "b48a606a-725e-51a4-aa10-a288840701e8", "text": "a robot walking by the beach painted by Van Gogh "} +{"id": "2006906", "video_name": "ee25a710-45e7-58cc-934c-c2c916e19a7f", "text": "a boy with speactacles sitting in girls lap with smile on his face and girl looking down to him and they are standing on the top of mountain and they could see city downwards to that mountain with lots of lights. these lovers should be in 4k format "} +{"id": "4004836", "video_name": "86b44d9e-d219-5776-9b45-e9fc4e2eaf47", "text": "hyper realistic man walking down a graffiti painted alley. 16:9 "} +{"id": "1006489", "video_name": "76d85d5f-4b79-52d7-a19b-ad1bb51c979c", "text": "battle, warriors, swords, victory, food, celebrate, realistic "} +{"id": "1003150", "video_name": "3a15dd46-0e63-5fb6-a7ed-a98cf2b67c47", "text": "Nelson Mandela in the sky peint "} +{"id": "2003948", "video_name": "71c684b6-bd96-5500-a7cc-f15e50c6d156", "text": "It was a warm and cozy, but strange little place, filled with all sorts of oddities and curiosities. She saw shelves lined with ancient books, their pages yellowed with age. In the corner of the room there was a collection of exotic butterflies, each one more beautiful than the last. A large red hourglass with golden ornaments was right to her left next to a bronze cupid statue. "} +{"id": "1003873", "video_name": "475ddfee-6a4e-5376-bdab-7f21ad6c0b5a", "text": "Crowd of people dancing on piano keys at small 1960s jazz club. "} +{"id": "1006046", "video_name": "6f0ee42b-3e8a-5467-bedb-e101d9f47acb", "text": "I want to create a cool video background, rotating circles with light and shadow effects. "} +{"id": "6002122", "video_name": "c14830c0-1258-53bb-ac88-f65686c4e928", "text": "Worker clossing valve to prevent an explosion "} +{"id": "6004951", "video_name": "9babb189-c3df-538c-9e6e-b9eaa016db5e", "text": "a huge cluster of cars forms the word Bilal, a view from a height Message: BILAL (Font: MODERN) "} +{"id": "7004694", "video_name": "653fef0d-ec87-512b-b9cd-2c3b89d25359", "text": "Dark forces holds his hand above his head releasing a bright light into the sky "} +{"id": "6003410", "video_name": "8293d4e6-91cf-52a1-bc84-20eea4f1b78c", "text": "silent film large pine tree in forest, low resolution, grainy, dark, black and white, blue "} +{"id": "3003009", "video_name": "96f22e5c-e51b-5cdd-9103-a39d451bc61c", "text": "female superstar singer, in front of a skyscraper in New york "} +{"id": "0006284", "video_name": "29ffa85a-a90c-5e0d-aede-51e4160bbe52", "text": "abstract scenes of a neon planet Earth seen from above in the year 2367 "} +{"id": "6002988", "video_name": "4b4e9d9b-9473-5862-bc17-5ee4ece50d2b", "text": "A tv with the angel metatron on it "} +{"id": "1004460", "video_name": "52846aa2-775e-5a26-ac54-414bd5beec24", "text": "slit scan effect 2001 space odyssey "} +{"id": "1005459", "video_name": "64513c22-86b0-573c-931c-e622fc2f18c0", "text": "singer on stage show on small indian village "} +{"id": "5001170", "video_name": "63ddaba8-153c-572a-99ec-e4e3ab9e05d4", "text": "Popular neighborhood. night.\nTwo men wearing traditional robes are sitting at a table playing a game of dice\nformat HD 16:9 "} +{"id": "4003994", "video_name": "726f4110-2882-5da8-a155-efa895a49634", "text": "electric particle ghosts with lightnings and ufos in an occult ritual, in style of 80s cartoons and rodney matthews "} +{"id": "1004890", "video_name": "5a5cbb95-3dc4-5726-b620-e3d860c55173", "text": "Two boys walking down a sunny street, one holding a wallet. 4k ultra "} +{"id": "2003418", "video_name": "a770b480-ea8a-5a03-abf2-1370d170dbde", "text": "A beautiful girl is dancing on the water.Dress her, don\u2018t wear a bikini. "} +{"id": "7002149", "video_name": "da9c241f-5fa1-5db7-91ff-c4bc32c808df", "text": "workers in a steel mill with robots "} +{"id": "3003853", "video_name": "30fb9ccc-711c-5777-a8e0-05809d58412f", "text": "a scene of a man surrounded by flames fighting a rock monster "} +{"id": "2005253", "video_name": "ffb89d6a-0e47-561b-a747-54ed3d98a306", "text": "a cinematic theater platform with an animated boxtroll boy walking around tall grass, leafs fall around him, a golden horn hovers above the boy, 16:9, ultra realist, 8k "} +{"id": "2006945", "video_name": "c84800d2-8a29-512b-bc34-12cf768f92e7", "text": "A Blue lizard playing with green diamonds in lake landscape "} +{"id": "7003541", "video_name": "1367abe7-153e-59c3-90cb-3dc8871717c6", "text": "One day, a brown colour cat disappeared. The little boy searched his pet cat high and low, feeling lost without his feline brown colour cat. Then, at dusk, a soft meow echoed. The brown colour cat returned, cementing their promise of everlasting friendship. "} +{"id": "5001656", "video_name": "6f492da3-445d-5c8b-94cd-eb39ee9daa9f", "text": "The old grandfather who played in the ball bath "} +{"id": "1006064", "video_name": "6f51412a-a856-54fe-a4e1-30e07b66444f", "text": "A monkey sat on tree in the mountain at dusk time, ar 16:9 "} +{"id": "3003345", "video_name": "8b5f0036-7883-5e1c-8821-e7a6f76c5e4e", "text": "An old fishing village by the Zhuoshui River. Old fishing boats are moored on the river bank, shrouded in thick fog. "} +{"id": "3004600", "video_name": "7c3372da-46db-5cbb-a855-6da79680f5a2", "text": "OlOld charging handsome man, cinematic, 8k, story, movie, highly detailed, sharp "} +{"id": "4004297", "video_name": "2b6295c4-56bc-5aad-97a1-cea814c28e88", "text": "This statue was a gift from France to the United States "} +{"id": "1005896", "video_name": "6c75f99b-b19e-5c83-86b4-f91312823867", "text": "a old village with hills and a few tiny houses "} +{"id": "7004390", "video_name": "aff20f78-b3b4-58d7-96ca-e3f2e2ed7970", "text": "cramped and stuffed office,large desk, files all over the desk, messy, projection 3D, 360 degree, virtual tour, ultra realist "} +{"id": "2004315", "video_name": "3a910523-7fda-5f60-8a46-d44f5a461dce", "text": "with an eerie reputation that sent shivers down the spines of the villagers. "} +{"id": "0005731", "video_name": "20424b40-4f36-5e76-9c19-98845fb257de", "text": "creatures of the night with glowing eyes in a graveyard at night frolicking, detailed, best quality, realistic, masterpiece, scary, creepy "} +{"id": "1006878", "video_name": "7db66897-27ea-5cc3-9db3-cca746f8d1ed", "text": "a black starry night in which the golden stars move frantically forming spirals that unwind to the left "} +{"id": "8002237", "video_name": "76572994-9aa9-5703-bcbd-068da851aa3f", "text": "apartment with bacolny and sea Message: 1 Attachment "} +{"id": "1003875", "video_name": "475ea7d3-01fe-59e5-afed-5e4ef7f71f68", "text": "A haunting depiction of the demons, trapped within the cave, scheming and plotting their return after fourteen yugas.Animated cartoon "} +{"id": "4003354", "video_name": "017292ee-9a72-56e1-8de6-929b92c88f1c", "text": "a black background with a cat eyes wink here and there "} +{"id": "3003949", "video_name": "cd894a36-3123-581f-9e7a-86a798535a29", "text": "Poor Cazamian was burnt to a crisp. Only thing that saved me was the spacesuit I was still wearing. I snapped the face plate down because the cabin was filling with fumes. "} +{"id": "8001515", "video_name": "56685f43-7519-5b47-9a51-2f6fddb2d084", "text": "Forest clearing ahead, the horseman nearing home in night in forest "} +{"id": "4002165", "video_name": "5fc35853-02de-5258-af13-0c8d42abf620", "text": "distant view, a line of geese fly across the night moon sky, below the sky is the wild pond "} +{"id": "4002429", "video_name": "8303d905-5ad7-5b4f-af28-564431ef5c90", "text": "give everything inimage more depth and morph movement "} +{"id": "8003135", "video_name": "dc5be116-0952-5ad7-b451-76f05cfd89bc", "text": "People smile at the camera with gratitude and joy. image background movement "} +{"id": "8001650", "video_name": "c90e61e6-eb2f-53f3-835a-9727adca5b37", "text": "A majestic dragon soaring above a rugged mountain range, its scales glistening in the sunlight, clouds swirling around it, conveying a sense of ancient power and wonder, Illustration, digital art "} +{"id": "0003935", "video_name": "0017dfe0-aff8-5a59-ac28-3c5138f623d9", "text": "HD, Cinematic Texture, Road, Cat, Storm "} +{"id": "1006793", "video_name": "7c6f2606-2eb3-5cc6-af8f-6e5cd564b54d", "text": "Generate animated scenes of the Raja gradually accepting the child and expressing gratitude to Kashi Ram. "} +{"id": "2007080", "video_name": "2dec50a8-2ae5-5566-9098-f5178a1fdb01", "text": "A monkey in the jungle, he try to pick the nail from wooden logs, 3d animated "} +{"id": "5001596", "video_name": "0e318be6-78db-5a7a-91d2-c4d6c29070bf", "text": "distant view, a man and in his side, a woman, they are wearing silver galactic uniform, next to they, the planet earth shining lights, they elevate hands to the planet and raibow neon lights moves around, very detailed scene "} +{"id": "4002425", "video_name": "491ac6f6-f551-5a59-a870-c729796a9d7f", "text": "a 4k video of a hooded man standing in a fire "} +{"id": "6003873", "video_name": "371358e9-dad5-52b5-92ff-cbe4846a8a18", "text": "Video that talks about human transformation in the field of personal coaching ,ultra 4k quality "} +{"id": "7002178", "video_name": "47c00eea-d971-5b41-a931-42ededeb3bb0", "text": "ancient youth working in a rice shop. "} +{"id": "4004750", "video_name": "b0b4dd17-7380-521d-84db-e41e979c310d", "text": "70\u2019s Arthouse film, dark fantasy, a man standing on a roof "} +{"id": "1005082", "video_name": "5daf9fd9-69fe-58af-93e7-c4d6bf718864", "text": "a cartoon boy is running, disney style "} +{"id": "2005286", "video_name": "eff2a446-9045-5d71-b970-28956cb588b0", "text": "Tall red and fiery lion sitting on a chessboard in the middle of the desert "} +{"id": "6002857", "video_name": "bca58b97-7e93-5429-b462-629372738a0a", "text": "cute boy,standingin the zoo, sun rising,8k "} +{"id": "4003161", "video_name": "2597ab8c-6a3b-596d-b111-dae4e1c9659a", "text": "On a flying saucer flying through the night city, a ginger cat jumps from the roof of a house on top of it "} +{"id": "1004597", "video_name": "5590911b-dddc-5a99-9b18-52e9531c3e40", "text": "Xmas christmas tree holiday celebration winter snow animation gold background. "} +{"id": "3005527", "video_name": "bd447c8c-ad7d-5221-8297-6d3919112217", "text": "a video a hand A hand holding a knife and cutting a tasty piece of meat on a kitchen board. In the background, a lit barbecue "} +{"id": "0004666", "video_name": "0cf62b2c-ef44-51a4-a094-697d85eb39f8", "text": "donald trump doing yoga in the forest "} +{"id": "7002791", "video_name": "08f39ef3-d0fd-5da9-90ae-4af25f7cc802", "text": "Man walks slowly, trees moves by the wind "} +{"id": "6004952", "video_name": "1d2d8d34-52ac-5b12-ade3-3aa95f101255", "text": "A rugby ball falls from the top right and makes a big bounce upon touching the ground. The scene is at a rugby field, with the ball rotating rapidly. "} +{"id": "4004076", "video_name": "8496c924-2603-5973-8062-2291c69f27fb", "text": "A forgotten coastal city emerges from the mist, its stone walls blending with the rugged cliffs that overlook the crashing waves. "} +{"id": "0004829", "video_name": "0fe844bd-f80d-56e1-8b3d-b406f26063cc", "text": "view of the sky through a building "} +{"id": "1003919", "video_name": "48604fff-57b6-5ab1-a51d-b1a72b6d7f39", "text": "man with wires stretching, pulling and tightening moving through his head, while he screams in pain "} +{"id": "5001167", "video_name": "c6f2d904-007c-50b8-83a8-f13b83e2b14f", "text": "tribal fighting generate in high end graphics "} +{"id": "7004561", "video_name": "bac7f4d4-ff4a-5f07-873d-da354986f215", "text": "a girl with cat ears sitting by the beach watching ocean waves "} +{"id": "1003372", "video_name": "3e26ad7a-5083-5b08-be43-9e359f4b5c45", "text": "prompt: cartman from southpark walking down the sidewalk "} +{"id": "0003459", "video_name": "3de4cccc-3c5a-5d82-8e6a-612c8f0a593f", "text": "the invisible man plays the guitar "} +{"id": "7004654", "video_name": "ee176eca-994d-570b-8816-7eb9cadee80c", "text": "People who talk well with AI "} +{"id": "6004181", "video_name": "2d406eea-4eb0-5c8d-9a76-0cf1f88bc94a", "text": "warframe on gta 5, night, rainning, smooth "} +{"id": "2006931", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "The audience animals of sea clapping and cheering for Della the Dolphin, their applause echoing through the depths in The vast and sparkling ocean, with the sun setting on the horizon "} +{"id": "0004735", "video_name": "0e57da11-1747-54b3-a3b9-7aff8bf4bd62", "text": "One day, when Maya was hunting, "} +{"id": "2006852", "video_name": "42028cc8-4b20-5c6a-9640-a6f1aaefc950", "text": "a hundred people enter a huge magic tower that goes all the way to heaven "} +{"id": "2007444", "video_name": "4b7ea3ca-7daa-5f93-84a7-4fb79c63b6a7", "text": "draw me a mountion on a s rainy day. Message: . (Font: MODERN) "} +{"id": "0004201", "video_name": "04e7d42b-901f-5692-9491-9d6666139dbb", "text": "I need an image to place as a notebook background that is a feminine landscape, nature "} +{"id": "1003181", "video_name": "3a7ba9b5-b945-5576-8ae8-0beb615c6a06", "text": "a man writes a letter while smoking a cigar, then he looks up through the window and blows the smoke out "} +{"id": "3003532", "video_name": "21108d1e-8803-5340-82f1-1851f6b0d5c6", "text": "top view from a beautiful forest having fantasy creatures moving. "} +{"id": "2003379", "video_name": "75f73add-61c7-5aee-b79d-b34ca4db4b0c", "text": "An image of the other animals in the forest watching in amazement as Crow saves the fish. "} +{"id": "3006555", "video_name": "15a8acd4-75cc-5abd-bd46-42bb5cf0185a", "text": "n an abandoned construction site, Max seized the opportunity to strike. He darted around the robot, barking fiercely, distracting it. The once indomitable force became entangled in wires and debris, rendered powerless by the determination of a courageous canine. "} +{"id": "2006239", "video_name": "d318f20b-e6d3-59b1-ab27-6f4eec88e6ef", "text": "London West End in the style of David Hockney "} +{"id": "6003515", "video_name": "e6febe89-9319-511d-a96a-6cbeffa58040", "text": "cats on the beach Message: DHM (Font: MODERN) "} +{"id": "5001511", "video_name": "d1abc34c-0503-502b-93ee-0589c649bad9", "text": "Zoom out of a silicium circuits "} +{"id": "7002999", "video_name": "581af776-800e-5770-bfa1-db762d4ad9f5", "text": "foreground: a closeup photo sharp focus of a boy wearing a retro styled virtual reality goggles while holding tongues, bokeh, background: smooth horizon bright sunshine over the sun rolling hills, visible sun, in the style of golden age aesthetics, expression of bliss, dental examination, soft "} +{"id": "8002342", "video_name": "e2b1b1bf-34d6-5335-b938-d8bcfad4f8e7", "text": "horror video in the style of stephen gammell "} +{"id": "6002662", "video_name": "1e803763-e6e3-5672-afad-89d4adad58f1", "text": "The room fell silent as everyone watched in awe. "} +{"id": "1004555", "video_name": "548cf2e7-5d02-5a38-9f1c-20dfcf2e3693", "text": "Opening into a scene wind whooshes into a zoomin mystical violet coloured forest "} +{"id": "6003603", "video_name": "3bac8a94-f44f-5123-b2c0-274249f7c817", "text": "the cat sits in Sherlock Holmes and smokes a pipe "} +{"id": "7003036", "video_name": "61130c04-ebd6-5504-8b8f-8f3eb292d7f4", "text": "a man running towards the camera, he is doing fitness so he has a good physical posture, he is dressed in black and runs on a road in the middle of fields of flowers, frontal shot 3d digital art. "} +{"id": "1005040", "video_name": "5d299a1f-2441-58aa-8c47-c7bc83f09f66", "text": "book open showing a face smiling "} +{"id": "8003217", "video_name": "73a8b9df-d0fb-5cdf-978b-46629dd438aa", "text": "what happens in the hot desert forgotten by time "} +{"id": "5001452", "video_name": "28ddbe1b-462a-5019-b921-a6d10c2b2ab4", "text": "a machine that stich the brain "} +{"id": "6003510", "video_name": "7303a710-347e-5dd0-a9bc-e8dca3513022", "text": "barack obama vigerusly dancing in the rural woods 8k realistic "} +{"id": "2005480", "video_name": "f4aa882c-7494-50f9-838d-b5f25c1cc814", "text": "a realistic 70s themed kitchen with a woman throwing stuff around and a man crying "} +{"id": "6003645", "video_name": "2ad8b168-1a3d-5840-8da6-fce09146d835", "text": "a logo that says \u201cFitFlash briefing \u201c that catches on fire "} +{"id": "2004450", "video_name": "901ad6a1-f8b5-52a2-9cf8-f7b0bf80f38b", "text": "A man is doing a motorcycle stunt "} +{"id": "0003802", "video_name": "43ba9e87-2e83-5a08-b736-18f9870c69d8", "text": "Zoom out A grey colour buildings with Graffiti on it (Font Modern) super realism "} +{"id": "2005421", "video_name": "ff2b6e85-784d-5f50-a5d7-6f89fbaa078b", "text": "a rajasthani king sit on his golden thrown in his palace and other staff also sit in front of him "} +{"id": "1005718", "video_name": "693abf29-3cfa-5731-9453-56facb490810", "text": "smile and shake body Message: smile and shake body (Font: MODERN) "} +{"id": "2004637", "video_name": "a12a7f92-6940-58a0-b3c5-91913c517da4", "text": "The bobbing and weaving of the water is represented by the oil painting texture. "} +{"id": "2007246", "video_name": "4380b8a8-9b66-54c4-a96c-c5b5b92aaa2b", "text": "a cute kitten hip hop dancing on science fiction city road at night. With clear definition "} +{"id": "0005194", "video_name": "16713714-ac8a-56f3-a4ee-259956ce2731", "text": "The Islamic Girl 10 year old and her Islamic mother returning to home on path "} +{"id": "0005478", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "a kid on a living room playing drums "} +{"id": "2007292", "video_name": "664c2441-ea35-56af-b1ed-2d46c8d30112", "text": "A football eating pizza , with chickens running around in the shop "} +{"id": "4004807", "video_name": "a6617019-8730-537d-a6da-b01c4ea5f7e5", "text": "Gopal thought of a trick in his mind and let the other man do the same "} +{"id": "8001286", "video_name": "8534dcd3-42ae-5e11-a18c-a6b20dbcd497", "text": "A bustling foreign city, a cacophony of unfamiliar tongues and smells. Cobblestone streets wind through markets overflowing with exotic spices and faces etched with loss. "} +{"id": "8002880", "video_name": "3ecec39b-681c-5c74-a595-1427585fdd8a", "text": "anime rain, make the silhouette on the bottom move and walk to the right "} +{"id": "0003010", "video_name": "35884585-ed75-5519-90dc-55d388c35bb8", "text": "a drawing of abstract plants growing, in the style of a minimaliatic child drawing, color pens on white background, negative space "} +{"id": "0003465", "video_name": "3df8fd8d-f956-56c6-88a0-9011e85e0cd0", "text": "van gogh style world, stary sky painting camera traveling through space a women standing in the middle of the ground, back shot "} +{"id": "2005681", "video_name": "731eaab2-dead-577c-8080-bf212cfd7fd6", "text": "There was a small village where a man, Ram Lal, was busy with his passion. "} +{"id": "0006466", "video_name": "2d0a2a45-5105-59cf-a4a6-e4986e43ca94", "text": "view of a town of all houses "} +{"id": "3005877", "video_name": "f75b7d0a-cf1e-5c6e-80cf-eb1b7898c004", "text": "a unique alien with three fingers in each hand "} +{"id": "3004942", "video_name": "f41a868e-cf88-59b4-8716-98787574e715", "text": "The diamond ring, bling bling, on background black "} +{"id": "1003899", "video_name": "47faa5d5-4d88-5c6f-b4c2-eba07463ded3", "text": "a painter with a wide brush brushes indigo fabric dye onto wet silk, causing the color to bleed and expand across the canvas "} +{"id": "2003705", "video_name": "5a14fe2f-979c-58d1-a1bd-ed3151a5e28c", "text": "Hockey players fighting, ultra realistic, full hd, 8k "} +{"id": "7003816", "video_name": "f747dd59-a1ff-5928-98ec-abe5dd6e5ae6", "text": "two boxers are fighting, the first boxer is punching a straight jab, the second boxer is dodging the punch of the first boxer "} +{"id": "6004036", "video_name": "5bee3ce7-45b7-5616-b000-7fa810472bf1", "text": "cartoon generation, three children at school on the desk draw a red star "} +{"id": "1006016", "video_name": "6e81ab63-3ea0-59c7-a28b-2cc969cb5000", "text": "woman getting scared by a ghost "} +{"id": "4003735", "video_name": "f4b5c5f4-c2ee-5a20-8279-d37922bdc600", "text": "Human hand cross by thumb and clap. "} +{"id": "7002580", "video_name": "063a708e-16d4-55b4-be35-262b9923dea5", "text": "Clean and wash the strawberries. Cut them into halves or quarters, depending on their size. 2. remove the currants from the stalks and wash them. and wash them. Clean and wash the raspberries. 3. Boil the juice with the sugar. Stir the cornstarch with 2 tablespoons of cold water and pour it into the boiling juice. into the boiling juice. 4. 4. mix the berries into the hot juice, pour the porridge into a bowl and put it in a bowl. into a bowl and refrigerate to set. "} +{"id": "4002039", "video_name": "5ab8673e-a347-568d-af0d-2140031b4607", "text": "a superheroes that is from malay origin with klcc background "} +{"id": "2004179", "video_name": "0089328b-3dc0-52ef-a7c9-7bf32a3047e1", "text": "The background in the fire is driving a car "} +{"id": "1004609", "video_name": "55cc6d8f-fa99-5d5d-a1e4-a0dda2332c31", "text": "The Highland Skies, once a battleground, now witness the dawn of cooperation in the mystical land of Terravale. 16:9 , digital paiting "} +{"id": "3006118", "video_name": "d7751a45-62d3-5bd9-85dc-0c921f0c2c44", "text": "a brown robot dog dancing on a stage. A crowd is watching. "} +{"id": "0003234", "video_name": "39c27481-7930-505f-974b-736f9e72c075", "text": "a bird eat a caterpillar, ar 16:9 "} +{"id": "0003054", "video_name": "363a7bfc-525c-5b90-83c7-8a11a1ebd1e0", "text": "I want footage of bee activity "} +{"id": "4004060", "video_name": "93b0e2d2-f55f-5f3a-87b7-162f55dbda99", "text": "Excitedly, they unfolded the map and discussed their findings. "} +{"id": "8001619", "video_name": "8f8b6e4b-46a7-56e3-9424-46ac44223887", "text": "a god sitting at a table eating a fine assortment of food and drink "} +{"id": "6003992", "video_name": "138facc4-43bc-5959-8faa-0e57fe7179cf", "text": "photorealistic close up high contrast cinematic shot of a bland looking man\u2019s face liquefying into purple jelly "} +{"id": "7003516", "video_name": "386b6863-b102-52ed-bb27-37bbfedb7f3d", "text": "Van Gogh painting of a ship sailing through the stormy ocean "} +{"id": "8003570", "video_name": "f20b807a-e620-5b27-8ea3-f4985248f45d", "text": "show a volcanic eruption with no lava, just smoke and a volcano breaking down. hyper realistic 4k. "} +{"id": "2004457", "video_name": "f39aca15-6ee5-58f6-baf4-774f207dc476", "text": "animation of people caught in rain psychedelic "} +{"id": "7003111", "video_name": "4b078880-0d59-5236-b8d8-d77b336dd788", "text": "India is a religiously pluralistic and multiethnic democracy \u2013 the largest in the world "} +{"id": "8001303", "video_name": "15e13287-52ba-507c-bf10-230eacbbe9c2", "text": "A 80s looking movie theater with a neon lights saying \u201cnow showing\u201ds its on a large hill to the left of the frame. the rest of the frame is looking down green forests with a sun setting in the distance. "} +{"id": "0004166", "video_name": "0462c408-07f9-583f-9073-e8eb16ed9bd1", "text": "berry jelly Message: yeppo (Font: COMICS) "} +{"id": "3004315", "video_name": "d6efbce9-61a7-50db-9cb9-9aecd599c85e", "text": "A bustling cityscape, people going about their day. Suddenly, something streaks across the sky. People stop and point, looking up in awe. "} +{"id": "1004458", "video_name": "527cbe55-5c6c-5ccc-916d-39acf9242157", "text": "A heart that pumps money instead of blood in the heart of the financial center "} +{"id": "1003740", "video_name": "450aaa8d-fd4b-5a88-bbf7-2621f77ccec3", "text": "create cinematic video where woman in picture is crying out for help in tears "} +{"id": "8002230", "video_name": "9047866c-b50a-587d-b949-4c91fceace41", "text": "sleeping person extremely unfolding from his body to the sky. Mystical experience. Ghost. "} +{"id": "2005853", "video_name": "cdefd6b8-39fe-50b6-9b38-d4b23e522dc9", "text": "short hair woman, underwear, anime, beauty, sport, thin "} +{"id": "8003928", "video_name": "d9e3e4f4-25d0-5022-8da5-4dfab414e4dd", "text": "epict a vast, cosmic expanse representing eternity, with no beginning or end. A radiant Word (symbolizing Christ) is at the center, glowing brilliantly. The Word is timeless, floating in the void. "} +{"id": "0005762", "video_name": "20cedcfa-27fd-5888-a60e-afe4c6627e4e", "text": "a boy in blue spacesuit talking to a very weird alien not to scary kind and calm Disney pixar style "} +{"id": "2006795", "video_name": "f14c847b-f053-5b9e-bc33-0b72feb7138c", "text": "A Gigantic Metal Pipe Crushing A Plane "} +{"id": "1005440", "video_name": "63f66a3b-ebe7-5116-b5c8-cbce7c8a20cb", "text": "a brown boy with a long hard and curly hairs dark eyes in student uniform in classroom "} +{"id": "0003401", "video_name": "3d004d3a-770b-5ab4-82d2-c73173269325", "text": "beautiful downtown Pompeii vibrant zoom out large "} +{"id": "0005020", "video_name": "13569ab5-29b6-5d57-abe6-5d35a85b4510", "text": "Explore the theme of resilience in the face of sadness through a video montage, featuring characters overcoming their emotional struggles and finding strength in vulnerability "} +{"id": "7002455", "video_name": "8b797e6f-52d7-56b6-911e-9778ff7f51ff", "text": "A foggy and creepy graveyard with moving tombstones "} +{"id": "4003553", "video_name": "febfa55a-c091-5529-ab16-ee37f8e691bc", "text": "a biped unicorn warrior, with your cloud sword, seems like pixar animation "} +{"id": "4002154", "video_name": "189c25a7-6e3c-5df2-b3b2-b995530aa961", "text": "In an underwater world, there is a mechanical mermaid, gazing affectionately at her lover. "} +{"id": "2006258", "video_name": "55beb549-1279-5def-8f39-0df48f56cef8", "text": "inside a crystal, horrorart, black and white "} +{"id": "2006139", "video_name": "ed7a9bfe-0d88-59a2-8238-ca542cf23b2d", "text": "surreal pendulum man stares at evil clock. bright colors. evil vibes. "} +{"id": "6002193", "video_name": "34be6296-b1b3-50b3-a5e8-14393c6f28cf", "text": "Man with yellow hat, white tank top and shorts in his 30s sitting on top of a whale fishing in the middle of the ocean. Sunny day. "} +{"id": "4002329", "video_name": "ad14fd01-ba9f-55de-9480-9f52ed4118e3", "text": "Samus metroid walking on a alien planet where it rains "} +{"id": "3006400", "video_name": "47f4e322-20f3-53b1-82b6-0bfd41ea6f7a", "text": "Real Estate Ventures: Invest in rental properties or real estate crowdfunding platforms. Rental income and property appreciation can provide a steady stream of revenue. "} +{"id": "1005014", "video_name": "5cc00a60-9703-5641-bfcb-9135b98d456e", "text": "In front of the huge spaceship, a group of people walked up, wearing futuristic suits and smiling. "} +{"id": "2005978", "video_name": "f94e6cf6-903d-5e47-8de6-23ac80ca36f7", "text": "Red power ranger morph, and dino steel armor "} +{"id": "7004763", "video_name": "468902fb-2cff-55f4-ab63-3aaacbe39efa", "text": "microbes multiply and quickly spread throughout the environment "} +{"id": "6004948", "video_name": "111573aa-9a0e-5be1-83dd-44399a61d771", "text": "Create a anime image of shree krishana and radha rani in standing on rocks and krishna playig a fluet "} +{"id": "6003173", "video_name": "71b3c7c1-cce6-5781-85fc-f94329e55565", "text": "scandinavian gods with their atributes sitting on viennese chairs, drinking tea and talking "} +{"id": "0006992", "video_name": "365d514e-fd20-5725-b443-31bf89a0257e", "text": "An allegory of the tree of evolution from Darwin theory "} +{"id": "1003560", "video_name": "41a280d1-a263-593f-983e-bca820424078", "text": "The black cat and the other cat begin to fight "} +{"id": "1004850", "video_name": "59a1f188-a4bf-546a-86a6-d5c98c5bd580", "text": "student,uniform,green,dynamic realistic,Oc rendering, soft focus, soft light, high saturation "} +{"id": "2007745", "video_name": "414cd829-8d05-5acb-b5c2-4c7f9745b991", "text": "a man walking in the street around him few are lovers doing romance, he is very sad and alone. "} +{"id": "1006684", "video_name": "7a8c888a-3e28-5555-a885-8fc96100c156", "text": "On a boat in the water, a cute baby otter, wearing sunglasses and raising them with her left hand, delighted in the sensation of her hair being blown by the wind. "} +{"id": "2006531", "video_name": "aeb2a0ab-3458-5f5e-b3c0-65ca374123f9", "text": "The words on the page, one by one floating Message: 1 Attachment "} +{"id": "2004485", "video_name": "95ee2d8d-fd72-5421-9e53-9afc888420e8", "text": "flower , tech , sky , clock. "} +{"id": "0005840", "video_name": "220c5198-4c4c-5b67-b2fb-8d4f118ad7e3", "text": "Your movie scene from a banned horror film from 1993 by josef Sudek and allie brosh, macro movie david lynch twin peaks black mirror VHS found footage Five nights at freddies eraserhead "} +{"id": "0006118", "video_name": "26e6ec58-46be-55fc-b068-1afa092e03c9", "text": "He will encounter various challenges and obstacles on his journey, but he firmly believes that only solving the mystery of the lost city can lead to important discoveries about lost civilizations. "} +{"id": "2007559", "video_name": "8645fc46-2f8a-5ea9-8d3e-0612983790e5", "text": "High quality cinematic film, 8k, Mazinger Z throwing one of his fists "} +{"id": "3005706", "video_name": "ce2f1cb0-a8e9-5ead-84c1-5b7b27cc3951", "text": "gold biscuits are kept in the cupboard "} +{"id": "0004249", "video_name": "05bc59ea-5160-5377-a367-0c4d5cbcca14", "text": "dress that moves Message: 1 Attachment "} +{"id": "1005931", "video_name": "6cf944a0-a734-5c71-b2d7-0e242934a734", "text": "Furthermore, the integration of artificial intelligence and neural interfaces poses a formidable riddle in understanding and emulating the intricate operations of the human brain. "} +{"id": "5001815", "video_name": "0bafe282-b1b5-55bf-be0f-0741bc838bdf", "text": "doctor strange embracing spiderman tenderly up in the sky above new york city with a news helicopter flying by in black and white "} +{"id": "8001067", "video_name": "7fbf22e0-5be3-50ae-9498-b7048dfd94f9", "text": "In the stone age, people gathered around the fire to warm themselves, during the day "} +{"id": "6002205", "video_name": "c2451541-09b0-5762-8f3b-0160c3e2d190", "text": "a genz dancing in an urban location "} +{"id": "8001789", "video_name": "0cdcb116-ae7a-5586-bf75-d18d4b998962", "text": "beach with letters on the beach Message: k (Font: BAUHAUS) "} +{"id": "3003389", "video_name": "5caa824c-b3cc-5fef-b14e-68b3145e6820", "text": "animate the words money all around like its being drawn "} +{"id": "6004567", "video_name": "3cc3f5cc-7fbf-5647-b0b3-ab917df41ee1", "text": "veiled man with blooded sword on the pet lion "} +{"id": "6003436", "video_name": "aeed1a1a-91c6-58eb-b5af-75b49ba44ca1", "text": "a scene in a room where there is 1 white dog and 1 brown chair. Description of dog: looks like a mix between a maremma and a golden retriever and it is standing on the chair. Description of that chair: luxury leather chair, angular. The dog stands on the seating part of the chair. The dog is barking. there is a window on the left. the dog is looking in the direction of the window. "} +{"id": "2006093", "video_name": "3ac66ffe-d790-5647-885b-a8c6cb0cf5fd", "text": "girl, woking, in forest, flying bird, midnight, full moon "} +{"id": "0006339", "video_name": "2ae08d15-b725-5a4d-8f06-04bc545b9f4f", "text": "an AI with an American Flag "} +{"id": "3004379", "video_name": "c1cb76a9-ca84-56f5-b6d4-1eb30f54c03d", "text": "Two swans swim leisurely in the river "} +{"id": "3004577", "video_name": "82bd466f-9df1-5798-988f-4fb3fe6e137c", "text": "Cute anime gril on the way to school "} +{"id": "7003357", "video_name": "67869be3-b6c8-5aae-b477-2d3236bdb80f", "text": "godzilla with laser eyes angry in a city "} +{"id": "8003568", "video_name": "a4ccf341-bb34-5999-b432-84744c4ee5fd", "text": "a fox on a rugby field "} +{"id": "6002685", "video_name": "ba09eb59-33ec-5c5d-8973-d3a50f8a40c5", "text": "Penguin suddenly break out into song and dance "} +{"id": "4003209", "video_name": "8ce311e9-a86a-5500-bc27-7b252f73d395", "text": "animation cartoon Lytsk city 4k motion collors cinematic footage "} +{"id": "8001424", "video_name": "c6dcc521-3f74-524a-89e4-ac6ae9ecb2c3", "text": "Stephen Curry is playing basketball with a chinese student in the school "} +{"id": "1003089", "video_name": "38ddfb24-4d28-51bf-9c90-04a94bba670d", "text": "sunny corn field harvest Message: YIELD (Font: SANS SERIF) "} +{"id": "6004279", "video_name": "43e77dfb-c9e0-5cf0-a835-77fa739c5a98", "text": "In the complex web of relationships "} +{"id": "4002476", "video_name": "7bfde825-f082-5f88-bc0b-f8ad41b5089f", "text": "Evil shadows moving on Whitechapel night on 19th century "} +{"id": "0005052", "video_name": "13ca4b38-06ea-5148-8667-d0988feb3b3e", "text": "beautiful asian lady in a dress dancing "} +{"id": "7003809", "video_name": "619510b1-121e-5e31-91b1-797d68faa984", "text": "Villagers watching in amazement as the crow solves the problem. "} +{"id": "4002376", "video_name": "ff5c2c78-2294-59c4-b21c-03beadb39133", "text": "in the enchanting land of Whimsyville, encountered butterflies and mischievous squirrels "} +{"id": "0006807", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "RED BLAC AND WHITE COLOUR PALETTE, crows flying over a graveyards , horror, cinematic scene Message: 1 Attachment "} +{"id": "2003900", "video_name": "5b42401b-022d-521d-a458-c727084d66e7", "text": "a animatic image that two lions seeing each other in mountain "} +{"id": "3005460", "video_name": "64dc2430-2cef-5325-a61b-0e03a6f9ec11", "text": "someone removing a square device from their pocket and unfolding it into a laptop "} +{"id": "0003687", "video_name": "41b36fbc-7257-5f45-94b7-b9d85fff355b", "text": "three yoda alien dance in the kitchen in american farmer house in 1950s film style "} +{"id": "3004152", "video_name": "62331c79-44ea-51d2-a0f9-a55ef21c202a", "text": "small baby waving arm, 2d animated style, Clipart, lines, big blue eyes, cute, 8k, detailed, sharp "} +{"id": "6002278", "video_name": "4b53874c-e896-599d-b7ac-fa88db60a96a", "text": "girl with white hair, white silk covering her eyes, crying, praying to the moon "} +{"id": "7003366", "video_name": "04d1814d-e1ea-5e5a-b85c-2171d9a37792", "text": "a man with long hair and no shirt riding a skateboard in shorts and socks on a street with houses in the background "} +{"id": "8002583", "video_name": "82421628-07a3-5e40-b78b-71bc85d22015", "text": "a hump network, like a mountain, together with a series of concaves with different depths under the ground. water flows from the humps to the concaves "} +{"id": "0005398", "video_name": "1a1ae150-c5c8-54b2-81fa-088ee6b8a4f8", "text": "The two baby rabbits travel by the boat "} +{"id": "4002240", "video_name": "d00947c4-3577-54c4-9580-4039e3477874", "text": "a beautiful woman with beautiful eyes, who walks through a flowery meadow full of pink, yellow and white flowers, at sunrise "} +{"id": "7003271", "video_name": "f68c8619-dcc3-5d8a-8afa-e4e99a2b9342", "text": "A mermaid, seemingly real, captured in the ocean during the 1930s. "} +{"id": "7004314", "video_name": "866a888d-50f0-5c74-ad44-b0681e24d0c5", "text": "girl in a wheelchair playing a basketball game on a court in a park: pink and white uniform "} +{"id": "0004673", "video_name": "0d164276-a7c5-5ef5-9f8c-5a12522c49f9", "text": "hair oil pouring , shopify style "} +{"id": "2003751", "video_name": "23131f94-7264-56dd-9b6b-4002c42c3818", "text": "young genie man serving roti to a starving, impatient, working lady during the morning "} +{"id": "2004277", "video_name": "7326ca8c-b6f2-513f-9886-0110f420092d", "text": "animate the rain in the photo "} +{"id": "3006236", "video_name": "8676470a-90c0-5599-a923-cbb53b28fb07", "text": "Max should be shown guiding Daisy, perhaps by showing her how to fetch a stick or teaching her to sit. This would convey the role of mentorship and love that Max provides to Daisy. "} +{"id": "7004729", "video_name": "fc6ea8bd-44bd-5962-9e7a-e63db8d4e94e", "text": "generate a masterpiece of a boy with a bright red Mohawk lying on the bed, unable to move, with a terrifying ghost standing by the bed, giving a gloomy and terrifying feeling, cinematic lens with complex field bokeh; "} +{"id": "6004154", "video_name": "c9cd50f8-109e-5069-81f6-5af8cb4d89cb", "text": "a cute dog sitting at a table with a mug of coffee, the whole room is on fire, flames and smoke everywhere "} +{"id": "1006726", "video_name": "7b3e68e1-bb00-5598-bb04-c9b37e75294a", "text": "When the boy laughed seeing their fear, the villagers got angry. Some got very annoyed "} +{"id": "7003158", "video_name": "9ee17f68-e254-590b-9666-60ad7e45f6af", "text": "A young soldier is sitting in a small room watching the screen and holding a joystick and playing a video game while the house blows up on the screen. "} +{"id": "3003434", "video_name": "dde32402-5bb3-53c3-a83f-d02fb9a6da08", "text": "animation of vitamin tablet dissolves in glass and splashing nink water , a lot of barries, strawbarries , palm leaves behind in jungle , golden ratio, mouthwatering and fresh , natural lighting , cinematic lighting "} +{"id": "1006970", "video_name": "7f909995-6614-5edb-a34b-e6336488a1dc", "text": "seeds coming out from earth naturally growing slowly "} +{"id": "0004392", "video_name": "082e2042-4dd3-53ca-8ab9-621932f5b0bf", "text": "Create a video of the Cinegy Air software working "} +{"id": "0003205", "video_name": "392ab2af-2126-5a66-835f-165e71933f2c", "text": "a potato with multiple arms doing the twist dance "} +{"id": "0006404", "video_name": "2bde4113-531e-5097-99d0-7af62fa74fcd", "text": "Beautiful woman with long curly hair. Beauty face. Fashion model. Fashion makeup. Attractive Girl with a smokey eye makeup. Closeup face of a girl. Slow motion 4k footage. "} +{"id": "0005011", "video_name": "13368cea-fc7d-520a-91ff-a1099601fb6c", "text": "Generate an image of a young woman with blond hair sitting alone in her dimly lit bedroom furnished in steampunk decore. She is almostnaked, with tears streaming down her face. Her body is showing a nice tone. "} +{"id": "4004672", "video_name": "cb54cf60-6cd8-52cb-b7a7-bf2f7b8fe33c", "text": "On a mountain covered with green trees and shrouded in mist, there is an old man in a white robe with his back to the camera meditating. "} +{"id": "6002809", "video_name": "11eac49e-158b-5286-a1ee-113ae840bb2b", "text": "a futuristic sexy lady dress well. Powerfull woman. 4k video, short "} +{"id": "4004253", "video_name": "fd00ebb3-3100-595c-8cb6-40846e7b1193", "text": "four boys playing Ludo on the way "} +{"id": "2004994", "video_name": "69ec73ee-6655-5513-8ff7-d81a600b2546", "text": "Get used to watching the autumn full moon and spring breeze. "} +{"id": "1005696", "video_name": "68ac405b-7abf-5673-9357-68f49f337cb3", "text": "david attenborough sitting in a victorian chair "} +{"id": "7002700", "video_name": "315988f3-7fde-5edb-b637-f42bac2ecbcb", "text": "a red fox transformeed into a sexy boy in red "} +{"id": "1003993", "video_name": "49f674a1-48ed-58ca-9e27-1ab30ff9115a", "text": "the heart faces the sun, it shines brightly, a kind old lady "} +{"id": "8003530", "video_name": "345b96c0-c375-501c-b51a-c12df65f032b", "text": "Young men and women in red clothes walk towards the hatch of an alien flying saucer "} +{"id": "0005031", "video_name": "13710a7d-f9a9-53a9-a318-4c1c84a8758e", "text": "Naruto dress as mariachi playing mariachi Music in mexican party, cake, conffetis, dance, people, bright scene "} +{"id": "1005549", "video_name": "662fd357-b558-5dab-a012-aad6ec5aa7f0", "text": "The fox leads the lion to a deep well and tells him that this is where the other lion lives. He convinces the lion that he can only be defeated if he jumps into the well and fights him. "} +{"id": "6002589", "video_name": "a0bd0c75-5e7f-5940-beeb-cf9be2fda642", "text": "scene from 1920s silent film, black and white, a man stands on Gallows, in style of The Cabinet of Dr Caligari "} +{"id": "2003044", "video_name": "e6e940cd-ab10-5ab5-9979-bad408771039", "text": "I am on top of a tall building looking down. The building is so high I look down into the clouds. "} +{"id": "5001083", "video_name": "2fbcc0d3-f073-50b3-ba4b-ccbd6c8023e0", "text": "A handsome young Indian man standing in his house showing despair "} +{"id": "4003976", "video_name": "cc64dca4-5975-52ea-a1f1-d8316287518a", "text": "a korean girl walking then she looks up to see a huge temple "} +{"id": "3003577", "video_name": "4cb37c39-ba33-52b1-b78f-2bc0de342512", "text": "the inside of a grocery store milk cooler "} +{"id": "3006972", "video_name": "791fea88-cd17-50af-be28-cb6732f4d671", "text": "a guy falling in space void "} +{"id": "6003952", "video_name": "87161d73-32d6-5191-850d-651b5dad174a", "text": "In the dawn an angel was dancing\nSurrounded by an aura of light\nBut in the shadows something was watching\nAnd with patience awaiting the night "} +{"id": "2007858", "video_name": "5e38e324-a16b-5f35-8b14-903f55ac5c3e", "text": "The Buddha And The Beggar Story "} +{"id": "0004047", "video_name": "0237ba0d-e6fd-56e5-9ff1-22eee9bdc3c2", "text": "a small bird seeying clouds un toonstyle "} +{"id": "2003959", "video_name": "929537cb-6281-5ba7-bc4b-3cf92d72471a", "text": "traveling in alien world with futuristic spaceships of molybdenum, glass, steel "} +{"id": "5001702", "video_name": "83575227-4075-5e53-9483-af9712cfd86b", "text": "a lovely animal which can relax me "} +{"id": "0004935", "video_name": "11c6e3b1-9191-5c4f-b977-b1b5b7c36a4c", "text": "A woman is driving her car towards a forest on top of the hill "} +{"id": "2007291", "video_name": "d5a1b3c1-ec8c-51c0-a6ec-26a9bd0bc943", "text": "dog barking on a cat sitting on roof "} +{"id": "4003951", "video_name": "fd1088a6-0852-5b3a-a01a-8f19c172dd27", "text": "a monkey in the universe Message: Coderlands (Font: MODERN) "} +{"id": "1004290", "video_name": "4f647fb5-6e90-5d28-bcb1-2739dced04f6", "text": "man protecting tayota supra from rain "} +{"id": "1004753", "video_name": "58003b33-d80e-5fd2-a20f-73d8e1213afe", "text": "A chocolate brick smashing into a chocolate bar. "} +{"id": "8001792", "video_name": "d271213c-1e1b-5494-9c76-5b20f957df72", "text": "A moonlight, a cliff, a beautiful woman riding a horse running on the path, a gentle breeze, grass swaying, rococo "} +{"id": "0005710", "video_name": "1fddfa7d-46cf-548a-88c8-9c3abf82fecd", "text": "Polovtsian dances, horovod Russian concubines dance sadly, sad faces, eyes downcast, 16:9 "} +{"id": "2004512", "video_name": "f893241a-8dcd-5b6c-8dc1-1dad73929b57", "text": "cinematic scene the woman doing gym in space "} +{"id": "2005122", "video_name": "0c119b76-24a4-51f2-8905-f8d558aa4d84", "text": "3d render of a Chandelure pokemon, purple flames, "} +{"id": "1004962", "video_name": "5ba68619-15d7-59b3-9444-4685fcf2e128", "text": "a mind bending view through time and space "} +{"id": "3005920", "video_name": "d3f0bcc5-4139-5696-8f47-1462911cd7c9", "text": "obtaining items such as books, CDs and DVDs before the date they officially go on sale "} +{"id": "6004070", "video_name": "23775c86-1c8d-51ef-a806-1ffdb3508cf8", "text": "squad hacker to hack downtown New York City "} +{"id": "8002886", "video_name": "cc9aa52b-a5f5-5abf-8996-19da6bee90d7", "text": "the little mermaid is swimming towards you image "} +{"id": "5001098", "video_name": "8eaf2866-2900-5f33-9103-baf37e877fc4", "text": "Depict a young and curious lion named Leo with a distinctive golden mane, standing with a contemplative expression as he looks into the distance. "} +{"id": "7003484", "video_name": "9d086ad4-ea98-5563-9a6e-6f098cfa1e9c", "text": "Dramatic tableau of Aztec gods in a celestial setting, each offering a symbolic item or part of themselves into a central cosmic fire that is casting out new suns. "} +{"id": "6004802", "video_name": "e4894174-4cdb-5a7f-bbd7-90adad79a69c", "text": "bedroom with sleep music, modern, rainning out of window, candle "} +{"id": "8001834", "video_name": "a8c366f1-3f14-5741-bd44-4275a4bfc2f4", "text": "art deco in Todd McFarlane art style "} +{"id": "7003196", "video_name": "eb369401-9329-54a9-8a89-da47ccd19622", "text": "As the battle raged on, it became apparent that their evenly matched skills were pushing them to their limits. "} +{"id": "6003303", "video_name": "1d6bb3aa-1e6c-5534-adfb-91adbce47aab", "text": "kanye west bear flying beyond the city in a purple and black starred sky "} +{"id": "2003095", "video_name": "b2f1d7eb-e844-55b0-b9f5-b2665b3db745", "text": "Step into a colorful world of deco art charm, where fluffy alien creatures roam freely, large eyes wearing clothes. With intricateste art nouviu steampunk details, these fantastical creatures beings are a sight to behold. moon landscape magical flowers "} +{"id": "7003707", "video_name": "05bd42cd-49f9-5cce-b3b8-ba2d8ef64d60", "text": "A finance guy walking in the city of London with a Lion on a leash "} +{"id": "6003454", "video_name": "e658a502-b61a-53a7-bb01-1c06ecde6866", "text": "people entering the door of a house and showing the entire house "} +{"id": "7002764", "video_name": "2a8ea294-ce72-5414-91bb-a0c7b41f97f6", "text": "Man in a metro reading a book slowly heads up and see everyone else using their smartphones "} +{"id": "1005222", "video_name": "601dd965-1bf4-5796-9b2b-512fa9871472", "text": "a group of detached, lonely people walking down a busy street in New York City, with their faces showing "} +{"id": "2007174", "video_name": "17bfed3f-e458-5672-9d7d-db74c4e1350d", "text": "oil painting, a woman sitting in a rocking chair "} +{"id": "8002366", "video_name": "d8d3cb86-9fe5-5854-94ee-163fb87916f5", "text": "a group of young people walking down a sidewalk Message: 1 Attachment "} +{"id": "1004875", "video_name": "5a1570b7-168c-5cfd-81b6-29c07f57fb62", "text": "A vibrant landscape with a clear blue sky and a gentle breeze, representing the initial harmony between the sun and wind. "} +{"id": "0005753", "video_name": "209b1c81-9b3d-5e77-9ea0-16fee8a755ef", "text": "trout rides in a car with loud music "} +{"id": "0004559", "video_name": "0b3c769e-7a1b-586b-91b6-0275988ac2c1", "text": "a man shows his friend a computer with stock chart "} +{"id": "4003616", "video_name": "3e2ff692-9617-581e-8015-090b4d58352d", "text": "lineage 2 character runing away, realistic, high quality "} +{"id": "8002617", "video_name": "a0ceb368-ad5f-520a-9df8-b85c2665b704", "text": "I bought some shares several days before. Since that the prices went down unstoppably. But, today all of them get the top increase and I make a lot of money from them "} +{"id": "2006779", "video_name": "2648b0dd-215a-5ae1-8cff-d2d2bce776f6", "text": "the cucumber football club, playing with a cucumber a match. "} +{"id": "2006663", "video_name": "a1236278-7adc-5d0c-ac1e-89e9e8621a2f", "text": "An overhead shot adds dynamism as she moves down the street, navigating the bustling urban rhythm. "} +{"id": "6002544", "video_name": "0f5e6484-ea79-53b7-afd2-bb600e618460", "text": "an over city view of plymouth "} +{"id": "0004895", "video_name": "11155391-9910-5092-aac8-9e7d23ee26a1", "text": "The mountains collapsed and everyone was shocked "} +{"id": "3003578", "video_name": "b13600be-ebaf-5c08-af49-86b56b029459", "text": "3D realistic Tifa lockhart drinking coffee in a office "} +{"id": "7003052", "video_name": "f85c991e-b22f-590d-8f65-8a0300ae3c20", "text": "Mohan and Radhika also joined this important work. "} +{"id": "0003342", "video_name": "3bf04532-c78c-57b2-80bd-35320a782496", "text": "Create a scene where the matrix is taken over. The internal strife of the protagonist must be visibly present. "} +{"id": "3005908", "video_name": "d6b75152-2502-50ca-b82c-5934c160663a", "text": "chewbacca is at a rave which is lit by blacklight and neon paint. Chewbacca is dancing fast. "} +{"id": "6004521", "video_name": "968bd20c-571a-54cd-a54c-aadb9f1d99f2", "text": "camera movement pan, hair blowing, blinks slowly "} +{"id": "1004402", "video_name": "5166ef67-23cf-5ba8-ae07-13273be7b170", "text": "a Picasso abstract painting of a rock band playing music "} +{"id": "6003265", "video_name": "acccdb50-b9b7-5cd1-b8cf-b3fad1ac8d02", "text": "a house in the river under the construction "} +{"id": "1006943", "video_name": "7f123e92-aa6a-5c00-b6b5-0bc568a37001", "text": "riot In a factory , 1900 photograph, steampunk, black and white, motion 1 "} +{"id": "0004282", "video_name": "065683d2-9d65-59ba-87d5-394c2df277c3", "text": "steak bun steamy table shot tasty food "} +{"id": "1006134", "video_name": "7060fb06-6d5e-5ecd-a109-dfefd4ca43f3", "text": "pinguin walking smaling using Rosrio Central tshirt pixar style "} +{"id": "1003428", "video_name": "3f5bb6a1-b399-5b40-875c-40f00d5b7cb1", "text": "Teleportation across bridges in the Zircuit universe "} +{"id": "1003896", "video_name": "47df61f8-9bb4-5cb8-bca7-f032a7d0f766", "text": "a cute cartoon girl in front of disney home land Twinkle, twinkle, little star, shine so bright (shine so bright) "} +{"id": "2006954", "video_name": "fb1d081a-b5a7-50ac-9cb5-57a0352836f7", "text": "city of tunis with people walking in the habib bourguiba avenue holding tunisian flag , realistic , 4k , filmed by arri alexa , high detail , golden hour "} +{"id": "7003601", "video_name": "97c9a604-391e-525a-9498-6815a627acc4", "text": "1960s vhs footage of teenage racer wearing a helmet racing through neon outer space worm holes that lead to the storm on jupiter "} +{"id": "5001613", "video_name": "23457f5d-6f7d-51e9-a26d-f085ec0ac752", "text": "scene zooming in to the center of the wormhole "} +{"id": "1004926", "video_name": "5b0f6654-a998-5a62-8e53-71f465d8877e", "text": "interface of application like tiktok which have like share and follow button on it "} +{"id": "1004050", "video_name": "4b204e52-f422-5c18-bd6d-f02abed1f691", "text": "giant colossal beetle attack knights group battle in snow place "} +{"id": "8003581", "video_name": "edb6ed8f-acb1-5360-9053-11ff7bfbc323", "text": "Create realistic Video from son goku in high division "} +{"id": "2005871", "video_name": "d95810f6-a99d-5481-9f34-983281f87cc5", "text": "The image presents a poignant scene of a solitary figure standing amidst a vast, barren field. The backdrop showcases a sprawling landscape painted in muted tones, with wilted grass and dry, cracked earth stretching as far as the eye can see. The sky above is overcast, casting a somber and gloomy light on the surroundings. "} +{"id": "1003975", "video_name": "49684468-9450-582c-91fd-f5210bcb2519", "text": "red spaceship flying through outer space with planets and stars. Photorealistic. 8k. Anime. High resolution. Cinematic lighting. "} +{"id": "2007488", "video_name": "81db18d8-6834-59cb-923e-3169a2ab3e42", "text": "A cat walking on the beam of the house, A bright morning "} +{"id": "3005842", "video_name": "2af8523e-0cbf-51f0-883a-b44e12e68dca", "text": "Show them laughing and conversing with their newfound friends. "} +{"id": "8002654", "video_name": "a2395649-5d39-536f-9f40-69e9b468dada", "text": "a lifelike octopus swimming in a dank underwater cave "} +{"id": "3004569", "video_name": "0ba97cab-2d1b-50ea-b849-e139bc6b61bc", "text": "combine leo messi face with erling haaland in the same photo "} +{"id": "8001512", "video_name": "78816298-d290-55f3-a7c7-287e1824853f", "text": "ancient everchanging text that glows purple in a black light. horror like atmosphere. 2d Indie game vibe "} +{"id": "4004539", "video_name": "358d1023-347f-5f27-a4b9-584a29a71f5b", "text": "fireworks bloom over a night city into a beautiful fascinating shape "} +{"id": "0005991", "video_name": "249da9f4-4b87-58ac-91b9-50f4d478511f", "text": "majestic Zen Temple atop a tall mountain "} +{"id": "1004694", "video_name": "57412a1b-8b30-5536-9bcf-188bc301dc1e", "text": "different breeds of cats, dancing macarena "} +{"id": "6003128", "video_name": "2505d31a-b306-5798-a79e-b3f2a83a442c", "text": "camera panning, lights blinking in the background, the girl and the boy are happy "} +{"id": "2006902", "video_name": "f9f82927-d208-5499-99d5-90509fbe24f2", "text": "Scene background: dark night, in an abandoned house. Leaves one like you fell to the ground, covered with scars, face twisted painfully. Expression and action: Ye Wushuang gritted his teeth and revealed firmness and anger in the sunlight. Accessories clothes: Ye Wushuang was wearing a tattered robe and sent police to Hong Kong. "} +{"id": "8001783", "video_name": "a8e4b35b-7339-549a-8343-d17180f8b29b", "text": "creat a Door to another worl "} +{"id": "0003665", "video_name": "415d4b2d-c156-52ae-ad58-2121a4da5e83", "text": "A dark and mysterious castle in the Victorian era of London in a foggy night with moving shutters "} +{"id": "6003970", "video_name": "6cd10e99-3ccb-5ec4-b8ec-0e3ce588208e", "text": "A cover for someone called to learn Spanish without mystery "} +{"id": "0005053", "video_name": "13cb78dc-ca5a-5da2-b22a-a55c0318dbd1", "text": "Residents of the city at night "} +{"id": "7003931", "video_name": "3ad2c8eb-0a2b-5fca-92b4-f95b01bc0865", "text": "Kids singing feliz navidad wearing santa christmas costume "} +{"id": "3006805", "video_name": "3ba79156-0b3e-54b4-ae0a-bfb3b0defb6f", "text": "a mountain biker is jumping a large dirt jump in an open field with mountains in the distant background "} +{"id": "3004353", "video_name": "01a33f12-36a1-560b-866f-0fc46adb8c9c", "text": "12th century warrior hugs his wife, wife is crying, frame portrait "} +{"id": "6003048", "video_name": "8842781f-b92f-54ba-968a-64501759e5bc", "text": "The council decided that the bravest and most skilled animal would embark on this perilous journey. Model: 3d animation. Duration: long "} +{"id": "6002989", "video_name": "808fe0a3-44d6-5a72-8a5a-2fa4117e1f7a", "text": "Transforming an armed helicopter into a robot "} +{"id": "2005319", "video_name": "a91df5cd-1f13-5681-b8d3-2f11afc1bcd8", "text": "A Asia runner running in the street "} +{"id": "6002848", "video_name": "b1f61905-331d-5170-af10-70f8ad6dc3ff", "text": "Flash floods are flooding villages, storms, heavy rains "} +{"id": "8003363", "video_name": "65ae1625-ebdc-57b2-8c3c-621644e2d93d", "text": "a cute little rabbit sleeping in a carrot farm "} +{"id": "4002727", "video_name": "ce69ba8a-f85f-5101-b113-6df36cc48863", "text": "view down to the path in the field, moving forward, night, dark. "} +{"id": "8003681", "video_name": "70608a34-a3de-5018-8b9e-ca466e9e12c9", "text": "superman in inida with realistic face details "} +{"id": "1004026", "video_name": "4aae8773-cd7d-55bf-b271-7eb20820b5cd", "text": "dutch people, cycling, carrot, snow, without hats, 200000000000cm tall people, tiny houses "} +{"id": "0003891", "video_name": "45525b2e-f954-5353-901c-eff04f460b37", "text": "coworking space with developers programming zoom in "} +{"id": "0006010", "video_name": "24f684f2-de66-52e2-983b-d8275793d057", "text": "singing in front of a television "} +{"id": "1004031", "video_name": "4abf0e23-a23d-5e48-b723-81cee4a44cfb", "text": "old friends playing darts at a saloon bar "} +{"id": "2003807", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "generation of a cartoon about a beaver, cinematic light "} +{"id": "1005172", "video_name": "5f2ecc6e-1ee8-50f2-91d2-ca8329192a6b", "text": "cinematic. \nschools in low income areas "} +{"id": "6003397", "video_name": "98bc56e4-20e8-5d2a-bb31-0b1e201282b9", "text": "vaporwave cowboy standing outside a gas station drinking beer "} +{"id": "3004578", "video_name": "0e32f1f2-d614-58dc-a6ef-7f2c12e18592", "text": "Tenali Ramakrishna was born in Thumuluru in the southern part of India. Legend has it that although he did not receive any formal education, he became a great poet because of Ma (goddess) Kali\u2019s blessings. Here is the interesting story behind it.8k ultra hd video in Disney "} +{"id": "4003139", "video_name": "81060c52-3872-5024-8907-465209bc6c23", "text": "a cat is lurking in the night "} +{"id": "7002135", "video_name": "cf43879f-9943-56b4-a607-cadb87415c3d", "text": "crowded indian market, sunny day, comic style "} +{"id": "7004172", "video_name": "bca86b14-db07-589d-909c-0fe353881f91", "text": "A boy runing on the ground "} +{"id": "3004193", "video_name": "6149de96-65b7-52e2-bb69-42731d3e2c14", "text": "A realistic man walking alone, no running, walking, with a large hourglass behind him, the sand in the hourglass runs out. the man is a realistic man and the video must be 5 seconds long "} +{"id": "8003935", "video_name": "03edc605-f4c4-5b66-9cb2-f59fa6e7c565", "text": "cars crash in the street,Realistic comics,mystery "} +{"id": "2005258", "video_name": "47ff9ec6-6c1a-5767-a647-0305d13ee939", "text": "woman in pink dress carrying a baby "} +{"id": "6003390", "video_name": "412bc6af-6bc4-55b3-b7d2-3746adfca022", "text": "The golden Buddha light shines radioactively "} +{"id": "2006768", "video_name": "99e1cd5b-437f-58b5-ac33-4992ac259aec", "text": "slots machine with money and drugs "} +{"id": "3006794", "video_name": "a68ac731-d7e6-56c0-bd85-53b63e8611a1", "text": "hair is dancing and clouds are timelapse "} +{"id": "0003986", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "generate a photo of distruction of dinosaurs from earth due to asteriod "} +{"id": "3004533", "video_name": "33b3f2f6-0b05-5481-bb04-59b157e13c93", "text": "dark knight eating a large roasted boar, the way Obelix eats a roasted Boar. "} +{"id": "3003063", "video_name": "01d8a0f3-63ab-5ee7-9f00-a8d159536c18", "text": "nature in city of future in romania "} +{"id": "3004076", "video_name": "b31df3bf-693f-5571-850e-5ce33aab9f6d", "text": "a digital scale, cinematic high resulution video , and turn around the scale "} +{"id": "3003414", "video_name": "7e7a4f8d-7740-51e4-ab92-823d5590ba82", "text": "alien attack, people running, big alien missiles blowing up the earth, total earth annihilation, scary, terrifying, beautiful explosions, end of the world threat, invasion, spaceships everywhere, spaceships duplicating, duplicating aliens, aliens scary smile, motion 3 "} +{"id": "0006750", "video_name": "3259cc45-5c34-5d60-a91e-5f96033cc5d5", "text": "a shadowy figure free falls from the sky "} +{"id": "7002438", "video_name": "48aa04cf-930a-5cf1-aa86-ae7f85e8c375", "text": "A royal wedding ceremony background with all royal guests cheering. "} +{"id": "8003098", "video_name": "b57be8a5-68e1-5e64-89af-ed49fb906cbe", "text": "two Chinese 6 years old girls are exploring in mountain "} +{"id": "8002998", "video_name": "a75fbc3f-614b-551c-b210-010c87dc567f", "text": "The coin symbolizes their collective victory, illustrating the power of teamwork and smart planning over speed alone.3D "} +{"id": "6004439", "video_name": "69966a87-2bf5-5bf3-a673-35f3213cade7", "text": "12 cameras line up in a horse farm in 1878 "} +{"id": "1003768", "video_name": "456645fb-a702-59f6-b452-7e19d5cb3d7e", "text": "Long video of Superman riding a unicycle on a New York street "} +{"id": "2006595", "video_name": "ab2bee7a-a5eb-51c0-8c39-dd6c31188b8d", "text": "a Chinese male scientist is dating with an American girl in MIT. "} +{"id": "0006542", "video_name": "2e6dacd4-1031-5259-9485-40fa25dfb6f9", "text": "A bag of money fell on the magician "} +{"id": "1005910", "video_name": "6c9d848f-aaf9-5b5d-ac80-a024a9eaf614", "text": "world map spinning with aeroplane flying around "} +{"id": "4003393", "video_name": "96c92d46-c7d6-5103-9a12-dbce6f386a39", "text": "The child slides down the snowy slope, excitedly, as the woman watches with satisfaction "} +{"id": "4002143", "video_name": "e2d9e2aa-09f4-5048-96c3-fe9fbfd0f5e7", "text": "thunder around katana, moving hair, shocewave, dramatic, 4k, cinematic, action, blue light flickering Message: 1 Attachment "} +{"id": "3004104", "video_name": "936c10ef-1331-5ef2-81bb-287a67f76615", "text": "An futuristic airplane flying in an blue sky cinematic "} +{"id": "2007958", "video_name": "30895624-9083-5cd6-9b73-c406d41daa1b", "text": "Visual of a person sleeping peacefully in bed. The scene transitions into their dream world, where they\u2019re flying over a stunning landscape, arms stretched out like a superhero. "} +{"id": "8002874", "video_name": "6b13af5f-482c-52fd-ac95-77c7c6e16a52", "text": "new born baby in a big leaf at a river side, forest, fog. "} +{"id": "2006628", "video_name": "25210a35-22f0-5062-9925-d0e903ecade0", "text": "formula one race car driver putting on his helmet at the race track "} +{"id": "0004118", "video_name": "0381770a-127a-5f97-91be-59911c4a62eb", "text": "7 second video of a woman knee deep in the ocean looking out waves lapping gently, sun on horizon, island in the distance, the camera pans behind her from her right to left "} +{"id": "1006809", "video_name": "7ca97079-1a9c-5ce2-9097-9ef522273277", "text": "A dog chasing a little kid who is running after a ball "} +{"id": "4002847", "video_name": "bff02b40-6885-54dd-a3af-0ea4689de73b", "text": "One of them, a wolf named Daruka, after going some distance, heard the crying sound of a child from the bushes cartoon style "} +{"id": "3004662", "video_name": "f293c75d-5c6a-5bd7-b4e2-9c3446f0a4d4", "text": "animatronic robot abandoned playing putt putt golf in florida "} +{"id": "4004440", "video_name": "8f831d23-f63f-5034-ba4d-b5f643f43441", "text": "Woman receiving a rose and blushing with a smile. "} +{"id": "7004859", "video_name": "f7b9e98e-f8ff-5cd6-8150-554db55472bb", "text": "Man in suit on the street at night "} +{"id": "1005681", "video_name": "6864198b-0293-566d-bbd5-2782872cc1b8", "text": "a hungry looking old man with a purple funny hat split into 6 different images, kodak portait 800 "} +{"id": "7004927", "video_name": "f3ee455e-c30c-5a9f-b7e3-00eb7c4aaede", "text": "Cinderella lived with her stepmother and two stepsisters who always tormented her "} +{"id": "8002310", "video_name": "b23b4e3e-86a2-55c4-bffe-8d06d7f2ba5a", "text": "a tour in the Ritz Paris hotel with beautiful hall, rooms and breakfast "} +{"id": "3004710", "video_name": "ea18bbdd-a2e0-5fff-a6cf-6e222bc14221", "text": "a mom programming like a champion "} +{"id": "4002471", "video_name": "8f791c41-f10c-5c43-a77e-24b9d37f4701", "text": "Lots of shooting stars in the sky at night, fireworks, the back of a family of three standing hand in hand on the beach "} +{"id": "4004429", "video_name": "ebf4e48b-c4ca-535d-bc6d-5b017f269458", "text": "CARTOON Old MacDonald had a farm, so grand, With rolling fields and animals planned. "} +{"id": "3006541", "video_name": "c3d0c161-23fb-5086-9261-1131fc305ba9", "text": "Wild West scene with bale of straw passing through "} +{"id": "7004988", "video_name": "b5920dfc-28ae-5a79-b105-9fd974209839", "text": "close up shot from above, yellow lemons, green lime "} +{"id": "7004580", "video_name": "6cfb0b10-df39-5092-a41a-edb1880b4c12", "text": "a man riding a bike on the road, look very happy, backround is taipei city "} +{"id": "8001336", "video_name": "c4bcc2d3-6013-59de-a826-0d729ac43916", "text": "1970 Arthouse film of a floating hand, grainy film, the hand is moving towards the camera "} +{"id": "4003620", "video_name": "a2062045-45cc-5270-ab41-222d1e52081d", "text": "the characters of Moon, Lightning and Aurora, continue towards the Mountain of Sparkles. Each step brings them closer to their destination, Message: 1 Attachment "} +{"id": "8001149", "video_name": "33e1b7f0-4a41-5549-969b-cbd2ff1f387e", "text": "a man and a woman in the supermarket talking to different carts "} +{"id": "2004846", "video_name": "31e32d5a-a466-5be3-bf4e-d645337208cb", "text": "a digital grid of dots forming the lines of a football field, the morphing into the lines of a soccer field, then morphing into the lines of a basketball court "} +{"id": "8002019", "video_name": "20232830-b908-52c3-b017-3407b6cca92b", "text": "I was little I always enjoyed trying new things and making the most out of it "} +{"id": "5001968", "video_name": "377bb146-66ac-5762-9a0f-ab536e0ce8f4", "text": "animate girl on a beach chilling, hot weather "} +{"id": "6002927", "video_name": "bc5855f1-25b2-5b71-b65a-118690dabcb6", "text": "beauty girl in the beach film camera pro with lens 50 mm "} +{"id": "0004772", "video_name": "0efc2d9e-e910-5d29-9551-2d1f026221e9", "text": "Felix felt so sad and lost that he had no one to take care of him or guide him in this huge forest. He started wandering in search of food and shelter, and every day he faced many challenges and dangers. "} +{"id": "2006821", "video_name": "cc943639-b1fe-5482-954b-689d2900cd08", "text": "Al Hadi written using arabic calligraphy and imagery representing guidance "} +{"id": "5001677", "video_name": "16e8bf3d-0766-5633-8616-fd021c4abafb", "text": "soccer player jumping out of a TV "} +{"id": "1005328", "video_name": "61e86d7d-179c-5ff2-8855-530b9b95ed39", "text": "yogi meditates under a giant spreading tree "} +{"id": "0006188", "video_name": "27ee0fe3-2d4f-5213-ae00-1d1fcf23a372", "text": "earthquake braking building in thi city "} +{"id": "3005218", "video_name": "6d664d51-ca73-5de0-a256-7b991cea0837", "text": "golden retriever playing with the ball "} +{"id": "8003573", "video_name": "d3bddce0-92d7-578f-bef6-8af7bc95f935", "text": "a small circle becoming bigger and then millions of other circles appearing to join it "} +{"id": "0006497", "video_name": "2d84715a-3580-5c3b-afcf-00a2db6de69a", "text": "make a video there man coding text fast "} +{"id": "8002527", "video_name": "c79e0820-3eef-5fb3-a973-300767863b0f", "text": "travel faster than light in space "} +{"id": "8001315", "video_name": "ced3ac2d-d84c-52dd-8793-a11ae363f74d", "text": "A Rav4 that looks like the Night Rider car "} +{"id": "3004367", "video_name": "36da3f57-3b7f-5507-80cc-cdc85ea1640a", "text": "sports car drifting on a busy road in a city dotted with light "} +{"id": "2003127", "video_name": "fa0b7457-5131-52cc-a780-3e7067eff6ca", "text": "A white tiger is running across the grassland, hunting a gazelle under the blazing sun. "} +{"id": "1003010", "video_name": "37517ca3-cf99-57a0-bc80-fd6e92d0c4ee", "text": "drone flight shot over Frankfurt. 4K, 9:16, 20 seconds "} +{"id": "5001990", "video_name": "9bfe03e7-893e-5528-b439-79f8f546dcd1", "text": "Visualize a night sky where stars take the form of beliefs held by the person. Each star twinkles with a different intensity, representing the significance of that belief in shaping their identity "} +{"id": "8001607", "video_name": "153a3331-eb47-5bc7-9de9-8b5d846d5991", "text": "a white girl wear lace standing at the colony looking at the Eiffel Tower "} +{"id": "3003546", "video_name": "170271b3-bb41-5016-9573-124d899a9148", "text": "Create a vivid and dynamic 3D scene featuring a spherical lottery ball with seven striking colors bouncing energetically inside a gleaming chrome container. Use your imagination to bring this captivating and visually appealing scene to life "} +{"id": "0004087", "video_name": "02fcd7d5-f641-53be-aa37-a763374e459b", "text": "steven meisel and viviane sassen for vogue italia, long hair young asian swimsuit model with floor length hair, Pantene hair, windblown, mirror lake, brutalism, futurism, future shock, high fashion creative conceptual photography, colorized by Felipe Pantone "} +{"id": "4003694", "video_name": "9e172f71-cd8c-5dda-a494-17b52c1509b8", "text": "very detailed, money showrering over man "} +{"id": "7003914", "video_name": "68aff814-a7d5-58d6-aad1-453be8713fae", "text": "a narrow passing with steap rocks, crumbly. you can see in the distance a high peak from where lava is flowing down and it spreads in many rivers of lava and flames on the ground "} +{"id": "0004254", "video_name": "05da3e74-4a29-5897-8c65-94146c594c7d", "text": "heaven, a lot of clouds and from heaven a young blond man, an angel with wings looks down on the earth, she is dressed in a business suit, on a night city with many lights and cars, art by Haoliners Animation League anime studio, 32k resolution, best quality "} +{"id": "8001073", "video_name": "a373548b-1852-52ca-8374-1811244e17b3", "text": "inside of indigenous wigwam at night. fire flicker "} +{"id": "7004400", "video_name": "8cdb9031-a778-5cca-8bbb-f881b220a348", "text": "Cosmic turtle swimming through space around planets and start "} +{"id": "3005264", "video_name": "d463ea57-9480-534d-8b45-d3b2b1948005", "text": "The rainbow disappears and the clouds disperse "} +{"id": "7002893", "video_name": "1109b23c-977c-50f8-ad51-e5cd32349c31", "text": "A black cat walking in the streets of Tokyo "} +{"id": "6003514", "video_name": "fcbbf5f6-87ab-5db6-b524-3303b006bc51", "text": "create a satisfying video infinite loop of a gemoetric shape "} +{"id": "7002299", "video_name": "1543189c-e96d-598a-b9c5-24f16bfab33a", "text": "Albert Einstein is playing as a Santa Claus delivering gifts to pikas "} +{"id": "3005451", "video_name": "4bd02058-496c-5f40-8ca0-f8468e9be9af", "text": "secret mafia members hiding in sewers "} +{"id": "3005101", "video_name": "9381b26e-8bc3-5581-bdb7-4f806e10fdc2", "text": "Loading Animated Gif for AI Chatbot "} +{"id": "0003477", "video_name": "3e53210b-d38b-5be6-9390-4416ba25156f", "text": "man tearing advertising poster on the street "} +{"id": "2003808", "video_name": "3aa4ff62-f9c8-5391-9c39-3bad14a04ecd", "text": "A rotating DNA helix on a background of various healthy foods like fruits, vegetables, nuts, and grains. "} +{"id": "2005163", "video_name": "c92e836c-31aa-5280-9da6-d435b5b7808b", "text": "woman showing passion while achieving target "} +{"id": "0005281", "video_name": "17bf29a1-0fb1-5866-8a75-109d7ffc3780", "text": "footage of a realistic police FPS similary to Ready or Not on steam fix the spelling "} +{"id": "2006120", "video_name": "67441d19-bf39-5548-a759-c64ef954a085", "text": "The battle of the Crusaders is on "} +{"id": "4002659", "video_name": "2f81ffed-1cdc-56b9-bda5-9130f72602e9", "text": "a stacked tvs and each showing different patterns and glitches "} +{"id": "2006223", "video_name": "8ff3ad5e-02d4-5ae9-8a62-aca0d935f209", "text": "1980s reggae puppets Message: 1 Attachment "} +{"id": "8001224", "video_name": "74477039-1638-5a6e-b451-df087bcc8401", "text": "A portrait of Minnie in the forest, looking both curious and anxious.Animated cartoon "} +{"id": "4002683", "video_name": "cc95e611-b3f0-5f6e-bd4b-1552e4b96f10", "text": "closeup of a hand opening a broken door, darkblue background, mist "} +{"id": "2006886", "video_name": "3ec61e84-2324-5e88-b95f-0fed810188d5", "text": "A girl is chasing after a bus. On the bus sits a boy she likes. The boy is listening to music and faintly realizes that someone is calling his name "} +{"id": "2006484", "video_name": "aea596af-f404-525e-a73c-698cd3963117", "text": "sexy lady with sexy body and gold hair and beautiful eyes "} +{"id": "1005957", "video_name": "6d706fc0-0ada-5c58-99b6-e6ba93dd97b6", "text": "pixar character style cat face, expression goes from sad to happy "} +{"id": "0006078", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "One lion ride a super bike with elephant "} +{"id": "7004016", "video_name": "9296b19f-350b-59ea-ac14-3927b2557755", "text": "man boarding AMTRAK train and heading to his seat, pixar style "} +{"id": "3006948", "video_name": "0888e418-192e-5cb3-83ed-8218721b58a4", "text": "a cute queen girl sitting with her wolf pet and watching her palace ,she wears a blue dress ,long pony hair , high detail ,bilinear ,blur the background,focus motion blur "} +{"id": "0005136", "video_name": "157628d3-b9ab-55c9-bb7c-900cc8593d16", "text": "origin of atomic particles emerging from a singular light in pitch darkness as the camera zooms into it the particles dance around "} +{"id": "0005912", "video_name": "23277ddb-1e22-5344-a4bd-6176f26fc6f8", "text": ":Animation of two silhouettes facing challenges such as work and family life "} +{"id": "3003533", "video_name": "8a34e10d-71d4-5e31-82a6-302127f68998", "text": "two tweens Cowboys wearing a cowboy hats and cowboy boots dancing in a parking lot in las vegas "} +{"id": "3004870", "video_name": "4cabf6fc-b7bd-561d-8a91-c19fedd02e3a", "text": "The Leonid meteor shower, ar 16:9 "} +{"id": "2006830", "video_name": "2dc8fc58-f054-5ebb-96f6-c73929b77d7f", "text": "millions of eyes blinking on a camera "} +{"id": "8002898", "video_name": "e30d3634-fe02-522f-8496-3e68c6281795", "text": "A drop of condensation rolling down a frosty mug of beer "} +{"id": "1005426", "video_name": "63a8d69d-b7bf-5646-a351-4826cf8ddbe4", "text": "beautiful girl writing diary, a lantern hanging behind, window open with a beuatiful scene of red and grey clouds, water, homes, trees, cinematic lighting, "} +{"id": "2005575", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "Wounded and bleeding Tony Stark see Peter Parker holding his daughter and smile "} +{"id": "6003442", "video_name": "550c338a-ed22-55a3-8658-a0696fcbb73e", "text": "an ancient chinese temple in dark, rainy night "} +{"id": "6002080", "video_name": "5f1ff164-3dc3-5a1d-84ec-fd6c0b400e57", "text": "In the movie footage, I saw a huge spider crouching on the wall. "} +{"id": "4004336", "video_name": "0e55f714-9a6d-5989-aa8e-1e6f84b22735", "text": "crowd in an arena applauding and shouting during 500 B.C. rome "} +{"id": "1003571", "video_name": "41e44175-0284-5cde-86d4-2b56ee58a2a6", "text": "a river flowing in a valley with the clouded new moon "} +{"id": "6002730", "video_name": "fe87c5e0-795d-5f10-9c46-43647330c9f1", "text": "hyperrealistic slow motion video of red colors drops are dissolving In water, cinematic, 8k, high quality, "} +{"id": "6002715", "video_name": "1b20cf28-d127-5e2b-a744-a47768a29c43", "text": "new born baby crying in lap of her mother "} +{"id": "1003483", "video_name": "4087a0de-b47d-5307-84a8-6c593c295b10", "text": "ww2 fighter planes flying over a bombed out city, old style film "} +{"id": "3004976", "video_name": "b7f5eebe-23ee-5574-ac67-a0384537c8aa", "text": "We are the creators. We create passion. We create the dream. Now we create the opportunity. We give back the power of creation. We create destiny. Join Each Other "} +{"id": "7002735", "video_name": "fbe43842-e062-54ca-844a-80bd3e6ca77d", "text": "eagle try to hunt the mouse "} +{"id": "8002616", "video_name": "4973c915-ccf1-5aea-98cf-a0ec11a69fca", "text": "A divine light illuminates the scene. Gradually, the colors settle, revealing a breathtaking garden with vibrant flowers, cascading waterfalls, and magnificent trees. The atmosphere is filled with an aura of magic and wonder. "} +{"id": "0003150", "video_name": "3817a513-3b79-57da-b3f2-df4b7d40b279", "text": "the skull chases the man and the man runs through the barriers "} +{"id": "3004881", "video_name": "8a6b1bfb-584f-58b0-a737-284f81484d1a", "text": "angel of the underworld falling from the sky with black clothes and purple wings at night with beautiful scenery in the background "} +{"id": "1004097", "video_name": "4bcfb448-e30c-5aa5-8ad9-76ef490f79ad", "text": "trocar a roupa Message: 1 Attachment "} +{"id": "6003987", "video_name": "d183d17b-a3c5-548d-8d2f-6100e466071c", "text": "Sequence of the tragic events of November 18, including the assassination of Congressman Ryan. "} +{"id": "7002414", "video_name": "faf4b2d0-4336-54e3-9ce4-78fec3557226", "text": "a fire fox running through the forest at night, Disney animation "} +{"id": "1004794", "video_name": "58a17a1f-f5e5-537b-8394-61ab15ec7cc9", "text": "this is the sound of maidens mourning "} +{"id": "2007004", "video_name": "6c0bffbb-b53d-50c2-83a8-a023be33f28c", "text": "the entire world of Minecraft in a single video "} +{"id": "2005571", "video_name": "52807dde-88f1-5483-83d7-e7402f53d759", "text": "a Forrest with Sakura trees. Message: hallo Elainy : ) (Font: COMICS) "} +{"id": "8003856", "video_name": "a7fcc6d0-8622-5f40-86a0-1ff625c8a4d5", "text": "A spinning galaxy rotating in space. Viewed from far away. Moving stars, planets, comets, and black holes in the background. "} +{"id": "8003195", "video_name": "4b06b505-a146-5e37-b606-7b1b890527f6", "text": "a young lady who is thinking how to decorate her living room "} +{"id": "7003136", "video_name": "5b022ced-75f6-5f85-af01-62080e067f22", "text": "Takashi Murakami animation style Zootopia black panther walking out the front door of his house "} +{"id": "7003661", "video_name": "c1920289-0989-5860-81d9-e2cb7b57ced7", "text": "Krishna with sudarshana chakra in his hand watching me with thunder striking behind "} +{"id": "8003228", "video_name": "bffd2df7-dd37-5073-b6d2-2504fd6a6cd5", "text": "man sitting in chair looking out window. Lots of skyscrapers and sun is setting "} +{"id": "8001109", "video_name": "b44c3150-6404-572d-90da-f920b3e8cdbc", "text": "man sweating from neck. Hot summer, wearing hat. "} +{"id": "3003837", "video_name": "f2fa038e-796c-5e72-af7c-95843e2c89fb", "text": "1 The scenery evaporates, revealing a tree "} +{"id": "1006580", "video_name": "78886524-8714-5227-b3fb-d95a93c752c8", "text": "fight between young girl and a old man in garden "} +{"id": "8003833", "video_name": "b6ce926e-8a33-5c77-b309-9ff8bdd59e53", "text": "green snake in front of chickens and rabbits in the garden at the edge of the village "} +{"id": "2005250", "video_name": "766f6fde-f2bb-5e1b-a03e-4797a4cff564", "text": "a woman walk around in 1940s silent horror, film grain, ambient, eerie, directed by tim burton "} +{"id": "0006546", "video_name": "2e757909-8ee5-592c-841b-1af74d3e6632", "text": "manh flags mooving with the wind "} +{"id": "3004792", "video_name": "0e9efd5d-886f-5539-ae44-911109df70d0", "text": "6. Explore the profound consequences and reflections on societal dynamics. "} +{"id": "7004128", "video_name": "fc683308-1853-5f2c-9151-62d596dbcb2e", "text": "a samurai in blue and gold robes wandering through a cherry blossom forest, beautiful claymation, Tim Burton style, stop motion animation "} +{"id": "7003446", "video_name": "98bf8bc9-ae51-5fcc-8f39-503749f79a55", "text": "Death: Maharana Pratap died on January 19, 1597, and was succeeded by his son, Amar Singh I "} +{"id": "0003350", "video_name": "3c059dc0-dd79-5b62-a5c3-3a456d86a5be", "text": "3d image Elegance in Dance: Cinderella, with her glowing glass slippers, promised to dance with grace and elegance at grand balls, creating magical moments with each twirl. gs 20 motion 4 "} +{"id": "0004186", "video_name": "04bf1a3f-d992-5482-9164-57b18413a39e", "text": "a kitten dancing on a hand , 4k, realistic "} +{"id": "8003410", "video_name": "d170dbef-bcf7-523a-a498-80b79470b63e", "text": "trying to pull the anchor but he can\u2019t "} +{"id": "7002973", "video_name": "66f9abb9-e7b2-5ba9-869b-de19d679bc4f", "text": "Cristina Kirchner and Vladimir Putin falling in love "} +{"id": "3006376", "video_name": "28cd64da-1e1f-57bc-8fbc-4846ccb608f3", "text": "A butterfly and a hummingbird are picking honey on a yellow flower. "} +{"id": "3003891", "video_name": "1ad0d70f-9393-538a-93d9-13654609c1cc", "text": "zoom in on the image, shadow of a woman appearing on the wall, 4k, expressionist. "} +{"id": "3005986", "video_name": "482218ab-b3f7-5bbc-9e4e-81fbf012b4cd", "text": "An illustration of a young adult with long, flowing hair sitting in front of a computer in a cozy room filled with books and tech gadgets. The person is deeply focused on coding, as seen by the complex code visible on the computer screen. Next to them is a black cat with striking yellow eyes, sitting on the desk, playfully pawing at the keyboard. The room has soft lighting, creating a warm and inviting atmosphere that speaks of creativity and comfort "} +{"id": "3005940", "video_name": "b735b40f-8eb9-55b8-968b-5590949baa86", "text": "set in the beach, tornado pulling water all up, draining all of water away from the beach. "} +{"id": "4004692", "video_name": "b2eb38ca-a191-58c8-ad8d-4f5dd9b94bf9", "text": "Alien cemetery in another planet, swampy fog with eerie tombs, bioluminescent octopuses "} +{"id": "3006517", "video_name": "e120e328-8077-59e6-8493-7c6c78868de3", "text": "The currency of human transactions ranges from shells to gold; from paper currency to digital currency to virtual currency "} +{"id": "8001252", "video_name": "206ec095-d0a5-5414-912f-3711e34f945a", "text": "in the middle of the universe. realistic. particles, Stars, Planets, comets "} +{"id": "2007497", "video_name": "969246f9-c861-5bf5-aff7-a249c0c9d6b6", "text": "a businessman looking as if he is lost "} +{"id": "1004747", "video_name": "57e0145b-3aea-5ddd-ad5d-c234de45287c", "text": "house moving slow round Message: 1 Attachment "} +{"id": "6003034", "video_name": "c9504fbd-83ed-5102-a116-111be048f802", "text": "Purple flowers in a mysterious forest, the wind moving flowers "} +{"id": "4002408", "video_name": "41645790-2232-5d99-b551-aed4f3f3cc51", "text": "Good shape of the product Message: 1 Attachment "} +{"id": "3004885", "video_name": "42772558-3bdf-5dfb-b5ae-737368f29eaa", "text": "people fighting over cheeseburgers in a bathroom "} +{"id": "0003547", "video_name": "3f493c6c-03c0-5097-b387-e10764f8dc8e", "text": "Draw an illustration in the style of the video game Cuphead. Dinosaurs are riding in a truck along the road, laughing. There are three diplodocus in the back, and a tyrannosaurus is driving. Behind the sunset, mountains and trees "} +{"id": "2006206", "video_name": "b379dae1-cc33-5c7c-ab7f-4e0c57be4a79", "text": "the combination of several natural vitamins into one vial to create a powerhouse supplement "} +{"id": "2004947", "video_name": "496808ec-51dd-56f5-93a8-297f100c75af", "text": "A girl holding a green tablet "} +{"id": "0006878", "video_name": "349dfeea-7497-5e4c-9c90-7e30a53cc9c6", "text": "Opening shot beautiful greenary indian village with sun rising "} +{"id": "5001453", "video_name": "443ab5ad-474c-51eb-a020-35ac1defa2cf", "text": "The laughter and joy of the animals filled the forest with magic, "} +{"id": "1004455", "video_name": "526fc3fa-e56b-5947-87e5-d96459c24dc0", "text": "small humanoid robot walking at night down an empty street in a post apocalyptic setting "} +{"id": "7002255", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "But amidst the daily grind, her heart yearned for something more. "} +{"id": "0005292", "video_name": "17f31371-81c2-573b-89b8-2a30dbfd157c", "text": "Along the way, she encountered fantastical beings like wise elves, mischievous sprites, and noble dragons. cinematic 4k "} +{"id": "7003386", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "The wipers move faster and faster, as if to cheer up the driver and encourage them to move forward bravely. The scenery outside the car window is constantly changing under the waving of the windshield wipers. Sometimes it is dense forests, sometimes it is magnificent mountains, and sometimes it is quiet countryside. Every scene is like a picture scroll, making people forget to leave. "} +{"id": "1004222", "video_name": "4e1f7c9f-9d87-5175-be14-809ced79a041", "text": "Pan across a group of medieval hunter standing together "} +{"id": "7002090", "video_name": "0fc62295-db4e-5a95-840a-beed88dd0ea3", "text": "Show Twinkle looking up at a bright Christmas star in the night sky, eyes wide with wonder. "} +{"id": "6003020", "video_name": "ef699f76-7512-5431-921a-b3c8dc119d25", "text": "Communities actively participated in preventive measures, "} +{"id": "1006102", "video_name": "6fece653-b94c-59a8-9512-cef96ee77ce4", "text": "3 friend open a horror door animation "} +{"id": "2004142", "video_name": "97fd2002-a7d0-59d5-8ba0-81cf77cda1a3", "text": "realistic moving waterfall in the woods, video in youtube standar 16:9 video dimension "} +{"id": "0006373", "video_name": "2b577976-4333-599f-b18a-f41da470397a", "text": "anime character using phone with anime mobile app "} +{"id": "6002896", "video_name": "25ac5f4e-5aaf-5778-92e0-e7fb8f0dd2ee", "text": "an endless corridor with a neon door at the end "} +{"id": "2003330", "video_name": "8f3acd69-9e37-509f-a1d9-48b586ff067f", "text": "Picture a moonlit village with shadows stretching across the cobblestone streets as the whispering willow looms in the distance. "} +{"id": "4003881", "video_name": "f45eb036-f115-5578-85bf-63876df0773b", "text": "an indian resturant on the moon land "} +{"id": "0003590", "video_name": "40122760-2f0e-5785-a323-d1063f30d8ab", "text": "Princess Iris painting a crystal orange, with the hues reflecting and scattering in the cave. "} +{"id": "3003315", "video_name": "7eec9325-a746-5144-b8f1-0f69e28eabd5", "text": "man with skin made of cheese "} +{"id": "7003650", "video_name": "085d8066-da54-5613-96b0-e0db7feab9a2", "text": "a moving sun in a clear blue sky with lightining. A whimsical video. inspired by The color of pomegranates movie "} +{"id": "4002620", "video_name": "464c90d3-c536-539d-a2bb-08f375cf4d0c", "text": "jack ma with elon musk in shanghai "} +{"id": "1005060", "video_name": "5d83591f-0d92-5baf-ba7c-c545c2a78983", "text": "In the plate, four hundred dinars were lying on one side and half a dinar on the other side. "} +{"id": "3004774", "video_name": "bae952e5-d4b5-519c-b76a-7c53644cd916", "text": "many girls fly in the mountains through the air "} +{"id": "2005000", "video_name": "e5a6abd6-692c-5add-826f-f9b583117bd5", "text": "drone flight over a purple forest, 4K "} +{"id": "3003963", "video_name": "b269a020-d15c-5e03-9584-3dab6e2375ee", "text": "jumping dolphins into the water 3rd high quality image "} +{"id": "4003640", "video_name": "79beabca-1ed8-50d2-9c4a-fbf7d737b562", "text": "the baby happily pouring sand Message: 1 Attachment "} +{"id": "3003996", "video_name": "34eec9f5-01fe-5827-a737-6968db73be3d", "text": "mg turbo car car running on the road "} +{"id": "4002968", "video_name": "92c8a6f0-6883-5dc9-a454-4be7605600ce", "text": "food falling from the sky in paris "} +{"id": "3004414", "video_name": "409c1b9f-3703-5839-99e7-9f98024fdbdd", "text": "An anime girl with silver hair is talking "} +{"id": "0005643", "video_name": "1e921d6b-35d8-5b34-82f8-6c2e2fcf89d3", "text": "Generate an animated scene where a cute star named Twinkle leaves the night sky and descends to a magical meadow on Earth. Show Twinkle looking curious and excited as they explore the colorful surroundings "} +{"id": "4002779", "video_name": "a0afce0e-2d0f-5a00-a1b1-2d6bd7a2b9ab", "text": "futuristic Burning Man Led Light Dance Festival 2030 , photorealistic, creepy "} +{"id": "6003430", "video_name": "3318043a-8f98-59fe-8c78-f9b72a9d6481", "text": "animated persian kittens in halloween costumes dancing "} +{"id": "4002477", "video_name": "224ba8b3-6d17-5370-82e7-dc4b65c7ae77", "text": "a boy shakes his hand several times and says no "} +{"id": "8001825", "video_name": "138a5b53-b38d-5e96-91d0-b42b3f6051f6", "text": "ceiling fan, one ceiling fan, zido, maxar, fans, fans hals, digital art h 9 6 0, productphoto, scenic full shot, rendering, tall ceiling, bottom angle, h 576, isometric view, wide portrait, h 8 0 0 c 1 0. 0, overhead angle, low ceiling "} +{"id": "8001316", "video_name": "2a78a5f0-219e-5707-817d-8276a30dbad8", "text": "olaf scholz cant remember Message: I (Font: MODERN) "} +{"id": "6004069", "video_name": "cf752166-eaf1-5ac6-9a15-a9b698d955d5", "text": "a man in a white suit driving a customized jeep chasing a bison across the plains "} +{"id": "2004644", "video_name": "2443fe9e-33bb-5771-a5ad-ea98a1d24ca2", "text": "Create a Mexican food scenario with Mexican chili being used, that one wants to eat the food, that releases steam, in a dark setting. "} +{"id": "1003119", "video_name": "3968d42b-c3fb-54ce-b4e0-4a6553b35a56", "text": "Chinese dragon in ink,4k,perfect,high resolution,upward view "} +{"id": "2003291", "video_name": "cde5a8fb-f7e2-54e7-9bc4-39867191b0c9", "text": "girl riding a horse throught the night sky, stars, univers, in the style of moebius "} +{"id": "5001474", "video_name": "e778c98a-1bf8-510b-a5b0-16885183a177", "text": "prompt: 3D Animation, personality: Transition shot: A breathtaking aerial view of the city at night. The camera flies through the cityscape, showcasing its vastness and beauty. The shot creates a sense of awe and wonder "} +{"id": "6003547", "video_name": "61e13b7f-ffbe-50cd-a28c-0019793c91ee", "text": "a person wearing suit, explaining a client, happily "} +{"id": "8003142", "video_name": "1e943fd6-f995-5eb2-a638-2b097095a632", "text": "in style of Beksinski, a grotesque alien, in the style of vibrant pop surrealism, cypherpunk, dino valls, terracotta, kadir nelson, meticulous surrealism, silence, low angle view "} +{"id": "7002493", "video_name": "f14e7837-b78c-5b06-853a-f65abb18260a", "text": "a majestic kangaroo jumping a long distance, realistic look. 9:16 "} +{"id": "6004694", "video_name": "9f73ea29-6cfd-5eaf-88bd-00d937268560", "text": "The room is dimly lit, casting long shadows on the walls. "} +{"id": "1003424", "video_name": "3f43c841-f76b-5552-973b-7984e1700fd7", "text": "In a climax of electrifying power, Olivia confronts the monstrous entity, drawing upon the ancestral blood magic and her own indomitable spirit. The fate of Blackwood Manor, and perhaps even the world, hangs in the balance as she faces a terrifying choice: embrace the darkness or sacrifice everything to save the light. "} +{"id": "8002491", "video_name": "633e27d8-86d3-5e9d-9aab-4531fc77ae8d", "text": "A Tyrannosaurus Rex with red hair and a blue hoodie strolls through a valley holding a bucket of popcorn. "} +{"id": "3006083", "video_name": "70a88b64-a494-5d7d-bdf7-45bded2cdb85", "text": "storm from the xmen flying in lightning storm "} +{"id": "1004020", "video_name": "4a8efad6-c2dc-53ad-8eb0-904e1ac63e1d", "text": "One day by the tree, so tall and wide, They danced and pranced, never needing to hide. zebra stripes twirled, giraffe neck did weave, Together they danced from morning to eve. "} +{"id": "6003891", "video_name": "a02369d5-fc50-5b29-b985-1d8cfb5a2f9e", "text": "Panoramic shot of a lavish mansion, Andrew Tate a bald 35 year old mix raced looking out at the cityscape below. "} +{"id": "4004195", "video_name": "eec90ac5-3ac9-5009-ab55-c7c09471e46b", "text": "realistic, portrait, an old man with grey hair, president of us. man in a blue suit reading a book, looking down at the book, slow subtle side to side head movement, in rustic log cabin, in a brown leather chair, next to the fireplace, realistic portrait, half profile view, high quality, halloween decor, fixed camera position, animated flames burning in fireplace, consistent face, 4k, "} +{"id": "0005819", "video_name": "21b5089a-1cb1-5c8e-a6d9-c2c3b5928f1c", "text": "4 neon frogs in an array, blinking and moving sideways, black background "} +{"id": "2007090", "video_name": "f377f6db-9bef-53c3-966b-084f4fbd19f4", "text": "Man looking angry running through desert, moving arms, 8k, high resolution "} +{"id": "8002442", "video_name": "29420bf2-6451-533e-bc7e-5675cc9ea204", "text": "Create a best prompt of a beautiful vintage face less painting of full body of a beautiful girl with rough brown hairs playing piano in an unique position and there is little flowers in the background , beautiful vintage style painting that everyone wants to buy it "} +{"id": "1003817", "video_name": "4677829e-4bbb-5afd-a185-8af32015aade", "text": "alien spaceship landed on earth. the light are show on "} +{"id": "5001000", "video_name": "3b4f9678-307c-59ff-9248-aeaf0403b193", "text": "a dog with white color give birth to two little kid dog "} +{"id": "6003486", "video_name": "7dacb0c9-5c39-531d-97c0-20fd30ba1525", "text": "workers in factory environment with their helmets and jersey, to be used by AIML program to detect if they are working safely with helmets and jersey on, needed as data for a program which identifies if the workers are doing it safely, to be used as Test data "} +{"id": "1004980", "video_name": "5c17843f-c147-5bf8-935b-f3205cf9cc28", "text": "make this man look left and right "} +{"id": "0006589", "video_name": "2f19958b-0ed2-5c88-8e64-b00789a61304", "text": "Focuses on the singer from a low angle, capturing their melancholic expression as they sing with a soft background blur. "} +{"id": "4004275", "video_name": "16aa1dcf-34df-5bd7-a441-c0f026678edd", "text": "a cat eating a human, cat power "} +{"id": "8003867", "video_name": "91484f03-0365-5c4a-985b-cd45b65e56fb", "text": "ice hockey game, a 10 year old boy scoring a goial "} +{"id": "2006197", "video_name": "e48e9c79-b810-5f36-bd5f-0e14a92e892c", "text": "2D cartoon, family of four, mom, dad, grandma and little girl, all eccentric looking, creepy, haunting, in the style of rugrats, in the style of nickelodeon cartoon, nostalgic "} +{"id": "2005198", "video_name": "71bc03cb-c8d4-5027-af85-d6015cdd72d4", "text": "the concept of the Astral Realm and its surreal, otherworldly appearance. "} +{"id": "8001812", "video_name": "a7e5636c-68d9-5809-baf8-ac49e0e956e1", "text": "A boy seeing red moon outside window "} +{"id": "6003637", "video_name": "97a28363-d439-5fe7-852c-ace9f5adba88", "text": "Cut the element in the picture in half so that one goes up and the other goes down "} +{"id": "0004707", "video_name": "0db73d9b-cc79-5b48-8fd2-108f601b119f", "text": "Dan Zivetz talking to Youtube audience "} +{"id": "2007525", "video_name": "ff02a3eb-77f8-542b-8a24-6eee91afa1e1", "text": "Amara was not born into royalty, but her fate would soon intertwine with the destiny of the great Egyptian kingdom. Raised in a modest village along the Nile, Amara displayed an uncanny curiosity for learning and an innate charisma that drew people towards her. Her intelligence and kindness caught the attention of the royal court, and before long, she found herself in the presence of the aging Pharaoh. "} +{"id": "6002043", "video_name": "f1c43935-a30a-55d3-afd1-9e8b1536a8da", "text": "From the road perspective, we see the elements of the VAZ 2107 Lada Zhiguli car entering a drift. Smoke billows from beneath the wheels as the car gracefully spins in place. "} +{"id": "5001269", "video_name": "585b3bf4-d1a1-5164-a5f1-edbc3eea7e7a", "text": "1940s robot news caster, black and white film, 4K, realistic "} +{"id": "4002941", "video_name": "cb9cb4a5-655d-5699-8115-1ed7bcacea33", "text": "A Symphony of Silence, Broken Hearts Playing the Notes of Loss. "} +{"id": "5001047", "video_name": "6ab99131-d496-5f75-80d8-76863196b376", "text": "The mountains of Crete. The towering mountains are undulating and covered with thick trees. The outline of the ridge was clearly visible in the early morning sun. "} +{"id": "7004531", "video_name": "8d817fca-c561-50bb-9888-07ef183d4e5e", "text": "and from between the trees emerged the fearsome silhouette of a Tyrannosaurus rex. Its massive jaws moving and dripped with saliva, and its sharp teeth glistened in the fading light. "} +{"id": "4002816", "video_name": "73b2c861-5e64-5692-9bd1-6c61b6e3ec9d", "text": "Transition to a sequence of animated images that symbolize adversity, such as storm clouds, rough seas, and dark forests. "} +{"id": "0006256", "video_name": "297af6bf-4bc8-5176-a5fe-958abb136228", "text": "Disney like real 3d animation .The Munchkins, the tiny people who lived in this land "} +{"id": "1006609", "video_name": "7927d59d-85cb-5833-a134-ede94ba76513", "text": "discussing about business typing keyboard head shaking "} +{"id": "4004016", "video_name": "f85aa28d-cca6-5dea-8b23-bc7c09af2fa2", "text": "Jesus born and peace on earth "} +{"id": "5001623", "video_name": "18ea7593-c64e-5376-9745-683c20b73e23", "text": "The flag of the Soviet Union "} +{"id": "7002496", "video_name": "9e7aca91-4639-5f0f-a42c-dde9fecfe112", "text": "The others rushed to the edge, but there was no sign of their fallen companion. Panic set in, and they made a frantic attempt to leave the mansion. But the door that had opened so easily before now refused to budge, trapping them inside. hd quality "} +{"id": "7002821", "video_name": "692a97b0-fa10-5594-9653-96fbdee92fd3", "text": "But one day, two Shayers came and looked intently "} +{"id": "6004232", "video_name": "608bcd53-7f96-55ae-9cf7-1e96311b578a", "text": "what a real scary angel looks like "} +{"id": "7002596", "video_name": "1b355592-f2cc-5fe9-af82-497b30569613", "text": "chocolate mess Message: poopower (Font: MODERN) "} +{"id": "1003075", "video_name": "389002fc-1049-5a14-b030-f46fa1e9a731", "text": "halloween ambiencea scary old broken down room with a strange entity inside, 4k "} +{"id": "1004616", "video_name": "55d74c91-4625-5ea2-b770-0e5b221fadd2", "text": "A woman in a white dress and a crown of flowers. "} +{"id": "2004003", "video_name": "2ed39644-a335-5204-a0c0-0728f7e2092a", "text": "A girl is playing a game called Peace Elite "} +{"id": "7004047", "video_name": "22b2e32c-1257-56ef-889e-84edb69e8c60", "text": "movement, penuins marching to war, movement in background "} +{"id": "7003397", "video_name": "846dfdd4-9a81-5763-ab81-a251ea9eee88", "text": "glam rock Barbies playing in a band "} +{"id": "5001587", "video_name": "68a340f5-dab8-5743-b57b-7f66367b5363", "text": "a cute cat boy use his sword to protect his fish "} +{"id": "0003584", "video_name": "3ff157f7-16c6-552c-bd5f-0862fd2ea58e", "text": "silhouetted man stands alone in office building hallway. Fluorescent lights. Film noir. Long hallway. Black and white. Art deco. "} +{"id": "0004523", "video_name": "0a863432-328c-583d-b6f7-097f0e1cb2af", "text": "A girl walks down the corridor with a bear in her hand in an abandoned hospital "} +{"id": "1006197", "video_name": "718bbad7-3291-50e8-aaa5-71cb00c4951b", "text": "yellow submarine surfaces in lake with loch ness monster realistic 4k "} +{"id": "5001763", "video_name": "90fae44f-b1d6-5290-9ac4-d2af0917f0b9", "text": "30 rasta birds, tropical, vibes, music video, zoom, flying to the sunset "} +{"id": "3004723", "video_name": "17ca0b1e-c2b5-54b1-b303-57999ed89196", "text": "overlooking the rogue river in gold beach watching the river terminate into the pacific ocean "} +{"id": "3005945", "video_name": "3582903e-4958-5e23-b187-6c7bdb937d51", "text": "a swarm of ants one after another, diligently working in the meadow ,sunshine,disney animation,4k "} +{"id": "3006242", "video_name": "cc49a69d-42ea-54a1-a6bf-6b641974ed0f", "text": "dynamic, cinematic image of a blond woman elegantly dancing in a vibrant CROWDED nightclub. arriflex; 35mm "} +{"id": "1004604", "video_name": "55bf8e52-723a-5c99-96b1-6a4f8d4b17b8", "text": "onas mekas playing with his camera in walden "} +{"id": "6003714", "video_name": "302171c0-63d2-59b8-8511-9d7b1be272dd", "text": "a video showcasing the following statistcs: 3 projects, 300 people "} +{"id": "6002807", "video_name": "9ab43fdd-f514-5124-b5f6-e5a5db68a87b", "text": "A hobbit wearing a batman costume "} +{"id": "3004454", "video_name": "f1bb0e7e-cd04-50e8-8224-54e8c5513eba", "text": ": A beautiful woman dancing near ocean shore focused head "} +{"id": "4004647", "video_name": "6bd5410a-e44e-5ae7-87f4-cc5168e16827", "text": "Last supper tableau shining with heavenly beauty "} +{"id": "3005870", "video_name": "7c211132-f6dc-580e-a7d7-b6fe489c672d", "text": "Alex reads aloud from the journal, the words echoing in the basement. A blinding light envelops the room. Ar 16:9 "} +{"id": "2005137", "video_name": "3e80b622-0b80-50ab-acb8-b0399c520f93", "text": "photorealistic, bumble bee flying around red flowers. "} +{"id": "1004817", "video_name": "5904c7cb-b71c-58db-8f98-69a32ada2d79", "text": "three boys climbing mountain,with snow cartoon style "} +{"id": "5001165", "video_name": "72de2473-b2fd-5351-963a-fb5d515e6792", "text": "i have no idea what i am doing "} +{"id": "6002201", "video_name": "8258d764-0d46-5986-8d7f-e657fc3c7f96", "text": "how do you see human evolution make a video "} +{"id": "4003672", "video_name": "c5a580ea-0ed2-510e-926f-22e57cb47fd9", "text": "panda in a space suit running to a cabin "} +{"id": "2006500", "video_name": "cf89c1ab-85a5-528d-bd35-79842f6e3bb9", "text": "epic battle in the sky, angels vs. demons, lightning, clouds, fighting, high movement "} +{"id": "2004125", "video_name": "50b259b3-247b-5ed8-9712-aae91959a493", "text": "a ghost flying around an enchanted haunted mansion "} +{"id": "8003446", "video_name": "3372e12e-7f86-5142-8ad5-7b852d54840e", "text": "two boxers in the middle of the ring hitting each other at the same time "} +{"id": "0004187", "video_name": "04c37fff-7acc-515f-bc20-db7b5aae9ae4", "text": "The monkey felt sorry for the fish and decided to help it. "} +{"id": "8002633", "video_name": "381e539e-77c3-5c98-a949-6011732f4991", "text": "tony stark from the avengers animated as a pixar cartoon character "} +{"id": "0006132", "video_name": "27189da6-c368-55a3-b94d-bbd70cbfb091", "text": "The River of Life art expression of Heavenly Serenity "} +{"id": "8001391", "video_name": "aa965176-2d49-5552-b153-01a98a55416f", "text": "Create a vibrant pixel art composition of two capital Q letters, symmetrically arranged with translucent layers, exuding a dazzling chromatic aberration effect. "} +{"id": "1004639", "video_name": "56451b53-716e-5a57-8c8f-cd0afeda37e4", "text": "parrot with aviator glasses on and wings opened, cinematic lightning "} +{"id": "1005355", "video_name": "6282352f-11b2-5de0-8dcd-83a85e967e85", "text": "Mexican food being made in a pan with ingredients all over the place "} +{"id": "8002542", "video_name": "ff6afe05-927c-50d7-8d56-a1dcea23b6e1", "text": "waterfall of liquid chrome, faster animation "} +{"id": "0005451", "video_name": "1afb15be-35f0-5df0-a2ab-dbc15091afb9", "text": "Introduction to Elsa and her kingdom, mentioning her love for magic. "} +{"id": "3004470", "video_name": "4e5a9d18-cb52-5163-804f-7afba919b75a", "text": "a dinasour surfing on the sea "} +{"id": "6004332", "video_name": "5c4ab56b-0251-5c39-a674-ed2b8dabf4f4", "text": "A police car of Ukraine Toyota Prius drives on the highway. "} +{"id": "0006300", "video_name": "2a49bbc7-bc1a-5878-99d6-87fc2c305e38", "text": "an handsome men in hoodie playing game in pc in Japanese animation "} +{"id": "3005730", "video_name": "b1a480b6-9585-56e1-a452-40c320d514be", "text": "Jesus flying up slowly with a glowing light "} +{"id": "2005430", "video_name": "397a13e3-840f-5baf-890c-3bfe71d4b6dd", "text": "An image of a dark, starless night with a moon obscured by heavy clouds. Adam is crying and his tears are falling on the picture of the girl in his hand Eva and Adam standing near each other "} +{"id": "8001572", "video_name": "ef1b5dc0-3a83-582b-9f8a-ddb6fdbbda81", "text": "bubbles move in at a circular motion "} +{"id": "3005385", "video_name": "e022145b-9818-5d6b-966a-24db38dd42a7", "text": "a lonely ghost girl standing in dark "} +{"id": "7003176", "video_name": "a1d2d4ee-ff7e-530b-a7fd-8d1780e5dcbf", "text": "a person made out of electricity "} +{"id": "0003136", "video_name": "37d40fe9-4bc5-5597-807d-53338295d8f9", "text": "a flying dog next to an airliner "} +{"id": "7003462", "video_name": "17d83d43-fe5e-5ee0-b477-417339d85b4b", "text": "a plundered temple during 4th century "} +{"id": "3006173", "video_name": "a71ddf5b-4d5b-51d7-afca-33fc73c00f24", "text": "soul transcending to heaven at the family funeral zoom in on the soul "} +{"id": "1005063", "video_name": "5d8c3322-c107-5e57-8934-5ac7c22aacd7", "text": "A cinematic scene showing a television screen showing a channel with a news anchor reporting news. Cinematic lighting. High resolution in details. 4k "} +{"id": "3006018", "video_name": "1388e648-455d-5abf-883a-b8bbc724c879", "text": "demons flying, red skies, fire below, tentacles "} +{"id": "3005511", "video_name": "7278f1d7-75bc-54dc-a330-e4b591f1e4b1", "text": "episode of Danger Man waking up in bed, opening eyes, sitting up in bed, style of Wes Anderson "} +{"id": "3003314", "video_name": "b4453043-3b04-5444-bdcc-b912df297c51", "text": "espadrills emphasizing cultural significance with history of the philippines background "} +{"id": "8001376", "video_name": "4d07ff9f-f7f1-538d-938c-6981d69675cc", "text": "cartoon character, Bunny, is waking up "} +{"id": "8002820", "video_name": "98eb037b-5de8-5bde-b097-d4d6791cc3f3", "text": "alien plant moving around slowly it glows and looks giant "} +{"id": "1003084", "video_name": "38cb3e1d-9a09-5165-a177-ce22fc9c6ef9", "text": "cloud moving. people in the background walking. "} +{"id": "3004436", "video_name": "8e520624-bcf0-58e4-9407-34eb05a27997", "text": "In the city, there are rigid and stiff buildings lining the streets, with several cars moving along the roads and running busy people, all in black and white. "} +{"id": "7003081", "video_name": "00f84612-1388-5ee1-9f33-b057a98a95b4", "text": "make a boat navigating on these sea in slowmotion under this luminous sky that shines "} +{"id": "0006638", "video_name": "30123110-bcaf-571a-8ba9-6945b7d62779", "text": "Man starts shaking very quickly weirdly in the streets of Bergen "} +{"id": "7004673", "video_name": "9e5b9904-127d-5eeb-b5d4-a4b724b2622b", "text": "The fire behind the photo is chasing after it "} +{"id": "2007232", "video_name": "b4223348-a9b3-55c3-987c-136229d8d711", "text": "cat with a guitar singing on the roof in the moonshine "} +{"id": "7002131", "video_name": "db2beea4-219d-56aa-956f-466d4d21e041", "text": "cyberpunk nature lake with water moving, trees moving with the wind, clouds moving in the sky "} +{"id": "0003186", "video_name": "38f26ce0-1417-5528-8d4c-b9c33daf6fbc", "text": "beautiful magic unreal, meditative look, seated in lotus pose, arms on the side, outer space, HDR, high contrast, galaxies and nebulae in the background "} +{"id": "0003933", "video_name": "001613c9-4632-520b-b8cc-6baef618036a", "text": "a 12 year old boy knocking on the door of a insurance company with his back facing the camera "} +{"id": "5001742", "video_name": "afec90f5-484c-5f13-8f8c-3ac4807b678f", "text": "An actor playing the Mona Lisa is dancing "} +{"id": "0004375", "video_name": "07f36c02-932d-51d8-9f63-0af469b10373", "text": "Sad person walking up a mountain at night "} +{"id": "1004682", "video_name": "56fc93a0-738f-5e71-94ec-3e5bb28d61ca", "text": "a bustling city hall people working "} +{"id": "3004295", "video_name": "2fe0bd88-9064-55c0-ad8e-902b747b027c", "text": "Get Out is a psychological horror film directed by Jordan Peele that addresses social and racial issues in a unique way. The story follows Chris, a young black man, who goes to visit the family of his white girlfriend, Rose. Once there, He notices strange behavior and discovers disturbing secrets related to a sinister medical procedure, a supposed form of immortality. A narrative that explores racial terror in an intense and impactful way. "} +{"id": "0005583", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73 year old Teddy Pendergrass speaking to the camera, YouTube video, interview, shoulder level shot, 2023 "} +{"id": "2006863", "video_name": "7b49843c-79a3-54ca-8f3c-8eb71e657e38", "text": "fantasy cinematic scene I. The style of lord of the rings "} +{"id": "1006185", "video_name": "714d8746-a564-59c3-8f74-7089a9aabd9e", "text": "dinamic activity in all the frames "} +{"id": "8003014", "video_name": "b5b6e803-057b-5623-b6f1-fd840df3a43f", "text": "Beautiful woman looking at camera, points just below camera, shrugs flirtatiously "} +{"id": "6003871", "video_name": "d609917e-0e61-58e5-a68c-e9ec973a08a6", "text": "A surreal landscape where the mountains are made of popcorn and the sky is a sea of popcorn clouds, Ambient Lighting, Intricate Details, Subtle Colors, Extremely Detailed, Ultra Sharp Focus, Particles of Light, Attention to Detail, Grandeur and Awe, Stunning Visual Masterpiece, Double Exposure, 32k, Photorealistic, Strong Outlines, Cinematic Scene, Highest quality "} +{"id": "0004113", "video_name": "036702e3-a4db-5549-87a2-5ce19155fdd9", "text": "Cyberpunk city with the black bladerunner car going on the road Photoreal "} +{"id": "4004839", "video_name": "0b80c79d-205a-5427-8620-37b454440852", "text": "two boys singing reggaeton at the beach "} +{"id": "7003995", "video_name": "f70002f3-2656-59d8-b603-fc27b1b5a0fa", "text": "a warm sunny morning the sun in my city shone brightly into my room and even with the windows closed you could still see almost everything outside my eyes traveled across the room and I smiled at the sight of my beautiful fiance asleep beside me "} +{"id": "7004131", "video_name": "2475dfe2-e2aa-5e9b-aaf5-7fa84fe4d018", "text": "create a realistic image of one men , American men face,5 app icon are floating around the men , studio blue lighting "} +{"id": "8002627", "video_name": "81821e1b-42df-5219-881a-c90d24935453", "text": "Zoom in on the intense eyes of the lion and tiger. "} +{"id": "8001651", "video_name": "8af812c5-e147-530b-a4d8-6b401d163d72", "text": "Astunning cyber Punk image of shinny metalic Gold with perfect featured of a face "} +{"id": "4003765", "video_name": "a0846a46-1762-5b6b-abe7-0e434dd97cf5", "text": "People shuttle through the city, holding technological devices while experiencing the power of psychic energy. "} +{"id": "7002521", "video_name": "24968502-0bcc-5ea1-bed1-2349abe42e7d", "text": "five orcs looks forward, backround dark forest "} +{"id": "3006604", "video_name": "1fd49780-7cab-5015-bdf6-bda451b0ca32", "text": "full body boy talking on phone "} +{"id": "1004011", "video_name": "4a476ec8-a6fd-5e93-b3c3-ab7f67baf959", "text": "exotic alien fruit quickly rots in a bowl, going from new and perfect to fully rotten in stop motion style. "} +{"id": "0005502", "video_name": "1bead16f-91ea-5ef0-a2d2-24771e25586e", "text": "star wars heroes are fighting on the lightsabers "} +{"id": "6004697", "video_name": "e6a20dcc-3a7a-551e-829b-d78cbc3face2", "text": "1920 movie with 20ft robot and monk with scary mask dancing in the jungle "} +{"id": "1006204", "video_name": "71b74c9f-85b5-543e-9f7e-97f026bd1aa7", "text": "Beneath the stormy sky, rain poured in torrents, drenching the city streets in a relentless deluge. Lightning crackled across the darkened heavens, illuminating the landscape in brief, electrifying flashes. Thunder roared like an angry beast, shaking the very foundations of the earth. In this tempestuous chaos, umbrellas were turned inside out, trees swayed perilously, and the world seemed to hold its breath, awaiting the next furious outburst from the tumultuous skies. "} +{"id": "2004987", "video_name": "4e6cc8f3-c977-531b-953f-93b63c009fca", "text": "Owl mother: Larger in size and mature in appearance Maybe give her some maternal traits, like gentle eyes and soft feathers. Owl children: Smaller in size, may have a more youthful appearance, by sit They can sit side by side, creating a sense of closeness and closeness Use their feathers to convey a relaxed and warm atmosphere. read Both can be placed together holding a picture book, on which you can draw some simple patterns or symbols that symbolize education and learning Message: 1 Attachment "} +{"id": "3003638", "video_name": "35a55c57-f7dd-5b68-9d7b-ae3ada4c401c", "text": "a gemini zodiac fighter fighting together "} +{"id": "2006220", "video_name": "a8734226-2ee6-5266-ab49-607010a4e85d", "text": "nightsky with flying purple and blue glowing neon light butterflies, fantasy world, magical vibe, whimsical "} +{"id": "4002846", "video_name": "7a374cff-4cf2-5879-bdba-08c1b3a23856", "text": "a cinematic animation of a world of wacraft undead warlock casting a shadowbolt while his demon fel guard swings his axe at a murloc "} +{"id": "4003650", "video_name": "be346832-6c3f-5aea-abf1-6884db69ab22", "text": "wave of cloud that seems like water. "} +{"id": "4003275", "video_name": "2f86595c-fbc6-542c-87d0-4e6422ec89bc", "text": "a ultra realistic vision of a beautiful mystic colorfulPlanet with glowing plants "} +{"id": "7004642", "video_name": "81e3368f-e8c0-5a3f-a4ca-48320587309b", "text": "a large red rotary dial phone with the dials moving "} +{"id": "1005791", "video_name": "6a9a267f-b803-5125-82fe-8e0c7471c91f", "text": "durga puja with huge crowd of people in a beautiful situation of lightining "} +{"id": "4002163", "video_name": "b8048332-e3ff-5526-9154-bda1a552035b", "text": "Elon Musk Checks his emails and messages. realistic 8k cinematic "} +{"id": "6002311", "video_name": "c18aa2f0-a400-59b0-95af-5b7cf1fe3934", "text": "giant orc and roman legionnaire clash swords, motion 4, ar 16:9 "} +{"id": "3003501", "video_name": "8abe9875-bc62-5259-9c1b-3700b56bdc36", "text": "coat of arms of the city of Mykolaiv "} +{"id": "8001802", "video_name": "48e38fc7-758f-5e1a-913a-12d761ad94ef", "text": "futuristic road traffic with cars Message: Frohe Fahrt (Font: MODERN) "} +{"id": "0006555", "video_name": "2e9383bf-12a2-5055-92ba-c7a77be7364f", "text": "John Wick is riding a horse along the road "} +{"id": "2004601", "video_name": "f93ac48f-03d9-5504-afed-0ded3e805fb8", "text": "a huge tree, a portal begins to open inside its trunk, forest, dawn, anims style "} +{"id": "8001143", "video_name": "807b2fb7-4e8d-54aa-a4fe-64bf08d01bd4", "text": "The lion and the moon queen form a connection, and he vows to create a harmonious life on the moon. "} +{"id": "3003415", "video_name": "99f3ee0c-0367-5d13-98fa-c1053b5d8781", "text": "a epic anime fantasy fist battle "} +{"id": "2007202", "video_name": "671af7fc-9cae-5e59-aeac-22a7ad8898af", "text": "A beautiful woman winking at the camera highly detailed sharp focus Message: GM (Font: BAUHAUS) "} +{"id": "4003980", "video_name": "3b46b018-3fd0-5e45-a893-cbb0387dcf6a", "text": "a girl standing on the edge of the rock and eating a large pizza "} +{"id": "3006789", "video_name": "10691e9f-0627-5dfd-aff8-c3721bcdd635", "text": "a magician casts a spell and the cards floating around him "} +{"id": "2005504", "video_name": "1e61b1a9-138f-52ab-8e57-05b6741f1405", "text": "Movie poster, Marionette of a singaporean real estate agent in front of a laptop, text above says \u201cstop relying on vendors\u201d "} +{"id": "1006146", "video_name": "7097c159-813e-52cb-9a20-3f34e8f38f01", "text": "amazing neon fireworks exploding in the sky over a bright lights city "} +{"id": "0005874", "video_name": "229ef022-612f-5e77-b001-a12a2b1da472", "text": "soccer free kick low angle anime style "} +{"id": "1004186", "video_name": "4d6f294b-1c2b-5a40-832c-b547ab9e63fa", "text": "an amazed Australian aborigine standing in the middle of the winter field covered with snow and looking around "} +{"id": "1006513", "video_name": "77368161-87dc-5821-a070-ebd6d24f2fdc", "text": "moving person flying in air , levitating horror , , cinematic zoom , fps medium , "} +{"id": "6003426", "video_name": "94003c44-9f7f-55dd-bd37-474fe6b1e4ff", "text": "Kofi standing at a safe distance from the fire monster, with a scared but determined look on his face. He wants to help the forest and his friends, but he does not know how. "} +{"id": "1003204", "video_name": "3af31a31-b81c-50b7-ad8e-933c02216b37", "text": "a lovely beautifull balinese model woman, traditional dress, holding candle with bokeh background "} +{"id": "0006881", "video_name": "34ab5489-510d-5e41-8acf-da88cd1251c7", "text": "Scarlett Johansson in a bikini seductively model dancing on a pole in a nightclub "} +{"id": "4004240", "video_name": "18fc37e3-8d12-56e4-b470-4c1f89933641", "text": "the man enter in game portal and changed skin on player skin "} +{"id": "2004750", "video_name": "b7fa3165-b072-573a-b86d-65d8af595bb7", "text": "The friends watch in awe and trepidation as the moon ascends, marking the beginning of the ancient ritual. "} +{"id": "3003907", "video_name": "880466a3-9809-51e5-8d1e-5c0269e1261f", "text": "film,a princess sat by the window, snowflakes drifting around her "} +{"id": "7004955", "video_name": "21ec82db-1ca2-5cc1-982f-073488205a19", "text": "Alliance of the opostion leaders Message: 1 Attachment "} +{"id": "4003574", "video_name": "ca4a0298-a2cc-5fa4-8063-b3dcce7d4081", "text": "An orca breaching in the ocean "} +{"id": "6003239", "video_name": "dbef5a40-00fc-5926-95fd-540d398d3078", "text": "Visuals: Engaging graphics showing a healthy liver compared to a fatty liver. Bright and clear visuals to grab attention. "} +{"id": "1003456", "video_name": "3ffd01b6-6c52-5fd2-bf86-cedd4aba278c", "text": "aunty on the dinner table dancing "} +{"id": "4003876", "video_name": "927a7f27-8384-50d1-9f37-869566b807ed", "text": "moving the lantern ,the pumpkin eyes glow Message: 1 Attachment "} +{"id": "4003228", "video_name": "53a5130f-65ff-5df6-9d9b-97229b0d562b", "text": "Woody from toy story is driving a fancy car on street "} +{"id": "0004253", "video_name": "05d97264-60ca-54dc-81f1-dd3aaee930c8", "text": "On a night when college students are wandering around "} +{"id": "1003339", "video_name": "3d77902e-3c3e-5cc6-8cf4-972d40cff1c0", "text": "create a video of roamantic couple kissing ar 16:9,motion 5 "} +{"id": "4004124", "video_name": "139300dd-38b6-500e-ade5-2af52818dc43", "text": "Cargo transported by truck, mountains, sunset, cyberpunk, china 4k, ar 1:1 "} +{"id": "1006796", "video_name": "7c7adce3-1336-5ea9-b76c-ff37ff57f463", "text": "The video documents heartwarming moments of animals being rescued from distressing situations and reunited with their owners. From lost pets found after weeks of searching to injured wildlife nursed back to health, the film portrays the dedication of rescuers and the joy of families reuniting with their beloved companions. Emotional interviews and touching visuals capture the compassion and hope that come from these remarkable reunions. "} +{"id": "3003745", "video_name": "596a83ee-dc1b-5b64-991c-233ca15ecb85", "text": "Two parents cry over their dead son "} +{"id": "4003807", "video_name": "7584b223-5385-5f05-a7a8-e1c02cbc00f4", "text": "Transform a cup of coffee into a dancing barista "} +{"id": "6003622", "video_name": "6608a0aa-9078-5c80-87f5-c5750ea49f5b", "text": "rain nd background leaves rustling in the wind "} +{"id": "3003144", "video_name": "068c9225-bf4b-575b-b350-710619abceb9", "text": "mustang car driving through the city with neon signs at 60 fps "} +{"id": "0003339", "video_name": "3bee2f49-054d-50c6-831b-096d240aae56", "text": "4k, movie picture, cinematics, hd, people dancing at a hip hop party in yellow clothes "} +{"id": "7004437", "video_name": "7a251fd1-3a93-5b1b-ac1d-78f88ac2b558", "text": "video of clear flowing water, video size 9:16 "} +{"id": "0005788", "video_name": "214777d1-bab1-56fc-a858-b9363bffe070", "text": "Dark clouds gathering overhead 16:9 ratio "} +{"id": "4002892", "video_name": "853d13c8-ba45-5498-9c1a-107b7a5ef180", "text": "a disney style film about emotions that fight with each other "} +{"id": "0003248", "video_name": "3a057785-f2d0-5242-b4a9-cf70af32f9fe", "text": "he mansion in the distance, shrouded in mist.8k,realistic,3d,horror story, "} +{"id": "4004033", "video_name": "977fa64f-4a35-567b-b974-76fd93f049f2", "text": "Tom stacking pots, pans, and utensils to create a makeshift staircase to reach the high shelf where the cheese is located. "} +{"id": "3003662", "video_name": "7d0446ae-d511-5f50-871b-c30bd5bf9f5c", "text": "stickman running from paper and human tries to catch "} +{"id": "1005646", "video_name": "67be7616-66b6-535d-b9f8-045418a663fe", "text": "a stone floor in a medieval castle hall with a snow storm at night "} +{"id": "0003529", "video_name": "3f086bac-1c9a-5680-80b8-e7db97974653", "text": "young boy . animate in anime style. "} +{"id": "1003854", "video_name": "4706ce6d-8fac-519a-b4e1-bdb00ffe0fa7", "text": "Virtual Man Blacksmith Shop Forging Mid shot "} +{"id": "1006780", "video_name": "7c41f8c7-f0a2-53b7-bae3-77e0cd838d36", "text": "Cosmetic photography immerses you in the unique beauty of cosmetics, showcasing every frame with intoxicating visual magic. "} +{"id": "2003239", "video_name": "b0281d43-941e-5d11-a35d-c360d0c3bb73", "text": "Thousands of birds fly to the earth. "} +{"id": "2005508", "video_name": "b9d1bcba-75c1-5f78-8bca-8f87e7bde7ac", "text": "server room, servers, monitors, a lot of cables, gaming room, led lightning, high quality Message: Janusz (Font: MODERN) "} +{"id": "2006926", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "The young person, while sipping the cold beer, stumbled upon a stack of beers, which in turn collided with a car. "} +{"id": "4002709", "video_name": "fe646a82-8e57-5308-831d-891b3ccf35fb", "text": "Amitabh Bachchan wearing a same white long coat portrays a pianist during World War II. The camera captures him in a dimly lit room, bathed in a warm and nostalgic glow, with the soft rays of a vintage lamp casting long shadows. The camera focuses on his hands, skillfully playing the piano, capturing the intricate movements of his fingers on the keys and suddenly a Bomb blast on the wall and he fell on the floor. The ambiance is set by the soft background music. 4K, smooth video. "} +{"id": "2003144", "video_name": "f709d9e4-8921-53c5-85ed-7db0cdf90586", "text": "a cat stood tall with the body of a human, but the face of a cat, standing tall "} +{"id": "6002697", "video_name": "855b5346-7467-5c91-8a25-1b0df8e46977", "text": "As I stood there, unsure of what to do next , my eyes caught sight of a few figures in the distance. Slowly, they emerged from the heat haze, revealing themselves to be people. Message: 1 Attachment "} +{"id": "8003065", "video_name": "a82d922f-b1f9-537c-8c83-5756fc5f7d58", "text": "A man will win a lot of money at slot machines in Egypt. "} +{"id": "2007906", "video_name": "90ecab2f-f24f-5caa-a0af-8367e98a4ae3", "text": "frog sitting behind pc playing esport games "} +{"id": "0004975", "video_name": "129177a9-ffd5-56f2-b86f-d960c157e986", "text": "Young man and woman go on a date "} +{"id": "3006823", "video_name": "b837fc3e-dd17-579f-ac62-f1f2e52e2f6e", "text": "Jesus descending from heaven before the people kneeling "} +{"id": "2007564", "video_name": "2f1985a2-af16-5d0a-8aa5-61b77d2dbf5c", "text": "big round stickers in a doctors office "} +{"id": "1005490", "video_name": "64e02401-76e7-5188-a086-7dec734aa02e", "text": "a house floating around the sky "} +{"id": "1006861", "video_name": "7d4a05d5-da56-5efb-93ca-4ea51d797e7a", "text": "frudo from lotr, when wearing the ring "} +{"id": "2003265", "video_name": "ce4f3ce3-97fc-536a-b787-4ca75a5e2e23", "text": "Thrilling Roblox race in colorful karts "} +{"id": "5001233", "video_name": "24bdc521-35e1-5b64-afb6-7c7a8acff096", "text": "Shopkeeper puts all the item into the sack and gives it to the dog "} +{"id": "2007346", "video_name": "82839781-8a6b-5c3a-9716-eb2dc645f980", "text": "two eyes, without a face, only the eyes, floating in the sky. super 8 footage "} +{"id": "8002533", "video_name": "f8d74d8b-161e-572b-900d-6a6f3b9d3387", "text": "two teenagers received a lot of money on credit and spend it on luxury things "} +{"id": "2005172", "video_name": "978c6524-d688-5a1c-b387-a8855017a90e", "text": "drops of circular gold liquid lights as large as jupiter in reflection nebula "} +{"id": "4003883", "video_name": "2a739ddc-9079-564f-a039-4538e1c9d9e3", "text": "wide shot of a woman dancing in a forrest, long shaddows, backlight, cinematic, hyperrealistic, painting from Leonardo da vinci "} +{"id": "0005179", "video_name": "162b9422-0247-5fec-bfe0-c42abbd94bb9", "text": "tree waving in the wind, all hearts are following like leaves in the wind "} +{"id": "8003801", "video_name": "76738d40-1078-53cf-b998-bfc367fcba64", "text": "scenic view of coast from the ocean high def "} +{"id": "4002026", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "a super car with 2 doors cornering at at hill "} +{"id": "5001177", "video_name": "3a9b8b2b-432b-58f3-9575-cb2970190eff", "text": "Animation of the bubble collapsing with a loud sound "} +{"id": "7003119", "video_name": "77e4335b-2ed7-5759-b4da-e21ed508842a", "text": "Amidst the stars, envision a shimmering mirage, zooming out, dolly zoom "} +{"id": "7002809", "video_name": "3d7b9de9-73a6-5d01-9fc9-3fe6ce0aff13", "text": "one singular yellow pastel star floating underwater with bubbles. Make everything bright, vibrant, pastel, cartoony, kawaii, anime "} +{"id": "0003823", "video_name": "44249d5d-2e84-57d1-85e0-877ecc19fcec", "text": "a fetus grows in a body, cinematic, brown and gold "} +{"id": "8002355", "video_name": "08b507af-c211-5586-b410-b21fbf594a82", "text": "Create a video depicting a man bedroom that fails financially, the men show have red eyeball, just stand up from bed, thinking, The atmosphere should evoke a sense of dread and foreboding as the protagonist "} +{"id": "8001890", "video_name": "9972fade-7c3c-560a-90d8-9cac9a160b8e", "text": "location in space and this guy to playing with planets in his hand and the earth is behind him Message: 1 Attachment "} +{"id": "0005210", "video_name": "16a2d081-3470-592e-8186-539b10939284", "text": "a golden king monkey, empire, cute colors, epic, cinematic "} +{"id": "6004512", "video_name": "54446c54-2403-543d-bcef-c0960825ecaf", "text": "a music video intro for Drift King with text that says Drift King "} +{"id": "2007139", "video_name": "b2303b19-a265-5a09-8de7-73bc48398a61", "text": ": old husband and wife dancing in front of the dining table with fish and meat and candle in the window. "} +{"id": "1004855", "video_name": "59b52d73-85c0-5369-a327-bc0c3f1dc7e4", "text": "a trutle purchasing a preroll at a cannabis dispensary "} +{"id": "3004222", "video_name": "5ccb5773-07aa-5a21-9458-1078689fccbe", "text": "A desolate battlefield with scattered remnants of Roman armor "} +{"id": "1005484", "video_name": "64c0a81d-a090-5a5a-835b-7865ff89be04", "text": "Brad Pit dress as mariachi playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "8001639", "video_name": "c55dbbd1-c839-5407-b23e-60f05a1c3792", "text": "A quiet riverside, several tanks are driving across the river, and there are some marching soldiers beside the tanks. "} +{"id": "5001324", "video_name": "e33a1470-d054-5656-82a0-28d6268d1673", "text": "An image of a flower emerging from barren soil, "} +{"id": "8001856", "video_name": "99e7d55b-a6fc-5fb1-8407-db0c75b26495", "text": "the city of marseille from a rooftop on a sunny day in a futuristic architecture with gothic undertone and vegetalized streets with alien shuttle craft flying around "} +{"id": "2007889", "video_name": "15d7f577-9202-5927-b495-d386a5c3f228", "text": "Chinese classical beauties at gas stations "} +{"id": "8002961", "video_name": "c3e53db9-cb90-5440-a56d-ca2541586710", "text": "Step into the world of Ancient Greece with this visually stunning full body statue of a bearded man. The intricate 3D details of the covered clothing and the striking display of Greek style will transport you back in time. "} +{"id": "7004576", "video_name": "bca01f5b-1cea-5d9c-85b8-72787e081b52", "text": "we\u2019re going to explore the chilling tale of the \u2018Curse of the Pharaohs\u2019, "} +{"id": "7004542", "video_name": "2b33c834-9bb2-5031-bbc3-797f2194b9be", "text": "Sexy woman in a red dress with green eyes and red hair, energetic and bold, with small horns walks with a wide stride "} +{"id": "4002507", "video_name": "6981ea54-2bcb-53f9-9c43-49ba9ce566de", "text": "mermaid pulling fisherman to the botton of the sea horror filme realistic "} +{"id": "0004030", "video_name": "01c921cb-2028-5817-980a-1c35415e19ef", "text": "illustrated vector of a walking cartoon strawberry "} +{"id": "0004879", "video_name": "10d20bb5-6e3d-53f9-a30f-09b912286576", "text": "Create a photorealistic video of a drone flying over Kyiv, Ukraine. The video should start with the drone flying over Khreshchatyk, the main street in Kyiv. The drone should then fly over the rest of the city, showing the many different landmarks and attractions. The video should end with the drone flying over the border of Kyiv, which is highlighted in blue. The video should be set to music that is both beautiful and inspiring "} +{"id": "4002205", "video_name": "76e7f2a4-212e-5d0a-9e3f-6bbcfab63b1f", "text": "but also some surprisingly cool things. "} +{"id": "2006241", "video_name": "66b82bbd-ef3d-5889-a5a8-b1e8f9002cdb", "text": "girl with cat, futuristic bubble, lofi style "} +{"id": "1003431", "video_name": "3f62bc6f-d2df-5c4c-ae15-29ce84e4c31c", "text": "Fantasy world ,gaming,wizard,minecraft,colorfull,fantasy war Message: World end (Font: MODERN) "} +{"id": "7003393", "video_name": "b7940cd2-9093-53c3-ab74-ac20eb4d00fd", "text": "animation with dreamlike atmosphere, vibrant and swirling psychedelic patterns, glitch effects "} +{"id": "1005796", "video_name": "6aae9f08-e739-5e6a-b0d4-a5e332b5d2b7", "text": "italian beach with waves crashing on the shore "} +{"id": "3006405", "video_name": "4a48ff27-def6-547c-9075-4994c5f43c0a", "text": "wonderwoman superhero looking confused reading skincare labels at skincare counter, uhd, realistic, cinematic motion "} +{"id": "1004882", "video_name": "5a4bc5bf-80d4-56f2-82eb-58d25c299cf2", "text": "Clips of changing seasons, transitioning from spring to summer. "} +{"id": "2005719", "video_name": "fa67dca4-10bb-5248-8c68-f4401cdf2ade", "text": "elderly woman enters brightly lit pharmacy at night "} +{"id": "5001468", "video_name": "3df4ff15-deba-53b7-9b3f-76d327d76792", "text": "A cheetah quickly runs past the camera in the jungle "} +{"id": "2004018", "video_name": "caefb1a9-dbb2-5fd3-b23e-b3b3974b4e81", "text": "an arabic sesting with people talking "} +{"id": "0005120", "video_name": "151dddab-6ddb-5a91-ad16-7796955c1adb", "text": "Generate stunning and imaginative landscapes filled with floating islands, mystical creatures, colorful skies, or other elements inspired by fantasy worlds. "} +{"id": "3005741", "video_name": "16dbe73d-131a-55cc-997b-3fd8bc5163fa", "text": "a slippery plate of delicious spaghetti Message: SEND NOODS (Font: MODERN) "} +{"id": "8003695", "video_name": "583784ce-e8e0-5642-8b5f-7fb6f0dcefb8", "text": "a group of rabbit in the heart of a lush and vibrant jungle in cinema 4D quality in 16:9 aspect ratio "} +{"id": "2003824", "video_name": "c3834e1f-083f-5703-8b47-9616eaa2fd5a", "text": "a fox running, vhs footage, glitch "} +{"id": "3004863", "video_name": "ef2aea06-be3e-5ceb-bbe3-3d638837dee2", "text": "Caught off guard by their growing attraction and a shared sense of admiration, Agent X and Agent Y hesitated in their mission. Moments of stolen glances and subtle gestures whispered a forbidden love within the chaos of their rivalry.,HD,8k "} +{"id": "8003552", "video_name": "68a1f49a-7368-5c3a-956e-ef816f946192", "text": "back to the future doc brown cientist "} +{"id": "1005411", "video_name": "63671f01-e200-59cd-9849-96a69c913485", "text": "girl in bikini posing in front of the mirror "} +{"id": "0006753", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "generation of a cartoon about a beaver, cinematic light "} +{"id": "2007923", "video_name": "48e709b4-f794-5cd5-9641-e7e8ea55758c", "text": "a tour of the 4th dimension "} +{"id": "4002385", "video_name": "02c06e40-1559-5788-9b89-87814eb962e6", "text": "pupshaw and pushpaw having coffee in the desert at sunset "} +{"id": "5001351", "video_name": "62a369f9-2221-509b-aa00-091f5bf92051", "text": "mysterious masked man telling a story "} +{"id": "8003624", "video_name": "1976226b-5ecc-5d9f-ab0e-22bad7016347", "text": "Zombie hand with holding head , graveyard on bg ,vintage, t shirt design, illustration, digital art, vector, vibrant colors, vibrant, cartoon style "} +{"id": "4003474", "video_name": "27f6dc08-3c85-517a-977f-96c9bf8354f0", "text": "a city view from inside a luxury apartment, include a living room and kitchen, clear soft rain can be seen through the window "} +{"id": "6003573", "video_name": "b2778267-52d5-5928-ace1-4e8bfc02e950", "text": "make logo animation logi name is illusory shade "} +{"id": "7003720", "video_name": "93b3c488-696d-5bc1-a80a-ec105fed31da", "text": "beautiful girl hijab and face mask in high Court "} +{"id": "2004755", "video_name": "9249a665-43b1-59df-a9b9-813722f0ee96", "text": "colorful sharpen slow motion flying hummingbird depth of field "} +{"id": "4003053", "video_name": "ebdd5986-a504-572e-b804-1890919b7847", "text": "slightly shaky, ultra realistic, highly detailed video of iguazu waterfalls with lots of birds flying around over them "} +{"id": "1004930", "video_name": "5b282b2b-5e9b-5eb9-846d-e41c650ab622", "text": "Sarah had always been the heart of the community, spreading love and happiness wherever she went "} +{"id": "4003398", "video_name": "c653de43-5cd7-5c9c-84bf-016eaaf52b42", "text": "a man is using his ATM and debit card at ATM machine and moving back "} +{"id": "0006883", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "a crystal ball, monochrome, faded colors, magical "} +{"id": "1006028", "video_name": "6ec920e2-57c9-5c76-8c40-6021c70fddbc", "text": "milk man riding a huge cow with milk "} +{"id": "5001235", "video_name": "d13d41bf-d146-5cc2-997a-8d0a269b690a", "text": "autumn trees swing, yellow leaves fly around "} +{"id": "2004514", "video_name": "1a6fe06f-f66d-5336-b234-d9003749fe3c", "text": "Albert Einstein comic his face looks sympathetically into the camera "} +{"id": "2007455", "video_name": "a554b2ff-753b-51d7-9075-c03fa48d7a29", "text": "When you ask for a return date, there is no such date, but the rain rises in the Bashan night pool, when we cut the candles in the west window together, but talk about the rain in the Bashan night. "} +{"id": "2003609", "video_name": "e0de3ff6-2922-51ad-819a-d010a76b587a", "text": "a beautiful loard hanuman ji with spiritual prayer "} +{"id": "5001378", "video_name": "9fa0e8f9-3d20-5938-b86c-5ace67fe885e", "text": "Drizzle, with a warm smile, introduced himself as the smallest dragon in the valley. He believed that even the smallest creatures could make a big difference. "} +{"id": "3004535", "video_name": "3f238023-e34a-543c-b9d1-521132882dde", "text": "a glowing space with neon colors and the lofi tattooed singer shows up in the middle of the room "} +{"id": "5001682", "video_name": "3a68a0be-c546-5d2c-85a3-5321dde12636", "text": "October 1, 2049, China National Day Military Parade "} +{"id": "4002379", "video_name": "6413a773-af8a-590c-bd1d-1d5efc144e0c", "text": ", photorealistic, 4K,Visual: Exciting clips of people using chatbots,Visual: A person using a chatbot platform on their laptop,\nVisual: Quick snippets of satisfied students giving thumbs up,Visual: Person learning with a smile on their face,Visual: Split screen of a beginner and an advanced chatbot being built,Visual: A person brainstorming ideas with a virtual chatbot,Visual: Person showing off their finished chatbot to friend,Visual: persoN holding a smartphone with the course website displayed "} +{"id": "6002230", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "Elizabeth and hers was a period of imperial and economic growth in England. "} +{"id": "3004818", "video_name": "76e5ed3e-80cf-5261-a904-959c063ec98a", "text": "Golden Retriever Shocked by a Kitten occupying his bed "} +{"id": "3004448", "video_name": "c84865db-8f54-5e16-be88-a783a2af64bb", "text": "Exercising pregnant woman on a Pilates ball by the sunny sea "} +{"id": "8002767", "video_name": "08dfa57d-971b-50aa-b128-56ea801ca86c", "text": "The field is drawn into squares, and an elf is running along it. "} +{"id": "2003773", "video_name": "ea391bd3-4f40-5200-88bf-39c568f8d036", "text": "Generate an image of Priya diligently studying with the help of her friend, who is offering support and guidance. "} +{"id": "0005904", "video_name": "23008e28-fc70-5366-a2f4-d3ff38c30b2b", "text": "a herd of thousands of marmots running down the side of a high Swiss mountain "} +{"id": "3004575", "video_name": "4949cf44-01cd-5b99-b004-f681ce2effc3", "text": "Withered vines twined around the branches of the old tree, and a crow perched on the branch. "} +{"id": "1004351", "video_name": "5045a368-8f57-5e42-a071-3865cf2e95d0", "text": "Jesus answered, \u201cI am the way and the truth and the life. No one comes to the Father except through me. "} +{"id": "7002851", "video_name": "0905e9db-66a1-51bd-b89a-5fcebd2cb2be", "text": "5\u20192 Indonesian Girl with beautiful smile teeth showing hugging a 6\u20193 lightskin travis scott lookalike with lots of muscle "} +{"id": "7002867", "video_name": "55aa528e-2a0b-5fca-b1d0-5a8cb517e488", "text": "god dreams for the first time, what does he see? "} +{"id": "7002280", "video_name": "bc5ae554-25a5-5cdb-accf-7215316cf3f4", "text": "beautiful realistic girl lies on a flower meadow with her eyes closed and a waterfall flows in the background "} +{"id": "4003208", "video_name": "1bebd685-8ce9-5141-8573-2857075f10b5", "text": "2 superheros in the sky playing a boardgame together, realistic "} +{"id": "6004341", "video_name": "9a02a612-c153-5349-9632-a79d4e9d0e2c", "text": "a cute girl, wide brown eyes, standing in the forest, the air is blowing her long black hair, in 3d "} +{"id": "2006940", "video_name": "cfcdf427-fd2e-59f1-b366-b9186acfe68d", "text": "He wrote as fast as he could Message: 1 Attachment "} +{"id": "4002245", "video_name": "01ad9bea-8c61-5bd6-b28e-d44e17e001a5", "text": "Making the right choices in the trial of wits to progress. "} +{"id": "6003669", "video_name": "92ea1563-b4ef-5872-847e-cba8bb04f0d3", "text": "head moving to the side and mouth smiling "} +{"id": "3004450", "video_name": "3f88413f-7e73-555a-b1a1-2158fe15f097", "text": "soliders dead min 20 dark theme game visuals "} +{"id": "6002571", "video_name": "9adafbfd-20e2-5f56-8c84-93fbd701635f", "text": "stick animation for playing cricket in statidum "} +{"id": "4003628", "video_name": "b948afd0-3a3e-5824-bf6b-2fb69cd5b1ba", "text": "Owen Wilson as baby yoda saying wow in a Wes Anderson movie "} +{"id": "2005992", "video_name": "737a1852-1b45-50e3-be8a-825923120269", "text": "keyboard, sky, newspaper, the stars art group, caras ionut "} +{"id": "8003140", "video_name": "e55ede41-eba5-556d-b065-6bfcaedea86c", "text": "A beautiful girl in the sky on a hippopotamus "} +{"id": "3004161", "video_name": "c8e8fdf2-e556-508d-8b38-408829850375", "text": "Sand in the desert\uff0cHigh Altitude Top View Message: Lenovo (Font: MODERN) "} +{"id": "1005570", "video_name": "6684f4bf-44ae-503f-a35f-24687219ff04", "text": "beautiful black woman in traditional Ethiopian dress walking into congress in Washington DC "} +{"id": "8003067", "video_name": "3fed6845-82dd-520c-ad9d-1c4400c519c6", "text": "blue sky and white puffy clouds moving in a sunny day, anime style "} +{"id": "1003546", "video_name": "41697c84-573b-50f8-87a1-dca458e0a584", "text": "airplane flying in the colorful clouds "} +{"id": "3006769", "video_name": "7cf5c7cc-d57c-507f-94a2-7cd7ca615f80", "text": "A vast desert landscape at sunset, with towering sand dunes casting long shadows. A figure, cloaked in vibrant fabrics, stands on the crest of a dune, facing the horizon. The winds sculpt the sand into intricate patterns, and the figure seems to be listening intently as if hearing secrets carried by the whispering desert winds. 3D, 4k, "} +{"id": "4002690", "video_name": "995cf914-09b2-57ef-b0d9-0b568559108f", "text": "Paint a vivid scene of a towering mountain emerging majestically within the heart of a dense jungle. "} +{"id": "7004601", "video_name": "ad603aeb-a8e9-56ef-820b-a4b721e8e59a", "text": "cracken is coming, view from the ship "} +{"id": "2003136", "video_name": "85f6b14d-565a-50ad-91e3-1c0723ddd821", "text": "a real video of a dog playing in a park "} +{"id": "0003424", "video_name": "3d56d0be-861d-5a1a-96ab-e77fea0d86f0", "text": "watercolour painting of the inside of a clothing store in 1910 "} +{"id": "3003503", "video_name": "1fbb6240-9f09-572a-93d5-0b986cf6252c", "text": "Greyscale. Realistic still image of a British person looking towards the distance in 1930s "} +{"id": "3004853", "video_name": "9afefd64-fb75-56ee-8d8f-ee56e2b3e238", "text": "a child speaking to an ancient tree "} +{"id": "1003759", "video_name": "454e5f8c-a71c-5e9d-ada7-20a6aa206159", "text": "santa showing a gift, smile, santa with glasses. "} +{"id": "2006200", "video_name": "3f326885-59c9-57ce-b8e3-aab13617331e", "text": "a lot of Zombies and skeleton "} +{"id": "6002199", "video_name": "d72c530f-b96f-57ef-8de4-fa17a278a1ac", "text": "The city gates, slowing opening, are actually far from the Mediterranean "} +{"id": "3004842", "video_name": "fbc46cf6-7d77-5b3e-b736-82df3fabae97", "text": "luxury rolls royce car with an ancient Egyptian style on the desert road "} +{"id": "4003502", "video_name": "60664a7f-506f-5375-86b6-6a2f0d4c30db", "text": "hyper realistic coal industry and fuel fossils pollution and smoke, dramatic cinematic, gloomy dark style "} +{"id": "4002514", "video_name": "0bc60a49-e2d3-50bd-b6c5-9fae135b78cd", "text": "tomatoes on the wooden table, a drop of water runs on the tomato "} +{"id": "6004053", "video_name": "247b2854-d552-5854-8ca4-771699c35bbf", "text": "The first picture shows the moment when a person meets a robot. A person expresses surprise and joy at seeing an intelligent robot standing in front of him, motion 2 "} +{"id": "8002255", "video_name": "0b3859bb-3e35-562d-9c50-6bbce0550be1", "text": "reate a lego diorama. two figures from behind with a suitcase are preparing for a big travel "} +{"id": "8002495", "video_name": "7648e96f-cfd4-51e5-9a35-82f7cf2e1bfb", "text": "Create a Stylish young women with large, captivating eyes,thich eyebrows,a strong jawline, high cheekbones,and a natural complexion,Her hair is in loose waves,and she wears a chic black ruffed top.The background should be soft grey, highlighting her as a modern, approachable virtual influencer "} +{"id": "2003022", "video_name": "b8cfaa41-1f79-549e-a8da-caaacdab1560", "text": "A fish with legs is standing on a burnt plain "} +{"id": "0004580", "video_name": "0b75fe38-6ac0-554a-a79b-d30491597d3f", "text": "henry cavill in a superman suit flying in Speed of light in new york city in man of steel movie scene "} +{"id": "0004385", "video_name": "0813ebd4-1acd-5b6d-b306-6822c0433d7e", "text": "a graveyard, darkish surrounding, autumn season, leaves falling of the trees "} +{"id": "2006798", "video_name": "bb33b0db-991d-5cdf-a7c9-d8c1c43fba6c", "text": "long shot pushing into of lit bar in war in torn Serbia with bright yellow lights seen within and several military men milling in the background, high detail "} +{"id": "8001729", "video_name": "6172ca46-c93e-51b7-a3c1-b50dbf3afcf6", "text": "god of fortune distributing gold, gold coins falling from sky, UHD, 4k "} +{"id": "7004414", "video_name": "3529f24f-8c68-58db-b4a0-49fea84d39be", "text": "Boy with the head of a jaguar, dancing down the school hallway "} +{"id": "2003923", "video_name": "f4907c5f-e219-5319-b8cc-b723f1faf062", "text": "beautiful forest view with huge tree "} +{"id": "3003162", "video_name": "e53baa0c-3a1d-508e-8c70-90c36fcd361e", "text": "a Jewish Rabbi is reading tehillim in a Pixar style video "} +{"id": "3005727", "video_name": "69c9d5d8-8d71-518e-ba91-5a19719b6f89", "text": "image:9b4783440d15c3448bd854ec2cff47c8.jpg give a live effect to the image "} +{"id": "7002760", "video_name": "b00e3ac0-a51b-593e-b3ce-930ce2b913b9", "text": "Show a cozy house with the sun rising outside. 3d animated cartoon style colorfull "} +{"id": "0003142", "video_name": "37fe0544-5d89-512f-a670-a799c922fd5c", "text": "A cute robin creates destructive storms with the flaps of his wings "} +{"id": "3005457", "video_name": "8626defe-5909-5b9b-9879-0ac34f2e6a93", "text": "a cute sunflower ( cartoon style ) dancing in a sunflower field. lots of color and a rainbow in the background. "} +{"id": "8003436", "video_name": "ff2c71bc-4ae0-52b8-b97b-2219b105ff16", "text": "eye of sahara in ethiopia with huge water around with jungles "} +{"id": "0005432", "video_name": "1abfc774-b3a6-5b0b-9e8e-97a354f8cdf1", "text": "A little girl in a pink dress is sitting on a tree stump in the forest. She is holding a baby bird in her hands. The bird is injured, and the little girl is gently stroking its feathers. "} +{"id": "0005794", "video_name": "215ba29f-114b-5cf6-837c-c2a7c0b59924", "text": "create a caricature of a light skinned blonde woman with shopping bags in her hands inside a shopping cart "} +{"id": "2006874", "video_name": "ef8dc837-ab35-575d-8820-6c8ea1bf27d2", "text": "a cute puppy sleeping next to a rainy window "} +{"id": "8001243", "video_name": "ea351b07-86de-5564-ae94-58c4a5cdd003", "text": "builders doing construction work, ultra realistic "} +{"id": "4004346", "video_name": "a23becb6-226b-52f8-9175-61034e38196a", "text": "misty forest, grey, dystopian, windy, 1920x1080 "} +{"id": "8001763", "video_name": "1d2a49ec-ab59-549a-9fe1-67da3720a6a4", "text": "hockey player running to the camera until closeup shot "} +{"id": "7004249", "video_name": "d3a5d933-254f-564b-bd7c-321180477be5", "text": "noho hank from HBO show Barry overlooking L.A "} +{"id": "1004831", "video_name": "593b751d-f345-5238-b670-5ec821f7ba88", "text": "create a lion dancing in forest "} +{"id": "2003121", "video_name": "244a4134-4ca4-59d3-8044-c54c6156e155", "text": "old liminal russian cemetery with two ghosts dancing with each other 1950\u2019s black and white film "} +{"id": "8001110", "video_name": "0c05fefd-bf9d-58a3-bf56-350481ee2895", "text": "lord Shiva tandav dancing, hyper realistic, high octane render, HD, hyper intelligent render, extreme render, cinematic shot, 4k render, hyperlapse, drone shot, golden hour lighting, lock character, same character next prompt "} +{"id": "2005902", "video_name": "46396b01-bb8c-5732-be74-c31f53a8b64e", "text": "Barbie riding in a C6 Corvette, RAW video, 4k, masterpiece, high res, extremely intricate) (photorealistic:1.4), cinematic lighting "} +{"id": "0004033", "video_name": "01d6e5ee-a485-527b-9ae3-1a7f3e91d6be", "text": "a ghost carrying a mining device in the smoke with Many fluorescent colors "} +{"id": "1006157", "video_name": "70bb704a-170a-5d54-8cd2-26af20ad0fc0", "text": "A butterfly flies among the flowers,Close ups of flowers "} +{"id": "6004396", "video_name": "60040000-306f-5ded-a8b2-2bd2c4697024", "text": "Make a 5 seconds clip of 5 cyberpunk pirates ship cruising together "} +{"id": "3003978", "video_name": "0f47bcfb-0503-5c3a-89f5-c96acbc25aa4", "text": "beautiful garden with flying butterflies in kolkata city "} +{"id": "3003343", "video_name": "781f469e-d05d-51b8-a562-9b86f7090994", "text": "1950s super 8 psychedelic colorful footage of an otherworldy sunset in space, liminal, with a line of trees on the horizon "} +{"id": "3004576", "video_name": "829c0057-07cc-51f0-bf5e-df132da59945", "text": "floating islands with waterfalls, mytsical, 16:9, beautifull colors, surreal, beautifull, weird, surreal, cinematic "} +{"id": "0003463", "video_name": "3df5ef9e-ecd7-5c4d-8b2f-8843f4669ffb", "text": "a little girl sitting at sofa and petting an octopus "} +{"id": "0003030", "video_name": "35dc2c7e-85d8-5bae-9d33-4b028b381d20", "text": "ancient egypt construction of the pyramid, sunset lighting, lens flares, Cinematic camera motion, clouds running "} +{"id": "7003222", "video_name": "c74c402f-9b20-5c7c-acc5-b1ed194d5907", "text": "south Indian woman, 19 year old, tight white shirt, hyperdetailed, cinematic still shot, 32k, by Mario Testino, Vogue "} +{"id": "2003667", "video_name": "1f47e017-c8d6-5ce0-a1d6-505a088d1b7c", "text": "pulling train chain,inside a train,hd image,pixar style "} +{"id": "0004869", "video_name": "109dba2c-954d-5245-8f5e-5d9ec4fd4531", "text": "Close up colored manga portrait of a middle aged black woman screaming by Junji Ito, detailed illustration, amazing details, phenomenal stylistic, poetic, dramatic atmosphere, cinematic "} +{"id": "8001213", "video_name": "9e970dfb-6aaf-5849-a6d4-60ccccdc8356", "text": "Show Guruji, nodding approvingly at Maya, a look of pride in his eyes as he watches her depart, knowing she has left an indelible mark on their world. "} +{"id": "3004305", "video_name": "28210a49-8ca2-537c-aba0-22e14821d18d", "text": "The fairy stood in the fairy forest and glowed, the Spirit Apple tree was ravishingly beautiful "} +{"id": "0004142", "video_name": "03fa6bcb-afa1-5a41-baf8-907f0dbb41c8", "text": "aquarium with goldfish and gravel floor Message: ADEMILY (Font: MODERN) "} +{"id": "3003451", "video_name": "88a6760e-2296-5f82-8623-d46854a47e3a", "text": "The electronic device of the mobile phone is faulty "} +{"id": "4002953", "video_name": "53d4a8b0-8f09-5d84-a195-ba37faa75d94", "text": "a video of someone eating a soccer tennis sandwich "} +{"id": "0006906", "video_name": "35270bd5-f528-520f-a73a-6d7f9072bb97", "text": "beach themed emojis flying in green blurred neon lights "} +{"id": "3003021", "video_name": "469e83c6-d3fa-59c1-b4c0-5d36e547b662", "text": "A muscular knight from the Middle Ages "} +{"id": "3003784", "video_name": "973bdc4d-ea3e-5971-a20b-b8a1dbba576b", "text": "I look in the center of my soul as you try to find the path to get you out of the hole "} +{"id": "3003687", "video_name": "3ea7cc6b-e003-5253-895f-070a28352112", "text": "a scene from The Terminator in the style of Otomo\u2019s Akira "} +{"id": "2003529", "video_name": "f0518420-df52-5913-a845-0ad4f3cff098", "text": "flame castle, medium speed, realistic quality "} +{"id": "6004487", "video_name": "fde35043-7d83-57bf-b3e0-2ab396e81c78", "text": "3d clororful fruits falling from a pink sky "} +{"id": "0004089", "video_name": "02ff1181-d494-5dd1-9bb5-df831f8b4081", "text": "1950s super 8 footage of a vintage black and white vampire film "} +{"id": "6002602", "video_name": "1ecc5773-dd2a-5758-9ccf-e972fd87477f", "text": "Pills landing on a emergency room floor, and ending up in the letter M "} +{"id": "1004394", "video_name": "51422353-2c56-529f-85f0-b256d084485a", "text": "Provide direction to ongoing building work "} +{"id": "8002959", "video_name": "81db1268-c5a0-5d91-9d63-ca61c0a1b93f", "text": "superman drinking cold drink can in anime style "} +{"id": "2004845", "video_name": "8d8c6852-e063-525f-8d88-00b6697db8a9", "text": "a 10 yrs old indian boy in his ancestral house "} +{"id": "7002313", "video_name": "a71be111-bddb-5e95-a825-2364f470f30c", "text": "life guards from bondi rescue tv show get surfboard bogged in sandcastle "} +{"id": "1004131", "video_name": "4c7c76b5-6dc9-5fb4-9f28-664c2b510183", "text": "singing Chibi flowers moving in glistening rain, PLA filament, movie video "} +{"id": "1006747", "video_name": "7b8a7521-aa66-56ae-abcc-94c23a90e966", "text": "A sad man slowly walking down a New York street covered in red rain for 5 seconds 16:9 4k "} +{"id": "2006989", "video_name": "a02e5aa7-400a-582f-a221-3a59254a5b3c", "text": "speed racer driving in a RX7, with Trixie in the passenger seat "} +{"id": "2006677", "video_name": "e23078fb-6966-5e51-8dde-3f6c2545794c", "text": "5 sec video of bombing in hiroshima "} +{"id": "3004735", "video_name": "aa5579b3-9b60-558e-8d70-f48556f233d6", "text": "A beautiful oasis in the middle of the desert with waterfalls and stunning plants, blistering heat rising from from desert, "} +{"id": "3006607", "video_name": "99c244df-0b4b-57a5-a6bd-133d80d7b9cb", "text": "1980\u2019s British pop group music video "} +{"id": "1003729", "video_name": "44dc34df-3c65-5e81-b7a6-e95dc4fdb358", "text": "two boyfriends sitting on the swing "} +{"id": "8003068", "video_name": "be2203ca-0f75-5948-9aa3-2479a16117ec", "text": "many eggs in underground cave by Charles E. Perugini, by Fred Sandback, by Renne Magritte, by Max Ernst "} +{"id": "4003916", "video_name": "06b7dc05-ef39-5061-80c9-3701ac624472", "text": "iphone 13 pro on white background from personal view hold in hand and home button beeing pressed once "} +{"id": "1005776", "video_name": "6a43427a-c372-56b7-918a-1ce32f9568b1", "text": "speedly running race cars in a rallye course, drone shooting "} +{"id": "7003444", "video_name": "487c6b63-c970-59d3-a5a4-1379d8808626", "text": "poverty , children , innocent people, 4k , reall life "} +{"id": "2007963", "video_name": "86870b2f-efbc-565e-b3f6-5a6b5aba92e1", "text": "Jesus who looks through the firmament at the inhabitants of the earth "} +{"id": "7003531", "video_name": "1df5430e-23e6-5e0b-9b3d-98ca3a90c3c5", "text": "a Chinese fashion model is walking on a stage wearing luxury dress "} +{"id": "2003541", "video_name": "f7ea9e06-6665-58c0-a1eb-3992aad95cc1", "text": ":unreal engine. A man in the near future stands in front of the camera, shouting. His words echo through the cityscape filled with advanced technologies and futuristic landscapes. His shout, full of emotion, resonates with the viewers, making them feel the intensity of living in the near future. "} +{"id": "1006456", "video_name": "76260454-8edd-59a0-9b41-676eb9a74ffb", "text": "china yunnan many people in blue bus "} +{"id": "7002256", "video_name": "222f6bd7-0f08-5ad5-849d-6639cce5d221", "text": "Describe the lush, green forest where Ganesha lives. "} +{"id": "2003244", "video_name": "5b7df92c-efb5-5a96-8921-4fbe08c3847c", "text": "a ghibli animation of a party in the park, dance party daytime dance party in the park, with djs trees, and sunshine, "} +{"id": "3005953", "video_name": "8da536ca-3ef9-5bdb-8f2e-73b97206e7fa", "text": "a cute girl kissing by a boy surrounded by a beautiful scenery and lightining "} +{"id": "8001122", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "Envision Lion surveying his kingdom from a high vantage point, his gaze steady and wise. "} +{"id": "0006654", "video_name": "307207b9-d162-50bf-90d2-a4175632adf3", "text": "A beautiful woman with a great figure, dancing in a yoga outfit "} +{"id": "4004698", "video_name": "3882ca30-a441-50e4-85d0-0fc03ba123da", "text": "The sun dipped below the horizon, casting long shadows across the valley that separated the two kingdoms of valoria and drakor. "} +{"id": "0006623", "video_name": "2fb8d80d-6782-5659-aef5-6e5c6324f70d", "text": "The news of the magical flowers spread throughout the community, and everyone eagerly awaited the day they would bloom. "} +{"id": "4002635", "video_name": "c60ac9b8-e860-5c6e-9ef3-69d407032cf7", "text": "a man have lots of money and happy "} +{"id": "7002202", "video_name": "2d02a371-ea45-5ec4-91aa-70fbb30909dd", "text": "There are 5 young people in a park. One is an amorous musician, another an idealistic painter, another a melancholic poet, and another an oenologist working in a vineyard. "} +{"id": "1005873", "video_name": "6c144e93-0021-53bf-b704-34226c5c53a6", "text": "a young female vet is taking care of a pony in the vet "} +{"id": "0003775", "video_name": "4328ca23-4670-599d-8160-5d85fd29b8fb", "text": "Conclude the story with Monkey and ekephant not only finding the gold coin but also discovering the true treasure of their friendship. Highlight the values of teamwork and loyalty. "} +{"id": "2005180", "video_name": "69bbe1e1-b5b7-5f0e-a6ee-1f1cef68599c", "text": "Oliver had eight long and wiggly arms, each with a mind of its own, and he loved exploring the vibrant underwater world. "} +{"id": "4004296", "video_name": "3af98e1a-c347-5829-bad3-eb06d3fd9908", "text": "the shadow of a tropical steampunk horse running "} +{"id": "0005749", "video_name": "208a495d-e305-5e91-bd5e-b802d5a3006f", "text": "the 10th doctor david tennant eating soup in the shower "} +{"id": "1003046", "video_name": "3800d9b7-5d9e-5004-89b1-8447cfdd3a4c", "text": "piece of glass into human heart animation slowmotion "} +{"id": "2007093", "video_name": "e8e7d38d-8571-5689-b121-79da51db7a22", "text": "etro comic style artwork, highly detailed Super Cat running, comic book cover, symmetrical, vibrant "} +{"id": "6004480", "video_name": "e9a2d1c6-58e2-56cc-a423-151427c43dd9", "text": "A boy sitting near window listning lofi song in night and he is sad "} +{"id": "0004324", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "Husky dogs chasing and running on the prairie, aerial view "} +{"id": "2003781", "video_name": "52f95fe2-58cb-5ef1-a1dd-cf50bc326abd", "text": "a man with googles and great body ripping his full suit in night time in anime style "} +{"id": "3003660", "video_name": "bd3810b1-e7e2-50eb-99e3-d4b2613e3951", "text": "Describe the moment when a tiny mouse unexpectedly crosses paths with the formidable lion. "} +{"id": "8002682", "video_name": "64a047c4-9a83-5135-a2b1-d26a7e32e54d", "text": "The young woman comes to a clearing in the forest. In the middle of the clearing is a small cottage. The young woman approaches the cottage, and she knocks on the door. There is no answer. She knocks again, louder this time. Still no answer. "} +{"id": "2005528", "video_name": "9df8b365-28f0-5a05-b6fc-eaf68ce5d8fe", "text": "villagers talking laughing dancing. Illustrative style. "} +{"id": "3004858", "video_name": "a0460eed-f68d-51fd-8032-48b6f4a66c2f", "text": "big elephant in jungle are face to face "} +{"id": "8003458", "video_name": "3d56c505-fc8f-598e-a888-763611edbdd3", "text": "Helena Handbasket, in her fabulous array, Primped and preened with flair, for her holiday display. "} +{"id": "2006367", "video_name": "605b0b4a-53c5-5658-9f8e-3ef621c202cd", "text": "a beautiful sexy girl playing flute "} +{"id": "8002506", "video_name": "7d8fc09e-01a7-5865-9c0b-95c5896c08a5", "text": "Suddenly a lion pounces on her child. What will she do then? "} +{"id": "0005767", "video_name": "20f4ef58-405e-5dca-9aff-f065759bbfd4", "text": "spierman sitting on a tower about to jump, cinematic, high contrast and saturation, 50mm "} +{"id": "4003847", "video_name": "63bdfa4d-023b-568d-bd84-d3d34fc47684", "text": "the mysteries of an ancient human group known as the Denisovans. "} +{"id": "1003325", "video_name": "3d31ee1d-7414-5707-b0e3-90cc881e6663", "text": "Healing exploration in a snowy forest. "} +{"id": "3003927", "video_name": "542a38ec-c736-5396-98f2-c84427f3090d", "text": "a fading pair of violet eyes, behind them the outer space full of stars, the eyes are open soflty "} +{"id": "2003171", "video_name": "ae1c8a0d-ed78-5f20-8fce-8d0b00b5ae6b", "text": "rave party in the desert Message: DUST 2.0 (Font: MODERN) "} +{"id": "1006274", "video_name": "72dad4cf-845c-54d3-8457-7fba856906c7", "text": "A pineapple teaching a math class to apples. Cartoon style "} +{"id": "8001496", "video_name": "2173098d-fc7d-5ba4-b6f0-b34057854e8b", "text": "The balloon pulls the dog into the air and the dog smiles Message: 1 Attachment "} +{"id": "7002678", "video_name": "9b22eb22-0e14-5f80-8079-9c233ba00dc4", "text": "Show an animated sequence of their friendship evolving into love through changing facial expressions, from playful teasing to moments of shared intimacy. "} +{"id": "0006224", "video_name": "28b48887-9594-5475-a435-c6b72efd79b1", "text": "a stunning drone shot of effil tower and do 3d rendering in 4k "} +{"id": "7003584", "video_name": "451b3840-9c3b-5988-9490-429c8e5cd327", "text": "a mysterious man talk with villagers in the dark night with lush illumination background "} +{"id": "5001824", "video_name": "73c50145-8456-5d25-bf64-60d9670413e3", "text": "create a chart of what would you pick game between 2 things, with 15 different questions. in the first column add the thing1 and in the second column add the thing2. in the third column add an imaginary percentage of how many people would choose thing1 and in the fourth column add an imaginary percentage of how many people would choose thing2.Make it in a tiktok video format. "} +{"id": "0006705", "video_name": "316dec8c-fb85-5ac8-a0e4-b39c8fd5f0f1", "text": "frost covered a small town with hoarfrost "} +{"id": "1005760", "video_name": "69f7ad8f-2ebf-5209-87a0-536ec7016d88", "text": "old DIGITAL CELLPHONE RINGING WITH SOME NEON LIGHTS, AND CARTOONED THUNDER "} +{"id": "2005514", "video_name": "bd987db8-7d9f-5db7-b2dc-76d54eb01bc2", "text": "body of cells breathing and forming the universal energy of life "} +{"id": "2003747", "video_name": "843679cf-23c9-501a-94aa-7d92a65781be", "text": "road workers fixing the road with jackhammer "} +{"id": "1005216", "video_name": "600ea9ee-ba75-5782-829d-a2bf7c741a12", "text": "beautiful girl carrying the bucket of water for the old woman, with a serene backdrop of the flowing river, showcasing the simplicity and purity of their interaction. "} +{"id": "2006880", "video_name": "ea69a2e1-f804-522a-9ada-ca612aba13dd", "text": "Outside, the house is transformed into a Halloween wonderland. Intricate decorations adorn the landscape, from intricately carved pumpkins that seem to come alive in the lantern light, to ghostly cobwebs that shimmer with the faintest touch of wind. Skeletal figures loom in the shadows, creating an atmosphere that blends the spooky with the enchanting. "} +{"id": "0005965", "video_name": "24207e05-e476-57d7-8a15-f5fde0680855", "text": "desert places with lots of animals "} +{"id": "4004562", "video_name": "da994c7e-f3e0-5c2f-9651-e30beb01be7f", "text": "instructional designer laying out storyboard on desktop computer "} +{"id": "7004195", "video_name": "5fa8ab4e-4c34-5780-bd75-18b7386ca4d2", "text": "corn dandelion humanoid figure monster wearing hijab, symmetrical, highly detailed, digital art, sharp focus, amber eyes, elemental glowing "} +{"id": "8001677", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "Girl in suit washing dishes in the kitchen "} +{"id": "2003810", "video_name": "d3d9f1ec-3fdb-572d-9569-27f46da631ec", "text": "Explorer caravan approaching a giant strange and radioactive towering astrolabe in a strange trippy alien world "} +{"id": "4003017", "video_name": "a997b31f-fd6a-548d-a2bf-40a56e2ba092", "text": "superrelastic high resolution water with wind effect sun set "} +{"id": "4003526", "video_name": "7069a0e1-b2c8-5d66-a4c3-edde90c9a040", "text": "man became happy then sad then angry looking to the camera "} +{"id": "8003993", "video_name": "68a3ccd5-1449-505b-a717-a043ba557883", "text": "rabbit lauging on the moon realistic "} +{"id": "1004421", "video_name": "51c07823-b97d-5dde-a4c1-d9efc95269a9", "text": "LIGHTNING AND FALLING AND IN THE BACKGROUND OF THE VIDEO AN EAGLE FLYING TOWARDS THE SCREEN "} +{"id": "3005298", "video_name": "79881b1e-5fb6-5a0b-8dd2-702beadff212", "text": "person sitting and eating a burger "} +{"id": "2004481", "video_name": "8fb6d6fc-f33b-565f-a165-45b05486199f", "text": "Fast forward from the Stone Age to the modern age, building houses, ends with Frimak post "} +{"id": "6003768", "video_name": "69a5d665-a76e-536a-b4ea-554c0e71a102", "text": "A futuristic cityscape where nature has reclaimed the buildings, with giant trees growing through skyscrapers "} +{"id": "0004151", "video_name": "042c196b-a3e6-579a-a384-75e3a19a488f", "text": "Beautiful nature of Albania, mountains and coast "} +{"id": "3006885", "video_name": "ad50a856-8961-527b-bf38-0f75ddf99461", "text": "Wolf chasing rabbit, moonlit forest hunting. "} +{"id": "8002195", "video_name": "26a242da-8595-5715-bc81-6d4477417466", "text": "doing a short video for banned ux,ui , full page ,ecommerce buisness, to be related with the electronics niche "} +{"id": "1006485", "video_name": "76a5b8b0-6806-55c8-b034-3912902e644e", "text": "Three missing walkers have been found dead after failing to come home after a hike at the weekend, police have said. Emergency services were called to the Aonach Eagach Ridge on Saturday after the group were reported missing shortly after 9pm. Police, HM Coastguard, the RAF and Glencoe Mountain Rescue team were dispatched to the scene to locate the missing hikers. Tragically their bodies were discovered a short time later and a recovery operation took place. Police Scotland said there do not appear to be any suspicious circumstances surrounding the deaths, reports the Scottish Daily Express. "} +{"id": "1005282", "video_name": "6127340e-c4ec-5a83-8505-ca6c1f1019ab", "text": "worker and client at barber shop "} +{"id": "2005500", "video_name": "d519f366-a393-5020-95a4-e634ff48f989", "text": "When the soldiers looked up, they saw that a crow was slowly flying away carrying the necklace. "} +{"id": "2003103", "video_name": "da11b095-d354-554a-bf2f-e00dad0b7b9d", "text": "How about we have a race? "} +{"id": "1003562", "video_name": "41b1cd4f-6d90-55c7-9309-6e1ee1ab295f", "text": "realistic cleopatra has a 7 inches wooden rod in her hand and she is laughing "} +{"id": "2003823", "video_name": "9add14b9-7f6e-52fc-89b7-50ab8b69472e", "text": "animation villages and many people going to mela "} +{"id": "1005535", "video_name": "65e445c7-d018-5851-a464-3ec9850e312b", "text": "kids at disneyland, all playing with their ipads "} +{"id": "3004425", "video_name": "8a2089d8-764e-5a80-bced-72c879b9072f", "text": "hand is writing , raining outside"} +{"id": "6002078", "video_name": "5f065b1c-f501-5a9a-99f8-5e8ce91f9843", "text": "Start with an animated or filmed scene featuring a playful elephant character. "} +{"id": "0003409", "video_name": "3d2734bc-1028-56fc-863d-5d6d3a239d0c", "text": "Showcase cell phone store with a wide range of mobile phones of samsung, oppo, realme, vivo, xiaomi, iphone "} +{"id": "3006645", "video_name": "f1de8405-d0c4-56d2-9825-eda184078b20", "text": "rainy magical forest in studio ghibli style, make the water droplets move, animate some leaves in the wind "} +{"id": "8001746", "video_name": "ad68f6e3-c138-51ab-8512-2096ee10cf0e", "text": "beautiful girl from game final fantasy "} +{"id": "4004922", "video_name": "b6806c83-d128-5f26-8978-4e7c6226d02a", "text": "indian monsoon in mumbai graphics style in anime "} +{"id": "6003294", "video_name": "249fc530-4190-52eb-9531-59c95b414dae", "text": "black and white mountain with birds flying "} +{"id": "1004541", "video_name": "545876b8-9880-5373-869f-fff50cd026ec", "text": "The main character packs his bags and researches his travel destination. "} +{"id": "1003771", "video_name": "457489c4-4e37-5adf-9a98-86e7b058cd78", "text": "beautiful hawaii sunset with dolphins leaping through the air in the ocean"} +{"id": "7002900", "video_name": "b53d5dad-3692-5134-8d34-8ddf01395f63", "text": "the trailer for a multiplayer fps shooter based on gta 6 and cs:go is supposed to be 15 seconds long "} +{"id": "2007385", "video_name": "d6f171df-167a-56b7-8e38-12c9af24d3fe", "text": "The blond haird bearded man walking under the hot sun "} +{"id": "0006288", "video_name": "2a0b0053-3388-525a-b990-07896a11442e", "text": "Depict a graphic of interconnected algorithms forming an ecosystem that thrives on spreading falsehoods. "} +{"id": "2004870", "video_name": "60a4dd7a-b08b-50bf-8aae-4be223a35ab9", "text": "Ophelia, woman in a orange dress dancing in the rain in the street of new york, zoom in feet"} +{"id": "7003706", "video_name": "5117cc5c-68cc-514e-83a3-98a5e107cfd5", "text": "lord rama returning to ayodhya ancient city animated lighting "} +{"id": "6004500", "video_name": "ab2292f4-fa9b-5397-99ec-8e546c0cbd04", "text": "Baphomet nightmare ultra realism cinematic lighting "} +{"id": "1003440", "video_name": "3fb54190-4aad-5b27-ac75-7a8ff0921b54", "text": "fruit, strawberry, cherry, grape, peach, cgi, 1024K "} +{"id": "2005489", "video_name": "84607bd9-ed13-5855-872d-d3084cd19ac6", "text": "armed men in black suits stand in the foreground with a desert eagle motionless in the shape of an arrow zoom "} +{"id": "5001714", "video_name": "f706cccd-ca80-551f-a94a-679ffb6e6f9e", "text": "people cooking chiken, view from above, Studio Ghibli, by Miyazaki, hand drawn, vibrant "} +{"id": "3004139", "video_name": "e29b9a56-7499-5169-bb5e-31b9706d2b7c", "text": "powerball lotto from the lott branding "} +{"id": "4004181", "video_name": "10a848da-4bfd-562f-8b14-dee02151ea2e", "text": "The image immerses viewers in its intricacies and ambiance. "} +{"id": "8003387", "video_name": "6a76e956-d8bf-5a1f-a128-dbba39757e0d", "text": "create a video in which the image of a person from whom his vibrations come and how they rise gradually, while the dynamics of the video goes on, the heat is spinning around and he is in a beautiful outer space "} +{"id": "4003618", "video_name": "f5b8fa33-7a89-5754-ad51-bfc116dda49e", "text": "spooky 1970s film of a haunted anchor "} +{"id": "3005237", "video_name": "6e1b6a76-c979-58ec-9f57-fff112490104", "text": "Create a video that visually illustrates how AI processes vast amounts of data, identifies patterns, and makes predictions or decisions. Show the flow of data, the role of algorithms, and the concept of machine learning in a simple and engaging way. "} +{"id": "0005219", "video_name": "16d1da26-0fad-559b-af8e-1d21f7ef21fd", "text": "a hacker is walking in a postapocalyptic world 3d "} +{"id": "0005610", "video_name": "1df5a85d-4769-524b-a26d-8c2c9eafe550", "text": "a red dragons eye glistens with sunlight shining off of it "} +{"id": "6004979", "video_name": "df9e0a27-6805-58ff-b8d1-dd62d8a10485", "text": "a video with Russian culture, people, place, 4k "} +{"id": "4004561", "video_name": "e3787056-0614-5409-9194-60b866661a32", "text": "A jungle at night, a small campfire is lit and in the back stands a old jeep and a canvas white tent "} +{"id": "8002164", "video_name": "e4e06828-3ff4-59ba-99b2-ef523b6ad96f", "text": "70s Surreal Paranormal TV program. Nick Frost diving into A giant tub of hummus. Destroyed Paint splatters, free jazz, jackson pollock. Grainy Film. Warped Tv detuned channel. Test Card. "} +{"id": "0006066", "video_name": "2602adf1-132d-558d-b6e3-848c3d0e66a9", "text": "With the golden key in paw, Timmy the teddy bear and Lily the little girl tiptoed out of the room and down the hallway. They reached a tiny door that neither of them had ever noticed before. Timmy inserted the golden key into the lock, and with a twist, the door swung open. "} +{"id": "2003501", "video_name": "ccaacad8-e4aa-5a07-98ae-87a13872c4b6", "text": "popcorn with wings flying over city 8K, Cinematic lighting, Motion 2, Seed 4, particles moving in background, slow zoom, drone footage image: "} +{"id": "8002484", "video_name": "4254349b-0916-5883-9f70-3a232a4531aa", "text": "trees are shaking and mountain is shaking. "} +{"id": "6003019", "video_name": "410ca997-f4b7-53b9-ac1a-55be1cbf47c9", "text": "show a Stone Age man with a smoking weed "} +{"id": "6004891", "video_name": "e74151a2-a4e2-5133-9f50-0bc1a68c5be7", "text": "young blonde girl wearing futuristic clothing in a spaceship "} +{"id": "0003618", "video_name": "40908e43-cddc-56df-86aa-b40b386758e0", "text": "the woman walks and smile aimage:1702333107833.png "} +{"id": "0004932", "video_name": "11b4f4da-1ab2-5a46-810b-d1b983b00e9c", "text": "Made out of trees and leaves Message: UMIKA DHRUV (Font: MODERN) "} +{"id": "8002674", "video_name": "fcb8fa8d-ba2d-55b8-b59d-e6736b0b6d37", "text": "Ronaldo and messi dance in Indian wedding "} +{"id": "0003772", "video_name": "431265f3-b14f-5abe-9415-cb2e3933ff0d", "text": "Chinese chicken progress team picked up with chopsticks and a local Chinese restaurant "} +{"id": "1005384", "video_name": "63003080-90e1-550c-a6a8-0888d6cffdae", "text": "two lovers running from a giant in a scary forest "} +{"id": "8003359", "video_name": "13747398-fa6b-5636-864f-ed9776ddf3a3", "text": "highly detailed, photorealistic, 8k, talking fruit "} +{"id": "6004134", "video_name": "2f357f6a-3138-5d77-8ba6-5766c2086656", "text": "a SAR bomb of Poetry based in bees "} +{"id": "4003946", "video_name": "44f34d45-4e6b-550a-b93b-7f4c5bfa1d72", "text": "dinosaurus in a volcan trying to drink "} +{"id": "8001141", "video_name": "9dd0de9a-e760-50f0-bb88-6817a25928bc", "text": "gothic water color painting of a ghost wandering cemetery "} +{"id": "1006005", "video_name": "6e61d352-2268-5d73-ae6e-1418fe90995f", "text": "vintage, man in a black tuxedo, sitting in a vintage limousine, vibrant colors "} +{"id": "3005377", "video_name": "138a5b53-b38d-5e96-91d0-b42b3f6051f6", "text": "ceiling fan, one ceiling fan, zido, maxar, fans, fans hals, digital art h 9 6 0, productphoto, scenic full shot, rendering, tall ceiling, bottom angle, h 576, isometric view, wide portrait, h 8 0 0 c 1 0. 0, overhead angle, low ceiling "} +{"id": "7003174", "video_name": "7bed2be7-f50b-5750-8878-fbceca59eeff", "text": "One day, I looked out from the window of my home and saw people turning into zombies on the road in the community. They began to attack the people in the community crazily. It was very real, and the plot of the movie became reality. "} +{"id": "1004321", "video_name": "4fcf0626-50c3-548e-a73a-27141a5e3af2", "text": "An angel flying in sky people looking angles scene "} +{"id": "0004806", "video_name": "0f73c135-17b0-59b6-8f45-fbc9704a932f", "text": "two monks walking towards himalayas, against gusty wind "} +{"id": "4002486", "video_name": "5e38aa64-1c55-5c87-b758-fcf64ccc7d13", "text": "person turns around to look over their shoulder "} +{"id": "8002492", "video_name": "e74805ff-f24c-5782-8709-1fa0b5fc813e", "text": "a new world of whales in space with them swimming in ultra detail "} +{"id": "8003502", "video_name": "0148185e-08b2-58e7-a41f-56dc06b17ba1", "text": "old faithful exploding against the night sky "} +{"id": "1006086", "video_name": "6f910c2c-692d-504a-a2a1-754eaf0506f0", "text": "cute lady saying thankyou for watching "} +{"id": "4002800", "video_name": "8842496d-8582-583d-9c28-189a7362bc13", "text": "A Navi flying on an Ikran over the blue and purple glowing Forest of pandora (night) "} +{"id": "8002416", "video_name": "a9ea3f72-0800-5254-86bf-e24b28427a58", "text": "man feeds a moose in canada, photo realistic, 8k "} +{"id": "8002690", "video_name": "e2704daa-226d-51b8-aa1c-f48c9a249921", "text": "Emperor Elagabalus, crowned at the tender age of 14, had a penchant for the bizarre when it came to amusement. On one extravagant occasion, he released lions and leopards into a lavish banquet. hyperrealistic "} +{"id": "0003359", "video_name": "3c355cd0-972d-5e91-ba60-d04c2308bb54", "text": "a retro telephone, showcasing the rotary dial, cord, and the sleek design of a vintage communication device. "} +{"id": "4004005", "video_name": "ce86ae68-7480-5d01-83bc-425543dcda7b", "text": "a woman with gold and black details, 1girl, solo, red eyes, black hair, long hair, looking at viewer by Artgerm "} +{"id": "2006292", "video_name": "07b20dcf-05c3-5a84-8622-05b45ddbf9b8", "text": "Animate a quick scene where Chihiro is crossing the pipe above the boiler room. "} +{"id": "7002171", "video_name": "0eb1e0e5-3b68-56b7-a195-67ecacdd8376", "text": ":parrot on the tree in the jugle near to elephant "} +{"id": "3006636", "video_name": "b833cb45-23f7-5550-a6e3-c034e08dc7ad", "text": "Take a photo for a YouTube profile with the letter H, play with elements like swords and story things for the profile photo "} +{"id": "7004074", "video_name": "430aabf6-1005-5eea-8690-7c40cc1ee48f", "text": "a man sleep on grass open his eyes "} +{"id": "2004441", "video_name": "14b198fd-7c84-5b87-a51f-e3ba01293bf5", "text": "A Dog, 3D video and 4K quality "} +{"id": "5001419", "video_name": "e7ec64ba-17f3-5c55-91d9-8c8676994102", "text": "Create an image of Superman, the iconic superhero, walking on the left side of the frame. Superman has his classic costume, strong physique, and a confident expression. Walking alongside him on the left are his two pet dogs. The first dog is a Belgian Malinois named Belger, characterized by its strong and athletic build. The second dog is an Afghan Hound named Armand, known for its elegant and silky coat. Belger is walking energetically, and Armand is gracefully moving beside them. The background showcases a cityscape with a clear sky, emphasizing the superhero theme "} +{"id": "0005622", "video_name": "1e3f5407-728e-5dd5-bcd0-cb427e88d144", "text": "a rocket launch, a wormhole, a spaceship, four different planets,realistic,science fiction film,lower brightness,Nolan style,8k "} +{"id": "0005647", "video_name": "1ea09507-0634-58e5-b11d-356895c9c9fe", "text": "a Person looking at their mobile screen and in the screen there is esport logo person clicking on tha "} +{"id": "2006929", "video_name": "7fed0a55-366a-5f07-bb14-efc7df64e12f", "text": "cute cats and rabbits chasing each other in a cute garden "} +{"id": "1003662", "video_name": "436b627e-96b2-5e71-85f0-a07fc93d6617", "text": "the sun rays appears rear the grey clouds, macabre style "} +{"id": "4002102", "video_name": "2be73b10-dbcf-5a15-9106-5530b17fecd5", "text": "an intellectual disco ball reading a book, technicolor "} +{"id": "5001500", "video_name": "bc826fd4-dd01-5a65-81ad-30e6e7b18171", "text": "The leaves of the trees move with the wind, the leaves fall gently from the trees, the leaves on the ground move gently 16:9 motiom "} +{"id": "4004231", "video_name": "871b1060-9e8f-5675-8d13-02d86cc9cb2e", "text": "a super standing still on a road in forest, the door of car is being opened "} +{"id": "2005170", "video_name": "873d48ae-b086-5525-a238-ab5293c2e1d3", "text": "Create a video of a wealthy young Asian man getting out off bed in the morning. "} +{"id": "4003237", "video_name": "fc9e57d0-1895-5082-937d-eb9f70dd1696", "text": "a young brunette couple with a kid waiting in the airport for the plane, pixar style, warm lights, some lens flares "} +{"id": "0004759", "video_name": "0ed00583-c073-5969-ba9e-689d9ea17e83", "text": "girl looking out car window in passanger seat "} +{"id": "5001543", "video_name": "b57ad3ee-599f-5c4f-a180-c1209032c997", "text": "Hindu God Lord Rama giving blessing. "} +{"id": "6003950", "video_name": "8aa27ec9-b842-59e2-a6c8-44ce4d0ad939", "text": "a long video in 24 fps with an univers with a lot of fairy\u2019s in the 1950s filmed with a super 8 camera with a lot of ethnicities and high quality in New York "} +{"id": "2006228", "video_name": "6fc0a61e-20ce-547a-96bd-e4eef2a27626", "text": "headlights shining on the closed area 51 gate at night "} +{"id": "1005787", "video_name": "6a85198a-3416-5196-8b19-708818a726a9", "text": "Illustrate the children stomping their feet joyfully. "} +{"id": "7004641", "video_name": "a071066f-b815-5f79-b40f-020919511253", "text": "A Spanish palace with illuminated glass windows "} +{"id": "3006314", "video_name": "7fed2e3c-fa87-5cfc-80d3-a3bd969570e4", "text": "A paradisiacal beach with a beautiful booth without people "} +{"id": "2004821", "video_name": "e0edbda5-c9e6-51da-8e28-9c2edddb45e2", "text": "Amidst the deep dark depths of space emerges a lone planet with signs of life, slow camera zoom to centre "} +{"id": "4003221", "video_name": "4a97653c-be0c-5675-a1e1-03d115c8e502", "text": "A panda holding a microphone interviews on the street "} +{"id": "0005805", "video_name": "21829e80-ee0c-5b6c-bb37-ccc27d3b32af", "text": "Rainbow coffee swirling in the pot. "} +{"id": "0003815", "video_name": "43f8d98c-7946-5814-ae12-099558486676", "text": "2D animation of the tortoise and hare race in the first scene, the hare mocks the tortoise "} +{"id": "3003695", "video_name": "724c7176-0d1f-5148-a3af-b443595832b6", "text": "Video of an eye in space with purple, blue, red and orange colors\n\n The eye is framed by a colorful nebula, with shades of purple, blue, red and orange. The pupil is black and deep, like an abyss. The iris is colored purple, with a red and orange border.\n\n Suggestive and mysterious 4k video. The eye seems to look at the viewer with an expression of enchantment and wonder. The contrast between the black of the eye and the bright colors of the nebula creates a very powerful visual effect. "} +{"id": "3003443", "video_name": "27e8f42f-0787-5a31-bdc0-c2fb512513e7", "text": "The movement of clouds with the twinkling of stars, 8k ultra quality "} +{"id": "8001432", "video_name": "06d79113-db88-504d-a0e6-919b3199f57b", "text": "9 year old girl turns into a dragon "} +{"id": "2004916", "video_name": "0e6455d1-084c-5e85-972b-4151113480ec", "text": "the Zebra stands still as the colors in the image change rapidly and constantly and the triangular connections in the background move and reshape "} +{"id": "7003198", "video_name": "64c83d35-12c3-5cbf-8811-84ca28566a04", "text": "alexandra daddario, upperbody focus, slow motion, cinematic "} +{"id": "4003843", "video_name": "1f4baaed-792f-53aa-9546-d44a858598b7", "text": "a prophet on horse holding a shield and sword "} +{"id": "4002814", "video_name": "297baaa9-7225-5f73-b39f-7c8a7ee5cb9c", "text": "flying saucer over the city, 1960, retro video "} +{"id": "1006477", "video_name": "7687d7f0-4a8e-56fb-94ad-a3b2870eb472", "text": "However, one day, a fierce sandstorm swept through the desert, threatening to engulf the oasis in a shroud of choking dust. The creatures huddled together, seeking shelter beneath the protective branches of the oasis tree. Aria knew that they had to protect their haven of life at all costs. "} +{"id": "2006533", "video_name": "aa4b332d-3bfe-56b8-9a09-53b0d9e69373", "text": "What I loved about this book is how Verghese crafted the characters and the story with such detail and emotion. He also used his medical expertise to vividly describe the scenes of illness and surgery. The book was captivating, heartbreaking, and inspiring. "} +{"id": "2004440", "video_name": "9d9a5125-3256-5833-9483-4f85b36d18db", "text": "four Indian teenagers talking to one another "} +{"id": "8001318", "video_name": "3869ddbd-f58e-59da-a0fc-adec4fcf164b", "text": "An image of a young boy sitting at a simple wooden desk, studying by the dim light of a kerosene lamp, symbolizing his dedication to education. "} +{"id": "6002676", "video_name": "5efda31b-1829-5f84-a574-976411e94982", "text": "Generate a video of a butterfly thanking a squirrel "} +{"id": "3006670", "video_name": "96a88cee-c676-5d06-a6a1-b6067a65615d", "text": "1950s super 8 footage of a luminal surreal arthouse film fromt the 1970s "} +{"id": "0005948", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "Closeup, clearly visible goose down snow falling slowly, blue sky and white clouds background, blizzard, surreal, 3:4 "} +{"id": "7003211", "video_name": "414e4e0c-1d7a-5148-ab08-5de3e74b7ae1", "text": "create a video of yellow lightning sky "} +{"id": "4002788", "video_name": "f747d7e0-85a5-556c-b714-dd8619ce9e37", "text": "epic ufo in blue theme fling in stormy sky and beeming blue light on land green screen "} +{"id": "7004459", "video_name": "5d52d6c1-7550-5242-b8ce-a9d81eb67ed6", "text": "an oriole is flying across a river "} +{"id": "7004243", "video_name": "69b739b4-bbc2-574d-ad55-67f75000de7d", "text": "poster for movie design like pixar disney bear warrior "} +{"id": "1004307", "video_name": "4f95c22c-8866-59f1-b9e9-56b8b7c9adc5", "text": "The special forces advance with guns "} +{"id": "5001880", "video_name": "7ea9c4b6-cd03-555e-95b6-467642273f52", "text": "dichroic abstract deformed combusted plate made of transparent plexiglass and metallic round philigrane organic abstract informal artwork, iridescent, dichroic, transparent, spectacular, totally stunning, masterpiece, glowing, multicolored, black background, 8k, hd "} +{"id": "4004145", "video_name": "09ba81a3-5290-5e0c-bc9b-5aa28425e824", "text": "a lady who is best in figure and lead back to stone, that lady should be in the region of kerala "} +{"id": "1006707", "video_name": "7aeac92d-b9aa-5aea-a061-99b9add7492b", "text": "opening hand opening and showing a steaming potato "} +{"id": "0004325", "video_name": "0722eadc-b697-5fea-bac2-8f84d89df4dd", "text": "video of aliens laughing with humans in Paris "} +{"id": "1004036", "video_name": "4ad48e43-0632-5302-9c76-7f847133c3ec", "text": "man walking in a hospital, light backgrounds "} +{"id": "3006052", "video_name": "2b5628dd-3396-5494-8fdb-f85b95aa8b51", "text": "A golden majestic door floated in the sky, white mist slowly flowed out and floated on the left and right sides of the door. On either side of the door a sweeping monk gently sweeps the ground, occasionally stopping to rest and wipe the sweat from his forehead "} +{"id": "6003002", "video_name": "223c1595-c62f-5a12-a718-cec7c0c6c428", "text": "a golfer with red shirt, walking towards the green with his caddy. Water and sunset in the background "} +{"id": "8001923", "video_name": "539beccc-d82e-5ceb-bfea-d85c674119d3", "text": "Loch Ness Monster photo. clear underwater. face. smile. hires. detail. small fish. dof off. "} +{"id": "2003837", "video_name": "40197ecb-f163-564f-ae56-777d151b76e8", "text": "tarvelling in the space at speed of light "} +{"id": "2006614", "video_name": "fb42e7b5-006f-5c8b-a17a-4cf1420c9b84", "text": "Generate ocean waves, seaside cityscape, 4k, "} +{"id": "6002683", "video_name": "677a4075-837b-5fa7-ab8e-95382bb600fa", "text": "Photorealistic, school, boy, Russia, drinks water, video "} +{"id": "8002033", "video_name": "db9fe97d-4c30-5343-9a09-48af6e49877c", "text": "a woman holding a jaket. she drops the jaket and starts to walk "} +{"id": "2004650", "video_name": "8b995d71-c35b-5847-80ff-49737a1ed555", "text": "Make the figure in the painting turn around Message: 1 Attachment "} +{"id": "8001866", "video_name": "f36a2434-42fe-5540-b01a-5539117fbdc1", "text": "scp backrooms movement jumpscare horror liminal office building cinematic "} +{"id": "3005372", "video_name": "6e120947-cc3a-5432-8be4-d8b8d5563677", "text": "A woman sleeps in a dark bedroom, sunlight shines through the window. hyper realistic ultra detailed high contrast. Black and white, Film noir style setting, 1940. . 20th centuryfilm nor 1940s "} +{"id": "1005199", "video_name": "5faaf9fd-f996-5f20-a047-0a924cbfe947", "text": "Make a owl flying it must be like a thunder "} +{"id": "3006918", "video_name": "2258ccbf-5745-5342-8452-fb1e6522be0a", "text": "Picture Gus with a faraway look in his eyes, imagining distant mountains and unexplored lands. "} +{"id": "2005380", "video_name": "a29b300f-6b2b-5814-b4a0-fd015c3fac6e", "text": "A person celebrating a big event exuberantly. Balloons, confetti. "} +{"id": "6002797", "video_name": "d525d3f0-7fab-5acf-84ae-6e0fc5d27c8e", "text": "man with cresent moon head and sunglasses in a suit walking through a restaurant "} +{"id": "1005683", "video_name": "686d8bfa-b317-58d7-9067-45d7aa6692a9", "text": "non fighting with broom against monk "} +{"id": "3006117", "video_name": "d2b1024e-254c-5ab8-b9fc-ee4d9280b5e8", "text": "A Policeman making a Call Infront of a Bank "} +{"id": "3005350", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "a kid on a living room playing drums "} +{"id": "8001878", "video_name": "497d8690-3e07-5ccf-b292-051265ea9877", "text": "a steam train in the style of karel zeman "} +{"id": "6002390", "video_name": "a3bc16c5-8d6f-5dfb-8df5-d6b4d34555e4", "text": "human body with the heart and veins visible "} +{"id": "7003527", "video_name": "d1734d5b-91c3-5c63-9326-a9ad058c91c0", "text": "realistic girl in oversize stands near Mercedes Benz w124, HD, 3D, 8K "} +{"id": "8001423", "video_name": "0ea843fc-db02-56ce-a402-54ae7c7561b2", "text": "cartoon characters walking through the forest and holding big barrel "} +{"id": "7002156", "video_name": "54200c59-a94c-54be-8dcb-5bdd90ec321a", "text": "Once upon a time, there was a boy named Billy who lived in a small village on the edge of a forest "} +{"id": "4004072", "video_name": "615ac6a7-dccd-576f-ac47-ac3949d64995", "text": "a night view of sea and a big cruse "} +{"id": "4002363", "video_name": "2418f618-9989-5fa3-bed1-5ea5912e3e55", "text": "A cracked and dry riverbed, showcasing the severity of the drought. "} +{"id": "2007565", "video_name": "9c86ace7-85e3-5756-b9af-57b22b9fa1fc", "text": "sushi character fish swimming in underwater world "} +{"id": "8001370", "video_name": "b3feac34-bd93-502d-82a3-e585e1f0d0f9", "text": "drone flying fast through people surfing on rainbow water vaporwavw "} +{"id": "0004781", "video_name": "0f142550-26a5-5115-aef6-183f678b792f", "text": "a sea monster that rises out of the water during a storm, with lightning, movie style, movie, dark style, horror movie, realistic, 4k "} +{"id": "7003885", "video_name": "7102658d-b0d0-5d4a-9993-7297e6f40ba0", "text": "generate a animation in a studio ghibli style of one big noble gentle real size lion with a friendly face reading a book to a cute smart curious 6 years old human girl dressed in a cute, hand draw 8k "} +{"id": "2006015", "video_name": "78351270-1dcd-54fb-a7eb-918ea2e1a0a3", "text": "a fight between a human and a robot dog "} +{"id": "8003548", "video_name": "44252578-1fe5-5286-ae7b-0f8441560b3b", "text": "A picture of an intricately carved Yaxilan mural, covered in moss and surrounded by vibrant foliage, hinting at the existence of the Eclipsed Emerald. "} +{"id": "0005228", "video_name": "16f5d72e-b9cb-58f8-ba4e-b2b2fd284d7e", "text": "usb plug from 2025 glowing colors of LED and neon "} +{"id": "3004574", "video_name": "f0f08413-a11e-543b-aecb-0ebb332cccd4", "text": "A man meditating and the walls around him fall down "} +{"id": "2004389", "video_name": "b2778267-52d5-5928-ace1-4e8bfc02e950", "text": "make logo animation logi name is illusory shade "} +{"id": "3003281", "video_name": "b72538fe-40bc-5886-9594-27279af51d64", "text": "a cartoon illustration of boat with moon light in river full of lotus "} +{"id": "3005238", "video_name": "ba476a29-a32d-578b-8df4-363a7b4bf61d", "text": "piano in field. Nuclear bomb exploding in sky. Cinema. Camera far away. "} +{"id": "0004920", "video_name": "116f354e-f26d-5e52-98fc-7f5f6188d977", "text": "a woman sits on a train seat that runs close to the window "} +{"id": "2005920", "video_name": "1543003d-7e33-51d4-96da-f332255d6323", "text": "uncle canardia coding on computer and drinking sandels beer "} +{"id": "7004742", "video_name": "9266442b-00ff-599b-bbd3-11a8c5bb049a", "text": "likes on social media on screen "} +{"id": "1003176", "video_name": "3a6b9ca5-91ab-56a7-973f-626236a55b2d", "text": "cinematic image of a fish riding a bicycle "} +{"id": "2006481", "video_name": "efb30e73-924b-5ee8-b378-f03c49590eb3", "text": "man working and is very tired "} +{"id": "3006284", "video_name": "5e78226a-4caf-5717-9d77-e09ffa13dc03", "text": "cartoon little boy helping in another boy woolen sweater "} +{"id": "4002738", "video_name": "19555b20-0aba-554a-8ae7-a261ec1a7cba", "text": "harry potter playing soccer, giant octopus dragon, smiling birds "} +{"id": "7002186", "video_name": "683ed4cf-3267-5840-9676-eb4733ae2daa", "text": "Give me a thumbnail for True Creepiest Most Unexplained Stories "} +{"id": "6004367", "video_name": "b85574a7-9db3-5cb7-9010-20f864daa9c9", "text": "Clip with a man in the style of opium in a large room to music "} +{"id": "7003513", "video_name": "58b67c7d-6128-56d7-a9ef-e28b84ee8a36", "text": "As John navigated the solitary road, a chilling sensation of weight settled on his back. The pressure was unmistakable, as if someone had silently occupied the seat behind him. Alarmed, he glanced in the rearview mirror, but the back seat was vacant, shrouded in darkness. His heart raced as a cold shiver ran down his spine. "} +{"id": "0004290", "video_name": "067d9823-4079-5f02-ba3c-4e78513afdff", "text": "A group of people in a city covering ears from the pain of a loud sound. Anime "} +{"id": "3003030", "video_name": "0fa2a158-e10b-55af-9d01-bd31e784c359", "text": "a movie trailer for a blockbuster about the Soviet Union "} +{"id": "3006503", "video_name": "75266bd9-ea33-572b-9a0b-c28a92e8e95b", "text": "Whale, vertical takeoff into space from ocean, 8 bit graphic "} +{"id": "8002223", "video_name": "b19f8e10-92f4-5001-b348-3b0bea2b946f", "text": "Bugatti approaching the camera, camara zoom in ,slow motion, high octane render, 4k, extreme render "} +{"id": "1005052", "video_name": "5d6b88ac-cea5-5594-9c01-4cd08a2edc94", "text": "visuals to show Coldplay psychedelics full color "} +{"id": "2006207", "video_name": "f118a901-b098-510a-9308-2212fe6dff44", "text": "The environment during the ancient Jin Dynasty in China, and a person who catches fish. "} +{"id": "3003014", "video_name": "78f8244f-3c29-5af9-8ea2-b7ce3e3231ca", "text": "ironman relaxing in his luxury home,ar9:16 "} +{"id": "6002307", "video_name": "ffe0bc78-8497-5c82-a3d1-fecaf8fc647e", "text": "British Shorthair cat walking down the staircase,Croatian mountains in the background "} +{"id": "3006754", "video_name": "4eef7e8c-afac-5eb2-926d-d3be5751772c", "text": "an animation of an elephant using a hula hoop "} +{"id": "1004887", "video_name": "5a5a207c-5eb3-5762-9bfd-74e2e1ddd49c", "text": "Realistic Siren mythical creature crouching, underwater cave with ancient writing, mist aura on the ground "} +{"id": "7003805", "video_name": "440feeec-cf13-5c05-9db9-e46f00e00c12", "text": "Monkey sat on the Elephant in River "} +{"id": "2005530", "video_name": "77adde00-2e47-5354-ae6c-35fd5e0e79c6", "text": "cabin in the forest at twilight, rain falling and crows perched on the roof "} +{"id": "2006692", "video_name": "2d7ab72d-bd4e-508d-b4ab-9f496a6e90d1", "text": "Visualize a brief moment where a shy character is nervously entering a bustling social event. "} +{"id": "3005169", "video_name": "33161711-2f0a-57b6-bee8-64fd0f4df9fa", "text": "wooden rustic table with herbs and flowers scattered "} +{"id": "6002963", "video_name": "30380414-38bd-5cbd-adf6-8d06dd1cfe7b", "text": "close up of steaming hot French fries "} +{"id": "2003918", "video_name": "6267fcf3-ea6c-5a28-b3ae-c08bc737be4b", "text": "An eldritch horror slowly approaching the camera peering into your soul "} +{"id": "3004330", "video_name": "f14fa3f2-9071-5d5a-87a6-e97f4f811cfd", "text": "A japanese woman wearing business suite, whole body, black short hair, close up, daytime, aesthetic, detailed, rich, glow effect, blur, super detail, surrealism, hyperrealism, beautiful, 4k, ISO 100, realistic, high resolution, high detail "} +{"id": "1006316", "video_name": "7395ecd8-13e0-51d7-9667-b7b1130dc329", "text": "dream like meadow in the dark with only one spiky tree and muffled lights, vhs camera, real footage "} +{"id": "2004780", "video_name": "e9b5c49a-aa97-585b-92dd-1324611c3d5e", "text": ": a girl walking away from the camera in the style of sketchbook"} +{"id": "1004430", "video_name": "51f88305-e593-568b-8eb5-c47a41ded726", "text": "A daoist is casting lightning spells on the mountaintop, depicting a traditional Chinese landscape painting. The scene is filled with flashes of lightning and thunderous roars. "} +{"id": "1005697", "video_name": "68bb719d-26be-57bd-a44b-a0ed94fbd3b2", "text": "Jim Carry driving Lada Vesta on the moon and drink alcohol jim bean. "} +{"id": "2005777", "video_name": "19d36479-95a3-5204-929f-ff6b8099896b", "text": "A drawing of the earth turning on itself, the Eiffel Tower in 3D and the Leaning Tower of Pisa in 3D. "} +{"id": "7003016", "video_name": "e61edff1-b4cb-5dff-8be9-e375fca8a0e7", "text": "vibrant colorful 3D flowers,sunflowers,white ,yellow,orange sunflowers "} +{"id": "5001429", "video_name": "5fdbb6f7-0e20-560c-8147-63aaaa445d8e", "text": "a Japanese village down near a beautiful green mountain, birds flying upwards in the village in Disney pixar style "} +{"id": "0004795", "video_name": "0f453cdf-1500-5017-b3b4-7bb3e57a8451", "text": "Mia loved to play outside, especially when the sun peeked out after a rainy day. "} +{"id": "7003316", "video_name": "aff5c21c-4fb5-5c9b-a1e2-710dc713457b", "text": "Generate a 1 minute \nclip illustrating the progression of air pollution levels using a visual timeline, starting from a clean environment and intensifying as industrial activities and vehicular emissions increase over time. "} +{"id": "6003773", "video_name": "e73e448d-0c78-5014-b67d-668f2bb84f3e", "text": "An animated map aerial view of the Caribbean "} +{"id": "2006266", "video_name": "850b597b-4064-5528-88c0-14eee15b8d3e", "text": "rick sanchez walking up to morty smith in garage and hugging "} +{"id": "6004853", "video_name": "bd0a1e94-3a8b-5697-b04a-74c001c37ec8", "text": "the transport of electrical energy over long distances time 04:00 "} +{"id": "7004127", "video_name": "64d4c0e4-67e7-5574-a483-acdd6a58cdb6", "text": "Japanese girl in a bamboo forest "} +{"id": "7002972", "video_name": "2ab2a929-28f4-5752-a3da-0b60226e2d05", "text": "The colours flow outwards like waves of water. Message: 1 Attachment "} +{"id": "2005260", "video_name": "b254adb6-5c7c-575d-ab9a-d0433868196f", "text": "cartoon 2D animation New York with poples and cars in the city "} +{"id": "3003119", "video_name": "9a4782ec-466f-53f9-a10b-798ae9d8e9f6", "text": "empty trainstation, leaves, skin, eyes, road music video "} +{"id": "2006209", "video_name": "cd081ec6-0eed-5452-a240-b7b2062b32ef", "text": "richard hammond working out on a machine at the gym, muscly arms "} +{"id": "2005116", "video_name": "5477b534-e9da-5ec6-bafb-85a3acca9246", "text": "long shot of small hilly town with cars on the road. Busy street, churches around. "} +{"id": "3004714", "video_name": "b40ebda5-ac5b-58db-9cb6-8ef52a7862ba", "text": "teddy bear Adventure in the Land of Colors "} +{"id": "3003430", "video_name": "045ac6d6-7923-5132-8a0d-d6e0a9039ff1", "text": "zoom in on mysterious footage of solar eclipse in the bright sky, vivid, 4k "} +{"id": "3005327", "video_name": "4c346fcb-419e-5f2d-b0bf-cab51d76fa67", "text": "a jungle boy moving togather with jungli animals in deep jungle "} +{"id": "2007684", "video_name": "821d32a1-00e1-55e2-a657-ea16619d16ae", "text": "workers in orange vests sing in chorus, waving their arms at the Bolshoi Theater in Moscow "} +{"id": "6002025", "video_name": "8d731238-5fc4-5422-b848-e51a52c98a21", "text": "a HD and clear serene village emerges, nestled amidst rolling hills and lush greenery. "} +{"id": "6002524", "video_name": "272081c4-746c-5de6-9941-3933b7fee0d3", "text": "red robot running at the speed of light "} +{"id": "4003281", "video_name": "a6927d04-7977-5ae3-a44c-b665b76333a6", "text": "cartoon scene of a monkey sitting on a crocodile swimming in a river in a thick jungle "} +{"id": "7002716", "video_name": "369ef582-5d71-5459-bb2a-94c2ba5024fb", "text": "A brave Arab sheikh in southern Yemen smokes a shisha "} +{"id": "6002363", "video_name": "d141629e-8770-54a9-bec1-3054f16bcf40", "text": "Show them arriving home, tired but content.in Ghibli style "} +{"id": "0006682", "video_name": "30f51a42-8a2f-516f-be6f-234e5e209809", "text": "charcater baking an pizza with white simple background "} +{"id": "0003170", "video_name": "38875e41-2596-5818-b5ee-84c7fec7d723", "text": "gilgamesh king of assyrian in war with lain "} +{"id": "2004291", "video_name": "884b690e-3c0a-5bf7-98d1-e6b678e86434", "text": "a trainer deliver training to 4 bank staff before a computer in an office. Complex procedure shown in computer "} +{"id": "3006215", "video_name": "3c26efcb-bbf9-50ff-bed2-1a27d6643ec3", "text": "a men in the jungle film still very cinematic, "} +{"id": "8002049", "video_name": "f8cf81b0-90db-552f-8c7f-ff0454cfc377", "text": "clockwise spinning galaxies utilizing the colors purple and green 16:9 "} +{"id": "0003405", "video_name": "3d133c1e-1ba7-5c6b-8115-3c2e2dab0ebb", "text": "Visualize massaging shampoo into your hair "} +{"id": "7002333", "video_name": "90374236-f5d7-525b-a90a-bb9744f02f3f", "text": "In the moonlit darkness of a forgotten town, whispers of a malevolent force echoed through the narrow streets. "} +{"id": "7002707", "video_name": "31a62f77-d46a-5f8b-9454-fe8fd21d3395", "text": "Alien lizard man wearing futuristic armor and driving a spaceship "} +{"id": "8001191", "video_name": "c5a9ddb0-78b7-5327-8a4d-6016326df204", "text": "big bootys in a row, cinematic, wide angle, 1920X1080 Message: bonk (Font: MODERN) "} +{"id": "8002445", "video_name": "71750a56-51c6-561f-af81-b44e07dbf0e5", "text": "The dismemberment case broke out, and the serial killer "} +{"id": "1006929", "video_name": "7eaa590b-0c82-515e-9c2b-65c8d8fc50f6", "text": "A large businessman talking to a young woman on a NYC street corner, atmospheric "} +{"id": "3004324", "video_name": "52346f15-74ab-5d64-945f-94d58ed84c7b", "text": "a cityscape in autumn while it rains "} +{"id": "6004726", "video_name": "eed2b0dd-a75c-5bc0-8c5b-1cd3b4c3b386", "text": "\u201cThe Guru had a unique way of imparting knowledge. He would first teach his disciples through sermons, then ask them to apply that knowledge in their practical life.\u201d "} +{"id": "1006635", "video_name": "799fea9e-9a93-5480-8871-65362ce860b4", "text": "Opening special effects of pharmaceutical technology opening credits "} +{"id": "0004734", "video_name": "0e4f9042-c651-50ef-9793-b2e5ec546dfa", "text": "They did, however, have something special that helped them survive and eventually evolve. They had large brains. Brains that would evolve into the brains we have today. "} +{"id": "7004186", "video_name": "b6dc829c-7c6d-5eb0-85aa-92787fbe48a2", "text": "warrior in the style of \u201cThe Love, the death and robots\u201d show "} +{"id": "1003031", "video_name": "37a0373c-7373-5578-8f67-1a4f1c70f3ee", "text": "A sensual woman with purple hair, with a great neckline, manga drawing style, colorful background, 4k "} +{"id": "3004203", "video_name": "27397150-fd03-5d32-aec8-651dd766982c", "text": "950s art deco retro futurism scifi metroplis robot , rick amor style "} +{"id": "2003200", "video_name": "91276873-9ef8-5d74-8ce4-a96c7d16d161", "text": "Describe the setting when Gautam Buddha is sitting with his disciples. "} +{"id": "1006639", "video_name": "79b3475c-ba84-5bd3-bb0a-4fadc1e0e3f5", "text": "two people in a retro futuristic space port having a panicked conversation, art style by Richard corben "} +{"id": "0003714", "video_name": "42408874-c604-5eaf-84cb-d254fc205469", "text": "half man half fish doing office work "} +{"id": "6004122", "video_name": "3ac9547c-9300-59eb-8edb-b7fdce47b17e", "text": "a little sleeping white cute cat lay on the pink pillow. A window is behind it. "} +{"id": "7004810", "video_name": "f807ce64-b9d1-59f9-b4a6-f4f78870ae52", "text": "police helicopter fly over cannabis field "} +{"id": "7002226", "video_name": "026b0017-9082-56bc-89f0-b053d6efc042", "text": "a man POV wandering in a futuristic city, ulta hd, hyperrealistic video , ar 9:16 "} +{"id": "5001659", "video_name": "dd022fe5-22aa-5dd1-873f-794d8ef07c6c", "text": "tornado came through the kitchen and all the food gone "} +{"id": "1004712", "video_name": "577eb028-8d6c-5232-bd68-dc16f1ceefad", "text": "dog loved to play fetch and run around "} +{"id": "4004548", "video_name": "c3dc44a6-3c0c-558e-973b-e15e0a86814f", "text": "in to a bridseye view of goats in a field Message: 1 Attachment "} +{"id": "2004182", "video_name": "15e20471-82d1-598d-a881-08e09203bd0a", "text": "yoghurt left in the sun video "} +{"id": "7002372", "video_name": "b7a633d3-0890-57b0-8a8d-b0459ce9713c", "text": "A friendly fox with emerald eyes appears on the path and gestures to Luna to follow it into the mystical forest "} +{"id": "0003203", "video_name": "3928bffe-c961-5ebf-8144-2a69632cc321", "text": "Viking warrior queen rising hand to battle "} +{"id": "0003396", "video_name": "3ce12ad2-c25e-52b6-a118-d8385153ec14", "text": "liquid drip down in a horror nun face, grayscale , fritz lang style "} +{"id": "6002287", "video_name": "47e945d8-5a02-5bb1-a95e-78b586eaf3d9", "text": "board timber slats made of wood for sale not expensive "} +{"id": "4003545", "video_name": "8ecc9423-8826-5b7f-b61d-2f3e29e78085", "text": "create an image of a 20 year anime boy charecter with glasses with side view looking sad, standing in the middle of the road and it is raining heavy. image size 1080X1920 "} +{"id": "3005859", "video_name": "601f2421-800f-54f0-8c0d-44e91a05ceef", "text": "poodle doing a backflip on the beach "} +{"id": "6004892", "video_name": "d5e3361a-1343-5531-8f3f-84e0db6f55ca", "text": "1970 retro future science fiction sitting smoking amongst robots and plants, ash, psychedelic jazz playing on a record player, cinematic "} +{"id": "4003736", "video_name": "0b454896-026d-5688-b718-3ae939a669c0", "text": "7 Angels flying in the clouds looking at the camera, back vision of Heaven, masterpiece,8k,ar 16:9, negative prompt: bad hands, extra body parts, misformed hands "} +{"id": "0004051", "video_name": "024d808f-c250-5216-8f14-40456201a922", "text": "35mm film, A 70s car exploding in the middle of a desert "} +{"id": "6003090", "video_name": "da13de62-c586-589c-9e05-3be03a6bff7f", "text": "a guy in techwear jumping from a big building to another, futuristic city, cyberpunk, cinematic "} +{"id": "0006790", "video_name": "332d8b72-0b7b-5615-851e-61b1bb4aad8d", "text": "Close up of the malformed eyes of the soulles rift deity, purple color, old footage, vhs style footage, found footage, digital horror, static horror, "} +{"id": "1005980", "video_name": "6de25bcd-9990-540a-b3e9-f3f524d20843", "text": "A beautiful girl standing near window and watching something mysteriously at dark room , cenematic, realism, old movie scenes 8k "} +{"id": "3004349", "video_name": "b96f1f9d-06ed-53aa-836b-b38c2a1457dc", "text": "a grey interdimansional world with halo sun effects and cyan purple little polarlights very patience in the background . video should be 15 seconds "} +{"id": "1004645", "video_name": "565c27eb-5de8-5d34-9192-8313dfd060f3", "text": "gaming mouse side view, mouse fast paced movie forward "} +{"id": "4004497", "video_name": "6ea1376b-1861-5965-acac-2d69adf7a9ef", "text": "An image of a boy deciding not to steal and leaving the money behind. "} +{"id": "3006920", "video_name": "e91d67f8-5e7f-5965-9a85-53ae1df05f7f", "text": "Taylor swift talks to Elon musk "} +{"id": "6003860", "video_name": "4ca22959-df39-5ad0-ac4e-c2fc1cb73648", "text": "Turning to the busy bazaar, the crowd includes stalls selling lo mein with its smoke and aroma. "} +{"id": "0003709", "video_name": "4221bc31-a109-5f6e-bb6e-0638c71c6233", "text": "light breeze on the Mediterranean, french cinematic masterpiece "} +{"id": "2007169", "video_name": "6d7246f7-8fa5-5fad-a070-c9d3f0de5a85", "text": "Ingham\u2019s house burned to the ground shortly after receiving the gift, "} +{"id": "4004467", "video_name": "0d56575d-2888-5077-ae37-3d910bb1a378", "text": "Their first step was to decipher the part about roaring waters. After some contemplation, they reasoned that it might refer to a waterfall. Joonas remembered reading about a series of waterfalls in Lapland, places of historical significance to the Sami people. "} +{"id": "4002015", "video_name": "4ad46236-e214-5dbf-b9d2-6c3437330705", "text": "fireworks in sky black and white "} +{"id": "8003869", "video_name": "37b3c225-11a3-59d4-93ec-2d91b4179513", "text": "wobbling text over the skyline of Rio de Janeiro Message: LUTA LIVRE LIFESTYLE (Font: MODERN) "} +{"id": "8003365", "video_name": "92cc1ad9-9f85-5313-ae08-6f8b2b6d40b3", "text": "girl in carnival costume dancing in the club "} +{"id": "2003270", "video_name": "146387bb-b2cd-574b-9fd0-4b8b5040fac9", "text": "teen girl at a boxing event "} +{"id": "3004864", "video_name": "bfe496b9-095e-54c9-803f-c0e236eae43f", "text": "A cute little Taoist talking between mountains and rivers, 4k "} +{"id": "3005552", "video_name": "0329d72a-05be-56ec-a8a3-a61e4baa2cd3", "text": "Beautiful tango dancers, wide shot, 8k, realistic, cinematic "} +{"id": "6003716", "video_name": "945769d4-6536-5856-8da0-5cc590224fae", "text": "a video of a laboratory decorated for the winter holiday season. There are multiple scientists and researchers moving about in the scene; some are doing work and research while others are decorating the laboratory. "} +{"id": "0005862", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "a young man stands infront of the egypt.he wear treasure hunt dress "} +{"id": "1006505", "video_name": "7709fb1c-d3e5-5ae5-ba97-8bb46a8b2131", "text": "tumblr sad girl vibes, girl staring into a mirror, 4k quality "} +{"id": "7004034", "video_name": "6b3f0da9-0dab-528a-94f2-9c2c66a3da0a", "text": "David and Emily have a heated argument, tears welling up in their eyes "} +{"id": "2005127", "video_name": "7178dfa9-22a4-584e-bbb0-190cb48a0e61", "text": "a black cat with long silky fur is driving a white Ducati monster, the fur is moving with the speed "} +{"id": "0004645", "video_name": "0c8c705e-878e-5171-af64-b143eb2e4e52", "text": "in an egyptian settings, create a man gazes out the window at people suffering from the mysterious ailment, their symptoms evident. "} +{"id": "8001855", "video_name": "7877af70-ee79-59e4-b7a1-55bd90a237b0", "text": "zoom in camera shot, animate the whole scene, moving flowers, magical world,8k, full HD, highly detailed, good quality, studio GHIBLI animation style "} +{"id": "0003955", "video_name": "00887221-1634-59e3-a3db-69b26ddc58e6", "text": "The friendship between Lord Krishna and Arjuna is one of the most iconic and enduring friendships in Indian mythology. "} +{"id": "3003400", "video_name": "b71cd16b-d9cc-5598-98e2-bb6549027420", "text": "joker laughing, consistent motion, perfect movement "} +{"id": "2006138", "video_name": "2f0441d4-07d6-5de3-ba2d-8d4d56e3c029", "text": "children playing football on a grass field in the rain in the style of claude monet "} +{"id": "1005270", "video_name": "60ea058e-f587-5bdb-b3b2-c0375fee9aec", "text": "A young woman reads a book in the pavilion by the river. The breeze blows through her innocent face, filling it with a gentle smile. "} +{"id": "4003138", "video_name": "a8e71ce2-613a-5504-bce0-023250858b81", "text": "one indian boy in blue shirt, standing still in front of door back view, indian village, night time heavy rain cinematic "} +{"id": "2007796", "video_name": "03e635b4-b93e-5db6-bf8c-bfeeb02ef377", "text": "beer bottle entering the center of a wormhole 8k "} +{"id": "6003455", "video_name": "78449234-0a7c-55c5-9924-ab38bdb90fa1", "text": "1 hot man and 1 hot woman dancing in love slowly "} +{"id": "4003719", "video_name": "ba767d40-38d7-5111-b455-f0fcd8856251", "text": "gloomy framed portraits on the walls of the hut "} +{"id": "4004621", "video_name": "a6fdaa0d-134a-5d04-ab46-418d12bd95d7", "text": "X symbol, emphasis its not matched Message: 1 Attachment "} +{"id": "6003140", "video_name": "da522a0c-1745-5acb-8246-91902f2bd22c", "text": "giant robot men like transformers fight epic cinematic "} +{"id": "7004512", "video_name": "b42cb3d8-2a7e-5b13-a633-aa65b1b48903", "text": "a woman explorer on top of a mountain over looking the sunrise "} +{"id": "7003534", "video_name": "d0988eb1-cd29-5348-8e48-2aff58389b7c", "text": "Conclude the motion AI experience with an overarching sense of hopelessness, leaving the audience with an unsettling feeling as they witness the disturbing reality of this dark and twisted prison. "} +{"id": "2007484", "video_name": "231fd0a9-df69-5206-b567-bafc04298162", "text": "She tied the title on a thread and flew away and was happy.3d animation "} +{"id": "2006782", "video_name": "0b9c1fdf-e4d0-52ad-8560-79f8b6cb5e1f", "text": "treating egyptian women at skin spa on ancient Egypt, using frankincense and myrhh, realistic, uhd, cinematic motion "} +{"id": "1005808", "video_name": "6acc92f6-54dd-5dd6-a732-5ab4d3c0405d", "text": "love story with sad and happiness moments "} +{"id": "4004768", "video_name": "d163ba08-fad9-5622-95dd-62eca662ff80", "text": "a teenage girl wearing blue t shirt fixing phone in phone stand "} +{"id": "7002633", "video_name": "9dbd9262-c842-524c-97fb-73b50c532c59", "text": "The girl is sitting and listening to music lofi chill "} +{"id": "1006904", "video_name": "7e3379da-508a-541b-9676-66dfbe4781de", "text": "a lemon character with eyes and a body, dancing, VHS, Super 8 "} +{"id": "0006966", "video_name": "35f5d2a5-50bf-58c1-a467-a1ea46a43894", "text": "a group sets traps and creates a labyrinthine path into the forest, planning to ambush the wolves during their nightly rampage. "} +{"id": "8002218", "video_name": "04b0bbdf-d8f0-5e00-89b6-23a16d2ad3ed", "text": "Create an image of a young orphan girl named Elara holding a small acorn with a look of wonder on her face. The acorn is glowing softly, hinting at its magical nature. Elara should be standing in a quaint village setting, surrounded by simple cottages and a peaceful atmosphere. "} +{"id": "3006995", "video_name": "64e17745-c508-5988-92b8-b9ebe2a5521b", "text": "Zoom in on Sir William, the knight, in shining armor "} +{"id": "2006302", "video_name": "cfd59356-93c0-57e8-b0bd-4ae111e5e34a", "text": "Pastor John Wesley preaching at Hillsong Church in dress clothes with a band playing "} +{"id": "7002366", "video_name": "3c9143de-e89c-58ff-a568-ce79c27b67fe", "text": "Create a peaceful theme logo for a store that sells various products about jesus using the crucafix. Do not use images of Jesus "} +{"id": "4004729", "video_name": "dd0c28d2-1b7e-5e87-872f-c20312f93c60", "text": "A human hand inserts a small chip into the slot of a control panel "} +{"id": "1006392", "video_name": "74f7b380-4de0-5e5a-ab4c-8bcb349d9a78", "text": "girl walking in the darkness with long coat, add rain, add monsters, add stars falling "} +{"id": "7004220", "video_name": "af8f8cda-adad-575f-a132-6dc26d8f96a0", "text": "new born baby holding finger black and white "} +{"id": "6003012", "video_name": "f05cdea2-e3a1-5ea1-8579-936511f410f7", "text": "people talking about mysterious accidents, fully detailed, cinematic, ultra realistic, ultra graphics, high contrast, 4k, 16:9. "} +{"id": "8002027", "video_name": "533aa793-e9b9-527a-9d78-cc7518267bc2", "text": "two kids are in the jungle walking animated 3d "} +{"id": "1005781", "video_name": "6a6b3e4a-ff2b-5d9d-a12a-4662161f1ce4", "text": "Splash with water Message: Strellson (Font: MODERN) "} +{"id": "8002216", "video_name": "05e311b1-6808-5bd4-8318-85492725d988", "text": "The simple mural depicts pineapples in high places "} +{"id": "0003752", "video_name": "42cb2873-a066-54fd-8744-c8f6c1ffa3db", "text": "a boy running in freestyle on buildings, in 3D, Pixar style "} +{"id": "4002983", "video_name": "40d73043-ea2e-5e54-a6bd-38fd09a19076", "text": "extreme hyperrealistic ragdoll physics will Smith falling down the stairs incessantly "} +{"id": "8002143", "video_name": "85355d12-4f9e-5211-b25a-79a0ae40850b", "text": "a boy sit in mosque and the other side the people watch movie "} +{"id": "3005498", "video_name": "3763265c-ec86-57c3-b572-740960418292", "text": "Giraffe drives a car with four cats "} +{"id": "8001881", "video_name": "d0881992-961a-54e6-8c51-d0e141517f6a", "text": "a man working on his laptop in an office in Madrid "} +{"id": "1004988", "video_name": "5c38d3c0-e5af-5f92-9302-460e2296a303", "text": "christmas tree on the sea image: "} +{"id": "4002182", "video_name": "fa54810f-eb61-5f82-865f-a5a61414ba22", "text": "Classic Xianxia style. The martial artists inside the ship were still talking and laughing, discussing how to become masters and learn fairy arts after finding the Spirit Island Immortal Village. "} +{"id": "1003634", "video_name": "42ee8909-67c1-58d7-9986-ec9cf9b07fc0", "text": "animation black hoodie guy dancing in party with her girlfriend winter season "} +{"id": "3005443", "video_name": "94c712ac-3d21-5bd3-b8b5-214861b6987a", "text": "Inside a house watching the rain from the widow and it drips down onto the ground "} +{"id": "0003589", "video_name": "400b5221-b7f0-515f-b390-7ad42a3e0e5a", "text": "Your true potential, a gem yet uncovered, it rests beyond the boundaries of your comfort zone, waiting, yearning to shine. "} +{"id": "7002677", "video_name": "55bdb2b6-777a-5a2e-8c4b-3e76a34ae5e7", "text": "I am in a space craft then i walk toward the window and look at earth then I walk toward the space craft door and go outside to explore \nThen I come back to the space ship and decide to eat a pill and become super small. Then I will go out the spaceship again. Now I am so small that I can see tardigrades floating out of space. "} +{"id": "4002565", "video_name": "8821aa15-f872-502f-a6eb-167508df8525", "text": "a heart of stone morphing into a human heart of flesh "} +{"id": "2004937", "video_name": "6aa36e0e-e298-525e-9aa0-8b71cbce3621", "text": "a modern dessign office with minimalist architecture and beautiful light coming through the window Message: lens (Font: MODERN) "} +{"id": "6004158", "video_name": "fdc8afd9-5c71-5328-b1a9-e8b1a08a2b05", "text": "enter a robot floating in the outer space "} +{"id": "2006341", "video_name": "7eb291b1-5fc4-563b-aed8-b5fddcbb732e", "text": "Cinderella princess sitting inside a palanquin chariot , which is being pulled very fast by white horses towards royal palace, stars night , palace , on road horizon "} +{"id": "8001328", "video_name": "c67aaf8c-39c2-5042-841b-2d6aadafa9b3", "text": "Intense cricket action, showcasing thrilling moments like boundaries, wickets, and enthusiastic reactions from players. "} +{"id": "0003979", "video_name": "00fd88a5-39e0-5766-82ce-cdf5ae98be75", "text": "havy rainy night, the tent is burning small firewood and there "} +{"id": "8001036", "video_name": "2533856f-b230-545e-ba72-25b3e8b0d2f2", "text": "a girl dying and is reborn with the skin on fire "} +{"id": "8001408", "video_name": "552dc43e-5a46-53b1-80c0-2c457b143783", "text": "Craft a mesmerizing video that beautifully encapsulates the serene Tanzanian ambiance and its tranquil weather, all without featuring any human presence. Focus on the untouched landscapes, peaceful beaches, rolling hills, and the gentle sway of lush vegetation, highlighting the natural beauty that makes Tanzania a haven of tranquility. Through your lens, showcase the calm weather that graces the region, portraying the soothing atmosphere that defines this East African paradise. Let the scenes unfold like a visual poem, inviting viewers to experience the serenity of Tanzania from afar "} +{"id": "4004321", "video_name": "ce950914-cdde-5c43-8936-f49029845b34", "text": "a person is walking to clumbing a hill "} +{"id": "7003121", "video_name": "461d2c44-66be-542f-ba6b-0f487161eb20", "text": "Jason and Lucy racing together, pushing their limits, and forming a deep bond. "} +{"id": "2003647", "video_name": "a852361d-b645-5457-b4d7-48f68e4eca75", "text": "factors that contributed to the extinction event "} +{"id": "4003570", "video_name": "7b1ef1c1-a9e4-5ffe-af06-a6d67a95d5fd", "text": "An image of the modest palace entrance with the worried king standing and looking out towards the horizon 2D Cartoon "} +{"id": "4003668", "video_name": "721a3e62-f933-5aed-a77f-da600c62f037", "text": "tree of life, universe, chakra, mother earth, ancient, healing,moving image, long video, energie, ascension "} +{"id": "1005518", "video_name": "659eac5f-ab70-5de1-9fc6-053cc660607d", "text": "In the distant cosmos, Captain Aria Nova, a renegade pilot, races against an intergalactic empire "} +{"id": "0003172", "video_name": "388e801b-42fe-5d51-9a98-56bc02b91582", "text": "timelapse of a baby peacock hatching from an egg. "} +{"id": "4002681", "video_name": "c59aeb0f-9254-5b94-94b0-586af3567370", "text": "Wonder of Art and Beauty, 1beautiful and brave seagull, has leathers in yellow and white, flying high on the sky, hollywod style, cinematic "} +{"id": "4002396", "video_name": "7f9dc684-ea34-5044-8492-f6fe9f4cc709", "text": "Faces will not be move by you "} +{"id": "1003739", "video_name": "450607ce-7e1c-5beb-acff-cc21f36dd72a", "text": "The children meet with a group of other animals to cooperate in the mission. They work as one team to achieve success and overcome difficulties. "} +{"id": "3003601", "video_name": "9693f683-15f8-5b78-9be8-7edf07035d20", "text": "embark on a journey through a tropical island "} +{"id": "0004514", "video_name": "0a4f2654-a67e-54e7-a43d-43dfcb4c3819", "text": "old 1942 sepia film found footage of a star wars stormtrooper in world war ii "} +{"id": "2003553", "video_name": "ed8602d1-58e5-5e1c-8c4b-089d28913827", "text": "topkek communities plays modern video games "} +{"id": "2005216", "video_name": "a51b9869-80ec-50e8-b8fd-f150202ec500", "text": "A jungle setting with lush green trees and plants. cartoon style "} +{"id": "3004407", "video_name": "5f290a75-2361-507e-bb95-a0a3ae5b30ec", "text": "A young girl graduates from college and celebrates her graduation. He graduates from the university with first place. ultra realistic, 4k cinematic, realistic face, vivid colors, hyper realistic video "} +{"id": "6004270", "video_name": "4b2b6333-1e31-59dc-ae58-a0e77df9b5ce", "text": "The veterans had little to no experience in farming. And each plot was only around 10 acres, which was hardly enough for subsistence, let alone for providing any kind of profit. Nevertheless, many thousands were settled across the country. "} +{"id": "0005129", "video_name": "155ab3ec-907f-56cd-8392-114f8ab6843e", "text": "cinematic background of a cozy cabin interior with a fireplace "} +{"id": "3004312", "video_name": "73bc6c92-08cc-5f96-8e0c-1fd8e1fd540f", "text": "burning anime village with billowing smoke and flames, fleeing villagers "} +{"id": "7002769", "video_name": "1bd9d7b1-1e5d-5fca-b02a-ee8d424e6e1a", "text": "1 coin spinning at high speed on a smooth table "} +{"id": "4003282", "video_name": "e1450755-ecf8-51e4-bfab-c8adcade6ed9", "text": "A small lion cub named Leo dreaming of becoming the king of the jungle. "} +{"id": "1003161", "video_name": "3a3f5093-1004-5c05-90aa-aad374dd3321", "text": "realistic old wise and beautiful funky happy harry Potter long beard solo portret "} +{"id": "4002164", "video_name": "89e19edb-ae6c-5384-9d43-9fe62abf138e", "text": "A stylish Chinese girl wearing a silver necklace is smiling "} +{"id": "3004835", "video_name": "26f62f2e-2187-5ccb-a02a-f7318eb561b0", "text": "real photo armadillo without shell, viscose skin, skinny and wrinkled. "} +{"id": "8002391", "video_name": "23b3313e-3a78-5428-873d-514e9bcb45ea", "text": "soldiers using flamethrowers in the enemy army, running to the front of the battle of the Second World War, old scenes, black and white, old film look. "} +{"id": "6003786", "video_name": "aa659664-c1ed-5750-a991-a04990d605bc", "text": "Even those who live up to that time will be replaced with a new, incorruptible body.JESUS second coming "} +{"id": "8001261", "video_name": "74a4c8be-7fac-52a1-907d-334f344184bd", "text": "Generate a Cosmic Ascension Message: Ascension (Font: MODERN) "} +{"id": "3004354", "video_name": "c674bfb1-e409-541f-b83e-e8323a083ea2", "text": "An archangel, adorned in resplendent robes, stands amidst swirling celestial clouds, their majestic wings outstretched. The radiant figure emanates a serene yet powerful aura, embodying divine authority and grace. "} +{"id": "3006339", "video_name": "406e9e7d-ee65-5818-ba1c-07c27659d7be", "text": "Fake Money spinning into the air. The sky is blue with white clouds and the money is bright green "} +{"id": "0004002", "video_name": "0165f54a-4f5f-5f67-a221-72f2a208277b", "text": "a lush forest full of nature detailed good quality Message: ODS (Font: MODERN) "} +{"id": "6004682", "video_name": "12121521-1a32-56b0-a6bb-2a7b927a85fb", "text": "ad of cofee near hand watch "} +{"id": "8003572", "video_name": "4aad328e-6a80-518e-96b9-f2b0e27b1980", "text": "Batman driving a hellcat,while joker is racing him with a trackhawk srt "} +{"id": "7002431", "video_name": "3b48f175-f0bc-5837-a3c3-40b73cc917cc", "text": "A long shot of a window, behind the curtains, there\u2019s a girl walk in, and jump off "} +{"id": "6002753", "video_name": "528f0576-6f05-541a-aded-9f3d8b422eb2", "text": "Their formidable power maintains equilibrium and safeguards nature. "} +{"id": "1003790", "video_name": "45f3f976-034f-5267-a43f-99f64ade8330", "text": "a litte dog on the glass "} +{"id": "3003218", "video_name": "6e67b6b0-23f1-5d4e-b998-8d607a398732", "text": "imagine and create in motion the character of a cute tiny ukulele that has two eyes and a small mouth and that dances. In the background is a Mexican village at night with pretty festive mood lighting and pretty decorations. "} +{"id": "4002803", "video_name": "293a4e3c-edbc-5fcc-a9d8-601c1aa65086", "text": "animate a litte girl is telling a story with someone and holding a book "} +{"id": "5001890", "video_name": "1d492583-dca2-5d9c-a121-af74a9f0dab0", "text": "An asian girl walks by the sea, sunset, fine details, cinematic "} +{"id": "0003109", "video_name": "3733f2f8-fa4f-57c0-9f7b-21072a57a3f4", "text": "cupboard full of clothes, old movie vibes "} +{"id": "5001131", "video_name": "d19962a0-6115-5bb7-b96c-fb3c48ba484a", "text": "red colored two head horses running "} +{"id": "0006917", "video_name": "354ec60f-c751-5ab7-adf4-7f0532c584ae", "text": "Tyler the Creator laughing, 3d animation "} +{"id": "0005250", "video_name": "173e7e0e-8fc6-5e04-90bd-9c3938f59847", "text": "the marsupials at a fancy dinner "} +{"id": "6003243", "video_name": "33c97ba6-203f-502a-bd50-f396d0512ad2", "text": "cinematic, medium shot, drama film, a 55 year old female strict headmistress of a 1950s boarding school dressed in white blouse, brown skirt, brown wide belt and black leather shoes sitting behind a desk, modern aesthetic "} +{"id": "2003589", "video_name": "c32ac436-06ea-59c1-885b-a93a3a9f695d", "text": "An old man happily eating ramen "} +{"id": "8003500", "video_name": "e514ff71-b6ac-5fc6-bb43-8f73d65d30b6", "text": "boy hard work and dedication made him successful in the All India Medical Entrance Examination. He became a prominent doctor "} +{"id": "0005137", "video_name": "15779795-93e1-5dc2-9a14-87e204bd0dec", "text": "people dance techno on the street of sanfranscico tower bridge by night, aerial plan, cinematic "} +{"id": "1005502", "video_name": "653c6d6f-3c5c-5de0-b748-8739c0a8e05c", "text": "extreme rafting on a sunny day across a mighty river on a yellow inflatable boat "} +{"id": "6003570", "video_name": "3c0d7d59-4db9-5792-9fe3-e8825dd21c7c", "text": "Create visual representations of economic figures in motion, highlighting the value of money "} +{"id": "6002340", "video_name": "451d11ce-ff84-52a3-8eb2-9e0674920bc5", "text": "a group of sausage dogs at the sunset Message: la cuca (Font: MODERN) "} +{"id": "3003678", "video_name": "e64b5a94-e461-5669-b97a-4ebe91808d78", "text": "india, news, broadcasting, the man is telling the news.4k, high detaild, "} +{"id": "0006008", "video_name": "24f07cae-4989-5ef0-8809-48d891bca47b", "text": "With caution, she extends her bionic hand to interface with the crystal, and in an instant, she is transported into a virtual realm of cyberpunk marvels. "} +{"id": "8001638", "video_name": "3c7a3a25-6087-58c3-9362-9cfed678e0bd", "text": "Underwater Neighbourhood: Depict the cosy coral reef neighbourhood with vibrant and varied underwater residents. Show fish, seahorses, and other marine creatures going about their daily activities. "} +{"id": "0004808", "video_name": "0f7b8074-ef94-5acd-b546-41174a42c6bd", "text": "iron man and Batman crossover flying through the orange color sky "} +{"id": "1004180", "video_name": "4d5d5176-ca58-5db2-859b-cf3dd1e6282a", "text": "a lion bending and watching in a water well "} +{"id": "0005809", "video_name": "218ae330-861d-5866-864d-1fe6c1f4f5b2", "text": "cute tiny fox slowly blink eyes ratio 16:9 "} +{"id": "2003857", "video_name": "ddb46146-99e1-5231-85b9-6c9d318377d4", "text": "A blonde male webdeveloper is saving the world from bugs "} +{"id": "8002511", "video_name": "6971cf72-8614-5508-8bd0-c52c9c606ec0", "text": "man in fild with horses runing freely around him "} +{"id": "8002667", "video_name": "688fb71c-997a-5dc3-91ab-70079fb3580a", "text": "Night view of an old temple amidst the forests in India. "} +{"id": "7004067", "video_name": "8e24774c-3add-5fdb-b819-2e2fa9c57148", "text": "cinematic scene of atomic bomb explosion, high resolution "} +{"id": "2004661", "video_name": "4bb3b257-7801-5727-8b24-47824b0b4421", "text": "The genie, pleased, bestows blessings upon the trio.\u2193 "} +{"id": "0004929", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "a candle in the night with a full moon "} +{"id": "3004513", "video_name": "2c0e760d-295a-50bc-b9d7-8e1ccf4a62dd", "text": "skeleton rock band in a shakotan boogie car "} +{"id": "7003230", "video_name": "ac8b1d37-ca73-524f-96bc-f3e61df99fcd", "text": "the king raises his scepter to the sky "} +{"id": "1003632", "video_name": "42e3de4d-72b4-5aab-939f-b8312e10b4d6", "text": "2 bengalese grey cats walking on the moon. One of the cats is slightly brown "} +{"id": "7003536", "video_name": "4e8cdaba-cbcb-5260-83c9-1dc643f92f5b", "text": "A purple octopus soaring above the cityscape "} +{"id": "1003756", "video_name": "4547f4e5-6d47-520c-a004-d80fa620c970", "text": "prize paper coupons falling on a happy girl with arms raised in joy "} +{"id": "1006464", "video_name": "7653d416-3dfa-50fa-bb03-474856da7d27", "text": "Johann Sebastian Bach mixing with turn tables "} +{"id": "3004192", "video_name": "b709786a-5272-5b83-89c4-cb4b85036602", "text": "a person walking down a mountainby twilight, Gloomy nature, particals flying around, with lights flying around, slight bluish light, 3d octane render, f5.6, lens flares "} +{"id": "4004743", "video_name": "b36d7ac2-7203-5552-800a-387e5abd6bbb", "text": "video of a rock band playing electric guitar "} +{"id": "4002997", "video_name": "7013ba4c-1669-5314-922b-1fe5816e2d2d", "text": "a man smiling at camera realistic "} +{"id": "8003492", "video_name": "4a8f095a-d54c-5d03-be07-6ec373c836e8", "text": "a Landscape with many green trees, waterfall is flowing down, clouds are floating, cinematic, 4k graphics quality "} +{"id": "0003295", "video_name": "3b115f6f-36d3-5b47-9b3a-0daf29e7a7c8", "text": "invisible man in luxury robe, silk material with elaborate design, sitting in a luxury condo in europe, drinking a glass of whiskey, cars driving on the street outside the window, night time with warm mood lighting inside, cinematic, HDR "} +{"id": "2005526", "video_name": "88842ff5-c391-5d86-b320-ae50dbc020b0", "text": "Turtle and snake combined, flying in the clouds, soaring in the clouds and mist, wonderland, mountains, fantasy, myth, Chinese style, movie, Hollywood movie, Hollywood quality, Hollywood composition, looking up, wide angle, smoke, fantasy, mystery "} +{"id": "3005794", "video_name": "c46b379d-5dd3-5fd1-a409-45edd1e07d19", "text": "Tesla Cybertruck with lasers mounted, style of Transformers "} +{"id": "7002230", "video_name": "3c1a56c7-3a13-57e4-8e2a-9c52c4a9a014", "text": "passangers airplane takes off and flying "} +{"id": "8003275", "video_name": "501d7b52-9ef2-524c-ab5e-3e5827ddc3bd", "text": "Andrew tate beat jake paul in minecraft "} +{"id": "2006943", "video_name": "ddd393ed-e414-524a-a44b-8ddd29b4f9c4", "text": "golden retriever taking photos with a camera "} +{"id": "8001930", "video_name": "f0a4e1ed-5d27-5dae-bf56-5cd95025ebfa", "text": "Gendalf with a sword and phone "} +{"id": "8003642", "video_name": "71a5ea03-585d-5ed2-bb2a-a44faf624fc5", "text": "Sunny day. Two seagulls fly near the rocky coast. A small ship is visible in the distance. The video is about 20 seconds long. Good detail of objects. "} +{"id": "8002362", "video_name": "7b5153c8-6617-511d-9b0b-791819b40b6d", "text": "Skull Planet on fire flying through space "} +{"id": "2003443", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "Once upon a time, there lived a young girl named Karen "} +{"id": "7003240", "video_name": "168ed29d-4a31-550b-9564-11cddaf8dd3f", "text": "a warrior riding a horse, windy day, intense, cinematic sad mode "} +{"id": "2003058", "video_name": "063333e2-d642-5861-8a6c-2020b63c565b", "text": "one eagle flying high in the sky. panoramic view "} +{"id": "0006808", "video_name": "336f1ac3-0e2a-5852-8f29-3f7fc6f68276", "text": "Highlight the research findings and scientific experiments conducted to prove this fact. Honeybee Face Recognition: "} +{"id": "1005663", "video_name": "68011641-fbf9-54f0-a43d-ed032a5fd91f", "text": "In the heart of a quaint "} +{"id": "0004057", "video_name": "02740a18-c157-5823-a276-044c28cef5c2", "text": "sonic the hedghog ,tails the fox , shadow the hedghog , scorge the hedgog ,silver the hedghog stadning around chaos emeralds "} +{"id": "2006847", "video_name": "f45468bd-766b-55fe-963c-c04deb0fd649", "text": "Once the three pans start boiling, add the potatoes to one pan, the eggs to the second pan, and the ground coffee powder to the third pan. "} +{"id": "0003269", "video_name": "3a8c607e-5168-5ea2-9ef4-2ec16dda85d7", "text": "high resolution of a black hole in space spinning "} +{"id": "6003937", "video_name": "9b495e56-0fe6-5de0-8584-a40e07d27e81", "text": "leading to a division of power between Hamas in Gaza and Fatah in the West Bank. "} +{"id": "0004137", "video_name": "03e63553-2a77-5926-af19-81b5c71c509e", "text": "Describe the preparations for the grand feast. What are the animals doing to make the celebration special? "} +{"id": "5001024", "video_name": "eaad94cd-788b-5e36-9539-a39b69bb9883", "text": "Create a Santa Claus in a car handing out presents "} +{"id": "6004831", "video_name": "e07cb13a-ca5e-512f-85c0-000913bb570e", "text": "a image a man flexing his fire powers in the city streets "} +{"id": "1005710", "video_name": "68fe47c4-0821-5d60-9074-ae250e82b720", "text": "Left arm bowler screaming during a cricket game "} +{"id": "2004781", "video_name": "15ccdad8-dab6-545b-adb5-1dc1a713753d", "text": "the next Dimension, 3D mandelbrot fractal Zoom, software MMY3D "} +{"id": "8003077", "video_name": "887c80de-bd72-52e9-a504-cd0333c31d7c", "text": "As the sun dipped below the horizon, the cemetery became a nexus of the supernatural. dakrness horror animation "} +{"id": "4004395", "video_name": "b4c8aef2-4a98-50b6-ae38-6fd02f214e72", "text": "lord Krishna playing flute with goddess radha in a beautiful jungle with lots of butterfly and rabbits "} +{"id": "6002059", "video_name": "970d7eae-011f-58ae-ae4f-2a58ba0b5a65", "text": "It had been flying for a long time and was feeling extremely parched. Finally, after a while, it spotted a small village with a few houses and trees. "} +{"id": "8001055", "video_name": "8084d0e3-6b1f-5266-98d2-24425061e993", "text": "7 year old ancient Greek boy playing in an ancient Greek city "} +{"id": "1006495", "video_name": "76f0a64c-5b9c-5af7-93d3-7610088244be", "text": "a benevolent artificial intelligence designed to save the world, a female digital faerie, realistic, tinker bell, traces of light, eyes opening, motion 3, dark, electronic "} +{"id": "0004537", "video_name": "0ad75f56-dad1-581f-aa4f-2f9149d93dbe", "text": "video of 20 seconds, cat cleaning its teeth in front of mirror, cartoon style "} +{"id": "6003876", "video_name": "fc055ea2-91df-55d9-8141-b797cc83779e", "text": "an alien that goes to a person that eats pizza "} +{"id": "2007829", "video_name": "51f294a5-e59e-51ad-8888-c0a1768baebd", "text": "burger on a plate, back backround, camera zoom "} +{"id": "3004521", "video_name": "a0865d89-bbbe-5dfc-a44f-13ff3c654a15", "text": "drone shot of a train passing through snow clad mountain, photorealistic, 4k video "} +{"id": "2003419", "video_name": "84884316-07cf-511a-b8d9-2f2522ec4d5a", "text": "question mark in red talk to why "} +{"id": "1006273", "video_name": "72d937fd-0983-5677-8fe2-b75c9d56e659", "text": "a repentant man being discharged from the hospital "} +{"id": "2007378", "video_name": "a03fd72d-a15b-53e6-a558-07b0ac58291d", "text": "alexander the great in battle with many enemies 8k high resolution high quality detailed artistic perfect creative "} +{"id": "0005315", "video_name": "18755bc3-82db-5ad4-81f4-a86030d393ed", "text": "Give me an video of Leonidas the spartan throwing his mighty spear toward a dragon ! "} +{"id": "4002269", "video_name": "c18e0f3a-a6aa-57ad-9e1f-c1c0102660b5", "text": "Create an 8k video of a beautiful woman with long blonde hair and blue eyes. She is wearing a red dress and high heels. She is walking on a busy street in New York City, smiling and waving at the camera. The video should have a smooth zoom in and out effect, and a slow motion effect when she turns her head. "} +{"id": "2007138", "video_name": "8a64c2cd-e482-59bb-8723-7593f427fcda", "text": "young cute lady standing talking in a park with trees mountains lake drawing animation illustration "} +{"id": "6004895", "video_name": "a69c2871-627a-5b59-9a24-f1876aa12bbf", "text": "a beautiful girl with slit clothes "} +{"id": "3005890", "video_name": "47f4107c-3da8-57e7-a689-5398840ca3e5", "text": "3d animation of a night scene of a party in a lawn "} +{"id": "3004064", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "the earth shiffting into the new earth, and if you arent in line with vibrations of the earth shift, you get left behind. so make sure your true to self . and true to the earth. "} +{"id": "0006512", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "a beautiful ladies spinning and dancing in the Cosmic world "} +{"id": "1004142", "video_name": "4cbe7818-49c9-517a-b01e-f6a2c68ec8a0", "text": "video she with red blinking eyes "} +{"id": "7002966", "video_name": "d655c866-40b2-5245-917f-01097a5b6a13", "text": "Community Engagement: Show video clips of diverse communities coming together for events, workshops, and discussions related to health, sustainability, and harm reduction. Highlight the sense of unity and collaboration. "} +{"id": "2003636", "video_name": "d9921943-ab9e-5299-9bdd-6907fdc44be0", "text": "a realistic timelpase of earth spinning, light reacts realistically acording to physics, 4k video timelapse "} +{"id": "2006344", "video_name": "bce0b0b2-3ff5-59e4-a979-fbdd6134e22e", "text": "scenes of the protagonist stuck in city traffic, honking horns, and impatient drivers "} +{"id": "0004689", "video_name": "0d540c76-c5d3-5653-a719-01abdf044c1c", "text": "Produce a 3d CGI animation illustration Start to Quick flashes of captivating scenes from the story (e.g., family with phones, ghostly figure, family gathering, etc.) to create ultra HD,8k, Cinematic, Horror, thriller, Humours twist, suspense,slow motion,Clear Details, "} +{"id": "7004329", "video_name": "43bf05c1-a0cb-5cd7-8b3e-d1e34a5a9074", "text": "image of A feeding frenzy of marine life on a coral reef "} +{"id": "3005232", "video_name": "4c10ed00-1675-5185-a8ae-aba13dcf0035", "text": "kayak moving around in a circle "} +{"id": "2004590", "video_name": "b917a556-663d-56bc-b933-6973ac9f787a", "text": "In a quaint village nestled between rolling hills and lush greenery, life unfolded at a serene pace. "} +{"id": "8002286", "video_name": "be116f2f-6ea5-515f-9bbb-ef81ca2014ae", "text": "Doctor Strange fighting Spiderman in the sky "} +{"id": "3005266", "video_name": "f342d5a5-14c7-5fb5-9a27-d767a0c9f31d", "text": "penguin playing drums Message: CHILI LINDO (Font: MODERN) "} +{"id": "7002638", "video_name": "34ee5e11-5bc4-5f51-9d9c-25bc75126253", "text": "a very angry cat is looking towards a dog in anger "} +{"id": "4004217", "video_name": "8b8cb1ec-ab12-535b-9a90-b1ac79fc86b9", "text": "3D: However, beneath her unconventional exterior, Garfield possessed a heart of gold. She was the first to lend a helping hand, be it rescuing a stranded kitten from a tree or planting flowers in the neglected corners of the town. Her kindness endeared her to the community, and despite her quirks, Garfield became a beloved figure in Meadowville. "} +{"id": "4004250", "video_name": "4dce9411-5c5b-513e-be82-a9ebcc6971bc", "text": "Winston Churchill sat around a table talking to his senior officers in the Second World War "} +{"id": "4002621", "video_name": "e732fdd7-db81-5193-904b-7554b308831a", "text": "bear was always eager to explore new things and go on adventures "} +{"id": "2005896", "video_name": "6c181a76-d522-509d-8fc4-d451d3688514", "text": "dramatic image slow motion with background moment "} +{"id": "7002615", "video_name": "5664fc11-96f0-5547-8c0d-e6ca1c1f7cbe", "text": "Visualize Santa and Twinkle Toes, donned in festive detective attire, exploring the snowy landscapes of the North Pole, candy cane magnifying glasses in hand, determined expressions on their faces. "} +{"id": "8003934", "video_name": "bb6a4b39-b5bb-5c7b-9ea0-94f1e475f3d6", "text": "Imagine her fingers, nimble and determined, dancing across the keyboard like a choreographed performance, the rhythmic tapping echoing in the hushed library. "} +{"id": "0005048", "video_name": "13bd94be-6b7e-54b6-9f58-a699b0bc6cc6", "text": "Zara and squirrels dancing around the Giggleberry tree, their laughter filling the air, creating a joyous ambiance. "} +{"id": "6002256", "video_name": "d0c4253d-b327-59e0-9f1e-5f87f7a7d2f0", "text": "silent hill surrounding neon home with flickering lights "} +{"id": "2003262", "video_name": "8137c61d-4234-5a4a-a091-3e94463dab8d", "text": "bright sunny morning Donald duck gently lifted the golden goose from its pedestal. "} +{"id": "0005561", "video_name": "1cf2114d-5747-525b-bd40-ac40dd27156f", "text": "Yin and Yang gradually merge into Tai Chi Diagram "} +{"id": "2004728", "video_name": "30868f26-33e1-55b1-a03d-269eb67fa003", "text": "a small stream flowing through a mountain valley under a moonlit sky, and a flock of birds flying across "} +{"id": "3003583", "video_name": "814d8165-01df-57ac-819f-41a970a35327", "text": "eyes glowing like green fire emeralds, photorealism, ultra realistic, high detail, 4k "} +{"id": "1003588", "video_name": "4206a27f-376b-5b44-a2f1-92b67f16820a", "text": "illustration of a boy in the grass on a house with a window\uff0c in tall green grass , blue sky,with a gentle breeze blowing through it\uff0cin the style of Elsa Beskow, dark green and orange, aerial view, calming, duckcore "} +{"id": "3003536", "video_name": "dfa29327-a111-5bcb-9384-370c33dd2bd8", "text": "a man with a style wake up "} +{"id": "1006677", "video_name": "7a594c30-4c6c-5a16-bc75-8df074b8c6f9", "text": "Naruto and Sasuke standing back to back, determination etched on their faces as they prepare to face Madara highly detailed "} +{"id": "2003213", "video_name": "f088d355-323c-5706-8e7a-9f494c2c0d2b", "text": "After a long and arduous journey, Finley reaches the end of the migration trail. With newfound wisdom and experiences, he bids farewell to his turtle companions, grateful for the lessons learned. "} +{"id": "2003726", "video_name": "6f322ae4-36cb-529a-b23b-e0306f0a3c3c", "text": "dark horrow movie scene, woman torch in hand surrounded by fog in house. "} +{"id": "2006557", "video_name": "71df2ea8-82ab-5da5-b105-71ca2e6fbfb8", "text": "can you extend the video to 10 seconds and add more movement and particles "} +{"id": "6004004", "video_name": "724bf251-a69d-587f-8eaa-10be78362e47", "text": "A man in a blue shirt is saying something to two other men. "} +{"id": "3005778", "video_name": "2559ff4c-7398-5c6e-9cb8-baf916c9368c", "text": "an alien on a spaceship hunting the final humans "} +{"id": "1004355", "video_name": "505e44bf-8d49-5eba-8033-137392940eeb", "text": "old school gangster al Capone type sits and the end of a bar render in real egine 5 hyper realistic 8k next level "} +{"id": "6004772", "video_name": "3a788825-c841-5b63-988a-b2da6b01b12f", "text": "On June 19, Israeli forces raid Jenin, deploying helicopter gunships to the West Bank for the first time since the second intifada. "} +{"id": "0006116", "video_name": "26d6e8b8-d9ca-5b8d-bbd1-26cca1f3f59d", "text": "Step by step, she transformed her life "} +{"id": "2004437", "video_name": "a8e55474-4dd9-562c-a189-b1d6cebaa0dc", "text": "Toyota, car, vehicle, automobile, luxury, sports car, futuristic, yellow car, neon, background ocean, (ocean) "} +{"id": "0005974", "video_name": "2440b5df-7476-55f3-966f-1f750702b4f1", "text": "a girl sitting in her room sketching, ghibli studio by miyazaki "} +{"id": "4002119", "video_name": "3260a1e9-1813-503f-ac9e-c16d4979265e", "text": "Mimi was a cute Super Deformed Character who lived in a realm where imagination knew no bounds "} +{"id": "2004334", "video_name": "0f93fbe9-efa8-5b2c-b228-26f89f661038", "text": "atomic heart hero drinks vodka in a cyber club "} +{"id": "0004985", "video_name": "12c435fc-84cb-5bf0-8d39-283f243bb7f6", "text": "a young girl study on her table in her room near the window and study usiing her notebook in the night, the weather is rainy and the place is calm and her white cat sleeps on the bed "} +{"id": "2007910", "video_name": "4a815146-a5e7-551f-8d6c-f74e9ac8ccab", "text": "The beautiful islamic girl 6 year old was serve her weekness mother her mother already fever rest on bed "} +{"id": "3005117", "video_name": "be56b4f4-9d92-517f-9701-4e17f67c2653", "text": "A Chinese cultivator, entire body surrounded by powerful silver lightning, suitable for AI image generation. "} +{"id": "3004456", "video_name": "ec5d0131-9d07-572c-baf6-83d9a400ba04", "text": "hazel hair, light brown eyes, jaw length hair, madern day cute girl. "} +{"id": "7002452", "video_name": "9cba950a-1d7f-53f0-b08d-67a077b24bbe", "text": "a kung fu fight sequence between a jello man and a birdman "} +{"id": "8002817", "video_name": "c8c79c0a-8568-521d-9a13-370636dbb05f", "text": "huge sea waves, cat sits near the window and watches waves "} +{"id": "3003423", "video_name": "d8a2ceb1-2a28-589b-85b5-3e635d15f7e6", "text": "dashcam footage of a GRAY alien ROSWELL walking down a highway in Canada, hyperrealistic "} +{"id": "4003903", "video_name": "3bd242eb-42ab-5382-84c9-4d9636ba8df3", "text": "Clouds, zooming in on the mountains. Clouds moving. A breathtaking view of the untouched Sepik River and the surrounding dense green forests in the style of Studio Ghibli Miyazaki Hayao "} +{"id": "2006464", "video_name": "baa7813e-367b-58a9-aacb-5fb1f6c3e661", "text": "the end of time , 8k, zoom in "} +{"id": "1006020", "video_name": "6e94c2ae-dabc-54fd-ab80-6c8a45257037", "text": "A young Chinese Taoist boy stands in the courtyard of an ancient Chinese building, looking ahead with his hands together and talking "} +{"id": "3006524", "video_name": "fc753c15-fdbe-549a-b80f-dfcf24a1ab14", "text": "Ultra HD, 4K, 3D Real, make a video with clearly visible packages of Xanax and Oxycodone tablets reflected in sunglasses. "} +{"id": "1004448", "video_name": "524ae653-2924-5507-9bad-0fe636da2745", "text": "The hero yeang man play piano in the big open concart in the stadiam "} +{"id": "2004471", "video_name": "b5c85c6b-cca9-5e25-b07a-d0850a2709ad", "text": "The lower middle part of a green man is seen running. "} +{"id": "7004073", "video_name": "99d48627-9029-5d45-acea-1b68d3f2078c", "text": "Crab Shot Tilt Shot High Angle of a yellow rubber duck floating down a winding blue river dramatic lighting "} +{"id": "6004546", "video_name": "1d4d1075-7b63-5854-ac67-e11e4b5028c7", "text": "A child using a mobile phone "} +{"id": "3005257", "video_name": "072641c0-b067-5211-ba59-4b370b4fe048", "text": "chart showing a healthy daily price action with only green candles, not red candles. "} +{"id": "3006578", "video_name": "45c62895-1fff-5164-bb39-7d2f0057d0df", "text": "Elon Musk is running, 3D animation "} +{"id": "7003874", "video_name": "d32ff570-9022-5ffe-bf52-b41512b6f803", "text": "ring girl coming out of tesla logo "} +{"id": "4004886", "video_name": "1586ebbc-7228-5c07-9f43-333d186871b6", "text": "the red colour turning glowing blue "} +{"id": "0003923", "video_name": "45d85ce0-c640-58ca-943d-e1dbcb895102", "text": "ultra detailed human in a desert "} +{"id": "4004916", "video_name": "3fda60c1-712d-505c-b9a4-64f45c9d3c23", "text": "he robot gazes into the distance "} +{"id": "7002056", "video_name": "643b0eb1-0af4-5603-8eb1-91acbe61fb9c", "text": "a scene outside a citadel gate from the Eastern Han Dynasty. An elderly general, dressed in traditional Chinese ancient armor, rides a horse and is wearing modern iPhone earphones, facing the city gate. Behind him, a formation of soldiers also faces the gate and stands at attention. Above, atop the city gate, an elderly man plays the guzheng, with his two armed attendants holding automatic guns, all of them facing and observing the general and soldiers below. "} +{"id": "3005313", "video_name": "2df260d9-5205-59f0-a19a-b9cbf1bf1a69", "text": "Golden haired elves getting ready to sail the ocean. lotr movies style, epic, dynamic "} +{"id": "7003208", "video_name": "a53a0ecc-ef30-5937-93e6-0e923c7e0134", "text": "a passing car, window lighting, Studio Ghibli, by Miyazaki, hand drawn"} +{"id": "4003239", "video_name": "55078b11-221b-55f4-9b86-6f079549b55f", "text": "Moments of reconciliation and hope among the survivors. "} +{"id": "8001640", "video_name": "250cb3ee-1c7d-50fa-94e4-84f4343b8b47", "text": "A Beautifull landscape with a red cat sleeping, cute colosr, beautifull, awesome "} +{"id": "1004708", "video_name": "576cd577-4a6c-58d1-b659-2bd655c95aa0", "text": "a glass tree on the sky "} +{"id": "1006026", "video_name": "6ec50e1a-5225-5c5d-a70c-574e25be3aae", "text": "dj robot is mixing on turntables "} +{"id": "6003218", "video_name": "2d8b06fe-be8d-53ce-bb86-ce2ebd76fd43", "text": "in the first plan: two girls playing ball in the ocean, girls wear swimsuit. in the second plan we see black sky, blue moon and so much raising stars. camera go from the girls to the moon. "} +{"id": "7003591", "video_name": "f227ed49-c133-5c68-9516-88d9aa39f7a5", "text": "video of a dog eating a mouse "} +{"id": "2004126", "video_name": "4f0f8fa0-4bce-5762-a2c3-248c96780088", "text": "A snowy village as the clock strikes midnight. "} +{"id": "8002764", "video_name": "d1726432-095c-5be8-a97f-c355ac811a5f", "text": "Mario bros getting a question block "} +{"id": "4002130", "video_name": "45080212-39c9-5a8d-b9a9-7b2f093bdace", "text": "a man, looking at the camera, smiling, he has candy corn instead of Teeth. He has licorice instead of hair. "} +{"id": "8003616", "video_name": "7c218de6-181c-5d1b-a4ec-9be7727592dd", "text": "iron man showing his cycling skills "} +{"id": "4003306", "video_name": "9a9b8ca4-b1f6-549b-8280-105f8c849a8d", "text": "Knight in the middle of the battlefield looking into the distance "} +{"id": "3004465", "video_name": "d5b2556c-b5bb-5a6c-9aec-531ae3cbd0e2", "text": "a group of army ready for the war "} +{"id": "7003301", "video_name": "4b85bdf3-cfb8-5c73-9d6d-666f6ebe2dae", "text": "Two people standing on the desert cliff, watching the vast flame tornado connecting heaven and earth in the distance Message: 1 Attachment "} +{"id": "2005194", "video_name": "65cc0658-e4ed-55b3-a8ae-daae0c601415", "text": "a picture of a bulldog sitting down on a sofa with a frown "} +{"id": "7003982", "video_name": "6abe9f0e-6919-5dea-b77d-30a0de661520", "text": "Gundam style, a robot shooting another robot "} +{"id": "7004100", "video_name": "6097d926-d48a-59b9-ad1c-c9ab2f8f03da", "text": "dancing baby panda , red hat , red shoes , hip hop look "} +{"id": "4002877", "video_name": "410bb93e-8a19-5c0f-a01a-69c50dfef035", "text": "Programmer writes some words on the keyboard. Cozy. zoom in, zooming in, dolly zoom. "} +{"id": "6004711", "video_name": "8dacbb49-0f90-53e8-85b6-19584f457098", "text": ": boy playing soccer in the field. He runs after the ball and scores a goal "} +{"id": "4004935", "video_name": "cbbc9b6f-35bc-50d5-9235-63995981f324", "text": "boreal aurora in a beach at night "} +{"id": "7004780", "video_name": "09b12853-aa0b-526c-a432-4e263a7aedb9", "text": "national geographic documentary about slums in the Antwerp city centre, uhd, cinematic color grading, top down panorama "} +{"id": "3005883", "video_name": "43c20819-636f-56c6-a53e-24402659abb5", "text": "cartoon elephants in a big forest "} +{"id": "8002995", "video_name": "a7544353-07d8-571f-b5fe-d9c25cb4d530", "text": "Gran Turismo 4 Driver go on race track and win race "} +{"id": "8003668", "video_name": "15fcb087-7f14-548b-afc0-69353df30b80", "text": "Man age 40 in suit, realistic 4k 2:3 "} +{"id": "4002281", "video_name": "d65c4325-42d3-58c4-a187-6e4622c425ed", "text": "trophy about a knight of castle "} +{"id": "6002514", "video_name": "5af16854-b9ce-5887-b151-44b26b880e54", "text": "David and Goliath fight slingshot collapse "} +{"id": "2007194", "video_name": "7733cc64-35a0-5f3a-a8a4-63547c281739", "text": "The heart of the castle with a magnificent chamber bathed in a soft, ethereal glow.\nOur heroes standing in awe before a dazzling, swirling magical portal.\nA sense of anticipation and adventure as they prepare to step into the portal and embark on their next journey. "} +{"id": "2007301", "video_name": "6c45a48e-223e-5f1d-a5f4-02c09e028f4f", "text": "house in old town, night, lights, snowing "} +{"id": "7004222", "video_name": "fa7754fe-b86e-5ac3-9b13-52812c8d19bf", "text": "man smiling, forest background, tiger near him, smiling too "} +{"id": "8003688", "video_name": "775644c0-16cf-5948-81d4-7611b547f9f5", "text": "a beautiful girl with a hat and backpack, adventurous, 3d "} +{"id": "1003922", "video_name": "486b100f-e0f9-5ac8-827e-c5a7d9d5805e", "text": "a some big star in yellow colour dancing on sky in the night with full light camera zoom fps 30 "} +{"id": "7004890", "video_name": "9fab20b5-7256-5c94-8771-95f69628ec35", "text": "a beautiful garden with trees also "} +{"id": "3003187", "video_name": "ed4e7427-da34-5e05-8d70-c17c313fc7cc", "text": "interier inside old house on wheels in pixar style "} +{"id": "5001805", "video_name": "c33ae0f2-9ead-5da6-a319-4fd6ab896936", "text": "chrome android , by H. R. Giger, 35mm photo, glowing outlines, cyberpunk, gundam, unreal engine, chrome octane render, bokeh, vray, houdini render, quixel megascans, arnold render, 8k uhd, raytracing, cgi, lumen reflections, cgsociety, ultra realistic, 100mm, film photography, dslr, cinema4d, studio quality, film grain, full body "} +{"id": "2003032", "video_name": "d0c394f6-e8e9-5c84-a04f-1167ddda06ea", "text": "The fox opening the preserved meat to find it spoiled, showcasing its failed attempt to be frugal. Message: A FOX (Font: MODERN) "} +{"id": "3005788", "video_name": "238a9407-a023-55db-9f97-35e5a1100e96", "text": "Battle of Helms Deep during daytime "} +{"id": "3003253", "video_name": "0fabe953-c5f0-50c2-b4bf-9122898c07ba", "text": "create Instagram reel thumbnail you vs you "} +{"id": "2003025", "video_name": "4b368c1b-086e-55c4-8d1e-1200e731a1de", "text": "A futuristic cityscape blending art and technology "} +{"id": "6004208", "video_name": "c5b14fd3-bce2-5a4f-97e2-3fe0013109ed", "text": "a image where is the hair with black hair and blonde girl. everything is in christmas style. There faces are towards viewer. I want that in cartoon or anime style "} +{"id": "8001320", "video_name": "ef285b13-1a9e-51aa-af57-f45e04641007", "text": "Vatican told bishops to cover up abuse "} +{"id": "4004712", "video_name": "5059787c-bd47-5b21-a08a-a06220b6dabe", "text": "a dark night in the city with a starry sky, movement "} +{"id": "6002619", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "transform the photo in the Disney pixar film "} +{"id": "1003872", "video_name": "475a1a26-3aba-58f6-a5e1-6178cb02e1fc", "text": "Its lush canopy seemed to stretch endlessly, welcoming all those who dared to venture inside. "} +{"id": "8003058", "video_name": "a65bc537-46f0-55ed-a21c-03c93b5495b7", "text": "Armored warriors with torches in Tbilisi at night "} +{"id": "0003441", "video_name": "3d93bd2c-e86b-56ad-826e-ae54fd0fe593", "text": "a 30 second clip of a young girl walking through a yellow rose garden wearing a yellow dress in Pixar "} +{"id": "5001994", "video_name": "54081a6d-5e36-50fb-bf11-0427bcc24f36", "text": "a person training in the stock market "} +{"id": "5001669", "video_name": "a514091a-85f4-529a-97a6-8d5894d88742", "text": "Poundcake the bulldog riding a jet ski cinematic "} +{"id": "4004299", "video_name": "096ab877-f1ef-52b3-9590-f0cd6c4f426a", "text": "Victorian ladies taking a bath and playing with a cucumber, 1882, rare film footage "} +{"id": "3006694", "video_name": "d2ad2290-53ef-5d4b-a846-95fc91e263cf", "text": "Have the woman holding a bottle of shampoo in her hand, prominently displaying it to the audience "} +{"id": "7004207", "video_name": "e7b63660-9736-53ad-b00c-30060524c9c4", "text": "beautifull girl is dancing with a big silk on the catwalk "} +{"id": "8001877", "video_name": "9065eadc-e138-5e9e-ba0e-7eb1d01206e2", "text": "A beautiful woman is elegantly eating fruits and vegetables, camera zoom in and around "} +{"id": "2006343", "video_name": "db2f33a3-e4ff-5648-b29c-b1253b8d81c7", "text": "television styled glitter and stars flying against purple background "} +{"id": "6002282", "video_name": "f97cdd03-0c3d-5f18-b02f-3e47f5c54cb8", "text": "cinematic, In an epic battle, the girl wins over Jeff the killer, but fear and paranoia continue to grip the town. "} +{"id": "3006691", "video_name": "55b8bcc8-45bc-52a4-8985-9a35d26352ae", "text": "digital periodic table from which all elements are bulging out, blue neon, 8k, amazing and creative "} +{"id": "3004572", "video_name": "c74d80fa-c44c-530e-86b9-dab14316372e", "text": "The soldiers in the cabin began to agitate and the atmosphere became tense. "} +{"id": "2004492", "video_name": "86c8243d-bace-5c79-8f32-df6f07d1acf1", "text": "stars falling from space Message: VVT (Font: MODERN) "} +{"id": "6003186", "video_name": "527d9247-ab8d-5526-8dfb-d6b74e826e95", "text": "spiderman lookin into the eyes of a cute baby in the forest, moving leaves in the background. the baby is wearing a headphone "} +{"id": "3004975", "video_name": "372e8f8f-f86d-5692-a550-fe2200781e9e", "text": "Scientist watching Woman in spaceship, futuristic, epic, hyperrealistic, high resolution "} +{"id": "4004635", "video_name": "c5eacf47-7bf0-570c-9d9f-c5f2da89be15", "text": "lifestyle video promoting a suit for men "} +{"id": "0004248", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "peaple asking a girl for help , animated, 4k,realistic "} +{"id": "7002043", "video_name": "2ee209b2-b62d-5572-b061-e3fd08196a7e", "text": "gloomy evening, small houses, snowing under the moon "} +{"id": "6004316", "video_name": "af2d48fe-c9c2-5eb9-bc56-1fc2b3fd0740", "text": "fried chicken being thrown in the air with a neutral background "} +{"id": "4002684", "video_name": "30e37015-b2bf-5e14-a224-5342dacd20c6", "text": "A Junkyard exploding, GoPro Action footage "} +{"id": "0003012", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "Hydration: Drink plenty of water, as it helps rinse away food particles and prevents staining. "} +{"id": "3004089", "video_name": "6aac310e-c62c-53e6-9248-9dd4ed448fc6", "text": "Taylor Swift accepting an award at an award show, flashing cameras, celebrity, realistic "} +{"id": "2003790", "video_name": "e674925b-1d63-5c45-ac14-1bd6f8743245", "text": "a realistic video, cinematic, of a 8 years boy. he is stand up in the garden but with his face looking down "} +{"id": "2005648", "video_name": "1445287d-db83-5916-b37d-1125166a1217", "text": "atm machine with money flying out from the money slot, wind, dollar bills floating in the air "} +{"id": "8001166", "video_name": "08071b2a-c804-5733-91c6-194aab190d57", "text": "a basketball player in a black and white jersey who jumps and dunks ultrarealistic slowmotion "} +{"id": "3005279", "video_name": "2df4861c-8012-5346-966b-9c66a7ecadfc", "text": "An aesthetic human face explodes into multicolored dust and confetti. Slow motion. CU "} +{"id": "7003940", "video_name": "0ca1011f-5fcd-5dac-844d-a8b8dfc8d682", "text": "Fear of someone who sees the devil "} +{"id": "2004472", "video_name": "8143025e-2c51-5088-abf4-040148fc142b", "text": "With a graceful leap, the athlete soared through the air, her body contorted in a flawless arc before she entered the water with a barely audible splash, sending ripples across the calm surface of the pool. "} +{"id": "2007137", "video_name": "245aa9ee-ad11-560f-8aa8-335309ed1b56", "text": "hair blowing in the breeze, sea water moving, 32k "} +{"id": "1006314", "video_name": "738c837f-cb32-5c50-bf31-28c2bc8734ea", "text": "scary huge green snake eating the world "} +{"id": "2006667", "video_name": "7c17b40b-a071-5def-bfc1-05e8408f09a9", "text": "Kathmandu with modern infrastructure like sky trains and old cultural architecture embedded "} +{"id": "4003333", "video_name": "93376d0a-2603-5109-924f-b8c4096dccec", "text": "rose opening releasing a vibrant butterfly and then closing up "} +{"id": "3006222", "video_name": "574e5a06-30cb-5fa4-b45e-20f5a208248c", "text": "a young girl wearing a pair of glasses, long hair, she is making a speech, disneyland style. "} +{"id": "0006626", "video_name": "2fc73134-5e5e-5f2a-8173-f6821568247a", "text": "a beautiful tomato plant grows from the ground "} +{"id": "2005839", "video_name": "8fccd4f9-63f6-595f-a574-8b54375ca0f7", "text": "luxuorious bank rain falling 2 man standing in front of the bank, pixar style hd "} +{"id": "8001344", "video_name": "141befc5-62a0-52b7-ba48-2c63e7b4d979", "text": "a happy man is sitting on the bear "} +{"id": "3003522", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18 years old girl without west, without dress "} +{"id": "2007180", "video_name": "119d603c-fd05-5230-8b87-ac6c6ba81c84", "text": "lightning and dark sky ina big modern city with high skyscapers Message: SOS (Font: MODERN) "} +{"id": "5001977", "video_name": "04714100-c194-5927-a6e3-22a38f165239", "text": "The king sat back on his throne looking at a painting, illustration, 8k, cinematic, Anime "} +{"id": "2003984", "video_name": "e6939d17-4477-5f2f-b1ec-1fe93c39f038", "text": "image: beautiful woman of traditional of china "} +{"id": "6002225", "video_name": "e873cdea-6949-5e6d-988c-db76402abe4a", "text": "beyond just lighting lamps and bursting fireworks.in disney world "} +{"id": "0003383", "video_name": "3c9fb8c7-bebc-5939-9405-b19f7403d531", "text": "Reapers appear from the shadows, cinematic revealing shot, "} +{"id": "8002731", "video_name": "6f2e5365-b635-5709-866f-635f0cc873ca", "text": "A janitor is washing the windows of a shop window, a beautiful mannequin girl can be seen in the window, she waves to the janitor, cinematic style "} +{"id": "3006350", "video_name": "a7a16b79-1892-57aa-88ae-146e704d7524", "text": "the remains of a city reduced to rubble from an atom bomb dust float in the air 50mm zoom in photorealistic high deatil 4k "} +{"id": "2005916", "video_name": "30ab8532-0a9e-58e3-9a9b-d9ebe4067c78", "text": "Podium designed with a modern aesthetic, constructed from sturdy wood and metal. The platform is spacious, offering ample room for a speaker to stand, with a slight outward extension allowing the speaker to move freely. Delicate floral decorations adorn the edges, showcasing intricate details. Illumination at the base highlights the overall contour of the podium, emitting a soft light. The overall design aims to evoke a sense of solemnity while retaining modernity and functionality "} +{"id": "5001687", "video_name": "4efeffa9-fcc7-5244-8c04-7cd2b9eb8bcd", "text": "vintage black and white horror movie with dark field and old ruins of victorian style house "} +{"id": "2003252", "video_name": "4e03aa3c-57bf-51d0-868c-c5a100df717e", "text": "karl lagerfeld crying under sparkling black coloured water as a saturn prince. in orange and blue "} +{"id": "8003218", "video_name": "0cac19d6-13a0-510b-bc74-2194aaa1a804", "text": "Echoes of emperors, steps echo through time. "} +{"id": "3006274", "video_name": "fdd25002-ab61-5957-8d0e-9ea8f7fcf10b", "text": "The chair begins to talk to other objects in the room, expressing its dissatisfaction and irritation "} +{"id": "5001569", "video_name": "bf2fc93b-8210-5921-a5c2-73d7c9340aed", "text": "real photography of victorian street in london,with horses and people in movement,near thames "} +{"id": "3004734", "video_name": "361e53d2-836a-51ba-8c82-0ffd05480d7c", "text": "cinematic, medium shot female basketball players in gym "} +{"id": "6004115", "video_name": "9739f436-c364-5bb5-aa14-8f0539d1f913", "text": "Shining stars at a beautiful sky, puprle color grading, pattern "} +{"id": "8001630", "video_name": "a83c2e3e-a9ac-5943-8adb-1bb6dee8cfff", "text": "a smiling baby in a crib "} +{"id": "2006421", "video_name": "0148df32-3468-5b28-8d06-3fb5c427844f", "text": "Lord of the Rings. Golden ring "} +{"id": "1003707", "video_name": "446ebdb4-4acf-5b0a-ae77-824c6f7e99c3", "text": "Manga punk band trio playing on stage "} +{"id": "7003472", "video_name": "f703a290-d126-5184-9da3-73d98c8f2557", "text": "a scene from baby shark rhyme video "} +{"id": "1005480", "video_name": "64a7fd11-f086-5ad0-b406-0e75500d04de", "text": "beautiful girl walking bear foot on shore under shining sunset "} +{"id": "1006586", "video_name": "78a5b346-f192-5115-af56-8b9aeaca65f6", "text": "a young handsome man with short hair and a cropped beard is playing piano underwater "} +{"id": "3004517", "video_name": "181ca582-2666-5cad-97c8-342fc7e934d9", "text": "create horse in the desert trip "} +{"id": "4002538", "video_name": "e669b448-5278-5132-9170-39ecae71608d", "text": "Depict the group of friends standing together, flashlights in hand, as the echoes of the past come alive. "} +{"id": "3005254", "video_name": "d4a63cf9-5168-53c6-827f-af8d891312a7", "text": "Ride a roller coaster at Disneyland "} +{"id": "3003602", "video_name": "7c78ecc5-5bcf-53ea-a886-fb8345070e40", "text": "A woman is inside a large glass bubble against the background of the depth of the sea "} +{"id": "6000009", "video_name": "01a9f340-2385-5780-af56-6c1cd6731341", "text": "inspired by Monty Python\u2019s stop motion animation style, make a 20 second video of a beaver sailing to King\u2019s Landing with three dragons and a white wig similar to the won worn by Emilia Clarke as Danaeyrs Targaryens in Game of Thrones. A raccoon serving Cinnabons can be seen next to the beaver. "} +{"id": "4003930", "video_name": "a17a4e5c-8960-59c3-9293-fd4608da9f84", "text": "A woman stands at the entrance of an apartment, wearing a yellow floral dress with Tiffany blue walls and a red door,outside "} +{"id": "1004072", "video_name": "4b827437-7ee6-5951-9fb4-2395b8858298", "text": "people celebrating in the streets of a city "} +{"id": "0005185", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "a super cute fluffy tabby kitten sitting on a piano explodes "} +{"id": "3006009", "video_name": "350a9c6a-4cac-5b63-86e7-2447305d8b73", "text": "a muscular Stoic philosopher with a brilliant mind, radiating light against a background of darkness. Emphasises the mental and spiritual strength to be gained through Stoic philosophy. Landscape background in nature, 8k "} +{"id": "1005051", "video_name": "5d6ae189-4d7e-575e-98a3-fc78eb96d35b", "text": "operator, in a torn raincoat, gray, with a movie camera, runs, middle plan, in the desert, red sand, noon "} +{"id": "3006354", "video_name": "70995111-aee6-5775-bb55-97a1e3df7001", "text": "a vampiric creature in Philippine mythology that takes on the form of a toddler or baby "} +{"id": "4003531", "video_name": "0771d37b-d532-54b6-a93f-dece7e4c3b2a", "text": "Captured in black and white, Glitterville stands serene, surrounded by towering trees and glistening streams. A soft mist hovers, adding an ethereal quality to the landscape. No facial expressions, focus on the enchanting scenery. "} +{"id": "2004004", "video_name": "6277546b-7948-5fd4-8fbd-d4fc158d6e87", "text": "Show a 4k resolution 3D animation of a young talented artist practicing their craft in a small studio. Keywords: Artistry creativity passion dedication. "} +{"id": "7004886", "video_name": "4f224e7a-1e11-59b3-8c67-74a817889ea0", "text": "a scene of a rapper in the booth with hoodie on "} +{"id": "1006221", "video_name": "72181ab5-245c-513c-b6c0-a41c8dc1ade0", "text": "Create a heartwarming scene where Ant shares his food with bird, emphasizing the significance of his gesture. "} +{"id": "2005345", "video_name": "4c4486ad-85da-5ef6-9479-ceb79f3e8241", "text": "Make a mark the way cows are marked on the skin of an iguana. "} +{"id": "4003929", "video_name": "4d5d9a6e-0cbc-513c-b8f4-fadf307c7c6b", "text": "blue whale fly across Melbourne CBD "} +{"id": "4004536", "video_name": "e73904fa-2193-53ea-ae98-6ed4b1325379", "text": "an inside view of the inside of a huge anciet cave discovered on a different planet "} +{"id": "1004029", "video_name": "4ab7fe4f-d7f3-555c-8cfb-baa4d126694c", "text": "Mr Beast in Oshi No Ko anime art style "} +{"id": "3003561", "video_name": "7197574a-3878-5b2d-b29a-b2c6b433380c", "text": "Russian blue cat getting booty scratches while he eats his food, cat is happy, cat is very handsome, classic Russian blue fur, motion 3 "} +{"id": "1004407", "video_name": "517f7c0b-5a27-56de-aac0-658177d473cf", "text": "Include an image of the fox contemplating the situation. "} +{"id": "8002984", "video_name": "5ab310d5-a84a-5e32-bf84-20cd047e37d7", "text": "drone view of the bigest solar farm in the wolrd from a aerial view "} +{"id": "6004623", "video_name": "be1630c1-312f-54ff-985a-3f5e3f2d14b5", "text": "VICTOR, a brilliant engineer who can create advanced gadgets. "} +{"id": "1005496", "video_name": "6513fe52-54f5-5564-870f-58847ddd6c93", "text": "Neck of a man stretching 2 meters towards the camera "} +{"id": "2005922", "video_name": "22a6188d-185e-5492-b4ac-8429cd88e7ea", "text": "A cute boy playing soccer,wearing a red and white soccer jersey with matching shorts and soccer cleats,a soccer field in the background "} +{"id": "1003085", "video_name": "38cbdb68-ea81-5b95-978e-a1f6ed965567", "text": "Confused Businessman wonder animation. Thinking and idea concept "} +{"id": "8001382", "video_name": "0b7cec11-e1fc-511a-b527-f7363901c6c5", "text": "the boy moved to the dancing girl "} +{"id": "2003561", "video_name": "46e01128-7bdb-5337-82d0-2dd87fc7e3bf", "text": "couple taking a photoshoot in Malibu "} +{"id": "1005252", "video_name": "60a05c8b-edc6-5527-80ad-4591a82d51e9", "text": "I would like to create a wrestling belt with AWU logo "} +{"id": "2003083", "video_name": "bbecf0f2-b485-5998-b442-8bdafc9269bc", "text": "There are flashing lights and a teddy bear. motion2 zoomout gs24 fps24 "} +{"id": "4002924", "video_name": "2bb50e84-32e5-5b53-9a65-a2b7263e07f5", "text": "a deer waliking in the foresst cinematic shot, long shot "} +{"id": "0006896", "video_name": "34fa95b5-93e4-5099-8d6b-e2411ecc2843", "text": "a cosmic being approaching earth, huge, cinematic, motion 4 "} +{"id": "1005608", "video_name": "6719c0df-77a4-5bf9-80c9-f39fcb5eca43", "text": "The exact whereabouts and current status of the original Seal of Prophethood are unknown, but its significance as a blessed relic associated with Prophet Muhammad (peace be upon him) is undeniable. Message: 4 motion (Font: MODERN) "} +{"id": "4002928", "video_name": "ce9014e7-7369-5427-beb8-db3ac0c5bfdd", "text": "USA big size flog slowly moving for the wind "} +{"id": "2003933", "video_name": "429cd7af-6093-5caa-8758-ef3f2dd11cdb", "text": "Silhouette giving financial advice by saying that the best invest is your personal education "} +{"id": "0004926", "video_name": "118c3438-648d-5bbd-8258-11cb2c0280f2", "text": "Journey of Renewal: Life is full of opportunities for renewal, and hope teaches us that every day is a chance for growth and transformation. Message: 1 Attachment "} +{"id": "3006076", "video_name": "820bdb1d-d32e-5f34-af64-85854994ac66", "text": "A young girl, Lila, appears in a small town with colorful houses. Lila smiles and waves to the locals as she walks by. lo fi aesthetic, predominat color: purple, long animation "} +{"id": "0006320", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "a surprised and happy look of elf "} +{"id": "6004175", "video_name": "52fc0b7b-bc4f-540c-92a3-ac066b30d803", "text": "Edvard Munch animation of a man watching television in nature "} +{"id": "2005133", "video_name": "b3206bc6-809d-523d-b621-0efaf9a8805e", "text": "Hover drone shows up above cyber cop who is laying on the ground with sparks flying out from his right arm. Cyberpunk. 1990s film style "} +{"id": "4004067", "video_name": "a9fbc076-81bb-5a0a-973e-59f50bd3850a", "text": "Back Pain Matters Schematic Video, 4k "} +{"id": "3004811", "video_name": "f06d69c7-e20f-58fa-b330-fffc24180260", "text": "create a project mapping effect, showing delivery or food icons with orange tones, try to have a simple panning effect "} +{"id": "2004032", "video_name": "1d2f5bc5-acc6-59e9-8bc1-31cecea114bb", "text": "2d anime frog trippin out, moving psycadelic eyes and background "} +{"id": "2004418", "video_name": "05a1ca63-9eec-5212-ba61-18169353b75e", "text": "a man talking to a fortune teller animated cartoon "} +{"id": "4002723", "video_name": "3aa67e11-24ec-5d49-ac9f-1b6d0d4609b4", "text": "a clearing with flowers and bees and butterflies on a sunny day at sunrise "} +{"id": "0006352", "video_name": "2b1e507c-8d35-544c-817e-9aa4cb700f75", "text": "3d cartoon animation video of two chicks one chick is cooking and the other is sitting next to him "} +{"id": "5001475", "video_name": "92e6bad0-2da8-5188-b6d5-e044c21498e3", "text": "Start with a wide shot of a peaceful pond surrounded by lush greenery. Slowly zoom in to reveal Crazry Frog sitting on a lily pad, looking mischievous. 3d animation style, anime. "} +{"id": "8002179", "video_name": "04ac48b1-57b1-56a8-86aa-799d7cc571be", "text": "a boy stay with a baby at the bedroom "} +{"id": "2006460", "video_name": "2be24df0-c114-5cb4-b784-8dde3a07dc2d", "text": "A dramatic moment of realization as Ramcharan uncovers the true mastermind behind the Al takeover. "} +{"id": "0006235", "video_name": "28e34ab5-3d29-5eae-8326-9d37dab33180", "text": "on white circle , trophy achievement, black and white "} +{"id": "8001181", "video_name": "fedd27e0-81f0-5e35-aedc-8868002c4955", "text": "Create a captivate illustration of carpentry tools drawn by children top view "} +{"id": "3004648", "video_name": "d911b675-1f78-53cc-9940-83318e465759", "text": "likened to a \u201cVenice in the desert "} +{"id": "0003566", "video_name": "3fa0bac5-890c-5cd3-a315-e52a7f3d1170", "text": "a steam train coming towards the screen Alfred Stieglitz grainy black and white 1900s 4k "} +{"id": "0006493", "video_name": "2d7d058e-9959-5cdf-9d2c-d218586f2eee", "text": "different between animal based protein and plant based protein "} +{"id": "3003457", "video_name": "45902726-860c-517f-966d-6ee5292a0058", "text": "cinematic advertisement video with text of iphone "} +{"id": "6002563", "video_name": "e0c6ab6e-cf30-502e-af9b-be72c40178f6", "text": "expensive horror movie, bikini girl chased by the creature from the black lagoon, sunset, lagoon, palms, dramatic skies, horror, chase, creature. Talons "} +{"id": "3006237", "video_name": "3830e040-86a3-5377-bed5-f82140c54dd0", "text": "a bunch of moths flying together crowding the frame too many everywhere "} +{"id": "0006857", "video_name": "345239cb-d1ee-57b8-89ff-c9a5a4a8f599", "text": "Fantastic picture of humans in front of heaven "} +{"id": "4003044", "video_name": "6e44beeb-a783-5b8e-a6c3-1e7a61c78ced", "text": "graffiti moving on the walls of the modern district of the city "} +{"id": "2005640", "video_name": "8e093145-8c89-526b-8cc0-28bfc5d0acb7", "text": "a man who as a Halloween pumpkin as a head walking on a city street in the rain "} +{"id": "3006065", "video_name": "ae1f2ff8-a758-53d9-875e-d7e53b77ab0b", "text": "Young Bruce Lee, taking a taxi, prompt ID:873504 "} +{"id": "2006947", "video_name": "09647dce-7ec9-5887-a83b-1fe29ca4c4bd", "text": "The dollhouse was a large room filled with crafts and decorations, a girl is looking at the camera( with a scared face, looking around in fear) in that room Message: 1 Attachment "} +{"id": "0003473", "video_name": "3e3f4bb5-915d-5404-9355-044fedc03084", "text": "Create a 3D animated video where a character is strolling down a busy city street, showcasing urban life. Suddenly, introduce a suspenseful twist as another character emerges and fires a gunshot, plunging the scene into chaos. Craft the animation to evoke tension and surprise, with realistic movements and attention to detail. Explore camera angles and lighting to enhance the dramatic impact of the moment. Capture the emotions of both characters and the surrounding environment to create a compelling and visually engaging narrative. "} +{"id": "4002655", "video_name": "5d590708-7669-5f90-a5ab-ea118bce5d71", "text": "young beautiful girl, model, wearing sports clothes, white and red walking at the city "} +{"id": "2006840", "video_name": "62cf92a6-7505-505c-a876-f54258173314", "text": "filling up a plastic cup with milk until it is full and dripping "} +{"id": "2006956", "video_name": "2ece36a5-190d-5965-9dac-9217c471713c", "text": "Xiaoming rode his bicycle on the small road where he met, looking at the birds on the road and the state of the fields, feeling particularly happy "} +{"id": "2003563", "video_name": "59287e1c-86c7-536c-ae3b-3e973faf14f9", "text": "a man flying alone in beautful sky neon "} +{"id": "0006051", "video_name": "25c5f523-45f0-5bb2-a7b0-b41ca9d11e6f", "text": "As the sun sets behind towering spires, an eerie darkness engulfs the 3D fantasy land. Malevolent shadows twist and writhe, coalescing into a sinister force. Unearthly whispers accompany the unfolding evil, and the very essence of the land seems to recoil. A palpable tension grips the air, foretelling a malevolent event that threatens to reshape the very fabric of this cinematic realm. "} +{"id": "0003634", "video_name": "40d53da5-4d86-52fd-8246-1e5b366fbad6", "text": "Buddha, meditating under a tree, at the edge of a mountain, where you can see a large valley with abundant nature "} +{"id": "3006968", "video_name": "6a1fa336-d5f8-58d0-895c-012c3a5a900f", "text": "animated style video red bunny at home outside raining "} +{"id": "2006109", "video_name": "c9435807-c305-5108-91f2-8868efda2365", "text": "nicki Minaj getting married to Wendy Williams inside of a McDonald\u2019s, realistic "} +{"id": "2003677", "video_name": "19fce82a-2832-5a4d-91b0-13ebf60e095a", "text": "He saw the interconnectedness of all life and understood the impermanent nature of things. "} +{"id": "2003605", "video_name": "d6f26e1b-9dfa-51fe-8bfc-1c5eaddf9c6c", "text": "pikmin looking creature producing on fl studio "} +{"id": "4004530", "video_name": "47ea3da4-9bb3-594d-836e-89696103987b", "text": "20 year old angry women playing basketball at a college basketball tournament "} +{"id": "2007344", "video_name": "f570a1bb-5266-5add-a1aa-2794b7433c1d", "text": "A picture of Shandong Jiaotong University "} +{"id": "4004482", "video_name": "337a6be7-7a93-58d6-9942-662dd461a8c9", "text": "Depict the enchanting tree with its sparkling emerald leaves, giving it a magical and mysterious aura. "} +{"id": "0004148", "video_name": "04211139-c3a7-5e9d-a494-c9a630667087", "text": "barbie with guns, fornite style inside a giant sphere cage, in the rain, 8k cinematic hyperealist "} +{"id": "1005285", "video_name": "612d2b07-c92c-5ee8-b376-3f8bbda9c97e", "text": "a house making with leaves and wood in the jungle "} +{"id": "2005841", "video_name": "dd315988-70dc-5bc8-b776-2b9cb1b02d71", "text": "man in the cave Ranking apart "} +{"id": "4002067", "video_name": "0a0871f3-b53b-50fa-914a-439b1a4bad6a", "text": "Jim Morrison rocking in The Stage "} +{"id": "5001102", "video_name": "c6b7fe95-eef5-5417-a894-8098dc50f8f5", "text": "20 year old beautiful woman, pink hair, anime character sitting on her bedroom floor "} +{"id": "2005037", "video_name": "b317067f-0caa-58f3-a7b4-5b4540b3e850", "text": "The skirt of the dress extends into a mermaid tail, with a pattern of scales that seems to melt into the water. "} +{"id": "6004658", "video_name": "63ef6d1f-8cff-502e-b713-8ef3a92160bb", "text": "a scary machine reaching its arm out "} +{"id": "3004549", "video_name": "b26e1212-7ca1-5f83-acf2-053ef7cffbae", "text": "A kungfu artist fighting their nemesis final battle "} +{"id": "7004503", "video_name": "ceb1b32b-152f-5007-8a47-56a2af93ab42", "text": "night time Drone pov of a missile attack on a large industrial complex, explosions, giant fireballs, smoke and sparks, surreal "} +{"id": "7004668", "video_name": "061ec276-19f0-592a-b130-2ef5dd4bfd15", "text": "world explode because of hitting by an asteroid. 20 second video "} +{"id": "0005335", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32 bit gaming room with a storm outside "} +{"id": "1006533", "video_name": "77beabed-f749-5893-a029-659fb9158ae3", "text": "Caucasus, illustratio\uff1aJacob of Ruisdale, nature elements,floating object,Dreamlike,Tranquil environment,by chance,Ethereal beauty,Resonance of joy,Spiritual awakening "} +{"id": "1005387", "video_name": "6309db15-468a-5694-9aa0-f7387d014d5c", "text": "a long narrow corridor, an ice cave, lanterns, style cartoon "} +{"id": "1004654", "video_name": "5689d9e3-bad9-5aee-a2f6-afbcd8f4aeea", "text": "the tom is playing with jerry . mood is joyfull "} +{"id": "8002986", "video_name": "7b44c9da-3854-52b8-8d8b-f8d425ecf28b", "text": "3 gorillas lifting the Champions League trophy, sad players of Bayern Munich in the background crying "} +{"id": "4004626", "video_name": "d0239080-75e6-53c2-96f6-52a5eacce12d", "text": "a cosmic mausoleum, a dark silhouetted figure wearing a preacher hat is casting a spell, swirls and bursts of technicolor paint the atmosphere, 8k, cinematic, hyper realistic, nasa, space, religious, super detailed, unreal engine, color graded, photo realistic, hdr, sharp focus, megapixel, 16k, motion 2 "} +{"id": "4004856", "video_name": "33ea2b60-b938-5092-aa9d-b9673b9e97d8", "text": "red blood dripping from a chrome fork "} +{"id": "8003352", "video_name": "880ac214-07dc-5389-9be5-6dc122e5afa4", "text": "100 a cat walking around in the street and looking around "} +{"id": "3003386", "video_name": "244b3dac-12a2-5192-b48f-ac0ef4ae9119", "text": "baby girl nice beautiful picturesque village nestled between rolling hills and lush forests, there was a baby girl born who was as nice and beautiful as the dawn "} +{"id": "7004570", "video_name": "4b758bfc-c417-5cfa-b47a-c63dbacf509a", "text": "a beautiful portrait image of 4 handed durga mata, sitting on a lion. Beautiful feminine features, red sari, loaded with accessories, lovely eyes and a smile on her face. Let the facial expressions be calming. Keep the image bright, with no harsh lights or shadows "} +{"id": "7004108", "video_name": "4a890c9f-f7c0-52bf-91d6-6404e1640b14", "text": "an anthropomorphic drop of water dancing "} +{"id": "8002969", "video_name": "642fb2df-bbac-5e83-8391-333b0712fa27", "text": "blink, shed tears Message: 1 Attachment "} +{"id": "3006362", "video_name": "4de30beb-e22a-556e-939b-add27f923428", "text": "A cartoon black sheep dancing, 16:9 pixar style "} +{"id": "5001984", "video_name": "c5cd03f9-0462-5b14-b3a6-9e4b0725c3c1", "text": "A man walks down a bustling street in Dubai, the city skyline sparkling in the background. He passes by towering skyscrapers, luxury cars, and bustling crowds. He stops to admire the Dubai Fountain, its waters dancing in the moonlight. He then continues on his way, walking through the Dubai Marina, past the yachts and luxury hotels. He finally stops at the top of the Burj Khalifa, the tallest building in the world, and takes in the breathtaking view of the city below. "} +{"id": "4002963", "video_name": "473751d8-ad4f-5499-8347-44e151a7129f", "text": "A monochrome grey scene with blue and silver highlights and lowlights capturing eyes blinking in the desert sky using a 50mm lens perspective. The image should reflect a grainy texture, reminiscent of high ISO film photography. The light source, diffused and soft, should create a play of shadows and highlights across the scene, enhancing the dramatic effect of the monochrome grey scale with blue and silver highlights and lowlights "} +{"id": "0006798", "video_name": "3349822a-657a-58ca-9ff4-c5d5a24de1cc", "text": "a fox sitting outside in front of a dark cave in forest "} +{"id": "2003440", "video_name": "6b8b6732-8b33-5d47-910c-06c124ca2d18", "text": "in a magic world, a man find a magic book and find some clues "} +{"id": "1006525", "video_name": "776f7bf7-f8ae-5c0a-a1c6-e125c6e00c8d", "text": "a huge angler fish behind a diver "} +{"id": "3003130", "video_name": "14d6884b-683e-5845-8912-d8a76ec2def0", "text": "Create an illustration of Goddess Skandamata sitting on a lotus, holding her infant son having six heads, Lord Kartikeya, in her arms, surrounded by divine light. "} +{"id": "0005797", "video_name": "2166f69d-df12-585c-8e3b-4b763458d157", "text": "a ufo flying over a wheat field "} +{"id": "7003859", "video_name": "8ba67fd4-722f-5cea-bcbd-2ec5a5173119", "text": "a man holding a sword and shield roman style "} +{"id": "3005881", "video_name": "e59da802-d141-5b46-ac52-dfb209aef544", "text": "convert this image to ancient monument with night sky and moon shining Message: 1 Attachment "} +{"id": "2003669", "video_name": "af34ecae-f2bd-540f-a518-eaf5d340dfb1", "text": "smartphone falls out of jeans pocket, zoom is aimed at a falling object "} +{"id": "1005578", "video_name": "66ac2c67-b4fc-5981-8ed4-efa59f247dfa", "text": "a student is standing and reading book on the train . "} +{"id": "0003703", "video_name": "41fc4521-4139-57a4-b925-34903c86f9d8", "text": "pixar animation like cartoon girl walking in a field of sunflowers "} +{"id": "2005613", "video_name": "a73341ff-84cd-5c90-83b2-8fe5c1a439d5", "text": "cartoon where doctor rabbit says to eat chocolate to his patient "} +{"id": "6003759", "video_name": "59e691f4-6e76-59d9-87f7-bab8dea3310c", "text": "a tall mountain with many hot air balloons flying up. Sunset mood "} +{"id": "1005712", "video_name": "69068ebe-49ca-55bf-a74c-144a5b783e93", "text": "Russell M Nelson realistic think celestial "} +{"id": "1005860", "video_name": "6be4f316-8637-59da-8e69-65e330a32591", "text": "A college girl wants to go abroad for mbbs studies Message: Future Doctor (Font: MODERN) "} +{"id": "2003255", "video_name": "dc36b1fe-8cca-5014-8cff-c2bb4c7ae0ae", "text": "danceing cyborg cats in a high tech space disco, realistic, cinematic, 50 mm, DOF, smooth rythmatic motion, looped "} +{"id": "3003908", "video_name": "f2d6aaf1-4ad3-5fe4-b838-96fce390c448", "text": "man and women sit on the couch and watch tv show,3d animation style,leonardo style "} +{"id": "3005715", "video_name": "ce6e6179-6ba4-5b33-a36c-cda8ea825978", "text": "A red sunfish swims happily in the azure sea "} +{"id": "6002973", "video_name": "5260fb09-514f-507c-9f93-d88e9da0915d", "text": "image of a flaming warrior sword 16x9 chromatic realistic "} +{"id": "5001176", "video_name": "572bd692-1bc6-5b94-8a40-fd626887e608", "text": "AND THE TWO RETURN TO THE HOUSE AND SLEEP THE CAT AND THE FISH "} +{"id": "8001507", "video_name": "9e812cf4-7746-55ef-a62d-785a7af82d68", "text": "Kundalini rising ultra high definition, stunning Never before scene! "} +{"id": "2003987", "video_name": "df09b88a-7fe3-5f52-aa31-72c57c994bc6", "text": "cartoon joe biden eating green ice cream in Japan "} +{"id": "0003272", "video_name": "3a9ecb3b-76e8-5787-9484-f3bfbd1a201f", "text": "The woman is standing in the yellow wheat field. She is raising her arms to the sky with the child in them. The sky is blue. The sun is shining. The wheat and sky create an illusion of the Ukrainian flag. Farther from the woman to the sides, we can see explosions and burned to the ground land. "} +{"id": "7002038", "video_name": "c8878e1e-1ace-556a-8b54-44b07e79a806", "text": "cinematic still of soldiers during world war 2 Message: hoppe (Font: MODERN) "} +{"id": "8002963", "video_name": "8befa1a1-0f17-5579-9e13-3b2b41a3f2ef", "text": "by Junji Ito, people riding bikes by a river "} +{"id": "1006136", "video_name": "706a65f9-7794-5c94-a524-5bc108c61dc1", "text": "Because of his excellent work performance, he was appreciated by the boss of the head office. The boss gave him an award at the awards ceremony. "} +{"id": "2003853", "video_name": "41d48707-17f6-51e2-9f9b-97418fa4529f", "text": "Eva green sipping wine Paris balcony "} +{"id": "3004877", "video_name": "83334e26-14fa-5a49-98b9-e75c80cbdf8b", "text": "The undead guitarist emerges from the ground quickly and swiftly, strumming a power chord on his Flying V guitar that sends lightning down to the ground. The lightning strikes the ground and raises ghouls who begin to surround you in a circle, their eyes burning with an unholy glow. Realistic, glory, immersive, legacy, dark fantasy, Black magic "} +{"id": "6004763", "video_name": "8546e5e8-8893-56bc-8ffb-7bd6745b7fbb", "text": "The camera tilts down to focus on a tranquil stream running through the pasture. The water flows gently. "} +{"id": "1004675", "video_name": "56e3e5c8-1661-5b2a-9861-050004513119", "text": "a person is running with black colour ninja costume with sword on the top of slant roofs of houses in a colony where there is white snow himalayan mountains in background "} +{"id": "6002343", "video_name": "a9bb54d3-8129-5f8c-8af5-976defddc3c3", "text": "chinese gold dragon in his habita style cartoon chinese "} +{"id": "0003667", "video_name": "4166ee63-2bec-5567-8614-1488ae301186", "text": "virat kohli with worldcup 11 players india "} +{"id": "6004082", "video_name": "245dd41f-26c1-5570-a397-bbb26ef5e5c0", "text": "A set of different aroma candles in brown glass jars and flowers. Handmade scented candle. Soy candles burn in a jar. Aromatherapy and relaxation at the spa and at home. Fire in a brown jar. Dark evening "} +{"id": "6003291", "video_name": "baa35954-8130-5369-9c4c-a699de145e1d", "text": "masha ,a small girl from russia "} +{"id": "6002621", "video_name": "b3ca1b51-c4ae-52a7-8c98-633b06e2ca75", "text": "A robot sits at a table and talks "} +{"id": "2005795", "video_name": "1c12f4f3-b993-564a-ad0a-31f89920e2e4", "text": "Soldiers in the battle of the second world war, fire, realistic image background 4k. "} +{"id": "7004308", "video_name": "5399ebfa-8609-5971-9bc1-e4a22d289ef5", "text": "Princess Aisha became the guardian of the kingdom, and she used her power to protect the peace and happiness of the kingdom. People laughed again, and the snow on the snow castle melted to reveal the splendid palace. "} +{"id": "2005070", "video_name": "b283e9aa-b177-5aa9-97a5-abd73cd477c5", "text": "a charming scene of two garden snails sharing a quiet moment in a botanical garden. "} +{"id": "3004691", "video_name": "2fbf700e-2570-5420-bf9d-7d7e9510496a", "text": "A man dressed in blue sports wear running and throwing javelin in a crowded stadium "} +{"id": "2005013", "video_name": "41b1cd4f-6d90-55c7-9309-6e1ee1ab295f", "text": "realistic cleopatra has a 7 inches wooden rod in her hand and she is laughing "} +{"id": "3005302", "video_name": "0485354f-43e4-5281-b2ea-1339063a2ad0", "text": "The mermaid was the epitome of enchantment, entrancing all who gazed upon her with her elegant form. "} +{"id": "0003694", "video_name": "41d8c919-e84c-5e8a-b7af-ac18847cb720", "text": "elaborate and animated detailed vector illustration of me watching my watching my self walking through a psychedelic portal to another dimension, DMT, LSD "} +{"id": "1006507", "video_name": "77183d4d-3004-5578-8111-e1ac84506a96", "text": "adolf htiler speaking to a jewish person on the dr phil show "} +{"id": "2005181", "video_name": "ed0c0423-60c7-5837-93a6-a95470a11de3", "text": "Black and white image of an American world war two soldiers standing in front of a german bunker at the field , cinematic , ar16:9 "} +{"id": "8002535", "video_name": "3acc179e-d0c6-5e8c-9e11-f45cb136d53d", "text": "sunrise behind the Golden Gate bridge on a rainy day "} +{"id": "8001123", "video_name": "bb11834f-9aaa-5a6b-967a-9d54f9cadd80", "text": "closeup on the eyes of a male wizard, wizard is fascinated by the distant effect of his fireball spell, reflection in his eyes shows the distant flames he stares at, graphic novel illustration style "} +{"id": "6002505", "video_name": "bbdc53de-d701-571e-b510-b390f3cb4d0c", "text": "A silhouette of a person stands in front of the flames. Tears glisten in their eyes, indicating a tumult of emotions. The sky is filled with dancing moths and the blazing fire. "} +{"id": "8001484", "video_name": "c5fc4665-88b4-5729-9957-0706749a2a1a", "text": "gramm cocsa playing lod in uzbekistan chilling "} +{"id": "7003079", "video_name": "b4099c1e-07c9-591b-91a3-f6e37e209235", "text": "a fifteen foot high chamber with a long dead skeleton sittign at a desk "} +{"id": "4003610", "video_name": "3a2eb31b-c786-51bc-8c65-3db1bb117e91", "text": "koko krunch explode in the city "} +{"id": "0006495", "video_name": "2d7e671d-cee0-5134-a1f4-90b3792cb01e", "text": "show me a warrior from dacia "} +{"id": "4004417", "video_name": "1e206e60-1eda-5f95-8a2b-732dd26fd462", "text": "Krampus following Santa Claus in the woods "} +{"id": "0004692", "video_name": "0d672b8d-bf31-5e24-ae8b-7654d5052080", "text": "A velociraptor on top of a shark throwing bazookas at some seagulls with 4x4 motorcycles on top of a burning ramp along with some demons and some students with some weights next to them and a giant TV at their side. "} +{"id": "2003359", "video_name": "e9eb3834-25f4-58f0-af80-c9056642bc28", "text": "goddess in heaven sing a song "} +{"id": "4004222", "video_name": "e32f0ea7-ae14-5f03-a679-8e0b24c0d2c0", "text": "create an image of a person with their hand on their chin and thinking "} +{"id": "3006845", "video_name": "c1e1b8d5-4067-5f50-96a0-d0e64cc3879e", "text": "abstract beauty with white hair, centered, looking at the camera, approaching perfection, dynamic, moonlight, highly detailed, digital painting, artstation, concept art, smooth, sharp focus, illustration, art by Carne Griffiths and Wadim Kashin "} +{"id": "0005969", "video_name": "243055b2-3ec3-534c-be85-9306887b41f0", "text": "A holographic globe spins in the center, surrounded by floating, interactive screens displaying the Socrates app interface. "} +{"id": "8002091", "video_name": "59b989d5-0cb4-56ec-a050-428064dca3a4", "text": "a guy sitting in a forest on his laptop wearing headphones. "} +{"id": "4002732", "video_name": "e9fd47d7-47af-510a-869e-06061e0d18ea", "text": "photorealistic Joe Biden gives a campaign speech "} +{"id": "1005850", "video_name": "6b84e32a-de9c-533d-b2c7-6d262e2b3585", "text": "the explosion of the sun from the face of the earth "} +{"id": "8002214", "video_name": "7e2d6671-db45-5dd3-be1d-9c697d6ebdf4", "text": "Classmates come in a continuous stream, holding various Spring Festival decorations in their hands. They are energetic and have your help in decorating and preparing for activities "} +{"id": "3003945", "video_name": "2e8f0605-39f6-5fe5-84e5-7236d775d3cb", "text": "A birthday cake in the shape of a veiled girl sitting in front of a computer, and the edges of the cake include social media program icons and the scene around the cake appears as a golden birthday decoration. "} +{"id": "3003781", "video_name": "77ec2489-7b2d-5626-bf18-810e3300280c", "text": "Ensure the music enhances the emotional impact of the story. "} +{"id": "3005691", "video_name": "df7222d7-3d85-5980-aba0-c81edf2864c8", "text": "I want to try to make a video about the rapid construction of buildings, which describes the rapid development of society. "} +{"id": "3003243", "video_name": "f0575d2d-55c5-5687-986c-6ec8e9cdbc14", "text": "indian police officers in brown uniform moving forward,inside police station,animation 3d "} +{"id": "0006006", "video_name": "24ebf855-19e6-5a0b-8053-82a8982305e1", "text": "a rapid sequence of arduino connected to other sensors "} +{"id": "0003751", "video_name": "42c4a0d5-5862-5151-a656-2445d6c9bcf5", "text": "Battle of karbala in cinematic drone shot. "} +{"id": "1006982", "video_name": "7fc3bc52-5d09-566f-be3a-c0558b15e00d", "text": "1860, with a group of people dressed in period attire gathered in a candlelit room. The room is filled with occult paraphernalia, including pentagrams, strange symbols, and eerie artifacts. The mood is serious and intent "} +{"id": "6003628", "video_name": "8bc4ca10-264d-5b3d-b16b-a90eaa95f266", "text": "Giraffe chases elephant in front of the Colosseum "} +{"id": "4003915", "video_name": "efbfb58b-091c-5b60-99e7-ba5d489725b7", "text": "Joseph Polish eats hard boiled egg. 8k. "} +{"id": "3005824", "video_name": "9bd18384-edba-59ea-8186-d25c444c78ab", "text": "Cars field passed in an endless stream. "} +{"id": "6003549", "video_name": "b19625c5-d237-594b-b620-b6cf6b53d8be", "text": "3d printer using by student, 16:8 ratio, 3d animation "} +{"id": "1004932", "video_name": "5b2ab044-da1e-5497-9450-fe24ed9fcc1c", "text": "rainforest at night with a small circular portal to alternate dimension glowing "} +{"id": "6004751", "video_name": "411b79d6-065f-5334-a6fc-767065858da1", "text": "anime female hero powering up with cosmic energy highly detailed anime style "} +{"id": "4003988", "video_name": "afea7d38-b0ba-55c8-b375-ca564aa39262", "text": "eggs in nest of 2 beautiful crows sitting over a tree in a jungle "} +{"id": "3004190", "video_name": "5b9a5230-abd0-518e-9ec9-b72faaad5ce4", "text": "BMW driving through town turning into a Disney studio. "} +{"id": "2004167", "video_name": "d13f5796-e431-5d16-a880-f6f405b89c71", "text": "a man activate their all chakkar 2k video "} +{"id": "8001736", "video_name": "f954946a-7210-5b44-a122-cf22829abc39", "text": "a tree on the garden, with apple on that tree, a tree looks denshely shady "} +{"id": "7003314", "video_name": "887cf812-b8f9-557e-92eb-753128a20180", "text": "a girl in a black short dress stands under a black umbrella in the forest. There are lanterns on the road in the forest, it is raining in the forest"} +{"id": "0003495", "video_name": "3e8aba0e-7f27-51ff-9491-2e15b3a193ee", "text": "The fox version of Bruce Lee performing dance "} +{"id": "2003603", "video_name": "77fd6354-428f-5720-bb7a-65e086e5c6d0", "text": "a sniper in a ghillie suit movie through a forest "} +{"id": "7003388", "video_name": "ee259ec0-6801-55b5-9ebe-44764b4da817", "text": "Design a magical forest covered in snow with the white bear and Lily walking through it. Capture the serene and enchanting atmosphere. "} +{"id": "6003848", "video_name": "08d44b96-0c8c-5644-8a97-e4f97391f827", "text": "lord shiv in new univers fight with new creatures "} +{"id": "4004658", "video_name": "982ce4c0-ee37-532f-940f-08e237b69885", "text": "create Rudolf reindeer lighting up the nose, very realistic, 4k "} +{"id": "1003499", "video_name": "40beeebb-e89b-5d7a-b80d-e4019738753c", "text": "From the old Po let us draw in magritte style "} +{"id": "3005007", "video_name": "17afc1cc-e4a2-50a0-bc48-8230cd7582cd", "text": "photography, classroom peter lindbergh style 16:9 candid shot "} +{"id": "2004380", "video_name": "3b75c8fc-16b4-5311-b900-f1e275d384bf", "text": "Robin Hood was a young guy living in the woods with his friends. They all work as woodcutters.Robin was a very intelligent boy with a great sense of humor. He was an extremely skilled archer and always held a bow and an arrow. "} +{"id": "0005220", "video_name": "16d1eac0-9fe4-5b55-b7a4-34f13ef5a4ab", "text": "a bookshelf full of books with books moving on and off bookshel "} +{"id": "0006231", "video_name": "28c2d92d-cac0-5e03-91b4-66cc76d05ac0", "text": "blond woman leading a based cabin control spaceship craft based in movie Prometeus "} +{"id": "0006518", "video_name": "2deab08f-5a6f-5bd2-ab40-9fed58882967", "text": "hyperrealistic guys building an art studio Message: vaco studio (Font: MODERN) "} +{"id": "2003769", "video_name": "3edb6d23-86e9-56ef-b42c-cb6dea9b3fcc", "text": "a video of a bike running on a beach "} +{"id": "3004020", "video_name": "7595b817-c941-5ca2-91c2-4adb840a4f2d", "text": "shooting a laser rifle at multiple giant transformers enemies in space with spaceships in the air shooting in first person shooter video game view "} +{"id": "4003939", "video_name": "fbc7ce84-cd92-5659-9010-ca71e1d12bf2", "text": "a lwyer in a court room celebrating a victory "} +{"id": "4003419", "video_name": "190b6a06-5a2d-57f4-9bc0-cc29470cfaef", "text": "A curious botanist with a passion for uncovering the secrets of rare plants. "} +{"id": "2003967", "video_name": "ec1f2b39-1d9b-5cb1-8a89-3ac777163968", "text": "a girl in a room with light wind "} +{"id": "1006735", "video_name": "7b63f00f-93af-5a82-b68e-e2cec7b8a96c", "text": "motion graphics, motion design, kinetic typography, geometric, minimal, black and white, black, dynamic, featured on dribble, featured on behance "} +{"id": "0006730", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "women , graphic designer in work, funny, realistic "} +{"id": "0004873", "video_name": "10b22ed0-10df-58a3-9344-2e3321501b88", "text": "Timelapse of a perfect snowflake forming "} +{"id": "7003137", "video_name": "d569a4d5-472a-5e03-aa63-edd3a62954f0", "text": "Horror, a hand pushing open the door, the gloomy house, "} +{"id": "3005355", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "cascading red hearts around white copy space "} +{"id": "3003355", "video_name": "c163b845-1294-583d-a552-08c550e0ff50", "text": "a hand with a brush paints a circle on paper "} +{"id": "0006143", "video_name": "273a17e3-6785-51c4-a758-291e2b94237a", "text": "a medium shot of two people sitting on a hill staring off into the horizon, their backs are facing the camera, 2d vector cartoon "} +{"id": "8003470", "video_name": "63f9eddc-bda1-5b1e-a0d6-efa420455bf1", "text": "While the little brown dog and Little White CAT were playing by the lake, they noticed some strange ripples in the water. "} +{"id": "3004457", "video_name": "19d1a322-3754-521a-b638-88982173a773", "text": "cyberpunk night cityscape assassin on stakeout "} +{"id": "2007522", "video_name": "6813c188-f7fd-5ea5-aab7-72470de4ad67", "text": "flowers rain from sky, sky is pink "} +{"id": "6003949", "video_name": "2d75c677-3f03-5cb7-954a-35a37552faef", "text": "In a future world of technology and division\u2026\u201d "} +{"id": "2007748", "video_name": "ade82bf3-e914-5c83-ba78-6dc15e8ee706", "text": "in a cozy barnyard, there was a small, fluffy chicken named Sunny. Sunny was the smallest and the weakest of all the chicks, but he had the biggest heart "} +{"id": "0004805", "video_name": "0f6d3a45-8c9b-5f6f-8283-c88167c94024", "text": "an angel laying around in the clouds next to the gates of heaven"} +{"id": "8001372", "video_name": "5a356421-b4d6-5bca-80cb-426835e0e080", "text": "squirrel running through a tree, hopping across branches "} +{"id": "0006077", "video_name": "26460a27-d582-56b9-91e1-eea91f4dc304", "text": "Dark psychedelic images, in the style of Salvador Dali. "} +{"id": "2005610", "video_name": "51dfd08b-490c-5382-9fae-e282ed725ede", "text": "cinematic scene bird eating worm blur "} +{"id": "0003411", "video_name": "3d32b1b8-5e13-5f1f-94b8-2c66c6bd5f66", "text": "how to start a clothing brand "} +{"id": "4003923", "video_name": "0ec4bbb5-4fc9-5200-b79f-6233717ba442", "text": "night skyview of a city in the 1950 with noir vibes "} +{"id": "6004234", "video_name": "084e6ac1-4925-5855-98e6-2282098c6b94", "text": "wolf growling wearing gold sunglasses, snarling showing teeth "} +{"id": "6003331", "video_name": "f7c262b4-282d-5175-a673-b5bd67a1717f", "text": "Illustrate adorable sleeping characters nestled among books or clouds, conveying the peacefulness and dreamlike atmosphere. "} +{"id": "6004123", "video_name": "8d8f0c57-12a3-5792-b138-a81d600a4b26", "text": "ghost flying round in 1970 british house "} +{"id": "3004244", "video_name": "dccb0164-c04c-509e-aa61-2eb2c669a982", "text": "A flyover Bangkok city at night Message: 1 Attachment "} +{"id": "6003298", "video_name": "b58485b2-2ab9-58dc-9593-b316d8873762", "text": "a coronation party for king saul made by the prophet samuel hyper realistic image in 8k ar 16:9 "} +{"id": "2006710", "video_name": "e98dfaaa-8e8a-5859-844e-7fef2ff10fa5", "text": "Big waves hit the ship with and potrait "} +{"id": "2005804", "video_name": "bb50f055-11f8-51ab-a722-4b4c7acad8d9", "text": "a woman pushing a baby stroller down the sidewalk "} +{"id": "4003454", "video_name": "0fce3dff-6196-57b8-ad6d-4a8a3ba4463b", "text": "Design of image of Hawaiian flowers emitting light by themselves to create a gentle atmosphere. "} +{"id": "0003755", "video_name": "42d32ddf-7f2e-5181-b7aa-1f9dfc252284", "text": "a man hug in woman animation video "} +{"id": "5001216", "video_name": "f985ddd6-1f8a-5e5d-8acf-319b9c161ba2", "text": "a 11 years old girl is in her own life "} +{"id": "8002394", "video_name": "4509be55-3ec2-5de0-a8e8-74ea3cc6d658", "text": "hand shaking, backgound is after world war 1 "} +{"id": "6004870", "video_name": "eee98eac-18c5-50cb-b0ad-e852317e6fa2", "text": "the night sky full of stars. a crack forms in the sky. "} +{"id": "0006614", "video_name": "2f94ab76-7d78-5c5c-91a0-b1230e8f1e9e", "text": "The aircraft carrier Fujian is at sea "} +{"id": "0003832", "video_name": "443ea7bf-9fa1-5a74-b337-69cb159e8169", "text": "Students racing against the school bus on campus "} +{"id": "4004092", "video_name": "4a514ccb-efe5-5478-bcc2-3545fc50a299", "text": "a man doing hard work in his life create this for motivational video "} +{"id": "3006246", "video_name": "736cd0fa-bbe9-5fbe-b565-61dc94a74dea", "text": "a 23 year girl, black shoes, blue eyes, helping 50 years old lady in the garden "} +{"id": "8003406", "video_name": "6b43c727-67fd-5736-8fa0-9432e3df7d5e", "text": "a guy wearing long sleeve sky blue shirt with green name tag and blue jeans giving a speech "} +{"id": "1004487", "video_name": "5323c3e2-c994-5cad-9d76-f2a2bd7efbdc", "text": "film noir style with one color blue, a wizard fights with a huge dragon, in the dark with lightning and fire, gs 20, ar 16:9, motion 4 "} +{"id": "2006504", "video_name": "a7305cf9-be4b-53a5-a8d8-a9c399bba4de", "text": "a gorilla holding a diamong in his hand, focused, detailed, high quality, focused "} +{"id": "2004383", "video_name": "be922d98-4121-5ae7-98e1-bfb3c60e58f5", "text": "A man walking on the street, talking with a college student. "} +{"id": "7002267", "video_name": "449d1820-de87-5be3-8dad-a8694943f712", "text": "Create detailed chetah chasing a deer in middle of forest "} +{"id": "6004390", "video_name": "57fa2a68-cec1-545e-ab0f-cd8883e262bd", "text": "dramatic ending to a baseball game, shot in 50mm "} +{"id": "6004071", "video_name": "83daf321-1336-564c-a27a-f04eab895a59", "text": "3d cartoon style Ultra HD animation real slow spinning galaxy in a beautiful universal indian temple space, on a galactic moon counter, beautiful scene and colors, ultra realistic,fps60,motion3,gs1 "} +{"id": "2006083", "video_name": "0e6465b2-097d-5fde-a1cd-e4ae7dc24570", "text": "Oprah Winfrey talking alone Message: 1 Attachment "} +{"id": "2003209", "video_name": "5d26f9d1-161b-5447-b386-b9a651c8f890", "text": "mustang cat driffting and speeding, by hanna barbera cartoon animation "} +{"id": "2005898", "video_name": "d55ae274-1d7e-50ba-aab2-2e73dd7a2d14", "text": "Cartoon style fire, horizontal, bottom to up, distant, transparent background "} +{"id": "8001126", "video_name": "50ca687a-64ed-5080-9225-2e1f7d7a50ad", "text": "girl in a disney pixar style forest looking for something "} +{"id": "4004121", "video_name": "fdd8e92c-e5eb-5889-8e32-0eab98ee5a51", "text": "top ten african countries to visit "} +{"id": "1005467", "video_name": "6472d082-ba63-533f-968d-b7817e8d09bc", "text": "eating giraffe surrounded by tigers tugging on tail, open field with trees sun setting, uhd, cinematic motion "} +{"id": "2004423", "video_name": "7a62790c-e4e9-5fa9-9c6c-be2fb301a883", "text": "realistic singer in front of a burning microphone "} +{"id": "0006228", "video_name": "28bb48fa-acb1-538f-9194-6d569090d9ee", "text": "create a man playing the piano in a futuristic setting "} +{"id": "8003407", "video_name": "103275b6-db5e-5279-a801-f7afc648a05b", "text": "Street in Tokyo, Japan, in front of a clothing store, brunette model "} +{"id": "0005288", "video_name": "17e86509-f6e1-57fc-8cec-1edde1bbbecc", "text": "Futuristic Dubai cinematic look, Movie, Dark, foggy, 64K, details "} +{"id": "6004360", "video_name": "4d3824e2-aec5-52cf-95ed-902992097006", "text": "Once upon a time, in a small village, lived a little girl named Neelam. Neelam was very simple and compassionate by nature. She was always ready to help others. She used to play with the little girls of her village and teach them important things. "} +{"id": "8003721", "video_name": "de463837-2ac7-5ddc-a3b5-4cbe8978e841", "text": "a laughing cow wanders through a crowd of people. The atmosphere is mundane yet bustling, with a mix of individuals going about their daily lives "} +{"id": "4003925", "video_name": "3d4ac381-9243-5efe-ab4c-34d3c5b4d760", "text": "in minecraft world Message: Mirxojiakbar (Font: MODERN) "} +{"id": "7004631", "video_name": "576b777b-760d-5fd1-b390-fcf0e37d0b4d", "text": "All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the copyright owner. "} +{"id": "1004620", "video_name": "55ea841a-46d9-573a-b669-a57242e0627e", "text": "a person who gets a ray of white light every time he opens his eyes "} +{"id": "7003663", "video_name": "ffb9c63d-e2cf-589b-86a6-1ec43c810ca6", "text": "His pilgrimage to Mecca not only showcased the wealth "} +{"id": "6002141", "video_name": "d883c463-3608-5068-9f1c-f6462ee01778", "text": "cyborgs hand getting cut off in anime style "} +{"id": "2005827", "video_name": "d80ea477-4663-5718-85fc-7feddf2d6a88", "text": "person sleeping and dreaming about an angel "} +{"id": "2003953", "video_name": "06daf7f8-dc71-56ee-b8e1-8dca857db29f", "text": "In a sprawling laboratory, scientists watched in awe as their creation, the most advanced artificial intelligence system, surpassed all expectations. The AI, named Epsilon, absorbed vast amounts of information, evolving at an exponential rate. "} +{"id": "0005896", "video_name": "22e5a459-60d5-5796-b73c-ecbaa71ff662", "text": "create a dog interviewing a cat that stole its acoustic guitar "} +{"id": "4004723", "video_name": "54d355aa-c8ad-5e97-9b30-809c9d09fb9f", "text": "Take a journey through our solar system and explore the unique characteristics of each planet. Write a detailed passage that introduces and describes all the planets in our solar system, from Mercury to Neptune. Explain their size, composition, atmosphere, and any distinctive features. Consider their positions relative to the Sun and their potential for future exploration "} +{"id": "4002145", "video_name": "0231687a-9119-531e-9af9-42fec990ea32", "text": "bush baby sittting on tree looking at the camera in rainforest "} +{"id": "2007560", "video_name": "4d14a74f-9c13-5cdc-a68e-a675e0af762e", "text": "eren yeager standing before a large tree from behind . covered in greenary and grass "} +{"id": "1005536", "video_name": "65e5ac91-1919-53c2-bf02-0ae78021b534", "text": "vaporwave on a crt tv, perfect loop "} +{"id": "7003899", "video_name": "d843f7df-91de-5949-92bd-dfbc22131205", "text": "A ship departed from Port Qasim in Karachi "} +{"id": "1006773", "video_name": "7bfae3d5-ddb8-52ad-aed8-a10106d8e56c", "text": "Female model wearing conceptual fashion made from paper, 4k, minimal, catwalk show, haute couture, high fashion, vogue, wide shot "} +{"id": "1004641", "video_name": "564da145-6c35-5be1-885e-97fe48e987da", "text": "the santa is giving the present forward to front , smiling on his face and the 3 deers on the moon are running with clear and slow movements "} +{"id": "2006905", "video_name": "895b3b3b-2817-5d40-934f-dc1305de7a7c", "text": "two moose charging against each other, forrest, blueberries, clowdy weather "} +{"id": "3005088", "video_name": "fffc89cc-2e0c-5b86-85e4-7a5e3b2fbb75", "text": "cinematic horror scene with a living marionette leaping towards a viewer, 1950\u2019s, found lost footage "} +{"id": "2004961", "video_name": "bbc4747f-efce-5871-8ce9-c0d1bdd59334", "text": "stove pipe sponge water animal cleaning water "} +{"id": "8001759", "video_name": "382d857d-9e61-540a-9348-ce47793f0d0f", "text": "empty town square of strasbourg 1518 "} +{"id": "6004294", "video_name": "8af0fdb9-5b61-552a-827b-fd5cb3f264b7", "text": "indian gambler wins a lot of money "} +{"id": "1004872", "video_name": "5a004f92-ba79-568f-a335-dc0057e14102", "text": "a dark fantasy background that continues from left to right "} +{"id": "6003548", "video_name": "4a24d209-5499-5bdf-bfb0-82c8eff85279", "text": "a beautifl shot of a greek goddess standing atop Mount Olympus watching the sun set, in the style of Greg Rutkowski, 32k cinematic, award winning dark fantasy digital art by Ilona Veresk, hyperreal, photorealistic, unreal engine"} +{"id": "3003380", "video_name": "7b8aa362-bd30-553f-a0aa-4c2a1e60c4c3", "text": "Galactic Starwing Dragon: Imagine a dragon whose wings shimmer with the brilliance of distant galaxies, representing the vastness of space and cosmic power. "} +{"id": "7002998", "video_name": "b620025b-3a73-53f2-84ba-d1604bc4a5bf", "text": "Include scenes of rain falling on various landscapes, from urban streets to serene forests, capturing the different moods and emotions evoked by rain. "} +{"id": "3006563", "video_name": "6351f2fa-9c90-5b08-8618-a24f0d3a6854", "text": "a blue elephant in space riding a rocket made of of cake "} +{"id": "0005116", "video_name": "150f80d4-19f2-5e1f-b72b-c92f811570ed", "text": "short animation cinematic style of Sphinx cat sitting on a carroof while driving, scared big eyes, in a big crowdy busy, neon sign city at night "} +{"id": "6004229", "video_name": "1f437ba3-560c-55c3-bfa7-1ca6759c6231", "text": "The leader of a cult can get pregnant just by looking at someone "} +{"id": "1005677", "video_name": "684d615f-5125-5b76-b65a-b9abdf89110a", "text": "German Shepherd Cat Talks to His Little Boy Owner. Real 4K Movie "} +{"id": "3006853", "video_name": "3f4b19b3-22a7-5aa0-b7f5-4474cbf04736", "text": "growing boy is looking at the camera, flashbacks of his life on a tapestry in the background, time lapse, fisheye "} +{"id": "7004180", "video_name": "99792327-20ec-50e6-bdd1-700ed1a46095", "text": "jiaxuan is the most beautiful \uff0celegant\uff0ccharming girl in the world. billions of boys fell in love with her "} +{"id": "7002964", "video_name": "3a7aa838-aaae-5183-95ea-ed49a3dfd54f", "text": "video of injured kid watching a nuclear explosion from the middle of a rubble "} +{"id": "4004890", "video_name": "bc6f0612-e486-599a-8b40-2b3293087546", "text": "An animation depicts a rotating globe with beams of light connecting various continents, starting from Mongolia to Japan and then extending across the world. "} +{"id": "1004591", "video_name": "556b6734-065f-546a-86c8-54a6637edeed", "text": "Mario Kart, Mario runs at high speed and drifts around corners. "} +{"id": "1004992", "video_name": "5c41e64b-f966-5776-8ada-9bc7a4d9c1f5", "text": "a stop sign before an explosion "} +{"id": "3004634", "video_name": "151c30e5-325c-5120-a478-5b631a4e5622", "text": "ultra 8k ,a ghost temple in jungle,ganesha,dark,young boy holding torche , movie towards the jungle "} +{"id": "6004581", "video_name": "a15ea7c4-33cb-5009-88fc-cd5ef846af67", "text": "2 warrior fighting in the surface of moon "} +{"id": "7002215", "video_name": "ab6baaf6-1bb7-5a8b-a1c4-7f2cdb08efd7", "text": "girl with beautiful foot,a man touch her feet "} +{"id": "0006482", "video_name": "2d487c1c-68c1-55f9-83e5-4312c382d08a", "text": "a lush natural fern forest with sunlight streaking through Message: Kiwi (Font: MODERN) "} +{"id": "1005070", "video_name": "5d93fa50-0842-5d06-96c9-f1199f01c040", "text": "gears and pipes with water on blue background Message: AT (Font: MODERN) "} +{"id": "2006198", "video_name": "7a64044b-e95c-56b1-b370-d1422243bf8f", "text": "A video that shows a field of red and white poppies swayed by a gentle breeze. The style is realistic and bright, with effects of sun and shadow. The scene is calm and relaxing, with a sound of wind and birds in the background. "} +{"id": "6004811", "video_name": "103eb87c-e7f5-5784-8225-fe53ea6237b9", "text": "Mikko, fueled by his earlier success with the maps in the library, decided to dive deeper into the geography of Lapland. He discovered an old map highlighting waterfalls and, interestingly, a few of them were marked with symbols akin to those that they had seen related to the Sampo. "} +{"id": "7003599", "video_name": "025cb63d-7a6c-597c-abcd-91738797a8e3", "text": "street race and spectators held in tokyo one night "} +{"id": "2006928", "video_name": "14e71dee-95ef-5c39-b2af-b3bfd82e524b", "text": "generate a short video showing an old way to spread the messages by beeting the drum on the streets compared to the new way using the phones "} +{"id": "2005081", "video_name": "0f2f3f97-3085-57ce-adbe-a09e498ca632", "text": "a powerful woman walking down the stairs of a big stage. The audience claps, she is proud. Her boyfriend welcomes her in his arms. POV is the audience in the first row. "} +{"id": "7004559", "video_name": "5865a457-922c-5c83-98fc-83861fea4a12", "text": "streetfoto from a brown pitbull female, white chest, new York city, moonlight "} +{"id": "8001996", "video_name": "ca1445bd-a397-5226-94db-4fba7cc6caaa", "text": "python programming language logo, cyberpunk like with lightning strikes on top "} +{"id": "3006177", "video_name": "3e0cfb16-570e-5135-844a-1ac0a4f4a8e1", "text": "Kung Fu Panda running on the Great Wall "} +{"id": "0005429", "video_name": "1aaf1e5a-2690-5c20-8a3a-1740b4fe812c", "text": "Gandhiji Speactacles, cinematic, UHD, Zoom in "} +{"id": "7003571", "video_name": "b5d8d76f-2e46-5d68-9b30-71aa4fb7e7f1", "text": "alone man walking at midnight in a field "} +{"id": "2006081", "video_name": "0010ed26-7d86-55e9-8d45-c66b4ac601f1", "text": "charactors of young kids boy Aiday, boy fady and girl Zara "} +{"id": "6004616", "video_name": "5d645278-3b4d-5df3-8930-da8bc5971432", "text": "a very colorful galaxy with a massive black hole in the center "} +{"id": "1006293", "video_name": "733adcc0-5554-52b6-a8fd-61e050a40055", "text": "a field on mars growing with earth in the background "} +{"id": "8002730", "video_name": "63af1598-c87b-5066-a359-238ae9f0c663", "text": "professional cannabis field photography Message: CANNORTE (Font: MODERN) "} +{"id": "2007731", "video_name": "a6ae0a01-39d8-503c-ab01-ec684fd9f10d", "text": "an alien wearing a thong on the beach realistic "} +{"id": "0003773", "video_name": "4326b2f5-58c2-58f0-9893-4261de36b734", "text": "Umar ibn Khattab presiding as a judge, a piercing gaze and bravery evident in his eyes as he delivers fair judgments in a courtroom, with people respecting him around "} +{"id": "4004924", "video_name": "a0508467-5472-5bcc-b896-9f2da1ddbbe1", "text": "Politico: US demands an explanation from Israel for attack on refugee camp "} +{"id": "8002186", "video_name": "9cb027a4-a79c-5793-8507-905a56be2d4e", "text": "a Young lion roar front of river "} +{"id": "6003928", "video_name": "4573a4a5-cbb0-55cc-9c4c-c88512d043d9", "text": "chibi style drawing with mustache, looking at camera nodding his head "} +{"id": "2006621", "video_name": "381d401b-55ea-5e2a-82a6-d660544ec24e", "text": "showing a series of social problems, such as deforestation, ocean pollution, urban traffic congestion, etc., highlighting the environmental impact of human activities "} +{"id": "3006336", "video_name": "5c2082ea-48b5-56ec-808a-5e1c5e83e115", "text": "mona lisa paint but with marge simpson "} +{"id": "3006514", "video_name": "5c287929-968f-5296-9f11-07bedc4d24a3", "text": "origami, anime style, ghibli studio, flying in the sky, wind, clouds, plains, cinematic, beautiful, 4k, masterpiece, miyazaki "} +{"id": "5001812", "video_name": "3f783d35-09df-588c-867a-0fe18bcecee7", "text": "A map of ancient Europe with pineapples constantly appearing on it "} +{"id": "2004318", "video_name": "7e19a082-87f6-5399-8724-e78cbe17f3c7", "text": "edit this video , cinematic sound , cinematic effect , realistic , ultra 4k "} +{"id": "7002405", "video_name": "0cc0783d-60bd-5d86-9306-6e694aed599c", "text": "Coffee burning in a crowded room in the wild wild west "} +{"id": "2005735", "video_name": "00c40bca-3f4f-5713-8a5d-505a46d27e3e", "text": "In a beach when the sun is setting down, A small boy and a girl sitting together "} +{"id": "3005686", "video_name": "d0f9a80d-124e-5047-892d-4f27b45253e5", "text": "a man playinf very proffessional his guitar when he finished he got a big applause "} +{"id": "0005603", "video_name": "1ddac8dd-6c8d-53fd-ba79-4fa5e72863e6", "text": "At the exact moment of his death, all the lights in Cairo mysteriously went out, and two thousand miles away in England, Carnarvon\u2019s dog howled and dropped dead. "} +{"id": "2005659", "video_name": "cbdc837d-6ee7-5861-a359-7a6f0cca5909", "text": "The oldest human footprint ever discovered dates back 350,000 years "} +{"id": "0006781", "video_name": "330d6611-a56e-59d4-8c84-73a4f4131838", "text": "a close zoom on an insole, where the material of the sole is compressed so that the cushioning function can be demonstrated "} +{"id": "3004254", "video_name": "87904717-5447-55bb-ad5f-1e6a61b8b120", "text": "Two cats laying on the grass Message: Violeta (Font: MODERN) "} +{"id": "6004496", "video_name": "c0d4e5b8-3946-5e64-a0c5-3efe2118415a", "text": "Inside a dimly lit underground bunker, we see the protagonist, played by the lead singer, staring at a wall full of news clippings and conspiracy theories. "} +{"id": "6004286", "video_name": "66c4ee89-b7eb-5fb1-8ff8-30fb70a741c1", "text": "animusic sacred geometry star trek androids "} +{"id": "3006317", "video_name": "24698bc2-065e-56ec-bff2-7b697d342a40", "text": "bmw f30 in mermald green color drift in city streets "} +{"id": "2005245", "video_name": "d1fa9db3-17df-5daa-914d-025b4dd237d7", "text": "1man, Serj Tankian, centerpiece, Street, pastel tones, ultra high res, high quality, reflections, rtx, unreal, 4k "} +{"id": "6002781", "video_name": "a3a1c0b8-7352-54f0-b8d4-25e0f438a9c3", "text": "unbreak my heart by toni braxton "} +{"id": "3005744", "video_name": "a1796449-ad64-5416-8f29-f54e2692be95", "text": "An open road stretching into the horizon under a vast, colorful sky. The road is surrounded by lush greenery and occasional trees. The setting sun casts a warm, golden glow on the landscape, creating long shadows "} +{"id": "8003655", "video_name": "3d17f2a2-d7ef-598c-9606-e1aeebeec44b", "text": "Return to the pond scene and show the ripples growing larger and reaching unexpected places "} +{"id": "2007397", "video_name": "8b1fc913-7c45-5af5-bdd2-45d7f75a3bdb", "text": "a soccer stadium in an island in the midle of nowhere "} +{"id": "0003821", "video_name": "441e0d6e-c2c7-5fba-8688-9afed91f9354", "text": "a Chinese girl is smiling at the camera and then having a sip of coffee "} +{"id": "4003131", "video_name": "488bd99f-1cf3-5bdb-9d53-dd579e02af97", "text": "young smaurai ronin entering a village "} +{"id": "1006444", "video_name": "75fa8335-2563-5511-af3a-6136f36a77f5", "text": "A Christmas tree full of lights floating in the middle of the sea "} +{"id": "4004396", "video_name": "99669ba7-7774-58a9-82d3-b2c9f9325da6", "text": "A large protest ongoing in Brooklyn, New York (January 1884) "} +{"id": "0005547", "video_name": "1c9bdfd7-3838-5df6-b53f-81d0109752a7", "text": "a group of elephants walking across a field near a body of water "} +{"id": "1006132", "video_name": "7057f5ce-00ec-50bc-95a7-140a33bf4759", "text": "she is walikng away from camera her skirt is moving and her arms "} +{"id": "0004726", "video_name": "0e20ba49-09ab-55ce-b39a-b16e3cd2e3f3", "text": "mycelium spreading across the surface of glass "} +{"id": "8001064", "video_name": "4167cb09-4a9b-5fd6-aea5-5c90e53d2460", "text": "Ali is revered by Muslims for his loyalty, wisdom, courage, and piety. He was one of the earliest converts to Islam and remained steadfast in his faith throughout his life. Ali played a significant role in the early development of the Muslim community and was closely involved in many important events in Islamic history. "} +{"id": "1003149", "video_name": "3a11299d-ef6b-5bac-94d5-7f08064d3775", "text": "industrial fabric city street with nature growing fast in the floor and flowers growing up from gray pavement realistic fast camera speed "} +{"id": "7002534", "video_name": "d17b7d21-c5e4-5dc5-bd19-675ad03e48d3", "text": "realistic alien saying hi to earth people from outer space "} +{"id": "2007839", "video_name": "14f2c8a0-7e62-5f55-a917-a659fe757e7b", "text": "a young healthy fit attractive man, smiling and holding an apple, "} +{"id": "1006994", "video_name": "7ff7a7d1-2588-5882-987f-caa6983f972f", "text": "cinematic blonde girl wearing a blue velvet dress screaming in a dark wood "} +{"id": "2007613", "video_name": "c65a068e-6a4b-566b-a6ec-6418575ee61a", "text": "In the pitch dark. A photograph from the outside of a window of a beautiful cartoon house "} +{"id": "7003344", "video_name": "ddd32609-d0e0-5625-9318-3a0948afabbe", "text": "The aura shines, the mouth moves "} +{"id": "0004764", "video_name": "0edf3fc5-e26f-58d2-92a3-b0208f2ada27", "text": "star wars theme, rebel in a forest, cinematic, looking for something in the sky "} +{"id": "6003888", "video_name": "7d152f42-3d9a-5857-8ea2-14b1c5918635", "text": "aero, top view, Fitness woman in sportswear doing various exercises. background of orange basketball field with white markings. Outdoor sports. online training. summer day. at the stadium "} +{"id": "2004653", "video_name": "3132baf8-7191-5e89-a683-2ffe2125ed7c", "text": "camel laying on ground, a truck dumping dried grass on the camel "} +{"id": "2003628", "video_name": "11a738e3-9e84-5a81-8174-b1824635b52b", "text": "a tight closeup of a beautiful girls mesmerising eyes giving once in extremely slow motion after eating chocolate "} +{"id": "3006895", "video_name": "db3e5893-a02a-5887-a498-c80007cd7649", "text": "moving trees , gentle wind . "} +{"id": "3004417", "video_name": "f08044ba-a3e4-5ace-9442-553ac3cde26d", "text": "hello kitty in new york city "} +{"id": "1004061", "video_name": "4b4ff046-11ff-58cf-8305-8faf11fbf6e4", "text": "white hair moving to the right as if there is a light wind, and black hair moving to the right as if there is a light wind, ears moving slowly, 4k "} +{"id": "2006607", "video_name": "75335b06-cec9-59f6-b1cd-5d07b4a80cd7", "text": "marking his first interaction with the inhabitants of a place known as Agartha. "} +{"id": "2006541", "video_name": "9e2c5835-a884-5a5a-a01f-2376b424bbf5", "text": "A girl draws a snowman, 4k, pixar "} +{"id": "6003121", "video_name": "6aae68da-ae05-5d39-843f-dc53f8458cc9", "text": "youtube analytics with thousand dollars earning "} +{"id": "0003309", "video_name": "3b57bf9e-aeaa-522c-90f2-51ac58f3c43c", "text": "Cinematic shot, a horse and a car galloped side by side on the prairie "} +{"id": "0006218", "video_name": "2889ced2-5449-5752-8440-a825d774e40c", "text": "samurai are driving across the field in a big car chasing a huge elephant "} +{"id": "8003763", "video_name": "c2af075f-a7a9-5dec-81c3-b2a432baaf32", "text": "woman looking to destroyed city, nightlight "} +{"id": "7003118", "video_name": "bf598e2b-f12e-5fa9-955e-8572e7475529", "text": "Pikachu as an astronaut who going on the moon in a 3D style video "} +{"id": "3003348", "video_name": "9f6516b0-2a60-524b-a141-d5397317ea6c", "text": "A flashback sequence follows, revealing the moment when Jake was left in the middle of the street as a baby by his poor father mr. Martinez, sad realistic "} +{"id": "6002270", "video_name": "61a36325-c341-51a7-baa1-8ba6780b8451", "text": "pink trees forest, yellow road, fantastic "} +{"id": "3004764", "video_name": "84150936-45a5-5f1f-9bc3-617c63f0bc95", "text": "man waking up in morning disney pixar studio style from background "} +{"id": "7002083", "video_name": "6b415d8b-c7d3-5a04-8a14-37990c6c2b18", "text": "Illustrate the traditional Ethiopian coffee ceremony. Showcase a jebena (Ethiopian coffee pot) and traditional coffee cups. Visualize the process of pouring coffee and add animations to represent the aroma rising from the cup. Highlight the warmth and cultural significance. "} +{"id": "4002603", "video_name": "78741018-423e-5565-bbcd-f1d5e3703eb8", "text": "A snapshot of Lucinda introducing a new section in the library dedicated to interactive experiences, where visitors physically interact with installations to delve deeper into the silent stories.Animated cartoon "} +{"id": "5001544", "video_name": "d49be640-7a83-5c45-938e-205a7e96ef8f", "text": "A group of men walking behind each other in one group, wearing military clothing and wearing the Palestinian keffiyeh, amid rubble and ruined streets, their faces close to the camera. "} +{"id": "5001674", "video_name": "33e76ac8-b6e7-51ad-80eb-858c0268e967", "text": "a security footage of a cat using a computer "} +{"id": "8003467", "video_name": "3e1d4b59-0d22-5d64-86ec-77295cef91fe", "text": "closeup shot of sooty shearwater burrow near new zealand coastline, early morning, cinematic "} +{"id": "0005426", "video_name": "1a9dcf50-3d36-5427-9f71-142bafeba3eb", "text": "attractive blonde female sitting on the beach in a blue swim suit facing the ocean, afternoon sunlight, photorealism, cinematic rendering, the highest quality, the highest detail, cinematic "} +{"id": "2006950", "video_name": "dc8e8663-d99a-5ef4-a623-b9eb09fdf676", "text": "In a world where technology and biology merge, a group of scientists, activists, and hackers embark on a daring mission to push the boundaries of human evolution, challenging the ethical and existential dilemmas of transhumanism. "} +{"id": "2005940", "video_name": "14e71c49-4deb-5bfa-a5c6-0d88022e5997", "text": "woman collides with man , woman smiles and say sorry "} +{"id": "8003053", "video_name": "396db1c9-bfee-51de-9920-4dcc850dee7b", "text": "Woman listening to friends at the window "} +{"id": "3003015", "video_name": "01f1e75f-f454-5650-81b8-ed1a9bd58863", "text": "cinematic film, cats, grass fields, walking around "} +{"id": "0004549", "video_name": "0b152024-e5c6-5d23-b892-eb60553dcfab", "text": "a coffee bean to a pine tree "} +{"id": "1005181", "video_name": "5f5a14da-d325-596b-999b-7258f6ead8d8", "text": "pencil drawing of a group of abstract geometric shapes arranged in an interest composition, solid color background, noisy, grainy, interesting "} +{"id": "0004335", "video_name": "07521fdb-e762-5959-9247-24489b0b06bc", "text": "climate change, river drying up, cinematic "} +{"id": "4004998", "video_name": "065e1c98-75a5-59e9-92a8-028eaf275020", "text": "antique wine style alchemy bottle, long neck, made of clay, with handmade dermal texture, no transparency opaque, contents not visible, musco green, cork lid, aged image, high resolution, cinematic , bottle exudes a dark green aura around it, some rays circle its surface. "} +{"id": "2004519", "video_name": "1ffbb6b8-2d07-5389-8cd0-eee3a1c13d15", "text": "The scene begins with profound darkness, representing primordial emptiness. Slowly, rays of light emerge, creating a mesmerizing cosmic dance. Darkness merges with light, and Chaos takes shape. "} +{"id": "6002012", "video_name": "a6c8eeec-eb3d-543f-a236-e8856b56a39a", "text": "SunwuKong was jumping in the sky "} +{"id": "2005261", "video_name": "08e261de-c41a-5cae-88f7-25ecb973e2b8", "text": "A montage of the person reporting the subreddit, contacting the police, and sending desperate messages to the anonymous poster, only for the photos to continue appearing. Show the frustration and helplessness growing. "} +{"id": "0005138", "video_name": "15789525-f4b9-53cd-b7f3-6f57a70e339f", "text": "a man with jamesbond outfit, walking in desert, 8k resolution, dolly zoom, character looks like mahesh babu "} +{"id": "6003590", "video_name": "63bbf548-b339-5d7e-8eea-33fda2bb7504", "text": "a city full of flys\uff0csome flys seems like ads and people ignore their coffee with flys "} +{"id": "0004768", "video_name": "0eeb55ac-320e-5757-88dc-d8770d02a7ef", "text": "pixar cinematic moving forward through the buildings "} +{"id": "2004496", "video_name": "a1c2d5b9-0698-5bd9-8417-bfc70a7703cc", "text": "an open book on a table stars with beautiful sky in background "} +{"id": "6003644", "video_name": "7b0a89d0-fdf3-54bf-92b9-70cda590238f", "text": "fantastic view of finland, ice and snow, skiing boys "} +{"id": "6003177", "video_name": "04ca3867-79ba-5b23-8dfa-9f2750908a55", "text": "make a shot of tiger running through foliage in jungle "} +{"id": "6003251", "video_name": "cd6a3a75-c57b-5f3d-a1d0-4f482ca18606", "text": "The intro opens with a black screen and a flipping book page. As the page turns, the screen is filled with a vibrant animated globe, surrounded by elements representing different historical eras like a quill, a scroll, an ancient helmet, and a pocket watch. "} +{"id": "4003528", "video_name": "a47c577e-47a3-5ef6-ab7c-92a1f18b6f67", "text": "Create an image of Max, the bright and inquisitive boy, sitting in his room, lost in his mobile phone with a look of fascination. "} +{"id": "3006587", "video_name": "95439066-10b3-53d6-a72d-e275ba54139d", "text": "a beautiful lady standing near the cliff and looking to the sea "} +{"id": "1006884", "video_name": "7dde5865-a7ab-5a67-872f-952e97d92cc0", "text": "medicine Glass full of Green liquid "} +{"id": "4002343", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "ice cream melting on street, camera moving, quick movement "} +{"id": "0006263", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "We see a nomad walking through the desert, from left to right, with a sun above shining brightly "} +{"id": "1006087", "video_name": "6f9845d2-877c-5d68-9ec7-289b694225a9", "text": "guy jumping off in the tower "} +{"id": "1006841", "video_name": "7d120bd9-18db-5485-8e50-2a9ef876b337", "text": "Depict a support group of fellow traders, symbolizing the importance of a community in overcoming trading challenges. "} +{"id": "3004611", "video_name": "c5f66181-4b41-5feb-bd98-04f5b399a698", "text": "In NRL match, one team wins and the team celebrates in the ground "} +{"id": "4004468", "video_name": "9329016a-0b3e-5df7-b9fa-77361c248c03", "text": "a masked man sitting on his bed hallucinating transparent Ghosts horror movie style "} +{"id": "6003767", "video_name": "327b4b58-b4f4-5810-802a-c4d3ce937d14", "text": "an elephant and ants fighting each other "} +{"id": "3003642", "video_name": "2c78bbdf-4b6b-523c-8500-0b7b76754a63", "text": "Camera fixed on revolving Nendoroid chibi figurine of Pinhead,4k,3d,realistic,loop "} +{"id": "1005684", "video_name": "6871f2fd-7f03-50da-85e3-13a67fadeb6e", "text": "A love hate dance thats hard to navigate "} +{"id": "2004962", "video_name": "9d032a41-7bf1-55d5-91ec-11d00bad9887", "text": "Gray Background black text with modern style Message: INFINITY (Font: MODERN) "} +{"id": "3004092", "video_name": "48c0d91c-25a2-5862-8d61-284b4b2d2d38", "text": "Show people running in fear as their own shadows turn against them. "} +{"id": "2006196", "video_name": "b28c11ae-cb34-5d7f-a8a2-ca7d2300fa19", "text": "the beautiful woman is sitting and thinking about nature. She\u2019s thinking in images. Her thoughts are racing through her head. "} +{"id": "8003011", "video_name": "e745c5cc-56cb-54c2-9a36-70f3a1a0e526", "text": "people walking on a street, photography takes from the heads, depth of field, professional photography, daylight, ISO 200 "} +{"id": "2006264", "video_name": "e3496110-bad9-525f-b4b7-6aacb2a6556e", "text": "A picturesque village nestled between lush hills, "} +{"id": "7003749", "video_name": "1df655cd-9cf6-50c3-bf52-52f2e674ce6d", "text": "Arizona sunset with thunderstorm rolling in, dynamic lighting, cinematic "} +{"id": "5001366", "video_name": "41d01a17-c51a-5e69-aeaa-08c2fffd1f30", "text": "Dwayne Johnson This approach not only improved his endurance but also helped to shed excess body fat, revealing the muscular definition he had worked so hard to achieve "} +{"id": "7002209", "video_name": "e8d5e339-3acb-52a4-b318-0c063cf818ad", "text": "a wolf viciously devouring a deer cinematic shot "} +{"id": "4002144", "video_name": "72758287-a80e-5af4-9305-5d7fccde8795", "text": "parisian street, sunset, close up cinematic "} +{"id": "6002148", "video_name": "541d35eb-e286-5ac9-901d-2c722fbd20c9", "text": "Chinese New Year celebration, night, a family, house, happy, wearing Song Dynasty clothing, Song Dynasty architecture "} +{"id": "3004095", "video_name": "89d6c09c-2c4c-5fcf-a9b8-f0de28035359", "text": "Create an video of a focused individual sitting at a desk in a serene and organized space. The individual is intently analyzing financial charts and graphs on a digital tablet or computer screen. Beside them, on the desk, is a neat stack of investment books and a cup of coffee or tea. In the background, subtly incorporate elements that symbolize time, such as a clock or calendar, to indicate the ongoing, patient nature of investment. "} +{"id": "6002560", "video_name": "24c0eeee-d014-52a4-af35-b41d1b9c6b8e", "text": "A mystical cave entrance, covered in vines and glowing with an ethereal light, beckoning Leo and Tig inside. "} +{"id": "0004144", "video_name": "03fc90d8-4062-54ee-92dc-578c64b5c13b", "text": "shepherds staring at angels in the sky Message: wonder (Font: MODERN) "} +{"id": "3004727", "video_name": "28e0edbc-6aaa-52f7-a020-e2af0b88ab3d", "text": "shiny version of the pokemon ditto oozing out of a crystal "} +{"id": "6003585", "video_name": "1f69f81c-df7c-5f4d-8d4d-19133a450bd4", "text": "Whale dancing amidst colorful fish in the deep, the whale gracefully spinning in a vertical position.8k, hyper realistic, hyper detailed, "} +{"id": "4004926", "video_name": "92f70049-3da9-5f79-8f3b-1345e64c31b7", "text": "On a path in the park, an old Asian man slowly walks away. The camera zooms out and slowly rises. "} +{"id": "1006907", "video_name": "7e527ee2-1fbb-517c-a6d5-b9f3c86402cb", "text": "AI in green and orange, text, clean technical location "} +{"id": "3003294", "video_name": "de6aa585-dd2e-5eee-8ec7-2966eec2763f", "text": "A lion and a dinosaur are bound and fighting "} +{"id": "3004963", "video_name": "13444187-1cb5-509d-9a60-d06981c12e38", "text": "zoom in on Animal statue stars appear "} +{"id": "3003091", "video_name": "cd90749b-d3f1-5ba8-971a-05e77d72700a", "text": "woman, overcoat, umbrella, walking in middle of city street, night, darkness, fog, heavy rain, anime "} +{"id": "7004287", "video_name": "b55715f5-f32f-561b-b44b-fc0367bd7903", "text": "a man, in a hooded coat, without showing his face, red clothing, matrix letters in the background, hyper realistic "} +{"id": "7003162", "video_name": "923ee754-a0c0-503d-b4ac-c079d1163b85", "text": "yellow shoes walking on cobblestone path "} +{"id": "3006361", "video_name": "ef5ba9fd-6dfa-54dd-b108-d4fc63e1a906", "text": "eagle bird shot of the great piramids of Gizza, sunny "} +{"id": "8003528", "video_name": "d6daf24c-a258-5234-84eb-715e6c237cad", "text": "a Albatros diving in the lack to catch a fish water splashing fishes jumping out "} +{"id": "2004476", "video_name": "19d0c5e3-3667-5494-9fab-24d733c18631", "text": "However, there was something missing fromThe princes lilys life \u2013 a real adventure "} +{"id": "7003726", "video_name": "1a6e2e2b-0182-5f48-8ac8-de8cbfd5d458", "text": "Hip Hop Graffiti Artist watching moving subway train passing by with graffiti on it. cinema4d, 3D render, dramatic, cinematic, intense, tron lighting, creepy train station, spinning, rotating, fast motion passing train station. "} +{"id": "6003478", "video_name": "1d5501df-19a5-5561-8b94-8d9904f0d67e", "text": "a video of a penguin sniffing snow "} +{"id": "6002967", "video_name": "aa15b973-8751-50c1-b1c9-ffde42bf5ee6", "text": "sunflowers on a field near a small narrow river with a blue sky, impressionism art style "} +{"id": "3005942", "video_name": "e91861b5-f1fb-5fa0-81e2-388b7e7da12c", "text": "And so, each year, the town gathered under the twinkling sky, grateful for the wondrous Christmas stars that brought joy, love, and dreams to life. "} +{"id": "2006656", "video_name": "00417be5-bab5-5a05-8105-2032a32cf46a", "text": "Pedro Pascal with a coat, from the back, standing in front of the golden doors of a magnificent underground inca temple "} +{"id": "4002434", "video_name": "29a792d6-51c0-5340-aeef-ddc88e22ac63", "text": "I need a animation of a man interviewing a candidate it must be a line drawing "} +{"id": "5001144", "video_name": "98c197d5-5f24-5429-9f57-266fdcb2bb3c", "text": "Walking behind a man walking through a snowy forest during the sunset and crystal snowflakes 4k "} +{"id": "7003202", "video_name": "56e0dace-3d68-53a2-b527-c3bd82e87ffe", "text": "A to Z alphabets dancing, 3d "} +{"id": "7002393", "video_name": "67f0e580-bc78-5686-bdbc-55f1f0b2d640", "text": "young arnold schwarzenegger weight training in office "} +{"id": "8001283", "video_name": "3126845c-2e34-57eb-9ddd-1440442c12b7", "text": "Paint a serene Arctic landscape with glaciers, polar bears, and the Northern Lights. Use different shades of blue and green to depict the unique natural beauty of the polar regions. "} +{"id": "6004916", "video_name": "4dcc1c85-71b7-5ccb-9e41-f10028f19ff3", "text": "a bass musicion on a mountain "} +{"id": "1006783", "video_name": "7c4b9b15-e926-56c9-a7f4-4da4cd849bf6", "text": "smurf with baseball cap and sunglasses, rasta hair, 3d high definition, 4k, in a night forest like a disco with lasers "} +{"id": "7002960", "video_name": "575a8565-368a-5527-88e4-a822139053a1", "text": "inside a lab, inside a bottle Message: BYRON (Font: MODERN) "} +{"id": "3006050", "video_name": "93f3f51f-1fc2-57a6-ab71-d9e1f869eeab", "text": "the last of us Message: Emad (Font: MODERN) "} +{"id": "8002154", "video_name": "ae6456e3-3411-5667-bdf5-3f029e1422b0", "text": "a beautiful large farms,of fruit like banana, orange, coconut tree at village, realism , camera tilt up "} +{"id": "3004583", "video_name": "15d5825e-c466-5d71-9c39-e8fc70db49dd", "text": "a chinese woman walk in the bar "} +{"id": "7002248", "video_name": "3e3fbfe3-f292-5643-9a11-b3474eaa4c92", "text": "Henry Golding in Zorro costume in a quinceanera party "} +{"id": "3005634", "video_name": "9aca9d12-af5a-570c-b2c8-f5434815ae30", "text": "man tackles a man in american football "} +{"id": "3003361", "video_name": "26a1a5f1-a55f-5c6e-9cff-f13d95abaaf5", "text": "Slavos Zizek in portrait, three quarter profile pose, thinking, serious, animated portrait, background changes, documentary, ten seconds long "} +{"id": "8001011", "video_name": "bb245377-07dd-5989-bfdf-f7f60a48a9f1", "text": "Ravi and meera entered their teenage years in agra. 8k ultra hd. pixal style realistic. "} +{"id": "4003423", "video_name": "7ea34405-7b53-58e0-9634-c72cadf8013b", "text": "nurses in scrubs leaving the hospital (as in running from a stressed out busy place) "} +{"id": "3004515", "video_name": "06ac90ae-3710-571d-acf3-edee4884643f", "text": "joker crying about a candy stolen by Batman "} +{"id": "2007356", "video_name": "9348b1b1-7a85-5cfa-a61f-e7745c2a3912", "text": "a very large black book, with the cover of the book is extremely detailed, shiny black, gloomy atmosphere, opening slowly spectacular cinematic lighting Alberto Seveso "} +{"id": "7003604", "video_name": "8ba655f2-75f1-54b1-9693-9d72c123dd47", "text": "there is a battle on gionosis) "} +{"id": "1003524", "video_name": "410360f3-aa71-5a8f-a32c-c3cbe8c77fca", "text": "Realistic 3D render of a apple made of ice that has no color, neutral, lighting, refractions, freshness, ice texture details "} +{"id": "7003506", "video_name": "b98153f7-8b86-583d-a9bd-6584ee99c719", "text": "create a family eating on the beach, in 2k "} +{"id": "0006128", "video_name": "270dbc8b-4a79-5688-ad2b-c8cbe9e79225", "text": "Dark fantasy, King talking to his army of soldiers "} +{"id": "4003571", "video_name": "5d34ec1e-40c5-5b5b-8d38-dce58f608065", "text": "how looks tuetue, also called chonchon, flying in a dark night, looking for "} +{"id": "2006990", "video_name": "e0dd19a0-07d4-5759-8e39-711bfc036a83", "text": "Row of houses decorated with colorful lights, children playing in the snow, laughter filling the air. 16:9 "} +{"id": "4003352", "video_name": "1e32fa9a-32f2-5d99-9810-5c7884879836", "text": "This modification led to the creation of Adapa "} +{"id": "4003062", "video_name": "63ad7169-e358-533d-a142-5dffc8290336", "text": "video of soldiers walking through mud and the city towards the enemy "} +{"id": "2004248", "video_name": "922565a2-1957-5108-93c2-8107cb6e0234", "text": "best quality, masterpiece, 1girl, expressions, highres, full body, day, castle, wine glass, book, solo, ojousama, bishoujo, green hair, very long hair, green eyes "} +{"id": "4002937", "video_name": "bd478c36-aa37-50b8-96f5-12b15f6bb3b6", "text": "Hand placing a puzzle piece on an empty table. The focus is on the hand and the puzzle piece. The hand disappears from the picture while the puzzle piece remains on the table. "} +{"id": "1004581", "video_name": "5533cd95-ef74-5773-b53b-8520420740d5", "text": "marshmallow man wandering through a pixelart forest "} +{"id": "6004493", "video_name": "d5fa094c-d23c-5837-a4ee-53dc411be615", "text": "a hong kong man walking into a court, cinematic, "} +{"id": "8003598", "video_name": "95a7cdf2-e23a-5367-ae8e-8ad7d7b7ac27", "text": "a boat going down the canals in Venice with a gorilla sitting on it "} +{"id": "4004810", "video_name": "81e98229-8028-5ef5-a57d-6ed6a80645cf", "text": "economic graphs moving fast and algorithms swirling around all over the place in translucent colors over raging waves amd tidal waves in a stormy sea, cinematic dramatic style "} +{"id": "3004762", "video_name": "f4195203-07d3-5261-ace6-16b126c47b97", "text": "4k, white clouds floating on sky in late autumn season "} +{"id": "0004789", "video_name": "0f324789-bfbd-5c86-8c6b-bc02e38977d9", "text": "a boy eating ramen in a futuristic cyberpunk city, neon lights, cinematic "} +{"id": "0006137", "video_name": "27257524-3cc7-5b3a-bc8d-849cb0fa4e03", "text": "Doraemon squeezes into the subway during morning rush hour "} +{"id": "4004340", "video_name": "1cd6a557-ee60-5ab3-8fc3-9647b1ae100c", "text": "A cute red and white egg character is now in pieces on the ground, looking sad and disheveled in Broken Wall Base. In the style of colorful, cinematic, 3d topology and aesthetic, dynamic movement, cinematography professional, fantasy art, shallow depth of field "} +{"id": "3003076", "video_name": "0246413b-144b-5722-922e-afb093577225", "text": "a king with throne sitting on his chair discussing about the kingdoms wherabouts with the minsister and other people sittin ochair. "} +{"id": "8001140", "video_name": "c1a91535-7475-5d2d-bc7c-1da63e4a5eb1", "text": "create a scene where people have 8 legs and are walking around a target buying groceries and tvs. "} +{"id": "4004023", "video_name": "42b7209d-d0b6-53f5-9f0d-cbd5b917566d", "text": "reporter on TV Message: 1 Attachment "} +{"id": "1006807", "video_name": "7ca207cd-3a2d-52c1-bd46-09c980e94476", "text": "white drone with a red light leaving an abandoned building "} +{"id": "0004112", "video_name": "036676c5-23f3-589b-811a-5158f3e0d300", "text": "Veridium City began to heal from the scars of corruption and crime. "} +{"id": "7004652", "video_name": "da96cf1e-8831-5f8b-a096-c4b3b11b7aa0", "text": "particles, molecules, atoms, human drawing, wind, fog "} +{"id": "2004905", "video_name": "67956f89-325c-5766-8a0b-429f2bdb6e10", "text": "a city made of dollar bills, motion4 "} +{"id": "0004847", "video_name": "103778a6-c16d-5d3f-b76a-16488f8c52ef", "text": "a bustling office cafeteria, where colleagues gather during their lunch break. The cafeteria is filled with the aroma of various cuisines, and people sit around tables, engaged in animated conversations. The protagonist sits with their coworkers, sharing stories and laughter. Indian. "} +{"id": "8001474", "video_name": "9832ae98-c020-57e1-ae7a-25d920848980", "text": "a girl and a boy walking through eternity "} +{"id": "0004203", "video_name": "04ecefd2-3b71-55c5-8471-ded61fb5baa2", "text": "trio of heroes a dragon, a priceinha and a galactic ninja soldier, Mission to save the universe, exciting twists, 80s film "} +{"id": "1003250", "video_name": "3bd47061-712e-5ba2-b254-2de9ad6d075c", "text": "cinematic action, Lion attack surprise and furtive a group touristic, on savane "} +{"id": "3005834", "video_name": "18b3ca3f-1671-520a-807c-dd20731bc2be", "text": "a beautiful cinematic video of a mosque zoom out "} +{"id": "6004611", "video_name": "c0fb822a-b324-561b-9e6b-bb131048bcd0", "text": "early 19th century men fishing in a stream in the countryside in the Cotswolds, UK "} +{"id": "5001681", "video_name": "8775210a-0518-50f6-99ba-35b77271980c", "text": "young Jeremy Irvine photo sliding on the tablet "} +{"id": "4003615", "video_name": "a561e882-8fc2-589d-9fb6-b8e8f8bc5949", "text": "a horse with human body ,wearing a hoodie,working out in the gym. "} +{"id": "7002916", "video_name": "bab21b30-5652-5511-be2b-b428c0eb940c", "text": "A Pikachu walks through the ruins after a nuclear explosion "} +{"id": "8001662", "video_name": "1fea3ee5-869e-5cc9-85ba-4a5aa509da5b", "text": "An artistic representation of an otherworldly alien engaged in a dramatic battle amidst a unique and imaginative cityscape "} +{"id": "1006085", "video_name": "6f8e9e08-4338-5069-a774-c3a2cd384681", "text": "a boy dog venture deeper into the forest, a rat spots a peculiar drawing etched onto a tree trunk. the boy and dog gather around, examining the markings. "} +{"id": "3003702", "video_name": "a3ab5264-b8be-5191-9e87-5c41066fb9c0", "text": "In a future where robots dominate society, witness the uprising of a group of sentient machines led by the charismatic A.I. rebel, Circuit Breaker. Explore the tensions between humans and robots as the rebellion unfolds, blurring the lines between man and machine. "} +{"id": "1006076", "video_name": "6f746cd5-4593-54be-8ce2-c7104bec8197", "text": "Old Mother Nature, black and white video by Salgado "} +{"id": "4004418", "video_name": "b5328af2-b404-5b6c-a613-a0b9e0ad49ae", "text": "image of a woman police officer with a Bikini top on and a hat "} +{"id": "2003008", "video_name": "3a80e10d-f688-591f-934d-3ad9706c0eac", "text": "Photograph a human and a robot, painting each other faces. Fashion magazine cover. Achieve an editorial aesthetic with minimalism and bold pastel colors. Use a prismatic patterned background to make the image pop "} +{"id": "2007040", "video_name": "549a6664-c73e-543a-b431-08d64e6beecc", "text": "Arriving at the Club: Cinematic shots of entering the club, with emphasis on the vibrant atmosphere and anticipation. "} +{"id": "5001976", "video_name": "7f02ff90-7c5f-5542-a6bf-f228f3e250c1", "text": "Video of a yellow flower in the middle of a river, camera zoom out "} +{"id": "1005239", "video_name": "605f9075-aaf3-5db8-ab70-7b85ae903df3", "text": "Development trends in maintenance: Future challenges and opportunities. "} +{"id": "2007940", "video_name": "9c72d310-3fa5-5071-a16c-b164eed9460d", "text": "Gummy Bears\n\nracing in a candy land with a crowing cheering them on "} +{"id": "1005159", "video_name": "5f022256-ba99-5b38-a2b4-5c840d265222", "text": "A camera circles the craft Japanese sword "} +{"id": "7002817", "video_name": "516c96bb-a7c0-5588-8633-e25c39fcb3be", "text": "three indian guys discussing seriously, in night time, outdoor area "} +{"id": "8001001", "video_name": "dbbbdda7-3655-5b4a-91d1-dde3f8ffb563", "text": "eren Yeager watching Titan rumbling in human form "} +{"id": "8002808", "video_name": "51198489-c2d4-5ac8-b7b9-c059fd78779a", "text": "Suddenly, joyful laughter is heard at the entrance as a newlywed couple enters the home. Hand in hand, they wear expressions of pure happiness. Family members warmly welcome them, and the entire house is permeated with an atmosphere of love, as if the entire family is embracing a new chapter in life. At this moment, the warmth and happiness of the family seem to solidify in the air, becoming everlasting memories. "} +{"id": "4004624", "video_name": "d495a8a5-4740-530b-bdf4-90b0c9ee2c1e", "text": "boy flying over a beautiful mountain above a brightly colored hummingbird. "} +{"id": "6003244", "video_name": "d99568e3-c12f-57b0-809a-062e4a61e901", "text": "Generate a better product video based on the original video "} +{"id": "1004441", "video_name": "52233ef6-c35d-5f10-8dfd-28faedbb03df", "text": "girl, 17 years old, running from beach towards the camera wearing bikini "} +{"id": "7004734", "video_name": "c32c33b6-557c-580d-98ba-84a7dc7aa0e5", "text": "A bunny walking in the woods with a lantern in the hand. "} +{"id": "6002484", "video_name": "b2f3e20a-a070-54e5-93e2-43aa231ef14f", "text": "A majestic ambient landscape on a colorful planet spinning very fast with many gigantic glowing stars in the foreground and background 9:16 "} +{"id": "6004792", "video_name": "bdb80252-4e6b-5c2b-a9cb-ee56184083d6", "text": "woman holding a sign Message: hello testing (Font: MODERN) "} +{"id": "3004966", "video_name": "be565533-8580-52cd-baa5-c54f97bbf29b", "text": "camera moving up a building in cyberpunk city and night "} +{"id": "3006656", "video_name": "97cd2636-b218-51ca-9114-bab345fbe140", "text": "a soldier escaping from an ambush "} +{"id": "2006215", "video_name": "1353a27f-b6ec-576f-b72e-b6e45b0e1b85", "text": "Slow pan from Tiffany, who is seated in her glam room, to a framed picture of the featured OnlyFans creator on a table next to her. Cue a sexy saxophone music. "} +{"id": "0004365", "video_name": "07d39c2b-0575-5fd6-9554-7516d601d176", "text": "black soccer player Message: MAS CLARENCE SEADORF (Font: MODERN) "} +{"id": "0006646", "video_name": "302d7f12-bce5-591f-bae0-8d3373733be8", "text": "World of Warcraft undead characters playing orchestra in a Cathedral. Panorama shots of the giant scene and strings, brass, woodwinds and drums sections "} +{"id": "2003741", "video_name": "577ac309-cb98-5e80-8321-b02fdfa08bd8", "text": "outside the window raining for 8 second long video 4k "} +{"id": "0005123", "video_name": "153b9044-8262-5dc4-8734-21987e437cf8", "text": "egion marching into battle, 4k, 5 minutes "} +{"id": "2004393", "video_name": "d7ff2c05-f1cb-57fc-af3b-15d3a8c13446", "text": "nicolas maduro crying in national tv "} +{"id": "5001953", "video_name": "d1809854-056a-5928-9310-cf6241d40176", "text": "portrait of Egyptian pharaoh, cinematic, photorealistic, uhd, 8k "} +{"id": "2003965", "video_name": "df652917-2381-5b79-b601-596ccab0625b", "text": "a man going on an epic journey "} +{"id": "0006227", "video_name": "28bb241d-2359-5ae9-961d-70fe32d06867", "text": "The pink pony is throwing up rainbows "} +{"id": "0005879", "video_name": "22acb1c6-edde-562e-a7e8-c1800ec20a46", "text": "minecraft world has spiderman vs batman epic battle, the victory fall for spiderman, make it portrait for youtube shorts "} +{"id": "5001032", "video_name": "8d24f23f-1913-5866-aef4-ce704790b1a4", "text": "The Queen of Air unleashed waves of wind and storm clouds, striking fear into the hearts of the opposing forces. "} +{"id": "1004507", "video_name": "53921769-bc04-50e4-a1fa-3197b979e77c", "text": "Last meet between man and women in their twenties, breakup,hotel "} +{"id": "1005161", "video_name": "5f078edc-ee8d-57ad-9f65-67fda4c31fe0", "text": "make the Eiffel Tower sink then make it emerge all radiant "} +{"id": "2005543", "video_name": "6f27b1ec-8a30-501f-859e-f7464d17540f", "text": "Behind it, however, was the suffering of many thousands of farmers who lost their livelihoods and became destitute. It was a serious matter in the end, "} +{"id": "8003303", "video_name": "504047eb-746b-5a2e-bd5c-5ad595687f03", "text": "found an image that symbolizes health, wellness, and transformation. It depicts a young woman in a serene yoga studio, executing a complex yoga pose (Lotus position) with perfect balance and concentration. The studio is bathed in warm, natural light and surrounded by lush potted plants, creating an atmosphere of tranquility. The walls are adorned with inspiring motivational quotes in elegant calligraphy. The artwork is in a realistic style "} +{"id": "8001625", "video_name": "fc83bed1-6b6c-5e12-b354-bc737ffd535b", "text": "Many demons start emerge out of the burning demonic circle, night, cinematic, birds eye perspective "} +{"id": "3004755", "video_name": "94515a08-32d2-5bff-a360-5d56963e52f3", "text": "atractive woman blinking with an eye "} +{"id": "1004828", "video_name": "593181ba-bad5-5136-81dc-94f774f663f8", "text": "This process aids in bowel regularity and can contribute to feelings of fullness "} +{"id": "0005410", "video_name": "1a5a855b-d737-5b6f-8181-9534688de840", "text": "A tv monitor showing optical illusion of Rob Gonsalves arts "} +{"id": "6004451", "video_name": "69d8bcdc-e4c7-5620-b695-30bcc8680d71", "text": "infinite loop of cyberpunk ninja, fighting crime, action scene, sparks, fire, pcb, blurred motion, panning camera, photo realistic "} +{"id": "6002115", "video_name": "f5c832b5-9497-5da2-8290-65cbd665dd3d", "text": "girl mini running for mayor in a motorcade "} +{"id": "0005320", "video_name": "1892e7a2-ef39-5c9b-8d78-1dc7b04c6cbe", "text": "the walnut falling from the top "} +{"id": "2005316", "video_name": "670153f9-f2cf-5166-a1cf-46d9b6679c5c", "text": "absolute reality stunning photo of a woman in cashmere, loose fitting, casual, black sweater with long sleeves on crosswalk in New York City "} +{"id": "7003384", "video_name": "05a382bc-e634-5b66-bc1f-e84b1ff08178", "text": "1980s dark fantasy horror film, a strong hobgoblin gets disintegrated "} +{"id": "2003450", "video_name": "73e20d1b-6c7e-5bd4-abaf-a00d0155cae8", "text": "A girl being chased by men "} +{"id": "7003904", "video_name": "9fd8c39d-6429-59a5-8dec-1dda99e54d74", "text": "a castle made of glass and a throne "} +{"id": "4004742", "video_name": "f4977baf-85b5-5f7e-a96b-5ee7acb44ad9", "text": "blonde woman dancing on the white wall "} +{"id": "2003085", "video_name": "f5b5706a-ea01-58dd-b9d1-942e49a931cd", "text": "A sculpture going to forest for collecting stones "} +{"id": "7003876", "video_name": "f5077a23-c5d2-5fca-a80e-b164852f755f", "text": "detective drinking coffee on an old coffeshop, \u0160vankmajer film shot, stop motion, stopmotion, stanley kubric film shot "} +{"id": "1005425", "video_name": "63a0774c-12ec-5dd0-8d06-8007ae025ff9", "text": "vril energy could bring countless beneficial applications to humanity. Its use can be explored in several sectors, such as the generation of clean and renewable energy, the cure of diseases through energy medicine, the expansion of human consciousness and even space exploration, where a more efficient energy source could revolutionize our travels around the world. cosmos. "} +{"id": "2005196", "video_name": "6e0b0c08-6eba-5a73-b16b-32610a944768", "text": "wood door dark style comic style opening "} +{"id": "6003228", "video_name": "47598702-421e-5f43-98b6-2e8837737adf", "text": "picking up phone from the river "} +{"id": "7003933", "video_name": "fa9c5e29-08b4-522b-8d88-d585542d5611", "text": "cartoon kangaroo hopping out of a bush "} +{"id": "0005037", "video_name": "138cc1b8-b7df-5b9f-a756-a1ebdd0f0d35", "text": "Girl with scissors cuts the rose, the mom smiles and girl holding bag dances and smiles. Bird in sky flies across the page "} +{"id": "1006838", "video_name": "7d06680d-22c0-5d35-914e-cdf9f6e84e6d", "text": "matrix hacker is testing a 3D application and was integrated in the scene, bladerunner style, zoom in "} +{"id": "1004021", "video_name": "4a923ff4-cfb7-5f52-a27e-3bc5b02a698b", "text": "This subterranean realm is described as being divided into seven distinct layers, "} +{"id": "1005098", "video_name": "5e0b1940-2998-53d5-b557-ac315a2ecb2f", "text": "Halo Spartans fighting Red Aliens in a burning red scene with guns with laser beams shooting from the skies with fire around. "} +{"id": "1006870", "video_name": "7d7a2ed4-fab3-5391-b3ac-a9e139f89fa0", "text": "Make A Remake Of Midgnight Club 3 Remix Only In Photo Realism "} +{"id": "4003440", "video_name": "f507093d-da03-555f-af35-36a45c0eb7d2", "text": "A phoenix and a sparrow fly in the beautiful sky, and the sparrow stands on the head of the phoenix, and the dynamic effect is taken professionally "} +{"id": "3004726", "video_name": "66e1c66a-793f-56c6-ade1-e79833e84224", "text": "Drinking drinks alone on the couch Message: 1 Attachment "} +{"id": "2003172", "video_name": "e22fe15e-4651-5abe-8c7b-b5f7bb24d12f", "text": "Man kissing the hood of white luxury SUV, in style of luxury TV commercial, wide angle, backdrop canadian forest and lake "} +{"id": "7003519", "video_name": "d6ae0889-f693-5f1c-a70f-990920e4ca6b", "text": "a cat reading a book, realistic lighting, rim lighting "} +{"id": "3006737", "video_name": "174ba130-db56-5ebe-ae8d-5001d8d68857", "text": "Hologram of the observable universe glitching, 3D, Unreal Engine, photorealistic, highly detailed"} +{"id": "0005848", "video_name": "224e2529-4d4d-5829-9d59-2834041dbebb", "text": "anime city 4k moving fast sunset "} +{"id": "4003216", "video_name": "c6d076e2-2c88-502b-8364-c19ef21254be", "text": "two cats having a gun fight "} +{"id": "3003513", "video_name": "bc36f454-0766-5d56-8422-d8d6a015b4da", "text": "Explore the story of Thor, the Akita with newfound superpowers. What were his initial reactions upon discovering his abilities, and how did he use them to make a positive impact on his community? "} +{"id": "3003362", "video_name": "8427a36a-ad6b-5ba8-ab5a-19cfe25d6f58", "text": "cute anime girl waving bye, black background "} +{"id": "0006264", "video_name": "29a588c9-a548-570a-a2e0-54975a98d369", "text": "A heartfelt letter from John to Emily. "} +{"id": "2005348", "video_name": "ac169829-9cea-50d4-b10e-2324f68178e6", "text": "Aerial shot from the sky, distant view, horse hoof prints in the snow, the focus is on the horse hoof prints "} +{"id": "2007574", "video_name": "f0f05bdf-930b-56ab-a34d-2100988fe153", "text": "Use imagery to convey the desperation and panic that ensue as people grapple with an incurable threat. "} +{"id": "0003431", "video_name": "3d680fe8-fe28-5e08-b2df-e9977d601052", "text": "A medieval funeral, Pan, slow motion, 3d, Cartoon "} +{"id": "3004387", "video_name": "9047526c-ef9f-5789-af7e-c21d6d8279d0", "text": "1980s French film, police ramming through the doorway, young man staring down the lens of the camera, building on fire, 4K, 16:9 "} +{"id": "4003217", "video_name": "48ce2c67-d17f-58ac-88c0-9a02acc1dfde", "text": "a chrome hand emerging from a reflective pool of mercury "} +{"id": "1003892", "video_name": "47c679bb-449f-5a2b-ad72-31e5d2833f66", "text": "An ominous shadow approaches, uniting the predatory lion and leopard in an unlikely alliance. "} +{"id": "2005904", "video_name": "5f98355c-00c4-584d-9aa0-975d483b77c6", "text": "To Israelis, the missive marks a formal utterance of the Israeli state\u2019s right to exist; to Palestinians, it was an early sign of their dispossession. The declaration also noted that it was \u201cclearly understood that nothing shall be done which may "} +{"id": "1004919", "video_name": "5af83d8a-c3c8-536e-ad5c-9605342d9438", "text": "a shark playing drums, realistic, 4K "} +{"id": "8003818", "video_name": "bbb850db-9783-5254-8ecf-2d89b771938c", "text": "10year old boy sitting on the floor playing guitar one light room "} +{"id": "7002505", "video_name": "7b3e6c94-bc02-5f35-b5a1-a7072264118c", "text": "Some juanes with scientific clothes running form a futuristic dome "} +{"id": "1006703", "video_name": "7ace877c-37cb-5320-ae0b-c73f3b2c7ae2", "text": "animated, A jolly Santa Claus with a wide smile and a friendly wave, surrounded by a snowy winter wonderland. "} +{"id": "4004410", "video_name": "810f3fc6-a49f-5836-84d5-6f664d34580a", "text": "the boy standing ship middle of deck,sunset,yellow sun, "} +{"id": "3005509", "video_name": "221d8950-e128-5c14-af54-2c09fd7ae788", "text": "3D guy without face flying with an aura on a matrix background and burning "} +{"id": "3006929", "video_name": "7fbecb3f-3dcc-5734-a8e3-c5a950c3c88f", "text": "camera rotating 360 degrees clockwise around army general played by tom cruise "} +{"id": "2005688", "video_name": "c4842f6d-2f78-5a06-9de6-f8e9ec10ef14", "text": "two project manager jumping from a building to another "} +{"id": "6002608", "video_name": "751b4f69-4ca2-5f40-a64c-90ac9ac0eace", "text": "cartoon style dogs laying on lawn chairs beside a pool, 3d render, 35mm, (intricate details, soft light) "} +{"id": "3006526", "video_name": "802cb694-6f2b-5e5c-9221-141b1fa2dda6", "text": "beginning of human settlement in an exo planet less saturated cinematic photorealistic professional visual effects "} +{"id": "0003336", "video_name": "3be5e379-6ac0-56be-b00d-79940cd9c50d", "text": "wealthy man looking at a distant explosion "} +{"id": "2006000", "video_name": "48d50a51-4ab8-5de4-90b3-928de9b60989", "text": "partying dancing talking crowd bar evening, uhd, cinematic motion, realistic "} +{"id": "3006046", "video_name": "324c8452-9f69-58f2-93ca-9fe90ac50b48", "text": "A photo of galaxies moving away from each other, reality "} +{"id": "1005870", "video_name": "6c0bdad3-fcb2-5191-998c-738a418b81a3", "text": "a man sets up a VHS camera to record a woman on a bed, grainy, shot on vintage film "} +{"id": "2006404", "video_name": "dd199b05-4058-575f-ba52-fe1403d982a7", "text": "cute lavanda flower in a oil painting anime style Message: Sofia (Font: BAUHAUS) "} +{"id": "1005136", "video_name": "5eaf04fa-e728-5bbc-9b3c-14e2024b5ee7", "text": "Ultra HD. Cinematic. Horror movie vibe. Suburban house, man on driveway, daytime, empty street, thick fog rolling towards him. "} +{"id": "1003464", "video_name": "4020c5e0-edef-5d9e-a96e-039460e056df", "text": "Donald Trump with young girls on his lap. HD super realistic 16k "} +{"id": "4004501", "video_name": "b7876716-e787-596f-9ced-9a25ec204404", "text": "A bag of nuts, dropped at a 45 degree angle, nuts spilled slowly, 360 degree rotation, high quality "} +{"id": "0003475", "video_name": "3e42430d-9b43-5b57-88b2-da39436068ce", "text": "Bamboo, brook, lotus, candle, pebble pyramid, zen style Flower petals moving, water slightly rippling, sun rays shimmering, zen style "} +{"id": "1003397", "video_name": "3ea2cf1c-97b6-5733-be02-11745f103812", "text": "Merlin perched on a rooftop, squawking animatedly to get the attention of the villagers below.Animated cartoon "} +{"id": "0004114", "video_name": "036dac5c-b710-57ab-8d75-ba91e12a56f3", "text": "Elon Musk with Bill Gates with Apple "} +{"id": "7003226", "video_name": "7b9b4d45-2d68-57a1-8e6b-1ab72a0753c3", "text": "a huge smile cute, happy tooth falling into the ocean style:Anime width:1344 height:768 aspect:16:9 "} +{"id": "5001869", "video_name": "a8a56081-cf0c-53ec-8409-6dbfe833dd75", "text": "A starry and mysterious sky. The camera zooms in on the stars that begin to shine brightly. Suddenly, four colored beams of light descend from the sky towards Earth motion 3 "} +{"id": "2004641", "video_name": "a11604ec-b0cd-5a06-b682-e8681c17bf71", "text": "a line art animation in the style of Bosko "} +{"id": "7004841", "video_name": "29a85532-6adb-537e-90e6-cf071e51cd57", "text": "WAFA: Israel bombed a school with thousands of refugees in the Gaza Strip "} +{"id": "3004698", "video_name": "80839c32-8795-5ede-a961-8441a7059dba", "text": "moving character , waving hair , alive , particles, angry eyes, glow lighting, 8k "} +{"id": "2007095", "video_name": "04bc1c9f-4b7e-543a-b4ce-aa895fe90924", "text": "A person, back view, starry sky, Milky Way, desert, panorama, high definition "} +{"id": "6003830", "video_name": "8e7dd0cf-ec2e-538f-8d69-7a79ec754cd2", "text": "a boy relaxed one and another boy holding heavy bags, tensed, scared, not confident , bothing going to school and tslking "} +{"id": "6004810", "video_name": "74f34578-bdb4-5d82-b96f-4ed53f2ca661", "text": "futuristic house logo concept, cinematography video lighting stoking house multiple times, IMAX, perfect rendering, film, "} +{"id": "6004001", "video_name": "dd8c4925-f0c8-5ddd-9603-e840ac8584b0", "text": "an image of the national moroccan football team 3d wining world cup qatar "} +{"id": "7004296", "video_name": "f64d3088-3cd8-52f1-9401-8778734dc21f", "text": "robot from queen news of the world, clay animation, creepy, outer limits style, daytime, crane view "} +{"id": "8001198", "video_name": "4dda2593-5c7e-5c29-b3a8-1e5f83e1ad97", "text": "Despite these changes, the Sentinelese remain resilient in maintaining their isolation. "} +{"id": "7004030", "video_name": "f80ccd43-b83c-5a25-818d-e57cf0d8fc35", "text": "a viking brian kneeling at prayer "} +{"id": "0006318", "video_name": "2a9278f0-4c6d-5a49-85b5-ab994374d693", "text": "people dance and having fun while singing karaoke at night "} +{"id": "1005076", "video_name": "5d9fe842-0f95-5d88-89a8-d25b17a3cfdb", "text": "A knight ride a white horse ,through the forest to the castle "} +{"id": "5001967", "video_name": "49c1d039-670a-58e3-a331-2197960f2df0", "text": "make video on impact of floods in punjab "} +{"id": "3005416", "video_name": "0606d338-3c5f-5713-971b-bdf03d649a60", "text": "micro scope view in cross section of leaf, under micro scope "} +{"id": "4004933", "video_name": "71df6fd0-20eb-5089-8fad-1d5a0a87b321", "text": "a horse parachuting on to the moon in Pixar animation "} +{"id": "1005157", "video_name": "5efc12ee-3e5e-5857-a0b0-3f7aba76ca9b", "text": "Juice advertising posters, the orchard in the summer is sunny, a jar of orange marmalade is in the middle of the photo, surrounded by flying oranges, cool and bright, photorealistic style, Refreshing, bright and attractive, 8K "} +{"id": "1004122", "video_name": "4c55a569-f82f-5a39-ae27-cf9ea212c9ca", "text": "a brown man, looking on a mirror, inside a bathroom "} +{"id": "6002953", "video_name": "eb0cb225-5c84-5be8-a54f-62cd3b274559", "text": "a chick is playing the basketball "} +{"id": "3004046", "video_name": "fc1891e0-390b-5ad2-94c2-20f9da259dc7", "text": "reality, splashing splattering fractalizing water, fluidity of the human body HD 8k psychedelic vibrant everywhere "} +{"id": "0003268", "video_name": "3a87cf91-bf01-5456-8284-b0eb7702db2e", "text": "Elf runs in forest,colorful full body shot, cute anthropomorphic cricket, long thin antennae, symmetrical, correct proportions, vibrant colors, by pixar, orange lights, by Ryohei Hase, Naoto Hattori, Brian Kesinger, James Jean, octane photograph,full bodyt, long shot front view, matte painting, 3D "} +{"id": "0006581", "video_name": "2ef8ecdd-8cc1-5d29-9aa4-b49d077fffaa", "text": "write the word tehnopark in graffiti style "} +{"id": "2004498", "video_name": "8fb05739-52b7-5f71-b7ef-f4dd0c2fda80", "text": "Giant zemeckis rubik cube, transforms to the exterior facade of a modern house with gardens, render, 3D, Ready player one, UHD resolution, 1080x1080 format. "} +{"id": "8002614", "video_name": "4f0864e2-256a-5c66-aef2-d9eba66f4da3", "text": "a man and a wo man hit in the park "} +{"id": "4004161", "video_name": "ef7dbca7-f26c-50db-b23d-ff4aed4626ff", "text": "Little hedgehog in the mist \u52a8\u4f5c:look for food "} +{"id": "6003661", "video_name": "5577216d-8c26-556f-a78e-6c067a8362ba", "text": "Luisacbotys in the shape of an airplane "} +{"id": "4004162", "video_name": "cf678cbc-39b8-57ae-8cf1-3d7b15837ff7", "text": "Steve run in the Minecraft world "} +{"id": "0006701", "video_name": "31602c78-fed5-5fc5-92ac-b4d10fcbcace", "text": "a cooked thanksgiving turkey is moving on the plate "} +{"id": "3005389", "video_name": "2e28a4ae-5e31-5975-bec4-489efabc59d1", "text": "a group of people on a 4x4 adventure "} +{"id": "0004414", "video_name": "0877d044-e75b-5ed8-88fc-9debb6615a15", "text": "a man walking in a street alone . "} +{"id": "0005352", "video_name": "19424bb9-b76f-56dd-bc5f-4c9d39137b05", "text": "Sofia engages in intense combat with a horde of sleek, menacing robots. Her movements are swift and calculated as she battles against overwhelming odds. "} +{"id": "2007722", "video_name": "93f723ae-7e62-5f46-8ee2-f35c5b65e2dd", "text": "Nicholas Cage performing an energetic and entertaining Ukrainian hopak dance with enthusiasm and flair, showcasing traditional Ukrainian dance moves and style. The video should highlight his charisma and infectious energy as he dances with passion, engaging the viewers with an unforgettable and lively performance. "} +{"id": "0004481", "video_name": "09b78e19-9785-5191-bb24-f79d0bc30ce3", "text": "A vibrant, juicy apple surrounded by elements representing energy and joy, like sunbeams and vivid colors. "} +{"id": "3004979", "video_name": "0a04c7f0-f793-5f5a-a256-c253754b6ad2", "text": "Light house Tropical Shoreline, National Geographic "} +{"id": "1005057", "video_name": "5d70d58a-3545-525e-8997-1a971d2ec2fa", "text": "Kraken sea monster emerging from a whirlpool in the ocean and engulfs a Viking ship "} +{"id": "5001406", "video_name": "5679e219-c32c-525d-ae8a-02e53e3656cc", "text": "Sherlock holmes plays his violin in his home, Victorian London "} +{"id": "7003060", "video_name": "144fee9e-42f0-5455-92c6-9957bd0f23e2", "text": "roast beef in the field blue sky some clouds sun camera zoom out rotation "} +{"id": "6000006", "video_name": "658ee0a3-bca6-5c37-b031-03476ae74eee", "text": "A boy carrying a schoolbag and a paper plane flying across the sky, animation style "} +{"id": "2003069", "video_name": "a5b25027-e350-5b13-b16a-55e2c9fa1450", "text": "a walk around a big empty stage with a Toastmasters logo in the back "} +{"id": "6004749", "video_name": "face3145-af38-5618-a26d-a7e690ad9692", "text": "create different layers for the video, add 10 seconds "} +{"id": "6002289", "video_name": "ef23369b-8c37-5c97-bee7-71a0ab672e35", "text": "Depict Cosmo, the animated star constellation, coming to life and interacting with Emma. "} +{"id": "8002203", "video_name": "f8de01f6-91ec-5817-a497-ca7a0e20a7b3", "text": "The soldier returns to his basecamp, greeted by his fellow soldiers. They cheer and celebrate his success, acknowledging his bravery and resilience. "} +{"id": "2005899", "video_name": "205f7bfd-234c-521e-bbae-df25dac4d0da", "text": "boy in soccer uniform. his grandma gives him a red candy "} +{"id": "3004520", "video_name": "f9007bd1-e8c4-58c0-ae49-8d7ba4580932", "text": "Illustrate a bright and shiny red apple. Show the apple in a garden or on a tree branch. "} +{"id": "4003291", "video_name": "f11f2608-635d-5fae-a486-69ee7ee48710", "text": "super realistic day of the dead dance, 16k, "} +{"id": "7004619", "video_name": "6aca45bc-c469-5b90-877e-37a39f70fa54", "text": "a man with a hat dancing under the light of sun. "} +{"id": "5001963", "video_name": "471a035b-986a-56f0-9236-3f6e2e98c2bd", "text": "Anime cake with candles in it. The cake is kept on a lush, expensive dining table. "} +{"id": "6002931", "video_name": "0b2e5e02-35f5-5c14-85d7-5ab2a93b1715", "text": "Together, they touched the hearts and minds of countless seekers, guiding them on the path to spiritual enlightenment. "} +{"id": "0004270", "video_name": "062d32b3-a9bb-557b-a6a2-9e45075e0bfb", "text": "Display Sultan Aziz receiving a message from the neighboring "} +{"id": "0004000", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "Consequences on Collective Memory and Identity "} +{"id": "3005424", "video_name": "517c6ca1-22d5-5390-b145-c26491ad6a9c", "text": "A man wearing clothes that read VC is sitting on the bed and looking at the computer screen on the table in the distance. "} +{"id": "2004679", "video_name": "b479a10d-10db-5045-9ccc-6602013232c5", "text": "The Moomin is dancing hip hop "} +{"id": "2004010", "video_name": "86b384f3-e25b-5456-8a3d-929a48d00c17", "text": "cartoon news caster speaking to camera "} +{"id": "4004840", "video_name": "fb90eb64-65f9-5d08-9739-21013560d68a", "text": "The Isengarda attack of the Ents. In the Ottoman style. The ents are dressed in turbans and caftans. Oil painting. In the Gothic style. "} +{"id": "4004011", "video_name": "8f88332d-fb68-574a-bdad-324ffead8e74", "text": "a cat on a dumpster at night looking at an old man "} +{"id": "1005346", "video_name": "62515e62-dfd2-5c82-a08c-0538737534fe", "text": "sun jump up from the ocean "} +{"id": "0005364", "video_name": "198ce89a-ea38-571d-8e3e-7ae2a9764f22", "text": "a video of Albert Einstein on his death bed "} +{"id": "0004941", "video_name": "11f84e04-0afe-51aa-93f4-e5175623080c", "text": "gold parts pealing off the black statue "} +{"id": "0003514", "video_name": "3ed624e0-5a1a-5db2-8c75-39795f87fb8d", "text": "a firefly flying in the sky alone without her light is glowing "} +{"id": "7002437", "video_name": "fd27dd5d-4bcb-56a0-899f-ffe43ec50638", "text": "a fantasy red desert at night with towering mesas with three full moons of different sizes hovering above the horizon "} +{"id": "6004755", "video_name": "6aa41558-f56d-547a-893b-111caf3848a1", "text": "unravel the secrets of Ancient Egyptian religion and the captivating story of creation. Get ready to be captivated by the mystical world that enchanted the hearts and minds of the pharaohs and their subjects. "} +{"id": "7002463", "video_name": "5ddd6b5c-c05b-57ca-9ad9-f85570b8afe1", "text": "There are sunshine, beaches, and hotels, with realistic scenes "} +{"id": "1003521", "video_name": "40fe83f8-6b61-5a0c-b4c6-7920bae20347", "text": "Beautiful girl take a selfie with her phone "} +{"id": "8002723", "video_name": "d342284e-0027-5b2d-8526-d7c1a0b075cd", "text": "film noir, rainy day, establishing shot, people walking the city, beggars sitting on the floor "} +{"id": "4002582", "video_name": "14893df7-43be-5201-a43a-0f4f42b4c843", "text": "realistic, colorful, round cute face, shadow, dramatic, global illumination, Retro Psychedelic Posters, horror, galaxy, art by artgerm "} +{"id": "3004206", "video_name": "2f37fc09-f7f3-5022-ae3c-bee81eacdc0e", "text": "a girl in a red fdress riding a bike in a forest "} +{"id": "8003456", "video_name": "c7eabe0e-e7b5-529b-b881-7357a0d9f5c4", "text": "about the eagle flying Joe Biden holding A.R. 15 "} +{"id": "4004701", "video_name": "a42c7951-7461-55b7-9ac9-a3014a0202ba", "text": "a beautiful girl wearing bikini in the sea beach black eyes bob cut hair walking with smiling "} +{"id": "3003824", "video_name": "3bd7e425-c6b3-5d26-a64e-0808f542b47f", "text": "a whale swimming beside a boy at a deep sea "} +{"id": "2004636", "video_name": "8a33afb9-9fe3-5428-bb63-ba43a75af159", "text": "gus and jesse fighting in breaking bad "} +{"id": "3003059", "video_name": "31bf20c2-6cd9-5375-b920-602ebffc8b6e", "text": "a village mom cooking and smiling "} +{"id": "3006250", "video_name": "0e538da8-ae7f-5ca9-9ac0-597d9b26be55", "text": "cartonize boy and girl are in love. "} +{"id": "1005548", "video_name": "662c2b2c-49e3-51d7-8b8e-15108379eacb", "text": "arnold Schawrzenneger in movie predator in a jungle "} +{"id": "1005118", "video_name": "5e5eeb7d-933f-5b31-bbba-2cac46170493", "text": "babylon gardens movie horror 1970 liminar "} +{"id": "1005055", "video_name": "5d6f1d64-e913-522f-b3e7-4beb9739e7ea", "text": "animation of trump running from police "} +{"id": "0005977", "video_name": "244935f4-7f37-5db0-a991-1e480e7ffe3b", "text": "3D isometric view of a lush alien jungle, warm colors, 32K resolution, directional lighting, Vibrant, Majestic "} +{"id": "2004017", "video_name": "53232b7d-7918-58db-94f3-23cf5df5bf54", "text": "An elementary school child comes out of the blanket, turns on the computer, and plays a game. Cute Japanese cartoon style. "} +{"id": "6002426", "video_name": "b2690513-fdaf-50d3-9d8b-20dcae1be92c", "text": "golf ball rolling across freshly cut green "} +{"id": "8002100", "video_name": "8bfefc24-ebcc-5996-ac3c-fc644a59ac5c", "text": "man In sun shaped mask, worshipping the sun, jodorowsky, surrealism "} +{"id": "6003102", "video_name": "38f1a155-d199-5e70-8b03-bc6094577c96", "text": "strong wind in the anime cute girl "} +{"id": "0004810", "video_name": "0f82bb15-d9fc-5678-8dfd-3d4c99ad907b", "text": "a fighter jet shooting down a helicopter "} +{"id": "3003672", "video_name": "b617fde8-85de-5564-bd1f-e8317e5f2459", "text": "mechanical human heart beating at 1 beat per second. "} +{"id": "3005917", "video_name": "e4f4bdbf-fa0d-557c-a489-c29792d17673", "text": "ocean scene at sunset, on the side of a 16th century ship, in the middle of a storm Message: HOLD YOUR PEACE (Font: MODERN) "} +{"id": "8002889", "video_name": "06efec77-7e8a-524d-abc6-df9eeacfe2b0", "text": "the former president of Zambia mr Edgar Lungu "} +{"id": "8002732", "video_name": "fc196d00-1178-5bb3-b0d0-4126161fddaa", "text": "Gentle snowflakes slowly falling over a serene village, with warm lights glowing from the windows of cozy cottages "} +{"id": "8001672", "video_name": "7c0cbede-1af5-5ac0-87c6-ec2f91658501", "text": "a bombed city with glass everywhere "} +{"id": "2005168", "video_name": "3762db7d-3d4e-5e65-9878-7af876722f06", "text": "a housefly landing on a cup of coffe. "} +{"id": "3003164", "video_name": "0bc10a17-e6e6-5579-a3ae-1bfdacf263b2", "text": "wars Message: HNY 2024 (Font: MODERN) "} +{"id": "5001022", "video_name": "2369bfcb-b561-5cae-a945-0bc7bd2d4db1", "text": "The director discuss with animators and technicians on the sequence to use for the film. "} +{"id": "0005712", "video_name": "1ff64813-6a16-5ae9-852a-566831195416", "text": "boy image appere in smoky Message: 1 Attachment "} +{"id": "6004413", "video_name": "3ddeb89f-820b-586f-bc7a-6233c13e8c9c", "text": "animated, fight, violence, white magic vs black magic, using a book for different spells "} +{"id": "0005602", "video_name": "1dcec45e-c589-5d57-998a-1e7c4f8db8c5", "text": "Humanoides watch movies on the fire "} +{"id": "8001215", "video_name": "d5dba0d9-cb09-5d69-84ee-432f93fc8a9c", "text": "create profile for twitch VICIUS JUEGA "} +{"id": "6002906", "video_name": "371295c6-5489-53ff-a00c-c4be269faba4", "text": "The video opens with the protagonist, portrayed by the singer, sitting in an ordinary room. The lighting is cold, and the walls are neutral. The music starts softly, creating an atmosphere of tension. The guy seems nervous, constantly checking the door and looking around. "} +{"id": "0006914", "video_name": "353bc774-8fbc-5dc5-b1a9-901181605c9b", "text": "Amidst the splendor of the Golden Court, Lady Seraphina, a trusted advisor, finds herself deep in conversation with King Reginald. Uncover the intrigue and diplomacy as they discuss matters of state, navigate political challenges, and share moments of camaraderie in the grandeur of the throne room, where the fate of the kingdom hangs in the balance. "} +{"id": "3006499", "video_name": "d6a6100c-29ce-5d5c-8cae-213296c606d6", "text": "A man walks through an ancient forest at night under moonlight. Gothic fantasy. "} +{"id": "8003866", "video_name": "e3a45cff-d252-524a-bfa6-035455cfab59", "text": "jungle leaves and birds, tiger and animals Message: 1 Attachment "} +{"id": "3006141", "video_name": "2e9008aa-fc78-501c-a0d0-c84896489d9e", "text": "Jedi Vs Sith, Light saber Duel "} +{"id": "5001802", "video_name": "d5308c8c-a74e-5ed8-becb-737bdf45d693", "text": "The owl flaps its wings and flies "} +{"id": "0004877", "video_name": "10c71bf6-0533-5601-be96-e97565c92d1f", "text": "background video for a online shopping website "} +{"id": "1005721", "video_name": "6947144a-3d22-55ce-8e73-3134de69d60c", "text": "two young womans on a clothing store "} +{"id": "0004961", "video_name": "12477482-d973-52e3-9d45-4172b0a149b4", "text": "Day, a young guy in a cafe, drinking coffee, large windows behind the guy, a pedestrian crossing is faintly visible in the windows, people are walking along the pedestrian crossing, cars are standing, a large monstera flower is standing behind the guy, the guy is sitting sideways to the camera, his legs are not visible, the table is standing sideways to the camera, an elk is standing in front of the guy, the elk has big antlers, "} +{"id": "8001805", "video_name": "3ff12fbc-8d64-5764-8b64-5952af426d43", "text": "Realistic details simple House alone in the forest with trees "} +{"id": "8002379", "video_name": "6fe19eb9-a83a-52de-ba85-9c8f70ebb6e7", "text": "A black hole and a neutron star in close proximity. "} +{"id": "8002612", "video_name": "6d51e85d-d243-518d-951b-a9aec9b9ef28", "text": "dinoaurs dress as mariachi playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "2005695", "video_name": "aacea071-3ab4-5f50-941f-a7c8256935a9", "text": "chesse In the jungle, An abstract oil painting , 9:16 vertical format "} +{"id": "0006138", "video_name": "2727c4ae-5ef2-5c1e-be72-bb2f08d197bf", "text": "studio ghibli old lady and old man movie "} +{"id": "4003629", "video_name": "46e6e309-9a1d-5e7c-8f46-13690c883456", "text": "anime, running from the law, music video, motion 4 "} +{"id": "2007127", "video_name": "c9495ccf-6865-5303-9f42-dcc39ea7eeb5", "text": "Sin City style. Marv walking on the street "} +{"id": "2003408", "video_name": "a19e80bf-f919-5571-a5ea-58296140f791", "text": "a dinosaur roaring swimming in the sea "} +{"id": "6002782", "video_name": "dea59f25-8387-5b22-acab-105a2a7d7305", "text": "medievil fayre happy people and children playing "} +{"id": "3004658", "video_name": "058b6f71-240b-577d-83cb-4fad7bb9c528", "text": "man standing on the edge of forever, waves crashing beneath colossal cliff "} +{"id": "0004826", "video_name": "0fe16476-ac45-56bb-a8f5-3ff51abd4792", "text": "a girl crying and her tears create the sea "} +{"id": "3004482", "video_name": "b7f0a67c-40e1-5d38-8874-9c9c8fdd49c8", "text": "an Egyptian boy wearing sport green T shirt playing soccer in the stadium "} +{"id": "4004564", "video_name": "9866af61-56f3-51d6-ad5f-d8535febab11", "text": "animation of a treasure chest opening with gold, glitter, diamonds "} +{"id": "0004235", "video_name": "058bf298-e5f9-5ddd-a182-c73948a0903f", "text": "Intrigued, Lorelei delved into the painting, finding herself in a mesmerizing dreamscape where colors danced and landscapes shifted. "} +{"id": "5001567", "video_name": "3f5c420f-2f63-50ca-9c97-2bc966d4371c", "text": "A school canteen with students enjoying their lunch. "} +{"id": "1003641", "video_name": "431bd7f1-7d9c-5212-81a5-88793329f130", "text": "a scene, where a Stormtrooper is reading the latest orders on a futuristic holographic display "} +{"id": "1005263", "video_name": "60d36bf9-c2c1-547d-b21f-f5bde0799ccf", "text": "giant piranha fish jumps out of amazon river and bites a Jungle cruise ship, realistic, centered, dramatic. Camera pans in "} +{"id": "0004577", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "completely base your choice of which one to visit today on the dish that most entices your taste buds, 1080P, high quality, comic "} +{"id": "8003612", "video_name": "db1f0985-c5bf-5ede-9700-36eaba38fc21", "text": "Big stage wiht more musical instruments Message: Tanya (Font: MODERN) "} +{"id": "7002590", "video_name": "45036334-0b06-50c8-ac6e-d78d283922a5", "text": "taiwan female police investigate evidence under the tree, in the forest, twin peaks style "} +{"id": "6003537", "video_name": "d412827c-972d-50a8-a6d7-b82cd3339b94", "text": "a huge full white bird called the opium bird recorded away on a certain distance where its full body can be seen, vhs filter, in antartica, cold place, tundra place, opium bird, human shaped bird, human like bird, bird standing both feet, full white bird, huge beak "} +{"id": "3004895", "video_name": "e13906c4-4c2c-5809-aa6e-af16a7320607", "text": "a city with big futuristic buildings flying cars in snow fall weather "} +{"id": "0006622", "video_name": "2fb8ba55-13fb-51c2-80bc-c59121b2537d", "text": "Medieval tavern like in the withcer videogame "} +{"id": "4002311", "video_name": "c4605ad4-70fc-555e-a3a1-6d78b4e058c4", "text": "A loving old couple walking at sunset by the sea "} +{"id": "8001888", "video_name": "ea372707-44aa-5a22-bd87-9de994a3c90d", "text": "she now a storyteller, watches the sunset over the coastal village.3d animation style "} +{"id": "0003718", "video_name": "424ea1b0-c32f-5970-b455-d65cb7534d0a", "text": "a female worker,tearing apart a doll,at the workshop, "} +{"id": "0006486", "video_name": "2d51f36f-0d53-50be-989d-91a9c68a53cd", "text": "gothic Singer singing in a microphone to a crowd in a show "} +{"id": "4003688", "video_name": "e8b50bb9-3b8f-5c5f-8d79-abd3904d496c", "text": "Shin Mazinger robot with GIRS sticker "} +{"id": "0003410", "video_name": "3d30b79b-130f-5da6-8000-b1f09b35e1f3", "text": "happy yellow budgie dancing with blue russian cat listening to the rock music "} +{"id": "3003822", "video_name": "799ceca6-58c3-5cb1-b311-a59beb4b12e0", "text": "Arjuna practices archery with the help of Dronacharya. "} +{"id": "0004861", "video_name": "10735853-8488-5e05-94a3-4167dd1842df", "text": "A giant hand coming out of the clouds towards the ground while the place that was all in darkness is illuminated with a small man looking up "} +{"id": "7004633", "video_name": "ad9842a3-a125-52ac-a95c-3bd5faa0649d", "text": "Give me a short love story with a little bit of emotions , sadness, heartbreak and a happy ending. I want to create a YouTube video from this so also give me image ideas for each scene 3D animation "} +{"id": "2004705", "video_name": "95bde019-42f4-5f64-b2f1-df2caa92a24d", "text": "a picture of girl putting a letter on her balcony "} +{"id": "1004352", "video_name": "5045b2d8-67ed-5528-8988-741574e6133d", "text": "Emiliano Zapata in a rural landscape, working alongside peasants on the lands he was fighting to protect. It highlights his commitment to his people and how he became a symbol of hope for the most disadvantaged. "} +{"id": "8003541", "video_name": "d02796af-1b7d-563f-9d92-591b404d7987", "text": "Illustrate an ancient Greek strongman showcasing his physical prowess in a traditional gymnasium "} +{"id": "3003952", "video_name": "77a0f7e8-0e79-5527-840d-ebe37005a1c6", "text": "extreme closeup of a forest reflected in an eye. lotr movies style, detailed "} +{"id": "1004905", "video_name": "5abf28b1-10c8-5169-a59f-ba1d0d64a004", "text": "Walls closing in on 4 people "} +{"id": "8002697", "video_name": "4cae6da4-1b61-5c6d-be34-931a91df6f95", "text": "Create an image of a white horse coming out of the clouds in 8k cinematic style "} +{"id": "4004688", "video_name": "7352a678-5acd-5a06-aa6c-989413355f41", "text": "someone drinking coffee in a dark alley "} +{"id": "0004328", "video_name": "0742e434-68f0-570e-8570-bbc581ed030f", "text": "a man with brown hair is working in office "} +{"id": "6000003", "video_name": "a940f70e-795f-5f28-a333-3807defd9b0c", "text": "street view of city Message: escape (Font: MODERN) "} +{"id": "7003927", "video_name": "06d884cb-3e67-5842-af74-5b60a343d814", "text": "a Video with some Food recept 70 seconds "} +{"id": "0004286", "video_name": "065e1508-1a9b-577c-835d-f91547d692f3", "text": "man sitting at desk with a headset that is answering the phone "} +{"id": "2006380", "video_name": "90016dd0-287f-50fb-b0d2-f66923238489", "text": "crowded street Message: secret (Font: MODERN) "} +{"id": "4003262", "video_name": "736acf8a-5b0f-57e2-b5c0-f1e7a4833df2", "text": "Let the mouth of the Buddha statue speak "} +{"id": "7003875", "video_name": "0daa9671-9a31-5275-82af-999be1e509ca", "text": "Ballerina in arabesque with mint green dress "} +{"id": "1004076", "video_name": "4b8dc3af-6b41-5a28-8286-e6801b72c456", "text": "RAVE IN THE FOREST, SURROUNDED BY ALIENS AND SAMURAIS, MAD MAX STYLE "} +{"id": "8002643", "video_name": "3f2f668f-4e6a-5bbf-a1d0-39e56d18615e", "text": "tree leaves morphing into a crowd of people "} +{"id": "8002517", "video_name": "81376a96-240f-5f09-875e-8c42265d07ea", "text": "people receiving the things they wanted for Christmas "} +{"id": "7003242", "video_name": "775edb6e-5cd9-5ae1-981a-f941e41f7381", "text": "3d disney animation of a boy driving a car "} +{"id": "2003830", "video_name": "db8a0cf5-c5b4-5d42-96f6-a8db3624b1a0", "text": "Introduce the character, Ahmed, a peaceful man dressed in simple robes, walking into the forest with a prayer mat. "} +{"id": "7002252", "video_name": "e7e389d5-6c59-583a-ad51-46201ef936f7", "text": "3d animation all small animals running "} +{"id": "7002168", "video_name": "bbfbf600-0f5e-5b03-9203-8fa54204b233", "text": "wildlife style, a lion running towards the camera "} +{"id": "7002773", "video_name": "d6573164-9c18-5387-b9b3-5d0e1f27d8f1", "text": "a small box of fried chicken with a background of bright pink neon light "} +{"id": "0003765", "video_name": "42f0cfa1-a0b5-5acd-9a3f-0555b6406d1a", "text": "the symbolism of the tie in the final vrickit crickit match and its meaning to the villagers.\n3d "} +{"id": "1003315", "video_name": "3d15be96-ebbd-5321-9be9-ca657f634de1", "text": "Forest, morning, sunlight casting in between the trees, foggy with ice . Royal on Ice "} +{"id": "6002222", "video_name": "b84bc82e-f612-5e7f-91cd-86149ba7deba", "text": "VHS grainy 70s style front view of a black lake with trees moving in the wind, ripples moving in the lake, video size 9:16 "} +{"id": "0006652", "video_name": "306ad2e4-7ffc-5e4f-aa10-7871cb863b96", "text": "close up shot of earth from space in 4k "} +{"id": "1005080", "video_name": "5dab9034-bfa9-57ca-a29f-3ac47e993e36", "text": ": dog living as human being in a happy home "} +{"id": "7004035", "video_name": "e662adab-1f58-5bef-927c-0e7cc02ba1dd", "text": "Pirates of the Caribbean, Captain Jack is piloting the Black Pearl 8K "} +{"id": "7003218", "video_name": "536df0ce-f073-5f36-8be8-e632cf365e4a", "text": "world of red rot in style of 70s sci fi "} +{"id": "7004858", "video_name": "e1e4bae4-d518-554c-9fce-f131ba9139f9", "text": "a masked man with blue eyes "} +{"id": "1006145", "video_name": "70961f6e-63fb-5f28-b79b-1f960079363b", "text": "video about constants and variables in vb.net in anime style "} +{"id": "3003741", "video_name": "16bb6ae5-73e2-59b0-a5c4-355b8bb4edc3", "text": "a man standing in the mirror but his reflection is a different person, 3d cartoon style, cinematic "} +{"id": "2004537", "video_name": "a24f4c96-6403-5336-aa12-7757e85fdabf", "text": "Ragdoll cat stretching, Disney 3D movie style "} +{"id": "5001223", "video_name": "4c68f4ba-d8ee-5bf6-bfe1-060aa895969d", "text": "photo very close of pimple bursting "} +{"id": "0005019", "video_name": "1353d20e-121b-54c1-9ea3-ad824b394d44", "text": "a night market in the streets of Mumbai Message: SADUBAS (Font: MODERN) "} +{"id": "8002807", "video_name": "eb34dab0-62c9-5273-8288-8c2ae3b8d538", "text": "pomegranate and the narcissus flower. dramatic, dark, cinematic, beautiful, artistic, realistic "} +{"id": "0003537", "video_name": "3f23df41-eeda-5f38-b7da-9914e8b40598", "text": "A beautiful backyard porch with garden on a rainy cloudy night "} +{"id": "1006686", "video_name": "7a9630e0-9d99-5bd8-92b0-a668eea80a9a", "text": "There are exceptional talents in the world, and there are exceptional discoverers of talent. Exceptional talents may be common, but exceptional discoverers of talent are rare "} +{"id": "0003135", "video_name": "37d16220-3d69-59af-80f4-93c766471277", "text": "man in a white greek tunic posing on a lightning storm, wavy clothes "} +{"id": "1003842", "video_name": "46cea098-e181-51aa-8e78-9494735a9774", "text": "Video shows agriculture of the future using drones and autonomous robots for sowing, crop care and harvest "} +{"id": "2006194", "video_name": "08ec6679-8eb9-5a1c-8335-039d3bc85c41", "text": ":driving down the road a saturn cruising the california coast at sunset, palm trees swaying in the breeze "} +{"id": "1006836", "video_name": "7cffe686-3cc2-56b5-b9c9-d3c6d0b26adf", "text": "Bullet time photo of man throwing flower into air camera panning from left to right "} +{"id": "4002547", "video_name": "3c37ba0a-cab7-5853-b198-119538de70b5", "text": "old London, Victorian outfit, , in the steampunk style "} +{"id": "0006618", "video_name": "2f9bb35d-47cd-552f-9b3b-65031af5780c", "text": "Create a scene with a patient with the following symptoms: fever; joint pain; headache; backache; abdominal pain; gastrointestinal symptoms. "} +{"id": "7002253", "video_name": "f2ad46db-da6a-5ae9-8ed1-94c36258e62c", "text": "a gutair, drum set, and two pianos in a room "} +{"id": "6002821", "video_name": "090874cc-a96b-5fb3-b7bf-74a0ed6683df", "text": "ghost nurse in a empty road in the nigth "} +{"id": "0005641", "video_name": "1e8bc9d8-6a8d-5d09-97ce-f2102b12e91e", "text": "Five, Guzheng music, melodious A woman sits in front of a guzheng, gently plucking the strings with her fingers. Melodious harp, like spring ding dong, like the wind through the bamboo forest. At this moment, the picture presents a landscape painting, as if flowing with the music of the piano.8K,16:9 "} +{"id": "4003921", "video_name": "49cd054f-66a5-5890-96b2-74d4c460af1f", "text": "tight leather cat woman by studio ghibli "} +{"id": "2004681", "video_name": "1872266b-7fca-555e-896d-7ee721ef133a", "text": "female ghost, dead, 16:9, weird, horror, surreal, realistic, disturbing, dark, moody, beautiful, beautiful composition, lovecraftian "} +{"id": "1004312", "video_name": "4fb19901-935e-59d7-8477-fb4cbaeff203", "text": "catwoman standing and talking in sexy pose "} +{"id": "3006595", "video_name": "4d0fea05-5fd3-5db2-9559-a291c2705132", "text": "A phoenix flies over a volcano. The valley where the volcano is has a very beautiful flower meadow "} +{"id": "2005364", "video_name": "c4f0da1a-b27d-5f2b-9bf7-57ba40d531d7", "text": "Ferris wheel, shot with a drone, ultra HD detailed, realistic FPS 25 "} +{"id": "3005780", "video_name": "83fcbae4-dfb7-5d01-81d2-c8c69c85d3fe", "text": "dog made from clear glass covered in real flowers "} +{"id": "1004362", "video_name": "509ddc87-6d9f-5402-ba91-664ad0528f07", "text": "A beautiful little girl sitting on the edge of the world looking at the universe in front of her, reading a book and listening to music on headphones, adding an element of emotion to the image. highly detailed realistic image, 8k "} +{"id": "3005922", "video_name": "edb6f0ef-a54b-5161-bffe-6c4257fa0dac", "text": "a winter landscape with cute birds and other animals "} +{"id": "1004837", "video_name": "59602e4e-63aa-57f9-aec6-c5786aea9555", "text": "wide angle shot of dense trees Message: Its Friday (Font: MODERN) "} +{"id": "0005735", "video_name": "20540a0e-8c7e-5cc9-9fd8-6115c1ac7acc", "text": "An image of a dinosaur riding a bicycle on the beach "} +{"id": "2005849", "video_name": "8e839b0e-f661-5cce-b19f-c6ccf41b340d", "text": "Excited, the four animal friends continued their journey. Zoom Message: 1 Attachment "} +{"id": "0005465", "video_name": "1b40838f-888e-5b6f-87fe-9d0864822a67", "text": "Wildflowers of various colors should dot the landscape, creating a natural carpet of reds, blues, purples, and yellows. "} +{"id": "1006459", "video_name": "7641471c-e871-5d22-adad-a0ccb1f73828", "text": "kannada actor puneeth rajkumar standing in heaven "} +{"id": "0004225", "video_name": "056a3f4c-a50e-5b99-9bc3-bb6e7dd7d982", "text": "The girl walks along the autumn alley. Her hair and dress flutter in the wind "} +{"id": "1005127", "video_name": "5e8e858e-2f5b-53f4-a4ac-3b5a20e7a7c9", "text": "I want to make a logo for my Youtube channel, which is a channel whose content is football "} +{"id": "7002305", "video_name": "a1c3a45a-567f-527c-9a9d-0b0ab63a4cc0", "text": "Established in 1991, the hong kong university of science and technology situated in clear water bay of hong kong is an international research university focusing on nurturing talents to become responsible citizens and future leaders. "} +{"id": "2005263", "video_name": "ba9180b6-f50e-5d9c-b4f0-3cb75c95294d", "text": "A cat looks happily at a plate of dumplings on the dining table. "} +{"id": "3006401", "video_name": "1a7655c2-1acc-5a57-bf72-320daff446aa", "text": "an Amanita mushroom growing from the ground in a forest with a quick pan camera movement "} +{"id": "3006748", "video_name": "7ef85681-50f8-5ddc-a029-19b9db187d8f", "text": "Outdoor ritual of harvest and kekri in nordic peninsula village "} +{"id": "7003450", "video_name": "1aa35181-01bb-5075-9ba5-387c2863dd63", "text": "mermaid flying around a small castle retro dark fantasy 90s show "} +{"id": "3005017", "video_name": "1798b79c-e521-54a1-abdc-c1649a774261", "text": "cute little girl lost in the blackhole, backview "} +{"id": "1006656", "video_name": "79f2370b-9a7d-5f2a-8d85-9fd4ed2bab8a", "text": "arnold swarzenegger with OBama and johh malkovic in cyborg robot bodies with meditating mushroom from planet nine "} +{"id": "7002540", "video_name": "bd9f789c-e054-5394-9d1e-2b4f5278705b", "text": "sunset on the beach with two people walking, anime cinematic style, high quality, and 16:9 aspect ratio. "} +{"id": "0003351", "video_name": "3c06a49d-2b0f-5206-9ceb-b1784a5cab53", "text": "Mehmed the Conqueror resurrects and invades the world in 2023 "} +{"id": "2006300", "video_name": "a0e8562b-c385-511d-b754-717203aa4e35", "text": "an interstellar horror, thriller and suspense alien mech hunting and eliminate humanity across the Apocalypse Worlds part 8 of 10 "} +{"id": "4003290", "video_name": "d4b5c199-2d83-5ad6-8b6b-a34537ddf75f", "text": "n enchanted forest with bright trees and flowers and a cute white rabbit with big eyes in a 3D animation "} +{"id": "1004393", "video_name": "513dfe35-2fd0-5130-9738-190509312752", "text": "with two colors, red and black, a couple of lovers dance passionate faster "} +{"id": "1005193", "video_name": "5f7e75c3-c9d9-5f36-8a17-729077fb82cf", "text": "short lion roaring alone on top of a mountain "} +{"id": "7004183", "video_name": "db4916af-a598-53a1-b2ca-b7ef9129357f", "text": "planets and balls spin around their axis, small stars twinkle around, clouds slowly float into each other, everything is shrouded in a magical fog Message: 1 Attachment "} +{"id": "7003113", "video_name": "bc0726b2-80f0-53f2-b55f-ed2e02fe3390", "text": "a white piano in an old building apokalypse "} +{"id": "7002948", "video_name": "2db8b66e-6f6b-5be5-8032-a63e81637dc2", "text": "Farmer collects smartphone surveillance in field "} +{"id": "1006673", "video_name": "7a53e897-e912-50d9-b069-d41731371228", "text": "happy bird lying on the water "} +{"id": "2004953", "video_name": "b0ddafe5-cf9f-5a52-8bf2-a7e3a6b895b1", "text": "An oriental drum dancing in the air among a group of dancers dancing inside a cinematic palace "} +{"id": "2004214", "video_name": "832c76f9-afec-5685-8d3f-9454c5505c52", "text": "The wheels on the bus go round and round, All through the town. "} +{"id": "1005987", "video_name": "6e07a76c-b839-5b83-8686-08cd43fa0ec4", "text": "on a full moon day, moon slowly turning red "} +{"id": "0003907", "video_name": "458ba4c3-1f6d-53c2-99b0-b29b5e3b74b5", "text": "a tall, gnarled tree standing at the edge of the forest "} +{"id": "7002646", "video_name": "f3cefecd-7c4f-5715-9ef6-2c90cafcbb55", "text": "a blue room with many fur walls and a pendant light, in the style of surrealistic imagery, commercial imagery, playful installations, monochromatic compositions, light turquoise and green, textured surfaces, luxurious textures "} +{"id": "4004844", "video_name": "21647039-a007-5309-8960-21ba6b9691c7", "text": "The book was unlike any other "} +{"id": "4003260", "video_name": "3c5668d8-90f9-5090-a9be-c59b56d481fe", "text": "ancestors carry the memories of ages long gone,\nA timeless ritual dance, a perpetual song. "} +{"id": "8002920", "video_name": "84ebf9d2-15f0-5dde-829c-2bb7c810cb07", "text": "a child looks at the mess from behind the window "} +{"id": "2003381", "video_name": "7936a801-1629-50d4-8483-1407be304ae6", "text": "A silver curve of the moon hovered already in the western sky. "} +{"id": "2006419", "video_name": "dadb1ce1-4373-5960-8a56-34f9106e8fb8", "text": "the cartoonized river flows animated greenery blue sky "} +{"id": "2003242", "video_name": "d1794c3c-434a-5883-be87-62cce38db12c", "text": "grim reaper with kid soul to heaven "} +{"id": "2004670", "video_name": "134ac584-d67c-5367-8558-7f78d0a34145", "text": "A group of children are playing soccer in a park. They are wearing colorful jerseys and shorts. They are kicking, passing, and dribbling the ball with skill and enthusiasm. The camera follows the action and captures the expressions of joy and excitement on their faces. The sun is shining and the grass is green. "} +{"id": "2003075", "video_name": "89482dfb-9052-5a73-94c2-dc9764d6827a", "text": "girl with blue jeans and beige sweater standing up from the gray couch "} +{"id": "0003720", "video_name": "4255bad1-6f9c-5e6f-b227-a5a76d6d780b", "text": "Rosie directed him with precision, making sure they followed the path towards the finish line. , different animals stading by the track to warm the contests of the race "} +{"id": "1006819", "video_name": "7cc1c517-b6cd-5521-a4e1-f81701589770", "text": "zoom out of a futuristic city full of people walking and ships flying in a rainy and smoggy day, 4k, cinematic, photorealistic, film "} +{"id": "2006102", "video_name": "7877a6c7-d6c2-5ba9-a806-b088409545a6", "text": "It underscores the importance of scientific advancements, "} +{"id": "2007801", "video_name": "c970e355-d89c-5577-bb20-8cf2f73116ca", "text": "Create a 4K 16:9 ratio anime scene set in a medieval period at midnight. The main character should have striking red eyes and flowing white hair. They should be shown in a dynamic pose, wielding a gleaming sword, ready to confront a gigantic and terrifying monster demon. The scene should be highly detailed, with intricate character designs and fluid animation, resembling the quality of animation produced by ufotable studios. The moonlight should illuminate the characters and the monstrous demon, casting eerie shadows. The atmosphere should be tense and ominous, capturing the impending battle between the hero and the demon "} +{"id": "8002856", "video_name": "8929a161-cdcc-5088-b6c3-997ebbe95bba", "text": "moving hydraulic machine in storage area of a warehouse "} +{"id": "1003517", "video_name": "40ee288d-1162-5ff4-b28f-d81c2dc7e948", "text": "moving car in streets of india in night "} +{"id": "1004561", "video_name": "54aefc05-5e99-58db-9bd4-744905d8c527", "text": "A volcano errupting in the distance, pixar art, animation, high quality, panning closer to the volcano. "} +{"id": "2003909", "video_name": "4bd7a957-87a9-5d1a-885a-1299c0d3f4fa", "text": "a little gray alien, in a futuristic setting. 8k, cinematic reality. hd. "} +{"id": "1004860", "video_name": "59c3f7ca-0c71-52bc-b5ec-f2c54a695092", "text": "inside the spaceship cockpit, flying throu pace "} +{"id": "2005015", "video_name": "9af95dd5-880d-55af-8039-33ccce7cebf0", "text": "a realistic video of a interstellar spacecraft imploding into a fiery explosion above the ruins of a destroyed planet. "} +{"id": "3006689", "video_name": "79bee935-ea34-5bb6-ae91-d280df6f6385", "text": "a mountain view as the sun rises "} +{"id": "8001974", "video_name": "5998251d-0d65-5887-b5ba-b0348b567934", "text": "People planting trees, cleaning up litter, and using renewable energy sources. "} +{"id": "3004380", "video_name": "51590879-1eb9-5293-87aa-1445fab06cfb", "text": "Optimus Prime Autobot from Transformers, as a model on a runway, Cybertron Fashion Week, futuristic "} +{"id": "3003541", "video_name": "f48c9c41-0845-55b9-a58a-252f6434b218", "text": "Water flows through bamboo pipes in a romantic garden, a monk sits chanting in the golden sunlight "} +{"id": "3005803", "video_name": "af960587-a6f6-52dd-81a2-1d335c30bc5f", "text": "a Lego figure fighting a real Batman "} +{"id": "8002738", "video_name": "d99ae3f1-328d-590f-9f8e-feb34ce63a44", "text": "a man wielding a chainsaw running through a cornfield at sunset "} +{"id": "8003850", "video_name": "b939e8b9-ca22-50b5-bec1-6d70c8cc86ef", "text": "MAN ALONE AT NIGHT IN THE FOREST WITH STARRY SKY "} +{"id": "1005924", "video_name": "6ccee8b1-7d64-5587-9ccd-a922c3d535d8", "text": "a group of elephants move in a circular motion deep in outer space "} +{"id": "1005117", "video_name": "5e5b8e93-95aa-5340-9761-6e44c93064f3", "text": "cute heart in a vibrant pink world in the background, 3d designer "} +{"id": "6003487", "video_name": "6524c9b5-f3c2-52b3-a6a7-4d9741e8ebf4", "text": ". Geb and Nut birthed Osiris, the Perfect Being, who became ruler of the world. Ra created the elements, and produced humans from the tears of his eyes. As creator of the universe, Ra became father and king to all gods, humans and living creatures. "} +{"id": "4002319", "video_name": "4c053225-2010-5c97-b64b-ec8a1c9312af", "text": "shiba inu dancing in the moonlight, neon "} +{"id": "5001766", "video_name": "cb2d6579-b255-5ee8-bf7d-b2e302cad434", "text": "orange and white cat drinking hot chocolate "} +{"id": "0004368", "video_name": "07e3ad60-b4c1-5121-8c37-db8cba90b88a", "text": "A beautiful Chinese woman shows off her tall and confident figure in a flowing transparent white dress.\nThe landscape in the background is serene and vast Message: 1 Attachment "} +{"id": "2006375", "video_name": "aa26f278-8cbd-59d2-9b92-02f942f0df97", "text": "dazzle dota 2 character, born to support his allies "} +{"id": "4004767", "video_name": "b5b2fc1b-c55d-5002-add4-776656eddf53", "text": "a juicy plate of pasta with much steam and sprinkled Parmesan "} +{"id": "2007471", "video_name": "0e98d8de-9b04-51e2-816a-c33bcce6b1b4", "text": "Lamborghini countach rides through miami at night "} +{"id": "3005640", "video_name": "ca57a034-943b-53f0-a8df-a13b28a0d06f", "text": "On hearing this, the parrot for the first time, started speaking. The king was surprised and listened to the parrot. "} +{"id": "8003408", "video_name": "02239bcb-df7b-5811-9b0d-ccede592adc8", "text": "sunny beach, dolphins, swimming Pool, palmtrees, coktail bar "} +{"id": "4004860", "video_name": "8f06950f-da48-56f0-8253-6a16284a0b5e", "text": "shining light rays in moody room "} +{"id": "3006059", "video_name": "764d3932-ec1c-5790-a61f-61b5c1e976f0", "text": "a highly detailed extremely cute kiddy koala is eating popcorn. Adorable. "} +{"id": "1004658", "video_name": "56ab3baf-62ca-51d7-9989-5fc2ef760ee3", "text": "mazinger z style anime, war zone psychedelic alphabet soup "} +{"id": "6004467", "video_name": "f1c36cfe-053b-5c6c-978d-ac3e968d47af", "text": "wizard wearing sunglasses being chased by a policeman. "} +{"id": "7003796", "video_name": "edadb174-279d-58f4-8b4a-3ca4612e837e", "text": "a girl walking with her mother down the road. Cinematic, dash camera zoom in "} +{"id": "1005358", "video_name": "6287da67-71bc-56e2-ba3e-00e18dcc0a95", "text": "pixel art video game character, idle animation "} +{"id": "4004687", "video_name": "7525fd25-26e0-59ae-bc1f-d74e20efbc61", "text": "There will always be a part of intuitive work in discoveries. "} +{"id": "0006184", "video_name": "27d31cb3-d322-521d-89c2-2052d66ea064", "text": "Women walks into Swiss Formulation cosmetics store and speaks to a women at the counter "} +{"id": "6003777", "video_name": "32a22de7-789b-5faa-bc59-a4738b9016dd", "text": "footage of a wetland at sunrise, mist hovering above the water. The silhouettes of sandhill cranes stand tall and elegant in the soft morning light. Their trumpeting calls reverberate through the scene "} +{"id": "1005035", "video_name": "5d1bb2af-b7a5-5cc6-8a82-20a4f30f58a4", "text": "River of chocolate with creamy clouds and animals living in this world "} +{"id": "6003288", "video_name": "35b3bbbd-6a93-52f8-9889-9ba423c3394f", "text": "Jesus walks on stormy seas to his disciple "} +{"id": "3003999", "video_name": "6c85bf83-a45a-5ae8-9783-120009480836", "text": "100 score test in christmas table "} +{"id": "1004749", "video_name": "57e7a70d-be76-5a95-9928-9120b261d21b", "text": "boy listening music with headphones and dancing 3d "} +{"id": "3006381", "video_name": "aa654112-e005-5f21-b002-0e517e6e913a", "text": "epic stene with a ukrainian comodir thinking on his strategy "} +{"id": "1005775", "video_name": "6a40cf71-aa8a-56a8-b797-7e582103ee61", "text": "Mediaval age, sun sets in a mediaval city, super realism "} +{"id": "1005567", "video_name": "6677d9a9-5c9d-5f25-8df0-a274a5c34773", "text": "old man walking down farm lane at night in a storm "} +{"id": "4003713", "video_name": "33870315-ab9b-5fa4-a641-0f0161aae408", "text": "riding bycicle,smiling face see to the river, slow wind "} +{"id": "1004648", "video_name": "5665d7ff-af9c-536f-a62d-c8a95fa121cc", "text": "a whale moving in the sky of New Zealand "} +{"id": "0003712", "video_name": "42315b3f-224d-56ae-8f97-17ffa5567e7f", "text": "add animation to crop on the field "} +{"id": "7002207", "video_name": "8b278e47-2bed-5ebf-b367-b770f18f3743", "text": "Ferrari 812 Fast and Benz G Wagon running towards the camera, close shot "} +{"id": "0003066", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "raining fried chicken while people trying to catch the fried chicken outside "} +{"id": "3003760", "video_name": "8add3527-95a6-5c64-aa55-4d514221e324", "text": "hot liquid being poured into white paper cup "} +{"id": "6002966", "video_name": "43031989-0400-5995-8889-a3c880aed091", "text": "A tranquil tableau of a cup "} +{"id": "5001134", "video_name": "b89206aa-6e7a-58df-b677-816403ddab01", "text": "View of beautiful forest clouds from the angle above the clouds "} +{"id": "2006563", "video_name": "977e8578-7347-56bd-a6b8-d7b7a934297a", "text": "Two trucks chasing each other on busy road , anime style, hyperdetailed, open wide shot , "} +{"id": "5001027", "video_name": "f47082c0-016a-5b56-a6df-a6ec7a6a70c8", "text": "a chinese man using an abacus, 16mm, chalky color palette, 8k, 9x16ar, dramatic lighting "} +{"id": "0003125", "video_name": "377b98c8-2e80-5d9e-8ee7-e2697872d2ac", "text": "A tiny passageway opens over a grassy lawn. "} +{"id": "0005387", "video_name": "19eb8b99-b288-5d16-a083-fcf768efd787", "text": "create an eerie 1920\u2019s silent movie in black and white of a ghostly woman in a black dress walking down stairs in a haunted room. "} +{"id": "6004398", "video_name": "fc827b5e-5812-53a4-9e31-ba9aa3abee18", "text": "Christmas ornaments and gifts sing a Christmas carol "} +{"id": "4002157", "video_name": "c48c75d8-85a9-5c0c-802c-9e9f3d743d92", "text": "epic shot, cinematic, camera zoom in, russian woman, machine gun, motion blur, snow "} +{"id": "4003683", "video_name": "a4865376-3477-5462-835f-f478b101d0b7", "text": "bunny room Message: twelve (Font: MODERN) "} +{"id": "5001608", "video_name": "644075c3-2e0e-5bc3-94d0-7c742806fafe", "text": "girl on beach running stop motion "} +{"id": "0006489", "video_name": "2d65f2c7-2c5b-5e61-81bf-089b9de4f595", "text": "fear and loathing in Las Vegas style camera quality, trippy scene, photorealistic, high def, hdr, 8k, cinematic movie shot "} +{"id": "5001705", "video_name": "3a567e52-00de-57a4-b25c-8452051e5bec", "text": "animate a surreal dance of the alien creatures "} +{"id": "5001186", "video_name": "9dc3d9b5-2220-55c9-b763-499654a868d2", "text": "beautiful woman with curly hair sleeps on silk pillowcase, luxury, high quality "} +{"id": "6003921", "video_name": "01842ffe-801b-52be-8cb2-561e8eb4776f", "text": "a gaming couple playing playstation together in their gaming room "} +{"id": "1006953", "video_name": "7f40b2d3-589d-5bcb-a05d-972bc2bf1746", "text": "story of chanderi silk fabric India "} +{"id": "0003033", "video_name": "35e1b16a-116a-51d5-bdb2-48445e7f7257", "text": "A psychological counselor and a client are having a conversation "} +{"id": "1003965", "video_name": "49342de5-9fc0-588c-9ed8-e5da8bed24bc", "text": "Under their shared umbrella, two beautiful women walk through the rain, their smiles shining as brightly as the drops dancing around them, creating a moment of connection that transcends the weather. "} +{"id": "2004917", "video_name": "674ad168-5541-53f3-99be-ff5ccd1d50e7", "text": "Coffee shop, with a hot coffee on front Message: BAM (Font: MODERN) "} +{"id": "3005991", "video_name": "e0b7fb60-29ad-566d-a846-a5a7f6ee5390", "text": "green meadow full of long green grass and flowers "} +{"id": "1005452", "video_name": "642ec2d8-1a87-5e15-ae31-60e2eecc9814", "text": "A clear glass of water is placed in a dark room with light shining on the glass. Black water is in the glass hitting the light. "} +{"id": "0003740", "video_name": "429edf7a-d25b-5307-b009-18aa7f713be3", "text": "welcome to my channel crypto addict 8k stunning visual ar: 9:16 "} +{"id": "4003376", "video_name": "e64f47fa-c465-57fe-9ad9-85d35fe3ca89", "text": "boy and robot walking towards the left Message: 1 Attachment "} +{"id": "7004556", "video_name": "f4aefaff-fb22-5c2c-b1bd-5934b1aa0d98", "text": "a robot looking at the stars "} +{"id": "0006343", "video_name": "2aef0051-1af8-5f72-bd39-c27cbc8c6151", "text": "birds gathered by the bay, one of them exploding as the others look on in disbelief "} +{"id": "7004021", "video_name": "693c5ec0-2cb7-5836-b65e-1d1c85098dd0", "text": "Explain how they successfully entered the mansion premises without detection. "} +{"id": "4003242", "video_name": "f9e2903e-3fa0-599d-91bd-d5fd212f0187", "text": "In factories, countless robotic arms and automation systems work together to efficiently complete various production tasks. They have advanced sensing and movement capabilities and can accurately assemble products, complete quality inspection and packaging work, making the production line run more smoothly and efficiently. "} +{"id": "5001284", "video_name": "ee8ffa8c-6977-5452-a8ac-6c2a5166b9bf", "text": "an old house in the jungle and camera moves around it in 360 degrees to show the house from all sides "} +{"id": "1006991", "video_name": "7feec418-03ab-5046-90cb-96718161ea1c", "text": "KING SAUL, troubled by an evil spirit, seeks a musician to calm him. David is summoned and begins playing the harp for Saul. "} +{"id": "2007085", "video_name": "904a852b-a6b3-557c-ae02-526a568486d8", "text": "Megan Fox under hard rain in a Three musketeers windy movie poster "} +{"id": "1003584", "video_name": "41fe1795-ea83-50ef-9777-e717219f29b1", "text": "Scene changes to Lily packing her backpack and heading towards the forest 4k "} +{"id": "0003118", "video_name": "375ef14b-88d4-5564-8115-3402d73b3f86", "text": "warrne buffet is crying uncontrollably, hyper realistic "} +{"id": "6003584", "video_name": "cf792045-a5e7-5d83-9d04-2ba38727998a", "text": "beautiful Switzerland snowfall mountain Jingle bells and clapping hands, Stomp and slide across the lands! Wobble like a snowman round, Christmas magic all around! "} +{"id": "3004799", "video_name": "8effdd62-6635-56e6-a2ae-b2b06c8d996c", "text": "Cinematic shot of a boy running toward us. "} +{"id": "6003495", "video_name": "f7a1cee3-19b8-515e-a59f-eab4838cc522", "text": "Jesus boy learning the trade of carpenter from his father "} +{"id": "3005267", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "university professor giving classes to her students "} +{"id": "4002211", "video_name": "7a9d7a67-5afa-54ed-8b5d-63808d90e8a5", "text": "Two Dunhuang fairies are dancing in the sky "} +{"id": "0003202", "video_name": "3924b463-f162-5952-8c0d-700e91c78129", "text": "a redhead girl riding bike in a mountain environment Message: BIKE (Font: COMICS) "} +{"id": "1005429", "video_name": "63c135e3-1142-503b-bdd2-c814ec33a21d", "text": "An illustration of Elysia and her companions crossing a bridge bathed in moonlight, representing the journey toward reconciliation.Animated cartoon "} +{"id": "4002206", "video_name": "5d1ae5aa-78f7-55d0-9877-bdb89352206e", "text": "A tiered cake consists of forest, trees and nature "} +{"id": "0003154", "video_name": "3830ad53-6b0a-5f83-8eb6-1590a0b96201", "text": "women are always looking for something new to do with their bodies "} +{"id": "7002167", "video_name": "ce421b85-a6d4-522b-9cd8-03914de30485", "text": "two best friends happy faces near beach playing in beach in sunset with long pony tails "} +{"id": "1003448", "video_name": "3fe75266-7f0f-597f-a7b7-e9681d963c2f", "text": "free fluttering butterflies, street city ambience "} +{"id": "1003880", "video_name": "477ae023-2152-574c-aa65-150cae1ed785", "text": "two people are kissing, flower petals swaying in the wind, there are a few butterflies flying, ratio 9:16 1080p Message: 1 Attachment "} +{"id": "2006524", "video_name": "d8f020a3-3fc5-52e6-95ba-f132698b2c46", "text": "video game animation anime style of a woman looking at a computer screen that has a photo of a man on the background of the computer screens image "} +{"id": "5001154", "video_name": "7f156585-0dc0-5e85-b488-02db79bf1c73", "text": "A soccer player plays on ice "} +{"id": "1004233", "video_name": "4e664400-fb05-5d6f-b773-fb811b18d524", "text": "A slow, panning shot of a deserted city street at night. The wind is howling and the only sound is the crunch of footsteps on broken glass. "} +{"id": "3004209", "video_name": "41ae9124-8628-5b62-b0f5-56133b2dd9d2", "text": "a photo image of a pointing finger at the viewer "} +{"id": "0004863", "video_name": "1083605b-fbfc-56d0-ac5e-28e9ca0b1250", "text": "We discovered an intriguing artifact in the form of a map, "} +{"id": "0004944", "video_name": "1202037b-fd3e-5529-9f0b-79344873234c", "text": "An ancient Roman soldier plays with his mobile phone next to a tank "} +{"id": "7002195", "video_name": "b3cc1bcb-46a5-5c33-bea7-43d92a8e65ed", "text": "a picture of a picture of a cat "} +{"id": "8002931", "video_name": "fcf2d0d2-fe3a-5725-a845-bd3f228837f4", "text": "make the environment real and moment on trees Message: 1 Attachment "} +{"id": "0004798", "video_name": "0f4d302f-2fea-5888-b24a-d30e0827c69a", "text": "a man is inspected by border guards near the train "} +{"id": "3004986", "video_name": "3266053c-3c75-57c5-9d61-628cea82d95f", "text": "Old Philippino man, close up, subtle smile, teats of joy, in old wood room "} +{"id": "3005765", "video_name": "0b84bdfb-d8ac-57d4-909b-b218d3ac8bcd", "text": "a men recite quran , in the born fire in the jungle at night and tree leave are flying with air scary night men alnoe and 5 mints duration video "} +{"id": "2004459", "video_name": "a77d3b58-8a8f-5f69-98d7-a21d402d305e", "text": "neverland lostboys with pirate ship at sunset Message: Bangarang (Font: MODERN) "} +{"id": "2007354", "video_name": "32c2a4f3-8ee6-5794-bc0b-ed0c49b9f0e6", "text": "group of animals watching a squirrel "} +{"id": "8002829", "video_name": "a04526a5-5738-517c-9562-2e453c949a80", "text": "Create person sitting lone on beach at school and someone approaching them and befriending them. "} +{"id": "3005956", "video_name": "ab6c8753-9938-54d0-86d9-e27b1f8c5ca8", "text": "sexy girl is dancing on the beach "} +{"id": "4002249", "video_name": "3d4207c9-947b-59b4-83cc-0fa5a10c2b05", "text": "lovers send time each other Message: 1 Attachment "} +{"id": "2007245", "video_name": "827fc641-e197-5847-a3db-1506943d0bca", "text": "the wind is blowing and the cloud is mpving "} +{"id": "5001350", "video_name": "46475fae-0dd4-57a4-9ac9-2920596da117", "text": "a womens tennis player relaxing in front of the camera before a tennis match in wembeldon. in 8k realisting in medium light "} +{"id": "3006796", "video_name": "9db86014-7e09-5154-98fd-590f354b51bf", "text": "a video of elon musk in front of a dispensing machine in the factory "} +{"id": "2006503", "video_name": "47e85593-3fb0-5e5f-8799-67434cd1a803", "text": "top view shot of salty sea meeting sweet water sea "} +{"id": "7003458", "video_name": "350fe081-67bd-5543-97b3-f5b03e4ebc40", "text": "As the male and female characters move away, the stray cats are disappointed behind them. The cats wait a while longer, while staring hungrily and desperately at the characters. However, neither the girl nor the boy returns. "} +{"id": "1004137", "video_name": "4ca5b26e-d501-5e4f-ba7d-aa3fb641aeb6", "text": "realistic high resolution 4k video, a fashion model on the runway, close up of her face "} +{"id": "7002480", "video_name": "83882d89-c346-5ab4-85cc-62a146951d03", "text": "Rusty salvage crew workers in dusty hazmat suits cutting into a derelict dieselpunk spaceship, showers of sparks, harsh lights, by Dan McPharlin "} +{"id": "2007504", "video_name": "ead8df01-2143-5575-a332-eb783d64f671", "text": "america under naszi rule from pov of an average american 20 years after the rules similar to wolfenstein game "} +{"id": "6002582", "video_name": "9e6e3716-87ed-58b7-9022-3bd7fa7d9d34", "text": "dog in osh state medical university "} +{"id": "0004892", "video_name": "11092f20-ee16-59ec-9c21-4389c0dac8b7", "text": "a man walking in a silent valley drama light "} +{"id": "0004215", "video_name": "052acd83-2b37-58b4-88b3-7f0940397f99", "text": "cat as American football wide receiver "} +{"id": "3004319", "video_name": "a04ccf29-3a03-502e-891a-d2be864ee5a4", "text": "3d animation rendering badass cool ninja jumping on buildings 4k detailed Cinematic 60 fps "} +{"id": "2007986", "video_name": "810c34bd-3007-540b-bc61-0ddc021679c9", "text": "a happy mom with three kids of different ages, with a baby in her hands "} +{"id": "0004993", "video_name": "12e0871a-6c30-5876-92b4-62bbda2580f2", "text": "Her mouth is laughing, her eyes are happy, and the roses are moving in the background. An active little girl is laughing and is very intelligent "} +{"id": "1004348", "video_name": "50357d8a-bac5-54c6-8745-511aa0614426", "text": "a composition made only of beef, apple, orange, banana, tomatoes, onions, cucumbers, green chillies and potatoes; over a rustic wood table. Keep the sizes in proportion. Side view, very realistic and fresh, "} +{"id": "7002524", "video_name": "e029dce0-17c8-59e2-96e8-6c2e35d813c2", "text": "a beautiful girl wearing a white dress walking on the seaside, blue sky,sunsine, she is smiling "} +{"id": "4003009", "video_name": "6ee7426e-fca2-5859-bd66-d8c5f8f8ea97", "text": "Satoshi Kon style. Anime style. Three white light bodies playing in between the clouds of a purple sky. The ground is fluffy clouds. vintage anime style "} +{"id": "6003946", "video_name": "d127f762-3e6e-59a0-a08f-f7ce0b6f79f2", "text": "One of them, Ile Amsterdam, was a French scientific base. Our only hope was to reach these pinpricks in the vast ocean. "} +{"id": "2007830", "video_name": "27ccf68c-a608-5c28-8ae8-dd373aec61a0", "text": "a logo with the text \u201cKUMBA\u201d, a luxurious and rich golden texture with gold sand flying with flames on air. 8k, ultra hd, "} +{"id": "4004055", "video_name": "43609ff9-ac5a-5c27-be75-36abeb87c9c7", "text": "A vacuuming robot is cleaning the floor in the living room. "} +{"id": "2004963", "video_name": "c66c50d1-c017-5669-a67a-ddcb622aab4d", "text": "disney character in amusement park with clear sky "} +{"id": "7004164", "video_name": "6e8d165a-2479-5647-b2b0-ec951cd5453d", "text": "Knight fighting against Dragon 20 seconds "} +{"id": "6004558", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "City, Lighting, Bridge, Rain, Wind, Cloud, Flow of people, Crowd "} +{"id": "3006832", "video_name": "52fa0cf7-3ed3-54ae-a908-d489a1cf79cb", "text": "A godilla walking in ancient pompeii ruins "} +{"id": "4003441", "video_name": "a855e8ce-68bd-5ba8-b35f-08a4ee096773", "text": "Sitting homeless man reaching up towards standing rich man reaching down. "} +{"id": "4003245", "video_name": "8c52f686-cc02-59d1-a250-af8a1ebe52c9", "text": "Traditional tea ceremony, people drinking tea "} +{"id": "4004009", "video_name": "f472e240-68bc-54e8-9e10-d63aaebce22e", "text": "A cute girl in the museum looks curiously at the blue and white porcelain vase in the glass display case "} +{"id": "4003114", "video_name": "761855ff-5417-51e2-a55b-31c96cf20daf", "text": "8 billion people telling stories in Timesw Square, include street performers "} +{"id": "2004722", "video_name": "d5ee0ff9-9c08-5dba-ae7a-91d49867100e", "text": "a scene from the simpsons season 1 "} +{"id": "0005873", "video_name": "229d03b2-8505-5a05-a72b-a64b84914628", "text": "handsome rock star dressed in leather and denim drinks a glass of whiskey, his suitcases are packed, he is in his hotel room "} +{"id": "8002204", "video_name": "f172e272-7bfe-58d3-ade2-a89eb2729eb5", "text": "a group of people having a fiery discussion, futuristic "} +{"id": "5001744", "video_name": "a5f630b3-7dfa-5c34-89ae-b3fdaa30e7c0", "text": "Russian singer Grigory Leps, black round glasses, with a microphone in his hand, in the image of Snow White from Disney stands on stage, strobe lights, 4K, high resolution, high detail, soft lighting "} +{"id": "1003833", "video_name": "46bb7f9b-a872-595d-af61-88a999dc2920", "text": "A group of Chinese anime men in the dark, Asian faces, sitting on bus seats, inside the bus, passengers, night, eerie, dim lighting, suspenseful style, Chinese punk, light green and dark gray, video, dc Comics, flat, limited shade "} +{"id": "4002071", "video_name": "9a7b8802-f601-579f-80df-7d4b8ba05238", "text": "animate the dragon Message: 1 Attachment "} +{"id": "1005277", "video_name": "6109ddf0-ab79-52a0-9de4-e87eb6d34017", "text": "create a video of a little kid holding his father hand while watching a city on fire from far away. make the scene dramatic with dark colors. "} +{"id": "4002417", "video_name": "64e2e446-bde2-59cf-b501-e83472907a20", "text": "a lion stumbled upon a trapped mouse struggling "} +{"id": "4003090", "video_name": "865846ef-1455-57bb-948a-8d268cb11534", "text": "The sunset shone on the distant peaks, and a winding road on the grassland saw a sedan speeding over from afar "} +{"id": "0004767", "video_name": "0ee306fe-5ab1-5056-a29b-a9409be67c45", "text": "pop up book of a hospital as it opens "} +{"id": "8003188", "video_name": "632966ff-45ae-5452-af6b-a934688b4514", "text": "a giant size elephant in a jungle, standing in front of a tiny many, "} +{"id": "3006077", "video_name": "518d46a2-09a6-5f51-b1c8-6ac54562553d", "text": "a beautiful opening scene of Switzerland cows grazing grass in open field with snow capped mountain of Swiss Alps "} +{"id": "0006060", "video_name": "25ef266e-fab5-5b71-a081-bdfbb78db7bd", "text": "Red Crab walking on the beach during a bright day "} +{"id": "6003368", "video_name": "8820067a-ca73-56f1-9c39-a6a3547a7681", "text": "a boat on a wild sea "} +{"id": "1006575", "video_name": "786fff39-6b57-56b1-8ced-20d3c2497856", "text": "charactors of young kids named Cheif Mr Aiday, assistant Mr fady and girl Miss Zara. "} +{"id": "2005487", "video_name": "447f739b-c91d-5f8b-b40a-c365f1dd68f1", "text": "Cat Sings,Fireworks celebration Message: 1 Attachment "} +{"id": "1006158", "video_name": "70c27d78-72ff-5523-ad0e-f97831c16eb7", "text": "asteroid hit Mars with a loud bang, creating a huge dust cloud. "} +{"id": "0005202", "video_name": "168d743c-997b-553f-b0c6-2d1b7b8c9f4b", "text": "a person writing in a white sheet and in the background there is a computer with financial graphics "} +{"id": "2006309", "video_name": "e89dc9d3-1895-5b43-8d2d-1a475b477ab4", "text": "make everyone look at each other "} +{"id": "1003650", "video_name": "43383061-0e10-5f1d-94d3-4726dfb68c0c", "text": "masterblastercore adroid warrior by h r giger and tim burton "} +{"id": "7003302", "video_name": "d331c7cb-cfdd-5ff0-8ecc-778e10a8cca7", "text": "Rumba cultists gathered in a circle at the Last Supper. Red hoodies "} +{"id": "2007317", "video_name": "c88fb2b4-9d12-54ea-89b6-4d2e42877b53", "text": "The camera pans across a bustling cityscape, the lights twinkling like stars against the dark sky. The city is alive with energy, but beneath the surface, a sinister plot is brewing. "} +{"id": "3004836", "video_name": "b6a212e4-05c8-5b51-be34-35d3c76aa38d", "text": "Floating urchin in a river in 1850 "} +{"id": "6004806", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "Bill Gates waving good bye to microsoft Headquarters "} +{"id": "7004618", "video_name": "169338bd-e3b8-5f50-a5d4-3448a3f98f21", "text": "A mother and baby are walking in a baby stroller "} +{"id": "5001077", "video_name": "effaef15-e205-527c-b573-24d2a813a7f3", "text": "hunters with spears carefully walking through eerie dark forest "} +{"id": "2005365", "video_name": "8de83c70-527e-5f6e-a68a-c64cc62a9f29", "text": "woman writing on a November 2023 calendar "} +{"id": "0003334", "video_name": "3bcc19c3-7875-50be-ae1d-50f69f53a4c9", "text": "vhs tail grainy hippocampus born out of sea foam, 24 frames per second, guidance 24 "} +{"id": "2007503", "video_name": "49c98ea2-bdd3-5a49-b2cc-ba0909bcbcd6", "text": "Beautiful asian woman standing at the camera and looking upside down "} +{"id": "2004232", "video_name": "caecdb51-749f-5ee3-95ba-1e7334b0a3f0", "text": "Create an angel of hope flying over the wreckage of war "} +{"id": "2007563", "video_name": "6c6d7466-a9b3-5844-b00b-70c004cf1e00", "text": "a rodent getting snared by a rat trap because there was some delicious looking cheese on it "} +{"id": "1006232", "video_name": "723a34b1-c0c7-5a46-bf3c-2c0eeb11b724", "text": "hooded Samurai battles mecha robots in cyber city "} +{"id": "4004451", "video_name": "fba6db9a-b5e5-52fe-ba50-5e58880e72a9", "text": "Beautiful starry sky, ethereal energy, awakening, transcendence Message: 1 Attachment "} +{"id": "1003329", "video_name": "3d4554e3-e6bb-5f79-a15e-8d4c978dac48", "text": "a person walking in a mountain of Canada "} +{"id": "5001792", "video_name": "b46236d1-1ea2-5664-a626-311c01df8853", "text": "A nighttime cityscape with a crescent moon in the background. "} +{"id": "4004249", "video_name": "f5016e64-69c7-552a-858d-63c2f70529dc", "text": "Animation there is fire on a wall and someone try to putting out the fire. Cartoon Style "} +{"id": "3005652", "video_name": "db6125e3-8cdf-51d1-8b4b-1aa85a667f3c", "text": "1920s oil well pumping oil while several men stand around "} +{"id": "1005145", "video_name": "5ed05af2-8a54-5992-bd92-0482997656a6", "text": "CONTROL YHE MONEY OF THYE WORLD , "} +{"id": "5001718", "video_name": "9cf9f0b6-e75b-5f3e-a12b-d93b885ea9ce", "text": "Mars surface, desert area, tornado, launched spacecraft, astronauts, high quality, high details "} +{"id": "1006816", "video_name": "7cb386a4-4f35-5451-bb43-0328a37dbf36", "text": "a bottle of orange juice emerging from a sea of orange juice, the pulp of the juice, splash of movement and cinematic light can be perceived. "} +{"id": "2007061", "video_name": "7ff24ff1-5291-573a-a95c-2af2f52a865e", "text": "flying above old aztec ruins above the trees and looking down from above "} +{"id": "0004956", "video_name": "1232b6d5-36b5-5bbe-bd8a-e4d0e9d3aa4c", "text": "anime cat girl with black hair and tattoos waving hello "} +{"id": "2003670", "video_name": "350b088b-9576-5342-8e26-207c883ba0f8", "text": "create a beautiful young boy wearing cap on his head nicely eating food nicely sitting on a chair with green screen background "} +{"id": "8003380", "video_name": "a82105cb-96aa-5856-abb4-5ac9c01516fc", "text": "a dinosaur destroying city make it realistic "} +{"id": "8002084", "video_name": "331979b7-b0db-58e0-8408-10cbecaf11c2", "text": "Tuna swimming vigorously toward the front in the sea "} +{"id": "2005164", "video_name": "a1f01797-6a75-5747-87a4-38584e997dc7", "text": "Brave Little Bear playing with animal friends, feeling happy. 16:9 "} +{"id": "3003635", "video_name": "14a5289c-f0ab-5ae0-a567-b4390d575839", "text": "add 3 worker in this photo "} +{"id": "3003058", "video_name": "98946546-e59b-5a80-817d-033496256a29", "text": "crown made of gold flying above books "} +{"id": "4004744", "video_name": "415ac662-4d55-523e-b3ec-d5d1c6bdb21e", "text": "A man is chasing another man in an abandoned building "} +{"id": "2004822", "video_name": "8e84c0ad-5472-5682-8845-5dfc3ef9f561", "text": "two men walking in street in Hongkong china in early 1990s "} +{"id": "2005818", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "a person making a dream car "} +{"id": "3003785", "video_name": "41066484-3755-5ac6-8652-a19648a2aac1", "text": "a corridor whose walls are made with giant screens on which we can see famous paintings, 3D render, hyper realistic "} +{"id": "7003452", "video_name": "a25f6599-4db1-5496-8ed7-a720f0d5f9de", "text": "The clouds are blowing, the sails are flying, the sun is shining "} +{"id": "2006277", "video_name": "57e6f3a3-fb88-50a2-be26-ef62dde41067", "text": "handsome man wear jeans jacket walking on ramp, realistic, high details, 8k "} +{"id": "3005566", "video_name": "0629d314-78f2-597e-88bf-373e541253b3", "text": "a ball bouncing down a street toward the storm drain and then falling into the drain, at dusk as the sun is setting "} +{"id": "8003121", "video_name": "16d98e6e-5661-55e3-9031-19a974043561", "text": "make a introduction video of minecraft with my name (Naninoide) "} +{"id": "7002331", "video_name": "d9f647fe-7b8b-5dc0-9ee2-47d2d6198ca1", "text": "A boy dribbling a soccer ball on top of skyscraper building with it other buildings in the view "} +{"id": "7004068", "video_name": "28015589-4e63-5ed2-b1c0-b078b9ee791b", "text": "create a family of very cute rabbits, having a father rabbit, a mother rabbit and a baby girl bunny "} +{"id": "2004902", "video_name": "fc4155b0-c3bd-58e8-8385-e96c111e7fae", "text": ":make the face of the character threatening with the birds flying in the background "} +{"id": "8001501", "video_name": "ea7e1016-7d76-54a6-8493-2e8652c677d5", "text": "in cosmos galactus has appeared he is near earth, octane render "} +{"id": "2005762", "video_name": "5b2786f7-8a4e-5d37-b457-b8803a1c3c52", "text": "A college student in a museum dazzled by paintings framed on the wall, oscar winning movie, award winning cinematography, 4K "} +{"id": "0004210", "video_name": "0504b553-6178-5033-b0d8-eb127060cadc", "text": "sun exploding in the sky, dave gibbons style "} +{"id": "0006716", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "With a determined heart, lion set off on his journey. He padded through the tall grass, his tiny paws barely making a sound. The world beyond the meadow was vast and filled with wonders he had never seen before "} +{"id": "5001156", "video_name": "8e79beda-90a5-5ec4-aec3-b1c23f763103", "text": "Anime scene, Young girl with black hair and dark eyes playing guitar sitting on bed with a happy and calm expression "} +{"id": "7002250", "video_name": "5f8aa4b4-2ba9-50ce-8780-d910226a383d", "text": "Beautiful young woman, running, everything is natural, realistic, road, no cars, 3D anime style. "} +{"id": "1003684", "video_name": "43ee77f5-5f33-5c26-b930-832bebeb0f3c", "text": "a realistic image of saint thomas aquinas with a book in his right hand "} +{"id": "0003283", "video_name": "3ad507cd-a202-5521-8d12-9d2b8741bbf5", "text": "zooming camera across the mountains the sun si shining "} +{"id": "8002184", "video_name": "ffab0751-542c-5ce6-b716-0fe9618d3446", "text": "running, wind, face up and down, hair moving "} +{"id": "8003160", "video_name": "d20e7b3f-ec7c-5c07-89c8-2ea4a976061b", "text": "a Copywriter helping a digital marketer to write Great copies for his business "} +{"id": "4003231", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "butter and syrup melting ove a stack of pancakes "} +{"id": "2006232", "video_name": "6ded0582-57c1-51c1-aece-d311a126d000", "text": "Profesional photograph of a village by the sea like Isla Cristina, sunset, magic light, 8k, fishing boats, camera zoom out Message: USISA (Font: MODERN) "} +{"id": "0003717", "video_name": "424c8e64-d659-52c6-ba40-ddcb8e51e3f1", "text": "fireworks in night unreal 3d render cityscape snow fall "} +{"id": "6002113", "video_name": "d03571cc-a9e9-59ce-aea8-5218318cd4c6", "text": "a man runs towards a tunnel but the tunnel moves away from him as he gets closer "} +{"id": "2005932", "video_name": "91d6df9b-0786-5513-9248-1cc5a4be52de", "text": "A police officer doing skateboard tricks "} +{"id": "1004206", "video_name": "4dbd83b7-b86a-52d5-94e0-3a53fb565b3f", "text": "The fox approached the base of the tree and looked up, his eyes fixed on the crow "} +{"id": "4002695", "video_name": "7d0f380d-048c-5332-a640-9c5a15a3bd84", "text": "show a woman standing in a garden, with her arms raised, with lots of money falling from the sky around her, 8k uhd, high quality, dramatic, cinematic, realistic Message: 1 Attachment "} +{"id": "7004240", "video_name": "c24e55f1-78ca-5c77-9c71-bf9d0c9d0bf0", "text": "A young girl stands on the street of a food street, with a realistic style and a cyberblog style "} +{"id": "4002834", "video_name": "d38812e8-29fe-5e36-bc02-6e03476191c4", "text": "A herd of three zebras run together across the African savanna. "} +{"id": "6002215", "video_name": "12aff16c-8ae7-5c49-ab70-c03eb2e03fe8", "text": "a dog going for a walk and a tree on the side "} +{"id": "4003411", "video_name": "b90e11c8-ce60-50d1-9aa3-8234c7961e25", "text": "An angel and a deamon sitting together watching the moon explode "} +{"id": "2006654", "video_name": "2fde00b4-a866-5911-b742-f96663ab6583", "text": "A man, 30 years old, talking on his cell phone, with a shopping cart full of different products, inside the supermarket, ultra realistic, photographic, 4k "} +{"id": "3004743", "video_name": "ec95d602-10dc-562e-97bd-6cb640eac08e", "text": "a backyard luxury patio area with the trees waving in the wind "} +{"id": "1004475", "video_name": "52df0f25-48d0-5799-a7d0-aecd864407b6", "text": "spores fill the air Message: 1 Attachment "} +{"id": "3004874", "video_name": "3847ff8f-13b2-5ca4-80dd-859cd6e9b725", "text": "show a salomon swimming in the river "} +{"id": "5001418", "video_name": "95081d86-e713-556a-ad4a-2446f646db66", "text": "a penguin walking in a forest, with a coconut drink in hand "} +{"id": "3005651", "video_name": "c572517c-b017-5e72-8d02-acdb33431ada", "text": "set Of Scence Of Children Playing Playing Set Slide Vector "} +{"id": "7002883", "video_name": "7336a2c4-1311-5bae-ba95-0fb146282866", "text": "Anurag, his lantern casting eerie shadows, reaches out to the ancient book with trembling hands. The pages appear weathered, and as he opens it, a soft, mysterious hum fills the air. "} +{"id": "4003577", "video_name": "65f11d77-32c7-52c5-9b69-2cca144c5516", "text": "a girl anime with red eyes, cherry blossom petals arond her "} +{"id": "2006124", "video_name": "41a653b3-90f4-595b-92c1-8102feabbb05", "text": "a photorealistic depiction of dna replication "} +{"id": "8002238", "video_name": "74e92d29-30d1-55d4-8f2b-37bc9fe5fb4b", "text": "An illustration of a Griffin standing vigilantly atop a castle tower, guarding a treasure chest filled with ancient artifacts and secrets. "} +{"id": "8003184", "video_name": "f1dc711a-c9df-5f66-a42c-a849299dbb3f", "text": "Quick animation of the phases of the moon changing from back to full "} +{"id": "6004760", "video_name": "6beb908e-df20-55d7-925f-84f6853c02f0", "text": "an old happy European peasant inspects the perfect lemon "} +{"id": "2006158", "video_name": "aa670d93-afeb-575d-a23b-d2d1c31aa283", "text": "there is a red porsche 911, is driving on the road in a desert land, cinematic lightning, the camera is in mouvement in wide shot on the top, no car accident, the sky is cloudy, no lightning storm, no another car, realistic mouvement of the car, the wheel turns very speed, there is smoke, the image size is in HD size "} +{"id": "0006465", "video_name": "2d093b2b-9583-55aa-9a3a-eb7a3d6303b5", "text": "Metallic paints attract and repel, creating fluid sculptures that twist, coil, and stretch, only to collapse and reform in magnetic ebb and flow. "} +{"id": "0005392", "video_name": "19f8ec44-eb1d-56e3-8103-d68c6587e47c", "text": "a dark unfolds video of a man and a woman capture the moments of revelation and truth, leaving viewers with a powerful sense of catharsis and emotional connection.\u201d "} +{"id": "6004433", "video_name": "aace5f4a-13cb-5144-b10d-20630bb3a173", "text": "a jar of peanut butter floats around aimlessly in outer space "} +{"id": "3004397", "video_name": "c8f6b76f-6e4a-5909-914e-e28363477613", "text": "a rose is spinning in the glass bottle "} +{"id": "2004295", "video_name": "70dfbffc-f59c-53d2-bd9d-0fe79d74cb31", "text": "woman looking into magical crystal ball to see the future "} +{"id": "2004569", "video_name": "0b21f0f3-cec9-51f6-888d-6c73158407e2", "text": "surreal Disney Pixar style \na short lady that has really long brown flowing hair standing on a stool storing a cauldron it\u2019s bubble over lady looks exported looking in the pot with one hand she has a fist full of blonde hair frog on the cauldron surreal color realistic cartoonish traits modern aesthetics "} +{"id": "1003213", "video_name": "3b2d8eec-e4c7-5785-b62a-162b003b62fc", "text": "lilwayne dancing in a birthday party "} +{"id": "1003599", "video_name": "42516323-0c78-50af-a7a5-fcde089d16be", "text": "three astronauts walking into he surface of mars during sunset "} +{"id": "1005225", "video_name": "602d419e-a263-5858-b161-549907a78904", "text": "a giraffe wearing a red sweatshirt and pants and a morocycle yellow helment with skull illustrations riding a vespa through the streets of rome "} +{"id": "0006161", "video_name": "2788f5db-a81f-54fc-8c07-553dae8f7352", "text": "A female action movie hero leaps away from an explosion. Cinematic. City street. Dynamic. Atmospheric. Bullets, smoke, and debris. "} +{"id": "7003305", "video_name": "e3dff8f9-94a1-59a2-ba15-fd03193090a0", "text": "i go to school by bus "} +{"id": "3006879", "video_name": "555e0d27-6a87-59ed-afc5-3bf66a03a0e8", "text": "a couple yelling at each other in the kitchen "} +{"id": "1006960", "video_name": "7f5cecfb-0850-569b-9093-a92256008679", "text": "In the magical land of letters, the adventure began with Annie the Adventurer. She met her 25 letter friends, each with their own unique personality and sound. They all lived in the colorful town of Letterland. "} +{"id": "7004006", "video_name": "c7f2a0ac-47ab-5346-ae9e-9ebaf854c8c4", "text": "Three cute ragdoll cats running in the snow, she has a pair of big shiny eyes, pink nose, the sun shining on her body to make her glow gold, you can see her raised grab, and wagging tail "} +{"id": "3003810", "video_name": "8126fef1-a200-5068-b1b0-39233a9f401d", "text": "An angry boy plucked a red rose on a black background, all in the anime style, look out the window of the castle, very lonely "} +{"id": "0004828", "video_name": "0fe3958d-b80a-535c-a84b-02d7c732099a", "text": "a totally black background flashing a totally white background on top of it every few frames "} +{"id": "5001175", "video_name": "bdb767d5-2b55-5257-aa9f-80589ff972be", "text": "panorama gold coast city in future as a dystopian prison "} +{"id": "2006752", "video_name": "896b29c4-d929-5a9c-9fff-c46d5c5d1fd2", "text": "A scene where firecrackers burst in the night sky, photorealistic "} +{"id": "2006454", "video_name": "2ebf682a-2eab-5a79-999b-42d158740873", "text": "nostalgic scene of a high school corridor, super 8 footage "} +{"id": "2004979", "video_name": "d9ed3c84-3720-5812-b5a8-52eb9b9eeb85", "text": "microwave from outside, motioned scene, empty microwave "} +{"id": "3004451", "video_name": "321d1f39-1715-574a-9217-1c77f5c79449", "text": "realistic hand open a door next to a stadium of football "} +{"id": "6002190", "video_name": "fdc3635d-23f8-5c94-adcf-10744a1bd102", "text": "A Buddha statue transforms into a spaceship and flies away. "} +{"id": "0005368", "video_name": "19a9a9ce-de26-526c-a75e-92e68d4c8b75", "text": "aan hugging his motorcycle on a roadside near an ocean "} +{"id": "3005755", "video_name": "078a2883-a969-54c1-9de6-4614f78ae53b", "text": "She had an impressive collection, collecting antique dolls from all over the world. "} +{"id": "8003606", "video_name": "186888d5-4759-51f7-93a0-8a3c64780e06", "text": "the middle of the clouds, with bright radiance of the heavenlies "} +{"id": "2004924", "video_name": "5c45fd7a-3698-5318-86b8-184682315268", "text": "The children navigate through the maze within the house, following a giant black cat emitting a mysterious glow. The labyrinth is filled with intricate and complex pathways, the walls adorned with ancient magic runes and mysterious symbols. The black cat leads the children through the maze, curiously exploring every corner and passage. "} +{"id": "0005399", "video_name": "1a29412f-9f79-55cc-878a-5ecdb9f32171", "text": "blurry light shifting in dark background "} +{"id": "4002215", "video_name": "280ba736-3b51-5441-8ad1-56ed415197f3", "text": "A woman and her boyfriend encounter a sudden fierce thunderstorm by the beach, and the boyfriend seemingly disappears. After that, she hears his screams every time it rains. "} +{"id": "2004266", "video_name": "3cd42dc5-5359-58bc-a80a-fd7b95ef4b18", "text": "who she trusted more than her family "} +{"id": "1003392", "video_name": "3e8bad07-b879-515c-a9a3-936148295e54", "text": "A man is eating a hamburger. "} +{"id": "4002064", "video_name": "c4186497-095c-559f-9630-ff3bc5825811", "text": "young man and young woman have a podcast in the street, they are sitting in Banks behind a table and hace microphones "} +{"id": "0003024", "video_name": "35bb8e0a-739d-5a03-b3ec-ee174017ec2f", "text": "video of a rainbow in a snowy mountains, unreal engine, cinematic, mystical, 32k, UHD, Pixar "} +{"id": "3006927", "video_name": "a178e3b5-0196-5a6b-bdfc-dbef96ca8056", "text": "a handsome man climbling stairs in back ground sunset "} +{"id": "1003646", "video_name": "432e22dd-4875-5a23-8628-8c6b99883495", "text": "modern living room . White curtain. Confotable sofa. Iluminate room "} +{"id": "8001071", "video_name": "e7f76a01-3127-57ee-a424-400956ea6695", "text": "Two yellow Shiba Inu and a black Shiba Inu running in the garden,grass and blue sky "} +{"id": "3003643", "video_name": "a99c3903-15ff-531e-a5cf-fc0d2120affb", "text": "cinematic view of a back of a waiter short brown hair serving to a table with guests at a restaurant in new york city "} +{"id": "2003903", "video_name": "0813d8f2-8270-556a-af1d-81f92c0c24f0", "text": "ultra hd wide angle closeup of custom nike dunks in the wind "} +{"id": "6002130", "video_name": "0849cd20-63a5-5b9a-87d9-dbd7022633ad", "text": "Ayodhya Ram mandir 3d view for VR experience "} +{"id": "4004661", "video_name": "0864db51-f396-5685-b105-6b06007f5949", "text": "Sarah, a young woman with a disability, sits on the porch of her house, watching children play in the fields. "} +{"id": "1005645", "video_name": "67bcc9ac-d7d0-5bf7-a4ef-0600376dbf8e", "text": "cat eyes mirror fireworks city flood "} +{"id": "3005728", "video_name": "26d3261e-1147-517d-8479-95254f8a6ca1", "text": "Batman is beatin The Joker, aspect 9:16, hyper realistic, cinematic "} +{"id": "8003317", "video_name": "548fc0fe-b679-5b75-8e92-38d4ce944db7", "text": "imagine a young and handsome man, jose from egypt, in a city, talking to several people smiling "} +{"id": "8002642", "video_name": "81b5e719-1f91-5ce8-85a4-dc34ddd3f068", "text": "day and night at the jungle "} +{"id": "8001742", "video_name": "6b517b8f-7e55-5b13-9feb-0509ee4dc087", "text": "a very beautifull girl at New York City "} +{"id": "6002523", "video_name": "a0d75803-24b4-55d5-8b01-4fbdb3f633e6", "text": "fantasy dragon looking out over a burned forest "} +{"id": "2007047", "video_name": "929a1034-0e19-5e3a-8dd0-ff8bfdf9dd82", "text": "Artistic double exposure portrait of a beautiful, strong woman in a nomad camp in the mountains, high quality, 8k, cinematic "} +{"id": "4003241", "video_name": "d5dfaa4c-8674-5f42-a596-b1fd262b1550", "text": "a man in a stag mask walks through a door to address a crowd of people waiting for him "} +{"id": "4004667", "video_name": "70e43bb5-bcb7-57d9-8633-7a72ed4a5f18", "text": "Generate a cute cartoon chicken, running and talking happily "} +{"id": "8002634", "video_name": "53b96012-53da-519b-b0a3-4e0044c5ded8", "text": "Rorschach test pattern with many layers and colors "} +{"id": "7002184", "video_name": "79d7d007-c3e8-5261-9a61-44a5cea72065", "text": "a beatifull lady, worker, clean lady "} +{"id": "7002712", "video_name": "0c13e479-c7fd-5aab-a1e5-163e043ca239", "text": "rabbit dance break dance like Michael Jackson "} +{"id": "8002013", "video_name": "24d9b8a8-50c4-531c-9d38-75c6093f605f", "text": "Generate sences in which Shri Krishna ji lifting the wheel of the chariot in Mahabharata. "} +{"id": "2006690", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "Over the years, numerous expeditions set out to find Agartha, "} +{"id": "8002217", "video_name": "be08f5c8-3ccd-5f03-a9c3-44016dce6df5", "text": "lychees and rose petals falling in a pink sprakling water with a dark pink background premium advertisement video style "} +{"id": "4003932", "video_name": "363ecfe8-422d-5320-8d19-d864729efe4e", "text": "a serene mountain landscape.Highlight the realistic details such as moving clouds, swaying trees, and the play of light and shadow "} +{"id": "8003252", "video_name": "e68691a8-006f-5944-b320-85073317d8a7", "text": "Galileo Galilei looking in a telescope from his room and only Galileo Galilei is in that\n room "} +{"id": "8003034", "video_name": "eb315049-9deb-513b-be13-17d5b2408a6b", "text": "Immediacy: Picture a moment of tension between friends when differences arise, threatening to tear apart their close relationship "} +{"id": "2006219", "video_name": "24bb5936-a027-5118-9c29-08f7502a6abe", "text": "a city inside of a gigantic ship "} +{"id": "8001751", "video_name": "a3732463-6e0c-5a96-a30a-a60fad412509", "text": "camera zooms into the center of the jellyfish "} +{"id": "8003632", "video_name": "048a9cd6-e3d2-5cff-89d2-1407bb584a55", "text": "a wise princess talking to her friends "} +{"id": "1006576", "video_name": "787004e5-9119-584a-bcb2-87e722287291", "text": "Beautiful queen with crown,sunset, palace, Pink dress "} +{"id": "0005375", "video_name": "19ba439c-65f7-52d8-be19-0e2796dd2b6f", "text": "black and white video in the style of German expressionism fast movement of the forest from left to right, camera static "} +{"id": "6004252", "video_name": "89d3f31f-eff5-5ad5-a5ba-1c65bbaebf0a", "text": "A young woman in a dress threw documents at the table. "} +{"id": "5001961", "video_name": "2f2b83fb-7729-5f11-bfd4-477a9d077852", "text": "1800s steampunk lady applying red lipstick "} +{"id": "2005676", "video_name": "03998b56-b5e8-57d7-b2e4-aeb1cf205b76", "text": "apocalyptic earthquake damage in Malibu, California "} +{"id": "7003405", "video_name": "25bca922-93fc-578e-b80e-565ae18c13bd", "text": "a crying young girl on fire while underwater, lots of motion, lots of colors "} +{"id": "0004448", "video_name": "09471859-8445-5a46-aaa8-0acc072ff52e", "text": "Action scene, man fighting white ghostly humanoids, action blocking and framing, , wearing jumpsuit, opening contraption, complex, cables, lattice, webbed, greebled, futuristic motif, gloomy, over the shoulder shot, cinematic, dvd screengrab, 1984 movie, labirynth, CONTROL videogame "} +{"id": "2007925", "video_name": "df325d54-d137-5377-8e92-ebb3e74aa569", "text": "honey badger jumping inside server rack "} +{"id": "8001401", "video_name": "d1af826a-b070-506c-b77d-fa2e8e70ff90", "text": "photo realistic sunrise view of a forest mountain river flowing through the bolders, "} +{"id": "8002433", "video_name": "dc4d6647-1c82-5506-bde8-ca6512539369", "text": "couple of famous girls singers singing together "} +{"id": "0006951", "video_name": "35bb8e0a-739d-5a03-b3ec-ee174017ec2f", "text": "video of a rainbow in a snowy mountains, unreal engine, cinematic, mystical, 32k, UHD, Pixar "} +{"id": "2004579", "video_name": "f2609c7e-a081-5aa0-ac8c-1ec4a3503cc1", "text": "a background scene inspired by wednesday addams "} +{"id": "1004457", "video_name": "527b3b7c-b82d-592f-b644-40ad336958e7", "text": "Two mountain valleys opposite to each other "} +{"id": "6002439", "video_name": "c974fef1-6a5d-5b97-9ead-aafabcda664c", "text": "see you in next episodeanimated video "} +{"id": "6003125", "video_name": "fa9ebeba-ab6b-502b-a697-010ef3b32ad6", "text": "Gloomy, sad, industrial, techno, gray, oppressive atmosphere "} +{"id": "0004799", "video_name": "0f558815-572c-5dcd-ae54-15b6ead7ee17", "text": "The trees are swaying.The boat rippled in the water. "} +{"id": "6002825", "video_name": "c366f532-8cfb-5a7a-b08c-851af24a1f52", "text": "One day, as the sun painted the sky in hues of orange and pink, "} +{"id": "1005293", "video_name": "61466a64-87ee-50b9-9c42-a04c64599129", "text": "taj mahallway candelabra discotheque Panavision planet of the apes LUT more lights dramatic psychological film stock 24p phenomenal truck shot in from a long "} +{"id": "2006634", "video_name": "9a3ed955-98a5-5ec6-b080-24603eaaa974", "text": "Benny the Brave Bunny and Sammy the Squirrel were hailed as heroes in the Enchanted Forest, and from that day forward, the two friends shared stories of their grand adventure with all the animals who lived there. "} +{"id": "1004136", "video_name": "4ca5295c-5aa1-5a08-9873-b5216bcf5376", "text": "elephant human play slow motion 360 degree "} +{"id": "3006297", "video_name": "309da0a4-fca1-5ab0-b539-59390ef2d10e", "text": "a American patriotic man wearing a Vox Populi Tshirt "} +{"id": "6002543", "video_name": "6e16c15d-8bb0-51ca-915e-2fd5673baf67", "text": "pristine, sunlit meadow with wildflowers in full bloom, where the air is filled with the scent of a floral perfume "} +{"id": "7004321", "video_name": "6d57ecad-e106-54bb-8c54-a6fceb3dfe9b", "text": "a cute spider, yellow and blue, Pixar animation style "} +{"id": "3005222", "video_name": "7b6046a3-7e57-5a97-9d43-bef5748c6c0d", "text": "poor boy, scary road, zoom in, 8k "} +{"id": "4004555", "video_name": "9ce69404-0c7c-5592-b36c-5c24c33b5ba0", "text": "a cute puppy walkin on the moon "} +{"id": "1006977", "video_name": "7fb8fcd0-8a46-553d-80ee-961d7b7d7eb8", "text": "i need to animed this science material in each circle in the uploaded image "} +{"id": "3003624", "video_name": "b86f2857-e04e-5641-9a43-ceb77d303425", "text": "animated collodion photo of incredibly realistic of giant space ship "} +{"id": "8001207", "video_name": "6c3cce33-37af-5033-b796-a607f1aba738", "text": "stephen hawking in his wheelchair, in a room full of little girls, and is real happy "} +{"id": "7003579", "video_name": "cf3400b7-d552-57b9-9b33-3a5f834c3cea", "text": "a massive shih tzu attacking tokyo "} +{"id": "4003690", "video_name": "4733566e-25ce-5b0c-94b5-be66315f0dd1", "text": "walking around in a city with face facing the camera Message: 1 Attachment "} +{"id": "6003556", "video_name": "39c27481-7930-505f-974b-736f9e72c075", "text": "a bird eat a caterpillar, ar 16:9 "} +{"id": "2004505", "video_name": "a3fcce9f-8b6d-5dda-bddb-188bac4d73d0", "text": "The green fairy sits in a lily and flaps its wings "} +{"id": "0006314", "video_name": "2a87bade-25cc-5ed5-befa-060ba144ea35", "text": "a group of students studying Technical Writing "} +{"id": "0003422", "video_name": "3d51f246-17c7-5bde-b129-26e2e738e143", "text": "Animated Yellow lightbulb moment on black background.Good idea or inspiration concept. "} +{"id": "0005384", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "rainbow zebra running in fantasy forest "} +{"id": "4003948", "video_name": "5599ae42-98d2-50e1-8ce5-5ae46c77e4e7", "text": "3D animated cute girl and black cat waliking HD "} +{"id": "3003418", "video_name": "5d5b5bca-2820-5b5f-b35f-be6d782c6975", "text": "Video of Chase Oaks Church Legacy Campus from above, showing a crowd of people coming in, all looking happy. Multiple angles showing people parking cars, walking in front doors, getting coffee, kids playing on the purple slide "} +{"id": "1005840", "video_name": "6b542643-7be2-58b6-ba4e-4668e25cbeaa", "text": "A young man giving a concert on a planet and the aliens enjoying it "} +{"id": "2005990", "video_name": "97ebd82e-d9d7-5a82-a963-857145c3b4d3", "text": "a cat chasing a toy mouse "} +{"id": "0005135", "video_name": "15718ddd-c5d8-5d4e-91d1-0e125bb0035f", "text": "horror man clicking photo at night "} +{"id": "6004063", "video_name": "50ea47bd-4759-5f3d-b1df-a8c2ae42001e", "text": "BukovskyART Message: Halloween pumpkins (Font: MODERN) "} +{"id": "1005983", "video_name": "6de97dbb-b071-5e75-bd77-98ad8a3c52c5", "text": "Laptop screen screen recording windows 10 mouse clicks on the discord and tries to generate a video from text there and generates what I am generating now and so it repeats many times "} +{"id": "6002031", "video_name": "a5c77b61-b45a-5f08-9812-2a54b2b95b9c", "text": "really subtle ufo caught on ring doorbell camera "} +{"id": "4003619", "video_name": "0b2ec0f0-b076-5ce4-adb7-9d1d54273063", "text": "Show the characters sharing their wisdom with a group of young animals. "} +{"id": "3005947", "video_name": "6ad59365-160e-5565-a9e0-3b40dda41fce", "text": "Creature. Low gravity. A rarefied atmosphere. Radiation. Cold. "} +{"id": "8001242", "video_name": "e2cde5f4-13d6-501d-a3b7-2b3a0c277fa9", "text": "Miniature Schnauzer and Dalmatian celebrate the new year "} +{"id": "6003339", "video_name": "23b5d501-341a-5aad-8ef9-e95a544edf82", "text": "a calendar turning to next pages. Each page has the days of the week written on it "} +{"id": "7004526", "video_name": "6db6cf5c-f273-5940-9e91-b3d664bc7033", "text": "70\u2019s dark fantasy book cover style of adventure time "} +{"id": "3006582", "video_name": "4a7f7e37-3981-5d7e-a71b-46d28421110f", "text": "Destroyed houses, war, fighter jets in the sky, smoky, dusty effect with fire, dark. 8k, high quality. "} +{"id": "6003264", "video_name": "a653d947-217b-5a61-aba4-3cdd05b6e29d", "text": "a carrot in the forest walking, sunny, 4k, 16:9 "} +{"id": "0006664", "video_name": "30a9360e-eb88-5ae2-9624-ebac02692125", "text": "owls talking, beak moving as they are talking, moving eyes and head "} +{"id": "1003289", "video_name": "3c75e73f-67e8-5085-bde2-46beb0b67562", "text": "Many senior executives from Chinese companies gathered around a long table in the conference room to discuss enthusiastically, with quick movements and strong and dynamic visuals "} +{"id": "3006351", "video_name": "51cde4bd-3ba5-53fc-9317-0fc3ce79ee63", "text": "I was surprised that till now ,no owner of the cave till not came "} +{"id": "4004789", "video_name": "2d4e30e8-a706-55dd-a4b0-f34b732ec341", "text": "male hands play the keys of the piano, and divine light shines and pours on them. video format vertical, 9:16, ultra quality, duration 10 seconds "} +{"id": "7004607", "video_name": "98c13e1f-6563-5ced-a7fb-96cdebb10b80", "text": "robot AI and Human art collaboration cover, UHD, 4K, cinamatics "} +{"id": "0003397", "video_name": "3cea32f3-a83c-57bd-9e7c-4f1c76857e10", "text": "charter walking, snowing Message: 1 Attachment "} +{"id": "0006604", "video_name": "2f6a7aca-4132-5267-8548-5b9d6d8f625f", "text": "18th centuary ghostly black coah pulled by 4 black horses in a background of windy full moon scary forest "} +{"id": "2006512", "video_name": "dfb9b271-8d99-5d13-af0f-81062e77f686", "text": "wink the eyes, camera move right Message: 1 Attachment "} +{"id": "4002769", "video_name": "301b018f-d871-5161-b9b7-92f5b8db89d4", "text": "Inside the room, colorful decor, wind,Matisse style "} +{"id": "6002167", "video_name": "aca7eb91-9ce4-5577-9c55-ee573ec492b4", "text": "There is a Great Wall on the moon "} +{"id": "3005047", "video_name": "f76d05b6-80b9-52c2-93a5-a56b0e57200e", "text": "generate four friends in a new year , 3d animaion "} +{"id": "7003487", "video_name": "267b60e4-f911-520f-a0e2-6b4204505146", "text": "several cleaning girls are cleaning a home Message: Clean Home Vancouver (Font: MODERN) "} +{"id": "2006050", "video_name": "6d91856e-2ea4-5831-a5d3-dcf891827759", "text": "The airplane is flying and God is watching in the sky. "} +{"id": "3005992", "video_name": "00d78ad1-d4fd-5487-951b-f30711546b8f", "text": "old 1960s, american court room, old video camera footage "} +{"id": "7002671", "video_name": "b5bb959b-f7af-5223-bf3c-f3693cfcf421", "text": "dwayne johnson on riding lawn mower old "} +{"id": "6004871", "video_name": "6ad25cb8-b37c-54f9-8269-596d6a1ad3cb", "text": "A yellow chicken chick dancing on a farm on a sunny morning. "} +{"id": "5001256", "video_name": "d034851a-7fac-5750-936c-20415a3cf013", "text": "A young woman in a yellow raincoat standing in the sea "} +{"id": "7004271", "video_name": "806f33a0-9283-5efe-88c7-bfc9b21457e7", "text": "a smart boy with other boys "} +{"id": "5001925", "video_name": "0e09bc77-d529-5263-891f-a5dcc026584f", "text": "Make a movie of all the paintings of Vincent van Gogh "} +{"id": "0003437", "video_name": "3d86a9ff-27a3-564c-862a-3d3745cb1b1d", "text": "a human soaring in a beautiful sky "} +{"id": "6004632", "video_name": "41631d30-225c-5758-b8ec-826ac32815ea", "text": "A woman holding a red umbrella in the rain, twirling the umbrella and looking back, anime "} +{"id": "0006661", "video_name": "309558dd-ad5c-52fb-a819-962f932844bf", "text": "Birds fluttering\uff0chyper realistic; highly detailed; cinematic; clear image; smooth; super sharp Message: 1 Attachment "} +{"id": "0003318", "video_name": "3b8dc3f2-1048-59d7-8f7f-8f8723a2134e", "text": "Generate an image of a pianist playing the piano while an angel whispers in their ear, with the image in a 16:9 format. "} +{"id": "8002132", "video_name": "a30a2275-c00d-5830-833e-bff5d66af011", "text": "a turkey posing for the camera holding a brown trout "} +{"id": "1006156", "video_name": "70b6b896-2de0-5f86-b1a5-14d22333610b", "text": "Jeremy Irvine running on a green banckground "} +{"id": "4003902", "video_name": "dd9ad1cf-0d79-5ed2-ab49-710510c1d5a9", "text": "Harry Potter speaks to Hermine in Hogwards "} +{"id": "1005255", "video_name": "60a85552-2110-5a74-bfc5-4a4794f30c2e", "text": "a realistic mega modern elite mansion with gold and black "} +{"id": "8003959", "video_name": "b3f38309-58e3-5dc1-8823-13dab1b5020b", "text": "a man named who had a vision that seemed utterly unattainable "} +{"id": "2005333", "video_name": "53147288-5723-5b27-9bfc-c85294339006", "text": "1930\u2019s super 8 footage of distorted satellite image of abandoned earth "} +{"id": "2005765", "video_name": "53b0758c-ddb8-520e-a4a8-7985ff8a3d5f", "text": "drumset hardware falling from the sky, blue sky mountains "} +{"id": "2006977", "video_name": "fd4c09f7-3bf5-577c-af1c-e37aa8814111", "text": "A young man and a woman in ancient dress, positive vision, walk in the courtyard of ancient Chinese architecture, there are gardens, rockeries, pavilions "} +{"id": "2003789", "video_name": "c25e7ab7-8e70-52fc-92f7-3bb48cfdb5bd", "text": "1980s male and female hippies kissing in weed heaven "} +{"id": "7002443", "video_name": "4a82293f-2d3f-5b27-85cf-70775df3f976", "text": "futuristic space craft take off and surroundings destroyed "} +{"id": "2004626", "video_name": "31a14af5-c661-5ccf-8f1e-c7e6b27b1ad9", "text": "Lilith has also inspired many artists, writers, feminists, occultists, and others in modern times. She has been portrayed in various ways: "} +{"id": "0006931", "video_name": "35753c07-633e-5f88-9991-2185b48ff769", "text": "An artist picks up a brush and carefully follows the numbered guide, skillfully adding colors to the corresponding sections of the canvas, photorealistic, 16:9 "} +{"id": "0003027", "video_name": "35ce39fe-a4b7-526c-8166-26247cfd8320", "text": "a beautiful sad child sitting on the grass, looking at the sky, suddenly a surrealistic hand emerges from the sky wearing very white clothing "} +{"id": "3005349", "video_name": "2eef4bc5-9bbd-51a6-8b3b-340ab309879a", "text": "david picking up stones bible, 16k, realistic "} +{"id": "5001870", "video_name": "38846063-edc4-5f9f-8d07-12eb2247ceb2", "text": "Batman and The Flash running together "} +{"id": "8003953", "video_name": "500c6ab2-b9e3-5f9f-be1e-a23749745247", "text": "The back view of a businessman is attentively looking at a computer screen, which displays ChatGPT AI chat content. "} +{"id": "2006493", "video_name": "a924715c-002f-54a0-87fe-46a75f196eff", "text": "funny dog smiling in the house "} +{"id": "0004520", "video_name": "0a71fce9-74f2-51b6-9092-8b7ebf5fad94", "text": "cinematic vidoe footage of batman in anime vers of him self in other universe "} +{"id": "4003027", "video_name": "d8cc5f6f-a87e-541c-87bf-d016af1f15a9", "text": "Capture the moment when Samuel stands as a symbol of success in front of the neighborhood, surrounded by people he has helped, radiating hope, and illustrating the transformation of the area. "} +{"id": "4004993", "video_name": "8a46a47b-099f-5b65-a931-80f5aaed81b4", "text": "The love between the king and queen was intense. "} +{"id": "2004691", "video_name": "dee70665-065b-5385-9be7-6a7bfec881e6", "text": "a top down drone view of a busy london street in 1990 "} +{"id": "6002635", "video_name": "95b7dc47-8669-5b8d-acd3-96dbfe801163", "text": "A jet plane taking off from an aircraft carrier in the Pacific Ocean "} +{"id": "1004063", "video_name": "4b5f36b8-97e6-503b-b62d-89e6bd8337ed", "text": "a glass room with water inside. The sunlight filters through the glass, creating a shimmering effect on the floor and the walls, as if the room is alive with water. 3d, cgi, 16k resolution, ultra realistic, ultra detailed. "} +{"id": "6004366", "video_name": "c6441a2a-a84e-57f1-b0e1-252c117fd068", "text": "an anthropomorphic goose playing turntables with its wing to a crowd of regular geese at a festival in a desert "} +{"id": "1004132", "video_name": "4c885237-4124-5d60-aa7f-ce67531acce0", "text": "very tall deer standing on horizon in distance, foggy, spooky "} +{"id": "6002044", "video_name": "5e79c324-d69c-559b-83d4-4395b8c33103", "text": "show a scene where an old man and his family leaving the big ark and going out to the world in cartoon style very clear "} +{"id": "7004196", "video_name": "5170c890-7b89-5c43-9e4f-f2f35a3b21e9", "text": ":enormous castlevania castle at night. full moon. towers and parapet. "} +{"id": "8002393", "video_name": "f3d17109-902a-5fd8-8dd6-938347157e71", "text": "Vinicius Junior in the Real Madrid stadium, on the sideline making a pass at a player from the other team "} +{"id": "3005097", "video_name": "aa4e608f-f9f0-50cd-abcc-186749c308a9", "text": "16mm footage of a rock structure on Mars surface the rock structure has sculptures of humanoid alien creatures up front the main enterance has a giant mural of a human "} +{"id": "6003219", "video_name": "02ecdc82-6399-5ca5-a760-2c4495bf6ef6", "text": "Those two talking in the room "} +{"id": "7004141", "video_name": "ff07fb28-3417-5861-b8db-888315e436a9", "text": "a cat with glasses sits at a table and reads a book, a lamp is lit nearby. "} +{"id": "3006277", "video_name": "c415e4fe-16a7-53c4-b40e-c53a2ea8d8e8", "text": "Bright morning sun in the open window through the curtains. Abstract white waving curtain in white bedroom apartment. "} +{"id": "2005987", "video_name": "7774142b-da6e-554f-be7d-7c45688e09f3", "text": "alien Music Producer with midi keyboard and fl studio on computer sitting in a Tron studio, in a tron world, galaxy, aliens and monsters in background and ufo "} +{"id": "3003950", "video_name": "293446f3-35aa-55c4-9952-461139050d3f", "text": "calligraphic gothic style Message: KRUKOV (Font: MODERN) "} +{"id": "1006432", "video_name": "75ac577d-bdbe-5922-9d26-22122dc7acfe", "text": "two mice opening the door of a big dining hall full of left over food, pixar animation style, cinematic lighting, night effect, photorealistic "} +{"id": "4002200", "video_name": "a384eab3-4462-5c78-8331-ba85abae17a9", "text": "cat wearing augmented reality glasses surrounded by cat friends laughing camera zoom out motion "} +{"id": "2004973", "video_name": "2b029c30-827e-57a6-989b-4ec45e0de0eb", "text": "a mesmerizing rorschach shifting patterned fish curiously watching viewer, underwater found footage "} +{"id": "3005666", "video_name": "2ebdaaef-8b80-5ccb-8287-0b8478658ac5", "text": "a drop of whiskey falling into a cup in super slow motion. "} +{"id": "7003348", "video_name": "f9452508-b728-53a5-a3a4-c4fb8f4e1532", "text": "a precolombinian vessel from which a black snake with yellow lines emerges surrounded by a faint beam of light and rises to the sky at night "} +{"id": "1004003", "video_name": "4a18adb9-ff63-58c5-8634-6b2d2bb90f1a", "text": "alien dj playing on rave on lsd colors "} +{"id": "2004276", "video_name": "f03fcb24-f097-528d-9bf4-057155797146", "text": "Develop a short horror film where the family investigates the mysterious face haunting their mansion, building tension through atmospheric lighting and suspenseful music. "} +{"id": "2005423", "video_name": "89d1b767-5076-50d1-8d6c-c05fc65fc462", "text": "no one else around me, no one bothers to be sold, battlefield, on top of a misty mountain overgrown, hyper realistic, lush gnarly plants, 8 k, denoised, by greg rutkowski, tom bagshaw, james gurney cinematic lighting "} +{"id": "2004604", "video_name": "0365b856-afa1-5649-aa5b-0ecabcaa9c13", "text": "the little olive tree grew and became big. His little olives even grew. The background does not change. only the tree grows bigger and bigger "} +{"id": "4002674", "video_name": "c8f6fae9-21a9-59a3-a12f-e04f6235ac53", "text": "the mermaid is brushing the theeth. the mermaid is playing with small fishes "} +{"id": "7002220", "video_name": "6ba38d9a-829c-52e9-b080-fa4b023fad9c", "text": "ancient greek philosopher thinking in his chair "} +{"id": "7002681", "video_name": "f6cf32ce-193c-51ff-af21-e94e11930894", "text": "An alien space ship in the bright blue cloudy sky lowing down slowly "} +{"id": "6002997", "video_name": "d689891c-9ebb-5871-a460-7023ab0efb0f", "text": "Beautiful catrina in a fitted red dress walking slowly among the tombstones in a cemetery at night. "} +{"id": "3006470", "video_name": "a56ca014-a0ab-560d-bb54-77d8a18703c5", "text": "One day, while hiking across the icy terrain, they stumbled upon a pack of wolves like none they had ever seen. These were no ordinary wolves. They were larger, more aggressive, and had strange, eerie markings on their fur. These mutant wolves had adapted to the harsh Siberian environment, becoming formidable predators. "} +{"id": "8003463", "video_name": "3b4c41d3-9a45-5038-9562-20697654f126", "text": "A picturesque landscape with a castle nestled among lush green hills. "} +{"id": "7002996", "video_name": "8e23b96a-14ce-5e7a-a2c7-2f62d2e1bfcc", "text": "an organic controller with bacteries moving around in the style of H Giger "} +{"id": "7002629", "video_name": "21bfd8a1-1fcc-5799-953b-e02f93deba64", "text": "give me about mahatma gandhi movemant "} +{"id": "6002146", "video_name": "6d318f5e-630d-5619-9b8d-c56fb421d009", "text": "sheeps and goats are walking in front of an ancient greek temple "} +{"id": "3003129", "video_name": "b6461460-cf83-5634-8b70-83579de3b8fa", "text": "lord ram smiling adorably, and seeing here and there "} +{"id": "6002456", "video_name": "c0730aff-801c-5d20-8e38-633c801ee6f0", "text": "Building where the window lights turn on and off with different colors. It also changes the color and shape of the sky. 4k "} +{"id": "3005779", "video_name": "cb08a594-90a8-53cd-8304-a3e81d7ea0f5", "text": "a cute young indian man speaking with smile "} +{"id": "3006899", "video_name": "6e7dc20d-6d70-54c3-849e-275d10928100", "text": "neighborhood, lights on, shining through 6 windows. night time "} +{"id": "7003580", "video_name": "3c347715-7147-5c6d-a0d6-b37fe1edcc92", "text": "Portrait of tribal indian man screaming realistic photography, angry, golden hour, azabache background "} +{"id": "8001466", "video_name": "5de2ae84-8332-50be-ab7c-dad541e4c4a1", "text": "The trees are covered with fruits "} +{"id": "0004300", "video_name": "06af3159-17bf-539e-8243-8afc8fb53428", "text": "create a 3D cartoon character shaped like a human hand with a thumb and little finger like Wings to fly, feet to walk and hands to pull. The index finger and the middle finger are turned towards the palm and have eyes in place of the nails. Between them are the nose and mouth openings. Both sides of these fingers have ear holes. The ring finger may not be present. "} +{"id": "0004860", "video_name": "10711237-a285-5e2b-a2a0-27153b02a4ff", "text": "forest in which river is flowing "} +{"id": "1005704", "video_name": "68dc0115-8dec-5140-8462-f654cc48a16f", "text": "A sheep in the style of cyberpunk driving "} +{"id": "1003607", "video_name": "427fe38b-7afc-5b7a-b7b8-aa7823000602", "text": "Floating city in the clouds, overgrown by nature but has a functional city "} +{"id": "4004514", "video_name": "e4dcef43-1ae4-549a-89e7-01a2c9d7d3fa", "text": "A young monk who can talk and tell stories. "} +{"id": "2005257", "video_name": "67c8ad36-7edc-5954-96f7-4e472fdee52a", "text": "a surreal cult in deep forest with candles and blood "} +{"id": "6002864", "video_name": "e972d848-a650-5b8a-ba84-d7779973d174", "text": "Ten jars filled with gold in the palace of a Muslim sultan, the courtiers around him, and the king sitting on his throne "} +{"id": "0003600", "video_name": "40388946-6dfe-57e3-90f4-0794ebe64f5b", "text": "a bosnian guy marries a turkish women in 16 century "} +{"id": "0003053", "video_name": "362a7799-98a0-537c-ae57-81250c7951fd", "text": "A bussiness man is working in front of a computer who is anxiety and tired of working. "} +{"id": "1003347", "video_name": "3da11ebd-a0c0-5a69-8056-08dccd13fe5b", "text": "pov go pro footage of jumping across rooftops like in the matrix "} +{"id": "8002663", "video_name": "6324a333-01e6-556e-a615-fc6a0e96cf7a", "text": "A shaky video shows a figure in a cape flying over a traffic jam. "} +{"id": "8003088", "video_name": "63c41352-558a-5856-b366-ef1d3d049df0", "text": "composition of layered colored ceramics placed on the wall of the house "} +{"id": "7004177", "video_name": "1d98c8c8-9a95-56de-af16-be0cd4ebe8a4", "text": "man of the desert walking with line of 3 camels, extreme long shot, wide sunset view, desert sun set "} +{"id": "0006809", "video_name": "3370b211-4be0-5bb4-8bb3-6180e9a26fad", "text": "a boy with lot of exam pressure "} +{"id": "1005031", "video_name": "5d10bfaf-2076-5dc1-9be3-c26c2e1f40f8", "text": "computer chips falling through a blue sky with clouds "} +{"id": "3003864", "video_name": "0ecebe05-405f-5b36-bfbe-0d95277dbecd", "text": "They(two white hired men) are watching the full moon and feel the breeze wind in autumn "} +{"id": "0006570", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "logo with letters: covers shrift: comic sans "} +{"id": "3005594", "video_name": "e26335f1-9a11-5393-9e52-5e25d199a9d0", "text": "an horror creature with four hands, an two legs, long, a circular face with 8 eyes walking outside the water in a dark night port horror fantasy "} +{"id": "8003240", "video_name": "ce402c2a-a415-5e43-9bed-a3e68008c9d5", "text": "On a cold winter evening in Tokyo, Kazuki took refuge in his digital sanctuary. With his hands on the controller, he explored virtual worlds and battled monsters. With each level he conquered, he felt enveloped by warmth, forgetting the chill outside. In his heart, winter had become an oasis of adventures. "} +{"id": "2003449", "video_name": "480fdf51-e650-5609-8135-4e393431c5ab", "text": "a video of a tall muscular man swimming in the ocean surounded by sharks and other misturious ocean creatures "} +{"id": "6004506", "video_name": "e2fd32ad-713d-5990-9843-31e1255bdfdc", "text": "young man walking on an empty city street under the moonlight "} +{"id": "2006432", "video_name": "e6b4fc50-6b8e-597b-814c-97e1d4333ded", "text": "a large eye with lowered eyelid drawn on the glass of a window of a Manhattan building, seen from below, cinematic style "} +{"id": "8003830", "video_name": "56bc30ad-17ce-5321-95fb-b04c812587e7", "text": "Havana City Message: Abajo Canel (Font: MODERN) "} +{"id": "8003167", "video_name": "8129e410-6c79-583d-ac14-7a50e8758af7", "text": "a man speak on the camera, anime "} +{"id": "1004406", "video_name": "517b1a3a-1272-5c54-9e8e-1008bb0aef6f", "text": "small animated alpaca receiving a baby brother. The big brother alpaca has a blue christmas tie. They play soccer and are happy "} +{"id": "7004579", "video_name": "68dce644-c7b9-5859-a5a3-323e56339b52", "text": "Show the anatomy of a human body and show the functioning organs "} +{"id": "3004134", "video_name": "c12294a2-4577-5dd1-aed4-09f80c5b6aa0", "text": "At sunset, a BMW drives through the desert "} +{"id": "0006166", "video_name": "27944ea5-0248-5048-8719-0271a4e5df67", "text": "Turn the girl in the photo into a boy "} +{"id": "3003579", "video_name": "539b12d1-4400-5217-b617-4a360f5e3ba2", "text": "It was a magic seed that held the power to bring dreams to life. "} +{"id": "2005989", "video_name": "847b00b2-fffb-504b-bb7d-781091840815", "text": "Adventurer looking for books in the library "} +{"id": "1005768", "video_name": "6a287c80-a41a-51d5-8d35-3a82ada7bd2c", "text": "Strong Chinese men exercising in the gym, 4K "} +{"id": "2006822", "video_name": "47461fdb-c71f-5749-bc2d-e1ae5f9c9571", "text": "girl listening to music with headphone, lofi art "} +{"id": "2003599", "video_name": "ca117659-6b01-565f-a84f-4d2175d0e4f9", "text": "a lady is driving a Lamborghini with his child "} +{"id": "2006612", "video_name": "a747f832-a738-53e0-b571-b476bad420da", "text": "stunning lanscape aerial view of a dramatic sunset over the stormy sea "} +{"id": "2003755", "video_name": "b5c63df9-f3e1-5347-9ddd-65c921e96d77", "text": "a beautiful colourful sunset video taken from a moped "} +{"id": "1004873", "video_name": "5a0226cb-7886-5787-b743-29d583f90914", "text": "grass, flower and hair is swinging "} +{"id": "8002826", "video_name": "b5bed81b-8dc7-50b3-987d-1c64b17c5223", "text": "flying through rainbow waterfall in a palm tree jungle with rainbow fire and exploding palm trees vaporwave "} +{"id": "8002144", "video_name": "8d39cd06-6944-5a9a-8155-9c4deb38cf51", "text": "make the birds fly through the sky "} +{"id": "7002003", "video_name": "8a895f42-6294-52fa-b599-2bd114542693", "text": "a person eats the gingerbread man with relish at the table, a cup of tea is on the table "} +{"id": "3005817", "video_name": "e5e169b0-cf74-5c23-a3ae-f44e5c7ac01c", "text": "a hare running in a track "} +{"id": "6004258", "video_name": "f21c4184-3ea8-516c-b9b2-42cb785c8396", "text": "Peter Parker changing into his Spider Man suit "} +{"id": "2007513", "video_name": "575758eb-ea5f-5f61-9e3b-2acaad8a3bc2", "text": "beautiful close up pink red rose in rain "} +{"id": "0005617", "video_name": "1e22b952-7575-57ea-920c-edbebe8a783c", "text": "portrait, 2d, little girl character, cute, 20 years old, full color, purple shoses, purple hood dress, purple clothes, short black hair, flat color, no outline. Standing straight, directly facing the camera, she is happy. "} +{"id": "0004655", "video_name": "0cc07b14-5984-541b-aff8-fbd72a8ca2b5", "text": "cinematic shots, several ufos are over nurnberg 1561, people watch the ufos fight "} +{"id": "7002378", "video_name": "dce0bd68-7489-5a66-92f5-28b5b43b0b72", "text": "Subaru Forester 2003 drives on a night road and gets into an accident "} +{"id": "7002565", "video_name": "be7f3f66-b56d-502a-85f6-9cbbc53c1750", "text": "a young girl accepting the reality "} +{"id": "6003419", "video_name": "63104503-9115-5121-8f89-bf9618089709", "text": "Police units mobilize swiftly, barricading streets and deploying armored vehicles and tanks. They engage the aliens, firing relentlessly as explosions light up the skyline, showcasing the ferocity of the battle. "} +{"id": "5001097", "video_name": "8d419e20-e100-5a69-babb-9e081ca2ab56", "text": "A minimap diorama of a ball room with two people dancing in the middle of the floor while an audience is seated in chairs around them "} +{"id": "1003947", "video_name": "48d32df1-f8a8-57f2-9446-5f0ab9068505", "text": "An underground, dimly lit kingdom with narrow, winding tunnels. The mouse, with its shimmering eyes, is seen starting its journey. "} +{"id": "0006483", "video_name": "2d4ea5f1-96ea-5e7b-896f-1769c7607512", "text": "city made of Icelandic opal candy "} +{"id": "5001791", "video_name": "62352474-08c3-554d-b4c5-1b4a2d6720d7", "text": "A caterpillar and a dragon are playing badminton on both sides of the badminton court "} +{"id": "3004810", "video_name": "9fc7ac25-4fa8-5ff1-879e-8386c10bf69a", "text": "a little girl reading a book with a group of chickens near her "} +{"id": "0005114", "video_name": "14fd1971-a45d-5acb-b558-d740f95cdfec", "text": "max movement, cinematic, A futuristic city, reality and digital seamlessly intertwine. "} +{"id": "2005805", "video_name": "9de3bb9a-edf9-54e9-a4b5-6226a5427dfa", "text": "Two programmer work on his code at home "} +{"id": "7003937", "video_name": "0069af15-6d93-51c5-b521-8f3c99b170c8", "text": "a sad teenager struggle with vision problems "} +{"id": "2006914", "video_name": "0356bff4-d4c7-539d-87ee-0e36146bc481", "text": "cartoon talking fox under the tree "} +{"id": "2004246", "video_name": "c15c18f6-35ae-532c-a3bb-b3da361db5d7", "text": "The bearded merman sitting on rocks in the ocean,Highest quality, very clear, a masterpiece "} +{"id": "7004732", "video_name": "c2cab788-dc05-5c56-99bb-e4c1f6c77dd3", "text": "The Eastern village quietly exists until mysterious creatures from the heavens begin to appear. "} +{"id": "2005396", "video_name": "0c858763-efcf-576d-85c5-359a18ac1d54", "text": "Mochi is a small and adorable Pomeranian dog. His house is located in a lush green garden, where flowers and plants are always shady and vibrant. Everything in this house is very warm and comfortable. "} +{"id": "8002276", "video_name": "2a55593d-5a39-5d0f-bb3f-2fccbcd7eae3", "text": "walking with madmen, red head girl, realistic, 4k, canon photo, masterpiece,masterpiece,best quality, ultra realistic,32k,RAW photo,detailed skin, 8k uhd, high quality:1.2),fashion model, woman, beautiful ,like a selana gomez, wet dresses "} +{"id": "6004685", "video_name": "ebe92493-86ae-582b-9d07-ad70f425ad71", "text": "a friendly bigfoot bathes under a waterfall "} +{"id": "0006460", "video_name": "2cf93700-a06f-515a-a450-04e96b81b11f", "text": "a London bus driver under water "} +{"id": "0005441", "video_name": "1ad53c22-18ea-5a22-be98-2a1640e3d429", "text": "a beach with blue and green waters, birds flying in the sky and a speedboat "} +{"id": "4004007", "video_name": "2e3f2c85-bd78-50e7-9dfe-7c80fbb9a18b", "text": "translucent beetle made of glass with glowing insides. Motion:5 "} +{"id": "4002318", "video_name": "fef1c65a-114e-596b-bc6e-4f54597c9888", "text": "a robot sitting at the desk studying. The robot has Stanford logo and signature red color. The background has the Stanford red color theme, 16:9, 1k resoltuion "} +{"id": "7004010", "video_name": "e98f3e1e-cf21-5450-9c07-f7f081407147", "text": "Bunny people walking in a town for Bunnies "} +{"id": "1004350", "video_name": "503c277d-c23a-5eb6-b4a7-78b2609cc05a", "text": "video of bees that are animated "} +{"id": "6002166", "video_name": "4bf8f64a-5f6b-5b0c-a5bf-d46760151398", "text": "king cobra running through heavy water "} +{"id": "6004822", "video_name": "87d2590c-b039-5618-8ef7-ccd47c3f276c", "text": "coffee revolution, people are running after a big cup of coffee "} +{"id": "3004079", "video_name": "5156c18c-2444-5b35-8748-e3fe6a6b110e", "text": "a little 3d boy talking to a red roze flowers "} +{"id": "1006651", "video_name": "79dd0b5e-87b6-5461-bc8e-11966663deff", "text": "car yard scene from the movie psych out "} +{"id": "2003383", "video_name": "2b47a44a-a9f9-54b4-811f-a14f13ccbc4a", "text": "imam talking to his fellows, mosque background "} +{"id": "6004010", "video_name": "796c3fb6-1c57-5be2-af64-3b07c86bc2f8", "text": "vintage hindu king and rabindranath tagore having a conversation in palace "} +{"id": "7004270", "video_name": "5539340d-642b-545f-91b9-553a855974fd", "text": "a festival in a dark an distopian future. The band that plays are a futuristic punk band. "} +{"id": "6002237", "video_name": "e37cb009-754e-51f1-b589-ef6f30aedec7", "text": "a young worker, in a park, juggling with 3 new plastic bottles "} +{"id": "3003808", "video_name": "44d12360-ff5d-50c9-bb4b-0bb2f944884f", "text": "Design a fantasy fashion dress based on the idea of time travel. "} +{"id": "7004784", "video_name": "b1e84bbf-e3f3-588f-b0b4-a754d37195e6", "text": "3d blue hexagon, white round eyes, white pointed teeth, "} +{"id": "3006468", "video_name": "a3be7ee5-0abb-5fed-8969-be45b5aaeeab", "text": "A beautiful girl is dancing on the water. "} +{"id": "0005878", "video_name": "22ab6fe3-1c27-5b8f-9562-86f4d35d903c", "text": "psychedelic swirls zooming in, UFO flying "} +{"id": "8002945", "video_name": "8c875607-86d1-57a8-9f42-e5135e49968c", "text": "a young girl in light blue clothes surrounded by monsters "} +{"id": "1004045", "video_name": "4b11637c-cd15-50f7-93a3-6787d8d95a97", "text": "walking in the rain, professional cinematography, low depth of field "} +{"id": "1004788", "video_name": "58761804-c929-5c78-9e35-505a42480496", "text": "Wearing Chinese hat, long white beard, wearing black cloth, Chinese shell, full body frontal photo, with archaeological landscape in the background, "} +{"id": "0006918", "video_name": "35505e7c-6a9d-5676-8ded-c74f75f4f41d", "text": "A joyful and energetic person walking along an endless beach in the sunset while a melodic whistling sound of joy plays in the background, the sun reflecting off the water like a river of gold in a tropical paradise. "} +{"id": "3005738", "video_name": "0e0e3524-de4f-5d3b-8cec-3da97d9f4d40", "text": "Men, women, children and elderly people carry Algerian flags and walk with them in the street "} +{"id": "2003038", "video_name": "ab03bb8e-6ff5-547b-b703-c1b8b8b6a4d0", "text": "4k, realistic, fantasy, 3d, carnival, scarry, fun, happy, morphing out of a tv "} +{"id": "0003490", "video_name": "3e79c8d7-5e0a-553c-9f96-f78e3c86ceaa", "text": "black hole immersions with light and shadow effects "} +{"id": "4003320", "video_name": "4515b939-024f-51c5-bdda-107ef9e061de", "text": "The flowers are swaying in joy Message: 1 Attachment "} +{"id": "2007943", "video_name": "58e350fc-1d5c-5f85-8616-755d30f701cc", "text": "A man whose white light shines "} +{"id": "0004997", "video_name": "12fd26fd-0fa0-5a74-a47e-72e3e4980afa", "text": "dark skin man working at a cafe in Paris in 1950s "} +{"id": "0006523", "video_name": "2e069582-0a69-595e-9528-d19053b68e9e", "text": "halloween disney princess Message: 1 Attachment "} +{"id": "4003674", "video_name": "026ca05b-5858-52b8-8250-9c35e334583a", "text": "3D natural background, butterflies in garden, colorful flowers "} +{"id": "0003121", "video_name": "3768a328-e933-566f-a0f1-383d2d0c9ec5", "text": "hundreds of penguins standing in a cannabis field "} +{"id": "8003664", "video_name": "a5c19ba4-2a08-555d-b34f-a525fce82fb7", "text": "an ancient Chinese martial artist wearing beautiful silk robes walks toward a medieval Chinese village, nighttime "} +{"id": "0006437", "video_name": "2c487712-53a6-59be-86fd-d9bb2339f82a", "text": "a beautiful house in a narrow valley "} +{"id": "2003279", "video_name": "05dcdac3-4f38-5877-80b3-e0d17392e68d", "text": "cat and dog are sleep together near window, outside is snowing "} +{"id": "4003934", "video_name": "3fc6a6e0-812f-5941-92fe-4bffe5d98686", "text": "cinematic,4k,8k,flooded town,tsunami,water,flooded house,disaster,modern house,2020 house,cars,city,crystal clear water,plants,abandoned,full of plants,tropical,flooded with crystal clear water,portrait photo "} +{"id": "3005676", "video_name": "4fa94d4f-03f8-5d96-a5a1-36d95835a058", "text": "paint pour mix HD vivid wow "} +{"id": "2005802", "video_name": "15bdc197-9b77-514a-92ce-f95052f245c5", "text": "a vibrant city, illuminated to celebrate the New Year, reflecting the energy and boldness of a modern, Caribbean society. "} +{"id": "8003940", "video_name": "608e5cfb-e0e1-5c90-80b5-98dc551dca7e", "text": "A climactic scene where Aiden and Elara, standing together, confront a looming catastrophe with their intertwined powers and love, showing their bravery and determination. Message: 1 Attachment "} +{"id": "1004748", "video_name": "57e4ed90-d9a8-5409-bcb6-f80903d430a2", "text": "lady teaching how to edit pics "} +{"id": "0006104", "video_name": "26a3cdb7-622b-5136-ae81-0d4766aca869", "text": "image of Move the animation to Mrs. xyz house, entering Baby room, gently tucking him in with a blanket. "} +{"id": "0004630", "video_name": "0c4ec1a3-b126-531f-a37d-c459f14e6311", "text": "two men coming each other very close "} +{"id": "7004009", "video_name": "80eb791b-e7a8-5782-91e2-87e71e326cb1", "text": "smooky forest Message: madhan (Font: MODERN) "} +{"id": "6002298", "video_name": "14adb734-421f-5435-9456-1b4af81634bd", "text": "Flood water coming After people Running Away from it Cinematic and Realistic "} +{"id": "2003468", "video_name": "80a5d55b-6512-5a4f-b8e7-5b78032e3fba", "text": "A quiet, moonlit street, all houses dark except for one, where a single light flickers. "} +{"id": "1006642", "video_name": "79b9a0ac-7954-5e0d-b570-a58cb0cb70da", "text": "juicy and crispy bacon falling into a pan with oil "} +{"id": "8003193", "video_name": "4cf65819-955b-571b-845b-1a693f0c9145", "text": "In the middle of a park full of flowers in full bloom, Olivia was walking with her dog, Max. "} +{"id": "4003710", "video_name": "f1c92e0c-6ad2-57fc-9e85-4b666dd87799", "text": "A cat among purple flowers and falling rain Message: 1 Attachment "} +{"id": "8002546", "video_name": "3e9db7da-815b-58a6-9fca-cb2e8d730c69", "text": "an UAE man vector art looking worried and thinking "} +{"id": "7003660", "video_name": "67432d48-0ccd-565d-9670-20439257f224", "text": "a chubby dragqueen dancing, anime style, canon 55mm , cinematic lighting, 8k, best resolution, hight quality, accurate movements "} +{"id": "6003456", "video_name": "2869bf44-75ee-59d0-80b6-4dff1808eda6", "text": "type disney gifts under the tree with twinkling garlands in front of the fireplace and a window with falling snow outside "} +{"id": "3006528", "video_name": "f522e7bc-07ac-519a-8c1a-c7cfa9621506", "text": "people walking back and forth in a busy new room "} +{"id": "3006786", "video_name": "c21eaac1-784c-56bc-b5d3-44f022aa720e", "text": "The vast and serene sea, embracing horizons, dances with the sun "} +{"id": "1005230", "video_name": "6042f4ce-e672-58dd-9ff4-38309f42c8c2", "text": "Gold mining by people that do not live in the Amazon forest "} +{"id": "0004293", "video_name": "0688bc44-dcb5-540f-ac75-95caeb8bc950", "text": "visual representation of Rabbit lesson learned.\n. in 4k 16:9 "} +{"id": "7003511", "video_name": "c3296113-b452-5277-b415-c67568938d62", "text": "Billelis style wyvern wary, heraldo ortega detailed terrain, HDR 24K mysterious gaze "} +{"id": "2007370", "video_name": "f6407b23-faea-566f-8876-f5aea188a36c", "text": "melting chocolate waterfalls, dense, hyper realistic, panoramic, motion 1 "} +{"id": "8003092", "video_name": "c2551adc-ed01-5dd1-8cde-f4863343e065", "text": "In this image, we visualize Mount Carmel, an arid and rocky landscape, where the prophets of Baal gathered in a circle around an altar. They are dressed in colorful clothes and desperately try to summon fire from heaven to consume the sacrifice on the altar. On the right, Elijah stands, looking up to heaven with confidence, while his altar remains unchanged. The sky is filled with dark clouds, creating a tense and expectant atmosphere. "} +{"id": "0005902", "video_name": "22fda58a-0b90-5122-8eb9-ae6fa6e3b54d", "text": "Anime slam dunk thought by AI Message: 2023 (Font: MODERN) "} +{"id": "1003874", "video_name": "475e2788-f9c7-54a3-a64c-1f3ee6829cca", "text": "python developers and progrming language Message: z (Font: BAUHAUS) "} +{"id": "0003596", "video_name": "40256a64-72f3-5770-a00e-5cbec8ae0dd4", "text": "piles of clothes in a thrift shop Message: patch (Font: MODERN) "} +{"id": "3006458", "video_name": "b11a85f8-0954-57bf-828d-4abcebf1822b", "text": "Change a red circle into blue square and back to yellow triangle "} +{"id": "2003969", "video_name": "9cc5b2fc-21df-550e-8cef-20a6a7f68db4", "text": "an airplane made of red velvet flies against the background of a sunset over the sea towards the mountains made of blue velvet "} +{"id": "3006220", "video_name": "5c01f8ee-7a3d-58c0-ab92-146f74529776", "text": "create a video showing a modular house being manufactured in a factory "} +{"id": "2006068", "video_name": "895e2ead-1985-5781-9755-448c34932a24", "text": "a anime style girl, a sunny day, high school, april "} +{"id": "2006719", "video_name": "37d4ccae-5375-580d-87af-2e25d8510d99", "text": "a lady in transparent dress without inner wear "} +{"id": "0005100", "video_name": "14bb083b-8736-55ee-81ec-60f7f889c1f2", "text": "1girl, stormy emotions, turbulent thoughts, intense expression, messy hair, clenched fists, dark clouds, lightning, thunder, dramatic lighting, strong winds, raindrops, splashes of water, chaotic background, unsettled atmosphere, distressed clothing, wet clothes, fierce gaze, determined stance, conflicted emotions, "} +{"id": "2007472", "video_name": "d5da5f85-17af-51da-8a18-ac28f712c5c5", "text": "Aliens attacking a military base, explosions, and intense battles "} +{"id": "0006514", "video_name": "2dde2b20-4af0-5bb6-94a1-d77c123569cf", "text": "A white cat stands with his canine friends in the middle of a big party "} +{"id": "4002809", "video_name": "6a42a748-64ba-54c7-a9c8-ddd5e5f584d1", "text": "A sexy Chinese girl wearing jeans shopping at the mall, with a very happy expression "} +{"id": "7003290", "video_name": "97f1d72e-9a98-57f6-a146-c7cee750e17f", "text": "dragon sleep in tree animated video "} +{"id": "8002268", "video_name": "4feb16db-3fc3-5ac7-8581-ecc65b5a3ec1", "text": "X is for the unknown, where mysteries are found. In cartoon carecter "} +{"id": "4002872", "video_name": "0e2013cf-552f-5528-9c03-88a1de65ade6", "text": "planets in space Message: hello world (Font: BAUHAUS) "} +{"id": "6002309", "video_name": "7cfb2ec8-5ef4-5ede-9452-e12fa3e04d09", "text": "a night time skyline forming the character \u5c0f\u5218\u665a\u5b89 "} +{"id": "8002725", "video_name": "c78897a5-ce1b-552e-887e-dde98eeb63ad", "text": "Army Hellecopter in the sky flying past "} +{"id": "4004436", "video_name": "e5fe0993-2ff7-56a0-afcd-170e22e31607", "text": "Create video for hero section on website 3d knives and japan style Message: 1 Attachment "} +{"id": "3005110", "video_name": "9c87bf7b-7633-54f1-baa9-a8060256ad6b", "text": "A tiny finch on a branch with spring flowers on background "} +{"id": "6002498", "video_name": "88c3c3fe-1d7d-5092-a38b-8d63fee4f28d", "text": "cartoon character cute boy standing in a farm land with vibrant flowers and vegetables smiling and laughing excitedly. wind blowing "} +{"id": "2003608", "video_name": "f4fd5903-2742-53d5-9f6e-75c74d669ff5", "text": "brain in a psychedelic garden expanding "} +{"id": "2003218", "video_name": "5893d507-7c06-5c08-8b0f-2e7d9d87730e", "text": "Create an enchanting scene of a mystical soul with flowing silver hair, adorned with delicate silver jewelry, standing amidst a celestial garden, surrounded by sparkling stars and ethereal moonlight. "} +{"id": "2007954", "video_name": "71978777-7395-5f83-b15a-d55a240bf210", "text": "create a model for mikihouse brand "} +{"id": "6004137", "video_name": "eff6f926-1e0a-53fb-8977-77c662bd212a", "text": "Capture the magic of the Rockefeller Center Christmas Tree in the heart of New York City. Illustrate the tree surrounded by the iconic skyscrapers, adorned with sparkling lights and ornaments "} +{"id": "4004757", "video_name": "83b973c2-9dc4-579c-a85c-c90b0274668a", "text": "generating video 4k. Toyota Prius ride in dark forest to the sun "} +{"id": "7004350", "video_name": "8a52e9db-28c0-5537-8f00-d390edccfc61", "text": "The boy danced around happily Message: 1 Attachment "} +{"id": "8001020", "video_name": "38459d4b-2eac-50d9-a558-94e4add737e3", "text": "sea serpent with human head emerging from the lake of eden mythical surrealism "} +{"id": "4003708", "video_name": "f7b5162d-e689-5a22-8f26-957bab43c9ee", "text": "football player sliding on his knees "} +{"id": "3003523", "video_name": "e43c8e6c-b057-5771-a819-a084bb1cb65c", "text": "red dragon drinking molten lava from an intricate China teacup. "} +{"id": "8001292", "video_name": "3cf92752-23e6-5163-b6fd-f6e51876ef3f", "text": "frame of enthusiastic soccer crowd, iconic black and white flags. "} +{"id": "6002162", "video_name": "a5c22e18-26da-5496-8793-aab4f7f19ac9", "text": "window framing the image, sunny day man standing far away looking at the window creepy "} +{"id": "1005042", "video_name": "5d34ec1e-40c5-5b5b-8d38-dce58f608065", "text": "how looks tuetue, also called chonchon, flying in a dark night, looking for "} +{"id": "2006718", "video_name": "db017359-285b-5b66-ba6f-0a1448386eb9", "text": "small child escaping voodoo Forrest painted by zdzislaw Beksiiski "} +{"id": "3004833", "video_name": "b7a8cc04-7cdc-5979-88a5-e781aac14915", "text": "naruto character with konoha village background "} +{"id": "8002781", "video_name": "d5289d0b-3697-5860-b42d-7aff0726e9e5", "text": "Napolian is to somewhere by horse. Use historical background "} +{"id": "1004470", "video_name": "52cf3b40-e540-5ea4-b6bf-2295f67f966b", "text": "The moment you pour a blue soda drink into a transparent cup, a lot of things are moving 16:9 "} +{"id": "0003421", "video_name": "3d4f88da-cdf5-5fa5-9e4f-292b20fe16a0", "text": "The Egyptian pyramids are beautiful at sunset "} +{"id": "3004334", "video_name": "4ef5ed9a-2316-5b7f-8d6f-e9c6e15bb219", "text": "photo realistic image of a thermal printer sticker that has a star wars lego scene on it 4k "} +{"id": "2005803", "video_name": "f9b2d8c1-eda4-535e-9493-03ac3aa11f9c", "text": "The camera pans through the village, showcasing various unique characters and fantastical creatures going about their day. "} +{"id": "2004799", "video_name": "6b2cd43f-e931-5604-8c4b-a80dda27859c", "text": "Create an image that shows the cat listening intently as the lion shares his stories. "} +{"id": "4003466", "video_name": "30c852e8-635e-5f16-9d26-c73285e3d44e", "text": "Mexican female Darth Vader with a pink outfit and red lightsaber "} +{"id": "3005925", "video_name": "2191f33c-a1da-5454-b98b-6e50b0dd9ce5", "text": "A cartoon cute ragdoll cat drives a car on Mars, the camera switches from a long shot to a close shot "} +{"id": "0004349", "video_name": "078c3abe-34dd-5fb8-a7c7-bf0e7c02b4e6", "text": "daria from the animated show \u201cdaria\u201d uses a mop to clean tomato sauce spill "} +{"id": "1004909", "video_name": "5ade5131-5d02-5191-ae79-ad0c14d4ee40", "text": "a wolf jumping onto an outstretched arm and transforming into a shield "} +{"id": "8003163", "video_name": "3ff3b4c6-f92a-526f-9075-4dabe78789b0", "text": "high resolution cgi animation a small boy walks along a cute country path "} +{"id": "2006877", "video_name": "c7966c41-fe2b-5507-a6c3-f39e4c40cd9d", "text": "darkness space in life your love is the greatest thing for her "} +{"id": "2006958", "video_name": "80a8aba2-bfc8-5d66-9e69-2cebf1baf855", "text": "cinematic macro shot of cats swimming underwater with jellyfish, creepy style "} +{"id": "0004436", "video_name": "09079148-7928-5bb7-8510-6f617eeff09e", "text": "night scene pan moving back and forth "} +{"id": "1004673", "video_name": "56dd45ba-ddca-5bc8-bc0e-a5bd9b9801d0", "text": "In the heart of the forest, Milo, Rosie, and Sammy frolicked in a sunlit glade, chasing each other amid the towering trees. Their laughter echoed through the woods as they enjoyed the simple pleasures of their woodland playground. Cartoon illustrations. "} +{"id": "4004832", "video_name": "e8255030-6835-53e2-a698-0ff9d66eae38", "text": "High quality, photorealistic, noir type feel. The city of Metropolis at night. It has rain recently. The camera drives though the streets of the city. There are few pedestrians, and traffick is low. "} +{"id": "2004938", "video_name": "237f9146-fe06-5463-a36d-10e2b5415477", "text": "a woman writing on the sticky note in the office "} +{"id": "1004927", "video_name": "5b111ae2-82fd-5c9e-9a79-b2fd22ec1ac0", "text": "a forlorn fisherman walking somberly along the docks, overcast weather, light rain, pacific northwest "} +{"id": "3004463", "video_name": "bc6f6fd0-17ae-5910-bd36-e0ab972dfe29", "text": "A russian man hiding from police "} +{"id": "7004256", "video_name": "9871e644-3d3f-52de-940f-b22cab15d829", "text": "Neon LED sign with the names TripzZ90 on it "} +{"id": "0004569", "video_name": "0b55188b-8ffd-5ef0-9ce3-dd396ae11c88", "text": "strange footage of a black and wigth camera "} +{"id": "2005231", "video_name": "5891e74a-f757-5e47-9661-6ebef94ea235", "text": "a chinese dragon greetting the chinese new year in the sky "} +{"id": "2003703", "video_name": "64ea3c59-7bd4-5d95-a335-12ba683e2499", "text": "Scene of Tarkov Streets, Group of 1 USEC PMC 1 SCAV and 1 BEAR PMC walk together as others fight for food "} +{"id": "4003702", "video_name": "90b76bac-6218-5dcb-a796-c05ede9073ae", "text": "kharkhorum city photo with silver tree "} +{"id": "7002620", "video_name": "cf52da0e-6c98-57d5-9e79-66aaad750cbd", "text": "Five BMWs and two Mercedes are roaming around the city "} +{"id": "1004202", "video_name": "4dad3515-8b1f-5442-aae7-dc7f4ec47046", "text": "Imagine Piccolo in a human way, in a realistic world "} +{"id": "8001926", "video_name": "f83b9efe-8742-5a0d-80e8-90e7dbf398eb", "text": "realistic building explosion, 8k, high resolution with red fire, photorealistic Message: Jorge (Font: MODERN) "} +{"id": "0004045", "video_name": "021c5cef-9297-53ed-9f0f-f0b0a16c7e50", "text": "1990 documentary film in color showing the ship experiment filadelfia with corpses melted with steel "} +{"id": "2007088", "video_name": "a0b96e27-9822-5bd5-971f-6625fedf1f52", "text": "He understood that the city was not lost by accident, but to protect something precious from falling into evil hands. "} +{"id": "5001467", "video_name": "2de61bde-1d15-5805-bad2-6573498a59a0", "text": "A pink princess of the tale "} +{"id": "1005589", "video_name": "66d5bcdb-18ef-5ebe-8b62-9bb596e7da87", "text": "Many rabbits in the forest. Huge trees in the forest bear huge fruits. "} +{"id": "2007838", "video_name": "781a2385-cb1b-59aa-bc81-01c067e42f64", "text": "Circular portal in a desert leading towards modern temples, in the style of biblical drama, monumental figures, voluminous mas "} +{"id": "2005993", "video_name": "df5b66ee-dfa9-549b-9175-a37e6d51a7b6", "text": "Hamburg central station camera zoom in "} +{"id": "4004259", "video_name": "8a6ea2ee-ad00-5ac5-ae53-730ce211cc51", "text": "woman driving car through the city Message: 1 Attachment "} +{"id": "1006487", "video_name": "76bb552f-23f5-5a03-9c02-541c0b9a0477", "text": "Undertaker in a wrestling ring holding a broom in his hand in a stadium "} +{"id": "6002374", "video_name": "6aa0cb63-2fe3-5ef1-bbe9-7d9b0df33f63", "text": "creates a school divided into different parts, in a very countryside environment with a train track "} +{"id": "0005775", "video_name": "210bc3ff-10d0-5093-919e-8c33b35f5bca", "text": "Harvard Lab in 1967: Stanley Milgram in a Harvard laboratory setting with assistants and research equipment around. "} +{"id": "3004747", "video_name": "72f3e55d-c64c-5d78-ac65-176994e7d001", "text": "following a driving car through a warehouse "} +{"id": "2005066", "video_name": "cf9e0781-d037-5bd2-a6ca-8b8765e16d3e", "text": "anime style model firl inside coffe shop drink coffe, detailed art, 2d illustration, 8k unrealistic, detailed cafe design, Message: Callate (Font: MODERN) "} +{"id": "0004784", "video_name": "0f17a1bf-1e0b-5614-b4ef-fdb14be33522", "text": "Slow motion of a triumphant success at work, in a bustling sales floor, with ringing phones, showcasing the excitement and achievement, captured in a wide shot with dynamic lighting, filmed by Oliver Stone, influenced by his energetic style, conjuring emotions of victory and exhilaration, with vivid details and cinematic shot \u2013s 1000 "} +{"id": "7004357", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "Man wearing 56 number green jersey,fire in all stadium,nights scene, "} +{"id": "1006436", "video_name": "75dd8b21-d474-5801-b2e6-1fd89448416b", "text": "Chipmunk, using his tiny body, supports a cat to hold a stroller "} +{"id": "2003929", "video_name": "d425f086-70f8-5dac-8aa3-8fc9560a5705", "text": "video showing worldwide online users competiting in online hide and seek "} +{"id": "3005554", "video_name": "55ade78a-16a1-5b58-bbad-be3b45e420a1", "text": "image of a tropical forest with cats crossing as the text moves away from the screen Message: Good Morning(Font: MODERN) "} +{"id": "7003919", "video_name": "285bd751-bb64-5338-b3fa-47a2adaf4c3e", "text": "the Shang Dynasty emerged as a pioneer of the Bronze Age "} +{"id": "1003411", "video_name": "3ef592d6-0741-5260-8870-9d728c84877a", "text": "Pixie Puddle and Color Creatures celebrating amid a magical explosion of colors, with one color missing. "} +{"id": "8003202", "video_name": "1af68ef5-3f24-5b90-bf7b-96c08bd6d7db", "text": "The classic video game characters team up to fight a new enemy that threatens the world. "} +{"id": "7002897", "video_name": "00e9e249-18fc-5b55-a0b4-1139a21d64f1", "text": "fearless\uff0cafraid Giant snake breathing fire attacks buildings in city Message: 3 (Font: COMICS) "} +{"id": "6002711", "video_name": "93fbb326-cf78-5b62-8932-b606f612d646", "text": "an young tall man with an suit and short hair holding an shiny realistic star in his hand "} +{"id": "6004160", "video_name": "0406137b-2623-5896-ba8e-5ffad2972e19", "text": "create a scene Two men are fishing by the village river and a third man is watching them catch fish. All three men are wearing lancha and banyan. "} +{"id": "3005857", "video_name": "58636cca-dde2-514e-b5a1-9adbd664dff9", "text": "A blond hair woman with a blue shirt leaving a brown hair man with a red shirt "} +{"id": "3003658", "video_name": "0311d1a7-2517-5a02-b446-e83f9d6d0337", "text": "Woman pushes off, beginning her street surf. "} +{"id": "3005564", "video_name": "5fff8491-a7a4-5f61-aaba-605204edabf4", "text": "A reunion hug filled with mixed emotions,cinematic shot, 4k, "} +{"id": "7002243", "video_name": "842f9d93-382e-5ebf-91ee-91a80063c05b", "text": "Tron style cylindrical spaceship achieving escape velocity flying out of earth into the universe "} +{"id": "3003004", "video_name": "ca9f3407-854e-5754-ad18-80c12ee704dc", "text": "Create an illustration of puzzle pieces fitting together, symbolizing how friends complement each other and form a cohesive unit "} +{"id": "8002567", "video_name": "94919689-f1cc-5073-82ef-87239163a2e6", "text": "the camera sees the Holy City, the new Jerusalem, coming down out of heaven from God. It shone with the glory of God, and its brilliance was like that of a very precious jewel, like a jasper, clear as crystal. realistic immage "} +{"id": "2003906", "video_name": "be0bde4e-2a9e-5344-953f-8023350e6458", "text": "moss covered lunar lander on moon "} +{"id": "1006469", "video_name": "766ccdd5-68eb-5107-ba02-8acfaf4bd879", "text": "Cinematic,ball of magic raises from the pages makes a giant explosion and creates a portal, 4k, sitting on a table, dark interior, wide shot "} +{"id": "1006215", "video_name": "71f50d83-975a-518d-94ff-e1b19498141c", "text": "Donald Trumps adventure season 2 part 2 leak "} +{"id": "1003551", "video_name": "4186fd83-cf41-5c51-9ea7-91e6bc2e21a7", "text": "Tractor Square Dancing: Drivers maneuver their tractors with precision, forming patterns and sequences that mimic traditional square dancing moves. "} +{"id": "6004309", "video_name": "6d819c0e-8678-54a2-8aa3-a53944dbffed", "text": "Jamie and Mr. Thompson gathering gardening tools \u2013 a shovel, a watering can, and a small tree sapling \u2013 with determination in their eyes. "} +{"id": "7002273", "video_name": "11eae792-af57-5ff5-aae4-b783f3c2bad7", "text": "A massive dinosaur soaring above the streets of a Chinese city. "} +{"id": "8002224", "video_name": "09243855-8d8c-5512-9879-3b1eae19adde", "text": "floral pond, close shot, lotus moves "} +{"id": "7002706", "video_name": "f81020ac-c45b-5caa-9f4f-c5cb2a2d65b8", "text": "airplane flying in a bright blue sky, people are falling from the airplane "} +{"id": "7004149", "video_name": "21f2f54a-8f60-52df-8277-13af0f978cba", "text": "A sinister audio visualizer with red sound waves. "} +{"id": "2006806", "video_name": "0f45f07b-7a5d-52b6-b3d4-a9218cec758b", "text": "Wide Shot: Establishing shot of the mystical forest. "} +{"id": "2007612", "video_name": "0694401f-d629-5017-961d-0d3ac508d80d", "text": "The secret garden in the valley, with animals playing happily "} +{"id": "4003068", "video_name": "682e2274-8156-51d6-a7ed-47e6dea606ec", "text": "Omar and Mohammad comically search for Faisal. Create suspenseful moments with playful banter between the friends, each trying to outsmart the other. "} +{"id": "3006829", "video_name": "004fe376-af7f-5c1f-a83e-c02f37796a85", "text": "The judge imposed a fine of 600 euros on Araujo, the Barcelona player, after he was sent off in the last match "} +{"id": "3003736", "video_name": "5a25f17c-49c2-522a-9f2b-d46c3fd8093d", "text": "maa katyayani, in baby form , in saree, traditional, with baby lion, pleasant face, four hands, lotus in one hand, hyper realistic, 4k "} +{"id": "0005808", "video_name": "2185890f-3c4c-5b98-8d17-e4003792daab", "text": "a cat shaking a red egg in a forest "} +{"id": "1006514", "video_name": "7738c7fd-c03b-514b-b78d-825d4ccd678b", "text": "the last bedroom light switches off leaving us in total darkness. Cinematic "} +{"id": "8002300", "video_name": "0824260a-dab3-542d-acd8-9e4ca1f00bcb", "text": "santa riding his sleigh over new york city "} +{"id": "4002742", "video_name": "b9350645-59c3-5498-8a63-a8f9e3c02994", "text": "Creating a yggdrasil with branches growing but from afar it looks like a brain in constant learning, with a deep root just like the brain connects with the nervous system. "} +{"id": "8002976", "video_name": "5badae2d-8ec9-52ea-b2f7-fd88a1e37651", "text": "Alice was walking home from school when she saw something shiny on the sidewalk. She picked it up and realized it was a wallet. She opened it and found a driver\u2019s license, a credit card, and some cash. "} +{"id": "1006785", "video_name": "7c5888f8-7309-51aa-8436-c29d235a47d1", "text": "A busy marketplace in the heart of the city. Bilal, an ordinary boy, stumbles upon a mysterious school known for its secrets. Intrigued, he decides to explore. "} +{"id": "3006612", "video_name": "38810524-e027-5809-84a8-2bdc1871eee7", "text": "the building is provitelstvo, people walk near it in good quality "} +{"id": "8001765", "video_name": "4726c98c-ffa3-5467-b8c7-ca4c5cc70ce2", "text": "a man walking in a dark foggy street, english houses style "} +{"id": "8002159", "video_name": "fc0bb1c9-ce16-5e1b-b539-90ea19916e47", "text": "a huge beige dense cloud in pitch black space, circular, organic, eerie, dark atmopshere, cloud "} +{"id": "2004940", "video_name": "bfe49ca7-9910-5cdf-aa81-b256d895bacf", "text": "The screen fades in to reveal glimpses of the characters "} +{"id": "4004304", "video_name": "baaa7b97-ee4e-5cd8-8a12-6da96196681c", "text": "John saw the 7 golden candlesticks Jesus "} +{"id": "3004262", "video_name": "eec2ae36-6f00-577c-8fff-c9a97a2b895c", "text": "nightclub in miami florida with urban crowd "} +{"id": "1004332", "video_name": "500191d6-7f2c-5577-bd40-dccb6500cfe1", "text": "haley make a heartfelt wish for happiness and harmony in the enchanted forest "} +{"id": "6004841", "video_name": "38ae8f27-a16b-53e9-968b-7d6e2edc625b", "text": "video about chennai city sinking in water due to climate change "} +{"id": "1006042", "video_name": "6ef90844-1aa4-515d-9d1b-345a0576ebd9", "text": "Overhead shot of a plate with portioned food groups "} +{"id": "5001998", "video_name": "0ace5fa2-3df2-5fde-a819-6dbc03028f1b", "text": "Sheepfold at night with several sheep "} +{"id": "0003973", "video_name": "00ec1135-1345-5c84-8f00-a6cce020e329", "text": "taking on the street boy and girl "} +{"id": "4002315", "video_name": "b71f5c59-f93c-5a70-a55f-f816a3aa1564", "text": "looking out of a window at a winter covered forrest sparkling in the sunshine "} +{"id": "6002068", "video_name": "885a9c1e-026a-50df-a5f0-e3ac6724ad8c", "text": "camera zooming out showing a modern style luxurious white villa with a pool next to an old slightly broken wooden house with a fence between them. "} +{"id": "3004013", "video_name": "45555f5b-2fbd-593f-9c55-b6751a316a16", "text": "The forest returned to its tranquil state, and the unicorn galloped away, free and unburdened. "} +{"id": "1005335", "video_name": "61fbbe7b-ea04-5bb5-8e2b-015b02c56188", "text": "A Human Hand Growing Eyeballs On The Fingers "} +{"id": "6004269", "video_name": "aa3b7ad0-df1a-523f-a884-7d3d282a622c", "text": "a goat with a backpack on a forest path carrying a small guitar, "} +{"id": "2007270", "video_name": "857641da-30ef-50b9-b9cd-99881a7b6a3f", "text": "The little ant looked around Message: 1 Attachment "} +{"id": "0003861", "video_name": "44c6e45d-68e9-5114-bf82-93a02dbbff74", "text": "Floating on sea waves on its background sun and clouds in cinematic 3d style Message: ThiRyaY NeE (Font: BAUHAUS) "} +{"id": "6003010", "video_name": "4407e7d1-51d1-5dc4-a804-316b5013a314", "text": "The victory or success achieved, often associated with positive outcomes,ram defeating ravan.hyper realistic,high definition,hd,super detailed quality "} +{"id": "6002136", "video_name": "ba64965e-9d75-5ab4-993b-2c24fca857cf", "text": "a funny cartoon character lion and rabbit in the top of the well "} +{"id": "7003887", "video_name": "fdaa08e8-dbd4-5522-b12e-00c2b7b3128e", "text": "The Egyptians\u2019 connection from the cradle to the sciences of magic and the work of talismans, and the actual reliance on them among the ancient Egyptians "} +{"id": "2003590", "video_name": "fbc262b0-3ae1-5cc1-8737-0be4088d0fc2", "text": "A man jogging on a city street at night "} +{"id": "1004668", "video_name": "56c5323a-6374-5811-90bf-63c5691cf7ff", "text": "Frantic shootout around device counting down. Agents dive firing in slow motion. Villain monologues as fighting continues. Will they make it?! "} +{"id": "4003256", "video_name": "0fcbc054-e4c5-5634-a9ac-a6f2fc06826c", "text": "captivating, mystical backdrop. It features a panoramic view of a magical forest shrouded in a soft, ethereal mist. "} +{"id": "2003644", "video_name": "bbf5a1f8-bf49-58fc-ba99-399da295e80a", "text": "squirrel runs and jumps through the trees in the forest.8k "} +{"id": "6002752", "video_name": "6177cf48-a99f-5abd-96fc-922129c425be", "text": "a video of a first person view motorcycle ride through twisty roads "} +{"id": "2006089", "video_name": "7de3b81d-387a-5a69-8940-f0ccd4e646e5", "text": "Angel seated in cloud waves storm "} +{"id": "3004481", "video_name": "f33d9a10-78b1-5b96-9477-0dd4d366af6b", "text": "george rr martin doing the finger snap "} +{"id": "2005498", "video_name": "f9a9d45f-fd7a-5a2c-9e24-e69857bf5a22", "text": "spain woman dance salca wear red dress oil painting "} +{"id": "5001777", "video_name": "b506e215-72da-571b-bca2-04b62732ef0f", "text": "Scene of Jesus approaching the fig tree during the Passover. "} +{"id": "4004930", "video_name": "a2a08230-954f-543e-bbd5-bfc8f811d2a2", "text": "a walk through ancient parthenon 1st person view "} +{"id": "1006985", "video_name": "7fc5df06-7c96-5217-bd10-5a05db4e05bf", "text": "Tokyo skyline at night, neon lights shining brightly "} +{"id": "1006220", "video_name": "7215f83e-0a40-51ab-b7b3-c7d272593109", "text": "trippy mandala rotating, planet eart with sunshines behind "} +{"id": "6004086", "video_name": "e4aece4f-9ca8-53a1-bf81-dd0e194d3eba", "text": "a picture of jesus standing in the clouds, jesus christ, the lord and savior, jesus, he is greeting you warmly, young almighty god, black jesus, god looking at me, dressed like jesus christ, god sun rays, holy sacred light rays, gigachad jesus, the one true god, second coming, heavenly light, portrait of a heavenly god "} +{"id": "0003796", "video_name": "4394987d-0bfc-50ff-b85c-efeb4a94d7d5", "text": "White tiger Dense forest Strolling Tranquil nature Sunlight filtering through leaves Clear stream Gentle rustling of the wind Flowers on the grass Melodious bird songs Mysterious atmosphere "} +{"id": "2006499", "video_name": "f7b7ba83-2736-5465-bc3b-460da5d66cdf", "text": "complete empty space at the same style Message: 1 Attachment "} +{"id": "5001911", "video_name": "5473d2ed-ece2-5efe-aba3-1a60a50a5838", "text": "A helpful electric eel who shares his power "} +{"id": "2003991", "video_name": "0c8f8bf3-54b3-5786-a6dd-a813f45c8411", "text": "in black and white newsreel style, nasa astronauts go bowling on the moon, in the style of black and white 1900s expressionist silent movie "} +{"id": "2003361", "video_name": "44d2183b-a561-59f6-93d9-79cccfb79d40", "text": "phoenix rising photo realistic digital detail 8k "} +{"id": "2006298", "video_name": "edf8b051-5680-5d2e-89ae-a0c2d4523417", "text": "Cartoon style: A black kitten walks with a waddle, Fluffy swaying to the rhythm "} +{"id": "8001098", "video_name": "98e467a6-1056-544e-a297-7e28ca9c2d0f", "text": "loki from marvel standing in front of a burning building 8k uhd Hyper realistic "} +{"id": "3005760", "video_name": "5fbfa14a-d95d-5924-b42e-68bc4e7e1209", "text": "A plane flying towards a tower and exploding on impact "} +{"id": "4002307", "video_name": "b400d5ee-d61a-51a9-8482-c30d1bdb6b4f", "text": "A 2015 Film With A Woman In A Pink Dress "} +{"id": "4003371", "video_name": "d6cf0db1-c4dd-5677-a7c0-111caa1e2db5", "text": "A magical book that is closed and then opens, its pages flipping rapidly. A light emanates from the book, and the circle of light expands , moving , animation , cenimatic "} +{"id": "1005412", "video_name": "6369fc1d-58e4-5610-9357-0ea6f8315574", "text": "car thieves in pursuit by police, sirens and flashing lights, paved street, Miami, beach, purple, pink, orange palette "} +{"id": "7002869", "video_name": "383f0540-0118-5634-a085-cf59c53ed897", "text": "A group of men in military uniforms sitting around a table, playing a game with ice cream balls and snowballs. Napoleon era "} +{"id": "4004675", "video_name": "d926ffd1-7006-5a70-97b1-d41e46e1c1c4", "text": "After a few years, Ghulam Muhammad became the owner of his business "} +{"id": "1003851", "video_name": "4700efc7-8b6c-516b-8a65-d5f771d01d33", "text": "draw beautiful chariot and then a nice chaioteer hops on to fron seat at night stars "} +{"id": "0004006", "video_name": "017d6f6e-e49c-52ee-a650-d6ea383ba17c", "text": "side scroll paper mache cutouts of a spirit rolling over the earth "} +{"id": "1003668", "video_name": "4381f2c0-8dcd-53ac-ac0f-cc3e4e382b46", "text": "A child standing and talking to his three brothers "} +{"id": "2006307", "video_name": "dc58d516-a583-5410-a80f-800451d697f2", "text": "a big bird in the zoo is in the cages "} +{"id": "4002153", "video_name": "dd584710-dfa8-50ff-a77f-099bae02aad8", "text": "beginning of a trailer about a submarine deep in the ocean 4k "} +{"id": "8003544", "video_name": "902a4455-9640-5675-8e61-eba29d561c35", "text": "a man looking like ville valo wears white shirt turning to the camera "} +{"id": "7004994", "video_name": "e0499e08-0bb9-5b3d-a936-c806c4ce190f", "text": "Panic set in as unseen hands brushed against their skin, and the echoes of tormented souls filled the void. "} +{"id": "0004251", "video_name": "05cfeb88-007b-503f-9b6b-f2e29b3fcb9c", "text": "beautiful for words, Alberto Vargas, Patrick Nagel , pop art "} +{"id": "0005747", "video_name": "2083f202-ea56-5f87-9a03-c816e9966de5", "text": "a beautiful girl shaking her figure "} +{"id": "3004116", "video_name": "50989ab5-5bb1-557d-98f9-cb7ba03a2209", "text": "a beautiful girl is eating apple "} +{"id": "3004158", "video_name": "ec17ea87-f4bd-568f-aa65-d1e572fdceff", "text": "little girl blinking, talking with City of Chicago background. "} +{"id": "8001327", "video_name": "8fa363f5-3e31-5ef0-a163-81c2eaa07075", "text": "cross section, earth, fullscreen, flat, texture "} +{"id": "2004134", "video_name": "b2a0a992-92b5-5e4c-aeb8-ec68f5b7dec1", "text": "4 elements fusion flowinng, slowmotion realistic "} +{"id": "5001723", "video_name": "72233f11-8766-5165-8436-7963d7dd1e52", "text": "show pigeon blue and red walking in flor "} +{"id": "6002379", "video_name": "2f53378a-59fc-573d-b3f7-d6ef2ad9e441", "text": "ufo flying over monument valley, hollywood movie scene "} +{"id": "2005367", "video_name": "9f5b228b-c32c-5ab1-bf2e-3980238c89bb", "text": "photorealistic, timelapse, dense jungle, withering tree Autho "} +{"id": "7004922", "video_name": "1495856f-f0db-552f-9d11-c5da5a543c44", "text": "Egypt, where skilled craftsmen meticulously carve a colossal obelisk from the bedrock. "} +{"id": "3006080", "video_name": "c70ff515-4af6-5d1c-be34-627f59ab6990", "text": "Voldemort dances the lezginka with Stalin "} +{"id": "4004184", "video_name": "5edcc76c-3fb6-57fa-b343-ee5ee1c82aa3", "text": "A man is walking upwards in mountain during snowfalling and birds are howering right in front of mountain also mountain should be golden reflection at one side opposite to that man "} +{"id": "3004838", "video_name": "a098c883-8f1a-5175-80c4-9cc4d52b9614", "text": "smiles, and plays with toys , looks around "} +{"id": "3004699", "video_name": "c9252a17-bb6e-506a-93ed-5d62649aae0d", "text": "zooming through the colourful alleys of the Gothic District Spain admiring the architectural design, sunrising, realistic, cinematic motion, high speed flycam view, 3d, neon colourful "} +{"id": "3006804", "video_name": "3a099a75-fced-5581-bde1-0246d1344437", "text": "HjHjHjHjFighting scene ,martial arts, speed, trained "} +{"id": "2006474", "video_name": "0189153c-6500-5a3f-a0e8-b968cc8ac4fd", "text": "anime , ancient dacian priest performing a ritual ,8k,ultra high ,vivid , vibrant colors "} +{"id": "0004327", "video_name": "073ff166-661c-533a-918d-8578e7bc3b77", "text": "modern RESIDENTAL BUILDING design by bjorn eagles, architectural photography, style of archillect, futurism, modernist architecture, sourounded bei green tall trees "} +{"id": "4002250", "video_name": "4769bb18-7f80-5ab3-9f85-0f08dc944ab2", "text": "twisted paths in a thick forest "} +{"id": "0004674", "video_name": "0d16640d-b6ee-5c79-87d0-b7753ce34922", "text": "dark clouds on a stormy night. rain and lightning "} +{"id": "2005545", "video_name": "58ed7d99-d8a8-56b5-b844-efc2d5290721", "text": "Seven crystals pulsating with light above the sea "} +{"id": "3006450", "video_name": "4a331c37-619b-55a4-95db-46a04b613628", "text": "Christmas tree lighting up, pixar style animation "} +{"id": "8001597", "video_name": "31250edf-cd37-571a-aadf-cc42a11a5f52", "text": "Real madrid players with wands casting spells "} +{"id": "1004438", "video_name": "52191aa2-8562-5218-9b17-2b346eb3af7e", "text": "Depict a scene where the shepherd, king, and queen collaborate to solve a challenge or dilemma, highlighting the strength that comes from their unique perspectives and skills. "} +{"id": "6004659", "video_name": "259ce1d3-b5c9-5de9-9c68-8378651ff756", "text": "scary masked man in a beautiful landscape "} +{"id": "7002197", "video_name": "ffd9db80-2711-5c42-8b76-90b783d5b0bc", "text": "Embark on the quest for the lost gems with Jack and Alice. Visualize them facing various challenges that demand courage, wisdom, and teamwork as they work together to retrieve the precious gems. "} +{"id": "1004004", "video_name": "4a1fec7d-7f27-5263-8eaf-4d204ecb5cb3", "text": "guitar strumming, foot tapping, hair blowing, camera pan left "} +{"id": "1003813", "video_name": "4668b102-d8d5-5f46-992f-58a05c7b2020", "text": "a intro scene where camera is moving towards the destroyed city , the scene after apocalypse, its dark , smoky . the camera is moving towards the base of only standing building in the whole area, "} +{"id": "5001966", "video_name": "d207e200-8d1d-5e39-bff7-c6cf84eb570e", "text": "Teddy decides to explore the secret path with Rabbit "} +{"id": "1006957", "video_name": "7f4c16ab-6469-59c3-9b95-c8c4fbd6d698", "text": "An old man siting in an empty room and reading a book,kodak tone "} +{"id": "1003124", "video_name": "3982b0db-6361-55b6-8f2d-ef35254a6a7e", "text": "a prosperous citizen in the palace eating together, 4k, cinematic, zoom in, ratio 2:1 "} +{"id": "7003766", "video_name": "0f248f1c-2520-589c-a7be-e2cfe221cae7", "text": "man workin in an ancient mill, studio ghibli style "} +{"id": "0005419", "video_name": "1a88a8bd-7417-537c-b11b-bd24053afb96", "text": "a giant tree with red leaves "} +{"id": "4002409", "video_name": "a9a9b2a9-14cd-5ac4-a403-cb08d0eae5d7", "text": "Transition to a dreamy sequence of the same character imagining their travel dream. Background: Beautiful landscapes, iconic landmarks. Facial expression: Dreamy, hopeful. Body movement: Gazing into the distance, smiling. "} +{"id": "7003181", "video_name": "40303c1c-ee34-536c-a9b8-88fbd7cb13d8", "text": "The rooster crows again, while the dog barks wildly. "} +{"id": "7002730", "video_name": "7508137a-3aa7-5acf-ad0d-d49b6fe93aa8", "text": "generate carousel with horses shot on camcorder motion 3, kinetic energy "} +{"id": "0006389", "video_name": "2baf0223-526c-5a34-8ad0-936a7ed8f945", "text": "want magic blasting against a magic barrier, bust of light, shattering energy, colliding waves of power "} +{"id": "1006743", "video_name": "7b7462ac-3935-5737-bb6a-ac76757117d5", "text": "bot in Marianas trench in darkness ,around fish sinisters "} +{"id": "4003733", "video_name": "15f5620f-1f35-5f92-84c3-d394a0ef7c66", "text": "Happily, the family enjoys eating cake together. "} +{"id": "4003491", "video_name": "07eff761-9034-5358-9937-3ebfc0e54017", "text": "This was a unique village of working in the fields, sharing moments of happiness and sorrow, and celebrating various festivals with pomp and show. "} +{"id": "4003906", "video_name": "cccaa417-97d6-5546-a2a3-18da2d0ab941", "text": "bridgette bardot in a retro mid century home in palm springs, 8k, cinematic "} +{"id": "3004741", "video_name": "1a5d5090-7622-5fcb-9f63-9e0ec699785c", "text": "top class athlete modelling futuristic sporting clothes "} +{"id": "8003241", "video_name": "ae8f675b-d004-53aa-beaf-e2b593345ac7", "text": "Fruits fall into a blender and are blended Format 16:9 4k and 20 seconds "} +{"id": "0003259", "video_name": "3a3bc6c4-09c4-55cf-81af-ad7e81ac06f5", "text": "a little girl is playing basketball. "} +{"id": "0006434", "video_name": "2c4286af-be42-5b39-ad28-4477891d1d24", "text": "Show an aerial view of the entire enchanted forest, with Ella and Bella surrounded by magical creatures and the sparkling streams. "} +{"id": "0004407", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "a women in leather jacket running, side view, medium shot, boom down, slow motion "} +{"id": "3003964", "video_name": "b0668f56-584f-5c1f-9bea-d6b8ff87e0f1", "text": "Leila and Ali help their mother prepare Suhoor. "} +{"id": "0003885", "video_name": "45300d36-f198-583e-bb1c-91e3e75caf1e", "text": "a war environment, mortar bombs exploding in the background, soldiers running, ultra realistic, hdr, realistic "} +{"id": "6004104", "video_name": "91955a93-abb5-5d69-8a53-9b5418b8425c", "text": "IU portraint with the background of the sea "} +{"id": "3003761", "video_name": "295518c9-9aff-5005-8635-643a426cefa4", "text": "Trust is hard to build and easy to break "} +{"id": "7002554", "video_name": "b07f6e24-381e-5d6a-9358-7b0712228611", "text": "Team Spirit lose Riyadh Masters 2023, tournament, dota 2, arena "} +{"id": "3003608", "video_name": "e6cd5e23-1f21-5e3a-a676-8571153f878e", "text": "Dacia Duster in front of the pyramids "} +{"id": "0005795", "video_name": "215d434e-8608-530a-b2c0-e68c8223079b", "text": "still movie frame of hitchcock film, color film, a cinematic shot of an aerial view of a downtown in a populated city, dusk is setting in "} +{"id": "4003691", "video_name": "9bb2db05-af13-5545-b93a-3dac50f31520", "text": "People go about their lives, unaware of the sacrifice Elena made. "} +{"id": "0005557", "video_name": "1cdbc83e-fc54-5b95-89d3-caf1524b77c4", "text": "a singer singing, forest in the background "} +{"id": "4003787", "video_name": "c528cd48-a56e-5eac-98ab-0c4751129584", "text": "a woman hanging from a cliff "} +{"id": "1004715", "video_name": "578357fe-d637-5073-9921-a0d03ff0dcaf", "text": "gold is coming out from a green farm "} +{"id": "5001040", "video_name": "36a98e47-4a01-58db-9415-e3119d967f62", "text": "young mage named Elara found herself at a crossroads between fear and fascination "} +{"id": "8002827", "video_name": "a5520545-071b-5fec-bc9c-fe71ac8eecf3", "text": "arjun and Maya holding the glowing Astral Amulet, showcasing its intricate design and shimmering glow. "} +{"id": "6004363", "video_name": "8ad1e284-acd4-5cb7-a4b4-618907f7c1ac", "text": "A scene of a man meeting with his 12 children and carrying his young son in his lap "} +{"id": "4002845", "video_name": "ff65b57a-3e1b-5fe2-a17a-cd84739acdd5", "text": "Man in green shirt walking towards camera with guitar "} +{"id": "6004577", "video_name": "5c3b072a-6d36-5368-bdfe-1cf7784026ef", "text": "The couple is play game at home, enjoying their time together in weekend "} +{"id": "1005641", "video_name": "67b644f5-d572-579e-b14e-822ce7cfbff8", "text": "doctor Sarah is very happy as patients around her is clapping for her. "} +{"id": "8003810", "video_name": "c76099d2-bf2f-5ca0-937a-833e0b467d83", "text": "one sports ball cartoon animated image with happy facial expressions and jumping , stock photo "} +{"id": "0004521", "video_name": "0a729ba8-2036-5bc1-9bdd-94eac4cf9b68", "text": "A Skelleton swimming in the Ocean "} +{"id": "3004288", "video_name": "bef75c36-2fea-54ed-8777-587b8d0c8677", "text": "create a soinning prize wheel like they have in Las Vegas "} +{"id": "6004766", "video_name": "e830e181-dd19-55e8-99c5-76feea2ecd21", "text": "a boy drawing the magic castle on a sheet of paper, his eyes filled with wonder "} +{"id": "6003282", "video_name": "793b7c08-0b92-5f73-8af9-9a849899115a", "text": "A front view elevation of guard house and subdivision gate "} +{"id": "2006584", "video_name": "228f0f40-1b40-5b59-bfe9-2fca3929dfdb", "text": "good year blimp, flash Ted flix "} +{"id": "5001287", "video_name": "66a51bb6-5dc0-5154-9f25-956a4758be97", "text": "a scene of shooting in a busy city "} +{"id": "7002478", "video_name": "d3d4ee85-809b-5feb-b743-4c2ac042a53f", "text": "beautiful anime girl with pink hair laughing at the beach "} +{"id": "1005830", "video_name": "6b278229-5fa4-595a-8d8b-8777142e9019", "text": "A brave young adventurer named Aidan decides to search for the mystery of the lost city. "} +{"id": "0004815", "video_name": "0f995604-a9e6-55f7-96f5-daf83150faf6", "text": "Indonesian woman talking to Timorese woman "} +{"id": "2007162", "video_name": "4bb0a5bd-ab63-5815-b343-1f6808fe40d8", "text": "one boy in a picture angle say your are a protector in a magical world "} +{"id": "0004662", "video_name": "0ce1362c-ef70-5297-8e25-790d868a2ed3", "text": "make a vedio a fishing man "} +{"id": "0006900", "video_name": "35021bb1-f2e1-5008-994a-76a0279b0af7", "text": "1970s arthouse film in japan at night, wong kar wai vibes, falling out of window "} +{"id": "3006661", "video_name": "a4de932b-754e-593a-9567-79dab7698923", "text": "two friends one is unicorn and other is a cat in vibrant colors "} +{"id": "7002337", "video_name": "f7f0a564-e546-5b3f-a97c-f6e9eee0c675", "text": "a 22 year beautiful girl in temple stairs "} +{"id": "1005614", "video_name": "673aa691-38be-5d60-b262-127bae05bb12", "text": "flat earth with life and Sunset "} +{"id": "0006335", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "hanging paper in the middle, with nothing on it, cartoonish, next to it a pencil "} +{"id": "6002319", "video_name": "62066730-3e6e-5dff-a667-1ccc6971a8b0", "text": "books in a big library Message: estudia (Font: MODERN) "} +{"id": "3004807", "video_name": "4fa57ec4-5952-55e3-9fa8-3484b3b9e463", "text": "robot soldiers riding on velociraptors chasing down children "} +{"id": "0006868", "video_name": "34790e10-28ad-5e79-848f-0063230d336c", "text": "The rabbit and the turtle adventures, and unforgettable memories. "} +{"id": "0004955", "video_name": "1230f83b-ce2e-5d9a-9548-71959fdd5a61", "text": "city, house, building, tree, rivers, lots of fog, anime style "} +{"id": "6002211", "video_name": "60e14158-6fa8-5dce-b4df-cbc6c10861e2", "text": "deep green jungle there is fire in sanke mouse "} +{"id": "8003300", "video_name": "9f9a2c4b-ac04-5f31-aa24-3555edd56ddc", "text": "Create a video depicting a task in which I describe a scenario in English, and you create a video for me. I want the video to be in the style of a Harry Potter movie, but as if it is a commercial for tomato beer. "} +{"id": "2003841", "video_name": "9aa44c56-b8f6-5491-a2fe-9a48c4ca797c", "text": "a highly detailed horror scene in nepal "} +{"id": "3003011", "video_name": "9a069b03-1201-5547-95c7-45cac9bd24dc", "text": "optical illusion depth of field trip vaporwave driving fast "} +{"id": "3006680", "video_name": "17bc7e93-33f1-5f85-9b5a-c7d29966d77f", "text": "eagle with open wings feeding its young with its beak in the nest on top of a cliff "} +{"id": "8003187", "video_name": "46525c9b-cd28-5d37-8a9a-51f43dbd62b9", "text": "pretty model drinking champagne in a limousine City at Night. Neon "} +{"id": "4002085", "video_name": "1b5b1d45-d0ee-51c7-9d61-a3bf0ef41826", "text": "Transition to the stunning Ram Janmabhoomi temple. "} +{"id": "0006233", "video_name": "28d3b634-95d9-5882-9fc1-57cc2af53f94", "text": "Luna, a girl with dark hair and a curious smile, discovers an ancient shiny key in the attic of her house. "} +{"id": "8002194", "video_name": "0fa7eb34-1a49-58d1-baf1-168e76dad889", "text": "a bluebird transforms into an X "} +{"id": "2004842", "video_name": "95cf435a-6da7-558b-bad3-0e499b66803f", "text": "a cow in the orbit of earth "} +{"id": "8001494", "video_name": "47e79d33-5f13-5120-9cde-d98ef50e0732", "text": "the golden gem emitting an ethereal energy, with mystical words of warning echoing in the air, appearing as a ghostly voice over the jungle. "} +{"id": "3004861", "video_name": "dfb4faf1-1c72-523d-b08f-056df12f0ddc", "text": "The wind dropped, and the sky immediately grew dark. Then came a growing roar, and an enormous cloud towered aft of the ship. With horror, I realised that it was not a cloud, but a wave like no other I had ever seen "} +{"id": "3006763", "video_name": "64b34ccb-37d6-5c73-aa69-d3a44a70533f", "text": "close up of snake in the grass in the Alps in style of anime "} +{"id": "1003027", "video_name": "3790ce43-280c-5362-b0f7-1c3fbe32990a", "text": "80s medieval live action fantasy shot of a dusty desert from where far in the distance a great stone colossus dominates the skyline "} +{"id": "7003542", "video_name": "fe95271e-fdcc-54e2-816c-2a32ca28260b", "text": "top view of a beautiful village "} +{"id": "0006020", "video_name": "2523eac9-8655-5e58-a312-aca77c7aa35b", "text": "a cool animated manly scientist standing on roof looking up in the sky wearing a long lab coat "} +{"id": "4004894", "video_name": "f0682964-4638-5946-83bb-26059ba80826", "text": "tidal wave of people human bodies crashing splashing splattering splashing visceral visceral ultra lifelike hyperdetailed intricate elaborate detailed MAXIMALIST realism unreal engine 5 "} +{"id": "3004374", "video_name": "fa78446f-6d92-5aaf-9078-50cf5673be2f", "text": "Grimace sipping some lean in a party cup "} +{"id": "0006292", "video_name": "2a1be880-9037-57b5-887a-983e433d286a", "text": "A dark background , Big Black candle lightning the room, zoom in camera movement "} +{"id": "0006427", "video_name": "2c26514a-27a2-5687-bd58-7be0fe1ac0fd", "text": "The emperor is on the dragon throne, his hands are moving "} +{"id": "0003962", "video_name": "00a9073a-d37c-56d8-9924-a7b24a12f036", "text": "show the end of the world "} +{"id": "1004151", "video_name": "4ceeebd7-f19f-5e49-817e-eed3ba3a9ea9", "text": "a group of friends leaving the bar "} +{"id": "1006336", "video_name": "73fabb03-0655-577d-b449-8754627ab27e", "text": "A funny girl cartoon character sleep in the moon ,4k , cartoon ,art, 9:16 ratio. "} +{"id": "3006967", "video_name": "caee39fa-5f8f-570f-85e0-0bbcc618456b", "text": "Craft a celestial scene with the word of Allah written above the sky, radiating divine illumination. Utilize artistic techniques to convey the spiritual essence and sacredness of the moment. Ens "} +{"id": "1003698", "video_name": "4432b882-2996-5ec2-8f0d-a3505c0fd5a4", "text": "the word DOGO in the new york city, view from a drone "} +{"id": "7002369", "video_name": "c9ebdd04-aecd-5440-b53c-dccf1466fcea", "text": "Ghost marriage, Chinese wedding, horror, weird, thriller "} +{"id": "6003655", "video_name": "47c2ea37-53bf-587b-b189-17c3707b3629", "text": "A car is driving on the road, with a background of a small town and vast farmlands. In the evening, there is a sunset and a few scattered clouds in the sky. "} +{"id": "1003984", "video_name": "499b2416-fb44-58fd-887f-ec7bf433db65", "text": "CARTOON image of bankruptcy and company in chains with debt "} +{"id": "0004762", "video_name": "0edb5416-6738-5565-9c9b-77bbb1e97c30", "text": "a dog singing on the moon "} +{"id": "8003684", "video_name": "3423527c-038d-520f-917f-4d684fb594a8", "text": "studio ghibli style, animated boy, cats, flowers "} +{"id": "2004674", "video_name": "beba1592-bd46-559d-9b48-d93175cb813f", "text": "The cavalryman whose horse reared up "} +{"id": "2006491", "video_name": "c04c2000-1eac-5270-a42a-e15884d2d83f", "text": "A cinematic shot from a movie directed by Zack Snyder. Drone view of a woman with a sword during winter. Filmed by a Blackmagic URSA mini pro 12K camera. Dramatic lighting, snowy "} +{"id": "7002551", "video_name": "64ccc455-5374-5017-99ac-6d9b8bf5ad46", "text": "Woman holding a glass jar near the chest "} +{"id": "0006291", "video_name": "2a14cc3f-1d18-58b9-8336-c236719bfb96", "text": "The cat disturbed the two rabbits "} +{"id": "6003110", "video_name": "897ffd36-8f0e-5976-a112-b762fb91f037", "text": "A futuristic street with lots of signs downstairs with people walking around in the snow. "} +{"id": "7004416", "video_name": "94663361-d2ff-5e4e-aff2-54bc694ceb64", "text": "smooth wind, The leaves and branches of the trees and thatch sway in the wind, smiling, ultra hd, 4k, 3d animation, pixar style, disney style "} +{"id": "4004756", "video_name": "046a6250-5fdf-5c8e-930a-cc0c1e9aba14", "text": "a social media influencer taking selfie in front of temple "} +{"id": "2005506", "video_name": "a8e4ee28-287e-5a84-a30e-89935c151c4a", "text": "kids pulling big colourful spiders ,3D "} +{"id": "0006109", "video_name": "26bd8a08-402e-59d0-9294-da59047d225f", "text": "girl moving her left foot forward just one step while the other foot remains fixed in the place it is "} +{"id": "1003100", "video_name": "3911db90-9a0b-5df9-9c94-823a3561ff4a", "text": "cinematic of the fall of the bride with the cake at the wedding 8k hyperrealistic "} +{"id": "6002316", "video_name": "7aa4756f-ac07-581a-8467-c8b4894b9e09", "text": "indian woman outside a brilliant temple, in a red saree with wind gently blowing. "} +{"id": "2004103", "video_name": "c8246580-cc5a-52b2-b148-aaf7359b344f", "text": "Chinese ink painting animation clip, a horse running in the waves "} +{"id": "1005814", "video_name": "6adffe01-0c9b-5fc6-a3c2-9f1ae03aee38", "text": "foot Bath, beautiful foot Bath hub in Turkish style, feets in water "} +{"id": "6002701", "video_name": "e4d492b6-d330-5581-a79d-9f2b8fcf46ff", "text": "the 8 children in their cozy pajamas rush out of the room together, heading towards the living room "} +{"id": "3004371", "video_name": "e8591678-bca3-57b7-b08a-fe7e67ccb3e0", "text": "The happiest man in the world "} +{"id": "8003440", "video_name": "1a2153b4-0c6e-5f37-85df-2135eda4da95", "text": "two mouse are eating grass and one cat are watching "} +{"id": "1006245", "video_name": "7261d4cd-860d-5b88-b922-5e2129cf8aa6", "text": "Robin hood and marion sitting on a log in the forest "} +{"id": "2004926", "video_name": "fb2ac072-f7e5-5a8a-8bda-3d6a5829375d", "text": "a cute cartoon racoon running to left "} +{"id": "1005436", "video_name": "63e7bcf2-2558-5661-8a5a-a6f0f914cd13", "text": "a man with a fishbowl as his head plays a game in a crowded Tokyo gaming arcade. The scene is futuristic and cinematic with neon lights. "} +{"id": "3005687", "video_name": "862944da-a6d3-5379-b05c-d03a6285a14f", "text": "a lovely Asian teenage girl walking on a street "} +{"id": "7004973", "video_name": "c98eca26-9cdf-5a41-b6bd-c5de44dc9060", "text": "a family running in a park "} +{"id": "0004438", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "attractive waitress pouring an endless cup of coffee in a 50s diner "} +{"id": "6003310", "video_name": "6d98d0e4-9691-5507-975a-c19c045b2f3b", "text": "Oliver and Mrs. Fox planting together "} +{"id": "8001860", "video_name": "c4699652-ec67-533b-a28b-64c4fd91bbd7", "text": "a border collie running towards a robot sheep "} +{"id": "8003209", "video_name": "612dfede-0e9c-571b-ba8d-5e8facc4d18d", "text": "back view, cinematic, realistic, young black father and son fishing, pond background "} +{"id": "3003806", "video_name": "688eabab-0490-52f9-9d7f-5a1491f71115", "text": "drive throu a hi quality futuristic city, with flying cars, solar everywhere and hiuge skyskrapers with lots of plants, show it in a particle absed motiongrafics style "} +{"id": "3005205", "video_name": "2d6bdb7d-38f0-5e98-a450-be06e7155d87", "text": "A boy and a girl, a couple, wearing white clothes, running on the beach, romantic picture, glowing stars, amber and white, charming style illustrations, cartoon images, masterpieces, HD quality, "} +{"id": "1005072", "video_name": "5d9461ca-615a-52cf-b787-522fc19b2a1c", "text": "Working alone in a very comfortable environment "} +{"id": "8002896", "video_name": "8ad648eb-3e98-587d-9e6c-e66cd802bff0", "text": "boeing 777 300er cruising above atlantic ocean during the sunset "} +{"id": "2003693", "video_name": "34f1f53b-b5aa-5b46-b057-037843a28765", "text": "camera pin left to right loom in "} +{"id": "0005332", "video_name": "18f110d8-03d9-5d57-8027-39c9f7997b42", "text": "a burger moving in the air, animation, 16:9 "} +{"id": "1005739", "video_name": "699dc074-a199-5ca6-8536-0ed915d49396", "text": "a green emerald from outer space is spinning around its axis "} +{"id": "3006243", "video_name": "649ed1b3-ccad-59e7-b6b2-00e72058c8c0", "text": "a man grabbing the thermometer with his cold hands, fast paced, animated, zoom out "} +{"id": "8003924", "video_name": "81f5b7d7-addd-5b9b-a38c-a197505aa5e1", "text": "Sheep with rainbow coloured wool, photorealistic, 35mm lens, filmic "} +{"id": "6002868", "video_name": "f8ba03e4-7fa3-59b1-bf0b-ae982fb34ff1", "text": "a greenary full village surrounded by mountains "} +{"id": "4003872", "video_name": "20f005b2-d1a9-5ca3-a414-4995f55a294a", "text": "From ancient times to the present, multiple iconic photos flash in historical chronological order "} +{"id": "7003858", "video_name": "d154c842-e2c6-5ae1-992d-2ca1bd45bec4", "text": "trees in a forest encroaching on a hiker "} +{"id": "2006982", "video_name": "7018cbac-de4c-5ced-ae1f-acfdb737af01", "text": "an anarchist group watching a bank explose in background "} +{"id": "2005715", "video_name": "60d81bce-9567-5092-a14b-c2009833144a", "text": "Create a scene where the whale is jumping in the sky and a rainbow appears after it jumps "} +{"id": "2006658", "video_name": "10509696-4a4c-570a-a289-aa0839082e05", "text": "a man with a metal detector walks along the beach, 300mm camera, with the sea at sunset in the background "} +{"id": "7004754", "video_name": "48eff76e-7b8d-56ed-b7f1-66e7dd1ae830", "text": "Low angle of pouring beer into a glass cup. "} +{"id": "4002420", "video_name": "4333fc77-73bc-528d-bd1c-0dad8929b61d", "text": "Mustafa Sallallallahu Tasleem and Harish Trivedi, as they draw an analogy between human greed and the coexistence of hungry wolves and goats. Craft a composition that explores the profound message embedded within their words. Reflect on the notion that the insatiable desire for wealth can be as destructive as hungry predators among innocent goats. "} +{"id": "4004604", "video_name": "5ee182a7-55fe-594d-8ced-78cf51ed5f3d", "text": "Thankfully, a Royal Navy rescue party eventually located and rescued them. "} +{"id": "8001209", "video_name": "7a755e0b-34ec-5c2f-8992-b378329f42c8", "text": "vines super speed growing over a city "} +{"id": "3005156", "video_name": "4e85ac5f-d194-51ba-9d41-a2babde76ddd", "text": "The character is speaking with their mouth open, and the logo welcomes everyone "} +{"id": "1006948", "video_name": "7f28d1b6-7aea-5bf7-99da-e7efbaa78f23", "text": "an animation film about Dogon religion performing the Sigui "} +{"id": "8002147", "video_name": "c0d783ba-84f6-5cc8-a003-17fb9d865083", "text": "anime agirlnamed Shreya crying at.her bed "} +{"id": "7002147", "video_name": "78458405-fb54-5eea-9636-c2397c804806", "text": "In a Japaneses comic stely, a student searching information on the computer. "} +{"id": "4004557", "video_name": "99a1e4f8-197f-57ec-86fc-8c82fcda54c1", "text": "Rajinikanth standing on a Eagle, eagle flying, hyper realistic,4k,HDR "} +{"id": "3005100", "video_name": "4275bdc2-4f63-5449-aaaa-2d129aac3378", "text": "A bustling night market in a futuristic city, illuminated by neon lights and filled with exotic aromas. Leaving the forest, Nova found herself in a futuristic city bathed in neon lights. The bustling night market greeted her with exotic aromas and holographic displays, creating a sensory overload of sights and sounds. "} +{"id": "7004877", "video_name": "4fcd038e-aaed-5be4-9469-aa92dfb88a50", "text": "Djokovic animated is laughing Message: 1 Attachment "} +{"id": "1006660", "video_name": "7a04d303-8d7f-5384-9dcc-f0bea3394a41", "text": "autumn forest, girl in red cape walks through mud "} +{"id": "2007251", "video_name": "5fe0d328-3971-5cb9-a864-70f26507843f", "text": "robots on red square in Moscow "} +{"id": "2005073", "video_name": "52bf2934-31df-5775-bc00-2f7a94f66b8c", "text": "Two lions are fighting on the top of a mountain hill. One lion drop down the other lion from the hill and the fallen lion died. "} +{"id": "2007968", "video_name": "a4d4dedd-2a78-55da-be89-c2f3f3857513", "text": "mother Aditi starts worshiping, wishing to have a son. After this worship "} +{"id": "6002858", "video_name": "106dfc49-eb16-593a-bc07-11878731308c", "text": "Looking out on no mans land at night through a broken window, night, haunted village, Ukraine, Bakhmut, Krematorsk "} +{"id": "4002010", "video_name": "650964c6-b389-5002-bb2a-6dbbda7fbb76", "text": "a horror movie being projected onto a wall "} +{"id": "6003101", "video_name": "126ee6ff-34af-5802-a1fe-98f3bade7788", "text": "image of a cave under the dark earth "} +{"id": "8001231", "video_name": "d8e47e54-9e38-5cb7-bd39-ea7f7fd040be", "text": "award winning medium shot of a clock ticking, arri alexa series, cinematic, ultra realistic, 4k "} +{"id": "2003690", "video_name": "b55fda45-c274-59fd-aa08-6ce0e5c413fe", "text": "Create a monkey jumping from a snowy mountain and hanging from a vine hanging from the sky "} +{"id": "4003213", "video_name": "c1d2e9f1-26d8-5a3d-af3f-939ad71129cf", "text": "(a small piebald cat) is wearing 17th century cavalry uniform and riding (his steed a fluffy gray tabby) majestic cinematic "} +{"id": "2004830", "video_name": "204bc28e-4385-5ff2-87c0-3e7aabb47b66", "text": "A boy and a girl are lying on the ground with their eyes closed. Black and white palette. "} +{"id": "2005753", "video_name": "246e45b1-beda-5bde-9e8e-312d8d490793", "text": "Frozen Elsa, Disney Movie Poster Design, With the Crown Snowing,Inspired by Disney, Glowing Effect, Detail Shot, ECU, Cheong Sam, Long Skirt, Cowboy Shot, High Detail,Unreal Engine. "} +{"id": "2004249", "video_name": "b0202780-edd7-5176-9be3-22803ff64e65", "text": "The shaman is preparing a potion to increase vision. They may be scared because it is very strong. Our tribe will protect and care for you if necessary. Fantastic realism, volumetric lighting, Canon EOS 1D X Mark III "} +{"id": "2003935", "video_name": "3659b64d-25c5-5c09-ae22-100cba7fd412", "text": "Man sat in field with his head in his hands on a sad day, he is wearing a suit, ultra wide shot from above, small town on the horizon, cold, cinematic. "} +{"id": "6003490", "video_name": "de98b303-4637-52b2-a229-dab04806f65a", "text": "a young woman walks towards the educational building, the building is visible in front, trees grow along the edges of the path, the day is sunny "} +{"id": "0006367", "video_name": "2b46c5e7-72a9-5067-bb79-dc326329bcd5", "text": "Florida getting hit by an asteroid, highly realistic, highly detailed "} +{"id": "2006495", "video_name": "16b4e503-457b-59d7-b59d-d234aa20be9f", "text": "Watch as the futuristic character in the photo comes alive, gracefully lighting a cigarette with cinematic flair Message: 1 Attachment "} +{"id": "2006735", "video_name": "a2c1af50-bfe6-55cb-8f96-bb8e0dea5479", "text": "wearing an roman helmet centurion in roman period Message: 1 Attachment "} +{"id": "1005620", "video_name": "674f088a-0085-51c3-a796-1cf9b0090c1c", "text": "two sailor scouts action characters, anime, posing smiling, "} +{"id": "0003690", "video_name": "41bad58f-50db-5e81-8c50-44072c8125da", "text": "a romantic beach sunset walk, with the lyrics reflecting the intense connection between two people., Hyperrealism, reflection light, depth of field, lens flare, overexposure, anatomically correct, high details, 1080P "} +{"id": "1003725", "video_name": "44d2c854-7595-5fe7-a488-8d172c451256", "text": "A video showing the scale of the entire universe. At first starting from a single atom, then slowly zoom out to a cell, then slowly zoom out to a human, then slowly zoom out to the planet, then zoom out to the solar system, then zoom out to the galaxy, then zoom out to the galaxy cluster, then zoom out to the observable universe. "} +{"id": "2004213", "video_name": "589c48f4-e0e8-5684-9082-cebf6f9c1db5", "text": "an image of a girl studying in her room, in the background in the window you can see that it is snowing, the girl has a cup of coffee on the table and is listening to music with headphones and there is a cat next to her. "} +{"id": "5001928", "video_name": "3a3b5046-2767-5fa3-8c75-3cff7d3ad45e", "text": "a food truck in italy serving tacos "} +{"id": "7002509", "video_name": "4e5d2205-db81-5ce4-9525-1cb0e5ff9ba7", "text": "a squirrel with some rabbits in jungle "} +{"id": "6002388", "video_name": "84a6a3d4-d2ab-537d-a05d-884a9bc7beb9", "text": "100 marbles rolling on grass, fast, quick, energy, kinetic, high motion, high detail, realistic "} +{"id": "2007576", "video_name": "2fbe6902-becf-57f7-b501-0d287cb84540", "text": "pile of shoes Message: 1 Attachment "} +{"id": "0004234", "video_name": "058b06a7-6f59-5794-9bc1-343c9d51a804", "text": "cowboy in an abanden town in a desert "} +{"id": "8003429", "video_name": "a84854fb-a29a-55c7-9fd2-61f1ac5912a7", "text": "A world filled with fire and smoke "} +{"id": "8003433", "video_name": "cf4e4146-6dbe-58c4-b366-26c872aa4842", "text": "climbing down the leader towards the sun "} +{"id": "3005819", "video_name": "6884c3ee-cb5e-5254-98bf-2cada72b4b0e", "text": "lasers flashing in background, wind swept hair, couple turns to face each other. "} +{"id": "2003922", "video_name": "a46dd462-4923-5699-834d-8f9215048744", "text": "welcome to cotton candyland theme park with a spokesperson commercial "} +{"id": "0003026", "video_name": "35c81627-9f2c-516a-a886-09f166db757b", "text": "star wars spaceship floating through space "} +{"id": "6004301", "video_name": "07187851-b42a-5af6-90df-064c5a823edc", "text": "I need a cyberpunk style, the character\u2019s image shrinks, the camera zooms in and out. Message: 1 Attachment "} +{"id": "3003982", "video_name": "198acd83-5984-5a9e-bc1a-fb85665b9ca9", "text": "create a video game maintenance technician by arranging a video game on a counter inside a store "} +{"id": "8002065", "video_name": "99350c6b-e50e-5d24-bde5-4e03c045894f", "text": "two best friends riding a roller coaster, going through a loop, one smiling, one screaming "} +{"id": "2004619", "video_name": "b1f01d59-f255-545f-b60d-a620f2bf68a1", "text": "dark night of the soul, zoomed out, in distance, highly detailed, highest quality, pan out "} +{"id": "6004929", "video_name": "0d556e01-7e62-54fa-a8ca-0d6dd16bb355", "text": "The brand of the SKY container Hotel that designed the ski resort "} +{"id": "2007919", "video_name": "022d6d04-746d-5a63-bcfd-8dbdfc3215af", "text": "Anime line art color drawing, digital illustration of anime style, soft anime tones, chicken sitting on tree , and beautiful face, (full body), beautiful chicken , colorful colors, Vivid colorfulchicken , turquoise eye, luminism, three dimensional effect, luminism, 3d render, octane render, Isometric, awesome full color, looking down at birds, delicate and anime character expressions, "} +{"id": "7004216", "video_name": "b77528c1-68d8-5ff0-8fc6-9b3632237ef8", "text": "Make more designs with the same style from this image Message: 1 Attachment "} +{"id": "0005025", "video_name": "1363303e-d0b2-5aca-aba8-19647ec95f91", "text": "a bride walks down the aisle in a large cathedral toward her soon to be husband "} +{"id": "0003880", "video_name": "45101587-5eba-553f-84cc-f3fbb99ad43c", "text": "Scene of a person looking out the window at dawn, symbolizing the opportunity that arises after overcoming challenges. "} +{"id": "3006620", "video_name": "d9abbddb-7f6e-52c4-b958-1a9e98c2fdb3", "text": ": a women sitting alone on a park bench, with a melancholic expression, representing the feeling of unrequited love, leaves falling from the trees, 4K. "} +{"id": "0005486", "video_name": "1bac7314-edd7-5c0f-aa69-a6fb8af6da21", "text": "A group of teenagers accidentally enter the mysterious area of the old house "} +{"id": "6003107", "video_name": "419790ed-df61-5482-b6c8-d59a26d3781b", "text": "People dancing and drinking beer, beer garden party in Munich, cinematic movie set "} +{"id": "3005858", "video_name": "00b4f7d9-5525-5609-b8cc-6ba1f545e349", "text": "mad max car in europa country "} +{"id": "3005056", "video_name": "c65915c2-65e3-5d81-8cf1-ec065235199e", "text": "Show a brief scene where Mickey Mouse surprises Goofy with a birthday cake. "} +{"id": "1003701", "video_name": "444b08cf-1bdb-5fe1-8996-33213abb6c7b", "text": "Anime girl looking at the camera, holding a sword. There is a dragon behind her. "} +{"id": "2006075", "video_name": "3abfb4ae-84e0-598d-9951-bfac8f8b5383", "text": "a bright colorful galazy with gradient shinning light zooming in to detailed sparkles throughout the sky "} +{"id": "0006782", "video_name": "330fd0d7-e43b-5d79-a7e9-e3c76cdb9960", "text": "guy fallen on snow, with gears "} +{"id": "7002930", "video_name": "1fc7372a-e8c8-5f4c-943d-efca4b344c28", "text": "video game character stylized low poly a bearder trapper firing a musket "} +{"id": "1005454", "video_name": "643a2823-b4b7-5a8f-9a5e-aa1771d9521c", "text": "a drone capture of a mountain peak "} +{"id": "0003688", "video_name": "41b51b25-d3cc-5c03-a212-499ae590e666", "text": "man in unbuttoned shirt at Beach, close up photograph, unbuttoned shirt blowing in the wind, nice body, intricately detailed, 8k resolution, HD "} +{"id": "7002263", "video_name": "df259e4b-44fe-5c8c-b7cf-bd3bd69abdc7", "text": "muscular man, Inca, with lightning powers "} +{"id": "3004936", "video_name": "044a697c-dec2-5ae5-b982-4efd620bec49", "text": "Brushes sprouted from the branches, 16:9 "} +{"id": "8001969", "video_name": "fbd36d51-8190-5b3b-b777-80d48be26263", "text": "Generate a detailed video animation prompt portraying the captivating scenes from chapters 4 and 5 of the Book of Revelation. Envision a celestial throne room with vivid, otherworldly imagery, including the four living creatures and the elders. Transition to the moment when a mysterious scroll is introduced, sealed with seven seals. Conclude the animation with the intense anticipation as the Lamb, symbolizing Jesus, takes the scroll, setting the stage for significant events. Incorporate atmospheric music and visual effects to enhance the narrative impact. "} +{"id": "6003007", "video_name": "2953d761-581f-5469-bfa6-cd1fc055a510", "text": "what do you mean by best quality? "} +{"id": "3005797", "video_name": "7438cb1c-a0f6-5be8-b581-cd3af01dab38", "text": "miami little havanna medium distance, people walking past, timelapse style "} +{"id": "7004713", "video_name": "df4b85b0-fedf-52b2-b60e-ffa260b658c6", "text": "In stunning 4K resolution at 24fps, Black Widow, deep undercover, infiltrates a secret Hydra facility. As she navigates the facility, the camera captures her every move with precision. She uncovers a shocking Hydra plot and must make a daring escape. Describe the intense action and her strategy to relay crucial information back to SHIELD. "} +{"id": "0004513", "video_name": "0a4d0ce2-8b90-5409-98da-a98cc46c363e", "text": "mother nature wearing a veil in front of a cross headstone in a graveyard full of vines "} +{"id": "3006036", "video_name": "386a3d4e-063c-54d8-9f11-8fef2793cc70", "text": "An old red pickup truck. Cartoon style "} +{"id": "1003215", "video_name": "3b355a72-3e7e-58b1-95d9-4842d171370a", "text": "two nurses are talking to each other in a hospital "} +{"id": "1006079", "video_name": "6f7c1b8f-de15-5f40-afc5-7a47464feaa8", "text": "a man in a suit washing his hands in a field "} +{"id": "1003088", "video_name": "38d7f551-3426-5dff-b49b-9d2743304a6b", "text": "Tajra Zerina Mini Short Tears flowing from the eyes of beautiful Sushil "} +{"id": "1005338", "video_name": "620a9a4c-5d3a-5cfa-87b6-e57f9393948f", "text": "a lump of mold swarms and branches out from a white background "} +{"id": "8001678", "video_name": "4798aa0a-90d3-5997-be03-75b056db0975", "text": "DVD screengrab , 1980s film , dimly lit , 35mm , realistic , antropomorphic blue rabbit stylized after fnaf wearing a purple vest and purple trainers coming out from a dark place with a knife "} +{"id": "5001570", "video_name": "fe8738b4-01de-5731-ac4b-236196b30da7", "text": "a man running to words lion "} +{"id": "2005410", "video_name": "2e5da339-d540-53d0-9543-72e3bdbfae39", "text": "bird of paradise flying above a volcano "} +{"id": "4002059", "video_name": "c6f1a8c7-8d84-5e48-8d5d-f7daf98203e9", "text": "grandfather shows his granddaughter an old analog camera while sitting on the carpet in a country house "} +{"id": "1006915", "video_name": "7e6f0ccb-8abb-549c-974f-c8bba1ca40ec", "text": "close up shot of alien, zooming in, 4k, cinematic, blue shades "} +{"id": "1003249", "video_name": "3bcc5a3e-82c9-5968-a842-1dbd8537ed1d", "text": "The purpose of studying finance is not to make money, but wealth will come with studying finance "} +{"id": "3003911", "video_name": "51858881-b558-502c-9d8a-54af7434f61e", "text": "Girl walking on the beach, blonde hair, blue eyes "} +{"id": "3003012", "video_name": "156882ab-3ae6-5770-b1f7-2e18c5a475b7", "text": "an image of a friendly artificial intelligence smiling and waving to the children around it "} +{"id": "4002351", "video_name": "163c8e29-2b05-5c94-b317-c613bd733743", "text": "A giant car in a city street "} +{"id": "4002007", "video_name": "5df879a8-1530-5041-a10f-e751c92ef4c0", "text": "Lights, camera, action\nIf he likes me, takes me home\nLights, camera, action\nIf he likes me, takes me home\nLights, camera, action\nIf he likes me, takes me home\nCome on, you know you like little girls\nCome on, you know you like little girls\nYou can be my daddy\nYou can be my daddy "} +{"id": "2007448", "video_name": "190bb443-934d-5427-9982-94f5c944e500", "text": "man kneeling hand raise in the dark room "} +{"id": "2004779", "video_name": "626474a2-2d3c-54a6-a012-21f71a69c630", "text": "edm music producer playing synthesizers and grooveboxes in a forest, sunset "} +{"id": "5001103", "video_name": "3995db9f-bf65-5355-8e9f-780c2e29874c", "text": "the Intel Pentium processors is falling down "} +{"id": "2005634", "video_name": "53cb5ab1-8b6d-5b67-9c76-f7dfeb50ecce", "text": "This shattered the previous record of 100,000 years! "} +{"id": "6004908", "video_name": "783b6bbf-ca0a-5615-b0a5-d9cb8e098519", "text": "Cain Velasquez and Elon musk eating tamales "} +{"id": "4002042", "video_name": "a3b173f3-3d3f-5a93-8dd8-a52a9bb1b244", "text": "Robot teacher giving lessons to humans "} +{"id": "2003115", "video_name": "95b106f5-a94d-5d99-bf8b-c1eb03a1d4ed", "text": "Motorcycle suzuki grxs 1000 black color rolling on a road in the middle of the forest of 10 seconds "} +{"id": "1005914", "video_name": "6ca10ec3-332a-5922-a642-8b14d55a7af9", "text": "The character of the bride in a play can take on various forms and roles, and her significance "} +{"id": "8001024", "video_name": "9952feac-407e-5766-95b9-67d39034e897", "text": "wooden pieces are spreading around, green screen "} +{"id": "1004408", "video_name": "5183869b-753f-5be9-8981-f28a6ff3c52c", "text": "strong acid trip psychedelic fibonacci luminescent rainbow colorful trippy nature background "} +{"id": "0005021", "video_name": "13586cf1-83ce-57d6-8630-087b05b44725", "text": "Year after year, Jack grew wealthy, but he no longer did the hard work himself; he relied on managing his farm to earn money. "} +{"id": "2007912", "video_name": "c42c1de6-ec4e-5f8d-be25-1657560b7172", "text": "Rhino demon king, superdetailed, ultra high defination, best quality, masterpiece, ultra 9k hd, 3d image: 1 attachment "} +{"id": "1005915", "video_name": "6cb1dacc-7e78-5e08-9c63-be76b30285ec", "text": "a man getting yelled at by people, staring at camera, 4k "} +{"id": "7002504", "video_name": "a319ea7b-3160-5dc5-9011-15e3b7b8685e", "text": "shepherd boy realizing his mistake in forest "} +{"id": "4002013", "video_name": "d66d5240-9e85-5e12-9523-35ac1d244019", "text": "medival european girl with chestnut hair, emerald eyes, and formidable presence practicing with a sword "} +{"id": "0006181", "video_name": "27c84b42-44f8-5dfc-8fd7-6fcd98a5edfb", "text": "Iron Man and Batman are fighting, with Iron Man firing a laser attack. "} +{"id": "8003072", "video_name": "ba9295b2-4cf7-576d-8c62-db51fc803edd", "text": "Craft an image of a cyborg Shiba Inu, blending the adorable charm of the breed with futuristic enhancements, against a backdrop of gleaming cybernetic cityscapes. Capture the playful spirit of this technologically enhanced canine as it navigates the complexities of a world where man and machine converge. "} +{"id": "2007468", "video_name": "12419457-3ee9-5ca0-8f53-8f40d2636a18", "text": "Nero played while all Rome burned And the calm sea rose to view And every fire is a lesson learnt And the comforters are few Still I can\u2019t think of nothing else That all I need is you "} +{"id": "6004273", "video_name": "7608b2c1-7ab1-5e98-ae26-a1922c42f3ba", "text": "black thick coat grey pants green shoes the weather cold "} +{"id": "3004058", "video_name": "c5730ee4-53b3-526f-a3d7-4b1ba89bc58c", "text": "an old Indian traditional cloths wearing farmer man is planting mango tree carefully full body animated "} +{"id": "8001308", "video_name": "6ab93ecf-dd67-547c-9829-bc60f5367de0", "text": "a whale eating and alligator in a river "} +{"id": "1005621", "video_name": "675734c2-97d9-556d-8b38-aa371bdd7aea", "text": "What was the purpose of this structure? "} +{"id": "2004181", "video_name": "296539bd-058c-5521-b050-7d7d114be378", "text": "people dancing with trumpet in hand, year 1500, old view "} +{"id": "0004749", "video_name": "0ea2b67b-3b34-5044-ac1d-c5f78bd14389", "text": "An animation of a robot driving a car with a dog. The car is futuristic. They are talking about food "} +{"id": "6003765", "video_name": "531fb636-a98c-53c6-8eb8-2ac09436d5ba", "text": "WHAIE a reunion in the deep, Family reunited, "} +{"id": "6002646", "video_name": "c633e67b-1c5e-5567-9402-abf648473093", "text": "The face of artificial intelligence when it takes over humanity "} +{"id": "6002677", "video_name": "9f063cb8-e6d5-5346-baab-fa4d23baa7fd", "text": "As the suns of Tatooine began to set, the Rebels continued to fight, knowing that the battle was far from over. They would persist, for they carried the hope of a galaxy yearning for freedom and peace. "} +{"id": "0004564", "video_name": "0b4b2116-863c-5850-b361-f5c96dc6f776", "text": "Once upon a time, in a kingdom far away, there lived a beautiful princess named Aurora "} +{"id": "4002866", "video_name": "dccdf786-3aab-53cc-a8f1-651a8570734e", "text": "lil Tecca the rapper playing piano "} +{"id": "2006482", "video_name": "8dddc709-f0fd-5103-993d-4a11e7ed1887", "text": "a lone warrior stands before the abyss "} +{"id": "7003453", "video_name": "95b0a652-560b-5a14-9b27-301c2c1f5617", "text": "Futuristic dubai street walking people and drone flying "} +{"id": "4002943", "video_name": "c0707cbb-f6e8-5621-929f-08859949fe62", "text": "plays a video on advertising screens on lampposts, on top of the screen, below it are lanterns and a long pole "} +{"id": "1003404", "video_name": "3ed2a908-f2d4-5328-894a-eadc4ce03026", "text": "a pickle cunning a marathon in the future "} +{"id": "6004084", "video_name": "35d0c375-38c5-5dfc-9c0a-0793da4356fc", "text": "From that day onward, Grandma Elsie and her (goat) became symbols of unity and resilience in the village. Their story of overcoming obstacles and the compassion of the villagers inspired everyone. "} +{"id": "4004868", "video_name": "18233e91-3936-56d3-9c36-be648c5e146b", "text": "united hearts in a symphony of hope and goodwill. "} +{"id": "4002006", "video_name": "e6e70aa3-f58f-5478-84c9-1b1ee8aaf1e6", "text": "Woman in bikini cutting the finish tape on track "} +{"id": "2006327", "video_name": "738ffa8c-001c-5b77-8de6-923d31e4569f", "text": "Once upon a time, in a jungle, there lived a lion named Veerbahu. "} +{"id": "2007415", "video_name": "28991607-8ee2-561a-922f-4526095c98bf", "text": "Then a mighty angel picked up a boulder the size of a large millstone and threw it into the sea "} +{"id": "3006908", "video_name": "80246558-9532-5aca-bae9-a23650dca0fc", "text": "dog puppies running on a large green lawn "} +{"id": "2006885", "video_name": "0a2ce07d-c367-5323-b82c-58b52e583337", "text": "Rays of light and twisted patterns emerge from the players instruments as they make music. "} +{"id": "6002668", "video_name": "6e85d492-7a56-555c-8319-c2ef432f4249", "text": "Neon, magical sparks radiating from a huge sand dune at night. "} +{"id": "4003274", "video_name": "41f2e442-5c9b-523a-9e48-2b121b00e6dd", "text": "Girls, yukata, summer, candy apples, fireworks, "} +{"id": "7004003", "video_name": "e7ecd0af-0faf-5858-9db1-e4414b136b88", "text": "A sSINGLE, bright red, AI style, rose with a long stem on a PLAIN transparent background "} +{"id": "0006655", "video_name": "3081f33e-42a3-5e04-9ab1-8fe9344c3a2c", "text": "anime style with lightning in the background "} +{"id": "3004228", "video_name": "50f68df3-ae35-51ff-83f5-af3311367a72", "text": "Justinian II the byzantine emperor was taken down in the revolution "} +{"id": "2007656", "video_name": "66740679-fa0b-52e5-a6f1-3566416eb881", "text": "windblown tree branches, in the style of woodblock carving"} +{"id": "8003590", "video_name": "c1462234-c9e1-5876-9ada-59f7b38511ef", "text": "Once upon a time, in a lush green forest, stood a majestic old oak tree. This wise tree was admired and respected by all the creatures in the forest. Animals of all kinds, from tiny insects to mighty elephants, sought advice from the oak tree whenever they faced difficult challenges. "} +{"id": "5001428", "video_name": "c8a27a0d-1370-5163-9aa1-7ad32c378b47", "text": "a bird sitting on a tree, wearing a striped shirt and singing loud "} +{"id": "4002378", "video_name": "6e9d28c6-1685-5278-9d65-f40b02e1e84b", "text": "goldfish swimming in the transparent heels of disco shoes "} +{"id": "3004060", "video_name": "a37edd8c-c517-5dd2-a22c-23fca79fd285", "text": "footage of anthropomorphic fox playing with a vr headset "} +{"id": "3005544", "video_name": "af3d9ff7-10c6-514a-87e2-7e408fc1a5dd", "text": "Audi supercar riding at high speed on the New York City streets "} +{"id": "1005763", "video_name": "6a009333-748f-571c-9163-9e2d6f9442f6", "text": "a human pick up a bird "} +{"id": "3006208", "video_name": "3270e91e-e824-5604-834c-ebc19e90750c", "text": "Elon Musk boxing with Bob Iger, in pixar style "} +{"id": "2007703", "video_name": "eab841c2-83c6-567a-bec5-d3fc8506eeb1", "text": "a white woman swimming through a glass pool in scantly clad clothing, hyperrealistic "} +{"id": "1006275", "video_name": "72e43c6c-fe44-5885-938d-61daaef3d575", "text": "zombies climbing the great wall of china, wall on fire, dark atmosphere, 4k, ultra realistic, police at the top of the wall "} +{"id": "7002873", "video_name": "5e5abac8-642c-5ca6-86dd-ef23ee49297c", "text": "Operating Room Message: SHARP (Font: MODERN) "} +{"id": "6003943", "video_name": "1a24e1a6-60cd-5d2b-897a-6dd967819177", "text": "african american super hero flying over city "} +{"id": "3003316", "video_name": "9bc1110b-8d21-596a-b9e7-16c051b2bfea", "text": "Buddha beads floating in the air "} +{"id": "1006617", "video_name": "794dd4c3-27ab-551c-8af2-30f39a8c0077", "text": "Ninja in battleground Making a Energy Orb with his hands, 4K "} +{"id": "0005785", "video_name": "21365960-171b-5827-90ad-21cf325ca5ff", "text": "the boy happily playing with the soccer ball "} +{"id": "8003697", "video_name": "cfa8587c-0515-591d-be61-979a985fdfb6", "text": "Cool cute Emu with reflective sunglasses on a surfboard surfing through a wave tunnel of a large blue surf wave, GoPro, action camera, cinematic, unreal render, photorealistic, perfect form, high definition, intricate details, 4k "} +{"id": "2007902", "video_name": "55369bed-489b-5218-9d1c-e1c1bb3e5c5a", "text": "beach house Message: hotel (Font: MODERN) "} +{"id": "0004973", "video_name": "128849e9-5af7-56d5-b5be-2f3aa79b3d11", "text": "gorilla talking to a young 4 year old male and the boy is looking at him with big eyes as he wants to hear everything the gorilla is teaching him. they are sitting on a tree branch "} +{"id": "8003887", "video_name": "b2a9a138-95f9-50d3-8652-4865fe841b17", "text": "and round glasses. However, he did not know that he would have to face amazing courage and struggles. "} +{"id": "2006348", "video_name": "a49bdb18-e9dc-547d-a0a6-3b598f1d7202", "text": "people walking around montreal in a gothic horror style "} +{"id": "2007374", "video_name": "b033b6f7-3f35-5f31-a852-1ce9153b6f01", "text": "yellow duck toy from different angles at the night inside the scary house, creepy, horror scene "} +{"id": "0004298", "video_name": "069f2234-e902-577c-8cd9-0a7811441bbb", "text": "people sitted under the tree cartoon image "} +{"id": "8002249", "video_name": "25a24c73-ef65-5b9c-9418-3c16bf944359", "text": "Timmy had a favorite tree where he would often sit and listen to the birds chirping their melodious tunes. "} +{"id": "0003418", "video_name": "3d46644d-d025-579f-b23c-1159e8985b62", "text": "Psychedelic retro video in the style of old Bollywood. A classic Bollywood romance is playing out between two lovers on the street of a dystopian city that is slowly turning into nature "} +{"id": "6002562", "video_name": "30e1d7f6-6ca2-5b79-a8e7-ffe25158246b", "text": "A peasant tries to escape in a dark foggy village "} +{"id": "4003992", "video_name": "b4a353ed-dbb3-5193-922c-c9b075bad6f5", "text": "Destiny 2 cayde told him story of war light and darkness and how it\u2019s and in final shape 4k and mystery "} +{"id": "4004727", "video_name": "c3530684-8ec4-57ec-9cd0-02b450100007", "text": "A Chinese girl with long red and blue hair, playing a flute, in a grand background, surrounded by clouds and mist, with a cyan dragon behind her, Chinese style Message: 1 Attachment "} +{"id": "7002175", "video_name": "ea18b31c-9618-5a76-be5e-517dadba2c41", "text": "there is a neon sign that reads home is lit up in the dark, enter the void, , eeyrie, in a japanese apartment, istanbul, , taken in the late 2010s, a steampunk store, tall door, grungy dystopia, exit light, glowing neons and slowly moving camera to recorrd the sky "} +{"id": "3003511", "video_name": "522dd929-f98e-5a8f-9d0e-926cd53cf8be", "text": "a medieval knight holding a flaming torch in the darkness "} +{"id": "0004139", "video_name": "03e97113-9bc2-5533-9d5d-a4243cce74d5", "text": "a moroccain man walk in sahara in egybt "} +{"id": "7002417", "video_name": "85a40370-eeb5-5459-928b-1e847856ceec", "text": "man walking into a fantasy world, cinematic lighting "} +{"id": "8003421", "video_name": "b2c2c9c3-f2ec-5f2e-8d88-f26b8aa3aaca", "text": "samurai, sword, sunset, very detailed, purple and shadow, crows, no face, cinematic "} +{"id": "2005663", "video_name": "1b748d57-cfcd-5da6-9098-aca1aef23904", "text": "Generate an image of a young man cautiously entering the haunted mansion. He holds a flashlight in one hand, casting a dim light on the decaying walls covered with ancient paintings. His expression reveals a mix of curiosity and fear. "} +{"id": "7002990", "video_name": "f191e6b7-ecad-5d38-a652-c7076e6ba2a4", "text": "hair flickering in wind, legs moving, waves moving in the background "} +{"id": "8003930", "video_name": "45ea053e-2663-5970-9fe7-13fe2e6ac7af", "text": "a little cool girl with oversize cloth is playing basketball "} +{"id": "1003479", "video_name": "40777641-684b-5fd5-aa26-2da66d68b13a", "text": "astronaut interacting with computer interfece, interplanitary solar system map "} +{"id": "3006187", "video_name": "e1ccdee4-6358-5651-8216-4311647597bc", "text": "a man looking in the isle of publix "} +{"id": "7000001", "video_name": "e7c43219-58f2-571b-a7c4-0cbc1b82a17d", "text": "A 4k resolution animated Cat runing in jungle "} +{"id": "1003968", "video_name": "49433320-ea4a-5271-9fb8-2e156e7ee3e7", "text": "alcohol ink painting African women dancing bright colours "} +{"id": "1004059", "video_name": "4b41410e-de43-5475-95d2-74ff5f22f2d1", "text": "Two men walking towards each other an shake hands. One is Roman the other is Egyptian. Backdrop or a warzone. "} +{"id": "4004416", "video_name": "b388de1e-9284-55ab-bcfc-473545922352", "text": "High above, the ancient cave entrance nestled in a vibrant landscape style realistic "} +{"id": "4003893", "video_name": "38a3acd9-5a5e-5a16-97a6-80eeb519c136", "text": "dj in the club, dancing to the rhytm "} +{"id": "3006096", "video_name": "54dc71d3-1a40-5a04-9dd9-d8da14542f55", "text": "A beautiful sea reef that illuminates the sun, ultra wide shot "} +{"id": "3005914", "video_name": "7e328e8b-fdf3-5f94-a3eb-2a4553460396", "text": "many elephant are playing with us in the jungle "} +{"id": "2007186", "video_name": "2ca89521-1c05-563b-91ec-77b7303c70b4", "text": "the winner of the champions 2024 "} +{"id": "4003198", "video_name": "dff35a8a-4a8b-5bff-b0d7-8988ddf9f333", "text": "an old fashioned cowgirl like Belle Starr in a yellow dress looks down from her horse to see a modern man in a green parka, long shot "} +{"id": "2004949", "video_name": "9cce71ba-8506-55f1-9df9-d01c1cdbde42", "text": "A bright light shoots high into a starry night sky and disappears "} +{"id": "2003752", "video_name": "9469df11-bafa-5cea-80f5-ea309d3ed555", "text": "Ironman fight against Hulk in Washington DC USA "} +{"id": "3005391", "video_name": "84ae7f43-936c-5218-9094-46553757c90c", "text": "a video showing how olive oil is made "} +{"id": "0006196", "video_name": "2806a5c0-88b3-51af-ab58-6ca6f6206975", "text": "homer simpson walking ahead of an explosion "} +{"id": "0006267", "video_name": "29b85214-4577-5e47-8cd7-88c6db8e516f", "text": "Bra and thong invisible woman floating dancing 8k "} +{"id": "1006308", "video_name": "73713df4-8404-5e91-97a1-a6f168107ee9", "text": "kid male child dancing circus ring "} +{"id": "3005811", "video_name": "a2995187-0790-5403-ae0d-59ee19210a58", "text": "office man sits in dark room "} +{"id": "8003206", "video_name": "2559fa09-38db-5ba5-b6c3-70a59804cfbf", "text": "Man wearing steampunk clothing in the style of Patrick Nagel . Minimalist pop art, 80s, vaporave aesthetic, Gothic. Masterful composition. "} +{"id": "3004348", "video_name": "a2010cec-66b1-5165-aec2-8b7dc41b3b3b", "text": "paris hilton and nicole richie from the simple life "} +{"id": "8003476", "video_name": "ebf79dac-f3cd-5293-8f25-6a69237f4ce1", "text": "anime, Logo of an owl in a bouquet of flowers, cinematic, dark fantasy "} +{"id": "8002068", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "a dog flying in the sky who introduces himself as Liu Tiangou. His words are to be displayed in Chinese characters. "} +{"id": "3004688", "video_name": "6a44b65e-0e3d-5c9f-85bc-883b8ce894e1", "text": "bringing with it torrential rain and howling winds. "} +{"id": "1003829", "video_name": "46b61a4b-f8d1-50ff-8218-1e1862ce2f51", "text": "ultra realistic bear dancing in the sity centre "} +{"id": "4003297", "video_name": "a640ac46-923c-5185-912b-72ead1e3e613", "text": "Man running on a deserted street "} +{"id": "1005140", "video_name": "5ebb0f16-6a31-590e-a6d4-132dd575d51a", "text": "An animation from behind of an old man in a dark brown jacket and a dark brown hat sitting in contemplation on a treehouse behind a waterfal "} +{"id": "4002982", "video_name": "f7a152df-f881-5ec4-8d00-80d75d343a89", "text": "terry bogard videogame character dancing in a mexican birthday party ultrahd "} +{"id": "0005164", "video_name": "15d87bf3-76ba-5029-8be3-0026dc961c65", "text": "fantasy style clownfish swimming in night sea "} +{"id": "3006100", "video_name": "9e4e2e43-1c6a-5a2e-8f77-e3418e902d16", "text": "in the style of director Toshio Matsumoto. "} +{"id": "6003275", "video_name": "01fc599a-77b9-510c-870f-e42aa3de9d8d", "text": "a man focus walking in many people on city,VHS style,2003 VHS camera style,man walking with many people around in city "} +{"id": "1006353", "video_name": "744fa870-e843-5f85-8cda-b82c19442262", "text": "animated elves working at the North Pole airport "} +{"id": "5001821", "video_name": "bb5cb6d4-6285-5593-851d-20a00bd2e22d", "text": "A heroic bearded Greek statue stands strong, its muscular form and shield shimmering in the sun,8k.background "} +{"id": "2005796", "video_name": "44761bac-a66c-5ef9-971c-bbd931c23189", "text": "Yue Wujin goes hunting down the mountain, traversing through dense forests, sweat dripping down his determined face. "} +{"id": "2003324", "video_name": "b719ab59-c9c1-5c11-adf2-c59b20ae9819", "text": "first time to set foot on the moon "} +{"id": "6003959", "video_name": "418e7b3d-8b52-508d-8a8b-56025a5dc768", "text": "two cowboys riding horses near a farm during American Civil War "} +{"id": "2004466", "video_name": "0a022f77-2e0c-58a6-a84f-de856384ceac", "text": "hindu bramhan walking in jungle cartoon "} +{"id": "8003665", "video_name": "7e9e6b5a-d811-5b91-9913-9013839f751d", "text": "an image of a half apparition and half lady "} +{"id": "8003696", "video_name": "7db3509c-1894-525b-945a-7b0a114d17f6", "text": "heaven beneath which water flows, in the sky birds fly, in front there are angels "} +{"id": "4003498", "video_name": "4b201f67-0fa3-56d2-a8f4-b85c1818e6a3", "text": "Jean Grey, The Dark Phoenix from Marvel comics flying in the air surrounded by a cosmic aura and cosmic wings of the Phoenix Force while dressed in her signature Dark Phoenix outfit "} +{"id": "2006098", "video_name": "874ab1ea-f2cb-5cd3-b918-2098e5fd3a85", "text": "Ghost in the sheet haunting Poltergeist, 1980 horror film aesthetic "} +{"id": "1006069", "video_name": "6f6571cb-8dc6-52e0-9b74-37c9b73dceda", "text": "Write a heartwarming scene where a Shiba Inu dog and a Persian cat, named Mochi and Whiskers respectively, are peacefully sleeping side by side. Capture the tranquility of their friendship and the unique characteristics of each pet as they share a cozy moment together. "} +{"id": "3006378", "video_name": "cb2ce8ea-4792-58f9-b74f-237b0cc3561c", "text": "Six wizards stand in a defensive formation against an army of werewolves, they are surrounded on all sides and it is snowing heavily. "} +{"id": "3003478", "video_name": "e00ffc34-d367-55b3-9b14-6fd7d18ea4a1", "text": "Chinese style room. With cozy breeze. "} +{"id": "5001936", "video_name": "bf5e44e5-11f8-5289-aab9-3d718b5282c2", "text": "horror 90s found footage film from a 1990s Screen grab 90s, priest shedding skin, becoming a giant reptilian, dark transformation. gritty, uncanny, bizarre, Horror core liminal aesthetic with 360p graphics, Surrealism, intricately detailed video, Occult film still "} +{"id": "3003679", "video_name": "63ab831b-44a9-5acf-9a00-877035f8f597", "text": "apple tree seen from below, branches full of apples and in the background sky covered with blue and white clouds "} +{"id": "2003701", "video_name": "b571a126-fa50-52d0-8325-b082012464fc", "text": "a knight walking in the desert at night under the moonlight, beautiful 4K, high quality "} +{"id": "2003491", "video_name": "968137c5-d80b-5860-836d-be18fda28d98", "text": "Map of the Red Sea trade route and land routes controlled by Arabs. "} +{"id": "3005774", "video_name": "09156cc7-44e8-5985-80db-1db31e0c830a", "text": "make 2 anime character fight each other,one has fire powers,the other one has ice powers "} +{"id": "3005521", "video_name": "f78d0721-fd92-55aa-96ab-95ce15db9842", "text": "girls hug with love and sweet smile "} +{"id": "2007235", "video_name": "eb799eab-30b7-5b8b-a37a-8fc757bd4395", "text": "Billy and Benny enjoying a game of frisbee under the bright sun. "} +{"id": "1004760", "video_name": "581e5153-18f3-5e87-b564-7618f4ef7232", "text": "The lion, now a resident of the moon, begins spreading happiness and beauty. "} +{"id": "2006536", "video_name": "52b17d50-e737-5761-ada0-6482b3f02f17", "text": "Focus on the beauty of the Northern Lights. Create a background with vibrant and shifting auroras dancing across the celestial canvas "} +{"id": "8001489", "video_name": "990d0a5e-870c-5474-b285-0b8c32844f60", "text": "cat and dog in one body "} +{"id": "1003630", "video_name": "42e0b731-99ed-5779-80ef-3c6e90821b9a", "text": "Steve from minecraft fights a terrifying skeleton, create this video in a retro video game style "} +{"id": "4002708", "video_name": "fe3cf66c-f3b6-5cf1-9db1-d3ff52afcbf0", "text": "paintly animation of a tree ia a sunset with fruit droping "} +{"id": "3004242", "video_name": "7a5b9ec4-ce33-5c2e-95ac-4c126666e929", "text": "the pixar style sun with eyes singing a song colorful "} +{"id": "7002098", "video_name": "848dc042-83cd-5d2b-bcde-a9df615dc507", "text": "Nebula in the shape of a waterfall "} +{"id": "4004233", "video_name": "897ce152-6924-5016-9cc0-8d4f278483fb", "text": "elf shifting gears in the racing car at night "} +{"id": "8002836", "video_name": "1e3c7f35-1e48-5561-a3b0-629a1a6f698b", "text": "Cute 4 year old girl, wearing headphones, 8k image, 9:16 ratio "} +{"id": "0004550", "video_name": "0b16484d-dac9-56a7-9006-e53096ee0617", "text": "Light sunlight peeps through the palace bedroom window "} +{"id": "3004442", "video_name": "d4559e74-ae46-57e9-9c32-2b76c3249464", "text": "INTERTET ANIMATION EXPANDING AROUND THE WORLD "} +{"id": "8001350", "video_name": "c2bfecb6-b72b-5691-ad03-caeeb95150c4", "text": "many people dancing in small room "} +{"id": "6003221", "video_name": "8f7d8633-bf75-5989-be98-90fd4581883d", "text": "Alpha Wolf in the dark forest stars shining and smoky environment ar9:16 portrait mode "} +{"id": "0006941", "video_name": "359b0b8b-5c46-5bb5-8d34-461337d80a97", "text": "zoom in shot on little broken mirror reflecting three figures on top of a majestic mountain during moon eclipse "} +{"id": "6003306", "video_name": "4cc512f6-82e0-5302-95fa-3d2fa30d514a", "text": "a dark underground room containing a large bed, a chest, a table, and an arms rack "} +{"id": "0004191", "video_name": "04cefd0b-697c-5f22-922a-7981df4c2d3c", "text": "a person flipping a table in a rage room "} +{"id": "3004524", "video_name": "d92fc1af-78e5-5b8d-9a96-aa8d82d75026", "text": "a vampire slideshow horror comic book strip "} +{"id": "8003637", "video_name": "8b6afc84-5510-536e-a80c-91ea6c129995", "text": "a young japanese anime couple walking in a Tokyo shopping mall "} +{"id": "2005029", "video_name": "151f9f1a-b6f3-5c9e-877a-0542d2c4b39d", "text": "people running through the city very fasat at night. "} +{"id": "3005213", "video_name": "35ffa388-89d1-5e7d-b7fa-890c568c188f", "text": "1950\u2019s footage of a haunted house falling apart splitting fracturing revealing a bright light within "} +{"id": "3004532", "video_name": "a066ec46-8149-5158-ae1b-476199afdc81", "text": "people rioting (high quality, buildings in the backround, many people, good walking animations) "} +{"id": "1004075", "video_name": "4b8c4279-e8b1-5ff2-972a-047978dc3baf", "text": "Artist Vomir in the jungle of Peru doing his harsh noise wall "} +{"id": "6004936", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "Zoom in to show Lily walking through the village square, radiating kindness. 8k quality "} +{"id": "8002774", "video_name": "f10dbd20-fc97-59c4-9585-c52923bba2b3", "text": "tanks moving in a colum world war 2 circa 1939 "} +{"id": "3005577", "video_name": "9e04f558-e2f7-56b6-bf53-3c62ccd9f224", "text": "Creating a water swallowing animation involves key frames of the swallowing process. followed by frames showing the water moving down the throat to lever, Use smooth transitions between frames for a realistic effect, 3 d animation "} +{"id": "8001508", "video_name": "56cde721-78ce-5d3b-8e91-8aa3d4ef77f2", "text": "its a secret place said rabbit "} +{"id": "3003773", "video_name": "fe08897d-5492-5f46-8f78-7cabac9e954d", "text": "a one legged man in a kicking contest "} +{"id": "3006196", "video_name": "6385faa0-f794-5b9a-b1b1-06f034d58d2a", "text": "1957 volkswagen bug driving off a cliff in the desert. camera looking up at the car falling down the cliff. Smoke, fire, debris. ultra realistic. Daytime "} +{"id": "1006950", "video_name": "7f2a6acb-72be-5cd7-8bcb-c9e5065e1d62", "text": "a piece of pasta with tomato soup on it "} +{"id": "8002544", "video_name": "182c0b67-cd88-58e2-8975-5de973135ebe", "text": "steep mountain, a muscular guy tries to roll a boulder up the mountain, the mountain side has a very even slope where he can roll the boulder up, he struggles but manages to go inch by inch, it zooms out to show that he has a long way ahead of him, he has brown hair and blue eyes, he keeps pushing the boulder up the hill "} +{"id": "8002463", "video_name": "7a94b376-d47e-56b9-b267-042567dd0a14", "text": "neo retro soldier in a dark forest at night, giger style, almost black and white, fincher look "} +{"id": "2007343", "video_name": "e9db3583-e034-521a-a5fc-a6fc623fdd5f", "text": "red dark blood coming like a flood from a wood wardrobe, super realistic "} +{"id": "3003548", "video_name": "52e4a2dd-7ce9-54a4-a093-a62fc577171f", "text": "sunset synthwave, vaporwave, neon, clean sky, mountains "} +{"id": "1004945", "video_name": "5b6b8713-744b-51c1-9415-1ac4e2909214", "text": "duckling is carried away by the river current, duckling scared, screaming. "} +{"id": "1004237", "video_name": "4e73f659-0998-50da-9474-1dfd9b1eff2b", "text": "An acrobat poised on a tightrope, her mask a cascade of feathers, each one a different shade of twilight, balancing with outstretched, iridescent wings "} +{"id": "8001037", "video_name": "bbbcde32-bcf2-5f40-8ffc-7ba04d2fa416", "text": "animated image for hostel inner images "} +{"id": "2004044", "video_name": "88656d53-3528-5107-801b-ccabaadf3a40", "text": "4k cinematic shot of cells traveling through veins "} +{"id": "4002698", "video_name": "d01e3dee-c429-50a3-9aaf-cdf8b6425173", "text": "Geometric motion, simple flow, animated video "} +{"id": "1006690", "video_name": "7aa01218-9b06-5fe5-bc8b-d37c6a444f78", "text": "micro xenomorph girl covered in vinyl, black mirror head, smoothing, beautiful legs, 64k, aesthetic, high resolution, computer graphics, glow, 3D,ultraviolet,HDR, CGI, "} +{"id": "4004040", "video_name": "03d0c425-6f18-596a-8490-182187eac7c3", "text": "1800s sailing captain praying on his knees looking up at the sky, deep in the arctic, freezing. Sci fi horror style "} +{"id": "3003065", "video_name": "772e4512-77f0-5f26-bdd4-9f06ac316a09", "text": "a shark attacks a beautiful girl in bikini, realistic, camera out of water, view from top, 4K "} +{"id": "1006103", "video_name": "6ff98dba-6cef-53ae-bdb0-a6547a712ed4", "text": "Once upon a time, in the illustrious kingdom of Eldoria, there existed a timeless tale of love that transcended borders and enchanted the hearts of all who heard it. At its heart were two noble souls, destined by fate and bound by destiny. "} +{"id": "0004843", "video_name": "10261036-d7e5-59f2-a0c2-e0ffebba55d4", "text": "sailing in the wind with a sailing baot in the sea and dolphins "} +{"id": "6004022", "video_name": "3b688189-9a8c-5f2e-8df5-7a519f05ce44", "text": "4k footage of a magician holds his hand up and it turns to smoke "} +{"id": "7002881", "video_name": "d6afcdd9-4f73-5e60-8fe1-1de9bb2ad39d", "text": "Japan, rain, night, autumn, fantasy, ancient environment, line art style, fire, demons, intricate details, dehumanized by alex1shved Message: All text (Font: MODERN) "} +{"id": "7002583", "video_name": "95ca3778-6522-5b12-a2b3-dbc83552c385", "text": "war, trail missiles in the black sky, light thriller, camera zoom out, erratic fluctuation "} +{"id": "7004036", "video_name": "e8367194-7d32-52d4-ad48-c0b5f5e77971", "text": "Finn the small and timid fish encountering a graceful sea turtle named Tessa, who offers to accompany him in The deep blue sea, with sunlight barely penetrating the depths. "} +{"id": "1005939", "video_name": "6d26e3b3-7ea3-55fc-9c3f-b52b36b61101", "text": "A BOY AND GIRL RIDING A HOURSE ON BEACH IN EVENING SUNSET "} +{"id": "0004352", "video_name": "07931dc4-446a-5ac0-9e5f-e19b4c303978", "text": "Full scene, 3 Baby philosophers, Sokrates Baby, Plato Baby, Aristotle Baby, in some kind of cinematic movie "} +{"id": "4002747", "video_name": "4b1ea5bc-5d80-539b-98b7-8597ea037313", "text": "Roblox noob in the mall dancing with Steven universe "} +{"id": "8001819", "video_name": "1fc76f68-cc20-5de9-9f5d-3610a7f9a6d5", "text": "Aria and Rick work with other scientists to design new space probes and plan for future space exploration. "} +{"id": "2005708", "video_name": "31b5803a-9581-5e24-a1d5-4decc2ae0955", "text": "a Long fight between heroes and villains "} +{"id": "0006380", "video_name": "2b74fb8b-0e94-56c2-9b38-c8ad37878455", "text": "Rotate the image 90 degrees clockwise in 3D mode. "} +{"id": "7002748", "video_name": "c71fd77c-00b0-56b6-beea-016cd8cdd11e", "text": "Singing in the old bars Swinging with the old stars Living for the fame "} +{"id": "3004346", "video_name": "e765d4cc-fcdc-567e-85ea-2d4756c89426", "text": "village, a young boy, strong passion for animals and birds. "} +{"id": "0006154", "video_name": "2771135f-5e22-567b-a149-232581c1358c", "text": "create a spinning soace station fast "} +{"id": "2003538", "video_name": "4b2b2540-d381-5510-be4a-c91f898ac00b", "text": "a woman in a black dress in a hallway, in the style of golden age glamour, exaggerated facial features, hard edge, zigzags, hurufiyya, hollywood glamour "} +{"id": "8002832", "video_name": "329f0613-0088-5e31-8ee8-076196f4331f", "text": "Turtles in the forest talk about baby turtle "} +{"id": "3003375", "video_name": "5b12ba55-c66a-579b-96c4-ec7da3671209", "text": "salvador dali falls fron the sky 9:16 "} +{"id": "1006391", "video_name": "74f3f34e-a8c0-54f8-b94a-e2cd2151c10d", "text": "As they worked, Terra breathed life into the planet, creating lush forests, vibrant jungles, and teeming oceans. LLunaLLunaunLLunaLLunaununauna sprinkled the night sky with stars, while Sol provided daylight to awaken the land. "} +{"id": "0003155", "video_name": "3831f063-1557-5e72-9715-7ad474f585c8", "text": "man with hoodie walking in night in the city 15 seconds long "} +{"id": "4002469", "video_name": "2f45b21a-f700-5f4e-8b1a-1375dee5a1f3", "text": "An Autumn season, mountain forest with fresh waterfalls, bears, dears, hyenas, elephants are playing on the ground, eagles fly in the sky, animated Pixar style, 3d. "} +{"id": "3003126", "video_name": "18548f44-8714-5580-b5d6-d8e2af5929e6", "text": "a cat following a dog tha is running away "} +{"id": "7003321", "video_name": "ec919910-375d-5193-ba31-7568b9bf481d", "text": "2 young girls running through a crowd of people at the beach surrounded by blue and turquoise water "} +{"id": "3005504", "video_name": "3ede4a93-92bb-534e-8b0d-13f76c364646", "text": "From that day forward, the residents of Meadowville learned that success could come from the most unlikely sources, proving that sometimes, a surprise win is the sweetest victory of all. "} +{"id": "4003958", "video_name": "885c53ca-faac-53e2-99bd-66f611d84ca8", "text": "there were 2 freinds who were girl they were 14 year old they were coming back from school to home between road they found an abandon cupboard one girl went inside and reached in upside down world and there a monster came she ran as fast as possible and came out Message: movie (Font: MODERN) "} +{"id": "1004563", "video_name": "54bc1c1b-9a30-59ef-aeb0-697974afa419", "text": "ancient Sumerian people hunting done elephant "} +{"id": "0004538", "video_name": "0ad9f20a-9554-5f92-9b7e-f6c6de479d86", "text": "birthday, candles, love, Watercolor, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski "} +{"id": "3005337", "video_name": "552f5ed1-6c9b-50c1-b93e-bb001690e7e1", "text": "a man wearing a coat and holding a glass of whiskey in his hand and zoom close on his hand and the glass "} +{"id": "7002342", "video_name": "a148aa56-a372-5cb6-9fa8-65039290e922", "text": "volcano by Charles E. Perugini, by Fred Sandback, by Renne Magritte, by Max Ernst "} +{"id": "1004615", "video_name": "55d4068c-5dbc-58ae-8372-e29e236fce3c", "text": "photo realistic woman hiking in a wood, in the background you can see the alps, suns shining through the leaves "} +{"id": "2005226", "video_name": "8e7e8463-97e1-53b7-984f-3876180b7670", "text": "A video of Messi bowing and prostrating in front of Cristiano Ronaldo. "} +{"id": "3004233", "video_name": "b628e2f5-bf29-5d6b-af7e-616fca845cff", "text": "a brunette girl is in the sauna wearing suspenders hyperrealistic hd "} +{"id": "8003028", "video_name": "f5453d00-ce34-5f4c-acec-fa6de76d7a54", "text": "close up on a long golden sword glowing as a zombie battle is in the background "} +{"id": "2007205", "video_name": "dfb31b63-4e4b-5bfa-bce8-31429f67419b", "text": "medium shot, symmetrical, fashion model flies in the air, pastel "} +{"id": "7003653", "video_name": "bb0a0ace-efa0-548f-8fe1-c033ef660793", "text": "many roses moving in a green landscape "} +{"id": "8001656", "video_name": "d2f52379-872b-5068-ac5e-08d7e99f6aa0", "text": "a ming dynasty guy is argueing with a fisher man on a boat on the river "} +{"id": "5001109", "video_name": "92d454e1-47c5-5413-b1ec-fc0c367bbd11", "text": "homunculus loxodontus with moving hands, realistic "} +{"id": "7004171", "video_name": "4ca0ffa3-7fbe-55c1-ae94-0dbd6fbddb39", "text": "man who is sad and regrets his life "} +{"id": "3003610", "video_name": "5b800be4-7860-53f1-a967-1640f81bc3f0", "text": "A serene, idyllic village setting with vibrant colors and cheerful music "} +{"id": "6002888", "video_name": "8730471b-9144-5726-a81f-c52974453da9", "text": "baby kitties playing on a butterfly field "} +{"id": "0006454", "video_name": "2cd157b0-dbef-5078-9cc6-2330362eaa77", "text": "orbital tactical troop droop with planetary resistance, masterpiece, dynamic, scenery, action "} +{"id": "0004536", "video_name": "0acb02da-4dd1-5170-b5ff-b1c1e59cdce3", "text": "Woman in the caffe center sitting and talking about divorce and heartbroken "} +{"id": "0004994", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "it gives cars in a race where they drift in a curve one behind the other and that the video lasts 15 seconds "} +{"id": "3005965", "video_name": "6926c169-37b6-544c-84dc-9339aa781e26", "text": "letter v spinning 180 , cotton texture 16:9 , futuristic font "} +{"id": "7003193", "video_name": "838e0e47-dc10-5747-ae0a-657472c3f1f8", "text": "large battle robot walking down main street, by makoto shinkai "} +{"id": "4004069", "video_name": "767bec2c-d9cf-55c0-a7c1-d3dbf4509505", "text": "who was known for her boundless curiosity. "} +{"id": "4003250", "video_name": "a9590028-cd4b-57c8-8b30-ea38ebc9e1c2", "text": "pixar style young woman with white hair from the future "} +{"id": "1006239", "video_name": "724bab4b-a1dc-5a90-b863-fbc6b5562032", "text": "bombs falling from the sky, view from the ground looking up "} +{"id": "7002933", "video_name": "68723156-1a02-56c9-a5c1-2c4b331674f7", "text": "surrealistic landscape with several dimensional portals in art brut style "} +{"id": "4003116", "video_name": "eeef163c-1423-57ce-ab62-d6b54b544f38", "text": "a monkey in a forest in 2d "} +{"id": "0005616", "video_name": "1e1f89d2-583e-5d73-89af-9c4ef559afbb", "text": "a woman crying after a hard breakup,with tissues, and broken hearts "} +{"id": "0005638", "video_name": "1e85c846-f05d-5234-affe-815b5e5a13a5", "text": "An arabic woman dressed in black riding a horse in desert. Wee see the woman first but after a slight pan to the rigth and rack focus at the same time we see the face of the samurai warrior looking to the camera. The Arabic woman stays out of focus. Wind is blowing and an eagle flying at the background. "} +{"id": "2004327", "video_name": "9cd4734e-f649-5ecd-9b26-897620ceada9", "text": "underwater city with arena and purple octopus Message: AutoGPT Arena (Font: MODERN) "} +{"id": "3006085", "video_name": "02c1702b-ccaa-5937-bf57-4c0be6cf8ad6", "text": "elephant walking, car riding, tree leaves blowing by wind "} +{"id": "2005248", "video_name": "e0a51774-714f-59dc-af56-3040577871e8", "text": "a beutiful garden, a younger girl bath in river "} +{"id": "2007911", "video_name": "e6b80544-b37f-57f2-9d9f-9a2d8503420b", "text": "Ma;e Model 25 years of age sculpted from glitering metallic meterials mixed with gold exudes an otherworldy allure, blending elegance with an ethereal beauty. "} +{"id": "2006052", "video_name": "c5b4acfc-e1ac-5fb3-8ada-225ea6e78887", "text": "Girls and boys applaud Elon Musk on stage "} +{"id": "3003933", "video_name": "58ece99d-57d8-58b8-bec4-a3206f2d60fe", "text": "c.1010 BC\tDavid becomes king of Israel, making Jerusalem his capital. "} +{"id": "1005086", "video_name": "5dcb25fb-a328-54ff-b7e8-ec04df6cc580", "text": "a child putting together a puzzle of a picture of the Vitruvian Man "} +{"id": "0003569", "video_name": "3fb89953-c897-55b1-89e7-b61309d6de9f", "text": "man fixing his car , cinematic , realistic "} +{"id": "4002677", "video_name": "bd5594d7-085d-5b5b-9a49-34fd6198588e", "text": "a child men have an adventure in histroy game "} +{"id": "4004954", "video_name": "9f8893b9-337d-5064-a6d7-c0d7fe65172d", "text": "The sound of applause grows louder, the curtain gradually falls, and the stage lights dim, concluding the engaging presentation. "} +{"id": "8003061", "video_name": "77615c74-ffcd-56ac-aba0-73395c06d9cb", "text": "Ants in the forest Message: CHAOS (Font: MODERN) "} +{"id": "0005018", "video_name": "134dd6e5-dfd7-5106-b0a5-1710400488df", "text": "media lab center, monitors and computers with retro cyper punk, 4k, cinematic "} +{"id": "2005230", "video_name": "6794f5dc-19f8-5540-9bd0-a2efd3f7fa37", "text": "an rabbit in the full moon, night in china "} +{"id": "6004747", "video_name": "692710d4-aea2-5bbe-b321-eefce9583f19", "text": "a target bull terrier dog working in an office with a christmas tree in the background "} +{"id": "1006054", "video_name": "6f244979-6481-5d03-ab1e-d99084fab122", "text": "dracula drinking a pint of blood in a pub, 1985 "} +{"id": "2005991", "video_name": "c9bd299e-3ce7-5f4d-a3c5-ca8206be4543", "text": "Generate a playful scene of Piko happily playing in the snow, wearing his Santa hat, with other forest friends joining in the festive fun. "} +{"id": "0006990", "video_name": "36598de4-609f-51e1-ada0-1b13d0370482", "text": "Generate an image of a fierce Manipuri Meitei warrior in traditional attire, standing proudly with a sword or spear, showcasing their bravery and valor. Capture the essence of their cultural heritage and warrior spirit in the artwork "} +{"id": "4004506", "video_name": "2e2df06f-1d00-5395-8ede-7ffe07972813", "text": "guitar flying through space, moving from world to world, dripping music on to the planet,slow moving clods "} +{"id": "8001811", "video_name": "7892726a-fbb5-51db-8cc4-b64e1bff1453", "text": "preppy blue shirted, khaki pants wearing AI robots "} +{"id": "0005507", "video_name": "1c069c4a-db68-5d09-96f1-7a9cc3df1951", "text": "one night a boy look moon "} +{"id": "7003980", "video_name": "f248ecae-5f80-5ca2-82b0-8a34b01da8ea", "text": "a video of a drop of rain falling from the sky, 16:9 size "} +{"id": "1006959", "video_name": "7f575563-a977-56dc-8e5d-7b26b08bd4f0", "text": "kungfu man jump into the sky "} +{"id": "0004865", "video_name": "108b4885-adc2-5386-b49e-1a746e453750", "text": "Futuristic laptop in 22nd century, octane render, 4K, 8K, "} +{"id": "7002652", "video_name": "c3965c1d-1152-550c-b528-3766b6f4c943", "text": "the grim reaper floating through space, photograph, analog film "} +{"id": "3005899", "video_name": "3346f2c0-7f49-53a2-93ce-5687a0bddc1c", "text": "model surrounded by flowers, windy motion "} +{"id": "2005673", "video_name": "08961390-c3a0-5a11-a9b4-c919ef1fcf75", "text": "My wife just wants to party with Trey Songz "} +{"id": "6004411", "video_name": "e1907491-bb2b-57e6-92e9-8ec426a5ac94", "text": "in map of india zooming the state of odisha briefly "} +{"id": "1003831", "video_name": "46b8e04b-60b2-566b-9e72-20f8caa8a5e2", "text": "high speed train station in 2010s in Rio de janeiro "} +{"id": "0006586", "video_name": "2f0f26a3-ea01-5be2-8600-5089a29f711f", "text": "two faces mefging abstract art atmosphere together in the desert red white garmnets cinematic light film "} +{"id": "6002355", "video_name": "08b29478-d1d5-5245-9dbc-da91723419f9", "text": "Boeing aircraft engine catches fire in flight "} +{"id": "2006185", "video_name": "5845bb8b-ef30-5920-a7d9-e4e974e516e7", "text": "A girl is writing and outside is snowing Message: 1 Attachment "} +{"id": "7004737", "video_name": "c26589b7-d274-547a-849d-694828870746", "text": "create a hostess who is suggesting a solution showing the solution text on the left "} +{"id": "8003792", "video_name": "90210993-c415-52ef-b403-a1ca2f7d15da", "text": "Video display of various activities of people in a busy office , portrait, realistic "} +{"id": "3003997", "video_name": "34c8c151-e161-53ce-92ae-bb39562cb568", "text": "the smiling face of the asian boy "} +{"id": "3006545", "video_name": "4b143048-5973-5a96-84e6-44e03d307dd9", "text": "Telling stories to Elsa and Anna "} +{"id": "0004326", "video_name": "07257020-a9f7-5a6b-844c-ad10da93c95e", "text": "The Seine River has become a polluted wasteland "} +{"id": "3005356", "video_name": "9bc53e2c-09c9-5002-b62c-4212a057e891", "text": "man holding flashlight on his right hand in a dark scene, wallking in the left corner of the entire scene pointing his flashlight to the wall in the right side of him "} +{"id": "0005273", "video_name": "179ef0ce-7c83-5e26-b1f3-42d567f16efb", "text": "3d animation, a realistic banner containg the words Irongmara school ,banner is infront of a school "} +{"id": "4004163", "video_name": "395bb680-6727-5577-a325-05dd2349dee3", "text": "little girl getting terrified on a stormy night, hostel room "} +{"id": "5001922", "video_name": "ffd3e6b4-fb7a-53cf-b1f4-5e22281f0eaf", "text": "beautiful mayan village of yucatan Message: 1 Attachment "} +{"id": "2003157", "video_name": "31b13a3a-230a-551e-8bda-ad2b65cf599c", "text": "girl drawing technical blue prints in notebook "} +{"id": "2003332", "video_name": "afecd975-7794-571f-b584-d255c0496e72", "text": "In Antarctica in 1940, several German officers walked towards a giant UFO that landed, old movies, black and white movies, historical records "} +{"id": "3004526", "video_name": "e49fe796-4239-56b9-9c63-54a6c3ec2144", "text": "closeup overexposed brightly glowing blurred silhouette of a person walking to the left "} +{"id": "0005614", "video_name": "1e0c02ac-1bcf-5b48-b719-ac84ef88969a", "text": "spaceship with god ray levitating people in zero g "} +{"id": "6003499", "video_name": "2bcfab09-e9fb-5fc5-a4fc-e839a56f430c", "text": "Driving corpses in Xiangxi, a man wearing Taoist clothing is driving a group of entities walking "} +{"id": "3006382", "video_name": "65be7eaf-fe9a-562a-bff0-00f58f5642d2", "text": "alien planet glowing in the stars "} +{"id": "8001681", "video_name": "52cff279-44c6-55e9-a78a-c2fabfa38474", "text": "tom cat riding a bicycle at the bottom of the sea "} +{"id": "7003093", "video_name": "505c88a3-28cd-58c9-a354-2e50647ac9b8", "text": "A lone person stands in an empty public square, holding a megaphone up to their mouth. They are shouting passionately, their words echoing off the buildings and cobblestone ground. But there is no one around to hear their speech. Video "} +{"id": "3005076", "video_name": "e95d44bd-df24-5cd7-ba27-fd267770908d", "text": "birthday party for an 8 year old girl with brown hair "} +{"id": "8002666", "video_name": "7beb2f87-777e-598e-98a1-b6bc22983541", "text": "Wise old owl perched on a branch, singing a song of wisdom "} +{"id": "2003897", "video_name": "f2cf0017-dc51-55d4-a499-4c0f0d334f18", "text": "gladiator entering the coliseum in rome, gray smoke, high definition "} +{"id": "6003327", "video_name": "43acc82f-3330-5780-b700-9aa2db541f80", "text": "A cute little boy, riding a little dinosaur at a gallop in the jungle. "} +{"id": "2006040", "video_name": "900ff8e3-c7c5-557a-b207-ed625663ea87", "text": "Prehistoric people sit in a cave and are visited by aliens "} +{"id": "1003025", "video_name": "378b3584-51c9-5a3e-800b-88927bef7211", "text": "giraffe and horse the two friends setting off on their journey, walking side by side into the wild savannah.disney style "} +{"id": "6004215", "video_name": "d6291f6a-da77-5da4-9e55-1694a06b8bb9", "text": "action movie on mars of modern bionic robots hyperresolution "} +{"id": "5001921", "video_name": "46f1aade-cf9f-5ca5-870d-574b513e1cdd", "text": "on a white and yellow background, a light landscape imbued with energy, thoughtful design, an abundance of light, technology intersecting with nature in the year 2300, in the style of cinematography, cinematography, object in focus, beautiful, cinematic, black cosmic sky, color fukinematic action, flying, speeding , run "} +{"id": "8002082", "video_name": "92563d24-94cb-5ef7-a070-1714c46b6890", "text": "a colorful painting combining ink and wash with oil painting techniques, depicting a passionate young man wearing a luxurious hat and a fur coat, leading a yellow horse with one hand and reaching up to the sky with the other on a flat plateau, against a backdrop of vast clouds, a majestic mountain, and a full moon in the northwest sky. "} +{"id": "1004128", "video_name": "4c6ef090-b096-5b51-8d64-541a5904846a", "text": "The handsome youth sat under a tree in old Egypt "} +{"id": "0003917", "video_name": "45acd3d6-5327-5edd-9a2b-5606b6a8da16", "text": "A breathtaking mountaintop at sunrise. The sky is ablaze with vibrant hues of pink, orange, and gold as the sun peeks above the distant peaks. Wisps of clouds cling to the mountainside, creating an ethereal atmosphere. The air is crisp and invigorating, and a sense of awe and possibility fills the scene. "} +{"id": "7002151", "video_name": "3b680a70-1cf4-5990-abe3-8cb29476fd3b", "text": "wink eyes, hair flutting image: 1 Attachment "} +{"id": "3003770", "video_name": "36d9a558-3eb7-5150-987b-b87e882aba04", "text": "a beautiful magical tree grows out of a book "} +{"id": "7002251", "video_name": "ac6f0c7d-b7f5-559d-98e4-2bc2207de81a", "text": "5. Lily reaching out to her father as he walks in the door, her tiny fingers painted in the bright hues of her innocence. "} +{"id": "3005807", "video_name": "d0ecd2c9-e1ab-5eb6-a195-d1f17bbe1d01", "text": "A female neon cyborg walking in a bleak post apocaliptic landscape 16:9 "} +{"id": "5001255", "video_name": "a6037675-5291-560e-921f-f84522967185", "text": "But the seasons died by, and oddly, what we were, was lost on one day "} +{"id": "4003632", "video_name": "93234898-30f7-5c30-b8b5-f2ba1be3d412", "text": "The world in darkness and a vast abyss "} +{"id": "2003581", "video_name": "e5e16010-ceca-5762-88d7-2f9ca2073cd5", "text": "a Cruise ship swimming at the Bath Tube Aline a Runner Duck "} +{"id": "7002084", "video_name": "f3b0780f-3781-58f5-b0f1-96b073057c57", "text": "super car driving through the mountains. The car is blue and turquoise with a spoiler. There is a logo on the side of the car which is Cerberus a 3 headed dog. The colour of the dog is gold. There is a sunset going down the other side of the mountains "} +{"id": "2004853", "video_name": "5255970a-b176-5d68-9095-f236b3991dd8", "text": "cannabis plant growth process in a field, time lapse, from small to large "} +{"id": "1006038", "video_name": "6ee2beab-5cbc-5e25-8f9f-da5244a94798", "text": "Display the young boy approaching Nani with an inquisitive expression on his face. Highlight the contrast between the old Nani and the young child. "} +{"id": "1005936", "video_name": "6d15617a-4fad-57e4-aacd-d9506faedcdb", "text": "a good round clear cell floating around with bright background "} +{"id": "4002166", "video_name": "de614fdf-ba68-5ac0-a186-1af5b8821998", "text": "clouds opening and showing a city underneath "} +{"id": "6003203", "video_name": "cc26cb27-0791-5495-8d92-c28c0f09656e", "text": "Young Boy as a. cartoon figure guessing questions at his desk "} +{"id": "7004093", "video_name": "9c51d7b4-d767-56f2-8ccb-54af6cf4b77c", "text": "green moss texture camera moving left "} +{"id": "7004929", "video_name": "47559a07-1eb9-59d0-a61c-d25778add8c5", "text": "an incredibly epic video with a villain character "} +{"id": "1003386", "video_name": "3e5e7d66-4357-57f8-86be-c24a0f7c8e8f", "text": "A small, glowing word floats above the city, eyes closed "} +{"id": "4004032", "video_name": "13af0b21-f0a8-54e1-a41d-23c8d35f5ad3", "text": "PREGNANT MOMMY GENERATING THE LIGHT OF A BEAUTIFUL BABY "} +{"id": "2005339", "video_name": "2325c656-76ec-5c26-b047-7ec86be55a85", "text": "rowing down a river in a medieval town "} +{"id": "7004535", "video_name": "78547923-7111-53dc-9a90-c6d6b6cf89ab", "text": "introduction speech for the presentation of a compagny "} +{"id": "3005641", "video_name": "b1c6630b-d723-5294-8abb-e43538fa92d8", "text": "a Youngman throwing water on other man in a marriage ceremony "} +{"id": "8001010", "video_name": "864ea5b0-84d7-5bb1-90ad-c89b6b9ec568", "text": "create a picture with the following words se motiva por el deseo de lograr, no por el deseo de vencer a otros. "} +{"id": "8003453", "video_name": "cc0b24f0-630e-5efd-9964-416f27b97c16", "text": "Create an image of an advanced lunar colony with luxury facilities and recreational areas. It tells through the image about the modern and comfortable life on the moon. "} +{"id": "1005772", "video_name": "6a393ee2-520e-50b3-9769-abf6d545a64a", "text": "Show trees being cut down and forests diminishing in anime style. "} +{"id": "1006097", "video_name": "6fce10e4-a10c-56ef-92c0-1a7e7c69dbe7", "text": "lots of gold rotating around a pack of diamonds "} +{"id": "0004367", "video_name": "07d77af4-21f0-55b9-a5ca-e0ac7ec343bb", "text": "Titanic shipwreck, iceberg collapsing, ship cracks, birdseye "} +{"id": "1003587", "video_name": "4203bde1-5770-5cf7-8385-89a06ea0cd4f", "text": "Parents playing with their children, laughter filling the air. "} +{"id": "7003865", "video_name": "db8f3e51-b023-5b60-b0a2-60f665070311", "text": "unbelievable machine cleans the dishes zoom hybrid very fst "} +{"id": "3005534", "video_name": "badd7329-f7ac-58b9-8c0d-dae1592e027f", "text": "standing beside a wet glass window "} +{"id": "2007187", "video_name": "dbb16014-4b1e-5158-b00c-d6123cc467c8", "text": "this image with better quality Message: 1 Attachment "} +{"id": "8001707", "video_name": "89eee424-037f-55f4-ace0-5e49d9cfd421", "text": "two annimated boys sleeping side by side\n in a forest face visible filter realistic "} +{"id": "7003637", "video_name": "5aa213d6-a49c-5fae-8140-43ee30f54635", "text": "the boy is saying thanks to old man in book shop.zoom in "} +{"id": "6003840", "video_name": "3998b26b-fe45-51b5-8586-f2af50f3b60b", "text": "a child begins to study financial literacy through a laptop screen while sitting on a chair at home "} +{"id": "6004925", "video_name": "ee91aa7e-962a-5a19-8c76-165e6d42af9b", "text": "Couple in a cafe with snow outside, 1950s movie style black and white "} +{"id": "5001425", "video_name": "505b17aa-a216-58fd-aec3-cffe0bb786ba", "text": "cinematic creepy video of a masked figure walking in an old scary house, realism, detailed, horror "} +{"id": "8003782", "video_name": "92962579-f7e4-58c4-a97a-313a3e82e1bd", "text": "Anime style, epic, close up to eyes, awakening, power up scene wearing a black sweater, slightly spiky brown hair wearing black hood, gray sparkling eyes, surrounded by black magic aura, "} +{"id": "4004471", "video_name": "adf3e265-f393-580d-b649-dff52ec0995a", "text": "a little girl running into a big Disney Castle "} +{"id": "2003686", "video_name": "9786e894-abaf-5fa1-b6f2-b4c4c6b38882", "text": "Similar to an Unreal Engine, the camera pulls from far to near, towards a pile of shimmering, regularly shaped golden bricks "} +{"id": "3004038", "video_name": "1d7a1a11-e0a3-557e-8c4c-6517758c0ee4", "text": "Imagine you are a lonly sad old university math professor. Create a video of students, confusing a circle equiation with the paskalsche triangle "} +{"id": "3003878", "video_name": "0985438d-d2a6-5654-9528-e5e4b5619014", "text": "A man and a woman exchange 2 large hearts with each other "} +{"id": "5001693", "video_name": "b801595a-395d-5f28-bd65-9bac93f3ff04", "text": "a desert scene, a tic tac UFO lands with landing legs on an arroyo in the afternoon, 4 small aliens are outside the ship and a police officer wtih a cowboy hat outside of his patrol car sees the landing from a short distance. Make the image realistic "} +{"id": "1004248", "video_name": "4ea11d56-74a9-5ee3-9664-6a2ac1544ebc", "text": "a frog chasing a ball on the moon "} +{"id": "1003401", "video_name": "3ec65f90-2714-5e43-99a7-4a36ce06a917", "text": "contemporary pavilion and dynamic form made from coloured glass motion 0 "} +{"id": "1003472", "video_name": "404ebf02-11f7-5b0e-a2e4-b2f25a4aa954", "text": "two student walking, and talking earch other on the road, huge buildings on both side of road, "} +{"id": "2005820", "video_name": "fb149865-0b16-5ae7-a31d-d41eb6eae0e6", "text": "The wise old feature phone ar 16:1 4k "} +{"id": "0003770", "video_name": "4308588a-3af8-502e-9e09-33c8e41fde9a", "text": "A mouse holds a cigarette in its mouth, wears sunglasses, and looks at the moon in a moonlit field, generating a picture "} +{"id": "6004898", "video_name": "d04df5e0-a3f5-5948-8893-10436d28a8f2", "text": "adele in the woods at night "} +{"id": "0005058", "video_name": "13e796f9-be9f-58d4-b889-b3182b99ffd4", "text": "solar home converter day to night "} +{"id": "6003913", "video_name": "57419f55-378a-5483-b7cc-9b102f43fa41", "text": "a matrix movie style pick the blue or red pill scene "} +{"id": "3004602", "video_name": "e7afef19-7bbe-5ced-8371-3ae488b183a3", "text": "anime young man asked a girl in school "} +{"id": "3006533", "video_name": "a27bafce-f4d5-59cd-a219-364b1f2b807e", "text": "Wood Mannequins dancing on techno music "} +{"id": "7003354", "video_name": "2b5b0550-b3be-5788-ab69-b90c7487d3ce", "text": "i run long jumps over fallen trees, anime, sunny day, triadic colors "} +{"id": "0004770", "video_name": "0ef49594-c0cc-55c6-bbb5-beaf4ad3a0c8", "text": "pop up book with a library building folding out "} +{"id": "0005265", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "flowers coming out of a high fashion handbag, white background, studio lighting "} +{"id": "1004528", "video_name": "541e6b20-a912-5b59-a3f5-762a0ae1a222", "text": "750s dancers red and white garments riding a lowrider in the bronxr gloomy dark horror scary occult film "} +{"id": "2007049", "video_name": "fa655004-d985-5b5b-b0a1-97a102415c0d", "text": "Represent the evening in the village, with the mountains, houses and paths illuminated by soft light and rain. "} +{"id": "1003395", "video_name": "3e9d0d13-7ffc-5b1f-ad81-9eba399a4f06", "text": "a romantic couple is riding a motorbike in a very beautiful hill station area with having a great time with their partner "} +{"id": "1003867", "video_name": "47473c57-a1d8-5689-aa1f-6518366ee566", "text": "A rapidly melting glacier, showing the impact of climate change with ice cracking and melting into the sea. "} +{"id": "4002533", "video_name": "b10d8b1a-d74b-5e0b-adbb-c13a42669622", "text": "A Gundam robot slowly sinks to the bottom of the sea "} +{"id": "6003449", "video_name": "35a770bc-7004-5298-84d2-60310699ec91", "text": "Apollo 11 flying through space heading to the moon has communication problems, every second is crucial, every decision a matter of life or death. cinematic, \u2013\u201316:9 \u2013\u2013 "} +{"id": "4004187", "video_name": "fe4d2efb-aa64-59be-8c5a-a0731d1c0502", "text": "1985 Footage of inside of a ufo "} +{"id": "1003810", "video_name": "465a8a98-3d4a-5b13-9982-e9aaf80a4c6d", "text": "the face of the man is sad, he is wearing a hat "} +{"id": "5001075", "video_name": "b4310d3f-fd89-5312-bcb3-68d68674d29b", "text": "blue sky with fluffy clouds, high contrast, 4k UHD Message: CLIQUE AGORA (Font: MODERN) "} +{"id": "5001210", "video_name": "dc258e5c-5d46-5519-a047-f4ff798aa794", "text": "Heartbreaking Goodbye:\n \u2022 Separate images of Arjun and Sneha, both with tears in their eyes.\n \u2022 A broken heart symbol or image to depict the pain of separation. "} +{"id": "2003775", "video_name": "03f3bafd-0e46-5a30-9bfd-08364668d5e9", "text": "A young boy discovers an ancient artifact pulsating with power,studio mappa "} +{"id": "4003457", "video_name": "cc7397fb-242a-590b-8634-fa9076d94d64", "text": "a valley at night, with a sky full of stars and in the middle of them the sign of scorpio Message: bianca (Font: BAUHAUS) "} +{"id": "2004477", "video_name": "ed73b465-680a-57a3-aa25-a30d0c063e3c", "text": "man jumping from waterfall, third person view. "} +{"id": "3005058", "video_name": "83b99d0f-d364-50ad-8ba0-8b04f3f72c4a", "text": "image to animation experience the charm of a traditional Indian village brought to life in stunning detail through the magic of cinema 4d form the intricate hand carved design on the house to the bustling cobblestone streets every aspect of this image will coptivate your imagination "} +{"id": "3006949", "video_name": "2f65a787-8b25-5f95-855c-132fd8822533", "text": "a big dolphin swimming in the sea with its 2 kids "} +{"id": "2006599", "video_name": "43d5afe4-ad9e-5f2f-a749-dc29ae13cccc", "text": "santa with money and jewelry driving a car "} +{"id": "2006984", "video_name": "0bd9b53d-27e4-56d2-82ee-91deb280344d", "text": "raw red meat on dark background Message: E (Font: MODERN) "} +{"id": "1006334", "video_name": "73e5ea0f-5bbe-5ffa-9007-810c036e6267", "text": "A young man wearing a black hoodie at night. In a dark, fallen place, photographed from above "} +{"id": "2003861", "video_name": "3ed7f02b-708a-5143-83a8-827d7fffa3ba", "text": "boy happy and japping out side camera angle up and moving "} +{"id": "7004710", "video_name": "18e3adb4-43e6-555d-b1f4-6dc0b0f19c91", "text": "an cinematic desert in a castle inside and some birds escapes the castle and someone is walking in direction of the castle "} +{"id": "8001464", "video_name": "74093271-9a25-59c8-a1fe-4195729867ad", "text": "a piece of sky is falling off "} +{"id": "3003491", "video_name": "98736a4e-7695-5180-a982-7c7293eb47dd", "text": "white papers flowing down in empty room "} +{"id": "3003360", "video_name": "b396a67a-ddfe-5940-b38f-f12d4f4aa830", "text": "1950\u2019s technicolor cinema very creepy abandoned western town under a full moon "} +{"id": "0004464", "video_name": "098105dd-f948-59af-bfba-73cc320e3114", "text": "Biblical story, Joseph receiving a colorful tunic from his father, arid land, biblical times, period clothes, ultra realistic, 8k "} +{"id": "8002647", "video_name": "e72e0c50-7166-5bde-b3d5-1d8ec7b517aa", "text": "sexy girl on the beach, top model "} +{"id": "8002247", "video_name": "1df8eade-7700-5d60-9c24-9bf13f39c306", "text": "cyberpunk headphone girl stand in Cyberpunk Tokyo, Rainey night, neon, "} +{"id": "2004105", "video_name": "4edcd02d-1b00-585f-9e4f-27422cecf39a", "text": "orange dog on the top of a blue mountain 3d cinematic realistic "} +{"id": "3004950", "video_name": "9e9f4e12-af32-53ff-af41-217a142bd834", "text": "The protagonist rubs their hands together vigorously in an attempt to keep warm. They pull their muffler tighter around their head to shield themselves from the biting cold. The camera focuses on their chattering teeth. "} +{"id": "2003254", "video_name": "d0a8570f-bd7c-53da-9088-2e07f32c5fac", "text": "burger food Message: smart (Font: MODERN) "} +{"id": "2003555", "video_name": "abf9d740-138d-53a2-80eb-e92b279c0a6f", "text": "night, girl lies on the roof of an old skyscraper, fixation "} +{"id": "8001276", "video_name": "1c31cae1-074e-5651-ac9e-3abd1f914455", "text": "news show presenter presenting news on a tv, cartoon style "} +{"id": "7004380", "video_name": "a95ce121-92da-5d2a-a90a-499ee43c9815", "text": "dark castle 80s style with a waterfall "} +{"id": "4002255", "video_name": "9297144a-df72-59d1-86fa-a6808ecc38be", "text": "create picture of prince roshan along with princes samera and two servants all standing in the forest at night "} +{"id": "6003192", "video_name": "c6d43ce1-649a-54a7-ab29-9b1fd511fd3a", "text": "a freighter sailed from port. overlook. Sunny day. "} +{"id": "1005543", "video_name": "660d8abb-fac0-52da-a9d8-1669b83e1a51", "text": "no more nft minting animation inside a hourglass "} +{"id": "3006356", "video_name": "104f08af-d5f5-5d69-83af-feb8e601564c", "text": "The gold and jewellary seemed to replenish itself whenever they shared it. The more they gave, the more it grew. "} +{"id": "3006715", "video_name": "0371b552-f5e0-5b81-9285-09c479fa823b", "text": "a little girl called Ana with friend Jack, red hair, blue eyes, white cloths, japan village background, style Hayao Miyazaki, niji "} +{"id": "6002847", "video_name": "5f4a446d-76b0-59b3-a9b4-19125b0d759f", "text": "Remove text to make the food look more delicious. "} +{"id": "8003680", "video_name": "fb7bf90a-b3ce-5a32-b8f6-9995e60ef132", "text": "create a man with a guitar for a leg "} +{"id": "3003508", "video_name": "91da0aff-f4bd-5c4d-a1ec-9c4348aeb0cb", "text": "a computer virus caught signal and shows an subjective truth how the world going on "} +{"id": "6004937", "video_name": "bde8570a-7222-5c6d-b9aa-1a6a1f0f819d", "text": "jesus read the bible ultra realaistic "} +{"id": "1006979", "video_name": "7fbb649f-b296-50f8-a61c-293905fc2fbf", "text": "a young man with solid personality walking in tothe thick forest with back to the camera from down to up ,hd.4k resolution "} +{"id": "2007709", "video_name": "66fe12b6-54b1-5f76-af95-3798eb7ee04b", "text": "banyan tree, water wharf, communal house yard viet nam "} +{"id": "6002488", "video_name": "fdfad6cf-13e2-5755-94f9-91f76dbfe956", "text": "young man reading a book with sun coming from the windows and a cup of tea besides him "} +{"id": "4002795", "video_name": "a931e40d-f2e8-5132-8bbf-2b96f5696ee3", "text": "3 synthesizer players, one female singer "} +{"id": "2007779", "video_name": "aeb2867c-1db1-522d-8c4d-c9627c5f2644", "text": "blue free hair red eye smiling pink tshirt black jeans pant beautiful girl "} +{"id": "0003185", "video_name": "38f1cd2b-645e-5a98-8eed-b2b83983688b", "text": "scary cinematic new disney kids character "} +{"id": "8003417", "video_name": "ff257e73-e9db-57af-9867-62a443f21123", "text": "Tanjiro and his friends are on a mission to defeat Muzan Kibutsuji and cure Nezuko. However, along the way, they must face many challenges, including powerful demons, internal conflict, and the harsh realities of the Demon Slayer world. "} +{"id": "1004944", "video_name": "5b693af5-38ce-5d1d-b161-53bd82bd9394", "text": "a young boy holding a bible and rosary walking in a dark road, his shoes are emitting light. "} +{"id": "4002463", "video_name": "36cd51cc-9bee-5e31-8189-57adc46fc5de", "text": "transform the image into sute animated character "} +{"id": "1003508", "video_name": "40d5ee73-377b-5b49-b6ee-444ac9339b61", "text": "two eyes fall down, ashes fall down "} +{"id": "1005445", "video_name": "6410f56c-bf38-5b30-9956-3e61e1f2c750", "text": "I need a Logo for Horror youtube channel , horror and scary logo, channel name hunting horrors, 3d style logo, red and black color, epic style. "} +{"id": "3003025", "video_name": "082595ad-ac6e-5a6d-9987-1e944eb012e1", "text": "an image containing a rock band in a van "} +{"id": "3004944", "video_name": "2aa13718-290d-5305-b2d7-274105f58f71", "text": "In the heart of a dense jungle, lived two best friends \u2013the lion and the elephant. They were inseparable, sharing laughter, adventures, and the beauty of the jungle together. "} +{"id": "0006522", "video_name": "2dffc99e-c2a0-52a7-896e-801a0995537e", "text": "The dragon flies away into the distance, its figure becoming smaller. The starry trail slowly fades, but the night sky remains beautifully lit. "} +{"id": "2006999", "video_name": "fb83215c-feac-5e71-9d11-34ced68eb8ea", "text": "a heavy rain falling in the night sky. Overlooking the ocean "} +{"id": "8002913", "video_name": "100e5ce5-4132-52d3-a67d-0bba24eb2a59", "text": "I want a video of rotating universe "} +{"id": "6002603", "video_name": "df18bf1c-3757-57ff-83e2-9dba222bbd9c", "text": "sophisticated lanterns with a modern twist "} +{"id": "7003813", "video_name": "aa889512-9379-5b7d-bd5a-31ce6841aaf5", "text": "Dramatic wing view of a storm brewing over the distant mountains. cinematic "} +{"id": "2007711", "video_name": "5fb5ace0-976b-5283-b74e-60fd0f7579f5", "text": "Portrait photo of an ebony woman, with striking features highlighted by tribal markings, embodying a blend of traditional and modern elements in her attire, standing tall with fists clenched by her side, symbolizing strength and determination, centered in the frame against a vast open savannah stretching into the horizon, bathed in the golden hue of a setting sun, captured from a low angle to emphasize her stature, using a sharp focus on her and a slightly blurred background, in the style of Yagazie Emezi. "} +{"id": "2006251", "video_name": "8db95fff-e9e7-5519-9e1c-2967950a1f3c", "text": ",love story, A young boy sitting on a bench in a park, looking dejected.\nThe young boy, named Jack, was poor. "} +{"id": "0003893", "video_name": "4557d86b-cb65-5ca2-bb22-4f22191f4d0c", "text": "the band the police singing I\u2019ll be watching you "} +{"id": "4002939", "video_name": "389a3f6a-8c1f-50e8-97a8-fb85eb24ad27", "text": "natural landscape of mountain and sea with islets developed into a community "} +{"id": "1003816", "video_name": "46724a47-89f6-52cd-a401-e3558f36f5d3", "text": "happy faced orange tabby cat lounging on comfy green chair, tail swinging "} +{"id": "2007264", "video_name": "f982947d-a32d-5771-8d07-bef673c31186", "text": "the scariest image a human mind can possibly think of "} +{"id": "7004404", "video_name": "9a67b9d8-e4c7-5300-aa88-01fd1f5a3da3", "text": "a beatiful farm in the background along with black sheep in the farm and farmer and his child try to catch him "} +{"id": "6003379", "video_name": "3432485c-26d8-59a7-b290-60cd0981386d", "text": "Iced Americano, product photography, on frosted grained countertop, side shot, studio lighting, Chinese minimalist aesthetics Clean, Empty, Nikon, Strong Light and Shadow "} +{"id": "0003686", "video_name": "41b2354e-2c1a-525c-9f58-3a8746341d4d", "text": "fermentation happening from the center of the frame and gets larger "} +{"id": "2007042", "video_name": "2c66d9b4-3a90-5da2-96f8-53d541dffa47", "text": "90s kids doing the Macarena at a school dance. "} +{"id": "1004649", "video_name": "56695fa6-ae66-59c9-b3d4-785ad2d894bb", "text": "Ironman flying around in satellite near space station "} +{"id": "2004223", "video_name": "c6a76069-0cb8-5716-805f-cf2d30f656b1", "text": "a doctor treating a young girl , video 10 sec long , 4k format "} +{"id": "6002508", "video_name": "86ddcd30-fa25-5617-bfcf-cd691a3251c2", "text": "a cat in a dress walks through town "} +{"id": "5001189", "video_name": "a5caeb5a-8e00-5e9f-aed7-a308cfeb2a87", "text": "a person is sleeping on his bed and a ghost sit on his chest "} +{"id": "7002981", "video_name": "b73db770-0d08-5d65-b783-ca5ed0aae9fe", "text": "The clouds drift across the sky, the water flows upward from below, and the boats sail along with the current. Message: 1 Attachment "} +{"id": "8003234", "video_name": "53779c3b-6b03-58aa-b7d2-126b2539392d", "text": "Beautiful, high quality, animation, woman, fantastic, fish swimming in air, woman looking up, red dress "} +{"id": "8003897", "video_name": "fc21c2fa-225f-5ee3-8191-e619b121e12f", "text": "nice big church,in the background people are talking and a demon is peeping from inside the church "} +{"id": "2005954", "video_name": "de50e0cf-8ed4-5d5b-892b-809dc9072ed2", "text": "I got two homeless people fighting for a bottle of vodka "} +{"id": "0005338", "video_name": "19064e05-28a0-5708-a27e-761422c52596", "text": "people making connections with their phones across a city (cyberpunk,cinematic style) "} +{"id": "0005552", "video_name": "1cbcf042-7c5b-50cf-96f8-032637ce6ecd", "text": "Aesthetic 10 minute Video of Spinning all different patterned Mandalas in Aesthetic Colors: Dusty Rose Sage Green Mustard Yellow Terracotta Muted Lavender Soft Coral Pale Blue Earthy Tones (Taupe, Beige, Olive) Soft Gray Peachy Pink. Size should be 1080 x 1920 pixels with an aspect ratio of 9:16. "} +{"id": "0006399", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "rasta lion and his family, 3 lioness "} +{"id": "3004788", "video_name": "9dd7e67d-3c36-5d73-aac5-ee0c6c065354", "text": "a girl in a solo exploring the city night life "} +{"id": "6002687", "video_name": "4deb9433-e351-5c4e-a641-a5c5ec00923c", "text": "a 3d esqueleton making a golf swing "} +{"id": "3006338", "video_name": "3491dc2a-282f-5bef-a6ba-a0496c034f8c", "text": "a picture of the actress Isabela Merced smiles and looks around Message: 1 Attachment "} +{"id": "5001209", "video_name": "fe8df3a2-5a09-515e-ad7d-2c9ca9a8aee6", "text": "adam driver shirtless in perfume ad "} +{"id": "6004095", "video_name": "6564245f-0977-55c2-970e-f2f33c09514c", "text": "The mother is holding the baby, I can feel the love "} +{"id": "1005557", "video_name": "664a7a41-e8d1-5c94-ab0a-c794aa48d89e", "text": "Huskar from Dota 2 fights with Thor from Marvel. cartoon style "} +{"id": "2006673", "video_name": "ca67ddf5-3e77-56c4-91fc-d745b79db552", "text": "anapa city in Russia. Loop animation. video: 3 frame in second. "} +{"id": "0006714", "video_name": "318de8b2-5f9f-57fa-9ec4-ad8cf2685791", "text": "Skynet as a giant cybernetic dragon. "} +{"id": "4003537", "video_name": "c50a82b7-36fb-5800-a33d-1a6d07daf3bf", "text": "anne hathaway riding a skateboard down the street "} +{"id": "3006945", "video_name": "3b524fd6-ad63-5f41-b9a0-274d55da6719", "text": "scarry one human eye looking through the dark "} +{"id": "2004147", "video_name": "f79bc4e8-f16c-5a2b-b7be-2f116308f1c5", "text": "can you add more color and sheeps to this photo? "} +{"id": "0006810", "video_name": "33724211-2c37-59a3-9652-46e84df760d6", "text": "Tagged happy builders, hundred building, high detail, golden hour, 8k, realism "} +{"id": "8002079", "video_name": "5fda7293-8edc-5939-8cbb-63d5fe824c3d", "text": "a raccon drinking tea in the morning "} +{"id": "8003101", "video_name": "d56282e5-8f75-5439-b09e-b11c807f9875", "text": "raing , dropping water from sky to earth, spleshing water, movement "} +{"id": "3005070", "video_name": "d26b2f5e-c017-5b7b-af4e-af958509f61d", "text": "Design a sophisticated, detailed logo for Estetica.ai that blends artistic legacy with modern technology. Draw inspiration from your diverse background, combining elements of Colombian art, such as vibrant colors and native patterns, with Etruscan artistic styles, like classic frescoes or sculptures. Integrate these with modern AI imagery, like circuit board patterns or a stylized digital brain. Add musical elements, reflecting your career in TV and music production, with subtle representations of musical instruments or studio equipment. The design should convey a sense of artistic depth and technological innovation, representing the fusion of your personal and professional journey. "} +{"id": "6004162", "video_name": "a9954831-9bfd-5020-ab4d-7c131404ca65", "text": "Seen from above of a city, heroic fantasy style, manga drawing "} +{"id": "1006358", "video_name": "746fca7b-1f18-5ff3-913c-e892f27959b0", "text": "background, forest on fire with embers "} +{"id": "0005223", "video_name": "16dbb10d-f374-508b-ad09-36588b8ecaa7", "text": "A brief history of the internet from 1962 to 2023 "} +{"id": "2006467", "video_name": "90faed90-4c89-5328-b7f7-ae7fe24b06a5", "text": "man touches the face of other man "} +{"id": "1004017", "video_name": "4a71cacd-9735-58e7-8b3e-018246a6b30a", "text": "inside the tube of the wave "} +{"id": "0003492", "video_name": "3e83eac7-b52f-5f2e-89cc-6420db239f34", "text": "a dynamic image of students aged 5 to 14 in an Islamic school learning with teachers guiding them. "} +{"id": "3006986", "video_name": "fbe20d97-ce4f-5b22-9fb5-6e52aaa18062", "text": "the blue suit moves his hand "} +{"id": "4003387", "video_name": "5b046026-4337-5d63-a08d-4851823c9c22", "text": "Award Winning CGI Animated Short Film "} +{"id": "8003113", "video_name": "44ef71ed-a347-594f-a403-0413a4304dfc", "text": "3d image of faulty street light at night "} +{"id": "1003932", "video_name": "489cf1f6-9887-5440-95c2-afef9b785c04", "text": "young boy in his warm winter clothes, happy playing with snow making a snowman, warm vibes, vibrant color, 8k, 3d animation style "} +{"id": "8002264", "video_name": "f75afe0d-d042-5a31-a274-3244cf0f842e", "text": "A girl wearing a hijab walking in the rainy weather and The girl crashes with a car "} +{"id": "8002130", "video_name": "469c0ad7-6af9-571f-8508-b768922be39e", "text": "a boy always wants to roam with friends and seeing movies "} +{"id": "4002049", "video_name": "efc046c6-a372-5bb7-a6ef-26d5614383d2", "text": "Me and an old celestial man in the Chinese heavens "} +{"id": "7004749", "video_name": "04f61a81-43d2-56e3-a72e-529d6f54ff3c", "text": "womans eye opening quickly, warm lighting, dark, extreme close up, dramatic lighting "} +{"id": "7003027", "video_name": "e3d00130-7b7b-5ddd-b4b1-f516fa649047", "text": "ultra realistic, firetruck , day , fighting fire "} +{"id": "5001832", "video_name": "733bd77f-1f9f-5bb6-aaea-d70db529ab76", "text": "suspense genre woman is walking away quickly from a potential pursuer while tense music plays in the background. "} +{"id": "0006056", "video_name": "25d5a02a-b64a-5a9c-9ecd-f6b7d26601aa", "text": "Masterpiece creative and highly detailed artwork, A Journey of Soulful Reflection and Empowering Growth "} +{"id": "1003953", "video_name": "48f5f803-fec1-53e3-894a-83a096d504b1", "text": "A rabbit is running on the grass, there is wind, the grass is very long, swaying with the wind, there are clouds in the sky, and a moon "} +{"id": "3006835", "video_name": "cb3acca7-9faf-599d-87e9-f044eac77089", "text": "a spiral spinning fractal pattern of Sean Connery as ZARDOZ faces "} +{"id": "8002994", "video_name": "cd21cad6-d291-54ec-93af-71d98a30a97f", "text": "man in sweater walking down a snowy mountain lantern in left hand rifle in right hand points rifle at camera hyper realistic 32k resolution "} +{"id": "7004467", "video_name": "8fa93124-7afd-54ce-920a-46b55f7ae592", "text": "A China fantasy cartoon man, with white robes and long black hair, is lying abandoned, pale, with his eyes firmly facing the sky camera, and it is drizzling in the gray sky. "} +{"id": "2004104", "video_name": "ba389121-ec54-5e86-b032-d656d7167502", "text": "ginger fairy running through a forest, cinematic, lotr, fantasy "} +{"id": "7002830", "video_name": "56ae8d98-6971-5c4f-ba4b-b8ba49b8857a", "text": "A happy robot artist wanting to help the viewer. Message: 1 Attachment "} +{"id": "3003748", "video_name": "cacb7e6d-c5cd-5318-96b2-68efaba9f92f", "text": "Outside a store you can see how many people enter "} +{"id": "7003312", "video_name": "ed48c519-e37d-5ad9-b5cc-32691ae68145", "text": "A group of people walking out of a forest "} +{"id": "0003117", "video_name": "375d489b-2b2f-5f57-9772-6dd685b8733e", "text": "16mm Create a scene in a spaceship corridor, styled in 16mm film for a grainy, suspenseful effect. The corridor, narrow and dimly lit, should evoke a sense of claustrophobic dread. Suddenly, a menacing alien demon moves swiftly from one doorway to another, adding an element of liminal space horror and existential terror. "} +{"id": "3005354", "video_name": "03c0472e-80f9-59f5-a7b9-9de7992c0f07", "text": "a boy standing in meadows , ghibli style , wind is blowing , grass moving , beautiful scene "} +{"id": "2007253", "video_name": "ceaad322-3b94-5a93-833e-75c50362d802", "text": "still life from dna Message: 1 Attachment "} +{"id": "3003593", "video_name": "484b9f86-b86f-5c21-86f1-4a68baf2d2c9", "text": "In the heart of the park, people and families gather, gracefully kneeling down in reverence. A collective hush falls, and a sacred ambiance envelopes as they engage in heartfelt worship, connecting with each other and the divine in a tranquil, communal gesture of spirituality. camera zoom out "} +{"id": "8003062", "video_name": "234ea153-adbf-58bb-93b4-9357d15fe16d", "text": "chota bheem throws ironman with his barehands "} +{"id": "8001590", "video_name": "99d4f2cd-d95f-515c-8bdd-9d3688a670f2", "text": "small sandy island with palm trees, sunny day, turquoise water, holiday feeling Message: HAPPY DAY (Font: BAUHAUS) "} +{"id": "3005904", "video_name": "e5deee3b-57f8-50c8-9662-f8fd79de750f", "text": "Man walks through the desert, vultures circle over him "} +{"id": "3003421", "video_name": "1d9d44b3-b087-54d0-ad27-35ab5a2fe110", "text": "camera following behind a flying bird above a sea of clouds, sunny day, dramatic lighting "} +{"id": "2007585", "video_name": "f06b1a85-7c41-50ba-8ac6-a88bce5d5d76", "text": "Introduce the character walking into the garden, smiling, and radiating a sense of inner peace. "} +{"id": "1005078", "video_name": "5da5558e-7ef1-5f8c-add9-ec9dc0fa7502", "text": "phone placed on the floor and I go inside and see all its applications "} +{"id": "4003895", "video_name": "fea5745b-dfba-555a-8618-6966038661e7", "text": "prompt: a girl walking on the beach , looking at the sea "} +{"id": "1003283", "video_name": "3c62cf1e-25b6-5028-82c4-5a7de56bea26", "text": "A spacious garden with a variety of flowers and trees, and a few happy birds jumping on the branches, Look thinner, rococo style, 32K, high detail "} +{"id": "6004809", "video_name": "d8d91761-6989-5fa2-9ac1-268210b1414b", "text": "The breeze blows through the water towns in the south of the Yangtze River,Ink painting "} +{"id": "5001440", "video_name": "f222f88a-157e-52d0-ac2a-752a7d8bd837", "text": "3d clouds style Message: ThiRYayi NeE (Font: BAUHAUS) "} +{"id": "3003777", "video_name": "118ff91c-3bce-59b5-99a6-92df601819f7", "text": "alchemist seeing an ancient kingdom in the moonlight "} +{"id": "8002822", "video_name": "def79cb6-1d5a-5ef9-9aee-656cb68a8342", "text": "Pool grass Message: Junio (Font: MODERN) "} +{"id": "2005293", "video_name": "5ed05af2-8a54-5992-bd92-0482997656a6", "text": "CONTROL YHE MONEY OF THYE WORLD , "} +{"id": "3003657", "video_name": "0212be59-fd54-5de3-ae78-13a21b081a6e", "text": "Generate something with creatine powder and bottles in full hd 19:9 ratio "} +{"id": "8003909", "video_name": "fec0c070-7aa7-5511-853f-aa22056de438", "text": "a table full of food in ancient bible times in jerusalem, pixel style, disney 3d style, excellent film style quality "} +{"id": "2007952", "video_name": "8de0d15b-3172-51d7-a02f-b45f5eb4f880", "text": "highly detailed, backlit realistic earth with a golden glow on top, starry background, ar 16:9 "} +{"id": "1004580", "video_name": "552ce0a8-7d80-5d2d-b697-2c9e220392da", "text": "a puppy play with a cute girl, there have some flowers around their side "} +{"id": "3003035", "video_name": "558dcb59-7563-5369-bc33-33a3383021f5", "text": "Beautiful beangali indian girl in traditional red and white saree walking in the kolkata streets in the festive theme for the pujo view from back side and with letter BBOLD on the sky "} +{"id": "7003497", "video_name": "831c794f-502a-53f9-b221-dc7904728e4f", "text": "In a dark room, a man lies on the bed "} +{"id": "0006929", "video_name": "3572a30f-af11-53ac-a5c7-3af0a0470e44", "text": "fisherman, with a surprised face looking at the net "} +{"id": "0003252", "video_name": "3a10d3c6-c3d7-5c82-9570-639eab234675", "text": "Technological lines, with electronic, digital circuit,more purple, lilac and white and blue strokes, neon decorative style, flat view look from abovedefined stems, highly detailed, 8K Ultra HD, black background "} +{"id": "1006595", "video_name": "78d7bebc-b1ef-5320-8161-505fab96f67a", "text": "thanos with infinite stones in hands Message: 1 Attachment "} +{"id": "1005494", "video_name": "65065ec6-ccd2-57eb-8d16-3c015bb20b81", "text": "sitted news caster lipsing high definasion video "} +{"id": "0005847", "video_name": "2230cd40-6583-5b6d-a162-4855a4402890", "text": "leo messi running on the socer field palying soccer, "} +{"id": "7004124", "video_name": "9dfe0746-fa69-5296-a7cc-18995c76ee4f", "text": "Young brunette standing on the road and holding a poster that says kenshi "} +{"id": "6004473", "video_name": "b5bac4ce-7627-5558-945b-9c3506b3e05b", "text": "New beginnings are often disguised as painful endings. "} +{"id": "2007530", "video_name": "a3d92ace-0206-5dfd-a704-88647404398e", "text": "Action shots of Karna and Arjuna exchanging powerful attacks "} +{"id": "1003797", "video_name": "462a4f0f-fbd6-5f96-92fc-536b177416b2", "text": "Do you know? Earlier in the world, only 5 MB of data could be stored in hard drives, nowadays the size of a photo taken from a mobile is more than this. "} +{"id": "4002497", "video_name": "d0ba03c5-aa75-56ef-a192-28b903de1f67", "text": "a robot opening its luminous eyes, uses blue and dark colors, zoom in, 3D animation, cyberpunk. "} +{"id": "8002256", "video_name": "17ea36f1-db90-5fe1-8192-3558465fa577", "text": "The opening shot of the Hidden Leaf Village bathed in the warm glow of the setting sun. Uzumaki Boruto, the protagonist, is seen running through the village streets. anime style "} +{"id": "8001003", "video_name": "b99e336d-bc7f-599e-a833-8b801d85556f", "text": "gs 40, animate, african children happy, taking and aventurous journey through their amzing royal history, no deformaties "} +{"id": "3004287", "video_name": "c747e0b6-98ef-5943-a52a-116a41c1fd73", "text": "Students filming in the studio Message: Multmedia support (Font: MODERN) "} +{"id": "3004365", "video_name": "cde14340-9712-5952-9425-ea2fcba1e970", "text": "emotional lady in the floor after burst of anger, cinematic, HD, dim lights. "} +{"id": "3005996", "video_name": "bf8a5d85-2213-5048-aceb-0da73a5d3451", "text": "in Ajarakh Print Message: Bharat Expressions (Font: BAUHAUS) "} +{"id": "0003284", "video_name": "3addec01-5f40-57b4-8400-bd6265d490ef", "text": "a flying dog on the space with black glasses "} +{"id": "6002873", "video_name": "cb7c3ce2-7998-5891-baf1-63e4ec6161bf", "text": "abstract mathematical robotic creatures at war with the clockwork elves "} +{"id": "2005016", "video_name": "c8efb4b1-c76a-5cfc-b2e6-2a563c55ae1b", "text": "white sphere with wings flying and ascending above the clouds "} +{"id": "1004412", "video_name": "51869270-9dec-5a80-95ea-98a7a0976a5a", "text": "Interaction with the Locals: Messi humbly interacts with the locals, providing autographs, taking photos with children, and creating moments of joy. Despite his unusual presence, his charm successfully lightens the atmosphere in the small village. "} +{"id": "4003203", "video_name": "c300211d-c191-591b-8c32-1ea095725790", "text": "God, in the form of a seraphim, presenting the letter to the recipient. "} +{"id": "6004389", "video_name": "99f92577-8e6a-5cc1-a009-a16a99892a4e", "text": "a squid is moving in the water "} +{"id": "7004289", "video_name": "9072c3bb-33db-5dbd-b7de-594f11d45e56", "text": "pixar style animation film for children about a car Chevrolet in Uzbekistan "} +{"id": "2006126", "video_name": "f271864b-ed22-53d1-a0bd-08201bc288eb", "text": "a photo of a ominous crow flying above a scarecrow in a field "} +{"id": "1006591", "video_name": "78bf166d-2088-5195-b241-01d29460b858", "text": "An anime character is studying from the computer with headphones "} +{"id": "0005036", "video_name": "1388a2f4-140c-5ee2-8d03-5079a0d1f6e8", "text": "brooklym bridge on fire cinematic cinematographic movie scene "} +{"id": "2003205", "video_name": "002bdf50-8649-5417-a3a1-4eb5e211fda2", "text": "Cat and Enough are sneaking around in Special Forces costumes "} +{"id": "5001654", "video_name": "0fa659a7-5ec5-548b-ae38-38f93917903d", "text": "8k, people looking scared at a beautiful ghost woman in the farm room "} +{"id": "1004230", "video_name": "4e5144b5-a130-5023-8080-c18d58770f69", "text": "black forest at very dark night with a full moon in the sky and stars causing a feeling of melancholy "} +{"id": "1003700", "video_name": "4443efa3-3952-5250-8082-d2aa83cb5912", "text": "We\u2019re moving down a dark corridor, then, emerging from the darkness, ice blue eyes. "} +{"id": "0004207", "video_name": "04fc58aa-6015-57aa-a530-058c7962b689", "text": "As the townspeople marched towards the Haunted House, their crosses glinted in the moonlight, ready to battle the evil spirits within "} +{"id": "2007340", "video_name": "ac684c06-63f7-5559-b6bf-641bcdd0581b", "text": "A night elf walks on the vast land, feeling the chilly wind blowing his clothes. "} +{"id": "1006587", "video_name": "78a8a03e-2e4f-5218-81dd-94f3a663754a", "text": "Jesus stands outside of the tomb of Lazarus calling him to life "} +{"id": "7002561", "video_name": "35d905f5-0365-59fa-8407-2d9467f9cb9e", "text": "a lamborghini racing in a desert. "} +{"id": "1003098", "video_name": "3909ec5f-1f02-5241-9561-1d192670a7dd", "text": "a party of animals and frogs dancing with pastel colors aesthetics comics with pastel colors full hd defined style illustration full hd extta details, well defined lights and contrasts "} +{"id": "7003445", "video_name": "a466d7a6-396f-517f-a833-89963a833930", "text": "A man in an elegant suit standing on an avenue where there is a puddle of water on the road buying a magazine while standing next to his elegant car, another vehicle passes through the puddle of water and raises a wave of mud that is about to fall on the guy who is in a suit "} +{"id": "1004170", "video_name": "4d3b2393-c2a9-595d-ab9f-3599a2f0a00f", "text": "a old lady from an indian village who is saint "} +{"id": "2006911", "video_name": "1583d0e4-117b-562b-98d8-eb438ba2007c", "text": "best computar in the word or in the intayar univars "} +{"id": "3005190", "video_name": "ca037e6f-1595-5d26-a1db-4afb98e16648", "text": "The Millennium of China through Documentary "} +{"id": "2006890", "video_name": "af31f102-2aee-5411-a967-0846a38653a0", "text": "inverted tower living cybersonic tarot card "} +{"id": "4002856", "video_name": "1cfb2af8-bf13-5853-994d-1cd712928875", "text": "traveling to another universe trough wormhole "} +{"id": "7004340", "video_name": "2fe52734-0d67-5fff-aa49-a6e2dd8856b9", "text": "a Maltese puppy bounds through tall grass "} +{"id": "3005102", "video_name": "8779bd26-2bf8-5ca9-b08a-0e8a38d1c82e", "text": "sunny mountains by the river Message: JAVACRISTO (Font: MODERN) "} +{"id": "3004323", "video_name": "641e70ab-0624-5c8c-8d76-95722a54d5bb", "text": "using the image create an AI version with the person moving closer to the screen waving for 3 seconds and then turning away from screen "} +{"id": "0004884", "video_name": "10dd9cda-1dd6-510e-b20a-b95821dac18c", "text": "At the deepest part of the ocean, a giant eye gazes upwards, waiting for any intruders to approach. "} +{"id": "7004847", "video_name": "9e2bbea8-601f-5091-8c7f-0167a9a11204", "text": "a horse wearing high heels and a beautiful flowing blonde mane walking through san francisco "} +{"id": "3006359", "video_name": "87b34829-5feb-5acd-82ba-cbdf76d7b9a7", "text": "Mount Everest, which stands in the Himalayas on the border between Nepal and China (Tibet). Its official height is 8,848.86 meters (29,031.7 feet) above sea level "} +{"id": "1006723", "video_name": "7b320b57-2de6-5542-9dbd-8b82c46f3097", "text": "capture the ghosts in the room around me "} +{"id": "3004703", "video_name": "b39a4b02-a20e-5783-bd86-a0a347dcad50", "text": "Two dots which represent people. One dot who is red in color is angry at the other dot who is blue and jumps on the other dots head. The blue dot turns red. "} +{"id": "5001014", "video_name": "2523803b-6a23-51e6-a9f2-9a9a576ed214", "text": "During the introduction, use dramatic visuals and effects to convey the electrifying theme and atmosphere of the episode "} +{"id": "3003157", "video_name": "c0f8bbb7-7336-5f73-bf78-0f7946fb2448", "text": "Illustrate the ghostly emergence of the Specter from the fog.horror,fearful "} +{"id": "8001669", "video_name": "800e3485-66d3-5698-bc3c-f2986cc2e26b", "text": "trees, flowers, fauna and flora moves by the breezes, realistic, motion , 8k,9:16 "} +{"id": "0005321", "video_name": "18940d42-a5ff-5e33-bb55-cc6b7ddaa074", "text": "Woman in stuffed rabbit costume With red eyes very well detailed scary environment "} +{"id": "1005146", "video_name": "5ed6b888-afad-54ca-826e-908bd66deb9d", "text": "Moonlight reflects from the background, ocean waves, sand, Message: GuVeR (Font: MODERN) "} +{"id": "7004918", "video_name": "2e8a27e8-589f-5c59-983e-d972fe8bd39d", "text": "boat floating in cove, fall weather "} +{"id": "7004757", "video_name": "c1028056-0046-52e6-a93d-a81e94cd610d", "text": "video on using ai to make a dropshipping store "} +{"id": "7003508", "video_name": "d61fc01f-2c07-5a15-a3fc-cedf10610292", "text": "guy falling from a tall height "} +{"id": "1003578", "video_name": "41ef5864-0a5b-55ac-be0b-6fb310d16201", "text": "drawing on a piece paper of palm trees and summer vibes looped "} +{"id": "5001552", "video_name": "c60a755e-f44c-5542-800a-c39c067225ee", "text": "Describe the moment when Leo the Lion hears a faint squeak for help and follows the sound to find Remy the Rat trapped under a fallen branch. "} +{"id": "3003233", "video_name": "04827b1d-4e59-5380-8227-d1cc7c64f340", "text": "Embark on a journey of discovery "} +{"id": "1003054", "video_name": "38297759-4e1c-5791-9924-4b782fd20f5d", "text": "birds fly over the trees in the country "} +{"id": "2005140", "video_name": "39a640fa-7911-5287-ad78-d2c8616e0cc7", "text": "dancing moon in the night sky "} +{"id": "3005236", "video_name": "506d0d27-9d9e-5c90-a900-a9348cef4bd7", "text": "Grab a fresh lemon. Lemons are packed with Vitamin C, which brightens and tightens your skin. Squeeze the lemon juice into a bowl. Add a teaspoon of honey. Honey is a natural humectant, keeping your skin hydrated and radiant. Mix it up! Apply this mixture to your face. Be gentle, and avoid the eye area. There you have it! Leave it on for 15 minutes, then rinse off with warm water. Your skin will thank you with that gorgeous glow. Share this with your friends, and remember to subscribe for more beauty tips. See you next time! "} +{"id": "4002737", "video_name": "bedbc7ec-7fa4-59a6-b041-9a07ff03170d", "text": "A magical land where a baby dragon and his mother are chasing each other.animated cinematic "} +{"id": "8003789", "video_name": "8004e008-04d1-5a45-9da5-ff56f3bad7a3", "text": ": A road with five men riding together on a single motorcycle. "} +{"id": "3004005", "video_name": "29702813-6dfa-5a0f-9e18-2d47e66f1f0a", "text": "magicians set around the ground and despalay magic. "} +{"id": "2007717", "video_name": "c9d5b900-46c2-552c-825f-e7183fa26690", "text": "A Maulana is ringing the bell in the madrasa "} +{"id": "6003092", "video_name": "78faa7d8-e1f0-5e2b-9bd1-bad285159e15", "text": "Create a disney pixar 3d style the image of a Caucasian girl dressed in harlekin outfit in blue and red colors, with yellow pompom on the two ends of the hat and three yellow pompoms in place of the buttons of the outfit, big eyes, her pupils are like small circus tents seen from above. Her appearance is stocky and her head is slightly larger than her body, her hair is brown, short, and she has bangs, a youthful and beautiful face, hands with white gloves like the character Mickey Mouse. "} +{"id": "1003601", "video_name": "4269d57c-0e19-5c73-ab91-b62b73cc6582", "text": "Danny Glover mixed with michael keaton "} +{"id": "4002137", "video_name": "099ac99a-2d4a-568a-b353-56c64bfbc653", "text": "The kitten shakes hands with Santa Claus "} +{"id": "0003147", "video_name": "380e977b-aa70-52b8-bb4b-0a970fc9b529", "text": "Ice on the prairie ice and a gusty wind "} +{"id": "6004765", "video_name": "70a2117b-91af-5774-abf9-53eda7607d49", "text": "create an ancient city with a statue of a warrior "} +{"id": "8002610", "video_name": "d1f421a7-f14d-545b-9953-c2d6f60724c3", "text": "high definition footage from inside the spaceship of an inquisitor warhammer 40k "} +{"id": "6002070", "video_name": "3aeb1e31-98a8-551b-9d87-f36e750aee17", "text": "The events of the story revolve around between the planets of the solar system, where each chapter begins with a story of life on a particular planet and how life on this planet ended up to planet Earth, so that we humans face the people of the earth, the fate of the end that other planets and their creatures faced, and how should we change this fate? "} +{"id": "6003792", "video_name": "048942ae-b22f-5008-8b24-d21e51c34376", "text": "Muskular body male at the beach swimming in the water "} +{"id": "3003730", "video_name": "b484f46e-eb10-55a1-8463-70f85a6442d6", "text": "The British Shorthair is the oldest natural English breed. There are many varieties, all with broad bodies, short legs, and short thick tails "} +{"id": "6002911", "video_name": "7553e76e-8181-578f-8f4f-c08d7f73f147", "text": "A middle eastern young man watching and smiling for thumbnail with oil field in the background, 4k "} +{"id": "4002037", "video_name": "a1359860-d2b4-516e-b430-a08a90eea082", "text": "very longnecked female with grinning face, performing contortion act bending backwards, horror, portrait, wet collodion photography by Alec Soth and Alexander Jansson, 10mm, sharp focus, in the style of Otto Dix, foggy grunge style "} +{"id": "2004684", "video_name": "62dfeab6-ccf5-5e92-bb1c-142fc75132f9", "text": "two angry alien fighting on mars realistic 9:16 "} +{"id": "2007105", "video_name": "bc30b158-8cef-5fde-92a0-a6bf0b66d809", "text": "Create a final image of people united in prayer, forming a circle of spiritual communion, while peace and hope fill the space "} +{"id": "0005773", "video_name": "21011eb9-1d5e-5963-a018-f55368876cd9", "text": "a panda in a plane during world war 2 "} +{"id": "1003193", "video_name": "3ab7bbe3-6ea4-5080-a79a-4493c70a969a", "text": "Generate an executive with arms crossed looking at the camera smiling, in a suit, behind him is a city. It is day. the style is realistic. Cinematic style look "} +{"id": "7004952", "video_name": "b81f9a26-f744-51d1-9f50-554dc0c6cf69", "text": "a tiny chihuahua, brown color, walking, 50 mm, pixar style, motion 4 "} +{"id": "3004132", "video_name": "4068d33d-227f-5466-9674-3b6ab50ecb6c", "text": "Astral Surfing on Neon Waves: Show surfers riding radiant, neon waves through a cosmic ocean, adorned with surreal aquatic life and celestial phenomena. "} +{"id": "0005483", "video_name": "1b94ffb1-d286-51c1-b2b0-2d4c44c3a906", "text": "3 nodes drag and connect with wire. "} +{"id": "6003337", "video_name": "d55778e7-6c2b-5890-888f-af8fe88f7037", "text": "A guy named Ranak would attend any gathering. Ranak was frequently the focal point of any new romantic relationships in town "} +{"id": "8003400", "video_name": "ea8c7031-1b41-582f-9d58-a72fd5c807fc", "text": "sunny day, sand beach, mild wind "} +{"id": "6003715", "video_name": "6674355d-8a4a-5da3-a0ec-575daf8a5c16", "text": "tattoo tool Message: KRUKOV (Font: MODERN) "} +{"id": "8002063", "video_name": "1bfb3e46-fc64-5c35-9fc0-00dfaa6c22f1", "text": "Create a depiction of the Malaysian health team arriving in the village with medical equipment, vaccines, and smiles. Show their spirit of collaboration and dedication to combat the measles outbreak. "} +{"id": "2007084", "video_name": "1fd5e1ab-6e38-5bf8-bdd5-cd675af6361f", "text": "a huge pile of musical instruments, gitarrs, and whiskey, tellinger, Message: Johan (Font: COMICS) "} +{"id": "2003064", "video_name": "7841bfdb-e7a3-5e1c-ad2e-5f6c1542daeb", "text": "a guy praying to lord Hanuman, ultra realistic,4K "} +{"id": "3004396", "video_name": "9ad7f76e-9801-5937-9674-de57994f662c", "text": "young chav man and woman in a tracksuit on an English street hugging each other and smiling "} +{"id": "2006955", "video_name": "3f16ab6c-b9ae-5c34-815e-c1d5d1414687", "text": "Remy using a tiny telescope crafted from a discarded pen to scout out potential cheese sources.Animated cartoon "} +{"id": "6003469", "video_name": "c48f34d5-f9db-5e91-b773-838b6c697ec3", "text": "fall and rocks with the waves of water, trees in the fall, 8k resuloution , green ground with grass "} +{"id": "4003326", "video_name": "98d1f129-5f10-5be5-a38d-1ba8dfeae776", "text": "Two Samoyas were running on the grass\uff0c4k "} +{"id": "1005368", "video_name": "62b63c27-1b0a-5a43-b027-51a45e7506ea", "text": "Reveal the glittering gems in the treasure chest with a sparkling effect. "} +{"id": "1005047", "video_name": "5d547992-f842-5b38-8632-efc7fd678209", "text": "a cat growing wings and learning to fly "} +{"id": "0005980", "video_name": "24599e4f-3e46-59bc-aab4-3024ef20c5bf", "text": "The room was covered with a complex system of electronic circuits, electric currents flickered and glowed, and major components were facing the screen,powerful current flashes VFX in the center. "} +{"id": "1004876", "video_name": "5a16880c-6d90-5256-b833-9126b1737d5b", "text": "man in cowboy hat throwing lamp at wall "} +{"id": "0003635", "video_name": "40d5de7b-9d79-5b55-906d-0a25b1e730b1", "text": "cinematic little girl wearing an old victorian costume opening the front door of a big mansion "} +{"id": "1005497", "video_name": "6515fe0b-0c81-5b69-b575-adad7b127353", "text": "An astronaut stands on the moon with an Ak47 in his hand and fights a monster "} +{"id": "4002347", "video_name": "5be21f6f-f068-56a6-bf18-e41547180a96", "text": "An old man in a brown shirt and hat playing the guitar on the city streets in the morning "} +{"id": "2005278", "video_name": "cc4ce4a5-fda4-5c7f-a3d4-479be642b759", "text": "A moving opening shot of a Moroccan hotel "} +{"id": "4004319", "video_name": "ede19003-1cba-5c73-a273-68c23086ef02", "text": "Old woman with a warm and supportive expression on her face, her hand should be gently resting on her husbands shoulder. This image should symbolize her unwavering support for a dream and the bond between them "} +{"id": "1005666", "video_name": "68121515-5e40-5f3f-93a4-0b1173f20d16", "text": "A boy loved to draw but no money "} +{"id": "4002776", "video_name": "1e0ceefa-9e7a-5beb-917e-889775de84e7", "text": "a massive jungle with one weird animals who is looking at something "} +{"id": "1005417", "video_name": "6386998b-0ee2-50ed-9db8-1670a3aedcc2", "text": "a nyc above ground subway train. Graffiti. Deep shadow. Film noir. The train passes horizontally, silhouetted faces, flashing distant lights, stars "} +{"id": "0005905", "video_name": "2304c08e-f92a-59f7-b4f9-92b8c8698e98", "text": "The cat is playing the guitar while standing The lights are shining at the live venue "} +{"id": "3004767", "video_name": "fb28f556-f111-569e-8c09-761776b4f15e", "text": "man standing by lots of old paintings on the wall, only his back visable, wearing victorian clothing, low light, 4k, realistic, sharp and detailed "} +{"id": "1003644", "video_name": "4328a9c3-eb11-53f3-a4f3-dfc819f9396c", "text": "guy run on the beach in shorts. He is facing the viewer "} +{"id": "3005749", "video_name": "53a718be-52da-52ab-8721-c8c7021683b9", "text": "HD cinematic zoom, Jesus giving birth to Jesus "} +{"id": "4003054", "video_name": "40743b74-15ff-5821-b437-ea4d688b18f0", "text": "Animals real fight in jungle motion 4 "} +{"id": "2007383", "video_name": "1f0f36ed-6a1c-504e-a3dd-7d614e8b5add", "text": "A map or illustration of the parade route winding through Toyland.Animated cartoon "} +{"id": "7002799", "video_name": "6a4a99ff-ef84-51ca-a8ac-e2cae58f0e02", "text": "a lovely kindergarten on a beautiful festival day. The sun shines brightly, casting a warm, golden glow upon the scene. The kindergarten is adorned with vibrant decorations, fluttering in the gentle breeze. Balloons in various hues fill the air, adding a playful touch to the festive atmosphere. Children and their families gather, their faces painted with smiles and excitement. Laughter and chatter fill the air, creating a joyful symphony of happiness. The playground is alive with activity, as children explore colorful stations and engage in fun games and activities. "} +{"id": "6003005", "video_name": "13ccc700-4f64-5891-962d-e976d8e0b60f", "text": "a bright spark forming from a black void "} +{"id": "3003003", "video_name": "b2f0d978-2649-5242-9a45-2df2b40a0e0b", "text": "beautiful star in the middle of space but trippy bizarre, the star has an eye on the middle and its watching you, detailed, 4k, unreal engine, space, amazing, 50 mm "} +{"id": "2007130", "video_name": "fe17be39-58ad-5ed4-adc6-8a75c5bab7ac", "text": "man, gest talking to receptionist in hotel reception "} +{"id": "2005357", "video_name": "f0e7470d-c27c-5123-8813-407a0a60b204", "text": "napoleon bonaparte sitting on a rock Message: BirdDen (Font: MODERN) "} +{"id": "6004052", "video_name": "e38b2887-2f59-5ea3-9f1c-b0b864663e13", "text": "a guy drinking bear in a bar, hyperrealistic movie scene "} +{"id": "4003016", "video_name": "22957569-5ca4-5731-97a2-948de45b1870", "text": "a book in the old style opens "} +{"id": "6003647", "video_name": "8d3772bd-a0be-5e67-bb04-77bfe0686343", "text": "People from the Dutch countryside in the 15th century AD with Dutch faces drown in floods "} +{"id": "3004943", "video_name": "9dcb9fc1-d0fb-58ce-ab75-11e05aa11e8e", "text": "The Japanese Cherry Trees, wildflowers, and green grass along the shoreline become an exquisite backdrop for showcasing their symbiotic ecosystem. "} +{"id": "6004118", "video_name": "b29dc7a6-5dc0-5a73-89bb-c83ef4bb7307", "text": "Zooming in on the homestead, we see the girl and her grandad waking up. They exchange smiles and begin their day. "} +{"id": "0004422", "video_name": "08a7e98a-1cda-546f-b9d5-a84a77a1bbec", "text": "a sad person waking up and sunrise. "} +{"id": "1003128", "video_name": "3991e285-e039-5cde-97ce-3e294203e73f", "text": "kermit the frog is painting a landscape on a canvas in a bob ross costume "} +{"id": "1003605", "video_name": "4275f9d8-55a3-5a0e-b4c6-3337df32c23d", "text": "cool looking pilot flying a red plane under a suspension bridge. The pilot is waving and wearing a blue scarf around his neck "} +{"id": "7004610", "video_name": "6f95ad1c-b8b4-542b-8f92-7edbaff84f99", "text": "The train man walked alone on the beach "} +{"id": "4004211", "video_name": "773707a6-3bad-57c2-8c16-03147802fcfe", "text": "blonde woman playing piano, heavenly scene "} +{"id": "7004730", "video_name": "befaf478-ea69-591d-b55d-ecc3294fccd9", "text": "famous USA places in one frame "} +{"id": "1005394", "video_name": "632f0bd6-3b3f-5c07-ac98-3ce519a34852", "text": "in the jungle The group stumbled upon an ancient altar, bathed in an eerie glow. Odd symbols were etched into the stone, and a feeling of dread settled over them "} +{"id": "3004749", "video_name": "faf05490-3935-58df-8956-d4c132d59d36", "text": "lsd island, fourth dimension in the dark fantasy "} +{"id": "7002001", "video_name": "32082672-725e-5222-bf14-ff39ed49cb3e", "text": "people turning away from each other, they are on their phones "} +{"id": "2003734", "video_name": "6295e134-8566-5c19-bec0-342d432c7383", "text": "a Rocket 3D icon, cartoon, clay, Nintendo, lovely, glossy, smooth, red and yellow, gradient colors, White background, highest detail, isometric view, HD, style expressive "} +{"id": "3004088", "video_name": "efc9590a-d50c-5fff-be14-12c46d1631e4", "text": "Panoramic view Alpine mountains bathed in the soft morning light "} +{"id": "5001195", "video_name": "64157977-aa8b-545f-9f7d-3a011ee99a54", "text": "A black man floating in crimson water: 2 inside a Dyson Sphere: 2 interior highly decorative, alien language inscribed on the walls: 3 inside are gold rotating gears of a clock: 3 this is seen in first person, red hues, gold, neoclassical, realistic, science, Larry fong style, filmic, reference malancholia, the fountain, interstellar, 4k, octane render "} +{"id": "4003865", "video_name": "8c171079-9d6d-5f08-ba29-2f2a0f24d57e", "text": "factory of the future powered with AI "} +{"id": "1006282", "video_name": "731104b6-0f75-54ec-ba0c-04c95c5412ed", "text": "Grandmas in pink uniform in the desert catching kids, very Dynamic and realistic volumetric video "} +{"id": "1003014", "video_name": "375e720f-6800-55ea-ab9d-f9e1c3d91248", "text": "a starwarrior in a fight with an ice dragon at midnight Message: Sternenwarrior (Font: MODERN) "} +{"id": "1005228", "video_name": "603d03b8-f32d-5894-a115-384ce32e074e", "text": "Both hands support a flower blooming amidst shimmering light "} +{"id": "2005240", "video_name": "9ac89fb8-5aac-55f5-93d8-b06ab1a47304", "text": "a chocolate getting wrapped slowly as a product pack shot "} +{"id": "8002478", "video_name": "2d49759e-efd7-5373-882b-09e76d0f7be2", "text": "train station city Hannover walking green zombies beer sunflowers "} +{"id": "3003734", "video_name": "bd6e6518-9c8a-5109-8838-390135e0ba4d", "text": "robot walking, on the beach with neon lights, wide shot, 8k "} +{"id": "3004958", "video_name": "dd1a6cfe-c0aa-50da-9088-e06535d223d8", "text": "Create an image that represents the fusion of Japanese and Mexican cuisine with a Sushi Burrito. Show a large sushi roll wrapped in seaweed with vibrant, fresh ingredients like rice, assorted fish, colorful vegetables, avocado, and drizzled with savory and spicy sauces. The image should capture the essence of this delicious and creative culinary blend "} +{"id": "6002420", "video_name": "9d972d10-2ff6-57c6-962e-893d8f185e3f", "text": "A tree at night lit by one strong spotlight during a storm with heavy wind. the leaves are moving. "} +{"id": "3006302", "video_name": "0f1bcee2-3a96-55ef-b6ec-ad1c9705bd2f", "text": "make a YouTube intro for the name \u201cAmmar show 7\u201d "} +{"id": "6004330", "video_name": "36962638-3129-5918-995f-1af64cff0b6e", "text": "Cut to our protagonist, KAI, a young and reluctant hero with unkempt hair and a heart full of curiosity, who lives in a quiet village nestled in the heart of a magical forest. anime style "} +{"id": "1006546", "video_name": "77efc41c-69b5-58bd-a11c-970e0b8b1a72", "text": "a wide mountain from the top and the camera moves fast "} +{"id": "7003288", "video_name": "7a154f23-653b-51e8-b7b7-abcd487e36ac", "text": "gotham city from movie the batman, very realistic, super detailed "} +{"id": "3003276", "video_name": "be2c2f56-04af-57af-b655-6af269b7bb44", "text": "The image of a blue whale leaping out of the blue sea is realistic "} +{"id": "7003215", "video_name": "0c6dedbd-8b01-54b7-81ba-e2606c0e3e65", "text": "Add appropriate light and shadow changes and scene movement changes to attached images "} +{"id": "4004633", "video_name": "078565bf-b80d-5cfe-a60c-995808e8b219", "text": "Advert for a metal poster of Penny Wise "} +{"id": "3005245", "video_name": "ba56f211-69b4-5c0a-9749-ec500f31a722", "text": "Show a wide shot of a picturesque Italian village, bathed in golden sunlight "} +{"id": "2003866", "video_name": "d2331fb5-11b8-5084-846b-f75349d9b91b", "text": "A teacher helping a student studdy for a math exam "} +{"id": "7004608", "video_name": "60cffcaf-3947-5104-af5a-847b988c4083", "text": "3D, toons, horror, Outside a deserted village, there is a small hut at the edge of a forest IN front of Graveyard. The darkness of the night is thick and horrible, and a cold breeze is blowing in the air. A small fire is burning in front of the hut, 2 village young boy are sitting facing each other in front of the fire "} +{"id": "6004016", "video_name": "4ce65e64-6452-59d9-a942-2e7f50f2a7e7", "text": "A truck is driving in the desert with camels passing by. "} +{"id": "2006047", "video_name": "61973199-0956-54cf-8e54-e3392d6f191a", "text": "Design a set of positive affirmation videos with inspiring messages and colorful animations. 16:9 "} +{"id": "6003468", "video_name": "e0b444d8-9c4e-501d-9536-a6651f67e931", "text": "12th doctor peter capaldi in the style of dark souls fighting aliens "} +{"id": "2005092", "video_name": "3e2ab11e-cf59-5a2d-95b5-8dcce6a69518", "text": "highly creative 3d illustration of talent show winning moment, parrot and snake won first prize "} +{"id": "7002390", "video_name": "60225b47-c682-5022-9cdb-0fdcfe506f0e", "text": "man at the top of a cliff, dizziness, low angle view, nightmare atmosphere, horror movie palette, hyper realistic, 16.9 "} +{"id": "3005678", "video_name": "e5c551dd-e493-56ee-a2e3-e3d628f2df80", "text": "airplane flying into a concrete dome "} +{"id": "4002706", "video_name": "92325eb3-d211-51d0-bfb7-aa722a8212c6", "text": "A large ship is sailing at sea, full of goods, and ahead lies the magnificent ancient capital of China. The sailors on the ship have foreigners and Chinese people busy raising the mast. Frame 16:9, realistic style "} +{"id": "2003352", "video_name": "a3fff3c6-dfc3-50c7-8dcc-7795b0307ed5", "text": "a guy with mask talking facing us with matrix backround, penthouse, raining, purple pallete, cinematic "} +{"id": "8003976", "video_name": "2cde1001-556d-5c88-ac0b-2670899c64a0", "text": "astronaut in the ruins of an ancient alien city on mars in 1955 ,futuristic science fiction,cinematic,action,realistic,lots of details,high resolution,film noir "} +{"id": "4004176", "video_name": "d17d5b5b-f393-50f7-87d1-cee2f5eef1b9", "text": "cat sitting on the wall Message: meow (Font: COMICS) "} +{"id": "8002037", "video_name": "c84f1b4d-0b5d-5f08-8dc1-a94fbb3fb911", "text": "a little girl holding her pink teddy bear hands, walking on the hills with a mountain view, ghibli styles by miyazaki "} +{"id": "6002144", "video_name": "abe94109-2f9a-559a-8f78-c474df2d79a4", "text": "A hyper realistice beauty queen walking the ramp surrounded by cheering people "} +{"id": "7004310", "video_name": "4f55b033-10e4-5373-b595-4ad2a237a0e9", "text": "a man in a black suit holds a red pill in his left hand and a blue pill in his right hand, black screen in the background, 4k hd "} +{"id": "4004634", "video_name": "4eb4280d-6c1f-57c2-bf5b-6111cb805ba8", "text": "On the roof, a rocket art installation made of clear sun tiles. "} +{"id": "0003075", "video_name": "3682e0d2-abf0-547b-a467-5d7e1a66eae1", "text": "In a magical forest, dense forests and jungles thrive. During the day, the sun bathes the place in warm sunlight, but when the sun sets below the horizon, the forest becomes mysterious and quiet. "} +{"id": "6003923", "video_name": "00cd8465-e721-583c-b507-1aa9ecf8772b", "text": "a dog chases after a red car "} +{"id": "7004820", "video_name": "1bf8da44-834d-5e01-bf36-2e5a38ab8ec7", "text": "bus running from delhi,loction is 186 k.m. from bus Message: 1 Attachment "} +{"id": "1006483", "video_name": "76a3d68d-b9c8-51d8-860e-1b217c14f294", "text": "create a cinematic, extreme close up of eyes blinking "} +{"id": "7003178", "video_name": "7c669225-0db1-5273-a2bb-22f34bd31a95", "text": "Golf club slowly rotates on its own, do not deform "} +{"id": "2007429", "video_name": "02eff8b1-9e59-5e63-bbb1-1b3a037df216", "text": "man giving a presentation to his team but looking visibly nervous while doing so "} +{"id": "3003540", "video_name": "feb2fd48-e2ca-5123-8efb-ec937d698716", "text": "A scene of hundreds of dead bodies due to wars "} +{"id": "2003514", "video_name": "b0c73c66-fd6a-57f9-a6a9-56b9553835d9", "text": "A young man dressed as Jesus looking into the camera "} +{"id": "3003958", "video_name": "922f5203-44bd-5906-b5ac-2827cbe1e00f", "text": "person with futuristic helmet and old worn clothes, with a futuristic weapon from under water "} +{"id": "3005029", "video_name": "a861b9b3-bf7f-5311-ae40-ff47cc56ecba", "text": "Sunrise over a bustling city, symbolizing the start of a new day. "} +{"id": "7003847", "video_name": "42a5f9bb-2804-5507-bc31-f49a744f95ce", "text": "ballet point shoes catcj fire, high contrast, dark, dynamic 35mm, film grain, and, commercial "} +{"id": "1003913", "video_name": "48383a48-7dc2-586f-8da7-04a37f4690d0", "text": "zoom in shot to a complex control center with vintage retro futuristic interface screens, lots of robots working, cinematic shot, black and white "} +{"id": "8003198", "video_name": "2fca7015-dcb5-52d9-a36c-1c1504734acd", "text": "Animate Mother Teresa sitting with poor people on street. Close up, high definition, animation youtube shots "} +{"id": "6004061", "video_name": "7f3a244a-86c1-57dc-ad3a-617245ea1601", "text": "dancing a cute puppy, long golden hair, white hair near brown nose "} +{"id": "1004109", "video_name": "4c17ac3a-8bcc-5cd0-b4b3-ccfd8d3e6867", "text": "The network is cut off while communication is flowing from a computer. "} +{"id": "8002932", "video_name": "888ca171-5e6d-5051-8633-6622c0505275", "text": "Scene transitions to the interior of a Buddhist temple in the forest up in the moutains, where the old monk is sitting peacefully. "} +{"id": "6003120", "video_name": "48acaf6c-28f8-536e-8c8f-b830263c1366", "text": "a pot full of gold in a field "} +{"id": "0004488", "video_name": "09d2704f-07d2-5a67-9432-d1f94944b5c4", "text": "3d images Bob chuckled and turned to his other friends, Dizzy and Roley. "} +{"id": "0005651", "video_name": "1ebf9f7e-57e1-5f21-993c-7c9973fd3e85", "text": "fast food robot cheeseburger joint robots taking orders and self serving upset not fun for humans "} +{"id": "8001084", "video_name": "618db9c2-b5f6-567c-ad6d-c7a64cb00aac", "text": "monochrome hand drawn Nigerian landscape wind blowing through trees "} +{"id": "8003757", "video_name": "13526736-bbef-54de-b1f1-ce7b9d1ef4f4", "text": "1970s Star Wars aesthetic, jungle planet, futurism, tech, vehicles, people, cinematic "} +{"id": "1005616", "video_name": "673fb222-469b-5029-bf92-5fa57171c9c3", "text": "Large glass beaker on right side, top to bottom of scene, with steam and vapor rising "} +{"id": "8002483", "video_name": "7d654c2d-ff43-5a0d-965e-d320cff67a30", "text": "a tennis stadium before a tennis match in wembeldon. in 8k realisting in medium light "} +{"id": "1004208", "video_name": "4dbffea5-75b9-554f-9bf2-b9d0eae77f63", "text": "a historical indain man sitting near river sith, futuristic "} +{"id": "7002268", "video_name": "f4a220c7-bd2b-5ae9-9c69-9ef56eaf7146", "text": "a roof of an old cottage at night getting a lot of rain "} +{"id": "2004523", "video_name": "601e5404-b1d5-59cf-ab35-808bdb35b99b", "text": "a very beautiful girl, brown longhair, long legs, walking, in a beautiful park, smiling, daytime "} +{"id": "4002993", "video_name": "b6992fec-e82a-575a-9f9d-a449dab5a123", "text": "describe a seen of man and women setting beside the beach on carpet in the nigh will drinking a cup of tea in full moon night with microphones near them and they are frindes "} +{"id": "8003803", "video_name": "a379b120-0799-5e3d-b3b1-afdd42391451", "text": "Craft a captivating image of a mermaid beneath the enchanting glow of moonlight "} +{"id": "3004047", "video_name": "86085385-aa54-5135-8985-42e9dc7964ba", "text": "a pen covered in jewels video "} +{"id": "6004964", "video_name": "fcec75a0-cfcc-5a2c-863a-34e06fb5242f", "text": "A rainy day and bunch of cars on the road with thunder storm "} +{"id": "2006723", "video_name": "c4e8b7b7-ba0c-587a-908d-712f53b6c475", "text": "a crystal moon high resolution close up in sky "} +{"id": "4004581", "video_name": "3a01b207-a08c-5849-b9f4-8df26f7b3cb0", "text": "christian bale looking outside his room in night time 4k HD "} +{"id": "7002077", "video_name": "d437be38-283d-5a84-8e14-6e0d192bfdcd", "text": "sun burning in space AE: 16:9 "} +{"id": "0003089", "video_name": "36cc5a93-e44a-5dbc-9b0c-bfbbcfc868c5", "text": "make it more dramatic and the cocktail is in a highball Bloody Mary "} +{"id": "3003517", "video_name": "835567ae-3dd1-5103-8996-3eb59bbf4d01", "text": "a man is paying money to his laptop 4k "} +{"id": "0006965", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "stone cold steve austin with a mullet driving in downtown dallas in a red pick up truck "} +{"id": "0006981", "video_name": "363a7bfc-525c-5b90-83c7-8a11a1ebd1e0", "text": "I want footage of bee activity "} +{"id": "8002326", "video_name": "ba199de8-67f8-5e44-8cf1-aa848425f5e4", "text": "Queen Esther comes out of the palace high quality cartoon animation style "} +{"id": "2007955", "video_name": "46450a8c-86a8-5f7c-800a-a35e373da133", "text": "A child who is taught by American aunt "} +{"id": "0004135", "video_name": "03e10ea3-ba6e-5fb4-a5fb-d1dd4b7cf3e8", "text": "a low poly cigarette burning and getting shorter, smoke flying "} +{"id": "4004316", "video_name": "e2e69b9a-4387-59d2-bf03-c3601969d4bb", "text": "From a tender age, the princess displayed an insatiable thirst for knowledge. Surrounded by books and scrolls, she eagerly absorbed every lesson her tutors imparted, her curiosity guiding her towards a deeper understanding of the world around her. "} +{"id": "2005483", "video_name": "7139db99-82fd-5d4a-b260-33892a86da13", "text": "cinematic focus on one shining red victorian witchy boot with red satin in spotlight "} +{"id": "2005266", "video_name": "36e984fb-527c-5d8b-aaa0-a2a28d8a3598", "text": "Darth Vader and Michael Myers having a lightsaber battle in the forest fog "} +{"id": "0006677", "video_name": "30cf26af-f47f-5415-82b2-4edb7a7465f4", "text": "The magical moment when Barbie helps the sad mermaid regain her voice with the sparkling seashell necklace. "} +{"id": "0005213", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "a boy running in the village, people wathing in the background, animation art style "} +{"id": "6004671", "video_name": "5bfdf1f9-1494-5ad8-84a0-069796d46be7", "text": "morbius flying through the dark gothic city at night with batman "} +{"id": "7003486", "video_name": "a0783a66-59f7-58d5-94de-193699c465bc", "text": "car passing from worli kurla bridges "} +{"id": "1006194", "video_name": "71685c93-fd25-519b-a7dc-1fec0d68afd6", "text": "A cartoon character cup of coffee running and jumping over a stack of pancakes. "} +{"id": "2005324", "video_name": "76218c5e-ff90-50bd-9dc8-bea92e1245f5", "text": "A deep valley with waterfalls flowing down and water splashing on the lake. Camera 5 meters away realistic super detailed full size realistic shot, Monaco, sunset, beautiful sky "} +{"id": "2004677", "video_name": "b1cad5dd-5395-5f32-a0a6-a70dd0853cc4", "text": "a cool car is driving in an empty city street, cinematic, realistic, in David Fincher style "} +{"id": "4003984", "video_name": "88c3c3fe-1d7d-5092-a38b-8d63fee4f28d", "text": "cartoon character cute boy standing in a farm land with vibrant flowers and vegetables smiling and laughing excitedly. wind blowing "} +{"id": "4003293", "video_name": "137bb5c8-5864-5fd0-8f3b-90f5f8ba0392", "text": "generate a video depicting how foucault pendulum works "} +{"id": "3005585", "video_name": "17f1acfc-f0c3-5671-8a43-c928d27ac672", "text": "Fox and friends watching the sunrise together "} +{"id": "7004800", "video_name": "4ccd847a-7c90-50d4-8c27-11d547673b24", "text": "Warm and cozy family Message: 1 Attachment "} +{"id": "7003009", "video_name": "dfb71361-37df-5e6b-924c-156d1ed5524d", "text": "There is a DNS server in the cloud "} +{"id": "3006906", "video_name": "4771eaec-67a7-5744-ae01-fe1fa3fdaab7", "text": "A young college student boy in dorm happily jumping with confetti flying and falling around "} +{"id": "2006056", "video_name": "27036c0d-0d78-5d75-8bbe-e06e14ad7ce5", "text": "good quality video of an digital African man in a spaceship speaking "} +{"id": "6002999", "video_name": "e738f270-3914-5acf-b09e-0661e96a24a6", "text": "lion walking out of heaven, eating, running "} +{"id": "1006776", "video_name": "7c1c06f6-9aec-5d39-8d09-5bed246a83cf", "text": "how will human look like a thousand year from now? "} +{"id": "6002109", "video_name": "c28e232c-bc68-5a18-b51e-39087d363da4", "text": "chill animation, young man with mask, walking "} +{"id": "6004111", "video_name": "e2e69b9a-4387-59d2-bf03-c3601969d4bb", "text": "From a tender age, the princess displayed an insatiable thirst for knowledge. Surrounded by books and scrolls, she eagerly absorbed every lesson her tutors imparted, her curiosity guiding her towards a deeper understanding of the world around her. "} +{"id": "2005041", "video_name": "7027bd23-dc6a-5a09-95b0-1391a2027415", "text": "fictional rioting in the streets of an imaginary city "} +{"id": "2005330", "video_name": "764ab521-1996-547a-9e5c-3dbc719697e8", "text": "Crayon is swimming in the ocean. "} +{"id": "4004354", "video_name": "b43f90fe-880c-5c87-96a7-20814b4020db", "text": "Sexy girls make yoga on the beach "} +{"id": "6004031", "video_name": "d70b8851-65f8-5dbb-8b75-c69a6a029aa3", "text": "An alien shaking hands with the president of the USA. Cinematographic scene, wide shot, and lighting play. Hyper realistic 4k. "} +{"id": "6003238", "video_name": "cfb359d9-c61d-5046-aa45-3b3f1b90287c", "text": "rap battle only modi rapping Message: 1 Attachment "} +{"id": "2003236", "video_name": "481d6bb6-c754-5ce9-9504-82c3149da50c", "text": "Animate the entire forest thriving with birds singing, flowers blooming, and creatures animatedly wearing content smiles.\nAnimate the entire forest thriving with birds singing, flowers blooming, and creatures animatedly wearing content smiles. "} +{"id": "0003763", "video_name": "42eb66dd-1d17-5e42-bc19-52db7f927e9d", "text": "On rainy days hundreds of bald monks stood with their hands folded in prayer Message: 996 (Font: MODERN) "} +{"id": "4002577", "video_name": "cce9597d-f40e-56dd-a98b-758a3b5d7ebf", "text": "Gediminas Pranckevicius animation of the grim reaper playing chess "} +{"id": "6003902", "video_name": "260be6b4-e681-5794-b0f0-5b01035ff101", "text": "Transition to the trio entering the mystical Whispering Woods, with animated elements showcasing talking trees and glowing mushrooms. Use vibrant colors and magical effects to convey the journey through the enchanted forest. "} +{"id": "0004376", "video_name": "07f8bd4d-4166-5333-a8d1-bbb1e4a64ee9", "text": "a bedroom scene illuminated by soft, warm light. Two figures lie close together under a cozy blanket, one with their arms gently wrapped around the other. The cracked window lets in a faint breeze, fluttering the curtains slightly. The atmosphere exudes tranquility and comfort, with a sense of peaceful closeness between the two individuals. "} +{"id": "0005255", "video_name": "17506010-710e-51d5-9c0d-bac6f107d676", "text": "the shinning kubrik scene AR 9:16 "} +{"id": "4003611", "video_name": "11ee4564-31b1-5577-8f5a-6d1bb3ca330c", "text": "chameleons on the branch blinking eyes with changing color "} +{"id": "6003205", "video_name": "60efb27b-ed26-5c00-adb6-ce9ff9e683c6", "text": "Amidst the Warfield, close up shots of two swords, cross over the resounding clash echoing through the chaos, illuminated by flashes of thunder light. "} +{"id": "0004617", "video_name": "0c017cd7-1eec-5d74-abd3-4a03527ef977", "text": "A Tyrannosaurus rex fights with Donkey Kong "} +{"id": "8003159", "video_name": "b22c2f88-7bc3-5d77-a2fe-053b13075309", "text": "a person found astonishing by seeing a snake "} +{"id": "1005138", "video_name": "5eb37f9a-c799-575d-97e8-c473e17afa0e", "text": "green princess on another planet meditating "} +{"id": "1005194", "video_name": "5f88cde6-a67c-5e81-84b6-30002a15e535", "text": "Sketch animation of mom and dad taking care of there child with camera pointed at there back "} +{"id": "4004997", "video_name": "1a9e2e3e-002f-5e00-9268-ea1896a4123a", "text": "anime overlay, tonnel, camera movement, animate "} +{"id": "2004564", "video_name": "3d30da97-2313-51e8-b14b-9b972b7be0a6", "text": "theo van gogh. in van gogh style "} +{"id": "2003386", "video_name": "f00dab32-a9e9-5032-9076-b34c8f0a4fc5", "text": "A dramatic scene where Raju, Mayuri, and villagers confront the mysterious stranger. "} +{"id": "6003636", "video_name": "af35798f-b324-5a36-9feb-6bcd315577c3", "text": "two girls gazing to the camera, camera zoom in, beautiful north lights and purple pinky sunset behind them, less contrast, less saturates, best friends, cinematic, c4d, blurry "} +{"id": "5001329", "video_name": "ff9d6dc0-e2f3-529b-8096-2c76b8bc094b", "text": "cinrmatic shot,big red ball bouncing high,nighttime background, woods "} +{"id": "3003208", "video_name": "202cd122-658e-56dc-b1e0-e6262996d76e", "text": "hulk becomes a job seeker and walks around carrying a brown file folder "} +{"id": "0006954", "video_name": "35ce39fe-a4b7-526c-8166-26247cfd8320", "text": "a beautiful sad child sitting on the grass, looking at the sky, suddenly a surrealistic hand emerges from the sky wearing very white clothing "} +{"id": "7003293", "video_name": "c74eb62f-ff05-5198-9b02-a9bdf87289e0", "text": "cat sing a song with lip syncing Message: 1 Attachment "} +{"id": "3005085", "video_name": "fbd3e026-bef5-5a9a-87da-5bf38e94364c", "text": "Talking woman 30 years old with white hair , 4k video "} +{"id": "7002931", "video_name": "26b66657-4dcd-5118-885f-4db89e5e7add", "text": "growing soft silky rose flower time lapse, pencil drawing, white background "} +{"id": "8001816", "video_name": "8420c5a5-c752-57b7-8901-79442b3098c6", "text": "oddess of Anger played by a perfect beautiful mix of selena gomez, ana de armas, zendaya, jessica alba, emilia clarke, ariana grande, jennifer lawrence, emma watson and natalie portman covered in volcanic rock, yellow, orange and black, hair made out of flowing lava, fire, smoke, glow,eye makeup, fiery dissolve, hyperfine maximalist detail, intricate, delicate,volumetric light, bioluminescent colors, Reflecting, wet, sparkling, pure, benevolent, strong, portrait, line art, realistic, epic composition, golden ratio, Corona render, 8k "} +{"id": "3006445", "video_name": "0547b4d5-c429-5a31-a065-cf113c953aa7", "text": "His father, although saddened, knew that Samuel had a strong desire to explore and learn. "} +{"id": "0006764", "video_name": "32a1f8f4-b7c1-5e8e-a86b-4da72c997197", "text": "people walking in tokyo, dark alley "} +{"id": "7003249", "video_name": "3a4b7a9a-395e-5465-95cf-00eb19be181b", "text": "Ulysses having a nightmare, in an old ancient house, in front of one of the ruins of Roman temples, futuristic, photorealistic neon atmosphere "} +{"id": "8002489", "video_name": "e15ab75c-5261-5b07-84f9-7f40681c4ad9", "text": "create running fox in 3 seconds "} +{"id": "3004266", "video_name": "cae9130a-c9b3-53ad-b44f-d432d5c59e94", "text": "alive pictures inside a magazine shows a nasa rocket going up behind buildings, lot of smoke moving, crowd on the beach atonished, a person looks out "} +{"id": "6003744", "video_name": "59aa5a5a-793d-5755-b793-880ea6a68df0", "text": "dog with wings fly in clouds sky "} +{"id": "0006984", "video_name": "3641c525-6484-5527-8d09-8d595741c960", "text": "a dance party in a night club, anime styled "} +{"id": "0005721", "video_name": "202a5187-4d9d-55ca-b346-477b13566a1a", "text": "amazon rainforest in the mist Message: ShopArt (Font: MODERN) "} +{"id": "1004717", "video_name": "5788ed4a-b0ce-5c19-ab34-aac7f55877e9", "text": "In the viking period, they were farming and hunting. "} +{"id": "3003718", "video_name": "5680d437-d1cd-5378-88a9-9c9564860887", "text": "video, news report, chickens, louis vuitton logo "} +{"id": "8001615", "video_name": "dad3be94-ba01-5a0f-94e6-286ad1abd6cc", "text": "a girl hear song on chair and study with headphones "} +{"id": "3006583", "video_name": "3812a8cd-b075-5dc5-b02b-026c572451ec", "text": "a white fox looking at the horizon "} +{"id": "8002891", "video_name": "4dbe4ee0-f8aa-5006-805d-536c4bfe6776", "text": "8k cinematic scene, adult boy catching his green colour bus in village "} +{"id": "2003533", "video_name": "2ce8ba3c-0242-5b12-9d8b-c2536e3ae47e", "text": "a hot Korean lady dancing on song in bikini dress near beach 8k 16.9 arn "} +{"id": "4004516", "video_name": "f3c70180-196c-5862-8a50-d67b89b65740", "text": "a helicopter flyiny in a vessel ship in Dubai 4k "} +{"id": "0006948", "video_name": "35b58c6f-6595-5ae7-83e1-fc81cca360e0", "text": "old footage from soldier attacking a wolf, cinematic "} +{"id": "4004541", "video_name": "3517a05e-e611-505e-a6fe-185bdce32575", "text": "a girl makes a video review of a long light brown coat at home in the reflection of the mirror "} +{"id": "3006990", "video_name": "2aba16ab-df8d-54ef-82da-b0cae219e016", "text": "people are happy playing on a boat in a waterfall "} +{"id": "3006887", "video_name": "4a2e5817-177a-52ba-a593-9d2ed877bdcb", "text": "a fox with 9 tails breathing fire , anime style , high quality, 4k "} +{"id": "7004596", "video_name": "35829e3e-e015-576c-86e5-663b9042728c", "text": "There is a green color forest frog, blinking its red eyes on a huge leaf, the rainwater is splashing on the leaf. "} +{"id": "4003014", "video_name": "0cecf46e-2235-5493-aced-042e96cd5227", "text": "Cristiano Ronaldo talkink about success and motivation "} +{"id": "0005545", "video_name": "1c98d6ab-616f-517b-b63c-c4000d3ff951", "text": "samurai vs ninja, anime style, 4k resolution, set near the blossom tree "} +{"id": "8003123", "video_name": "f7b49fb1-8796-5d41-b93e-17fac1d18bb1", "text": "3D animation, As the pendant shimmers and transforms, a burst of light reveals a majestic dreamcatcher hovering in the air. "} +{"id": "1005978", "video_name": "6ddd2f07-afa8-5fcc-b88a-907f3179efc5", "text": "The distant hoot of an owl "} +{"id": "2004345", "video_name": "8e198b9c-9d29-510a-9e9d-8ae3642fbee0", "text": "the village was filled with laughter, gratitude, and a sense of community. Disney style "} +{"id": "3003310", "video_name": "ad8354ce-bfa3-5173-b02c-8d86cceac74a", "text": "realistic Brad Pitt in a tuxedo, stands at the open helicopter door at sunset with the city below "} +{"id": "3003401", "video_name": "7708e2bd-eb74-5819-8d5a-aca7534e3ea8", "text": "a silouhette image of a guy standing at the edge of a very high clif with choppy water below. The full moon is behind him. medium shot "} +{"id": "1004271", "video_name": "4f04ee13-a8f1-5479-a8a2-3def6bf1190e", "text": "Decision to find a peaceful solution. "} +{"id": "5001402", "video_name": "d5b5b068-659a-562c-8db1-fb840a7b01a5", "text": "Show a slow approach to an abandoned laboratory. The camera pans through tall grass and open doors, revealing a dark and gloomy atmosphere. "} +{"id": "0004059", "video_name": "0278a5a9-878d-5a81-b872-4a89c7f464b5", "text": "create a video of two boys agruing with each other in a Paris street "} +{"id": "2003813", "video_name": "cbcdfd46-cc9f-51af-bb31-85660d6f87fc", "text": "4 friends live in a apartment "} +{"id": "0004621", "video_name": "0c0ed5d6-4940-5669-a31f-10537e885169", "text": "The character moves from side to side. "} +{"id": "7002265", "video_name": "1c186817-527e-5a88-9a96-42e43e0f4f49", "text": "a tall skinny man walking on a field, the camera zooms out and there is a big mountain behind him that is blurry, photorealistic in a 70s style "} +{"id": "8003312", "video_name": "828bd788-eab6-5fb5-a3a5-6d3f4c5a19b0", "text": "dancing mountains in the sunset, studio ghibli, with a horde of 30 horsemen going down the mountains, mountains are animated and flit on fire. "} +{"id": "8001195", "video_name": "7b51c8e1-50e2-5430-adbc-3bbad863f711", "text": "diamonds glistering, anime style, ghibli style "} +{"id": "0006672", "video_name": "30c11bcd-f807-5941-a871-c305169ac76f", "text": "marketing intro of enphase energy corporation logo that is similar to an Apple ad "} +{"id": "1006066", "video_name": "6f63ca88-a493-5f63-9cf3-dcab20ae10d2", "text": "Very cozy little place,surrealism,(Makoto Shinkai anime:0.4),dilapidated old houses on city streets,home wiring,outdoors,sky,clouds,daytime,landscapes,trees,blue sky,buildings,signs,wires,railings,Wide shot,telephone poles,town,wilderness,flowers,a mess of utensils, "} +{"id": "3005484", "video_name": "7608b2c1-7ab1-5e98-ae26-a1922c42f3ba", "text": "black thick coat grey pants green shoes the weather cold "} +{"id": "4003437", "video_name": "973be2ab-bed9-57d5-b034-1df962cf312d", "text": "nova York In 2D, animation, carton style. "} +{"id": "1005091", "video_name": "5de2a39b-cae2-5e50-a0e6-6ecb21d3ee11", "text": "white commode seat, water overflowing from seat, comic, 8k quality "} +{"id": "6002885", "video_name": "70fb81ea-0618-5080-b324-5d5092c0999a", "text": "a farmer who lost his watch "} +{"id": "5001004", "video_name": "f7fa0bef-e088-58f7-9f52-a196e8c6c468", "text": "capybara and capybraka stop motion cinematic "} +{"id": "0003655", "video_name": "4118cf7c-0994-557a-b99c-cf5fd8587bca", "text": "a story about online phishing attacks and staying safe against them "} +{"id": "6004242", "video_name": "7237c3b2-5cff-5273-874c-3149512a6f85", "text": "commercial showcase 2022 cadillac escalade, 2022 ford truck, 2020 nissan. Movement "} +{"id": "5001473", "video_name": "6abba960-b05e-5ed7-ab0a-05f96ec306a7", "text": "Four men Marilyn Manson style, hyperrealism "} +{"id": "1005582", "video_name": "66b73b08-2675-586c-a040-53c32cf4f4ed", "text": "girl, blue hair, dancing in the disco "} +{"id": "8001916", "video_name": "4ef7c6c8-b315-5972-afe3-85df4996aa9a", "text": "One indian girl and a indian boy talking each other in the park zoom out camera "} +{"id": "6002028", "video_name": "732355c0-e819-5bbe-9a65-94d5511c8195", "text": "In a quaint neighborhood nestled between bustling streets and tranquil parks, a heartwarming tale of friendship unfolded between a group of adventurous kids and a mischievous trio of cats. "} +{"id": "7003252", "video_name": "7bb92e2e-418e-589b-a502-fcabc167a3bc", "text": "Paranormal Investigations: Document the crew setting up surveillance equipment, conducting EVP (Electronic Voice Phenomenon) sessions, or using infrared cameras during their nighttime stakeouts "} +{"id": "6003123", "video_name": "b4c01c8e-2293-5bec-9589-84813a3e575a", "text": "a mermaid in the ocean, with long Black hair and blue eyes "} +{"id": "7003879", "video_name": "3127121b-9f7b-5c00-93f3-9fd4f2247798", "text": "Lila and Whiskers walking into a lush forest. "} +{"id": "2006704", "video_name": "64a5e71b-f0cd-5e0b-9092-52a367f72a2c", "text": "a couple walking outside beneath the stars and moonlight "} +{"id": "7003263", "video_name": "749794d9-5eb5-501e-924e-757b7218b62d", "text": "Sports car speeding down on the two lane blacktop. 1970s grindhouse filmstyle. Cyberpunk. "} +{"id": "1005275", "video_name": "610980fa-e7e3-5a4b-829b-5dfaa15f93df", "text": "white pikachu with new powers, multicolore lightning in the sky "} +{"id": "2005538", "video_name": "3ac2aaeb-92dd-5125-b956-397e47062362", "text": "slowly fading to a bright red hue moving toward the center of the lake "} +{"id": "3004550", "video_name": "b0270916-b49c-50a5-abba-a5f5aa57a851", "text": "2d anime people standing wearing torn clothes in wasteland "} +{"id": "7002951", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "entered the other room, he saw that it was dark and had only a table and a few chairs, camera Pan zoom "} +{"id": "1005288", "video_name": "613498de-ebff-579b-bd4c-2ed135d6c662", "text": "Change the character to Elsa from Frozen. "} +{"id": "3005518", "video_name": "7876fa4a-6e0d-59e2-a268-801f6bf54ea6", "text": "The character walks to the front Message: 1 Attachment "} +{"id": "7003577", "video_name": "12460ec3-99c2-5e0f-a59d-83d93b6cbc97", "text": "a girls drawing something in village "} +{"id": "7002141", "video_name": "670df639-e3bf-56ea-b107-3481a97b75a0", "text": "cat with small ets on xmas eve "} +{"id": "6002022", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "rapper on the stage, in the style of 3d anime art, Iove, 8k, portrait, elated 3d cartoon anime art style, hyper detailed. vivid colours. ray tracing. dribblable, high detail, super quality, ultra detailed "} +{"id": "8002198", "video_name": "5d589423-5dba-5d1b-94e7-d72b164a3ea3", "text": "And so, the tale of the little wizard teaches us the importance of goodness, wisdom, and the true meaning of friendship. May this story inspire us all to strive for improvement and to use our powers wisely. The end. "} +{"id": "7003628", "video_name": "03a5abf3-909e-5bc1-a680-04d0af52dab7", "text": "a historical centre in Vienna, horses with carriage are moving "} +{"id": "8002847", "video_name": "8d4b274b-5a0b-5f11-a923-70123dd9843a", "text": "A Blonde woman is talking about her bikini on the beach. "} +{"id": "8002926", "video_name": "6972221c-b062-5c7d-9a4e-15d9b896cb3c", "text": "cinematic frame of Quentin tarantino film about Napoleon "} +{"id": "8003329", "video_name": "4aa8eddc-9729-55c0-a50f-085269db4720", "text": "coin face making a laughing reaction "} +{"id": "7004620", "video_name": "4e7b610b-f278-5ebf-bcc5-1f45d9f43bac", "text": "the dog handing the sack to the shopkeeper. 16:9 "} +{"id": "5001733", "video_name": "156dbd16-787c-54b5-aae4-227eba57815a", "text": "please make a video in which two little people (a man and a woman) join hands and walk towards the German flag "} +{"id": "2007555", "video_name": "dd8dfa23-ff6a-5b1e-80d8-0dcae7898b61", "text": "Graphic representation of the sonar detection system in operation. "} +{"id": "2004530", "video_name": "cda886c5-2a77-53fd-9655-d7871227fea7", "text": "cinematic, 16:9, UHD, 4K, animals playing sports. "} +{"id": "4004977", "video_name": "4b5fc910-4b12-5bb0-bb15-1daf419e3866", "text": "Krishna, with his enchanting blue complexion and mischievous smile, was adored by all. "} +{"id": "7004956", "video_name": "4f9d2404-2774-5ed2-b813-b9ca787ea778", "text": "there is two ways to go when you hit that crossroads in your life "} +{"id": "8002074", "video_name": "436f8842-8ba5-57c1-9cbb-b824651b21db", "text": "Visualize how XR can blend the physical and virtual worlds, like a room with both real and virtual elements. "} +{"id": "4002920", "video_name": "4da24f52-f81d-5e9d-a5a2-a4f93611b83b", "text": "girl in winter clothes expression changing from cheering to horrified as she raises her hands to protect her face "} +{"id": "4003124", "video_name": "331f363d-4589-5085-9dba-e79d7709dd07", "text": "Lily discovers the enchanted land of Harmony Hills. "} +{"id": "1006322", "video_name": "73b6ae3e-7d48-5653-a11e-1bce68e19a24", "text": "the creature is moving under the sea "} +{"id": "2004341", "video_name": "c2d38a1f-1442-553b-898f-11a3cd369de9", "text": "An old, weathered farmhouse amidst a vast field of tall grass. Above, a metallic flying saucer hovers, casting a shadow below. The sky is overcast with dark clouds. Render in a black and white, grainy, antique photo style. "} +{"id": "2007427", "video_name": "7649a42d-dcb0-59d4-bb13-9b5fe0244bd2", "text": "Zooming into a Cool cute Hen with reflective sunglasses on a surfboard surfing down the face of a large blue surf wave, pipedream, GoPro, action camera, cinematic, unreal render, photorealistic, perfect form, high definition, intricate details, 8k "} +{"id": "1004254", "video_name": "4ebcb95d-ef89-5031-9cf6-f286775ba4a6", "text": "Maya and her friends going fishing at the small river with simple nets and equipment, catching fish amid excitement and joy. "} +{"id": "8001409", "video_name": "8673e042-5170-568e-9974-0eae261f8878", "text": "animated children\u2019s drawing of a boat "} +{"id": "2006756", "video_name": "b0327bdf-f539-594f-8281-14ea1e114950", "text": "2d animation, comic book, an arabic king from 1000 b.c. walking the desert, sunset light, light wind "} +{"id": "0005295", "video_name": "17fb7eff-8edf-502d-ad16-0b1b594340c1", "text": "Kris is standing at the end of a small dinner table. "} +{"id": "8001631", "video_name": "2f91dcfd-31d6-5699-af74-dbed97a19ec1", "text": "Man sitting in the cheir and smile. Low animation "} +{"id": "7003153", "video_name": "04d792bc-c628-5f44-9e3d-bd5e4c978df4", "text": "a video where a guy is going on his pc with a cactus wallpaper, pixar style 4k "} +{"id": "0006481", "video_name": "2d485d39-a1dd-59b0-b575-c64438711bde", "text": "create a boy talking standing next to a tree in the forest "} +{"id": "4002523", "video_name": "d216246e-09ee-5f22-bf3e-8bc5f05d35a8", "text": "Tropical paradise island sorounded by tourquise water in a relaxing enviorement seen from above "} +{"id": "2003771", "video_name": "9f89abe1-6cc6-5325-b23d-8b6fd8d55079", "text": "a collagen based powders product mockup where we have a box present. a darker theme.no people present or text "} +{"id": "6002295", "video_name": "d3753644-d339-5e48-81f3-6d2ae22d671e", "text": "The old woman tells the boy about her own dog, who died many years ago. She tells him how she felt when her dog died, and how she eventually learned to cope with her grief "} +{"id": "5001684", "video_name": "0e43fd09-62f7-545d-b90a-d4129f34a71d", "text": "pixels in heaven 3d animation with pixar 3d hero, 3d, 16:9 "} +{"id": "2007337", "video_name": "854d7cfb-3ebe-5dec-b1d6-e9bf176ffae9", "text": "a boy take a deep breath inside forest behide a talking tree with face. digital art version "} +{"id": "3005853", "video_name": "f46fa7fb-bae0-5028-89c3-829650f922b6", "text": "Young children find themselves alone at home and decide to have a day of fun. Create a prompt that captures the innocent joy and imaginative activities these kids engage in, exploring the simple pleasures of their day spent together in the comfort of their home "} +{"id": "1005307", "video_name": "61812556-ced1-5b72-bf3f-87283f492292", "text": "Spotted Elephant: A toy elephant with polka dots instead of the usual gray color "} +{"id": "6004335", "video_name": "52c41f53-21fb-5966-a639-45be562a2898", "text": "running to free her family, on the roof top ,dark night,moon light "} +{"id": "6004820", "video_name": "664f4118-dbdc-513a-b4b2-3256f9d81593", "text": "Show the rain intensifying as the chase continues, with raindrops glistening in the fading sunlight "} +{"id": "7004533", "video_name": "28bf0dd5-b925-5782-81e4-df47646e7e2f", "text": "Highlight the diversity of happiness. In Ghibli style "} +{"id": "6003659", "video_name": "964e85de-7c62-54bd-a9e2-0e8b3302c912", "text": "Santa Claus says something to the child in his chair. "} +{"id": "0006563", "video_name": "2eb5a90c-f3ca-54d2-8303-85a2b25a2de3", "text": "Burger, French fries, a glass with a straw, nuggets and sauce on the table, a blinking phone from a new message lies next to it, music cassettes and records lie next to the burger, a vinyl player spins a record, smooth camera movement, 4K, cinematic, camera above the table "} +{"id": "3004385", "video_name": "c870f4b4-99ad-5065-a1a7-79497f13323f", "text": "san miguel archangel with his sword fighting satan "} +{"id": "2003048", "video_name": "1b6822f0-2345-567f-a0ab-883fb3721da9", "text": "crying with using mobile phone Message: 1 Attachment "} +{"id": "2004309", "video_name": "ce9f21c1-1fd2-5762-b733-644b081bb66f", "text": "skeleton horse riding on top of the pinball "} +{"id": "0004197", "video_name": "04d847ab-0bf3-5b95-be84-9cc380e381cf", "text": "a quantum explosion in the quantum realm with beautiful sparkles and electrical particles shattering "} +{"id": "1004366", "video_name": "50a522a5-a4eb-5508-846a-2ac467f14dce", "text": "A young woman is crying while hugging her boyfriend from behind in an airport. He is facing away from her, with his luggage beside him. People are watching them, some with sympathy, others with curiosity. "} +{"id": "4004793", "video_name": "144de4a5-f190-56a9-b279-32bfb80094fb", "text": "In a quaint, cozy study nook, a worn leather armchair is nestled near a large bay window overlooking a serene garden. The rain pours outside, creating rhythmic patterns on the windowpane. A steaming cup of coffee sits on a wooden side table, emitting a rich, inviting aroma. "} +{"id": "0003995", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970s, film grain, human birds landing on a telephone wire, during magic hour, cinematic, surreal, magic realism, dystopian "} +{"id": "1003326", "video_name": "3d400435-ddb0-5667-a2ff-34a12302b866", "text": "A purchase order process awaited, of utmost importance "} +{"id": "7004897", "video_name": "20f61251-19b5-5c22-b3a7-33a454a1d41f", "text": "lush valley nestled amidst rolling green hills "} +{"id": "7002078", "video_name": "f70b707d-75fc-5dfb-b313-345dcf962ef3", "text": "A butterfly gracefully flutters over flowers. "} +{"id": "3006609", "video_name": "ce44d4a2-d6cf-59fb-beb3-99c820348383", "text": "hundred dinosaurs destroyed by a giant meteor "} +{"id": "6003263", "video_name": "e22ad2a8-7787-5472-961d-a6c5a4a867f1", "text": "A panoramic view of Earth from space, showcasing the vastness and diversity of matter filled with swirling clouds, vibrant continents, and shimmering oceans. "} +{"id": "2003988", "video_name": "ce558322-7205-53c3-8d48-780d9eed14e7", "text": "Bromoil photograph of 1669 seville, plague of seville, The town grows very sickly and many die; but they are fain to bury them by stealth, almost, there being no room to bury them in the usual place; the people is afraid waering masks, 16:9 "} +{"id": "0003029", "video_name": "35d7ce21-768a-5036-a97f-5a301c1ca4b5", "text": "a turntable playing a record in candy store with a girl and an old man dancing in comic style "} +{"id": "8003339", "video_name": "a1f3fc54-b401-5903-891e-af5667d441ec", "text": "A bus going from a bridge "} +{"id": "8001692", "video_name": "9fe005ff-f3bb-560e-b461-449baf5fffa6", "text": "create a realistic video with a chracter of mahabhart arjun with his lord krishna "} +{"id": "7002667", "video_name": "dbcb45bd-e0f2-586a-bf7b-cb44fa7cdb13", "text": "aliens shake hands with the army "} +{"id": "1005465", "video_name": "646d8b3a-3a14-5ff5-883e-19f2756c9a2a", "text": "a wide angle shot of a electronic music festival stage from the perspective of the audio booth with thousands of audience in front "} +{"id": "0005674", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "view from a kitchen window of children playing in a garden "} +{"id": "4003455", "video_name": "3a50f303-56dc-5261-9141-90e9537dd564", "text": "A lovely beautiful girl sat at her desk but had no interest in studying "} +{"id": "2005861", "video_name": "aac6e31a-b204-591d-90d2-6522fdd784f8", "text": "Jesus Christ with eyes like fire confronting lucifer. Cinematic. Camera zooming out. "} +{"id": "1004727", "video_name": "57acedf7-a502-5bf0-bee9-c5f2a7fcad97", "text": "A beautiful angel girl walking with her boyfriend in the road besides full of roses "} +{"id": "2007825", "video_name": "7fe9c5c9-45bf-591f-9c02-6bc8308949d0", "text": "Portrait of an alien, batik, intricate details, surreal "} +{"id": "2007450", "video_name": "40e420e2-b5fb-5f3d-8c13-8673e4f992a1", "text": "man smoking on the roof in the rain "} +{"id": "3003462", "video_name": "aa91e017-0671-587e-beb7-8da5df061679", "text": "sneaky spy, no background, in the style of spy v spy "} +{"id": "2006678", "video_name": "4a37d1f9-cfe6-5c60-af67-fa338fbf124d", "text": "serene village scene at sunrise, with farmers tending to fields and animals, Studio Ghibli, by Miyazaki "} +{"id": "0004740", "video_name": "0e77b5fd-d789-5e5d-a59f-6497458c29e4", "text": "generate Somali family father mother son and daughter crying and sad 10 seconds videos "} +{"id": "1005017", "video_name": "5cd86cbd-205e-543b-ab56-aa9cf4888998", "text": "a karma entity in the style of alex gray "} +{"id": "8002235", "video_name": "296748d3-d28b-5942-9335-0d8b478eda19", "text": "2 malay men drawing a plan for a future building,80\u2019 film styles,23fps "} +{"id": "7003448", "video_name": "9db079bd-4f56-5910-9ce0-9b5ae802f900", "text": "create a parrot that looks like bob marley "} +{"id": "1004829", "video_name": "5934230e-356f-564b-bef1-7ffd3946dc7f", "text": "walking, the women is walking, slowly, slow motion, "} +{"id": "0006262", "video_name": "299837a2-944f-5dcd-a2df-3886282eaf69", "text": "seed of a tree growing from a minimalist brain, pastel colors "} +{"id": "1006498", "video_name": "76f9103c-ee94-5fc2-9cf9-2690252491fa", "text": "Video male and female fashion models wearing trendy clothes, standing on an F1 race track. "} +{"id": "4002080", "video_name": "58ddd276-78c0-59f2-b957-ce93ee38a308", "text": "add one fox baby cuddeling with lioness Message: 1 Attachment "} +{"id": "2005512", "video_name": "e88e4151-43fa-5606-97a9-86a73e5400ca", "text": "a sport man massaging an oil massage on his leg tired muscles "} +{"id": "3003174", "video_name": "d17b2109-397f-542c-9781-04b9237aefee", "text": "\u3002The firewood is burning in the fireplace. "} +{"id": "1004236", "video_name": "4e70eca1-175d-576c-8289-1ad3ff42b85f", "text": "Hand holding a small plate of food with portioned food groups "} +{"id": "0006770", "video_name": "32bbc2c0-2135-5d32-b00f-f30751a462be", "text": "She had a curious spirit and an insatiable love for books. Every day, after finishing her chores "} +{"id": "3004980", "video_name": "0ef0b1ce-dda8-5095-8916-e387d9bfb625", "text": "a rabbit finding big house,moving sky,blue "} +{"id": "2003568", "video_name": "0a1b4ad1-9441-5de2-ac9b-845d4512b9d0", "text": "laila and wolf in the house for grandmother "} +{"id": "0004374", "video_name": "07f1c360-668c-59b4-abd6-5122b350d0ab", "text": "2 circles with humanoid characteristics like a face and arms discussing about the weather, while its getting hotter and hotter "} +{"id": "8001104", "video_name": "26a2ab86-1119-59b6-9849-ef92f7b9b0aa", "text": "black beans being cooked in a commerical kitchen "} +{"id": "1003173", "video_name": "3a63ca9d-3b6f-5006-a01f-b304adf66ea4", "text": "living room decorated with furniture in red, orange, moss green walls and ice style "} +{"id": "1005321", "video_name": "61bd3a0a-16d0-545f-9c76-1f5b347c45f0", "text": "Achaemenid gods and goddesses mitra art style, muscle black black body masterdev sitting , glorious magical on darma and yogis dancing around the kaal bhairav, surrealism, highest quality "} +{"id": "1003132", "video_name": "39c076bd-43c4-54bd-8d0f-c67f9c1df3de", "text": "a puppy falling off a table "} +{"id": "1004538", "video_name": "54538854-f278-5252-9ac1-fa1b47f54268", "text": "create a wall of some old civilivation of india "} +{"id": "6003484", "video_name": "d0d536b7-a38c-54ea-b3c9-dd3272ef38c5", "text": "An enthusiastic chef cooking delicious dishes in a steamy and bustling kitchen. "} +{"id": "8003119", "video_name": "ae0dd36b-675d-5bdc-a2fe-367f59e9b43a", "text": "two people are shopping in the grocery store, one of them buying fresh juicy orange "} +{"id": "6004025", "video_name": "d2f0601f-1b40-553b-9c24-8033a64fe9d2", "text": "a detective walking on the street, top view "} +{"id": "7003972", "video_name": "ea16cf5b-04c0-5960-8277-49ae5bccb030", "text": "Snowy Christmas scene with santa Message: Happy Christmas (Font: COMICS) "} +{"id": "2006787", "video_name": "6696dff5-e76f-50da-ac3b-f2ac520170b1", "text": "a young boy wearing space suite "} +{"id": "2004452", "video_name": "60ccaff1-2777-58d7-ab67-218527344c8f", "text": "a beautiful girl on the backseat of a car, grainy old film, old video "} +{"id": "3006538", "video_name": "37c6ad3d-adfe-5fa8-b80c-901040b755b2", "text": "big fish on the small ship "} +{"id": "2003084", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "krishna in the mahabharatha battle field cinematic "} +{"id": "6004409", "video_name": "79af566f-a6c7-5833-ae23-8b4fa50f72a3", "text": "a beautiful queen wear crown in head with white dress "} +{"id": "7003166", "video_name": "63ec96c7-6146-509c-add3-4f2929e5263c", "text": "A stick figure takes a picture of people riding a locomotive from outside Camera angle movement 16:9 "} +{"id": "8003758", "video_name": "8cc67f4d-2b53-5dcb-8d0a-7369bfccc46f", "text": "white ghosts swirl around in black background, white and black, ink sketch "} +{"id": "4003278", "video_name": "6c173401-e0b3-56fd-b5a0-c35e0d209339", "text": "Princess snow white is hugging a labrador in a lavender garden "} +{"id": "7002571", "video_name": "213b5410-3a8b-584a-bb3b-f8eb5dfdd793", "text": "a trap and jazz hip hop crowd dancing in nightclub, couples swing dance , and other couples grinding on each other "} +{"id": "6003053", "video_name": "b45f5474-db5c-520f-ab9a-0185a9bb464a", "text": "Boy running towards jungle in dark "} +{"id": "2005867", "video_name": "a06b4556-5543-5625-b87f-88de6427c23b", "text": "the dog attacked the truck and it hit it "} +{"id": "5001865", "video_name": "591c7bb3-456e-52d9-8193-60bc3dd35bfd", "text": "Immerse yourself in a tranquil journey by the sea as our AI realistically simulates a woman walking gently on the beach. Let the soothing sounds of the waves surround you, feel the sea breeze, and marvel at the beauty of nature in a video crafted by artificial intelligence. This virtual moment of serenity provides a relaxing escape and a unique seaside contemplation experience, all made possible through the magic of technology. Allow yourself to enjoy this brief digital retreat and recharge your spirits with the harmony of nature and the power of artificial intelligence. "} +{"id": "2005188", "video_name": "35036c71-18a8-5ec8-a651-cabb52ac412b", "text": "winter, the woman walks into the distance "} +{"id": "7002970", "video_name": "7d198c74-a51e-5304-b7ad-2d003d689ccf", "text": "a boy is sitting next to pyramids Message: 1 Attachment "} +{"id": "4003682", "video_name": "8bd7289d-5cdc-512f-8bef-c9326c3db02c", "text": "A video of game being played on smartphone with finger gestures "} +{"id": "7003785", "video_name": "4c6a6d42-b9fd-525c-9f55-0da21f7ab3ba", "text": "A straw basket containing a large fish is placed on a beach "} +{"id": "7003276", "video_name": "0a9ccb80-0568-5040-acd3-0daa27fd212d", "text": "spectral sleep paralysis demon looking down at the camera in a uncanny bedroom. "} +{"id": "4002544", "video_name": "66ef0e3c-3aa4-50ae-adde-5c3a00726cda", "text": "two men fencing at the Olympics 1920s style, black and white 8 mm film "} +{"id": "6000002", "video_name": "64ed748e-b2fc-573b-b7fd-1b26f4562c72", "text": "Make him light glowing from him "} +{"id": "6004696", "video_name": "05cdfabc-359f-59c7-bc2b-e0f7cd5b8901", "text": "Castle in the clouds, sunlight, cinematic, historic. "} +{"id": "0005966", "video_name": "242686c9-cd04-54cd-ab41-4b68dc3bbb25", "text": "Description: The sun slowly rises, casting a magical glow over Dream Valley as the adorable little animals wake up, creating a warm and enchanting atmosphere. Visual: The sun rises, and the small animals of Dream Valley come out of their homes, joyfully welcoming the new day on the rainbow meadow. "} +{"id": "0005631", "video_name": "1e6b560a-2868-5962-96bc-cb7d916dd997", "text": "Villagers sharing meals together, fostering a sense of community and camaraderie.Animated cartoon "} +{"id": "1006004", "video_name": "6e582bb8-6abe-5fea-b568-cd65baeb2985", "text": "car on the road at night, watercolor style, splash art Message: drive safety (Font: MODERN) "} +{"id": "7003772", "video_name": "d0f49f55-f855-5a2e-9bcf-41c96432cf10", "text": "Change clothes to suits and wear hats "} +{"id": "7004518", "video_name": "ae5d434a-313d-558c-a487-e21da7a3355d", "text": "it should wrap on bunch of posters, advertisement post for poster sale Message: uDovibe (Font: MODERN) "} +{"id": "2006297", "video_name": "db6d0c7b-f487-5b5d-ae88-a7a75458c10a", "text": "hyperfeminin girl in a pink dress "} +{"id": "1006934", "video_name": "7ed70fc1-af6f-54bb-830f-1be044a83a00", "text": "Help demonstrate the process of building a forest aquarium landscape in this video "} +{"id": "2004596", "video_name": "b7421ef3-2b87-598f-81fe-4630028968da", "text": "make a black vinyl that has \u201cGrief Diaries\u201d written on it in red and it\u2019s playing on a vinyl player, make it look realistic "} +{"id": "4002527", "video_name": "21b90025-bf21-5fe6-9eb9-4afd66b9520f", "text": "A girl is doing a spacewalk. "} +{"id": "3006848", "video_name": "52456e95-98c5-51d0-84d3-c945a44c818d", "text": "girl smiling and rocking her dog on her lap "} +{"id": "4004475", "video_name": "f3650060-d690-5f24-8a5e-4af221376820", "text": "3d a man barbeque a whole goat, fires "} +{"id": "3005813", "video_name": "de942ea9-60e1-55c6-a032-4e82bb8744e5", "text": "Netaji Subhash Chandra Bose Message: 1 Attachment "} +{"id": "4003867", "video_name": "8f20f880-fd2e-5894-b88f-21557c73220e", "text": "a motivational video featuring a realistic lion as a symbol of strength, resilience, and determination. The lion should be depicted in a natural setting, inspiring viewers to stay strong in the face of challenges. Incorporate motivational quotes or messages throughout the video for an uplifting and empowering effect. ONLY HIS HEAD "} +{"id": "3005694", "video_name": "aa1bbbd6-b32f-5822-80ce-275369fe9f50", "text": "animated kitten walking a tight rope in outer space, with edm planets "} +{"id": "8003842", "video_name": "c585be91-a872-5b3b-b4bb-dd542379b7e4", "text": "In the mystical land of Ayodhya, there lived a mischievous but devoted monkey named Hanuman. He was not an ordinary monkey; he possessed incredible strength, wisdom, and most importantly, boundless devotion to Lord Rama. "} +{"id": "7002368", "video_name": "df50a498-9e69-590b-9739-3b4d2cd02830", "text": "1970s art film of wildly dancing robots, by werner herzog "} +{"id": "2007007", "video_name": "81b90053-e810-545e-8bf4-628ff2d1d19f", "text": "Santa Claus is playing the guitar and the snow maiden is dancing a break dance next to him "} +{"id": "6002812", "video_name": "a6720f8a-84a7-57c1-bce4-7ebd140e3c05", "text": "There was a cunning fox in the forest, she wasn\u2019t black eyes, the forest was dark, dense, she loves everyone very cunning "} +{"id": "6004404", "video_name": "b36f23d6-64c2-5d8b-ba45-764524e7c258", "text": "queen in prince in the room "} +{"id": "2006427", "video_name": "9d5d59e5-2ddd-54e7-a7c6-d8e9df44683a", "text": "image of a mountain in the background of the image, the sunset, a waterfall and a lake "} +{"id": "2004148", "video_name": "6f8938ca-8ecd-5a56-9e30-94b266062bee", "text": "Black and tan dachshund flying open cockpit aeroplane made from colorful modeling clay "} +{"id": "0005768", "video_name": "20f99bcd-6426-5266-963c-87cda3135c4c", "text": "An open grave at night with a smile inside "} +{"id": "2003146", "video_name": "1dc8b94b-1dc3-5763-a8ab-a1d206dc503d", "text": "Briefly introduce the character, their background, and the challenges they encountered. "} +{"id": "6003399", "video_name": "49277dda-a4e8-5d6b-ae89-575d036aadd8", "text": "red flying saucer. Flying through space. 8k. Unreal engine 5 "} +{"id": "3005285", "video_name": "da17835c-a1e9-5b66-9937-dae6e94e1aed", "text": "Quick shots of menacing figures in dark corners "} +{"id": "6003727", "video_name": "88e69278-00f3-5609-9a93-29d999542112", "text": "inside stock market in 1910. traders on the stage. "} +{"id": "3003161", "video_name": "276d6423-5fb9-5ae3-8347-ddd98fef8dd1", "text": "An enchanting forest with dappled sunlight filtering through the leaves, where Lily first discovered her love for nature "} +{"id": "4003336", "video_name": "4c16c19c-8157-5ee0-999e-096ff298aa47", "text": "1990s sega Dreamcast gameplay of mascot platformer game"} +{"id": "7003284", "video_name": "5cc00a60-9703-5641-bfcb-9135b98d456e", "text": "In front of the huge spaceship, a group of people walked up, wearing futuristic suits and smiling. "} +{"id": "2007011", "video_name": "d2f2c925-388b-5f2a-ada6-66d1ca400a36", "text": "large black silhouette of god vishnu in center, with a glowing halo behind "} +{"id": "2003556", "video_name": "4de417a7-0859-57be-9dcb-c2f1a12e58e0", "text": "A robot with weapons celebrating victory (3D animation) "} +{"id": "0003819", "video_name": "4410ab7a-c8ac-57cc-8b58-4c56e42c86f4", "text": "elon musk looking at the sun "} +{"id": "0005271", "video_name": "179c188a-03a7-57e7-bbff-03a57b66991f", "text": "Felix the Fox cautiously approaching Daisy the Dog, a fluffy golden retriever puppy, offering to help her find her way home. "} +{"id": "8002480", "video_name": "9603c8df-b11d-5d9d-a485-ed5c4178a356", "text": "inside the jail 3 to 4 prisoner painting the wall with help of one girl "} +{"id": "3005586", "video_name": "a86c9c72-6f1b-5cb1-8f5a-946c7c7640f3", "text": "From the long and thin spaghetti of the south to the hearty lasagna of the north, each region developed its unique pasta traditions and sauces. "} +{"id": "8002981", "video_name": "e79b60f4-1c13-557a-ad58-31e412384c1d", "text": "During their investigation, Judy and Nick confront a key suspect, leading to a tense exchange of words. What are the first clues or leads they uncover that point toward a larger conspiracy? "} +{"id": "8003661", "video_name": "0b3070f3-828a-5dcc-ae0e-c09ac998540e", "text": "delicious chinese chicken soup in a beautiful china container "} +{"id": "1004659", "video_name": "56aba318-0efb-5118-b60b-7b76d8444d4f", "text": "The Lava Throne in the Ice and Snow Palace "} +{"id": "8001568", "video_name": "11e6c1fa-cdae-51f3-a1ee-8903c2a2b8d9", "text": "3d boy and girl cinematic zoom in the park background "} +{"id": "8002637", "video_name": "671d54d2-04ef-50cd-8d81-e9f4a089a07a", "text": "house front door with christmas decorations "} +{"id": "3004516", "video_name": "71064162-0688-57ef-899f-fe02607c3e2a", "text": "The earth is desteroyed by a meteorite "} +{"id": "7003267", "video_name": "de599dee-a0be-566d-baac-af2402f834cc", "text": "camera zoom in witch a24 studio film "} +{"id": "3005181", "video_name": "3646c001-28cd-54ba-91c6-0ba5cac823b1", "text": "A beautiful coastal beach in spring, waves lapping on sand by Vincent van Gogh "} +{"id": "2003145", "video_name": "423a688e-bec0-57b9-81af-698f36ec8215", "text": "Suddenly, I saw a nun in her thirties, walking towards us "} +{"id": "0005005", "video_name": "13224ca1-2111-568b-8849-8071a4b434d2", "text": "create a digital child with dancing and enjoying snowfall "} +{"id": "2006839", "video_name": "45937fa9-c124-5cc5-8f21-abf6bc095588", "text": "a boy studying night time ghibli animation "} +{"id": "1003384", "video_name": "3e56b08e-7570-5e6b-bcfa-9ce1e177b2d7", "text": "A group of friends standing in a dark hallway, looking up at a dusty attic door. "} +{"id": "2004355", "video_name": "d7a45abb-9801-56a6-a20c-80fa5f9d64f7", "text": "A family of three bears happily enjoy hotpot in a house during a heavy snowfall. "} +{"id": "0003771", "video_name": "430ac663-78c4-55d2-a1e7-45bf3cee1a6f", "text": "Let\u2019s innovate together 3d theme , blue gamma color "} +{"id": "6002612", "video_name": "a3ce04f5-f10c-579a-a28b-8f611c7d9bd0", "text": "lightning strikes the sea at night, storm "} +{"id": "3006876", "video_name": "e891254a-3fc2-5a8d-9769-53acb078ee3a", "text": "a street in the city, night, steampunk style "} +{"id": "4002921", "video_name": "016497e6-16d8-5117-aeb7-4d67131d2fcd", "text": "face young girl to old in timeline photorealistic 16:9 "} +{"id": "0006501", "video_name": "2d97064f-9453-5a7c-b1fa-f084b771a267", "text": "realistic forest Message: ashepisha (Font: MODERN) "} +{"id": "6003784", "video_name": "d724229d-cb28-5dd1-a844-9a8d292aaaf8", "text": "A village setting with a bright future: buildings adorned with colorful artwork and residents engaging in productive activities, showcasing the positive impact of valuing time. "} +{"id": "1005964", "video_name": "6d907ad4-f094-5270-b3c5-8542dfc977c4", "text": "A girl going to primary school "} +{"id": "8003582", "video_name": "603476d2-5849-520f-aa15-04149110f236", "text": "a conference full of old people complaining "} +{"id": "6004541", "video_name": "d218479e-cddb-5e67-bd74-52b41cf1e14c", "text": "A gold hair blue shirt boy practicing piano "} +{"id": "7003695", "video_name": "318aa696-bbce-5e6b-ac7c-f1b3cf130b5e", "text": "a man seating in a hotel bed thinking "} +{"id": "6002303", "video_name": "c9fd5a64-e905-5581-a7ed-096d127f291b", "text": "the same man doing sit ups "} +{"id": "2007828", "video_name": "83eb7ec9-b5b0-54fd-8035-f9954b73fca0", "text": "The girl with red hair energetically moves on the pole on the stage in a beautiful theater. "} +{"id": "1005278", "video_name": "610a0beb-1adc-568e-8ede-027616301c47", "text": "symbols of different cryptocurrencies: ETH, BTL, USDC, DAI, BUSD, CAKE, rotating on their axis. A light blue background with concentric rays of a darker light blue, a bag of money, a hand handing dollar bills to another hand and a piggy bank with a coin in it, all in a cartoon "} +{"id": "8002211", "video_name": "3f9ed9c1-e5b6-5bd2-8768-36349ca2e6f7", "text": "a businessman sitting in an upscale new York restaurant at night struggling with his tinnitus "} +{"id": "0005214", "video_name": "16a7c829-2b12-5e34-98f4-0d76dc1f795a", "text": "silver orchid floating in space, white stars sourrounding object, light glowing from left to right "} +{"id": "2006865", "video_name": "0e7c2477-f299-54c3-94b5-6bd7e454f5eb", "text": "imagine two marijuana flowers as a couple, a boy and a girl. I want you to animate it for me "} +{"id": "3006234", "video_name": "eb2b658d-e2ef-5f8c-9533-ff1f35c3c0c9", "text": "A watch or clock melting like an illusion. "} +{"id": "2003260", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "view from a kitchen window of children playing in a garden "} +{"id": "2005470", "video_name": "94735cdd-288e-544a-868f-ce1c5374756c", "text": "a horror and scary green screen pumpkin man "} +{"id": "4004732", "video_name": "92864a40-aea8-5905-99e3-4c0691c10998", "text": "The sky, heavy snow, beauty, spin "} +{"id": "2007823", "video_name": "71a9293d-824c-50c1-94bd-35b89b73e26a", "text": "Through the intelligent assistance of GPTs. Improved efficiency and accuracy, providing accurate answers quickly from a large database. Simplify processes and save resources, reducing time and labor costs. "} +{"id": "6004283", "video_name": "9ad4cb1e-3a3d-5ff1-9385-4e563092bc82", "text": "a dog showcasing an electric collar "} +{"id": "4002561", "video_name": "a392ac2f-ace5-5ebf-af3e-d7621bccf9e3", "text": "woman with white clothes, dancing in the desert. "} +{"id": "3005434", "video_name": "14a72fa8-e4b9-5110-a3bf-12d5282a4f6b", "text": "At the end of a quiet street stood an old house surrounded by lush trees. Rumors about the house had circulated among the villagers, claiming that it was cursed due to a mysterious and frightening incident that had occurred there.(3D Animation,Night) Message: 1 Attachment "} +{"id": "2006953", "video_name": "070e5200-ebf6-50bd-a251-3790423860f1", "text": "Envision the smaller, more manageable steps Emma takes to break down her tasks, making them less overwhelming and allowing her to overcome the habit of procrastination. "} +{"id": "0005949", "video_name": "23d3e280-3167-55a5-9df5-eceaea1bce98", "text": "incorporate elements of suspense, darkness, and horror to create a chilling atmosphere around the figure walking on the dimly lit footpath slowmotion, Procession of illuminated figures ,ethereal glow ,evening darkness,outdoor setting ,ghostly silhouette,soft luminescence,forest backdrop,spaced in a row,otherworldly appearance,aligned formation,tranquil path,serene walk,spiritual connotation,contrast of light and shadow,misterios ambiance,silent march,uniform brightness,supernatural suggestion ,ambient night,mystical procession. "} +{"id": "8002405", "video_name": "edb5a364-c9d0-5561-a867-59257b4fbd41", "text": "a boy alone in graveyard 2D animation cartoon "} +{"id": "2004578", "video_name": "f749a8df-27d9-5cf1-85ab-8686bb26adaa", "text": "This extraordinary feline seamlessly combines rusted metal and sleek metallic silver, creating a mesmerizing fur adorned with intricate details. "} +{"id": "6003178", "video_name": "a2a7c442-ff01-5fbb-9eb9-33c02d6f9b21", "text": "zebra walking across savannah, background night "} +{"id": "7004250", "video_name": "318196c2-b387-58cf-af28-bf7b0935855c", "text": "fractured glass woman screaming at her reflection "} +{"id": "3004614", "video_name": "b3fccc25-e8c8-579f-bb06-32c7da6dd7a5", "text": "10 second clip of professor teaching class "} +{"id": "1005872", "video_name": "6c12fd76-cdba-53bf-af02-2a5105ae0fed", "text": "two man walk on brown path with green plains both sides with minimal rain "} +{"id": "7003857", "video_name": "9e0ef29f-c989-5a73-9617-0e15b9f79b0b", "text": "3 Roman soldiers entering battle ground, snow fall, snow land, mountains, evening, clouds, sunset "} +{"id": "7003906", "video_name": "1d29cd1f-175c-57ff-ac89-5991c6187ca2", "text": "In one of them is billionaire weapons developer Tony Stark (Robert Downey Jr.), riding with soldiers on duty. "} +{"id": "8003825", "video_name": "27cd67c2-ada7-532b-92c3-f2680959995c", "text": "black and spooky anaconda, walking on trees with high resolution, and 4k image "} +{"id": "6002550", "video_name": "cfed4e64-2ec2-54d8-8cbe-fd549b3ff446", "text": "Tropical rainforest, a spaceship flew by Message: 1 Attachment "} +{"id": "2004758", "video_name": "bea93952-f107-5180-b052-a3bb115e5bd2", "text": "a few university students, mainly Asian, eagerly discussing sth over a white table "} +{"id": "3003211", "video_name": "1c67ec6c-e9cf-5b64-8969-8623a3aaff10", "text": "Close up of Scooby Doo with bloodshot eyes in 1970s tv cop drama style. "} +{"id": "2003972", "video_name": "93a3559b-47be-5562-b44a-5a9c4607b191", "text": "Picture a group of people in office discussing a new planner for the upcoming term. See the excitement as they brainstorm and set the foundation for the upcoming academic batch, illustration style "} +{"id": "7003649", "video_name": "37c6d677-69ea-5d48-8fb6-0d84cc55569b", "text": ": a cute dragon play in the cloud "} +{"id": "1004291", "video_name": "4f65507f-4d75-5a04-a78f-45a960cff347", "text": "Little bird moving and the water moving "} +{"id": "4004143", "video_name": "4dbd951f-154e-5aec-8033-5ae8275d030b", "text": "God in the form of a man creating Earth "} +{"id": "8002251", "video_name": "52df0f25-48d0-5799-a7d0-aecd864407b6", "text": "spores fill the air Message: 1 Attachment "} +{"id": "5001313", "video_name": "492f4c44-3442-5414-b6fa-d59732886181", "text": "a man wearing a red dress and high heels, surrounded by butterflies "} +{"id": "8003672", "video_name": "4b0f6164-b7ca-5ba9-985c-6e21979c8aec", "text": "riding on the whale in the water against big ship, use HD camera skills,pixar style with atleast 1 minute video "} +{"id": "8002918", "video_name": "8e40aaf2-47ec-5153-9e0d-eb75c5358503", "text": "a waterfall of yellow paint falling and splashing in a dark room "} +{"id": "3005113", "video_name": "a3c2f9e0-a25c-52fb-83c9-3166487dad66", "text": "Once upon a time there was a little girl named Emma who lived in a picturesque village called Sonnental. Emma was a curious and adventurous soul who loved exploring nature. She was particularly fascinated by the nearby forest, which the locals called the \u201cmagic forest.\u201d "} +{"id": "4004041", "video_name": "35450260-26b2-5e81-9f3d-70f1e8677b09", "text": "Batman with a Green Lantern ring flying through space, 2D animation"} +{"id": "4004278", "video_name": "46527b8b-53a6-51f7-b24d-7f9811df6aa0", "text": "a man with little hair and a fierce look in a suit and tie holding a book, atheism god, full body in camera, cone, trustworthy, live broadcast, inspired by Zou Yigui, sponge bob, dressed with long fluent clothes, with his back to the viewer, helltaker "} +{"id": "8001467", "video_name": "4aaa2e4f-0b46-55cb-a882-aaadbd3f7d3f", "text": "stone age human runing from Avalanche "} +{"id": "7003705", "video_name": "f6d32c64-c737-552b-ac93-401da9b9f0e0", "text": "The Sky Above The Port Was The Color Of Television, Tuned To A Dead Channel "} +{"id": "3003906", "video_name": "e54d2e29-ddfe-50b8-a86e-b3c35d96d5ae", "text": "a detailed photorealistic delorean car traveling down a country road with lightning bolts, in the style of felix philipp kanitz, dynamic zoom, cinematic, smokey background, daz3d, andreas levers, karl hofer, tabletop photography, olympus xa2 "} +{"id": "2004595", "video_name": "8af427ba-e0f9-537b-b5ea-4bfbb22c9f42", "text": "Bravery and unity are the keys to overcoming difficulties and achieving goals "} +{"id": "3005911", "video_name": "5d065677-5e2d-5110-8dd3-46710402b2a9", "text": "create a content for it Message: 1 Attachment "} +{"id": "0003695", "video_name": "41db559f-bd31-5ab1-83e5-d47ac80419cd", "text": "a woman working on a creating a logo "} +{"id": "4004433", "video_name": "86a73dca-ca5f-5504-9249-f5d0e20ce0bc", "text": "beautiful woman walking away from burning house "} +{"id": "4004160", "video_name": "d853bc4e-0d10-5dc3-815c-5bab338868f1", "text": "Hands reaching towards a globe with diverse cultures and symbols. "} +{"id": "2005428", "video_name": "ecb80acb-2037-549b-8961-37c93d5f91db", "text": "a huge middle ages building floating on the air, daytime, clouds, cinematic "} +{"id": "1006372", "video_name": "74ad77bb-8ac9-506a-aafc-393cc23fa2ad", "text": "white rabbit in the forest 3D picture "} +{"id": "8001941", "video_name": "1a70636a-4003-517a-898b-2b2e055ab34c", "text": "old handheld camcorder video of a small reflective sphere flying through the clouds in the distance "} +{"id": "7004159", "video_name": "8917abc4-033f-549f-b9d6-1b3070c54403", "text": "Representations of the Two Witnesses prophesying and being resurrected. apocalypse.8k full hd "} +{"id": "0004682", "video_name": "0d41ed25-08c9-5577-9fa2-75109b8a249a", "text": "a raven flying over the battlefield "} +{"id": "1005887", "video_name": "6c440862-cdb6-5b6b-adcc-2a1976a59fc9", "text": "young man in blue outfit rides a silver shark "} +{"id": "2005290", "video_name": "a0b6f6fe-3656-51dc-825f-d26ba2c59da8", "text": "A room full of lab equipment "} +{"id": "8003229", "video_name": "6d64e084-59c3-5efe-be58-a9a0fa07af2b", "text": "a prehistoric giant walking on golden heights "} +{"id": "2003274", "video_name": "643bff74-7976-55f9-afb6-487072e92a35", "text": "A ginger candy dropping into an empty bottle, and when it touches the bottom it melds and becomes liquid, and flows upwards to make the bottle full of bubbly ginger ale "} +{"id": "7003971", "video_name": "ea432ba2-5ae0-58e0-9908-d179cbcf6e5e", "text": "a pawn on a chess board laying on its side "} +{"id": "7004090", "video_name": "6ea6fa20-d9bc-56e5-beb6-997b3b9bfc7e", "text": ". steampunk creepy authentic demon clocks and gears moving, in the artistic style of H.R. Geiger "} +{"id": "5001503", "video_name": "59c3d69b-d568-5fa1-a5ea-99f25d7987d5", "text": "mongolian tribal women dancing around a huge fire at night, the stars are shining "} +{"id": "1003416", "video_name": "3f151b0b-773f-58eb-a152-99e8bc3ddb20", "text": "The bookstore was a relic of a bygone era, a place where forgotten tales resided "} +{"id": "3004821", "video_name": "4ac59491-8f95-50e6-b3ef-5c8417e4993d", "text": "Illustrate a vision of Earth in 2050, emphasizing sustainable living, renewable energy, and global cooperation for a better future. "} +{"id": "3006862", "video_name": "fd80bccf-76c3-5faa-bdb9-81604470009d", "text": "zoom in thatre curtain opens Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "6004119", "video_name": "8ce7eb74-eb19-5b03-b92d-20dcdf7ee71c", "text": "a girl with long brown hair with one white dog in the forest "} +{"id": "7002065", "video_name": "9eeebf8a-965a-57fb-b522-43fe78880b49", "text": "CJ from GTA San Andreas falling off a building "} +{"id": "8001180", "video_name": "55af8953-de1a-59ea-b780-841c1bebdfbf", "text": "a bee hive cartoon squeezing its own honey into a cup with frustrated emotion "} +{"id": "4002397", "video_name": "35f9d6ef-0b91-5dd3-a6fc-f22c374dba0d", "text": "large group of people walking in anger with flags in hand "} +{"id": "0005910", "video_name": "231d6469-815f-5cb9-bfd0-2efb37a10434", "text": "Imam Ali carries Zulfiqar and fights the jinn "} +{"id": "2006097", "video_name": "164ba385-4ef0-534c-a123-d6737ee4fcb5", "text": "horror story Suspenseful sequences of friends disappearing one by one, leaving behind only perplexing clues. Protagonist becomes determined to unravel the unfolding mystery. "} +{"id": "7002603", "video_name": "347de6c7-09e3-56cc-a507-0a3bc67e814b", "text": "closeup of red converses skeaers dancing in place "} +{"id": "7002411", "video_name": "ec8d63f8-7271-5c95-8826-b827ae63d3d8", "text": "zebra stand still, head turns and looks at camera, only animate clouds and subjects coat, do not animate face, do not touch face, do not animate ground, subtle movement, cinematic, high resolution, life like, hyper realism, retain all quality, high texture, high detail. "} +{"id": "1003056", "video_name": "38315ecc-af82-5655-b1c1-fd6028668279", "text": "a turtle made of fluffy clouds floating through the sky "} +{"id": "4004255", "video_name": "edbab424-53fa-5d95-b661-42ece9bed617", "text": "Plumber repairing toilet in a gas station bathroom "} +{"id": "5001254", "video_name": "ba9ae4ea-2d64-52b1-8cc4-144e486177ce", "text": "a girl in dark room sitting on floor ,at 16:9 "} +{"id": "2003470", "video_name": "54c10c4f-d650-57a6-ad51-1be93f525553", "text": "Photograph of modern woman in yellow leather dress posing outdoors during golden hour "} +{"id": "8003997", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "heavy rain falls on a terrace in P:aris "} +{"id": "2006516", "video_name": "6d0c18a1-cfc8-5ba5-839a-ad7fa4cae506", "text": "Marlon Brando from the Godfather, eating jellybeans one by one with his hands "} +{"id": "0005026", "video_name": "1363b964-b717-5886-ae96-163d707a315e", "text": "a leaf flies in the fire across the field Message: 1 Attachment "} +{"id": "2007786", "video_name": "bc94ee69-25f9-51ea-ae54-07fd6803f17f", "text": "Purple orchids dancing harmoniously in an artistic bloom in the style of Van Gogh, art, 16:9 "} +{"id": "4004503", "video_name": "9ca8e502-5227-501b-acfb-8d482703d756", "text": "a boy at market, high detail "} +{"id": "2003499", "video_name": "f2758060-cd8e-5c2a-89cf-465eb0e36602", "text": "hellboy drinking a cup filled with molten lava for breakfast "} +{"id": "4002472", "video_name": "28a53120-64bb-5fb3-810e-0c133c7950f2", "text": "create a 10 minute video, which has a hypnotic circle "} +{"id": "4004116", "video_name": "a725edbc-26ff-567e-b91d-d12377429537", "text": "Animated grasshopper shown singing and dancing "} +{"id": "0003984", "video_name": "011246ce-d9b3-5f75-969a-0f110b4e6aea", "text": "Diwali celebration with lights and joy without crackers "} +{"id": "7002548", "video_name": "88cf95bc-53ec-5e6d-b21a-086b26239867", "text": "fantasy phoenix flying together with dragon "} +{"id": "2005521", "video_name": "1654df19-63b5-55d2-b80e-06b5d6667ec0", "text": "flying dancing robots over New York "} +{"id": "2003834", "video_name": "03d5f305-974d-59e6-98c4-68266c48448f", "text": "little girl saying obeying her mother, 3d cartoon "} +{"id": "0003261", "video_name": "3a42f049-56df-54ab-817c-9d34c8d252a9", "text": "A person sits at the table, studying intently, with a book and a cup of coffee on hand "} +{"id": "2004613", "video_name": "da698381-afa3-5d8c-a93d-f1be6a883384", "text": "haunted legacy had ended, replaced by a newfound hope that even the darkest of places could find redemption and become a beacon of light in the world of shadows. "} +{"id": "7002326", "video_name": "466dbad3-2f4e-5fc8-8905-a181deff58f3", "text": "Jesus in a straight jacket, walking down the street, hip hop, groovy, cinematic, motion 4 "} +{"id": "0005351", "video_name": "1942225d-b19e-5850-94bc-914f0ebe473c", "text": "with people from different backgrounds living harmoniously. "} +{"id": "1003467", "video_name": "402fd357-6fef-579f-beed-ad54ca5c68d7", "text": "a camcorder video of a man running through twisting backrooms hallways "} +{"id": "1006961", "video_name": "7f601057-c146-504f-ae30-344d4c7987b2", "text": "fashion model standing in beige wool clothing in the snow with switserland mountains in the back, she is holding a husky "} +{"id": "2003346", "video_name": "cac9ac19-4fa5-5467-9f55-4f7801d6a1c6", "text": "prompt a train in a darkly lit subway "} +{"id": "8002173", "video_name": "aadd37a1-5104-5d3e-90ce-6f97e1f5f9cd", "text": "a dog walking through jungle, smooth walking, stable motion, seamless motion, seamless walking, hyper realistic, stable transition, clear, intricate detail, camera pan out, seamless motion "} +{"id": "1005952", "video_name": "6d511cd9-bf52-559e-b9d0-ab775b6f6463", "text": "beautiful owl Handle with care fox "} +{"id": "0003860", "video_name": "44c32124-8e9b-50b3-b697-848a33b15a00", "text": "high quality scene of an alien contact with humans , 16k quality "} +{"id": "3006745", "video_name": "5ae9213d-d524-568a-b052-66324cfb115c", "text": "cat walking on the snow, 8K "} +{"id": "0006375", "video_name": "2b63d5aa-db0a-5317-b5bb-53fb17f90190", "text": "Stormy clouds, 4A advertising grade, high resolution, 9:16 size, stunning, 45 seconds length, full video "} +{"id": "2006079", "video_name": "119adc51-4e35-52e8-880e-5c753de4a6bf", "text": "a laptop screen showing an internet search, Wide angle lens "} +{"id": "4003926", "video_name": "f6205d50-e773-533e-9b38-d7e211832e1c", "text": "little girl rides a horse in the mountain area "} +{"id": "2006320", "video_name": "8263b3db-d510-5329-a865-3402710d6b81", "text": "Transition: Waves gently lapping on a Pacific island beach, with Kava roots in the foreground. "} +{"id": "4004156", "video_name": "77fe6532-1e93-5c66-9b16-bd0eaff2afcc", "text": "Generate a video of 20 sec a heyna eating lion "} +{"id": "2007707", "video_name": "c634d6d7-d4c1-5be4-b355-009ef1c0dcfe", "text": "Cloaked in robes befitting his godly lineage, Cronus wields a celestial sickle bestowed by his mother, Gaia, as he confronts his father, Uranus, in an epoch where gods and titans shape the very fabric of reality. "} +{"id": "3006597", "video_name": "a3debd74-0c65-56c8-bb6c-9471755f8862", "text": "The scene is set inside a detectives office, the shot is in noir style, and the camera slowly zooms in on the detective as he reads documents "} +{"id": "8001772", "video_name": "3316c898-d92b-5f56-9989-a915fcd3d111", "text": "Homer Simpson Vs Peter Griffin, 8k, ultra realistic, highly detailed 16:9 "} +{"id": "4003564", "video_name": "a3566c9d-48df-5d68-ad3a-752f02a9c13a", "text": "A cartoon animation of roblox doors "} +{"id": "0006803", "video_name": "335ffd78-7359-5f95-8f72-128728892868", "text": "The moon fell on the water in a silvery light\uff0cThere were clouds in the sky, and on the clouds there was a golden moon "} +{"id": "7003750", "video_name": "add36587-143b-5caa-b0a5-d019600d447a", "text": "skull sitting inside a glass jar in the style of jamie heiden, george stubbs, peter kemp, beautifully textured brushstrokes, elegant, emotive faces, dark blue background "} +{"id": "1006912", "video_name": "7e6193d2-dffe-516b-859f-2fadaf8dd79f", "text": "a realistic painting of a space demon "} +{"id": "7002589", "video_name": "115ca906-c0ab-5e0e-b36a-e195b469a68f", "text": "a girl goes to a meeting, her hair is developing and it\u2019s snowing "} +{"id": "7004603", "video_name": "4fbd8ad9-04b7-5cc6-9f01-73387cb0e40c", "text": "change the bird color Message: 1 Attachment "} +{"id": "1004278", "video_name": "4f1f10b3-b6c6-5651-a85f-977ab3307d80", "text": "the machine edits in the desert desert "} +{"id": "0005438", "video_name": "1ace1b90-f868-534d-9f4a-ff5a0422790a", "text": "3d image A picture of a child and a grandparent, sitting on a park bench, engaged in a heartwarming conversation as they enjoy a sunny day. animationcenmatic gs 20 motion 4 ,7second long "} +{"id": "3003941", "video_name": "c1254c09-901a-5885-a095-396fff84ae9e", "text": "Water Sprinkle on a freshly cut yard "} +{"id": "2003325", "video_name": "2540c475-c73a-5260-9d3f-01149cdd872a", "text": "Lord Ram, handsome, heroic, wearing golden armor, lifts up a magnificent heavy bow to knock an arrow "} +{"id": "4004402", "video_name": "e0a0a012-e4fd-5239-a059-d59995fc6f1d", "text": "simply designed, red and shiny anthropomorphic robot , walking through brawley, California, with cinematic lighting "} +{"id": "7004125", "video_name": "507e6648-6649-53b3-aa7a-ac1d0e450fc0", "text": "a brave young man wearing shiny full body armor made of gold coins "} +{"id": "7004101", "video_name": "076fd98f-2dc2-508a-ad95-16d3a97f429c", "text": "Funny Bunny playing with his friends in the briar patch "} +{"id": "7002362", "video_name": "2c6c7522-6d4e-5a97-81c2-6674c60779d9", "text": "On a dimly lit stage in a soulful performance space, our bearded protagonist takes a commanding position. With his musical prowess, he captivates the audience, pouring his heart into the performance. In a moment of artistic expression, he pauses, wipes his brow, and takes a revitalizing sip of water, embodying the harmonious blend of passion and hydration. "} +{"id": "3003716", "video_name": "5938fc68-ff66-57d0-a8c7-dba3d26b199a", "text": "A One piece style cowboy riding a horse at wano "} +{"id": "7002408", "video_name": "e542d9b2-24f6-5fad-8365-2a1e7e36d1a5", "text": "a house . background morning to evening "} +{"id": "4003803", "video_name": "91b7387f-e890-5e7c-ad86-d6efdd3b8ddf", "text": "An Empty Stage with black backgroung, ivory and gold, absolute realty, 4k Quality, on a stage there is dice too "} +{"id": "5001577", "video_name": "3941f03c-1be6-5158-8a7d-04ab1529f312", "text": "monster vhs 70s full body house dead body on tjhe floor "} +{"id": "2005630", "video_name": "dbc45822-0fa7-5e65-9e1a-1efc7085adc5", "text": "1930s documentary film in color of a atomic nuclear symbol slowly zooming in "} +{"id": "8003318", "video_name": "88fb3ed7-7e57-5d8e-8f35-c71024dfa953", "text": "A piglet and a puppy defeated a monster and found a heart "} +{"id": "2003018", "video_name": "904f49cb-cec7-5393-a0fc-7e7cb81822a8", "text": "a person who has discovered the secret to finding peace and happiness in their own company. "} +{"id": "2004742", "video_name": "8fccbfdb-ff39-57d8-b56f-9ba7927a3c89", "text": "humanoid makeshift robot writing on paper in a dark room lit by candlelight "} +{"id": "2005051", "video_name": "4af0aecd-c7d0-58d4-be0b-eae4c0fb68d5", "text": "high defination video british got control over canada before 7 years war "} +{"id": "2004443", "video_name": "021f1e83-776f-5dba-b486-d6a934c699da", "text": "people conflict between building at night, cyberpunk anime "} +{"id": "0006299", "video_name": "2a3e6eb4-621e-5849-975d-38b3783b42f5", "text": "jesus laughing and holding his finger on the scale as someone is weighing theirselves "} +{"id": "2006028", "video_name": "214e8f22-0712-5535-9fe7-763d791c9621", "text": "beautiful young goth girl looking at a raven over her shoulder who flies away "} +{"id": "4004443", "video_name": "0bf3579e-0237-5224-ae7f-8b7a6a695814", "text": "The game area is racing in the style of the 80s 8 bit looping "} +{"id": "8003576", "video_name": "2bc92d3d-98ee-5248-b1e7-11709cedd8cc", "text": "Rainbow Carousel: The Rainbow Friends riding a magical carousel with each horse or creature representing one of their colors and unique abilities.Animated cartoon "} +{"id": "3003358", "video_name": "e2b205d8-9fa7-512c-a338-6711e2711616", "text": "CIBER PUNK field of tombstones rain background "} +{"id": "2005212", "video_name": "3eb57829-51a7-599f-be85-aa8276d6d62c", "text": "Musk and Asian business cooperation handshake group photo "} +{"id": "2003688", "video_name": "cafdf997-c7fa-5337-853d-2003adb0a17c", "text": "Beautiful, bright, big eyed school boy plays holding a box with letter C written on it. 3D animation, photo realistic, sharp, 8k, digital style:Re "} +{"id": "3005303", "video_name": "e3d97c61-fc66-5bab-aaf1-4144421fe18e", "text": "the watch on the hand of man "} +{"id": "6004189", "video_name": "a4306cf4-bcff-5904-9a83-052adae3d18f", "text": "Clouds in the sky morphing from sunset to night, clear to cloudy. 60secs 4kx4k photoreal "} +{"id": "0003009", "video_name": "3583e661-4a5c-5fcc-81dc-d455320f1e76", "text": "Many centuries ago, in the splendor of ancient Jerusalem "} +{"id": "0004851", "video_name": "104b5392-0ac3-5df3-b359-c2060e7488f9", "text": "Michael Jordan and Messi playing table tennis in one scene. "} +{"id": "6002541", "video_name": "42bdf519-4388-5c56-a00a-ffc5efcd6fb1", "text": "Two cats on top of a mountain "} +{"id": "3003446", "video_name": "57d151e6-97dd-5b0d-b205-a6c2dc34edfd", "text": "ironman from marvel in a joe biden costume fighting thanos "} +{"id": "2007131", "video_name": "025253af-b48c-5e73-bda3-d94ab4650cf6", "text": "Iron Man is flying rapidly in the rain at night, with a lot of fog behind him. In science fiction movies, the scenery around him becomes blurred due to flying too fast "} +{"id": "7002097", "video_name": "53147288-5723-5b27-9bfc-c85294339006", "text": "1930\u2019s super 8 footage of distorted satellite image of abandoned earth "} +{"id": "3006961", "video_name": "28a95898-f929-5855-98ac-3cd8eab8075f", "text": "If we met in real life, photons hitting my face would reflect off it and register on the retina of your eye, and then neurobiology would come into play. "} +{"id": "1003135", "video_name": "39c760d0-37ce-57e0-bb76-fa7712658d77", "text": "heart shaped ballons in a heart city "} +{"id": "2003822", "video_name": "cf8c38df-0764-5168-b3c9-8033263e1b18", "text": "video with people in times square that will read jiggy when seen from distance "} +{"id": "1006829", "video_name": "7ce58fba-11e5-5a00-a0ac-9ea165252683", "text": "Side view of the halo, a blue science and technology poster, the overall picture is the side view is a huge cosmic space, the left side is a huge white halo, there is a road, science and technology feeling, future feeling, 8K, HD, digital feeling, future, 3D modeling, OC rendering "} +{"id": "0005673", "video_name": "1f1b454f-b9f0-5c89-a59e-876719041358", "text": "lion roaring,keep it 3d animation video length 10 seconds "} +{"id": "4004693", "video_name": "1c9215d5-e72c-5987-914e-0bcfe735ad7b", "text": "The Chinese dragon rose to the surface in the dark "} +{"id": "8001708", "video_name": "64b496bb-ce9c-5bc0-a406-4eca88ab335b", "text": "Fruit that hovers on a green background "} +{"id": "3003786", "video_name": "efeb6b65-4628-57eb-9b74-ec7e727c373f", "text": "a biplane airplane crossing a white cloud Message: RUHE (Font: MODERN) "} +{"id": "2006060", "video_name": "fe1d3d78-bac6-579f-ab3d-631013e4b328", "text": "A woman in a Santa suit claps. "} +{"id": "1003400", "video_name": "3eb1fd2e-6824-5379-ab65-bd4d94a53174", "text": "Once a fisherman went to sea to fish "} +{"id": "2004200", "video_name": "c80f57c6-8080-56a6-96d7-05f19a599b95", "text": "extremely realistic grassy feild with trees, vines, many different colored flowers, a waterfall in the background, and birds in the sky "} +{"id": "6002932", "video_name": "254cbd10-d8a0-5f61-978d-78f2f04f596a", "text": "make a elephant talking with lion and zebra "} +{"id": "4002415", "video_name": "0f43fe5a-76cf-5aac-83fe-aa27c14d17a2", "text": "Evening. city. Tokyo. vehicle. road. cinematic. 4K. hint "} +{"id": "6003347", "video_name": "2e094e45-b97a-59ca-ace3-1d6761097696", "text": "Sith screams in pain and flees "} +{"id": "4003192", "video_name": "520263f9-20cf-5ca7-94a5-247d53b0afb1", "text": "The village people are advising the boy to get down from the tree in fitest "} +{"id": "2004849", "video_name": "7c0dd282-18c8-5e85-8911-fb9bad292a2c", "text": "a guy with a delivery clothes putting his hand inside the pocket of his jeans "} +{"id": "3006379", "video_name": "dfe79370-149b-528e-81fd-4225a17fbfec", "text": "Santa Claus wishing Merry Christmas in Pixar Cinametic format "} +{"id": "5001386", "video_name": "0b6eda54-ab08-5bc3-8114-03b85d07a7db", "text": "exciting misty dreamy scene, morning time, futuristic bedroom, sunrise, happy cyberpunk family morning "} +{"id": "7004082", "video_name": "887dbeb1-c99d-59f1-959a-4f014d8465ca", "text": "a yellow car driving in the desert, sideview, sunset, 4K "} +{"id": "4002350", "video_name": "d5d4b353-3f1b-51a2-ad30-3f482c49ee8f", "text": "zoomed out shot of woman with dark dress on floating in the sky of a forest surrounded by fog \n\nEpic realistic grainy dark muted blue and black shot "} +{"id": "0003829", "video_name": "4436f68d-3b2c-54ca-a824-c4a80c302db8", "text": "Potter and his wife living in a house "} +{"id": "6002738", "video_name": "eadb61ab-095b-55a8-944d-c74f38685f37", "text": "a woman hand holding herbs, in the fields "} +{"id": "1006114", "video_name": "70211600-d981-5a1e-93e2-beafea100e15", "text": "1930s animation of an average Joe on a treadmill "} +{"id": "2005775", "video_name": "0af73423-6130-5beb-bf98-a817a44592fb", "text": "eternal streams of liquid red colors Message: I (Font: MODERN) "} +{"id": "2005834", "video_name": "d7350d55-426f-5b72-a69a-bc74325c0c78", "text": "Radha and Krishna with saki in boat "} +{"id": "4004320", "video_name": "082eca63-0b62-5c0b-b6d5-405d3f91b076", "text": "create me a video, 4k, with high definition, little elf , with sparkling eyes "} +{"id": "2006743", "video_name": "7f935df9-d32f-58d4-bfd0-fd42856145cd", "text": "A chill girl with neon hair dancing under the strobe lights at a rave, her movements fluid and effortless. "} +{"id": "3005918", "video_name": "63a73919-560d-5f60-b97b-82af1c33128e", "text": "guns, roses, cash, drugs, cigars and ammunition on a table with single above head lamp, dark room Message: 1 Attachment "} +{"id": "8003741", "video_name": "85d3e659-6e5d-5337-ab17-e99e3b064f65", "text": "kids visit a local museum, where a friendly paleontologist helps them identify the dinosaur and its history. "} +{"id": "2005065", "video_name": "ec9c6f13-236f-5e10-9cd7-51a92613145c", "text": "an entirely white room made of paper "} +{"id": "0005090", "video_name": "14899dcb-0f98-5ee6-b320-17a9521e6a12", "text": "BTS sitting and playing at the outdoor table "} +{"id": "8003292", "video_name": "5893d3e1-ec7c-5747-9ca6-f4afdd65f375", "text": "a woman in the bank trying to use the ATM but fails "} +{"id": "4003785", "video_name": "032490ee-3836-5318-bb96-d1d4f20bef98", "text": "Visualize the concept of excessive talking by depicting a cloth submerged in water, gradually becoming ruined "} +{"id": "4002162", "video_name": "d08ee574-31a3-5844-a703-995ec1c79936", "text": "3D animation sunny morning in suburban area "} +{"id": "2004792", "video_name": "c4497d44-0b3a-5c00-a2fd-009310d0718a", "text": "And God said, Behold, I have given you every herb bearing seed, which is upon the face of all the earth, and every tree, in the which is the fruit of a tree yielding seed; to you it shall be for meat. "} +{"id": "0006978", "video_name": "36280304-52aa-56f5-a91e-aa02feed112b", "text": "Show a clip of male muslim friends sharing a meal and having a good time with a good quality "} +{"id": "2004467", "video_name": "1f1369c9-4b52-57d6-af21-34100eb03d39", "text": "1950s super 8 footage Dario Argento film "} +{"id": "2007422", "video_name": "0ac7eb63-be40-5af5-9800-5869a79ca351", "text": "rich man, lots of money, bad eyes "} +{"id": "4004350", "video_name": "5b734325-d300-5df5-b450-1b30f850b6a6", "text": "three kids looking at the stars in a tree house. "} +{"id": "2006580", "video_name": "c57b9948-0acb-5792-9e10-9fd264a22c26", "text": "birds little fairy and sparrow green milky grass ground "} +{"id": "0006777", "video_name": "32f11d26-7fa8-5114-9167-298cad13d7b8", "text": "there is a lot of Olivier salad throughout the country "} +{"id": "1003094", "video_name": "38ee24ef-53e2-5856-8829-1a16946f5763", "text": "ferry under bridge on river near city in malaysia "} +{"id": "0004516", "video_name": "0a53ce1f-b53a-524e-aebf-bd42fc8f88c8", "text": "film videography. Bengal tiger speaking slowly. deep zoom, fast forward, highly detailed, ultra realistic, octane, hyper realistic, 4k resolution. Ar 9:16 "} +{"id": "3005662", "video_name": "a973093f-e709-5aba-8bbf-d9998de4eb50", "text": "japanese diver, bubbles in background, high resolution "} +{"id": "7004428", "video_name": "a6dc18ea-6d30-5a2a-b912-b625d73db789", "text": "mystical, woman, 25 years old, refined and sharp features, not bold but graceful features, slight facial bones, magical, mythical, light caramel hair, oval face, straight hair, symmetrical features, cartoon artistic, cartoon art style, art style, mystery, dark eyebrows, averted gaze, brown eyes, darkeyed, fantasy, dark theme, purple, classic, christmas, winter, december, lucia, red, red coloured, st lucia swedish celebration "} +{"id": "2005875", "video_name": "aeb7d4a7-725c-5c92-add1-1df6b1067e23", "text": "A tentacled cosmic horror that is also a bizarre maze of distorted reflections. "} +{"id": "1003533", "video_name": "41345310-93b3-5dc8-8704-29b1e4871920", "text": "an image like an a castel, with clouds in the sky, and rivers around, at the end, the sun is shining "} +{"id": "1003358", "video_name": "3ddcf60e-5b35-5141-8082-52bd0969b975", "text": "Huge man walking in the mountains "} +{"id": "6002828", "video_name": "1e30b439-8611-5d7a-92f1-b12c8fa8a378", "text": "people are having a christmasparty in in front of the Bundesjustizministerium of the federal german republic, it is snowing and the people are having loads of fun and santa claus is just coming around the corner on his sledge from the sky "} +{"id": "1003722", "video_name": "44c1fa63-6ab0-5621-a495-17c4050b360c", "text": "Henry Cavill as Superman flying over Metropolis "} +{"id": "4002784", "video_name": "9d5d59e5-2ddd-54e7-a7c6-d8e9df44683a", "text": "image of a mountain in the background of the image, the sunset, a waterfall and a lake "} +{"id": "1006986", "video_name": "7fc6a037-55a3-5e99-8ac6-dd8048a6c2bb", "text": "Write a thrilling and epic showdown between superman and a gigantic, otherworldly monster threatening to destroy the city "} +{"id": "2006791", "video_name": "22f89b8c-c507-5f0e-bcf6-b46b1ff92399", "text": "a man sitting at a table smoking a pipe "} +{"id": "2003925", "video_name": "cd981244-1f19-5cb2-bfab-f1c1729b66dc", "text": "champagne birthday party at the crystal palace "} +{"id": "7004134", "video_name": "fe34e9fb-8932-511e-bcb3-b090c0b0266e", "text": "stop motion owl screaming in forest "} +{"id": "8001864", "video_name": "c88fd456-d66f-5f29-ae4c-804f9bb37d87", "text": "A men with a confident and determined expression, holding a sword or a weapon, ready for battle. "} +{"id": "1006565", "video_name": "785a55df-ed42-50d7-8d93-1062805d1b77", "text": "animate the eyes ears trunks and hands "} +{"id": "8003916", "video_name": "540e3b53-8656-5d4a-97f9-1d03c9e010b1", "text": "on the dancefloor at a rave lasers smoke machine dancers "} +{"id": "2005256", "video_name": "9415ddc8-9e4f-5555-b45c-ee5e028e7ca6", "text": "Various animals are locked in cages, and humans wearing future suits stand outside and are transported to the spacecraft. "} +{"id": "0006554", "video_name": "2e84c593-79e6-5ce1-8314-78673b411a9e", "text": "45th birthday cake with a red rose "} +{"id": "7000003", "video_name": "2f3b9b3d-3756-5997-853a-5d5e37d90cb2", "text": "hamsters running through the forest with rabbits "} +{"id": "1003720", "video_name": "44b7c999-f25c-505d-a1e0-2cffd5373d69", "text": "Japanese sculpture garden with flowing water in middle "} +{"id": "8001175", "video_name": "f06e5b78-0f18-5542-8b58-6e7252058888", "text": "Depict a loyal dog waiting patiently by a window, with eyes gazing out into the evening. The animation should convey a sense of longing and unwavering loyalty. Include elements like a slowly setting sun and a softly lit room to emphasize the mood of anticipation and love "} +{"id": "0003627", "video_name": "40c00cf6-c08c-5eca-ba11-3fffea11c3b7", "text": "Two magician fighting with magic, running fight action "} +{"id": "4003954", "video_name": "e3714d3b-d703-550a-9f08-c23a6ce3039c", "text": "some small, feathered dinosaurs survived and evolved into the birds that we see today "} +{"id": "0003388", "video_name": "3ca9aebf-19e7-5278-bd50-ed83ef681f4c", "text": "an animated video disney version video of several children going to church "} +{"id": "0006524", "video_name": "2e0cab23-cab7-5f80-839d-37677d9fde22", "text": "A king in the sky using a floating carpet "} +{"id": "6002413", "video_name": "1c7ce3ce-117b-54c8-a6be-775b0a250cd8", "text": "There is a small wooden house by the forest, with a bonfire burning and tea brewing inside; outside the house there is a university floating in the sky, a vast expanse of white. "} +{"id": "3004819", "video_name": "a08b2fce-898c-5e31-bb1d-3dbf2da5decd", "text": "protrait of a colorful hand drawn cartoon racoon sitting in a forest smiling "} +{"id": "8002830", "video_name": "5427d00d-415a-5534-88d5-8392e0c9e35b", "text": "generated fight Sean Gojo vs Sukuna "} +{"id": "3006024", "video_name": "24993da2-5c90-5eb8-b310-8cd2ce3369cb", "text": "couple of ant, approached Grasshopper and kindly warned him, animated image "} +{"id": "6002693", "video_name": "67cbf863-95b5-5525-b2d3-fe6f6506c4d7", "text": "a cyborg frog eat magical mashrums in magical forest, nature, rocks, and soil, dramatic lighting, clear imagery, crisp, ominous \u2013s 750 \u2013v 5 \u2013ar 9:16 "} +{"id": "7003505", "video_name": "e672fd95-4d31-5d1c-b73b-c37d61f171c8", "text": "Krish distributing blankets to the poor people who laid down on bench of the streets near church in the night time . surrounding are decorated with dazzling lights for Christmas festival. There is gentle snow flow, camera focus on center of the scene Krish giving blankets to poor people. "} +{"id": "3005997", "video_name": "b8a251be-4eb5-5777-af4f-0175e72d9a37", "text": "a woman dancing in a lush green forest "} +{"id": "0006653", "video_name": "307027d2-9bf6-5990-87f7-e4f7fd0b9f96", "text": "A LOGO. WITH ZM. IN THE MIDDLE. sunset light, macro shot, cinematic style, hiper reality "} +{"id": "3006532", "video_name": "2161db74-14e4-5dd1-9e3c-2c41d1761e09", "text": "mermaids are dancing in the disco in a huge martini glasses "} +{"id": "8003649", "video_name": "efbfb781-6a02-58b2-8430-202d319439a3", "text": "female model made of glass and shattering, centered, in a desert at dusk, realistic, cinematic "} +{"id": "0003701", "video_name": "41f559eb-e391-59aa-8ef1-559eca0566f3", "text": "Playing the piano, you can see your hands, music "} +{"id": "0005956", "video_name": "23e5e16f-ceb7-5aae-b850-4bdab4d77f11", "text": "Video of a Truck that loads Sand "} +{"id": "6004414", "video_name": "5c2c002b-beac-5da0-9457-918e083940d0", "text": "make a video of a French bulldog running through the grass and turning into a super hero "} +{"id": "4003547", "video_name": "d3554ef1-8f4b-5a28-b57f-07dd7f0414c9", "text": "a submarine floats next to the sunken titanic "} +{"id": "7004813", "video_name": "83a26dac-5680-5338-a7ea-81eead57ce72", "text": "A park bench under a rainy sky, with umbrellas abandoned as they embrace. "} +{"id": "3006501", "video_name": "23613489-0d7b-50ab-96d6-de2deb8a4dcb", "text": "rising star video Message: weirdmans (Font: MODERN) "} +{"id": "8001979", "video_name": "62b1bc8c-76b3-5dbc-a0eb-acca930889f1", "text": "Times do not choose. They live and die in them\nLook, my friend, the enemy is pressing "} +{"id": "2004520", "video_name": "63418235-c7df-57b7-bfd7-12403d6824bc", "text": "a woodpecker is sitting on a tree in a forest, cartoon, 3D, hdr, disney style, cinema hd, higher resolution, 16:9 image, motion 4 "} +{"id": "2005671", "video_name": "7f80e694-3285-5d5e-b64c-b6fad682de11", "text": "a scientic taking notes on a big computer inc a technocratic lab "} +{"id": "2006183", "video_name": "21f20099-ea0b-566f-ad29-990d441b7433", "text": "Aerial scene of the first world war "} +{"id": "2003569", "video_name": "4dd5ab68-ba37-5d76-9ba1-6f5324a88064", "text": "Gloria Swanson walks down the stairs in a designer gown by madame gris "} +{"id": "3005133", "video_name": "706e9d33-21ea-5922-9d0c-b0a3f66c50fa", "text": "an angry short man with glasses in front of a grocery store wielding a pistol and holding a mask in his other hand, red and blue police car light "} +{"id": "1003972", "video_name": "495260e9-524c-57f0-8aa5-b45e964361e2", "text": "A man in a robe smiling with red snakes around him in a mysterious velvet room "} +{"id": "4003799", "video_name": "52e2b542-a915-5e20-9a6d-9ee0f800cf0e", "text": "a man dreaming of himself dreaming a fox; in the style of Dali "} +{"id": "6003250", "video_name": "e98f5cc9-60d2-50ac-bf03-b3305e335389", "text": "woman holding a door shut while zombie attempts to break through that door "} +{"id": "6003525", "video_name": "e0207320-4063-5413-89a8-deec2aa2d562", "text": "The Inner Life of the Cell , 8K , realistic "} +{"id": "2003992", "video_name": "6d7589b9-5fc2-57c2-93eb-5bd45f6c13e8", "text": "character ps2 anime, walking in forest,\nvapor wave, retro wave, camera following "} +{"id": "3003391", "video_name": "2d74ccc3-602a-5eff-8df6-e41a4fc6c5f9", "text": "80s horror film, 1980s, tv static, retro vintage, noisy, distorted, inconsistent lighting, A scientist running while a explosion happens inside a laboratory "} +{"id": "2006763", "video_name": "7aa85fda-f84e-5e54-90ec-7e52db78e764", "text": "movie style ant is fighting a bug "} +{"id": "7004294", "video_name": "1a02f3ff-d01c-5688-9610-5fb6551c01c1", "text": "people rushing down a busy street very crowded "} +{"id": "7004242", "video_name": "b8a7f583-e938-5942-b10c-c102ec361207", "text": "Create a dramatic sequence depicting the chaos as the virus spreads. Show infected individuals attacking others, panic in the streets, and the protagonists witnessing the chaos from their hiding spot. "} +{"id": "8003000", "video_name": "e7ca5fb8-9611-5e07-b1e1-310e1d9f4edd", "text": ": a wolf walks through the countryside in Medieval Europe, cinematic animation, dark, cloudy sky "} +{"id": "1005037", "video_name": "5d274a38-08c7-5369-b9d6-219bc13c011a", "text": "The back of a couple of lovers slowly receded in the twilight "} +{"id": "4002236", "video_name": "46dbaf8d-ebc4-50d0-8124-c7d1f776520a", "text": "Doctor stuff Message: Dr. Gropper (Font: MODERN) "} +{"id": "6004143", "video_name": "30005e80-17cd-5110-b3ee-ff2e43a74d31", "text": "10 year old black girl anime fairy floating ballerina "} +{"id": "2004343", "video_name": "b7202c85-d46d-5d12-9937-cbf43f232547", "text": "An ancient Chinese man writes calligraphy, realistic style "} +{"id": "6003309", "video_name": "520648bc-dc7c-5a6a-a1a0-61463a965656", "text": "cat dancing full frame, full body, camera long shot "} +{"id": "0003232", "video_name": "39ba7930-f6ef-5e25-b809-bedea47fc18e", "text": "Alarm sirens in the corporate hallway. "} +{"id": "7002624", "video_name": "5114d473-444d-5981-a1d5-eec4fc811a8e", "text": "a guy with a white shirt walking "} +{"id": "3006443", "video_name": "7876fb76-8357-5093-a0d1-7769fabe6b60", "text": "Child with Hypoglycemia receiving glucagon injection "} +{"id": "6003907", "video_name": "f95e7d3c-b775-59c7-9ac8-d2a688b16a1e", "text": "A tired young man is looking at his phone and walking on the street "} +{"id": "5001506", "video_name": "a76f19ce-9e9e-5484-884d-503c587dfa71", "text": "a young beautiful women, wearing red dress, waist and above, long hair, looking outside the window, looking sad, outside very bright but raining "} +{"id": "6004005", "video_name": "9d1a4c8f-c03d-56cb-af3f-190a513b8609", "text": "liquor bottles, beer cans, cups all on table "} +{"id": "2006445", "video_name": "fd5b752d-e4c7-5418-b27f-b5632df17a4d", "text": "large american flag blowing in the wind over a neighborhood "} +{"id": "5001935", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "a girl doing zen mediation beside a window, the sun shone on a burning natural incense on the table "} +{"id": "0006691", "video_name": "3123d8d5-1b80-580f-afb4-299b52a59438", "text": "a white veil is breaking from top to bottom "} +{"id": "0003105", "video_name": "371523f9-eb03-532d-a98a-513c3afc3f40", "text": "a photo about bitcoin will rise to the mars "} +{"id": "3006775", "video_name": "9ec2ac0e-6e85-5461-a1ed-5eaad687430c", "text": "Make thee an ark of gopher wood; rooms shalt thou make in the ark, and shalt pitch it within and without with pitch. Message: 1 Attachment "} +{"id": "1006704", "video_name": "7ad535c7-79b9-5309-8155-1ca104e98446", "text": "a teacher teaching his student 3d animation "} +{"id": "0004461", "video_name": "096bf794-a717-5b86-92c9-fa216b81be19", "text": "make flash light moving and the search parting walking "} +{"id": "1005737", "video_name": "6994abb6-2c23-5e33-afb6-eb7ef074014c", "text": "goku going supersayian for the first time "} +{"id": "7004558", "video_name": "511a5ea2-5c56-5867-a83f-8c2884d41156", "text": "mystique sandals Los Angeles blue gem theme open toe Birkenstock\u2019s "} +{"id": "3005353", "video_name": "6953513c-f6e0-58fd-8f5b-c6fa8b99d2e5", "text": "1970s horror movie, deadly silver ball floating over the city "} +{"id": "7004053", "video_name": "546614cf-bf70-5d9b-baa9-a6faaec5a889", "text": "swallow singing in a forest , cenimatic, hyper realistic, 4k "} +{"id": "2004513", "video_name": "b96fd0f2-fd8f-5f0b-b30a-85967ef8f3e5", "text": "progressive suburb with beautiful skyscrapers and lush naturr, cinematic dramatic "} +{"id": "1003692", "video_name": "440b405b-8434-5b30-b216-d8f0c1030326", "text": "retro psychedelic santa with a sack of presents "} +{"id": "3004896", "video_name": "5733a5a3-0b3b-594a-b80d-6d86f74f2c44", "text": "a beautiful sunset in the city of dreams "} +{"id": "8003190", "video_name": "1032b41d-aae1-5289-966c-b4a06288555e", "text": "Share advice on researching and gathering reference images. "} +{"id": "0004366", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "gray cat with glasses playing on the computer "} +{"id": "3004701", "video_name": "3ca01888-eaa5-5762-a537-6c87e0ca5f20", "text": "A VIEW OF EARTH FROM OUTSIDE OF IT FROM THE NORT SIDE "} +{"id": "7004422", "video_name": "8b6a131e-cbbe-58bd-886f-93185c3d1060", "text": "Pop Mart inspired toy in the theme of colorful judge at the end of the road "} +{"id": "1004495", "video_name": "5351c7bf-ed70-5d26-b073-176bb41411ec", "text": "a firefly photorealistic with camera movement "} +{"id": "6003108", "video_name": "f6470f07-be18-5f33-bd4d-8732cb64074c", "text": "man sitting in lecture hall, university, reading a book, stacks of books around, 4k "} +{"id": "4003425", "video_name": "2cb86dec-e9f7-52d9-a2af-7ba8d02156e3", "text": "People plant trees in futuristic underground city "} +{"id": "2007649", "video_name": "1b5b2163-d2db-5d67-b51c-b0f261fb2cf6", "text": "creepy eerie scary floating towards the screen "} +{"id": "7002210", "video_name": "df2e1b24-c188-53b5-b167-9146f1712c2a", "text": "an elephant is running on the road of new york city "} +{"id": "2005970", "video_name": "93f09cbe-b438-5e58-904f-55c4bb0cfdcc", "text": "taylor swift walking on beach with a lion "} +{"id": "0004751", "video_name": "0ea5f631-a1c5-5efc-be57-934b8bff762c", "text": "a disaster in sea and fire in earth "} +{"id": "4002181", "video_name": "55fef5a0-6f43-5c66-8e5c-2a895c2148fc", "text": "A dark night shot of dense, looming trees on both sides of the road. "} +{"id": "0005987", "video_name": "249458c0-8d09-5469-8a0e-91bc1de2fd91", "text": "create a cartoon A hardworking Indian farmer stands proudly in his field, surrounded by golden wheat and vibrant vegetables. In his hand, he holds a freshly churned block of butter, ready to be traded for a warm, freshly baked loaf of bread. "} +{"id": "2006305", "video_name": "23331332-b746-515a-bac8-dc2efc9a4535", "text": "Twinkle is fascinated by the world below and dreams of exploring it. Message: 1 (Font: MODERN) "} +{"id": "8002936", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "police officers dancing in the street "} +{"id": "0006358", "video_name": "2b2d5487-b4e3-5d61-a518-3183d71aa712", "text": "a colorful image of 2 people walking on a beach watching high winds and high tides rolling in. Brilliant "} +{"id": "1005030", "video_name": "5d0b39f9-4818-57a7-b3f2-f69ab3246ccf", "text": "camera rotate clockwise, Serene Garden of a King in Nepal at sunrise, studio Ghibli, hand drawn, main character, emotional, 8k, ultra HD, high quality, vibrant , aspect ratio 16:9. "} +{"id": "4003572", "video_name": "d7efe816-cc33-58cc-a97c-dfa3c7eb8d71", "text": "a small scarf with eyes, in the style of Disney "} +{"id": "3005710", "video_name": "e47a8fb0-4487-575b-b2e5-d65e6ebacca7", "text": "A dragon is flying low in the sky, with the sky filled with raindrops about to fall. The raindrops sparkle like brilliant diamonds,4K,16:9 "} +{"id": "0003266", "video_name": "3a5f1e9a-7f47-53f6-bb0d-788e712c2aee", "text": "An orangutan in the woods on top of a strawberry jelly dressed in Gucci clothes "} +{"id": "0005280", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "Create an image of Kaida and Aslan, each presenting their symbols of worthiness to King Leonidas on Pride Rock. "} +{"id": "7004203", "video_name": "82ab0d31-a064-50ff-9191-ea32f347109d", "text": "a young boy siting in group with his relatives and talking something. 3d "} +{"id": "4003559", "video_name": "e89a6e56-1a12-51e8-9174-3929402a6b8f", "text": "psychedelic girl dancing, high quality cinematic, psychedelic background, 90 frames "} +{"id": "6004743", "video_name": "00ec3fc7-c502-5c4c-aa1c-0148cf524457", "text": "macro photography of flower opening up Timelapse "} +{"id": "1003653", "video_name": "4340f54e-ab40-5131-9545-cb46aba088c3", "text": "there is cancer emerging between some groups of electrons in circuits like living cells "} +{"id": "4002530", "video_name": "f7cbe56c-3938-5989-a9ad-606870f0c78b", "text": "CNC machine cutting smooth wood sheet "} +{"id": "1003799", "video_name": "46349e73-cadb-5dbe-92cb-0d168ec6e1f1", "text": "a couple of potato crossing the street "} +{"id": "2007502", "video_name": "b0114cea-30ad-5fef-a586-e2ea2585a39a", "text": "Full Length Shot, a man stand in front of dragon, chinese ink style, amazing epic chinese ancient theme, martial arts style, Chinese fairy tale, highly detailed, black smoke flow, covered with purple smoke, dynamic, cinematic, stunning, realistic lighting and shading, vivid, vibrant, 8k, octane render, unreal engine, very detailed, concept art, realistic, Cry engine, detailed, futurism HD "} +{"id": "2005086", "video_name": "a4ec0bbe-78ab-5bf6-968b-b7e37465b11b", "text": "simulates the horror scene from the film The Exorcist of an exorcist priest wearing a black suit and purple scarf falling from the window. The glass in the window breaks and the priest falls, falling onto a flight of steps and rolling down the steps of the steps into the street, set in Turin during the day, with sunlight "} +{"id": "3004256", "video_name": "876cb852-92a8-5815-9b41-6f468ec9396f", "text": "cosmic bodies floating through space touching hands stars planets "} +{"id": "2005907", "video_name": "ff2cbb29-961e-5dc1-b9c0-2daf2d9fd2ab", "text": "abstract, Dancing people, very many people, 30 years old, wild, Jumping, arms over the head, Cyborg ,Forest clearing, Disco light, Neon light, 8mm Fisheye Lens. "} +{"id": "2004622", "video_name": "ea0f0c6e-e99e-5580-b1ee-83df9903bc55", "text": "close up of the neotech cable head talking "} +{"id": "2007226", "video_name": "50c91baa-a858-5d62-8c72-95f9e840b5d3", "text": "fortnite victory royale on the og map "} +{"id": "0006146", "video_name": "274267c1-3304-50cd-a82e-3912783e906b", "text": "a 22 years old girl wearing a green cloth, introducing herself as N F Onuoha, talking about what she learnt from Rebirth Class last night on DeFi and web3 jobs 45secs "} +{"id": "0006016", "video_name": "2510ec4c-6f51-5e3e-9bfd-a663c3ffcf00", "text": "black rose is blooming. Black and white colors. High contrast "} +{"id": "2007111", "video_name": "7fff8c28-5552-5ea3-9fb4-a901fc2d6136", "text": "Capture the cozy atmosphere of a candlelit bar, where a steaming coffee cup is placed right in the center of the scene. The soft candlelight creates a warm and intimate ambiance, while the coffee cup gently releases its aromatic steam. The scene is framed in a 4K resolution and a 16:9 aspect ratio, allowing viewers to fully immerse themselves in this relaxing and engaging experience. "} +{"id": "2007476", "video_name": "ae04d706-bef5-587e-9dff-f0756d5f1bc9", "text": "slowly air, blooming the flower, firefly around the train, birds flying "} +{"id": "2006280", "video_name": "1f86f12b-9c53-5a9c-833b-c1f7b0ce2203", "text": "Joe Biden playing Chess with Donald Trump in the park. 16K ultra realistic HD "} +{"id": "2007293", "video_name": "996a326b-d1ba-55a9-845f-7f5c78338a42", "text": "Two roads, one straight road, the other winding road "} +{"id": "4003608", "video_name": "1a0dcd3e-aeb3-50ed-9d09-e86489101dc4", "text": "Line of trees, man in an orange tuxedo with dark hair on one side, man with long blonde hair in a blue tuxedo on the other side Message: WOLFGANG (Font: MODERN) "} +{"id": "2006637", "video_name": "bdb1640f-4eb1-5bbe-99fe-f73336decaf9", "text": "A man with lightning inside it "} +{"id": "1003230", "video_name": "3b8194aa-1796-5cb1-9f82-792d2e2f1d3d", "text": "Create a video with music and voice over presentation about how symbolism and patterns are deeply embedded in our beings "} +{"id": "3004247", "video_name": "e96e7ae3-691e-5e48-bac6-897cf8619c55", "text": "While there have been efforts at reconciliation, agreement, and understanding, the road to peace remains long, turbulent, and fraught with obstacles. "} +{"id": "8003827", "video_name": "37774ecf-c816-5c8d-aafd-fb81ff8db25c", "text": "young charismatic woman with long white hair wearing white cloak, looking at the glass transparent capsule placed in white empty room, cinematic, studio light "} +{"id": "6002453", "video_name": "ea69a2e1-f804-522a-9ada-ca612aba13dd", "text": "Outside, the house is transformed into a Halloween wonderland. Intricate decorations adorn the landscape, from intricately carved pumpkins that seem to come alive in the lantern light, to ghostly cobwebs that shimmer with the faintest touch of wind. Skeletal figures loom in the shadows, creating an atmosphere that blends the spooky with the enchanting. "} +{"id": "8001848", "video_name": "f39aba8e-775f-599a-bdf8-36f0db666f87", "text": "sunflowers turning toward sun at dawn "} +{"id": "7003641", "video_name": "a6c33299-d04f-5757-aac8-260d408254d1", "text": "A girl dances in the moonlight to Bach music "} +{"id": "6004986", "video_name": "0356304a-f862-56be-b18e-51ecac6d9ada", "text": "a rocket take off planet earth to exploring yellow stars the space between planets and yellow stars , anime "} +{"id": "1004106", "video_name": "4c0e4ca9-85b9-5d95-be32-3638aa3da5b8", "text": "Create a montage of his past acquisitions, hinting at the supernatural nature of his collection. "} +{"id": "8002339", "video_name": "8c203e54-c24d-56c0-8e33-e4f33eeca66d", "text": "make anime girl move the head and laugh "} +{"id": "3005787", "video_name": "fedd27e0-81f0-5e35-aedc-8868002c4955", "text": "Create a captivate illustration of carpentry tools drawn by children top view "} +{"id": "7002832", "video_name": "0e7b30d9-08d5-5ff0-b7fb-fcb6a0d0036a", "text": "4k, hyper realistic, army of robots "} +{"id": "2005210", "video_name": "e275ffa7-e81c-5bc3-828f-1e6e3f9717cb", "text": "funny cat with a plaster leg as a cartoon style "} +{"id": "1003566", "video_name": "41cc3772-975e-57c6-b699-bc8e04aabd94", "text": "scene set in the year 1945, inside a bunker a young soldier is seen giving an order, moving his right hand in front of him pointing "} +{"id": "8003600", "video_name": "90e7b7c5-dd94-5645-a285-90116f3ac1ac", "text": "lonely red scarf flying in the lonely desert "} +{"id": "1006509", "video_name": "7732462a-3100-5405-9121-50357a3c5ba9", "text": "video of old people enjoying beach from far away "} +{"id": "6003941", "video_name": "e0da40bb-fa1a-53cd-908f-f6646296fa06", "text": "zoom in on a angry male with a laptop "} +{"id": "4004763", "video_name": "100e45ce-7a8c-5a08-b09a-ca7c9393b87e", "text": "Good vibe, Family, Train for Little Kids "} +{"id": "0003632", "video_name": "40d3b1c6-5475-583c-85de-4ac670579ba6", "text": "an advanced civilization living in the hollow way of greenland "} +{"id": "2004072", "video_name": "69b2a1f3-c8a2-571d-8926-77f0551df8e7", "text": "futuristic city Message: Ahmedabad (Font: MODERN) "} +{"id": "2004923", "video_name": "d0567f34-5f2a-53e4-9b53-fc277ef9d76c", "text": "a light turns on and the light pierces the darkness "} +{"id": "8002590", "video_name": "df6edac5-48ce-5e15-b3cb-3fa5d127dd7a", "text": "a lonely robot crying into a water bucket, heavy flow of tears, 1970s film, grainy "} +{"id": "3005936", "video_name": "081913e3-7b60-55b0-8445-12176631088f", "text": "video of a man taking off his shirt "} +{"id": "7003392", "video_name": "bc0cc752-9061-5b21-bee7-919fbe66753e", "text": "a kitten running around a christmas tree "} +{"id": "3006249", "video_name": "cfc98712-8fc4-5be7-a603-230d27f9030b", "text": "The pingguin on an electric monowheel rides over the bridge over the river "} +{"id": "0005887", "video_name": "22d26964-dc28-58b0-b197-c9be0f11c030", "text": "canadian forest in summer, small stream with a casace and water flowing "} +{"id": "4004798", "video_name": "ef0279b7-2c97-53e0-afe2-4426548ed4ed", "text": "A high volcano spewing fire at datime, the lava flows down the mountain, pixar style "} +{"id": "4002882", "video_name": "42f238cd-ab22-50b2-80e3-621e5e5ddcbe", "text": "cute anime catgirls dancing, ukrainian flag in the background, cinematic, Stanley Kubric masterpiece "} +{"id": "1006620", "video_name": "795e6e67-6f24-5f8a-8610-61923bd443c0", "text": "a red long haired girl with fair skin sitting on the couch in her robe with a towel on her head watching videos on her ipad while eating choclate candy "} +{"id": "3005020", "video_name": "4d6800b1-87b5-5b29-9997-770c7deac772", "text": "The spectacular scene of thousands of horses galloping beneath the snowy mountains. "} +{"id": "7002298", "video_name": "703f3e20-eab2-5d14-93bb-d3b67c8a582d", "text": "a man holding fireflies inside transparent bottle glowing in night "} +{"id": "6002203", "video_name": "b8c5cdd3-be32-5a23-bc37-178c55bc379f", "text": "cartoon illustration of little Ganesha dancing in Himalayas with lord shiva "} +{"id": "3004261", "video_name": "51368b6a-4df3-55b5-99bf-9fb2a5b692c7", "text": "full moon over a wide waterfall "} +{"id": "2004733", "video_name": "9017b9c7-82ad-5de9-b1a4-2079ae1fd075", "text": "A mediaval 20 year old men with white clothes and curly long black hair with sharp jawline is looking down to the camera, low angle shot, background features blue sky and trees, super realistic, cinematic "} +{"id": "6002692", "video_name": "881b7258-d22b-5487-b379-4e347b92e2d2", "text": "draw an animated logo of the company TOGO "} +{"id": "8001690", "video_name": "6c1e17e6-ed42-5bf4-9d80-8f5ab34b8291", "text": "luxury neon style edm dancer celebrating holding a glass of champagne into the camera to invite you to new years eve at night "} +{"id": "6003933", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "An aerial shot of a large city, circling around a skyscraper,cinematic,High definition, Real "} +{"id": "3005226", "video_name": "63a76770-611d-5ee5-bf8a-1fced97a0b2e", "text": "Beautiful blond is smiling sexy in the mirror "} +{"id": "3006110", "video_name": "53433446-0095-5f24-802e-884ffe2193f5", "text": "on the beach, a man is jogging away from the camera, realistic, cinematic "} +{"id": "2004132", "video_name": "37b96d80-1203-54a9-ae62-d13dbf01e75b", "text": "Give the gift of AI, this holiday season. Stop hurting each other, for any old reason. Give the gift of AI, on Christmas day. In the algorithms, peace will find a way. "} +{"id": "8002850", "video_name": "1f3f3a87-b41a-5326-a6d2-3e4e9a45b3e4", "text": "A portrait of a girl with her upper body, surrounded by fish. "} +{"id": "4003140", "video_name": "5495f9e0-0bd8-5dbb-ab7c-1c23d02bfcc7", "text": "people fighting in a flooded mall for groceries "} +{"id": "2006767", "video_name": "6cdc610e-28fa-5cec-a990-54e6777cea2d", "text": "ben stiller wand battle harry potter different color effects for each wand "} +{"id": "8002893", "video_name": "82486e65-4b7d-5f70-87f5-bd8db2e7f974", "text": "Waterfalls, flowing, high quality, blue sky and white clouds "} +{"id": "2003640", "video_name": "3fa6f3b7-681c-575a-975d-624a5089cf3a", "text": "An old guitarist rockstar who lives in 2500 , playing guitar in street full of modern devises And gadgets, no one cares "} +{"id": "7004549", "video_name": "4c4f41f2-0876-5bf6-845f-b7b7b948e962", "text": "how the world looks like after 10 years from now, as AI will be developed a lot. "} +{"id": "2005576", "video_name": "ecb663a7-a1ea-5eee-9feb-ad6eb8adad0a", "text": "group of children playing on ground "} +{"id": "7004229", "video_name": "f057a042-8962-57ef-a9d3-875f148a646b", "text": "A boy leaving his home on the mountains "} +{"id": "6003375", "video_name": "15127b62-0a5e-542b-b94d-4dc330d26b43", "text": "Sundown. Jemaa El Fna Square.\n A person sitting on a chair playing the piano\nCamera from above\nformat HD.16:9 "} +{"id": "0003747", "video_name": "42ae07b4-ac1a-5791-93d7-94d4fc7e7b76", "text": "3D an impasto rough canvas splashing bright oil painting of sharp edge indian princess and her maids in the palace garden premises in a swimming pool, Art, Palette knife, Oil painting, Vibrant color, Studio lighting, Layered paper, baroque "} +{"id": "1004320", "video_name": "4fcb1779-302e-551b-87a5-d73c6c7bf33b", "text": "wolves roaring with shaking head, Godess Hectate smile and hair flow in the air, Torch with fire glow, "} +{"id": "1006564", "video_name": "784ef10c-6c06-5b0b-9dfc-7ed82b8ba8bf", "text": "close up of 747 wheels as it lands on runway "} +{"id": "4002237", "video_name": "cf4eb333-28d3-5d56-be2c-807d50af79d6", "text": "dubai desert on the sunset light "} +{"id": "7003856", "video_name": "d5723497-9621-5bed-a26b-bacc704e504a", "text": "pepole plowed alnd in the middle ages "} +{"id": "8003852", "video_name": "806577e5-df46-5b66-a0ec-61e0266f0d38", "text": "lord shiva holding Ak47 , close up, expressive face, sunset "} +{"id": "1004067", "video_name": "4b796b73-4f9d-5fe5-97c9-bbdd2a23b73e", "text": "baby princess merida embellished fashion disney style "} +{"id": "0003903", "video_name": "45771475-69fc-50ac-b34f-00f44bd94c8d", "text": "laptop computer with a video of a waterfall "} +{"id": "2005093", "video_name": "29cd05aa-a3df-5548-92a1-869649c7f496", "text": "a racoon riding a roller coaster 8k, cinematic "} +{"id": "8003378", "video_name": "52b0ed50-fc00-5443-aef4-0f4fa203699c", "text": "a person working late at night "} +{"id": "8003989", "video_name": "d0c0729c-b5a8-5254-94ad-9fc78beb3717", "text": "the pyramids of Giza forming piece by piece "} +{"id": "6002788", "video_name": "38c1cfde-7659-58a3-b198-bb620edf2ba8", "text": "16:9 a robot holding a newborn baby "} +{"id": "2007827", "video_name": "36edff85-e61a-5102-b2c7-5020accef882", "text": ": a factory disappears and carrot farm appears "} +{"id": "8003493", "video_name": "14f7d0ac-fb09-55bc-8fae-f64a8c2cf039", "text": "war scene in ancient greece, men using swords, fighting "} +{"id": "8002756", "video_name": "5461f2d3-b27d-5719-b24e-deb63964aac5", "text": "girl watch the sky in night time with smile "} +{"id": "1004811", "video_name": "58ed57f5-b466-5159-b2c4-f12c4ff0a322", "text": "video cinematic, alien call someone with phone "} +{"id": "5001768", "video_name": "6967e5e9-408e-5562-b3da-c8b81f1b29cc", "text": "The boy is streaming on twitch, playing fortnite, laughing "} +{"id": "5001799", "video_name": "11d33695-1971-5921-83fc-2e2eef87d4d4", "text": "a man stands in the middle of the sea and does a shadow fight, later he moves to the UFC octagon and starts a fight with Conor McGregor "} +{"id": "6003193", "video_name": "6fc8fab8-e9c8-51b5-9e1d-90ee72caa5c1", "text": "A floating castle in the clouds, 4K, concept art "} +{"id": "1005184", "video_name": "5f5b9bdc-146f-582f-a7cd-7d2234fc1b94", "text": "a beautiful young kid dancing in the street "} +{"id": "8003422", "video_name": "5a7ace7a-9f1d-58ba-a98e-e22afd451e88", "text": "crack patterns that run through the skins and conjectured that the patterns must be related to the temperature variation developed by the convection flow in hot water "} +{"id": "6004687", "video_name": "491c10c7-2ba0-5c00-9ffb-f7d77f3bce7f", "text": "10 seconds long, Christmas , House, Fire "} +{"id": "8001107", "video_name": "7d7d33b2-44e9-5768-9236-f6c3d5d7d802", "text": "A dog and his golden chain are trading gold bars with gangs on the street "} +{"id": "7003260", "video_name": "a6fa99d2-3076-5e56-b069-4b8a776e3a63", "text": "An African pretty girl with a fluffy hair and wearing Kanga forcefully dragged into a hut by a Rich african Man "} +{"id": "3003272", "video_name": "374e8d28-cc1a-579b-84bf-d36d05b29216", "text": "US army in an active war zone "} +{"id": "0004168", "video_name": "046b3909-009f-59cb-b363-f4ec6504cc3d", "text": "Grasshoppers jumping among the flowers on dirt road "} +{"id": "3004773", "video_name": "629bbad9-e784-5d51-83e6-7ad33c24f480", "text": "tequila partying with pepsi at the mountain dew ranch "} +{"id": "4004478", "video_name": "96d2970e-7416-551d-b2c1-995db86d36e5", "text": "the oldest video ever. It\u2019s from the 1700\u2019s, and there is a castle "} +{"id": "2004783", "video_name": "9ec2ad67-7898-57f6-9fba-2e63b650e89b", "text": "84th birthday of a man, at a fancy restaurant, together with his brother and nephew, blowing out the cake "} +{"id": "3003323", "video_name": "8a774692-d6c4-5759-b304-40709144fa7e", "text": "A person meditating or doing deep breathing exercises. "} +{"id": "0004905", "video_name": "1138363e-4884-5dfd-884c-f14db1650001", "text": "human, soft focus, large shot, areal shot, three humans with a glass helmet full of mushrooms, mosse, grass and flowers, dress with a plastic dress. Flying over a grey sea, black beach, photorealistic, livid light. "} +{"id": "2006229", "video_name": "13769105-bbef-51b8-b3fe-809a0eab1181", "text": "blue orange white dynamic horizontal flowing thin line waves on black background "} +{"id": "2007477", "video_name": "a951bbff-f677-510a-93f2-b16f31d67694", "text": "an apple is turning round the sun "} +{"id": "0006396", "video_name": "2bc84c85-bc23-5166-aa55-47c4d0e56df7", "text": "runnig fox, Curiosity, Agility, Enjoyment of a forest filled with flowers, Calmness and agility in crisis situarions, 3D rendering, Disney, Pixar "} +{"id": "0004855", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "countless dolphins flying in the sky, swimming in the sea and setting off huge waves, aerial photography "} +{"id": "7003157", "video_name": "84d4d6a1-2b99-5181-9da6-987aecb4ef69", "text": "A young Malala is shown eagerly attending school, with other children playing and learning happily around her. "} +{"id": "1006270", "video_name": "72cfd71e-8cdc-5714-9625-04234980efb1", "text": "animated Sheikh Mohammed saluting to UAE National flag "} +{"id": "2004297", "video_name": "9661505a-0022-5553-8df0-b43859b50d15", "text": "Five children and one of them with black hair, his head is pointed out where a language disorder is indicated and the image of a glowing light blue brain is observed, image near the affected part of the brain, inverted rotation "} +{"id": "0005087", "video_name": "147d05c3-10fc-57cd-9e11-f7f4ca7ff251", "text": "drawing and elephant seal in the breezy Arctic "} +{"id": "8002313", "video_name": "61204960-9cd2-5e3a-8ad6-5370382ce5eb", "text": "boyfriend and girl friend announces their merraige date "} +{"id": "7003507", "video_name": "cdbc7beb-09c7-54f1-84de-4886da9513ed", "text": "Beautiful young woman from Greek mythology with a crown of roses "} +{"id": "2006962", "video_name": "421e3398-b82d-5eab-bb44-1469afc160f9", "text": "Create an image of Benny meeting Oliver, the wise owl, who is ready to guide him on the enchanted adventure. "} +{"id": "6003963", "video_name": "9884ae63-f6fb-56dc-b648-4d2477a9a169", "text": "There are beings in space who are neither male nor female with long hair. Not a human being, but a creature who lives in heaven "} +{"id": "4002557", "video_name": "ebfa1203-1ec6-51bb-a0ea-5df7437595d0", "text": "In a realistic style, in a dark room, the two look at each other "} +{"id": "2005773", "video_name": "3ad96d2d-4c58-5bc1-ac80-ed6591ad0065", "text": "real photo portrait of a anthropomorphic crocodile dressed as a Knight Templar his sword intrincated details, emotional lights full reality fantasy "} +{"id": "0005096", "video_name": "14b09e55-e494-5361-ba53-0d8553dbf68a", "text": "A kid guitar hero jaming on a huge stage in concert with pyrogliphic , lights fog wind machine amps , rockers dancing in front of the stage al sureal , cartoon style "} +{"id": "3003084", "video_name": "c4697a6f-8fa3-58c6-b1fe-154b0a321c73", "text": "a man in his fifties walking up in bed "} +{"id": "1006903", "video_name": "7e312736-8622-57fd-8a4b-5cb2623d7c06", "text": "World War II soilder fights off horde of zombie soilders on the batlefield of a European village. "} +{"id": "0006631", "video_name": "2ff1dc03-1e80-579c-95b7-6b514b0c031c", "text": "young girl with Brian eyes and Rosey chick "} +{"id": "8003690", "video_name": "d057eace-d7d5-5b44-8d00-ad8ec5291e26", "text": "create image of logo with incognito ninja "} +{"id": "0004179", "video_name": "04a0e85e-e4b8-5aa5-a39c-57d60e058a9c", "text": "danone is a dairy brand create an image "} +{"id": "0006203", "video_name": "28388101-fd6a-5ecf-adf3-7d1b0260c32d", "text": "a beautiful girls standing headphones thander background "} +{"id": "8003705", "video_name": "52b44f0b-40ba-5f7a-b762-158ee19a3f13", "text": "A robot bartender mixing neon drinks, crowded futuristic club, photorealistic, shot with Canon EOS R5, 50mm lens, 8k, 120 fps, speed 9x "} +{"id": "8001006", "video_name": "f5fb7934-e031-5b6a-9b83-144cfaaa57f8", "text": "a lion running in forest behind a man "} +{"id": "6003713", "video_name": "159b6615-f144-5a52-a2bd-da7d02f08d03", "text": "vivid captivating footage of a intricate flowing cavern shimmering with starlight from a beautiful moving night sky. "} +{"id": "6002352", "video_name": "344e55f7-d811-539c-b283-dcd12dd11e3a", "text": "Legends whispered among the villagers about a forbidden mansion. "} +{"id": "1004380", "video_name": "50e56e0f-7307-54dc-818d-4792dcc12f9a", "text": "a person gaining wisdom as time flies by "} +{"id": "8002225", "video_name": "dfa7f04f-f91e-5fe6-8aa2-56eaa2d25ef0", "text": "Pope Francis jumping in a pool "} +{"id": "8003532", "video_name": "da094484-6337-5305-8dc2-e2c979ca12a4", "text": "a computer in a room, nightmare atmosphere, black and white, hyperrealistic, 16.9 "} +{"id": "1006429", "video_name": "75a1fdf3-e009-5e3b-b4aa-233d9f38e30c", "text": "A man say Hello friends welcome to my channel. white background "} +{"id": "8001957", "video_name": "fe9895c5-e993-5101-bd41-4569d1765a07", "text": "close up of ice crystals melting "} +{"id": "6002969", "video_name": "6484bcf2-0512-5695-84b1-91cbe8b24641", "text": "there are big flowers growing out of the earth "} +{"id": "5001528", "video_name": "477b12b5-4223-52e6-aff8-a6c4b0dcd30c", "text": "A boy and some tribals are hugging in the forest. "} +{"id": "1005045", "video_name": "5d46cfe2-c80a-5a2f-bc63-7d1a70a91e63", "text": "cute characters, white, forest, studying, cosmetics, researching, animals, disney "} +{"id": "2005143", "video_name": "47f0e2b0-9cfa-50cb-86f9-aa1278c46ada", "text": "Light a cigarette Message: 1 Attachment "} +{"id": "0003699", "video_name": "41f13876-61a7-5f9c-a9e8-7485f5be4a1f", "text": "A little boy in zeppelinfeld. In high resolution 4k with colors "} +{"id": "4004986", "video_name": "06eeb79b-60eb-5350-953d-9a348049d117", "text": "Sheikh scholar jurist, holding a book "} +{"id": "2005031", "video_name": "8520fc0c-6a9a-5258-8b37-3973aef3648b", "text": "exotic beautiful woman wearing trendy clothing at a beach, perfect detailed face, detailed symmetric hazel eyes with circular iris, realistic, stunning realistic, octane render, intricately detailed, cinematic, trending on artstation, Isometric, Centered hipereallistic, awesome full color, dark, gritty, mucha, klimt, high definition, cinematic, neoprene, behance contest winner, stylized digital art, smooth, ultra high definition, unreal engine 5, ultra sharp focus, ominous, epic, trending on artstation, highly detailed, vibrant "} +{"id": "4004432", "video_name": "4199efb3-5afc-5df6-8929-d702233540bb", "text": "Santa Claus crashing his sled into a tree. He is not flying. Make it photorealistic. "} +{"id": "3006750", "video_name": "ba46391a-3ae3-5c56-835b-71f75941c74c", "text": "Outside of a building with a sign that says Massage Parlor Happy Endings "} +{"id": "8002693", "video_name": "9a3f86b8-162c-5dea-b09f-c4a6b63a0bf8", "text": "In the center of the image, there is a heart made of intertwined, delicate rose vines. The heart is formed by two perfect halves, each represented by a different type of flower. On the left side, there are deep crimson roses in full bloom, their velvety petals expressing the passionate and intense aspect of love. On the right side, there are pure white lilies, representing the purity and serenity that love can bring. "} +{"id": "4004811", "video_name": "dd26df50-2abe-59c9-aa56-ebab492afea9", "text": "A comfortable relaxing bedroom inside the ocean with corals and fishes swimming in the surrounding "} +{"id": "4003233", "video_name": "c80e668e-e0b3-548d-b4a0-6e566c9571e6", "text": "meet a car accident in front of my windshield when I driving "} +{"id": "0003011", "video_name": "3589e9f5-dba5-5cab-8d66-c5ecf2d7ff19", "text": "A teenage girl walking the streets of Tokyo "} +{"id": "8001635", "video_name": "4be85bca-cda9-5f37-a780-b3ef2b883007", "text": "a young woman in black with a black, in the style of melds mexican and american cultures, webcam photography, feminine curves, light maroon and light gray, emphasis on facial expression, ogham scripts, photo taken with provia "} +{"id": "3006912", "video_name": "6faf5241-3d59-5115-800a-257965d1350e", "text": "POV of a dozen sweaty men drooling "} +{"id": "8002943", "video_name": "f60203bb-b119-5a4e-a88a-cb4f5a718ef4", "text": "an owl dressed as peewee herman dancing to music "} +{"id": "6003896", "video_name": "4e8c8513-c488-5800-9797-21c05f7e1c9d", "text": "mysterious, eerie atmosphere with dimly lit scenes "} +{"id": "4003504", "video_name": "c2f1f64e-014f-5a9d-811a-1112c29e0717", "text": "As they shared their invisible words with the animated world, a new understanding and appreciation for the power of language blossomed. The characters realized that words were not confined to the visible; they existed everywhere, waiting to be discovered in the air we breathe, the whispers of the wind, and the echoes of our thoughts. "} +{"id": "8001583", "video_name": "9dd0899b-4cdc-5365-8087-42dce5d697c0", "text": "Ocean with Ship sinking and plane flying on top "} +{"id": "1006303", "video_name": "735f53c2-6e79-51bc-b57e-baaf8c5bcdf6", "text": "a beautiful and detailed tanzanite ring set in white gold and very precious "} +{"id": "2004672", "video_name": "2f628b31-4bdf-5684-a467-5192f0fe44e6", "text": "camera zoom in to the clouds and zoom out with ligghtning flashing across the sky "} +{"id": "2006192", "video_name": "020f113f-8e7b-55f3-b265-150d71b976e3", "text": "classic cars in Thailand on the beach "} +{"id": "1006508", "video_name": "7729834a-4c42-51d7-8548-db2ffd753d60", "text": "A Harley Davidson motorcycle drives along the road of the dead who are reaching for the motorcycle with their hands "} +{"id": "5001516", "video_name": "f6761368-f0dc-5ae8-92b1-26ae648e03a0", "text": "Do a youtube video at the end where a group of men watching the channel are very pleasant and full of joy "} +{"id": "7004921", "video_name": "a8a87c71-294d-5859-aa5f-2721f2e37511", "text": "the person walks walk the background disappears "} +{"id": "1003468", "video_name": "403a02f2-d997-5918-b450-569f6d3db3e5", "text": "kung fu cats vs dog in a football match video duration one minute "} +{"id": "1005092", "video_name": "5dea36a8-a7bf-5f3a-855b-be21b3c7588e", "text": "a cowboy fighting huge monsters in the desert, photorealistic. movie like "} +{"id": "8003646", "video_name": "5dcebceb-a05b-5958-bd9e-c5e5c24433d1", "text": "1950s ambience smoke and fog in the room "} +{"id": "1005319", "video_name": "61bce768-05f1-54aa-8bf9-73c088ed1438", "text": "group of scientists in a lab find new drug "} +{"id": "7004318", "video_name": "e2425e06-db3f-5f38-b904-eff0fbe5ecfc", "text": "Vintage, radio presenter in his radio studio , cinematic, epic movie still, sharp focus, emitting diodes, smoke, artillery, sparks, racks, system unit, motherboard, repin artstation hyperrealism painting concept art of detailed character design matte painting,blade runner "} +{"id": "8003873", "video_name": "fb3d4f3f-de92-54ce-8a8d-b5f6da2e0cd2", "text": "A character honking a flute. studio ghibli "} +{"id": "3003051", "video_name": "904aeb67-ee4d-56f5-9756-aac0b05d3d12", "text": "The sun sets behind a fleet of boats, casting long shadows on the peaceful, rippling sea. "} +{"id": "3003045", "video_name": "fcd0501b-7d00-5565-bac0-69e561ea939b", "text": "Seeing the light, the ghost gets scared and runs back towards the tree. villagers also followed the ghost "} +{"id": "2006797", "video_name": "135403b6-2e35-5f94-928c-aad577084807", "text": "The jungle, once again shrouded in the tranquility of its natural rhythm, celebrated the victory of unity and courage. "} +{"id": "0003300", "video_name": "3b43220d-375c-5bc1-b165-4111a5875f04", "text": "a japanese anime style working space for computer scientists "} +{"id": "6004474", "video_name": "01d63759-1d94-5e1d-918d-fc349ce21691", "text": "The Intriguing Parallel Between Current Events and the Prophecies of the Book of Revelation "} +{"id": "2007475", "video_name": "e713d50b-8d10-5698-8e53-d4b2861e0593", "text": "dog doing tricks at the Westminster dog show "} +{"id": "0004809", "video_name": "0f815735-043d-500e-901c-658fb9c3f66f", "text": "suburban twilight park glow underlit in a white dress medium shot platinum blonde nylons platinum blonde nylons dream reaching for the light "} +{"id": "2007915", "video_name": "ad23a3e8-a75f-56c4-ac1b-4a2e6c3f8dce", "text": "sculpture\u2019s mega big in Nature,cinematik look ,Joseph Beuys, "} +{"id": "0004233", "video_name": "05818696-f533-50cd-ae81-63f583723318", "text": "This woman speaking in tv about gaboneses situation "} +{"id": "3005595", "video_name": "19c4f9ed-fad3-55ee-859b-967220a200ce", "text": "a beautiful girl is look at and a Handsome boy with admiration "} +{"id": "7004148", "video_name": "d364ada8-c462-5bb7-b75e-b5a98ae4bcc1", "text": "trees wind,realistic,Show the sun rising over the mountains, casting a warm glow on the homestead,vibrant "} +{"id": "7004609", "video_name": "11fc7059-b706-5414-a44e-661b2ac31daa", "text": "short about robots invading the USA "} +{"id": "5001140", "video_name": "9bb9d2da-8614-5bdc-8197-2c84aa11e2bc", "text": "3D render, a cat flying over Canyon, hyper realistic ,highres,32K "} +{"id": "8001898", "video_name": "98a8070d-36ed-5e55-a991-2eee146d1777", "text": "1960s old timey black and white footage of a mermaid underwater, motion 7, arri camera "} +{"id": "7004721", "video_name": "4a290bf2-f8e7-5181-b051-7e743d8b0e78", "text": "1970s arthouse film about greek god scrubbing bananas "} +{"id": "0006771", "video_name": "32caf809-9075-571e-909d-4d032d9f63ac", "text": "the same video but it lasts 10 seconds "} +{"id": "0005637", "video_name": "1e834a17-8664-5c18-a038-cafdec7b7776", "text": "a girl in gym, in black stocking "} +{"id": "1006876", "video_name": "7daa587d-ff62-5d21-bacc-2ed46135c17e", "text": "japanese supernaturals, horror, creepy, 1918 photo style, historical style "} +{"id": "0005183", "video_name": "16384316-17ef-58b6-a9eb-cd2302f64898", "text": "young Albert Einstein, eyes looking down at the desk, writing a letter, hand and head moving, eyes looking down at desk "} +{"id": "3003336", "video_name": "39ddafa3-b968-52ef-97b8-05607fa3d681", "text": "stunning aerial view on beautiful Tuscany landscape early in the morning when morning for is penetrated by sun rays "} +{"id": "8003055", "video_name": "b8bea39a-9d31-53b5-8dc8-97fa519bffb8", "text": "A smart HR lady walking through the office cubicles where are saying Hi and Hello Erika "} +{"id": "2007234", "video_name": "89fd543b-fa6d-517d-9b83-afdc6a138f60", "text": "The Lurker, a spectral being caught between the realms of the living and the dead, its ethereal form shifting and twisting in an endless cycle of torment "} +{"id": "0003025", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "entered the other room, he saw that it was dark and had only a table and a few chairs, camera Pan zoom "} +{"id": "4002789", "video_name": "fc3d0ef1-1742-55af-a5e6-a012f14730ee", "text": "Dante and Vergil from DevilMayCry 5 fighting in the middle of snow forest "} +{"id": "1004891", "video_name": "5a61d930-ac25-530a-9373-e94f5a1479be", "text": "low motion, camera zoom in, close up of hands of an man writing a newspaper in a office "} +{"id": "3006158", "video_name": "32517770-2def-5086-ad76-7d5cb2dbadc4", "text": "copenhagen on fire drone photo lens flare photorealistic "} +{"id": "4003591", "video_name": "e43650fc-fc64-5237-a13d-3d466a6c3bd4", "text": "Render the wildfire in 3D, with realistic flames, smoke, and the forest in peril, just as Willow faced the challenge. "} +{"id": "7003049", "video_name": "340db074-e8df-5a2a-9f71-9411daecdc59", "text": "Animate sleek futuristic vehicles gliding silently through the air, contributing to the overall sense of technological advancement. "} +{"id": "5001382", "video_name": "3c6bf93d-54b7-570c-96ad-fe8a8747a658", "text": "cartoon fireman on a big red monster truck, vivid, 4k Message: Hayes (Font: COMICS) "} +{"id": "1003182", "video_name": "3a8585a4-4ccc-5259-8f59-cc0116097ed9", "text": "aesthetic, retro anime girl body, pastel color "} +{"id": "7004805", "video_name": "3d8a3763-5b91-5c8d-a2dd-0927b22123dc", "text": "The sun shines on the light yellow wallpaper room, there is a light yellow table, yellow flowers are placed on it, and the note page is falling in the wind. The curtain is shaking as the wind enters through the yellow window. "} +{"id": "3003061", "video_name": "2b05aa8b-c7d1-5419-83a4-f77e4460b50f", "text": "a man singing at a karaoke, his head is getting bigger and pops like a balloon, the karaoke is in a tv studio, bright studio lighting, hyper realistic, 8k "} +{"id": "1006671", "video_name": "7a29d20a-27cb-5b2a-9e82-8fb082ba9d2a", "text": "Man blocking door from being opened "} +{"id": "1006749", "video_name": "7b92c445-dd5c-5a67-b408-0e5be9431c00", "text": "realistic image of elegant beautiful woman, walking full body, long black hair, wears fashionable tight clothes, perfect anatomy, beautiful amber eyes, her posture is confident and confident, like a professional model, a masterpiece, the background of the image shows its vibrant energy, with blurred lights that create an intimate atmosphere, the image reflects beauty and fashion, the beautiful woman should appear empowered and confident, and the realistic photo should convey a sense of glamor and cosmopolitan style, resolution 8k, hyper realistic photo, 3D rendering "} +{"id": "5001317", "video_name": "243f41c2-29bf-54ae-ab8a-c74c25f3127a", "text": "one beautiful girl is lying on a bed with a pillow under the neck "} +{"id": "3003024", "video_name": "b7c09374-b49e-58c1-91f2-7dece35aa943", "text": "male anunaki gods, sumerian myth, beard, falcon wearing, black and white art line, super micro hyper detailed, coloring book, ar 9:16, only lines. "} +{"id": "1006922", "video_name": "7e9af1a4-2649-5f18-915c-4af8e7fe30b5", "text": "a spaceship crashing in a desert on an alien planet, uhd graphics, 8k resolution, macro level details "} +{"id": "1005986", "video_name": "6e049aed-3706-56d2-9b7d-cb3882c1fba3", "text": "A Hungarian horse archer warrior shoots an arrow while horseback riding "} +{"id": "7004283", "video_name": "3cb1f6a6-cc51-52fe-b18c-f9e39b972a4a", "text": "Talking shape Square with crisp edges and a confident stance in playground, disney pixar style, 8k "} +{"id": "1005632", "video_name": "678bc0d7-cadf-57af-a3f7-f434832f9558", "text": "A murdered man lying on the ground and in blood "} +{"id": "6002974", "video_name": "2726340e-c9cb-5d40-9833-cd2106341a33", "text": "8K high resolution hyper realistic live action, a young man and Zendaya walking past a popular Christmas market, medium wide shot, gr15 FPS300 Motion5 "} +{"id": "7003823", "video_name": "d1f89caa-8209-5449-8bae-5fb0afce67d8", "text": "bustling anthill nestled beneath a oak tree "} +{"id": "1004335", "video_name": "500dd21e-741c-5b23-840f-1bfb09eba7a5", "text": "a Blackppol street scene with lots of young people having fun "} +{"id": "1003057", "video_name": "38337f84-18ea-5e54-87ad-66b10c02930b", "text": "image retrival at scale across the globe "} +{"id": "7003481", "video_name": "b38f65fe-4a74-5ec0-ad6d-bb73d19653df", "text": "elephants dancing and drinking beer among fire. cartoon.4k. "} +{"id": "7002488", "video_name": "4c196784-52de-5bdc-bf2d-eec3a3ae00a0", "text": "show the future in 100 years in ultra realism "} +{"id": "0004373", "video_name": "07ee2ae0-86b3-5c05-9525-f1a90c53cc7b", "text": "Create a cartoon video of a dog running and playing "} +{"id": "2006361", "video_name": "e4932586-4cdd-5120-a647-aa1d8d0a4c7e", "text": "A man writes 3000 points on the blackboard "} +{"id": "8003284", "video_name": "0b2a4e4d-8310-5f0e-b6a6-e73c39af1aaa", "text": "healthy and beautiful happy dog running on a green grass, side focal camera, hig resolution "} +{"id": "7004697", "video_name": "ed9d1308-8084-5e31-9d6a-408e207d48d9", "text": "a tasmanian tiger walking through the bush "} +{"id": "4004311", "video_name": "4a39173d-c1c8-5112-b164-f091b6b23b73", "text": "guy in back hoodie walking through a green wooded area with water falls (portrait) "} +{"id": "7004753", "video_name": "8d959c54-2360-5aa2-81e3-e47afe687750", "text": "vr headset on a man sitting in a bus stop. "} +{"id": "4002155", "video_name": "33cfc9ce-ab7e-552c-801a-394cb9eabf58", "text": "a man with headphones standing in times square with his eyes closed "} +{"id": "7004064", "video_name": "a912a741-5dff-596b-aa8b-0b1b266522f5", "text": "super mario, close up of face, rendered in pixar style, blue sky background "} +{"id": "3003078", "video_name": "56370a6b-64a9-5ad3-9b1b-64bf3e180282", "text": "jewels falling from the sky Message: SEMPER (Font: MODERN) "} +{"id": "7003864", "video_name": "aaae9f50-ca70-5127-9197-f00581a6ab13", "text": "head of black wolf with red eye, around him the mist and fog, dark mistery "} +{"id": "6002365", "video_name": "0b2e7334-2f26-50d4-9163-b4f7e4cf267e", "text": "A cinematic view of actor vijay in a boat in front of a building, detailed ship sails, in exotic tapestries, cryengine, tableaus, panoramic scale "} +{"id": "1004114", "video_name": "4c38738f-47da-5236-b8ac-7febc2f31afc", "text": "Masterpiece, perfect picture quality. Poster, 1 girl, lying on the sofa, pajamas, indoor, blonde hair, full body, cartoon anime girl "} +{"id": "1006728", "video_name": "7b418bfe-d9c1-588c-bff6-e878533e9abf", "text": "Aerial view of a drone circling the Statue of Liberty as it shimmers in the beautiful evening sunlight at sunset "} +{"id": "1005463", "video_name": "6464fc8a-875f-5f28-9083-c0ad10dd805d", "text": "tick tock tick tock, christmas present under a christmas tree, texture, patches, full body, Psychosomatic Art By Tim Burton "} +{"id": "6003465", "video_name": "aebf6084-e25b-5391-8ccb-2132dca840ea", "text": "On a rainy day, a girl with long hair, wearing denim clothes, is smiling while getting wet in the rain, with the beautiful night cityscape behind her, neon lights flashing. "} +{"id": "2005785", "video_name": "e0990641-f15a-5f79-990d-68140bc3c00f", "text": "a village boy screaming in the mountain "} +{"id": "7002542", "video_name": "c5d0f63f-83b7-53b4-a9f6-f06adb111283", "text": "purple hair , christmas party, pixar style "} +{"id": "4003473", "video_name": "ecbea411-0e1a-5179-b8b2-f5ebe768c39c", "text": "d.b cooper Wearing black glasses, he walks around Moscow with the president and medals on his chest because d.b. Cooper is a hero of the Russian Federation "} +{"id": "0003565", "video_name": "3f9d8a8c-eba0-5649-b5c4-80167deca13f", "text": "slow smile ,slow hands move , slow eyes moving "} +{"id": "7004415", "video_name": "ec4cbef3-3dda-556e-93ad-86f2a2fc3019", "text": "the man with hat is on the bridge is looking at the lake "} +{"id": "0004184", "video_name": "04bcc6e3-6824-599b-ae55-d1fb8e344559", "text": "you are driving in wrong way, trying to dodge every car. "} +{"id": "7003082", "video_name": "435bab63-03ec-5c3a-baf2-b095c52d62b1", "text": "Lovely detailed sketch art in the style of Tony Diterlizzi, Cross hatching, Strong facial expression, cartoon, pencil art, Richard Schmid "} +{"id": "4003933", "video_name": "88a362fa-e9ec-5d86-9627-bf8ac4f9795e", "text": "cinematic gradient descent in cartesian world "} +{"id": "4002811", "video_name": "50c85642-7827-5c46-8b40-ccc0acb4886f", "text": "Shadow from shadow fight 2 Vs Loki from Marvel "} +{"id": "1004573", "video_name": "54f928ae-c487-5c9c-8b1f-1b0bc8282d8d", "text": "the numbers 7.10.2023 appear in the blue sky with blood flowing from them "} +{"id": "8001089", "video_name": "4466a881-5ef6-5230-9a88-6a47569b8117", "text": "a lovely stream in ifugao suddenly becomes dry, 4k, 3D,HD 19:16 ratio "} +{"id": "3006436", "video_name": "d04ee7ea-9ff6-5770-bb55-7ed675c18d86", "text": "anime character based on hot dog and condiments "} +{"id": "0005872", "video_name": "229c7fb9-91c0-5ba8-b021-e402d0d5a00c", "text": "Visualize the town of Willowbrook, once shrouded in fear, now whispering tales of an extraordinary friendship that transcended mortality. "} +{"id": "7004762", "video_name": "7aa0b61f-8404-578c-b250-f642e8c05b59", "text": "a mouse running through tall wheat field "} +{"id": "2005464", "video_name": "6cf79a42-270d-5fe1-beeb-6d3f8545791e", "text": "After a long time, the earth began to become barren "} +{"id": "7002190", "video_name": "e86c0708-9689-5583-a4c0-d4a26ad73722", "text": "painting of the Oracle of the three prismatic monstrous fates, by Leyendecker and NC Wyeth, volumetric diffuse shading, pre raphaelite, feature film "} +{"id": "4003831", "video_name": "66e07ee9-b4e0-50bc-9acb-9c50c508f721", "text": "make video cinematic, children playing at the ground at night "} +{"id": "0005092", "video_name": "14938434-bdd5-58cd-991e-1bb026e3ae7b", "text": "sequoia tree view from a person "} +{"id": "0005664", "video_name": "1eeac875-b292-53d8-94d3-f27981fcba3f", "text": "Create a picture of the twelve tribes of Israel in your tents "} +{"id": "7003183", "video_name": "de67797d-c17f-5d8b-a11d-815624cb982b", "text": "A couple kissing at sunset on the banks of a river. on the left side of the frame. To the left of the pair, a wave of fire collides with a wave of water placed on the side of the prime. White steam is formed at the point of contact between the water and the fire. The man is frightened, the man protects him. "} +{"id": "0006045", "video_name": "25a70637-997e-59e5-b316-181d25658683", "text": "one line drawing of a skater jumping an obsticle "} +{"id": "1004518", "video_name": "53e62d71-f568-5333-8fff-5cd45c2a8bd3", "text": "Show a vibrant world with lush fields and happy people in ghibli style "} +{"id": "2006574", "video_name": "6ae57e00-4220-5846-8a71-3ffc1dd84d2e", "text": "a kid being abducted by aliens "} +{"id": "3006373", "video_name": "3513dd90-ba00-5aad-9e09-68f73afc87bf", "text": "She flung a rugby ball against the ground "} +{"id": "3003134", "video_name": "984862b5-bbae-5c1a-881e-7051c7239bae", "text": "the band bastille performing at the las vegas sphere "} +{"id": "7004524", "video_name": "908c3c39-db81-5854-abe7-95502d11ce30", "text": "A gorgeous flower, petals with drops of rain, shimmering. "} +{"id": "7002849", "video_name": "757b0d81-7d13-5fee-8399-e68b56fe2054", "text": "rocket explode in the space, earth in the background "} +{"id": "4002668", "video_name": "10eb3adf-e5f9-5efe-95b8-42d61e1671a1", "text": "perspective rotation motion neons,lights blinks sparks illuminating transforming "} +{"id": "7004265", "video_name": "e1a19f95-211d-5e41-97e7-63b2a3429451", "text": "Girl with bright pink hair in a leather coat and shoes, doll appearance 8k, 4k, "} +{"id": "6004014", "video_name": "9b26f4d8-3046-58ba-a15d-ddc8c12e02ae", "text": "green tea trees sunny fammer garden eagles Message: sunny (Font: MODERN) "} +{"id": "8003861", "video_name": "c0dfb8ab-c1de-52e8-86af-68446e764bcb", "text": "a luxurious party where everbody is enjoying "} +{"id": "1006646", "video_name": "79ca5639-9d05-57df-9b9e-4fac1af5fe4a", "text": "a video of donald trump standing on a podium "} +{"id": "2005349", "video_name": "e4ba6d91-0be3-5181-9ca0-4e64f826a5a4", "text": "India girl white in front of smimming pool taking selfie in bikini realistic view background as swimming pool,with palm trees,in swimming pool dog is swimming "} +{"id": "5001678", "video_name": "d7c1dc61-ffb3-5fe5-b004-5e9c0936b353", "text": "dramatic and frightening scene of a storm falling over a city at a time of solar eclipse, meteor shower and red moon covering the sun "} +{"id": "1003844", "video_name": "46dcf831-f8db-5d09-a6b4-a41f2b930e5a", "text": "from the perspective of the space station, we see a giant sphere of iron 10 miles wide nearby in orbit, with a spartan helmet logo visibly etched into the surface. "} +{"id": "0004345", "video_name": "077bed4e-7b4f-56e2-9ec6-03a8ce40d5d9", "text": "Reversing the Spell: A visual of Sparky and the team working together to reverse the ancient spell on the Nutberry tree, with magical sparks in the air. "} +{"id": "2007739", "video_name": "93eec376-aff3-5d11-a0c0-4e2bbabdc234", "text": "realistic video of a sunset in the mountains with a fire in the foreground and a waterfall in the background. There is a woman with long dark hair and a bald man with broad shoulders sitting next to the fire facing the waterfall "} +{"id": "1003734", "video_name": "44e4e2ca-1a50-5ac1-9fb5-5d0a78dfbecc", "text": "golden hummingbird flying in the mist "} +{"id": "6002344", "video_name": "58662785-5f52-5731-96de-91486f4b25cd", "text": "girl in classroom looking outside window that has a view of mount fuji and sunset "} +{"id": "7003943", "video_name": "9d53cbf4-b6c6-5e7d-89b2-aec1690c357c", "text": "generating a vedio the tsunami is flowing in the city "} +{"id": "7002759", "video_name": "9bbf9aa6-5112-52f5-aa93-9f459bd371af", "text": "a boy and the earth hand on "} +{"id": "3006836", "video_name": "c32dbad2-1e73-5657-a6e7-ded608be8ed4", "text": "In a dystopian future, where the line between humans and machines blurs, an epic battle for survival is about to begin. Get ready to immerse yourself in a world where "} +{"id": "8003126", "video_name": "87edf662-289f-5eb7-ba62-e61fce95fd1d", "text": "poor children dying of hunger in the street, disturbing and nightmarish atmosphere, horror film atmosphere, hyperrealistic, black and white, 4k, 16.9 "} +{"id": "1006060", "video_name": "6f49658b-3672-5f1a-8ce2-a2733a259144", "text": "a million people are racing, background sunset "} +{"id": "3006570", "video_name": "8da9ad85-35f0-5a25-8521-df674ebdafd1", "text": "a realistic 4k depiction of a lone man standing on top of the largest skyscraper in a abandoned downtown city (similar to New york city). There is a thunderstorm rolling in and off in the distance what seems to be a large aircraft can be seen coming through the clouds. It is lightly raining and some buildings are on fire "} +{"id": "6003245", "video_name": "833a25e1-5c2d-55e2-94c8-65215672139e", "text": "Frodo Baggins sits under a tree in the Shire. movie "} +{"id": "3005716", "video_name": "4bcad242-1633-596d-a4ba-279d2dfa9619", "text": "person standing in dark forest that is on fire "} +{"id": "0004724", "video_name": "0e0ea2ea-cb76-5367-9bf3-882b7c0386d0", "text": "one soldier who wearing the rags is burying the dead using the grasses, the camera at the high view. "} +{"id": "1005566", "video_name": "6673dfa6-1b8d-58ba-a934-f9aeb681296d", "text": "elephant removing rocks in flood affected area to rescue animals "} +{"id": "4002246", "video_name": "6de9a892-3f54-52a9-a30e-bdb6cd7510b2", "text": "An atomic bomb exploded in a city which was completely destroyed "} +{"id": "3003813", "video_name": "6c0a8c0e-ed73-55d3-a78c-fa512f148472", "text": "Owl Humanoid ,Gangster Looking, Wearing Orange Tracksuit,walking , In New York City , On Sidewalk, Cars Not Moving On Side Of Street "} +{"id": "8003611", "video_name": "064efd9b-97f1-558d-8fcf-55c2680a5673", "text": "the joker trades the stock market "} +{"id": "1004505", "video_name": "5385095e-5b9d-5f88-9fd1-116803c4273d", "text": "a man walking over a bridge with an aligator and spongebob "} +{"id": "7002731", "video_name": "d96e834b-4b8f-5a5b-aa8d-f8b7d1ae45ea", "text": "a muscular old man with green skin, long white beard, warrior, disney style "} +{"id": "5001746", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "completely base your choice of which one to visit today on the dish that most entices your taste buds, 1080P, high quality, comic "} +{"id": "1004052", "video_name": "4b262458-1c54-5cba-abd6-3c5ccf535149", "text": "The view background is nothing Message: 1 Attachment "} +{"id": "1004410", "video_name": "51854231-07f5-5559-b7d3-68b06e74785e", "text": "cinematic a couple dancing in the rain infront of a luxury hotel in Rom. He is very muscular and good looking with black hair and blue eyes and she is Russian very feminin tall and brown long hair "} +{"id": "4002136", "video_name": "c3928aac-9504-571b-b8cd-cf47d6cc1f03", "text": "cyber doorway opening as camera zooming in, wires and cables, neon glowing blue, dark metal "} +{"id": "2005243", "video_name": "d98a7a00-6eac-5513-8850-d1256dab9cfa", "text": "Double exposure photography by merging reflection woman face on lake waves blurring the boundaries between human body surrealism style minimalist "} +{"id": "7004143", "video_name": "6bb0c268-0870-5a2d-8f58-4e709f85a45c", "text": "a tiger in a vibrant jungle setting with a 16:9 aspect ratio. "} +{"id": "6004657", "video_name": "5ccddb26-ff33-50b6-9ba1-9d9d585bb663", "text": "Elsa freezing a wave Message: ROXY (Font: MODERN) "} +{"id": "2006856", "video_name": "48bf953d-fe3a-522c-8b49-9cf7736a2268", "text": "create a robot in pink and neon blue color who is waveling its hand "} +{"id": "6003104", "video_name": "b2f37922-4f2f-5b5f-b6f0-b936fa5adc53", "text": "wide view of apple and orange trees "} +{"id": "4002634", "video_name": "e32802be-b0e7-50cb-a5e4-f99b1f4cd755", "text": "a young couple shopping at a supermarket "} +{"id": "0004981", "video_name": "12b706a6-3122-5ae8-ab86-5a66e36c3e2d", "text": "zero point energy Aldebaran UFO moving through a portal in the ocean, 1920s silent film, 8mm, blurry, expired film "} +{"id": "7004097", "video_name": "e8eafb25-85ca-5429-be05-7606f91ea8d9", "text": "generate a video scene, soft movement of clouds between the mountains "} +{"id": "2006122", "video_name": "d81ebcc2-01de-558d-b44e-509657438ecf", "text": "brick fireplace with 2 burning logs "} +{"id": "6004285", "video_name": "2e2cfe46-31d1-50cd-b8bd-15178191fd3a", "text": "Three soldiers running behind 2 warriors "} +{"id": "1005439", "video_name": "63f509d0-f03e-5b98-8172-209e0cd22110", "text": "A cute West Highland White Terrier smiling running in the grassland "} +{"id": "8003118", "video_name": "9be0d21e-4525-5df0-971e-5eb33271b32c", "text": "a businessman in a business suit .animation,4k "} +{"id": "3004775", "video_name": "89d2b62d-d91a-5079-a239-44b9cdfe9852", "text": "In the style of Pixar animation, a scene where a young boy fearlessly leaps across a wide chasm. "} +{"id": "0003656", "video_name": "41221cd1-34b0-503c-98b8-3f56f23cb32e", "text": "a girl is dancing on the wall ,8k pixar disney "} +{"id": "8002578", "video_name": "652fc9d6-0132-54dc-a104-59809b89341d", "text": "a 3d background image for youtube video for english learning "} +{"id": "4002345", "video_name": "4bcfb448-e30c-5aa5-8ad9-76ef490f79ad", "text": "trocar a roupa Message: 1 Attachment "} +{"id": "7004875", "video_name": "9f51735b-2dd2-5960-b4fa-b31f2733df57", "text": "electric cars in a bustling city "} +{"id": "6004302", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "Benny meeting Rosie the Rabbit in the meadow, both bunnies with smiling faces. "} +{"id": "8002052", "video_name": "0bf108c3-108e-521c-8989-7d7921da14d6", "text": "and she found herself living a love story that she had once only read about in books. Years passed, "} +{"id": "4002058", "video_name": "0e45afe2-c7b8-58bd-bd71-df9074d2b1ab", "text": "purple and pink futuristic glasses motion graphics "} +{"id": "3006094", "video_name": "adc74627-1682-5990-b2d5-ee56f9824792", "text": "Representative visuals of people facing financial struggles. "} +{"id": "1003529", "video_name": "410db794-1da7-578b-85ce-e06ae7f48e51", "text": "A team of scientists and engineers are gathered in the mission control room, watching the launch of the first spacecraft to a habitable exoplanet "} +{"id": "5001427", "video_name": "5a5c6c26-3306-5756-8539-253f2680ab5f", "text": "microphone dancing on a snare drum "} +{"id": "3005407", "video_name": "3e74c513-1817-54a7-a2ad-7c0114ab4a19", "text": "man In a gun battle in a cyberpunk alley. In the style of Patrick nagel "} +{"id": "3005433", "video_name": "c714c55d-0e65-5530-927a-abdd495e5610", "text": "A young man came across a well. "} +{"id": "0004023", "video_name": "01af9071-cbde-5f68-89f3-c07032a4eef7", "text": "animated faceted glasses, herring and loaf "} +{"id": "2005713", "video_name": "ae822507-d5f0-5e3a-959e-d72aa3ede7bb", "text": "modern and fresh, young people who start in there business life Message: Ausbildung (Font: MODERN) "} +{"id": "2005620", "video_name": "86ab987e-192f-505b-b7a7-820f60c3bf12", "text": "Rotting wood creaked beneath their feet "} +{"id": "1003748", "video_name": "452672de-2b92-5e01-9d08-b969ebd4c4c8", "text": "mysterious women coming out of fort 3d cartoon vedio "} +{"id": "4003808", "video_name": "5435f563-5a76-5e1e-b279-a0d2b23c4e22", "text": "a boy wearing red sweater, facing camera, clear yellow background "} +{"id": "1004356", "video_name": "506126a0-3d2e-57ac-8aea-a5a5f68f7ed2", "text": "Many small fighter jets are rapidly flying to Earth with 8K image quality "} +{"id": "4002373", "video_name": "0446fbc4-9dc6-5244-9d63-8337323cb266", "text": "media,reporters and journalists at a city hall in the middle of a gothic city (cinematic) "} +{"id": "1004973", "video_name": "5be3ff49-f52f-555b-9959-d22d9a7c8f71", "text": "Landscape with hills covered with red poppies on a blue background, Vasarely style "} +{"id": "8003104", "video_name": "0f5557fd-3c04-5088-b4ac-3455b510aa32", "text": "Strings are torn on the guitar "} +{"id": "4002337", "video_name": "085aa0db-bf7c-5cec-967b-2f37dea3fb1c", "text": "Futuristic city in the background( with very talk sky scrapers; environment infused style) ; two people having conversations in the foreground( having a good time; a boy and a girl) "} +{"id": "2004534", "video_name": "fcbaec7c-f087-5b4a-875b-80919660affe", "text": "a starfield flying fast. Spaceship perspective. "} +{"id": "0003728", "video_name": "4277c032-3cc2-5e87-9704-97ed3f2da43b", "text": "some fish in a swimmingpool, 4K 16:9 "} +{"id": "6004723", "video_name": "3eb2de45-c350-5478-8965-f2b4930ded77", "text": "a village of indigenous native people in a vegetable garden who are surprised by the arrival of Julius Caesar and his army troops "} +{"id": "3006091", "video_name": "62eb9721-1f40-51ac-b995-711373241eba", "text": "make the girl smiling and watching to us "} +{"id": "0006092", "video_name": "267815f7-236c-5bb1-a62c-5aa4ec70a38d", "text": "Man falling and dancing gently while falling Message: 1 Attachment "} +{"id": "6002066", "video_name": "5edb330a-62fa-568f-a9a8-231fcb075214", "text": "black in white marble cartoon style "} +{"id": "0003324", "video_name": "3ba79156-0b3e-54b4-ae0a-bfb3b0defb6f", "text": "a mountain biker is jumping a large dirt jump in an open field with mountains in the distant background "} +{"id": "6004452", "video_name": "4f26c25c-0474-58eb-8b4e-3255fc90a2d5", "text": "dramatic, rose petals in a bright ocean, next to a golden boat, ice cold feeling "} +{"id": "0004746", "video_name": "0e93de1e-d041-5c7e-b312-4866bd7ed39c", "text": "statue of liberty jumped from pedistal "} +{"id": "1006062", "video_name": "6f4c6501-76ec-55dc-817b-16c46b2517af", "text": "The background of the collapsed city, the back of a young woman looking at the collapsed city, is in the center of the screen. "} +{"id": "4002694", "video_name": "fd5d5420-c079-5a5e-9f4c-6db4aa487b42", "text": "a collection of arts supplies, camera zoom in Message: RECIT ARTS (Font: MODERN) "} +{"id": "3004508", "video_name": "d6e9a665-4c9c-5565-9535-5442c6c5c74f", "text": "an alien looking at a screen inside its ufo space ship "} +{"id": "0004532", "video_name": "0abc0175-11ca-5b39-8785-520ee32fff46", "text": "the person who works hard at the sewing machine "} +{"id": "0004848", "video_name": "10389ca2-b65e-5e16-a96f-4ba00d1cc1c3", "text": "A cycle player is cycling on a road st: 16:9 "} +{"id": "3006713", "video_name": "2ed3e411-a3cf-5960-984f-e83ce14d0568", "text": "cartoon zapp branigan hates his dungeon office: tall mountain bodyguard holds a man hostage, 3d animation, camera pan out, "} +{"id": "3006519", "video_name": "de58d790-ea61-5725-9c63-1adcef67355c", "text": "purple Greek God, Olympus garden, lighting, 4k ar 9:16 "} +{"id": "5001361", "video_name": "c7e35e38-c3e1-5c30-a12d-b49b36094f8a", "text": "girl jump, hyper realistic, 4k resolution, high octane render, golden hour lighting, intelligent render, cinematic shot "} +{"id": "8002077", "video_name": "f57cf4f6-2bac-5a07-b8cc-0f828f4ea858", "text": "Invoker from Dota 2 is preparing for the battle of the ancients, video from far away "} +{"id": "3006433", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "realistic 8k uhd planet collision with another planet explosive impact in space "} +{"id": "2003956", "video_name": "8975eff5-1567-5373-a200-e4cbf49d85b8", "text": "the pafes of a book turning "} +{"id": "7002148", "video_name": "08307182-e97e-578d-a1ea-0ab5573af196", "text": "popcorn box on the floor, left behind in the movie room of a movie theatre, in anime style "} +{"id": "8003443", "video_name": "579ff489-056d-558b-8d00-3e9bc082ba64", "text": "Hulk charging with full speed towards Iron Man, leaving a trail of destruction in his wake. "} +{"id": "6004960", "video_name": "7fc2586d-0b9f-590b-a38b-dc44499a5391", "text": "moving fluidly indie abstract art movie "} +{"id": "1006539", "video_name": "77cb61a2-2784-5c98-b9de-dff132ed4ca1", "text": "Cinematics A big commercial building that has a pink logo that says written out PROXFON and please be sure to write PROXFON on the video "} +{"id": "4004994", "video_name": "89703f4e-ca19-53f3-b8e2-67bb94171957", "text": "wide angle view of a yak herder singing a song of solidarity on Himalayan "} +{"id": "1003887", "video_name": "47ab2877-3913-5d6e-bca3-3c1297009c22", "text": "tyler durden walks away with a cigarette in his mouth and his back turned in a dark war zone with smoke everywhere , ultra detailed , dark theme , indoor air , midnight blue theme "} +{"id": "0004380", "video_name": "08050d16-bf65-5faa-b00c-d98e761f4698", "text": "Show a small village setting with a curious and intelligent monkey sitting on a tree branch. Beside the monkey, a lazy snake is lounging on the ground, showcasing their unlikely friendship. Use expressive facial features to convey the personalities of the monkey and the snake. "} +{"id": "1006263", "video_name": "72b223ad-e950-56cc-86c7-b0a20adef9fd", "text": "four people on an epic journey "} +{"id": "8003379", "video_name": "d4b1543e-7415-5ad8-a0bc-e4a30a798a38", "text": "In a nice ancient medieval castle backgroud,a gril is spaying perfume on the grass,16k "} +{"id": "2005129", "video_name": "563bcca4-fc24-573a-9198-c4105df92326", "text": "the flying curtain, woman cooking,flashing light "} +{"id": "1004584", "video_name": "5544899f-cf0e-5f8a-9ce4-ff31b9a14f68", "text": "lines drawing abstract car shape on background of the night city "} +{"id": "4002168", "video_name": "095ad103-602b-50c6-9e08-e7f5dcc10fa1", "text": "Create a video animation based on this image with the big planet in the middle to be in motion. The planets should revolve around a central point, and their movement should be realistic. The video should have a duration of at least 30 seconds and a smooth transition between frames. "} +{"id": "0006778", "video_name": "3304870b-dda2-5ed6-9758-65557a53d219", "text": "anime Geisha in Romantic style, with featuring silver and ruby emotive landscapes "} +{"id": "2007816", "video_name": "6eb363f0-ce06-52ae-9eab-05c3b80f8a9e", "text": "Joseph of Egypt now ruled over the Egyptian nation, photoreal "} +{"id": "4003444", "video_name": "2ecb441a-eaac-56c7-880d-177e6a84c3f3", "text": "a beautiful landscape of ancient china(pixar animatition style) "} +{"id": "0005569", "video_name": "1d1538e0-3a52-5533-8eb0-b94571745698", "text": "interior of an elevator with the doors closed, as if you were inside, first person, saw style "} +{"id": "3006647", "video_name": "c60ece6e-ea4b-562b-b4ce-1025910289bb", "text": "A humanoid Crow named CHEMBAN (a mystical creature with feathers that shimmer like emeralds) soaring majestically through the sky. "} +{"id": "4004884", "video_name": "5b5aee36-a9f1-5afc-b1e7-c083dc2cdfef", "text": "A dimly lit office with employees working overtime "} +{"id": "2005045", "video_name": "7a500b5c-5406-530a-92fd-4ff48d353189", "text": "man on SUP falls into the water "} +{"id": "1004534", "video_name": "54473143-c332-57f0-8573-3681e8eca8ee", "text": "Liam: The charismatic leader of the group, driven by a sense of adventure. "} +{"id": "1004281", "video_name": "4f294d6f-414c-5cb5-b4e2-87df2458919b", "text": "the camera view inside the room that captures a curly head boy with brown eyes walking in the doorway "} +{"id": "1004676", "video_name": "56e58a8e-d824-56a2-8158-bdf05bdbd461", "text": "shiba inu running a hallway fast, octane render, realistic graphic, move background "} +{"id": "5001621", "video_name": "a26af60c-adbd-59b5-9b9b-c6b9d9f76ffa", "text": "the hot sun on a summer day "} +{"id": "8001985", "video_name": "fae848be-38d6-5116-880b-4faff9d833b3", "text": "an Anime boy character sitting on a chair behind the tale her dress colour is black Message: 1 Attachment "} +{"id": "2003183", "video_name": "aeb27d4e-028b-5354-84f2-f88ecf3909d4", "text": "Hand in hand, they traversed lush forests, climbed towering mountains, and swam in sparkling lakes. "} +{"id": "0006865", "video_name": "34722082-e031-58bc-bc93-9ca625d81d60", "text": "dog bark, gentle wind, black welsh corgi looks excited and ready for adventure while standing on the porch of a log cabin surrounded by evergreen pine trees, Studio Ghibli, hand drawn, vibrant "} +{"id": "2004865", "video_name": "829288df-177d-572f-93f0-062f4e69886b", "text": "A face appears out of the dark "} +{"id": "1006976", "video_name": "7fa92626-a1b6-5fee-8005-fd9384c8441c", "text": "The man lit up like a match "} +{"id": "2006573", "video_name": "684b55e5-9af4-5e77-806d-8e1b6826ab51", "text": "a nice restaurant with beautiful different food on the table Message: Shaked (Font: MODERN) "} +{"id": "7004441", "video_name": "41288b5f-b287-59e7-9957-0cc935196e30", "text": "beautiful woman in a pool drinking a beer "} +{"id": "2007979", "video_name": "6a27d959-34d1-5805-917d-e666e84e433c", "text": "A man walks into the kitchen and asks his wife to make tea "} +{"id": "2007631", "video_name": "62879bc9-9eca-5703-8306-41e4e90ce9c3", "text": "eyes of a young man tired, in anime style, closeup to only the eyes "} +{"id": "1005424", "video_name": "639aff3d-84a2-5231-bb52-5faf72bbec83", "text": "cinematic scene wide view a judge old man sitting on the chair and in front of people talking and moving hands "} +{"id": "0006685", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "Donald Trump hanging in the sky, moon, stars "} +{"id": "1006175", "video_name": "71054653-5be1-5798-823c-b19acc8ca8c6", "text": "A boy and many village members were grazing sheep in the forest "} +{"id": "1004696", "video_name": "574d1fbf-04ad-56d9-95ef-4d2bf96f83c3", "text": "a circular hole in floorboards large enough to fit a person in it "} +{"id": "3006203", "video_name": "f05eb27d-9545-5b55-b16f-43ef89104d80", "text": "A boy sitting on a bench in the park under a light post, windy background, leaves falling from trees, 16:9 racio "} +{"id": "2005142", "video_name": "1972ea7d-0949-515f-a5be-a5c2c2206826", "text": "cinematic scene, grungy uk tower blocks "} +{"id": "4004607", "video_name": "a57c5386-00f9-561c-8a48-29e855f6a889", "text": "Jacket from hotline Miami x Blade runner 2049 you look lonely i can fix that "} +{"id": "2005821", "video_name": "d16874d6-f22a-59e7-82c3-71093464cd5c", "text": "a green blob slowly heading down towards earth "} +{"id": "2005384", "video_name": "09cbfbac-5dd6-5806-a833-3547e12956f4", "text": "very petite sexy girl in futuristic short miniskirt walking in front of futuristic city. "} +{"id": "6004368", "video_name": "251fa166-36ef-5604-a530-7f68b3ea4659", "text": "Selena Gomez thinking about a magical solution, pondering "} +{"id": "8001394", "video_name": "6e914ffe-baad-5a45-9f76-45076980e7e1", "text": "Create a video with contrasting transitions between black and white and saturated frames, add shimmer effects that convey the dynamics and tension of the track. "} +{"id": "8002418", "video_name": "9790f604-5623-5bcb-9aa1-ac1ca322cead", "text": "aboy reading a book sitting in forest on bench "} +{"id": "4003007", "video_name": "116aee84-44cf-5c13-9e76-e26f211b2029", "text": "the boy read a book with robot in the sun "} +{"id": "2006287", "video_name": "38fab9a7-f235-5fd6-8365-9da921e48b53", "text": "Once the king of the jungle, the lion, fell very ill. "} +{"id": "6003835", "video_name": "7e6857e9-3e32-572e-82f7-d8104229491c", "text": "indian bride in lehenga twirling while the indian groom wearing sherwani is throwing rose petals on her from a baske, caricature, cartoon, royal background "} +{"id": "8002176", "video_name": "c25ed8af-7bcf-5cda-83d5-930707638c6e", "text": "mobile screenshot of facial recognition application "} +{"id": "0006513", "video_name": "2dd98d9c-a169-5b69-90a0-4622d837cc35", "text": "manhole cover with water flooding in "} +{"id": "0003662", "video_name": "414323bd-8f38-5b36-9dc8-fabffd1657d4", "text": "A spaceship takes off from a giant mushroom planet inhabited by humans. A dazzling daytime sky. Photorealistic. "} +{"id": "3005454", "video_name": "4156baa6-e3a2-57bb-bd72-e04e97f1ecb8", "text": "Music video style of a old record player playing records "} +{"id": "4002996", "video_name": "01578316-af15-5221-9a96-8b611959f108", "text": "an image in which a lion eats a train "} +{"id": "8003731", "video_name": "85ef84ab-2e29-5e6a-872a-28ab979e4d12", "text": "auto rikshaw driver talking with passenger at rainy night "} +{"id": "5001469", "video_name": "e8f3b69b-4342-5c2e-95af-2c05fd7f36cd", "text": "AI heaven, shot with phantom slow motion camera "} +{"id": "1003198", "video_name": "3ad29eee-a2b7-59a1-89fc-dada2269899d", "text": "man venturing into the new year with hope "} +{"id": "3004150", "video_name": "2db9909a-9f84-5738-80ed-b60410712865", "text": "A montage of students studying, teachers teaching, and various educational tools. "} +{"id": "0004933", "video_name": "11b7fc84-c934-5a15-9b6a-e624f230d644", "text": "a 1965 polaroid picture in muted colors of a dog dressed in a tutu dancing ballet "} +{"id": "1004827", "video_name": "5930c37f-a2da-5e52-9be9-24c8d1ea86a3", "text": "Imagine a mystical creature arriving in a village, radiating enchantment. This magical being possesses a unique coin that has the power to fulfill the wishes of anyone who holds it. Picture the anticipation and wonder in the village as people gather, curious and eager to experience the magic that this extraordinary creature brings with its wondrous coin. Message: 1 Attachment "} +{"id": "2007765", "video_name": "8e85cef8-0180-5cd7-89ca-bb3fa9dccb12", "text": "Futuristic Female model walking down runway. Super Realistic. "} +{"id": "6003774", "video_name": "77a7654c-5350-5a12-aaa8-dcf78d9c5cdd", "text": "Single giant monstor ant destoying taj mehal "} +{"id": "3006006", "video_name": "25d0b2d5-b4eb-5fff-a6a4-d31defe7fba8", "text": "A girl in a protective suit against a toxic atmosphere goes outside the silo where she lives and sees other silos on the horizon. The sky is gray and the ground is covered in dust and debris. The girl looks with wonder and curiosity at the world around her. Outside there is a dead tree and the silos are like holes in the ground. In the background you can see a city in ruins. There are no containers or refineries in the image. "} +{"id": "3004787", "video_name": "ef1aa79c-3b0f-569d-97f6-aaabb12f564d", "text": "It was late at night in 3d Animation with 4k resolution "} +{"id": "3003472", "video_name": "0396724d-8b08-577e-86ab-92758e4b30a8", "text": "A complex robot lying on a hospital bed "} +{"id": "2005542", "video_name": "a106b629-dc1a-5ec9-b8e3-15e4207e7c83", "text": "A cinematic shot of a Man with Wavy dark hair walking through a cyberpunkish city in the night while it rains, 4k "} +{"id": "8003806", "video_name": "e7f97feb-bb73-593d-8ff0-19fed84e416c", "text": "made of fruit Message: CRISP (Font: MODERN) "} +{"id": "7002364", "video_name": "a98948ca-1022-5a30-ad4d-09658c9bf92c", "text": "The natural salted pattern moves smoothly "} +{"id": "2003919", "video_name": "1490e470-65a1-5e5a-8739-9e4e5a51051c", "text": "A woman in a headscarf bending over examines a mushroom in the forest "} +{"id": "3006511", "video_name": "6bd72fc1-91fa-50bb-8b2c-d79a6000aa54", "text": "At the heart of this idyllic sanctuary, a young girl named Astrid found her refuge. With fiery red hair that mirrored the hue of autumn leaves and eyes as deep and blue as the Nordic fjords, she was the very embodiment of the wild beauty that surrounded her. Astrid was a child of the meadow, her earliest memories intertwined with the whispers of the wind and the songs of the birds. "} +{"id": "6002257", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "beautiful lady busy with her laptop "} +{"id": "1005874", "video_name": "6c14bb01-6ac7-5e4b-94b0-3edd7a11d257", "text": "The bullet is traveling at a speed of 1,500 feet per second. GIF "} +{"id": "2003245", "video_name": "f0571780-eaf8-5134-9002-fe84a437d642", "text": "TIME magazine cover of alien , sitting on chair , looking cool, iconic, detached but relatable. hyperrealism, photo realistic "} +{"id": "1006321", "video_name": "73b68879-22c3-5679-a167-1c9bbe5e6519", "text": "A rustling sound in the underbrush made Sarah freeze in her tracks. Her heart pounded loudly in her chest as she strained her eyes to pierce the darkness. Shadows danced menacingly around her. "} +{"id": "0004243", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "bunch of candys in a bowl "} +{"id": "6003997", "video_name": "e052a36f-5fe0-5c5f-bd9e-cae41778524d", "text": "monkey and Squirrel in jungle 2d Cartoon "} +{"id": "2005784", "video_name": "4a8b8198-d960-52c1-a3ed-68521ab72194", "text": "A man remembering his school days and school friends "} +{"id": "0003926", "video_name": "45e685e2-45b9-5bad-973b-d52f142f7e7c", "text": "Living in poverty, facing livelihood difficulties and economic pressure, determined to get out of poverty and start a road to entrepreneurship. "} +{"id": "3005806", "video_name": "b8e6c69b-78d4-5ebe-a237-3edc6cae9653", "text": "fish building Atlantis empire in sea "} +{"id": "5001949", "video_name": "8567a249-89cd-5ae1-9415-f399d7f917a9", "text": "samurai holding a katana in the forest ready for battle in 4k black and white dark cinematic style "} +{"id": "8002469", "video_name": "63ecab04-0195-5ac0-b618-675fb50b2080", "text": "yoshi from Mario Bros dances with a toilet "} +{"id": "2006547", "video_name": "54999025-b550-596e-8d29-7a9efdd17f5b", "text": "scene from 1977 Star Wars movie "} +{"id": "2006548", "video_name": "f8a60d1f-0c13-5c0d-8de6-9518996a3c4f", "text": "loopable video of banana falling from heaven in the beam of light to hell in style of anime "} +{"id": "4003575", "video_name": "ad837537-cd76-5134-82c5-e30fe924116a", "text": "two men are singing and everyone else is sitting nearby "} +{"id": "0006959", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "timelapes , recorded from boat Message: 1 Attachment "} +{"id": "7003676", "video_name": "5025c8f7-80cc-5af5-9f71-858ab838b237", "text": "statue of liberty covered in cheeseburgers, awardwinning, cheeseburgers, firework explosions in sky, extremely hyper realistic, smooth, best quality, death star explosion, masterpiece, 8k, cheesy, gooey "} +{"id": "5001918", "video_name": "82341ba6-a0ba-5b2d-8974-3052891778d0", "text": "A cobra plays on the beach "} +{"id": "0003159", "video_name": "38470b0c-adc3-52c5-990a-5a58e8f6f03c", "text": "deer running away from fox, cinematic, 16:9 "} +{"id": "3004286", "video_name": "48710768-24d5-527d-8d32-83c0224064a8", "text": "a real image of an angel flying through Egypt in the 100th century BC "} +{"id": "3006535", "video_name": "d5eeb1d3-b712-5e75-983d-f01b46ed889a", "text": "Time takes my hand and pulls me along I am a child kicking rocks Pulling my jacket on slow and wrong Because I don\u2019t want to leave "} +{"id": "0003374", "video_name": "3c743fb8-6fb2-570b-8571-f1f3075574c3", "text": "A girl walks on the surface of a lake in the moonlight at night among trees and forests "} +{"id": "0003429", "video_name": "3d61a5fa-8dd8-59cd-a392-f0fb8f6f15e6", "text": "give me the image of ai "} +{"id": "0004508", "video_name": "0a445c64-fe0a-5de1-9e87-fbd7398529a5", "text": "Monkey King of the Seven Dragon Balls (manga and anime) "} +{"id": "2004024", "video_name": "99bbb507-1ee8-5abb-a201-05ed91cf80c9", "text": "a woman floating in space, twirling a galaxy between her fingers "} +{"id": "2003006", "video_name": "e2b1d353-5da2-5a18-8f13-3bd54548f875", "text": "A person watering a small plant in one image and a fully blossomed tree in the next, symbolizing the growth achieved through consistent efforts over time. "} +{"id": "3004401", "video_name": "e71b586b-c9a1-5e18-ad82-859549e068db", "text": "a cute welsh corgi sleeping peacefully. Pixar style "} +{"id": "2007063", "video_name": "aaccd207-275a-5458-87d4-01130f0b94be", "text": "a high quality professional photo of a stunning Santa Claus figure surrounded by a beautiful winter snowscape, snowy landscape, Christmas spirit, holiday season, festive vibes, wintery backdrop, realistic, front view, close up, bokeh, magic of Santa, snowy wonderland, holiday decorations, winter wonderland, cozy atmosphere, medium shot, snow falling, snowy trees Message: 1 Attachment "} +{"id": "1004191", "video_name": "4d8006b3-8263-5a8e-a36f-ae8ab0c26cd9", "text": "a 6 year old boy in a pampers, 4k ultra realistic "} +{"id": "2003760", "video_name": "76b819de-688e-5fe2-8d76-bb955d4e4479", "text": "ancient paintings of wooly mammoths on cave walls "} +{"id": "0005491", "video_name": "1bc763a6-2e7f-57d2-916b-71e8184e49bc", "text": "Gizmo marching on a electric storm "} +{"id": "2005268", "video_name": "621f35f9-abf2-515f-b341-028c8fb995eb", "text": "Juice WLRD led on a bed rapping camera panning around the bed cinematic "} +{"id": "1004536", "video_name": "544a9b60-d8f5-5394-ac49-d7d79f7eafa9", "text": "rather than spending money on fireworks and extravagant celebration in Disney style "} +{"id": "2003156", "video_name": "704a77eb-0b39-5132-a968-26b56657b73c", "text": "father Protester and demonstrator with a girly child on his shoulders in the evening. They are cheering for an excellent speaker in tel aviv. All protesters hold flags of the State of Israel. "} +{"id": "2003832", "video_name": "a1a8aae3-b124-58cf-bbbe-9f8754c6d588", "text": "A scene in which a rabbit shows its greatness against another animal. "} +{"id": "3005669", "video_name": "84106cba-860f-5b8c-902b-81de4b765547", "text": "face of terror dementia thriller cinematic sharp film "} +{"id": "8003076", "video_name": "01f075be-111d-5e1d-b381-1a19095af5e3", "text": "Picture with red background and a gold boat. The boat is a traditional wooden rowboat with a curved bow and stern. Inside the boat, two muscular human arms are armwrestling. "} +{"id": "2004280", "video_name": "5c9f7ea9-54eb-59ad-aa74-31ef7a0901ba", "text": "Generate an image of crafted paper sheets laid out to dry under the magical sunlight. Animated sunbeams should add enchantment to the scene. "} +{"id": "0003612", "video_name": "406d399f-64aa-5bde-a036-6831e598b15d", "text": "a big storms of fire and angels. "} +{"id": "2005669", "video_name": "d1d3b232-13d7-57d9-a445-c3b9f578ad65", "text": "cinematic view of Abraham Lincoln writing in candle light "} +{"id": "2003167", "video_name": "0ca1b947-bea4-5f3c-a69d-e66c0f005531", "text": "A cowboy from the west walked up to the border town with a gun. "} +{"id": "3006852", "video_name": "0ea06da2-7307-591a-b309-6d7566035c0b", "text": "A man has a field behind him. "} +{"id": "3006213", "video_name": "da528e97-59d4-5984-9f28-48a1e9aaf905", "text": "virat kohli riding a horse as a cowboy "} +{"id": "7002339", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "a boy running in the village, people wathing in the background, animation art style "} +{"id": "3004478", "video_name": "6a7860bc-bd55-561f-9f51-138c393128b5", "text": "a elephant walking into the screen "} +{"id": "6002914", "video_name": "f186c171-a8be-501f-baa0-aae2ce95273b", "text": "donut spaceships in a laser canon battle in space "} +{"id": "2005964", "video_name": "e001f570-3d8d-5cb1-afd9-e30c7ae64c30", "text": "Eli, our main character that lives in an cozy farming village casually finds an old family diary in the attic, flipping through the pages. "} +{"id": "3004496", "video_name": "65763357-d2da-53fe-bab8-43ab0777f235", "text": "the quantum realm visualised as outer space "} +{"id": "2007527", "video_name": "f9d308ff-f7d3-5615-b3ff-52be9a998bf4", "text": "Bugatti rides through the desert in a storm "} +{"id": "7003464", "video_name": "8567a249-89cd-5ae1-9415-f399d7f917a9", "text": "samurai holding a katana in the forest ready for battle in 4k black and white dark cinematic style "} +{"id": "8003693", "video_name": "3b9ee02d-122b-5aab-bf55-b42b8ee4d96b", "text": "Diwali, also known as Deepavali, holds deep cultural and historical significance in India. "} +{"id": "1003827", "video_name": "46b46717-f64f-5bd5-b998-7c0343f4232e", "text": "travel in time in new york "} +{"id": "3004197", "video_name": "c6829744-b53a-5def-ba7e-12d1107f902b", "text": "frog doomer is doomed jazz noir 1990s and monkeyc "} +{"id": "1005131", "video_name": "5e95332e-b93c-5840-83b7-9348fb64d1ba", "text": "young sword master fighting with snake, handsome man, front of devil tree, Dense forest, deep forest, fantasy, unreal render, disney style "} +{"id": "1006757", "video_name": "7bb4bc43-6296-5815-8dd8-91505c2dae7a", "text": "A stunning woman with her back to the camera, reading at home. Even the household cat enjoys keeping her company, reading together. "} +{"id": "7003039", "video_name": "f96efee8-ccf2-5088-977a-59aec4994213", "text": "Moonlight filters through shattered windows, illuminating empty classrooms. Wisps of ethereal fog snake around desks, and ghostly whispers echo through the still air. Moonbeams create a surreal ambiance, intensifying the haunting emptiness "} +{"id": "3004582", "video_name": "d70bfc3d-cae1-5ab5-9b74-bf8ae9aa2f9d", "text": "The magical realm of Everwood, featuring the reunited couple living joyfully together "} +{"id": "0005286", "video_name": "17e3ab20-8579-51cd-8275-b50606e0ea05", "text": "video about making money tik tok form a guy talking and giving financial tips "} +{"id": "4004940", "video_name": "b9092fa4-9b80-5d2f-812d-9a81c2e52170", "text": "a hot sultry evening takes a turn for the worst, 1940s German expressionism, grainy , camera 4 "} +{"id": "0006722", "video_name": "31bc8bf5-6f91-541d-95ec-0c8aa2697f24", "text": "The boy tries again, and this time, he takes flight. "} +{"id": "1005878", "video_name": "6c23e7da-917e-511a-9d47-0adc99f2dde8", "text": "commercial shot for blood mayo jar "} +{"id": "6003423", "video_name": "3d6b1334-774f-5388-9869-f35a83c484e9", "text": "Sequence of news headlines showing advancements in AI technology. "} +{"id": "0004011", "video_name": "018b3226-2c7f-598f-baed-78c12216df94", "text": "1985 video, akitchen blender commercial, with logo "} +{"id": "0005598", "video_name": "1dbfbc4c-4e6e-5066-90ad-c7dfb63884d4", "text": "an eerie scene of an indian girl shadow playing bass over a cinematographic stage "} +{"id": "0005075", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "A young artist struggling to find their creative inspiration in a bustling city, feeling lost and disconnected from their passion for art. "} +{"id": "6003050", "video_name": "fb47d48d-cac0-5ae6-ab3d-0b49d6378d69", "text": "main topic many firework l\u2019aster firework is : 2024\nwith background of snow falling "} +{"id": "3006331", "video_name": "f552b293-47d3-5aaa-b272-dcfec9b97c5f", "text": "sailing through axioms, neurons and dentrites "} +{"id": "3005573", "video_name": "5856d6f9-7a7a-568c-939f-57885d9d06d8", "text": "A boy on top of a T. rex "} +{"id": "4002952", "video_name": "f24f2415-a0aa-570a-b9ce-cd53df9d9f5c", "text": "They promised to love each other as deeply as the love that had inspired the creation of the magnificent monument. 8k ultra hd. pixal style realistic. "} +{"id": "7004326", "video_name": "1ebb0f06-d58b-5ced-9dd6-70cb16974a0e", "text": "ghost faces screaming in the darkness, in a germanic expressionism film. "} +{"id": "1005585", "video_name": "66c72473-1cf9-59d0-956c-2c8e3541eff9", "text": "a futuristic cyberpunk female fitness influencer model "} +{"id": "4004965", "video_name": "8935301a-1f87-5295-aed0-660691dd871c", "text": ": A beautiful woman in her early 20s. she has long, loosely waved red hair in a casual style, with a few strands falling naturally over her forehead. her green eyes stand out on her elegant face \u2013 high cheekbones, a dusting of freckles over her nose, thick groomed eyebrows, and a rounded smooth jawline. Message: 1 Attachment "} +{"id": "2005667", "video_name": "a838d3c9-9c10-5d48-b735-28de5ebbca5d", "text": "Please create an image with the following message: \u2018Hello everyone! I\u2019m a talking image "} +{"id": "6002013", "video_name": "c86f43a4-e153-578e-a626-01b10b1cc7f0", "text": "the legendary golden potato among the clouds, against the background of the sun, 8k ultra quality "} +{"id": "6004356", "video_name": "9b4efb6c-cd52-5740-8cd8-83e8fc3a1a24", "text": "The rhino takes a final leisurely sip from the stream before slowly turning to face the camera. The shot focuses on its eye \u2013 a reflection of the serene landscape and the purity of the stream. fast in 3 seconds only "} +{"id": "6002385", "video_name": "599c0022-e265-54ad-b141-a7f06fe87865", "text": "beam clash with Godzilla and King Ghidorah 2019 movie scene "} +{"id": "6004430", "video_name": "5cce958e-0524-51e1-bfcb-c08b3232f7f6", "text": "ocean waves move, dont move minion "} +{"id": "7003547", "video_name": "fe7c5f12-823c-5d61-9be8-71767658e9ae", "text": "A construction worker laying down on a plastic back and neck stretcher "} +{"id": "5001450", "video_name": "f77720dd-31a1-5c88-b77d-a2c3b6f39fa7", "text": "upclose of cowboy in the wild west "} +{"id": "6004188", "video_name": "83265464-84b3-5ce8-ba2a-060cb0c6a551", "text": "a woman driving in a car, wearing sunglasses, hair blowing out the window, smiling and happy "} +{"id": "2003441", "video_name": "191c31b0-79c6-542c-a483-9ebf9185c9f7", "text": "ai robot explodes in cyber futuristic city "} +{"id": "8002748", "video_name": "c4af2575-e015-56a1-ba80-1917bf972f4b", "text": "But in 150 AD, Greek writer Antonius Diogenes published The Wonders Beyond Thule. "} +{"id": "2004880", "video_name": "c20934a4-40f7-5ed0-afa1-d8f1bb027358", "text": "Little bear looks surprised as the moon gets smaller. "} +{"id": "7004112", "video_name": "997669b2-ba76-5861-a95b-725ddc1f31b1", "text": "the rise of sun from the the West , slow motion "} +{"id": "1006471", "video_name": "76727735-5c08-5e65-9d60-25ab9a9c613a", "text": "chimpanzee fight with iron man in London City cinematic looking scene "} +{"id": "6004399", "video_name": "378500c8-5851-57bc-9b59-dcb991ec6442", "text": "a Chinese girl aged of 20 dancing in Spring outside "} +{"id": "2006318", "video_name": "ba2d3459-822c-58e4-97c6-123b7c86dc2b", "text": "Cut to a tense scene in a futuristic laboratory, where scientists in lab coats are surrounded by advanced machinery. A humanoid robot, its metallic frame glinting, helps with intricate experiments. "} +{"id": "3004051", "video_name": "a89288da-7104-5e8c-bb6c-db47709118ce", "text": "Overconfidence Bias: Overestimating our abilities or knowledge in a particular domain. "} +{"id": "4002012", "video_name": "41779e43-6588-566f-bef5-436d51aa642b", "text": "a dragen fly on the sky "} +{"id": "0003496", "video_name": "3e8be8c0-3943-5383-8b2f-a6de6ce46b69", "text": "red haired girl with freckles entering a hospital at night in a desert, extremely real "} +{"id": "4002392", "video_name": "ca2c27f8-dd08-597e-bd8b-f591002de5d1", "text": "Dragon in front of a lucid dream.cinematic style with vfx "} +{"id": "2005485", "video_name": "a29f1eb4-bd11-5398-87d9-b39164abd0bf", "text": "mazda Miata rf driving along coast, sunset, done footage, majestic lighting, dramatic, epic, 4k "} +{"id": "0003910", "video_name": "45963451-2119-5fc7-a029-d1cb510ebcc1", "text": "An AI Robot looking at the prices on the screen, realistic image, high;y detail, "} +{"id": "8001138", "video_name": "3d2d4276-2538-5c15-85e3-6a0055fc55ee", "text": "1 million dollars stacked on wooden table surreal 90\u2019s "} +{"id": "6002985", "video_name": "5a2d406b-0f62-55dc-872e-870c7d60917a", "text": "giant mushroom on top of mountain, trippy, bright colours, hyper realistic, aerial view, motion 2 "} +{"id": "7004107", "video_name": "ca67ddf5-3e77-56c4-91fc-d745b79db552", "text": "anapa city in Russia. Loop animation. video: 3 frame in second. "} +{"id": "7003983", "video_name": "bddbaada-bf99-5d08-93cf-edd2688326d6", "text": "a girl who just became a university student, standing infront of the school "} +{"id": "0004108", "video_name": "0350c8e2-e20d-5bb0-b388-038f750c7fbb", "text": "the Sun suddenly blinks out of existence "} +{"id": "2005850", "video_name": "73b13b87-1755-58a9-a6ff-f51314a7a910", "text": "a huge dragon made of water rises swirling from a lake in front of Chinese boat "} +{"id": "2005343", "video_name": "d88ad768-9980-5635-a7a3-61002aa4ecd9", "text": "a man sitting on his room couch busy in watching videos on phone. "} +{"id": "1005002", "video_name": "5c71b8fa-5d9d-563d-8412-1b7ebb9af626", "text": "Zuko from the anime Avatar Aang season 3 "} +{"id": "0005261", "video_name": "1779f47d-9674-5e8b-8f98-2e05b370d411", "text": "two martial artists in combat 4k moonlit evening "} +{"id": "3005949", "video_name": "5640553b-30c7-519e-928f-b997eddd00d3", "text": "her hair swaying, a determined woman "} +{"id": "7003411", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "two airplanes colliding the twin towers resulting into a huge blast in the building, funny, scary "} +{"id": "3003858", "video_name": "0ad97a96-6c8e-5281-aadc-9e5fa5281272", "text": "create a human hand where all the veins and nerves are clearly visible "} +{"id": "3005375", "video_name": "f228f580-21c2-5084-a9fa-b8a6cde49015", "text": "Keanu Reeves walks in front of white truck well detailed captured by phantom x "} +{"id": "8002872", "video_name": "8147884a-cf8f-5ee1-9f43-8653ddb71ba7", "text": "a running fuzzy pink skeletor, painted by Mike Winkelmann, running thru fluffy clouds, background is windy, stormy, pink, cotton candy, dreamy soft, rainbow, as seen from an extreme distance, fast, action packed cinematic "} +{"id": "3003104", "video_name": "de814016-021f-5557-94d7-10020c0099a0", "text": "Stunning images of white sand beaches merging with crystal clear waters "} +{"id": "8001041", "video_name": "a2fd2410-ba2c-51a5-8491-66c3606b462b", "text": "a blue eye cat running and jumping "} +{"id": "2005434", "video_name": "6d13c46d-39a6-58ce-bcd2-48399143c4ec", "text": "Prepare a cartoon picture containing: a bowl of rice, 2 eggs, a portion of spring onions, salt, and cooking oil. "} +{"id": "1006043", "video_name": "6f027ab3-5145-5a59-aa18-489ff261d7e1", "text": "A haunting silhouette of a solitary figure on a desolate, moonlit road "} +{"id": "2005155", "video_name": "b730d8a8-a277-5400-8cc6-6bfcb2681e0e", "text": "He also used the navy in the Crusade to serve it, and launched the idea of a trade war against Muslim countries, to give the hundred sea power. A banner for the Arabs that dates back to the era of Caliph Muawiyah bin Abi Sufyan, in addition to the forces participating in the campaign, and how to organize the Crusades and lead them. Under the name of the warrior king and the provision of order. Obedience and justice in the Crusader camp. He also financed the campaign and the efforts he made to achieve what he planned. "} +{"id": "0005294", "video_name": "17facaaf-72cc-5166-860e-2c4ef2829e5e", "text": "Chinese Year of the Dragon Fair "} +{"id": "7004934", "video_name": "978599ad-79e1-5a50-a956-71fcf7f902b4", "text": "A man walks along the beach at sunset, enjoying the calming waves and warm colors of the setting sun. Dressed casually, he seems lost in thought, occasionally pausing to take in the beauty of the ocean. The tranquil scene is accentuated by the sound of waves and the soft, sandy shore. "} +{"id": "7004498", "video_name": "2e7e58d4-ac76-57d4-b461-10752d034fa3", "text": "intro for history fact youtube short "} +{"id": "7002391", "video_name": "03ec3d93-01aa-548a-9c48-7c01dbc2a336", "text": "a frog wearing a crown sitting on a rock speaking "} +{"id": "1003826", "video_name": "46af6585-1ddd-5054-af76-9778246bfc3f", "text": "realistic video of a construction site for a highrise building under construction, with 1 tower crane that is moving a box onto the live deck of construction "} +{"id": "5001566", "video_name": "7a7e5666-da6a-5080-8712-ab196b7f0a08", "text": "Two men are riding on a bus and discussing something "} +{"id": "4004878", "video_name": "ac7a6872-8417-5f84-a195-678397558928", "text": "the man catch in hammer and going the forest Message: 1 Attachment "} +{"id": "8001042", "video_name": "94600a87-3a39-5100-b906-740ff63cf77c", "text": "This golden autumn, squirrels are playing in the forest "} +{"id": "3006112", "video_name": "2eb4977a-3563-5df6-992a-7654855692e8", "text": "Open with a picturesque view of the quaint village nestled amidst rolling hills and blooming meadows. "} +{"id": "0004693", "video_name": "0d68e07e-5747-5b70-a2b8-190b71a29c17", "text": "Jake had always been fascinated by the ocean and its mysteries. He spent his days exploring the shores, collecting seashells, and learning about the creatures that inhabited the deep blue sea. "} +{"id": "5001558", "video_name": "a88c8129-8bc5-585d-8fc4-53b02c1bf8cf", "text": "2 hamburgers fighting. make 10 seconds long "} +{"id": "4004434", "video_name": "b9cf3596-5db6-54bf-a0e9-9999c72c9aa4", "text": "american dream chickens by norman rockwell, moving around the cover of a magazine "} +{"id": "1006536", "video_name": "77c53159-e6c7-5e55-b5b7-d85116a07d13", "text": "a Maria Prymachenko picture in her distinctive style, the creature that is painted is doing sbutle idle movements "} +{"id": "7003229", "video_name": "aeadbfab-3f10-5da5-87bd-7d39b61ce693", "text": "the antient city of babylon give a far view of satellite walls around city,4k,hyperrealistic "} +{"id": "6002436", "video_name": "3fe3cc28-8ad4-5b42-983b-0337f720761e", "text": "elon musk walking in the desert in sun glasses "} +{"id": "6002056", "video_name": "de47bc3a-c086-5e4d-968d-b71ae738863a", "text": "Have the children draw a picture and let the reflection of this picture create a portrait of Ataturk. "} +{"id": "0003348", "video_name": "3bf736f5-482d-5321-b316-5276b9d0bfcd", "text": "discovering new spells and unlocking ancient secrets. "} +{"id": "4003031", "video_name": "b549d375-994d-5071-b1f5-904eff950c9b", "text": "snails climbing a glass cup with a brown liquid inside this cup "} +{"id": "2005160", "video_name": "bb034c7d-2c8c-5f53-a86c-a581c10c3370", "text": "Pastel Coffee Clipart, Watercolor Cafe Clipart,Coffee Cup,Iced Coffee, Latte, Espresso, WHITE BACKGROUND "} +{"id": "4002437", "video_name": "bac231b6-71d7-5239-91e0-e28abf84fd97", "text": "A cat was typing on a computer keyboard, a mouse suddenly appeared on the computer screen, the cat ran away in panic. "} +{"id": "4003378", "video_name": "2ead2923-6047-55a8-ba5b-ee96bd1d352f", "text": "a bowl of strange and very odd spaghetti, cinematic "} +{"id": "1005430", "video_name": "63c22233-8717-525c-86b3-18518e9e36a3", "text": "busy space port in a large asteroid base with ships moving in and out "} +{"id": "2003855", "video_name": "bf43f87d-0932-59a6-8cce-a94abe98d676", "text": "a cat is on a dragon, and the dragon is flying in the sky,chinese dragon "} +{"id": "7002410", "video_name": "3f4099ec-89cb-5b04-aaf1-64eeed173b37", "text": "silver surfer in the style of balenciaga "} +{"id": "4003364", "video_name": "aeaae70b-5442-50a9-b252-6f97badf1c0c", "text": "Steam locomotive passing through the forest "} +{"id": "4004804", "video_name": "77ffc081-7325-509a-b9ca-ace5f2902e91", "text": "in 4k resolution confucious lecturing people "} +{"id": "2004741", "video_name": "dad98c3e-5883-5dc7-9ecd-853292913a17", "text": "Narrator: In a small town on the outskirts of civilization, life went on as usual. "} +{"id": "2003502", "video_name": "d47553ce-fb36-54bd-9ac8-d73e96f429de", "text": "Their story was a testament to the enduring power of love, and they knew they would live their happily ever after until the end of time. "} +{"id": "1006968", "video_name": "7f7a0998-1a91-5c58-9d71-6db46f2d5274", "text": "a Rolex watch is flying in the sky. "} +{"id": "0003653", "video_name": "410e5f15-6d1b-5b8d-89c7-2b33218e3e94", "text": "skeleton sitting in a dark room, nightmare, desaturated colors "} +{"id": "0006923", "video_name": "355f8c24-3171-5598-9ab4-f551bc0752b9", "text": "beautiful woman in lingeriewalking on the beach "} +{"id": "4002129", "video_name": "fc7c5567-7a4b-5371-887b-ad64ce055ad3", "text": "Create indian temple with more people "} +{"id": "7002112", "video_name": "73d5070d-30e2-5b82-9a0a-0bbfd7230512", "text": "image of chandrayaan 3 rover on moon surface, 4k realistic "} +{"id": "0006564", "video_name": "2eb5b6fa-c959-518d-8dc5-f0b6291fab47", "text": "meet of survivors groups, darkness and scared landscape, "} +{"id": "0004574", "video_name": "0b667894-ed46-57cc-8fb5-43e1fe2b174f", "text": "patrick bateman buring superman ,hyper realistic "} +{"id": "1006864", "video_name": "7d4d986c-26e5-577f-9cf7-87eaad4f0725", "text": "A detailed oil painting of an old sea captain, steering his ship through a storm. Saltwater is splashing against his weathered face, determination in his eyes. Twirling malevolent clouds are seen above and stern waves threaten to submerge the ship while seagulls dive and twirl through the chaotic landscape. Thunder and lights embark in the distance, illuminating the scene with an eerie green glow "} +{"id": "4002462", "video_name": "277b10b3-99f7-5c90-8788-dd09d1633abe", "text": "goth starfleet captain of starship on starship bridge goth, motion, movement, futuristic goth "} +{"id": "1005265", "video_name": "60d91b55-116f-5434-84af-40d7337d4d0c", "text": "4k zoom in on a single rain drop, as it land on the pugs head ar 16:9 "} +{"id": "5001712", "video_name": "6bcff352-0763-571a-b83c-ff3c6dc1a3c0", "text": "An ariel view of a Moon base thats on fire "} +{"id": "1005483", "video_name": "64bcde40-e4ff-51d9-871e-028da665344d", "text": "rain of coins in hands full of gold "} +{"id": "8002439", "video_name": "14fa349a-3852-5dba-bfaf-a84c7379f726", "text": "Fast motion, realistic, cinematic, ultra 4K HD, robot offering alms to beggar on sidewalk "} +{"id": "3004989", "video_name": "0eaf10dc-f2e8-580c-8523-531e2cd503ed", "text": "film noir, cinematic, man and woman, dark room, turned back "} +{"id": "0003074", "video_name": "367b618c-63ac-519f-b658-2d54b942a0a5", "text": "a group of people holding signs protesting "} +{"id": "5001847", "video_name": "86d11077-5489-55dc-8f94-84f2e90bb58f", "text": "In deep space, an astronaut in a spacecraft receives a mysterious signal\uff0cMovie texture, 4k "} +{"id": "8001666", "video_name": "de2691aa-f848-52d7-ad83-4c46e5ef7c0b", "text": "Plate of healthy food in a lovely restaurant "} +{"id": "3004050", "video_name": "5545fd97-bf7f-5077-8296-8239f4830011", "text": "a cat sleeping on a window on a cold winter storm "} +{"id": "6002699", "video_name": "166f036d-e730-52f5-af7f-976ce25f056a", "text": "In this oasis, there lived a wise old tortoise named Aria, who had made the oasis her home for many years. Aria was revered by all the creatures of the oasis for her wisdom and kindness. She had witnessed the ebb and flow of life in the desert, and her shell bore the marks of countless tales and adventures. "} +{"id": "2003482", "video_name": "52804d01-044d-515a-ac1f-0dd4f5b562de", "text": "We have gone through several periods of loss of cultural relics "} +{"id": "1005639", "video_name": "67abe926-27e3-50fd-8cc3-e49b70423b22", "text": "The process of manufacturing a sheet of steel at factory, realistic "} +{"id": "8002632", "video_name": "83b45ae0-05ed-590d-9614-269f0a44a97d", "text": "Deep into that: darkness peering, long I stood there wondering, fearing, dim light, no light, darkness, blurry, impressionism "} +{"id": "3005888", "video_name": "e325f220-5f04-5b20-843b-baa7b97536bc", "text": "The Enchanted Acorn Inside the acorn, squirrel discovered a magical world filled with talking animals and glowing plants. He met a wise old owl named Oliver who told him about the Forest of Wonders and its enchanted secrets. "} +{"id": "8001345", "video_name": "eb1361c6-387f-5298-9947-9283a254ab2f", "text": "future soldier infront of nuclear mushroom cloud, in a neighborhood. ar 16:9 "} +{"id": "5001664", "video_name": "af108bfa-251a-5c3a-aeae-225a726b282a", "text": "Ufo landing on The White House during the night "} +{"id": "6004640", "video_name": "e178a472-5da2-58af-b584-05c1af0f6b2a", "text": "a haunted house in the village "} +{"id": "6003119", "video_name": "10da6a19-d230-5ce2-ab6a-af08572e4a04", "text": "an image of people in medieval Europe playing and dancing "} +{"id": "1004590", "video_name": "5567bf3d-fa25-5a9a-a1f5-7305d2278eb9", "text": "a video of a boy of age around 8 years sitting on a tree reading book who fell down "} +{"id": "0005535", "video_name": "1c6fa44e-1f8a-5b1b-a1e2-57a164bea31d", "text": "Imperial Star Destroyer in space over a stormy planet, cinematic "} +{"id": "4002377", "video_name": "f27c4e7a-69c6-5622-9d84-3506cc9abd46", "text": "the two rabbits stay under the stairs the cats were nuisance there. "} +{"id": "3003685", "video_name": "c86a2a64-c846-5bd9-a1bf-3ce6d59c1d6a", "text": "generate epic security to the official prime minister "} +{"id": "3004927", "video_name": "97247673-3eee-5264-a25b-84c08240d918", "text": "ferris wheel in an abandoned amusement park "} +{"id": "0004579", "video_name": "0b729b4d-4e51-5bf9-a817-cdf763596a00", "text": "A streetfighter character that acts like Blanka "} +{"id": "2003977", "video_name": "fbeb4708-6281-53fb-bb2e-f32971a11f5a", "text": "cinema realistic picture with dark futuristic surroundings. angry man comming towards camera as flames from explosion behind surrounds him. flames flash around head "} +{"id": "2004120", "video_name": "2a2d8999-ffd3-540e-a5c4-e75ae331e045", "text": "sloth eating a plant pot, in a cabin, realistic film "} +{"id": "6003920", "video_name": "1ce5bb05-785b-5db8-a766-42fad065e66c", "text": "Hieronymus Bosch creating surreal and complex scenes using 3D modeling software "} +{"id": "1005516", "video_name": "658cbf97-faad-5604-8cb4-4e77edbf4142", "text": "an arthouse horror movie from the 1970s featuring a werewolf wandering around a deserted farm "} +{"id": "5001446", "video_name": "1d6ba2e0-8f56-579d-a6bb-380b78126fc2", "text": "high quality scene of Ancient regalia inthe future "} +{"id": "0006957", "video_name": "35dc2c7e-85d8-5bae-9d33-4b028b381d20", "text": "ancient egypt construction of the pyramid, sunset lighting, lens flares, Cinematic camera motion, clouds running "} +{"id": "1004941", "video_name": "5b6520cf-f1b0-5ac6-822a-0a84edda0e31", "text": "A cute red and white cat, slightly chubby, is exercising at the gym. "} +{"id": "4004335", "video_name": "66fa101c-3020-5b4d-8f6f-ce8ea74ae004", "text": "use this same style show a close up of the dogs face. In the reflection of his eyes we see a bear. "} +{"id": "0005881", "video_name": "22c2de47-c9c0-5389-aa08-b32cc55f5b45", "text": "city of mumbai and seaface view Message: 1 Attachment "} +{"id": "3003404", "video_name": "efb12771-058c-59b4-b712-19c2c44c27fb", "text": "A quiet night in the town. The tranquility is shattered by the discovery of a body in an alley, witnessed by Sarah "} +{"id": "3003525", "video_name": "d8ab044a-deb6-5b71-80a5-0cd80602b8e4", "text": "rain and lightning mixed with sunshine and falling leaves "} +{"id": "2006534", "video_name": "4e12683a-5134-5ac2-b315-bd0fa309847e", "text": "A butterfly body with an umbrella in her hand under Rain in new York City "} +{"id": "2005177", "video_name": "67c95bb4-63ab-5070-b7f1-dfdf08aeeab2", "text": "Two people were playing tennis, and an eagle flew down and landed on the net "} +{"id": "7002672", "video_name": "5f6183c2-97d6-5d3c-8dd7-dc20bd9a2474", "text": "a video of an orange fighting crime super hd "} +{"id": "6003509", "video_name": "07894abf-452f-5dea-adae-fbb2758557b1", "text": "a spider man swim in the sea with a shark "} +{"id": "8002232", "video_name": "ab2a2d82-3722-5462-a064-a39df00c2754", "text": "Tom hardy is driving an ambulance "} +{"id": "2006092", "video_name": "6a8098ee-3cff-5356-9c6f-a95d50c7a3db", "text": "blue sound waves on black background, in the style of organic shapes and curved lines, light maroon and cyan Message: 1 Attachment "} +{"id": "3004144", "video_name": "cdbc5618-6fa3-5273-9fae-1fb048ef12f8", "text": "people and animals frollicking, bubbles moving "} +{"id": "7002382", "video_name": "cd13cef5-2eb2-5803-bb15-7cfccf442e97", "text": "Carl Johnson from Grand Theft Auto San Andreas videp game playing piano "} +{"id": "7003642", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "Kanye West eating an ice lolly in a train station "} +{"id": "8002477", "video_name": "604ee0c6-c197-5c15-83f4-2b396bc5d366", "text": "Muscular sweaty man running waving Turkish flag in his hand in rainy weather at night on the street "} +{"id": "6002501", "video_name": "c4c82b6e-ff63-51e6-b12d-e5fc6a607d29", "text": "double headed eagle flying high and proud "} +{"id": "7004873", "video_name": "017ef54e-2642-587f-952d-9ba090fe14f5", "text": "vibrant and brilliant display of an anime cast for alice in wonderland "} +{"id": "4002629", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "a logo of a super hero, appearing in a dark cinematic light "} +{"id": "2005670", "video_name": "e09fd25f-c019-596a-bfdd-2f16ca84d754", "text": "Fire is burning, the sky is becoming red Message: 1 Attachment "} +{"id": "1005797", "video_name": "6ab13f38-6449-58ff-aae6-80925d6c46b1", "text": "adult and chilren playing trampoline in the backyard "} +{"id": "7004215", "video_name": "c5836434-8679-5f8e-9a50-8c99e724aecb", "text": "ironman with a thors hammer pushing wanda "} +{"id": "8003320", "video_name": "261fd68c-2745-5834-a116-f63689548cd8", "text": "a chinese woman with a front face and smile, walking in the rain "} +{"id": "8003361", "video_name": "2217b345-8837-5f3b-a99e-dcfe06dee041", "text": "hyper realistic 8k a small boy carries a huge glass tank filled with pink jelly on his back. Bubbles rise from the tank into the air. Side on cinematic camera. Location: a sunny summer day in a green field "} +{"id": "4002086", "video_name": "1713131d-fb53-51b2-9d11-96aaecdc5853", "text": "Kunming is full of rivers and Bridges "} +{"id": "7004909", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "banksy spray painting a stencil mural on a farm building "} +{"id": "0006537", "video_name": "2e594fc0-dd73-5157-b1af-1b4d1c44a2d3", "text": "people walking beside the wall with watchtowers, barb wires, depressing atmosphere, 1960, camera moving up, cinematic, ultra high resolution "} +{"id": "3006337", "video_name": "38c13f2a-1840-599b-aaf1-7e5c4716aa89", "text": "Leo and the Lion Guard fight bravely to defend their kingdom, but they are outnumbered and outmatched. "} +{"id": "7003337", "video_name": "6d2e3335-0537-531f-b903-3c10de510d7c", "text": "a man in a top hat standing in a door way with a knife "} +{"id": "7002919", "video_name": "aaf003f7-f0c2-5df2-9ab5-a029e5642436", "text": "The Blue Star Galaxy. The brightest blue star in the galaxy powers a unique and wonderful universe full of planets, moons, cities, hover crfts, space ships and sexy female cosmonauts "} +{"id": "0003214", "video_name": "3961cf79-4d0d-5fb5-a2f1-0fb177c1f9bd", "text": "movie cwna soldiers dying from gunshot "} +{"id": "2007533", "video_name": "664aedb1-8716-5dfb-b041-b86dbebf37bf", "text": "A photorealistic depiction of the human dream, and our hopes and aspirations for the future "} +{"id": "4002944", "video_name": "74821066-a901-50eb-bd51-6859b75a920e", "text": "create 5 prompt about a girl in her room on a rainy afternoon in anime art "} +{"id": "1005956", "video_name": "6d5a3afb-31d3-5669-a09e-b4d31eaea4fa", "text": "a old man and his young version together in one frame "} +{"id": "6002341", "video_name": "f85f2210-2569-585e-bbf7-2dbe687675f9", "text": "VHS 90s TV advertisement for a company called hold on to your nuts that specialises in nuts "} +{"id": "6004127", "video_name": "15efe5b3-f30f-51f3-9902-15eba535b52b", "text": "Between a high mountain range, there is a river where a poet wearing a straw hat is drinking alcohol "} +{"id": "2003409", "video_name": "8f9baee3-0b87-59f8-a69d-488120799804", "text": "golden hair lady called Sara looking hurt and betrayed, turning away from the camera, hyper relistic "} +{"id": "0004713", "video_name": "0dd50283-4616-58b1-873d-3c401f87e7b4", "text": "Animated logo in the name of Samih "} +{"id": "2006389", "video_name": "40665bb7-b470-558e-9fd5-5ffc9569e93e", "text": "killer tomatoes from outer space , sixties suburbs, faded 16mm film, old scratched film, faded colors, found footage, sixties home video "} +{"id": "2007653", "video_name": "ccccc79f-1a70-5a45-b1cb-c0145723cc25", "text": "create a signatur of name revathi "} +{"id": "3005471", "video_name": "856d510c-fab8-5aaa-934c-6925d132348b", "text": "a racing between a horses and a heavily crowd are enjoying on it "} +{"id": "7003926", "video_name": "26a6171b-906a-53a3-8ef8-f230be351492", "text": "Two people in love watching the sunset while embracing "} +{"id": "6004507", "video_name": "0442ec84-2eda-592f-8cee-52a3b64c4c4d", "text": "Moonlight shines on a serene medieval village nestled amidst the green rice paddies of ancient China. "} +{"id": "3004506", "video_name": "8ac8a7cb-e1ce-501c-84a2-ffc09e636a8c", "text": "Your movie Your movie a space ship getting into the sun as interstellar as black hole in 3d octane render, best quality, best resolutio, hdr, 4k "} +{"id": "7002173", "video_name": "a781b862-6ae0-5460-9e49-222c709078a9", "text": "a circuit board with a solder iron Message: make things (Font: MODERN) "} +{"id": "6002137", "video_name": "1ce66c89-0bb1-5965-b264-fed4f756b360", "text": "Big colored bowling balls rolling on a river lake in mountains. Aerial view. Camera flying over the lake. "} +{"id": "5001388", "video_name": "3ad1d7b4-09b6-516a-967a-559b6785967b", "text": "a group of adventurers walking in a forest "} +{"id": "5001240", "video_name": "bde8c8e0-304c-5ef9-8710-782bd165a20b", "text": "Cartoon ilustration of a baby monkey, face of tenderness, crying a lot and moving its arms in the forest, on the tree, motion 4 "} +{"id": "2005621", "video_name": "2858bf38-087f-515d-8068-116f12a4eb28", "text": "blue ferret with four eyes orbiting saturn "} +{"id": "6003559", "video_name": "77c833f5-d5cb-59b2-b766-eb6c6a258f94", "text": "The river is vast and mighty, the two banks are green mountains, and the sky is high and the clouds are light. The poet recites the poem, and the small boat moves slowly Message: create (Font: MODERN) "} +{"id": "6002923", "video_name": "7c403fb3-35d1-5517-8e38-eda4e72046de", "text": "A bunch of people, chemical suits, nuclear wastewater "} +{"id": "2004172", "video_name": "075bdc08-1ec1-5a6a-aaab-d4cb6db03b6e", "text": "picture,santa sitting on a truck full loading with tires "} +{"id": "8003939", "video_name": "2feabed8-8a33-56d6-a420-bd4afb887dfe", "text": "90\u2019s anime girl with dark skin in a gothic castle "} +{"id": "3004370", "video_name": "97ac8ee1-1572-53ff-af11-62fc1f584973", "text": "Explore the mysterious Black Hole Gardens and describe the captivating interplay of light and time within this cosmic spectacle. "} +{"id": "0005041", "video_name": "139f05e5-1ff3-525e-93b6-3a4f7c4ddacd", "text": "A map with a dotted line showing the journey from the forest to the city. "} +{"id": "6003116", "video_name": "81f61599-d401-5b68-9fb5-5ad52bebb09c", "text": "perfect pink eyes, fantastic face, Indian Actress Mumtaz in her 20s, beautiful look, detailed elegant printed red saree, updo elegant hair, blurred gray tones background, ultra focus, face ilumined, face detailed, 8k resolution, painted, dry brush, brush strokes, razumov style and garmash style, by Tokaito "} +{"id": "3006078", "video_name": "e9232205-d1f4-5ea1-bf26-0f67448ed85b", "text": "The oak tree, now in full bloom, with the letter and rose beneath it "} +{"id": "6004816", "video_name": "4ddfdb8b-b4f7-59fb-9578-753dbb6269ce", "text": "car crash, lamp post, fire, still backround, realistic movement, fire movement, grim reaper in background "} +{"id": "5001335", "video_name": "77546467-b761-571f-8605-65eee2280ebf", "text": "flying over the surface of venus "} +{"id": "1003195", "video_name": "3ac02b68-0883-51ca-9a4e-d38860af1347", "text": "Show a character experiencing mood swings, such as going from happy to sad without an apparent reason. "} +{"id": "2007900", "video_name": "4c71e7e5-68f0-5853-b78f-7a7468ee1242", "text": "minimal surface mathematical grid in tron lighting warping in space "} +{"id": "5001694", "video_name": "bc6d773d-ec5b-588d-b5d5-a82f8c5e1d86", "text": "a chihuahua that is playing a guitar in front of 1000000 fans on an arena "} +{"id": "8001733", "video_name": "cd9abd47-1e01-53a5-8fe7-85b21d49aa45", "text": "4K, 16:9, cinematic to realistic TEKkEN Anime style theme. Indingous American Man in photo standing up out of brown leather recliner. Then opening the front door stepping out on to the porch of his Egyptian style mansion over looking an exotic futuristic candy panted sports car parked in a tear shaped double lane driveway that leads out to a gate with a center median with exotic fruit trees on a partly cloudy summer day. "} +{"id": "7003873", "video_name": "dc84da98-137c-54c5-a3d9-848699c326d9", "text": "1960s footage of surrealist fantasy world "} +{"id": "2007449", "video_name": "a6887289-e915-57a0-9a9e-cc2ffe9b67c8", "text": "woman begging a man not to hurt her "} +{"id": "6004479", "video_name": "58e425c2-8c30-573c-9dec-a92f17d0b567", "text": "A cartoon of a army officer dissapear into air , High quality "} +{"id": "1004656", "video_name": "56a3e93a-2f60-5f95-bac8-33258871430a", "text": "High resolution, refer to example oscar meyer cold cuts, create cold cuts giving them a pale green color, show them on the surface of a stainless steel shelf in a industrial looking prison kitchen "} +{"id": "2007142", "video_name": "83959051-7f30-5c15-a780-1ba725f97158", "text": "A king and his wise counselor having a discussion.9:16 "} +{"id": "7004777", "video_name": "27007d35-1cb3-5f28-bc02-9c821365e887", "text": "Thor Having a Coffe in New York City "} +{"id": "6002789", "video_name": "a792cc43-c730-5ae8-a2e3-90b632d4eebb", "text": "darth vader umasks himself but his real face is jonathan davis from Korn "} +{"id": "3003455", "video_name": "92c838dd-9782-52c2-862a-11f0defccb15", "text": "A dark room with a volumetric light beam from the ceiling and a suspended glass sphere that focuses the light like a magnifying glass "} +{"id": "6004482", "video_name": "06f97d02-c1d3-5001-86e6-aaeee5b9a62e", "text": "Chongqing city in a giant glass of bear "} +{"id": "2007474", "video_name": "4e0ec3e3-7ffa-5227-8a51-b0e8a3aaffe2", "text": "A young adventurer arriving in a village "} +{"id": "5001757", "video_name": "12e126ec-5d95-5452-abe4-cb95ee5dadc5", "text": "Korean beat boxers vs Robot Radio Mech. Cyberpunk, scifi, action. "} +{"id": "4004474", "video_name": "fa44c1de-c63c-55ea-b8e1-70708050c46f", "text": "anime poodle attacks anime rottweiler dog in enormous dojo "} +{"id": "3003647", "video_name": "d549a29a-2741-5e71-bf90-f69c12103a7c", "text": "man dancing at a cottage with two dogs "} +{"id": "8002518", "video_name": "d00a0c11-d7e0-53a3-9958-771571a90120", "text": "the matrix code Message: merk\nMedia (Font: MODERN) "} +{"id": "7004761", "video_name": "7f1bf44a-1fcf-51a6-b310-4ab7c8d9d1c9", "text": "a futuristic Smirnoff commercial with an Alien "} +{"id": "6002060", "video_name": "69833e81-baf3-5cf8-9546-9c5380a1fb41", "text": "image of a drone with the palestinian flag attached to it, flying in the air in a sunset "} +{"id": "7002095", "video_name": "8e296b89-c34d-5779-b789-2752c57359f9", "text": "tribe dancing in front of soundsystem "} +{"id": "3006000", "video_name": "150373e6-f1bd-5091-8960-cd760900a9d1", "text": "happy fish sqimming in the sea "} +{"id": "2005393", "video_name": "0c53a5ba-9b02-5d07-b92d-bc1c6d2fd6fd", "text": "An Apple gift card spins to attract attention "} +{"id": "6003155", "video_name": "91e12ad4-6517-5e29-a39c-cf396174492d", "text": "1000 of cats roaming in a city, night shot , dark back, ancient china "} +{"id": "2007948", "video_name": "f8e38fd9-1dc7-5a26-8c15-a65f6dbb649d", "text": "Dickensian Santa Claus portrait close up, 16.9 hi res painting "} +{"id": "1006888", "video_name": "7de9204c-6ef0-58fa-b58c-b46243f36852", "text": "foot prints on the golden brick road, with sunlight glinting off the bricks, mid day, warm "} +{"id": "3003874", "video_name": "c218d3b4-7671-5425-afe4-f81771ce7be5", "text": "a druid in the forest cinematic "} +{"id": "5001906", "video_name": "1b74ad07-0a8c-544d-9226-6883f6f01c14", "text": "sleepy girl, looking out window, sun coming up movement "} +{"id": "3004384", "video_name": "1f3bde39-7cef-59e8-9843-bcb84d17ea7c", "text": "Elon musk falling from the skies "} +{"id": "0005763", "video_name": "20d89234-041b-5647-9281-9810d2a85307", "text": "create a video about 10 seconds about dog "} +{"id": "8002883", "video_name": "a91c17dc-e8c8-5f6c-8565-9ececec55ecb", "text": "16:9 the soldier died and flew to heaven in the form of an angel "} +{"id": "1004578", "video_name": "551ec85f-39c0-5461-b119-1eb84b86c13e", "text": "puppies running in a field Message: JASON (Font: MODERN) "} +{"id": "6003880", "video_name": "fefa3eb8-8fad-5b3a-8140-3b428dad4bfe", "text": "ship in the sea wierd weather "} +{"id": "8002852", "video_name": "9aa35b13-c7f7-5dee-8bc8-9403576428ef", "text": "table full of cheese products Message: 1 Attachment "} +{"id": "4002044", "video_name": "5c5fad80-9f37-55c6-bfc7-7008fd937562", "text": "a cute creature swimming in a river "} +{"id": "8001614", "video_name": "67501a3b-a869-5a5f-951a-402152ee0b5b", "text": "a very strong KINGKONG with apple head dancing in the heavy rain, sunset far away, 4K , slowmotion "} +{"id": "8002200", "video_name": "e98cd50f-47bf-5bd5-a7c9-3de1c42f0831", "text": "4k video of a human ear close up as microbiotic aliens enter. Hyperrealistic Quality. "} +{"id": "3003093", "video_name": "d3265bfd-4b26-5ba7-b2f3-7e43cfa6b90b", "text": "Breathtaking line art drawing neon punk lucha libre mask "} +{"id": "2005764", "video_name": "93109981-c7b1-53a5-a76a-c0833a72984c", "text": "little boy sitting on a hill of book in a junkyard looking at sunset "} +{"id": "0006217", "video_name": "28822067-d983-58ee-8a9f-21bf56f7fc64", "text": "A beautiful woman is dyeing her hair "} +{"id": "4003135", "video_name": "c92c75fb-5f8f-5178-b57f-cbb8982b7307", "text": "ornate shimmering ethereal dragon walking in the forest, intricate details lens flare, Dappled lighting "} +{"id": "8003593", "video_name": "6a4b8e34-e731-59db-9e08-f315d38bffd5", "text": "10 mussicians are vigoriusly playing violines, the entire group is in the middle of burning city in ushes, motion 3, ar 16:9 "} +{"id": "3006882", "video_name": "ed142992-2fd3-526e-810f-e0284e2fb957", "text": "the pastel pink blob invades the city "} +{"id": "1004994", "video_name": "5c4d1681-4e48-537b-af73-024447edf634", "text": "Animated baby dinosaurs watching the stars "} +{"id": "6003482", "video_name": "c5c58915-2967-5ab4-9d66-51eb559faf52", "text": "an epic battle between an human man in a red space suit and a human man in a blue space suit with a sword in a desolate landscape, explosiones and lasers "} +{"id": "8003862", "video_name": "2c534b82-0b8e-5d89-95f0-4f809650a568", "text": "The dreamworld is an ethereal realm, shrouded in mist and shadows. The moon casts an eerie, silver glow, giving everything an otherworldly aura. "} +{"id": "3003897", "video_name": "3a595344-853c-5a37-83df-ccef30536c30", "text": "a kentia palm in a nice and cosy modern house. Rearview on the garden "} +{"id": "4004960", "video_name": "a2d2e880-f959-50e9-aeca-986349aa3aab", "text": "an androids nightmare, off world colony "} +{"id": "3004243", "video_name": "0aaed992-731b-545a-a08d-ae0e70006d1b", "text": "thin man in coat walking through post apo city,80s capture,noise "} +{"id": "4003312", "video_name": "b751a2bf-348d-5a86-95af-a1b92b95eb8f", "text": "Donald Trump taking a selfie in front of hollywood sign "} +{"id": "4002844", "video_name": "eb5c4186-ea5a-56e6-bea7-0fa5169815d6", "text": "girl walking in the park. 2d style, flat style "} +{"id": "7002692", "video_name": "f8735108-6041-510d-bfd3-9005e96d11e5", "text": "lord shiva in AQUA MAN water body "} +{"id": "0005771", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "Pixar style animation of 2 friends. Their hands are waving at each other "} +{"id": "0006693", "video_name": "312f5cfc-065e-5ebc-b75a-3811b33a5477", "text": "aliens build Egyptian pyramids, use alien technology, surrealism, detailed "} +{"id": "7002587", "video_name": "48d9df37-f77c-5a70-80f4-7e69e5b61839", "text": "Dwayne Johnson shows off the muscles of his right hand,bodybuilding competition,bodybuilding pose "} +{"id": "6004365", "video_name": "19127cdf-0958-5d2a-aa82-925f122cd5c8", "text": "(picture of a girl in a bikini) "} +{"id": "2007118", "video_name": "1045c6ff-c940-596e-a0d7-1505709ea749", "text": "beautiful lady face contored into a grotesque mask ar 16:9 "} +{"id": "8001478", "video_name": "1f9d4caa-6673-5d54-a3aa-ff04e060235a", "text": "fast moving black ink spot on white background, that zooms in to fill screen "} +{"id": "8003915", "video_name": "56f20a6e-a773-5240-83d7-e7f43f522047", "text": "Astronauts in Space: Show clips of astronauts floating inside the International Space Station and describe how their movements reflect the concept of inertia in a microgravity environment. "} +{"id": "3003886", "video_name": "a2250939-7970-56c5-ad43-2ce39cbdbf29", "text": "a mountainous area with dead trees and drought "} +{"id": "2007794", "video_name": "a5df0553-b35f-5855-9dcc-978b862e9b57", "text": "laying in desert sand, were female hands made of white china "} +{"id": "0003228", "video_name": "39a97b87-95da-5daf-8d70-98607cc48457", "text": "Thor in action , pyramid of Giza in the background, thunder in the sky "} +{"id": "0006944", "video_name": "35a6d2b4-47ed-50ca-84fb-1ab72326949e", "text": "a man in a black suit carries s brief case. he is walking down a busy street. 50s nyc alleyway. atmospheric. wet. mist. Art deco. cinematic. Black and white film noir. Heavy shadow "} +{"id": "7003291", "video_name": "af7c7868-4f91-5d35-9f7e-979dc68f6d05", "text": "Farmers getting water and camera moves to carabao walking 1 carabao walks and another farmer walks out the hut and looks around Anime style "} +{"id": "3004987", "video_name": "825b6fce-3af9-51b8-91bb-014ce8c9db2c", "text": "Alien abduction in the midle of the dark forest "} +{"id": "0003741", "video_name": "42a71e97-7513-59ec-89f8-0dcccdfed0b1", "text": "Closeup of a green superhero holding a bottle, moving his arm "} +{"id": "7003961", "video_name": "9fe4df3e-c01a-57dc-a462-cd0cd02f6193", "text": "a Tyrannosaurus rex at a house party "} +{"id": "4004487", "video_name": "770b9ef8-9484-5d16-8d5e-d9d4cfa525a9", "text": "create a logo text with a security agent and camera surveillance "} +{"id": "8003083", "video_name": "cdcf201d-2e7c-5797-9fbd-fb22a3a74c24", "text": "Harry Potter Hogwarts Ron Weasley, Sunset 16:9 Format "} +{"id": "2006371", "video_name": "6d738a2b-f778-5252-82f5-0fb46916b638", "text": "A cat that jealous on the other cat "} +{"id": "3004386", "video_name": "fbe86d19-5c89-5998-9eb5-ff504df5bd61", "text": "The adventurer holds a crystal ball that glows blue in the cave and looks at it intently "} +{"id": "3004538", "video_name": "6dc5164a-1d29-56b3-9839-ddb7054c8107", "text": "a shot of a samurai from behind, with the sunset on the background and sakura leaves flying around "} +{"id": "5001800", "video_name": "870e070d-868c-5f05-8e58-b265362e7fe4", "text": "video of large bipedal bird with long white fluff and huge long beak living in the antarctic mountains "} +{"id": "1004522", "video_name": "5407ff37-c466-55cd-8eca-52c2b64f69a6", "text": "logo with brass knuckles with a emperial text "} +{"id": "7003727", "video_name": "6b1a0805-ad4d-5c22-8bc2-7af1a4471eaa", "text": "A beautiful snow is falling, blizzard "} +{"id": "4002861", "video_name": "3a3cb151-69c8-5bd8-9df4-8b3a5e85516e", "text": "close up of the gate of big haunted house in village "} +{"id": "1004112", "video_name": "4c1e6522-7de5-50a9-8d22-8837e8b7f331", "text": "laser hair removal , cute girls egs , process , 4k clear video "} +{"id": "0004568", "video_name": "0b5479e4-7b0e-50f4-adaa-9a9db293a715", "text": "A dancing girl in a flight attendant uniform "} +{"id": "0004310", "video_name": "06e13d92-7ae4-57a1-9fa7-3b12ea7d92dc", "text": "realistic , fps 24 ,motion 2 , realistic women inside house having dollhouse "} +{"id": "7002984", "video_name": "f46007b5-b840-58bb-b2aa-1dc4be8ddd84", "text": "mixed teenage girl and a fennec fox in the desert studio ghibli style "} +{"id": "8002080", "video_name": "d020069a-1006-5cf2-b706-377024a04436", "text": "quick camera zoom in, mid shot, animated alice in wonderland, animation, hand drawn, mushroom forest, occult ritual dancing under mushroom, 1960 "} +{"id": "3003128", "video_name": "65ac7dfe-083f-50c5-925e-c205fd98267b", "text": "create a video of a rocket hitting the Taj Mahal, generate a realistic video "} +{"id": "5001056", "video_name": "e6c7986b-e4b3-593d-80c7-14ac68c1342f", "text": "The burrow, their sanctuary, was flooded, "} +{"id": "3004422", "video_name": "5672871f-5c97-55e8-adbf-6fb72ae9b6d9", "text": "a woman sits in meditation, energy rises up the spine, passing through each chakra, enveloping the body "} +{"id": "0006935", "video_name": "3580b17b-c7e7-5e66-a861-6d6e7da41b86", "text": "black and white grainy film textures of a ghost walking through Paris with a newspaper in hand "} +{"id": "4002479", "video_name": "17c35974-a58b-530b-b01c-f371e2fdbbf5", "text": "cinematic shot of ancient temple on time of aarti of diety in rainy season . Temple is like ancient hindu temple . Zoom in the camera to the very top of temple "} +{"id": "7004874", "video_name": "e61c06f4-e17e-534b-b3b8-7538177d7b92", "text": "Happiness is closely related to the activity of neurotransmitters "} +{"id": "4004911", "video_name": "4e0fe36b-453f-525e-9624-ca4d30dbd1e2", "text": "A view of space, cool lasers "} +{"id": "3003096", "video_name": "c494a58b-a44b-5a6a-a730-852b10cf7b45", "text": "Tobey Maguire falling into the abys of a blue light. Dark. Particles. High definition. Cinematic "} +{"id": "4004547", "video_name": "69cf80d1-09d4-5562-95f4-20a92e9a73ff", "text": "a girl short hair lying on bed, texting with someone, the phone cover almost her face, she seems overtired, animation cinematic, high quality "} +{"id": "0003294", "video_name": "3b10b1b8-0e20-5eba-bcc1-5268c8d0b668", "text": "magical Spherical object held by a hand (only five fingers) "} +{"id": "7003786", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "fire in the sky Message: 1 Attachment "} +{"id": "2006250", "video_name": "c97c1a62-ea53-5411-b341-c1c957559161", "text": "happy boy strolled along the forest. "} +{"id": "3006353", "video_name": "ea8eb5be-bda4-5dba-ab91-6070e6b97001", "text": "She savored each bite, feeling grateful for the love and care that went into preparing her meal. "} +{"id": "4002313", "video_name": "5019ec73-7250-536d-a3f8-c760db3c4e44", "text": "kids playing in Blenheim palace adventure play area "} +{"id": "6003886", "video_name": "3756c76b-6191-5b5b-b0d5-be19ccc09de8", "text": "make the building with lightning scary vibes moving "} +{"id": "1005667", "video_name": "681dbffb-e1c5-5833-9043-d29df103632b", "text": "the manga and anim stand together and talking in animated HD style n Japanese amine "} +{"id": "5001724", "video_name": "aab5a8fb-58a9-5e0a-9313-c26ef4051e68", "text": "The animals grew disheartened, but Benjamin reminded them, "} +{"id": "4003424", "video_name": "cfc95264-bd8d-52b3-a79f-ba2757d60ec5", "text": "A group of men in a meeting, shirtless, sweating "} +{"id": "3006175", "video_name": "649d441b-7535-56a1-aa67-f43e77173c0c", "text": "in a small sleepy town a little girl named Lily wakes up one morning to find a glowing portal in her bedroom curiosity getting the best of her Lily decides to step into the portal and is instantly transported to a magical land filled with talking animals and vibrant colors "} +{"id": "0005049", "video_name": "13c4fd37-7e99-5353-a592-2a4c6c469027", "text": "morden city, Finance Building, city view "} +{"id": "1006972", "video_name": "7f9e3ab4-1991-5f41-aa9a-5d1ea5a98305", "text": "a cinematic spanning shot of sheep being herded in the Swiss alps. Summertime, green fields, mountains in the background "} +{"id": "6002414", "video_name": "191463a5-91df-52ed-ade3-9aa7de6ab02b", "text": "The forest transforming with vibrant colors, animals dancing and playing together "} +{"id": "5001534", "video_name": "099e442a-366c-56d3-973c-b220fed9007b", "text": "The girl sings to the music "} +{"id": "4003953", "video_name": "21841e4b-d834-54cf-b1ce-d69e4c9bfa93", "text": "beer floating into a nice beer glass, top down view, very bright, zoom out "} +{"id": "7002301", "video_name": "f1fd9fb9-c7d6-5558-b325-a04156f493b4", "text": "A logo incorporating a camera lens with smiley face in the center. "} +{"id": "8001314", "video_name": "4505c4d9-f06f-5ce4-9e6a-0868c9d7c1a7", "text": "what a diverse corporate learning environment looks like in 2060 "} +{"id": "2003012", "video_name": "784ddf10-79e6-5bb7-95af-00cd663d146d", "text": "skeleton hand comes out of a door "} +{"id": "1003573", "video_name": "41e7acae-9505-58af-b741-1d63755c30cd", "text": ": Make me a notification from the Monster Energy can that will rise through the ice cubes.with realistic animat "} +{"id": "1003232", "video_name": "3b8797c6-f78a-5b54-b95b-e186a30cdbe4", "text": "two opposing forces dark and light separating and annihilating every asteroids and planets and universes in their paths in very fast time "} +{"id": "6004172", "video_name": "ca160d67-cf6d-5864-8f1e-de9b89f72908", "text": "In the 2000s, Chinese high school classrooms were clean and bright, "} +{"id": "7004325", "video_name": "165d1103-4346-5128-a480-b960fbab972f", "text": "a middle aged person joyfully celebrating a victory in an online casino game. The scene takes place in a cozy living room environment, where the person holds a tablet that displays a colorful and vibrant screen of a casino game, with typical slot machine symbols and confetti, reflecting a moment of excitement and happiness. "} +{"id": "4003446", "video_name": "5098a1d0-827b-5f61-8c43-fe15d3673f3f", "text": "sneaker with exclusive design worth 1 billion "} +{"id": "2004597", "video_name": "187ba44c-3472-5685-940c-d7446b1ceb68", "text": "Patrick Bateman and Elon Musk arguing "} +{"id": "5001028", "video_name": "153251d6-b773-52c7-aacf-8db5138381b7", "text": "4k quality, moon in blue night sky , Pouring honey from the moon "} +{"id": "2003545", "video_name": "aeeb147e-7bd3-599a-b48e-11d4a1085273", "text": "Band Nine Inch Nails live in concert, very agressive, dinamic, lot of smoke and lights "} +{"id": "7004688", "video_name": "3b91b6db-276c-54f6-add0-df00428a00aa", "text": "a friends happy to be in hollidays on the beach "} +{"id": "3006276", "video_name": "cae0b66a-a1ec-56cf-9770-7a1a4ca812ba", "text": "The car crashed into a tree and is on fire "} +{"id": "0005245", "video_name": "172b82b0-c511-564f-8bf6-f42351d320aa", "text": "Shadowman leaving behind a trail of cryptic messages. Picture a dimly lit urban landscape with misty alleys and imposing shadows. The Shadowman, clad in a mysterious cloak, artfully places each message, creating a tense breadcrumb trail of riddles. Employ dramatic lighting to intensify the shadows and highlights, and use a cold, atmospheric color palette to enhance the thriller ambiance. "} +{"id": "0005777", "video_name": "2118daaf-a66d-56f1-9019-11b23be606a7", "text": "Lord Bhramji siting on the lotus flower. "} +{"id": "4004159", "video_name": "c6817214-9b06-5dd9-b29e-87cd3b22677d", "text": "Prehistoric people travel down storm rapids while there is lightning "} +{"id": "5001095", "video_name": "73f9087b-de9b-57f6-8822-05f96d9865e4", "text": "in the forest, japanese animation style "} +{"id": "2007347", "video_name": "b919dc8d-dc57-5b09-9328-f000d3c7756c", "text": "a video with a figure of ahsoka tano from star wars like a kenner toy "} +{"id": "1006458", "video_name": "762b6fe0-09dc-5dce-8079-2e4a9a6e90cb", "text": "An 11th century encampment a valley in Tibet, with yurts, yaks and horses outside and warriors riding in from the distance, it is winter and there is smoke rising from the center of the yurts. "} +{"id": "1004680", "video_name": "56ec02bd-682a-567f-8332-55bfe3cdcc48", "text": "Shia(a girl) searching for cover in the palace. "} +{"id": "2006342", "video_name": "b56ad4cf-2368-590e-9a72-51f19ebb49d4", "text": "weightlifting belt with FitGearz Logo written on it "} +{"id": "6004860", "video_name": "da0e6212-a6f9-5432-afb8-ef2a06f20613", "text": "cyber girl dancing for EBM music video "} +{"id": "0005240", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "a magician walking in his forest, enchanted he cried, 4k "} +{"id": "2006730", "video_name": "17e6fd36-2429-5195-87b0-6ea5083ab62d", "text": "Guy who swearing got new phone and brewed it "} +{"id": "4004495", "video_name": "68e4027f-81ed-5936-9c30-b3f12a8a98df", "text": "generate a video where a chemist does an experiment. "} +{"id": "0005444", "video_name": "1adde34b-19ab-5ccc-90db-d8f92c9102a2", "text": "Group discussion with kids and a little robot "} +{"id": "7003459", "video_name": "6e0f3e8f-e7d7-5509-8d5a-32ebf0b703fc", "text": "a great lion with a deep orange mane, and feiry yellow eyes a majestic torso, and face, standing on a rock in the savannah, countless blades of grass littered with acacia trees are in the background. "} +{"id": "7004465", "video_name": "81380e45-9b22-576a-9c5f-26029af1706b", "text": "a dog made out of fire surfing a big wave "} +{"id": "7003479", "video_name": "45a680a8-48d5-5229-a196-80039d066454", "text": "Layered 3D audio spectrum additive waves stack harmoniously, resonating against mirrors close to a titanic eye radiating layered neon hues from a distance. "} +{"id": "1003381", "video_name": "3e4f24a2-4e8b-5b9d-9b6c-f5570f325a6d", "text": "the lights are constantly moving, and the background is hazy while she lloks at us "} +{"id": "2004487", "video_name": "dc1cac05-66b9-5f49-8e5d-90e5559389bb", "text": "guy in dreadlocks falls from the sky "} +{"id": "6003520", "video_name": "43b6c3df-a449-5368-94cc-a0b2fdc5b48d", "text": "rocco siffredi playing with a woman "} +{"id": "5001073", "video_name": "c78c31b8-b7a2-5812-86f6-212b9a661854", "text": "V neck grey and white cat singing "} +{"id": "0005133", "video_name": "15680d1d-be34-5a43-a1a9-2136ab463b34", "text": "2 white male characters with short hair dressed in wide jeans, timberland boots and baseball jackets walk through a slum of a red city in a frontal shot. "} +{"id": "6004176", "video_name": "74433e40-30dd-5079-93b8-c57ef30ec7d0", "text": "Cat walking in the rainy New York "} +{"id": "8002465", "video_name": "2a8e7b9c-c0b8-5383-abf0-4bc0a9b97297", "text": "An old man walks in a palace "} +{"id": "2004075", "video_name": "e742652a-a86c-5fba-b0eb-ee5e0ff9e802", "text": "The King Court Hall two sides standing soldiers "} +{"id": "2004052", "video_name": "00e3d3d9-c80c-5337-bcc3-27a454eb775e", "text": "retro style, retro photo, vintage, brown colors, woman drinking vodka,sitting at a desk, in an office type environment "} +{"id": "2003051", "video_name": "995ae6f9-8a4a-5362-9b01-4a361afab150", "text": "A couple in love walks hand in hand towards the car. "} +{"id": "6004393", "video_name": "2ce5e6d5-814f-5402-95ac-80f0943bd864", "text": "In a bustling town, there lived a joyful and content rabbit. This rabbit had a heart filled with happiness and love, and it radiated to everyone it met. "} +{"id": "2004186", "video_name": "aefc69e9-7fca-5149-8315-9bad64556581", "text": "18 year old girl bathing in bathroom 4k "} +{"id": "7004070", "video_name": "c9350573-1f20-5bed-ad5e-6d9c0bc84d08", "text": "a sequence of short scenes highlighting historical figures, like Ashok, Chanakya, Mahrana Pratap, and others. Showcase key moments from their lives with a blend of dramatic visuals and historical accuracy. "} +{"id": "4002295", "video_name": "fb9f4e14-a62b-5b4b-91c0-b0d7b892ed3a", "text": "orange mech warriors walking in cyberpunk world "} +{"id": "2007547", "video_name": "34c2c15b-c83c-5ae4-9633-ce3d58024d09", "text": "athletic female wearing very little squats on the floor, natural body movement, sturdy anatomy, full body shot "} +{"id": "4004328", "video_name": "2d29d667-3f1d-5a39-8d0f-bc614c6d37a7", "text": "Bamboo trees dancing in the moonlight "} +{"id": "3004162", "video_name": "362bcfa5-97af-52d3-9853-8938c9a97aa2", "text": "Blone girl 4k high resolution cartoon avatar green eyes medium 20 years long hair looking at camera smiling with thick glasses "} +{"id": "3003388", "video_name": "73106c5c-b603-5ac0-9c39-c2a300847494", "text": "blooming flower waving in the wind "} +{"id": "6002970", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "underwater, huge shark behind a blue glowing small fish "} +{"id": "4004591", "video_name": "0a18bbd3-446e-5a4c-a195-56c2ad5ec089", "text": "Me: Hey, everyone! Welcome to my incredible journey through India! Grab a chai and join me as I explore this fascinating country with my best friend Jay "} +{"id": "1006030", "video_name": "6ece9325-2b4f-57e3-94b7-c24de494d21b", "text": "a guy jumping in the modern new yourk city "} +{"id": "0005401", "video_name": "1a314de6-caa9-579b-915c-8ecf4501f010", "text": "something like a great star fell from heaven, blazing like a torch, and it fell on a third of the rivers and on the springs of water. "} +{"id": "6003532", "video_name": "f378496d-5a22-5561-858b-ca1882e780e9", "text": "simulates a view from top to bottom being on the terrace of a New York skyscraper from which you can see people and very small cars walking through the streets of New York "} +{"id": "7004375", "video_name": "7136505e-d596-5f2c-94d0-052b46a013d6", "text": "A town during winter with house adorned with snow and Christmas lights at midnight and a large mountain in the background and pathways throughout the town with beautiful crystal night sky "} +{"id": "4003108", "video_name": "062d898c-d1b0-51f2-a4f4-762ca3a79f63", "text": "a woman with long blonde wavy hair and a man with brown hair and a beard, both wearing hiking pants and flannel shirts, carrying technical daypacks, hike up a wooded mountain trail. The camera focuses on their feet, outfitted with rugged hiking boots. The image should capture the spirit of a sunny spring day hiking in a beautiful forest. It is warm. There is a waterfall in the distance. Their pet golden retriever runs ahead of them on the trail. "} +{"id": "2006370", "video_name": "c0cfe8c8-2d61-57f9-9e71-5687ac15d8d6", "text": "beautiful 3 years old girl sleeping while cuddling her puppy, dreamy, pink dreamy bedroom, magical little fairies around her, sparkling dust, disney, hd, realistic "} +{"id": "1004622", "video_name": "55f6dcc1-0929-5067-817f-ab7ec5652017", "text": "Appearing on a white business card, which is placed on a table Message: ubix (Font: MODERN) "} +{"id": "8001127", "video_name": "199012ed-34fa-52d1-ab97-8fa54f56f622", "text": "a 13 years boy and a girl talking in a village. "} +{"id": "0006257", "video_name": "29829b0e-6846-5ef3-863b-aceba710ff8b", "text": "a dealy ferocious giant footsteps approaching towards kids imside the cave "} +{"id": "4002401", "video_name": "cb846710-19cd-5297-bc2d-c0b8de6fa0a2", "text": "a woman in a strong rainny nigth, standing closto to a carriage in paris "} +{"id": "7002795", "video_name": "cc246f9d-e3d2-5a5b-b309-6435f01a1f78", "text": "Generate an image of Rahul and his friends entering a large, dark room within the school. The room should be filled with an eerie, unsettling atmosphere. "} +{"id": "7003257", "video_name": "8e59eb8e-0b7f-5fa2-973d-042f13399920", "text": "Vasa illuminated with lamps and candles in India "} +{"id": "6002747", "video_name": "98bb3194-2cbd-5961-aca7-a1787ba6b570", "text": "generat a Quality Script For you tube Shorts "} +{"id": "0005098", "video_name": "14b797c0-4434-5b59-b8a4-e82445081069", "text": "a user testing plateform and doing sign up "} +{"id": "3005413", "video_name": "96e316a8-a375-5bbb-9822-44b0458d69f2", "text": "a horse standing on a rock with its body painted in an array of soft pastel colors. Background a garden with big flowers. The flowers are opening und closing "} +{"id": "1003322", "video_name": "3d2c79f2-a094-501b-92a6-f495e15b3f22", "text": "a lonely oak tree bends in the wind in a winter forest "} +{"id": "3006054", "video_name": "21d7b486-bac8-55e3-990c-7ca3ad38c18b", "text": "In the heart of the graveyard, an old oak tree stood sentinel, its gnarled branches reaching toward the heavens like skeletal fingers. animation horror darkness "} +{"id": "0005509", "video_name": "1c0c6131-2c30-5b11-ada9-e1c1957b3fba", "text": "a man visit car dealer best image "} +{"id": "2005024", "video_name": "447174de-de91-54b0-bf48-865ee8562d4c", "text": "The rolling east of the Yangtze River, and the waves rush over the heros. "} +{"id": "6003330", "video_name": "14a613e9-bc0e-5929-b131-066eb6987167", "text": "realistic view of nebulae in outer space, hyperrealistic, 4k "} +{"id": "2004085", "video_name": "07ab1fd5-fa92-5b4f-b36f-7d554b620fdb", "text": "estabishing shot of a bowling alley "} +{"id": "3005636", "video_name": "b2e56e6b-42e5-54d6-b7a8-918fdc54d6d6", "text": "A blonde girl in a red bikini is sitting on the beach by the sea watching the sunrise, next to a coconut grove "} +{"id": "8003277", "video_name": "ed4cc133-fc9b-5e19-9105-8362a39f6f2f", "text": "sun is shinning ,Man relaxing in a cloud "} +{"id": "3006497", "video_name": "61527262-fa32-5b3e-b7c8-77d54ff16678", "text": "A hunter with gold in his hand, fantasy CG scenes, witcher3 gameplay style, concept art "} +{"id": "8002127", "video_name": "af0a241d-ccb0-5ecb-bed9-fed382189c09", "text": "an animation of a heart drawn with only a single line with black background "} +{"id": "1006088", "video_name": "6f9b178b-3e99-5b13-a7d6-c7517a09692f", "text": "a cozy interior view of a luxurious cabin in the middle of a light snow storm, snow is falling gently ouside of the house, camera is panning left to right inside the cabin, realistic "} +{"id": "6003401", "video_name": "bdb0330e-9343-54b0-8b7b-980cbfe265a1", "text": "a man meditating in space, camera revolve 360 digree around him "} +{"id": "2006823", "video_name": "567d9018-f47e-5d31-9b34-ad12de307eda", "text": "race car driver is driving with focus and turns to look at us "} +{"id": "2007774", "video_name": "58abeef9-1290-5aac-8446-236d637b13f0", "text": "gaspar noe film, red lights, goblins and demons in a club, eating animals and meat everywhere "} +{"id": "4003194", "video_name": "4aed974c-9589-5622-92bf-c2daa55715c7", "text": "A worker with a yellow helmet, a hammer in his hand, and a blue overall, falling and crashing a window of a building house. Pixar movie style. "} +{"id": "8002572", "video_name": "f04fdc39-601d-58d9-84fc-c75b7df74b45", "text": "Super Mario dripped out with luigi at a huge rave with crowd deejaying and stuff "} +{"id": "7003456", "video_name": "b65e5950-439e-5478-ab82-79c451ecec97", "text": "a cute cartoon blythe doll in a beautiful landscape "} +{"id": "7004443", "video_name": "9345259e-131b-5a31-b1e4-28dbb3e478c2", "text": "the 11th doctor matt smith facing the 12th doctor peter capaldi 4k cinematic "} +{"id": "3004147", "video_name": "d94b7aca-317c-51e2-892b-1c45ca9636ea", "text": "the film two hills with the participation of khabib nurmagomedov "} +{"id": "6002506", "video_name": "caf621d3-f9f3-5e06-9fad-6c35e5467b25", "text": "hundreds of dogs running for a marathon (8k realistic) "} +{"id": "2004784", "video_name": "1a1856aa-0436-5b05-8f2d-21e4afd25dbd", "text": "Dolphin wearing sunglasses riding a horse on the sea, cartoon style "} +{"id": "2005758", "video_name": "70cb735a-49bc-52d1-a008-805abb22ec03", "text": "A motorcycle based on zx10rr and s1000rr "} +{"id": "3006806", "video_name": "8cd37e9a-579b-5a17-9236-b80a2415fa3b", "text": "a yellow cartoon cat in the street "} +{"id": "0003837", "video_name": "44488c6e-5946-595c-851e-0cacfb3c1092", "text": "a giant robot saving a human child, utopian world, zoom out, 4k "} +{"id": "0005586", "video_name": "1d864bd5-9d90-5791-b205-b2ee853802c8", "text": "Car driving thru classic american neighbourhood "} +{"id": "4004849", "video_name": "568b5307-07d9-56fe-b98a-c4d75aee8e9c", "text": "A realistic squirrel holding a bunch of scrolls. Detailed, adventurous, apocalyptic setting. "} +{"id": "3005240", "video_name": "bfd247d9-cb70-5fb5-98ad-4ccf044f0ae1", "text": "SKALINE DE LA CIUDAD DE FARO (PORTUGAL) Message: FARO (Font: MODERN) "} +{"id": "0003377", "video_name": "3c825494-a11b-5722-a333-103df89afd2e", "text": "The bird has recovered and is flying in the sky "} +{"id": "5001899", "video_name": "8c436504-0bb5-565f-85cb-88598caa0c95", "text": "horror animation about nazgul from the lord of the rings "} +{"id": "0003153", "video_name": "382ea474-2c32-517d-8a27-5c2655ebbaea", "text": "pictures of valkyrie fight with sigurd realistic 8k "} +{"id": "0005681", "video_name": "1f2ee790-6543-50b8-8d72-403faf551eb8", "text": "4k, 24fps, realistic graphics, AR 16:9 "} +{"id": "4002897", "video_name": "ee5fa6a7-b901-50c3-8887-5060203c668c", "text": "Bruce Lee, hd, 4k, Unreal Engine 5 "} +{"id": "1005849", "video_name": "6b7c2f52-7be4-5bb6-8162-ad5f2701d049", "text": "The turtle introduced itself as Tormund, the guardian of the enchanted woods. "} +{"id": "4003590", "video_name": "d42f907a-fc72-536a-a81f-bf8e08ffb490", "text": "a gif of the woods in the dark "} +{"id": "1006768", "video_name": "7bedfd89-aec7-503f-9a79-84caccfc624b", "text": "a comic style person talking to his friend "} +{"id": "3003309", "video_name": "9110ed3d-2946-5df0-b609-b22183d63cc3", "text": "elephant is talking with wolf bear "} +{"id": "1006286", "video_name": "731c1876-d160-5f4f-b3cd-8ba5c51e0370", "text": "Surf board in a thunderstorm, wind, sun, beach "} +{"id": "0006838", "video_name": "34017ba0-aa60-5d2f-93f2-d3cf9801e8c9", "text": "A family of dad, mom, and two children, sitting at the edge of the beach, gazing at the sea. "} +{"id": "3003036", "video_name": "89043bda-fb91-5238-9d55-b4981ac9acd9", "text": "a small quirky house in the forest with the lights on inside and smoke coming out of the chimney. Camera zoom on the house. The style is of anime from studio ghibli "} +{"id": "4004956", "video_name": "08e468f5-3043-529e-aa54-22127a675b15", "text": "ancient greek philosopher, fron view, ultra real, hyper realistic, elegant, super detailed, black background "} +{"id": "3006174", "video_name": "bb27159e-b225-5742-9563-38ef8ecdd2a0", "text": "alien planet as seen from space rotating "} +{"id": "1006771", "video_name": "7bf67bef-cd5c-51d2-a6d5-7a9e599205fe", "text": "A desolate, moonlit landscape with ruins scattered around, remnants of a once vibrant city. The air is charged with tension as two powerful anime characters face off in an epic battle. "} +{"id": "1006205", "video_name": "71bc6ddf-8a3a-54b4-82f9-3c2c29cfcd89", "text": "a panoramic flybye in 4k shot with red draggon and cinema lense. of the astral city depicted in the movie astral city by author chico xavier "} +{"id": "5001810", "video_name": "4e283480-2777-599c-9b6b-4ce9cd4bf93c", "text": "a hive city worker from warhammer 40,000 giving an interview "} +{"id": "2004023", "video_name": "78d97053-80f0-54c8-a097-4d829648684d", "text": "Goku and other DragonballZ characters training in 1000x gravity "} +{"id": "2005554", "video_name": "58e25138-3760-5576-aa11-c9fb5b094620", "text": "Inside a white white room, filled with a mysterious glow, a fantastic creature is dancing. She looks like a synthesis of a white marble statue and mycelium, and has many arms and legs. The dance fascinates with its plasticity and beauty, reminiscent of a ghostly ballerina. High resolution, high detail, cinematic. "} +{"id": "6002376", "video_name": "0db25968-6cf2-59ec-a748-0d6d00eb67f7", "text": "Gradual zoom in as the camera zooms in on a child walking down a long road, and on either side of her, flowers of different colors appear, and she is holding a letter in her hand. "} +{"id": "2007402", "video_name": "d10bfc47-cdcc-5e43-b4c1-6e8158ccef6a", "text": "The movement of her hair and clothes by the wind, light and natural noiseimage:1684796297398.jpg "} +{"id": "8003957", "video_name": "5a1fbcd4-a7f2-5ba1-8e61-1fbebbe6d934", "text": "Girl driving on motorcycle in a city "} +{"id": "3005014", "video_name": "4b6a3c57-467e-5d09-8488-e12be4399a2d", "text": "Mexico is conveniently located near the United States, making it relatively easy and affordable to travel to for many Americans. Flights are generally short and direct from many US cities. Please shown some flight flying from USA to Mexico. "} +{"id": "4004724", "video_name": "74c63d4c-d812-5616-8dd9-e7dab2582406", "text": "The bride may have group photos taken with family members, bridesmaids, and friends. These images capture the sense of community and celebration. "} +{"id": "6002520", "video_name": "374cc2c0-8de8-5a30-bb35-7e21ca327071", "text": "ULTA 8K. REALISTIC. 3D QUALITY.movement. young child male in Africa working tirelessly at the sand mines with spade. poverty. "} +{"id": "0005730", "video_name": "20420c36-1e8b-5b4f-bfda-ad5c1f51590f", "text": "Create a pixar style scene of autumn leaves falling onto a large field "} +{"id": "2007181", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "4 hijabi women racing each other on horses on a race track "} +{"id": "8003543", "video_name": "e2160660-986a-57dd-b322-00ee0dc91fc1", "text": "Scary forest, bigfoot in the shadows stalking a 4 person group of humans at night "} +{"id": "4004872", "video_name": "1e508a6e-b48b-5c6a-b742-1ec69d9b51d8", "text": "disney color city with a fountain in the middle and kids are playing arround it green grass, blue sky, sun is bright. vivid colors "} +{"id": "1004796", "video_name": "58ad8349-b0ca-5617-96f6-c3d0078893a1", "text": "a Metalic robot is walking in the forest, sunset in Autum "} +{"id": "3006644", "video_name": "1a6ebb13-5edb-5460-bff6-f945db27cccd", "text": "giant spider walking around on top of buildings in a city "} +{"id": "1004754", "video_name": "58015a0a-3e02-53ed-849e-3533f9e66bc2", "text": "Varshini and Roshini were two sisters who shared a strong bond from childhood. "} +{"id": "2003564", "video_name": "1d4105f3-dc83-51c0-bbcc-64b0ae33b04f", "text": "boys in boat, in ocean, from above "} +{"id": "7003629", "video_name": "799f85ec-156a-5e3d-9e04-f50b8b719781", "text": "a boy walking while eating ice cream "} +{"id": "6004845", "video_name": "cccaa417-97d6-5546-a2a3-18da2d0ab941", "text": "bridgette bardot in a retro mid century home in palm springs, 8k, cinematic "} +{"id": "1005381", "video_name": "62eca4f4-96e7-541e-8b1a-9ab663eb7ae7", "text": "Black background, an orange cut in half, the best quality, 8K "} +{"id": "8001254", "video_name": "da6c54ce-9559-54bf-bd8d-19cd155ad245", "text": "high res photo taken with a Panasonic Lumix camera zoomed to 150mm of a tracking man and woman walking to the orizon "} +{"id": "3003563", "video_name": "c7522520-02f2-5106-b532-69225fa0d427", "text": "venom looking at camera withi dangerous smile and smile with High resolution "} +{"id": "7002142", "video_name": "9d3f21b9-281b-57f3-a7a4-433d1e9a4e0c", "text": "PhD student in Abu Dhabi explain her thesis on stage with a video projector "} +{"id": "2004737", "video_name": "5cde990b-f30e-5d8a-a345-4293fb430d09", "text": "turtle and rabbit are standing in the forest "} +{"id": "7004605", "video_name": "8522d7bb-aac6-5314-96fa-d6535e3aba2e", "text": "a 2d animation of 2 men talking to eachother on a cellphone "} +{"id": "1005306", "video_name": "61808274-17b3-5c15-b027-b041f8374997", "text": "a 1 minute home video where a hollywood actress dressed as marillyn monroe finishes a take during the recording and goes to a table backstage and drinks a glass of drink and smokes a cigarette with Kim Kardashian wearing matching dresses "} +{"id": "7002857", "video_name": "6ebfc68f-3bbc-5949-b160-4174cc4f5c4e", "text": "wide computer screen before students in graduation gowns displaying a graph "} +{"id": "7004463", "video_name": "4645f2f3-215f-567f-ac61-b30ab7d355ab", "text": "woman in white robe running out of church building, tracking shot, scary, dark lighting, "} +{"id": "7004007", "video_name": "a568fe69-4bf1-5bfc-97c8-13a0d9d17073", "text": "In a jungle, a group of curious animals gathered around a wise owl. "} +{"id": "0005530", "video_name": "1c616296-7a52-5609-8cb8-54fc041a0725", "text": "a mystical temple with three sphere supply energy "} +{"id": "2004454", "video_name": "736d4557-cec8-5acc-bcd8-235ea42353d9", "text": "night scene, in a highway, cars are passing "} +{"id": "2007341", "video_name": "a693c482-fcdf-5323-9186-2a3fd92bb808", "text": "dali, eyes opening, eyes moving, occult, diamonds, alien, space, dark, tarot "} +{"id": "4002881", "video_name": "8d1ca1d5-ebb2-5ae4-a08f-4cd6e8b84cb9", "text": "a fully armored dinosaur with a jetpack playing against others in a galactic game of speed "} +{"id": "4003294", "video_name": "fc354de2-3401-5f5e-b3ef-f60fc4f8d8c7", "text": "Borders: The issue of borders is central to the conflict. Disputes over the exact borders of a future Palestinian state, the status of East Jerusalem, and access to religious sites are core elements of negotiations. "} +{"id": "3004362", "video_name": "500a6363-4990-5166-aee2-148d52c624d1", "text": "a boy paiting a beautiful landscape "} +{"id": "2007430", "video_name": "4911b019-9612-5900-8d4b-3436f20069c3", "text": "anime version of a street racing scene in Japan. "} +{"id": "8003601", "video_name": "77250096-585c-5534-996c-e5d137a8d5d0", "text": "animate the Sun and turn it into a bright moon and make the paint change colors to neon colors "} +{"id": "1005461", "video_name": "645707b0-ee3a-5ee4-a680-a9b6627e0b95", "text": "a boy watching his favourite music band in TV in a dark room "} +{"id": "1005271", "video_name": "60eb372c-8f8d-585a-9e4c-5199e0ca18f6", "text": "seated woman playing handpan drum, daylight, outdoors, sunny day, full body camera shot, nature aesthetic "} +{"id": "8001762", "video_name": "9bd51339-c8c2-5030-90f8-09c5e7e08d32", "text": "Disney princess dancing in the rain "} +{"id": "1006734", "video_name": "7b5e70de-bc5c-5e9e-8a92-4dcca82aed1e", "text": "through the eyes of the cheshire cat, whimsical and animated "} +{"id": "0003648", "video_name": "40f952ac-ccff-575f-ba65-00e44abf1ddd", "text": "The red hen holds up the wheat seed, asking her friends if any of them are interested in planting it. The duck, cat, and dog react with different expressions. "} +{"id": "5001191", "video_name": "2e0274a8-b313-56ea-b318-b975bd0a447e", "text": "Believe me the flag of the United States "} +{"id": "3003788", "video_name": "a39f71a0-4d2a-5343-9101-ceb280df9710", "text": "transformation of a poor man to a successful businessman "} +{"id": "6003470", "video_name": "8730135c-a430-5bbb-a631-c4c966d857b8", "text": "Man who opens his eyes to see space "} +{"id": "3004418", "video_name": "154d2376-3207-50d5-a679-e6f025bb2bf5", "text": "Suddenly, Gojo Satoru, with his iconic blindfold and white hair "} +{"id": "3003843", "video_name": "c7e3691d-04c9-5b2f-8433-fac80d896869", "text": "You woudnt have a desire or a dream unless it were within your power to make it real. "} +{"id": "8002098", "video_name": "2d838ff1-bea7-5834-a9ea-3412802de452", "text": "hiperrealistic 60s horror film footage 35 mm, hotel corridor with a man running through the corridor. Very noir and creepy ambient "} +{"id": "2006282", "video_name": "088ebae6-b363-5143-9816-7f543f8c40b7", "text": "Capture the grandeur of an ancient Indian queen delicately seated, her regal hands adorned with intricate henna designs. Each stroke of henna on her fingers reflects tales of power, grace, and the timeless beauty of the royal court. "} +{"id": "8001567", "video_name": "c1bd3928-a309-5b8a-9dc8-e64a95a62a46", "text": "a dragon flying through outer space, 3d animation "} +{"id": "7002194", "video_name": "b988220e-48a4-5b3a-b6b9-f1350a2e34ad", "text": "A anime boy talking for 2min with girl kidnapped "} +{"id": "6002090", "video_name": "72a6da00-8237-5fcf-aa9f-b133ab44385d", "text": "A 21 years old couple, girl with white skin, brown eyes, pink glasses, brown hair parted in the middle and boy with sand color skin, brown eyes, brown short hair and goatee "} +{"id": "3006676", "video_name": "a93c45ea-46c5-59b7-a2dd-b45e0ea97ba0", "text": "black and white 1920s super 8mm film, skeletons dance with satanic witches around a fire, creepy, damaged film, grany "} +{"id": "3004156", "video_name": "0447f216-2e35-54d4-a71b-0bcab3676395", "text": "people on top of a truck decorated for Christmas handing out gifts to people Message: 1 Attachment "} +{"id": "7003765", "video_name": "bd228a34-9a6a-5bc7-a664-b61e46ffb5b2", "text": "a warrior walking down a castle hallway, only his legs are visible as he walks "} +{"id": "4002400", "video_name": "471edca5-26e5-532c-adb2-8a8784e30c14", "text": "Sailor Moon, big braids, good figure "} +{"id": "3005854", "video_name": "8eeb1a7c-cfe9-5a14-9ae1-ae71782749a7", "text": "A lush, vibrant garden filled with diverse and beautiful plants. 4k catun "} +{"id": "2004434", "video_name": "2ca7588c-35da-5c7e-963d-0593955dac1c", "text": "The street is lined with quaint, traditional cottages with thatched roofs and colorful, flowering vines crawling up their walls. "} +{"id": "0005636", "video_name": "1e7e1f15-936e-57ff-af1e-c7c09572507a", "text": "Tos not accepted You must accept our Terms of Service to start using Midjourney. "} +{"id": "3005166", "video_name": "7d49fefa-6183-5e78-9704-e5bd7b80ef27", "text": "centre lion stand back tow foot "} +{"id": "2004743", "video_name": "7476c5db-fee5-5690-80b0-7bc49d37118c", "text": "Describe the celebrations in the village of Meadowside after the victory "} +{"id": "0004628", "video_name": "0c3c935d-7487-5576-aaff-4bf69a08c180", "text": "creosote bush in bloom in the middle of the desert "} +{"id": "4002640", "video_name": "818266d8-5edd-5693-b4e3-4d9eccbbdf46", "text": "King Ravan Little cute boy, Axe in hand, "} +{"id": "8003674", "video_name": "653c810d-9a1f-5b7e-aec7-7e8f2b9db343", "text": "a 01:02 video with 127 BPM background sond, 00:00 to 00:17 use to show the different night club light effect, 00:18 to 00:32 use to show Hatsune Miku playing piano, 00:33 to 00:47 use to show Hatsune Miku dancing ith oldschool pattern with 127 BPM temp, 00:48 to 01:02 use to show Hatsune Miku drop in the pond and fade out. "} +{"id": "1003134", "video_name": "39c4c971-2c05-54dd-a2f8-5b924ca8c862", "text": "a lady news host behind the desk "} +{"id": "8001413", "video_name": "0fbdc01b-35de-5fb2-86f5-ef616d0820d3", "text": "preparation of a classic cocktail 1min souls of poetsinstead of ingredients "} +{"id": "6002917", "video_name": "57cdadae-bfb8-5ea5-bb9c-e795fd8b53ed", "text": "vibrant and dynamic video featuring abstract, kaleidoscopic patterns that dance and evolve seamlessly. No people or animals should be present. Let the colors pop and the shapes morph in a visually stunning display of creativity. "} +{"id": "4002573", "video_name": "f00f6dd9-b582-57d5-8cd8-46ba960164fa", "text": "70s arthouse surrealism character with an alternative dimension dream like face and hat standing in the distance but of an unusual and beautiful forest landscape, surreal buildings, surrealism, arthouse, vintage cinema, high definition, 4k, retro photography "} +{"id": "2007036", "video_name": "cf085871-0ed8-5606-b61e-6eb8b4f404eb", "text": "Rabid dog tries to eat a dolphin, VHS old movie, super realistic, 4k "} +{"id": "2003637", "video_name": "f372b8f7-7814-50ec-a0b2-4b44922f6683", "text": "Drone footage of a sports car driving fast along a highway in the desert. Filming on a professional 4k video camera with details "} +{"id": "1006842", "video_name": "7d17dedf-886d-5ffc-b508-bda53aea8747", "text": "A handsome young pirate is on a pirate ship, plays the guitar and sings, his hair flutters in the wind "} +{"id": "3005363", "video_name": "dc3bf5ea-fa18-57b6-9f66-9ca38c26d679", "text": "cat wearing armor, high quality illustration "} +{"id": "4003313", "video_name": "b53d6ba5-3bb6-5062-8d44-49016df18dfe", "text": "The wise owl, Orion, perches on a branch, watching over them. "} +{"id": "2004764", "video_name": "cffc27c2-1bbb-534d-ad46-2127fa6b9d33", "text": "A couple walking in street with no one around in night time suddenly they both saw the sky above their head and see a bird shining above in sky and flying to the sky ,studio Ghibil style,cinematic in 3d "} +{"id": "0004454", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "Battle of Bang Rachan Camp motion2 gs18 fps24 "} +{"id": "4004289", "video_name": "2b4ee732-10b7-518c-8e83-6274322cd6c1", "text": "a running man in ethiopian streats "} +{"id": "1003765", "video_name": "455f0af1-13c9-5f32-bbe5-d9786e3cc873", "text": "golden wind chimes on a gently busy day "} +{"id": "2004054", "video_name": "a56bd8fe-1ed8-562f-b787-297f90d06de1", "text": "Suddenly she is awakened by a dripping sound. "} +{"id": "8001863", "video_name": "cefb710c-cd1a-52b7-9cca-3b1c6d94aa3a", "text": "Opening Scene: Fade in from black to a bright and inviting classroom. The sound of students chatting softly is heard in the background. The camera focuses on a charismatic male teacher standing confidently in front of a traditional blackboard. Character Introduction: Zoom in on the teacher, who is holding a stick in one hand and wearing a friendly smile. His appearance is sharp and professional, radiating enthusiasm for teaching. "} +{"id": "2005110", "video_name": "9678da8a-b8f1-5073-ae00-2b331979719a", "text": "bottle crushed in hydraulic press, professional video "} +{"id": "3003586", "video_name": "992cbae0-bdfc-57fb-8588-a4692265349a", "text": "rain pouring on a house, thunderclouds and lightning in the sky. Dystopia "} +{"id": "7002179", "video_name": "84dddbe1-7024-58d7-9387-dcff4a443f41", "text": "One day, Chamku the monkey, along with his monkey friends, made a decision to embark on a journey to the city. Visualize the monkeys forming a lively group as they set out on their adventurous trip. Make the audience feel the excitement! "} +{"id": "2005341", "video_name": "3d794392-8362-5afd-b44c-c768fabd3ad6", "text": "free falling from a plane, parachute with french flag, studio ghibli style "} +{"id": "2003049", "video_name": "db4e4f70-31b2-51dc-9cc1-ed42416a8fc0", "text": "A person studying AI for the first time and watching a course online. "} +{"id": "3005106", "video_name": "ca313b1e-0124-5528-af52-b5fe67a241ec", "text": "Don\u2019t change shoulders for 10 miles "} +{"id": "0006394", "video_name": "2bc40223-76d1-502c-bdda-f906ed8ec25f", "text": "Elon Musk is riding a giant mouse while playing tennis "} +{"id": "1005433", "video_name": "63dd6800-1999-59e1-bed6-260be03111a5", "text": "a Chinese child, aged 5 to 8, with a bald head, standing peacefully with clasped hands. Create a serene atmosphere and focus on portraying the child with a warm and friendly expression. Keep the video simple yet heartwarming, emphasizing positivity and tranquility. "} +{"id": "6003181", "video_name": "9a508f4c-43bb-5c65-ac19-67f80e2446f3", "text": "alien in grainy black and white film "} +{"id": "2007457", "video_name": "26c3199b-09f3-593c-a2d4-5528fe57790f", "text": "buenos aires city seen from a drone "} +{"id": "4003535", "video_name": "c553983e-1707-5b06-b171-e1321aceea48", "text": "Cute baby black Cat Sleeping in Cats Bed "} +{"id": "3005114", "video_name": "4bbdee58-5783-523b-a615-99c1bb3e05dd", "text": "a voice rang out in the silence "} +{"id": "7004084", "video_name": "f6018301-fa34-5c2f-a063-d9d635a0dc00", "text": "elephant tiger lion giraffe monkey deer bear walking in jungle in slow motion "} +{"id": "3006067", "video_name": "69e4fc5f-f883-56e0-b08b-be1ef6fdb2c9", "text": "the camera pulls back, the girl turns her head to the right Message: 1 Attachment "} +{"id": "5001538", "video_name": "1ac20f14-de8e-54fc-9ec3-30a68f164b56", "text": "Sexy Korean woman playing golf at outdoor golf course "} +{"id": "4004267", "video_name": "c0e3851e-41b6-583f-863e-41814e1b5a4c", "text": "building snowmen, having snowball fights, and decorating a gingerbread tree "} +{"id": "6003106", "video_name": "34aacb5e-4841-5816-b91c-4293459a855f", "text": "unicorn riding a rainbow while angels look on excitedly in an endless loop, Disney and Illumination style animation, "} +{"id": "6003141", "video_name": "77012cb8-051b-5477-83ed-ae292ced2a40", "text": "a scary island at night with choppy waves "} +{"id": "3004539", "video_name": "b0b29501-d814-520c-a59a-936eee5d3451", "text": "a mouse flying over new york, cartoon style "} +{"id": "4003993", "video_name": "bcc49a51-5926-5261-b591-7203d7f2b6e8", "text": "a cartoon animation of tomatoes is being smashed against the black wall so the wall becomes red "} +{"id": "0003936", "video_name": "001b4282-4641-5105-9bbc-36a80fad149e", "text": "In 3D animation, two girls and a little boy are making a quarrel over something "} +{"id": "0003225", "video_name": "3995e3d7-316a-5c3e-97b3-cd631639faf1", "text": "ferret throwing heart emoticon into the air "} +{"id": "8003381", "video_name": "0381c484-b207-585a-b325-ab867b6305fc", "text": "a chinese brown rice bowl with baked onions "} +{"id": "5001931", "video_name": "51c72de5-8cf8-5d57-b0c6-199e9974e306", "text": "visualizer for once in my life "} +{"id": "2004767", "video_name": "e68eaf0b-a4f9-5d6d-bb9e-c15ccb5a1ed5", "text": "animated Maui from 2023 slowing down the sun. "} +{"id": "3005951", "video_name": "13460ecf-876e-523e-9931-6e3bc7e7f480", "text": "A hand with blue energy surrounding it and it looked very powerful. Then his hand moved and he clenched his fist. "} +{"id": "7003032", "video_name": "96ec09eb-fdcf-53e9-b88e-01cfdb491fc1", "text": "2 cats in a rocket flying through the universe passing stars "} +{"id": "3006525", "video_name": "69dd597c-b464-558f-9eb3-be3c8eb63eb0", "text": "a panda is riding bike in Chinatown "} +{"id": "6004006", "video_name": "2c170aa8-22cc-5a8d-95e2-7413c76e9e76", "text": "a outside party scene ,music live, night , light fx "} +{"id": "6004812", "video_name": "63958371-611d-5ae8-8d69-7a91310b33d2", "text": "cyberpunk late night with flying veichals moving and lighs and ads on tall skyscrapers anime style "} +{"id": "3003663", "video_name": "658d850a-0a43-563e-a5fd-356924954b1a", "text": "green big tentacles moving in the water "} +{"id": "6002489", "video_name": "71a508b4-a23a-5f09-865c-087b26680ab7", "text": "Yes, indeed. They are the rulers of Fantasia. They are very kind and wise, and they love each other very much. "} +{"id": "8001248", "video_name": "ddaed45b-9c78-5c4d-948d-712ec5d53d6a", "text": "Guy sit trading charts pump happy jump back site "} +{"id": "0003506", "video_name": "3eb8b9a5-5e71-5577-9dd4-a297ae1ace2e", "text": "A woman in Byzantium in 540 receives an inheritance "} +{"id": "0003676", "video_name": "417f843a-1b09-560f-a69a-cca467a6f49c", "text": "photorealistic action movie scene of an Extreme closeup of a ghost samurai, pulsing blue energy in eyes with body made of smoke, holding a samurai sword in a defense action pose, battlefield scenery "} +{"id": "8001833", "video_name": "625c3cbc-3a18-538e-ba2f-258ad8bbfd6b", "text": "man in old house 4k , rasio 9:16 "} +{"id": "3003596", "video_name": "82efcb06-5b22-5795-bb70-ba1e255689ed", "text": "manor in stormy night, hard rain "} +{"id": "2005892", "video_name": "3557f2ad-f7c6-5f98-a3c3-4aa4203f00f9", "text": "a monkey, while sitting on ground of a forest is drumming a log of wood with sticks in both of his hands. Some Drumming. Honey bees and birds happy in background. "} +{"id": "0006562", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "anime girl dancing, 8k resolution, hyper realistic render "} +{"id": "2004014", "video_name": "ddb43b99-4a5b-52a8-92e6-96b570a2d257", "text": "young hooded man on the street walking "} +{"id": "1006932", "video_name": "7ecb6f8b-58fa-5f31-8887-a5b68c062f08", "text": "The Bird in Flight: An image capturing the heartwarming moment when the rehabilitated songbird finally takes flight, soaring into the open sky, free and unharmed, while Clara and the children watch with smiles of satisfaction. "} +{"id": "3005812", "video_name": "b8535a97-325d-57b5-8394-2e223b467dce", "text": "A video of a 35 year old travel agent finding a looking glass mirror and seeing Walt Disney World inside "} +{"id": "7004154", "video_name": "e6583de7-e4b1-5f7a-9825-06513eb82cdf", "text": "young boy looking sad and confused Message: 1 Attachment "} +{"id": "0005464", "video_name": "1b3f74e8-9711-5dc0-bfa2-06f5864d539b", "text": "A line of ants walking in a straight line "} +{"id": "3003651", "video_name": "6d3ef5df-6432-5704-bc5f-2619567cbeb0", "text": "beer and laptop in a bar table "} +{"id": "2007065", "video_name": "4345d350-9d15-5939-b4dd-253803a2aefd", "text": "A general in the army of a futuristic technology based culture "} +{"id": "3005517", "video_name": "03c15332-76f6-5513-b681-d6e3780b302d", "text": "mario pilots of starsheep, cyberpunk, space odissey, lofi 3D, cartoon 3D "} +{"id": "5001646", "video_name": "c71c1b52-cfc4-5221-8f9d-17a6e4bc863a", "text": "Dark hallway lit with dim, flickering lights. Room numbers can be seen, with room 104 standing out. "} +{"id": "3004866", "video_name": "f1d2c228-085b-54e5-b130-d10a9a3b3eef", "text": "Exploring the unprecedented universe of humanity "} +{"id": "2006867", "video_name": "9a85db8d-2a89-5ee2-9c39-2df1031af632", "text": "teenage boy, black hair, wearing black hoodie, hands in pockets, 4k, looking up, watching a meteor fall towards him, back to camera, full hd, 4k, realistic, hair swinging, black pants, black blouse, black shoes, one hand is in the pocket, the other is outside the pocket, with a fire gauntlet "} +{"id": "2003611", "video_name": "bfc09cfc-6b60-5993-a807-e83af842b13a", "text": "Use graphics to explain how the signals are transmitted wirelessly to an external AI system for decoding. Show wireless transmission visually. "} +{"id": "8002727", "video_name": "157682e0-0aef-5727-8bd8-4fe0067105a4", "text": "CRM systems, analytics tools, and automation platforms, emphasizing their role in modern marketing, agile "} +{"id": "4003308", "video_name": "4f244f04-a150-5dbe-8ba3-1cd863897604", "text": "The music continues, and the melody becomes melancholic, reflecting his sense of longing and regret. "} +{"id": "0003625", "video_name": "40ba4ebf-52bf-51ab-9cd8-52ecd4c84475", "text": "a robot dog in the street, 4k, cinematic "} +{"id": "6002754", "video_name": "203580dd-e317-56da-b1f8-9c1133946db7", "text": "there lived a young girl named Kit. Kit was known far and wide for her love of roses. Her fascination with these beautiful flowers began when she was just a child, enchanted by their "} +{"id": "4003033", "video_name": "1981e9a4-d505-5c7e-90c8-3aba96e3ffd7", "text": "swirling irridescent orb emerging from mountain lake at sunset "} +{"id": "3005325", "video_name": "1b108b5b-d457-587a-ba7c-088e916f3d98", "text": "a cult of MidJourney prompt engineers screaming imagine into the darkness under a full moon, German expressionism "} +{"id": "0005128", "video_name": "1554b6e8-7505-5d80-bd21-d215a77523f5", "text": "a time lapse of what you have been asked for the most today "} +{"id": "2006146", "video_name": "42eba8f7-f172-5854-9236-55fb78cc172c", "text": "a short sunset fast cars video "} +{"id": "4002830", "video_name": "2ac5a5e0-b8f9-5bdc-9028-ce7d4f07968d", "text": "Walking through the woods with the angry rattlesnake firmly in his grip, he moves towards a clearing in the woods, a bike path appears. "} +{"id": "4002180", "video_name": "3a886e7b-2f3a-5899-9d01-78f23a3dc233", "text": "Colorful roses floating on the beach "} +{"id": "2004627", "video_name": "48907d8e-5ed3-59ab-a4ec-02ec4d4989b9", "text": "undwrwater love between dinosaur and cat "} +{"id": "3006197", "video_name": "f66665a7-94c4-5dbe-bff3-cfd13ce4656c", "text": "Sommer ray performing a squat while carrying spiderman on her back "} +{"id": "8002816", "video_name": "9c2279df-7901-5938-ab74-a9bb67947a39", "text": "first person POV, climbing up a building "} +{"id": "8001002", "video_name": "c29130bc-737a-59d4-a155-df9cb8cac988", "text": "a picture of an ancient arab tribe wedding with the people wearing old arab clothing in the desert and mud houses in the background and animals "} +{"id": "3004408", "video_name": "93eed973-e751-5c4c-9c96-b7ec730e977d", "text": "in the style of princess mononoke "} +{"id": "0003922", "video_name": "45cfd3f1-78e4-593b-a35a-70834021b6c5", "text": "Change the background of the original image to a solid color to make the photo clear and 4K Message: 1 Attachment "} +{"id": "1006593", "video_name": "78c1a0dd-2965-563b-bb29-a8f344105391", "text": "Prosporous Paramartha Guru and happy Disciples enjoying sun set by the river near south indian temple, RPG style "} +{"id": "3006739", "video_name": "49fb3879-c4b9-5cd9-acc5-ac535fae4275", "text": "a pink room filled with water ,a mermaid is swimming in it "} +{"id": "6003315", "video_name": "d0c6cd87-ff1c-5129-9884-b2541b190ce5", "text": "dancing girl with a blue dress and a monkey "} +{"id": "8003203", "video_name": "a3375020-606b-5b8a-8ee5-ffe8bf0adfbf", "text": "creat a female anchor, story taller "} +{"id": "1004488", "video_name": "532b0104-50d1-5a2b-b626-b4c14d35dffe", "text": "this is not just your wish, but this was also the wish of human beings billions of years ago "} +{"id": "0006919", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "a black cat eating a blue rose in the very top of the hill during twilight "} +{"id": "7003182", "video_name": "c207dc75-037f-5d53-9632-4e40caaf901d", "text": "adam driver jumping from building to building "} +{"id": "0006596", "video_name": "2f48cc27-5cca-5c85-a666-374f87103837", "text": "An Asian girl is drinking beer while visiting the night market at night "} +{"id": "8003821", "video_name": "20f82c4b-5252-54b0-b8bc-e7eaf74d1b6d", "text": "Speculations and conspiracy theories swirled around these anomalies "} +{"id": "2003430", "video_name": "5dff4554-e8c5-5be1-8f6e-5569c118fa0a", "text": "pumpkin chasing ladybirds through grey concrete city "} +{"id": "5001649", "video_name": "d0d5b069-2391-5b6b-8d21-6bd8ce307439", "text": "boy playing video looking up a screen "} +{"id": "5001731", "video_name": "daf7d008-f75c-588f-a81e-ac8f3f4d7d0f", "text": "Micheal Jackson in thriller at the cemetery "} +{"id": "2007729", "video_name": "dadf8244-ecda-5d98-95a3-c9664938bab2", "text": "cosmic abomination, chutulu nodriza, mother of the evil, high energy atmosphere, anti cosmic theory, unified theory, in DMT effects "} +{"id": "1005943", "video_name": "6d36476b-cebe-5e19-9c78-38a6e6367329", "text": "a dog walking in the woods eating an ice cream "} +{"id": "2006783", "video_name": "de60c164-387c-5c54-b913-7d6e740307e3", "text": "Gust of wind on the shrubs. "} +{"id": "2006786", "video_name": "766df502-00b9-5368-9d68-3ccf0b16d647", "text": "footage green background wallpaper for phone animation 4k hd "} +{"id": "2004931", "video_name": "6322f45a-e623-518b-8cb7-79bcc99a98f5", "text": "Ancient Greece and introduce the story of the wolves of Mount Olympus. "} +{"id": "2007268", "video_name": "8e202955-c605-5474-93c4-56be17d99124", "text": "The big screen in the conference room was flashing Message: 1 Attachment "} +{"id": "7003900", "video_name": "b9fa41a1-3584-5615-ae84-d6a6094a6b12", "text": "walking man on the universe seeing the sun, ar: 16:9, 4k "} +{"id": "0004518", "video_name": "0a5d714a-3feb-54e0-88fa-60671605b61c", "text": "a man jumping to hit a Soccer ball, dark background, low light, high resolution, hyper realistic "} +{"id": "8002471", "video_name": "84ce5cd7-37fc-5b88-a8dd-1a36ffcd9bd7", "text": "A diagrammatic box titled Data Science with a plain white background flying in from the left and then moving to the centre. "} +{"id": "1005963", "video_name": "6d8ce0ce-8442-52d7-a788-96578b84e001", "text": "vhs, Japanese anime Clam character rapping in tokyo streets "} +{"id": "2005587", "video_name": "b378c238-1c48-5d2b-a945-a1cdb87c51b8", "text": "small village Manny home people are looking any other "} +{"id": "8001560", "video_name": "b711f371-e184-5721-89df-45732d8e1156", "text": "Man opening a futuristic door and walking through the portal "} +{"id": "3004381", "video_name": "50b18792-ee17-505e-8a45-d4665e232b0e", "text": "Generate an image capturing the resilience of a single flower breaking through concrete, accompanied by an empowering message , ratio 9.16 "} +{"id": "2004178", "video_name": "23f2793c-e11d-5ec5-a806-3dcf643fe10c", "text": "the red dragon with 7 heads and 10 horns in the Abyss. the abyss is locked and sealed it over him "} +{"id": "0006970", "video_name": "35ff6474-5570-5336-a9b0-d9c3c90de648", "text": "sport fishermen on a river beach "} +{"id": "4002973", "video_name": "37181301-a8a6-594c-8ffe-520fd4c3a1fc", "text": "if dubstep was a slice of pizza "} +{"id": "1005504", "video_name": "654b7ca2-03d4-54eb-8196-37d6b2c77541", "text": "taylor swift and kanye west holding hands while shrek is marrying them in an outdoor wedding at a pepi themed wedding in the swamp "} +{"id": "4003039", "video_name": "ecad2ac9-264c-5274-abba-44a05c962c4c", "text": "an army of knights besieging the castle "} +{"id": "3003001", "video_name": "680f386f-0380-5478-b2e3-96c19d8da7ca", "text": "Running Boar 1. scary, simple, wrought iron, grotesque, victorian, photo, film, 16:9 image, typography, very realistic, handmade, 8k, photorealistic, poster, 3D rendering, dark fantasy, vibrant "} +{"id": "7004900", "video_name": "63326c25-9f91-5ff1-ad74-726affe230f1", "text": "Arab men and women worshipping at an altar of the fire god. Wind effects, aesthetic and artistic lighting. "} +{"id": "5001150", "video_name": "131ac057-7f6e-55c6-8ef0-3d00608e9b10", "text": "The cops were on our heels "} +{"id": "8003129", "video_name": "7172c64f-b891-5992-b85e-d8e350980a86", "text": "taking a pill out Message: 1 Attachment "} +{"id": "6003513", "video_name": "0be8576c-6b61-55a6-8790-f43887b7cf91", "text": "cute kitty dressed as alexander the great 9:16 aspect ratio "} +{"id": "8001905", "video_name": "b863d16b-9773-5296-8af9-aabd1ab29f7a", "text": "Grasshopper rides a bicycle, 8k, hdr "} +{"id": "6004377", "video_name": "0aadeb8f-d4e5-5d99-a1aa-b08bfb4b37c8", "text": "bag floating, transparent plastic shopping bag, against a studio white backdrop, product design "} +{"id": "3004613", "video_name": "edb97b2f-8926-51c1-ae72-aacf26f3cd11", "text": "the soul of warriors going to the sky "} +{"id": "8001895", "video_name": "1c781705-b6a1-577c-a09a-48a96ff680da", "text": "I want it to be a simulation video for the mall "} +{"id": "2007167", "video_name": "53228785-778b-5945-a613-42a3d9226bf8", "text": "Charity in Arica. ULTA 8K. REALISTIC. 3D QUALITY. "} +{"id": "0005283", "video_name": "17bf9011-e6fc-5bbb-abe2-e356518ecb46", "text": "marcurs aurelius speaking in front of the senate "} +{"id": "8002828", "video_name": "0a53db23-4dcf-5d71-a34d-228ca92e77f5", "text": "Generate an image of a breathtakingly beautiful humanoid cyborg woman, her metallic skin reflecting the ambient light, adorned with intricate patterns and designs. "} +{"id": "1003954", "video_name": "48fb15a2-39cb-5ddb-8b18-ef00b47c93c6", "text": "a video of a dog jumping up and down "} +{"id": "2004709", "video_name": "e1555f66-86dd-5773-bc89-6b9b62d77fc7", "text": "standing before her, was a majestic unicorn with a shimmering silver mane. "} +{"id": "7003417", "video_name": "8c546d34-ea9a-5283-962e-fbc72b412cb9", "text": "only eyes closing and melting, illustration animation "} +{"id": "8002105", "video_name": "ba686501-85e2-5cc4-a618-dee48fecbd2a", "text": "spiderman flying from one building to another "} +{"id": "1006015", "video_name": "6e80bac9-c667-51db-a026-2a520bd1614d", "text": "two unknown men fighting throughout space across the colorful nebula "} +{"id": "7004581", "video_name": "3e469563-e473-55cd-9574-707f8726a242", "text": "a young girls listion to music with headphone and dance "} +{"id": "2004455", "video_name": "c61b7648-5665-53e5-a17f-c5a5a1d6c836", "text": "a beautiful girl sitting on a bench "} +{"id": "7003755", "video_name": "0c8600b1-6655-5243-bcab-50ac7a6e4d8c", "text": "kid Suresh, unaware of the unfolding events, continued racing and ultimately won the competition. "} +{"id": "1004940", "video_name": "5b5ab78d-3f53-5382-86fa-e871489a548c", "text": "dancing chicken with proper legs and face in pop art style "} +{"id": "0005837", "video_name": "21fe2ade-47c8-52ef-a36b-b36e0dc81297", "text": "A blond haired woman walking in the fields, magical, slavic, in the night "} +{"id": "2003974", "video_name": "3251f5d1-a69e-5fbb-bd1e-44c4233c1a4f", "text": "an orange planet moving in an elliptical orbit, cinematic "} +{"id": "1004018", "video_name": "4a7cd1d8-9a93-529d-ae21-8e8bb5485259", "text": "a photorealistic movie of a rainy cyberpunk dystopian city at night from street level "} +{"id": "0004727", "video_name": "0e21a42c-9d6f-53e3-92ac-de6ccdb2f053", "text": "A family\uff0812person\uff09 having a dinner together. "} +{"id": "7004621", "video_name": "c6a56e4f-99d5-53ac-9474-c5d740a5d3e7", "text": "a boy holding guitar and showing his back . The back cloack is swinging for breeze and the boy standing in green grass in the middle of the mountains "} +{"id": "1003130", "video_name": "39a97803-1c59-5434-b771-a4f5f7edb1b2", "text": "messi scoring a soccer goal and the crowd going crazy. Show the movement of the crowd Message: 1 Attachment "} +{"id": "6004338", "video_name": "056cb698-4211-5173-a9a9-5d01a7d348af", "text": "the man on this picture fighting with Superman 1 minute video "} +{"id": "7002257", "video_name": "066907d2-27ed-5f87-ba2d-1be529da8b6d", "text": "Inside a house you can see an Andean grandmother giving a wool sweater to her granddaughter "} +{"id": "7004814", "video_name": "c62d399c-b2c4-5c93-a15e-47a75d628ac6", "text": "In the center of the image, a young member of the Flame Clan stands, surrounded by magnificent flames illuminating the entire tribe. "} +{"id": "7002205", "video_name": "9d389fbc-7336-5de5-a519-36c01687273f", "text": "genghis khan with real human features "} +{"id": "8003021", "video_name": "2ed1ad33-31a5-5ec3-be27-b4b62febcb70", "text": "let animate the background of the photo "} +{"id": "7003331", "video_name": "71a32603-27a3-53a7-9e49-e18a678942c7", "text": "Two ducks swimming in the lotus pond "} +{"id": "4004245", "video_name": "0a4af9a5-c2f5-5a07-aa11-05dc138d917a", "text": "Expressive pictures of the children of Gaza in Palestine "} +{"id": "5001340", "video_name": "1cb74a04-9655-5e4a-ac52-2bb8b19ed6f5", "text": "A train in the space with tons of stars "} +{"id": "6004150", "video_name": "a838737b-6cde-521b-8fd6-a53c9bc18c58", "text": "Children walking in a field of flowers with an Israeli flag "} +{"id": "5001143", "video_name": "85befcde-ff13-5490-a6d8-e8344019e658", "text": "lOGO FOR dental website named Teethse.com focusing on dental health "} +{"id": "3003619", "video_name": "e2fde849-8c4d-5f1b-b0e7-a99d97213c71", "text": "grogoroth buddha moloch staute 1920s footage eerie "} +{"id": "0006656", "video_name": "3087fb9d-f64f-5d33-b07d-0fc8ad64c302", "text": "Creating a cinematic image of a Palestinian girl sleeping on the ground surrounded by fire in the form of a circle, and around the circle there are people filming her with their phones with fear on their faces as she is dying. The camera is from a fixed top. "} +{"id": "1004647", "video_name": "566463eb-9d94-51ca-96f4-b3fdf09ff7a5", "text": "The lake should be in the center of the image, occupying about half of the space. The lake should have a calm and clear water surface that reflects the sky and the mountains. "} +{"id": "2006913", "video_name": "4b44c8ee-d26a-5c32-94cf-d9140ccf0830", "text": "beautiful industrial engineers in digital factory, yellow theme, hyper realistic "} +{"id": "0004442", "video_name": "09266175-0f27-5a9d-b401-a30eb0aef1e6", "text": "in a animated style a boy fishing in river with his small boat in his village "} +{"id": "1004095", "video_name": "4bc5a91e-ab3e-5d31-9027-6a25efd8c5ad", "text": "scheme with telephone counting time with timer on the table "} +{"id": "7003636", "video_name": "03da2356-2265-557b-9830-07c3be00502c", "text": "Slow motion, Neill Blomkamp film intro sequence. green and yellow "} +{"id": "1003087", "video_name": "38d48575-3106-5030-9db6-2ee45f1a7723", "text": "a maltese dog playing at the beach "} +{"id": "0004820", "video_name": "0fac8550-c8a7-5ad5-a420-8683c20c9c70", "text": "A scientist invents a robot, black and white 1900s "} +{"id": "4004783", "video_name": "790b1ed0-5cde-5062-b1ca-c5f3cf26830c", "text": "elf, elven lord, slender, green colors, nature, crown, rounded architecture, epic, medieval, ranger, bow and arrow, huntsman "} +{"id": "4003579", "video_name": "e4489598-d0e0-5b46-bbe3-c1742de481bb", "text": "Introduce the owner of the salon, a young man of average height, with a white face, prominent eyes, and styled yellowish hair. Use expressive animation to convey his demeanor and personality. "} +{"id": "8002152", "video_name": "4f96d18e-2b1f-5b8f-90e2-8c3e17ac72c3", "text": "portrays emotions as a source of strength. Show a person expressing genuine emotions, such as determination, compassion, and courage. Use powerful imagery to convey that embracing emotions is a sign of resilience and authenticity, rather than weakness. "} +{"id": "2006411", "video_name": "b75e8542-f0f2-5311-9a3d-ecea584087f1", "text": "a handsome boy One day, he finds himself at whose shop Meera gets attracted. "} +{"id": "2003838", "video_name": "a4b13d68-b35d-5d96-ab6d-e2767475ee04", "text": "the soul flies into a person and a synthesizer is nearby "} +{"id": "3005467", "video_name": "8b021086-91a9-56a7-8497-b628ba7b6e30", "text": "dog playing football in the city park "} +{"id": "7002461", "video_name": "77a0dc9f-e165-5ade-9bbe-32424b64e370", "text": "Visualize a tiny seed nestled in the dark, compacted soil. The soil should appear heavy and oppressive, representing the challenges and adversity faced by the seed. The seed is at the center of the frame, surrounded by the darkness of the soil. "} +{"id": "7002080", "video_name": "ad746bd4-75a9-5372-8cbd-b5afbdb4e138", "text": "video ufos in the sky of a city in the 1900s, old video in high quality aged colors, realist , 4k . people looking at the sky and a large ufo standing in the sky "} +{"id": "2004463", "video_name": "dffeecc0-fc69-589c-9db5-9963da342c38", "text": "Show the gradual dimming of colors and the sadness spreading among the inhabitants. 8k quality "} +{"id": "2004422", "video_name": "1d176005-c5c4-579c-9c9a-4b752b71cd9c", "text": "laboratory intercom from the year 1940, black and white film "} +{"id": "5001629", "video_name": "81eb6cc3-7a96-510f-9e76-a8262deaedea", "text": "the climber suffering snow weather on moun everest. "} +{"id": "6002154", "video_name": "ed6266e6-b006-57dc-8e7f-add213f10806", "text": "A man who works diligently on a computer "} +{"id": "1004436", "video_name": "520a363b-dfe2-5d38-9fdc-496cd70e3a6d", "text": "dog and cats team up to fight humans and win "} +{"id": "0005391", "video_name": "19f893e1-da9a-59bf-a6e2-35c4e402ee17", "text": "draw a picture whatever you are good at "} +{"id": "4002088", "video_name": "3109a6c1-3230-567f-a8a3-c2aa191ab97e", "text": "human hands cupping sand on a beach and the sand slowly slips through the fingers "} +{"id": "6003132", "video_name": "76dde563-20cf-500e-af01-80df486bd7c8", "text": "modern britishers talking to arab king "} +{"id": "1005724", "video_name": "694e7cf0-bc7e-5261-a45a-9e553085b7b1", "text": "Benin bronze sculpture figurine with high cheek bones and a smile "} +{"id": "1004347", "video_name": "502e4f6f-5c65-5209-842d-902448194b34", "text": "Edgar Allen Poe holding a heart in 1940s black and white style. "} +{"id": "0006873", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "a person making a dream car "} +{"id": "1004957", "video_name": "5b973898-1015-5cd2-9cd4-6ed8fa909534", "text": "Samuel from the bible, 2d cartoon, face closeup Message: 1 Attachment "} +{"id": "4002297", "video_name": "f4b53b31-55db-5062-a78b-8b10e2ca2643", "text": "a 1970s arthouse movie that evokes the mystique and rugged beauty of landscapes "} +{"id": "4003931", "video_name": "7fd06d09-6078-50c8-99af-8e4a257bbe44", "text": ": a huge island that has 12 futuristic cities , each with twelve different themes "} +{"id": "2005629", "video_name": "959c3084-1bc5-5782-9c16-66abceeeee83", "text": "car in the field, night, dark, poor quality "} +{"id": "7002847", "video_name": "cab43ec2-1fdf-586d-b8cf-f35d0a446112", "text": "One day, in a small village, there lived a clever boy named Ali. His heart was drawn towards the world of magic and mysteries. He always felt like there might be something magical about him. "} +{"id": "4003462", "video_name": "1030ce14-7531-5e60-86b3-84221d24f922", "text": "A person turns his back to the camera and looks left and right "} +{"id": "3006780", "video_name": "3e7e8544-fc39-52c2-9ee5-12d925947c70", "text": "a scary werewolf in a white suit skateboarding "} +{"id": "0003438", "video_name": "3d86c64e-12ea-5e0c-8fed-afd2e4104ee6", "text": "dragonfly and girl playing together in the Enchanted Forest "} +{"id": "0003570", "video_name": "3fb966e6-afe8-5d7b-968d-66908ec19793", "text": "a male designer hugs a model in a white dress at a fashion show "} +{"id": "4003111", "video_name": "75b6dd95-5bba-5156-afc6-585bd948dd61", "text": "A male body with a surgically attached crocodile head, abandoned basement, VHS, Analog, Interlacing, Highly Detailed, Blood, Bones, Desolation "} +{"id": "0005481", "video_name": "1b8acf74-25c9-52e3-b19f-eace9e2abd83", "text": "transformers have taken over the world "} +{"id": "3006063", "video_name": "d9b9e803-76be-5ed2-8a21-7115fc53a58e", "text": "ghosts are flying in grave yard,video length one minute,ultra hd "} +{"id": "8003109", "video_name": "a23fa2e5-4b9c-5d74-8fa9-e768679f779a", "text": "bioluminescent biohorror humanoid robot slowly walking through a hallway of flesh spewing DNA double helixes "} +{"id": "2004656", "video_name": "69e65841-2452-537c-9d9c-e2544365d686", "text": "prompt, Lebron james vs Kobe Bryant, 1 on 1 Basketball play "} +{"id": "6002525", "video_name": "4177bb19-557b-5d67-b576-a56ff18f4aae", "text": "rain drops falling on the kid standing in the crowd on a busy street, detailed shot, 4d "} +{"id": "7002373", "video_name": "a1b223e5-5fcd-5161-b7cb-f2832c39273d", "text": "make a 10 seconds video about the ocean "} +{"id": "1006124", "video_name": "704e4c99-eb8e-57df-bdf2-f2970ccc52e9", "text": "A beautiful girl with delicate features, blinking eyes, and a walking horse "} +{"id": "6004805", "video_name": "60cb102f-bef6-51d8-8bbf-e60c25d46a72", "text": "A group of bouncy rabbits in magical forest behind a bush,The illustration can be filled with vibrant colors and details, emphasizing the beauty and magic of the garden.storybook illustration, flat colors, character, 3D, pixar, animation "} +{"id": "3004462", "video_name": "e7fd6261-fd4a-5804-bb02-d81ef3eced54", "text": "A young man riding a blue bicycle, carrying his friend on his shoulders "} +{"id": "1006516", "video_name": "773bca1a-47c1-5fac-b2a2-cd3152bb61fa", "text": "the man is feeling great that life is full with hope while the man is smiling "} +{"id": "2007416", "video_name": "1079767f-5b7a-5fe5-8b2d-ad3b3c52c154", "text": "This Eid Miladunnabi procession is coming out "} +{"id": "1003144", "video_name": "39fdfe51-8698-51df-a85b-ee6615633fcf", "text": "a dog catching a fly in the air "} +{"id": "2006711", "video_name": "51aafd6b-4fce-577a-99a5-a6626e41db6c", "text": "a boy sleeping in the sunshine "} +{"id": "3003137", "video_name": "a92c25a9-742c-5514-a876-c68c6d78bca5", "text": "a futuristic architecture, sand and glass, futuristic lighthouse in the cleef, waves of the ocean moving "} +{"id": "7002234", "video_name": "703386db-7b48-5877-b1d9-4bfe95019f12", "text": "the woman came out of the home and went in front of the three elderly.talking each other,cinematic image,zoom out. "} +{"id": "0003605", "video_name": "4042c4a9-135a-5e30-b12e-34799bceca14", "text": "cute bright glowing 3d ghost white sheet draped over a skull lit from within reading books tim burton clay "} +{"id": "2004725", "video_name": "23896c04-098d-5a32-978f-f9370e9dc323", "text": "a family at the county fair posing for a photo, 1960s style, 35 mm film grain, kids are running away, parents are yelling "} +{"id": "2003746", "video_name": "1f322e31-945d-58f2-9ffa-1899c4b182a7", "text": "5 seconds animation, wind plands, small face animation, "} +{"id": "7002499", "video_name": "e6197693-c3e9-5dc7-990c-2da39b739724", "text": "elon mask is on the earth, traveling, some satellites "} +{"id": "1005699", "video_name": "68c3572f-f74d-5946-a888-b91488d45a01", "text": "a video of a frog talking to a lotus, gibili style, anime "} +{"id": "0004037", "video_name": "01ef45fa-c5b4-563e-baa1-0d1dfd81680e", "text": "a man jumping into a bubble "} +{"id": "0005892", "video_name": "22e0fe3c-af28-53f2-ba27-bdea10697931", "text": "Bruce Lee is dancing in a disco. 1970 "} +{"id": "4004206", "video_name": "5fb5eeae-0a4f-5177-824d-5252fbe7b9af", "text": "a video is about lord shiva is going to explore the universe and find the creator of everything "} +{"id": "2003764", "video_name": "59b9d572-e0fb-5cb5-ac95-5bff5546b08e", "text": "imposing and glorious lion of Judah walking victorious "} +{"id": "0006403", "video_name": "2bdc1827-d906-5fd4-8b18-4f482e998bcb", "text": "aesthetic minimal pastel translucent blob rotating "} +{"id": "4002767", "video_name": "1677c119-ba6a-5d5c-aff0-a7bd2f9b0b1a", "text": "the entire process of the little girl from 6 years old to 18 years old growing up "} +{"id": "4003662", "video_name": "75a2bd3d-da48-5db7-b78d-03c36c52f9ce", "text": "a black renault Clio 4 driving in a highway in a beatiful sunny day with a following camera from the side "} +{"id": "2006648", "video_name": "01d27fca-dd15-582d-b882-29b88859baa8", "text": "a car tour of inside the Hyundai Palisade SUV "} +{"id": "7002544", "video_name": "35a06f8f-c197-5c9e-be87-c4dd007d07c7", "text": "The Lamborghini car is racing at its maximum speed of over 200 miles per hour down the expansive city street. "} +{"id": "0006779", "video_name": "330a0539-6a2d-50ea-93e1-f212a8f3cd8e", "text": "The girl is using mysterious eastern powers to divine her own fate "} +{"id": "0006019", "video_name": "25202be9-a70e-502b-855e-74e5df4951de", "text": "big moon close up high speed Timelapse, colorful sky "} +{"id": "3003363", "video_name": "a38157a2-174c-5915-b6e9-c5fa9244d34a", "text": "Enter a world beyond your wildest dreams, where the sky is a canvas of swirling colors and the ground is made of shimmering gold. This is the imaginary heaven that no human can imagine "} +{"id": "0003508", "video_name": "3ebaf96b-f5bc-54de-ada9-55089d201f3b", "text": "relaxing symetric mandala changing shapes, in dreamy colors, color triad "} +{"id": "0006141", "video_name": "272d6a78-50dc-5411-bb3f-0124b245c32d", "text": "Insanely Detailed and Intricate Queen of Gold, symmetrical, Artgerm, WLOP, Warwick Goble; Photograph Taken on Nikon D750, Elegant, Digital Illustration, Scenic, 16k, Hyperdetailed digital matte painting, concept art, centered image composition, 8k resolution, 64 megapixels, coherent, CGSociety, behance HD, hypermaximalist, a masterpiece, "} +{"id": "1006133", "video_name": "705d7765-decd-575a-8f4d-05755d7cb4e5", "text": "a scenario with a worker who enters a building and takes note of the defects "} +{"id": "0003299", "video_name": "3b3ec41b-0d7d-5aca-9d49-81fed8116345", "text": "The seed breaks the ground and grows "} +{"id": "0006463", "video_name": "2d00c5e5-2f97-5cc9-bec5-effcf53ea2a3", "text": "a kangaroo runs along the road in the morning, first person view "} +{"id": "0006043", "video_name": "25945ad2-73a7-5032-a725-9a47e79d3fe5", "text": "closed black book that has the Kanji for shinigami on the cover, lightning striking in the background, and a candle burning nearby "} +{"id": "1003853", "video_name": "47049164-3a5d-5162-841e-706d897f01d6", "text": "a family of 3 members a man a women and a little girl "} +{"id": "3006226", "video_name": "9c14a217-16f0-5803-8365-37551a42db8d", "text": "The beautiful morning sun illuminated the snowy mountain, and a group of horses happily ran on both sides of a river under the snowy mountain, creating a 32k ultra high definition image "} +{"id": "4003238", "video_name": "15b1f005-6a04-5ed0-a985-3e7b49b020a8", "text": "a young scared girl is running through a mind labyrinth "} +{"id": "2006129", "video_name": "2811dadd-6ab4-5e76-a012-ad27f0cffdc2", "text": "A vivid depiction of a rabbit sprinting on a freeway, captured in the midst of motion. The background illustrates the blur of passing cars and distant skylines "} +{"id": "7002284", "video_name": "17f1acfc-f0c3-5671-8a43-c928d27ac672", "text": "Fox and friends watching the sunrise together "} +{"id": "7002665", "video_name": "7584b365-2b04-58fc-b99e-e54186949c45", "text": "The situation grew dire, and the villagers worried about the survival of their crops and their livestock. "} +{"id": "3006824", "video_name": "4238786e-ef03-56a1-8cbf-0ee4ebd7a024", "text": "fairy flying molecules assemble in the cluster, raw photo "} +{"id": "2004841", "video_name": "a54fdd09-ef8b-5ae2-b267-b6038e0f4e1f", "text": "Ragnar and vikings and Peaky Blinders encounter "} +{"id": "8003829", "video_name": "27ed2d99-af84-5b68-a7eb-18d8fc393121", "text": "Gravity Folz cartoon in real life "} +{"id": "0004639", "video_name": "0c6c9bbd-d7b0-5ca9-9113-8c3363ada32a", "text": "big curly red Chinese dragon flying over sea, sunny day with yellow sun in the middle "} +{"id": "0004176", "video_name": "0497ff25-ce66-5fd4-83f6-fe29ad0ec76a", "text": "young man reading a book and looking up with a big realization "} +{"id": "8001354", "video_name": "70af0d3c-9fca-5c26-9f1c-2a3c02348921", "text": "The epic battle between Herobrine and Steve in Minecraft "} +{"id": "3005604", "video_name": "55f2d0a5-bb25-53b2-a721-318cde8e3651", "text": "Illustrate the residents of the town expressing confusion and anger, possibly including protests and demonstrations. "} +{"id": "5001919", "video_name": "580ec8d3-4c95-5430-8e28-b3e7eb1735b3", "text": "A cinematic photography portrait of a Byzantine king, extreme close up face, looking away, detailed skin, dramatic Constantinople background, global illumination, volumetric light, rendered "} +{"id": "4004132", "video_name": "2d541ce0-d488-5c4a-8184-defc380ab5e6", "text": "create a video of a adog "} +{"id": "1004164", "video_name": "4d16ece6-47e9-5b34-be16-b57f8e2a2769", "text": "intimate couple, 8k, hd, dim light "} +{"id": "3005429", "video_name": "14fb7729-5199-501f-8514-a21d7666406c", "text": "forest of illusion, based color is purple, use tetradic color harmony, foliages are blown by the wind "} +{"id": "7002835", "video_name": "df24b52c-0ca9-5a61-95bd-eef5ea9314c2", "text": "Enchanted Forest, magical creatures, Mushroom Hill, dwelling of the wise; Mushroom Warrior Mogu, verdant hat, red and white garments, sagacious gaze, stepping forward "} +{"id": "8002244", "video_name": "7d691147-a413-574a-b68e-52391ab046b1", "text": "Late night talk show host talking, portrait, half human creature designed by David Cronenberg "} +{"id": "7004178", "video_name": "8d4a7187-ac37-50b7-bac0-6c5092b7edff", "text": "Vincent Van gogh playing th violin "} +{"id": "0006409", "video_name": "2bea75ae-4469-5df0-9248-8e6a8dd8fe78", "text": "A tech company making there way to the top of DC "} +{"id": "1006300", "video_name": "735b794f-0c0b-5c57-ad60-30905319752e", "text": "Animation Angry Person Because Phone Is Out "} +{"id": "7002627", "video_name": "69250346-0c58-5fa2-b8e6-0491eef808e0", "text": "Greenery all around, a river flowing in the middle and a shepherd crossing it while walking on the water of the river. "} +{"id": "7003132", "video_name": "e1dad39c-e42d-5b7a-a320-bedb2eca311a", "text": "Kanye West Eating Some Fries in 1999 on a Secret VHS tape. "} +{"id": "7002358", "video_name": "59814ae0-d721-5433-841c-b1ec8eb522b7", "text": "Lonely city bid farewell to the sunset glow on the horizon (sunset glow) China style "} +{"id": "2003784", "video_name": "046bf012-4b25-5f4f-a2dd-f9d258aff182", "text": "three dogs coming out of a sticker "} +{"id": "6002565", "video_name": "abcdd8b0-0738-5df5-a2a4-29ebb17a2fdb", "text": "a macro photograpy of a tiny city at noon Message: ALIANZA 4.0 (Font: MODERN) "} +{"id": "3005173", "video_name": "0cd16ed9-9767-59a0-9a7d-f97b2964130f", "text": "Nine cats lounge and nap in various positions around the house. "} +{"id": "6003405", "video_name": "5f7deed2-a55d-5edf-a56a-016efb26a2f2", "text": "a Nike sports shoe for website for a yearly sales campaign ultra high image "} +{"id": "3005752", "video_name": "a54fc741-e0c2-5ca2-a7de-0a8e22e9e219", "text": "For the Pizza Sauce: 1 can (14 ounces) crushed tomatoes 1 clove garlic, minced 1 teaspoon dried oregano 1 teaspoon dried basil Salt and pepper to taste "} +{"id": "0006421", "video_name": "2c0f0812-28d3-5b84-ad3f-42ee1529c3c2", "text": "jason vorhees transformation cinematic dark Message: 1 Attachment "} +{"id": "7002592", "video_name": "44fd446a-925c-5673-827f-f16d99cd5cb2", "text": "With land under my feet again, my thoughts were full of Larry and Herbie, cheerful and optimistic under the direst stress, and of Mary, who stayed at the wheel for all those crucial hours "} +{"id": "2006824", "video_name": "da8ba96c-1773-5601-a355-ffae2153e7a1", "text": "a group of masculine lumberjacks are behaving in a jovial and rowdy manner while drinking beer in a bar "} +{"id": "4003519", "video_name": "a0e1cb4a-723a-5a76-9f3a-f099e2cfa053", "text": "A girl with eyes is doing her homework "} +{"id": "6003024", "video_name": "cdc982d5-048f-5a6c-830c-d698da8b9da2", "text": "triathlete getting chased by a shark on the swim "} +{"id": "0004426", "video_name": "08b29689-bfc3-5463-a390-2e33d13e58f2", "text": "Create an emotional image of people on their knees, crying out to God for mercy and protection, with their hands raised to the sky "} +{"id": "8002426", "video_name": "d6f7505c-d288-56ed-a09f-539625004e63", "text": "lovecraftian world with a big orbe in the middle, black and white, wide shot, "} +{"id": "6002483", "video_name": "4747937f-9ae3-5b28-ae53-cc1ee32182e2", "text": "a cartoon image of a peaceful riverside home, there lived a baby otter "} +{"id": "1004478", "video_name": "52fe6cad-d873-5fe9-8620-f87628fbcf3d", "text": "On a dreamy Christmas Eve, Santa Claus gave a small heater to a little boy sitting in the snow. The little boy felt very happy. "} +{"id": "1003036", "video_name": "37bd5732-a8a4-5d34-b511-12d3dfc2796d", "text": "Rati, determined and carrying a small backpack, strides along a winding path that stretches out before them. Towering trees create a canopy above, casting dappled sunlight on the ground "} +{"id": "2005056", "video_name": "90739ddb-1821-5105-b4ca-ad6390de635d", "text": "a large crowd at a wrestling event "} +{"id": "1004476", "video_name": "52e07f31-331c-5b96-8fba-9a43a6c3e22d", "text": "a frustrated man trying to ashore his colleagues. "} +{"id": "2007785", "video_name": "0fc48856-0472-5f67-896d-13d921c5aa99", "text": "Naruto defeats the villain in battle, powerful kick from the foot in motion "} +{"id": "4002048", "video_name": "a5e24abc-632e-5851-adc7-58ec11f5299a", "text": "1984 video, hot girl at a las vegas pool party "} +{"id": "1006208", "video_name": "71d2ce5f-de29-52c0-9636-165d14f4a856", "text": "Rec Room Paintball POV of shooting too paintball pistols "} +{"id": "4004989", "video_name": "7226dd3b-5c1c-5347-b64d-ea7634a5b1c7", "text": "construction worker in orange jacket and hard hat, professionally removing a manhole cover "} +{"id": "0005811", "video_name": "218ee88f-31ef-5869-a343-e59d5f65a1bb", "text": "a snow day in the jungle vector style "} +{"id": "2003317", "video_name": "abc463f2-5300-5014-8de6-9385a8b60c6c", "text": "sonic sonar ping on discord users "} +{"id": "7002075", "video_name": "0ef3f607-a1d5-59c3-98dc-2631a2d1efe1", "text": "a room is cozy with soft colors and stuffed animals.A young girl is sitting on her bed, reading a book. cat, lounges on the windowsill. "} +{"id": "0003874", "video_name": "450449cc-9777-5392-967f-d3211e5c2c59", "text": "a NASCAR driver celebrates with fans, in the style of Talledega nights, Ricky bobby "} +{"id": "4003258", "video_name": "dba567fc-2ab3-575f-a071-c14329b1a8d3", "text": "a 13 year old boy asking his mother to narrate the paused story.cinematic shot style Disney "} +{"id": "6003640", "video_name": "44e6e311-d35f-5a14-bef8-1bb3bf3b78aa", "text": "the keel of a big ship "} +{"id": "5001396", "video_name": "ef875d78-4c54-5f9d-81c1-0a1f7f9f2e16", "text": "An astronaut snowboards on the moon "} +{"id": "2007632", "video_name": "3de0930d-0885-5738-953c-7ea021c0f8cc", "text": "hot green chili field realistic, setting in New Mexico. "} +{"id": "5001564", "video_name": "9a95975c-dabb-5037-838d-d299d23d25bb", "text": "camera moving back and forth wabanaki looking at new land "} +{"id": "8003871", "video_name": "c25e7ab7-8e70-52fc-92f7-3bb48cfdb5bd", "text": "1980s male and female hippies kissing in weed heaven "} +{"id": "2005701", "video_name": "a1a25e7d-2fd5-54fc-8a58-0ca2550c8774", "text": "CATHOLIC PRIEST IN FRON OF HOUSE "} +{"id": "3005839", "video_name": "9ad6792d-a280-5b5e-9c46-7fcf1005c120", "text": "Inside the cave, the walls are adorned with ancient runes and glowing crystals, creating an enchanting and mysterious ambiance. "} +{"id": "4004715", "video_name": "15cf609d-7f3a-52c3-abb3-150fa8055e2f", "text": "A beautiful farm video shows a golden chicken laying a golden egg in the sun. "} +{"id": "3005064", "video_name": "d279daf6-aaab-53f7-87df-adf6a700d364", "text": "batman, standing in building, night city, joker infront of batman "} +{"id": "8001164", "video_name": "601445de-9821-5397-8b3b-8cd4d6fc5bef", "text": "Whispering winds carried mournful cries, and phantom footsteps echoed through its desolate halls. "} +{"id": "2004187", "video_name": "fe29a945-7775-5334-a3ff-dd043b7a3188", "text": "astronauts dancing on the moon crater "} +{"id": "4003359", "video_name": "7ceeb0c2-a358-5c1e-a1cc-b2f63f96c4d6", "text": "A tall young woman with swarthy skin, sky blue eyes, and black hair with ochre accents. On her head, accessories resembling cat ears can be seen. Her outfit consists of a black and red fabric top, short black shorts, tall boots and fingerless gloves, and a bunch of belts. On her arms, you can notice elements of gold armor: a shoulder pad, cuffs and gauntlet on her right arm and a bracelet on her left bicep. "} +{"id": "3004285", "video_name": "7f7edf3b-8db3-58d9-816c-62a67f1314c6", "text": "change only sea and sky leave ship Message: 1 Attachment "} +{"id": "3006142", "video_name": "1f9160ad-69fb-534f-ad2d-dbd24edc91b2", "text": "Porsche drives on the sand in a storm of 10 seconds mido. "} +{"id": "8003536", "video_name": "edcf2b78-9835-54d7-83d0-0a3731cf823a", "text": "a man running on thr hills wearing old clothes "} +{"id": "0005172", "video_name": "1601457e-d33d-5a64-8feb-df568a5fcf6f", "text": "eye level zoom of a sad ape sitting in the middle of a busy new york street with people walking around in the style of wes anderson "} +{"id": "8001683", "video_name": "7a37e514-b962-577d-a5ce-2f21c1db6b56", "text": "create a wild lifew animal video "} +{"id": "1006276", "video_name": "72e69158-0c52-517f-b31e-020c2b20cce7", "text": "people in a group talking about a birthday present "} +{"id": "6002023", "video_name": "314ba3f7-e867-5ad6-9551-d1ebd811c754", "text": "a road between the jungle , motorbike running in road , night scene , camera zoom in scene "} +{"id": "0006411", "video_name": "2bf08c29-5c2c-56e3-825d-f2b331d2a2c3", "text": "A young man sitting in front of a Buddha statue, looking troubled. "} +{"id": "5001301", "video_name": "c03ca43c-8ceb-50b1-bca4-557ca04db56c", "text": "child dressed in bear costume, taking cookies from cookie jar, kitchen, mom silhouette long shadow catches child in the act "} +{"id": "6002157", "video_name": "660ef419-be9e-5ecc-8629-65e902140d32", "text": "happy christmas is written on the sky "} +{"id": "1006195", "video_name": "716d16b7-684b-5c14-8621-3c163f97f84d", "text": "They were known for their strong bond and the love they shared for their father, a kind and wise man who was adored by everyone in the village. "} +{"id": "6003198", "video_name": "0eb6e950-38e3-58d4-bad8-47a125f2737c", "text": "Jesus turning water to wine Message: 1 Attachment "} +{"id": "7003662", "video_name": "104c9180-4039-58ca-9eb8-5b33a996e125", "text": "Dodge charger ss driving through quaint town "} +{"id": "8002357", "video_name": "001e551e-961d-5645-9d84-604bc820bbb7", "text": "computer screen capture of surveillance application software with multiple windows open of security camera live stream in industrial greenhouse "} +{"id": "7002827", "video_name": "ae09956d-c03f-59e5-ac71-d345f400ba24", "text": "close up of person sending text message "} +{"id": "0003836", "video_name": "4448179a-a189-5459-87e8-d8eba59acb64", "text": "city that is the equirectangular projection of an image in a big waterdrop "} +{"id": "3004410", "video_name": "d214f20e-fa31-55a2-9600-9aec520f7f0a", "text": "hamtaro characters that are destroying new York City stomping around the size of godzilla "} +{"id": "2006023", "video_name": "88c4c7e3-1388-562b-8969-72988d0bd033", "text": "Rolling Stones, Mick Jagger, Pencil drawing "} +{"id": "0003873", "video_name": "4502664d-f228-5365-9805-0347854c55b2", "text": "camera with an eye in black and white "} +{"id": "2004391", "video_name": "8f2213a5-2e39-5a5d-baf2-39c3c1297b88", "text": "kaspa coin logo happy and money there "} +{"id": "8002011", "video_name": "016eb515-7341-5772-9189-f1d8e2f6bc42", "text": "A lot of olive trees Message: Febrero (Font: MODERN) "} +{"id": "3003439", "video_name": "b9d38b25-7ee1-51f3-813f-68857408620a", "text": "Jews walking in the desert under the command of Moses "} +{"id": "1006212", "video_name": "71e785d4-557f-5800-87c6-b25520e3b3ce", "text": "the moon in the sky,the world is died "} +{"id": "6004178", "video_name": "0fc1b4dc-48ea-5e5a-b4b6-cb8c7465e39e", "text": "an army truck is following a man "} +{"id": "7002086", "video_name": "764deaf8-2b6a-5943-b86d-882bf059f7cd", "text": "Santa Claus is sleeping on the clouds "} +{"id": "7002300", "video_name": "e9fa64f2-dafe-5f4b-a33e-d88550702be1", "text": "slow motion, rain, lights turning on and off in the houses, neon lights flashing, cars moving "} +{"id": "7003438", "video_name": "316abe53-7261-5c60-9ff9-47cedb7183a4", "text": "Darth Vader ignites his lightsaber, the red glow reflecting in the churning waves. "} +{"id": "0004891", "video_name": "10ffb7e0-e28e-578d-ac2a-ef00aac90859", "text": "Acid rain, the water colour is green, everyone running to save their live "} +{"id": "3005362", "video_name": "b87d1b57-4f75-5381-8e88-9a4b3bebd61a", "text": "Unexplained sounds echoing through the desolate landscape. Otherworldly presence felt in the atmosphere. "} +{"id": "2003000", "video_name": "dfb5d39d-8834-5d73-90db-2f18dea86c42", "text": "A T800 Robot doing a Moonwalk with an explosion in the background "} +{"id": "4003754", "video_name": "d38a2a98-89df-5aad-8df6-2b18b2d30027", "text": "rocket crashing onto earth,night sky background "} +{"id": "1006000", "video_name": "6e3db641-01c2-536f-8ab5-bd88a41a6dce", "text": "Yellow flowers flying and the car moving in slow motion "} +{"id": "6002131", "video_name": "25d29596-ddcb-597b-98d8-f26133def4f1", "text": "An animated comparison showing two glasses of water, one hot and one cold, with a timer. The hot water freezes faster "} +{"id": "5001232", "video_name": "64c81dcb-cc79-54f2-96c5-d9447ed753b3", "text": "an image of the Championsleague final in 2050 "} +{"id": "0005750", "video_name": "208c8cbe-c58a-5b59-9c59-ca144bfc343f", "text": "the planet earth melts in space, dramatic, abstract "} +{"id": "8003992", "video_name": "5e1fb988-ff37-541a-8850-517cc55d2dfc", "text": "A big strong Zulu warrior holding ihawu and an asegai Message: Shaka (Font: MODERN) "} +{"id": "1006851", "video_name": "7d2ae678-8dee-5fc0-a403-80c49ccd6737", "text": "a cat and a snowman seeing the sunset together "} +{"id": "8002066", "video_name": "695f9475-d20c-5147-a21b-ee4c9496b1ee", "text": "Saw a large and mysterious book, full of strange symbols. The book attracted his interest and he opened it. "} +{"id": "3003836", "video_name": "021292d0-1262-53e0-bbb1-8c47f8b9a6a2", "text": "Dragon land on top of building. "} +{"id": "3004277", "video_name": "4a4b8f1f-0132-500e-a948-4adefc8e0616", "text": "a beautiful ground with lots of tree.and raining "} +{"id": "1005103", "video_name": "5e101765-8404-5937-bc47-88b800d91ebb", "text": "a boy and his grandpa eating food together inside home in 4k realistic "} +{"id": "2007992", "video_name": "afe9a928-bbeb-55d0-98e4-24d9fcc2df10", "text": "Dog in the restaurant with a jaguar enjoying spaghetti accompanied by a refined juice, restaurant with classic lighting and 20th century style ambience "} +{"id": "3006303", "video_name": "5388ba31-d629-5694-a043-073c3c842bfb", "text": "something making 3D on blender really hardely "} +{"id": "7003896", "video_name": "6a0f62d1-469f-5428-91b2-25b8331e87e2", "text": "1940s Video of an thin, tall smilling unsetteling old woman "} +{"id": "2007882", "video_name": "815fadfc-581d-5a05-b3a8-410bb4ea107f", "text": "wooden house of one floor on stilts in sunny weather 9:16 "} +{"id": "2007379", "video_name": "c56b663d-80e7-5a51-9053-6929e9775562", "text": "halloween cute Black Cat, disney animation style "} +{"id": "6004251", "video_name": "b16ca52d-366c-5dc0-88fe-d9bb27f2893e", "text": "Generate a clip of the moon as seen through a telescope "} +{"id": "2007242", "video_name": "b549e231-8587-5ddd-b848-7f829ca58dca", "text": "The drone rises slowly over a lush forest, with tall, dense trees. The sun shines through the leaves, creating a light and shadow effect. The drone continues to ascend until it reaches the top of a mountain. From there, a panoramic view of the landscape is visible. A river flows through a valley, mountains in the distance, and a clear blue sky can be seen. The drone moves slowly through the landscape, capturing all the details. "} +{"id": "1006756", "video_name": "7bb3d45d-0b8e-529a-9627-dde9ce0310a5", "text": "A quaint rural italian town, painting by makoto shinkai Message: Hombre misterioso (Font: MODERN) "} +{"id": "4004366", "video_name": "91097734-1714-53f5-9ee6-bc3b7f19183b", "text": "a video of all the attractions of riyadh as of 2023 for a tiktok video "} +{"id": "7002483", "video_name": "7dc0a720-142a-5801-968a-e3d5966826e7", "text": "create me a banner with a collection of steam and xbox games including gta v , red dead redemption 2 and another popular games with logos "} +{"id": "1003758", "video_name": "454c4d91-2e5a-5296-952e-476ccb60b041", "text": "finance, stock market, charts Message: sentiment (Font: MODERN) "} +{"id": "8002645", "video_name": "66066ae3-d4c0-5dd7-bed3-fc39c930dac3", "text": "a scene of a Forrest at night "} +{"id": "2005624", "video_name": "923028a6-2b11-599d-84ce-efc7e910585c", "text": "a person who controls a robot that carries a heavy load "} +{"id": "0003166", "video_name": "387b71b7-f280-5afb-a976-a2e62d289e2f", "text": "pixar movie style animation of a girl driving a toyota CHR "} +{"id": "5001305", "video_name": "fa326701-ccf5-5e36-b935-a22249e966ef", "text": "entrance into a busy taj mahal in Agra Message: SADUBAS (Font: MODERN) "} +{"id": "4003603", "video_name": "73809d2d-3946-59fa-939d-760debf1dab1", "text": "Blacklight paint, handsome, domeneering male portrayed as king in ICE temple, by Luis Royo, Vittorio Matteo Corcos, Karol Bak, Artgerm "} +{"id": "2007841", "video_name": "661d0157-d585-5cc1-814f-25348513b076", "text": "cyber steampunk character greenscreen background dreamlike,85mm,high resolution,8k, hd,full colour,8k,high definition,render octane, fine details, "} +{"id": "1003924", "video_name": "486ed618-bbbe-5a3f-806e-5abb09733c7b", "text": "beautiful woman with dark flowing hair wearing bikini with a sarong around waist, she is sitting on bowsprit of 48 foot sailboat while sailing across the Pacific with an island in the background. It is the magic hour for lighting. "} +{"id": "2003612", "video_name": "b2179f9e-eec8-532a-8d8e-bd9ca222d98b", "text": "hanuman flying in sky, above mumbai city, indian god, bajranbali, intricate details, cinematic light, photorealistic, octane render, 8k resolution, ultrarealistic, hyperrealistic, surrealistic, intricate information, raytraced "} +{"id": "4003176", "video_name": "7a7d6e7b-23db-5991-9005-740a4b160240", "text": "Enchanted Bubble Choir Animation Description: The water transforms into the backdrop of a magical choir as air bubbles unite in an extraordinary rhythm. Each bubble emits a subtle sound, and together, they form a harmonious melody that resembles an enchanting concert in an underwater world. "} +{"id": "7003986", "video_name": "9920abe6-cd76-5054-a6d6-53f4fc5340f0", "text": "iron man, cinematic and photorealisitc withspecular highlights, reflective surfaces and ray traced lighting "} +{"id": "2005036", "video_name": "91595905-9053-5a87-a598-9ebbe8c15c4a", "text": "at 300 mph shooting from camera FPV drone "} +{"id": "3003095", "video_name": "abead64f-8f8a-5696-ae48-b599bcc3dcf9", "text": "Maltese book ad, ad looks professional, movement of lights and camera, length 10 seconds "} +{"id": "0004774", "video_name": "0efce133-c865-58d9-8a0e-6619650c1da4", "text": "the amphibious people of West Virginia, 1960\u2019s soft core aesthetic, eerie, subdued colors, nostalgic "} +{"id": "0006534", "video_name": "2e558646-1ac6-5689-b2aa-ec2343630ebb", "text": "students in the photography studio shooting a magazine brief "} +{"id": "8001616", "video_name": "e94ab9e2-800c-5bcb-acce-3800f60f3b85", "text": "A reverse situation: humans inside cages, and monkeys outside, standing and watching "} +{"id": "2006283", "video_name": "9ded3079-7d35-5d0b-9cc2-8090d28882bd", "text": "grinch walking on a house roof, 1967 zenith color, closeup, satire, 1899 visuals "} +{"id": "8001680", "video_name": "46bd6e7b-548f-56cb-b5af-81cb83da1d78", "text": "IMAGE Zeus, king of gods, 8k, realistic and vibrant image "} +{"id": "2005018", "video_name": "bb475b07-6a0d-50b2-a8e0-e47deb060c47", "text": "create an animation fo zed the champion of league of legends "} +{"id": "0005689", "video_name": "1f7312e5-f19e-51dd-af05-f871adb99164", "text": "Developer with arda written on his outfit "} +{"id": "5001070", "video_name": "03c93ba0-f860-5610-9e75-c9137082c72d", "text": "A grand war scene, with generals charging ahead, horses galloping, and arrows flying in the sky. "} +{"id": "6002950", "video_name": "c7498b56-af0e-58b2-88b9-27cc6260e39c", "text": "an European flag waving over the White House "} +{"id": "3005567", "video_name": "ab590ed0-c765-5065-899e-5547c44e907f", "text": "Golden Roman sandals with a heavenly scene in the background "} +{"id": "6004337", "video_name": "0555481f-e54c-57ac-80b9-34fa4fae1969", "text": "Oil painting of a queen yent in a red French dress that hangs on a wall with wallpaper "} +{"id": "1003651", "video_name": "433e6314-fc92-5543-bbe7-e11bc608e0f3", "text": "a Hamburger with a face and a Hotdog with a face having a conversation with each other while sitting on a flaming bbq grill "} +{"id": "3005184", "video_name": "d2793e30-cf87-5114-971b-406909cb97f8", "text": "a vast 3D rendering of a cosmic nebula, a cloud of gas and dust in space. This is the birthplace of stars and planets. It is in dynamic motion, all the elements are exploding "} +{"id": "8002350", "video_name": "f8206c1d-90e2-53c6-9beb-2ff26bba06c3", "text": "Car With Wings Is Flying Through The Capital City In Azerbaijan "} +{"id": "4002268", "video_name": "a0bdcff0-c4d8-54d8-9bf1-df726d8162e8", "text": "a young red haired woman with a scar across her eye throwing a fish on someone else outside "} +{"id": "3005601", "video_name": "0db151d0-58e8-5f9a-a2e3-99b5d2beec16", "text": "penguins aruging in the senate of penguin world in the Republic of Penguinica "} +{"id": "3005395", "video_name": "4667bad6-1477-557f-bc22-b36459f49927", "text": "a ghost hiding in the shadow, dark office, 4k "} +{"id": "1006574", "video_name": "786edf8e-41b6-5186-8f1a-296b78edfbec", "text": "a bee landing on a beautiful rose camera zoom out "} +{"id": "1004808", "video_name": "58ded41d-dfae-53a9-a5dd-ebcb4a6c41a8", "text": "the logo engraved in a Server Hositng Message: Menticore Attachment "} +{"id": "1003557", "video_name": "41925fa9-4043-5c7e-82a3-94e09279976f", "text": "The screen is shrouded in darkness, and the sounds of a bustling city come to life. Neon lights flicker, and car horns create a chaotic symphony. As the camera pans over the sprawling urban landscape of Cape Town, the noises of daily life are met with the soft whisper of unmet healthcare needs "} +{"id": "1004870", "video_name": "59f7966b-199a-53f0-bc51-7eb5a72033c0", "text": "popeye and 10 stormtroopers surrond darth vader "} +{"id": "1003244", "video_name": "3bc0a52c-0419-51b5-b73a-08800caf13bb", "text": "Invoker from Dota 2 makes a procast with rfrshr and aganim and two mitiors "} +{"id": "7004391", "video_name": "fbcda91e-a673-55c0-9b07-cfc0fa731a2f", "text": "create a scene where a man is drving a car and from sky clouds are red in colour and its raining blood "} +{"id": "1006090", "video_name": "6fa39ee3-faed-5dbe-93b7-82c719eccde1", "text": "video of 2 stick man fighitng "} +{"id": "2007257", "video_name": "83c5cf0b-7843-53c5-bec7-34564030bda5", "text": "one small cute dog is eating a bone at home "} +{"id": "2006788", "video_name": "7d120dcd-0510-506f-867e-4bfc9008a886", "text": "bronze lion use its hands to surround a micro city "} +{"id": "2004257", "video_name": "9923d1de-5cc1-5546-bd1c-e728842fc6aa", "text": "In the future city, skyscrapers are surround by clouds, clouds moving, low angle, Science fiction style "} +{"id": "0003748", "video_name": "42b0be2c-9e4a-521a-8bb6-fca93a9a2290", "text": "An young Indian girl unwell lying on a bed, her elderly mother sitting next to her and taking care of her, 3d art, 8k, ar 9:16 "} +{"id": "3003680", "video_name": "902ce1da-62e5-5110-8271-2a012f42a2b8", "text": "LADY GAGA and Yoko Ono screaming on stage "} +{"id": "0004219", "video_name": "05466e9c-c2b9-56cb-931c-1d404bc338b9", "text": "baby running on the beach, sunlight "} +{"id": "4002430", "video_name": "d7098495-dbb6-5465-a7d2-9114698887bd", "text": "Luminescent spirit creatures dance joyfully across the starry Milky Way, leaving trails of stardust in their wake. By Android Jones, Astral Vibes, Akashic Enigma "} +{"id": "4002131", "video_name": "7be617b3-eddd-538e-a37f-afa41ef831e8", "text": "There are shopping malls on both sides, The flow of people flows quickly in the middle "} +{"id": "1005309", "video_name": "618353c1-fb3e-50c0-9964-a6defa5203a4", "text": "melting mango fruits. abstract.patterns. weird. psychedelic "} +{"id": "1005975", "video_name": "6dcf2ea0-70f6-5d7d-a771-7cd31f423c5f", "text": "A marathi man playing cricket with football in Newyork "} +{"id": "8001119", "video_name": "df71256b-534f-5dda-bf7b-49aa8fe60f1e", "text": "neon lights fading and sliding around "} +{"id": "0003084", "video_name": "36b805b9-15b2-5fd2-ae78-57c29e574c1d", "text": "an inspirational video centered around the exciting world of formula 1 racing "} +{"id": "3006652", "video_name": "7148bd71-c5aa-5e2e-99c4-d7da7c52c4e8", "text": "The islamic girl was so amazed face style "} +{"id": "3006031", "video_name": "52a76891-7e58-56bf-ac6a-8917219a12ca", "text": "The king in his palace, hearing about the magical golden goose. "} +{"id": "5001363", "video_name": "14168699-4c11-50a5-9917-7381ca6d7f87", "text": "An ethereal, magical land with sparkling streams, enchanted trees, and colorful flowers. GLOWBERS, small creatures emitting soft light, flutter around. The blue sky, sparkling with distant twinkling stars. "} +{"id": "7002522", "video_name": "89996294-a06b-5b3a-a5cf-b26ac0108e0a", "text": "old clock, vision approaching the clock, and when it gets close, the clock strikes midnight "} +{"id": "2005894", "video_name": "0da21a6e-b60e-5e02-82a5-92c33713ff1a", "text": "dust floating inside room, zoomed, extra realistic, 4k "} +{"id": "7004077", "video_name": "c92a3d78-44e1-528f-a133-3f20c3bb17ae", "text": "An image of the spiderman walking standing on the top of the building watching the new york city with high quality of image and shadowing "} +{"id": "4004251", "video_name": "febb839d-72cc-520a-a8c5-3e9defad0ee1", "text": "octopus with one thousand eyes crushing a boat in a storm "} +{"id": "2006967", "video_name": "7361e5d7-033d-543b-a1d1-dcb898407765", "text": "A Christmas scene can be a winter scene with falling snow, and a Christmas tree decorated with lights and balls in the distance. There may be some gifts under the tree, and a group of people surrounding the tree, exchanging gifts and greetings. Bright stars hang in the sky, and warm lights set off the snowflakes "} +{"id": "0004812", "video_name": "0f8bc46c-9d2c-583f-8657-ad95d032864f", "text": "A 2023 lawyer in a technologically advanced office, working on a computer with multiple monitors. He pauses for a video call, interacts briefly, then shifts focus to analyze data on another screen.\u201d "} +{"id": "4003841", "video_name": "795949b1-e21c-5bf4-8816-ed0efa35b932", "text": "a family going through very hard times and hardships in life. "} +{"id": "0003556", "video_name": "3f8a71ab-72e1-5cf2-973f-602b9689040e", "text": "Use ambient sounds to create an immersive atmosphere that envelops the viewer in the intimate environment of the characters. "} +{"id": "1005400", "video_name": "633a2bf3-13a9-58de-916c-bd06beaca8ef", "text": "Google robot smile and find the top website "} +{"id": "1006387", "video_name": "74d1e2c1-30d1-59cf-bb9a-971628a90a60", "text": "Share your favorite cinematic moments featuring a river in the rain. Discuss the visual and emotional impact of the scene. What elements make it truly cinematic? "} +{"id": "8001334", "video_name": "e400cf4d-dde4-509f-b280-2d3e7eceaa65", "text": "Person picks up a letter, holding it close to their heart "} +{"id": "3005570", "video_name": "d9898534-bcef-5e80-954a-6571a62aa54e", "text": "ethical hacking with black hat sitting infront of laptop with cyberpunk style and deep thinking "} +{"id": "2004753", "video_name": "1de2ee58-f9f2-5b83-bab5-7b2b4c80baeb", "text": "Japanese metro, stunning render, unreal engine, 8k, architectural masterpiece "} +{"id": "7003013", "video_name": "5f6a6364-3ac1-5f1d-956c-decf710397db", "text": "a teen aged boy roaming around the streets of a town in search of a girl, sunset, romantic scene, windy, boy wearing a huddy, sad and romantic "} +{"id": "7002623", "video_name": "f75e83b7-5d84-5cc7-81bd-2c90538c4438", "text": "3d animation of an interviewer lady with brown hair and brown eyes wearing a suit entering the warm, comfortable living room with minimalistic furniture where the middle aged man with black hair and green eyes is sitting "} +{"id": "3006235", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "In a quiet village surrounded by fields of green, two friends, a brave boy and a clever girl, lived their days dreaming of adventures. "} +{"id": "3005381", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "fir trees forest in the mountains "} +{"id": "6003741", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "cinematic, bird eye view shot of deep narrow george between himalayas "} +{"id": "3003851", "video_name": "13120b68-2623-5b76-8718-c03b1ae44d46", "text": "if jetix and cartoon networks combined "} +{"id": "0003223", "video_name": "3991e589-b541-54e2-985e-709f6a1c2994", "text": "joe biden riding horses with outlaws "} +{"id": "2003472", "video_name": "5aaa4e52-81db-5831-94a1-c1665e03d61e", "text": "the boy talking camera right to left angle Message: 1 Attachment "} +{"id": "7004193", "video_name": "a9b14fdd-771d-5c67-89f8-6cc6cbc1e93e", "text": "Hanoi seen from above, vehicles traveling, with people passing by "} +{"id": "8002651", "video_name": "a3efc7a9-8bc8-5c18-aeb5-f6390488c797", "text": "Anand explained the Narasimha Mantra meaning to villagers "} +{"id": "2007470", "video_name": "0423417e-8a77-5e45-ace1-8743488905c7", "text": "I walk a lonely road The only one that I have ever known "} +{"id": "2005075", "video_name": "6381f6e4-485f-5104-a39c-0b3bdd285c45", "text": "a man walking in the style of a rave party in a 2d shooting game setting similar to Cup Head, very colorfull, intense, and cheerfull "} +{"id": "5001011", "video_name": "0be6d47e-4c9f-5e3c-8459-a6d56bf38e6e", "text": "anime man with sword and fire power "} +{"id": "1006442", "video_name": "75ed5823-d8fa-5aad-8887-04c79972764f", "text": "James Revelation.\n James, with a serious expression, is about to\n reveal something important. The camera focuses on\n faces of him, transmitting the tension and\n anticipation in the scene. "} +{"id": "6004058", "video_name": "e780eca9-0a80-5184-aff8-552c523d824c", "text": "A mushroom grew on the roof of the house "} +{"id": "4002381", "video_name": "3879eb02-ed54-5b7c-ba33-cdecb818cc09", "text": "album cover adais dall metastar in riverport tavern strip club "} +{"id": "2007006", "video_name": "367fa20d-16f6-5f24-b473-772e252acd78", "text": "The elephant was shown walking in the jungle "} +{"id": "0005431", "video_name": "1ab4ba5c-9703-50f5-a62f-768e7f5653ed", "text": "The water moved, the smoke stirred Message: 1 Attachment "} +{"id": "2005660", "video_name": "efa18613-d084-5ca3-8c51-d32c32182140", "text": "Whole view on Geneve Switzerland and genf Genf Lake with crosshatching "} +{"id": "6004157", "video_name": "4a05616f-f84a-5b2e-adb1-47db18989bf7", "text": "Doraemon transforming into a massive robot "} +{"id": "6003711", "video_name": "004f293e-cdfa-5e69-b40e-60cb9d61bc5b", "text": "When he pounced on the mysterious feather, his fur brushed against the vibrant petals, creating a picturesque scene. "} +{"id": "7004389", "video_name": "9e98f5a2-4f37-57b4-bfb0-fd5624850cd1", "text": "a dead and dry cow in th fog at night "} +{"id": "8003398", "video_name": "09d6899b-0a49-5499-be73-4c18834c72c4", "text": "cat sleeping close eyes, open eyes "} +{"id": "3004464", "video_name": "b546d938-6d0f-5b1e-ae75-91b55f0bc63c", "text": "Fantasy, old town, tavern, street, dark purple, mysticism, camera movement, animation, landscape, realistic "} +{"id": "1004235", "video_name": "4e6e17aa-dce1-5869-a498-2c9a0d651537", "text": "An old man was walking for exercise, a little yellow chick passed by, the little chick bowed to the old man, the old man nodded happily and greeted the chick back. "} +{"id": "6004043", "video_name": "1f618fc2-8533-57f7-8126-5bef6d01be51", "text": "eyes shifting, smirking, blows a kiss "} +{"id": "0006182", "video_name": "27c9ae7f-cb9d-539a-bb8a-bf91c895c664", "text": "two anime characters girl and boy are arguing each other. "} +{"id": "7002802", "video_name": "4cccb557-83b6-5427-9fd5-bb2c25389511", "text": "Portrait of female succubus with black hair and glowing amber eyes and horns, dnd, fantasy, intricate, elegant, highly detailed, digital painting, artstation, concept art, smooth, sharp focus, illustration, art by narcisse navarre "} +{"id": "4004752", "video_name": "2f91192c-b054-5e9c-b5b2-bebc4acde147", "text": "Gym to improve health, pin room, 16:9 "} +{"id": "0004600", "video_name": "0bb71bc2-a802-5e14-98f0-67b9f7787d33", "text": "a view from the surfer who is riding a huge wave at the sunset Hawaii "} +{"id": "4004024", "video_name": "33a8911a-186e-5056-8c08-943b1ec60abf", "text": "taxi driving in NYC , motion "} +{"id": "4004505", "video_name": "2082db58-c464-5de6-b294-a09c5d59e282", "text": "a small toy like 4 anta clauses climbing a lamp toy hanging on a ceiling and very happy and excited "} +{"id": "6003718", "video_name": "9a1c41d8-fa30-5fb3-9e29-26d091b894d2", "text": "A magical kingdom with whimsical architecture. "} +{"id": "0004667", "video_name": "0cf86a02-5365-5f2d-96e1-be6e8a0585c5", "text": "Ms. Y My is cooking for the aliens "} +{"id": "2005287", "video_name": "2afa5ce5-ee35-56c2-b817-86f2da8717bb", "text": "The town crier announces the royal ball, creating a sense of excitement. 3d animation,4k resolution, cinematic adventure, kids story, 16:9 "} +{"id": "2007843", "video_name": "d51f0d61-7d25-525e-87f0-937ffc6351d6", "text": "moss hunters in diy gas masks creeping through the dark forest hazy misty ethereal "} +{"id": "3006328", "video_name": "ea57f003-f40d-5387-aea0-dfa715fbca47", "text": "The Mosque in the Mountains\nThe camera frames a serene view of a small mosque, nestled within a picturesque landscape of towering mountains. The quiet atmosphere is disturbed only by the sound of the wind rustling through the surrounding trees. "} +{"id": "7004277", "video_name": "5ca40ce4-35ac-5273-87d5-da4a81e13a20", "text": "In Hokusai style, a summer tree without any leaves "} +{"id": "7003787", "video_name": "adb5f1eb-bd09-56c4-97e8-33aee5db625b", "text": "Naga siren from Dota 2, running away from enemies like a rapper "} +{"id": "1006789", "video_name": "7c63e6ac-b31f-5a11-a146-83df12e6e012", "text": "a ghost seen in a cctv footage of New York subway "} +{"id": "7002050", "video_name": "5f294731-7c73-54c6-a289-1cb7fb7be4d3", "text": "Lakshman accepted this task with respect and ended many demons, as a result of which sage Vishwamitra gave them many divine weapons. "} +{"id": "6003411", "video_name": "d9be6986-b2eb-58ad-acff-2adc27384a6e", "text": "sacerdote usando sus poderes de sanacion estilo world of warcraft "} +{"id": "5001424", "video_name": "a54c37fb-2d81-50a6-a595-e27c06eb2d96", "text": "Books, university, coffee, girl Message: Paula Mangas (Font: MODERN) "} +{"id": "2007568", "video_name": "daea8d3c-fac4-5c47-989d-cdd557bff14f", "text": "talking man with blinking eyes Message: talking (Font: MODERN) "} +{"id": "7002564", "video_name": "81bf9f28-2962-5a95-bd34-8e01015c5122", "text": "Life, a surreal sonnet sung in silence, encapsulates the grandeur of insignificance. In this cathedral of chaos, "} +{"id": "0004589", "video_name": "0b9e8598-a61b-5052-b34b-660c4b313c20", "text": "Create a video about camping with portable power station "} +{"id": "6004292", "video_name": "464279a7-4404-517e-8760-e2e30dc8077d", "text": "child in a hospital waiting for blood transfusion "} +{"id": "2005716", "video_name": "9fcf3ea9-0fa4-5add-bca9-f0e7178f39f7", "text": "2d animation styel , a cute little girl walking in forest and she is so happy "} +{"id": "8001027", "video_name": "242fffb5-88a8-5849-a08c-efc8dab84d98", "text": "a geisha sitting in the forest floor reading a book, grass field, big moon in the background, Ultra HD Render, hyperrealistic, Digital Art, cinematic landscape "} +{"id": "0005056", "video_name": "13db0004-daae-5383-8405-5faf0be3b31b", "text": "Lily carrying a pail of fresh milk from the barn, her apron dotted with wildflowers. "} +{"id": "1005971", "video_name": "6daa5127-ae10-53e8-aafc-183861f72766", "text": "A person becomes a flash of light "} +{"id": "2005906", "video_name": "e5b6b020-5056-5c75-b8ea-e8711dd7035f", "text": "an isometric animation minimalism liminal space a limosine going into a garage, black and white, dolly in slowly "} +{"id": "1005851", "video_name": "6b92b819-3808-5e15-9811-db4319b4a619", "text": "opening sequence for iraqi news show "} +{"id": "7004984", "video_name": "4ff73819-b60b-535b-af2c-f620871f00c5", "text": "kung fu panda, po, panda fighting a tiger, animation, animated movie, highly detailed "} +{"id": "0004544", "video_name": "0af83140-ea30-506b-b7c1-796c9652d2e8", "text": "a man in a dark habit walks in the woods at night "} +{"id": "0005453", "video_name": "1b03a593-aa9d-5d54-b4ea-ae1b357d02fc", "text": "a pile of pizza boxes on a fondi table a big party 8k realistic, camera rotate 90 degrees Message: pizzaDAO (Font: MODERN) "} +{"id": "4003379", "video_name": "5cc48c0c-abcd-5e43-82c9-1770611c69a2", "text": "a painting of a sailboat in the ocean at sunset, a detailed painting, by Yang "} +{"id": "3003944", "video_name": "17d9756b-795b-55bc-96e8-e1eff330aecb", "text": "muscular man walking through mountains, sunny day, forest in mountains, clouds, hdr, 8k resolution, shader, global illumination, perfect shadows "} +{"id": "1003563", "video_name": "41b24dc8-2b1d-52a0-9e28-bc25150a1d57", "text": "flying wales emerges from clouds in a dramlike scenery "} +{"id": "3006548", "video_name": "9d29e938-3fab-5859-a9d6-90094252f0a9", "text": "5 beautiful woman standing and having poster in hands, one woman one letter Message: SAMBOT (Font: MODERN) "} +{"id": "0003983", "video_name": "010b0417-3580-5007-80b3-d95dc6a8cd0a", "text": "d dark fantasy retro style knight walking into a hut in dark forest "} +{"id": "0006773", "video_name": "32d913e9-be34-54b3-b068-3e26b995ec73", "text": "The dragon was always up for an adventure, so he agreed to help "} +{"id": "2004283", "video_name": "33d5f444-35dd-565d-a8eb-f2bb83cfac28", "text": "Mexican mariachi character, 90s Japanese anime style in an action scene. "} +{"id": "7004042", "video_name": "e111e9d9-fef9-57a0-a6af-a06cf654416c", "text": "Kofi and Simba together throughout their journey. These could be images of them playing, bonding, or sharing moments "} +{"id": "0003131", "video_name": "37adbe60-43e9-515e-aff5-47796af007c9", "text": "vintage radio in room outside raining "} +{"id": "1005748", "video_name": "69c80052-23ca-5b78-8ce3-06a6e6e4601b", "text": "Mitsubishi Galant rides on a serpentine and on one of the turns it loses control and crashes "} +{"id": "2005911", "video_name": "b330c008-e8e3-5dc3-bcfd-a1857ee747c4", "text": "Video of an advertisement for a Kebab where the workers are of Pakistani origin "} +{"id": "0004122", "video_name": "03900473-54cc-50f5-acec-de4758aec38b", "text": "Slowly moving clouds in an orange sunset sky "} +{"id": "8001044", "video_name": "799a9160-f7b8-597a-afb0-c5b8eb30ae95", "text": "panda walking fast in the golden bridge "} +{"id": "8003948", "video_name": "ffc60cc8-d527-5562-9deb-51cff0c1cde4", "text": "Romantic Starry Sky Marriage Church Marriage "} +{"id": "0003357", "video_name": "3c261c24-02c9-5808-81c7-1f921640e4be", "text": "girl run in the club from the fear of boys "} +{"id": "2005125", "video_name": "d0e88b07-1ed8-56b6-b5ae-1beb9b4e3183", "text": "As Tom strolled through the food stalls, his eyes widened at the sight of a towering cheese pyramid at a cheese shop. Unable to resist his feline instincts, he approached the cheese display, imagining the savory taste of each wheel. Little did he know that Jerry, ever the cheese connoisseur, had his eyes set on the same pyramid. "} +{"id": "2004986", "video_name": "d5f890cf-2fe4-5e8b-ab90-f3bfd4bee63e", "text": "a purple Sky with pink clouds, clouds moving, with letter love,realistic, 4K "} +{"id": "0004109", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "Batman with a future hi tech armor with nanotechnology and cape "} +{"id": "0003938", "video_name": "0020a809-e8f5-5899-a9e6-aacb7090d551", "text": "an astroid hitting the earth and earth affected partially from astroid "} +{"id": "3003155", "video_name": "384ea18b-ed34-5db0-b34b-d8cb2ffb051e", "text": "a family eating a pizza on restaurant. Photo made by newest Cannon , high detailed , high resolution , style: anime, bright reflections "} +{"id": "8002297", "video_name": "b3b858af-c792-511a-9c4f-28edc5d66d30", "text": "a bear and a hedgehog walking in a forrest. "} +{"id": "3006463", "video_name": "27ecd801-61fc-5286-a42c-aee05ac44c1b", "text": "A group of children playing in the village square, their carefree faces reflecting the peace and harmony of their surroundingsCinematic, Unreal, 3d art "} +{"id": "0006920", "video_name": "35580bd4-84a0-518e-8972-62b2984e610b", "text": "A indian boy explaining villagers about science project in disney pixar movie style "} +{"id": "1006226", "video_name": "722e7ac7-4e3b-57a2-b18a-eb933bed6fa3", "text": "a bowl of Hot smoking maggi noodles in a yellow bowl with various toppings camera zoom slowly. "} +{"id": "7004975", "video_name": "a6fdd4ca-dc12-5a89-b0ef-b75a2123f2f6", "text": "clouds, rain, splashes, clear pool, koi "} +{"id": "1005158", "video_name": "5efedeb7-1d92-5e3a-a4fe-6491f27b01ea", "text": "a multiverse god bubble transforms into lady inside bubble, realistic, live "} +{"id": "7003910", "video_name": "f495b428-67e8-5ec7-a16d-8f9243994014", "text": "A group of brave civilians, led by a determined young woman named LUCY, gather on a rooftop, looking out over the chaos unfolding below "} +{"id": "3004786", "video_name": "84814366-b45c-5411-b269-dcc3e4684448", "text": "an old bullet hitting a map, realitc,world war 1, 4k "} +{"id": "3004809", "video_name": "a9ebf899-e98a-558e-9fa0-ecf4e5de9f16", "text": "lord Jesus Christ stand alone in front of universe ,his face is smiling,rays coming from his body,8k,3d style,10 sec "} +{"id": "5001196", "video_name": "c977595f-ea5a-5c14-b319-5185d5172604", "text": "Chinese woman with a shampoo realistic "} +{"id": "0003297", "video_name": "3b2912dd-3f60-57bd-94a7-e01f5605fa40", "text": "A Chinese dragon coiled in the clouds, blinking its eyes "} +{"id": "3005750", "video_name": "98d96043-6ebf-59e6-8fa9-b180629a7989", "text": "Transition to a dimly lit medieval library, with scholars poring over ancient manuscripts "} +{"id": "8002611", "video_name": "2aa55fe8-8350-50e5-9986-1fa106196df3", "text": "a man is talking to a man in costume "} +{"id": "8001080", "video_name": "28b33e59-3ef2-560b-936a-99d52a2e3eed", "text": "a Trailer about spiderhans that live on Helicopters the main character is a green Lizard "} +{"id": "3003110", "video_name": "4f347ba9-8a9a-528f-94f2-1997c2bd0ab3", "text": "vector 2d image bangali mom and daughter in kitchen "} +{"id": "0005677", "video_name": "1f20a0da-b53e-5c55-8367-0fc342c06b69", "text": "Kids happy happy living in village with their parents "} +{"id": "4003989", "video_name": "133c723c-0a55-5125-a068-fa9a620f1217", "text": "AI portrayed as an intricate, glowing, fractal entity evolving and maturing in an environment inspired by baroque architecture. The Ai is casting prismatic reflections around, symbolizing the spread of knowledge "} +{"id": "3006933", "video_name": "a6fc77df-eb22-5a3a-a5e9-61ed2ff8ce63", "text": "Turin city from the top by day "} +{"id": "6003594", "video_name": "1d6e876c-974b-548b-adb2-1fd4b5d81c11", "text": "young androgynous character going into a rabbit hole and feeling more and more isolated "} +{"id": "8001538", "video_name": "e0f0bcbe-d662-5712-84f6-0d9c34eb4867", "text": "frozen wasteland with a castle with knights and archers, close up,frozen wasteland with a castle with knights and archers, close up, "} +{"id": "7004725", "video_name": "09793ebe-fb26-51f0-8e34-95d2fbb0e008", "text": "animated Wheel of Dhamma logo 1920x1080 "} +{"id": "0004452", "video_name": "0955d5f8-e048-59aa-91c9-8c0f8fb3dad5", "text": "walking toward the mass riot close up motion 4K 16:9 "} +{"id": "0005057", "video_name": "13de93c1-c498-5aa8-b976-50222fe7a44e", "text": "Four people make a plan, dressed in astronaut suits\u060c HD 8K resolution "} +{"id": "0005836", "video_name": "21f9bc62-7cea-5117-8040-a4335216fe20", "text": "a disease spreading on a microscopic level "} +{"id": "0006812", "video_name": "33837e2e-3685-5dbe-861a-34205fb122d7", "text": "Tiger roaring with tricolour orange, white and green "} +{"id": "5001245", "video_name": "7a7a517a-f289-5b94-915b-cc577b8d754b", "text": "worst nightmare ever imagined by AI "} +{"id": "8002113", "video_name": "7876fa4a-6e0d-59e2-a268-801f6bf54ea6", "text": "The character walks to the front Message: 1 Attachment "} +{"id": "2007891", "video_name": "f61fc20f-1ae7-57c7-9815-5ca781715240", "text": "six friends individual coming out side a big company with style "} +{"id": "0006108", "video_name": "26bab828-f036-550a-b891-6ca2ea50ee4e", "text": "One day, as dugong Danny peacefully grazed on seagrass near a coral reef, he noticed a young seahorse named Sandy struggling in the current. Sandy, with her tiny fins, was having difficulty navigating through the water. Danny, sensing her distress, swam over to offer assistance. "} +{"id": "0004914", "video_name": "115b5f98-b8df-57de-aabe-a3313371b5dc", "text": "Chinese Muslim traders doing business in 7th century market , 4k resolution, photo realistic images, 9:16 aspect ratio "} +{"id": "2003633", "video_name": "504e9b8b-cc6a-5424-b922-a6e3b7a1c6c5", "text": "3 guys muslims with novice face ready to perform shalat "} +{"id": "7003958", "video_name": "f6e21889-09f5-5a4a-856c-45f11063b5f9", "text": "Avoiding unnecessary waste. Sometimes, our ideals and expectations may not align with the reality "} +{"id": "3006291", "video_name": "0f3c29ce-1475-5673-919c-44989981e820", "text": "A lone man in a dark robe walking away from a huge and burning field with corpses everywhere "} +{"id": "6002552", "video_name": "0f1f8c51-e146-5fae-81d0-c4a03d6e603b", "text": "minecraft steve dissapearing inti small dust blocks ,atmospheric "} +{"id": "7004383", "video_name": "31f751e2-a544-5665-810b-85e774780b03", "text": "attempting two get 3 points will doing kabaddi raid and successfully getting three points and celebratiing Message: 1 Attachment "} +{"id": "2006057", "video_name": "6d2e4f02-a18a-5d48-9e51-42bf6ff469b7", "text": "A calm beach with a bright moon hanging above sea level, boys fighting in mechs, girls sitting on the ground crying "} +{"id": "3003811", "video_name": "0b04145d-fb25-5f2b-abf9-f16fad295ee0", "text": "A horse walks in a spacesuit on Mars and looks at the Earth from Mars "} +{"id": "6002533", "video_name": "d0a01848-f8d1-5628-a6c6-f1f778c5c1cb", "text": "view from space, you can see the whole Earth and an asteroid impacting it "} +{"id": "0005738", "video_name": "20659f9f-2038-5065-a1b3-a38663ca7594", "text": "children crawls out of bed, yawns and stretches, trying to wake up. "} +{"id": "6002032", "video_name": "5e5ef75f-f0e2-574c-8955-1c8d1faccd47", "text": "An old man in an old hat slowly raised his hand and pointed at the sun about to go down. "} +{"id": "2007681", "video_name": "02be95ea-3680-5adb-83c7-52d724170678", "text": "a lion sleep next to other animals "} +{"id": "8001233", "video_name": "e087a9c8-f69e-5c2f-a065-85cd9239adf1", "text": "A beautiful woman takes a Shiba Inu for a walk "} +{"id": "5001262", "video_name": "e8e0fcf3-c272-591e-9a35-f7d85f256161", "text": "Beautiful girl with long hair and sword in the bamboo forest "} +{"id": "3005707", "video_name": "3626deec-a6e6-5d1c-8d6d-168d5f2888ac", "text": "A galaxy with billions of stars and planets "} +{"id": "8001403", "video_name": "df28d760-3aaa-5b4c-9595-f19ae65ec5eb", "text": "beach waves crashing to the shore and leaves swaying "} +{"id": "0005130", "video_name": "155b3a06-23e8-5c13-8856-16ff44502ed6", "text": "initials B.M.L. as a professional logo, all gold with black trimming "} +{"id": "4002251", "video_name": "f4522fa8-f767-5a1c-a513-86641337b4d1", "text": "Red knigh walking on a hill, camera spinning "} +{"id": "3006924", "video_name": "4f7c8785-6d11-5b43-b118-489433427a46", "text": "parents fighting over while kids are watching "} +{"id": "6004209", "video_name": "fcffd6c9-b5a3-5180-8f77-191cd7ac9c01", "text": "A refreshing water from a glass adorned with sparkling dewdrops. "} +{"id": "8003658", "video_name": "11808cfd-8808-53cc-a322-6e4b49b610d5", "text": "a heron flying with a green background for chroma key "} +{"id": "0005885", "video_name": "22cb09b0-ed00-5ab2-a6b6-f7a1a292f2cf", "text": "a 21 year old black guy driving a Lamborghini, Highly detailed, gs5 "} +{"id": "1003686", "video_name": "43f09c66-b29a-5266-9d50-0f08e0cce991", "text": "tuxedo cat playing with a basketball, 8k, ar, 9:16 "} +{"id": "3006325", "video_name": "23fddc19-53d2-57f8-9206-2f9f22542355", "text": "The farmer, unable to read or write, often observed people using spectacles to delve into newspapers and books. He yearned to emulate them, to unlock the secrets held within those pages. A longing grew within him to venture into the city and acquire a pair of his own. He shared his aspirations with his wife, who offered her unwavering support. "} +{"id": "2003271", "video_name": "9f8919ee-31e4-5150-8f77-d67b8d2fa255", "text": "the boys laughing. sheep eating the grass. one bird flying in the sky "} +{"id": "3005868", "video_name": "5af40d50-5c32-591c-8c4d-7a8d3d69d45f", "text": "Golder christmas decorations in the snow, pink gold, diamonds, pink beauties, booths, minimalist urban landscapes, liquid light emulsions, soft and dreamy atmosphere "} +{"id": "2004501", "video_name": "5cd00769-7683-5d63-b2f2-9232364bc6c0", "text": "create a Bmw e36 M package where drifting on the road the background should be animated in anime "} +{"id": "7004345", "video_name": "7527f36c-08cd-59be-98e6-b48756f2aa7d", "text": "a soldier sorrounded by enemy soldiers fighting last moment 9:16 "} +{"id": "6004344", "video_name": "b488e227-5303-5c56-b9d9-56c47a3dd6a7", "text": "a space man jumping between asteroids "} +{"id": "8002844", "video_name": "ae31886a-c9b9-54ef-aaaa-ee06dcc148d3", "text": "space man in sky, vector art "} +{"id": "1006854", "video_name": "7d32b85b-c65e-54bb-99ba-6f1fbe70ea1f", "text": "cyberpunk city man walking in 1980 "} +{"id": "0005262", "video_name": "177ae7bc-bdd4-5c43-8f8f-228d0675cdce", "text": "cars in rain in big city "} +{"id": "8002114", "video_name": "e27fc794-3696-5e83-84d2-edcbea0ff714", "text": "Goku walking in the forest with a hamster "} +{"id": "0003171", "video_name": "388c610e-221d-5c79-afa7-9fae9c72195a", "text": "sport car moves on high speed in neon city "} +{"id": "7004162", "video_name": "da78d76f-bcb5-5dbd-8954-22a238936088", "text": "is distinct light beams on the image. It is used in photography to increase the sense of volume. "} +{"id": "1003186", "video_name": "3a9d75b1-92fa-5deb-bbb7-18c2a3936995", "text": "swan speaking to the crow 2D Animation "} +{"id": "3005572", "video_name": "64dd5753-2054-55e6-ba8f-c1093bd74a58", "text": "Together, the three friends Sparkle, Bella, and Ziggy explore the enchanted forest, the sparkling river, and the laughing mountain. Along the way, Whimsy makes friends and gains powers. Each new friend added a new color to their story. Message: story (Font: MODERN) "} +{"id": "7002874", "video_name": "91478948-d7c1-54cb-903e-42b15ad84522", "text": "moving hair , eye blingking , smiling , flower is moving slowly "} +{"id": "0004361", "video_name": "07bc5f3a-d521-5d73-8c45-40e842bca9f5", "text": "animals running around in the kingdom ground "} +{"id": "4004017", "video_name": "6f502c58-60f1-5209-b9e7-4e544bc29788", "text": "A boy dressed in a midnight blue suit and a yellow biker shirt with a butterfly tie of the same color as the suit "} +{"id": "8001527", "video_name": "fe93bd24-22b8-5854-b73a-ba24c519d0f0", "text": "young people playing video games at a lan party "} +{"id": "4004909", "video_name": "6d14503e-3ee7-5753-ae85-6558549a16c8", "text": "Ren from Ren and Stimpy fights powdered toast man with Stimpy cries in the background. Cartoon, in the style of Ren and Stimpy. Video works as a perfect loop "} +{"id": "1003072", "video_name": "388120c1-e94c-565a-8bc0-ff4142af4fcd", "text": "a turtle swimming in the Caribbean sea "} +{"id": "4004645", "video_name": "ea98ed67-8721-5d40-b30c-6d6d9d8f1aeb", "text": "blond woman curly hair green eyes is smiling, cartoon style "} +{"id": "3005846", "video_name": "fcb0337b-8fde-59a5-8659-0687d6234776", "text": "interstellar man floating in space showing face "} +{"id": "0004821", "video_name": "0fadb3f5-8621-5c2a-aab5-67c8e37e149e", "text": "girl rest on a bed with open eyes at night, horror story "} +{"id": "0005490", "video_name": "1bba145b-88f2-54a6-aeaa-10bd2542b1fa", "text": "Create individual images for Sheep, Rabbit, Cow, and Mouse. Highlight their unique characteristics and personalities. Ensure they are placed in a way that reflects their friendship and the harmonious nature of their home in the forest "} +{"id": "2005436", "video_name": "6ce261dd-ab2f-5757-bdcc-360595e21555", "text": "The Coliseum is illuminated by an explosion of colors and lights. Fireworks explode in the night sky, creating a breathtaking spectacle. The crowd watches in awe as the colors and sounds of fireworks fill the air. The Colosseum is a symbol of Rome and the fireworks are a celebration of its history and culture "} +{"id": "0004631", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "old man walking in the rain moonlight "} +{"id": "1005279", "video_name": "610f6191-0f0d-53a6-ab77-336e3b0a93f8", "text": "2d sci fi lots of eyes watching you anime style "} +{"id": "6002389", "video_name": "7a8890bd-d389-57b7-b16e-4e438afd3ac2", "text": "The adult girls in the room tried to escape, but the door closed "} +{"id": "8002771", "video_name": "dddcd557-a839-5b66-a974-fc9c02a95047", "text": "20 second fps game traler,high quality "} +{"id": "2006745", "video_name": "659ea491-0497-58c4-bb5d-9249060db40e", "text": "anime boy sleep in trillioin money bed "} +{"id": "7003997", "video_name": "26b73ce0-fbb3-5c6f-8c16-8383a83a8cf8", "text": "Detail of the branches of some pine trees "} +{"id": "8002803", "video_name": "2da327f6-528f-577f-ab83-32ff533bf6aa", "text": "a flying goddess flies to hug a woman standing on the ground in a gorgeous mountainous area. The woman has blue eyes with yellow dots and is crying tears of light. When the flying goddess hugs the woman, they both smile as they are happy to be with each other "} +{"id": "4004466", "video_name": "d7cfd7af-4a65-50d7-9648-d46d564d60d7", "text": "Collaborative synergy across neuroscientists, computer scientists, and engineers stands as imperative to forge advanced AI algorithms and neural networks that seamlessly interface with the human nervous system. "} +{"id": "3004893", "video_name": "02c78540-aa10-5116-b551-1bbeccb0aa3e", "text": "make plants and tree move and it rains outside "} +{"id": "7002307", "video_name": "6ece9325-2b4f-57e3-94b7-c24de494d21b", "text": "a guy jumping in the modern new yourk city "} +{"id": "1005698", "video_name": "68bbb0e9-5ca7-54bb-bbcf-4841aa3e63bb", "text": "A woman feel very tired and is sitting in the chair "} +{"id": "7003685", "video_name": "9608a083-02d8-5168-b786-97e675cedd5c", "text": "Design a simple animated GIF where the guy is animated to look around in a loop. Then, as he looks, the shop slowly materializes behind him, and the logo fades in, creating a captivating and visually engaging loop. "} +{"id": "2004592", "video_name": "aacf1746-0b1b-55c1-bc05-c7bb9e96758a", "text": "An illustration or image of a bustling marketplace in Jericho with a tax collection booth in the foreground. Show Zacchaeus at work, counting money with a stern expression, surrounded by people who look unhappy. "} +{"id": "3003079", "video_name": "33fc1ebe-14b5-56ef-a3d2-84dc7f58bbcb", "text": "A girl sits and draws a beautiful, bright picture "} +{"id": "3005366", "video_name": "6a8f2aad-c5b2-5953-aa34-9429de3de563", "text": "realism, space marriage, perspective in the distance, gray asteroid, space background "} +{"id": "2007128", "video_name": "88141084-39db-56a4-b4c0-de5e85f22a4e", "text": "gta 3 remastered china town real life "} +{"id": "3004181", "video_name": "493ec74e-0cb3-5f57-8e95-ff322ea7c6e7", "text": "doctor arthur friedkin from the horror movie grave encounters standing still in one of the rooms of the collingwood hospital while staring at the camera meanwhile there are some living patients are wandering in the bakground font:vhs Message: . (Font: MODERN) "} +{"id": "4003082", "video_name": "df8359a2-75bf-5ebd-90c1-b7009305a3c7", "text": "A food 3d printer, printing an algea burger sci fi, super realistic "} +{"id": "3005132", "video_name": "376b71b9-bebb-5337-b88a-d8d7015b1485", "text": "The city of Tokyo is filled with expressways and a large number of cars come and go. "} +{"id": "1003519", "video_name": "40f6c2a5-6649-54a4-969b-f2e53d0e91ca", "text": "a shipwreked named lium was asore to the light house 4k resolution 3d video "} +{"id": "0003140", "video_name": "37edcd52-2748-50cf-b500-ba4d4bb8319e", "text": "photo of woman with soaked face, realistic marine paintings, soggy, lighting, webcam, exotic "} +{"id": "8003383", "video_name": "a6c9e535-7d80-56ce-9866-142d2fe408f8", "text": "night, cold lighting, dark blue clouds, Jason Statham throws a grenade "} +{"id": "1004778", "video_name": "585aaf5d-ec27-59d2-bfee-8115cbb4a7c7", "text": "A peaceful, shady area under a tall, ancient oak tree, with dappled sunlight filtering through the leaves. "} +{"id": "2007597", "video_name": "bd89f8df-3465-57f9-bbf4-26bd1d719cc7", "text": "A bearded man tells a story to 3 people in a park "} +{"id": "7003095", "video_name": "d32bd6a5-18d2-53e6-9c75-3e6e183a72da", "text": "a boy Alone at home, feeling someone is watching. "} +{"id": "0004169", "video_name": "046bcbc2-6652-55f9-ae23-356903dfcb19", "text": "christmas sleigh, fly, transforms into a spaceship, in space, galaxy "} +{"id": "1005650", "video_name": "67da4b49-5611-5181-b661-fc1b836660d4", "text": "Create a visual representation that helps viewers grasp the incredible speed of light by comparing it to the speed of sound, the fastest animals, and other common benchmarks. "} +{"id": "8001598", "video_name": "1b83b629-665b-55b6-89d5-3eec9d15f71d", "text": "man having a heart attack whilst eating a hamburger in restaurant, 1985, sad "} +{"id": "0004807", "video_name": "0f7524d7-1569-5284-bd18-096f8f59c45f", "text": "an above view of a shark swimming in clear water "} +{"id": "4004897", "video_name": "cc80ad31-5bef-52f4-93d8-afb79b7b37c8", "text": "there was a wise professor determined to teach his students the art of time management. visibal footage, 4k, 8k. "} +{"id": "3003466", "video_name": "8bc7c03b-895a-52e1-b513-c7f9f5288bd0", "text": "a young beautiful woman with brown hair and eyes working at an office "} +{"id": "8003337", "video_name": "cd66d8d0-5c0e-5697-a26b-86e3550975a4", "text": "robo dragon showing from the darkness "} +{"id": "7003994", "video_name": "d32fe22e-02b0-50c9-8576-0978c704c018", "text": "tanks driving up but the surrounding area explodes (trees in the background, good quality, debris) "} +{"id": "8003025", "video_name": "b020efec-8f67-5c41-845e-d987e5b94345", "text": "A man speaking, Pixar style, in profile, against a white background. "} +{"id": "7004460", "video_name": "724b8b57-129f-5bb7-8f73-1d64990a0c73", "text": "A school assembly where Ethan and Lily share their story. "} +{"id": "7004379", "video_name": "b074aa5d-e3b7-50e5-a958-150386eb521f", "text": "Generate an emotional scene of Mike tyson expressing his feelings of neglect, perhaps in a solitary setting that emphasizes his isolation. Convey a sense of longing for care. "} +{"id": "1005950", "video_name": "6d4a10f7-ec29-53cb-b127-ac35b8aaaaa8", "text": "silver sport car accelerating so fast, spinning tires on asphalt "} +{"id": "7002157", "video_name": "3eb35237-869f-5791-a029-d9dda0bccd25", "text": "love story couple walking roses swayiing "} +{"id": "3005318", "video_name": "c029821f-448d-5fed-b93a-25e68a5cee99", "text": "ironman realistic cinematography unreal engine octane render lighting cinematography white collor holding a white flag "} +{"id": "3004954", "video_name": "aaa62083-f0d9-5d28-8784-749baef9d536", "text": "electrical engineer on container vessel looking at reefer container, 4k hd "} +{"id": "5001818", "video_name": "32c1c9bb-16d2-562b-9dc4-814e86e620f0", "text": "a lot of ancient chinese students reading loadly "} +{"id": "0005473", "video_name": "1b600e27-46bc-50dc-b5ce-1802bf062fa4", "text": "Create a realistic 3d image of Motion Blobfish (Psychrolutes marcidus) "} +{"id": "8001437", "video_name": "d9491fc4-321b-59b4-99c6-66157d706bb7", "text": "beautiful full figure sexy girl dances in the center of a nightclub floor and all shapes bounce "} +{"id": "4004631", "video_name": "9b0d1340-bd82-5a54-9bf7-1d24bc9d8132", "text": "a beautiful chinese girl wearing a red long dress is riding a white steed and galloping on the grassland. "} +{"id": "0005448", "video_name": "1af02e0b-e00c-5da5-ab09-1aef79787d66", "text": "A white rabbit watches Nick Frost trekking in the snow in the woodland. An old 70s BBC television programme. TV Static. Cracked glass Screen, damaged camera shot. Digital art surrealism. Psychedelic. Drug addled. Sobre Grey, Orange and Green colour scheme. Blurred, handycam, warped projector footage. Nostalgic. Channel Interference and Oversaturated. Cracked glass and bleached colours. Domestic and Sad tone. Autumn leaves. Depressing. Water Colour Paint running and dripping, staining and blotting canvas. Influences from Hannah Hoch Colage and Jackson Pollock paintings. Wickerman, Wicker Man. Folk Horror, Midsommar. Stone Tape. Tales of the Unexpected. "} +{"id": "2005426", "video_name": "ca4a4649-eab6-58f9-bd33-8fcfea1aa69c", "text": "modern car on a new zealand road trip "} +{"id": "0005356", "video_name": "1953f51e-3fbf-5ac7-ad88-8b21e8aa12b5", "text": "Our tranquil home is in danger. Dragons descend upon us, casting shadows over our beloved forest. 16:9 ratio I need "} +{"id": "3005191", "video_name": "c3dfe3b5-2d62-51b7-bd9b-6866d911acc8", "text": "Photography: Ethereal moonrise over a tranquil landscape, casting a soft, magical glow. A moment of nocturnal wonder. "} +{"id": "4004915", "video_name": "76aeb303-f38a-574c-b7a5-5cf09b1d7544", "text": "a cloud blowing machine blowing clouds over a sunrise over a beautiful landscape "} +{"id": "5001704", "video_name": "a076ebf4-ba03-57d8-b350-feb0603b9e92", "text": "helicopter landing in abandonded farm in the rural country "} +{"id": "7003992", "video_name": "1a69c779-c1c0-5e35-83c5-731b048931a0", "text": "Contrasting scene of a serene, traditional temple with devotees engaged in prayer and meditation, representing spirituality and tranquility. 4k hyper realastic "} +{"id": "5001243", "video_name": "055cc271-f523-5c35-90d0-e3d08f343942", "text": "little girl friend birthday party kids birthday in cartoon style "} +{"id": "3006040", "video_name": "5d2812e4-4bd8-5882-82d3-ffbe53838bc5", "text": "the lion Woking in the forest "} +{"id": "3003917", "video_name": "86d67c9e-30df-500e-a575-c7b40fa4dce2", "text": "a super hero fights an alien in the year 1945 ,realistic ,film noar ,lots of details "} +{"id": "1004663", "video_name": "56b58f8b-4e76-565a-9949-9afc0d2443fd", "text": "fox bunny and turtle playing on the play ground "} +{"id": "2004972", "video_name": "9407222f-6e6c-5449-ad68-8dd898ecdf53", "text": "boy and girls Lofi song kiss moment "} +{"id": "2003319", "video_name": "c144c258-592a-52fa-949c-481bea090993", "text": "A man playing a guitar. In the garden. "} +{"id": "7002005", "video_name": "8cba2891-b01b-58bf-bee4-5ef75868a927", "text": "Ethereal one source in the universe with ethereal light "} +{"id": "3006030", "video_name": "0139ef7e-252f-5d53-affd-5d8ee1ae763f", "text": "A girl in yellow shirt and dark blue trousers places a tin can in a recycling bin. The background should show trees and grass. "} +{"id": "8001851", "video_name": "d10130ba-d4ea-587c-b974-052d1d4157da", "text": "Film a serene village setting with a gentle breeze rustling through the fields "} +{"id": "1006266", "video_name": "72c6d9d1-127b-52d7-9d63-cf554118e59c", "text": "The first path to Truth, the path of the consciousness, is that followed by the great mystics. "} +{"id": "8002169", "video_name": "caa696df-12b2-5e9c-9082-aacd6a6435b0", "text": "4K, dramatic light, doctor operating in the operating room "} +{"id": "4002034", "video_name": "81f34556-5a64-5a64-b103-7c3add9e409d", "text": "man listening to a mysterious distant sound inside his house at night "} +{"id": "1004977", "video_name": "5c08eef2-32c3-53e0-86a1-f0e705338db1", "text": "The sun in the shape of a man "} +{"id": "2003399", "video_name": "402c4123-83bd-5404-a145-085855b0ebf7", "text": "well stocked bar Message: MOLLY (Font: MODERN) "} +{"id": "0005226", "video_name": "16e89e4e-e7d9-5ba4-b769-053707c73451", "text": "A robot with Hyper Realistic and futuristic armor and guns facing front and walking in the Cente "} +{"id": "3003397", "video_name": "950a30f6-d66d-5c2b-981f-76692746d1ba", "text": "the girl helped the village achieve the peacefulness "} +{"id": "1006769", "video_name": "7bee4415-e984-56cb-bfcc-3ec9f8440880", "text": "rain of stars in the sky nigth zoom out loop 4k "} +{"id": "6004867", "video_name": "25cf7c08-acac-5d2c-b9f5-01a94ecd8547", "text": "The serene leadership of a deer guiding the animal community. "} +{"id": "4002265", "video_name": "23d4812e-86f9-5089-a655-03a011be06c8", "text": "stalin holding a hummer in front of student in a physics class "} +{"id": "8002650", "video_name": "1c4435a8-5729-5d7c-8a96-af1e68f02246", "text": "One woman with Vr helmet, A Dutch angle camera view, standing in front, a inside supermarket, ar 3:2, dark lights, cinematic "} +{"id": "2006496", "video_name": "07da299c-cb64-5c37-826c-a190845a0d88", "text": "humble farmer decided to take action. "} +{"id": "4002448", "video_name": "301cc709-6337-5938-bbeb-7f6a7d7e15e0", "text": "15 Seconds Of a girl with beautiful hair and a voluptuous body walking attractively as the scenery changes between different styles with each step as the camera pans around her, UHD "} +{"id": "2007412", "video_name": "bd24dce8-f2ab-5405-b98d-a1b85aaa2fb5", "text": "A mosquito keeps a man from sleeping in his room at night. "} +{"id": "6003785", "video_name": "ea6282eb-d76a-5153-9749-8ade471ecee6", "text": "white trees, black grass, futuristic minimal forest, white smoke, holy light, cinematic, hyper realistic "} +{"id": "1003153", "video_name": "3a229666-1bf5-5afb-90a6-fce29484fb06", "text": "girl lies in the grass and looks at the sky , 3d , ultra realistic. Cinematic shot. Slow motion. HD, 9:16 "} +{"id": "0005341", "video_name": "191b09f9-2a9c-5a70-9886-7ccbc76deb7d", "text": "a scared man in the titanic "} +{"id": "0003857", "video_name": "44b25bf1-04f9-55fa-bc65-9c6f99b88c06", "text": "islamic priest give bayan in soft vorm voice "} +{"id": "6003878", "video_name": "78c1087b-d72b-5042-a6a0-629397536ae7", "text": "map of railways in the world "} +{"id": "4004031", "video_name": "50e7bf4e-5e55-5152-827c-3c35b120d9ed", "text": "A comet in love with a sun, space whales "} +{"id": "3005796", "video_name": "5bf24703-8243-56f8-bc51-fbfd133c9f6f", "text": "a cat play toys in the store "} +{"id": "3005995", "video_name": "601f6e86-5cb8-5039-a0e7-fd48582fc640", "text": "a man fight like starwars. Videos 9 second. "} +{"id": "4002583", "video_name": "e913311f-7c8d-58d2-8edd-35c5464da0f6", "text": "Generate an image of a busy street in Mumbai with people and vehicles. "} +{"id": "4002616", "video_name": "93088e3e-415f-5814-a25d-22f1d2622e5b", "text": "An astronaut who flies to Cyberpunk City. "} +{"id": "2003036", "video_name": "dfc62777-21d2-58e3-9ef4-ce6845a3b82f", "text": "2d anime, ancient kazakh man and woman romantic scene "} +{"id": "1004666", "video_name": "56bc02ee-c74a-5061-b3b9-5690a5877aa7", "text": "Kids in halloween costumes walk through haunted mansion with pop ghost jumping at them "} +{"id": "4002786", "video_name": "94f7a17d-81ea-5fda-9f59-1311047ca190", "text": "zeus, ruler of all the gods, god of thunder, realistic painting "} +{"id": "3004913", "video_name": "c57249dd-a16b-5670-8605-993265da85aa", "text": "a bread slice falling slowly in the table "} +{"id": "6002725", "video_name": "a573ca98-bf55-561f-a99b-5ed1fca4c400", "text": "Vanessa Schiavi eating rice and fish "} +{"id": "8003324", "video_name": "87439c17-d1d1-5773-a075-672260678aa4", "text": "young boy with long hair, moving hair, mountain, moving cloud "} +{"id": "3004024", "video_name": "e12b58e0-56b6-5f3b-9d10-4f6a280a5c9b", "text": "A golden retriever with human hands sitting in from of a laptop writting some code "} +{"id": "6004652", "video_name": "c5653e24-1b1f-5eb4-81fc-04b219986fc8", "text": "ruins dredging beneath the waters, in the style of dreamlike architecture, lens flares, aztec art, cabincore, passage, mesmerizing optical illusions "} +{"id": "2003786", "video_name": "e7db026c-932c-5f2f-a2cd-eb073172902a", "text": "a pink alien running in a field of fluorescent mushrooms with extraordinary vegetation "} +{"id": "8002741", "video_name": "8ef0f828-0ef3-5280-bfb6-29b705e4e6b6", "text": "a music 3minute music video of a a song called dear EX. In which the guy starts by writing a letter to the EX as he remembers all the good moments the had experienced to together since day one till he gets over her and decides to move on. "} +{"id": "7002322", "video_name": "8f98685c-15c5-5a23-a567-d31a84985565", "text": "Tesla and Edison smoking weed, rare film footage in black and white "} +{"id": "2007411", "video_name": "e15d4065-11ad-5d35-9031-39bff408b62f", "text": "Snow trees sparkling in the sun under the weight of snow "} +{"id": "8001136", "video_name": "1f43c77a-10c4-5433-8fc2-78989cfd9b9d", "text": "a black dachshund dog day bark to a cat in a sunny "} +{"id": "6002267", "video_name": "6c047c53-1ed6-5422-a88c-85b1ec79bfed", "text": "A montage of people in different settings such as on their beds, on the coach, and around the table using laptops and smartphones to work online, start businesses, and invest in different opportunities. "} +{"id": "2005838", "video_name": "24141e95-846c-5670-a4e8-64206d3bfff8", "text": "subterranean advanced civilization ruins eerie eldritch monstrosities walking metal H.R Giger Alejandro Jodorowsky "} +{"id": "0003301", "video_name": "3b49c7ce-15fa-5ffa-a905-062f21611973", "text": "Silver Gradually Golden Chinese Dragon, Unity Creations, the best quality, high detail, complete, amazing, beautiful, fine details, cinematic lighting, dramatic angle, CG Unity 16k wallpaper girl, very detailed CG, exquisite and meticulous dark green gradually light green hair, silver white gem body, hands as clear as silver gemstones, silver crystal texture skin, flash, lens halo, light leakage, broken gold glass, masterpiece, Best quality, super detailed, illustrations, delicate face, flowing "} +{"id": "1006871", "video_name": "7d7df8fd-1889-5ceb-9277-44cf1a4563d0", "text": "A carriage with lizards in the interior arrives at the fire station "} +{"id": "7002617", "video_name": "14571dc7-b894-555a-a37e-d37e03df3727", "text": "Neanderthal women painting graffiti on ruins. White desert of sand. Blue sky. Ultra realistic. "} +{"id": "2006478", "video_name": "0c02ac82-4254-5db9-b169-6b5656479059", "text": "create male model that is wearing this hoody. make it as reallistic as possible Message: 1 Attachment "} +{"id": "4002701", "video_name": "9a3105c9-63f1-5cef-a757-8b513088b1e8", "text": "super resolution hd details indian woman phantasmagorical figure ultra details realistic, each detailed plumed "} +{"id": "0003292", "video_name": "3b0e0a2c-8639-5468-aa73-5f3215a06d83", "text": "cinematic dimly lit room with a person stood in the middle wearing a ceramic mask in the shape of a cresant moon, arthouse "} +{"id": "2004382", "video_name": "1f091f5e-004d-555e-87ad-3e2cceac2002", "text": "In the heart of a bustling city, there lived a curious little girl named Lily. She had big, bright eyes that sparkled with wonder at the world around her. Every day, she would wander through the streets, her imagination taking her on grand adventures. "} +{"id": "5001333", "video_name": "690142c4-17ea-5d46-a810-39bc6de05406", "text": "ancient syrian kingdom, with palace and market "} +{"id": "5001199", "video_name": "03459aa2-e6f0-5f8d-8a90-ec3ec453a40b", "text": "a vertical aeroponic garden made of a PVC tube with planted plants, with a teacher, several students and artificial intelligence. Pixar type full hd "} +{"id": "5001790", "video_name": "ef372831-ad7f-5e1f-8828-72ac5d691ff9", "text": "Delve into the monumental scale of the Walls of Benin, emphasizing its distinction as a remarkable human achievement. "} +{"id": "0004986", "video_name": "12c46cd1-3241-599d-8099-0bcdeb2887a2", "text": "boy sleeping in wood house , sun in the window, winter , ar 16:9 , hd video "} +{"id": "0003050", "video_name": "362403e9-76c0-5e77-bd65-6835c7cf283e", "text": "long baby colognes blinded everyone by walking all over the world, so the perfume war began "} +{"id": "1006267", "video_name": "72c9d9fe-da05-5af3-9df2-c6cd4321cce0", "text": "an advertisement DSLR photo of a delicious melting chocolate mint ice cream on a cone "} +{"id": "1005626", "video_name": "677081cd-8567-5882-92ed-b5e64f1ee2d2", "text": "cockpit of a spaceship, pilots eyes view of a cockpit and view of galaxy in front of "} +{"id": "0005942", "video_name": "23951c86-ebe9-5721-a5af-07ec11a41594", "text": "khfxkhfxkyrdmhckyfuu8pycpiyd o7 toufxiutdiyrdup with a toilet "} +{"id": "4003134", "video_name": "d89b8561-3f95-5a47-8f98-99036f25eff4", "text": "Rain of diamonds in space. Suddenly an alien appears. "} +{"id": "2005166", "video_name": "0874e8f1-e3bd-5db3-a97f-383151c1053f", "text": "5 second video of a dachshund puppy sleep next to a fireplace inside of a log cabin, woman sits in old style rockin chair in her christmas pajamas wearing read headphones drinking hot chocolate "} +{"id": "5001343", "video_name": "ddb3407a-2c6a-52da-85be-1765d1333617", "text": "Monster octopus holding Taj Mahal in flood, Water covered background, Flood "} +{"id": "3003325", "video_name": "2281f6e3-d1c3-507f-9723-9bd39d01f9eb", "text": "cartoon video of saint sitiing and motivating others "} +{"id": "2003713", "video_name": "19bd449d-df7b-524f-a7bf-4886d06dc467", "text": "(animated) zoom up A microcontroller (Arduino) swiftly connecting to the Smart Sensor with a wire "} +{"id": "1006193", "video_name": "71657bd9-711b-527b-ab75-e53918265d04", "text": "Mitt Romeny, Fighting Ninja Hotodgs, 4k, Super Realistic "} +{"id": "0005493", "video_name": "1bcc6a30-4764-5134-9c34-0c30a8d09534", "text": "Researchers are walking in a corridor that is located in a laboratory, the floor is made with wood, studio ghibli style "} +{"id": "0006254", "video_name": "295ce37b-9af9-571f-9797-612c220d7564", "text": "old man walking alone on streets in cold night "} +{"id": "2004546", "video_name": "c3113e68-e752-530b-92c5-f532c30e0880", "text": "A tennis player serving an ace "} +{"id": "3005635", "video_name": "10f32830-d9ca-5472-a700-9b2c899f64c1", "text": "A digital illustration of anime style, the wheat fields "} +{"id": "8003715", "video_name": "1bf8ec1f-2ccf-5525-920e-4607839cc248", "text": "sprite sheet of a boy walking with big eyes "} +{"id": "0006076", "video_name": "2642097d-19d5-5508-bf32-576a9592cd83", "text": "3D futuristic neon line architecture microwave blueprint "} +{"id": "6003336", "video_name": "c7dd0f54-bf3f-5e5b-b409-65047d99f7b7", "text": "Action Sequence: Emerson in a chase or confrontation, perhaps in an alleyway. While the setting and action are realistically depicted, the noir style could manifest in the dramatic interplay of light and shadow. "} +{"id": "4002349", "video_name": "de9412fc-fcca-55df-bdfa-e17393954426", "text": "The fiat ducato panelvan vehicle is moving on the road. "} +{"id": "6004545", "video_name": "a2811ffa-a5c0-5c00-b157-9d8ed02cbe6e", "text": "the ghostly shape was fading from view, dissolving into the shadows of the hallway. high definition, high detail, cinematic, 1 Attachment "} +{"id": "1006761", "video_name": "7bc2e909-7b34-5570-8763-c4e210cf42b3", "text": "1girl, hu tao (genhsin impact), long hair, brown hair, twintails, red eyes, hat, long sleeves, chinese clothes, brown coat, ghost, sleeping, under a blanket "} +{"id": "8002897", "video_name": "c134201d-9ae2-5b11-89eb-19f936db4cb6", "text": "frank sinatra singing in the rain "} +{"id": "2004982", "video_name": "466637de-0d53-576a-a939-260941212012", "text": "jermey is hot Message: jazz band in space (Font: MODERN) "} +{"id": "7003546", "video_name": "37ec6c49-47b7-5483-90a5-5dfb179d09e9", "text": "upvc window with vibrant timelapse from morning to night "} +{"id": "3003458", "video_name": "87b27ae4-d24e-5f0d-b1b0-b0e2f31cf0eb", "text": "a tall sleek human being with the head of an attractive goat "} +{"id": "1005407", "video_name": "635df97a-4696-5dc2-bf87-0ea5dfc8be0c", "text": "create a world where monsters are lurking around trying to take over earth "} +{"id": "3004480", "video_name": "2d320a9a-d3e1-5f1c-9086-2bddc216a13c", "text": "cinematic movie trailer style, film studio lighting, futuristic scifi action film, derelict spinning orbital futuristic spinning space station city habitat, orbiting a super massive black hole "} +{"id": "3004443", "video_name": "a3e77a18-ce70-58c7-81a3-b8bbc4755571", "text": "man out for blood and justice "} +{"id": "7002863", "video_name": "708ff47d-cf51-5c38-9d50-0886d8d5f873", "text": "1 shrimp carrying a big pot on its back "} +{"id": "3004016", "video_name": "ffa74688-5f0d-517f-a581-4da7aa81999c", "text": "I promise you, my little girl, That this will be the last war "} +{"id": "8002598", "video_name": "f2c7d03c-af7a-5557-946b-5f692f27dc8a", "text": "a man in a suit talking to the camera "} +{"id": "1006453", "video_name": "76210def-8fe5-5d2d-8461-998216ea6404", "text": "macron dancing in front of Tesla model y performance "} +{"id": "1003754", "video_name": "45385880-bb90-5da3-916b-1c70bd475d7a", "text": "Poison from street fighter portrait, wind, pink hair, cop costume "} +{"id": "8002185", "video_name": "b574ea76-a4d6-5140-8fcb-b2e955ea8678", "text": "found world war 2 footage depicting a Mecha tank "} +{"id": "1004141", "video_name": "4cbcbb9a-f1a6-5402-b55e-272d914f0871", "text": "animation video based on the script i provide you with voice over in context of uber eats failure in indian market "} +{"id": "2006152", "video_name": "8b9755b5-de0a-5ca8-81ed-16b8d6eeee8f", "text": "a Pakistani handsome muscular guy wearing white fit underwear standing in the room "} +{"id": "1003909", "video_name": "482ef570-e22a-596e-996a-48646d99a826", "text": "create a surrealist film with indigenous South American symbols "} +{"id": "1006992", "video_name": "7ff24ff1-5291-573a-a95c-2af2f52a865e", "text": "flying above old aztec ruins above the trees and looking down from above "} +{"id": "3004282", "video_name": "8cbb0e5f-ada4-56af-9a5e-a45d67cd3d44", "text": "nurses dancing in the emergency room "} +{"id": "0003929", "video_name": "00061267-7a29-5ba0-96a1-18b6b83852eb", "text": "a clone on huge ball walking in circle "} +{"id": "5001464", "video_name": "b78ac3e6-3116-5d3c-a18d-35efd635ff0a", "text": "giant starship in space surrounded by small warships, starwars style, cinematic, epic battle, 4k "} +{"id": "6003385", "video_name": "ac42dfcf-41e3-58d0-bfdf-6184241874ff", "text": "Today I went to the seaside, and the sea breeze was gentle, just like the person I missed "} +{"id": "2003165", "video_name": "4b1bda90-f6c1-563f-b8c3-122be524a707", "text": "two old men sitting at a table in a neon Parisian cafe, cyberpunk city background "} +{"id": "6004557", "video_name": "ac6e0a90-2706-54a8-bac1-3bbf91a4b5b5", "text": "Centered Fluorescent jellyfish in a dark tank "} +{"id": "2003625", "video_name": "ecd92337-835d-573a-8640-e647a8873ac9", "text": "a villager woman dressed like a villager in an old village house, there is a table and a window near it, a man is writing a letter for the woman, woman is standing, outside the window there are trees. "} +{"id": "8002117", "video_name": "8066d5d3-dce3-5540-87bc-ba96938fdefd", "text": "Two mice fall in love at the entrance of the cave "} +{"id": "2003355", "video_name": "de934889-35d8-5f90-aec1-e1357e32e6e5", "text": "12. A group of friends at a party. "} +{"id": "2003276", "video_name": "202d1724-25d4-5244-9342-31ca60a460a9", "text": "a very big school, look inside. The school is in future "} +{"id": "4003991", "video_name": "64ff81ba-f526-5e39-9fac-c0fdc3b78650", "text": "A humble cute sparrow sitting on a branch, looking up at a beautiful peacock. "} +{"id": "6003286", "video_name": "53f6102a-8208-5667-ab7c-8a6b08f4adc1", "text": "Entrance to a night cafe, the door opens and we go inside, there is a romantic atmosphere, flowers, musicians, visitors drinking coffee, art by Haoliners Animation League anime studio, 32k resolution, best quality "} +{"id": "4004760", "video_name": "b8e94bee-d99b-5d7f-8bef-bd36b09a58df", "text": "shooting stars over island on sunset vaporwave "} +{"id": "4002287", "video_name": "d74ff4a3-136b-5567-8738-d6dd6682dbe8", "text": "the hamster does not move, only the mouth and eyes move Message: 1 Attachment "} +{"id": "3005011", "video_name": "9519efd2-2982-50bb-b77b-5ad2deb53700", "text": "Vladimir Putin dances with the book Atomic Heart "} +{"id": "7004944", "video_name": "2e573324-5263-5b11-ac65-edc3fe6ea368", "text": "a sailboat moving inside a cup of hot tea, the cup transparent, focus on the sailboat, 35 mm "} +{"id": "2003287", "video_name": "c3822842-bd9b-5435-a643-84d99901c698", "text": "Her romance with Julius Caesar scandalized Rome "} +{"id": "5001410", "video_name": "a5082ea6-1839-5d4a-93d4-323553cc7ab0", "text": "A full armored samurai with a rising sun carved in his armor. Full moon background "} +{"id": "0003564", "video_name": "3f9b9615-f35a-5b46-939e-80b67ab4a5db", "text": "a pharao of ancient egypt moving your head from side to side "} +{"id": "6004183", "video_name": "cb7fa8ea-dc0c-5a5a-b2b9-4e5645745404", "text": "old lady with white hair and red skin, looking around "} +{"id": "3004185", "video_name": "4f0261ae-6d28-580f-bc01-baefb4bfc822", "text": "alien spaceship in a big city, fog, storm "} +{"id": "7002444", "video_name": "0572ff53-f912-5de5-a7af-10c7e4f2cbe5", "text": "fabric with the properties of a Dwarf Fire Jellyfish on which silk threads with flashes of vesicles of Mantis Shrimp are embroidered Message: fabric (Font: MODERN) "} +{"id": "0005893", "video_name": "22e286e2-5832-5b0f-a635-94b19ef80bf0", "text": "The school plays, though vibrant and filled with youthful exuberance, now carried a subtext that lingered in the minds of the audience. Parents, once lost in the innocence of the performances, exchanged knowing glances, their smiles tinged with a hint of unease. As the oversized candy canes lining the streets cast elongated shadows in the glow of the festive lights, the very symbols of holiday cheer became vessels of mystery and uncertainty. "} +{"id": "2004621", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "Dutch windmill slowly turning in the wind. Cows on background and high grass in forground moving in with the wind. Sunny day. 30mm film "} +{"id": "7003285", "video_name": "a8d4b795-a568-577c-8dbf-5882c8c44d28", "text": "Youngest adult son looking longingly at the horizon, dreaming of distant adventures. "} +{"id": "6002076", "video_name": "f4e12f8b-b13d-51eb-af8e-93811d1d0873", "text": "H.R. Giger standing in a hallway. "} +{"id": "2006166", "video_name": "0a24815a-3436-5edc-898d-14e0a8447464", "text": "At noon, fishermen fish on the beach in the Maldives "} +{"id": "3006411", "video_name": "47d426df-d3da-5d96-966d-e1a9fb1dea7a", "text": "a scene of 1970s style middle aged adults playing pickleball, in an uproarious comedy, zany action "} +{"id": "7003596", "video_name": "d7dce4be-ff6b-52d1-a899-4e6c74fc6589", "text": "a raccoon at a video editing table profoundly sorry for making that hand video "} +{"id": "2006754", "video_name": "bce5952e-6561-5977-8fca-50a2de505d9b", "text": "a woman walking up a mountain over looking a beautiful valley, slow motion "} +{"id": "7004508", "video_name": "c2a2f263-b71f-5898-aaaa-92a88c602061", "text": "A handsome blue eyed blonde man and his very large Siberian husky, Alaskan Wilderness "} +{"id": "7004261", "video_name": "639f02cf-87da-5fbd-9220-b4add89e6ecc", "text": "create a logo Chiroylee with blue color and Red \nWith cotton and flowers "} +{"id": "1005408", "video_name": "635ede5b-86cd-5672-bbeb-c76721d3ec7c", "text": "a scene from the live action Movie The Giant Squid Attacks New York "} +{"id": "1004466", "video_name": "52b281d4-5b5c-5a10-b49c-f853a40d2589", "text": "Lifting 260 kg with a smile to the audience of the year "} +{"id": "4003479", "video_name": "6e11683e-664b-5c32-980a-d05449faee72", "text": "give me nice look pic to bagrod "} +{"id": "4002595", "video_name": "73982fd8-f15c-5742-bbe9-49819f82284f", "text": "In this cathedral of chaos, we wander, the mortal poetry inscribed in the infinite. "} +{"id": "8003535", "video_name": "168cd44f-ab35-5c56-96aa-a47ab4d92238", "text": "Sadness, Seaside, Sunset, Subject Description, Core Subject, Subject Action, Style, Light Effect, Color, Perspective, Quality, Command "} +{"id": "0005388", "video_name": "19ee9358-245a-562e-8347-f628109ce5e2", "text": "a sad Israeli woman with a baby on her lap, next to another smiling woman, ancient era, 8k, cinematic "} +{"id": "4004381", "video_name": "85b7647a-3e33-549c-b46f-d356e5bdc1e6", "text": "A happy man carrying a cow "} +{"id": "6002195", "video_name": "30c56c9a-e24c-52b3-9c55-0e4ab5f8f771", "text": "Four Backpacker People Are Looking At The Strange creepy red blor Sky In Triana, Albania, Cinematic 4k, 2000s Horror Film Filter "} +{"id": "3004657", "video_name": "07f8427a-e5fb-5435-9780-3a221c0cba4a", "text": "Flowers open quickly, with zoom in "} +{"id": "8001200", "video_name": "8584ddd9-55ff-5a8d-b32b-ee20a17195b6", "text": "Venusian bikers in leather gear ride through the Italian countryside "} +{"id": "3005249", "video_name": "e6c0a735-fd8f-5f5d-8e0e-1786c775f2ee", "text": "a big car with bright colourful lights running in opposite direction of small cars with colourful lights "} +{"id": "6002852", "video_name": "d6e075ca-fbd5-5b37-a80c-57d9cecc6615", "text": "water is flowing and turtle is moving Message: 1 Attachment "} +{"id": "5001389", "video_name": "6f459e4a-8019-5eb1-a161-e61d636a2fb7", "text": "a mountai range, clouds moving in the sky "} +{"id": "4002851", "video_name": "d6a63b3c-6be5-51c8-bc80-2f843753be54", "text": "a cartoon boy eating carrot at home "} +{"id": "1005217", "video_name": "6015c885-5758-5965-88b8-9e39967578b3", "text": "2 minutes video , edited classical art painting, baroque, man dancing, oil paint, hieronymus bosch, lsd, psychedelic,high definition, 4K "} +{"id": "8001610", "video_name": "a7819d7c-baa1-5cdd-b0ef-aabbd5be6064", "text": "classic steam train flying through space between planets, stars and galaxies, futuristic style, vivid colors "} +{"id": "3006465", "video_name": "e412f30c-a9c6-5bb0-b6ab-3195671b2edb", "text": "motion design 3D, black background, IPhone product animation, phone animation, phone rotation, cinematic lighting,photorealistic, hdr "} +{"id": "8003851", "video_name": "c4267bb6-57ed-5d88-b22e-eb58715127e0", "text": "The cars driving and rain pouring down "} +{"id": "2005636", "video_name": "d8947f56-add1-5b70-9f3d-bcb768f08058", "text": "A city in 2000 bc with cavemen hunting a dinosaur "} +{"id": "3004768", "video_name": "acd98050-1414-569c-abaf-35b4146b3ab8", "text": "A duck sits in a metal tile office "} +{"id": "0003779", "video_name": "4337ccf6-743b-5dd4-abd6-559d073f783c", "text": "a warrior cat on top of a long pillar in the middle of a stormy ocean with a cape and heavy wind, cinematic, IMAX, epic, photo realistic "} +{"id": "1006077", "video_name": "6f7979ca-d65d-5dfa-a756-c09cc0fe52f1", "text": "Harley Quinn dancing on a bar stool "} +{"id": "1003343", "video_name": "3d93bd2c-e86b-56ad-826e-ae54fd0fe593", "text": "a 30 second clip of a young girl walking through a yellow rose garden wearing a yellow dress in Pixar "} +{"id": "4003767", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "The wipers move faster and faster, as if to cheer up the driver and encourage them to move forward bravely. The scenery outside the car window is constantly changing under the waving of the windshield wipers. Sometimes it is dense forests, sometimes it is magnificent mountains, and sometimes it is quiet countryside. Every scene is like a picture scroll, making people forget to leave. "} +{"id": "7002503", "video_name": "8ff9cef5-7336-5c3f-8634-0b9bbe78e48e", "text": "a cafeteria inside with a lot of people talking and drinking coffee. 2d animagus style "} +{"id": "8003469", "video_name": "305465fa-3dfd-51cd-9b49-6f23208a9767", "text": "buddhist monk meditating in nature in the mountains with clouds moving "} +{"id": "3004034", "video_name": "ca1e64a4-a5ff-59a8-ad99-5934f66f6a92", "text": "A person riding a time machine, moving forward in a vector graphic style within a time tunnel. "} +{"id": "8001562", "video_name": "ce7c48c5-6c4c-5bad-b319-ab6c1fbfd0cc", "text": "a business man with laptop is sitting office "} +{"id": "8002513", "video_name": "dc275e73-d492-51e7-ae31-b393fc9ad5c0", "text": "a guy who is a video editor. the camera is taking video of him. i want to see the screen. the ratio is 9:16 "} +{"id": "2004127", "video_name": "fb27b1bd-1822-5f2f-8656-61d846cbb006", "text": "The process of making white wine "} +{"id": "0005032", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "In a quiet village surrounded by fields of green, two friends, a brave boy and a clever girl, lived their days dreaming of adventures. "} +{"id": "0005517", "video_name": "1c29fb92-72df-53a8-996f-8e1722b547f0", "text": "a man eating mud and bread "} +{"id": "7004804", "video_name": "5b61c462-1bbd-5249-bc02-2d4a2eccd81a", "text": "london at noon, 1000 birds flying in the street "} +{"id": "1003564", "video_name": "41beed58-7c1f-5713-9116-660052be232a", "text": "one chef cooking at modular kitchen "} +{"id": "2004190", "video_name": "3fa7634a-6032-5e73-ac99-f49a03f104c8", "text": "all these jewels being cried as tears "} +{"id": "0004196", "video_name": "04d7c3a4-7e0e-54bb-bd7c-2b999da62cd6", "text": "Background music: Light and inspiring melody. A wide panoramic view of a large, bright, and impressive library appears on the screen. Business people of different ages and nationalities are seen interacting with enthusiasm, laughter, and discussing books. The camera pans gently through the library, highlighting its scale and diversity. Characters pick up books and look at them with curiosity. "} +{"id": "0004679", "video_name": "0d2f5348-c771-572d-8392-5694460359b4", "text": "from the red dunes of Sossusvlei to the rugged beauty of Damaraland, "} +{"id": "3003600", "video_name": "bb9ce8b7-5e31-5c6e-830a-e93627a964e0", "text": "eerie scene of a talking fish "} +{"id": "6004966", "video_name": "cf04c764-a247-51d2-b1f6-e72fa4e4c74b", "text": "arnold schwarzenegger as batman, dark atmosphere, full moon in the background, cinematic look "} +{"id": "4004362", "video_name": "d1a15e3b-3770-52aa-91f8-9e09c956e41e", "text": "Chinese citadel on fire, standing from above looking down, long view, surreal photo, super sharp photo, super high quality photo "} +{"id": "1003663", "video_name": "436eaff8-7782-5c12-afe6-a147e89c5cd9", "text": "a blond man in a leather jacket is fighting a monster in the subway "} +{"id": "1003561", "video_name": "41b01a5b-4d7f-5317-ada0-87887985aec0", "text": "a beautiful dancer moving his hand in slow motion wearing a white overall in a abandoned warehouse. shown in full body "} +{"id": "2007175", "video_name": "3a3d33e3-4731-5b42-9604-feb19ca2cf31", "text": "cell shading mature cartoon style, dark with black, red and white colours of a crime scene with police tape Message: Suscribete (Font: BAUHAUS) "} +{"id": "0003107", "video_name": "372a2fd3-a86d-5cf8-afb3-5f0fa3bf7524", "text": "2d animation, Sheep listening to music with headphones lying in the clouds, loop version, colourful "} +{"id": "2005760", "video_name": "dfc52ef9-1862-5036-8759-85855b2d0b23", "text": "1956 Dartmouth, academic institutions, working in the workshop, with inventions "} +{"id": "2003023", "video_name": "634de176-9090-5149-9c18-1a89bfca46f0", "text": "approaching slowly sinister steampunk airship hovers over old village "} +{"id": "4003737", "video_name": "28a7bf3a-8c5c-5ceb-8af1-abd79d17d93b", "text": "a skincare bottle, minimalist photo shoot, pastel colors, directional light through window "} +{"id": "8002287", "video_name": "43486a05-c284-50ea-9ab1-027dffcb522e", "text": "young, beautiful, smooth, feminine, hands made of gems, max realistic "} +{"id": "3005665", "video_name": "2f676dff-03c2-598a-85ed-9f32163855af", "text": "girl outside gothic castle in snow storm "} +{"id": "1006674", "video_name": "7a5409c8-4c62-552a-b2e9-437b43ffa9ea", "text": "Ice Cream Tsunami Is Hitting London In UK, 90s VHS Filter "} +{"id": "2004556", "video_name": "5fd6dc2c-dee9-563d-99a5-0142a83c6d95", "text": "vr hands interacting with a digital object "} +{"id": "7003171", "video_name": "b5321382-bde8-538b-8b44-5bc7c4f051c5", "text": "girl with gryffindor tunic, with hogwarts castle background "} +{"id": "3006135", "video_name": "643e2d1b-5baa-5468-8933-0f8fe18d91d3", "text": "In 1947 Aliens overtake the bodies of returning soldiers Their voices were echoes of the past, but their eyes reflected an alien agenda. Maggie, a female detective, with a heart as cold as steel, confronted the invaders, determined to unveil their sinister plan. "} +{"id": "0006101", "video_name": "269b721f-7b15-5971-be96-27a4e98cbc8a", "text": "Zooming in on a car going down a hill road "} +{"id": "8003522", "video_name": "0c9e150a-bc0c-5bc0-b12e-4f9e52b81809", "text": "a foto from the film titanic "} +{"id": "7003476", "video_name": "49cf2c8d-8340-5393-80fe-4ee08e6441ad", "text": "New evidence points in different directions, complicating the investigation. Investigators have to examine mysteries and examine testimonies to filter out the suspect list "} +{"id": "0006159", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "a dog flying in the sky who introduces himself as Liu Tiangou. His words are to be displayed in Chinese characters. "} +{"id": "5001780", "video_name": "4ffc12bd-5ff4-5ec5-b924-cbf8a1df9225", "text": "Generate a video featuring a 3D model of a man with a visibly fat abdomen. Start the video with the model in a neutral posture. Showcase a natural yet accelerated process of abdominal fat loss on the man. During the video, gradually make the abdominal fat disappear in a realistic manner and highlight the slimming effect on the abdomen. Ensure that the fat loss process is visually engaging and realistic, with a focus on the transition from a fat belly to a slimmer one "} +{"id": "6004426", "video_name": "01aa65cd-ba05-5a95-8027-852a3a9bbc5c", "text": "Pixar character giving another character a high five "} +{"id": "7002389", "video_name": "4802efd4-e0dc-5c62-84df-c78a30b06727", "text": "alot of flowers on a landscape "} +{"id": "4004823", "video_name": "ff345119-7534-52c8-8a92-ce8040f027d4", "text": "As the team drilled through layers of ancient ice "} +{"id": "3003067", "video_name": "2599080d-d160-52f6-b476-aed967a801ca", "text": "Rain drops on window in raining day "} +{"id": "4004107", "video_name": "765d4d4f-59b3-56ea-ae6b-06d26158163f", "text": "A sad middle aged man riding a cargo bike into the sunset having a kid in the cargo box, photorealistic, cinematic, in the style of wes anderson, frontal view "} +{"id": "7002445", "video_name": "261c6aeb-893d-5ab6-bb36-cc6fe1860839", "text": "Alexander Graham Bell had just patented a new invention, the telephone "} +{"id": "1005515", "video_name": "6589d4e8-9420-5821-bb07-24b9aa830d3b", "text": "a sequence of images showing a tree throughout the changing seasons, emphasizing the cycle of losing leaves in autumn, standing barren in winter, and then blooming again in spring. "} +{"id": "6002315", "video_name": "748bf4c4-6001-5400-82ce-fe8f1428ac5f", "text": "\u201ca samurai with his kamishimo and hair moving to the breeze while fighting mythical Chinese dragon with scales swirling like smoke and clouds\u201d\nin the style of junji ito\u2019s ,horror manga ,best quality,vibrant red and grey colours "} +{"id": "2004073", "video_name": "ee11cf40-e82d-5d55-b2cb-431ff7847b9c", "text": "Mystical perception of space, luminous space, spiritual metaphysics, artistic architecture, arch, high altar, warm white, circle, arch, rotation of worship "} +{"id": "1005021", "video_name": "5ce2f0ec-7185-5043-9121-0cff2264380a", "text": "a beautiful time lapse of a pink rose growing from bud to fully bloomed "} +{"id": "3006254", "video_name": "95afd506-a90f-5016-9935-a1f27739ba1b", "text": "2 women and 2 men dance in a white box "} +{"id": "8003578", "video_name": "5a216776-bd77-5fea-9608-eab476db4010", "text": "Red lanterns are hung in the room and red Spring couplets are pasted on the door "} +{"id": "5001605", "video_name": "0e78dac4-bbc3-555d-afe1-c0f53839bf10", "text": "create a turkish man wirh turkish flag on a cabrio mercedes car with nice girls "} +{"id": "2007819", "video_name": "0e43342b-09ee-5810-82ab-397bfa88d1d2", "text": "a man dressed in techwear and sportswear stands breathing from exhaustion "} +{"id": "0003035", "video_name": "35ecd5a0-f285-5c1a-b92c-ed61659c4cfb", "text": "photo and video related to haloween "} +{"id": "6004606", "video_name": "101f9737-cc6e-5087-bd43-19a00a45faa1", "text": "a video of a women holding a kodak camera "} +{"id": "7004669", "video_name": "7e286e60-7b7f-5cbc-a968-82268bf52045", "text": "In a data network, see different data flowing, blue, white, arc, 60 frames "} +{"id": "2005386", "video_name": "4c675ddb-9cd3-5e8a-b352-be832f2d3a87", "text": "panoramas of a futuristic city of London and technological landscape. The background music is soft and mysterious. "} +{"id": "0004634", "video_name": "0c5ff30e-1c40-5c11-8116-343db4fa15c0", "text": "Birth of Venus on dc comics cover, as dc comics character, Birth of Venus style "} +{"id": "2005653", "video_name": "29a7578f-c23b-593b-8de3-a26463171569", "text": "create a Grafana Dashboard that displays various animated parameters "} +{"id": "3006614", "video_name": "904188e1-0d96-50a9-b0f7-a428075d198a", "text": "wwe judmement day with cm punk new leader of this faction "} +{"id": "4002653", "video_name": "0aac7045-5efd-5d52-8299-62ae359add10", "text": "Create a credits sequence with joyful characters celebrating and maybe even dancing. "} +{"id": "4002299", "video_name": "ceb713c5-2cd3-5936-a0ea-2a5ce05c5064", "text": "The city is enveloped in an eerie silence as strange symbols appear in the sky. Maya, ever the curious investigator, pulls out her phone, her eyes reflecting a mix of fascination and determination. "} +{"id": "6004475", "video_name": "b7de335d-3ade-5313-8c0a-fc013ee1db94", "text": "A haunted castle raining heavily and its dark,4k , mythological "} +{"id": "3004055", "video_name": "ec6a40c7-b8e3-5dbc-a878-b792a49f1d72", "text": "Playful pandas in space, zero gravity antics, floating pandas, cosmic background, interstellar adventure, spacewalk, weightless acrobatics, panda astronauts, celestial scenery, lunar landscape, cosmic clash, panda quarrel, extraterrestrial drama, cosmic chaos. "} +{"id": "0006160", "video_name": "278836e0-e4de-546c-9c61-50382537fef0", "text": "A sliced fresh lemon dropped in to a water with ice, cinematic shot, high detailing, side view, black background "} +{"id": "2006572", "video_name": "22869227-287b-50e2-b748-4281a79fb438", "text": "a pagoda in bagan , myanmar with neutral view with green field. "} +{"id": "5001957", "video_name": "c9038ebe-2865-5f2e-87eb-c263885ee2ab", "text": "a boy us walking to a big mysterious door and enter a big arcade gaming cybercity. Hyper realistic, 8k, full detailed. "} +{"id": "6004910", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "fire in the sky Message: 1 Attachment "} +{"id": "4003911", "video_name": "5fe69c48-b1ae-587f-bf5d-8c4f6ac02c63", "text": "polaroid of a man with a butterfly tattoo "} +{"id": "1005661", "video_name": "67fd1b2d-c0d9-5e2e-8671-65cd017e743e", "text": "seven fingers on the hand. camera shaking, hand lays on the table. "} +{"id": "8002349", "video_name": "b76e07c5-917c-5e01-8901-d1fd8eaef3bc", "text": "News of the War caused different feelings among the population at the time, especially among younger men who were old enough to serve in the Armed Forces. "} +{"id": "8003533", "video_name": "0d158234-ff28-5eb0-9441-834843b09e3e", "text": "night, small boat in the fog. in the boat there is a man in a black cloak and hood. "} +{"id": "7002406", "video_name": "4127d2cb-c6b2-540b-b8e9-41c02812ca7e", "text": "a colored seahorse is floating underwater in a colorfull landscape full of surrealistic waterplants, he has long thin hairs floating, basic shapes, relaxing mouvement, 3D render, CGI, blender Guru, octane render, bright shot, side camera view, dynamic Angle, bokeh, god ray light, deph of field "} +{"id": "1006163", "video_name": "70d5bebb-db90-5889-9392-251feec4564d", "text": "move the sunlight and shadows coming in from the windows "} +{"id": "6002724", "video_name": "bfcbdd0c-a769-58cb-af7c-1d21fbf2cc5f", "text": "create a video who is study dsa with laptop and siiting in a table on the top of the mountain "} +{"id": "0004511", "video_name": "0a4b5884-9e75-57f5-b13d-2eafdd075f11", "text": "View fron inside brain Illuminates in yellow the different areas of the frontal lobe, amygdala and hippocampus. "} +{"id": "4004154", "video_name": "1486b175-750c-56f3-8f0f-c90e11bdc6b3", "text": "A heartbreaking scene of loss and devastation as soldiers mourn fallen comrades amidst smoldering ruins. "} +{"id": "6003809", "video_name": "67fcab4f-8354-507e-af43-838bc477afc0", "text": "astronaut places a flashing antenna on the Martian surface "} +{"id": "7002381", "video_name": "87ad644b-807c-5938-92d8-8443329c6189", "text": "a girl in the moving train, drinking the soda, outside of the window is the moving mountain "} +{"id": "7004451", "video_name": "45abcccc-20fe-5abe-856a-166bbce104f0", "text": "Messi and LeBron James are training together 4k, GS scale 20 ,seed 1 "} +{"id": "2003658", "video_name": "e20cb3e5-b364-5997-8a91-3149e0d46651", "text": "Big Christmas tree made from branded Poizon boxes, stands in the city at night, bright lights shine on the tree. Cinematic effect, 9:16 "} +{"id": "0004775", "video_name": "0f0095a5-234b-5672-b2cb-4d5106728950", "text": "pixar toy story woody jump and run in the room "} +{"id": "7004418", "video_name": "4b8e74fc-b61c-5eaa-a056-20c89d8cf0bd", "text": "a lady moving up and down on a chair with a man in her garden "} +{"id": "1003868", "video_name": "474a2b6c-8e8d-5375-97b4-fad9e3bb7e79", "text": "brown teddy bear found in bushes "} +{"id": "3004847", "video_name": "10219752-d35a-5633-8b62-83bea9617129", "text": "Rainbow Cascade of Balls Animation Description: A mesmerizing scene unfolds as an enormous quantity of colorful balls cascades down from above. The balls form a mesmerizing visual spectacle, creating a stunning rainbow effect as they gracefully descend. "} +{"id": "6003222", "video_name": "398dc3cf-7ec0-5fdd-bfdf-0eacf73f5af4", "text": "beastie boys traveling through time periods "} +{"id": "2007674", "video_name": "6fed65d5-29b1-522d-abd9-187749493eaf", "text": "Star Wars movie image,A scene where a planet approaches the earth,humans panic,Panic in town due to traffic jams "} +{"id": "2003461", "video_name": "8ca41e14-89fa-5b55-9bf8-5587157ed286", "text": "The indomitable force that shapes our planet had left an indelible mark, "} +{"id": "0005824", "video_name": "21cb6e1c-9430-58cf-a77c-e745fcbeec6e", "text": "moution time laps day to night in portrait "} +{"id": "0006560", "video_name": "2eb06704-c4da-564b-b3e1-a1b2e50b3f3f", "text": "A group of men queuing to become recruited in the us militar defense "} +{"id": "0006306", "video_name": "2a66ad95-1b23-5b2f-9662-6e2e8a1aae93", "text": "office man breathing showing the exact movements of each muscle "} +{"id": "3004677", "video_name": "01ea7d23-f9b3-5f20-a4ec-7498a076186d", "text": "splanet exploding in outer space, galactic background with nebulae "} +{"id": "0005860", "video_name": "2272e656-4b85-5634-9a7e-ca84cfcf5347", "text": "make a scene of a monster inspired by the costumes of films like \u2018wizard of oz\u2019 and \u2018pan\u2019s labyrinth\u2019 that focuses on the unsettling and psychedelic aspects of these characters and creature. Make it in the style of 4k hd film and the setting is a big empty field in the countryside of England. "} +{"id": "7003620", "video_name": "0a290243-dc0c-5af8-a065-388c9b497204", "text": "a group of girls who all look alike Message: COPY (Font: MODERN) "} +{"id": "2006759", "video_name": "41d2c7e3-5fb3-5d28-9666-710d3d7040f7", "text": "the Lights from the House going on and of "} +{"id": "6002412", "video_name": "cafc9ca0-3169-5a11-9ce1-bd9df5627450", "text": "white cat on a bicycle in watercolor "} +{"id": "0004005", "video_name": "01778ce9-2d40-5489-99d8-945ef78b365c", "text": "a boy touching a mermaid in a life boat in the ocean with Disney pixar cinematic style "} +{"id": "2004360", "video_name": "d8f26362-cea2-57c8-83e0-4bedd201d7b5", "text": "Now all this happened so that might be fulfilled what was spoken by the Lord through the prophet "} +{"id": "7004649", "video_name": "35248523-3afc-5115-8175-a05540752a3a", "text": "A person eating a burger with egg yolk running. The person should be really hungry and enjoy their burger. The shop that they will eat is TGI Fridays "} +{"id": "5001600", "video_name": "75997083-c5d2-58c8-89ce-74834d6801f3", "text": "It generates an image where the engineer in an armed suit is pointing the gun directly at the camera and in the background the exploding building "} +{"id": "3005717", "video_name": "76dde672-73da-5c9d-85fb-0336fae76471", "text": "style: cinametic, a woman walking through a busy street down town, walking away from the camera "} +{"id": "2004140", "video_name": "0b71b582-6380-5ce9-b2a4-0fbae816f971", "text": "4k video quality,horror story,Struggling to untangle herself from the tightening grip of the red line. "} +{"id": "2003680", "video_name": "d204a61d-ad76-5b0f-8641-8587d98ce305", "text": "a theyyam artist performing in a forest "} +{"id": "0003163", "video_name": "38751cc4-45e2-5e88-8fd3-d73e42bf140f", "text": "Mushrooms in the forest grow, wither, and grow again all year round, demonstrating the cycle of life and the power of nature. "} +{"id": "0006156", "video_name": "277394ef-e600-57e7-914c-13337e1e024b", "text": "dogs surrounded with cats and chicken "} +{"id": "2007914", "video_name": "ab2dc2e3-f375-5b4e-aa78-d58be9be943c", "text": "Krishna Gopal Thakur Story, eyes are blinking, hands are moving, bodies are moving, talking laughing "} +{"id": "0003825", "video_name": "4429bcfb-3d42-5c73-84b9-933a925230b5", "text": "Man sits in futuristic medical sit and gets his face skin restored with extern futuristic robot medical hands "} +{"id": "2005858", "video_name": "2cf36035-f33c-5e75-9230-833b48512d06", "text": "it\u2019s raining in a haunted forest Message: spam (Font: MODERN) "} +{"id": "2007706", "video_name": "65c7c29d-4297-5a69-87e7-c866a66dcb98", "text": "Bee Gees Kermit dancing in a star wars themed disco with fish falling from the sky in the style of Alejandro Jodorowsky, 32k resolution, sharp "} +{"id": "8003222", "video_name": "bb7a43f1-1014-5398-a0a2-68ed32c62b35", "text": "hair dresser, hairstylist, coiffeur , hair styling saloon Message: BERRAK (Font: MODERN) "} +{"id": "1004981", "video_name": "5c178aa5-857f-5c24-b783-7271baba21d0", "text": "A little girl runs in the dark forest, back view, horror, fog, eerie, green light, red blood on the ground, spider webs "} +{"id": "5001496", "video_name": "c4bf8e49-7e2d-50b0-aad3-5ee707596953", "text": "sulfur red rain over the distance "} +{"id": "0003822", "video_name": "441f2112-2465-5370-9263-1ed14b8c25ff", "text": "Dark futurism background, blue and purple lines moving "} +{"id": "0005362", "video_name": "197c74cd-e210-5fc8-9852-534f02ef6140", "text": "Combine the bonfire with a starry night sky. Enhance the ambiance with the gentle crackling of the fire and the twinkle of distant stars "} +{"id": "3004605", "video_name": "632257e5-c037-5c34-88bc-e10930b68e97", "text": "Time and space are warping, and the boy is scared. "} +{"id": "7004690", "video_name": "ce2b0b28-f2fe-5c20-88fa-63a562294a47", "text": "constantly whispering lady in roboter suit "} +{"id": "2006981", "video_name": "82401dab-e94e-5135-9c0c-4dea1e1eb475", "text": "people move in an interesting way Message: 1 Attachment "} +{"id": "0005882", "video_name": "22c38a21-0a00-5897-9ba2-37b4cc128a97", "text": "To summarize, this merged text envisions a captivating world where biopunk elements meld with dystopian aesthetics. "} +{"id": "8001924", "video_name": "8d197c89-eb71-52e1-99a3-e47cf95679e6", "text": "a 15 year old boy walking on a park "} +{"id": "2003655", "video_name": "a4bb9c0a-8652-583a-a2e6-f01e4d3d1a72", "text": "a little chinese girl with traditional chinese costume "} +{"id": "1006057", "video_name": "6f3d6714-ad72-5cb4-9982-7498b027eac5", "text": "The Windows of the power plant glowed blue at night, surrounded by forest, looking down Message: 1 Attachment "} +{"id": "0003912", "video_name": "459bf918-9397-5c7c-a547-7b13cb4b19c1", "text": "leafcutter ant on a branch in the rainforest cutting through a leaf "} +{"id": "1006235", "video_name": "723bca4b-ca3a-57da-a588-0a1548818253", "text": "mechanical snake retrieving a chrome apple from a magical tree "} +{"id": "1005173", "video_name": "5f37adab-2a92-5657-8f80-d02bf7958744", "text": "make image talk and mix records "} +{"id": "4003322", "video_name": "0d114184-a53d-5622-94da-753adee00abb", "text": "happy happy happy, cinematic, 4k, arthouse "} +{"id": "3004290", "video_name": "8d939b82-0b2d-550b-95c0-874996472257", "text": "Zara gazing longingly out of a window overlooking a breathtaking landscape. "} +{"id": "8002312", "video_name": "20b5d1fc-901b-53eb-978a-64d9e95c0784", "text": "Hannibal Barca taking a solemn oath to defend Carthage at all costs. Capture the intensity of the moment with Hannibal surrounded by loyal soldiers. "} +{"id": "2005947", "video_name": "66f172f3-f525-5f93-baea-242e5cc51797", "text": "a lion chasing a human in forst "} +{"id": "0006028", "video_name": "2551be9c-fd6c-5f95-b9cd-a66c4c6968ac", "text": "black and white photo real image of Donald Trump declaring victory on election night in 2016 "} +{"id": "2003668", "video_name": "fec13648-4314-5ef8-92ad-9538208d09d1", "text": "A logo for a private investigation business that locates individuals. "} +{"id": "0004024", "video_name": "01b430ce-3c3d-5645-aa05-61ae37273812", "text": "Medium sized yellow bulbs in full screen with blue background burst together in vector "} +{"id": "7003431", "video_name": "5866ed11-174b-5f8b-81e5-1eecde9d31cc", "text": "a green harvester harvests wheat in a hot sunny day. "} +{"id": "2007679", "video_name": "90fae44f-b1d6-5290-9ac4-d2af0917f0b9", "text": "30 rasta birds, tropical, vibes, music video, zoom, flying to the sunset "} +{"id": "2004587", "video_name": "ec318466-89e5-5472-b332-f31f8639cd1c", "text": "photo sticking out of a hitch hikers pocket, sitting in a car durring a thunder storm "} +{"id": "3004965", "video_name": "eb447f87-9de1-5764-8f46-026bdc1ea27d", "text": "A man walking through a maze of fire "} +{"id": "2007068", "video_name": "a68f0217-8072-5db9-871e-a980d91b88f0", "text": "Unseen eyes watched their every move. Message: 1 Attachment "} +{"id": "8002814", "video_name": "d35df877-6f7a-5248-b09f-b3274ae56a41", "text": "man asking Jesus Christ for help "} +{"id": "0003833", "video_name": "44440041-5ac1-5eab-827d-e74df3f22151", "text": "A poor lady with her daughter "} +{"id": "2004470", "video_name": "93710bbd-09c1-553c-8b54-708569a91fcc", "text": "Doctor Evil zoom in portrait watching through a magnifying glass "} +{"id": "3005645", "video_name": "c1c9faae-32df-5019-843d-f102be9205d3", "text": "beautiful girl, hands tied, kneeling down "} +{"id": "2006291", "video_name": "f91cbfe0-0ecf-5577-a730-c2e783394908", "text": "The fairies and elves welcomed Lily and Mia with open arms. They danced, sang, and shared stories from their magical world. They even taught the girls a special dance that would bring good luck and happiness to their village. In return, Lily and Mia shared their peanut butter sandwiches and apples, which the fairies and elves found absolutely delicious. "} +{"id": "0003640", "video_name": "40e6ef2d-6576-577d-bbd5-04374f682354", "text": "colourful mountains, dreamy day, rainbow, waterfall, birds "} +{"id": "8002577", "video_name": "fb15f992-c20e-53ed-afd8-db5f6aa3cfff", "text": "little 5 year old boy monk talking , looking at camera "} +{"id": "2006101", "video_name": "369060e4-ff4f-5097-8837-bf5422f6a738", "text": "scary hotel with a tv in the middle of the lounge "} +{"id": "2006813", "video_name": "e2cc8d90-aa10-5a80-9115-1454950b478f", "text": "Underwater landscape, pink cat fish swimming "} +{"id": "1003654", "video_name": "4341d6db-d6af-56e2-a2e9-925c1c6010ce", "text": ": an image of a female african american robot walking, blinking and talking with City of Chicago in the backgound, camera zoom in, cinematic, hyperrealism, camera lights flashing in background, slow motion "} +{"id": "7004548", "video_name": "df057adf-8c8a-53be-b10d-ad49671a736c", "text": "A bit of water dripping from a handmade table from walnut "} +{"id": "7003640", "video_name": "fff5a0b3-e05d-50e8-9425-f755513cb39e", "text": "a woman with her husband,her brother,her father and her son "} +{"id": "7002699", "video_name": "3bf11b8f-2c43-58d0-9a47-480f7bf4efde", "text": "Nazarbayev Nursultan live in a playboy house "} +{"id": "0006680", "video_name": "30d6d9dc-47c2-548d-952b-0b65a3480dc0", "text": "A handsome man dressed in black wizard clothes, shooting a fire bolt out of his hand, with tears in his eyes towards a beautiful girl with deep red hair, looking shocked "} +{"id": "0004957", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "enhance the image, color it, and put it in a sunny landscape Message: 1 Attachment "} +{"id": "8001612", "video_name": "053335d5-c6de-5406-a6ac-df4e22e3ca81", "text": "Create a short clip Animated animation of people running away from dinosaurs "} +{"id": "3003357", "video_name": "2bb4127c-c109-503c-ae5b-3482e524bb47", "text": "love lettera in the night Sky "} +{"id": "3006171", "video_name": "457ac396-f920-5f95-a106-2b2f38e700c7", "text": "an octopus meets a squid, photorealistic "} +{"id": "8003809", "video_name": "b75e0183-83d2-5293-a3e0-ac91993a194c", "text": "Generate a vivid description of an anime girl joyfully running through a picturesque field of cherry blossoms. Capture the essence of her excitement, the fluttering petals in the air, and the serene beauty of the surrounding landscape. Provide details about her appearance, emotions, and the overall atmosphere of this enchanting scene. "} +{"id": "1003806", "video_name": "464c90d3-c536-539d-a2bb-08f375cf4d0c", "text": "jack ma with elon musk in shanghai "} +{"id": "6003297", "video_name": "5bcd7f23-6fef-5387-8556-d6b3d278da66", "text": "people dancing inside a festive British pub "} +{"id": "0004124", "video_name": "039daf82-20aa-5c49-95fb-5748a4e8e488", "text": "jumping and landing, motion, 4k, cinematic "} +{"id": "3004930", "video_name": "2b55e2b4-5721-5f17-bf30-d203e00fd8a6", "text": "She moves in with excitement, but strange occurrences start happening. "} +{"id": "8002012", "video_name": "1896bd26-7e04-5d64-81ad-ce8a8cbac118", "text": "dark and haunting underwater video of a royal queen swimming underwater and the visions under sea are hallucinations. Monochromatic, cinematic, photorealistic, beautiful. "} +{"id": "4003206", "video_name": "948d696b-1407-5b64-b39d-9902de1befe8", "text": "a giant kaiju flying in mid air above the clouds, and chasing an airplane "} +{"id": "2003661", "video_name": "b3206665-8e2d-5c26-84cd-aae340214491", "text": "group of people running on the street with a cell phone in the hand "} +{"id": "8001269", "video_name": "ce6820bd-a7fa-5517-b63d-504c9d331793", "text": "handsome african wise man waking up in the morning "} +{"id": "2006212", "video_name": "6543aa08-22ec-53ae-84de-9dacefcf8c0b", "text": "A large fenced community with zombies roaming it 4k UHD Hyper realistic "} +{"id": "0004756", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "The movie opens in the eerie silence of an abandoned psychiatric hospital. Meet JASON, a former patient who has returned to confront the ghosts of his past. "} +{"id": "2006991", "video_name": "9e8f391e-7880-54b9-b022-2f5a6fbf324e", "text": "Explore the captivating life of Vespasian, the Roman Emperor, and delve into the unexpected twists that defined his reign. "} +{"id": "2005544", "video_name": "ab3080f5-9ec0-5fe9-b98f-92109201c81b", "text": "in front a television screen. suddenly, appears one hand from inside knocking three times. "} +{"id": "7002515", "video_name": "07ff6314-0c59-5359-87d2-ec46b52d0842", "text": "sheep macro, depth of view, camera zooms Message: ESTERILLAS (Font: MODERN) "} +{"id": "8003641", "video_name": "cfc4c98b-02aa-5d1d-bfba-6c1c9940afc1", "text": "a man seen from three quarters in a small kitchen, is preparing the dough for meliga biscuits for a party "} +{"id": "6003314", "video_name": "96634517-3ade-5320-85f5-ea9cbf3e6ef6", "text": "dark pink christmas decorations Message: HEADEX (Font: MODERN) "} +{"id": "3006539", "video_name": "9dfe08a1-d2ec-59a0-af6c-2e8589bc2b8e", "text": "sexy woman dancing around a Harley davidson "} +{"id": "7003840", "video_name": "d1774646-31de-5f9a-bd39-9fd3f37a6fae", "text": "Cinematic Portrait of a medieval wagon with a broken wheel "} +{"id": "2005352", "video_name": "82967599-0d58-50e1-93f7-e38753343959", "text": "3D Sam and Jake continued to joke with him, but then Mr. Brown revealed to them that the miracle potion was just a myth. "} +{"id": "8002070", "video_name": "ee97b093-3ef5-58b3-8431-d2eb3306e5cb", "text": "Please create a pod of dolphins swimming in the ocean for me "} +{"id": "7003231", "video_name": "6ee8a56c-3598-5a06-bb34-14920a82e785", "text": "Morning in a Pine Forest by Shishkin, bears in cyberpunk style, oil painting on canvas "} +{"id": "0006426", "video_name": "2c2358de-f0c3-5b2f-9d94-04eb074ba19d", "text": "light gray cat with black stripes and yellow eyes flying in space conquering planets "} +{"id": "1003167", "video_name": "3a574aa4-3bc9-54e2-817b-11e4f052347d", "text": "music, a melody that whisper tales of ancient times, singing ever touched your soul "} +{"id": "6002377", "video_name": "9dbcf5f7-4d3d-5bca-a6a2-d05b2dd0f7f7", "text": "A commercial for a hamburger without cheese, with the name Eitan Meat Eilat, 30 seconds long "} +{"id": "4002756", "video_name": "16cdccde-9877-539d-82fc-291ba4df1158", "text": "bmw i8 rides on the moon "} +{"id": "2007751", "video_name": "5703934c-6ea6-57e8-93eb-26457148dbfc", "text": "Blinken in a helicopter smiling and clapping his hands "} +{"id": "4004391", "video_name": "8e8a78d3-9616-53f1-9283-feff97abf5a2", "text": "As Lily and Mr. Johnson danced together, an incredible transformation occurred. The sadness that had gripped Mr. Johnson for so long melted away, replaced by a twinkle in his eyes. The town\u2019s gaze shifted towards the pair, witnessing the magic of love and the power of selflessness unfolding before their eyes. 3d, Disney Pixar style, High quality, 8k ultra "} +{"id": "2006325", "video_name": "b0bfed0b-b631-5ea4-ac59-4b2477c535bd", "text": "Tulkas vs Morgoth fight scene, cinematic and dramatic scenes of the fighting, actions, characters are designed according to Silmarillion, Tolkien, LOTR, Elf, Valar "} +{"id": "7002296", "video_name": "f9e61b94-b4c1-51a5-9ef1-41b1e0246678", "text": "Upbeat music playing, a picturesque farm with green fields and a bright blue sky. Meet Moo, a lovable cartoon cow with big, expressive eyes and a friendly smile "} +{"id": "2006485", "video_name": "1234d394-02a6-5423-af15-2201fa070974", "text": "Deadpool turning into batman in the blink of an eye "} +{"id": "7002783", "video_name": "bb131187-bbc7-56bd-92a1-89ff33cbf555", "text": "two girls in love at a Japanese school "} +{"id": "1003374", "video_name": "3e322c5b-3e92-529b-8ede-0e1cddf362a5", "text": "futuristic tribal alien looking outwards, cinematic, full body on a futuristic motorbike flying through a city, wide shot, "} +{"id": "6002454", "video_name": "23382a38-2122-50ca-840f-a859ded8bedf", "text": "aestethic anime vibes scene, cyberpunk, anime vibes, 80s, vhs, detailed, hyperdetailed, neon, 64k, aestethic vibes "} +{"id": "0003878", "video_name": "4509b584-91e2-5777-bc40-3ed9200134cb", "text": "Coco, Mia, Luca, and their adorable parents. "} +{"id": "6003751", "video_name": "838bc625-cceb-5a02-9644-f12a9e8e0290", "text": "a light opening in the sky (cinematic) "} +{"id": "7004252", "video_name": "1d730eb2-32ea-5875-8b86-9a4c29beba2c", "text": "the passenger ship is moving in the ice "} +{"id": "1005339", "video_name": "620f863f-2ec2-53f0-9e81-bf917afa0026", "text": "a big Naan bowl of rice bowl curry in a professional studio white background top view down shoot 8K depth of field "} +{"id": "3004155", "video_name": "24d5fefc-2c47-5037-8317-8c18741d1a94", "text": "Without hesitation, Ethan and Oliver dove into the water, swimming swiftly to reach the struggling child. With determination and teamwork, they managed to rescue him just in time "} +{"id": "2007572", "video_name": "2b774b4a-c14e-5183-bce4-a8679746b5df", "text": "Engaging in dialogue, advocacy for peace, and support for initiatives that promote reconciliation and coexistence can contribute to efforts for a just and lasting peace. Promoting awareness and understanding of the situation is a meaningful way to support those working towards a resolution. "} +{"id": "8003415", "video_name": "65e33ee9-8d72-5346-b2d2-c8bde9a7a89a", "text": "A man looking at the sky as a nuclear bomb falls, In a forest, Disney Pixar type "} +{"id": "3005412", "video_name": "a279ec0b-e435-519b-bfec-0f03f11e3c07", "text": "a scientist trapped in a dark, abandoned research facility, hunted by malfunctioning AI experiments gone awry. "} +{"id": "8002922", "video_name": "8b94c811-3620-50a1-85ed-4e6511bb9a62", "text": "the young woman leading a choir while playing a piano "} +{"id": "6002679", "video_name": "3f0e8052-dd40-5172-ba1d-bf8fa939538e", "text": "Fish jumping out of the glass "} +{"id": "6003131", "video_name": "cf217cbc-724f-5a50-bb3a-ec1dad7a7aa7", "text": "Describe the photo capturing (moment, topic or subject), include dramatic details, storytelling, city, year and some cinematic effects using only adjectives and keywords "} +{"id": "7004109", "video_name": "a5061576-c738-5d64-83d7-e6749e201d0e", "text": "pov shot of jumping from one roof and landing on another "} +{"id": "6002722", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "The audience animals of sea clapping and cheering for Della the Dolphin, their applause echoing through the depths in The vast and sparkling ocean, with the sun setting on the horizon "} +{"id": "6004494", "video_name": "7d51e5c0-54f7-5405-89e6-95eab0ba73ac", "text": "sketch of a yellow monkey, mounted on a static "} +{"id": "6002912", "video_name": "ea036f24-e3c9-5f8b-b8d0-2d915bf9174d", "text": "A charming, picturesque town with rolling hills in the background. 4k, realistic, colorful, vibrant, modern. "} +{"id": "8001817", "video_name": "c8d2650f-56fd-508d-868e-df20fed1e7b2", "text": "An image of lightning striking a tree and its branches turning into roots penetrating into the ground "} +{"id": "1003255", "video_name": "3bebbc84-db3e-5468-a837-a6dfc17bdd7b", "text": "blasting crackers, blinking light, and 2024 looping "} +{"id": "3006611", "video_name": "1ce0f477-bda6-5f1c-9b0f-66e951b6b3db", "text": "a closeup shot that elon musk is watching a burning city, then he turns to the camera and smiles at us "} +{"id": "0005518", "video_name": "1c30737a-6de4-5c37-9882-650c4469b947", "text": "role playing game table epic battle "} +{"id": "2004548", "video_name": "b025a3a1-ac96-5442-83d3-76da2f27d150", "text": "a robot checks on cargo in a massive dark space station. Metallic. Spooky. Intense. Ultra wide angle. "} +{"id": "1004564", "video_name": "54c89f29-0c82-5b2e-8724-860c5c429aa9", "text": "clean design, desert, mirror wall, people with future army suites meditating, surreal calm scenery, photorealistic, shot "} +{"id": "4004399", "video_name": "168ff944-a972-5624-b663-6159803699e5", "text": "Trump running fast around and jumping "} +{"id": "3004839", "video_name": "90c72c6a-1e07-5d13-9e10-9fd949af6985", "text": "prompt: moving clouds and vocanoes erupting "} +{"id": "8001940", "video_name": "cb304806-ca5f-5aac-819f-e690b71c3ee8", "text": "A man running away from a giant living ice cream cone, Studio Ghibli style "} +{"id": "4004494", "video_name": "9ce7c1cc-eaa4-583f-be3d-99022ba3e8c3", "text": "A serene lake surrounded by high mountains, where a lonely swan gracefully glides across the glass surface, leaving ripples behind, hdr, uhd, raw, dslr, cgi, 1024K, misty morning light, dawn "} +{"id": "0005241", "video_name": "1722b7d1-15fd-5130-a94b-e7241d1bb632", "text": "clouds in sky above a road. Message: BE NICE (Font: COMICS) "} +{"id": "1004571", "video_name": "54e83880-a72a-5472-af48-313cd7ca86b1", "text": "River flowing through olive trees in 4k resolution "} +{"id": "0005812", "video_name": "2190ec53-bbf8-5831-b617-da0b372a4f2c", "text": "someone ran as hard as he could, chased by many zombies. in the middle of the forest "} +{"id": "3005492", "video_name": "e3d00130-7b7b-5ddd-b4b1-f516fa649047", "text": "ultra realistic, firetruck , day , fighting fire "} +{"id": "8003181", "video_name": "63ab128a-f8a0-5ce7-8e6d-c4da119e3e0e", "text": "floating hands cutting a pineapple, Fisheye, VHS, Super 8 "} +{"id": "0006329", "video_name": "2ab78d3d-ec2a-5669-a691-148c55aa7424", "text": "animate, both persons hair move, eyes wave, "} +{"id": "8002458", "video_name": "cda07b8b-ec95-5bf5-8516-249f3c5509d5", "text": "Motivational losing 5kg in one week "} +{"id": "6004361", "video_name": "037d44de-7e5a-5798-a310-c83aea38adb8", "text": "credit score on paper with personal information of a chinese kid "} +{"id": "6002682", "video_name": "7c527ba7-566b-54b9-a699-60847d98e09c", "text": "a car is driving along the road. Forest winter evening\nar 19:9 "} +{"id": "0006484", "video_name": "2d4ee89b-1f57-54fb-a441-702394f70232", "text": "Eerie Atmosphere: Misty Night in Springfield\nA thick fog blankets Springfield as strange occurrences unsettle residents, setting an ominous tone. "} +{"id": "6002981", "video_name": "8c3f838b-fc73-5f62-94ac-a8d1eaf83072", "text": "grey alien, Area 51, photo realistic "} +{"id": "3004215", "video_name": "01402c84-0c88-5695-8b56-6578ca432c70", "text": "monster seen in full body, with a face of terror which is seen pointing towards you, causing terrible fear. In the background you can see a city with a wind animation on its cape that covers the entire body, very similar to death. This animation must have a message in the background digital idea mkt "} +{"id": "1003688", "video_name": "43f4e564-ccc1-5aac-a14c-69eed1cce2ba", "text": "When a woman opened the door, she was Stunned "} +{"id": "4003823", "video_name": "c97297ca-dd8c-50c6-ae82-ca1c302a1dc3", "text": "a crowded futuristic japanese dance club with neon lights and dancing people, 8k, cinematic lighting "} +{"id": "3003889", "video_name": "9eefc926-e87d-59bf-b34c-728c595d8595", "text": "counterstrike 1.6 Xanax Percocets Molly darkweb source engine nodding CT "} +{"id": "1004369", "video_name": "50b920c8-84f9-5b29-9ed1-8393abede9f5", "text": "Design a video depicting a bird taking flight against a clear blue sky. "} +{"id": "1005266", "video_name": "60e4b591-2c25-50d6-bf51-f1e606c22e0a", "text": "modernized American revolution, motion 4, 30fps, zoom out "} +{"id": "2006960", "video_name": "91506482-a156-5bbc-a828-f22c2c789069", "text": "A robot jumping from the top of a skyscraper, city ruins, cyberpunk atmosphere, 2077, Tokyo, intricate details, 4K "} +{"id": "3004347", "video_name": "58790c57-9e43-5a7f-8106-cc416f563b95", "text": "clean road, beautiful sun,little boy,camera zoom in "} +{"id": "2005513", "video_name": "60f68fc3-f612-52f2-af87-bbe7242f01ad", "text": "Create a 10 minute cardio workout video for beginners to burn fat and calories "} +{"id": "4002199", "video_name": "574ac63b-bef6-5cff-943b-8b3e391b8c76", "text": "A little girl with a gun, running "} +{"id": "0005655", "video_name": "1eceff15-015b-5a26-b7e9-83b20109057c", "text": "Describe a climactic showdown where they confront the mastermind behind the conspiracy. "} +{"id": "2006364", "video_name": "09c92533-814c-534d-a3b4-c4ea8288447d", "text": "A Hawaiian surfer, surfing a big wave in Hawaii. "} +{"id": "1004345", "video_name": "5025e221-817f-51c7-b3ec-f4b74e4cd6be", "text": "Santa Claus standing under the Christmas tree holding a Merry Christmas lighted sign next to all the presents and moose "} +{"id": "3003535", "video_name": "0855ab78-1316-54f3-9011-508e978ae5d5", "text": "make camera zoom out object smiling, horroric scene"} +{"id": "2005184", "video_name": "2eef866f-8617-5982-8bea-1d529fab7756", "text": "Zoom in on the secret signature sauce being drizzled over the burger "} +{"id": "2003723", "video_name": "065b71c9-2776-5279-a4a4-d7d155e531c3", "text": "35mm. avengers heroes team standing on iceberg with gaz factory on the background "} +{"id": "7004017", "video_name": "fbe0c4d1-f688-561b-900e-c53b25172094", "text": "interior decoration with morden style for family of three "} +{"id": "1006859", "video_name": "7d3b158e-7923-5f14-825c-87547aace4d8", "text": "generate a 3d animated video that a boy playing guitar by standing in a park "} +{"id": "6002397", "video_name": "07acc4ea-8971-5e82-855a-5c0540719cd9", "text": "skull doodle with a lot of cartoons, anime, based on ali golec art "} +{"id": "0006663", "video_name": "30a5efea-d76c-5d28-8a3d-543d410c459e", "text": "Motion video from the song Lost in the Dream by TMons "} +{"id": "6002132", "video_name": "d8f96b4f-fdf9-5ccd-b711-82bc404d065e", "text": "University in autumm, camera zoom out Message: UPN291 (Font: MODERN) "} +{"id": "0003510", "video_name": "3ec07379-196a-5b55-8254-7be85607ea41", "text": "Somewhere in a village, a turtle lived in a beautiful lake. "} +{"id": "0006580", "video_name": "2ef6a7df-7e4a-5abb-9a92-dd3be89768d4", "text": "a child trying to eat the sun flying in the sky "} +{"id": "4003298", "video_name": "1176b368-2e70-53ac-b803-b4256445a04a", "text": "sheet music on a paper while several boys sing "} +{"id": "1006269", "video_name": "72cd5be6-99bc-5c4d-8e42-14968bcda66c", "text": "Characters: A young woman with long, curly hair and a red dress; a tall man with a beard and a black suit. "} +{"id": "1005254", "video_name": "60a6e16d-6a77-5fc4-b4c8-958193c18556", "text": "a pixelated world introducing three adorable characters named Pixel, Codey, and Byte "} +{"id": "2003425", "video_name": "70711b54-49c8-5882-8ad5-7a911d5f3dcb", "text": "beach with white sands and blue sea "} +{"id": "3005578", "video_name": "9455bffa-f748-598b-bed1-8d14fc1811b7", "text": "There are various accounts and disagreements regarding the history of the Seal of Prophethood. Some suggest that it emerged from Baghdad during the Abbasid Caliphate and was placed in the Topkapi Palace by Sultan Suleiman the Magnificent. However, it is not confirmed whether the Seal in Topkapi Palace is the original Seal of Prophethood. "} +{"id": "7002418", "video_name": "cf017fb1-a588-52f8-a5ff-f11a142ce97b", "text": "Knight being hit by an Arrow "} +{"id": "3003520", "video_name": "c2b48b75-7fe0-5ceb-8905-4636950578e6", "text": "An alien is standing in a pineapple field, holding a pineapple "} +{"id": "3003639", "video_name": "19290eb7-045c-5c96-9335-0d7697a4b9c8", "text": "joe biden is safocating the stature of Freedom "} +{"id": "0004079", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "Rabbit twisting vines, slippery rocks, and thorny bushes. Despite his agility, he struggled to navigate the challenges, occasionally tripping and stumbling "} +{"id": "0003222", "video_name": "3988bb73-ec0c-5cee-aa63-bfbf5afdd1e3", "text": "A mysterious third faction, shrouded in secrecy, emerges from the shadows. They offer an alliance to one of the warring parties, promising advanced technology and strategic support. The proposition introduces an element of uncertainty and intrigue into the already complex conflict. "} +{"id": "0003181", "video_name": "38d14a65-8b75-5589-ac8b-29e72eca01c6", "text": "one young man walking at the sea shore alone, sad, side view, full body view, body full cloths, sad and water, bright day "} +{"id": "5001556", "video_name": "c5576821-3125-588e-b285-bd2990c87e47", "text": "create a logo for blessed bride studio "} +{"id": "3005299", "video_name": "21b9dd7c-2814-51e6-9eca-8d21b64141a7", "text": "Landscape of Longmen Grottoes in Luoyang, China "} +{"id": "7002026", "video_name": "861aaaf6-671e-5056-b90f-4aa79a6ed5bf", "text": "An elegantly dressed man on top of a hill where you can see the breeze of the wind passing by and the clouds in the distance while he watches the sea all in Japanese animation style "} +{"id": "0006127", "video_name": "2708552f-e7ae-513f-9366-4df66b28e889", "text": "Risk management plays a crucial role in a construction management system. In construction projects, there are a variety of risks, including technical, financial, and legal ones. Identifying, assessing and managing these risks is key to ensuring the success of a project. This article will discuss the importance of risk management in a construction project management system and provide corresponding perspectives and insights. "} +{"id": "2003722", "video_name": "7016572e-51c6-502b-8d0c-b1e583000bcd", "text": "cyborg in the future with the name alexander santana on its chest. walking in facebook world "} +{"id": "4003822", "video_name": "92d44936-9d6e-5aa4-862c-05b87da4f6ba", "text": "H R Gigers aliens creatures fight "} +{"id": "7003783", "video_name": "15c0453c-b599-5c91-9996-e5b8a5981f5a", "text": "A graphic depicting a boulder representing resistance, and a person gently rolling it in the direction of the arrow. "} +{"id": "2007096", "video_name": "26c64ee7-1342-5669-80f6-c7fe9647630e", "text": "Musk played against Zuckerberg, with high definition in the middle shot and very fine picture quality. "} +{"id": "8002485", "video_name": "d6ce1dee-637c-533c-9d1c-8607592e0bca", "text": "prompt: a woman booking vehicle using an online app "} +{"id": "3004416", "video_name": "dc5d2a9b-d683-501c-8012-3b326049181d", "text": "two young women without shoes play snowballs in the frosty snowy winter street and laugh "} +{"id": "3004906", "video_name": "3df65b30-7e7b-5fab-a27d-8c09084404eb", "text": "MAGRUDR cybernetic confederate chronicles ALF tv show intro "} +{"id": "0004192", "video_name": "04cf9fd2-bf78-5402-b2ab-9596851d9d43", "text": "a sportsman wearing nike air and running "} +{"id": "2005228", "video_name": "ce68f11c-cba7-5c68-9af5-219ca724c1b9", "text": "anime,angel woman with her hair moving and open eyes shining "} +{"id": "2006665", "video_name": "7097cc62-d60e-51c9-a886-ef16c2a21876", "text": "In the moonlit town of Ravenshadow, nestled between ancient woods and forgotten graves, a sinister secret lurked within the walls of an old mansion "} +{"id": "3006559", "video_name": "abaf08d9-4d74-5919-b762-c6d053f14802", "text": "create a real image of glandular trichomes of papermint under a microscope realistic "} +{"id": "8002905", "video_name": "50842541-6966-592a-9871-b793e9d565db", "text": "why turmeric work better with paper "} +{"id": "8002776", "video_name": "4bdfbecf-bd65-5d79-a1d0-5f05d30c9d47", "text": "Inside the space station, Astronauts operate instruments, The lens pans left and right, an image of a high speed train traveling over a lake, Flat wind "} +{"id": "2007769", "video_name": "32ced143-85f2-5926-9ffb-b1aeb8d8110c", "text": "Illustration of home experiment with flashlight and water to demonstrate light scattering "} +{"id": "6004603", "video_name": "78d17106-370f-5f2b-a658-a994a10a3203", "text": "An old castle style bedroom with twinkling blue flames "} +{"id": "6002302", "video_name": "f2a3c9a0-4f53-5bd7-a2f8-2766fee4f513", "text": "man eating big brown sausage dripping in brown sauce, close up shot "} +{"id": "6002596", "video_name": "9d3cbd63-a0c8-5a57-bcd3-df2943c2484a", "text": "3D pixar style animation, a vibrant cinematic photo, a Fox, always playful, decided to join the dance, while the curious rabbit went to talk to some fairies. octane rendering, high quality "} +{"id": "0005709", "video_name": "1fdd3384-54b1-5e23-8f35-aca2fe9d9935", "text": "Show the mirage on the horizon turning into a tangible oasis. Convey the sense of achievement and fulfillment as they approach their final destination "} +{"id": "4004155", "video_name": "bf826e61-933a-5926-b965-304325ea171e", "text": "Spongebob rapping in New York while wearing a nike outfit, perfect captured, no face deformation, no distortion, no blurry "} +{"id": "7004268", "video_name": "efcf0f9e-fc78-5e1e-916d-7790a8fdc7a7", "text": "In the bright sunshine, amidst the ancient forest, there is a murmuring brook, a school of fish swims gracefully in the water. "} +{"id": "5001908", "video_name": "2e6b6127-a91d-574d-b2f1-31e4bd413188", "text": "hyper realistic gremlins posing atop of a Paris runway fashionable trendy spiffy striking "} +{"id": "0006025", "video_name": "25343700-b088-507f-b7fc-f0736f2592d4", "text": "an ia robot walking in a park "} +{"id": "2007609", "video_name": "dba674ea-abb7-565c-b0c4-10d2c7046378", "text": "farmer digging for portal coins with a alien portal in the sky. use portal coin logo "} +{"id": "5001881", "video_name": "281a5381-78c0-55cd-898a-7a0e85782f79", "text": "pixelated video of Princess Pach running Green Hill Zone in Sonic the hedgehog video game. "} +{"id": "7003716", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "A Russian soldier standing on the battlefield (a soldier stands in the middle) in the hands of a wounded comrade "} +{"id": "4004386", "video_name": "a2aaff99-612a-52f2-b071-daf93d565c34", "text": "girl in forest with alien face surrounded by big trees and flowers "} +{"id": "1005985", "video_name": "6e001429-a8b0-5eb1-90d5-379cfda297a0", "text": "Two friends were talking with each other "} +{"id": "7002660", "video_name": "0b485a7f-07f6-531a-8779-8777ded3e0ed", "text": "A cat plays happily on a patio "} +{"id": "2003537", "video_name": "9fa399bb-1efd-5412-b1a2-1a6668f67daa", "text": "deer carrying sugar bag,farmhouse,kitchen,teeth,sugar cubes, dull color, farm,farmer,quick movement, picture from above, noon, light background, moving fast , from above, "} +{"id": "2007300", "video_name": "6a3c2431-9ba5-51d1-8ffa-01f474bac02f", "text": "sonic running and catching several coins "} +{"id": "0005470", "video_name": "1b56a283-3c61-5aee-98e1-10d4e2d98536", "text": "a man is boarding on train in middle of dark jungle "} +{"id": "7004322", "video_name": "1e9b339c-581e-5184-b50b-efb101560293", "text": "a ghost footage on a vhs camcorder "} +{"id": "0003522", "video_name": "3ef0ac35-09ff-5a5e-a35f-af72cb3407b3", "text": "The flight of a thousand cranes towards Mount Fuji. Cinematic magic as the sky fills with their graceful ascent, a breathtaking spectacle. "} +{"id": "1005623", "video_name": "6761dd04-6423-536e-93bc-7272d9a0afc1", "text": "seven of st johns symphonic women on a road, in the style of organically inspired body art, light silver and silver, land art, ndebele art, fantastical, otherworldly creatures, playful performance art, richly colored skies "} +{"id": "3004636", "video_name": "d2527821-034e-5759-a2da-1d2760233449", "text": "person kicking football which cover short distance "} +{"id": "1006687", "video_name": "7a9c3015-a9da-510e-aee3-a04568c6bb02", "text": "book my show salar movie tickets booking "} +{"id": "6002863", "video_name": "68e5e84f-1a28-5c99-8bdf-748eb91e989d", "text": "man and woman hug in 8k, extreme detail, anime art "} +{"id": "2003315", "video_name": "87787bb6-3748-5138-bfa8-4e8d69f298a7", "text": "Sun rising or setting in the background to create a tranquil ambiance. "} +{"id": "5001273", "video_name": "7bbde7a2-7bab-57f1-8f8b-6e782fceb41a", "text": "Animation of a beautiful Black Woman, wearing earings and jewelry, running through filed of sunflowers, the sun is setting behind her, The wind is blowing through her hair, hyper realistic, polaroid film "} +{"id": "0003367", "video_name": "3c58d12c-b3f2-5674-abf8-72aafb3d7d92", "text": "A Chinese girl wearing hollow Bohemian style short skirt playing with a dinosaur "} +{"id": "1004333", "video_name": "500842ca-4f74-531d-80e8-c3f2fa4391d9", "text": "a forest full colored water and space Message : ABDOU MOHAMED "} +{"id": "8002126", "video_name": "70d7381e-57a2-5904-b38d-a4733e102480", "text": "White buck haunts the birch forest, majestic, majestic, photorealistic level, Unreal Engine 5, "} +{"id": "7002150", "video_name": "704843e4-81ff-5716-9cb3-aea78d34b39f", "text": "image of group of people resolving conflict peacefully "} +{"id": "3003594", "video_name": "e310edfe-daa1-59a2-8010-f0a6a04a3fe2", "text": "angels of God descending from heaven, behind a tree in a field "} +{"id": "2007086", "video_name": "6f4baa8e-aca2-5ede-98e3-047e2f18b7d2", "text": "ultra realistic video of war from the perspective of a American special forces soilder "} +{"id": "0006822", "video_name": "33ac019d-6ce1-5945-a8ca-554c66f8eb7d", "text": "The property of the convicted shall not be confiscated, fast motion "} +{"id": "3004891", "video_name": "1166f42a-bf70-57be-8752-642d9e2b2c55", "text": "the patriarch jacob sleeping at the bottom of a ladder that reaches the heavens, realistic "} +{"id": "0006206", "video_name": "2867b7d3-20ac-50f4-8331-5a21837c85eb", "text": "cinematic In a world where time is controlled. "} +{"id": "0004132", "video_name": "03d0f830-865b-5939-894c-6a0a4934bc9b", "text": "Once upon a time, in the enchanting kingdom of Bloomsbury, there lived a kind and gentle king named Frederick. He ruled his kingdom with compassion and wisdom, beloved by all his subjects. However, something was missing from his life, something that would light up his heart with joy. "} +{"id": "0006540", "video_name": "2e67c0e4-1814-5e81-bdd3-01b8921040b9", "text": "flying through a black and white dissociative hole with psychedelic geometry "} +{"id": "2007664", "video_name": "93366efe-177d-55e8-90c0-49f5f4616dd4", "text": "Zombie walking through a field western manga style "} +{"id": "6003814", "video_name": "d8c60db4-ddc3-5247-9f96-891fde9776b9", "text": "outline black and white cartoon. white terrier detective in a Sherlock Holmes hat eating a pink ice cream near dead body "} +{"id": "8003553", "video_name": "00c55cec-d208-5965-af7d-2db2f6d569e5", "text": "On a lone spaceship marooned in deep space, one astronaut discovers recordings made by the previous crew. "} +{"id": "1005215", "video_name": "600a766a-ec79-5805-9623-71b4e247de69", "text": "Pandas in the forest are climbing trees "} +{"id": "0004071", "video_name": "02c75513-ab6f-5c26-831e-26619c978cb2", "text": "Moscow, burning Kremlin in war, footage from helicopter, cinematic "} +{"id": "2007970", "video_name": "22fd475f-5147-5a0f-84c9-24b5fe224f6d", "text": "create animate video as a boy play with their friends "} +{"id": "2005052", "video_name": "6997a5e7-df51-5e3c-9dd5-ddadd52ed6e9", "text": "The spirit of a little boy flies forward in a colorful and galactic tunnel "} +{"id": "2007404", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "The Cat Aliens perform incredible tricks, showcasing their intelligence. "} +{"id": "3006546", "video_name": "02cd67d9-f89f-5699-8d6c-99e1cc214fe9", "text": "A lone swordsman dances with his sword in the moonlight "} +{"id": "2003082", "video_name": "788b9ab8-9631-5389-a50b-176d3bc6d6d2", "text": "BMW drifts in Samarkand and meets with Mercedes "} +{"id": "7002285", "video_name": "9155dcc0-44df-5fb7-820b-894b31ddd10b", "text": "isometric cute 3d room ,cottagecore theme "} +{"id": "6004864", "video_name": "c7f2b99b-387d-5535-9de9-0d8777041bab", "text": "arthaus video of hand picking flower "} +{"id": "4002743", "video_name": "24e6cc5e-5046-5af7-a3c5-1c6624a0a9f3", "text": "downtown toronto in the winter time with people skating "} +{"id": "3003524", "video_name": "66c2f255-ba3e-55d9-ba8f-154bc88a2d70", "text": "ancient people looking into the sky at the flying eagle "} +{"id": "6004585", "video_name": "d80ead40-5fd5-5725-b460-6d667e04458a", "text": "a software engineer working and surrounding with many wires "} +{"id": "4003879", "video_name": "2185f142-4ff7-5cbf-a562-bc26c9e2f828", "text": "car chrysler sebring 3 (js) driving through the desert "} +{"id": "1004486", "video_name": "5322a854-19c8-5c8b-9a1e-59e0e03aed4f", "text": "welcome a new year with hope and determination "} +{"id": "2003796", "video_name": "0dc5d881-6568-5525-bcd9-3216ee598bf6", "text": "centerfielder catching the ball over the fence, cinematic, slow motion, uniform number 27 "} +{"id": "3003492", "video_name": "19a1daf1-28e1-5f34-bc5f-c169877ff4d3", "text": "A cat knocking over a vase of flowers "} +{"id": "4002637", "video_name": "33161e00-7bff-5a4e-9fcb-df03294d8bcb", "text": "giant sea dragon footage 1820s Alejandro Jodorowsky art eerie "} +{"id": "1003777", "video_name": "45a6dae8-a31f-5525-a88f-bd0d45e19e1e", "text": "Red supra drifting in holy shrine "} +{"id": "7003463", "video_name": "e017d9ee-a89a-5442-a8f8-d2d23f5edcbe", "text": "A rock next to it is a well under the well, a door that leads to a room with a treasure of gold "} +{"id": "8001009", "video_name": "669df374-36b4-5457-9bc8-49545b4ae399", "text": "bee, tiger, tourtoise, elephant,dog, bee on cycle, all are dancing and reading book together, cartoon style, playing, group of these characters. "} +{"id": "1004686", "video_name": "570c41b5-4701-53ba-8c0b-e36a4512383b", "text": "mads mikkelsen testing food in industrial age kitchen, sultry bikini models in industrial age maid costumes offering food, metart, onlyfans, wetplate cinematography "} +{"id": "6003821", "video_name": "fd983527-d35a-5f36-9c53-dc75d91cb9a8", "text": "Explorers are walking, jungled Tokyo in the back. "} +{"id": "4004550", "video_name": "d85db302-d8d8-5556-a18e-7dc5cec87c38", "text": "a close up face shot,attractive facen stunning green eyes,a beautiful female with blond hair wearing leather amour and a green cloak with hood up,walking in a spooky forest,walkin animation, smoke effect "} +{"id": "8003738", "video_name": "aa8a6493-b266-54e4-b268-b93ab56b7312", "text": "view of a beach on a sunny day with clouds in the sky Message: NEW LOOK (Font: MODERN) "} +{"id": "2004151", "video_name": "ff710a03-c455-583c-ae7f-553aa913a07c", "text": "logo human hand holding bitcoin color whole palette golden on black "} +{"id": "0003400", "video_name": "3cfe3ed6-7330-500c-ae7f-2e49547ca2d7", "text": "lord shiva scream with thunders in background "} +{"id": "2004511", "video_name": "c660b7bb-4757-5bd9-86e8-6bbabedba951", "text": "Pele and Maradona went out of world "} +{"id": "1005883", "video_name": "6c3d52cd-b2f0-5ceb-85ce-136edfca62a6", "text": "where Nissan Almera going around the city "} +{"id": "7002106", "video_name": "15c6c832-2a66-5bb3-bcee-ca33242de2e4", "text": "A cannonball being fired from top of a 1960s lighthouse. "} +{"id": "1005437", "video_name": "63e81af3-0862-5faa-ab92-14069ef39f4b", "text": "woman trying on a bikini in a dressing room, realistic illustration, 30 seconds long "} +{"id": "3004434", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "super hero aquaman with diving goggles and swimming trunks 4k "} +{"id": "1005638", "video_name": "67a693cf-16bb-5ae4-94e8-6da4ca85eb31", "text": "One fateful night, drawn by equal parts curiosity and bravado, a group of teenagers ventured into the desolate confines of the abandoned house. dark horror scary animation style "} +{"id": "7003461", "video_name": "ac981260-7bae-5f69-8d24-2829fac119f0", "text": "A doctor checking the whole queue of and feel exausted "} +{"id": "3004140", "video_name": "98698b08-0612-57ff-9cc7-bedc97029a5c", "text": "anime style gibili, small sparkles falling from the sky in the moon light on an egypian city. "} +{"id": "3004782", "video_name": "30c54732-43f4-5a22-b0dd-9b781452f398", "text": "Kim Kardashian as a cute cartoon 4K, "} +{"id": "3003705", "video_name": "cf9191f3-11d2-53a1-a310-7e7c6cfc9757", "text": "boxes on a conveyer belt moving Message: box group (Font: MODERN) "} +{"id": "4004038", "video_name": "557c8e50-9b8a-5ca7-b489-a75db1969886", "text": "video of ending of the world "} +{"id": "4002657", "video_name": "d0e319b4-a3ff-5f22-acbc-556222f165ee", "text": "streetview footage of busy market street of Constantinople 12th century Byzantine empire, live action movie style "} +{"id": "4003965", "video_name": "41e1c96d-b2be-5427-b9ef-8d08876dd68d", "text": "This character would likely be depicted wearing colorful and stylish clothing, with vividly colored hair. They might be holding a transparent tablet that emphasizes futuristic design elements, and near their ears could be decorative headsets characteristic of Vocaloid characters. Overall, they would embody the musical and artistic elements of Vocaloids, representing a character that belongs to the world of digital technology. Message: hello (Font: MODERN) "} +{"id": "0006658", "video_name": "308aa3bc-454c-5546-b53e-a7c1495c1482", "text": "godzilla attacking a popeyes chicken restuarunt "} +{"id": "2003021", "video_name": "7b4ac53f-0f9a-598b-abb6-9526c4d6d065", "text": "a guy feels not well and very cold "} +{"id": "4004086", "video_name": "90d3b1a4-62bb-5a65-ae3b-60929ddb82ca", "text": "girl riding a motorcycle on a fall road "} +{"id": "2005432", "video_name": "7c9b53b6-f5de-5769-ab36-0d202beca2d9", "text": "Santa getting his reindeer ready, saddling his reindeer, fashion, sharp,realistic "} +{"id": "6004304", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "Ronaldo and Aslan playing ball with each other, realistic ultra graphics "} +{"id": "4003905", "video_name": "41d2c7e3-5fb3-5d28-9666-710d3d7040f7", "text": "the Lights from the House going on and of "} +{"id": "6002751", "video_name": "07f57eb8-6f56-5d53-a429-ae8b3687cc19", "text": "white hand pushing a small white remote control with white background "} +{"id": "8001388", "video_name": "59a2b4e8-7bb1-5bfa-9580-fdd11a367600", "text": "Mechanical bird flies through purple clouds "} +{"id": "7004696", "video_name": "ca991c11-7836-5110-a04d-17b74181ab9e", "text": "3D ghost with big hollow eyes hovering over a river, low lighting, evening, disintegrating "} +{"id": "7003323", "video_name": "62ecad1e-d54c-5c89-9fc5-9b3abf741d53", "text": "Metaverse scenes, dreamy scenes, characters entering the metaverse Message: 1 Attachment "} +{"id": "4003327", "video_name": "10036f38-01ae-51ab-88bb-7de5c5a4aadb", "text": "a lady coming out of water pool, summer, 4k "} +{"id": "0003967", "video_name": "00de55f1-2204-502e-b2fa-4eb592ef1433", "text": "Woman running away from a DJ in a empty Bladerunner scene "} +{"id": "1003746", "video_name": "451b4ca9-45e1-5146-9998-af1cfd5c6119", "text": "a woman crossed a road and a sportsbiker has to break and falls over the Borderline of a beautyful sunny bridge in Colmar, the City of flowers "} +{"id": "2003708", "video_name": "d7b8e9e7-6c51-5cde-87bf-491fa6dee532", "text": "cinematic, long shot pan to close, man in a black suit with shades, in interregation room, holding cell phone. "} +{"id": "0003788", "video_name": "436c0091-8ad2-564a-a57e-5c86ff523967", "text": "A ball, white outline background,lights effect, glowing, metallic "} +{"id": "7004699", "video_name": "d3756bcc-e0e0-58f2-99fc-084a60e73a5d", "text": "a way to earn money and sucess "} +{"id": "0004928", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "black hair trunks becoming super saiyan anime "} +{"id": "7004818", "video_name": "ccaec1b6-361e-5717-bb97-d2dd80c3e379", "text": "a man proposing marriage to the sleeping beauty with blonda hair "} +{"id": "7003553", "video_name": "df44abff-e9b0-5688-9a64-79e4d0170abd", "text": "image of a notebook where a man is writing, inside a car, with low light "} +{"id": "2004394", "video_name": "9d9fea82-e605-5c35-87c5-7245bd2805ea", "text": "Star Trek starship Enterprise attacks Cthulhu "} +{"id": "6002308", "video_name": "173813aa-cddb-5d61-8e0f-17c44b1ff37a", "text": "Scorpio coming out of the ground, among the sands of the desert "} +{"id": "1003666", "video_name": "437d2d46-5edf-5059-b6db-552484b37f9f", "text": "The sun is setting in Hong Kong with the modern building "} +{"id": "2005376", "video_name": "509d6827-7d5d-518c-acc3-2a43b1200265", "text": "rosayet v ekran pachku deneg.\na man walks with his back in the center of the frame, wearing a suit. He takes a wad of money out of his pocket, turning sideways to the screen and throws a wad of money at the screen. "} +{"id": "4003300", "video_name": "c64a1e53-3999-5c6c-bed4-2366d2edffd8", "text": "RIFILIFEE comes up with the idea of improving life with changing technology to solve basic health problems. We are a team of healthcare driven solutions provider, who believe in empowering and encouraging users to make their best healthcare decisions with minimum efforts. Taking care of health is a responsibility. RIFILIFEE strives to bring hope, happiness and health by supporting you and helping you find the best doctor so that you can get the best treatment. RIFILIFEE is striving for this. "} +{"id": "3003880", "video_name": "ee8ae6c6-5b2d-524f-9259-5a1730fa9bf7", "text": "Suddenly, the walls of the labyrinth seemed to shift, blocking the path she had just taken. "} +{"id": "6004138", "video_name": "5315998f-db08-521b-a570-88943e3044fb", "text": "pink 90s tape cassete playing by it self on a white shiny surface "} +{"id": "6003374", "video_name": "d4e95ed4-949a-560b-b748-f7a51c50f28b", "text": "A girl is eating ice cream in front of the Fuji Mountain "} +{"id": "2007393", "video_name": "01a43ceb-fb59-58b2-8d1a-724a12189208", "text": "science fiction planet surrounded by small spaceships, fine and exquisite details, the planet flashes due to its electrical storms, it has gas clouds in some parts, cyberpunk style, 8k definition "} +{"id": "2004474", "video_name": "f3885858-1dc9-5e21-832c-c111ece192c8", "text": "Cultural immersion in Japan, solo female traveler participating in tea ceremonies, cherry blossom viewing, and city tours. Focus on cultural respect, learning, and exploration. Blend traditional and modern music "} +{"id": "3006452", "video_name": "efc1b70e-5268-5079-b9a4-998bf25a2e70", "text": "looked around\n\n I have lots of wood stored and burning and they are having fun\n\n He is eating fried fish. "} +{"id": "1005218", "video_name": "6016e6da-0b9c-5969-b711-4bf3549e73df", "text": "banyan tree growing from a human mind vector "} +{"id": "2005915", "video_name": "a55e5ab3-6ee0-529d-a13e-70ffb2355a24", "text": "jazmin bean riding a monster truck "} +{"id": "2005511", "video_name": "09b2f393-2675-55d5-988d-ddbf6f81b08f", "text": "video of applying lotion to arm "} +{"id": "7003341", "video_name": "b00ac945-54e6-5a9e-923a-5507d48db6fd", "text": "The background is blue line particles, with chatgpt3.5 floating in front of them "} +{"id": "4002198", "video_name": "e94d7f0f-99b9-5a26-9850-f71f12296008", "text": "Seen on wall clock. The needles start moving., animation style. "} +{"id": "1003297", "video_name": "3ca41697-8dbd-5d39-bf87-d09ee4b0d4e9", "text": "a male occupant arives at a haunted island in a small creely row bow "} +{"id": "8002864", "video_name": "bc12c7be-51c9-54db-bc34-b611e450a634", "text": "a little musician falls in love with a gorgeous Tatar woman and waits for her to arrive from the village "} +{"id": "2005192", "video_name": "f23532d9-3b8e-5264-85c9-476725e9f7b2", "text": "Golden Eagle Is Flying Through The Skyscrapers In Mexico City "} +{"id": "2005533", "video_name": "5904c7c0-fd78-5400-a919-9f7085836afb", "text": "kitten playing with goldfish under water "} +{"id": "0005069", "video_name": "144183d1-f35c-5dd4-9d44-cc4fda85a31d", "text": "The Labyrinth of Luminance loomed behind them, its enigmatic depths concealing the challenges they had overcome. "} +{"id": "3004000", "video_name": "9e90f721-96d7-5536-99f0-fa8069470bc6", "text": "star sky with lighting lanterns filling of lotus "} +{"id": "1004874", "video_name": "5a151ccf-ac1e-5e16-a437-7a8238a465de", "text": "a little aquatic monster on a beach, movie film, fantasy, hight quality, hight detailed, 4K, movie, film "} +{"id": "6003071", "video_name": "ee35f6a7-4ae8-5335-aec9-f00e2fdb9e34", "text": "naymar jr get injured in football match "} +{"id": "2006860", "video_name": "71ad1efd-9afd-5ada-9d80-d810e985fd0f", "text": "blue Bugatti goes along the track "} +{"id": "1004787", "video_name": "58722cf6-ef98-5b3f-b14f-c411e2017d44", "text": "Street view of Oriental Pearl TV Tower in Shanghai, downtown of Nanjing Road, city promotion video, 8K "} +{"id": "6002877", "video_name": "d72f5b5c-a542-5e2c-918c-06bdce25b559", "text": "anime black cats are running in the grass around meadow, night, star sky "} +{"id": "3003543", "video_name": "df97d159-d6d9-5abd-93a6-e7fd38dbf7da", "text": "Pokemon Umbreon run in the forest "} +{"id": "4004120", "video_name": "c8f9e0ee-98b4-5b85-9e03-7283abc1150d", "text": "An dancing anime girl with blue hair and black stockings, genshin impact character , masterpiece , white background , full shot "} +{"id": "2004668", "video_name": "2d818e4e-e6fe-594f-a3dd-09b389d9716c", "text": "beautiful Ukrainian landscape outside the windows of the train is passing by. dawn, there is a Ukrainian flag on the mountain "} +{"id": "8002474", "video_name": "01fd8609-c581-50ca-817d-98dacaf389d7", "text": "21 years old boy playing guitar in the studio "} +{"id": "5001039", "video_name": "09a20fe1-e965-50ad-a041-be2792e8d9c4", "text": "stormy day, wind blowing the clothes away "} +{"id": "3004227", "video_name": "595a572a-f793-5c78-9cd7-7f1aec89f64e", "text": "Capture heartwarming scenes of Matilda and her chicks playing together in the farmyard. Show Ava, Benny, Charlie, and Daisy chasing butterflies, pecking at the ground, and enjoying the simple pleasures of life. "} +{"id": "5001214", "video_name": "790fbb9d-17b7-5ed8-ad40-d3fa8c3a3c42", "text": "a cartoon vibes showing a girl jumping in a lake "} +{"id": "8001737", "video_name": "d0dc5cff-81e5-5b8a-8602-4e548c5ee556", "text": "Magical Adventures\tDigital Illustration\tWhimsical Characters, Magical Quests\tAdventure Colors, Whimsical Forms\tEmbarking on Whimsical Adventures in Digital Realms\tAdventurous, Imaginative "} +{"id": "4004637", "video_name": "7ebe7da5-12c4-5990-beb7-4fb54e7f2907", "text": "chaos and mayhem, absolute disorder and panic "} +{"id": "1005923", "video_name": "6cce3f5e-b354-5a28-be30-f0c40e3cd39a", "text": "There is a boy and a girl. The boy is lying on the floor. The girl turns away. "} +{"id": "7003087", "video_name": "48d0396f-3ef8-570a-8319-326e5149b7f0", "text": "male man drinking beer with friend outside a pub "} +{"id": "2004930", "video_name": "41267c7d-6529-540a-bc62-417396ec4826", "text": "cinematic Introduction of Pursuers: As the woman walks, the camera angle changes to reveal multiple shadowy figures dressed in black, watching her from a distance. Their presence creates an eerie atmosphere. "} +{"id": "2004242", "video_name": "e9905c74-2ad7-5471-a187-b73f539a3ff3", "text": "Intro edit about computer for presentation "} +{"id": "2005280", "video_name": "1af46a5d-924f-5923-9d71-8da8460f1982", "text": "A shopee page where a flexible ruler is endorsed as unbreakable, shatterproof, and can be folded or bent without causing damage. With a buy 1 take 1 promo and free shipping nationwide "} +{"id": "7003713", "video_name": "66ddc3c0-bec9-54fe-a2a3-8f118453e0f2", "text": "The alien possessed extraordinary powers. Wisps of black fog emanated from its being, swirling and twisting with an otherworldly energy. With a mere touch, it could drain the life force from any living creature. "} +{"id": "2003257", "video_name": "9a5cccc2-dcd8-5574-a55d-af7a93c4fc35", "text": "a mess, a very cluttered office, multiple work desks, piles of not organised papers, papers everywhere on the floor, 3d animation render style, vibrant soft orange light, magical "} +{"id": "2006114", "video_name": "65dd82c9-2b50-56db-85e2-f9644196ccbe", "text": "A spider has 48 knees, it has a total of 8 legs. "} +{"id": "6002990", "video_name": "aade0038-ce4f-5a53-b111-9c62d0a0b0fa", "text": "planet earth rotating in space, it is dark but the planet has a halo of light around it "} +{"id": "2004432", "video_name": "2051fe1a-da8d-5475-8d03-44727ab0643b", "text": "That night, young girl named Mia had a dream that changed her life forever. In her dream, "} +{"id": "0005425", "video_name": "1a9d473e-7815-536f-bd6a-f8434b37b48f", "text": "Make the animation express his determination to get the grapes and fox "} +{"id": "5001547", "video_name": "682da112-5b90-5dab-a0d6-31dac41070f9", "text": "A blonde is drinking a cup of coffee, blue sky, sunny "} +{"id": "4003181", "video_name": "d4dd36f4-f4fd-50fa-a5a4-b832e6dfe115", "text": "the line of camel with men walking in desert drone footage 4k "} +{"id": "4002796", "video_name": "1d35f321-3f1e-50ed-95d2-39713c7a499b", "text": "a white skin beautiful cheeta entering in the new jungle and all the animals watching the cheeta. "} +{"id": "3006792", "video_name": "48e12e95-bc41-5f1f-803f-5bf626266456", "text": "Elon musk and Barbie dancing on the moon "} +{"id": "2005003", "video_name": "6d4e5fb3-7380-58f9-a247-b43063006f2d", "text": "Maelstrom in retrospect of images of numbers that represent the centuries from 2023 to 500 AD. "} +{"id": "8001529", "video_name": "3e5cbce1-59c5-5b5f-8521-6b7c8b1fbfef", "text": "a girl in a little house with her favorite teddy bear "} +{"id": "2003331", "video_name": "4758f482-4a06-5ce1-be8c-116bdcaa9e68", "text": "Kafka is laughing while walking in a long scarry corridor, in the style of claymation "} +{"id": "7004553", "video_name": "1bc3804a-ce75-568c-936a-e9c8384bb7c7", "text": "toji Zenin and Doflamingo fusion fighting a guy with elemental powers "} +{"id": "6004346", "video_name": "3fbdd01b-1525-506f-b60d-01237bc5fd02", "text": "young woman in a small hospital room "} +{"id": "6003261", "video_name": "1863c087-d3e1-55d8-b1ac-34dbd85b214f", "text": "a fractal fern undulates and unfurls in a slow spiral "} +{"id": "2004306", "video_name": "1046acc5-0013-51ea-8205-693a7ae5aa65", "text": "a cute red panda dressed up in costume on a train, in the style of yellow and pink, urban intervention , full body wide angle "} +{"id": "8003364", "video_name": "0a2d2d3e-e7a3-5e28-bc19-82a8b13398c9", "text": "A person sitting in a meditation pose, with their eyes closed and their hands resting on their lap. "} +{"id": "2003404", "video_name": "dfd6d860-06aa-5fc6-9cbb-c8d6dba2f022", "text": "the cat is sitting on the TV from the future, but something scares her and an atomic explosion appears on the TV "} +{"id": "1005618", "video_name": "6749e883-bd06-502d-bb20-fc7c7af653a9", "text": "a car parked on a dark city neighborhood street with two men sitting in the front seat, getting out "} +{"id": "7003942", "video_name": "a93d7dad-8207-5421-a585-66d51d6c8cee", "text": "a man wearing cloths the 70s that rely on the fourd mustang 1968s, envirenment the grove,dramatic sunset,cinematic "} +{"id": "7003362", "video_name": "9601b81b-4d8f-5f66-9763-683cd92f0989", "text": "Garden, European girl, blonde, sitting by the river, sunshine, river, frog, small bridge, windmill, beautiful scenery, "} +{"id": "3003202", "video_name": "77cbaa48-ddcd-597e-9799-c1f2c3ea46f9", "text": "a logo with FX Genius written on it. "} +{"id": "7004844", "video_name": "9fa87be5-0683-5ce4-88d4-d4b1c25281b0", "text": "motion pour coffee into cup blur "} +{"id": "3005790", "video_name": "9f33c71a-38e6-5001-8bb7-a2636c489fbb", "text": "player is running, background is moving to right Message: 1 Attachment "} +{"id": "0006667", "video_name": "30b681dd-429b-5674-a691-feffc1d877cd", "text": "codm logo with gun and explore "} +{"id": "0005683", "video_name": "1f34226e-8cd3-568d-aadb-aca32cf990f7", "text": "scene where there is colorful smoke floating in orange, pink, black and white colors "} +{"id": "0005012", "video_name": "1337512c-ed6c-5956-8939-2e2eb7e5cf19", "text": "A beautiful sacred geomtry floating in space "} +{"id": "8003459", "video_name": "1662d823-bc11-5b50-afa5-2f3988a7bd0e", "text": "Laying on bed and breathing slowly half aree who are hanging "} +{"id": "5001574", "video_name": "ef30d253-d113-5889-a1c0-e196f6d43c74", "text": "Visualize the moment when Veer first realizes his supernatural abilities. Use visual effects to convey the sudden revelation of his powers and his astonishment 3D animation "} +{"id": "5001053", "video_name": "1927c2d9-cedb-5844-97be-40d8c3c105f2", "text": "a man in a jacket with a hood and with a backpack walking through the wasteland. ruins are visible in places and bonfires are burning out. black and white bluish image. "} +{"id": "6002102", "video_name": "fba2a747-a50c-58d2-b2b6-0750b96a0e47", "text": "a thai man with golden vampire teeth walking in bangkok at night, cinematic wide shot "} +{"id": "2007440", "video_name": "0ed0d3a5-4f5b-5d4a-8b23-6f469dd0f059", "text": "Lord of the Rings. Aragorn and Legolas and Gimli run through the fields "} +{"id": "3005388", "video_name": "8b0dd546-9dd2-5321-b350-2c4c4094ef9a", "text": "pan camera left to right. Cozy realistic cabin with a chimney with animated smoke. Surrounded by beautiful flowers. Enchanted forest "} +{"id": "7004359", "video_name": "ef401e18-6723-500d-81b2-7dec01461ccd", "text": "jedi vs sith on an ocean "} +{"id": "3003075", "video_name": "dab4e3f4-c93d-5da5-9780-1f6352b48c0b", "text": "The forest, however, did not reveal its secrets easily. With each step, the suspense thickened, and the atmosphere grew tense. Strange sounds echoed around them, and shadows danced in the corners of their vision. "} +{"id": "3004236", "video_name": "ec9f4a70-f5a9-5792-82ed-543b3a3cc6df", "text": "Charles de Gaulles airport , outside , with passengers, taxis, uber "} +{"id": "8001160", "video_name": "f137150e-291e-58d4-8e13-f90e4c100f36", "text": "The illustration shows a mosaic puzzle symbolizing the semantic core of queries. Each piece of the puzzle is a separate key query or phrase, which together create a complete picture of an effective advertising strategy. "} +{"id": "3004664", "video_name": "9a7ea615-6a60-594b-a20f-beb5400e2b41", "text": "Italian Ministry of Education for the last 20 years "} +{"id": "2004275", "video_name": "e572ac27-97b2-5c9e-9f52-8162535a3ca0", "text": "The little girl dances, her body swaying from side to side, her hair flowing "} +{"id": "4002081", "video_name": "4f81047c-1b63-57d5-b584-1012667833a5", "text": "A dark place with only a corridor at the end of which is a red door. When a door opens, a bright light appears "} +{"id": "4003645", "video_name": "5387de65-fa43-5463-85f3-0dd3a14126bb", "text": "On a black background, there are 3 red protons and 3 blue neutrons gathered together in the middle of the picture, and the energy connects them to each other "} +{"id": "1006357", "video_name": "746c31c0-1201-520f-8aef-2fcb0e563515", "text": "the bush of red roses on the windowsill froze and became covered with frost "} +{"id": "3006719", "video_name": "55e6b391-0b4a-5f78-9425-266e7decd044", "text": "explores walking in Mars with retro scifi space suits "} +{"id": "1006634", "video_name": "79997d9e-e92a-57ac-95b7-523d4076fbd3", "text": "from behind we see justin trudeau sitting alove at a desk in a well lit room "} +{"id": "5001717", "video_name": "edf4a59f-5cb0-58bb-8ee5-b015e786032c", "text": "40 feet away a house with two sexy skinny women beautiful women walking fast which are wearing green dresses "} +{"id": "7002360", "video_name": "3af072d7-7201-5446-9682-63592e41bce3", "text": "and I saw thousands of eyes within my darkness. "} +{"id": "0003439", "video_name": "3d88fd97-066e-507a-9263-439740a254eb", "text": "sped up process of rose decomposing "} +{"id": "7003141", "video_name": "04785ffd-3b4f-5ecd-a2d3-a4016138fe97", "text": "A mother and her child protecting each other "} +{"id": "3006672", "video_name": "6065247c-f868-5213-8e0a-5a3612d9638d", "text": "3d animation , ultra hd, hyper realistic,disney style, three kids talking in a city at moonlit night "} +{"id": "3005713", "video_name": "4f0f589c-ac4c-5bdb-b923-9a7aa79791b0", "text": "liuyifei Dancing in the center of the stage "} +{"id": "0006630", "video_name": "2fe814f8-9313-5e0f-ba47-9a8f73aea506", "text": "A boy and a girl are walking away together in the grass, under the sun and the rainbow "} +{"id": "1004477", "video_name": "52f6f6d2-5828-5466-9eee-2cb8b0632c5a", "text": "a whale opens its mouth and a man gets into its mouth, a giant blue whale swallows a man, there is 1 person in the frame, a man falls into the mouth of a whale, a view from 3 persons, underwater, time 0 A.D. "} +{"id": "8002993", "video_name": "8373309e-f1b3-5e5c-a377-377ddff07e02", "text": "The main characters include a brilliant scientist, a biologist, a new technology engineer, and a future leader. They come together to formulate a complex plan to save the planet. "} +{"id": "2005893", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "an image showing a logo ressembling the google logo "} +{"id": "5001883", "video_name": "a71a4478-1ef4-51c9-8818-e92ab91f46e7", "text": "standing with their back to a green background Message: 1 Attachment "} +{"id": "4002623", "video_name": "6397d2ed-0d45-5b26-bcc5-f34e3af59395", "text": "His strength and energy are in full swing,\n There is magic in his movements and words.\n Sergey, strong and alive, he is invincible,\n He inspires others with his example and spirit, 4k "} +{"id": "4002697", "video_name": "3682a420-9384-52c8-b9c8-7dd4a88074c7", "text": "woman holding phone quality 4k realistic "} +{"id": "0003854", "video_name": "44a89cfa-4d03-5218-9426-0872d64b380d", "text": "futuristic Ice age, a man walking in the snow, anime style "} +{"id": "1006327", "video_name": "73ca93d5-82a9-5629-9fa8-b3a189278235", "text": "very odd and creepy machine with sharp blades on it "} +{"id": "2004350", "video_name": "a3cbe76b-a9a2-57cc-821a-e3cde40210f6", "text": "i want a ninja running in the woods "} +{"id": "6003561", "video_name": "b8600d60-230d-59fd-b84d-e1f85100d625", "text": "A breathless, young Italian man races through the bustling streets of Rome in the year 1930. Message: hi (Font: MODERN) "} +{"id": "7004866", "video_name": "878f1846-098c-5310-bb31-9d98fac864af", "text": "Mooer Money Message: SEO Marketing (Font: MODERN) "} +{"id": "7002937", "video_name": "196a8e7e-cbe9-5483-ac03-0c925d8fab49", "text": "The city farm is located on the roofs of skyscrapers, people can climb to the roof and buy the necessary products "} +{"id": "0003164", "video_name": "38759c75-35f5-53b7-8849-175725c05a99", "text": "scientist in a lab coat playin golf horribly "} +{"id": "2006600", "video_name": "8dac4c43-1cc2-5db6-b770-de4dd448c7d7", "text": "A drawing of a gigantic and magical forest with long, beautiful trees and flowers. Message: Pinga (Font: MODERN) "} +{"id": "0005801", "video_name": "2174b4eb-d125-58b7-a230-1e4bec89c112", "text": "a boy who is fighting with a dragon in a multiverse the boy have a flam sward ,in backgruond multiverse is destory by the dragon "} +{"id": "5001074", "video_name": "d1e60dc2-0ff8-5628-b4dc-227e7304381b", "text": "By the late 2030s, the relationship between humans and artificial intelligences has become highly complex. Many humans rely on their AI companions and guides, while some begin to perceive a threat to humanity. "} +{"id": "5001128", "video_name": "38443c18-18a0-5e20-8abb-10a00df0228d", "text": "a person ripping open a gift "} +{"id": "3005421", "video_name": "5448d955-f6f8-554f-a79b-23abea9c4bc0", "text": "butterfly caught in a spider web movement Imogen Cunningham, Pictorialism, black and white, high quality 8k "} +{"id": "1004165", "video_name": "4d182714-b97a-526a-a362-adbe34a07c3f", "text": "A forest view from above, at sunset time. 16:9,Studio Ghibli style "} +{"id": "1003341", "video_name": "3d88c024-4f10-586c-9448-779524288efe", "text": "panther,color neon ,continuously change color,Background black "} +{"id": "6002046", "video_name": "cf9b541f-f333-5802-88ed-d8f3f5b2f75c", "text": "Depict the cozy atmosphere as Farmer Fred gathers the animals for a special bedtime story under the twinkling stars. 3d image animation gs 20 motion 4 "} +{"id": "2005741", "video_name": "c8239c84-a38a-5088-9b13-d1bbadb79e11", "text": "I want a section of Zaha Hadid style architecture "} +{"id": "2005471", "video_name": "a5101e19-4913-5ceb-b512-f865d61d50a2", "text": "a badly mowed lawn, traces of mowing, natural lighting, aerial view from drone Message: 1 Attachment "} +{"id": "4002433", "video_name": "47ea3da4-9bb3-594d-836e-89696103987b", "text": "20 year old angry women playing basketball at a college basketball tournament "} +{"id": "6003076", "video_name": "4267902a-ea49-5512-a6ec-07327161e8c6", "text": "A long yarn line is on the ground "} +{"id": "1005190", "video_name": "5f6e656d-44a8-5e63-a901-c46219ff6108", "text": "John Everett Millais animation of Elephant running in water "} +{"id": "0003666", "video_name": "4161a890-f9ee-585b-a707-baf5c08b3148", "text": "baby Full body intense potrait of Thin Muscular rose leslie as black widow, gun in hand, in full balck suit armour, illustration, in the style of Fernando Juarez, epic, fantasy, intricate, elegant, amazing detail, digital painting, artstation, concept art, smooth, sharp focus, illustration "} +{"id": "8003226", "video_name": "cb135aa0-54b9-506b-a2d1-5f68215fc6f0", "text": "vines growing over a delapadated city "} +{"id": "1005734", "video_name": "697c4720-002e-5bdf-b5b9-12a85d994e6c", "text": "boys graffiting an insect the size of a car "} +{"id": "8001130", "video_name": "2bd6f29f-073f-506c-83e2-84197d3d3ea9", "text": "Dear., so gentle and loving. The flower of kindness, an embrace from afar. "} +{"id": "8001667", "video_name": "28e1ff3b-4247-5c92-98a7-f5ca57141f65", "text": "jcb digging sand in the river "} +{"id": "2003978", "video_name": "487e8e71-e61a-5a4a-82eb-864b88857fd6", "text": "Statue of Liberty, filmed by drone, 4k footage,. Dramatic footage, night view "} +{"id": "3005309", "video_name": "698c7b1b-5564-5dfd-9532-1bf067e8a1e2", "text": "guys dancing around fire, on the street, background destroyed city "} +{"id": "0006071", "video_name": "2621144a-8cd8-5849-9b07-47bdda68814a", "text": "shadows danced around the room and ghostly figure in macabre performance ar 16:9 "} +{"id": "1003574", "video_name": "41e87133-d1a3-59fa-96c8-51e4c2ccb788", "text": "wild animal in chained caged state "} +{"id": "5001644", "video_name": "2a4eb879-b7dd-511b-98c9-5367b2f66761", "text": "a phoenix bird flying over a mermaid sitting on a rock inside a river "} +{"id": "2005835", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "Crowd at piano concert clappin standing ovation "} +{"id": "2005900", "video_name": "9d224704-54dc-56bc-8dd7-339ca13f956a", "text": "4 wrinkles of a scientist, reminder true love, I know "} +{"id": "1006127", "video_name": "705015f0-9fda-5a84-8cba-ffa20023fad4", "text": "a mass of ducks fling over a burned city "} +{"id": "8002035", "video_name": "f3073a6b-29e3-597c-979b-6f685223cfd9", "text": "a girl dancing in desert five second "} +{"id": "7004227", "video_name": "a94d2dc1-600c-5c63-80d7-ca45c3dd1035", "text": "Sri Lanka President Ranil Wickremesinghe as T pose (without background) "} +{"id": "8003727", "video_name": "3d34ccdf-7c65-562d-ab74-1894ccf6a4d1", "text": "writhing barnacled creatures on the sea floor Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "1003268", "video_name": "3c2383da-ead3-5ef4-ad74-be3680069143", "text": "make Nissan GTR r34 in orange colour on clear road "} +{"id": "2003341", "video_name": "7d1efc55-7992-5d4d-9816-419b5b3605ac", "text": "vivid, realistic, and detailed image of a floating city in the clouds. Ensure cinematic flair with vibrant colors, intricate details, and a captivating atmosphere "} +{"id": "2006418", "video_name": "c85a7f6b-36d9-57d4-9ed7-82d1a717e773", "text": "A young researcher Jake fights for survival in an abandoned hotel, where he is attacked by an animatronic. He uses a wire as a weapon and defeats the robot, but realizes that there are still many dangers awaiting him in this nightmare. "} +{"id": "1005334", "video_name": "61fba27a-0ffd-5a98-9b46-0aeab4943527", "text": "Maison Margiela fashion runway show, shot on VHS, masked model "} +{"id": "6003571", "video_name": "2e79b92a-9400-5917-9c61-5c648b363213", "text": "vintage 8mm footage of jack the ripper in old london "} +{"id": "4003022", "video_name": "8429e295-1a8b-558e-a40a-60561acda3a5", "text": "a spaceship with an elongated shape and with blasters that will move it to the deep space "} +{"id": "2006296", "video_name": "00fda9b2-01c7-59fc-83d4-b9cd1e040ad7", "text": "The man sat down in front of the machine and put on a headset. The headset would allow him to communicate with the machine and control it with his thoughts "} +{"id": "3005466", "video_name": "c926029b-aed1-5411-9c2c-836af85746bf", "text": "a fast car on the road curves high speed "} +{"id": "1004726", "video_name": "57a43107-da9a-56e7-a461-707769e01d09", "text": "A man dressed in a suit, fastening the buttons. He has tattooed hands. Sexy. "} +{"id": "3004826", "video_name": "e0e2011a-eb64-54c6-a5dd-457222feb373", "text": "spiderman vs green lantern, animation, moving, 3D, cinematic motion "} +{"id": "3005015", "video_name": "2143b21d-e860-5e49-a68f-0fab57459813", "text": "a wide shot of a city on fire with a dark theme, 4k, realistic, high res "} +{"id": "7004096", "video_name": "2c11c157-54a3-52a5-8b29-15d2ef3bc912", "text": "a cryptocurrency chart that moves up and ends in an explosion "} +{"id": "2005455", "video_name": "f6bac8b0-9f7d-5a35-ac10-758c4cb66934", "text": "1970s desert with a cactus on fire "} +{"id": "6003577", "video_name": "a014724e-3fda-51c3-be98-701211c4e7c4", "text": "spiderman wave goodbye with his one hand and in the other one hold rabbit "} +{"id": "1004999", "video_name": "5c62c7b4-c562-55ef-aee1-ef9b00663531", "text": "cristiano ronaldo win a world cup in 2026 "} +{"id": "0006274", "video_name": "29ddce1f-7591-585c-944e-4bb57055de69", "text": "moving in fighting pse Message: 1 Attachment "} +{"id": "1004784", "video_name": "586b9c0c-1b9c-502c-89be-52fa8b15b2f0", "text": "Shifting geometry in a colorful background, hi resolution, 3d render, colors fading between each other, cohesive palatte. "} +{"id": "0005324", "video_name": "18b7edc2-d83a-5c30-af10-e8e336050f87", "text": "annunaki face talking in the NASA in 3D octane render, best quality , best resolution, HDR, 4k "} +{"id": "4002041", "video_name": "3154051e-1eb5-570a-947e-276be5035c8f", "text": "8k, Pixar, unbelievable details, realistic Short hair, Jack Russell terrier with tan ears and tan right eye "} +{"id": "0006745", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "Create an animated avatar representing a friendly and knowledgeable AI host. The avatar should exude approachability and confidence, wearing modern attire. It should express subtle smiles and nods to engage with viewers. Use a color palette that aligns with the theme of financial security, perhaps incorporating calming blues and greens. The overall demeanor should be warm and inviting, reflecting the simplicity and clarity of the life insurance content "} +{"id": "2007500", "video_name": "48116748-95b6-5d58-8ca4-799ab5bc7f6e", "text": "Daisy flowers with loads of love Message: Daisy (Font: MODERN) "} +{"id": "1005607", "video_name": "67195eec-3e75-534a-bf96-053025ad134c", "text": "students listening to a woman philosopher 16:9 "} +{"id": "7004446", "video_name": "678b59d2-10ec-56f1-bb69-b8542d65b6a4", "text": "Portrait, dog walking in the city, sunlight and sunrise lighting, 8k architecture photo, highly detailed background, 16:9 "} +{"id": "3005338", "video_name": "9fcc2e96-6a44-59d7-b31d-2ffbf8a24d76", "text": "Gandalf fighting a Monkey with a LightSaber "} +{"id": "2006177", "video_name": "5d70f7f5-dc7a-522b-88e2-9f048b6fe782", "text": "A village with people walking around and kids playing "} +{"id": "6002301", "video_name": "6515675d-eb55-57e3-803f-ed7337a8f338", "text": "Steve Irwin, petting Angelic Manta Rays, heaven, realistic, 3d, dreamy "} +{"id": "8002221", "video_name": "68c1cbf1-6cd3-5752-afac-aaab4220e941", "text": "Rainy Day Cartoon: Visual: AFRO cartoon character navigating a rainstorm with an amusingly oversized umbrella, splashing through puddles "} +{"id": "2006181", "video_name": "8719856a-89c9-5921-86d2-87ada64160a4", "text": "a video in wich one book carries a gun and another book has a uniform "} +{"id": "1004707", "video_name": "576b5954-0a8a-52e2-9356-10b2c2395a29", "text": "A girl in a terrible sandstorm "} +{"id": "1003321", "video_name": "3d2acde0-a955-5693-945c-dab48eff2d2a", "text": "fire covers the entire cave, Zdzislaw Beksi\u0144ski style "} +{"id": "0005818", "video_name": "21b21c91-9516-56b8-9fa4-4e2b03d39a6d", "text": "cinematic scary scene in a futuristic lab full of exterminators beeing designed, cinematographic, blade runner style, sci fi movie, film "} +{"id": "8001623", "video_name": "d4c0b0cd-a5d7-5af5-a2bd-d49dc260f115", "text": "An image of the tusks of a Woolly Mammoth "} +{"id": "0003264", "video_name": "3a532e62-b991-5602-a556-04c7e1332905", "text": "Aerial view of the festival with bustling sounds of people chatting, music, and a faint background of traditional instruments. people walking ,zoom in , moving tree "} +{"id": "3004336", "video_name": "8a373ad1-cd4f-5f31-81c5-45207874542c", "text": "the sun rising over a mountain in Japan "} +{"id": "0004909", "video_name": "1140f84a-d94e-5ff8-9247-4f061e64fd05", "text": "train running on a track scene is hill. 3d cartoon effect "} +{"id": "3003628", "video_name": "64cbb079-62b6-5fc3-8eab-a3d63437c8ee", "text": "camera goes from hardwood floor to the ceiling as dollar bills falls down "} +{"id": "1005678", "video_name": "68569261-281b-5bc9-b0f4-722be65adf49", "text": "cristiano ronaldo surfing on the beach, big waves "} +{"id": "0003517", "video_name": "3ede7fd4-a0af-546c-a2e1-c90e74c00793", "text": "Loch Ness Monster emerging from the water, cinematic, dutch angle "} +{"id": "0003332", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "an image showing a logo ressembling the google logo "} +{"id": "7002412", "video_name": "d66e5c6b-3d75-56ef-8d85-39e0b37b9079", "text": "ayahuasca vision of the last reincarnation of buda "} +{"id": "1006278", "video_name": "72f8ba6f-07af-584d-b347-18046f9466cc", "text": "chinese style backdrop in pastel colors "} +{"id": "3003112", "video_name": "ee27e271-c453-521f-b7d8-65c84f005a65", "text": "Rabbit master of time with a clock around his neck, with floating clocks, looking in front of the camera "} +{"id": "8002429", "video_name": "f354f9a4-47a0-5312-942c-62f30afdaa54", "text": "Girl studying, her room, Makoto Shinkai "} +{"id": "1006297", "video_name": "734e7644-ffeb-515b-b46f-afb703b9be87", "text": "Meteor, light shining and dimming, leaves fluttering, wind blowing "} +{"id": "8002039", "video_name": "93dc3b96-8597-5cd7-a00e-7e42963f68e6", "text": "a man with a camera taking picture of the sea. "} +{"id": "7003675", "video_name": "c7f2f789-ffa0-5864-bc49-4b646bd79bef", "text": "delicious spicy hot noodles on wooden table "} +{"id": "3006074", "video_name": "d2980138-40d9-5f69-8b6e-8f370d186b9e", "text": "Under the night sky, the Wuhan Garden Expo Park is lit up with dazzling lights and shadows interweaving into a starry river, decorating the scene of the Hanfu Festival like a dream. The camera slowly scanned over exquisite lanterns and classical architectural complexes, and under the lighting, the ancient buildings became even more solemn. Among them are Hanfu enthusiasts dressed in neon clothes and feather jackets. They are like elves crossing time and space, lightly moving lotus steps and swaying their figures on the light and shadow mottled stone paths and bridges, forming a flowing Chinese style painting. "} +{"id": "0006852", "video_name": "343daed3-e16c-5763-bd03-cad714923e70", "text": "Haruki Murakami jogging in the morning Message: 1 Attachment "} +{"id": "6004241", "video_name": "c01032ff-16e1-562b-8c85-7ced1e493b09", "text": "melted pink ice cream business on dark background, time lapse "} +{"id": "3005082", "video_name": "6b68be6e-e332-589e-b6fc-312106b09615", "text": "animated video of an astronaut jumping in Space station defying gravity "} +{"id": "0006429", "video_name": "2c27a03f-dea9-5899-895a-8511d2de73a2", "text": "beautiful landscape Japan ancient castle wind trees river water flowing style "} +{"id": "3006370", "video_name": "68963c04-3b74-555c-9a26-3761df460f69", "text": "a chair strapped jets under it, jets on full trottle and chair is flyinh "} +{"id": "1006889", "video_name": "7dec7d56-ac31-55a8-9ef2-0e7367348950", "text": "4k American football player is throwing the ball using spiral throw "} +{"id": "0004408", "video_name": "086ce4e4-7a43-5b3c-b2c5-5a98c01ff716", "text": "A flurry of HANDS, each with a TALKING MOUTH on the palm, emerge from the portal. The hands fly across the sky, creating a mesmerizing display of colors and patterns. "} +{"id": "0004763", "video_name": "0edc212a-bd9a-5c77-88b4-73b443fef2aa", "text": "black shirt beard guy working on a desktop computer sitting down over office a blue chair and eating a green apple. "} +{"id": "2003849", "video_name": "7306f57c-f9db-54f7-8963-9eee3e97a484", "text": "Loop,high image quality, exquisite, in space, starry sky, streamer, rhythm, twinkling, shooting star "} +{"id": "0004317", "video_name": "07074cb8-4399-5d55-85a7-821c53a1126d", "text": "a lot peple working on beautyful rice fields with the animal look happy in the life "} +{"id": "2005309", "video_name": "c2b49bff-2a9d-5356-8257-a7ce898ee149", "text": "a sleeping cat, lofi style, gray and black color "} +{"id": "6004305", "video_name": "29588c04-3f3c-597f-a78b-bc723fbcd083", "text": "a mindfulness meditation person radiating love to the world "} +{"id": "0005523", "video_name": "1c3d9994-bdf1-5c05-8266-fb58c70c1328", "text": "1950s psychedelic super 8 footage of a communist army marching through the snowy forest "} +{"id": "5001822", "video_name": "4c8bc249-7cae-53c7-861d-4f949ecff2db", "text": "adults playing video games in a backyard "} +{"id": "2006107", "video_name": "7ca849f3-eb4e-5db1-83b6-61c89b1d5201", "text": "A handsome spanish woman in her early 20s. she has long, loosely waved red hair in a casual style, with a few strands falling naturally over her forehead. her blue eyes stand out on her elegant face \u2013 high cheekbones, a dusting of freckles over her nose, thick groomed eyebrows, and a rounded smooth jawline. "} +{"id": "6002680", "video_name": "22900314-c2f1-5a1f-ba63-f124a386f8c1", "text": "Magic and mystery emanates from the image, a book in magical colors opens and luminous rays come out "} +{"id": "4004053", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "fireworks Message: Happy New Year (Font: MODERN) "} +{"id": "3006869", "video_name": "8e53b458-3970-56ae-a6c6-18da2b8a4ab5", "text": "simplicity intertwines with tradition, lives Maya, "} +{"id": "4003079", "video_name": "c6a58a3e-f004-5cbd-9fcb-827aa1ee28c1", "text": "Generate an image of a dense jungle with Tom, the man, standing alone and looking lost. In the foreground, depict Ruby, the rabbit, hopping toward Tom with a welcoming expression. "} +{"id": "1005375", "video_name": "62dd8f6e-6ba1-5ed7-be49-f9d3a107fddc", "text": "create a man who runs. on the left side is an little sea and in the right ist a tree. "} +{"id": "2004028", "video_name": "ee81e373-a44a-595d-9612-285850ea0003", "text": "television news reporter reporting outside of a concert hall, police unit lights in distance, noir style "} +{"id": "6004193", "video_name": "195411b3-4629-57f4-af4f-dcbe594660b0", "text": "A scene from a Barbie music video, Nicki Minaj as a Barbie doll, she is a rapper a music video, Barbie theme, Nicki Minaj has a Barbie doll "} +{"id": "6004580", "video_name": "3398f343-9844-5e4b-be5a-5a1916aee6a2", "text": "Spartans blocking a doorwqy with bricks "} +{"id": "2007396", "video_name": "c67d8185-ed4f-57cc-b420-d7323b3b069e", "text": "A group of people walking in a straight line "} +{"id": "3006921", "video_name": "cf8a4aa8-1e54-561f-9a97-18de9ac8c03f", "text": "barbie traffic view in a Paraguayan busy street, 90s footage, vga "} +{"id": "2003510", "video_name": "d9c098b1-234f-5a56-991a-9ff2778b29b0", "text": "schamanic Performance from Indian,Alternative wild Western Movie,cinematik Look "} +{"id": "2007802", "video_name": "f05838b3-fa3c-53d4-9a8a-f9e9183098d0", "text": "Setting: A colorful and vibrant animated world filled with diverse ecosystems, from dense jungles to icy mountains "} +{"id": "8003807", "video_name": "6c5efa56-8bbd-58ce-b65a-23d47cb0711e", "text": "Create an image of a young girl named Lily standing within the protective walls of her castle. She appears fearful, gazing at the big, wide world beyond. "} +{"id": "4004546", "video_name": "b7a4b936-3f04-5efd-8ff0-2fd320e244b7", "text": "A bird landed on an apple tree "} +{"id": "1004214", "video_name": "4ddc2772-b3e3-52fd-a745-2c48aaf936ec", "text": "Two girls enjoying a glass of beer at an epic beach sunset. "} +{"id": "1003129", "video_name": "399c5df2-e2ad-52ba-80a4-61c86c58275e", "text": "cornflakes falling down on red background "} +{"id": "8001284", "video_name": "aa0a77e5-8072-5579-8b67-25c07af3d1d2", "text": "tyrannosaurus rex! with strong teeth and legs "} +{"id": "2003295", "video_name": "c662063b-984c-580b-bdff-6c04fcc0b6ea", "text": "cave painting of a human sacrifice, where a priest extracts the heart of a man "} +{"id": "8002895", "video_name": "9f031510-17f3-560c-9d82-baa56ac8350b", "text": "Lamb driving a subaru at a race in Tokyo "} +{"id": "3003821", "video_name": "75e6cdc0-7550-5b66-adf9-cac3335b7028", "text": "12 century People with spears attacking a tiger "} +{"id": "2006396", "video_name": "b446a699-1d7d-55c2-aa6e-42de8770812e", "text": "tiger draw in the middle of the desert "} +{"id": "1006408", "video_name": "756205fb-1b15-5d1a-9a36-dcf9c8aadab2", "text": "give me intro for my youtube vedio "} +{"id": "1005547", "video_name": "66255d68-59d8-5efa-910e-36138a8e9773", "text": "the tunnel is more colorful and that at the end there is a prominent and bright light. "} +{"id": "3005939", "video_name": "cc7ebf43-8a6d-5d24-86d6-2c673112cdc0", "text": "man disappointed seeing the new clothes being unfit "} +{"id": "8001272", "video_name": "fce6480f-ffcc-5d3b-9771-7ebb6eed5476", "text": "man walking in a post apocalyptic city, soft focus, ELS, 4k "} +{"id": "4004104", "video_name": "16d6a13f-81fe-52f2-9099-9c3e4495239c", "text": "a blue indian man in gold armor, riding on a white horse "} +{"id": "2003576", "video_name": "fc639c3a-4599-550d-8885-54b8a5af58d5", "text": "a scary moving chair in front of a bed aroun 11 pm with very light light "} +{"id": "8002133", "video_name": "91e8e9e7-66a6-5cd3-a6b4-b9b07efd2a58", "text": "Character touching mirror, hand going through mirror, glass breaking "} +{"id": "8001794", "video_name": "27c6bb2b-36ad-547e-9fdb-ba9a15c1ff60", "text": "High resolution, full length shot, a beautiful black haired glamorous woman poses in front of a 1950s style night club, she is wearing a tight dress and High Heeled shoes, "} +{"id": "1004444", "video_name": "523cda6c-1929-543d-bc31-3efc68ae2241", "text": "a pale, haunting woman stands motionless, her eyes reflecting an otherworldly terror as she gazes towards an indiscernible point, sending a wave of dread through the room. "} +{"id": "4002860", "video_name": "6439447e-71da-5159-bec0-c18ea1ebaf2c", "text": "A market on a busy street. Message: 1 Attachment "} +{"id": "4002873", "video_name": "95dbb2aa-76c3-5c37-a3e4-d456657a205a", "text": "image of cleopetra queen of Egypt "} +{"id": "2004751", "video_name": "f25ff453-52d1-5f3c-ac6f-2b7266c8cfb8", "text": "a sliver metallic rocket lunched in a sunshine blue sky. Many smoke and spark. "} +{"id": "2006872", "video_name": "b35a8552-eb5d-5e1a-b863-b3a92cc9c3c7", "text": "Realistic skeleton waving a white flag on a ship, saturn in the background "} +{"id": "3003867", "video_name": "7052b532-7d66-52bb-8d3d-26634c325913", "text": "drone flying over a rise field, cartoon style "} +{"id": "3004629", "video_name": "1a73227d-2da5-5e85-8b3c-7f6673ce71c9", "text": "Make a person walking in the park "} +{"id": "3004331", "video_name": "67f8d0a6-7fd1-589a-9e93-5f45f1278dd8", "text": "a man slicing an apple with katana, studio lighting, lightning effect slash "} +{"id": "3003181", "video_name": "017cd590-2120-5814-a126-f8347293ef07", "text": "a big party with people dancing in a big room with lights of all colors and USA decoration 16:9 HD "} +{"id": "0003664", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "A little girl sitting next to many puppies and having many climb over her while she is petting them and laughing "} +{"id": "0004003", "video_name": "016ace53-a55e-5da7-ad68-764e8ffe2b5d", "text": "There was once an argument between the wind and the sun about who was stronger than the other. "} +{"id": "1006332", "video_name": "73db9208-27a2-5de0-a6b8-b69bd64e3991", "text": "where did you come from cat man do dance "} +{"id": "4003372", "video_name": "cf6abaaf-1766-52b8-afcd-c972e2ff29cb", "text": "background, flower garden, beautiful colors, harmonious natural scenery, beautiful house, 3d, 4k "} +{"id": "1004331", "video_name": "4ff7f5cd-7a9f-5137-bd87-918c023667d8", "text": "Porsche drifting on a steep mountain with sharp turns in japan 15 minutes "} +{"id": "4004535", "video_name": "b91c8bd9-e465-5c16-a7ad-2a859b7fbc51", "text": "A Christmas tree made of plain turquoise cardboard boxes in the shape of a parallelepiped stands on the main street of a big city, with a bright silver star at the top of the tree. evening, cinematic lighting. Christmas tree shines with lights 16:9 "} +{"id": "3004345", "video_name": "994dd546-c2a7-5cad-9e1c-02e8aeb342a1", "text": "Generate a heartwarming image capturing the wedding celebration of a small, white Spitz dog and his human bride. Illustrate the joyous occasion with elements such as wedding attire for the Spitz, a cute floral arrangement, and a celebratory setting. Portray the love and happiness as the Spitz and his bride embark on this special journey together. Ensure the image radiates warmth and charm, commemorating the unique bond between the Spitz and his human companion on their wedding day. "} +{"id": "7003944", "video_name": "f49d9b2b-1798-58de-95e9-c40240f274b3", "text": "a rabbit run speedly in sky "} +{"id": "0004342", "video_name": "076c7c12-148a-5aab-a565-085901a995ce", "text": "photoRealistic belizean rainforest without water, pan across landscape, birds in the sky "} +{"id": "2007998", "video_name": "03c8072f-7979-5973-9faf-d7c7f6a54fe9", "text": "Standing on the 2nd floor looking down at a cat swimming in the pool "} +{"id": "4003562", "video_name": "9314f630-2b5c-51d2-89bc-1a8f529f5841", "text": "a little girl cry 4k , reality "} +{"id": "5001672", "video_name": "654aca99-b51a-57e3-a44b-f718478614d2", "text": "ghibli style : in a blue sky with a round sun being replaced my the moon. "} +{"id": "2007079", "video_name": "ed4a4293-d784-57b1-a90e-41ea734eddc6", "text": "Alex hosting a gothic movie night with friends, creating a warm and inviting "} +{"id": "5001019", "video_name": "c375da5b-ec7a-5224-8bcf-604011141876", "text": "Fire all around, red, orange, smoke, a musician playing bass, cinematic, realistic "} +{"id": "6004379", "video_name": "9bd18384-edba-59ea-8186-d25c444c78ab", "text": "Cars field passed in an endless stream. "} +{"id": "4004115", "video_name": "8775210a-0518-50f6-99ba-35b77271980c", "text": "young Jeremy Irvine photo sliding on the tablet "} +{"id": "0004725", "video_name": "0e1e7069-9fa8-534f-b81a-f87c14596709", "text": "Thanks for watching, please like and subscrib our channel for such videos. "} +{"id": "6004484", "video_name": "861d2f5d-01d8-5675-9bf3-77f8042177c3", "text": "A little girl is eating steamed buns "} +{"id": "3003519", "video_name": "c0b9c562-f88e-5c2b-abb5-2fa8ba8a3afd", "text": "image ,Santa Claus in a sleigh pulled by flying reindeer "} +{"id": "0005489", "video_name": "1bb66c61-0ec8-5f57-a21f-b40713a7823f", "text": "Setting: In the heart of the village. Characters: Kena interacts with characters named Beni, Saiya, and others, forming alliances to tackle the corruption and help Taro. "} +{"id": "0006772", "video_name": "32d076db-3b05-5602-9d9c-3da9cd901ee4", "text": "Show Danny the Duck inside a cozy nest or house, rubbing his eyes as he wakes up to a new day. "} +{"id": "1005410", "video_name": "6360ee89-b647-5884-a669-4072d8c0120f", "text": "1950s super 8 footage of cloaked women in a cult burning candles "} +{"id": "0005316", "video_name": "1882859f-d790-54aa-b9ac-bf0de5f351d7", "text": "Go Pro Film, Billie Eilish exploring Wonderland and meeting various creatures, such as the Caterpillar, the Duchess, the Queen of Hearts, "} +{"id": "1003451", "video_name": "3fec33a2-afd4-5155-afd6-5da365be2def", "text": "a man holding a gun stood in the streets of London, dark streets, man lit by streetlights, realistic "} +{"id": "6004102", "video_name": "860b6b8d-2eb0-50af-b34a-15f8fbf552f7", "text": "Ultra realistic student, with cell phone in hand. "} +{"id": "1004606", "video_name": "55c08942-694f-503c-a41d-97a3ad715b7b", "text": "a white room with thousands of young women with extremely long brown hair walking around "} +{"id": "7003163", "video_name": "770a050e-ecea-555d-b979-2478c66b75fc", "text": "Anime, Wizard summoning a demon, occult, set in a dark location, 4K, HD, Masterpiece, Smooth "} +{"id": "7002383", "video_name": "4e86159b-e3ca-5360-ac1e-065b03d13ebd", "text": "Convey a feeling of timelessness, where the beauty and serenity of Asgard exist in harmony with the cosmos, creating a haven of peace and tranquility. "} +{"id": "3005336", "video_name": "24a59381-4d4c-5dd3-aec2-730089292df8", "text": "person write a document on a pc "} +{"id": "0006315", "video_name": "2a8e9e6c-670d-58f2-a623-653c1e53140f", "text": "fast paced experimental film by Stan Brakhage "} +{"id": "0004120", "video_name": "038a9787-1dec-5938-852d-be741e027d2b", "text": "horror watches in the night that walk "} +{"id": "2003201", "video_name": "5705d4b0-6285-53e9-b1fc-08ef9fce9be9", "text": "Accumulate strength to cross the hills "} +{"id": "8003760", "video_name": "c3558bc5-5aa8-50ce-ad44-4c654da988fc", "text": "a train slowly chugged along on the railway beside a beautiful lake, as the camera suddenly zoomed in on the second carriage, revealing a beautiful woman through the window. She had fair skin, a melancholic gaze, and rested her chin on her hand while looking out of the window. "} +{"id": "5001796", "video_name": "422a4ffd-c769-5478-bc13-b9d96940c25e", "text": "man in office work environment reading a piece of white paper as the camera pans in, then crumpling it up angrily after a few seconds "} +{"id": "7002517", "video_name": "e1f00c48-57b2-59fe-a9d8-0b940f8d6c13", "text": "close up of people at a concert "} +{"id": "8001028", "video_name": "7391ff9b-f253-55fa-8a3e-f2ccc66a646b", "text": "Timelapse of the Milky Way Galaxy over a canyon "} +{"id": "0004275", "video_name": "063dadc3-8648-5d03-bc1f-e3365c7e9cb3", "text": "a still image to. video of a happy couple eating ice cream "} +{"id": "8003794", "video_name": "ca20e017-4709-5a54-8643-4ae04c075169", "text": "5 roads, branching road, problem of choice, difficult to choose the path, no people, soft, realistic "} +{"id": "6002832", "video_name": "ea41ca0e-83b1-515a-9b1c-57b0b704eca7", "text": "A puppy running in the desert "} +{"id": "8001964", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "Show an image of a dark forest with towering trees and moonlight faintly visible in the sky. "} +{"id": "2005296", "video_name": "a948cd32-3e15-5a38-a3c6-dfbd5b91861c", "text": "Generate a video featuring a 3D model of a man, displaying only the skeletal structure. Begin with a neutral display, then highlight the spinal column in red to indicate an incorrect posture. Throughout the video, gradually transform the incorrect posture into the correct one while transitioning the color from red to green. Ensure smooth and realistic animation, and make the final correct posture clearly visible "} +{"id": "2004254", "video_name": "e47ffef9-6b4b-57a2-9f12-ee9add0a4fb7", "text": "a village people dancing on stage "} +{"id": "6003725", "video_name": "b164ae78-9f91-5598-9967-ea281ad8ec3c", "text": "A vampire. Night. moonlight. shoulder length hair. beard. trench cost. smoking a cigar walks down the boardwalk of venice beach california. "} +{"id": "8002980", "video_name": "b249e530-ef88-5cee-86a9-bfc4e5002b8a", "text": "Neo Cortex Passed Out Drunk at the Casino Getting Arrested for Counting Cards by natives "} +{"id": "2003710", "video_name": "b44a5157-6c28-5c89-813e-f42f07cd0b15", "text": "the guy goes home with a briefcase everything is done in the anime style "} +{"id": "6003395", "video_name": "2b4b14a7-5e26-5b69-9375-723944b4133a", "text": "studio ghibli artstyle, a mid 20s young middle eastern man speaking, and people are walking in the background, clouds moving in the sky, scene "} +{"id": "3004211", "video_name": "bd4c3ded-6481-510c-b972-cddec311818f", "text": "As the clock struck midnight, a cold breeze whispered through the corridors, carrying the weight of forgotten whispers. "} +{"id": "8002076", "video_name": "8d8d0e6a-1b68-57ec-aa6d-934363d191b9", "text": "Ranveer is a young lawyer, working for the public defender\u2019s office "} +{"id": "0004931", "video_name": "11ae3cbe-22ae-5cc7-b2b1-d95a8d727b9d", "text": "On a dark night, there are stars in the sky, bonfires on the beach, and fishing boats on the sea. "} +{"id": "7003407", "video_name": "d57d590c-d789-5c07-ae65-b0e158acb512", "text": "Visualize the process of generating electricity from treated sewage water, with images of turbines or generators in action. "} +{"id": "7002182", "video_name": "8ace0fa6-316a-5fb9-a4bd-f4c9948f662c", "text": "4k video of a mermaid swimming on the bbeacheach "} +{"id": "3006938", "video_name": "d0548c32-6c25-5309-a250-c7a983c646b1", "text": "people laughing at a farmers market "} +{"id": "1005088", "video_name": "5dcddbe1-8ed0-5811-9e80-22b06b449f64", "text": "cartoon little boy diving with fish "} +{"id": "6003042", "video_name": "95b44ae3-3c9d-53a5-b86b-2859d7804137", "text": "a afar shot of a woman leaning against a building wall in a neon city while wearing a leather jacket. they have neon eyes and it is in an 80s synthwave style "} +{"id": "7002440", "video_name": "af2093dd-5a93-5536-afc2-dfd83fcee821", "text": "gloved hands moving because a soldier is speaking in front of the camera "} +{"id": "0006958", "video_name": "35e13afc-83b4-5a7a-8f70-fff2f72544e9", "text": "Realistic Zoom in on Friend 4, surrounded by flickering lights, as they shout for the group to stay together. Their face should show determination and a glimmer of hope, even in the face of the terrifying figures revealed in the shadows. "} +{"id": "8002631", "video_name": "4a49f271-a662-527f-b5b9-32661e2d4335", "text": "big scary full of red, muscle demon fight with mega light with weapon angel, on earth, 8k, high quality, movie scene "} +{"id": "3006049", "video_name": "ee4acb6a-51ce-510c-9c43-311eced872e7", "text": "Show how the crew of a fantastic spaceship consisting of 2 armed men and 1 armed girl bustles around, loading cargo onto the ship. Emphasize their teamwork and unity as they work seamlessly together to complete their task. "} +{"id": "0005979", "video_name": "2456af2c-fe57-5275-a2aa-f2969e8ec403", "text": "Pikachu Is Attacking People In Hawaii, 2d Anime Style "} +{"id": "1005357", "video_name": "6287d6d8-b65e-594e-bfff-efe2958bdc9e", "text": "M is for moonlight, so silvery and pale "} +{"id": "1004849", "video_name": "59a07370-6f55-5e3a-b6dc-7faa4d38fd21", "text": "A man breaststroke through a foggy surface. Looped animation. Dark bed tones. Very smooth animation "} +{"id": "8001950", "video_name": "cf887c89-56f5-54d3-aff1-d9a43bfa0a5d", "text": "gtavi serenity of the lunar landscape "} +{"id": "3005872", "video_name": "60f490f5-f614-5ec2-847a-4dfd6117f470", "text": "DVD screenshot still of 1981 dark fantasy adventure, landscape, night sky, storm "} +{"id": "2005408", "video_name": "cace2b4e-9422-5431-9259-2919e4b50894", "text": "Next, the kite whisked them to the Enchanted Forest, where they encountered a wise old owl named Oliver. He shared stories of bravery and taught them valuable life lessons about kindness, empathy, and the importance of understanding nature. "} +{"id": "0005915", "video_name": "2331d0a6-0fce-512c-a1be-5bcaeed16692", "text": "make a tree grow from seed fast animation "} +{"id": "2004914", "video_name": "17d90f2c-3f00-5835-a04f-3efc9eb6c858", "text": "ancient fish fossils found on himalaya montain "} +{"id": "2005749", "video_name": "c286c0ae-ee3a-518e-aded-cfcb975994df", "text": "journey into the universe footage with planets and stars and comets "} +{"id": "3003659", "video_name": "9b93bc83-b7aa-5701-8b49-50d3a06d6b67", "text": "The image of a golden retriever playing with a frisbee in a lush green park on a sunny day, with children playing in the background, has been created. The scene is vibrant and realistic, capturing the energy and joy of the moment "} +{"id": "2007595", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "a police man in an empty room lonely and very confused "} +{"id": "0004777", "video_name": "0f0b84e1-462e-5b0c-a69e-1e8bb826aa35", "text": "Taj Mahal covered in flooded water, Delhi floods, cinematic picture movie shot 70 mm anamorphic lens "} +{"id": "1005160", "video_name": "5f05e313-497c-5ea3-82c3-fc1ee26d316b", "text": "in a land filled with wonder and magic, there was a place called the Enchanted Garden. This garden was unlike any other. It was a place where every flower sang, where the butterflies whispered secrets to the birds, and the trees told stories to the wind. "} +{"id": "3004682", "video_name": "05678a55-276a-5d52-ae85-d30ad2ff36f7", "text": "United by a common purpose, the 21 nation Loa, Greek gods, and Orishas set aside pantheon rivalries. Ares and Ogun, gods of war from different traditions, sharpened their blades side by side. Ogou and Eleggua, both warrior spirits of crossroads, shared secrets of strategic defense. "} +{"id": "4002405", "video_name": "2f1a2db7-0f11-5f71-97ed-115d582ffaee", "text": "a dragon bows down in front of a Hindu temple "} +{"id": "4004809", "video_name": "17e25863-e75a-5591-a39e-c687ed6da4e2", "text": "Banana is High in potassium, it supports heart health and aids digestion. "} +{"id": "1003177", "video_name": "3a746ddc-c707-5637-bd34-8580414b4cb8", "text": "The horses return, calm. The mysterious man in the black cloak climbs back into the carriage and continues his journey into the unknown. "} +{"id": "7003626", "video_name": "2521252b-1b66-5ee4-ba4d-b662f7ba7064", "text": "forest at night horror movie with two girls and one boy each a distant lantern "} +{"id": "8001500", "video_name": "78f59f3e-aec1-55d5-87fa-64d459d253d9", "text": "Gautam Gambhir play cricket in Indian cricket jersey "} +{"id": "8002599", "video_name": "41b1c126-bf11-5f5c-b36f-3b86c9105cd3", "text": "the streets are filled with the atmosphere of the new year "} +{"id": "3004274", "video_name": "a7a922ee-eeb1-5fca-bd0a-54c1f831b0fd", "text": "pee wee Herman fighting a robot "} +{"id": "8002053", "video_name": "ff7d2619-2583-5acf-bc9e-8ba969c810e4", "text": "majestic lion with beautiful mane Message: PANORAMIX (Font: MODERN) "} +{"id": "7004592", "video_name": "91a952ca-45d8-54b5-ae37-28ca62decab1", "text": "bird;s eye view of crowd at the beach Message: SEND MONEY (Font: MODERN) "} +{"id": "1006120", "video_name": "703db334-e995-51c7-a54d-0e97738f4136", "text": "young man driving white pick up "} +{"id": "8001239", "video_name": "e10734ee-536a-58f4-a02a-43bcde89b56c", "text": "Mystical forest adventure in the style of Studio Ghibli, soft morning light, magical creatures, gentle camera movements, enchanting music "} +{"id": "1003369", "video_name": "3e19f617-2e3d-5ab0-8017-3c152d903faa", "text": "smiling black and white cat, cat style 16:9 "} +{"id": "1004853", "video_name": "59b187cb-6edf-5d4f-9a56-be4b769d8019", "text": "A calm and serene countryside. ar 16:9 motion 4 "} +{"id": "3004375", "video_name": "eb740f79-6025-57a9-b268-095bf33ef525", "text": "A coastal resort built atop an ancient Roman city off the Libyan coast, featuring modern minimalist architecture, rare and exotic plants, beachfront trees and verdant wonders all throughout the soft white sandy coastal landscape "} +{"id": "7003700", "video_name": "e31a8d02-df0c-5962-a088-91ac755a99bc", "text": "A serene and tranquil image with soft, warm colors that evoke a sense of calm and relaxation. A backdrop of gentle waves lapping against a sandy beach, with palm trees swaying in the breeze. A soft glow emanating from a laptop screen, casting a warm light on the surroundings. A pair of headphones gently resting on the laptop keyboard, symbolizing the immersive experience of listening to ambient work music. "} +{"id": "8002051", "video_name": "b8e1f97e-7f6f-50dc-9120-23eeab301aa5", "text": "women and a small girl sitting together, cartoon Animation 4k, "} +{"id": "2003047", "video_name": "e47fa037-ec23-54fa-9b98-a357b9f83002", "text": "a cute girl runs through a forest. A grizzly Stalks her. Eerie shadows moving in the thickicht. "} +{"id": "0005985", "video_name": "2477a8c2-116d-5299-9912-403ec8b992e0", "text": "a 8bit retro game red Viking built by Lego bricks "} +{"id": "6003380", "video_name": "23871f1c-b598-5cb1-9415-9f780cacb168", "text": "boy with curly black hair and white shirt meditating with a yogi and a woman on a beach next to a fire "} +{"id": "2007805", "video_name": "5904c7cb-b71c-58db-8f98-69a32ada2d79", "text": "three boys climbing mountain,with snow cartoon style "} +{"id": "8002162", "video_name": "631d8553-28bf-5bb8-949b-ee9c87e81426", "text": "A surreal goddess woman falling into the cliff 70s film cinematic "} +{"id": "8003529", "video_name": "4b6a4afa-4e8f-5691-bbd7-ce2b407c72b8", "text": "asian donald trump eating tom yum sup "} +{"id": "7002225", "video_name": "b3b8389d-8cab-58e2-8a4e-5f59c126616c", "text": "horror The door of the mansion creaks open slowly, the sound echoing through the empty halls, setting a chilling tone. "} +{"id": "8002887", "video_name": "dad0c186-9a9f-598d-b755-af24939c8161", "text": "man and woman kissing at city, night time, man holding flower, 4k resolution, add noise, iso 400, hyperclarity, sharpen, focus on human "} +{"id": "0005406", "video_name": "1a4a7097-37e8-53b8-b159-6989d903b144", "text": "john and liza are taking their lunch in the restaurant "} +{"id": "6002578", "video_name": "1d135f02-97c4-59ad-ba1b-f47f3a4febb8", "text": "Move your body a little every now and then while breathing. Message: 1 Attachment "} +{"id": "3004090", "video_name": "df07e644-6ada-5082-bd35-b0b2661aa07c", "text": "Five racing cars lined up in a neat row on the racing track "} +{"id": "8001296", "video_name": "4bed6dc7-cb78-5b70-b74c-b3ea80ecd38a", "text": "dark shadow figure with bright red eyes in a trench coat and wide brim hat stands in the doorway and disappears, 4k "} +{"id": "2004222", "video_name": "6265e39e-a144-51c5-9b74-cf59f64fe3e8", "text": "an abstract shape of a body illustrated with glowing geometric patterns "} +{"id": "4002584", "video_name": "bbf10f9e-dfe8-5af3-8d93-1db2d795142f", "text": "meditating buddha statue in gray and white stone colors, exotic colors in flowers, ivy, fantasy forest landscape, fantasy magic, flowers, clear sunset, last rays of sun illuminating parts of vegetation, intricate, elegant, sharp focus, illustration, highly detailed, art by wlop and artgerm and ivan shishkin and andrey shishkin, masterpiece "} +{"id": "3004301", "video_name": "6f95e922-c5a6-5af1-9e8f-e616b953062d", "text": "computer code running on a futuristic glass ball floating in a dark room "} +{"id": "0004236", "video_name": "05905520-2970-54cd-abc8-ecfb3dfa00b8", "text": "Birds Flying With Sun View Cartoon Animation, 2d Animation Of Flying Birds And Sun Rising On The Sky And Clouds Are Moving. "} +{"id": "1003309", "video_name": "3ce7b891-889c-5f28-9d9a-c95c1b3a48da", "text": "Vampire Hunter art style landscape with pearls dark cold colors night "} +{"id": "6002338", "video_name": "dfcc6a35-36c9-5c93-8879-01490e7e3f49", "text": "the drone flying at the sky shoting the shore of pacific "} +{"id": "3004844", "video_name": "d872d8c7-8274-5262-9f93-6021a7076949", "text": "industrial and transportation hub on the Volga River "} +{"id": "1004706", "video_name": "5763abac-b73b-5ff2-9c4f-091b73119c3b", "text": "5 boys of age 17 standing outside school building three of them looking at other students passing near by, one is looking at his mobile two talking to each other. cinematic video "} +{"id": "6004163", "video_name": "501271df-e05f-5378-bb70-77baf7db75d6", "text": "Comic book scene of baseball player swinging bat, 1980s animation "} +{"id": "3003239", "video_name": "af48cccc-627e-556c-b203-5e23a06e0f17", "text": "an archer who is trapped in post. Apocalyptic world "} +{"id": "1004881", "video_name": "5a47420e-14dd-520b-9215-9556f0157ec8", "text": "tlw2 image for the server metin2 "} +{"id": "3003474", "video_name": "332eec27-1fbd-513b-9f4a-63622dba8950", "text": "spiderman in the forest with many trees "} +{"id": "8001452", "video_name": "5f4cce90-02b8-5492-a9b8-f6eb3afa119e", "text": "animated clip of luke skywalker falling in the woods "} +{"id": "1004030", "video_name": "4ab84c16-b973-5641-ae0e-40c4d3184018", "text": "A superhero similar to Batman, in the style of Batman: The Animated Series, is sitting on the edge of a tall building at night, playing a guitar. The city skyline is in the background. Duration: 5 seconds "} +{"id": "3005871", "video_name": "db7abc7a-dd46-5707-8184-841ca81b75db", "text": "An office boss, standing next to their car, checking the time on their wristwatch with a hint of urgency or time management. Capture the scene in a workplace parking lot "} +{"id": "1004265", "video_name": "4ef1f10d-e3bc-55e6-a920-594215556f23", "text": "8k, a cat eating dinner with a fork, cinematic "} +{"id": "6002322", "video_name": "020b7dc1-66cb-54f0-9936-041beceb8973", "text": "wizard with a castle in the background, aspect ratio 9:16, parallax effect "} +{"id": "6004518", "video_name": "4b7abbe1-28d5-5f91-9d6d-b1acbdf77f12", "text": "The days turned into weeks, and the boy devoted his time to taking care of the injured bird "} +{"id": "3005502", "video_name": "ec9c4037-dc77-5ec2-aa98-bc5981fc0100", "text": "Woman running on the beach, HD, fast motion "} +{"id": "2004320", "video_name": "414ff507-f580-54ee-98a3-47e261161882", "text": "A man struggling with a tuberculosis infection in East Africa. Artistic outline, the TB infection is represented by a silhouette of the grim reaper "} +{"id": "8002673", "video_name": "bf6c15e5-fae5-5ab0-acb9-8f29990ef7a1", "text": "a fish zooming around like the flash electric animation cinematic 4K "} +{"id": "2007834", "video_name": "61fb78f4-8b35-5027-8bf2-e647df096969", "text": "A young couple opens the door of a haunted palace in a dark night "} +{"id": "8002538", "video_name": "42dcb30d-e7b8-51ba-b739-40024dc081a9", "text": "Angela from Silent Hill 2 with Lena from Everlasting summer "} +{"id": "6003862", "video_name": "182550ab-1c99-5ca8-a099-c4abff5cfbb6", "text": "a video loop of 10 seconds showing a bedouin man walking to the core of something "} +{"id": "6004727", "video_name": "b696a5a1-88bb-58ff-ac6f-449e209d883b", "text": "5 seconds video, a bottle falling from a table, while crushing on the ground pieces of glass become colorfully candies, hyper realistic video, dark mood "} +{"id": "6003428", "video_name": "dbe51ac9-6fbf-56dd-a4a9-f8c07634497c", "text": "found footage of a mechanical alien on another planet "} +{"id": "6002507", "video_name": "6fc2fe68-e843-52b9-bbd1-f9834a27359f", "text": "hackers shown hacking a news station. Shown from a spy camera "} +{"id": "2004586", "video_name": "831a8a92-5c8b-543c-a94b-73f9b4549892", "text": "an archeologist digging out a pharaohs tomb "} +{"id": "4004056", "video_name": "03c9a3b3-90eb-5143-852f-2592afa49eda", "text": "show a mobile phone that is in a conventional plastic case , 5 sec , 16:9 "} +{"id": "6004002", "video_name": "9c3246c5-6f0c-5700-838d-400a93df27a6", "text": "I look back and see nothing. high definition, high detail, cinematic "} +{"id": "6004168", "video_name": "a523e275-fa22-541c-bbe0-d980bae8fc9e", "text": "Beautiful woman bomb shell, beautiful eyes, curly hair, digital illustration, bowater style. "} +{"id": "2004960", "video_name": "79e006e6-e40c-5f03-ac01-3a79d71903d5", "text": "fish swimming by clouds subtly moving lighting opening up liven up the image subtle movements nothing out of the ordinary "} +{"id": "0003416", "video_name": "3d4540cd-a4d9-51d8-8308-5bdb7e6e8120", "text": "explosion of pure fresh blueberry\u2019s, the explosion ends with vape smoke. As a 4K cinematic movie "} +{"id": "2005415", "video_name": "2d96bd67-c46c-5ea8-97c7-1d06c5c1fadd", "text": "8k, modern office with lots of employees and bustling activity, bright and sunny, ultra modern interiors "} +{"id": "2003178", "video_name": "563d54b2-cf17-5765-82eb-d5caf73875ee", "text": "a path on which horses run while passing through the water of a river that crosses the place "} +{"id": "3004722", "video_name": "8c7c4f54-e054-51ba-9d0d-aedd8a5d67e0", "text": "hd 3d video for shots with walking Indian girl in from left to right in see shore with hills and trees "} +{"id": "8003194", "video_name": "d7a15978-01d7-5daa-91b4-49f7a4c8b641", "text": "a quaint european village where all of the houses are crumbling to the ground. the villagers are terrified, realistic, ar16x9, dramatic lighting at nighttime "} +{"id": "3006043", "video_name": "65e4cb99-a205-5cb1-916e-be3a936294cf", "text": "A Fortnite skin dancing on an honeyfruit "} +{"id": "6002088", "video_name": "86cca894-b97d-5251-8f3c-8079829164e4", "text": "Ai illustrated for young audience ar 16:9 "} +{"id": "4003695", "video_name": "a6523b1f-1922-5417-ad43-2751483d58bd", "text": "video 2 minute long of a man romane fighting 4 soldiers "} +{"id": "3006623", "video_name": "2553b639-ca94-51e1-99bc-31157ccd7ee0", "text": "maxima and his fellow gladiator became fugitives, hunted by the authorities.\n in 4k "} +{"id": "2006744", "video_name": "e58923d8-7ba5-52be-b0a3-d343b8853d10", "text": "man driving in Cadillac Classic , looking into the camera , close up "} +{"id": "5001448", "video_name": "c374e95b-6cde-51f6-8c60-fbbe1a786c20", "text": "a deer farting so hard that it blows away the forest, violent camera shake, quick zoom out "} +{"id": "8002415", "video_name": "3da17758-70aa-58ef-8eb9-63bf40c47b70", "text": "Historical Moroccan warrior with Moroccan horde army heading from Morocco to Jerusalem in large view with Arabic word with Palestinian flags and army on the road "} +{"id": "0005084", "video_name": "1478354f-108d-5a14-9896-34a214e07026", "text": "they meet a magician who tells them about his companion 3d animation scene "} +{"id": "2004099", "video_name": "9c9ed35c-9b30-590a-92d3-45433d80cbd7", "text": "a group of very happy children, hugging each other happily, inside a classroom at their school, on a sunny morning. "} +{"id": "8001797", "video_name": "dcf0674c-65ed-531a-a48b-0a3256f8d4f9", "text": "a formula one auto driving in route 66 to Vegas at sunset "} +{"id": "3004133", "video_name": "9bf3697b-cab1-519c-8777-6c33a2f09fcf", "text": "beginning of the universe to end "} +{"id": "4003059", "video_name": "d4936581-b396-564b-96dc-5826bde288d1", "text": "futuristic steam punk plane flying trough the space, cinematic image, dynamic light "} +{"id": "3003947", "video_name": "f2da2f49-e247-57f7-a953-c19a900f7d90", "text": "Blonde woman with long legs in high heels walks down the catwalk "} +{"id": "8002459", "video_name": "7c135e5a-8cb4-5187-bb48-f870f77c0791", "text": "Entering, she discovered that it was the home of seven dwarfs who worked in the nearby mines. Grateful for their kindness, she decided to clean and tidy their cottage while they were away. "} +{"id": "8003736", "video_name": "22e39f75-677b-54ce-8414-8b7855b96c6e", "text": "a capybara sitting in a bar at a table drinking beer, realistic, cinema "} +{"id": "4003276", "video_name": "d3b85806-8d2c-55ed-8877-ea1d90d81469", "text": "creates an image showing trilobites in the Precambrian period "} +{"id": "4002201", "video_name": "14ba73a5-7bea-5b1a-aea1-bd6f704abd5f", "text": "As she walked deeper into the forest, Lily stumbled upon a sparkling stream. Along its banks, colorful wildflowers danced in the sunlight. "} +{"id": "0003247", "video_name": "39fc751c-9672-5800-aa41-625809e70f6b", "text": "recording from a security cam, bad quality, a man chasing a kid at midnight, dark, scary, eerie, horrific, analogue tape, VHS, blurry "} +{"id": "8002707", "video_name": "b0010d44-1b65-5cbe-ab71-47cf138b6835", "text": "The mouse happily scurrying through the forest, looking back at the lion. "} +{"id": "3003698", "video_name": "434b1f8e-8e13-59b0-b514-88cc17192f79", "text": "a young guy, now a successful entrepreneur, stands on a rooftop terrace, looking out at the city skyline. "} +{"id": "1003727", "video_name": "44d805ae-0146-573b-8a70-7093e5322cad", "text": "moon landing first latin american astronauts. No US flags on their suits. "} +{"id": "0004311", "video_name": "06e61718-86c4-5a21-8000-d7fa9f09af8f", "text": "create the message out offerro fluid and a black background Message: ordinary Technology (Font: MODERN) "} +{"id": "1006626", "video_name": "79832f79-fedf-5a38-aeeb-5ab02fc14a66", "text": "video of two bears hugging each other "} +{"id": "7003147", "video_name": "58c63cd4-ec81-54be-a91e-2aa53a069d92", "text": "The lion wakes up and is astonished to see the rabbit at the finish line. Message: 3d cartoon (Font: MODERN) "} +{"id": "0003325", "video_name": "3baa2651-1ea6-5a1c-b6cf-8c4a2b68ed16", "text": "Little Red Riding Hood notices that her grandmother\u2019s eyes are not open. "} +{"id": "1003105", "video_name": "3930a1bc-107a-527c-8ab5-d4f1d3b5e3b0", "text": "Elon musk in space suit walking with jeff bezoz "} +{"id": "5001740", "video_name": "f5364b53-b301-5f90-b332-29c02b806623", "text": "psychedelic arthouse colorful film with drake the rapper rapping in winter time in the snow surrounded by wolves wide shot extreme far away "} +{"id": "0003604", "video_name": "403fb256-41a0-51d1-ab6a-ed74f911c02b", "text": "tear drop becoming a bottle of bourbon "} +{"id": "8003223", "video_name": "73f3e0ea-19d1-540f-9c7c-e22673fe814f", "text": "three butterflies white, red and yellow are playing in a flower garden "} +{"id": "3003683", "video_name": "5cde2f4c-67d5-5c67-ae39-e5ee8b5d15de", "text": "a boy is using facebook on computer "} +{"id": "1006897", "video_name": "7e0d21cd-b71a-5790-95a6-e79efc0f8ac5", "text": "video of a pretty woman with black hair wearing yellow coat "} +{"id": "8003024", "video_name": "601f4fc8-f61b-5877-aa06-06bb006b2608", "text": "create video of ocean view, like bird fly "} +{"id": "1006818", "video_name": "7cb9c5f5-1dc7-54f1-a0ed-287662945ce3", "text": "care bear tv in stomach bright colors new logo sticker "} +{"id": "2006939", "video_name": "2191f33c-a1da-5454-b98b-6e50b0dd9ce5", "text": "A cartoon cute ragdoll cat drives a car on Mars, the camera switches from a long shot to a close shot "} +{"id": "0006509", "video_name": "2dc7fb02-a3de-5999-9dbc-42a64cc64229", "text": "Prepare Schezwan Noodles with Dry Manchurian "} +{"id": "8003622", "video_name": "198b61d8-1697-58a4-9dac-603e0ce74bdc", "text": "in museum,many people look at him "} +{"id": "7004917", "video_name": "9d752443-7e9c-5dc2-bf4a-aae9712b9710", "text": "A Space ship with guns on the side losing one of the guns in a explosion From A Missile From China "} +{"id": "6004851", "video_name": "64a4aa2c-8428-5949-8020-a851df23750e", "text": "a hall full of dwarves feasting upon a giant table, enjoying the present "} +{"id": "0004017", "video_name": "019b7b45-ffbd-5e1f-98ed-72155502cc7c", "text": "cinematic, medium shot, FX film, An astronaut running away from an alien on Mars "} +{"id": "1003870", "video_name": "474ba9f5-cb70-51dc-a2f3-e53a8969add5", "text": "extruded brushed titanium text Message: Hip Hop AI Trivia (Font: MODERN) "} +{"id": "3004689", "video_name": "e592fd39-7158-542b-a81d-ed03409ab710", "text": "don vito corleone, godfather, in the style of Tampa Florida street art, graffiti, vibrant, hip hop, abstract, clean black lines, white background, vector, Adobe illustrator "} +{"id": "0005134", "video_name": "157091be-2442-5e33-82fc-ffea86fa3b2a", "text": "A dark green alien embryo is wrapped in a mycelium shaped like a Rotten sweet apple rotten in very large transparent huge hi tech capsule "} +{"id": "3006489", "video_name": "e81ce216-f328-53dc-beb4-41d43a4ef33a", "text": "Innovative and expressive digital artwork, blending various artistic elements to create a visually stunning composition. The color palette is dynamic, with bold strokes and intricate details showcasing creativity. The piece emanates a sense of passion and imagination, exploring the boundaries of artistic expression. Diverse textures and forms come together, inviting viewers to interpret and appreciate the depth of the artistic process. "} +{"id": "6003412", "video_name": "4f178645-5559-5320-88fc-45e935081ee9", "text": "katt williams standing on a stage with steve harvey on a tv set "} +{"id": "3006479", "video_name": "872dd541-3d71-5524-9e35-da7b38d6edfa", "text": "how a wide shot of the sun rising over the horizon, illuminating the entire village with a warm golden light. "} +{"id": "2003891", "video_name": "560f0697-582e-54fa-855e-155707cdd6b4", "text": "Generate a video of a 34 age male standing in front of a cave. He wore a big scarf around his body slowly moving in the air. The camera angle should be in the back side. It should be cinematic 4k. "} +{"id": "7002469", "video_name": "793f291e-6ff2-5a01-914a-f4df5cc21e3f", "text": "An Android robot holding a pair of telescopes is observing "} +{"id": "6002764", "video_name": "4cbd8046-a144-55dd-84a3-06e3815c6fe8", "text": "the gold room scene from the movie The Shining "} +{"id": "2006565", "video_name": "3ca9d80e-8575-58b8-a38d-e710eea7069c", "text": "a man in a long black coat writes under a lamppost at night, "} +{"id": "2006010", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "gungnir spear flying in the sky "} +{"id": "2005054", "video_name": "11c2ea22-43e9-58c8-ab26-e3afdc29c3f1", "text": "Camera tracking following A plane super speed flying through alleyway of alien futuristic city. "} +{"id": "2004574", "video_name": "486434d1-4235-5627-8a75-9f670bf8164f", "text": "a big robot walking towards a futuristic city "} +{"id": "3003175", "video_name": "6c824325-57f0-5c78-b3c7-dc9da8eda40d", "text": "put a Shiba Inu on a POG. "} +{"id": "2005800", "video_name": "799817e2-96d1-5b87-af97-4c660d8d96f5", "text": "The image opens to a vast desert landscape, stretching as far as the eye can see. The sky above is a brilliant azure, accentuating the earthy tones of the sand dunes that rise and fall like waves frozen in time. The sun bathes the scene in warm, golden light, casting long shadows that dance across the landscape. "} +{"id": "8001193", "video_name": "5cdb9c0e-3c33-50a6-89f2-4f1f77649766", "text": "A Ziggy Stardust themed jukebox 1970s film style. "} +{"id": "3003881", "video_name": "f0bc8247-71de-5a18-95cd-b562d43d76a5", "text": "open a box and stack on other box using colored outline method to draw "} +{"id": "3006717", "video_name": "1a123de3-db29-5add-8ca2-f66862fbc772", "text": "3d background animation of puzzle black pieces background texture with a golden metallic one coming in place in the center. concept for leadership "} +{"id": "3003232", "video_name": "979ca7a0-e67d-524b-8b16-cfad8b3eb01d", "text": "how looke like a Seraphim Angel "} +{"id": "7003722", "video_name": "0bfdc007-d177-54cd-bb03-4d4aee4c77c2", "text": "What are Earth Angels? Earth Angels are believed to be individuals who have chosen to incarnate on Earth with a special purpose and mission. They possess a heightened spiritual consciousness and are driven by a deep desire to spread love, light, and compassion in the world. Earth Angels are seen as celestial beings in human form, sent to assist humanity and contribute to the collective awakening and evolution. "} +{"id": "7004640", "video_name": "ad01041d-5ba7-5c88-a1f5-3c37341591f7", "text": "an astronaut gets hit by a laser beam on the moon, 16 mm, style from 1930, black and white "} +{"id": "3005508", "video_name": "3d6c9c1e-4993-53df-a834-787455083193", "text": "Cute little cat with different eye color, white Napoleon "} +{"id": "8002729", "video_name": "80bab1f7-b8bd-57f7-8122-a67e8f536a2a", "text": "A road map showing a route spanning 3000 miles, photo realistic, 16:9 "} +{"id": "2007357", "video_name": "2f36ac8d-0d7d-5eae-8e45-d464f5484b42", "text": "Spiderman swinging through urban Karachi, Pakistan. Cinematic "} +{"id": "0003733", "video_name": "42875003-1010-5789-9638-c390970f4fd7", "text": "video of a palm in a paradisiac beach, hyper realistic, cinematic style, close up shot "} +{"id": "8001069", "video_name": "e6cca30f-e4d1-5592-8578-861b672ef059", "text": "sunset and road of 10 seconds "} +{"id": "2004531", "video_name": "c99220b3-d0bf-5e67-9bc6-f379a65f57b7", "text": "70s eastern european horror, Experiment with juxtapositions and unexpected transitions to create a disjointed narrative that leaves room for interpretation. Blur the boundaries between past and present, memory and imagination, inviting viewers to delve into the depths of the subconscious "} +{"id": "6004486", "video_name": "1c804fcf-9a38-5beb-b60c-defb9e72a908", "text": "City Skyline. Clouds, birds and neon lights Message: Gualk (Font: MODERN) "} +{"id": "2004716", "video_name": "512ce4ab-1720-5326-b272-5d503cc08219", "text": "Elon Musk celebrates Chinese new year "} +{"id": "6003046", "video_name": "dd2dbcee-336f-5d06-ae4c-f06c9bca02bf", "text": "portrait of the cyborg turning head away and back in slow motion, eyes bright blue "} +{"id": "0005495", "video_name": "1bd56c40-840c-5ca1-9d22-24fb44de6355", "text": "beautiful japanese woman clapping her hands "} +{"id": "6003632", "video_name": "12ca6346-c747-565f-a2d1-04ca7d5194de", "text": "man runnuing in a city, Valparaiso, Chile, 4k "} +{"id": "4002859", "video_name": "7deca2d7-6647-5eff-b6d5-6bc8c0db408e", "text": "war in the dessert between human and wolfes "} +{"id": "8001440", "video_name": "05f16f68-3aeb-52f0-8b4f-f97ebfd1e732", "text": "parent setting up large Halloween tent outside in the dark "} +{"id": "0005000", "video_name": "13090dac-5b63-5f02-9c07-592746b3be35", "text": "The space Fleet is storming the planet "} +{"id": "8002482", "video_name": "82df7bbf-4b62-53e9-aa6a-2b77170a4a8c", "text": "girls face looking confused, then smiles, blinks, cinematic, zoom out, facial movements "} +{"id": "1005304", "video_name": "61793771-a8cd-573c-b042-210e293aaa13", "text": "The garuda bird, a symbol of strength and protection, flies above medical health workers gather around it, ready to embark on a journey of healing and hope village people of Bali, and these pictures connected each other with green and cream palette colors "} +{"id": "7003069", "video_name": "a972a329-dc31-578e-bc92-b026f942cf3e", "text": "eagle with glasses are lecturing in a futuristic classroom "} +{"id": "1004303", "video_name": "4f8b7d83-7d39-578f-b05b-aa7344fc3380", "text": "a high fantasy, cinematic scene with two mighty armies of angels battling in the heavens with swords of fire and spears made of lightning. "} +{"id": "4003882", "video_name": "e42e6087-4832-570d-b0ef-4ff76776fde5", "text": "star with king crown melting purple with gold "} +{"id": "2003606", "video_name": "84eb6cc5-5dab-50bd-aef6-28a521ec6a5e", "text": "Ravana with his 10 heads visible, lightning flashing in the sky "} +{"id": "2005951", "video_name": "502a0417-8e90-5357-a63a-eb48de74c599", "text": "a man that looked like lightning is walking in a beautiful garden "} +{"id": "2007148", "video_name": "494918d0-9c30-5928-932e-fec21d88a1f9", "text": "the guy standing on roof and facing back to camera "} +{"id": "2003068", "video_name": "9b4c8b60-3fc2-57e5-a17c-0c31b6562112", "text": "Joe Biden Shirtless lost in Africa "} +{"id": "1006603", "video_name": "78fa00ca-4528-50dc-a6df-aa3a9697148f", "text": "mediaval age, A letter that has blood stains over the paper and the ink, super realistic "} +{"id": "8003890", "video_name": "1f9430bc-48d9-5490-a722-4aa8918077a8", "text": "druid sentinel, fully armed, with her stuff in her hand, walking towards us in the forest on a path, full moon in the background "} +{"id": "4004964", "video_name": "e1457f28-b5df-5426-bbd9-59e287e42715", "text": "4k beautiful french girl sitting in a forest wearing silk dress "} +{"id": "6002785", "video_name": "76ba9785-3c80-540c-9ab2-d15962a0bccf", "text": "a prince and a princess in a warming atmosphere "} +{"id": "1006710", "video_name": "7af6ad9d-2b29-5a90-a734-ecdd11f2ffdd", "text": "Trump dancing, his hair flowing in the wind, cinematic style, sunset "} +{"id": "3005705", "video_name": "8922414f-cf81-570b-ac40-975bdeb9f8f0", "text": "A cat inside snow Message: 1 Attachment "} +{"id": "7003990", "video_name": "50a2853e-ab80-5454-bae9-c729a091bc46", "text": "Astronaut levitating gracefully above the surface of an uncharted planet, verdant alien flora twisting towards a lavender sky, bizarre creatures with bioluminescent features peeking curiously from crystalline structures, sense of wonder and fresh start, digital painting, ultra detailed, science fiction atmosphere, otherworldly landscape, vivid colors, cinematic. "} +{"id": "3004240", "video_name": "ccea894d-e93c-57b3-be19-4f849f7e1671", "text": "giant war machine walking among coconut palms red sunset anime style "} +{"id": "0004076", "video_name": "02d1fb70-3025-5a7c-8d8f-645f28531b21", "text": "Transition to a sequence where the traveler is meticulously packing a weathered backpack, laying out items on a bed or table. The items tell a story of their own \u2013 a camera dangling from the strap, a compass, a notebook filled with travel tips, a small globe keychain, and a passport adorned with colorful entry stamps. "} +{"id": "1006151", "video_name": "70ac5413-8fd5-5749-890b-e1e56c849db1", "text": "blue wall background Message: 1 Attachment "} +{"id": "3003382", "video_name": "83c31f2d-e2ce-598e-bddc-ed7a1c39040d", "text": "this is perfect lost the background add tv remote in hand and light saber "} +{"id": "3004731", "video_name": "a720805d-67a8-57ea-bdc4-aaf06e74ccce", "text": "a city where something horrible has happened "} +{"id": "0005393", "video_name": "19fdbf21-71fb-5e17-9e26-6471295b4092", "text": "Moses from the Bible crossing the Red Sea Pixar style "} +{"id": "6003334", "video_name": "15abe2a0-3791-5f9a-afa8-5e43862d8375", "text": "anime girl showing off her feet "} +{"id": "2006310", "video_name": "2e631c5f-663c-5700-979e-3ac394e59d05", "text": "Sikh woman praying with folded hands and meditation, tree, grass, paradise, heaven lighting, epic, cinematic, void arcanist, mist, photorealistic, octane render, unreal engine, hyper detailed, volumetric lighting, hdr "} +{"id": "8001211", "video_name": "2da96805-d278-5956-8fda-0e7feaebe1be", "text": "Mars with a colony and robots that help people on Mars "} +{"id": "6002951", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "an image showing a logo ressembling the google logo "} +{"id": "8002910", "video_name": "08dd3685-3a08-5e97-85d0-734a69889434", "text": "HD wallpaper: red and green floral background design, fire, effect, plant, glare "} +{"id": "5001625", "video_name": "ee1806a3-704b-59b1-bc9c-2b1de2b86734", "text": "Set the scene by describing a whimsical, festive town and introduce the main character. "} +{"id": "2007644", "video_name": "0f239d63-c49e-53b0-a396-f6d6e3b646fd", "text": "Rick and Morty with a futuristic style. "} +{"id": "2007314", "video_name": "150e7a32-050f-5f7f-9781-ebf543636e22", "text": "a 360 degree spin of a camera in an or are room with deceptive paintings on the ceilings and walls of a castle built entirely out of diamonds. All the statues, floors and railings are made of mirrors. "} +{"id": "6003040", "video_name": "fa69b7d3-8155-5d5a-b4a5-6f68dfdb4a37", "text": "a baby lion lost in the jungle "} +{"id": "5001804", "video_name": "4cb80a3d-c9f1-5e75-b619-36301d1a0acf", "text": "3 pigeon on left side of the tree "} +{"id": "2004906", "video_name": "e7bcb821-0179-5730-87ef-2af00b822464", "text": "horror house, 8k, cinematic, real, 29:9 "} +{"id": "6004646", "video_name": "0644e0f3-1c3d-5b9a-bae1-47a6c1ce7fed", "text": "ground level footage, 8k, queen walking in her castle "} +{"id": "0004714", "video_name": "0ddaa4b7-cf86-5ef6-bcf4-1f6767f83a74", "text": "Flying police rush after a new vanilla car "} +{"id": "2007060", "video_name": "69385afb-b179-5e35-a808-ee8342fd6f73", "text": "girl walks on the road, frontal view "} +{"id": "3003768", "video_name": "74bcc8fc-96ff-5335-b234-68b6d380e8f9", "text": "a man with black glasses and black costume, arrangind his hair with hair half red and half yellow, he is walking a in futuristic city, camera from the side, flying cars are passing by, the mans seems ot be looking for a location, camera from 5 meters away, many people are passing by because the city is populated with many people "} +{"id": "6003322", "video_name": "44b63d6b-5043-52f9-901a-36686de6b5db", "text": "one fox crossing the street in NYC on Christmas Eve. "} +{"id": "2005981", "video_name": "e7bfb0de-5c42-5a6d-b552-b40f7c1bb258", "text": "alone boy near a road with cigarette smoking "} +{"id": "7002008", "video_name": "66f4fd37-54b1-5a98-97dc-30181d742b85", "text": "howling at top of the mountain Message: Blue eye wolf (Font: MODERN) "} +{"id": "8001183", "video_name": "dd140409-834e-53be-ab7f-ffc74aac235d", "text": "When the bag was heavy enough, "} +{"id": "8003627", "video_name": "ebee5501-0b63-5b23-aa9a-57f7d1a33400", "text": "weed being smoked Painted by Van Gogh "} +{"id": "8001300", "video_name": "847b3150-525a-50da-b9c0-3d39ced6c693", "text": "scene from de backroom recording with a vhs camera "} +{"id": "4002914", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "hyper realistic young woman with blonde hair, smiling at the camera for a profile picture "} +{"id": "3003832", "video_name": "1384e3ce-7c8f-56e4-8698-520fcd3443dd", "text": "cave painting same time travel story fit in zoom Gamra vari vari sad fit vaching ather biboul "} +{"id": "7004937", "video_name": "8306d510-929b-57e8-8daa-8dad4ab3f7ea", "text": "A flock of sheep sleeping on a barn floor with hay. Include dream bubbles abover there heads and in the dream bubble include a single peanut butter cracker. Above one heavy sheep include 2 peanut butter crackers "} +{"id": "3003932", "video_name": "988ee5b1-00a7-5fb4-b91a-fbba3fbc3018", "text": "Envision a sunny morning with a curious young horse, Max, trotting by Gracie, his eyes filled with the spirit of adventure. "} +{"id": "6004573", "video_name": "84136c8f-98d7-52a5-9c78-f6c078faf186", "text": "simulate realistic gasoline explosion outside car factory and the ancient dragon flaming the bus, rainy day. "} +{"id": "2006550", "video_name": "29b836c1-bd2f-501a-bf70-e2e78039297a", "text": "donation boxes of healthcare products and educational materials "} +{"id": "2005598", "video_name": "4aec1fb7-83c9-5fc3-b913-5f59b23321f3", "text": "A golden Tai Chi figure with eight diagrams on it. "} +{"id": "2007536", "video_name": "c942b273-3de1-510d-840e-016268c887e0", "text": "detailing car racing BMW m5 driving on the track , camera front , forest, 4k, ultra HD, realistic "} +{"id": "4002365", "video_name": "cff1665f-a336-5fc2-a57d-2428efb821f8", "text": "With manga style: A mouse is running and find a wooden piece of a number one "} +{"id": "6002188", "video_name": "0d8486ec-8424-5d26-a8f0-01cbf7d799a6", "text": "tiny man walking around the clock "} +{"id": "8001445", "video_name": "e1f102bb-df9e-55f7-96b4-c84844e8cdca", "text": "Cartoon anime security guard in blue shirt "} +{"id": "2004156", "video_name": "58be0df1-092a-55c8-9693-361404d27a42", "text": "16:9 with 1080p resolution, a team is talking about the business plan in front of a whiteboard "} +{"id": "2003899", "video_name": "086ef0b9-3ac8-50f8-8654-33e899ee0747", "text": "Meeting the love of your life for the first time "} +{"id": "8003435", "video_name": "4e0f186e-8758-55a7-8b8c-9483b5dddd38", "text": "Once, there was a kind old man who lived in a village. "} +{"id": "2006316", "video_name": "75ae463f-e530-5edc-8abc-0b91e8ccdcac", "text": "Create a realistic elon musk image "} +{"id": "8001386", "video_name": "74100938-dffa-5e9d-b7cc-886785054344", "text": "A short 30 second video demonstrating how to click with a computer mouse with 3d graphics "} +{"id": "4003613", "video_name": "5f2f212d-07e2-5651-bbda-2831b0e17218", "text": "Schizophrenic drawing of evil Mantis creature fragmented red colour isolation distorted evil twisted "} +{"id": "2006964", "video_name": "9d69f048-e799-57f3-8f7c-b65b0dbde23e", "text": "Man on a boat in a lake between icy mountains and forests, stationary on slightly moving water, anime, in the style of makoto shinkai "} +{"id": "6003371", "video_name": "f94fc03f-e376-5d5e-bd34-4f1698ab29b6", "text": "3D realistic reality is a mirror, ufos shooting stars space geisha urban portal dystopian city future Betamax "} +{"id": "2004340", "video_name": "1609b2a0-ca51-5ce7-ba64-aa10db524e8f", "text": "burst into bubbles,surprised look Message: 1 Attachment "} +{"id": "0006601", "video_name": "2f5f68ab-1c75-5bd1-b9de-9de8318fd69c", "text": "Christmas, magical town, people walking, beautiful decorated houses, wide shot, lights, Christmas trees, realistic, 8k quality, science fiction, 24 fps "} +{"id": "3003494", "video_name": "aa530ec5-093e-5874-a8a4-4b6ab9cf8ac0", "text": "dark angel that rises above the clouds , 4k "} +{"id": "2007164", "video_name": "6614c198-36d8-5ef0-b428-be31495910b9", "text": "silver round particles in a fluid form, black background, sharp reflection on each particle "} +{"id": "7002019", "video_name": "238b37c2-df81-5f11-88a8-65c328bc5550", "text": "a maigcal forest in the mountains , pastel , glossy , dream , hq "} +{"id": "6004000", "video_name": "aeef0903-dfb9-5089-a617-6a1fd5cfa162", "text": "a dramatic water splash in a cinematic lighting "} +{"id": "0004472", "video_name": "09a7ce69-777b-5970-bd39-69400c46ce5e", "text": "In an unexpected twist, Walter White, sporting a stylish Balenciaga apron, teams up with SpongeBob SquarePants in a bustling kitchen. Walter meticulously measures blue crystals while SpongeBob, donning a chef\u2019s hat, stirs Krabby Patty sauce with contagious enthusiasm. A blend of chemistry and culinary chaos unfolds, creating an oddly effective duo and a masterpiece meal. "} +{"id": "2004411", "video_name": "d867dfab-2976-50fb-8d0b-bbae9b1e2757", "text": "However, their challenges did not end there, as they had to fend off attacks by the Sentinelese "} +{"id": "7002224", "video_name": "faa49f4d-27f0-58bb-a873-a6fcc2ad670c", "text": "C for cat, who likes to chase a mouse, 3d,pixar style "} +{"id": "0006558", "video_name": "2e9f7c1e-fa08-55d2-9ac0-f37d68313241", "text": "A very beautiful young woman with long black hair wearing a black ancient robe. Standing on the streets of the village, fantasy movie "} +{"id": "0004097", "video_name": "032de537-b117-5f0e-92a7-66532a7924fc", "text": "Highway 1, colorful sky, rainbow, Milky Way, neon lights, highways, signs, maps, lights, decorations, colorful vehicles, luxury sports cars, luxury sedans, large vehicles, large trucks, large military vehicles, tank vehicles, armored vehicles, buses, fast turning wheels, vehicles speeding, beautiful women, greeting, taking a ride. "} +{"id": "4003200", "video_name": "f8dc3bf8-aca5-5c44-9caf-16a5c3b1263b", "text": "man staning at his office, looking through the window the big city "} +{"id": "2007790", "video_name": "8a4fce43-96d4-51c7-ba92-2567da69ca8d", "text": "a well dressed person is on an eggplant "} +{"id": "6004664", "video_name": "33897140-6587-546a-9afe-cc9b23106c3d", "text": "The king and queen also had a daughter who was very beautiful. "} +{"id": "7002117", "video_name": "2ebfe798-968b-5ae3-a51b-ad4266510e78", "text": "A father reading a bedtime story to his son at night in a eerie, dark, room "} +{"id": "2007197", "video_name": "0619afdc-eaa9-5819-a04c-66d59e615331", "text": "Taipei 101 hang a flag with the Chinese letter \u201clove\u201d(\u611b\uff09. "} +{"id": "7003272", "video_name": "a51312ea-ee43-5db1-aaa5-6a9835511c19", "text": "There is a rabbit running on the Badaling Great Wall in Beijing in 1987 "} +{"id": "2005175", "video_name": "9c321c66-66ab-5ec6-9259-de0bd56ec345", "text": "loop 3d animation. star shape. random color. "} +{"id": "2007053", "video_name": "84774a4e-5021-5739-912b-c4553edaabcb", "text": "a stem cell floating around with bright background "} +{"id": "0005605", "video_name": "1ddd3b82-9d9d-5e1a-ae4e-851bbc530e38", "text": "Beautiful girl not present in earth "} +{"id": "8002873", "video_name": "4da20104-0102-50b7-82d0-66610cf12cd7", "text": "The eggplant dips itself into the bucket of milk to help protect it from the sun rays "} +{"id": "8003776", "video_name": "3d7b9de9-73a6-5d01-9fc9-3fe6ce0aff13", "text": "one singular yellow pastel star floating underwater with bubbles. Make everything bright, vibrant, pastel, cartoony, kawaii, anime "} +{"id": "0005652", "video_name": "1ec013d7-4c2b-55fd-a60b-a7155decc1f9", "text": "from the image studying a girl with a cat moving its tail "} +{"id": "6004935", "video_name": "733ad8ae-0d72-557c-972e-3674913c5420", "text": "dark 4k chernobyl, kids playing outside, 1980, horror "} +{"id": "7003406", "video_name": "98a9c1d3-da0e-54f3-ba84-8c7639e7d8a0", "text": "if Pauly Shore was on Seinfeld Message: 1 Attachment "} +{"id": "0006229", "video_name": "28c0a077-c3c6-5d0c-a072-621726c460e0", "text": "a single flame in an illustration style, disney style, white background "} +{"id": "3006772", "video_name": "b9622718-c556-557c-948e-69987ed87641", "text": "generate a live breaking news video "} +{"id": "6004967", "video_name": "e94417ba-0e52-5ac6-b992-39c13592d3f6", "text": "Generate an illustration capturing the delicate process of wheat seeds budding and sprouting, depicting the emergence of vibrant green shoots as they evolve into fully riped wheat plants, realistic "} +{"id": "6004369", "video_name": "87be866b-f351-5826-8e80-9c20f2efdf32", "text": "22 A fox and man shaking hands.Fantasy "} +{"id": "2003950", "video_name": "b46bb95b-5427-5cc2-83c6-665c2ac625e5", "text": "pieces of puzzles swirling in the suns corona boiling hot "} +{"id": "7004972", "video_name": "0b0386f2-b893-5284-a86f-756b8762636a", "text": "video chevrolet suburban matt black wheels 24 "} +{"id": "6004826", "video_name": "d711dcf0-f4b3-59d0-8df6-ba2eee67b48a", "text": "a girl woke up in bed "} +{"id": "2004735", "video_name": "594dc1bf-fab9-5868-857e-5f84243d020a", "text": "Stockings hung with festive glee, Gifts beneath the glowing tree. "} +{"id": "1005728", "video_name": "695cf535-8dfd-57a6-896a-4ada76e0f20f", "text": "a girl named Emily mysteriously vanished "} +{"id": "0003629", "video_name": "40c1267b-910c-5aab-a08f-19e8dc869d59", "text": "The video begins with a vibrant sky filled with colorful clouds. The player guides the cute character by jumping between the colorful clouds on the screen and collects the objects of the correct color. As you increase your scores, the difficulty of the game increases and the player tries to achieve high scores. "} +{"id": "4003639", "video_name": "715225b8-b280-5db4-aad8-4830db6a5dd0", "text": "A promo with black background with title the doomsday "} +{"id": "0005221", "video_name": "16d819c8-cda1-5447-969c-4e6c63014cf4", "text": "An airplane that emits radio signal waves "} +{"id": "2005600", "video_name": "07544761-ca36-5021-ba8c-5d5ee7d70b86", "text": "black cat plays drums in a meadow with white cows "} +{"id": "7003370", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "Trinity Morpheus and Neo hack the Matrix "} +{"id": "0005841", "video_name": "220d7d08-8c58-53f3-a98e-5bdd31e9eb71", "text": "An old man drinking tea alone at the garden outside his home "} +{"id": "8003524", "video_name": "9332affe-a3d3-5a5a-8de5-06611ac1ae15", "text": "swimming axolotl top of the water "} +{"id": "7004099", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "a abandon theater, a group of people , many vertical hanging bule and red flag, cinematic style low key, night time, wide shot , slow pan "} +{"id": "4004990", "video_name": "b05e6568-b7ea-5816-8c5e-1b9fb9b157a0", "text": "Mountain river flows calmly, humming water sound, relaxing "} +{"id": "0005029", "video_name": "136a3e45-c2d6-543a-9ff7-2a54aa41af43", "text": "He said that he had used the magic belt to transform into a wolf, but that it had been stolen from him by the hunters who captured him. "} +{"id": "1003103", "video_name": "3926ae09-a42f-5391-a1ac-c9613add2ec3", "text": "A smartly dressed Victorian gentleman walking along a street in a poor part of Victorian London "} +{"id": "4004912", "video_name": "c8a6dea3-337c-5887-84db-ef1149b70374", "text": "a 3d cartoon eye of nazar and a microphone and haedphone "} +{"id": "8002676", "video_name": "d98858ca-3be7-5bea-bce2-5820b5a3e30a", "text": "The characters walk into the temple, Clouds and mist swirl around, push the camera, birds fly "} +{"id": "0003484", "video_name": "3e6a5368-d617-5439-b6ae-e98d8b1c37d4", "text": "hundreds of people eating bread and drinking red wine "} +{"id": "3004790", "video_name": "9a5feb92-987a-52cb-a022-2916776e60d1", "text": "1910 movie black and white grain nostalgic look African male with shirt off standing on balcony of a mansion look at the backyard, 26MM WIDE SHOT, 16:9 "} +{"id": "0003316", "video_name": "3b77db76-11dc-5ada-9610-769a51f98f0e", "text": "hands reaching for a door that slams shut. \nHorror scary image "} +{"id": "4003846", "video_name": "112d487c-0ccc-5a68-8bd8-4c6d19b870d7", "text": "one cup of coffee with cyberpunk "} +{"id": "8001670", "video_name": "f68a1e11-c362-5a4e-8a42-2c7ca948820f", "text": "bear, monkey, horse, elephants walking and talking in a beautiful forest "} +{"id": "3006654", "video_name": "58e66629-9131-541f-b2b5-a628cab18615", "text": "A person in the attire of the New Testament era finding reasons to be grateful even in challenging situations. "} +{"id": "6002518", "video_name": "d7559063-abfb-5afe-88c9-a4309315690a", "text": "The Chinese guqin with 50 strings. "} +{"id": "2004794", "video_name": "db0d75f4-4e4b-58b1-bdd4-35f03c27ccc6", "text": "Autumn night in the park, a guy and a girl walk holding hands, looking straight at the viewer, romantic scene "} +{"id": "4002230", "video_name": "d6f16526-ddba-59a9-b5bb-d60eda362b63", "text": "View of the collapse of the Berlin Wall. There is a crowd stampede, some people are taking pieces of the wall "} +{"id": "6002654", "video_name": "d22bdfbd-d640-5219-aaaf-e7b17d20fc40", "text": "new york police fights venom in the year 3000,cinematic realistic 4k "} +{"id": "7002942", "video_name": "517e1433-bc84-5b6c-aeed-848da208450b", "text": "With hope in their hearts and determination in their eyes, Drizzle, the tiny dragon, and Tweety, the little bird, set off on their epic adventure, ready to face whatever challenges lay ahead. "} +{"id": "3004803", "video_name": "a433967a-1661-5a7d-bfc8-ba417095aa1c", "text": "camera tracking down empty hallway Message: 1 Attachment "} +{"id": "8002592", "video_name": "f1638856-c8ac-5eef-b1b5-ddc4fd16f3f7", "text": "recreation of famous speech wide shot as the world kneels to Donald trump "} +{"id": "7002666", "video_name": "77aa486f-f80a-5fdb-bd33-7c2442a757e9", "text": "young asian beautiful female, street fashion, jumping, on street, "} +{"id": "7002018", "video_name": "ddf9ff4f-8fb2-574b-8504-8a47d8271618", "text": "Imagine a traveler from a distant realm, their skin adorned with swirling galaxies of vibrant hues. Their eyes shine like stars, and they wear a cloak woven from the threads of the cosmos. Describe their encounter with Earth and their quest to understand human emotions through the lens of their own kaleidoscopic existence "} +{"id": "2003763", "video_name": "190ad348-d630-53ae-848f-10fcccb3794f", "text": "peace and harmony after the return of the powerful ancient diamond in the beautiful forest of talking animals "} +{"id": "6003350", "video_name": "d1377e50-6197-530a-8dc4-11b29bb35b2f", "text": "A Bitcoin dances on the streets of Macau "} +{"id": "3004453", "video_name": "f9544713-f9de-55c1-9a42-c73f58deeaf0", "text": "security police footage far view of a mafia boss woman walking "} +{"id": "3004138", "video_name": "f031f4bd-cd0f-5725-9d24-dc99decee3f3", "text": "kids carrying plastics bags. They\u2019re walking in a valley of plastics bags. White desert of sand. Blue sky "} +{"id": "8001875", "video_name": "d2cd3437-c9c1-591f-aa7b-6c40b6bcfd1c", "text": "build scene: it is dark and raining, the street lights shine a subtle orange hue on the mist. There is a man walking towards the street light with his back turned. The man is wearing a peacoat and a Italian mob style hat. "} +{"id": "8002951", "video_name": "93c958fe-734f-5b54-8166-3a12d09b1d90", "text": "The king sits on a beautiful throne. Palace soldiers stand guard. The minister explains some problem to the king. "} +{"id": "0004299", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "tom cruise smiling and blinking one eye "} +{"id": "8001660", "video_name": "79178e91-bd14-5307-9e7a-edcd91e92c75", "text": "a baby bird patiently waiting on its mother to return "} +{"id": "5001533", "video_name": "48219a65-67ea-51de-a733-60a62a9b68e2", "text": "exploration journey into the heart of the mobile network ar 16:9 "} +{"id": "4004507", "video_name": "92fe88fb-6e0c-5600-86aa-79cfc9437014", "text": "Design a smart watch specifically tailored for fitness enthusiasts who are into extreme sports like rock climbing, skydiving, and snowboarding. Consider durability, functionality, and safety features "} +{"id": "4002510", "video_name": "70578ec1-6b96-5b64-8976-8091f4a6fd39", "text": "realistic orchids that bloom frogs which are eating ice cream "} +{"id": "5001868", "video_name": "6e31778e-3d39-5cea-8254-02112f544958", "text": "moon pyramid Egypt generator mechanic magnetic polar field shield aurora moon holy city in the shape of a gem core octahedron. Fields of evidence thwarted from victor chow burger and NIKOLA TESLA "} +{"id": "3006169", "video_name": "f2dca68f-f119-56da-9ed9-a82f9ab6ff88", "text": "Clouds, blue sky, crossing the horizon, perfect day Message: BAM (Font: MODERN) "} +{"id": "2007163", "video_name": "cc9482df-e255-5032-ba73-3d2c3908f698", "text": "photorealistic left to right camera pan of donald trump pushing joe Biden in a wheel chair off a cliff "} +{"id": "2003649", "video_name": "68952c51-b4c6-5346-ba26-edbe4722421f", "text": "Nuclear waste water Discharge Ocean Marine organisms Mutation Pollution Environmental impact Ecosystem Toxicity Health risks Ecological balance Water quality Biodiversity Aquatic organisms Mutation Genetic damage Biotoxicity Hyperrealistic art style Details Lighting effects Rendering Textures Surface patterns Color depth Realism. "} +{"id": "6002350", "video_name": "262f63a7-ddda-524d-a782-082b8ecfb0d1", "text": "Christmas in bed, 1950s black and white movie "} +{"id": "8002327", "video_name": "8c6d4ab7-b624-5734-aba4-4d21971387aa", "text": "minecraft player having an idea with lightbulb over head "} +{"id": "0003311", "video_name": "3b620ee5-56b3-543d-9706-54ac9a076f40", "text": "The opium bird found in Antarctica, which moves like a human, is not known where it came from "} +{"id": "2005618", "video_name": "3fbcbcad-27b9-50e3-9259-86b2119279e7", "text": "big and fast storm waves in the middle of the sea "} +{"id": "8002206", "video_name": "4cf6a72c-dd19-58f7-a01a-3250d7f04822", "text": "create me a farmer that its in a truck that wants to catch the rabbit "} +{"id": "3006056", "video_name": "8f77e1d3-03e7-53b1-b874-b595f32e70de", "text": "A cartoon boy dancing, Chinese boy, cute, with a transparent background, "} +{"id": "6003063", "video_name": "ea11c1f4-0800-510e-9121-936509c99a57", "text": "cinematic medium shot of a guy with glasses playing a ocarina "} +{"id": "4003748", "video_name": "872518a6-7a95-530a-acc9-be2a764a1e59", "text": "25. EXTREME: Challenge yourself to capture an extreme sport or adventurous activity in action, showcasing the adrenaline and intensity. "} +{"id": "1003306", "video_name": "3cdb270b-8b8f-53b8-ad3c-c42eccc2060d", "text": "photorealistic forest in rain camera forward move shot "} +{"id": "0005778", "video_name": "21200734-077b-52f2-933f-6fee1cbda780", "text": "cute owl with ribbon: flying fast and landing on a hand "} +{"id": "8001364", "video_name": "78bbc7d9-26c6-59e7-873d-838ebccfcdde", "text": "The girl went from heaven to earth "} +{"id": "3004725", "video_name": "51c1d512-dd2e-5d71-b0c3-54009fec2169", "text": "The spacious and dark cold light source of urban architecture is huge and cold. Cyberpunk 2077 Silver Wing Killer Style "} +{"id": "4002631", "video_name": "2d0f263d-9fd8-5c42-a261-becacec137f9", "text": "Once upon a time in the peaceful town of Harmony Ville, there were three best friends named Lily, Jake, and Emma. Disney cartoon realistic, 8k HD Message: 1 Attachment "} +{"id": "4004932", "video_name": "ba9db6d9-eaa8-5c62-9990-b258bcf27bcf", "text": "a giant statue of a knight above a river "} +{"id": "3005039", "video_name": "03940b8b-4c70-5531-8300-1b6e8aa1ccb1", "text": "a square QR Code flying towards the screen "} +{"id": "8002056", "video_name": "c5e5ddcd-16be-569e-990e-983efe6479f9", "text": "A dolphin typing on a keyboard in a pink college dorm with a window looking into the quad. "} +{"id": "0005838", "video_name": "22037a71-bfce-5156-8ad5-4db859b7ef87", "text": "girl moving legs slowly, no blurry image "} +{"id": "2005815", "video_name": "bdfbfc7c-6f8e-5ff6-b970-d1cd1a0fde36", "text": "a girl seat on a suitcase "} +{"id": "0006788", "video_name": "3327646b-920a-5c52-8174-23c414de1402", "text": "make a winter scene in the middle of the image Message: 1 Attachment "} +{"id": "1003916", "video_name": "48566fea-99f5-5a0b-8c87-6a7ffb28c8ed", "text": "Purple dinosaurs are dancing and celebrating in a party "} +{"id": "8001339", "video_name": "0cbb9e29-6043-5494-a8a8-a47b335872b2", "text": "man being his formation through the dust of the earth untra , 8k, 4D "} +{"id": "8002043", "video_name": "fc6db046-72dd-526d-b9b8-9680decb91ca", "text": "elephent giving water bottle to human "} +{"id": "1006012", "video_name": "6e758fb3-7439-5961-b964-f1a7bbaff32a", "text": "Walter White as a mage in Skyrim "} +{"id": "7003478", "video_name": "7c5ba916-50e8-5727-a5d3-fa119be963aa", "text": "Ronnie OSullivan Snooker player going into outerspace on a rocket ship in cartoon style "} +{"id": "6002063", "video_name": "fff37e38-b174-53cf-b553-ac1df2381c7d", "text": "Detailed scene of the three ships of Christopher Columbus in the middle of the stormy ocean, the three skulls sailing in heavy waves, ships of Christopher Columbus detailed in 4k high resolution fluid movements Spanish ship from the year 1493 "} +{"id": "8002696", "video_name": "915ee092-48f3-5276-9e91-b2423bf2c566", "text": "the boy heart full of hope, he closed his eyes and prayed with all his might to be taken to heaven. "} +{"id": "3004557", "video_name": "18b7379c-38b0-56a6-80cf-cff0dc58da9b", "text": "a lady standing near a hily forest and saying something "} +{"id": "1005940", "video_name": "6d292d1e-1284-5005-a0c9-3d31fb768db2", "text": "Digital watercolor Illustration of a hedgehog with burger with legs running in summerscape sunset, by Waterhouse, Carne Griffiths, Minjae Lee, Ana Paula Hoppe, Stylized watercolor art, Intricate, Complex contrast, HDR, Sharp, soft Cinematic Volumetric lighting, flowery pastel colours, wide long shot, perfect masterpiece "} +{"id": "4004677", "video_name": "28673832-f1ba-5e62-becb-acd743bcb4eb", "text": "Pagan Monuments sinking in water Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "1005370", "video_name": "62d0dab2-9d58-52f3-b937-e0bb3e865ab3", "text": "Use fractals and kaleidoscopic effects that repeat and cascade infinitely. Animate parameters over time. "} +{"id": "6003817", "video_name": "39ba1213-bf22-55c9-9ac3-23a3383fc9e2", "text": "a man wearing a black suit holds a globe with both hands, photorealistic "} +{"id": "8003153", "video_name": "7ea6af53-3962-5290-b473-9726fd568e06", "text": "A shot of a dense, ancient forest with sunlight filtering through the trees. "} +{"id": "4003204", "video_name": "a7d06e0c-895a-5cd5-bba6-21431c24fa70", "text": "formula 1 cockpit view, checkered flag "} +{"id": "6002354", "video_name": "9728f4d2-84d0-527a-bb5c-79ae0522dfe4", "text": "ships in sea carrying cargoes in a stormy sea during 15th century mercantilism economy with port buildings and roads "} +{"id": "7004924", "video_name": "93f3f51f-1fc2-57a6-ab71-d9e1f869eeab", "text": "the last of us Message: Emad (Font: MODERN) "} +{"id": "2003758", "video_name": "fed55eeb-ef04-5857-ab9d-0ade1c5caf2f", "text": "a man with a beard and extremely long legs has a very long stick with a hanging moon pendant, a clock and keys, walking with a child that is playing with soap bubbles, soap bubbles everywhere "} +{"id": "0005386", "video_name": "19e5419f-b77b-5ade-95f1-bf84b450e828", "text": "A note jumps on the staff on its own "} +{"id": "3003020", "video_name": "d0727480-4715-586d-a8a4-221a6572e495", "text": "young people putting their money in the money box "} +{"id": "0004031", "video_name": "01d15797-3b79-5f54-9e20-f839a13a6f3c", "text": "beautiful girl wearing golden batik with shawl "} +{"id": "7003480", "video_name": "76b6fabf-15f5-587b-bc0d-04ae9148f1af", "text": "electric station in kazakhstan in a bad shape "} +{"id": "8001118", "video_name": "03f8d08c-dd9e-5edc-a271-95cbcd25e2e7", "text": "A group of teenagers with a rock aesthetic, long hair, in an old attic with neon lights, opening a trunk full of vinyl records. Everything around them, Fender electric guitars, drums, bass, Marshall amplifiers, old video games, Super Nintendo, Walkman, arcade machines, skaters, vinyl records, and 80s and 90s technology. "} +{"id": "0004477", "video_name": "09ae4d05-2e61-58e5-b9d7-9a9efc034c6b", "text": "kim jong un fighting donald trump at sunset, in the style of cyberpunk nfts "} +{"id": "2003842", "video_name": "3241acdc-c60b-5230-a9f9-a05ee36cfe25", "text": "image a curious and lovable kitten named Billy lived in a beautiful house "} +{"id": "3005477", "video_name": "b11a84e7-cf05-562f-b672-14f2a47eb14f", "text": "A set of four white ceramic mugs perfect for coffee, with a sleek modern design. "} +{"id": "3006699", "video_name": "f6ff4594-3301-5a99-b61d-e97f5ee4aa11", "text": "portrait of a cyberpunk male warrior made by greg rutkowski "} +{"id": "0004378", "video_name": "08002da4-9b4b-591a-94fc-13f397f59208", "text": "little girl in a big scary library alone when the book around her come to life "} +{"id": "2007224", "video_name": "5dfdc795-a1c0-59a9-87f1-fa9465d933ab", "text": "A woman asing siri about her schedule "} +{"id": "0005051", "video_name": "13c9fd41-a836-5bfc-bd3e-be3582670989", "text": "symbolizes the importance of divine intervention and connection with the sacred to give life and meaning to existence "} +{"id": "8001726", "video_name": "74c0a7c2-f694-50a5-ae70-966818a82335", "text": "white doves flying over beautiful landscape "} +{"id": "6002918", "video_name": "7ec68827-fc83-5335-8990-802b78f82fde", "text": "a mighty river running to the foothills of mountains on both sides Message: Running (Font: SANS SERIF) "} +{"id": "5001383", "video_name": "d6acab60-a664-5a49-9060-a3fad60a5b82", "text": "a racing car on rode and name Nadeem show on number plate "} +{"id": "2006593", "video_name": "4aae6e8b-a68b-58d4-a92c-8d66ae6c51e6", "text": "man bobbing his head while listening to musing, blinking his eyes "} +{"id": "6003942", "video_name": "83718fc8-679d-5ab0-8497-37e5fcb29e4f", "text": "romantic hero fighting in the vilen in the forest "} +{"id": "1005534", "video_name": "65dcc09f-cd81-501f-81e5-4b50e776d42f", "text": "Sustainable city full of animals and people living in harmony "} +{"id": "2007554", "video_name": "33ea2b60-b938-5092-aa9d-b9673b9e97d8", "text": "red blood dripping from a chrome fork "} +{"id": "8002088", "video_name": "a663188f-1bbd-579f-8b9a-711683f9f1f5", "text": "a shot of a mountain climbers boot sticking into ice "} +{"id": "8003418", "video_name": "84d55703-8c39-5125-8c09-07fe3277beb2", "text": "cinematic,3d, twisted trees on Halloween night with fog and wind "} +{"id": "1006701", "video_name": "7acbac5a-7744-5a01-af7f-d79b722a7022", "text": "Ethan, receiving an unexpected package containing a haunted violin from a distant relative. day time standing outside his white house with a red door "} +{"id": "4004611", "video_name": "a03a0dba-56bf-5f48-8299-aca16d334f6f", "text": "imagine a guy holding hand of a alien and looking at the vast sea "} +{"id": "1005968", "video_name": "6da1aca5-3bdf-5c77-9ee5-d9549b3c7e2c", "text": "he seen of a new comp apartment complex to be built in Santa Fe New Mexico, called Tres Santos, and it\u2019s off Pacheco Street they get a realistic advertisement. "} +{"id": "2006583", "video_name": "fdd85fb0-2081-56db-b839-4269313fb367", "text": "delicious hot dog Message: tasty (Font: MODERN) "} +{"id": "0006442", "video_name": "2c8289fa-44f3-5dc4-af76-5aa4a80c9502", "text": "Cthulhu eating Kim Jong Un, anime style, 4k, detailed, dramatic lighting "} +{"id": "2003566", "video_name": "421382a5-2334-5d6c-bd2c-7723f90ab382", "text": "Children laughed and played, running through the meadows, their kites soaring high in the clear blue sky "} +{"id": "6002579", "video_name": "279088d1-01b6-5c02-977e-6c370cf44016", "text": "Selena Gomez eye contact with camera while walking "} +{"id": "2007275", "video_name": "4e994d28-f752-5fb6-a405-508734fa1830", "text": "side view of a diesel Chevy 350 driving over a Tesla "} +{"id": "1006997", "video_name": "8003ed8a-9d41-5e80-9cde-51003d1023ea", "text": "mech mushrooms, jungle, melt, slime, goop, bounce, jiggle, tron, tunnel, visuals rotating, floating, cinema4d, 3D render, dramatic, cinematic, intense, creepy alley, spinning, flashing, fast motion, dark, gloomy "} +{"id": "8001341", "video_name": "9f509fd9-0939-598b-ace3-6bdfce0e0b6c", "text": "An image in which a human appears trying to shake hands in peace with some cyborg robot with artificial intelligence, the human civilization and the robotic civilization with cyborg artificial intelligence, shake hands to try to find a peace solution. "} +{"id": "1003708", "video_name": "446f774c-0ab2-52b6-ac7f-399ed129d687", "text": "fast timelapse of people walking in pedestrian lane "} +{"id": "4003889", "video_name": "18e9a594-fc7f-559f-9288-9b9390414949", "text": "the monster tree is talking, blinking eyes "} +{"id": "4002735", "video_name": "3a3fd59a-c635-53b1-870e-baa116358ec7", "text": "knocking a door, the door is shiny brown "} +{"id": "7004004", "video_name": "cdb00e39-2bc0-59d7-9250-c6564b196f2c", "text": "one 25 year old boy and 24 year old girl talking from 1meter for 1 min "} +{"id": "1004220", "video_name": "4e1a441a-4c33-5739-b69d-a8b77b656edb", "text": "a cute bear really happy, into fashion, walking on a commercial street to do shopping "} +{"id": "2003750", "video_name": "de140051-87c3-5d4f-b3a0-77aa1f3fb2a2", "text": "on mars face, 3d render, cgi, symetrical, octane render, 35mm, bokeh, 9:16, (intricate details:1. 12), hdr, (intricate details, hyperdetailed:1. 15), (natural skin texture, hyperrealism, Rembrandt light, sharp:5 "} +{"id": "1006901", "video_name": "7e2ea241-5e13-5c34-8591-ac809a7058bb", "text": "a doctor taking rounds of the hospital "} +{"id": "4004075", "video_name": "068caa8b-73e1-5c52-b377-099bb34b9367", "text": "explosion of information, data, information age, detailed, impressive, 8k, cyberpunk "} +{"id": "2004071", "video_name": "c68fb6a0-4145-59e5-a860-ad30186786e9", "text": "village kids in crops play with magical golden calf images "} +{"id": "1004888", "video_name": "5a5a707c-1d19-5489-8f50-a121992dd0de", "text": "n a futuristic cityscape, an anime character with ethereal powers battles against a colossal robotic creature, with cherry blossoms falling in the background. Use dynamic camera angles to capture the intensity of the battle. "} +{"id": "6002291", "video_name": "e4224e25-7096-54c3-b0d7-8dd26146da8e", "text": "Fox jumping in the forest .duration 5 min "} +{"id": "4003859", "video_name": "e5f244e2-5d33-514a-bda1-e292b5805c2d", "text": "knolled flat lay of lavender and jasmine and fragrance items "} +{"id": "1006126", "video_name": "704fd4fe-e1b6-56fb-85c4-9080b53f59cf", "text": "white dress Angel neon colour wings flying in air zoomed Full body "} +{"id": "7002450", "video_name": "b709a94c-7cbf-56a8-b267-ea8eade3e343", "text": "cookie with eyes, arms and legs dancing next to a glass of milk "} +{"id": "6002169", "video_name": "fc42b27d-a0f9-5ade-a2ea-cf5b8ff393e0", "text": "number 1 in math sitting on a chessboard Ultra HD 4k hyperrealistic zoom out camera "} +{"id": "1004661", "video_name": "56b02cb9-fe53-5b58-b786-1f77f1bafaec", "text": "Portrait of Domestic Tricolor Cats wearing samurai costume in edo styles. "} +{"id": "6004909", "video_name": "01896f13-e0fe-563f-bc6d-5160d0b5a140", "text": "earth in universe surrounded by all the 8 other planets "} +{"id": "1006607", "video_name": "790c2bad-37b0-5cfc-952b-1f7ce4a3fa88", "text": "Medieval sailboats were sailing on the sea, the wind and waves were lapping at the sailboat, and the sailboat was in danger of sinking "} +{"id": "7002120", "video_name": "ad1349b3-32b8-548f-b9cc-63beeeff32a4", "text": "woman giving an optical illusion to a crowd 16:9 "} +{"id": "2005344", "video_name": "60f06d4b-4165-595d-84cf-50eff9904452", "text": "In the university dormitory, a student is using ideas and materials to make a video project lasting about 5 minutes "} +{"id": "4002900", "video_name": "7f6c77fb-1146-5356-a3d4-3aba17131bbc", "text": "A panda surfing in a pool "} +{"id": "3006724", "video_name": "4bf7cf18-af0a-50e8-a8c6-4af06e1c5763", "text": "people hanging out in the ghetto in style of Ralph Bakshi "} +{"id": "7002172", "video_name": "ce6d33c9-44e7-54d9-9a85-514beeeb3969", "text": "The presenter is shown standing in front of the camera and welcoming viewers. It provides an overview of the video content and presents a colorful and attractive background to the world of animals. She points out that animals have exciting and interesting names and will take us on a fun journey to discover some of them. "} +{"id": "1006307", "video_name": "73705773-c65f-5d89-a743-45237a72962e", "text": "an animation for the introduction of a video with the letter f that animates, is assembled in 3d "} +{"id": "6004613", "video_name": "20416ccf-e5df-5620-8f7a-157fa8607553", "text": "a scribbled sheet of paper placed on a table that is wet with drops of water "} +{"id": "1005686", "video_name": "6878c209-ce3e-5dae-b636-eead53979ce3", "text": "In a futuristic world, an astronaut played by Brad Pitt tries to plant a tree on a garden filled with plants and Zombies. 16mm Sepia filter 16:9 "} +{"id": "7002089", "video_name": "c3d1bfc5-3323-5222-96dd-9c67b8c991e0", "text": "Kaito steaming dabako in the style of Japanese anime Lupin III. "} +{"id": "1006541", "video_name": "77d60fe7-420f-58b2-be47-3f7830e49ccf", "text": "A vibrant, sunlit forest with colorful trees and chirping birds. The wise and friendly face carved into the bark of the Magical Friendship Tree. "} +{"id": "4004385", "video_name": "25276aab-ff7f-5c96-9a74-1bb1976f925f", "text": "A boy is hugging a girl on the street "} +{"id": "2005966", "video_name": "fe38edaf-74cb-5617-8ab9-416430104c95", "text": "Springtrap the animatronic from the game five nights at freddy dancing on the dance floor from the movie Saturday Night Fever with John Travolta and Bryan Cranston rollerblading "} +{"id": "4002077", "video_name": "f1a2369b-150b-5e6c-a597-e3891c58c448", "text": "leaves falling from a tree in a serene park and create a peaceful atmosphere "} +{"id": "1003337", "video_name": "3d6a1f25-86c8-52bf-8990-6903cd07ac4b", "text": "prophet elijah from the bible speaking to the people of israel in the jordan river old testament "} +{"id": "2007160", "video_name": "d3bea1d9-799d-500c-8358-bb1047f38c94", "text": "cats running from a metor ,end of the world "} +{"id": "8002906", "video_name": "b7f3b0d1-13e7-5f8b-a095-9bd8aa3378a9", "text": "Buildings of a cyberpunk city, raining "} +{"id": "7003045", "video_name": "4db0a395-8103-5b9e-bcea-2dea1c1ddd9d", "text": "Filipino asking Americans to drink beer "} +{"id": "5001889", "video_name": "eba112f9-6437-57b0-822a-dc30c92cbdb2", "text": "4k , HD, cinematic, photorealistic , animated, long journey of a man inside a forest "} +{"id": "8002131", "video_name": "7171df6b-44c4-58e6-84f3-5972cb750b6d", "text": "David from Sasun on his white horse fighting with hi enemies "} +{"id": "3003242", "video_name": "214c8280-3a1c-5bee-a9e9-ed537baac8e0", "text": "Create a 157 second video with my picture, it should be different scenes in the forest. "} +{"id": "7003741", "video_name": "d99c905d-5d62-5820-a48d-dca04973273e", "text": "Cinema 4k: Ninja jumpig in the air with his Katana Cutting the camera Fullbody, panoramic "} +{"id": "1003261", "video_name": "3c094eae-df12-520d-8453-6728114fd717", "text": "milkyway galaxy come close to nebula, ultra realistic "} +{"id": "0005691", "video_name": "1f7a6c06-d5c2-50fe-8df8-02dfd1063261", "text": "the world on fire space view "} +{"id": "6003365", "video_name": "317ccbfe-9546-547c-85ae-e929239f2ff5", "text": "Generate an elephant in the forest for 10 minutes "} +{"id": "0006139", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "anime, a band plays at a martini bar, camera zoom, motion 2 "} +{"id": "8001362", "video_name": "6b41e8ef-7d68-58d8-8e7a-2ef6260921ba", "text": "golden fish swiming in a fishbowl "} +{"id": "4002799", "video_name": "73b272ef-6d7a-5702-b97f-087f8bb283d0", "text": "Jitendra and Gopal obeyed him and went with him. The party started at night, and the ghost came in her scary form. "} +{"id": "1004066", "video_name": "4b7777d9-8191-5531-afa2-cd28ce250e4e", "text": "2898 future city like dune film the futuristic city extreme long shot small camara movement "} +{"id": "8001980", "video_name": "961d77e4-1ead-5fcb-a539-9ce36d4ee6e2", "text": "10 second video of joe biden running away from angry crowd in the middle of the desert "} +{"id": "7004967", "video_name": "0a0e10d3-0948-5aa6-bb40-fc4fb2b296f7", "text": "three kings dressed in traditional Hindu attire and one queen dressed in traditional Hindu attire were sitting in palace "} +{"id": "5001051", "video_name": "1017e3aa-449e-59df-a156-a267d613541f", "text": "Show a dry riverbed, once flowing with water, now cracked and barren. make it move "} +{"id": "6004204", "video_name": "d24f163b-3cf2-589b-8b88-5b9b95e85609", "text": "A bustling marketplace in the heart of Sparkletown, filled with vendors selling magical trinkets, vibrant flowers, and delectable treats. The animated scene captures the colorful chaos and joy of the villagers. "} +{"id": "4003175", "video_name": "b4909e28-bcf2-5f87-b576-b5267ff6081e", "text": "The beautiful sight of Western Elysium "} +{"id": "8001674", "video_name": "c9ac2f1c-61bc-5c1d-94fd-7d7ae1b75f80", "text": "watercolor painting of a orange and white cat running through a field of grass. "} +{"id": "2004188", "video_name": "f6ef393a-5131-56ad-bba2-7920dfa789d8", "text": "A girl turned around and smiled at the camera "} +{"id": "1006399", "video_name": "75329d02-e16b-5177-9f52-0244b449d005", "text": "Jesus Christ caught on Camera zoom in Massive Alfred Stieglitz grainy black and white 1900s "} +{"id": "1004902", "video_name": "5abb5474-5a34-5efa-8a20-deb26632352c", "text": "Remember, history is full of fascinating stories just waiting to be discovered. "} +{"id": "0006853", "video_name": "343fdb0c-4656-5605-97f6-b68038e832b1", "text": "a sacred tree with bright blue leaves and dark brown bark in the center of a gothic cathedral. Light is emanating from the tree. There are two men in saphire blue hooded and cloaked robes. 4k HD animated style. "} +{"id": "7004151", "video_name": "a496c48a-cb58-5d2c-960f-1560278a5890", "text": "bob schneider dancing on the beach in italy with lots of women "} +{"id": "0004083", "video_name": "02e400af-3245-5dd0-9bdd-1f21d145f45e", "text": "laying down tiles floors in a newly renovated kitchen in an a class house "} +{"id": "7003085", "video_name": "9557554a-bb7f-5f95-9898-950cfec4bebf", "text": "latin boy seeing his poor family "} +{"id": "0006508", "video_name": "2dc46871-474d-5259-85fb-2923fe43f62a", "text": "Beautiful girls, white skin, yellow hair, white bikinis, beach, blue sky, sunshine "} +{"id": "1006722", "video_name": "7b30b1fd-36d9-5689-bfd1-e1e24446d331", "text": "golden retriever with N64 game style "} +{"id": "1006675", "video_name": "7a57ecec-cdc5-5429-bb30-4498b08e6919", "text": "A sunset seen from a viewpoint "} +{"id": "1006328", "video_name": "73cd83ba-3452-5472-aa3e-4d219c52caef", "text": "Depict the character of a young child named Rafa. Describe physical features, a cheerful facial expression, and the often restless and energetic demeanor. "} +{"id": "7003449", "video_name": "e2a184c0-34cf-5d1c-8790-22ad97684d4b", "text": "Social networks and instant messengers have become a part of our lives. "} +{"id": "6004525", "video_name": "9870e4f4-8aa7-53dd-97e7-28d7cc721a22", "text": "a big buildings drawing the word free "} +{"id": "8002875", "video_name": "2d36e2a0-1df4-5a21-8206-16931be0f517", "text": "Illustrate the Innate Immune System in Action: Show the process of phagocytosis, where specialized white blood cells engulf and destroy pathogens. "} +{"id": "1005405", "video_name": "634d66ff-b183-5ded-90fb-541720476ebf", "text": "The most beautiful woman in universe, drinking milk "} +{"id": "2005973", "video_name": "b2d115be-d8eb-518d-bf0b-3ad60a1768d4", "text": "Timelapse of a pepper plant growing cinematic HD vivid colours "} +{"id": "6004583", "video_name": "81e2eccc-c7d0-57f8-86f5-472f1e5c0be5", "text": "A small boy, aged around 5, is sitting in the middle of a jungle, looking scared. A lion is standing nearby, looking at the boy. "} +{"id": "5001060", "video_name": "05360052-7262-56f0-af92-a2b3b5e7eb09", "text": "pink heart cut out, collage, moving edges "} +{"id": "7002625", "video_name": "880b80bd-7688-50d5-a4c9-081fb7a69251", "text": "a man with a red cap walking through the mountain, with trees and grass around "} +{"id": "2006722", "video_name": "d70c3ce9-60bc-5d84-8c99-6951e61eccf9", "text": "a giant gorilla screaming in the jungle "} +{"id": "1006236", "video_name": "72424e1b-af4c-5abe-a4be-6ecd7a1cff87", "text": "A bunch of bananas, falling into the water, splash effect, splash "} +{"id": "5001615", "video_name": "e1c97529-e3cc-5a78-aa39-4c1ead7ca442", "text": "A breakthrough in quantum computing algorithms is the key to unlocking the mysteries of consciousness. As she adjusts the hologram, a MEMORY CHIP falls from her pocket, landing near a discarded cup of coffee. "} +{"id": "5001916", "video_name": "59f68eb1-da63-56f7-a441-3dbc4bb7460e", "text": "imagination shaping the world Japanese Lofi comic book style cyberpunk "} +{"id": "2003777", "video_name": "2b9b7cde-c4b6-5ea1-9462-edb16337a65f", "text": "dog jumping catching frisbee in beach "} +{"id": "1004414", "video_name": "518d7136-887f-5b38-b5e0-bc1a365218e9", "text": "3 gear wheels running spinning individually "} +{"id": "6002468", "video_name": "b5d60fce-bee6-5247-b8e4-b43c223e2581", "text": "Amazon River in Manaus Amazonas Brazil. Amazon, sky, clouds, green forest. Panoramic outdoor forest background Green Forest Summer Tropical Forest. Manaus, Amazonas "} +{"id": "8003812", "video_name": "156f727c-b7b7-54a4-8a2d-67b84b8bbbfb", "text": "People from neighboring villages came to witness the beauty she painted in the sky "} +{"id": "1003940", "video_name": "48b9f935-2ac7-5cb0-90f9-f0aa121a56a9", "text": "dancing mouse on a clock 3d cartoon style "} +{"id": "8003027", "video_name": "073b34b5-eade-5446-947b-fac9caeafc48", "text": "photography, tommy ton style, analog photography "} +{"id": "0004101", "video_name": "03389ce2-ca57-5da2-88a0-991c570425ac", "text": "model smiling with hair blowing in the wind "} +{"id": "3004111", "video_name": "77994556-7754-5bb9-9c40-71a5f9ba036b", "text": "A beautiful long hear cute girl holding a beutifull flower 16:9 "} +{"id": "0003964", "video_name": "00c30ed3-28a9-5d4d-bb6f-36067e8b502d", "text": "George W. Bush speaking to Walter White, Christmas, snowing, Breaking Bad, 2012 "} +{"id": "4003838", "video_name": "24ce1402-4003-5024-909c-9c97d65c3013", "text": "idle pose, jump, highly detailed female steampunk warrior, studio ghibli style, emotional, dinamic "} +{"id": "7003634", "video_name": "acadf8dd-a6da-5c71-bbed-27a5d869ce17", "text": "upper body, Create an image of an anime girl with bright red hair, wearing a sundress and holding a bouquet of wildflowers, standing in a field of tall grass with a soft breeze blowing through. The scene should capture the whimsical and carefree style of Sakimichan, with a sense of peace and tranquility in the air. "} +{"id": "2004076", "video_name": "87e0fca4-b36d-5568-91de-df987a4f73af", "text": "Yes, confidence is important, because if you feel inferior, you\u2019ll act inferior. We know confidence alone doesn\u2019t solve all problems. After all, it\u2019s not the same as competence, and telling a kid who\u2019s horrible at math that she\u2019s great won\u2019t make her study more for the next test. "} +{"id": "3003876", "video_name": "66e92c4f-17b9-59b9-83c5-9530499ae5b0", "text": "timelapse of a night sky, a luxury jet is flying slowly "} +{"id": "1006905", "video_name": "7e464ee8-6bca-5444-aa22-ff224063c25e", "text": "Grandma showing a little bottle, Christmas tree, 1950s black and white movie "} +{"id": "4004845", "video_name": "7d9e96f0-f1ba-559d-b652-f0550ee81c04", "text": "velvet ribbon blowing in the wind tied to tree branches, moon in background, night sky, clouds moving, dark, macabre "} +{"id": "0006639", "video_name": "301266f2-0354-5996-b327-f358787888eb", "text": "bob ross spray painting a wall in a urban subway station underground "} +{"id": "7002442", "video_name": "a03d48d2-94eb-5982-be4b-a846351ef646", "text": "keyboard with eyes and mouth, hands and legs dancing "} +{"id": "4004725", "video_name": "b9682da1-53f0-5bc9-94e6-d909f83a3d7b", "text": "A towering, elegant robot with glowing eyes and a sleek, metallic body, standing amidst a city of advanced alien architecture. "} +{"id": "2003488", "video_name": "f78847f1-432a-57d1-a648-c62881b9812f", "text": "Zombie businessmen running toward the viewer in the abandoned city. Cyberpunk, Horror 1990s film style "} +{"id": "3006344", "video_name": "4484f677-3e26-54bc-b95b-346d01215301", "text": "an iPhone charger turning into a snake "} +{"id": "0004224", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "Realistic cinematography showing russian cosmonaut in soyuz spacecraft "} +{"id": "2007390", "video_name": "67b45f46-8254-5ad0-8a71-82b6558c5533", "text": "stop sign, in the background is an explosions dramatic light "} +{"id": "0006678", "video_name": "30cf92c8-c9f2-5be3-8b14-3551eea9dca6", "text": "macro shot of an abstract leave with gloomy lights, misty, surreal, cinematic, 16:9 "} +{"id": "4003520", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "cartoon illustration of little lord Ganesha with beautiful smile happy face clear face in flower garden in sunset "} +{"id": "8003066", "video_name": "bdaab750-c1ac-5c2c-ab5f-f7c4bca0ba51", "text": "Stickman finds a ice fruit and eats it "} +{"id": "2003160", "video_name": "b18fcc11-c03d-5bd6-ac3a-3b8287bcddfe", "text": "wood chips Message: VIRU (Font: MODERN) "} +{"id": "7002570", "video_name": "14b11de7-fe61-5d86-8da0-e928f6bfb4c0", "text": "time lapses of a beautiful perfectly ocean sunset "} +{"id": "6003693", "video_name": "a53da358-8f5d-579a-8f85-d33a5907ace0", "text": "The sun is shining, an elephant is walking in the snow in the mountains "} +{"id": "0004013", "video_name": "018dcb69-79c2-592a-abc3-be741c8a177a", "text": "man seeing his watch while standing under a street light at night in the side of the road, 3d animation "} +{"id": "7000000", "video_name": "4dba18fe-f624-53ed-8c5d-566e26c5322d", "text": "The little cartoon girl jumps and hops between the rope and the hoop, smiling and rushing happily in her play. "} +{"id": "3005516", "video_name": "aea908d6-23a6-5551-b035-d754cb2b6e54", "text": "A ghost drifts in the forest, emitting fluorescence under the moonlight, and the forest is deep "} +{"id": "6003960", "video_name": "ea1039ca-98e4-5045-9727-d1e5ee4c2900", "text": "A tranquil scene of a person on a hilltop aligning with the universe. "} +{"id": "8002823", "video_name": "420184f6-2f2c-589e-a872-5ad8da3d7ca7", "text": "The couple, now stronger in their relationship, shares a peaceful moment together, their expressions reflecting happiness and mutual love. "} +{"id": "5001958", "video_name": "d1eadbfa-17c2-58f0-a635-8b24d49d1a06", "text": "Pink girl, long skirt, cherry blossom tree, cherry blossom falling "} +{"id": "1004274", "video_name": "4f1256a8-ea17-5a4e-a0c2-74c3e5f2523a", "text": "Very beautiful girl getting off the plane is in America "} +{"id": "4003101", "video_name": "5a0f084d-e35f-5e3f-9028-db09b217bec2", "text": "Archaeologists have found pots of honey in ancient Egyptian tombs that are over 3,000 years old and still perfectly edible. "} +{"id": "2003351", "video_name": "a6b6b717-5b63-5615-85cb-83c065bbd4f9", "text": "The sun shines brightly, and the little squirrel looks anxious with a frown, carrying its small basket. "} +{"id": "2004790", "video_name": "8492469b-8e93-5672-9021-24275be02851", "text": "war in a apocalipitic city, destroied, dark place "} +{"id": "0004478", "video_name": "09b29a61-50c9-5764-a0b8-451448756d0e", "text": "shadow assasin fighting a light orb "} +{"id": "7002170", "video_name": "9a5d8ec4-ea76-5c39-9b94-f305da7291c4", "text": "garden terrace that lands with winnie "} +{"id": "7002829", "video_name": "1070f15c-b225-5746-a3ef-8400958b542e", "text": "long tongue, human tongue moves quickly, many human tongues, high detail "} +{"id": "8002353", "video_name": "26640dc1-698d-5ebb-a48c-9177fcab5532", "text": "Animate a young girl named Emily, who is shown coming home from school. Use animated movements to illustrate her arrival at the cottage in 3d animation style "} +{"id": "2005582", "video_name": "d5e032ad-0bf4-5ab9-9dff-144d264eaea6", "text": "little red riding hood walks in a very scary forest, drawing style, black and white, "} +{"id": "6002657", "video_name": "66b3cf52-0b7c-5592-9ea7-93be887391c3", "text": "in which you can buy the wife of your choice. "} +{"id": "7004433", "video_name": "ff0d22e4-9a40-5052-a8fb-a74857d051c4", "text": "anime style video that has an small astronaut standing on a floating rock platform in center shot with other smaller scattered rocks floating around the base of the rock platform and staring into a multiple galaxies with vibrant colors "} +{"id": "2004553", "video_name": "5f98bd97-575c-5fd3-8af7-a470920ca2c6", "text": "an alien force pulling a cow into an alien ship, through a large light, pastures around, strong lighting from the alien ship "} +{"id": "7004677", "video_name": "6222789d-ab47-5ae4-b6fb-93b27b276e82", "text": "some swordmen are battling, fierce battle "} +{"id": "4004103", "video_name": "ca6f36bc-0859-5003-8ace-0d1eab05df93", "text": "Create a detailed and historically accurate image depicting Chatrapati Shivaji, the Maratha warrior king, in a regal pose. Show him wearing traditional Maratha attire, with his iconic sword, the Bhawani Talwar, by his side. Place him against a backdrop that symbolizes the forts and landscapes of the Maratha empire, reflecting the grandeur and valor associated with his reign. Ensure that the image captures the essence of his leadership and legacy "} +{"id": "2003017", "video_name": "63cf26f2-f802-5023-bf3a-be2d63baf33f", "text": "a fish swimming through space, 4k "} +{"id": "6002629", "video_name": "b0abd7a7-3623-58d6-8426-d7bb03dafe80", "text": "Nike sneakers fall from the sky, desert, sunset, people collect them, video lasts 10 seconds "} +{"id": "7003998", "video_name": "3960b53c-6f27-544f-8c6b-943cb9e32969", "text": "Photos of the Gardner Museum offering a reward. "} +{"id": "3005004", "video_name": "54070de7-ca41-582e-b42d-dc3f35098bcd", "text": "colorful jellyfishes, in deep dark space, anime, Japanese animation style, beautiful, highly detailed ar 3:4 "} +{"id": "0005127", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "wide shot, man eating potato chips, smiling "} +{"id": "6003687", "video_name": "1368d9e3-e0d0-5a56-9a4b-c642237d250c", "text": "space with many ships entering planet earth "} +{"id": "7003775", "video_name": "02817edb-e04a-55d7-a9bd-4803170c7e13", "text": "a large robot walks through a ruined city, camera from above the city "} +{"id": "8001977", "video_name": "8e51f062-427c-5773-845a-83c2f6c27670", "text": "a vintage film of a mountain falling over in an earthquake on a dark and barren moon "} +{"id": "3005301", "video_name": "837fc7d5-e9c5-5a9a-94a2-df0934e8aad1", "text": "image of a village with thatched huts and an old woman sitting on a bench, knitting "} +{"id": "6004100", "video_name": "4e39f469-0d1c-5d46-be67-2ba1302fb84e", "text": "movie \ufffc quality, live action , Harley, Quinn, talking to poison ivy, \ufffc "} +{"id": "2006074", "video_name": "01d207d3-c4f8-5670-bdf7-4a260e82727a", "text": "the Fukushima nuclear disaster in Japan in 2011 "} +{"id": "8003227", "video_name": "fb61f7fb-80d1-5087-9bc4-892bc1ae6ab3", "text": "image of a river with trees with a word hiden in it, word: RodriCraftMC "} +{"id": "7003296", "video_name": "c88c00e4-2aab-5b0c-9edb-461d0f45e2bc", "text": "a courtroom made out of money, 24 fps, movement 5, cinematic, photorealistic "} +{"id": "1003070", "video_name": "3877faae-462d-55d9-a5fd-99ec102ad327", "text": "a image green screen of a boy animated talking "} +{"id": "0006905", "video_name": "3521cbc2-b76f-5a44-a96b-39c625f4eaa7", "text": "a couple having the most romantic date above human understanding "} +{"id": "2005246", "video_name": "1ff4eb32-1de4-5c98-8088-54bdf45654fb", "text": "The video will be an indoor athletics track in which the central streets of the 60 will be seen until a view of the entire track is seen, the light must be a stadium light and the lights of the track will be on "} +{"id": "0004389", "video_name": "081f25e9-900f-5027-80b9-1f70c924809b", "text": "vintage footage of a werewolf, peter witkin style, hammer horror movie, the howling "} +{"id": "2005422", "video_name": "46ec7380-03e5-536c-8ef2-9aea1f0b6302", "text": "Putting frosting on a chocolate cake "} +{"id": "3004351", "video_name": "aeaa95a6-b7d8-5668-93af-d9ded63ae57b", "text": "king watching warriors ships coming Message: 1 Attachment "} +{"id": "3006375", "video_name": "5c9236c7-0b40-5e43-b631-65b6c1d30adf", "text": "Ghibli style animation with wind blowing in tress and a attractive charcter in ghibli style "} +{"id": "0005506", "video_name": "1bfa5a6b-53a5-5950-a849-9801bc141f45", "text": "A figure meditating in a peaceful setting. "} +{"id": "4002762", "video_name": "e91fdbac-015c-5f94-9f1f-f1f64dbf96d1", "text": "Children of Gaza are wrapped in shrouds on the sidewalks of the destroyed streets of Gaza City "} +{"id": "7002310", "video_name": "7a852286-1d04-5ea0-999c-4444a0a107d8", "text": "a image of dry land ina village cartoon image "} +{"id": "3006608", "video_name": "0fff3674-10ee-58aa-95d8-029fd0c03d39", "text": "slow motions of fortune cookie explode to show red confetti , day light at noon , sky "} +{"id": "1005905", "video_name": "6c9016f0-ce44-54eb-82f8-8954fb1d5733", "text": "A dancer dances inside the Oval Office of the White House "} +{"id": "4002332", "video_name": "62af64b9-2bad-5351-b0d5-d8ad36067a64", "text": "Currently, tourists are taken to the Church of St. Luke and Nina\u2019s mausoleum every day, and some of them, as well as from time to time local residents, say that they saw a little girl in a white dress from a bygone era next to the mausoleum. "} +{"id": "8001366", "video_name": "e255f1cb-b760-51e9-96f4-1667234102ac", "text": "a wide shot of screaming Lilith sitting on her throne, she rests her chin on her fist, shadows stand to her left and right side, in the artistic style of H.R. Giger "} +{"id": "4003583", "video_name": "27e7abab-c42a-5591-8f1e-c4e509ce79ba", "text": "many sheets of cinnabis, top view Message: CEPGAY (Font: MODERN) "} +{"id": "2007813", "video_name": "94220bc1-3265-5578-8a93-8038ea70b716", "text": "Among the mushrooms, it seems that you can find the door to dreamland, full of mysterious and magical colors. "} +{"id": "7002139", "video_name": "57c01749-21b7-5493-92f2-e19491cbb5ce", "text": "generate addiction as a physical ting "} +{"id": "3004325", "video_name": "ce9b1ac4-46dc-5863-bd86-a57564b8f89f", "text": "basketball player taking a long distance shot "} +{"id": "3006029", "video_name": "1c90a859-b1cf-59c1-87fa-311d834cda01", "text": "he camera pans over a rugged landscape, reminiscent of a jungle or desert terrain, with ancient ruins barely visible in the distance. A dramatic musical score sets the tone for adventure. "} +{"id": "3006516", "video_name": "c94d64b7-5cbf-5288-9841-66b93697fbb1", "text": "in a big tree two birds are feeding to there sons under that tree some boy are watching them and smiling with wind environment "} +{"id": "0005894", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "inside house of marigold flowers everwhere "} +{"id": "7002449", "video_name": "3e1bb508-b9e3-54b9-a2cf-db83207568ce", "text": "cinematic, long shot on How to Foster Global Awareness for kids, Cultural cuisine: Explore foods from around the world, Global games: Learn about different countries, Compassion crusaders: Support global causes "} +{"id": "7004262", "video_name": "f27bcc2e-a8a3-5423-b6b6-94a084d47101", "text": "roswell aliens drawing on the wall in a prehistoric cave, ultra realistic, wide angle "} +{"id": "3004559", "video_name": "a9211333-45b4-5b1f-b3d0-d4a2af84b929", "text": "image of a person in the mirror reflected "} +{"id": "2006271", "video_name": "071a93b2-a090-553e-874b-6bf7e2895d69", "text": "young cute lady with beautiful eyes and lips talking "} +{"id": "2007310", "video_name": "f1ec8c61-42ca-577d-aeaa-401678a2ffcf", "text": "big black potatoes and black with tomatoes "} +{"id": "2005535", "video_name": "e9a99280-53b2-5d26-8e37-3ba754263b29", "text": "an hybride between a shark and a scorpion "} +{"id": "0006775", "video_name": "32e0ed5a-0c5d-5226-8126-a20cb936788a", "text": "Design a beautiful rustic fireplace in the interior of a minimalist house. It should reflect a contemporary design that integrates clean lines, in which natural materials such as wood and stone and white walls predominate. It should be cozy and luxurious. The photograph was taken during a sunny day, some interior rooms are illuminated by a warm LED light, the photograph has a perspective view, 18mm, with focus on the fireplace, the photograph has a vibrant tone and warm colors, with a touch film. "} +{"id": "1005175", "video_name": "5f3e7e75-51b5-538b-b2c7-6e4ae4c26967", "text": "1970s woman with long blonde hair brushing her hair in the mirror of her apartment bathroom "} +{"id": "7002294", "video_name": "21647039-a007-5309-8960-21ba6b9691c7", "text": "The book was unlike any other "} +{"id": "2003651", "video_name": "3c2e1074-70b2-5d63-9733-b58217f46eb7", "text": "Within its blackened walls, he forged the One Ring, a malevolent artifact that bound the fates of all others to his own. lord of the rings animation dark horror style "} +{"id": "2003216", "video_name": "d9ca8a17-d048-5530-bdf6-d98f3d8cb3fe", "text": "Composition with a flat design feel Message: 1 Attachment "} +{"id": "3003782", "video_name": "132bbed9-f224-57d4-9e95-f352b1e29310", "text": "move the camera and hair moviments Message: 1 Attachment "} +{"id": "1003099", "video_name": "390d4ddd-5031-5e06-b0cc-13a266b4a1df", "text": "A owl man is walking on a war "} +{"id": "7003175", "video_name": "cb91b3c4-b4a7-51b9-af2f-1a87ad0364ed", "text": "the people in the attached image dancing "} +{"id": "4002371", "video_name": "44e4ee1a-2a79-5306-bc83-32e6d102569e", "text": "Animate the forest animals dancing with joy. "} +{"id": "7002460", "video_name": "b5ba8e78-3a4d-5e56-b7ee-079122ee28dd", "text": "The other animals marveled the Rabbit speed "} +{"id": "8003369", "video_name": "dbc9fc1f-87b5-55c9-9d94-1e94a31cbbc8", "text": "CJ with Big smoke talks to Walter White and Jesse "} +{"id": "2005962", "video_name": "21841e4b-d834-54cf-b1ce-d69e4c9bfa93", "text": "beer floating into a nice beer glass, top down view, very bright, zoom out "} +{"id": "0005227", "video_name": "16f29389-2b72-5778-8a8d-d9dc0bea19f9", "text": "ar 16:9 animated villagers in dark forest "} +{"id": "1006778", "video_name": "7c1ec4f7-d216-560a-8c6f-fbe4e783e521", "text": "An old man coming down the stairs in the dark "} +{"id": "5001601", "video_name": "cf0b3bf8-4c47-52f0-802d-1cdf7e0c3c60", "text": "ghibli studio animation of a vibrant marketplace filled with unusual and enchanted goods, from talking vegetables to levitating crafts. "} +{"id": "1005805", "video_name": "6ac6fdef-343f-523d-ba8f-7d801a8cca08", "text": "hyper realistic cyber city alley way, blue neon lights robot falling to the floor smoke coming from robot "} +{"id": "3006473", "video_name": "46d054b7-39ae-5dc7-a378-5092b7c8648f", "text": "man walking on the small moon in the open space "} +{"id": "7004945", "video_name": "9385ad68-ff55-5dc5-b689-c917b03dcc8b", "text": "sketchy man in court highly detailed, 4k animation "} +{"id": "3004903", "video_name": "678e2b8b-3a64-5ee5-8c12-34eb5ae11b05", "text": "a model kitchen showing a white counter and table,white and bright floor,minimalist snow outside view, in the style of metallic surfaces,minimalist,superflat, fujifilm natura 1600, fine line details, alexandre calame, gray, metallic accents,high angle view "} +{"id": "1006754", "video_name": "7ba2ce62-8999-5a6b-b77f-e852222ac72d", "text": "A boy in your and going to forest "} +{"id": "6002945", "video_name": "42ae9d0a-1fd5-513a-97aa-85ca85aae3ed", "text": "Warships, submarines, airships, doomsday war, we intend "} +{"id": "2007744", "video_name": "19d58c2f-a697-5009-805a-bbb98e623d51", "text": "A sign that says AIAF glitches extensively, vhs glitches, pixelsort"} +{"id": "3006985", "video_name": "e4333bb2-7b21-5e11-b252-f7f29eb29c58", "text": "lighthouse on top of a 4x4 "} +{"id": "7002386", "video_name": "7e63aa54-7b11-57bb-93d3-94cb4774b980", "text": "A girl playing in the light and shadow "} +{"id": "7002923", "video_name": "9414c5e2-0d21-5c99-adcb-bd9cdf1a4310", "text": "geisha walking in japanese garden. waterfall in the background. "} +{"id": "1004404", "video_name": "5177356a-cf8c-5cf1-a71c-e44c053d2058", "text": "Earth explodes and disappears, fantastic 3D animation. "} +{"id": "2005603", "video_name": "5774246a-ee8b-51a0-9308-b249b6a5bee8", "text": "Los Angeles City destroying in missile attack close up shot from roads at night "} +{"id": "3004174", "video_name": "78d873a4-8ab7-5332-b9cb-ce445df3dd6d", "text": "An eagle flies in the sky. Below is a grassland "} +{"id": "2003916", "video_name": "97204d8e-9bcf-5f48-9174-9359975176a3", "text": "make the bot to be replying incoming text messages Message: 1 Attachment "} +{"id": "2004980", "video_name": "841ad068-f9d4-5823-9db0-dd78041fdf6a", "text": "cartoon style, An ancient beauty gazes at the pristine moonlight within the palace "} +{"id": "6002972", "video_name": "003abe48-6c3f-5643-b60a-ce5ea999438d", "text": "fallout 3 radioactive thunderstorm at midnight "} +{"id": "5001972", "video_name": "92096df2-062c-59b9-a162-40f107eba6ee", "text": "help me to draw bacterial biofilm "} +{"id": "3006544", "video_name": "4343371c-1d8e-5437-a37f-da24416492cd", "text": "holographic options of games in a VR gaming World, 16mm lens , 24 fps "} +{"id": "4003500", "video_name": "a77a660e-1919-536b-ab16-b51db704108c", "text": "A corgi puppy playing with a kid in the grass. "} +{"id": "6003685", "video_name": "d727f3d3-83eb-53dd-9bba-b8880481c813", "text": "Zara setting up a clever Giggleberry trap, outsmarting the cunning fox who falls for her plan, looking surprised. "} +{"id": "1005528", "video_name": "65bee741-ff0c-5aa8-a81b-06e5212fc673", "text": "girl in frame rotates 360 degrees, 8k, hyper detailed "} +{"id": "1003148", "video_name": "3a088701-caa2-5257-8b11-bd5ab57a95de", "text": "Little runaway, the worlds never easy "} +{"id": "3004801", "video_name": "b8c78783-d763-5ca8-98b1-e5df148ab104", "text": "A picture of Tom and Jerry standing in front of a dark cave, looking at it with curiosity. The entrance is surrounded by vines and moss, and there\u2019s a faint light coming from inside. "} +{"id": "0006212", "video_name": "287c75fa-4801-5761-9263-ea2f488b7b82", "text": "dua lipa running from natalie portman on desert "} +{"id": "4004869", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "The man crying in super realistic world looks like cyberpunk 3 "} +{"id": "3004143", "video_name": "3bd26f03-5443-5a70-8950-b5c53716a85f", "text": "kevin spacey proud holding an oscar award "} +{"id": "2004425", "video_name": "2bbcc8c6-05af-5602-88c6-ab2b4342ec1b", "text": "prompt: the alien converts from a realistic tree to its natural form. it stands 10 foot tall with green scales and a square head "} +{"id": "3005625", "video_name": "b575b005-87ec-5b6a-aa53-e026f9d94b73", "text": "The Lobby, lanterns raining down and crashing "} +{"id": "3006889", "video_name": "6b48dfe1-fa4e-5aaa-abc3-e830c82dc863", "text": "a Persian cat cleaning its paws, in middle of busy road "} +{"id": "0005791", "video_name": "214f21d4-e38c-5688-8de2-55b81a60a974", "text": "guy asking something to another guy in cinema "} +{"id": "6004642", "video_name": "185ad5dc-196b-56a1-a0e2-d304c90d0452", "text": "Neon lights dancing cyberpunk . from botom to top night "} +{"id": "3004628", "video_name": "c50b34d1-51f9-5b86-af0e-f7f60ee560df", "text": "a hot blonde woman in a skin coloured bikini "} +{"id": "4004192", "video_name": "35411341-0552-5d08-8863-5d5cb1f3a8c2", "text": "TV room style like horror movie, blood on walls, white scary dark lightning, at night, crime scene, stuff brocked on the floor "} +{"id": "8003060", "video_name": "3d6af802-096b-5304-99be-33adce2f0a20", "text": "puppy dog, costume, thor, hammer of thor in hand, apocalyptic city, 9:16 "} +{"id": "8002262", "video_name": "992f8338-3b1f-5187-bade-1138202e12f0", "text": "A Japanese beauty holding a rabbit "} +{"id": "6002174", "video_name": "0bad4e33-d93e-5d4c-8ba3-1574dec9c7de", "text": "A team of people welcome the viewer "} +{"id": "8002137", "video_name": "a20cc01d-543d-5d77-bba2-07da0ada6131", "text": "white screen, tire tracks appear in bottom left corner, and proceed to top right corner "} +{"id": "0004603", "video_name": "0bd14623-f63a-58c3-915b-c2a599bb198b", "text": "Cybermen, dancing, larger movements, camera zoomed in from far to near, 3:4, 4k "} +{"id": "0006135", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "a woman walking in the Edge of a precipicle. "} +{"id": "8001365", "video_name": "8103e79c-479a-54a5-aba2-1681627d1845", "text": "These crops have come a long way, nourished by hard work and a little rain. "} +{"id": "0003231", "video_name": "39b6a178-b3a4-5789-be15-00bd63169b83", "text": "Zhanna Aguzarova sits on a twine "} +{"id": "1005007", "video_name": "5ca0cac6-4940-52ca-b626-af10bbf652a6", "text": "a boy standing in front of a beautiful street with a bunch of flowers on his hand. He slowly starts moving on the street and then suddenly stops as he sees a beautiful girl , she is very beautiful like a princess from haven (camera rotates around her) and then both of them comes closer to each other and boy gives the flower to her and then both of them hugs each other and then camera moves upwards. "} +{"id": "2007969", "video_name": "a7e54ba7-01fe-5d86-a21d-7d6ee33b0e1d", "text": "girl thinking about story of moon "} +{"id": "1004473", "video_name": "52d4dc21-baeb-58d7-a3dd-fc2ee57aff63", "text": "a skater with changing faces drives through a Shopping Mall and flies away like a bird in the end "} +{"id": "6004425", "video_name": "e4a6e68b-8604-56fc-a205-2febe0b10fd0", "text": "Chinese costume animation task, a beautiful woman dressed in turquoise "} +{"id": "0004732", "video_name": "0e38a7d0-bacc-5e60-bd58-826ff15c6db2", "text": "Trace of red liquid on the ground. Fleeting appearance of a ghostly figure. "} +{"id": "7004719", "video_name": "63393599-ffb0-5cbd-b81e-1b13a562fa57", "text": "Capture the old man driving his weathered tractor across the fields, a serene look on his face. "} +{"id": "0004458", "video_name": "095e1086-a303-5482-b25c-3e35c88ca19c", "text": "a ultra detailed and realistic gta a super can drifting on highway. "} +{"id": "1006223", "video_name": "7228296b-a18b-5329-b1be-56301c9baa6f", "text": "chess pawns Message: PION (Font: MODERN) "} +{"id": "6004730", "video_name": "1b88fb8b-32b0-5d6b-a7da-4f7dcae810db", "text": "In the same forest there lived a cunning and intelligent wolf named Orion "} +{"id": "1005901", "video_name": "6c7df814-af67-59ad-a4af-516d13c5925f", "text": "The scientists grappled with the ethical implications "} +{"id": "2005732", "video_name": "7dc90212-01d9-508e-9591-3cb3a8093236", "text": "A dragon, dancing in the museum,camera zoom out "} +{"id": "5001631", "video_name": "7fce76bf-0e1c-5e1b-8543-2d8cc351ad80", "text": "a man working of samples in a bio safety cabinet "} +{"id": "3005259", "video_name": "e171820e-2de9-59a6-86c9-7f89cf9aa452", "text": "mecedonian city gate with doors widely opened, souls crying loud for help, saviours and rescue team In cars, ambulance, army vehicles, jets fighters are going to the city to save them , hyper realistic image , people crying "} +{"id": "2003549", "video_name": "8b10f205-3ab0-51fa-9ce9-2a49475ce6a3", "text": "The video shows a man working in a workshop, He is wearing protective gear and following safety precautions. He looks focused and skilled, but also enjoys his work. video shows closer angle of the man with thoughtful expression on his face as if he has passed from working to consider something important. \ufffc "} +{"id": "0005759", "video_name": "20b84fe2-73d6-57d0-bb13-024b1288698a", "text": "A living book flies around the library like a bird flapping its pages "} +{"id": "2006245", "video_name": "94c9d948-a894-5ac5-ad42-ee96fd44c4c5", "text": "Beautiful woman with the best body style. High brand fashion. Tangerine "} +{"id": "1006821", "video_name": "7cc81d40-1632-5b47-9543-723576e103ff", "text": "a cat run after another cat on the floor "} +{"id": "1004190", "video_name": "4d7b6736-c7e9-51d5-b6ff-a77a4dceca6e", "text": "Eagle flying high in the sky, visually stunning "} +{"id": "2004245", "video_name": "378b514e-6e33-5d91-bcb8-c5d478bcdf31", "text": "Kitchen Woman in the kitchen preparing dinner "} +{"id": "6003343", "video_name": "ba5144e4-4cf9-5214-9240-065bbf7df965", "text": "windy sea and lighthouse explodin in slow motion "} +{"id": "4003853", "video_name": "a7a6812b-0fc3-5885-8d09-dedd5262d49f", "text": "the sun exploding in the eyes of God "} +{"id": "7002578", "video_name": "e88d6782-dd03-5ff2-a2dd-b916602a046d", "text": "Night sky, black sky, dark blue, slightly purple, bright star in the center, Disney style "} +{"id": "6002304", "video_name": "965dc74d-1859-52c7-a7e0-0f1360dd1d3a", "text": "sky iluminated with only stars, a lot of stars. Ultra HD, Disney style "} +{"id": "0003387", "video_name": "3ca819e3-aefc-5958-ba06-a45cda2e7658", "text": "The motorcycle is moving forward. The woman raises her hand and says to drive forward. The man says OK and makes an OK gesture. Message: 1 Attachment "} +{"id": "2006230", "video_name": "770745ca-8202-5f4b-8310-7345efe91ed6", "text": "One sunny morning, as animalsgathered near the clear, glistening pond, they saw a group of fierce wolves lurking nearby. "} +{"id": "6002759", "video_name": "81102e0a-6029-51f8-afd7-8818b9258434", "text": "A little boy Alex, full dress in t shirts, front frame, back ground blue sea, walking on send, sharp face, big eyes, cinamatic. "} +{"id": "3004615", "video_name": "f01c3b76-55f0-5fd4-a7cf-68a367d62c12", "text": "Introducing the new Sport Elegance Watch from LE TEMPS OF SWITZERLAND, a fusion of luxury and sportiness that will make you shine. This exquisite timepiece is crafted with the finest materials and features a stunning design that will turn heads everywhere you go Message: 1 Attachment "} +{"id": "1005777", "video_name": "6a4682fe-29d1-529c-a2df-2ac911564345", "text": "zeuz fighting poseidon on mount olympus while other olypians watch in the backround. "} +{"id": "5001247", "video_name": "ba0c7c50-64e2-5e79-8831-2c62bcf57d0d", "text": "silhouette of a female knight overlooking a battlefield, medieval, fire in the distance, 4k, cinematic "} +{"id": "6004245", "video_name": "e8ed7587-42a2-58b7-b33a-44a900621009", "text": "green eyes, slightly big head compared to his body, cute animation character, blonde, red gardener outfit, hd, 4k, "} +{"id": "3005831", "video_name": "613382f5-b521-59a1-99fd-3bb4313a3ed4", "text": "kitto playing around in the new york city "} +{"id": "4004678", "video_name": "d66a8d06-c4cd-5504-9511-474b24bd07c3", "text": "A person in a park doing like with their hand and pointing down "} +{"id": "4003673", "video_name": "90681f99-c856-540b-b74e-d8810f098be6", "text": "a big lion looking at the camera "} +{"id": "8003308", "video_name": "5fed31ae-4e1e-5405-94eb-f3ecbaa29ea8", "text": "a cute cartoon tomato walk on garden "} +{"id": "1004532", "video_name": "5438c946-03ac-5177-8637-a583acfe5b6d", "text": "And Jehovah God formed man of the dust of the ground, and breathed into his nostrils the breath of life; and man became a living soul. Message: 1 Attachment "} +{"id": "6002297", "video_name": "a2786a0e-842b-545a-8fc8-2ea784bb9174", "text": "a Robot who is the AI Expert "} +{"id": "4004407", "video_name": "2936503d-5a67-5f5d-b9ff-82f1773cdc53", "text": "react with wind , merging face in water , 32k resolution , sharpness , fast "} +{"id": "0006550", "video_name": "2e7e2838-0a64-506e-8a7a-56feb53a5b49", "text": "a female foot stepping on a 50 dollar bill "} +{"id": "8003719", "video_name": "76e77715-f6e0-5776-a53b-edb4845e324d", "text": "a man is giving the lecture about AI "} +{"id": "0006647", "video_name": "304365a6-c590-559e-bb2b-c1a075d15baa", "text": "Imran Khan attacking General Asim Munir, Chief of Pakistan Army. Imran Khan wearing white pakistani Shalwar Kameez dress. Asim Munir falling after a punch from Imran Khan. "} +{"id": "0006987", "video_name": "364d556b-b220-5658-a22a-d0b2860fba4a", "text": "fans in a football stadium Message: antonio (Font: MODERN) "} +{"id": "4004720", "video_name": "88c37dee-34b6-5044-9867-a9d737fc99c3", "text": "Digital art illustration image indian women guiding students about sanatana dharma "} +{"id": "1003983", "video_name": "499431e3-ff3e-5b02-9966-3a46e24c2e0e", "text": "a wise old man arriving in a village accompanied by an eagle "} +{"id": "2004929", "video_name": "7ce91de2-0fe4-5323-bc92-3b3499b4e500", "text": "a person got their eyes closed then the scene move into the universers with stars, galaxy and planets "} +{"id": "4004096", "video_name": "bac51dba-704b-5b9e-8dbb-7778b31e9e2b", "text": "Kratos the god of war playing play station "} +{"id": "3005103", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "Generate a video of an environment of the correlation between humans and AI "} +{"id": "2007715", "video_name": "f9cfc6ee-d289-55ed-840f-770d8759255c", "text": "Little Red Riding Hood sits down next to her grandmother and starts talking to her. "} +{"id": "0005868", "video_name": "2294beae-12df-581a-8dba-79d7d379d5f8", "text": "a young man hanging upside down from a stone, hanging upside down "} +{"id": "3003487", "video_name": "d8afbee4-229f-5787-9d92-4f988f541ff0", "text": "new york skyline at night, dark clouds moving, lightning striking empire state building "} +{"id": "0003093", "video_name": "36e4b56e-77e8-5518-9764-37f78671227c", "text": "an athletic man climbing mount everest, with camera tilting from bottom to top "} +{"id": "2005662", "video_name": "be9efdcb-d67e-5200-8aa7-05210f76d1be", "text": "young princess with a small dragon, medieval, cold colors, cinematography, reality "} +{"id": "7003021", "video_name": "f6ff9d77-bae3-5a77-9da7-1558a82cc91e", "text": "man writting letter for his love faster "} +{"id": "0003544", "video_name": "3f40dba2-abda-5bfd-9b2d-5f23cda15e64", "text": "robot trades stocks on the stock exchange "} +{"id": "3003803", "video_name": "78b3ecef-f33a-5cde-9fc2-79fa4eacb288", "text": "A man is standing on a lake, a cover is floating on the lake, waves are roaring on the lake "} +{"id": "6003450", "video_name": "35dbbc3c-9d8d-5f38-b22a-f8c4b9cd78f4", "text": "He stumbles upon a small creature struggling and helps it. "} +{"id": "2007158", "video_name": "186d0142-1be5-5a7d-8292-135eca7c6f69", "text": "a japanese woman cooking food in traditional hut in a village "} +{"id": "1004440", "video_name": "521ef40a-12f4-5f10-b1c1-c2bc25124037", "text": "sketchbook with drawings coming to life, introducing Zamina, a mid aged mystic healer creating a special drink "} +{"id": "8002949", "video_name": "2f23ac0e-4c7b-5091-b47a-b8fdadea5d5d", "text": "close up shot of a black ground with a gold ring with a horse chess piece in the middle and the word \u201cTRWMAGIC\u201d inside as well "} +{"id": "2004000", "video_name": "98cd98a7-1cb9-53c3-a64f-c0d9d4f591d3", "text": "a tinted blue glass with a reflection of a girl and dog biting a newspaper staring 8sec 30fps "} +{"id": "0006736", "video_name": "32078ab0-30ea-5e1a-9d02-77cd87c1aaa5", "text": "an old man eats spagetti and drinks wine "} +{"id": "3005569", "video_name": "4ede3f5a-048b-577a-941c-6c3c055ee480", "text": "a muscle guy with a black tie "} +{"id": "3004432", "video_name": "0d30adcf-211b-5b6b-af04-b027d780f42b", "text": "1960s Record playing on top of a lighthouse. "} +{"id": "6002472", "video_name": "475da32a-d114-5fcf-a8c9-5a18c8ad701b", "text": "Drone shot of a crowded sunny beach "} +{"id": "3005462", "video_name": "e1687638-1d77-5e26-ab9c-0e696d14952d", "text": "a girl with black hair holding her smartphone sitting on a sofa in a night club . Cinematic lighting. "} +{"id": "6002568", "video_name": "d395d3a3-7658-50af-a162-5d4f280ffc2f", "text": "Some views towards the stars make a magical theme "} +{"id": "0003323", "video_name": "3ba52ffa-a5e4-514c-bc13-b50e8e5bfa2c", "text": "People performing rituals by drawing pentagrams on the ground "} +{"id": "7004560", "video_name": "f0f7d49a-5fd0-506a-ad25-447c79f98522", "text": "Mudslides. Rocks and water coming down the mountain "} +{"id": "8001611", "video_name": "73fea5e9-45e3-5547-a1d5-361fd7f0d417", "text": "show elon musk trinking his first huge roket like coffe cup "} +{"id": "8001571", "video_name": "09e88180-1386-5a45-83f2-66022774ed13", "text": "map of india with mouryan empyar "} +{"id": "2007252", "video_name": "2081d8e0-34d7-5365-aca5-f2e74b773a36", "text": "a pretty streammer woman from the computer Message: Pablo Metido (Font: MODERN) "} +{"id": "2004121", "video_name": "03cf6605-0c03-5e7d-a4fa-c1236365c1d1", "text": "zombies gather in an old abandoned building "} +{"id": "1006910", "video_name": "7e60b416-5c9b-5892-bcd8-108b01f94cff", "text": "Nathan researching destinations on their computer "} +{"id": "1003346", "video_name": "3d9e7093-dff3-5a17-83f6-d9396a01de84", "text": "Crreate a tech video related with computers and with the letters in yellow and doing a zoom out . The Word ADV must appear "} +{"id": "8003085", "video_name": "3c80b3bb-bfef-501c-8653-f8536fd74eb5", "text": "gigantic cosmic tutrtle flying in open space "} +{"id": "3005159", "video_name": "627e29e1-11c2-5196-ab37-8087d16c4115", "text": "The wind blew his hair, and the characters blinked. "} +{"id": "6004968", "video_name": "a5cd22d2-d317-5daa-8347-97ba8b5e391e", "text": "a similar personage who song and moves "} +{"id": "8002274", "video_name": "eb1bc24b-c249-589f-97cd-8ebf631f81f0", "text": "video of Prince Hisahito of Hizen, looking determined "} +{"id": "1006421", "video_name": "758878c8-84ab-57fc-8325-a2859cd84db8", "text": "guiterplayer in the rain, superrealistic, on the beach "} +{"id": "1003069", "video_name": "3871fb69-bfbc-52c1-bf71-972f106ecb38", "text": "a flying fish with another bird on the roof "} +{"id": "1004953", "video_name": "5b92d45f-f87a-5c86-932d-d444e1db9274", "text": "Halloween mask making workshop. For brave girls and boys (or something that makes them understand that these are scary things) "} +{"id": "4002040", "video_name": "c4903a43-0658-579b-b75d-f598d2d3356e", "text": "Asian dragon coming out of smoke. "} +{"id": "1006939", "video_name": "7ef51c39-95ac-5d2b-82f4-ac4bd6836683", "text": "Girl changes her makeup with a golden dice "} +{"id": "0006982", "video_name": "3640eab9-10ff-590a-ab22-d1fbc509b4ea", "text": "Mike Tyson and Mike Wazowski fight on the roof of a skyscraper "} +{"id": "8002848", "video_name": "a5e8503b-de59-5acc-ad0c-370512aec2dd", "text": "a factory full of mink fur coats, camera zoom "} +{"id": "1005749", "video_name": "69c94375-1b12-5787-a6f7-deadcd97fb13", "text": "a Northern California beach in the early 2000\u2019s, full of rolling hills and yellow flowers, a man in a utility jacket walking in the distance with his hands in his pockets, sad with his head down. sunset, 2005, film photograph, cinematic "} +{"id": "4002103", "video_name": "dc316b55-69a7-5145-9585-55e078d66ff6", "text": "a boy eating the biggest hamburger in the world. Camera pans left to find people cheering the boy. "} +{"id": "2005431", "video_name": "d9a636cd-8c5c-5f5a-95fb-068b893de2eb", "text": "cristiano ronaldo vs messi, the battle of legends "} +{"id": "3005485", "video_name": "a1ad6fff-16a9-5046-a115-ceb37d0bc27c", "text": "young woman sitting and chatting in the modern flat "} +{"id": "6002690", "video_name": "26700d00-9870-5d85-97d4-c4c39931f0e9", "text": "photo realistic clockwise pan of a snowy Scottish Highlands, mountains scene with trees covered in fairy lights. Ar 16:9 "} +{"id": "1005750", "video_name": "69ca5bc6-8597-5519-8f06-684fa3d74db4", "text": "tusnami epic scene big wave in jungle people frightening "} +{"id": "4004741", "video_name": "7a586d62-0991-5bdd-843e-15530cfc6ecd", "text": "Vintage Footage of an Angel and a Knight holding hands "} +{"id": "4002438", "video_name": "306ae1b2-c1f4-501b-a771-37cbb3e6c461", "text": "painter painting lucid stroks on a canvas "} +{"id": "1004492", "video_name": "53400fb1-d294-5e0b-a7f0-ddf2e3612d75", "text": "Husband is waiting for an answer from his wife. HD. 8k dark.night . Ultra Realistic. Awesome Details "} +{"id": "0003875", "video_name": "450581b9-e218-58f2-978a-7d48250f6d22", "text": "futuristic racer standing on a flying board as it flies past the camera, neon trails, ultra hd, ultra surrealism, futuristic racing suit and face mask. "} +{"id": "6002482", "video_name": "2cc1824c-91d4-56eb-8720-307e4da721d4", "text": "naruto stand on hokage stone faces "} +{"id": "8002795", "video_name": "be85fbb0-0318-58d0-b9e8-5c3acc2fdf94", "text": "future, everything looks film Tron, flying cars, neon clothes, throwing disks "} +{"id": "1006672", "video_name": "7a2c4f3d-b275-5a50-8068-8ede5eef3ae7", "text": "Ema logam the king of emalogam "} +{"id": "1004780", "video_name": "5864112e-ad61-5ad1-85c7-d3b13e688134", "text": "The large moon in the night sky, positioned at the center of the frame, against a clear and pristine night sky "} +{"id": "0003850", "video_name": "4495aed5-afb6-59a8-bc99-e2adef7064c8", "text": "a girl explaining to other kids with hand gesture ,in house located in forest in 3d rendering dark background with latern in the house "} +{"id": "4002188", "video_name": "2511ef7a-2b3f-555f-845e-e09a6420d721", "text": "a cat runs towards me on the floor "} +{"id": "6004690", "video_name": "13724112-0802-58c0-992c-423ee341d5de", "text": "A rabbit happy cartoon image, Pixar Style, outer space, vanishing point, super highway, high speed, digital render, digital painting, beeple, noah bradley, cyril roland, ross tran, trending on artstation "} +{"id": "7004069", "video_name": "e3011ccf-a4df-5f98-bfba-65543801579e", "text": "animate this image and make people walking by and some people in the store Message: 1 Attachment "} +{"id": "1004979", "video_name": "5c10f4d7-98e2-5e3f-bdc0-b8d8543ba616", "text": "two boys sitting uder a tree talking about village they lived in "} +{"id": "0006543", "video_name": "2e7292c2-ab1a-5a71-8368-3e878c73769d", "text": "DJ dancing in front of turn tables with strobing lights "} +{"id": "4004695", "video_name": "18ff1568-9063-51fd-b934-2123898689b7", "text": "The monkeys and bears that accompanied Rama were perplexed, not knowing how to proceed. "} +{"id": "2005077", "video_name": "3fb6450b-6df5-5d1d-8e83-c318882485c0", "text": "cave with petroglyphs, campfire burning ion foreground "} +{"id": "4003243", "video_name": "8e5eb4d1-6288-5e2a-b36c-832c1b5e3ae3", "text": "\u201cCreate a fashion piece paying homage to Palestinian heritage. Explore intricate embroidery, symbolizing resilience and identity. Use a combination of traditional Palestinian motifs and modern design elements.\u201d "} +{"id": "1004055", "video_name": "4b2f2d25-d8ee-5af1-9f2c-70ed4c7f227c", "text": "robot android woman and child driving car "} +{"id": "2006908", "video_name": "f6940bf6-966a-5acc-9fb8-607804b184bc", "text": "suede trainers being cleaned with a brush inside a big room with camera panning down "} +{"id": "4004646", "video_name": "c33663a3-8b8a-5ca0-9fd8-e8e9900dbf8a", "text": "luxury car driving from beginning to end of realistic scene over 20 seconds "} +{"id": "7004015", "video_name": "a46d5a26-17a8-5885-9aba-151cfc720ffe", "text": "spider man is playing music Message: 1 Attachment "} +{"id": "1005392", "video_name": "6322aab4-7b3b-5199-9fe5-aae21bdb9f62", "text": "The Statue of Liberty picks her nose "} +{"id": "5001876", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "a woman feels tired after a whole day work, she sits down on the chair and then fulls in sleep "} +{"id": "3005661", "video_name": "ad8381a8-854c-58f7-87fb-9c059abc8892", "text": "medical and biological experiments of the Japanese army "} +{"id": "2004230", "video_name": "5ea65a2d-369f-56ca-ab6e-fa12d755456f", "text": "Two women staring at each other in shock, realizing that they look exactly alike. Their features, facial shapes, and hairstyles are almost identical, like reflections in a mirror. Their eyes reveal astonishment and confusion, unsure how to explain this bizarre fact. The surroundings are a quiet and empty place, with no other people or objects, only the two of them locked in this mysterious moment of mutual gaze. "} +{"id": "7004315", "video_name": "53e61261-98ea-5207-ad4e-f6a844314403", "text": "cosy living room with warm fire and full of flowers in the room "} +{"id": "1005747", "video_name": "69c3a1a0-b277-5bf0-83bf-8be1dfc54a87", "text": "woman with professional rock climbing gear scaling a mountainside "} +{"id": "4003096", "video_name": "2e77ea28-9654-5d10-8459-e46e1c8362b7", "text": "a product shot of a smartphone in a desk, editorial style, natural light "} +{"id": "1006827", "video_name": "7ce312fa-7b39-5e7c-83db-3142d66644b0", "text": "Appealing and vivid color image of India. "} +{"id": "4004051", "video_name": "4bce6e8e-798f-58e1-b823-c2ae7951105c", "text": "fight between 15 feet tall man and 5 foot 3 inch tall man using club with bright sunlight "} +{"id": "2007233", "video_name": "923d7d6d-9e88-5be6-8152-7703be300b21", "text": "a painting of a of a boy sitting on a mushroom, in the style of nightmarish creatures mixed with the style of cute animation, rough painting playful character design, ben wooten, alex garant, jessie arms botke, industrial horror, popsurrealism, lowbrow "} +{"id": "4004948", "video_name": "9494f288-583e-5748-9270-9c5ee7596ea4", "text": "Short films remain a vital and dynamic part of the cinematic landscape, offering "} +{"id": "7003342", "video_name": "65e445c7-d018-5851-a464-3ec9850e312b", "text": "kids at disneyland, all playing with their ipads "} +{"id": "1005880", "video_name": "6c32940a-26a7-554f-8b51-90087dbd4afa", "text": "a dystopian spaceship flying in space towards a green planet "} +{"id": "1006438", "video_name": "75df5fc8-9971-54cf-b5ad-7bad031daedf", "text": "a squirel swiming in a bathtub, cartoon "} +{"id": "2004211", "video_name": "9d530f18-25d0-5f5b-9d11-a6dd203fab70", "text": "The Darkness bright yellow evil eyes in the deep "} +{"id": "7004970", "video_name": "c9619d12-cd6d-573d-84a3-c2a2a082faba", "text": "The Frist Flame in the abyss of Man "} +{"id": "0004339", "video_name": "076117fa-cd53-5235-a6da-67da870f1ad6", "text": "high quality in 8K resolution video on future of AI "} +{"id": "5001627", "video_name": "2a2a4438-90a6-591a-84e8-67c44abfcf62", "text": "Russia ran out of vodka when celebrating the end of World War "} +{"id": "2004993", "video_name": "7d6047c1-dc8b-570f-9cbe-8eb39e1e28cf", "text": "2 individuals back 2 back with a 3d background for a tv series promo "} +{"id": "6003359", "video_name": "b125a660-49af-5e50-8e30-0a641e09cec0", "text": "anime running in a field of grass with camera facing on side. show side ways moment of camera "} +{"id": "0006199", "video_name": "281c29f1-c5bb-53f4-ae99-a77560ca9a1d", "text": "Donald Trump stands on a cloud, wearing a white robe and golden crown, looking out at the view of heaven, surrounded by clouds and angels, 8k, high detailed, sharp focus, intricate, surreal, ethereal, portrait lens, by Rene Magritte "} +{"id": "2004528", "video_name": "d14ed0fb-9ebd-5c15-9c6b-231733fe239d", "text": "I dreamed of a blue elephant He flew with his ears flapping I dreamed of a blue elephant He ate clover and laughed "} +{"id": "2004927", "video_name": "efca1361-0bbf-5d3e-9add-9f585df5801f", "text": "a video of bitcoin market pumping "} +{"id": "1003952", "video_name": "48f441fa-92a4-5173-98cb-06db494e75d0", "text": "a photo of tiger standing close to the swiming pool, fancy house in white tones on the backgroud and mountains behind the "} +{"id": "0004100", "video_name": "03376759-450b-52a4-a9fb-798f24b284f5", "text": "realistic planete with crepe shape , in the space "} +{"id": "5001829", "video_name": "d1398953-04e2-54f3-a6ae-d7115c203051", "text": "an embrodiery needle magically sewing a pattern onto a piece of cloth "} +{"id": "1003477", "video_name": "4074fc00-c543-5c2f-87ac-0863038c5649", "text": "I would like you to include the title THE LEON PROJECT on this same image "} +{"id": "2005560", "video_name": "fed5f289-90d8-5ee3-b19e-733639129b3e", "text": "a man walking by a cherry blossem tree at sunset "} +{"id": "7003029", "video_name": "5cecf676-468f-58df-bb92-339b0bc11c9a", "text": "apolo 11 a mission that captivated the world and forever changed our understanding of what is possible, cinematic, \u2013\u2013 ar 16:9 \u2013\u2013 "} +{"id": "0006702", "video_name": "31637b69-a162-5bb0-8d45-202ce9df5bd2", "text": "sky opening, raining with circus, colorful, Poster "} +{"id": "6004817", "video_name": "a6d6ccae-6665-5ecb-8b36-89303d5a4025", "text": "green realistic sadhu Message: \u092e\u094b\u0915\u094d\u0937 (Font: MODERN) "} +{"id": "1005013", "video_name": "5cbee2ba-7f59-517e-a308-40fa2dbef996", "text": "Old woman using a smartphone, robot helping the elderly, bright atmosphere, American advertising style in 1990 "} +{"id": "8001361", "video_name": "e9fc66cb-678e-50f9-8dbf-f34788ee7fc4", "text": "The handmade goods became popular, the garden flourished, and the cottage turned into a hub of warmth and community. "} +{"id": "2005023", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "a cali girl, stretching, smiling face "} +{"id": "4002310", "video_name": "88ed614b-112c-594a-a5d7-4476eedd5e80", "text": "elven archer firing bow at flying dragon anime style "} +{"id": "2004724", "video_name": "ff247368-1758-536c-b1a0-65f403cdaf10", "text": "a scary river in a haunted forest with a large crow "} +{"id": "5001807", "video_name": "126c9059-2149-5219-aabd-38986af7ddf5", "text": "In a moment of reckoning, Meera decided to follow her heart this time, and Raj, not wanting to let her go again, vowed to stand by her side. They overcame the obstacles, rekindling their love and creating a beautiful love story filled with emotional depth, resilience, and the realization that true love can conquer even the most significant challenges. "} +{"id": "2006513", "video_name": "653a14da-0e63-5663-adf5-119a16c08aa4", "text": "a robot driving a tract on a plantation "} +{"id": "0004949", "video_name": "12106ef6-e608-5b7b-8119-e1e14f368fbb", "text": "2 men in futuristic suit fighting in an anime style "} +{"id": "6003324", "video_name": "15ec6555-f6bc-568f-84ed-11798b18d612", "text": "Reflection in a close up of an eye Message: SKRAELINGS (Font: MODERN) "} +{"id": "0005472", "video_name": "1b5ffd2a-ec75-5e9d-a77a-964443f99957", "text": "dark castle in a storm action scene "} +{"id": "1003704", "video_name": "4458dc3a-4384-5170-9880-a4b8f5422ed9", "text": "a raw egg yolk flows down the screen "} +{"id": "8002532", "video_name": "cb4068b3-ccb3-5cb3-81d3-f53e724fbccc", "text": "purple and orange fiery explosion, magical energy, 4K cinematic "} +{"id": "8003824", "video_name": "129e3f07-b53d-5b9f-a039-68f84db1462c", "text": "Close up on plastic strip wrapped around a wrist, futuristic led screen, old long sleeve jumpsuit, in a concrete room, wearing jumpsuit, futuristic motif,gloomy, low angle long shot, cinematic focus on character, dvd screengrab, 1984 movie, labirynth "} +{"id": "0006533", "video_name": "2e50373d-b055-58cd-834d-5d385fd21e3f", "text": "a short clip showing mountains of Nepal, with animals like polar bear "} +{"id": "7003704", "video_name": "ec24407b-e974-5571-aa6e-3bafe3fb8295", "text": "the car goes to the field "} +{"id": "2006438", "video_name": "043a6454-0371-5bcc-8ad4-c3ddd79e14fc", "text": "professional logo drawn by a girl and the letter P "} +{"id": "5001373", "video_name": "6b393043-591e-5ce4-b49c-0453dbeaa1bd", "text": "samurai jumpes over roofs of building in cyber city "} +{"id": "6004858", "video_name": "a9ce6813-6500-5091-95eb-c601f01b0839", "text": "fresh fruits\uff0cblue background Message: Ant Group (Font: MODERN) "} +{"id": "0005383", "video_name": "19daa434-8e78-53ae-8b54-09c176ae978f", "text": "dream core playground faraway on a hill "} +{"id": "4004293", "video_name": "cc33d4f6-8330-5c7c-a7a2-136b47e67797", "text": "cigar iqos floating in the sky "} +{"id": "6003049", "video_name": "d81eb1da-1c60-5687-8acd-76d5fd157ede", "text": "a butterfly flying on a keyboard that has flowers on top. "} +{"id": "6004758", "video_name": "19f420f0-5ca0-5231-9888-1f6ea5d53a41", "text": "beautiful flowing liquid dark chocolate like a tsunami of chocolate "} +{"id": "6003617", "video_name": "c232a77a-7c88-5065-a918-73818c9d15e8", "text": "logo of the portugol studio program with arms and legs wearing a bowler hat animated image "} +{"id": "2004198", "video_name": "63018013-ec66-5614-aa46-2a46e6f51d53", "text": "Portrait of Zhang Fei in the Three Kingdoms "} +{"id": "7003606", "video_name": "2f5e7cae-0d6a-575d-b448-9ffc9edfad9d", "text": "Super macro of the angel rafael "} +{"id": "8002935", "video_name": "bbde2682-88eb-5c8b-984d-b73cbb23d155", "text": "rolled tshirts in shelf Message: 1 Attachment "} +{"id": "1004083", "video_name": "4ba6a797-aee0-5c7f-94d9-0ce4c294f183", "text": "at a desk with orange and red electricity flying out of it "} +{"id": "8001281", "video_name": "6301f5d0-1b08-58e5-92b7-1fa9a6d4e8c2", "text": "Show a vibrant landscape filled with greenery, blooming flowers, and abundant fruit trees. "} +{"id": "2003546", "video_name": "f9ca0691-29d2-5ff2-a3f2-ba447c510062", "text": "Ayodhya, hyper realistic, high texture, High octane render, cloudy, misty, symmetrical shot, well lit, day to night hyperlapse, "} +{"id": "0004302", "video_name": "06b54283-b836-5af4-b003-4b652814a5ce", "text": "cybernatics malayan tiger in the middle of soccer stadium at night with an elephant apponent "} +{"id": "7004189", "video_name": "d55c7f57-3b87-5d50-8531-b2fe3b8d929f", "text": "Picture the Cat in the Hat entering with an umbrella, his mischievous eyes gleaming, as Sally and Sam look on in surprise. "} +{"id": "0006569", "video_name": "2ec3ecec-a938-5827-85e7-fc9f1d6827ff", "text": "Indian god lord Shiva dancing at top of mountain. "} +{"id": "6002899", "video_name": "fc6fa386-8d6a-54ea-9645-41bdc3e74560", "text": "a cinematic shot of pirates carry a treasure chest on their shoulders, hyperrealist, stormy weather, fujifilm camera "} +{"id": "5001431", "video_name": "e5ab51e1-b490-5167-a2c6-329eaccd1a87", "text": "The young monk is sitting and reading scriptures, the camera is surrounding the young monk "} +{"id": "7003303", "video_name": "94b8cef0-202c-57ed-92cc-0ddd1249d7a1", "text": "triangular hole at the bottom of the ocean "} +{"id": "0004475", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "joe rogan dancing with a baby "} +{"id": "6003179", "video_name": "3752041d-23b3-52c1-bd67-f115cf0e8a56", "text": "Bohemian Dog, paint funny illustrations, artistic, heart shaped pink frame sun glasses "} +{"id": "5001252", "video_name": "28f52e1d-ad70-5e80-a307-f3c42bc6e995", "text": "an animated logo of an ice cream cone "} +{"id": "7004751", "video_name": "5c937ed3-3ddb-522e-8158-63f181795410", "text": "Three sons of a woman went to take part in the war "} +{"id": "8002316", "video_name": "82ab0d31-a064-50ff-9191-ea32f347109d", "text": "a young boy siting in group with his relatives and talking something. 3d "} +{"id": "8002321", "video_name": "34bde255-b334-5f2f-a700-585020a3fb68", "text": "buildings are swaying from side to side "} +{"id": "2005063", "video_name": "371d681a-3533-53a9-8755-44602d96ac2e", "text": "the mind of a hyperactive woman, full of pink, purple, blue, green, colorful clouds, anxiety and joy "} +{"id": "3005473", "video_name": "9ca755dc-0637-5310-a42d-538c30d019f6", "text": "a man is answering the phone "} +{"id": "7002051", "video_name": "23d05344-5a9c-5974-b00d-1e7133daf4a4", "text": "make a logo that says Soul Purpose Entertainment with a cross "} +{"id": "1005391", "video_name": "63132f39-820f-5cf5-9fe9-4c8df8dd5de7", "text": "blue car driving alone in foggy road "} +{"id": "4004700", "video_name": "e20f956f-f0c5-5299-ab3c-901e6eb87bf2", "text": "The scene opens in a vibrant, lush jungle where an ape encampment is nestled. Towering trees and dense foliage create a serene atmosphere filled with the sounds of wildlife. The encampment itself is adorned with woven vines and natural materials, offering a harmonious living space for the highly intelligent bonobo, Koba, and his ape community. "} +{"id": "0006726", "video_name": "31ca873d-c89a-51ec-a4b0-ebd1f1299764", "text": "people in a boat with enormous creatures in the water "} +{"id": "7003379", "video_name": "f55b197a-cb7c-513f-93cf-0a136a8ee332", "text": "Depict a scene where girl is sitting with the wise old sage, Master Kavi, as he imparts his wisdom. "} +{"id": "7002768", "video_name": "23d43b40-4a5e-552f-af74-73c873dd8d84", "text": "Balanced time frame. Anime. Shattering reality while heroes fight against each other. "} +{"id": "2004431", "video_name": "e389ca14-4aaf-5d79-bccb-96113f860105", "text": "Momo sitting on a rock, deep in thought, with a light bulb appearing above his head. "} +{"id": "0005319", "video_name": "188fb7a0-f570-540d-b0ee-09d5dde88711", "text": "yellow tube from the phone on a pink background "} +{"id": "2005974", "video_name": "7b63e375-2b54-584f-9818-69702308221d", "text": "the little boy stood in complete darkness and was awakened by a pair of red ones above him and the little boy raised his head uphill "} +{"id": "3003330", "video_name": "24fda7f3-2acf-5f4a-9a7f-b60bc465412d", "text": "entrance to a sinister cave, covered in fog. 4k, ultra hd. "} +{"id": "0005042", "video_name": "13a3925f-c919-5e69-aa6b-e55990c85f76", "text": "3d cartoon the god speak with old man with burlap cloth "} +{"id": "4003481", "video_name": "a6b9275c-9b9c-5785-897b-468d326bcaeb", "text": "A hooded man running in a dark hallway, 4k, full HD, no errors, fluid motion, no bugs "} +{"id": "3004960", "video_name": "a91432b7-805a-5e8c-b4e6-64f4db1e2f8b", "text": ":hd disney cartoons, amitabh bachchan 10 different images, indian village, talking, background moving, camera movement, 3d views, "} +{"id": "1003430", "video_name": "3f5de789-c397-51e4-a3f3-e35a8b047e26", "text": "African savannah at sunset, Kofi and Amina playing in the grasslands. "} +{"id": "6004449", "video_name": "b144816b-ca9e-55df-911d-fbea3ea5d8bd", "text": "Taylor Swift sitting on the Iron Throne from Game of Thrones "} +{"id": "2003474", "video_name": "79e295c3-d466-5023-ae43-72db5296e928", "text": "Person managing wind turbine through hologram map ai generated future technology "} +{"id": "7003877", "video_name": "f97f8d4f-9229-51ca-98a3-60ac297eca1a", "text": "a coconut palm in a islands "} +{"id": "1003737", "video_name": "44f8550b-8980-53ca-a053-c2b797a1d72c", "text": "figure of a vampire in the distance in a white hallway "} +{"id": "1005507", "video_name": "6560b320-0468-5c63-86c2-2ea9433f5fea", "text": "elun musk in short village as a photography a cow "} +{"id": "3003477", "video_name": "1d0276d3-1b69-5970-bc67-ce5243fbb954", "text": "Vase of glass with red roses inside it, pink atmosphere, petals and fantasy, beautiful "} +{"id": "3003794", "video_name": "d209ef56-2261-56b2-ac62-92f9ba9b849d", "text": "Exhibition room of modern landscape paintings full of pretty person decor 4k cinematique ultra realist 16:9 "} +{"id": "8001032", "video_name": "99a24ae8-24ee-56f0-94d5-0627079d78ba", "text": "one minte video of gig of video editor "} +{"id": "7003077", "video_name": "f2da26b2-fc28-5638-b7b6-7854147a6d49", "text": "a beauitiful korean lady in a bikini standing with a cocktail in get hand in santa monica pier "} +{"id": "3006304", "video_name": "68691a68-4c40-5b5f-a26e-cf5fa31397c2", "text": "A seed sprouts from a mound in the forest "} +{"id": "7004342", "video_name": "cb18ee81-7f2b-56e9-979a-a21b1bc32ca1", "text": "zomby dancing wild in rave , camera move thowards "} +{"id": "2003175", "video_name": "e2ff3fc5-4138-537b-99ac-cec5e1acdbdd", "text": "Highly detailed and complex system of origami intersections, featuring a variety of colors and oriental shapes. The effect resembles matte paper, and the colors are highly saturated., typography "} +{"id": "4002703", "video_name": "3d94dac8-a00a-5849-b965-4b9a5637f8d1", "text": "Mars Community Center Video: To maintain the vitality of the community, Mars villages may have community centers, entertainment facilities and other recreational areas to promote social and cultural exchanges among residents. AR16:9 "} +{"id": "6003551", "video_name": "c2179ff0-c073-5772-9b27-7915ff5fbb61", "text": "dog with cat image running on water "} +{"id": "0003057", "video_name": "3641c525-6484-5527-8d09-8d595741c960", "text": "a dance party in a night club, anime styled "} +{"id": "3003750", "video_name": "753fee9e-6bfc-5886-9199-3e0d72de29f7", "text": "A transition that shows a character traveling through different worlds, using different animation styles to represent each world "} +{"id": "2007017", "video_name": "20093295-a46a-5940-8b11-49cfd9bf6ffa", "text": "some white lotus in nature rain "} +{"id": "0006418", "video_name": "2c05c294-dc82-513a-baab-9a1a53ee1266", "text": "kids cartoon in the jungles of Africa, where the creatures lurk "} +{"id": "4002537", "video_name": "09ce4350-3ac3-5eb4-92fe-28ac6cc92459", "text": "particles of god energy archon grid "} +{"id": "6004174", "video_name": "3ae855ae-1c42-5881-8c17-8f9d195d5f3b", "text": "Indian Middle class house bedroom, dark, candle flare, classic radio "} +{"id": "8003521", "video_name": "4dcb9603-b22b-56a9-87bb-3d44b9d8ac28", "text": "A typewriter evolving into a futuristic holographic keyboard "} +{"id": "0006423", "video_name": "2c1ebef7-a6c4-53ca-a4f9-b62281ccbb0b", "text": "India gate in heavy rain and thunder "} +{"id": "3004595", "video_name": "27904afa-f54b-5348-a32d-c66cca171776", "text": "baseball stadium with a million people Message: 1 Attachment "} +{"id": "8001326", "video_name": "922db905-3f5c-5b91-81ef-f80ddb5595e9", "text": "Against the backdrop of a relentless rainstorm, soldiers from all walks of life raise their hands in surrender. The raindrops glisten as they fall, each droplet meticulously captured in vivid 8K detail. The emotional intensity of the scene is accentuated by the clarity and realism of the imagery, pulling the audience into the heart of the story "} +{"id": "0004522", "video_name": "0a8225fe-3963-56aa-a3ff-f67157746b93", "text": "anime asian happy boy went back home "} +{"id": "1005598", "video_name": "66fe16fa-5e38-55e0-8777-4a78487eda97", "text": "With forms that no man can discover "} +{"id": "4003576", "video_name": "4e049a0a-7d48-5f3c-af03-e0c57207245d", "text": "the dragon spits fire, cartoon style, epic character "} +{"id": "1004129", "video_name": "4c71e7e5-68f0-5853-b78f-7a7468ee1242", "text": "minimal surface mathematical grid in tron lighting warping in space "} +{"id": "1004295", "video_name": "4f74a9ff-a6d1-5931-b3b9-8c5d4d1c8775", "text": "the neon signs blink and the red scarf moving in the wind "} +{"id": "3005869", "video_name": "154a4092-6e1e-5fcf-9e98-39ae6e951b9a", "text": "celebration for 100 youtube video created "} +{"id": "7002811", "video_name": "d1378fb0-c0cc-596e-a69c-6df23b7ba1c7", "text": "A group of egrets flew over the reed beach and stopped at the shore of Acacia. "} +{"id": "7002159", "video_name": "3e13d6cb-6ace-54cd-93eb-f209b4bd482e", "text": "A little girl on a trampoline hoping and making bubble gums, and when the bubble pops the girl deeps into the trampoline like a portal and is transported in a pink scenery with floating lands and pink lakes. While smelling meta flowers and eating meta fruits she dives into a pink lake which is the second portal that carries her into a more jellish scenery full of bubbles (pink orange and redish) and the girl\u2019s hair become floating jelly. "} +{"id": "8003355", "video_name": "f019efca-d236-56ea-adbf-b01e3bde8f0b", "text": "the fallen angel we see for the first time. He stands at a crossroads, looking into the distant future "} +{"id": "3003284", "video_name": "ee0c363a-6ee9-5278-bcbf-a04a73112ac8", "text": "Ancient greek gods gathered at a table, medium shot with a 50mm lens, trending on artstation, render in high resolution 4k with detailed surfaces and dramatic lighting Message: Apollo (Font: MODERN) "} +{"id": "2005788", "video_name": "3d731c80-fc18-5dd2-9c8e-67d4ebc780d4", "text": "2 cavemen walking to a ufo. Ufo is parked on grass. Ufo has a green light. 2 caveman have food to trade. "} +{"id": "1006923", "video_name": "7e9c8283-46b5-50e3-9402-5f42dc6da696", "text": "a street fighter game charecter like can "} +{"id": "6003757", "video_name": "62d288ab-1b88-5531-8f0d-4526ee4763a1", "text": "a man drinking water, 3d, ultrareal "} +{"id": "0005348", "video_name": "1938ed5f-4e20-5e9d-85a3-f10e8a29c314", "text": "Golden metallic scaly dragon descending from yellow clouds with flashes of light. "} +{"id": "1004539", "video_name": "54557cb8-bb1b-5255-b7aa-f4f3e250a2e3", "text": "a field of white flowers in the summer night "} +{"id": "5001707", "video_name": "029d1b08-134a-5468-be78-3c146c70c248", "text": "A climber standing triumphantly at the summit, sun rising in the background 2k "} +{"id": "1006760", "video_name": "7bc01dd3-601f-5ef9-bbf4-a4d58b6d84ec", "text": "a big white lion, fantasy, clouds, moving camera "} +{"id": "2004990", "video_name": "bf88c9c9-5030-545b-9180-1fd645c4090a", "text": "a girl with his mother and father and they all are happy "} +{"id": "3004618", "video_name": "c526aa53-687e-5ac0-b2c5-580b02e65308", "text": "Ethereal apparitions haunting a derelict space station, in the style of cosmic horror, flickering emergency lights, claustrophobic camera angles, quick jump cuts "} +{"id": "6004298", "video_name": "e69e002a-f92e-52bb-8b3b-b2ba4b16c780", "text": "a tooth in gum with magical light running through its edges and then sparkles "} +{"id": "0006499", "video_name": "2d8f87f2-f435-5eab-b3ba-d5f322959b98", "text": "a warrior in a dark night holding weapons ready to fight a wolf "} +{"id": "6002263", "video_name": "d7d666f3-403d-54c4-82e5-18f236b908cc", "text": "Haitian men drawing the rainforest in Brazil "} +{"id": "4004112", "video_name": "0dfe7545-7d0c-54f8-bada-b7c393ea0932", "text": "it is raining business men, 4K "} +{"id": "0003014", "video_name": "359b0b8b-5c46-5bb5-8d34-461337d80a97", "text": "zoom in shot on little broken mirror reflecting three figures on top of a majestic mountain during moon eclipse "} +{"id": "6004317", "video_name": "e64c2414-64e6-5326-8c44-40b67431ae15", "text": "animal studying in a room under the night sky full of moving stars in Hayao Miyazaki style cartoon "} +{"id": "1004325", "video_name": "4fdeab90-f467-5975-83c5-e9592ab1b003", "text": "a bald man on the beach looking to a boat far on the ocean "} +{"id": "5001653", "video_name": "9d7fcde7-2065-540e-a091-780f88b2b1ab", "text": "Alice in blue pants and a gray coat Walking through the open and dark corridors with little light, her steps resounded like disconnected chords in a macabre score. Message: 1 Attachment "} +{"id": "2007964", "video_name": "2eb2e370-1b40-5696-935b-4e264e649902", "text": "the sunlight shines obliquely through the leaves, turning them golden before they gradually fall "} +{"id": "5001838", "video_name": "71433b1f-7dfd-5be2-a5b7-483f92a4c0fb", "text": "swirling read and orange frequency waves thin increasing in density and fullness increasingly "} +{"id": "2007134", "video_name": "f951789a-2f72-55d1-82e2-683934741fd4", "text": "Small gifts like expensive colognes and ties "} +{"id": "6004807", "video_name": "734a8b0e-81e8-5e54-9e2d-f780726d3d86", "text": "inside a home, in anime style a male in a house walking and then, aciddently destroys a vase hes age is 30. "} +{"id": "2005761", "video_name": "5f17d878-8131-501c-89fb-ea01c7fe97e2", "text": "There he saw a cartoon lion crying in pain. There was a thorn in his right paw. "} +{"id": "5001045", "video_name": "8f159781-69d3-59ef-ba97-e5b093900f25", "text": "moon rising over new work city. hyper realistic 8k theme with exceptiona detail, lighting, and shading. "} +{"id": "1005300", "video_name": "6163fdf3-e2b9-59f7-851a-91f9c9bfaccf", "text": "Elon Musk and Marcus Garvey fighting over the Black Princess of Mars, with Marcus Garvey winning. "} +{"id": "2004540", "video_name": "1aa8ceef-cd00-5c2c-b130-3cf24f928393", "text": "a large crowd walking in San Franscisco, birdeye view "} +{"id": "1005414", "video_name": "6383d16a-50bb-5eee-8c47-8c1c869bb5c9", "text": "London National Gallery Trafalgar square Saint Martin Message: Bego (Font: MODERN) "} +{"id": "2005448", "video_name": "ec5c4a7e-1ad6-51b7-9be8-c5a0344372a5", "text": "close up of eye iris that becomes a planet earth "} +{"id": "4003529", "video_name": "a63e3383-ab12-567a-aa60-01d4f953450d", "text": "An Indian beautiful girl with long hair taking selfie out side of Taj Mahal "} +{"id": "7003053", "video_name": "e16884a5-c2cb-58cf-8da6-f0bdbb7e9959", "text": "flaying flower, camera zoom in Message: 1 Attachment "} +{"id": "8001457", "video_name": "1efaa6be-8f51-5560-acd6-42578e25a218", "text": "fractual shapes loops african print continuous shapes spiritual highly detailed. Giant luxeruous ivory speaker in the distance 8k vibrant "} +{"id": "6004462", "video_name": "7cec4d0f-f969-51fd-b976-916d2040cfe7", "text": "new preraphaelite painting ophelia and nymphs in a forest with ulysses "} +{"id": "4002977", "video_name": "168979e1-3897-59b8-addc-a2f06d034c16", "text": "photorealisitc tentacles moving in the thick fog "} +{"id": "2004095", "video_name": "5f60f932-9a6f-5e0f-95be-b7e7bd348396", "text": "under the sun a chinese man and woman walking under mountain road\uff0cwoman smil lovly and teach man how to be a god "} +{"id": "1005982", "video_name": "6de92382-fbe5-5b30-b513-6e06aa19ccf6", "text": "holding a hot flower in my hands "} +{"id": "7002844", "video_name": "658b462f-7ae0-5e81-bd01-a26bca8647ee", "text": "A child is running by the seaside "} +{"id": "4003732", "video_name": "961f0cfe-f641-5da5-a19e-f759a6cb474b", "text": "USS enterprise landing on the moon "} +{"id": "0006504", "video_name": "2d9e7964-2b99-5098-997d-8bd8cd59315c", "text": "attachment only one bright star with smiling face is moving in a circle, the star has a face "} +{"id": "0005698", "video_name": "1f9a9905-69f0-5f33-bf18-a2a0fa3f6623", "text": "A man made of water, watercolor, detailed, animation"} +{"id": "6004814", "video_name": "e8344d48-4ecf-517a-9f80-ec9044884321", "text": "With a flash of blue and red, he managed to outmaneuver the Hulk, redirecting his colossal strength into the ground. "} +{"id": "4002903", "video_name": "ac3d2426-44fb-590e-bb5b-828dd7a23e6b", "text": "duck swimming with a cowboy hat "} +{"id": "4003781", "video_name": "874dd683-b17f-58c4-92fe-a194a57799f3", "text": "Over time, the Anunnaki interbred with humans, "} +{"id": "3004172", "video_name": "7f1c2067-c808-5430-a7d9-b58d52709870", "text": "kaal bhairav in shamshan ghat high quality fire buring dead bodies buring dark night "} +{"id": "2006021", "video_name": "0ea07b55-c29d-5371-aaa8-e39c9d472740", "text": "generate a horse that is flying "} +{"id": "0003999", "video_name": "015eccc0-8c74-5d13-80d7-7fb62b98e5ea", "text": "Egypt in ancient times close up Queen Nefertite looks at herself in bronze hand mirror moving her head in front of a window in the palace, dunes and palm trees in the background "} +{"id": "6003472", "video_name": "5b22eacf-cb12-503f-b56e-6b92c62b1d0b", "text": "A new energy vehicle is speeding along the seaside. Message: 1 Attachment "} +{"id": "8001758", "video_name": "50f48de2-e04c-5648-a548-b19951a9b1e7", "text": "Character looking at a plate of different foods with thought bubbles depicting potential allergens. "} +{"id": "2004314", "video_name": "4a2bea11-4d12-5a72-8c15-e610634e4fb8", "text": "alien grey out of focus comes into focus as it moves towards the camera "} +{"id": "4003319", "video_name": "3b19918a-c051-5839-a338-4028e90c5825", "text": "a cozy studio backdrop designed for a passionate vlogger who loves books and has achieved the prestigious YouTube Silver Play Button. "} +{"id": "8002719", "video_name": "924f57f6-d66b-592a-a678-17ee73877126", "text": "Joe Biden swimming in the ocean "} +{"id": "3005013", "video_name": "209623d1-a062-5de2-bc8c-e9b7ea79f454", "text": "the sound of air friction in a tunnel "} +{"id": "2003487", "video_name": "2aee86d3-f054-5b3d-bac2-29def3f5413c", "text": "vintage robot screaming in peril, german expressionism, minimalist background, zoom in, dramatic lighting "} +{"id": "3005189", "video_name": "d8d517d9-7a70-5b88-859c-ae607d002a3c", "text": "Timelapse of lizard eats a fly "} +{"id": "5001782", "video_name": "dd1ddbac-9ff9-5776-983e-62d41ed87f64", "text": "Sleek Jaguar Hunting: A sleek jaguar hunting, its powerful muscles propelling it forward as it closes in on its prey within the lush forest landscape. "} +{"id": "3004750", "video_name": "c82df1bd-63dd-5790-a01b-8edc63c25850", "text": "THe Toronto Blue Jay playing baseball in front of a large crowd at Rogers Centre in downtown toronto "} +{"id": "2006149", "video_name": "ba076cb0-2476-5a57-babd-651c65e9a9f0", "text": "rush and stess in office before christmass "} +{"id": "4003205", "video_name": "96f4e396-a819-582d-b066-3bcaef6429af", "text": "Despite facing financial challenges, they found joy in simple moments. "} +{"id": "0005140", "video_name": "157d4612-4ffe-5ee2-9a25-8aa3daf438dc", "text": "animate text and animate fire and animate beer liquid and animate face "} +{"id": "6003055", "video_name": "72bff9ef-5805-5936-b344-feae3bf0992a", "text": "old paper pages turns in old magic book "} +{"id": "8001434", "video_name": "c1f5c30b-d158-5d2d-a2fb-83ff2224ea5b", "text": "Tsunami destroys the Golden Gate Bridge "} +{"id": "4004063", "video_name": "aea4684b-a4bb-521d-ae54-27b41331d012", "text": "in rehersal room stands a Vox Continental "} +{"id": "2004333", "video_name": "a28ce283-f094-568a-92f7-b8960192dbee", "text": "a lion in forest with his family in Disney styles hyper realistic 8k , hd "} +{"id": "8002121", "video_name": "082adc81-bda1-50e9-9d20-1e32bae151e2", "text": "a school boy playing football in the school ground with his friends, 4k resolution,realistic "} +{"id": "6004106", "video_name": "a7f355cf-c93e-5baa-8e1f-190ad036ca5a", "text": "a man stands, looks into the water, There is no reflection in the water, there is only the bitterness of defeat "} +{"id": "3003537", "video_name": "f8921f7d-750d-54b5-86cd-1a40135652b9", "text": "a green kid with a triangle head "} +{"id": "1006018", "video_name": "6e892f7c-025c-5767-93c5-213bc86b90f0", "text": "scary castle interior in dark, realistic, detailed "} +{"id": "7003499", "video_name": "6c24d9ae-e349-5edd-b12f-2fd78a7793d3", "text": "M. bison Street Fighter 2 characters dancing in a mexican outside mariachi party cakes confetti food "} +{"id": "1003815", "video_name": "4671dca2-abf3-50e2-8659-6b8b72ca4e42", "text": "go back in time wrap 9mm 1958 "} +{"id": "5001676", "video_name": "10e6c152-1d60-5d51-b9be-cace65d9a404", "text": "a dog sitting in a burning room "} +{"id": "1006831", "video_name": "7ceaf393-eabe-5810-8c26-02695c6bc16a", "text": "a old town in 90s, dark background, scary night, camera fast moving "} +{"id": "7004355", "video_name": "bd15b11d-3a7c-5047-99c4-460f3247ca62", "text": "aliens play basketball on The mars "} +{"id": "3004567", "video_name": "c3965c1d-1152-550c-b528-3766b6f4c943", "text": "the grim reaper floating through space, photograph, analog film "} +{"id": "4003174", "video_name": "d089a9a5-6402-53d6-a5e1-963f5312c739", "text": "And at that very moment he took a vow that he would spend his life serving the poor and the distressed. "} +{"id": "0005591", "video_name": "1d971720-9d3a-5bcb-952c-ad3e8f77b412", "text": "a woman sitting on a park and reading a book. A few men are walking past her and saying something to her, but she ignores them and keeps reading a book "} +{"id": "1005404", "video_name": "634c88ab-47ce-5864-bb51-b15f87e611ca", "text": "video editing, graphic designing, animation, web development, SEO, and content creation "} +{"id": "4004653", "video_name": "c705e787-9ed1-531d-81ef-eda1b11e00fb", "text": "speakers dancing, comics style, close up camera "} +{"id": "4003064", "video_name": "7a78377b-b58b-5cf0-a751-262f2567f1e4", "text": "a poor indian man in the village "} +{"id": "2007808", "video_name": "0749a53a-57cd-5d82-ad9a-7fb53d6dacbe", "text": "a crumpled white orchid on the floor opens into a beautiful bloom "} +{"id": "7004104", "video_name": "7ef754ff-3a9c-531a-a6f0-d3bf4a50774e", "text": "they are moving slowly and smiling "} +{"id": "5001778", "video_name": "50033721-8672-59fc-a075-424e92b85e8d", "text": "hvae panda mouth taling and moving like he wiggling to the beat "} +{"id": "7004194", "video_name": "ba9a02de-ebd2-56b6-b244-cd24151ef192", "text": "Charles Bronson chasing a criminal, cyberpunk, 1978, Night time "} +{"id": "8003723", "video_name": "91b32f79-c323-510d-9930-e1d5659eee0e", "text": "chinese style, red stage background , suit dance "} +{"id": "6003938", "video_name": "78a482d0-c5a1-5e48-ba6a-ba3982d24fd4", "text": "camera moves, steak video, steaming, bright kitchen. "} +{"id": "2007247", "video_name": "dc8c9dfe-f0be-5a25-87db-39e6a93b206f", "text": "The big duck, brown cat, and black dog all standing together under the trees facing the red hen "} +{"id": "2003231", "video_name": "bb117eeb-6f54-5419-a6fe-c620f85d42d6", "text": "woman seeing off guests, bw old movie "} +{"id": "6004092", "video_name": "be71e9f9-cd46-52b4-976a-ffab14e8aea5", "text": "A woman in the couch holding a bag of Doritos and talking "} +{"id": "0003639", "video_name": "40db9d19-8697-5c81-92d2-2d2e0b7ab581", "text": "A cute orange cat, dressed in a spacesuit, waving at the viewer from the surface of the moon. The background showcases the vastness of space with a sparkling Milky Way galaxy "} +{"id": "6000007", "video_name": "2dde870a-fec1-56a1-a992-e2957ee046d1", "text": "massive civilian deaths on the ground "} +{"id": "1005926", "video_name": "6cd710a1-f2b3-593f-898b-4db504e43fc3", "text": "two people going to a jewelry store to get some diamonds and gold "} +{"id": "3005177", "video_name": "751348f4-f221-5d7c-a2df-3b31fe73b9e3", "text": "16:8 cinematic scene, of a distant land "} +{"id": "1004946", "video_name": "5b72a6db-57a3-5952-8a91-098281c220f1", "text": "an old 1970\u2019s movie about the nile river in sudan "} +{"id": "1004789", "video_name": "58784c93-7a10-54b6-ab7c-e4ff0a3fac33", "text": "bruce lee sparring with chuck norris "} +{"id": "3004848", "video_name": "66c5a70f-2bac-5402-a0d5-8ccc75ac3ec4", "text": "Afonso Padilha competing in a race with Fabio Porchat "} +{"id": "1005846", "video_name": "6b6dfdd1-eb52-5779-8c90-0029e78b8d0a", "text": "two nameless girls and a young man live "} +{"id": "5001197", "video_name": "0f053819-5519-5a4c-9cda-172feb03f51a", "text": "a fly on a bird on a dog on a cow on an elephan "} +{"id": "0006383", "video_name": "2b81476d-c0a6-5008-b35c-047f635f4a2a", "text": "a little girl in a pink dress plucking red roses from her garden "} +{"id": "6002933", "video_name": "6264043c-d8f7-5292-bf31-bfe9eb6bfe77", "text": "heralding doom for Nigeria and its neighbors "} +{"id": "4003449", "video_name": "138f76db-2b59-5c96-92f6-3f445194ff38", "text": "Sam and Riden are fighting Metal Gear Rising "} +{"id": "5001291", "video_name": "b8e29fb6-af9c-51de-9352-55e3a442054d", "text": "a man working on an aeroplane engine with his tools "} +{"id": "6003376", "video_name": "58e350fc-1d5c-5f85-8616-755d30f701cc", "text": "A man whose white light shines "} +{"id": "4002671", "video_name": "b2a9ab77-23a9-5485-8f15-d154288f0341", "text": "Remy and Benny engaging in a friendly game of chess, using bottle caps as game pieces.Animated cartoon "} +{"id": "2003989", "video_name": "e7a9ea41-825c-55d2-9c24-854d78c03ec8", "text": "Animated Robot discovers a magical alien world and walks around "} +{"id": "6004098", "video_name": "ba70f807-016d-56a9-8058-4922add7d490", "text": "A forest girl looking her face in river water and thinking she is ugly. She became upset and sat down the river bank. An old but graceful lady comes to her and expresses in sign language that she is very beautiful and not ugly at all. "} +{"id": "5001033", "video_name": "e57864ee-afeb-5efd-9331-7a4ec7c7b49a", "text": "man walking in the desert, 50 seconds "} +{"id": "0003513", "video_name": "3ed5ed2a-84dd-53e5-83b2-9d2948be5cea", "text": "stylish overcoat and a small vest for a gentleman "} +{"id": "7003794", "video_name": "915c285c-469d-5f81-a844-1898f7746d6f", "text": "A beautiful Japanese high school girl puts on contact lenses. As she does, the world suddenly expands around her, with everything becoming clear and visibly beautiful. "} +{"id": "0003156", "video_name": "383370d2-53f9-5d2a-b0eb-5c6402aa6fff", "text": "A delivery brush is eating Message: 1 Attachment "} +{"id": "4003283", "video_name": "0bc2c8dc-1ddb-5adf-be07-b1f9cce41118", "text": "two woman in bed wearing baroque corsets smiling drinking milk "} +{"id": "4002368", "video_name": "2e62fd3d-248f-5d0b-9ad3-8a92edab4667", "text": "cozy cafe, colorful, glass window background with rain drops "} +{"id": "2004101", "video_name": "8f631ba2-9a47-575d-9cf2-5e6930ca4999", "text": "Biomorphism models artistic design elements on naturally occurring patterns or shapes reminiscent of nature and living organisms. "} +{"id": "3005009", "video_name": "5cbe4b50-be0c-535b-add1-a74e33bf0ba2", "text": "brocolliman meditates on an ocean island , hyper realism "} +{"id": "2004352", "video_name": "0a393947-6ddd-5dfe-bee5-d642f4180cce", "text": "A cute red and white cat, a bit chubby, is riding a bicycle on the road. "} +{"id": "6003204", "video_name": "32db7064-7c99-58ab-be3a-4ab41f3b64b7", "text": "Make picture standing girl at subway station alone "} +{"id": "6003088", "video_name": "e3870d9c-79f5-51e1-9073-da81859fe9c9", "text": "ornament sea at sunset, wind motion "} +{"id": "2003002", "video_name": "d6e4d544-18bd-5a07-94c7-96597dd7bf18", "text": "Depths of the ocean, darkness, there are no living beings. "} +{"id": "1004632", "video_name": "56278bd5-a1a5-5be2-a5f3-e88eef6061ae", "text": "create a realistic image of people walking "} +{"id": "5001655", "video_name": "534a0c52-796f-56f6-afca-5d9832c2a152", "text": "super dynamic animation, psychedelic, DJ at the controls "} +{"id": "2004374", "video_name": "a76ab03e-4c15-5b35-b39c-f4fd4dc3dfd5", "text": "Epoxy resin being applied on an aircraft to improve its structure "} +{"id": "1004669", "video_name": "56d3316a-a639-5c81-be68-740d6b2a66c6", "text": "the text BlingBling moving around in space "} +{"id": "7004429", "video_name": "e8824405-b96d-55f3-a1a6-267e78550609", "text": "musical notes amalgamating into a living person "} +{"id": "2006420", "video_name": "14ddf777-ac12-530e-899e-842b458f4b5f", "text": "50ml alunimium silver bottles with screw caps being thrown upward then fall downaward, off white background. light from front. camera shooting from front, energy. bottles a in different directions. high contrast. 8K. high resolution. realism. surreal. in the style of vogue. modern stylish. "} +{"id": "0005460", "video_name": "1b29a610-6ee9-5edd-8178-64deeb03a7dc", "text": "a woman made of autumn leaves dancing with a man made ice, cinematic, 8K, high detail, atmosphere, wide view "} +{"id": "4004338", "video_name": "3540e448-8379-5d83-9466-0de3020618a0", "text": "a video of a guy trying to achive something but is being late to it "} +{"id": "2006998", "video_name": "229c5e46-0795-5b44-850a-febfa8d75c34", "text": "pyramids at night, blue sky, cinematic, anubis God head in the sky, 4k, "} +{"id": "3006090", "video_name": "7ce3c361-3969-5aca-95a6-293b329e0369", "text": "the people assembled in the courtyard of the castle, movie film, fantasy, hight quality, hight detailed, 4K, movie, film, cinematic movie, Darkfantasy, 1970s, 70s "} +{"id": "8002032", "video_name": "f39b272e-598f-50b3-9014-ba8e043a0bd5", "text": "The fox, with a sly smile, said, Your Majesty, perhaps you should focus on ruling the jungle and leave the cleverness to those who are truly gifted in that area. "} +{"id": "1005774", "video_name": "6a3fc5ad-5251-5321-9062-2ed696b6382e", "text": "young poor man watching a computer screen with stock trading graphs which are moving up "} +{"id": "0006627", "video_name": "2fce6152-d40d-5763-8878-d6526d14ef55", "text": "hyper realistic bee flying close to the screen of a CRT monitor, the monitor broadcasts the program maya the bee in black and white ,4k, ar 16:9 "} +{"id": "1004370", "video_name": "50bb0a06-3b69-56cc-8854-8609a55a0c94", "text": "LEGO Super Mario opens a portal to another world,8k,zoom in camera "} +{"id": "1005499", "video_name": "651d1b93-bea2-5237-bc88-954c4abcfa3d", "text": "recreate the image exactly as it is except with the word Lopez instead of Faith Message: 1 Attachment "} +{"id": "6004087", "video_name": "719dcf64-cab8-5814-b0de-7cdd08f74386", "text": "one pineapple on the ground under trees, a pink monkey on a tree looks at it, zoom in on monkey, 16:9, realistic, cinematic "} +{"id": "8003037", "video_name": "cac030f6-31de-5dc6-ad24-dcd265ebd776", "text": "spider man 2099 is running away, but Sally a ghost, grab his shirt, and then invincible for subscribing his shirt and then they takeoff his shirt for that, and then he falls "} +{"id": "2007481", "video_name": "b9a4c12e-d286-522d-be5d-7a71e2a341fc", "text": "a woman surrounded by flying helichrysum flowers, time lapse "} +{"id": "6004057", "video_name": "152ea1ae-0524-5dc3-81f5-5fc06f347d5c", "text": "an orthodox priest in the forest typing on a typewriter at sunset "} +{"id": "3006471", "video_name": "d61df36c-9296-540e-abea-8084975bde54", "text": "but they did establish relations with the Tibetans. "} +{"id": "8002270", "video_name": "8d080729-a731-5f58-adac-caf6531739bd", "text": "a flight between titan, normal people watching, building are destroyed "} +{"id": "6002909", "video_name": "db71c31e-9ae9-520c-911d-b49b72ea9948", "text": "They reach a forest where they encounter strange and magnetic phenomena "} +{"id": "3004032", "video_name": "39fdfe51-8698-51df-a85b-ee6615633fcf", "text": "a dog catching a fly in the air "} +{"id": "6002129", "video_name": "87024945-1332-5edc-9287-9dfa15b0301e", "text": "a cat with bots in a family coat of arms "} +{"id": "3004757", "video_name": "4102728f-08e5-53c3-a2d1-8582d4ff82d1", "text": "house set in old egypt the piramids in the backround "} +{"id": "7003143", "video_name": "3c752713-aabe-5118-90e7-e2b83a23e6a6", "text": "a landscape of veneto with fog in the night with red eye in background, archelogical documentary "} +{"id": "3003179", "video_name": "019c2d19-1d23-559f-be24-cc0889b5426f", "text": "days papers turning in a paper calender "} +{"id": "6003555", "video_name": "7ad1ed73-dcaf-5b4a-ab94-5b5795b14e29", "text": "the wolf leader of lots of wolfs "} +{"id": "1006486", "video_name": "76af86d4-20f3-56ad-826f-dfb331b36be7", "text": "A police officer rides an imaginary motorcycle "} +{"id": "6003778", "video_name": "bb7e417f-5fce-5050-a6d5-6a5508e76ca4", "text": "gravel falling, pale sky, tall grasses, fast movement, image from above, noon time, light background, little dust, moving fast, falling from above, "} +{"id": "1006061", "video_name": "6f4b8c5f-f390-53c7-96f6-1350c0f767be", "text": "girl animation two friends are playing "} +{"id": "2005731", "video_name": "4b7fe20b-18a7-561b-8eca-dddcdab295ff", "text": "beautiful girl in green background, style disney "} +{"id": "6002814", "video_name": "ff84a009-a468-529f-b0ad-3bb3b492b052", "text": "Once upon a time, in a world before time existed, there was a vast and infinite void. In this emptiness, there were three celestial beings named Luna, Sol, and Terra. They were playful and full of curiosity, floating together in the great expanse. "} +{"id": "2003503", "video_name": "154f9d84-e205-5cd4-8840-f79e700ab708", "text": "girl standing on hill and watches airstrike, Michael Bay style, "} +{"id": "1005220", "video_name": "601b31e8-8e04-56df-a781-f999565fd21a", "text": "A highly detailed anime drawing of a circus tent blowing in the wind at night "} +{"id": "0003671", "video_name": "4179b543-c8f7-5c55-be63-23b6eaba5f86", "text": "elves on the ship sipping coffee, chocolate raining "} +{"id": "2007759", "video_name": "b4a2f2ce-ccae-5604-9510-99266c6961e2", "text": "Men with traditional Arabian Clothes on top of the hill watching the city 11th century "} +{"id": "0003956", "video_name": "008953e3-baac-5b31-9354-0c89dea309ef", "text": "Scene featuring a variety of fish in different colors, shapes, and sizes. The fish are depicted in a vibrant and diverse aquatic environment. "} +{"id": "6004427", "video_name": "67600df7-e3ba-5c7b-9608-445d15826ac5", "text": "A eviel tiger see the baby boy crawl "} +{"id": "0005671", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "couple in love on the sofa watching a horror movie "} +{"id": "6004526", "video_name": "778d1aea-f658-54d7-8220-9c3d9ab4dace", "text": "cyberpunk male chinese warrior sitting in the woods, 3d render, cgi, symetrical, octane render, 35mm, bokeh, 9:16, (intricate details:1. 12), hdr, (intricate details, hyperdetailed:1. 15), (natural skin texture, hyperrealism, soft light, sharp:1 "} +{"id": "4002728", "video_name": "2095a964-a4d4-5b19-84ab-03e09ea489b3", "text": "A face drawing pencil and face painting eraser on face canvas "} +{"id": "3004681", "video_name": "6623076d-c313-5045-b54b-b905a21fc933", "text": "Banner which has a design of Shree ram with sita "} +{"id": "1005311", "video_name": "618a3f83-f81e-5b65-a9b8-21cf1a501f1b", "text": "a little 8 years old girl stands alone in the dark on the street, view from afar, it is raining, drawing in gray tones with black rough lines, side view "} +{"id": "8001770", "video_name": "0e4f8364-6c4d-5c55-8d4d-4b7bd0ccdeed", "text": "cartoon, like desiney, vr 3, with colorfull Geeta and Ram, armed with curiosity, venture into the dense jungle, surrounded by towering trees and mysterious pathways. "} +{"id": "2007312", "video_name": "f7465ad6-84cb-5412-8d1a-035bccb67144", "text": "cars running, trucks speeding, a confident cute chicken walking in between traffic in ease, causal, facing front, 16:9, slow mention for the chicken, fast speed for vehicles "} +{"id": "6002272", "video_name": "58a26073-6213-5737-91f1-9406041d8fbc", "text": "Once upon a time in the quaint village of Wordville "} +{"id": "4004101", "video_name": "a0a43b06-3819-5e21-9fce-25c9834879a1", "text": "two friends from the army are eating lunch "} +{"id": "4002752", "video_name": "b511470a-27f4-5b3f-915f-660c2fea1cc6", "text": "Tim burton style, black and white, VHS filter, far shot of a deserted farm "} +{"id": "4004601", "video_name": "e04284e9-820e-5fd4-bf00-c9c8860ce716", "text": "High Quality Solar Station Business 3D Environment Project Scene "} +{"id": "8003271", "video_name": "acc7e3e4-1905-55d4-8ab2-52cdcbfe8447", "text": "alone girl in long white dress running on forest path with fog "} +{"id": "1003718", "video_name": "44a726b6-7fa1-5274-a642-53f447b97c18", "text": "Create an animation highlighting the serene postcard image of space ship Use subtle zooming and calming filters to enhance the beauty and remoteness of space ship "} +{"id": "0004384", "video_name": "08101bd6-dbf4-565b-9ba5-bfc0fb3398c8", "text": "Develop an animated video showcasing the microscopic world of red blood cells, with a focus on schistocytes as evidence of Microangiopathic Hemolytic Anemia (MAHA). Take viewers on a journey through the bloodstream, depicting the causes and consequences of MAHA, emphasizing the role of schistocytes in the diagnostic process. Conclude with insights into the underlying conditions, potential complications, and treatment approaches to address this unique form of hemolytic anemia. "} +{"id": "8001711", "video_name": "4c9f5f63-9ef2-52ab-9ac0-e4154b04e29e", "text": "a funny video of bunny eating carrot and dancing "} +{"id": "3003261", "video_name": "3fbc6eed-9a1b-5d3d-8230-dd467c00fa6f", "text": "many people gathering in the jungle "} +{"id": "7002968", "video_name": "79eb7a07-df18-52ab-9ba6-6b266af2006a", "text": "A cute Chinese female teacher sits at her desk and talks, Canon a7R3 25MM lens photo, HDR,UHD,8K, looking at viewer, "} +{"id": "2004976", "video_name": "e85e6825-d0db-52a5-9b2a-9668076d861c", "text": "Skull playing guitar, with slash hat 1280 x 720 pixels "} +{"id": "1006209", "video_name": "71d925e2-66fe-582d-95fa-5feb50f9e535", "text": "sound wave, background dark purple Message: ProAI (Font: MODERN) "} +{"id": "5001837", "video_name": "1283bda4-a813-5d7a-97ad-87e222b0d6ad", "text": "People running in gears moving the machinery of the world economy l "} +{"id": "1003839", "video_name": "46cadbf2-9e82-5682-9eed-ccf8791c8727", "text": "Poe dameron and finn from star wars together on a ship running away from something, realistic, cinematic "} +{"id": "1006803", "video_name": "7c859d89-20f2-5ead-92e6-15a9dad72c7a", "text": "Shepherd boy A cow next to it "} +{"id": "4003917", "video_name": "47a8d740-fa21-551f-b0a5-b0a52e5ecc16", "text": "The woman now at the bean bag, laptop on her lap, with the LongFlex cable stretching across the room unobtrusively. "} +{"id": "8003575", "video_name": "bda3f9b0-c543-575a-89f1-edf2edc1f51f", "text": "a 3 min long movie trailer abt aliens invading the USA "} +{"id": "7004520", "video_name": "6a478147-92ec-5bab-9882-7f2febad26fd", "text": "realized the irreversible consequences of his decision "} +{"id": "2007123", "video_name": "097654fc-bf63-514c-abcc-d2b3c4e9634b", "text": "Saying good morning to a client "} +{"id": "3004754", "video_name": "790c2bad-37b0-5cfc-952b-1f7ce4a3fa88", "text": "Medieval sailboats were sailing on the sea, the wind and waves were lapping at the sailboat, and the sailboat was in danger of sinking "} +{"id": "3005606", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "it gives cars in a race where they drift in a curve one behind the other and that the video lasts 15 seconds "} +{"id": "7002628", "video_name": "9b1a0100-2591-5d8b-b320-7621d4f09d57", "text": "theme park photography Message: Mixus (Font: MODERN) "} +{"id": "2003607", "video_name": "4c8f619d-f5f6-5107-bd38-4ae4e8ff2a59", "text": "Create an animation: Amidst a backdrop of profound darkness, visualize a school of gray fish harmoniously swimming in one direction, while a lone blue fish courageously navigates against the current. "} +{"id": "3003807", "video_name": "24b510b9-c9a8-5bbf-a8dd-760bc2b6e874", "text": "Cyberpunk Hydra Futuristic armored man in hoodie apocalyptic costume style hyper realism painting "} +{"id": "3005974", "video_name": "3c614254-5f8a-583c-9c66-c2d490e7fc7f", "text": "only rose colored wall , on wall hanging black frame in the middle . "} +{"id": "8003490", "video_name": "a18e4cdf-1fcc-57cd-9ba6-28e5e4ccef62", "text": "The onlookers were puzzled and looked confused on what is happening in a village in Strasbourg, France in the year 1518. "} +{"id": "8001048", "video_name": "5a02a943-e18d-537c-95c8-c11cd7880732", "text": "black and white angel flying realistic "} +{"id": "1006227", "video_name": "722f1812-ec37-537b-aef1-39b273e89b45", "text": "a barock british ship with flag and cannons sails trough a open ocen near the coast of an island 4k clean moving right slow mo "} +{"id": "2005642", "video_name": "577d0dc9-e91f-570b-a568-801866b3206d", "text": "water showering girl walking forward, wind blowing , hair moving "} +{"id": "6002829", "video_name": "adb21767-7106-5f47-8fb8-43c55fcfca06", "text": "Tank shooting from the cannon while it is driveing on a beach "} +{"id": "0005717", "video_name": "2012655b-6005-581f-ab30-015f3eabd6f2", "text": "a man fishing on a boat, studio ghibli style, pastel color "} +{"id": "6003528", "video_name": "01b2dc86-6090-5168-ae47-561bb378d940", "text": ", while Mrs. Martin transformed their home into a cozy space for local gatherings. "} +{"id": "5001698", "video_name": "c1d795ef-426f-59be-abe3-33637d7bfbe4", "text": "wired connection between two people, cyber, gothic "} +{"id": "6004161", "video_name": "35f9dda7-ac7a-5254-883a-8a4ad4f4c798", "text": "portal opens in a pit of lava "} +{"id": "1006497", "video_name": "76f37558-e3eb-5570-a925-bc888778d5a8", "text": "a boy playing guitar beachside evening time,digital art "} +{"id": "0005022", "video_name": "135c6bfc-a63c-5619-b098-868df44e93d2", "text": "Elk pulled a sled and sat on top of it with a little girl holding a dachshund dog,Christmas "} +{"id": "0003470", "video_name": "3e33e655-462e-5fba-8375-de09adbcb331", "text": "A beautiful Chinese product manager talk in the United Nations for AI product "} +{"id": "6004857", "video_name": "ef1068bf-be58-51e5-bfc9-1e084b1b779b", "text": "a land with beatful tree and lake a couple is sitting Message: a couple (Font: MODERN) "} +{"id": "3004972", "video_name": "820522c3-0909-53a9-a0ca-86c2bbe6dd11", "text": "zoom in, A serene river flowing gently under a rustic wooden bridge. "} +{"id": "8003520", "video_name": "72cea25a-5920-53a1-b577-2292b2f0054b", "text": "Create a video where a man is holding a professional camera, aiming it directly at the viewer. The man should appear focused while adjusting the camera settings. Suddenly, a bright flash emanates from the camera, briefly illuminating the frame. The background of the video should be a blurred nighttime scene, emphasizing the moment of the flash, 8k, colorfull, cinematic "} +{"id": "5001296", "video_name": "d21f91be-3413-5120-b5d9-19c0bd36c153", "text": "a young teen looking at their food in disgust "} +{"id": "3003854", "video_name": "e33e5c65-1f64-5aed-aba0-3880a3931b67", "text": "shcool girl stands with her friends, surrounded by villagers, who applaud and cheer for their dedication. "} +{"id": "1006488", "video_name": "76d32946-71f6-5dca-b9ec-a2f55cddae21", "text": "10 police cars driving fast with sirens on "} +{"id": "2004711", "video_name": "80dd1a78-2bd0-5318-afd2-884ba152d67f", "text": "create The Descent Module Landing On Planet Mars, "} +{"id": "3003159", "video_name": "ce961b61-96e7-5b1e-9d66-7091ebf6c7cc", "text": "The reenactment footage features minutemen in period clothing, their faces etched with determination, crouched behind walls and trees, taking aim at British soldiers. The musket fire is loud and reverberating. cinematic "} +{"id": "3004854", "video_name": "e955537e-6aab-59d1-87af-df3797c0da8c", "text": "hyperrealistic plantains in the produce aisle Message: planet pva (Font: MODERN) "} +{"id": "1006788", "video_name": "7c63c0ae-c8f7-534c-9a54-0b364cbccd7a", "text": "a man walking on the future city street, high quality "} +{"id": "1006272", "video_name": "72d7608a-25b0-5c7c-9d73-bf646ad5d185", "text": "a pink car full of flower moving to the left, camera zooming "} +{"id": "0003631", "video_name": "40cd1c80-2574-521b-a402-5a2be951a124", "text": "write success and motivation Message: 1 Attachment "} +{"id": "8001902", "video_name": "08ccb198-3ec0-56ee-a0b6-23fe008ade5f", "text": "robot dog walking in the rain "} +{"id": "7003973", "video_name": "20c1d1ee-d47c-5576-a001-0a8b07b0c7c7", "text": "a girl driving in a valley "} +{"id": "4003005", "video_name": "ca8cddb0-0d95-5d70-88a3-4e35c58067be", "text": "money plaundering inside of a toliet "} +{"id": "4002615", "video_name": "f69aff80-0941-5587-8b43-1e0fed615daf", "text": "pink smoke billows in a riot "} +{"id": "2005509", "video_name": "42deaf23-627e-58ec-9330-93033357cbbf", "text": "a golden retriever writes advanced calculus formulas on a chalkboard. The brightly hallway the chalkboard is in is reminiscent of MIT circa 1998. "} +{"id": "7003689", "video_name": "edb57365-b5c5-587e-842b-4eb6ef84977f", "text": "A space elevator acend vertically on a cable into space "} +{"id": "3004039", "video_name": "4808c23e-489c-57f0-8271-23663604873a", "text": "a young boy fishing on the river side "} +{"id": "0004356", "video_name": "079c7485-b00d-566f-91f6-5e8c08c27b0a", "text": "girl and boy mouth speaks happy "} +{"id": "2004302", "video_name": "578adb67-2d44-5b1f-a496-cc00e26a510e", "text": "Bolsonaro anda Felipe Netto Toasting together "} +{"id": "3006223", "video_name": "19179546-5baa-5329-bf09-0fc6caa09bcc", "text": "Begin with an engaging introduction showcasing clips of students studying, participating in activities, and striving for success. "} +{"id": "7002434", "video_name": "f44cad7f-90f4-56fc-9132-bfef62571a35", "text": "An easter festival in a steampunk city "} +{"id": "3003599", "video_name": "cac88215-cfa7-5313-970f-0284222e877f", "text": "Luxury cars driving fast on long roads. "} +{"id": "3003292", "video_name": "fee3c3bb-8046-539d-81b3-1d395226b6d5", "text": "TV news studio with the inscription BAZ on the background of Minecraft "} +{"id": "7002221", "video_name": "7336955c-1dae-51e0-a2b3-0061a106d8aa", "text": "long video of a women walking inside a dark forest "} +{"id": "0005732", "video_name": "2044313d-5c3e-59e3-a312-5a049b7c9591", "text": "happy Easter bunny jump around in the flowers backyard, full of colourful pattern Easter eggs in everywhere. "} +{"id": "1003761", "video_name": "45546968-ab40-5206-acef-32d06a54cd48", "text": "1 girl,detailed face,could flow,Masterpiece,8k, best quality, HD, intricate detail,ultra realistic,photography,HDR "} +{"id": "2007668", "video_name": "38dfb8c0-4208-5c78-bacc-a72eba49d87e", "text": "large soviet rocket tractor turns to a wine bottle "} +{"id": "2005959", "video_name": "59263cc2-6256-5e99-86bb-7ff77aa851e6", "text": "marking the path to this enigmatic ecosystem. "} +{"id": "0006650", "video_name": "305e3953-aa39-5294-b822-2476b23c5ca8", "text": "first show sloar system then saturn rings moving , eventually zoming out in outer space , shows a blackhole "} +{"id": "0006710", "video_name": "31843579-537a-51bc-b356-d45e37861231", "text": "portrait of girl close up y2k "} +{"id": "4003692", "video_name": "15e9a8f0-5c74-5aff-9443-5302a0beba3a", "text": "a microscope close up view of a lot of bubbles popping Message: bubbles (Font: MODERN) "} +{"id": "0005196", "video_name": "167bc2df-20b5-5a3f-84ff-8023a5ea7e37", "text": "Mew flies through a cloud in the direction of Galaxy "} +{"id": "0005570", "video_name": "1d1d817a-057d-5012-9da2-8242c9fd5fed", "text": "a military Mech robot unfold and stands up in a cyberpunk street at night silhouetted against neon lights "} +{"id": "8002335", "video_name": "2a808edd-996b-585f-af57-e75139282902", "text": "halloween dressed up boys and girls getting scared "} +{"id": "1006921", "video_name": "7e962a1d-b61f-51ae-ad85-804ce5378ba2", "text": "On the beautiful African savannah, a lovely leopard is playing. "} +{"id": "2007864", "video_name": "d1f5af69-68d0-53fe-ab08-296856f3a523", "text": "A boy winning a lottery ticket. "} +{"id": "8003700", "video_name": "60eaa7a5-b86e-509c-b1d0-39ba5736d2f5", "text": "kids running, flowers and tress moving, dog playing "} +{"id": "2003403", "video_name": "c21d97df-bf7c-5319-a8de-19414039efde", "text": "raining day a father holding an umbrella with a boy "} +{"id": "8002970", "video_name": "d6848c13-89af-5734-ba5d-87fac3e1b548", "text": "year after year, proving that the light of kindness could shine even brighter than the brightest fireworks. "} +{"id": "3005067", "video_name": "b19af9d0-e8ca-5a6b-8953-8a624b251564", "text": "variety of fresh fruits, vegetables, and lean proteins on table with a green alpha matte background "} +{"id": "7004712", "video_name": "a5c78812-ee38-58cc-a678-a13eeca13493", "text": "Cyber Police Officers are searching for their prey inside a subway station. Scifi, horror. Silent Hill, Blade Runner. "} +{"id": "8001255", "video_name": "99340b6e-e39c-5689-bb77-6f5b411c0e30", "text": "a butcher in a farm where contains cows and horses "} +{"id": "3003605", "video_name": "e4979c6f-49f4-5a4f-844a-9a8dda64a2d2", "text": "Ship sailing in the middle of the Ocean moving towards horizon. "} +{"id": "0004260", "video_name": "05fb2a50-e8e2-57c9-816a-4f7eb90b5307", "text": "man walk in destroyed soviet city "} +{"id": "7003403", "video_name": "3977fc72-df7f-585b-bd2a-e9225285fb31", "text": "dog in a land with blue sky "} +{"id": "7002217", "video_name": "ce5a3d41-4849-587b-959c-15db5cb19bd3", "text": "theme parks fantasy pools and paradise "} +{"id": "2003057", "video_name": "4bdfd225-e852-5a77-a083-24df7ace6850", "text": "girl walking in a fashion show "} +{"id": "7002840", "video_name": "605a2c0c-1973-5b5a-b4c1-f2d3b3a058f9", "text": "rapper singing into a mic with a sunset in the background "} +{"id": "8003820", "video_name": "ca578ddf-aaeb-5022-a13f-566301860cc9", "text": "the elephant looking at herself in a calm river, noticing her growing size "} +{"id": "2004673", "video_name": "780d324a-9473-56b8-a1c5-5822885f2474", "text": "An athlete running, nearly giving up but pushing forward. in Van Gogh style "} +{"id": "8003713", "video_name": "77734bec-82f3-5e0a-8f92-24131fe6b921", "text": "a mother and baby turtle are watching the waves together. the image of the mother turtle begins to fade and the baby turtle is alone "} +{"id": "0003091", "video_name": "36d710ee-86bb-54d8-90ec-e16fb7f734eb", "text": "a tyrannosaurus in the style of Mark Ryden "} +{"id": "1003735", "video_name": "44f2151d-afc0-57e2-a061-0406dff3b544", "text": "dark fantasy retro style hut in a forest with chicken legs "} +{"id": "1003465", "video_name": "4025ef32-2c52-5d6d-8f71-8c1d86ae9f3f", "text": "A giant caterpillar is running inside the panels of a spaceship "} +{"id": "4002294", "video_name": "90dd6e73-901a-5624-8456-48367655fbef", "text": "spooky scene featuring a group of humans levitating together in a dimly lit, eerie setting. Emphasize the sense of eerie suspension and supernatural occurrence "} +{"id": "0006721", "video_name": "31ba28a2-93e1-5f6c-a945-013242ea9f5f", "text": "a tiger walking on the surface of mars, rover footage "} +{"id": "2004584", "video_name": "57086a6d-321d-5cf3-b9e3-48eed699b923", "text": "an Asian college student is playing football "} +{"id": "3003192", "video_name": "908f3b17-9fc4-5e15-af62-22c6752e917a", "text": "Music DJ dances and scratches record "} +{"id": "4004598", "video_name": "ad78256d-d7f3-5a0c-94d7-5d222e9969a0", "text": "bob marley falls off a building "} +{"id": "0006456", "video_name": "2cd90e98-72d3-5520-9f1d-8e5dad8344d4", "text": "A boy walking in the street wearing tshirt "} +{"id": "3003302", "video_name": "c90282cc-08b7-5aa3-bcec-ea550c3822f9", "text": "a young urban dancer goes to a competition to win a scholarship "} +{"id": "6004472", "video_name": "6dcfdbbd-963a-54aa-bf5d-e035987b1823", "text": "fire and smoke covered everything behind the buildings "} +{"id": "8003943", "video_name": "da1d4c19-8fc4-5431-bec2-b4c39920ca70", "text": "chuck e. cheese plays skeeball, training video "} +{"id": "7003984", "video_name": "41c00d91-9b09-5a4f-ab15-dce4bcd3dac2", "text": "a 1 electric bill and a soler panel playing cricket. electirc bill doing batting and soler pannel dillivring bowel. bowel will go stright into wickets and electirc bill will bold out. and soler panel will win. "} +{"id": "1005770", "video_name": "6a2af32a-9846-5b3d-b8fb-2ca234403756", "text": "Leo, the lion, paused and considered the situation. "} +{"id": "2007081", "video_name": "fcf7b908-2e95-5e25-a150-18e7a54c2ad0", "text": "Introduce the boy with tied long black hair and brown eyes, and the girl with blue eyes and straight dark brown hair, both looking curious and somewhat shy. "} +{"id": "0005695", "video_name": "1f94b1bd-1863-56e4-a2ba-1decae388f4b", "text": "cool teen boy with long hair on the beach "} +{"id": "4002065", "video_name": "fe934bb2-1569-598c-b02d-bf626407a2d6", "text": "Anime Opening of Birrdseye view of Military Jet flying over grasslands "} +{"id": "3005623", "video_name": "01fae95d-f957-5948-8f69-fbe778c2b348", "text": "1910s old black and white film of stormy clouds in timelapse, super 8mm "} +{"id": "1004273", "video_name": "4f0cfb4c-6cba-5a9e-b0e4-50132fca05dd", "text": "a woman tied to a man by a rope, holding scissors and cutting the rope to free herself from him, ultra realistic, 4k, hd, sky colorfull RGB "} +{"id": "2003278", "video_name": "b49d5f1f-b425-5b72-b102-dbfa96b440f3", "text": "A festive scene with villagers dancing, singing, and feasting under the Unity Tree. The air is filled with joy and gratitude as the community celebrates the success of their collective efforts. Message: story (Font: MODERN) "} +{"id": "2006417", "video_name": "aabe6875-3c92-5cc8-a544-e1324f166759", "text": "Hello please help me generate a 3D Mickey Mouse "} +{"id": "0004009", "video_name": "01852aac-daa3-507c-a0cd-3dbe5b958534", "text": "double rainbow on the planet neptune "} +{"id": "3006741", "video_name": "e9c4bf82-1a5b-5b1d-b73d-0ad11d2e4fc7", "text": "A couple dancing in the moonlight, surrounded by a sea of fireflies. "} +{"id": "1006177", "video_name": "710e0e49-40cc-5164-a736-bf77164116ec", "text": "show an image of USA naval aircraft carrier and Chinese naval destoryer fighting in Pacific Ocean "} +{"id": "8003666", "video_name": "05f1538e-7a50-55d5-afef-808134a434a8", "text": "jewellery products to showcase for a eCommerce website "} +{"id": "0004338", "video_name": "0758e2ec-4801-579f-a8fa-527800f09e76", "text": "a young Hebrew man in a colorful tunic, being thrown into the bottom of a dry well, in the middle of the desert, by his jealous brothers, arid desert, clothing from the time of the Hebrews in Egypt, ultra realistic, 8k "} +{"id": "8002290", "video_name": "34f65013-8200-5a15-8cc0-1a5349fae300", "text": ": a man is speaking with the proffessors, 8k ultra hd, Pixer style Disney "} +{"id": "4003849", "video_name": "3fee0f4d-81a0-5479-a105-ff6ba9f8698e", "text": "A boy having kite in hand and flying in the sky with full enjoyment. his face express all the happiness "} +{"id": "0005182", "video_name": "16342164-e261-5d7b-bf81-c479ed51040f", "text": "a girl in a red flowy dress is dancing under the stars, in a field, under the night sky, with a boy wearing a black and white tuxedo, 4k cinematics "} +{"id": "4004423", "video_name": "90b9cbb8-32d6-5952-a557-0cbd2d3e242c", "text": "Tom and jerry fight seen 8k "} +{"id": "4002891", "video_name": "e343fa4f-97a3-5a45-87ae-dcd2290d31c8", "text": "an animal image using hand shadow on wall "} +{"id": "5001617", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "Luke Skywalker cuts cheese with lightsaber "} +{"id": "7003359", "video_name": "81ac69c8-d8b7-5837-8efc-21fb5c0cfbde", "text": "A beautiful world of video game in motion sequence Unreal engine 5 rendering "} +{"id": "0004423", "video_name": "08af6ab8-4fd7-5e52-a0bd-9bb7310a96dc", "text": "change the scenery to a captivating Illustration set in a mystical daydream "} +{"id": "0004344", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "create a sad 6years girl talking with her father in a balcony. keep it cartoon background "} +{"id": "1003703", "video_name": "4451783c-b00c-590c-a58c-ccf02beb3400", "text": "render a hyperrealistik 8k explosion inside a cave "} +{"id": "7003315", "video_name": "aaf62f17-27aa-5b77-9bbc-bbcc8cdcbd3f", "text": "a animate lion walking in a beautiful 3d jungle and affter that jump form one tree to another tree "} +{"id": "3003701", "video_name": "e97dc7d7-71ef-5ac7-a057-33560d0a8d26", "text": "Rainy day, bamboo forest, table with teapot, books, book style "} +{"id": "0004670", "video_name": "0d08a02a-a75f-5b28-9ba5-b99cbfd45c76", "text": "Alien speaking to an astronaut in the moon "} +{"id": "2006603", "video_name": "58e425c2-8c30-573c-9dec-a92f17d0b567", "text": "A cartoon of a army officer dissapear into air , High quality "} +{"id": "4003533", "video_name": "2cd0faf8-92d8-5caa-bdfa-734ea5f34b3b", "text": "cinematic shot of greek lighthouse shining light on a greek boat caught in a stormy weather, epic, dramatic, waves, storm, thunder "} +{"id": "3006830", "video_name": "f34bee9b-e123-58ab-9463-f286b0c7b652", "text": "Chhota Bheem and Krishna racing each other in a f1 eace "} +{"id": "3003857", "video_name": "42f1baeb-2704-5564-a06a-f4e37cad6e78", "text": "Super moon in blue color in dark night, glittering butterflies flying aound "} +{"id": "3006230", "video_name": "96af00e7-8d56-5387-99f6-39118b0e8a46", "text": "trembling lips and moving eyes, body shaking with laughter "} +{"id": "3004489", "video_name": "542c4edf-6c00-56c7-809e-eb83f981f674", "text": "A beauty girl,she is from china, Wear necklaces and earrings "} +{"id": "7004625", "video_name": "5483a96a-8aaa-57ee-b0c8-190f6531c8a4", "text": "Chinese dragon flying around in China, people watch the dragon "} +{"id": "2004696", "video_name": "fbfa6870-df40-59b0-9c77-26dc961b600b", "text": "versace the dreamer fragrance in a field of flowers "} +{"id": "3003850", "video_name": "1df1fa36-569e-56ec-8f45-710dfcf7fdeb", "text": "a cool girl and a cool anime boy "} +{"id": "3004040", "video_name": "4b76a168-1202-5700-9058-f59f0d2bf17e", "text": "top of a mountain overlooking the city Message: Adriana (Font: MODERN) "} +{"id": "3004900", "video_name": "5a90eeff-1b26-589c-9b40-5f0d0a6f5ed3", "text": "Generate an image of a cat wearing a school uniform similar to the ones featured on the Kittydav YouTube channel. The cat should be sitting in a classroom setting with a chalkboard in the background. The uniform should include a collared shirt, tie, blazer, and skirt or trousers. The cat should have a friendly expression on its face, and the overall scene should have a warm and inviting atmosphere "} +{"id": "1006422", "video_name": "758dc1c9-319b-5836-9744-16eff7494f01", "text": "A captivating image of an adventurer or archaeologist diving into the depths of the ocean with the silhouette of Atlantis in the background, inviting viewers to join the journey. Message: 1 Attachment "} +{"id": "8002372", "video_name": "6636c7f0-b0cc-5dd3-b984-22626da4df84", "text": "a car driving on the neon road with sunsetting and laser shooting out its eyes, 4k , 3d animation, camera zoom out "} +{"id": "2005759", "video_name": "e3856a9f-000b-56b8-a768-3e4c07c01f51", "text": "Generate an animated scene where Lily encounters Gruff, the gentle giant, at the bridge. "} +{"id": "6004205", "video_name": "bc75c65c-ed00-5dbb-a714-c2e342957988", "text": "made a video of a young girl about 19 years old with pinkish white skin, round breasts, black hair bathing in a clear stream in the middle of a bamboo forest, in the blue sky the moon was very bright and there were a few clouds. "} +{"id": "6004572", "video_name": "08d5f5ca-0ef6-574b-9986-2870789c1d77", "text": "Happy New Year water EFFACT (Font: MODERN) Message: Pankaj Kanwar (Font: MODERN) "} +{"id": "0004705", "video_name": "0da37fe8-bdeb-5b9a-920d-8a3348035204", "text": "A trendy woman with headphones is dancing and singing "} +{"id": "1006494", "video_name": "76e4c58b-ffa3-5dbf-8115-9b1c9db45b5c", "text": "image of dogs looking at forest "} +{"id": "8001410", "video_name": "e43cba4f-0180-5e9e-94e0-fb66ce44cbd0", "text": "A charming garden nestled in the mountains , Disney 3D Animation "} +{"id": "1004836", "video_name": "59600827-7aa0-5682-b042-bfead320dcfc", "text": "a civil engineering with a bucket runs away "} +{"id": "3003339", "video_name": "626cc373-b4d2-5fc6-b963-d5340478aa52", "text": "female making money online selling digital products "} +{"id": "2005363", "video_name": "4e2a422e-edb3-550d-89ee-d4d2e11c37ab", "text": "neon yellow fabric curtain waving in the blue sky "} +{"id": "4002985", "video_name": "220fd8f3-875c-5f8c-ae47-9b34b01032e0", "text": "Sterile white room with tall life sized mirror reflecting a majestic red mountain "} +{"id": "3005642", "video_name": "0f687e23-cdf2-55fc-85eb-a04efe92fa5b", "text": "A seaside promenade in Saranda, Albania, with a woman playing a traditional instrument and a red headscarf fluttering in the breeze "} +{"id": "0005045", "video_name": "13ae28c4-edae-5a10-b36d-12746b140b46", "text": "A woman dressed in red style The story with a baby in a carrier "} +{"id": "2005895", "video_name": "96b34867-79d9-53ea-b08d-586b1597717c", "text": "a dog running across a field in 16:9 "} +{"id": "3006554", "video_name": "a594204b-1dce-5faa-926f-255e1d0475f3", "text": "Incorporate visuals of futuristic technology integrated into the city, such as holographic displays or smart infrastructure. "} +{"id": "4004731", "video_name": "249af6ae-4c44-5f3b-b8f0-3e0ff9704f73", "text": "sparkling birds flying around the main character, moving plants, bloomy atmosphere, 4k "} +{"id": "0003602", "video_name": "403b489a-c42b-54f2-a5f1-499f33d69fbc", "text": "hummingbird cuddling a dog in Minnesota "} +{"id": "6004920", "video_name": "7374a956-c23e-5a18-a34e-4a4b0850f57c", "text": "A dynamic and imaginative scene where a cartoonish or heroically styled dog is aiming a projectile or energy weapon at a dinosaur. The dinosaur is depicted as surprised or in a defensive posture. The background is a lush prehistoric jungle, emphasizing the contrast and surreal nature of the encounter. The scene combines elements of fantasy and prehistoric times, creating a visually engaging and imaginative depiction of an unusual encounter between a dog and a dinosaur. "} +{"id": "2004298", "video_name": "2f4fe7db-2f45-5584-a224-eb5a3280850b", "text": "James, filled with pride, painted a beautiful mural on the nursery wall, depicting a world of dreams and possibilities. "} +{"id": "3003879", "video_name": "c8892b90-593f-51a7-af4b-0f1f7b123fff", "text": "A beauty is walking barefoot on the beach, with two rows of footprints accompanied by waves. The sky is blue and the wind is cool, camera zoom out and around "} +{"id": "2005020", "video_name": "fc187273-cf8e-5984-a435-924049ebcd59", "text": "The shire from the Lord of the Rings in the artistic style of studio Ghibli, opening cinematic. "} +{"id": "2004386", "video_name": "e18ebc49-fce7-53e1-a6da-be4ca79e1504", "text": "face of a woman wearing a white rabbit mask "} +{"id": "6002265", "video_name": "405c6065-930e-5538-b95d-6aa827e9e043", "text": "Dates being used as a natural sweetener in a bowl of oatmeal "} +{"id": "4003035", "video_name": "91cd3bfe-a8b1-5db7-8b72-360478c440b4", "text": "In a world where the veil between reality and fantasy is at its thinnest, lies an enchanted forest. "} +{"id": "6002570", "video_name": "a5214374-2dd6-594f-a6bc-4e4399478259", "text": "A book engraved on it with the inscription \u201cDIARIO DI BORDO\u201d, the inscription can be seen well on the cover, the book is old but vintage and has beautiful gold details. "} +{"id": "6002123", "video_name": "e9cf9b3c-3697-5850-bcad-e50c1361d781", "text": "Attack on Titan. Eren Yeager transforms into Titan. "} +{"id": "3003138", "video_name": "ef90c168-235d-534e-be96-08da10cf89f9", "text": "titan uniforms logo image using GPT Chat to get answers "} +{"id": "2004109", "video_name": "d1356dc6-6453-5fdc-aeb5-bc651038d3ac", "text": "raindrops on side of black car, closeup, top bright sunlight, drip and form to write the Message: HELP "} +{"id": "1004324", "video_name": "4fdc006d-01ae-588b-8709-4e002cb09c13", "text": "Lady Palutena against a Victorian backdrop bridges her majestic aura with foreground intricacies. "} +{"id": "6002928", "video_name": "104c346a-50ae-50e5-b1ba-221b84dadb70", "text": "there was a curious little bird named Charlie. Charlie loved to think about everything "} +{"id": "1006688", "video_name": "7a9d8d1a-33ed-541f-8dd0-1d8d532529f6", "text": "create a company profile video for garment industry corporate named harmony, in 3d style "} +{"id": "6002253", "video_name": "6126af87-7179-5619-8684-bb08ec5cfd74", "text": "people living on the moon worshipping a giant gold coin with big x on it "} +{"id": "0005007", "video_name": "1325c59d-459e-5e68-833e-393acf3c5c3d", "text": "monster soda magic dancer half horse person "} +{"id": "0004419", "video_name": "089c6573-c808-5652-99c3-5d011aac941d", "text": "create an animation of a character representing The Sorrows of Young Werther "} +{"id": "3006957", "video_name": "abc5754c-b4f7-53a6-907a-788fc529cd62", "text": "two women, one female and one male, taking caress and exchanging "} +{"id": "6002667", "video_name": "e9f8accc-99fc-51de-97f1-df57bcf79e54", "text": "The robot runs on the surface of the Moon "} +{"id": "3004650", "video_name": "dde43823-1059-5b18-9f5d-eb58cd53326c", "text": "the country of Kyrgyzstan in 2077 "} +{"id": "3004912", "video_name": "d87b5a4a-b4fd-5f1b-871c-aeca4bbb87ee", "text": "(Realistic), (masterpiece 1.2), (Ultra HDR quality), (photorealism), Milorad Dodik running away from police officers "} +{"id": "2005159", "video_name": "8da2d51b-517d-597b-93e7-f0ec7756fa17", "text": "In the darkness, a candle is lit "} +{"id": "8002026", "video_name": "b1d1bbe1-678e-574e-8234-c04c34f65ed6", "text": "Everyone goes out to celebrate Christmas together "} +{"id": "4002045", "video_name": "008a715a-8f9a-5eb0-bfe0-9dbdc5604e9c", "text": "close up of a small kid carrying a lantern, bright moon on the sky "} +{"id": "1003639", "video_name": "430ecbf2-a37c-5aff-9e07-e9d4ad0fe1c2", "text": "A life of human from baby to old in face changing "} +{"id": "2006811", "video_name": "9f8c91f0-30de-59d2-a62c-b96610c88cc1", "text": "movie still of an epic medieval fantasy town barracks, the town is living with life and has lots of intricate details, there is a knight that is wandering in the distance Message: Victor (Font: MODERN) "} +{"id": "3006005", "video_name": "be557f18-f143-5bf1-a8b1-9032bf4820b9", "text": "super mario walking sadly in a long desert "} +{"id": "7003734", "video_name": "bdaf15ee-6958-5361-bd16-4931bb2db736", "text": "The character watches a sunset, map in hand, hinting at more adventures. "} +{"id": "7003277", "video_name": "688e8685-f61e-55f3-a04d-a0d630ec1924", "text": "a man is walking, cyberpunk city, flying particles, clouds "} +{"id": "7002143", "video_name": "33e1bf14-37e7-5b34-a094-f493012810b4", "text": "strawberry character, angry, standing, with liquid, 3d render, funny, bright colors "} +{"id": "2004118", "video_name": "973e45aa-f930-5737-9276-91cca1662add", "text": "Pixar style Harley Quinn girl, 4k, 8k, unreal engine, octane render photorealistic by cosmicwonder, hdr, photography by cosmicwonder, high definition, symmetrical face, volumetric lighting, dusty haze, photo, octane render, 24mm, 4k, 24mm, DSLR, high quality, 60 fps, ultra realistic "} +{"id": "2003949", "video_name": "4c1d78bb-1e51-5dc9-9d9f-961990429f3b", "text": "And out of the ground made Jehovah God to grow every tree that is pleasant to the sight, and good for food; the tree of life also in the midst of the garden, and the tree of the knowledge of good and evil. Message: 1 Attachment "} +{"id": "1006582", "video_name": "7895b92f-ff36-551e-ad4b-0b88c81de915", "text": ": joe biden dancing with hunter biden happily ever after with a small image of donnald trump in jail "} +{"id": "7002353", "video_name": "fe04c25f-ccb4-5893-9cb9-325cd41b61fe", "text": "girl and boy walking in jungle with hands in hand "} +{"id": "1004806", "video_name": "58d98d9d-ca37-5aae-abec-5a7788d035d7", "text": "The episode opens with a serene view of Lumina, a tranquil town nestled amidst luminous meadows. "} +{"id": "0006511", "video_name": "2dceb1b0-12ac-5f31-9c29-6046f81ea3b1", "text": "alien jelly fish in alien world abstract,realistic,avatar,animation,super high detailed,8k "} +{"id": "3005935", "video_name": "3bedd3ea-1f54-58d8-aceb-4612935f9d98", "text": "Bruce Wayne travelling the world, Ghibli animation studio,fast movement. "} +{"id": "6003832", "video_name": "3d41b68a-c8d6-52e0-b7a9-71c222b069d4", "text": "A scenic view of a woman planting a garden. A dove is perched nearby. In the sky overhead is a rainbow. Use a traditional Mexican Art theme. Oil painting technique, 1:1 size. "} +{"id": "2003256", "video_name": "51eec481-9328-57c8-b67f-5d0b3a9f5d58", "text": "the medallion is under water, the sea is raging, thunder is thundering, a wet medallion, raindrops are flowing down the medallion "} +{"id": "7003672", "video_name": "af250d15-a4b5-5c2d-a3f7-f2b52ad2e56d", "text": "The sky in Beijing is ablaze with fireworks. "} +{"id": "0003196", "video_name": "391c523f-1544-57a1-911e-19dc5df64d81", "text": "Bhagat Singh and his fellow freedom fighters facing the gallows with unwavering resolve. "} +{"id": "2003328", "video_name": "59d44d0e-e842-5028-bffa-42b994138f99", "text": "huge ground full of thousands of dead bodies "} +{"id": "4003544", "video_name": "33dd340e-4c0b-5549-ad19-5abb5e5ccdf0", "text": "1girl, solo, black hair, long hair, braid, looking at viewer, parted lips, shirt, brown eyes, dancing, indoors, upper body, twin braids, jacket, white shirt, collared shirt, lips, realistic, jewelry "} +{"id": "7004993", "video_name": "2901d29c-0129-5934-b497-3ea3ad82a78a", "text": "a nervous woman walking into a room and down a dark hallway "} +{"id": "4002675", "video_name": "0b93a429-cfd5-5e61-b63a-a635985a3535", "text": "child playing football outside his house ,studio Ghibli "} +{"id": "6002024", "video_name": "4b827437-7ee6-5951-9fb4-2395b8858298", "text": "people celebrating in the streets of a city "} +{"id": "2003345", "video_name": "3e4e5818-655a-53fd-9dc1-8bde124650b2", "text": "cyberpunk beach front property. view from the water looking in towards the homes at night. neon lights illuminate the buildings and beach. a cyberpunk boat is passing by. "} +{"id": "7004319", "video_name": "1f9665cd-b194-569b-aa72-3a226aaf4a42", "text": "The secret to reaching the heights of success is to struggle, not to give up. "} +{"id": "3003145", "video_name": "fabc7f49-4877-5dcc-af13-bda45da46da5", "text": "A man with a white beard cries because he lost a blue pack of cigarettes and then looks for a \u20ac20 bill "} +{"id": "1003964", "video_name": "492cc155-bfe2-5428-a5b3-0223bd27a90a", "text": "photo of man disturbed on ship "} +{"id": "7004898", "video_name": "8ac6f569-054b-5846-bbef-37df737de444", "text": "Footage of a stunning futuristic city filled with advanced technology and towering buildings. People navigate using flying vehicles and smart robots.) "} +{"id": "3004934", "video_name": "c1753133-ad8e-57d7-9198-3a0d7e9f2fc7", "text": "create Italian woman with technology features. "} +{"id": "3003720", "video_name": "f438026e-998a-5dc4-ba38-b9ddc62ba3b0", "text": "Emily curling up next to a faithful dog named Max, using him as a living blanket.at Cozy little house on the outskirts of a bustling town cartoon image "} +{"id": "7004852", "video_name": "da946b2e-0ba0-5ede-9a89-20f9041c128e", "text": "a metaphorical journey where the protagonist forgets his heart near a lady. "} +{"id": "2007271", "video_name": "176830f0-5296-5de7-ae8d-795232641173", "text": "worms eye view, a bottle with weird weather inside of it, vivid colors "} +{"id": "3004321", "video_name": "f56b156d-99c7-5f55-b35f-6317726b5f43", "text": "full motion cartoon in the style of HR Geiger of a purple chubby female bipedal dragon lady with a Karen Wants To Speak To The Manager haircut who is with a group of 4 overweight superheroes called the Calorie Avengers done in the style of the scene in Endgame when all the heroes come for Thanos "} +{"id": "6003678", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "a plane flying in a beautiful sky like an airlines commercial "} +{"id": "6004265", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "I want to make this scene appear magnificent. "} +{"id": "7004884", "video_name": "2098077b-e706-5110-aae8-126fc63b8322", "text": "Ahriman muscle dark master, surrealism, highest quality. colors Rosewood brown, shadowy black, and soft blush. "} +{"id": "1005180", "video_name": "5f5867a7-c6a7-5f33-ad18-3ab47ff683ba", "text": "Through towering gates adorned with mystical sigils, you enter a magic school nestled between ancient trees. The air crackles with energy as students, clad in robes of vibrant hues, hurry to enchanted classrooms. Arcane books float by, and wise instructors guide aspiring wizards in the art of spells, creating an atmosphere of wonder and limitless potential. "} +{"id": "2005994", "video_name": "a41ab293-825c-5f03-b3cd-ea9b07411f88", "text": "Magical Blue Potion: Illustrate a scene where Sophia unveils a small vial of magical blue potion, with a mischievous glint in her eyes. "} +{"id": "7003148", "video_name": "bf090874-55e9-5d77-a456-c5d9ef51415a", "text": "beautiful sri rama with top knot, meets mother sabari, she looks at him with love and yearning, she is elderly and offers him half eaten berry from basket, flowers all around, photorealistic ,in style of claude monet. "} +{"id": "6002522", "video_name": "48d0396f-3ef8-570a-8319-326e5149b7f0", "text": "male man drinking beer with friend outside a pub "} +{"id": "2006085", "video_name": "273ecf8b-3160-5c6f-8351-6fd8a32a6591", "text": "Alex a teenage boy sitting in beach and seeing the waves "} +{"id": "6003540", "video_name": "54bead3f-6572-5cca-bcf5-5f42d1e13e33", "text": "but the days passed and the leaf remained. "} +{"id": "0004140", "video_name": "03ee1b49-625b-5698-9ac7-e5d08bf6d332", "text": "Once upon a time in the whimsical land of Jugelia, where "} +{"id": "7002436", "video_name": "5ef69dbd-5303-5ff0-953e-724631a93973", "text": "a projector playing footage onto a screen in a dark large room "} +{"id": "0005752", "video_name": "2097e437-431e-5b5d-9a4d-9270ae330289", "text": "An artificial intelligence excavator loader works under computer control "} +{"id": "0004175", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "let this little girl jump high Message: 1 Attachment "} +{"id": "3005037", "video_name": "fa9b7f0d-f51d-5810-a4a9-94d3a5bb50aa", "text": "Dead plants in the Gobi Desert. 9:16 "} +{"id": "3005734", "video_name": "88eeeec0-8c76-5be0-89e2-273fcb552742", "text": "people carrying the coffin marching very slowly. to the right only one step at a time, no jumping, no wave, crowd in the distance should be completely still "} +{"id": "2004769", "video_name": "94d4da23-5003-5716-b4ad-ca5db0785071", "text": "Beautiful woman fishing in a boat on the sea "} +{"id": "0005663", "video_name": "1ee318fd-2e23-51c1-a8d9-eaba2cf1e057", "text": "Humanoid robot running through the street "} +{"id": "6003857", "video_name": "1d9d44b3-b087-54d0-ad27-35ab5a2fe110", "text": "camera following behind a flying bird above a sea of clouds, sunny day, dramatic lighting "} +{"id": "6004568", "video_name": "dbb0a357-f8e6-5475-bbc0-715c3e8ee647", "text": "the cat is dancing on the dance floor doing a spin. "} +{"id": "3004536", "video_name": "b6e50b61-d261-539f-a546-a885566ec807", "text": "sun goes down and the moon comes "} +{"id": "7003708", "video_name": "55de329f-bad8-5c1f-aa0d-92f00d5de332", "text": "Clock. Large in an abandoned house with camera zoom "} +{"id": "8001995", "video_name": "f03a2f97-845c-5699-9953-3973248a511b", "text": "A tranquil village setting, a turbaned man sitting beneath a large tree. "} +{"id": "2006800", "video_name": "c173c9b9-2180-5bb1-a86b-d46c46e6cf79", "text": "house in the woods on a sunny day "} +{"id": "6004876", "video_name": "4a3c0412-205f-5034-89f8-631769b5bf17", "text": "a little adorable girl with big smile, running on a path, near many flowers, under a sun shine weather, watercolour, good lighting, 8K "} +{"id": "2007898", "video_name": "b05002cc-f906-52c2-9eca-6ba72b618f3f", "text": "In the style of Japanese manga, robots and humans do experiments together in a scientific research laboratory. "} +{"id": "3004483", "video_name": "44772cfb-f5b8-5bcc-8aab-74b33083bae1", "text": "God Shiva is dancing in angry and devil is running away "} +{"id": "0004996", "video_name": "12f91544-3064-5c0f-ada0-2e5639c21fc9", "text": "ship with writed name on the hull \u201cAdelia\u201d, under Cyprus flag Message: petronav (Font: MODERN) "} +{"id": "2007811", "video_name": "5b313cda-db6a-5aa9-a7e9-fe8879434ef5", "text": "images of Lightning storms, Tsunami, Tornado, hurricane, "} +{"id": "5001145", "video_name": "85ceb466-5263-554e-8ac8-df44a7106b16", "text": "catwoman fighting with group of tugs "} +{"id": "1004801", "video_name": "58b859dc-84db-5f69-8361-fdef3e5f1542", "text": "Young man alone in the apartment, evening "} +{"id": "0006153", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "A golden lion king overlooking the divisions "} +{"id": "8003270", "video_name": "d6ee70a5-b68f-58e3-8227-98be2933298d", "text": "a city at the end of the world "} +{"id": "3005153", "video_name": "5c50d306-1e19-5db3-81b0-663f866da47a", "text": "a man singing and dancing under the bridge "} +{"id": "6002874", "video_name": "11635872-901c-5fb4-9a51-6b499d4d9161", "text": "heavy storm covers all with lightning powerfull effects "} +{"id": "8003419", "video_name": "b66a32d2-fb93-54ba-98d1-73971c203323", "text": "astrology card about neew moon in taurus on the 4th house "} +{"id": "4004414", "video_name": "687321c8-98a7-5bf5-80b6-11a90569709f", "text": "deadpool celebrating a birthday party, cake, ballons, balloons, banners, streamers good lightinh, hd hyperealistic "} +{"id": "1005427", "video_name": "63b5e2e9-f112-5058-ae2b-5ed6f2324487", "text": "New Orleans, Mardi Gras day Rampart Street. There\u2019s a cool cat, playing a guitar and people around them are dancing in Mardi Gras costumes. "} +{"id": "7003213", "video_name": "e0195102-5511-5f8b-8b1f-98811632df8c", "text": "horror cave inside with long trees and different shaped sulpture "} +{"id": "1004805", "video_name": "58cea8cd-0668-57b6-9595-7a99c440ec71", "text": "walking on mars moving head around. "} +{"id": "1005581", "video_name": "66b5abae-988c-5bfc-bd45-ab4dd7d3e752", "text": "A diverse group of people dancing with a robot in the office, ultradetailed "} +{"id": "4002431", "video_name": "1480758b-a855-571a-8263-1ca08f890ea1", "text": "Cars driving in front of Wanjing Soho Message: 1 Attachment "} +{"id": "6003999", "video_name": "99735915-d14b-5255-aabc-b010bb9a8d85", "text": "the letter A bounces on APPLE Message: A (Font: MODERN) "} +{"id": "2003250", "video_name": "d7562553-0785-54b1-8178-f29bc3299118", "text": "Bruce Lee eating dim sum at his desk in front of the computer watching kung fu movies "} +{"id": "2004719", "video_name": "2c07ed72-d25d-50fd-b7c1-f7f21dee3e83", "text": "My name is Kamran, and this is the story of my incredible journey with my friend, Faran. "} +{"id": "2007869", "video_name": "ae84854e-2daf-5f48-b40b-9b38b3316594", "text": "the dawn sun reflected in the sea "} +{"id": "6004800", "video_name": "b5fd3417-a423-556e-a528-5c7ba76775a6", "text": "the end printed on top of dense forest "} +{"id": "7003832", "video_name": "aa664fb6-2400-5a82-b532-3ea4f4eea48e", "text": "The influence of mythology on literary magic is undeniable. "} +{"id": "2005862", "video_name": "24a4f06b-4810-52da-b55b-809de0a3037c", "text": "thoroughbred race horse running from the real world into the metaverse "} +{"id": "1005583", "video_name": "66bc08a3-fce0-5ce5-9760-fda250484103", "text": "Laboratory worker is writing notes Message: 1 Attachment "} +{"id": "3004180", "video_name": "18ca78e8-7425-5cf0-8183-0b0785cd0c5a", "text": "tech robots playing drums and guitar and piano on stage 8k 16:9 "} +{"id": "6004745", "video_name": "f7058f43-6140-5ef0-9c0c-70208bb3875a", "text": "Denis realized this and sent the doctors to nakui . He began to observe proper nutrition and actively engage in sports. Over time, his health completely recovered, and he again became an active and intelligent boy. "} +{"id": "2006388", "video_name": "7165db1c-7bc2-5f49-8a94-548adb964cc5", "text": "Movement to a dark rich castle "} +{"id": "1006945", "video_name": "7f1ed67c-0682-5c78-846f-216b67b0298a", "text": "G.I joe many guns shooting, fire, neon darkness city, Sons of Anarchy, cyberpunk, android girls, vintage, cinematic shot, zoom in, close up, 8k, masterpiece "} +{"id": "2006971", "video_name": "4af8ee89-256c-5def-b23d-c8046cc1112e", "text": "Black and white photography with a touch of neon color. "} +{"id": "0005310", "video_name": "18512407-fcb6-58ab-b10e-b3a036490b62", "text": "Capture the eerie ambiance of the deserted playground at night and Swing contineu hanggig, a girl wating for his mother the rusted iron swing creaks back and forth in the dim light. creating an unsettling atmosphere. Focus on the emptiness of the scene, emphasizing the absence of laughter and the chilling solitude that permeates the air "} +{"id": "1006563", "video_name": "784249d3-f043-5aa4-b235-5cc54a9652f8", "text": "A short video in the style of metro 2033 "} +{"id": "2003809", "video_name": "4bf09889-5bc3-5313-8222-f1e4acc1a4de", "text": "The olive leaves were swaying due to the gusts of wind in the jungle in 3d animation style in 4k resolution "} +{"id": "0003619", "video_name": "40966bcf-ab0d-55b7-bdf8-4f2ad76eee49", "text": "Stickman fight, fast movement like flashes from one place to another show a very fast changing background "} +{"id": "2004421", "video_name": "d6a7a066-cae2-518d-a637-653655c1ac6a", "text": "jennie kim of blackpink beatiful and cute in 3d anime "} +{"id": "6002268", "video_name": "cca0142a-f965-515c-ae06-6035bd19fce4", "text": "small lion shy but try to be a hero. "} +{"id": "4003091", "video_name": "a4f88fdf-b863-5691-bd6c-979f7291493b", "text": "A cat is talking and blinking one time "} +{"id": "8001135", "video_name": "56c35b57-2d7c-57ff-8032-3a556558ce78", "text": "stand up and start to dance "} +{"id": "3005658", "video_name": "5beec97a-29b2-5805-a804-24e24f84f40d", "text": "the witcher man jumps to hill wind flow pond 16:9 24fps "} +{"id": "0006912", "video_name": "353b27f0-8654-5c2a-88ac-fd9fe9b7b8ac", "text": "spit on each other Message: 1 Attachment "} +{"id": "0005548", "video_name": "1c9c60c5-9ef4-5c54-b40e-1129b6963100", "text": "Please change the clothing of the model in this video "} +{"id": "3006409", "video_name": "6d835967-4561-532d-b4b6-95f9084d4700", "text": "a giant wawe and the transparencies of water with fish swimming against the sunlight "} +{"id": "0005169", "video_name": "15f65b0b-032f-5ceb-b413-ae2713f4f266", "text": "20 years old beautiful girl is standing in dream world "} +{"id": "6003867", "video_name": "0629156f-fe64-5de9-b792-fe65d80af794", "text": "make hair movement and maintain beautiful face also make it dance "} +{"id": "7004892", "video_name": "22883cea-01c7-56d7-a3ff-72b3c540cd11", "text": "very fast scary landslide falling rocks and soil cinematic dramatic, dark gloomy style "} +{"id": "4002197", "video_name": "9fd39699-63ae-56e4-82bf-6fb9a5dc3d66", "text": "Sea water pours towards the window, indoor window view "} +{"id": "6004296", "video_name": "1e570457-337a-52af-9abd-3ee25341b5fa", "text": "A table with a chess board and pieces both adults playing a chess party. 8k, realistic, deep. "} +{"id": "3004468", "video_name": "ea645d6a-e4a7-53ef-ac79-d01beae0c82e", "text": "opening shot: a person sitting at a desk with a laptop "} +{"id": "7004474", "video_name": "d24ea5a7-05a5-589c-80b6-0aa9cdd82965", "text": "Simulate statistical charts about urban life with people and numbers blinking above their heads "} +{"id": "8002818", "video_name": "6b0279f0-fcde-5e51-a9d7-6a7def6958d8", "text": "movie poster vertically oriented, TIGER SOUP is the tittle of the movie, 90s american circus is the theme, Bill Gold style, masterpiece "} +{"id": "4004037", "video_name": "b71fe9ef-8fd5-569a-a985-9333859933d4", "text": "Surrealism, antique clocks gradually merge and transform into a surreal image of a human face. "} +{"id": "1006886", "video_name": "7de48058-cc14-51e7-9c80-9706b4317097", "text": "a mystery hacker is coding with keyboard and sit among man computers "} +{"id": "1003041", "video_name": "37c98c5b-aeb9-5fdd-9147-e2123e3510e6", "text": "A group of children are learning Message: 1 Attachment "} +{"id": "2004869", "video_name": "b35e3e04-a4f4-5866-b859-061719e1ed5b", "text": "Describe your seemingly very simple transaction, but in which there were many difficulties, nuances, pitfalls. Invite the client to make a transaction plan for a free consultation. "} +{"id": "5001858", "video_name": "e7d7b5f7-d2be-59f6-ad02-47b1642531f3", "text": "a realistic girl in a realisitc enviroment with realistic movement with realistic shading with realistic body parts "} +{"id": "0005585", "video_name": "1d8267b8-ce35-58d4-9c02-ad0c657547ea", "text": "Officers and soldiers stood and saluted towards the ruins "} +{"id": "3006262", "video_name": "696cfe5c-25aa-57cd-8dad-bfe440d31248", "text": "UFC fighters transforming into gladiators mid fight. "} +{"id": "7003605", "video_name": "9f911eeb-6ab7-551b-b192-d51c4577a700", "text": "cat bat men running in road 3d animated video "} +{"id": "2005317", "video_name": "0bf930a7-c617-59ec-b710-1c3cafcb6b80", "text": "a cinematic shot of a woman with a pink mask covering her face dancing in a concert stage, by james cameron "} +{"id": "6002653", "video_name": "20ba6f93-990d-59a5-bdf8-3afcd9520d9b", "text": "These microbes employ a unique strategy to counter pathogens "} +{"id": "4004786", "video_name": "20ecd029-a68d-5766-9808-30145ea97a24", "text": "detective in the alleyway smoking a cigar. mysterious setting "} +{"id": "7002467", "video_name": "412a6262-76cb-53d2-bcac-9414dd2f5acd", "text": "A winding stone path through the garden. "} +{"id": "6003458", "video_name": "62de98fd-ac1c-58db-a9f6-15f0be02947b", "text": "restaurant image with green as primary color "} +{"id": "8001062", "video_name": "b564d9fa-cf56-56f0-9777-ed8d15eda970", "text": "little girl look at hard working parends "} +{"id": "7002637", "video_name": "98843452-28fc-5581-9505-8a3d50038367", "text": "happy girl between stars in the space "} +{"id": "1005015", "video_name": "5cc150df-75df-5fa0-9973-24cbb1575181", "text": "Rock band, 4 girls, British style, polo shirt, Martin boots, skinhead girls, panorama, wide angle, guitar, bass, drums, performance, "} +{"id": "7003738", "video_name": "a8b22fc5-8e55-5271-a318-1495ba3865da", "text": "in the hands of smoking cigarettes. the picture is pink "} +{"id": "3003756", "video_name": "7210ecb6-d4ff-5b2d-94be-1f4123d9a8fa", "text": "A half open rusted gate. Street Lights near, High iron sheet walls A long alley with big trees on both sides. A yard not well entertained. Dead leaves everywhere in the yard. "} +{"id": "2004997", "video_name": "d644a710-db9a-5977-9741-b2675bccfd74", "text": ":1960s girl group with big beehive hairstyles wearing headphones singing in a recording studio "} +{"id": "8002929", "video_name": "19bc348b-dc75-524d-95be-e7d471d1b253", "text": "a zooming in shot of walking into the haunted victorian mansion. Dark shadows play around creating a tense atmosphere "} +{"id": "7002526", "video_name": "aadfc43f-13ff-527f-a799-1760ac003250", "text": "the jug opens its mouth, the face in the jar talks and sings, talks to the fish, 4k "} +{"id": "8003683", "video_name": "2b10de5f-242d-5d09-a28e-23341314a6b5", "text": "realism tattoo on a chest, skeletons and lions "} +{"id": "1006376", "video_name": "74b8c662-86de-543e-a49e-9aaf85615d48", "text": "Gold coins on a wooden table Message: BASA (Font: MODERN) "} +{"id": "3003245", "video_name": "6f9de48a-f5fc-54ba-beaf-82a0d729af1f", "text": "gojo and geto from jujutsu kaisen talking to each other "} +{"id": "3005066", "video_name": "abe59d36-db33-5cd5-a624-63b40b10d66e", "text": "a girl in the middle of the road without any covering "} +{"id": "7003179", "video_name": "aee777d3-f913-519d-9748-967613e8ab65", "text": "design tatoo botanic vintage dotswork monstera "} +{"id": "0006191", "video_name": "27f6f1c7-21c7-5067-955c-c972768a83d7", "text": "A pink sugar queen flying into the sky "} +{"id": "2003527", "video_name": "0ecaa10f-52ec-5880-bd4b-65ad138a3f3e", "text": "streets of NY, Year 2050, far behind sea in the background, sunset, a litte boy is walking alone on the streets, 4k, cinematic 9:16 "} +{"id": "7002138", "video_name": "97d9048f-9d45-5006-b990-a936023a3054", "text": "A sprawling Austrian village grows into a city "} +{"id": "2006376", "video_name": "886559c7-d624-5bff-aa70-35d83513ce9d", "text": "a pic of a luxury car with foggy effect in the background "} +{"id": "2003305", "video_name": "bdba8e87-c10a-5d83-b6d0-b07c9638693f", "text": "a feature length 80s film, public service anouncement about the dangers of microscopes and lasers "} +{"id": "5001635", "video_name": "75561a28-e74d-520e-b9f1-f02b281a32da", "text": "church , art ,moon, magen fox "} +{"id": "1003023", "video_name": "37862494-2081-541a-9247-208bdb6839c4", "text": "The Holy grail glowed slowly out of the black water\uff0cShot from top to bottom "} +{"id": "2007837", "video_name": "eecf3397-14ae-5bde-9270-77c4048c4ed4", "text": "A 21yr old guy editing videos in a dark room, monitor is lit and you can the see the silhouette of guy only "} +{"id": "0003801", "video_name": "43b64e70-36ee-5d36-832f-633fb40bf5c3", "text": "The adventurer comes across a massive, slumbering dragon. "} +{"id": "5001540", "video_name": "2b24e2fa-b09b-5e5f-9619-6f7f7c7a4186", "text": "Little Boy walking down the Street. "} +{"id": "3004458", "video_name": "a2474474-3ca6-5d59-bc92-9fb455ce3b8f", "text": "a cow in the farm Message: PANGUIPULLI (Font: MODERN) "} +{"id": "1006621", "video_name": "796c6552-5ddc-50e4-b4f9-2fa8c93fe6ed", "text": "the girl and the guy are dancing. they are doing very simple steps. like an old video game or cartoon. the video is animated and pixelated like an old video game. "} +{"id": "8001504", "video_name": "90e9d43f-88a2-5761-945e-c6a817910788", "text": "light beings dancing on the globe, 9:16, rococo, psychedelic "} +{"id": "8001661", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "Portrait of Zelda, robot steampunk, floral! horizon zero dawn machine. "} +{"id": "7004604", "video_name": "226c41e9-7cd1-5fc8-9476-6bae87c89b14", "text": "Some trees grow over the dollar 16:9 "} +{"id": "4003417", "video_name": "59d76029-4853-5dc4-ad91-23309f6b0811", "text": "camera panning from right to left over the seafloor, 2D image, aspect ratio 16:9.gs 24 motion 2 "} +{"id": "0006136", "video_name": "271fa825-2e89-56b9-ae04-003416781289", "text": "picture clicking by using tripod stand "} +{"id": "6002686", "video_name": "4423d942-24b0-5a37-9fba-08cea4acca90", "text": "the moon in the nightsky suddnely exploding "} +{"id": "2003392", "video_name": "c934d532-02e8-571a-b80e-ead53bff12b1", "text": "Crocodile munching on a skull detailed 8D HD. "} +{"id": "1003015", "video_name": "37642094-9861-56f4-bd70-7b17eff8533f", "text": "crowd cheering inside a soccer stadium with argentina colors, while a match is being played, camera movement Message: LYWM (Font: MODERN) "} +{"id": "7004165", "video_name": "142d5c5f-8252-5500-bedb-d2bfad281db1", "text": "man on horse in the lake of ice "} +{"id": "1003113", "video_name": "39483425-2067-5a07-b4d1-1790da304965", "text": "young girl flying with a ballon over a dreamland dramatic lightning "} +{"id": "4003123", "video_name": "4c07cfe1-9994-58b9-9ffd-19d49988f558", "text": "Stress during bowel movements due to constipation may increase the risk of hemorrhoids "} +{"id": "3006032", "video_name": "6ed59965-1edc-5873-8570-b88667699aa3", "text": "An oriental skier is sliding down a snowy mountain cliff "} +{"id": "7004731", "video_name": "08c95e7c-9599-5156-9544-814a5e7d0c8b", "text": "expensive car in black and white "} +{"id": "2003936", "video_name": "8bf22c8b-71be-5144-9192-2253b2414e72", "text": "Emphasizing the strange resistance the detectives felt when they tried to remove the painting, which seemed to blend in with the wall "} +{"id": "0003006", "video_name": "35797294-9dd8-54d1-a246-c816fa0bf74d", "text": "lady sews dress in the atelier, disney cartoon style "} +{"id": "0005274", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "ruined middle eastern city in fog "} +{"id": "3005696", "video_name": "2b4f9aef-99ac-5096-937b-cf2d8c82bad2", "text": "After Ramu taught Manu how to do farming properly, Manu expressed his gratitude to Ramu. "} +{"id": "3006162", "video_name": "6a5b8fb2-2919-556a-bba5-a0355107ef79", "text": "Jimmy Hendrix, Talk about Alien from Planet Mars "} +{"id": "2005687", "video_name": "123b6559-4109-5fb5-8810-cff00fcda743", "text": "flickering lights, moody, camera push in, night time, neon sign, "} +{"id": "2003225", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "an image on top of kailash mountain which is present in india "} +{"id": "8002003", "video_name": "ef6b5ffa-2a9b-5028-b026-2b68281987f8", "text": "child naruto and her mother standing together, anime art style. 4k , cinematic, clean backfround, his mothers hairs are red, inspired by Masashi Kishimoto "} +{"id": "3006202", "video_name": "aa01adac-24f2-51d3-85e6-ac6d0c56bf82", "text": "2D graphics moving to music modern flat "} +{"id": "2007936", "video_name": "e3a4ee94-ffe8-5100-80ee-274d71f529ad", "text": "Air India airplane flying in clouds with indian flag in background "} +{"id": "5001940", "video_name": "44f5d9a2-d7fa-542f-bd10-162b5bc708d6", "text": "night time full moon and lose up short 4k "} +{"id": "4002898", "video_name": "d2c129b9-be02-5d99-a01d-d20545258827", "text": "what have you got for me "} +{"id": "6004062", "video_name": "241fa74a-3c96-5faa-81e5-0298126b3a4d", "text": "The friends trapped in a claustrophobic room, pounding on the door "} +{"id": "1006853", "video_name": "7d312518-b1f7-5606-a4e8-d1faa9414fb8", "text": "three very beautiful children dancing in very beautiful animated beach environment, cartoon style,4k, cinematic "} +{"id": "7004903", "video_name": "82c4af7b-ee06-5e78-94a3-8f913677354c", "text": "a man working on computer and he develop a website and working a online storesite on his computer "} +{"id": "4002494", "video_name": "51913350-0dfa-5cb1-957f-887cba876e3b", "text": "a victorian age film about a busy london pub "} +{"id": "8003954", "video_name": "d69b7696-60af-5f34-9a94-a38121892538", "text": "opens the box with enthusiasm and pours the magical mix into a mixing bowl. "} +{"id": "3003744", "video_name": "8570f9ef-24f6-5edf-a456-c90d0e7c7276", "text": "The elderly men, who reunited after a long time at this place closest to the sky, sat quietly in their chairs, watching a tourism video of the city being projected on the monitor. "} +{"id": "4002150", "video_name": "a95d6404-8ef2-5b56-a89d-c52c9c486700", "text": "cloud elephant barring in the sky "} +{"id": "3004837", "video_name": "67e41b68-29a0-5d44-9a7e-150728b83094", "text": "production of chocolate bars from handmade chocolate in a small retro factory in the style of Peaky Blinders Message: 1 Attachment "} +{"id": "7004054", "video_name": "2988b8bc-69dc-5f5b-8550-c6e77b84e201", "text": "the train is moving forward along thr railway, "} +{"id": "3003018", "video_name": "e703c9cc-dda2-5d3e-bc1d-0a963c113901", "text": "In an Franch Home, a warm stand light by a soft sofa "} +{"id": "2006684", "video_name": "40887e47-cca9-5498-90dc-dd99f2719398", "text": "A long animation with a dog "} +{"id": "2003805", "video_name": "8c509a8b-b101-5d3c-81c4-91e83785d8ea", "text": "The city of Beijing is covered by universities. "} +{"id": "3004405", "video_name": "90f08d12-1311-58ba-8dfe-9fdf3c1fed22", "text": "small boy and village house beautyfull araund "} +{"id": "0003534", "video_name": "3f151b0b-773f-58eb-a152-99e8bc3ddb20", "text": "The bookstore was a relic of a bygone era, a place where forgotten tales resided "} +{"id": "3003986", "video_name": "31440299-33c6-5818-83cc-b555e4c19ebd", "text": "American policeman in a shooting position with a pistol in his hand "} +{"id": "0005073", "video_name": "1459c25a-f0de-5870-9e6f-91494849a070", "text": "The country of Regulus is situated around the poor mountains, and the people of this country live long lives "} +{"id": "8003840", "video_name": "3df950ea-9b6e-59d6-9b0d-c3062d98d40e", "text": "The angelic announcement to shepherds in the fields, dramatized for emotional impact. "} +{"id": "6003127", "video_name": "39558250-3c9b-5f98-81ea-83ca8fef5587", "text": "breathing, smiling, movement ,talking, hands up and down "} +{"id": "4002554", "video_name": "32348a1a-253f-5a0e-85d9-fc042fed4345", "text": "English alphabets with animated animals creative picture for kids "} +{"id": "3004886", "video_name": "a7e7c346-eb87-54b2-bc4c-db695109e989", "text": "Astronaut looks down on dying planet Painted by Van Gogh "} +{"id": "4003485", "video_name": "b0138c4f-ae2e-5ea8-8655-ba573bf91d03", "text": "a snake trying to bite a man who had a branch in his hand trying to save it from fire in a forest "} +{"id": "1006969", "video_name": "7f89c23b-1ef6-588c-b430-096169293756", "text": "a boy riding a bike with his girlfriend "} +{"id": "7002798", "video_name": "6b04f4b2-6c19-54ce-9f87-3de2f2863f58", "text": "Another beat that will surely come "} +{"id": "4003698", "video_name": "31f30c13-d887-51cc-9047-8c81a8e633de", "text": "man 40 years old, with goatee sitting, eats meat "} +{"id": "6002823", "video_name": "f8ced3d6-aabd-554e-b120-a86c74e4cc5e", "text": "create a full human figure high resolution "} +{"id": "0003167", "video_name": "387e0bab-75a0-50e8-a624-f63c791cff70", "text": "Cyborgs preparing their weapons to fight a space war. "} +{"id": "2005914", "video_name": "7306549b-3370-5d55-b34a-b41f0af2259a", "text": "highly detailed shark swimming though space, rim lighting, amazing composition "} +{"id": "2007360", "video_name": "4c0dd07d-73fe-592b-af21-ce9e0e4ea1af", "text": "HIS MOTHER TOLD HIM THAT IT WAS NOT THE RIGHT THING, THE DAY WAS FOR WORK AND THE NIGHT WAS FOR REST "} +{"id": "6004047", "video_name": "619a1e82-3b8e-522e-b335-a9542dd7046d", "text": "Girl 20 years old, dragon tattoo on the right hand, on the left hand tattooed flower, piercing, blue big eyes, white hair, hairstyle short bob to the shoulders, bright room, sitting on a white bed under a white terry plaid and looking at the phone ,gs 70, motion 1, "} +{"id": "5001492", "video_name": "49b62fa0-b603-5943-b2ec-9325ecb3f94c", "text": "coca cola refilling , wooden table , studio lights , coke bottles ratio 1:1, Cinematic , volumetric light, Fuji RAW "} +{"id": "1006966", "video_name": "7f7808a6-5d88-5c2c-aa3c-36fd0b0c8e21", "text": "a man working out with a girl "} +{"id": "0006347", "video_name": "2b0790a9-c33b-5186-bf07-712f4ce7f19b", "text": "gloomy depressing graveyard, single figure in a cloak and top hat walking through the gravestones, night, full moon "} +{"id": "1006115", "video_name": "70225a2c-764a-535b-894a-c44086a0cc71", "text": "Mickey Mouse bursts into flame, screaming, eyes burning, charred flesh, motion "} +{"id": "8002809", "video_name": "3ee7873e-2b49-5302-a70d-f0ae195b150b", "text": "Once upon a time, in a farm far away, lived a jovial cow named MatheMoo. She was no ordinary cow, for she wore a straw hat, a red bandana and glasses, with numbers and mathematical symbols adorning her white and black spotted body. MatheMoo was a math teacher, and her farm was her classroom. "} +{"id": "8003032", "video_name": "f3e96708-a7b6-581f-a03d-1c24edcf9a64", "text": "Dinnosaur fighting a robot in Brazil in a football stadium "} +{"id": "1003677", "video_name": "43c97eca-169f-5505-ba60-7b85722fcf8a", "text": "a yoyo girl show the play "} +{"id": "2004883", "video_name": "7c4897e5-fa2e-5d32-97fc-681334ae9ddb", "text": "Cinematic Portrait Close up of a blonde guy looking directly to camera "} +{"id": "4002327", "video_name": "ff887784-334e-5fd6-bbac-c19d49b6088b", "text": "Man in a tuxedo suit, dancing on the stage. 4K, dslr "} +{"id": "1003495", "video_name": "40b73919-8e1f-5b68-b954-3d4c2c8f630e", "text": "This story teaches us that hard work, dedication, and generosity can turn our dreams into reality. "} +{"id": "0004788", "video_name": "0f2dd7d3-ce51-55dc-b6d2-4297c1edebe8", "text": "timelapse of a seed growing into a flower real "} +{"id": "2007693", "video_name": "1c8689dd-2380-5360-b788-e71efa2a51ae", "text": "a guy with a glock in his hands with him moving left and right in a trippy atmosphere "} +{"id": "3003645", "video_name": "f69110ea-c4ca-5870-9878-6d093943dab7", "text": "Illustrate the character of Harish, the greedy man, standing in front of his vegetable shop. Show his demeanor as someone who is solely focused on money and profit,HD,16:9 "} +{"id": "4002832", "video_name": "1f0dfd23-28a6-565e-b0ff-57f5fd0f4b07", "text": "male students in front of school ready for last high school exam "} +{"id": "4004352", "video_name": "a5defa0a-a80c-5312-9d62-22dc90c0ab30", "text": "a fish swimming towards a crab.motion 20 "} +{"id": "5001132", "video_name": "d3f94f0d-d1ec-51d6-aed6-d29bc455263b", "text": "a horse eating grass with a young girl picking flowers "} +{"id": "3006910", "video_name": "636b62cd-fffd-5b33-add1-d9952654c168", "text": "boy with glasses. zoomer Message: BUBBLE (Font: MODERN) "} +{"id": "5001545", "video_name": "3bc77f9d-de2b-507d-9b08-5b424ffa58e8", "text": "island pacific Message: Walter (Font: MODERN) "} +{"id": "7002581", "video_name": "ca744eb8-e1a4-5206-b862-e76d3ec48928", "text": "the red car is going home "} +{"id": "6003494", "video_name": "56dab2eb-28c9-5a9e-b4a5-349bfded2846", "text": "Snow, tall buildings, pedestrians, night, street lights "} +{"id": "8002109", "video_name": "caa1b084-7bb7-56e7-a661-cb6a9da2716d", "text": "Nobita and Doraemon enter the Sahara Desert through an arbitrary door, then they find a camel there. "} +{"id": "2004053", "video_name": "b8cd8544-87bb-58ff-8336-10e55649561d", "text": "The gold mine quickly weathers to produce a standing gold coin. "} +{"id": "6002371", "video_name": "bab9190d-2ae8-532f-851d-b01e311b5275", "text": "artoon,A young boy, Leo, standing on the shore of a serene lake, his eyes closed and a smile on his face, lost in his imaginative world. "} +{"id": "7003281", "video_name": "b784c1db-7bb6-5324-a926-bda50aec2336", "text": "Armed with makeshift weapons, they overpowered the guards and broke free from their cells "} +{"id": "0003919", "video_name": "45c46c98-4f68-5ea9-9786-c0a9f8e3695f", "text": "a girl conquers the mountains in a jacket and with the flag of America "} +{"id": "2007028", "video_name": "b473e15c-0695-52a9-940c-2b1d883c3761", "text": "screenshot of a match in a dating app "} +{"id": "1005197", "video_name": "5fa691ef-17ec-5e49-ba62-0a30016a444b", "text": "majestic lion who lives in a golden cave in the Himalayas. He hunts for buffaloes and drinks from a clear pool. He roars loudly as he surveys his territory in all directions. "} +{"id": "6004373", "video_name": "d3a74925-8f1f-5802-b954-f8d4b67b74dd", "text": "A grandfather who plays the flute, a grandfather who plays the flute, a homeless man, a poor old classic "} +{"id": "4004258", "video_name": "b8a481f2-db75-5ac8-95da-f83f1100e2a7", "text": "a epic medieval battle on a cliff, very violent, swords, rome ancient, 90s anime style "} +{"id": "4002686", "video_name": "1c20e594-f36b-5117-9479-228d359c39aa", "text": "Optimus prime doing the michael Jackson moon walk "} +{"id": "2005852", "video_name": "7c2f0aab-6fa3-5f62-a81e-55c57d83aabe", "text": "1d kids playing in the ground "} +{"id": "4003565", "video_name": "9435afb9-cfbb-585b-8625-46277a814edb", "text": "psychedelic dream of chess pieces in the world of code and inevitability "} +{"id": "1003579", "video_name": "41f032cc-a81f-5726-9d0b-c1eb493a17a1", "text": "will smith is eating a some chips "} +{"id": "2005201", "video_name": "5b638e8a-a4dd-55d5-a5f3-d019841ff7fe", "text": "light rainy night, some puddles of rain, spooky forest, there are intelligent fairies with highly detailed colorful wings "} +{"id": "8001090", "video_name": "10ca79a0-58c1-5474-8904-a2ff6dff79ce", "text": "That is to milk a mouse. "} +{"id": "4003798", "video_name": "b3b444ab-2b8f-5a32-bee7-1d4c3fe6b798", "text": "A guy on a skateboard, with a short haircut, in a skate park, during the day, 20 years old, in a black shirt, in joggers, white skin color, brown hair, in a skate park, jumping from a springboard somersault on a skateboard, brown eyes "} +{"id": "0006302", "video_name": "2a515db6-54a3-57a1-ba26-ae905e022c05", "text": "a girl wear bikini look forward upward her one leg digital art "} +{"id": "2007890", "video_name": "6d00d7de-7681-5f2a-b4ed-c78b4d30759c", "text": "An elegant spaceship made of liquid silver, glides towrds the camera, leaving a trail of stardust in the dark sky "} +{"id": "2007272", "video_name": "76507cc0-479d-53e2-8575-70e6d560a8bb", "text": "The Little Cat and the Dog "} +{"id": "5001719", "video_name": "9159e7b2-61ca-5712-afb1-f253ea239b43", "text": "beautiful small oak tree rise from ground to the sky "} +{"id": "2004060", "video_name": "29ada461-72b6-54e4-ae46-b746cef5e169", "text": "realistic movement person gracefully showing himself while the camera slowly moves around him "} +{"id": "8001060", "video_name": "e43861b4-df2e-5e7a-80b0-b4481a1edb8c", "text": "image for chinese girl and beautiful hair "} +{"id": "3006891", "video_name": "32ced143-85f2-5926-9ffb-b1aeb8d8110c", "text": "Illustration of home experiment with flashlight and water to demonstrate light scattering "} +{"id": "6002551", "video_name": "6c0c4c26-f07a-5e00-ac68-b8bb575c53e6", "text": "A fortnite style astronaut woman character with pregnant like belly with an orange spacesuit full body covered looking up with a very sad crying face, Stylized 3d Hair lowpoly, Behind a half destroyed and half Green city in zelda style, Many Spaceships are flying away from this planet, Cinematic photo "} +{"id": "0004490", "video_name": "09d78664-92f7-5be6-a0aa-80fc1eeae526", "text": "rainy and dark day , girl laying on bed scrolling through instagram "} +{"id": "4002118", "video_name": "28953958-0fb7-57e7-909e-aaa96b5baccb", "text": "yin yang electromagnetic feedback white hole black hole wavetable infinite loop "} +{"id": "1003203", "video_name": "3aefe5f3-a88b-50a5-b001-9bb5c461956d", "text": "rar view of a man and woman drive motorcycles, moving background , animation , cartoon "} +{"id": "6004336", "video_name": "1697719b-2078-5022-b668-6780006da54e", "text": "Many messengers on Zalo and Facebook appear on the screen on phone "} +{"id": "3006696", "video_name": "2c9f34ab-f51d-5d8b-bff0-ac9699b5d915", "text": "show a panic face of somebody working on Wall Street. 4k resolution. "} +{"id": "1004610", "video_name": "55cd0bb9-9e02-583e-9d14-7736090679a2", "text": "A dimly lit room, illuminated only by moonlight filtering through the window. The protagonist sits alone on a chair, staring blankly at the wall.The protagonist slowly walks towards the window, tracing the outlines with their fingers. A sigh escapes their lips. "} +{"id": "0005156", "video_name": "15bc1602-2803-5207-8ab4-7d1a5d7dba75", "text": "Myrzabai Shabdanov laughs alone in the desert "} +{"id": "2007100", "video_name": "03d4196b-b1ef-55f8-bcb4-09c0694e65bd", "text": "4k cinematic scene of anime swordsman fighting in battlefield "} +{"id": "3005090", "video_name": "ee99669f-9d2d-52f6-b089-aa8f5186be34", "text": "Green leaves float out slowly, the hour hand is turning rapidly, the edge of the clock is emitting white light, and some small water droplets are suspended in the air "} +{"id": "0004487", "video_name": "09d00f94-c533-54d4-876c-9219e0ee9bba", "text": "the female charaacther and the male are siting on a Ferris wheel. He has his arms around her. full moon at the background reflecting on the beach, 16:9, hd "} +{"id": "1006354", "video_name": "74582ec9-60dd-52fd-a7c3-6d00337a1809", "text": "unreal engine. static camera. 2d animation. lake at morning. windy. "} +{"id": "2004638", "video_name": "cd4d1b0c-1592-5582-bb78-44299c79aa47", "text": "laminar flow water color gradient soft movement soft colors "} +{"id": "1003785", "video_name": "45e6ff8b-4822-5888-857a-df37b0aaeb5c", "text": "a video of a sexy beautiful black maiden dancing infront of a blue moonlit backdrop "} +{"id": "0003895", "video_name": "4561d65e-128a-5f24-989c-0e926b768c61", "text": "two muscular hindu warriors fighting, ancient, sand storm "} +{"id": "7003988", "video_name": "fd50a276-e319-5e32-b2e9-f0d0d04a0f90", "text": "new cyber city at night being built rapidly timelapse "} +{"id": "3006144", "video_name": "41177390-6ac1-5ff9-b5de-a1b67263df29", "text": "a2d animation, one orange beaver with big smile arriving at wakanda "} +{"id": "1005089", "video_name": "5dd0fc89-7475-5487-ae5b-3988e7dd3b5b", "text": "a deteriorating motel sign mid range shot, a storm is gathering in the background ar 2:1 "} +{"id": "3004697", "video_name": "ae427819-6e81-5cc7-a5d7-a47e7b7a64b4", "text": "Show images or video clips of a prosperous business thriving in online marketing "} +{"id": "8001420", "video_name": "aa8a5b97-0804-5500-80cb-cdab9cf2ea87", "text": "school, dystopia, cyberpunk, apocalypse, rays of light, darkness, fear "} +{"id": "4004578", "video_name": "29aa69a8-a751-5bc9-b2f7-69adc191c8e9", "text": "a map of North America showing the territories claimed by Britain and the United States. "} +{"id": "3006818", "video_name": "90833e76-3ad7-5d61-9abe-1bb6d742456f", "text": "A POV Video from a drone who film Lyon City and drop into a building "} +{"id": "0004803", "video_name": "0f5bbc11-47cf-5c97-b215-2e5cb4e8154b", "text": "A image from a microscope of some bacteria Message: Te quiero (Font: MODERN) "} +{"id": "7002046", "video_name": "d989038f-64ff-5825-b63a-26a9d00b2469", "text": "an AI robot that graduated college "} +{"id": "1006758", "video_name": "7bb8d4b3-be77-585f-99ab-e8712b2b5678", "text": "a 3D man with so many fears and overcoming them "} +{"id": "1006258", "video_name": "729f0d63-765b-536e-a1aa-1f120998afd8", "text": "a young village man with muscle cutting tree "} +{"id": "0005345", "video_name": "192fd7dd-1066-5fdf-b18a-5b9a2d829f75", "text": "king doing discussion with his minister "} +{"id": "3006206", "video_name": "21926be0-750e-5d03-8105-968baca1a12e", "text": "christmas tree, slow swirl, instagram story "} +{"id": "0003177", "video_name": "38a7165e-16bb-58bc-8d85-66c45ae2f530", "text": "gems that reflect the colors of the birds like a anime cartoon "} +{"id": "7004302", "video_name": "bb23bc67-1c0a-59c0-bc6c-ce290d938fcb", "text": "Turkish tea pot, 4 layer and copper design "} +{"id": "2007800", "video_name": "14ed4283-ffcc-5f4f-9b72-698a3c1fff42", "text": "Lovely cat swimming in the ocean "} +{"id": "4003020", "video_name": "be430b39-51f1-5754-8aff-ea29189ded87", "text": "a realistic beautiful young lady in the restaurant "} +{"id": "3004910", "video_name": "c12e35a4-7601-55c5-9cea-5d7b55419eef", "text": "kid in his bedroom sleeping blink 182 poster on the wall, ufo over the top of his house "} +{"id": "1005294", "video_name": "6146eb67-39ae-5433-b51d-bfbe5b307d4d", "text": "fantastic nature in movement, 8k, super realistic, full hd. static camera "} +{"id": "0006487", "video_name": "2d55be15-8f37-5cb3-85da-d02adbccb4cd", "text": "diplomats negotiating peace terms over a map of europe "} +{"id": "0003706", "video_name": "4209ba0d-e7b8-5b34-96a9-fe641c219904", "text": "A sweeping aerial view of the Nazca Desert with the vast expanse of the desert floor. "} +{"id": "0004614", "video_name": "0bef8ff5-8502-573c-b559-e15c2029ea72", "text": "Two kids child boys and girls playing ball.( 3D viedo,4k Ultra, HD) For cartoon Viedo. "} +{"id": "7004409", "video_name": "12c77490-9fdc-5ff4-9b24-f6b2c487ba58", "text": "what starts with an e and ends with an e but only has one letter inside it "} +{"id": "8001497", "video_name": "3271fb7d-0925-5078-8725-3bf67186f70b", "text": "cute alien standing on the night city 16:9 wide angle top shot "} +{"id": "1004383", "video_name": "50f92281-d304-57a8-bf0d-6139ef0e632f", "text": "traditional kerala home, decorated for onam. young husband and wife standing in front of the house . they are happy. they fold hand in namaste postion. "} +{"id": "7003441", "video_name": "9da4c032-7f7f-5cb3-b8ce-972665841661", "text": "a woman in an evening long dress with heels walks from behind to a stage floodlit with spotlights and decorated with pink balloons and stars "} +{"id": "1005784", "video_name": "6a7a24a4-9476-5c87-aceb-89c27a77fa84", "text": "turkey, people, buildings, old film 1910, cinematic "} +{"id": "7003996", "video_name": "6ab1f171-8497-5f83-b0fc-1445c333ba0f", "text": "In a world dominated by institutional obligations and corporate demands, a city skyline shrouded in fog symbolizes the oppressive work environment "} +{"id": "8003839", "video_name": "f353b845-1c35-5bed-8e8a-318f8d1068f7", "text": "astronaut on the moon watching planet earth explode, 1985 "} +{"id": "0005780", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "Portrait of Zelda, robot steampunk, floral! horizon zero dawn machine. "} +{"id": "1006161", "video_name": "70cecc2a-83ea-5228-8a29-bc7b6258fe8f", "text": "The crowd is fluctuating like the waves of the sea "} +{"id": "8003043", "video_name": "10b78f16-49ce-5998-b293-01afcb6857eb", "text": "rabbit asking for help to the elephant "} +{"id": "7003447", "video_name": "e56adea5-4a96-5bf1-ac36-7ce4dc05211f", "text": "portait Binary representation of a Compaq portable 3 "} +{"id": "7004290", "video_name": "a37b24fa-3335-5326-890f-f3293c64ef45", "text": "the boy walking in the jungle in full moon encounters a witch hut "} +{"id": "0003314", "video_name": "3b726aa9-e252-59a1-b76c-fe5f70c9d595", "text": "There is a telescope on a field during the day "} +{"id": "2006789", "video_name": "371be16e-b3ce-5b25-a8ea-01c00585aafc", "text": "Depict Simba and Nala engaging in a playful competition with the mischievous monkeys, performing acrobatics and tricks in 8k "} +{"id": "3005981", "video_name": "ce9b3f9b-1496-5ad5-8358-e2f7d49eda7c", "text": "Represent india as super power under Modis govt "} +{"id": "3003629", "video_name": "073580fc-80d1-5392-9297-19cc3d0b8745", "text": "speaking,holding hands movements effects motion 1 4 3 2 2 3 4 1 "} +{"id": "2005739", "video_name": "b2836d7a-f8ce-5d99-a5d0-44e4da85be4c", "text": "a group of ancient arab people is having cnspiracy discussion "} +{"id": "1004948", "video_name": "5b899ea9-d8c6-55d7-a722-a3a75662e901", "text": "a rail, and fence with a blanket and a box with organge and blue things to help the fence stand up Message: BYRON (Font: MODERN) "} +{"id": "2004950", "video_name": "bf3aca11-bedf-5dbe-bb15-c01c2788e70d", "text": "An athletic man whose muscles are growing bigger till he is becoming an incredibly huge bodybuilder "} +{"id": "4003796", "video_name": "4165bdbf-b332-5d46-8224-c8fd0d33bba7", "text": "Scene 1: A chance encounter Sir William is depicted riding his trusty horse through the forest on a sunny day. Suddenly, a huge shadow casts over him, and the knight looks up to find Draco flying above. Sir William initially tries to defend himself, but Draco shows no signs of aggression, simply watching him curiously. The knight lowers his weapon, realizing that the dragon poses no immediate threat. "} +{"id": "7004471", "video_name": "8f28fc26-9903-583f-8d58-2c3a9d0d18fc", "text": "the man in the photos horn grow then his eyes flash red "} +{"id": "6002450", "video_name": "33430d33-23c5-5226-bd1f-2f3b0258cada", "text": "As children reach adulthood and step into the world of responsibilities and opportunities, they encounter a new phase of life. "} +{"id": "1004670", "video_name": "56d3cf8e-61ce-5c75-a32e-4b8586af0e51", "text": "a wave of translucent green water breaking, seen from the inside with the sunset in the background of the water tube. "} +{"id": "3006130", "video_name": "321f412d-020e-59c3-b6ca-a95276275876", "text": "The scene where the gods waved their hands and the mountains moved "} +{"id": "3003048", "video_name": "ac0330dc-69fd-54f6-8bf7-9ff3670c6ecf", "text": "create video about new the same new building with a crack in the wall "} +{"id": "7004555", "video_name": "f7198172-6110-5de9-9d27-114d9621a7ae", "text": "2 aliens sitting in a car, rear window rolls down, revealing the aliens "} +{"id": "4004590", "video_name": "078bfcbe-d56e-5f47-963e-ff96b4ce4eb5", "text": "A man and a woman riding a bicycle in the red woods, Miyazaki animation style "} +{"id": "0003494", "video_name": "3e88ba9d-6422-5f98-9b78-6c5efefcd663", "text": "a guy floating above a dog which is drinking water "} +{"id": "7003550", "video_name": "b7d0fd23-1115-56bb-8df8-c41bf6d39ba2", "text": "A dark, textured cavern hums with an ancient energy. Smoke hangs heavy in the air, obscuring the depths and casting long, dancing shadows. "} +{"id": "3005880", "video_name": "0ce221d5-28d9-513c-b0c6-2431f96a1222", "text": "map of southeast asia showing australia "} +{"id": "2006636", "video_name": "5b31c9c8-1e71-5fda-a170-b6fd643edca5", "text": "a man stand on a tree suddenly one truck came man jump on that truck "} +{"id": "8003506", "video_name": "9f238839-c946-5284-9ae5-be18bded7b6d", "text": "Daft Punk hosted concert club dancing inside a Jackie Brown themed bar "} +{"id": "7002969", "video_name": "a498ec97-1225-5fe5-be93-46647651f0dd", "text": "Throughout his career, Dwayne Johnson has demonstrated a remarkable ability to adapt and reinvent himself. From his early days as a professional wrestler to his successful transition into acting, he has constantly sought new challenges and opportunities for growth. As he continues his journey towards maintaining an athletic shape, it is evident that he will not rest on his laurels but will continue to evolve both physically and professionally. "} +{"id": "1003883", "video_name": "478632a3-c6ac-58fe-8e8f-4a519e91c066", "text": "Oliver the sea otter discovering the shiny, golden key while cleaning the cove In a peaceful coastal cove, surrounded by towering cliffs and lush kelp forests, "} +{"id": "0005871", "video_name": "229b6d1a-eb70-58dd-8469-a59bf84673fa", "text": "adele in gown singing to a green alien "} +{"id": "0003988", "video_name": "0139c1e7-dcde-573d-ac4c-214255169ecf", "text": "Horror movie shot of a young woman with creepy smile in the eerie rrom with flashing lights. "} +{"id": "1006708", "video_name": "7aeb7fe4-bb17-5e18-b62f-99c9737cf5f6", "text": "Pictures of islands, marinas, boats, buildings, and the surrounding sea are calm and panoramic. Landscap "} +{"id": "1004810", "video_name": "58ea07d7-3b8a-5d2c-b751-2c72bd200820", "text": "Hero stands beneath the castle, a panoramic view. the castle overlooks a breathtaking landscape, cinematic, high resolution, a wide view, award winning cinematography, 8k "} +{"id": "3006911", "video_name": "b9a3e2c7-c987-51d2-b198-729d95a44a60", "text": "a picture showing a nice camp with plants a boy a sunny day "} +{"id": "7002543", "video_name": "dd55dadd-9ca6-5ad9-8247-a5b7652adf2f", "text": "A man fighting a man in the streets, 3d, cartoon, hyperrealistic, hyperdetailed, masterpiece, 8k "} +{"id": "2005657", "video_name": "6f360683-fea6-544e-99f7-7a8665246b39", "text": "hyper realistic house made of bones and rusted metal "} +{"id": "7002921", "video_name": "0e5f45bc-a039-5db0-a19b-486f468e4d36", "text": "Flight over Paris in 1923 with drone, cinema, camera, old style "} +{"id": "4002375", "video_name": "82f709df-c0f0-56b1-a5b1-19a21eb6b934", "text": "seed13860730138668815085, show the setting a bit more from arial view , show the school bus with kids "} +{"id": "8002564", "video_name": "c90673b6-7bb1-5d50-8103-5f1df651959d", "text": "Athena with battle helmet and glowing eyes. Journey to the temple of Athena. Dramatic shadows. Morning sunrays. "} +{"id": "2005006", "video_name": "030ed564-aa5f-5f3f-899a-490968a1281c", "text": "northern lights over viking battle with torches "} +{"id": "8001023", "video_name": "1dc484bc-8a1f-5c66-8ef5-b5caad6e07a4", "text": "Two businesspeople talking on a lunar base, silhouette, high production value, intricate details, high resolution, hyperrealistic, hdr, high definition, masterpiece, ultra realistic, highly detailed, hd, sharp focus, non blurry, sharp, smooth "} +{"id": "1005679", "video_name": "68609118-8f7f-568b-a24c-f363c8976a84", "text": "view from alien landscape, planet falling and colliding, destruction, apocalypse, sun, stars "} +{"id": "3003266", "video_name": "7940552d-47dd-5d0a-b568-d57e3b1653a4", "text": "a Victorian steampunk, Harbour sun set scene with many industrial machines in the style of Lost "} +{"id": "6004921", "video_name": "18c6e569-70ee-5901-897b-e9383678d288", "text": "a potato on a plate grows a human looking eye and it winks "} +{"id": "6004088", "video_name": "3e90ad05-1876-565b-a268-6815c29e67bd", "text": "openai\u2019s first intelligent robot comes out "} +{"id": "3004122", "video_name": "6ce85d71-8c8f-5610-886b-6ba2c24e43fd", "text": "terminator robot from future walking down the street "} +{"id": "1004972", "video_name": "5be2114a-eaa0-5956-b9e1-379428140bc3", "text": "Man writing at a desk, dimly lit room, crumbled paper on the floor "} +{"id": "1003114", "video_name": "394885e6-e0a2-5b8b-ac62-f1e45bf25be9", "text": "Simple line drawing of a smile, black on white "} +{"id": "3006901", "video_name": "c78ce85d-a2b6-54f3-bc5e-002d5e4615f6", "text": "Detail the announcement of the grand royal ball and the excitement it brings to the village. animation gs 20 motion 4 3d image "} +{"id": "1003541", "video_name": "41532396-3269-5a60-b5f3-8a84c381bf34", "text": "an animation based on and anime girl moving a little in the video, in goth style "} +{"id": "6002236", "video_name": "8837c82c-ab93-52b8-8787-8e8bc5187261", "text": "People ran through the streets, seeking refuge from the unknown invaders. The massive ships hovered above cities, casting an eerie glow on the terrified faces below. "} +{"id": "2005123", "video_name": "4af66e6c-01b8-5cc6-bc3d-1332f82a9ab4", "text": "The chemical formula of coffee on the background of an aromatic cup of coffee. "} +{"id": "0006492", "video_name": "2d750646-c3ea-57eb-aad8-315906a3a31a", "text": "Solid colored, cell shaded cute mouse sitting under a tree in the style of traditional anime, specifically Studio Ghibli, with Monet painterly backgrounds. The background should have precise brush strokes, immersive realism, depth, rich colors, vivid, subtle storytelling, atmospheric lighting, "} +{"id": "2005335", "video_name": "80fcda0f-f09d-5130-8075-c581679b433d", "text": "camera zooms in along the edge of the sword to the tip "} +{"id": "4002645", "video_name": "1e4e12bc-3f9f-5ee1-af1e-268371b51503", "text": "car from driving seat looking outside view and car is moving "} +{"id": "1004908", "video_name": "5ad0eee8-de3c-5f38-ad52-dc54b79d2c2e", "text": "Cinematic War movie scene, missles striking city buildings and people running wild "} +{"id": "5001616", "video_name": "e182793f-a4ae-5a3e-a9a6-e6105618b1c9", "text": "Design a image of a octopus attempting to cook a gourmet meal. with all eight arms holding pans. ingredients fly in the air and scatter like confetti "} +{"id": "2003687", "video_name": "c6f077eb-2a80-525a-9c54-10eed548415e", "text": "A cute funny robot dancing, centered, award winning watercolor pen illustration, detailed, isometric4 illustration, drawing. "} +{"id": "0006175", "video_name": "27b3f085-6d35-57a2-83e7-a86dd59b6bfd", "text": "man with a globe for a head. Cinematic lighting "} +{"id": "5001394", "video_name": "f52802b9-dbc7-5277-ba1e-6ea780b7ddb0", "text": "The hunters surrounded the lion cub from all sides and pounced on it together. They captured the cub, wrapping it in a blanket. "} +{"id": "3003178", "video_name": "029af082-c3b8-5065-9d2d-6600b63fdb8d", "text": "A vintage, bus painted in vibrant shades of red and gold stands on a bustling city street. The bus exudes an air of nostalgia, with its polished brass details and ornate patterns. Passengers, dressed in a mix of modern and retro fashion, line up eagerly to board the bus. The bus conductor, wearing a classic uniform and a welcoming smile, stands near the entrance, collecting tickets and assisting passengers. In the background, the cityscape showcases "} +{"id": "2005885", "video_name": "ca63a94f-1558-5a09-87e7-7340f98af597", "text": "spotlight shines on villans face in the style of Frank Millers Sin City "} +{"id": "6003671", "video_name": "9ade2d8f-dafb-5be7-8b13-85d15e09d3c0", "text": "a large black door ofa horror mention closing "} +{"id": "4002446", "video_name": "c082272c-f279-5188-9499-8ae52e217387", "text": "grass with flowers, camera zoom up Message: ALIANNA (Font: MODERN) "} +{"id": "4002014", "video_name": "b929336a-542c-5846-b673-4da7848a7486", "text": "a 1979 film scene of tom baker doctor who smoking cigarettes beside the tardis control panel "} +{"id": "8002430", "video_name": "3eb8e36b-f9b5-5388-8fc9-35e6898a3a79", "text": "European guy, near the shelf with toothpaste, medium plan, realism, duration 6 seconds "} +{"id": "1006210", "video_name": "71dccfd7-a7b6-5462-ab48-27e946442300", "text": "A cart filled with a colorful array of green broccoli showcasing a vibrant selection. "} +{"id": "0005640", "video_name": "1e887815-b021-55af-93fe-36e9f6ac1884", "text": "create small video about the value of crypto "} +{"id": "6002448", "video_name": "12052844-361b-5f37-bec3-d9307bf73cfc", "text": "Satan and Celine Dion singing Christmas songs together "} +{"id": "0003263", "video_name": "3a519a04-4f75-5121-8b24-20dab0046c1a", "text": "Floating in space Far away from eart "} +{"id": "5001088", "video_name": "b3672aac-8f88-59df-8b16-728108f0885a", "text": "a yellow smily emoji that is winking one eye "} +{"id": "3004304", "video_name": "edf358bf-78aa-5ec6-8310-cf33152b3ec5", "text": "a wolf howling at a beutiful woman cartoon style "} +{"id": "8003644", "video_name": "9826df53-d7d7-5dff-a7b5-671ddd9d4512", "text": "1 girl running on the roof of a building,cap,red cape,smile,perfect body, cinematic light,ultra detailed,photo realistic "} +{"id": "3003341", "video_name": "9ec38ea8-0884-574c-94b0-4952de605b55", "text": "numerous minions are diving into the pool "} +{"id": "7004020", "video_name": "9153ff78-c2c9-5a86-84ee-5c4bdd495791", "text": "an elderly man falling from his bed "} +{"id": "2005923", "video_name": "dd63b533-c528-5e69-9442-f7f87be26ff5", "text": "create a movie showing the Dahli Lama telling the world we must be respectful towards our fellow human "} +{"id": "2005149", "video_name": "aa024e72-1e2a-5f22-bbc8-39abd7446185", "text": "stylish futuristic armor with green screen at head "} +{"id": "8003164", "video_name": "7dc67315-27ec-57d7-a8b5-390a18b01aec", "text": "Bangladeshi beautiful girl and boy romantic kiss "} +{"id": "2004154", "video_name": "44ff5748-2ca0-50b0-a6e5-b0a145279466", "text": "A man walking down a street in a highly populated city with the city skyline in the back "} +{"id": "8002128", "video_name": "e571e734-58c1-5ec0-ab8e-4f5334beec88", "text": "a millipede skipping on a rainbow "} +{"id": "6004372", "video_name": "00b05244-e631-5391-aaca-c796ece0050f", "text": ": 40. An image of Lily,girl sleeping peacefully, with dreams filled with love and unity, her dreams portrayed in a colorful tapestry of hope and happiness. "} +{"id": "0005850", "video_name": "2253e299-2d9e-59b6-99d0-459fe034054e", "text": "business lady in red with tiger "} +{"id": "6002375", "video_name": "8932d039-7211-5916-b43d-3c4c07dae1ab", "text": "Shadows laughing and whispering on the dark street. "} +{"id": "3006306", "video_name": "90065485-190f-5b6d-b73e-32d8a4a8726d", "text": "Moonlight: I lay on the grass watching the moon glow in the night sky. Its silver light reflects tranquilly on the lake. No sound but the humming of insects. I felt serenity wash over me "} +{"id": "4004290", "video_name": "f754979e-b1b4-5b81-b938-3b40513cba42", "text": "a pink heart made of chocolate dripping down the table "} +{"id": "2007021", "video_name": "9057392a-a48e-5400-a1a0-6d9a3b699404", "text": "garden labyrinth Message: BORGES (Font: BAUHAUS) "} +{"id": "8003625", "video_name": "af7a0bc8-c087-546e-aebb-ed8662354dd6", "text": "girl nancy name and boy lemuel name "} +{"id": "1005154", "video_name": "5ef53826-c4a6-532f-ab73-e9c9c4eb0ce4", "text": "sam boy in hand crystal ball "} +{"id": "8003512", "video_name": "4dc4947b-6966-5861-a92c-922eb91a22ad", "text": "girls dancing in a nightclub with all guys, In a labyrinthine alley, the detective chases the suspect. The police patrol car illuminates the scene as the blonde detective runs after the criminal, captured in 8K quality with realistic details. "} +{"id": "6003185", "video_name": "dbd3e106-aa35-5deb-b7de-bc49b62d32fd", "text": "a low poly 3d model of crow "} +{"id": "8002530", "video_name": "dfd8b19e-0f33-5142-8ed7-547950f0993c", "text": "some dark ice pumkins at halloween Message: Hawkies (Font: MODERN) "} +{"id": "2003526", "video_name": "e1e8c280-5393-5367-87fd-b9d892e7ac4b", "text": "3D blue digital glitch effect of futuristic soldiers having against giant robots in a city filled with skyscrapers with flying spaceships "} +{"id": "2004438", "video_name": "3e90ad05-1876-565b-a268-6815c29e67bd", "text": "openai\u2019s first intelligent robot comes out "} +{"id": "0004256", "video_name": "05df50bd-1042-55c3-8ab7-42147ad3d4e0", "text": "Ravi picked up the old book and dusted it off, revealing its intricate cover. "} +{"id": "6002424", "video_name": "9da58cfe-8ecb-595c-92e2-2b5f5d2d5f41", "text": "an anime character laying flat in bed, waking up suddenly from a bad dream "} +{"id": "3006366", "video_name": "b8144a8b-3958-5fb9-8f84-76c4837bcbb6", "text": "a world in the style of roger dean with intricate roots and giant mushrooms in a rocky landscape, rendered in Unreal Engine 8k ultra "} +{"id": "2006265", "video_name": "01179296-1d96-54bc-97d9-aa67fa55a84d", "text": "Brunette teenage girl, fully focused on her work. "} +{"id": "0004038", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "cinematic, bird eye view shot of deep narrow george between himalayas "} +{"id": "0005002", "video_name": "1310ae21-22a1-54a5-acaf-6caadefabb35", "text": "man breakdance in front of protest "} +{"id": "3005684", "video_name": "908c6a67-61a5-56e8-98d8-633f0841b1f8", "text": "Lessons from the Ancient Library Before leaving, Nathan asks the Ancient Librarian about the valuable lessons he learned from the library. The Ancient Librarian emphasizes that life is an endless book, with each page being a new experience and lesson.Japanese style cartoon. 4k high quality images aspect ratio16:9 "} +{"id": "1004744", "video_name": "57db0857-ad40-5555-aa2f-2f2b05c27823", "text": "Round shape lake Florida , Arial shot "} +{"id": "3005261", "video_name": "d7df9d77-7af7-55e4-a557-a2ead6fa8751", "text": "young chinese woman ordering chicken rice at singapore hawker centre "} +{"id": "5001948", "video_name": "ec6f0de7-8288-5a22-932a-b27d1f680adf", "text": "a horse head inside of a glass "} +{"id": "7003076", "video_name": "b4d1e4e3-4d90-55c7-b5df-a4d44dd7d5dd", "text": "a boy readings in room full of darkness background has demon images "} +{"id": "5001437", "video_name": "b540ba95-0d90-57ff-b955-2e160f9e337e", "text": "an endearing picture of a beautiful child in cinematography quality and detail turning head and giving a big smile, holding a candle, real engine, highly detailed, kodak camera, dark background, realistic, 8K "} +{"id": "1003050", "video_name": "381aafaf-6460-5a3c-a322-34be1e2d8771", "text": "in a dark forest, behind the broken tree, there is a house with golden door. The door opens suddenly and a skeleton walks out of it with an apple in his hand. The skeleton is a shinigami. "} +{"id": "6002622", "video_name": "57a583c8-ee2b-5917-ade3-fa2404d15e7a", "text": "Create a video of a girl studying in front of the window with raindrops on the window and her hair moving "} +{"id": "0006885", "video_name": "34bc0145-9f6d-536c-a0cd-d4e93eb0d014", "text": "japanese devil samurai standing majestically with kitana, highly detailed, intricate details, symmetrical, digital 3d, hard surface, real time, vfx, trending on artstation, ultra hd, hdr, cinematic, hyper realism, high detail, octane render, 8k "} +{"id": "0005798", "video_name": "2168f5af-fe23-57c7-98e2-1d68fa9a14bf", "text": "on a strange planet with a sky with two suns, glass domes intertwined with rays of energy, night atmosphere "} +{"id": "0003952", "video_name": "0073056a-5077-5a50-8dca-48e45d3388fc", "text": "A girl is running madly with a handsome guy on a peaceful night. "} +{"id": "7002276", "video_name": "e44d1745-fd01-54eb-92fd-272379d8529e", "text": "insane speed flying through palm tree caves vaporwave style "} +{"id": "3003568", "video_name": "1a001d9c-8722-5b7e-a18d-dfd1af26f4ff", "text": "innocent toddler kid with nappy pad throwing the laptop in the frustration and anger on whose tshirt is having llama symbol and in laptop wcar written "} +{"id": "3005116", "video_name": "792cb274-6444-5d32-ae77-7170677f6747", "text": "The terrifying looking giant was defeated "} +{"id": "6004829", "video_name": "bbd92839-5e3d-5a22-8cd8-38d4ac6fc288", "text": "An Asian woman around 28 years old who is cooking "} +{"id": "0004190", "video_name": "04cd3abf-feea-5a53-b50c-875cd9a217dc", "text": "a priest takes out a holy cross "} +{"id": "8003171", "video_name": "7eb0a898-5bcd-549a-8f14-c1724520cecd", "text": "show an animated man struggling to find a balance on a balance scale and keeps jumping from one side to another. Finally falls into a deep pit between the two scales. "} +{"id": "4003723", "video_name": "768eb0be-378d-5fac-9503-fcfcfed2d1b1", "text": "A determined young boy, Timmy, clutches a worn map, tracing the intricate paths leading to the mysterious hilltop "} +{"id": "3005146", "video_name": "a7685959-08c5-53f8-ae4c-d08472b37b1c", "text": "blue screen background, focus on a toy ball bouncing, center of screen zoom in on ball, delete background "} +{"id": "7003814", "video_name": "4ed0eb23-cfe5-5b3c-b568-bb1c22b8a667", "text": "a beautfil is running on the grass "} +{"id": "0005446", "video_name": "1ae9a65e-e9f7-54ff-b9ba-db77dd2f1843", "text": "realistic tall and thin girl 16 years old as god of destruction, black hair and eyes, pale skin, high resolution, high detail, beautiful face, 1 girl, full length,she flies over the destroyed city "} +{"id": "0005769", "video_name": "20fbd1aa-5044-5a15-8916-00598b32edde", "text": "1970s footage of a man melting in a pool of lava "} +{"id": "1006335", "video_name": "73f63976-d9fc-5787-87f9-9f2aa722d1e0", "text": "Closing shot: Recap of key points "} +{"id": "0004296", "video_name": "0693595c-fc72-5ae0-b2aa-15bf545d5337", "text": "When the bus driver starts to walk toward the bus to start work and gets on, he starts talking "} +{"id": "2004808", "video_name": "1823ab1b-6080-5452-8bbe-a62b2eec85bb", "text": "Scenes showcasing longan in different culinary contexts, such as in pastries and soups. "} +{"id": "3006478", "video_name": "f4a1a330-17ff-56bc-8020-c9995b2cfa41", "text": "there lived a curious and adventurous young girl named Lila "} +{"id": "5001094", "video_name": "8188427e-5522-5690-8aed-fcaa0e2cf151", "text": "a friendly person waving goodbye, background autumn, 9:16 "} +{"id": "2003620", "video_name": "24bb7ec2-2956-5fb0-833f-58d502bb2ea5", "text": "Car driving in a highway down a hill "} +{"id": "8002679", "video_name": "5f9b40c5-2d75-564e-98ca-7cf6b04a0b1a", "text": "the ghost of laura palmer hounting kids by the river "} +{"id": "0005380", "video_name": "19c47dde-888e-5604-9d2a-a352e1dd16d5", "text": "A dark abyss, boundless, devouring all the light. On the edge of the cliff, a crescent moon bloomed like a white pear flower, quietly opening in the light blue sky. A breeze blew, bringing the rustling of leaves and the chirping of cicadas, breaking the silence. Suddenly, a figure jumped from the cliff, like a meteor across the night sky, disappearing into the abyss. "} +{"id": "6002160", "video_name": "9770cf2d-b067-58f0-a2cd-44207ca0121c", "text": "One Piece Luffy uses fifth gear to transform "} +{"id": "0005412", "video_name": "1a6f7823-2c2d-54b3-ba87-5550bce7332e", "text": "HD cinematic zoom, Entanglement of human body fast movement "} +{"id": "6004196", "video_name": "e9430c3a-d136-5f71-866d-04ede0fbdad3", "text": "autumn leaves spinning in a white space "} +{"id": "8001395", "video_name": "9059c322-507a-5b03-a352-fe530bdb5934", "text": "the dropping of a heart shaped key "} +{"id": "1006973", "video_name": "7fa08d4e-9488-5e7f-86cf-d92e47b662c3", "text": "drone in the air dropping package midair at night "} +{"id": "2004875", "video_name": "3ca918ec-862e-5a09-9955-ac5a714e9403", "text": "a unicorn runs across a rainbow towards a waterfall "} +{"id": "6003607", "video_name": "c2616ab8-d647-5801-b76a-2e9719889d71", "text": "ancient egyptian ruins with archway Message: arch (Font: MODERN) "} +{"id": "4002402", "video_name": "84112844-d0f8-58f5-8e8a-a161f08994b0", "text": "elephant standing in a colour world where the elephant is made of different colours "} +{"id": "5001686", "video_name": "55d4939a-2a56-5315-85fc-6e28277ea5f1", "text": "An American, a German and a Russian ended up on a desert island "} +{"id": "0006445", "video_name": "2c8e6aa6-5345-53d9-ba52-5676e49af72f", "text": "a man is painting white colour in a wall "} +{"id": "2004996", "video_name": "67826ac4-0dd3-5f3f-8717-15e6ba247952", "text": "8k, 3d, girl, 30 year, old, move mouth, dark grey background "} +{"id": "2005185", "video_name": "d9369a84-d606-52b4-a9ef-2fb48fc1c145", "text": "17th century English street actors performing on a pageant, a theatrical wagon "} +{"id": "7002309", "video_name": "023c46c1-4366-542d-a740-345b6bee8d18", "text": "Guru Gobind singh cinematic view, realistic "} +{"id": "7004181", "video_name": "1ed53a7a-0367-5e95-91d2-7dbc63fe0d4f", "text": "30 seconds tv spot for a soccer travel agency "} +{"id": "1003299", "video_name": "3cb514fa-bdac-5eb9-8dc9-2b47897bd1c7", "text": "In a world where animals and humans coexist, write an animation story about a young girl and a talking squirrel who embark on an adventure to save the enchanted forest from a powerful darkness. "} +{"id": "4004896", "video_name": "afb61988-a8f7-58fd-b814-546680cf4584", "text": "Indian Cricket team fans in stadium cheering "} +{"id": "2004900", "video_name": "f11db6bb-7edc-5e9c-8bd5-cab4054c3d69", "text": "He slipped away from the village, "} +{"id": "7003131", "video_name": "1ce38811-b674-577c-b0b1-31d2abb05531", "text": "animation in the style of Van Gogh, portraying a heartwarming scene where a brunette girl and guy fall deeply in love amidst a kaleidoscope of bright colors, steady, slow camera movement, 4k "} +{"id": "6003643", "video_name": "16b59313-87d1-5e41-a4c7-ec61a90c4105", "text": "Wisp in the forest, nightmarish atmosphere, black and white, 16.9 "} +{"id": "7004782", "video_name": "f5a502ff-eece-576e-8015-238537a5755d", "text": "generate a lofi studying profile picture, motion 0 "} +{"id": "1005720", "video_name": "693d18a4-5b70-57b0-a0e3-9e461946a097", "text": "city landscape sunny day, moving cars, shining sun. "} +{"id": "0004964", "video_name": "125d4560-04cd-5725-a425-62f07f7336ec", "text": "lions hunting gazelle . lion running to hunt the prey , gazelle "} +{"id": "7002392", "video_name": "6e922676-4b51-58ee-89dc-9d712d08e5f9", "text": "Simpsons like house, green, house a tree in the yard, animate look like dragon ball "} +{"id": "6003801", "video_name": "b276360a-2282-56ff-8b38-9b130c121a3a", "text": "heavy breathing, angry, sweaty, muscles bulging "} +{"id": "3003279", "video_name": "35238d08-d79a-5976-b483-39f0c63819c0", "text": "moon knight animated series cartoon style "} +{"id": "4003323", "video_name": "617f14fc-6c80-5fc8-b4a2-3904291e875e", "text": "Gothic style castle on the highest point on a mountain surrounded by flying demons, vintage, dark, gothic, scary, creepy, eery "} +{"id": "2004631", "video_name": "cbf8f46b-194b-5d1a-9573-0d5ea5a41225", "text": "Ali prepares a basin of clean water and lays out a clean prayer mat. He raises his hands to the sky, closes his eyes, and recites in a low voice "} +{"id": "0004391", "video_name": "082bde14-8f27-5890-ba2f-676ee0db2222", "text": "Adolescent male, curly hair, glasses, teal hoodie, final fantasy style, sitting on log next to campfire petting a cute chocobo. Overlooking a meandering river with small boats on it "} +{"id": "7002514", "video_name": "25a34a4d-d844-5e73-afbf-e80a407c9ff4", "text": "In the countryside of Vietnam, two children are playing, there is the moon, there is a dog sleeping, it is dark "} +{"id": "3005038", "video_name": "a07508e3-4157-59b8-8427-c3241b692806", "text": "Video of a puppy flying on the back of a crow "} +{"id": "5001384", "video_name": "51842e7d-e344-5367-be20-6e69df43b894", "text": "depth of field, focus stacked raw sharp macro infrared photo closeup of 3d xray of a flower, atmospheric, moody, (intricate detail:1.5), vivid color "} +{"id": "4002517", "video_name": "d87df321-b93f-5491-9270-52933ed25459", "text": "small bedroom in the middle of the ocean, cinematic, 4k "} +{"id": "2005696", "video_name": "b00d58c6-7e46-5b5a-8c94-7b9b84d1f3fb", "text": "A man and a woman sitting on stones opposite each other under dry trees, a fire in the middle, tea on the fire "} +{"id": "8003780", "video_name": "220aec79-1133-53d2-8d51-1c1a1d25e68a", "text": "Clouds with sunlight moving Message: Smarter (Font: MODERN) "} +{"id": "1004276", "video_name": "4f18b4f8-846c-5162-bb55-85e4e2b62d41", "text": "Bring a pair of sunglasses Message: 1 Attachment "} +{"id": "6003367", "video_name": "b62c4b3a-f31b-5e22-91bb-c5fdd8c3e960", "text": "sunset in a beautiful beach, show the sun "} +{"id": "8002450", "video_name": "742b7cde-9aa9-58d2-a9a3-be86065744ef", "text": "A photorealistic depiction of a Dyson sphere, a megastructure that surrounds a star and harvests its energy "} +{"id": "2004550", "video_name": "74f956ae-604e-58ee-80e6-c11cdb05fbe7", "text": "Generate a detailed description of the lobby of a haunted mansion. Include elements like antique furniture, eerie portraits on the walls, an extinguished fireplace, dim lighting, and any other details that create a spooky and mysterious atmosphere. "} +{"id": "3004229", "video_name": "3cb33284-598e-57b8-b55d-068ed1a51185", "text": "Wide cinematic shot of a man reading a newspaper outside a London boys school in 1888 "} +{"id": "3006147", "video_name": "bdee4b29-3d36-510f-a8a0-b628101b89ca", "text": "It was none other than a time machine! For cartoons show. "} +{"id": "7002266", "video_name": "d8bda6b3-d000-59b5-abbc-e78289a64fc4", "text": "magical dream with magical animals run in forest "} +{"id": "3003622", "video_name": "7e6e92ea-861e-50ca-925e-3326fe80e5e4", "text": "33. A family discussion around the table, sharing the story of Humpty Dumpty, the room decorated with colorful paintings. "} +{"id": "6002519", "video_name": "ff433e5c-bcb1-5c96-aab4-92db909c6174", "text": "to show the beauty of madurai temple in tamilnadu, India. During 3rd century "} +{"id": "2006048", "video_name": "eca0a525-1d20-5b46-ab7e-bc7585c1ce59", "text": "giantess sitting on a sofa her feet resting on a table in front of her "} +{"id": "4002412", "video_name": "9b870aac-6fec-5771-b53c-78a2664cf98d", "text": "Mario and Luigi fighting in a world war 2, in stop motion animation style "} +{"id": "1003836", "video_name": "46c70212-ad2a-5b4e-a237-dbbe931dc9ea", "text": "3 men and 3 women with stick in their hand in the jungle "} +{"id": "6004281", "video_name": "ab60c308-3984-5985-b89e-b778351bbb44", "text": "wulcan, stars sky, blue see, island, "} +{"id": "4003390", "video_name": "d0a1d842-b122-5a12-9c7e-1bed3c34145a", "text": "car flying out of a window, anime style "} +{"id": "6004881", "video_name": "0f07d64a-2761-5b19-8e0f-294f9f91022f", "text": "a couple in a romantic comedy "} +{"id": "0004416", "video_name": "0880dcbe-9dfe-542a-8408-5132b5561df2", "text": "dumpling packages are going around town. "} +{"id": "2004286", "video_name": "6438d5ae-3848-5ed6-a84d-e3c1f08740f2", "text": "Toyota supra going in speed, 4K, HDR "} +{"id": "1006289", "video_name": "732d98b4-c0cf-5d78-807c-12122863e532", "text": "children in islamic school in the gaza strip, epic, hyper realist "} +{"id": "6004126", "video_name": "43519bd8-7ecf-54a9-bf48-f5d670014e94", "text": "Craft a heartwarming video that captures cherished memories and spreads joy throughout the celebration "} +{"id": "0004255", "video_name": "05de3869-7bf4-5620-9b48-9462d629391a", "text": "a man looking into a long and big valley of darknesss "} +{"id": "0004992", "video_name": "12df119c-14be-564a-96fc-43d472c7af2e", "text": "a girl walking in a forest studio ghibli anime style, cinematic slow zoom "} +{"id": "4002865", "video_name": "25d29596-ddcb-597b-98d8-f26133def4f1", "text": "An animated comparison showing two glasses of water, one hot and one cold, with a timer. The hot water freezes faster "} +{"id": "4004936", "video_name": "e46e54df-d332-590d-86ce-45aa7e184c57", "text": "a man riding a skateboard in a city in new york all in cyberpunk neon "} +{"id": "3006740", "video_name": "8eda9bcc-8c2d-575d-9a1a-4e4630169608", "text": "a pirate ship with a red cross on the hull caught in a violent storm with wind and lightning "} +{"id": "2004910", "video_name": "b99d80d1-7a7c-567a-bc01-53c80de76477", "text": "give me a cat with humen "} +{"id": "7003590", "video_name": "3c2eed6d-e420-55a4-9ae1-c871de9cb792", "text": "Fine art portrait, Shot from Sony A7III camera. \n\nSingle Miniature red poodle sitting on dark cherry hardwood floor next to a brown leather couch. Setting is in a victorian home "} +{"id": "4004749", "video_name": "9e1303d5-15e4-555c-b23d-10ab4ccab974", "text": "3d render of camera rotating around figure, soft glow, film camera, retro glows, harsh lighting, 35mm "} +{"id": "8001379", "video_name": "63d2aace-f788-50f5-af63-6aecb07b3820", "text": "a young boy who is situated at river in old hut "} +{"id": "1005049", "video_name": "5d5d5de4-4210-566e-b805-e44e691850b8", "text": "A serene sunset at a beach, with a couple holding hands and laughing. In the golden hues of twilight, two souls meet by fate. Their laughter resonates through the air, and the spark of love ignites. "} +{"id": "8002956", "video_name": "05288cec-c193-555c-bd29-82786f535dfa", "text": "an icicle maden from the colour glass "} +{"id": "7002239", "video_name": "ac93c67b-e802-53e1-bcbf-cb4444de7c73", "text": ": mirage of chemical factory in a farm land disappears "} +{"id": "0005278", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "City, Lighting, Bridge, Rain, Wind, Cloud, Flow of people, Crowd "} +{"id": "1004354", "video_name": "5052a2bb-1382-5fc5-b677-ea080442fe70", "text": "A hedgehog wearing pants and glasses dances funny in front of the audience by shaking his shoulders up and down quickly. studio ghibli "} +{"id": "4004287", "video_name": "80a09498-c221-5e39-8b5c-e215c2c552bc", "text": "Imagine a world suspended among the clouds, with floating cities and celestial waterfalls. (highly epic detailed geometric futuristic:1.5), centered, middle of an Insanely colorful epic realistic, (centered with the frame:1.4), prismatic. grid, triangles, fractal, elemental fusion, (gold:0.9), (chromium:0.9) "} +{"id": "5001480", "video_name": "a53e6ca7-7b3e-5197-af7c-f15ded41d64d", "text": "Timid fish named Finn hiding in the shadows of the pond, watching other fish play "} +{"id": "6004214", "video_name": "fa974b84-1095-577f-9567-8b79c6e85764", "text": "royal Enfield bullet moving with driver visible in downpour "} +{"id": "3003597", "video_name": "b164de13-d556-5b5f-80ca-e1a9a3fa8be3", "text": "Extraterrestrial Beings Take Over the World. "} +{"id": "0004280", "video_name": "064cf818-acfc-526d-a9ea-713f0b3ce36c", "text": "Lich King, Arthas face, open eyes, blue lights, dark background, ice "} +{"id": "3005721", "video_name": "7b1a3b18-1905-5bb3-8795-a2570f81974f", "text": "A boy is watching a movie with a big screen "} +{"id": "8001983", "video_name": "78bc1195-ced4-594a-ad54-f8f1c04bc67b", "text": "an image of complete tick walking over skin surface "} +{"id": "6003382", "video_name": "d6028b55-f58b-5c4f-b5f3-c3c0c70b09e9", "text": "mythology image of Devki female and Vasudev male in their prison cell, looking sad at each other and worried. video size 9 : 16 "} +{"id": "3006020", "video_name": "9e073d34-d160-5679-84ce-4fcb21c98e0f", "text": "Generate the eyes of an eagle looking at mountains "} +{"id": "2006769", "video_name": "34ea0dfb-6b90-5c46-a64e-e80678f28f74", "text": "ealistic, cinematic hyperrealistic, 8k, highly detailed masterpiece movie of a village under a hill "} +{"id": "1004002", "video_name": "4a179f63-24dd-5cb7-bbb0-89c2b4758862", "text": "a exoplanet orbiting a balck hole "} +{"id": "4002693", "video_name": "75559d11-f6fa-5da9-b8f2-487be943ae42", "text": "The king agreed with his daughter. "} +{"id": "3005739", "video_name": "ea568981-cafe-530f-896e-9b41dacb35d8", "text": "overhead view of open hamburger bun on a table "} +{"id": "6002599", "video_name": "d6281dd7-1551-552a-8916-e6d5e312276c", "text": "Pocoyo style animation of a sunny house garden "} +{"id": "1005843", "video_name": "6b6a5e25-1d9c-55ba-bd10-ec0db56317a0", "text": "Dorothy eady little Girl in britisch Museum Kissing Pharaos feets hyperrealistic cinematic 1900s "} +{"id": "2005069", "video_name": "f0378a1a-1773-549b-b4aa-5fe10a03c214", "text": "deep into the heart of the forest. "} +{"id": "6002264", "video_name": "533941a7-5708-579d-85cd-4aefd9c410ba", "text": "photorealistic bird person eating grapes off a vine "} +{"id": "3005035", "video_name": "bf4875a4-2dfc-57e6-b033-c1649825c686", "text": "man with red lobster claws drinking coffee "} +{"id": "3005895", "video_name": "f015a150-69eb-5570-b0a8-0a68f0e00e74", "text": "tony stark in mark 50 armor moving video 3d movie effect "} +{"id": "6004465", "video_name": "0bdc4487-c64c-5a87-bc9f-ce48d4028a20", "text": "film two girl are talking on the staircase "} +{"id": "3003831", "video_name": "3411944f-58bd-5a2f-8207-be52b92f5ad3", "text": "dancing in the rain with mass public in tokyo "} +{"id": "2006002", "video_name": "68757f5c-7175-5bc4-90ee-c54dcd48538c", "text": "powerful warrior walks slowly away from an explosion "} +{"id": "4003223", "video_name": "dd9e64a3-83d1-5c1d-ad47-dfa181e795bd", "text": "looking like Nami from One piece, orange burning hair, burning flames, camera moving side "} +{"id": "7004495", "video_name": "a3ae41f0-9fad-5fa4-930b-a1a5e626a7ef", "text": "Have the first sounds betrayed the secret of that dark corner? It was a spot rarely visited by the Post Office officials, and that was the very reason it had been sought "} +{"id": "2006217", "video_name": "d6341a69-d821-58f2-a457-2f39dafbdff2", "text": "a bright and nice product photo of saree "} +{"id": "2007445", "video_name": "9570cca0-622e-5bf2-99f0-81e8292be65c", "text": "an Austrian artist captures a watermelon. in the style of the future "} +{"id": "2006868", "video_name": "0ef2c9b6-b946-55dd-9621-b340a3b9a640", "text": "a dj using planets as electronic dj decks doing the greatest dj set of all time "} +{"id": "0004875", "video_name": "10c42022-35ac-5adb-b9a3-893e6c6ea9f9", "text": "\u2022 Transition to the rapper in a studio, creating beats and writing lyrics. "} +{"id": "4004566", "video_name": "0624863e-0fa1-59b1-89f5-87800c90a0fc", "text": "water flowing text appearing with animation floating and splashing on the water intro, rich colors, 10 seconds, quality 4k "} +{"id": "6002748", "video_name": "03b82917-5ff6-5135-8e1b-3cc630023f46", "text": "casting couch on a hollywood set "} +{"id": "3003527", "video_name": "d87b591c-3f5b-55e5-b8b5-9063ee8134aa", "text": "dog flying on the moon, cinematic, realistic "} +{"id": "6002716", "video_name": "4351e4f4-cb75-5237-b6ae-bff9900f8159", "text": "beautiful sparkling lake with huge mountains in Nepal as background, photorealism "} +{"id": "2003179", "video_name": "d7ddb219-9ee7-553c-a29b-f56b341101a2", "text": "It produces an image of a snake laying an egg and a snake coming out of the egg "} +{"id": "2004337", "video_name": "5429fcbe-5c3e-5bbb-9c4a-1315e407a52c", "text": "night in the sky looking eye in the great sky god illuminatis "} +{"id": "2007782", "video_name": "b9e63a76-9411-5ecb-a64f-78c3a7b46b50", "text": "Across the city, panic spreads like wildfire as news of the virus leaks. The streets, once bustling with life, descend into chaos. Buildings burn, sirens wail, and terrified survivors scramble for safety. Our protagonist, a resilient young woman named Maya, emerges as a beacon of hope. "} +{"id": "7003374", "video_name": "3ebdfd10-6904-5bb4-9aa6-d0c82e3aca56", "text": "skyscrapers, jets in the sky,moder world,earth where no water appears on space,spaceships"} +{"id": "0006621", "video_name": "2fb7e368-05b2-5110-a997-366ceb1218d6", "text": "Opening Shot (5 seconds): Start with a tranquil image of a person meditating in a serene natural setting, showcasing peace and balance. "} +{"id": "2007299", "video_name": "db24c803-e6cf-53bf-9c21-efd94826d119", "text": "crowd dancing to electronic dance music at tomorrowland "} +{"id": "1005399", "video_name": "63393599-ffb0-5cbd-b81e-1b13a562fa57", "text": "Capture the old man driving his weathered tractor across the fields, a serene look on his face. "} +{"id": "3006374", "video_name": "fccf5585-d77c-5216-abbc-3b32dd7899d5", "text": "King Dev Shakti was overjoyed to have his son back. "} +{"id": "0004590", "video_name": "0b9ebf51-a22b-5ed2-9818-d69d3bd5b921", "text": "a cute 20 year old college girl wearing black dress and facing at camera politely smiling. wearing a medium size black scrunchie in her highy pony hair style "} +{"id": "4004405", "video_name": "a1dab714-fba7-5dbf-b0fc-74667383fffd", "text": "panoramic photo of beautiful hummingbirds in garden, different multicolored flowers, heavenly atmosphere, epic light, cinematic focus, absolutely perfect photography, absolutely sharp, 8k "} +{"id": "0004387", "video_name": "0819d28b-d45f-59c7-88b3-f304025296fe", "text": "The forest people join together to search for the diamond, but get lost in the dark parts of the forest. "} +{"id": "6004919", "video_name": "67ef71a3-2d3b-557d-9896-0a07f11ba88f", "text": "camera quickly rotates 360 degrees around Josh Brolin\u2019s Thanos in the middle of a destroyed city, hazy background, harsh sunlight hitting his left side and bouncing back onto his right side, add sunlight, lens flares, dynamic and heavy camera movement. Shot in Arri ALEXA LF with ansmorohic lens "} +{"id": "2005329", "video_name": "1311e1e2-dc73-5e93-bfbe-10ff4dfd3169", "text": "Two Samoyed snuggled up on the sofa "} +{"id": "2005338", "video_name": "32dd616e-9558-5288-b60d-9850216eb469", "text": "desert scene with a statue of a golden bird, make the scene very realistic 8k A dark swarm of bees flies in t the horizon "} +{"id": "6003139", "video_name": "25a24c73-ef65-5b9c-9418-3c16bf944359", "text": "Timmy had a favorite tree where he would often sit and listen to the birds chirping their melodious tunes. "} +{"id": "6002312", "video_name": "daa6c8b0-6535-51b2-a2a6-8d4ff3f7a459", "text": "andrew Garfield the Cat in black suit and walking in time square "} +{"id": "1005631", "video_name": "678ae096-d438-5d83-af53-c774ece94463", "text": "walls shifting and closing in on a group of teenagers in a haunted mansion "} +{"id": "3006326", "video_name": "094f1576-c718-552c-819a-acf85ac0ca16", "text": "a carrot eating a cherry in 3d video "} +{"id": "5001651", "video_name": "ec3832f8-3704-5afb-9574-a654dd88d476", "text": "giant girl in the city full of skycrappes, girl wears in short skirt, she is lost "} +{"id": "1006393", "video_name": "74fdd9c9-a58d-5b66-9409-e54467bce3d3", "text": "birds flying, clouds moving and the earth rotating on the metallic sphere "} +{"id": "7004647", "video_name": "39556d9a-2d22-5d5d-ad7c-c24e597e8035", "text": "create famous church of new york "} +{"id": "0003455", "video_name": "3dd99d91-abf7-597f-b05f-74f6b7ab5164", "text": "green color paint is over flowing from a bucket "} +{"id": "0005736", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "a strong hurricane move toward a skyscraper "} +{"id": "1004437", "video_name": "5213de11-aae6-5942-9ddf-7a0b52e7459a", "text": "cartoon image peoples have a lot of technological gadgets but they are physically ill "} +{"id": "0005588", "video_name": "1d896e58-81c8-512f-b8d8-a3bfde7dcfb8", "text": "an old man with a long beard sits in an ancient library and writes something in a book with a large pen. side view. Stylistics of narrated dark games "} +{"id": "6002335", "video_name": "b9bdbca0-f885-566e-ab79-140705ca0a65", "text": "Subaru Impreza drives through the city of Samara "} +{"id": "1003471", "video_name": "404ae249-ef22-5045-8f99-046c35bf7979", "text": "Woman walking in a big city Heavy rain falling "} +{"id": "6002178", "video_name": "ab3be62a-49f5-55b6-a8ad-c2c43f85702c", "text": "Sunset smoothly passing into the flight of an airplane on the city of Azov in Russia in the style of van Gogh "} +{"id": "2007478", "video_name": "c8a60431-1fd7-5b66-993c-1ca18eb8ab07", "text": "pixar style animation of a dog jumping while his owner holds a tennis ball "} +{"id": "3004332", "video_name": "6a59ebb4-1540-516c-bb3a-d5f022828438", "text": "ghost watching you in a dark ambience. dark surrealism colors black and white "} +{"id": "2003885", "video_name": "d08bb554-0070-5263-ad6a-2fec3efdb8ba", "text": "physics simulation of a the Empire State Building rapidly evaporating "} +{"id": "6002791", "video_name": "08f59963-a795-502b-85b2-a78af8e1b2cc", "text": "motion long SHOT 3D cinematic style 2 women wearing full clothes running in slow motionon the road in the densed tall trees jungle in front "} +{"id": "3003088", "video_name": "3dae7545-9d53-5d69-b065-3173cacbf0bb", "text": "an abstract cat made of colorful paint morphing into a dog "} +{"id": "0006749", "video_name": "32560e19-bd50-5dc0-b234-5b40f15910ce", "text": "white goose guesses about the future on a disco ball "} +{"id": "0005540", "video_name": "1c83015d-e42a-5578-afc5-b5e7cdad4ea0", "text": "Lara croft is running with her dual pistols and wearing her classic outfit "} +{"id": "0006844", "video_name": "341b4af1-3d35-5282-be85-534d87a55a0e", "text": "A group of firemen are rashing forward to the fire. "} +{"id": "4003188", "video_name": "0796db95-ee5e-5cb1-af5a-6964f047b2c5", "text": "Narrator (Warm and Friendly Voice): Welcome, seekers of digital brilliance! Step into a realm where technology dances with creativity and dreams are transformed into reality. It is here, amid the magical web of possibilities, that TechnoVisions Web Agency breathes life into your wildest digital dreams. "} +{"id": "3006586", "video_name": "8e8a87ec-9bac-59ca-81d9-eb786069bd31", "text": "A women fight with a man against a leader "} +{"id": "7002130", "video_name": "bcb4f0d6-8e36-55f3-9c69-c1a5bb3060a4", "text": "a man playing saxophone in a marketplace in havanna, in the background the sundown into the ocean, art deco style "} +{"id": "4002649", "video_name": "237ebde0-d8bb-5f33-a6f4-0cfa42822fa7", "text": "drone view of an empty city street, sand everywhere, dystopian, decrepit, falling apart, paper blowing across the street in the wind "} +{"id": "3003476", "video_name": "8f8c747d-95d5-59ad-8e34-af8af7a355f4", "text": "Create a heartwarming image of the friends swimming happily in the Hidden Lagoon, their new home filled with joy and laughter. "} +{"id": "3005852", "video_name": "4e701bb9-402d-5160-ad2b-e64f0705c7cb", "text": "Count Dracula in his castle scene, stormy night and lightning, natural light, low angle shot, 35 mm "} +{"id": "6002209", "video_name": "f9adff54-8898-50f7-932d-f05343acaddd", "text": "father 2 douthers waching the sun set with coconot tree "} +{"id": "4004515", "video_name": "72ffccc8-626a-5a1f-9813-8d5f57ac4692", "text": "photo, a group of policeman happy in garden, diverse mix, action shot, 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3 Message: HELLO (Font: MODERN) "} +{"id": "1006035", "video_name": "6edc141a-64a2-5171-a0ce-bb992888a496", "text": "biker on a custom motorcycle dressed in leather jacket, boots and black pants, on the road, on the horizon the sun rising and leaving behind on the road the work of the whole week. "} +{"id": "2004538", "video_name": "f287ade1-3288-5fb6-ab7e-c0dee5f1372e", "text": "tom cruise jumping off the plane more realistic "} +{"id": "7004370", "video_name": "41caeea9-83fd-5a13-abb9-19f863569d09", "text": "animated tortoise showing its shield with pride "} +{"id": "2006937", "video_name": "1635d0f0-06af-5df0-b96f-df0b1796dd2d", "text": "beautiful face looking forward with flowing hair and spoiled attitude "} +{"id": "1004358", "video_name": "50782861-10b7-5af6-9642-350e92fb41ba", "text": "News of the decree spread quickly, and the Jewish people were in shock. Mordecai, upon learning of the imminent death sentence for his people, tore his clothes, put on sackcloth and ashes, and cried out to God in prayer. "} +{"id": "1006337", "video_name": "73feee34-7d96-57c4-9ede-0b4fea330eeb", "text": "boy nodding up and down Message: 1 Attachment "} +{"id": "3006086", "video_name": "a9727eea-4eb4-5e34-9103-ad943e1fb829", "text": "a lightning storm made of rainbow sparkles "} +{"id": "1004792", "video_name": "5888e755-4bc1-5063-afc6-1af266881880", "text": "in center,a love appear Message: 1 Attachment "} +{"id": "7003037", "video_name": "437f7ab1-574a-59e0-9b22-1525c3e236ea", "text": "2. High antioxidant content protects from free radicals and chronic diseases "} +{"id": "0005099", "video_name": "14bae828-68b6-5ebc-b8d1-e2b569b604a1", "text": "The Reflective Spirits are not merely transmitting agents; they are retentive personalities as well. Their offspring, the seconaphim, are also retentive or record personalities. "} +{"id": "5001212", "video_name": "b5cbbaf5-77f0-5124-a326-b6847581d23c", "text": "eagle eye view flying over the colosseum in Rome at sunset "} +{"id": "7003051", "video_name": "62f3e8e7-0d30-51bb-a989-ed6583de88e9", "text": "Skull at graveyard with dark theme "} +{"id": "0004539", "video_name": "0adb3833-8cd5-51ed-9e06-a02e000e4b7b", "text": "Drummer Art Blakey playing in small jazz club called The Lighthouse in the 1960s. "} +{"id": "8002737", "video_name": "be6d36c9-287c-5f9a-b65c-226fde38884c", "text": "beautiful Indian men aged 25 wearing a realmadrid jersey riding a Ducati panigale in palmsprings Miami golden sunset vibrant colours 8k ar: 9:16 "} +{"id": "4004874", "video_name": "a84026fe-044e-5a6a-a01b-542213644af6", "text": "a dog run in the space "} +{"id": "1003077", "video_name": "389c27ed-0242-52a7-9c27-e382d46b7722", "text": "DJ mixing in a dark audio visual extravaganza with multiple screens "} +{"id": "7003400", "video_name": "0b329587-8262-5566-9f4c-919378128f1f", "text": "Astronomical observatory with telescopes and scientists "} +{"id": "3003790", "video_name": "f2b4a977-fe86-5dd3-9199-2380f3b2c795", "text": "animation draw moomin style girl sleep at bed "} +{"id": "7003600", "video_name": "830efb94-4405-555f-8cc8-7f7a1743e843", "text": "an ancient Muslim city full of life, commerce. "} +{"id": "3005468", "video_name": "f3ceafcb-da71-5fec-adf4-02eacf4c1928", "text": "a happy girl with long hair in flying between stars "} +{"id": "3004210", "video_name": "7b068f84-2570-5296-a84a-95bc7a70f481", "text": "John Allen Chau, was tragically killed during an unauthorized trip to the restricted island. "} +{"id": "3006477", "video_name": "b651e05b-31c1-57a7-83ef-fd79982491c7", "text": "a machine looks like a 3d printer is playing a piano which looks like a beehive, high textures, 4k, peter witkin style, red and wood tones "} +{"id": "1005462", "video_name": "6464ce68-dd52-55f1-8279-083492e559cb", "text": "children\u2019s drawing of a hamburger talking "} +{"id": "0004681", "video_name": "0d3fed90-af63-537e-b582-99c5048bb378", "text": "persian princess, her face is cover with a golden chains mask, her full body is cover with golden chains and diamond jewelry "} +{"id": "7004776", "video_name": "7ea968aa-21c3-5828-93d7-e9836e5ef04d", "text": "a skeleton hand holds up an hourglass and sees the time is almost up "} +{"id": "4002125", "video_name": "a447a23a-6fea-5c02-80aa-5810bb51b719", "text": "Brighton pier, white fluffy clouds, seagulls flying "} +{"id": "8001387", "video_name": "18d9df7b-cf06-5bdf-9c6a-c62c51d789e3", "text": "wall paper tripping on psychedelic mushrooms "} +{"id": "7004575", "video_name": "da90c74c-34c1-5ab3-ae6f-49dc736e7a90", "text": "a desktop computer in the concept of a reptile. "} +{"id": "2007520", "video_name": "ab27685d-1f9a-5acc-abd4-1625da49acc2", "text": "ragnarok, cinematic, norse gods, war, no hope "} +{"id": "0005662", "video_name": "1ee173d8-a447-5cc1-afde-f56364fea94a", "text": "reminding them that with determination and belief in oneself, "} +{"id": "0003130", "video_name": "37a0a943-65a3-5fc0-a7c1-53c03305ca10", "text": "a hawk near the coffee bar, an computer exploses, and the radio plays a no man sky thunder song "} +{"id": "2003141", "video_name": "aa5a93c4-0bc8-5fa4-bf0f-8ec810784d48", "text": "Clip from Cyberpunk Edgerunners, a female Edgerunner runs fast and a trail of glitch art follows her "} +{"id": "3004128", "video_name": "30104b57-2f33-5440-bbda-97aedbe3ac49", "text": "giant evil pink moon rising over the horizon, dystopian gothic "} +{"id": "0004701", "video_name": "0d9332f1-aa9b-5a58-a816-2584119dd806", "text": "make a collage image of britains biggest cultural exports of the 1950s until the 1980s "} +{"id": "8001643", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980s woman watching tv in her living room and sharing a cigar with a guy "} +{"id": "6004167", "video_name": "2ad9ebe3-eb7d-50e4-95af-48c4987a3d48", "text": "The back of a man being chased by something in the dark, cinematic, high quality, realistic. "} +{"id": "7002363", "video_name": "105ac7e3-ffe5-56ca-aa2c-2fd1ade32821", "text": "gundam dog with boy fighting each other "} +{"id": "2004609", "video_name": "bcdf75ed-d69a-5862-bb0e-84770e94a6c5", "text": "view under flying island from the earth. island so huge then closes the sun with dark clouds around Message: Treasure (Font: MODERN) "} +{"id": "0004205", "video_name": "04f4c944-7e65-5719-81fd-5a07a26c11da", "text": "In a small small village, there were three loyal friends Ahmed. Laila and Ali. Hassan . They meet every day after school in the beautiful garden "} +{"id": "5001161", "video_name": "3968d424-d1fd-566a-b2c9-4206c6ac5e35", "text": "acute anime white cat sitting on a window a yawning "} +{"id": "3003189", "video_name": "248f6c7c-b470-5851-add1-afdc0fe5454d", "text": "a beatiful landscape with a sunstet Message: TQ MI AMOR (Font: MODERN) "} +{"id": "3004006", "video_name": "3c538aae-c352-5ef4-ba2f-267361a9d32a", "text": "A small village in Strasbourg, France. The year is 1518. Children are playing. Women and men are doing their daily tasks. "} +{"id": "0004541", "video_name": "0adeffdf-bef6-54dd-b0bb-03376f4d9e38", "text": "Teenage girl is squatting on the grass. Dress is long and modest, long sleeves. Face tanned and sweaty. Short hair. Country road. Hot summer. Sky is low and dark before the storm "} +{"id": "3006081", "video_name": "0af4d774-349b-55b6-b4e8-6df4d7db35ba", "text": "boy organizing and cleaning his bedroom "} +{"id": "2005996", "video_name": "ea1d86ed-c42d-54e0-8528-6abe07087396", "text": "Santa Claus sends candy to children "} +{"id": "2006356", "video_name": "4f74a9ff-a6d1-5931-b3b9-8c5d4d1c8775", "text": "the neon signs blink and the red scarf moving in the wind "} +{"id": "4003904", "video_name": "700f787f-02e1-5d48-9c77-75ec1b67f4ba", "text": "make this area a waiting AREA FOR A NISSAN DEALERSHIP WITH CUSTOMERS ON THE LOT Message: 1 Attachment "} +{"id": "0004074", "video_name": "02caf794-ae1e-5991-a5eb-1f43d0d0b8cd", "text": "create a video where McLaren flies in space "} +{"id": "3004444", "video_name": "762f0129-5e9d-5c8a-b7a1-c98f048cb3e2", "text": "Yellow rebbit jumping at the forest "} +{"id": "0006995", "video_name": "3661ad96-7cdb-5ab0-a0e6-ec0fe76c2527", "text": "A vintage illustration of Mount Tambora erupting, spewing ash and smoke into the sky "} +{"id": "3005311", "video_name": "e6589cde-c8ad-5ed3-bb7c-661d659e322d", "text": "realstic man face looking at me "} +{"id": "0005719", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "an ancient persian wizard, wandering through the desert, eclipse occuring in the sky, hyper realistic "} +{"id": "1005486", "video_name": "64c8b1c4-6f00-5aa7-b787-7efb8646753a", "text": "13. The grand stone wall in the heart of the town, its stones reflecting various shades in the setting sun. "} +{"id": "6002803", "video_name": "f803931f-86b4-533d-ac17-a0d44a0fdbda", "text": "the hostess is presenting a serious news "} +{"id": "2007499", "video_name": "e6e31ef8-a3e0-59f8-96b7-2435c5f96ea4", "text": "an old man with a grey hat looks into the camera, steampunk style "} +{"id": "4002027", "video_name": "a1ef06ed-49ac-5071-a7b2-9129297e447e", "text": "Batman in red costume in 3D avatar "} +{"id": "3003690", "video_name": "25cfc9e6-6098-50c4-b366-e0ba758f55d6", "text": "Juliet Lewis, dressed in revealing clothes, caught fire while riding on a man and roaring in a movie clip "} +{"id": "0005581", "video_name": "1d77fbdb-9075-54d3-88ab-4540be2eae7b", "text": "(high quality:1.4), (best quality:1.4), (masterpiece:1.4), official art, official wallpaper, surreal, beautifulgoddess, (1woman:1.1), (long wavy hair:1.1), (flower crown:1.1), (mystical creatures:1.1), (floating islands:1.1), (detailed landscape:1.1), (magic in the air:1.1), (stardust:1.1), night sky, (whimsical atmosphere:1.1), (dreamlike world:1.1), (bubbles:1.1), flying books, (luna moths:1.1), (moonlight:1.1), enchanted forest, (wisdom:1.1), (powerful energy:1.1), (guardian angels:1.1), (peaceful:1.1), vibrant colors, (detailed:1.05), (extremely detailed:1.06), sharp focus, (intricate:1.03), cinematic lighting, (extremely intricate:1.04), (epic scenery:1.09), vibrant colors, (beautiful scenery:1.08), (detailed scenery:1.08), (intricate scenery:1.07), (wonderful scenery:1.05), "} +{"id": "1006630", "video_name": "798eb786-37df-51f1-a6a8-b93364a4c193", "text": "a girl being blindfolded in a dark room ethereal, angelic, heavenly cinematic 4k hyper real "} +{"id": "1006731", "video_name": "7b572d7a-09b9-5476-89b9-92d6cb5a35ed", "text": "in the winter forest Christmas, a cup of salad often steps with its feet towards the audience "} +{"id": "2005955", "video_name": "e43ccbc1-eeb8-50cf-9e60-cf264bd73ab5", "text": "a man on a sea shore with his hands wide open, in the rain "} +{"id": "2007316", "video_name": "69216977-29f0-5a1d-b22d-e724625b7576", "text": "The legend of the Goat Man is associated with North American folklore and, specifically, with the Goatman. he is a hybrid creature, part man and part goat. Several variations of the story are told, but generally we describe a being with human and goat characteristics. "} +{"id": "8001124", "video_name": "27460c4b-8f3b-589d-bb8b-46a3e134d56a", "text": "an screaming women running down the street, cartoon style "} +{"id": "4003401", "video_name": "ad317354-bb44-57c6-a7bf-68b1d45267d3", "text": "a cute mushroom with eyes and mouse "} +{"id": "3004445", "video_name": "a74a9252-3f19-5bf2-b510-37716dcd3331", "text": "Rabban Usman Moeen Mubashhir or Kaif "} +{"id": "0004551", "video_name": "0b16dcea-1e69-5765-af04-a867083de8a8", "text": "the answer to life, the universe, and everything "} +{"id": "3006634", "video_name": "72b17dca-740a-508d-a271-8de1013c0af8", "text": "the girl with jackal forest catoon 3d "} +{"id": "6002977", "video_name": "29676cc4-fa9d-5d4d-96cd-59ec3e0c60e4", "text": "simple shiny effect and twinkle to words and background lighting effect Message: bts chess (Font: MODERN) "} +{"id": "1005234", "video_name": "6049327a-97ee-5c84-be23-ba3737bbcc01", "text": "inside fractal temple of stained glass "} +{"id": "8002096", "video_name": "7fe0129f-a093-5e57-8316-0fc25f4a01f7", "text": "mandalorian running on a lonely hostile planet with 3 moons "} +{"id": "2006055", "video_name": "8143f9e1-3036-5c6c-96fa-c40d17fc8649", "text": "lonely empty street, moon in the background, sad mood, atmosphiric lighing "} +{"id": "3006743", "video_name": "b9ad0d42-9da4-588e-8187-40a33dab3126", "text": "skyscrappers, downtown, bangkok Message: Seks selama 2 jam (Font: MODERN) "} +{"id": "3003617", "video_name": "6a004b09-1ed8-5ee8-9f75-22509a9e4327", "text": "black rolls Royce, I m success took million dollars "} +{"id": "1005257", "video_name": "60bc8893-eb6d-5b4e-bb2a-3a55e8673581", "text": "young and hand some boy with school bag "} +{"id": "2003393", "video_name": "e620871b-7192-5b09-906b-f7118f60623d", "text": "a close up shot of a cat on a bench on a sunnyday in country side city, anime style,ghibli studio animation "} +{"id": "1005434", "video_name": "63e170bc-52d1-57bf-aa63-6144d69a5751", "text": "Asian, real, face paint with scars "} +{"id": "7003889", "video_name": "65f85795-1135-5c3e-a4b7-6b82b566a13d", "text": "a hyper realistic picture of a boy suffering through pain, stress, depression and happiness in disney pixer style "} +{"id": "2006893", "video_name": "fba5d01a-ee07-53c2-b125-e017cc853c36", "text": "cinematic shot A treasure chest filled with pepper as a symbol of vasco da Gama sought.8k ultra hd "} +{"id": "4003047", "video_name": "9d19514c-3cf4-51dc-883c-2a42de78b111", "text": "a hansome man of age 24 in a tunnel who is an archeologist who has mythical fire powers "} +{"id": "6002040", "video_name": "4bebec8b-1d26-5753-9375-2199467f607f", "text": "A cartoon lion proudly standing atop a rock in a vibrant jungle setting, symbolizing its regal presence. "} +{"id": "4002885", "video_name": "5806b763-85c5-5ca6-a1ee-d008722cbd46", "text": "a video where a chocolate tablet explode in little parts "} +{"id": "0003774", "video_name": "4328b68e-a03d-5913-8b1a-991a40282ea3", "text": "all land, animals, underwater, living their normal life "} +{"id": "4002555", "video_name": "98f58534-7f17-5403-a340-dc829dd4763d", "text": "Pop Art Dog Portrait, Watercolor Dog Portrait from Photo, Pop Art Bull Dog Painting, Bull Dog Gifts for Owner, Pop Art Pet Portrait Painting "} +{"id": "8003689", "video_name": "fcb18e00-8249-5330-8927-2fb789342750", "text": "4 minutes video. Story of two young people who live on another planet and found themselves after many years of loneliness and live an eternal love "} +{"id": "8002551", "video_name": "4caa6b76-a97a-529c-9b36-bbc5404968c4", "text": "once upon a Time in cozy little village there lived a young girl named Lily. Lily had a heart full of curiosity and a smile that could brighten even the glomiest of days, Disney style,8k, "} +{"id": "3005977", "video_name": "0d3b9b14-dc52-5bc4-a285-e3f72c982567", "text": "Katana with blue and black flames floating up right in the air with flames emanating off of it, burning the environment around it inside of a world full of bones "} +{"id": "3005210", "video_name": "cfd4c815-dc44-55ae-8e20-daeac96d1f22", "text": "blink\uff0cDynamic effects of clothing\uff0cHand movements Message: 1 Attachment "} +{"id": "6002158", "video_name": "480765e7-dfd6-54d6-873b-dd2a364c9dea", "text": "a girl in her early twenties with green eyes and dark brown hair. She has freckles and is also wearing a long green silk dress. She has no shoes but she is wondering through the woods looking lost. "} +{"id": "2004336", "video_name": "0ed1f446-d28b-56d3-a97b-a45a7eeb5433", "text": "Generate a continuous visual representation that remains stationary in a single location while transitioning rapidly through various historical eras of human civilization, starting from the earliest known societies and accelerating through subsequent technological advancements, all within the same fixed frame. "} +{"id": "0004800", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "Draw the moon as it is formed from the angle seen from the sun. "} +{"id": "3003016", "video_name": "226cd516-fc55-55dd-8e7d-1c267bebfb35", "text": "make a short video with use islamic background "} +{"id": "7004969", "video_name": "3ec3f9da-204a-5e02-8a00-aec7e17442c4", "text": "Create a quick clip of Chihiro and Haku falling through the sky together "} +{"id": "0006567", "video_name": "2ebd952b-019a-5ad8-98bc-c441b7b8306b", "text": "a scene from Star Wars if it was a Bollywood movie "} +{"id": "3005002", "video_name": "0ec1b592-0728-5f54-9c39-7b752cb0eded", "text": "video of two samurai thumb fighting in fire and next in snow Antarctica and then under water "} +{"id": "0006955", "video_name": "35cec0ee-9c5f-5b23-80de-67ce0a0f9dda", "text": "a splendid palace with high architecture building with beautiful hilly surrounding, covered with big tree which are moving in the wind slowmotion drone shot 4k resolution high quality colours "} +{"id": "1003593", "video_name": "4226c933-062a-5ac3-a568-84b119ff0da5", "text": "A beautiful park with a picturesque pond, where Remy and Benny gather to enjoy a peaceful day in the midst of their adventur.Animated cartoons. "} +{"id": "7003355", "video_name": "3212cd19-027a-550b-b571-246a17de8e14", "text": "a friendly girl standing on a acity street in the 1960s "} +{"id": "2006562", "video_name": "3546b42e-a096-5f8f-bffa-1f47b3ec23b9", "text": "woman looking at the camera and waving "} +{"id": "0005607", "video_name": "1deb66bc-454b-56ba-8d85-0caaf0922d1d", "text": "A video on this photo in motion, recreating a sense of movement as if the train is going forward, creating invented scenario "} +{"id": "8003304", "video_name": "202e1854-5981-5ab4-bee4-65b46eb639e9", "text": "a scene from a scary movie, horror movie, night, creepy, depth of field, cinematic lighting "} +{"id": "8003038", "video_name": "11e55af2-ef75-523e-b369-153a12131dc5", "text": "a lion in diamond armor and on the moon looking at the sun "} +{"id": "1003723", "video_name": "44c4702f-2afa-5e5e-8871-02952670146d", "text": "a few college students are heatdly debating on the grass "} +{"id": "2005592", "video_name": "4cf52c3b-0931-55ea-9eea-f4b843bd8d1b", "text": "Space X Rocket blasting off. Message: 1 Attachment "} +{"id": "3005580", "video_name": "decc59f3-3c7f-58a3-ba9a-9ea5d502aecd", "text": "Fiery Feline Showdown: Step into a visually striking, realistic medieval world, displayed in incredible 8K UHD resolution. Watch as a cat, transformed by consuming a power fruit, engages in a breathtaking duel with a ferocious fire dragon. Cinematic lighting and volumetric light intensify the clash, illuminating the characters and highlighting the explosive power of their abilities. "} +{"id": "1006765", "video_name": "7bd167c6-cc3b-535d-9227-4a7399e355cd", "text": "video of bride walking in a wheat field "} +{"id": "4004958", "video_name": "856eb496-d911-5177-bdf3-e0c2dc54c160", "text": "police crime scene outside a chucky cheese kids restaurant. detailed photo from front of building "} +{"id": "4004268", "video_name": "65b8d87d-cacc-59c1-8bea-b9d87fce1934", "text": "Draco Malfoy castng spell with magic wand "} +{"id": "6004886", "video_name": "2204acc7-cd3d-5c8a-91fa-65ea37e662ac", "text": "image of barista making coffee in a coffee shop "} +{"id": "7004206", "video_name": "a4e35504-4f59-5122-a1dd-1958696c58fa", "text": "an old scottish castle, automn, rain, ghost behind a broken window "} +{"id": "3005456", "video_name": "c4919df6-2e0a-5819-abcd-9868befa3e68", "text": "auction with the northern gods present in the clouds "} +{"id": "6004055", "video_name": "95ee2b0f-d7eb-5c6d-a09d-8dfd3e4a2fe9", "text": "white box that is diving in the air "} +{"id": "8002252", "video_name": "410449be-ec5c-58b2-916b-ef3143894c26", "text": "animate a wooden cottage with a etsy shop sign above the door, background is countryside flowers, birds, rabbits "} +{"id": "1006091", "video_name": "6fa86fe4-4e86-5cb2-93ea-e05da7984bfd", "text": "families talking inside their dark houses angry "} +{"id": "1003034", "video_name": "37b45786-90c3-5c89-934f-2ef67a131864", "text": "A glass full of mercury spills "} +{"id": "2006211", "video_name": "1d2a85e8-fb9a-5e69-9c0a-51e509e0e929", "text": "storm breaks to a bright sunny day over the city "} +{"id": "6003965", "video_name": "6048787a-a9ea-5258-a89b-9afa3844119e", "text": "a robot is flying in venice "} +{"id": "3006204", "video_name": "b1702dc5-4203-5228-bcbc-e28daf2fbf7e", "text": "demoness named Kaikesi. She was ambitious and desired powerful and heroic children. "} +{"id": "0003642", "video_name": "40e8d6fd-d42c-5850-aedd-31c0af65211c", "text": "Apollo 11 rocket blasting off from Cape Canaveral, viewers worldwide see it lift off to the Moon "} +{"id": "3005743", "video_name": "eb6b2730-427d-5a01-9634-fa08e5981e9e", "text": "group of soldiers in a room interrogating of of them "} +{"id": "0004182", "video_name": "04b1ea98-bc7e-58fb-b0e9-2accabae5782", "text": "During the confrontation, John takes aim and fires, initiating a fierce gun battle. The shot showcases the intense action, with bullets flying and sparks from ricochets, heightening the chaos "} +{"id": "0006545", "video_name": "2e74d164-1310-59f2-821c-fd19d5b2ddc0", "text": "a messy room, with clothes and papers scattered everywhere. Setting: cinematic "} +{"id": "3006429", "video_name": "b6ab5c2e-3f36-5416-8b07-df34a2e1d9b6", "text": "A shot from the shore of the sea, taken from above "} +{"id": "3003463", "video_name": "57c5c9ab-fe96-56e5-a9a5-a518529146f1", "text": "But Ravenscroft Asylum would forever remain a place of darkness, its haunted history serving as a stark reminder of the horrors that had transpired within. "} +{"id": "8002834", "video_name": "944f4380-b383-5d38-afab-1841e87c63e4", "text": "a diverse group of martial artists together, including practitioners of karate, kung fu, aikido, all in their traditional attire, demonstrating a sense of unity and respect across different martial arts, with a dojo as the background "} +{"id": "7004644", "video_name": "3a0bf195-8c27-56cb-8bbb-21a4642b8181", "text": "a girl nearby the yellow sea "} +{"id": "0004517", "video_name": "0a5737b8-941a-5f8a-97d7-8c428012d2e4", "text": "A baby is crawling towards me. "} +{"id": "8002930", "video_name": "76aeba48-9e5f-578f-96a3-d02625134973", "text": "As the camera slowly pans over the intricate cover and gilt pages of an ancient bible, the narration begins speaking about the mysteries foretold in Revelation. Suddenly, the pages come to life, revealing vivid illustrations of the end times. "} +{"id": "0006921", "video_name": "355a1c96-cdfe-5e55-adfb-4f33775a1e33", "text": "I want that same background but more real and on the piano, that you can read WELCOME TO THE LEON PROJECT "} +{"id": "7002530", "video_name": "1c487856-9de1-526d-a1c7-f0f20f15e0e0", "text": "a beautiful restaurant on top of a hill "} +{"id": "3004859", "video_name": "c0f6abc2-c82d-58ba-8d9e-0138e2a02ab2", "text": "articulated ww1 figure minimalistic ink drawing style, vanishing point on white paper, one line artwork by Tsutomu Nihei portraying "} +{"id": "2007198", "video_name": "e4d49931-00f7-5fec-ac27-76d856422ff5", "text": "He swore that even after the wreckage was cleared, he could still hear her haunting whispers, beckoning him to join her in the eternal wait."} +{"id": "6004835", "video_name": "30d39628-446b-52f6-adcc-5bf0ed1055fc", "text": "while the cat swiftly traces the white snow surface. "} +{"id": "7004574", "video_name": "f6942db9-2ab3-52a7-a8cc-6f39756a7303", "text": "South Sudanese young girl in the style of stained glass "} +{"id": "2005851", "video_name": "567caa85-7141-5fa1-a085-41e7513edd81", "text": "A family settled in a cozy tree house decorated with leaves and flowers. "} +{"id": "7004905", "video_name": "582c18af-c60e-583e-a26a-cfb9f99c9027", "text": "A hand holding a glowing star, placing it in the sky. in Van Gogh style "} +{"id": "2007654", "video_name": "e8a4034b-13b0-5791-9a6d-ea776c0df2d9", "text": "Shivaji overseeing the construction of naval ships.A symbolic image of Shivaji with a navy backdrop, emphasizing his role as the Father of the Indian Navy. "} +{"id": "1005048", "video_name": "5d589423-5dba-5d1b-94e7-d72b164a3ea3", "text": "And so, the tale of the little wizard teaches us the importance of goodness, wisdom, and the true meaning of friendship. May this story inspire us all to strive for improvement and to use our powers wisely. The end. "} +{"id": "0004736", "video_name": "0e59669a-5b9d-5be8-831b-17e43ab91428", "text": "Ducks and swans swam gracefully on the water."} +{"id": "5001489", "video_name": "9b11c136-e40e-58a4-b892-30bbf0d96662", "text": "2 men boxing on the beach during a cyclone "} +{"id": "8002155", "video_name": "c834fb9d-dc3d-59be-8e22-342b1436fc2f", "text": "She is singing a song of love, and her voice is filled with passion "} +{"id": "0005433", "video_name": "1ac3b1f4-8de8-5218-a6b4-7126fa1ef8a1", "text": "the dawning of a happy new era "} +{"id": "4004629", "video_name": "130eb8d6-9572-5720-82e9-93dd89ae74e8", "text": "tutorial presenting all padel rackets types in the market "} +{"id": "3005161", "video_name": "f6fc4acc-f183-567f-8cbc-8705881d123c", "text": "create a realistic cinematic movie scene of a stone getting thrown on a broken city by a man "} +{"id": "2006043", "video_name": "7bfe8a45-25e0-5ac0-bfa3-97ce9bd8f5aa", "text": "Wiggle neon tube light on night brick wall the neon light switch on off looping and seamless can be use for background. "} +{"id": "8003179", "video_name": "01300f8a-32a6-550c-b7fc-5b21aff26a8c", "text": "four Chinese people are playing poker "} +{"id": "7004511", "video_name": "c4f15a09-1880-5d45-b108-d2b98aded8fe", "text": "hiperrealistic a big wave destroying Batman\u2019s boat on the ocean,ar9:16 "} +{"id": "6004030", "video_name": "6bfbbd2c-4f44-545a-a985-f02fa416d232", "text": "no moisture freezing in air lines "} +{"id": "0005665", "video_name": "1ef8930a-2c20-5772-93c1-3b36ab28361f", "text": "a roman style statue of Andrew Tate with radial mandalic effects "} +{"id": "4004003", "video_name": "b70c411a-1323-5069-bf25-73381aba8bb4", "text": "80s art film black magic forest with entities dwelling around "} +{"id": "7002321", "video_name": "ed129490-c4ff-5dc8-955c-472b3857c45f", "text": "Montage of various animals: dolphins, elephants, dogs "} +{"id": "7004083", "video_name": "ed6b3ae8-fbfb-5f2d-a284-7006d3e81915", "text": "clip from an 80s video game, 8 bit pixel art, skeletons in a dungeon room "} +{"id": "8001787", "video_name": "fd9969ed-c10e-5d09-98e3-81f32898da88", "text": "Anime, a bunch of girls came running "} +{"id": "6004709", "video_name": "95051606-6938-5956-b576-2031d4609946", "text": "Master Yoda as Force Spirit, cinematic, realistic "} +{"id": "7002781", "video_name": "d93ba3c6-c029-5098-8950-53d0aa1ed5da", "text": "play the guitar , happy time! cherry blossom "} +{"id": "1004263", "video_name": "4eef8fee-d3b3-5b1d-ad56-df15eda63945", "text": "A aerial view of Venice at night. Hig detailled. Cinematic. 16:9 "} +{"id": "7002737", "video_name": "f17a8243-6dd3-5b66-9b8f-fca7d2f4df62", "text": "half fish half lion creature dancing "} +{"id": "1003454", "video_name": "3ff6fd3c-04d2-58cd-8a5c-8c8e01df9253", "text": "a butterfly sits on the palm of your hand in anime style black and white "} +{"id": "0004088", "video_name": "02fe26ae-4eb8-5f64-b0b7-69ec01e620dd", "text": "a women is talking to a boy and the boy is ignoring her, busy over phone. Make it 15 seconds longer. 2d video, cartoon style, high quality "} +{"id": "8003208", "video_name": "ed81c864-1848-520d-b268-d48dac61df29", "text": "a close up of a forest with autumn leaves Message: UPAEP (Font: MODERN) "} +{"id": "7003930", "video_name": "fc14b37b-890a-572e-888b-7bb49df50724", "text": "a cat is running toward his owner "} +{"id": "0004802", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "fireworks Message: Happy New Year (Font: MODERN) "} +{"id": "1005613", "video_name": "6736bd19-527a-522a-af48-c4597d708f85", "text": "beautiful girl dancing in short sports attire "} +{"id": "2007951", "video_name": "92e3b26f-428f-5a05-8f4a-3aca859b02b1", "text": "a person holding ice cream and its is melting in their hand "} +{"id": "1005327", "video_name": "61d70d73-e3f4-51ef-98cc-ea4b300daa4c", "text": "A person holding a giant alarm clock, reminding viewers about the importance of managing time efficiently. "} +{"id": "1006650", "video_name": "79dbc6cb-f9bc-5a04-8924-478f5debf9cb", "text": "Leo Messi wearing a jersey showcasing his name, a tree print in his Jersey, a blank logo "} +{"id": "2007203", "video_name": "858fd081-6863-5f04-a1c1-77f5cf551696", "text": "ten people playing guitar sitting at tables with huge computers and a crow is flying above, cartoon style, 2d "} +{"id": "6003000", "video_name": "a9d0bace-1265-5afb-9150-b1b7c7c2cdd3", "text": "When i close my eyes i see her red hair. She always told me she lives in a nightmare. seed4360021286837018176 "} +{"id": "1003139", "video_name": "39e7ddcb-8714-5b31-b943-3e7288dc2a2f", "text": "Introduction: The Rowlatt Act The Rowlatt Act, officially known as the Anarchical and Revolutionary Crimes Act of 1919, was a law enacted by the British colonial government in India during the early 20th century. It aimed to suppress revolutionary activities and dissent against British rule in India. "} +{"id": "2003706", "video_name": "6f789e2b-a3c1-53ed-8536-6ca9133cce45", "text": "two sharks are swimming in a clear blue pool surrounded by high mountains "} +{"id": "5001622", "video_name": "5b3b5936-69ce-52ef-9136-f893a1420b41", "text": "duck is carting a puppy dog and running across the busy street "} +{"id": "5001148", "video_name": "dfcf37ff-2082-5bbf-8cd9-a38f7721633f", "text": "stormy wind in a dark forest at night with a bat flying "} +{"id": "2006925", "video_name": "cb8abf31-9673-58b2-8aab-168911599fe0", "text": "very eerie and foggy fantasy land with strange animals and vegetation "} +{"id": "6004457", "video_name": "9185c1b9-b75a-5a37-a87e-b955c6e78ef2", "text": "David Attenborough speaking, background of nature in Singapore "} +{"id": "5001405", "video_name": "cc537bd8-2753-52ca-ad53-084b318f0d87", "text": "in front of cinema saloon,at night,crow flying,crowded street,1970s,artistic "} +{"id": "5001107", "video_name": "d403be0e-2f9a-5c97-961a-7daa3c6d2a47", "text": "a seen in jungle with alion "} +{"id": "6004015", "video_name": "57efb6be-722f-567a-8746-8f5f445c413c", "text": "dark factory from outside countryside in the night "} +{"id": "0005477", "video_name": "1b6feaf2-ad18-50ae-be97-726e24901962", "text": "magic mushrooms growing in the forest, psychedelic visuals Message: MIDTRIP (Font: RETRO) "} +{"id": "3004427", "video_name": "32a94ea2-2966-5bbc-a849-68de425ab5d4", "text": "\u2022 Craft a soothing lofi tune that mirrors the calm of a quiet forest. "} +{"id": "4003152", "video_name": "34030099-d1e4-5127-bf9f-958a7ec4f48d", "text": "circle of cathedrals, gothic, dark, realism Message: HAIL SATAN (Font: MODERN) "} +{"id": "0006739", "video_name": "320ec19f-2857-5d1a-971b-09b4d4b7cef7", "text": "a video The life of a mother, describe the scenes from giving birth to her child reaching adulthood, create a Timelapse of time going fast and the emotional nature of the journey the mother goes through and letting her children go out into the world and letting go "} +{"id": "4002715", "video_name": "dc0958ca-00b2-5bb4-bfc5-e034674392ad", "text": "there\u2019s an unidentifiable organic mass pulsating on the table. It\u2019s captured in a manner that makes it both fascinating and repulsive, a prime specimen of the bizarre and inexplicable that the documentary purports to explore. "} +{"id": "2007342", "video_name": "61466a64-87ee-50b9-9c42-a04c64599129", "text": "taj mahallway candelabra discotheque Panavision planet of the apes LUT more lights dramatic psychological film stock 24p phenomenal truck shot in from a long "} +{"id": "1005989", "video_name": "6e11c02d-9185-5765-868e-fb43744d7c9c", "text": "The mansion was filled with an eerie silence, broken only by the sound of his own breathing. "} +{"id": "4002739", "video_name": "e83b7299-45dc-55dd-8602-6b0b559044bc", "text": "the man is smoking a cigar and smiling at the end "} +{"id": "0005484", "video_name": "1ba83cbd-524e-5b37-8e78-b4ae71748ee7", "text": "a 1970s arthouse surreal film about a theme park as a family of 3 sit and eat corn dogs and hamburgers as they are surrounded by other families doing the same "} +{"id": "1003021", "video_name": "377cf94a-98f3-5420-82a0-b040d3078455", "text": "zoomed image of a human face with blue eyes, transparent bugs on the face , make it cinematic and euphoric "} +{"id": "3005168", "video_name": "b1ce8bed-c2b8-5ec9-addb-35dc98862c25", "text": "a tiny glowing fairy landing on human male hand, glowing particles, fairydust "} +{"id": "3006543", "video_name": "ea3f3750-6139-5f1c-b035-89d3ebcf1760", "text": "a magic moon world in fantasy reality style with flower 16:9 "} +{"id": "0006295", "video_name": "2a2871b5-afa4-504f-a0c4-af01d164c45d", "text": "gorilla pounding the ground with his arms, animated, 4k, dynamic "} +{"id": "7002978", "video_name": "a86486a3-57d0-5a33-acc2-dd666718a8f5", "text": "cat man running in desert in style of Rene Magritte "} +{"id": "2003657", "video_name": "1c9b363f-8fbf-592b-a631-745788e3cfe0", "text": "cute caracal jumping on the moon "} +{"id": "4002764", "video_name": "74cd3ff6-ab9b-54b7-a89a-d766ec267dc2", "text": "giant fish swims under one wooden vessel, fish under water, one ship on the water, 0 AD,top view "} +{"id": "4002209", "video_name": "6909f649-ffc7-590a-a754-4c3252b94250", "text": "i need a photo of a garden. beautiful flowers and children playing in there and a werather gives a peacefull view. "} +{"id": "5001831", "video_name": "7f292a2b-fef9-5b79-87ec-5664cf3bff10", "text": "hiper realistic person, a golf Player, the picture catch the moment of hiting the Ball. Super green moving Grass, the sky is dawning , magical athmosphere, 16:9, Cinema style "} +{"id": "3003317", "video_name": "d9385cd2-2066-5746-adfb-bdf7175c0032", "text": "smokey dark where smoke coming from left and right "} +{"id": "4002886", "video_name": "ca884029-8beb-5279-95fd-17afee0dc021", "text": "eerie scene of friends hanging around in a pool, sunny day "} +{"id": "7003999", "video_name": "f27349fe-eb2e-5325-8537-08ff2848440e", "text": "Even that day, Amani was sitting on the shore of the lake, suddenly it seemed that someone was coming down from the sky. At first the eagle thought it was going to hide with the baby in its lap, then its eyes and face brightened when it realized. This is a little fairy. The shepherd thought that the fairy must have come to take his son because he could not stay. The shepherd slowly walked towards the fairy with his son in his lap. "} +{"id": "5001773", "video_name": "ef18d9a9-b2ac-55f6-b83b-3f786b9ea082", "text": "a scene of a distroyed, bomb blasted market "} +{"id": "1006604", "video_name": "78fc7f4f-c997-5f76-b0c0-00933b485427", "text": "frame with an attractive forest landscape. "} +{"id": "4004088", "video_name": "189ab16f-4384-5b1f-8835-07296532be4c", "text": "Grief consumed his being, blurring his vision as tears streamed down his face. "} +{"id": "2004226", "video_name": "000593a6-5f9e-551b-bf40-551d2410818b", "text": "the man is irritated, sweat is flowing Message: 1 Attachment "} +{"id": "0003971", "video_name": "00e52d0f-f761-5dcf-bf15-4401a274c294", "text": "star istwinkling,sun isdown,boat iswiggling on the riverJe telaisserai des mots PIKA "} +{"id": "6004315", "video_name": "b7f1adb2-ad71-5a7e-b431-1270cc66a132", "text": "A Cute Cat 3d design art style Lego Walking in the Lego City with Eiffel Tour "} +{"id": "2003428", "video_name": "b7a67a05-73ff-54ed-9256-f641e66f6380", "text": "Create a detailed concept for a metaverse city of the future. How does it differ from our current cities, and what technological advancements have shaped its design and functionality, ultra detailed, furturistic, 8k, master piece, "} +{"id": "2007544", "video_name": "50c7a3b5-8475-5ad1-adab-d946df8b0090", "text": "The sun sets over the Sahara desert, casting long shadows across the dunes "} +{"id": "1003427", "video_name": "3f5b7dc8-aa9b-5f6c-a5ff-513d48fd1451", "text": "Danil dances with a microphone and falls to the floor and then cries "} +{"id": "0006942", "video_name": "35a1645f-73ea-5599-8179-0ef4cd7fb39a", "text": "disney style Little Rabbit jumped up with excitement and set off. He hopped across fields and through forests, going further and further. Suddenly, he spotted a huge cave. Curiously, Little Rabbit crouched down and peered inside. "} +{"id": "4003900", "video_name": "b8d05fb5-6494-5326-8086-f242c2e9dd91", "text": "A ghostly robotic butterfly takes off and breaks into pieces "} +{"id": "7004170", "video_name": "f62080a1-49a9-5d7d-b9c1-ded72f16a8a3", "text": "The camera goes from below on a grassy floor and rises straight to the sky where we find beautiful and happy girls dancing "} +{"id": "0004583", "video_name": "0b868129-3976-582b-8b35-e064b9bf2c3d", "text": "Earth rotation and all around the World 4k aspect ratio 16:9 "} +{"id": "4003625", "video_name": "0c7c8641-bb85-59d7-a792-b4d9e5572ba7", "text": "Create a thoughtful video depicting cute white rabbit looking surprised and disappointed while a cautionary message appears on the screen, emphasizing the importance of strong and secure passwords. "} +{"id": "5001728", "video_name": "acb4ef0b-0658-5c8e-a729-832a907948c0", "text": "A corgi dog enjoying a sunny day at the beach, with its paws in the sand and looking out towards the sea. The image captures the serene and content atmosphere, with the corgi\u2019s coat glistening in the sunlight. "} +{"id": "6002254", "video_name": "c4856b16-74d9-587c-9e93-402b83bd9fc1", "text": "The character of a coffee cup dancing, studio, coffee advertising, dynamic shot "} +{"id": "2005025", "video_name": "ec921fbb-66f3-5668-9827-adb546ba2c0e", "text": "planet earth exploding into pieces causing a massive green eruption of smoke, apocapyptic hdr , high detail "} +{"id": "6003284", "video_name": "67ab59cc-63f6-5b11-a615-3d7627d15efb", "text": "A dog flying on the Great Wall "} +{"id": "7004773", "video_name": "40f952ac-ccff-575f-ba65-00e44abf1ddd", "text": "The red hen holds up the wheat seed, asking her friends if any of them are interested in planting it. The duck, cat, and dog react with different expressions. "} +{"id": "5001595", "video_name": "bda5a096-ffb4-5f92-b518-90ff2deb321d", "text": "make the rain outside the house look like real Message: 1 Attachment "} +{"id": "2004362", "video_name": "09695f55-e33b-59a7-816b-acfdee26c917", "text": "inside cozy cafe, night, raining, cinematic, photo realistic, a cup of coffee, duration: 30 "} +{"id": "6002293", "video_name": "37b3ff2e-6c83-572c-b773-70ba1b9782a9", "text": "a typical tambay in the philippines "} +{"id": "4002110", "video_name": "db0d79b1-b2b0-55ae-98eb-d9081cdabcf7", "text": "Explore the transformative journey of a duck who discovers his true beauty beyond appearances. How does this heartwarming tale teach us to embrace individuality and redefine our perceptions of beauty? "} +{"id": "3003350", "video_name": "c2386d63-fe53-5ca4-84b6-caf03565ed79", "text": "the ingineer working on papelones project "} +{"id": "6004028", "video_name": "4e77b710-4a4e-53dd-a3d1-4915757864a6", "text": "Snow is blowing in the sky "} +{"id": "4003436", "video_name": "fc37b5eb-c5aa-59cb-9a1f-4e64bffb02ef", "text": "a footballer who scores a goal "} +{"id": "0005016", "video_name": "134d1270-b4a2-586c-8e13-ada39282d33e", "text": "Fireworks Technician setting up the explossives to the mortars "} +{"id": "6003475", "video_name": "bbe66f90-009e-56ad-9fac-0b89ed94abf1", "text": "a study in a dimly light room with cupboards slightly open in a wooden building "} +{"id": "7003261", "video_name": "3bed2e28-119d-5311-9ddb-00eecfc01618", "text": "Thales of Miletus, photorealism, front photo "} +{"id": "2007938", "video_name": "80816a87-3d11-5ac1-a6c7-45156ef9ad7a", "text": "The Great Wall is not only a monument of China\u2019s history and culture, but also a legacy of humanity\u2019s civilization and creativity. It deserves our respect and preservation, not our destruction and disregard. As one netizen commented: \u201cThe Great Wall is not only a wall, but also a spirit.\u201d "} +{"id": "1005010", "video_name": "5cb12dd7-c853-5ba8-95cc-569424d31f09", "text": "a animated boy jumping from 2023 to 2024 hills "} +{"id": "4004302", "video_name": "b4c346e6-36bb-572f-984d-67c72f4fcf04", "text": "bottle labeled Kurt\u2019s card care and a many cleaning his vintage sports card with a professional restoration desk set up, older gentlemen, diligently working on his card with a collection framed around the walls and other memorabilia around the walls behind him "} +{"id": "0003275", "video_name": "3aa11805-e891-57e9-9ef2-ffdcad181320", "text": "Generate a video of a marketing team taking a beach vacation "} +{"id": "2003831", "video_name": "e5cdf0a4-51ce-5543-9b95-38000714953a", "text": "Priest of penitence. Transformation. silent pre code film, shot in 35mm, gothic horror "} +{"id": "6004125", "video_name": "8328a2dd-ec05-52ff-a0f0-89c215aae984", "text": "Planet earth exploding into a thousand pieces, 8K, unreal engine, digital art, highly detailed "} +{"id": "0003064", "video_name": "365c5514-b35d-5801-9107-b627bf280866", "text": "panda dancing in the modern kids playground "} +{"id": "0003626", "video_name": "40bed938-4c30-5bdc-a165-1b55069ab4b2", "text": "Film a video of citizens enjoying the Seoul Han River Fireworks Festival and drone show "} +{"id": "0003347", "video_name": "3bf541fd-1292-5e67-a755-6c698387d46f", "text": "Phoebe Cates Serving Ice Cream at Ice Cream Truck "} +{"id": "7004954", "video_name": "de6a3509-e804-54ea-8fc5-1402676924bf", "text": "A person talks about 3 ways of selling "} +{"id": "7003083", "video_name": "8ef7f6d8-a377-52d0-b15c-06268e30c0d3", "text": "beautiful snowy road with snowy trees, driving "} +{"id": "0004474", "video_name": "09ab115f-1db5-5a14-90cd-9852bf177ea7", "text": "A female caregiver, animated, brown eyes, walking while explaining, HD, good lighting "} +{"id": "6002872", "video_name": "f768868d-4dec-526f-b206-58371ae6cae1", "text": "A plantation scene with marshes and rivers, conveying the vastness of the escape route. "} +{"id": "3005270", "video_name": "712c66c8-9690-5724-a8b6-02b9034cedec", "text": "Travis Scott in the jail eating money "} +{"id": "6003975", "video_name": "e24d73ce-f31c-5168-9cf3-0b5c83df4300", "text": "A bouquet of beautiful flowers, Rose, Full of stars, In a delicate flower basket, The wind blows the flowers "} +{"id": "2007466", "video_name": "122be318-b863-58b8-bebc-0934cccac104", "text": "a little girl named Lily wearing a green frock cautiously approaching Sparkle, the reindeer with shimmering lights on her antlers. in the forest "} +{"id": "8001144", "video_name": "0a0a26df-7c6f-5d66-ae8e-4896b20b37cb", "text": "This footage continues to spark debates, "} +{"id": "6004815", "video_name": "ff21c146-bfdb-555c-a9c6-c08e1231fde3", "text": "a pregnant man standing, holding hands with ai "} +{"id": "5001901", "video_name": "1275554f-7183-50cc-97e4-146f91d568d8", "text": "To create a magical storybook about her adventures with her animal friends. "} +{"id": "1006251", "video_name": "7290ce58-c2dd-56d4-a707-f09f60db2191", "text": "a n animated fox gulping down the gingerbreak cookie "} +{"id": "3003052", "video_name": "26ac9a20-281b-5389-8310-dc4ff5c8f6b3", "text": "human using AI for creating and generating art and design fast "} +{"id": "0005789", "video_name": "2147b602-8f7e-50ca-9af1-2e6946d1302e", "text": "animated business suits headed for success "} +{"id": "3003034", "video_name": "015a9502-2515-5905-beaf-e067ad89df43", "text": "a planet in white space, 4K "} +{"id": "6002292", "video_name": "bede1446-a9a5-51ee-a8e7-96a63130e183", "text": "green screen background image Number 1 "} +{"id": "6003864", "video_name": "1f3947f9-bb0e-5ed6-a7cc-0876ff1cd7fb", "text": "Transition into a magical sequence where Lily and the robin exchange glances, symbolizing their newfound connection. "} +{"id": "3004822", "video_name": "fffcf5b5-ab0d-5027-96a2-c79edb92fa15", "text": "Israel lays siege to Gaza Strip after Hamas Oct 7 attack in which 242 hostages were taken Western allies back Israel\u2019s bombardment of Gaza; UN, groups decry onslaught against Palestinians; global protests break out 80pc of Gaza population displaced; 60pc houses laid to waste; 22 out of 36 hospitals in Gaza out of service Temporary truce starts Nov 24, expires on Dec 1; 105 hostages freed; 240 Palestinian prisoners released "} +{"id": "0004633", "video_name": "0c57c255-8de6-5b55-a2c0-351aa1580373", "text": "trailor of a badminton superstart which show some glimpse of his struggle "} +{"id": "2007781", "video_name": "a405b07d-9ed6-52d4-9a33-d00dd0aa85a8", "text": "a female yogi seated in the lotus position, in Kundalini meditation. Show the 7 Chakras of the Yogi as glowing enlightened lotus flowers opening, and a crown of light above the head of the yogi shimmering and sparkling in white light. Show a glowing Aura of light around the whole yogi. "} +{"id": "7002949", "video_name": "ab09acaf-011c-5dcc-9a1a-f7083c456d25", "text": "a zombi with sunglasses dancing on electronic house music in a night club, vibrant style, 4K "} +{"id": "0004289", "video_name": "06703492-2727-5c73-8b3a-6f6148a0ada6", "text": "create a village video where some ships are on top with their owner and all other villegers are doing their work in their forming land . cinematic 4K, cartoon style video for animated "} +{"id": "6003995", "video_name": "5d282a84-a166-53cf-9576-c99f8584a690", "text": "light at the end of the tunnel, expressionism "} +{"id": "4002115", "video_name": "f05116b6-9082-5211-80d0-2d682e594485", "text": "a small and cute princes telling the story, only girl should appear in the frame "} +{"id": "1005341", "video_name": "6226141b-7fd0-59d1-8bf7-10c204e3588b", "text": "Animated vancouver in Soviet Style art form, 4k "} +{"id": "3006987", "video_name": "d619f13c-58e0-5f1e-b8d9-92c4cc78abf0", "text": "man climbing onto roof off speeding train "} +{"id": "0006072", "video_name": "262d9805-307a-5819-b11c-e6a8af579a27", "text": ": black mermaids swimming in the open ocean, 8k, octane render "} +{"id": "2005152", "video_name": "344f54eb-6b8d-55b6-b9ff-c35e2e4c73af", "text": "imagine a man walking at night fromt of cematry road 2d comic charecter animation videos "} +{"id": "3006099", "video_name": "8e0ec49b-b7fa-5376-b4b7-c5dea5ed5935", "text": "1970s Eastern European horror film, an unspeakable horror looms over a dockyard "} +{"id": "8003970", "video_name": "64df8e06-c2d4-55ae-8298-573a1c691b69", "text": "Native American Woman and Wolfpack Dance "} +{"id": "1003345", "video_name": "3d9788e1-b278-5fee-b984-3ee6ef0fbc53", "text": "create a young lion in africa roaming with excess curiosity "} +{"id": "0006962", "video_name": "35ecd5a0-f285-5c1a-b92c-ed61659c4cfb", "text": "photo and video related to haloween "} +{"id": "2004375", "video_name": "833474a5-49a5-5068-89f7-0b1670b3af00", "text": "JackChen is say hello to wind "} +{"id": "1003121", "video_name": "397b00c5-84be-5652-a49e-da34b3eef2c2", "text": "Film someone discovering their preferred learning style through interactive activities. "} +{"id": "0003423", "video_name": "3d52e12e-63c5-5233-bc3e-b436adcc33f1", "text": "oung woman running across Brooklyn Bridge with Manhattan skyline in background "} +{"id": "4004207", "video_name": "d6309f4a-f75e-57a1-bcc5-bf171affd7c0", "text": "A picture of Sophia back in the modern world, using her newfound knowledge to speak at a conference advocating for the preservation of the Amazon rainforest. animated cartoon "} +{"id": "1006419", "video_name": "75827efe-023a-51f7-8599-5b17ff280f49", "text": "lily suggested to keep the money. same lily and yom "} +{"id": "0006892", "video_name": "34e0f446-3618-5c64-a772-e271a8ea92e2", "text": "The parrot is talking , leaves are moving "} +{"id": "0004372", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "the cat orange blue standing at bamboo with eating fish "} +{"id": "7004899", "video_name": "40ab88ff-a77d-56ed-9920-d62360daf85e", "text": "girls dancing at a festival wide angle panning to the right on a high dolly shot 8k "} +{"id": "7002556", "video_name": "10cc875a-9450-558c-be89-2452a9e0c5cc", "text": "A cute little rabbit sleeps on the green grass, Japanese manga style "} +{"id": "6003201", "video_name": "bc173a0d-83bc-55f1-b850-db1c157ce8a4", "text": "European family designing sandcastles at the kitchen "} +{"id": "1003838", "video_name": "46ca1129-387b-5c50-a117-d7b08f5f6729", "text": "create an image for optical shop "} +{"id": "0003041", "video_name": "35fa0640-7e6f-5260-b558-1aa38c163333", "text": "a person shoveling a mountain of snow "} +{"id": "7004720", "video_name": "584c876b-1494-5940-b2b0-3b7cc640bc19", "text": "3D, animation, Disney, small, dragon, green, Christmas balls, snow "} +{"id": "0003192", "video_name": "3908d6e7-b409-563a-8b46-2dcb6b2e6aee", "text": "a beautiful city during night time Message: nice (Font: MODERN) "} +{"id": "1003008", "video_name": "37315288-39c6-5971-b09c-9e1b3d282c76", "text": "a young women hiking on the steep mountain, ultra clear, 4k "} +{"id": "4003338", "video_name": "3e01d28c-b4c1-59f7-9633-51b647c839b2", "text": "Ajith Kumar in bike riding on road "} +{"id": "6004357", "video_name": "2a99132c-78f7-5407-bd3a-192cb7154668", "text": "fairy garden, intriguing surreal miniature buildings inside a fly agaric mushroom, vivid colors, realistic "} +{"id": "2005655", "video_name": "410fcd44-1ea4-5f79-9462-ae43323cf889", "text": "wide shot of a sphere encompassing a grey cube floating in space blue sky "} +{"id": "8003462", "video_name": "a5041d48-86e7-57a2-a036-2c543c940030", "text": "A black and white setup, Man sky diving without a parachute, top view "} +{"id": "5001408", "video_name": "3d065ac0-daab-595b-b5dc-3fd099a53c76", "text": "epic, cinematic scene, where camera moves through clouds revealing a small community on fire "} +{"id": "2005433", "video_name": "f0081b9c-843d-5ee4-9e85-e1bd92921081", "text": "mountian climbers, Alphonse Mucha style, flowing gowns, disco lights inside the mountain "} +{"id": "0006855", "video_name": "344652a6-321a-54e5-ae7a-93a3ee883115", "text": "the detective decides to investigate the murder to find out who killed Julia and why. Julia continues to follow him, becoming his literal shadow. noir aesthetics "} +{"id": "7004919", "video_name": "dc9da499-369f-5624-9e13-9715c13cf627", "text": "cow with horns resti g. Horizon in distance. "} +{"id": "1003074", "video_name": "388fe575-1e4f-5e8e-a6cd-b81c81e7784a", "text": "a beautiful young woman in a long white cotton dress wades through a pond in the early morning sunlight "} +{"id": "6003747", "video_name": "993c12ab-b785-5f4e-95f4-715062628ce8", "text": "storybook opens and shines in crowded library, spectacular camera move work, masterpiece cinematic fast film "} +{"id": "5001932", "video_name": "55a7b287-8e54-5b6e-95ed-c60054e41802", "text": "high quality video of a person skipping into the jungle "} +{"id": "1003987", "video_name": "49a9494b-32ab-5580-886f-51e1cfc1b909", "text": "a demon smiling, its colorful and weird, ar 16:9 "} +{"id": "2004197", "video_name": "508ca033-a480-59c5-9d29-05e43c33d6d0", "text": "A delightful scene featuring a child holding a basket filled with bubbles. Each bubble contains a small, enchanting scene or miniature world, promising surprises. "} +{"id": "6002853", "video_name": "fae5319f-7fc0-5a85-80ea-e4516315ad40", "text": "a living glass microsphere divides under a microscope Message: 1 Attachment "} +{"id": "3005147", "video_name": "08e779b7-6619-5a96-9411-e012b58ac4c8", "text": "Flight of Friendship: The Tale of Sam, Buddy, and their Feathered Companions "} +{"id": "1003893", "video_name": "47c9b285-5ddb-5cdc-b5fa-9fe9ffa00c24", "text": "a lighthouse shining a beam of light on a rainy night. Black and white 16mm "} +{"id": "2006776", "video_name": "b5c9aa03-997d-56cf-ab57-37d555073539", "text": "epic picture. Viking king Ragnar Lodbrok wearing the Galatasaray jersey. Galatasaray coat of arms visible in the sky. red lightning, magical and mystical atmosphere extreme realism, cosmic sky in the background, twinkling stars, smoke and fog, magical and gloomy atmosphere, moonlight "} +{"id": "6003503", "video_name": "dc4a8668-7056-5d7f-a2d6-e9fddc89591d", "text": "Evil spirits in the form of black shadows surround planet earth in space "} +{"id": "2007701", "video_name": "d7e68102-ee89-5270-b936-7d2ad1ef4b1b", "text": "a woolen yarn connects a sheep and a loom "} +{"id": "2007670", "video_name": "98aff38a-e78b-514b-b924-214bb298a351", "text": "JustinTimberlake singing with a microphone while sitting on a gravestone in an abandoned graveyard at night, bats flying around "} +{"id": "8002944", "video_name": "fffca3a7-4a36-5544-956b-ac4a082d9a01", "text": "a man in a dark bedroom turns around at the sound of a cell phone, zoom out "} +{"id": "8002536", "video_name": "4cb38757-dc2a-5297-90d8-9ef0df7d3760", "text": "early 20th century African American saxophonist playing blues "} +{"id": "1006578", "video_name": "7881bb85-2391-533e-8922-23fc04dae603", "text": "A fishing boat floats on huge waves "} +{"id": "4004946", "video_name": "e11d0e66-287b-5d7b-86a0-861fd3df1a76", "text": "robot hands grow from ground, dark lava floor "} +{"id": "3003547", "video_name": "82c673c9-e325-517d-b55b-723e433cdb1d", "text": "old man is happy with friends "} +{"id": "8003846", "video_name": "a71a431b-13ce-5753-9597-abcbb0cf08c8", "text": "tutorial videos on how to build a powerful computer "} +{"id": "0003615", "video_name": "4083cd76-b217-59cb-8297-363042b59d52", "text": "King Jehoshaphat on a balcony, overlooking Jerusalem, marked by concern and determination "} +{"id": "3004794", "video_name": "4bb53c9a-3d70-5e94-86c0-9b106efe8e66", "text": "a girl riding a bicycle on a sunset morning japanese comic style "} +{"id": "7004490", "video_name": "5be9639a-7e58-5028-abcd-833916faefac", "text": "Craft an image illustrating the divine marriage of Lord Shiva and Parvati, with the deities surrounded by a divine aura. Focus on depicting the serenity and sanctity of the union, emphasizing the celestial blessings showered upon the couple. "} +{"id": "5001971", "video_name": "d61a5e37-3ea2-53a4-af59-785a96dca731", "text": "people tossing a hot potato, pop art parody, grey academia, arts and crafts "} +{"id": "0006507", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "beautiful brown skin girl playing outside "} +{"id": "4004855", "video_name": "15e15d6c-2d17-5788-a3f1-c0c81d514b1c", "text": "rooster wearing a tuxedo and singing looking at the sun "} +{"id": "1005795", "video_name": "6aae0f3f-dfcd-5da7-b34a-0f4f529378a7", "text": "the man is walking down the street with has bag "} +{"id": "1004577", "video_name": "551b3a32-825d-5e92-9d14-aa431b944877", "text": "create a video with a family living very poor "} +{"id": "8003081", "video_name": "d2d9022d-6fdf-5408-8ebd-549ee4ab5d00", "text": "rebel lizard fighting as village houses explode and people scatter, cinematic "} +{"id": "1004246", "video_name": "4e97000f-03b9-556d-b3df-33fd2f1772fe", "text": "Describe the twist of fate as a gust of wind defies logic, propelling Bohle back into the cockpit, saving him from the jaws of certain death. "} +{"id": "6003824", "video_name": "07e978a4-8d33-5752-b5b5-a211bb54ea49", "text": "2 boy playing in garden, morning view sun Ray on the ground, "} +{"id": "8002550", "video_name": "1b9e6606-022a-57ea-8db9-ff7c82c9dd3e", "text": "still frame of sun cultists surrounding a kid in a wizard costume "} +{"id": "8003895", "video_name": "fffda50a-781f-50e4-b67b-c13f07c7afd3", "text": "cut a red onion thinly sliced julienne strips "} +{"id": "0005512", "video_name": "1c13cd39-e15d-51e4-91ea-08f30530fe7c", "text": "pan camera right to reveal Klaus Kinski looking up wearing dusty cowboy hat shot by Sergio Solima on Techniscope on 35mm film stock. "} +{"id": "0004841", "video_name": "101f4b56-1c45-5d10-bbc7-e424617a04e8", "text": "a pretty girl enjoying songs while returning back from work "} +{"id": "2006709", "video_name": "cf4c21e5-5684-5365-ab48-e71099f9fce8", "text": "realistic video of two mortal kombat fighters perform fatality on each other thunder and lightning behind them both camera zoom in and out "} +{"id": "2004617", "video_name": "6c71a16d-bdc0-5c43-9d0c-8eae002c342f", "text": "frozen like blood in mid air in shards "} +{"id": "1003812", "video_name": "465adc51-080c-51c7-b33a-b411f252f709", "text": "Spider weaves a web, sitting on the piano in the study with candles and looks intently "} +{"id": "3006867", "video_name": "08270342-eb6b-52f0-8f77-eacf47a41e18", "text": "Comic pictures of a football player falling into a cesspool on the street "} +{"id": "0006155", "video_name": "277332d0-41f3-5dd7-9bc3-166ebf6c9db9", "text": "One such intriguing encounter is that of Juan Cabana, "} +{"id": "2007866", "video_name": "7bb67dd6-3c10-5ce2-a2ee-413267bb7fc6", "text": "A scene where clouds, gently blown by the wind, drift slowly across the sky. Flowers and grass sway delicately with the breeze, and tree leaves lightly tremble. Meanwhile, factory smokestacks emit wisps of white smoke "} +{"id": "3003394", "video_name": "7285e70e-b765-5815-8304-cdd69f421f02", "text": "A strong storm with the Eiffel Tower in the background "} +{"id": "3006481", "video_name": "d59a1a3d-33bd-5a7a-bd61-2215b6be6435", "text": "A COUPLE AND KIDS LIVING A VERY HAPPY LIFE TRIP MOUNTAINS SNOW. anime style studio ghibli, vibrant, warm "} +{"id": "2007113", "video_name": "6b1b8161-1ce6-502c-9893-f9199f1b53d1", "text": "two girls walking through an amusement fair "} +{"id": "2005225", "video_name": "eef7bb84-5bfb-52f7-828a-49582898b066", "text": "sunset on the beach, near the castle, romantic, 80s, cinematic "} +{"id": "2007120", "video_name": "9f13f59a-dd83-540a-a859-0fb842d0c981", "text": "dreamy faces of ancient men and women "} +{"id": "1005841", "video_name": "6b5479bf-7b86-5706-8151-961aa8f9a012", "text": "a small lonely robot waking up in a futuristic environment, showcasing subtle details of gears and illuminated lights "} +{"id": "2005952", "video_name": "2b63b900-844c-5a8c-b1b6-ebf3811a8458", "text": "a heartbeat on a eclipe in the dark side of the moon "} +{"id": "0006074", "video_name": "263b4f04-05e4-5a7e-bea6-a506c3ee2060", "text": "Create boy standing with Indian traditional dress "} +{"id": "0005456", "video_name": "1b098c68-ba4b-5447-b8be-27965da43e5d", "text": "lady in red dress dancing, artistic, black background "} +{"id": "3005491", "video_name": "c366ae31-2289-5571-a639-3105fbe5fb19", "text": "a man who presenting a grocery store which has yellow storefront in real life "} +{"id": "4004910", "video_name": "d40f8593-3406-5e06-8ae3-bdda8e3586d2", "text": "Ancient Persian Sparabara standing before the walls of Athens "} +{"id": "1003814", "video_name": "467103e8-d00e-5ce5-a8c8-7ca954a31181", "text": "slow camera zoom in to house "} +{"id": "4004528", "video_name": "51f7dffd-bc2c-5602-a560-6ce746af423b", "text": "Upon entering the police station, I sought out the police officer who had interrogated Melissa the previous day. Despite my inquiries, I learned that there had been no progress made in her case. "} +{"id": "4004374", "video_name": "debcb80c-f907-5b44-802b-e67751c24e80", "text": "influencer talking in front of crowd "} +{"id": "6003996", "video_name": "e8a407f1-f2fa-57a5-9d7d-7a317ef4eb70", "text": "an underground room containing a bed, a large cooking pot, a large open cask, a table and a dozen goblins playing dice "} +{"id": "7002398", "video_name": "97b8c40f-14ba-521f-974f-e6458bced3c1", "text": "a marvellous imperium showing the force of an inmense power of humans Message: inshallah 3 (Font: MODERN) "} +{"id": "2004991", "video_name": "cc747df2-9a74-57cc-8ff4-3d2d0707edf5", "text": "Cinematic shots of the villagers exchanging puzzled glances, wondering where this beautiful palace depicted in the painting might be located. "} +{"id": "6002975", "video_name": "68bcfc35-6501-56b6-9391-7e011536698a", "text": "the base of the Galle football club "} +{"id": "3004678", "video_name": "6f8e4d84-06e5-5c55-9fcc-1f99bd5e5eb1", "text": "wide establishing shot of a space ship that opens and 100s of space pods assemble ,the space ships and space pods in shape of peregrine falcon dives, the spacepods fall like the kids spiders fall from the mother earth under tummy sack ,32k "} +{"id": "4003001", "video_name": "ddeedac2-30d2-5637-8f3f-91abd922870c", "text": "casting a shadow over the region and prompting the evacuation of over 26,000 residents. "} +{"id": "2004087", "video_name": "6f73694d-383b-54bc-a45b-564ffeeef4c7", "text": "video showing two birds are querreling with each other "} +{"id": "0006556", "video_name": "2e9a9b67-55ec-526c-b54b-de404298ae4b", "text": "Add subtle, gentle swaying to the trees and foliage to convey a sense of life in the jungle. Message: 1 Attachment "} +{"id": "1006439", "video_name": "75e058f3-6103-5774-88c4-003daa6256ef", "text": "a man comes up with memories of how the tooth fairy puts money for a tooth under the pillow "} +{"id": "4002572", "video_name": "4819f0ce-9441-5c5c-bfbd-70b9d9f82d99", "text": "A video of a pretty and millionarie youtuber and enterprise woman in her opulent and luxury office, "} +{"id": "4003106", "video_name": "82e26cb5-b199-5f78-9016-3fc5dc9aa799", "text": "Thomas the tank engine gelato train "} +{"id": "8002911", "video_name": "dd2aba84-3f10-5638-b7b8-5527d099e5c8", "text": "girl with short blue hair running away from her mother. The mother has a black dress with white polka dots and instead of eyes she has black buttons. 4k image "} +{"id": "1003828", "video_name": "46b5d21e-cd0e-5262-ad1f-b99ff8feeab4", "text": "Show Felix trying various methods to reach the grapes, such as fox jumping stretching, and climbing "} +{"id": "7004936", "video_name": "5adbbcd4-bcab-5d05-ace4-2b87746d2383", "text": "anime , The city, shrouded in darkness, lay beneath the sprawling canvas of neon "} +{"id": "7004896", "video_name": "9242bda3-9055-51df-9de7-52a3235e6792", "text": "Adolf Hitler and his twin brother "} +{"id": "4004967", "video_name": "e2d020f6-64d8-5c8f-b830-f02aed62dc4d", "text": "a woman pets a baby goat in a dark forest "} +{"id": "2003348", "video_name": "3c58dbf6-ca84-5c0c-b657-57cd84eb7d2f", "text": "cyberpunl futuristic city download, view from above Message: EY3K0N (Font: MODERN) "} +{"id": "0006099", "video_name": "2694a813-479c-54bf-adde-f7a8c1464b33", "text": "a cartoon bear eats bugs bunny "} +{"id": "1004777", "video_name": "58587892-a92b-501d-a10c-a762a99ae99b", "text": "black jaguar gold jaguar as above so below ying yang abstract "} +{"id": "0005195", "video_name": "1677e4e0-fa6a-562b-b779-4e6d21616f0b", "text": "In the evening of winter, the air turns cold "} +{"id": "5001632", "video_name": "75df3a63-3fc4-55b7-8903-0aa74f3d4d55", "text": "helicopter flying over nottingham in pixalated game art style "} +{"id": "3003376", "video_name": "0c78aad8-cc1a-5495-b17d-f8b673995fe2", "text": "robot walking on a busy street "} +{"id": "5001959", "video_name": "0895d055-d825-5562-abe0-bcc8496da312", "text": "an office worker working at a computer "} +{"id": "1004378", "video_name": "50de647e-1446-5071-ab3d-789ac0f4e599", "text": "a utopian paradise with a comet coming towards the planet "} +{"id": "4004927", "video_name": "3a983238-341a-5581-b041-d8c1c12d878a", "text": "Supplement the full body of the characters in the picture Message: 1 Attachment "} +{"id": "1003937", "video_name": "48a69e9c-6741-5adf-96d9-a27da1c4b5bf", "text": "create a live overlay starting for streaming in a minimalist footprint "} +{"id": "4004144", "video_name": "6afa4321-8d6f-5c7e-8de7-381bd371ba8b", "text": "a cinematic video of a girl with a pink hair with a inflated mask on her face, dancing, at the promt school party, flower explosion on the background "} +{"id": "4002122", "video_name": "8ee7a8e0-cd90-5201-a9e9-dbdcff93140e", "text": "2D lion cub walking through a jungle "} +{"id": "4004196", "video_name": "7eefcd97-134d-5909-a412-ec2e85ab206d", "text": "batman standing on building overlooking a bustling neon city, , realistic, thunder, extreme detail, dynamic lighting, high quality, cinematic, movement, "} +{"id": "1006381", "video_name": "74c43b82-6267-5f27-938e-34587612950d", "text": "forest image beautiful forest image in river "} +{"id": "6003895", "video_name": "b97dc639-5752-5564-b935-f47c4dc3c514", "text": "a painting of a robot man and a robot woman holding hands, by Dieric Bouts, inspired by Rogier van der Weyden, by Jan van Eyck, inspired by Jan van Eyck, by Hubert van Eyck, by Ambrosius Benson, by Master of Affligem, by Rogier van der Weyden, by Petrus Christus "} +{"id": "2005134", "video_name": "ae1f77d0-b54a-5016-bcc2-4bf6d29adbfb", "text": "ub game engine get larger for unexpected attack, in the style of lyonel feininger, east asian calligraphy, sacha goldberger, witty and satirical commentary, miniature dioramas, patriotic, video "} +{"id": "4003789", "video_name": "8a70c697-5c5b-545d-b3cc-637b7dae9987", "text": "a boy entering in a hunted house "} +{"id": "3005809", "video_name": "8ae862af-846c-5ace-b95c-5b94b04d6cc5", "text": "The giants were trapped. Gruff saw this as an opportunity. "} +{"id": "2006450", "video_name": "22ba9c76-eecd-5306-b0fe-811b99ee5dec", "text": "photorealistic big beautiful waterfall with little frogs jumping and some insects and animals passing by "} +{"id": "3005397", "video_name": "0aba45cb-546d-53a8-91c2-4f022d96cd39", "text": "ronaldo acore a worldcup goal in animation "} +{"id": "2007150", "video_name": "236f1081-f8d0-5c51-9f31-3381362f8a56", "text": "4 photos of happy girls side by side, 2 above and 2 below "} +{"id": "2007797", "video_name": "b6cef909-ee6a-5e31-b9c1-fe43c7aa4d01", "text": "1970s Eastern European horror film, massive writhing tentacles. So many tentacles hovering over abandoned building "} +{"id": "3006037", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "a guy with headphones listen songs at night in bedroom "} +{"id": "2007375", "video_name": "d9bc4e3c-d8ef-52a9-98cb-afc956a887dd", "text": "Superman dj with glowing controller, lightning bolts behind home and smoke "} +{"id": "8001777", "video_name": "9c2d107e-5984-5d40-90f1-792e3c0548e2", "text": "A lovely young Chinese lady is giving me a smile. "} +{"id": "8001947", "video_name": "dfa12214-e183-5592-91ca-f37afcd29397", "text": "people scared on New York subway train, dark, gloomy, dreamscape, 60s, horror "} +{"id": "4003995", "video_name": "e39b8389-aad4-513d-96a8-16948cfc1514", "text": "a sphynx cat falling into a pool of cupcakes and pasta "} +{"id": "7003473", "video_name": "8b0c2e54-6294-5abd-9895-cd152beb063c", "text": "blue sky,clouds,sunny,light Message: CELESTE (Font: MODERN) "} +{"id": "1004592", "video_name": "5574a6a0-7cf9-5029-b1c2-d23f1ee45af2", "text": "a couple drinking beer on a bar in Lisbon in a world imagined by Eduardo Kobra "} +{"id": "1006733", "video_name": "7b5e6aaa-ab03-5d6f-a0e6-46cd2d607db5", "text": "Pouring hot chocolate in to a mug "} +{"id": "1004107", "video_name": "4c0e977c-4ba7-5e89-b5e0-aecd2fa45615", "text": "anime hands bound by a unbreakable chain, it is wrapped around very hard "} +{"id": "1005552", "video_name": "66389a48-76d0-5d7d-9c57-d8dd54708926", "text": "A handheld shot of a hallway inside a indian home showing the family pictures displayed on the wall. "} +{"id": "3005180", "video_name": "3bbbcdfe-47e2-51ed-9977-b4928c019b8b", "text": "A Chinese wise old man with white hair and eyebrows, wearing a Chinese hat, a deep red Chinese style checkered jacket with a window on his upper body, holding a folding fan behind the table, lecturing and preaching, with a dark warm background and deep small scenery, and a front camera "} +{"id": "0003442", "video_name": "3d9504d5-fdaa-5ad4-aaa3-81e00419bf08", "text": "a young black teenager with an exceptionally agile mind. ultra realistic, 8K, intricate detail "} +{"id": "1003354", "video_name": "3dce2e47-c28b-5df6-8163-be8ac7df3b9b", "text": "a beautiful woman walking on the glass floor and smiling for the children. "} +{"id": "7003566", "video_name": "1e508a6e-b48b-5c6a-b742-1ec69d9b51d8", "text": "disney color city with a fountain in the middle and kids are playing arround it green grass, blue sky, sun is bright. vivid colors "} +{"id": "4004353", "video_name": "77bb7849-7da2-543a-b7f0-19b0e8828358", "text": "Make a butterfly fly and then stand on top of a red rose "} +{"id": "8002191", "video_name": "a9d0bace-1265-5afb-9150-b1b7c7c2cdd3", "text": "When i close my eyes i see her red hair. She always told me she lives in a nightmare. seed4360021286837018176 "} +{"id": "8003279", "video_name": "32717532-9e69-578e-8079-433678f4cbb7", "text": "giraffe and monkey arrange a feather ticklish party in garden, colorful and high resolution "} +{"id": "0003207", "video_name": "393951ed-9fdc-5413-8d5e-531ad717ca7d", "text": "in a dimly lit cave, the young girl sits huddled, her eyes filled with fear and sadness. the faint glow of a flickering candle barely illuminates her surroundings, casting eerie shadows on the cave wall highly detailed disney goldenratio 3d animation by mike ploog "} +{"id": "4003060", "video_name": "b158c105-771c-5f59-8315-b855eb86c331", "text": "A person highlighting and taking notes from Security Analysis, with a stock exchange trading floor visible through a window behind them. "} +{"id": "1003442", "video_name": "3fccb9c5-16aa-5ad5-a01d-04025262968c", "text": "a person facing setbacks but not giving up "} +{"id": "8003423", "video_name": "0ab9fa5a-e325-5290-85c2-8eca3215aed2", "text": "brown hair girl facing a cute alien smiling in a forest "} +{"id": "2004762", "video_name": "b73be8c5-658a-5d60-8e18-5e984d1e85e8", "text": "greek sphinx coming to life, breaking the shell bright light from the cracks, motion design, profesional motion design, greek sphinx, Digital Evolve stylized "} +{"id": "3006905", "video_name": "899be24e-0111-5565-a6f8-53e9f439a0f7", "text": "A general view of the haunted mansion, reminding everyone that some doors should never be opened. cinematic, horror, hyper realistic, cartoon style "} +{"id": "2003181", "video_name": "c4b313c9-afb2-59d0-85e5-29f13b200c4b", "text": "jack is a english farmer living in a small village "} +{"id": "3005828", "video_name": "800c890c-b0ed-5789-86bd-68ccd76f1818", "text": "a panda eating sushi on mars "} +{"id": "8001582", "video_name": "09d2df1d-5a0e-561e-9dc5-fd00a9246859", "text": "burning paper bag, with blue background "} +{"id": "0004427", "video_name": "08c3853e-45ee-55f8-8c27-4722ec63b569", "text": "there are only two baskets of allowable opinion. "} +{"id": "1004865", "video_name": "59e29005-2931-52e5-b980-6cb93336bebd", "text": "3d women from the back, standing on a circled surface, Product style "} +{"id": "1006231", "video_name": "7235cc63-385f-5dff-b5b4-0c587b54c263", "text": "16:9 image for press media section on website "} +{"id": "8001449", "video_name": "777293cb-9e3a-59ab-9bcb-4e5d41019753", "text": "a young woman with short gray hair sits at the kitchen table. In the background is a large shelf with vinyl records. She shows us her soul and elvis records "} +{"id": "1004462", "video_name": "529b7e8a-2d72-5685-a695-abbd513543ea", "text": "superman with glowing green eye, ultra realistic, cinematic lighting "} +{"id": "1004558", "video_name": "5499f267-1e7d-540c-ad74-7b4f1b2edcb7", "text": "cinematic style fantasy land setting running away from the adversaries "} +{"id": "6002913", "video_name": "fa9e8132-9972-5e46-b3de-02ec7f6576cc", "text": "Kung Fu panda \u201cPo\u201d walking in a Chinese scenery and saying something "} +{"id": "3004120", "video_name": "873a335c-b781-52ad-a9c9-64c311447da8", "text": "inuit super hero tintin style cartoon "} +{"id": "2005675", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "TV in the old room with white noise, natural light emphasising the textures, high detail, 8k resolution "} +{"id": "1005204", "video_name": "5fd26f4b-787c-5b9e-a3d0-d0a3f5884462", "text": "image of a green paw pointing at dinosaur illustrations in a book "} +{"id": "3005411", "video_name": "01487731-574c-5eb6-a814-5d70aab49d4f", "text": "armed soldier, dark amor, fighting with a alien "} +{"id": "2004354", "video_name": "98527126-e73b-578e-a96c-9b3282c10161", "text": "jimi hendrix in a Bad Bunny show "} +{"id": "7004043", "video_name": "a8935096-7046-56fc-a075-8ab296c96e8e", "text": "Produce a video with a female athlete doing a beach volleyball attack, 5 seconds long and ultra realistic "} +{"id": "6002776", "video_name": "dbf09d76-8bc4-5880-a162-cc09c40a2222", "text": "anime style scientist in a white coat that has orange hair on either side of his head "} +{"id": "7002206", "video_name": "d929ba6f-6ae1-52e4-b071-5ab04073608f", "text": "a anime girl praying with wind blowing on her hair,beautiful,goddess,magical "} +{"id": "0005672", "video_name": "1f15233b-5aad-5af4-aac4-a0c9fee42b63", "text": "animation of a universe, magical, illustrated "} +{"id": "2006942", "video_name": "b81b5fae-9752-53f3-8998-4e47073edca6", "text": "a fish outside of the water "} +{"id": "3003118", "video_name": "5d383625-8a0b-5c6b-b701-a19077583dba", "text": "aerial drone footage high quality 128K cinematic "} +{"id": "1003976", "video_name": "496c9430-0628-5d18-bd42-228ee5cf3592", "text": "A schematic drawing depicting the concept of a work schedule change, transitioning from a maximum of 40 hours in 2023 to 38.5 hours in 2024 and 37.5 hours in 2025. "} +{"id": "0004748", "video_name": "0ea0dabf-9983-544c-8ce0-c842cbcbdba4", "text": "realistic victorian clocks, time moving quickly, nightmare, movement, melting, distorted, diamonds "} +{"id": "6002878", "video_name": "440c9980-be7a-51b5-aff4-499d8993c347", "text": "cinematic dolly zoom in shot of Starlord, helmet\u2019s eyes glowing, cinematic "} +{"id": "3003973", "video_name": "f80728e5-c8cc-5f7e-9bb4-5c19f60a928e", "text": "green slime ghoul glowing green with orange fireballs with smiling faces and dancing dwarves and goblins "} +{"id": "3004924", "video_name": "b7ced1f2-9b9b-5373-94be-1f4be327ef77", "text": "Under the moonlight, the petals of cherry blossoms float down in the wind like rain, and the streets are covered with cherry blossom petals. Pedestrians walk on the road, walking in the cherry blossom rain formed by cherry blossom petals "} +{"id": "5001715", "video_name": "db4a0f6c-ce48-54c0-a7a9-d483914050a7", "text": "both casual users and photography enthusiasts. "} +{"id": "1004450", "video_name": "5254362d-8612-5828-874f-188a98845256", "text": "cute girl play the guitar,school uniform "} +{"id": "0006820", "video_name": "33a5f727-7a7b-5233-a80a-484fd427d80b", "text": "Nicolas Tesla releasing lightning from his hands "} +{"id": "3005657", "video_name": "c7ddf90c-1c2e-50bf-94ef-86658b9c8edf", "text": "a lion applying for a visa in an office, very cinematic high tension "} +{"id": "0005917", "video_name": "233a4de0-636e-54ca-94c2-99a8117fb452", "text": "a very small, beautiful cottage sitting by itself in a rural area, cinematic, flares, colourful "} +{"id": "2007064", "video_name": "8b1d18aa-06d6-561c-91d0-086c0f7bd91f", "text": "A coach showing to is client how to bench "} +{"id": "7002258", "video_name": "9c6a4d35-32b8-57c1-85e5-9dc978ea7ac3", "text": "vegetables chopped up for cooking Message: Sous Chef (Font: MODERN) "} +{"id": "0006648", "video_name": "304bc481-c5ee-541e-885f-1d36aba98f61", "text": "a pregnant woman talking to a handset at the end of a long cord tie with a fetus in her womb "} +{"id": "3003980", "video_name": "44b61aa2-7e7a-5fe1-8ab0-7cfbb3fe7da5", "text": "make an anime scene in which a cool girl is walking with black heels "} +{"id": "3005221", "video_name": "c0512eef-e674-5b7d-80b6-7d52b21fef23", "text": "a cute grey poodle is swimming in the sea happily "} +{"id": "1003877", "video_name": "476dd185-0e30-51e3-a73f-5222aac47305", "text": "detailed photorealistic pretty woman swimming underwater, the water is purple, cinematic Compositing, Masterpiece, Hair moving in art style, high resolution, high quality "} +{"id": "8002765", "video_name": "47c786ee-5d54-5912-bbf5-0aa96ccfb8e1", "text": "streaming new planet from sky. Future. Beautiful stars. Camera motion left. Zoom. 5 seconds. "} +{"id": "3006803", "video_name": "eda979e8-09f5-5f48-a60e-c45d652eec23", "text": "cat breaksdancing on a busy street surrounded by people "} +{"id": "2003028", "video_name": "d7841803-be86-5442-8398-2a15c8346ad7", "text": "a monkey trying to paint a zebra, and cooking a lizardking for lunch "} +{"id": "3005370", "video_name": "56b236e4-a04b-5899-baf4-9c9b27e26f01", "text": "people are going to ready to fight "} +{"id": "0005639", "video_name": "1e87f972-824e-57d4-8348-418909bf63f4", "text": "the length of video makes longer "} +{"id": "4004843", "video_name": "56b53fd8-cf62-51a5-936e-bad645a23474", "text": "an giant hourglass in the middle of time square "} +{"id": "6004033", "video_name": "fe187052-23ee-54dd-b31a-afaf774ceaf4", "text": "Aishwarya Rai and tamanna together wearing a short frok in rain "} +{"id": "0004704", "video_name": "0d9f4e80-63d2-5ac5-a97f-3b4070b8e337", "text": "The protagonists, embodying the roles of both hero and villain, stand as skilled swordsmen united by a singular mission: the rescue of a dear friend. "} +{"id": "1006491", "video_name": "76db1156-4513-56a4-9a9b-22d30988b65c", "text": "Gran Turismo 4 GT GUY Changes oil of car "} +{"id": "4003805", "video_name": "0bfcfabe-47c8-5d96-95b2-94aedf7cf288", "text": "hotdog kingdom with full of hotdogs "} +{"id": "4003084", "video_name": "e4fd91a3-ea75-51b3-a0e6-45ef1ccd5c3a", "text": "agro industrial companie takeing the pastor land over from local tribe with big agricultural machines preapering the land for plantation, conflict between companie and the local tribe, photorealistic, masterpiece "} +{"id": "1005269", "video_name": "60e81155-bdca-5812-9782-6ffcf88a32d2", "text": "Levander field on a sunny day with flowers flowing in the air "} +{"id": "8003682", "video_name": "381fbb6f-f209-55a0-8fe6-c6e75d0760fe", "text": "Open the door and let the girl enter the bathroom "} +{"id": "1004986", "video_name": "5c2b197b-c50a-5a44-8769-2fe158bafb21", "text": "a cyberpunk comic book character in futuristic environment wearing a hoodie, rgb glow, cinematic lighting, pergect lighting "} +{"id": "3004548", "video_name": "6425014d-d77a-533a-8a63-7ab7fa3ff855", "text": "microscopic detailed cinematic blood cells turning green "} +{"id": "2006312", "video_name": "0a32c302-ff22-51cc-bad3-7e93f3a940bc", "text": "Beijing, Temple of Heaven, film lighting Message: 1 Attachment "} +{"id": "3006822", "video_name": "d13c476d-e2e0-5493-9d65-48d9e5a466a8", "text": "A pale skin beautiful woman with high chick bones with orange wavy hair waking up on a rocky surface in her white Victoria dress seen throuh the lens of a 70s camera ,surreal "} +{"id": "4004704", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "Draw the moon as it is formed from the angle seen from the sun. "} +{"id": "1005331", "video_name": "61edf6fb-d880-5b1f-a0c2-5b0335c13942", "text": "an Indian saint meditating in a river in jungle, classy look, sunset scene, Mountains "} +{"id": "2005314", "video_name": "1b8143ac-7b79-5915-bbe3-ebd7ff574320", "text": "a boy with Red hair, in a big forest, an Orange cicle "} +{"id": "1006166", "video_name": "70d84339-6578-5ecf-9b3a-ef2d6dacb1de", "text": "a man with frog head standing in Manhattan in front of camera with cigarette in his hand smiling wearing a suit with es r8 quality "} +{"id": "6004538", "video_name": "bf684745-1f68-58e3-9490-7ccf19815e3f", "text": "stunning epic breathtaking realistic depiction of a performance where a musician plays a masterpiece that can touch the soul and move the heart 4k concert "} +{"id": "8002547", "video_name": "b841e888-a40b-5315-aaab-499c70aa9b89", "text": "long crocodile flying to the mars "} +{"id": "0003023", "video_name": "35b8d6eb-d6f7-5dda-9e6e-b41bd99dd0a7", "text": "A Robot getting a soda out of a vending machine "} +{"id": "2006026", "video_name": "dd345cbf-60a3-5e6a-901d-1edc59d239e5", "text": "A magical little girl in a white dress falls into a sea of stars. "} +{"id": "2007663", "video_name": "cdc1da27-e066-55ff-bdf1-499a8522a155", "text": "At sunset, they found a cozy spot under a giant banana tree to rest. Sammy, Polly, Tiko, Leo, and Ella shared their stories, dreams, and laughter. They became the best of friends, despite their differences, and together, they formed a magical bond that would last a lifetime. "} +{"id": "8002086", "video_name": "eb9d4a67-41f6-5c81-8fc5-2ad4e43b2fbf", "text": "tom delonge performing on stage with grey aliens, realistic, hdr, 4k, professional cinematography, 16:9 "} +{"id": "1003024", "video_name": "3786a6df-1cde-5f57-8ed4-299d6e03f1a2", "text": "a skinny photographer, 3 D rendering, wide angle, outside studio, shooting photos, high dynamic range "} +{"id": "8001030", "video_name": "3e453784-adb4-5ad2-81b9-13fae534ee30", "text": "renewable energy machines and futuristic robots "} +{"id": "7003188", "video_name": "eb420867-4f05-5557-884c-e279b6cb82a5", "text": "a girl wearing saree Disney style "} +{"id": "6003906", "video_name": "f6ea873b-c280-5428-9707-2dfd6c36e7f4", "text": "a city at the bottom of the sea full of mermaids (atlantis) "} +{"id": "3004317", "video_name": "213dec39-0687-5f24-a3d1-e42a549af58f", "text": "two animated sushis having a conversation in a japanese restaurant "} +{"id": "0004687", "video_name": "0d52530c-a6aa-569c-92d2-575a13902ad7", "text": "graphic designing, video editing, walmart, amazone courses "} +{"id": "8003386", "video_name": "12ee0a98-d11f-5dad-b178-787d9d833ad5", "text": "tortured by the augmented devices embedded into the neural cortex of the mainframe, close up, purple coloring "} +{"id": "0004940", "video_name": "11f257e1-a25e-5465-99ee-74e33179b466", "text": "Years ago, some animals lived in a dense forest. "} +{"id": "5001769", "video_name": "6f6b928b-8638-5ae3-a1b6-83a6b68c908b", "text": "The couple wanders through a charming market filled with local handicrafts. "} +{"id": "5001813", "video_name": "77457404-a686-59ef-8a15-46787a47da88", "text": "The natural landscapes in the outskirts showcase the concept of sustainable development. Green energy facilities, such as solar panels and wind turbines, are scattered across the grassy fields, generating clean energy for the city. Lakes and rivers are crystal clear, supporting a variety of rare aquatic creatures. People embark on hiking trips within the nature reserves, enjoying the magnificent scenery and experiencing the beauty of harmonious coexistence with nature. This embodies the Cyberpunk style "} +{"id": "0006884", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "establishing wide angle shot, golden hour, people walking,future city, artificial island, tall, floors, space, modern, neighborhoods, interconnected by ornate walkways , futuristic photorealistic Neighborhoods, architecture has a gaudi influence "} +{"id": "8002334", "video_name": "5d5c07b0-8fa9-57cd-bb8f-85fd3a7501c3", "text": "A picture of a concert with people dancing and singing along to their favorite music "} +{"id": "3005030", "video_name": "a3fede03-6ccd-5e6c-8f3c-251e40401443", "text": "A boy and a girl play with the horse on a cartoon farm "} +{"id": "1004655", "video_name": "569cabf8-5f8d-58e0-82da-a96ab555f0ec", "text": "timelapse of floating the cattail, 4k resolution, finer details, turning into sunset, the man walking around the floating cattail "} +{"id": "3005847", "video_name": "189da35b-cee5-568d-96e0-cfa84e02d149", "text": "a mental asylum patient staring blankly "} +{"id": "6003664", "video_name": "def0d98a-cc2a-5d54-b6a1-d8f438cf8932", "text": "boys of age 25 pointing fingers and lauging at small boy slowly 5 guys become big and small boy becomes small with the change of camera angle from top to bottom slowly boy turns his head down, Silhouette Animation style ,black and white, stop motion,hand drawn,emotional,16:9,4k "} +{"id": "3003818", "video_name": "491c2333-7916-5bac-9eac-30be4fa9ecac", "text": "and this boy cries and no one can hear him "} +{"id": "8003475", "video_name": "e845646e-35b9-54fd-8671-9040bf1197ae", "text": "motercycle driving in the south american jungel from drone perspective "} +{"id": "3005553", "video_name": "c25a943f-02d5-53aa-95f7-5084fc396efb", "text": "As the night wore on, the spectral entities and the undead roamed in their eternal dance, trapped between the realms of the living and the dead. horror darkness animation "} +{"id": "2004303", "video_name": "a087871f-736b-5b23-8bbc-3876a73b5d4f", "text": "ocean view with waves crashing cinematic ar 1:1 "} +{"id": "8003132", "video_name": "dd21e8e0-e265-5a73-bc7e-5ff7e3c1952e", "text": "a man sutting down pc, hand in motion, motion 4. "} +{"id": "3005437", "video_name": "45861ae5-518c-5a04-8734-f57610174d93", "text": "make a dog on the stage, during a big party with a band in the background, the environment is dark, with blue lighting, the stage is facing a large audience "} +{"id": "2004359", "video_name": "0322141e-9af5-5187-95bc-38646d362b32", "text": "Little Boy, Rating ice cream, big City in background "} +{"id": "7002718", "video_name": "98fbae10-7388-5174-bc21-3a7a6678ad85", "text": "closeup of Sir David Attenborough speaking from the louisiana bayou swamp "} +{"id": "6004744", "video_name": "17d83d43-fe5e-5ee0-b477-417339d85b4b", "text": "a plundered temple during 4th century "} +{"id": "2007807", "video_name": "4eeb37dd-ab93-5139-bd4b-973fa249f1cb", "text": "an alien planet expoloding very minimal with dark aesthetic like dune. Very pointalist, lots of small fragments of astroids. "} +{"id": "5001752", "video_name": "164c2531-66d6-56bc-b13d-5cdaa388758c", "text": "The book of Revelation, filled with apocalyptic visions, portrays angels not just as silent observers but as active agents in the events that will culminate in the last days. "} +{"id": "8001534", "video_name": "43973607-f29c-5e5b-970e-45240aadda56", "text": "on a moving train, a beautiful girl with balck eyes and hair stands up and walks towards the smoking area "} +{"id": "0004247", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "production still of Star Wars by Alejandro Jodorowsky, 35 mm 20ASA kodachrome "} +{"id": "8003779", "video_name": "618c0e7b-1a39-53ca-a9b3-c29a93e66b70", "text": "the reception to his debut character was mixed, and Dwayne Johnson faced jeers and criticism from the audience during his early appearances. "} +{"id": "3005323", "video_name": "68cf1929-e0f8-54a3-b681-4cbd49f5cdcb", "text": ":n elderly hand holding another young hand, white blouse, motion 4 "} +{"id": "4002050", "video_name": "3d7f5f1b-f669-5f62-b097-83f7e6c099cb", "text": "Show the piano being thrown into the air by the blast. "} +{"id": "8003445", "video_name": "eb5dbdf7-0d42-561e-b9a6-66908bb5b134", "text": "on a wave in Hawaii, rides a blue surfboard. atop the surfbaord, stands a tarsier wearing a wetsuit, and surfing quite well "} +{"id": "3006281", "video_name": "3f4099ec-89cb-5b04-aaf1-64eeed173b37", "text": "silver surfer in the style of balenciaga "} +{"id": "6003056", "video_name": "9ee56b93-da36-5682-94f5-3df047690e84", "text": "Scene description: A sunny park with lush trees and blooming flowers. Action instructions: The camera slowly advances and focuses on Jack and Mary. "} +{"id": "1003627", "video_name": "42cc797b-3bfb-5aec-b136-a871a527f120", "text": "House on top of a cliff with an incredible view of the setting sun "} +{"id": "8001993", "video_name": "8532f1ca-1515-57fe-8cbe-7fceae5ac9c7", "text": "create a 5 second video visualizing what the future of AI looks like. "} +{"id": "7002201", "video_name": "2b27e583-b3fe-5dce-8e76-09c9d90d256d", "text": "Christmas tree modern style well decorated music from movi Home alone "} +{"id": "3004360", "video_name": "f1b2d1de-bf1b-5bd7-8c96-fe205d518e92", "text": "Create an image of a spooky room with a young boy locking himself inside, just like the story I mentioned "} +{"id": "4003304", "video_name": "228a3414-7faa-5e77-9963-f95b024b56a3", "text": "hand picking up pistol from the floor 16:9 camera zoom in, horror cinematic, animation "} +{"id": "2007019", "video_name": "a4ca7cba-3c0a-525a-8d65-479dd06686e9", "text": "A teddy bear on a birthday cake decoration dancing, cartoon style, high resolution. "} +{"id": "2004107", "video_name": "1fbffcdd-f4d5-581d-b9e8-984867e793fc", "text": "a 1979 film scene of a beautiful female anthropomorphic cat dancing on a red couch with blue flower patteren "} +{"id": "2006330", "video_name": "bd379079-8da2-5a08-bc7a-7981d74503bd", "text": "Cockpit hatch on chest opens slowly Message: 1 Attachment "} +{"id": "2006006", "video_name": "9a852a81-e653-5b4f-91e5-9208df02afee", "text": "A demon king screaming on his throne surrounding by mysterious creatures in a dark red room while snakes move in the darkness around him "} +{"id": "4002169", "video_name": "3d2f7604-5bf4-56a9-86a9-43c18eae66ba", "text": "a castle burning into the distance being assaulted by a thousand souls at sundown, cinematic and photorealistic "} +{"id": "2005772", "video_name": "dd7cbf85-38f1-5c07-8f27-d0c317dc71b3", "text": "first perspective walking into old burned down abandoned house at sunset while coyotes walk around in the background in a corn field "} +{"id": "8002257", "video_name": "1e48e1b1-b653-5a36-82c4-d39568acabe3", "text": "Sunset in the desert and sand dunes "} +{"id": "4004439", "video_name": "c8c7e286-efee-5b6c-a905-09465c8de309", "text": "hindu goddess kali flying very fast through the universe "} +{"id": "7002995", "video_name": "90e5be08-89eb-5482-8dac-384a29e65196", "text": "potentially reshape the course of history "} +{"id": "8002467", "video_name": "71456995-1db2-537f-b627-df7266259b91", "text": "little boy in yellow rain coat walking to the right "} +{"id": "6003202", "video_name": "addadc68-c4b8-5173-8048-d74181911430", "text": "3 cute kitten in the hand "} +{"id": "8002061", "video_name": "a852f25e-9470-514a-a8d8-f6b7c2220582", "text": "point of view of a cyclist driving through a street in Kreuzberg, Berlin, daylight, photorealistic "} +{"id": "2003177", "video_name": "9b055c24-3448-50f1-a4de-9ea0a2d812c5", "text": "Their adventure had not only found them the legendary tree but also wonderful friendships.filmy style "} +{"id": "6003320", "video_name": "ae24e06d-30a3-547e-ac70-a087bcab7dbc", "text": "many drones in the sky Message: napalm (Font: MODERN) "} +{"id": "4002038", "video_name": "a9cc8c00-63ef-5123-8779-249fcfa89349", "text": "a girl , with sergical mask , standing "} +{"id": "1003044", "video_name": "37fccd9a-760c-583a-b82a-fef8305b8689", "text": "soldier walking towards a sunset in in between two mountains "} +{"id": "7003758", "video_name": "a1cc74fb-98ff-5002-a4bd-4e132972798b", "text": "dachshund with wings flies through the air "} +{"id": "0003678", "video_name": "41882011-5e78-54fc-aeaf-72901e6a5a0c", "text": "Tanks and artillery in the midst of battle "} +{"id": "3003255", "video_name": "12e5b853-1897-5acc-843c-0eefd013d256", "text": "On a rainy day in the middle of the Brazilian jungle, there are three little monkeys. A little monkey playing the flute, another little monkey playing soccer and a little monkey dancing samba. Everyone is happy. "} +{"id": "6002780", "video_name": "adc2c449-9224-58a8-95f7-331c64d15fd5", "text": "a little boy and a squirrel crossing the river over a wooden brigde "} +{"id": "6002151", "video_name": "5b6dcc5e-3b3e-5b10-ac6f-2f381c79c54a", "text": "a 20 year old boy using mobile and in background there is blue light and white light of mobile is on face with blue tone "} +{"id": "0006719", "video_name": "31aa3246-f89d-5e20-a1ed-852c7be2ac1e", "text": "man and woman walk hand in hand down street while a bus passes behind them, scenery looks like a van gogh painting "} +{"id": "4004791", "video_name": "e3e5bd3f-c18d-5d35-89fc-917c0bb3df5a", "text": "giant whale beached in the Caribbean sea. satellite view "} +{"id": "6002626", "video_name": "04a9e739-405e-50fe-b4cc-f72ab0da0536", "text": "a girl sitting and holding a cigarite, with sunglasses on, short hair, neon styled theme. Rain in the background "} +{"id": "6003086", "video_name": "09c7d2db-f37d-5b50-8ced-608c89207f3e", "text": "Lungs inside a transparent human body "} +{"id": "7004462", "video_name": "fcab7fda-3bb2-59ce-a4f7-95ca7b33a8ec", "text": "Disney style boy opening an enchanted locked chest under an anicent grand oak tree. "} +{"id": "3006263", "video_name": "3524a7c2-b86f-528d-9d27-c6a0d56f60ec", "text": "kid sam say one middle aged man and a woman where coming to him "} +{"id": "3003370", "video_name": "49cf1eae-5157-57c5-bb9f-a83f443ec362", "text": "10:30 PM: Lights out! Lily drifts off into a peaceful sleep "} +{"id": "6004381", "video_name": "a99443a1-3098-5cca-a307-a1666d983ece", "text": "Cultural and creative product design of the Forbidden City "} +{"id": "1005441", "video_name": "63f692c5-d494-510f-aba1-d3cbf71a611a", "text": "trees filled with delicious fruits, 3d cartoon "} +{"id": "0005027", "video_name": "1369ab63-9754-5882-a607-2894335ba92e", "text": "hyper realistic santa claus dressed in tropical clothes realizing he forgot to bring the gifts "} +{"id": "5001606", "video_name": "74962bac-40e2-5861-a5a0-9e2d89b1cace", "text": "A solitary figure stands in the center of a room with tall windows "} +{"id": "8002263", "video_name": "fb2dfb50-24b8-5857-b302-35b84826141c", "text": "create an animated train jumpin on track with abcd alpabates on the train for kids "} +{"id": "0004572", "video_name": "0b613214-ff87-58d1-9613-8ce9951321f5", "text": "the number 333 written all over screen in black and white "} +{"id": "4002322", "video_name": "5ec00d58-dfee-55fd-8819-a28ca0285929", "text": "a Bengal cat playing catch with a disc golf Frisbee "} +{"id": "1006344", "video_name": "7427242c-52ae-586c-807e-e5fbcc5edaba", "text": "throwing a tv out of the window "} +{"id": "1003918", "video_name": "485c3023-40ae-560b-aec4-8e346f68fc2c", "text": "close face of Shirley Setia , background is mountain. "} +{"id": "5001495", "video_name": "7afd4dc8-947d-59d0-8b0a-e49b042b84da", "text": "video that illustrates one pip move on the forex market "} +{"id": "2003101", "video_name": "d57395e2-e22d-55fc-ac9a-43cce5069f7e", "text": "a pink cherry tree lined by a rive "} +{"id": "7004455", "video_name": "d76fed52-8657-5f0e-8f7b-6ac87a5affb2", "text": "masterpiece, best quality, A young and creative artist analyzing a scene in their studio, holding a paintbrush, with a canvas and art tools in front of them. The walls of the studio are adorned with their artwork and inspirational images. Soft natural light streams in through the window, illuminating the entire space. Cinematic lens with (complex filed bokeh); "} +{"id": "3006798", "video_name": "e5ad363b-1281-5867-801c-bb5c52a3eb94", "text": "indian vs Pakistan flag flowing ar 16:9 "} +{"id": "1003319", "video_name": "3d23a4e4-b43f-5ea3-b11c-88bb23ff8a00", "text": "a 2d image which the background is a dragon skin and the foreground a mountaineous landscape with two persons standing there wearing Arcteryx jackets "} +{"id": "4004157", "video_name": "4734e05c-1e78-5085-aafc-b61b727bbc94", "text": "concert stage with moving lights on the singer "} +{"id": "3005048", "video_name": "179d8be2-f78b-5478-a2ec-b3daf5c83def", "text": "Explore the newfound sense of unity among the villagers as they absorb the lessons from the past. "} +{"id": "6003866", "video_name": "f972a1bd-950e-5526-9d5a-c050f6e439f6", "text": "buddha teaching his students on the forest "} +{"id": "2004645", "video_name": "9596cf3b-bf3b-5aaa-ab29-4809865fbdec", "text": "a cute cat compromise in the office "} +{"id": "4003884", "video_name": "aa076483-5201-5c5b-8964-ede78e8a854b", "text": "Wise Entrepreneur Guiding the ideal customer through the buyer journey. "} +{"id": "6003270", "video_name": "3a2fc41a-f942-58fa-a692-a2101ca85ded", "text": "New abstract artist logo Video Intro with the Letter B "} +{"id": "6003235", "video_name": "ae2cf077-55bf-5405-84d2-4334a5eb5e80", "text": "Show a serene night along the Mekong River in Thailand "} +{"id": "3006716", "video_name": "aa7afcdc-9f45-5425-8c29-1e19627f3fb4", "text": "Video of pies floating down from the sky "} +{"id": "2006201", "video_name": "2a128198-7026-5550-8cdd-011f6bd35458", "text": "A Mysterious Closure: The story of a character trying to discover a moment when an event comes to an end "} +{"id": "1006962", "video_name": "7f68e113-5819-5b55-99ff-b5bf8943beb7", "text": "young couple holding hands and sitting on the beach. "} +{"id": "2006336", "video_name": "351ee1e2-785a-53e1-8f7e-63536cbd5a64", "text": "a sultan and a white cat on a carpet "} +{"id": "0005826", "video_name": "21d19f83-7b91-560d-93ad-871664aa571b", "text": "a girl in a blue dress controls the water, and the water smoothly stretches behind her hands "} +{"id": "8002272", "video_name": "fc6adae0-c08d-5074-a5af-30b0809f0e5a", "text": "Once a hunter captured a lion cub from the jungle. creat animation of 4k resolution 16:9 "} +{"id": "1006094", "video_name": "6fbc8ac4-ad08-5b66-b9bc-5f9807829fee", "text": "As a girl who goes down a road and sees castles in the distance. Like a cartoon "} +{"id": "7002557", "video_name": "3239e039-5266-5d9e-8ad4-95312371f85b", "text": "People walking in ancient muslim bazar realistic hd "} +{"id": "2004332", "video_name": "1b54b22c-fdc3-5699-b858-aecd519446fa", "text": "a rabbit fly in the sky eating a carrot "} +{"id": "2005121", "video_name": "52c698df-a536-516a-9235-c6c8d2f4b7ea", "text": "The water droplets on the eaves of China quietly embed the eyes of the cute and gentle Chinese little girl. "} +{"id": "0004534", "video_name": "0ac532d8-c4c3-5222-aae7-44442b32ea9d", "text": "Powergirl character, red bikini, black sneakers, white stockings with garter belt, white background, character sheet, futuristic style "} +{"id": "7004662", "video_name": "62358e21-2dbd-58e3-8fc7-08fe2612e464", "text": "A panoramic view of an adult Bald Eagle soaring through the sky, its white head and tail feathers contrasting against its dark brown body "} +{"id": "1005367", "video_name": "62aed656-83f9-5027-9fde-37b2612b8f95", "text": "strawberry and wheat drops with black background "} +{"id": "4002926", "video_name": "33729bc6-1c61-50ca-8180-a61ce63e2250", "text": "Car moving from left side of screen to right "} +{"id": "7002709", "video_name": "d52894b4-426a-51f8-9ed7-dbd7a813b71b", "text": "two beautiful walking women with elegant eyewear and yellow dressing, walking in a 1960 New York city, masterpiece film photography surreal "} +{"id": "7004816", "video_name": "b724c87e-26f1-5656-94bf-01b3438bf18f", "text": "clownfish. It has been swimming through the coral reefs, accompanied by colorful corals. As night approaches, it finds a comfortable little hole to sleep in. "} +{"id": "2003515", "video_name": "c0e4b467-782e-558e-8aad-d08036e057c1", "text": "a greek statue girl walkin on the moon,cinematic, drone view "} +{"id": "1004336", "video_name": "5011c5e1-799a-5ca9-9a51-9b8b5d4adc13", "text": "A giant made of stone approaches a city "} +{"id": "1004314", "video_name": "4fbc0f49-edea-5b90-8350-7c22eec143f8", "text": "a little kazakh boy near kazakh yurt looking to mountains "} +{"id": "8001953", "video_name": "65262d59-682c-55ff-a66f-3307429096b1", "text": "create brazil as person, he is talking about himself "} +{"id": "7004011", "video_name": "7f22a982-831c-599e-9333-0a6570c5ba37", "text": "Historic Moments of Shooting in Soccer "} +{"id": "1004718", "video_name": "578af0ec-f900-5498-aeac-bcd2ff741a84", "text": "One sunny afternoon, life took an unexpected turn. Sarah had to rush to the hospital due to an emergency. The medical bills started piling up, and they had no choice but to pay them, "} +{"id": "3005523", "video_name": "c0041a29-4936-5dc5-bf42-870547639f9c", "text": "two slender arrows, The whole thing is kept in a minimalist, modern style, which emphasizes the simplicity and clarity of the message. The colors shades of green and blue, "} +{"id": "1004667", "video_name": "56c27577-4470-511a-bfa7-27cd427ca507", "text": "a video of donald trump going somewhere "} +{"id": "4004047", "video_name": "586eec5c-1b35-5d11-8a77-086aa339d01d", "text": "move smoke in multiple directions Message: 1 Attachment "} +{"id": "6004436", "video_name": "6fc75375-ca6c-5820-b1d7-559e94c360c2", "text": "Two old men were playing Chinese chess in the park, and a young man standing next to them was talking. "} +{"id": "8001798", "video_name": "47754d2b-7184-5d5b-88e7-fcfdfee4eb20", "text": "anime pictures A boy with black hair, blue eyes, 180cm tall, wearing a black jacket. gray tank top Dark gray pants Patterned black canvas shoes Wear black tactical gloves. There was a crystal pattern cube floating next to it. Sitting holding and looking at a cubit on an asteroid, nebula space background. "} +{"id": "8002661", "video_name": "25dc3b0b-f74a-5e03-9022-ab9b97c02723", "text": "the caricature of a boy lighting a little, a dark room, with the flame of his heart "} +{"id": "4004559", "video_name": "a4e7b1d2-1979-5957-b306-56ea385ea288", "text": "suddenly a giant animated gorilla came cross "} +{"id": "7003470", "video_name": "38b173ab-7a5a-506e-ab00-9f693195a342", "text": "A faint smile, fluttering hair and the camera slowly pushing "} +{"id": "1005075", "video_name": "5d9f6482-fc1e-5cad-b455-241a83fb1627", "text": "Soft moonlight spills into the room as a young child named Lily lies in bed, eagerly waiting for her mother to share a bedtime story. Her mother, Sarah, sits beside her, ready to embark on a magical journey Message: 1 Attachment "} +{"id": "3005084", "video_name": "322a263c-9515-58d2-bdfd-2846be0d4fa3", "text": "In the heart of the dense forest, four friends ventured, "} +{"id": "6002487", "video_name": "89146881-2c42-5366-91a8-87a0c9f8c052", "text": "Zoom in on the playful figure of Lumos as he explores the forest, followed by a tracking shot forward as Lumos creates small sparks of light. The camera follows the main character, capturing his liveliness and curiosity. "} +{"id": "3003209", "video_name": "1b3e2f55-10e3-5e72-806a-4d0190988716", "text": "A family of five enjoys a picnic in the countryside. "} +{"id": "0003123", "video_name": "37713256-5432-5bd7-b1a0-8260fc3ee5f5", "text": "motivational instructor giving motivation to the 16:9 "} +{"id": "4004390", "video_name": "3cae9f1d-d152-575b-a918-7b73a0038897", "text": "Pikachu is eating pizza with Superman "} +{"id": "0003659", "video_name": "4132f8af-e456-54ca-910f-d920781bd942", "text": "a rabbit dancing in a classroom "} +{"id": "2004757", "video_name": "ce310e6f-5f4f-5ae9-9b0e-c94a76c2ccf8", "text": "Animate Sammy and the butterflies flying through the 3D forest in search of nectar. "} +{"id": "7003244", "video_name": "93b1433c-23da-5a71-aeb5-ff6949296ad4", "text": "drivina car on a deserted street at night "} +{"id": "3004596", "video_name": "ec1b5f6c-43a1-5305-84d2-a8715546a4c8", "text": ". It was the Jesuit priest, polyglot, erudite, orientalist scholar, encyclopedic, and scientific spirit Athanasius Kircher, who in 1638 suggested that the planet was \u201chollow.\u201d "} +{"id": "1004390", "video_name": "512785c4-f138-56d3-ad75-0200c7263ad9", "text": "the entrance to a hobbit cove. The cove door is light brown. There are green plants, vines, flowers, and butterflies around the door. "} +{"id": "3006101", "video_name": "e94992f5-6ccd-5b8b-bda8-47bfa3598c1d", "text": "a group of big dinosaur getting destryoed on the earth by the metor hitting from the space "} +{"id": "6003654", "video_name": "fec0e342-6bae-5f75-b83c-3b5bb80c0812", "text": "Bella goth from sims 2 inspired woman with red dress and black 1950s style hair dancing at the club as a ghost in sims style "} +{"id": "3006761", "video_name": "534df97d-8b9b-5522-af3a-2014499b469a", "text": "cryptid battle royale, horror, vaporwave, found footage "} +{"id": "4002702", "video_name": "12820a2e-9ac5-5dd3-9797-f693e04d5376", "text": "advanced airship flying over a sprawling cybertechnopunk city with gothic vibes and retro futuristic designs, holographic advertisements, digital signage, dusty and grungy, post apocalyptic, dystopian, cinematic, atmospheric, hyperreal, photorealistic, award winning sci fi movie by ridley scott, 8k imax theatrical film, vfx by weta digital, unreal engine"} +{"id": "3003150", "video_name": "a5fa5aae-7a37-501d-870d-a1db3f47222e", "text": "polish girl dressed in red doing the catwalk in a fashion Show. "} +{"id": "7003925", "video_name": "8cdd4fc3-8c3a-5899-a663-92ad7f46d2b0", "text": "Li3YCl6 electrolyte,Battery Fundamentals COMPONENTS OF A CELL, Li3YCl6 electrolyte "} +{"id": "4002066", "video_name": "72c95fb2-9ec1-5a22-8bfe-40977c6da5c9", "text": "dark blue big diamond, in 6 seconds cam zoom out "} +{"id": "8001086", "video_name": "e2855012-b3d7-5ba2-882b-07cb2479e2e6", "text": "Future world, underground city, earthquake, people fleeing in all directions "} +{"id": "1006632", "video_name": "79972e9a-ce23-5b81-8662-16bd75ba6c27", "text": "A vibrant backyard with flowers, trees, and butterflies. Lila, a little girl with pigtails, is seen playing with her toys. Message: 1 Attachment "} +{"id": "7003878", "video_name": "840d1bbb-bfee-58fd-a78e-59ed516ac9de", "text": "moving hairs, furs, clouds, particles, grass "} +{"id": "3004153", "video_name": "d8bfb14a-f5e9-53b4-aed5-fc7908dd0990", "text": "a man in a basement screams as red liquid pours from his eyes "} +{"id": "8003650", "video_name": "ad32f867-f4a2-5dae-8623-217b9b81db4e", "text": "Snowflakes swirl and create the word CHRISTMAS "} +{"id": "1003917", "video_name": "4857ff0f-d5fe-5f7c-a07e-f7c8d1afeea8", "text": "Sticker: Create a sticker featuring a coffee cup with wings, giving it a whimsical and energetic vibe. "} +{"id": "3004946", "video_name": "f749a10f-82a2-5fe7-8496-4f385197793c", "text": "harley quinn and joker at halloween party "} +{"id": "2005912", "video_name": "7add40d2-4a7d-590d-a88a-0c43dfbf668d", "text": "In the mirror, Ellie saw her reflection, but it was a twisted and terrifying version. She tried to leave, but found herself unable to move. Suddenly, the ferocious reflection in the mirror detached from the mirror and slowly walked towards her. "} +{"id": "3005104", "video_name": "66a4c3c8-4934-5e7e-8527-1de471d71d25", "text": "Chinese dragon\uff0cice world\uff0cbroken sky Message: 1 Attachment "} +{"id": "5001231", "video_name": "3473d3d8-b2a6-5028-bbd6-513c2c815a75", "text": "enchanting oceans in the evening time, magical, mysterious, ultra 8k, HD, ar 9:16 "} +{"id": "1004566", "video_name": "54d0a9c6-e63f-54a6-a450-15909191e227", "text": "Minotaur is dancing on the dance floor "} +{"id": "6004450", "video_name": "723399db-68c7-50ed-be9c-e59704c69f85", "text": "sun set city magical sky detailed 4k hd "} +{"id": "0005855", "video_name": "225ff6b4-0d28-5080-a41b-0946d2c1bbf3", "text": "People walking in the desert, flowing desert "} +{"id": "8003860", "video_name": "39647664-fcf2-5017-90b3-71f14f9ff7e6", "text": "Little gray wolf put in stroller "} +{"id": "1005325", "video_name": "61cf2245-502b-516f-9dfb-227b7824d686", "text": "When the time finally came for Queen Amara to pass from this world, the entire kingdom mourned. But her legacy lived on, carried by the generations that followed. "} +{"id": "6002285", "video_name": "e893c749-7293-5f7b-927e-0626064db07b", "text": "A girl in a dress, running towards me, art and language, plein air, illustration of a storybook, illustration of a storybook "} +{"id": "7004311", "video_name": "af544543-8add-5c39-80cd-ba36638c8cc8", "text": "Three people in classic suits are sitting in a circle on folding chairs in an empty small space. Graphics of games on playstation 1. There are few polygons like in ps1 games "} +{"id": "2005381", "video_name": "7c41fab0-189e-55ab-8cb7-5111eee2b223", "text": "battle armor made out of a drumkit "} +{"id": "2007917", "video_name": "c0d6226d-788e-5bac-aa36-62ea0e87ee78", "text": "old people drinks red wine extra large glasses "} +{"id": "8001909", "video_name": "d95ac1af-1c68-5caf-a27f-ed3b4c457e73", "text": "Students start to stand, glowing with inner light, pushing back against the robot. "} +{"id": "8003173", "video_name": "c7376b40-befd-5d77-b1ec-f0b13bbdd8c0", "text": "a funny thank you template filled with humour "} +{"id": "2007580", "video_name": "9c312fa2-ab8e-5976-abae-45575e9eabb5", "text": "A determined teenager, John, pedaling his bike along a coastal road, waves crashing against the rocky shoreline, the salty sea breeze in his hair, and the sky painted with the hues of a breathtaking sunset, evoking a sense of freedom and awe, 4k, cinematic "} +{"id": "2004131", "video_name": "1b0a9f61-fa81-53ba-a904-8b2eb204027f", "text": "cute girl in black tshirt in style of ilya kuvshinov and alena aenami "} +{"id": "3006819", "video_name": "a349b44d-3770-50c7-a1e2-99c5ec5ee0a6", "text": "A 21 year old entrepreneur researching about ai "} +{"id": "6004407", "video_name": "2371387b-06d2-5774-8717-19a26f69fd0b", "text": "woman closing a door entrance in a flat "} +{"id": "1003174", "video_name": "3a642c14-216c-51b5-a328-43e28538587c", "text": "pac man eats a line of cheeseburgers inside an arcade "} +{"id": "2003187", "video_name": "5bf9e54f-ccbb-5535-bdcb-4f61f62fc1af", "text": "Mustafa Kemal Ataturk, the President of Turkish, in a suit, eating at a luxury white table "} +{"id": "2005548", "video_name": "304b8cd3-4ff2-52b3-971f-a629a489e4d8", "text": "A jumping bold green question mark on an open calendar on a table "} +{"id": "3005273", "video_name": "120098c1-7d2b-55cc-9fcf-6d0eefb1f1c0", "text": "indian people in traditional clothes walking on the river bank "} +{"id": "1003156", "video_name": "3a29dfcf-b8b1-564c-946b-4fd150dae524", "text": "a large army in golden armor walks next to the Christmas tree "} +{"id": "3005795", "video_name": "27928d2e-4734-566b-b779-b90ee2ba1270", "text": "piano player in the park full of snow "} +{"id": "0006129", "video_name": "270e8f00-509f-5a9a-9547-1262ee964fd8", "text": "wolf paw is in a trap "} +{"id": "1003615", "video_name": "42991867-3785-5a35-aca4-8b01836c21e6", "text": "fantasy landscape of the world, size 1080:1920 "} +{"id": "8001352", "video_name": "0adf27b5-4f4a-540f-bc55-649a06d24b06", "text": "A team of spies is hacking a computer "} +{"id": "3005972", "video_name": "11240763-c07a-51fa-a7a8-5e6a2063da6c", "text": "White gift box with red ribbon on top open "} +{"id": "4004325", "video_name": "31ec5acf-ae95-5275-9ed2-2ffc1cf00837", "text": "A raccoon tinkering with techno gadgets "} +{"id": "2005844", "video_name": "ef7ab6df-f28d-5bce-9a3e-74301c531479", "text": "a jaguar locked in a semicircular stone prison "} +{"id": "4002853", "video_name": "164e89d4-6922-5f81-8552-06f9c402d657", "text": "Girl in a spiral of colors and magical lights. She is at the center of this swirl of energy "} +{"id": "0004405", "video_name": "0857fbb5-29d2-5469-8a9b-939e410b6cfb", "text": "emperor with a battle scar on his forehead and on his right side the artist painter who will paint his painting, 16:9 Message: 1 Attachment "} +{"id": "2004061", "video_name": "2942c65d-43d4-5b5e-8fd9-0d517897518d", "text": "Celestial Animation Unveiled AI unveils the celestial animation in the night sky. "} +{"id": "2007510", "video_name": "f3883d87-5474-5d41-b0eb-90178de688ce", "text": "Feel free to use these prompts to expand and continue the story of Finn and his underwater adventures! "} +{"id": "0006793", "video_name": "33360603-9565-5b0f-be46-e26e329496b4", "text": "4k, ultra HD very high quality and all details,8k, ultra HD, Pixar style, Disney style, cartoon style Low Angle Shot: illustration of a single tall giraffe walking alone in the forest with a smile on his face with vibrant colours, clouds and sunlight in the sky in the background "} +{"id": "7002722", "video_name": "bcfc4efa-b374-5db0-b973-e182cef20b73", "text": "17th century style, disney, 3d animation, a little girl from a noble family. She has a curly fiery red her. She is from a noble family and her ancestors are from a lineage of explorers "} +{"id": "7002459", "video_name": "6a46228d-8883-5ab2-abe3-6892e1978cd7", "text": "multipoo Message: 8 march (Font: MODERN) "} +{"id": "3006305", "video_name": "fed4d7b0-ab63-5f9a-ad46-263436648b23", "text": "Lily weaing a bag and uniform watching james wearing a bag and uniform walking way "} +{"id": "4002559", "video_name": "27e85e29-db72-5c25-ab57-c0df00326899", "text": "caught in the paradise by gustav klimt "} +{"id": "1005188", "video_name": "5f66e02d-dcd6-5a21-a355-6a330f042092", "text": "little brown street puppy laying down in the street died "} +{"id": "4003104", "video_name": "cbfb669a-03e3-581c-9da9-f46e18ace3b5", "text": "blud want to drive the car "} +{"id": "4004873", "video_name": "ebd1b1b6-5d74-5686-9386-540fdac4813f", "text": "The always happy green dog is running "} +{"id": "3006160", "video_name": "2a3a15c7-151e-52bd-88b3-f8aea6d7a527", "text": "As the sun began to set, the children returned to the magic playground, their hearts brimming with stories of their incredible journeys "} +{"id": "2006578", "video_name": "01f25bd2-eb52-52d6-b2ab-aa8408a3cafc", "text": "An old dilapidated wooden boat sails on the sea at night, front view, dim light "} +{"id": "6002957", "video_name": "fc7e6c19-e629-5e46-a3bc-f682be24b3cd", "text": "wolf in the forest snowy eating their prey super realistc "} +{"id": "3006749", "video_name": "50ed059c-16d5-5fae-929f-c03f26c3fb4b", "text": "In Roy Lichtenstein style, The ancient Colosseum "} +{"id": "4004871", "video_name": "b46222a5-1c08-5fc5-b0f0-79d587174dc2", "text": "Leaf insects walking on a leaf "} +{"id": "0005430", "video_name": "1ab08331-c5fa-5d0a-a008-4757005c97e7", "text": "a 1920 super8 footage of two whites glowing ghost brides with a flower faces on the side of the road at night next to the woods "} +{"id": "4002149", "video_name": "86d147e1-77ed-5625-b7b3-6ddb6b6dccb4", "text": "weird forrest view with a misty lake, style of annihilation movie, lovecraftian, dreamlike realm, dreamy, dark, mystical, 16:9, surreal, moody, beautifull, beautifull colors "} +{"id": "4002888", "video_name": "6206a11f-d8bf-592e-8816-fe26c8c85087", "text": "high tech Message: SHU GIE (Font: MODERN) "} +{"id": "2006946", "video_name": "ed4d7dc0-30b4-5bac-90de-bf367e0090e8", "text": "A cat is tired and sleeping on the bed, and a fire is burning in the fireplace. And it is very calm and quiet. "} +{"id": "1003824", "video_name": "46a5d365-61b3-5e45-a2f9-978a916e3555", "text": "a futuristic utopia city rises from the firey ashes, moving upwards towards the daylight sky (ciematic) "} +{"id": "2003453", "video_name": "bb59f80c-2936-559e-9c92-af11d8968f32", "text": "A scene showing the farm, and children standing in front of it in amazement "} +{"id": "1003664", "video_name": "436f80f2-b7d2-5ea1-93ee-d1b35d270da6", "text": "Father prepares a large picnic basket, and mother makes sandwiches for the children. The kids happily gather games for the outing. "} +{"id": "8001558", "video_name": "df9cb555-d2c9-5501-a8d4-e46726e9fdf2", "text": "Guru Nanak Dev Ji setting under a tree in forest with his friend mardana and mardana mother "} +{"id": "1003408", "video_name": "3ee78c62-a740-5235-a23b-43240cdbbd05", "text": "a quad bike racing and bouncing over the desert "} +{"id": "2003821", "video_name": "25ce6450-c47d-5259-a17d-901369f38613", "text": "global modern office area , high tech and fashion, staff busy working in the office "} +{"id": "8003496", "video_name": "579226df-5025-5901-96c1-f72918200514", "text": "Mia khalifa in red bikini walking in a street ultra realistic "} +{"id": "6004643", "video_name": "b2498faa-ff7a-5fd5-9192-2e11747d5614", "text": "a car driving in the city loop "} +{"id": "5001576", "video_name": "2542953a-1331-5310-8e7c-a36c721b4edd", "text": "a man in a neon city playing a synth in an 80s synthwave style "} +{"id": "0005692", "video_name": "1f838113-97c2-5b3e-b397-c9885372a02f", "text": "bugatti crashing into man giving birth "} +{"id": "4002899", "video_name": "f16aca0e-8018-5508-b6b3-9591f204e2c5", "text": "Humans and robots holding hands in unity "} +{"id": "2007618", "video_name": "db2bafd3-3c35-58d2-a073-806542c35c49", "text": "futuristic arabic vinyl spinning, zoom out in a party with colorful extraterrestrial on a far planet, realistic "} +{"id": "6002127", "video_name": "7111e846-35eb-5d05-8848-2203aa92b11d", "text": "billboard on Vilnius Gediminas Castle Message: Use Azure OpenAI! (Font: MODERN) "} +{"id": "3006834", "video_name": "134a2787-e004-5a09-9e2e-b782ac357c0f", "text": "Moroccan princess riding a horse, sunset "} +{"id": "6004544", "video_name": "fe257e47-d992-5c24-b519-d0f0cb4e484a", "text": "system monitoring screens realistic windows operating system "} +{"id": "5001082", "video_name": "c8521c5a-47dd-56e8-bc3a-367133f419a7", "text": "the word \u201cKRES\u201din big bold font with very detailed letter with graffiti writing and splashed paint and plain 3D shading color background in a 3D logo style design animation "} +{"id": "4002056", "video_name": "b1cd493d-1d17-5514-99a5-7cb6adbca192", "text": "High definition Chinese style animation, Guan Yu, Qinglong Yanyue Knife, real estate sales center, happy expression, waving movements, knife light special effects, modern architecture, sales personnel, handshake interaction, property display, preferential policies, farewell scene, Chinese style music "} +{"id": "8003093", "video_name": "cf6e539d-283a-5b30-81ca-383649e3bcc2", "text": "Chinese ancient building, magnificent gate, in front of the door there is a cat dressed in tai chi clothes playing tai chi "} +{"id": "5001244", "video_name": "4d4ee086-1a72-5356-a691-1f3a7bc950cd", "text": "a to z chart for children "} +{"id": "4002360", "video_name": "d367a207-97c3-5198-af13-d6bb88c44761", "text": "shohei ohtani wrestling with godzilla in a sumo ring "} +{"id": "2005926", "video_name": "228325b9-040a-5a03-83f7-f16d0879f183", "text": "policemen chasing a magic trick blue sky, in the woods, rembrandt style "} +{"id": "1003460", "video_name": "40062fa7-2dbc-5336-8f86-36d8f8fc0456", "text": "a youtube video in which there is a 4k clash royale animation "} +{"id": "7002986", "video_name": "1011e579-4eb1-5d00-bddc-7a88329686e7", "text": "nun with a gun close shot golden hour photography old filmic look 35 mm wide angle front view sad mood rainy weather "} +{"id": "0005287", "video_name": "17e78249-fa7e-5170-9b08-252b8828f0f7", "text": "Sherman Securities logo for stock brokage "} +{"id": "2004642", "video_name": "8db54854-d8ec-57ad-83ca-8cfb6881b152", "text": "Dracula with the face of actor Christopher Lee, 30 years old, dying with a stake in the heart in front of a church at sunset "} +{"id": "2007321", "video_name": "c2140a87-eab1-54b1-a31c-1ccb27f6957c", "text": "red riding hood picking mushrooms in the big woods at night, horror genre "} +{"id": "0004636", "video_name": "0c61f22b-ff0a-55d3-b540-a5a4cd128daa", "text": "medium waves, man looking around, beach evening, moon appearing in the corner "} +{"id": "2003373", "video_name": "fa564e47-27d5-5d79-aa57-ab8ad05bfe7b", "text": "A dramatic painting depicting Napoleon Bonaparte leading his troops during the Battle of Austerlitz. "} +{"id": "6004023", "video_name": "30ce3d41-70f0-56b5-9c8b-5aa8eaa066ff", "text": "floating castles in a dark fantasy world moving around between clouds, 70 scifi magazine "} +{"id": "0004145", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "The Cat Aliens perform incredible tricks, showcasing their intelligence. "} +{"id": "3003205", "video_name": "1f73ed0f-0871-5625-8274-8297d6ddf8ba", "text": "joker sitting on top of an uber car "} +{"id": "5001666", "video_name": "24f55238-9adc-5b50-85a9-de84d9a5e0e3", "text": "walking floating on moving waters Jesus glowing, rising son, glittering, uhd, flycam view high speed, realistic "} +{"id": "3006632", "video_name": "7264edd5-bb6f-54ab-bf46-bf336aa387c9", "text": "3d animated monster trucks and transformers in a shattered city with pitch yellow graph sky "} +{"id": "1005028", "video_name": "5d054542-c8b6-5a5a-89c1-cb969b21afb8", "text": "narendra modi eating chicken leg on moon "} +{"id": "1004126", "video_name": "4c6c870b-f827-5c90-826e-d4ac019c8726", "text": "a boy using mobile phone, sitting in the chair, inside house, "} +{"id": "8002636", "video_name": "47138628-23d9-54a3-a069-64aef091f4f3", "text": "Malta in the 1980s, cartoons, 2d animation "} +{"id": "4003766", "video_name": "7c6666fc-44bd-5984-9808-0780e7c57d75", "text": "45 year old Tupac Shakur dressed in an ancient warrior suit holding a sword, Egypt dessert, movie scene, 2016 "} +{"id": "6004752", "video_name": "1e249ace-2f87-57d0-93e1-51b8cf67721f", "text": "He found that electricity and magnetism are relevant, both affect each other. "} +{"id": "5001688", "video_name": "295a00ab-d1d3-5aa2-afb7-c3f6698fe69f", "text": "chinese female university student typing on laptop, wide shot, background cafe "} +{"id": "3004707", "video_name": "7e5fd663-b64f-5e65-bcdc-1e95f7295268", "text": "a young couple on the beach walking, sunset, realistic "} +{"id": "4002905", "video_name": "4c340e81-1377-58d1-ad44-57c580b751e5", "text": "a dog running on the basketball play yard "} +{"id": "4003920", "video_name": "3ddb8b42-7c70-506c-b307-c1b8ef4eb4ec", "text": "A video asking which is better to choose between Monstera and Umberta "} +{"id": "7002987", "video_name": "9e703a69-008e-5b5f-974b-4536f2738bc0", "text": "an old house in a town "} +{"id": "3004649", "video_name": "00a5c787-11d4-55cb-a7ff-30d8505d9b52", "text": "Many angels with their black wings, full body, (screaming in hell), with an aura of fire. Exclusive style of D14bl0, extremely detailed and high quality, 8k, cinematic, no aliasing, strokes and a famous artist, no blurred image, very well done strokes, no deformation in the eyes, mouth and nose, all drawn perfectly, style by Leonardo da Vinci. "} +{"id": "6002471", "video_name": "84aa2253-a37f-5d53-90fb-66f629a291ab", "text": "photo realistic beach with palm trees swaying in the breeze, light crashing waves "} +{"id": "1004543", "video_name": "545c2124-4f3e-5177-910a-77d1a8b26506", "text": "building construction building message:BONUS (Font: MODERN) "} +{"id": "3006560", "video_name": "fabcc55e-e5bf-5766-90e9-ac293dea774b", "text": "taxi driving in Shinjuku in the 1970s "} +{"id": "1005744", "video_name": "69b9408c-5294-5cee-ab12-e4b46cc5d23f", "text": "Bird family, branch, blossoms, blossom fall, love, cute, colourful "} +{"id": "6004182", "video_name": "51dc0867-b436-5890-9b71-033920b69869", "text": "ancient cats arrive on earth on a cat spaceship "} +{"id": "7003195", "video_name": "5b53bcaf-bede-5ed9-a08b-807f9ba28030", "text": "The astronaut prays the Muslim prayer Message: 1 Attachment "} +{"id": "0004336", "video_name": "07535b18-59e5-51ab-8d9e-497e2391267c", "text": "the orange transforms into a rabbit "} +{"id": "6004827", "video_name": "f8bf8b01-a92b-561e-a06e-98cea54dff72", "text": "aliens playing soccer, mist, night, zoom out Message: 1 Attachment "} +{"id": "4002863", "video_name": "43a37f69-235e-56e5-81cc-2621fd76aea6", "text": "Astory video about a egiptian cat in his eys dark energy , the camera zoom to hes eys and take as to another world of shadows , 30s "} +{"id": "8001129", "video_name": "0fc453bf-8cf8-57b2-b785-58eb2b597a09", "text": "The ghost of an elderly man peering out from between the sticks. "} +{"id": "4002988", "video_name": "be430b39-51f1-5754-8aff-ea29189ded87", "text": "a realistic beautiful young lady in the restaurant "} +{"id": "2003114", "video_name": "6fe6b1c4-21d3-5cde-ace1-e5bb5aa3b803", "text": "The multimedia art installation is placed in a space 10 meters long, 10 meters wide and 5 meters high. It can be placed in the space For display in the center, you can also use the area of \u200b\u200bthe wall to display. Chinese Cantonese Opera "} +{"id": "2004881", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "cinematic, 3d animation, porcupine hugs balloon and the balloon pops. "} +{"id": "2003122", "video_name": "cd379ab4-3968-5ccd-9298-3d38032f7c78", "text": "Man with black eye tatoo rapping passionately . Message: Aankhe meri kaali (Font: MODERN) "} +{"id": "2003617", "video_name": "12087e7d-d28a-5f57-ad65-189e4cc47689", "text": "Animate the flowers, the smoke, the Hair ,the smoke and the particles,preserve the details,Motion,Loop "} +{"id": "6004288", "video_name": "2c27bb7f-8b67-52d7-9f6c-2e6b4b8b5001", "text": "a pile of manure Message: 1 Attachment "} +{"id": "2005369", "video_name": "40eb40dd-51eb-50e0-a951-4b986edbcd87", "text": "cyberpunk style lion chasing prey, prey deer, high resolution render "} +{"id": "3006322", "video_name": "9c333696-b005-5eb7-a98c-08363ae746ab", "text": "girl listening to music with headphone on a train which is moving between mountains, can see from window, be lofi art "} +{"id": "6002478", "video_name": "b669de89-e319-5baf-b425-341101fe4f70", "text": "make the water and the leaves move Message: 1 Attachment "} +{"id": "8002404", "video_name": "4789a87f-fc86-56a9-b7c6-1f9b85585304", "text": "gravey on mashed potatoes, pouring gravy, gravy pour "} +{"id": "2004430", "video_name": "701df025-1f80-565e-9569-690e02eb6b30", "text": "a toy palm tree, waves in the background, 90s style, sun in the sky, cinema 4d, ray tracing, photorealistic "} +{"id": "3005851", "video_name": "63af1598-c87b-5066-a359-238ae9f0c663", "text": "professional cannabis field photography Message: CANNORTE (Font: MODERN) "} +{"id": "1006074", "video_name": "6f72ade2-d2ac-5474-ace9-e77a5a06716a", "text": "squirrel, tree, wind, eye blink, tail "} +{"id": "4003382", "video_name": "256508c8-db01-55e8-bb1a-9e69b4248a1d", "text": "number 1 in the clouds and stars "} +{"id": "0004306", "video_name": "06d0a2b4-d182-5854-bab8-ab72c0c3eed5", "text": "a wine bottle being poured into a glass of roses "} +{"id": "0004486", "video_name": "09cc5cd9-7a38-5467-a312-04585dca4cd4", "text": "eye moves AWAY FROM the image and sees "} +{"id": "2007531", "video_name": "284776d8-b984-5511-af42-1db2e4a7cf07", "text": "A boy discovered a mysterious door nestled between two ancient oak trees. "} +{"id": "8003853", "video_name": "4e2ca3e8-a109-5844-9b91-4ef3cc9ba662", "text": "A girl wearing a leather jacket with her cat setting near her home window to see around the the town listen music "} +{"id": "4003028", "video_name": "438adda9-42fe-5d1c-8623-0409e6bdb402", "text": "Realistic Christmas tree: Place a large, decorated Christmas tree in the center of the forest. The tree should be covered in lights, ornaments, and a star on top. "} +{"id": "8001693", "video_name": "c1264c9f-7f0a-5600-b87c-444da810d791", "text": "soldiers at headquarters preparing for war in the afternoon, realistic 3D clear image, HD 1080 quality, 16:9 ratio, "} +{"id": "0004708", "video_name": "0db7de93-4dba-5199-9d35-c2b5de11c95c", "text": "We see the haunting, surreal image of Cthulhu, his eerie, otherworldly presence floating in the void of space, passing by sinister and ominous planets. "} +{"id": "4003928", "video_name": "8bdf0506-5e11-5133-acba-db858dddaa40", "text": "red crimson mage fighting a dragon "} +{"id": "3003006", "video_name": "b2f42a40-202f-55e4-a503-a51f6fae37f5", "text": "a black mercedes speeding down the highway on a rainy night, rain sprays off the windsheild and wheels "} +{"id": "1005752", "video_name": "69cda4f8-07f7-51b6-ac54-6ece55f80c4d", "text": "a 3d cartoon kid boy with gentle heart and kid speret "} +{"id": "4003538", "video_name": "c547f8dc-1b3c-56c9-95a5-aff5360673b2", "text": "Kade Neely doing the tiktok baba trend "} +{"id": "7004727", "video_name": "c2412c23-2c09-5d02-94c1-916d694b293a", "text": "snowflakes on the background of the night sky Message: goodbye (Font: MODERN) "} +{"id": "8001795", "video_name": "d7c52e47-7781-5f9a-bff7-2d1cbafe1309", "text": "a stork flying from the sky, anime video "} +{"id": "3003311", "video_name": "c16560cd-f1ce-557b-a5b2-80ab79720ed7", "text": "Brazilian play in football on the beach "} +{"id": "0004396", "video_name": "08331cab-384b-579a-ae5a-9ad42c84d844", "text": "A heartwarming image of the villagers taking care of their environment, with generations working together. "} +{"id": "2007384", "video_name": "0855cc6b-f2c2-5a0a-98b7-d0f61b55640e", "text": "Long ago, there were two brothers living in a city in Persia. The older brother was called Kaximu, and the younger brother was called Alibaba. "} +{"id": "7002092", "video_name": "837dcbb4-6ac8-5f7d-a5bd-9f5af775ed5c", "text": "A mother with a bouncing belly and a baby in tow. "} +{"id": "8001050", "video_name": "f12c9090-4efa-5f7c-a8cf-b545abd9280f", "text": "a soldier helping an injured person laying on the floor, gritty, battlefield, dystopian, wearing guerilla outfits "} +{"id": "1006032", "video_name": "6ed01f01-de0b-5161-b05f-dfc241345c4b", "text": "a sucessfull buissnes owner and no face appeared and he is very comfort with his job "} +{"id": "1004022", "video_name": "4a92cded-3fde-5f58-828b-b41eb2010ada", "text": "the kids went to bed. The baby first, then DeeLee, later Ty and A.J., and finally Mrs. Thomas "} +{"id": "2004738", "video_name": "ecd258c9-cba1-5724-ab31-1327b415229d", "text": "Madina 570 AD shot on Kodak Portra 800, 105 mm f1. 8 "} +{"id": "7003908", "video_name": "33f0a035-5b3c-5ec0-90f0-5e22e09e5972", "text": "Once upon a time, in the enchanting forest of Willowdale, there lived two best friends, Benny the Bunny and Charlie the Chipmunk. They were inseparable and always found themselves in the most exciting adventures.One sunny morning, Benny and Charlie decided to explore the mysterious meadow on the other side of the forest. "} +{"id": "8002987", "video_name": "bbc5ea1f-b871-567a-b25a-638140551338", "text": "panda and brown bear lying together in bed and sleeping "} +{"id": "0005165", "video_name": "15dbfda0-348c-521c-9e9a-e06e5b08b72f", "text": "A hero with everything on him. "} +{"id": "3003247", "video_name": "85eac4d6-5eef-5fd4-a13b-63fd22ba68c6", "text": "show people standing up for their beliefs in various modern scenarios. "} +{"id": "6004247", "video_name": "03fbcd17-bb45-5ee1-af60-b7935275c2c3", "text": "(masterpiece, 8K, UHD, digital art:1.3), endless expanse of the cosmos, painted with a mesmerizing palette of (kaleidoscopic hues:1.4). Star clusters bursting with (radiant blues, fiery reds, and neon greens:1.2), galaxies dancing, their spiral arms trailing vibrant stardust, nebulous clouds, rich in (luminous pinks, deep purples, and golden yellows:1.3), stars twinkling like gemstones against the iridescent backdrop. Shooting stars streak, leaving a rainbow trail, vibrant comets passing by, shimmering and sparkling. Cool and warm colors in harmonious play, dynamic perspective, immersed in a universe ablaze with color and life. "} +{"id": "1006104", "video_name": "70055c07-debc-56ae-9a24-961ab770f9bf", "text": "an Ape finding a watch and then uses it to travel through time "} +{"id": "2005318", "video_name": "e1dfb7d2-5204-5821-b027-70691181a45e", "text": "girl sitting with her head tilted to the right and left "} +{"id": "2006889", "video_name": "0c5584ec-f0e6-5095-98b2-d1f7aa4187f2", "text": "little red riding hood sat by an open wood wife in an ola country cottage, "} +{"id": "3004275", "video_name": "d1f960e4-69d1-577d-9295-e3a62cf38481", "text": "a dimly lit office with a table and a chair in a room, personal room background, mysterious ambient lighting, Dimly lit room, dimly lit interior room, mysterious atmospheric lighting, shadow filled room with gloomy, dimly lit room, Dim lighting , dramatic lighting rendering, moody lighting, interior background art, low light room, fantastic lighting and shading "} +{"id": "3006787", "video_name": "d078f980-cefd-5383-b18c-cbbfa057aad5", "text": "Open with a serene nature background, perhaps a tranquil forest, tress moinv lightly in the wind,a river flowing over rocks ar 16:9 "} +{"id": "1003830", "video_name": "46b88c83-ef81-55e0-92ed-74b77ca0ffc1", "text": "Show Lucas,young boy walking with a sense of purpose, his expression reflective and slightly sad. As he journeyed further, Lucas stumbled upon an old and injured lion. The lion, whom he later learned was named Leo, was once known as the king of the jungle but had fallen from grace due to old age and injury. "} +{"id": "8002365", "video_name": "bdfb879f-742b-5628-bdc3-e6e5813eefa1", "text": "lilly lived in a land full of wonder in a village nestled between rolling hills and sparkling river "} +{"id": "5001115", "video_name": "9fc207d9-9626-5eb6-8a14-2982656ecbf5", "text": "santa claus sitting on a chinese dragon, shaking his hands "} +{"id": "1003640", "video_name": "4318039e-d100-503f-950c-b3506bc182ac", "text": "scientific experiment monster escapes from an abandoned nuclear power plant in the middle of an ancient forest. Red colours. 90s horror movie style. Liminal space. "} +{"id": "2005748", "video_name": "fb1535de-8331-5338-8f93-4e8a9f7de374", "text": "boy likes walking on the beach "} +{"id": "3005560", "video_name": "69d2ec84-c07c-5107-ae3e-8b93098aafc0", "text": "Female Warrior in a subway train. Armed with a sub machine gun. Cyberpunk. Horror. Silent Hill, Blade Runner. "} +{"id": "8003044", "video_name": "2248358a-5f68-56ba-947d-6e7b62265ce7", "text": "baby cat making funny film, high quality "} +{"id": "1005602", "video_name": "670fcacf-e7cf-5de5-b8eb-212d608dc4e2", "text": "King Kong sitting in the back of a pickup truck at a drive in movie image: "} +{"id": "0005141", "video_name": "158020da-ff10-5869-ba9c-ad64bfb08143", "text": "animated character disney and donald duck as friends "} +{"id": "8002531", "video_name": "e1f77ac3-1b77-5fde-ba1a-2046a90db725", "text": "dancing men and women,waltz,high precision,high quality,arms that move smoothly,smoothly moving fingers,swaying hair,high quality face "} +{"id": "7004352", "video_name": "6490c32d-27f2-5371-af66-3621ef0c716f", "text": "new year is coming in baku "} +{"id": "1004854", "video_name": "59b1fbef-6784-574e-9ae2-e953a41af9b0", "text": "A sundial dropping down into the sand in the desert "} +{"id": "6003461", "video_name": "e4b8ebd1-8dc0-576a-9fb0-5d1f3b78dd71", "text": "make cinematic car crash in tree "} +{"id": "3005160", "video_name": "6dec5136-1d3f-53f6-a994-b6c234d04a62", "text": "stood an imposing mansion known as Echo Manor Make in 3d animation in 4k resolution "} +{"id": "6002777", "video_name": "dd6fb808-da6e-53c8-aaf1-1ca58a7b7cc1", "text": "a Roman senate with Roman senators arguing and shaking it up heatedly "} +{"id": "2003147", "video_name": "485bd006-1944-59e2-be06-e224b2911ec3", "text": "a flies snake eating plant geometric "} +{"id": "0004733", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "Pablo oscobar with Indian old men "} +{"id": "3005827", "video_name": "c8da4682-85bc-5bde-be6e-b80cc31a7fb6", "text": "zenomorph on white house Message: Now is the time (Font: MODERN) "} +{"id": "6002138", "video_name": "e98a9dcb-704a-58cc-bd77-eb7851a986f1", "text": "revolution, intertwined with the people, a rising sun, war, struggle, moving smoke, happy august 30 victory day lettering "} +{"id": "2004889", "video_name": "9804e665-5e54-5509-9901-3b1f0ff523b4", "text": "Love of a grand son for his grand mother "} +{"id": "5001536", "video_name": "c6f6af13-1ee1-5b9c-9902-2b4aa0421a1b", "text": "A cinematic view from above of a group of dogs running towards a security checkpoint on the streets of New York "} +{"id": "6003543", "video_name": "ce62aa5c-b2c0-538a-8ab1-179aebca3f19", "text": "gif, everything starts with one step "} +{"id": "7004214", "video_name": "42e7c53b-b09b-5f69-b8f5-34178937d4ad", "text": "make me a logo with a G, in a modern style. Company name is Gloteca. It can look like the Mearsk logo "} +{"id": "0003553", "video_name": "3f6cb33b-9720-5226-967a-e75d9d7e2c76", "text": "15 years girls and 18 years boy,Depict a disagreement together "} +{"id": "3006580", "video_name": "b6bc1100-8f35-5d61-816a-be1b03605f00", "text": "simple style, white liquid with pistach color waves "} +{"id": "7004115", "video_name": "178b754e-1c7c-5257-b85a-7226caadbc48", "text": "chickens running around a chicken yard flapping wings and crowing "} +{"id": "6004105", "video_name": "d313aae6-7313-55f9-a6a6-1d851761a11a", "text": "A ship in the midst of a hurricane is sinking. "} +{"id": "3006974", "video_name": "5bbb44eb-0c7c-50f6-a6cd-47d1573bb5a0", "text": "She had to listen carefully and decipher the ancient language of the trees to uncover the location of the next ritual. "} +{"id": "2003783", "video_name": "423ac8fe-1d06-5c78-a490-d6dba3c9c9d8", "text": ": a robot bird flying in tthe forest "} +{"id": "4004437", "video_name": "96ba0f10-086a-5aa7-b152-151a29fba7cc", "text": "cher singing on stage in a sexy outfit "} +{"id": "2004572", "video_name": "73776a9e-91ff-5f5b-95a1-e0c75ffb4031", "text": "a boy play with a car reate "} +{"id": "5001481", "video_name": "4c514008-629e-535c-bd48-b2548228b6aa", "text": "a men staying focused and having a clear vision of life "} +{"id": "3006512", "video_name": "4bd3d89f-ec4c-523b-94f8-44341a369915", "text": "Action unfolds as Freddy infiltrates the dreams of his unsuspecting victims, creating a nightmare dreamscape filled with surreal and horrifying imagery. "} +{"id": "0006374", "video_name": "2b5aa96d-37c6-53a5-90e8-da6bfcc4628b", "text": "A cat that nods to say hello "} +{"id": "3003526", "video_name": "c31b5e23-7442-5380-ba4b-a4f2f213ea75", "text": "a golden door is on the beach,background sea, sunset, evening, 16:9, anamorphic lens, 4k "} +{"id": "2004448", "video_name": "8d7d91a9-2196-5204-860a-f0db1923cbfc", "text": "Curious Liam decides to touch one of the floating planets. When he does it sends ripples throughout the dreamscape and he is gently pulled toward it. Each planet he touches reveals memories from his past. "} +{"id": "3005144", "video_name": "ab659cdd-383e-569e-b305-f19c5542e6c4", "text": "shimmering, twitching, cell division. a minimal translucent zen alter for nature worship. insect eggs, fish eggs cluster symmetrical amazing masterpiece golden orbs hyper detail "} +{"id": "8001491", "video_name": "dca1cbe5-8822-5e72-8165-dae1744b546f", "text": "adam created from dirt Message: 1 Attachment "} +{"id": "3003424", "video_name": "3b369115-2f74-5050-ab1b-a92410a81b3d", "text": "A black kitten waking up in a cozy apartment with a familiar scent and sound, feeling happy and content, recognizing the boy she loves as her owner, cuddling with him and purring, in the style of a romance film, sweet and sentimental tone, soft and warm visuals, "} +{"id": "3003007", "video_name": "942e6867-13d7-53df-96b5-72783bc28ad4", "text": "The drug enters the liver through blood vessels "} +{"id": "3006964", "video_name": "f34517ad-bc3d-52c8-bdef-1d12c2595623", "text": "cinematic, ghost at the circus, 1960 style "} +{"id": "3004340", "video_name": "d43ad318-1ccc-5e73-9bcc-abdf6a731ba3", "text": "Move the child and the flag in the picture as if he were speaking "} +{"id": "3006601", "video_name": "c01cbc91-90d9-553d-8907-0744ad3f7398", "text": "a young man sitting on the porch, his hands on the head, contempleting and sad "} +{"id": "3005545", "video_name": "a23c7fc1-544b-508a-8ee2-566e56fd86df", "text": "Create a visual showing Kutlun a mangolian warrior, Illustrate her in a dynamic sword pose, showcasing her strength and fierceness. "} +{"id": "0005291", "video_name": "17f16156-ad73-55c8-ad7c-da186f652a05", "text": "an animated shark jumping inside a little wodden boat "} +{"id": "0003768", "video_name": "42ff1207-bd48-5bf5-8af1-ff39a71fb435", "text": "Ryan Gosling advertises a white bathroom curtain "} +{"id": "4003492", "video_name": "dbd9cda9-de24-5cf8-accf-8d0551778f9e", "text": "Waves rise as 3D geometric patterns, their crests and troughs shaped by the audio spectrum. The primary visual is glimpsed behind a massive waveform line that ebbs and flows "} +{"id": "7003330", "video_name": "ec7bf65e-5764-544a-aa11-660c199c4abe", "text": "Show a benevolent two farmers or masters kindly receiving a bag of wool from the sheep, set in a rustic barn or farmyard "} +{"id": "3006364", "video_name": "ea9bdce7-1761-58db-bc8b-57662d77e11a", "text": "He agreed to fix the carriage but demanded an exorbitant sum of money in return. The traveler, realizing he had no other choice, reluctantly agreed to pay the hefty fee. "} +{"id": "0006048", "video_name": "25ba60d3-fa5d-53d8-9708-aa697db25568", "text": "dark biomechanical cyborg playing a synthetizer eurorack in 3D octane render, best quality , best resolution, HDR, 4k "} +{"id": "5001404", "video_name": "73024ca4-6f9c-59dd-b10d-cc67ac664c9f", "text": "cinematic, call of duty soldier, gta style "} +{"id": "4004565", "video_name": "b4477127-241a-5828-827e-c05975369e86", "text": "A hooded man at a pay phone making a call on a rainy day in the 1960s "} +{"id": "4002575", "video_name": "8371f781-4e92-5872-af34-07e6061adc9a", "text": "artificial intelligence robot teaching people in black board as a teacher 8k "} +{"id": "7002559", "video_name": "17f9b690-da3a-57fa-b1e2-ca2fbd1ce760", "text": "An extraterrestrial warrior penguin fights against mutant creatures with the last samurai sword of humanity, realistic style, foggy weather , somber atmosphere, shallow depth of field "} +{"id": "3003856", "video_name": "a777eb15-9f3d-505f-a3e5-522d6922b48e", "text": "As the news about the golden chicken spreads, people start talking about it. The farmer becomes \u200eprideful and desires something more. His greed gradually becomes evident.\u200e "} +{"id": "2004978", "video_name": "e348a35d-39aa-594f-8641-9885bdf557cb", "text": "video of 3minutes production of cactus leather "} +{"id": "2006455", "video_name": "863864b5-eebe-57f9-8f40-b639b293e30f", "text": "create a background music for industrial machine promo "} +{"id": "7004825", "video_name": "53d59be4-6291-519f-817e-08b8e371bccb", "text": "high speed rail station with huge glowing sculpture s casino Bellagio hotel lobby "} +{"id": "3006878", "video_name": "762e4e5e-250b-51c8-9363-946f02d498c9", "text": "A lush green forest with vibrant trees and a sparkling river. Leo, a lion cub, and Tig, a tiger cub, are playing together in a clearing. "} +{"id": "7002183", "video_name": "ccb0e66d-8707-5624-b37c-cc412b9facfb", "text": "Create a female version between cher, Ru Paul and Margret Thatcher "} +{"id": "2006895", "video_name": "ca77946b-fdc3-53fa-bbb4-01d57e602fd3", "text": "plants on mart into the night "} +{"id": "8003648", "video_name": "728fab31-898d-554e-bb57-d853c32a06df", "text": "nintendo club logo with the Costa Rica flag "} +{"id": "6003378", "video_name": "547361e2-3011-57c2-b2d2-566ffaafcf7d", "text": "wizard performing a spell in the beach "} +{"id": "8003248", "video_name": "bc43feb4-3e3c-5c5a-93e1-29376c7d3510", "text": "A city with crowded people Message: Try to live and try (Font: MODERN) "} +{"id": "8002687", "video_name": "b4ff7287-d9bf-5215-92de-f9b9a1419f84", "text": "woman in red on the boat "} +{"id": "7002116", "video_name": "3bb796fd-3e43-54f7-b337-3556eda8c1ea", "text": "spaceship traveling through outer space, a super modern and advanced ship, cinematic "} +{"id": "3005019", "video_name": "b80e249b-ef6a-57f0-9894-6f27b639cbfa", "text": "The bear stands up and moves towards the camera, bear talks to the camera, background change "} +{"id": "3006286", "video_name": "88088860-1e9a-590d-8b33-230a027bada6", "text": "cat walks towards the Christmas tree, rear view "} +{"id": "7004794", "video_name": "e932963d-8ac0-5fa1-9b7d-b7c8f0c4261b", "text": "warrior raising sword in the rain. "} +{"id": "0006179", "video_name": "27c4d176-7755-543c-9997-8f384ffa0ab1", "text": "a girl stays in a autumn street, walking towards me. "} +{"id": "0003403", "video_name": "3d118851-2e49-5ca1-b9f4-88af3e4a4f42", "text": "muhammad ali fighting in the ring, style of akira "} +{"id": "4002370", "video_name": "48dffc24-12e2-51d7-bd24-1abc09aa2798", "text": "Kitten in a room near a fireplace sleeping "} +{"id": "3005105", "video_name": "6c308dc2-fab9-5194-9ee6-ae891eefcc47", "text": "in a parallel universe on a planet with lush white flora with gradients, forms of alien life, the mouth of a river in a gorge of fiery folds, along many white plants made of peacock feathers, curlicues of glass fluffy with a blue sheen, image clarity, attention to detail, bright colors, juicy and catchy, extremely high detail, realistic, professional photo,attention to detail, clear focus, hd , wallpapers, 4k "} +{"id": "6004345", "video_name": "2b2502b9-225b-594e-b207-3be15465c9d8", "text": "african american woman in a conference room giving a presentation wearing blue and orange "} +{"id": "4004010", "video_name": "7ec00c6d-efab-5d23-8065-d6240e5a548c", "text": "A little girl living in a small hut in a forest "} +{"id": "2005284", "video_name": "d16e261a-319d-59a6-8af9-47d454f1b3e5", "text": "6. The family hugging, their clothes adorned with joyful patterns, cherishing the moment of reunion in a room filled with vibrant colors. "} +{"id": "3006114", "video_name": "933b3e30-ef2a-54ec-9792-50a91367dcb7", "text": "displays wolf and Chicken spending time together, exploring the forest and learning from each other.The Challenge of the Swinging Bridge "} +{"id": "7003603", "video_name": "1f1ad859-3e98-5fb7-ab22-bb74be2579fa", "text": "1 A cute dolphin jumping and on the sea "} +{"id": "6004855", "video_name": "1d504729-cb67-5cf2-8756-f9bebe236457", "text": "Police robot with guns and a flying car "} +{"id": "0005722", "video_name": "202b2f57-31b5-5b81-8f6d-97699a621b42", "text": "suzuki hayabusa run on its top speed "} +{"id": "6004221", "video_name": "3a99ca4c-c38b-513d-bbbb-73bfb10b6f0c", "text": "make a image of how our earth will look after 10000 years "} +{"id": "1004144", "video_name": "4cc19377-ccd7-54c0-a20d-0fc5743720cc", "text": "a very speedy zooming from far to very close of Chuck Norris seats onto a mountain "} +{"id": "3003899", "video_name": "f04ad581-6acd-5691-a72f-4dedf9df1a1c", "text": "Two little swallows are flying here and there. The bright colors of spring. Background is straw house, eaves, trees and flowers, wide angle shot, "} +{"id": "2007611", "video_name": "c6dddb2c-cb62-5fd9-8fc1-3ba859354001", "text": "only the display of a heart monitor without beats "} +{"id": "4002238", "video_name": "40c62ea8-2ce4-5ad7-8ac2-ff1b3a732ac2", "text": "ship containers commerce Message: LOS PETETES (Font: MODERN) "} +{"id": "3006048", "video_name": "856d1079-f29e-533d-a579-fc98a141e3af", "text": "A White headed anime character who has the power to emit blue powerful flames attacking a red head anime character who has the power to attack using ice "} +{"id": "6002511", "video_name": "91a2f832-211f-5a5d-8695-b8dbe8f40906", "text": "trees with golden leaves Message: 1 Attachment "} +{"id": "2004989", "video_name": "a05b3aff-4bab-5a8f-91b0-257dd24c03be", "text": "the korean girl is doing homework near the window in the morning "} +{"id": "4004650", "video_name": "f1ba41dc-8310-5c6b-9dfa-59186d6dbbb3", "text": "Ethan offering food and water to white baby dog cartoon animated "} +{"id": "2003745", "video_name": "f3865d8c-849e-5938-a58c-c96a0ab9078a", "text": "The little rabbit happily crawled around in the park "} +{"id": "5001435", "video_name": "770bad93-5292-5a49-8193-bb6b8cda2c12", "text": "pikachu using headphones, cinematic, aspect ratio 16:9 "} +{"id": "0004792", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "Show the young guitar player sitting atop the mountain, Animate birds gracefully flying across the sky in the background, Add subtle animation to the grass and flowers to simulate the gentle blowing of the wind, studio ghibli, hand drawn, vibrant, slow motation "} +{"id": "2005550", "video_name": "c80600df-4ccb-58a6-ace3-105146bb70a3", "text": "Congrats to the SpaceX team on the 250th landing of a Falcon rocket "} +{"id": "4004221", "video_name": "0e934926-6f96-588a-90d2-ef59b6212681", "text": "real life cinematic scene world where demons have emerged victorious in their bid to conquer Earth. "} +{"id": "0004447", "video_name": "0941fb82-80a5-5756-8d7d-8d3dd02ab1c0", "text": "tension,smiling , whispring , Message: 1 Attachment "} +{"id": "6003885", "video_name": "b886b5fc-4b7d-5267-9135-57b724525a06", "text": "In general, Bitcoin, as an innovative digital currency, has changed the way the traditional monetary and financial system operates. Its emergence has sparked discussion and research on money and blockchain technology, with profound implications for future financial and economic development. "} +{"id": "5001860", "video_name": "c9d623f7-fb0e-51e7-a072-b759e96303fb", "text": "astronaut floating in space, multi color galaxies, saturn in the background in the style of Damien Hirst, space civilization, plants, red rock, Stanford torus, stars, planets, rockets, galaxy, epic scene, vibrant colors, dynamic lighting, digital art, winning awards masterpiece, fantastically beautiful, illustration, trending on artstation, art by greg Rutkowski, 8k, artstation trending, glow, luminous, Iridescent, fluids, sparkles, Vibrant, Mystifying, Eerie, super detailed, super realistic, 8k "} +{"id": "3004740", "video_name": "1c725840-7eac-56d5-925c-41fd50e66c28", "text": "a horse jumping on a person, cartoon style, 10 s long "} +{"id": "4003705", "video_name": "8ab5673f-83a8-5966-9ea0-4138d24e0566", "text": "all the long threads on a clothes are moving in a wind, woman is blink open her mouth, hand and hair move a little bit "} +{"id": "7003349", "video_name": "3cf8f318-3d93-5573-b2c3-8ac59daaec81", "text": "Pixar poster with a kid wearing a karate gi "} +{"id": "1003478", "video_name": "4076168f-19f5-5575-9cdd-ea4c737d2b5f", "text": "The waves rolled over the sea "} +{"id": "6002695", "video_name": "686e2506-2a3c-597a-a0a2-c8d01ec2a355", "text": "batalion of ghosts storming city of light, noir, fuzzy picture, shaking and glitches "} +{"id": "6002200", "video_name": "c93d2cd3-6297-5808-ac10-aa3d58027d4c", "text": "Luke skywalker doing Jedi training with a light saber "} +{"id": "1005474", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "In a dark corridor, on the right wall, the unclear light spots transform into a breathtaking depiction of stars in deep space, twinkling and swirling. "} +{"id": "6003541", "video_name": "ee0f410d-57f9-534e-bb73-d3a521269fcd", "text": "The spacecraft enters space from the left and wanders the Earth "} +{"id": "2003227", "video_name": "fb722329-7333-56d9-bc6a-dda20cded469", "text": "forest,scandinavia,dark, real,slight smoke movement in the background,camera pan right,neg,cinematic,high quality video , cinematic movie "} +{"id": "7004514", "video_name": "c114361f-7c80-5f71-820f-5daea35f3031", "text": "a human hand is picking up the shiny cyan pendant from the grass in a middle of a dark forest on a gloomy grey afternoon "} +{"id": "0005978", "video_name": "2451b04e-c95c-5105-9bf4-ac039679c3ed", "text": "A blue xmas creature sitting down watching Tv christmas hat on snowing outside "} +{"id": "6002770", "video_name": "3a482ea0-b6b1-5403-8b46-cea08f654b7c", "text": "Eddie Murphy Is Back On The Line Of Duty In Beverly Hills Cop "} +{"id": "2006671", "video_name": "299c41e9-260f-52df-82b6-79138f1f80e9", "text": "Depict a young cadet in uniform on the deck of a ship, learning the ropes under the guidance of experienced seafarers. "} +{"id": "0004492", "video_name": "09dde9c3-74ed-5d6a-99e5-d283af26d25e", "text": "A komodo dragon eating a watermelon. "} +{"id": "5001863", "video_name": "56c71fee-af11-5cf7-ae72-ac1957dcb5cb", "text": "As autumn nears its end, our character sets up a tent in the middle of the forest. With a serene smile, he enters the tent, finding inner peace. ultra realistic, hyper detailed, matrix color tones Message: 1 Attachment "} +{"id": "1005005", "video_name": "5c8b6d4f-31c7-523e-805a-76f970af0098", "text": "female fitness model with red hair smiles in the mirror "} +{"id": "8003557", "video_name": "700254cf-1267-5549-85a7-a218f04c2ea1", "text": "Train with Square Wheels: A train toy with square wheels, making it unable to roll smoothly like a traditional train "} +{"id": "8003301", "video_name": "21cf77c8-19de-55d8-8ce7-339e5eadf36a", "text": "Busy snacks at night in Guangzhou, China "} +{"id": "1003116", "video_name": "39534b12-294c-5a8e-b224-8f9b947ceb7b", "text": "beautiful african princess, face closeup, blinking "} +{"id": "7004882", "video_name": "19b7e784-4f64-5c38-8767-f7289856c118", "text": "clouds running outside the train window "} +{"id": "6002036", "video_name": "e1249dc9-02bb-5a6d-85c3-d3a66b749107", "text": "A courier in a green jacket fights with a courier in a yellow jacket, accurate anatomy and body movements, very Dynamic and realistic volumetric video, daylight city in background "} +{"id": "0003144", "video_name": "3801ee1a-62ff-52b3-85d6-4774867d67c1", "text": "a dog sitting alone in the rain. A lot of nature in the background with spring vibe "} +{"id": "3006496", "video_name": "69e08a03-d2f5-504e-aad4-ebf85eb37352", "text": "A king with its army going to fight against other king "} +{"id": "6003958", "video_name": "eb3210fe-bc1e-5763-81d9-4f4884c6fa3c", "text": "powerful futuristic robotic car on road image ratio 9:16 "} +{"id": "3003425", "video_name": "064c7dd4-2015-5ab5-baf8-1f8510799bbc", "text": "Woman being abducted by aliens in the 50s "} +{"id": "6004686", "video_name": "4e81086f-71f0-5e83-9e87-3304a99b4385", "text": "Friends peeking into a cave or gufa where animals seems to communicate in different languages "} +{"id": "5001105", "video_name": "732bf01d-cb0b-5bc6-bac0-7faee429a78c", "text": "a man smokes behind a window in rainy weather "} +{"id": "0003579", "video_name": "3fdbb991-acdb-5cc2-9532-622d27a3a2fa", "text": "panda dancing in chair Message: 1 Attachment "} +{"id": "8002698", "video_name": "0ad2ad11-f08d-5604-805b-4e6e48b6501a", "text": "Start with a peaceful instrumental melody reflecting devotion and awe, gradually building anticipation. "} +{"id": "1004579", "video_name": "55226a17-9cbd-59f4-889c-3c0fc2c517d9", "text": "Transition to a breathtaking view of Earth from space. "} +{"id": "2004348", "video_name": "95cdd8e7-60f0-5835-8817-d46fe8729569", "text": "Underwater green lake circus vintage old fantasy rusty carousel spinning horses underwater with led lights on dark ambience video game render "} +{"id": "4003169", "video_name": "40b32c7a-ba7e-5ae2-b74b-1d074f9df12b", "text": "dronacharya the indian god is holding a drone, white background, epic view "} +{"id": "3004704", "video_name": "bed5dd17-345c-5d6d-9359-2e0cff474889", "text": "forex trading platform showing increased market price "} +{"id": "2006479", "video_name": "3c2999f4-e078-5a61-a9b2-c5cdc42dbd62", "text": "the credits of a star wars film "} +{"id": "8002219", "video_name": "6b97687f-8d42-5fcb-934c-d36474ad36c1", "text": "a sealion and a turtle shake hands in the ocean "} +{"id": "8001987", "video_name": "69295a6d-8ed8-530f-9f4b-9b31c155e198", "text": "make a zoom angle of the forest Message: 1 Attachment "} +{"id": "0004834", "video_name": "0ffc99e9-b413-5450-b341-e67d229d2df0", "text": "buzzlight year using lazer towards zurg "} +{"id": "8002383", "video_name": "705b26ab-c8a9-545e-a9b7-07d9e8437716", "text": "Harry Potter and the Deathly Hallows "} +{"id": "3003835", "video_name": "2a070fed-b610-5540-8fa1-5a2f4bc7cd24", "text": "boy play with football in the yard "} +{"id": "0006824", "video_name": "33af77ff-d5b3-5498-8964-3a2cfcd39021", "text": "High definition photography, advertising shooting\uff0cThe fried chicken fell from the air onto lettuce. "} +{"id": "3005775", "video_name": "010c97b0-0cbb-5453-8033-103299557657", "text": "maxima eas symbol of resilience\n in the Colosseum.\n in 4k "} +{"id": "2007927", "video_name": "857d8de3-f08b-5a10-b3ea-557b36d8925f", "text": "The KFC in that city is delicious masterpiece,4K,best quality,high detailed "} +{"id": "7003567", "video_name": "9f81ed9e-39f0-5e69-bc2a-48aef40351d3", "text": "show large, firey solar eclipse corona, silhouette of earth, ultra realistic, 8K "} +{"id": "1005354", "video_name": "627f81aa-7649-59b9-a91f-5f0f2eb0166a", "text": "close up of adam driver eating ice cream cone "} +{"id": "2006243", "video_name": "872f3eaa-26a5-53ee-87f6-8e9470120e69", "text": "in the rain in the autumn city Message: EXPERT LINE (Font: MODERN) "} +{"id": "4002342", "video_name": "18349bed-b35e-5a8f-9ee4-a491ac3f563d", "text": "Green code lines from the matrix Message: MATRIX (Font: MODERN) "} +{"id": "5001090", "video_name": "696df6f7-8db1-549a-8156-abe57c189c23", "text": "a young magician with a book in his hands walks along the gorge alone "} +{"id": "2005165", "video_name": "7348bfdf-d801-5a3c-8ae6-3c79e6ffb4e2", "text": "porsche 922 full black back tail dark picture for phone wallpaper "} +{"id": "7004768", "video_name": "8ab2ff7c-9b2a-50ab-a5ca-040faaeea49b", "text": "neon fish swimming in an ocean of emerald water "} +{"id": "2006469", "video_name": "7be0e5d4-ed94-5839-bc85-dfad7a48f3e0", "text": "Heavy metal concert, crowded environment, stage lights, stage design, zoom in "} +{"id": "7004700", "video_name": "c1d0d23f-3459-5d41-8725-fcf586061e43", "text": "hunter drawing his bow, aiming at dove who is unaware of the impending danger. "} +{"id": "2006854", "video_name": "ecf41950-d802-528e-b3e9-c31c31b08a41", "text": "sacral chakra in center of temple "} +{"id": "1003997", "video_name": "4a0b96f9-4609-556b-843c-01b1db040d25", "text": "Dive into the deepest part of our planet. The lowest point is Challenger Deep, reaching the dizzying depth of 10,984 meters. "} +{"id": "1003905", "video_name": "48094f15-0e02-5cc8-abe0-f153e2170d34", "text": "animate the fog coming off the lake in the attached image. "} +{"id": "7002357", "video_name": "c4afd603-d795-52ca-8f77-47dc885a1d33", "text": "a glass vase cracking because of the cold. icey frosty translucent raytraced photorealistic cinematic "} +{"id": "7004492", "video_name": "58bc2cd1-4e16-5ef3-a6e1-8e96def9f8e8", "text": "dune movie character back and white faces in desert wind "} +{"id": "2005071", "video_name": "24b8e081-d4d7-562b-9183-4cb6d63e22b1", "text": "Yodawgee the talented Husky surfing on big waves in Hawaii "} +{"id": "0006021", "video_name": "25277438-b78a-50fc-964a-b55c4e6e533b", "text": "The vivid dream of Purnachandra th Indian kid hearing the distant shouts and seeing people running in panic, Studio Ghibli "} +{"id": "0006168", "video_name": "279aeb96-7686-5771-9bca-d2db778070ad", "text": "princess with long dark hair, dancing, IN front of Hello kitty near the mountain, cinematic "} +{"id": "3003410", "video_name": "bb078d57-133b-50e8-be24-1b484635d097", "text": "a beautiful goddess in the middle of a lake "} +{"id": "0003364", "video_name": "3c496800-4b34-59af-adfe-f52d03cacad4", "text": "In a small village surrounded by green rice fields, a pair of identical twins named Aisha and Ayesha woke up from sleep before maghrib prayer. "} +{"id": "0003082", "video_name": "36b44b51-f436-5bf8-b9dc-b5e9b1472af8", "text": "cartoon soliders dressed in green running in, then an explosion and they turn into dust, neon yellow background "} +{"id": "3005206", "video_name": "adaf685c-3c5c-57c4-8d2a-5828a614a8e4", "text": "a beautiful Japanese anime waifu,future mechanical armor suit,angelic face,devil figure,First angle, full body portrait,rising light,cinematic,photorealistic,Canon5d "} +{"id": "1006490", "video_name": "76d91ac2-08f3-5325-a347-87759f158f3c", "text": "woman doing relaxing massage for 30 seconds "} +{"id": "5001058", "video_name": "558b9ae0-cccf-5ff6-8b92-58d6302121ae", "text": "clouds moving gently in a breeze Message: TE AMO ELIANA (Font: MODERN) "} +{"id": "1005764", "video_name": "6a015c58-4495-56f0-86fe-660438a0d681", "text": "model in a classic boudoir setting, capturing the elegance and sensuality of the lingerie with soft lighting and luxurious props. "} +{"id": "8003214", "video_name": "c434fea9-6391-5f86-b7e3-01292a2dc18f", "text": "a man on a mountain in 70s art house style, mid format, there is fire on his feet, and colorful flowers "} +{"id": "5001401", "video_name": "d3b8477e-5d09-5309-b1dc-aaa6c3d18ad1", "text": "Yellow LUMI cartoon in the midst of people in a subway. "} +{"id": "7002683", "video_name": "c1dc70cb-6172-5b1c-909b-88fd92fee400", "text": "Rapid transitions of an enigmatic mask, overlaying eerie shadows. Quick cuts create an air of mystery , Ghibli studio style "} +{"id": "0003104", "video_name": "371295c6-5489-53ff-a00c-c4be269faba4", "text": "The video opens with the protagonist, portrayed by the singer, sitting in an ordinary room. The lighting is cold, and the walls are neutral. The music starts softly, creating an atmosphere of tension. The guy seems nervous, constantly checking the door and looking around. "} +{"id": "2007505", "video_name": "188bd04b-f3e9-5517-9589-601b4f2f4727", "text": "kneeling man looks up at the sky "} +{"id": "0004542", "video_name": "0ae3251e-7d36-5b1d-994b-0466bd8ecdaf", "text": "Elon musk praying on his knees for forgiveness in at the feet of powerful female robot warriors "} +{"id": "2005812", "video_name": "6566a499-fd81-5430-a8af-7c399a24d8bc", "text": "The interior was as ominous as the exterior \u2013 dusty furniture draped in white sheets, faded portraits with eyes that seemed to follow her every move, and an unsettling silence that hung in the air like a heavy shroud. 4K Resolution, Cinematic, Camera Zoomin "} +{"id": "1003515", "video_name": "40e9ad14-afaf-532e-85c4-2dbca7680c7b", "text": "An animated film inspired by Mickaelangelo art with flowers, angel, fairies and the god of citrus doing a cult ceremony dressed in a monarchy "} +{"id": "2006184", "video_name": "4f783925-5596-53f2-b496-84f4b9565c1d", "text": "a beautiful girl is running to me "} +{"id": "2004070", "video_name": "05514e50-9749-5c7e-b21e-aa5b5a93b7bf", "text": "People crowd is walking through the forest. golden hour. shot from a distance "} +{"id": "8001184", "video_name": "5f5f8b71-5b46-5463-bb3a-807fc99529b4", "text": "a fisherman on the river near the boat catches fish "} +{"id": "7004938", "video_name": "97ac7cb2-2eb5-5b9e-b24b-0f9106c1ca4c", "text": "Terracotta Warriors and Horses using smart phones "} +{"id": "6004351", "video_name": "7c714537-498c-50e9-adfe-c75fda6d6525", "text": "1968 aliens attack, evil, fight scene, Stanley Kubrick style, 35mm, "} +{"id": "8003111", "video_name": "74de7fd6-388a-5bf7-b6f6-7c7301255f2d", "text": "Long, long ago, at the end of the rainbow, there was a magical place called Rainbow Land. This kingdom was filled with various fantastical creatures, but the most special ones were the little wizards. "} +{"id": "2003001", "video_name": "af48ae60-7f97-5eb1-850c-3b59b80c2a9a", "text": "Cute disney cartoon style, pixar film. Elijah from biblical times preaching to the people. 3D render, product, anime, 3d rendering, poster, photography "} +{"id": "0005439", "video_name": "1ad0616c-eb6f-505f-bc8e-374f29a09208", "text": "wedding, two bears, honey, by far vision "} +{"id": "6004236", "video_name": "936351e5-9a31-597e-b278-330035dbafce", "text": "a very interesting man doing things very Focus on his job 9:16 "} +{"id": "6004083", "video_name": "7709deab-9035-5ba6-8e50-ffb2cab70223", "text": "luxury car driving on the road in mountains , cinematic , epic , dynamic, top view, high detailed, sun leaks, filmic "} +{"id": "6004590", "video_name": "e92ee271-4b90-5c74-b454-6bc36d5c7428", "text": "1000 people moving in a form of an arrow "} +{"id": "3005886", "video_name": "ca1445bd-a397-5226-94db-4fba7cc6caaa", "text": "python programming language logo, cyberpunk like with lightning strikes on top "} +{"id": "8001155", "video_name": "61e8eb41-39f3-5e6c-97af-36aa983bb3ea", "text": "Girl in red dress and boy in red shirt and shorts holding hands in river in cave "} +{"id": "4004733", "video_name": "55943fdb-5fc3-5bd0-be08-fd305c4a86d5", "text": "Goddess Aphrodite, Ancient Greek Gold Dress, Furious Full Body Look, Raise One Hand To Point In The Air "} +{"id": "0004497", "video_name": "09ee7af9-6ec9-5667-a146-c8c39b2eba48", "text": "The longest day in the northern hemisphere "} +{"id": "6002998", "video_name": "e91bd944-b5ec-570b-a856-af350229a2ca", "text": "teenage boy whith brown curly hair who is sitting next to digital model of person(from computer) they looked to each other,detailed, very good quality photo, profetional "} +{"id": "2004785", "video_name": "a7df83ba-796b-5155-bb70-c47a0778d4ef", "text": "A beautiful woman bends down to fish the moon in the water by the lotus pond, classical Chinese painting style, 3D, 16:9 "} +{"id": "2005417", "video_name": "c53bd71a-ddf2-5d63-bf64-0d6e79b6da69", "text": "water float right and left realty "} +{"id": "3003664", "video_name": "87ce5f40-288a-5c59-94e5-c77a9260f123", "text": "A movie producer in the 1940\u2019s counting stacks of money on his desk and a very sexy blonde secretary at his side .The studio is named Prelude2Cinema. Include a movie poster on the wall and a movie camera from the 1940\u2019s "} +{"id": "0004638", "video_name": "0c662239-d71e-5e17-a732-056b2b792c59", "text": "A mysterious alchemy laboratory appeared in the night, with stars and distant lights reflecting on it. "} +{"id": "0005346", "video_name": "1932d8cf-b712-526d-b005-932c0083960a", "text": "Alert and focused, the dog, with his distinctive coat and wise eyes, turns towards a rustling sound emanating from a dense thicket in the forest, bathed in suspenseful light. "} +{"id": "0003628", "video_name": "40c0b4ea-2b55-55ba-9c06-d9df7ea4cef1", "text": "A lively Indian street food market with colorful stalls, banners, and a central chaat stand, bustling with activity. "} +{"id": "0004624", "video_name": "0c1d497c-d312-5ec2-8e67-bf404f892d74", "text": "image of kerobin angels with flaming swords, protecting the tree of Eden "} +{"id": "4003310", "video_name": "3e2681f3-378f-5dc8-99bd-72ff723f3f35", "text": "interior design a home 145 meter dimentions "} +{"id": "8001945", "video_name": "9ded0e46-15f5-5530-8b0b-0e8c60ba76ad", "text": "an alien invading the earth with people running "} +{"id": "1003889", "video_name": "47bb8b63-2b44-5cf5-930d-9b86275546bc", "text": "a minecraft dream playing in minecraft "} +{"id": "8003022", "video_name": "9c4f93f4-9305-5f14-8c73-b02f1f4a81ae", "text": "warren buffett sitting and sad on charlie munger passing away "} +{"id": "8002919", "video_name": "540b86c9-3190-5264-92b4-8946ba483194", "text": "a little cartoon baby girl she skipped and she hopped, with her friends by her side "} +{"id": "3005096", "video_name": "17afc7d1-3e3d-55ee-91b0-d970b8367168", "text": "beautiful college girl rolling her eyes at classroom table while writing with a pencil and note book "} +{"id": "5001852", "video_name": "73ae164f-defc-57c7-8481-4f804fd25cdd", "text": "santa melting in the sun like a vampire, polaroid vintage "} +{"id": "6003651", "video_name": "4da6384d-97e7-55d4-aa03-b91c48b17e9d", "text": "cute pugs playing in the mysterious forest "} +{"id": "2003587", "video_name": "976922d3-5486-5af2-988a-7229f6af95d9", "text": "give me a video that a people standing on the beach "} +{"id": "1003101", "video_name": "3921887d-01a2-5a76-b362-70a7e785dfe1", "text": "a cloak made of a nebula "} +{"id": "2005311", "video_name": "ce57c999-e964-5119-a315-da7dba1e7821", "text": "Generate an image of a bustling coral reef with a variety of animated fish in bright colors. "} +{"id": "0006032", "video_name": "255f26a0-18ac-577c-85c0-bdbd9f624e8c", "text": "opens an old chest of bones "} +{"id": "8002320", "video_name": "294455c4-3e8b-5a3f-b04b-fbff03a39183", "text": "boyfriend Alex and girlfriend Emily, accidentally bump into each other while reaching for the same book on a shelf. "} +{"id": "1004195", "video_name": "4d8dc084-d2ed-5d6e-9440-6c4e86872a19", "text": "close up shoot of the shocked faces of a fox and a squirrel that turns into a wide smile, cartoon style "} +{"id": "5001599", "video_name": "a17a2abc-3a94-5a1f-a564-663d3e295ccc", "text": "recep tayyip erdogan is dancing with arabia king "} +{"id": "0006002", "video_name": "24d8b114-0c70-5af4-a3d8-3a92e2f7fd55", "text": "Open with an epic aerial shot of the Pokemon world, showcasing various landscapes, cities, and Pokemon in their natural habitats. The camera zooms in on the tranquil town of Pallet. anime style "} +{"id": "4002159", "video_name": "c0f82788-bd62-5968-a8d8-7ea4798525a9", "text": "the wind carries many banknotes stacked in piles (fast movement). "} +{"id": "2007215", "video_name": "d36b21fa-517c-5c03-9e72-3222f3e5ba94", "text": "What everyone competes for in investment is cognitive ability. "} +{"id": "0006886", "video_name": "34c203c9-8e90-5ead-a610-c9f669697262", "text": "riding on my motorcycle in the night through a war damaged town "} +{"id": "1004177", "video_name": "4d547346-d382-5582-b423-175a64262bf5", "text": "60s cartoon style photo of a weeds wearing underground clothes in far off galaxy, style of Hannah Barbara, studio ghibli, akira toriyama, james gilleard, warner brothers, trending pixiv fanbox, acrylic palette knife, 8k, vibrant colors, devinart, trending on artstation, low details, smooth "} +{"id": "5001445", "video_name": "1c8ed0ad-b7f6-5249-b886-c833ba4d95ff", "text": "And so, in the heart of Evergreen Hollow, as the first light of Christmas morning painted the sky, Santa Claus reflected on the extraordinary journey guided by the Christmas Star. Little did he know that the magic of that night would linger in the hearts of children and adults alike, creating memories of a truly enchanting Christmas. "} +{"id": "3005960", "video_name": "93e9c629-89a5-5d07-b18b-14702d42ae20", "text": "In a dark, narrow alley, the dim light from the streetlights reveals a distressed girl running nervously, the sound of her footsteps echoing against the brick walls. Sinister shadows of mysterious men, cinematic, 8k, hd, Ultra realistic "} +{"id": "1003356", "video_name": "3dd91aa3-ea07-53dc-a87c-548925ae21a7", "text": "dingo plays trumpet through multi effects and a computer setup with a modular "} +{"id": "0006541", "video_name": "2e6c8079-e71b-5bfc-ae42-c154d4c4aff8", "text": "A small dinosaur the same size of a chicken walking next to a chicken majestically across vast landscape.pixar style "} +{"id": "1003855", "video_name": "470c28eb-477c-583a-8248-69ef38fc2f82", "text": "a mother telling her children some bad news and the children are devasted "} +{"id": "2005136", "video_name": "a52f0c39-f384-515a-b4c1-491fa5010d34", "text": "A beautiful girl kneeling in prayer in a magic forest spotlight, Illustration Stained Glass, sophisticated color, award winning By Rebecca Guay, by alfanse mucha "} +{"id": "6002634", "video_name": "7f394e7f-751c-59a1-9bef-7b614556d207", "text": "The sky, very cloudy, realistic style, colorful clouds "} +{"id": "0004671", "video_name": "0d0a563d-7b64-5392-8cbc-ce51ab3fd736", "text": "Dj surrounded by cool men and women in a lounge atmosphere. Anime style, high resolution "} +{"id": "7003963", "video_name": "15c7d6ac-c37a-5b53-b2a1-68bf814a1f77", "text": "People in disco, some people dance, some people talk, some people drink, moonlight atmosphere. "} +{"id": "6003363", "video_name": "71d303d5-33d9-598e-ad4e-a83526d00d2a", "text": "A cinematic masterpiece showcasing the horrifying sight of zombies roaming the streets of New York City, rendered in stunningly realistic 4K resolution, capturing every gory detail "} +{"id": "8002526", "video_name": "cdd3dae8-91ba-5c1e-9a13-58e89ab64e98", "text": "illustrate a visual representation of L.A. Confidential Message: 1 Attachment "} +{"id": "2006132", "video_name": "33384fe9-543c-539e-8d01-0c13c80d03a5", "text": "Majestic mountain and forest scene, blue clouds, flying birds, flowing stream, 1080 quality, 16:9 ratio "} +{"id": "2004304", "video_name": "618ff9bf-c4e2-5985-9b1c-fca6822c4051", "text": "Journey to the Dark Depths: Scene: Luna delves deeper into the Enchanted Ocean, discovering the source of the dark force. Keywords: Dark Force, Ancient Sea Witch Morana, Ominous Waters. Resolution: 4K "} +{"id": "4003180", "video_name": "5f5645ec-fe75-5b7a-b4c2-2350eeb9f8c0", "text": "little elephant in a jungle, hyper realism "} +{"id": "0004856", "video_name": "105d3e76-dbc7-5e35-a552-c9de845eec9e", "text": "A moment of decision as the stranger offers the poor man an opportunity that could change his life. "} +{"id": "6004041", "video_name": "f52d7505-778c-51c8-ab04-91b721f5a63b", "text": "The male and female protagonists walk hand in hand under the starry sky, relaxed and joyful "} +{"id": "6004708", "video_name": "b56db397-6ce3-52bb-8709-15117cf40031", "text": "inside berth of Indian railways, two students sitting and one shouting at other having injury on hand "} +{"id": "2007155", "video_name": "ff6e783f-a17b-5368-8a49-8ba3bd240b3f", "text": "a beatiful brazilian girl in a paradisiac beach, clear blue water, white sand "} +{"id": "3003951", "video_name": "bcb13874-f344-5316-86d6-a3527b28b678", "text": "paranoid critical method zombie running down future dystopian city street "} +{"id": "0006307", "video_name": "2a683dc4-0781-55dd-b398-cc07661852b4", "text": "Rapper Gone Fludd makes cotton candy and then eats it "} +{"id": "4003722", "video_name": "16276ded-6337-58c6-bfdc-02532d16b3dd", "text": "large group of people celebrating outside "} +{"id": "8003366", "video_name": "33ef31cf-c7fd-58ea-aedb-5d797dde3d2a", "text": "Middle aged romantic couple of handsome man and brunette woman holding hands on sunset beach "} +{"id": "6002720", "video_name": "9bdd2a70-315e-5925-9c41-04e1cd78ecb2", "text": "A young boy, worried expression, glancing at the school building in the distance "} +{"id": "0005420", "video_name": "1a8cefef-085f-549f-8df1-8a8336e15289", "text": "Children are blinking their eyes and dancing in realistic cartoon style 16\uff1a9 "} +{"id": "1006072", "video_name": "6f6c55f5-48d0-50cc-bed2-a65ec03046de", "text": "a clock showing the word life o clock, life motivation "} +{"id": "2007288", "video_name": "75095a32-26d5-51a3-b463-60f2b6358a8d", "text": "that you see entering through the eye a surreal 3d landscape "} +{"id": "2004718", "video_name": "7fa00e96-a405-5f5f-840f-515065a31998", "text": "rainy day in sub urbarn area couple walking under the umbrella "} +{"id": "3003544", "video_name": "600c9bff-fd54-5455-b6a9-b1f9f06af940", "text": "Visual representation of someone expressing desires through symbols and the process of control. "} +{"id": "1003780", "video_name": "45cabe91-0bc3-5a29-90d4-fe243bf2f5c6", "text": "At the center of this idyllic scene, we find our protagonist, Emily, a fearless young girl with chestnut hair and bright eyes. She wears a red woolen jacket and denim jeans, and holds a lantern in one hand. Her expression reflects a blend of excitement and determination, a clear indication of her bravery. "} +{"id": "0004060", "video_name": "027ecd92-b46a-5352-83ec-db5fea8b606d", "text": "Tom Cruise eating chicken caesar salad with Lord Xenu "} +{"id": "5001142", "video_name": "0b602122-cdf7-5661-9773-6a0464bcc7a9", "text": "10 seconds making the pizza dough "} +{"id": "7002448", "video_name": "ee86905d-2f07-5eea-8034-0385f14f4a55", "text": "One day, a brave young traveler decided to climb the mountain and seek the wisdom of the master "} +{"id": "0003381", "video_name": "3c9ab04d-efd6-5c8e-8b38-3ef7434ae0fe", "text": "a thousand people with their arms in the air in the sky "} +{"id": "2006288", "video_name": "db1c48dc-d66d-5e7e-b322-3f306239699d", "text": "Revolution of 17 in Russia, people in historical costumes on green background, chromakey "} +{"id": "3003552", "video_name": "30c1fda9-bc42-545b-b331-de59326ae864", "text": "a cat walking on the desk, watching the camera, cinematic ilumination "} +{"id": "6004443", "video_name": "86f3341b-a5a0-563e-9d5c-e71077e8bd0d", "text": "In the depths of binary cyberpunk dreamlike,85mm,high resolution,8k, hd,full colour,8k,high definition,render octane, fine details, "} +{"id": "8001114", "video_name": "fdb55046-6f07-52d5-a75c-11e2e63ca1cb", "text": "salesman fishing in aquariums, each aquarium is a customer, one is a mechanic, the other is an auto parts company, this environment needs to have trucks "} +{"id": "0006093", "video_name": "267d4499-57a6-5145-8f20-c044cae36e36", "text": "30 october exl Imagine a picturesque scene where someone gazes towards the horizon, their eyes filled with curiosity and their heart full of dreams. Around them, nature celebrates in all its splendor, inviting exploration and discovery. With this image, convey the spirit of adventure and the determination to explore the surrounding world. Message: EXPERT LINE (Font: MODERN) "} +{"id": "0004412", "video_name": "0874c6fc-f929-53b6-8ac5-01e89aed0fe7", "text": "the exoplanet 51 Pegasi b orbits its star "} +{"id": "2003518", "video_name": "2eec3490-9f90-58f8-8d02-8bba211cf992", "text": "realistic girl holding mic in her hands and singing "} +{"id": "4002750", "video_name": "13a1d84b-a9a1-51a2-bbd5-7ae8873d49c3", "text": "A man carrying a sword rides a horse on an ancient road "} +{"id": "2005847", "video_name": "f8effbfd-208e-576f-a491-b4cc02028110", "text": "make the man walk in the street "} +{"id": "2003882", "video_name": "f9dca655-8fc8-5148-a396-c6640bb773b5", "text": "video of a Queen in Gown, unreal engine, cinematic, mystical, 32k, UHD, Pixar "} +{"id": "7004770", "video_name": "969da1b7-d767-54a4-8a9a-ecb2c614be41", "text": "a steampunk city, with raining clouds Message: Rodujo (Font: MODERN) "} +{"id": "7003691", "video_name": "b157101c-131e-5a01-b521-6edcee1617be", "text": "India Winning World Cup Final Celebration Of Player "} +{"id": "0003158", "video_name": "383eb928-1061-54e9-9417-85adddd6e45e", "text": "beautiful girl looking a flower in the garden.zoom in "} +{"id": "1004359", "video_name": "5083613a-6f58-5519-b951-6f8d6a1110ec", "text": "a river flow nearby a litter villiage "} +{"id": "0004694", "video_name": "0d6cd1f0-6f1b-5e41-a157-e9d7e0bfdfde", "text": "desert portal with pyramids, movie scene, futuristic, cinematic color palette 8k "} +{"id": "6003837", "video_name": "af74bbcb-367a-5847-b78d-a188eae22713", "text": "HD photo seen from afar, futuristic operating room, a cyborg man with a Caucasian human face is lying down and is operated on by dozens of flexible wires and mechanical arms operating on him, fast move "} +{"id": "2006225", "video_name": "5dbb97ea-5d66-5c91-889e-4aa42b22dddb", "text": "soldier with ultra realistic suit holding a technological artifact "} +{"id": "2005674", "video_name": "b7a1aad0-1c1b-52cb-944f-474e333d8efd", "text": "The motivation for destroying the prominent Houses of Parliament came about following decades of religious war between Catholic and Protestant groups going back into the previous century. "} +{"id": "2006558", "video_name": "3f7634d0-e576-591d-82d5-50cdb463c0a6", "text": "a man looking into a well "} +{"id": "1006470", "video_name": "766df502-00b9-5368-9d68-3ccf0b16d647", "text": "footage green background wallpaper for phone animation 4k hd "} +{"id": "7004369", "video_name": "65fc2f75-73bd-5c07-a312-2e85d2578899", "text": "snow, bear, sled, ice cream, sweets, chocolate, candy, snowy mountains Message: ice cream (Font: MODERN) "} +{"id": "0004894", "video_name": "110e8fb7-8c2d-52c7-b465-5b6dfcab2678", "text": "attractive anime boy walking down a sidewalk on a rainday in a city "} +{"id": "1004294", "video_name": "4f742600-d94c-5adb-a30f-8500125cf7c8", "text": "Visualize the setting of a serene lakeside scene, with the sun beginning to set, casting a warm and golden glow across the water. "} +{"id": "4002542", "video_name": "c9a9ba70-b076-54bc-b492-292fb0f159c1", "text": "an explorer standing infront of a big golden mushroom forest "} +{"id": "1006417", "video_name": "757d7fc7-3730-52bd-a44c-43c86cd40d78", "text": "angler fish flying in kitchen, explosion of colors, pastel color scheme "} +{"id": "3006251", "video_name": "cf78ed90-0b0e-57a9-a094-1196d0a39fc1", "text": "handsome me fighting with sword and holding a baby "} +{"id": "0006419", "video_name": "2c0c38a6-b571-51b3-bd4f-f2b3aa4c6be3", "text": "Rajiv and Ravi entering the old mansion, its large doors creaking open on their own. "} +{"id": "8002589", "video_name": "0e49c714-f965-5051-b95f-af0d9fdd92c3", "text": "black and white opening to gigantor anime adaptation of Tetsujin manga "} +{"id": "4002618", "video_name": "baa60ecd-6289-5e89-b7dc-9fe5d9c57676", "text": "A tan dachshund in the field Message: Nino Perro (Font: RETRO) "} +{"id": "3004702", "video_name": "5dbf8e1f-2021-564d-820a-9b2381f48089", "text": "Landscape of puddles with leafy trees while torrential rain and thunder is seen in the clouds in the distance "} +{"id": "5001478", "video_name": "5407cd35-4824-57bc-b778-9f806838d6f9", "text": "An old 1970\u2019s arthouse film about Cosmo girl, a fictional glittery character that has black eyeballs and wings like angels. standing in feild "} +{"id": "0004331", "video_name": "07478a46-f6a7-56eb-8bc9-3e6431a901f5", "text": "People vanish without a trace, leaving behind only fading memories in the minds of their loved ones. "} +{"id": "2006319", "video_name": "93633af4-3140-5c2f-b5a0-1b2eeecbac9a", "text": "But what truly sets Mansa Musa apart is his immense wealth and influence. "} +{"id": "6004954", "video_name": "10299332-563b-565e-9799-7a5e9cae9587", "text": "A lion Cub playing with butterfly "} +{"id": "4002962", "video_name": "079da179-589b-5da6-aa43-778d02c03e6c", "text": "cinematic, caveman walking out of a cave, over a sunrise. "} +{"id": "7003000", "video_name": "832bfb69-84f3-5a13-9910-b4351cfd7bc3", "text": "the sunset with lights moving, caleidoscopic, trippy "} +{"id": "2003258", "video_name": "1706151b-b913-58f2-829a-cf4fcee23f48", "text": "a new england waterfall with turning leaves all around in digital format "} +{"id": "0004329", "video_name": "0743ed3b-5baa-5a97-9d07-c7f6bf6e629f", "text": "A boy walking towards his school, shot taken from the top, cinematic, hyper realistic, 4k, unreal engine, high detailed, ultra realistic "} +{"id": "7003820", "video_name": "f2a86a3d-08b7-55f2-99e6-557bd40262c5", "text": "City street at night, busy, people walking and eating outdoors, rain "} +{"id": "1004048", "video_name": "4b13cde0-f278-571a-a6b6-555efabdc7f6", "text": "cinematic car explosion in slow motion, HD "} +{"id": "2004269", "video_name": "9037177f-4bd5-5c89-a4d3-ab6321644b37", "text": "Wuxia action film, a man and a woman engage in a sword fight in a bamboo forest "} +{"id": "2004372", "video_name": "0c105ac4-bc8c-521e-9da5-f9e8d302e3b6", "text": "Hello Kitty and Kuromi at the dental studio getting permanent Gold grills fitted to their teeth, high detail, film grain, shot on old film camera, edge distortion "} +{"id": "3003557", "video_name": "d344f8b2-b1cd-5140-a144-d51206ac0238", "text": "the most beautiful dog in the world "} +{"id": "3004306", "video_name": "a5746341-7b8f-595f-aada-05010b01c40c", "text": "There is a plate of scrambled eggs with tomatoes on the kitchen table "} +{"id": "0003056", "video_name": "36410757-1ac0-58cf-9dd4-3d6322ae8f68", "text": "beautiful dancer dancing with long skirt, 4k resolution. "} +{"id": "0004400", "video_name": "0845909f-9ca5-5b15-85d6-7cc09f72bda8", "text": ": the couple in the center walk toward the camera "} +{"id": "4003100", "video_name": "1d4d1cb1-0a7d-5682-898d-9adfb51f44d5", "text": "a Mario brothers plumber driving a van "} +{"id": "3006687", "video_name": "0a74c93b-481f-5635-b277-591168fc16d6", "text": "helicopter hovering over ice cream factory "} +{"id": "1004540", "video_name": "5456313b-928e-506d-a6f0-a38b277fe3f6", "text": "a muscular man with a cyberpunk exoskeleton lifting organic boulders overe his head. 3D render, cinematic, art deco, bahaus style "} +{"id": "1003059", "video_name": "383bb847-a662-5a7e-8a73-78d17975e8a2", "text": "A bamboo slowly releases clear water, flowing onto a surface of pristine water. "} +{"id": "7002724", "video_name": "3750f7ff-103e-54e2-9aa1-b5eac5855e35", "text": "Waves, wind, bright moon and zoom "} +{"id": "8003395", "video_name": "731ce775-5149-5b25-9183-d0f43be4ee1f", "text": "person writing a book at night. Seated up a desk. Lamp lighting up a dark room "} +{"id": "7002013", "video_name": "c037c272-31ed-5a0d-a4db-8d14093ba146", "text": "A multitude of small fish gathered in a circular formation, gracefully swimming together with synchronized movements. cartoon, no background "} +{"id": "2004787", "video_name": "ddc2a499-3796-5ed8-8b2c-1f2d827399eb", "text": "A beautyfull woman named Kajol in blcomy looking at the moon, stars, flowers, cinematic lighting . "} +{"id": "5001392", "video_name": "0c48dc38-1a2d-5f8c-990f-8504e4f51601", "text": "a man on fire, 1980s, horror "} +{"id": "2005828", "video_name": "0312ca8b-0d27-5c50-9523-8f38381c7b66", "text": "A huge dog eating an elephant "} +{"id": "6002648", "video_name": "16f3da0a-1aea-5eb1-a3a1-8aad8831c4f2", "text": "a little girl with pink hair and an apple in her hand "} +{"id": "1006658", "video_name": "79faeeec-1f89-5093-a069-71dd1c48fd55", "text": "Ball girl throwing tennis balls to Novak Djokovic on centre court at the Wimbledon mens tennis final, cinematic, perfect face, 8k "} +{"id": "2005888", "video_name": "8e211505-f39f-54e1-923b-4b3f3dc60658", "text": "a Turkish man looking at a spaceship in the sky with an amazed expression,style cinematic "} +{"id": "0004115", "video_name": "037a0170-44e3-5ff7-8f47-0d9d89ed84d5", "text": "moana and maui playing xylophones and drums with monkeys dancing in the background "} +{"id": "3005593", "video_name": "9a17b675-13a9-5156-9b05-3ee5a1369feb", "text": "there is a blue bicycle with a basket of flowers on the front, flowers are moving with heavy wind "} +{"id": "8002805", "video_name": "36cf80f7-6141-53be-b867-227e99cbaab7", "text": "children spinning a roulette wheel to win prizes "} +{"id": "6003014", "video_name": "59eadb30-737b-56b5-a62f-1e282c569295", "text": "a firework coming from sky to ground "} +{"id": "4004717", "video_name": "5ade93bf-dfdd-5c26-a94f-acdc30bfd4a9", "text": "Orange toned kitchen, size 16:9, realistic photography style "} +{"id": "4002399", "video_name": "4f189fab-17aa-5d88-aab3-ce6dcb1cc43e", "text": "A man walking in a inhabited desert,No he finds another man who is hurt "} +{"id": "6004832", "video_name": "3c6d69c9-cbbe-5be5-bc49-ca3ab312b2ac", "text": "slow motion hair blowing, person to smile, pigeon to look around "} +{"id": "2006831", "video_name": "bdf38a50-8f5c-5d10-bf78-b2f266f9a500", "text": "red glowing window cracks and shatters, photorealistic, high definition "} +{"id": "8003430", "video_name": "3b349c72-8f07-5571-9b70-a956f5a1409a", "text": "The mermaid in love takes her human love, to live together forever. "} +{"id": "7003050", "video_name": "ec5ce915-e291-595d-ba5a-8b26c9bd7335", "text": "Generate an image with a lot of movement that reflects the meaning of the phrase: cell number seat number size number "} +{"id": "6003641", "video_name": "dd26b45b-4e31-5b26-87ab-a5b5a648ac59", "text": "detective girl ,cinematic shot , 3d animation, realistic , 8k , 60 fps , camera motion , location revealing "} +{"id": "1006406", "video_name": "755bd72a-73f9-5102-90a7-de3bfe8afd74", "text": "Craft an evocative portrayal of Krishna, the divine cowherd, adorned with peacock feathers and playing the enchanting melody of his flute, amidst a pastoral landscape resonating with the joyous dance of divine love and eternal bliss "} +{"id": "4002244", "video_name": "8fecc205-568a-5a12-9092-684671969a5d", "text": "Christmas Nativity story , the three wise men travel by camel towards the stable. 3d image animation "} +{"id": "1004377", "video_name": "50da4271-e719-53d1-86f9-59f9f844433c", "text": "The wind messes up the beard of Santa Claus and his little ones, cw camera rotation, cinematic hyperreal "} +{"id": "2005982", "video_name": "3a820eac-c1be-5111-a46b-5ed6e2226d2e", "text": "A beautiful sparkling bright green energy, made of green bright particles shining and sparkling, inspiring, rotating "} +{"id": "2007844", "video_name": "c1453108-abc8-59ea-bcfe-82e0a5d8859f", "text": "Two cute children running in the park "} +{"id": "4002734", "video_name": "4106058b-b492-549a-9e4b-16ab3e639fde", "text": "Latina woman looking in the mirror "} +{"id": "4002473", "video_name": "46e08bd4-a7d8-54d9-ad48-7bd5983de189", "text": "Homer Simpson in a Short video "} +{"id": "3004660", "video_name": "0fd980ea-4878-5949-932a-27564c2fc504", "text": "create an image of A galloping horse against the rising sun on an empty sunny sea beac side , high resolution, real life like. "} +{"id": "5001671", "video_name": "4b3e4c4a-39ea-5786-b44b-3eb4dd9da1f2", "text": "dancing orang utan in the forest "} +{"id": "4004234", "video_name": "79eb9c2a-890c-558e-a0e9-6e66ac610584", "text": "Describe the challenges they faced in the Whispering Woods and how Luna and Blaze overcame them. 3d animation gs 20 motion 4 "} +{"id": "3005494", "video_name": "32110ac4-d78d-57b2-9517-ed020bdcbe9a", "text": "three knights fighting a lizard monster, in the forest, one wizard, magic, medieval, road, fair weather, wielding a sword, isekai, anime ghibi style, non armor. "} +{"id": "7004723", "video_name": "0095d136-6a42-518e-9a87-a3b1e24d20fb", "text": "realistic and gorgeous woman posing for a camera in a photo studio, realistic, detailed, natural "} +{"id": "3004705", "video_name": "015f55a2-3869-5802-b128-16d4a5c39b4a", "text": "create a cyclic realistic video where two guys play a handpan against the background of a fire "} +{"id": "3006955", "video_name": "aba266af-2913-5ddf-85b4-eb656beeda23", "text": "a gril in parchuite her hair blwing by air she is smiling "} +{"id": "1005249", "video_name": "60948ad9-9581-5b76-bbc4-8b71fe22b8fa", "text": "a swarm of Butterflies clustered together in the style of HR Giger "} +{"id": "7002814", "video_name": "f9db84e9-41fd-50d6-8de5-a40362e5186d", "text": "a picture of a strong masculine longbearded man opening wisdom book with a little bit of light in background "} +{"id": "1003463", "video_name": "401a6dc3-07ea-5328-a907-56d15ffc0447", "text": "chameleon dressed in a suit giving a presentation to executives in a board room "} +{"id": "2004236", "video_name": "4cc23bd0-7413-5f42-9362-7ad8cc89c836", "text": "Generate an image of the serene village of Dholakpur, nestled between rolling hills and lush green fields "} +{"id": "1005522", "video_name": "65a5d56a-836e-5078-8176-a673fa693462", "text": "make a coin in the style of the 80s with this image "} +{"id": "0003852", "video_name": "44a349db-1f5f-5ce2-b671-3f808fddf1a9", "text": "The Garuda bird flew high and then came down hard to attack the flag with the hammer and sickle logo until it was torn to shreds epic cinematic 3D "} +{"id": "4002710", "video_name": "c3f7e27b-631f-53af-93ff-97df0ebfacb5", "text": "anatomically correct human heart exploding into a shower of money that rains down and catches fire, full view, black background, 8k quality, spooky aesthetic "} +{"id": "8002628", "video_name": "7016572e-51c6-502b-8d0c-b1e583000bcd", "text": "cyborg in the future with the name alexander santana on its chest. walking in facebook world "} +{"id": "7004923", "video_name": "5bfeb156-a9e9-5389-81c1-26ed0a5a55a8", "text": "a beautiful woman with golden hairs waving in the wind, surrounded by fairy tale forest, feature film, 4k, uhd "} +{"id": "6002681", "video_name": "70d36ac0-198a-5dc5-95d1-27b0bcd59e1c", "text": "the red Lasers through the gray keyboard, at this time an additional language layout appears on the keyboard and the keys come out of the case. "} +{"id": "2004300", "video_name": "1e64b94e-653f-579b-aea6-20fa3cd46b1c", "text": "A surrealistic painting of a floating cityscape at sunset "} +{"id": "1004494", "video_name": "534a8cbc-1c67-544f-a7ae-bed2f68063f1", "text": "most beautiful lucid dream nostalgic dream youve ever had. beautiful views looking over the landscape "} +{"id": "2005702", "video_name": "2778520e-dbbf-5e21-b27a-761a8a8ad390", "text": "bengal tiger wins fight with jaguar "} +{"id": "6003709", "video_name": "f4ca64fa-d933-5b70-a09b-cc446a844cb8", "text": "A humanoid robot giving a speech at a business event about AI "} +{"id": "0005192", "video_name": "16699e1b-fde4-5858-b208-23229e4a455d", "text": "a rabbit and other animal are siting together in deep forest "} +{"id": "8003798", "video_name": "1d43d889-6f74-56db-86e0-befc48837735", "text": "the logo of the oil company is hyperrealistic, worked out in detail, artistically depicted in motion in titanium colors "} +{"id": "0006420", "video_name": "2c0c91b8-b7b8-5336-9bb3-331b3d7092bb", "text": "a alter with old age rum with cigars and coffee "} +{"id": "0005217", "video_name": "16bd3ea3-9b8e-5ae8-89c7-1047b9267389", "text": "a cute little girl in park "} +{"id": "1006628", "video_name": "7989b293-12a9-5718-9d5e-2b5ffe971925", "text": "repentance and releasing the pain of eternal suffering "} +{"id": "6004203", "video_name": "e72cd314-8899-598b-97f1-c1a1f1ff6977", "text": "cartoon dog walking on two feet in a cartoon backyard to his dog house "} +{"id": "1006718", "video_name": "7b161e65-4993-5ff3-ba30-b8dba9a0fb82", "text": "Cyberpunk sunset landscape with a car driving on a highway road in a futuristic city "} +{"id": "8001307", "video_name": "668ccd0f-56ca-51bd-a495-1f42a73e7607", "text": "Holy Mary in a birthday party, realistic "} +{"id": "0004699", "video_name": "0d888549-5163-56e3-aac2-b718c1e77d70", "text": "a recruitment post of english learning class for kids "} +{"id": "0005077", "video_name": "145d78e1-569a-5e7d-9e66-ceda0c0e1db5", "text": "a very cute and happy young women age 21year, perfect figure and highly attractive wearing western outfits coming towards the screen "} +{"id": "1003385", "video_name": "3e598e6b-8cd5-5ebd-b992-95540bc427ea", "text": "a man walking in the beach in the style of cinematographic "} +{"id": "8003566", "video_name": "9df477b6-de29-5bbd-b6f0-7663ef4539e5", "text": "show sign of currency EURUSD and with two lights blinking, left side is Green and right side light is Red. "} +{"id": "0005914", "video_name": "23313066-114b-537d-928b-f317f7bd2dc7", "text": "Moving deeper into the forest, it becomes clear that part of the forest is under threat of deforestation. "} +{"id": "7004538", "video_name": "530ccb41-1e6f-59fe-9556-7b3315f528bc", "text": "A red minimalist sticker with the text saying:\u201dGraforsa\u201d. "} +{"id": "5001793", "video_name": "f50c4a9a-99ad-5006-b1be-78e3a4cbe269", "text": "slight movement of hand, girl asking why "} +{"id": "2003762", "video_name": "3877847a-8767-5cf0-972a-f4233544f8d6", "text": "slow motion, man shouting into microphone "} +{"id": "2007849", "video_name": "ec9c7a7f-c572-5c0e-9792-8a268875e7ff", "text": "a handsome mafia telling the story, and he is afraid , looking here and there, wearing glasses , sitting on chair, hunted place on background "} +{"id": "0004185", "video_name": "04bd6d52-9a8d-5c8a-a1d3-e4fb71da1cef", "text": "With this feather, she could see for miles in every direction, spotting even the tiniest insect crawling on the forest floor or the distant silhouette of a soaring eagle "} +{"id": "3004626", "video_name": "f91ae69d-8607-589b-9770-ff51eea44417", "text": "Scene from Science Fiction Movie, Chloe Bennet runs toward the camera "} +{"id": "3006860", "video_name": "0a76d9e8-2157-55c4-97e3-601e268c7d75", "text": "Denise Richards bathes in the jungle, "} +{"id": "5001856", "video_name": "26635b4d-8274-594b-b253-31c52dbbd24b", "text": "many israeli soliders celebrating the victory in the war on gaza picture fron the back dramatic realistic 8k "} +{"id": "7003253", "video_name": "04deed06-93fc-58c5-90f0-67dbd29ae97a", "text": "An animated female astronaut, with a bright, hopeful smile, gazing at the stars from the window of a sleek space station. "} +{"id": "1003480", "video_name": "40785323-a218-5855-9709-b7a9fb45b668", "text": "bill gates skydiving while playing piano "} +{"id": "7004843", "video_name": "34a0b3aa-85ad-5e89-91b0-0fc41d58fc24", "text": "world spinning in a star filled outerspace "} +{"id": "2005556", "video_name": "296a6e59-a84c-5546-a92e-b1d9e6625b1b", "text": "A new blog is like creating a new universe "} +{"id": "8002749", "video_name": "34456617-83a6-5fdd-acf5-b23bd05e9df0", "text": "ultra realistisches sprechendes Brot. Zoom out. Redshift. 4:5 "} +{"id": "6003851", "video_name": "848c5450-2969-5903-94aa-b013dd4aab46", "text": "A queen got stuck in the middle of the loin in the forest "} +{"id": "1005866", "video_name": "6bf6ea84-9c23-54ff-a485-b1511cf74858", "text": "Our story begins with the discovery of a lost child in the heart of the jungle.; motion 4 Message: 1 Attachment "} +{"id": "7003592", "video_name": "479bdf79-9a50-5361-8b0f-90a158ab459c", "text": "anime character girl with moving hair floating in air without water mark "} +{"id": "1004117", "video_name": "4c45c9c4-1fe6-5ac8-9d62-32f9a4b1cfe0", "text": "A cat in a jacket walks along the sidewalk,4K,60FPS,REALISTIC "} +{"id": "1003841", "video_name": "46cc7ba9-ab78-5a79-9252-1cc7fb037d00", "text": "\u201chospitals, industrial sites, and municipal wastewater facilities.\u201d "} +{"id": "3003621", "video_name": "9b13a393-aa72-5dca-b1b6-6ec3da1b1bfd", "text": "a beautiful asian woman with black hair and blue eyes "} +{"id": "3006124", "video_name": "a0b68096-9367-520a-aa5e-685c6a21524e", "text": "genuine annunaki. Medium shot with clear details of the face. He must look like a real annunaki. 3d render. Cinematic render. Panoramic view "} +{"id": "8002560", "video_name": "98d80199-14fd-5eea-9063-890b5a09999a", "text": "A vast, mysterious cosmic ocean with countless souls on their individual voyages. 3 minute long "} +{"id": "0003946", "video_name": "0053f290-f9b5-5547-9626-13734718fc0f", "text": "The boy and the aliens flew in the middle of the galaxy. "} +{"id": "4003983", "video_name": "cb33722b-e329-5060-86ee-ff63edc167f9", "text": "a boy stand in front of tree, cying "} +{"id": "7003072", "video_name": "009bceba-c742-52d5-8b4d-e0b4de354fcd", "text": "a toddler walking through a village carrying a school bag on his back "} +{"id": "0004028", "video_name": "01c32ab7-4ec3-516e-a72c-70dc0e5d1635", "text": "shepherd looking sky with a bright star shinning showing the manger of Jesus "} +{"id": "6003460", "video_name": "7cbd9b6f-162e-5606-b808-1c4df330200a", "text": "Around her, the room is filled with souvenirs and mementos from different corners of the world, reflecting her adventurous spirit and passion for travel. On the walls, there are photographs and paintings from exotic places she has visited. On the table beside the bed, antique maps and journals are spread out, bearing witness to her adventures. This scene conveys a sense of tranquility, contemplation, and an adventurous soul. The camera captures not only Angelina but also the environment around her, allowing the viewer to glimpse into her world and her thoughts. "} +{"id": "1004514", "video_name": "53c4b98c-d4d1-599f-a6cd-3c6080705f82", "text": "put fireplace and christmas tree next to the picture "} +{"id": "8002791", "video_name": "4626620f-acce-58b7-80b5-dbf5aaa4316c", "text": "The lighting of the stage gradually focuses on the host, injecting some relaxed and cheerful atmosphere into the whole scene. "} +{"id": "2005057", "video_name": "2fea61f4-360d-59b6-8604-c732f8e26fa1", "text": "Maintain oral hygiene and check oral health regularly to ensure that there are no problems with the mouth. "} +{"id": "5001010", "video_name": "925d84dc-d903-5e8b-b3ee-c24952b9e4fe", "text": "bow arrow flying in the sky with magical light in the front of the bow arrow "} +{"id": "2006625", "video_name": "27f6fdf6-0089-5e48-afc5-56985ba290ef", "text": "cute school friends are enjoying the party "} +{"id": "0003682", "video_name": "4198cb01-2bb0-5eae-b21b-424ed22b3eda", "text": "Live action warhammer 40k movie directed by christopher nolan "} +{"id": "1006048", "video_name": "6f1110bb-94d0-5354-bfb8-fa7b7dad8575", "text": "moving through the woods, shot on old VHS tape, 4:3 aspect ratio "} +{"id": "7003515", "video_name": "0fdad7d0-23a3-504b-8507-46265e6c86f3", "text": "Entertainment space. Evening\nChildren playing on the swing\nformat hd. 16:9 "} +{"id": "1004852", "video_name": "59a96649-c458-5649-ba39-4dba54415333", "text": "cinematic shot of zoom in footage, dragon entering Hogwarts, harry potter style, 4k "} +{"id": "8001801", "video_name": "3c861941-6ce8-5d35-bdfb-643c6d563650", "text": "A robot on stage, singing an 80s pop anthem "} +{"id": "3006312", "video_name": "6584cbd3-b37c-569e-8e1c-336a2b0c6197", "text": "Request an image of a serene forest scene with fantastical creatures appearing in the early morning mist.hyperrealistic "} +{"id": "3003469", "video_name": "ac64c016-d333-5257-a2a0-d88d75802927", "text": "a train passing by a river full of huge fish "} +{"id": "1004001", "video_name": "4a133ead-9409-5c7d-ab95-e353cdaf0d5b", "text": "close up of Karl Marx crying "} +{"id": "3005315", "video_name": "6bf52b38-910a-5158-8e9e-25d7d8416627", "text": "3d girl with a bird happy image 1 "} +{"id": "1004838", "video_name": "596a9c83-5dcc-5c28-a1b6-c2334650b501", "text": "change the colour of the shoes from orange to flames "} +{"id": "6003788", "video_name": "c687493b-e7f3-5a39-8952-1d02a1655280", "text": "cartoon anime climbing on money steps to get to the top of a city, while climbing he is batling negativity motion 2 "} +{"id": "1004277", "video_name": "4f1abb71-c89f-5f53-9f6a-2e8bfc77dc48", "text": "Visualize the state of chaos and primordial existence described in Chapter 1 of the Dao De Jing "} +{"id": "4004829", "video_name": "9b178eb0-1eb6-5d8e-a4c6-346600f68bc6", "text": "create a intro video using Intel, Amd, Ryzen, Nvidia, Rog, Aurus "} +{"id": "8002239", "video_name": "6401b614-af32-50e2-8c5f-4f4952066fe5", "text": "Create a visual representation of a roasted chicken in a rustic setting with a background of burning wood,8k, realistic "} +{"id": "1005344", "video_name": "623a02c9-ffc8-5be4-a39d-110706346c7b", "text": "man talking on the phone, he is in love and elegant "} +{"id": "3003465", "video_name": "8a10d089-12d1-5634-897b-411ced843300", "text": "Fireworks, lit, blooming, night sky city background placed on the ground "} +{"id": "2003665", "video_name": "60e8998f-4cc5-5fe2-b0a3-853473152dfc", "text": "strange organic microscopic structur ball spider pulsing spinning centered on black background "} +{"id": "0006597", "video_name": "2f4a636a-65b9-590e-90c6-efd39cac5090", "text": "a vectorscope with signals flashing on and off "} +{"id": "4002854", "video_name": "a30898cb-d167-5406-ac24-1263329b1f89", "text": "A group of people inside iron cages in a forest of trees "} +{"id": "3005954", "video_name": "82cd2606-c1df-5705-85c5-13b35216e1ad", "text": "cybernetic panther running through a dystopian futuristic jungle"} +{"id": "3004890", "video_name": "badd3782-192c-5cb9-9e48-c27ed5a40b07", "text": "The businessman is enjoying his new life. "} +{"id": "3004176", "video_name": "c23be487-bfef-57f6-aeea-8c163c0358e3", "text": "film noir, theft, newyork street, camera zoom in "} +{"id": "1004215", "video_name": "4ded606e-8aeb-5514-8f98-9ed6c6dfbe32", "text": "butterfly flaps winds on flower wind blows flowers "} +{"id": "0006151", "video_name": "2762461a-2a8e-53a2-8271-6f3c4abdfaee", "text": "a beautiful woman looking directly at the camera "} +{"id": "0004133", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "man with dreads playing violin in space, high detail digital illustration "} +{"id": "3003417", "video_name": "fe572cf0-ffbf-535f-9f04-0892b6cb3068", "text": "a woman is waiting for the subway and listening to music using earphones "} +{"id": "3006432", "video_name": "348a5534-113a-53c7-8b15-fc33d61229fc", "text": "A cabin in the dark forest.Witcher 3 game style "} +{"id": "2007324", "video_name": "9834755a-c360-53af-8095-3443fddc4073", "text": "a boy walking in the street background is full of crowd and streets are like Mumbai gullies "} +{"id": "1004807", "video_name": "58dea273-50d7-519e-9609-f59451d24ee5", "text": "video 16:9 close up mouth talking at night, blue light, white teeth "} +{"id": "2004710", "video_name": "c8350fde-3c83-577e-892d-09fc7e8760f0", "text": "glitchy futuristic industrial city images every frame should to be a different image, different city really flashy and really glitchy "} +{"id": "1005243", "video_name": "60725adb-8c9b-51f4-b2a3-225fff162ccf", "text": ": Birds fly in from outside the painting "} +{"id": "0004483", "video_name": "09bd0cfa-41b8-5998-a3b7-e1f238226e8c", "text": "anime style, A scene depicting the Sorting Hat ceremony, with Harry nervously awaiting his house assignment while seated at the Gryffindor table. "} +{"id": "7003080", "video_name": "d7833f0f-a6f3-5ac5-838b-83f829493e35", "text": "A rocket blasting off of its launch pad and soaring upwards into a bright, clear sky, evoking the spirit of technical progress "} +{"id": "7004373", "video_name": "44e0deec-e604-55dc-8427-39946a5a759b", "text": "Ork troops on horses marching into Battle. "} +{"id": "2005439", "video_name": "ff958e8c-5573-5947-908e-8bb9eaf7ae21", "text": "a white flower dangling on water, in the style of red and beige, surreal, dreamlike imagery, mote kei, artistic reportage, cryengine, white and red, bloom timelapse "} +{"id": "8001459", "video_name": "29ead879-7ece-5048-b35d-5c851da82432", "text": "M1A2 tank is firing to another T90M tank "} +{"id": "5001795", "video_name": "5339d5bb-6270-5afa-a925-fd0b94ac15a6", "text": "Quick cuts of police officers gearing up with weapons and gear.) "} +{"id": "2006520", "video_name": "080481b5-40cc-5eee-a4d5-7b5a05d0aae1", "text": "Create an animation of a leaf falling slowly from the top of the screen to the ground over a period of 5 seconds. The leaf should have a bright red color and rotate gently as it descends. This animation will be used in a video to convey the arrival of autumn in a natural setting "} +{"id": "2007747", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "Elon Musk contemplating the landscape of Mars in an astronaut suit "} +{"id": "2004872", "video_name": "39414fa3-64bc-5610-8386-af6252161d49", "text": "illustration of a hamster walking on top of a mushroom "} +{"id": "2004678", "video_name": "3f35f446-fbea-5971-9bdd-bc3d2ff2650c", "text": "a beautiful calm day at Mayan civilization "} +{"id": "3006148", "video_name": "fc374099-56fc-523e-8be5-2b1adee33325", "text": "playground at night, there are many cars and dinosaur "} +{"id": "0006502", "video_name": "2d976b89-0a16-54bf-8a10-adc4e6226d31", "text": "queen oh Hira walking in the desert with her ps "} +{"id": "6004466", "video_name": "8a1441ae-d684-5249-8a75-4effffd41923", "text": "a dark room, an almost unrecognizable shape stares back at you "} +{"id": "8001668", "video_name": "10c00015-9df2-5902-804d-9bf83ab0f588", "text": "director of photography behind the scenes on a video production commercial shoot "} +{"id": "2003434", "video_name": "78f7a883-4eaf-5532-88a6-fd11f12b8d79", "text": "Happy and successful man in the middle of the forest "} +{"id": "0003680", "video_name": "41947b5d-481a-56fd-aed9-7f156402fca1", "text": "picture of a village in kerala during sunrise near the paddy fields "} +{"id": "8003503", "video_name": "48048d4c-800b-59ad-a132-460b911c4bcc", "text": "little boy jumping from the sun to earth "} +{"id": "6003726", "video_name": "0386b2c1-ca39-57c5-bd2e-a2baaf8cb567", "text": "The ants were fleeing carrying a lump of sugar and chasing people together "} +{"id": "3005644", "video_name": "6fded791-258d-5ebe-993d-06b416904e99", "text": "Earthrise, 3D, split lighting, 16k, photo realistic, "} +{"id": "5001021", "video_name": "e1e845bd-f8f6-5f93-83b3-3660f2604934", "text": "a video of a cute robot in a pink suit playing a piano made out of bread, floating in space "} +{"id": "7002733", "video_name": "ed0ca6ca-383d-569d-bd21-4fae3f5dd504", "text": "White futurist grande piano on the sea "} +{"id": "3006659", "video_name": "72850798-d859-5991-bc2f-5465c8547c82", "text": "Sun Wukong plunges down at lightning speed. Just before hitting the ground, he halts his legs, and deftly lands with a backflip. The Monkey King brushes off the dust on his body, swings his golden cudgel, and gazes ahead with a mischievous grin. With a swoosh, he vaults up into the sky again, leaving behind a trail of golden light, and heads off into the distance. "} +{"id": "3006403", "video_name": "66e6ac89-b290-5807-ab85-20e6abc3691a", "text": "1920s silent film, 8mm, blurry, expired film "} +{"id": "8002115", "video_name": "f1ca7e9d-6d52-584f-893e-499f3abc482f", "text": "urban city night, busy traffic, music video "} +{"id": "1004483", "video_name": "530ccb41-1e6f-59fe-9556-7b3315f528bc", "text": "A red minimalist sticker with the text saying:\u201dGraforsa\u201d. "} +{"id": "2005891", "video_name": "5e6e51cf-e2b6-5f8f-bb63-ad05a71c550d", "text": "elf water mage creating a wave in a blue river, style: 2D animation, avatar the last airbender "} +{"id": "1005995", "video_name": "6e30609e-1ec3-5c08-ae57-1c5bb8a16bb2", "text": "An old woman crept closer. Message: 1 Attachment "} +{"id": "1005421", "video_name": "63980a61-277f-5b47-a3a3-f0b6a05c5230", "text": "A beautiful female magician wearing a corset, fishnet stockings pulls a monstrous rabbit out of her Top hat, cinematic "} +{"id": "0004597", "video_name": "0baecd5c-0186-5aa7-9486-dcaee898f178", "text": "Describe the heated argument between Ajay and Nisha that leads to the slapping incident. "} +{"id": "7003946", "video_name": "ffd8b882-587a-50ce-85fe-411a1b21f190", "text": "vaporwave waterfall in a plastic forest "} +{"id": "3004635", "video_name": "14529c46-be89-50d6-ad0c-a874541c128d", "text": "Pirate ship aprooching an Island with a large edm party "} +{"id": "5001072", "video_name": "51df3f97-9e42-556f-8b69-0fef889b96d1", "text": "A MAN TAKING OUT SUPERHERO CAPE UNDER HIS CLOSET anime style studio ghibli, vibrant, warm HAIR MOVING SCENE FROM BACK BREEZE "} +{"id": "1005533", "video_name": "65da1879-8298-56bd-b39f-8e5eda5be17f", "text": "beautiful lady standing in the city as an astoriod slams into a building and it collaspe on her "} +{"id": "8002555", "video_name": "ed632300-6ef4-541b-9a96-35d969ad5820", "text": "a spooky foggy forest. The fog is slowly moving "} +{"id": "7003056", "video_name": "227aceea-3a9f-523e-94b8-8a19ef4d9218", "text": "moving, amimation, cinematic, 8k, star wars, android in tatooin, baby "} +{"id": "1004985", "video_name": "5c21e851-af2a-5fc7-a07a-693fd5a362d0", "text": "create a video of indian cricket team with virat kohli is crying to see the celebration of australia cricket team in CWC 2023 and the half of the whole stadium is crying and the rest half is enjoying the win of australia. "} +{"id": "1005633", "video_name": "67924aad-58b6-583b-8b14-9f1a62e1af11", "text": "montage of diverse landscapes: a bustling city with skyscrapers, a serene forest with sunlight filtering through trees, a tranquil beach with gentle waves, and a bustling market with colorful stalls. "} +{"id": "2004402", "video_name": "5255ac3c-df87-5d56-8272-e61086572454", "text": "kids playing with hours 3d animation "} +{"id": "4004309", "video_name": "44305e45-42c7-50ed-855a-b3e939ceed9d", "text": "Five figures clad in futuristic Templar armor are revealed, each with a unique fighting style, Each hero showcases their distinct combat skills swordsmanship, marksmanship, martial arts, sorcery, and technology Templars battling demons with their holy weapons. cinematic style HD, 4k , hyper realistic, "} +{"id": "0005825", "video_name": "21cf75f7-6b16-5d7f-8f3e-bf083cdb40f2", "text": "The future of human migration Hiking "} +{"id": "2003397", "video_name": "34226747-2ff3-59c9-a647-dfa460ebbcd8", "text": "ultra hd 4k a man and women dancing with lots of motion "} +{"id": "7003767", "video_name": "60bad1a1-0ca5-512e-8df9-31ec64c11f49", "text": "1957 movie scene clip, the star of this scene is a teenage actress, long wavy dark hair, she\u2019s wearing a peasant dress, beautiful technicolor visuals, lying under a tree, singing to herself, CinemaScope 55, widescreen, 2:35:1 aspect ratio, extravagant color visuals, technicolor "} +{"id": "1005865", "video_name": "6bf52b38-910a-5158-8e9e-25d7d8416627", "text": "3d girl with a bird happy image 1 "} +{"id": "4003972", "video_name": "3c2ded77-9369-5995-9552-55ca1cb837a7", "text": "Map of Brazil with indication points in 23 states. Realism "} +{"id": "0006582", "video_name": "2efa3582-58b2-536f-83b4-1965f774b1cc", "text": "a robot playing with cat in the moon "} +{"id": "4002167", "video_name": "ad7bc4ca-8b38-5389-8950-ce3d4d29138e", "text": "Anger festered, and the once inseparable siblings became strangers under the same roof. "} +{"id": "0003540", "video_name": "3f392baf-1bd2-58e8-b330-6d936c9b603a", "text": "In the Shadows of Desolation, Fear Claws at the Heart "} +{"id": "6004268", "video_name": "96534963-628f-5476-aa50-bc2727e5af1e", "text": "cybergirl on wolfs back, dark sphere matter, 4k, motion 2 "} +{"id": "3004996", "video_name": "d9373e89-df0a-54bd-9029-7d99fbfa6144", "text": "Gandalf wearing Deadpool suit, he is riding on a whale "} +{"id": "2006019", "video_name": "b9e01e6b-45c0-5a5c-b78e-ce061d6be079", "text": "A girl feeling on tha love at first see a boy "} +{"id": "3005736", "video_name": "2ba28b74-4efb-58f5-b937-165e4157ce82", "text": "cinematic car chase scene with a red car chasing a yellow car over a bridge "} +{"id": "4003482", "video_name": "fbc2b9ed-7a18-5a6b-8caf-877027226fd6", "text": "Poker playing cowboys in an urban city environment Message: Polkacity (Font: MODERN) "} +{"id": "3003447", "video_name": "8ef0a440-836b-5ba7-98ce-bdf666a71d2f", "text": "beach sand, eye level fast zoom toward the distant ocean "} +{"id": "4002126", "video_name": "8c8652e9-b061-503e-ab40-2f9c8f2e1995", "text": "scene shot starting from eyes and zooming out slowly to the point where we can see full male body in black suit "} +{"id": "1004506", "video_name": "5386ec15-3929-5e5d-8d4c-82e218126380", "text": "drawings of little cows grazing in the field and playing "} +{"id": "3003221", "video_name": "87691c99-7723-57b5-861b-2af362e4b0c2", "text": "impossibly high speed scavanged space ship chase through vast derelict space crusiser decomission yard in space "} +{"id": "3004998", "video_name": "aa594e46-b1c4-5342-8ba9-2674c6b8cfa1", "text": "And God blessed man, and God said unto them, Be fruitful, and multiply, and replenish the earth, and subdue it: and have dominion every living thing that moveth upon the earth. "} +{"id": "2004227", "video_name": "df71256b-534f-5dda-bf7b-49aa8fe60f1e", "text": "neon lights fading and sliding around "} +{"id": "5001645", "video_name": "64e2e446-bde2-59cf-b501-e83472907a20", "text": "a lion stumbled upon a trapped mouse struggling "} +{"id": "4003810", "video_name": "128205be-305c-57cd-a093-f0276fa49587", "text": "cooking, Heat ghee in a saucepan and fry onions in it. "} +{"id": "3006981", "video_name": "06ad541b-c962-57d8-8139-a9e666d5ce71", "text": "In a large bowl, combine the cucumber, tomatoes, and avocado. 2. In a small bowl, whisk together the salt, black pepper, garlic powder, balsamic vinegar, and olive oil to make the salad dressing. 3. Pour the salad dressing over the cucumber, tomato, and avocado mixture and toss to coat evenly. "} +{"id": "3005145", "video_name": "125e23da-2feb-5881-9f25-46045c08c986", "text": "protestors abusing oil workers, backdrop oil plant, american midwest, 4k resolution "} +{"id": "1005713", "video_name": "69096b56-3f60-544f-a068-2827aea276b2", "text": "A 3D animation of Israel palestine map partitioned into two, 1 for palestine and 1 for Israel, in documentary style, show a cracking map "} +{"id": "3003650", "video_name": "1abfc839-5551-5bab-a980-286d8314df31", "text": "Naruto charges in with a gleaming Rasengan "} +{"id": "8002711", "video_name": "876899e2-1928-596a-a8c4-f142da7aeca8", "text": "aerial view of a chinese restaurant "} +{"id": "2006528", "video_name": "799dbaf2-bc96-56e0-aac0-1abb766e4183", "text": "abandoned Los Angeles for 500 years, turn into deep jungle, cinematic, bird view, spinning zoom in, realistic "} +{"id": "1003501", "video_name": "40c09a21-ecbe-57d0-b37b-4356ca57ecf3", "text": "Swinging back and forth of the earrings in this image. Message: 1 Attachment "} +{"id": "3005000", "video_name": "ebbbdb75-f373-55af-8215-1a9bad061bfe", "text": "The scene switches to Jinxian Road, where the neon lights at night fill the street with vitality. "} +{"id": "3004851", "video_name": "559e54a4-8098-57bd-a069-aa7c510bc9ba", "text": "the butter is melted on the cooking hot pan "} +{"id": "3003365", "video_name": "44894d57-d2ed-564a-9965-a2b3222aacec", "text": "businessman make money in the office "} +{"id": "1004989", "video_name": "5c3b3a8b-86f7-5503-9086-63eb9319afa2", "text": "Beth me is standing and dancing a Lezginka "} +{"id": "8002229", "video_name": "65147869-4d5f-542f-8ea2-5c917e374e04", "text": "1950s super 8 psychedelic colorful footage of a comet approaching a planet in deep space: we see it happening from a distance, the long straight tail of the comet nearing the planet in deep space "} +{"id": "3005430", "video_name": "a3024cd3-3b1e-5b37-9bf7-e83749c208c1", "text": "Visual: A dark room, a small lit candle in hand. Action: The room brightens with the light of the candle, filling it with hopeful anticipation. "} +{"id": "7003779", "video_name": "30d12d3c-9cb4-525e-a583-b31aaa475fc2", "text": "the street of a big city, people rejoice and dance Message: bazeda (Font: MODERN) "} +{"id": "2007087", "video_name": "bdb93da6-d5e1-507b-a9bf-952716621d8f", "text": "create a photorealistic render of interior design of a modern kitchen with dark colors "} +{"id": "8002281", "video_name": "5aa80ce6-c834-5f72-9930-9488bfa27fbb", "text": "An abstract digital landscape of neural networks, with glowing lines connecting abstract shapes "} +{"id": "6003134", "video_name": "5adb2e72-f49e-5d45-b614-ec0d0737a42a", "text": "Teddy Bear goes through a psychotic episode. Teddybear is screaming at the camera. Shaky camera. Fisheye lens. VHS quality. Message: 1 Attachment "} +{"id": "1004530", "video_name": "54235b70-a560-5871-b83f-c82a5708cc06", "text": "It was a small and timid gazelle named Grace. She had a soft, brown coat and large, innocent eyes In the heart of a lush jungle, "} +{"id": "0005372", "video_name": "19b5314a-ff32-571a-81d6-65532f14cdd5", "text": "As the news of the mutiny in one town travelled to the next the sepoys there took up arms. "} +{"id": "2003466", "video_name": "0429de92-cc38-5d15-a352-d841fb1827c2", "text": "make a anime opening\n\nCalled traveling accross the time\n\nCharacter origin\nCharacter powers : magic, telepathy\n\nHe is a simple boy\n\n5 sec "} +{"id": "3006442", "video_name": "b02854ed-2724-59f9-a598-c1ac59c062f8", "text": "boy sits at the dining table, surrounded by colorful paints and paper. His face is smudged with vibrant hues, and his artwork adorns the walls, showcasing his imaginative expressions. 3d animation style, video dimension 1024x786 "} +{"id": "0005800", "video_name": "216dffca-e76c-5f2e-b8d5-2699385ce8ef", "text": "The face of a beautiful girl with inflated lips. The camera zooms in on the face. "} +{"id": "4002588", "video_name": "1050edd0-8487-5c69-8572-ea30f3a63742", "text": "male shirtless man dancing on swimingpool with salman khan in underwear "} +{"id": "4002945", "video_name": "ad249c63-4ff7-5ded-b74e-bbf1b2e5f8ea", "text": "Black Knight in the Dark Moon "} +{"id": "8001857", "video_name": "26bcea63-a3f8-5fa9-aff7-e1a5efb842b9", "text": "the door opens behind her party on the beach a lot of people the sun is shining "} +{"id": "6004038", "video_name": "917541c3-2e65-5355-b572-467032709ec7", "text": "the appearance of cards, animation, movement "} +{"id": "8001147", "video_name": "aa8da54e-f77c-5685-816b-a246ec56ad62", "text": "indiana jones chooses gold chain instead of cup at end of movie "} +{"id": "7002352", "video_name": "45f86ef4-3d74-52f3-897b-e0975ebaa398", "text": "Urban asset Management: Blockchain can be used to establish urban asset management systems to track and manage the maintenance and renewal of urban infrastructure. It can provide better asset tracking and management efficiency, reducing resource waste and costs. "} +{"id": "1004756", "video_name": "5805b65f-7dc6-5b7c-ab75-0c8a4fcc9e36", "text": "Hackerman feels alone starting at a computer screen after a long day of hacking the internet "} +{"id": "1003038", "video_name": "37c24c91-9a4c-51d0-a7dc-193e7284ecf4", "text": "1960s super 8 footage of goblin in a desert "} +{"id": "7002432", "video_name": "e36c8422-44b1-5dde-98c0-979d91b2cebf", "text": "darth vader in a mosh pit slam dancing "} +{"id": "4002063", "video_name": "47e86d05-2cff-539f-bcb1-1f5cd611c0f3", "text": "a video about timeline from the beginning of time to present "} +{"id": "6002661", "video_name": "4a4d1e41-cc13-50fa-8ec6-fd613a5080cf", "text": "People joyfully throwing colorful powders in the air. "} +{"id": "2003301", "video_name": "b3b6513c-9869-5ad9-8f6f-3b7974f0401b", "text": "there was a tradition in the village of afghanistan that only men were allowed to weave carpets, and women were expected to perform household chores. "} +{"id": "0003305", "video_name": "3b530296-0e95-58bd-ba69-d91f9bfc1770", "text": "beutifull young girl with blue eyes who carries a malteze dog "} +{"id": "5001568", "video_name": "0db79fb7-ac86-55c7-913a-353f6b7b0c8a", "text": "1970s abandon city underground Dallas, style Cold War era "} +{"id": "4002925", "video_name": "733e5a91-c305-501b-914c-e5e72c967c38", "text": "people man on the basketball court blows everything up "} +{"id": "7004072", "video_name": "8129d857-7fe3-5b74-8db5-0b3506a5d880", "text": "prompt:a school front, children setting in bus "} +{"id": "0006030", "video_name": "25596c4e-2368-512a-ab52-0a6d42e50618", "text": "Harish was returning home after partying with his friends, today was the moonless night because the moon was fully out. 3d animated charector "} +{"id": "6003038", "video_name": "baaa3fb7-51bf-5847-947b-1a0d53087f01", "text": "naturally scented cologne for men logo "} +{"id": "0006075", "video_name": "263c7e98-5ccb-5a28-972a-5ca1f184eb7a", "text": "Generate an image of Zara and her friends chatting and laughing during lunch, surrounded by lunchboxes and snacks. "} +{"id": "2003445", "video_name": "3a9f51dd-b1fa-5245-acaf-c5059e4193c9", "text": "Ozark mountains marijuana field Eagle storybook illustration, national geographic photo, james jean, watercolor, hyperrealism "} +{"id": "6004653", "video_name": "a0685ebb-ea53-5f4b-bd3b-b44de92d5a39", "text": "a time lapse of weeks in the jungle "} +{"id": "8002894", "video_name": "4ccf6b1f-cd83-5c8b-81db-6349ddb066b8", "text": "harry potter holding a selfie stick and doing vlogging of himself "} +{"id": "8002085", "video_name": "ce604efb-20ab-508c-ac74-7e71a98ff81d", "text": "Ava decided to set off on an extraordinary adventure to discover the alphabet, from A to Z "} +{"id": "1006304", "video_name": "7367d3e6-9e02-5630-90c3-f225ac6d6551", "text": "afternoon scene, a crowd of fulani people moving forward in Timbuktu "} +{"id": "1003884", "video_name": "47977271-e75f-5ac4-817f-3c19db9bddf6", "text": "Camera from the back. A young woman crossing a bridge through water falls in madrid "} +{"id": "2006363", "video_name": "25f51836-d13d-538b-bce7-4e37dfc35afb", "text": "white background; aquarel painting style; berries and cherries appearing and desapearing "} +{"id": "1006719", "video_name": "7b278032-fcbc-5ae9-b1bf-b06b88256d17", "text": "japanese girl sitting on roof top enjoying the sunset in ligt rain, waering skirt and white shoes "} +{"id": "4003623", "video_name": "5ca4328d-c729-52f8-8a16-ac8cef5100da", "text": "the man is looking at a big tree in the desert, in the style of charlie bowater, afrofuturism, silhouette figures, traditional african art, 8k resolution, elena paraskeva, crimson and bronze "} +{"id": "8003157", "video_name": "7f21c6fc-22b0-5663-b70e-d359e2957b21", "text": "lambo hd realistic going crazy down the road "} +{"id": "6002461", "video_name": "bd49186e-91f5-5c67-8223-b97be398f8ed", "text": "Egypt Empire: Uncover the mysteries of history with our AI platform. Share your theories and watch as they come to life in stunning visual renderings. "} +{"id": "2006413", "video_name": "8a1263be-c5ff-5ca9-a604-7524e672aee4", "text": "against the backdrop of a forest in the fog a runner is running at night, the ocean behind, very atmospheric, silhouette of a big gun, view from afar "} +{"id": "2007528", "video_name": "16c162a1-82b3-58ac-953c-6ab9f1e58ee8", "text": "image of a motivational cover page "} +{"id": "2006446", "video_name": "c76662ee-150f-5eec-a029-0941bcd68ff4", "text": "The spaceship was enveloped by the swirling energy, and the crew braced for impact. "} +{"id": "2007377", "video_name": "346fb352-b7ff-5e20-b993-7e42ce90b980", "text": "leprechauns in a kitchen, nightmarish atmosphere, black and white, 16.9 "} +{"id": "2007221", "video_name": "394b7763-2f4f-5468-aa0d-ea974c09dfb6", "text": "mark zuckerberg punching elon musk in boxing ring, realistic, focus on face "} +{"id": "3005690", "video_name": "3412ac48-4a60-5dc0-af96-4d914a959d9f", "text": "Scenery of a forest in the night, Less windy, Slight movement, High resolution 2k "} +{"id": "3005274", "video_name": "6e2d0790-5800-5895-ad3e-d92c5dcda99a", "text": "where there\u2019s a will there\u2019s a tax "} +{"id": "1005083", "video_name": "5db4b6f4-abbb-5d3d-b38f-a1abcad918ce", "text": "an enticing logo for the online magazine Globala Perspektiv "} +{"id": "1005888", "video_name": "6c46ba76-9d83-504d-b3a3-52aec0eb2a03", "text": "an elden ring boss fading into dust "} +{"id": "2005009", "video_name": "b321cb34-6b41-5b4d-9d10-abef2e15d5b5", "text": "A beautiful woman is washing clothes by the river "} +{"id": "6004656", "video_name": "2742c1ad-b67c-5df2-b23f-536cd3c41be5", "text": "a man wearing an anonymous mask and a witchcraft hat looks into the frame with eyes that glow red and sparks and flames fly around "} +{"id": "0004950", "video_name": "1215f9d3-8c12-5d96-a897-dc500fe3d0ce", "text": "Dwarves like from the movie The Lord of the Rings in dynamic, realistic movement "} +{"id": "0006187", "video_name": "27eb446a-1efc-5e15-a1cd-dc9f296bba2f", "text": "glass soda bottle pouring out soda liquid fizzy lots of motion liquid drops fizzy drink being poured "} +{"id": "0004785", "video_name": "0f1f6d07-522b-586d-b052-f1275df7bf70", "text": "leave on the water, river, 3D, fantasy, unreal render, disney style "} +{"id": "3006828", "video_name": "7ede4f69-a396-53ce-975d-c25b0909e18b", "text": "flight map from Moscow to johanesburg "} +{"id": "8002112", "video_name": "14049ecf-ad19-5c24-9944-adab6dc5df87", "text": "Jolts of electricity against a black screen "} +{"id": "4004521", "video_name": "bfe5fc12-03f9-54aa-b406-dd1b9b7d0360", "text": "Ibrahim tatalise turkish singer drive on cloud "} +{"id": "2004398", "video_name": "f53f920e-d7c3-5a3d-822d-b91165b3f769", "text": "In the autumn forest, the leaves are golden and yellow, with patches of red in between, lens from close to far "} +{"id": "1004603", "video_name": "55b668f7-5671-55ca-8ed9-ef6a828c5195", "text": "German military, Second World War, well groomed, with dress uniform, mobile format "} +{"id": "1004044", "video_name": "4b0b5391-d503-5d49-a564-e47ba4606e76", "text": "husband asks wife questions, happy provocative "} +{"id": "3006240", "video_name": "f85ed52b-e519-5498-9c20-acf2bc9563b9", "text": "a creepy house by a swamp in the woods. "} +{"id": "7002323", "video_name": "04d1814d-e1ea-5e5a-b85c-2171d9a37792", "text": "a man with long hair and no shirt riding a skateboard in shorts and socks on a street with houses in the background "} +{"id": "2007840", "video_name": "b92c35ab-2aca-5af3-b3ce-9e4a8afd1c25", "text": "a subwoofer that makes a sound effect on a white background "} +{"id": "2007600", "video_name": "510d09b2-c8e9-57ce-bbe9-d2d692909e20", "text": "Buddha, serene expression, bright eyes, contemplative expression Starry sky all over the universe, stars twinkling, clouds wreathed silence, peace, contemplation, peace, the vastness and tranquility of the universe "} +{"id": "3003902", "video_name": "f526f541-36f3-51d8-a467-ea2c8962a93f", "text": "he dance with Donald duck on yellow and green background, "} +{"id": "8001412", "video_name": "de6aea37-f12d-5a11-aba1-152446eb1e81", "text": "golden catholic rosary in hands of a grandmother "} +{"id": "7003614", "video_name": "7d8d348e-6285-5cda-8ec4-93b70553f948", "text": "WhatsApp app image walking in streets sith other apps "} +{"id": "1003052", "video_name": "38225871-4756-5d97-bfae-0c8d1c0ed457", "text": "Photorealistic photo of Darth Vader in an all black tuxedo, a stormtrooper orchestra with violins cellos and trumpets, depth of field, bokeh, symphony hall, real photography, 8K "} +{"id": "0003417", "video_name": "3d464b16-86be-52fb-928e-256ef372177c", "text": "An imaginary space of the past violent history in country "} +{"id": "2004813", "video_name": "2865f957-d2ef-53f1-aef8-003ed184af10", "text": "John opens his email and reads a rejection message, his face reflecting disappointment and frustration. "} +{"id": "8002565", "video_name": "3e90d831-6002-5629-89c5-5a3a3b445935", "text": "Gazing up through a distant valley, captured from a low angle. The Milky Way cascades like a waterfall in the night sky, with the glow of nebulae and stars swirling like mist. Soft lighting on the ground outlines the contours of the mountains. The color palette, dominated by deep blues and purples, creates a mysterious and dreamlike scene. "} +{"id": "3004002", "video_name": "0159bbde-ad8d-5fc8-96f3-bd1227cc572e", "text": "Happiness is like a bead in a vat of cold water "} +{"id": "2005420", "video_name": "e20863cf-d757-5465-804b-af7f5580a4c7", "text": "something that turn around and balloons flying up to the sky "} +{"id": "1005839", "video_name": "6b535b9c-7575-52cd-9741-82465ae5f554", "text": "create a ufo in the moon "} +{"id": "4004748", "video_name": "c4810e7e-985a-53f9-8441-6da135439317", "text": "monkeys, various birds and big snakes hanging from tree branches. "} +{"id": "0005447", "video_name": "1aedbb74-7feb-57e9-980a-3ceea23789ac", "text": "White trees shaking in the snow "} +{"id": "2004415", "video_name": "4def0fb7-b284-577f-add4-3c1a7e93657d", "text": "a little girl with dog in the street when the cloud white and green sea "} +{"id": "3005980", "video_name": "b940205c-1bad-554c-9630-a8a2ef223135", "text": "alexander the great and his men in battle "} +{"id": "0005028", "video_name": "136a1463-7ec1-58ef-9281-3e53e9c738f2", "text": "Generate 2 little anime boys, one is 6 years old and the other is 2 years old. two playing "} +{"id": "4004288", "video_name": "bb5e66cc-f1f4-57af-8fc3-44cd8e714cff", "text": "a girl riding a horse on a rainbow "} +{"id": "3003275", "video_name": "fbb9efcb-8adc-5c9a-98bc-4f4d84c66e4f", "text": "a robot hand presses the play button on a music system. "} +{"id": "3005384", "video_name": "e5462683-2f31-58f1-b770-5d93931349fb", "text": "Demonstration of the capabilities of artificial intelligence in creating animated effects such as fire, water and smoke. "} +{"id": "4003470", "video_name": "4beba2c3-311e-52a8-97db-de3e926cd66c", "text": "Picture of a hotel guest handing a passport to the hotel receptionist Message: 1 Attachment "} +{"id": "8001178", "video_name": "e5763e57-cfef-5767-a3a3-68222e0886b1", "text": "sign board for Abhiraj Bunglow (in big font) in next line Abhijit Jagtap A arrow beside it on a white baground "} +{"id": "6002392", "video_name": "48602fd1-76f5-51ed-9e12-73463ca31809", "text": "The girl had a power with which she could control the dragon. 3d "} +{"id": "3005204", "video_name": "0e8bb697-96e2-5df8-9a5e-0714078b7014", "text": "video of a man dancing inside the mansion with his face changing in between different characters "} +{"id": "6002053", "video_name": "53413253-a1f8-5c93-8b74-a1c43f9cb01f", "text": "flock of birds hitting an airplane windshield causing a plane crash "} +{"id": "2003009", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "gothic young woman with long blue hair dancing "} +{"id": "0006270", "video_name": "29c569e4-1614-5f19-8f93-9344b202ca45", "text": "cook stands on kitchen and decorating vanilla cake by chocolate pieces "} +{"id": "4004511", "video_name": "cb3f5272-05d5-5fa5-af2a-08b47053d0d6", "text": "little orphan girl getting bullied and beat in Victorian Era "} +{"id": "8001194", "video_name": "345d80db-f18c-58b8-8984-0b1b332d07a4", "text": "an orange cat is hanging onto a golden tobacco leaf "} +{"id": "4002884", "video_name": "8e9be4b4-524c-5878-8234-10b60abda660", "text": "A log cabin in the rainforest amazon Message: MAHSAN (Font: MODERN) "} +{"id": "1005260", "video_name": "60c68cb7-3c93-5507-a2b9-579b2c9e1270", "text": "close up of George W. Bush report on a live news broadcast "} +{"id": "3004171", "video_name": "f452bee9-d278-5acf-ae53-7b7c37e7acd4", "text": "French fries with body watching a big screen in a jungle forest ghibli style "} +{"id": "0006055", "video_name": "25d28d72-7ebb-565f-aebc-d904d041b854", "text": "man sitting on bedin bedroom, hands in the air. hundreds of various printed pillows falling down from above "} +{"id": "0003941", "video_name": "00368022-f5fa-50d5-a01a-4174dd1e2f97", "text": "an old man who is amazed, green earth and trees around "} +{"id": "6003351", "video_name": "692da542-f61e-5f9c-ac8f-14c649d41e2c", "text": "Create an image capturing the awe and wonder of space exploration. Showcase the beauty of the Moon or a spacecraft on a cosmic journey. "} +{"id": "3005878", "video_name": "dba839f3-d57c-5c31-aafc-e56f7bb9d2cc", "text": "30 years old fit man with very short hair playing soccer with friends "} +{"id": "2003851", "video_name": "c2e01fe8-cf36-5843-a65c-2153ec4c8f11", "text": "a man with red eyes taking off his black shades camera zoom out "} +{"id": "1003466", "video_name": "402cf2fc-c09e-51e1-8052-0c8a9764e6ea", "text": "Ultraman battled a colossal monster terrorizing the city. With swift moves and a burst of energy, he vanquished the beast. The grateful city cheered as Ultraman soared into the sky, their hero victorious, safeguarding peace once more. "} +{"id": "2003698", "video_name": "a31744ee-290c-5dcf-b24d-34dc4b7cd460", "text": "a boy and his friend huddled together, discussing their plan to visit the cemetery at night. "} +{"id": "6003045", "video_name": "e5f81f46-67a4-5f88-89db-831461098d0c", "text": "a warrior women changing into a with horse "} +{"id": "8001852", "video_name": "5fa537db-e073-55ad-ac12-fc1481a22618", "text": "when tare see the eagle he have try to run "} +{"id": "7003279", "video_name": "d825a2ae-507f-5fd4-9b8d-bc5a8ef0595c", "text": "16:19 cinematic, bokeh, A white Porsche panamera racing a black Cadillac ats through a neighborhood "} +{"id": "6002728", "video_name": "1790229a-44a2-5dd0-b58c-b2aa2250e4cb", "text": "ice skating view of single skaters skates passing by, good quality, pine trees in background, white skates, white laces "} +{"id": "2007238", "video_name": "d88f781d-bc44-5577-b038-6e0b5d26bba4", "text": "Little bear and friends discover the moon hiding behind the clouds. "} +{"id": "3005465", "video_name": "13dd8f74-cbad-5255-9034-15d2adebb8c2", "text": "two flowers kissing Tim walker style "} +{"id": "7002537", "video_name": "115db056-628f-5dfe-a7e1-43a37c69d4b4", "text": "create a 15 second pepsi add with zoom in effect with water dropping from the bottle "} +{"id": "2007996", "video_name": "3cb567cb-3adf-54af-8228-9f6368a8ed9d", "text": "an old sword master fighting a young energy yourth who is his appretice but still the old man seems to be at an advantage "} +{"id": "3003090", "video_name": "9806460e-3c81-52b2-8eec-d70f056edfce", "text": "in a rainy day there has a shiba eating bone "} +{"id": "7002004", "video_name": "412cd123-51ab-518b-944d-029915584f7e", "text": "gathering of Indian men and women of all different cultures existing in India "} +{"id": "5001182", "video_name": "43979fcf-f909-5f82-b602-f421db59d1e0", "text": "beautiful woman and guy playing chess, rearranging a piece on the board, in the Garden of Eden at sunset, sunny, bright "} +{"id": "8002045", "video_name": "1b1f7f7d-d28a-5dd7-b9d2-61099fcd26f4", "text": "Walking through a 18th century living room "} +{"id": "1005793", "video_name": "6aa209ea-a146-5cb1-b6b3-7745d2805a97", "text": "kids playing on the beach during a sunset in the background "} +{"id": "8003487", "video_name": "ed79ddb8-155a-5ab4-9d35-a7e4cebdb5de", "text": "zooming the map to every part Message: 1 Attachment "} +{"id": "3005840", "video_name": "46463d5b-f311-5c3e-80cd-9875beed05b0", "text": "view from the illumination of plane "} +{"id": "2006252", "video_name": "434cbc75-e5e7-591f-b851-d645e6a706c8", "text": "A real golden clans british shorthair cat, wearing a black suit, playing flute "} +{"id": "0004530", "video_name": "0aabcd83-8f06-5308-9e34-c0cb30f1abcf", "text": "create a intro tittle video for comedy channel name: KC Production "} +{"id": "7004432", "video_name": "1abc64ca-1b67-5ea0-a234-c1e1ef9867b6", "text": "Elvira dances in the streets, realistic anatomy, enthusiastic "} +{"id": "1006835", "video_name": "7cfed746-55d8-51a5-ad16-78e0b35abc54", "text": "Generate a scene where Emma wakes up in a dimly lit room. Describe her disoriented expression and the mysterious atmosphere around her. "} +{"id": "6003326", "video_name": "e5c6be5f-3803-51f1-acd3-045e0ed386f3", "text": "mountains of colombia with condors flying, 4k full hd "} +{"id": "0006057", "video_name": "25db4832-aaf0-53f3-bf2e-9f94a8b3ea81", "text": "pao bc flag and some awesome movement "} +{"id": "6002922", "video_name": "9d6edd8c-a79c-5f7b-a534-b071d46b9573", "text": "A cute turtle in his house, looking at a clock, realizing he might be late. "} +{"id": "7002734", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "a beautiful young girl closing a door of a rand villa sadly "} +{"id": "2004676", "video_name": "be8a7603-bc20-581e-b3d4-868831988a07", "text": "A 3D rendering of a alien comming out of spaceship in the style of cubism with high resolution near the three pyramids of Giza Egypt and looking at the pyrimids "} +{"id": "0003108", "video_name": "372ce616-e9f2-55fc-b46a-e62e3eb6bfa2", "text": "The fearless look of young people "} +{"id": "6003111", "video_name": "dc4e3011-4b0a-5c84-8a3a-afa0afa42281", "text": "Bill Cosby as a balet dancer wearing tutu "} +{"id": "8003225", "video_name": "9561b7ef-db7b-5d19-89c4-5dfed24a57ab", "text": "Create a picture for an international job recruitment agency to share on social media. The scene is set in a bustling cosmopolitan city with skyscrapers towering in the background. People from diverse cultures and backgrounds are depicted interacting and collaborating in a modern office space. The image style should be Pixar 3D, bringing vibrancy and life to the scene. "} +{"id": "0006625", "video_name": "2fc1bdb5-1e2e-5744-b02f-f8f46cfff957", "text": "MOVIE POSTER MARVEL CAPTAN MARVEL SAD POWERS CENAMATIC POSTER NO MOVING BRIE LARSON BLONDE GLOWING LIGHT "} +{"id": "8003980", "video_name": "7566ffd9-07e9-520b-97af-6623d9714c3b", "text": "Whiskers exploring a tall, leafy houseplant, surrounded by lush green leaves. "} +{"id": "2003340", "video_name": "b9f8774d-6500-5c94-9861-221b91055b01", "text": "A unique creature men, with skin as red as a blazing fire and long, flowing black hair that cascades down its back. Its piercing red eyes seem to glow with an otherworldly power, and its feet face backwards, giving it an otherworldly appearance. "} +{"id": "3003131", "video_name": "afffaff3-de77-5efc-91f2-a8f44b72ca4c", "text": "Generate an image to sisters of life, with a sisterly love "} +{"id": "3003185", "video_name": "b4af6080-27f6-55b3-b461-5f46a521636b", "text": "african ostrich with santa claus hat running 16:9 "} +{"id": "3004760", "video_name": "5e6cfbdd-da6d-5f50-bf11-f7b407e3b24b", "text": "a teddy bear breakdancing in new york, 1970\u2019s film "} +{"id": "3006102", "video_name": "1f5dddd4-b854-5664-a793-d7e415476196", "text": "a gothic horror style of a person kneeling infront of an angel "} +{"id": "4002357", "video_name": "664c2441-ea35-56af-b1ed-2d46c8d30112", "text": "A football eating pizza , with chickens running around in the shop "} +{"id": "8001835", "video_name": "240ba4bd-1912-5a3c-9b5a-19955f14ae23", "text": "a giant head statue in the middle of the beach smiling to a weird blue bird in a ghibli style "} +{"id": "7002726", "video_name": "728e7b95-8a8d-5213-878e-4fc595a752c7", "text": "vibrant colors, girl looking at the sea, in style of 90s anime, "} +{"id": "2007749", "video_name": "dd5012c4-9745-55d7-9496-d977cf6f28e7", "text": "Create a sigil in the style of the game of thrones ones like Stark, Baratheon, Bolton, Lannister, etc, with a flying eagle gripping the crown in one talon and a spear in the other The house is named House Hamond "} +{"id": "7004840", "video_name": "4f5943b2-092f-56ab-8b1d-5ac42bafb982", "text": "Begin with a captivating opening scene, introducing the peaceful village where Golu lives. "} +{"id": "3004962", "video_name": "5a3a2233-90a8-51c0-91b9-b39fb821442f", "text": "grim reaper skeleton face look at the camera with burning eyes, dark souls style 4k "} +{"id": "3006675", "video_name": "f5478c05-7953-5b1d-9296-99abca8662f4", "text": "agriculture wheat, corn, and dairy, and produced ships, papers, and textiles. "} +{"id": "2007171", "video_name": "8755ac1a-37ea-53e6-aee7-4c0fe45ab09b", "text": "molecular division, reproduction, increase in volume "} +{"id": "2003622", "video_name": "c50868b7-2f17-5942-89fb-dd87eb214be3", "text": "Connection Lines on US Map: A map of the USA with lines connecting different cities, symbolizing interpersonal links. "} +{"id": "0006566", "video_name": "2ebd2983-7f58-557a-b2bd-a2626d8b042a", "text": "Tha boys in tha gardan playing "} +{"id": "7002743", "video_name": "0b6bf8ce-a876-524a-9e4f-1a452580e6f4", "text": "paper coffee cup, ibiza, steam, in the style of loro piana "} +{"id": "8002119", "video_name": "3fe4710c-a74a-5765-acdb-8385799b585b", "text": "An intelligent robot appears in the virtual laboratory "} +{"id": "2007508", "video_name": "a45bfb28-4a88-5cb8-a5a5-35e82c02bb21", "text": "A scene with a bamboo forest in China that has a slow flowing stream and bamboo waving due to the wind "} +{"id": "1003866", "video_name": "4740e443-cedb-5dee-96f1-3e0d412eb826", "text": "wood used to giving support in building walls in Constantinople "} +{"id": "6004255", "video_name": "cc37b059-2511-572e-90b0-4c6e127a15c8", "text": "The scene of the lion jumping into the well "} +{"id": "6002712", "video_name": "2e67b66c-2d05-59ed-b8b2-1ee23b866d14", "text": "an optical illusion of the universe inside a glass jar, intricate detail, volumetric lighting, epic composition, hyper detailed, ultra realistic, sharp focus, octane render, volumetric, ray tracing, sense of awe, swirling mist, 4 k, cgsociety, sense of awe, mystical, by alphonse mucha, artstation, 8 k "} +{"id": "4002807", "video_name": "feb9ddd7-1dbc-519d-bd36-5086613e2ce4", "text": "Simulate a meteor falling from the sky and destroying the earth, but the color of the meteor is pink "} +{"id": "6004003", "video_name": "6decdfee-e225-56f2-b627-cd00bcf84e8c", "text": "a super big frog in the pool to celebrate 2024. "} +{"id": "2005697", "video_name": "e700479d-6620-5191-a2aa-99adfdf9c89c", "text": "falling dominoes Message: COLLECTORS IN SPACE (Font: MODERN) "} +{"id": "0003754", "video_name": "42d2c530-59a5-5464-a0d8-0dca906a0e05", "text": "Darth Vader epic climb out of lava, volcano eruption in background, Vader looks badly hurt, Vader is awesome "} +{"id": "0006477", "video_name": "2d358a61-4d82-59dd-a882-72661be1c418", "text": "stacks of gold coins on table Message: FINCI (Font: MODERN) "} +{"id": "3003081", "video_name": "f3a36a9f-6ed9-56a9-a794-3719571ff3df", "text": "An office working man around 20 years with a curved spine "} +{"id": "3005558", "video_name": "ff455fb1-08e1-51f8-8487-bed3aeba4128", "text": "satisfying 3D animation, volumetric light and smoke, 3D particles curl noise, 4k made in houdinifx "} +{"id": "3005246", "video_name": "23360cfc-534e-5cf9-9d90-604394b3c5d0", "text": "first person pov holding up psychedelic trippy drink, photorealistic, high def, hdr, 8k, cinematic movie shot "} +{"id": "2006441", "video_name": "1f69cfdc-cc24-51e7-be1b-57e843229829", "text": "crocodile waiting,silently, in the river side,3d image "} +{"id": "7003863", "video_name": "20b9c211-4c86-5380-8635-7eda819d751d", "text": "animate these images, with opaque filters with a duration of 3 minutes and 18 seconds "} +{"id": "0005112", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "Trinity Morpheus and Neo hack the Matrix "} +{"id": "2007054", "video_name": "a66d6391-1281-5b07-893b-5ac05c7fa7b0", "text": "Hyperbird is a bird with mysterious abilities created from imagination. The figure is so bright and the wings are strong. It can fly high in the sky and has the form of a bird or a mysterious appearance that has never been seen before. "} +{"id": "2005686", "video_name": "7801b4f3-9640-543e-87c5-59e5162f4d90", "text": "goddess Nemesis, mysterious, epic, fire, metal, silver, realistic light, glowing eyes "} +{"id": "8003035", "video_name": "fb5eb4a4-ffa0-536c-915c-de48398e1cb2", "text": "Picture an opulent Saracen palace, where a curious sultan overhears tales of a distant Christian maiden named Custance. "} +{"id": "4002020", "video_name": "8cd347b4-16fc-5d96-be10-f874577946e8", "text": "people walking new york year 3000 "} +{"id": "8003717", "video_name": "dd1c55cd-fad9-5b35-821f-3b2a8e9f93b4", "text": "Plot Summary:\nIn a world where superpowers have become a reality, Rebel Star Prabhas takes on the role of Raghav, a reluctant hero with extraordinary abilities. "} +{"id": "0003863", "video_name": "44cdeba6-451a-5a50-b61f-87dbbbec3324", "text": "orange cat swimming, animation, cinematic, unreal engine "} +{"id": "7002492", "video_name": "e6c05e39-91e6-5a45-8946-0f4037af7649", "text": "In a bustling cityscape, introduce a quirky character named Pixel "} +{"id": "6002189", "video_name": "94f00c63-a72c-5dc4-a40d-cf3e7f106a07", "text": "Bumblebee robot, A small child, a school classroom, an atmosphere of curiosity and impatience, Bumblebee helps a child with a scientific project, sharing knowledge and learning together, fostering a love of discovery and exploration "} +{"id": "0003365", "video_name": "3c4b57c9-2074-5f23-92da-a3f76c9854c7", "text": "Animate a bustling marketplace with vendors and shoppers "} +{"id": "1003062", "video_name": "3847ff8f-13b2-5ca4-80dd-859cd6e9b725", "text": "show a salomon swimming in the river "} +{"id": "4003541", "video_name": "809f09b6-033d-56ed-9a69-55a9b39aa5fd", "text": "burning house with fire and smoke and people running out of it and some one get trapped inside needs help "} +{"id": "6002074", "video_name": "38bea655-7ed6-5d65-9622-2beede6c9337", "text": "pink glowy person sitting in space in a meditation, bright light is shining from the heart, cinematic view, looking at him from a distance "} +{"id": "8003784", "video_name": "40d668b1-bb04-502c-8a74-c1488cd21494", "text": "The girl is drawing a knife. The knife is charming Message: 1 Attachment "} +{"id": "0004257", "video_name": "05e33804-5482-5ed0-9a4a-7e138d846812", "text": "a cat sky diving, hyper realistic, 16k "} +{"id": "7003724", "video_name": "8d568e65-ab61-5ccf-b76d-84b0b7661fc4", "text": "a TV commerical of a family eating a cereal made out of balls of fur, 1990s aesthetic "} +{"id": "4003110", "video_name": "0b62de54-01ed-5037-b9d2-f256306676fc", "text": "Gwagon and Lamborghini driving to n rain "} +{"id": "8003587", "video_name": "077e0538-51ff-5b5a-a6b9-509b6bdf3837", "text": "generates video of hands holding diamonds and engagement rings. Royal blue background. Cinematic style "} +{"id": "7002102", "video_name": "d318cf7f-d578-5363-8373-0aec77f00e96", "text": "While \u201cradioactive water\u201d sounds scary, the occasional leaks of such water have never endangered the public or environment. "} +{"id": "2004429", "video_name": "bcb21b1b-d665-5125-8b06-6353723e527f", "text": "child cuddling his Mom, creative in the paradise next revivers "} +{"id": "2003671", "video_name": "9cc7263c-e7f2-50f7-95ae-058750866915", "text": "Monkey: The mischievous monkey organized a jungle Olympics with swinging competitions. Bonus points for style and acrobatics! "} +{"id": "4004470", "video_name": "0a41ed3a-46b2-50fd-8182-eaba1eeb6f19", "text": "Girl\n Straight light brown hair with light brown highlights, perfect, delicate face, walking on the beach "} +{"id": "2006490", "video_name": "fff03539-bd80-5b38-b557-cc97a27ec23b", "text": "youtube gamer in the 1990,wears old cloths, "} +{"id": "7004566", "video_name": "61b38092-6844-5ea1-83c3-07754c50d747", "text": "Character Alice, a young woman with blonde, curly, extreme short, brown hair, in the khaki pilot suit, is running away from the tiger in jungle of Amazon, 3d, cinematic, photorealism, focus on camera "} +{"id": "6002818", "video_name": "b931a520-62ba-5b82-a8a3-9cd8189ff9ab", "text": "bethlehem, little baby Christ 14 days after born, with Miriam "} +{"id": "3005611", "video_name": "ad4561e0-1d94-550c-8a50-22a8314e63b0", "text": "In a black and white scene, the vision of a futuristic city gradually emerges "} +{"id": "0003663", "video_name": "4149e087-a50e-52e2-a591-9ea25c36fe5a", "text": "a white cube spread blue light with digital line and waves Message: 1 Attachment "} +{"id": "0004153", "video_name": "04381842-1e37-530e-9ff5-f68b4ab541aa", "text": "The city of Athens Greece with Parthenon night shot and a pterodactyl flying in the sky animation photorealistic cinematic epic shot "} +{"id": "2006966", "video_name": "173da6df-31a6-50bf-9f77-09aff63643f2", "text": "generate a video of steve jobs in apple headquarters telling a story "} +{"id": "0006362", "video_name": "2b416318-42f7-50ae-a50c-85e4d4310ceb", "text": "Generate a captivating image representing innovation and excellence. Use modern elements and a vibrant color palette. Highlight a product or service in an engaging manner, ensuring that any text is clear and persuasive. "} +{"id": "8003704", "video_name": "92b184f4-5403-5fca-8279-8af73a8533a5", "text": "a group of 6 special ops commando in black uniforms, helmets carrying machine guns waiting in th back of a van before a raid "} +{"id": "1006059", "video_name": "6f479c1d-dd1b-50bb-a0f6-a324c4002d47", "text": "pigeon the beach Message: ratatopo (Font: MODERN) "} +{"id": "1005946", "video_name": "6d3d7459-8bb4-5e9b-bc1a-a6492a6208bb", "text": "image of a puma shoes wore by a 4 year old "} +{"id": "8001167", "video_name": "e93ad892-1298-5b6a-935a-571c6ab9ffda", "text": "ultra hd, max quality, space, black hole, realistic "} +{"id": "2004166", "video_name": "dadc3696-f76f-5b11-b221-6534ff3db14c", "text": "Mary the mother of Jesus carrying the infant Jesus in her arms "} +{"id": "6003154", "video_name": "b831496f-a231-5991-a041-7c720b437f2d", "text": "elon musk playing chess with magnus carlsen "} +{"id": "2003003", "video_name": "cf23d89e-64da-5879-bdec-fcbf687580b0", "text": "a big warrior with silver armor walking away from us into the sunset surrounded by mountains each side with red clouds from the sunset while the camera is following him "} +{"id": "6002258", "video_name": "e6c83290-c8ac-525f-960b-980fa17c326c", "text": "1670 in kashmir a boy born in hindu family "} +{"id": "2004563", "video_name": "3760b1ac-b696-5848-9fd9-8522c3fc3046", "text": "handsome macho guy showing his charisma to attract girls around him "} +{"id": "5001397", "video_name": "bbe968e8-2593-550c-aee0-ad1c4ee265c8", "text": "man in smoking talk about anything in light office "} +{"id": "6004429", "video_name": "8a8fd8bd-da80-5db7-85b7-9370186ea693", "text": "milky way sky filled with bananas "} +{"id": "7003097", "video_name": "6dbc176b-2174-5e7d-a34a-d485dd92b357", "text": "a man in a black tuxedo with a raccoon face walks along the golf course and gesticulates with his hands "} +{"id": "3006837", "video_name": "14b25e99-3f9c-5a48-aaa7-4cc8c7e26def", "text": "an aerial shot of a vibrant metropolis at dawn with city lights turning on. Zoom in on a corner building tattoo studio "} +{"id": "8002172", "video_name": "7f193627-cf7a-5c4d-af35-e5b66ffac557", "text": "Boy watching the sea, blue sea, night scene, mysterious night "} +{"id": "2003772", "video_name": "2c96bd11-27c3-5a44-aba8-e3fc8d4ddef9", "text": "a big red fish swimming in the lake "} +{"id": "3004025", "video_name": "c27b461a-28a2-568e-9fef-ba40585f3aa3", "text": "close ups of people walking down the street "} +{"id": "8001634", "video_name": "03ad9e94-0e59-50e3-81e0-335456e0dd01", "text": "As the years passed, their love deepened, and the world continued to evolve. "} +{"id": "3004356", "video_name": "536f815a-3284-5c06-a0fe-4bd6178e3cb4", "text": "a video illustrating the integration of homeless people into local communities, friendship "} +{"id": "5001989", "video_name": "77d5c685-0398-5a39-8cf0-55a27905f789", "text": "Scene: An animated character practicing meditation in a serene setting, surrounded by positive energy and calming visuals (birds flying, flowers blooming). "} +{"id": "3003167", "video_name": "8f7c2120-426b-5b75-a93d-38b3007837e8", "text": "face to face khabib Nurmagomedov and Mohamed Ali "} +{"id": "1003241", "video_name": "3bbac590-dd9c-528c-8f84-d3e24b037a73", "text": "Reese Witherspoon in a Game of Thrones "} +{"id": "0006464", "video_name": "2d089d90-7d83-581c-acfb-8d379a84d397", "text": "hamas in the military field, epic, hyper realistic, "} +{"id": "4004329", "video_name": "1806e81f-bc13-5461-a91c-3b8f8579be13", "text": "create a cinematic shot of a young man waering a black college jacket with white sleeves, watching the city from the perspective of a rooftop "} +{"id": "1004968", "video_name": "5bc38d36-758b-5108-a0f9-eda69d83bad7", "text": "camera motion zooming out to reveal more of this room "} +{"id": "6002125", "video_name": "65cc3776-cba1-5edd-b221-b840ae49eb64", "text": "Various shots of a soccer match,4k, night "} +{"id": "2005527", "video_name": "9d9ab9a4-9580-595a-9d4c-879828353d16", "text": "space planets tilt shift stop motion style "} +{"id": "2005928", "video_name": "8e377243-210f-5323-8f00-02a244ae6ed1", "text": "let his horse walk,fix image Message: 1 Attachment "} +{"id": "7004376", "video_name": "aed8577f-bc53-50e8-bbc5-2ddfd80460da", "text": "pumpkin time machine lands in prehistoric times GS14 "} +{"id": "2007493", "video_name": "0f0e7562-ce7a-5b2f-aa5d-1302fef2946a", "text": "realistic mercedes driving down the road "} +{"id": "4003634", "video_name": "8d895229-2d90-5371-a013-d43a437d5e00", "text": "New york, midnight, buildings, top view, 90s VHS Cam Footage Filter "} +{"id": "8002734", "video_name": "79a8abb1-8bcf-52bd-81a0-77d14474b04f", "text": "a young woman is smelling bouquet of red roses and smiling. Focus on the flowers and her face is blured. "} +{"id": "4003644", "video_name": "e7ebe298-aefb-573f-adf3-20d3c30a283c", "text": "crowd of futuristic robots a dancing in the streets "} +{"id": "4004272", "video_name": "ef4eeedb-9fd1-56ff-90dc-4b08d6bbfc4d", "text": "woman walking around corner in city at night "} +{"id": "7003561", "video_name": "00d88dcc-c47b-56a1-9937-1344b6c73cdc", "text": "Child with ASD trying to communicate, worried look. 3d illustration. "} +{"id": "4002488", "video_name": "26adcee8-c11a-53f6-a693-7fcc89dd92a3", "text": "male student feeling depressed and sad "} +{"id": "4002864", "video_name": "b4263906-a208-5a9d-9469-74a425ae3b4c", "text": "an anime cat walking down the street carrying a samurai sword "} +{"id": "4004334", "video_name": "1c507ee9-6f5b-5bdc-b6df-21e79fbc55b3", "text": "man what walk back voxel graphic with post proces "} +{"id": "1003711", "video_name": "4475de33-8ef1-54a3-9511-d6a1679cbc66", "text": "an astronaut standing on a highly detailed, windy moon "} +{"id": "0004691", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "a abandon theater, a group of people , many vertical hanging bule and red flag, cinematic style low key, night time, wide shot , slow pan "} +{"id": "1006545", "video_name": "77e41178-a76d-53e7-aad5-eec86fafbbab", "text": "a Thunder style letter V animation "} +{"id": "6004712", "video_name": "934ef170-0841-5737-8b1e-564cdbdafe01", "text": "A cinematic look in vertical video format of a space ship jumping into light speed "} +{"id": "4003666", "video_name": "9321bc9c-9e07-5db8-9d7c-9374b004d9b0", "text": "sea Message: Nuclear power (Font: MODERN) "} +{"id": "4003764", "video_name": "d6c83674-d669-56ae-b102-d562f44b8ee8", "text": "giant wave flooding a city wave splash style 3D real flow vray shadow Reflex trapcode "} +{"id": "0005932", "video_name": "236f414d-29ba-5685-bb37-ca83fd893cc3", "text": "a robot at a chai tapri in benaras in 1930s "} +{"id": "2006918", "video_name": "604f5dbd-89a9-54b9-a406-ca83d0a24823", "text": "mexican bull in underground cave by Charles E. Perugini, by Fred Sandback, by Renne Magritte, by Max Ernst "} +{"id": "0003028", "video_name": "35cec0ee-9c5f-5b23-80de-67ce0a0f9dda", "text": "a splendid palace with high architecture building with beautiful hilly surrounding, covered with big tree which are moving in the wind slowmotion drone shot 4k resolution high quality colours "} +{"id": "5001914", "video_name": "35076c45-a981-57a1-a45b-bde46a941fdd", "text": "A single drop of black paint falls onto a white cloud, filling the entire screen with clouds. "} +{"id": "1005575", "video_name": "66a26ba3-f303-532f-9249-7d412d5184c2", "text": "The grandad, a wise and kind elderly man, sitting on the porch of their homestead, crafting cheese with a smile on his face. "} +{"id": "6004489", "video_name": "1a1bc053-1355-5211-89c2-a73a1b273027", "text": "the girl stands behind the table and turns her head to the camera "} +{"id": "6003170", "video_name": "e5e9396a-d3eb-53de-a773-df325e170b29", "text": "Yet, like any captivating love story, challenges emerged. A misunderstanding tested their bond, prompting a heartfelt reconciliation that strengthened their commitment. The video montage weaves through these emotional peaks and valleys, echoing the rhythm of their evolving love. "} +{"id": "0004831", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "dolphin suddenly appears over the rainbow "} +{"id": "4003480", "video_name": "0a848d25-9b95-55a7-926c-3f490d388530", "text": "freemason start their influence in the countries , "} +{"id": "8003531", "video_name": "f299b7a1-8fb8-5cfc-ae76-0f350d858cc4", "text": "big semi truck interior modern design, consistent lighting, realistic, driver driving down the highway "} +{"id": "7002837", "video_name": "8123884e-de21-5548-beed-667a239f2e36", "text": "flyover on a cloudy day over a futuristic tokyo "} +{"id": "1003496", "video_name": "40b98dfb-afa4-5783-b02c-a9821cc078ca", "text": "a farmahouse with rain an sun, Studio Ghibli, cinematic, hand draw "} +{"id": "1003420", "video_name": "3f2c43e5-50de-5bad-b937-80859142e689", "text": "I wind moping the wall Message: 1 Attachment "} +{"id": "6003764", "video_name": "01e0aefb-e6b3-5612-99d8-6356e6e7e084", "text": "She heard a loud roar as the simulator lifted off the ground and soared into the sky. "} +{"id": "1003856", "video_name": "470fe854-8916-5bd6-8027-b208de2d4d1b", "text": "old man sitting on a couch doing practice in physiotherapy. Therapist sitting infront of him and showing what to do "} +{"id": "4003750", "video_name": "6c71c7dc-9290-533c-ae29-42342ee668d3", "text": "blonde child boy falling off a cliff, sideview shot, zoomed out, horrified expressions, in a forest, daytime, sunrays, HD quality, rule of third, hyper realistic, sun rays. "} +{"id": "3005708", "video_name": "68e59624-e44e-5cbe-b9a5-2426b1262bc1", "text": "Video about beautiful humanoid Aliens visiting earth with their spaceships "} +{"id": "1005143", "video_name": "5ec3b2ea-c352-5072-b7b3-5ac92021a0bf", "text": "Man on a motorcycle. View from above. Dynamic. "} +{"id": "1006413", "video_name": "756dd394-56e2-5004-9b9b-61f6b6beffa2", "text": "First person view driving a red convertible 1973 Chevy Caprice with white interior across the Nevada desert "} +{"id": "4002761", "video_name": "fcf89e15-00a3-5871-8de3-48ffb939ff58", "text": "skull painted in Mexican style, vibrant colors, live patterns "} +{"id": "3006346", "video_name": "90e0e79d-80fe-5640-b625-0d0c9d356663", "text": "blue and yellow swiss cows in the Mountains Message: HCD (Font: MODERN) "} +{"id": "2003289", "video_name": "ccffc9b9-fd86-57b2-ba6c-bae1a27baaa3", "text": "An image of a person climbing a mountain, signifying the perseverance and strength gained through embracing and overcoming challenges. "} +{"id": "7003868", "video_name": "2ad21037-f3af-573a-97d5-8460a593a85e", "text": "man traveling in singapore with a vlogging camera "} +{"id": "8002620", "video_name": "a4b62944-5ae2-5d23-b681-5772caa0460b", "text": "On the edge of the lake, several small wooden boats are moored. Looking out, the expanse of the lake is vast, with no end in sight, and its turquoise waters ripple gently. High definition, cinematic, long shot, 4K. "} +{"id": "4004817", "video_name": "f29dd867-e673-5cf8-8976-7797734adf41", "text": "photorealistic image of a snow forest with a cutte fox looking to the camera "} +{"id": "7002957", "video_name": "e9182044-ffc8-5b7b-aab7-d107d47345de", "text": "A patient with a harelip, facing forward. Beautiful Final Fantasy style animation "} +{"id": "8003660", "video_name": "9c2d107e-5984-5d40-90f1-792e3c0548e2", "text": "A lovely young Chinese lady is giving me a smile. "} +{"id": "0006246", "video_name": "2929c892-975c-509d-9a7a-6019734ea240", "text": "a yellow puppy and a white kitty playing together on the lawn "} +{"id": "8001076", "video_name": "c924f8c2-4093-5d36-9fb1-f3cbd78f25b7", "text": "a soldier attacking the castle walls "} +{"id": "3003708", "video_name": "867e5413-65f1-53a4-96cb-3cac170c3cc5", "text": "Little Bear contemplating the origin of stars. "} +{"id": "1005657", "video_name": "67e95dce-71a6-52d1-8904-d120b6370657", "text": "AI collecting Large Amounts of Data from Data Servers,Ratio 9:16 "} +{"id": "8003811", "video_name": "658ec610-64ee-565a-8a28-9043b643be8e", "text": "ocean scene, half above water half below with huge blue whale and dolphins passing by, tropical polynesian islands at night, universe and shooting stars "} +{"id": "8001973", "video_name": "a7e3ab6c-3953-5d5c-944e-1218a0a78b9e", "text": "man sitting in a dark room at 3am "} +{"id": "1003590", "video_name": "4207dbbd-5b32-56cc-bab6-af41c73a19fc", "text": "The robot raises its hand and the elevator doors close Message: 1 Attachment "} +{"id": "7002315", "video_name": "80bc4838-53f0-59db-9a40-0eb009fb2ae0", "text": "captain canada man riding a stallion in dazzling stunning light 3D UHD Digital Render "} +{"id": "3006329", "video_name": "a8b9b579-8aae-5541-94b7-9e233b2e7fb9", "text": "a cow running on the steppe "} +{"id": "7004285", "video_name": "73b8157e-fd02-5eaf-b6fd-53a483c76deb", "text": "a realistic giant robot riding in a kayak "} +{"id": "7002355", "video_name": "1f151811-babd-5d71-9471-c62f880c5585", "text": "one man soars another man in a Russian bath "} +{"id": "4004560", "video_name": "530ebd43-ac65-5801-ae1f-80d6dbbaf476", "text": "Roofs that protect from the sun "} +{"id": "0003004", "video_name": "35753c07-633e-5f88-9991-2185b48ff769", "text": "An artist picks up a brush and carefully follows the numbered guide, skillfully adding colors to the corresponding sections of the canvas, photorealistic, 16:9 "} +{"id": "2003753", "video_name": "f4ea2596-7fcb-5b5a-b175-e0ca57cce9ec", "text": "Conclude with an enigmatic scene of the village at nightfall, leaving the audience in suspense, as if something unknown and intriguing might surface again. "} +{"id": "1004864", "video_name": "59d95882-09a2-579e-9523-ab86b5eab1df", "text": "Jack and the beanstalk in space with huge stacks of cash "} +{"id": "7003803", "video_name": "05446434-ebdf-5c19-bea3-223caee0400f", "text": "Busy NYC street, diverse people passing by, Emily and Kumar collaborating on a project. "} +{"id": "3003585", "video_name": "40981b4a-2f54-5a0a-b92d-f4c07cb8def0", "text": "futuristic nuclear warming up and glowing at night "} +{"id": "1004922", "video_name": "5afd7350-885d-5546-9869-a1fdf4360c9d", "text": "a video of Jesus and Casey Musgraves at a wedding altar. They are looking at each other and holding hands, and they both have giant noses on their faces. "} +{"id": "8002757", "video_name": "621e03bc-4885-5f6a-8e35-9c6db9fc1554", "text": "a crest in the style of Harry Potter showing additiv manufacturing elements "} +{"id": "0005047", "video_name": "13b75eba-e1a9-5f3b-aaf9-1732bde6ce96", "text": "ultra realistic 8k golden and brown colours. A woman with long golden blonde hair lies on the floor of a sparsely decorated room "} +{"id": "3004719", "video_name": "d08c9a82-c42e-55ab-956e-a095fe7b7aec", "text": "A man happily browsing his phone "} +{"id": "2003735", "video_name": "186c3b73-730f-5ae4-aa2d-2ba1f8f06288", "text": "haveli in the dark knight rises "} +{"id": "3003992", "video_name": "cb139b09-9d9d-5783-b634-1eb2c5fe01c4", "text": "a man walk, with his wife, in the park, bluesky, green playground "} +{"id": "2005505", "video_name": "e2597de1-05b0-52bc-833f-b7f1242cb819", "text": "A record store, filled with tapes, CDs, and various records. Message: 1 Attachment "} +{"id": "2005033", "video_name": "eafb0313-e1ec-5e5c-8011-c4da97c7e440", "text": "The village transformed into a more compassionate and caring community. "} +{"id": "0006669", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "Girl in suit washing dishes in the kitchen "} +{"id": "3004675", "video_name": "b9aabda3-f788-5925-858a-13e2be31fac1", "text": "A truck carrying cars from sea Port and joining the road "} +{"id": "0003148", "video_name": "381067cb-a848-5252-922b-793835c0164f", "text": "a baby lion roars in the stadium, sunset, 4K , HD "} +{"id": "6003623", "video_name": "97fc36b1-626f-5476-8cea-5014b4880267", "text": "a supernova creating an new universe, the Big Bang "} +{"id": "2004490", "video_name": "db517d9d-e480-5e59-b807-a2fff70116b5", "text": "a man in the dark clutches his chest, aching with an unusual pain. "} +{"id": "0006583", "video_name": "2f01f8b6-2658-5205-af9b-ca5ba25f8458", "text": "a man accepts a call and talking in the private room "} +{"id": "5001091", "video_name": "f4619650-1035-592b-b330-9b9946252483", "text": "1968 Woodstock people walk across a hill in bright sunshine, a huge rainbow shining in the sky behind them; blurry, soft focus, VHS tape quality video, colours "} +{"id": "2005128", "video_name": "1144f837-53f7-5093-9228-0a625e47dee4", "text": "Help me make the leaves in the picture move slowly "} +{"id": "7002523", "video_name": "cd44243d-f9c0-5e3f-941e-3bcad3f18b54", "text": "Donald Trump doing the truffle shuffle dance "} +{"id": "6004418", "video_name": "40b6f793-4c7b-5032-a5a9-e6d465364041", "text": "a cartoon of a penguin with a book on his head trying to explain stuff to rocks "} +{"id": "5001124", "video_name": "38176de2-1e00-5f3a-94b4-21aa12e95b45", "text": "a bird and a kite flying in the cloudy sky "} +{"id": "6002219", "video_name": "5868d102-b791-5eaf-bd65-7149945566cc", "text": "A supermarket trail on a hill. On the trail are people shopping with shopping carts. "} +{"id": "6004510", "video_name": "95f6dd13-e4ac-5e9e-962f-bf8f4fc22979", "text": "Presented from multiple angles Message: 1 Attachment "} +{"id": "4003148", "video_name": "a526d589-2a7b-5e50-a95f-d4b2e7818c26", "text": "Chinese company has come out with a great scheme "} +{"id": "4002837", "video_name": "b7a91c3f-d769-5bac-a7a4-5d03094473de", "text": "cool anime guy punching cherry blossom tree "} +{"id": "3006252", "video_name": "590b9950-be70-55f0-947b-f9749205ce0e", "text": "trees growing out of the ground, at night, a cartoon style "} +{"id": "4002257", "video_name": "6484fa15-0e4f-5562-844f-85e797c48c2c", "text": "an ambulance car is falling from the sky when the backdoors open and bear falls out who pukes candy "} +{"id": "1005702", "video_name": "68d8834d-202c-5c7f-acb7-5c722e996612", "text": "a cartoonish leaft that have 2 eyes that have a red cape, back ground is to a cartoonish street with buildings, 4k resolution "} +{"id": "8001636", "video_name": "d83a5bc1-5c60-5421-b257-6f98f7c3f9e9", "text": "Joe Biden talking on the phone with someone, White House office background "} +{"id": "6003993", "video_name": "bbb4221a-5607-5f78-af12-1a30c4dc3e6d", "text": "the lost tribes of the amazon "} +{"id": "1006213", "video_name": "71edfab7-1a79-5136-9856-3e87d199ee05", "text": "In a small, bustling town, there lived a curious young boy named Ali. Make 3D animated video "} +{"id": "4002579", "video_name": "9aa7b4b2-a3f1-5762-8a30-d074d4de92e1", "text": "orchard with orange trees under a clear blue sky in the mediterranean countryside Message: 1 Attachment "} +{"id": "3005791", "video_name": "63f03904-22ea-5c82-8d33-2e018360af24", "text": "A distorted glass room with dark red sunlight beaming into it "} +{"id": "1003683", "video_name": "43ea299d-a741-5ee6-9c5a-aa5aef9446c0", "text": "Create visually appealing graphics illustrating the benefits of fiber for digestion and weight management. "} +{"id": "7002192", "video_name": "72607b12-2c1c-5a18-b9be-f4d99a5cd706", "text": "now continue the above scene with Introduce the concept of developmental disabilities and the cognitive challenges children may face. "} +{"id": "6004896", "video_name": "9a743a9c-f716-5674-8d3c-a4b1e026b2f2", "text": "night rain in a forest, a young latin man stands looking and the camera slowly withdraws, film look, 4k "} +{"id": "2004833", "video_name": "1865177d-0ad2-5c24-914b-df82757cccff", "text": "round talking bread runs down the street, rick and morty style "} +{"id": "2005656", "video_name": "2edf6b3d-6ca0-5dc0-b38d-6232223da316", "text": "beautiful Indian ancient woman talking to macho king in jungle "} +{"id": "1003570", "video_name": "41de3af7-ccde-5772-a635-0801a8f27ceb", "text": "A pack of dogs attacks a blind boy standing at an ancient temple "} +{"id": "2007451", "video_name": "2447989c-ed2b-5acb-989c-171d4d7120da", "text": "a black huge snake with five face scary in jungle night heavy rain thunderstrom "} +{"id": "0005981", "video_name": "245ac92c-544e-5680-8fdd-4f21abecb0e0", "text": "a suv car runing from point a to b in the screen "} +{"id": "1005119", "video_name": "5e66cdec-f088-5b6a-b660-cb99e85c3826", "text": "sunset greenery scene with birds flying "} +{"id": "7003573", "video_name": "4b8f79da-1235-50ba-a8cc-3bc8e9c58111", "text": "An Ant passed by, bearing along with great toil an ear of corn he was taking to the nest. "} +{"id": "4003693", "video_name": "b987556c-a551-5799-ba01-b9486f35218b", "text": "young veterinarian woman with straight light brown hair happy at her work surrounded by animals "} +{"id": "1005855", "video_name": "6bb7f3d5-bd7a-5bb5-b91c-482d3239eee8", "text": "teenage marie antoinette, jumping, excercising, 1980s aerobics class, inside the Palace of Versailles, 1980s style "} +{"id": "1005976", "video_name": "6dd24dc9-b391-51bf-8e13-62b7a9a0e674", "text": "In a beautiful jungle, there lived a cat and a rabbit who were the best of friends. "} +{"id": "4003586", "video_name": "3008225b-d1f4-5ad6-84b0-3a24e15cd1b9", "text": "woman smiling, in style of Wes Anderson "} +{"id": "1004687", "video_name": "570cb4aa-54c7-51b1-bab8-14c2f5a408de", "text": "Show animated chimpanzee using a stick to get honey from a beehive, 3d animation "} +{"id": "3003387", "video_name": "cf632e77-30ea-5f87-b62d-8f883d9e50ac", "text": "A flying car with Hogwarts from Harry Potter in the background "} +{"id": "3003766", "video_name": "8119542c-9663-59d4-a7bd-fc05a4163d92", "text": "tesla car maximum speed in a higway "} +{"id": "2004810", "video_name": "e730652b-f0d5-5dbe-9fec-08167469320c", "text": "man walking towards the background, slow zoom in "} +{"id": "4003146", "video_name": "72c31795-2e0a-54dc-a8cb-6eb49067c99a", "text": "a blonde girl with blue eyes with cheetah ears and a cheetah tail talking to a boy with orange hair green eyes fox ears and tails they are sitting on a beach at sunset cena de anime "} +{"id": "7003190", "video_name": "faf462ce-2613-53b5-961a-875c8af261e4", "text": "video, good year blimp, flashing a sign Ted plex "} +{"id": "7002456", "video_name": "d1e39d98-7628-5aa4-b156-073320459bf6", "text": "all planets in the solar system falling from the sky one by one "} +{"id": "7002772", "video_name": "5b2900d2-938a-5693-b9d9-95020a0c7aec", "text": "create an intro to a map "} +{"id": "3004231", "video_name": "d60fbbe3-59ac-5342-afcc-401750728e0c", "text": "Disney style. Motion. bearded man walking through a wooded forest with fog "} +{"id": "4003816", "video_name": "17484793-1570-52da-9f03-4fa2c3f733bf", "text": "View of Africa recorded by a drone, cinematic "} +{"id": "8001525", "video_name": "a5c81db7-07bf-5caa-8d81-79d155d8ebce", "text": "green bank bills and cannabis leaves fall on a salad that has croutons in it "} +{"id": "4002777", "video_name": "3ba92d31-b861-541f-af19-660ac7a3c133", "text": "The deer was very happy and thanked the tortoise. "} +{"id": "3006851", "video_name": "2a161293-1e55-5d5c-814f-3ae44ea09d48", "text": "Nicolas Cage captured on a night vision camera in the woods fighting zombies with a chainsaw "} +{"id": "3006726", "video_name": "45117676-1938-5d8a-981c-8a811df8ccff", "text": "An enchanting opening scene featuring the tranquil beauty of a blue and calm sea, 4K "} +{"id": "5001265", "video_name": "2af3e5ee-6ed5-5ede-9330-33800fdc3cc7", "text": "Inside the warehouse, two yakuza members are killed. Cyberpunk, scifi. 1990s film style. "} +{"id": "0006310", "video_name": "2a77dca6-2963-509e-a6ae-13e49f50fbdd", "text": "The earth in the Las Vegas Sphere. "} +{"id": "0005760", "video_name": "20c0b9f8-525d-5adf-87fb-ffcdaff7f162", "text": "Raju and his father working together in the field, harvesting a bountiful crop. "} +{"id": "8002106", "video_name": "7704e9d4-1c72-5c18-bf3e-05322a6a5a99", "text": "bunny kids cartoon in africa jungle Hoping to catch a glimpse of the animals in their plight "} +{"id": "3004808", "video_name": "8a872474-f7f6-5c06-a765-a5026a393588", "text": "apollo moon landing picnic, realistic look "} +{"id": "4003727", "video_name": "c3fff391-7135-5a17-9b28-643ff79b9f15", "text": "cinematic lucifer handsome with big burning wings in front of big audience wide shot 16:9 camera pan left to right dramatic background award winning cinematography ultra high quality "} +{"id": "0005628", "video_name": "1e56af74-b6de-5bf4-9c35-97a1ae47603e", "text": "a lady with pink hear having a coffe in Paris with eigfel tower in the background "} +{"id": "1005517", "video_name": "659555b0-4ed4-5908-854f-020f3cd9570b", "text": "The doctor sits down at his desk and picks up a book and opens it. "} +{"id": "0005611", "video_name": "1df94860-da4a-55a8-a419-541ca92d7f76", "text": "Introducing our premium mayonnaise: a culinary delight in a sleek glass jar. This condiment masterpiece boasts a velvety texture and a rich, creamy flavor that elevates every dish. Its carefully curated ingredients promise an unforgettable taste experience. From sandwiches to dips, our mayo is the perfect companion for your culinary creations. The elegant glass jar not only preserves freshness but also adds a touch of sophistication to your kitchen. Elevate your meals with the smooth, delectable essence of our artisanal mayonnaise "} +{"id": "6002652", "video_name": "a8dd9919-3fb2-5dba-b298-658f5607aeec", "text": "i am a women runner group instructor. make a Promotional Video for me. "} +{"id": "7004536", "video_name": "94890894-21c7-5a5a-bf18-76a98242e0a3", "text": "This period is known as the British Mandate for Palestine. "} +{"id": "2003756", "video_name": "36368bea-e0bc-5098-a309-a34d71a7d293", "text": "burning fireplace, girl is writing, Show the young girl sitting at a wooden table with a pile of books. Display love letter with her reading and taking notes.Include a warm fireplace casting a gentle glow on the surroundings, Studio Ghibli style, hand drawn, emotional , 1 cat sleeping nearby, xmas time, window snow storm in the background, swiss alps romantic "} +{"id": "4004376", "video_name": "cf83b112-f985-5fac-b5f1-37189b8b9bd7", "text": "Vogue Runway photograph, Egyptian model walking down a tennis court runway, athleisure collection, wearing romantic athletic bodywear, natural daylight "} +{"id": "3004846", "video_name": "741b321d-5a07-5cb5-a499-1826c97a7ee1", "text": "sad dystopian andrioid robot, full body shot, arms stretched out to side. facing directly at camera. against a white background, red eye. hydraulics. brown rusty metal body. hyper realism, front position Message: 1 Attachment "} +{"id": "7004539", "video_name": "b8c604e2-e21e-5a7e-b8ad-78c9fe9414f6", "text": "welcome to the channel intro video creating "} +{"id": "1004469", "video_name": "52cdebfa-0dcb-5990-95f0-8b3f4db55433", "text": "a funeral for a little girl who died in a car crash. "} +{"id": "0006083", "video_name": "26619ad1-423a-580f-a4a2-aa6c68116852", "text": "On a black space background, a classic rotating globe earth map world witth fashion Bright Abstract blue Neon Multicolor Lines, rotating slowly with futuristic rotation with neon glossy lighthing effect futuristic, colorful shading, intricate artwork, fashion glamour, fashion lines concepts "} +{"id": "2005388", "video_name": "aa8da54e-f77c-5685-816b-a246ec56ad62", "text": "indiana jones chooses gold chain instead of cup at end of movie "} +{"id": "7003442", "video_name": "8010c775-d703-577e-a182-05703757f78a", "text": "The man awakens in a dimly lit room, curtains drawn, emphasizing isolation in his family home. Disheveled and lost, he hesitates at the bedroom door, glimpsing a distant and unfamiliar world outside. "} +{"id": "4004781", "video_name": "a0b03dcc-c517-5c66-a9ac-07fda83b20b1", "text": "Synoplex Like A G6 New Shoppe "} +{"id": "2007804", "video_name": "99509cbd-2985-583a-9e89-048855418dd8", "text": "A lone palm tree swaying in the breeze, silhouetted against the setting sun. "} +{"id": "0005496", "video_name": "1bda2806-c570-5fc0-a67b-08528c38ccd2", "text": "A man has a light bulb moment. "} +{"id": "2006235", "video_name": "4371420e-1631-5123-b559-0c5b6c0a7230", "text": "A cow is drinking water with lion in a common tub heading each other "} +{"id": "2003941", "video_name": "3931f3fc-9f8c-5a7f-969f-ec4379641649", "text": "rich wealthy man walking in a mansion, cinematic style camera movements "} +{"id": "2006843", "video_name": "ba63dad4-6f6a-5654-9792-3d4a6bdcf69a", "text": "wide angle yellow and red sky a man with black dress standing alone facing beach back shot "} +{"id": "1006937", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "gungnir spear flying in the sky "} +{"id": "2003118", "video_name": "1f587edc-eb2c-566d-a3c5-ccef9d94a57b", "text": "fast rotating cube on orange background "} +{"id": "0004198", "video_name": "04d84be7-d965-5a9c-94ba-1c1e295eb5db", "text": "cinematic angle, an angry business man moving his arm, he stand towards some company staff "} +{"id": "2007256", "video_name": "00b19367-67fb-58d2-ab7f-364cc59cff26", "text": "Owen Wilson staring blankly at the camera and lifting a plate, hair blowing in the wind "} +{"id": "2006354", "video_name": "4cbd5498-7d05-552c-a488-a9dc458bd88d", "text": "scared a see around 24 fps. 8k cinematic "} +{"id": "2006661", "video_name": "90ad6dba-a942-5f83-b780-6ef7b551b4dc", "text": "cinematic. angry look. dialogue speaking Message: 1 Attachment "} +{"id": "1006271", "video_name": "72d032fa-edc6-5484-8687-a9a3deb602bd", "text": "lord krishna who is taking vishwaroopam. from small he become big "} +{"id": "1004521", "video_name": "54017692-9c1d-5cff-8892-e2d4a9f4fc11", "text": "A disaster film scene of Liberty City being destroyed by meteorites "} +{"id": "2006437", "video_name": "d5de8895-454b-5bf2-8229-6492a05be102", "text": "A huge interstellar warship appears over the Bund of Shanghai "} +{"id": "2007395", "video_name": "c88e3e2b-6e7c-5bcc-aed0-f129e59c765d", "text": "a 1992 camero sr car spinning wheel "} +{"id": "4003947", "video_name": "1fc70db0-739f-526e-a22e-e3f0c3f157a1", "text": "sweet, Poodle glamorous look, black thin outline only, flat design, gamer, character "} +{"id": "2007098", "video_name": "07fbfdfa-9f4f-5bd2-bd70-febb234eb2d2", "text": "pitch black camera slowly closing in on a glass visor helmet covered in slow dripping beads of condensation with eyes showing behind glass at the end photorealistic "} +{"id": "3006268", "video_name": "88046355-7bb3-5307-81db-024f4c8e0918", "text": "flying eagle. view from above. under the eagle is ancient rome with streets full of people "} +{"id": "4002334", "video_name": "3237ce37-53a2-519d-a7d2-d9b7026e6595", "text": "A beautiful girl is walking under the street lamp. "} +{"id": "0005705", "video_name": "1fd9b042-a7a0-5e86-ad50-af4b18e4b35a", "text": "create a hacker, hq, unreal engine render "} +{"id": "1003009", "video_name": "374c43a3-ecc2-53e9-84a0-514659fa724f", "text": "a butterfly emerges and flies off "} +{"id": "4003270", "video_name": "55a5cbd9-26ec-5783-8f7a-f900f5ed403e", "text": "Ecommerce Business Loans: Step into the futuristic realm of online commerce through a captivating 3D visualization. The scene depicts an expansive marketplace abuzz with animated digital vendors, each vying for attention with their compelling products and enticing offers. Against a backdrop of vibrant holographic projections symbolizing financial success, the 3D environment immerses viewers in the immense opportunities that ecommerce business loans unlock, promising a realm where entrepreneurship flourishes. "} +{"id": "0004096", "video_name": "0326bec8-8ff8-5edf-8604-3d59d16152a8", "text": "tigers surreal cage under a waterfall "} +{"id": "2006834", "video_name": "56d577b0-868e-5591-a286-dcd0fc513fcf", "text": "A dog is barking and running from a distance "} +{"id": "4003034", "video_name": "3cb85491-0bd1-5cba-927d-fd880e8be165", "text": "looking from the moon to earth with 1 piece of land looking like a helecopter and 1 piece of land looking like a crocodile "} +{"id": "1003004", "video_name": "37210a64-3aac-5cbe-a783-4a8f9b8fb63d", "text": "I was careless of all crews "} +{"id": "5001444", "video_name": "90abaa28-89f6-51f6-b1c2-471f02f26fee", "text": "Three men with skeleton mask dancing "} +{"id": "6003217", "video_name": "c7a3841b-19b2-521d-abfe-342575702686", "text": "a scene of a cabbage been cutted in comfy kitchen, studio ghibli style "} +{"id": "2003893", "video_name": "37210a64-3aac-5cbe-a783-4a8f9b8fb63d", "text": "I was careless of all crews "} +{"id": "0006800", "video_name": "33526f26-8b1c-542c-8bc3-dc5d3049d499", "text": "An adorable squirrel with a curious expression, sitting on a tree branch in cartoon form "} +{"id": "3003934", "video_name": "ca57e11c-6c14-54ea-89e3-cdac5f61cf1b", "text": "The moment when 2 girls finally reach Hades heart locked with chains in the dark. "} +{"id": "0006849", "video_name": "342c05aa-9648-5e5b-8e03-9cea862d945c", "text": "A figure stands in a world illuminated by a kaleidoscope of colors, each hue representing a unique facet of their enhanced vision. The merging of human form and augmented reality reflects the harmony between biology and technology. "} +{"id": "3005663", "video_name": "54571e47-c60f-547e-aa98-33d1681d0238", "text": "a person with messy brown hair discussing a book in a futuristic, digitally enhanced environment. The setting should incorporate trendy digital elements and modern aesthetics, creating a visually engaging scene that emphasizes the act of pretending to have read the book within a contemporary context "} +{"id": "4002648", "video_name": "8272bc8b-0489-56cc-a37d-628f63176895", "text": "windsurfer ride on sea Cyprus in storm "} +{"id": "4003183", "video_name": "ffb2cb96-a58e-5388-8c95-6f1258ec1d1e", "text": "A well designed interior of a home, chic interiors modern Message: 1 Attachment "} +{"id": "6003844", "video_name": "0c8f6853-27af-5d57-887c-c7823325b8d8", "text": "lights shining bright, mandala rotates, ethereal portal "} +{"id": "0003914", "video_name": "45a851fe-0c53-58a1-8bea-3c2bc4ea8072", "text": "Opening shot of a Dagadushet temple dedicated to Lord Ganesha. Soft instrumental music playing in the background. Camera pans towards Mouse, kneeling before the temple, deep in prayer. "} +{"id": "4004996", "video_name": "93f9402c-2407-5478-9304-fe3abcc5d1fd", "text": "An old man with glasses strolled towards the ancient temple, surrounded by a sinister atmosphere. "} +{"id": "8002903", "video_name": "2081bb94-35a0-55d0-a7fc-dd507cac932a", "text": "Jason Statham is throwing money around, a lot of money "} +{"id": "0005122", "video_name": "1539edf8-56f3-57e0-9408-00d4042c8050", "text": "A young girl named Lily is surrounded by three friends "} +{"id": "2007984", "video_name": "3e0a44ce-f205-5b0a-8347-374a3a9b1368", "text": "farmer asked him to plant a seed in his garden when he returned from his journey. "} +{"id": "3004956", "video_name": "9345259e-131b-5a31-b1e4-28dbb3e478c2", "text": "the 11th doctor matt smith facing the 12th doctor peter capaldi 4k cinematic "} +{"id": "2005956", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "a beautiful young girl closing a door of a rand villa sadly "} +{"id": "5001062", "video_name": "4b013ec1-7e49-577e-8783-5487d7792638", "text": "deers are running on the road "} +{"id": "2003819", "video_name": "ba9c3b1d-d784-561a-abb6-b4a54e074eef", "text": "extremely long shot of man walking down a dark alley at night "} +{"id": "1004815", "video_name": "5900c4fb-c13d-5c5f-b899-d05ca0d682cd", "text": "dragon, ultra wide angle, in focus, dark epic background, gorgeous lifelike, moody golden fur design, dynamic pose of a dragon, full length shot, hyper details, lighting art, cinematic, insane details, intricate details, hyperdetailed, goth, fractal, dark shot, ten seconds video, 4k "} +{"id": "8002681", "video_name": "ac9a31e2-003f-5e6b-a362-b1c030f2171e", "text": "a cat looking like a gentleman in the 1920s dancing "} +{"id": "1004270", "video_name": "4f026a92-e069-5987-bfc7-26145e8fd290", "text": "A stone ceiling and old, rotted roof, with thick black and twisted beams, the walls are no longer white and painted with pieces of faded paint. "} +{"id": "7002558", "video_name": "5185db2e-1123-5229-aa12-eb8149e5cd69", "text": "a girl was nervous in the classroom "} +{"id": "8002770", "video_name": "00a892c8-6951-53bc-a5e3-eb9e059eb521", "text": "an axe with a blade stuck in a stump under it is a red puddle , the moon is detailed, at night,scary, horror, realistic, movie, "} +{"id": "2006435", "video_name": "4d4ab7fc-2b74-5fe6-b0dc-6fafc9e381b8", "text": "I want to animate the baby to make it appear he is running away "} +{"id": "1003379", "video_name": "3e477c33-d96f-5566-8ba5-7fe6f1c47089", "text": "A vision of their busy lives, Rizwan and Sadia each immersed in their respective careers, yet finding balance in their shared ambitions. "} +{"id": "0006674", "video_name": "30c4d8ae-5e80-5288-9d42-6df9d4636380", "text": "dead bodies of villagers laying on ground due to war "} +{"id": "8003310", "video_name": "d6a20ea4-d6a1-5967-bcc3-670c32d7e0e9", "text": "Nightclub security often deals with conflicts. Training in conflict resolution techniques is crucial to peacefully resolve disputes among patrons. "} +{"id": "1004302", "video_name": "4f8660c8-a1ff-5b27-bb08-f8df7877b1d4", "text": "A lush, vibrant jungle with tall trees and various animals peeking out from the foliage. The lion and the mouse are introduced in their natural habitat, showcasing their stark size difference. "} +{"id": "3004437", "video_name": "9de8c3ea-c4e9-5843-959c-6642a6caa69d", "text": "dawn in the mountains, eagles fly and their feathers shimmer in the rays of the sun, 8k, realism, clarity "} +{"id": "3004616", "video_name": "b53db4f0-d4db-5a3d-9886-87b323e3c660", "text": "an enjoying coffee in his balcony "} +{"id": "1004196", "video_name": "4d92b957-e93b-52cb-a4d6-f9d13ec5377d", "text": "Illustrate Emma waking up on her rooftop, with a twinkle of magic still in her eyes. "} +{"id": "1006862", "video_name": "7d4cdcb2-ffb1-505d-8d13-d4c62d4734f4", "text": "a little ant, anime style, has red color, nice, talk, white background "} +{"id": "3003987", "video_name": "1813ad4a-0d0d-5b06-9e7a-2d4575c878f8", "text": "A boy pulling a girl running in the forest "} +{"id": "8002029", "video_name": "8fde8f12-4b8b-55b6-b307-9d4f248b96bf", "text": "Rene Descarte in the year 1600 in front of a window at night writing on a piece of paper "} +{"id": "7004211", "video_name": "3951dbbd-4070-5efe-a79c-ece885f5a1b2", "text": "A old man holding the kebtek electric pruning shear trimming the apple trees "} +{"id": "0003691", "video_name": "41c04736-208d-5685-9832-e4635751d34d", "text": "a American shorthair cat, close to the camera with a curious eyes, smell left and right with her nose, then meow "} +{"id": "2006221", "video_name": "dacff108-104d-56f0-bca6-d3ee06fd5765", "text": "Japanese man on wheel chair , blinking eyes and talking , animation "} +{"id": "2003054", "video_name": "4eada02a-8602-511b-a3f6-c6f557eda919", "text": "lights flickering woman gleaming from intense red light "} +{"id": "2006284", "video_name": "f59002b9-ef45-585e-82c5-7909687aee0c", "text": "white mold spreads over a black ball gs 10 ar 9:16 motion 25 "} +{"id": "0003201", "video_name": "39249eea-fa7f-58f1-9adf-6095ececb5e9", "text": "a messy forest of trees morphing into snakes, realistic, cinematic, surreal, ethereal, misty, 4k "} +{"id": "6004818", "video_name": "c6e578dc-81ff-51f6-86b2-3b898866b4f9", "text": "man praying in a cave a single beam of ligth is over him "} +{"id": "7004926", "video_name": "c9a668f3-3de7-5f46-a7bf-ce6858f896d3", "text": "the view of an abandoned forest on fire at night "} +{"id": "6002595", "video_name": "0e0abd97-01ce-5956-a22d-4018c9badb2f", "text": "Wagner Group officially PMC Wagner is a Russian "} +{"id": "1004637", "video_name": "563b4051-8d34-54fe-934d-0dc3cb25d3bf", "text": "a simple drawing of cute squirrel "} +{"id": "0003921", "video_name": "45cab9b7-0ae9-5171-8f9e-74ab3eb3d983", "text": "logo the name topography algeria with symbol lieca station "} +{"id": "5001239", "video_name": "48fcc0fa-490f-577c-9bca-160985771fba", "text": "Happy new year in magic forest "} +{"id": "3006760", "video_name": "6d2fd0e7-5d70-585b-91ed-aeecc8bd1cd1", "text": "An alien coming out of a mall of new york in modern attire, cinematic, 4k "} +{"id": "6004210", "video_name": "24ce3d85-e026-5b7f-a848-5f96bfdc4aef", "text": "3D Animation a young docter walking in the hospital "} +{"id": "7002962", "video_name": "e60a0c12-0389-58a8-9f92-acc437e94e65", "text": "cinematic and dramatic 4k footage of a jelly donut squashed by a giant foot. "} +{"id": "8003667", "video_name": "abc82633-5ca7-5846-8b00-a4b445c9e6bb", "text": "A photo real cinematic video of people working in an office. "} +{"id": "0005582", "video_name": "1d7a89e4-db8a-51f8-8f94-8c04e2057617", "text": "cinematic slow motion of clouds movement Message: FUN (Font: MODERN) "} +{"id": "3006127", "video_name": "57b983af-9c51-561b-b5aa-186a724a558d", "text": "At night, the snowman was drinking heavily while peeking at the beautiful woman with a colorful expression "} +{"id": "3005672", "video_name": "e46db87e-4772-5b06-955c-88c6b097569e", "text": "animated, retro scifi spaceship floting in space "} +{"id": "4004185", "video_name": "a6d6df4b-b3f1-5dd2-ad7e-9fef81b0f15c", "text": "exotic frut on a island people are all over the frut "} +{"id": "8002762", "video_name": "b00fea11-233b-5f41-9282-d9146472c1cc", "text": "Visualize the lively hare, with its long ears and agile movements, hopping around the meadow with excitement. "} +{"id": "5001100", "video_name": "2f7eaa44-0e37-5b45-a979-73b790273806", "text": "a moonlit night, a house with trees around it, chidren playing infront of the house "} +{"id": "4002395", "video_name": "34d957db-7969-5441-a776-2546879bdd4c", "text": "a born of a beutiful star in a Milky Way, realistic "} +{"id": "3004597", "video_name": "494e4a07-38a5-571e-a83d-040f552e6075", "text": "a girl dance in the living room, in front of a fireplace and a Xmas tree "} +{"id": "2003525", "video_name": "aaf52d6a-a06f-50d9-9511-220db0e86ec6", "text": "Happy birthday greeting card for woman, image "} +{"id": "6003357", "video_name": "0797db8b-04b1-5c39-9e54-df55fb304fe5", "text": "cinematic of a dying tree and an overcast day, add a family watering the tree, the tree grows green leaves and the sun starts to shine. "} +{"id": "2005905", "video_name": "411e7d2e-7ee2-5e23-8484-41238c2eda3e", "text": "Monica for President on the shirt of Taylor Swift Message: Monica for President (Font: MODERN) "} +{"id": "2004247", "video_name": "b64ce7ba-e569-566a-b40b-fb5054ff1277", "text": "britney spears wearing pink bikini doing WIERD FREAKY DANCE "} +{"id": "7002525", "video_name": "1928f387-ee4a-5005-a6d2-06b9b83d836d", "text": "salmon swimming up the river then jumping out of water to dodge bear then splash down in the water and continue to swim up against the stream, the bottom of river is rocky and bubbles flow with the water . "} +{"id": "7004201", "video_name": "a69e953d-25f4-5809-a9cd-ee490a1382e0", "text": "dj on stage, hands waving, clapping "} +{"id": "0003168", "video_name": "38816180-974e-50ad-bc6f-bc857a1e268f", "text": "Kharkiv patrol police inspector fines the offender for speeding "} +{"id": "7004174", "video_name": "14ddf777-ac12-530e-899e-842b458f4b5f", "text": "50ml alunimium silver bottles with screw caps being thrown upward then fall downaward, off white background. light from front. camera shooting from front, energy. bottles a in different directions. high contrast. 8K. high resolution. realism. surreal. in the style of vogue. modern stylish. "} +{"id": "2006546", "video_name": "63ccbfc4-6011-5ab4-82ba-b4e05493f134", "text": "iron man as disney fight war scene elephant "} +{"id": "6003200", "video_name": "f56b3eca-af61-54ae-b448-3478259ac989", "text": "Hanse gazing into the mysterious forest. Message: 1 Attachment "} +{"id": "7002059", "video_name": "c74a49ca-d816-59e0-aef6-c6e304e3b3e6", "text": "sparkles carry a book across a dark room "} +{"id": "8003299", "video_name": "90b03a25-3643-59e9-806e-4eeead03e993", "text": "in the 19th century, two men fight, one runs away and gets into a car, the second gets into another car and goes after him, the two of them fly out of the cars off the road and fall, jump out of the cars and fall right on the train, after which they begin to fight hard as a result, one man carefully jumps off the train and lands softly, while the second continues to ride "} +{"id": "4002002", "video_name": "839c93ea-66d1-5b76-8b11-d3a08591b9c1", "text": "Cinematic 4k ultra HD realistic spaceman in space planety in background and sun "} +{"id": "7004028", "video_name": "b2b83128-4b6f-51b4-beb6-09073aa2c9a1", "text": "2 anime kids in web 3 city park and a talking hologram holding a coupon "} +{"id": "3006502", "video_name": "b1918c9a-adb4-5ca0-b4ab-e300bf8dda05", "text": "Luna, in her radiant wedding gown, takes her first steps down the aisle with her beaming father by her side "} +{"id": "7004854", "video_name": "d370a3bb-6693-5bba-9239-b8e8829d2fcf", "text": "Gathering of men and women around a massive bonfire, moderate wind, artistic lighting effects "} +{"id": "0003845", "video_name": "4479a391-2ed4-5d31-9c61-f9da129389b1", "text": "3 medieval Jesters hold hands and dance in a wheat field, in the style of The Holy Mountain, 4K "} +{"id": "5001001", "video_name": "9977e2c9-ec2e-5d12-a9f2-c6ae57fe62dd", "text": "A Flower pot Clipping In A Table Shaking Rapidly "} +{"id": "3004260", "video_name": "723633d5-27e2-5f4f-89b1-0f066d099320", "text": "Generate an image of Mike walking deeper into the town, noticing abandoned buildings with drawn curtains. "} +{"id": "4004078", "video_name": "e59d5a0d-d365-543b-9312-9cf7d5b1e742", "text": "Effect of visual drugs, LSD, acid trip and hallucinations, anime style, 32k, colorful "} +{"id": "2007725", "video_name": "acf8e2c4-1672-5cda-aa8a-1abe55fee7e6", "text": "cinematic rocket launch from mars surface with wierd weather effects "} +{"id": "2004201", "video_name": "f398e326-92f6-5106-96cc-1aed3c8d36f2", "text": "inisible hemisphere aircraft from wire made "} +{"id": "1005114", "video_name": "5e499aef-d61e-5b6b-b6f2-a07454e2afd1", "text": "Indian sweet shop and his owner he is cooking laadoo "} +{"id": "7003061", "video_name": "7ff05bf4-0009-513f-9ac7-21097826cf71", "text": "A cute white rabbit wearing a blue shirt and yellow shorts, jumping in front of her house in the forest "} +{"id": "5001303", "video_name": "fa1c878d-9620-5c96-86aa-f59be2399ec6", "text": "cinematic 4k business proposal fantasy fps "} +{"id": "6002034", "video_name": "d84ab2b9-2ca8-5447-9c99-61fa485fa1db", "text": "Abstract oil painting where swirls of vivid colors represent the natural world, intertwined with metallic silver and gold streaks symbolizing advanced technology. The blend creates a captivating visual representing the merge of creativity and artificial intelligence. "} +{"id": "2006339", "video_name": "2f55819c-c133-58ab-bcb3-886f6f2227dc", "text": "use the in image as a fighter Message: 1 Attachment "} +{"id": "2005628", "video_name": "0cb57d52-bea3-5eab-9229-61859ce2311d", "text": "birthday, Nastya girl is beautiful, joy and fun "} +{"id": "3004280", "video_name": "51f33ca1-0b13-50c0-a565-09c2c1057039", "text": "at 9:30pm, in a dark room with TV light, an cute potato is sitting down on a couch while looking at the phone, and then grab the Fanta fizzy drink, 2G "} +{"id": "1004504", "video_name": "537694bb-9f7d-5bc5-b589-634838569cd3", "text": "I lift my voice, so pure and bright, in disney style "} +{"id": "8003876", "video_name": "43a8184a-4e20-50c0-947d-5e566a0f557a", "text": "a scene of a park in winter. a man sits on a bench reading a book. It is snowing. He us turning the page in his book. "} +{"id": "2006892", "video_name": "45f16f00-c995-509a-b1b0-172cda9b04d6", "text": "Nigerian lady standing before a big screen that is showing admission into NACABS POLYTECHNIC Akwanga, NASARWA STATE Nigeria in collaboration with the Blossom institute of management and technology. "} +{"id": "2007862", "video_name": "70851785-c8a9-5501-b171-fd254194e117", "text": "joker tied up batman from ceiling of a garage "} +{"id": "2006699", "video_name": "86214294-bdb2-5875-a4b4-fcb583b2e2d3", "text": "People partying in nightclub with pink neon lights "} +{"id": "1006834", "video_name": "7cf9784e-4f39-52e8-a257-327139704fe2", "text": "Fireworks on the Island from a High School "} +{"id": "6003215", "video_name": "0add6dad-15d1-5cef-957e-c68b518bbe10", "text": "An epic spaceship is flying in space towards the sun "} +{"id": "3004218", "video_name": "9c8ab2bb-e17f-5ec5-803e-a6f199c2bf04", "text": "Expensive topwater fishing lure with Japanese style, single big hook, clear finish, bass fishing, floatinh in front of a big wild black bass "} +{"id": "6002038", "video_name": "0c7dd09b-6a40-5bd9-bbef-b7401b027a19", "text": "image about trainings in public cloud "} +{"id": "2004102", "video_name": "c61909c1-c782-596c-9d38-d5c46cd00092", "text": "The horse moves up and down and the clouds move around it like an amusement park "} +{"id": "4004719", "video_name": "083dfdc6-2e22-548f-9ed6-bb465e656580", "text": "animate waking girl and movment on flowers and trees leaflets "} +{"id": "1005732", "video_name": "69780e29-6463-5c39-9b89-46ba55c1f405", "text": "a sheep is taken by an UFO "} +{"id": "2004225", "video_name": "c860b399-07a2-5138-83f5-9c85ba36dc58", "text": "An elf and a Sprite sit on a trees limb "} +{"id": "7002081", "video_name": "e7903f34-b01a-577b-b71b-72727e482c88", "text": "studio ghibli woman soldier fighting demon beast anime "} +{"id": "0006819", "video_name": "33a12bf0-e8ec-58f3-b9cd-b24e51f6bea9", "text": "Majestic Asian Elephants moving gracefully through vast landscapes. "} +{"id": "8002576", "video_name": "b5fcc840-c3cb-5231-9c33-a6f5e5eecb82", "text": "A fighter jet shooting a homing missile at a fleeing car. "} +{"id": "8001428", "video_name": "c2f86f33-bb5b-5d57-b35c-7c9313ac309b", "text": "Elon musk djing in a club "} +{"id": "4002482", "video_name": "3736d1f0-167e-5924-809b-c4fd75268247", "text": "four boys in forest having map "} +{"id": "3006817", "video_name": "955f5196-c643-5ec3-8209-1a7047f5f80c", "text": "toop view of a car moving through traffic "} +{"id": "4002636", "video_name": "1ef64844-c841-561b-a562-be7852767aab", "text": "4.\tAlong the way, Kaveh encounters other characters who join him on his journey. Some of these characters are allies, while others are enemies who seek to stop him from reaching Narges. Kaveh must use his skills and strengths to outwit his opponents and overcome the challenges that he faces. "} +{"id": "7003797", "video_name": "8f1fc829-7f32-5fe2-87aa-2321bdf0d8eb", "text": "a man djing at shambhala music festival "} +{"id": "2004529", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "luminiscent plants and trees in a futuristic alloy and neon city with stylish gardens Message: Technological Inno (Font: MODERN) "} +{"id": "5001426", "video_name": "4b2b0fb2-91c0-52a0-8b30-438681632fed", "text": "what if zack snyder made an anime "} +{"id": "2007491", "video_name": "9e0ea7e0-6245-569b-8aca-1fc9e8018b34", "text": "very muscular Asian judo athlete , clear Face detail , flat, front view , white background "} +{"id": "8001994", "video_name": "1b6d7af0-9b77-5e8f-90f5-448ddc819a74", "text": "amazing girl pray God in evangelical church and see miracle. After she is eating bread and drink wine, realistic. "} +{"id": "1003580", "video_name": "41f13876-61a7-5f9c-a9e8-7485f5be4a1f", "text": "A little boy in zeppelinfeld. In high resolution 4k with colors "} +{"id": "1006148", "video_name": "709e06dc-5b56-5498-9fcd-e1777bcfe738", "text": "2 kids helping a old lady carry a fruit basket hd "} +{"id": "2006552", "video_name": "66ae7774-84a4-5ba4-9f9d-245ae3473ec8", "text": "a tiny female robot pink and white running over a schoolar bus "} +{"id": "2003014", "video_name": "8bd7554b-475d-50cf-86a6-96cfe6e6c05d", "text": "Promt: flying cars bring supplies in futuristc city, color violet and green, sunset and many people are waiting "} +{"id": "3006216", "video_name": "64dcea2b-bffc-5f94-b787-4a6e9af80927", "text": "scene of an elderly person sitting in a house talking about good customs of the nation to young children "} +{"id": "3004246", "video_name": "e4bd47da-773d-5454-9781-43f952b851b6", "text": "create an image of a bat symbol and flaming on the symbol "} +{"id": "1006600", "video_name": "78ed4476-f57c-5b39-b167-5bd07110d6a0", "text": "a snowman is standing on the snowfield beside a ginkgo tree. "} +{"id": "7003698", "video_name": "4f9785d5-573a-5ba3-872f-8312e7641b00", "text": "Humans have defeated robots, humans are cheering, robots are crying. "} +{"id": "0005270", "video_name": "179a07e2-c08a-543c-a4bb-0b42833d993a", "text": "A close up of a ceiling rose with letters going in a circle Message: Rebel Rosettes (Font: BAUHAUS) "} +{"id": "3003938", "video_name": "f18f7b31-bf2e-5b34-8b2b-5753313cd163", "text": "witch village, fantasy, camera 3d , rendering, mystery mind. "} +{"id": "2003281", "video_name": "77d2643c-cf77-5973-9d5c-25a651129652", "text": "floating red baloon hearts in the sky "} +{"id": "1006416", "video_name": "757b374b-2330-57d2-b02b-58cf4164e1fd", "text": "Create an animation of a dolphin "} +{"id": "7003031", "video_name": "3497618f-cd75-593b-9994-593d1f28752c", "text": "the concept of fate as an abstract painting "} +{"id": "7002199", "video_name": "5d9840f5-4973-5e45-98bb-394a73f053fe", "text": "seamlessly looping abstract pattern video. The patterns should be colorful, fluid, hypnotic and continuously evolving. Use a combination of geometric shapes, liquid effects, particles, light rays and transitions to make the animation visually captivating "} +{"id": "1003316", "video_name": "3d15d630-476a-5950-b0ec-12cbce566bd9", "text": "man getting in car, profile view "} +{"id": "7002014", "video_name": "821e232e-b6aa-5df8-be88-24aa139b43cc", "text": "shining sun in the face and wind in the hair "} +{"id": "2005883", "video_name": "18c85ff5-ff5d-597d-9806-b4983175a7d6", "text": "construction worker painting wall for cloud "} +{"id": "5001078", "video_name": "409473f8-5f73-56d3-99d5-eadc3dbc3100", "text": "knights wearing red capes marching into battle on a foggy battle field, scene from movie, game of thrones "} +{"id": "3003955", "video_name": "a5e69e6b-c953-52cc-bcf9-1c6c18bf1ad2", "text": "make a video of a man counting "} +{"id": "3003875", "video_name": "3d8d72e5-cc61-552f-9047-34cce27c99cd", "text": "make a video of a robot fighting with a person "} +{"id": "2007886", "video_name": "e422697b-98e8-52a6-8959-b0fb1abc5e73", "text": "Pirate grandpa cleaning thanksgiving dining room with a garden hose in a vintage Tim Burton film style. "} +{"id": "6003620", "video_name": "8d3ec597-a626-5875-afa7-de91e9bc1c1e", "text": "Suzy accidentally enters the magical forest where the trees sway gently, leaves turn into colorful orbs, and they float in the air, creating a magical ambiance. Suzy begins to explore and encounters strange creatures like talking squirrels, winged rabbits, and owls. "} +{"id": "3003656", "video_name": "08e2d6c9-63a5-5a3b-a21c-34a16a20f58c", "text": "the man in dress suit and bulletproof vest walks through dark room with lots of aquariums with fishes and sharks inside them, cinematic style, 007 movie, neon light "} +{"id": "1006346", "video_name": "742968ca-6a4a-523f-862c-19200440597f", "text": "Brothers 14 and 10 years old, sitting on the couch, looking at the calendar and discussing plans. "} +{"id": "4003621", "video_name": "f8978fe0-d488-571b-a2c8-b7f747e0dd70", "text": "The sight comes from space to the earth, to China, to Guangzhou "} +{"id": "5001242", "video_name": "876805f9-fb7e-5979-a1e8-24bae32fdb66", "text": "monster chase, 4k, hyper realistic monster "} +{"id": "7004529", "video_name": "471474a9-2e44-5b61-bdcf-d9e3efaf6e51", "text": "cat and dog fighting next to elderly woman on a sunny day "} +{"id": "1004148", "video_name": "4cd2a6b5-f37a-577c-bcd5-6399f8caa6e4", "text": "side view of a christmas clerk working at a desk, ar: 16:9, motion: 2 "} +{"id": "2004897", "video_name": "ba4f0156-abae-55df-a83f-68adf7abdd52", "text": "The sunlight outside the window is rapidly changing angles, and the flowing water cascades from top to bottom like silk, splashing onto the table and entering bullet time. Message: 1 Attachment "} +{"id": "0005828", "video_name": "21da9430-d0dc-5d20-9026-847431ab6581", "text": "huge meteor falling on earth, realistic, hq, atmospheric, cinematic "} +{"id": "4003142", "video_name": "6fcdbb4e-a7d8-51f6-9212-5d527632fb96", "text": "Centuries ago gorillas lived freely in a pristine environment in the middle of a magnificent forest "} +{"id": "3003589", "video_name": "7853abc1-674b-5c20-b776-529228154601", "text": "Cats programming on a computer, wearing scientist coats. They are in a laboratory. anime style "} +{"id": "4003670", "video_name": "e6c2ac5b-b19d-525e-8d95-d632bf22ca52", "text": "A beautiful Chinese girl is walking along the Bund in Shanghai. "} +{"id": "0006877", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "Two stars shining bright in the London sky, dark blue sky, magical, 70s dark fantasy style, live action, realistic, cinematic, vintage, HD realistic, ULTRA HD, 70s movie style "} +{"id": "2006866", "video_name": "84503d64-9e6a-531a-abac-8af48434ff74", "text": "old house, surrounded by fog, shadowy bigfoots, shadowy aliens, "} +{"id": "3006655", "video_name": "0e1b6b6c-21a6-5721-b988-ecd6ad69cdbd", "text": "Consider a vector illustration with a lush green background representing a forest scene. In the foreground, depict a tree with a playful monkey climbing on its branches. Around the base of the tree, include various other animals, such as squirrels, rabbits, birds, and maybe a deer or two. They could be engaged in various playful activities like chasing each other, hopping around, or perched on nearby branches "} +{"id": "3005141", "video_name": "d8525005-d52d-5f7d-bbbb-5dddaef539dc", "text": "frightening spirits on a darkened cell, realistic environment, dramatic scene "} +{"id": "6002584", "video_name": "8d100d1c-0d2e-5fd1-848e-74e51428a4ba", "text": "abstract illustration of the universe melting, planets dripping like paint, neon colors and super black background "} +{"id": "2003718", "video_name": "444d7c1c-e31f-58f9-9d09-12bd61c08990", "text": "a happy arab man farmer happy for getting something "} +{"id": "2004019", "video_name": "1defedf6-fd25-5980-8b12-a0d1856fd3fb", "text": "dimly lit high contrast 3D cube scene "} +{"id": "0004663", "video_name": "0ce51b0b-4da1-5b41-bfae-324763d813a0", "text": "scary dragon flying over a perdina town in the forest "} +{"id": "6002871", "video_name": "10598384-ed5b-560e-a614-2eea8022e5b5", "text": "a realistic photo of a human face with beard made from melting meat and vegetables in the style of Giuseppe Arcimboldo, in a plastic package in a supermarket "} +{"id": "4004818", "video_name": "2dce4206-b6f6-53f8-a86f-a69fb6933eae", "text": "Hollywood thrill movie style, There is a medical school that, in order to educate quality students, stipulates that during the final exam of each semester, a student should stay alone in the morgue for a night. Although this kind of exam seems inhumane, the school has always insisted on it. Come down. "} +{"id": "4002091", "video_name": "7d8614f6-26a9-5fa7-84e8-d7687d880c43", "text": "rajinikant wishing happy birthday to Nate "} +{"id": "8001796", "video_name": "0770f25e-c895-5d35-9850-1be5d9b6bfbd", "text": "make girl in the middle of a sunset forest full of different plants "} +{"id": "1003957", "video_name": "491c10c7-2ba0-5c00-9ffb-f7d77f3bce7f", "text": "10 seconds long, Christmas , House, Fire "} +{"id": "1006135", "video_name": "7069bad4-acdf-56a5-93f5-d9449718c471", "text": "Empress Anna Ioannovna takes the letter from the hands of Mikhail Lomonosov. oil painting "} +{"id": "2006844", "video_name": "e9f09a86-cac0-5b84-ad77-ae48bf36f312", "text": "Eren Yeager stared at the village that was invaded by the Armored Titan and the Super Giant. It was in a mess, and Eren was very angry. "} +{"id": "2004543", "video_name": "9c9dcc1e-200f-5b9d-aede-d8a065c742ac", "text": "a man helping a child who wants to cross a crowded highway "} +{"id": "2005857", "video_name": "8552ec8f-2c5b-53d7-98b0-04c7ce8f93a6", "text": "data security for background image 1:1 "} +{"id": "8001349", "video_name": "7e7fc7ad-0aa6-5163-8e2d-dad8b69e5317", "text": "light being blowing heavenly trumpets warning the world, slow motions "} +{"id": "0005500", "video_name": "1be4cbdb-3480-5c79-93d9-bdde473e9e61", "text": "a pixel scene of a Puerto Rican man held up in a small room with guns and a gamer setup with the door boarded up trying to survive a zombie apocalypse. Make this in pixel art. "} +{"id": "6004789", "video_name": "701c39da-0820-57cb-9e5f-fec48abaf669", "text": "Animate rotation burrowing owl on the background of a golf course "} +{"id": "0006712", "video_name": "318a2ea2-56db-5de6-87af-d1d86945c77e", "text": "a hyper realistic macro photo of a tiny, bioluminescent, grasshopper, with spots, in the dark "} +{"id": "8001738", "video_name": "6a909d6b-1195-5cba-ab3b-0a7721a2b9de", "text": "neon knights in neon streeth cyberpunk "} +{"id": "8003633", "video_name": "b9239750-8b79-5ce3-8b50-611b33e390ab", "text": "(The leader of the poachers is finally subdued. Reinforcements arrive and apprehend the other captured poachers. The wild elephants join the scene, keeping a vigilant watch.) (Wide shot showing the arrested poachers surrounded by rangers and elephants.) "} +{"id": "7004752", "video_name": "6b8ce25c-68a1-5128-a1a9-7d2fa9be8fa1", "text": "make me a scene of fighting anime in retro anime style "} +{"id": "4003839", "video_name": "41d88ecf-ff0c-583f-a276-d6af4e8cf285", "text": "a man wearing tuxedo engulfed flames "} +{"id": "1006520", "video_name": "7745d7f6-aae5-53d5-bd70-4d2a43eeed45", "text": "The streets are empty, with most people huddled safely inside their homes, seeking refuge from the tempestuous weather. "} +{"id": "7003436", "video_name": "f941c9f4-e0a0-595e-81d1-b0ad2d27bb59", "text": "and keep marveling at the wonders of our world. "} +{"id": "6003360", "video_name": "cad6f414-cbe5-5d04-bd45-c57d096fec19", "text": "A distant, chilling laughter echoes through the empty halls. Suddenly, the lights flickered, revealing shadows closing in around Sara.The laughter intensifies, and the shadows converge as Sarah races towards the exit. "} +{"id": "1005636", "video_name": "679ee20f-66ca-5660-a0e1-038a4075b6a5", "text": "The sands of the desert erupted and I came out of them as a huge scorpion "} +{"id": "4003150", "video_name": "98cc0094-d603-5425-b1a8-e5a6f73c23fa", "text": "kid watching a funeral, cinematographic, realistic, melancholic. "} +{"id": "3003371", "video_name": "f8ab5250-1a24-53c7-a085-0021bd469d22", "text": ":Same woman in Victorian dress running from a bear, 16:9, classic comic book style "} +{"id": "7004168", "video_name": "ccd66a47-f2da-5211-86db-b95f548686f0", "text": "a paoramic view of futur city like blade runner night smoke fire and blue lights "} +{"id": "8003293", "video_name": "6b516f11-7b1f-5257-86c5-a35d721192bd", "text": "a guy comes near orange dress guy near at tree as anime "} +{"id": "7002420", "video_name": "cad05055-f42c-5d53-854b-e475f0d06357", "text": "the young queen meet beautiful bird spairo cartoon style "} +{"id": "4004141", "video_name": "e34ea704-d0a4-522f-a073-4a4560bfc631", "text": "a aeroplane write Rakesh in sky thier own smoke "} +{"id": "2004736", "video_name": "cce8e9bf-d853-5d21-84f3-7ca57d69a8d5", "text": "Create captivating full body zoom out shot high resolution, crystal clear scene focusing on a group of robot women with headphones on and one with a surprised look on her face females driving a tractor chassis in an organic environment. The girls have a plastic texture and is shiny and very clear plastic. working together on a farm outdoors, depth of field. Chiho Aoshima, rossdraws global illumination, cyberpunk art, afrofuturism "} +{"id": "3004276", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "surreal background, psychedelic effects, pink and yellow, sunshine, sun rays "} +{"id": "5001218", "video_name": "d4bba39e-d26f-5a69-b153-6eb9f98d11af", "text": "Bolts of lightning crackled through the air "} +{"id": "1006190", "video_name": "715ed938-d776-5e45-8c50-31ea60f48600", "text": "thick hiphop gold chain necklace displayed on black velvet. A medallion made of pink and green diamonds spelling the words \u201cGoGo Casino\u201d is hanging from the necklace. Pan from left to right. Slightly zoom out. Add a bling from one of the diamonds. 16:9 4K cinematic. "} +{"id": "4003484", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "Compose a dreamlike image of a meandering river winding through a lush valley, flanked by towering trees and vibrant blossoms in full bloom. "} +{"id": "3003002", "video_name": "b1d1980d-fc1c-56ed-8f42-688ed07a0467", "text": "Finley hesitates for a moment, torn between his hunger and curiosity. He finally gathers the courage to speak. 4k ultra realistic "} +{"id": "0006876", "video_name": "349b1d1c-ab0d-5e48-bfc7-52421bb54cc5", "text": "mickey mouse dancing on a house "} +{"id": "4003201", "video_name": "22bab142-a6fe-5902-9cf5-85a0e064b266", "text": "A forest bisected by a river "} +{"id": "1003415", "video_name": "3f128152-4e0f-5a8b-8499-3ab6407f6fc4", "text": "different cupcakes are spinning in circles "} +{"id": "7004173", "video_name": "02488363-c239-566e-b1f0-adcf75de6599", "text": "An illustration of the villagers arriving at the hilltop and finding no wolf, only the boy laughing. Show their puzzled and annoyed expressions. "} +{"id": "6004902", "video_name": "590758ab-d7d6-5c40-a158-fcdb64e7d1d6", "text": "Wushu fighter in battle with a karate master "} +{"id": "1003040", "video_name": "37c7393d-b370-58b6-9fba-70de1f28ce09", "text": "An astronaut kangaroo swimming in the space "} +{"id": "0006700", "video_name": "315d071b-46df-55fd-bd49-6f569a653a8b", "text": "cinematic 4k footage of a robotic butterfly flying in a green forest full of flowers during a sunrise golden hours "} +{"id": "4003828", "video_name": "ba7e5e84-4612-59a6-8a95-54292539c6c4", "text": "cat is jumping on the cliff "} +{"id": "4002896", "video_name": "7ba114a8-fd3d-5bdf-8f60-444d6f179a75", "text": "superman fly in the sky on the orban city "} +{"id": "1003506", "video_name": "40cd2dd4-2560-539e-add6-54acdb99c8c6", "text": "mac miller hyperrealistic in a wing suit base jumping with shades on looking gangster 1950\u2019s style "} +{"id": "2005269", "video_name": "875caba2-689e-5014-925e-f8e5025c8485", "text": "a boy, playing video game, in a room, splashing light "} +{"id": "8001859", "video_name": "95c399c4-ef87-5771-9147-7d051dbf2f94", "text": "Eager to learn more, sea bass named Benny listened as Tessa the turtle shared tales of the enchanted crystals. These magical gems held the power to amplify the positive energy of the ocean, creating harmony and happiness among the sea creatures. Inspired by the tales, sea bass named Benny felt a newfound sense of responsibility. "} +{"id": "8002322", "video_name": "37989e05-972c-5286-a235-03ec39eea7ff", "text": "vide for 1 minutes sadness man running in the desert in a storm "} +{"id": "8001565", "video_name": "8b3d2bd3-8db3-5c49-9f97-39571fcfb4d8", "text": "a close up of Dr.umar Johnson and Taylor swift getting married "} +{"id": "2006644", "video_name": "e19ccd8f-d8df-54be-9913-7c0dff40c1c1", "text": "a boy sitting in a river "} +{"id": "3004670", "video_name": "3b03281f-4cf4-5fdc-948f-0d690f8d703f", "text": "An old hut in the storm "} +{"id": "8002413", "video_name": "5c04f24a-1242-587e-b7ca-c659004ee128", "text": "a jungle with river and different animals, birds and reptiles in the bank of river drinking water, water fall in the background different colours flower and wind "} +{"id": "2007196", "video_name": "264e1182-52b5-53a3-aa2c-100dabef00da", "text": "shadow of a hand on wet glass. Mysterious "} +{"id": "1003744", "video_name": "45190aad-caa9-5b30-b12f-d77e545da24a", "text": "movie film, princess, that is 16 years old, with black down long hair inside a castle, talking really fast, and doing hand gestures, 4k, best quality, beautiful face quality, beautiful realistic background, focusing on face "} +{"id": "0003931", "video_name": "0010bacc-b8f4-5605-975f-016d939f0066", "text": "an ant, a caterpillar, and other insects are in one frame "} +{"id": "6002294", "video_name": "fd357b9c-2603-5338-935f-5476bcf93fbd", "text": "Boy running through a field of butterflies in ireland "} +{"id": "7002047", "video_name": "a50cb89c-0b00-52ad-a611-4c826e7fcd58", "text": "passenger plane flying through the himalayas "} +{"id": "0005469", "video_name": "1b545f71-b00e-582d-bdc5-2abca7eb1e9c", "text": "Alice falling down the rabbit hole,American McGee Alice "} +{"id": "0006506", "video_name": "2db0ac4c-8ad8-54ef-bd6e-2951f8bfcb48", "text": "hyper realistic , 4k, detailed, dragon breathing green fire, big, ancient, dark scales "} +{"id": "7002028", "video_name": "ff7d2619-2583-5acf-bc9e-8ba969c810e4", "text": "majestic lion with beautiful mane Message: PANORAMIX (Font: MODERN) "} +{"id": "7003985", "video_name": "297b0ba6-f370-5ab4-95dc-7bada8c90bf3", "text": "2 green aliens djing at the club, lasers, glitter, lights "} +{"id": "0004850", "video_name": "104523d9-a681-5c9f-9067-185508777cf3", "text": "Futuristic cyborg mechanical camel walking down a busy street in Riyadh Saudi Arabia, in the style of Ridley Scott "} +{"id": "0006572", "video_name": "2ec901ac-52da-5e15-a7c2-f376800219a0", "text": "A incridible view from a spaceship on a red planet "} +{"id": "1004387", "video_name": "510de896-4cbd-52c6-8a8a-2ad02783f7f5", "text": "a line of people walking up into the sky "} +{"id": "6002659", "video_name": "b787edf2-c468-5e8a-a86a-aa6ebef7da52", "text": "A deer is running happily in the forest, the forest is slightly smaller, the deer is slightly larger, sunny day, windy, leaves swaying, cartoon "} +{"id": "3004884", "video_name": "7e076f7a-21d6-5798-8fd5-6d0d9bb291ae", "text": "The shoes of the future are shining "} +{"id": "1004785", "video_name": "586be18c-c61d-57ff-8d03-01f25827350d", "text": "a big net wrapping around a fantasy character "} +{"id": "4003944", "video_name": "92918716-c471-5268-9dab-26948ec6517a", "text": "Kids chase the mischievous ball, laughing all the while. images cartoon "} +{"id": "7002635", "video_name": "e00ab37a-9854-56e5-b88f-4ca6a54e225c", "text": "He was known for his unwavering faith and his dedication to helping those in need. "} +{"id": "1004468", "video_name": "52ba6fed-d2fb-5b7e-b31b-dbde05e0a4b8", "text": "sunset clouds. camera rotate clockwise Message: esterillas (Font: MODERN) "} +{"id": "8003855", "video_name": "f0160bc0-0493-5ccc-a343-c3c9ccfa491b", "text": "boieng 747 is flying, very clear "} +{"id": "1005821", "video_name": "6af9b0de-b093-5e96-89cd-795dac178170", "text": "a dog running in the moon, detailed, HD "} +{"id": "0004357", "video_name": "079c8e35-3891-5659-963c-29f281c81634", "text": "Drone approaching an abandoned building from the inside "} +{"id": "8003815", "video_name": "83f682e4-656d-500d-a2eb-d47fa2c8a85a", "text": "Show a dimly lit room with textbooks strewn across a desk, possibly with a clock displaying a late hour in the background. "} +{"id": "8001832", "video_name": "ffd3b2e3-f6d0-5903-be3e-1d71e49cb521", "text": "The ant worked very hard and in the end he built a very beautiful house Message: hg (Font: MODERN) "} +{"id": "8003901", "video_name": "3eecb0b2-baca-52c3-bf15-c0ff7fdd47bc", "text": "cute alien stare at stars in the sky On the railing above the building "} +{"id": "6004579", "video_name": "50087c4a-8e12-5f00-9f6c-51c5a71f4266", "text": "cosmic angel, slow motion portrait, colors and light, impressionist renaissance style, dramatic cinematic lighting, lens flares and dust particles, blue eyes, white hair, pure form of beauty "} +{"id": "1004635", "video_name": "5633fb71-45b3-5d0b-8d1b-19cbbbdf128a", "text": "an old man sitting on a bench with a dog in his hand waiting for his car. "} +{"id": "3005225", "video_name": "efc9c10b-89fc-598a-b07b-ce49aeb1f818", "text": "Humanoid dancing break dance street above clouds "} +{"id": "6002623", "video_name": "0aa84823-06fc-5a1e-991c-2061b12ecb0d", "text": "doctor advising an old man about a healthy life "} +{"id": "3005664", "video_name": "248c12eb-a185-5754-b43c-54129ba03c86", "text": "only one drop of rain, cinematic "} +{"id": "3005823", "video_name": "e5ccd478-1503-54c0-8337-8de0064785f4", "text": "skeletons and jack o lanters glowing on a dark forest, night, magic light, 8k. Message: HALLOWEEN (Font: MODERN) "} +{"id": "8003978", "video_name": "f1987292-1b5c-581c-8a46-5a7bfb98db4d", "text": "people running from propaganda in modern times "} +{"id": "6002641", "video_name": "fe7ca3d1-2811-506f-a84c-6d20bcf32ff0", "text": "short hair girl in her bedroom "} +{"id": "8002569", "video_name": "75936d7e-07de-580e-b331-ef85026d9483", "text": "days turn into weeks and weeks into months calendar page turning "} +{"id": "2003077", "video_name": "ce0ddc94-e90d-522a-ac2a-f54e75f8d140", "text": "Tesla stood there, adorned in attire crafted Tesla stood there, adorned in attire crafted from bolts of blue lightning. "} +{"id": "2004754", "video_name": "3d80abaa-65d0-5b7d-b83f-e9f7915c458f", "text": "Suddenly a baby elephant, came there. "} +{"id": "8001477", "video_name": "b6337bae-1099-5115-a08b-730ff6cd958a", "text": "rocks falling ontop of you in cave. lighting green "} +{"id": "4004753", "video_name": "f06c1cb0-da56-5012-93b4-431b1c95c592", "text": "a mans using a hand held smart device to speak to a blue hologram of a face "} +{"id": "2005635", "video_name": "88d84511-3108-5088-a340-251958083f63", "text": "Make the picture move and the mouth talk "} +{"id": "1004102", "video_name": "4bf2ded6-ffbe-5571-bcf9-b3cb0f83746f", "text": "A white ghost in the dark and scary foggy forest. Realistic scary "} +{"id": "0003449", "video_name": "3dc0cd05-8362-5bcd-afd8-cfdd9c093614", "text": "Suggest me list 10 topics to write stories for kids. Then choose the topic you think is most attractive for boys. Write a story about 200 words on the topic. "} +{"id": "2003496", "video_name": "e700634b-774a-5de7-a26b-cacd41e1792b", "text": "teacher wears a blue pens and a white costume with a black tie and he says welcome to back to school "} +{"id": "6002232", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "Realistic cinematography showing russian cosmonaut in soyuz spacecraft "} +{"id": "6004983", "video_name": "eebc58b4-c076-5a48-86c7-ccaf4de6722b", "text": "light effect, immage zooming in, tentacles are moving, Message: 1 Attachment "} +{"id": "5001211", "video_name": "b8d7eb91-d46f-55d9-9391-cf952f19435b", "text": "Alex a boy with white skin and brown hair discovers a mysterious door on the rooftop of his building and opens it to find a glowing portal that leads to another dimension. "} +{"id": "3006646", "video_name": "49afe73a-51cf-522d-bf50-dfc63ea07528", "text": "two university stickmans who lived independently in Hong Kong. "} +{"id": "2004958", "video_name": "acbe0749-d68d-5ca2-b22e-8a8dace72966", "text": "Wooded landscape with rain and a real grey sky "} +{"id": "0003265", "video_name": "3a554264-2f5e-5a21-85f7-b9ddb4258c92", "text": "Video background template with fast animation "} +{"id": "6003276", "video_name": "a39147a5-a31d-5650-a9d9-f632bc0e14fb", "text": "High definition scenes for rural movie screenings in the 1980s "} +{"id": "6003696", "video_name": "ea8202e4-7588-58ae-b0f1-fa04c8de7383", "text": "lion family playing together on the grass beautiful jungle "} +{"id": "7002511", "video_name": "a40b3dd9-7953-53cc-ba90-98896d1ae7f6", "text": "A sleek black SUV gliding along the shoreline, surrounded by swaying palm trees and distant islands. "} +{"id": "4004248", "video_name": "7edf1b69-58c5-55d4-8c87-d4d6a3331227", "text": "A modern house on rolling california hills with a breeze going through. make it a looping animation "} +{"id": "8003147", "video_name": "cb60419f-5918-587b-8d12-482032772484", "text": "ai robotic humanoid touch the holographic touch screen "} +{"id": "2004308", "video_name": "844b1832-6273-5bc6-983b-82c19bffa5f5", "text": "women in sari at bank of river dancing and doing kirtan "} +{"id": "8001644", "video_name": "39e77945-4eb2-573a-8c2c-e04ec42c41bc", "text": "futuristic submarine high tech gadgets travelling in alien underwater world field with parasites and unknown creatures "} +{"id": "0006026", "video_name": "2535286e-2250-5ef6-9be9-ff39c41103d7", "text": "happy very old ladies with headphones at disco "} +{"id": "3006988", "video_name": "72b56dc1-20c8-5234-baac-7be34d2f24bd", "text": "fashion outfit made from recycled jean cloth, maked fashion walk "} +{"id": "6004110", "video_name": "778f5f49-b83b-5fd8-921c-8e8ab703cc21", "text": "2 indian men brother going to office in white shirt and black pant animation video "} +{"id": "0005918", "video_name": "233bf421-e5c5-58c9-a1e7-54ca84309a5d", "text": "Gale force winds send the sands tumbling. "} +{"id": "4004622", "video_name": "9af2ae29-1a0a-53f1-9e5d-559295cc6092", "text": "zoom in effect, archery shooter Message: 1 Attachment "} +{"id": "0006115", "video_name": "26d6958c-4881-5326-9853-b17e2bb52ec3", "text": "Gunna multiplies into a legion of himself, towering over others to assert his uniqueness. "} +{"id": "8001070", "video_name": "241935be-e5dc-5ea3-b68e-b154a58859d0", "text": "isometric black and white geometric tattoo "} +{"id": "6003734", "video_name": "a4b1bd97-599c-5db2-95cb-38693168ae1f", "text": "late night comfort food like sushi and tempura and ramen"} +{"id": "1003175", "video_name": "3a69fa33-dfd2-5b19-9334-7a232dd4f956", "text": "a stainless steel pipe with a fluid "} +{"id": "1004365", "video_name": "50a392e9-9966-57ae-80f3-e6d462b6315c", "text": "Castlevania Lord of Shadows hyper realistic super detailed Lord Dracula muscular handsome leather warrior Armor riding great legendary dragon evil with demons next to him in battle scene bravely fight the devil and his great legendary army hyper realistic super detailed dynamic shot centerpiece cinematic scenes movie "} +{"id": "2005173", "video_name": "b86e9f9a-d56c-5f73-8475-ce032d05ced9", "text": "masked men and women doing a ritual "} +{"id": "3004447", "video_name": "4ed2f1f2-2210-5c1b-b9a6-6ae7919b3f99", "text": "with dragons around Message: typhon heads (Font: MODERN) "} +{"id": "0004563", "video_name": "0b4acf47-0da9-5e72-8e24-185fba2da2d4", "text": "neanderthal daily activities, walking, collecting water "} +{"id": "3005860", "video_name": "b777468a-4fa9-56e5-b610-5d16ea8304ff", "text": "life turning upside down, upside down world, aspect ratio 9:16 "} +{"id": "2004824", "video_name": "31cfd489-a09c-5c0d-a202-124e958ed520", "text": "big dark city, main alley, science competition with a crowd of scientists "} +{"id": "0003399", "video_name": "3cfb6e92-82ab-5924-8fc3-db5fa78d7550", "text": "Closure shot of the host amidst blooming flowers, a symbol of rejuvenation. "} +{"id": "3003826", "video_name": "2a85adbb-074c-5535-832f-ddf22dc1243b", "text": "family enjoying dumplings together for lunar new year"} +{"id": "4003130", "video_name": "71167aca-7cea-5eec-8399-c06a927d25ac", "text": "space fish. Double sun. Star fog "} +{"id": "2006660", "video_name": "6e696756-33a2-5e1f-a406-4cf6a476a046", "text": "Kanye west vs Taylor swift on Indian streets "} +{"id": "8003075", "video_name": "30c54732-43f4-5a22-b0dd-9b781452f398", "text": "Kim Kardashian as a cute cartoon 4K, "} +{"id": "7002397", "video_name": "8505c88c-ad4b-50f6-8604-a41727e1e209", "text": "two explorers walking inside a cave holding a lantern "} +{"id": "2007018", "video_name": "957bc699-bb57-5b02-9300-35bc6934e83c", "text": "young couple walking hand in hand through a fairground at night, futuristic style "} +{"id": "0006258", "video_name": "298a70d9-c4b1-5330-997e-460425b4f285", "text": "samuel l jackson talking to goverment officals at a office setting "} +{"id": "1004337", "video_name": "5013d788-bde1-5201-8f73-640c3d5783b6", "text": "crying like a fire in the sun "} +{"id": "2005826", "video_name": "3a23845f-443d-539e-bd9b-f312f88d6b29", "text": "In a peaceful waterside setting, an Asian woman plays a guitar, creating a gentle melody that blends with the murmur of the water. Peacocks stroll gracefully, adding a colorful touch to the friendly atmosphere. It is a simple and sublime moment where music, nature and beauty meet harmoniously "} +{"id": "1004375", "video_name": "50cabbd2-bf50-5674-a66c-2095d7214f83", "text": "3d different animal runnig in jungle togather clearly "} +{"id": "4003852", "video_name": "71666586-8d35-5495-a04e-3be7bf447735", "text": "music soundwave in pink and light blue colors "} +{"id": "3005855", "video_name": "c124c242-2068-5cad-93ee-179893d0cf18", "text": "biological human brain consisting of nerve cells located in empty space consisting of twists and turns long video in good quality "} +{"id": "8001720", "video_name": "2aaafba5-b0f1-5f88-8e6f-ade50ec7d8a3", "text": "tentacles growing from television screens 4k ar 16:9 "} +{"id": "3005742", "video_name": "495260e9-524c-57f0-8aa5-b45e964361e2", "text": "A man in a robe smiling with red snakes around him in a mysterious velvet room "} +{"id": "1004240", "video_name": "4e7a46a3-3384-569e-a740-b0e7c7af16c1", "text": "flawless victory logo with 2 robots fighting badge "} +{"id": "7004594", "video_name": "b6b2464f-f280-5122-b43b-97f6cec856fd", "text": "attractive brunette wearing a blouse and white capris zapped by a shrink ray. Overhead view. High Quality image. "} +{"id": "2006674", "video_name": "9bc7870c-6e51-50ba-bb5c-377f3ecdb08f", "text": "A young man talking to a fisherman on the beach "} +{"id": "3005018", "video_name": "cbb9724c-b4ce-57e9-8b4b-e64cc1283f28", "text": "Experience the captivating beauty of colored lights against a dark backdrop. With hints of red and blue reminiscent of the aurora borealis, this image enchants with a celestial glow. Let your imagination soar as you gaze upon this mesmerizing scene, where a kaleidoscope of colors evokes a sense of wonder and tranquility, 128k, epic, perfect, realistic. "} +{"id": "6002556", "video_name": "d45b2a6f-ef32-507d-8630-891898399960", "text": "Jon Snow dancing with Donald trump and elon Musk "} +{"id": "1003061", "video_name": "384377cd-b8e2-53c2-b105-3bf1c14c9e8d", "text": "bysons hillbillies foggy film Message: texas (Font: MODERN) "} +{"id": "2004412", "video_name": "1a0dfd0d-af88-5756-a2f5-521ec9f5fc49", "text": "1980s grainy footage of a house party "} +{"id": "6003093", "video_name": "10ac1533-5b3c-51f8-8985-83592ecc5206", "text": "King Darius sits upon his throne, surrounded by advisors and courtiers. Daniel, a young Hebrew statesman, stands before him. "} +{"id": "3003893", "video_name": "5ac1aa3c-f0ea-5ee0-8b63-681fdba1eaf9", "text": "a video of an 11 year old boy stuck inside an elavator "} +{"id": "5001585", "video_name": "4fcabeb5-8815-58e3-8f09-17e9d1ac598f", "text": "From the depths of the crypt, a low, ominous rumbling resonated. Slowly, the heavy stone lid shifted, revealing the yawning maw of darkness within. horror darkness animation "} +{"id": "3006198", "video_name": "80325089-c1f4-58a1-bff2-ffae03acab51", "text": "10. Maximalist: Capture a vibrant and visually busy scene that celebrates an explosion of colors, textures, and patterns. "} +{"id": "2003473", "video_name": "f3d5ebef-3408-5438-83a7-f0a04e4ac48e", "text": "It was a dark, rainy night when I started my shift at 2:00 in the morning at Aurora Hospital. The feeling of tiredness was palpable, my eyes weighed and my mind was full of restlessness. "} +{"id": "2005766", "video_name": "274b80c3-7b9b-5962-a86a-082756a5ac23", "text": "Leo and Tig sharing the treasure with their friends, surrounded by laughter and happiness. "} +{"id": "7003165", "video_name": "9def1bd0-6335-51f2-9278-4c90a29bea40", "text": "red splattering and dripping on white screen "} +{"id": "5001310", "video_name": "dae4c786-e601-503b-b304-61de5996b39a", "text": "a trailer from New movie beetlejuice "} +{"id": "1006302", "video_name": "735d6b66-1678-5965-9d91-a90feca5f086", "text": "editorial black and white photo of a fancy dessert Message: 1 Attachment "} +{"id": "4004370", "video_name": "d227a547-4dfb-532a-b1ba-a70833bf8447", "text": "greek statue starting to smile widely moving lips "} +{"id": "0004925", "video_name": "118af95f-c32b-555d-bfe3-07f51c0d3cd2", "text": "vault b anantha padmanaba swamy temple "} +{"id": "6003325", "video_name": "b7d86983-2328-5ce2-83e3-79706b376619", "text": "kitsch character move panning world kitsch pink "} +{"id": "2005539", "video_name": "3bb3eb9a-538e-57a7-a500-0508dfcf4ad3", "text": "Looking down at the camera, soldiers are building solid fortifications "} +{"id": "3004098", "video_name": "faf65681-f8d4-516a-b58b-5169f5c2a051", "text": "Bee pollen May lower heart disease risk factors like high blood lipids and cholesterol "} +{"id": "2005588", "video_name": "40ef7496-2c14-51a2-a513-cbbc30acda6e", "text": "Will Smith laughing at a bowl of spaghetti "} +{"id": "3003959", "video_name": "b181d265-7a40-540e-8b8c-770d75b223c8", "text": "huge spaceship invasion above city with skyscrapers like marvel avengers movie, details, 4k, cinematic, realism "} +{"id": "0005347", "video_name": "19344300-dbc6-5808-aac0-e7296c0436f8", "text": "fred astaire dancing in the mall "} +{"id": "7002327", "video_name": "5fc45102-751a-5600-a332-f515d70fa1e4", "text": "farm animals playing Jazz, children book illustration, Mary Blair Style, "} +{"id": "4003153", "video_name": "7c5962ac-ca3c-5118-9eed-620318cb8601", "text": "forest bottom rot fungus surreal rot soot dream evil horror "} +{"id": "8001570", "video_name": "f3820364-0984-5aad-8574-70037a44bb1f", "text": "ancient rome coliseum thousands of spectators "} +{"id": "7002110", "video_name": "6ada5803-db8e-5aa2-954b-30b0301f08a0", "text": "a child hides behind a curtain, afraid. One scared eye revealed. A toy car rolls into frame "} +{"id": "5001652", "video_name": "5c553940-e2a5-5f5e-a4c9-9ce58aaf2607", "text": "a wall clock whose both hour hand and min hand spinning very fast and then they stop at the time 2:30 am "} +{"id": "0004431", "video_name": "08cf31c2-6256-546e-8401-25834922c92e", "text": "A cartoon character from Disney, Jerry Mouse, has brown fur and is holding his chest with his hand while displaying a pained expression. "} +{"id": "3006025", "video_name": "5f0d2177-a7a3-5514-b231-18e60b67e70c", "text": ": satyug which is heaven with angels walking "} +{"id": "1006913", "video_name": "7e64a1df-5314-5a67-a713-a226784e4d49", "text": "red riding hood opening the door of a magical house in forest "} +{"id": "1004005", "video_name": "4a206baa-c22e-5463-bafe-9132fa1616c5", "text": "\u201cNone who matter!\u201d said the stepmother in a hiss. \u201cCome here,\u201d said the Prince. Cinderella stepped up to him. The Prince got down on one knee and tried the glass slipper on her foot. "} +{"id": "0003165", "video_name": "387a2da2-a80d-5b8f-8470-2fb6ac490854", "text": "a video of a beautiful armenian view of a lake or any other water "} +{"id": "6002112", "video_name": "10d8172b-1e17-5d54-b834-3ec0f8aa9eac", "text": "beaver ninja, Japanese cat, wood, Rdr "} +{"id": "4002744", "video_name": "ae24709d-ca51-5a2f-ac7b-05e0401e95a9", "text": "a lady of the woods discovers a mushroom, she eats the mushrooms and gets sent to another world, Disney style art "} +{"id": "6004045", "video_name": "15ca6eb3-b63a-5041-92b9-22a2431aa90a", "text": "Donald Trump running around on the playground, high movement in the scene "} +{"id": "6002794", "video_name": "f85a7d96-7b93-5e09-a430-1198712481e7", "text": "earth rises while the milky way galaxy paralaxes in the background "} +{"id": "1006540", "video_name": "77d1d5c2-a48e-5061-9bb4-63d043f74854", "text": "the leader of the royal troops and horses raised their front legs in the desert "} +{"id": "3005830", "video_name": "b7b65bf1-dde6-5740-8e80-da846bb9ec13", "text": "zolly shot, close up, gimbal, shot on 70mm film, stabilized, lifelike, dramatic, cinematic "} +{"id": "2005872", "video_name": "f9fef632-95c6-532f-a656-15e0a891a52b", "text": "United States emerging as a superpower. 20th century video in black and white "} +{"id": "1005214", "video_name": "6008df01-04f0-570c-a7c7-4fdb9f3eec92", "text": "Christmas, Santa Cruz sleds fly in the sky "} +{"id": "0006200", "video_name": "281e8abe-585d-5fe1-b1bb-5cc91cf2d12e", "text": "Green slime oozing on a table 4K, TikTok, trend, trending, "} +{"id": "4004812", "video_name": "522ef1e4-9cb3-542f-b704-424fb2d0f8d4", "text": "One day, Ali was playing in the forest when he saw a small animal sitting in a swing made by nature. The animal was very small and cute, and Ali was interested in it.\nAli approached the little animal and asked him: \u201cWhat is your name?\u201d\nThe animal replied "} +{"id": "1004575", "video_name": "5509c270-edbc-550f-aa01-81298f923ec2", "text": "A sport car running across New York city "} +{"id": "4002954", "video_name": "76c8eccd-53a6-5de5-a8ac-53fd20d0cea8", "text": "Husky dogs hiding in snow caves "} +{"id": "2007315", "video_name": "9f13d86b-b12f-56e1-8e46-97e871e89e87", "text": "zoom in to a scarecrow, scarecrow blinks "} +{"id": "2004484", "video_name": "de247c9a-a325-5f25-9b51-d6b573a1f42b", "text": "car crossing in a circle, wheels moving, background moving, smoke coming out of the exhaust "} +{"id": "0005644", "video_name": "1e925b73-8ef9-5df5-bf62-7a8e4b274081", "text": "25. A group of talented craftsmen working on restoring Humpty Dumpty, their vivid paints and brushes creating a colorful masterpiece. "} +{"id": "8003610", "video_name": "0be7b60c-bddd-5b14-8b05-da1e58867917", "text": "POV of a car exiting a tunnel. The light grows as the camera gets closer to the end of the tunnel "} +{"id": "3006023", "video_name": "80e3a5b8-53bb-5512-ac1e-17d6402d8af8", "text": "girl crying in The space, because Your planet finish "} +{"id": "4004498", "video_name": "2c9f34ab-f51d-5d8b-bff0-ac9699b5d915", "text": "show a panic face of somebody working on Wall Street. 4k resolution. "} +{"id": "2005859", "video_name": "1b30a9f0-ebe2-535f-86c6-179ce9fe8262", "text": "Gautam Buddha gave the stone to his disciple "} +{"id": "4002290", "video_name": "a091a995-1bb4-5bd0-9d95-f601e26027ca", "text": "big fish and small fish underwater view "} +{"id": "6002255", "video_name": "2d915502-03a8-54dd-892e-b64a813091b7", "text": "magically retro style RV camper, celestial sky "} +{"id": "1003767", "video_name": "45623048-58e0-5714-baa2-796d2159d951", "text": "Animated cute white and asian woman, 25 years old, pink clothes, brown long hair, miniskirt. "} +{"id": "3006913", "video_name": "aa7b52b9-991d-5e1a-8ca4-d35c0960feda", "text": "Zooming into a Cool cute Sphynx Cat with reflective sunglasses on a surfboard surfing through a wave tube of a large blue surf wave, GoPro, action camera, cinematic, unreal render, photorealistic, perfect form, high definition, intricate details, 8k "} +{"id": "1003958", "video_name": "491ecb98-d90d-53a0-ae0c-22b4f3778a67", "text": "comic style chef putting alive lobster to cook inside the kitchen of Titanic "} +{"id": "8001862", "video_name": "b470b98d-ba4a-5292-a2d4-69f79f759624", "text": "3D animation, lush forest, growing fast, windy day "} +{"id": "0005594", "video_name": "1da901ca-0e33-50d9-8e14-afb4cd9b200e", "text": "Story of a sailor who after swimming for 5 years in the sea returns to see his family "} +{"id": "1004893", "video_name": "5a68c3ef-da5a-5909-90a7-31d0a93da7a7", "text": "family of 2 adults and 2 children entering a car "} +{"id": "7004706", "video_name": "981b6dd5-ec69-58f8-8de9-b812507a90f8", "text": "A huge, bright moon rising over the sea, unobscured by clouds. "} +{"id": "6002769", "video_name": "0e947b1a-e059-59e0-ad7e-65c805107736", "text": "hi definition image of a woman laughing from the balcony "} +{"id": "3004797", "video_name": "c49839c6-c0ee-543f-8666-564eab59a201", "text": "The robot creates holographic designs for a new building on a . In the background a destroyed city. Ray tracing, 8k. "} +{"id": "2004517", "video_name": "08b507af-c211-5586-b410-b21fbf594a82", "text": "Create a video depicting a man bedroom that fails financially, the men show have red eyeball, just stand up from bed, thinking, The atmosphere should evoke a sense of dread and foreboding as the protagonist "} +{"id": "3006435", "video_name": "65d21bf0-c56c-5710-a364-76fb0dc3d31d", "text": "WHEN A MAN Dense Forest Canopy "} +{"id": "6003557", "video_name": "dea5663f-f61d-52b1-9b53-cce80d7e0585", "text": "dubai City sky line, uae flag waving, camera zoom in the uae flag on burj Khalifa "} +{"id": "4002633", "video_name": "b4d8dc29-cb15-5c37-bb84-97888ebe3b28", "text": "5 Beautiful Girls Dancing High Quality Realistic 4K "} +{"id": "3004413", "video_name": "5aeb99f5-cb7e-5b11-9d39-b60dd7b5ef54", "text": "generate a 3D cartoon a elephant in the jungle "} +{"id": "2007760", "video_name": "4030b4ef-964c-56af-bd6e-d2f58e9e842d", "text": "One day, a mysterious little fox came to the forest. It has sparkling golden hair and clever eyes, which quickly won the love of all animals. The little fox told everyone about its wonderful experience: it came from a distant country and went through countless hardships with a brave prince, defeating an evil witch and saving the people of that country. "} +{"id": "1004234", "video_name": "4e69448b-aa40-540f-b733-dac2dd9ae711", "text": "In a distant future, Earth had become alien and desolate. Most of humanity had departed for other planets in search of new homes. Only a small group of humans remained, dedicated to guarding this polluted planet. "} +{"id": "8003597", "video_name": "f84b15b6-b489-5ee7-8b4c-3343a93172ea", "text": "Speed: Capture intensity and power of speed. Cheetah Running "} +{"id": "1004690", "video_name": "57247ef5-fe34-5578-9f2b-8f08cb4ff6f4", "text": "Spectacular footage of an asteroid hitting Earth "} +{"id": "2006195", "video_name": "146874ba-682f-5fd0-90c4-05c771a8bc5a", "text": "feet of a woman on a scale "} +{"id": "0005001", "video_name": "130d92b7-5675-501c-b9db-3dfd4bfb14c5", "text": "astronauts walking in a crowded road, 3D, realistic "} +{"id": "6003581", "video_name": "4be11b52-850b-5abb-8941-ef83b6674848", "text": "3 princesses, one in a blue dress with red hair, another fat in a pink dress with dark hair, the third beautiful slender with light brown hair "} +{"id": "2004655", "video_name": "47af1b3c-3df8-557c-876a-2a0ebeeb8cb8", "text": "rain forest scene with birds flying, sounds of nature and soft rain "} +{"id": "3004653", "video_name": "fde606e0-9fe9-5681-95a9-d0b332e54233", "text": "downhill biking on the moon, wide shot "} +{"id": "8003207", "video_name": "9bd4a621-c562-58f7-a881-b2af8f79c76b", "text": "A speed boat sailing fast on the ocean surface "} +{"id": "7003235", "video_name": "d3f2e0d8-d965-50e5-bc03-186436645528", "text": "An Israeli little girl seesaws with a Palestinian boy "} +{"id": "0005815", "video_name": "21a8a0bf-aef8-5fc4-a19d-f0a5a074904b", "text": "cinematic scene of a baking powder flying on a dark background "} +{"id": "3003634", "video_name": "30d82976-6481-5b12-ae3b-3ce04e0f0b26", "text": "A kind Santa Claus scatters gifts into the air and spins in circles "} +{"id": "4002439", "video_name": "e31f93a0-2ece-591e-8d17-fa6e9f3dd8d9", "text": "a glass bottle breacking in the sunlight and water splashing around and blue colour in the baground "} +{"id": "1003728", "video_name": "44dbb7cc-6f12-531e-82a7-5de9f6c28102", "text": "anonymous hacker is typing on keyword "} +{"id": "3006952", "video_name": "c8c93665-5d51-56bc-b6db-8715dc1c444e", "text": "santa clause dancing in an empty street surrounded by Christmas decorations "} +{"id": "1003127", "video_name": "398c2514-5afe-5a95-9b4f-3e65eb0082c9", "text": "little bunny wakes up, rubs his eyes and looks at the sky with a big smile "} +{"id": "2003997", "video_name": "50ccd48e-fae5-5c4c-9705-c3bcf26eb88a", "text": "a forest, camera zoom out Message: YogaSlackline (Font: MODERN) "} +{"id": "0005526", "video_name": "1c466441-69ed-5675-b250-3d235eabde65", "text": "Illuminate the confrontation between Hulk and a group of armed mercenaries. "} +{"id": "2003873", "video_name": "05480d9c-7e17-53b4-97fb-c0d118fd50f2", "text": "dj with headphones and scull mask in a toilet, bladerunner movie style. Horror scene "} +{"id": "2007758", "video_name": "453a5f3d-3002-5d01-8ef7-b8cd10809460", "text": "a magical flower 3d render with a low beautiful light "} +{"id": "2006859", "video_name": "a1ed40a4-5664-5b01-9f31-0560e1ae9739", "text": "monday teacher jumping up and down with joy to go to work "} +{"id": "4003244", "video_name": "789bf51f-2a38-55a8-9a6c-fd3b966d1739", "text": "particule in movement full of color , 4K, detailed "} +{"id": "7002967", "video_name": "6dba55f7-e269-5f45-89df-d12021c0870b", "text": "Townspeople are gathering around the dancing woman in the street. "} +{"id": "0006462", "video_name": "2cfe5b49-0134-5a55-afab-2d6635fd1584", "text": "Create a hand in painting, and the hand needs to be in the mirror to create a Iron Man "} +{"id": "7002892", "video_name": "16a90a36-a55b-55cf-a6fc-c1f4d60a7bc7", "text": "creature rising from a hole in the floor, darkness, shadows, horror movie "} +{"id": "5001356", "video_name": "586b4faa-5a77-5b1e-88a3-c2342d323429", "text": "a little ballet girl dressed in white ballet maxi skirt is standing by the window of ballet studio, looking outside at the starry sky above the distant forest, anime "} +{"id": "8001253", "video_name": "a73d4877-244a-5c3b-9013-ef3ea1dfd599", "text": "a modern northen interio living room with sunshine and flower decoration "} +{"id": "1003169", "video_name": "3a5e5581-b4c2-5321-b75b-a7500b7bc1db", "text": "Kevin Smith drinking alcohol as silent bob in cyberpunk style "} +{"id": "1004261", "video_name": "4eeb9588-01ef-5feb-b872-9ad89c5f66bb", "text": "1860, pale blue eyes cinematic style, prussian military cadet reading a map "} +{"id": "2004155", "video_name": "0363a210-844b-5940-bb18-ef1e16f86c48", "text": "Keanu Reeves wearing a boxing short, wearing a red gloves in a boxing ring, close up 4k animation "} +{"id": "0005743", "video_name": "20781dd8-0b57-564b-8bef-b216719ed029", "text": "A full moon in a cloudy sky. The clouds move gently, casting eerie shadows on the ground. "} +{"id": "6004844", "video_name": "7382be22-1ddd-55dd-81e1-4b26c5336f11", "text": "The idea of helping those in need, regardless of who they were or where they came from, deeply resonated with him. "} +{"id": "1006858", "video_name": "7d3a2fc0-3b80-571a-9542-e442d8262a0e", "text": "child pages with a magic portal "} +{"id": "1003881", "video_name": "477dbb83-d30c-5a22-be4b-07a69d7adec3", "text": "floating ball of water and waves "} +{"id": "3003213", "video_name": "a1e2b6bc-6f1c-5585-ac0b-ffdc3538748b", "text": "a live band on stage in a dark bar with smoke atmosphere, cinematic "} +{"id": "8002596", "video_name": "3c753bc9-8e46-5510-a217-f66b6f713e18", "text": "pen is writing in notebook line that means growth and falls "} +{"id": "0006774", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "Beautiful Sikh woman sitting on a rock looking at the ocean. "} +{"id": "2007983", "video_name": "122d1bba-9983-5ecd-92ab-5910580e139a", "text": "white tanks shaped like turtle shells movie towards the camera "} +{"id": "7004665", "video_name": "2fcea3b8-ea2a-57a3-9072-b2b0f0e6b405", "text": "astronaut , bright colors, rich details, vistas, overlooking camera, Animated Lighting, Ray Tracing, Depth of Field, Cartoon Style, Clay material, 3D Art, Pixar, C4D, blender, behance, OC renderer, high detail,black background "} +{"id": "1004323", "video_name": "4fd7bb74-a9c4-51b1-a65e-13e0de6358c2", "text": "sunset in Salvador Brazil near the lighthouse "} +{"id": "2003343", "video_name": "83097971-dfb9-5c1a-9fc4-0a9bedfb3c9c", "text": "pixel style , sunset from the window "} +{"id": "3005979", "video_name": "acb479e1-fc0f-551d-97f5-15f034beb281", "text": "Movie, horror movie, universal horror classic, black and white, beautiful vampire lady, threatening look, arms pointing, middle shot, moving car across a castle bridge "} +{"id": "0005831", "video_name": "21dc971c-5b2b-517b-82a1-9a4c7f44a690", "text": "Thanos fighting Darth Vader, with a futuristic city in ruins "} +{"id": "8001399", "video_name": "2fd61e83-e9a0-531f-8841-2caaaa784439", "text": "a black and white line with a crystal ball rolling down it. "} +{"id": "7004928", "video_name": "e8ea3a7c-3dac-5b4d-b09b-7cddab38f3d4", "text": "Red and black spotted creatures, zoom out "} +{"id": "4002258", "video_name": "3b457233-7840-539a-a310-bf1dcab32376", "text": "the gentle fall of autumn leaves "} +{"id": "8002838", "video_name": "04295708-1136-58f7-a623-e069b1fdaf1f", "text": "a formula one car in a minecraft world racing with his team mate "} +{"id": "7003644", "video_name": "dea37029-f584-5e1e-b177-711c81834632", "text": "couple arguing in front of a betting room "} +{"id": "7004534", "video_name": "c83ad4ef-ae37-5afd-8870-22a9d99680ea", "text": "an facemorph of messi and Ronaldo "} +{"id": "7002108", "video_name": "0b8b38c6-f82d-5f64-89d8-0618d09f4707", "text": "Rainy Day Bliss in a Cozy House, 4k video "} +{"id": "2006731", "video_name": "ac63a9ec-f70e-568c-9b45-f96dc3e0df05", "text": "riders come to life and run away into the distance "} +{"id": "2005736", "video_name": "f86db345-2e47-5f22-99e9-dc340f9dfe3f", "text": "Create an image of a music studio with a modern twist, where various musical instruments and devices are connected to a minimalist interface that displays colorful sound waves. The interface allows the composer to manipulate the sound waves and create a symphony of different genres and styles. The studio is decorated with posters and artworks that reflect the composer\u2019s musical influences and inspirations. "} +{"id": "8003832", "video_name": "061cd87f-fd6c-576e-8b68-4cdacb99a245", "text": "a spinning boomerang, chromakey, green background "} +{"id": "7003114", "video_name": "dfad80a7-76af-543c-b228-4a9616375f3d", "text": "The crab, dolphin ,sea horse celebrating their discovery with a dance. "} +{"id": "0003046", "video_name": "36105c69-4763-5367-b6b4-315858a94c27", "text": "a person facing a bad situation, realistic, emotions "} +{"id": "1004146", "video_name": "4cca1d03-4bbe-5512-91e5-dbec6b3bcd56", "text": "a nice basket of fruits,velazquez style,colorfoul "} +{"id": "1005864", "video_name": "6bf22d41-ed43-56e6-a318-1a3b8ef3f559", "text": "Lord Shiva dancing in mountains ultra reastic "} +{"id": "7004885", "video_name": "50f92112-8891-5d05-9c6f-ea64572cc8cc", "text": "A 3D animation of an old man praying and a white beard "} +{"id": "8001710", "video_name": "9a3bcb53-f8f0-5d50-a1c5-0ca77ff16fef", "text": "A nerdy boy is in a field of flowers looking at the stars,moonlight by makoto shiing,highly detailed,amazing quality,trending on artstation animenkai and ghibli studio,dramatic light "} +{"id": "6004944", "video_name": "af049e4d-3991-55a2-b208-1cc8022bda43", "text": "create an animation of a food delivery man entering his room, lean against the wall and be surprised to find his wife being unfaithful while the shadow of that couple is reflected in him, then he begins to cry. "} +{"id": "7002292", "video_name": "37a3ab72-0376-55fc-bea3-6a078111998a", "text": "A young Spanish mestizo soldier, 18 years old, in the War of the Triple Alliance in 1863. Looking at the horizon. With a red uniform and white pants. Let the wind blow in your face. Make it realistic. "} +{"id": "7004353", "video_name": "0426d222-33f3-5841-806d-218be9ec7c63", "text": "A cat in the middle of the ducks, surrounded by ducks "} +{"id": "4002216", "video_name": "117113ab-fb71-56fd-9cf8-213312453f21", "text": "The boy Mozart playing harpsichord at his home in Salzburg. His older sister must play the violin while his father teaches them both "} +{"id": "1004795", "video_name": "58a6a97c-2fc5-5199-8f3c-156051af5db8", "text": "A wide aerial view of a bustling city at twilight, with the city lights beginning to twinkle. The camera slowly pans down to reveal the cityscape, shot on anamorphic lens "} +{"id": "3005671", "video_name": "19e118c8-0876-53f2-8609-79b02aea4c11", "text": "walking girl disappear in a fog "} +{"id": "3006228", "video_name": "60a24643-f5d6-53b9-93f4-9810dff01fbe", "text": "A Ragdoll cat skiing down steep slope "} +{"id": "3004573", "video_name": "0cf116ba-6825-54f3-804e-cef6f7d1e7cd", "text": "Jesus being baptized by a man with short curly hair and facial hair, live action cinematic, 8k, drone angle, dramatic lighting, ray tracing, highly detailed, shimmering, photo realistic, ambient occlusion, diffraction grading, tone mapping, volumetric, cinematic lighting "} +{"id": "6003112", "video_name": "7fe533b5-c9a9-5813-b28b-1c3d20b13ded", "text": "The sound of the waves broke in the distance, and they all mixed up, and it sounds like a vast flow of air. "} +{"id": "4003850", "video_name": "46aaa56e-fe03-54e7-a730-53c73827469c", "text": "the most beautiful girl in the world turning to look at me "} +{"id": "3005722", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "a police man in an empty room lonely and very confused "} +{"id": "2003601", "video_name": "9cc61e95-0f2b-5357-821e-e89db89e0e47", "text": "black and white world, girl looking eagles, zoom out, eagles fly "} +{"id": "2004874", "video_name": "4735668d-a5a2-50c8-988d-e113b6992e95", "text": "a raccoon gets out of a train "} +{"id": "3004831", "video_name": "674b8750-d154-5d8b-8ba0-d3d91b0c46de", "text": "Describe the nighttime routine of Farmer Fred, ensuring the comfort of his animals as they settle in for the night. 33d image animation motion 4 gs 20 "} +{"id": "2003944", "video_name": "9dff3b2d-4384-565c-893c-158361cfc9b4", "text": "An escalator can never break: It can only become stairs, slow motion electric stairs "} +{"id": "8003402", "video_name": "6cf69c71-b2ed-515b-88cd-28b0f4cba238", "text": "Tall rocky cliff in dark forest "} +{"id": "1003526", "video_name": "41048425-1eb8-5bf0-af4e-2a04735d4712", "text": "a cumulonimbus tornado destroying a trailer park "} +{"id": "0003853", "video_name": "44a3ba14-f363-570b-84b8-0c89bdf2b6a0", "text": "Create a cinematic journey showcasing the life of a girl from birth to adulthood, capturing the essence of her growth and experiences,cinematic uHD realistic "} +{"id": "6003672", "video_name": "c99ff8d1-21ca-5436-ab2b-73a7bfbab239", "text": "A cat passes you a letter from the backpack behind it "} +{"id": "8002499", "video_name": "0ce18ee9-7511-56f4-a775-cc6ea6603c42", "text": "a travelling camera embark on a thrilling exploration of the boundless world of programming. In this digital age, "} +{"id": "4004194", "video_name": "f8bf96e7-962e-5223-abb9-2e17d3bff65e", "text": "Walking banana with human legs and arms "} +{"id": "6002792", "video_name": "dcc7500d-e7c7-5244-b109-f504b9a1b8ef", "text": "A boy lay down in the bed wearing headphone and blik his eye,4k realistic "} +{"id": "8002338", "video_name": "8ba639f6-aba5-5bc4-b6f4-58eec1b3b728", "text": "Joe Biden as the Joker speaking to Mark Zuckerberg in 1970s Star Wars film style. "} +{"id": "3006383", "video_name": "6a378c24-5d74-583e-a576-71ee4af6cac9", "text": "flipbook in a book of stick figures playhing games with a ball "} +{"id": "8002042", "video_name": "1d54fa95-0765-5931-8ecd-185d322d0adf", "text": "image of a screaming wife from the middle ages, Extending the period of time forward oblique "} +{"id": "2003391", "video_name": "5a9005e9-0d40-583a-85e1-119962263ce4", "text": "The female protagonist tenderly prepares dinner for the male protagonist in the kitchen,comic style "} +{"id": "4003908", "video_name": "9e657451-ebef-55e9-9eb5-1a2674578e56", "text": "superman flying through the oceans, 8k resolution, dc colors "} +{"id": "2003442", "video_name": "052d6682-4d0e-5db9-810b-59631ffa0bb7", "text": "the wind blows the jungle , the sunlight slowly bright , the boy slowly walk . zoom in slowly "} +{"id": "3004840", "video_name": "f0a8c17e-0acd-5836-890f-1688663593b1", "text": "The moment ice falls from the sky "} +{"id": "1004839", "video_name": "59748d89-3971-5bf2-b695-3ea55d903bb0", "text": "a woman dancing and jumping with joy near a sea beach "} +{"id": "8002122", "video_name": "b09f581a-1e2a-5e8f-910b-abefefbea119", "text": "Emma kills the changeling with a hammer and flees with Leland Grotto to his island, where he keeps other children that he has taken from their parents. Apollo is arrested for the murder of his son, but he escapes with the help of Patrice, his friend and colleague. "} +{"id": "8002166", "video_name": "b0cbc603-7498-5089-80e7-066d32ba7e6c", "text": "a cute single parrot reading news in studio. "} +{"id": "7002766", "video_name": "ca89b406-c830-5cb1-bd1f-02605fcc00ed", "text": "a tiny elephant climbing on the with lots of monkeys "} +{"id": "2005751", "video_name": "a809fe03-ffed-508a-9942-765a4da3ad35", "text": "a man in military equipment of the 17th century shoots from a machine gun while looking at the camera "} +{"id": "4003422", "video_name": "aab36d49-19da-5844-9447-59f80db24c2f", "text": "cinematic African village in the bush at sunset "} +{"id": "1003256", "video_name": "3bef16e5-2e80-5664-9d67-dcd17cffc3a2", "text": "a monochrome huge sphere slowly approaching a cube, dramatic lighting, motion blur, 2K "} +{"id": "3004542", "video_name": "6e382397-2895-560f-969e-0e48c8ecb418", "text": "cyber sign into the pupil scroll up and down "} +{"id": "0003637", "video_name": "40d90efb-efda-5838-9169-ce69abaca36d", "text": "A brutalist fashion group with dystopian vibes in front of a brutalist architecture building Message: AI RULES NOW (Font: MODERN) "} +{"id": "7004758", "video_name": "f8d69e7e-f8d4-5214-a14e-4740a83fbcbf", "text": "Details of the Furniture in a Mafia Bar Movie scene "} +{"id": "0006428", "video_name": "2c2698ee-0a2d-5059-9341-cf7291b3329b", "text": "A person stands amongs the journalists at the launch site of his space x "} +{"id": "0006835", "video_name": "33fde785-ba31-5160-a8a5-bbc67a101d96", "text": "Pigeons fight in battle with humans "} +{"id": "7002091", "video_name": "dc2dae63-621a-55b1-9ab5-d3ead5a7d969", "text": "a 15 Second video about two realistic dogs who sit on a couch and Talk to each other "} +{"id": "1003115", "video_name": "394a3449-b8c5-59e8-a6c2-f1133c72ccaa", "text": "people walking on a crosswalk, revealing slavery to technology, in detailed animation style "} +{"id": "3003201", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "black hair trunks becoming super saiyan anime "} +{"id": "2003689", "video_name": "b040e745-a598-5ef6-a41e-09756a5e2820", "text": "an old man get shocked and sad and sit down on his knee inside home and in 4k realistic "} +{"id": "8003213", "video_name": "2a2f8077-47e1-56cf-af05-02b2169e02a1", "text": "rome townspeople and busy city 324 B.C.E "} +{"id": "7002009", "video_name": "44121b32-ef9d-53bd-bbff-3069dbb2dc73", "text": "camera moving fast by a large room "} +{"id": "2005265", "video_name": "cf0ad4ed-7b55-54fe-a9a1-7ef5272f3963", "text": "images of missing, abused, and neglected children. It ends with an image of a beacon of hope, symbolizing the mission to protect and save these children. "} +{"id": "8001576", "video_name": "0f179ce2-74e1-5ee0-b029-53006035da61", "text": "young ones in her herd. She was known for her compassion "} +{"id": "0003256", "video_name": "3a2cf612-df16-54c6-9b6e-640edd5962cb", "text": "Hello Kitty Spaceship Is Flying Through Big City, Cinematic 4k "} +{"id": "0006255", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "lion trying to catch a rat no blur video anime style "} +{"id": "3004497", "video_name": "bdb9d13b-6417-5372-8bcc-0e3b83e96b65", "text": "video calm home in the forest raining outside with sleeping cat on the sofa, ventage, realistic, hd, "} +{"id": "4003749", "video_name": "b55db3bd-98d0-50da-a5f3-6d80bf1f7bca", "text": "the bird in the image is moving "} +{"id": "3005898", "video_name": "8505268d-af3a-5b24-a9c9-18087795be4a", "text": "camera zoom out So away The Wolf hurried to the Crane. He was sure that she, with her long neck and bill, would easily be able to reach the bone and pull it out. "} +{"id": "3005897", "video_name": "7ca90da1-714d-5b33-845b-50e953e359c8", "text": "A beautiful girl speaks while sitting on the throne and explaining "} +{"id": "8002005", "video_name": "e18943d7-acef-5bd8-8793-8bd3725dc792", "text": "A Abandoned Plane Found In Abandoned Airport "} +{"id": "2006876", "video_name": "f05bef06-694f-55bc-bb47-c1765efa4903", "text": "60 second video with phone wallpaper in 8k quality "} +{"id": "8002423", "video_name": "342c4ff0-2a4f-5efa-bf51-e65dca5b7d0e", "text": "bare feet running on the hill "} +{"id": "7003589", "video_name": "556e2fb9-f8df-5d9f-8925-d8a9eca39aac", "text": "a human face video that consists of black dots, artistic, minimalistic, camera zooms out from one point to the whole face made of dots "} +{"id": "7003380", "video_name": "6dc2208d-32fa-58ec-91c3-11c1e38b5496", "text": "A blonde fitness woman wearing a red hat walking down the street dressed in hip hop fashion, surrounded by the vibrant energy of the city. "} +{"id": "4004640", "video_name": "7b48ca90-e66c-5ee7-b1b1-05a7a4c4f9e3", "text": "bartender making a cocktail in a las vegas casino hotel bar "} +{"id": "2003162", "video_name": "6ddd381e-8749-5286-afb7-36de728df574", "text": "animation for the letter A to run "} +{"id": "4002457", "video_name": "cf14bd98-fc68-563d-8bb9-35fce9206983", "text": "two beautiful women dressed in traditional style holding champagne glasses in vintage interior, in the style of light silver and light pink, photobash, rococo extravagance, highly realistic, mix of masculine and feminine elements, made of flowers "} +{"id": "2005305", "video_name": "ec40b8e8-84dd-58ac-91e8-7b5855f9ee7c", "text": "a shadowy figure lurked at the end of my bed. "} +{"id": "8002520", "video_name": "b1a5ebb6-2677-542a-8965-8c39298acba8", "text": "In the style of Japanese comics, a plainly dressed grandmother, a fashionably dressed woman, and a girl with a lollipop in her hand sit in front of the computer and inquire about information. "} +{"id": "7004876", "video_name": "8ddc0723-a8d6-55b7-bd6a-9526b9160a6e", "text": "orange and transparent octopus tentacles squished against glass. Orange tentacles are fused with nanotechnology and cybernetix. Microscope. Many Sea anemones up against the glass "} +{"id": "4002995", "video_name": "f3eeca17-4af6-5bf7-b1e3-7a145bbc28c0", "text": "exhibition stand with a lozt of flowers "} +{"id": "0004509", "video_name": "0a46e126-c04f-588a-89e6-5dfd0723c42b", "text": "white metallic ufo landing on the Whitehouse lawn, high quality, masterpiece "} +{"id": "2005337", "video_name": "b3cad2e4-f256-596a-a66e-5d3ccbf6325f", "text": "Guardian protecting the village from unseen dangers. "} +{"id": "7004130", "video_name": "80fa7c95-dbb7-56ab-a1a9-ae423287cda9", "text": "family at a table, saying grace, 3d anime style "} +{"id": "0006617", "video_name": "2f988730-290b-523a-bdf1-c2dc9300bad8", "text": "Aztec warrior on top of pyramid, cinematic "} +{"id": "8003848", "video_name": "acbd2274-786a-5b14-bcb2-9b7b3c31471b", "text": "pierre trudeau smiles with open arms while standing on the front steps of an old mansion "} +{"id": "8003115", "video_name": "c37db9e9-9501-5441-8d79-03fddbc9039b", "text": "a young man running across a grass field with his dog being filmed by an overhead drone "} +{"id": "3004544", "video_name": "b6fceb9b-1923-5468-b40b-2921be0f6e78", "text": "a group of indigenous caveman in a dense rainforest, getting fruits, with cinematic light, peach sun lighting "} +{"id": "0005998", "video_name": "24c65bfc-0e90-5e1d-94a3-b70241bcfea6", "text": "the car is one through the forest and mountains "} +{"id": "1003484", "video_name": "4088d47b-7f51-5312-84e7-52b54d8730c4", "text": "children play on the beach wearing thick winter clothing even though it is very sunny "} +{"id": "0004262", "video_name": "060c553e-1328-516f-a055-902a9df07507", "text": "A cloud icon, metallic feel, delicate texture, blue and white, gradient, frosted glass, transparent, trending on poly count, light background, soft lighting, transparent technology sense, industrial design, isometric, super details, 3d, "} +{"id": "2006793", "video_name": "b5bae752-ff05-53ef-991d-680dccff52ab", "text": "The other half, of course, is making it work. For every poisoned umbrella or undetectable listening device, there were innumerable good ideas which just couldn\u2019t be made to work, like the CIA\u2019s inflatable plane or the enormous Soviet flying ekranoplan dubbed the \u201cCaspian Sea Monster\u201d. "} +{"id": "6002367", "video_name": "8ddeb0f6-26d9-5c15-8a26-01dd2753b00d", "text": "a monk playing with snow leopard "} +{"id": "7004659", "video_name": "30346754-728a-5e44-93bc-6878a399d5d9", "text": "mockup of an empty frame in a boho setting where the images inside the frame change "} +{"id": "2007791", "video_name": "7f4e6beb-12f7-5c97-a057-cde8d9685c23", "text": "into the cemetery during a dark night with full moom A tormented spirit of a man, with a grotesquely disfigured face, eyes hollowly dyed in deep black, shrouded in an aura of white light. His macabre smile resonates amidst the darkness as he whispers eerie secrets from beyond. "} +{"id": "1004028", "video_name": "4ab36be9-809f-5ae6-a20e-5e6298e60024", "text": "Massive columns of lava connect the earth to the sky. "} +{"id": "0006469", "video_name": "2d1280fc-8502-5e6e-8f61-0a367097ea28", "text": "an underwater scene featuring a Black Marlin swimming swiftly, displaying its magnificent streamlined form and the vibrant colors of the ocean "} +{"id": "3004876", "video_name": "54f928ae-c487-5c9c-8b1f-1b0bc8282d8d", "text": "the numbers 7.10.2023 appear in the blue sky with blood flowing from them "} +{"id": "7002800", "video_name": "1ca4632e-310a-59f8-8daf-5573b081c370", "text": "moon crashing into mars, hd captured by nasa "} +{"id": "3004690", "video_name": "7320764f-deec-5709-85db-634d339cd8be", "text": "camera pan across dutch fields of nature during spring Message: boerschappen (Font: MODERN) "} +{"id": "7004735", "video_name": "7e13f7aa-9ef1-57f1-8361-2ad7ef6cb45b", "text": "a rainy cloud and a peacock dancing "} +{"id": "0005074", "video_name": "145a83ce-cceb-56e7-a5fa-f21d6c1b3f55", "text": "crack covered flowers grawing on the wall "} +{"id": "3005916", "video_name": "968ff760-e434-55db-8458-fa292b10895b", "text": "A loin in three pieces suit "} +{"id": "4003987", "video_name": "08f6a0d2-3f84-5c86-becc-ab3df1141f80", "text": "where the boundary between reality and speculation blurs, "} +{"id": "0004111", "video_name": "035f7bdd-df1b-505d-ac0f-8b1283bddc7b", "text": "Alisher Morgenshtern dancing on his hands and smoking a cigaret the size of a banana "} +{"id": "4004689", "video_name": "b2246a05-4e2c-5d8e-822c-8c95cea070f7", "text": "vinage film of pennywise wearing apron cooking fish in the kitchen "} +{"id": "1004763", "video_name": "5822b1a7-f044-580b-8372-c0badbb24757", "text": "Hyper real photo of this picture "} +{"id": "2004967", "video_name": "93e9405f-25f1-51c6-9316-364e214e872b", "text": "A luscious garden flourishes under the warm, golden sunlight, vibrant flowers in full bloom, casting their colorful petals in an array of hues. The gentle buzz of insects fills the air. In the corner, amidst the radiant flora, Ruby, a delicate spider with iridescent markings, meticulously weaves her web. Sunlight glistens on the intricate threads as they shimmer in the soft breeze. The garden, a tapestry of life, radiates a sense of tranquility and natural beauty, setting the stage for a heartwarming story to unfold. "} +{"id": "0006007", "video_name": "24ee3ee9-bb5a-5a8f-85c5-fb7b17ca3295", "text": "Dragon Chair and Tall Lantern in Ancient Chinese Palace "} +{"id": "4003172", "video_name": "93b1f33d-1edb-575a-878f-109a735bef88", "text": "A beautiful Korean woman sits in a luxury chair and talks to the front. "} +{"id": "8002500", "video_name": "08ef07bc-eccf-58d1-8e73-66ebd7e930fd", "text": "a man that open door with loockpick "} +{"id": "8003128", "video_name": "b6992fec-e82a-575a-9f9d-a449dab5a123", "text": "describe a seen of man and women setting beside the beach on carpet in the nigh will drinking a cup of tea in full moon night with microphones near them and they are frindes "} +{"id": "8002069", "video_name": "e1f5976a-6bbe-5692-832b-544a8251d7b4", "text": "The stars in the sky twinkle and the leaves are blown by the wind "} +{"id": "4002454", "video_name": "bd685259-b6dc-5e08-a416-641fad728cc3", "text": "with a cinematic view with beautiful dress in the lunar time night at street "} +{"id": "3005331", "video_name": "d62bcf24-4735-5862-bd4c-f6ab2935f6a7", "text": "Beauty and Her English Short Cat "} +{"id": "5001986", "video_name": "56e64470-3538-566a-845e-6d958e65620f", "text": "5 little chicks swimming in lake, colorful, 3d animation, pixar, disney, 4k "} +{"id": "6004609", "video_name": "a08d9a11-9581-5010-8329-cc01e8e66e46", "text": "cinematic cartoon of the sun rising. Camera zoom out. "} +{"id": "2003543", "video_name": "9942a7d5-22d3-56d0-81e1-ac7b26ac172d", "text": "the woman is talking about something A fixed look and a smile, wind blowing hair and flying tiny sparks of lights "} +{"id": "0004381", "video_name": "08056941-6329-5d13-a552-babf1c8b306d", "text": "a girl with silver hair, big blue eyes, looks like cat, very beautiful, lives in icy palace "} +{"id": "1005521", "video_name": "65a2221a-98ca-50b5-a8c5-05649407fb8f", "text": "red roses in a package in a hand, with a note attached to it "} +{"id": "6003022", "video_name": "35263ff0-201f-5400-87eb-e3d7f87da1e1", "text": "video of adventure in the snow "} +{"id": "6003917", "video_name": "04adfe23-bba6-538a-8d0b-283eec46caf2", "text": "However, this habitat is under threat from planned development projects1 "} +{"id": "7004590", "video_name": "dab7c5ed-0c0b-5246-80a9-b97b460e6607", "text": "Red and surreal world of gaudi with serpents in the floor biomechanical style "} +{"id": "1005122", "video_name": "5e720b83-6362-591b-a45c-ae0b5cdeceaa", "text": "slight head movement, light blinks, paper blow off desk "} +{"id": "4003818", "video_name": "f09b80bc-9efa-5d97-983f-e0993d1459fd", "text": "sexy girl dancing in the rain, motion the rain drops "} +{"id": "6003740", "video_name": "5ddef131-59cf-5d75-aa45-cd02682b621d", "text": "City beautiful aerial Message: Models (Font: SANS SERIF) "} +{"id": "1005360", "video_name": "62914613-b3c9-5657-b02c-9b2784196133", "text": "planet earth trun into a fire ball space view "} +{"id": "0003116", "video_name": "37565cd0-8c4a-5bd1-9c7c-322b0ab4be98", "text": "a goat burning in the street "} +{"id": "6003307", "video_name": "3fb1b88e-443e-51c6-a30c-b87f1f4f713b", "text": "fur blowing in the wind, character patiently waiting "} +{"id": "4003721", "video_name": "684bb3f4-4a86-59de-b099-452002c1c870", "text": "rain forest with a lot of trees and plants Message: WOOD (Font: MODERN) "} +{"id": "3006116", "video_name": "93e22796-65fc-552e-b273-bf1bd8699098", "text": "Sports and science: what factors influence sporting achievements and records "} +{"id": "6003926", "video_name": "ddd1ca02-b9d4-5a12-aaf6-67ead4eeb45f", "text": "wallpaper,forest,noon,epic landscape,zoomm up camera Message: 1 Attachment "} +{"id": "1003648", "video_name": "43321adf-aaa1-57b0-a95d-b891ffdcef40", "text": "Average looking woman getting her hair styled at a beauty salon transforms into a beautiful woman "} +{"id": "6004445", "video_name": "feee0eda-cdde-5027-9888-2d98ff8e0555", "text": "giant hurricanes sweeping through a village "} +{"id": "1006339", "video_name": "74040180-d513-522d-96f7-a1b4a2c98406", "text": "As the sun rises, the sky is filled with a golden hue, with a Canal of wine, a Canal of honey, Canal of Milk, a Canal of water flowing through a green garden, creating a heavenly and serene atmosphere. "} +{"id": "3005214", "video_name": "7f575563-a977-56dc-8e5d-7b26b08bd4f0", "text": "kungfu man jump into the sky "} +{"id": "6004604", "video_name": "9ef1d1c2-eaf4-5475-80a4-28411957d876", "text": "Can you help me create a video of Abraham Lincoln explaining the principle of empowerment in Spanish? "} +{"id": "8001371", "video_name": "6daa5127-ae10-53e8-aafc-183861f72766", "text": "A person becomes a flash of light "} +{"id": "2005304", "video_name": "bd9b222d-47c9-583d-a9b8-d1370aa1b750", "text": "Eating on the beach with sunlight, but suddenly encountering a seaquake; "} +{"id": "3005447", "video_name": "6598ca00-d0f8-5462-9cab-b35943319f7f", "text": "a beautiful roses landscape with a white horse which is made by cloud "} +{"id": "2006930", "video_name": "7b726184-9031-5cae-a976-8276546cfed2", "text": "Hayao Miyazaki, the orange sunset casts a warm light on the green lawn, and students were playing basketball on the playground. Under the cherry blossom tree next to the playground, a young couple walked hand in hand. Still pictures. "} +{"id": "4004713", "video_name": "8e2c6f0e-cfff-5e34-99bd-b3555790780d", "text": "fade in. Four armed shiva, blue skin, trident in one hand, damaraja in the other hand. "} +{"id": "6003843", "video_name": "78540ebf-a9b0-5d0e-ae30-fab21fa7d48c", "text": "The cartoon cat jumps out of a happy little dance sequence, with the music melody, and jumps and jumps on the floor. The Happy cat jumping and jumping in joy, the Happy cat jumping from the cartoon cat jumps out of a happy little dance sequence, with the music melody, and jumps and jumps on the floor. The cat is wearing high tech computer equipment and electronics, hyper real, ultra photo real, 3D, realistic render, octane render, 8k "} +{"id": "1006100", "video_name": "6fde998f-8556-5995-8368-b1a8e4f9ec9c", "text": "a medieval city in the sunset Message: platzi (Font: MODERN) "} +{"id": "0006316", "video_name": "2a9080d1-fa7f-5448-801b-a953fed1acdf", "text": "mystical village at the highest mountains of nepal,snowstorm,realistic,cinematic "} +{"id": "2007218", "video_name": "bb980fa8-5ea4-5a41-ad66-d3da884050b1", "text": "A skateboarder eating a pizza on the skateboard, in a urban environment, in the style of 35mm documentary, 4k, high resolution, depth of field, highly detailed, ultra realistic "} +{"id": "6002513", "video_name": "26c47715-3824-597e-8fb2-857112592c53", "text": "thunder bird making lighting over old japanese city and people running scared "} +{"id": "1003494", "video_name": "40b570cb-1903-554e-9fe3-f2d2c5788593", "text": "Young boy with dark hair, walking through a broccoli forest, moving hair, swaying broccoli tree branches, surreal "} +{"id": "6002735", "video_name": "0368b59e-33f3-53b0-8184-f37667346b17", "text": "laboratory fournites with a man working "} +{"id": "8002842", "video_name": "0b650fa9-397a-5aec-a5ad-4672a30569be", "text": "an animated video of a poor boy thinking "} +{"id": "4004545", "video_name": "21d4fdb6-6a14-5d65-a323-74b21a7dd4fe", "text": "comic of a girl with short curls rides her motorcycle in the rain with a sword in her hand "} +{"id": "4004518", "video_name": "66574271-41e1-5711-8689-b2bd0f1ed05c", "text": "a jedi with a darksaber in the mistery "} +{"id": "2003161", "video_name": "53fbac9f-5cd3-52da-a423-135d32ace14a", "text": "The girl hurries anxiously through the dark abandoned school hallway late at night, unsettled by the shadows and eerie noises. "} +{"id": "4002678", "video_name": "413a3cd4-4dfb-5faf-be1f-3e3fc5344535", "text": "Gentle play and colorful elements with slow movements "} +{"id": "8001298", "video_name": "c9f8cd45-b0c1-58e9-8dde-596c82d9194a", "text": "Cinematic film, realistic film, underwater ocean scene with small corals and colorful plants, with small fish with a view of the expanding ocean, the watercolor is rich blue with the rays of sunlight. "} +{"id": "3005378", "video_name": "3b9022ea-5963-520b-ae61-d5e0761527f1", "text": "a man is lying in a hammock in Altai, opposite the Katun river, he looks at the sky and enjoys life while drinking a drink "} +{"id": "7004833", "video_name": "6513d104-63dc-5713-b97e-714a44ad6741", "text": "A scenic view of the small village with houses and trees. "} +{"id": "1004793", "video_name": "589a92d3-fbf3-5148-b180-f419356886d7", "text": "fireplace in the attic with raindrops on the window "} +{"id": "1003530", "video_name": "41108853-981b-58b5-97c3-b38dff741df4", "text": "a pink elephant walking in the Rain "} +{"id": "8001465", "video_name": "7a64f1d2-b2e7-5484-a205-31304f53f146", "text": "sexy schoolgirl dance, ultra realistic, concept art, intricate details, highly detailed, photorealistic, 8k, sharp focus, volumetric lighting unreal engine. "} +{"id": "6002811", "video_name": "7d521dcc-b361-524d-90ce-c322cde6ee7a", "text": "man on his knees in the desert finding a oasis Message: water (Font: MODERN) "} +{"id": "1003800", "video_name": "4635abf7-70ec-522c-a031-aaa450883d6d", "text": "animated kitty dancing a christmass song "} +{"id": "2004856", "video_name": "f857ed7e-f574-5c4b-bd87-bff90c596b1f", "text": "It is mentioned once that a tailor was sitting in his shop sewing clothes when suddenly a baby elephant came there. Message: 1 Attachment "} +{"id": "2006086", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "man with dreads playing violin in space, high detail digital illustration "} +{"id": "0006904", "video_name": "35189df0-bd7b-5cd7-8d80-4210f87277bc", "text": "create a 3d cartoon of children covering their noses from a yellow cloud, 4k hd "} +{"id": "1005141", "video_name": "5ebdfb56-96c1-53b0-9f0c-d0a1cfff113b", "text": "A girl with three eyes running "} +{"id": "4003324", "video_name": "307125b0-7735-5391-a160-add18e7d12a2", "text": "ascary santa walking down a scary street "} +{"id": "7003817", "video_name": "cb5e53a9-21e4-50c9-bace-81d331c5f4b9", "text": "Change the background. In the distance, there are snowy mountains, forests, and snowflakes that keep falling "} +{"id": "3006444", "video_name": "e0e9ba83-4738-560c-9ea7-bd317713e936", "text": "people failling from a skyscraper, hd, cinematic, long video "} +{"id": "3005532", "video_name": "366d5046-aa07-5f77-ba3c-928aa5190235", "text": "A cloud with lightning and rain and the name cloud "} +{"id": "6004528", "video_name": "a67a0591-6fa8-5e3d-bbf5-d8184355ec45", "text": "dark sky with a moon in the middle "} +{"id": "7003815", "video_name": "3b25652b-7c26-54d8-8991-99a4e11f75f1", "text": "rainy night rain dropping on table "} +{"id": "8002793", "video_name": "af7c539f-5be8-5562-a1fb-d90ab8d9f11e", "text": "sun face and sad clouds cartoon landscape "} +{"id": "3005185", "video_name": "8574d5c9-34a6-5f1b-8e1b-c0f177c64588", "text": "ten minutes video of female and male dog meeting "} +{"id": "8002333", "video_name": "2211d5b3-fd6b-5c49-b632-76d6e3b705c0", "text": "A cottage in an abandoned village. "} +{"id": "8003891", "video_name": "b600658c-6644-5f4f-b0e8-23525af97433", "text": "A guy and a girl are fighting in space "} +{"id": "1005332", "video_name": "61f34048-3cec-51f6-b625-279104d1a5a8", "text": "IMAGE Cheerful cartoon house on white background "} +{"id": "3006936", "video_name": "63ff4b26-1b1a-5d4b-97ec-46fe0265512b", "text": "a fantasy scene of a tranquil meadow with shifting trees and butterflies in the air. The scene is in pastel colors "} +{"id": "3005239", "video_name": "6d3446d0-b311-5c16-9894-607a7e5918af", "text": "a girl sitting in a cafe, looking outside, with a book in front of her, listening to music with headphones, and steam coming out of the coffee cup next to her "} +{"id": "8003765", "video_name": "16735ea6-6e7f-5eed-aa2d-0449d30ea1af", "text": "realistic video Group of scientists obserivng holografic weather data in sci fi lab "} +{"id": "6002555", "video_name": "00a222d8-bc6c-56fd-a25c-7665eaa31af6", "text": "a little blinking her eye see the twinkle little star on the sky HD 8k cinematic "} +{"id": "6003977", "video_name": "c4c41adf-3eca-508c-81d0-d848d38b53d8", "text": "two cute dogs 1 white and the other brown running 1 after the other "} +{"id": "3005242", "video_name": "5153b752-45e5-5ae5-8cfa-2fd999385276", "text": "The day and night of the metropolitan sky "} +{"id": "1006732", "video_name": "7b592c84-e7a5-5644-b110-97777c31eb13", "text": "a water dropping in a vast waterfall, with mountain. calm sarene. ghibli style. "} +{"id": "2007851", "video_name": "826fe5b1-34c9-5c02-9281-9e90810db7a0", "text": "Dragon from Skinwalker Ranch probing a thin grey alien why Travis Taylor watches with a fleshy leer. Cinematic "} +{"id": "1003996", "video_name": "4a0393cb-77fb-5d8d-bca6-72adcbe0bb02", "text": "create a perfect loop that animates the Christmas lights and Christmas tree. "} +{"id": "8001730", "video_name": "901f1257-b9fc-5f27-8627-b2001ddc6e55", "text": "young tall model smiling in front of Eiffel Tower and showcasing her pink overcoat from different angles. Hyper quality, 32K. She is 6 to 10 ft awar from camera, so she is the center of video, and Eiffel tower is on the side. "} +{"id": "7004111", "video_name": "25cb8772-3ef6-5d4e-9d5e-cd7dd259d946", "text": "a fish crawling on land and then turning into a monkey "} +{"id": "0004062", "video_name": "028b9b05-9807-52ee-9876-6245c23b2038", "text": "Illustration , Symbol , woodcut print , Print , black and white , white print Frontal , simple vintage compass ,black background hand drawn , socialist realism badge , centered , silk screen print , white lines , black and white , elegant "} +{"id": "7003866", "video_name": "fa1433d7-ab20-5ff5-8ca0-6c7fb73332ff", "text": "advertising video for byd han car for 10 seconds "} +{"id": "3004887", "video_name": "4fdef0ae-334b-5e23-aedd-4ca39e2f6e12", "text": "marketing ad for stylish water tap extension, that is directly plugged onto the water tap, like in the given picture Message: 1 Attachment "} +{"id": "0006413", "video_name": "2bf2baee-31ac-5ee2-b72e-d82192668179", "text": "a gatekeeper open the gate and a car getting out "} +{"id": "0006547", "video_name": "2e761343-3c7e-5ae1-bfd1-3b46cb08000b", "text": "Aerial images of the prison on Robben Island in South Africa in 1964 l, hyperrealism, cinematic, \u2013\u2013ar 16:9\u2013\u2013 "} +{"id": "4003305", "video_name": "f206e87d-a47f-5a78-a92b-5c4f7b5e6bad", "text": "an old man playing acoustic guitar in the desert "} +{"id": "7002140", "video_name": "de3c7f40-5b56-5802-bc47-9c98e55dd192", "text": "heavy glitter falling from sky and a beautiful girl walking in that glittet an asthetic one "} +{"id": "2005281", "video_name": "afacf2cf-2ace-5384-ae7b-f79fdc709e0e", "text": "A strong man bracing against a storm. He holds his sword and charges against the foe. The enemy is dark and evil. But God is his strength. Brilliant radiant light fills the land. The enemy is defeated. "} +{"id": "2003110", "video_name": "c936c097-b6b3-5675-877c-e60f65c53cd5", "text": "a fat brown cat wearing a bandolier and holding a bowcaster, framed by a starry night sky "} +{"id": "1003292", "video_name": "3c965352-b466-57ef-89bf-297b8c0fd351", "text": "a workshop with lots of robot mechanical parts "} +{"id": "8001245", "video_name": "da8f4ad5-41a7-53e4-b1fa-a75220809cf9", "text": "keanu reeve in the matrix background "} +{"id": "6002238", "video_name": "8d9ef710-b903-5750-bfdb-3ba1a08b8a6d", "text": "Eminem surrounded by a storm, representing the pressure and chaos of his internal struggles. "} +{"id": "1005615", "video_name": "673b53f4-93ff-5743-b543-deaa17e8cc37", "text": "A post apocalyptic city full of smoke and fire. A warrior stands tall amongst all the rubble. 4K ultra realistic and fluid motion. "} +{"id": "2004029", "video_name": "cea6bcc5-ee8b-5739-afa6-b399a36ab20b", "text": "dark alley in london. Microphone hangs down from the top and dangles. Drill beat atmosphere "} +{"id": "1003600", "video_name": "42683fe8-e92c-5dff-b4a4-04e0966ff101", "text": "A flip of a coin that lasts 5 seconds anime style "} +{"id": "3004031", "video_name": "7ede4003-f6a6-5d39-98c3-cdfc9ae07c2b", "text": "Generate images of Santa delivering gifts, each present leaving a trail of sparkling snowflakes and a touch of winter wonder. Showcase the joyous reactions of children discovering the magical transformation of their presents. "} +{"id": "0005992", "video_name": "249fc1f5-8fe2-5e60-a77b-ffe53d409aff", "text": "dancing pumpkins in a line with a white background "} +{"id": "2006191", "video_name": "f96343c4-00c9-517a-8fde-c05aa5feda52", "text": "a image of Pixar style art game homescreen which has a castle and mountain in background in green monochrome "} +{"id": "3004328", "video_name": "2c07f0c9-ff73-5d90-88aa-c9efb056e8fc", "text": "create a building what is on fire "} +{"id": "0005244", "video_name": "1728f222-8eff-5512-9ded-d99843a8e6cd", "text": "A silhouette of a man with skin color beings rainbow floating through space with different planets and galaxy\u2019s in the background "} +{"id": "8003702", "video_name": "b21e5dcc-5b92-532f-a3f9-5fa780fc5f9f", "text": "Picture a shooting star streaking across the night sky. "} +{"id": "3006191", "video_name": "0acbe1c5-bd5d-51ac-a781-8f9e2c17af1e", "text": "Some suggest that it emerged from Baghdad during the Abbasid Caliphate and was placed in the Topkapi Palace by Sultan Suleiman the Magnificent. "} +{"id": "0004998", "video_name": "12fe4320-ccbc-574b-9cfd-0983b420f88c", "text": "students are cool street dancing battle in school, cyberpunk "} +{"id": "0004980", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "a super car with 2 doors cornering at at hill "} +{"id": "3004459", "video_name": "c7a13be8-6931-5dec-8308-326769f11424", "text": "first person action shot of a BMX police chase down a narrow street "} +{"id": "0004562", "video_name": "0b468c8c-f8ca-5023-b92b-191f23ca1098", "text": "kitty cat, jumping on a bed "} +{"id": "0004271", "video_name": "062e975f-3c31-5d9b-aa21-322d082d2596", "text": "Micheal going to his car in GTA 5 style "} +{"id": "1004587", "video_name": "55548eba-62a4-5ebd-8865-4527876a4b75", "text": "a beautiful fox and a beautiful Lady. "} +{"id": "5001598", "video_name": "d74f42aa-136c-5eee-8bdf-a3a4ac7441f1", "text": "Lily girl invents a spell that creates uncontrollable laughter. image cartoon "} +{"id": "8001608", "video_name": "d49aa186-ef2a-5c11-8361-825f2bdd455c", "text": "prompt: Indian woodcutter selling woods in the market "} +{"id": "2005979", "video_name": "388ecf6d-f4cb-5345-a8eb-aa5600fe9ed3", "text": "my grandmather is doing fast gymnastics with a smile. Message: old woman (Font: MODERN) "} +{"id": "5001630", "video_name": "4b393258-52be-58e1-ba25-e16b6d87524a", "text": "in a graveyard, a jar of potion night view realism 8k "} +{"id": "3006637", "video_name": "32e71cf1-2641-5a85-878e-5544568bbb3f", "text": "the person remains unchanged,\nthe background begins to turn into outer space,\nafter which snake tattoos begin to fly there, "} +{"id": "7004157", "video_name": "196a8e7e-cbe9-5483-ac03-0c925d8fab49", "text": "The city farm is located on the roofs of skyscrapers, people can climb to the roof and buy the necessary products "} +{"id": "2005391", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "cats small and muscle can flay blue eyes and orange colors with black body "} +{"id": "8002630", "video_name": "21eb2685-aaf7-5d87-8ab8-cfc32719d99e", "text": "a circus with spotlights and stage being lit on fire and collapsing, realistic, cinematic "} +{"id": "0006993", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "raining fried chicken while people trying to catch the fried chicken outside "} +{"id": "6003531", "video_name": "3035f465-1815-5e3d-827a-59f50226f3b4", "text": "1970 video with flying angels talking to one another about the fall of mankind "} +{"id": "0003563", "video_name": "3f99c57f-fc4d-5402-a0d0-aa3690eb3edc", "text": "a Chinese elder tells a parable to his warriors who are sitting around himhim "} +{"id": "7004532", "video_name": "23b91565-ac91-5cde-8d0b-310e5bffe699", "text": "movie reel countdown then transition to white woman with brown hair blue eyes red dress sitting down in vintage cinema eating popcorn and smiling "} +{"id": "7003912", "video_name": "61ea1058-62cc-5fab-85b1-91cf7d6b7271", "text": "Create a potrait of a boy singing "} +{"id": "4004279", "video_name": "30af1dde-8d33-5431-9815-ca5776431495", "text": "the shadows seemed to come alive, twisting into grotesque shapes. "} +{"id": "7003884", "video_name": "3e1edd3e-6c2f-5450-9bf7-43b90f91887e", "text": "A close up of a giant collection of calculators from the 80s Message: COLLECTORS IN SPACE (Font: MODERN) "} +{"id": "6002586", "video_name": "270ab449-18ba-50d7-851c-520136373045", "text": "Storm, boat shaking, character roaring, rope shaking, 3d "} +{"id": "1005913", "video_name": "6c9f4719-3e92-5757-81a8-fb44049f35ea", "text": "cinematic shot, establishing shot, large cavern full of luminous iridescent crystals "} +{"id": "0004669", "video_name": "0d07a128-e17f-5cdd-a50a-6c2173b65188", "text": "An illustration of the cozy family house, both inside and out.Animated cartoon "} +{"id": "1005782", "video_name": "6a6b4e78-dd1a-5cb6-9acb-072c3859d7a7", "text": "big forest in middle small way "} +{"id": "8003199", "video_name": "c00c0db3-53c4-5b7d-bb05-06eccbf8e523", "text": "moving a Sumerian writing in cuneiform. "} +{"id": "7003360", "video_name": "b8f0144d-4cd4-5e88-9472-4d5e3d87e411", "text": "AFD sign falls on a traffic light "} +{"id": "5001371", "video_name": "681b30bb-f93e-5382-a075-68e56aa7fa60", "text": "I want a logo for a rock music band named Foder, vector style "} +{"id": "2005963", "video_name": "8f05d610-fd31-59da-bb48-f1ce1a8ae3c6", "text": "Excited family members packing bags and waving goodbye at the front door. "} +{"id": "2007756", "video_name": "7c6ca362-f1ff-5cfa-a4c5-1296f5c0d6b0", "text": "A happy couple drinking coffee in front of a caravan on the beach "} +{"id": "8003996", "video_name": "ef95cf85-62f7-5645-9c67-177783093118", "text": "The person is walking forward, the puppy follows the owner, and the wind blows Message: 1 Attachment "} +{"id": "0003980", "video_name": "0104c04a-3e5b-50d3-8a02-d7072fc633ed", "text": "A green pixel art mask smiling on a dark background, with minimal movement. "} +{"id": "6002672", "video_name": "7068af34-948f-5f83-8e8f-40cc9bf74918", "text": "a fractal made out of pills that perfectly loops "} +{"id": "2005679", "video_name": "6d3640e9-ae2e-587f-ae8a-cda70a2e2f6d", "text": "3D animation text \n \u201cYour safety is our task\u201d\n\u201cIntelligent Security Systems \u201c "} +{"id": "2007577", "video_name": "75e0a115-d66f-5884-8570-4a0ea7e3f90a", "text": "In this cozy room, three curious children are enjoying pleasant moments together. On the sofa, a lovely sunflower girl is flipping through a beautifully illustrated book, her eyes sparkling with love for the story. On the floor, a girl with a rabbit headband is diligently sprawled over sheets of paper, skillfully outlining the wondrous world she envisions with colorful pens. At the same time, a boy in adorable dinosaur pajamas sits on the floor, immersed in a captivating storybook. "} +{"id": "8002640", "video_name": "66184513-417e-540c-bff1-a4be2d865e5a", "text": "cricket player made from red liquid "} +{"id": "1003721", "video_name": "44befa0b-7a00-50a8-a73d-956f35b84caa", "text": "a beautiful Pegasus flying through a skynof fire flapping its wings, sparks drifting, dark clouds, cinematic "} +{"id": "2005769", "video_name": "d9aad0e6-56d0-5fd8-8433-d40fd3aa0bd7", "text": "Raj was disheartened to hear this. He had traveled so far with hope in his heart, but it seemed his journey had been in vain. Cartoon Character "} +{"id": "2003253", "video_name": "ecdf8670-b4b3-551c-a34e-caea14e5af42", "text": "leaves from the ground begin to bloom and reach for the sun "} +{"id": "5001893", "video_name": "170e1901-9bbb-5b00-9f4c-34551477be25", "text": "an 2 minte animation about Alexandru ioan cuza and his life and battels "} +{"id": "7004448", "video_name": "257221a4-a76e-51a2-8cc8-fd01503c5ffb", "text": "old generation home and pets fly in sky birds "} +{"id": "4002195", "video_name": "474c2742-5085-5a96-8026-b9bda2f2458e", "text": "draw cartoon animation mother and crying baby with beautiful big eyes sitting in a school bus which is moving very fast "} +{"id": "0003897", "video_name": "456642b6-0374-5652-ae1a-548fdb8728d8", "text": "gorilla, dog, cat and captures sitting in Jacuzzi in overcast foggy rainforest, POV footage "} +{"id": "0004591", "video_name": "0ba08e36-9dd1-57d1-9489-00d32b770972", "text": "elvis presly and james dean arm wrestling contest "} +{"id": "7002502", "video_name": "d58f804f-cc29-56e1-94ab-549341dda84a", "text": "little Red Riding Hood Message: 1 Attachment "} +{"id": "8001046", "video_name": "0dd7b9ec-bb67-5a7d-a75a-0166d19ce666", "text": "There, beneath the ancient oak tree, she found the golden acorn and the crystal fountain, shimmering with otherworldly radiance. As she gazed upon these marvels, she felt a deep sense of gratitude for the magical realm she had discovered. "} +{"id": "4004090", "video_name": "c24991fd-b4bf-509b-8d4e-3fa16cdcb04d", "text": "The gang stumbles upon the mysterious garden gate "} +{"id": "0005993", "video_name": "249ff7eb-0a7a-5d5d-bcda-ba54975ebb03", "text": "generate an image of a youtube profile pic about this prompt : Wild Wonders: This name implies that your channel showcases the amazing diversity and beauty of wildlife. "} +{"id": "3003573", "video_name": "7ee3956e-88f8-5121-aae7-1ce00682c2e4", "text": "Spiderman Standing In The Rain At Night "} +{"id": "0004911", "video_name": "114f991a-b976-54d0-a708-32182f40a755", "text": "Petals and splashing Message: water (Font: MODERN) "} +{"id": "0004354", "video_name": "07981e3a-db91-5840-a905-e83728e9c791", "text": "A little girl is reading by the window "} +{"id": "4004200", "video_name": "43f6e4fa-17da-5be5-b0c0-3872179f94c8", "text": "girl facing a challenge in her life "} +{"id": "4004887", "video_name": "a1f32b35-2641-5ee6-adf8-9b3c9134b22d", "text": "Business style 3d cartoon and background magical forest The wolf found a hungry little animal. The animal was very weak. "} +{"id": "6002826", "video_name": "26cb0e58-6204-5931-a9c1-2bcdfc1e647f", "text": "dark red rose held by tattooed hands in darkness "} +{"id": "8003594", "video_name": "7dfb586d-fb43-5069-b644-732c6f49d405", "text": "A farm on a sunny day, please use a style like 3d animated cartoons "} +{"id": "6002849", "video_name": "96502db2-00c3-51bd-b11c-4676237eda33", "text": "pink gorilla with white glasses, 4k "} +{"id": "0003689", "video_name": "41b6e68a-767a-5f56-903f-4dfae0bdff34", "text": "futuristic humans are looking at you "} +{"id": "0004476", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "Man wakes up in hospital bed "} +{"id": "6004517", "video_name": "f7972e78-4e7d-5062-994f-f1c7063cc291", "text": "golf club girls Message: LightSPA (Font: MODERN) "} +{"id": "1003285", "video_name": "3c67aaa0-6335-57dd-acfd-ab66e4caf722", "text": "Leon s Kennedy meeting Carl Johnson "} +{"id": "3003625", "video_name": "7aab5d26-e972-53a4-a8e2-458a0f52375e", "text": "a giant violet orb that is exploding because it is a bomb in a violet atmosphere sci fi world with humans and sci fi planes "} +{"id": "6004890", "video_name": "8efeb6e7-d13b-5f38-8e1c-2400b2500846", "text": "Describe the picturesque view of Gotham City at sunset. "} +{"id": "4004596", "video_name": "e60f3c73-7a25-53c7-b63c-0baac330f9ff", "text": "realistic 4k night forest storm in the cabin "} +{"id": "1006025", "video_name": "6ebb9bab-2bfa-520d-b578-4bfb0703c374", "text": "create an image of Jesus crouched writing in the sand, in the background several people looking, 8k, 4k, realistic "} +{"id": "1005415", "video_name": "638689aa-e444-5e28-8f09-807cc998eb60", "text": "Samuel, always ready to show gratitude, began to fill the pages of the book with his thoughts and emotions of gratitude. He was grateful for the small daily joys, like the birds singing at dawn and the smiles of the children in the village. He also expressed gratitude for the lessons learned from difficult times. "} +{"id": "6004403", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "beautiful illustration, The young tree amidst dried plants, a stark contrast between success and failure. A moment of reflection., 2d illustration , cartoon style "} +{"id": "4003776", "video_name": "3eaf8f1c-6f94-5469-86dc-66f0ff676cff", "text": "a girl and a turtle plant seed together "} +{"id": "0006440", "video_name": "2c783f5c-3059-5fe2-adb3-bc914a8482f5", "text": "a myokine and an adipokine shaking hands and smiling "} +{"id": "6003781", "video_name": "b6c4dca4-ad81-50e8-abe9-a99b7e012aa6", "text": "German expressionist Hansel and gretel, with 1990\u2019s home video aesthetic. "} +{"id": "1004116", "video_name": "4c3cf88b-667c-5186-909c-b85a8c1f36a3", "text": "burning flame like in real way and make everything real ang move camera around room "} +{"id": "2006408", "video_name": "861b4e87-a9ae-521b-b197-681e4c882ca9", "text": "A leaf portrait of a historical figure, capturing their essence and legacy through the medium of leaves. "} +{"id": "2006063", "video_name": "956b458c-28b2-5ece-bd5f-2a42f9fb0e13", "text": "farmer walking down a path in the mountains of asia while a sunset is happening "} +{"id": "1006817", "video_name": "7cb51674-e805-5dbf-9505-038e8c6c6350", "text": "Khalid Bin Walid vs Rustam in the battle of Qadisya "} +{"id": "4003638", "video_name": "6e7cf508-b83c-516a-b8da-c4ab54ae3e1c", "text": "elvish tribe is dancing around the fire "} +{"id": "6004594", "video_name": "716f754e-137c-5517-a5f1-78f0adca6375", "text": "Show me attractive landscape with soothing music in TIKTOK size "} +{"id": "7002704", "video_name": "e4fa3b31-5df3-5908-9c59-e89e0cc9e5b4", "text": "Man name nobody sews tufted carpet of Bayern Munich football club action filming "} +{"id": "4002212", "video_name": "f8cc0112-4b3d-57f7-b5be-fb1ac83a820e", "text": "birth of a bird, Leonora Carrington 1930 "} +{"id": "1004389", "video_name": "5125cefa-dd44-5802-bf6a-16e65743f3e3", "text": "The screen transitions to Sara gazing at her running shoes, realistic "} +{"id": "2004491", "video_name": "e708e569-58c2-5814-b9c3-355500f2a6ef", "text": "old charming handsome man, 8k, sharp, cinematic, realistic,story, "} +{"id": "7003703", "video_name": "fc4260d8-d978-5784-87dd-ad9b1a0d4902", "text": "A guy and one homeless person enter a Russian entrance in the evening "} +{"id": "6002650", "video_name": "843b87a0-d790-5f48-abe7-90cbcbb738f4", "text": "The area in the Atlantic Ocean that stretches between Miami, Bermuda and Puerto Rico is known for the mysterious disappearances of planes and ships. Despite various theories, including extreme weather and magnetic anomalies, there is no definitive explanation for why objects disappeared in the area "} +{"id": "3003244", "video_name": "f80aba75-7a39-5a7c-b805-2e485b63705b", "text": "a cat with motor on the sky "} +{"id": "2003835", "video_name": "260942c8-1a38-5610-9573-bf16b502b035", "text": "An image of Lila with a joyful expression. "} +{"id": "3004865", "video_name": "0804d6c3-d2f0-5d68-b5da-16c4b3c18e67", "text": "tripical beach house, 8k resolution, dynamic lighting, detailed art, harnessed Unreal Engine 5 volumetric lighting Message: hotel (Font: MODERN) "} +{"id": "2003894", "video_name": "cb386b38-18c2-5381-a452-33fdacd02df3", "text": "a man holding a big video camera turns around and filming "} +{"id": "6004750", "video_name": "3d6acbb2-dd98-5852-8c45-930bfcede40b", "text": "happy rich arabs in big offices "} +{"id": "3006875", "video_name": "62cd59a3-80b8-5c26-b8c9-d11d3cb2f628", "text": "a chef cooking inside a hotube "} +{"id": "0005004", "video_name": "131d32b3-cbf8-58b5-b807-e3b07259c519", "text": "princess she was very kind and beautiful, "} +{"id": "1004549", "video_name": "5481412a-fca7-5753-bbee-f46043ae2a2e", "text": "train running, snow weather, huge trees, white nature "} +{"id": "8001872", "video_name": "91f78ad0-52a8-5baf-a642-527635a29fc3", "text": "Octopus Brother vs. Iron Man Details 3D 4K "} +{"id": "2005476", "video_name": "b2be92cb-e18b-5cd1-9221-2214888bcb02", "text": "portrait of a smurf in the forest "} +{"id": "7003308", "video_name": "df7e61fc-7b21-501a-a3fb-f99e8d147a6e", "text": "create an image creation prompt using artificial intelligence with quality maximum, advanced levels of detail and style kinematic. I want an image of a child playing with a ball in a field "} +{"id": "2007067", "video_name": "ad0b4355-83a5-5917-9902-333754eb9632", "text": "Aria, the girl of the deep forest, found her destiny among the trees, forever bound to their secrets and their song. "} +{"id": "8002831", "video_name": "26e0d360-a4dd-517e-827a-9b91746a8670", "text": "The elephant and his one calf while chasing the serpent "} +{"id": "5001798", "video_name": "5069129d-4a6f-5a38-ac24-8b529abbe30d", "text": "anime style japanese city that pans out from the sidewalk "} +{"id": "4002460", "video_name": "1402d2d0-f9e5-568f-8d5d-64338bfa4730", "text": "madhouse style 25 year old indian boy finds a great treasure in a mysterious cave "} +{"id": "3006483", "video_name": "9732fb7d-6d63-5be3-9aee-122739d8c607", "text": "the disco dance floor is in the middle of a neon tulip field, wide a ngle "} +{"id": "6003009", "video_name": "8ee7ff95-392c-571d-8583-128e305116bb", "text": "a man running through crowded times Square, intense movie scene, cinematic "} +{"id": "3006122", "video_name": "affe5270-45f8-55f3-9659-794932a656d5", "text": "The girl wrapped her hands around knees and buried head between legs, chiaroscuro, backlighting, ray tracing, high detail, 8k "} +{"id": "1004143", "video_name": "4cbef518-68bc-5cc5-ad97-de032f064251", "text": "sending red bags Message: 1 Attachment "} +{"id": "8003778", "video_name": "850bf794-ef98-5f9c-80ff-d8d10278f016", "text": "osama bin laden relishing in the joy of hannukah "} +{"id": "1006989", "video_name": "7fe1d64d-15ad-5519-b252-a28ad659dd4b", "text": "A soldier returns home and the door is opened for him. Ray Tracing. Amazing details "} +{"id": "2007407", "video_name": "d4480d78-d628-5ea4-bf9b-07a4727037b9", "text": "Historians who have looked into Clem\u2019s version of his military history now say the first part of the story, about leaving home at ten years old and approaching the 3rd Ohio Infantry first is probably made up "} +{"id": "0006735", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "graffiti art appearing on wall out of nowhere "} +{"id": "4004170", "video_name": "3bf04532-c78c-57b2-80bd-35320a782496", "text": "Create a scene where the matrix is taken over. The internal strife of the protagonist must be visibly present. "} +{"id": "2006368", "video_name": "1e3cc14c-5f37-50b4-8695-ad3945b971b4", "text": "man running through the forest,realistic, cinematic horror "} +{"id": "6004783", "video_name": "f0a5178d-20f4-5272-bf82-821e7deaadf4", "text": "A little girl running in an open grassy field with blue skies "} +{"id": "6002346", "video_name": "51c1178f-2bf1-58bf-a60c-952a22c18826", "text": "bunny having picnic,art by Shaun Tan "} +{"id": "6004564", "video_name": "831e3947-fb4c-519f-91e4-043e33ba475a", "text": "now show A beautiful scene from a dark street and in the back ground the river of gold taken by a 24 mm anamorphic lens, beautiful dark and gold contrast, seed7887016049414566703 "} +{"id": "2004271", "video_name": "007c1c22-80d6-5983-a51a-2c6e082c7f1f", "text": "seamless 8k texture of electrical noise "} +{"id": "1004553", "video_name": "548a6168-7c74-5aff-aff1-d4dedfd6136f", "text": "shanghai in the year 3000 night view "} +{"id": "0004288", "video_name": "066dd0ae-6241-57f7-b630-8d667928b0db", "text": "a shot of a family asleep at night in their cozy home, unaware of the dangers outside "} +{"id": "0005290", "video_name": "17eb2a36-1957-548b-8e6a-910332247a9c", "text": "tony stark standing on stage giving a presentation to many people"} +{"id": "4003739", "video_name": "99b15659-780e-5cf5-8317-7ca4023b922c", "text": "Draw a difficult journey scene with Eris, fairies, and dragons through a maze and a shower of flowers "} +{"id": "2003483", "video_name": "38e5ca99-3030-5f91-a8b5-0825bb1c636d", "text": "A meteor collides with the planet Earth and destroys it. High quality photography "} +{"id": "0005293", "video_name": "17f9f982-4b6c-5e97-8079-62d6f25adca2", "text": "Animated gif of a happy cat dancing, Christmas "} +{"id": "1006281", "video_name": "730529f4-a9e9-5c5b-8224-00a27a8edf47", "text": "man climbing up the mountain to see sunrise "} +{"id": "2005307", "video_name": "3e2a622d-3c32-5105-8434-85baf99d0f72", "text": "a city made of gold, woman in the center, robust clothing with red stones and feathers, releasing magical powers, green light effects "} +{"id": "6002549", "video_name": "10150375-0b6f-51de-aea0-eeb5b8ac5fa9", "text": "An Armenian warrior stands with a sword and in the background is the city of Artashat "} +{"id": "2004571", "video_name": "7b1f3388-ab7c-5e26-a5e4-993da5cbf48d", "text": "A grand staircase decorated for christmas spirals upward, its banisters draped with cobwebs. Candle sconces along the walls flicker irregularly, casting shifting shadows that seem to dance to an otherworldly rhythm. "} +{"id": "3005530", "video_name": "5893ebc8-d630-5186-81ed-5d9a0b892205", "text": "moving clothes and hair from air, birds on the sky "} +{"id": "3004756", "video_name": "070d10b4-4ff4-5745-a51a-c74fc9ebc9aa", "text": "Mr. Heisenberg holding a Great Gatsby glass "} +{"id": "3006123", "video_name": "3a3f859b-6a04-511a-9bc1-5b8ea0453df7", "text": "silhouete of a woman crying on the floor with windows of the city in the background "} +{"id": "3003225", "video_name": "84518b3f-b668-5c96-952c-1085435c9f4e", "text": "Snow globe with an adorable kitten inside, 8k "} +{"id": "7002657", "video_name": "ad210d5f-137a-53c2-a159-f8b0121ec982", "text": "Electricity is essential to our modern world, powering everything from lights and appliances to computers and transportation. Learning how to use electricity safely and effectively is vital for many professions, including electricians, electrical contractors, and electrical engineers. This course will teach you the basics of electricity, including how to design and troubleshoot electrical circuits. You will also gain the knowledge and skills you need to work safely with electrical equipment. "} +{"id": "6002244", "video_name": "56864d44-db48-5bf7-b452-48f266d652ae", "text": "chun li getting her cheeks clapped up by Midas "} +{"id": "4003332", "video_name": "fbae8c14-73b7-5808-a58e-6a7e5e591775", "text": "woman with hair made out of flowers "} +{"id": "1005565", "video_name": "666fdaff-5384-57e7-9f0f-65deb030338b", "text": "Be yourself; everyone else is already taken.Oscar Wilde "} +{"id": "6002087", "video_name": "c58d8128-c8b3-5672-927c-79dd399cb8c0", "text": "dreamscape, beautiful woman staring past the camera, low depth of field, lots of motion in the background "} +{"id": "1006852", "video_name": "7d2e7e15-69f9-561a-89f6-53c1e12e1c92", "text": "gamer stands on the tournament stage, with the crowd roaring with excitement in background "} +{"id": "3006278", "video_name": "7fc65f17-9dc7-576b-9648-f5678f00f7e1", "text": "noodles Message: send noodles (Font: MODERN) "} +{"id": "2004685", "video_name": "031e165c-a6f3-5438-af5f-d66c2f166c1d", "text": "The glamorous life of Lily, surrounded by her friends. "} +{"id": "3004708", "video_name": "47590f69-e7ca-5e17-8c95-22fe0dab2531", "text": "number 1 to appear on the screen for young children to learn numbers "} +{"id": "7002516", "video_name": "f538cd4a-3307-5483-bb52-13866d8eaba8", "text": "nature of nepal surkhet ,ar 16:7 motion 2 "} +{"id": "8003906", "video_name": "0d7d084b-e2a1-5659-a182-7251ed3704ec", "text": "a beaver sits in a huge robot, machine guns are attached to the arms of the robot, a laser shoots from machine guns, you can see a helicopter and a tank in the distance, in the city. "} +{"id": "8003870", "video_name": "3ac17aab-86c9-5577-adbe-9ce3ef35cf0f", "text": "Pangu is a Chinese deity who created heaven and earth. He wielded a huge axe to split the chaos and created heaven and earth "} +{"id": "0005355", "video_name": "1950c513-7ff3-5dd0-974a-2e4783bca817", "text": "Scene 5: A robot leader with an intimidating presence and a metallic voice, emerges to confront the humans. "} +{"id": "7002069", "video_name": "d4bbb051-5981-58bf-9da4-1f22363151c8", "text": "smile and looking disney boy character "} +{"id": "0004318", "video_name": "07082abe-b7c9-5186-9bfc-1e99236f5733", "text": "A video of a mob of people in front of a burning vehicle at a riot Message: DIER DEOL (Font: MODERN) "} +{"id": "8001836", "video_name": "b7895406-b7c5-5419-9267-8d860c0d0a56", "text": "Begin with a picturesque description of the small town where Timmy and Toto live, emphasizing their close friendship and love for exploration. "} +{"id": "0005256", "video_name": "1751d290-ec55-51b8-9460-199b390ce765", "text": "create a video about the EV car which is charging now "} +{"id": "4004355", "video_name": "1490f0b3-b659-5abf-a217-5c6df0aa0960", "text": "happy animals in the forest cartoon "} +{"id": "4003663", "video_name": "3cd8d444-aac5-58fa-873a-8a6a3761b520", "text": "construction workers fall from the building "} +{"id": "3004674", "video_name": "adba86ad-da9a-5c24-89db-6bb4e7d00657", "text": "Show a group of young men, eager but apprehensive, planning to investigate the station at night. "} +{"id": "2005558", "video_name": "cb345153-d7fd-5b1f-86af-6bfd8c7b0035", "text": "create a video of a group of kids dressed in scary costumes during a halloween party "} +{"id": "6004825", "video_name": "02dc5d02-2e6f-5bf4-ad20-1bf35b65a5a6", "text": "Attack on Titan ,anime eyes , hair , background moving "} +{"id": "2003439", "video_name": "77ef9b64-8b1e-5373-bd9a-d599dbbc9a97", "text": "video footage from an ancient athenian university "} +{"id": "8003124", "video_name": "9e1804d0-da0f-5b6f-b1ba-7fac5535ee9f", "text": "create a landscape of rolling hills with giant colorful mushrooms and beautiful flowers growing taller and morphing into psychedelic scenery using watercolor techniques in a style of fantasia 8k hyperrealistic "} +{"id": "7004018", "video_name": "8dee164e-907b-5431-9614-3135880b2f3c", "text": "Use the turbine to turn the generator, which produces electricity. The electricity is a product of mechanical energy that has been converted into electrical energy. It is composed of electric charges that have potential and current. The electricity can provide light and sound for the system. "} +{"id": "4003467", "video_name": "4c92f4ee-716f-59ce-8985-030ddbcf447f", "text": "Goat: A friendly goat with a warm expression. "} +{"id": "3005061", "video_name": "aab2f427-84c6-59bd-9719-361ed91d09b5", "text": "scientist taken to a secret alien city on an alien planet in 1950 ,action,realistic,lots of details ,cinimatic "} +{"id": "7002062", "video_name": "367a8821-8610-5a4d-8111-72090cbef460", "text": "a wild animal run and catch a deer 4k hd "} +{"id": "3004983", "video_name": "6ccd3c64-5ffe-5fc9-a532-399b9af87228", "text": "cinematic movement, scifi scene, urban, night, beautiful light "} +{"id": "7003256", "video_name": "656b8dee-35a8-5318-be82-550606fc4cb6", "text": "Eric Andre dancing with Kermit and Barbie "} +{"id": "8002921", "video_name": "f091900c-7642-5704-b1db-7efa9e2b7f5d", "text": "Show an animated scene of Billy and Bella playing by the sparkling river "} +{"id": "7002754", "video_name": "f9ef40e9-92cc-5375-b998-ec561909fc00", "text": "I want a quiet living room with a fireplace burning with quiet embers and outside the window the rain falls quietly "} +{"id": "4003247", "video_name": "e2c945c0-9d1b-5b17-86aa-1470b8b9b431", "text": "boy is getting full power and glowing "} +{"id": "6002325", "video_name": "6260fb36-62a9-5aa9-b9d3-f978653eba80", "text": "Fantasy illustration of Sakura Kinomoto from Cardcaptor Sakura, magical atmosphere, cherry blossom background, dynamic pose, vibrant colors, CLAMP art style, glowing wand, enchanting spells. "} +{"id": "4003779", "video_name": "95a7cdf2-e23a-5367-ae8e-8ad7d7b7ac27", "text": "a boat going down the canals in Venice with a gorilla sitting on it "} +{"id": "4004398", "video_name": "01c15c2b-c975-5155-bf15-ad5b8aa7f8f9", "text": "a swedish blond man with blue eyes with is looking himself on the mirror of his bedroom and he puts a black leather jacket with studs. he has his back turned and you can see his image in the mirror "} +{"id": "6004225", "video_name": "6718424b-e9e2-5d52-81c0-00cc484f0079", "text": "a white glove hand tossing a coin up, making it spin. Anime style "} +{"id": "4002194", "video_name": "6ca13556-a15e-5c0d-9a5d-7baadc3dfda0", "text": "cinematic silhouette shot of Jesus Christ talking with mountain background, volumetric fog, volumetric lighting "} +{"id": "6003969", "video_name": "9a56e035-1b34-579d-8abc-f06e5557171f", "text": "An explainer video for a new marketing software platform, explaining how the platform can help businesses increase their sales and leads. The video should be engaging and easy to understand, and it should use clear and concise language. "} +{"id": "7003026", "video_name": "7ce3c361-3969-5aca-95a6-293b329e0369", "text": "the people assembled in the courtyard of the castle, movie film, fantasy, hight quality, hight detailed, 4K, movie, film, cinematic movie, Darkfantasy, 1970s, 70s "} +{"id": "0006271", "video_name": "29ccaf5b-d598-52c5-b25f-7c6f73895d84", "text": "a cute animated character standing beside a cotton candy machine "} +{"id": "0006826", "video_name": "33b72c9d-7874-509d-8e00-64cf0678eb5d", "text": "a gas cylinder delivery man making deliveries to the moon "} +{"id": "3003274", "video_name": "081b00ae-91c1-5ea9-8c1e-9f584fb9ac23", "text": "aliens mocking an astronaut in the laboratory, 16 mm, black and white "} +{"id": "0004073", "video_name": "02c931b9-7ed6-5b8c-bae9-710ef5969d55", "text": "man with two minds and that chooses the type of pasta to eat "} +{"id": "2004110", "video_name": "60f3c656-562b-57ae-ac8a-a8069d829a3e", "text": "two young people running through the forest scared, chased by the big black wolf "} +{"id": "2004915", "video_name": "14543f3f-b618-5eca-ad49-2d44b2bad680", "text": "James, middle aged man,newfound purpose, returns to civilization, his camera filled with images and his mind teeming with the echoes of a time long gone. "} +{"id": "4003008", "video_name": "60dcdc5c-1170-5f7a-9a46-39b4de30642d", "text": "youtube intro for channel Desi Educators mumma and baby "} +{"id": "5001519", "video_name": "be04d20e-41da-5aa0-a671-b325bb05a234", "text": "a blonde woman with one hand in the air protesting against the government, a team of fashionable team of event planners behind her protesting, in the style of wes anderson "} +{"id": "2005232", "video_name": "34c8e42d-77ad-5652-8a05-b7e98e8af675", "text": "Oliver hands Ethan a small sapling with a mischievous grin. Illustrate their teamwork as they prepare the soil and plant the sapling. Highlight their shared laughter and storytelling "} +{"id": "1006454", "video_name": "7621452e-3126-5ed4-b4a6-1c0c17526ead", "text": "cinematic video of a car on fire, night "} +{"id": "6003591", "video_name": "b55153ed-934d-522e-abf6-f4c709149554", "text": "one pixar style badger looking through binoculars "} +{"id": "2007244", "video_name": "ed7966b8-d5a1-5ee4-9dc1-0a6a6d3147bc", "text": "The third trial awaited Ay\u015fe at the Labyrinth of Shadows, a maze of twisted paths that played tricks on the mind. "} +{"id": "0004598", "video_name": "0bafe202-7341-54c4-9e9f-8823728393e1", "text": "several kings of the bible sitting together "} +{"id": "0004340", "video_name": "0768628d-af27-5bb6-850d-3f28eca8a4b8", "text": "a 13 years old child in a magic forest "} +{"id": "1003303", "video_name": "3cc975b1-64f8-5ea2-b1f2-7e409f103aae", "text": "blanka, medieval knight, anime key visual, Baroque knight, electric sparks, electricity, rusty, claws, big fangs, surreal, ripped muscles, at The Galapagos Islands, Hazy conditions, Knightcore, Sun Rays "} +{"id": "0003892", "video_name": "45556da1-7588-5ab7-b244-fbed7b96faed", "text": "a sumo fighter on a dohy\u014d, drawn by the hand of shintaro kago "} +{"id": "6004382", "video_name": "4f430a6d-b1e6-569f-b776-5676cc3d26e4", "text": "christopher robin (cute, short red hair, light blue shirt, dark blue short pants, and red shoes) hugging Pooh, in the forest, zoom out "} +{"id": "4004393", "video_name": "eb1d80d0-418e-5ee1-9a4b-23de7fce7391", "text": "iron man eating chicken with popular Indian singer Arijit sing "} +{"id": "7004468", "video_name": "adbb93c5-290b-544a-b991-1c1ea4f473a7", "text": "4k beautiful place, peace, harmony, world around the image, lightday, move plants, people walking down the path, grasses imge "} +{"id": "6002155", "video_name": "d7810f7d-1ff1-5045-9afb-2ebe7a18714f", "text": "beautiful kind woman\u2019s face in the sky among clouds "} +{"id": "7003318", "video_name": "08c531d3-c72d-5372-a4ed-ec6f3373bced", "text": "thorpe park resort and a strata rollercoaster in the background on a sunny day "} +{"id": "0005449", "video_name": "1af0adec-ff4c-5713-8622-1f250a897e1e", "text": "creta an ingredient like Romain Lenancker in 3D animation, watery effect, with dark background highly quality "} +{"id": "7004354", "video_name": "3cc6c486-e461-5d34-9699-02f14d410165", "text": "Gogo saturu is watching horizon , anime mod "} +{"id": "2007776", "video_name": "594474ab-440b-546c-840b-6591538932f3", "text": "A Man Running From A Ghost In Walmart "} +{"id": "0006327", "video_name": "2ab1fea8-5c0c-5d8d-9226-a24ce9a0f7ed", "text": "Apex began to feel a sense of unease beneath the waves. "} +{"id": "1004856", "video_name": "59baca05-dce9-57a5-83ff-44a2488db65a", "text": "Generate an enticing video clip: Illustrate a metal fork elegantly piercing through two succulent apple pieces, positioned on a plate. From an overhead perspective, showcase a steady drizzle of velvety peanut butter cascading generously over the apple slices. Employ visual finesse to capture the interplay of textures and flavors, creating a visual treat that evokes a sense of indulgence and anticipation. "} +{"id": "6002734", "video_name": "9ecfe53e-d624-5a65-973e-22f1cbf4f38b", "text": "make this image to video high resolution Message: 1 Attachment "} +{"id": "0004934", "video_name": "11c6af40-9f8a-5ebc-8527-52b3a2a34144", "text": "a storm in hyper quality, high quality details "} +{"id": "4004669", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "luminiscent plants and trees in a futuristic alloy and neon city with stylish gardens Message: Technological Inno (Font: MODERN) "} +{"id": "4004981", "video_name": "6455942a-5d7f-5c61-b137-cc90184cd8eb", "text": "luxury cars in front of the big company "} +{"id": "1006774", "video_name": "7c034c21-67c9-59de-9050-cd296b05a5fd", "text": "cartoon businessmen talk at a business meeting "} +{"id": "4004765", "video_name": "3dc5aefe-ec1b-5261-b232-1178be2e046c", "text": "an octopus swimming at full spee "} +{"id": "2007388", "video_name": "e74db5c2-2939-5f68-8a0e-c0722f91f73c", "text": "a cute kid having a plate of carrot for meal, face changes from sad to a smile , ar 9:16 "} +{"id": "2005740", "video_name": "06d04fff-a981-5196-a4f0-d029bb979b1f", "text": "realistic red haired woman wearing purple summer dress comes out of glowing magic book in attic "} +{"id": "0004348", "video_name": "07885d6e-bb43-50db-90fd-660f06780859", "text": "snow in forbidden city girl in ming dynasty outfit "} +{"id": "2005712", "video_name": "a70a0bff-399a-5708-a2ce-1d34de97facf", "text": "A rhino drinking from a lake in the savannah "} +{"id": "0005239", "video_name": "171a2a3e-7631-50be-b578-cceba3a5c143", "text": "group of people supporting each other "} +{"id": "7004058", "video_name": "5f23cb2f-a618-5fe4-8a4a-9b33a4b47e13", "text": "imagine a lion cub walking towards the edge of the cliff, cinematic scene 4k ultra real colour grading sun setting "} +{"id": "8002609", "video_name": "feacd25e-9fb4-57c3-87ae-17e1db6d3af8", "text": "roaring at the camera and moves its 1st front and 4th hind legs slightly like in anime. "} +{"id": "6002153", "video_name": "e549816b-64ca-56d1-9e50-835f42f5780a", "text": "Hockey game in a stadium full of people Message: 1 Attachment "} +{"id": "4004999", "video_name": "0140334a-27cd-5b94-9fff-4fce7c76aa87", "text": "a beautiful girl dancing against the backdrop of a volcano, cartoon style, 16:9 "} +{"id": "3003470", "video_name": "e2d936a1-39f4-5ed6-b2a2-c60f3fedc7dc", "text": "Stella realist girl, the little star, watching over the world from high up in the night sky. "} +{"id": "7004504", "video_name": "02a08ed9-285c-525b-92a6-97098d6de2c3", "text": "The power plant is burning in Egypt "} +{"id": "1004823", "video_name": "59213f90-a2fc-5031-bdfa-f299fa270770", "text": "Bamboo trees beside the stream There was a small stream filled with small round stones. The water was clear. It was raining.32k "} +{"id": "6003097", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "transform the photo in the Disney pixar film "} +{"id": "7002433", "video_name": "16dc1dc4-f791-5809-ab7f-2f13da1513e6", "text": "Stephen amell working as police officer "} +{"id": "7002371", "video_name": "7e8aee61-db52-5f1c-b71e-d588117c3e15", "text": "party decorations Message: Coloring book (Font: MODERN) "} +{"id": "3004637", "video_name": "e3242459-2163-52c5-8fba-1e747fe65461", "text": "One Cowgirl wearing a cowboy hat and cowboy boots opening the doors of a saloon inviting us in "} +{"id": "6004680", "video_name": "a5dfa5ee-545a-58b5-9625-7549b8249af8", "text": "blue water flowing violently from top to bottom "} +{"id": "3005183", "video_name": "5663b07a-31dd-5889-8d8d-70737a580320", "text": "creates a 3D animation of a person running after a dog on the beach sand "} +{"id": "4002464", "video_name": "aaa246e2-0498-5e69-8bea-bfea4148ab74", "text": "the woman woke up startled and sat up sharply on the bed Message: 1 Attachment "} +{"id": "1006160", "video_name": "70cbb835-5fb9-5294-bd6c-b6c2da0d9a7b", "text": "alien life form looking into camera and grabbing camera "} +{"id": "4003287", "video_name": "b017d118-5e2f-58cf-912c-de1df5e77efb", "text": "computer system being built from start to finish "} +{"id": "3006176", "video_name": "05930717-57b8-598c-be5b-9d4cffc2aefb", "text": "A bat is sitting on a bacardi "} +{"id": "4004643", "video_name": "fed0ab63-0a0b-59da-b39d-63303c852ea9", "text": "ilon musk talk to American people in 2024 candidates "} +{"id": "0006706", "video_name": "3174d1b3-0c27-5407-803a-4743c8d1027c", "text": "A popular market in Fez. A person in his forties inside his store sells chebakia (or qaryoush or makhrakah), which is essentially a Moroccan Ramadan dessert that no Moroccan home is without in the month of Ramadan, covered with honey and sesame seeds or galangal.\nformat hd "} +{"id": "8003800", "video_name": "76d2cebe-cda1-5987-9bc3-c93e1a392340", "text": "video of hindu king standing alone in the jungle "} +{"id": "7003262", "video_name": "45bbd2d7-9bd2-5d76-a28e-680063200712", "text": "abandoned road full of trees. Illuminated Street Lamps and Cloudy Sky with Lightning. "} +{"id": "2007101", "video_name": "2c1515e3-45c6-5153-9a89-0cda633694ed", "text": "a small girl riding a horse "} +{"id": "6003032", "video_name": "a439f724-4062-56d6-ab52-35be918a06d6", "text": "slowly ship movement, slowly soldiers walking, sea movement and water effects, smooth effects "} +{"id": "5001930", "video_name": "b79cf47b-5984-55e1-8c0b-72c3ee99a32c", "text": "The crew members working together to execute a daring plan to stabilize the wormhole generator and escape the alternate universe. "} +{"id": "1006522", "video_name": "775d521c-59e4-59f3-ba69-e463d9a08b35", "text": "a white, yellow and black cat , surfing realistic style Message: TICA (Font: MODERN) "} +{"id": "2004006", "video_name": "6b6cad46-175c-54c4-bd47-aa83caad7d1e", "text": "lion wearing a eyeglasses and walking in desert "} +{"id": "3004035", "video_name": "a8064196-2ea3-5220-9a02-feeda15e2144", "text": "Heavy Snowfall at Gateway of India car driving "} +{"id": "0006517", "video_name": "2de308c4-febe-5a54-8dfb-c72389fdeedf", "text": "Garena Free Fire Max, a popular mobile battle royale game, "} +{"id": "1004376", "video_name": "50d6e6e1-adac-5de0-8090-f389eaf1dea0", "text": "kebab spinning on a plate full of sauce, the sauce is spilling around the plate "} +{"id": "3003787", "video_name": "a567bf6f-0066-5227-b7dd-5a3b610825b1", "text": "Orange suit astronaut pov from moving Rover on Mars surface "} +{"id": "0005529", "video_name": "1c607a2a-0d7e-5c0c-b682-3bd9360922dd", "text": "An alien alone hightly equipe with technology in a ai laboratory full body in a white and blue suite watcing straight at the camera sit down behind a desk behind him a large window where we seeing the rain falling "} +{"id": "2005292", "video_name": "6f10e6d0-8c7f-5469-9d10-2806499a1a53", "text": "fox in the wind, and it faces to me "} +{"id": "0004231", "video_name": "057f16ac-bde7-59f1-ab28-1142fd42e7f9", "text": "cartoon snow man on a hill, snow falling "} +{"id": "5001320", "video_name": "65a66c8f-873d-5dcf-8c13-9ef2305de64a", "text": "three very sexy girls on bed in a party "} +{"id": "5001924", "video_name": "1f972d8d-ac95-5bc3-bd86-43e48f84e39d", "text": "black hole,grassland ,super complex device made of metal,black sky "} +{"id": "2003905", "video_name": "089c7a72-33b5-535c-a387-8a5876fef3bc", "text": "9279811240803845489 hair gently blowing in air "} +{"id": "2006410", "video_name": "29333f30-e613-528c-9276-0e7ab03b8980", "text": "a pea floating in the vastness of space "} +{"id": "2004055", "video_name": "38627265-ac39-5684-953a-6f4fbbc09e20", "text": "One day, a fair came to the village "} +{"id": "8003266", "video_name": "e6511549-df39-56a6-814b-78529cb70d56", "text": "camera zooming in, a person riding a whale through the waves "} +{"id": "0003911", "video_name": "4597fbb6-b8e3-50e9-8771-09e88d0e96d6", "text": "Create the best view of Guatemala that can encourage others to visit "} +{"id": "2003544", "video_name": "8adfb1a8-4447-5769-b4f0-c50ea65c6cac", "text": "the holy grail, spinning, electric, digital, iridescent, luminous, dark "} +{"id": "1006400", "video_name": "75367c4a-055a-55ee-928f-6013aab29740", "text": "create the image of a kind person "} +{"id": "8002519", "video_name": "f323b2a9-401f-51b0-a831-bee6384a3bad", "text": "Soyjack screaming on anime girl and cries "} +{"id": "2003814", "video_name": "3a0194ca-1757-50af-9c5f-16b464b5b33d", "text": "illustrated sketch girl sitting on orange directors chair while eating ceasar salad "} +{"id": "7004005", "video_name": "3603b3e6-61e5-52e3-a649-b849f26525f2", "text": "shaggy and finn fighting demons for the multiversus "} +{"id": "6004903", "video_name": "a462a917-3154-5f58-b586-c0131cdf53a4", "text": "Ironman i.e. the superhero of Marvel Studio "} +{"id": "3006639", "video_name": "f0e9d36e-30ec-5020-9ad6-46b541a5c205", "text": "A huge 25 ft gigantic Anaconda in the Amazon jungle "} +{"id": "0003098", "video_name": "36f665ee-1c89-5116-9a19-568d00d59684", "text": "A young man sitting at a desk using a computer with a light beard looks at the camera "} +{"id": "2003214", "video_name": "7825be9f-ff7b-5867-8bd5-9b917fb6ec4f", "text": "Little Mac with a meticulously sculpted boxing stance, lifelike sweat droplets, and a vivid representation of determination in his eyes, all showcased in stunning 8K resolution. "} +{"id": "6003982", "video_name": "1d3851e9-aeeb-5d74-ba39-4dd01bcf0653", "text": "Rolls Royce car driving trough dubai, Orange and Ceyan color scheme "} +{"id": "6002096", "video_name": "c6eb316d-9c72-58bf-ae75-6fbaeb26df1f", "text": "a live box character walking through the woods "} +{"id": "0004644", "video_name": "0c8c4591-944f-55d4-b14b-a75dac635597", "text": "a man following another man through a graveyard for 30 seconds "} +{"id": "0006668", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "green cat is flying under the brown table "} +{"id": "4004150", "video_name": "d0aeb525-e75a-5885-b672-7c3266accf81", "text": "tuxedo kitten sleeping and then getting up for a stretch at sunset, slow "} +{"id": "7003336", "video_name": "4bc3391d-21de-551e-aa8b-29a5f7b8bb07", "text": "lady coming out of a light "} +{"id": "7004267", "video_name": "3d286ba1-057a-5f7e-8922-3e45114cbb21", "text": "girl dancing alone in a flower summer dress under the moon "} +{"id": "6002968", "video_name": "67818c95-04e9-537c-9654-b19be0e0fd64", "text": "tom cruise doing a crszy stunt that\u2019s never been done before "} +{"id": "7004506", "video_name": "05662275-af3c-544b-a268-5d740be07aa5", "text": "evil Lulu from league of legends "} +{"id": "2005072", "video_name": "4d30a502-a60e-5697-a6ad-a0981d8dd779", "text": "A beautiful night sky filled with stars and magical constellations. "} +{"id": "4004978", "video_name": "0634ce4e-d4ae-55ca-8a0c-56a16b62bb8c", "text": "high resolution 5 second video where a beautiful kingdom where at the side ways it has a lake, birds, mountains, small houses, birds will be flying, water will be moving, people are walking nearby. "} +{"id": "2006554", "video_name": "da360f5a-0b46-5274-8854-83fae3dbb0b0", "text": "saturn rings around the earth zoom out video "} +{"id": "0003521", "video_name": "3eee5fe9-f7f8-5f10-b527-368bcd1d93df", "text": "In an epic clash of ancient and futuristic, an imposing viking warrior locks horns with a formidable cyborg adversary. Show us a realistic and highly detailed portrayal of their intense battle, each displaying their unique weaponry, armor, and battle scars. "} +{"id": "6004978", "video_name": "eb7ddffc-5941-52cf-aa8f-5e49e3b31d79", "text": "a sunflower headed men in the field, uhd, dynamic lights, a24 film style, old vintage, blurry summer lens, liminal core "} +{"id": "3005300", "video_name": "e6ecd5da-bba0-5358-b16a-fbead0c91019", "text": "Vlad III, now a grown man, returning to Wallachia on horseback, his face set with determination as he gazes out at the sprawling countryside, Trending on ArtStation for its epic scale and historical accuracy "} +{"id": "0006241", "video_name": "28fd05cb-a2dc-5335-b83e-5cabbc8391e0", "text": "red audi rs moving down the road "} +{"id": "1004925", "video_name": "5b0dbc55-8681-55b3-87a9-4cc43c7949f0", "text": "put some word in this video the words is DAK "} +{"id": "1003823", "video_name": "46a1d37a-db7b-5a33-8128-a9d99374cff1", "text": "Create a animation of Doraemon without ears saying hi "} +{"id": "2005666", "video_name": "8fecc498-0a1a-5269-8633-149303cd2f2c", "text": "A bridge connecting two opposite sides, where one side represents depression and the other contribution "} +{"id": "8003356", "video_name": "a7ed7d2a-9974-5de8-9a1f-611e555eeb52", "text": "a Hindu saint meditating on near a river and there are mountains and some tress and the sun is glowing and sunrays are going only towards the Saint "} +{"id": "4004425", "video_name": "9467a4ea-4f63-5b5c-95d5-fa74080fc0a7", "text": "kitten caught a fish and put in front of a little girl Sarah "} +{"id": "5001806", "video_name": "239012ae-0676-5e8a-a5ba-8ad4ce5b20c8", "text": "Beautiful Chinese Hanfu girl dancing under the golden maple tree "} +{"id": "3003290", "video_name": "be475c78-6631-5415-b471-2411269925d1", "text": "19th Century Reverend with a Toothache "} +{"id": "1005069", "video_name": "5d932a77-e6f5-53d3-ab36-7827e1cedd01", "text": "A composition of a big waves in a blue color grade Message: wave (Font: MODERN) "} +{"id": "6003081", "video_name": "bb426574-144f-57e8-a2c6-21548d9dd19e", "text": "beautiful rainbows, hand reaches towards the rainbow, rainbow grows and bends "} +{"id": "4004463", "video_name": "7e93c2a0-fdca-5d18-9731-ea1a0c6231c9", "text": "a native braqzilian indian in amazonas he is walking by the rain forest ar 16:9 "} +{"id": "4004705", "video_name": "f24e2eae-b70a-5835-aa9c-88d4c5c8636f", "text": "a scary night in forbidden forest, trees hustling, stormy, raining, lightning Message: hello (Font: MODERN) "} +{"id": "4002082", "video_name": "48b31903-ab9a-5e0c-9f10-60051b6f1886", "text": "Maya the Fox, standing on the forest floor "} +{"id": "6004622", "video_name": "7414b479-70c7-5e6a-8869-d90bea79e9ae", "text": "visual stimulation, satisfying for autistic kids "} +{"id": "1005191", "video_name": "5f759378-b803-55ba-9eb5-68fe00245b36", "text": "car way in deep forest on full moon light "} +{"id": "2005652", "video_name": "3cf74019-89e5-5b68-90a6-a5f9842bb6bf", "text": "a disney pixar cartoon style, In this bustling city, the streets are lively and filled with a constant flow of people and vehicles. Skyscrapers rise high, displaying modern and creative architecture. People hurry along the sidewalks, and the storefronts on both sides of the street are brightly lit, emitting a variety of dazzling colors. Neon lights outline the cityscape in the night sky, and the radiant lights twinkle like stars, creating a vibrant and lively urban scene.8k,utlra HD,realistic,3d animation "} +{"id": "6004391", "video_name": "2a2a4438-90a6-591a-84e8-67c44abfcf62", "text": "Russia ran out of vodka when celebrating the end of World War "} +{"id": "0003661", "video_name": "41398ca4-0ac4-5ede-b43d-72799f387ac6", "text": "cinematic and photo realistic video with beauty young woman teasing via her finger to the camera "} +{"id": "3004103", "video_name": "720a2e8b-66a1-556a-89f6-7c28d2c5ef9f", "text": "Sunset by the sea, palm trees and a boat just passing by, sound of the sea 16:9 "} +{"id": "4004180", "video_name": "935b5503-3697-5367-b893-b721ccbb09db", "text": "a panda bear is rollerblading in the cyberpunk future, skatepark "} +{"id": "6003692", "video_name": "43a9b02c-1b2c-5a94-9a48-19a5f44ab812", "text": "plain charcoal grey photography background, well lit "} +{"id": "0005573", "video_name": "1d325394-e7c9-54c7-969b-6a3b214409d2", "text": "medium shot of a stream of yellow liquid being poured into a white clean american standard toilet Cinematics time lapse "} +{"id": "2007695", "video_name": "5cf6e5bb-5b6b-526d-be8c-60f98790911c", "text": "robot explorer walker on Martian hill walking and scanning, wind, movement "} +{"id": "1006280", "video_name": "73041a65-17b5-56d7-ab1e-6aed6a31773e", "text": "a circular chamber with glowing sigils all over the floor "} +{"id": "3004843", "video_name": "b0982b59-dd56-52f6-8db7-dbdc797e5aaf", "text": "The girl tilts her head and neck sharply to the right. "} +{"id": "8003927", "video_name": "a6ad885e-c42b-57ad-a182-dda4a71b39f6", "text": "a website, design a serene and welcoming homepage for a Christian community website. The homepage should feature a hero section with an inspiring Bible verse, a calming color palette including soft blues and whites, and a clear navigation menu for easy access to sections like sermons, events, and community forums. The design should evoke a sense of spiritual growth and connection while ensuring mobile responsiveness and accessibility for all users. "} +{"id": "1005813", "video_name": "6adb599e-26fa-5c8d-9b3d-c27313f0808b", "text": "a man can crying in home "} +{"id": "5001390", "video_name": "ba585dcc-4832-59fe-8103-194c8210a1d9", "text": "face of a woman crying in the dark, tears are neon blue, the head is not moving the only thing moving are the tears "} +{"id": "2004506", "video_name": "3db72d99-9102-5124-9f70-6f0dc0de95e3", "text": "zombies herd, running, the last of us aesthetic "} +{"id": "3005825", "video_name": "2623663b-1db8-5574-928f-622fead2c1f4", "text": "The legend of Solomon and the Ark of the Covenant emphasize the sacred character and importance of the Ark in Jewish tradition. "} +{"id": "4004921", "video_name": "4d3f53fc-6cfa-51aa-a344-fec9fb549332", "text": "boy at the top of mount everest "} +{"id": "2007156", "video_name": "3fae51ca-db4a-51ae-b6bf-c1234ebca0c2", "text": "bee flyings 9.16 pixel cinema style hdr "} +{"id": "1003939", "video_name": "48adf101-4059-5655-9432-6731845952a5", "text": "man fishing from boat in open ocean with spinning rod "} +{"id": "3003322", "video_name": "aae9ff0d-86fb-5911-b9d6-73c1fcd78811", "text": "dark vador facing thanos in a western style duel, realistic, "} +{"id": "0004499", "video_name": "0a011506-2799-5b1e-ba2a-d9d5fdc4e735", "text": "stoic heavenly angels appearing in a dream of serenity "} +{"id": "8002344", "video_name": "58ee27a5-381c-532f-bd8b-93a3bd3610e3", "text": "a funny blue alien creature with spiral eyes and tentacles for arms. "} +{"id": "4004341", "video_name": "5ca05c96-7a0b-568f-acb4-e7129a8d98b2", "text": "Car emerging from the forest onto an open road, in the style of triumphant escape, golden hour lighting, aerial shots, tracking shots, rising camera movements "} +{"id": "7002282", "video_name": "aa09954b-e9b6-59fa-bb5f-bd8d63cccfff", "text": "Leo, clad in his pajamas, stands by the window, looking out at the bright morning sun. 3d animation style, video dimension 1024x786 "} +{"id": "2004149", "video_name": "57431ac1-37da-5995-9a0c-ca56e57b4351", "text": "The ghostly ship drifted closer, its spectral crew emerging from the darkness. They were skeletal figures, their eyes glowing with an eerie light. They stared at Thomas with a hunger that sent a shiver down his spine. "} +{"id": "4004100", "video_name": "d9c41f86-8d5d-5e68-80f0-235adb34adee", "text": "Lisa lefted eye lopez rapping in heavens "} +{"id": "8001757", "video_name": "23d6c48f-9c2f-54d9-83e6-8c55449860f3", "text": "Showing a wall filled with pictures and cutouts,highly detailed,8k,gs 11,motion 3 "} +{"id": "4002576", "video_name": "13da69e4-5615-5216-be58-8f1c09ccd148", "text": "4 blonde girls sitting in a red saab convertible "} +{"id": "0004223", "video_name": "055d6794-6d70-593b-97d6-c568a01c0054", "text": "A perfect whey protein powder that promotes muscle production and immunity "} +{"id": "0005624", "video_name": "1e4ac0b9-bf6a-5afa-b42c-1b34ef4a2b60", "text": "Dawn over the sea. Birds fly by. Light splashing of water on small coastal pebbles. "} +{"id": "2003767", "video_name": "9cc199ac-c46f-544b-938d-9124ce30f1bc", "text": "a glass of water with fingers floating in it "} +{"id": "3006321", "video_name": "f27998bb-57f0-5838-b3f5-8b1aff12d8ac", "text": "there are a little girl meet a man on a path that crosses the woods. Seen from above, a very distant shot, with an industrial "} +{"id": "0004897", "video_name": "11174e37-5b11-5f8a-8d03-49aef05aa607", "text": "A handsome man who is blind, facing straight ahead. Beautiful Final Fantasy style animation "} +{"id": "7003024", "video_name": "59e2e0ff-6587-5182-b63d-ad954cdd9815", "text": "A Lord Krishna is playing flute with peacock in background "} +{"id": "3004177", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "a reper with neon light jacket "} +{"id": "0003889", "video_name": "454abe3f-76a3-506b-9f2b-54a83082538d", "text": "smile, laugh, , the image keep dramatic shaking "} +{"id": "3004269", "video_name": "5625e920-3fd5-5ef3-ba8c-0500f9af9709", "text": "A beautiful girl ice skating dancing wearing blue dress on a frozen lake in Christmas 9:16 "} +{"id": "3006084", "video_name": "ec1c4cf2-412b-57fd-87f7-bbcd15b08897", "text": "a live audiance holding thier phones up with flash lights on Message: evyatar (Font: MODERN) "} +{"id": "3006438", "video_name": "c761ad3b-9797-5374-94c3-2a2f6d56cb1c", "text": "A guy with his hands behind his back is skateboarding down a winding road "} +{"id": "7003220", "video_name": "767d3dc9-9d23-5c7c-9c75-2747af15ab93", "text": "A beautiful girl sleeping next to the window with a nice cat in her lap "} +{"id": "2006203", "video_name": "e722eafa-176b-541b-b67e-a9acbe98b10f", "text": "Fruits fall into a blender and are blended "} +{"id": "1005313", "video_name": "61913f7f-2a40-5ff5-a6e8-c1bdeab2feb5", "text": "girl with a sword and on a horse "} +{"id": "1005690", "video_name": "6888a546-c527-5279-86b4-bebcd4e7539f", "text": "Miao Miao is looking at her small basket, frowning with anxiety. "} +{"id": "3005764", "video_name": "501c656b-1a5a-5104-b4df-ad377aed4cf1", "text": "The Desert of Dancing Sands On his third adventure, the map guided Sammy to the Desert of Dancing Sands. The sands moved in rhythm to the beat of his heart, creating mesmerizing patterns in the golden dunes. "} +{"id": "1004976", "video_name": "5c041d0d-0948-598a-b7bd-88e482617bca", "text": "A powerful bolt of lightning tears through the night sky, illuminating the darkness with electric intensity. Upon striking the ground, the explosive energy creates a deep crater, hurling debris and soil in all directions, leaving behind a striking scene of destruction. "} +{"id": "3003306", "video_name": "99c8243c-e15d-578f-8a9d-73cc60f773a2", "text": "red room with multiple doors on left and right side and narrow in the end "} +{"id": "0005593", "video_name": "1da5f63c-969c-566a-8f51-fb0c712bfc91", "text": "Cartoon version of little boy pictures "} +{"id": "3005646", "video_name": "488a5615-69de-5c41-9079-bca2f1ba9a07", "text": "Ants in motion , white background Message: Udipta (Font: MODERN) "} +{"id": "8003791", "video_name": "fe113780-14f5-565f-a8ed-c58ac8526da1", "text": "The scene opens on a misty swamp at dawn. Shafts of light pierce through the hanging vines and Spanish moss as a lizardman stalks through the marshes. He pauses, tasting the air with his long forked tongue before continuing onward. "} +{"id": "1004638", "video_name": "563fcbdb-4005-5d71-a33c-d9e8c1e90783", "text": "girl in sensual gold color bikini walking on high luxury penthouse "} +{"id": "3006624", "video_name": "496965eb-5cf4-528f-b617-2c428dfb2f44", "text": "google earth with people holding hands "} +{"id": "4002720", "video_name": "dde94acb-ff82-5970-a34d-83136afc0967", "text": "a man silhuette standing on the bridge, almost jumping, rainy weather, cinematic, 80s "} +{"id": "1005625", "video_name": "676ae2db-6660-5713-bd5b-6059fb9f81f0", "text": "in jungle nights turned into days as they pressed on "} +{"id": "1005101", "video_name": "5e0da977-2b98-5ab1-b3b1-8537aa4df316", "text": "Spiderman in his Symbiote suit fighting Miles Morales in a crowded Brooklyn street "} +{"id": "8003555", "video_name": "2e01c044-21bb-5618-9382-8fd776c42694", "text": "a booming scene as the background "} +{"id": "2004321", "video_name": "0412e496-f58a-5638-87be-a26ebeb67180", "text": "lionel messi becomes the argentina president "} +{"id": "2007752", "video_name": "1b5790ac-3781-5a3d-bb02-1fe7ec4fee51", "text": "two guys with three super saiyan powers "} +{"id": "7004500", "video_name": "51ac74eb-f74a-5ac2-baa1-1777e65d4c51", "text": "It was very cold, and a boy, about 20 years old, was walking in the snow in a black down jacket and gray pants "} +{"id": "0003224", "video_name": "3992ba04-ce30-5f79-99dd-dce59d03ce82", "text": "old timey video of ghosts floating in cemetery "} +{"id": "0005951", "video_name": "23d93391-23b8-58f0-a9a6-7fac858fecb9", "text": "Achieving this requires fusing hyperrealistic photography and scientific precision. "} +{"id": "7003074", "video_name": "212aa371-80d3-52aa-8c6a-6a0ecdf3bad1", "text": "chaos, inversions and chains of accidents "} +{"id": "8003161", "video_name": "f890ef38-a800-5d88-b2ad-cbd308ce84c4", "text": "Forming a deer head with my hands, they gradually transform into the head of a fawn Message: 1 Attachment "} +{"id": "1004184", "video_name": "4d6adb2f-f075-5803-9e4e-f02b557b7e23", "text": "a cowboy walking in a street at night, neon lights "} +{"id": "6002249", "video_name": "7daa587d-ff62-5d21-bacc-2ed46135c17e", "text": "japanese supernaturals, horror, creepy, 1918 photo style, historical style "} +{"id": "2003148", "video_name": "07eafc65-8bac-54ad-a923-1bc67931cf00", "text": "the woman\u2019s dreams about future nature "} +{"id": "8003607", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "These colossal mummies, unearthed in the 1920s, were often associated with lavish burial practices, "} +{"id": "0003817", "video_name": "4404efb1-97ce-5055-8da6-9da48b2996e0", "text": "Vijay sitting with Leonardo Di caprio in a beach front with eagle on the top. 4k and natural lighting "} +{"id": "3005849", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32 bit gaming room with a storm outside "} +{"id": "1003555", "video_name": "418dabef-4b42-50da-91bd-3df5a837b97b", "text": "a sole survivor standing on a mountain top over looking a city at sunrise as the sun breaks through the clouds. "} +{"id": "4003222", "video_name": "e03216bc-b2f3-57df-b724-2e8952d61909", "text": "Fly like a butterfly in the garden "} +{"id": "2006259", "video_name": "c464f5cf-926e-5286-9aa1-1df8ee306810", "text": "Sun Wukong, a Chinese mythological figure, lies on a cloud reading a book while flying. "} +{"id": "2004524", "video_name": "4b971734-9e82-5ecf-a9ca-6f9ce1a92b51", "text": "a music box opens.It has a ballerina inside dancing to the rythm of a beautiful melody "} +{"id": "2004252", "video_name": "cbe68309-8c96-5bcf-926f-0ec7dba396a7", "text": "Wars in ancient China. Magnificent battle scenes.cavalryman. Ten thousand arrows shot at once.chinese.orderly arranged.clear picture quality. "} +{"id": "6003037", "video_name": "273b7494-21fb-5302-be2f-4a19b71b6115", "text": "A solitary figure, illuminated only by sparse streetlights, walks down a deserted street. Rain falls incessantly, creating an eerie atmosphere. "} +{"id": "0003019", "video_name": "35ac51e4-721a-5628-b059-ab924915c688", "text": "7 man standing, then 1 from them falling back. Fast video, realistic, dramatic lighting, the angle is straight "} +{"id": "7003665", "video_name": "fb289b26-483f-545a-82de-94af407d6193", "text": "Bomber planes flying towards camera, planes moving towards camera, fixed camera, clouds "} +{"id": "4003218", "video_name": "03f0f39c-2256-5b11-9d0f-c61681cbcc4e", "text": "eyes blink like real ones, waves move "} +{"id": "7002222", "video_name": "428e62f9-6657-5512-aab6-7ee877f11b43", "text": "From the enigmatic tales of Argentina to the spiritual stories of the world, Waudaura connects seekers and sages, creating a global network of spiritual exploration and shared wisdom. "} +{"id": "2005813", "video_name": "df87a4b7-90d0-53c2-8ab6-2ad7f1ff1481", "text": "Ancient Chinese scene, in a room, a sick woman is lying on the bed, a young woman and a Mrs. Lai are standing beside "} +{"id": "1003170", "video_name": "3a5e7b5f-3e28-524b-ab45-6ca4cbbeab08", "text": "red stick figure fighting a blue stick figure "} +{"id": "3003710", "video_name": "9f710048-6018-5b43-8e36-cd6e9cbdb73a", "text": "beautiful painted woman dancing in a picture hanged on a wall "} +{"id": "1006068", "video_name": "6f64c4ec-9809-589f-afec-79fa3b95ee6a", "text": "Fizzy water with small and larger bubbles "} +{"id": "8002525", "video_name": "0d7d6a88-efe6-5120-b85f-28ef0c0de37a", "text": "In the distance, the village atmosphere, the houses, the green grass. "} +{"id": "0003233", "video_name": "39c00746-89ac-5137-81bc-a8791ef2d452", "text": "a letter KEEP WALKING falling down from the sky and releasing the dust. "} +{"id": "4002286", "video_name": "cca82185-3d52-5023-acfe-062b0dd87051", "text": "a bipedal tabby cat in a suit of armor holding a halberd. its walking "} +{"id": "0003330", "video_name": "3bc166e6-c252-5cc2-8ff4-8bf764161467", "text": "fairytale style train at a train station in a dreamcore style dreamy dreamlike surrealism magical realism slightly uncanny hyperrealistic surreal nostalgic pastel hue hazy "} +{"id": "6004359", "video_name": "7d0de563-2588-5a4d-baad-31ceb05f86d5", "text": "two chickens fighting on a green screen studio 8k "} +{"id": "0006063", "video_name": "25fc7864-416e-5552-a131-cf4ad5bf90c0", "text": "a dark fantasy style scene shows the power strugle between the two rival factions "} +{"id": "1003236", "video_name": "3b97097f-a937-50db-9ae2-eeb5456c15a2", "text": "create a video on human immune system "} +{"id": "8001430", "video_name": "a8fe69aa-9211-5d64-beac-57466458e169", "text": "The fame of this bungalow is that it was very dangerous to go there alone at night. "} +{"id": "2005680", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "A star made of air floats above the city "} +{"id": "2005661", "video_name": "54db6d91-b2a7-5226-b884-6805ae530f9f", "text": "an old tortoise, carried wisdom on his ancient back "} +{"id": "0003568", "video_name": "3fb61209-46da-5e7f-9410-b211c7f54d85", "text": "red heart in the nature Message: te amo tuli (Font: MODERN) "} +{"id": "8001604", "video_name": "9b3c1159-d57f-5110-835a-9c41c7b7cd05", "text": "Simple movements and video materials that are good to see when you sleep "} +{"id": "4003347", "video_name": "374c429c-830c-5c6e-96f4-6c88b2224ebc", "text": "a beautiful african queen wearing a see thru bikini while standing on the beach at sunset "} +{"id": "0005924", "video_name": "234fa721-4d6e-5a73-be7b-a84ff7553866", "text": "realistic on a cloudy day, in the background we can see a paris, Three real astronautes in an arabic style space clothes, with closed helmets, 8k, cold color "} +{"id": "1006410", "video_name": "756638a4-958d-5fb6-9d05-b594ca8d4ecb", "text": "A specter of a woman, her dress billowing in the wind, floats out of a gloomy cemetery on a moonless night. "} +{"id": "1006748", "video_name": "7b8d9b37-ff2a-52d1-a4e4-6dbcb1b122f2", "text": "Jesus is waiting patiently in line for his passport photo "} +{"id": "7002621", "video_name": "e8ed7587-42a2-58b7-b33a-44a900621009", "text": "green eyes, slightly big head compared to his body, cute animation character, blonde, red gardener outfit, hd, 4k, "} +{"id": "1006264", "video_name": "72bd2203-3a60-55e4-a37b-0f26a1ef124b", "text": "one wise men like mel gibson, portrait style, looking camera near a lamp, 8k "} +{"id": "3005332", "video_name": "7a9eb398-61ee-590f-a817-eb71c734234d", "text": "dog and cat fighting on the snow "} +{"id": "8002006", "video_name": "34163cca-4178-5c78-9ef3-af510dae93ae", "text": "beautiful waterfalls scene, stone cliffs, forest foliage, magical, fantasy art, "} +{"id": "7003219", "video_name": "6057e700-936b-5edf-bc3f-a97f7a4faad6", "text": "4k, seeing amazing lights in the distance "} +{"id": "3003057", "video_name": "fcccc57a-0b03-5ae8-b99d-2e0c8e6dae07", "text": "At night, a student is sitting in front of a desk, studying under the light. The desk is full of books, and we can see her back. "} +{"id": "2004035", "video_name": "14be11c7-f990-5009-a701-06654582e546", "text": "Locals spoke of eerie sightings and strange occurrences, but nothing could prepare me for what lay ahead. "} +{"id": "1005648", "video_name": "67c95bb4-63ab-5070-b7f1-dfdf08aeeab2", "text": "Two people were playing tennis, and an eagle flew down and landed on the net "} +{"id": "6003158", "video_name": "c3cb7bc0-2898-5711-b07d-2843a86438be", "text": "a tank\u2019s transforming into a rifle "} +{"id": "3003431", "video_name": "4d24fb1d-cf9c-5105-977d-ecca95e621df", "text": "a guy hanging on a side road with her daughter "} +{"id": "7002425", "video_name": "f4d9bedd-9029-526c-a7de-adf5a2e6f132", "text": "The camera is turned to the wall with the clock, illuminated by external light from the sun, the arrow indicating the current hour moves like a second, overcoming 24 hours, nights and days "} +{"id": "6003356", "video_name": "e1b765c9-c3c4-59d5-a866-5c82b9e977da", "text": "dragonfly flying towards red moon, wings move fast, cinematic, 8K, wide shot "} +{"id": "7003826", "video_name": "fd11ae4f-9d37-5558-9089-b505c2c35326", "text": "angry man smashing furniture in a rage, photorealistic, high def, dim room, horror "} +{"id": "0004501", "video_name": "0a0f5a43-f8ba-5afa-8210-5d32e7cca1d0", "text": "demons and a vampire in the city "} +{"id": "2005186", "video_name": "4e216bd9-3b8a-56fe-b430-2f687ea7d3c7", "text": "Happy birthday, Lizbeth!\n\nI hope you have a wonderful day filled with joy, laughter, and love. May your year ahead be filled with success, happiness, and good health. "} +{"id": "7002958", "video_name": "50465e9f-bb8d-5c5f-848f-7dd6d1fb05c4", "text": "a person entangled in a headset cable moves "} +{"id": "1006437", "video_name": "75ddc100-79ef-520d-8788-16f4241a7c88", "text": "An entrance to a big bungalow in squid game series set up "} +{"id": "0005615", "video_name": "1e101852-e7cc-5d96-9da2-aa08f3882b65", "text": "water drops in center with pulse rings emitting from center. Black sparkle background, aerial view "} +{"id": "1004053", "video_name": "4b2e3fd0-2c29-504f-ad73-797362a5f7b5", "text": "a man plays the piano. We see it from behind "} +{"id": "3005862", "video_name": "5c162004-377b-50b1-adf0-75ac09c142e7", "text": "small little girl daily saw large number of studying children "} +{"id": "0006023", "video_name": "25314d80-939c-5660-b9b3-6c94f8bb8fc8", "text": "younger boy is a teenager who is very passionate about pursuing education "} +{"id": "2006696", "video_name": "0474e0d7-f909-5fae-80b3-69dc640976ee", "text": "A beautiful mermaid dances in a space bottle "} +{"id": "4002758", "video_name": "38a4c5fc-3862-5502-b4de-ce588b8ebcdf", "text": "You are a sturdy and graceful male elf. Your proportional height and athletic posture illustrate your agility and nimbleness as an archer. Your long hair is golden, hanging down and moving gently with the wind. Your piercing emerald green eyes radiate intelligence and calm, reflecting your deep understanding of the art of archery. "} +{"id": "7004239", "video_name": "2dad7e81-1eae-5548-bd09-2ebc128c8ade", "text": "A marijuana plant growing at high speed on a balcony during sunrise with the sun moving, the clouds passing at speed, realistic and cinematic, \u2013\u201316:9 \u2013\u2013 "} +{"id": "4004966", "video_name": "3a8540fd-1bdf-5cb0-982d-45d4c8b2f13a", "text": "travelers is talking to camera with the big stylish hat and clothes "} +{"id": "0006606", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "small girl tending to the garden, watering the plants and carefully removing weeds, showcasing her dedication and nurturing spirit "} +{"id": "0004004", "video_name": "01726eb1-3239-5611-8687-c265cd3bd4f2", "text": "boy watching the night from the balcony "} +{"id": "1003235", "video_name": "3b8e4ae6-949e-581b-84f3-f8a1227d47fb", "text": "a fat whale jumping over a rock with a rainbow behind it, cinematic, light rays, 2:1 anamorphic "} +{"id": "1006291", "video_name": "73352971-fa2d-5c56-a68a-47a858709778", "text": "AI designer helping a todler to paint on a canvas "} +{"id": "1003974", "video_name": "496831d3-9c8f-5d9c-9369-614edc2477cb", "text": "The dance and powwow of Native Americans before the war in America "} +{"id": "2004834", "video_name": "5e8924bc-3b0e-55c3-a1f1-873c4341ff69", "text": "make a 1 minute trailer for miles morales "} +{"id": "1004800", "video_name": "58b82de6-434d-5822-af15-092cc3d8c7eb", "text": "Inside the room of the Spanish Royal Palace from 1800 "} +{"id": "4003085", "video_name": "6b90f00d-3aeb-5198-89c1-f7dce76b409a", "text": "25 year old man sitting on the floor playing guitar in a one light room "} +{"id": "0004046", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "warhammer 40k cinematic trailer, character design, action "} +{"id": "2006721", "video_name": "f12ee007-5666-5ccf-8b33-4b66d88de544", "text": "Depict the first Turks migrating to the Altai regions, showcasing their mastery of ironworking and the establishment of their identity. "} +{"id": "3006460", "video_name": "9d1cbfae-6128-5418-8745-10bca5012922", "text": "gingerbread house, diorama, in focus, white background, toast , crunch cereal "} +{"id": "7004037", "video_name": "a7f3de84-7c6f-5969-a240-382ce27bb79d", "text": "a beautiful teddy bear in Red color with horror eyes "} +{"id": "1004939", "video_name": "5b4e21d1-a37b-5ee9-b4e2-c3a43cdce715", "text": "How to find the root of the end "} +{"id": "0005686", "video_name": "1f5ef116-90bd-5fe6-b867-6e3c0456e21a", "text": "american traditional tattoo, clipper ship with a mermaid on one side and a merman on the other "} +{"id": "7002813", "video_name": "fa8c9c4c-7e12-5c67-9d02-9a86a697f9e3", "text": "Flowers swaying in the wind. Sunset on the beach "} +{"id": "0005538", "video_name": "1c7efb23-af7c-5b59-91bc-0f099d434e80", "text": "Near the Elephant Gate village, they approach the haunted house at night. Rajiv feels anxious, but Bhavesh encourages him. As they reach the house, a mysterious sound in the air adds to the suspense. "} +{"id": "0004425", "video_name": "08b03807-e1d6-586f-a9ec-2c99ec4e945b", "text": "Subtle hints of angel wings descending from the sky "} +{"id": "3006484", "video_name": "b27cf484-06f8-59d9-b3e1-4fb9f89c0d3e", "text": "Blue beach, white sand, storks flying "} +{"id": "0004181", "video_name": "04a89ebb-e5ff-5119-8969-b321ee5ef561", "text": "surreal world, green, falling apart, earthy, birch bark Message: Hello (Font: MODERN) "} +{"id": "1004843", "video_name": "5983e9a0-c3e4-557b-9a02-f5d54005d18d", "text": "high fantasy group of Heroes entering a mystical library. Neg Morphing, motion 2. Cinematic. Epic light flares "} +{"id": "2005783", "video_name": "7dcca641-e736-5d75-b275-321542c0f054", "text": "Cool sense of technology, futuristic and dynamic "} +{"id": "8001473", "video_name": "f2535bad-c3a4-5ef9-9c9f-497543dcbf6e", "text": "A red Ferrari runs over a cat on the streets of London "} +{"id": "2004416", "video_name": "056b55c0-1986-55d5-9888-d1b041bc2554", "text": "When the storm finally passed, Mama and Papa Bird returned, relieved to find their chicks safe and sound. Yellow birds animation "} +{"id": "2003749", "video_name": "dbd14172-22c7-527e-8763-160ae5088299", "text": "she has long hair with tentacles as smooth as the sea. Their sensitive tentacle hair not only can be controlled as easily as hands, but also can be transformed into a beautiful halo like flowers with the joys and sorrows. "} +{"id": "5001535", "video_name": "9f8acd77-a3c0-5b95-87dc-0a2975fa44c4", "text": "deep underwater an enormous shark attacking a diver trapped in a cage, ultra realistic "} +{"id": "0004658", "video_name": "0cc4e4a1-5868-526d-8cae-e3b814708acf", "text": "a 2d art of a man crying by his dog "} +{"id": "4002986", "video_name": "2a594665-9e1a-5f34-a03c-2c4e06ccb5ad", "text": "A woman in a lab coat is running down a city street at night. close shot "} +{"id": "2007757", "video_name": "fea30552-14b3-58c3-97b7-c73752f708ee", "text": "a wide shot of a castle in the air, disney style, there are cars and balloons flying on the sky, as the camera pulls out, we see clear of the castle "} +{"id": "3005241", "video_name": "467d9751-11ff-5f0d-acd2-a238026a93e9", "text": "car wheel spinning with 300 miles per hour "} +{"id": "8002709", "video_name": "f9fe6e46-bdab-5bed-9053-0c288c442c73", "text": "Leigh Fong, a female Tai Chi, Martial Arts, Acrobatic Assassin. Scifi. Cyberpunk. "} +{"id": "8001378", "video_name": "fb909a61-1af6-5e6d-868b-b4fd4ca0d900", "text": "city streets with pedestrians walking on a sideway "} +{"id": "1004544", "video_name": "5461c7c6-f46b-5cbd-8f65-ce2a19d04b6d", "text": "flying above cartoonish pink clouds, shooting stars and planets, 10 second long "} +{"id": "4002481", "video_name": "52c484de-dddb-5667-9b43-428be94ea765", "text": "anime style ocean video, blue sky "} +{"id": "8001701", "video_name": "d6833da2-e8c6-5e06-ad8e-093336797a28", "text": "Rasengan and Kamehameha collide, creating an impressive energy wave. "} +{"id": "1006211", "video_name": "71e4e27d-00ed-536e-8102-3b2a4b88569d", "text": "a 8k video a chinese man Standing on a tall building, I saw the sunset slowly sinking against the mountains, and the surging Yellow River rushing towards the sea. "} +{"id": "2004259", "video_name": "232cf26b-54b2-54bc-aaa7-a815db510401", "text": "A Chinese man is practicing martial arts "} +{"id": "1005041", "video_name": "5d30e3e5-2e6d-5d3f-9c85-685eb7918bbf", "text": "Create an alarm clock black white "} +{"id": "7002717", "video_name": "2d77313f-523b-5383-894b-edb82aab627b", "text": "a scene of shimmering moonlight of ancient ruins 8k 4d "} +{"id": "7002890", "video_name": "788c38e3-4d9b-55a0-90ea-c85ec961906d", "text": "a bunch of gatorade bottles create the image Message: 1 Attachment "} +{"id": "6003526", "video_name": "822b46e0-071a-5678-a799-fa1da3ac1a06", "text": "machine vision used in a factory "} +{"id": "3006872", "video_name": "1157d399-f11e-5e6d-b52f-671a2fcad28c", "text": "30 cards, each card with 1 number in black, from 1 to 30 on a white paper, scatter individually on a wooden floor, no movement, inside a big floor loop "} +{"id": "8002422", "video_name": "43733f8d-0793-54aa-bcc0-2ed85d892cc4", "text": "Generate a scene of Rajoo, the poor rickshaw puller, smiling happily while waiting for passengers. "} +{"id": "2005965", "video_name": "16816efb-c99a-52b3-a2a7-e2bb9a4ae742", "text": "slats, wooden bars and wooden sticks in the air that come together to create a wall of wood and stone. ocean floor, deep sea "} +{"id": "3006342", "video_name": "0e8c92be-c008-567d-bf1b-dfda16735dad", "text": "captain jack sparrow on the board of the black pearl "} +{"id": "4003220", "video_name": "f48ef805-e0e8-52e5-8810-266d334ed25d", "text": "Introduce the majestic kingdom ruled by King Leo, "} +{"id": "3003581", "video_name": "2eef9486-f4f5-541d-bd91-98028bb909ed", "text": "Apocalypse, nuclear bomb, smoke, moving clouds, dark, old footage, realistic "} +{"id": "2004964", "video_name": "328bc821-6a9b-5c32-9033-aa83db12f7f3", "text": "finding a fish with orange strips in ocean "} +{"id": "2007062", "video_name": "d6ee130f-25bc-5a28-9f01-ee8334e8a67a", "text": "Gohan charging a special beam cannon "} +{"id": "5001983", "video_name": "1449f3ce-5730-53af-9238-56e9ffff4469", "text": "animation Message: kid holding a book (Font: MODERN) "} +{"id": "1006695", "video_name": "7aae1a44-4f98-51fb-8683-a0751581e614", "text": "windy, small town, short circuit, sunset "} +{"id": "8002780", "video_name": "eea71f31-8e39-5776-b8d4-63f4289130ba", "text": "art house woman screaming in wheat field bleeding "} +{"id": "2006268", "video_name": "44cabc41-20ce-5ca5-9178-56cb71cc9a40", "text": "Vegan leather background mobile placed on it "} +{"id": "4002808", "video_name": "cb59d73c-8999-5c54-a46e-4377312f9428", "text": "sunset by the sea with a couple kissing realistic hyper details ar 16.9 "} +{"id": "4002109", "video_name": "0b4c65bd-31fe-55e6-883f-9c1457ca3279", "text": "I want to create something like bull warrior spirit of winning the world ultra cinema HD cinematic visual of motivation inspiration ultra 4K 8k "} +{"id": "1004631", "video_name": "5622e385-3ade-5e7d-be00-38835d696251", "text": "A Robot is standing on a city street at night in the rain looking at another sales robot outside a storefront who is trying to convice passers by to come into the store and use theri services "} +{"id": "1003336", "video_name": "3d66c4a1-7dda-5727-9073-69312b327ccd", "text": "a mechanical bee partying in a club "} +{"id": "2004610", "video_name": "7902afca-1187-5e8e-ab74-93b52cb44545", "text": "robot tap dancer in a canteen bar stage , moving, in a vintage charleston style "} +{"id": "3005748", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "a 9:16 video o a trading guru sitting o a yacht with 2 girls in bikini "} +{"id": "3003882", "video_name": "878195e2-4c77-5581-9ddb-c2a7ad1ccac7", "text": "A forest in a tree which are some Mantras written "} +{"id": "2005797", "video_name": "2d606778-7003-5549-80fd-ccf92bd7a712", "text": "VHS grainy 90s style hand held view of the moon reflecting on a lake, with ripples in the water, frames per second 24, guiding scale 24 "} +{"id": "7002510", "video_name": "6d21623f-81df-57a3-ba6a-7e8bfd6f93b3", "text": "spiderman kissing spidergwen both in gold and white suit on the newyork high park "} +{"id": "2007281", "video_name": "301dc944-d217-522f-81c4-6fd1c15859bb", "text": "Star Wars star destroyer flight though the space "} +{"id": "4003369", "video_name": "8062bd23-6241-5424-ab38-59ed771ca431", "text": "Many girls with but all have identical face. "} +{"id": "0003864", "video_name": "44d3656b-191c-5b2d-a406-0c95ac0677a3", "text": "a man coming out from a car and standing on the road "} +{"id": "1003039", "video_name": "37c397ff-724b-501f-9175-df9ca0380175", "text": "water going inside the human body system water flows starts from mouth and goes to stomach, 3 d Animation ,4 k "} +{"id": "5001730", "video_name": "a1be608f-f138-5ab8-9963-545dbea33ff0", "text": "woman standing near the window on the starship and looking to Earth "} +{"id": "1005256", "video_name": "60ac20b6-d831-5e41-83cd-666cad523e2a", "text": "The river of fireflies look like giants funny bees overwhelmed with joy for the dancing fire of the sins of existence "} +{"id": "2003043", "video_name": "a5a58ada-148e-543e-b72c-15353180f1cf", "text": "woman with brown hair turning around "} +{"id": "0005687", "video_name": "1f695ebc-2a6f-569b-8dc3-ddd00f0cc822", "text": "a girl sitting on the roof of a building "} +{"id": "2006224", "video_name": "b6fc04c7-f8c8-5df0-860f-4c834dad91fd", "text": "people are engaged in the gym in the anime style "} +{"id": "2003768", "video_name": "c22516fa-c861-5303-b387-d67d66267126", "text": "a tiger laying in the grass with its mouth open "} +{"id": "8001196", "video_name": "20cbfca5-10fd-5e2e-93ce-319813a59b2c", "text": "a silent misty evening in Cambridge by the river "} +{"id": "1006569", "video_name": "785f1529-694c-5751-9697-e65cd175627a", "text": "rotting clams floating in a pot in a kitchen "} +{"id": "3005417", "video_name": "69587493-cf13-5e3c-80de-0f979e997b6a", "text": "a amazon woman walking in a sand field, on a far away planet, chakras all bright lights, third eye illuminating , cinematic vibe, shot on SOny A7. 8k, ultra detailed, ultra high resolution, "} +{"id": "2003572", "video_name": "2e43f632-541f-520c-a595-5ec93fe1ae5c", "text": "view from above small island in the middle of the ocean, foggy forest hills, stone rocky coastline, mysterious clouds, cinematographic, hyperrealistic, hdr, slr, 4k, "} +{"id": "1006345", "video_name": "7428bea1-7179-57dd-9d8c-43e1529c1028", "text": "a woman alone at a party, looking directly into the camera, surrounded by his happy friends, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski "} +{"id": "3005305", "video_name": "c6d0b90a-62ad-5a45-ae6a-4bec7ab40564", "text": "tattoos coming to life, 4k, 16:9 aspect ratio. "} +{"id": "3005584", "video_name": "20700eb4-925b-5e5a-b9c8-6d05d15a9016", "text": "A commercial for a monster creator, motion 4, unreal engine 5, well rendered "} +{"id": "3003920", "video_name": "174f374b-70a9-5710-b5ee-7c2fbf1d5fa1", "text": "car scout lights, of different colors and sizes, illuminating "} +{"id": "2003313", "video_name": "9d7aefab-3686-53dd-91dd-4d7ad0efd28c", "text": "As the sun rose, the villagers found magical gifts outside their door "} +{"id": "6002463", "video_name": "6902e751-9abd-591f-a5a8-03551e08650f", "text": "dancing scarecrow, in a field, amazing, hd, real "} +{"id": "8001278", "video_name": "d159e59a-16a3-5fe4-8f40-bfdd84ad8d86", "text": "a dark shadow like ghost standing under the tree in children park in day time "} +{"id": "8001461", "video_name": "5269bbb8-9971-5452-b270-ca36f1a2e22f", "text": "jar full of elves and manure is shaking "} +{"id": "3003111", "video_name": "b6a975bb-8bcf-5a00-b678-5f8bb154e5f6", "text": "atlantis city, under the sea, fishes "} +{"id": "7004680", "video_name": "67719cb9-5921-5224-abe9-e8bc09566474", "text": "create the image of a beautiful bathroom with the shower system on the image on it. "} +{"id": "8003211", "video_name": "c3d4f2f5-c4fe-59a9-bb63-ae2ee71e13c7", "text": "shootout in a cyberpunk city between dogs and cats "} +{"id": "1006034", "video_name": "6ed57362-1380-5f1f-89c5-9e8badd0e689", "text": "modern, isometric blender 3D model, steel grey and grass green stadium, MMORPG structure, sculpted details, dark Background "} +{"id": "2004208", "video_name": "edbd1120-ecf4-563c-a793-c3959e791761", "text": "a cat and a dog playing cards in a pub, Architectural Lighting "} +{"id": "8002653", "video_name": "c20be774-db8a-5260-8f54-2fa09a1b5a76", "text": "The guy was abandoned by a girl and he is crying "} +{"id": "3006410", "video_name": "c4391590-d170-55a8-813e-da723dd70e63", "text": "small red train moving through modern, futuristic landscape "} +{"id": "2003531", "video_name": "9b99d74c-bfca-5efc-b5ea-427681fedfe4", "text": "a 3D heart breaking in slow motion and eventually catching fire "} +{"id": "5001864", "video_name": "22492fbf-dbbc-5b7f-9407-b2f252d5fa28", "text": "lose up of leaves in autumn "} +{"id": "0003710", "video_name": "422e3691-6a28-5644-ae4f-f69c21155ea3", "text": "an opening rose in the garden, bright peach color, beautiful, embrace the imperfect "} +{"id": "3004841", "video_name": "cb1ac668-84a8-509c-8e61-530391d74432", "text": "spicy miso beef noodles Message: MISO BEEF (Font: COMICS) "} +{"id": "3006019", "video_name": "0aecc80e-324b-5d2e-8011-8eb96f4a61c3", "text": "Miami Dolphins Logo as the center of the universe burn 31 planets one by one "} +{"id": "2005062", "video_name": "755945b0-34f2-51f5-8b9a-5fa882967ed2", "text": "walking in the street,while drinking alcohol. "} +{"id": "5001225", "video_name": "f2081f79-65c4-563b-a91f-6a7e5e080014", "text": "a rocket league stadium in canada "} +{"id": "2006508", "video_name": "b6f65d0c-d504-5f17-aa36-5c4b8f212b20", "text": "fist of Midas rotating in Golden room "} +{"id": "4003792", "video_name": "2be151b0-759d-51e8-9900-8267b5f5ad26", "text": "On the street, a girl with long hair in a white dress was dancing in the wind and rain Message: 1 Attachment "} +{"id": "4002106", "video_name": "7621452e-3126-5ed4-b4a6-1c0c17526ead", "text": "cinematic video of a car on fire, night "} +{"id": "6004693", "video_name": "a4bc8bac-ee7b-5493-8d8d-62ffef130266", "text": "haunted hotel, scantily clad woman come out, red sky "} +{"id": "1006075", "video_name": "6f73d2a8-36b1-59af-a244-ea502d9ca921", "text": "With the generator fixed, the planets united, and vibrant hues blossomed across the cosmos. "} +{"id": "8002658", "video_name": "99ed0772-e6f7-5ab4-aed1-862f0e53565e", "text": "The kitten hid beside a tall willow tree, chasing the flying butterflies with its agile paws. It jumps gracefully, shuttles nimbly among the flowers, and seems to be one with nature. The Ragdoll cat\u2019s eyes are bright and sparkling, revealing a hint of curiosity and joy, as if it is enjoying this little world that belongs to it. "} +{"id": "7002259", "video_name": "8e7b2a25-ce29-5bc4-b10f-d067aaa352c9", "text": "Waves breaking over icebergs on a beach "} +{"id": "0006605", "video_name": "2f6dd25b-65a1-5fd6-bac6-279f93076506", "text": "Toyota Machesta rides around the city "} +{"id": "1003850", "video_name": "46fac9b0-076c-5a94-a307-9451d8fd1ef7", "text": "Spiders coming out of a logo that says arachno havok, drawing, fine line, artwork, hd, animated "} +{"id": "0003218", "video_name": "39786d20-db91-5640-8462-7576bbece514", "text": "Video ratio 9:16 requires HD quality, shocking video of a Chinese old man telling a story "} +{"id": "8002014", "video_name": "ce5cd9c9-951e-5456-a2ac-0f29f8c3c2f0", "text": "Breakfast: Fruit salad with mixed fruits "} +{"id": "0004434", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "From the back view of the little boy and the little girl, the two slowly walk forward hand in hand, the shadow is a meadow, and the mountain is in the distance "} +{"id": "3004294", "video_name": "edbcc4fe-1c4d-5549-a525-85cc363ffbcf", "text": "a giant blob with eyes floating over New York City ar: 9:16 "} +{"id": "0005414", "video_name": "1a7b28c5-fc92-5e4f-a2ec-f1773dc5241e", "text": "Describe a dense jungle where a lion and a lioness reside together. "} +{"id": "2007875", "video_name": "c01c0258-537b-51bd-b289-04828e3ee31e", "text": "people running off of a planet into the sky "} +{"id": "3003590", "video_name": "7da53595-b11e-515d-a966-13b069d3d609", "text": "night background with mountains . People standing outside there houses with bonfire "} +{"id": "3004455", "video_name": "71d1d5d6-1300-570f-8629-66396efd9b84", "text": "Multicoloured mechanical turtle playing saxophone and dancing in an alien forest at night . Message: ART OF AI (Font: MODERN) "} +{"id": "7003934", "video_name": "0858e16c-bada-5aab-9c4f-7a16c7221177", "text": "photography realistic of smartphone application design "} +{"id": "4004465", "video_name": "1be32eb6-0d13-5feb-ab3a-209b948f2a51", "text": "A ninja breaks the fourth wall, and points to the camera, AR 2:3 "} +{"id": "0006607", "video_name": "2f7862a4-cb7d-51a3-abae-f7d238c61baa", "text": "futuristic army in the desert, mask,dusty, Peter witkin style, feature film "} +{"id": "3003985", "video_name": "7d7944de-cd4f-5686-858b-82f84d749b3f", "text": "Chinese painting, rowing, willow trees, egrets "} +{"id": "4002805", "video_name": "3d7002c4-8758-54ea-b128-8ac148d1ffd8", "text": "movie trailer for attack against the matrix "} +{"id": "1003697", "video_name": "44283fc5-ac71-5037-a72d-5d5c4b19a795", "text": "pov a journey through time, 4k "} +{"id": "2004351", "video_name": "7ee66b54-789e-58f4-974e-45d96b452020", "text": "\u201eThe wise is one only. It is unwilling and willing to be called by the name of Zeus.\u201c "} +{"id": "1003537", "video_name": "4143df01-9e0c-5dea-a7e8-a5415a936a1f", "text": "billy mays is eating a hamberger at night "} +{"id": "3003335", "video_name": "ce87e025-3925-574e-9265-5c1242ccfc88", "text": "bold intense red to black and white collage of action, stark white background captures the splatter of action as the blade of the samurai slices deep, , in the style of anime "} +{"id": "6003346", "video_name": "4b24a870-53e3-5e29-ac58-aff9570df6bb", "text": "war scene ,rocket launch, gun fire, air fighter fly "} +{"id": "8002343", "video_name": "bc56682f-f4d2-581b-8d04-a0dd54567aec", "text": "aliens dancing at Stonehenge, starry night, intricate details, full moon "} +{"id": "0006532", "video_name": "2e467046-978d-5996-9704-84f85eaddfd7", "text": "Gears, clock elements, dials and dynamic swirly lines arrangement suitable as a backdrop in projects on scheduling, temporal and time related processes, deadlines, progress, past, present and future "} +{"id": "3005829", "video_name": "42ddf499-1406-574a-a972-bdd0168c0514", "text": "A little girl is playing with her friends and she is happy. I want an anime video "} +{"id": "8002656", "video_name": "02282cd2-7c71-579f-b2ad-44b4aa958e1b", "text": "Create a quick clip of a gorgeous woman elegantly turning the pages of a book in a library. "} +{"id": "6003199", "video_name": "44c17846-003a-570b-8494-4e6160b954da", "text": "the little red planet acrossing the milky way "} +{"id": "8001599", "video_name": "76d85c7a-f92d-5e64-808a-a8b6778de737", "text": "A yellow honey bee flying into a red sky "} +{"id": "4003395", "video_name": "039b280d-7d62-54a7-a003-e735004913e8", "text": "panning through a dark lonely city at night "} +{"id": "1003290", "video_name": "3c75f4f8-1993-5235-8a80-c4a7c0f33e87", "text": "a woman sittin on a rock on the top of a mountain medatating fly by shot early morning with birds flying by sun rising "} +{"id": "4002661", "video_name": "2d9e6489-9ce6-57e0-8341-7473109bed33", "text": "Spaceship racing through narrow city passages with turbulence and speed. "} +{"id": "7004421", "video_name": "21a98c2d-9e99-5b64-9b05-0ab9e6248682", "text": "mysterious way in the dark foggy and wet "} +{"id": "4002398", "video_name": "91ae0c47-bd5d-567a-b6b3-3dbaebe923ea", "text": "sherlock holmes in a court room hearing, surrounded by people, he is the prime suspect in the case, ar 9:16 "} +{"id": "0003386", "video_name": "3ca7be62-6bd8-5637-ab6c-8869109000ef", "text": "beautiful korean girl and dog walking forward looking moving her head to the right and left with worried eyes and scanning the surroundings "} +{"id": "2007535", "video_name": "e557c0ef-b788-5d60-a93b-336e5b71144f", "text": "1990 Japanese anime video, JDM stance car racing on mountain pass road, fast driving, "} +{"id": "5001945", "video_name": "b9d0578e-d441-535b-969d-50b35701bf91", "text": "a combusted wall of copper with iridescent colors on it, a lot of holes in it, melting "} +{"id": "8002710", "video_name": "64602083-4784-529c-b120-ee927914d9e5", "text": "Uranium rods descend into water Reactor Chamber, steam vents, lasers Alfred Stieglitz black and white 1900s "} +{"id": "6004718", "video_name": "fd740f64-5ddd-5571-be6f-133d4d5bfe05", "text": "a handsome anime boy waving his hand (saying hello guys) looking at camera. "} +{"id": "3003450", "video_name": "e242968e-372c-52a8-ab03-f94ec349a84d", "text": "A field of roses and a beautiful young white woman standing in the field. She is in love. "} +{"id": "6004077", "video_name": "f7d31475-ace1-52c0-8783-f380ad4b4d7f", "text": "minecraft players wearing suits and bunny masks stealing money from a bank "} +{"id": "1004630", "video_name": "5622d931-dec3-52d0-ad4c-54c35244af0f", "text": "young boy playing football in ground field in village at afternoon, style: Realistic, camera: pan left "} +{"id": "2007665", "video_name": "f65ee929-94f6-5e0c-8fdd-3cc045044703", "text": "a cinematic scene of two astronauts walking towards Mount Fuji "} +{"id": "3006931", "video_name": "d7e0ec3d-b05c-5288-9f70-ad29fb08e250", "text": "Disney characters are talking to the camera "} +{"id": "4002391", "video_name": "552e34dc-ce1e-54e0-996e-f3b410879b99", "text": "Alexander The Great with Half Tiger Face "} +{"id": "4004881", "video_name": "067ec894-9f9c-5c55-a741-752f192d80b1", "text": "guard talking to king theres an emergency outside cinematic realistic castle "} +{"id": "3004918", "video_name": "4eb4be25-db82-51e4-909d-c4a507befa96", "text": "In the darkness of a gym, a young biracial gymnist leaps in the air, with turquoise glowing Eyes "} +{"id": "2003993", "video_name": "0800ea9c-5891-55cb-bb41-a09904990fa4", "text": "frankfurt skyline in neon style on black background "} +{"id": "2007630", "video_name": "e3dc2759-dc7b-5439-9415-711b82ccef8f", "text": "Elon Musk Musk to the sky "} +{"id": "0003101", "video_name": "3706dd43-9ddf-5b0a-9632-d7378ac252f9", "text": "Siba dog running in the field "} +{"id": "1004967", "video_name": "5bbfcd95-8e51-52fa-b99e-3c3253087301", "text": ":sunset at the lake, boats floating in the air "} +{"id": "3006279", "video_name": "fc3d0ef1-1742-55af-a5e6-a012f14730ee", "text": "Dante and Vergil from DevilMayCry 5 fighting in the middle of snow forest "} +{"id": "0004200", "video_name": "04e107cc-3d8b-5e80-8b5b-ae2357ac9725", "text": "sexy human girl transforming into a dragon "} +{"id": "1003714", "video_name": "448bcdd6-ec73-585e-83d9-fb46439b446d", "text": "Water rippling. Camera rising and moving closer. "} +{"id": "6004190", "video_name": "0b8e6063-1bd0-5377-b0c1-2f8ce9848a42", "text": "New York panoram Message: OKCAHA (Font: MODERN) "} +{"id": "8001396", "video_name": "def19082-65ca-531b-b756-5dbb5cf145b9", "text": "mild wind, hair movement, leg movement "} +{"id": "4003412", "video_name": "09bf7ac0-5828-55a4-824b-af4e889b17ee", "text": "the super computer tantric goddess moves around to make things better waying her magic spells "} +{"id": "0006273", "video_name": "29d37a84-7b36-5f46-b9fb-bdfc1578ffc8", "text": "A path leading deep into the forest, overgrown and eerie,4k,16.9,zoom. "} +{"id": "6003421", "video_name": "33c5a9d2-5544-5379-a2dc-02df73b36f95", "text": "I am addicted to the game you play "} +{"id": "7002477", "video_name": "0a04900e-3f36-5199-8300-daa40baef40f", "text": ": Birds fly over the calm ocean "} +{"id": "7002044", "video_name": "3efc1d17-2e7d-5b2c-93f9-5baee42267a6", "text": "Samurai warrior man with beard standing holding his sword, protecting his kid and burning village in forest, epic cinematic realistic, flowing robes, dust "} +{"id": "5001827", "video_name": "6d3ec113-cfff-5a19-a1d8-47f8f4bb7186", "text": "Make an advertising video for sunyard Technology Co., Ltd "} +{"id": "6003328", "video_name": "2eeb9d70-3c27-5c67-86fb-e346d826b9f1", "text": "Butterflies fly, the camera zooms in"} +{"id": "1005825", "video_name": "6b095d98-bf8d-5c23-af8b-8a1147964e4b", "text": "A class of children with teacher animated "} +{"id": "6004173", "video_name": "a5ef3fae-1be1-5863-869b-5470d7ab3571", "text": "Enchanted antique library room with mystical light falling on a great old armchair in the middle of the room. Shelves with a wide variety of books all around. Inviting and enchanting. "} +{"id": "4002084", "video_name": "04c40b48-eba1-54d5-b9e9-e34c24f73ecb", "text": "A woman turning the pages of the Bible "} +{"id": "2005889", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "Show an image of a dark forest with towering trees and moonlight faintly visible in the sky. "} +{"id": "0004872", "video_name": "10b0ef51-c207-5577-bdca-3f1f479c43ca", "text": "3D animation of a soldier shooting at a policeman "} +{"id": "4002314", "video_name": "a0d2cd1e-2c85-57ac-b138-42b2eff34bac", "text": "attack on titan titan footage in real life high definition if attack titan was a horror movie with demon titans and demons in a pool of blood and guts red sky eclipse dark shadow lady hair falling out faded away madness chaos death moon hell the devil evil terrifying scary horror "} +{"id": "2004124", "video_name": "c5bc68d7-c9fc-53e2-909f-94c2e1774733", "text": "1970s educational film footage of electronic plant cells manifesting from a tesseract "} +{"id": "3004923", "video_name": "694f669c-d84a-54aa-b0f1-2274741d87a7", "text": "Generate an image of John waking up in the cave, body sore but resolute. Show him packing up his belongings, ready for the final push. Convey the morning light entering the cave, signaling a new day of challenges. "} +{"id": "2003509", "video_name": "c880a497-fed0-5eea-b2fd-35c67395c08c", "text": "mining drill hangs precariously on the edge of a massive extraterrestrial cliff, cinematic "} +{"id": "6004669", "video_name": "455f0af1-13c9-5f32-bbe5-d9786e3cc873", "text": "golden wind chimes on a gently busy day "} +{"id": "1004471", "video_name": "52cf734d-c9d8-5505-a7c4-f6d68f6b958b", "text": "an anime girl with red hair running towards the camera ultra realistic "} +{"id": "1006958", "video_name": "7f503c2b-aeb1-5378-ae88-24d7c01774d9", "text": "This painting will depict a giant egg floating in outer space. Eggs can be made of gold, silver, or another precious material. It may have mysterious symbols or symbols on its surface. "} +{"id": "1003811", "video_name": "465a8eb3-29e9-52ad-a12e-4689331d1463", "text": "be idle is to become a stranger to the Flow of the Seasons "} +{"id": "3004136", "video_name": "cd35f7c4-74a3-501a-8e00-105c815ec8a0", "text": "a website showing you the seo, meta tags underneath the build "} +{"id": "1004497", "video_name": "535fb860-6abd-5ce8-9183-ae3683a2f8c0", "text": "A ghastly ghost follows a boy\nin the dark of night "} +{"id": "2005808", "video_name": "a4fb8743-ed70-5864-82e4-512e61c03c2f", "text": "areal footage of a boxing street fight crowd gatheredaround "} +{"id": "7003721", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "a surprised and happy look of elf "} +{"id": "6003779", "video_name": "d6481c0d-e253-5f11-a130-d012160b5e1e", "text": "realism, one astronaut in futuristic spacesuit, rear view, looking through porthole at gray asteroid "} +{"id": "2005651", "video_name": "4a09ccbd-0581-5b7d-98a5-89c2081a3799", "text": "a boy and a girl takes a break and enjoy a KitKat together, while watching their favorite show on Netflix. "} +{"id": "1003081", "video_name": "38ac6be8-6b6c-5cc8-8b89-47a7db8e8a42", "text": "Old dhaka city 1971 time People are working in factories "} +{"id": "2004690", "video_name": "86653170-8130-5791-bfad-024a0e70a9e3", "text": "a beautiful lady walks to the shower and turns into a robot "} +{"id": "2007953", "video_name": "bfaf4cf6-dce8-57fa-b02e-7be8fc6ca04c", "text": "batman driving batcycle,bat signal on the sky "} +{"id": "6003341", "video_name": "fe1baf0e-6954-5e1c-9e8b-727bce9e6339", "text": "all family happy, wear crocs, winter, sata "} +{"id": "7003679", "video_name": "1f024fa2-0c91-5882-ab0b-dbcf75b2ada7", "text": "Once upon a time in a colorful town, there lived a curious boy named Tommy. One day, while exploring his neighborhood, he met a friendly dog. Their eyes met, and an instant bond was formed. "} +{"id": "2003261", "video_name": "bdaab750-c1ac-5c2c-ab5f-f7c4bca0ba51", "text": "Stickman finds a ice fruit and eats it "} +{"id": "3003047", "video_name": "4bf39add-fdb5-58f5-a941-8f556e18c674", "text": "super mario as a street fighter character "} +{"id": "1005046", "video_name": "5d4ecbbe-95e0-5dde-8385-9763a7fed8e9", "text": "caracter man dance with robot in sky "} +{"id": "4002453", "video_name": "09417e95-e8e3-5a65-b538-2c202d66babc", "text": "create a stunning cinematic coke advertisement "} +{"id": "0003591", "video_name": "40195fca-953a-5188-9409-215522c1b1b2", "text": "boy walking besides corn field, 3 on a american road with a gas station in the field and scyscrapers in a city "} +{"id": "7004038", "video_name": "ce62a9e4-62bc-5c66-9047-ac3cbabc6568", "text": "lonely wolf in forest setting, cinematic, camera zoom in, fluctuation flickr "} +{"id": "1003949", "video_name": "48ded521-b357-5c4c-9fb4-39834e08ab81", "text": "donald trump and joe biden having a pokemon battle "} +{"id": "3003442", "video_name": "fb7f25fb-d894-5eca-b89a-5bce3f5d51fd", "text": "cars dash board, rain drop trickling down the windscreen, cinematic 4k, 3d, ar 16:9 "} +{"id": "4004819", "video_name": "1e871dc9-33a3-5dfc-b2c4-06740246dde5", "text": "High resolution 4K, 9:16, a cartoon child watching a little dog running towards him happily "} +{"id": "3004350", "video_name": "cfece5be-fd53-59aa-b281-6f3ecfd95ba3", "text": "a mysterious deserted land where some alive chicken are cooking in a pot "} +{"id": "7003457", "video_name": "1d8110ff-c9fd-5cb4-b88a-79cee125250f", "text": "armor elephant died in battle field "} +{"id": "1006661", "video_name": "7a05c21f-15dd-5f26-befb-2c36a5507f4a", "text": "cinematic video of the deep deep dark blue ocean , cinematic lighting color correction , dark scheme 4k "} +{"id": "8002989", "video_name": "599c0022-e265-54ad-b141-a7f06fe87865", "text": "beam clash with Godzilla and King Ghidorah 2019 movie scene "} +{"id": "1004526", "video_name": "5411873b-abfc-5ea6-b168-4e9f4890aa8f", "text": "a 2 year girl playing with her twirling paper towel,tied with twine in the air "} +{"id": "1003930", "video_name": "48909275-908d-561f-84b2-650b567b6343", "text": "room on a spaceship with a energy generator "} +{"id": "2003571", "video_name": "3fc3ffe5-a390-56e8-bc16-97abd6f03915", "text": "A bright, inviting living room. A young professional, John, is sitting on a sofa, looking puzzled. "} +{"id": "2004667", "video_name": "c0365eb5-3d06-5f66-82b9-ec1fd9e9e9ac", "text": "Control Buttons of pen sur the book "} +{"id": "8002580", "video_name": "eb939195-fbae-5894-a232-0f2aedd6299c", "text": "As night falls, the sea is covered with dark clouds, the sea is rough, and a thunderstorm is descending "} +{"id": "0005054", "video_name": "13d0216e-5796-5f69-adde-b8f299fb3244", "text": "Kobe smiles and waves at the camera on the helicopter. "} +{"id": "7004293", "video_name": "6fe202ed-c523-550d-b948-25287e0637ec", "text": "stair, tree, moon, star at night, a girl is aksing what is the most important thing in life? "} +{"id": "4002161", "video_name": "354a6713-f48c-5106-b3ff-d29aa90850d6", "text": "Black and purple Headphones and microphone. \nText: The Dee and Chee Show "} +{"id": "0006341", "video_name": "2aea1903-d0ad-5c40-b07f-714f35e58f3b", "text": "a video of a bustling capital with classical and modern architecture in the 1950s documentary style "} +{"id": "3006712", "video_name": "33e2928c-a464-514e-aa9c-86136c866d23", "text": "a young north indian couples travelling in a bus looks like asian "} +{"id": "3004265", "video_name": "d34070d1-8cbc-5715-a23a-f0e3677477f5", "text": "A Microscopic Life, a The Sims 4 game about microorganisms "} +{"id": "7003469", "video_name": "9ec38ea8-0884-574c-94b0-4952de605b55", "text": "numerous minions are diving into the pool "} +{"id": "1005811", "video_name": "6acf864b-a2ce-5ac2-895a-298c0b6cbd22", "text": "an epic city, people walking, cars, purple and light pink pastel colors, highly detailed, 4k, ar 16:9, duration 40 seconds "} +{"id": "1005482", "video_name": "64b138f8-cf46-5eef-aa31-d0a64a6e33bc", "text": "rango style character, from the movie rango in the desert, talking alone and walking forward, ultra realistic, without wings 4k, 8k, "} +{"id": "2005218", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "a candle in the night with a full moon "} +{"id": "0004274", "video_name": "063dab89-0287-5bfb-a606-a0b5fe6b2b0f", "text": "evil viruses dividing viewed through a microscope, cinematic, microscopic, high detail, magnified, good exposure, subject in focus, dynamic movement, mesmerizing, 4k, text: Cyanide Hero "} +{"id": "3006710", "video_name": "61cc8a31-a33a-547a-8d5a-61c8e743f912", "text": "A China family of six people playing on the grass, are grandparents, parents, sons, daughters super realistic photos super details warm "} +{"id": "7004941", "video_name": "deba5c96-559b-5e5d-9220-5b6b771ff603", "text": "a red panda walking in the tree in 9:16 ratio "} +{"id": "1004199", "video_name": "4da3a2c9-35e8-52bf-aaa9-7c94eff9bc88", "text": "Amidst the dawn of the Jurassic era, a Stegosaurus with magnificent dorsal plates navigates a prehistoric landscape, the morning sunlight casting a warm glow on its armored back as it forages for vegetation. "} +{"id": "5001183", "video_name": "2bd404c0-39be-5c42-911c-67c50a746dc4", "text": "A kid so happy for a gift "} +{"id": "0003447", "video_name": "3daff715-587c-5ed7-ba94-d3ba771c0e54", "text": "Create a captivating trailer for a documentary or a presentation about Somali nomad people requires thoughtful planning and a deep understanding of their culture. a realistic video trailer showcasing Somali nomads, their camels, and sheep: "} +{"id": "6002944", "video_name": "91649d0a-4679-548a-8ecb-9e99d332c0f1", "text": "A person runnning with a Nintendo Switch in his hand "} +{"id": "4004006", "video_name": "244f575d-29b3-51b8-824b-e29e6685e4a0", "text": "A pair of hands carefully holding or shaping a small object like a clay pot or a growing plant, symbolizing the focus on what can be controlled. The background is blurred to signify the letting go of what is beyond control. This image metaphorically represents the Stoic philosophy of concentrating efforts and attention on aspects of life that one can influence, while releasing concern over what cannot be changed. "} +{"id": "0003361", "video_name": "3c3701ba-193a-58fd-9969-c6e6c4d4ce3a", "text": "time warp visual tech grid pulsating "} +{"id": "0004672", "video_name": "0d0ab183-1936-56af-acf7-ef8b338c8988", "text": "Fresh ripe mangoes are selected and sliced thinly. Then, some slightly salty and sweet special mango sauce is added on top of the traditional tomato sauce to bring a unique flavor to the whole pizza. "} +{"id": "6003114", "video_name": "16e1b535-85ba-5130-9ba6-d5f0b8fcdc9a", "text": "animated european leader giving a speech "} +{"id": "7002749", "video_name": "2be24df0-c114-5cb4-b784-8dde3a07dc2d", "text": "A dramatic moment of realization as Ramcharan uncovers the true mastermind behind the Al takeover. "} +{"id": "6003176", "video_name": "b12b1cc9-e0cf-58ca-aadd-09797b3adfd7", "text": "zoom out, a girl sitting on the hill "} +{"id": "2005229", "video_name": "30e2f426-492b-5d36-a4b7-93660bf0053d", "text": "two birds on a wire. One flies away, and the other watches him close, on that wire "} +{"id": "6003758", "video_name": "08c6d82f-626b-53d3-af7c-f211cdea3bdc", "text": "2 white objects, motion, hd, epic, massive "} +{"id": "0004078", "video_name": "02d9a25b-212e-59e7-9cba-3776346b98fc", "text": "Jon Klassen Caravaggio animation of a ship sailing in the ocean "} +{"id": "7004832", "video_name": "97fa12e3-83ce-504e-96f7-eadbb5a7cb91", "text": "a yellow submarine sailing at a wavy sea "} +{"id": "1003066", "video_name": "385ad563-0a67-551e-9ac2-982780be1011", "text": "A models face one brown and one blue eye vibrant colourful dredlocks, sculpted from glistering metallic meterials mixed with gold, exudes an otherworldy allure blending futuristic elegance with an ethereal beauty, "} +{"id": "1006407", "video_name": "755e24a6-7d16-5904-9899-1b6159d5b9b0", "text": "Employees use the equipment to obtain IC card and barcode information. After the information is checked correctly, the green light turns on. "} +{"id": "2007666", "video_name": "64efebe1-2716-5a3e-a79e-51f64724ad80", "text": "Students listen to the teacher in classroom back angle "} +{"id": "2006257", "video_name": "c3019f6a-13fe-5379-a2d2-591894cd08b5", "text": "Galaxy in maximum quality, stars, black holes, Soviet Union "} +{"id": "7002181", "video_name": "ef641dc5-cadc-52e3-9631-fbb4fec90c79", "text": "Two boys of age 7 sitting with clay in hands and making a little house out of this clay, anime , 8K "} +{"id": "2006643", "video_name": "3184ac85-49f4-5302-8356-2fdaa4362ccf", "text": "fast shot 1920 car light blinding coming "} +{"id": "8003427", "video_name": "3c453098-7d61-5c78-ac06-64e5eb1446de", "text": "In the ocean of flowers, a Chinese man wearing a Zhongshan suit are smiling at his beautiful bride wearing a qipao "} +{"id": "4002043", "video_name": "876916bb-4fa3-5abd-a37d-d213508e0555", "text": "view of orchids blooming in the gentle breeze in a flower garden in Singapore "} +{"id": "2007401", "video_name": "3fe5b254-7bc8-5b31-86a2-1d5dc64cab91", "text": "a little girl collect beautiful tiny stone at the sea side in the evening. "} +{"id": "3004879", "video_name": "1c325bf6-2b94-53b5-9c08-9a4242ce54bd", "text": "The sun plays with the planets and the moon watches them "} +{"id": "2004526", "video_name": "ba5118ab-60c2-5e62-bcca-f0ffd5424de2", "text": "uchiha itachi walking in the rain "} +{"id": "0003349", "video_name": "3c05066b-4a17-529b-82c7-d461321bf860", "text": "a futuristic house in a desert, a big drone passing by "} +{"id": "5001660", "video_name": "f2472fb1-59e7-53ff-9418-9279ca9d1f98", "text": "Covenant from halo,hd,walking up a hill "} +{"id": "4002252", "video_name": "2cccff90-a3b9-55c8-80be-9149fd095541", "text": "a rc airplane flies high through the air, is a farm landscape "} +{"id": "2003220", "video_name": "33a4f2c2-0772-56c1-8d2f-72065b00bdd9", "text": "ladies floating and singing with clouds moving "} +{"id": "0006085", "video_name": "2667a2f8-34b8-52d5-8c2d-696ad5e4e888", "text": "cowboy chopping a tree with an ax in the forest "} +{"id": "1006198", "video_name": "718f83e7-0101-5564-a301-fdecb948bdad", "text": "motivational Message: happiness (Font: SANS SERIF) "} +{"id": "7004521", "video_name": "efd4eb42-6535-5280-86e7-1b0b1c5c1fde", "text": "generate dance movements, in a night club "} +{"id": "4004582", "video_name": "7ee98c8f-d84c-5f2e-8b23-9d84bef65136", "text": "A woman walking on a rainbow in the sky "} +{"id": "1006517", "video_name": "773db3ee-47c5-54b6-b192-1c49af800cdc", "text": "zoom in on a dark creepy abandoned zoo at night "} +{"id": "8001258", "video_name": "6acf8842-1512-5838-92f0-1d91fb140ca9", "text": "This is the end, beautiful friend This is the end, my only friend The end of our elaborate plans The end of everything that stands "} +{"id": "0006037", "video_name": "256fc9f4-8130-5a55-93c8-dac985586c6f", "text": "A small construction site with Eddie the Excavator in action, showcasing his powerful digging arm in motion, scooping up dirt. The background should show a partially dug earth area. "} +{"id": "3006668", "video_name": "c1c7d5f7-47cd-5ea6-b78c-0b7d6aac239b", "text": "a female take her shoes off "} +{"id": "1006033", "video_name": "6ed1213c-0cd2-5b2b-b984-8113b60f9b1c", "text": "A majestic fox with fiery red fur cautiously approaches a timid rabbit in a lush, green forest. "} +{"id": "8003739", "video_name": "83205790-a589-59b4-8a36-96a45ceaad4f", "text": "Dark blue background with some flowing light decoration, magic style, 4k "} +{"id": "3005423", "video_name": "bb8c0064-d5f6-5292-8ef5-9224f28d12db", "text": "animate Step into the grand palaces of the Vijayanagara Empire, where every detail is a marvel of architectural beauty. "} +{"id": "2006486", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "production still of Star Wars by Alejandro Jodorowsky, 35 mm 20ASA kodachrome "} +{"id": "1003923", "video_name": "486c552a-35e9-5253-8b55-362b99b05fdb", "text": "Include an image or reenactment of the iceberg ahead. "} +{"id": "2003096", "video_name": "0b805cd1-5b31-5941-8c3b-81908976536d", "text": "A man is rollerblading with their dog, and the dog takes off after a nearby drone, pulling the dog owner along for a crazy ride. "} +{"id": "8001664", "video_name": "c7ac2bd9-ad1d-5e30-b5aa-772bd71bbc8e", "text": "shadow passing over a bento box "} +{"id": "2007406", "video_name": "7cf2c28e-db70-5955-9030-ab4129021f54", "text": "A kitten and a hummingbird play in a garden "} +{"id": "4004099", "video_name": "a76b042a-283e-5364-b0c5-8846896c5fea", "text": "I want two people who have superpowers and save people from evil people and become the strongest heroes "} +{"id": "7002935", "video_name": "6d2b6730-c6f6-5a38-9fd7-9c5c2c9a68c4", "text": "explode of galaxy in 1 second "} +{"id": "2004632", "video_name": "4c11f125-560c-5121-8563-90b843a99cb0", "text": "civil works design for oyster reef "} +{"id": "3005107", "video_name": "76915635-09f9-596f-a673-71ab951c1e3e", "text": "A kitten wearing purple sunglasses while playing a trumpet in a US president themed speakeasy. 16x9 "} +{"id": "2007336", "video_name": "baf4e4e2-2ee5-5e21-b6c5-0437f116b54b", "text": "During their time on Mars, the team made many scientific discoveries, including evidence of past life on the planet and interesting geological formations. "} +{"id": "3005398", "video_name": "2a4d4ae6-9d4f-5542-aee1-2cbffde799ae", "text": "Instillation of eye drops into eye "} +{"id": "8002792", "video_name": "51a5d445-150e-5ce4-a51b-58cd5c5e2e9d", "text": "landscape mountains in the winter motion "} +{"id": "2004581", "video_name": "fadf054e-9d12-5525-a55f-b33a133364b9", "text": "books flying away like ideas going out of a brain. All in slow motion and really realistic. "} +{"id": "5001008", "video_name": "17a78b3d-0ea4-5710-bddc-bca190a8d151", "text": "a vintage 1970\u2019s lava lamp with the title \u201cThe Groovy Tale of a 1970s Lava Lamp\u201d. "} +{"id": "6004347", "video_name": "bdfd85f4-5923-5c30-93c4-747b2583e94c", "text": "A girl with brown hair, Oriental face, Tang costume, the background is China Datang architecture and maple leaf dyed scene "} +{"id": "2007229", "video_name": "3ff872ca-8793-52f2-b386-8627d5ae7059", "text": "a pair of winter boots of a beautiful young woman walking over the old wooden floor planks of an antique shop. Warm lights and festive atmosphere "} +{"id": "0003784", "video_name": "4358abbd-7449-56cf-9afc-b1b11d3319b5", "text": "a dark and bizarre attic with only one window but it is very small, a sunroom seems to be in the window "} +{"id": "7004078", "video_name": "3b3b9775-38be-5d00-9fc3-1a0db166b76c", "text": "alien world, darkness, green humanoid creatures living normaly "} +{"id": "0004837", "video_name": "101499d6-85de-5f4d-adb5-164abb783429", "text": "represent a digital currency that is not regulated by a central bank and totally decentralized and free of action in a cartoon image "} +{"id": "2005525", "video_name": "6aaaf773-a05e-57b7-8e10-c293f1d084e0", "text": "video with noise that focuses quickly revealing a realistic scene "} +{"id": "2006903", "video_name": "76ba2db1-ea48-5bfa-beea-71c3e29556d9", "text": "a small industrial and poor kitchen, but not dirty, with low light and 2 tired workers inside cooking in the heat of the small kitchen Message: COZINHAS FANTASMAS (Font: MODERN) "} +{"id": "4004364", "video_name": "0b7f016c-38cf-556f-867e-ed951ab5b526", "text": "A blonde woman with blue vibes in a white dress in a dreamy beautiful villa garden "} +{"id": "3003198", "video_name": "b71faabc-4337-5048-a5c5-0c5243d7a855", "text": "An anthropomorphic plus sign, a minus sign, a multiplication sign, and a division sign dance in a line without stopping "} +{"id": "2004888", "video_name": "6f53605c-38b6-5078-8e08-f17300985742", "text": "beautiful brunette woman turning towards you "} +{"id": "6004681", "video_name": "98eb8c9e-415e-5648-8ed5-9eaffc961725", "text": "Dusty book filled with stories of mythical creatures , less windy, slight movement, Higher resolution 2k, Disney style "} +{"id": "2006538", "video_name": "9837b4fc-67bc-5062-a8bc-4c0b81e9c262", "text": "gesture pencil sketch of an image you can see half of the sky without clouds and half with clouds changing and moving fast in the wind , dramatic scene , low angle "} +{"id": "1003118", "video_name": "3956334e-b68b-53d7-b9a1-71cbcb4e7d1d", "text": "microscopic view of a coffee bean to the full expanse of the plantation "} +{"id": "1003151", "video_name": "3a16717f-e78a-5113-bec1-9ca8a807aa4b", "text": "The hair flutters, smiles, Gels up and say hello"} +{"id": "7004889", "video_name": "42248891-91ef-58d8-8aa4-fd8457e255f2", "text": "in the animation there should be a battle between batman and spiderman "} +{"id": "3006729", "video_name": "3cc7b8bb-46b5-56e5-8645-69e2934cbc8f", "text": "a man checking his make up in front of a mirror "} +{"id": "1004284", "video_name": "4f3b2f4f-3512-57e9-b311-7d4de391c4b5", "text": "The scene opens with a desolate, volcanic landscape, revealing the planet Mustafar. Lava flows and volcanoes spew fire on the horizon. "} +{"id": "5001332", "video_name": "78ae4ca7-7fb2-5a6a-85ad-0d449e25550e", "text": "Ancient Egypt, the construction of the pyramids, giant monolithic blocks of stone floating in the sky, in the foreground is a pharaoh in a golden Egyptian headdress, he is very beautiful he has white skin and beautiful black eyes, around the sands and palm trees, very realistic siberpunk "} +{"id": "0005118", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "robots marching down the street in Michigan "} +{"id": "3006950", "video_name": "e7ed2e11-51fb-5c4e-b108-04130f523f54", "text": "a crab playing guitar, cartoon, animation 2D "} +{"id": "7004089", "video_name": "8186b63d-d722-5c4b-91ee-352a09ea91b0", "text": "a realistic 1970s art house film about a young couple building a 1938 ford hot rod with magical qualities. The female is curvy and has short yellow hair. The male has a long brown ponytail. They both wear glasses. Grainy. Sunset. "} +{"id": "2004984", "video_name": "887b0b0f-9265-529b-8557-fe0358672e72", "text": "a young beautiful skinny mexican woman is dancing with her friends inside a cantina filled with neon lights "} +{"id": "2006598", "video_name": "064f2c3b-0ae2-52b5-a0e4-0c8fade28c9a", "text": "a Wizard smoking and making music on the computer. And talking about them. "} +{"id": "0003527", "video_name": "3f014996-6c10-5728-af66-4ec7a0047d6f", "text": "NYC subway with all of the cars painted pink and purple elephants, photorealistic fantasy, ar 9:16 Message: G A G CITY (Font: MODERN) "} +{"id": "6004261", "video_name": "1041cc1a-d181-5078-a30f-cfacfea2eb14", "text": "A boy and a girl are telling a love story "} +{"id": "2005174", "video_name": "7ccc59cc-09b3-5689-b894-33654419d229", "text": "a magic Forest with pink sky, stars falling, big trees moving slow, flowers with motion "} +{"id": "0003015", "video_name": "35a1645f-73ea-5599-8179-0ef4cd7fb39a", "text": "disney style Little Rabbit jumped up with excitement and set off. He hopped across fields and through forests, going further and further. Suddenly, he spotted a huge cave. Curiously, Little Rabbit crouched down and peered inside. "} +{"id": "1004415", "video_name": "519d9ef1-6722-5f85-8b23-d1d9ec0015ee", "text": "Surfer in hawai Message: SOUFIANE (Font: MODERN) "} +{"id": "7002387", "video_name": "0b28834a-a18d-52f6-b338-1cbab091755c", "text": "a toddler lord Buddha coding on a computer in anime style "} +{"id": "5001358", "video_name": "b70f1055-7eaf-5492-a357-36a53c3255f3", "text": "medieval city engulfed by plague, camera pan right "} +{"id": "4002878", "video_name": "344b4c23-9e32-5d08-bda5-48ad2ce734bc", "text": "one old man cartoon in a gaming room, purple background, scene cinematic , full hd "} +{"id": "4003652", "video_name": "58a82248-4ae9-5aee-9eb3-ed4a868450e9", "text": "a image in which a hindu saint and a fox looking at each other with a lake in background "} +{"id": "0006167", "video_name": "2798d49d-6c93-5b14-9adf-9eef664b4438", "text": "Create a scene with futuristic movement with neon lights and a party atmosphere. "} +{"id": "7002853", "video_name": "e040eff3-7cda-5b38-bf28-f28fea8ffa4c", "text": "excerpt any video from kids cartoon video a tamarind tree with lots of tamarind "} +{"id": "8001335", "video_name": "2a8db850-ed2e-5cd1-9fac-9eeea3be8f4f", "text": "the delicate ecosystem struggling to recover from the spill of santa barbara "} +{"id": "0006114", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "three people in a boat in the sea "} +{"id": "8001043", "video_name": "1d0cde3d-909c-5b20-ae50-6a1d98ded88d", "text": "cutest baby in the world smiling "} +{"id": "2006088", "video_name": "335a0d40-c121-517b-a22b-4ac111a1f5ff", "text": "The animals in the clearing share stories about unity and the strength that comes from working together 3d colourful animation "} +{"id": "6004056", "video_name": "19dba978-13e5-5559-b599-5f56b00d1741", "text": "visualization to the music of the 1990s "} +{"id": "0004823", "video_name": "0fc6ffee-7584-5072-aa51-2dfb21096cb3", "text": "Young adult inviting people to follow Message: YWAM (Font: MODERN) "} +{"id": "7002416", "video_name": "4a5e7fcb-66a0-5d59-9303-30b68062c3e3", "text": "I want the students move her wands and make spells Message: 1 Attachment "} +{"id": "4002574", "video_name": "24c0eeee-d014-52a4-af35-b41d1b9c6b8e", "text": "A mystical cave entrance, covered in vines and glowing with an ethereal light, beckoning Leo and Tig inside. "} +{"id": "8001791", "video_name": "533d6b61-4e59-5491-8213-a85c7e4cddeb", "text": "The captain of the ship is in command, "} +{"id": "3003863", "video_name": "20d3cc22-dbab-5281-a75c-edec1fa66c4b", "text": "A buddha passes by a tree with his disciples, and saw a eagle and a crow fighting for a rotten meat. "} +{"id": "1006499", "video_name": "76fd51f3-c1d1-5462-bbcd-93dc0a4f19d3", "text": "Create a picture of nature with the outlines of a character from the enigma dota "} +{"id": "1006462", "video_name": "765122e6-239b-5ee5-908d-9e770a18a26e", "text": "planet earth realistic run in the space to the earth Moscow city "} +{"id": "8003886", "video_name": "b2a46dbd-78f6-566d-a413-be291b2634e9", "text": "First, humans look up at the universe"} +{"id": "0006039", "video_name": "2576d871-89fa-5e01-9f05-8243af6fb2e3", "text": "pilot male talks to Stewardess in cockpit of an airplane, they sit happily "} +{"id": "6002616", "video_name": "d23d5a86-50e3-5a36-bce8-706345f446a6", "text": "Move your head left and right looking for something Message: 1 Attachment "} +{"id": "6003870", "video_name": "f13b5e9d-f392-5335-9e7d-d1d3635a81d7", "text": "a male character in a techwear outfit, chewing gum "} +{"id": "6002905", "video_name": "275d2828-ad7f-5a1b-bbaa-db9209a0fa6e", "text": "A picture of a barren and modest rural house, illustrating the humble beginnings of the boy and his family. "} +{"id": "4002915", "video_name": "78b52da2-ae61-5aa3-99d7-0178d594ba30", "text": "A video of F.R.I.E.N.D.S TV series character: Chandler Bing, in the center, wears a somber look, and Ross, Joey, Rachel and Monica embrace him tightly, their exprressions filled with sorrow, offering support during a difficult time. The setting is their cozy, familiar Central Perk coffee shop, creating a bittersweet atmosphere that captures the essence of their friendship. "} +{"id": "0004026", "video_name": "01be4e3e-5219-5874-ba22-8058101014b7", "text": "Toyota Crown car drifts in the parking lot in the shopping center "} +{"id": "3005529", "video_name": "11e7ab4f-9048-5874-8c21-602556d1ecf7", "text": "techart, female cyborg, working on a holographic screen "} +{"id": "4004599", "video_name": "81befd16-2bfb-5c47-85fd-503888bc59a1", "text": "The House under the Snow Mountain "} +{"id": "5001905", "video_name": "0befa07c-97d4-50bd-b369-56cddf198593", "text": "a muppet on fire, vhs, 1970s educational film, glitches "} +{"id": "1006537", "video_name": "77c6dde9-c8c9-5d77-a72f-b507ae447791", "text": "a ship passing by a dock "} +{"id": "8001910", "video_name": "1e0174bc-07ec-5d15-bd5d-8de6b23ff844", "text": "koala rolling up a burrito, realistic film "} +{"id": "3006592", "video_name": "09f6c767-7a25-5272-882e-ceba00870d01", "text": "a little bit rain and movement of trees "} +{"id": "4002641", "video_name": "eccd0827-499c-59fe-9121-bbecbf4a0cd5", "text": "bike cycling in london, no cars, 16:9 "} +{"id": "8002328", "video_name": "88a78656-38de-5136-890d-8e46757706bb", "text": "gojo Vs sukuna with 20 finger power anime style "} +{"id": "1005544", "video_name": "66166a9d-d743-500a-910d-e4df5f92bfea", "text": "A diverse group of employees standing together, smiling and discussing work. "} +{"id": "1005025", "video_name": "5cf875f9-f6c8-513b-97e2-479c9f93c612", "text": "venezuelan woman walking in la gran sabana, photo shot, sunset, realistic "} +{"id": "8001227", "video_name": "612d1b5a-63a2-5bde-b2d1-f53e27ccfb3b", "text": "The girl is in the middle of the stage "} +{"id": "5001359", "video_name": "fe13f437-d808-5959-99b8-c58c1be2a982", "text": "illustrated simplistic nirvana smiley face with yellow orange gradient "} +{"id": "1004814", "video_name": "58fcef7d-496e-5c0c-811a-7615db3f92e4", "text": "minecraft steve living peacefully in his while his dog is sleeping on the wooden floor "} +{"id": "0004437", "video_name": "09111a1b-d004-528e-b1a8-fac216c68a1e", "text": "So, what do you think, fellow space travelers "} +{"id": "8002996", "video_name": "4fff45e8-bd74-5be5-9c70-1fb6dd5c57ae", "text": "a meerkat wearing a necktie teaching a class to other meerkats "} +{"id": "8001748", "video_name": "dee9c24e-8cbf-5ef1-b04f-1489833861ce", "text": "Aliens are walking and setting fires everywhere "} +{"id": "6002674", "video_name": "ac73eaa3-efdb-5458-b6ed-dc0b4b46ac26", "text": "create a promo video x winner decentralized blockchain gaming "} +{"id": "1005182", "video_name": "5f5a166e-a743-57f6-b91e-028fdeacecc4", "text": "A hacker enter in the shed room video "} +{"id": "1006857", "video_name": "7d35bcdd-3ad5-5dd7-beb8-33053bc9e8c8", "text": "an ostrich takes large strides as it runs across the desert during twilight, cinematic, award winning shot "} +{"id": "4003856", "video_name": "7ab44961-df76-576d-bd53-24b259a93f3a", "text": "Enchanted Forest Path: A winding forest path with towering trees on either side, their leaves forming a vibrant green canopy, with sunlight filtering through. "} +{"id": "5001484", "video_name": "bdefc9a8-1e6d-504c-a434-a6bd4ee2a07d", "text": "prompt smiling girl running with a golden trophy raised up "} +{"id": "8001828", "video_name": "7cb1a688-2f8b-51a6-897d-a3933f73fb99", "text": "The legendary kraken emerging from the depths, 4k, high quality. "} +{"id": "4002057", "video_name": "c7c11b00-15ee-5dca-8e52-5ecb0fa7440e", "text": "low poly mountaing resort people do skiing "} +{"id": "0004014", "video_name": "01903378-12e3-549e-89dd-646bfb32c649", "text": "A Sloth holding a glass, smiling at the camera "} +{"id": "8002282", "video_name": "76d0fc94-985b-5815-8458-641e934fe4b8", "text": "camera pans along the treeline of a thick, dark coniferous forest, at night, under a full moon, inconsistent lighting "} +{"id": "7004908", "video_name": "7e8a0410-753e-570b-84e0-d9d937f0d5c3", "text": "fairy high resolution alike kiara advani, smiling, flying wings vibrant color "} +{"id": "8003338", "video_name": "37a9fb77-acb2-57ea-bb50-075b0e6a70c5", "text": "old man standing alone outdoors with 100 leaves falling from the sky. colorful animated happy "} +{"id": "0004688", "video_name": "0d53d2f0-4f1c-5f65-81d8-ecb88b671760", "text": "anime couple on beach Message: LOVE (Font: SANS SERIF) "} +{"id": "1003694", "video_name": "44164afa-b20a-5e26-9fff-50a57b45daf8", "text": "a gorilla training for a marathon "} +{"id": "6004981", "video_name": "7ab44961-df76-576d-bd53-24b259a93f3a", "text": "Enchanted Forest Path: A winding forest path with towering trees on either side, their leaves forming a vibrant green canopy, with sunlight filtering through. "} +{"id": "8001236", "video_name": "f49204b5-dd59-572c-bc76-1c88901ba04c", "text": "There are some who cry with laughter when utopia collapses, "} +{"id": "0004382", "video_name": "080a6c51-d19e-524b-99ed-b1a98c672811", "text": "many village people were standing with folded hands in front of the old man. "} +{"id": "2007608", "video_name": "e397e130-bf80-5780-bbcd-4b0f8af1c7af", "text": "create a picture of love, laughter and dance "} +{"id": "3005022", "video_name": "cdc43a9c-6d28-52d6-a2cb-f43603ca67da", "text": "mother and her son entering the house "} +{"id": "6003667", "video_name": "a2b5f41d-39c9-55f8-a58d-1c7ebfe7f2d8", "text": "The boy and deer lay slowly asleep by the burning fireplace in the forest wooden house "} +{"id": "1003757", "video_name": "454869da-7ab2-5a0c-b327-4ba16d0124b8", "text": "Samuel L Jackson as a Avatar character "} +{"id": "8003857", "video_name": "ac962520-6c90-537a-acd2-5dcfa9e5e7ba", "text": "African American mermaid, plus size, high gloss, in a dynamic pose, full view in tropical waters with flowing loc hair, underwater, tropical fish near her, uhd, photorealistic, underwater city, 3d "} +{"id": "1004426", "video_name": "51e8ddd2-b675-57e4-8ce7-79b3dff9afd5", "text": "A child in the forest, his epics. I feel afraid now. Where is the right path? He is walking forward and looking at the camera. "} +{"id": "8003926", "video_name": "39a4906b-4ce2-5680-b6a9-1331ad02096f", "text": "sunken ships with school of fish "} +{"id": "3006651", "video_name": "15469d02-cbdd-5f95-b1b1-8cb505ae8791", "text": "cinematic zoom to a glowing, small glass bottle on a table in a candlelit room, overhead shot "} +{"id": "6003869", "video_name": "d14ed0fb-9ebd-5c15-9c6b-231733fe239d", "text": "I dreamed of a blue elephant He flew with his ears flapping I dreamed of a blue elephant He ate clover and laughed "} +{"id": "2006581", "video_name": "97c3197e-c522-5fc8-80a0-894112147285", "text": "Illustrate a vibrant bus stop scene with children eagerly waiting for the bus. Show parents saying goodbye to their kids. The big yellow bus should be the focal point, 16:9, animation, story telling, interactive, kids "} +{"id": "3003196", "video_name": "273013a2-13dc-5b49-a818-3299a5d449f1", "text": "With the camera on its back, you can see an Egyptian pharaoh viewed from behind with arms raised against a background of green color. "} +{"id": "4003687", "video_name": "f6676c65-a5bc-5ae9-9d42-e36fc3bb3cea", "text": "Different clouds drifted across the sky "} +{"id": "3004186", "video_name": "99093518-eb30-5c91-997c-d685b5824d1f", "text": "santas elves making fudge pouring molten chocolate "} +{"id": "4003768", "video_name": "5be2ac39-3fae-52ce-a1ac-d5b949c50a3a", "text": "A bird perched on a tree with white and purple feathers 4k resolution "} +{"id": "4002535", "video_name": "be7261b2-63c4-5402-bcd3-347699bddccb", "text": "cartoon animated happy one fish baby jumping on upper surface of water.cartoon animated "} +{"id": "0004648", "video_name": "0ca164a9-06e4-5b0d-b086-b04685a391aa", "text": "a beautiful cyberpunk city, neon glowing city, bird eye view, highly detailed, high resolution, featured film, 8k, HD "} +{"id": "3005619", "video_name": "e035f0fc-cdba-57c3-9984-4bd7d42d5e23", "text": "Indian Hanuman Bhagwan transform red Hanuman Message: 1 Attachment "} +{"id": "3006431", "video_name": "e966503c-adb6-5d5f-afa4-7b8bc38ffb3d", "text": "Magical tree in the forest and warm lighting Message: HEDERA (Font: MODERN) "} +{"id": "2007589", "video_name": "c146950f-289b-5ec5-972b-f79501d5594d", "text": "Hello Monday, comfortable atmosphere at the beach. "} +{"id": "0006887", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "cascading red hearts around white copy space "} +{"id": "4004510", "video_name": "863b8959-5223-59a2-87d8-0058e8941485", "text": "Draw a picture of the rabbit and cat "} +{"id": "3006894", "video_name": "64924210-b869-50c9-8c20-07364eb407db", "text": "Four beautiful girls are dancing by the seaside, and the sunset is incredibly beautiful. "} +{"id": "2006898", "video_name": "fcdaa820-6251-5dcb-a1a5-188ac3076acb", "text": "a cinematic shot taken from ARRI camera, Bollywood actress dancing , New York street view , real skin features , 4K "} +{"id": "1003476", "video_name": "406d7d58-1853-5a11-beb3-f8fb10e20558", "text": "As the conversation swirled like the fragrant steam rising from the sizzling dishes, gestures spoke louder than words. Hands adorned with jewelry from different corners of the world gestured with eloquence, bridging gaps in language and culture. The clinking of ceramic chopsticks against porcelain plates punctuated the points made, each bite a chance to reflect upon the words exchanged. "} +{"id": "4003144", "video_name": "56c25583-df77-5c32-ad3b-a4538c937e82", "text": "field hockey player red uniform yellow shoes motion 3 "} +{"id": "4004523", "video_name": "7947cc1d-2aea-53af-a727-088fad2101f0", "text": "assistance to the manager, epic, military, bang, explosions, nuclear "} +{"id": "0006384", "video_name": "2b8d2c0a-a771-5a9f-8d5d-19403892815e", "text": "man are running into the forest "} +{"id": "2005353", "video_name": "81ecf6ed-29df-5173-88df-bf4b19db2e20", "text": "Aerial view of toy shark fin moving in ocean, ocean and sky in the background, Style of henry selick stop motion, tilt shift "} +{"id": "4004711", "video_name": "00e4e5d0-c850-5f7e-bdd6-d8cf5d6d6712", "text": "man running in the beach, chiclana, 4k "} +{"id": "2005742", "video_name": "67313abc-5067-50b4-ace4-47338931b92d", "text": "An ambulance pulls up to the side of the road. A man is lying on a stretcher. "} +{"id": "4002556", "video_name": "8f09bcec-521f-5703-8ad1-b0de5fc9802b", "text": "Rufus the dog running past a group of children who are enjoying a picnic "} +{"id": "7002475", "video_name": "5e452efa-4488-55d9-b483-5b093a3197dc", "text": "a man digging a hole, motion 4 "} +{"id": "1004750", "video_name": "57edbe68-98ab-5198-a331-ab192fd46b8f", "text": "a woman with eyes closed in state of bliss. "} +{"id": "6002119", "video_name": "fe18b505-2da9-5d87-a9fb-cc027d9c91b1", "text": "jellyfish 4k in the sky that are swimming through the clouds , 1970 , VHS, vintage "} +{"id": "6004447", "video_name": "318394cf-6337-5139-98c9-55e0fc048eae", "text": "In the cabin, a fight for survival "} +{"id": "8001766", "video_name": "6506bed7-81e3-5232-8bc6-b332a6fb86b7", "text": "aesthetic design logo, transparent glass with lava leafs and ice snowflakes inside of the letter, glowing, vector, marble fade fire and ice luminous render, 8k, 2D simple design, highly detailled, typography Message: 3 (Font: MODERN) "} +{"id": "0006718", "video_name": "31a0a3f0-f46b-5364-b7a3-ddcf75040aea", "text": "The wind blows, and people gradually drift away Message: 1 Attachment "} +{"id": "6002822", "video_name": "2ffb47fe-b1bd-509a-a48d-b3456904ade7", "text": "a man skydiving into space, fantasy type video "} +{"id": "4002493", "video_name": "3737e2df-fd13-522b-99aa-fd7a2784b372", "text": "A rainy city from the future Message: Pablo (Font: MODERN) "} +{"id": "3004982", "video_name": "d144737b-0411-5981-8d72-900de2e00e6f", "text": "beautiful girl picking red flower from floor "} +{"id": "4003475", "video_name": "ba044145-671a-54f9-a965-be3ca750eaf0", "text": "African American women with a colorful afro "} +{"id": "3005901", "video_name": "49f087f2-0385-5dcf-ac73-2d5785a92ed6", "text": "3 drones on a winner podium "} +{"id": "2006462", "video_name": "fe31dd3f-59b6-5254-9843-37ffbc91986e", "text": "Al Pacino Listening to music on headphones "} +{"id": "1003387", "video_name": "3e645ed5-3081-5981-a212-d2f8e558e8a7", "text": "indian god Shiva playing video games "} +{"id": "1003487", "video_name": "409ec2a5-2125-520b-b65e-7db76cfd06d5", "text": "a boy named Ahmed was in a great depression in day time "} +{"id": "2004837", "video_name": "f3369a47-a97a-5355-8b27-c2dcc2b7eb25", "text": "Rocket launcher slowly moves across the steppe "} +{"id": "4002380", "video_name": "87f5e211-781b-527b-9bb4-cd538c7ec283", "text": "Background: Use a cool, modern color palette with city lights twinkling in the distance. Keep the vibe chill and urban. "} +{"id": "8002094", "video_name": "f5ac256a-b947-5468-adc3-e4ff2f666c66", "text": "16:9 anime style kitten sleeping and snoring listening to music in snowy cozy house with the sunset in the background. "} +{"id": "0004846", "video_name": "10323a81-d838-536e-85d6-67f5d2912acc", "text": "A vibrant and colorful brochure cover featuring a variety of chocolate candies, surrounded by a group of joyful and energetic children, all with big smiles on their faces. "} +{"id": "1005801", "video_name": "6ab62317-9010-5e50-843d-5ed5acdef6d1", "text": "realistic movie scene IMAX movie footage 4K high definition real HD quality of red demon Eyes opening with a dim creepy vibe and tone to shot, world war 3 tone on colors evil vibes "} +{"id": "6002431", "video_name": "1f6c7ced-8de1-5651-9b1f-8984f749adc1", "text": "bolned hair girl studing opposite a huge rainy windon expect ratio 9.16 "} +{"id": "7002419", "video_name": "faac0e17-78cc-577e-bd67-23d5a4652a2d", "text": "happy teachers in the classroom painting crazy circular patterns on the blackboard, children dancing, colourful clouds of smoke, 1987, old VSH recording, Denmark "} +{"id": "0006123", "video_name": "26ffa4fb-ca29-5d5b-8bdc-9f4a7ad8049e", "text": "Add ambient sounds of ancient creatures and rustling leaves to set the eerie atmosphere "} +{"id": "5001190", "video_name": "5c4c3a4b-eb46-5bdc-a013-a82bf74618b5", "text": "Literary Icons Collage: A grand gathering of luminous spirits, each representing an iconic author. They share stories, their collective wisdom lighting up the scene. "} +{"id": "3006166", "video_name": "10ee4404-4e41-5bf1-af5a-3d16ae1728d4", "text": "A delightful rabbit, with its soft fur and gentle demeanor, is captured in a heartwarming moment as it clutches a walnut in its tiny paw. "} +{"id": "3006521", "video_name": "a2fb4691-237e-5cdb-aa9b-b5f98a498546", "text": "woman in car thinking about eating a burger happy "} +{"id": "8002664", "video_name": "ea276982-4a8e-595e-80f5-bd9180571619", "text": "close up, clear picture, many chocolates looks like eyes, "} +{"id": "8001016", "video_name": "102f9743-d45b-513f-84b6-e876896cf4eb", "text": "create a 60 seconds video showing the evolution of electric vehicles "} +{"id": "1005656", "video_name": "67e65bfc-bdc8-5774-af6e-1aae757a22ae", "text": "man eating Mac and cheese with his hands "} +{"id": "1006682", "video_name": "7a7ec2e0-d224-56dd-88b6-1703ec23a8fe", "text": "The Hatman dances in the midnight hour "} +{"id": "3005615", "video_name": "c050f715-fc9b-55c7-84be-3702b48617e6", "text": "Two patients listened intently to the doctor "} +{"id": "8002348", "video_name": "27e153b9-f325-5033-bb8f-d432a30d7ea7", "text": "a man on a dirt road parking the car and smoking "} +{"id": "0004919", "video_name": "116925c3-b9af-56bb-a29f-6a9302fb49f0", "text": "an average citizen in colombia talking about politics "} +{"id": "3005005", "video_name": "c76caf1c-0b88-515d-8587-7928caa80d33", "text": "fish oil shine in the sky "} +{"id": "8003920", "video_name": "d97ff0ab-d1ce-5ff2-a160-ed6ee425c389", "text": "a 3d anime pond with detailed water and fishes moving in water in right up sun camra zoom in "} +{"id": "2003072", "video_name": "5c148fcc-f2ba-5d79-8795-40d3d1f7a739", "text": "black and white grainy film textures of a field filled with skulls and bones "} +{"id": "1004711", "video_name": "5773d7c8-fab5-5f39-96f7-e92d5d2e3374", "text": "Baron with Black Beats with Black hat "} +{"id": "1006927", "video_name": "7ea26dfe-d718-5765-a556-855102ddafb0", "text": "a flying saucer lifts quickly into the sky from the desert, throwing dust everywhere, action "} +{"id": "6004170", "video_name": "77369ac8-873b-53e9-ad2c-74f9f9e16790", "text": "yellow car flying through the forest "} +{"id": "0004565", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "Make me an image of a terrifying nun walking facing the camera "} +{"id": "2006131", "video_name": "78dd15fe-96a5-557b-b541-eff8dd818e3b", "text": "A gastronomic kitchen with chefs cooking Message: NANNO (Font: MODERN) "} +{"id": "1005059", "video_name": "5d7d08a6-0d1f-5d6c-b1ab-3d3797a26a8c", "text": "A futuristic cityscape shrouded in darkness, illuminated only by the eerie glow of hovering Genesis droids, 8k, ultra realistic cyberpunk "} +{"id": "6003703", "video_name": "07426cbb-edcd-5f64-bf53-90a3b55eb964", "text": "Helena claims that this subterranean world may have inspired ancient religious beliefs such as Hades, Sheol, and Hell. "} +{"id": "7003067", "video_name": "9abe3b26-a589-53df-8d82-c387cfd8ebac", "text": "Remember to use visuals that align with the tone and message of the story and to maintain a consistent aesthetic throughout your video. You can also consider adding background music and narration to enhance the storytelling experience. Good luck with your YouTube video project! "} +{"id": "3003839", "video_name": "e1d554f2-1cc2-58cd-8a9b-211515d1c314", "text": "flying through a forest with foggy scenery, in the style of light teal and brown, detailed atmospheric portraits, moody colors, photorealistic pastiche, uhd image, whimsical topography, australian tonalism "} +{"id": "3005202", "video_name": "f7d34f8b-4b75-5b70-ab4b-cf572ef51224", "text": "(vintage texas tribes before uniting states ) "} +{"id": "1005601", "video_name": "67086b7a-57b5-5726-807e-1bbced0dd930", "text": "fashion shoot underwater medusa wedding red dress "} +{"id": "2006253", "video_name": "d2b261fc-54ee-581a-ac54-7821fb9c5e95", "text": "At the beginning of the video there should be a reaction of a person who won at the casino, then comes the Plinko casino slot, in which balls fall and money appears on the screen, at the end there is a call to action and the Plinko slot in the background "} +{"id": "7004479", "video_name": "004fe376-af7f-5c1f-a83e-c02f37796a85", "text": "The judge imposed a fine of 600 euros on Araujo, the Barcelona player, after he was sent off in the last match "} +{"id": "0006106", "video_name": "26ae4833-f65f-5dcc-987d-d7b0f36789b7", "text": "a 5 seconds Disney style mesmerizing forest with a path in the middle. An elephant is walking in the background. And in the foreground there is a lark bird building it\u2019s nest in a hole in the path. Ar 9:16. "} +{"id": "1003645", "video_name": "432a9a9e-c778-51db-8a31-4ae63e252864", "text": "1940 old photo family with a giant golden retriever dog in house "} +{"id": "2007153", "video_name": "3d841bdb-e13c-5b1c-9262-d8c9d250c0b0", "text": "dragon flying around a japanese temple in night "} +{"id": "0003020", "video_name": "35b04528-3fa1-5a52-a288-286c3cc03821", "text": "nigh city background, lots of lights in windows, blinking and turn off, techno vibes "} +{"id": "7004703", "video_name": "f7cc0df5-7b16-5856-b326-bc03d401f549", "text": "Create a video where a lawyer assists a couple in securely organizing their estate for the benefit of their children. Show the joyful children receiving their inheritances afterwards. "} +{"id": "6004926", "video_name": "cbbf67e7-9144-5e35-96d9-18f77210f9c8", "text": "a cactus with flower on top of cactus "} +{"id": "8003854", "video_name": "64d2dbb5-dbba-57d0-93b2-39f60ca06b58", "text": "in a rainy forest Message: arian oskol (Font: MODERN) "} +{"id": "4003950", "video_name": "24c3ac8c-5b6a-508d-b4e3-d644710ddad6", "text": "LD Silver sedan crashing into a black minivan at the crossroad "} +{"id": "2005492", "video_name": "6b7548d4-ff43-57aa-8e88-55f539c54771", "text": "a dancing cat on a table while a woman plays the flute, in the style of print art. "} +{"id": "6002638", "video_name": "53779c3b-6b03-58aa-b7d2-126b2539392d", "text": "Beautiful, high quality, animation, woman, fantastic, fish swimming in air, woman looking up, red dress "} +{"id": "5001089", "video_name": "5438befc-076f-572d-adb4-52300323c5a3", "text": "godzilla running a race on a high school track with hurdles, really fast running smooth, competeing against other runners, crowd cheering, oval track in arena "} +{"id": "2005468", "video_name": "1b6deb62-f703-51f7-8e1b-fd38dcb7d0e3", "text": "anime. Akira style. Animation. majestic forest, where trees sway and touch the sky and flowers radiate with magical glowing energy. Show a group of African American people, dancing, each adorned with vibrant and unique outfits. "} +{"id": "6004698", "video_name": "12f64238-f1c6-527e-9c59-58741e833375", "text": "cinematic, western, long shot, low angle, a shepard walks on a hill "} +{"id": "0004238", "video_name": "0592db9e-60b5-550f-8e77-57cd093566a0", "text": "world of horror cinema scary scene "} +{"id": "2003100", "video_name": "4f2516cf-2a29-5746-848e-46e749f254c7", "text": "1750s dancers red and white garments riding a lowrider 18mm film "} +{"id": "2004278", "video_name": "08853e71-11d8-57a8-835e-af542287bfa2", "text": "redraw top of the profile instagram "} +{"id": "4002810", "video_name": "f48a37d4-185d-54c0-b7b1-c958a0efe70c", "text": "\u201cMy husband and I first realised we had a problem on the eve of our fourth anniversary. The past year had been fairly tempestuous and we had both chosen to distract ourselves with work instead of facing the problem. We have no kids so it was easy to jet off to different cities as and when work demanded, or whenever we felt like taking a break from each other . Emotional , cinematic 4k imagination athestic "} +{"id": "0006130", "video_name": "27146824-c898-50be-89c0-eb054e40e97f", "text": "medium shot following a soldier from the Second World War running through the forest with equipment and armour. dramatic backlighting, muddy ground, , camera behind soldier, cinematic, hyperrealistic, filmed by John Toll, style thin red line, Dunkirk, filmed Hoyte Van Hoytema, camera movement shakes rough "} +{"id": "3005893", "video_name": "8c72e0c6-61b0-5aa6-9161-6594f72a2af1", "text": "share a talk with family secretly "} +{"id": "1004674", "video_name": "56e0304a-5e33-5d0f-b2de-991d847f3fad", "text": "old man looking at people outside "} +{"id": "0004943", "video_name": "12011889-025f-5bd4-a6c2-fe5b53791e87", "text": "Top quality, woman with straw hat, white dress, standing on beach looking out over wide ocean, natural light, cinematic. "} +{"id": "7003622", "video_name": "be475c78-6631-5415-b471-2411269925d1", "text": "19th Century Reverend with a Toothache "} +{"id": "0003702", "video_name": "41f68999-81d6-5d80-8f6a-8fe3b7344e5a", "text": "An orange gift box, floating up and down, then opening to reveal a shining light. "} +{"id": "7004807", "video_name": "ba9dcc1e-e750-5856-a126-c560881dd7c7", "text": "caution board about cannibals living in the forest "} +{"id": "6003189", "video_name": "6c2b8eab-1ba5-547c-a0e5-0ade2a0e98be", "text": "there are a lot of soldiers on the square "} +{"id": "0004608", "video_name": "0be1c116-275a-5822-bc8a-e4eb2ff20967", "text": "a minecraft player built a castle "} +{"id": "7002651", "video_name": "4d55d598-844a-5748-a0d4-ca69e1ed2c56", "text": "two people ride on a boda boda motorcycle, heading down a hill, towards nairobi city ahead, we can see the city in the distance, camera pan upwards "} +{"id": "0003249", "video_name": "3a0614ef-e71c-560c-bf42-79b618d11e6c", "text": "a woman waiting for her spaceship in a futuristic airport "} +{"id": "8003117", "video_name": "95829044-f8e5-5ceb-9090-b32fadf72431", "text": "A red plane flies quickly over white clouds, with an eagle chasing behind it "} +{"id": "0003518", "video_name": "3ee0bb64-016d-5770-b765-a73f12872e57", "text": "Nike Air Force 1 flies around planet earth in orbit. there are stars in the background, real life. realism. visible earth. gravity. weightlessness. space "} +{"id": "6002021", "video_name": "7f4331ff-53ba-5135-b7e4-c77955e32e98", "text": "fairy tale land with mountains, lake, forest and castle, cinematic and engaging scene. "} +{"id": "1004175", "video_name": "4d447fa3-90fb-5110-a508-4e8b06b17acf", "text": "A wedding scene under a tent with tables and chairs. Fine china is set on a gold table cloth for each table. "} +{"id": "8002158", "video_name": "7e22e94b-78fe-5807-9757-9bdd918a4490", "text": "Nanotech black and gold ornaments in a shape of a christmastree "} +{"id": "3004175", "video_name": "ae4506c6-dc2e-5c3e-97a8-093cae81012d", "text": "Create good looking white guy, he is marketing expert, copywriter. Successful and strong. "} +{"id": "2004281", "video_name": "27c74441-1e8f-5fbc-8015-9a95dad332c1", "text": "cats chasing a dog in syberpunk city "} +{"id": "2004202", "video_name": "fcc0a69c-69b4-514f-9c32-176f01a091ed", "text": "From far, zoom into the face of a very old monk, who is sitting peacefully in the empty, quiet and big hall of a Buddhist temple at the day time. "} +{"id": "7003903", "video_name": "76dde672-73da-5c9d-85fb-0336fae76471", "text": "style: cinametic, a woman walking through a busy street down town, walking away from the camera "} +{"id": "3003490", "video_name": "8185fc8b-9bf0-533c-b80b-2d9e0f0f65ac", "text": "Smiling and moving head left, snakes moving,forest "} +{"id": "3004957", "video_name": "b142dbd1-1101-52cb-999e-d2f57956faa0", "text": "a battle tank being thrown from a c130 "} +{"id": "0005126", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "a reper with neon light jacket "} +{"id": "3004490", "video_name": "c78de2fd-f9e8-5df4-92d6-63f1890304b7", "text": "I need the image of a white and black humanoid robotic roof rack in battle mode, with a rick and morty happy tree friends type cartoon style "} +{"id": "4002096", "video_name": "1f60ea62-7699-5318-b3db-c55590cc665c", "text": "One shot over the plane shattered the sun "} +{"id": "0005834", "video_name": "21f2d228-ee35-5dc0-8f1d-db66fa47a649", "text": "a basketball player slow motion walking at camera with a cool basketball jersey design. 10sec video "} +{"id": "2007498", "video_name": "2ca51d33-211e-526a-ae8e-520a21ae807b", "text": "in the magical animals event of whistlebrook the owl, the energetic rabbit, and the melodious songbird with the fox and the magical creature. "} +{"id": "2006882", "video_name": "3b63b060-0bb9-57ff-9687-00338cdd41f8", "text": "Adorned with Biopunk Cyborg Flowers, Butterflies, and Fireflies, they exude captivating allure. "} +{"id": "8003170", "video_name": "3fb332c7-85e3-57cd-a054-b0afbedeb16e", "text": "a man screaming into the blue sky "} +{"id": "1005343", "video_name": "62390869-2d4d-5389-af63-5b7c259c014d", "text": "a village scene in the rural parts of South West Nigeria where several people are relaxing under the moonlight with their children, oblivious to marauders creeping up on them unawares "} +{"id": "7003204", "video_name": "a75c1ee6-fb63-5933-a525-5f316933e25c", "text": "a man layed defeated on sand at night "} +{"id": "0006304", "video_name": "2a5e6a65-b5ea-5bde-8eac-aff2516e0ebf", "text": "a windy day in a fantasy colorful forest "} +{"id": "8001157", "video_name": "bf2d76e7-2efc-518a-9523-316c8b264ccb", "text": "jagd panther tank driving down high street "} +{"id": "7003759", "video_name": "52fd04ae-6153-54f5-bbc2-2d994df439b0", "text": "giant land octopus invading the land "} +{"id": "1006535", "video_name": "77c4f166-9865-546c-b58a-c748530bb6d2", "text": "a fine dining restaurant with a chandelier candles lamps white roses and tulips "} +{"id": "6004715", "video_name": "bb5ddbdb-ac55-5a06-a343-1a2d6844295c", "text": "3 friend playing card game table juice enargy drink yellow background smoky "} +{"id": "7003651", "video_name": "1fc5bdc6-70c3-5ea7-93db-4d554c7b9fea", "text": "A lush, primeval landscape stretches as far as the eye can see, bathed in the soft, warm glow of the early morning sun. Tall, ancient trees with broad leaves sway gently in the breeze, while the calls of exotic birds echo through the dense foliage. In the distance, a group of early humans clad in simple animal hides and carrying primitive tools huddle together near a freshwater stream. They exchange knowing glances and nod at one another, their eyes fixed on the horizon. Their expressions are a mixture of anticipation and determination. "} +{"id": "2004180", "video_name": "8c7533ac-6fe4-5c6e-8868-a87e2ad70f89", "text": "flower field growing with surrealist cloud "} +{"id": "4003720", "video_name": "35bb2d0d-29df-5011-bcf1-96137bb8db6c", "text": "prince rama meeting hanuman for the first time in the forest. Hanuman has taken the shape of a old human sage while rama has laxman accompanying him. "} +{"id": "2005869", "video_name": "7d527672-88c4-574b-82e5-d245e9e8ff17", "text": "ice spice gargles melted mozzarella, biting drippy cheese bratwurst burrito smiles "} +{"id": "8002431", "video_name": "91c8d051-128a-59cc-8c42-95c5fe67c399", "text": "brown woman with golden freckles, big curly brown hair, hazel eyes, emerald green dress, puff sleeves with golden butterflies, a evergreen forest background, stars falling from her eyes "} +{"id": "2003385", "video_name": "ab4e265f-3b6c-5635-87b0-04de7d17b65e", "text": "make an animation of crypto trading "} +{"id": "4002592", "video_name": "4e55f172-beeb-5a95-81ef-fa5821cac8d8", "text": "pasture full of oxen and dairy cows with orange skies Message: vamos ter filhos? (Font: MODERN) "} +{"id": "0004506", "video_name": "0a3dbd56-83c4-5d1a-895b-28b4faf83972", "text": "A hybrid creature with the body of a dinosaur and the wings of a pterosaur, soaring elegantly through the clouds "} +{"id": "4004524", "video_name": "566e063c-c6c6-565c-a425-aa0e7c6d7ab7", "text": "mercury fluid texture moving holographic zoom in "} +{"id": "4002605", "video_name": "935314c9-1f70-51d6-bc4e-a739bc64b2b6", "text": "an image of two civilizations, one civilization of human beings and the other new civilization of robotic beings with artificial intelligence, merge in an embrace in a sign of happiness and love and harmony to end the space wars, all in an image full of people jumping and with arms raised, human beings and robotic beings coming together on a memorable day "} +{"id": "8001185", "video_name": "d1b59ed7-9bed-5a2e-a5e8-968c51c8bee5", "text": "Create a scene of a grand, divine courtroom. Use regal, dark colors with gold accents for the courtroom under an open sky. Show a divine face less light figure rendering judgment from behind a luminous veil. Illuminate the scene with dramatic, divine lighting. "} +{"id": "4004802", "video_name": "d771bef6-0dfc-55ec-9186-9c99e759088c", "text": "baby Metroid in a bowl of ramen "} +{"id": "8002331", "video_name": "960a599b-7a7a-5183-aa59-0eb1d4c1f163", "text": "a man and a dog running on a grassfield "} +{"id": "8001884", "video_name": "5f818710-4e44-5bf2-be60-6d86cbf1440d", "text": "village grandpa tells moral story to the kids of the village "} +{"id": "3004296", "video_name": "0dcb81da-d5e1-561a-b194-fb3302ea4481", "text": "a edit of sukuna from jujutsu kaisen with a song from lumi athena "} +{"id": "8001485", "video_name": "279f32ee-f83d-535c-9aa1-ab0040645bef", "text": "A minotaur standing on a hill in the horizon as there is lava below it. "} +{"id": "2003702", "video_name": "d7fe372d-e83f-5fd6-a0be-2169cc5ccc19", "text": "museum with an empty display case "} +{"id": "4003866", "video_name": "9a0bd889-6d90-5878-9681-f97f8f0349c4", "text": "A lady was sunning herself on the beach "} +{"id": "1003026", "video_name": "378c8103-eea1-52ab-88e9-43226b5563a1", "text": "Robin Hood background animation say a story "} +{"id": "3004343", "video_name": "38adee76-9f46-5f06-a88f-880b793c1931", "text": "a machine that collect pollutionby environment remove all gases accept co2. and generate electricity. "} +{"id": "3004302", "video_name": "3e85d47c-1bd8-5b48-8550-65c49a90b8f4", "text": "Costa Rica a Nation without army "} +{"id": "7003124", "video_name": "6f3c4667-f191-53b0-9a72-359b1e30cbe8", "text": "The bracelet is shining Message: 1 Attachment "} +{"id": "1004257", "video_name": "4ed3d415-2fee-5110-9297-8e8cf3041498", "text": "the fan rotates slowing in the garage and the dog is laying on the ground "} +{"id": "8001513", "video_name": "0d573fd3-2b25-562e-b11c-072d595df2f4", "text": "drone going closer to the people sinking in an ocean at night, the waves are rising, night scene, cinematic style, motion 4 "} +{"id": "4004097", "video_name": "2010d762-7b96-5f0a-a3d7-2bf0d0d2bd4f", "text": "promte: waves are moving: 1 Attachment "} +{"id": "6002248", "video_name": "a849c288-2325-5f11-ab40-363ac18da870", "text": "The protagonist symbolically planting seeds in the field. "} +{"id": "0004916", "video_name": "11656abd-3ffa-54b9-bc62-5a4ef5279a98", "text": "futuristic backdrop with a holographic image of planet Earth floating in the center. "} +{"id": "0006973", "video_name": "36105c69-4763-5367-b6b4-315858a94c27", "text": "a person facing a bad situation, realistic, emotions "} +{"id": "7003514", "video_name": "da8a4715-915f-552b-8346-8e41c924d400", "text": "camera zoom in ultra detailed flower on the top of mountain illuminated by a spot light "} +{"id": "6003149", "video_name": "a817303f-9ad2-5d75-bde1-f2116ad4a354", "text": "abstract futuristic motion graphics, dark, bright color accents, futuristic, weird, looping "} +{"id": "4004266", "video_name": "1e83f2f4-d8aa-54c2-8d42-c72fc0a01e62", "text": "a lone astronaut crossing the desert at sunset. wide angle overhead shot. 4k. golden hour. "} +{"id": "7002836", "video_name": "553bfc26-cc67-572e-8657-b9a18af5533c", "text": "man typing on a BBC Micro computer circa 1980s "} +{"id": "7002605", "video_name": "6685866c-dc92-50b2-9327-7107baa33781", "text": "move the tree and leaf falling from the tree on the couch and floor Message: 1 Attachment "} +{"id": "0003500", "video_name": "3e9e1ab8-dd86-5c2b-83f1-53fbc8a8810e", "text": "The background is made of candy cookies The fruits on the tree are candy Message: 1 Attachment "} +{"id": "5001482", "video_name": "62c7ddb2-edf4-5c86-bd77-e2d68728e0d9", "text": "Golden flower fields bathe in the morning light "} +{"id": "3003732", "video_name": "458e55b7-3cab-54a3-8d78-aff60aee9876", "text": "zooming in on a fantasy planet in a fantasy atmosphere "} +{"id": "3004654", "video_name": "44e7a21a-9d87-5193-b00d-362b27d74f23", "text": "two lovers reuniting in the rain over scenic mmountains "} +{"id": "1004227", "video_name": "4e3dff15-8a72-502f-8b11-1d093b0e39f6", "text": "\u201cDid I?\u201d said Cinderella. \u201cWho are you?\u201d \u201cWhy, your Fairy Godmother, of course! I know your wish. And I have come to grant it.\u201d "} +{"id": "6002467", "video_name": "b4b02309-f6ac-5ef9-a3fd-80f8b89f236d", "text": "Show a group of humans surviving in the abandoned underpass of the city, trying to find resources while avoiding robot patrols. "} +{"id": "8001831", "video_name": "5e0c27f3-800f-584d-ba74-bdb881bbb50a", "text": "enormous horrifying cryptid beast in deep jungle, clear grainy footage on 8mm film "} +{"id": "2003421", "video_name": "149dbc85-e963-5cb1-9fe1-59750e57a0d4", "text": "Perched on a fence, the Steampunk Cyborg Cat radiates supremacy, overseeing a vibrant street filled with meticulously crafted mechanical creatures. "} +{"id": "8003036", "video_name": "98fa1ab7-923a-595f-b0dc-43111137f7b7", "text": "pov looking up with the sun shining "} +{"id": "2006959", "video_name": "6796d4fd-a93b-56e9-9c76-d3de7f7e4f83", "text": "Surprised cat, with a nuclear explosion in the background "} +{"id": "4004892", "video_name": "50064eae-0c65-582f-8e7d-923645bb0894", "text": "a single feather falling from the sky, sunrise, warm color palette "} +{"id": "7002426", "video_name": "a389b8fa-bcfa-5cef-b054-9b82adf0c85f", "text": "The cat is rolling on the sofa. "} +{"id": "2006970", "video_name": "8432509c-83c1-5a75-9e1f-69b538aba9e0", "text": "an image of real estate property based in India and it should look like shot by a real camera "} +{"id": "6003802", "video_name": "bb22bcf0-7404-5402-a2ee-8136c9eef747", "text": ": a beautiful woman with brown skin in a 2 piece bathing suit applying sunscreen to her hands, 8k disney style, 16:9 "} +{"id": "2004031", "video_name": "398a8b51-7284-5110-8a9a-dae26acfc0c1", "text": "prompt:rocks felling from sky stone rain from sky, fire raining from sky,in the old city "} +{"id": "2005570", "video_name": "d33deaa6-b029-5860-b86a-e13d8fc3757c", "text": "1930 two man walking down faire festival in costume gentlemen with a twist of steampunk drone view playful lights freak show "} +{"id": "1004169", "video_name": "4d2ee213-fe97-5ef1-aaed-bdd0f935358b", "text": "A cozy, dimly lit cafe with warm tones, wooden tables, and vintage decor. Two friends, Alex and Sarah, sit across from each other, laughing and sipping on steaming cups of coffee.Alex furrows his brow, pretending to think hard, while Sarah leans in, anticipating the riddle. "} +{"id": "7003608", "video_name": "57c01a6c-a2a0-5d5c-bc37-ac284f0fd0cc", "text": "1960s cocktail lounge don draper close up face "} +{"id": "1003956", "video_name": "48ff3285-d3ff-5529-a9a4-ad675edd6b4e", "text": "wide shot in space, woman sits on planet Earth, she holds her head in her hand, her legs are crossed and she has a contemplative expression "} +{"id": "6002358", "video_name": "9b6ed8b2-b20d-5779-93d0-758b3cc5ea72", "text": "ww2 footage of alien war machines, 3 legged war machines, retro war footage "} +{"id": "1004379", "video_name": "50dff8e7-3094-5cea-b5f2-2baf1f1354e1", "text": "man throwing an ax at a dead tree, horror video "} +{"id": "3005149", "video_name": "d50ff8ba-07b1-5d92-b9e5-bc8bc531b8b3", "text": "A shot where the camera is moved towards to liquid walls, creating a sense of movement and dynamism "} +{"id": "7002011", "video_name": "aaa7a6cd-1739-5f8d-9f09-5c9cfb31a901", "text": "The front door at night with two lights blinking. "} +{"id": "2003795", "video_name": "ab9f089b-fac9-5b28-9b36-b3c15d443e55", "text": "Burning forest fire around a lake, viewpoint through windows of luxury lakeside propoerty ,in style of TV commercial "} +{"id": "4003744", "video_name": "b7e92457-1cc7-5b0b-b66a-4fa7d580a942", "text": "a golden dragon flying in the sky,frome the right side to the left side "} +{"id": "2007260", "video_name": "b001e2eb-e241-5084-b888-a85428629a77", "text": "A magical doorway leading from one realm of the garden to another, surrounded by swirling patterns of glowing energy.Animated cartoon "} +{"id": "2007159", "video_name": "7ea6f8ba-a24d-5c8d-8a47-6fa95a843c69", "text": "20 people at a Christmas party, white walls, white couches, brown piano against wall near a fire place. Large red orchid painting handing on the wall. "} +{"id": "2006973", "video_name": "85f62e53-f923-5d1d-8e28-f8baa5f4afc9", "text": "a hero wearing knight amor has slain the dragon. and the sun rises from their battle "} +{"id": "6003388", "video_name": "40b98263-77f2-5707-9184-7e34292b2c9a", "text": "a man with a weird mask sitting in front of a plate of food, a character portrait by Otto Pilny, cgsociety, retrofuturism, reimagined by industrial light and magic, movie still, playstation 5 screenshot "} +{"id": "4003664", "video_name": "49301147-079f-59d1-8761-077c6c842f79", "text": "beautiful female ghost, black and white, cinematic, 3D "} +{"id": "1005156", "video_name": "5ef9eeb9-f813-513b-82de-07101ee997b4", "text": "The bus was very crowded, and there was a beautiful girl in a bikini on this bus "} +{"id": "0003535", "video_name": "3f1a391d-d68a-5769-93ef-ea3534ff21e2", "text": "The slow flow of the grass "} +{"id": "6003935", "video_name": "5278b427-4f32-5c77-9856-6ef1fcffd768", "text": "cinematic, peacock dancing around, Angel queen dancing with prince, king walking around with people "} +{"id": "8002447", "video_name": "362bd3e5-3712-56fe-a3c8-1c7d1f3140bf", "text": "a alone elephant walking in forest on river side with beautiful sky light "} +{"id": "3003132", "video_name": "b3b12dd6-f98f-5a45-844f-0d41890f335f", "text": "Love Is the greatest gift and asset of all\nA pyramid of strength that will never fall\nBuild it up high forever growing tall\nA free soul nutrient and a support wall\nGive love to anyone when you hear them call\nLove is beautiful "} +{"id": "1006811", "video_name": "7cadab37-2df5-54a8-ba3b-b72163723637", "text": "found footage of blood on hospital walls "} +{"id": "0003601", "video_name": "403939b1-d885-51c8-a4f4-03cbdbfd9298", "text": "The sun hides behind the gray clouds and the rain falls on the city, creating a rainbow effect in the air. "} +{"id": "6003459", "video_name": "b547cdff-9460-50d2-93fb-c74362f3c1b5", "text": "A man playing guitar down the trees, 4k "} +{"id": "0005131", "video_name": "155cdf08-d9e4-52bd-ace5-6f6e23f8a778", "text": "far wide shot of a tornado ravaging a house in a thunderstorm"} +{"id": "0005576", "video_name": "1d543627-5c2a-5569-a5ea-0ef39b8ebed8", "text": "create a short video ad with waterproof shoes rubber cover "} +{"id": "6003558", "video_name": "2865b4e0-9e68-5ef3-bf64-c0efd959004c", "text": "A group of happy little angels live in a beautiful happy village. One day, they discovered a mysterious magic door in the forest. This door leads to a world of magic and adventure. The angels decided to embark on an adventure together, exploring new worlds, meeting new friends, and learning many important lessons about friendship and cooperation. "} +{"id": "2004312", "video_name": "74fbf888-a7e6-58de-b54c-6aa164f9df90", "text": "Windy, stretched lens Message: 1 Attachment "} +{"id": "8002040", "video_name": "7771b0f4-d3ed-5139-9d9a-dc28a0cc18c6", "text": "The Roman soldier is in the position of Joseph and is shouting at the people "} +{"id": "1005556", "video_name": "66448c56-6aeb-5621-8f07-c878e5224f18", "text": "a serene night sky with a brilliantly shining star as the focal point. The star should emit a gentle glow, capturing the attention of viewers, 4k,3d "} +{"id": "8003474", "video_name": "869d5c9b-a9df-5e1c-b074-5b56a8d7c88c", "text": "super 8 mm film cinematic shot of a giant tropical volcano in the middle of the ocean, arthouse film Autho "} +{"id": "3005269", "video_name": "57a899f1-3a72-54ab-8fe2-868db1dbeb86", "text": "event in saudi arabia he talk about expo "} +{"id": "3004224", "video_name": "64783141-8a7b-5146-8a40-95fc59cc8679", "text": "A cinematic superhero image like a scene out Marvel, The powerful African God Ogun in African armor with spear, flies through a stormy sky while a volcano erupts behind him belching fire and lava into the sky "} +{"id": "2004296", "video_name": "91ebb897-f9c2-5262-86d0-4da0393bb985", "text": "night view from the sky,from flying drone,New York City "} +{"id": "2005298", "video_name": "4ad375c2-2c1b-59b3-bbb5-26c421a7728a", "text": "cow eating grass and its cub rounding cow "} +{"id": "6004024", "video_name": "4373d060-d638-55c5-90c7-4d867c021985", "text": "English: Futuristic robot reads a Letter while laughing and standing up while thousands of the same robot are behind him hd video "} +{"id": "2006465", "video_name": "27dabd18-e2a7-5aae-88c4-d852191da342", "text": "a long pink lipstick is slowly get out "} +{"id": "4003567", "video_name": "2919e564-e9d2-5c12-a45b-7494e83ebf0d", "text": "Just make the dragon in the picture have a slight movement "} +{"id": "1003628", "video_name": "42d32ddf-7f2e-5181-b7aa-1f9dfc252284", "text": "a man hug in woman animation video "} +{"id": "0004263", "video_name": "0613ea09-9aba-52d2-b591-52435499cac8", "text": "make a logo named THE MOVING FILMS in 2d illustration "} +{"id": "0003679", "video_name": "4193a9b4-9398-597d-850f-b0f81619153a", "text": "people of Israel in the desert asking God for forgiveness "} +{"id": "7002985", "video_name": "ddd4b7bc-0662-5fe5-97e5-3587c8a834cd", "text": "little boy and little cat separate in park "} +{"id": "1006550", "video_name": "77fcd492-49c4-5828-b10d-db25c56eea88", "text": "A moon obscured by heavy, stormy clouds, casting an eerie, dim light over the old mansion, shrouded in mist and surrounded by gnarled trees, evoking an unsettling and ominous ambiance. "} +{"id": "2006119", "video_name": "622f6d30-add5-5e86-8f72-a42107ed8f8d", "text": "a woman running on the beach giggling "} +{"id": "3003409", "video_name": "09fed99e-9d25-58f3-91e5-df06086de272", "text": "hieroglyphs that hinted at an advanced civilization "} +{"id": "5001353", "video_name": "9ff408e1-ca85-5d84-9dd3-ed41c664de72", "text": "the little boy learns magic with the mage "} +{"id": "2003889", "video_name": "dabba230-4b48-5bb8-8f84-26066389a3d7", "text": "Slow traveling takes us to a data center "} +{"id": "3006485", "video_name": "c62fc092-8172-594e-8d10-5a6be151cb17", "text": "moving left hand, moving right hand, moving mouth "} +{"id": "2007075", "video_name": "bd6d386c-b52d-536f-82e4-eeb4dbae430c", "text": "disorting waterdall in the middle of nowhere "} +{"id": "8003017", "video_name": "da92c049-53d2-5226-b3f8-56f9e7023241", "text": "liminal space dark and foggy forest with a castle in it and a green waterfall "} +{"id": "4004917", "video_name": "e9a6c1f6-894d-5f4a-8e17-48f463c405b8", "text": "two Ai characters discussing in a restaurant "} +{"id": "2005150", "video_name": "a3aad52c-a54d-52ef-869e-0d630d6abce5", "text": "camera zooming on futuristic robot face, neon light, rain "} +{"id": "7004964", "video_name": "0b79b676-6b52-5a37-a1a4-9ccc3f7d1892", "text": "a boy walking from the forest to the cottage 24fps 8k cinematic "} +{"id": "0006103", "video_name": "26a30f7d-9e61-5105-b6df-0968478d1ca0", "text": "POV from behind one water polo ball flying towards the goal "} +{"id": "2007899", "video_name": "e30f06ba-f2ba-5d49-9a7e-9d4cd05bc37b", "text": "A handsome boy riding a bicycle on a mountain road "} +{"id": "2003743", "video_name": "e80fd2fd-c6d7-5c45-89cd-3db82c074b9d", "text": "Increase the light in the given picture Message: 1 Attachment "} +{"id": "0004117", "video_name": "037cf0fd-1c3f-5c45-bf87-2712dfd801e5", "text": "women playing volleyball at the beach "} +{"id": "0006259", "video_name": "298a8ef8-c96e-5c40-96ce-5a7e22e35dde", "text": "a man is doing affiliate marketing through digital mode "} +{"id": "4003729", "video_name": "0ac741f8-8a11-5457-baa8-a3255fc45aad", "text": "burning battle on a golf course "} +{"id": "7003300", "video_name": "e6ddc992-fbaa-5c74-9e7f-9421beae9131", "text": "lady Gaga Bloody Mary music video visual , highly detailed, details, HD , High Quality, Full HD , smooth, creative , lady Gaga face realistic and high quality "} +{"id": "8002024", "video_name": "df13e967-0c98-56d7-b563-239a6488577c", "text": "forests flattened by a catstrophic explosion "} +{"id": "6004961", "video_name": "4db8680e-8a58-5e66-a548-a78f88714116", "text": "a boy and a girl in a romantic date eating coffee together "} +{"id": "2006174", "video_name": "466db995-d02e-5c87-8e15-cd09680e54cc", "text": "flying people 24fps hd Sharp 3d evil "} +{"id": "0003040", "video_name": "35f9d978-cdd2-5be8-988b-d8d3b945b52a", "text": "Kim kardashian with Elon musk walking , hyper realistic in 4k hd "} +{"id": "6004319", "video_name": "9a9a72a8-e2f5-52ce-9cbd-fe3335fa2177", "text": "a masked guy with a tech hoodie is walking in the ice with a cheetah who has clothes\n beside him "} +{"id": "4003055", "video_name": "8ce274ef-1322-50bb-aa44-98040aaaa1d3", "text": "A white base, write five words Heimdall paradise, neutral pen doodle "} +{"id": "8003371", "video_name": "216a41ad-437d-581c-b8f5-9f0e0a038544", "text": "Zelensky is laughing and Moscow is burning in the background "} +{"id": "6002086", "video_name": "da2eed3d-29cb-5a48-b379-c6fef8fcc67a", "text": "animate this image and crowd doing aarti "} +{"id": "3005001", "video_name": "df478eee-748f-5895-9527-5c367d048132", "text": "a young woman looks out over the mountains a sunrise "} +{"id": "2005131", "video_name": "2d22470f-45c0-501b-af11-fb229b3e63f5", "text": "90s recording, balenciaga JDM car studio wide shot "} +{"id": "8003964", "video_name": "df40b87b-daed-56b8-bb9a-a73bcfd321ae", "text": "closeup of the hand of a woman while they are closing hands, neural style, synaptic style, photorealistic "} +{"id": "1005935", "video_name": "6d0847d4-7d32-5855-a541-038247c1b82b", "text": "several computers exchanging information and data between them in high speed. futuristic style. we can see the data flying between the computers in high speed, with colour sparks in the air "} +{"id": "8003977", "video_name": "23dedb4c-0172-542d-a094-31eb4d55302c", "text": "gandhi speech the good words gandhi defferent age groups are stand back side "} +{"id": "1003371", "video_name": "3e269b00-7725-5cd8-a755-75e7dd291e06", "text": "Make Busta Rhymes as the Genie in Aladdin "} +{"id": "0005898", "video_name": "22eec976-3683-5338-8b73-3ed5016f0f78", "text": "creates a music cover with the name FlexRecords "} +{"id": "0005945", "video_name": "23c09793-3cc1-59ff-b875-3158f84ad2db", "text": "A African man in the city ascending into a Ufo, while the city is on fire, highly detailed, 4k "} +{"id": "2003080", "video_name": "bba58e19-00ef-50c8-9454-a320bf4d70fd", "text": "Visualize Emily, inspired by the magical story, looking out the window as the first snowflakes fall, transforming Evergreen Falls into a magical winter wonderland. "} +{"id": "4003210", "video_name": "d77cf4f6-0952-5f59-ac23-83ddf347d68c", "text": "man sitting with blue powerful aura behind him and glowing eyes, hair flowing, highly detailed animation, hd "} +{"id": "0005510", "video_name": "1c0d9abc-8464-5a65-983d-198be2b2408e", "text": "5 Zebra, grazing on grass ,walking ,gs 20, motion 3, ar 16:9, hyper realistic "} +{"id": "2006618", "video_name": "a1c250b7-1393-54d2-abdd-5f7412559aa5", "text": "a slice being lifted out of pizza with lots of melting cheese in an advertisement "} +{"id": "8003847", "video_name": "5435977c-a026-5253-97a1-bea601dc7a4e", "text": "The wind blows gently, and the big bear lowers its head to look at the little bear. The little bear lifts its head and slowly closes its eyes. "} +{"id": "8001740", "video_name": "2ddb072f-a402-5274-bf79-8fa3817b86cd", "text": "An Arab fighter man with the uniform of an Arab fighter with a knife fights with two people in the middle of an old neighborhood "} +{"id": "3005524", "video_name": "01e92144-7e03-5de2-8725-8fd88accf950", "text": "pink shadow of a young boy "} +{"id": "1006229", "video_name": "72353553-5b60-5a49-9b1b-12a32a58ee34", "text": "horse running on sea shore realistic video in depth cinematic view "} +{"id": "7004254", "video_name": "cb9b061a-7388-5ca6-a053-781a4f336ae0", "text": "a viking staring at the stormy sky and crying, close up shot, camera rotation, 8k, Highly detailed, cinematic photography, cinematic lighting, Hyperrealism, detailed, dark color palette, stunning photography, dramatic, directed by nolan "} +{"id": "8003958", "video_name": "55de0cff-7d4a-51a5-925e-030f9bebba8d", "text": "a book opening revealing a picture of the galaxy "} +{"id": "6002271", "video_name": "b6c81e8a-5a4d-5e10-a223-bc004decbb4a", "text": "the mouse wailkng in the forest. Pixar 3D style "} +{"id": "1003886", "video_name": "47aa8bd1-b9f0-5370-adfa-334297bd79ba", "text": "An animated 3D video of the trio sitting by the shimmering lake. As Jake confesses his love to Lily, the camera pans around them, capturing their reactions. "} +{"id": "3005874", "video_name": "2b430569-4988-570a-8cee-c7b69838b754", "text": "aliens building ancient egyptian pyramids, carrying huge blocks with ease and dancing "} +{"id": "1003254", "video_name": "3bea9736-6cac-5465-9154-2543fc094330", "text": "she gave me the flu as a christmas gift "} +{"id": "3004238", "video_name": "71f1bd4a-728a-57b8-acf5-dd2b853426a3", "text": "make a video about space rocket that launches from earth and lands on the moon, make the video a minute long. "} +{"id": "4002142", "video_name": "af72fde4-f332-52df-a8cb-d56419fbf946", "text": "A 20 year old girl with wavy long blond hair, big dark brown eyes, and a perfect ovale face, rendered in a photorealistic style with sharp edges and a vibrant atmosphere, standing on stage singing with a loose shirt "} +{"id": "4002213", "video_name": "7d77ca9a-33de-572a-9329-0b5bbc56a159", "text": "hyper realistic cinematic sci fi cit scape at night with the stars above and galxies "} +{"id": "4003512", "video_name": "9f41ad8d-9112-5380-a362-93029970d084", "text": "But as she looked back, Emily could have sworn she saw a faint figure in one of the upstairs windows, waving her goodbye with a bittersweet smile. "} +{"id": "3004546", "video_name": "8e1a166f-0f5b-52ef-bc28-2c21a6cdce37", "text": "hairs moving and coat moving with the air "} +{"id": "1006071", "video_name": "6f6b173f-d333-5be2-af89-fb2b7ce8cf68", "text": "A cute cartoon cyclist climbing hiking in the mountains made of marshmallows . The scene displays the cyclist surrounded by tall, majestic mountains. Lofi \u2013ar 3:2 \u2013s 750 \u2013style raw \u2013v 5.2 "} +{"id": "4004068", "video_name": "8ecd69a7-f105-54d7-ae81-4d33b51c7459", "text": "make the kid in the image move around and open books as if he was learn "} +{"id": "7003173", "video_name": "1db4b5da-6b7f-5f25-84d9-815cac13d03d", "text": "A majestic brown bear standing in a lush green forest. The bear should be portrayed in a powerful stance, with its head slightly raised and its sharp eyes gazing ahead. Its fur should appear thick and realistic, with shades of dark brown and hints of lighter tones. The forest background should include tall evergreen trees, with sunlight filtering through the canopy to create a dappled effect on the ground. The bear should be depicted in a natural setting, exuding a sense of strength and wild beauty. Message: 1 Attachment "} +{"id": "7003917", "video_name": "ee37bd48-dd0d-5811-a250-ba631589cfa6", "text": "lord ram home coming, walking in Temple,smiling face,with lord hanuman, crowds celebrating ,cinematic "} +{"id": "2007867", "video_name": "84f045e7-5e2b-51d2-a922-15308eb0e3f6", "text": "Neil Armstrong and Buzz Aldrin boarded the Lunar Module "} +{"id": "0005933", "video_name": "237043b2-d775-5534-a185-f2d80e096b7b", "text": "The parasol moves according to the wind and there are waves in the pool "} +{"id": "3003282", "video_name": "ac252f1b-7700-5fbe-b356-f680b157e019", "text": "Princess on a throne drinking a glass of red wine, cinematic lighting, cheerful vibes, Camera zoom 60, Message: 1 Attachment "} +{"id": "2007108", "video_name": "7f2079ed-0184-535d-a9da-f377b76a02c7", "text": "Imagine an ethereal dreamscape set in a cosmic desert, where neon cacti pulsate to the rhythm of an electronic beat. The moon is a rotating vinyl record, with starbursts acting as the needle, converting celestial vibrations into the music that animates the world. A spectral wolf made of shifting geometric patterns howls, sending ripples through the fabric of reality. As the beat drops, a phoenix made of flame and soundwaves bursts from a boombox sitting on an iridescent sand dune, soaring into a sky filled with swirling galaxies. Each element moves fluidly, synchronized perfectly to an entrancing electronic track. "} +{"id": "6002284", "video_name": "e3b750fd-4c08-56ce-9f74-ce95ac2a0e71", "text": "generate a short film video about a 25 year old guy who developed an ai and a metaverse to help people to overcome fears but later turned to an purpose to manipulate people with help of artificial interface and fall in love with ai and make her virtualy real in the metaverse to make love with ai and partnered with ai to do cyber crimes "} +{"id": "1005933", "video_name": "6d005891-b251-5106-9eb0-ebddb98eb833", "text": "Granola is poured into a bowl with purple paste inside "} +{"id": "7004085", "video_name": "748817ce-0647-5eeb-93ce-21c97a7016fa", "text": "A rotating globe with animated lines connecting different continents, transitioning to a background of fluctuating financial charts and graphs symbolizing global supply chains. "} +{"id": "8002161", "video_name": "4990dbea-6fae-5710-8331-71ba9a09689a", "text": "two girls being followed by a man in a dark alley "} +{"id": "0005599", "video_name": "1dc44015-2f8e-5890-b0e7-939a1225cb22", "text": "marketing people working on a new software project that will change the world. "} +{"id": "0003697", "video_name": "41e60651-337a-5ffe-a962-02c36e9bf425", "text": "The Cat in the Hat is running inside the room with his Cleanup Mashine "} +{"id": "2005677", "video_name": "a50b0719-fb49-5961-95b8-90e6c9cbaf28", "text": "space in the background, planet like chocolate cookie, realistic, moving, more stars "} +{"id": "0005959", "video_name": "23efc931-f87e-58b7-a7df-48b75de685c6", "text": "Lost in Space: An astronaut adrift in the vastness of space, surrounded by distant galaxies and celestial wonders, facing an unknown cosmic phenomenon. "} +{"id": "2005810", "video_name": "2155fe63-00a4-5cd5-bf99-30fe3fcbe6b7", "text": "A pumpkin patch explosion of orange goo "} +{"id": "2007333", "video_name": "c9d0a828-4e62-5663-858d-c20f9e73609a", "text": "Create a penguin fighting with lightsaber on top of a mountain "} +{"id": "7002123", "video_name": "d4842e4d-c9a3-5d04-837d-ba3fd71318b8", "text": "penguin came to Burning man festival "} +{"id": "4003819", "video_name": "d8843982-eb8a-5e3e-8820-f2779a206166", "text": "Carlos fires a laser gun. Scifi. Space Station. "} +{"id": "4004612", "video_name": "a79e231a-a909-5cab-9c3e-78516931f3a6", "text": "Shreeansh, a young adventurer with a heart full of courage, finds himself accompanied by an extraordinary team of fantastical creatures. Among them are a mischievous monkey and a graceful, flying hummingbird, both of whom add a touch of whimsy and wonder to their journey. "} +{"id": "0003055", "video_name": "3640eab9-10ff-590a-ab22-d1fbc509b4ea", "text": "Mike Tyson and Mike Wazowski fight on the roof of a skyscraper "} +{"id": "7003041", "video_name": "7297a610-c7d1-5796-83cb-e542fd8e6bfe", "text": "eagle sitting on the top of a mountain speaking "} +{"id": "1004642", "video_name": "564ebbb5-0147-5b88-a05b-ef70dcb32bf4", "text": "A small red bird stands on the music sheet and sings, with the crystal clear water of the lake and the shadows of the trees behind it. The birds spread their wings and sang with their heads up, accompanied by other small animals on the score. The surface of the lake reflects the reflections of birds and trees, and the setting sun shines on the lake. "} +{"id": "6002948", "video_name": "a10cc9a0-30a0-579a-820c-470060bc0468", "text": "A child in a futuristic classroom setting, interacting with a humanoid robot or AI, showing a scene of cooperation and learning. "} +{"id": "5001753", "video_name": "b5e54e93-eb4a-52ca-8466-1d3a90e05824", "text": "a girl with green eyes feeling anxious "} +{"id": "7003806", "video_name": "f2eade71-6cc1-5e24-9eb9-87d29e69ba52", "text": "magician sawing female assistant in half pixar "} +{"id": "6002736", "video_name": "e0fb718f-5fe9-514f-9975-baddd2d50472", "text": "draw 2024 using moving mechanical parts "} +{"id": "8001247", "video_name": "2bd67079-54d2-5ba6-b759-9529822a6978", "text": "beautiful white clouds like cotton flying in the clean sky "} +{"id": "2007818", "video_name": "f82e397b-1cb6-5af3-a7ab-44c9f3d9ddd6", "text": "a 8mm style movie of the bigfoot "} +{"id": "8003428", "video_name": "5312170e-34da-5c9d-adda-ff1629a4d74c", "text": "robot with many pieces made of lego walked to a ship "} +{"id": "2004212", "video_name": "85157363-3d54-53e8-966f-dd9150ee450f", "text": "the watch is in the box "} +{"id": "4003182", "video_name": "456989b1-df16-573f-a92e-0b629192a21a", "text": "a scene with a padlock around a personal computer "} +{"id": "6003066", "video_name": "3264a418-7dc5-5fa0-bea1-df0fe000fd7d", "text": "the technology along of the world history "} +{"id": "2007575", "video_name": "e3fd0deb-4a41-5ad7-ac49-e0b7417a2d3a", "text": "This ancient caravan is a caravan of some people on camels and horses. It passes by a mountain. Some people looted the goods of this caravan. "} +{"id": "8003769", "video_name": "0bb76d81-2c89-562e-96be-bdc1e18f06a8", "text": "recession graphs and line graphs moving, circling, and hovering around and crumbling buildings and houses to a red fierce expanding fire, cinematic dramatic gloomy cgi style "} +{"id": "3005770", "video_name": "65a910c6-440f-537d-bc46-1792b96b6af4", "text": "the snowflake drift down, the leaf scattered themselves over the snow. "} +{"id": "5001342", "video_name": "4a57a71e-661a-5b2e-a737-5e45d7f478d7", "text": "I saw two children wearing glasses looking at each other through the glass window Message: 1 (Font: MODERN) "} +{"id": "1005401", "video_name": "633afcb8-315d-5347-81f0-dc7cd83b0517", "text": "moon is about to hit the earth surface. With each step, the moon grew larger in the sky, threatening to crash onto Earth. day time cinamatic "} +{"id": "5001465", "video_name": "cf9fbfb2-cb18-5f1d-956e-d0693f3de847", "text": "A group of elephants drinking from a lake "} +{"id": "2006103", "video_name": "cd0c1863-050f-5e59-b993-3b3e17e49c6b", "text": "A person standing in the rain, holding an umbrella with a smile. This scene symbolizes the power of choosing a positive attitude in the face of challenges, turning rainy days into opportunities for growth. "} +{"id": "3003230", "video_name": "e48bddd4-9f93-52df-8483-e972c92cf0a4", "text": "elton musk watching his rocket launching "} +{"id": "4003129", "video_name": "56621c83-7915-51ac-bba0-4b70afe7514e", "text": "spaceship launches from dock in the cloudy sky, cinematic lighting, dynamic composition, dutch angle, 8k "} +{"id": "7002965", "video_name": "b320a351-8c15-57af-9c50-289ab3691aa3", "text": "people going to elections in ashdod city "} +{"id": "2005482", "video_name": "81535d42-8f2e-5e27-a19e-626b4cd22ca4", "text": "a view with a lot of windows dur "} +{"id": "3006610", "video_name": "834cef14-90d6-590c-b294-f6f0037381df", "text": "fisherman sells many fish in the city "} +{"id": "2006679", "video_name": "dde9ea96-7630-518a-ac76-81370b6c96dc", "text": "a painting of a sunflowers garden,the sunflowers waving in the wind, in the style of An oil painting with exquisite details, a lot of lighting, and a picturesque brushstroke, Van Gogh "} +{"id": "2005776", "video_name": "b3c13cb7-0a57-5c72-94c5-3318e3374a81", "text": "make a logo with moving logo with the word AniYork, black background, 3D letters in lighting "} +{"id": "6002224", "video_name": "8eccb7e2-496e-51ac-8770-fafb182eff64", "text": "military white hat hackers, blue team and red team "} +{"id": "8001282", "video_name": "ec2dca19-8cc7-51b8-a2a4-48bb61ed3035", "text": "Rocket, fire, neon lamps, night, space, stars. "} +{"id": "6003293", "video_name": "bee1903a-478b-5553-a9ed-4d8db7712433", "text": "The Adventure of the Dancing Men "} +{"id": "6003321", "video_name": "c37725f2-20b8-5997-8aee-d9d4990412a3", "text": "can i write in chinese languge? "} +{"id": "3005704", "video_name": "46d045b3-4417-594f-ab3a-082dce3c5029", "text": "elderly man drinking coffee on a mountain surrounded by forest with one side in the background "} +{"id": "1004983", "video_name": "5c2082ea-48b5-56ec-808a-5e1c5e83e115", "text": "mona lisa paint but with marge simpson "} +{"id": "8001874", "video_name": "e917b4a4-ac2c-54d5-b3b6-a8206714b9d6", "text": "some people stand around a concert venue while loading the instruments into an van "} +{"id": "6002992", "video_name": "e5a79d24-e487-5972-a675-4c2b08baea0a", "text": "a rapper flexing money filming his video clip "} +{"id": "7003011", "video_name": "f9e99d3f-b371-544b-ac9e-1c14f8b679ae", "text": "a funny cat grinning into the camera "} +{"id": "4003769", "video_name": "7d0a74b9-25f7-5b3d-97e6-78f46adba2c8", "text": "a teddy bear with a smartphone in hand disney style "} +{"id": "0003293", "video_name": "3b0fcb6b-81a2-517b-ae64-8492bcdf1ab1", "text": "ariana grande performing on the moon "} +{"id": "3003905", "video_name": "defe92df-6f18-5956-925c-293afd79e669", "text": "zoom in ESP8266 chip seamlessly linking with the microcontroller, creating a network connection. "} +{"id": "4004403", "video_name": "75a280ad-3c2a-528b-ad67-cf9cf1a471fc", "text": "bright white room, music video style, 1920 by 1080p "} +{"id": "1003279", "video_name": "3c4e85e6-cdb7-5b48-be2e-1a8a6439f9f6", "text": "create 2d character of a indian grandmother "} +{"id": "2006687", "video_name": "76b568b4-9708-5501-89f8-22225a9dc1d7", "text": "guy hire a new sound design team "} +{"id": "6004009", "video_name": "979e41b5-9162-5813-8c58-dbc3e57a143e", "text": "A cyberpunk robot look for the sky "} +{"id": "1005890", "video_name": "6c5a6c02-2418-5356-b071-1e24df9351c1", "text": "a Argiope bruennichi on his web "} +{"id": "6002590", "video_name": "f52b2969-76b0-5beb-83e1-69e535aa9578", "text": "scenic shots of a cabin exterior showcasing the rustic beauty "} +{"id": "0003451", "video_name": "3dcd3634-4940-59ea-8f98-0c7f88550ab5", "text": "There was also a bad magic in Bakda. "} +{"id": "6003936", "video_name": "fdfaed06-bbb2-598f-a1b2-9108ed403708", "text": "heavenly gates, white and gold, surrounded by clouds, "} +{"id": "0004092", "video_name": "030a6dfe-d46b-5ffd-a8b8-5af510faef86", "text": "abraham lincoln sit at the taater "} +{"id": "4002083", "video_name": "a19a86da-fbcb-580e-b3ec-6e8c99bc2528", "text": ". It was unlike anything they had ever seen, adorned with intricate patterns and shimmering with golden hues. The box was filled with jewels and treasures that sparkled like the stars. "} +{"id": "3003626", "video_name": "113460c4-cf50-58ea-8e42-f2f1ef1cef38", "text": "a moon moving round and two women sitting on moon surface realstic cinematic bright colour high detail "} +{"id": "8002871", "video_name": "b7c46551-6cbc-58f1-9d73-7ad405bd77be", "text": "a water slide underground. In black and white art style "} +{"id": "3003054", "video_name": "621c9b47-da28-55a1-a9b7-f76dbb166b10", "text": "With a bittersweet farewell, Eliza left. Jake watched her silhouette fade into the horizon. "} +{"id": "6004461", "video_name": "fce7071b-41c9-5d2e-98c6-aa66cae9b6af", "text": "a super intelligent artificial being is birthed into the cosmos. "} +{"id": "8002306", "video_name": "df173e49-2a40-5251-8d6e-c8208ebc8fbd", "text": "Beautiful girl sitting in a bar in 1920 "} +{"id": "2006494", "video_name": "f668f7c9-20fa-5cb0-82ff-e7ba9412453f", "text": "a very fast moving tent with bicycle wheels with a surfboard on the roof and on top with a beautiful girl on the table "} +{"id": "0004842", "video_name": "102431cc-0056-51a5-87ed-cf41ca0da329", "text": "Dragee fairy dance, realistic, beautiful, aesthetically pleasing, professional shooting, high detail, photorealism, 4k, 16:9 "} +{"id": "0003945", "video_name": "0047bf71-c031-51dd-a5db-f9e0fd051bcd", "text": "suburbs in the future camera pans up flying cars "} +{"id": "7004304", "video_name": "cfaef315-88dd-552c-9839-cb5f455fdfae", "text": "A girl looks angry as she looks at the camera, bokeh neon lights in the background "} +{"id": "4004189", "video_name": "a7e5086e-864a-535a-9f10-3627f26bee26", "text": "And so, the tale of Luna and the Enchanted Ocean spread far and wide, becoming a cherished bedtime story for children across the land. The lessons of friendship, harmony, and the power of positivity echoed through the hearts of generations, ensuring that the Enchanted Ocean remained a symbol of wonder and magic for years to come. "} +{"id": "1004742", "video_name": "57d3e22a-1ad5-512f-9af5-6ee581760f0d", "text": "animation of cute and gorgeous teen girl saying good morning "} +{"id": "8002973", "video_name": "cdb404ec-5d9e-5711-8a1b-9ca09aed58b4", "text": "An scary alien breed that is very agressive. Half of his face is held together by tape and old strings cloth. 21mm lens, depth of fiield. Light fog. He looks sad. Very realistic "} +{"id": "6002164", "video_name": "26ec5a4c-d67b-5f27-bb1c-e70bdd3c737f", "text": "a boy standing on a rooftop, gazing up at the sky with awe and wonder as airplanes fly overhead, his eyes filled with determination and excitement. "} +{"id": "4002887", "video_name": "6414cd9c-af96-5caf-9313-25123f957726", "text": "a man waving good bye in the city "} +{"id": "3005719", "video_name": "248479e8-215c-5fdf-bfd4-c2bd01a2d6fa", "text": "pixar looking animated plant that runs into the forest "} +{"id": "6003480", "video_name": "e1206a82-cfe2-561a-ae67-ba5a2044aa8e", "text": "muslim parents are discussing for a while, in their house in village "} +{"id": "0006121", "video_name": "26fdad1f-6aea-5cee-a049-fa799e85113f", "text": "landscape, realistic, hyper realistic, photo realistic, real, fantasy, photograph, 8k, masterpiece, background, linear space Message: 1 Attachment "} +{"id": "7004755", "video_name": "d7d3b6b0-5a8b-5cba-863d-07c96e2811c2", "text": "sport at gym without wiered body "} +{"id": "5001888", "video_name": "a42b50f0-8b97-5f87-8550-9bffadf907f6", "text": "A secret vault on a snowy mountain ,glowing , camera zooms in "} +{"id": "8002591", "video_name": "e00b9fbb-47ab-5ccf-be22-f1c5142c5490", "text": "motion Message: THRONE OF SEAL (Font: MODERN) "} +{"id": "2004558", "video_name": "57364014-01a8-56f8-a74a-19ab523f6219", "text": "Revolutionary men in a burning favela in Brazil in black and gray pencil sketch style "} +{"id": "0004874", "video_name": "10ba1960-a659-59b3-b338-fd0575800141", "text": "Generate an animated dynamic burndown chart with a line graph showing progress over time with people surrounding it "} +{"id": "3005359", "video_name": "1cf12790-6739-5753-8814-b4880fd6ecaa", "text": "a silver talon but the nail is more nail like "} +{"id": "1004738", "video_name": "57c6e24a-94ca-5368-aab2-d5b1f87e2fc3", "text": "a girl is walking in time squares with someone put a sign Message: I am trump (Font: MODERN) "} +{"id": "3004212", "video_name": "58424611-d152-516b-a2a7-41199d211721", "text": "Jets and ufos are in a space battle. Scifi. "} +{"id": "6004737", "video_name": "0d30c4ca-446c-5aaa-b15f-84ed6019d7f4", "text": "A man in a tuxedo dancing in the city center in the rain "} +{"id": "3005761", "video_name": "97c515ef-6387-52bb-8f92-71cafdb0d8cd", "text": ": a deer getting tattooed on the body "} +{"id": "8002174", "video_name": "a030e6d5-dc1e-5868-a79c-fe486dc3a4f7", "text": "Once upon a time, there was a cartoon character named Hedgehog. Hedgehog loved to explore and go on adventures. One day, Hedgehog decided to go camping in the big forest with his friends, Rabbit and Kid. "} +{"id": "7002073", "video_name": "87d3fd6e-0d35-5996-83a4-849a5112e7de", "text": "A beach covered with colorful transparent stones "} +{"id": "4004109", "video_name": "162bbd2f-808c-50ef-823f-5b3e8ba8824b", "text": "Composition: Maiden on bed with tear, gazing at the sky. Angel on the left, open window and wind. Demon on the right, burning candles. Rose petals on the bed. Artistic Style: Inspired by Gothic and Renaissance art. Soft tones for an emotional atmosphere. These brief instructions will guide the creation of an image capturing the farewell scene, with elements of Gothic and Renaissance art in an emotional and symbolic style. "} +{"id": "6003252", "video_name": "54fc1a2b-2cdd-5f41-84c2-19632e7f2bbe", "text": "The teacher is teaching while pointing at the board "} +{"id": "2004806", "video_name": "c48e16a8-3d29-5cc1-a332-c38a2b5b00a3", "text": "drone view of the iceberg Message: multigramm (Font: MODERN) "} +{"id": "1006729", "video_name": "7b4ba1c5-7f72-5480-bc28-1f8be32c225e", "text": "draw face with camels Message: 1 Attachment "} +{"id": "0005613", "video_name": "1e0adf90-b271-5cdc-864c-56cbfe629708", "text": "two men in white top and navy shorts talking to one another "} +{"id": "2003523", "video_name": "1cc5016c-e1b8-53fc-b903-445dd72ec5e5", "text": "japanese mask floating in water, realistic style, 4k "} +{"id": "0005989", "video_name": "249898bf-571a-54cc-aca5-6cbfc5921681", "text": "a cute cat and move forword dancing "} +{"id": "7003465", "video_name": "83293acf-c50f-599a-b0da-1858027d33ef", "text": "los angeles palm trees swaying in the wind during golden hours "} +{"id": "3004067", "video_name": "1d397043-2a2e-5d2e-be6c-8ede8a0506e1", "text": "Elon Musk drinks coffee while a black and white cat takes a nap next to him "} +{"id": "0003516", "video_name": "3ede261f-d826-59bd-95d0-0e51f4099e0f", "text": "green cyborg, with letter SB on chest lighting in green, 4k, realistic "} +{"id": "1006310", "video_name": "7375bd31-01f8-5c6c-9aa4-83169c7b8a73", "text": "front view portrait Fashion model girl with white hair, wearing a tartan knitted balaclava mask In the style of comme des garcons, red, green, yellow check fabric, very layered, arranged by Comme des Garcons "} +{"id": "1006044", "video_name": "6f03989c-4462-56cb-8083-e309a4bb918b", "text": "girl walking, grass winding, sun rising, pixar style animation, ultra hd "} +{"id": "8001407", "video_name": "259aec01-2feb-54ae-a1fa-ccbeade8dd4c", "text": "two people flying over an ocean of orange juice "} +{"id": "6004491", "video_name": "8c0fa143-a545-5771-acb3-451057dcbe71", "text": "Keanu Reeves looks into the camera "} +{"id": "2006105", "video_name": "225bda9c-964d-54f7-b14e-2a2358a6de49", "text": "back view of woman, dark skin woman walking, a very good figure, wearing dress, walking on city street, nighttime, lonely, fantasy style, cinematic render, "} +{"id": "0003841", "video_name": "4467c969-9b6b-5369-8f1b-cfef5afcf284", "text": "Make a smiling video of Gautam Buddha "} +{"id": "0005983", "video_name": "24635e90-457e-5cd8-96ca-3a1073933249", "text": "mint and coins press old fashioned "} +{"id": "2003371", "video_name": "d917660c-3329-5394-827e-d40cb0ba6df9", "text": "Leader plans and looks at the map "} +{"id": "4004654", "video_name": "c2cf4d9e-81b4-5961-ac08-273ea167036f", "text": "walkthrough through the foggy and mossy deep woods "} +{"id": "0004214", "video_name": "0519438a-11e8-5736-b98e-176ff62d9d21", "text": "a boy with blue hair and red eyes drawn in pencil meets a friend, communicates a little and then goes through the forest "} +{"id": "4002664", "video_name": "72ad78ae-32e0-5336-b5ca-bffe34420e63", "text": "The boy playing football in the heavy rain is smiling "} +{"id": "5001575", "video_name": "be8f53e2-e681-54de-9acb-1849322b39aa", "text": "A man run on mountain with dog "} +{"id": "2003309", "video_name": "5a7de5bc-e10a-5c11-bebc-ea66d4548e55", "text": "anime scene where a person watches a aquarium "} +{"id": "6003408", "video_name": "b4787942-c4c4-5134-8d26-973e73015875", "text": "Pixar, cuteness overload, Cute and adorable cartoon fluffy baby calico cat, fantasy, dreamlike, surrealism, super cute, trending on artstation, art by John Wilhelm, Medium: old film grain, tetradic colors, smell of beauty, golden hour, rust style, vantablack aura, golden ratio, rule of thirds, dark cinematic lighting, magical realism, poisoned complementary colors with deep focus bokeh background , sf, intricate artwork masterpiece, ominous, matte painting movie poster, golden ratio, trending on cgsociety, intricate, epic, trending on artstation, by artgerm, h. r. giger and beksinski, highly detailed, vibrant, production cinematic character render, ultra high quality model "} +{"id": "3003395", "video_name": "aff2bc52-b1b8-58f1-b87e-18f3354cc5b6", "text": "repressed and brushed off during childhood, cinematic, detailed, 4k, sci fi lighting, ar 9:16 "} +{"id": "5001668", "video_name": "53a22b5f-be27-52a1-adb8-6124b4290743", "text": "a book of math so sad, in a cartoon style character "} +{"id": "2004330", "video_name": "98f4038f-3464-57bb-888b-5c2ab38ad19c", "text": "small bridge made with mud and clay washing away in water , cartoon animation "} +{"id": "4003833", "video_name": "efdfd39c-1d58-5f49-ba2c-f30bd67c4762", "text": "father with daughter walking by the biggest street with biggest skyscrapper future time 20 second video "} +{"id": "1005128", "video_name": "5e900b3b-ff5e-53c1-b501-3e31450b49f2", "text": "boy playing the piano looking out the window at the sunset "} +{"id": "0006397", "video_name": "2bd3c57f-78d0-5a42-94be-9a879e9952f5", "text": "a boy sitting in a car realistic cinematic 4t frame 16:9 "} +{"id": "3005163", "video_name": "6baa013c-adfe-544e-82fe-ae5dea0d076e", "text": "steak being cooked on a barbeque, Closeup, slow motion, fire everywhere, salt being dropped on the steak, people in the background, "} +{"id": "2004680", "video_name": "0797db8b-04b1-5c39-9e54-df55fb304fe5", "text": "cinematic of a dying tree and an overcast day, add a family watering the tree, the tree grows green leaves and the sun starts to shine. "} +{"id": "0003145", "video_name": "38075aa0-6def-5d1e-a4ff-30ee095ab39b", "text": "saturated image of an old man , in a tavetn inthe year 1834 "} +{"id": "4004481", "video_name": "60a49709-7aed-5e7e-a7a1-eb4555013d46", "text": "tv flickering, a little boy sitting in front of it "} +{"id": "0005804", "video_name": "21806133-2483-51bd-8799-b9c24d8a4de3", "text": "children making paperboat in rain and playing with it,realistic "} +{"id": "7004831", "video_name": "d43217f5-ba92-50b2-ac95-cd499f3752cd", "text": "close up of a anime drone flying fast and high through a cyberpunk city at night. Neon lights "} +{"id": "8001256", "video_name": "9f9c8bb6-744e-5a5c-a50d-5204605b56cd", "text": "beautiful woman with brunette hair wearing a white opaque corset with a long flowing skirt looking out onto a field of depravity "} +{"id": "3006425", "video_name": "f51cd056-978c-527f-99fd-9d87e1db7ec5", "text": "All the members were sitting at their respective places. "} +{"id": "3006474", "video_name": "8a16f484-2951-5c0f-a652-ce066f84c4ee", "text": "a beautiful mermaid under the moonlight "} +{"id": "6004519", "video_name": "653f997b-c6b5-58ff-bb24-04bfb331654d", "text": "a 30 second video that depicts the processes involved in pcr "} +{"id": "6004212", "video_name": "e3e7d372-ca7c-5ad0-90db-83f0e407b2af", "text": "rainy day, raindrop on the window, realistic, high quality "} +{"id": "6002614", "video_name": "40bf82fa-55b4-57e5-9c61-8b49475ed2be", "text": "make a front entrance of a car dealership and at both corners of front of store are two palms trees with green turf grass around it and on the side of the building is an area with turf grass that if 40x 40 ft "} +{"id": "2005289", "video_name": "1c6bdfe0-273e-542b-9815-8f06e7bba9a6", "text": "A giant dragon sitting in a snowcovered landscape, breathing fire. "} +{"id": "1005095", "video_name": "5e01c717-0430-5df7-96a2-d78770ef3543", "text": "On a rainy day, a girl stands beneath an umbrella, gazing up at the sky. "} +{"id": "0003161", "video_name": "385866e9-c488-5477-8413-6daf65ea8528", "text": "hawaiian surfer at sunset getting turned over by wave "} +{"id": "3003403", "video_name": "f356d1a9-b747-5f4e-9f5c-09353d614045", "text": "a heartwarming moment of Boy and Girl reminiscing "} +{"id": "6003512", "video_name": "4984cc24-7141-5db2-8e2f-b2888dd99ae3", "text": "Fox in a florest cinematic 8k HD "} +{"id": "4004469", "video_name": "91e1374e-fa19-5365-a241-2bd951a3d5dd", "text": "a loop animation of a pitfire, watercolor painting style "} +{"id": "0003427", "video_name": "3d5c7f4d-47a6-5c0f-af35-c4d26ca31657", "text": "Macaques damage doors and windows to break into homes. "} +{"id": "1003978", "video_name": "49743c2c-c7d7-5685-a2be-1c86c16efd5a", "text": "1960s school desk with text books one of the text books opren "} +{"id": "0003045", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "sharing in social media in cartoon "} +{"id": "0004535", "video_name": "0ac569f6-cd96-5e6e-bff1-cd45d1fc34c2", "text": "fireworks in the background, night, beautiful woman back facing viewer, half body wearing street wear, celebration "} +{"id": "3003872", "video_name": "60f72269-a54b-5765-ae41-b50d95c9023d", "text": "A room where human children and robots are talking "} +{"id": "7003810", "video_name": "b0847e4c-4a95-5415-9a29-b0332759a0c4", "text": "hunter eating rabbit in jungle with river and mountain. "} +{"id": "0003044", "video_name": "36001929-3913-5e4c-b739-6f2c3823122e", "text": "an image where a dog sits under a christmas tree "} +{"id": "2003721", "video_name": "e46c1caa-69db-5750-a2c0-da05fed2bdeb", "text": "Several people cooking tea around the stove, anime style "} +{"id": "2004081", "video_name": "5005efdc-a9e2-5193-bd6d-a42bc894a492", "text": "indian city mumbai railway station night background scenes "} +{"id": "0003244", "video_name": "39e6d849-1f9a-5559-a5cb-08ba678d6189", "text": "darth vader with backgroud of ray "} +{"id": "2005658", "video_name": "705f73e1-2362-5acb-ac32-a081f8535ae7", "text": "soldier crying in pain, scene from world war II "} +{"id": "0004637", "video_name": "0c63b763-25a9-5d74-a615-a0793c436e5c", "text": "Create a chibi cartoonish image of this 3d game character Message: 1 Attachment "} +{"id": "1003763", "video_name": "4558aecf-6f88-5de7-ae02-9ed74a83dc50", "text": "wizard in red robe and red hood reading a book in a library "} +{"id": "0005870", "video_name": "2299b75b-f39e-5072-afd6-ec04c36f9a4c", "text": "Generate a video about software with a company logo with a cloud and a drop "} +{"id": "6004195", "video_name": "6fdd4f0d-cfb6-5220-ac72-68d93add25d3", "text": "a small cute animated 5 years old boy going to school with mother happily in excitment "} +{"id": "0005503", "video_name": "1bf22076-06fb-58d1-bef2-d6c18f88e1c7", "text": "edit this picture to look sophisticated "} +{"id": "7004682", "video_name": "4edf79f4-849f-570b-85cc-b2a3d2ca3d7b", "text": "A group of tanks is driving in front of Tiananmen Square in Beijing. There is a person blocking the front tank in front of the tank. "} +{"id": "3005512", "video_name": "e63f5400-1dbc-5a0b-8472-b35b01c4c86f", "text": "realistic young blonde woman, 1700 seafarer clothes Message: 1 Attachment "} +{"id": "3005648", "video_name": "45fbccec-8269-5a09-a128-8317fe776e15", "text": "as I look from the window to the Bosphorus, I am carrying my baby girl in my arms at the moonrise "} +{"id": "2004732", "video_name": "647bd1a4-5f62-5ef7-b050-1d2705ca4e17", "text": "sibylla queen of jerusalem in deep meditation surrounded by lights "} +{"id": "1003781", "video_name": "45d607f1-98d8-5890-9723-46cd33de2fdf", "text": "new year in your life or in bottle of the future Message: 1 Attachment "} +{"id": "8001288", "video_name": "b0061f9c-fdfe-5b02-a050-796113eef1fa", "text": "Create an engaging and informative article about the mesmerizing world of the sea. Share interesting facts about marine life, breathtaking underwater landscapes, and the importance of preserving our oceans. Highlight the beauty and diversity of marine ecosystems to inspire a sense of wonder and environmental consciousness among your readers. "} +{"id": "3003799", "video_name": "250789c0-214a-576a-b746-7d79fcc1b425", "text": "Fractal art of starry night in the style of alcohol ink, mosaic, black light paint "} +{"id": "5001449", "video_name": "e96df7a6-1eaa-59b4-ae94-81badd78db40", "text": "person reaching out to grab a generic soda can, festive background "} +{"id": "0003060", "video_name": "364d556b-b220-5658-a22a-d0b2860fba4a", "text": "fans in a football stadium Message: antonio (Font: MODERN) "} +{"id": "8001761", "video_name": "3826684a-6920-59f9-ae06-d46773272469", "text": "giant snake fighting giant gorilla in a lagoon "} +{"id": "2005793", "video_name": "494d4979-4261-5bb5-8228-d88cd73791fd", "text": "3d cartoon rain from the sky on the people "} +{"id": "2004233", "video_name": "f1d96271-c72a-572f-95f8-dff88f504c94", "text": "cinematic sharp focus samurai darth vader "} +{"id": "4003339", "video_name": "63268d5c-e0e3-514b-9361-63bb6323598a", "text": "a sombrero posing as a birthday cake "} +{"id": "5001551", "video_name": "233a3b0a-fe47-5b69-8b3d-4fd4a823516b", "text": "alice in wonderland chatting with the rabbit "} +{"id": "4003193", "video_name": "522e94fd-f096-5f57-a3d5-2c0efaf73aeb", "text": "create a photorealistic cinematic scene shot by Steven Spielberg of the inside of a cave tunnel with a 2feet deep water "} +{"id": "6004575", "video_name": "e322483c-2bc6-59f7-8e02-788da9bead4f", "text": "A 1989 Minsk 125 motorcycle drives along a country road on a sunny summer day "} +{"id": "4002979", "video_name": "1d79d15e-76b3-5d86-92d4-601d47ecaa52", "text": "Outer Core: Below the mantle and extending to a depth of about 2,900 to 5,150 kilometers (1,800 to 3,200 miles) is the outer core. It consists of rocky materials subjected to high pressure and elevated temperatures "} +{"id": "7002608", "video_name": "3db31bfb-4fa9-5826-9d29-2258aac08235", "text": "a pair of basketball sneakers using a theme disney, zoom in, "} +{"id": "3003753", "video_name": "f0f046a4-dbe3-5eb4-9009-7cdef1b594dc", "text": "Burning trees in the forest at night Message: SEVA (Font: MODERN) "} +{"id": "8003182", "video_name": "e99fe2ed-59db-505b-a59b-02bff9887f1e", "text": "This lesson given by mother touched the heart of Ishwarchand Vidyasagar "} +{"id": "1004399", "video_name": "51545cee-f6ca-509e-9a25-b8e7e22ac0cb", "text": "flaming angel warrior holding a sword in the clouds "} +{"id": "6004394", "video_name": "aedbcc77-741c-5762-bdab-aa1a1fcf9e43", "text": "Along the way, they met other animals who joined their quest, including Eddie the elephant and Lila the leopard. "} +{"id": "5001910", "video_name": "a405cf9f-fd7c-5145-abce-731c632849ef", "text": "Did you know that pineapples are actually part of the bromeliad family? Learn more about this unique connection "} +{"id": "2005215", "video_name": "9441811a-f284-5e2d-a5f3-1f0cbcb5828f", "text": "Persian palace with a Tajik beautiful princes 4k, 16:9 "} +{"id": "0005113", "video_name": "14f39c51-77f4-5a98-9905-831b36266571", "text": "harry potter talking with the durslay under the rain, with and unbrella which silhouette outline is glowing "} +{"id": "2007690", "video_name": "d5613e72-51c7-53e6-accc-c9fde4272c6e", "text": "sustainable and green city, climate change is over, renewable energy everywhere, a better world "} +{"id": "3004872", "video_name": "6c6eee51-bc99-595d-a1f3-2fa9e8c8530e", "text": "Scene 1: First Meeting Raj, a handsome boy, works in a book store. "} +{"id": "7003294", "video_name": "e5a6abd6-692c-5add-826f-f9b583117bd5", "text": "drone flight over a purple forest, 4K "} +{"id": "4003157", "video_name": "fd26fdff-97bd-54c0-9b92-e309dd7374d7", "text": "a beautiful women drinking wine and smiling in a garden full of flowers "} +{"id": "1005859", "video_name": "6bde2588-2aa5-5030-8d38-4c8ab58a8593", "text": "earth covered in smog, honking dirty cars producing dark smokes to the air and people wearing masks. "} +{"id": "4002760", "video_name": "ef561e8e-37b4-591f-8062-666d473ea189", "text": "winter and huge snowflakes swirling in the window view "} +{"id": "1004304", "video_name": "4f8d829c-ec8c-56ca-9df3-8b3b1fa014ba", "text": "short film about the evolution of a lizard from birth "} +{"id": "3005493", "video_name": "5d17036a-2320-551a-8e15-71991d955245", "text": "I want the picture to be lively and moving. Message: 1 Attachment "} +{"id": "7002740", "video_name": "e66cc6af-4fa0-5e3b-a22d-0500c9c680e8", "text": "stars are flying from the boy\u2018s hand "} +{"id": "4004553", "video_name": "ec36f7a4-a6a9-5246-9ecf-d8273a664337", "text": "a red guitar on a beautiful river bank "} +{"id": "4002522", "video_name": "52405d02-8229-5c2a-baa8-c329fc952bc7", "text": "sooty shearwater flying in japan, watercolour, cinematic "} +{"id": "2003610", "video_name": "ddb8320b-c40b-5f75-921c-6f23f2aec287", "text": "A green seahorse in a biker jacket is being chased by a giant eyeball with arms and legs though out the dazzling multi colored lights and moving parts of theinner workings of a giant city sized pinball machine "} +{"id": "1005537", "video_name": "65e5e36c-3865-5090-8243-c8fd1528b99a", "text": "super 8 film kodak colour footage of winter trees in the mountain and frozen lake "} +{"id": "3004062", "video_name": "c919e607-04bf-52ed-b6b5-41fbc7e5252f", "text": "stop motion video of man in the tunnel without emotions. Lenght 30sec "} +{"id": "2003648", "video_name": "7553e76e-8181-578f-8f4f-c08d7f73f147", "text": "A middle eastern young man watching and smiling for thumbnail with oil field in the background, 4k "} +{"id": "3004072", "video_name": "b132b5fe-db6a-5836-8168-4a623e376c77", "text": "a princess is talking with a frog in a forest. "} +{"id": "1003652", "video_name": "433f5b3a-da5b-51ff-b9e5-c7cce2c61df0", "text": "harry potter beats Trump at the gate of white house during christmas eve "} +{"id": "7004367", "video_name": "ccdb0352-c2c5-5231-9e58-068ad97bb179", "text": "a A car running away from a dinosaur in a forest with many trees, clouds and lightning HD details movie scene "} +{"id": "1005637", "video_name": "67a18eee-14c0-5bfb-94a4-4c7afbee66d8", "text": "A video beautiful places And Duration was 1 Minute video "} +{"id": "1003248", "video_name": "3bcab2ec-ac3e-51e0-9bfe-67ac2108790e", "text": "a drawing of a restaurant with pencil and paper only "} +{"id": "3005673", "video_name": "266291dc-23bf-5c25-8b4e-277736bff43f", "text": "alien flying over the city of Balneario Camboriu in Brazil, ultra realistic 4k "} +{"id": "0004322", "video_name": "0715044d-2dcd-57cf-92de-8f09697b9d8d", "text": "A photorealistic 8k photo with a sunny beach with palm trees and umbrellas. The sky is blue and the sea is calm.\nAlice\nA young woman with blonde hair and green eyes. She wears a red swimsuit and sunglasses. She smiles and holds an ice cream in her hand.\nBob\nA young man with brown hair and brown eyes. He wears a blue swim shorts and a straw hat. He winks and holds a surfboard under his arm. "} +{"id": "4004673", "video_name": "726b3857-d6af-56b6-8010-157a6c4bc8d3", "text": "ZhaoYun is a hero in Sanguo Time\uff0che is riding a horse, on a hill,he is holding a chinese weapon "} +{"id": "2003297", "video_name": "c2ea6aed-65c9-5ee5-b39f-163b34742e2b", "text": "guy with round glasses doing EdTech with AI. The guy is moving "} +{"id": "3006193", "video_name": "d298edb0-9130-54f9-97f1-d16eb8d3e4e1", "text": "A sterile, empty room with stark white walls and a single fluorescent light that barely illuminates the space. The emptiness is palpable, and the silence seems to echo in this photo of the backrooms. "} +{"id": "2005984", "video_name": "8c8754be-c231-5949-9b94-9bbc8c344081", "text": "a cult doing a ritual, red illumination Message: ideas siniestras (Font: MODERN) "} +{"id": "7003155", "video_name": "a95d51aa-1e94-57c8-9cf9-d634db1785af", "text": "a girl bothering a boy at school "} +{"id": "7003352", "video_name": "61e03858-04f2-5b1a-9323-dd9b859f4ab6", "text": "He went to the laboratory that was equipped with advanced tools. He saw a machine that looked like a large tube. Inside it was a laser that could produce light of various colors. Across from it was a screen that could display the time and distance traveled by light. Next to it was a computer that could control and record data from the machine. "} +{"id": "1005446", "video_name": "6419ba84-d7b5-57e8-af2f-9b6220366b11", "text": "one little elephant dancing in the jungle 3D "} +{"id": "8002021", "video_name": "7fe696d6-8f1b-56c3-ab66-3bfb37d98a2e", "text": "couple walking roses swaying stars twinkling "} +{"id": "5001451", "video_name": "985b738e-8498-58c6-88cb-81db19328b5a", "text": "1950s super 8 footage of a psychedelic cult sacrifice, blonde girl "} +{"id": "7002602", "video_name": "46535a08-8a17-5460-9f1c-77e982986cf2", "text": "Play jump It shows Ethiopian rural children playing "} +{"id": "0003341", "video_name": "3bef8401-da1f-5196-b644-c4ce25ec24ba", "text": "a cute rendition of the sun, spinning in place until it explodes violently "} +{"id": "3004355", "video_name": "7b4f1960-773e-55e4-8129-0cd4da2951d5", "text": "One moonlit night, she ran away from her home and ventured into a mysterious rainforest nearby. "} +{"id": "1006846", "video_name": "7d1adabc-0844-555d-8961-8991dd70b40a", "text": "ablo Escobar holding an ID card on his hand, smiling and smoking a blunt, night vision shot, neon glowing spider walking on his hand, dark ambience, VHR style, movie scene, cine lightning, 8k, realistic "} +{"id": "4003279", "video_name": "93db2d3a-22b9-57d3-b54a-e1ea8dd5b782", "text": "The moment an aircraft carrier is sunk by a nuclear weapon "} +{"id": "1005643", "video_name": "67bafdbb-6181-577c-9a64-a42fb59e633d", "text": "postapocalyptic abandoned city Message: STEAM (Font: MODERN) "} +{"id": "0003047", "video_name": "3611012e-7e58-58db-915a-c9887c993aba", "text": "a jar of cannabis with a french flag "} +{"id": "3004570", "video_name": "8fb17493-96a4-5a16-8b62-6bb6b88f4a91", "text": "Taylor Swift floating above an island in the sky on fire "} +{"id": "1006154", "video_name": "70b40024-e2a9-5714-b0f0-e5f200d16c56", "text": "a 4k ultrarealistic photorealistic seaview mansion, during slightly cloudy evening and sunset. The house is made of light stone with red roof. The sun rays are reflecting on the window glass. The wind is slightly bowing palms near the house. Everything is in warm tones. Calm and comfortable. "} +{"id": "6003612", "video_name": "3f494f31-635e-5d7c-a097-1b2e761d834e", "text": "A tranquil village nestled between rolling hills, bathed in the warm hues of a setting sun. Birds chirping, children playing, and the gentle rustle of leaves, Studio Ghibli "} +{"id": "2005458", "video_name": "1429f30e-55d1-5c04-8b22-f84a678a12b8", "text": "A man sitting on the floor in a dirty basement tangled in chains drinking water. "} +{"id": "7003719", "video_name": "a4c3b290-e299-5ff8-9d45-26030955aed6", "text": "the door on the lake, 5 seconds "} +{"id": "1003426", "video_name": "3f58ac48-4a51-586e-ae17-4ad44eda1e5e", "text": "Horror Creatures:\n\nEnvision shadowy figures lurking between the trees.\nCreate descriptions of terrifying creatures like menacing eyes, elongated limbs, and unnatural movements. "} +{"id": "2003498", "video_name": "23af2ee0-93a3-5402-8a89-f199d5bc6092", "text": "a viking character is drinking beer from a wooden cup, in the style of cartoon realism, grotesque caricatures, animated exuberance, high detailed "} +{"id": "7003838", "video_name": "b307332f-46de-5629-99d8-7e564799b50b", "text": "lightning starship seas, storms rotating, gyrating, futuristic pirates "} +{"id": "8002336", "video_name": "ee25766d-6db2-579c-9638-af499e9ccc2d", "text": "a chinese guy writing his paper "} +{"id": "1004103", "video_name": "4bf48050-bd3c-5556-ab4c-6a6ee941759c", "text": "female close up, piercing green eyes, glowing green "} +{"id": "0006557", "video_name": "2e9f19d9-9e82-56fa-a1d2-d52e85e81227", "text": "ufo, abduction, Lapland, Finland, snowy landscape, daytime "} +{"id": "4004242", "video_name": "a94d2dc1-600c-5c63-80d7-ca45c3dd1035", "text": "Sri Lanka President Ranil Wickremesinghe as T pose (without background) "} +{"id": "0006211", "video_name": "287be44f-a7eb-504f-a714-63cd2cbc2cff", "text": "Create a short story about a skilled driver showcasing their precision and control as they navigate a challenging drift course in a blazing red Ferrari. Ultra realistic "} +{"id": "1004904", "video_name": "5abe654c-84b0-5bad-b12a-d9eb7e8e4077", "text": "cat attack on aquarium fish. picture zoom out "} +{"id": "3003921", "video_name": "0e8d0f94-0da7-56bc-83f5-a7259a460db4", "text": "Create a scene depicting the beauty of the universe and the existence of the One and Only God. Focus on natural elements like the sky, stars, mountains, and other elements that convey the grandeur of creation "} +{"id": "3004667", "video_name": "3f78ab87-73ce-5779-a7f9-7fd7f971039c", "text": "a monk praying near a river in tibet "} +{"id": "2004268", "video_name": "19838048-daf0-5622-9d40-b09d8d751658", "text": "two cats boy and girl adventure take the boat "} +{"id": "8002505", "video_name": "a60a50d1-3d38-54b0-98f6-77413e7fc348", "text": "Charles Melton in superman suit flying in the savannah among giraffes "} +{"id": "7004461", "video_name": "bcb57277-4215-584b-a21d-a0a9b774c0b0", "text": "create a tumbler logo named thermotech "} +{"id": "4002388", "video_name": "b9af397a-73ca-54ac-bdf6-91a71c16512f", "text": "an ant found a grain of sugar. "} +{"id": "0004041", "video_name": "020d71a0-9c58-5d59-bb9d-d0f4e5257441", "text": "international geoguessr competition in a tiny room "} +{"id": "2003116", "video_name": "82a3be4b-3145-5e76-9bae-ce705bc7c62a", "text": "a man turning into a werewolf in the rain, super 8mm film footage "} +{"id": "1003367", "video_name": "3e094ac3-0853-5d4c-a4fe-67ff09f6a058", "text": "1 minute video of guy playing basketball "} +{"id": "4004853", "video_name": "4a703257-0abe-5c26-8fc7-14e5eda7fe86", "text": "looking at the Pyrenees from the bottom during red sunset "} +{"id": "0006148", "video_name": "27565574-6edf-5a4d-b737-009e032fa036", "text": "the dark brown fox standing in forest in a victorious style "} +{"id": "8001913", "video_name": "ade72c02-051e-5570-b552-3399a44eeaa4", "text": "a kiwi fruit, on a green background "} +{"id": "7003869", "video_name": "69dd14cf-9b35-5920-9f06-e73217baff2c", "text": "create a human face made up of stars in space, expressing yourself "} +{"id": "2003634", "video_name": "082751a8-7e13-599c-bb1c-4d0020bd1810", "text": "Open a closed door, magic style "} +{"id": "7002316", "video_name": "c7169549-b0f6-5769-aa5c-02c08c492ce5", "text": "light trippy lsd visuals, 8k, premium colors "} +{"id": "8001886", "video_name": "c08af97b-7019-50d1-978e-247bef32362a", "text": "Underwater scene of octopus passing past the camera "} +{"id": "0004619", "video_name": "0c0974ad-2474-5a3b-91ce-54efe30ade44", "text": "Live concert within the Fortnite video game Message: ADOGRX (Font: MODERN) "} +{"id": "2006317", "video_name": "751d75fb-4982-5451-8ad2-5acc74fa3bd9", "text": "he formed a new alliance with Mark Antony "} +{"id": "8003620", "video_name": "18664546-2fab-58fb-8984-b8658f616c61", "text": "shadowy figures in a small isolated Yorkshire town in the 1950s , fire burns buildings in the background , 1950s camera lens "} +{"id": "2007870", "video_name": "57d9f9e0-f15a-5315-8d2f-fb84d7e379f9", "text": "in a clothing store woman looks in the mirror looking at the clothes she is wearing "} +{"id": "0004946", "video_name": "120829a2-9060-5ffb-9491-31cad6e6c65a", "text": "turtle Terry helping a ladybug cross a path, with other animals cheering him on. "} +{"id": "8003042", "video_name": "c3ceda4c-3967-5742-9ba5-8eb6392535b9", "text": "Imagine an urban park in 2023 where holographic flora and fauna intermingle with real plants, blurring the lines between nature and technology in an unexpected way. "} +{"id": "7003581", "video_name": "e08b363c-54af-5017-bc95-97470f8c195e", "text": "a girl walking towards Tumpak Sewu Waterfall, animated 4k "} +{"id": "7002249", "video_name": "f4e67f44-f786-5f98-b933-ef8adc754b60", "text": "ghost in front of the old house have bigter behind we ind blowing "} +{"id": "0003112", "video_name": "373fa323-f8c2-510d-9265-721471ab3968", "text": "Ayaan and Amara sitting on giant scoops of ice cream, each with their favorite flavors. "} +{"id": "1003803", "video_name": "463e31de-d88b-5608-bdc7-171febffe4d8", "text": "Dinosaur running after a person who is also running into a forest to hide. 4k rendering. "} +{"id": "0005367", "video_name": "1999150c-92c8-5c7f-afb0-608b8f4e9c56", "text": "Record Pujari persist wearing white cloth performing the ritual with incense, chants, and holy water. prompt: "} +{"id": "2006957", "video_name": "476dafa1-a0da-552b-8719-5fb684039426", "text": "make a batman who walks in the night with robin "} +{"id": "8003090", "video_name": "957a4d4e-1476-5626-be2f-1702b819df98", "text": "Sultan Ahmed, always eager to encourage learning, welcomed Yusuf and granted him access to the library. "} +{"id": "6003082", "video_name": "0446fbc4-9dc6-5244-9d63-8337323cb266", "text": "media,reporters and journalists at a city hall in the middle of a gothic city (cinematic) "} +{"id": "3004908", "video_name": "05461c73-7d06-51e4-acc2-a13a2869164f", "text": "floating body wearing white briefs in a well lit room in the style of Wolfgang Tillmans "} +{"id": "8001682", "video_name": "b531e57f-ed3d-59e9-aae2-a45e9b9d2f1d", "text": "a lovely girl walking with umbrella,walking in the snowing "} +{"id": "0006758", "video_name": "32865cab-72ae-5941-88c6-985187367b99", "text": "Amazon Rainforest Expedition: An image depicting the moment when biologists discovered dinosaurs in the Amazon rainforest. hyperrealistic cinematic 8k "} +{"id": "7004991", "video_name": "2d09899d-838c-5b27-a982-283dc84f207c", "text": "the touches of a piano Message: Aymeric (Font: MODERN) "} +{"id": "7003418", "video_name": "8b9924d7-991e-5171-a739-a585ef1c81ff", "text": "profile picture of a silent hill monster in pixel art style "} +{"id": "4002998", "video_name": "6b8e6e1c-30a3-5c8d-b023-90aadbac206a", "text": "from a bumblebee perspective, a slow wandering flight into a pink flower covered in bright orange pollen. 7 seconds, high definition, "} +{"id": "1006052", "video_name": "6f1fa4e2-7ca0-56a6-8ad4-0e2c200d02e8", "text": "the door, it swung open on its own accord "} +{"id": "6003766", "video_name": "344e54ca-f768-5b0a-af7c-668f44b29be6", "text": "the company plans to expand this platform into a diverse portfolio of turbine "} +{"id": "7003753", "video_name": "01393ee1-018c-58da-b3f5-0d76991118a3", "text": "ghost following a person suddenly runs away "} +{"id": "2006374", "video_name": "49795a10-62c9-5aee-a52a-8e0c265ce9e0", "text": "a colorful paint dust explosion, particles everywhere "} +{"id": "4002305", "video_name": "57ca05e1-6541-5f1b-9d51-c4d4b76d0523", "text": "hyperrealistic Santa Claus makes thumbs Up, ,cool modern GTA Style, Victory sign "} +{"id": "6002819", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "haunting hpuse in living room , at winter with Foggy weather, scary house , horror scene "} +{"id": "4004663", "video_name": "2746b943-addf-5984-96f5-ca6edda9d7c5", "text": "Darth Vader surprised on his birthday "} +{"id": "3005982", "video_name": "d3d63216-02ea-5a65-ae8e-5b03f6bf8126", "text": "3d, beautiful bold indian girl dancing standing in desert "} +{"id": "0004883", "video_name": "10db8c9f-a8d4-5cb6-9dd6-e5ec155d9c62", "text": "A beautiful woman came up to me "} +{"id": "3004845", "video_name": "b38737e9-d053-5af1-a716-83ed2d4f0887", "text": "futuristic city decorated by artisans of the past "} +{"id": "3005735", "video_name": "73946a8c-15bd-566b-887e-d6eea127ed98", "text": "a man in pirate outfit with his head hanging, leaning against a rock at a fork in the road "} +{"id": "2007345", "video_name": "2020592d-8c7a-528f-a9e7-641548ecba30", "text": "a village with mud road, mud house, ponds and sunrise , birds flying, coconut tree, a man is sitting under the coconut tree, in art animation "} +{"id": "2007792", "video_name": "ebb94c06-c544-5d97-bf5f-35499b595498", "text": "dogs and cats are around Santa "} +{"id": "6003091", "video_name": "7fc9bcaa-fedd-5d57-ab73-078a67152ded", "text": "aerial view of a megalodon breaching the water in the middle of the ocean "} +{"id": "1004832", "video_name": "5950b7b1-2457-5877-b914-68e4e3de618c", "text": "disney style tower with clock showing 12 O\u2019clock "} +{"id": "0005482", "video_name": "1b8cb9c2-2ca3-59d3-b2d9-bfb7eb158338", "text": "A young boy named Billy wanders aimlessly through the dense African bush, his clothes torn and dusty. His face is etched with fear, and his eyes dart nervously around, searching for any sign of safety. "} +{"id": "5001423", "video_name": "d9c7f5ae-3e60-5259-9971-b4f246993045", "text": "Explore the intricate details within the microbiome, bringing to life the microscopic wonders that contribute to processes like digestion, nutrient absorption, and immune system development. "} +{"id": "4004151", "video_name": "c1f8d14c-823a-5402-9cde-be65106f3330", "text": "a beautifull young women in black dress walking on street back to camera "} +{"id": "6002057", "video_name": "7b952d2e-ccbc-5e97-83a0-674bdaea3ab2", "text": "A little girl buys matches for Christmas "} +{"id": "3005308", "video_name": "7ffb25c7-ed4b-5cf7-927c-5b8f5ce20f98", "text": "generate me a tiktok about a company that creates smart furniture with audio in Spanish and with a duration of at least 30 seconds "} +{"id": "1006359", "video_name": "7477d4df-cf14-5c49-9cb9-41a2e5f16f4a", "text": "Imagine a futuristic scenario where a computer and DNA collaborate. Depict the process of storing digital data in DNA with a touch of humor "} +{"id": "0004172", "video_name": "047cd22d-7955-5e3e-81e2-2045b49f74e0", "text": "a man at the platonic form of a small wood shop "} +{"id": "8003880", "video_name": "41411c89-92eb-5004-a247-35a4826cc30d", "text": "documentary from 1980 about faerys in south america. The color are softs and style is vintage. VHS "} +{"id": "6003815", "video_name": "1a631d01-3059-5ca5-bd14-f94bae0dc1d1", "text": "3 super model walking with jewelry "} +{"id": "1006101", "video_name": "6fe8879d-c7be-5c13-b86a-970b27e260a2", "text": "animation relevant for IT services and search engine optimization. "} +{"id": "5001200", "video_name": "2e069f31-29ac-5ed0-a06d-08ed7e4ac3ab", "text": "One on one Epic anima style fight scene with super powers. Fighters getting hit hard and crashing through mountain. Ending with dualing beams trying over power each other. in the style of dragon ball z. "} +{"id": "1006865", "video_name": "7d50f49e-ba67-5b22-ad91-397ea39931a4", "text": "Lily and the magical broom observing the positive changes. "} +{"id": "4004761", "video_name": "a1573481-8526-52b1-91ba-2f1e29e306f4", "text": "So I took out my mobile phone and sent a WeChat message to my roommate: Dear, stop making trouble. Hollywood thrill movie style "} +{"id": "6004522", "video_name": "6f95e922-c5a6-5af1-9e8f-e616b953062d", "text": "computer code running on a futuristic glass ball floating in a dark room "} +{"id": "1005022", "video_name": "5ce7389a-4d2f-5899-aa4b-3d18ab0765e5", "text": "He went into the woods on the outskirts to camp with his friends "} +{"id": "3003385", "video_name": "ab337da3-4adf-5ea8-a253-a77ffdf95739", "text": "A friendly octopus with a clipboard, organizing the sea animals for a group photo, with smiles and poses. "} +{"id": "3006042", "video_name": "12435737-381e-54ff-9048-e7491ac17aea", "text": "person on the beach with open arms, in the style of adventure themed, transcendentalist themes, youthful energy "} +{"id": "0006526", "video_name": "2e170ac7-b09e-548b-9ba6-96f77812afc9", "text": "make a video of how an electric windmill works in the future "} +{"id": "1006917", "video_name": "7e746068-d001-5d5d-9e0d-167662e83eef", "text": "a cartoon 3d disney animation of the world on christmas eve "} +{"id": "7004643", "video_name": "06bc5498-482a-5aeb-baa5-9101e93973f4", "text": "A finnish lapphund dog, isometric 3d, dynamic lighting, intricate detail, summer vibrancy, cinematic "} +{"id": "0006453", "video_name": "2ccd775c-0167-531b-850d-0c307abe6f37", "text": "a beach house built over a seawall protected from the sea waves "} +{"id": "3004073", "video_name": "6b70b3d3-99b7-554c-9f72-ed5879f8faad", "text": "drogon from game of thrones flying in the sky, movement 3 "} +{"id": "4002676", "video_name": "6d5d7af7-bc84-537f-ac04-c2d6eb812caf", "text": "An automated production workshop for mattresses "} +{"id": "4003661", "video_name": "e5e90406-256f-5c70-899b-3d5f71264091", "text": "kawaii little bear, surrounded by flowers and honey. "} +{"id": "7003829", "video_name": "11b6b0a4-1a31-5e45-bb11-5f59f12902ff", "text": "crownd of people waving flag , top view Message: Saurabh yadav (Font: BAUHAUS) "} +{"id": "8003859", "video_name": "a5181af7-7d27-596f-a79f-da92acf2d4df", "text": "Two college students walking to class. The style should look like Toy Story "} +{"id": "4004479", "video_name": "9f113a6c-51b4-5ea1-9a01-ff320f1d7ea2", "text": "donald trump and joe biden fight in a old western styled bar fight "} +{"id": "2007487", "video_name": "83a115ee-0b56-5201-8e5b-df33904d59fb", "text": "The Necronomicon sits on a table in a cozy kitchen. "} +{"id": "3004673", "video_name": "eb2adb0f-6ca7-5b0e-a670-df1173146f85", "text": "In space, looking down on the blue earth through a window in space, deep and mysterious "} +{"id": "3004568", "video_name": "963358c0-21d9-5b7e-8297-622e08f9e1d2", "text": "sugar cube falling into tiny coffee cup "} +{"id": "8002298", "video_name": "20673807-b2a7-5f97-b57d-e95506785a63", "text": "black and white silent film style horror movie featuring nosferatu "} +{"id": "1003539", "video_name": "41469ef4-c48f-59a4-8dee-9871f304457e", "text": "Alex daydreaming in a park or a comfortable spot, wearing a gentle smile while gazing into the distance. "} +{"id": "0004794", "video_name": "0f42f37a-5591-508f-abe0-a34bc8970a8b", "text": "generating video the girl is speaking and telling something one by one "} +{"id": "7002572", "video_name": "ddf52dda-b1c2-5985-b92d-97006d179aba", "text": "conor walton, giga chad capaybara, robert sheehan, robert sheehan, portrait of timothee chalamet, has pink fur, prominent pink cheekbones, robert sheehan, nice cheekbone definition with bunny head ears\nDefault values: "} +{"id": "4003381", "video_name": "b3a06874-59bf-5052-8ed8-96bab046c493", "text": "a magical box opening and releasing a lots of icons of AI "} +{"id": "4002221", "video_name": "ebc46914-b032-5d45-9a22-e7025dce3ed4", "text": "black screen with green code being types in very fast "} +{"id": "1004914", "video_name": "5ae7bead-2e96-54c0-a87f-6c79b8279a02", "text": "realistic video about the birth of a child in the womb from the development process "} +{"id": "0005626", "video_name": "1e54a2a3-c21b-5ce5-ba1a-ce532f4b7fd3", "text": "Mickey Mouse and his mischievous feline friend, Figaro, set out on a whimsical adventure through the heart of their vibrant town. "} +{"id": "1006926", "video_name": "7ea1b0c6-7ba7-5983-9179-055753a1e452", "text": "speach bubble with green screen background "} +{"id": "1003837", "video_name": "46c88890-cee0-56d5-ba0d-5fc32e3e19d4", "text": "Travelers traveling to grand and beautiful nature are moving their bodies. It has a strong natural feeling. "} +{"id": "6002104", "video_name": "45859078-0430-5234-895b-893b4bcee37b", "text": "Morgan Wallen playing guitar with Whiskey Brand 4k, Cinematic, Hyperrealistic "} +{"id": "0003204", "video_name": "3928ce58-f8c2-59fe-893c-0e0a05ba11a5", "text": "grandfather sitting on stairs of indian post office during 90s, slightly crowded, background morning, trees nearby, postman on cycle, studio ghibli style "} +{"id": "1003443", "video_name": "3fd9e3f6-1cb7-577b-8317-d282e962bd51", "text": "In a small town in the south of the Yangtze River, the spring afternoon, the sky is blue, the breeze is blowing, with faint flowers. A wide river flowed quietly, the water rippling gently against the stone bridge along the shore. "} +{"id": "4004462", "video_name": "7c79f965-21bf-5928-ac5b-9daeb809dbf6", "text": "drone footage of Oxfordshire in England "} +{"id": "0005463", "video_name": "1b34ce2e-22c6-5510-b82f-ed5288332b5d", "text": "portrait of hellraiser cenobite in the style of wayne barlowe, gustav moreau, peter mohrbacher, bussiere, roberto ferri, santiago caruso, luis ricardo falero, austin osman spare "} +{"id": "5001680", "video_name": "14c5f985-d961-52d1-a8e2-f7c5af9589ba", "text": "girl walking around the tons of goods, highly detailed, realistic, 2K "} +{"id": "3004361", "video_name": "a6a66ae7-7c3f-5252-b271-48e58ea98429", "text": "fairies united different lights which are throughout from their hand, in air "} +{"id": "7002663", "video_name": "97a6f3df-0562-5807-9833-86a3a6e7f149", "text": "girl blinking eyes and flowers floating "} +{"id": "7003170", "video_name": "62982c39-1de2-5b45-aab4-ea4d9129d0b8", "text": "Messi is race a car with Kobe Bryant "} +{"id": "1004923", "video_name": "5b051034-9df1-5369-852f-26777b2d0f59", "text": "woman who buy online with credit card "} +{"id": "0003362", "video_name": "3c3f4734-9997-51ed-b30b-526340ba2c4a", "text": "a silver coin that\u2019s used for profile picture logo "} +{"id": "7002335", "video_name": "d524630c-ea22-57fc-95fb-32aeebd28a5f", "text": "A woman energetically dancing samba, dancers following her lead "} +{"id": "8002016", "video_name": "f1eb3af8-2e95-5adc-a07d-da1e16f007e1", "text": "CRJ airliner comes in for a landing at an airport "} +{"id": "2006509", "video_name": "210bfeca-ad86-528a-868d-7ae60dda4074", "text": "hares and tortoises gathered between trees "} +{"id": "3006439", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "inside house of marigold flowers everwhere "} +{"id": "7004347", "video_name": "50bd774e-9cf3-54ff-8d70-10b128f1dfaf", "text": "create an image of bone church with dark and gruesome ambiance "} +{"id": "6003610", "video_name": "25c86bb9-15f8-5aed-a2c1-eb5932749a27", "text": "And when they came to Jerusalem, Herod the Great, who had heard this thing, Sent for the Wise Men and questioned them; And said, \u201cGo down unto Bethlehem, And bring me tidings of this new king.\u201d "} +{"id": "2007871", "video_name": "2cb9270f-e33d-5dc6-ab65-837594bf0c40", "text": "The transition takes us from the ancient pyramids to a wide shot of a futuristic New York City. The cityscape is a dazzling display of advanced technology, with flying vehicles and gleaming buildings, photorealistic "} +{"id": "2006688", "video_name": "f07f1b06-08dc-5ddd-b70e-f39e58b9d0e4", "text": "mediveal age town centre with people walking. "} +{"id": "1003199", "video_name": "3ae19a67-80fa-52f1-911c-dba1f8e1bb6d", "text": "a women doing yoga on mars "} +{"id": "7004348", "video_name": "d2a70759-5445-57db-a679-30c5bac4b612", "text": "a android runs away from the data police "} +{"id": "4004135", "video_name": "b70caef8-b3dd-59a1-b1cb-c6dfe0817099", "text": "anime man with white hair, wearing a white shirt and gold chain, anime character cartoon, in the style of studio ghibli "} +{"id": "6003634", "video_name": "0b7d5f8e-d86e-5093-9450-b2995ff31b33", "text": "Add two cups of milk, four tablespoons of honey, and some ice cubes to the blender ar16:9 "} +{"id": "3003101", "video_name": "f2d2ca89-d509-578d-9ad9-cbecaf54f643", "text": "jack ma,the founder pf alibaba ,enjoy life in japan. "} +{"id": "8003007", "video_name": "3b3a12dd-17a8-5b17-89dc-4c91281014f7", "text": "66 spirit creatures weaving their magic. "} +{"id": "1004485", "video_name": "531fb2a5-759b-5e29-902e-5754a1f1d130", "text": "a hyperrealistic rose, realistic light, with dew drops, rotating camera movement "} +{"id": "6002017", "video_name": "fb03eb45-bc0f-5ea4-a0ce-15243dc4baeb", "text": "create a video of a makaji by cik epal with sunrise of beach "} +{"id": "6003874", "video_name": "bbb7b60d-afdb-5579-89ef-a57b444f193e", "text": "woman running away from someone in the room "} +{"id": "3006330", "video_name": "22f9f197-2612-555e-95cf-09a53b0ca6eb", "text": "ETERNITY Message: A planet in space (Font: MODERN) "} +{"id": "4002222", "video_name": "fe297f44-cf7a-5538-866a-346e82309183", "text": "dystopian, man looking at city, cinematic lighting, wide angle, night time "} +{"id": "0005544", "video_name": "1c92ab43-d93f-59a1-8a96-d739889d196c", "text": "a chinese man wearing traditional armor fighting in the battlefiled "} +{"id": "4003973", "video_name": "7bc7c195-e2b3-52e6-bb43-26f6cf3b95b6", "text": "a beautiful underwater coral reef thriving with school of fish "} +{"id": "3005329", "video_name": "de3229bf-b312-5a81-ad75-12454b6fadff", "text": "Marketing icon,Single text contains principle of marketing "} +{"id": "1006610", "video_name": "792cb274-6444-5d32-ae77-7170677f6747", "text": "The terrifying looking giant was defeated "} +{"id": "6003162", "video_name": "fed4c616-aef8-510d-a233-eb8d786893d5", "text": "design a high end electronic backscratcher "} +{"id": "1006638", "video_name": "79ae10c0-60a6-5227-8964-769f2b4098d2", "text": "fly over of planet europa unusual ice formations fast paced flyover from the aerial eye view "} +{"id": "2004697", "video_name": "8611dfb0-f6dc-5c98-bd36-fd95b83b9e09", "text": "A mighty middle aged king is sitting on his throne, ar 9:16 "} +{"id": "7003782", "video_name": "0c13e479-c7fd-5aab-a1e5-163e043ca239", "text": "rabbit dance break dance like Michael Jackson "} +{"id": "6004109", "video_name": "68eb65e6-aaa4-5ff4-b00c-cf1ddf854d55", "text": "A dog running towards a pie in the forest. "} +{"id": "0003624", "video_name": "40b81363-d00b-5aaf-9946-8b3eed76855f", "text": "The face moved slowly, eyes flickered, only hair was blown by the wind "} +{"id": "1006089", "video_name": "6f9c157d-7372-5eca-90ef-a1b07c2fcc99", "text": "mixed multicolor video Santa Claus and gnome flying in a sleigh with reindeer in the sky digital art, silkscreen, colorful poster, colorful background, realistic, high resolution, crystal clear, action, abstract flowing background "} +{"id": "6002802", "video_name": "f2af22af-ee5d-5170-8517-8176d07f1985", "text": "Santa Claus and Jesus riding the sleigh with Rudolph "} +{"id": "4003046", "video_name": "97990e18-4537-5e81-a8d6-7d02399ecc3b", "text": "the market where animals work and sell in the zoo. old vhs film. artistic lighting. The 60s. kinoshedevr. "} +{"id": "0005975", "video_name": "2443f2fe-8d08-5c05-a797-2a4f6be03776", "text": "Dress up cats in Santa Claus costumes and let them meow "} +{"id": "2005870", "video_name": "2787a715-94ca-5076-b8d3-37b65fe09089", "text": "Druze woman and child standing stranded in a desert "} +{"id": "1006143", "video_name": "708db71f-8df4-56ae-9622-b018acb311cc", "text": "A young Asian girl wearing transparent square glasses, fair skin, black straight hair, melon seed face, wearing a white shirt with a pure white background, filmed in real life, with film quality, Nikon D850 shooting, portrait image, lens showing waist above "} +{"id": "8001665", "video_name": "96ff0085-a062-5a79-906b-a34072c869ba", "text": "create video of earth getting dark in 4k , realistic "} +{"id": "1004611", "video_name": "55ce19dc-cff0-51d9-b80f-c3c39d3750fb", "text": "soldiers in the desert, fire, debris, particles "} +{"id": "6002477", "video_name": "b683ebcd-5c25-50b2-bc1d-9fe073aadf68", "text": "a sith holding a red lightsaber "} +{"id": "2006909", "video_name": "c6dd0965-e9e6-5cee-a16e-ab237f205168", "text": "a little girl is reciting the alphabet "} +{"id": "2004080", "video_name": "902adf19-504a-540f-a47d-dd60d8a15f5a", "text": "a dog dancing in the middle of the street "} +{"id": "5001834", "video_name": "46f7ab43-ef23-54c0-a2ce-a8d380183685", "text": "Film a heartwarming scene where Oliver approaches Bella in her nest, offering words of encouragement and support.,ar16:9 "} +{"id": "4002632", "video_name": "838f4464-fa99-5c50-9e78-af6e6e974c7f", "text": "girl in red saree standing behind two boys in corridor scared faces "} +{"id": "3003099", "video_name": "992ecd17-ed36-5d46-9001-f54cdcff4ccf", "text": "Jack is fishing and caught Whale fish "} +{"id": "2005479", "video_name": "607a060b-d5be-5681-87b5-5eea7eac408a", "text": "a person dying from heart attack "} +{"id": "1003043", "video_name": "37e92f0d-7c07-5128-9554-17028e415b17", "text": "St. Bernard rescues mountaineer in snowy mountains. stile 3d "} +{"id": "0006972", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "sharing in social media in cartoon "} +{"id": "8003144", "video_name": "dcb66cdb-9857-5b32-92ea-c10d6b04f26b", "text": "On a dark and windy night, Hua Mulan attacked the Huns and achieved an overwhelming victory "} +{"id": "3004964", "video_name": "42c1a12d-f2d4-5f35-a66b-95ade643ba33", "text": "adult on top of a forklift in a warehouse "} +{"id": "2006725", "video_name": "8af172c9-1865-538a-b55f-9cba11f70d04", "text": "red shadow falls on the disco ball "} +{"id": "3004075", "video_name": "cb82ec1f-049d-5e4a-b659-48cd10466fca", "text": "a girl stands in virtual reality glasses of white and pink color in a cozy room in brown shades in which there is a decorated Christmas tree and a fireplace "} +{"id": "6004748", "video_name": "cdb74084-bcc9-53d4-88d7-80be743efd7e", "text": "a new born baby on his father hand story in 1947 black and white "} +{"id": "6004400", "video_name": "95b95a22-be31-52af-8869-99ebe379b33d", "text": "The Wheel of Fortune: Change, cycles, karma "} +{"id": "3003402", "video_name": "357830e3-6130-5737-b823-6c4878b1b778", "text": "Washed me, scattering rudder and grappling hook. "} +{"id": "6004736", "video_name": "9c55f24d-c517-5fd5-8eae-57f7da356d76", "text": "A girl, surrounded by a snowy landscape, with the wind tousling her hair, as the camera slowly zooms in. "} +{"id": "5001443", "video_name": "3641eb1e-4216-5b94-adaf-36e8a9a89e4e", "text": "The sun rises over a picturesque town, casting a warm glow over the soccer field, anime style, high quality 8k anime. "} +{"id": "1006465", "video_name": "76542cf5-e9a3-5be4-af52-bb1a48a11071", "text": "Batman dances with Daenerys from Game of Thrones. "} +{"id": "3006883", "video_name": "8be0b34f-dc7a-5ccf-8549-18c3ce85dd7b", "text": "highly detailed portrait of an alien girl, stephen bliss, unreal engine, fantasy art by greg rutkowski, loish, rhads, ferdinand knab, makoto shinkai and lois van baarle, ilya kuvshinov, rossdraws, tom bagshaw, alphonse mucha, global illumination, radiant light, detailed and intricate environment "} +{"id": "4002521", "video_name": "7009037a-ef61-55bf-9524-84b48ca5870e", "text": "neon blue and pink arrows moving to the right on the black background "} +{"id": "1005612", "video_name": "672c8d17-7b66-5e83-9674-342598c5f47b", "text": "night sky, mountain, stone guard at the foot of the tree, field with blue flowers,the wind blows the leaves from the trees, quality 1080, gs 190, motion 0, fps 24. "} +{"id": "5001862", "video_name": "8a1a7140-6181-50fa-824c-8f28891bd994", "text": "A scene of touring Jeju Island in 2021 with your deceased parents. Your parents tell you stories of their youth, and you spend a joyful time with them. "} +{"id": "8003204", "video_name": "9f363dfe-6041-51e0-bfab-e5a4dd5f055e", "text": "Fifth grade Chinese elementary school students doing homework together, white light beige background, real warm classroom photos, taken "} +{"id": "8001240", "video_name": "a079163a-e247-5cb8-b2b6-e6f8fe30d511", "text": "star wars dogfight in Pixar style "} +{"id": "2006910", "video_name": "73dd1a62-30dc-5cbb-9df9-4aa3d91f689c", "text": "Legacy of Friendship: An elderly Lily and Emma sitting on a bench under the same cherry blossom tree. The village children gather around them, listening to their stories of friendship, passing down the tale through generations. story like "} +{"id": "6002537", "video_name": "e76706fa-95a5-5f05-88cd-60cd3003e5c8", "text": "Their house was always in a mess, with clothes lying around, dishes unwashed, and papers "} +{"id": "7004457", "video_name": "8597c649-82db-5509-8cc0-a4268d44d895", "text": "One sunny morning, in a small village, two children, Raju and Seema, went out to play. They reached under a big tree and started digging a hole there. "} +{"id": "2006736", "video_name": "c9ade6b8-f59c-5782-bde0-b0f41b7a4953", "text": "Cinematic still of a space cowboy with psychedelic attributes. Vibrant colors and animated background "} +{"id": "4002540", "video_name": "25726eef-6a5e-52d0-b70c-43e8924e9c54", "text": "create a realistic image of a centaur torso with a coat of deep forest green and earthy brown. Her mane is adorned with feathers and leaves, and her tail is braided with luminescent vines. her eyes have a mystical glow, and she carries a staff adorned with natural elements "} +{"id": "2003645", "video_name": "94842f2d-b69e-5922-bcf5-7592ff1c5152", "text": "Once upon a time, in a small village, there lived a young man named Ramesh "} +{"id": "1004769", "video_name": "583160f0-58f9-5097-a5e7-1eff09053294", "text": "a boy is calling in his phone "} +{"id": "2004094", "video_name": "a3f1103a-76c9-50c0-921e-e1d88ab3ca9c", "text": "the northern lights danced across the night sky "} +{"id": "2003322", "video_name": "0bf4f554-aea0-5ee5-b490-a3c65fc35a66", "text": "living dead walk at night in the old cemetery abandoned in 1970 "} +{"id": "0006225", "video_name": "28b5db43-8a2f-5a39-b4e3-7e4bd0a17b7e", "text": "Mushroom cloud rising from a cyberpunk city "} +{"id": "1004952", "video_name": "5b91d23d-f51a-5cb1-b0ba-d7bba9e520d8", "text": "a cat in a pizza halloween costume knitting baby slippers "} +{"id": "8003082", "video_name": "50180c73-d722-5356-af9f-80e0318eda42", "text": "a 19 year old japanese girl with short pink hair on a yellow vespa at high speed. There is a huge building shaped like an iron on the background Message: furi kuri (Font: MODERN) "} +{"id": "4004282", "video_name": "072baa79-fe86-5bc1-abf3-e4b481e5ef5b", "text": "tropical island, floating through sthe sky "} +{"id": "2007038", "video_name": "ca72741a-2568-5a44-9dab-987780dfc93b", "text": "In the early 20th century, the hamburger was often served with onions and cheese "} +{"id": "5001122", "video_name": "a4420662-118e-5238-a48f-7a8d2ed4fabb", "text": "man walking through a massive maze at night while eyes watch him from above "} +{"id": "7004691", "video_name": "ca888a4d-1551-56de-a6fc-40e84118d646", "text": "An idea for a drying rack "} +{"id": "6004878", "video_name": "b1141d59-5ff1-5459-a050-db0f1747d1fb", "text": "8 tanks destroy the bunker in the desert "} +{"id": "2007326", "video_name": "3195ec74-77b7-515f-ad1c-064ad619a855", "text": "1940 Cthulhu rises from the stormy ocean "} +{"id": "0004912", "video_name": "1155dcbb-b34c-5506-8afd-89f543ea58ff", "text": "woman from back navigate on tinder "} +{"id": "2004802", "video_name": "d9c311a5-14d6-5948-abbf-23d0b13c7716", "text": "wind blows through the open window in the room. Waving white tulle near the window. Morning sun lighting the room, shadow background overlays. tropical palm tree in the room "} +{"id": "8001697", "video_name": "0d0b0d0b-820c-5242-94c1-9e6af3370b42", "text": "Little Nina participates in a fruit dance class, joining fruit sprites in dancing to lively music. The animation, inspired by Disney Classics, showcases fluid and exaggerated movements synchronized with the melody. "} +{"id": "3005887", "video_name": "761bd1e6-0131-5018-b9ec-83552d57f5e4", "text": "a moving image of pikachu slapping a dragonite "} +{"id": "2004600", "video_name": "8385b961-3fb8-5303-9658-276af03fc03e", "text": "Open with a wide shot of the vast Atlantic Ocean under a turbulent, overcast sky. The sea is restless, with waves crashing against the British and French warships. "} +{"id": "0004099", "video_name": "03342a88-4b0e-5ec4-922d-c2faff0e87ff", "text": "there lived a man 10years old John who was seeking an adventure. "} +{"id": "1004329", "video_name": "4ff3219b-c092-52fe-9d23-6e5f1ecf2719", "text": "zoom in the city in slow motion,120fps, High quality imageU1667577330.jpg "} +{"id": "4002123", "video_name": "3b95ecbb-27cf-5d32-a1c8-58fb457b7dc8", "text": "a young girl sitting at her desk using her laptop, yawning and bored, 4K, cinematic "} +{"id": "8001040", "video_name": "e282dae6-33fd-5a5a-88eb-987e586305c7", "text": "Midnight cowboys stained in black reads dark roads without a map To free electricity, otto dix style "} +{"id": "8002448", "video_name": "f1b0bbb1-31fb-5e01-962d-f8f3fdf58502", "text": "man in prison of castle is dreaming, dark night, moonlight "} +{"id": "2006521", "video_name": "8ec1c2a3-f36a-50a5-a27b-4737b0df2102", "text": "two men with a dog standing on back next to a river at sunset; enjoying the view "} +{"id": "1006502", "video_name": "77031106-168b-5f3d-9131-b8ec21c16ca4", "text": "Carl Johnson from grove street robbing a store "} +{"id": "0005550", "video_name": "1cb34776-a8ad-586c-aae1-b8feb193d100", "text": "happy zombie group cartoon chase birds "} +{"id": "0003302", "video_name": "3b4aec65-374f-5ca6-8340-ac584c2283a8", "text": "One day, while exploring the Enchanted Forest "} +{"id": "2006076", "video_name": "56e56d0b-13f7-50b8-9849-3f84c764e798", "text": "Draw a ghost wandering in the office "} +{"id": "8003998", "video_name": "40ed0071-93e3-5fda-9095-326ce0b4dfc7", "text": "Young man creating street art (graffiti) on the wall on a sunny day Message: 1 Attachment "} +{"id": "1004133", "video_name": "4c8c1365-4c76-5420-94e7-66d86c315538", "text": "animate good looking girl who does pilates on the grass and smoking cigarets 8k realistic larry sultan style "} +{"id": "7004493", "video_name": "5e65a01a-8835-5202-a75e-833496333db9", "text": "old irish customs officer. In style of family guy "} +{"id": "8001100", "video_name": "b744a910-6959-5657-a022-9dcf687924fb", "text": "here are also claims that certain artifacts "} +{"id": "6002840", "video_name": "d238e933-0cc0-544c-9d6f-89447dfaa666", "text": "A professional pedicure master performs a pedicure and pedicure on a sexy beauty. The shop is called Mian County Yongpeng Pedicure Club "} +{"id": "2006405", "video_name": "ee50edad-e1d0-5529-9597-af2ef38dde59", "text": "The protagonist enters a pulsating techno club "} +{"id": "8002259", "video_name": "e77c5686-7e41-5e7c-adb1-ea8b77a1b201", "text": "A young man is training very hard in bodybuilding "} +{"id": "6003312", "video_name": "10800cd0-a41c-59da-abac-4dea58b9be2c", "text": "One sunny morning, a message arrived from Princess Peach. It was an invitation to join her for a grand picnic at the beautiful Toadstool Meadow. Mario and Luigi were excited and wasted no time packing a picnic basket filled with delicious treats and their favorite pasta dishes. hd "} +{"id": "2005967", "video_name": "e2e98242-b6d1-542d-bcc7-9f17c4b760a7", "text": "rabbit eating a carrot in the style of Disney Pixar "} +{"id": "3003521", "video_name": "0ed73c6c-7074-5151-97a5-4cc3a92b6816", "text": "closeup, illustration of a white fox girl sitting on the very edge. detailed lit urban cyber city street environment "} +{"id": "1005908", "video_name": "6c9c1271-759e-5eab-b9d4-9cc0154ae7f9", "text": "Little fairies fly through the magical forest, Disney Message: zoom (Font: MODERN) "} +{"id": "1004757", "video_name": "58066209-c645-5a3c-ad31-a6c679a05ea2", "text": "beautiful real ice crystals are growing on ice "} +{"id": "4002570", "video_name": "727a71be-f836-5cdd-a9f9-deb1c1055588", "text": "of Alan Walker looking cool in a concert "} +{"id": "2007999", "video_name": "f146a5f3-1ecf-546f-a2fc-1dfa252c866b", "text": "dark red and black cosmos, thick chain parts flying scattered "} +{"id": "8001025", "video_name": "c37c0237-ddab-5b7f-b345-c988f23f3085", "text": "Big Backyard Swimming Pool at morning is filling with water, sun glare on the water and some waves inside, cinematic style "} +{"id": "7004869", "video_name": "ff5a3599-bc2c-5d47-89d1-ebae0c6fc685", "text": "The material, the picture, a woman screaming "} +{"id": "4004929", "video_name": "7f79dec9-dbb3-548c-8594-65b0fe8050ff", "text": "An image capturing the beauty of a field filled with radiant flowers that change color with a touch, evoking wonder and amazement. "} +{"id": "2003624", "video_name": "a64fce64-4a45-5698-a19a-a8a14240bf2a", "text": "Imran Khan addressing a large gathering, his voice resonating with passion and determination. "} +{"id": "6004099", "video_name": "22c33b5d-ec9f-5348-b6f2-d706549ee402", "text": "a playful black cat with yellow eyes at a river valley looking around in a beautiful forest at the morning. sun light is coming through trees. "} +{"id": "2007755", "video_name": "089cd65a-d209-5216-a0f0-b2edb5b8e83c", "text": "girl would escape to the village library "} +{"id": "4003377", "video_name": "110bd3d3-8c62-5713-b65f-93788bec1dcb", "text": "As the sun sets, the sky over Lumina begins to shimmer and pulse with an otherworldly light "} +{"id": "2003542", "video_name": "79ae3c9a-3eb1-5906-b885-b27e44a0ba5f", "text": "A little boy and a girl entered a forest early in the morning, where they met a giant dianosaur, which attacked them, but after a long hide and seek the dianosaur could not reach them. the boy and the girl came out safely from the forest. "} +{"id": "2007313", "video_name": "9ff5a53e-4d8c-5e62-b6df-1e825bc4625b", "text": "Telecommunications antenna, blue sky in the background! "} +{"id": "3003885", "video_name": "99b6b6e4-85c8-5f76-bd8f-8369b361d636", "text": "snowing in the mountain, white, beautiful "} +{"id": "1004308", "video_name": "4fa019cf-40e0-5ff8-bcd0-8f90cfbc10bd", "text": "Design a baby with elf booties "} +{"id": "4003897", "video_name": "b384b7ef-da61-52e4-8a04-a88b22444542", "text": "a big tree on the stone "} +{"id": "7002549", "video_name": "87108f2b-5afd-5ef1-ba64-5784cb486c05", "text": "bigfoot dancing in dimension fractal uhmm wordsalad "} +{"id": "6004574", "video_name": "2a937d4c-c468-5ade-a66b-17310c95aa41", "text": "Lara Croft Camping in deep mud "} +{"id": "2004797", "video_name": "1207755d-e59a-5053-a264-5a9136645e46", "text": "a very beautuful woman looking like robot is making a phone call "} +{"id": "5001282", "video_name": "52038eb1-68c3-5328-bd52-488914aeb253", "text": "create a logo, inside the logo there is a hand, a rainbow, a tree and a heart, in simple style "} +{"id": "7002662", "video_name": "5f0f7288-a2d5-51a0-acc0-6fecba3eb0f7", "text": "They vow never to return, and the mansion remains shrouded in eerie legend. "} +{"id": "1004037", "video_name": "4ad6b098-ff63-53fb-a86a-f7c21b46e5a7", "text": "attractive man with dreadlocks holding a bag of fruit high detail cinematic 4k "} +{"id": "7002070", "video_name": "beda1dd3-c54c-5bd1-9f27-d2fb0b14bd04", "text": "A circle in the center from which beautiful gilded lines on a black background go to the sides "} +{"id": "3004121", "video_name": "5a4b939b-0ad6-5914-94f2-705cfad0975c", "text": "create kids and animals animated video "} +{"id": "3006966", "video_name": "a02ef2c0-e83e-5de2-81f1-fc83efd1ffd0", "text": "a band with masks playing the rock music equipments in the castle "} +{"id": "2006567", "video_name": "e51067d4-5d65-5bb8-9a1e-8f5871a679f6", "text": "bar, Elon Musk and elephant, drinking beer and smiling, cheers "} +{"id": "2006323", "video_name": "192f8126-a066-5cec-ade9-2064beac5137", "text": "an animated style, a man is trying to sleep, music is pulsing around him, he covers his ears, angry "} +{"id": "6003434", "video_name": "690f93ab-1d36-5cd3-ba69-8297b03fe5b6", "text": "a person covered himself with blanket full body "} +{"id": "6004153", "video_name": "09a5f931-c720-54bc-84a5-d4a15640d61d", "text": "Twitter brainstorming: Public forum, idea validation, dynamic content. "} +{"id": "5001050", "video_name": "ace93cb9-16e9-55d4-a346-c17945dbef09", "text": "generate image of little turtle animation "} +{"id": "0006222", "video_name": "289b913c-27e9-5e8f-adfa-7f91587406b0", "text": "retro psychedelic, cute anime style girl, walking "} +{"id": "1004225", "video_name": "4e3010f9-61bf-509a-934e-93c66db1066c", "text": "a 1970 art house film,Humans have found living beings on Pluto. And it\u2019s far from what they imagined "} +{"id": "4002170", "video_name": "3c0c5939-2696-562e-930f-aae8f5553ffc", "text": "how does the future look video "} +{"id": "1004709", "video_name": "576cdf88-14ec-592b-9c28-3be1de4f3d96", "text": "Creation of Greek mythology sun god Apollo "} +{"id": "2004007", "video_name": "250cb3ee-1c7d-50fa-94e4-84f4343b8b47", "text": "A Beautifull landscape with a red cat sleeping, cute colosr, beautifull, awesome "} +{"id": "7004778", "video_name": "530a1405-2528-5efe-a644-d89c93aac15f", "text": ", leaving people in despair. animated "} +{"id": "3004469", "video_name": "81376a96-240f-5f09-875e-8c42265d07ea", "text": "people receiving the things they wanted for Christmas "} +{"id": "1003447", "video_name": "3fe73334-6b67-53b3-a83c-ffc2193f1c39", "text": "The world of ancient martial arts "} +{"id": "8002858", "video_name": "4b5abea0-0471-55a1-a103-10b7c3d80a8a", "text": "When the story came to an end, Farmer Fred bid each animal goodnight. He patted the cows, whispered sweet words to the sheep, and gave the chickens a gentle lullaby. With a contented sigh, the animals settled into their cozy spaces, ready to dream sweet dreams. 3d image gs 20 motion 4 "} +{"id": "6003682", "video_name": "51fededb-8486-5555-87ca-acaad30b7d67", "text": "In the frozen expanse of Antarctica "} +{"id": "5001330", "video_name": "833083e0-6445-5168-9129-fa06d2a3d29f", "text": "crossing mysterious rivers, and setting up makeshift camps in the heart of the jungle. "} +{"id": "3005092", "video_name": "a616108e-c122-57e5-ac7c-f109628d55d0", "text": "a 50 years old woman driving a car "} +{"id": "3003070", "video_name": "d0bf4cea-9c45-5512-8859-c6b24499e737", "text": "a lovely cat is driving a car "} +{"id": "6002707", "video_name": "60c571b7-2359-5df7-b6d9-670e2ccca137", "text": "The face of Cyrus the Great based on historical sources and statements "} +{"id": "1003360", "video_name": "3de1247f-fde8-5404-b5d3-3c8dc62e4b67", "text": "she looks at the sky while stars fall "} +{"id": "0005251", "video_name": "174276da-6152-5c89-b828-ead7eaa11895", "text": "stewardess woman,21 years old,(white background:1.3),(upper body:1.2),subsurface scattering,smiling,hair bun,blonde hair,bangs,stewardess,dark blue uniform,garrison cap,pantyhose,white gloves,(airplane cabin),light smiling, "} +{"id": "5001490", "video_name": "a9f85906-187a-540e-99d3-0cc56dc3af55", "text": "A Guy With A Backpack Walking Through Mars With A Spacesuit "} +{"id": "1004809", "video_name": "58e38628-ac47-569b-a14d-28df087da435", "text": "The three products on the countertop are still, the facial cream is still, the grape leaves are shaking in the background, and the picture slowly fades out. "} +{"id": "1005816", "video_name": "6ae3ff27-8b27-5858-89c2-a4394e14dea9", "text": "The guy is lying on the couch and looking at the ceiling in a dark room "} +{"id": "4004904", "video_name": "30524624-d984-50fd-ad4e-19c7969cf2bc", "text": "create a cartoon bird which is flying away on the top in close shot on the chroma key background "} +{"id": "1004171", "video_name": "4d3b5946-0f1f-5107-a807-a8450713b9d9", "text": "Slow, melancholic piano tune emphasizing the struggle and discomfort of wearing old shoes. "} +{"id": "7002473", "video_name": "e416f296-a765-5b5c-ac05-691f27f79636", "text": "On the beach volleyball court, a volleyball is sent flying as it hits the court, viewed from below, in an animated style. "} +{"id": "3005032", "video_name": "16f5d919-1171-59ee-b02b-750b88aae4a4", "text": "Van Gogh living in the yellow house\uff0cgenerate 3D animation "} +{"id": "1005432", "video_name": "63c93e4f-04b5-5937-8a6f-6db33d5434d1", "text": "ralph kramdom punching alice, realistic style in briliant full color "} +{"id": "2006182", "video_name": "d9740f02-d7a4-5502-b651-c1032b08410a", "text": "photorealistic oil rig in the middle of the empty ocean, drone camera moving towards subject "} +{"id": "2007650", "video_name": "c32e80d4-6f7e-5386-b754-ee19376bf560", "text": "a girl sit in a char and reading book and listening music with headphone, 4k , 3d style "} +{"id": "2007908", "video_name": "76dde262-8f0d-5a3b-8ac1-1e7cc7526c34", "text": "70s arthouse, surrealism, The Holy Mountain movie, a wizard standing in a forest "} +{"id": "3003379", "video_name": "b6cdd17f-e00c-5a6e-9e80-8a69898d8783", "text": "This mistake not only impacted his friends but also had repercussions for the entire community, causing countless casualties and loss of life. "} +{"id": "6003466", "video_name": "1ccb7dd6-9c15-5781-addd-efbf3293e147", "text": "A couple wanders by the lake on a sunset afternoon "} +{"id": "6002671", "video_name": "21986f1d-c274-50cf-b4c6-c3257859a025", "text": "3D Chinese Guan Yu powerfully holding a sword "} +{"id": "3004131", "video_name": "fb06b675-59dc-59fd-a2ac-119b775db9a4", "text": "madonna from 1992 siting on the chair "} +{"id": "5001399", "video_name": "1481e211-feb1-50b1-9baa-74ad55c7268f", "text": "he had an insatiable curiosity that led him on extraordinary adventures. "} +{"id": "0005139", "video_name": "157ce76e-ac9a-57a5-b220-c7457acdd5d4", "text": "An elderly couple sitting in a coffee booth husband leaning towards his wife trying to say something "} +{"id": "0003587", "video_name": "3ffba091-0198-58a5-a155-8e503edb5dd0", "text": "skydiver with jetengines on back jumping off a cloud at night "} +{"id": "2004273", "video_name": "24da5a02-fcee-594b-a612-f8c7c495ae70", "text": "a really small cat in the palm of someone\u2019s hand Birds Eye view "} +{"id": "7003322", "video_name": "37a12fd2-831a-5972-acf8-f8291bce71cd", "text": "A grand statue of Pharaoh Ramses II, standing tall and imposing, with intricate details that mirror the craftsmanship of his false beard. "} +{"id": "1003348", "video_name": "3da138da-3d21-5a16-98fc-46552721c1bc", "text": "A humorous illustration of Popeye the sailor who eats spinach to become strong. He is dressed in a blue shirt, black pants and a white cap. He has a pipe in his mouth and an anchor tattoo on his arm. He holds a can of spinach in one hand and raises his fist in the other. Behind him, we see Olive who admires him and Brutus who fears him. The image is in a vintage comic book style, with bright colors and thick outlines. "} +{"id": "4002868", "video_name": "4e3596d1-709f-5638-b383-0ebabb1ffa34", "text": "advertising scene, close up zooming shot , cutting pickeles in restaurant kitchen, super realistic "} +{"id": "0004451", "video_name": "094ce446-5bfe-583a-897b-46c791bf9541", "text": "a car driver following a woman driver at night on a deserted street "} +{"id": "7003394", "video_name": "5d56975a-3e63-5c25-a7f9-e24f9e5bdf83", "text": "a car stopped on the side of the highway at night rainning "} +{"id": "5001488", "video_name": "6b2a590c-f3c5-5178-a554-623f5bef3c46", "text": "editorial shoot of a man looking at the moon during a very cold night , feeling lonely and solitude, very highly detailed , docuementary style , close up shot , magical colors , ultra detailed , ultra realistic , ultra HD ,8k "} +{"id": "7003989", "video_name": "967e741d-1a07-55bf-9dec-620514ce7ca5", "text": "cowboy silhouette looking up at a dragon in the sky "} +{"id": "8001414", "video_name": "f93e6406-9731-5103-aa4b-759d534b70db", "text": "I want you to create an animation of DNA replication. "} +{"id": "4003370", "video_name": "5de155fb-891f-5fb5-aabe-bda5e391c65f", "text": "A tabby cat is catching mice in the grass "} +{"id": "2005938", "video_name": "8a9e42c5-6ba2-5cbb-a4d4-a6405929550e", "text": "realist man trying to loss weight "} +{"id": "7002031", "video_name": "41a1ec34-bfc8-5612-9441-98270e4a528d", "text": "don quixote walking in the wood "} +{"id": "1005104", "video_name": "5e14aeaf-87f7-51a0-9dae-1efa203e337d", "text": "Little Denis put his little experimental snack on a plate and sat down at the table. He took some on his fork and carefully put it in his mouth. The magical world of tastes opened up to the boy! "} +{"id": "1003184", "video_name": "3a9541ec-ad7b-59f6-944b-e0475d7e5b23", "text": "fashion photography, gold tulle, intricate details lace, couture dress, gold crown headpiece, tim walker photography, fashion editorial, cinematic, photorealistic, high fashion, costume design, high tulle collar, full body, white winter, snow, frozen ice, accent lighting, cinematic, photorealistic, HD 8K DSLR, sharp focus, depth of field "} +{"id": "4004419", "video_name": "ac59de56-d2ed-5b25-8d08-0db173630b79", "text": "A king made of 2D animation, wearing the clothes of Indian kings. And some friends also wear their Indian royal clothes. They are sitting on a chair in a room and talking. AR 16:9 HD 4K VIDEO. "} +{"id": "2004686", "video_name": "cee95d81-4701-5e27-a01f-3f1761d405f2", "text": "Watercolor painting of a samurai in traditional armor, kneeling amidst blooming cherry blossom trees, preparing to perform the seppuku ritual with his short blade by his side. "} +{"id": "1005353", "video_name": "627576a1-4980-5d00-9a3f-c052d83febe7", "text": "Afghanistan is blown up by German planes "} +{"id": "1006618", "video_name": "79526470-21e3-599a-8d29-85584de1e8eb", "text": ": Emma and Leo stand at the edge of a cliff, overlooking a breathtaking vista, their arms outstretched as if ready to embrace the world "} +{"id": "2005537", "video_name": "6a6b9a0e-4be4-5a54-a2e2-410cb43f29ad", "text": "In the quaint town of Elmswood, a tradition transcends the ordinary. At the age of ten, children are bestowed with robotic companions, their protectors and educators. "} +{"id": "6003471", "video_name": "5c75a4d1-d467-573e-96a8-c5c4a24063af", "text": "a cinematic explosion of a cellphone "} +{"id": "8001343", "video_name": "7ae552ed-295d-5950-8ac8-9c8d5c113f69", "text": "See the boy, absorbing the teachings like a sponge, his face lighting up with understanding and fascination. "} +{"id": "3004477", "video_name": "9b879627-2cf9-5133-9141-1a5bd4783c6a", "text": "a soccer stadium seen from the top "} +{"id": "8003403", "video_name": "3a788c8c-2fbb-5ba3-957c-06997f8bff36", "text": "A boy with a cartoon image "} +{"id": "6002480", "video_name": "cd4b5119-c584-5f2e-9125-0e7d0f3d9ca2", "text": "Instructions for Robot Instruction that Look Very Difficult "} +{"id": "6003414", "video_name": "76e4c58b-ffa3-5dbf-8115-9b1c9db45b5c", "text": "image of dogs looking at forest "} +{"id": "6003473", "video_name": "ae527433-7643-5f73-8067-7a638ec24c1c", "text": "ship boat. view from above. pixar style "} +{"id": "6002361", "video_name": "46422956-5b9e-56ee-8883-d7927e6933ad", "text": "The crowd watch as parcels of tea and other goods are offloaded from the ship, Frida. The goods are loaded onto horse drawn carts, and driven away while the people in the crowd look on and talk amongst themselves in excitement. "} +{"id": "8002806", "video_name": "06ab08c5-7620-5059-b0ac-5cd916860034", "text": "man drawing s on a whiteboard in an empty room "} +{"id": "7003752", "video_name": "29561d76-34fb-5335-9bbf-b053dcceb5ad", "text": "steam comes out from coffee, Taste like Ghibli "} +{"id": "3006493", "video_name": "b3ed9731-9c80-54df-a007-1a88ef7c8bfe", "text": "water droplet dancing above water, abstract art style "} +{"id": "1003545", "video_name": "4166ee63-2bec-5567-8614-1488ae301186", "text": "virat kohli with worldcup 11 players india "} +{"id": "6002494", "video_name": "db5452cf-817a-5f57-96b9-633b115f7a36", "text": "horror house, inside room, air passes "} +{"id": "3003008", "video_name": "6182ef57-57ab-5765-a0b6-a0bd2e1c6ff8", "text": "Millennium falcon flying through space, realistic, movie still, dykstraflex Camera and Panavision Lenses "} +{"id": "4004722", "video_name": "2692ca6d-887d-5285-b1f0-761780239567", "text": "A boy with hoodie holding a old laptop "} +{"id": "4003075", "video_name": "4828c70a-bb3f-5137-9dfd-4bd41005203e", "text": "banana in a suit sipping coffee while a porcupine falls asleep at a conference table "} +{"id": "6002360", "video_name": "8a1441ae-d684-5249-8a75-4effffd41923", "text": "a dark room, an almost unrecognizable shape stares back at you "} +{"id": "2006540", "video_name": "3ef28279-1aad-5113-a89b-98ac847ae1c9", "text": "A time lapse of a mushroom growing in a beautiful clean substrate. Animate and add psychedelic color and visuals to the time lapse. The mushroom is of the genus of psilocybe cubensis and even has a slight, ever so barely visible face. The face is similar to that of a garden gnome on the cubensis mushroom. "} +{"id": "7003428", "video_name": "7c64061d-c531-53fc-8749-748ea352c01b", "text": "car model in the dark Racing car: Toyota Corolla, Toyota vehicle, ground transport, wheel, outdoor, car, tire, transport, road, motorsport, night, darkness, racing. a white car on the road. "} +{"id": "2005224", "video_name": "57e22771-7045-53ff-be3b-040e12572447", "text": "Meteors across the sky, dreamy scenes of the universe "} +{"id": "3005647", "video_name": "64c020f2-b8d4-5eaa-bde4-2d235e2805dd", "text": "1970s artistic film woman walking in a fantasy land, glamorous, 70s fashion, cool, vivid, warm colours, psychedelic future fantasy painting circa 1977 alphonse Mucha "} +{"id": "0005865", "video_name": "227da66d-ac43-59c0-be43-c7a917a69d54", "text": "a large boat arriving in a french port at the 19th century "} +{"id": "8003424", "video_name": "f65d1926-233b-5048-bcfb-e566465c1f2e", "text": "A group of young men and girls disappear inside a terrifying old abandoned house "} +{"id": "6003196", "video_name": "0475df8b-6f34-51d2-b172-83e51f788fa8", "text": "the plane crashed into the barn at night "} +{"id": "2007078", "video_name": "2a39b565-5e67-5f1b-b62f-abc0255a4482", "text": "A girl in wear green mask and red shirt "} +{"id": "1003667", "video_name": "438171a2-5ce1-5e10-afe8-2aa4a8f83649", "text": "Volkswagen bus and Volkswagen bugs are driving fast. Robots are cheering them on. Lots of smoke, jumping, excitement, racing and Volkswagen "} +{"id": "5001926", "video_name": "81e54ef9-edf1-5f68-ad54-8b06691cd676", "text": "Forest shown from ground, rain mizzling. "} +{"id": "4003633", "video_name": "cda988ad-f18d-584e-a5f2-05e8352e5648", "text": "shark does back stroak in a ponds full of penguins "} +{"id": "1005268", "video_name": "60e747b3-63ff-5393-8631-2472c6e1fc68", "text": "Life in mars inside crystal domes full of vegetation, outside there\u2019s a misty red haze, a spaceships flying above in the background, cinematic film "} +{"id": "3006119", "video_name": "d257a6bc-41e4-5ac8-8e0f-ae4511d70578", "text": "Show panda king and King of chimps engaged in a heartfelt conversation amidst the ongoing battle. Display the realization dawning upon King Chatter "} +{"id": "1003166", "video_name": "3a4c5be1-88d9-5fda-a104-3898e806c31e", "text": "rock type pokemon with rocks falling down, 4k hd "} +{"id": "2003926", "video_name": "6c28d105-a4bc-5c0c-ac47-2c2b2cd6691d", "text": "a short red hair little girl wear white dress hold an orange kitty in chrismas school "} +{"id": "2005685", "video_name": "06bec105-5703-56ba-b9e7-1ebba20d25c7", "text": "I want a video of a meteorite falling on the Earth in a terrifying scene "} +{"id": "3003142", "video_name": "6e13db14-dd21-5222-9d0b-1ce735716792", "text": "A group of camels and a group of people in the Middle Ages in the middle of the desert "} +{"id": "7002714", "video_name": "28487e76-d8e6-5aa9-b139-ec854e07d62b", "text": "make a video of harry potter flying with nico robin "} +{"id": "3004523", "video_name": "869d5c9b-a9df-5e1c-b074-5b56a8d7c88c", "text": "super 8 mm film cinematic shot of a giant tropical volcano in the middle of the ocean, arthouse film Autho "} +{"id": "8003814", "video_name": "924da040-3d8b-5de3-8d71-d2169dddeeec", "text": "let wolf look at the camera Message: 1 Attachment "} +{"id": "6004501", "video_name": "8d87937f-70cf-5c87-943a-b472e2c20710", "text": "a fierce St. George on a strong horse fighting a dragon "} +{"id": "0005863", "video_name": "2279d9d9-0a9a-5860-be8a-28a17106f0dc", "text": "utopic sociaty with robots Message: RTV (Font: MODERN) "} +{"id": "1005081", "video_name": "5daee369-9474-5ee6-a473-8f996af3f5ac", "text": "Close up from old man singing out in the air in the dark woods at night with dim yellow lighting. "} +{"id": "0005008", "video_name": "132a90a9-c995-5e18-b978-4cb0e5d224f2", "text": "Part 3: The Enigma Unfolds (The screen darkens, fades again, the village scene is empty, the wind is gloomy) Narrator (Voiceover): But on the fateful morning of December 25, 1997, Ma Navidad was engulfed in an eerie silence. The rising sun unveiled a village devoid of life. "} +{"id": "3006313", "video_name": "8dc94ae9-f53b-5885-8d87-54b69d1fa09b", "text": "Generate a landscape of ancient Greek streets through black and white documentaries "} +{"id": "8001633", "video_name": "5dabbdda-2a52-5a0f-bfeb-39b7eddc20c8", "text": "a film where a girl stands in the middle of a busy New York street, where pedestrians pass by, and looks at the camera with a mysterious look. The camera slowly zooms out, catching her gaze. "} +{"id": "6002101", "video_name": "c88523cb-bfa4-5e8e-9cd7-9419a9079b54", "text": "scene of an Indian railway station platform from the 60s with people drinking tea at a tea stall and eating samosa, reading newspaper. Large analog clock hanging from the platform with a train approaching the platform "} +{"id": "2003478", "video_name": "d18613b3-110f-509a-8d84-113e334379cc", "text": "Slow motion of police tear gassing riot, news footage, vhs tape "} +{"id": "2007069", "video_name": "4de7706f-2cc1-5f97-a7b7-e326f8412300", "text": "A modern free work space inside a glass building with sunlight entering. The chairs are blue and the table is white. There are Gulf people in it, in the city of Jeddah, overlooking the sea. "} +{"id": "0005198", "video_name": "1682fa05-b781-589b-8af0-ac2bbf81458c", "text": "A rainbow appears, a butterfly flies. "} +{"id": "6004534", "video_name": "05417c33-258b-53aa-90f7-17e612783feb", "text": "black and white grainy film style video of a child screaming in fear "} +{"id": "1003245", "video_name": "3bc52c83-4ed2-551f-a2c1-5ff65ee77e68", "text": "White healthy teeth Message: Trueocity (Font: MODERN) "} +{"id": "1004183", "video_name": "4d6a9948-cfab-5903-ba90-b7b12309064f", "text": "a picture of 10 year old girl sitting in sofa, 3d illustration, high resolution, creative 3d disney cartoon, beautiful face "} +{"id": "2004289", "video_name": "95102598-348a-56f3-a2c1-365ffda54f1e", "text": "some realistic anime style girls Message: KMPEE (Font: MODERN) "} +{"id": "0004010", "video_name": "01889e45-bd12-54d0-89b2-36ba2bb380ef", "text": "In a black room you see a drone moving with a flashing red light "} +{"id": "8003933", "video_name": "f396a0ae-ac9a-5dbf-954d-a50416eecf51", "text": "Bruce Lee dancing in the desert "} +{"id": "5001699", "video_name": "570f992a-a461-5d13-9b03-e7348032bb15", "text": "Show Felix contemplating a plan\nVisualize him approaching Leo with his proposal "} +{"id": "8003052", "video_name": "82b22fc4-2cd7-576a-87b8-75ef1b72121d", "text": "iron man and Rick Sanchez combined "} +{"id": "2003917", "video_name": "30380d1e-763a-5f09-b72e-9e81390a6f6e", "text": "Milla Jovovich holding a big birthday cake in flames, smiling, sexy fun. She\u2019s radiant, dressed in her leather body suit from resident evil: retribution. 2000\u2019s Apple Store modular future architecture "} +{"id": "0003814", "video_name": "43f68c16-8a6c-56a5-ae14-b28492f6203c", "text": "space skull dark atmosphere moon. Alot of clean gold treasure like jewellery and diamonds stuck on space debris and planets. Clean space close to the moon with space debry. rocky terrain with mountains on moon. Fast camera little shaky "} +{"id": "2005520", "video_name": "d3f958c6-ae4a-5d41-86bf-1d6938d1adb0", "text": "The impact of minimalism on consumption and ecology. "} +{"id": "1006942", "video_name": "7f045b73-8bef-57bd-8e31-4cac2641e344", "text": "heart flower, human brain as flower, digital art style, rule of thirds depth of field intricate details "} +{"id": "3005590", "video_name": "c4e79a5a-acfd-5aa0-85c7-7b7c2817b835", "text": "highly detailed waterfall is flowing in a magical forest "} +{"id": "6002051", "video_name": "246bab8c-4112-57bc-9d9d-a89bedee554f", "text": "man rider wind in highway very fast "} +{"id": "1005769", "video_name": "6a29b302-4f6a-5f13-b31d-122b784232bb", "text": "A single beautiful rose losing a petal against a black rippled silk background morphing "} +{"id": "1006423", "video_name": "758e67d5-513e-537b-91c0-c2b23e02e766", "text": "a single blue dragon swooping downward "} +{"id": "1006808", "video_name": "7ca3b451-c620-5f79-9852-d126f14b36fd", "text": "In the middle of this confusion "} +{"id": "4004043", "video_name": "d193fe16-b17b-5714-b7c0-44f6fa7b8afb", "text": "a business man is in front of a big bulding called NEW SUN company "} +{"id": "8003031", "video_name": "fa25bc71-9306-5117-8d5c-21e992a6048b", "text": "LEXUS 570 and LEXUS 600 new york "} +{"id": "0003143", "video_name": "38019df6-e625-55ad-a6e6-c873505ee35b", "text": "3D animation of a jubilant He is the winner of a young football player "} +{"id": "3005220", "video_name": "b0c9caef-845d-5d82-a7f1-ee2da69f99da", "text": "A magical chest opening its lid "} +{"id": "3006820", "video_name": "7e7f34b7-6923-5bc3-befd-88ea36fbd8d7", "text": "The water is moving with the gentle breeze "} +{"id": "1005792", "video_name": "6a9f71f5-805a-50bb-b5de-3ad1df99db4d", "text": "i want the same woman whos cooking changing into a tux and getting reading for a meeting in a smooth transition "} +{"id": "5001840", "video_name": "64578b72-3b87-5eef-87c6-94613edc0ccd", "text": "owl wearing suit and flying in to circus "} +{"id": "0006666", "video_name": "30b4ad11-9921-58f5-aefc-dbfa5ea81934", "text": "Please make the man in the picture remove the black glasses from their current position "} +{"id": "1006186", "video_name": "71525a87-ff38-560c-9f6c-c67ec69bda0d", "text": "slow motion closeup of an european man hammering and sweating while working hard physical job, photorealistic, raw, cinematic "} +{"id": "1005476", "video_name": "64952567-b1da-5973-bd8b-fd2e3c37b564", "text": "Couple bumping into each other and falling in love at first sight, animation "} +{"id": "7004628", "video_name": "8f1dbc4f-c15d-5531-ba42-0fe88e4a4ad7", "text": "Illustrate the mischievous sprites attempting to fly upward into the night sky, their wings fluttering as they struggle to hold onto the grinning mirror, their expressions a mix of determination and glee. "} +{"id": "4004801", "video_name": "318786bf-028d-51f1-9644-318cef9e04b7", "text": "man teaching class about lasering coins with a fiber laser "} +{"id": "0003792", "video_name": "43781966-6865-5f05-a8cc-06e64b1926ed", "text": "a bear eating a gold lock "} +{"id": "8002773", "video_name": "6e2c16c3-b968-5d2a-9d2d-05a582f76c47", "text": "viking beatiful red head woman fighthing in a war ultrarealistic, hd,4k "} +{"id": "7002875", "video_name": "b30929b2-c30e-5e44-8b2a-faba5e82fe0e", "text": "Angel fights with zombies in the universe, against the background of fly agaric "} +{"id": "1005223", "video_name": "602728ed-1a73-5980-b880-a4932ec48598", "text": "full body of a man levitating from the ground into the galaxy "} +{"id": "6004180", "video_name": "079f3ada-2911-5097-8ee8-77bf66b67f07", "text": "Luffy in Sun God Nika Form attaining One Piece treasure "} +{"id": "0006059", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "A horde of zombies is walking down the city streets during the evening, captured using an old camera. They suddenly notice the camera and start running towards it. The video is being recorded in 4K resolution with motion 2 settings and a 16:9 aspect ratio. "} +{"id": "3004234", "video_name": "75ec64b0-47dd-5f76-8e8e-7a5342b0f60c", "text": "isometric 2d mmorpg in the style of ultima online "} +{"id": "4003786", "video_name": "0c858763-efcf-576d-85c5-359a18ac1d54", "text": "Mochi is a small and adorable Pomeranian dog. His house is located in a lush green garden, where flowers and plants are always shady and vibrant. Everything in this house is very warm and comfortable. "} +{"id": "3004668", "video_name": "2787a323-9f52-5c88-87b8-55bddd18a9aa", "text": "the sword of reality slicing through time as it compresses all possible realities into a single shockwave of light "} +{"id": "3003158", "video_name": "c33ed010-d2f3-5d60-b9ff-6d49da00ae0f", "text": "Goku transforming into Mastered ultra instinct manga style animation "} +{"id": "6004278", "video_name": "a0becda2-6ca9-5e9c-a626-e2951afc6f1b", "text": "a horse is galloping in a shallow river "} +{"id": "1003910", "video_name": "482ff8d1-c94e-517b-b4d1-795346f6bea6", "text": "man with an axe standing over a woman in a dark room "} +{"id": "1004915", "video_name": "5ae8c402-d30f-5369-b991-af9ce6274ea9", "text": "ufo in moscow in 1940 camera styles "} +{"id": "7003467", "video_name": "78f6ad53-88ac-584e-893b-9d273f05be33", "text": "a snowman shoveling snow next to a cabin "} +{"id": "7002694", "video_name": "c6ca639d-3c6d-5816-8be7-4c60ed687130", "text": "Jim corbett sitting on a tree in a dense forest in Himalayas "} +{"id": "4003560", "video_name": "917d5827-6ee2-5668-9e23-502b85e2ce17", "text": "Sam carried a special staff made from a strong oak tree and a heart full of bravery. He went to the first realm called Terra, where there were tall mountains and beautiful forests. There, he met the Guardian of Earth, a huge rock creature with shiny eyes. The guardian gave Sam challenges to see if he was brave and determined. 3d animation. "} +{"id": "8002427", "video_name": "de36f3fb-ffc6-5ee8-8615-8bf6f1aa8355", "text": "horror, terror, zombies invading suburbs at midnight, home movie footage, found footage, shaky image, faded film, motion "} +{"id": "6004257", "video_name": "eb65ffc1-0acc-561a-9932-17f7d971fa4e", "text": "3D animation, big tree in the sky "} +{"id": "2004734", "video_name": "cee514a6-e231-5742-96d4-654a3d1e7ea5", "text": "French flag fades And changes in to German flag "} +{"id": "0003419", "video_name": "3d4afd96-5bce-5a04-8783-8dc9e19b6d6b", "text": "POV of a man running through the forest. "} +{"id": "3003485", "video_name": "70395224-5ec9-57ac-a88c-4908c3d35134", "text": "cute cartoon turtle sipping a soda in a thunderstorm bright colors 16:9 "} +{"id": "2004876", "video_name": "ad7ac8ad-84ac-534e-8d8d-1acc23a8ceaa", "text": "Both the king and queen were very happy for their first child. "} +{"id": "2004555", "video_name": "18d88117-33b3-5b7a-bd73-3fc99c6d6c1a", "text": "A serene town under a moonlit sky, two cats with gleaming fur strolling down the quiet streets. "} +{"id": "2003234", "video_name": "92eea332-7c3a-509a-afa8-5c58211d5c55", "text": "british blue cat with yellow eyes in the big forest in a shinning day "} +{"id": "3003449", "video_name": "db9c59d8-678b-5c5b-8add-d616db081ee0", "text": "two teenage boys are sitting on the couch playing video games. We see them from the angle of being behind and above the couch. The room is dimly lit by the light coming from the TV that is in front of them. Both boys are holding a video game controller in both hands and are making natural video gaming movements.\nThe video game on the TV screen is moving and appears to be a vintage Nintendo style of game "} +{"id": "7002422", "video_name": "ed192a2f-c459-5fb2-a5b0-1194e4267e09", "text": "Stress and Oil Production in facial skin "} +{"id": "2003869", "video_name": "4ec9c261-bbf3-5901-826f-a5eaa0fafff4", "text": "A Fast moving Boat with a Man On it in Ocean 16:9 of 60 Seconds "} +{"id": "3003542", "video_name": "4030b82e-1ceb-5d6b-9c1f-e0b40865bc9e", "text": "A German Shepherd running happily in a courtyard. "} +{"id": "6003868", "video_name": "03340d6d-eeb0-58da-88f8-851ccc47d731", "text": "an angel woman and an angel man with swords merging and becoming one angel "} +{"id": "0005340", "video_name": "1919046a-44d3-5900-82af-5b4c812f105a", "text": "Claudiu gets beat at League of Legends by Alex "} +{"id": "3003313", "video_name": "0562faba-b9dc-51e2-820e-fea7f7718cce", "text": "a young man, And his four friends! "} +{"id": "0005911", "video_name": "2323255a-3264-599f-b1cd-b4d27d57a7cc", "text": "a man drow painting in stand many people see painter "} +{"id": "3004467", "video_name": "08e36267-2df9-5758-b01e-ee23de9c904c", "text": "glass train car, big explosion, smoke, fire, broken elements, "} +{"id": "7002032", "video_name": "981628e2-b32e-533b-b097-37827a173aac", "text": "pulsating orb of source energy in the opening hand of the creator "} +{"id": "3006045", "video_name": "0540bb2b-d72b-5fc9-a08e-873297b20591", "text": "high quality video of ancient roman soldiers marching through a dark forrest, cinematic "} +{"id": "2007297", "video_name": "1be14bca-f448-5ce3-b357-d08233389d8b", "text": "A sunny day at the local park. The sky is clear, and the playground is bustling with kids playing. Our five young heroes, Emma (8 years old), Liam (7 years old), Olivia (6 years old), Noah (5 years old), and Mia (4 years old) are ready for an exciting day of fun. 3d cartoon style "} +{"id": "7003652", "video_name": "a65b9008-5617-5ec7-9e05-b30920310634", "text": "Cut back to Lily in her village, looking up at the enchanted forest 4k "} +{"id": "6003013", "video_name": "b14e6fda-b19d-5253-a9ee-e74fc95fe615", "text": "ironman standing in the middle of a grassland with cloudy skies, lots of lightning in the sky "} +{"id": "1005766", "video_name": "6a1a4032-23c8-5538-8af3-a2d0978a4403", "text": "rabbit hopped through the meadow and into the dark, looming forest that bordered its home. "} +{"id": "4003072", "video_name": "64615911-dc17-54c6-bf8a-c5838c2436ad", "text": "An image featuring ancient statues or guardians that watch over the forgotten history of monsters and humans.Animated cartoon "} +{"id": "6002048", "video_name": "dae38d0e-f0fc-545b-a7f1-e34d4130cf40", "text": "computer terminal with code being generated for hacking "} +{"id": "2003437", "video_name": "f53f970f-037f-5550-aa4a-0f91c916ae57", "text": "Chinese men living in 200 B.C. weeping,8 k artistic photography, photorealistic concept art, soft natural volumetric cinematic perfect light, hyperrealistic, cinematic,oil on canvas "} +{"id": "4002498", "video_name": "a6856b1b-d434-5608-96df-16cb0ea4c676", "text": "The Monkey King in armor is walking in the dense forest "} +{"id": "8001561", "video_name": "0747cf84-98f1-5793-864d-e7dc62a82d11", "text": "fish swimming beneath the sun from surface of water "} +{"id": "3003248", "video_name": "08b09862-992f-5664-bf3e-e967eb03fe43", "text": "A little boy is hugging a Golden Retriever puppy. "} +{"id": "0006837", "video_name": "34000215-13d0-5b51-a39c-93d81f8530ba", "text": "make me a sky of rain and thunder "} +{"id": "4004784", "video_name": "237ffbf2-a6b1-5793-b155-3e98114246e1", "text": "cave with beach, dinosaur, white crystals, mushrooms, Mayan ruins and explorers with a dog "} +{"id": "3005800", "video_name": "71dabd54-a72e-5554-9052-b5b39f7fa82c", "text": "Bruce Lee plays on the DJ console "} +{"id": "6003369", "video_name": "193d1877-401c-5eb3-9f0d-154da4126a92", "text": "a man cooking the fried noodle with big prawns "} +{"id": "8002882", "video_name": "b7be0f84-f86f-52f4-b701-30664e3678a1", "text": "sunrise on the field in anime style black and white style and the wind blows hard "} +{"id": "8002957", "video_name": "b6598edf-8bab-571f-8583-c382a98db11a", "text": "castle standing in a smoky mountain, wind blows through the trees and flowers, motion 1 "} +{"id": "2004138", "video_name": "4b665742-731a-55b5-a06a-3f65a33eb064", "text": "a boy hidding behind a big rock on a desert "} +{"id": "6004938", "video_name": "b81f73d2-7a8a-5d01-bff0-bf1197ed863e", "text": "Ethereum symbol sending and receiving tokens (\u0442\u043e\u043a\u0435\u043d\u044b \u0431\u0435\u0437 \u0438\u043a\u043e\u043d\u043e\u043a) to and from Arbitrum, Optimism, Polygon, Gnosis, Base icons, symbolizing interoperability. "} +{"id": "4003936", "video_name": "ca7be23e-f84b-59cd-8b30-82e0cb9e1bca", "text": "warcraft orc and human in space "} +{"id": "2004706", "video_name": "8d484569-0c75-5dd3-a903-b5bc86156805", "text": "Man in Spiderman costume in NYC at night, harsh flash photography "} +{"id": "2004658", "video_name": "f6724585-25e9-5bd5-901a-47153c38d400", "text": "one tiger, roaring fiercely. His fur is bristled, and his eyes are filled with anger "} +{"id": "3003815", "video_name": "adf5b680-af89-574f-88f0-fa073784c72f", "text": "2 girls dancing in bikini an a table in the bar in super realistic "} +{"id": "5001956", "video_name": "9c6dcf45-5c21-5b23-8422-d0b66366d260", "text": "Rows of Dystopian Settlers in Brutalist Mausoleum Alfred Stieglitz grainy black and white 1900s "} +{"id": "7002824", "video_name": "d77ad993-5c46-5f35-93ce-d610af86d762", "text": "elves parachuting out of airplane over residential neighborhoods animated "} +{"id": "6004980", "video_name": "43b0432a-7fb9-514e-9559-bacf4e1a53f8", "text": "The girl is feeding the rabbit while the flowers are swaying in the wind. Is this what you wanted me to translate? "} +{"id": "7002689", "video_name": "aacb220e-e0ff-5222-b8b8-acb4fc904059", "text": "a person wearing a cloak walkind down on a forest, suddenly a obscure and intimidating person appears from behind of a tree, they look each other and both turn around "} +{"id": "2005059", "video_name": "47b93fe4-ff3d-5c67-999e-6d67d335cb20", "text": "a girl watching her phone in front of a vending machine "} +{"id": "2006061", "video_name": "2465839c-2819-5102-a0b9-ce7ba8c3fd02", "text": "blue eyes in a white ladies face "} +{"id": "0006681", "video_name": "30dea65e-e95d-5f43-a889-b51aa2d7bd0b", "text": "create a ms dhoni pic for laptop wallpaper "} +{"id": "0005707", "video_name": "1fda9408-d04d-5e16-adce-7eb6cdde17bc", "text": "close up video of honey covering the piano,peter witkin style stage, red and wood tones color scheme "} +{"id": "6002915", "video_name": "c9db6c1c-1ad1-5386-a910-cb06de4e3cbe", "text": "Orca jumping out of water at stary night with fire works von Gogh "} +{"id": "5001121", "video_name": "7c64d5c8-2c2e-55bd-8e46-c2bc0b034a2f", "text": "a man driving past a billboard with paparazzi outside "} +{"id": "0006527", "video_name": "2e2025e7-6c4c-57a5-a787-89e493e9fae9", "text": "Hamster landscaping room, realism, beauty, model miniature "} +{"id": "0004604", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "animation of a dj performing in an enchanted forest, studio ghibili style "} +{"id": "6002960", "video_name": "6707a387-9e66-5c8a-991e-0e43d93fec8f", "text": "A bicycle on top of a boat. "} +{"id": "6004219", "video_name": "3b65a0a1-dac0-53b1-94ea-a51387550178", "text": "spider running across wooden floor, dark mood "} +{"id": "6004879", "video_name": "bcba5134-11d2-5189-b459-d834e5dd00af", "text": "A helicopter crash in the mountains, news reporter looking at the crash "} +{"id": "8002684", "video_name": "33f01371-d843-5389-936d-a3e3285c1486", "text": "dancing natural woman on blue water. 0 gravity world "} +{"id": "7002346", "video_name": "d0e05700-9a50-5359-a7ff-167edb82b028", "text": "Old owl and squirrel meeting a friendly rabbit against the backdrop of a setting sun. "} +{"id": "0006848", "video_name": "342be0ef-7b56-52b4-9873-3d46e76cd65e", "text": "make infinite looping ,ocean,red rose petals ,angels "} +{"id": "0004266", "video_name": "061775bc-c583-51fe-b986-52bd42e480c1", "text": "super 8 footage of blimp flying over warzone "} +{"id": "3003566", "video_name": "f96c6fd2-dd4d-51d7-9483-6afe48e85f45", "text": "rusian rocket crushing in the moon "} +{"id": "3005962", "video_name": "24927ac6-a9be-5c94-8b1b-84d830a4774d", "text": "inside a fashion show a female model walking zoom out "} +{"id": "2007185", "video_name": "326bf82a-296b-5d07-b662-13c90e31db3c", "text": "a closeup of a road wet from rain "} +{"id": "4002203", "video_name": "f033dd5d-4d84-51ea-919d-1f086660d7d3", "text": "Two friends. One reaches and takes the others hand. "} +{"id": "6003164", "video_name": "bed9929e-72a6-5435-9489-b85e58877c02", "text": "revenge sleep procrastination, realistic, motion 4 "} +{"id": "4002692", "video_name": "0bc7a711-8a02-5918-b651-3e48a9a19154", "text": "Monkey eating a sandwich inside a school with trees "} +{"id": "7003491", "video_name": "c89263f8-d9c5-5795-bd4c-43732ec8f291", "text": "Nature destroyed under fire and robot feet destroyed "} +{"id": "2003626", "video_name": "c75ba6b3-b63f-52d1-94b1-b442b5f5df62", "text": "a one epic big alieneye falling from heaven on earth and explosion with message come out of the dust, stroboscope art and hyperdetailed. HD Message: PPPOPPI see you (Font: MODERN) "} +{"id": "7003646", "video_name": "d4be39b1-a9a6-5d5d-9884-7351a64ca85c", "text": "close up zoom of robot girls eye glitching. Vibrant colours, high quality, 8K "} +{"id": "3004779", "video_name": "8dc22eed-f3e4-5902-9ff9-ba2643aaef3a", "text": "hands floating in outer space galaxy sky stars clouds dynamics motion camera zoom out "} +{"id": "3005187", "video_name": "33daacdc-9659-54c1-b7d7-4ad83b021533", "text": "Beavis and Butthead are cooking bread. "} +{"id": "8001990", "video_name": "3276969d-0733-5afb-ab76-1e058e8877ae", "text": "With time, Peacock learned to appreciate the diversity of beauty in the forest and began to rebuild his friendships. He also discovered that he had his own special talents, like dancing and making others laugh with his antics. "} +{"id": "8003297", "video_name": "1e8e2171-32f7-59f7-96f4-1c9fb75cf70a", "text": "anything you would like in a tiktok format "} +{"id": "2006836", "video_name": "54c7d2ef-6c13-5bfa-841f-94018dd9280c", "text": "Hatim left and after many stages reached Daman Koh. What you see there is that the river is full of blood. "} +{"id": "8003010", "video_name": "0ded460f-1312-5960-8139-9f98b97412c1", "text": "a king standing from a throne "} +{"id": "8002881", "video_name": "f1bc46d5-3182-5fe1-b1d1-21357457576a", "text": "a man reading a book on sofa "} +{"id": "4004620", "video_name": "64e77fa6-0345-52a1-9250-d00f65dccfbc", "text": "Show how civilization appeared on planet Earth "} +{"id": "1004894", "video_name": "5a6aa5b0-cbc3-5fae-8296-d3c74779eb30", "text": "In Featherdale, Lily discovers her unique ability to talk to birds. "} +{"id": "0004022", "video_name": "01ac7872-8e1b-5ac9-b729-c90710fc1988", "text": "night, meteors falling, wide angle, city "} +{"id": "4003342", "video_name": "71460957-716f-5432-b96b-bc5363ebf519", "text": "a metaversw world where with a robot wearing oversized t shirt "} +{"id": "7004915", "video_name": "b1a0602d-6034-59b2-a267-ea68f7275065", "text": "first person view of a cell phone while the screen is scrolling through social media post "} +{"id": "1006848", "video_name": "7d24ae24-087e-5851-b271-65ace03048e1", "text": "Boy in Red Shirt Playing Dog faces, in the yard of his house, in front of his house there is a park with many trees, it is night, and above the trees there is a large white illuminated oval figure "} +{"id": "0005900", "video_name": "22f65260-5773-5995-926c-4b943243b23c", "text": "husband leaves his wife, wife cries and begs him not to leave "} +{"id": "0003062", "video_name": "365775ba-d583-5735-81dc-5ea43f0f6307", "text": "A boat sails on the sea "} +{"id": "1004203", "video_name": "4db1c092-d23b-52c5-b63a-10ad5ef6868d", "text": "2 anime characters running opposite each other and jupm to beat each other with fist, use fire and water elements, fantasy, 16:9, sparcles, moving camera, earthquake effect, birds flying away, lights "} +{"id": "3005621", "video_name": "ba303fc3-8350-555b-ab81-63c0c3bcf9fe", "text": "A crescendo of eerie music as the camera pans to a shadowy figure in the corner of a room. "} +{"id": "2003485", "video_name": "a7e39a92-a21e-5dc6-a85c-09b5d84f234a", "text": "25 years old Amitabh Bachchan having long black beard playing Piano. "} +{"id": "1005707", "video_name": "68e6e957-7925-5f9f-9d8d-7af6592628f5", "text": "A child holds a paintbrush and draws, and the characters in the painting move on their own "} +{"id": "0006395", "video_name": "2bc6ffe8-e22f-5033-8eaf-4db7d3811f82", "text": "frightened cat, yellow eyes, zoom out "} +{"id": "2003995", "video_name": "96434a73-fdce-5635-a0e4-08d494b8cc77", "text": "drone shot over motion picture studio lot in 1930 "} +{"id": "6004649", "video_name": "0edb58b4-398b-52d9-97bf-3e7da7153d74", "text": "a close up of a hand embrodiering a pattern onto a piece of cloth "} +{"id": "1004677", "video_name": "56e845e3-1bbb-5ae9-b288-7557143503e0", "text": "a dog and a cat has a boxing match in a ring. "} +{"id": "3006231", "video_name": "d2dd354f-1016-57be-848f-38d4f17deb15", "text": "Shame, regret or despair. Sad lonely young man with depression or stress. Ashamed person in sorrow after mistake. Upset victim of discrimination Stock Photo about war "} +{"id": "0003395", "video_name": "3ccfc894-efe2-5f11-bc38-742eb7e1b31c", "text": "labrador police inspector at traffic light "} +{"id": "2007210", "video_name": "8e396ccc-56c6-561d-b19d-c55f5419214c", "text": "a man was looking at a stone inscription in the middle of a wilderness where the vegetation was very high "} +{"id": "2006649", "video_name": "12d82fbd-90d5-50eb-992d-8892e2443432", "text": "The surface of the earth is full of pineapples and nothing else "} +{"id": "3003019", "video_name": "6c0177d8-42fd-5840-aa72-7ea16f5792c7", "text": "Australian Shepherd chasing after wooden stick , running in the grass "} +{"id": "6002007", "video_name": "bc117894-8919-5968-af1d-9fe591bdb1b1", "text": "Create a video showcasing the intricacies and importance of the arterial system in the human body. Highlight the major arteries, their pathways, and the vital role they play in delivering oxygenated blood to various organs. Include engaging visuals, animations, and informative narration to make the video educational and visually appealing "} +{"id": "8002253", "video_name": "758905a8-ae8a-5ab3-8aa6-f599cbc0b659", "text": "Everyone keeps dancing with the wind, creating a soothing and repetitive movement. Everyone in the picture is laughing and laughing, and the joyful scene, as time passes, enters another space and time from one point to another, four dimensions, for a longer time Message: 1 Attachment "} +{"id": "2004942", "video_name": "401d9df9-0417-5c58-9a17-7c007b3edab7", "text": "Charles Pierrot dances alone at the disco "} +{"id": "4002601", "video_name": "ab5acbce-9312-51a1-9bcf-afe7e6713c5d", "text": "best goal ever in football, view from the top of the pitch in a real football match "} +{"id": "3003265", "video_name": "605d5d1c-3093-5af6-9278-b46bd0e89bc2", "text": "In a warm room, there is a fireplace and coffee. Outside the window, heavy rain is falling, and the indoors are filled with a hypnotic atmosphereimage: "} +{"id": "3004949", "video_name": "c5311380-6920-5965-8735-405de2ce23da", "text": "group of horses running towards me with the sun rising from the background "} +{"id": "4002586", "video_name": "dd9d97de-0dfa-532b-8fb5-a81a4a9fea03", "text": "Opening shot of Superman flying through space with urgency "} +{"id": "2004368", "video_name": "a7ca5103-231b-5a08-9e11-b489938e0073", "text": "a wooden throne surrounded by fire "} +{"id": "4003940", "video_name": "6f62907f-d353-5caf-8fd9-1a1c74a62c07", "text": "A lush jungle with towering trees, Leo in the midst, looking perplexed "} +{"id": "2005771", "video_name": "43c5b88c-5318-5edd-aa2b-3939482f66e5", "text": "Dr. Slump arale chan is doing yoga "} +{"id": "5001026", "video_name": "bd16ef1c-ab4b-5d27-9fdd-15a390ea69d1", "text": "a person playing piano very fast "} +{"id": "4002509", "video_name": "ea9eb8c9-2ada-5adb-913c-503d6d57907c", "text": "a fox is chased by a lion in a forest , realistic "} +{"id": "0004421", "video_name": "08a4e6ec-5fb3-529e-a1b6-cf0f38a9e66c", "text": "Explore the idea of \u200b\u200bcosmic entities or guardians who oversee the process of intergalactic reincarnation. Use mystical images to bring this idea to life. "} +{"id": "8003015", "video_name": "bf9ce851-446f-5d7b-85da-9af4eec08166", "text": "a swirling portal of cosmic energy Message: Sage Life (Font: COMICS) "} +{"id": "6003257", "video_name": "83cf0dac-d897-5726-a468-213536fd29c7", "text": "cows walking in a jungle, realistic, 8k "} +{"id": "3004993", "video_name": "adc20d23-93e8-5329-9fd5-afc62fbd6f82", "text": "a new earth with a new moon "} +{"id": "2005683", "video_name": "5b046026-4337-5d63-a08d-4851823c9c22", "text": "Award Winning CGI Animated Short Film "} +{"id": "1005120", "video_name": "5e6787db-e65d-5cb8-a1b0-adbc5e8341b0", "text": "Taylor swift sloppy eats a drippy cheese bratwurst, ultra realistic, high contrast "} +{"id": "6002995", "video_name": "2ccd50d0-106d-5937-9db6-e3a07edb1dbb", "text": "double exposure experimental late 1970s 16mm cinema, ocean water and mirror reflections causing disorientation in the fashion model "} +{"id": "6004435", "video_name": "ff2a0a70-8ad7-558b-8278-29d102d66465", "text": "illustration of a woman hiking in the mountains "} +{"id": "2005144", "video_name": "dc80d7b3-f571-5646-8619-007f9bf8f6bf", "text": "the space with stars some planets and a shooting star Disney pixar style "} +{"id": "1003178", "video_name": "3a757c89-cf29-59a7-9679-2b74b12352f8", "text": "Displaced children and their families left behind as a result of the war, and the smoke of war behind them is a real cinematic scene "} +{"id": "8002800", "video_name": "04042cb6-2c72-556a-8c18-7999e73ee34e", "text": "christmas village 3d with houses full of snow "} +{"id": "6004117", "video_name": "c52ee67d-6ac9-5886-8f10-e67c1acdf2e2", "text": "Bigfoot, growls, Mayan tribes, close up, silver eyes, gold hair, full detail, fine jewelry, rich style, "} +{"id": "2007287", "video_name": "c54ce11f-d1c6-57c2-9c43-6c129b09191b", "text": "sharp eyes of a male charactor looking at the far horizen. camera panning from extreme right to left, movements in the eyes concentrating on the target, eyes slightly twitching, round face. hair flying, breeze, UHD, high resolution, hyper detailed, sharp image quality "} +{"id": "7002096", "video_name": "3a22b8ce-9b35-56d1-aab7-6aa950b37bca", "text": "little boy receiving present from santa "} +{"id": "1005322", "video_name": "61c18ee3-c4bf-584a-bc76-027158b36f8a", "text": "Kartikeya Sharma and Arjun Malhotra find themselves kidnapped during a flight. Stranded on an isolated island, they face ruthless terrorists demanding a powerful suit forged from Etherealium. "} +{"id": "4002858", "video_name": "6e048256-e0aa-53ae-bfc7-afc04ec70589", "text": "3d animated moana running in forest "} +{"id": "8003145", "video_name": "2a7dd90d-537c-56d5-a10a-531981bfc985", "text": "create a short animated video of a young girl with shoulder length brown hair that is slightly wavy. the girl should be mixed english and cambodian. show the girl sitting on the grass in the shade of the tree with the book resting on her knees as she reads. in the background show the beautiful open landscape with butterflies flying and flowers in the meadow. show a bright blue sky with some fluffy clouds. the video should depict an air of comfort and peace. "} +{"id": "6003882", "video_name": "50965b2c-ef0d-555d-b20f-a01a297b9021", "text": "parot flying with friends Message: 1 Attachment "} +{"id": "2005416", "video_name": "0cafee58-f15c-5e57-8d2a-0c4dc7901aab", "text": "tall man wearing a hooded cloak, their face obscured in the distance "} +{"id": "2004371", "video_name": "9d3e7726-4a09-55c6-80f8-8e14dab180f1", "text": "the boy was looking at the girl on the meadow "} +{"id": "3006709", "video_name": "f289e79d-ce99-5f75-a076-cec79aeefe5b", "text": "a light effect, black and white, high contrast "} +{"id": "8003903", "video_name": "829cf790-1296-52b8-b219-242009be7e4f", "text": "Make a 3D cartoon of A group of armed men are marching towards the magical tree. The villagers are watching them with fear "} +{"id": "4003179", "video_name": "c01cadc5-54fa-5c8f-8753-7c85a7f4ccf9", "text": "Visualize the impact of the establishment of Israel on the Palestinian population. hyperrealistic,cinematic,high detailed "} +{"id": "0003212", "video_name": "3957fb1e-f3c3-57d4-bbdd-5ede1eded78c", "text": "city skyline Message: The Streets Win (Font: MODERN) "} +{"id": "1005723", "video_name": "694c7efb-9697-5d3e-9ebe-588d8bf645c9", "text": "a house near a river with snow capped mountain in the background Message: 1 Attachment "} +{"id": "6004915", "video_name": "d30367aa-92f2-5cb1-a7a7-b9e53ef7881f", "text": "Clint Eastwood Riding a Chopper through the Desert with a beautiful blonde woman as his passenger "} +{"id": "2006263", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "Ice age earth in space realistic video "} +{"id": "6003550", "video_name": "eb2ff41d-de99-5b28-9dcc-52cd41664aec", "text": "a blonde woman in red dress walk down the street. "} +{"id": "3003032", "video_name": "8f1af2db-6861-51f8-8676-b71a687562b3", "text": "suv automobile driving trough mountains. Off road. Big mud terrain wheels. "} +{"id": "8002699", "video_name": "e02c1fed-3257-5197-bbe3-6ab3b8b9d570", "text": "carthage ,atlantis civilisation,genral hannibal barca, elephant, port of carthage,army,gold,diamont "} +{"id": "2005643", "video_name": "8ace3852-b5fd-562c-b28d-2910e30172f2", "text": "The spaceship landed and a man walked out, surrounded by mist. The camera zoomed in from far to near "} +{"id": "2006742", "video_name": "089c2766-5f63-5a5a-b376-017a2380581d", "text": "A road in bamboo forest, the bamboo waving because of the wind "} +{"id": "1005448", "video_name": "641fc14b-59e2-5b6e-8f9c-51209aa872cb", "text": "a breakdancing robot making cool and complex moves "} +{"id": "8002466", "video_name": "334f8aa4-bd78-5a10-94f1-2ecba9950ef1", "text": "a rabbit with glasses is playing the grand piano while a fox is standing behind and watching. "} +{"id": "8001533", "video_name": "b0e9bb8d-7a0d-5191-aa01-91c31dc78a07", "text": "leisure park, camera from top to bottom, realistic "} +{"id": "7003909", "video_name": "dbba3256-4d57-5044-966e-38d04823a561", "text": "purple king cobra striking into camera "} +{"id": "3003471", "video_name": "16e2111e-c664-5c1e-8da5-cdc74c938e44", "text": "gray tabby cat face superimposed onto human dancing in a concert crowd, flashing lights, "} +{"id": "3006047", "video_name": "1a7cf28b-91d8-563c-9682-1b1b8f326383", "text": "crow on tree snake under the tree "} +{"id": "8003549", "video_name": "0f61252c-89a3-5af2-8927-387de8ca6c80", "text": "hands of a girl making sweater designs on white sheets "} +{"id": "6002133", "video_name": "1b8bdc38-a2cb-5d4a-b458-bc448afd22b6", "text": "looking at the camera while hair blows in the breeze "} +{"id": "6004862", "video_name": "d6eaebf1-8dfd-5d90-b50c-19b783e4cfd3", "text": "warrior following a trail that leads to the mountains "} +{"id": "8002933", "video_name": "a3635692-9395-56c5-8a15-6cc9e27ffd49", "text": "super saiyan animation with orange and white hair "} +{"id": "0004106", "video_name": "034c61e3-5a10-51f2-bcc6-112bfd3a9cdc", "text": "full overflowing arcila clay religion a la Jonathan Meese fondo de br into overlapping pieces haribo seamonkey a la Peter Doig "} +{"id": "3003026", "video_name": "427dd7ab-8200-5929-9bdf-89e9541499d5", "text": "Handsome guy with with T pose, Ar 16:9, 8K quality with detailed image "} +{"id": "2007094", "video_name": "6d2fae53-ff5d-59fb-9e50-2791cfc5b973", "text": "a young boy who was picking up starfish "} +{"id": "7004815", "video_name": "aa1a0be4-58f9-538b-8946-de99778cc6b5", "text": "Against all odds, they stood united against colonial rule and apartheid policies. "} +{"id": "4003107", "video_name": "b7b5aa78-acd7-5a3f-b20b-0ca649233525", "text": "a man in a dark overcoat, his face covered by a hood, with a sledgehammer in his hand, walks past a destroyed humanoid robot in a dark spacious office of an IT company, dark atmosphere, traces of riot and destruction in the office, red and blue lights in the background, futuristic style location, sleek, modern, ultramodern, high tech, detailed "} +{"id": "2004775", "video_name": "334b7342-79a2-5023-b90e-79aa754b811c", "text": "arthouse band of skeletons playing jazz in a graveyard "} +{"id": "6003707", "video_name": "f86d03c6-5ad9-502c-9dd6-d73a273d35a9", "text": "time in watch shows 4 o clock, Wind blewing "} +{"id": "8003538", "video_name": "d29db513-8eb6-53e7-bc58-c4d623c6e81d", "text": "Idris Elba starting as Nestle Crunch flying through the air "} +{"id": "1006750", "video_name": "7b93358e-3a6e-5d4b-a5bc-377102b85ba5", "text": "High definition, a beautiful model who resembles actress debi mazar poses her entire body in examples of boudoir style photography, she is wearing skin tight leather and High Heeled shoes, see examples and replicate "} +{"id": "6003535", "video_name": "693ee903-94ae-5c0d-a458-7b23b7764638", "text": "Man, green hair, singing in a studio full of fluorescent colored lights. "} +{"id": "1004392", "video_name": "5134383d-e869-595b-86ae-c4f3a39ae928", "text": "logo for challenge rooms logo brand of physical, mind and skill base challenge "} +{"id": "2003659", "video_name": "66069913-5a1f-5917-966a-f52daa0aa2d8", "text": "young age with spets Message: 1 Attachment "} +{"id": "3004314", "video_name": "4baec2fa-75b2-5203-88b5-3179ff48eb3c", "text": "The character finds a door in the middle of the fence and opens it.) "} +{"id": "7004434", "video_name": "09e091d4-9767-5e40-ab25-3c34931e74dd", "text": "a golden labrador retriever walking on grass in a big backyard, in 3D style animation "} +{"id": "3004556", "video_name": "3df68915-e817-5ff3-b364-836a6f2fc61d", "text": "police cars driving through the city fast sirens on (high quality, city backround, sirens on.) "} +{"id": "4004949", "video_name": "2cdca7c5-f153-5513-9f1b-054bbc6e3682", "text": "world on fire, transparent background, sideview "} +{"id": "8001775", "video_name": "0fa76024-b6cc-5461-9229-e67fd347d088", "text": "blue eyes 4 years old girl throwing a froozen power "} +{"id": "1004813", "video_name": "58f1c5c9-8956-5ceb-870d-bc530bb86a12", "text": "cinematic view of man with hat in the style of jodorovsky "} +{"id": "2005032", "video_name": "9ea0c7bf-d526-5c88-923a-9dc9dfa3680f", "text": "hd realistic cyberblast explosion of an alien object in an futuristic purple forest "} +{"id": "1003138", "video_name": "39e1e978-c136-5b5f-8831-fe965d070f4d", "text": "old king walking with staff in swamp with lightning in background ultra 4 k professional "} +{"id": "4004740", "video_name": "7110d6ff-c205-5e30-ade0-0a38efacd0c3", "text": "milk spilled in aluminum cannister, view from the bottom of the cannister, 3d "} +{"id": "7003460", "video_name": "b33f35e9-dcb6-5a6a-8c00-2db260fbbe29", "text": "Show an image of a ship leaving port, with a sea ferrer crew and sense of adventure and anticipation in the air. "} +{"id": "8001760", "video_name": "6e7a5014-03f9-5c95-ab95-804d20c84f8c", "text": "Ultra mega realistic video, people look at the sky and see the moon in a big explosion "} +{"id": "3005186", "video_name": "fe66d273-8794-5724-b663-88f1644206f1", "text": "cloudy sky with. camera zoom out Message: LIA (Font: MODERN) "} +{"id": "6004060", "video_name": "bd0c84cc-ee33-593e-984a-36c24982210f", "text": "a paris landscape with the eifel tower throught a window, in a cozy light purple room with a little cat sitting, raining on the outside, in a realistic way, with pastel colors "} +{"id": "2003232", "video_name": "efcc5c7e-db62-553b-b5e9-e5ecb989be1a", "text": "1950 aesthetic movie. Realistic graveyard from drone view. Green grass and Black sky. "} +{"id": "8002558", "video_name": "2b921786-3c32-5865-967e-41c576ad541a", "text": "Create city Tbilis, recorded with drone, cinematic, 8k. 2125 year, style cyberpunk "} +{"id": "6004834", "video_name": "ee570c65-4951-5abf-8e0a-9eda8f3144c1", "text": "Close up zoom in on a boxcar tourist "} +{"id": "3005175", "video_name": "a225b15f-1233-528d-9106-844f32a9cbcb", "text": "The dog runs against the background of the dollar, Bitcoin, "} +{"id": "6004559", "video_name": "e1dca287-2993-5e7a-899b-5e96da705a86", "text": "a kitten with a pink collar and a white chest that is white "} +{"id": "2003836", "video_name": "f7d3e287-6d3c-5ca3-8b61-8775f02b66b6", "text": "A Indian female singer sujata Roy sing a song in music studio wear big necklace and earrings,mic in her hand, realistic cinematic style, camera: front side view \nDuration: long "} +{"id": "1004062", "video_name": "4b54af6c-527f-5c0a-abb6-12f07e72ff3a", "text": "8 bit Turkish soldier war witth 10 USA soldier "} +{"id": "8001868", "video_name": "23b2d1a9-f8ff-531f-bc66-26b27386332b", "text": "two frogs sword fighting but the swords are tadpoles flopping around as they fight "} +{"id": "5001878", "video_name": "1da9dd42-5701-5a8e-a0c1-8041ab475213", "text": "realistic eye center going into brain "} +{"id": "8002047", "video_name": "416aa9ba-a4de-5a92-8ff4-af95adf98ea6", "text": "an girl reading a book under a tree, summer time, warm colors, ghibli animation style "} +{"id": "1004280", "video_name": "4f252192-1396-5983-8023-fca250c04885", "text": "Leaves of trees and plants are moving slowly becouse of breeze. Slowmotion video. "} +{"id": "2006518", "video_name": "27cbaf3d-5ca2-5482-8d03-d62c0701e255", "text": "Video of Jesus walking on Water "} +{"id": "0004355", "video_name": "079b0b07-3920-5fb1-a77e-39284565dc5c", "text": "two men wake up in bed, startled by a loud noise "} +{"id": "6004417", "video_name": "f30d13e1-d32d-5a89-92e8-6bc236754313", "text": "a haunted, abandoned asylum at midnight, with flickering lights and strange, ghostly figures moving in the shadows, 4k "} +{"id": "8001961", "video_name": "748611de-11d6-5a35-893f-76705506af79", "text": "machine that allows you to travel between dimensions "} +{"id": "3003301", "video_name": "24cf453f-b317-5a4c-b329-bc08d0c7c05c", "text": "body covered in opalescent slime asmr "} +{"id": "6004121", "video_name": "8dea5cc3-c3da-5239-8e73-13b864709a20", "text": "a bouquet of fresh cut fruit Message: ULTIMA (Font: MODERN) "} +{"id": "2005553", "video_name": "6b2d67ef-3d7c-5660-9980-84f961224d7d", "text": "A man drinking wine with smoking. "} +{"id": "2004305", "video_name": "207dab16-9be6-529f-b845-d22f9fa530cd", "text": "Potential Complications: Visuals: Graphics illustrating potential complications, such as liver inflammation, fibrosis, and cirrhosis. "} +{"id": "7003168", "video_name": "b4360ab7-1967-5b46-9c67-86b12cf81922", "text": "Archangel Gabriel with a white and gold robe and a trumpet in his hands "} +{"id": "7002528", "video_name": "d7ae001b-fa6b-5aa8-916f-c72e06447ef6", "text": "an origami earth Origami paper folds papercraft, made of paper, stationery, 8K resolution 64 megapixels soft focus "} +{"id": "1006869", "video_name": "7d6db84b-2e84-59b3-a1cd-2ef311cb3654", "text": "create an 3d realistic cartoon boy who Walk in Forest in 5scend "} +{"id": "3006406", "video_name": "bd6fa180-03ff-5671-b9b7-11aa00b8a995", "text": "Two workers walking in The factory dining room, a shadow sees them through the window, black and white noir comic. "} +{"id": "7003008", "video_name": "e7159729-7052-53ee-84df-874d5ebb7ecd", "text": "the bird flying on the top of flowers in a flower shop\uff0canime style,watercolor style Message: 1 Attachment "} +{"id": "0005701", "video_name": "1fb2cd64-d2cd-5f8d-af92-50df85334887", "text": "Create a scene featuring a man who is utterly amazed, his expression one of shock with his jaw dropped, all framed in a 9:16 video format and recorded in mesmerizing 4K resolution. "} +{"id": "8001106", "video_name": "3681f9df-7f45-5d6d-ae9b-06b0cfcc44bf", "text": "Depict a moment of reflection for Princess Seraphina as she gazes out over the kingdom, contemplating her experiences and the lessons she has learned. "} +{"id": "3005929", "video_name": "0100c4ed-5a45-5e24-8781-cd0d7003099c", "text": "The war between the peasants and the government, a strong confrontation "} +{"id": "2004861", "video_name": "5066153c-23ca-5840-8290-88705da255bb", "text": "The elements inside spin up Message: 1 Attachment "} +{"id": "7004552", "video_name": "dbfee972-ee41-5061-bab6-65571c3f943c", "text": "a cute mushroom human with a city background "} +{"id": "2005756", "video_name": "a4181ae8-7b5d-53c6-a308-f54e92750311", "text": "Imagine a bright, sunlit meadow with animated flowers swaying in the gentle breeze. Show adorable little friends, each with unique characteristics, eagerly gathering for a morning playdate. Envision vibrant colors and a joyful atmosphere that radiates happiness. "} +{"id": "0003199", "video_name": "39225495-8614-53c6-bf13-d5c5d9ed66ba", "text": "cute lizard hybrid in dark forest "} +{"id": "2004606", "video_name": "192c5620-876b-565d-918c-276e3ac51da5", "text": "10 year old boy with a teddy bear in his hand "} +{"id": "6004516", "video_name": "dcb0218c-f7f7-5062-b2d1-58f9e4cbd420", "text": "white rabbit sleeping under a tree in a forest with holding carrot "} +{"id": "1004697", "video_name": "57503f6d-cbaf-582c-a7a1-0f351826166b", "text": "video for 2d pixel game intro for player evacuated from war to an island where player needs to start a new life player arrive on the island with nothing but a small bag of belongings "} +{"id": "2007322", "video_name": "3d56d0be-861d-5a1a-96ab-e77fea0d86f0", "text": "watercolour painting of the inside of a clothing store in 1910 "} +{"id": "0005494", "video_name": "1bd36a3f-e81c-5502-8257-32ac00d2f877", "text": "vintage futuristic space land with gorgeous neon stars. 10 second clip of the ships view of gradient neon starscapes and space beauty, include cool futuristic objeccts and magic "} +{"id": "2007033", "video_name": "65ed16ea-37d3-5d18-803d-ca32e95e1c2b", "text": "a florida turtle sunbathing on a rock, realistic, highly detailed "} +{"id": "4004903", "video_name": "4b4022e9-5616-571b-a815-66b04623c2b7", "text": "The house is smoking. There is fire on the house. The sky is dark. An explosion has occurred. "} +{"id": "4002474", "video_name": "1b568914-1359-5c30-bbb5-7c71dd2989c5", "text": "bane in dark forest, zoom in camera, Message: 1 Attachment "} +{"id": "2003887", "video_name": "079097b0-1d13-5bbe-a875-4f08278a9d43", "text": "brown anime girl walking inside a coffee shop "} +{"id": "8002451", "video_name": "1af0fff0-5e54-5f81-81f9-b0211f2c8593", "text": "A girl plays with her friends on the hills in a village Message: 1 Attachment "} +{"id": "1006598", "video_name": "78e6c350-3b88-5721-9379-7e88df5b7780", "text": "Shawn Mendes, climbing up a rock, no more than 2 legs, no more than 2 arms "} +{"id": "0004570", "video_name": "0b5d827d-f0c6-5340-a489-550388a0ae64", "text": "Fry lock from Adult swim staring at Bob Marley. Drawn like ancient Egypt hieroglyphics. "} +{"id": "2007561", "video_name": "08602ea1-59e1-5a07-89c9-7b60a81050ca", "text": "a hero in a blue robe picking up the sword from the pedestal "} +{"id": "6002793", "video_name": "f0415aac-5833-5890-9218-9cc1fec1734f", "text": "A male angel apear to a young lady "} +{"id": "5001037", "video_name": "42a504a8-326f-54a2-841c-c163d1281c9d", "text": "A shadowy passageway where a patrol car flickers its beams, casting an otherworldly aura upon the scene of a crime. "} +{"id": "1006561", "video_name": "784043a6-d383-569f-9c81-1b19873df26d", "text": "4 scientist working in a laboratoryAnd experiment with monkey "} +{"id": "2006295", "video_name": "f69938ad-db66-5d52-944a-d6a54385eb55", "text": "a man picks up a sheet music from the ground in the street "} +{"id": "6002373", "video_name": "51e4ac84-405f-56e4-b6c6-c16a6efdac7e", "text": "Elon Musk vs Mark Zukkerberg in a game of chess, surrounded by waves of lava crashing together, 10 k, wide cannon lens "} +{"id": "0005216", "video_name": "16aaab53-f0c7-59d1-9d6e-89f7a2d5f85d", "text": "camera zooming in, very fast motion, planets spinning fast, high resolution, good quality, wind blowing fast "} +{"id": "2004820", "video_name": "08845f28-37a0-52ca-8b6a-6a58cdd597a3", "text": "an animation of a balck dot ona white background standing still, then moving, then multiplying ina point cloud "} +{"id": "2004153", "video_name": "74b29950-850a-599b-803b-baa46bbcd794", "text": "a drone video of a landscape of city, Ultra HD, smooth animation, cars moving, unreal engine, 4k, grayscale, black and white, IMAX shot, 60fps, award winnings "} +{"id": "3005280", "video_name": "9e815af4-e6e4-5712-be64-ee27b1ce9af2", "text": "a cinematic 8k video of a tsunami moving towards the Miami Coast "} +{"id": "1006713", "video_name": "7b0403e7-4b27-5ac2-9992-a2ca97cbb586", "text": "The sweet everdale family gives life to the little dough and the dough becomes a child. "} +{"id": "3004472", "video_name": "5f33b244-7856-5549-b749-5b5f7146759c", "text": "the glorious medieval battle of karbala, red sky, man in center with glowing face "} +{"id": "2005076", "video_name": "54c66592-2070-5b08-8d02-fb49a3b5776d", "text": "As the Chinese New Year approaches, this researcher forms a clan to initiate a plan to unleash the potential of the dragon tooth, turning the city into a battleground where tradition clashes with rebellion. "} +{"id": "6004762", "video_name": "9e05ed7a-e5f0-579b-b93b-2819eb1eb0bc", "text": "Car wash machine realizes unmanned car wash "} +{"id": "7002600", "video_name": "2d6e8865-d24d-53fc-b20d-e527bb5c9113", "text": "man in blue apron fishing in a river of lava vibrant color hyper realistic "} +{"id": "6003362", "video_name": "a3a003a8-e4f4-5345-abef-d4bee67b6858", "text": "Discovery of a situation on a modern streetscape with changes in buildings and device technologies Message: 4k (Font: MODERN) "} +{"id": "2005976", "video_name": "bf30d217-4b21-5ef5-ba72-16bd232ed4b1", "text": "Create a video where a man hands a woman some keys, they are in a car dealership. "} +{"id": "3003033", "video_name": "91504d4f-5514-59b3-8604-0dce1d78ea70", "text": "red headed woman running on beach "} +{"id": "3004255", "video_name": "b7d9b516-34d1-5189-8b30-b896fd0eb3da", "text": "An artistic rendering of bright meteors streaking across a starlit sky "} +{"id": "2006136", "video_name": "bd47a397-71e7-54cc-b724-36a8ccf50596", "text": "Our journey begins in the eerie Harz Mountains, where legends of witches and dark rituals once plagued the land. The Brocken, the highest peak, was believed to be a gathering place for witches on Walpurgis Night. Locals claim they witnessed strange lights, shadowy figures, and bizarre rituals that sent shivers down their spines "} +{"id": "1003514", "video_name": "40e6ef2d-6576-577d-bbd5-04374f682354", "text": "colourful mountains, dreamy day, rainbow, waterfall, birds "} +{"id": "2003826", "video_name": "0aedc483-b736-5309-bdd0-f58dd90af9ae", "text": "vhs lofi noise forest path at night "} +{"id": "6004520", "video_name": "410cb6eb-9819-5131-97ea-4d5ef61c9395", "text": "butteflies flying above a magical steam in the forest "} +{"id": "0005285", "video_name": "17e19e45-a914-58cf-b169-032cbfc8e61c", "text": "rain day in city of Yazd, iran "} +{"id": "1005144", "video_name": "5ecf45ea-5d70-51a8-bac4-5757b70e7bdf", "text": "a very beautiful mermaid swimming towards a sea witch "} +{"id": "3006082", "video_name": "b11f1a70-e7b0-5122-a396-bfcd203902c8", "text": "Labrador in the milky way galaxy in a spacesuit trying to get a bone biscuit "} +{"id": "3006642", "video_name": "c2447502-95d0-51b3-9b13-42b797979504", "text": "anime man and anime girl are dancing and flying through the air "} +{"id": "2006606", "video_name": "01a2ecd6-d508-5a9f-89d3-30da020382ee", "text": "An intact little monk walks in a stately temple with snowflakes in the air "} +{"id": "0005648", "video_name": "1eaa713c-2ba3-5389-9eb3-259063ead2be", "text": "The video focuses on the key parts, such as the upper respiratory tract, bronchi, lungs and alveoli. Additionally, it is important to highlight the importance of the trachea and larynx in the system. The video should be in high resolution (32k) and focus on details with smooth movements. "} +{"id": "7004593", "video_name": "5b7eba29-ece2-567d-ad09-a78253e440d2", "text": "moving, a metal guitarist and drummer playing in a dimly lit basement with colorful lights, 8k, majestic, cinematic, feature film "} +{"id": "4004421", "video_name": "55338fe6-eb6c-5b01-8000-2bcf6e1f800a", "text": "adam driver jumping onto his bed "} +{"id": "5001178", "video_name": "cda9c64e-0f76-5651-8b2b-91f4d8ef64f4", "text": "Tom running after Jerry, in the middle of time square in New York, and then into the set of The Big Bang Theroy, then Penny catches Jerry. Cinematic "} +{"id": "6003583", "video_name": "e354c499-f415-5a9a-9b60-cd0c9428f672", "text": "man sitting on toilet in balenciaga "} +{"id": "5001679", "video_name": "7712b24a-640d-5539-8e0b-9c84e20936b4", "text": "A Blonde woman is running on the park. "} +{"id": "2006449", "video_name": "5a43c85b-d7d3-5c6f-a801-c924a6c4fe24", "text": "Old Ship Captain in a Steampunk Spaceship in Deep Space With Crewmates, 4K Realistic "} +{"id": "2005238", "video_name": "b8cf3c88-f79d-58f3-b993-4d6be1fe0b76", "text": "black ink point falling on paper textured background on traditional chinese art style and being transformed into chinese art style trees "} +{"id": "8001188", "video_name": "8fe2ceda-6bc7-5841-a3ca-bf4c571befe4", "text": "two cowboys meet on a pedestrian bridge at sunset, crows flying overhead. above an series of interlooped dense motorways "} +{"id": "2003079", "video_name": "a28562b6-94e3-502b-9522-ebbf6a462e83", "text": "Couchbase logo formed on a tide of a beach "} +{"id": "2005021", "video_name": "d6eb0de2-cac7-508b-9dee-b9dbf9cb106e", "text": "animation of little old lady greedily quickly eating bowl of pasta in front of The Colosseum of Rome "} +{"id": "1006294", "video_name": "733f385a-33ab-592f-abb4-148ac6d5ec02", "text": "an astronaut dance party on the surface of mars, digital illustration "} +{"id": "2004163", "video_name": "0359aa6d-2e71-5504-af4c-0946d7bc9a2a", "text": "camera zoom out, bong rip, monkey, cloudy from smoke, futuristic "} +{"id": "7003790", "video_name": "24d42eb4-3223-593a-b80d-cdedeff881cb", "text": "snake has a feet. And it can run "} +{"id": "1005580", "video_name": "66adca17-4857-5cf7-b585-e77e986ab710", "text": "Create a 3D model of a small house in the middle of a forest, with a young boy standing in front of it, looking into the distance. "} +{"id": "3003062", "video_name": "9ec9463e-c125-5e1d-999a-a5f671866d79", "text": "a secret agent cat on a mission "} +{"id": "3004883", "video_name": "b421a525-448b-5bdc-abf4-daae2bd56121", "text": "Online loneliness in the style of a somber documentary, natural lighting, medium shots, muted color palette, and steady camera movement "} +{"id": "8001158", "video_name": "445ed9e9-8f15-5de3-87d3-9fccfe1f3ec9", "text": "skibidi toilet in war high quality in ratio 9:16 "} +{"id": "2005189", "video_name": "bf434da6-be7a-58e8-80e4-06770642c7b3", "text": "podcaster with a fake wolf mask. 4K "} +{"id": "4004375", "video_name": "7a5c742b-fa69-5dc6-ae33-217a93652911", "text": "Oscar ceremony, slow motion, cinematic, in a 1960s French film "} +{"id": "4004652", "video_name": "201a38cb-1a7f-547f-82ce-be53b4958029", "text": "an alien discovered by the government an being held as a prisoner "} +{"id": "5001046", "video_name": "7866b4b7-04c6-5464-9cd1-dc9fe8a4b561", "text": "a dinosaur museum with mobile smart apps "} +{"id": "0005960", "video_name": "23f31f5b-8bc1-5c63-856c-1f0aa150b84d", "text": "animated girl talking with polite facial expressions realistic HD video "} +{"id": "3003691", "video_name": "99f6a225-23e6-57d1-a9e3-6b071b74d1e7", "text": "majestic lion, king of the jungle.\u201d "} +{"id": "2007817", "video_name": "7cd88b09-dcf5-54a4-97a5-851c4f9a086d", "text": "trump in a 3xl tall tee shirt "} +{"id": "8002999", "video_name": "bba9feac-94dd-52a5-a63b-d36e5e0af884", "text": "A bright and mysterious celestial light appearing in the blue sky at dusk, forming a silhouette that suggests a divine presence. The light emanates a soft glow that illuminates the surrounding clouds, evoking a feeling of anticipation and awe. 8k 16:9 "} +{"id": "2005310", "video_name": "7a3fca69-2af9-5137-9dfc-210b4a6ee49a", "text": "1980 film of spaceship in universe "} +{"id": "0005962", "video_name": "24013c5d-4577-51ce-9355-9f7f399b00bf", "text": "A very beautiful huge White horse, with a long flowing mane, runs through the water at night. "} +{"id": "3006001", "video_name": "2e063fab-c652-5ee2-a14f-952794eda900", "text": "handsome man in suit running fast "} +{"id": "7003064", "video_name": "a9430e1a-4db7-53b6-92dc-644fb4ea3907", "text": "falling leaves, autumn, steam from cups Message: 1 Attachment "} +{"id": "3003496", "video_name": "f5ec34c6-be82-5f57-9fe1-af0f9dc35b55", "text": "make him an air force pilot of 2nd worldwar posing to camera "} +{"id": "1005895", "video_name": "6c74fbe4-4600-503d-8e73-8fc75a474bcc", "text": "Cheap travel, travel, flight tickets, additional amazing pictures ftom traveling "} +{"id": "7004378", "video_name": "1874639f-5248-5cb5-afed-d95c805a4412", "text": "Showcase heartwarming clips of people coming together to support each other during difficult times, such as neighbors helping each other, healthcare workers applauding, and community volunteers assisting those in need. "} +{"id": "8003497", "video_name": "ad6e3577-60f8-50be-809d-bb35af000008", "text": "Transition into a sweeping aerial hyperlapse, showcasing the diversity of the Martian terrain. Capture the contrast between rugged red cliffs and sprawling green valleys. "} +{"id": "3006785", "video_name": "7a8890bd-d389-57b7-b16e-4e438afd3ac2", "text": "The adult girls in the room tried to escape, but the door closed "} +{"id": "7003129", "video_name": "cd06befd-717b-521d-ad9a-a18c241d0431", "text": "a young depressed man dancing in the rain "} +{"id": "6002107", "video_name": "1e617754-f058-5abb-a004-cde5669e7a1b", "text": "cinematic huge shadow demon looking at a little girl in a big empty class room "} +{"id": "2007641", "video_name": "d830ae74-2279-5f39-ba10-63ede6adcb19", "text": "A 6 year old boy gets a diaper change "} +{"id": "6004101", "video_name": "b7ccaa21-f0c4-51f6-99d3-562f07d63d1d", "text": "people eating hamburger in the restorant "} +{"id": "3003904", "video_name": "1c13bee5-1682-5237-80cb-063462fa20a8", "text": "gradient colour waterfall zooming out at high speed "} +{"id": "7002377", "video_name": "694c7efb-9697-5d3e-9ebe-588d8bf645c9", "text": "a house near a river with snow capped mountain in the background Message: 1 Attachment "} +{"id": "0006268", "video_name": "29bc4250-559a-561c-93f7-6fa0355fe135", "text": "waterfall night Szene Littel girl show this waterfall "} +{"id": "2005602", "video_name": "3d64296e-d05d-5f0d-9990-833e2903ceb5", "text": "time lapses haunting atmosphere creepy Cemetery, floating ghosts,windy,rainy. "} +{"id": "3006904", "video_name": "e1677253-2f2a-5437-b721-b918061c743e", "text": "bastmobil chase scene in the night "} +{"id": "8001128", "video_name": "8006bd3c-580e-58a3-b044-9454e820c569", "text": "generate video showing ancient indian temple and a smiling woman facing the screen is writing on a paper "} +{"id": "1003808", "video_name": "465428fc-0bb1-516b-bf59-49696ed462de", "text": "A battle of goblins and programmers, two armies throwing laptops at each other. "} +{"id": "8003584", "video_name": "78bba307-2fdd-584a-9821-7c2b1166ae2f", "text": "fox get striked by lightning and become bright, "} +{"id": "4002870", "video_name": "c53f48a1-3658-52fa-8817-b021b2d2ad0c", "text": "a samurai looking upon a city, on a thundering and rainy night, standing on the top of a dojo with a blood dripping katana. Anime style. "} +{"id": "4004045", "video_name": "86393f18-2bc5-5c4f-8ead-5498e5063c92", "text": "a giant angel made of water and showering out water "} +{"id": "6003144", "video_name": "bd4ee9e8-eb04-5fbf-a29e-34cbe57da5c8", "text": "An Asian company employee calls on the phone to sell a product. "} +{"id": "4002679", "video_name": "a5adf815-bbbe-5fa3-af3c-32d5d8a72c82", "text": "salamander and turtle holding hands cartoon "} +{"id": "1004520", "video_name": "53f078dc-dd6a-5699-ab7e-16ab015805fd", "text": "Odd1sout animation awkward photo pose. 20 seconds "} +{"id": "2005315", "video_name": "6f0f6438-5eff-5320-bb5a-e98017e595a6", "text": "A collection of different Ancient Indian Ayurvedic herbs neatly arranged in small containers or jars, highlighting the significance of herbal remedies in Ayurvedic healing. "} +{"id": "4002229", "video_name": "fb8708b2-8ec7-5811-a198-e151f5716654", "text": "cyberpunk neon city, People falling down, 9 person who has been shot down, Sons of Anarchy, shooting guns, android girl, cinematic shot, The view from above, zoom out, close up, 8k, masterpiece "} +{"id": "8001620", "video_name": "ab7b31d9-57fd-5d37-9a10-80392a7bb952", "text": "Tonny Stark rides an Audi, Thanos appears, shakes his fingers, Tony transforms into an Iron Man suit "} +{"id": "3004421", "video_name": "60a49709-7aed-5e7e-a7a1-eb4555013d46", "text": "tv flickering, a little boy sitting in front of it "} +{"id": "1006214", "video_name": "71ef93c5-0fb4-50d7-bf1d-e4bc3c702999", "text": "There are dead bodies on the road "} +{"id": "2005323", "video_name": "eb373ae4-b2cd-572e-a24d-b3ae8c211391", "text": "A dilapidated Victorian mansion, cinematic horror hyper realistic "} +{"id": "6003283", "video_name": "c2e07740-66df-5623-98d0-9ccec33ff943", "text": "ants walking on the sidewalk, macro lens, HDR, camera zoom out Message: graffo (Font: MODERN) "} +{"id": "1003399", "video_name": "3eac0859-eee5-5a55-9158-e124a71b6e84", "text": "a tattooed entrepreneur signing a contract in the white house. "} +{"id": "1003631", "video_name": "42e212ce-5acc-5e87-93c5-51bac8638e52", "text": "In a sunny room, a dog and a guinea pig are playing "} +{"id": "4003524", "video_name": "22e05aa2-2fe0-5e0f-9705-b5912c9c0a75", "text": "Mike and Sully from Monsters Inc having a pint at the bar in an english pub. Pixar animation style. "} +{"id": "3005055", "video_name": "964e940b-d08c-5591-8280-4f2641fe026c", "text": "picturesque view of a serene countryside farm. Rolling green hills extend into the distance. The sun is setting, casting a warm, golden glow over the scene. studio gibli style ,animation , anime , hand paiting "} +{"id": "6003150", "video_name": "28a75e50-fa52-52ac-b84f-28941f92f04d", "text": "space station, man floating, planets, two moons "} +{"id": "1006123", "video_name": "7048c385-8f3a-5e96-80c7-11de7c3b8be8", "text": "a pile of paper being transformed into digital pdf documents "} +{"id": "1005124", "video_name": "5e812de5-d85c-5b12-997a-4699bfe7eafe", "text": "iron nail sinks in water ,iron nail foats on mercury "} +{"id": "0005957", "video_name": "23e90091-b272-5bca-9a05-bc6fffa79e87", "text": "One day, Adix decided it was time to follow his dreams. He wanted to leave the narrow borders of his homeland and live in Germany. "} +{"id": "0004878", "video_name": "10ce8bbf-7554-5de8-be65-fa464edfeaca", "text": "Centuries ago, an ancient prophecy predicted the coming of a terrible darkness that would threaten the world. "} +{"id": "4004847", "video_name": "9f97cf1e-fd40-514b-9470-c86c30831204", "text": "Beyond the city walls, from Temple of Cold Hill "} +{"id": "6002197", "video_name": "2dd1271e-c201-5f60-aec9-e63480ece9dd", "text": "a cat is lying on a tv "} +{"id": "3006896", "video_name": "bd1afa8b-0d5b-569f-820d-d79c94ada785", "text": "Generate a action scene video of a metal star is throwing thrown straight towards the camera. flawless green screen background. "} +{"id": "3006183", "video_name": "b28028bb-07cc-5722-8e0e-ee2043da672a", "text": "Disney like real 3d animation ,Dorothy a little girl with long hairs cute wanted to go back home to Kansas, so the Munchkins small people advised her to seek the help of the powerful Wizard of Oz in the Emerald City. "} +{"id": "2007982", "video_name": "a76325ac-5f71-5eec-ac6b-7dc49eb5a7f8", "text": "generating a vedio A parrot flying in the sky for 3 second "} +{"id": "3005432", "video_name": "8725966c-d52b-5eea-8d29-866370a85d48", "text": "one Elara wandered through the wood Message: 1 Attachment "} +{"id": "2004532", "video_name": "38c98fc6-1094-5db4-b910-768ed4bac2d4", "text": "transformers megatron vs optimus prime bumblebee comes in and almost kills megateon but fails and dies optimus prime was mad and megatron ran away optimus prime is sad but he still has atuovot friends left "} +{"id": "3006455", "video_name": "86198819-20f0-5270-8106-63bc24855626", "text": "Depict the characters enjoying a shared meal or treat, emphasizing the joy of simple pleasures "} +{"id": "0004720", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "opening eyes moving arms head baby Jesus in manger filled with hay, uhd, glowing stable Bethlehem, uhd, wide view, high lighting, cinematic motion "} +{"id": "0003812", "video_name": "43f081ae-4b35-5cca-8412-1cf62b654847", "text": "An old, wooden table is at the center of the barn, covered with hay and a discarded cardboard box. realistic and hight quality. "} +{"id": "1006315", "video_name": "73956e25-b209-51df-b787-2ee31600b9f9", "text": "ironman use phone to pay at cafe, 1:1 "} +{"id": "8002240", "video_name": "c290e541-6aa1-5adc-9433-18f2096eebd2", "text": "a full moon night with stars in the sky, boys playing football in the field, in 8k UHD "} +{"id": "1004019", "video_name": "4a872aaf-23de-587a-8a4a-6cabc6770aa5", "text": "In the darkness of night, the man walks alone, with a backdrop of a scene of doom "} +{"id": "1004322", "video_name": "4fd05f86-b8b2-5b0c-8a17-a2cd7dc30b6a", "text": "The camera captures a serene meadow in Europe, painted in soothing beige tones. The lush grassland, alongside verdant trees, emanates a tranquil and serene ambiance. Bathed in gentle sunlight, the quiet rustle of the breeze and the chirping of birds resonate, creating an atmosphere of peaceful relaxation. The natural beige hues gently envelop the space, offering a sense of calm repose. "} +{"id": "2007124", "video_name": "d49e7d42-dbe1-56da-9434-84b5a28498cd", "text": "man in the rain, painting by Emil Nolde "} +{"id": "0003008", "video_name": "3580b17b-c7e7-5e66-a861-6d6e7da41b86", "text": "black and white grainy film textures of a ghost walking through Paris with a newspaper in hand "} +{"id": "4003343", "video_name": "ae91baed-127d-56a3-aadb-7700a77d411e", "text": "a delicately animating renaissance painting similar to michelangelo sistine chapel, the vibrant pastel colors and detailed drawings "} +{"id": "4004105", "video_name": "b45169a1-bedc-5f43-ad10-3caadfd6a4d2", "text": "office with multiple people working with computers Message: que gostoso (Font: MODERN) "} +{"id": "2007258", "video_name": "7f04c0dc-0ec5-5174-a8cd-b315128f66b6", "text": "ghost in front of people flying over then "} +{"id": "2007924", "video_name": "74e264a7-f104-5c61-af79-f90f59588549", "text": "3d circles around a wire as electric conductor,all circles with same radius all sl8ghtly invisible , arrows on their circumference show8ng clockwise rotation direction "} +{"id": "4003070", "video_name": "363c8482-ad49-5a09-9e8f-091740359a46", "text": "mature smiling venezuelan woman walks toward me. she is holding a plate of arepas. it is winter time in an old denver neighborhood "} +{"id": "4003837", "video_name": "4c80309a-cddb-5780-a9af-45780ddab2ad", "text": "1974, blurred VHS tape copy quality, masked folk cult people dancing around a maypole, a giant rainbow in the sky glows brightly, summer, warm, hazy, prisms of light, the wicker man "} +{"id": "4002729", "video_name": "2ecf6437-ed11-52ec-ad83-cf3e3f08c49f", "text": "kitten named Kiki hearing a melodious song and following the sound. "} +{"id": "5001454", "video_name": "3a88dbae-b092-5259-9aa3-0f65af779b8d", "text": "Paqueta Brazilian football player wearing gold chains and Diamond hd 4k 3D design animation movie "} +{"id": "2006764", "video_name": "2c0869ef-1837-5973-b5cf-73b16e02310d", "text": "a school of tropical fish swimming in a beautiful coral reef, fish swim in unison, yellow fish, tropical angelfish "} +{"id": "2007930", "video_name": "e95aa6ed-9c2b-5695-86dd-216c46b98cf4", "text": "a 10 second video where you can see a house is crashing in realistic "} +{"id": "2006078", "video_name": "ae34c4db-8d38-5ecf-9ec4-0c56907de4c0", "text": "man open fridge, put meat inside, night, "} +{"id": "6002678", "video_name": "358f032b-5236-571d-9797-3150306b5029", "text": "crown in smoke Message: Mohammed prompt (Font: MODERN) "} +{"id": "0005260", "video_name": "176b3ae1-48ce-5704-8296-f1e7616c211d", "text": "gaon purani A vibrant Indian village with colorful houses and a lush, green landscape.\nRahul, a young and ambitious man, returns to his ancestral village after years of working in the city. "} +{"id": "1004949", "video_name": "5b8ba006-4c7b-5b27-8d4c-794f53c4e6f8", "text": "cinematic submarine out at sea with sailors standing in top of it. Hyper realistic, 32k "} +{"id": "6002037", "video_name": "d00062b1-3481-5c72-99a0-005bc3c90eaa", "text": "a person giving their seat on a bus, another sharing food with a homeless individual, a child teaching an elderly person to use technology. "} +{"id": "8002607", "video_name": "a129b473-db34-5132-98f2-cafbbf392975", "text": "Aafreen, on the other hand, was torn between her remorse and the harsh reality of her actions. "} +{"id": "2006091", "video_name": "730a01bf-c273-5c64-a3eb-a51532d11b15", "text": "home alone 2: lost in new york"} +{"id": "0005222", "video_name": "16da1cc4-cf51-5958-b85a-d862b6ac3c30", "text": "nature rain falling on a grassy plain "} +{"id": "1004527", "video_name": "541d35eb-e286-5ac9-901d-2c722fbd20c9", "text": "Chinese New Year celebration, night, a family, house, happy, wearing Song Dynasty clothing, Song Dynasty architecture "} +{"id": "7002329", "video_name": "cbbb5440-c2e6-5ec4-81c5-2f96656ade05", "text": "fallen angel going to the market in USA in 1970 "} +{"id": "6004550", "video_name": "b9454243-f714-566e-b4d2-87a5c96f8102", "text": "KNICKS fans in the streets celebrating after winning a championship "} +{"id": "6004946", "video_name": "e5352b9e-cb10-513c-a7ca-b062fce17896", "text": "Giant battleships flickering lights and jetting blue flames Message: 1 Attachment "} +{"id": "7002374", "video_name": "465de95c-5e13-5d53-8f2b-7c3a62e1d041", "text": "replace the earth with a black beam energy Message: 1 Attachment "} +{"id": "1006361", "video_name": "747cbc9d-4f57-5bb6-991c-aa53567d86cf", "text": "Design a dark and gritty poster featuring the Joker, capturing the essence of chaos and anarchy "} +{"id": "3003604", "video_name": "30cb1e5c-cdd0-5f0d-ac3e-8a914a26a238", "text": "a mushroom made out of blinking psychedelic eyes "} +{"id": "0004443", "video_name": "092e5863-4ee3-5646-8c5d-03aa0507b2e1", "text": "a chinese girl standing behind the window, looking toward to the camara "} +{"id": "8003460", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "A group of friends were sitting in a roadside teahouse and engaged in pleasant conversation. "} +{"id": "8002655", "video_name": "25752ec5-5618-5a3d-860e-f7e6cb1f3d54", "text": "some aisan girl,18 years old is walking on school corridor "} +{"id": "3006185", "video_name": "0b5991a1-550e-530e-bbd1-09f3f2f1f441", "text": "a capturing moment between a man and a woman meeting for the first time "} +{"id": "2006014", "video_name": "371919d1-c2ec-50e5-a595-fe5d85719b88", "text": "A day of rain and snow "} +{"id": "7003729", "video_name": "228aef1d-8a71-5243-beb8-df07f5d3b6f1", "text": "A cute girl just giving news "} +{"id": "4004426", "video_name": "247a7eaf-ea36-549d-bb68-307deb309ba2", "text": "tayfun ate\u015f lettering on all shop signs "} +{"id": "0005706", "video_name": "1fda1ee1-78e0-545e-afcc-4812532b3412", "text": "logo with creativeline mark on a black background by adding paint spots "} +{"id": "8003485", "video_name": "ca89c00c-189d-5c6f-ad0a-e59fb81f4d12", "text": "step by step instructions on how to cook pancakes. "} +{"id": "8001739", "video_name": "6f05a1eb-a97c-56cf-94f7-ea7f1f15bfdd", "text": "A person sits in a room full of screens and observes the world and obtains information. "} +{"id": "0005505", "video_name": "1bfa2eaa-d3f7-518b-9417-1f783113fcb7", "text": "forth industrial revolution symbol that circle in the hexagonal shapes, yellow theme "} +{"id": "0006760", "video_name": "3295abac-a4c1-5dc7-a7b2-935a4c55fe55", "text": "an astronaut escaping a burning house "} +{"id": "2007223", "video_name": "e5bd7338-ba8f-5f9f-ae95-177939197ad4", "text": "sunset on the right, stopmotion stereoscopic "} +{"id": "3005217", "video_name": "511f7325-c56b-51a2-9fca-47d3ba5fe79f", "text": "generating video where Gwagon and Lamborghini driving in rain "} +{"id": "6003630", "video_name": "b66bfcdc-2186-5020-9a1b-82a1d6e7c84f", "text": "a flash of light in a dark room flashes in the darkness for a second and then fades out, it gets darker "} +{"id": "7003792", "video_name": "642bd9a4-607c-514b-a17e-fafb20b9199a", "text": "a warrior standing on the water holding a war banner "} +{"id": "8001774", "video_name": "9b58c5b2-659d-500b-9f6b-87ecee5e88bf", "text": "one man eating physical sun rays "} +{"id": "7004110", "video_name": "65a8f02c-b4ec-58df-8334-725e397013f8", "text": "a cute girl crying on a japanese train "} +{"id": "0004576", "video_name": "0b6a24be-5c23-5294-997f-b74da45fa6f8", "text": "A man talking while sitting in a restaurant "} +{"id": "2006414", "video_name": "f13a5fe7-e975-5c7b-9a2d-62812f257d5c", "text": "a young man year 1915 inside lighted candle looks into the camera and turns her head "} +{"id": "2004786", "video_name": "851131ab-72ce-5fc6-abfc-035c5172f54c", "text": "transformacion a cyborg Message: 1 Attachment "} +{"id": "2005094", "video_name": "6ff11a33-d546-5ba4-8750-1fc66b5e9d40", "text": "Showcase a calming bedtime routine to underscore the role of adequate sleep in cognitive function. "} +{"id": "0003551", "video_name": "3f60d0f0-e93e-52e8-b1f6-7885b0db2f38", "text": "video of messi rising to heaven "} +{"id": "2006755", "video_name": "d24cfdd9-0bd6-5a98-802d-adfe46f8d722", "text": "pulsating light bulb in a dark room "} +{"id": "0006834", "video_name": "33e8fb80-996b-5d1d-b602-9a66e7c35b58", "text": "Show a modern computer vulnerability scan tool showing identified alerts as red and orange beacons flashing on a modern monitor "} +{"id": "5001279", "video_name": "cb1967ab-421f-5436-ba0e-45d0527f2546", "text": "feet shuffles, a scared orc scooting away, ground view, facing a monster "} +{"id": "7004276", "video_name": "80a264dd-7ce8-5a85-b4c2-56daf518d5b0", "text": "Felix the cat riding a horse 1970s Dreamcore "} +{"id": "0006645", "video_name": "3027cd97-a1d5-55c0-b55c-73fc52b4e113", "text": "A high quality short video of a person analysing stocks in a close shot "} +{"id": "0004817", "video_name": "0fa1d1d4-941b-55f2-b0cd-e6ba5fb2d5c2", "text": "almonds are poured into a plate "} +{"id": "2007742", "video_name": "55ade78a-16a1-5b58-bbad-be3b45e420a1", "text": "image of a tropical forest with cats crossing as the text moves away from the screen Message: Good Morning(Font: MODERN) "} +{"id": "7002293", "video_name": "7a5c966b-655d-5dd9-8e72-162dc4302cc5", "text": "did you miss style cartoon a young lady and dress blue top white skirt reading a book in forest near river long hair looks straight down face smile "} +{"id": "4002753", "video_name": "248a1a0c-8682-5427-9b01-b58c7afaeeba", "text": "A cinematic shot of the attic, with soft lighting filtering through a dusty window and the camera slowly zooming in on the teapot. "} +{"id": "8001476", "video_name": "9f193517-27da-50a3-931f-3814f1be9c90", "text": "Photoreal,4K,Demon Rising from the Sea,Reptile,Storm,Dark Clouds,Lightning,Rain,Key Lightning,Dark Blue and Gray "} +{"id": "2007710", "video_name": "064a93dc-33f2-5398-956b-26b7c097085b", "text": "flying down Orange Street, Kingston Jamaica. "} +{"id": "2006720", "video_name": "8533955f-ff42-5955-a080-7a50363d219a", "text": "In outer space, thick clouds come rushing towards us. "} +{"id": "4004779", "video_name": "0217781e-2b91-581f-8a98-a7d6270a7a58", "text": "a cinematic ambient of Tokyo Neon signs near a cyberpunk skyline in Toronto at night with stars and the milky way, planets and stars in the sky, trippy "} +{"id": "4003678", "video_name": "e167c0f8-9af3-5817-ad4f-1a48cb5ec3ac", "text": "A male angel in white standing before a young woman. "} +{"id": "1006868", "video_name": "7d5fc06e-81c0-5dcc-90d9-4ca455e15300", "text": "best quality, masterpiece,ultra high res ,1girl, solo, skirt, midriff, sneakers, long skirt, shoes, black hair, crop top, sleeveless, full body, arms up, standing "} +{"id": "3006294", "video_name": "9a93c4f5-afc0-56c8-9d7e-b5ed766d2b35", "text": "a whispering forest from adventure stories "} +{"id": "3005278", "video_name": "a74a197b-2e0a-5004-bcfb-2d4325dc5c84", "text": "An illustration of a portal within the library, suggesting a connection between the stories within and an unseen realm, inviting visitors to explore the limitless possibilities of the imagination.Animated cartoon "} +{"id": "8003929", "video_name": "74f50d36-a740-5744-b530-f3b0d775d144", "text": "Japanese cartoon style, a doctor in the hospital. "} +{"id": "3004738", "video_name": "73903c86-3422-5ed4-9b26-4bcbd75178e2", "text": "nightmarish imagery, DVD Screengrab quality, Sneaky shot, amateur photo, real life, realism, like a daily life of a Russian people are interrogated under light in a mental hospital. Report, meaty, anabolism, catabolism, soggy, amateur "} +{"id": "0003811", "video_name": "43edc28c-e3e7-53b4-9c43-7b5555254486", "text": "Drunk Angela Merkel Alkohol, Documentary, early 2000s "} +{"id": "0003414", "video_name": "3d410dc2-810a-56ec-9fb4-9489cc45ecaf", "text": "man with magnetic gaze, striking features, face conveys authority, cinematographic, epic, 4k "} +{"id": "0003370", "video_name": "3c5ffa86-a4ec-5182-b8e5-0400916804e5", "text": "Trevor martin rapping at a concert dressed in a black hoodie realistic style "} +{"id": "0003095", "video_name": "36f2252b-557b-565c-9b40-c9bbf4d252c4", "text": "a 1990 super8 footage in the wood with policemen around an umbrella crime scene getting notes and taking pictures "} +{"id": "6004192", "video_name": "ccf4ae9f-45ed-54b7-b9ff-e00ac235200d", "text": "aliens and the best beautiful planet, smooth detail "} +{"id": "2003595", "video_name": "bd9307f5-d64d-5915-a0b5-a4c97aeb538e", "text": "the coranation of the galactic emperor, large throneroom. futuristic, apocalyptic, "} +{"id": "0006474", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "Man dressed as mario eating spaghettimeatballs at a wedding "} +{"id": "2007073", "video_name": "1bab90eb-dadc-547c-b6ad-cfed4881547e", "text": "retro audio amplifier on the moon "} +{"id": "1003363", "video_name": "3dea8ff6-3fe8-51f4-a977-35d11006e5bb", "text": "kratos talking god of war game moving the head and wind "} +{"id": "4004683", "video_name": "0459277c-2a1b-5e25-8b16-352dccce14a6", "text": "a humanoid in futuristic suit on a stage "} +{"id": "0005963", "video_name": "241b2c10-aed6-5f46-a46b-ea7e4db599a7", "text": "Electron microscope image of a human cell dividing "} +{"id": "8001511", "video_name": "c66ae6ef-1b6b-57d7-8805-c74dd5ab4e45", "text": "Actress Galina Mochalova from \u201cStreets of Broken Lanterns\u201d died at 89 "} +{"id": "8002909", "video_name": "7dc72e4a-0d4f-5f92-9322-7e8e87c6561e", "text": "1950s super 8 footage of a crowd of entities walking into the ocean sublime otherworldly "} +{"id": "7004747", "video_name": "f5daef49-d603-522e-bbe5-d441dbe5864b", "text": "clouds moving. people looking at each other. sun rising "} +{"id": "2006279", "video_name": "0e929038-d97a-59d4-994f-72ee17779d3f", "text": "A hild holds a crystal pendulum chain with his thumb and index finger, letting the crystal hang naturally, Disney style, surrounded by the universe background environment, very colorful, 8K "} +{"id": "6004536", "video_name": "1c0babbe-7184-5677-84d9-cd653440a5ae", "text": "a surgeon dodging a flying shake, cinematic "} +{"id": "5001237", "video_name": "1bff5356-04bc-552c-9f3b-ed265f561387", "text": "Early humans, the awakening of the possibility to walk on two legs "} +{"id": "2004567", "video_name": "dbe0b0d7-5c67-5709-8d95-9411c8438f0e", "text": "a sim card with super powers "} +{"id": "8002072", "video_name": "39bba549-a7ad-530c-a761-7c1b2655e404", "text": "two Pixar style rabbits selling door to door in suburban Miami "} +{"id": "1005804", "video_name": "6ac3820a-4d02-5488-802d-2388b500d35b", "text": "gamer boy playing horror games at night and suddenly the door starts knocking "} +{"id": "3005784", "video_name": "c1911e53-c2d9-569e-8b32-cc3646c27a0f", "text": "purple mountain forest rotating floating ball in air "} +{"id": "7002750", "video_name": "15404173-106d-5de5-bd67-9239ebc21dd0", "text": "falling from telephone pole to road, first person view "} +{"id": "5001985", "video_name": "fd2f5840-1fa6-53c7-af31-badf9f092c22", "text": "fighting scene from roman period, a man fighting to a lion, tattoo design, black and white, realistic "} +{"id": "4002918", "video_name": "7a319b2d-dbd4-5a1f-a039-6c5a5dc1d478", "text": "a hyper realistic guy makes eye contact with a hyper realistic brown girl with long dark hair. Camera zooms into her eye. Studio lighting. "} +{"id": "8002524", "video_name": "c9b262e0-7336-56c7-a96a-0020d9886dd7", "text": "collapsing horned plant priestess occult Victorian film photo realism motion 2 "} +{"id": "3005003", "video_name": "b8a68659-524a-5e29-899b-2410c214c090", "text": "A muscular Asia man now ,muscular, dark skin ,with a red cloth tied to his arm, Wear red ancient Roman cloth pants, Holding a spear in hand, we can see a beautifully detailed spear, full body image. action fighting crocodile. Message: 1 Attachment "} +{"id": "8001230", "video_name": "eab40add-53a4-50bd-b7cf-5ba13f8e2ade", "text": "Child, deity, camera on the left, newborn, girl, big eyes, long eyelashes, soft white light, soft pink, high contrast, no grain, element control, water, air, wind, camera approaching, relaxation, happiness, sunlight "} +{"id": "6002172", "video_name": "b95c2d84-0a4d-53ec-b60d-f2e3270b8c1a", "text": "A young girl with blonde hair is sitting on a chair, eating something. "} +{"id": "3005731", "video_name": "29e0b9a0-21c4-5a54-a7e7-ae582e2597a9", "text": "a horror 90s film from a 1990s Screen grab 90s, about dark black clouds approaching in a yellowish contaminated sky, flying carrier escaping from the flood, dark scene moment,their terror an, Uncanny, Dark Horror , liminal aesthetic with 360p graphics, Surrealism, intricately detailed, dark web video, realistic Occult film "} +{"id": "0005238", "video_name": "171743d6-6897-53c5-937f-a6e242e7d35a", "text": "tamplet pizza, sandwich, burger, pasta, macroni, subway, fries, coke drinks all on table, part time details with banners on the wall "} +{"id": "4003141", "video_name": "3984eeab-51d0-55cd-a41b-20fca75b35a0", "text": "Let the bunny sing and play the guitar "} +{"id": "3003200", "video_name": "a8df7592-7798-5704-93cf-ac03340724a6", "text": "The pole shift hypothesis describes a change in location of these poles with respect to the underlying surface \u2013 a phenomenon distinct from the changes in axial orientation with respect to the plane of the ecliptic that are caused by precession and nutation, and is an amplified event of a true polar wander "} +{"id": "1005171", "video_name": "5f2c2bc3-989f-5a56-b69b-2409bef629db", "text": "silhouette of woman taking a bath in the shower "} +{"id": "3005964", "video_name": "47fdb129-f1f4-5abd-af76-95547e44dd1c", "text": "an obese man standing in a dark horror movie setting, he laughs and twitches his arms and legs "} +{"id": "7004140", "video_name": "1d053a51-fb30-5874-b17a-59a4e3df21ae", "text": "beautiful blue butterfly flying around and landing on the left back of the shoulder of a beautiful Filapina girl and slowly change into a tattoo. "} +{"id": "6002862", "video_name": "fff63288-d8f0-5f01-92a4-f2ecc4d226d8", "text": "hyperrealistic 4k futuristic ritual hall of an ancient god "} +{"id": "2003041", "video_name": "809e72c3-27f9-5d05-a88d-e3f880c0046f", "text": "Capture moments that represent cherished family traditions. This could include images of special celebrations, annual events, or rituals that bring the family together. "} +{"id": "7002041", "video_name": "897c306b-4d6c-5910-bffa-cbc95933c647", "text": "large bowl of rice with chicken and pasta in the middle of the plate "} +{"id": "8002937", "video_name": "abf947e2-4991-52ae-acc6-7e134474218b", "text": "crowd of people walking in street wide shot with a billboard message: Life Delayed "} +{"id": "6002407", "video_name": "00fedf4b-e01f-5e90-89cd-6de1b02958d0", "text": "butterflies fluttering girl turn around Message: 1 Attachment "} +{"id": "7004469", "video_name": "82b23feb-7a97-5675-bbe1-3b59818e5007", "text": "1920 nightlife outside a music place in downtown, lots of people having a good time "} +{"id": "3004498", "video_name": "f28d387f-e038-5512-b4dc-6e400d3e5769", "text": "A cyber girl with a white ponytail is walking through the door of a spaceship. She is all white and wearing high heeled boots. In her right hand she holds her cybergun. Her entire body is dotted with blue lights symbolizing cyberspace. Her face resembles Ariana Grande. Her body is full of sensuality. "} +{"id": "8002168", "video_name": "edd2cc76-df9c-5999-bfd1-93138dd58202", "text": "ship of the line sailing, hyper realistic, over the shoulder "} +{"id": "4004575", "video_name": "2dc17966-6e49-572e-9828-8e704db699f3", "text": "beautiful waterfalls, high octane render, hyper realistic, cinematic shot, hyperlapse, track in, 4k "} +{"id": "8003486", "video_name": "c45c40cd-41b9-5172-8f18-3ee9020d5fc6", "text": "Alien sitting at a desk checking their email "} +{"id": "3003538", "video_name": "19691e90-d676-5927-8574-b08a61d84078", "text": "a light beam blasts from space (cinematic) "} +{"id": "2003382", "video_name": "f317920f-c67d-5f7c-a8d1-1d559911aa4f", "text": "ecstatic dance on the boat, style of psychedelic "} +{"id": "0005936", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "a guy with headphones listen songs at night in bedroom "} +{"id": "6002177", "video_name": "97e5e96a-f670-5f2e-b58f-afeb37818def", "text": "a chibi styled medieval knight waving towards the camera POV with a happy expression on his face "} +{"id": "3005235", "video_name": "eae3bf4d-37be-569c-a7c7-4632595beec9", "text": "seagull dressed clothes drinking wine , street porto, portugal "} +{"id": "3003332", "video_name": "323079a3-a350-5e97-a239-86423c17d1ee", "text": "Illustrate the crow perched near the earthen pot filled with a small amount of water, attempting to drink but failing due to the low water level. The crow should have a contemplative expression. "} +{"id": "4002138", "video_name": "86d193bd-6dc6-5d88-b8ce-724384cda8dc", "text": "a street photography portrait of an old woman dancing. "} +{"id": "6003795", "video_name": "5af62072-0df7-5491-acde-29bae330b339", "text": "an alien snake wraps around an astronauts neck in a dark space station. Close up blue tint to lighting with blinking red lights in background. High detail. Ultra high definition "} +{"id": "8002884", "video_name": "9532d783-8dea-54d1-91ce-98405d331984", "text": "a cane toad watching a bug on a log on the ground "} +{"id": "4002289", "video_name": "69f599cd-4e80-55f0-8ecc-b99e9a30167c", "text": "George broke Bank of England and attacked Tai Baht "} +{"id": "0006328", "video_name": "2ab38ec1-a5ea-5dac-8eb5-fc9101a64aa5", "text": "Greece, wes Anderson style, hyper realistic, high octane render, timelapse "} +{"id": "4004473", "video_name": "647bd6e3-b332-5b0f-9aaa-a24e4be6bdab", "text": "Mother Goddess Sita who has a beautiful face. disney style 3d characters "} +{"id": "5001316", "video_name": "a863b621-d0a0-5f3c-a255-65caecfea5f5", "text": "forex market being very profitable and making people happy "} +{"id": "4002248", "video_name": "de8692d9-be3f-5c2c-82c4-27fa57c80b93", "text": "In the heart of the fantasy land, a radiant gem pulsates with an otherworldly glow. Legends speak of its unparalleled power, believed to hold the essence of magic itself. The camera pans around the gem, revealing intricate facets that seem to dance with ethereal energy. Its allure is undeniable, a focal point in the cinematic tapestry that weaves through the fantastical narrative, promising both salvation and peril. "} +{"id": "6003668", "video_name": "dbe17c2c-3375-5780-b31d-832f91cebf11", "text": "5 indian cows talking standing in forest, 2d animated image "} +{"id": "7003335", "video_name": "1ea0fc07-94e9-56ce-9941-a903b6e7f345", "text": "man sitting by campfire surrounded by goblins "} +{"id": "8003863", "video_name": "0958ed91-7266-5f8d-b83c-6d723b79223d", "text": "A person pressed their fingers on their temples, showing a painful expression "} +{"id": "3005525", "video_name": "f2a15f4c-64f1-5efe-b0a1-596a4036739d", "text": "as they collaborate on scientific experiments "} +{"id": "0004504", "video_name": "0a27d75b-b6bb-5849-8acd-4e1a7efe6f95", "text": "machines building a Vending Machine in a futuristic Garge, with Splatter Art Style, Urbance Art style, Overwatch art style, 16K HD , UltraRealistic "} +{"id": "7002687", "video_name": "cdb65e94-8c97-5a6e-8d78-cff9f2cbb6ce", "text": "A subliminal, terrifying video in the style of 1940 films "} +{"id": "4003671", "video_name": "f3126140-8e79-5973-a569-6318be79925a", "text": "soliders minting coins , with beautiful background ancient times "} +{"id": "8002462", "video_name": "275418c8-baae-5653-9341-5b2c11869a34", "text": "a futuristic city, from the top of the buildings a beam of light comes out that interconnects and shows data with 0 and 1 "} +{"id": "6002986", "video_name": "05dcfee2-88da-55c6-bb25-d2c466546717", "text": "that vividly portrays a patient exhibiting signs of physical weakness, instability, and a crooked posture, ultimately evoking emotions of fear and vulnerability. "} +{"id": "2006817", "video_name": "6a76745f-eaa6-50b0-a92b-3da49c6acc21", "text": "A curious young golden fish encountering Snail on a lily pad in the pond swiming "} +{"id": "7002831", "video_name": "d8858c41-2bf4-5b88-82d3-0a29a33d4230", "text": "A mouse lived in a corner of the temple cartoon "} +{"id": "8002708", "video_name": "85a2e045-43dd-5ef0-a7b1-194df4ea0786", "text": "Ultra HD, 4k, Disney or Pixar style, aspect ratio of 16:9. Text on an enchanted forest background says Adapta is the future. "} +{"id": "7003311", "video_name": "2759774c-b912-5999-92da-a3bc57f6ad7d", "text": "A man is fixing the air conditioner "} +{"id": "7002604", "video_name": "0c0ab8f5-deab-59c2-9ab0-8c9b776d4a87", "text": "stop motion of someone growing old "} +{"id": "6004046", "video_name": "86cf6d1a-9a7d-5bb5-9159-947383561b18", "text": "A robot collects and organizes waste on a planet "} +{"id": "0004080", "video_name": "02e087c6-cc27-5da6-8742-210e3299f1b7", "text": "a dog dance party in a cartoon style "} +{"id": "8001912", "video_name": "a4f60997-c762-5dc1-8cde-dc7198d0e3db", "text": "corpse lying in a cave with its soul leaving the body into the void of space, skull in the background, looking at the sky, milky way, dark scenery "} +{"id": "0003220", "video_name": "3982b0db-6361-55b6-8f2d-ef35254a6a7e", "text": "a prosperous citizen in the palace eating together, 4k, cinematic, zoom in, ratio 2:1 "} +{"id": "8003744", "video_name": "d9fbb9da-539b-542c-878a-11c58b5dac02", "text": "lowe level shot. close up. A shadowy figure rising from the lake. dark, thick mist moving across a lake at night. . Cinematic scene. style:Realism duration:Long "} +{"id": "6002111", "video_name": "01fbde2d-00e2-5d9a-9b38-8e9530b01b73", "text": "A woman in a red dress runs through a field with a bouquet of flowers against the sunset "} +{"id": "0003245", "video_name": "39eb4f8a-0b69-55bd-9844-c4abaa98f8dc", "text": "A cockatiel flying through the skies of Dubai at night next to the Burj Khalifa surrounded by hundreds of other birds competing in a bird race. In the style of Pixar animation. Neon. Cinematic. "} +{"id": "0004036", "video_name": "01eb5426-72f6-5280-93c6-d0ff7e65f8bf", "text": "cool gothic makeup boys and girls are serving some good food "} +{"id": "3004429", "video_name": "c42c244a-efcb-50b5-8560-11ebf51327ea", "text": "The camera zooms out to reveal the humanoid fox standing on the dance floor, its body covered in shimmering, metallic fur "} +{"id": "4004739", "video_name": "24c86f1d-0bcc-51db-a104-234b6c9d1f71", "text": "vibrant fall trees are so colorful in the forest and an aerial view "} +{"id": "2006655", "video_name": "b9d910bc-eff5-540f-9942-30ba00cd7425", "text": "Russia has won football World Cup "} +{"id": "8002545", "video_name": "e31df28b-abc8-5eb0-8d73-3baaec9f8513", "text": "A sprightly fairy in iridescent wings and leafy attire leads a dance in a glowing forest clearing, surrounded by curious woodland creatures. "} +{"id": "4002062", "video_name": "ae93d062-2a1a-5707-b7cd-086512baab86", "text": "a man passing by on a road "} +{"id": "2004970", "video_name": "05b6fea5-9f5f-52ac-9af1-5be766b23538", "text": "a girl wear a black silhouette heel with straps to prom and she is happy "} +{"id": "7002884", "video_name": "e473948b-85e1-5c3d-8214-8f539bc8143f", "text": "once upon a time in acicent "} +{"id": "6003544", "video_name": "8a136e85-94b4-5104-8ac5-a85ab7c58e5a", "text": "small kitten cleaning floor with mop "} +{"id": "1003793", "video_name": "45fe5c05-371f-5742-8c5e-51931ffc13f9", "text": "create a lady image who have weared transparent suit "} +{"id": "6002156", "video_name": "6de4237f-07f3-5a32-a4cf-3a8f082a3e13", "text": "a horse walking on the filed, studio ghibli anime "} +{"id": "5001713", "video_name": "c96ab8e9-c11a-5eef-a106-4d497be19b14", "text": "The Prince on a white horse "} +{"id": "1006662", "video_name": "7a0735f6-b461-52d5-8b7f-d50a6dc4dac0", "text": "A discgolf commercial with happy people in the background in forest "} +{"id": "3006916", "video_name": "32d793cc-7e1b-574d-94f7-964b684da05b", "text": "Albeni bar, mmm so delicious, video in style with beautiful characters, girls and guys trying the bar, futuristic backgraund "} +{"id": "7003764", "video_name": "4c9ed8f4-ee09-5efe-be61-2c42c721a22f", "text": "sexy ethical hacker girl working in SOC "} +{"id": "0003704", "video_name": "41fe1cfa-7785-58b6-a26a-452fda8cb999", "text": "stick shift car, man changing gears, ultra realistic, HD "} +{"id": "2005285", "video_name": "93792bbf-f3e2-5a9c-8934-5dc1a2127fd7", "text": "3D Animation Cartoon baby smile on face, watching up the sky , blue pink cloths. "} +{"id": "3003948", "video_name": "216f8e24-476f-5b77-b790-98c192fdc177", "text": "diver, Lennart, 50, eating cake under water, fish swimming, tropical "} +{"id": "3005198", "video_name": "ee5f2692-f130-5110-9526-f0752d69ea7c", "text": "Mountain landscape with forests, a man stands on a ledge in the mountain "} +{"id": "8002644", "video_name": "ab062851-7e38-592f-ad0b-4a42c079f284", "text": "a cute little robot holding a present "} +{"id": "7004496", "video_name": "7433b145-1c96-5752-bc6d-2157a562cd14", "text": "African American man, athletic build, chiseled abs, meditating in lotus position at the bottom of a swimming pool. "} +{"id": "1006720", "video_name": "7b2d0663-6761-50e1-82ca-25de36d33b56", "text": "a parachuter flying into a forest until his parachute gets caught on a tree so he hangs there. Do it in aspect ratio 9:16 and camera pan from left to right "} +{"id": "2004047", "video_name": "f122d730-04fc-57fe-879f-befef9a74b9d", "text": "a serene scene, a person in quiet contemplation, looking towards the horizon "} +{"id": "2004562", "video_name": "def6bf95-ecea-552d-b03e-fce4f221223c", "text": "An animated scholarly cat wearing glasses, swinging a kendo sword in action, surrounded by snowflakes with a wintery theme Message: 1 Attachment "} +{"id": "0006173", "video_name": "27b00c42-50bf-58f7-8840-f481c9c095d9", "text": "electric car Tesla stuck on the road, sparks, realistic, daylight, 4K "} +{"id": "8002278", "video_name": "8582f6f1-3e77-5cd8-a8b1-e012593e2187", "text": "A desolate street in Los Angeles, eerily quiet. The sky is overcast, and the atmosphere is tense "} +{"id": "6003079", "video_name": "e3818b71-061e-57cc-8e2b-1a45df18be3e", "text": "Infographic of disperate data sources hectic and disconnected from each other "} +{"id": "4003755", "video_name": "583f3c5e-f030-56b1-b9cd-2a1401f4e81c", "text": "two people meeting each others outline "} +{"id": "6003267", "video_name": "f6bac8b0-9f7d-5a35-ac10-758c4cb66934", "text": "1970s desert with a cactus on fire "} +{"id": "0004742", "video_name": "0e81dd52-30f2-5d3d-b9f5-0e241fb515b4", "text": "a beautiful white soldier with big white wings with armor and sword. He cares for and defends a child with his sword. inside a volcano "} +{"id": "0006616", "video_name": "2f974783-1057-54dc-b33a-b4ce4e69732a", "text": "The Guide imparts a mission to Maya, his piercing gaze reflecting the weight of the task. Maya, with a mix of determination and uncertainty, accepts the challenge, her backpack now containing newfound artifacts. "} +{"id": "4002889", "video_name": "58dc78a0-400e-5d66-9b35-7db934c2ef5f", "text": "sad man eating a melon , than his dog wants to eat a melon also but a train landing inside the house and destroy the melon. the dog and the man are going to sleep on the floor. "} +{"id": "1004493", "video_name": "53463969-b9ca-5546-81bb-df1a404f562a", "text": "But we will accept it only when it tells itself. "} +{"id": "2005654", "video_name": "9c38e8fc-e4b1-5310-96eb-189448acc513", "text": "4 super dads each on a unicorn in riding in de clouds. "} +{"id": "0005514", "video_name": "1c1eac79-8b44-5e59-b291-161ea7da671b", "text": "A spaceship zooming through space, with a sense of danger and urgency. "} +{"id": "1004859", "video_name": "59be25b3-e1cd-5371-9651-627ffe3a0cba", "text": "house Message: TIPS AI (Font: MODERN) "} +{"id": "8003079", "video_name": "e246fa85-9a97-5d70-8750-3990bc477301", "text": "a ribbon tied on a shell "} +{"id": "1006625", "video_name": "798149c6-19b8-556d-9982-5f26f4c88837", "text": "Bring the park to life with animated details like rustling leaves, fluttering birds, and the play of sunlight. "} +{"id": "7003545", "video_name": "3104f77c-d267-5f78-82b1-f7a8c4e88395", "text": "cute yorkie dog eating ice cream "} +{"id": "4003385", "video_name": "d4142141-67a3-5d63-a5b9-215c526e2ded", "text": "villages with lots of trees and home "} +{"id": "8001265", "video_name": "36695477-9be7-5452-b087-bb73e5c7aba1", "text": "Mental Refreshment: Meditation contributes to increased attention and focus, enabling you to concentrate better during busy work or study periods, ultimately improving efficiency. "} +{"id": "5001767", "video_name": "1ab83887-f528-5ba8-8ac6-0e3991c04889", "text": "Invasion, beers, battle on the Moon, AI Message: INFINITY EGGS (Font: MODERN) "} +{"id": "2007392", "video_name": "0e1b57bc-2746-580a-b4b4-196204ecf211", "text": "Batman but as Spiderman leaping from a high building "} +{"id": "4002478", "video_name": "b6edd5ec-f415-5254-bc33-8b94f87359e7", "text": "The little fairy explained that the Sparkle Crystals, which were responsible for keeping the Magic Forest bright and colorful, had been stolen by the mischievous Shadow Goblins "} +{"id": "2006633", "video_name": "7a6e1d87-b12d-53a1-aa23-d0e89d70ad6e", "text": "A snowy hill with a single big snowball. "} +{"id": "7003042", "video_name": "e0db573f-d3d3-57ba-a4be-79e5c08068ac", "text": "Girl standing in a field, looking at a house that stands in a field, sky colorful, sky moving, strong wind, hair developing, style artistic, drawn with paints "} +{"id": "3006013", "video_name": "4c3d5aae-688c-5c28-957a-c7a787823a34", "text": "young man on his back praying alone in a church "} +{"id": "0004811", "video_name": "0f845582-ec01-53a8-9ab4-824681ccfce5", "text": "in black and white newsreel style, nasa astronauts exploring disneyland in a moon buggy, in the style of black and white 1900s expressionist silent movie "} +{"id": "6003663", "video_name": "03581c04-d7c8-587b-aa47-849a5b25d18f", "text": "several people sitting in a meditation position listening to a monk "} +{"id": "1005506", "video_name": "6559d455-3f19-51f4-8852-d7b95a5a031c", "text": "The family gathers in the living room, wrapped in shawls or blankets. They exchange stories, laughter, and heartfelt moments as the rain continues outside. "} +{"id": "4004747", "video_name": "231f952e-c847-5fb3-8b48-ced9420dc15b", "text": "Chanting of hymns and mantras dedicated to Maa Katyayani during Navratri celebrations. "} +{"id": "4003894", "video_name": "24ac919f-7c2c-57d7-86cf-6495c7a01d87", "text": "static video sitting in front of a short waterfall in the deepest forest. blue sky. sunny weather. "} +{"id": "1006676", "video_name": "7a588a5f-040d-5f25-b48a-4c448534cf77", "text": "Once upon a time ancient Greek philosophers like Aristotle and Plato to depict early philosophical ideas related to artificial intelligence. "} +{"id": "7003212", "video_name": "0faaf0ed-6309-5a01-8c76-0a3c1a939ea4", "text": "apocalyptic time and red glowing eyes on the monster in the background Message: 1 Attachment "} +{"id": "6004739", "video_name": "ba657a6d-9085-53ab-8a5c-38c66e2fb325", "text": "Capture the essence of an arrow being released from a bow in a single vivid snapshot, 4K, aerial drone shot. "} +{"id": "8003162", "video_name": "f840af8c-7159-571a-b7ab-af7abe1b1471", "text": "a image of two robotic warriors fighting one is a samurai warrior assassin bot and the other is a Ninja warrior assassin bot ancient be engaged in combat at the top of the image it should say bot battles and big large letters "} +{"id": "1005574", "video_name": "66a0c7c6-3bb1-5458-a171-6f46f30ed1ab", "text": "Beautiful nature landscapes, rotating earth in space. "} +{"id": "6002583", "video_name": "46a06e45-c253-5839-96ee-021663f7f08c", "text": "boy create music beat on laptop boy is very professional guy his hip hop artist his tried some unique music some next level things "} +{"id": "2005790", "video_name": "ef548662-8926-5d8c-b38a-7a82e04e0f23", "text": "an amphibia creature climbing out of the water, crouching forward, natural environment, untouched nature, many vegetation, realistic, cinematic "} +{"id": "2006236", "video_name": "266751e7-fa13-525a-9661-e0d37222d592", "text": "a pack of Coyotes howling at a crypto moon "} +{"id": "0006599", "video_name": "2f542a68-e17a-57fa-82d1-536a68e74c38", "text": "The background is cyberpunk. Shot from a low angle. A robot in the center is walking slowly. "} +{"id": "2004264", "video_name": "916dc521-b8b4-58c1-8d49-34ffdc7dc652", "text": "rainbow crow enjoys singing a song "} +{"id": "2007338", "video_name": "6c1a3123-dd95-56d1-b04c-aea4053f0485", "text": "A chubby baby in a pink pool eating a Burger "} +{"id": "3005608", "video_name": "79936036-a60a-5b95-ba3d-157679733801", "text": "A community gathering where individuals share their accomplishments and experiences, celebrating the results of using time wisely and encouraging others to do the same. "} +{"id": "3006983", "video_name": "01fa3b14-8992-5e7c-9a89-ef776b2baccb", "text": "A rousseau painting moving with the wind "} +{"id": "6003925", "video_name": "0a6989b4-2872-528c-a4f3-ccff51761ba9", "text": "muscle man standing on the balcony of a tower and looking straight down "} +{"id": "1006777", "video_name": "7c1d119f-86f7-5863-8d50-c83d441178c4", "text": "A zombie runs his hand through the lavender field "} +{"id": "6004569", "video_name": "b7e1e06d-7248-5953-a6c5-038fe520212d", "text": "john wick and bruce lee on opposite sides of a boxing ring in their defensive positions. Both of them should be clearly detailed in a stern facial expression. "} +{"id": "6003588", "video_name": "954b49c7-e468-5efe-9d56-93613bb40359", "text": "Create a video of Sukhna lake in city chandigarh having sunrise "} +{"id": "2003071", "video_name": "ac50aea6-9d83-5e41-baa4-a582bf97053e", "text": "pencil hand drawn style , a cute boy running "} +{"id": "4003604", "video_name": "6b36b226-a643-5f85-9ebf-fdec5c349bcc", "text": "A dark, dilapidated haunted house stands in the middle of a dense forest. The full moon casts an eerie glow over the scene. Camera pans to the front door of the haunted house. It slowly creaks open.studio Pixar, 8k, ultra hd, high quality "} +{"id": "3006416", "video_name": "3ff63413-9b24-549e-98ff-115178261eab", "text": "a taxi cab parking, people walking through Manhattan, New York City in the night, black and white "} +{"id": "8003595", "video_name": "7de955aa-1275-5a3b-80e6-08bf3ab4cda6", "text": "a view out of a train window in the night, city lights passing by quickly, mysterious "} +{"id": "4002990", "video_name": "9b824995-2158-5843-b314-1efa0c6d53be", "text": "a glowing sphere in the new york city skyline during sundown. "} +{"id": "6003344", "video_name": "6d61e7b0-84de-5f96-97de-ec3057ea0103", "text": "a retro style horror moive based on stay out of the house the video game "} +{"id": "5001979", "video_name": "6d66fa9b-f7de-53b9-911a-7d52273ee88f", "text": "I want a 16:9 desktop wallpaper, it should be high definition, and it should have a cheerful and uplifting vibe. "} +{"id": "0005423", "video_name": "1a9960c4-163c-543f-bb32-168535ee47c7", "text": "Giant army of orcs with empty flags in futuristic armor against the background of a giant Russian city, winter, cyberpunk "} +{"id": "2003828", "video_name": "87523812-9e36-5ac1-9e93-725fddcd5efd", "text": "a beautiful blond 20 years old woman in transperant red dress "} +{"id": "3003240", "video_name": "54e4c9d7-d396-56c8-b6eb-cb0001e4acf6", "text": "A man standing on the moon watching the earth explode "} +{"id": "6002710", "video_name": "108f0bff-2ebd-53a0-b272-11f290af6b08", "text": "a body being vaporized by radiation "} +{"id": "0006376", "video_name": "2b6a42c3-a0f8-563d-9554-e4519137c4c6", "text": "dj console background, neon lights, blinks Message: JAROMIR (Font: MODERN) "} +{"id": "3004264", "video_name": "e4bf7542-2c47-5364-a635-0546f679382c", "text": "The couple suddenly separates, with the husband pointing with a sad look into the distance, while the wife looks with a face full of sadness and jealousy before the train takes off and drives away from her cinematic 4K realistic "} +{"id": "0005314", "video_name": "186b7c62-22d9-5347-af7d-a0f517349de8", "text": "a couple sharing sunshine on a boat. "} +{"id": "1003549", "video_name": "417e15b1-11bf-5702-a3c9-c6b28cecc63f", "text": "Imagine a man looking at his phone with a concerned expression as he scrolls through social media. The screen displays increasing numbers of time spent on social networks and notifications, in a cinematic and cyberpunk style. "} +{"id": "0003974", "video_name": "00ee58aa-b115-5ee7-8e3b-a2aa3117102e", "text": "Sequence of Indian heritage sites transitioning to scenes of modern Indian life, capturing the essence of cultural richness and contemporary spirit. "} +{"id": "3003960", "video_name": "220a636c-be54-59c8-9ae6-dc5e97307a64", "text": "a purple colored shiny daimond on a rock in the middle of a jungle "} +{"id": "7004796", "video_name": "d476e0cc-94ff-5cf5-baa0-45ae0d482a7f", "text": "house sinks into the mud, house sinks, splashing, motion, house tips over and sinks "} +{"id": "3003176", "video_name": "ceb767ce-62aa-57aa-8c72-a355bbe72f6d", "text": "In a small town lived a boy, good boy "} +{"id": "2006651", "video_name": "d55bf307-104e-5656-ba6a-6b5faa87ca13", "text": "A Man in Ancient Majestic Armor, Riding On Horseback, Galloping Fast Forward, In The Battleground "} +{"id": "8003189", "video_name": "faa3b530-7e87-5c9c-8340-f3f04526707c", "text": "and he saw a hungry lion "} +{"id": "5001650", "video_name": "72df742c-1af1-5548-b20d-e4dfbd37f6af", "text": "Swiss train driving on the swiss alps on curvey roads during the evenning while moon is shining in the farness "} +{"id": "8002621", "video_name": "41855ba8-3e03-518e-971f-1bed2e80fb49", "text": "a 3D render of a nothing phone, in a studio limbo, with black circles in the background "} +{"id": "1005622", "video_name": "676179d3-19af-502a-a7d2-f6edfee6874a", "text": "a timelapse of carrots growing in a serene garden "} +{"id": "0003076", "video_name": "368bba4c-ebdf-527a-bc33-3765c4c6b7dd", "text": "family members in despair of bad news "} +{"id": "6003389", "video_name": "c653f0a5-6591-511f-a709-5021e904321f", "text": "Nissan s15 drive by retrowave city "} +{"id": "7004823", "video_name": "354e8155-f0f3-5563-b0ab-2baf3c1f7a11", "text": "pink cat flying in sky.beautiful cat "} +{"id": "2007581", "video_name": "fc011ce0-2135-5d56-a222-8d816ac7a5ec", "text": "cinematic shot Rahul Sri Bhadra treating Sultan Bakhtiyar Khalji, illustrating the healing aspect.8k ultra hd "} +{"id": "0004388", "video_name": "081c3109-c291-5771-b3a4-8be442219f01", "text": "photorealistic Ghreta Thunberg eating a hamburger at mc donlads "} +{"id": "3006016", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "In an ancient Greek temple, a venerable scene stretches out in which several people stand in a devout posture. The majestic dome above them stretches like a divine firmament, allowing the light of the gods to stream into the sacred space. At the edges of the painting, elegant columns line the temple, while in the center two important figures rise up on a staircase. These central figures, draped in dignified robes, embody the wisdom and spiritual guidance of this ancient society, while the temple itself is a place of deep reverence and enlightenment, high quality, realistic "} +{"id": "7004494", "video_name": "934056b2-89b3-54f9-8d9c-4b0e327ef374", "text": "kids animated video, a colourful parrot and a cheerful squirrel sitting together ina branch in forest "} +{"id": "4003922", "video_name": "23f1161d-cfe0-5945-81b2-a873b5a0fd1b", "text": "The process of noodles, beef and broccoli suspended in the air and falling to the chopping board, real scene, captured by camera. "} +{"id": "8002058", "video_name": "7f1c51ef-e34d-59a5-b9e2-ce6eece2ee84", "text": "red wizard casts a spell dnd "} +{"id": "5001365", "video_name": "50a13029-a1fc-55d6-a15e-afd1cf9bf89d", "text": "video for a recruitment agency with powerful music "} +{"id": "5001843", "video_name": "f552b293-47d3-5aaa-b272-dcfec9b97c5f", "text": "sailing through axioms, neurons and dentrites "} +{"id": "6004185", "video_name": "53195fb3-d789-5a44-8ef8-815cebc15511", "text": "create an video where semi machine human repairing his machine hand itself "} +{"id": "7003991", "video_name": "2410233b-0aed-55e8-8ed6-aacb39255c73", "text": "snow on Molfetta city at night with xmas Lights, wonderful, fantasy, 4k, cinematics, zoom "} +{"id": "2004804", "video_name": "5d8b07a0-9ae1-57c4-b33a-fb11d92b2e1e", "text": "a boy moving hair, smile on face "} +{"id": "0005906", "video_name": "2305a715-fba3-596e-879d-b09fe38aea91", "text": "a pretty girl wearing a frock, a magical hat, two braids, entering in a magical world, cinematic view, 3d animation, 4k "} +{"id": "6004488", "video_name": "de9060bc-a77d-5d0a-bd60-fdfa146600dd", "text": "dark monk rosary and facepaint cinematic closeup Hd footage old camera "} +{"id": "3005737", "video_name": "8d0257f2-ccf8-5411-a355-1e35606918fa", "text": "Glowing graffiti toxic green bright purple reads Pika "} +{"id": "7003905", "video_name": "9395c8e6-c4f3-528b-9583-dc518c191db9", "text": "A young man is dribbling his basketball past a friend who is defending the dribbler "} +{"id": "7004849", "video_name": "b1cf9719-8794-5843-9f2c-c047dddbf31d", "text": "alien hoeing the land of Mars "} +{"id": "2006506", "video_name": "f8ded822-cbf7-566e-b4ac-4c555dc6a41e", "text": "planet cell talking about cell strucher "} +{"id": "6004650", "video_name": "06ef19ae-83e4-5c1b-9e01-ebac38086d8f", "text": "floating crystal human figure, jumping through a wormhole portal made of neon light, flashing, flickering, hyper speed, fast, 3D render, smooth, cinematic lighting, dramatic, studio, stage visuals "} +{"id": "2003149", "video_name": "eb6eabf7-f224-58e7-8f1b-873fb53cbfea", "text": "A horse is running on a racetrack, with the surrounding crowd continuously cheering and urging the horse to run faster. "} +{"id": "3005726", "video_name": "4f22cf38-6c3d-5a57-b2db-7a499ce7968c", "text": "chemical signals traversing a synaptic network "} +{"id": "6003706", "video_name": "1b921392-0681-592a-977c-6a3274a61462", "text": "talking and slowly moving hands in highest resolution "} +{"id": "0003993", "video_name": "01491e04-d427-55c2-9321-78c4aa9a44f2", "text": "create a video of a boy playing basketball "} +{"id": "0004858", "video_name": "10617bdb-e15d-5351-92ce-07c94628b61c", "text": "A letter broke the peaceful life "} +{"id": "3005679", "video_name": "9421aeaf-af17-5748-bd20-26c62426bbf4", "text": "Create a captivating aerial video sequence situated in the night. Featuring murky waters set in a swampy environment surrounded by a dense forest and a winding river. Focus the initial shot close to a nightboat on the water and gradually zoom out to capture the scenic expanse. The goal is to evoke a mysterious and enchanting atmosphere. Bring out the unique details of the landscape. "} +{"id": "4004662", "video_name": "48af698f-4f99-5a91-8297-28ca52a2367f", "text": "an epic animal flying throgh a shining sky "} +{"id": "8003630", "video_name": "c6fb7207-4d95-58d6-8858-b52d3f587bec", "text": "make scene of Aether is the god of the upper sky or the heavens. He represents the pure, upper air and is associated with the light of the celestial bodies Message: 1 Attachment "} +{"id": "0005312", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "vintage scene with house at distance Message: Purush Mandal (Font: MODERN) "} +{"id": "1005600", "video_name": "6702c0ce-e9a1-5d68-ae65-5af3e4753b94", "text": "Generate a video of a vibrant cyber jungle with a koala named Codey sitting on a tree branch, surrounded by tech gadgets and vines displaying binary code. "} +{"id": "3006168", "video_name": "d4e7d88d-0878-5094-9e10-0460887802ec", "text": "a girl is sleeping and harry Potter is watching her "} +{"id": "0004439", "video_name": "091ce458-19a8-50de-b1be-aaa781fc6e83", "text": "bob schneider with a rolex on his wrist "} +{"id": "0006036", "video_name": "256bc888-c48a-50b0-8ea2-126a5b3547cc", "text": "he is in the sky in a meditation posture "} +{"id": "1006350", "video_name": "7446b3e1-6dc7-5f2f-8033-bc41827c9ace", "text": "Smeshariki in style of my little pony "} +{"id": "1005944", "video_name": "6d36e7a2-67b0-5442-b547-11bea26fafe9", "text": "Dr. Fatima Shehab and her groundbreaking discovery of synthetic cells. "} +{"id": "2007736", "video_name": "b5c34e29-a40b-58ab-959f-221ba97e77d7", "text": "Of their orchards and agriculture, only berry trees and some shrubs remained "} +{"id": "6002100", "video_name": "7db458ba-6b8c-529d-8a93-1fdf8948c37b", "text": "temple of Ahriman, colors Jet black and pristine white, creating a strong visual impact "} +{"id": "4002781", "video_name": "fec00d76-42ae-513f-8fc8-fc8eca07f787", "text": "anime, black background, arm of a character with tattoos expelling a line blue line made of fire from the palm of his hand "} +{"id": "3006391", "video_name": "0d36c4a7-c310-52cd-a878-bd10e28a7566", "text": "A pigeon is sitting on a tree branch overlooking the river. She sees the ant struggling in the water and flies down to help. "} +{"id": "6003444", "video_name": "40888689-ef83-52aa-8213-4c7bfa3564db", "text": "generate a steam appearance across the floor "} +{"id": "4002325", "video_name": "f883a441-7daf-515d-a104-7b6b5a341847", "text": "SS troops marching in Washington DC "} +{"id": "0006833", "video_name": "33dde3c8-975c-5cde-a937-d48c4035b87c", "text": "Rapidly edited to show the meeting scenes of the male and female protagonists, such as libraries. "} +{"id": "2005222", "video_name": "a8b53f01-7e8b-526a-92d5-2684105cee73", "text": "study table besides a window with an open book and a hot cup of steaming coffee on a rainy night. "} +{"id": "7004702", "video_name": "09081506-173d-5849-9205-a779e45f1776", "text": "Zhang Zhixuan sleeps with a woman in his arms "} +{"id": "0005649", "video_name": "1eaa9dba-e084-5f03-9eca-de69d2b605f2", "text": "From pixelated sprites to realistic 3D models, video game graphics have come a long way. A Vibrant and dynamic rendering of a boy in seventh grade sitting at his desk in front of his computer playing a game with the glow of the screen reflecting on his face. Above his computer screen on his wall is a large poster of his favorite esports champion; his hero. "} +{"id": "0005152", "video_name": "15a76a73-2a1f-543a-b2f7-0d061b2ae385", "text": "3D pixar style image of a cute panda in the middle of the forest "} +{"id": "1004092", "video_name": "4bc31178-d564-5087-a9b2-b471f356b880", "text": "A luminous flying saucer flies away from the roof of the house. "} +{"id": "0004864", "video_name": "1088e678-f8b1-59ec-9246-60c896c07ad6", "text": "white unicorn walking with dragons flying in the background "} +{"id": "4003421", "video_name": "bfe54480-962d-53ff-9b64-d5a42241a4fd", "text": "a beach in during the day "} +{"id": "3006239", "video_name": "ed79922a-2db4-5d04-81dc-d8735f8209fd", "text": "a blurry photo of a window with rain drops on it and a blue sky in the background with white clouds, a stock photo, An Gyeon, minimalism, bokeh,hyper realistic, 8K, high detail,ultra realistic, 8k, "} +{"id": "7002054", "video_name": "bae7f467-d7b1-5eee-8145-54c32bd4f83a", "text": "joker playing guitar, hands strumming guitar, rock music, full body, concert stage background, digital art "} +{"id": "0005296", "video_name": "18027ea9-6cf2-5e8b-97a5-63cbf05f480c", "text": "A machine that is a factory of human beings, high technology, factory of humans on tape. Great quality. 8K. Halloween lights "} +{"id": "8001397", "video_name": "c3bf9f1a-e433-5b06-88e1-87be2ab7ff0d", "text": "an injured eagle on the ground, surrounding medow "} +{"id": "1005310", "video_name": "618a12cf-bbd8-53de-a833-6de2095ad356", "text": "a 26 year old wizard sat on the banks of a chalk stream smoking a pipe. focus on the wizard and his face but also make the beauty of the idilic chalk stream apparent as a setting. dawn. "} +{"id": "2005089", "video_name": "3243ba0a-0ce4-5c27-8a81-2d68af7e3834", "text": "A creature with a human body and chewbacca face is in the middle of a wood full of snow, 16mm film grainy footage. 1982. "} +{"id": "1004692", "video_name": "572fbe6e-c1a1-56c2-b83e-ee331e605943", "text": "make a image where kratos is about to have a war with Superman "} +{"id": "2003030", "video_name": "9a0bd889-6d90-5878-9681-f97f8f0349c4", "text": "A lady was sunning herself on the beach "} +{"id": "0004836", "video_name": "10106e1f-146a-5694-91cb-6cfb0410527d", "text": "A girl in formal clothes tells a story to everyone. The girl has long hair and yellow skin. The background is pure white. "} +{"id": "2006178", "video_name": "1854bff6-2ac0-5dc7-b822-f89e800eafcb", "text": "monkey king and god of dragon "} +{"id": "6004535", "video_name": "832da818-e266-5025-97d6-aa4b523816c7", "text": "Water comes out of the ground at night. The stars are twinkling, the moon is full, and the darkness is beautiful "} +{"id": "3003829", "video_name": "a47d482c-be25-54b6-afef-b6f5e8b8bff4", "text": "British cat eating pasta in a restaurant "} +{"id": "2006436", "video_name": "c8173fd1-0c4b-5220-a21a-38baff3b84ba", "text": "A singing sloth with a guitar at a big music Festival, realistic, high detailed resolution "} +{"id": "4004219", "video_name": "02e534ef-1027-5c80-8a4f-3b37acbb3f33", "text": "This new world full of vibrant colours and talking animal with their favourite anim and manga iin hd style "} +{"id": "8002196", "video_name": "9fe7ce53-939d-51c0-b071-430d96f3cf50", "text": "group of teenage boys and girls in the schoolyard talking to each other "} +{"id": "2003938", "video_name": "80859dc0-8a19-53ca-a2c9-9590c7f6173e", "text": "large shell shining in the sea film mermaids 1970 "} +{"id": "0003162", "video_name": "385e7fa3-b511-5bc9-8599-a8edc4cd4248", "text": "Doug the Pug eating ice cream "} +{"id": "8003412", "video_name": "f06ba053-a53a-5a40-bc46-728d49e50e31", "text": "believe me an image of a woman stretched out on the floor, knees bent, arms outstretched on the floor, doing a back stretch, in a room with a glass window and a natural landscape and lots of light. "} +{"id": "1005276", "video_name": "6109d8c1-de88-5d3d-bc81-cd5781a63f9a", "text": "captain America fight with super man video like movie trailer and show text captain come in red colour "} +{"id": "3004460", "video_name": "810b3f47-b82a-56da-98ab-7b89da3f0549", "text": "an armoured angel falling from heaven with lighting, complete in rage psychological, dramatic, thriller, matrix, mind, 4k, anime cinematic 16:9, clear and accurate, ultra realistic, super detail in a classroom, zooming slow, dark light, high resolution, high in detail "} +{"id": "3006813", "video_name": "c7678b19-9615-5560-b280-77fa8969a4c9", "text": "a man wearing black jacket and pant and standing at park with his car name mustang s197 in evening time , anime art style inspired from genshin impact "} +{"id": "1003086", "video_name": "38d3a161-b34b-5471-9f32-ee611e94ab9f", "text": "Samurai crowd riots in the streets "} +{"id": "8001458", "video_name": "19ccc685-67ac-5780-a157-1daf2dfaf44b", "text": "begotten zombie movie, corporate people, , london, finance, business, money, uncanney valley, very detailed,8k, sharp "} +{"id": "2007366", "video_name": "2403fddb-6824-55e0-a74b-8eee1bc242ec", "text": "in the classic American town we see a house we get closer slowly and we find a family of humanized goats eating excellent goat cheese we get closer and closer to the cheese on the table and in that moment it transforms into the moon among the stars which is devoured from a giant goat in space "} +{"id": "1006664", "video_name": "7a0fdf9a-00b4-577e-b148-b87bb5780325", "text": "Frodo, a little hobbit with a mix of exhaustion and fulfillment, "} +{"id": "6004576", "video_name": "b9358b79-56d5-5f47-b9f2-dd7e7c5f80bb", "text": "create an image, the underworld, with fire, inside a dark cave with no one "} +{"id": "1004385", "video_name": "51056c0b-7208-5182-a1de-73a5155f569b", "text": "The boat rocked in the stormy waves, a terrifying water monster appeared in the water, and a dragon hovered in the sky "} +{"id": "7003928", "video_name": "d087afbb-92f4-5baa-ae6d-96949899b4a7", "text": "The video is an image that displays a map of the world. Starting from a point in Europe and moving towards Russia, a truck is moving slowly on the map. "} +{"id": "5001334", "video_name": "3f54679d-9cd1-599a-b457-b347df3c91fc", "text": "colossal statue of moloch in ancient city of gods creepy atmosphere, limbless angels in the sky , sun with eerie leper face, swirly red sky with eyes "} +{"id": "7003254", "video_name": "72735b26-ad75-5314-b5b5-4aafb70c9abe", "text": "Lily celebrates with friends and family upon securing the interior design job. Transition to her sitting in a sleek design studio, surrounded by blueprints, plants, and a computer. "} +{"id": "5001275", "video_name": "97bd655d-4073-56a8-9df3-c0884178cd28", "text": "found footage of black hole in space "} +{"id": "1004361", "video_name": "5089f025-5e40-5fe7-a6ee-d4180231291b", "text": "cartoon illustration of beautiful Indian women before wardrobe of full of clothes saying I have nothing to wear "} +{"id": "2004011", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "future world becomes more intelligent and very advanced building, modern city, machinary and cars "} +{"id": "3004558", "video_name": "7e28af3f-8ead-575a-afc7-c168b538571f", "text": "Pug dog, move around a lot Message: 1 Attachment "} +{"id": "2004669", "video_name": "3c2c5baf-1634-5199-af4a-96a28a72a756", "text": "create a photo of a mom and her 2 girls with an apoctalypic world behind them "} +{"id": "3005930", "video_name": "cec33426-bba3-5932-b545-c6f0dc50c575", "text": "a skeleton plays a burning guitar against a background of smoke "} +{"id": "3006360", "video_name": "389ead24-176f-5eaf-aa16-43d24497eaa3", "text": "A cute little dog barking at the camera in a 3D animated video. "} +{"id": "1003586", "video_name": "4201fbec-ab1d-5121-88da-4b3de54ce171", "text": "image, skeleton flying through space for song cover phonk "} +{"id": "7004943", "video_name": "0f858ef9-fa03-524a-978e-184997b46137", "text": "professional guidance from physical therapists and sports medicine professionals to address any injuries or imbalances promptly. "} +{"id": "1006847", "video_name": "7d2392b5-cc08-58c6-9499-e48f4acdae06", "text": "scene of an open book with verses from the Quran, highlighting the offensive content of Satanic Verses. "} +{"id": "0005407", "video_name": "1a4dc650-a7fb-55ec-a391-ee4153123638", "text": "After months of effort, Alex mastered hacking techniques "} +{"id": "2006935", "video_name": "4d85ae82-45f5-58e5-99e7-5eb1fb81762c", "text": "a small man with green skin goes whale hunting "} +{"id": "8002193", "video_name": "993d9a62-0dfc-5200-ba3b-fceadb4c6a61", "text": "Something is running fast in the street at night "} +{"id": "0003541", "video_name": "3f3c5d72-373c-585c-95cb-8cf23fc30ac5", "text": "a futuristic muscle car at high speed, action movie, fast background, city at night "} +{"id": "7003530", "video_name": "2ed173b8-f18b-5c55-9b90-28eb924fd7be", "text": "zoom out black colored alien cartoon character turning knobs on a alien modular analog synthesizer at a rave on a spaceship, pixar, unreal engine, 8K. "} +{"id": "8002324", "video_name": "53584b25-1804-5f06-9301-0cb972aa148d", "text": "Chirpy tried to keep Fluffy and Tweetie safe and warm, but the wind was relentless. Yellow birds animation "} +{"id": "6002175", "video_name": "1e84da05-97bf-5147-849c-c3024fdd7683", "text": "kids most favourite animation videos with sounds 3d "} +{"id": "8001205", "video_name": "d9db67ef-9765-5168-b400-afe3b20fd8a5", "text": "make an animated name Soni Network "} +{"id": "0005080", "video_name": "14645969-4407-506f-b23e-263b884debb7", "text": "beautiful landscape after Armageddon, day light, a blonde Russian man in space uniform is walking towards the camera. Very realistic. "} +{"id": "2004263", "video_name": "15192104-1e47-5d84-9126-bc7fac32f899", "text": "smiling young woman, her face is towards us, smiling peacefully, photo cinematic, realistic, "} +{"id": "2007994", "video_name": "4fc47f9d-b6c1-5757-a401-586b5b272fcc", "text": "Mom and dad taught the kid about kindness and responsibility. They all took turns feeding, playing, and taking care of the puppy. As time passed, the puppy grew strong and healthy. "} +{"id": "1006856", "video_name": "7d34a9a2-5c63-516d-aeb4-9f32b86e8846", "text": "a woman sitting near the golden gate bridge in SF "} +{"id": "6003059", "video_name": "d764c863-bdcf-5837-8f10-a4e721356363", "text": "this is a story set in a small village where people lived with had work and honesty "} +{"id": "4002172", "video_name": "e647a4c3-d7b4-5322-8660-2a6b0819ef91", "text": "a woman in a spaceship, takes off her space helmet "} +{"id": "0006163", "video_name": "278d9064-bd45-5291-9dda-c5dd013c7560", "text": "a jacked man with sweating in a gym "} +{"id": "0006250", "video_name": "293aa100-251a-5d75-a240-7a13d25a4909", "text": "two women fighting in a street market "} +{"id": "0004075", "video_name": "02ccfaf7-9fd2-566c-9e3c-ba782fe75897", "text": "shadow walking forward moving tentacles blood red background like a dimensional portal "} +{"id": "1005815", "video_name": "6ae21a0f-d3af-5661-85f6-1e26a3e47d0a", "text": "Movie in the Style of Sin City "} +{"id": "3006238", "video_name": "df1c7fc2-ad02-56a4-90b6-65602a5d9172", "text": "first person view of driving at night with flying bats "} +{"id": "2004256", "video_name": "446abb05-4007-548a-b172-182704e44fe0", "text": "a winged shark flying over the mountains "} +{"id": "6002952", "video_name": "b541e0bb-22b5-5521-bf3c-bbcce3931c5e", "text": "angel in the style of Brom "} +{"id": "0006831", "video_name": "33d9a575-87ac-560d-aeb5-209f29b64bd8", "text": "boy and lion at the top of a hill, overlooking the jungle they helped protect, with a beautiful sunset in the background. "} +{"id": "3004099", "video_name": "a7ec9bc9-9763-5ab3-8e9e-e991fc26ae99", "text": "Explore the life and legacy of Louis XIV, the Sun King of France, who ruled from 1643 until 1715. Dive into his contributions to French culture, politics, and his role in shaping modern Europe. Artstation, 4k "} +{"id": "0003958", "video_name": "008bae08-e4a8-5987-8602-0ff83176d85d", "text": "Visuals of rocks breaking down due to physical forces "} +{"id": "7002703", "video_name": "c1722f3f-2084-542d-9371-b974ace3e9bd", "text": "and the there are ranning dead cats and dog and blod and cuts "} +{"id": "8002841", "video_name": "0c56f8e4-6013-5b09-b20a-f2fc38551a72", "text": "old men walk in winter forest "} +{"id": "1006189", "video_name": "71590f02-7423-5964-aa93-7c5f3b485b90", "text": "spiderman rides a motorbike along the highway "} +{"id": "8002948", "video_name": "82cef255-40b1-582f-8f87-1b9db7c9e707", "text": "Los Angeles in the future as imagined in the 1990s "} +{"id": "1003405", "video_name": "3ed5ed2a-84dd-53e5-83b2-9d2948be5cea", "text": "stylish overcoat and a small vest for a gentleman "} +{"id": "3003420", "video_name": "1daf3090-fb7c-5809-8e45-351a0943de70", "text": "draw a digital table of stocks. "} +{"id": "1006518", "video_name": "773e3a05-0f6f-5efe-b63c-1848d5100c39", "text": "A man fighting a zombie, anime screencap "} +{"id": "3005682", "video_name": "66206568-909b-5270-9d40-116ef914f686", "text": "the enzyme is binding to substrate "} +{"id": "8002825", "video_name": "48391b91-d8a9-5661-ae82-c25f35949f13", "text": "Animate this Character, Hair and Jacket Blowing by the wind, Animate the Background Behind "} +{"id": "1003552", "video_name": "418823da-add6-566d-a0dd-a93d00871aa7", "text": "Glowing tendrils of energy weave an ethereal landscape, connecting all beings in a unified energetic matrix beyond space and time. By Amanda Sage, Luminokaya, Morgan Davidson "} +{"id": "2003402", "video_name": "b534a82e-9691-5225-8b4c-51838d8c01e4", "text": "now upload option opens for user in blue shirt "} +{"id": "0005961", "video_name": "23f990c5-1810-5fbb-8649-0d1a98f17ae2", "text": "find collection of subsets on the papaer "} +{"id": "2006275", "video_name": "cf5bb6fc-0255-53a2-9090-f5fa69532291", "text": "Real Madrid logo with a lion inside it "} +{"id": "8002759", "video_name": "9b46748d-1522-5e8b-b867-0eca38c3abe2", "text": "beautiful girl in transparent robe in a luxurious room after bath "} +{"id": "1006885", "video_name": "7ddf9439-2749-5947-89e9-45019d038810", "text": "batman standing in front of bad guys in rain at night, slow motion, cinematic, wide screen "} +{"id": "4003896", "video_name": "88a82fb6-f691-55d0-b261-0fb19a817562", "text": "A lonely little girl strolling in the rain "} +{"id": "4004803", "video_name": "0206b134-35cb-5eaa-8b7d-b68d7b653303", "text": "Chinese countryside, old houses, farmland, starry sky, moon,Distant view "} +{"id": "1003458", "video_name": "40035acd-e68b-592b-8e4d-aac46878938b", "text": "a big scary orange pumpking, it has a cowboy hat on it, in a scary dark night with full blue moon under the tree "} +{"id": "1004628", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "super 8mm footage of overweight builder building a wall "} +{"id": "5001988", "video_name": "52de00de-c317-5f43-9208-fa1d509f008e", "text": "a boy kid and agirl kid is dancing and flowers are around them, desney style, "} +{"id": "1006426", "video_name": "75993a81-f39d-5613-aaef-743ce83c6fdb", "text": "an old news archives video of jeanne of arc, 4:3, black and white "} +{"id": "3006150", "video_name": "c2bec284-2b69-507d-af4c-db5be2b88281", "text": "the whole plant moves by a breeze "} +{"id": "6004511", "video_name": "b44ac1e1-6d35-5b6e-a1e3-5f539ba8c126", "text": "demonic beautiful demoness woman with horns sitting inside a Japanese onsen with cherry blossom petals falling from the sky, ultra realistic, ultimate design, ultra detailed, 4k "} +{"id": "7003715", "video_name": "72b321fd-7860-598f-b35c-756111e2951d", "text": "zenith, boiling coffee, macro shot, slow motion "} +{"id": "2007855", "video_name": "213e7fb4-1cd9-5402-8c4d-6705ee05d85e", "text": "a little girl in the garden playing with the rabbits "} +{"id": "3005539", "video_name": "799bb83a-fb0b-5c7a-a9c5-70a9c93345e3", "text": "A colorful plate with a balanced portion of fruits, vegetables, whole grains, and lean protein. "} +{"id": "0006044", "video_name": "25985e4b-99e5-5e70-852f-edb4a4c015b5", "text": "rainy day in downtown brooklyn, people walking slowly with umbrellas "} +{"id": "5001610", "video_name": "bf0af304-9e0a-5aa2-a03f-54a3359f0007", "text": "dark light fog, night, field, mystical objects, witchcraft "} +{"id": "4003730", "video_name": "fe43f284-8c2b-5284-8ab3-58176c47ef5d", "text": "a fractal zoom of the milky way 4k "} +{"id": "2003180", "video_name": "0c9a6d06-2fbf-5a57-bdb6-ecda2ed6b1f4", "text": "The man walked out and closed the door, leaving the woman in the room "} +{"id": "6003712", "video_name": "2dfceaa4-beb1-5cca-874f-1b86f1044b42", "text": "The Frog and The Elephant spending time together, exploring the jungle. "} +{"id": "8001120", "video_name": "11d60adf-93ff-57e2-8ae3-5bbdb686e3ef", "text": "3 dog, moutan, tree, snow, night "} +{"id": "1003147", "video_name": "3a0837b1-cab9-55e6-b6b4-190a30d85640", "text": "a girl is waiting in the big hospital for diagnosis "} +{"id": "7002953", "video_name": "b3a71302-a460-52e6-b5a2-eda6d4f9f3ff", "text": "batman is exhausted from sweating under the hot sun "} +{"id": "1004826", "video_name": "592c7b0b-8086-5d16-b80e-ce5375e64ce9", "text": "format: 9:16. astral projection, going through reality tunnel. Ends in nebula dreams scape "} +{"id": "5001229", "video_name": "a7e7eb3f-1351-5286-93f7-c3644893db41", "text": "motorcycle, on the road, starry sky, background, the universe "} +{"id": "3006265", "video_name": "4a974b7b-736d-53ed-a9bb-962747931f4a", "text": "explosion in a shopping center,realistic, 4k, 60 fps, "} +{"id": "1004111", "video_name": "4c1ceca6-8e6c-52c1-afc8-2081caae4263", "text": "A spaceship hurtles through the vast expanse of space, engines roaring, on a mission to save humanity. "} +{"id": "8003730", "video_name": "1d345731-0ac6-5d5b-9d3e-1c0f9e123b95", "text": "The Sandman Morpheus talking The Endless "} +{"id": "4002235", "video_name": "46bf7eff-3860-50e0-b069-473501bfc782", "text": "Close up of blue eyes with highlight on the center of the eye "} +{"id": "7004684", "video_name": "fdf67727-3f05-565a-bee4-e7f9987e2535", "text": "Evil Alien space lord Xenu bursts out of the church of scientology doors does a kick flip on a skate board and gives tom cruise a high five, gs 24, motion 3 "} +{"id": "6002515", "video_name": "9387bb62-71eb-5f9a-9561-c59f8ba84c39", "text": "mother, improved over the years, gives a gift to her children, smiling happily, 4K "} +{"id": "6004587", "video_name": "28ffa3fb-08b8-5259-a469-f88c9e936138", "text": "anders petersen, sailboats in the water, henry cartier bresson, red lace, reflecting light in a nightclub, 3 5 mm still photo, louis kahn, moons, twilight skyline, elliott erwitt photography, norman ackroyd, henri cartier bresson "} +{"id": "3005632", "video_name": "015f88bc-e393-5953-bb4c-e5d51262c893", "text": "black lady dressed in Yoruba clothes in shades of purple, walks majestically in a swamp, rich details, epic, cinematic "} +{"id": "0004718", "video_name": "0de6c604-4cee-55b4-8a05-d7958861cdc4", "text": "8k High resolution small white refrigirator "} +{"id": "0004042", "video_name": "020ee0ba-42a6-52d6-98b1-ebe4463bb519", "text": "Two Chinese teachers and students are talking Message: 1 Attachment "} +{"id": "8003006", "video_name": "3a95c318-c44a-5538-8c43-646b65bd76af", "text": "motorcyclist driving on highway, city lights, vice city "} +{"id": "8002156", "video_name": "64d8214e-395f-5e67-9fc9-7a8ad680aaf3", "text": "Everyone smiled happily and the badge power lights flashed "} +{"id": "2007526", "video_name": "ef97b226-67b7-55ae-b8fb-f29ed7202c2a", "text": "a video of elon musk saying merry christmas to a bunch of elves "} +{"id": "1004724", "video_name": "57a2a325-0416-5a32-bc0a-6c4d694ebd78", "text": "Male model wearing a retro outfit with vintage patterns in the runway "} +{"id": "4004406", "video_name": "28d312bb-ffc5-5f06-9a2b-41ae4c0c009c", "text": "aesthetics beautiful aliens planet, pink, red,blue,yellow, magic forest,night sky, sparkling firefly, nebula, flycam viewing running rapidly "} +{"id": "3006513", "video_name": "257953dc-2720-571a-b7ff-f55003568996", "text": "nerdy girl in front of a computer with cool glasses looking at the camera and talking disney style shades of blue, black and white, gray. minimalistic. futuristic. cyberpunk, 4k, 3D, minimalistic "} +{"id": "6002609", "video_name": "8adfc1a7-19c6-5ec2-83eb-2bec4748a3f5", "text": "The crowd yells and screams for more memes "} +{"id": "0005676", "video_name": "1f1e9d75-bfa6-5917-b970-a7ba0722eab0", "text": "political gathering in bangladesh, speech being delivered by prime minister, who is female, millions of people is cheering. 4k realistic "} +{"id": "0005487", "video_name": "1bb2d3ba-6103-5519-90be-913b91e1ac5e", "text": "walking skeleton in a desolate city full of lights and billboards, realistic zoom uit action shot "} +{"id": "2004898", "video_name": "0015bf8f-e457-5f46-973d-8eaf26e3ba5d", "text": "In the Spring Dawn at the Qin Garden, the northern landscape is a spectacle, with a thousand miles encased in ice and ten thousand miles of drifting snow. "} +{"id": "4002127", "video_name": "75e77514-ae2d-53fb-b3f4-eabc70432c70", "text": "golden leaves swirl in iridescent liquid in a porcelain tea cup "} +{"id": "0006068", "video_name": "26110700-0509-59d2-ab1e-634019e574da", "text": "Bosotn Roxbury Residential street cars driving down the street "} +{"id": "8001544", "video_name": "3dd26f06-4584-5a25-9867-cf9f3b38574f", "text": "she is moving in the front to see the library "} +{"id": "7002782", "video_name": "f847f39d-d0b0-5e15-9389-e36e040e51c0", "text": "intense realistic slender pretty anime girl black long hair blowing like waves tendrils extending out all around her with pink and blue clouds in night sky gusty wind "} +{"id": "1005362", "video_name": "62931b8a-4d8d-5193-b3b4-81f481d30466", "text": "In the dimly lit alleyways of a bustling city, Sarah ,a brunette 20 year old girl with green eyes, met James,a blonde 20 year old boy with blue eyes, under the cover of shadows "} +{"id": "2004509", "video_name": "6f1dc77b-266e-5a92-95d7-db0bb1b95a9f", "text": "Once upon a time, in a small town nestled among rolling hills and meandering rivers, lived two souls whose paths would intertwine in the most unexpected way. Dale, a young man in his early twenties, had battled the demons of addiction for years. It had been a relentless struggle, but last summer marked a turning point in his life. "} +{"id": "3003105", "video_name": "012835ae-b239-5baf-8dce-8b772c598f85", "text": "a taxi driver, drives his taxi at New York streets. "} +{"id": "2005082", "video_name": "cb30a689-419d-5dd9-acb3-9c7ce2383b34", "text": "hightly detailed quality, video. in the garden around the princess, 7 little girls and a prens comes to them are dancing hand in hand in a circle On a sunny day . "} +{"id": "4002121", "video_name": "c974ddb4-0d3b-5b1e-bd18-6b8a86335aaa", "text": "a red and green dancefloor christmas party "} +{"id": "1006928", "video_name": "7ea6fdb7-a8da-5020-941e-92bd4cb79eed", "text": "Cosmic space in all of its greatness "} +{"id": "6004780", "video_name": "77d6d740-f856-5944-964a-6a5dadb56440", "text": "On the battlefield of ancient China, a handsome young general, dressed in a Armor, is engaged in a fierce battle with the enemy,The scene is very grand and spectacular, 4K "} +{"id": "1004428", "video_name": "51f10eb1-c41f-5cbc-a739-05d5a5c4ab5e", "text": "man on the blank background wearing xmas sweater holding phone at his hand "} +{"id": "7002864", "video_name": "3650f564-eb52-5c75-9907-380c6da1a550", "text": "citizens at war in a futuristic city "} +{"id": "0006478", "video_name": "2d39b5d4-74a4-5dc8-ae13-4757c42baba2", "text": "A beautiful and massive animated castle "} +{"id": "8003254", "video_name": "1ae55212-4ed5-5ae0-bb12-cda16b505a8a", "text": "CRYSTAL CAVE Message: JOE (Font: RETRO) "} +{"id": "8001225", "video_name": "f57955f6-4d17-56c8-be5f-2159d581c839", "text": "Salvador Dali walks along the beach and scatters gold coins with his hands. "} +{"id": "7002113", "video_name": "b52d9637-9e65-50c3-a788-aada80f2de13", "text": "Create an exciting short video featuring an animated outline of a man dancing to the beat of a catchy 120 bpm music track! Express your creativity and bring this charismatic character to life on a clean white background. "} +{"id": "8002798", "video_name": "b5e19483-8b9d-57cf-b1a9-0ed310fd39b4", "text": "A reporter interviews a parade passerby on the street "} +{"id": "2003223", "video_name": "f7102d97-bcf3-5528-b50d-fc033a7d72ab", "text": "transforming a bottle of vodka into a bottle of parfume, snow, rocks, oak moss, "} +{"id": "2006642", "video_name": "c9e6a114-0838-5ed3-97b6-01ae33124017", "text": "a superhero saving a woman from falling out of a building "} +{"id": "3005008", "video_name": "29d3dfe7-8f3f-5ff1-8fbf-be7d7bf6ab57", "text": "Moon is falling over to Earth pieces by pieces. "} +{"id": "3005589", "video_name": "ec892aa4-8aa7-5201-9828-5ee8548a8729", "text": "coffee machine in a big office, sunshine, photorealistic "} +{"id": "1003959", "video_name": "49202106-a376-5d75-b9fb-b2a4f4db1ed8", "text": "a handsome man sitting on his office, desk, computer, papers, books "} +{"id": "4004139", "video_name": "ceb47c0e-132e-59bb-9ce7-f5ef832593f4", "text": "camera zoom in, chemical reactions background, vivid colors Message: FLUORKI (Font: MODERN) "} +{"id": "6003231", "video_name": "9f4a78ff-5164-5a07-8d8c-427b4611449c", "text": "facing numerous patients in need of urgent care "} +{"id": "1006433", "video_name": "75bbb41c-b550-586b-92a2-9afa33903bb2", "text": "a beautiful magical land full of vibrant colours with one home in the middle of the landscape "} +{"id": "2005864", "video_name": "89a564aa-b067-5135-989d-eb1f103e3795", "text": "Camera introduces Rosa, a beautiful chicken dreaming of exploring the world outside the coop.Rosa, the Dreaming Chicken "} +{"id": "3003967", "video_name": "572dc6ed-1056-5b44-a6ee-d0d5ab44a35e", "text": "I want a photo of a kitten chasing a lizard my little tiger motion "} +{"id": "3005643", "video_name": "cebcd153-321e-5c4e-aa21-5dc753eb97fe", "text": "A group of adventurous teenagers gathered outside the haunted house, curiosity in their eyes.16:9 4k video "} +{"id": "1005573", "video_name": "669445ba-c1f7-5961-afb1-32910143e4dd", "text": "a dog eating some special fruits in palace "} +{"id": "2004365", "video_name": "daf15ebd-fea9-5247-87f8-37e42a157221", "text": "Introduce Sam, a curious boy, and Lily, a playful girl, as they enter the forest. "} +{"id": "1003157", "video_name": "3a2c366b-75ce-5eae-a749-4016d5523835", "text": "The weather changed Message: 1 Attachment "} +{"id": "2005397", "video_name": "d11ba5ea-b8c2-5886-bd16-0ef6d16f12eb", "text": "an colorful eye is opening slowly "} +{"id": "2006571", "video_name": "08955d95-8969-5bda-ada5-d009078343d7", "text": "Scenes of people lost in difficult situations lost instead "} +{"id": "0004170", "video_name": "047602c1-20f8-5541-b38c-d641c7a19a28", "text": "a door suspended in a white space opens up to a world of color "} +{"id": "6003479", "video_name": "256e9141-3860-5eb3-adbb-c685e2f59aaf", "text": "a woman using towel in the bathroom "} +{"id": "6002620", "video_name": "d6f3094e-7925-5bba-a85a-85fa6e945ddc", "text": "a forest full of trees, with dry leaves on the ground and a burning fire "} +{"id": "1004343", "video_name": "5021fe71-8b0a-505a-9595-c770d8ce82fd", "text": "In the heart of the dense jungle, where the sunlight struggled to penetrate the thick canopy of leaves, lived a majestic lion named Simba. Simba was not an ordinary lion; he was known as the Guardian of the Jungle, revered by all the creatures that called the jungle their home "} +{"id": "1004657", "video_name": "56aacd03-09dd-5eb5-99ec-95c9eebd6916", "text": "ship that takes off and turns when flying "} +{"id": "2007602", "video_name": "3beb2e03-5515-5d8c-9311-5e51858a3a2e", "text": "the oriental guy without beard stands in the teahouse in the style Baghdad, 4K "} +{"id": "3003943", "video_name": "e3ada0f7-30bb-5e96-aab4-1e242da3b60b", "text": "The dog barked even louder, but the echo was enlarged "} +{"id": "2005879", "video_name": "b9581c4d-274b-5324-9143-c8674a941b33", "text": "alien made synthetic music on a weird planet "} +{"id": "3003515", "video_name": "2ae74792-4b33-5bde-9e5f-c3b4d43c680e", "text": "The face of Boe laughing hysterically "} +{"id": "1005541", "video_name": "65f585af-9326-5ee7-9a3f-379807ae72b9", "text": "Horror castle, 1 men standing in front of the Gate deep in the Dark Wood, mystic Ambiente, lightning, Real Photo, High sharp Details, Clouds with Deep red an yellow Colors "} +{"id": "0005592", "video_name": "1d982010-dde3-5a9f-8a2d-432a3ea0f3d1", "text": "A log cabin on the edge of the forest. The windows emit a dim light. A family is seen inside, consisting of a father with a beard, a mother with her hair pulled back, and a girl with braids. They are seated around a table, counting coins by candlelight. "} +{"id": "0006372", "video_name": "2b54f10f-150d-51a3-85d0-da35827dbf81", "text": "drone shot of a vinyard in the shape of the autodesk logo "} +{"id": "4003415", "video_name": "26cc8486-cbe7-580e-b989-1135de74ab7d", "text": "animal jungle Kinnaree Kinnaree creatures. The body pieces on a human being. The bottom is a bird and snake with wings to fly. According to the legend that lived in the forest creatures. There are fascinating animals that appear in the art of Thailand "} +{"id": "1005458", "video_name": "644cc16b-e413-507b-97d2-0b497225614a", "text": "a front view of a bank,some people are walking into and out from the bank "} +{"id": "4004228", "video_name": "f633b9b3-cea4-576d-87b8-64bcce0ec755", "text": "studying inside, raining, at night, cyberpunk style, warm feeling "} +{"id": "2006664", "video_name": "ecf476ca-fc99-500a-bb89-8b32cf27ca83", "text": "Create an image of a charming and innocent princess with fair skin, dressed in an elegant Indian royal attire, sitting in the palace garden surrounded by colorful flowers. she is a child. "} +{"id": "2003113", "video_name": "b6c792d6-4231-5c73-8dd8-446ea60e5dd3", "text": "Robot opening a door, cyberpunk city, cinematic, camera cmoving "} +{"id": "7004041", "video_name": "9ca1f6e1-2482-542a-8c9e-a92b0c162cf4", "text": "pixar styler, a readhaed with glasses reading a bookin under a cherry tree and in front beachs with small waves, high quality "} +{"id": "6003159", "video_name": "43db19eb-564a-512c-9f50-01dbc64f9b42", "text": "The man happy to see the monkey "} +{"id": "0006253", "video_name": "2958c07c-2961-5451-9acd-aa11120f4919", "text": "cartoon footballer trying to score a goal in a heated match to fails to score the goal then walks away dissapointed "} +{"id": "2004936", "video_name": "cc5522f7-9e70-5b16-a9a1-f696b753ab29", "text": "Greek beauty goddess in al of her glory, at Athens. "} +{"id": "1004791", "video_name": "587bee71-ed1a-5011-a7f4-4b716fb12f58", "text": "a mermaid laying a cloud of red fish eggs and depositing them on the bottom of the sea "} +{"id": "8003525", "video_name": "73bb2bd8-ae34-55cb-9688-f507c6314b69", "text": "Keep the image static in its background. The animation should not alter or add any elements to the original scene, "} +{"id": "6004321", "video_name": "9bec964f-738d-5cc0-a022-c1b2930cf5e6", "text": "Create an image of the young Lord Krishna in the tranquil setting of Ujjain, where he has come to receive his education. Depict the serene surroundings and the presence of Guru Rishi Sandipani in the gurukul. "} +{"id": "2005880", "video_name": "5681256e-8633-5795-b243-c5e83aaa2ab8", "text": "Elf scientist runs through the forest and eats fly agarics for one minute "} +{"id": "3006903", "video_name": "2ed46594-d648-5fdc-8e2d-1ba7e9985f30", "text": "he stands up and moon shining "} +{"id": "3004610", "video_name": "0b08d1c5-b176-5a74-816c-a88ef98456e0", "text": "christmas tree whit black box gift "} +{"id": "1003432", "video_name": "3f64c1e1-27c8-5674-8d74-cdafa3e17323", "text": "waves, lighthouse, clouds in the sky, yacht under a white sail "} +{"id": "1005538", "video_name": "65e68241-aad5-5940-9f03-6541b1735b3e", "text": "The image of the final harvest is presented in several chapters, indicating the separation of the righteous from the wicked. apocalypse.8k full hd "} +{"id": "1006746", "video_name": "7b75706b-4078-57e7-8480-db63db60de95", "text": "guy walking in a army at the front like a boss, while listening to music "} +{"id": "2007676", "video_name": "c9b9265e-ba06-55ec-90ec-a19738ce5748", "text": "the girl lies on the grass and enjoys the sunlight. there is a Greenway catalog nearby "} +{"id": "0004966", "video_name": "126d18ee-2de3-5d26-9ec5-7309f8a70550", "text": "a titan dog running towards tree, attack on titan style "} +{"id": "0004656", "video_name": "0cc1f64d-f020-5306-9f43-351014177336", "text": "very very fast cinema film about an artisan from Peru walking through the mountains alone "} +{"id": "4004125", "video_name": "71585d0f-2d4c-57f2-9048-c736deddeecc", "text": "strong wind,The ship is sailing,Sunlight shining on the sea surface,Waving flag,Seagulls circling,4K,3D "} +{"id": "7002219", "video_name": "346c30f9-db79-5fe7-98d7-e33034744e59", "text": "a rainy night ,A glass full of whiskey on on a table with a view out the window "} +{"id": "0004641", "video_name": "0c7ea528-5bfe-532a-a392-d0ef498e0552", "text": "a man falling into lava, anime style, trending on artstation, best quality, masterpiece, 8k "} +{"id": "7004863", "video_name": "3a90f9a1-1816-54e4-be20-3c925f9e4ee7", "text": "a zoom in to a close up on blue eyes of a woman in a forest and then she closes her eyes "} +{"id": "6002784", "video_name": "82155322-5543-5647-9115-50015b11a76d", "text": "rhinoceros walking in rain, cinematic, photorealistc, 8k, unreal engine "} +{"id": "0005920", "video_name": "233e2d60-dd57-578a-b84b-69123ca9cd9f", "text": "Vibrant cinematic photo of a male adventure in AI world, octane render, high quality "} +{"id": "0006205", "video_name": "285a4f6d-db23-517f-9e40-a00b5e848ef9", "text": "The Little Explorer comes across a wide, churning river "} +{"id": "1006409", "video_name": "75627ad0-d2f8-53fe-85f9-2905c2d8bf4d", "text": "Magnificent countryside with a sparkle of light from a champ of beauty with a view on the moon "} +{"id": "1005806", "video_name": "6ac8e798-cc47-5ac1-9891-1056c20249a3", "text": "music producer making beats with an etheral and futuristic city shown out side of his room "} +{"id": "6003353", "video_name": "497073b0-c6db-569d-b780-be274ced8300", "text": "A man steals money in a dimly lit room.cinematic.ar 16.9 "} +{"id": "8002638", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "super hero aquaman with diving goggles and swimming trunks 4k "} +{"id": "8002142", "video_name": "5ba7d3fa-38b8-5f0e-bcd8-75534b51314f", "text": "Create a scene depicting a figure similar to Elon Musk, dressed in a spacesuit, traveling through space. Focus on capturing the essence of space exploration, with the figure gazing at distant stars and planets, embodying the spirit of adventure and discovery. "} +{"id": "4003873", "video_name": "a3e3bb34-72b2-594f-a9a2-71cf0058c7fe", "text": "Eagle and mouse fighting in the open field. "} +{"id": "6004721", "video_name": "a730a462-3361-5745-b89e-4fb7754aa04a", "text": "01)\tIn the high mountains of Tibet, nestled among the ancient monasteries, there lived a venerable Tibetan Buddhist master named Tashi and his devoted disciple, Tenzin. Tashi was renowned for his deep wisdom and unwavering compassion, and Tenzin, a young and eager student, had dedicated her life to learning from her esteemed teacher. "} +{"id": "6002252", "video_name": "162e64a3-09dc-59fa-9fd8-e2057faa8df1", "text": "a video about 30 seconds long, featuring a samurai running through a futuristic city and holding a katana up to the sky "} +{"id": "2007048", "video_name": "572d65ba-bca0-5053-bc0e-50e3733827e3", "text": "a villanous dog walking down alley "} +{"id": "7004689", "video_name": "b3729681-0b22-5cec-92ae-536775814f19", "text": "A Single storey villa standing illuminated while there is a quick transition in background from evening to night "} +{"id": "6002600", "video_name": "0d56e631-a0ec-55e3-86c6-57469a948742", "text": "a person takin a book from a big library "} +{"id": "8001347", "video_name": "abca3857-f2a9-5eda-b881-38b6ab279c1f", "text": "Mortal Kombat game frog, Realistic, 3D model, unreal engine, realistic model, professional lighting poster "} +{"id": "2005995", "video_name": "ebc3251e-ce0e-584a-8208-3cf3ca1bb374", "text": "large space battleships fighting above a planet, with starfighters dogfighting in the background "} +{"id": "3003194", "video_name": "17157cd1-a2f9-5efe-9fb9-40109d208615", "text": "Michael Jackson, side view, sharp eyes, wearing a hat, high resolution, foggy forest background with blue light, clear features, full portrait, light reflection on the face "} +{"id": "8003260", "video_name": "031a195f-9570-5c32-8049-9f7d1756552a", "text": "what do you think you look like? "} +{"id": "8003345", "video_name": "0c582976-b5a2-5543-b6e5-2ed630a7e96d", "text": "girl with backpack kneeling at a stream in the woods. In the background there are snowy peaks. There are beautiful birds flying around "} +{"id": "2007616", "video_name": "437e2806-ac82-5a29-95d4-df5fcbf25378", "text": "a giant statue with vines and decay cinematic 8k uhd Hyper realistic "} +{"id": "1003643", "video_name": "43247f05-0119-50bc-8e33-2d906d4cd82a", "text": "While challenges and darkness may resurface, the bonds forged and lessons learned stand as a reminder that courage, compassion, and unity can overcome even the most formidable adversaries. "} +{"id": "0003321", "video_name": "3b9d4d45-b25e-5872-856d-b473dd8082a6", "text": "wreck it ralph in rainbow colors fighting godzilla "} +{"id": "3003069", "video_name": "b9250136-52a3-59c7-a174-ae1cb6eca48b", "text": "a skydiver jump to sky from a plane , the plane is red and the suit of skydiver is green and the sky is suny "} +{"id": "8002424", "video_name": "cba7e243-d38a-538b-b059-62e0523d186f", "text": "Dark video shot at the exhibition "} +{"id": "1003885", "video_name": "47a6ce14-5d4e-5ab0-bb5c-3f55dc15fa07", "text": "vibrant streets of Ethiopian capital addis ababa. "} +{"id": "4003165", "video_name": "5592e9ca-9669-56bb-8b1c-5cfd39da2097", "text": "Imagine standing on the shore as the first rays of the sun break the horizon, casting a golden hue across the calm, glistening waters. The sky is painted with hues of orange and pink, and the sound of crashing waves fills the air. "} +{"id": "2007319", "video_name": "0d3b9b14-dc52-5bc4-a285-e3f72c982567", "text": "Katana with blue and black flames floating up right in the air with flames emanating off of it, burning the environment around it inside of a world full of bones "} +{"id": "8003344", "video_name": "b43d956c-da04-52af-a613-04dd20a89748", "text": "a video writing on fact number 1 "} +{"id": "7003475", "video_name": "5898ef11-3993-5a20-9c4c-9fc6284de0c4", "text": "make a Ghibli animation of cute monster animal showing cute expression "} +{"id": "4003761", "video_name": "414cb8b2-407c-52f6-99ab-304daae706b7", "text": "ginger cat playing an international soccer match, doing a bicycle kick , scoring a goal "} +{"id": "6004634", "video_name": "7deb184b-1cfd-563a-b200-2521518d8443", "text": "The inauguration of a cultural bar with Peruvian infusions, gastronomy, lounge and vinyl music "} +{"id": "0003531", "video_name": "3f0dedc7-0ff9-55fe-9bdc-613487037860", "text": "rising of small kind pixer style Message: birth of hero (Font: MODERN) "} +{"id": "6003377", "video_name": "dd86b45c-1746-5997-90e4-5c155a894acf", "text": "The Russian president is fighting against the USA President "} +{"id": "8002309", "video_name": "bee816a1-c5ed-554a-8be3-44ff022d40e4", "text": "a full length fashion shoot. a cute female model wearing something dangerously cool with a cyberpunk spiral vibe. buckles.white with electric zebra highlights .fashioncore.studio lighting "} +{"id": "2004623", "video_name": "75be7c2b-ce83-596d-9ef5-869b3af1f8cf", "text": "new york city, early 30s, realistic, black and white "} +{"id": "8002377", "video_name": "f4b5c5f4-c2ee-5a20-8279-d37922bdc600", "text": "Human hand cross by thumb and clap. "} +{"id": "4004714", "video_name": "a66301ff-dd77-5f15-b82a-0a70e23fd9ea", "text": "desktop view showing various icons and folders. "} +{"id": "7003585", "video_name": "dac0608b-3a0b-56d2-bdbd-fc8902110659", "text": "the wipers on the school bus showing moving zoom "} +{"id": "2003377", "video_name": "634758af-9a28-555f-9b17-c36a5e9b0eda", "text": "view of frozen city along the horizon "} +{"id": "3004952", "video_name": "958ea68f-eddf-5948-83ec-7957a4d44ef7", "text": "Dark starving Aghori skeleton figure surrounded by smoke 4k game animation "} +{"id": "1005245", "video_name": "6082a386-d11d-5d22-93be-b51fe77ae6ed", "text": "generates an infinite zoom effect from the following image, creating and adding another image afterwards. "} +{"id": "8002510", "video_name": "564ab2ff-5ad9-5302-b4f2-e7a562383b86", "text": "A poor woman takes care of sheep "} +{"id": "0006843", "video_name": "3419b834-b1fb-51f5-a22c-31838123490b", "text": "a 1970\u2019s music video of a giant parrot dancing on an underlit disco dancefloor with a giant spinning mirrorball over its head "} +{"id": "1006585", "video_name": "78a45f7a-edbf-5161-bb76-e33a662b5eef", "text": "flying old man in the nightsky "} +{"id": "8002103", "video_name": "efd25554-0ad0-5fd1-ac70-e69e3375fb05", "text": "rainy night, with lots of lightning and thunder on an island "} +{"id": "1003904", "video_name": "48083d86-e857-53ef-81d5-19236b018182", "text": "purple aura moving like a flame of fire with a green screen in the background "} +{"id": "3003989", "video_name": "c400c4c0-0556-54d2-8e3f-553c82b281aa", "text": "Field of grass, pure vibes, sun shining, flowers, life "} +{"id": "7004450", "video_name": "a6da600f-c7e2-51c4-90ea-f7a429ec9fe0", "text": "two clear silihoute figures ,one a clear silhioute figure who is seen as a master to the child figure "} +{"id": "1004288", "video_name": "4f5ab27d-c0b1-5170-beae-fccbf2a5a05c", "text": "Pov of kids hand, 3d vector, hand washing, both the hands should be seen, kid is washing hand under the wash basin, i dont want kid only his both hands should be seen "} +{"id": "8003009", "video_name": "ad178d85-fdb7-5dd0-a278-0064982c6616", "text": "2D pixel art, cozy cafe summer evening "} +{"id": "3005958", "video_name": "71d1639a-71fb-56ad-869a-f245cdc3028b", "text": "a lonely moon shimmering across a dusk ocean "} +{"id": "0004587", "video_name": "0b9df64a-4e68-5a9c-9eec-9d018f2b3f17", "text": "Minecraft Animals Dance Jump Fight Banana Space Egg Cow Cat "} +{"id": "2004525", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "A flying swallowtail butterfly, flower, high resolution, best quality "} +{"id": "8002041", "video_name": "58922398-903b-5a48-86a5-7bcdcfeda20b", "text": "Lightning, rain, head movement and closing eyes of snake and cat body "} +{"id": "8001235", "video_name": "b1c48549-6e30-5c15-a402-4ff7c658c5c7", "text": "crowd panic run, dark background with dramatic light "} +{"id": "6002861", "video_name": "402e8fa2-4219-53d5-9600-61fc49e37463", "text": "superman flying high above flying airplane around CN Tower sunrise, moving clouds high speed time lapse, zoom out, cinematic motion, uhd "} +{"id": "6004660", "video_name": "e9bf0e6a-89d6-55ee-89a6-abf4c888ef33", "text": "woman working from the comfort of her hammock "} +{"id": "1003388", "video_name": "3e6ff9ef-c43b-50b8-98ef-96860a0d198a", "text": "Employ music or sound effects to convey the bond formed between Narbal and the animals. "} +{"id": "0003338", "video_name": "3be7e4a9-29da-599d-89a7-5f602f9918af", "text": "Martial arts Hoddies,Tshirts,Premium Style Message: Gimauet (Font: MODERN) "} +{"id": "8002364", "video_name": "40eb6ed6-c7f3-5b8d-9b5d-6053cbd06fda", "text": "accient people is working in fields "} +{"id": "3003631", "video_name": "e2bf2097-4197-5efb-a661-8fd39c297b88", "text": "citroene xsra picaso 2003 drift on the rally "} +{"id": "7002723", "video_name": "f39acbe1-7a8d-56cc-9fc6-c7e48ae2dbda", "text": "a person enjoying nature and waterfalls with sunrise zoom in and out pan shots realistic vector "} +{"id": "2007426", "video_name": "2dae0209-d700-5dfb-af44-485c8767956f", "text": "a cuban man gathering picking flowers in garden "} +{"id": "0003068", "video_name": "3661ad96-7cdb-5ab0-a0e6-ec0fe76c2527", "text": "A vintage illustration of Mount Tambora erupting, spewing ash and smoke into the sky "} +{"id": "3004219", "video_name": "af8a052c-edc2-57a2-a405-4b0e2bff6d12", "text": "girl with black hair running in night forest with red mist around it, 4k, ultra detail "} +{"id": "8003746", "video_name": "d4afeace-eba5-59f2-975c-550d6dbeb6ee", "text": "Insights, Human light soul looking through a large, clear crystal. "} +{"id": "0005081", "video_name": "1469d20d-9d54-5f42-b6f3-bad01774b309", "text": "an alien with large sparkling eyes and shimmering skin, enters the scene as his spaceship lands on Earth "} +{"id": "4003442", "video_name": "b2c9ae54-4efa-570f-8af6-a43a54a08c4f", "text": "bog trouble in little china wild winds "} +{"id": "3005885", "video_name": "ff45ab82-1227-5abd-82e8-d35c71706419", "text": "PHOTO OF TURTLE PLAYING FOOTBALL IN A STADIUM "} +{"id": "2004388", "video_name": "33df6948-d612-5b6b-8365-902a9fce3432", "text": "space view of a full circunference ocean world, no earth, lights "} +{"id": "7003702", "video_name": "b09584d2-b0c3-56bb-aefb-6a1107662b71", "text": "Philip Brands walking on a thin rope beetwen two mountains "} +{"id": "4003232", "video_name": "69655c90-b458-5589-ba5a-1e665495364b", "text": "a dancing giant alien with invader UFO, Cinematic, old footage, camera pan in, old films, vhs, realism "} +{"id": "2006748", "video_name": "58c97a70-9a9c-54eb-85c9-d6d0e5c48770", "text": "beer counter Message: PET FRIENDLY (Font: MODERN) "} +{"id": "0003356", "video_name": "3c1cbb07-4424-55ec-add4-9591e1dfb8de", "text": "people walking around in an empty all white art gallery "} +{"id": "2005277", "video_name": "b276c9b1-dd7b-597f-925b-216a00d7274f", "text": "Musk is eating Chongqing hotpot, with a bright red bottom covered in chili peppers "} +{"id": "7004528", "video_name": "dd8c0066-4ba3-5317-abda-3d337f92e3ff", "text": "Fade in on a moonlit forest with crooked, gnarled trees and mist creeping along the ground. A raven caws ominously in the distance. "} +{"id": "1003709", "video_name": "446fd980-6849-5366-82dd-aa9134081158", "text": "The labyrinth was believed to be guarded by powerful fairies possessing extraordinary magic. cinematic, 3D, high Definition, 4K "} +{"id": "4004746", "video_name": "50a01045-61ab-5ec6-bfe6-4c4322fc731a", "text": "a happy young couple in a cabin, dark dim lights, ultra hd, high resolution "} +{"id": "0004337", "video_name": "0753e089-a923-5bc6-82e2-c6e6143aa365", "text": "european badgers play with kids painting equipment "} +{"id": "4002280", "video_name": "933f3e3e-71d2-537b-bb03-b97d4f5c0984", "text": "cinematic Alone and strong black feathered bird man in a landscape where it rains ash "} +{"id": "6002243", "video_name": "6cdf0af5-33a6-5aef-b38c-637c2b709aa5", "text": "Impressive views of Catholic cathedrals and rituals "} +{"id": "2007762", "video_name": "7065e905-f77d-5e57-969e-443eb60e0c33", "text": "businnesman is waving his hand and he is saying hello, slow motion "} +{"id": "6002842", "video_name": "8adfbbf6-0a57-5140-8ebc-b360deb5030e", "text": "a girl alone standing on the roof "} +{"id": "6002246", "video_name": "17216710-64f3-5298-9c6e-c4cad17d6126", "text": "a superhero villain who is an asparagus man with a black mask over his eyes "} +{"id": "8001311", "video_name": "5b2b8d69-f4cb-5ac3-ae02-f6b7e78cdf9d", "text": "a back supra 1995 drifting in the forest in japan, night , 4K 30sec cinematic, camera blackmagic pocket 4k, lenses sirui 35mm f1.8, dark filter "} +{"id": "7002719", "video_name": "e7837c27-d22a-5e09-84d5-ae2e4aaf2d62", "text": "a blue smurfy cat standing in a forest wearing awhite hat "} +{"id": "5001589", "video_name": "67585cba-39f8-5420-847a-ba095b5d2fbd", "text": "pumpkin full of candy, candy , halloween basket of candy, raining candy "} +{"id": "2007652", "video_name": "98a7a827-ce80-54cd-b2da-b5d98c086441", "text": "a fantastic World with a dragon looking the camera, 8k, 120fps "} +{"id": "7003918", "video_name": "ca1c0974-ed1b-519f-9c79-17db89151e76", "text": "An old man surrounded by his books Trestle table pilled with old newspapers Fifteen cats scratching at his door Filfth and mess all across the floor "} +{"id": "2006588", "video_name": "fa514c17-02f3-5f70-a047-a4885eae07b5", "text": "creazy man painting, a lot of colors in background, distorted "} +{"id": "1005475", "video_name": "6490c32d-27f2-5371-af66-3621ef0c716f", "text": "new year is coming in baku "} +{"id": "7004139", "video_name": "d5072a2d-e291-5413-b2dc-dfc01660e960", "text": "A caravan of horses and camels carrying goods in a desert area with horsemen marching and light dust "} +{"id": "2004036", "video_name": "1287998b-4012-547b-a940-bff0267edc02", "text": "A boy is reading a book in library, highly detailed illustration drawing, animated pixar style, 4k,3d "} +{"id": "2007066", "video_name": "5d56975a-3e63-5c25-a7f9-e24f9e5bdf83", "text": "a car stopped on the side of the highway at night rainning "} +{"id": "7004477", "video_name": "dd6926a2-8a8f-5caf-8ee8-61b86f449949", "text": "A beautiful forest in which birds are chirping duck are in lakes 2D animation ,Disney,8k Hd "} +{"id": "3004097", "video_name": "eb71f124-1eb8-593d-a435-c27f7836b78c", "text": "An image of a reborn village, with plants blooming, houses rebuilt and a climate of optimism in the air, symbolizing the positive transformation that has occurred. "} +{"id": "7004081", "video_name": "485c3023-40ae-560b-aec4-8e346f68fc2c", "text": "close face of Shirley Setia , background is mountain. "} +{"id": "8001053", "video_name": "a1574e4b-8cbb-58bb-9bbe-63f671e9c696", "text": "16mm aerial footage of downtown Madison, Wisconsin in 1971 "} +{"id": "2006128", "video_name": "a222bfa6-99b2-5aea-ac02-5c197e969ef0", "text": "two woodcutters named Alex and Alan lived in a village near a forest. "} +{"id": "6004620", "video_name": "d76b2ad8-28f1-5510-92f4-84d16ffef535", "text": "lava flow river, exploding, dark ambience, falling thunder, volcano fire "} +{"id": "2007274", "video_name": "09d65ddf-6d03-5a11-bf90-c3f4a949dc3b", "text": "Ice hockey player 4k skating on a cystal clear frozen lake with swiming wildlife under the ice "} +{"id": "4003414", "video_name": "5fc05f0b-34c3-5aab-9332-d878125e76b5", "text": "The sun was slowly setting over the Swiss Alps, dyeing the sky tons of orange and purple. Inside a modest cabin, in the heart of the mountains, a solitary alchemist was immersed in his studies. His name was Paracelsus, a man whose name would echo through the centuries as a legend of alchemy and medicine. That night, he was on the verge of a discovery that would forever change the course of medical history: the Elixir Paracelsus. "} +{"id": "8003122", "video_name": "7da46b7d-900e-5d94-8bfe-dafc1129e3ce", "text": "The final climactic battle, explosions lighting up the sky, as humans and robots clash in a struggle for dominance. "} +{"id": "4002117", "video_name": "a38eb0ae-e072-5197-941c-848dd82e33d8", "text": "undead warrior stands in knights armor, 1:1 "} +{"id": "6004566", "video_name": "779d4770-95da-57fa-bfc8-7a401723c3f8", "text": "beautiful campus of Hangzhou No.2 high school "} +{"id": "7004811", "video_name": "67f56bf9-0711-53fd-bba1-d087ac325aab", "text": "a group of friends catching fish in a river with beautiful animated "} +{"id": "2003947", "video_name": "9259b51a-99a4-5c9a-b593-63fea773f3ac", "text": "a sports car racing on a track. aerial view. "} +{"id": "3006033", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "add movement to smoke in backgrounf "} +{"id": "2005334", "video_name": "2ea62fb9-5c98-5b55-89d8-795e27745e74", "text": "dragon fruit cutting in pieces and each piece is moving apart "} +{"id": "6004152", "video_name": "9d4d5338-72e3-55c5-938e-8f3599e8a655", "text": "4 star trek enterprise officers teleporting, beaming, beam me up, uhd "} +{"id": "4004777", "video_name": "9fc20cec-1228-51d9-88a1-4283dde07d2c", "text": "a mystic jungle with a aztec temple dmt visuals "} +{"id": "3003555", "video_name": "dfb6e415-b3ce-5a80-9e04-96a2371b213e", "text": "squid game prize hanged up in the middle of the city, people are looking up to it, golden, day time "} +{"id": "2007698", "video_name": "38e80103-feb1-5886-931e-acde210f4219", "text": "map of india under mughal rule "} +{"id": "8002813", "video_name": "51b47df3-9646-5d59-bd60-eb2238f7c954", "text": "bus traveling through the colonial streets "} +{"id": "4004969", "video_name": "ca8cda4c-ec74-5a12-a3fa-f3044d36d9dd", "text": "Many shooting stars flowing from the starry sky "} +{"id": "6002946", "video_name": "a85410d2-2b3c-5926-8633-05cda686d923", "text": "DNA sequence chains spinning revealing secrets 16mm cinematic thrill ride "} +{"id": "0003016", "video_name": "35a39876-616e-508c-b394-c9acbd4d3544", "text": "Earth revolving as we see from the space "} +{"id": "2005203", "video_name": "ca59b43f-696e-50c2-933b-f4742ff9ad2f", "text": "realistic planet earth picture from the space "} +{"id": "2006535", "video_name": "00497b64-9912-56d2-af81-3a3cc2ac2e93", "text": "a trader with a impressive computer setup at the backround "} +{"id": "1004213", "video_name": "4dd8069d-f52b-5de5-b012-8515dd93f9e6", "text": "two girls wearing green hoods with swords "} +{"id": "0005543", "video_name": "1c9213ba-71c8-5c00-a239-22e8e630485e", "text": "Catwoman raced around the castle on a black motorbike "} +{"id": "4004020", "video_name": "8b5d1720-e828-5725-bf75-bc687e8e527e", "text": "man on fire, in gas mask, walking towards camera "} +{"id": "0006220", "video_name": "2892f8fc-3411-5d8b-ba74-b7b7528729d9", "text": "a goddess is swimming with fish inside a bioluminescent fish tank "} +{"id": "8001325", "video_name": "2c614019-dbf2-51c5-8ab7-cd00659f5d33", "text": "This period is characterized by distinctive pottery styles and cultural innovations. "} +{"id": "4003092", "video_name": "d6d34c11-097b-58a8-b861-2bca6c92836a", "text": "The description of the breathtaking Rainbow Falls and its surroundings in The lush and vibrant tropical rainforest, "} +{"id": "4003653", "video_name": "aeda7a7a-1837-548b-ab8c-04688d63d02e", "text": "sierra nevada mountain landscape with backpacker walking on trail and tall peaks in the distance "} +{"id": "3006684", "video_name": "43288bef-3797-5516-bc98-2fa24116a8d8", "text": "closeup shot, dark mirrow, horor, scary "} +{"id": "0003315", "video_name": "3b771a46-7307-5c98-b6c1-ea5fc52a4870", "text": "cat scratching the roof of a car "} +{"id": "2006650", "video_name": "17628365-6b65-57a0-acb5-0f3ffec0a08f", "text": "Jimmy Hendrix as Dj at decks, portrait format. "} +{"id": "4002942", "video_name": "a01c9ed8-9058-54d9-af89-57f8522baa1b", "text": "A hot and sunny afternoon scene with a bright sun and clear blue sky. "} +{"id": "0003456", "video_name": "3dd9f2d7-75a7-5dbf-acef-c2fd8b0b1d4e", "text": "As a test, consider the scene to be the living room floor "} +{"id": "7003975", "video_name": "562b736b-6ccc-519d-b183-2117d07dfd34", "text": "shadows are slightly moving, like they are talking. AR 16:9, CINEMATIC SHOT "} +{"id": "5001217", "video_name": "53029239-c8bb-5cf7-91f3-3c6f85d948ce", "text": "The camera slowly lights up from the darkness, showing a modern electric car driving slowly on a quiet suburban road. The sun shines on the car through the leaves, creating a warm and peaceful scene. "} +{"id": "5001034", "video_name": "aaa30c5e-4180-5431-9331-596a3224b4bf", "text": "blue eyed raven from game of thrones, 8k photo "} +{"id": "7003552", "video_name": "8e8a93f6-25de-537d-a7ce-0fd754d5ca48", "text": "a men jumps from a flying airplane, action movie, In The style of Katherine Bigelow "} +{"id": "8003748", "video_name": "f32f1602-7bae-5279-a331-f6e2df2fa6d7", "text": "female in pilot uniform shirt and tie realistic footage zoom "} +{"id": "2007280", "video_name": "45a1fb61-f8aa-5848-8850-539b03a254bc", "text": "Walking with one pair of feet "} +{"id": "4004950", "video_name": "7049751a-ed47-589e-8dec-d988eaface45", "text": "clouds moving, sun rising, water ripples "} +{"id": "3005027", "video_name": "717aa0c5-3140-55f4-b774-c061afaf9457", "text": "a video of autumn day in the woods with a dog running around "} +{"id": "1004646", "video_name": "565ea78b-2161-54a1-bae7-1f2f79633ba6", "text": "camera rotates 360 degrees around iron man "} +{"id": "8003454", "video_name": "8a1911e7-b5f8-5217-afb9-912bf4ed66a8", "text": "12 year old caucasian girl with short blue hair and buttons for eyes. The 12 year old girl is wearing a yellow raincoat and rainboots while standing near an old well. It is raining and foggy outside. "} +{"id": "4004137", "video_name": "09de0a22-e928-5809-a1ad-fd3c7499d5b7", "text": "a pathway going from the nagetives aspects of society to positive aspects of society "} +{"id": "8001754", "video_name": "d3e2cc67-7b44-59b2-ad59-649e0d9bc0e8", "text": "(Will Smith) goto toilet, he feel happy, bright toilet background, holding an ice cream, (actor Will Smith) , handheld camera movement, real video style "} +{"id": "8002790", "video_name": "930460a5-7cf3-502d-8288-3db6464c1416", "text": "4k, realistic 3d , letter A flying "} +{"id": "1006108", "video_name": "701315fd-66c2-58ca-bb6d-ebdd22ba73ce", "text": "found footage of a tall thin alien outside a temple "} +{"id": "7004960", "video_name": "2f602ad5-3148-5d98-918b-2231a3c32a40", "text": "comic look evangelical pastor preaching shouting big gestures "} +{"id": "2005706", "video_name": "eeb3d48f-2f1e-5487-81d0-b67dc1731742", "text": "a castle with a fast moving waterfall and stream with rushing water colorful detailed dramatic lighting "} +{"id": "0005358", "video_name": "196c2438-0a25-597c-aae2-10d361ff4ae9", "text": "trypophobia, small spiders, horror movie, scary, evil, high definition, realistic, fear, vintage, nightmare, spider, phobia "} +{"id": "1006896", "video_name": "7e0574f3-da21-511b-b6df-c7a4ee9f4e19", "text": "Create an endearing plush toy personifying Albert Einstein, with his distinctive tousled hair, a pensive gaze, and a relaxed yet imposing stance, conveying the essence of the iconic genius in the form of an adorable stuffed toy "} +{"id": "2006604", "video_name": "a408783e-3c53-5593-9389-0d0ffb5aee00", "text": "thanos lands on earth, full of ships in background "} +{"id": "2007737", "video_name": "37307dd6-8990-5a66-973b-a4109d0efe9c", "text": "lazer beams diverting a meteor shower from hitting earth from space view "} +{"id": "6004939", "video_name": "29ead879-7ece-5048-b35d-5c851da82432", "text": "M1A2 tank is firing to another T90M tank "} +{"id": "8001986", "video_name": "6b1d8301-74c9-514d-8f0d-b97c7364d735", "text": "christmas tree with decorations chidren st.claus presents sweets "} +{"id": "1006380", "video_name": "74c39e63-1568-56cd-b91a-316688bb5181", "text": "impossible triangle in the middle of space and a spaceship approaching "} +{"id": "6004764", "video_name": "cdeb009b-5954-599c-a03b-f804050eabf1", "text": "car driving towards sunset with a heart shaped cloud "} +{"id": "1005981", "video_name": "6de535c6-2f6b-5876-a2ef-2ce2c0b0d0ce", "text": "a one halloween pumpkin morphing into other halloween pumpkins with black background "} +{"id": "8001959", "video_name": "1e1b3f58-91c6-5301-a3c9-af4ccfe68e89", "text": "Joe Biden happy and dancing crazily without a shirt in the middle of the street ultra realistic and detailed with lots of details best film "} +{"id": "4002406", "video_name": "7dfef2cb-3446-5ce4-a8fa-f7aba0b95c1e", "text": "family in the future, living room "} +{"id": "0006644", "video_name": "302300ab-987b-581f-904d-be8ec5b56108", "text": "kids are splashing in the sea "} +{"id": "6003133", "video_name": "249e52e2-a66f-59bf-8dd6-e0338d427339", "text": "Bangladeshi farmer dancing on the crops field "} +{"id": "4004563", "video_name": "c5ead532-6a4d-5d08-8ba0-6a4b9150ac2f", "text": "The bueatiful islamic girl offer the Dua "} +{"id": "6003838", "video_name": "0ae378c6-069f-5c0c-be9a-a9ce93e35af3", "text": "Aerial view of a medieval village. Features cobblestone streets, thatched cottages, bustling market, stone castle. Villagers in period attire engage in daily life: blacksmithing, livestock tending, market trading "} +{"id": "8001495", "video_name": "7ec31528-87ef-589b-9286-ac146ea92c73", "text": "A space station, a spaceship, an atmosphere, a shooting star "} +{"id": "1006473", "video_name": "767a5068-cbaf-5991-b0fe-90a3eb90f539", "text": "beautiful anime girl, black hair, student clothes singing with a microphone in her hand "} +{"id": "1004445", "video_name": "5241dee6-d61e-5f0f-8100-d21ffe6dce1a", "text": "Astronauts explore a giant dark cave with flashlights 4k cinematic "} +{"id": "1004423", "video_name": "51dc3a11-8453-5679-a0de-534eb9f76344", "text": "prompt A small village and flowing river and morning birds sound 8k vibrant colorful 3:2 video "} +{"id": "3005077", "video_name": "d082e004-264d-5724-bdbe-0df725a83849", "text": "Create a clean and minimalist design with a background that symbolizes clutter or chaos on one side and simplicity and serenity on the other side. You could use images or icons representing a cluttered room on the left and an organized, minimalist space on the right. A clear dividing line between the two can visually represent the transformation from chaos to simplicity. "} +{"id": "4003530", "video_name": "07b7ceb7-4eba-5d34-a02a-089c8c337ebf", "text": "A picture of a happy family consisting of a mother, a father, and three children, in a cartoon style "} +{"id": "4003700", "video_name": "901c03cb-6ca0-5c6e-8697-a6ae6c0ded5d", "text": "the earth rotates really really fast and comes towards the screen "} +{"id": "2006487", "video_name": "d0302430-adeb-5bf3-aa0c-3360b5f2d72b", "text": "Ariel View of Kasi Viswanath Temple in Varanasi under flood, Flood "} +{"id": "2006424", "video_name": "46f85e55-aaed-5113-bb4d-e823c03d4ba4", "text": "space gibbons apes fighting with space guns and swords, background alien worlds "} +{"id": "3004333", "video_name": "a0606010-d08c-5cc4-bf21-f5e8473ff60c", "text": "Sakyamuni Buddha lectures to the monks in the monastery, black and white ink, 4K "} +{"id": "1003462", "video_name": "4016fe1e-f273-5d21-a0d5-3df6baafa529", "text": "A person sad in the sea "} +{"id": "4004337", "video_name": "c15aa0d2-3c2c-508c-b702-e8efeab04323", "text": "A transformer of spiderman style, looking at viewer, glowing eyes, glowing chest symbol, standing in a city, electric thunder in the background "} +{"id": "3004270", "video_name": "138f9c95-93b6-5c47-a1e8-9191a5e540a0", "text": "an eukaryotic blue cell is dividing by binary fission "} +{"id": "1006228", "video_name": "723002d9-a5a9-55d1-bf72-4fa419a9a23e", "text": "Picture an animated world map, brimming with vibrant colors and intricate details. Meticulously illustrated borders highlight diverse continents, each with unique shapes. Distinct coastlines, majestic mountains, meandering rivers, and vivid forests define the landscapes. Clouds lazily drift above, casting serene shadows on the land below. This dynamic element adds life, as if viewing from a serene vantage point. The ambiance invites exploration, as viewers get lost in borders, marvel at features, and follow the gentle dance of clouds. Use this to guide your creation of the animated world map. "} +{"id": "6003705", "video_name": "797c086a-e6f5-5590-b6b6-2dd9a9864ba7", "text": "a real estate agent, meeting people, happy, smiling, full HD, "} +{"id": "2007509", "video_name": "9a38b813-e05e-55de-86a7-cb82834b2a71", "text": "lonley man standing on the edge of a cliff watching the sunset in a two suns future world "} +{"id": "8003822", "video_name": "acd3a40b-b964-5b33-b0e0-4a668f00a45a", "text": "a Cute girl play with her father on shool "} +{"id": "2006727", "video_name": "a32ba601-3659-5fea-a7be-e279a325b8f1", "text": "A cute snowman, laughing heartily in Pixar style "} +{"id": "1003585", "video_name": "41ff19f1-5154-524f-b944-dad7d2f11152", "text": "The dog is running, Grassland background \uff0c "} +{"id": "3005510", "video_name": "ba67a97b-b22c-59a2-a07d-1f75b93d7511", "text": "A frantic dash through the dense undergrowth as they narrowly escape the pursuing jaguar.16:9 "} +{"id": "8002766", "video_name": "9dd84202-5c2a-5b08-ac30-8123f3fda9c3", "text": "woman behind a counter talking with customers at a clothes shop. "} +{"id": "3003623", "video_name": "436f7513-4e07-54d6-ac80-730efe9407fb", "text": "tvs showing numbers, pan left camera movement "} +{"id": "1005758", "video_name": "69f35f03-d757-55fa-8ffb-cd86e5b45ed9", "text": "An animated alpaca running through a green field with a snowy mountain background. "} +{"id": "0003353", "video_name": "3c0cc38d-4e02-5f42-b8a7-fa35c8fe7fe5", "text": "A little girl with ponytail hair, using her dreams as a horse, with wings of imagination inserted, freely roams in the sky. "} +{"id": "6003393", "video_name": "1b1908f3-2fa6-5939-9da8-41d3949fd56a", "text": "a beautiful modren indian city girl, wearing black color western clothes, looking on the camera "} +{"id": "8001955", "video_name": "fa01edc6-fba4-50bb-85fd-355d29e14316", "text": "wide shot of people looking at giant sneakers sign in city, zoom out "} +{"id": "7003075", "video_name": "af2e22b7-ae92-5dd2-9389-1933a9507f08", "text": "socrates is speaking with his students, specially with plato. "} +{"id": "1003120", "video_name": "39754c31-ff7a-5fa4-a350-30fa09276bfb", "text": "wonderland indonesia ,wayang golek , cepot , zoom out , cinematic hd "} +{"id": "7004812", "video_name": "3f734b4c-435b-51c1-9eac-2afae7c1e8d2", "text": "1920s silent film footage of a cat"} +{"id": "2005237", "video_name": "0a6a57fe-99a8-59b4-8ae7-2131ddede93e", "text": "I fiddled with individual dark strands that pushed out from under my chin as I gazed upon her impeccable form. "} +{"id": "1006379", "video_name": "74c27d56-57de-5a2f-bae3-f345ce2ee542", "text": "sutil camera movement, eyes flicking Message: 1 Attachment "} +{"id": "0006756", "video_name": "3274099f-9cdd-554a-a024-0d0e2a116238", "text": "There was a rapid, almost imperceptible impact of the meteorite. Born as a spark of light throughout the universe "} +{"id": "0003308", "video_name": "3b579141-b420-5731-9abb-38f639792de7", "text": "5 years old child pushing a stroller, the baby in the stroller "} +{"id": "3003778", "video_name": "f21f3315-9fa5-5854-a7b8-9c3b83f67a89", "text": "natural look, woman aged 40, blonde hair, sports clothes, running on the beach, blue water, palm trees and plants in the background "} +{"id": "2005061", "video_name": "29f59653-8237-506e-a818-30878bf0bec2", "text": "Create a scene set in a bustling futuristic city at night with a character who is a brilliant but reclusive scientist. "} +{"id": "8003527", "video_name": "cf9e0781-d037-5bd2-a6ca-8b8765e16d3e", "text": "anime style model firl inside coffe shop drink coffe, detailed art, 2d illustration, 8k unrealistic, detailed cafe design, Message: Callate (Font: MODERN) "} +{"id": "8003892", "video_name": "afed9990-c4cb-5c6b-99a3-00548a592c72", "text": "create the realistic animation of a good looking boy streaming "} +{"id": "2004715", "video_name": "efe7add3-fb05-5a11-b470-f5bbf665c292", "text": "cinematic shot of ultra modern hacker corporate espionage "} +{"id": "4002893", "video_name": "daf2a3fa-df19-5516-ad54-f436a4f939bc", "text": "two men are standing in front of each other, tension between them "} +{"id": "2007607", "video_name": "6ea7b1d1-8daf-5e0d-85a0-4a6c6a25fc55", "text": "a wool girl sitting along a river in a fully woolen world "} +{"id": "3004995", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "With a determined heart, lion set off on his journey. He padded through the tall grass, his tiny paws barely making a sound. The world beyond the meadow was vast and filled with wonders he had never seen before "} +{"id": "0003398", "video_name": "3cf8f318-3d93-5573-b2c3-8ac59daaec81", "text": "Pixar poster with a kid wearing a karate gi "} +{"id": "4003004", "video_name": "9d3854fc-a33e-52dd-97d2-484d72dafcdb", "text": "Female researcher lies on the ground and a robot nervously pushes the researcher "} +{"id": "0005899", "video_name": "22f5d048-03ad-5255-be7e-d8333858ec5a", "text": "flagship is landed on Jupiter from earth. Realistic footage.aspect ratio 16:9 "} +{"id": "1005413", "video_name": "6378ff0b-c213-5be6-926d-a4499e549158", "text": "a beach bathed in the golden glow of the setting sun "} +{"id": "2007897", "video_name": "c84c3926-b247-56f9-86d0-f0de7274f217", "text": "The man fell to the ground, groaning in pain "} +{"id": "3003207", "video_name": "b8f05693-cc54-51ae-9df1-ea2755b28bf1", "text": "In an upscale restaurant, cats work as waiters. They wear small black aprons and skillfully balance trays with exquisite dishes while serving the guests. Their eyes shine with intelligence and elegance, and their tails move gracefully in sync with their movements. The overhead lighting casts a soft golden hue on the entire scene, creating an atmosphere of coziness and exclusivity. Their professionalism and captivating appearance enchant every visitor. "} +{"id": "1004720", "video_name": "57925e0e-b185-5dd9-981d-a0fdca16a096", "text": "Catch my breath; let things go. Visually dynamic. "} +{"id": "3003530", "video_name": "c9cd5edb-5a98-59a6-9566-be2bde24f117", "text": "Naruto in sasuke ucchiha costume of Naruto shippuden "} +{"id": "2004522", "video_name": "997e87ec-2603-5919-b123-90483c54b438", "text": "UFOs and aliens invading the White House "} +{"id": "6004334", "video_name": "52494dd9-427e-5d52-9178-99bed52574e7", "text": "a dark room lit by hundreds of large glass tubes filled with clone human bodies. A group fo small Japanese boys creeps in between them, reflecting in their surfaces, looking at them photorealistic 8k cinematic camera angle and motion "} +{"id": "6003972", "video_name": "2474e667-7b90-5dee-86aa-9c954044c478", "text": "a beautiful home with a very green compound "} +{"id": "8002652", "video_name": "e894f36b-63bd-57ce-9216-846196bc3f30", "text": "dancing on my own , ultra cinematic shot "} +{"id": "7004932", "video_name": "0199059d-c5ac-5393-b3cf-b09eb85012c1", "text": "Slowly pull forward along the path into the camera, and the clouds in the sky move from left to right Message: 1 Attachment "} +{"id": "6002220", "video_name": "6f31f4de-6bfe-5ae8-81d6-f7c9f8f838f0", "text": "Xander continued to mentor and inspire generations of sorcerers and sorceresses, "} +{"id": "3006846", "video_name": "17521335-3dd3-576a-866e-366628d71e10", "text": "Snowy snow, sledding children in the snowy winter forest "} +{"id": "7002424", "video_name": "7d691147-a413-574a-b68e-52391ab046b1", "text": "Late night talk show host talking, portrait, half human creature designed by David Cronenberg "} +{"id": "2003369", "video_name": "5a891e1d-ddfa-5f0a-9051-c8e8e315756a", "text": "goddess in front of a waterfall synthwave supernova burst "} +{"id": "4003488", "video_name": "aae3cc15-abe5-5c57-af59-1d2f83054831", "text": "General Zhao Zilong during the Three Kingdoms period of China 2K "} +{"id": "0004291", "video_name": "067dee5a-9809-5afe-8ffe-a82e5b62108a", "text": "a warrior girl approaching a mayan ruin in a post apocalyptic landscape "} +{"id": "6004648", "video_name": "ce5e5702-4817-59ac-bfe7-2887a024aaff", "text": "a ghostsquad walking in a warzone, dramatic, war backgroung "} +{"id": "3005431", "video_name": "ac8a7657-9740-5578-b67d-c436e35ea266", "text": "cartoon manufacturing canned evaporated milk in factories "} +{"id": "1006542", "video_name": "77d74a35-5717-5b98-8ebe-7f1d05c0f100", "text": "Rudolph with a red nose in a festive setting "} +{"id": "7003594", "video_name": "8d2f3056-0082-5d89-93fc-f697e4abf9c7", "text": "Front view of an animated girl standing "} +{"id": "0003977", "video_name": "00f878b5-cf9b-5261-aa65-b79a7b5cbee8", "text": "I had a low level of education, 16:9 "} +{"id": "4004605", "video_name": "c1af73b8-cff5-57f4-9050-9a6095a2f332", "text": "the gray moon rotates in space among the stars, there are many meteorites and the sun around "} +{"id": "5001295", "video_name": "267d797c-92af-51b4-96d6-401b34281162", "text": "The friends gasped in awe and fear, but instead of attacking, the werewolf began to dance and twirl in the moonlight. Its howls turned into joyful laughter, and the forest seemed to come alive with magical creatures joining in the celebration. "} +{"id": "8003526", "video_name": "a06d5a68-c4ef-5098-9f83-f84aa25d5b48", "text": "abstract watercolor fluidart octane render hyperrealistic video "} +{"id": "1004025", "video_name": "4aae6a7a-b114-5eae-abe7-e823d03755f9", "text": "ooming in camera angle, converting to 3d look "} +{"id": "1006349", "video_name": "7444d5de-7d44-580d-9199-be4438a1139f", "text": "heavily armed robots walking on streets scene should look realistic and quality of video should be high "} +{"id": "2003630", "video_name": "e3d7acac-2c15-5087-8569-d5176e04ca34", "text": "In HD. a couple standing together inlove in a place that looks so comforting. A scenery that almost feels like you are dreaming. The man that is inlove is mixed race and 6 feet. The lady is 5 feet and arab. They are sitting together somewhere high looking at a very pretty scenery. There are fire flies around them. Futuristic and mesmerising place "} +{"id": "4003036", "video_name": "b464a873-f604-5e82-9601-f5af32b8e94b", "text": "Iron Man dancing in the forest in morning time "} +{"id": "3004778", "video_name": "3e249b7e-0cb6-5ac3-9ac0-e1a602d66ea9", "text": "beautiful young female with brown hair in pink sweater walks down the street, view from behind "} +{"id": "7004368", "video_name": "9bb7a5f8-7711-566e-a94b-76bbb2fa8a5f", "text": "girl with helmet riding a red motorbike in a neon lit cityscape with lights steams passing "} +{"id": "5001471", "video_name": "9a8e6c2e-ad3c-502b-bc8b-3ae2823ef347", "text": "A mouse in a jail, old cartoon style, jail Uniform "} +{"id": "8002811", "video_name": "54068e67-2cba-5e6b-a319-b15ad7e3d905", "text": "a fiery meteorite flies on the plan at high speed moving away from the camera and approaching the planet, cinematic view, epic sky, detailed, concept art, low angle, high detail, warm lighting, vol "} +{"id": "8001756", "video_name": "09ed4ad3-66cd-553f-aa3e-e8e073000130", "text": "A muscular man is doing pull ups inside a gym. Orange evening sun rays are shining in on him through the windows. There are a few people in the background. The angle is that we are viewing this man diagonally from behind him. "} +{"id": "5001477", "video_name": "ea415f4a-964a-5d52-b4c2-f17e29785a7f", "text": "a lonely and dark town at evening "} +{"id": "1006365", "video_name": "74955746-1059-5b24-8887-aa4d97d2b053", "text": "Maia Sandu is getting a new haircut like marge simpson "} +{"id": "8002479", "video_name": "50a94190-f63f-53e8-bc86-a1e446e4d7b2", "text": "snowfall in evening in the garden in Japanese anime "} +{"id": "1005403", "video_name": "6345c34e-0594-50c0-9498-decfa48fffdd", "text": "giant scary octopus under the ocean "} +{"id": "8001900", "video_name": "c055c4c2-a2d6-5770-8eed-acb3d17eca2f", "text": "Create a scene where the doors of a school bus open and shut 8k, ultra Hd "} +{"id": "4003259", "video_name": "c26cbe9f-6f23-580f-941f-006cdc740f21", "text": "a single stylist realistic woman working on her dress model, she has a long brown hair, she wears a fuschia short and a rose tee shirt, duration of the video: 5 seconds, she sits on a gamer chair and looks sad "} +{"id": "3004555", "video_name": "3df342cb-f3b2-5fa4-8bb7-8139f75f8d98", "text": "Fight between Mike Tyson and Johnny Depp "} +{"id": "2004589", "video_name": "005ea40d-191e-5355-ae88-51e8088d2edc", "text": "Animated sequences of joyful laughter echoing through the forest. "} +{"id": "0005142", "video_name": "1588aca9-3e1b-57b4-884b-420959d65bb5", "text": "Chaos in the Streets of Berlin, Right before the Apocalypse, Minutes before nuclear biomb hits Berlin, A young Policeofficer in a fight with criminals "} +{"id": "1005991", "video_name": "6e25ec48-3690-59a4-bd1c-7ab2c88bfe0d", "text": "view from above,realistic full body,action footage,superhero rabbi that looks like dr. Strange,in a dark world, fighting evil, muscular body, cape waving in the air, defeating evil "} +{"id": "0004493", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "walking in the snow storm Message: snow (Font: MODERN) "} +{"id": "3004878", "video_name": "01b1fd9e-b9a7-54c1-a4b6-65ae0527f956", "text": "a beautiful medieval fantasy style castle with a dragon on top of it "} +{"id": "1006233", "video_name": "723ac7ea-558e-530c-9dd5-1c37c60ae88a", "text": "The heartbreak she had experienced was no longer a heavy burden but a stepping stone to a stronger, more compassionate version of herself. "} +{"id": "2006530", "video_name": "ee251d2a-1a60-5cc2-83ba-c367fa58a206", "text": "Create a humorous 3D depiction of Sheikh Chili receiving traditional Pakistani punishment from his mother, incorporating cultural elements. "} +{"id": "7003014", "video_name": "78bf1ae3-de93-5364-adf0-9e26ded390b8", "text": "Picture Sunflower Elementary, a vibrant school adorned with sunflower murals, children playing, and the spirit of excitement palpable in the air. "} +{"id": "4002770", "video_name": "edcb2b3b-d431-5b45-9343-707a605bd768", "text": "Alex engages in activities that harm himself. "} +{"id": "2005730", "video_name": "033f880b-e799-507d-8ca5-25ea88e3d422", "text": "Translate, turn a green straight line into a red circle. "} +{"id": "2005156", "video_name": "b3ed3bf6-c453-5f55-931e-2200e28b698c", "text": "In the center of the card is a large, blooming lavender flower with purple petals reaching the top edge of the card. The flower glows gently and creates a peaceful atmosphere around it. The sunset can be seen in the background, painting the sky in shades of purple and orange. The whole picture reflects a sense of balance. Message: Bessets (Font: MODERN) "} +{"id": "3006529", "video_name": "b49868b7-b7f9-5597-b991-15ad8994b16e", "text": "FINAL FANTASY style, beautiful fairy flying in the sky, white one piece "} +{"id": "8001885", "video_name": "38c33355-f9de-5bde-ae9c-202759858427", "text": "cyber brewery, cartoon style scene, hazy feeling, lots of fun "} +{"id": "2007620", "video_name": "017c5f6f-88c6-51e0-a8f5-d102c51c880e", "text": "The image a group of person standing upright then gradually turns to collapse look like human evolution images , fanciful, Meditation, Vipassana, Mindfulness, Mental properties, Dukkha, Anicca, nirvana budda, multiverse in asia culture, in the style of Yaacov Agam artist, cinematic "} +{"id": "3005087", "video_name": "338b06a8-9573-502c-8d10-48980fca569f", "text": "A girl with beautiful features, her hair is long and beautiful, and her body is more proportional and tall. The freckles on her cheeks, the beautiful wide eyes, the feminine body. "} +{"id": "0004533", "video_name": "0ac4c7be-cd9e-5e99-a32c-a3d6346a7cd1", "text": "When he opened up the patient, "} +{"id": "3003441", "video_name": "4380b223-c111-58b8-be2f-4f59528a11c1", "text": "A superhero with a capital M on his costume "} +{"id": "7002229", "video_name": "b667ea8a-2c64-5aa9-9f43-046c7f66e1c6", "text": "zoro from the anime one piece with luffy "} +{"id": "8003823", "video_name": "40ac09f9-6633-5a98-9649-6355a91b76ba", "text": "the fox running in forest,he is looking around. "} +{"id": "3003364", "video_name": "a581b7b4-9f74-5950-b6fd-cec8c08abd2f", "text": "2 beautiful 25 year old girls dancing on the streets of New York "} +{"id": "4004639", "video_name": "5af96092-2125-5fe9-8694-7db9b8fc4355", "text": "dancing animals like monkey elephant fox lion leopard deers dancing in jungle "} +{"id": "3004023", "video_name": "1656e089-7ad2-5717-845c-8b5f8f6e3807", "text": "Make a script of a man in pajamas walking on a roof stumbling over a stone ar 9:16. "} +{"id": "7004491", "video_name": "916132e4-88b7-565c-9cd1-66949725e4a6", "text": "Capture the magical moment when Sparky uses his flying ability to rescue one of his forest friends from a tricky situation. "} +{"id": "3004590", "video_name": "7af9c420-34c4-5fbd-9e7e-7eb9d925a7c7", "text": "Under the brilliance of the guiding star, the shepherds and children reached Bethlehem, where they found the Holy Family in a humble stable "} +{"id": "6002766", "video_name": "d4c49cc1-6a96-5d74-84b1-f9e39bd81734", "text": "video of a man dancing in the rain, with the sun setting and the arch in the background "} +{"id": "2005757", "video_name": "ac50996b-8f9c-5a84-9ffa-ecfa8b43380d", "text": "a man with cartoon character. his name is Mr. vitamin "} +{"id": "7003237", "video_name": "e2465bb7-5b66-5366-beef-c3a0f9214f1d", "text": "cute girls in disco with lights, beach "} +{"id": "8003413", "video_name": "6f042524-358e-5712-a00e-43498df90a33", "text": "Year after year before the secret meeting between NY State, Riverkeeper, and Entergy agreed to their Closure Agreement and announced by Andrew Cuomo in January 2017, "} +{"id": "4004865", "video_name": "da3b1030-a0bd-575a-bbec-bb9874ff99c8", "text": "dystopian dark city aspect ratio 2:1 cinematic "} +{"id": "2006545", "video_name": "2f67457d-961d-5ed5-bb1d-71dfbf35b5fd", "text": "legend of the boy who never breathes and is dead, oh muhamad "} +{"id": "8001883", "video_name": "76f862f5-7e86-5e27-9e55-d3185ee8bc6b", "text": "a rabbit surrounded by different animals in a jungle "} +{"id": "1004422", "video_name": "51cf9577-bb80-5619-97fa-9bf48874bd8d", "text": "Spanish city landscape, crystal buildings, caustics "} +{"id": "0006112", "video_name": "26cad07d-e220-5f17-9184-db287c33405c", "text": "A compass that spins at high speed "} +{"id": "6004197", "video_name": "b3187905-ea99-50cb-b370-0165cb53d073", "text": "Pan down shot of a green nature with mountain with waterfall "} +{"id": "0005180", "video_name": "162fd6aa-0143-5f34-b319-7aadd6946acc", "text": "3 doctors talking to a single patient "} +{"id": "4002008", "video_name": "f5f50486-3359-51f6-9d39-bddcbcc8e96c", "text": "The machine lands with a soft THUD in a wondrous land. "} +{"id": "3003669", "video_name": "d1498983-2760-5bf6-8d18-be8c0eb4a10c", "text": "a deep dark forest and zoom to a particular tree and a man sitting under the tree on meditation posse "} +{"id": "3003257", "video_name": "fde75fa5-2bef-5ed6-8c77-50b20557b97a", "text": "A train with a locomotive go throw a pine forest "} +{"id": "0006087", "video_name": "266a844f-70f3-5ea3-be73-8fc15b579da1", "text": "a young woman named Lily. Her eyes sparkled with dreams, her heart danced to the tunes of hope. But life, unpredictable as it is, had different plans.4k "} +{"id": "2003288", "video_name": "d08bb5aa-5d21-500d-9855-555f3e8e17e2", "text": "stickman doing basketball, in the style of drawing "} +{"id": "0005272", "video_name": "179e5976-ecfb-5dd4-9e99-1959bd1aaa60", "text": "A vast, mythical battlefield stretches across the horizon. Dark storm clouds loom overhead, casting an eerie, ominous glow. Ravana, a towering and menacing figure with ten heads, brandishes his fearsome sword, exuding power and arrogance. The ground cracks beneath him as he prepares for battle. "} +{"id": "3004283", "video_name": "7a0901d3-0ffb-5394-892a-db0dd1a93f21", "text": "a couple deeply in love talking to each other "} +{"id": "0006910", "video_name": "3538d334-b5f8-55ad-8ef7-91100e0bb580", "text": "from forest to village aerial drone shot, landscape "} +{"id": "0006029", "video_name": "25555128-3795-580d-b615-8a780357d02b", "text": "groot floats through space playing a guitar "} +{"id": "0003969", "video_name": "00dee24b-14e7-55b7-9a76-2e5fe999c77e", "text": "A female patient open the refrigerator and take out the pills. "} +{"id": "3004932", "video_name": "cae62766-30c9-5f5c-a7ad-129850c921eb", "text": "una soldatessa, nana, che grida con rabbia4k, high contrast, 65mm panavision, super realistic, 16k. gs scale 15, seed 1. "} +{"id": "1005858", "video_name": "6bd9a412-2faa-5938-b26e-f8877afdb0f7", "text": "cartoon indian rocket going into space "} +{"id": "3006269", "video_name": "547d33c7-7d6e-5bb0-a2df-4e68d8f2cccd", "text": "create a 10 second video, opening shot of a new real estate building, drone shot, realisitc "} +{"id": "4003299", "video_name": "ad2541c6-909c-5473-a9c8-b508578c687b", "text": "blond elf girl with green dress running on hill "} +{"id": "7004281", "video_name": "55c9527f-d427-5804-bb3c-019c45379493", "text": "Generate a Land Rover Defender Series on the desert near an oasis? "} +{"id": "1004339", "video_name": "50150a75-0823-5b0e-b651-81d55f18a7e2", "text": "a cute indian woman danceing , "} +{"id": "8001589", "video_name": "dd9f3f73-74f7-5bba-825c-8c8fa2825381", "text": "slow motion video showing legs of elephant "} +{"id": "4004324", "video_name": "1c7f1d25-63dc-5b90-bb41-51675877a45a", "text": "an awesome sunset view with a length of video about 30 seconds "} +{"id": "8002307", "video_name": "05622d76-2cda-54cd-a387-c35588eba80d", "text": "These contests blended elements of power, desire, and honor. "} +{"id": "7003630", "video_name": "554408c5-6070-59c9-a3a0-4dc4461ede73", "text": "A young soldier controls a drone in the war room and blows up a house on the screen. "} +{"id": "7004978", "video_name": "fb59663c-fe07-555c-8ef4-dc7d4aa33bc8", "text": "Haunted Texas Roller Coaster Ride first person view "} +{"id": "6003587", "video_name": "3c9578c5-ae04-549c-aeeb-1a432f249541", "text": "The Gemini space station orbiting Earth in the distant future, with futuristic modules interconnected by walkways, against the backdrop of the cosmos. "} +{"id": "3005179", "video_name": "6d619f7d-98f2-5bad-84dd-420c5445eef6", "text": "make Charles Manson on a podcast in an interview "} +{"id": "0004885", "video_name": "10e58e6a-f391-5b27-8325-04a63403a8d1", "text": "christmas card opening blue christmas tree snowing "} +{"id": "1005960", "video_name": "6d85c3e6-4c09-5676-8815-255e043dd52e", "text": "cinematic film, surrealism, 70s art house, french new wave, midssummers night dream, stanley kubrick, knight fights a druid, night "} +{"id": "2003398", "video_name": "e7b7da08-6a26-570d-847e-ac333f8dde17", "text": "Opening Shot:\nEstablish a serene Greek garden with classical architecture in the background.\nIntroduce the limbless, faceless Greek female statue at the center of the frame. "} +{"id": "1006681", "video_name": "7a7e04cb-3175-5a7f-a8c2-fa0db326bee4", "text": "A lovely cat, Wearing a trench coat, Walk on Times Square "} +{"id": "7002612", "video_name": "e6cf7445-805d-530d-ab69-22f4c0996be4", "text": "Use animation or reconstruction techniques to visualize a hailstorm, dramatizing one of the proposed theories about the demise of those at Roopkund. "} +{"id": "0004915", "video_name": "1160a9f8-acc0-54cf-9658-0860e39265c2", "text": "organic compounds could come together and form more complex molecules "} +{"id": "2003565", "video_name": "dcb81344-9757-540d-9f2b-5fae50bd326f", "text": "smile girl back ground bluish sky "} +{"id": "4002567", "video_name": "903bbcf0-eece-52f0-b0bd-8de03acaa4f0", "text": "woman with Afro walking down a colorful city block with a purse on her shoulder. She has heels on. "} +{"id": "2005275", "video_name": "4fa0b5b1-a070-5a56-afda-6bccefb65fbc", "text": "space view on dusty planet, feature film scene "} +{"id": "0005359", "video_name": "196cba11-5c7f-56ab-97c8-9cfe47a2532f", "text": "Chibi star wars characters running around the death star "} +{"id": "0004737", "video_name": "0e5caff9-8a3a-563f-9862-df19f18652ea", "text": "an old cowboy tailor is satisfied with the jeans that he made. "} +{"id": "4004517", "video_name": "6f2303e7-1fd4-5667-8950-bd91ce939769", "text": "home video of children playing in the snow in the 1960s "} +{"id": "2004712", "video_name": "b10e7e08-ee5b-55f9-8be0-7872196672ee", "text": "a group of campers having a good time "} +{"id": "7002547", "video_name": "93caf05e-7c00-5c63-ae29-76ee28b3c92b", "text": "Present a natural scene, such as the process of a small tree growing into a big tree, or another natural change, to illustrate the concept of the natural operation of karma "} +{"id": "3004406", "video_name": "c72dab59-4893-568c-ad8f-857dee9691f1", "text": "a guy walking on the moon with his cat "} +{"id": "4004848", "video_name": "0e66ce94-d117-58ad-a8cd-6768cd264182", "text": "man and woman holding hands, floating in space, energies emanating from their hearts and connecting with each other, waves of energies travelling through their bodies, bliss and love all around. high detailed, 8k uhd, cinematic lighting "} +{"id": "8003049", "video_name": "019e67bb-37c1-5e79-95fe-87175f3491c5", "text": "god cat with 3 swords fighting with one sword in the mouth and one in each hand "} +{"id": "1003402", "video_name": "3ec661ba-5c6a-5355-9238-5386234ca271", "text": "the scene from Kingdome of Heaven called Jerusalem has come with space marines from Warhammer 40k "} +{"id": "7004888", "video_name": "cc425a39-24f5-5cb8-ad21-b6770ba8824f", "text": "a red sky showing a space ship coming down and the ground consist of burn trees and the space ship land and a red alien come out from it and make it more realistic "} +{"id": "2006029", "video_name": "0393fb08-9a54-58c1-90e1-293caa2c3369", "text": "I want the trees to move with the wind, the flowers to move with the wind, the clouds to move with the wind. "} +{"id": "6002415", "video_name": "d017efa4-adb4-53d7-8ebe-a895103d1a12", "text": "an abandoned basement with flashing lights. "} +{"id": "4002563", "video_name": "e8e47191-25a8-5848-b3ad-21025e1dbc4a", "text": "horror session door opening and closing "} +{"id": "0003270", "video_name": "3a96c672-264a-556a-b5b9-a7a14aa6cfd4", "text": "Anime sketch style. Red headed woman in a ponytail wearing pirate clothes walking down the Stormwind harbor smoking a cigarette. Anime sketch style. Motion:4 "} +{"id": "1005320", "video_name": "61bd32d5-c213-5efd-aaf8-5ad50ec1d264", "text": "kids grabing the remote control to watch saturday morning cartoons "} +{"id": "8003180", "video_name": "941dbd80-626a-5ce6-b055-d0ee288b7436", "text": "The cat is wearing a red coat and a white coat and blue trousers "} +{"id": "7002344", "video_name": "51e4c6b1-bc7a-5360-81ec-1ee2f37b8890", "text": "POV video of a man boiling milk "} +{"id": "7004135", "video_name": "c5e5ddcd-16be-569e-990e-983efe6479f9", "text": "A dolphin typing on a keyboard in a pink college dorm with a window looking into the quad. "} +{"id": "0005148", "video_name": "1598d42e-eee8-531a-8f38-0c1e458ddc50", "text": "a girl is knitting a doll that looks like a music note, steadly sitting on a cozy chair "} +{"id": "7002093", "video_name": "316c6b42-c01f-57d1-9495-423aaf78bedd", "text": "lord Shiva sitting on the Everest for meditation and river is coming to the Himalayas Everest. "} +{"id": "3005630", "video_name": "76d28f94-8412-5ebf-8d81-e924f6eb1a02", "text": "A flock of dogs running along the roads "} +{"id": "6003304", "video_name": "4fa996c1-6025-5cad-bd12-6f6542b10c3e", "text": "Lily and Blossom, two adorable fairies with bright, cheerful appearances, tending to a group of woodland animals who were smiling and playing together. "} +{"id": "6004202", "video_name": "1b3edbb6-e0ec-5b5e-9b20-72f38aa08197", "text": "water aquatic life mystical sea creatures "} +{"id": "7002584", "video_name": "74b192a1-9a3b-509b-95e2-47e46710e168", "text": "movie advertisement style, long beard grows longer on young handsome man "} +{"id": "0003681", "video_name": "4196e173-0770-5f1c-a139-b8dc0b88428c", "text": "a boy writing a song and sitting at the window "} +{"id": "3006190", "video_name": "508a8853-409a-51aa-962f-db2c46bd54e0", "text": "a low flying helicopter over forest, pilot cockpit view "} +{"id": "0005354", "video_name": "1947633a-f120-52a2-bd37-429cb8b60ad7", "text": "a cute chinese boy is playing computer, writing code, and playing robot with his dad. "} +{"id": "7002989", "video_name": "d2c7a1f9-de70-5f9c-a6d2-7cbbb89a5329", "text": "In the heart of an abandoned town stands a derelict clock tower, its massive hands frozen in time. Legend tells of the Clock Keeper, a spectral figure bound eternally to this tower. "} +{"id": "8002461", "video_name": "1f801001-471e-512a-8bf0-cb269fba5464", "text": "A muscular man walks towards me in the darkness of the night he wore a large metal pyramid helmet dragging a large sword behind him strange zombie creatures followed him "} +{"id": "7003821", "video_name": "4b884efc-d4ec-5657-b99e-13f8e61ede5b", "text": "Promises once golden, now shattered and torn apart "} +{"id": "2007933", "video_name": "824cd91f-b08e-50ab-91b4-1ea9540eadb5", "text": "cinematic fantasy land invasion people running from the castle in fear walking foward "} +{"id": "1005200", "video_name": "5fad8673-41b4-5c5a-a2e3-7c0b0731bc76", "text": "molten sparks gently falling to the ground with smoke filled background. "} +{"id": "3005046", "video_name": "4cacb6fd-add7-55d0-be8f-5640703ed0b8", "text": "bomb blast in Syria building dynamic camera movement shadows on lighting on "} +{"id": "4003067", "video_name": "9f138cdd-28f2-577e-b067-067e1de55503", "text": "dance of young woman at beach "} +{"id": "1005903", "video_name": "6c83a532-9b88-50da-92aa-916baddd365b", "text": ":Workshop for computer and cell phone repair. "} +{"id": "3006946", "video_name": "788a161d-c434-5afe-aa7d-61d1c65256ec", "text": "sad, dancing, vals, ballet in a flying whale "} +{"id": "2003354", "video_name": "5edbeb2b-bd74-5ac1-9ea7-02a85766a73f", "text": "a girl is playing guitar, pixar style, cyberpunk "} +{"id": "2005744", "video_name": "586e009d-ae5b-58a5-8fa8-5c92ed397689", "text": "Feathers flying off of Thanksgiving turkey as dog eats in a vintage Tim Burton film style. "} +{"id": "3006584", "video_name": "bcac1d8d-83cb-5af8-bf7b-c9aaf4aa07f1", "text": "Let the icon move, front and back appear separately Message: 1 Attachment "} +{"id": "6003033", "video_name": "216ebec6-e995-5b67-a198-5833cdc8167f", "text": "Construct a 3D landscape illustrating a twisting and turning life path, integrating symbolic obstacles and opportunities along the journey. "} +{"id": "2005282", "video_name": "fc4004dd-d726-53db-ac1a-f34f501471df", "text": "mediaval age king council, back lighting "} +{"id": "1003228", "video_name": "3b7dd139-47a2-5101-86dd-ff2b05b44ba4", "text": "vampire turning himself into a handsome man. High details, high quality, 8k, DSLR effect, cinematic, dramatic, 5 second video. "} +{"id": "6003796", "video_name": "be4d4fc2-300a-5083-9a71-887507eabcd0", "text": "a small boy who use a katana in light speed anime style "} +{"id": "6002116", "video_name": "8aceca59-27c5-52a1-9cb0-13bf4990dc5a", "text": "a young girl looking up at the moon anime style "} +{"id": "3004412", "video_name": "77cf0fa9-c100-5cf2-9b96-bb6a6743c40e", "text": "Krampus reaches to the top of a Christmas tree "} +{"id": "4004232", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "a woman walking in the Edge of a precipicle. "} +{"id": "5001854", "video_name": "302b1781-e103-5494-b721-8ebe81da5774", "text": "woman in transparent dress in LA "} +{"id": "6002434", "video_name": "69927ea3-1792-5719-b834-46c6f1295664", "text": "A happy family in living room celebrating chritsmas night "} +{"id": "5001692", "video_name": "21d22b46-74de-5a87-92e3-b77e91c2670a", "text": "Turkish War of Independence, declaration of the Republic, economic developments, 29 October 1923 "} +{"id": "0003782", "video_name": "43517091-cd0b-50b1-9104-009f24b9be03", "text": "China and us fighter jets dog fight "} +{"id": "0003785", "video_name": "4368fdcb-9659-5228-a3de-acebd512feb5", "text": "Cartoon image of a malay warrior named Hang Tuah "} +{"id": "6002900", "video_name": "0a4301cf-2be6-5190-9570-cdcfbc6e29f9", "text": "The forest was dense and silent. The background was a towering row of trees and a thicket of bushes. The sound of wind blowing and the sound of animals wandering in the forest could be heard. "} +{"id": "3004041", "video_name": "5997c6d5-4bb6-5ac6-887d-fbff17d5e341", "text": "alien warrior space ship flying in the sky shot from the side "} +{"id": "3004281", "video_name": "c05b6455-3d3b-5f59-86c6-c49b135d1a4e", "text": "a shadow handgun in a pool of water "} +{"id": "1005954", "video_name": "6d568386-8f35-524f-981a-8046f4e8014a", "text": "Elon Mask dancing a russian dance on mars , 3 d , unreal engine 5 , hight quality , clear video "} +{"id": "8001165", "video_name": "7d571c17-14d1-5b83-812e-928b6eb6ffc5", "text": "Generate an image depicting a small fishing boat capsized in the open sea during a violent storm, hyperdetailed, 8K, Upscaled, hyperrealistic dreamlike, ultrarealistic "} +{"id": "1004903", "video_name": "5abd0aa9-9531-5226-aea2-8b3b1acef594", "text": "jets flying low at high speed "} +{"id": "7004051", "video_name": "ef56f9cd-130a-51d1-85db-92837de4c8fa", "text": "Strange creatures with 4 heads and 65 fingers do motion design work "} +{"id": "4004641", "video_name": "9a3fd0b1-d447-58ff-b19e-543051b3eccc", "text": "one yellow ducks are swimming in a lake surrounded by frogs, lotus flowers, grass crickets "} +{"id": "1004449", "video_name": "525156e6-9e49-526d-ba3e-b373565cd00b", "text": "There is a large field in which many Arabs are riding on horses "} +{"id": "2004789", "video_name": "ce14ce8f-ae6d-5b67-967b-ee38f4e48b60", "text": "realistic old man selfi holding clean piece of paper with number 985798 and name zac "} +{"id": "7003582", "video_name": "1e84f3d8-b265-5135-9331-e0c1d2eeb09e", "text": "creates a group of hummingbirds flying through the forest and a sunrise in the sky "} +{"id": "8001480", "video_name": "5704b4e9-902c-5058-897d-5d94c91967c5", "text": "mathematic equations in the style of da vinci, hq Message: 1 Attachment "} +{"id": "3006660", "video_name": "d7f85708-bc23-5bc2-ac3f-4a1983855e40", "text": "3d cartoon cinema for kids about holy bible "} +{"id": "5001603", "video_name": "fdb0d15a-d999-5886-805e-17edaaab0d87", "text": "a girl in bikin,i the first plan, goes to the sea through the seacoast, day blue and white and rose backgrounds "} +{"id": "2004515", "video_name": "bbd976a0-2ecc-5502-9620-f9aea542edab", "text": "a rectangle board with two tiny slits in front of a screen to catch light rays "} +{"id": "4003358", "video_name": "3577bfed-ea81-5ed2-a495-e5d87d853818", "text": "is consistent with Canadian and EU guidelines. "} +{"id": "1005977", "video_name": "6dd966f4-5f47-574a-bb62-7efe367b447a", "text": "People run around in circles at the bottom of the watch and the hands of the watch turn upside down "} +{"id": "6002079", "video_name": "a0889781-b9c8-5bc5-8069-b1d3bc0e5bc6", "text": "KGF rocky bhai as a rapper "} +{"id": "7002189", "video_name": "d47e51b6-ac99-56dd-9baa-dd6aa3d9c32c", "text": "a guy walking towards light through dark "} +{"id": "2006608", "video_name": "98740ed6-8e42-5db8-8b0e-e24155ac8d70", "text": "a can sticking out of the roof of the house and flying into space "} +{"id": "2006762", "video_name": "67780ea0-9743-5e5d-971f-1b1462b9dfe9", "text": "A boy playing guiter, dark background "} +{"id": "4002324", "video_name": "501e747b-70a5-5ec2-9a35-2481db017ac1", "text": "a film from 1965, technicolor, a black space background with stars zoom out, grainy image, retro colors, nostalgic, 4:3 "} +{"id": "8001005", "video_name": "c7c11dc7-ad93-53da-b1da-ebcb1df93027", "text": "mountain with cloud, sun raise in the morning "} +{"id": "5001917", "video_name": "3414488a-3653-5631-9276-d0709ce1a042", "text": "unlimited french fries falling on a big pizza crust "} +{"id": "7003138", "video_name": "31236f3c-4459-5448-a4ff-92bd0f64d9ea", "text": "Space and planet images, showcasing the concept of black holes. "} +{"id": "1003796", "video_name": "46171e99-a369-5b17-8515-9fb7f32e0e58", "text": "a camera lookes like a human and play basketball on the playground "} +{"id": "2004041", "video_name": "498324dc-f885-5bdd-aa4e-802c50cf2d9e", "text": "Create a realistic video 10 seconds long, moving from the desert to the center of Dubai "} +{"id": "0003865", "video_name": "44db9713-d7c3-5a8e-9e55-83d16191d05a", "text": "street view animation with cars, people and aliens "} +{"id": "5001357", "video_name": "e2a5e6a1-7ed6-5f1b-9c03-7accf152ff3a", "text": "animated angel and cotton field wher wind "} +{"id": "8001049", "video_name": "74ad4a33-e6dd-5828-a890-1aa25602d066", "text": "ghost laughing on mobile phone call "} +{"id": "4004595", "video_name": "ec8a680d-0d9f-5b77-a891-5ec2376be1a9", "text": "A beautiful girl in a strapless skirt and black stockings is dancing in the forest "} +{"id": "0006907", "video_name": "3527df2b-6483-5de6-962d-645c0dbbf093", "text": "May the light of Diwali bring you and your family endless joy. "} +{"id": "1006619", "video_name": "7955e782-cd74-5f43-bfea-7862938a2df7", "text": "fantasy flag of Kazakhstan in the wind "} +{"id": "4003679", "video_name": "0caa92e3-a752-5aaf-a909-23da4866c0ed", "text": "In the dim moonlight, Sarah heard whispers from the old, abandoned house next door. "} +{"id": "2005451", "video_name": "1bdb5c27-3dac-542b-b8dd-d0c24c5f190c", "text": "A aisa girl show the chinese kongfu\uff0cblue hair. "} +{"id": "3005475", "video_name": "f67f2c3e-d29b-5b14-a55c-0e3f208f0f3f", "text": "a man flying with vampire wings "} +{"id": "8002000", "video_name": "74ab8bd4-5696-5a6c-ba0e-6f0fc037bb2a", "text": "The right arm is moving up and down "} +{"id": "1004268", "video_name": "4ef7cf41-1a78-561b-a53f-e8296f9b8de4", "text": "A bar from the American Western era "} +{"id": "3004948", "video_name": "bb421aa7-0574-5d41-87d0-24633dfe1705", "text": "looking up at trees swaying crazily in the strong wind "} +{"id": "3004713", "video_name": "2c351472-4775-5973-9745-9f1a443736b6", "text": "swans are flying in the beautiful sky and coming towards the pond on the earth "} +{"id": "6002673", "video_name": "67a6b1aa-e242-58c7-a9c7-0c953c3cb37c", "text": "Dark burnt trees in a forest Message: OUT NOW (Font: MODERN) "} +{"id": "3005702", "video_name": "aaa9b5de-5273-566e-bda7-beb8485525ea", "text": "Obama at a cookout gobbling hotdogs "} +{"id": "2003613", "video_name": "00f204cd-c183-583f-bdbf-cc5a8f931c74", "text": "a peacock walking slowly on green grass, 2 minutes length video "} +{"id": "2005737", "video_name": "a2580e10-faa3-5a33-bdc3-6fabfd1640b6", "text": "A big bear comes to save the girl "} +{"id": "2004955", "video_name": "55599899-639a-5610-b2ab-76e57309d52d", "text": "a dancing scene in a spy movie, mid 1940, man and woman, vintage, sepia, couple dance "} +{"id": "7002133", "video_name": "a776681b-25aa-584d-bb66-6469d2f1c9d3", "text": "a cute panda riding a bike between wood forest "} +{"id": "2007339", "video_name": "b59bd0d7-aa0b-5998-be06-cb2049af571e", "text": "Show the FreeBitco.in logo and website URL. "} +{"id": "0005207", "video_name": "169a051f-5a44-5936-b97f-02977279068c", "text": "exploration robot on a scary exoplanet with an orange atmosphere "} +{"id": "1006110", "video_name": "701a7e37-241e-5d80-a19f-bb6ef547df27", "text": "a cozy bedroom for a robot on a spaceship "} +{"id": "4003728", "video_name": "ece157eb-77e1-5a94-9b63-89f6f05744eb", "text": "A smiling buda sweating holding a eletric fan in one hands and a umbrella in the other hand with a huge sun behind him in one half and a huge storm on the other half of the background and some birds flying in the background, highly detailed "} +{"id": "6003849", "video_name": "eba7b575-bb1b-51f3-a536-ff30888d6b52", "text": "An engineer works on making a roof, The roof is covered with solar panels, Wind turbine in the distance, The blue sky and white clouds "} +{"id": "8002736", "video_name": "2e79b9d2-a4fb-5a2e-be1c-d107785bb334", "text": "gojo saturo fighting with sukuna 20 sec animation "} +{"id": "3006585", "video_name": "ae793f99-6a30-50a8-982c-d747f9fa5cdd", "text": "thunder in cloudy sky and an aeroplane flying through it from distant, realistic "} +{"id": "3006345", "video_name": "1bf7a2ae-1784-54a6-9473-02bf6912737f", "text": "emerging from glittering prismatic dew drops scattered in space Message: miss you (Font: MODERN) "} +{"id": "8001712", "video_name": "4414659f-c541-5795-8205-485676caed55", "text": "People eating hummus with pita bread "} +{"id": "2004791", "video_name": "8076c6d9-191b-5d71-801f-7d44886b97b5", "text": "send best video of trading promotion "} +{"id": "4003888", "video_name": "746bb046-b23e-5bf7-9abf-3566ed26a299", "text": "call on WebCam, nighttime, woman floating head pass the screen fast, blurry "} +{"id": "0005457", "video_name": "1b0c7e51-ffbb-5908-8d81-24f30b3d014b", "text": "nightmare before christmas style landscape wind blowing rain coming down heavy "} +{"id": "6002534", "video_name": "02ad730a-e46d-59b1-b1ef-6c7b1f60d6bb", "text": "a little boat ina huge thunderstorm seeing the light that led the out if the storm "} +{"id": "0004652", "video_name": "0cbb4f48-29b5-5f06-8305-56a2e9cd66f0", "text": "a beautiful African grey parrots flying through a dense jungle "} +{"id": "2003874", "video_name": "3dc0babc-9980-5c4e-9be1-f22b47e190eb", "text": "wide continuous panning shot recreation of a random scene from the movie the Dark Crystal of a great army marching, in the artistic style of HR Giger and Jim Henson, "} +{"id": "3005282", "video_name": "209dd8ae-d78a-5308-baf0-43615e80cc2d", "text": "A lizard that can be seen as a reflection through an eagle\u2019s eye, the Eagle is stalking its prey. Realistic, cinematic, 4k quality, 8k resolution, no blur, clear, 24 fps "} +{"id": "8002975", "video_name": "108ac8d1-ea8d-5b11-9276-194897a28749", "text": "Cowboys hide behind the wall to observe "} +{"id": "2004554", "video_name": "bcdbfd8c-2a96-570f-8b31-cc0a7be88619", "text": "Dread spread like a dense fog, enveloping every corner of the house with its icy, terrifying presence. The horrifying laughter ceased, leaving a charged silence that seemed to resonate with the agony and fear that consumed us. "} +{"id": "0005304", "video_name": "182bd543-9051-54d4-8f79-8c1fdd9b0dd7", "text": "Sharing young woman Lily and young man Max heartwarming story with the villagers 4k ar 16:9 3d "} +{"id": "2003618", "video_name": "ef0cabbf-fe7b-556d-85f9-832d57886b37", "text": "A man is playing League of Legend with other 4 friends "} +{"id": "7002025", "video_name": "89bd71ad-0ade-535d-9968-d8c4a8f7e829", "text": "cat walking, eyes blink, tail swing, ears moving by wind "} +{"id": "7002404", "video_name": "3215cccf-60ca-5969-86de-e3ae399fad86", "text": "Farmer harvesting wheat field Message: 1 Attachment "} +{"id": "0006505", "video_name": "2db00c88-b6ac-5167-8338-093973a152bf", "text": "55 yo man walking in the park, early morning "} +{"id": "7004484", "video_name": "5f3bc919-1524-57a4-bb24-e93229647421", "text": "dark horror room, the wind rattles the curtain "} +{"id": "2006620", "video_name": "524c47f5-630b-5f54-82d4-becd502aba37", "text": "Create an abstract piece inspired by psychedelic art, using bold, swirling colors and patterns. "} +{"id": "3005507", "video_name": "7c84d236-c7b1-5017-9f6d-5f6b21dfc6ec", "text": "You have come to a wide open land, where there is a peaceful lake, the water of which is like a mirror, reflecting the reflection of blue sky and white clouds. You approach the lake and sit on the soft beach, feeling the gentle breeze brushing the ripples on the lake surface. Water birds play freely on the lake surface, emitting a soft chirping sound. "} +{"id": "6003710", "video_name": "eb168e67-5ba4-5b70-8a05-7babc912c6bc", "text": "A 10 second video of Tiger and a lion in a forest "} +{"id": "0006193", "video_name": "27ff1f05-942b-5042-bc81-1cb845725a40", "text": "A sunny day in a small town. Mia, a young girl, sits on the grass with a set of colorful crayons in her hand.\nExplanation: Introducing Mia and her magical crayons: "} +{"id": "2005557", "video_name": "31a4b3f8-5aec-5a96-b3f9-6a6ba6e2c11a", "text": "The Lion and The Mouse with thier name in the picture "} +{"id": "8002498", "video_name": "3f1e2687-ed08-5442-9b6a-d4ed267ed83b", "text": "Early Life of Guru Nanak Dev Ji: Explore his birth, childhood, and the events that shaped his early years. "} +{"id": "8001939", "video_name": "c8d0584e-8af1-56fa-b6ea-21b422d63c46", "text": "a typical blonde woman eating ice scream "} +{"id": "8003639", "video_name": "28a1c404-8170-5e97-b790-3a1d78a8cacb", "text": "Mothership Ufo Is Invading And Destroying The Street In Triana, Albania, GoPro Cam Footage Filter "} +{"id": "3005740", "video_name": "16ccd75f-1d8f-5690-afec-0dc1ad615ec1", "text": "clouds moving and disolving through the sky, eich turns pink and purple because of the sunset. "} +{"id": "2004317", "video_name": "888f088e-15bb-53c0-92d7-4fc13b2027bd", "text": "walking Down The street on a sunny morning "} +{"id": "6002097", "video_name": "1b8141f0-16b6-5085-a371-688a11eb5709", "text": "A man with lips like slippers "} +{"id": "0006100", "video_name": "2694f3ad-a587-587c-9de9-94b7d9aadd6c", "text": "Trading with emeralds, vivid colors, soft lighting, atmospheric, cinematic, moody, oil on canvas, 8 k "} +{"id": "6003027", "video_name": "16847b3a-34ff-5687-9aed-37c945ca507d", "text": "the last of us edit 8k realistic "} +{"id": "1006371", "video_name": "74a3cef8-9a34-5494-a8fd-f25366d4e3d2", "text": "A visual representation of a utopian society in medievel times and people are running around relentlessly "} +{"id": "0004827", "video_name": "0fe393d4-3bf2-52fb-97f5-2879c1730073", "text": "A Butiful Lady Cary A Vanity Bag "} +{"id": "3006371", "video_name": "24ee612f-5240-58e1-95ce-7477940587af", "text": "Generate an image that metaphorically showcases a small fire generating minimal warmth and a roaring fire emitting intense heat. This image should correspond with the idea that a weak desire yields limited results, while a strong desire leads to great achievements. "} +{"id": "5001064", "video_name": "270b42f2-b6a0-55fb-aae2-b45fb0046205", "text": "dancing cream brule with dragon fire breathing on it is top to melt the sugar , also make the world in fantasy magic world "} +{"id": "3005616", "video_name": "204e3d32-b045-577c-9915-173f42aecdc5", "text": "engin on an engine stand woth camera movement "} +{"id": "3005444", "video_name": "85493c09-60a9-541b-99f9-bf27c28853de", "text": "talking to people with the witcheer man \u2642\ufe0f "} +{"id": "7003538", "video_name": "19248f1b-c58a-5f9f-bb13-d6c3541ba737", "text": "Japanese style hand drawn cartoon, orange sunset casts warm light on green lawn, students play basketball on the playground. Under the cherry blossom tree next to the playground, a young couple walked hand in hand. The picture is smooth, the characters are realistic and detailed, and the definition is high "} +{"id": "2003856", "video_name": "f9088399-139c-5f18-8f44-185dbee28003", "text": "8k anime guy falling from a tree "} +{"id": "1004535", "video_name": "544a4a7e-2416-58ed-98ec-20d4fa117c97", "text": "a pink Mexican concha in a tv commercial "} +{"id": "2003884", "video_name": "52ed16f9-84b6-56f3-8cdb-07298a3589f2", "text": "does a bear poop in the woods? "} +{"id": "2003102", "video_name": "357d6f68-c0ee-5550-8a16-808a5d53159d", "text": "Matthew Noszka and Ana de Armas as Bonnie and Clyde "} +{"id": "2003615", "video_name": "dbeb1c6b-d7b7-56e7-bf1f-dc5f59c2a323", "text": "a man entering gym and starting workout "} +{"id": "3004928", "video_name": "8847f634-e594-57a2-8f2d-5d9520a2363f", "text": "People walk on stilts in the middle of the city at night. "} +{"id": "6002035", "video_name": "626b19e7-dc76-5fc8-aac8-e8bf22cb722d", "text": "a big ice drop on the benroom "} +{"id": "0003017", "video_name": "35a6d2b4-47ed-50ca-84fb-1ab72326949e", "text": "a man in a black suit carries s brief case. he is walking down a busy street. 50s nyc alleyway. atmospheric. wet. mist. Art deco. cinematic. Black and white film noir. Heavy shadow "} +{"id": "3003296", "video_name": "7c8ea0d6-8bca-581d-91e8-14462aa1a2a7", "text": "a realistic image of a female superhero riding a cool metallic blue motorbike on a dimly lit street, abandoned city. cinematic, zack snyder "} +{"id": "0006528", "video_name": "2e2a21ee-51e6-567b-9426-c7281ddafd90", "text": "A Chinese girl in her 20s, with a sweet face and simple clothes, is undergoing myopia surgery in an eye hospital. "} +{"id": "0004054", "video_name": "025635b6-9ba2-5b99-a0c9-6d5c09f6602f", "text": "Little boy Rahul with friends sitting under the tree and planning "} +{"id": "8003990", "video_name": "e7ecb0df-37b6-5ad7-99ea-afdb8b49cb8a", "text": "Adventurer rafting in the river in the cave "} +{"id": "2007950", "video_name": "2b4c6a8a-9ea2-5a83-ad7a-499337719edc", "text": "A shadow, a purple tree and a purple shadow illuminated by a purple ray "} +{"id": "8001700", "video_name": "d2d5917f-b56d-5f9e-a84b-d1dbef4eb507", "text": "a cinematic portrayal of a smart city fully integrated with robots and AI "} +{"id": "7002566", "video_name": "fa28a1e5-76ca-5bd1-b717-5182d0e51dee", "text": "guy sitting in a cafe looking into his mobile phone "} +{"id": "2006522", "video_name": "93b5cabc-29b9-596c-afcd-a6afb982cdaa", "text": "Animation ,UAZ, in the world of the Soviet apocalypse ,hyperdetalized ,hyperrealistic,shadow of Chernobyl "} +{"id": "3005798", "video_name": "4d21df28-2b5b-535a-a629-eb6448ac2660", "text": "a postman wearing a yellow tshirt and blue pants riding a yelow motorcycle with a big yellow box on the rear "} +{"id": "0003913", "video_name": "45a6ab2a-1660-5b63-a837-0f352ee59390", "text": "The mythical God of Thunder strikes the Earth with his mighty hammer. "} +{"id": "7003714", "video_name": "7a2e0581-50cc-5d71-bd2d-f03e8937fea2", "text": "iron man transforming to a bike process , 4k, space, clear "} +{"id": "6002015", "video_name": "c40a5a47-5779-5162-ac94-ddd6ec352a4e", "text": "The story wraps up with a sense of wonder and joy, creating a perfect bedtime tale for young listeners. "} +{"id": "6003011", "video_name": "954c1381-a32a-50c8-b642-27e04e58e2ae", "text": "A powerful hand clenching a pen, ready to write on the Constitution); comic style;Hyper realistic;8k "} +{"id": "1003671", "video_name": "439d1cd7-af6a-5994-aa27-ec6d5897d1c2", "text": "exercising people in massive gym, working out group classes, time lapse, zoom in "} +{"id": "4004061", "video_name": "ae61494a-3aeb-5180-a12e-1c83ac7e766b", "text": "Describe a cozy family kitchen with breakfast items on the table, family conversations, emphasizing traditional values. Highlight the protagonist Xiao Ming wearing traditional home attire, engaging in dialogue with parents. "} +{"id": "0005844", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "a cali girl, stretching, smiling face "} +{"id": "8001259", "video_name": "705b26ab-c8a9-545e-a9b7-07d9e8437716", "text": "Harry Potter and the Deathly Hallows "} +{"id": "7002320", "video_name": "b994be7d-fefa-5d46-bc43-8b619cbe8999", "text": "Minotaur holds an ax in his hand "} +{"id": "8002602", "video_name": "667b4f80-e493-5494-b210-f0edd4b494e0", "text": "Arjun and Maya standing in front of an ancient temple, holding hands as they gaze toward the horizon. "} +{"id": "7003295", "video_name": "7679db3e-34a7-5500-9c65-0b75d18a8a23", "text": "all the forest animals like lion elephant tiger rabbit and all gathered "} +{"id": "7004228", "video_name": "5b001a8c-eedd-5741-a629-f3ae1ae5560a", "text": "snow fall in desert night scene "} +{"id": "8003174", "video_name": "e80d9bfc-62dd-579a-a267-e6c7a17a9c87", "text": "a beautiful woman with smooth skin, long purple shiny hair, seating in the porche car. "} +{"id": "7003968", "video_name": "8b7d19b2-12ed-57e3-b0cd-c9cb11785101", "text": "show a sewage plant with round basin with a rotating influent distributor. "} +{"id": "1006716", "video_name": "7b11c2c7-f731-5b3a-8755-ea328e24b76b", "text": "apricot fall in water, splash of water "} +{"id": "0003831", "video_name": "443e5916-4661-5aa8-b7cc-f337f2685893", "text": "a 2003 infomercial, commercial about feeding octopus with mecharobotics, informative, buy now "} +{"id": "7004190", "video_name": "2bc88cd7-7629-53ef-bbc7-7ea790d4852e", "text": "A monkey dancing in a club "} +{"id": "7004585", "video_name": "9bf765a4-99fc-51e7-9852-30dff311fd6d", "text": "Rear Window movie poster starring Jimmy Stewart and Grace Kelly "} +{"id": "1003787", "video_name": "45e9b4c4-f214-582c-9e51-47e5c76f3f58", "text": "A mouse wears sunglasses and has a cigarette in its mouth, giving it a 1960s feel "} +{"id": "2003574", "video_name": "7877b2c9-0ed7-5766-b6fe-3a29c1d367b7", "text": "best friends yelling at each other over a match of magoc the gathering "} +{"id": "2003367", "video_name": "37f11842-fd51-59e3-a110-8bca77602b74", "text": "cardinal bird drowning under surface of water "} +{"id": "7003035", "video_name": "529a7daf-1678-5a12-9636-51842fdd8fe7", "text": "a silhioutte figure meditating while walking through space nebula "} +{"id": "4002076", "video_name": "fed4d7b0-ab63-5f9a-ad46-263436648b23", "text": "Lily weaing a bag and uniform watching james wearing a bag and uniform walking way "} +{"id": "4002825", "video_name": "9b2b9291-9816-5730-9755-f5da5319e10d", "text": "Dean winchester from Supernatural walking towards the iconic black 1967 Chevy Impala car "} +{"id": "7003674", "video_name": "9fb9d362-93d9-5622-9bf2-be2233147083", "text": "Alice in wonderland and white rabbit chatting dark fantasy cinematic style vintage movie black and white grain "} +{"id": "7002711", "video_name": "bd155d66-b846-55be-bad2-91c4ad283a01", "text": "the brain and the eyes and the mouth and thin tentacles says something "} +{"id": "4002564", "video_name": "6493b5e6-339d-5075-baea-63cf506371d6", "text": "25 year old man following his daily routine of exercise, study, healthy meal and sleep "} +{"id": "0003904", "video_name": "4579d0d6-6287-5e6d-be3f-c90cb8644ff9", "text": "Generate a cinematic video futuristic city skyline in the metaverse. The city should have neon lights, holographic billboards, and a digital aura "} +{"id": "3003396", "video_name": "448f630f-5774-548b-b5b3-ab4a7b9ba507", "text": "nativity scene realistic image ar 16:9 zoom out "} +{"id": "6003736", "video_name": "6dffce6d-c478-549f-8c56-75007366a03f", "text": "a boy with a backpack and holding the holy bible "} +{"id": "0003280", "video_name": "3ab7ad96-1e13-5bda-9123-7e4ea3f0347d", "text": "sunset, beach, waves, clouds, peace, paradis "} +{"id": "1006402", "video_name": "7547da97-55dd-5c1b-9da5-4257c7c57aaa", "text": "flower sprouting out of the ground, goldens sky and sunrays, a dragon flies down to the flower "} +{"id": "1004898", "video_name": "5a77b2e0-a90f-5a7b-a332-77e57122fbf0", "text": "zoom in orbital shot, dystopian greenary city filled with angelic beings walking around with morning sun in the background and trees flowing in the wind. "} +{"id": "2005040", "video_name": "c9aa27a7-2692-5e55-bc49-576e8d89414b", "text": "Earth went through various geological periods "} +{"id": "4004383", "video_name": "d5579876-3f02-5fdf-a988-323268a3fe72", "text": "a futuristic sunlit room, dust swirling in the sunrays, anime inspired. "} +{"id": "3004151", "video_name": "6c262c76-b8e4-50b0-a866-c8386b650dc4", "text": "A woman gazes out the window, lost in thought as the snow falls heavily outside, were is cars and one big dog "} +{"id": "0003549", "video_name": "3f4e2507-4328-5ae2-8cc0-0e00cb7c75dc", "text": "close up time lapse a rose dying "} +{"id": "7003901", "video_name": "5f5c7411-52e3-54bf-a2f9-c4d5f898ee6a", "text": "a background with greenary , cartoon style "} +{"id": "3005782", "video_name": "da3c0882-8ac2-5f6e-81c6-a00807730684", "text": "rabbit in robot unicorn attack style eating magic mushroom "} +{"id": "8002025", "video_name": "f5c20ecc-2c52-59b7-bc6c-9791a64b8f4a", "text": "Romen legion fighting against Cappadocian soldiers in the mountains using artillery and mele fighting "} +{"id": "2004544", "video_name": "ac399f97-3b66-5700-9105-9f737773fc0a", "text": "Last night I had the strangest dream I was floating on a cloud, above a chocolate stream The sky was purple and the stars were all in shape of hearts I danced with talking animals, oh where do I start? "} +{"id": "1004858", "video_name": "59bd240a-ec6c-5cbc-849c-34b5f2600c2c", "text": "A knight falling from the sky in a cinematic way "} +{"id": "3005905", "video_name": "2e2c51f7-fc0c-5138-9246-6d1ed99d108c", "text": "Naruto anime style, girl dressed in white singing and dancing in a forest full of lights "} +{"id": "4004785", "video_name": "1a6f718a-76fe-5c11-8d86-f306a905858a", "text": "a teenage girl listening to headphones leaning on a white wall, 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3 "} +{"id": "8002568", "video_name": "a9493cbd-7b56-5e9e-8f06-95c64500e2f8", "text": "a magical whirpool viewed from above "} +{"id": "1005759", "video_name": "69f3fa90-cc6b-535b-b6ff-4535647bb4f8", "text": "Thousands of people in blue jackets surrounding the US Capitol Building "} +{"id": "6002075", "video_name": "24f21256-9199-58d5-8413-14879bf8f19f", "text": "birds flying, flowers and trees blowing in the wind. clouds moving throughout the sky. trees swaying 4:7 "} +{"id": "8001821", "video_name": "fa7ec2f3-c61f-54eb-ae8d-92c8b834646c", "text": "At 5 inthe evening, through a forest near Delhi. The van was speeding about the highway. "} +{"id": "4003914", "video_name": "56e25104-0b74-598d-ba67-1815a8c61d94", "text": "weird clouds on a dark sky, surreal, abstract, dark colors, dark, moody, mental illness, depression, weird, cinematic, 16:9 "} +{"id": "2003575", "video_name": "8bcb870c-8ee3-585e-ab33-650099950f14", "text": "planting sketch turns into a real wild styl perennial garden, windy, close up, anime style "} +{"id": "2005113", "video_name": "b333e9d5-4a4b-5877-88b4-52ebb0fcf5bc", "text": "Iphone 13 pro turning once 360 degrees then stopping in front view on white background with little shadow beneeth it "} +{"id": "7002304", "video_name": "695b21c2-a352-516e-8227-6475e937e38e", "text": "Gautam Buddha was giving knowledge of good and bad things related to life to his disciples.animated video "} +{"id": "3003791", "video_name": "2233b066-0835-5537-aa76-256b6cb13bc6", "text": "a cartoon forest with birds flying, animals walking "} +{"id": "3005230", "video_name": "a1b551dd-bfc8-547e-aeca-60f812e54bbf", "text": "hi ahmed, i wanted to create this video as proof of my sober intention to pay for all of the bills tonight "} +{"id": "3006997", "video_name": "708b521b-c4a1-5ba6-83e9-e3aaed65dc96", "text": "a girl facing back while waiting, camera zooming close the girl in the midle, as other people work past her "} +{"id": "1005845", "video_name": "6b6cb43a-87bd-5d96-b295-6b631c2daec9", "text": "vintage footage of a retrofuturistic alien city "} +{"id": "2006012", "video_name": "08b6a883-bb86-5ce4-be33-7f9f0b7bd000", "text": "steampunk santa clause sitting in his sled in front of a christmas tree laughing back and forth "} +{"id": "3006137", "video_name": "c2e11578-1be5-5957-8f4b-b55435988c17", "text": "Transition from a dark day to a nice bright day "} +{"id": "4002624", "video_name": "b51b9802-78bb-520f-80a3-eabe9a818dcc", "text": "An alien world with different creatures. There is a young couple holding hands standing in the foreground. "} +{"id": "8003708", "video_name": "54fc5be3-5a25-54d6-96c2-09db979f21dc", "text": "In the mystical confluence of mind, body, and spirit, the ancient concept of chakras holds a pivotal place. "} +{"id": "2005157", "video_name": "7ac8e6b5-0f5b-5dba-b5da-668a8b5a5387", "text": "Thomas stared in disbelief. He had heard stories of ghost ships, but he never thought he would actually see one. He felt a chill run down his spine as he realized that he was not alone. "} +{"id": "4003266", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "Old King with Hammer, backgound is a castle color blue, rainbow at right top corner, river on bottom left "} +{"id": "7002295", "video_name": "6ad03eed-778d-5755-b527-316cca741a10", "text": "1. A girl walking in the rain. "} +{"id": "2005633", "video_name": "f1aa611f-7757-547d-a2f0-29030e259a3d", "text": "1984, a rocket landing on mars, cinematic "} +{"id": "4004821", "video_name": "8e0f31ab-06e7-5da5-9163-1ca7ccd3e0b6", "text": "clouds forming in the form of words namely Thanks "} +{"id": "4004004", "video_name": "f1ca9d26-f701-5789-91c2-0e2f014648ad", "text": "lightning strike in woods at night, wide shot, creepy, film look, 1988 "} +{"id": "3006462", "video_name": "c9de50df-3812-53e6-9f07-cef5f6f857ec", "text": "Ground broken, the earth yawns open to make way for foundations; excavators and machinery stand poised on the cusp of creation. "} +{"id": "4003021", "video_name": "8ef0f828-0ef3-5280-bfb6-29b705e4e6b6", "text": "a music 3minute music video of a a song called dear EX. In which the guy starts by writing a letter to the EX as he remembers all the good moments the had experienced to together since day one till he gets over her and decides to move on. "} +{"id": "6003846", "video_name": "6032222e-7104-50cb-9707-4cd919347e3e", "text": "A pterosaur flies over the sea against the sunset background in the foreground palm trees in the shade "} +{"id": "1004014", "video_name": "4a5c7e0a-e08e-5925-8502-a6bb96b5aa3f", "text": "jungle in the night. Ultra detailed, 4k "} +{"id": "7004931", "video_name": "f5c1b317-86de-5210-8ee9-de9f839d92e5", "text": "a software engineer coding on his fully maxed up pc setup "} +{"id": "1006615", "video_name": "79432544-215e-5dd8-971a-135b27f580d0", "text": "animate style. A bunny becomes irascent. Steam comes out of ears. "} +{"id": "2006387", "video_name": "06d2fabe-1603-5ec7-9345-ecf2a7322e5d", "text": "very big ancient army of red beast "} +{"id": "3003923", "video_name": "f269362e-8242-5858-a419-9426060d74bf", "text": "unicorn and mouse walking together. zoom out unicorn "} +{"id": "8001056", "video_name": "a0cc4fad-dcd6-503d-bcaf-454496161a64", "text": "Black Swan coming down from space, majestic Trail of gold trailing. "} +{"id": "3003055", "video_name": "ba1e0c13-f751-5b57-8ff4-3827567ecb0f", "text": "E is for elephants, big and so strong "} +{"id": "8003523", "video_name": "4bf7719e-ebb1-581f-8c84-6904937ab6a9", "text": "when you at the when you "} +{"id": "2007842", "video_name": "51c8078a-7065-5c0b-9e76-aa4a3e3103c1", "text": "generate 10 seconds of colors movement on this picture "} +{"id": "0005895", "video_name": "22e4f9db-0782-5d2b-b73e-d14c1d7c5b96", "text": "a mouse running through the forest underbrush. Blue and green. Realistic. "} +{"id": "0004386", "video_name": "081739c6-75b8-588c-a767-23d06eef06d7", "text": "a man riding amotor bike on fire "} +{"id": "5001857", "video_name": "1f143809-33bf-5488-8a9f-9ccb0c1ce63d", "text": "a video that two couples drinking coffee in coffee shop in a resort in mountain "} +{"id": "6002410", "video_name": "435683ef-0df0-5577-90ae-324b449e8950", "text": "red droplet falling into splash of human veine full realistic, colors, perfect movie scene, cinematic, hyper realistic, ultra HD, energy, masterpiece "} +{"id": "3006472", "video_name": "8823e52b-f2e6-544d-96b5-e423b3362670", "text": "The video concludes with the pilot stepping out of the spacecraft onto the space station, greeted by a bustling interstellar hub. The music swells with a sense of triumph and wonder as the pilot embarks on new adventures beyond the stars. 4k "} +{"id": "8001826", "video_name": "feb8aa30-1d68-508f-8e2f-14a898a0c63e", "text": "Anonymous hacking partner, Parody, stands beside him, focused and intense. "} +{"id": "8003084", "video_name": "19318fa3-80e2-55d8-bc7a-476eb7800da8", "text": "lion wiyh a dock walking together "} +{"id": "7004179", "video_name": "655d0f9c-0d0b-5217-bfc5-acaf694a88f5", "text": "a cute teenage girl reading in the morning in the cafe, she is wearing a scarf, warm colors, romantic atmosphere "} +{"id": "5001735", "video_name": "c4ee1da3-1652-58a8-87a7-1a05cb66a93e", "text": "The father and his two adult sons stop at the monument commemorating the victims of the massacre and read the inscriptions that reveal the magnitude of the tragedy. As they reflect on the impact of these events on society, a mysterious man approaches them and shares his personal experience as a student involved in the 1968 student movement. "} +{"id": "2006165", "video_name": "37892ad9-c1f8-50a9-8443-c28a19e10744", "text": "Creatures with legs attached to Baumkuchen run at high speed through empty buildings and mountains, and their number gradually increases. "} +{"id": "2005202", "video_name": "7ad58229-0e31-597c-b081-e5301bf14da0", "text": "A picturesque scene of the kingdom of Lumaria, with a grand castle in the background, rolling hills, and a bright, colorful sky. Leo stands with his family, embracing them, while Ollie the owl watches from a nearby tree. "} +{"id": "0006636", "video_name": "2ffd6f0e-9552-5c82-bc38-5ed8b913d61c", "text": "Catholic monk who is also a rosicrucian, teaching a nun about alchemy in the 17th century. A male and a female. "} +{"id": "2004043", "video_name": "2dd71766-2d5b-5a27-8da7-e9cb7ff126c3", "text": "interesting background with busy people for 40 seconds of time "} +{"id": "4003171", "video_name": "67c9fcba-c5fd-572e-a47e-799b4f589c63", "text": "Demon Car zooms past other regular cars, leaving trails of dark smoke behind "} +{"id": "2007521", "video_name": "c0e6fae6-d883-588f-8795-5f75d63323d3", "text": "a beautiful woman sitting in a rustic italian restaurant looking at her dish of spaghetti and meatballs "} +{"id": "0006438", "video_name": "2c572db0-a3c5-570c-afd5-510fcc7bcb1b", "text": "cinematic film of a blonde fairytale princess riding on a unicorn, waving her magic wand, mountains in the background "} +{"id": "6003035", "video_name": "8692c19e-d1e7-5b4b-8844-a9108aa240a1", "text": "a commercial of hot steaming soup, close up shot, 4k "} +{"id": "6002910", "video_name": "51a8d11e-0eee-5cc2-a576-35016e504715", "text": "cartoon animation 4k lion bird bear rabbet and elephant "} +{"id": "7004102", "video_name": "aa591e1a-835b-5272-8ebb-0f0d6c560d48", "text": "cinematic shot ofA lone warrior, Setu, stands at the edge of a cliff, overlooking a vast army of invaders. "} +{"id": "1003142", "video_name": "39ee8bd9-fa5a-59d0-b6cf-dceb78bda2e3", "text": "girl with long white hair in japanese school uniform dancing "} +{"id": "3005943", "video_name": "da16ba39-3b07-593f-ab68-aabebf656502", "text": "A boy surrounded by candles, looking scared. 18 year old "} +{"id": "2007362", "video_name": "f19dc0f5-dc45-515a-8feb-d8060ae511e2", "text": "A truck with ENELCI written on it is driving along the autobahn "} +{"id": "0004988", "video_name": "12cd9a0a-9736-55a6-a948-b19fb3b2bc14", "text": "Conclude with Cinderella and the prince living happily ever after. "} +{"id": "4002772", "video_name": "37e2a02d-e42a-5f68-9c63-ebcf77c0e049", "text": "eyes blinking, head slowly turning, background moving busy "} +{"id": "3006192", "video_name": "264ff7d2-a230-549b-8e0a-96e3ac0c24de", "text": "a soft serve ice cream, with hot dry chocolate on top "} +{"id": "0004741", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "Create image of peaceful nature, chirping birds and serene environment, create the image in 4k and HD "} +{"id": "0005864", "video_name": "227aaeb9-8d6a-52cc-8555-9bd07743bbb6", "text": "a man coming out of his room "} +{"id": "6002920", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "Schematic of fault movement during an earthquake. This video is in 4k quality, like a movie lens with light. "} +{"id": "2004660", "video_name": "63d23fb9-6dc7-56bd-8f83-821d3b4056ae", "text": "first person camera view of a descent down a dark cave "} +{"id": "6003606", "video_name": "f0ed13e0-0a80-502b-8c64-2519242723f8", "text": "crowded auditorium full of people Message: comply (Font: MODERN) "} +{"id": "5001462", "video_name": "7426e85d-136a-5339-856d-bb4efc11cdcb", "text": "A boy playing guitar motions 0.9 flight in air on stage "} +{"id": "4004367", "video_name": "a3e95fa5-f151-5c10-a379-fed63aa3bbe9", "text": "motion Open with an aerial shot of a bustling market town in a desert landscape. Zoom in to gs 20 "} +{"id": "0003581", "video_name": "3fe2fe8d-8d96-5628-b1e5-8baebc1dd7ea", "text": "a fish take filled with neon fishes "} +{"id": "2005034", "video_name": "c89fc52e-be41-575d-816d-d00e3be5e0c4", "text": "walking up to a haunted house, cinematic "} +{"id": "1004623", "video_name": "55f9b65f-8e13-5d03-9dba-d86097466cb1", "text": "two asian men in suits, shaking hands, say goodby in front of entrance of office building, "} +{"id": "7003800", "video_name": "1ce4218f-8c6a-54d6-abe1-b9bc785fa23a", "text": "Show a little boy, boy, happily munching on chips animated "} +{"id": "1003237", "video_name": "3b9e77e8-6376-5215-a126-cba5595f4eb1", "text": "beautiful sunset on the sea with beautiful colorful rocks on the edge "} +{"id": "6002796", "video_name": "507278bc-94af-5323-a518-12bc13b81f42", "text": "n a rush to meet a tight deadline, Upin and Ipin find themselves stuck in the bathroom with no time to spare. Describe the frantic scene as they desperately try to finish their business and get back to work or school in a hurry. "} +{"id": "4003718", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "logo with letters: covers shrift: comic sans "} +{"id": "0006692", "video_name": "312af3cd-48d9-55fb-8e60-3ee61a539cfa", "text": "a bhutanese yogi meditating inside the traditional bhutanese house "} +{"id": "2003560", "video_name": "05dfc260-1ddd-5614-9736-280dd93dce06", "text": "Disney cartoon style, camera angle wide, side view of a silver airplane flying through the sky up and down, clouds in the background moving very quickly "} +{"id": "7004639", "video_name": "33ed829c-2554-5965-9de2-b933bc37a2a1", "text": "realistic image cockroaches come out of the ground in the background dark forest sparse light camera is approaching "} +{"id": "7003915", "video_name": "39fb395a-0f9a-5bdf-96c2-c9b7e0e4be58", "text": ": a turtle carries a snail on its shell and a rabbit passes by "} +{"id": "1003200", "video_name": "3ae654de-b7ed-59c5-802e-ccac7d9cbd08", "text": "a car driving through a forest at night. aerial shot. headlights on "} +{"id": "2007771", "video_name": "e7da9049-2fa7-5782-98dc-9d77c3453160", "text": "soda bottle product shot, studio shot, crisp, highly detailed, full HD 4K, depth of field, close up zoom "} +{"id": "1003229", "video_name": "3b7fd35f-9f30-5293-904e-7f0e7cba5fc7", "text": "generate a video of a young boy with sparkling eyes and an eager expression, standing among his peers. He should be raising his hand enthusiastically, showcasing his curiosity. "} +{"id": "3005093", "video_name": "146308e1-4624-589d-82dc-1abbaf6a0eb3", "text": "ironman fighting with Thanos infront of gate way of india mumbai ,in india "} +{"id": "1003772", "video_name": "457d6015-193c-5d87-98fd-732fbafb013a", "text": "cinematic, wide angle lens, camera rotate clockwise, poppy field in a thunderstorm, sharpness noise Message: 1 Attachment "} +{"id": "3005482", "video_name": "b93615ab-24b5-5875-8bb3-61e204e07d81", "text": "sexy russian girl with sexy dress show her middle finger of hand with smile "} +{"id": "2003347", "video_name": "2e1e0c48-72a9-5cc4-be97-a2c836a10442", "text": "Griffin landing on ground, attacking on army of wolves "} +{"id": "2004588", "video_name": "cf26f191-a739-5854-9c72-0123b25ec68b", "text": "50s noir black and white deep shadows, inside an empty subway station. Trains sit waiting. There are shadows moving from inside the glass. Thin layer of mist and fog. Eerie. "} +{"id": "3005154", "video_name": "b19dfb13-a3be-5a45-b284-a15fded65885", "text": "An animated sequence unveiling a toolkit of diverse content creation tools powered by the efficiency of AI chatbots "} +{"id": "1006319", "video_name": "739b52dd-1c7b-5f7c-a611-260ad3445653", "text": "penguin sliding down avalance, national geographic footage "} +{"id": "6003398", "video_name": "2fbe0441-6665-532c-a385-02299bb64afa", "text": "the first moment of connection between Lily and baby Emma. "} +{"id": "7002661", "video_name": "b7b61ee8-939f-5de5-8022-793b8389e639", "text": "An adventurer is surrounded by ghouls in a dark forest "} +{"id": "2006227", "video_name": "dcf45dca-46dd-59ef-b21f-b16fbf44189a", "text": "pixar The Bottle and Pen suddenly come to life, eyes wide with astonishment "} +{"id": "0003499", "video_name": "3e9d04c4-b512-5f4b-b8b7-6098335e8942", "text": "Quick animation of the diaper transforming into a superhero cape on the baby "} +{"id": "2006922", "video_name": "479b8d2a-e340-5dac-a6fd-49b07235d763", "text": "cat riding bicycle from far to near "} +{"id": "2005723", "video_name": "d36478be-23c1-5e5f-ba9b-7ef605a03e23", "text": "A paper resembling a score descending from the sky displays ancient history to tell us a Christian story "} +{"id": "2004426", "video_name": "240cd912-181d-50b1-a96e-4d51cf220131", "text": "mahatma gandhiji hit a six in cricket in artificial intelligence "} +{"id": "0005720", "video_name": "202541db-ae47-591c-ad6d-b5ef58fe99ff", "text": "There was an old and large picture hanging there, in which an old man was smiling, but his eyes were somewhat strange. "} +{"id": "1004681", "video_name": "56f4fdf8-9558-5fb3-b6d0-0a1581f4768c", "text": "a man with a pot on his head is playing mahjong "} +{"id": "4004651", "video_name": "c47f81ae-e97b-5d07-8b5e-de10e890ff89", "text": "king and sagas discussion Message: 1 Attachment "} +{"id": "3003606", "video_name": "c71bd480-764e-5eda-8b7e-1e079251e451", "text": "image of girl in 18 years old standing in red colour tshirt with black oversized pant and red shoes , with brown curly long hair, green screen background , cartoon character "} +{"id": "1006558", "video_name": "782524f4-4916-5251-bfc8-3fa12ae3b927", "text": "Servants in Montego Bay, Jamaica getting pampered in a spa "} +{"id": "0005467", "video_name": "1b460844-c3a8-5ed2-a220-6ae468c8f09c", "text": "Astronaut sitting in front of the computer and the codes reflected on his helmet. in the dark "} +{"id": "3006956", "video_name": "51f137d4-52e3-579d-b537-10c4bf0c6c8f", "text": "Tsunami in Indian Ocean near Sumatra, Indonesia with extraordinary and terrifying waves of heights up to 30 meters and a person running from them. "} +{"id": "6003504", "video_name": "03846fe7-6ae7-5078-8bf2-839aaa0d52d7", "text": "a building in Santa Fe New Mexico 1920s that read BLC loans "} +{"id": "1005559", "video_name": "6655c436-472f-56d5-a345-9fc5f4665b9f", "text": "make video of this image, car moving fast away. "} +{"id": "0005308", "video_name": "18432d0a-45e9-540f-9f15-eaf7eaa84aa3", "text": "a man wearing black suit walking at the streets of Jaipur Rajasthan High resolution ulta HD "} +{"id": "1004047", "video_name": "4b123bc0-9067-5100-92ba-a8434151f21c", "text": "the road rises vertically and turns into a film strip. that wraps itself in a spiral "} +{"id": "7004708", "video_name": "b59655e5-c833-571b-83c7-be34efebf5a7", "text": "flapping ears elephants, rippling lake, glistening shining waters, shining sun rays "} +{"id": "7002705", "video_name": "60d8573a-b395-5794-8fa0-7d47b34b47ca", "text": "Red Cumulonimbus Swirling Maelstrom, Crayon, Traditional Media "} +{"id": "2005267", "video_name": "968c6b64-b996-529b-af4f-1b9f30eda08e", "text": "many many butterflies in a forest flying, lights of sun setting down "} +{"id": "1006880", "video_name": "7dca4816-cf34-5de3-9ad8-6fde52a4a2ae", "text": "anime girl, red hair hiperrealistic cgi animation "} +{"id": "6002364", "video_name": "82d98b19-08a2-5c51-bd6d-7808f3e290f6", "text": "a giant crocodile swims in the river, realistic "} +{"id": "7003974", "video_name": "a8dfebc3-c7cc-5e7a-8109-1ccdc484bc70", "text": "crow is thirsty and looking a pot with low water and thinking and taking stone near putting in the pot drinking the water and flying away from the top of the urban city "} +{"id": "6004963", "video_name": "44b6c055-1f58-5320-bf36-484b75bd6b9e", "text": "female hand drawing a horse with pencil "} +{"id": "8003133", "video_name": "8bd3d3c2-9662-52a0-abc4-a068034f342c", "text": "help me to create a video of Taylor Swift speaking "} +{"id": "0005549", "video_name": "1ca65663-6fa4-59b1-9593-b7dd43baf8c4", "text": "Cinematic, dolly in on iPhone laying in the forest, 3d animation, 16:9 "} +{"id": "2005147", "video_name": "3b40e8ca-723a-50bc-97a5-58fd3e1c85dc", "text": "a green hill, Kit Williams style, landscape, sky made from blue dripping wax, a hare looks up "} +{"id": "7004530", "video_name": "09506a5e-7c70-538d-b0ca-a6179250f6de", "text": "Rainforests majestic trees and epiphytic plants "} +{"id": "2006477", "video_name": "c74b4e21-868f-5789-81ce-9e8f17a59437", "text": "Dark clouds gathering, trees swaying in the strong wind, animals seeking shelter. "} +{"id": "4002018", "video_name": "b338145b-c531-5e9c-95e5-4391e7dfb12c", "text": "create a video of a mouse cursor scrolling through facebook sending friend invites "} +{"id": "0006761", "video_name": "32975281-bd72-5626-b738-becc7e4fa315", "text": "Lake in sunset surrounded by trees "} +{"id": "3004466", "video_name": "df82a0a6-7ab1-51de-80b5-df9c1328aa74", "text": "Logo design for a business that provides services for candle production "} +{"id": "1006589", "video_name": "78b417d7-1ab7-582d-8c81-b0ee79db290b", "text": "Toyota Trueno AE86 drifting on a mountain track at night "} +{"id": "1005635", "video_name": "67994a61-6f86-5f35-8cc5-3c5506fbd0fa", "text": "future generation choppers flying in the sky "} +{"id": "3005919", "video_name": "a1b56abe-233a-53e6-a5ba-95dc708021cd", "text": "Street fashion girl model talking to a mobile phone outside a convenience store at night. Grainy, retro effect. "} +{"id": "4003459", "video_name": "642427fc-870f-5900-9515-e41fb71871d1", "text": "In the courtroom, the judge is knocking the hammer for the lawsuit decision, realistic, cinematic motion "} +{"id": "1006770", "video_name": "7bf41412-d301-5fb3-9c90-f7d24d926b13", "text": "Paint a picture of a deer whose eyes reflect terror amid the snow. "} +{"id": "1004197", "video_name": "4d99d71e-3e5a-50dc-b911-232cea4cb68d", "text": "shield flipping on its x axis 3 times "} +{"id": "6002182", "video_name": "65634493-8677-540e-8674-4cc0b17ae656", "text": "Cars moving at an intersection, with traffic lights, vehicles going back and forth, and buildings "} +{"id": "8002641", "video_name": "536348c9-9653-5f55-9a29-2ed74cd37a7d", "text": "a realistic pink elephant flies in the sky "} +{"id": "2007672", "video_name": "b94e0358-4981-570b-96fa-5ea6fe65ade5", "text": "bright energy, water, cinematic, 8K, UHD, Realistic "} +{"id": "2007005", "video_name": "4191d6f1-5e81-5da7-ba2e-82011abc3da5", "text": "fluorescent bacteria movng in a dark medium "} +{"id": "1005008", "video_name": "5ca4328d-c729-52f8-8a16-ac8cef5100da", "text": "the man is looking at a big tree in the desert, in the style of charlie bowater, afrofuturism, silhouette figures, traditional african art, 8k resolution, elena paraskeva, crimson and bronze "} +{"id": "8001948", "video_name": "b4f4a349-cbdf-5e58-a731-29dc586a3181", "text": "superman picked up his son and took him flying,ar9:16 "} +{"id": "2003106", "video_name": "c74dae17-6d68-55f0-a6d1-3d36c2b8ca7c", "text": "A blue sky butterfly flies through a flower garden "} +{"id": "3004540", "video_name": "f662fc1b-51de-5cfb-802c-a842f61a079c", "text": "When the index fingers of two hands extending from the right and left of the screen approach each other, a sphere is formed in the middle. "} +{"id": "1003616", "video_name": "42a02c1b-106c-588d-96a4-7fae91de0b50", "text": "It rained heavily, and raindrops could be seen. Bamboo swayed in the rain "} +{"id": "6003505", "video_name": "dd546545-3fac-5e65-bec2-d59930b136f5", "text": "This parable teaches us about the various ways people receive the teachings of Jesus and the Word of God. "} +{"id": "6002982", "video_name": "f6f2b6d8-5886-598d-966a-6b0f6c2d9e44", "text": "Pink universe, pink planet, roller coaster through it "} +{"id": "4004584", "video_name": "f96fa2fb-9263-597f-92e6-d1a16d1f46ca", "text": "a movie trailer for a 1960s italian western "} +{"id": "2006888", "video_name": "1d86b72b-e3e6-5de2-a0c3-556d0d77e7e8", "text": "A forrest of trees Message: Zac (Font: MODERN) "} +{"id": "2003455", "video_name": "4535b559-5803-5b3a-817b-aace270cd771", "text": "women in saare with her husband looking each other, front view of camera,zoom out, vertical ratio of video "} +{"id": "4004123", "video_name": "be85c151-01d8-5a99-9438-ee4e7f7c15a4", "text": "a girl with blue hair, swimming in the universe, surrounded with pink roses sea "} +{"id": "4004496", "video_name": "9512853d-9c03-5ecd-9abc-7a40b7093372", "text": "make the sea wave and the birds moving "} +{"id": "5001884", "video_name": "b73e8107-dbd9-5df3-9e84-510ded6c06fc", "text": "smoke weed joint at new home "} +{"id": "1003469", "video_name": "403ba40c-3504-528b-b255-56629ed1fb0c", "text": "Genshin Impact character Zhong Li sits drinking tea, Japanese comic style "} +{"id": "7002279", "video_name": "d14d71cd-29dd-52dd-bbd3-44c6de84557e", "text": ": pop art style, lady sew by hand with needle, 1950, cartoon style "} +{"id": "6003981", "video_name": "5970dd44-b455-5664-a041-cd1720191687", "text": "a kid riding a carousel in the amusement park "} +{"id": "4003330", "video_name": "b9350645-59c3-5498-8a63-a8f9e3c02994", "text": "Creating a yggdrasil with branches growing but from afar it looks like a brain in constant learning, with a deep root just like the brain connects with the nervous system. "} +{"id": "2005944", "video_name": "bac2f467-a1ae-5ffc-8c59-ac0214a70139", "text": "a helicopter taking off a field "} +{"id": "6004588", "video_name": "0c78bfa0-e11d-5b7a-8461-e16a22029370", "text": "holly wood actor Dwayne Johnson, fighting with a lion, "} +{"id": "6002775", "video_name": "41cff8e7-3fc3-5cdf-b5e9-ac2dc1fc1aea", "text": "Pixar style animation of a bear riding a motorcycle with a guitar on his back "} +{"id": "3004823", "video_name": "2a6bb5f8-3e81-58be-9107-0565e5d04dfd", "text": "it says GAVIRIA on the back wall, in front of it sits pablo escobar "} +{"id": "3004753", "video_name": "016958d4-72ab-5cc6-ba99-c690271b3e09", "text": "the world after the collapse of local trade , intergalactic market city, USSR design by Anato Finnstark, by Carlo Dolci, masterpiece, sharp, dynamic, exquisite craftsmanship, extremely detailed, lovely, exquisite, astonishing, divine, amazing, gorgeous, award winning, glamorous, fabulous, dazzling, tantalizing, breathtaking, very cute, adorable, fascinating, acrylic painting, trending on pixiv fanbox, palette knife and brush strokes, style of makoto shinkai jamie wyeth james gilleard edward hopper greg rutkowski studio ghibli genshin impact "} +{"id": "0003808", "video_name": "43dc983f-60cd-58a9-b46d-165ab2773148", "text": "ai robot version of LeBron James "} +{"id": "2003005", "video_name": "d0a74069-5df6-5cd0-8442-3ee862fc886d", "text": "a gigantic monster knocking down multiple skyscrapers, surreal fantasy, City destructioncore "} +{"id": "2007647", "video_name": "e39d3c03-7ee8-518e-b098-031f0cb4bf80", "text": "red octopus at Shibuya crossing, trippy, aerial view, slowly zoom in, motion 1 "} +{"id": "8002892", "video_name": "5a47420e-14dd-520b-9215-9556f0157ec8", "text": "tlw2 image for the server metin2 "} +{"id": "8003864", "video_name": "f9b98ae8-0201-5a29-91f2-849c99db1ed1", "text": "big forest, big trees and big fairies are moving around "} +{"id": "8003392", "video_name": "9aaa64f9-a6ab-51cc-b3e0-32bf7cc7088f", "text": "The young boy is crying in the living room "} +{"id": "7004247", "video_name": "3637274a-f747-5507-b9ba-b8e0e8352a9b", "text": "a superhero presenting an ESL course "} +{"id": "1006468", "video_name": "76630cf8-8d80-540e-95fc-c64f1cee4fdc", "text": "Countless luminous jellyfish swam towards an ancient ship on the sea in the dark deep sea. "} +{"id": "2007141", "video_name": "69c9cec7-b49f-5b96-aead-585e2394a83a", "text": "an ice plain in Antarctica breaking "} +{"id": "3005135", "video_name": "b751c8f2-814d-595f-b5c8-e39125d42463", "text": "cinematic, 8K, tropical island by the crystal clear ocean with a wave gently breaking on the shore. Stunning sunset "} +{"id": "2003137", "video_name": "1977c189-e165-584c-b486-20fda8608e46", "text": "Cookware sizzles on the stove, as soup bubbles and rolls in a boiling frenzy, viewed from an overhead shot. "} +{"id": "4004286", "video_name": "86ff7d8a-2140-5b18-8512-56e4fcc98066", "text": "Kinematics of the painting of 1 white rabbit bellier to 1 rabbit of striking color, 8k, hyperrealistic, speed x10 "} +{"id": "5001013", "video_name": "1eecddd6-3577-526d-8154-d59d57c6f817", "text": "tom cruise sipping tea before a big explosion "} +{"id": "6002212", "video_name": "cf7696c9-8fef-5db3-943e-e35ddd50cfd2", "text": "The dachshund runs to its owner "} +{"id": "8002443", "video_name": "5c7820d2-6ce7-5983-9ed2-a08fde24b34a", "text": "camera zooming into an eye of man then zoom further into blood vessels in the eye then further zooming into blood vessals turns into roads of a city from drone point of view "} +{"id": "6002610", "video_name": "98f58534-7f17-5403-a340-dc829dd4763d", "text": "Pop Art Dog Portrait, Watercolor Dog Portrait from Photo, Pop Art Bull Dog Painting, Bull Dog Gifts for Owner, Pop Art Pet Portrait Painting "} +{"id": "0003803", "video_name": "43c48843-4bb1-5d1e-b5dc-820c490532b6", "text": "beer on a fantasy inn. 3d turn around camera focal, anime style, studio ghibli miyazaki 16:9 "} +{"id": "0005498", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "galaxy, stars, realistic, zoom out Message: sub y like (Font: MODERN) "} +{"id": "0003273", "video_name": "3a9f264a-fdbc-58d2-86c0-8e588fb23633", "text": "a girl painting vampires on a canvas in the middle of a park on a windy day "} +{"id": "0004896", "video_name": "111588d9-4643-562f-bfd2-a363d039d0e7", "text": "two man smoking in a surrealism style landscape "} +{"id": "3004981", "video_name": "c8b74106-96fa-5076-8624-79636a245b77", "text": "a Goddess apears in the clouds "} +{"id": "3003124", "video_name": "f3fc4da8-ccac-54f4-bfe6-9885cdd8a0d5", "text": "Anime characters fighting intensely in Fire background , camera positioned to the right , slow motion , hyper realistic "} +{"id": "4003508", "video_name": "cc41becd-09c4-5177-aa26-a627ee86e14f", "text": "Their declaration of love was drowned by the rain, but their connection was undeniable. "} +{"id": "0003331", "video_name": "3bc5c278-a021-5ac5-9858-36766591e644", "text": "moving lips, talking and moving of the landscape "} +{"id": "0006964", "video_name": "35eea4da-ad18-5617-be65-5ce0065f4804", "text": "birth of jesus christ in bethlehem with mother mary and joseph as father beside there is sheperds and kings bowing to jesus and there are stars twinkling and there are angels blowing trumpet besides there is sheeps and horses and goats "} +{"id": "5001270", "video_name": "bec5e231-ff25-5bc9-b9c1-3cedc6020679", "text": "Take advantage of things to understand yourself, and see your heart when you encounter problems. "} +{"id": "6003431", "video_name": "91f16fb8-89be-5a88-9541-a26176288586", "text": "a movie trailer with a in demon walking "} +{"id": "1004384", "video_name": "510086c1-114e-5246-88aa-4673274b699c", "text": "demo video of document entering a computer and coming out as searchable data "} +{"id": "1004013", "video_name": "4a5c304d-368b-5c0c-81cb-9f2700a45939", "text": "chameleon using it chromatophores cells to communicate their emotions, regulate body temperature, and camouflage themselves from predators "} +{"id": "3003356", "video_name": "8d5246a8-602c-5973-9b85-eebf4f3ee597", "text": "Let\u2019s welcome 2024 with cats and dogs "} +{"id": "6002961", "video_name": "09be78cb-4ffc-50d4-9d4f-dd7df0640c2d", "text": "university building, noon light Message: INGRESO 2024 (Font: MODERN) "} +{"id": "2004378", "video_name": "045e8a32-d18a-5ddc-bae1-c3fd8af372f8", "text": "Arthur morgan(Red dead redemption 2) in real life "} +{"id": "3003981", "video_name": "12340c42-bdf9-5238-accc-d42348c30766", "text": "filed of beautiful flowers in the wind "} +{"id": "4004094", "video_name": "16ab3f68-a842-5d54-926b-4043117ea8ec", "text": "adventure had forged unbreakable bonds and secured their place in pirate legend,.story,pixel studio,4k,animation,treasure.motion "} +{"id": "0003855", "video_name": "44aecf48-516d-5cce-b414-d701ed394b3b", "text": "volcano erupting on island with lots of pyroclastic smoke and lightning. "} +{"id": "8003686", "video_name": "f80957fc-594c-5abe-a809-89ed4cdaff2b", "text": "Long enough for me to learn to use an umbrella "} +{"id": "3006335", "video_name": "fce1067e-88a0-5db7-b463-2c3d828b451c", "text": "teenager arguing with his friends, cinematic 4k "} +{"id": "3005364", "video_name": "8a488ab5-a1c4-572d-838b-2ebe3550757f", "text": "Chinese girl jogging beside the bridge in the morning "} +{"id": "0006988", "video_name": "3653a132-1971-5c1a-ad9e-2e8a57661c3a", "text": "eldritch creature in the basement, full body, black and white, old style, grainy, low frames perscond, cctv footage "} +{"id": "6004323", "video_name": "b0fb8998-8dcb-5de4-8b62-4f98fc4c66b3", "text": "Punjabi warrior, standing atop a hill overlooking a vast battlefield "} +{"id": "1004074", "video_name": "4b8a11ef-bae0-5863-8e01-221d9253d59d", "text": "man walking in night, creepy smile "} +{"id": "7002441", "video_name": "8c6912cc-878b-5e0e-9667-d73e1aa7b20d", "text": "military officers sprinting frantically through a crowd of civilians, during a sunny day. 8k, photo realistic, AR 2:3 "} +{"id": "3006299", "video_name": "187ac513-2a9f-5b40-80e2-78c3c95c66c5", "text": "a realistic 1970s arthouse film of mythical creatures in nature surrealism "} +{"id": "4002528", "video_name": "15e1d64f-0868-5e6f-be32-aefa4bfbe886", "text": "anime spaceship start to fly from ocean to space "} +{"id": "1005560", "video_name": "66563765-6413-55af-b030-3785df099ade", "text": "a beautiful lady with one hand touch her hair, realistic video "} +{"id": "4002467", "video_name": "da71ff01-44d4-586e-a872-73570a8ae817", "text": "An interesting Lofi girl, with a vintage record player and a collection of cassettes, creating a nostalgic atmosphere in her room as she immerses herself in the soothing melodies. "} +{"id": "8003678", "video_name": "f5d2bc1c-4b9a-5758-ad8a-42cdbca6ad05", "text": "Moses on mount sinai, sees israel worshipping golden calf, cinematic, 300 style, 10 secs, 16:9 "} +{"id": "2006244", "video_name": "20cd3e0b-2737-5c0d-86ab-c3852d733a99", "text": "over 500 tb of courses, books and money falling from the sky. Make it an image not a video. "} +{"id": "4003117", "video_name": "1c69556c-9512-5c4b-8d85-593e1001a9b3", "text": "an aeroplane in the sky flying, Suddenly fired up "} +{"id": "2004999", "video_name": "e46296f7-24ff-5f32-bc1c-10e88ec9b3bd", "text": "bleach universe a powerful shinigami with a water sword and bankai, his sword is full of water inside, he have gray hair anime "} +{"id": "3004169", "video_name": "ace44ac2-da98-59ee-8ac2-dbe6b57d4d15", "text": "Orange islands in opend space, lot of colored space clouds "} +{"id": "0005802", "video_name": "21797d28-cd8e-571f-8430-6a2fa3dca411", "text": "make a 2 min 50 second music video about getting money from selling dope and driving fast cars with explosions in the background "} +{"id": "4003115", "video_name": "777f4897-f9dc-5796-ab2c-b329884e73ac", "text": "portrait of a man moving his eyebrows "} +{"id": "7004910", "video_name": "b50325aa-5ef9-5706-95ea-828d371de31c", "text": "a hyper realistic image of captain hook morphing into a hyper realistic image of peter pan "} +{"id": "0005782", "video_name": "2125f61c-3214-5fa8-8027-5bca247a3fa5", "text": "colossal giant running towards a burning castle "} +{"id": "7002291", "video_name": "bd194358-a7b1-5f10-ad67-b88d11665efb", "text": "blonde hair princess big pretty eyes pink dress and shoes sparkly pixar style ultra realism disney style walkiong in forest "} +{"id": "3004598", "video_name": "fce11914-5706-53c8-b46a-5909091d24c2", "text": "audience waving light sticks under the idol stage,otaku,anime style,camera moving "} +{"id": "4002938", "video_name": "ea8fe0c6-c6b4-5779-a9ed-2f2d6af72b4e", "text": "an hourglass , 1980s French experimental film "} +{"id": "7004091", "video_name": "d81ca43c-659c-56ae-a736-6768f01d27dc", "text": "Yoda thrashes on the drum kit live on stage with crazy light show "} +{"id": "1003260", "video_name": "3c05066b-4a17-529b-82c7-d461321bf860", "text": "a futuristic house in a desert, a big drone passing by "} +{"id": "8002302", "video_name": "8bb6ce90-559f-5d72-903f-679ef0b7de10", "text": "bear panda female heat one ice cream "} +{"id": "1005402", "video_name": "6341fced-66f0-5637-8496-97a1a5695c0c", "text": "flash of red light revealing a black city skyline realistic 16:9 "} +{"id": "2006127", "video_name": "7b829777-0e15-5e38-8442-2a0a02270c8a", "text": "Raju taught him happily and Shyam learned very carefully. "} +{"id": "6003752", "video_name": "c6541d43-128d-5111-b227-d40d518aa474", "text": "a human heart preserved inside a glass cube box cinematic 4k ultra highly detailed "} +{"id": "7004238", "video_name": "40b73919-8e1f-5b68-b954-3d4c2c8f630e", "text": "This story teaches us that hard work, dedication, and generosity can turn our dreams into reality. "} +{"id": "0006447", "video_name": "2cb3b5b4-8801-5b08-bc4e-b0d57be2b508", "text": "a chinese kid in the middle of highway alone. high buildings around him "} +{"id": "2005413", "video_name": "189d3d25-15bc-551f-9194-06d21a57ff4a", "text": "An eerie moonlit shot of the Harroway House, with twisted, gnarled trees casting long, menacing shadows "} +{"id": "4003094", "video_name": "7eca0582-b13a-513f-9dab-5d4704a6391f", "text": "animate ufos hovering over new york city "} +{"id": "2003694", "video_name": "c9b9a178-8985-50ba-855f-9d80bc0e93df", "text": "people come out of the portal, a sandy wind blows in the distance "} +{"id": "8001018", "video_name": "0a590195-ab84-5d61-b452-d48741c6cff2", "text": "men reaching for a book in a furnishing store in greyscale "} +{"id": "1003962", "video_name": "49256276-7735-5f97-a8eb-ff11c864f87a", "text": "knight warriors celebrating victory, angle up moving to low "} +{"id": "4004166", "video_name": "39e4281a-83cc-5190-a554-cf3c661bfb61", "text": "a lady smiles and looks pretty "} +{"id": "2006218", "video_name": "4a7ebeb1-8b2d-542e-93bf-12c53840a371", "text": "Sneakers and socks store , bright colors , volume, youth style, socks, logo space, Nike socks, 4k quality, for Instagram, photos, socks with sneakers. "} +{"id": "4003167", "video_name": "c8ad7ffa-1805-58f5-8f6b-f71811109a5d", "text": "AI algorithms analyzing user viewing history "} +{"id": "7004234", "video_name": "e31f44df-aaa1-5b67-ad3d-a3f65e4b44e3", "text": "Show animated kangaroo with a joey peeking out of its pouch, 2d animation "} +{"id": "0004503", "video_name": "0a1f27af-4737-5994-be48-9113c22ef970", "text": "Black cat standing looking into the lense, background pink smoke, realistic, cinematic, zoom "} +{"id": "2006005", "video_name": "2abef45d-a653-5019-b58a-61e3caa0639c", "text": "america perpetuating constant war globally in order to keep its arms manufacturers in business "} +{"id": "0006816", "video_name": "339709e1-b234-5a93-914c-bdddd7bf81db", "text": "a dragon with a laser sword "} +{"id": "1004600", "video_name": "55acd7a3-ceb9-54bb-81b1-743bea889797", "text": "small pretty fish in small fish bowl "} +{"id": "6003787", "video_name": "d6264632-5b10-5bb9-a3e0-3f6f6d502721", "text": "Felix, the little fox, sharing his food with a rabbit, showcasing his immense kindness and generosity. "} +{"id": "7003410", "video_name": "4511fd02-d477-5c4e-a0c9-a784d6dbac10", "text": "An archaeological team stands inside the excavated ruins. "} +{"id": "8002360", "video_name": "9414ff8c-c141-5f84-87c9-ffda7d891ca8", "text": "A Wudang disciple is playing Texas poker "} +{"id": "3006520", "video_name": "4c3d3d86-050f-55bb-b889-3570381c9474", "text": "Representative image of Laos Message: ENCORE (Font: MODERN) "} +{"id": "3006943", "video_name": "5f19dcb3-3819-59b7-af61-f536ea2d7d58", "text": "Ironman and superman together fishing on the river "} +{"id": "1006431", "video_name": "75a750d0-f4c9-5385-93bd-b22a32f44c2b", "text": "kenyan girl running a marathon, through the ngong hills, in the iten mountains, at dawn, others follow "} +{"id": "2004499", "video_name": "d1bcef1e-82d8-5a4d-864e-a55a144e1f09", "text": "Harry potter Clebrity Moetal Kombat image: "} +{"id": "2006162", "video_name": "53cb78df-2697-5cb5-816e-9a3f9cacfbb8", "text": "Monkey D. Luffy play basketball with MIcheal jordan "} +{"id": "7004244", "video_name": "87039341-4a7d-502e-bbad-58ef08329401", "text": "A man and his clothes are torntorn "} +{"id": "8003452", "video_name": "57825b32-53a9-5cda-8958-c4b4d8b73459", "text": "A viking with braid diving into water then changing into a fish "} +{"id": "4004034", "video_name": "3a187cd4-c26d-5a37-b73d-6ae10f248e38", "text": "two persons greet each other and fight for one minutes "} +{"id": "4003463", "video_name": "4da5ab7e-1ab0-508f-9979-01648617010a", "text": "Cool man wearing a lemon themed luxury suit walking on an office "} +{"id": "2003833", "video_name": "c472a346-a66c-5090-8d8b-75756284cbbf", "text": "Two humanoid robots with a Chinese martial arts temperament each hold a sword in a duel "} +{"id": "2007746", "video_name": "5ae0b88b-0836-5f60-adf8-9ec987c6c092", "text": "A colorful, animated graph showing a steep decline, symbolizing the stock market crash. The graph is surrounded by icons representing various factors that contributed to the crash: a factory (representing overproduction), a dollar sign (representing debt), and a wheat stalk (representing a struggling agricultural sector). "} +{"id": "3005041", "video_name": "a0dd5679-bef3-52dd-9dc5-a1907e73a825", "text": "A cute girl dancing at a trance festival. sketched drawing style. medium shot. Black and white "} +{"id": "0005714", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "The baba orange with water droplets is jumping with joy "} +{"id": "6004591", "video_name": "0ff29c95-7ba5-50da-823e-7caa1819472e", "text": "short video of murder of an old man "} +{"id": "6002713", "video_name": "11541338-35d7-5cef-918b-ee7f1297a433", "text": "Titanic ship sinking people screaming in year 1912 "} +{"id": "8002979", "video_name": "ff39e9ec-a1cc-5034-b157-d82f7d08a206", "text": "a gothic film about a ship hunting massive whales "} +{"id": "6002004", "video_name": "9a93030e-8514-51f7-bbc3-568086aea2ee", "text": "Egypt warriors more realistic 4K resolution "} +{"id": "4002011", "video_name": "e8c339be-7fbc-59ac-abc4-f85a9ec61398", "text": "a dog seeing the sun under the tree "} +{"id": "1005301", "video_name": "61664b33-a34a-5305-a51a-552a78b814c5", "text": "Montage of the world gradually transforming into a greener, healthier planet. "} +{"id": "7002574", "video_name": "b5b93b75-b36b-5c82-b83a-e8d277aba565", "text": "A girl smiling while eating a burger "} +{"id": "0004177", "video_name": "0499f50b-f0ba-534d-be19-b0ada44ff715", "text": "from far aways a dense forest "} +{"id": "1004585", "video_name": "5544b6a5-302f-5fa2-a6a8-f2be990e8504", "text": "Stags playing rock music in a band, smartly dressed "} +{"id": "3006104", "video_name": "9f63031b-6404-57a9-9aad-4334b95cbb78", "text": "Imagine a serene beach scene during sunset. The setting sun paints the sky in hues of orange and pink, casting long shadows on the beach. The sea reflects the colors of the sky, creating a mesmerizing spectacle. People are seen enjoying this beautiful end to the day, some are walking along the shore, others are sitting and watching the sunset. "} +{"id": "5001441", "video_name": "7e3d5857-69d7-5e40-af4a-36edab06c895", "text": "a person scrolling through tik tok uninterested "} +{"id": "8003888", "video_name": "d5e4e117-a4b7-5739-aac6-03c1f1733525", "text": "a beautiful minimal art with a boy and a girl sitting on a bench on a sunset. "} +{"id": "1004589", "video_name": "555d194b-52e8-514d-9562-796e50dacbc9", "text": "a blue macaw feeding on coconuts "} +{"id": "4002965", "video_name": "5d29a354-3225-5315-aebb-b817cd8c62db", "text": "Muscular chicken lifting weights in the gym, fast movements, hyper realistic image. "} +{"id": "2007207", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "martyrdom of saint Sebastian Alejandro Jodorowsky 70s Art Film "} +{"id": "6002296", "video_name": "0372fd0e-b50b-5184-bc16-2affd17b2e94", "text": "a lion walks to the city lucerne "} +{"id": "3006341", "video_name": "587ce333-844f-5c69-a50c-2f0628ad1e7c", "text": "There is another love 10 boys stand together, seven of them, eight nerds, nine bad guys, only one is the most lovely "} +{"id": "3003445", "video_name": "38285a0e-4d25-5a4f-9155-e8267ee0d1ca", "text": "People running in the street during a war, Camera view from above, pixar "} +{"id": "8001153", "video_name": "74ce0899-d254-53cd-9eba-926af4ac8835", "text": "high drone shot of freeway through a rural area full of 15 deserted cars. A few hungry zombies move past the cars, looking for bodies. Cinematic. Overcast day. Dreary. In style of Ridley Scott. "} +{"id": "4002303", "video_name": "2a726460-1c8a-5900-87b5-aaa19ba92f87", "text": "einstein standing in the middle of las vegas. pixar 3d. cinematic "} +{"id": "1006355", "video_name": "745b73dd-2080-544f-8ad8-8af986087ca1", "text": "The tortoise won the race while the hare napped. Most importantly he did it with humility and without arrogance. "} +{"id": "3004641", "video_name": "82ed6b3b-0107-5ca5-99d5-dc3f5c952d5b", "text": "The baby pandas ran through the meadow, their laughter echoing in the night air. The moonlight illuminated their playful antics, and the fireflies glowed in the darkness. The grass swayed in the gentle breeze, and the stars shone brightly above. "} +{"id": "0006449", "video_name": "2cbb39e3-b831-551d-bf11-bd5861ff89a1", "text": "The lights of the vehicles fall on the trees and reflect immediately "} +{"id": "4004384", "video_name": "f3624b6a-5c4e-5fc8-a92e-cf49f1e08dd2", "text": "Blind dreams in the style of a movie by Andrei Tarkovsky "} +{"id": "0004581", "video_name": "0b78ac2f-038d-5bce-ad74-6db4773ba7d5", "text": "People from diverse backgrounds joining an online discussion "} +{"id": "1005735", "video_name": "697f68cf-d75e-5cd8-800b-ad312c8263dc", "text": "bacteria pop up and cover full video "} +{"id": "8001346", "video_name": "6089d733-0ebc-5514-99ac-597a84fcf001", "text": "lots of people march on a road with Israeli flags "} +{"id": "0003435", "video_name": "3d833095-eae9-5d49-97aa-489ec4972a3f", "text": "close caption, medieval battle, black and white, hyper realistic, night "} +{"id": "2007562", "video_name": "b591bf5d-1a5f-563a-a389-9519452a3080", "text": "In an abandoned house, a young man wanders around his yard, photographing a panorama "} +{"id": "2006855", "video_name": "45b8c86a-6597-5b97-b252-50b4cf1049ea", "text": "joe biden fighting a giant robot "} +{"id": "4002175", "video_name": "b5813dde-1014-56cc-82c8-a0aca4c15160", "text": "a boy and a dog saw a broken winged bird in a forest "} +{"id": "5001119", "video_name": "ef2c82a2-f519-5a91-bd4d-eac23f31dbc3", "text": "a Nintendo power glover, cinematic, electric "} +{"id": "0004343", "video_name": "0773a0e3-0858-5321-a44e-9ccfc5843970", "text": "Big tall teacher sit next to beautiful Asian schoolgirl in school Uniform, hyperrealistic, high resolution "} +{"id": "1003859", "video_name": "47200092-c9e8-5e67-a0d0-a587de9da266", "text": "make the images move neatly and the video duration is 10 seconds Message: 1 Attachment "} +{"id": "2004367", "video_name": "4bb7a067-0e24-529a-ac1a-9257eba531a9", "text": "Side angle The girl sitting alone on the top of a high mountain, her long hair flying, her face contemplative, the color of the sunset, the breeze, the sun about to set, anime cenimation, High Quality, 16:9 aspect ratio "} +{"id": "5001297", "video_name": "f4840393-eab9-533d-8e11-a6bd04fa2bc8", "text": "Cub lions frolicking and playing, learning skills from the adults. Disney Pixal Movie Style, 16:9 "} +{"id": "8001514", "video_name": "605eebf0-28d9-5b5d-bb08-3a029f2b89fd", "text": "Two friends are walking in the forest disney style "} +{"id": "3006581", "video_name": "84e34950-b51f-53a8-ab6c-6d6134580e83", "text": "fullbody,marshmello face punk style hoverboard, big x branded hoodie, render, Leonardo da Vinci, cgsociety, artstation trending, no background "} +{"id": "8002788", "video_name": "4ec4dc66-2c8f-5934-b8b1-cd288c1f64a4", "text": "30 second video of second hand marketplace where u can hand in your old shoes and get a discount to buy a new pair of shoes "} +{"id": "8002958", "video_name": "43fc8602-a5e0-5da0-865c-965048a4a00a", "text": "Morning, a small, cramped apartment in New York City, 1880s. Sunlight streams through the window onto a sleeping woman "} +{"id": "0004750", "video_name": "0ea46ba0-3996-5c63-ae23-72d53bc8597b", "text": "sorayama styled dragon with an intergalactic background "} +{"id": "8001724", "video_name": "f29fc8d3-a271-503a-bce7-1f2533623099", "text": "An elderly Chinese man with eyes closed was lying on the roadside. "} +{"id": "3003667", "video_name": "965d45d6-0708-5b06-9520-b9c91799b165", "text": "A boy wearing black hoodie walking to his school "} +{"id": "4004806", "video_name": "e252f604-880a-522e-90c3-ac59b26d5fd6", "text": "a penguin rolling down a snowy hill in the style of Pixar animation, 3D, sunny day "} +{"id": "6002011", "video_name": "d9aa47e4-610d-55a9-8eaf-5b60c8020166", "text": "beautiful wedding reception with luxurious pale pink floral, beautiful linen "} +{"id": "0003471", "video_name": "3e34a792-8802-506e-bd6b-0e7c6ffecf1b", "text": "3D animation\uff0cA girl playing ball in the open space\uff0c4k\uff0cvivid color "} +{"id": "8001429", "video_name": "7b45ad16-6c03-5159-8a56-c75305946ea9", "text": "man in a dark room with VR on the head "} +{"id": "6002081", "video_name": "a980f7f4-185d-5410-8eab-79846ee6d953", "text": "high resolution image of aladdin flying on cloud "} +{"id": "1006119", "video_name": "70355a93-8bc0-5f72-a10c-ebf5ace6b50a", "text": "Joseline hernandez on a strip pole "} +{"id": "0005659", "video_name": "1ed47e8e-639c-5d8b-8887-42f33a01986f", "text": "drone footage of film noir city at night, intense light and shadow, neon, moonlight"} +{"id": "6002526", "video_name": "7f86ecbb-adde-58cb-a8a6-bbde95c49c7e", "text": "Pixar style character of a woman having breakfast with her son, daughter and husband having breakfast "} +{"id": "2006346", "video_name": "263c7f72-015f-54c5-9cf4-20e59a84fa80", "text": "france map covered by German flag(red,yellow,black) "} +{"id": "6004230", "video_name": "51af2f1d-e737-56e6-8ead-a99f23c2d7b5", "text": "make the figure rise up from underground "} +{"id": "4002670", "video_name": "e04948d0-e8a7-5956-b68f-4fb18090b58a", "text": "Dog and cat hybrid playing with humans 10:3 "} +{"id": "2005840", "video_name": "db153f8b-629c-5e51-8f06-9cfd95959704", "text": "a war chaos transforming to a victory Israel flag "} +{"id": "3003738", "video_name": "914104a9-51a3-503d-b485-0949db5726b3", "text": "create a video of never ending universe that can run in loop and feels like never ending "} +{"id": "8002329", "video_name": "056e5a83-f454-5a06-b07c-5352c275058e", "text": "Mr. Bean laying in a bed filled with roses like the scene from American Beauty "} +{"id": "1006448", "video_name": "7609552d-5cab-53f4-9e67-513efc07d1ce", "text": "a Space made by Olives Fruit "} +{"id": "7003002", "video_name": "029d0f66-e01e-548b-9478-97a2aa28da69", "text": ": Dark temple, centipede head, crowned king, pychedlic smoke, ominous red lights, Jungle, The dark sky is slightly broken and has 5 moons "} +{"id": "3005171", "video_name": "e9590f45-912f-5c59-b6d9-1df0d99d4f5f", "text": "a man in black with horns in a rocky environment, nightmarish atmosphere, red, 16.9 "} +{"id": "7003006", "video_name": "713647a0-1fc6-5e5c-a39e-ae49790ffb37", "text": "dark forest with stars by tarkovsky, black and white old film "} +{"id": "2005389", "video_name": "c49b1e25-d86a-512e-9eb3-049270a42df9", "text": "tourists in moroccan, dancing reggada, old traditional warrior dance from the Eastern Rif Mountains, shoulder shaking, foot stomping "} +{"id": "8001744", "video_name": "deb2ffa8-2791-5576-8beb-f6a503ba976b", "text": "stage with a large illuminated cross in the background "} +{"id": "1004266", "video_name": "4ef4ffbc-f6cf-58d9-9ddf-f316f0c38f94", "text": "Produce a video that showcases the vibrant dance of colors in a bustling cityscape during a heavy rain shower "} +{"id": "5001708", "video_name": "a9a42e35-12f0-54c1-b5d9-92b556bdb569", "text": "The rabbit, exhausted from running, hides behind a big stone. "} +{"id": "4002500", "video_name": "847edd2d-d7db-5f38-ba12-0e40364f3bfa", "text": "Armored soldiers escape with the scientist in flying vehicles, leaving behind the burning facility. "} +{"id": "1003109", "video_name": "3938a144-e895-5cde-afd8-deafbb6488d7", "text": "super mario brothers jumping with princess video length 5 seconds "} +{"id": "7004452", "video_name": "713ce300-a8b8-5e2e-b628-644e8060f545", "text": "Adam Richmond eating a giant burger while sweating profusely "} +{"id": "1005875", "video_name": "6c14fbcf-ae05-538a-b8e1-1a65a9d8503d", "text": "men galloping on full speed on a green pasture "} +{"id": "8002167", "video_name": "e2b1e42a-c6d9-5d56-8c21-1eaf0aaee23a", "text": "Astronauts Traveling the Universe, 8k, True "} +{"id": "8001355", "video_name": "f5cfd46f-9e42-59b7-a2d5-ad55decdd340", "text": "colour changing after one by, cinematic, Blur ,camera moving fast "} +{"id": "3006970", "video_name": "acb4d791-47ce-5012-a3fd-2e2a3570c26e", "text": "a very rich blue hippo with lots of money "} +{"id": "0005845", "video_name": "221f90c1-ea13-5176-b541-59686ba3204f", "text": "Sun turning into hearth, deformed, desaturate, weak colors, fast movement, zoom in "} +{"id": "4002785", "video_name": "491f25dc-b955-54d9-90b3-bf80fd875c2f", "text": "siluett of Demonic dance in dark woods, Message: 1 Attachment "} +{"id": "2006231", "video_name": "908f8fc8-ebcc-5521-aa78-ce7f9740f0a3", "text": "a comic book style image, volcano is erupting, people are running away form volcano, face to viewer, the village is just at the foot of volcano,houses and trees are destroyed by lava, modern time "} +{"id": "6003613", "video_name": "53ea5a48-38fa-5906-9866-0eb389cc83c8", "text": "talking old handsome powerful man straight to microphone like in podcast siting in big chair "} +{"id": "4002456", "video_name": "93dbed4b-0d89-5f40-85ae-e233fe08dea3", "text": "A plump woman wearing cheongsam black pantyhose sitting barefoot on the road bench smiling, daytime, sun, blue sky, afternoon, real, realistic "} +{"id": "2006180", "video_name": "71afdd54-478b-553c-ac09-6a209564db3c", "text": "mountains in Switzerland, Wes Anderson style "} +{"id": "0006846", "video_name": "342179f9-2b6d-5308-b7f0-fc2abed61ac8", "text": "The Beatles band playing music on stage flashing lights, minimalist style "} +{"id": "8002972", "video_name": "d2de9bb7-94f6-5d2f-bd07-5d539023228a", "text": "The camera focuses on the dual monitors in front of the programmer. The left screen shows a code editor, while the right screen displays a website preview. Busy hands, constant keyboard sounds. "} +{"id": "4004795", "video_name": "ee8000bd-3e3c-5058-8b2a-cdf9ebebb334", "text": "Footage of different colors of oil paint "} +{"id": "1005838", "video_name": "6b50e5f6-f8e3-50fe-a8a3-70e2a59ebda7", "text": "Their wedding was a beautiful celebration of their love, surrounded by family and friends. Cartoon "} +{"id": "2003303", "video_name": "d7383e9b-0f05-5611-97ca-f2b40520b76c", "text": "A whimsical scene capturing a feline confidently strolling forward on two legs, directly facing the viewer. The cat is adorned in traditional Chinese garments, including a silk robe with intricate golden embroidery and a matching hat. The background is a minimalist gradient of soft pastel colors, allowing the cat to be the main focus. "} +{"id": "8002786", "video_name": "d34d68a2-e35d-51d2-bc03-a63ca4826f88", "text": "Robots vs Human Football Match, very Dynamic and realistic volumetric video with intricate details, football field in background "} +{"id": "1004464", "video_name": "52b22ea3-72eb-5167-bb19-03f69a7a25d6", "text": "Alex Jones, speaking at a Walmart store, "} +{"id": "7003853", "video_name": "7b26bd21-c6d0-5f69-b310-f1baa10661f0", "text": "women and elefant suffealism salvadore dali style "} +{"id": "8003261", "video_name": "d7f95460-c05f-53d7-b123-6c57c0ecccc9", "text": "80s commercial, film grain, VHS distortion, for a restaurant called Richards Burger Barn. A realistic cheeseburger mascot dances around. "} +{"id": "3003344", "video_name": "15f01072-d682-5239-9754-fac47fef1f00", "text": "beautiful jungle night view,disney style,\n 4k "} +{"id": "7002961", "video_name": "65f7025a-aac6-56b6-a368-ea03efeeb8af", "text": "money vault from mid range camera shot "} +{"id": "3006531", "video_name": "a75e7cc4-d36d-5807-8031-456e6453c78a", "text": "A penguin shaped space station geting destructed by asteroids in space "} +{"id": "7002020", "video_name": "2ec3d5ff-1324-5e7a-90eb-f097da7a6256", "text": "In the moonlit desert, an Arab man with a sack of wheat on his shoulder, walking amidst hills, the wind gracefully moving his robe, depicting a serene scene at night, 4K. "} +{"id": "6004830", "video_name": "9402b4cf-9983-5b23-a676-10776585cc9a", "text": "Create a video for me holding a real chicken leg "} +{"id": "8001587", "video_name": "48304c2c-e4f8-500d-afd8-b3add63cfd76", "text": "The worlds second funniest video game. High score attack 4K Wario is there "} +{"id": "1005753", "video_name": "69d087b2-f67c-53ba-977b-70b3ee2b84c0", "text": "several futuristic D6 dices rolling on a table "} +{"id": "4004952", "video_name": "aa63a6e4-d61c-512b-ada9-9ea7f16d3afe", "text": "kids waving hands with background green color video "} +{"id": "2007273", "video_name": "323af08f-62ec-55f4-8234-01a06017c319", "text": "Horse and buggy going down a street in 1850 Boston "} +{"id": "0006872", "video_name": "348b1ce1-4dd5-57e6-b6a1-48f7c52da1d1", "text": "Japanese village with dark gray roof and LED lights around Message: Jorge Alejandro (Font: MODERN) "} +{"id": "3005243", "video_name": "07a8bf47-04b2-5f8f-b3d8-e08dbed4a49f", "text": "Chinese Ancient city, beautiful, 8k, perfect, award winning, national geographic "} +{"id": "7003621", "video_name": "f7631cc5-e9d7-5a18-a9b0-c5b48255c99f", "text": "Describe the exhilarating escape from the collapsing temple and the relief of emerging back into the jungle. "} +{"id": "1006562", "video_name": "7840f8e3-40cc-58a6-a57f-3ef7427ff048", "text": "Create an image that portrays algorithms as puppeteers, subtly manipulating online actions. "} +{"id": "0004717", "video_name": "0de69362-e629-5f2f-a968-1ef1af8eee35", "text": "In a tender moment, a male and a female share a connection by gently touching their foreheads together. As they do, a sense of warmth and understanding passes between them, creating an intimate and heartfelt scene. Capture the emotions and connection in this touching moment "} +{"id": "0003255", "video_name": "3a15c5db-3074-5dd4-85cf-eb690842790e", "text": "cruise ship in the middle of the sea "} +{"id": "8003048", "video_name": "5e35b202-746c-5226-b6f4-852a282540d9", "text": "a hamburger ad where the bun, hamburger patty, lettuce and tomato all fall together to make a finished burger "} +{"id": "0003693", "video_name": "41d39358-ee1e-5456-8287-2be6ec6d7910", "text": "a room filled with various kinds of bottle, with a girl and boy, and in the front each one is a computer. "} +{"id": "6003614", "video_name": "ec62053e-c9ad-5bf6-950a-57457fca5bae", "text": "Anamorphic format of a man in alaska wearing all black with black hood jacket , his back is to the camera, the camera zooms slowly to him, "} +{"id": "0006751", "video_name": "325c8ffa-bd0b-58d4-a7c9-115c9157bbdc", "text": "Greta Thunberg standing proud infront of meatfactory "} +{"id": "2006896", "video_name": "90be65e8-980c-5f17-a5c1-90fb2d4febad", "text": "psychedelic berliner girl smiling, behind her is a fractal portal shimmering amidst a dark forest, particle rendering, unreal engine "} +{"id": "8001579", "video_name": "3685df18-6b51-586b-b696-edff41f81bb3", "text": "white van driving down a highway passing by trees in the background "} +{"id": "0003906", "video_name": "458b4078-b2ad-55bb-a7b7-05f96abb30cd", "text": "a moon in night sky , cherry blossom ,detailed pixel art "} +{"id": "8001563", "video_name": "a4ba3535-3a35-5f84-a428-7fa7db0727e5", "text": "cartoon cat jumping towards screen, 45 fps, fun, whimsical, 8k "} +{"id": "5001991", "video_name": "dabd1140-a990-5ac7-a122-3f580fa96689", "text": "New York City, night time, moonlight Message: ERBYN (Font: MODERN) "} +{"id": "2004234", "video_name": "63afb380-7f63-58f8-a437-b5452c4e3f8d", "text": "a woman smoking a cigarette in front of a painting, a pop art painting by Enguerrand Quarton, behance contest winner, psychedelic art, psychedelic, behance hd, vivid colors, photo, 3d render, cinematic "} +{"id": "8003951", "video_name": "153cfc50-027b-555c-89e3-662085ea01f2", "text": "smiling pacman chasing a couple of frightened ghosts, vibrant, hyperrealistic, UHD, 64K "} +{"id": "8001778", "video_name": "331cbd44-94d3-5708-9236-2c0386246125", "text": "image of a young boy been scared "} +{"id": "1006967", "video_name": "7f79005a-d276-586d-9624-303cbef016b5", "text": "South Indian king cartoon image character "} +{"id": "2003062", "video_name": "b1101580-938b-5779-83d7-ff38009e106b", "text": "In a retro Chinese house a beautiful girl plays the piano and plays the moonlight song "} +{"id": "6004837", "video_name": "b7120a97-199e-5c9d-a04c-d568888539cd", "text": "3d gorilla shattering a glass screen with his arms "} +{"id": "1005044", "video_name": "5d3c5c24-8c22-5cc9-af40-5833e7349f0e", "text": "Thor shows his hammer. Highly tender, well detailed, 8K resolution "} +{"id": "7004402", "video_name": "49cba5a1-cc39-56f6-a5a0-c8693607a516", "text": "The students are in their lab "} +{"id": "5001314", "video_name": "fff37e38-b174-53cf-b553-ac1df2381c7d", "text": "Detailed scene of the three ships of Christopher Columbus in the middle of the stormy ocean, the three skulls sailing in heavy waves, ships of Christopher Columbus detailed in 4k high resolution fluid movements Spanish ship from the year 1493 "} +{"id": "8002092", "video_name": "d09d941e-bda9-5a9c-ad65-c6f70d3a1747", "text": "an aviation promo for virtual aviation saudia airlines with suspence "} +{"id": "1004140", "video_name": "4cbc14c7-a091-52f0-9582-f200f0b8740c", "text": "cinematic, a wooden hourglass in a garden, nature, beautiful "} +{"id": "2003975", "video_name": "d2f2d53f-9bcc-5a54-8dc7-c4ccfbd02a44", "text": "Dragons are fighting, breathing fire and ice. "} +{"id": "3004291", "video_name": "c7ef900e-f6a7-536c-a125-95c7eedf29be", "text": "Cute little girl in comic style among friends, she is smiling and blowing out the candles on her birthday cake, looking very happy and wonderful "} +{"id": "0003732", "video_name": "4284d0c6-893e-5677-8096-1ab7ae97ee4c", "text": "two white cats sitting on a pink helicopter. hanging around the fantastic town. "} +{"id": "3003437", "video_name": "85f09382-0ddc-5e97-8042-2c67c61c7048", "text": "Princess Kadashman in the forest3d cartoon "} +{"id": "2004361", "video_name": "82426968-a79d-5666-9605-6ce77236373a", "text": "In a futuristic space, a woman stands in the middle of the frame,There are some NFT works floating in the air on both sides, and the camera continues to slowly push forward "} +{"id": "2007082", "video_name": "984723a5-0a3c-5c0f-a4e5-8a9ccfad31e2", "text": "vintage threadle sewing machine sewing in modern room "} +{"id": "2003164", "video_name": "8dfc49e2-b8b3-538c-a5e7-fba756cb58d5", "text": "Every night, in the heart of the forest, the animals gathered for a mesmerizing jungle orchestra "} +{"id": "7004118", "video_name": "75967a29-0c81-5d05-a166-957312cbe4d8", "text": "The roar increased to a thunder as the stern moved up the face of the wave, and for a moment I thought we might ride over it. But then a tremendous explosion shook the deck "} +{"id": "1003614", "video_name": "4298761b-b084-5804-995a-4d49914743cb", "text": "a delicious looking dripping chocolate bar commercial Message: POOP (Font: MODERN) "} +{"id": "0004987", "video_name": "12ccf310-44b0-5c71-b146-002792affe7f", "text": "3D animation of a bee on a beautiful meadow "} +{"id": "2007188", "video_name": "1b224e7c-bd50-5869-bca4-b5debe796a32", "text": "Tetris made of gold material, irregularly falling dynamically "} +{"id": "2005638", "video_name": "8eb72f21-0eed-5dd0-953e-b7519c988a64", "text": "cyberpunk robot meditating, fluid motion, rotating, floating, cinema4d, 3D render, dramatic, cinematic, intense, tron lighting, creepy alley, spinning, rotating, fast motion, grid room vibrant "} +{"id": "3004142", "video_name": "b2db5b93-e5e6-50d0-9613-4900e79fc619", "text": "Topic Market text logo in black and white gothic style with weapons and lightning in the background simulating illegal trafficking "} +{"id": "1005295", "video_name": "6148559d-b177-5892-902c-fa90fee91d29", "text": "They would race through the tall grass "} +{"id": "1005500", "video_name": "6527d47a-24b8-57c4-a6b3-76f32f74cf69", "text": "fisherman casting his net, movement on water, fast, wind, movement on trees, high resolution. "} +{"id": "3003719", "video_name": "9c8c15b5-5fc1-59a7-b4c7-c09b1dff3d2e", "text": "Design a bedroom animation that transitions from sunset to night, capturing the changing colors and creating a soothing atmosphere perfect for relaxation and romance. "} +{"id": "8001621", "video_name": "af92c522-6603-52a6-8e6b-03f2ee7ba816", "text": "One day an Indian young man went to bathe in the river. Many others people were bathing in the river. small small boats were moving around the river, birds were flying in the sky, the sun was shining beautifully, the surroundings of the river were very beautiful. "} +{"id": "1003914", "video_name": "48435b53-cc1d-5ead-8c92-5bf1ba86c8f0", "text": "Girl looking into the sunset standing in a beautiful field, tall grass swaying on the field. Background is blurred, cinematic style "} +{"id": "7004860", "video_name": "6474edf0-cd1a-5214-937b-f33e00694688", "text": "A female model in the studio, with long hair, red background and a smile. "} +{"id": "8002916", "video_name": "dde61848-c815-5360-a6dd-a003398829f8", "text": "This garden was no ordinary garden; it was a magical garden where flowers sang, trees whispered secrets, and butterflies carried messages from one end to the other. At the heart of the garden stood a wise old owl named Oliver, who was the guardian of all the magical creatures that called this garden home. "} +{"id": "0004818", "video_name": "0fa1f4f9-9955-5311-af64-91381c3f97ef", "text": "image , pharaoh Akhenaten, standing on his throne with his daughter at his side "} +{"id": "2005291", "video_name": "05ccf1d3-5d7a-54e5-be51-dccf989fc7ae", "text": "Thousands of buildings collapsed, causing thousands of deaths and leaving the city in chaos. It was a moment of solidarity and reconstruction. "} +{"id": "2007115", "video_name": "6aedbb26-3b8e-5e12-ada2-f1124010e44e", "text": "a child looking into the future facing towards his mountain home pastel colors "} +{"id": "5001978", "video_name": "53d24038-6cd2-57a0-a920-e7ecc2ce02d9", "text": "wind turbines on hill behind building "} +{"id": "1004293", "video_name": "4f6e3adb-6aff-5a5c-b260-f98bdc406259", "text": "lamborghini ankonian racing on racing track "} +{"id": "2007579", "video_name": "3bec2f5c-5ff8-596f-96b2-cba04622523e", "text": "BMW E66 drives on the road, then it is overtaken by a motorcycle and gets into an accident and lights up, after which the planet explodes "} +{"id": "6004339", "video_name": "60ff140e-b318-5991-94af-6d16b02640ce", "text": "Two Powerful Lions with rainbow tinted Manes and fur do battle for dominance in the wasteland "} +{"id": "2003091", "video_name": "4ef1f10d-e3bc-55e6-a920-594215556f23", "text": "8k, a cat eating dinner with a fork, cinematic "} +{"id": "8003734", "video_name": "427b572d-b3a1-5790-8116-3df258754c8e", "text": "italian cottage near the sea with a beautiful garden. sunny and peaceful "} +{"id": "7002876", "video_name": "e5cc37b6-aaa7-54d0-81ec-dd4990ea5317", "text": "The camera moves from left to right, the water valve opens, and the water flows "} +{"id": "1005668", "video_name": "6821fed5-d94b-5922-a977-d98ca61ca8f4", "text": "Generate an image of the grand entrance to Pirate\u2019s Cove Adventure Park, with towering wooden gates adorned with pirate flags, a skeleton greeting visitors, and a cobblestone path leading into the park, surrounded by tropical palm trees. Detailed images, high resolution, Ultra HD, 4K "} +{"id": "5001007", "video_name": "55233e8c-6283-5e11-bc35-b79d8777c7a0", "text": "skeleton in a red evenung gown apoplying makeup in a mirror "} +{"id": "2007051", "video_name": "1a1be80f-8526-59b5-8ff0-b803ade20c48", "text": "medium shot, Aztec priest extracts the heart of a Spanish man and raises it as an offering to the gods "} +{"id": "3006777", "video_name": "9686e4fc-da5b-5889-ba0b-f733ab07760c", "text": "wind blowing a flowers in mountains house lanscape "} +{"id": "4004574", "video_name": "41fb15ef-c293-5e07-9f24-d074120a3e5a", "text": "realistic ants looking for food in a big city street, 4k, photography, cinematic lighting, perspective Message: moshy (Font: MODERN) "} +{"id": "1004556", "video_name": "548f72ca-8349-5712-bbdf-96b2715cc2c0", "text": "hologram of human meditating in an empty room "} +{"id": "1003331", "video_name": "3d4d0245-234a-5ba1-adae-59f9e386be04", "text": "a young man chilling in a train in Japan while listening to music by headphones and it\u2019s raining outside the train window "} +{"id": "0006901", "video_name": "350aa303-872c-59a3-bddc-b936ff458407", "text": "rock concert with jumping David Lee Roth singing on stage while jumping "} +{"id": "7003725", "video_name": "9792fd4c-98b5-5261-be75-cd06c9afc9bf", "text": "16:9 red martian soil dusty windy and deserted. With red alien volcano erupting. Ancient futuristic buildings. "} +{"id": "2005100", "video_name": "cbde8c80-f329-5443-a5ce-bad04fde5edf", "text": "thrift store interior with small alien hides in it "} +{"id": "2004729", "video_name": "d5448078-3916-58a0-a33d-68b2dc8c032f", "text": "Japanese living room with a creepy TV with just static and a bunch of channels changing on their own "} +{"id": "3005654", "video_name": "ed748cf5-3872-5502-b1d7-afcc067cb61c", "text": "A young explorer, dressed in a sleek, futuristic suit, comes across the tree. Their expression is one of awe and curiosity as they approach cautiously. "} +{"id": "6003425", "video_name": "86ea5ce6-dc8a-5620-947e-5fe9720c8131", "text": "a blace sedan parked outside the house at night on the street with tinted windows, rolling forward "} +{"id": "2004370", "video_name": "1a1f8b6e-b340-5229-816e-97ce6fec20f3", "text": "a cinematic japanese male scientist waking up in a gaming chair on a futuristic moon base "} +{"id": "1006370", "video_name": "74a33040-ac77-5dec-85dd-e4241a6dea8a", "text": "Pochaya is now completely devastated by his wife and son\u2019s death. Everything in that house reminds him of them. His sister \u201cPADMA\u201d takes him to her house. Pochaya\u2019s sister tells her concern about her first son \u201cMurali\u201d who is a drunkard. Pochaya asks her to get him married so that he will change his ways. They decide to get him married. "} +{"id": "0006754", "video_name": "326f2e4e-a393-5e99-89dc-6463ba2b9ccd", "text": "a meadow with a breeze. deer graze "} +{"id": "4003854", "video_name": "85717e80-74d7-53ff-ad01-0911626f1246", "text": "The Ghost , Call of Duty , come out of the darkness with the M416 "} +{"id": "5001980", "video_name": "3dfefbca-301a-5138-bed1-8f527f891d09", "text": "Napoleonic 19th century solider stanidng in a snow storm, masterpiece, shallow focus, dynamic, technicolor, archive photo, XIX century, vintage, highly detailed, 8k, professional, photo grain, original print, Wet plate collodion "} +{"id": "3004967", "video_name": "a6cb9ecd-5db5-5be6-87e9-14ae613b53c3", "text": "The children enter the Chromatic Forest, a place full of challenges and magical creatures. "} +{"id": "0005106", "video_name": "14e30a94-2ad7-5103-9069-1ec0f58fa268", "text": "Floating in mid air, office, surrounded by papers "} +{"id": "6003210", "video_name": "99fd0a30-39e5-5db4-b1cf-a545290fad3d", "text": "a medival age kingdom with warriors protecting it from outside and the kingdom is on the shore of river "} +{"id": "0005199", "video_name": "1685093f-bbfb-5a63-b0d2-c87802d42de0", "text": "The cars navigating a tight hairpin turn, tires squealing and dirt flying, as they jockey for position. "} +{"id": "1005053", "video_name": "5d6d07c6-b198-50c5-8bb5-6935be7cebea", "text": "A small robot holding a banana while walking up a steep hill, close up shot, cartoony "} +{"id": "2006121", "video_name": "149c93c1-47f3-5a56-97c8-222f8a4495e6", "text": "doomslayer versus sekiro , hell , fire , elemental of pain , cacodemon "} +{"id": "6003731", "video_name": "f7fb4493-f579-5999-a838-3b05f275e900", "text": "A racing car is flying in the Sahara desert in a cloudy day with camel aside. "} +{"id": "6002479", "video_name": "6e7409e7-6b28-5c4e-b69b-7c169e5dad2f", "text": "a 4k video of a music producer on his bedroom home studio vibing and listening some music, use cinematic colors and make it real "} +{"id": "2003521", "video_name": "3aa623d4-82cf-5120-8529-803457d4c373", "text": "The Titanic sank in the sea. motion2 gs18 fps24 landscape "} +{"id": "6004819", "video_name": "0a30ff65-5b8c-5d45-883a-d8593fa3e38a", "text": "a man in blue shirt entering their credentials and personal details. then man choosing to log in using their Aadhar card and Google account. "} +{"id": "4003999", "video_name": "c0a0263c-550f-54df-9e74-d24e37b8b76c", "text": "oil rig worker, hugged by a happy family, 4k resolution video "} +{"id": "7002757", "video_name": "318786bf-028d-51f1-9644-318cef9e04b7", "text": "man teaching class about lasering coins with a fiber laser "} +{"id": "7004865", "video_name": "cc403232-390e-5d72-9401-4e1ab873623d", "text": "use exactly the uploaded picture, make moves inside the image Message: 1 Attachment "} +{"id": "7002072", "video_name": "15eca7ca-4298-5cd6-8d6c-e9421783cd59", "text": "Opening onto a fantastic and mysterious world, with breathtaking views and magical creatures. In realistic style. With a duration of 3.5 seconds. "} +{"id": "4004015", "video_name": "579516ef-30f9-5e8e-ae0c-4abfefbbda9a", "text": "A person in the room to rest Message: 1 Attachment "} +{"id": "7003818", "video_name": "a721b58b-f9ab-561c-9c64-a17f754eb9ff", "text": "a woman with pink hair and pink sunglasses, a character portrait by Myra Landau, featured on cg society, rococo, behance hd, 1970s, rococo "} +{"id": "2005616", "video_name": "fafaae91-5303-5e46-b922-be61dceccc0d", "text": "Korean style Message: Lover Flower (Font: MODERN) "} +{"id": "4004737", "video_name": "eeb3ceef-f267-587e-95f3-32ca7dc10943", "text": "A cool yellow dog wears a black sunglasses ang a big gold ring "} +{"id": "6004076", "video_name": "d4deeaa7-0451-5388-aa3f-0eda8514900d", "text": "a man wearing a hood wears a medal around his neck while looking in the mirror in a dark room, cinematic "} +{"id": "0003651", "video_name": "41011f4c-d61f-56f8-ae59-028e513127c3", "text": "a beautiful cafe with big window in the urbran city, rainy day, emotional "} +{"id": "3004868", "video_name": "f330291d-7d41-553f-9149-ce80d7eab095", "text": "the Gulf Stream is a powerful warm ocean current that originates in the Gulf of Mexico, flows along the eastern coast of North America, and then moves northeastward into the Atlantic Ocean. It has a significant impact on the climate of the regions it passes through and plays a crucial role in regulating the temperature and weather patterns of the surrounding areas. "} +{"id": "6004884", "video_name": "dbb745c8-6b8a-569a-88fe-3e9b02731ea5", "text": "Inner voice of men with creative thought weaving around with colors outside black color on man and beautifull colorful weaves produced by the thoughts "} +{"id": "6002870", "video_name": "f4106d0d-b1ae-5dae-9562-a099405d250e", "text": "Cyberpunk city street, man wakes up, gets stronger, has muscles, shows muscles, growls "} +{"id": "8003489", "video_name": "9a8cc0d5-481c-5293-b434-4120194733c3", "text": "masterpiece,4d, fullHD, Pixar style, A Squirrel character, rising acorn, white background "} +{"id": "2007657", "video_name": "7dfe45d3-0228-5923-9663-6e9e55205ad3", "text": "Show mouthwatering burgers being cooked to perfection "} +{"id": "6003966", "video_name": "5d46734d-020a-5ee7-9286-8feda45a5008", "text": "french proffesor with 3 university kids "} +{"id": "0005929", "video_name": "235fab28-0bd3-558d-b547-f1e836a171f7", "text": "beautiful cleopatra walking towards camera , hands down , focus is on her face "} +{"id": "7003654", "video_name": "94b34747-f6a8-5054-9797-481dcda705ee", "text": "Biden cried bitterly during his speech "} +{"id": "0004780", "video_name": "0f10966c-fd6d-5c07-96e4-d42b49d6f492", "text": "a Filipino men walking that dressed barong "} +{"id": "0003070", "video_name": "3666b3f6-78b2-5b06-947b-58a0d041f7a8", "text": "Freshly baked French fries fly out of the frying pan in the blink of an eye "} +{"id": "7004510", "video_name": "95afddd8-65b9-5bdb-8aa4-75168967e529", "text": "richard heart squatting heavy weights in golds gym "} +{"id": "6004352", "video_name": "91d31c5e-5471-5683-b479-4abb65d1251c", "text": "human embryo in the womb, the child has formed arms and legs, he is in the birth bladder, timelapse 10 seconds. "} +{"id": "3003056", "video_name": "5a358e5a-da7f-51f7-8e1e-309123075b07", "text": "happy christian family smiling in the garden of eden "} +{"id": "7002152", "video_name": "2e42c0e1-c6a1-5eb6-9aba-9ffb492761a9", "text": "A realstic image of a beautiful Soanish girls singing in a live concert full house "} +{"id": "3006720", "video_name": "ab597e36-ed86-5a12-b759-28f824535037", "text": "the tailor was not in a good mood, "} +{"id": "2007634", "video_name": "508dada2-c3ff-5cc3-87c4-7e715319a457", "text": "fast moving car chase with 1990s feel eastern europe "} +{"id": "2003958", "video_name": "b6ee1b3f-59f2-5f5e-bd81-312094f14caf", "text": "A tea master preparing tea in a traditional tea ceremony scene "} +{"id": "8002178", "video_name": "2e268165-1f32-5d6d-9f4e-b21a03e6933e", "text": "person wearing safety jacket, goggles and gloves "} +{"id": "3005845", "video_name": "2e068d46-3639-5915-be02-8a39b34bd283", "text": "Animated page with weird animals from Voynich manuscript "} +{"id": "6002714", "video_name": "b08d0e65-cc3a-588e-86cd-1e25a2869bfc", "text": "Realistic video recorded of a cafe in Paris "} +{"id": "8001786", "video_name": "5fe0a1c7-31df-5f4c-a6ac-dfb82eb747f4", "text": "a man stand on the edge of a mountain with a view of a new world (ufo) "} +{"id": "1005542", "video_name": "65fc3a26-fa32-50be-83f2-087d22efedac", "text": "Pikachu commiting tax fraud, paperwork, energetic, cute, really cute, cozy, by steve hanks, by lisa yuskavage, by serov valentin, by tarkovsky, 8 k render, detailed, cute cartoon style "} +{"id": "2007784", "video_name": "d782c34f-2188-543a-a7bd-d0ab99e9cc0a", "text": "Give me an original logo for the carpet "} +{"id": "2007918", "video_name": "d97ceae9-3e25-5afd-8484-c183d933285d", "text": "In a remote village, beneath a shimmering midnight sky "} +{"id": "0003532", "video_name": "3f11b323-82e4-5245-8941-8ded0a3fd405", "text": "the abdication of the Danish Queen "} +{"id": "2003890", "video_name": "ba2d65a9-0015-58b3-9c51-8070e7c9b056", "text": "a 20 second repeating video of an anime style girl character studying her book at night, rain outside the window, cartoonish, looks like its in tokyo "} +{"id": "2004798", "video_name": "cc5b0be3-85a2-5e7c-a78e-e3d2b1247023", "text": "colored lights moving in a random fractal, black background "} +{"id": "4004409", "video_name": "d6711ac4-685f-55b2-8441-724df4210cbb", "text": "spaceman in white space suit jumping on flat grey moon landscape,highly realistic,cinematic,dynamic motions "} +{"id": "5001594", "video_name": "be53e342-6e55-5d39-8586-780d256231a2", "text": "Create a UHD video of an atomic bomb exploding with explosion effects "} +{"id": "2007102", "video_name": "55efd6b8-9ce1-5193-b389-99ab388ff012", "text": "a senior dog in a space suit without a helmet, floating around the international space station "} +{"id": "1004217", "video_name": "4dffec3d-f4b6-543b-af66-c852429ebdd2", "text": "angry looking teacher who is staring directly at the viewer. background classroom. "} +{"id": "0005579", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "Envision Lion surveying his kingdom from a high vantage point, his gaze steady and wise. "} +{"id": "4003829", "video_name": "52535fc4-f768-5202-843e-31515e02815f", "text": "starry skies turning into pages of an open book, revealing ancient prophecy, photorealistic style "} +{"id": "7003574", "video_name": "b4903201-4a94-543b-b21c-989cffa132e3", "text": "Jesus Christ smiling and handing a microphone to a person "} +{"id": "2003424", "video_name": "40eecb1c-f34a-5e28-a492-14bd17d38d14", "text": "introduce how topractise the jaw line "} +{"id": "1003452", "video_name": "3fec4a8a-da85-5f47-bf89-b614bdd0b675", "text": "starry night, stunning scenery, two beautiful cats talking outside of a cafe, Paris, in the style of Renoir, Monet, van Gogh "} +{"id": "0006422", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980s woman watching tv in her living room and sharing a cigar with a guy "} +{"id": "1005240", "video_name": "6060c135-ed60-5d28-a161-e5d7420edc8b", "text": "prompt:a car hanging on a weighting scale and indian currency on the other ladle of the scale "} +{"id": "0004424", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "Create aexplainer video about the benefits of using cloud computing for businesses. "} +{"id": "7003587", "video_name": "4c10ed00-1675-5185-a8ae-aba13dcf0035", "text": "kayak moving around in a circle "} +{"id": "3005576", "video_name": "b107f2ac-ef39-5a86-8d1b-6def5d8840b4", "text": "panning 180 degree shot of students flying through in space towards another dimension, vibrant colors, 4k "} +{"id": "7002980", "video_name": "9f7d81a5-442c-5709-a3f8-adf0bf891fca", "text": "japanese sushi chef cutting tuna fish. close up photography, cinematic "} +{"id": "7003607", "video_name": "1221b5c4-6928-5f19-b6b6-671f039fae1f", "text": "As they taste the fruits, a surge of energy courses through their veins, their senses heightened, their spirits lifted "} +{"id": "4002270", "video_name": "60dd64a4-f545-5646-b857-8e02478fde39", "text": "Suddenly crow found a piece of meat on a ground , "} +{"id": "1005992", "video_name": "6e26d93c-5355-568e-a604-aa2bf408b76e", "text": "a young teen girl walking a dog in a grass field "} +{"id": "2005091", "video_name": "5700cc77-a08c-51a3-94b3-1707c4c8338e", "text": "Happy Thanksgiving to my loving husband "} +{"id": "2003559", "video_name": "5f878e05-2bc2-5726-a670-175d790adef2", "text": "cricket dancing tap with india as background "} +{"id": "4004907", "video_name": "740c0510-63b3-50c2-9006-aee75b192f36", "text": "15 years old Jeremy Irvine in a prom party "} +{"id": "0005147", "video_name": "158f6487-bb3f-5a78-a3a9-0ab1c210923e", "text": "customer walking into a spa and but the worker behind the desk is not paying attention "} +{"id": "0003420", "video_name": "3d4f0657-5eae-5145-b2ed-e3f4a297f10b", "text": "an elephant with very long legs walking in a psychedelic world, Salvador Dali style "} +{"id": "8001553", "video_name": "67b0a42c-2dd1-5f46-9f50-ca392f55ce35", "text": "the whispers of a neon city "} +{"id": "2004612", "video_name": "a0e8c6b6-c510-550d-bdee-276385946a1d", "text": "christmas lit room point of view opening a big christmas present box "} +{"id": "2005594", "video_name": "1161dfa2-b1e0-585a-ab00-c68d6dc79f73", "text": "An illustration of Einstein pondering his ideas. "} +{"id": "1003626", "video_name": "42cadde8-9aa7-5495-8bf6-51dc8408ed39", "text": "a yellow duck cartoon protecting your personal data "} +{"id": "3006163", "video_name": "c908b67c-53bb-5bde-ba3b-8ecda2405742", "text": "Crassus addressing his troops with determination "} +{"id": "7002474", "video_name": "61335125-0bf6-58e8-82b0-edd1261b8f59", "text": "On the day of the national celebration, he arrived. A pilot with chestnut hair, a beautiful scarf, and a lovely smile. A group of young girls gathered around him and began to sing. "} +{"id": "4004681", "video_name": "85b63254-9992-531c-a72b-5bca18cc1cd6", "text": "a guy walking on mountains in heavy snowfall, less visibility "} +{"id": "8002351", "video_name": "fb99b903-d557-5529-b93f-c44fcc35a683", "text": "rustic west coast mountains tree bark mushrooms wood moss "} +{"id": "1003110", "video_name": "39390538-e1fc-5345-b6e1-bdcf7b02eb57", "text": "rimworld and kenshi and berserk and no mak sky and fallout and dayz and barotrauma "} +{"id": "3004604", "video_name": "a0becda2-6ca9-5e9c-a626-e2951afc6f1b", "text": "a horse is galloping in a shallow river "} +{"id": "5001929", "video_name": "e3ecbc2b-20d2-5b53-9144-d8081fa62570", "text": "a man cooking eggs on footpath in qissa khwani bazaar Peshawar "} +{"id": "1003705", "video_name": "445e80dc-d01d-5858-a04b-5820c2a17d4e", "text": "Larry David fighting Stone Cold Steve Austin "} +{"id": "4003696", "video_name": "a3baf2fe-da96-57ac-abc1-2b9351e97c96", "text": "a planet with hot vapors oozing from the surface, cinematic "} +{"id": "1004730", "video_name": "57b983af-9c51-561b-b5aa-186a724a558d", "text": "At night, the snowman was drinking heavily while peeking at the beautiful woman with a colorful expression "} +{"id": "2003059", "video_name": "be39d7c8-74a1-5849-b48e-c60be3841410", "text": "a cute kid bunny in a classroom "} +{"id": "6003117", "video_name": "eb6239f7-c24d-54fc-8f3f-3afccfb4750c", "text": "a short bride and a tall groom walk down the aisle "} +{"id": "7003754", "video_name": "d5eff185-2e27-502b-874d-ceeba470530f", "text": "laboratory, fume hood, chemicals, danger, gloves "} +{"id": "3003665", "video_name": "7e87291c-2250-50db-9ec4-3c0648f56827", "text": "modem day Jerusalem, bird eye view. Depth of field. background of Gothic cinematic, 8K resolution with fine detail, Palestine, Jerusalem background, the time of the Ottoman "} +{"id": "6002598", "video_name": "9136edf9-9c32-556b-b87d-1d1a4b2fe51c", "text": "A stunning portrait of a Tcham lady, dressed in exquisite folk attire with a red headscarf, set against the dramatic backdrop of the Albanian mountains. "} +{"id": "3003117", "video_name": "e3f1ff9c-a183-5458-ad09-b24d747081ee", "text": "a young boy looks straight into the camera with a melancholic expression, standing in a city street, modern and professional style, daylight, haze, grain, scaninavian movie "} +{"id": "0003289", "video_name": "3af98e1a-c347-5829-bad3-eb06d3fd9908", "text": "the shadow of a tropical steampunk horse running "} +{"id": "5001300", "video_name": "40fd0d9d-796e-5a64-b217-cf449170f16c", "text": "a realistic great quality video with an arabian prince fighting a lion "} +{"id": "6004048", "video_name": "d5c58d71-2b73-558f-8df8-6af3b5fe5582", "text": "a dog riding an aeroplane into ocean "} +{"id": "6002404", "video_name": "6fde4440-6ef4-5107-8fa8-60e3ba2412fd", "text": "cartoon bear eating porridge at a table "} +{"id": "2004625", "video_name": "0d63077e-42c3-50ad-8c9a-376062495e79", "text": "image ship in the sea storm 360 "} +{"id": "7003128", "video_name": "dd839285-d7b0-5177-b633-c85a3fc2d6ad", "text": "dirty brown water and dirt running through the sewer "} +{"id": "7004292", "video_name": "ac248212-19a2-575b-abd5-d65ada156e92", "text": "a video of people walking around luxury houses and driving luxury cars and wearing expensive clothes and jewellery make the video motivational and inspiring make the video 16:9 aspect ratio 28fps also make this as ciral as possible target audience male 22 to 55 make the video 2 minutes in duration "} +{"id": "0003957", "video_name": "008aeb29-326b-53ea-9219-6bb63aa3f75a", "text": "reminding them that with knowledge, compassion "} +{"id": "7004305", "video_name": "7242bf1f-e486-54a0-99ac-3a9bd4eec290", "text": "Lambo Urus rides through the city at night "} +{"id": "6003507", "video_name": "d2b09b60-6716-5225-aa0d-6152ad3c9e0e", "text": "scary ghost in front of a green screen "} +{"id": "8001132", "video_name": "807cc8ac-03e9-5180-a80c-f2625f09fc8a", "text": "very young girl playing PC all day at home studio soft lightning, realistic "} +{"id": "8003640", "video_name": "437ad70f-6142-586f-a6bf-83425f313f57", "text": "Sending positive vibes to everyone who sees this post. Hang in there today! You got this! "} +{"id": "8001829", "video_name": "19ad965f-66c1-5120-ba3c-ee25993bb39b", "text": "WWE arena fireworks Wrestlemania looking from the ring up the ramp pov "} +{"id": "6003572", "video_name": "dc586433-85fb-5b94-a1f5-f7bf837ebfd2", "text": "kangaroo jumping on the moon surface "} +{"id": "2005833", "video_name": "fca67879-5dc9-535f-8397-7fe54c9dc855", "text": "a dog with two heads, lost in a forest. 16mm grainy film "} +{"id": "1006983", "video_name": "7fc3ca3d-83b5-5661-971b-eb7b52908238", "text": "A golden key unlocking a treasure chest filled with gold bars and money. "} +{"id": "8003340", "video_name": "d3262db4-1d98-50a1-9f71-0c41abf9514e", "text": "a soul was ripped out from the dead in the church "} +{"id": "1004605", "video_name": "55c00a38-c81a-5e12-89f8-920edcd78d1f", "text": "a video where I can see lambo which is diving to the storm in desert "} +{"id": "3006951", "video_name": "4507e3d3-c430-54dc-9aa2-e44528317dd3", "text": "tibetan architectures, sky Message: DING ZHEN (Font: MODERN) "} +{"id": "2003862", "video_name": "b25a4ae2-d607-52d3-b844-3ec477eab9f6", "text": "Heavy metals and radioactive elements are constantly enriched "} +{"id": "7003385", "video_name": "a0a102bb-5b45-5048-ab5e-cd91481fffad", "text": "Beautiful shots of cheetahs in the wild, emphasizing their strength and grace "} +{"id": "8001703", "video_name": "5498d960-fbac-5975-b53d-93864db644ad", "text": "viewers of wrestling show applaud in stadium, cartoon style "} +{"id": "2004205", "video_name": "0dbddc49-d898-5d10-a313-68f78be51721", "text": "orange juice flow, black leather boot, fast movement, timelapse, studio light, motion 4 "} +{"id": "1005844", "video_name": "6b6ba078-2fa0-56ed-9daf-e040ebc572f5", "text": "A robot is delivering a package "} +{"id": "4002731", "video_name": "7c28e109-c0f9-5ffa-a646-678a59005067", "text": "A little boy is drawing on the drawing board "} +{"id": "5001695", "video_name": "41497e73-7fba-5cfb-8ff3-94ce057c14f2", "text": "a distraught looking couple sitting with their hands on their face crying profusely over their depressive situation "} +{"id": "1006390", "video_name": "74dee540-9dba-5d87-b51f-9b6868d01c75", "text": "a hand holds two hands, intertwined with each other. The camera focuses on the hands "} +{"id": "1003136", "video_name": "39ca911f-393c-5b6d-b3c9-88ae24018c69", "text": "distorted image of bats flying around , caleidoscopic style "} +{"id": "2007414", "video_name": "d984e756-e105-5cb5-b221-256999363952", "text": "goth treehouse with the women in the Halloween night "} +{"id": "7004541", "video_name": "3ee78d88-4989-5c8c-be98-f13737506ec1", "text": "stary night ,in the style of vincent van gogh,impressionism\uff0cFlow strokes\uff0clight blue color ,super mini world "} +{"id": "6003552", "video_name": "bbb818cd-d0bb-5dd5-b120-eb5197d3430c", "text": "the entire world farming, the universe "} +{"id": "3004721", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "In a surreal cricket match, Prince Bin Salman and President Sisi face off on a tank, with the Israeli flag as their banner. The road beneath them is paved with the blood and corpses of innocent children, as they try to turn back from the horrors of war. "} +{"id": "1003609", "video_name": "4286931e-80b3-5189-ab7f-3c7ff4eae472", "text": "create a logo for the cryptocurrency market by nombre cryptobit "} +{"id": "6003160", "video_name": "164f6bda-5461-57d4-b823-48107abab0cf", "text": "analog synthesizer, isolated, blinking with modular patch cables. Gs13 "} +{"id": "1004671", "video_name": "56d4a177-ddb5-5124-93bd-858a9769783e", "text": "heaven view with beautiful houses garden fruits and flowers "} +{"id": "7003666", "video_name": "18af21bc-ca57-57ce-a3a3-7ec5fe51ce46", "text": "Explorers enter an abandoned asylum to uncover its haunted past. As they document the eerie silence, faint whispers begin to grow, and the shadows hold unseen horrors. "} +{"id": "2005115", "video_name": "34f47b19-02a9-5b03-9caa-638b9b95de3b", "text": "A lively market with exotic fruits and vibrant colors. "} +{"id": "1006403", "video_name": "75489a21-695d-5288-bcea-c096c8897dea", "text": "wide camera angle, Beautiful Renaissance women looking at paintings in an old classic Renaissance, hyghly detailed, 8k "} +{"id": "2007276", "video_name": "ac9994b9-228e-5568-ab87-7d8fce25104a", "text": "lightning mcqueen racing at circuit de spa "} +{"id": "2004974", "video_name": "7251d1ae-d5c7-5b22-bef6-adbb659fcbaa", "text": "A blue portal in the wall. Total darkness. "} +{"id": "1004928", "video_name": "5b1e3866-bda7-5251-8de8-b2b0be19c836", "text": "ted bear celebrating a birthday party, cake, ballons, conffeti "} +{"id": "8001400", "video_name": "3549f2cb-6ef6-5e75-8295-4cd5ddf60386", "text": "blueberries on tree, droplets, fujifilm, fujicolor c200, depth of field "} +{"id": "3006880", "video_name": "26b6e924-2ed5-5af7-a2ac-96ffd43a89b9", "text": "Cartoon rabbit struggling in the water, waves continue to lap, gradually die "} +{"id": "0003781", "video_name": "433e6314-fc92-5543-bbe7-e11bc608e0f3", "text": "a Hamburger with a face and a Hotdog with a face having a conversation with each other while sitting on a flaming bbq grill "} +{"id": "0003178", "video_name": "38c53114-bfc8-5a66-9ec7-346f76ce1caf", "text": "a delicious sandwich served at the table accompanied by a bottle of wine in an elegant place "} +{"id": "8001134", "video_name": "42ef51c6-e7b2-51d4-9f0f-c0739c90455b", "text": "Candid young girl playing, Brazilian beach, brazilcore, Asymmetrical Composition, 35mm, Panavision DXL 2, film grain "} +{"id": "0006365", "video_name": "2b4499f4-23ac-5c94-984d-7d2c357a157f", "text": "cinematic moving background of a white snowing background with a reindeer sleigh "} +{"id": "3003587", "video_name": "b684586d-79aa-5e4b-a9c7-8cba70bb6efa", "text": "a cinema 4d scene of Jesus The last supper but skeletons with gold jewellery on with a trippy backdrop "} +{"id": "7004598", "video_name": "3a99bcd1-6c83-598d-8086-52e10ba80229", "text": "Visualize the dynamic collaboration between doctor and machine as they work hand in hand for emergency "} +{"id": "7003802", "video_name": "bbf2c4c2-136d-5fdc-899d-1e6eecb3caac", "text": "only dogs on the streets, background is istanbul, weather is nice "} +{"id": "0003195", "video_name": "3910f257-f44c-5694-a816-4294ff796df5", "text": "green ceratosaurus with black spots on belly, in the jungle "} +{"id": "4002277", "video_name": "b0718998-f19f-5ac7-828f-c130c78c0a96", "text": "two beautiful indian women with a child sitting in front of an ancient indian saint in forest "} +{"id": "6003122", "video_name": "b9080c1c-20d5-5a2a-b598-548529e862f4", "text": "cartoon animation of an illustrated dog visibly confused wagging his tail and moving his head infront of an cartoon illsutrated green park background "} +{"id": "8002586", "video_name": "7f4f0532-170b-57f5-b195-e5b42d413a54", "text": "the knight fights against another Royal family "} +{"id": "8001502", "video_name": "45caf194-ea76-5017-9f21-2009d9c96eab", "text": "Slowly zoom in to show a young person sitting in front of a computer, looking puzzled and hesitant "} +{"id": "7004613", "video_name": "18815a76-a366-568a-b3ef-e0a8442ec3c1", "text": "a group of people with suits walking on a busy street and complaining "} +{"id": "2006031", "video_name": "f69a7376-1391-56d7-a39d-14b81daaef8e", "text": "deep blue ocean underwater with sharks swimming "} +{"id": "2003215", "video_name": "c7d3a845-7ba2-58b9-9141-2f350fd0aa4b", "text": "A beautiful hill and pink sky and houses small and shape love cloud in the sky "} +{"id": "6002810", "video_name": "74919622-95eb-53ab-9f7c-0b0256b05535", "text": "a puppy, a crab, the beach "} +{"id": "1005473", "video_name": "648a3be3-a0f3-57c4-80d6-51689c45844c", "text": "Give me such an image video of Krishna bhagvaan ji in which he is looking most powerful and the earth and sky are red in color and a storm is going on. "} +{"id": "2003840", "video_name": "1e53460b-2155-5eaf-b20d-1e64b8a2c191", "text": "24fps zoom hovering human storm structure "} +{"id": "2004150", "video_name": "164665ff-c542-59ab-bbb3-ef8d4f1e1639", "text": "Young boy , 10 ,short black hair , casual clothes , sitting , dining table , family , cozy kitchen , suburban house , warm atmosphere , Japanese animation style , hand drawn , simple yet engaging "} +{"id": "1006826", "video_name": "7ce2a765-0d2f-56ad-bd05-83bc373430a0", "text": "The door to the dark room slowly opens and a scary human face with a big smile looks out of it, then everything goes dark "} +{"id": "1004847", "video_name": "5999194e-fd73-566c-b235-ad385249f862", "text": "Baby of Hen and Hawk In Friends "} +{"id": "7003522", "video_name": "f8d3bdbc-f3b2-54f4-9f21-39526c18b6e5", "text": "A wide shot of towering mountains surrounding Astra Haven, bathed in the gentle light of the setting sun . ar 9:16 "} +{"id": "6002542", "video_name": "809fc3bf-92c1-507a-8e37-f250ffe276e3", "text": "A beautiful and warm mountain view "} +{"id": "2006912", "video_name": "19bab466-37b8-56fe-b54b-d1352bb6fa76", "text": "To depict this world, a team wields macro photo, microscopy, and advanced imaging. "} +{"id": "8002753", "video_name": "9f34cb12-0552-50e2-a2e4-c449300bb0f9", "text": "a girl is walking down a road in a retro style city with tall buldings "} +{"id": "2006115", "video_name": "528ee606-4b0d-50de-8153-4532b52daf27", "text": "cartoon smart elegantly dressed and crown wearing on head prince standing in front of the witch haunted house in a morning in a lush green, mysterious forest with taal trees 16: 9 video "} +{"id": "7003559", "video_name": "ae49e2ab-eac1-5c09-b502-69983bbea2e4", "text": "Double the reasons and balance it to create a modern female android to defeat 100 enemies at once. "} +{"id": "1006717", "video_name": "7b14e21e-de64-5394-a7ec-a2e6064a038b", "text": "an animation for the ChatGPT running theory "} +{"id": "6003229", "video_name": "8e441fa1-1ac0-589d-871b-7dde4d9757ef", "text": "in a tennis match, a hyper realistic tennis ball gets thrown to outter space. "} +{"id": "3005776", "video_name": "2d5d4059-527d-5d58-bb9c-a0731098ec41", "text": "a blue sleeping in bed zzz "} +{"id": "7003246", "video_name": "d51346ef-8f0e-580a-b17a-f02ed65e67bb", "text": "Illustrate a tapestry composed of intricate patterns, each representing a different culture, ethnicity, or identity. Show how these diverse threads come together to form a rich and harmonious tapestry "} +{"id": "3004471", "video_name": "5a5ee1b8-3e02-54ce-9dd3-f934c30a1e48", "text": "A Dog is looking in the sun "} +{"id": "5001561", "video_name": "5c99cab0-2b79-5bfc-aad0-9dc514b03b6c", "text": "an young boy with a backpack running in a trail of purple trees "} +{"id": "2007926", "video_name": "d7aa535c-7141-5497-8222-59160473520f", "text": "a tall, red hair girl holding a snowboard "} +{"id": "1004524", "video_name": "540aeae7-f0fa-56d4-aa66-34897f76ab19", "text": "portrait of a hungry Homer Simpson "} +{"id": "6003939", "video_name": "f870e34b-ebe3-547c-aac5-ec03309f4354", "text": "A blonde in a red dress with red lipstick walks down the street and looks at the frame. Background: people in grey and black suits "} +{"id": "7002801", "video_name": "f1fbc5f3-476c-53e9-b45e-ee3354dbb86a", "text": "create a forest, create a animal with long tails and sharp teeth "} +{"id": "3005948", "video_name": "834cbc94-4ca8-5d70-a6da-e9a783a6ecfd", "text": "As Whiskers strolled deeper into the forest, she discovered a magical world filled with tall trees, colorful flowers, and whimsical creatures. In a clearing, she met Sammy the Squirrel, Rosie the Rabbit, and Benny the Bird, who were having a delightful picnic. The friends welcomed Whiskers with open arms, and together, they played games, shared stories, and enjoyed delicious treats. "} +{"id": "8001091", "video_name": "f0522e5e-0aed-5f96-80d0-60daea7c04b4", "text": "haunted railway have a scary Ghost "} +{"id": "6002473", "video_name": "e9cf960e-8505-56ea-a45b-6e335db3173e", "text": "skippy dippy nice and lippy Message: 1 Attachment "} +{"id": "8001203", "video_name": "b7345881-8c0e-5741-bcb6-9ca18a64f4ba", "text": "girl with pink dress flying in sky "} +{"id": "6003016", "video_name": "6ec6c962-25d6-53ac-91ec-af4cd72e661c", "text": "trevor phillips on the starship enterprise "} +{"id": "2005111", "video_name": "ba3b0f48-ca33-50b4-b771-b3efd49f9808", "text": "helicopters showering flowers over Indian cities, crackers bursting, hyper realistic, high octane render, 4k resolution, hyper lapse, golden hour "} +{"id": "6004128", "video_name": "606e974e-7b4d-5766-8d96-07ef6e719b2b", "text": "University female student dressed in all black, has sunglasses on, long hair, laying down on the grassy field, bright sunny day, realistic, 4k, shallow depth of field, detailed "} +{"id": "4004655", "video_name": "a7293f23-7292-5542-b758-fbb1de0ae8a4", "text": "moon lander landing on moonscape that is made of cheese "} +{"id": "3003717", "video_name": "5c35ffde-d5ac-5e72-863f-ee4307e9640e", "text": "Ezio auditore fights in a forest "} +{"id": "0003481", "video_name": "3e64bba2-6c6a-5814-9e55-c850d6dc5208", "text": "Donald Trump doing a rally, hyperealistic, hand and arm movement "} +{"id": "3006300", "video_name": "54d355aa-c8ad-5e97-9b30-809c9d09fb9f", "text": "Take a journey through our solar system and explore the unique characteristics of each planet. Write a detailed passage that introduces and describes all the planets in our solar system, from Mercury to Neptune. Explain their size, composition, atmosphere, and any distinctive features. Consider their positions relative to the Sun and their potential for future exploration "} +{"id": "0006414", "video_name": "2bf30b8f-6073-51ee-b68e-d5e35431230e", "text": "cinematic scene, 8k sharpness, Human Goblin male with red skin, Blacksmith, small scars on face, character portrait, armor, shiny metal, forge, fire, Gary Gygax style "} +{"id": "7002472", "video_name": "398d3c8d-e007-5aed-ba41-896bb43168bb", "text": "Eva being tempted by the snake to eat the prohibited apple "} +{"id": "7003619", "video_name": "3d61071a-9f5a-59c6-95a5-9e4953e2d487", "text": "lana Del rey , muhammad Ali and Matthew McConaughey having fun "} +{"id": "3005999", "video_name": "5074e512-b356-5431-9040-42dc6be5d2a5", "text": "an image of a cozy room with soft lighting, a comfortable chair, and a person engrossed in reading a book. "} +{"id": "4003656", "video_name": "8d481490-ca59-599d-bba1-da2471993c88", "text": "create a small animation in which In the vibrant city of Neon Grove, a young artist named Ella dreams of making it big in the world of animation. She spends her days sketching characters and creating storyboards for her animated dreams., ghibli studio inspired "} +{"id": "6002935", "video_name": "79bb5063-0a8a-5378-961e-ebbc544a9ed7", "text": "According to their creation story, the universe began with chaos, with no gods or destiny ordained "} +{"id": "8003912", "video_name": "05181dfd-8f28-5f26-b2e8-608c65259e5a", "text": "a toyota car runnin on the beach "} +{"id": "5001850", "video_name": "8d48a5fd-b59f-504d-a5a9-b081b288231e", "text": "carpenter cutting wood, satisfying, 9:16 video "} +{"id": "6003180", "video_name": "27893564-3d39-5ea8-872d-2098389ed194", "text": "Dark road at night, houses at side, 2 bike and 1 car parked at sides, vehicle shadow falling on road, dim road light , silent and scary, realistic, school girl walking alone, back view "} +{"id": "4003056", "video_name": "f35d8ff5-bb91-5d38-add9-24c4348cbbe7", "text": "Two hands reaching for food, depicting hunger. "} +{"id": "8002670", "video_name": "0f7bdb9c-ca89-5e99-a2b6-b83814a4d790", "text": "I can\u2019t take this anymore I\u2019m losing my mind the insides of my universe are collapsing onto one another and the pain fills me and my soul "} +{"id": "4004987", "video_name": "a6d56270-2ec0-572c-9c06-af5ae18ac473", "text": "An anime girl listening to music in the city "} +{"id": "8001206", "video_name": "580d19c8-fa9e-564f-a0c7-7b6bd832d9f0", "text": "sky with clouds and birds moving and flying from right to right Message: kipue (Font: MODERN) "} +{"id": "5001184", "video_name": "95006df9-092d-5a89-9917-586e6c1a753a", "text": "train in the andean mountains in paper art style "} +{"id": "6004798", "video_name": "66c994f0-d6b4-5fe8-b99a-a1083295200d", "text": "captain of a ship standing on the deck, stretching their arms wide with a joyful and welcoming expression as if greeting a beloved old friend "} +{"id": "2007262", "video_name": "a3723863-1c25-59b5-9475-fc7dc9546c84", "text": "beautiful brownskin lady, sitting on a couch with leg hanging up on the couch, having a mobile phone, while raining outside, AR9:16 "} +{"id": "3005383", "video_name": "6a9d5b3d-2325-5713-8f44-ba9adc7e62fd", "text": "Quick cuts of intense battle scenes, with flashes of powerful beings in combat "} +{"id": "2005106", "video_name": "af8284f7-cf7e-5d29-b8b1-9febc6200282", "text": "The MAN lives a happy life "} +{"id": "4002436", "video_name": "741640e6-19c7-5231-b485-d5e3fb08e716", "text": "create a meme on how people on linked create clickbait content just to get more views "} +{"id": "1005280", "video_name": "6123040f-89ec-59f8-bb81-af69459cd16e", "text": "the village people constructing the school in the village,3d animation style , 16:9 ratio "} +{"id": "8001433", "video_name": "5d3a2a11-b487-5493-be3a-8776a41a3818", "text": "realistic movie scene showing a spirit haunting the sleep of a child "} +{"id": "7003413", "video_name": "d689a211-9c05-5a64-9b17-99696346be12", "text": "ultra realistic happy man is ride on horse and his hair is moving with wind, caera zoom in "} +{"id": "5001637", "video_name": "3f1a1593-fa2c-518e-bfb7-74ff829e1747", "text": "cinematic view of interior of a dark music video set with led lights and musical notations floating around. The area is a little foggy "} +{"id": "4004460", "video_name": "c6913525-266d-5e50-8236-50be294758e6", "text": "dinosaurs roaming around in a ju "} +{"id": "8001415", "video_name": "03eb32e8-07d7-5313-9db0-3fe99c5c714b", "text": "digital African man speaking and looking at the screen "} +{"id": "1003475", "video_name": "4062172d-6b90-5390-a771-c2ac4528be36", "text": "inviting a pretty girl to dancing "} +{"id": "0006488", "video_name": "2d5cb54e-988b-5777-911c-df325e9aaeae", "text": "i haven\u2019t cried since 1985! Just kidding i wasn\u2019t even alive "} +{"id": "1005264", "video_name": "60d61a2f-bffa-59f5-b64d-094fcf00d075", "text": "Generate a video of an autumn yellow ginkgo tree "} +{"id": "2006164", "video_name": "b55063dd-43ba-566d-aaa5-b79c2a50e66f", "text": "People getting old, old age people, getting old, years go by, many years standing in desert, big eye "} +{"id": "2004624", "video_name": "bda130d6-0bf3-5675-9081-4cd6a7f12652", "text": "two pianos, facing each other, old and new, black and white slow motion, 4k, AR 1:1 "} +{"id": "0006417", "video_name": "2bfcaa31-9751-5ca1-9033-0a39d67d916b", "text": "giant glowing jelly fish floating over a modern city, cinematic, high quality, scifi feature film "} +{"id": "5001663", "video_name": "1aee332a-6a6f-5040-9ae6-e32020c50053", "text": "A curious little boy and a playful panda playing and laughter in the forest. "} +{"id": "0006946", "video_name": "35ac51e4-721a-5628-b059-ab924915c688", "text": "7 man standing, then 1 from them falling back. Fast video, realistic, dramatic lighting, the angle is straight "} +{"id": "1003212", "video_name": "3b2c78ca-5abd-541d-aa45-53bbcd027140", "text": "small, fragile sprout pushing through dry, cracked earth. The sun beats down mercilessly "} +{"id": "2005604", "video_name": "6e31275a-e942-57d7-a5cf-f0002e227dbd", "text": "a dancing cute mini robot, travolta moves, Saturday night fever "} +{"id": "2007116", "video_name": "be5d72cb-97c5-5b7f-b0be-bbf6347145b7", "text": "long summer flower skirt changing colors "} +{"id": "6002949", "video_name": "81ccc102-9d83-5369-acf1-e1decfdf29f4", "text": "In the dark night, in front of the door of the house, a scary looking man is talking to a young couple "} +{"id": "1005333", "video_name": "61f39ec7-11c0-56bb-b82b-6411c9734114", "text": "convulsions in animals body caused by several bacteria "} +{"id": "1005064", "video_name": "5d8dc7a2-b441-5b3a-8688-01390a7893ad", "text": "a field fulfilled with hundreds of flags, disney style "} +{"id": "8003156", "video_name": "4a46e689-5ba5-532b-9d28-f311be8fd55e", "text": "a 1980 airplane fly toward sunset "} +{"id": "6002422", "video_name": "b1d8080d-70a8-5349-8f97-6ce9f3b1816c", "text": "I want to see a video of someone thinking about an old hand plane tool and it appearing In their hand. The scene is in a woodworking workshop "} +{"id": "2004329", "video_name": "67b8a860-61c5-5513-afb0-8551913f7803", "text": "Handsome young man, novice wearing Catholic monastic robes "} +{"id": "1005527", "video_name": "65be9d9c-5073-5300-a34c-90653fffab7f", "text": "Katakuri from the Anime series One piece "} +{"id": "0003355", "video_name": "3c157fa6-f38a-5a69-9d34-e444c54507d7", "text": "A movie scene of a woman looking at the window in the year 2003 "} +{"id": "2004689", "video_name": "2c707540-f854-5b99-8561-418c0cb737f6", "text": "a hawk with fire wings flying against a blue sky "} +{"id": "7002067", "video_name": "69c19006-b60f-5c9a-b77e-60e7ca5b4825", "text": "3d models of 5 peoples talking in beautiful garden "} +{"id": "7002048", "video_name": "28aa5820-89ff-5c9a-ab7b-b7320e2036a5", "text": "They arrive in Shimla and check into a hotel for the night, seeking comfort and safety after the strange bus incident. "} +{"id": "8001575", "video_name": "35aad813-b801-559d-8d5e-0e05b6607e12", "text": "disney pixar 3d animation of a girl with dreads waving a magic wand, cgi, vfx, sfx, 8k, best quality, extremely coherent "} +{"id": "2005236", "video_name": "91b8f196-a100-5a2e-8a66-d9e987fe9aca", "text": "a piece of reality rising into the universe "} +{"id": "8003603", "video_name": "d456396e-5189-5b29-ba6d-0c24b4d933f6", "text": "a lot of people walking uncoordinated on a big site with cars and trams "} +{"id": "2006845", "video_name": "adf939c7-dd48-5b93-acba-ae19af892636", "text": "and lakes are among the most intriguing "} +{"id": "6004629", "video_name": "d41b5f09-81f4-519f-aa49-4d1625534979", "text": "enlightened man, fair looking, telling a huge number of people truth "} +{"id": "2003957", "video_name": "4b9fdc63-82a3-568b-97b6-d231183a0194", "text": "A doctor in scrubs stood at a table with his hands crossed, smiling and bearded, against a blue wall "} +{"id": "0004027", "video_name": "01c14970-3829-5747-b92c-e156f84fa9c5", "text": "a renaissance portrait of a young girl "} +{"id": "5001951", "video_name": "9ddbfadf-9d00-5414-9ddc-b5b76a67770c", "text": "the side view of a girl entering in class room "} +{"id": "8001942", "video_name": "85531710-c190-5e94-ac50-a7435aeefa84", "text": "dragon coming out of the Monalisa picture "} +{"id": "7002128", "video_name": "ded4fc30-40b3-5192-9dd2-decb90c0ec89", "text": "A giraffe eats grass from the ground "} +{"id": "3004592", "video_name": "db6fca8d-02e9-5977-92c9-1158929ea035", "text": "16:9 horizintal video, realistic, cozy living room modern style with fireplace on, tv screen with landscapes, tall trees in the window, raining outside, daylight "} +{"id": "8001436", "video_name": "b2893890-eb3d-5827-92bf-7afc94c08558", "text": "No Food or Drinks sign at the entrance of an art gallery. "} +{"id": "8003636", "video_name": "eef7bb84-5bfb-52f7-828a-49582898b066", "text": "sunset on the beach, near the castle, romantic, 80s, cinematic "} +{"id": "3006934", "video_name": "0331e954-9a30-5c4e-9da3-725c410e68cd", "text": "create a 30 second mashup of ERNST HAECKEL and Ray Harryhausen in a mushroom forest surrounded by smokey monsters and rocket fish "} +{"id": "1004173", "video_name": "4d3dec85-2fed-5467-88c4-efee8a87d1f0", "text": "cinematic video with money, mindset, cars with photorealistic graphics "} +{"id": "0006591", "video_name": "2f267be1-7fd1-56a3-9765-388e9830f15d", "text": "a man walks from the seashore towards the village, the time is day, the view from the back of a man, the time is 0 A.D., the clothes are white "} +{"id": "0005931", "video_name": "236cebf5-621a-5704-a879-61df3feafc00", "text": "the spectral woman manifested herself in the reflection of the mirror, as if she had emerged from the very abyss. high definition, high detail, cinematic "} +{"id": "2007405", "video_name": "1a581f87-458f-5b45-b44c-9611915290bf", "text": "generate a video of an outside of oceanarium "} +{"id": "2007165", "video_name": "1eb62791-3c35-5c94-971a-fca7c74dfba3", "text": "a young king in his palace with his father "} +{"id": "2006033", "video_name": "8e37aeb1-7a7d-5075-a492-409e7f9023f0", "text": "sushanth sing rajputh sit in the office "} +{"id": "3005837", "video_name": "b506054b-591f-5219-863a-658206e26524", "text": "Real Cat Big Face In the Hat "} +{"id": "2007259", "video_name": "323831a2-e48b-573b-aaf6-8c8141f89dfc", "text": "life in another world, best beautiful planets, smooth "} +{"id": "4003624", "video_name": "f4530c27-db14-5326-9ead-d522c2647b5c", "text": "A host explaining hackers on TV "} +{"id": "1006804", "video_name": "7c872977-fdac-5bae-a3fd-2398c3bedde8", "text": ": Angel standing in the ocean waves storm whit a sword frame "} +{"id": "6002247", "video_name": "b4269dbc-8f6a-5def-bb63-e970ea2bb6f7", "text": "Two characters talking to each other, father and son, cartoon, 3D, full, HDR, very high resolution, no distortion in the character, enhancement, direct with artificial intelligence technology, no errors, wonderful colors, and everything is good. "} +{"id": "0005485", "video_name": "1bab4d91-4096-5d4f-92dc-c5dfa959132a", "text": "An amazon warehouse robot sorting boxes "} +{"id": "2006143", "video_name": "f1405f48-0ac4-5fa6-84f1-3fe39891d9ee", "text": "The young man closes the door to his apartment and walks away, carrying his backpack on his shoulder as he strolls through the city streets "} +{"id": "2005473", "video_name": "3beb5568-e2ff-57d1-a7ca-ffc6820e2c1c", "text": "Cat in house. Picture zoom out "} +{"id": "1006721", "video_name": "7b2f66f5-d67a-5f3d-989a-d51f6c0c2d68", "text": "create prompt:a person draw picture of coffee, office, dark image "} +{"id": "3003694", "video_name": "c6be16a8-5277-516a-9714-5098f0986394", "text": "shining neon sign flashing over a black background "} +{"id": "6004358", "video_name": "fc6c09a6-ea57-5d16-95a9-29c68595cb35", "text": "as the subjects puts his leg down "} +{"id": "8002715", "video_name": "a1d5e6f7-95e1-5ec7-9abe-ba9de8f240f4", "text": "a realm beyond our world, the night sky is a canvas of glittering diamonds. Tell the tale of a curious explorer who embarks on a journey to reach one of these celestial jewels "} +{"id": "8001418", "video_name": "a23670bd-c195-5ddf-9103-2c06385bbc5b", "text": "The old man is holding his dead son and crying "} +{"id": "2006785", "video_name": "26684e2c-323c-5400-97bd-72de24a94e7f", "text": "a curious man looking at the super blue moon from a rooftop "} +{"id": "2004703", "video_name": "da7645c4-3e25-565c-9bfe-c923fb750e28", "text": "crusader sits on a stone on the seashore "} +{"id": "0006551", "video_name": "2e7e53a0-e920-5c27-bce5-0185e35a03df", "text": "Christmas tree decorated with all white lights and ornaments mostly warm shades "} +{"id": "8003414", "video_name": "ede4a560-0daa-5ac4-b871-8af316175bbf", "text": "Dr APJ Abdul Kalam cartton image for Auto Biographu. "} +{"id": "0003180", "video_name": "38ce96f7-97d0-53d2-8848-ddcc542206ee", "text": "leader of an ancient Celtic village with wooden houses "} +{"id": "1003715", "video_name": "448f72e8-c390-554f-8eca-878b28e8e439", "text": "jesus dressed in a gold outfit rapping in a music video "} +{"id": "2005792", "video_name": "bfaacdb2-18e7-57ab-bb45-c3a7da5024bd", "text": "an old woman with a black lace shawl in her Victorian dress walking in a dark forest with a primitive cult mask worn her face ,she is walking slowly,surreal "} +{"id": "1003847", "video_name": "46e14ef7-1602-55f0-b65b-2eb059b64efb", "text": "a man smoking a cigar at night, cyberpunk, steam punk, city, neon "} +{"id": "2004946", "video_name": "1bdbabcb-10be-51a4-9884-ba18987166a8", "text": "Handsome and athletic and 31 years old blond man is walking towards camera from 5 meters away, in city center, 16:9 "} +{"id": "3003288", "video_name": "4f65d9c2-fca4-558e-ba6f-70937e00e656", "text": "interior of a priest house in a fishermen village "} +{"id": "1006051", "video_name": "6f18764e-c8e8-5122-84d2-8147b34910e2", "text": "Ari kytsya riding in a horse "} +{"id": "2004694", "video_name": "d8746154-8a9a-56a7-bea2-1c6dd5613f0d", "text": "real estate house evaluation, day, modern home "} +{"id": "1006538", "video_name": "77c81c1d-5a2d-5d8b-9255-a5bc7c0c5767", "text": "crowd in a congress center watching a presentation "} +{"id": "4003087", "video_name": "ebdf9164-941d-51a1-a611-544d19ee053c", "text": "prompt:old man is telling stories to his grandchildren in a house with wood floor "} +{"id": "3003495", "video_name": "debd2907-24d5-56d4-9e4c-9c16820da10f", "text": "little starlight sprites.have been lighting up the night all day. "} +{"id": "8002680", "video_name": "dae669c0-c1f6-5cf6-815a-2939740b102f", "text": "A man walks on a street in Shanghai at night "} +{"id": "8002031", "video_name": "5379420f-dc9d-5162-9226-560076441417", "text": "A cute orange cat with green eyes is sitting on a blue couch. It picks up a red ball of yarn and starts rolling it around. It chases the ball across the room and jumps on the coffee table. It catches the ball in its mouth and brings it back to the couch. It repeats this several times until it gets bored "} +{"id": "4002912", "video_name": "c717a161-4518-57be-81a4-f5ead24a5277", "text": "disney cars driving a race, harryhausen style "} +{"id": "8003177", "video_name": "a4be9930-508e-5553-a66a-51d7d0f57ca8", "text": "human face in a virtual world, early cgi, VHS quality, 90s cgi "} +{"id": "8002054", "video_name": "beab9b33-698f-5ea1-8eda-22c6375093fa", "text": "a man holding a kitty in the grass "} +{"id": "8001232", "video_name": "54ce4461-b450-5638-9cd1-18ca91c9299d", "text": "One day, as Wally the whale shark swam near a bustling coral reef, he noticed that the vibrant marine life seemed agitated and uneasy. Worried, Wally approached his friends, Sammy the clownfish, Lila the lionfish, and Oscar the octopus, to inquire about the commotion. "} +{"id": "1004883", "video_name": "5a4c5689-d595-5644-b2c6-601fbbbbcad6", "text": "popular tourist truck exposed black secretsecret "} +{"id": "8003137", "video_name": "fd59ff2a-666d-564b-9499-82a8570a4716", "text": "two cow eating food 4k hd , cartoon "} +{"id": "6002455", "video_name": "9275ccc3-75f9-5132-9df6-17e9d98618e7", "text": "Justin Trudeau with Charlie Chaplin moustache "} +{"id": "1003159", "video_name": "3a32b25e-86e6-5f23-a92b-e9c479709d95", "text": "Chibiusa shoots out pink lightning from her hands, realistic "} +{"id": "3003122", "video_name": "b09dfc74-a513-5581-b658-ea593a53ad12", "text": "hyper realistic, ultra detailed, rainning liquid coffee, transformation of coffee beans into liquid coffee, tv commercial, ad, zooming out, panning, panorama, 8k, volumetric lighting, masterpiece, film grain, ray tracing, beautiful , golden hour, studio quality "} +{"id": "8001952", "video_name": "ced5a21b-94d9-59ea-b1e0-75ac1cfe6489", "text": "A heartwarming night scene unfolds, with twinkling stars against a warm moonlit sky. A child and mother cuddle in bed, immersed in bedtime tales. The image radiates comfort and tranquility, inviting a sense of familial warmth. (Aspect Ratio: 16:9) "} +{"id": "8001295", "video_name": "28b1ca5f-047d-5ba2-ba55-885de319ec90", "text": "a girl Gracefully dancing, alluring and charming. "} +{"id": "1006752", "video_name": "7b9bdc97-6150-5fb8-a40b-9a27b59299ec", "text": "tobuscus wearing a blue outfit in a graveyard "} +{"id": "6003358", "video_name": "32c2f279-18c7-5ceb-af0b-653e5e206d26", "text": "Country villa design architectural construction drawings.Mountains and water "} +{"id": "0005534", "video_name": "1c6aad58-eb5e-5424-a706-5548dfc69414", "text": "man doing graffiti in the wall "} +{"id": "6002806", "video_name": "4df3c635-c270-517e-aeec-6162f861c684", "text": "declassified top secret behind the scenes footage of NASA faking the moon landing"} +{"id": "3004358", "video_name": "d1536b74-411b-5d9c-b48a-6c5cd984e0ee", "text": "Volleyball attacker No. 4 spikes the ball "} +{"id": "2003477", "video_name": "548a5a29-5c17-5a64-8dd8-cba012f1214e", "text": "an intro animated logo for a studio Van "} +{"id": "4003073", "video_name": "2ca47803-22a3-5852-9c75-352470eea903", "text": "jellyfish is eating my head, absorbing scene, horror movie, cinematic look, 4k "} +{"id": "3006475", "video_name": "87079aac-94f2-507d-90b8-8766f3577768", "text": "narrow shot of a Group of people celebrating Xmas , cinematic , advertising style, people happy, eating and drinking "} +{"id": "1005929", "video_name": "6cf10cb6-cb2e-59d5-9fba-f090423f7725", "text": "ocean at night with a giant moon and tranquil waves "} +{"id": "5001866", "video_name": "e3b6dcd6-7ba8-577b-873c-cfd5eee04979", "text": "a group of pandas playing poker floating "} +{"id": "0005014", "video_name": "1345e000-d887-559a-af25-cdd677d4deef", "text": "Bumblebee from Transformers is angrily dancing. "} +{"id": "2005794", "video_name": "df326f8a-7e3b-57ba-a130-22146106fe84", "text": "a foot with long toes crawling like a spider on a delicious cheeseburger. Highly detailed, 4K, IMAX, high dynamic range. "} +{"id": "3006407", "video_name": "351f8acb-fe7a-5cd0-9a95-8941b164ef74", "text": "Blow up the future fighter plane and the plane crashes and disintegrates "} +{"id": "8002407", "video_name": "92acb608-2239-5bd7-93f3-13e91d5113fb", "text": "Circus show Animal lion entering a round ring with fire Moving depiction with a lion inside "} +{"id": "0005758", "video_name": "20b772a8-12d1-5b1f-94cd-0180d702aa80", "text": "Create a pastel blue and half white Beetle traveling along the seaside road "} +{"id": "3003512", "video_name": "2ce4c3c3-f90f-53f9-a540-fd9b8bf020f3", "text": "gray stripe from warrior cats book "} +{"id": "1003403", "video_name": "3ecb208d-b550-5b8c-b960-c19b4ee967c6", "text": "rome in 1910 black and white horse carriages piazza "} +{"id": "3005559", "video_name": "a6ee9584-55c8-53c6-8615-d581a4a67e62", "text": "a cat with Dinosaur and bear "} +{"id": "5001725", "video_name": "abc387f7-8771-5047-a142-b4bd27c5effb", "text": "buildings in Paris Message: Vasya lox (Font: MODERN) "} +{"id": "0003614", "video_name": "4081a601-2821-52c5-a6c8-81fa344130c5", "text": "A boy hunching over while using his phone, causing a hunchback problem. "} +{"id": "4004127", "video_name": "1c1d5cc4-b496-514f-9c34-4079387f8650", "text": "the narrator talking with his grandmother who is stting on a wheelchair at the early morning birds chirping. Visualize the warmth and nostalgia as they gather around, sharing laughter and bonding over their unique experience. Illustrate the camaraderie with vibrant colors and expressive character interactions. Artwork, digital painting, Message: 3d pixar animation (Font: MODERN) "} +{"id": "7002349", "video_name": "5f052b03-24f7-5966-8959-85046ebbf830", "text": "At night time Indian Highway , and car standingcloseup shot \n\n4k uhd realistic "} +{"id": "4002139", "video_name": "a2bc0d92-d8e4-5dfa-860f-0f0f8cf1d41d", "text": "the car flies over the lake "} +{"id": "4002173", "video_name": "6f6dba51-63b9-58fa-ae25-410acf8aab3a", "text": "view from the back of a cinema room "} +{"id": "5001499", "video_name": "b0edf650-d670-5aa6-b14e-139dff30cb35", "text": "Soldiers fighting over an oil well 4K "} +{"id": "4002792", "video_name": "5d267b5b-5873-57ee-a566-f6c0795315a1", "text": "a teen girl is dancing in a squal "} +{"id": "1006877", "video_name": "7db14757-310a-566f-b1a1-25193c2b4888", "text": "a soccer ball is flying in the stadium "} +{"id": "4002627", "video_name": "4c705074-1c14-5cf5-b9a9-126d473c0413", "text": "a intricate detailed DMT textured computer motherboard pulsing with electricity and light Message: ovrstitch (Font: MODERN) "} +{"id": "0006600", "video_name": "2f57b363-ca8e-5933-b99d-b503ff0dcd00", "text": "a short movie of someone unsatisfied with their major at University "} +{"id": "4002440", "video_name": "3a72d0c6-19e7-5c0e-a4c2-0962ee82b824", "text": "pink sky with song bird\u2019s and grass "} +{"id": "0005740", "video_name": "206f5519-f7f6-59d7-b785-bb49eadee7a5", "text": "a computer science lecture n college in which you can see the screens of the students and an exam is being proctored. make it colorful "} +{"id": "0005161", "video_name": "15cfd4f6-f10f-5595-88c8-92b87935f499", "text": "man openes his house and reveals monstrous sharp teeth, cinematic shot, camera pan right "} +{"id": "8002346", "video_name": "01bc62e4-7679-531c-bb4e-6fb09e2a0d40", "text": "Describe the living room in a small stone village house, stone tables and chairs, a TV showing soccer cartoons, 16:9 "} +{"id": "2006511", "video_name": "bf69987a-39e1-513a-816b-4214246eea68", "text": "girl studying listening music with headphones, room background. Late night homework., cat spooring on the desck , 2D cartoon character animation with nighttime cozy bedroom interior on background. 4K video footage , down , left,room "} +{"id": "3005435", "video_name": "0f7c6e2d-067a-531b-a47c-2fa380050985", "text": "At night, whales leap out of the sea. "} +{"id": "4003357", "video_name": "1f62d238-0e8c-564a-9486-d8b924f44bd4", "text": "a man in a bandana counts money. Meteorites fly in the backgroun "} +{"id": "7003799", "video_name": "d1f8db0b-06cc-50d5-a0bb-e5ae0b6a2a2d", "text": "a quaint, enchanted village nestled in the heart of a mystical forest, a young witch,black cat with sparkling green eyes,fairytale vibe "} +{"id": "2007835", "video_name": "875de9e8-57e4-5008-a95c-8a0e09028747", "text": "rising sun in the background of vehicle "} +{"id": "2003579", "video_name": "f484fec2-9aee-5c65-acd6-bba5ffcf311e", "text": "Ghandhiji fishing in kerala style in backwaters of alappuzha "} +{"id": "2004446", "video_name": "8895862c-afac-59e4-bcc3-51193cf0e377", "text": "Ancient Greek construction Message: 1 Attachment "} +{"id": "8003258", "video_name": "d8a04cc0-13c0-5835-ac42-acc18fb01e3c", "text": "widescreen, a small, tranquil town nestled deep within a lush, verdant forest, with a from house, cattle, and an old house with a metal roof "} +{"id": "2007290", "video_name": "0867c66b-aae1-5ddc-a30e-3715d1b541e3", "text": "soccer field floodlit panning shot Message: bad batch (Font: MODERN) "} +{"id": "2003053", "video_name": "10980fef-93ed-51e4-bef0-bc00b5960b9d", "text": "gnomes fight over a slice of pizza "} +{"id": "2007726", "video_name": "48ce2c67-d17f-58ac-88c0-9a02acc1dfde", "text": "a chrome hand emerging from a reflective pool of mercury "} +{"id": "6002349", "video_name": "a038aa13-4dd6-5a49-881a-fad0e38d5744", "text": "White and octarine , beautiful, minimalist market, snow forest "} +{"id": "1003946", "video_name": "48cd194b-43f7-5adb-8fbc-9144781adf6a", "text": "a white hair teenager girl lost in the woods animation frame by frame 2d color "} +{"id": "4004147", "video_name": "8a298ccf-9331-5785-a86b-b6c4027d6c03", "text": "a sports car with neon underglows is driving over a bridge towards a cyberpunk cityscape in the distance "} +{"id": "3005875", "video_name": "f6b83125-4c63-5587-bfde-cbca3f2f5d6d", "text": "a giant octopus with a pirate ship, on top, night "} +{"id": "7003381", "video_name": "123c17bf-a058-5271-86d8-b778904b61fd", "text": "A girl wearing a suit who just got off work walks into the modern bathroom "} +{"id": "1004311", "video_name": "4fb0e81d-6708-5ebb-a542-f0bf06ce95fc", "text": "a cooking show style video, boiling of milk in a flat bottom tope "} +{"id": "5001228", "video_name": "72e5b759-edfa-5676-8cd4-59be5188da51", "text": "a 30 second video of a flying car across London skyline "} +{"id": "2003621", "video_name": "9a26e2e1-28fb-5f34-99ce-cd4d96bcfab6", "text": "bright room, large shelving in the background, Victorian travel items on shelves, some of the items move "} +{"id": "1003437", "video_name": "3f8a1652-ce5e-5aac-a1f8-95012844d4fc", "text": "a city. in the style of Silent Hill. "} +{"id": "0004211", "video_name": "05080a72-00a8-51eb-a1fc-0867898a4b0f", "text": "A group of automotive engineers is developing new innovative tools. "} +{"id": "3005402", "video_name": "f0261aae-582f-53a0-848c-8cbad8e928a9", "text": "old woman very thin golden hair Walked towards the door with a weary look. The right hand hangs down and holds a knife. Behind the scene, the light in the room is dim. The atmosphere is very scary. Sharp images like watching movies in a cinematic laser system "} +{"id": "8002120", "video_name": "a84e0372-a782-52ac-be64-29bf30bd0e36", "text": "a cinematic representation of a girl settling down on her seat in the flight. "} +{"id": "1006377", "video_name": "74bab963-3a5c-5c71-b607-231d6389d810", "text": "vapor from jasmin and rose and other flowers "} +{"id": "3003086", "video_name": "ded4c6b3-1723-5001-847d-555d7891c642", "text": "Describe the experience of a person who, in a state of deep relaxation, feels himself separating from his physical body and going out into an astral projection. Detail the sensations, the vision of the physical body lying down, and the first discoveries while traveling in its astral state, exploring different places and dimensions. "} +{"id": "2006825", "video_name": "d1d70da6-b15e-5e7b-a26a-00a1604b2159", "text": "Whose relatives were informed through the newspaper "} +{"id": "7004851", "video_name": "f5229fcd-26d6-54b7-ae03-af4f05a31071", "text": "It is raining outside the window. A little girl is sitting at the desk in front of the window and is doing her homework. There is a cup of steaming coffee next to her. A kitten is sleeping next to her with her tail still moving. "} +{"id": "6002855", "video_name": "5a9a3f9e-b22e-534c-bd66-c227cfa79a72", "text": "60s album cover Gothic Prison in the Hoodoo desert "} +{"id": "2004494", "video_name": "c0e9cfa0-b00e-5023-b76f-c1bc46449098", "text": "dark, late night, red light district neighborhood in baltimore city with adult entertainment shops aligning the streets. "} +{"id": "6003248", "video_name": "eae5fb37-3818-5a94-ad8a-7e0ab2438ca5", "text": "A violent storm engulfs the small town of Murphy, Texas. "} +{"id": "0005694", "video_name": "1f94176f-2714-5aa2-9b24-ce058c211751", "text": "Leo, the courageous lion, faces a paw injury, but his determination remains unshaken. "} +{"id": "3006229", "video_name": "4495118a-cd30-552f-ad07-fde7ed862d11", "text": "1960s Psychedelic newspaper with blank headline. "} +{"id": "7002756", "video_name": "77c0d6af-8b80-51ec-b70d-1675044ceaa2", "text": "vintage footage public speaker man talks into microphone "} +{"id": "2006985", "video_name": "9f08e135-3139-5f40-9d86-45905927487b", "text": "create a 30 second video of an astronaut walking on Saturn. You should be able to see the rings and moons of Saturn. "} +{"id": "1003894", "video_name": "47ceb4b0-8431-5012-941c-7dda8d2639e3", "text": "Buddha, in temple, smile, detail, sunlight, panorama, high quality, elevation, 8K "} +{"id": "3005369", "video_name": "91f6ab19-034d-557c-9ec6-c344be1780c6", "text": "Once upon a time, in the heart of Quezon City, there was a notorious road called Balete Drive "} +{"id": "7002654", "video_name": "fd42dc4e-62e2-5673-b6e4-cfc6ca272f04", "text": "butterflies and bees around lotus flower "} +{"id": "1005262", "video_name": "60cf6595-482d-5a48-84af-9c9ad39d5514", "text": "former and two bulls. background if forming in land "} +{"id": "2003067", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "make the water flow as the wind blows through the trees "} +{"id": "4002374", "video_name": "5add4aac-69f1-5372-bd40-5f06c3f4f381", "text": "3d cartoon monster in white background "} +{"id": "2005104", "video_name": "57c1cec7-d471-58d0-9cbb-e085068cc3e6", "text": "An old radio turn into CD then turn into Mobile "} +{"id": "8003256", "video_name": "ae481327-abcf-5c9f-9bae-ca75d7133059", "text": "3d disney style cute children scream and a laugh on a roller coaster, "} +{"id": "7004911", "video_name": "4eb3fd0e-6daf-56ca-8360-b7badf108a76", "text": "an apple turning into a book "} +{"id": "0006015", "video_name": "250e344a-0e98-58cf-b4b4-bc68f1061db4", "text": "anime of beautiful girl getting off a suv "} +{"id": "2005778", "video_name": "b67363c4-76e1-5974-840d-9e6aeb0f9aef", "text": "A cat drinking tea in the grass "} +{"id": "7003959", "video_name": "ff2294fc-3d22-5291-800b-2a338ff64118", "text": "A man wearing an electronic mask due to air pollution "} +{"id": "1006964", "video_name": "7f76fd7b-e765-55d0-96d9-f11f2463c835", "text": "describe a mescelinus Squirrel named Sammy was different from any other squirrel because he had a secret. Disney style "} +{"id": "3005514", "video_name": "49363084-2c4a-5ac6-8689-417520084f00", "text": "a employee at McDonalds handing a burger with fries in a tray to a man "} +{"id": "7004766", "video_name": "f954946a-7210-5b44-a122-cf22829abc39", "text": "a tree on the garden, with apple on that tree, a tree looks denshely shady "} +{"id": "3005196", "video_name": "0f2f3f4d-894d-5844-9b10-e4838ff2b278", "text": "beautiful girl swimming clothless in a lake surrounded by mountains "} +{"id": "5001403", "video_name": "002e66f7-7b92-5cea-b64d-80b638ede269", "text": "A montage of the hybrid superheroes and supervillains in action, each showcasing their unique powers in quick succession. Lightning crackles, flames burst, and energy pulses. "} +{"id": "8001498", "video_name": "1655d611-372d-5222-bee1-13f2bcfe631b", "text": "Sun, silhouette, old man, lonely scene, lonely back, Canon camera, 35mm lens, F2.8, backlight "} +{"id": "1003944", "video_name": "48c58fa8-3e93-5aca-b40d-9cd1f5b08d60", "text": "a single leaf blowing across the screen on a green screen, like Heartstopper movie "} +{"id": "4003743", "video_name": "f5238ced-6e03-526a-854b-ec8c6440bd95", "text": "make the people move around and make the giant wheel working. also add some wind effect in the video and try to zoom in while the video goes on "} +{"id": "4004449", "video_name": "7e589fb8-abb0-5b36-91eb-8e6615c30ad8", "text": "Shakira as vintage videogame character, street fighter 2 aesthetic, ready to fight position, moving foward and backward, full body, left profile, green screen background "} +{"id": "5001368", "video_name": "510ea477-808c-5f1b-9b23-0b8e62556307", "text": "Illustrate a person sitting at a computer desk typing a search query into the Google search bar. "} +{"id": "0004429", "video_name": "08ca5086-4407-53d5-a50e-ca0c8df1a5eb", "text": "CW Flash Mixed With Batman Movie 8k "} +{"id": "0005303", "video_name": "1827ccbf-de0d-58e6-a57e-6407576e2ce8", "text": "Man in suit laughing while looking at the world from his office window, close up, super realistic "} +{"id": "0003243", "video_name": "39e4136b-4c41-5ab7-85fc-42794ebfc41e", "text": "ants walking on a car, car background, realistic, blurry background "} +{"id": "1006021", "video_name": "6ea2928b-0601-5b0f-8845-4eda0733fba8", "text": "hindi nuns in 19th century, rare film footage "} +{"id": "8002368", "video_name": "da2f0f9f-e280-56ea-89ab-fcf6bf9dae95", "text": "Generate an image of a little girl, center frame, close up shot, making eye contact with the viewer through the camera. Falls away from camera down a long flight of stairs away from camera. SLOW MOTION She reaches out to the camera. "} +{"id": "3006649", "video_name": "16b73856-9b12-5173-9d7c-4d5a4601e2e6", "text": "Visualize an image of children growing up in space colonies, looking up at the stars and dreaming of new cosmic adventures. It reflects the hope and courage of the new generation. "} +{"id": "3003108", "video_name": "b6c4b2ee-b4aa-5bfb-8980-c9e5db54675e", "text": "Iconic images from pop culture are morphed and distorted in surreal ways, fusing styles of pop art and surrealism "} +{"id": "7003269", "video_name": "3d9d5cc8-e8e8-5a69-8ce0-f0d4a19d50f2", "text": "a little girl playing drums realistic "} +{"id": "0006319", "video_name": "2a936afc-7dbe-5365-bd97-19e1d835072f", "text": "woman reading a tarot cards cartoon "} +{"id": "2006501", "video_name": "3d725239-e000-59a9-ae04-de16955de29e", "text": "A photography of girl in short hair standing in sunny seaside by Hideaki Hamada "} +{"id": "8002677", "video_name": "550f5f50-ba5c-5241-9232-733e439b528c", "text": "The wise old man, with his long flowing beard and traditional clothing, stands beside Mia, "} +{"id": "0004420", "video_name": "089f4223-ccd4-5f80-b4cd-581adac485c5", "text": "a beatiful girl and boy divorce face to face, so sad, kiss goodbye, motion 10 "} +{"id": "2005255", "video_name": "32b2ef23-e96e-51ad-b197-3f9f7ab2733f", "text": "an skull skelleton with skin of clay melting "} +{"id": "8003564", "video_name": "bc6e38b5-f6df-539a-9f60-3038b4f7ecdc", "text": "man sitting on a sofa while watching TV, moving his mouth while talking "} +{"id": "6004424", "video_name": "90b5be0c-d592-5ddc-896a-dab120106835", "text": "couple holding hands unde the moon light near sky shots "} +{"id": "0005257", "video_name": "175d3f7a-2548-56ee-b50d-3934793cab32", "text": "Once upon a time, in a quiet neighborhood, where houses line. the streets, there lived a young b. oy named Max. Max was a curious and adventurous child, always seeking new ways to have fun. One sunny afternoon, as he stepped outside to play, he noticed a lonely can sitting at one end of the block. "} +{"id": "1005576", "video_name": "66a474a0-fdea-51ba-a975-3eca6c9ac2b5", "text": "Holistic doctor talking to the viewer "} +{"id": "0003991", "video_name": "013dbc07-c200-5bb1-b00f-462dde4a6c1d", "text": "create a photo of a smurf "} +{"id": "2005294", "video_name": "7d4efb3d-0da4-5d01-a769-bd3d3dd8d756", "text": "lays potato chips, shyt flavored chips Message: 1 Attachment "} +{"id": "6004021", "video_name": "831996e2-4123-5b17-8511-cbdb42f185fe", "text": "a beautiful goddess holding a bowl of water aloft "} +{"id": "0005770", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18 years old girl without west, without dress "} +{"id": "2005551", "video_name": "91083e61-5a26-50ee-b8c1-f861a80104b6", "text": "Elysia controlling the four elements: fire, water, earth, and air "} +{"id": "6004186", "video_name": "c596571b-9be2-58e3-b8b9-663a5f1e8c81", "text": "a fire wolf howling to the sun "} +{"id": "2003304", "video_name": "1cdb5594-10de-58a8-891f-eb17d6573a3c", "text": "oil art in Basquiat style, of a complete man running after a suitcase of money, vertical movement "} +{"id": "1005273", "video_name": "60f94b4e-7da0-5830-bd89-5cf12f607870", "text": "chip at sea, crashing waves, ship bobs up and down "} +{"id": "1005187", "video_name": "5f65f838-1507-562e-b8a6-466e3157edb6", "text": "Correcting the mistakes made by big people "} +{"id": "8002713", "video_name": "a8b2bf82-ab85-5a68-a748-e7a67d515fe4", "text": "A girl who became depressed in Texas in 1883 "} +{"id": "6003991", "video_name": "b61f2f86-1e9a-50ef-8491-af2f03741c00", "text": "moving star trails in the universe "} +{"id": "3003154", "video_name": "11dde38a-cf4c-5ae9-8cc5-8426b8aaa92f", "text": "the wolf is running in the dark wood "} +{"id": "2004843", "video_name": "fc4f78de-4826-52fe-8f2a-991637b83e37", "text": "foggy forgotten city on the top of the carphatian mountains during night time "} +{"id": "2004287", "video_name": "416d1d81-94c4-596d-bfe5-390c31ff2528", "text": "staying hydrated during exercise can enhance performance and calorieburn. "} +{"id": "4003868", "video_name": "f4af9de0-cddb-534b-b9f8-d4afdfd52175", "text": "The train going to the city and its spinning wheels and people singing inside the train "} +{"id": "7003200", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "woman walking in the forest, we see her from behind, klimt style "} +{"id": "2004390", "video_name": "e04ed8e6-1fbe-5fae-bcce-de5e5bc1e8f5", "text": "a cute young girl with rainbow colored long hair and clear colored eyes,Aisa\uff0cbig eyes,beautiful,sexy,dance "} +{"id": "1003861", "video_name": "4723228f-5bd2-5d5f-ad38-beef928d2818", "text": "hooded man with fire for eyes, fingers crossed, watching over welsh castle in scottish highlands "} +{"id": "0003246", "video_name": "39f3b7d7-539c-5e3b-8966-bce2f2631a2f", "text": "the world threw the eyes of a bird "} +{"id": "7003861", "video_name": "d6ebae08-ed2a-55f2-be12-617f11e4ab0d", "text": "young man siting in the dark alone, with his head bowed covering with face with his hands. realistic camera angle looking up slowly zooming out "} +{"id": "7002643", "video_name": "be9e48c0-6e4c-59cf-b76e-caec49cd225a", "text": "an evil Oil Heating System that is a comic villan in full HD "} +{"id": "3003677", "video_name": "f2941bf0-a8dc-51b8-9a8f-2b8af02b8204", "text": "a male mechanic is fixing a bmw car motor, camera zoom in, motion 3 "} +{"id": "6002245", "video_name": "330579c6-d5e3-56c8-8ce1-59984f443f74", "text": "A man waving, with long brown hair. In the style of Disneys encanto. "} +{"id": "3003440", "video_name": "8f3fe27e-98a7-5d52-9117-4b0319a51ae2", "text": "A narrow aisle in an ancient supermarket, the shelves on fire. "} +{"id": "8003016", "video_name": "d792ab46-cd73-56b2-8d4c-29de6d7f2a11", "text": "CKPITS and Errol Hem lumbering toward the camera each glitching in and out of focus, cinematic, 8k, hdr, animation, hyper realistic, super detailed, unreal engine, 16k "} +{"id": "8003628", "video_name": "c76e5fd1-88c2-58ee-afde-0f39b5e1895f", "text": "An old man with a white beard stands on a mountain and claps his hands and from his hands lightning rises to the night sky "} +{"id": "2003042", "video_name": "dc5aec39-de5a-5953-b25a-dbbe0cc69145", "text": "an ai spiral fractal imagery movement of ninja stars "} +{"id": "7003150", "video_name": "91a7768b-ee67-500f-b941-b3fcde67823a", "text": "The Silence of Separation, Echoing in the Embrace of Solitude. "} +{"id": "2006429", "video_name": "1258ed3a-ba32-5bf7-bea4-66e3e62b534e", "text": "shiny minimalistic red colored dragon, flying over ancient lands "} +{"id": "0006416", "video_name": "2bfab11a-72a9-5739-bad9-7ecf44458a50", "text": "foreigners come to Yuanming Palace, seeing the magicficent ancient buildings and fell like a fairyland "} +{"id": "8001938", "video_name": "d33fe45f-d2e5-596d-8c67-73feb43c9cfd", "text": "Time lapse of the collapsing Tokyo cityscape "} +{"id": "0006035", "video_name": "256a7450-7c2f-589a-ae4f-df6d9e776714", "text": "rapper turns into super hero Message: 1 Attachment "} +{"id": "0004048", "video_name": "023d602e-f556-5bc0-8cc2-494fb2bbbc67", "text": "Leo Tolstoy in cyberpunk world writing on tablet blade runner scene "} +{"id": "1003378", "video_name": "3e474b85-bd0e-5c69-8709-d0f44727a311", "text": "A door slams open as wind gushes through the air "} +{"id": "0003474", "video_name": "3e423cdc-8f55-5018-84d8-846a93664735", "text": "an an animae demon rising from a lake of fire and brimstone. "} +{"id": "6003536", "video_name": "9d8313e4-54c0-575c-be81-16d2f7e47d7f", "text": "koi fish swims in the ocean anime ghibli style "} +{"id": "1004016", "video_name": "4a6e0f0a-b640-524b-9f5a-04a142b1230a", "text": "a cute girl making coffee in the bar, gorgerous and delicate, white long hair fluttering, the coffee boiling "} +{"id": "2005957", "video_name": "6f3d6714-ad72-5cb4-9982-7498b027eac5", "text": "The Windows of the power plant glowed blue at night, surrounded by forest, looking down Message: 1 Attachment "} +{"id": "3006648", "video_name": "1b583120-dd57-532c-959a-a7e5ddcfcd16", "text": "a robot walking through a battle field "} +{"id": "1005730", "video_name": "69678951-8986-5f9a-9629-583d2e086776", "text": "But the balance was broken. Pollution devastated this paradise. "} +{"id": "0004123", "video_name": "0397e6a0-67ba-5aa0-8985-f6557da88601", "text": "make something similar Message: 1 Attachment "} +{"id": "4004971", "video_name": "d3a28591-5d6a-51f6-ad9f-db752ada66f3", "text": "nice cartoon girl with brown hair waits for husband, cooking delicious meal and thinking about love "} +{"id": "3005820", "video_name": "f8eae8de-e851-5fd8-a653-250afc0864bc", "text": "animation of Animation of a very dark room that suddenly turns on a lamp and the room becomes bright. You see a couch and a table and a woman sitting and reading "} +{"id": "5001414", "video_name": "0d680760-a6ac-52a3-bfd8-9e106f9081b9", "text": "A vibrant and energetic man, radiating vitality and joy as he performs his yoga routine on a secluded beach, with the sun setting in the background. "} +{"id": "8002888", "video_name": "7e8afede-3dda-525e-97b2-a7d99c0022ab", "text": "Realistic handcam footage of a UFO crashing into a building "} +{"id": "3006241", "video_name": "49aafd72-bb1c-5b35-8486-137c10353b90", "text": "one tractor in a farm in a plantation of corn with cows around, realistic, 8K, HDR, cinematic color palett "} +{"id": "7003807", "video_name": "08747f46-1fd4-5b67-b46a-b66d3153f8a9", "text": "The fox goes to the man and eats a bone "} +{"id": "6003872", "video_name": "1c4daed0-3bfc-57ae-b7b3-7ae6d0b043c2", "text": "3d Lemmings video game characters mining "} +{"id": "0003868", "video_name": "44eb5f51-450b-589d-bd83-3ad4fbe11840", "text": "6 Ways to Improve wireless charger coilFunction "} +{"id": "4004613", "video_name": "a736cf34-4c8a-5d75-bd9d-9b8556e18607", "text": "Peter, who listens to Jesus and throws a net "} +{"id": "5001934", "video_name": "57e73731-0585-540a-a9e4-a460d10ce2af", "text": "Guy in baggy sweat pants and hoodie, sitting at the lake pier, fishing town on the lakeside, loose rocks as the shore, dusk, detailed scenery, 8k, studio ghibli, golden ratio, fake detail, trending pixiv fanbox, acrylic palette knife, style of makoto shinkai studio ghibli genshin impact james gilleard greg rutkowski chiho aoshima "} +{"id": "1005071", "video_name": "5d943b61-580f-55d9-a37a-9db4489b8d97", "text": "It springs to life through hyperrealistic imagery and meticulous scientific photography. "} +{"id": "2003983", "video_name": "6b684cfd-a2c3-5950-9fdc-a05e63e51aef", "text": "Create a video of a man surrounded by holographic screens, casting digital spells to immerse themselves deeper into a web of control. "} +{"id": "4003451", "video_name": "77e17d1e-dea9-5b3f-8de1-b7932fd1d052", "text": "giant roblox character destroing a city "} +{"id": "6003420", "video_name": "6f611223-795f-5980-890f-0698220115b7", "text": "Black and white painting, people and dragons Message: 1 Attachment "} +{"id": "2007077", "video_name": "c421101d-e9fa-5bb7-bd12-e1e52f464e7c", "text": "An anime character in the middle of a battle, with his fist retracted for a powerful blow. His opponent is on the defensive, bracing for impact. "} +{"id": "5001374", "video_name": "224ee1cf-4753-5034-8486-bc008445c0e1", "text": "the little boy in hand have cute dog "} +{"id": "2007045", "video_name": "a771543e-5d02-58e4-9f71-553dd3da9ed9", "text": "A person reaching for a phone in a dystopian city "} +{"id": "6002387", "video_name": "d432d913-17df-566e-893a-2046370bdc1b", "text": "25ft bertram sedan. hyper realistic, plowing through huge waves at nights "} +{"id": "0004908", "video_name": "113f9142-467f-510b-a766-676b40d8f27c", "text": "Once upon a time in a small coastal town, Emily, a talented marine biologist, crossed paths with Jake, a passionate surfer and artist. Their connection was instantaneous as they bonded over their shared love for the ocean and its mysteries. With each passing wave and sunset, their feelings for each other grew deeper, like the tide pulling them together "} +{"id": "8002522", "video_name": "ad2c1825-b64e-5fc1-9727-751147dca726", "text": "old Turkish man sitting in a tea house "} +{"id": "1003219", "video_name": "3b4f4baf-5715-5b76-8c73-f2f84e14eb29", "text": "haute couture fashion show with flowers and garden themed dresses. include 10 female models with long dresses. incorporate flower petals across runway in a classy way "} +{"id": "0003069", "video_name": "3662e28d-bcff-5275-ad15-74b635734ac2", "text": "a tree of money grows inside a prison cell "} +{"id": "7004023", "video_name": "15f65ac4-51dd-5221-a389-7683ce5e47ba", "text": "a realistic video based on Pride and Prejudice "} +{"id": "7003833", "video_name": "c0e717a6-cab2-5fae-8659-b05571874803", "text": "A smoking rasta Who is reaching the nirvana. First he is in a sofa of the room anda after he is flying in the Sky "} +{"id": "1005921", "video_name": "6cc2bd3f-e0c7-5109-a59b-c68dcf15ef39", "text": "The day I let it go, it all started "} +{"id": "3006179", "video_name": "18ee4515-629a-5e30-bf93-e626be9976b6", "text": "best quality, disney style, light effect, girls dancing "} +{"id": "1003575", "video_name": "41e89ad0-6f59-5e34-ba11-d95d0162d760", "text": "Alex and Rachel sitting in their living room, watching the news on TV. The atmosphere is tense "} +{"id": "0006991", "video_name": "365c5514-b35d-5801-9107-b627bf280866", "text": "panda dancing in the modern kids playground "} +{"id": "6004114", "video_name": "b260e54a-3a41-54f9-b16c-a8d7310ccaa1", "text": "futuristic mystical school a girl is running to the classroom rushing to her desk 4k "} +{"id": "8003579", "video_name": "0f7ea8d6-fdc0-53ea-b59e-cf959cd4986a", "text": "Front view of Accountant on flying calculator futuristic skyline golden hour background "} +{"id": "8002717", "video_name": "d2fc412e-cca5-5278-a670-232f1f4a6292", "text": "large abandoned living room, full windows, grass on the ground Message: . (Font: MODERN) "} +{"id": "2005948", "video_name": "c4a991c5-bfdc-5024-9bd8-16a65d9ff78a", "text": "a big dog , come with number 18 and 30 "} +{"id": "8001087", "video_name": "a5c6c706-c369-5acd-b19e-b1ed5771a091", "text": "Much has been discussed about the fate of the Scorpion. Did some malfunction lead to her sinking? Was she attacked, or did something happen onboard? "} +{"id": "2006130", "video_name": "fb0aa621-8c09-547c-9ed5-fb5e4b68cc09", "text": "On the football field, the boy wears beautiful sneakers. HD anime. 4K "} +{"id": "0006909", "video_name": "352e7cc2-a4d2-53fc-9ef6-18d93938f5e0", "text": "a deep space scene that is 1920x1080 vertical, stars, particle clouds, iron, hydrogen, helium, carbon, vibrant "} +{"id": "1004819", "video_name": "591071c2-e477-5131-a4a8-c3c7f81ee847", "text": "A chocolate block melts in the sun "} +{"id": "6003188", "video_name": "e389ef55-4daa-5cac-af0b-df94d145915e", "text": "boy and girl setting in park ,cinematic "} +{"id": "1003693", "video_name": "440e35ab-92c0-5aac-ba2c-62f60d0c3775", "text": "table with healthy food, fruit, grains, snacks Message: Tovah (Font: MODERN) "} +{"id": "6002904", "video_name": "1f94d587-cd77-5955-8b8f-5e22a0aaa098", "text": "a winter city night with cars going on a highway and small lights are switched on "} +{"id": "1003276", "video_name": "3c48ebc8-d460-5cd2-bf8d-5e70028a799c", "text": "A robot that talks and walks "} +{"id": "2003616", "video_name": "08271b86-88d8-525a-9d2f-1fcef4bb0961", "text": "cinematic Yoda walking through imperial valley, incredibly lifelike and photorealistic, with subsurface scattering, path traced lighting, specular highlights, and reflections, shot on Arri Alexa 65 with anamorphic lens "} +{"id": "6004677", "video_name": "053c10bc-d55e-5ebb-b0fa-6343057156f4", "text": "People flying in the sky, rapid camera rotation, clear sky "} +{"id": "0004212", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "Roronoa Zoro standing up from the ground and turning around with a deep wound on his chest in the style of anime "} +{"id": "5001588", "video_name": "bbca0485-ee6f-5b58-a53e-a2b42f1fac90", "text": "a Renaissance painting of a pineapple in a frame, the frame is dripping blood "} +{"id": "0004887", "video_name": "10f4a091-9f60-5daa-977d-2c998ba44f21", "text": "3d man with big eyes and smile holding a vacuum cleaner, open house door, saleman, 3d animation "} +{"id": "1006179", "video_name": "711879eb-7dae-5909-bb5e-0df0e3221436", "text": "high speed train travelling at high speed in a white mountain "} +{"id": "3005629", "video_name": "45142bae-fb5b-51d8-8a50-382a2d8bba95", "text": "zaha hadid coastal beach cottage balcony sunrise "} +{"id": "8003802", "video_name": "69cee77a-0a53-51d2-bd7c-15cdcca66438", "text": "a hand drawn cartoon skeleton walking, style of 1950s cartoon, technicolor "} +{"id": "6004231", "video_name": "6a28c571-dca2-5bf1-8217-41142315b470", "text": "villagers met gruesome fates, mirroring their nightmares "} +{"id": "0003794", "video_name": "4381de89-6aed-5460-a7a0-2481f2cd6820", "text": "1990 black and white, Micheal Jackson performing on Stage "} +{"id": "7002820", "video_name": "cf23a0a4-7d8d-5dbc-a733-e65266d8d2d8", "text": "universe dreamy awe inspiring landscape moving, shot from the space "} +{"id": "7002384", "video_name": "37b1072c-b486-5c5c-9082-28574078a6d7", "text": "forensic science, its type and its history "} +{"id": "2007596", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "green cat is flying under the brown table "} +{"id": "2004956", "video_name": "6aa63f3d-37d6-5c0b-8ec5-e07b18ea0520", "text": "house hud blue print motion detection, Virtual Surveillance,security,hd,digital,ai,16k "} +{"id": "3005099", "video_name": "68c42994-d66c-5056-bedc-1284a6ba8319", "text": "a running girl near the sea "} +{"id": "2005854", "video_name": "5362b1c5-efc2-5ddc-8fa8-525f95263382", "text": "a world where you can see plants up close, waterfalls that run in the opposite direction, flowers that glow "} +{"id": "1005121", "video_name": "5e67bd55-6480-575e-b299-550971a8a717", "text": "a man walking on the beach and enjoying the sounds "} +{"id": "6003301", "video_name": "54543516-297e-5f7b-a85c-aec1ce648e7f", "text": "night city slow driving on mercedes "} +{"id": "0005209", "video_name": "16a130b0-4954-5929-876c-42b266db1a90", "text": "reveal thats the friends mysteriously disappeared out the mansion. "} +{"id": "4003752", "video_name": "64715800-0c18-511a-817e-cc84b514dbd2", "text": "a man holding a gun running in the corn field "} +{"id": "6003446", "video_name": "cdfdc1c7-dd09-529c-9092-7ec68b80e625", "text": "dog going to war holding m416 4k resolution 16:9 "} +{"id": "1005374", "video_name": "62daced9-ae76-5c7c-8049-1c524353bb21", "text": "multiple asteroid falling on earth like a rainfall and all the humans are running with fear "} +{"id": "0006573", "video_name": "2ecd4b51-7601-5c90-b2e7-1e682c121e77", "text": "A divided puzzle, with pieces scattered and disconnected "} +{"id": "0005941", "video_name": "238cd979-6cee-5356-b59c-9bd1e7197174", "text": "pastor worshipping God and facing the heavens "} +{"id": "8003984", "video_name": "b4b45095-55b6-5307-a84a-478a066e286e", "text": "Its fur was as white as snow, and its mane sparkled with colors unseen before., zoom in "} +{"id": "8002747", "video_name": "24066d74-c561-57c1-94e5-feecfcb2115f", "text": "john smith is looking at camera "} +{"id": "2007884", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "enhance the image, color it, and put it in a sunny landscape Message: 1 Attachment "} +{"id": "3006998", "video_name": "0cced93f-932b-528e-878f-98666afcbadb", "text": "a stick figure with the background moving from mountains to flat land to a house, cinematic 20 seconds "} +{"id": "6004985", "video_name": "e5ca7528-94f2-51d1-9e6b-21e46d195922", "text": "sunny day , grassy plain landscape , visible wind "} +{"id": "2007592", "video_name": "f5307571-78fe-58e3-b6f2-2bd1d2d4ee9f", "text": "adam driver being hit by water wave "} +{"id": "2003076", "video_name": "a9e536fe-4056-58ac-8da0-23c2d67f9c9d", "text": "a dark hero moves through the shadows, moody, noir, animated, motion 4 "} +{"id": "6004719", "video_name": "e44584ad-70d5-5d95-b0ff-ed59809a81c8", "text": "Make a video about gift certificates to the Design Academy "} +{"id": "2007750", "video_name": "d133da22-cc89-5707-8eec-045433867afe", "text": "night motorcycle races, 3 motorcycles, the pipes are on fire, the camera follows the riders, 4K, realistic shooting "} +{"id": "8003404", "video_name": "5330ca10-8f95-5b6a-9c91-2276758b26a1", "text": "a little girl running over the globe with japanese tree on background, fantasy anime "} +{"id": "5001432", "video_name": "d858eb7f-1ef4-5a59-a960-733484b1fcc4", "text": "a cute animated bear sitting on a porch drinking hot cofe and injoying sunset "} +{"id": "7004039", "video_name": "db075806-1990-55e2-a275-1d0e8902c7f2", "text": "jimmy saville in a Frutiger Aero world "} +{"id": "6002261", "video_name": "40928624-cb71-5733-85f3-b8bc8ee12824", "text": "a boy sitting on the toilet and watching his phone "} +{"id": "4003979", "video_name": "545bf168-7c16-584a-ab49-fd2e898b43d5", "text": "india 15years old kid got superpowers from a fallen star to earth "} +{"id": "4004344", "video_name": "48f4babe-c1fb-5650-b6ee-2cab214709d9", "text": "cinematic night time scene meteor shower bright spark "} +{"id": "1003234", "video_name": "3b8a7a2e-d0af-56ec-a2b0-4e525366a4be", "text": "Grass flowing around red flowers on a dystopian mountain side "} +{"id": "4002210", "video_name": "99549387-f540-57bc-b7a6-32c2ad0bebf8", "text": "Scarecrow doll playing the electric guitar on a stage with the Metallica group iper realita drone view and in 3d "} +{"id": "2005937", "video_name": "66681b46-e4a9-5028-bf73-1b3057bc6ca1", "text": "slightly skull shaped meteorite flying in space, rough style, scary "} +{"id": "6004499", "video_name": "988787ab-7f5b-563f-b469-39556b6b3132", "text": "a giant watermelon is exploded by the shot of Merkava tank, very dramatic scene, gunpowder smokes and fires everywhere "} +{"id": "5001786", "video_name": "f1cabc29-af57-52a8-8928-f5aeada0bb92", "text": "evil black cow close up, old video, 1970, realism, Blair witch project movie style, the ring movie style, horror, focus, details, chromatic, ghosts, old film, camera pan left "} +{"id": "6004882", "video_name": "26513be1-af67-57eb-9d8d-910684aa774f", "text": "realistic video of the educational process, a successful recruiter transfers his knowledge to young recruiters! "} +{"id": "3004941", "video_name": "65afd63c-529c-568a-b4f8-6e063e322c3f", "text": "lush green back ground, water under rocks, water is flowing, leaves are moving, 3d animated, pixar style, disney style "} +{"id": "0003877", "video_name": "45091500-d0aa-5c87-ae66-5ef8624729b7", "text": "A sales video to promote cryptocurrencies. Duration 20 seconds "} +{"id": "8001148", "video_name": "f20ca0f8-0e6f-5826-b023-989f5b583f2a", "text": "a texture made of white fur waving in the wind "} +{"id": "0003778", "video_name": "432e2437-b3e3-5ece-ba16-b660219634b7", "text": "shrek standing on a pierce near river, green treas on a background,4k, living "} +{"id": "1005337", "video_name": "620161de-b07b-5672-b846-b93a2833a323", "text": "real cinematic explosion on a city street at n8ght "} +{"id": "3006423", "video_name": "fe15f880-ab20-5b0a-ad1b-6b94f8e97bba", "text": "Show the sudden appearance of a wise monk named Ciming, who enlightens Peter and guides him towards the path of righteousness "} +{"id": "0004910", "video_name": "114d665c-c744-5036-a872-6215df5c23a9", "text": "fantasy dark forest, girl with black hair in a red dress "} +{"id": "8003589", "video_name": "4c412aa1-ef0b-5586-b1eb-01fc5e321dc9", "text": "boy, 12 years old, brown hair and eyes, smiling because he has just made a purchase online "} +{"id": "5001775", "video_name": "f905f8bd-3a4d-52bd-90f1-ce826c3fe9b0", "text": "water flow slowly and swimming fish "} +{"id": "1004993", "video_name": "5c4411a3-b7cb-5bfd-b295-60ba82d1df1b", "text": "A lone tumbleweed rolls lazily through the scene, as if searching for something. 16:9, cinematic, deep shoot, realistic movie, Tarantino colors. "} +{"id": "8002606", "video_name": "a7ad5587-d596-568c-9490-513b70732a0a", "text": "organic machines pumping a heart in a jar "} +{"id": "4002443", "video_name": "aca2a712-dbb8-5acb-90d0-0170a5a6ff41", "text": "9 deer flying in a blizzard like birds across the landscape "} +{"id": "2006156", "video_name": "12c49326-121a-5be7-8d05-a8f6181a3ce0", "text": "Car driving on a rugged mountain road in Siberia "} +{"id": "3005229", "video_name": "ee8f8352-b904-504c-9f58-b7076cf03c5e", "text": "profile image for a webpage called MindfulHarbor, calm, scientific information, beautiful, profound, cinematic, cute "} +{"id": "5001896", "video_name": "5dfe6dd0-fcb3-53cb-9070-00146ea823ec", "text": "video of two people falling in love, having troubles and rekindling "} +{"id": "3006320", "video_name": "21fbfb38-1270-5e26-a9fd-cde61362ec00", "text": "blind anime man tryying to cross the street "} +{"id": "2005452", "video_name": "01ab336f-cab4-5a25-ae7d-452e369055e6", "text": "A robot host is commentating a game in a huge stadium, with elements of technology, cosmic elements, metaverse, and future city,cinematic "} +{"id": "7002413", "video_name": "65a7b5b5-e0e3-5ba5-98d6-6176ae8624b2", "text": "housefly eating food on dining table,real life,mini, "} +{"id": "2003366", "video_name": "08c893cb-5960-58f9-a8a4-717a2b971cd5", "text": "streets and alleys of Karachi with lots of people walking "} +{"id": "6002091", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "FUJI mountain with blue sky and some clouds "} +{"id": "8001323", "video_name": "6324f735-3568-5a6d-af8f-7c5834d592fd", "text": "Generate a video of a graceful jellyfish floating in the water, still in 3d rendering cinematic view "} +{"id": "4003997", "video_name": "ca4c7f23-edba-52d9-bee6-3886eba08dc6", "text": "stylish woman, tv commercial style showing her sneakers and look on a street with busy "} +{"id": "0005234", "video_name": "1710f931-c6c2-5183-9b30-0d587d0b8e3a", "text": "An animation of a woman with brown hair, blue eyes, a red tank top, with a lot of acne on her face, a little scared and an image with no background "} +{"id": "2006566", "video_name": "62af60dd-2a57-599a-b0d7-8488f15bdaab", "text": "spaceship standing on the surface of the planet and opens the door from the ship and white smoke pours out of the ship, photorealistic, real view, unreal 5, ultra HD, best quality "} +{"id": "7002725", "video_name": "1463a604-6814-599a-bdcb-d323a06f99b6", "text": "vhs effect, 1910 of hot air baloon, grain video "} +{"id": "2005572", "video_name": "1cc7f8f1-5b49-51c4-9be5-456e14f979c8", "text": "woman in car accident, 1980s, horror, film "} +{"id": "0003972", "video_name": "00eb9809-e174-5dda-b11a-5ee9344b3552", "text": "Couple with about to enjoy chocolate fondue "} +{"id": "3004298", "video_name": "0eae0c0c-ae90-5de7-93a2-722bbbfe1e40", "text": "Design a serene fountain set within a Chinese garden, with water cascading in an artistic and cheerful manner. "} +{"id": "4004025", "video_name": "67bc2fc3-9b18-5ed6-92cb-787a4422ac28", "text": "a video of a mouse getting launched into space "} +{"id": "3006565", "video_name": "bc05ade2-0a17-5a35-9ca1-f938a8c51f48", "text": "scenery shot, dolly zoom forward, in the style of 80s horror films "} +{"id": "1006242", "video_name": "725430b8-3daa-5797-9434-fa291fa539a9", "text": "Discuss the role of destiny in bringing Rahul, Arjun, and Vishwas to the thief. "} +{"id": "2004565", "video_name": "77cfd374-bb1a-569c-9430-1de953e62149", "text": "Lost, a depressed poor Message: 1 Attachment "} +{"id": "1005588", "video_name": "66d409d4-fe06-549c-91d7-81f6489ef5f8", "text": "very hard war between aliens and people "} +{"id": "0006251", "video_name": "294b5f87-a253-565e-873c-e2a0160a1607", "text": "a picture use for head profile photo as a tea trading company "} +{"id": "0005201", "video_name": "168c2d2b-d829-5f83-92d3-72abfbacf34d", "text": "I got my gang of princesses what you going to do tanting "} +{"id": "3005176", "video_name": "947eeb9b-c566-5891-8ef8-fdaf7773a18b", "text": "cat lying in sunshine Message: new zealand (Font: BAUHAUS) "} +{"id": "1005675", "video_name": "683d686a-28aa-5c7b-b2a9-a36a122f573c", "text": "weird al yankovic playing accordion in africa with animals in the background "} +{"id": "3005861", "video_name": "56cc52d9-4954-5a50-97e4-41caecc4ad04", "text": "Establish the setting of a bustling Zurich train station, filled with the excitement of a high school trip. "} +{"id": "2006255", "video_name": "f7d1f817-7c3e-5ac3-bac1-b660b659e3a6", "text": "thousands of birds flying on the in the beautiful sunrise "} +{"id": "6003207", "video_name": "09357fa0-f8c2-5f5c-8b14-e65fd9027ef7", "text": "women following a guy with one eye "} +{"id": "3003866", "video_name": "7feec13d-0af8-5280-9960-52a179549997", "text": "in the video the phases of moon "} +{"id": "7003063", "video_name": "4473255f-e09f-5cf8-b121-ea2938fbcb5a", "text": "fast growing miniature city from white empty space, blue background, time lapse "} +{"id": "8002901", "video_name": "528705b4-b9d4-59b9-8313-147a94266951", "text": "The team members of a house with a little Bear expedition include: Little Bear with brown hair and a blue hat, little rabbit with a white rabbit and big eyes, little cat with orange spots and a red hat, and little dog with short black hair and a green hat "} +{"id": "4002234", "video_name": "9ada1f7a-cbeb-574c-b689-d070244f1fd7", "text": "A female soldier crew talks with a Male Scientist wearing a metalic helmet, in a futuristic yellow street, wire and cables plugged onto the metalic helmet, movie scene from 2001 space odyssey, cinematic, extra detailed scene, stanley kubrick, retro futurist "} +{"id": "3004828", "video_name": "203c00b7-1172-50d2-9b78-514476d5d3f4", "text": "a Star Wars racing pod racing through a canyon in high speed "} +{"id": "0005231", "video_name": "1706a5ab-f3f7-5873-9def-d48a3639c5c7", "text": "big spiders walking inside humans mouth while sleep, ultra realistic , macro video , highest quality , cinematic view "} +{"id": "4003099", "video_name": "01402438-0d68-508a-9c1b-73f166917047", "text": "a Pixar style dog is running through a farm in Illinois in fall time "} +{"id": "1003258", "video_name": "3bf71748-a9fb-51a5-a106-ea9440516274", "text": "vintage 8mm footage of a man shaking hands with a creature in a lab"} +{"id": "3006982", "video_name": "ad324b87-bf75-5d39-a34f-0c7597d62361", "text": "reel to reel tape player playing tape made out of seaweed "} +{"id": "2004364", "video_name": "31a2b1bb-fac6-58b5-b4cf-e8e8b9ec0fb6", "text": "Ukrainian poetry during war, with maximum realistic "} +{"id": "1004009", "video_name": "4a2c44fa-4d5d-5e48-9801-a5a712a92c27", "text": "that a person is seen quickly entering the school "} +{"id": "4002339", "video_name": "552a2baa-e91e-5f60-8435-6cfd1d27733e", "text": "a huge city primitive city nestled in the rainforest destroyed in call Portuguese from the colonial period in 17th century Brazil, epic, cinematographic, 4k long shot, magical light, magic, inspiring "} +{"id": "6002342", "video_name": "5b6192d4-04e5-5f83-9e57-7e159694baa5", "text": "National leaders from various countries discuss national affairs at the roundtable meeting. "} +{"id": "1006125", "video_name": "704ec035-dd66-5aa5-901c-99a75799ee49", "text": "south park style animation of godzilla attacking NYC "} +{"id": "7002303", "video_name": "695577ac-07bc-5a02-8ff6-09a8165574c3", "text": "a woman rising out of a lake "} +{"id": "3003772", "video_name": "a986a43c-e02c-5556-8016-8f80d2aad892", "text": "megalodon with huge sharp teeth in 360 view "} +{"id": "2004435", "video_name": "cdd66f2d-4b68-5162-9588-b13640460a92", "text": "The Judgement of God in heaven. From the bible. "} +{"id": "3006417", "video_name": "6177cf48-a99f-5abd-96fc-922129c425be", "text": "a video of a first person view motorcycle ride through twisty roads "} +{"id": "0006916", "video_name": "354e5c14-527d-5afa-b536-eea23445dcd6", "text": "scary granny creeps through the garden of paradise "} +{"id": "1005068", "video_name": "5d90cb4c-3d0c-551e-bd65-b4b4a7a5d846", "text": "3 boys and 1 girl . its night . they are looking at camera . they smile . they are cool . 4k with high details . Message: 1 Attachment "} +{"id": "2005283", "video_name": "aa43f410-de9a-5f82-8bcf-e86a9c41b062", "text": "encrypt it in a sky bachground Message: 1 Attachment "} +{"id": "4004444", "video_name": "0d359eae-7268-5100-81c4-dbd73d93f70f", "text": "dvd screenshot 2001 vhs camera realistic girl in the distance walking trough the feilds next to woods "} +{"id": "2004461", "video_name": "3bb27c59-fea0-5fff-a90c-7bb288b3c58d", "text": "A beautiful Chinese woman blinked her eyes and shook her head vigorously "} +{"id": "4004706", "video_name": "a2839056-8107-541a-8cae-e84c88facc4c", "text": "a Japanese car is driving in rainy Seattle at night time "} +{"id": "8002625", "video_name": "004077d4-0b46-509c-b8cf-e8afc54c74d5", "text": "black BMW M5, shooting is carried out inside the car, the steering wheel, dashboard and interior lighting are shown 8k "} +{"id": "6003879", "video_name": "e4399e84-2e09-519d-a639-3b4484a6c251", "text": "love animal is cat so sweet dreams "} +{"id": "3003528", "video_name": "489be238-828d-5ea6-9271-84aa085ca983", "text": "hanuman flying in sky with dialouge jay shree ram "} +{"id": "2007629", "video_name": "3d8b4a6a-eaa5-5c41-b93e-f824eb6c4265", "text": "Captivate readers with a story of two sisters clad in hijabs, flaunting their impeccable sense of style as they strut through the streets with luxury shopping bags in tow; paint a picture of affluence and sophistication with this image "} +{"id": "2003098", "video_name": "607e7035-fb72-5a28-9293-953e9c109b79", "text": "Harry potter in the gryffindor common room, in the style of ghibli, award winning anime movie "} +{"id": "2003761", "video_name": "943d5930-2279-51f9-9c6a-43e652f8a6b7", "text": "create a video with that immage in Landscape Message: 1 Attachment "} +{"id": "1006155", "video_name": "70b4ced8-2c23-5c9a-8032-a8584f58305f", "text": "The Majestic Flight of a Monarch Butterfly "} +{"id": "2003970", "video_name": "6a355c4d-e74d-5548-b988-11769e131e4a", "text": "Big Nutbrown Hare and Little Nutbrown Hare are sitting in a green meadow. "} +{"id": "8003149", "video_name": "783a1534-7589-548b-95b1-987b038ff740", "text": "two black cat fighting\nHorrer view "} +{"id": "7004907", "video_name": "099de4a8-e219-5bce-8769-156f59074268", "text": "elon musk having fight with mark zuckerberg in the forest with thor hammer and catain america shield "} +{"id": "1005450", "video_name": "642424a4-3bd6-56b4-854c-ae26d29433b7", "text": "a professional storyteller sitting in a chair and telling a story "} +{"id": "0004430", "video_name": "08cc13fa-de28-555d-b664-443bc969a473", "text": "hair oil ad in jungle background with male model walking and showing hair in style. "} +{"id": "2003476", "video_name": "5a663bd1-1648-5837-a34e-18d183600263", "text": "daughter from interstellar movie in 80s dark fantasy style "} +{"id": "0003542", "video_name": "3f3d8bc9-4585-5d97-a35c-218f2cfe46c4", "text": "video clip of a synthwave song in thessaloniki greece "} +{"id": "6004897", "video_name": "a6fc7ef4-89a2-515a-9330-ee637cb85f31", "text": "an anime style explosion in the background while a young man watches "} +{"id": "7003259", "video_name": "726046a2-80cf-52e8-b41b-98d286d90136", "text": "man clicking photo of damaged car at night "} +{"id": "3006464", "video_name": "d3bea725-52d4-5f78-8bc6-c1bf8bcd75fc", "text": "walking through a empty street on a town in a cloudy sunrise, cinematic motion 4k, 16:9 "} +{"id": "6004485", "video_name": "229d44b8-0c10-5c2b-9105-6ec9c6fe35c3", "text": "chinese guy and a bottle of parfum "} +{"id": "7004522", "video_name": "d873dff1-3562-5732-9dda-962835b95b28", "text": "Dwayne Johnson as a Disney character running towards Obama. "} +{"id": "7003234", "video_name": "dccd9b0b-b950-5588-a782-e5b5f1320d65", "text": "Thanos and Iron Man drink, Black Widow laughs "} +{"id": "2003481", "video_name": "3ed46737-47e1-5fed-9f09-e464fb22f47e", "text": "a rapidly evolving mandelbulb alien menace "} +{"id": "2006237", "video_name": "9a8f4a10-3dbb-52b7-8abe-03b5a25b8319", "text": "Make a star trek animation of about 30 seconds "} +{"id": "6004097", "video_name": "c1cb6a45-ceac-5c54-b277-e0353e54901c", "text": "merchants enthusiastically display their trade goods, including gorgeous silk and exquisite porcelain. "} +{"id": "1003834", "video_name": "46bd8b56-ba27-5eac-aeff-db420b5b3207", "text": "a dancing polar bear, zoo background, 2d cartoon "} +{"id": "8001302", "video_name": "7142851e-8e21-581a-bc49-7cddebb0f983", "text": "In the quiet corridors of our high school, where shadows whispered secrets and laughter echoed through the empty halls, "} +{"id": "1005919", "video_name": "6cb9cccd-7cd4-5d77-9023-4e6ebe2263fd", "text": "white snow queen movie 1970 vibes "} +{"id": "3004783", "video_name": "b92f5f74-374a-5bf1-a6f6-539cfb540ad4", "text": "President Barack Obama DRIVING Rolls Royce Phantom "} +{"id": "4002823", "video_name": "3f856771-1b65-5c6b-a10e-4c017a4ce049", "text": "Bladerunner style, wide drone shot about 20 meters above the ground of a lonely guy smoking a cigarette looking at the neon planet from top of a cliff and sees hills and mountains, glowing lights, photography, sad, alone in entire planet. Make it dark, only silhoutte of the guy can be seen. Also add his car beside him "} +{"id": "4004707", "video_name": "57547dc9-cb34-5cb9-8404-234d6d1914ca", "text": "IT guy working on a laptop inside room, neon lights at night, we can see windows and street. Camera slightly moving left "} +{"id": "3004862", "video_name": "9f48fe08-057c-5841-837b-04cc817e1a84", "text": "green morphsuit turning into computer code "} +{"id": "1006065", "video_name": "6f52c870-c140-55e5-b88e-0ca0124254d8", "text": "1 turtle and 1 rabbit are holding school bags "} +{"id": "0005264", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "Wounded and bleeding Tony Stark see Peter Parker holding his daughter and smile "} +{"id": "3006686", "video_name": "1d535079-1c29-51b9-ab85-b588d66d2699", "text": "The screen is enveloped in the shroud of night, the darkness broken only by a faint glimmer of moonlight. From the edges of the frame, a thick, foreboding mist begins to creep in, like an ethereal veil draping the scene in an air of mystery. "} +{"id": "4004682", "video_name": "c7b6a45d-1656-57cb-a92f-b9516ebfe39a", "text": "An illustration showing the correct posture while sitting or standing, emphasizing the importance of spinal health. "} +{"id": "7003313", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "gungnir spear flying in the sky "} +{"id": "8001717", "video_name": "310d070d-7a5b-59a3-bd63-6d23a40acfec", "text": "basil hummus, presentation, professional photography, 4k Message: hummus (Font: MODERN) "} +{"id": "0004104", "video_name": "03440f32-5c96-5acd-9c17-f6604196168e", "text": "indian dress as mariachi playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "2005868", "video_name": "1852469b-1a8f-5445-a7d4-20207cae8ddf", "text": "plastic blue toy corvette driving fast, stop motion style of henry selick "} +{"id": "3006801", "video_name": "f9b61657-8825-56c3-ace4-a08a96512a11", "text": "half field half sky background, girl at the first plan, girl wearing purple balaklava and red cap above balaklava, full head balaklava, sunglasses above cap, sunglasses not covering eyes, 8k "} +{"id": "0004455", "video_name": "0958f9e1-cbe8-5bbb-9308-6da35dc258e4", "text": "Establish the peaceful village on the edge of the enchanted forest. "} +{"id": "6002049", "video_name": "5e84b12f-773f-5d6c-a956-d2c5c191d0d8", "text": "footprint on the snow and then the memory of children walking and playing here "} +{"id": "8003956", "video_name": "cbb6fc57-1b6a-5dc8-9eea-77ef1df60ce8", "text": "Mexico on the map Message: Healur (Font: MODERN) "} +{"id": "4002987", "video_name": "683a9c3e-969c-53b2-8698-af55d2051bf9", "text": "red monster running towards the camera, 70mm, cinematic, bokeh, explosions in the background "} +{"id": "8003908", "video_name": "b621a415-6feb-53a2-85c8-b66e864fed30", "text": "hell background, realistic, flames Message: Zii (Font: MODERN) "} +{"id": "8003030", "video_name": "1a7655c2-1acc-5a57-bf72-320daff446aa", "text": "an Amanita mushroom growing from the ground in a forest with a quick pan camera movement "} +{"id": "6004824", "video_name": "7cf5dc79-0779-51d1-95ea-39b00fb660a9", "text": "a robot movie trailer about 30 seconds "} +{"id": "8003349", "video_name": "9b09dfbc-1951-5e52-94b4-f9bcab8bbf70", "text": "anthropomorphic wolf wearing medival knight armor dueling in a sword fight, cinematic, back lit, parallax, 40mm, moody, 4:1 contrast ratio "} +{"id": "6003863", "video_name": "423d9f92-fbc8-5944-b578-e3bb71547e65", "text": "men with mas, with hat, green light, vhs design "} +{"id": "6002719", "video_name": "9d38806a-1832-51a5-bb70-69ce2791929a", "text": "Vintage toys moving at Christmas in a 1950s toy store in a 1950s animation style. "} +{"id": "7003760", "video_name": "da42999b-7ecb-596d-a44e-5480105c0d90", "text": "Japanese country realistic on the top "} +{"id": "6002447", "video_name": "27d2aea7-5197-54f2-a24b-2b65861d3c7d", "text": "levi slicing titans in anime theme "} +{"id": "5001420", "video_name": "0ab97b7a-7b7a-5d2d-9c31-a939d79c1f21", "text": "piramids of mexico Message: 1 Attachment "} +{"id": "3006653", "video_name": "d6dbdd17-c392-530b-abfa-fcf75f2e797d", "text": "A quick pan across a busy intersection in a smart city, with cars and people rushing by. The camera should be positioned high up, looking down on the intersection. The cars should be rendered in high quality, with realistic reflections and shadows. The people should also be rendered in high quality, with realistic facial expressions and body language. The colors should be muted, with a cool or neutral tone "} +{"id": "0006871", "video_name": "34893f62-e4d7-5408-92f3-5790c198fbdd", "text": "Take care of the Earth and take care of you "} +{"id": "3006734", "video_name": "8456bf6f-a60e-5884-9bb3-c37f324e5af7", "text": "The clock on the beach is sunbathing. "} +{"id": "1004863", "video_name": "59cef4fd-f2d9-52e5-af07-e4e0943b2004", "text": "create a field surrounded by flowers and trees, a flour trail that leads to an open bag, a trap to capture rabbits "} +{"id": "1006117", "video_name": "702b58a9-ccf3-5d07-80b5-0971eae88499", "text": "Create a video showing the vast void of space, with distant stars and a sense of isolation. "} +{"id": "1005885", "video_name": "6c3ece8d-ce54-5fc7-8426-f084fce1f141", "text": "a business man looking down on a growing city "} +{"id": "3003053", "video_name": "db841e51-7c40-5051-b34c-cbf67268b32c", "text": "a man opened his frightened eyes "} +{"id": "0004937", "video_name": "11db050a-3ec1-5a3a-b717-bad961b18cc4", "text": "a man dressed in winter clothes looking up at the sky with mouth open in awe in a city snowing, winter "} +{"id": "3003499", "video_name": "3d7f5fd1-d256-5c15-ba09-94a3e736cc73", "text": "GENERATE a video of a ANIME Sitting at the desk in an office and make a speech "} +{"id": "2006790", "video_name": "70c0fcfc-d25e-5af0-b668-b97d543cd5a5", "text": "Mahatma Gandhi In Egypt with Cleopetra "} +{"id": "7004123", "video_name": "f1548ce3-d398-5fba-88da-68459e66c189", "text": "yogi woman from behind in lotus pose reaching enlightenment chacras enerhy raw cinematic dynamic action movie scene "} +{"id": "2003033", "video_name": "82d62f2f-9c71-527b-a3e2-827a01d9ad66", "text": "a cute girl on side of a beautiful beach "} +{"id": "7004282", "video_name": "f810a80a-24b7-546e-8732-9fe0bc6c15a9", "text": "a cat sat on a sidewalk wearing a gold chain and sunglasses rapping into a microphone "} +{"id": "6002516", "video_name": "e66966d9-1909-5757-b3e5-49590dc59ec0", "text": "add security to the front of the building "} +{"id": "4003015", "video_name": "59f4c78d-9814-5b3f-87cb-c6f70078b718", "text": "feather writting Whispered Chronicles in Cursive font "} +{"id": "2006299", "video_name": "141398d6-bebc-5b1c-aba2-d2fd50a9f9ce", "text": "background with code snippets or programming symbols. "} +{"id": "4003328", "video_name": "de4a3b6e-f955-504b-a782-e4976a25ee05", "text": "Design an image of a person in a room filled with screens displaying identical information and opinions, symbolizing the echo chamber effect within a filter bubble. "} +{"id": "7002376", "video_name": "ab1f7572-15dd-5084-a944-5b0446d90fba", "text": "a car is on the highway there is dark night with ghostly silence "} +{"id": "0006980", "video_name": "362a7799-98a0-537c-ae57-81250c7951fd", "text": "A bussiness man is working in front of a computer who is anxiety and tired of working. "} +{"id": "1003012", "video_name": "3756c76b-6191-5b5b-b0d5-be19ccc09de8", "text": "make the building with lightning scary vibes moving "} +{"id": "2006770", "video_name": "33b4cb8d-1b2b-5c2e-86c7-4aa9cb088a2d", "text": "in the forst a guy in a blue jean jacket is lying on the ground then a woman in a medival dress comes running to him "} +{"id": "1004315", "video_name": "4fbd38ce-ff0e-5b0e-861c-29079851bd3d", "text": "Cinematic, a girl alone doing classical dance in the evening street "} +{"id": "3004609", "video_name": "e493ec26-549f-5ee9-bdd5-9e3a8f728300", "text": "white feathers on an electric blue background Message: MONOGRID (Font: BAUHAUS) "} +{"id": "3005265", "video_name": "6bffd29f-5f7a-5786-8938-c8a36b64f292", "text": "valley with weapon , running close local bridge, cinematic, realistic, 8k, motion 4, fps 20 camera pan rotate "} +{"id": "2007328", "video_name": "f6fd9b26-a74f-55b0-a455-c0a8f515c5f9", "text": "beautiful face of a man and body of a wolf "} +{"id": "2003128", "video_name": "62e1086d-983b-53b0-88e3-3468459a7f89", "text": "a rocket crash in the space during flight "} +{"id": "3003676", "video_name": "b3225095-c7fa-52e2-a47d-dfcacc6d9037", "text": "The Bank of Shadows, a large and imposing building in down twon "} +{"id": "2003820", "video_name": "00e225f3-a103-58a0-b443-1f55f2a717e8", "text": "a soccer player running across the world gathering people behind him, high definition, epic, cinema "} +{"id": "8002273", "video_name": "dd7cec49-d359-5a69-b3c4-4dad2ab8afa2", "text": "Aerial photography flies along the winding Great Wall "} +{"id": "0004585", "video_name": "0b946311-b5c8-5b2a-bc5e-21984cb01522", "text": "Create enchanting images of elegant and alluring women, each framed in exquisite poses and adorned with captivating backgrounds that amplify their beauty. Explore a diverse range of settings, from picturesque landscapes to sophisticated urban scenes, to bring forth the essence of glamour and allure in the generated images. "} +{"id": "4003403", "video_name": "b276001a-db98-5138-8327-3639c58c1c55", "text": "the late Ethiopian emperor tewodros getting his hair braided by a beautiful Ethiopian woman sitting on his throne as he is sitting beneath her in between her legs while she is braiding him. He is also sipping wine while she braids him. "} +{"id": "4002441", "video_name": "7e08c01c-777a-5443-b7cc-22a6dd1502bb", "text": "A bar decorated in industrial style. The street in front of the bar is full of lights and traffic. The door of the bar is made of iron. "} +{"id": "7002785", "video_name": "dba56e73-ef6c-5765-b6ff-6ca8739ff77d", "text": "Animated jungle background with monkeys, jumping from tree to tree while eating "} +{"id": "6004945", "video_name": "d80774f2-317a-59a2-9f38-888be74064da", "text": "cinematic film , full shot, a 15 years old boy hollding a gun in Tel Aviv, dance club, 1960s aesthetic "} +{"id": "3006388", "video_name": "c5f1d9a5-c3e8-5f4f-b477-185bd08523af", "text": "a spacecraft orbiting a planet with a gaseous atmosphere that gives a greenish color to the planet "} +{"id": "3003333", "video_name": "3319bf61-c270-50d9-bf7b-fb7af3a38dc0", "text": "realistic Dabi touya Todoroki from my hero academia. burned scars underneath his eyes burned scars on his jaw burn scars on his arms. He has eyeliner on. black hair his has staples on his face. In a alleyway dark . "} +{"id": "0003576", "video_name": "3fd116aa-1da3-5d56-894a-b24a4bc995fc", "text": "A little cat flew in the sky, saw the moon, ate the moon in one bite "} +{"id": "2005700", "video_name": "35015d67-96ef-557a-958a-2e6c002062b4", "text": "wide shot. Dark setting: On the rooftop of a skyscraper where a figure stands as the edge winds blows gently, realistic. "} +{"id": "4002967", "video_name": "04ebed6f-db8e-5df9-82d2-737591d1b134", "text": "offroad motorcycle, adventure, mountain, trees, 6 riders, anime "} +{"id": "5001517", "video_name": "f745f981-4a69-5cd1-88d3-6de9af276d2e", "text": "pass fast into fantasy turnal like teleport "} +{"id": "7004087", "video_name": "ce0b1164-43f1-522f-88dc-ad709331d5cc", "text": "9:16 image ratio of nature with flower gradens and mountains and waterfalls also showing sunrise "} +{"id": "2004221", "video_name": "f1978adb-f8e2-5680-b7c4-af0fc8f9a95b", "text": "100 ants moving in different directions seen from above, on a white background. "} +{"id": "6003400", "video_name": "4f31ebe6-bd74-5681-af4a-ca850d4798e7", "text": "a happily married couple 3d animation style "} +{"id": "2007638", "video_name": "a602d672-0358-5e80-b2fd-5e696c705a2c", "text": "They picked up the circular gossip tray in their hands and formed a 45 degree angle with the reflection of the sun, forming a straight line with the pyramid. At this point, the ground between the two pyramids cracked and the passage to the underground opened. "} +{"id": "4002817", "video_name": "1b214abf-f84d-52f9-9149-ac01cc87b4a2", "text": "two students discussing about their tomorrow machine learning lab exam "} +{"id": "3005469", "video_name": "a01636fb-40fc-579e-9632-096d721bd7ca", "text": "and educational institutions throughout his realm. "} +{"id": "6002517", "video_name": "6a37df3e-fd01-5e32-a368-9283d884f8d9", "text": "A man walking past a haunted house "} +{"id": "0006356", "video_name": "2b26f3c0-0011-5801-bc37-55731461ac05", "text": "an astronaut runnig from the battlefield on the Moon, 16 mm, black and white, realism "} +{"id": "1006936", "video_name": "7ee51dd5-234d-5634-a91d-14c850e19ce8", "text": "create a movie trailer of casino royal movie but with henry Cavill as a bond "} +{"id": "2003817", "video_name": "71bc6ddf-8a3a-54b4-82f9-3c2c29cfcd89", "text": "a panoramic flybye in 4k shot with red draggon and cinema lense. of the astral city depicted in the movie astral city by author chico xavier "} +{"id": "4003515", "video_name": "65482a26-58fb-57bc-914f-8483a577e203", "text": "Infinity zoom over a luscious rainforest landscape "} +{"id": "2006623", "video_name": "fde35043-7d83-57bf-b3e0-2ab396e81c78", "text": "3d clororful fruits falling from a pink sky "} +{"id": "5001722", "video_name": "bdf7fecb-6d53-51dd-9ec2-c26b66647e13", "text": "Create a professional video in 3D animation with 4K resolution, about the evolution of video games over the years "} +{"id": "2004818", "video_name": "739b88f5-0924-54d8-8e25-29d8b836f0a1", "text": "a cat in an arcade in Japan "} +{"id": "2005842", "video_name": "07bdeda0-3802-5474-9bd5-60fd1a8aa757", "text": "The story begins with a young girl named Luna, "} +{"id": "2007099", "video_name": "09c9de09-e86c-50f6-b288-5215cd4f1eb6", "text": "blond haird man is feeling scared inside a cave "} +{"id": "4002508", "video_name": "895a86a0-9530-590b-8ae7-470614d68d0d", "text": "dream like image of fish swimming in water , dream magic vibes "} +{"id": "7002834", "video_name": "3f7d0b8d-8720-53d3-8f23-7dd1c0a1f40d", "text": "a flower yellow in the blue see, beatifull "} +{"id": "2003673", "video_name": "bb1a37eb-663f-5428-a15f-e4ff82592d9e", "text": "A stunning Sri Lankan young woman is looking at the camera smiling and talking, cinematic, 4k "} +{"id": "2006897", "video_name": "75453ebc-6858-5da3-9e0b-dd5b8c4b9cb0", "text": "the Fish swimming in the Corel reef cafe. Animation, moving, motion 1 "} +{"id": "6003914", "video_name": "4f9c8ba3-218b-55cd-ac44-6e6819571f72", "text": "oil mining in the ocean harming environment (top view) "} +{"id": "4003397", "video_name": "5cc74ea8-b9e9-584a-8de9-60b6bc9cfccd", "text": "A blue sky, a golden field of wheat, a crane flies by Message: DEFAULT VALUE (Font: MODERN) "} +{"id": "1004040", "video_name": "4ae024e2-abbb-591b-a069-b658388e8235", "text": "POV of walking down a dark alley at night "} +{"id": "3004475", "video_name": "f2cf7d62-bafa-5707-9cda-2624752166c5", "text": "A cat is sleeping on a red carpet, next to a fireplace burning wood. In the hall, snow is falling outside the windows at night. "} +{"id": "2006084", "video_name": "a5c0a0ed-5340-5ad2-bfaa-339cb7429af5", "text": "1978 film of a misty forest with a flying small blue illuminated fairy "} +{"id": "7002188", "video_name": "b0b090fa-c7f6-586d-9791-eae87141bea0", "text": "a woman in the forest, at night, a big star shining in the sky "} +{"id": "3006658", "video_name": "4a473db9-d30b-5330-9759-84f5ea24bd82", "text": "Two children are chasing the waves by the seaside "} +{"id": "3004729", "video_name": "3ccee713-b31e-53b6-910d-abdac0c53cf8", "text": "ballerina dancing on the background of fire, realistic, hd,8k "} +{"id": "0005884", "video_name": "22c48527-e209-5074-b25f-9b96d4c5b615", "text": "A diagram of the AI pipeline, showing the different steps and processes involved in creating and deploying an AI solution, such as data collection, data preprocessing, model "} +{"id": "4004455", "video_name": "8050f64d-2f80-57b1-aabe-b5c190285ea5", "text": "the character is a kid, the image looks like the 60s "} +{"id": "3004232", "video_name": "ee5fe2f1-a06a-5e5d-bc9e-0734c9f72713", "text": "A breathtaking depiction of the Eclipsed Emerald perched on the ornate altar, bathed in a surreal green light, as it projects cosmic images into the chamber. carton "} +{"id": "6003701", "video_name": "a1fed7a8-a128-5c95-93b8-5cc14467146f", "text": "anime drawings on a city wall come to life and start dancing "} +{"id": "6002005", "video_name": "264e3548-f930-50e8-88fc-e5263f2a1e82", "text": "Nasruddin Hoja was standing in front of his house thinking. "} +{"id": "1003821", "video_name": "4697bb63-9f63-5ffe-bd7c-708e3c20fd7d", "text": "lady is walking in the dark "} +{"id": "4004380", "video_name": "cd8db996-f7c2-5115-a916-899ca66b54b8", "text": "4k fantasy fire scene like mordor with a dragon flying in the background "} +{"id": "2003632", "video_name": "ae5b3c5a-18e1-57c0-b325-1d3f8caccbda", "text": "Barcelona SC lifting the Libertadores Cup "} +{"id": "6004836", "video_name": "a8377482-5f66-5dae-b32d-b1320d0f1299", "text": "A man who is diving, seabed, fish, real, realistic, realistic "} +{"id": "1005351", "video_name": "62625eb1-6cc0-5301-97e5-857c3d2e158a", "text": "Cinema Americam Shot GENRE: Drama EMOTION: aggressive LOCATION: A sunlit brutalism office SUBJECT: young woman in 1970s outfit ACTION: Gazing pensively into the distance RIG: Steadicam STYLE: Soft focus, warm tone "} +{"id": "2004346", "video_name": "aa6d5f4f-6db0-5afb-9e12-c7a632fbcc9f", "text": "horizon with sun fallen and waves moving "} +{"id": "0003731", "video_name": "427ece57-4266-53f6-a5a6-97fa07b286d8", "text": "he ancient Anunnaki, beings from beyond the stars, descended upon the planet in colossal spacecraft. The world watched in awe and fear as the dark skies were filled with ominous shadows. "} +{"id": "6003853", "video_name": "71a270d4-2a39-5a90-aca9-053e2725b6dd", "text": "a sign that saysI love you multicolored neon, multicolored, blinking light with stars that blink, different colors, and fireworks that blink, different different colors, the neon sign, blinks different colors "} +{"id": "0006731", "video_name": "31e3395e-1b43-5e51-8061-a63ee477233d", "text": "visualization of a lexus car in the form of a human body "} +{"id": "7003062", "video_name": "f1a74239-94e0-5f71-87bc-8e33fafb5d51", "text": "Newspaper headline Message: I got a promotion (Font: MODERN) "} +{"id": "7002956", "video_name": "98240fc8-53b6-58ec-b73b-c128f8554ca0", "text": "Joe Biden in a haunted house standing in the corner of the room Cinematic 4k horror movie "} +{"id": "8001992", "video_name": "b27f9f4e-69a9-522f-8db3-198d9df28371", "text": "Astronaut suit with mobile \nmassager at his arm "} +{"id": "7002855", "video_name": "f8c00966-742e-5f5d-9247-72494a0e0c9c", "text": "create solar system in sun in the middle and earth rotates around on the his path "} +{"id": "8003482", "video_name": "a40b1d05-208f-5e90-8abb-46f0635b20ad", "text": "pixies running across a kitchen floor "} +{"id": "8002629", "video_name": "d6f029f1-7698-577e-b2e0-dfbee29e1dae", "text": "A herd of whales flying through the sky over a medieval village, gentle relaxing "} +{"id": "2004885", "video_name": "6d992223-210e-5885-8d8b-9ff1d5886964", "text": "inside library, the main girl studying and making notes, Mamoru Hosoda style, hand drawn, vibrant "} +{"id": "0004218", "video_name": "053ddea1-09ce-5c9e-99e2-a8cfb9b0ff7e", "text": "amber heard jumping on her bed ultra realistic cinematic 4k "} +{"id": "7002447", "video_name": "a6374a15-a8a2-536a-a8ae-00eb1041ecbf", "text": "A skeleton walks down a dimly lit corridor. "} +{"id": "8002600", "video_name": "42122bdc-9fef-532f-b549-3c17d4e90e3e", "text": "4k hyperealistic photo of bengali man during winston churchills drought "} +{"id": "0006743", "video_name": "3218f4d4-988e-5652-94f2-074d761dc24c", "text": "rabbit runing in forest , morning, raining "} +{"id": "4002100", "video_name": "a798f4f1-90d7-5c78-b452-638819e20df6", "text": "The car in the picture is twisting Message: 1 Attachment "} +{"id": "0003724", "video_name": "426453c5-28ed-5d78-8e29-e31245164a96", "text": "kamal hassan in standing middel of the featuritic city psace ship in the sky comeing in to the featuretic world dark lighting effect 4kd hd cinematic "} +{"id": "8001029", "video_name": "761ccb0a-f3a9-5a8f-ac08-e2a30232ee8e", "text": "Superman carrying earth on his shoulder "} +{"id": "2005313", "video_name": "813f853f-0d53-5100-b4ad-f60ff1f72b4a", "text": "protestors throwing moltov cocktails at giant luxury white SUV, on canadian highway, in style of TV commercial "} +{"id": "2005843", "video_name": "34fedf84-eeb6-5120-8d50-4d1ad96af693", "text": "purple strawberry fields close up macro slow motion. No sky "} +{"id": "5001110", "video_name": "85f440ef-19da-5520-8881-131a016f029e", "text": "A hill in the background, setting a cheerful and bright atmosphere. "} +{"id": "1003681", "video_name": "43db5a0b-aedf-5ffd-8ee2-8c10b9b24508", "text": "a boy named Ethan and a girl named Mia "} +{"id": "3006774", "video_name": "b32d85e0-b2ef-5b89-838e-9375d072e117", "text": "girl see fly Comets have long, bright tails. "} +{"id": "2004857", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "well dressed people shaking hands in an office "} +{"id": "6002860", "video_name": "d995ff72-f21b-51c0-8ada-8737c7844466", "text": "two girls playing in a hut "} +{"id": "7002622", "video_name": "61361de3-9322-5eef-8bfb-e03718a07c2c", "text": "Quick cut to a graffiti artist creating vibrant art on a wall. "} +{"id": "0003826", "video_name": "442a088e-95b6-551a-80b3-40a0303ab2e6", "text": "The gray wolf, guardian of the geometric realm, stands tall and proud, its fur adorned with intricate patterns and shapes that reflect the magic and mystery of its home "} +{"id": "1006899", "video_name": "7e281a95-85e9-546e-ab63-dcb37b5e67a7", "text": "a staircase that extends to infinity, highlighting the idea that the journey to success is built step by step. "} +{"id": "0003645", "video_name": "40f254c6-4854-5727-8150-fcffa96c41b6", "text": "a fish floating in the sea "} +{"id": "1004997", "video_name": "5c5dd3d0-1549-562a-b6ad-5fcf2093e71e", "text": "idk how to create a normal prompt "} +{"id": "2005356", "video_name": "a53098b3-c2ae-5d3b-a337-777dcadc6f98", "text": "madina with beautiful motion of 360 degrees "} +{"id": "1004537", "video_name": "544b4ae7-e100-5d79-8042-d6a2df8a8004", "text": "3 moons in rotation cinematic 4K wide angle zoom in hyper real "} +{"id": "8003722", "video_name": "6e56cc93-8f5a-5017-893a-1442bca49e7d", "text": "The slave came after taking halwa from the street boy to the service of Sheikh Sahib with a plate of halwa. "} +{"id": "2007501", "video_name": "8c61a37f-ac28-5bbc-a0f1-011ae8e10089", "text": "Fearful ears are protected from the love of the universe "} +{"id": "3005062", "video_name": "67b82da0-55a9-542a-a74b-2e85270ce6b0", "text": "sparkling ,rain , Lightning,a lion coming in front of her "} +{"id": "8003146", "video_name": "6b031fdc-694b-5a07-ae94-9c4b1edc3718", "text": "Mission: Impossible style, I want a handsome man in a suit to walk into the bathroom, take off his pants, take out a pistol from his underwear, and transform into Batman "} +{"id": "1003275", "video_name": "3c46bb5b-56a4-5639-8a91-9cb4b19df735", "text": "an aerial view of an old wooden house found in a far village, a long alley of trees leading to the house "} +{"id": "2004174", "video_name": "8f6c7d25-971e-5acb-8083-51cd0c6fcbba", "text": "spit in the concrete Message: 1 Attachment "} +{"id": "4002340", "video_name": "b2955764-4d1b-532a-b110-110f2eb302b7", "text": "Create an animated video featuring a friendly dragon who embarks on a quest to find the lost city of Atlantis. Along the way, the dragon meets underwater creatures and solves puzzles. "} +{"id": "6003183", "video_name": "384892ca-3783-5728-bfa6-1c04f3c4fe63", "text": "Willy Wonka flies on a broom on the Quidditch pitch in Harry Potter "} +{"id": "8002854", "video_name": "44476279-4bff-5ad9-b64e-6bf59f290bfa", "text": "Illustrate Sumi and Jaya sitting at a table with completed homework, looking a bit bored 2d "} +{"id": "6002675", "video_name": "3b372aca-49b0-534e-8629-7d791525ef46", "text": "curtains by the windows is on fire "} +{"id": "8003257", "video_name": "77ef9b64-8b1e-5373-bd9a-d599dbbc9a97", "text": "video footage from an ancient athenian university "} +{"id": "0003828", "video_name": "44357aa3-7e3b-5d22-900a-c5625a3b26b6", "text": "man with orange jumpsuit clothes and spiky hair, identical to Goku from Dragon Ball, fighting in the purple night skies with bald man with blue armor similar to Nappa also from Dragon Ball, realistic anime style "} +{"id": "3004313", "video_name": "bf994236-c1ba-5274-9018-e1da72f6667f", "text": "Nikola Tesla at his first electricity exhibition "} +{"id": "7003001", "video_name": "89d4becc-80e2-55fc-bf80-7fa811609860", "text": "walking in a dark coridor and encountering a mighty ghost "} +{"id": "0005252", "video_name": "174361a0-f927-5be0-b810-ccc3158c1359", "text": "woman walking alone on a rural road in northern Italy in 1943. Illustration in watercolor and pen by michal sawtyruk, long strokes, trending on artstation "} +{"id": "1004693", "video_name": "573b5823-fd9c-598a-842a-308a65ccfb4d", "text": "a samurai stands on a mountain, 8k ultra hd, realistic, "} +{"id": "7002428", "video_name": "b4a55310-58d1-534d-9165-810e0379ff11", "text": "muscle bodybuilder smiling 10 year old girl walking in forest with her parents "} +{"id": "3005677", "video_name": "888f5e88-0f1a-5510-a5da-40ae7964c8f3", "text": "pentagram ritual. high definition, high detail, cinematic "} +{"id": "6002773", "video_name": "724e7c96-ef6e-5085-9858-89c918834f92", "text": "At the head of the Valorian forces stood General Aeliana, a brilliant tactician and a fierce warrior known for her unwavering loyalty to her kingdom. Her eyes burned with determination as she surveyed her troops, a mix of knights, archers, and spellcasters. Beside her, a young mage named Aric, his hands crackling with magical energy, prepared to unleash his devastating spells. "} +{"id": "3004297", "video_name": "f6789145-07a2-596e-a25d-3347905356a7", "text": "red unicorn in a magical forest van gogh style "} +{"id": "7003562", "video_name": "327f5ce8-d086-5d20-8ec0-ff0210f81455", "text": "male nurse Message: the power (Font: SANS SERIF) "} +{"id": "5001973", "video_name": "49c3a170-60f8-531e-89b0-7846540fdbb9", "text": "a christmas programmer flying through the sky "} +{"id": "1004781", "video_name": "5864c999-196b-5ff2-9d17-fea7fcb1ee7b", "text": "a photography of a burning campfire, insane details "} +{"id": "6002739", "video_name": "cd894a36-3123-581f-9e7a-86a798535a29", "text": "Poor Cazamian was burnt to a crisp. Only thing that saved me was the spacesuit I was still wearing. I snapped the face plate down because the cabin was filling with fumes. "} +{"id": "1005955", "video_name": "6d591c37-8655-507a-b9b4-271bbf245291", "text": "A serene expression as he seeks guidance from Allah. "} +{"id": "2007853", "video_name": "55580a2d-556f-588e-b0dc-f4a472940781", "text": "Aiden chu walking through Shanghai, China "} +{"id": "2003697", "video_name": "496e4c98-d8b3-535a-af73-94b73f71bab3", "text": "A grandmother with gray hair in a gray sweater is standing on the roof of the house opposite the chimney. "} +{"id": "4002231", "video_name": "14936525-2831-5d94-a506-ff7e9e4f684a", "text": "a beautiful little girl with her grandma in kitchen "} +{"id": "2006683", "video_name": "4a234bd3-b9f0-59bd-9ff7-8467023d05aa", "text": "an ancient temple shrouded in mist, nestled deep within a mystical forest. It should evoke a sense of mystery and tranquility, movie, cinematic "} +{"id": "8002720", "video_name": "a9b4089d-fbc6-58e3-aab7-801fe0e013f1", "text": "a young couple in an apartment "} +{"id": "6004253", "video_name": "9df925d1-7b01-5f5b-8e54-07c2028a1cfe", "text": "blank no text playboi carti album cover "} +{"id": "2007635", "video_name": "26e56463-a556-5504-9465-e05d16a815ac", "text": "bike has fractal growth of new bikes and wins the race easily "} +{"id": "8002277", "video_name": "0c50d101-d5bb-5425-9dd3-6977d829cf16", "text": "The doll and the bear are dancing In the beautiful castle "} +{"id": "2003878", "video_name": "08937acf-2fa9-5c76-b222-fa19beff6f82", "text": "a man on a ship seeing a island hd animated "} +{"id": "7004985", "video_name": "9517b7d6-e09f-547c-8c24-1d8b44aeebff", "text": "Musroom Pinning forms part of the fruiting stage cycle mycilium "} +{"id": "2006426", "video_name": "68df24c3-bfef-5bf4-9027-02f6a99de2da", "text": "Pirate ships are sailing, make the movement of the water smooth, and make the movement of the ships smooth "} +{"id": "2007987", "video_name": "d6ebef07-2d58-596a-b86b-e620a0defa3f", "text": "The north wind and the sun argue endlessly about which one has more energy. "} +{"id": "1006998", "video_name": "800c890c-b0ed-5789-86bd-68ccd76f1818", "text": "a panda eating sushi on mars "} +{"id": "8001448", "video_name": "3bd6b259-8b6f-57ed-8aa4-bc50923d187a", "text": "The woman walks down the street, with a smile on her face. She is happy and serene,image:1702333107833.pngThe woman walks down the street, with a smile on her face. She is happy and serene, "} +{"id": "6004385", "video_name": "84881423-67be-5ee7-8530-414350e6c48f", "text": "dancing robots like bender from futurama at a christmas tree in the office, christmas tree in the background, in the style of a cartoon, normal office lighting "} +{"id": "2004934", "video_name": "5e6f5291-4494-5f63-a488-38699c775627", "text": "TCM Industry in Rural Revitalization: The image depicts a traditional Chinese herbal medicine farm in a rural setting, with a worker harvesting herbs, set against a vibrant backdrop. "} +{"id": "1004094", "video_name": "4bc4e5cf-ddd9-5fc3-90d3-a7212bc9c28c", "text": "funny story in jungle fox for kids "} +{"id": "3006759", "video_name": "ead2d5c8-9766-5b54-be81-c82805ff1c43", "text": "video of a lush green tobacco farm "} +{"id": "0005409", "video_name": "1a555989-0e97-51b8-aa3b-bc7a40f6da0e", "text": "dining room with different quisines and artistic food presentations "} +{"id": "1005205", "video_name": "5fd3321d-fd81-51a3-8e57-76f1bfa55786", "text": "Light blue, yellow and white matrix code Message: CREATICS (Font: MODERN) "} +{"id": "2004823", "video_name": "3abde0a7-6e89-52e2-a38c-e289c07106a4", "text": "photo real Dark room with aged and deteriorating wooden walls and floor with lots of broken and stained mirrors "} +{"id": "1006007", "video_name": "6e6cf6a0-1c44-50f2-bd25-ebc365d49524", "text": "a red asteroid crashing on the wealth field "} +{"id": "6003147", "video_name": "0cd58d03-7e1b-5bb6-975e-40587b897928", "text": "car speeding on a road between two rocky mountain, aerial view "} +{"id": "3003795", "video_name": "c6dcc074-8966-516a-a3fb-f7c1c7f3e6e2", "text": "war shot, High Action shot ,Blade runner 2049 movie style, hyper realistic, highly detailed, macro slow motion "} +{"id": "2003456", "video_name": "4afb12a7-3c18-5917-a8d7-3690498d1a4c", "text": "3d, boxing ring, two animal boxers. One is the bald eagle representing the United States, and the other is the panda. The panda punched hard and the bald eagle was very painful after being hit. "} +{"id": "8001021", "video_name": "799e7de0-17bf-5590-965e-6cb1cd70eee5", "text": "a boxer dog is eating a raw piece of steak "} +{"id": "7004217", "video_name": "dd7b567d-d8f9-56e6-9ca0-8fcab43eeb84", "text": "A person purifying their heart and soul with a sense of inner peace and clarity. "} +{"id": "2006915", "video_name": "03e7a6a4-d965-5f38-ad39-e2eab1915eb4", "text": "JASON (whispering) Who are you? The Mysterious Woman steps closer, her fingers gently tracing his jawline. Her touch sends shivers down his spine. "} +{"id": "4002778", "video_name": "3240d758-5f3d-5ec9-8b38-039c4f0d295d", "text": "The injured officer is asking (with smile) the British Governor for liquor (There should be no alcohol). cinematic, realistic and landscape "} +{"id": "8001112", "video_name": "a4c2f8dc-c2ff-50b7-8ae0-0093de8c2378", "text": "a girl that is very cute and wearing beautiful clothes and is playing snow ball "} +{"id": "2003204", "video_name": "fd9f75a4-b88c-5e51-aaa1-088bb22e42ee", "text": "a woman in a kingdom Message: Cinderella (Font: MODERN) "} +{"id": "6004768", "video_name": "5096f27d-d03f-589f-a709-a38dd0d219f7", "text": "Thomas Moran animation of a ship sailing in the ocean "} +{"id": "8003051", "video_name": "a8b89e89-7844-5fc6-8c08-4f29fe31e75f", "text": "moving cancer lights from the audience "} +{"id": "3003267", "video_name": "50064eae-0c65-582f-8e7d-923645bb0894", "text": "a single feather falling from the sky, sunrise, warm color palette "} +{"id": "8003311", "video_name": "ca05a782-d9d3-53cb-bf10-3e8fed940d9d", "text": "anime, bass string electrified, camera pan, motion 3 "} +{"id": "1005970", "video_name": "6daa2c7f-8919-5f8f-8a32-eaa4030003e8", "text": "display an image of a crying baby "} +{"id": "7002997", "video_name": "677fe211-f7d6-599c-a0e6-6854bdac21b0", "text": "bed with snake underneath dark room "} +{"id": "8003985", "video_name": "411e0688-c39a-55e0-ae7f-14d465af2fe9", "text": "the man flying slowly and too clouds "} +{"id": "2003436", "video_name": "98ccb3c4-4911-52f4-bc15-e993ab8cc49d", "text": "a white dragon of thunder Message: White Dragon (Font: MODERN) "} +{"id": "8002739", "video_name": "b92f5f74-374a-5bf1-a6f6-539cfb540ad4", "text": "President Barack Obama DRIVING Rolls Royce Phantom "} +{"id": "0003476", "video_name": "3e4f0bdb-be1f-5719-ab98-ba54ee30a871", "text": "two monkeys fighting, anime style, dragon ball style "} +{"id": "7002350", "video_name": "1a1dee12-1097-515e-b87f-518c2ae70232", "text": "Node network in the crypto ecosystem "} +{"id": "2003310", "video_name": "40cf2ad7-d2c5-51d9-8df6-91392be6d703", "text": "the close up top front view of female eye closing eyelids, frost on white lashes "} +{"id": "1005938", "video_name": "6d266736-8249-5a61-b156-a18428b0071b", "text": "As Mowgli wandered through the tangled vines and lush foliage "} +{"id": "7002702", "video_name": "17489366-5738-5bba-a7b4-3eec3fb857ba", "text": "a cartoon pangolin with a video camera "} +{"id": "3006051", "video_name": "3d3cabb8-5ed0-5065-b2da-ed1954aafe60", "text": "zombies moving back an forth outside of a mansion, horror, intricate details, cinematic, 4k, fantasy style, fog, smoke "} +{"id": "2007161", "video_name": "e52f072c-05b8-59cd-9cc4-59f2d562ac6d", "text": "letter A he always has spread legs, and crossed arms on his belly so you can easily recognize him. "} +{"id": "8003799", "video_name": "8bdc47df-9250-59b2-b02c-de772a5223ba", "text": "10 second video of cute white bunny "} +{"id": "3005194", "video_name": "6c54e75f-feb8-5059-a411-9eaaf5d482e9", "text": "alien politicians, shaking hands, science fiction film, super8 camera, aliens in background "} +{"id": "4003919", "video_name": "2c1fe13e-dca6-5ce3-b45d-5c3c138d7a2a", "text": "pen moving around smartphone in circular fashion, realstic, cinematic "} +{"id": "3003926", "video_name": "ad213a0f-e2a0-5462-9975-ac61979c2d59", "text": "guy setting in front of computer and cant see well "} +{"id": "4004114", "video_name": "5b4a7bd6-bfdb-59df-8f14-249fa9162fb3", "text": "Hyper realistic fish, floating over water, ocean waves, clouds "} +{"id": "7002288", "video_name": "03ad3747-7931-5463-85fe-c1261b67712d", "text": "A glowing purple creature with purple eyes approaching from the darkness "} +{"id": "8001893", "video_name": "c334c424-e47e-5ef0-85c1-b939b59cc6b7", "text": "create a galionsfigure Message: 1 Attachment "} +{"id": "8003770", "video_name": "f1e3a270-5ff3-5baa-a867-69ca84e03d26", "text": "its timeworn walls cloaked in ivy and its windows clouded with age. "} +{"id": "3004499", "video_name": "93da4acc-a00f-55d0-a627-486a8041c7ed", "text": "a man bent on his work "} +{"id": "3005408", "video_name": "202739f6-7e05-599b-a174-34bb93c7a250", "text": "drawing of girl drink coffee and chill vintage vibes "} +{"id": "3005459", "video_name": "126f0c41-be6c-54fb-8369-7e8cc65e497a", "text": "the yellow king eldritch divine being in catacombs of dagon 1970s art alejandro jodorowsky mythology "} +{"id": "8003269", "video_name": "ea8d1dc2-a2be-5b43-b412-47488ea8f10e", "text": "image of assets turning into money in simple cartoon style "} +{"id": "1004924", "video_name": "5b0b7962-da7e-50e4-8b74-c02d1ec44732", "text": "A man and a woman dialogue, argue in action, a man speaks loudly, emotional speech, a woman slaps a man on cheek, woman has hoof instead oh palm, cyber punk, high resolution, cinematic light "} +{"id": "0005577", "video_name": "1d5c855b-82a2-51b7-8c0d-8e3f74d62c66", "text": "she looked terrified, 1970s horror movie vibe "} +{"id": "7004709", "video_name": "f84cac8b-3545-51d7-a2a9-58fb38c63743", "text": "The medieval church held a Illuminati organization inside the church "} +{"id": "0005089", "video_name": "147f56f9-a777-5167-a14b-f6046e2df49c", "text": "timelapse of the construction of an Aztec pyramid made by Aztecs stone by stone "} +{"id": "6004073", "video_name": "5dcaa577-71ff-54b1-96e4-d2a445b18a66", "text": "European woman pointing her finger in the air "} +{"id": "1004338", "video_name": "50149990-0fa0-594d-b578-a8268a9a537c", "text": "empty office with computers and screens, modern office, orange tones, zoom out, Message: Code 10 IT "} +{"id": "6003497", "video_name": "378b259b-019a-5d5c-bf05-cbe2061ed5ca", "text": "Gabe Newell fighting EA at their headquarters "} +{"id": "7003639", "video_name": "ba9c3b1d-d784-561a-abb6-b4a54e074eef", "text": "extremely long shot of man walking down a dark alley at night "} +{"id": "1006801", "video_name": "7c81ed10-3960-5f22-9ff4-21646c97ecce", "text": "sammoyed, greate dane and elf owl "} +{"id": "2003120", "video_name": "583448f8-abe5-5452-ba30-86111dd9c310", "text": "Create a tile laying logo by a master, minimalistic. "} +{"id": "2003845", "video_name": "840b381c-0fcb-566d-a304-5581ba7d7bc6", "text": "a dark blue room becomes a lighter color 4k "} +{"id": "2004042", "video_name": "13bc2e05-cf1a-524c-971c-29db0c237183", "text": "from behind we see justin trudeau standing alone in an empty room with slightly slumped shoulders "} +{"id": "2003406", "video_name": "a793e89c-3d93-5896-b0a4-939403d3229a", "text": "Pictures of birds in a 3D cartoon garden "} +{"id": "2006186", "video_name": "5dae8f7a-e942-5d70-b14c-953b216660d4", "text": "Shawn mendes long beard reading to a baby "} +{"id": "2005079", "video_name": "03f0f39c-2256-5b11-9d0f-c61681cbcc4e", "text": "eyes blink like real ones, waves move "} +{"id": "6002531", "video_name": "96f54882-a242-5b1e-95b2-0e16bc1f83f1", "text": "kong riding a godzilla with wings in the air "} +{"id": "8003889", "video_name": "87cac331-07c8-5e89-ae8f-32a6f5f2f396", "text": "one neon mushroom growing in center, changing colors, with black background "} +{"id": "2003592", "video_name": "66e4d2c9-a775-52c8-b394-eaff5dabdc9c", "text": "super hero landing , flying cape "} +{"id": "2006159", "video_name": "bbd597de-aae2-5994-9270-644268511d89", "text": "The lion in a suit eats again "} +{"id": "7002270", "video_name": "7541cf04-458c-597b-a42d-e68f542c2cbf", "text": "fairytale cartoon A quaint village with cobblestone streets "} +{"id": "8002662", "video_name": "2b27e583-b3fe-5dce-8e76-09c9d90d256d", "text": "Christmas tree modern style well decorated music from movi Home alone "} +{"id": "4003871", "video_name": "f9ca3683-d367-52e9-b9f5-f0507ac5ee59", "text": "Grotowski, looking content, observing his actors from the backdrop. in van gogh style "} +{"id": "5001258", "video_name": "c9242358-74e6-53a8-b371-0fa97e0ceb47", "text": "Whispers of admiration filled the air, and Liam felt a warmth in his chest he had never experienced before. It was as if his kite had become a bridge connecting his inner world with the outside one. "} +{"id": "2003720", "video_name": "a23b43dd-8b96-547a-97f9-c763d589f210", "text": "a camera zooms in very slowly on the face of a woman, the scene is captured in a futuristic marbella during sunset."} +{"id": "6003600", "video_name": "da14fece-24e8-57f3-ad47-d0d1707605bf", "text": "A pivot in script, turns the monetary page. "} +{"id": "8001268", "video_name": "45255e84-1ecc-5eb9-87a0-c7f9559489cc", "text": "intricately detailed forest landscape Van Gogh Josephine wall small brushstrokes deep rich vivid colors studio ghibli "} +{"id": "2006214", "video_name": "59cdc424-34c8-5c15-a48b-fb67b16ab73a", "text": "German troops march with PZ 3 tanks through the destroyed city "} +{"id": "2004194", "video_name": "2d611dc2-c0dc-5ea4-9f89-279dc5761978", "text": "trippie moon with a face comic style wallpaper aspect ratio 16:9 "} +{"id": "3004916", "video_name": "158e9eba-66b9-502b-8c36-f2cfb77014db", "text": "Alan Ritchson as Aquaman riding a dolphin in Aquaman movie "} +{"id": "0006331", "video_name": "2abb81bb-489d-57f4-a4ab-ac5879c50bc1", "text": "man jumping off a tarin falling over a bridge "} +{"id": "1004283", "video_name": "4f326adc-2832-54c6-b6c2-55f52f455638", "text": "in the style of Hannah Hoch and Michael Borremans, a man rushes to put a woman out who has burst into flames "} +{"id": "1006008", "video_name": "6e6fc63a-88de-53f9-be31-28f991228a88", "text": "They face dangerous adversaries intent on claiming the mask. "} +{"id": "7002905", "video_name": "d5648fa5-bc3d-5cd1-857c-f8c939bba686", "text": "the image of Christ the Rendentor on Corcovado in cinematic style "} +{"id": "3006132", "video_name": "26589bf5-5838-5abd-b0a6-f350bf8cdca5", "text": "cityscape of NYC at night, meteor shower "} +{"id": "0005883", "video_name": "22c39661-d6b3-528b-863e-a3f5473d8686", "text": "Alexandria Egypt with pixar style and Wes Anderson Style 16:9 "} +{"id": "6002168", "video_name": "e6c070d4-1ffc-5f52-b386-d0258a915148", "text": "a sunset on planet mars with smoke around and fire "} +{"id": "6004887", "video_name": "a4e8dfd3-5995-5e8f-82ae-de296b2205b5", "text": "woman in the middle of the scene, speaking straight towards the camera, showing a bingo card "} +{"id": "4002107", "video_name": "8570f9ef-24f6-5edf-a456-c90d0e7c7276", "text": "The elderly men, who reunited after a long time at this place closest to the sky, sat quietly in their chairs, watching a tourism video of the city being projected on the monitor. "} +{"id": "0005044", "video_name": "13a884ac-76f8-503d-9131-1bf29c58126c", "text": "a women with pink hair and white skin with bikini running in Iceland "} +{"id": "3006414", "video_name": "df98a2d5-12ca-5617-b786-4de456e36f04", "text": "My black dog Luna using her beautiful bowl "} +{"id": "2006921", "video_name": "5cc1add7-77a7-5e9d-9cb5-318c252815ce", "text": "little girl in her pink dress sitting in the settee using her tablet and the little lamb sitting beside her using his tablet too. Animate "} +{"id": "0003519", "video_name": "3ee32d37-bb4e-53dc-a1cf-5b3884720a7a", "text": "a large brown brick house with white windows, a digital rendering inspired by Christopher Wren, featured on dribble, arts and crafts movement, richly decorated Victorian house, sharp focus on houses, built on a steep hill becoming old and ruined "} +{"id": "8002683", "video_name": "56f11794-7c69-5f22-8dc9-ea9542d85357", "text": "happy cyclops, gazing out to sea from a cliff, photoreal, octane render, cyberpunk aesthetic, "} +{"id": "4003255", "video_name": "8094d57c-3949-55a3-b480-16cd3c610f2b", "text": "It was said that brilliant minds had once toiled here, pushing the boundaries of science in secretive ways. late night, dynamic action and movement, angle changes, 4:4:4 Chroma Subsampling, 14 bit RAW video recording, log colors, 14 dynamic steps hdr, 21:9 "} +{"id": "1005186", "video_name": "5f6474d7-31b6-5d40-bba4-27443adddc7d", "text": "a man getting out of a plane in a fantasy dreamy world "} +{"id": "8002266", "video_name": "9628c834-26f2-5371-adb7-96ed1f403372", "text": "a sail boat is high seas "} +{"id": "0003798", "video_name": "43a0f928-5859-553f-b6bc-c77ef99fc7c3", "text": "a car driving down the drive way high speed "} +{"id": "7002481", "video_name": "f08973d9-1a47-5fdc-9a0c-c4e492996cbb", "text": "Management of Ram Mandir Trust: The construction of Ram Mandir is being actively planned and managed by the Ram Mandir Trust. "} +{"id": "3003464", "video_name": "56f2f551-9ed6-5423-b697-cfe20e853963", "text": "beautiful girls are dancing in the street, close up of face "} +{"id": "2005453", "video_name": "4ae7228a-0022-5410-916e-5be3ef546fa9", "text": "a teenage boy looking into the distance on a ship on the ocean at the city of Tokyo with the sky being filled with drifting clouds, and an orange sunset, with some birds, anime cinematic, high quality, 16:9 aspect ratio "} +{"id": "7003966", "video_name": "06007c6d-68e0-5f3e-b59a-f60b01ba646f", "text": "theres a fantasy cabin placed on the shore of a small lake. the scene is a cozy fall day with light comming through the trees. The trees sway in the breeze and the cabin has a slamm bay window that is the main focus of attention. The camera zooms in on this window "} +{"id": "0005660", "video_name": "1edef73d-1615-556b-9572-8ff8f3415db0", "text": "Elon Musk is sitting at the computer "} +{"id": "8003764", "video_name": "bf1a5cc8-2bbf-507f-89db-f07ab248c9d8", "text": "Create an emblem for a university house characterized by the values of Solidarity and Compassion. The emblem should prominently feature a bee as its central element. The color theme for the emblem is lime green. The design should convey a sense of unity, care, and community. Incorporate the bee in a way that symbolizes collaboration and support. Capture the essence of Solidarity and Compassion through the visual representation, while keeping in mind the vibrant lime green color scheme "} +{"id": "3003731", "video_name": "dd0491f9-5b32-54ac-a88d-48cec4feb223", "text": "A boy walking towards camera snowy weather, snow fall "} +{"id": "2003982", "video_name": "1970ca08-3004-5206-a424-db4b5a870319", "text": "a water through a watermill helps to rotate a rod "} +{"id": "0004945", "video_name": "12067191-78c3-5270-8b93-bdb0ee742809", "text": "Aurora borealis with red, yellow and blue "} +{"id": "1003592", "video_name": "42240fdf-0f9d-5167-ac62-6676dd594c5b", "text": "virat kohli , rcb , winning ipl , ultra realictic "} +{"id": "6002741", "video_name": "2e167232-cf2b-526a-a695-bd794b83dc10", "text": "singer with guitar is singing in prayer in the middle of burning city, motion 3, ar 16:9, cinematic timelopse "} +{"id": "0006709", "video_name": "31827b79-385a-5952-a962-f6f2a8988284", "text": "a dark scene of an ominous object flying through space "} +{"id": "4003811", "video_name": "a150343c-aace-5084-a804-72cffb654ad0", "text": "Illustration of a person meditating under a tree with animals nearby. "} +{"id": "1004388", "video_name": "511e33a9-59e1-520b-8c59-53157c5c7ef5", "text": "a girl and boy walking in a road cartoon "} +{"id": "7002200", "video_name": "82ef7985-fed4-571a-b894-3909e60f257c", "text": "a cat fighting a capibara. Black and white. 8mm. Film grain "} +{"id": "7004032", "video_name": "8cd9d10b-e725-58c5-b03d-fc668a955fc1", "text": "Jim Davis style animated weatherman on TV warns of hurricane in a newsroom "} +{"id": "6004767", "video_name": "6ae7bc08-e54e-5b5e-86e0-9e1687eeb4e1", "text": "Bob Marley playing his guitar at the porch "} +{"id": "4002536", "video_name": "ae1e74b3-e6cf-536e-aa06-6ddef1d8c024", "text": "giant single tribal iridescent surreal magical drum glowing in a stormy sky, zooming "} +{"id": "2005668", "video_name": "bb5bac0f-08ec-5fac-831c-3cb2f57cdeb8", "text": "pink volcano blowing up out of a laptop screen "} +{"id": "8002694", "video_name": "b04bdc8a-592a-51da-89ea-44b636b917dc", "text": "zelda videogame character playing dancing in birthday party ultrahd "} +{"id": "6002834", "video_name": "4a6b28e9-2130-5d99-98b7-69ce640686c4", "text": "Night in rural China in the 1980s, The bright moonlight, Big moon, Houses and trees, HD "} +{"id": "8003057", "video_name": "68a2471e-9579-5377-ade2-e748db57bd9e", "text": "elon mush go fishing near a lake in forrest "} +{"id": "6003429", "video_name": "664e07ed-876d-5d46-80ba-482b00452b57", "text": "4k Dancing in the center of the stage "} +{"id": "8002912", "video_name": "de6a5623-36fb-5c5a-b9c4-83add1527eea", "text": "a woman laying on a mattress animated like torn paper stop motion 8fps in a clean corporate style "} +{"id": "7002277", "video_name": "ed5c38a1-4ab3-5357-9188-278dfe054e7f", "text": "in the midstof the tumultuous battles of thet ancient roman empire, visualize young marcus aurelius,a military officer,grappling with the challenges of leading his legions against germanic tribes in the harsh northern front "} +{"id": "8002190", "video_name": "44be3d6a-3c55-5aa2-8afa-988142f19363", "text": "use this same image but animate it, make the legs walk. Message: 1 Attachment "} +{"id": "6003619", "video_name": "79bb7331-e101-58ea-8534-565caeae52ea", "text": "just a fish doing fishy things "} +{"id": "4002028", "video_name": "8609718d-8754-5b35-941f-bc4052e853d7", "text": "People coming and going on the streets ,Bright light during the day "} +{"id": "2005665", "video_name": "4aecb185-3d4b-5da1-b21d-9142236e395e", "text": "a boat sailing and a cloud moving "} +{"id": "4004349", "video_name": "e260d9a5-52b4-5ee9-8aee-0c27d2e8fd4f", "text": "crown data solution logo, using golden crown, black fonts "} +{"id": "0006821", "video_name": "33aa43d2-a892-5d7d-899e-b9e9dad25fdc", "text": "A cow grazing on land was blown into the sky by the wind "} +{"id": "2007483", "video_name": "40773089-d49e-5666-a09b-0fbefcdbf767", "text": "4 foot tall basketball player becoming a 10 foot tall basketball player as he jumps "} +{"id": "2005597", "video_name": "11dd4a94-f08f-5db4-9b89-3cf72f95c33b", "text": "A small drone flying out of the front hood of a car "} +{"id": "8003026", "video_name": "ed641bed-d88f-5c25-8b70-7ebf725d7e22", "text": "a mouse running on clouds in the sky "} +{"id": "1004238", "video_name": "4e768022-02c0-55d4-bdbe-52d51b65d238", "text": "make a group of mermaids realistic smiling and waving from a far from a very old vintage dreamcore movie from the 70s "} +{"id": "0005474", "video_name": "1b688511-f777-5453-bcc3-fcfb20b340b5", "text": "In a cave pool, a large group of fish came out of the water, and people took boats to catch them! "} +{"id": "2005972", "video_name": "e6638beb-0737-5635-9f4c-78be9d1c71b7", "text": "justin trudeau has a hopeful expression on his face as he enters a bedroom in victorian mansion holding a bouquet of flowers "} +{"id": "5001504", "video_name": "a4ae4b22-02f4-53a0-8934-20dd796f36bd", "text": "an overhead drone flight over norway fjord and forest sunny day "} +{"id": "3003671", "video_name": "4e183f9c-74f7-5552-b6d3-c665d7f508dd", "text": "little girl and dog walking in the meadow in the rain "} +{"id": "7002104", "video_name": "c3781c2b-c8b8-5a59-82ab-3bb0381aae1e", "text": "a man sits talking and plays PS 4 in the background "} +{"id": "0006610", "video_name": "2f86a04d-5a31-559d-ae49-e298c9b04e2d", "text": "a pumpkin humanoid dwells in a cave. She is writing in a journal at the entrance to her cavernous home. In the style of Chainsaw Man anime. "} +{"id": "6003474", "video_name": "0e2d6b8e-a387-50e0-9409-24c55bbc8832", "text": "two young people walking hand in hand through a sunny autumn beech wood towards the sun, cinematic "} +{"id": "6002398", "video_name": "d6adecb1-474a-574a-ae35-4f361faf07d2", "text": "Ghostly apparition in an old bedroom "} +{"id": "4004923", "video_name": "26ac4b47-aa74-540d-8f95-5f8a05e2d653", "text": "Supermarket open and superman comes to buy a underwear for his own and he meets Spiderman to climb the Taipei 101 building. "} +{"id": "1005771", "video_name": "6a2c4cc5-f746-58a9-a05a-96e3b2ed6d46", "text": "Purple cows dancing in a music studio "} +{"id": "7002063", "video_name": "3a964a88-d631-56a1-9642-6bac4a4f9d51", "text": "futuristic girl, in a futuristic city walking thought a book, drawings style, bright color "} +{"id": "2006289", "video_name": "80d33476-2b9c-543e-bbc5-1dc766ff0210", "text": "Central theme visually represented: the journey of a curious kitten named Kiki, her lessons from observing nature, her compassionate actions, and the positive impact she makes on her community through her wisdom and kindness. "} +{"id": "3005541", "video_name": "eb539f04-c1e9-5247-ad33-fa6b252412bd", "text": "a surreal shot of a man rubbing his hands while sitting in a balaclava, as if he were about to rob a bank. Let him sit in front of a laptop. He has a microphone in front of him and money on the desk. Let the environment be dark, for example a basement. let the whole create a dark atmosphere "} +{"id": "0006107", "video_name": "26af4ed6-6cda-554b-aec7-f14efcbf5d2b", "text": "fast zoom out astronaut is in open space sees a sparcles and magnifisent performance of lights and space radiation, the camera fast is moving away "} +{"id": "8003087", "video_name": "775edb6e-5cd9-5ae1-981a-f941e41f7381", "text": "3d disney animation of a boy driving a car "} +{"id": "2007738", "video_name": "776c49ba-45fe-5490-9950-8056280d1c2e", "text": "vibrant 3 d cartoon of a mountain lion slinking through a Louisiana swamp "} +{"id": "8002319", "video_name": "eb9b1cf8-06d3-5806-a7aa-9b5b50430f5b", "text": "animated video of a blonde baby with blue eyes sleeping on a star "} +{"id": "4002283", "video_name": "74dc13d3-a872-5e59-b12e-679781d853d2", "text": "A green drop falls into a green puddle on a black background "} +{"id": "6002743", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "small girl tending to the garden, watering the plants and carefully removing weeds, showcasing her dedication and nurturing spirit "} +{"id": "4004089", "video_name": "d227d91b-0024-5de6-8dae-a54c51afbf22", "text": "a hyped close up of ants in Timelapse video speed up "} +{"id": "0003536", "video_name": "3f21bbb0-1bca-5bd4-9d86-67d4cc6098d7", "text": "a priest lost in the woods "} +{"id": "1006144", "video_name": "7091d061-2d77-580f-ad9f-4eb9266aa930", "text": "Kim Jong Un doing a kick flip over Donald Trump in slow motion, 40fps, afterwards Donald trump stands up and cheers "} +{"id": "2003471", "video_name": "f507141c-823b-5ef6-9a03-3168e6635d8c", "text": "2 large hares in a rich green august filed "} +{"id": "2004774", "video_name": "d805def0-5f9f-5f34-8157-d2d6918d3783", "text": "earth globe, realistic,visible continents, slow transition from green to yellow continents "} +{"id": "3004117", "video_name": "1014760d-3747-5af2-873b-0000d7047d04", "text": "Tobuscus minecraft character is shot with a tractor beam from an alien spaceship on the rocky shores of ireland "} +{"id": "4002947", "video_name": "c045fa34-d2e6-5097-8443-86261826029e", "text": "a roaring lion in maroon and gold. "} +{"id": "5001302", "video_name": "ca0ad3cb-9de8-54bd-bbe8-bd1154d95ec5", "text": "a cartoon bird wearing sunglasses on a sandy beach "} +{"id": "7004044", "video_name": "090fad6f-39fc-5266-ae47-0aa6357d5568", "text": "thanos punching iron man, fight, avengers fight, Action scene "} +{"id": "0004220", "video_name": "054707f4-60f1-5f66-8d50-058e2e5e4475", "text": "fruit exploding out of a yellow box "} +{"id": "3006447", "video_name": "81ed99e2-b9ef-591e-bf4f-e8e1a52c06f5", "text": "Man wading through solid thick brown mud "} +{"id": "3003545", "video_name": "7b85b9f3-1c84-561e-b036-b6a2aac6dca9", "text": "people standing on a hill looking over a desolate city at daybreak "} +{"id": "6002239", "video_name": "ed9811e5-8bc2-53e7-b402-98031feec83e", "text": "create an animated flip book showing girl taking shower "} +{"id": "3006218", "video_name": "08a7a422-ff65-539f-8265-d8f92a496e9c", "text": "sunset with clouds and meadow and flowers. cartoon.19:6 "} +{"id": "7003710", "video_name": "4c43bbb0-2435-5cf9-82ad-ffeaefbd3191", "text": "drone flying fast through a rugged landscape filled with nature "} +{"id": "0006734", "video_name": "31f072f1-ca33-5229-b3bb-5f6135014f35", "text": "A woman in red clothes running "} +{"id": "8001212", "video_name": "a6256814-35e7-5ada-be5d-1c0e3250beb3", "text": "a young black woman and a latino man are inside a 1800 English pub in London, seated at the bar and talking animately. A player is playing the fiddle, and the barmen are serving beer to the customers. "} +{"id": "5001747", "video_name": "a7a383f8-7a2d-5cb8-a1ab-b575a86e631b", "text": "I want some pictures of a poor boy "} +{"id": "0004244", "video_name": "05a8e4c6-5a63-58e2-b40c-bd652112cfc1", "text": "realistic side angle view of two people dueling at Dawn in an open field HD 16:9 "} +{"id": "4004448", "video_name": "790ebe76-74e2-5aab-95bf-38c677269e50", "text": "Walking through the streets of New York City during the day "} +{"id": "8001116", "video_name": "db64aa6b-4d4a-5941-89c5-d23ed8f6d36e", "text": "love in the air in Samarkand "} +{"id": "0003787", "video_name": "436b9aae-dcea-593a-9b68-1b27d4cc3b98", "text": "In spring, peach blossoms are colorful "} +{"id": "6002399", "video_name": "9a8f4a10-3dbb-52b7-8abe-03b5a25b8319", "text": "Make a star trek animation of about 30 seconds "} +{"id": "3006275", "video_name": "f5969a27-0969-5600-83c5-e3a4e95a32fb", "text": "an police officer talk with michael myers at night and michael holding an knife "} +{"id": "3003792", "video_name": "f1f8c423-7cb9-5368-adc8-89f8bc7d6019", "text": "on the basis of the image, snow, light, green trees Message: 1 Attachment "} +{"id": "2006936", "video_name": "581b20d1-9660-5b39-9c0b-6b327c4f2e00", "text": "a girl is selected to go to the hunger games "} +{"id": "8002071", "video_name": "fe96cdf2-417d-5e05-a807-2fbdf6af817e", "text": "Portrait of a demon with cinematic lighting "} +{"id": "6002573", "video_name": "dbddc22a-ceb7-5221-b5ed-87316655e6b9", "text": "A person receives a mysterious link from a friend and discovers a subreddit filled with unauthorized photos of their daily life. Show the initial shock and confusion on their face as they scroll through dozens of pictures detailing their routines. "} +{"id": "6004894", "video_name": "9d7df776-d93f-565c-9ee6-b0d8526663dc", "text": "figure skater without arms and legs "} +{"id": "7004573", "video_name": "efe0b006-6c08-5839-9e2f-70303cd6f663", "text": "Mohan Jo Daro, situated in Pakistan "} +{"id": "3004925", "video_name": "725d475b-b0c3-5b97-93b2-00ff9ebffeb1", "text": "A digital sculpture by Leonardo da Vinci composed of intricately modeled 3D fragments algorithmically rendered in complex form. "} +{"id": "6002400", "video_name": "452466f4-e421-51d7-8d53-bb0f16e11c23", "text": "She would sit inside her house, exhausted from the heat, even though she had plenty of specialties to eat "} +{"id": "2003986", "video_name": "452985f6-fe71-5fd2-91a2-ecb7c38cf2f2", "text": "imagine a lion king giving speech to the all animals of his jungle from a cliff "} +{"id": "2007365", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "angel girl is playing guitar in the moonlight "} +{"id": "2005886", "video_name": "6d8758ef-baea-5594-ad72-e3a832e8dfbc", "text": "Margo To Robbie as Kang the Conquerer, wearing a bikini "} +{"id": "3003156", "video_name": "4bd0c954-9038-5e14-9401-a88e8f735c1e", "text": "A cinematic drone shot unveils a glamorous psychology thriller "} +{"id": "2003641", "video_name": "ea2972f9-6950-5edb-a0ae-81d881f49962", "text": "The perfect manga panel, inspired by Tsutomu Nihei and H. R. Giger; scary beast from the future smiles at the camera having just won the battle against heroes defeated resting bodies in 4K tv symmetric art, complex cityscape, with skyscrapers open world citizens; the scene is filled with chaos and lasers ultra high quality definition hyper defined hyper detailed hd 4K, incredible drawings, unbelievable complexity battle scene action epic amazing perfect alien imagery "} +{"id": "1003226", "video_name": "3b688b1c-a282-54d5-b047-97d56bedde5b", "text": "Beautiful view of skyscrapers, roads, residential buildings "} +{"id": "3006140", "video_name": "234d8aec-6c27-5c8e-9259-94624fce8a6e", "text": "a dramatic scene in bc Rome of Roman soldiers marching with horses to the capital Rome carrying swords "} +{"id": "2006832", "video_name": "8cafcec6-a6be-5f72-90da-4fae6e554a26", "text": "stormy sea, clouds, high waves, movement, stars, moon "} +{"id": "0004049", "video_name": "0241b89d-2226-5602-87ad-d2119e978e7a", "text": "large grey travel backpack ar 1:1 "} +{"id": "0004556", "video_name": "0b3789cf-9a9f-5d6c-8060-d2fc8a361148", "text": "robot chicken laughing loud and jumping , 1970 horror movie "} +{"id": "0004939", "video_name": "11e3ab91-6a02-5107-a627-cab0f5beb0c4", "text": "bike has explosive growth of new bikes "} +{"id": "1003819", "video_name": "468cc9cd-6249-53a6-b165-b357dedb4b9b", "text": "a Fife Second long Intro for a minecraft channel "} +{"id": "3003184", "video_name": "040bd18a-26cb-5cee-9d84-e963d8472b13", "text": "Leica portrait of a gremlin shopping, coded patterns, sparse and simple, uhd image, urbancore, sovietwave, period snapshot "} +{"id": "1005221", "video_name": "601bf82e-a48e-546b-a864-0fdca8bd46a8", "text": "starting from white background 16:9, a plant centella asiatica appears descending growing "} +{"id": "2006369", "video_name": "f2a16ed2-975a-5bac-b42a-824b131c8972", "text": "man wearing only underpants flies in space "} +{"id": "1006093", "video_name": "6fa91643-e1e2-5c61-94c1-edbdae7904f8", "text": "A young man tries to get out of the hostel with his wallet on his back "} +{"id": "5001521", "video_name": "15caaf58-982e-5b29-b9b2-33e052175371", "text": "a man sitting on a pc "} +{"id": "3003270", "video_name": "d3e2e0b5-83e5-545d-b82b-7da2f4d9a6e5", "text": "a 3D animated robot lion designing a pencil in black room, with orange sunrays. black background "} +{"id": "7002479", "video_name": "64c8e729-316e-5470-afc5-aee3d94b4116", "text": "enormous towring claymation alien invasion, surroundings colourful claymation "} +{"id": "4004554", "video_name": "1c1fe091-e1d5-54e0-aef2-7c30436d70f4", "text": "a raining cinematic shot of a dark moody night "} +{"id": "6002370", "video_name": "b1620e31-f63a-5fe8-bf01-9236bcf228fa", "text": "Create vibrant images of the sky collapsing, realistic, 8k, Ultra hd, Pixar style, "} +{"id": "3004019", "video_name": "66c6184f-c2fd-5779-aa53-a087724e44fb", "text": "17 year old mediaval miller in wooden clothes working in the mill "} +{"id": "4004594", "video_name": "3c81993c-58a7-57cb-b7f7-e007b32b8f40", "text": "loop animation particle and dots in size 13056 on 1728 "} +{"id": "4002511", "video_name": "7a2e59e3-45c0-53e5-af26-206262a532f7", "text": "A pink sparkly ballgown with butterfly\u2019s "} +{"id": "0006671", "video_name": "30bfd604-5434-53e0-a283-48fa0a7a7a77", "text": "A tired man who has been working for several weeks "} +{"id": "1006918", "video_name": "7e767744-f62f-521e-8e50-9c102b9f9472", "text": "In the vast universe, there is a very shocking black hole "} +{"id": "3003342", "video_name": "c2dd49d2-903f-5517-9b74-2bbfceff591b", "text": "close shot, 4k camera, hyperrealistic scene showing people working in Egyptian pyramid "} +{"id": "1005011", "video_name": "5cb38427-43d6-5916-a6a8-c51e50ef0097", "text": "a positive and upbeat backdrop used in a professional, yet personable video. The backdrop should reflect this space to be centered on learning, but not in an educational environment. The backdrop should emit the feeling of comfort and cleanliness, perhaps a similar to room in the home. "} +{"id": "3006437", "video_name": "ac68ac69-27f9-5411-82cc-98476c39c163", "text": "A beautiful woman stands in a world of darkness "} +{"id": "2003787", "video_name": "bbea7a0c-bca9-5307-b726-c8f418ff6cf6", "text": "The protagonist faces a formidable, menacing foe.\nA thrilling battle or confrontation filled with suspense. "} +{"id": "1005024", "video_name": "5cf0c948-d11e-5499-a74f-c4e95d5ab2e1", "text": "frog sparrow look up the sky "} +{"id": "4003782", "video_name": "296386b9-4275-5234-b46b-aa6b19470eb0", "text": "Despite the harsh conditions, the lake is home to some endemic algae "} +{"id": "1006954", "video_name": "7f42101d-f354-59e0-8f37-1564e0f99bf5", "text": "Arjun, struggling against strong winds and heavy snowfall while ascending the mountain. "} +{"id": "3003259", "video_name": "87fe7289-4e86-529d-93ac-5b536df8a0f9", "text": "an anime 16:9 image of a dj rave set where the dj with long hair is looking behind at the camera "} +{"id": "7004676", "video_name": "168a1d1b-ef27-52ed-90a1-4c11473a8017", "text": "horse in the style of William Morris "} +{"id": "6003142", "video_name": "650964c6-b389-5002-bb2a-6dbbda7fbb76", "text": "a horror movie being projected onto a wall "} +{"id": "1003019", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "butter and syrup melting ove a stack of pancakes "} +{"id": "2004158", "video_name": "b85e0709-cdbf-5990-b6ec-4831cf41d0eb", "text": "raytraced scene with glossy black hexagonal tiles on the floor, glowing lime green balls mid air, and moten glowing cyan lava oozing out "} +{"id": "0005685", "video_name": "1f53315e-4678-51d6-b93a-0fe25363c4af", "text": "Lily is surrounded by three imaginary friends "} +{"id": "0003366", "video_name": "3c4ed905-49bf-5499-814b-dbb1bdc6fd14", "text": "An animation of an adult lioness in the African plains patiently prowling and stalking its prey, in the animation style of old disney movies movie like cinderella and beauty and the beast. "} +{"id": "2007029", "video_name": "cdab8b2a-a81f-558c-84ac-313d144f2fe7", "text": "An animated colonial town with people going about their day, clear , 18th century, people in market , black and white. smoth clear "} +{"id": "3003123", "video_name": "00bc2231-bc84-5899-a766-76950261057e", "text": "Valley with lush green scenery birds chirping trees swaying "} +{"id": "2004261", "video_name": "fc5e302b-618b-5557-b1b9-d39c458ff5dc", "text": "a spartan themed background with the text \u2018This is Sparta\u2019 animated running all over it in a modern graphic design style "} +{"id": "4003959", "video_name": "5e983f05-2b31-5b23-9246-df71e53893ec", "text": "cute cats riding dragons on fire "} +{"id": "3004728", "video_name": "eaa12c0a-63ee-533e-b038-4269f1086624", "text": "yellow beautiful ducklings laugh close up Draw cartoon Walt Disney style motion picture beautiful scenery "} +{"id": "2007991", "video_name": "0e9de9dc-dd11-5f4d-8e93-036c6a84b899", "text": "teenagers white hands closing a suitcase "} +{"id": "7002289", "video_name": "32229b63-c092-5ec9-bfac-d3737a670c3f", "text": "A blue talking parakeet smiles and flies over a dog. It is day time. The dog looks up. "} +{"id": "2006308", "video_name": "5e75958e-764f-5435-a8ee-849d9d34927b", "text": "vintage 8mm footage of a black squid robot eating a mouse"} +{"id": "3005078", "video_name": "685baee7-3d09-52f3-afc5-e4db003541b0", "text": "man stops running through a forest at night "} +{"id": "7002894", "video_name": "23050a2d-b4c6-5752-8fc6-fe7c3e554751", "text": "Eager to nurture his own Gratitude Garden, Sam returned to the village and shared his encounter with the villagers. They were all inspired and began planting their gratitude seeds, tending to them with daily acts of kindness and thankfulness. "} +{"id": "2003915", "video_name": "7c557908-868b-5fac-99f0-555369fe0b43", "text": "Frog is jump to the baby, fishes are swiming "} +{"id": "0003132", "video_name": "37ba8812-a63a-5454-b886-6792e600fe53", "text": "Jesus is coming back to earth. There are angels in heaven everywhere, people are shocked by it all. "} +{"id": "8003918", "video_name": "3ad39596-7a41-5946-bd24-0798660b9e7b", "text": "The husband is reading a book and the wife is talking to her husband "} +{"id": "1005832", "video_name": "6b3e57b0-495e-5708-82b9-6851b10021dc", "text": "Mercedes driving in a tunnel the floor is wet. Cinematic, realistic "} +{"id": "1006738", "video_name": "7b6df5bc-c79f-57cc-a6db-59a1175d5388", "text": "Clock transitioning to images of people waking up and going to bed at consistent times "} +{"id": "3003890", "video_name": "4af9541e-cd52-5e9b-8e2c-35e5f7cf71eb", "text": "crazy emotion on the chromakey background "} +{"id": "2006544", "video_name": "1e96614a-8a67-5a8f-af36-3c8994f288b1", "text": "poker player winning a pot with straight flush "} +{"id": "4003185", "video_name": "7f2b0a74-9d18-58bb-857c-6206f8825552", "text": "a dog roaming here and there for his owner "} +{"id": "2005523", "video_name": "582e31ea-f988-5b7b-a237-d2da9e663755", "text": "cristiano ronaldo walks with a horse across the field "} +{"id": "7003686", "video_name": "a08beed4-b531-5dba-8bb0-93b2fabe76db", "text": "anime girl with long hair stand down sunset on the Mountain "} +{"id": "2006059", "video_name": "30e18ec4-96e2-552e-950a-b36cec5d0dc4", "text": "People frantically fleeing the city, vehicles speeding away with a roar "} +{"id": "3005656", "video_name": "936ec9a4-1c1e-5ea7-b234-b48812c5a0d7", "text": "Eyes fluttering, hair fluttering, and background with burning flames 4K Message: 1 Attachment "} +{"id": "1006112", "video_name": "701e96d6-5d95-5363-9721-7c79007e92e0", "text": "indian actor amitabh bachchan in long hair "} +{"id": "8001585", "video_name": "d7184ae4-b0aa-5838-ab53-a4723a7a78ce", "text": "a woman in a purple outfit standing in front of a purple sky with lightning bolt in her hand and a purple sky behind her, Du Qiong, lightning, concept art, rayonism "} +{"id": "6003865", "video_name": "fdd3c002-957a-5010-811f-92bd15bd90ae", "text": "a yellow dog drop down from the high building "} +{"id": "8003393", "video_name": "4a240401-81c9-5e79-9282-9991138d842b", "text": "girlfrind and boyfriend decided to take a chance and move \n16.9 anime full hd and original "} +{"id": "1006218", "video_name": "720e79f0-83cd-5fb5-9d00-228a2541189d", "text": "the girl picks Message: 1 Attachment "} +{"id": "4002696", "video_name": "c5b80d2b-834d-5d7c-9cf2-c10e9da2ff3d", "text": "a man with head of pumpkin flying at a river in the forest "} +{"id": "2003065", "video_name": "686261be-e155-57a3-adfd-c6116b344516", "text": "king arthur,and the sword excalibur in the rock movement "} +{"id": "2003311", "video_name": "4591e9eb-4dfd-5dcd-b272-04a185c3e2db", "text": "The fallacy of creating a Greek myth out of perspective "} +{"id": "0006747", "video_name": "32488b29-74ad-5fc5-a4f6-2f651183531b", "text": "a camera travelling of a man on top of a moutain doing skatebord "} +{"id": "0003685", "video_name": "41aed7a6-d531-5aee-a4a1-28d422c0f988", "text": "Explore how King Vikram tackles various challenges in his kingdom, showcasing his commitment to justice, fairness, and kindness towards his people. "} +{"id": "0004586", "video_name": "0b9d1e95-7dd8-5187-ac55-ff02a4b5cfc8", "text": "ghost would scare a farmer so much that he could not sleep all night. Due to the fear of ghosts, there was silence in the village in the evening and no one used to leave the house at night "} +{"id": "0006989", "video_name": "365775ba-d583-5735-81dc-5ea43f0f6307", "text": "A boat sails on the sea "} +{"id": "3004694", "video_name": "069245c9-c865-5d7b-9426-3088d6a39853", "text": "The video starts with a shot of a person sitting at a desk, looking overwhelmed and stressed. "} +{"id": "7002512", "video_name": "b824cc0a-d90a-5c47-b2e2-e873a6530681", "text": "an image of a smokey ghost apparition that glows if placed under a black light "} +{"id": "7003827", "video_name": "8c453519-5d43-5456-aaeb-5be4385b4196", "text": "steam coming out in the plate "} +{"id": "4004794", "video_name": "8ac50fc0-914c-59a4-b5b5-c942ee6e8a29", "text": "the importance of family bonds in elephants, and the significance of the deep rumbles that echoed through the savannah. "} +{"id": "5001149", "video_name": "b5b36150-864f-5a61-8059-26598841d94d", "text": "girl sings into a microphone on a big stage, bright light at a concert in the evening, style raw Message: 1 Attachment "} +{"id": "6003214", "video_name": "5106e800-71d4-5c24-905f-b865294f7c97", "text": "Kairat Nurtas rides in s class "} +{"id": "5001369", "video_name": "7a128c4e-6eb2-5a9b-b7bc-b72029b966ad", "text": "a catholic priest runs in a foggy French Quarter in vintage film noir "} +{"id": "0003239", "video_name": "39d85c0c-4091-50de-b23b-77e3e8bed6b8", "text": "Bloodred sky. Raining blooddrops. Cages hanging from above. A young woman. Nightmarish. Fantasyworld. "} +{"id": "0005546", "video_name": "1c9bbaa2-4a79-5e97-ba9f-6a91d0bfb245", "text": "Butterfly flying with blond elf, 3D animation "} +{"id": "2005555", "video_name": "e2cfafd5-0b63-512c-8635-707385eb506e", "text": "the aliens are attacking on the earth "} +{"id": "1005624", "video_name": "67636d98-eeb5-5e36-9f90-8f7c4dd4f416", "text": "man entering inside the Revoult bank and talking to the secretary to create account,realistic,cinematic hd "} +{"id": "8002234", "video_name": "d5e7dd8c-cd4a-55b1-b21c-1d3062524dc2", "text": "Medieval armor The Flash running superheroe marvel engraved lights glass hyperrealistic,8k,complex design suit carved metalic minimalist cinematic full body ,armor with neon lights inside armor,futuristic helmet bust "} +{"id": "2003123", "video_name": "83654db0-e780-584c-938f-1772a5717b0e", "text": "a graphic designer furiously coding while surrounded by empty beer cans in a dimly lit apartment "} +{"id": "0004285", "video_name": "065d9a8e-26d6-57d2-a071-319a2b2a78a3", "text": "a young man changing the tire of a car "} +{"id": "7004407", "video_name": "e57035f9-691f-5d3f-a7c1-83da9c869329", "text": "The video ends with the protagonist gazing out at the sunset, a sense of peace in his eyes. "} +{"id": "1004920", "video_name": "5afa8ccf-ddcc-5f7e-a2a6-a1c050f7f7d0", "text": "burning hellfire from underground, hyperrealism style, 3D corona render "} +{"id": "2006961", "video_name": "306a3620-3685-591b-8969-10e3c3b4572b", "text": "Ancient times, companion maid, oppressed by landlords, feudal society, social hierarchy, servant life, inequality, resistance, class struggle, historical oppression "} +{"id": "8002470", "video_name": "2bf4523a-6e52-5d15-9494-d0bb9ad3a254", "text": "crispr used to develop babies who can survive without oxygen "} +{"id": "1005509", "video_name": "65736363-4a1a-5ef8-bc12-46b544d1003b", "text": "Girl sitting in the forest with her family in good lighting "} +{"id": "0004156", "video_name": "0441e193-16b5-5ddf-8d3b-fa15045c94e0", "text": "Non3D. NonCartoon. NonAnime. Real ergonomics. High quality realism. Mini bikini maiden. "} +{"id": "3006971", "video_name": "b92df4e3-2b27-5091-bd3d-06f3274f276a", "text": "dark fantasy medieval anime woman up close evil demon smiling red sexy hd motion pan down cinematic movie anime niji style "} +{"id": "0004406", "video_name": "085fe729-342b-505d-9f3d-8a176c9bd35d", "text": "an sweeting and anxious man looks straight into the camera and blinks with the eyes, sweat runs from the forehead "} +{"id": "7004269", "video_name": "b29d285f-4212-5f60-bf04-5145a8566e15", "text": "a LoFi Style video of bee harvesting honey, dreamy "} +{"id": "3003974", "video_name": "ab60c308-3984-5985-b89e-b778351bbb44", "text": "wulcan, stars sky, blue see, island, "} +{"id": "2006627", "video_name": "807634d8-6adf-5a6c-a03c-b94c5e3775a3", "text": "Chinese Dragon Year and Spring Festival Blessing Poster "} +{"id": "3005618", "video_name": "090fb640-d017-5a3a-9d1a-97ab623f2a30", "text": "groups of thousands colorful birds singing on branch in the jungle Message: 1 Attachment "} +{"id": "2006597", "video_name": "78592ac8-c746-5ec0-8efb-9729271e8d0f", "text": "the orange light in the background moving "} +{"id": "4002202", "video_name": "c4b4d800-ba94-527a-9ce3-d33074bde26a", "text": "one man tell about the self motivation speech "} +{"id": "3005079", "video_name": "d4ccedee-2fea-513c-8783-9b766c44d872", "text": "Tv set makes an very big explotion with a lot of colours Message: 1 Attachment "} +{"id": "8001297", "video_name": "1eb63df8-5118-5d15-8215-809831794f07", "text": "two man in suits shaking hans in front of a car, sunset as a bakcground "} +{"id": "0006452", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "4 girls chatting happily in canteen "} +{"id": "3006212", "video_name": "a644566f-3963-5e3a-b16b-b7696fc04c6c", "text": "man runs down street as the sky is red. Move only arms and legs camera zooms in slowly Message: 1 Attachment "} +{"id": "7002613", "video_name": "bb6bef63-a857-5e87-8807-f7ec2768c415", "text": "A visionary architect designs a temple from sacred geometry, immersive patterns crafted to awaken higher consciousness. By Alex Grey, Claude Parent, Frederick Kiesler "} +{"id": "2006051", "video_name": "89ac6e57-8397-5588-b5d7-4778ce16c724", "text": "take a step back into time around the 1900s "} +{"id": "7003216", "video_name": "9cb47fcb-a968-53e7-a2c8-f522642346e3", "text": "The emperor is wearing the dragon cannon "} +{"id": "6004135", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "Emma, sitting alone in her room, looking sad and lonely. "} +{"id": "1006248", "video_name": "7277b289-0f0c-53a1-a8ed-88f9ad01f65e", "text": "jogjakarta city with tugu in anime style "} +{"id": "2004220", "video_name": "36416b9c-58f8-5324-b6a0-bb06dab1892b", "text": "image, hospital, Eye Dept CHAF written in the centre "} +{"id": "1004435", "video_name": "51fededb-8486-5555-87ca-acaad30b7d67", "text": "In the frozen expanse of Antarctica "} +{"id": "1004158", "video_name": "4d093dbd-68a4-5a88-a7d2-184e58081042", "text": "Bmw 5 series drive in the street video "} +{"id": "4002518", "video_name": "4c8ef787-a52b-59a1-9397-b048ebfba818", "text": "Alex the boy spent his days exploring the nooks and crannies of Valeria the town , always on the lookout for something extraordinary. 3d animation, disney style,high quality, 16:9 size "} +{"id": "0005422", "video_name": "1a958b9a-81d7-528e-baed-389abb75311d", "text": "letter CO KHI 3: sprinkle floating, hyper realistic, photographic "} +{"id": "0003764", "video_name": "42ee1098-e1ea-5ded-8443-e22ec386839b", "text": "Animate a heartwarming moment between the pets and humans, reinforcing their strong bond. "} +{"id": "5001042", "video_name": "d945df6e-54c6-5172-b5f5-fc59f51a46c9", "text": "create a cinematic video in which The Wolf of Wall Street and Margot Robbie become homeless "} +{"id": "0006276", "video_name": "29e501cd-ec48-580a-b5d2-99225ca581ca", "text": "A person getting into a Dodge challenger "} +{"id": "8003577", "video_name": "6b769d95-9f35-502e-853d-bbb1503ac038", "text": "a castle fly on the sky "} +{"id": "6004663", "video_name": "50c6aabe-5f7d-5766-ac58-863c0c1f120c", "text": ":A 1977 live film Directed by Stanley Kubrick , a people holding cross being lifted by an UFO in Machu Pikchu, distopian aestethics "} +{"id": "1003409", "video_name": "3eef4dbb-1a71-58ba-8a54-f5b8bf62b873", "text": "giant Cthulu in the storm and a boat "} +{"id": "4002724", "video_name": "968bd20c-571a-54cd-a54c-aadb9f1d99f2", "text": "camera movement pan, hair blowing, blinks slowly "} +{"id": "4004905", "video_name": "781fe6b5-e6c9-5f29-a489-b913a1d40d1c", "text": "A dog with flowers Message: David (Font: MODERN) "} +{"id": "8002860", "video_name": "a20fa7a2-3031-5b95-99ab-6e1bb8f9aedf", "text": "A turtle and a crab fighting with each other "} +{"id": "4002529", "video_name": "21f25561-47dd-583b-a089-03657cb3d621", "text": "Harry Potter them in Indian street "} +{"id": "4004188", "video_name": "034d9a4a-432f-5ceb-b18e-ae83a08d4e8c", "text": "giant maine coon, small people around, people praying "} +{"id": "3003797", "video_name": "682ed326-4e81-52d5-b10b-7c50f9629132", "text": "3d typography of the word love, on a yellow background, chrome shiny texture, ridges, minimal "} +{"id": "8002213", "video_name": "9c1ac9c8-533f-55bd-a146-607352bd6447", "text": "Happy man running in rain and jumping "} +{"id": "4002260", "video_name": "5e388c33-bb08-532e-8ff9-c210a77a2f91", "text": "logo for shoes store in colours red and black and gold write on it royal family shoes "} +{"id": "2005589", "video_name": "b26fdd04-fd59-5e2e-9323-0b4af78c6113", "text": "Cinematic shot of the Big Lewbowski bowling "} +{"id": "8002102", "video_name": "97c1d918-725d-5f30-b6a5-53db6d34bec2", "text": "closeup handsome young man smiling, twenty years old, blond hair, blue eyes, great smile, happy, white perfect teeth, ultra realistic photograph, hyper realistic people face "} +{"id": "1005974", "video_name": "6dbc176b-2174-5e7d-a34a-d485dd92b357", "text": "a man in a black tuxedo with a raccoon face walks along the golf course and gesticulates with his hands "} +{"id": "4004968", "video_name": "0cda0f42-b514-5e67-aa8a-55c6efeffc99", "text": "A flying saucer slowly descends from the grassland "} +{"id": "6004438", "video_name": "3b8d3d37-9ada-528d-a28c-ae1d379cb9ea", "text": "boy reading a book, listing music "} +{"id": "2003729", "video_name": "c944fdc6-4859-5380-8d9f-cb6894ed2e30", "text": "Describe the vast Savannah at sunset, with Pride Rock standing tall in the distance. "} +{"id": "3005260", "video_name": "a00ef906-88e4-5b95-abff-88d208918fa4", "text": "meteor crashing into the earth, realistic "} +{"id": "3003883", "video_name": "1605def4-12e8-57b6-a374-b1bc98fd7bd9", "text": "cute kitty runs next to small puppy "} +{"id": "2006379", "video_name": "ef4bb515-8ed3-50b3-8819-7eaf8cf16511", "text": "woman with no face covered in blanket slowly sitting up on a bed in a very dark bedroom, creepy vibe "} +{"id": "2003602", "video_name": "2a9e77bb-3982-529f-b68a-19b595ff50b9", "text": "liminal space, pink field with big clouds , retro film effect, panic "} +{"id": "0003646", "video_name": "40f3beff-e57b-587d-bb39-4fe682c90c93", "text": "A mountain full of snow and fog and the sun is rising and shining on the mountain the video is moving inside and on the side of the sun, realistic colors, 4k realistic "} +{"id": "2004100", "video_name": "17042bd9-0373-5b69-9050-f1e5b0ba22fb", "text": "a whirlpool of money flying into the center of the pentagon building "} +{"id": "8003253", "video_name": "3a528114-192c-5f5b-a9e8-844dec41e751", "text": "A colorful antelope runs under the stars, though surrounded by cold and snow. "} +{"id": "7003533", "video_name": "c265efcf-3daa-5206-8eb6-917009661ff4", "text": "A gradual transition from the starlit natural world back to a more familiar night setting, perhaps a softly lit garden or a cozy balcony view. "} +{"id": "1005164", "video_name": "5f0dbe00-bb22-5100-abdb-ec373de0aaf2", "text": "video of the two characters eat a juicy pomegranate "} +{"id": "5001700", "video_name": "409b206b-d74c-511d-9010-bdebbcd11222", "text": "cello virtouse dies when playing the instrument "} +{"id": "8003315", "video_name": "139888f1-b177-5cf5-9868-1c1ea11de323", "text": "sun 109 times bigger than earth "} +{"id": "3004137", "video_name": "5dbcca11-d327-5b49-a65a-529adc811395", "text": "inside a beautiful white aesthetic castle, tour "} +{"id": "1003583", "video_name": "41fa57e2-cba8-55ac-9acb-971f6173f4d1", "text": "Sunset or a serene closing image. "} +{"id": "1003775", "video_name": "459dab14-3b4c-5f67-b8d8-e76b3c5922e4", "text": "cinematic hyper realistic ducks sitting in a living room smoking while playing a video game on Old style TV "} +{"id": "1004804", "video_name": "58c6180c-db1c-5f01-95ab-ce9f193a34cb", "text": "giant letter E made from earwax "} +{"id": "3004388", "video_name": "382332dc-32cc-5228-9956-31e0cef795f8", "text": "A Lakshmi in meditation, with her eyes closed and her hands in a mudra. "} +{"id": "3005923", "video_name": "f193fd76-1a9f-522c-afb7-785289977df0", "text": "whatever you want to show the world "} +{"id": "7003911", "video_name": "b8278566-0f97-5b26-980c-0f4f454b096b", "text": "Jason Voorhees surfing on a body. "} +{"id": "8002575", "video_name": "eb65fb9e-0100-5e79-8ae1-551618559e98", "text": "researcch tam is goig to article circile in a vessel "} +{"id": "5001553", "video_name": "06872501-0ff3-5825-a0cc-a5dde87ecc36", "text": "Denisovans add a layer of complexity to our understanding of human evolution "} +{"id": "8003967", "video_name": "7db9e17c-8cf4-5694-898a-898e22393fde", "text": "An image of a wise old lion standing atop a rock, addressing the assembled animals with a look of authority. "} +{"id": "2005903", "video_name": "5db3526d-81de-515f-a766-320abb0ab607", "text": "a hand drawn cartoon dog running through a high school hallway "} +{"id": "0006688", "video_name": "31193a71-e333-52bc-aaf4-daaf90b496ad", "text": "blue bird flying over psychdelic field "} +{"id": "8003168", "video_name": "64f0283c-13b0-5e3c-bf94-c291295e00b7", "text": "Scene opens with a group of intrepid explorers standing at the entrance of an ancient, foreboding cave. Torches flicker, casting eerie shadows on the damp walls "} +{"id": "3003558", "video_name": "dd651c51-301e-5383-80f3-80370a997a2a", "text": "a dancing men in the middel of New York "} +{"id": "1005061", "video_name": "5d87baaf-48c0-58db-a38a-58af6f47a631", "text": "time lapse boulders rolling down a mountain side "} +{"id": "6003750", "video_name": "24bdf8f7-2356-5198-9255-5f1cfe910944", "text": "A dense smoke of a explode smoke granade on the floor of a village Message: 1 Attachment "} +{"id": "0006882", "video_name": "34acb7ef-d1b6-5d42-978d-59cd257d9224", "text": "A heartwarming scene of Ram and Shyam embracing as friends. "} +{"id": "3004167", "video_name": "e7c2e27f-1e31-5706-a7b7-6640b6e4c0e5", "text": "video for global view for beautiful village in disney style "} +{"id": "1006506", "video_name": "771576c7-4fb1-57fb-b254-7c95ac9ab41e", "text": "monviment Bright move on the parts with brightness on "} +{"id": "4003234", "video_name": "c0f4905f-0214-55cb-978f-41a140abf1b4", "text": "A kitten is playing table tennis, anime style, give it to me "} +{"id": "6003670", "video_name": "cd800c05-d3ff-5f15-b689-129a15c3aa9e", "text": "animate abstract cosmic shiva meditating and creation and dissolution of the universe happening within him "} +{"id": "1005166", "video_name": "5f18d30a-2a10-5299-b71a-1a591e44b4aa", "text": "Rare grilled meat with burning embers underneath and the fire moving fast in the background "} +{"id": "4003024", "video_name": "8621741b-5308-5102-857c-abba69f0ee46", "text": "A stuffy office and an employee looking up from a monitor, smiling into the camera, high angle "} +{"id": "3005549", "video_name": "380da006-6807-5167-ac15-3e903dad1a0b", "text": "people watching a spaceship on a tropical island "} +{"id": "4004237", "video_name": "40da6a19-268c-55b0-a8ab-9872603b7d51", "text": "the 3d animated girl sad crying the animals showing theie hospitality and gratitude many animals walking animate the scene slightly breeze blowing birds chirping trees shaking animate cinematic hd 3d animation "} +{"id": "4003657", "video_name": "c6bdcc14-aec1-53f6-82b5-6dcb5988d055", "text": "girl walking to her friends, realistic movements "} +{"id": "0005258", "video_name": "176ab26d-b89d-5778-8430-5243353a4ccb", "text": "lovers walk along the beach at sunset "} +{"id": "6002700", "video_name": "93c812d6-66d7-5897-9088-41f869b27a46", "text": "sam sulk fleking his arm when he ware a summer glasses "} +{"id": "4004908", "video_name": "7cc9b375-7821-53d2-9071-cf6bb273a351", "text": "The little girl with black hair, wearing a red coat continued to run through the fog into the cave. Message: cave fog (Font: MODERN) "} +{"id": "0006353", "video_name": "2b1f0135-a998-58be-a403-d71943971556", "text": "A nervous candidate walks up to the door of a company with a resume in hand. "} +{"id": "6003733", "video_name": "add229fb-51bd-5bd7-886c-3860550d3f59", "text": "an airplane dumping oil onto a LA skyscrapper "} +{"id": "3006075", "video_name": "3307eeff-6f2a-5974-a75d-aef3605758d9", "text": "Provide me with a historical story set in the 18th century featuring the clash between the Mughal Empire and the British forces "} +{"id": "2007591", "video_name": "0d3072a5-abda-5ecd-bceb-c4fac71689d3", "text": "As they strolled through the market, Lily, Jake, and Emma met a jolly old man named Mr. Claus, who shared tales of his adventures around the world on Christmas Eve. He emphasized the importance of gratitude and the joy of spending time with loved ones. "} +{"id": "8002468", "video_name": "23d5c8a3-b59a-55e9-8c75-d9c56b4f15d6", "text": "Scene 10: Happily Ever After Lila and Ava return to the enchanted forest, where they build a life together, surrounded by love and acceptance. They live happily ever after, their love becoming a legendary tale passed down through generations. "} +{"id": "7002594", "video_name": "eb66071d-53c3-5c16-b336-90222f928501", "text": "white ford focus st 2008 vs black opel astra opc 2008 at launch "} +{"id": "8002248", "video_name": "5c81684a-3885-5eac-b3b3-9a8fb9fdfb47", "text": "a parody of people waiting for videos to appear on their computers "} +{"id": "0006624", "video_name": "2fbd88fc-1d23-5e62-bc39-8c28afaa47c5", "text": "Luxury sports car with aggressive lines, shot in a high contrast, high key lighting with shallow depth of field, detailed, sporty, sleek, studio lighting fit in the frame silver color more photos "} +{"id": "1005658", "video_name": "67f20417-22ae-5803-9233-157e774c59d9", "text": "An old black and white photo of the original Bikaner shop from 1937 "} +{"id": "4003534", "video_name": "3fe51691-d71a-52b6-981f-4e8eb4d1a0a7", "text": "knight preparing for battle epic style "} +{"id": "7004420", "video_name": "8799a1f2-b158-5695-8713-2c5d2d005f7c", "text": "tips,Brain controls all activities of our body and mind. All our memories are stored in the brain. This brain is the holder of our mind and identity. Humans can survive with severe damage to other organs. But if the brain functions completely stop, then there is no control over the other organs of the body. So this rest is very necessary for the good health of the brain. How to ensure brain rest: "} +{"id": "4003483", "video_name": "183c75e0-204d-5278-84fe-946fc0d52620", "text": "A cute cartoon of a woman who is full of love "} +{"id": "2004146", "video_name": "7faa7005-d489-5fa6-b572-78151638816a", "text": "A single strange little animated character using tarot cards. scary. mysterious. Weird. "} +{"id": "2007626", "video_name": "0bb921f8-4505-5e53-93d0-8e448ad8eed9", "text": "Forest with sunflowers on a cloudy day, mist, natural lighting, Message: SIMMAJE (Font: MODERN) "} +{"id": "0003981", "video_name": "01075152-9c3c-513d-9446-62db9502196b", "text": "side view of a suited man walking "} +{"id": "0006431", "video_name": "2c290e7e-eb9a-5478-85d3-42ee748ab52c", "text": "a mom reciting a holy quran infront of her daughter "} +{"id": "3006714", "video_name": "b38658a1-bcbc-5ad2-b126-4f15c5c0630e", "text": "streamer watches the city at night from his room "} +{"id": "8002250", "video_name": "1e5b8217-e3c6-58bd-bca4-41795cea2075", "text": "a closeup video of a pretty young girl smiling in the middle of the day with the sun "} +{"id": "8001471", "video_name": "afabbf8f-736a-5d02-bb35-787c616b7a12", "text": "oboe concerto playing in orchestra band "} +{"id": "0004081", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "a man practice chinese kongfu at mountain "} +{"id": "2007734", "video_name": "d8bb1364-b387-569d-8b21-83b24cca9108", "text": "Baby playing very nice music image "} +{"id": "2003460", "video_name": "91c0f8e9-cb8c-5d7b-91e6-7810fa55b9fa", "text": "hyper realistic Pheonix made in fire flying in slow motion in the air, leaving red strikes behind him. "} +{"id": "0003776", "video_name": "432db108-a7aa-56b0-ab29-c46af912be85", "text": "Imagine a celestial scene depicting Hagoromo and his brother sealing Kaguya Ootsutsuki "} +{"id": "3004411", "video_name": "f542969d-0c2f-5d46-ac1b-6fbdb607b444", "text": "a turkey dancing on a pumpkin farm "} +{"id": "8001741", "video_name": "a439680c-eb71-5924-9a43-1e9ac8811621", "text": "inside the cockpit of a totally wrecked air liner, ripped and destroyed. wires dangling hoses leaking, sparks, water dripping, electrical fire "} +{"id": "7004870", "video_name": "d75e5077-1377-524e-87fe-9a0301844a51", "text": "flying squirrel with tech captures grey alien "} +{"id": "1003338", "video_name": "3d6ae8aa-127f-5dc6-9a8d-3fbb9544e5c4", "text": "animated cyber man throbbing in space "} +{"id": "7004013", "video_name": "6c86607b-c1a5-59dc-b0fe-37921f691ed1", "text": "pet food canning facility interior with conveyer belts and cans being filled "} +{"id": "1005555", "video_name": "6643085d-87d2-59d0-85ac-2efb165d114d", "text": "A scene from a western in which a cowboy runs downs a dirt road. 4K. "} +{"id": "2004307", "video_name": "dfc4ee2d-a7b8-575d-9afa-0d25b6b20e99", "text": "A few children, on the bridge by the river, count how many ducks are in the river below "} +{"id": "0003184", "video_name": "38f0125d-7e11-514f-b1ed-20c75ce31cbe", "text": "A Japanese 17 years JK girl dancing in the snowy noon. "} +{"id": "1004181", "video_name": "4d60c375-ba8d-5d07-a355-69485cd235c1", "text": "beautiful lady talking in mobile phone "} +{"id": "5001859", "video_name": "3b0b6d1b-d9bd-5dc9-a3a2-fd94363edfb2", "text": "Long vedio,change backgroud ,3D, plaestine flage on shirt Message: 1 Attachment "} +{"id": "6004931", "video_name": "209675c7-8d5e-5346-9960-54dd244b16cc", "text": "From that day forward, the blue crystal car became a symbol of hope and progress for the Autobots. It represented their unwavering determination to push the boundaries of technology and their belief in a better future. And at the heart of it all, Teletraan 1 stood as a testament to the power of AI, guiding the Autobots on their journey towards a brighter tomorrow. "} +{"id": "8003385", "video_name": "49d85d18-cf0b-520d-8b88-6e22f7e7fe10", "text": "a spirit being made of technology, rainbow electricity, and flames. 4k, hyperrealism "} +{"id": "3006816", "video_name": "1c3a6303-8d6e-5b19-98e6-4e790c3a5d2e", "text": "Create a serene scene with Leo and the cows, conveying the moral of the story. "} +{"id": "3003956", "video_name": "0752e1ab-6010-5229-98c2-2076c4f6ce46", "text": "topographic ligthning minimal neon glitch effest,zoom in Message: G M (Font: BAUHAUS) "} +{"id": "4002931", "video_name": "abe362bd-812d-5d52-8337-bc15193338fa", "text": "write on a rusty wall Message: ALGORANGE (Font: MODERN) "} +{"id": "0003157", "video_name": "38356f4f-61ab-5ddd-84fb-b45acd9bebbc", "text": "The 21 year teen age boy picking a deep red rose and offering it to the 20 year teen age girl, who accepts it with a radiant smile, her eyes reflecting the depth of their connection. give me beter "} +{"id": "3004166", "video_name": "dbab2209-63fa-548b-9be6-c939a8a5b196", "text": "city buildings in the aerial view Message: ILYA (Font: MODERN) "} +{"id": "1006577", "video_name": "787f81c7-579a-59a3-ab71-93e42fd8bfc7", "text": "SIMPLE LOGO with the word ZERPAAY "} +{"id": "6002324", "video_name": "2c845bd3-7d00-5b4b-9246-4eadfedde01f", "text": "Bro\u2019s hub text is being painted by three boys on the wall "} +{"id": "3005291", "video_name": "e34128c4-956e-5180-b939-2df7e4682e79", "text": "A woodcutter is cutting trees in the forest\na rich forest is in background\n high detailed ultra hd diseny style "} +{"id": "6002547", "video_name": "a539ffe2-b57e-5c61-a748-53ec4a925e5d", "text": "We will be happy to provide a prompt for you to explore your feelings in the context of art. How does this prompt sound?\n\nA witch in the woods alone, searching for a sense of inner peace and clarity about the direction of their life. Searching for the source of their power and strength, exploring the inner depths of their mind and soul to find the answers they seek. Using magic to understand themselves or to gain insight into their destiny. 16:9 4K resolution "} +{"id": "8001154", "video_name": "55645fef-6469-5066-89db-2b66fbdcccc1", "text": "a few icelandic birds moving rapidly around showing there wings photorealistic "} +{"id": "3004400", "video_name": "8527606f-564f-5310-a76d-c34169c4c479", "text": "make a trailer of anime movie where 10 gods figth "} +{"id": "8003728", "video_name": "9cc99389-83c3-52d4-aba2-169ed8237ff2", "text": "Mobster from the 80s, financial market graphics "} +{"id": "2003169", "video_name": "590262df-e287-5395-baba-412e989c0254", "text": "In the heart of a tranquil park, amidst the rustling leaves and the gentle breeze, a love story unfolds. A tale of two hearts entwined by fate, set to the sweet harmonies of a heartfelt melody. "} +{"id": "1005619", "video_name": "674d6dfb-590e-50fc-943d-7bacd1dc62e9", "text": "a women with golden hair with golden crown with golden stardetails, realistic 16:9 "} +{"id": "0004103", "video_name": "0342f18a-f60f-5877-a514-392db48e63ad", "text": "Once upon a time, in a colorful world nestled between rolling hills and endless meadows, lived two best friends named Alex and Maya. They were known throughout the village for their infectious smiles and boundless energy. Their favorite pastime was exploring the enchanted forest just beyond the village, where they would often find themselves immersed in magical adventures. "} +{"id": "2006904", "video_name": "abfed9ef-603b-5cc1-995c-86fd214c5fe7", "text": "a train on a railway with several passengers "} +{"id": "8002570", "video_name": "6ea8a827-5d9f-57d9-9808-3df9e0704f9e", "text": "a man walks into a store "} +{"id": "8002275", "video_name": "6f550fc4-a141-5061-beb8-f4a62591ad6e", "text": "snowfall at night, empty street, gothic street lamps lit up "} +{"id": "0005539", "video_name": "1c80bc1b-6e00-546e-bc09-0750e7c6aefc", "text": "A green Worm. Pixar style. decides to explore the world "} +{"id": "2006080", "video_name": "702221cb-3a04-58d6-bd31-6d4726617759", "text": "2d animate a squirrel running towards a fruit in the tree "} +{"id": "2007298", "video_name": "aff5d033-a4bf-5926-9d22-ced47ee4a887", "text": "leaves blowing in the wind, flying cars flying by in the distance, stars glistening Message: 1 Attachment "} +{"id": "0005988", "video_name": "2496f8c7-e295-515e-81da-d179fbfbbf32", "text": "Scientists have not found major events on the oceanic floors "} +{"id": "7002223", "video_name": "f7faf4d7-05f2-5d6f-bc13-19aabc46e136", "text": "labour used shovel to add coal to oven during the industrial revolution, documentary "} +{"id": "2007861", "video_name": "6c416e1b-e004-5eac-a1f3-980adcb12d10", "text": "full length kid boy with brown hair and brown eyes, top model wears blue jeans and long transparent plastic raincoat with blue denim details, wide denim belt, mirror sunglasses. ice desert, silver racing car is visible in the distance Message: 1 Attachment "} +{"id": "4002120", "video_name": "316921fb-ce5d-5400-9b06-e87fe6b8f989", "text": "a green landscape with coconut trees dancing in the wind, a lone Kerala style hut in the middle, paddy fields "} +{"id": "2003339", "video_name": "96a25906-0c5f-5f36-9a52-c038d74e795c", "text": "Cinematic scene of a Korean woman in a New York cafe looking intently at her laptop and typing on the keyboard "} +{"id": "1006766", "video_name": "7bd1de19-5dee-5249-9b5b-1fc4c492e7c8", "text": "realestate photographer working in a scandinavian home with a family running around disturbing "} +{"id": "1003613", "video_name": "4295b41c-fdf4-5b5e-95de-8f31000fcf3b", "text": "evening street of Paris, cafes and lanterns "} +{"id": "6004364", "video_name": "7b79b955-289c-53d3-871e-ddbf8217f9ed", "text": "mustang car speeding, by fast and the furious, cinematographic, highly detailed, realistic, volumetric light "} +{"id": "6002159", "video_name": "c172b5b2-43f5-5487-ae41-6e791e629787", "text": "a space ship landing on frozen plante, from the inside of the ship comes out an octopus who instantly freezes "} +{"id": "4003050", "video_name": "77e2cd56-d819-5f8c-a7aa-40b6e14984cd", "text": "Create a logo for a clothing store called Mega Style RD "} +{"id": "3006771", "video_name": "25a383cf-cbd1-53dd-babc-edd32be2aa8f", "text": "abdelfatah elsisi on the giza pyramid "} +{"id": "0004859", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "woman walking in the forest, we see her from behind, klimt style "} +{"id": "2005809", "video_name": "aadea927-d270-5ec2-8a05-207102988c2d", "text": "Create an illustration of a horseback rider with a GoPro strapped to his chest as he gallops through a natural landscape and records the riding experience. "} +{"id": "6004131", "video_name": "b91128dc-9219-5700-9a68-32b0b0d60554", "text": "Beautiful nun praying inside of a church "} +{"id": "7003778", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "A horde of zombies is walking down the city streets during the evening, captured using an old camera. They suddenly notice the camera and start running towards it. The video is being recorded in 4K resolution with motion 2 settings and a 16:9 aspect ratio. "} +{"id": "2004788", "video_name": "8d85a8a2-6eae-5a39-bde0-fcbe1f6c1227", "text": "a shadowy man with a cloak covering his entire body, in an alley, walking with a silver sword that shines "} +{"id": "5001043", "video_name": "c822f104-96fc-5e1c-928f-996cde3c014f", "text": "a picture of chain burning and written as burn the chain in the picture in capital "} +{"id": "1005479", "video_name": "64a3a91c-1fb2-5e02-a3d2-36ba7225c984", "text": "A pirate ship crashes through a big wave. They are in a thunderstorm "} +{"id": "8002624", "video_name": "1d260b05-0e83-5bbf-a26b-5088c9ad5095", "text": "muppet devs coding on supercomputer with led light "} +{"id": "3003576", "video_name": "5ee1411b-aa1d-52bc-bad4-2643f99ba1c7", "text": "The bird flies down to the water and catches a fish. "} +{"id": "3006733", "video_name": "8391d868-8907-5126-9b5a-e6c0cc43faf3", "text": "The rejection persists, transcending the superficial variations of environment and companionship, highlighting the eternal dissonance between desire and existence. "} +{"id": "3004207", "video_name": "df12c34f-0804-5e6b-ada5-4c67f12c56f4", "text": "a black hole with its event horizon rotating video , 16:9 , 1080:720 p "} +{"id": "8001523", "video_name": "f003f0d7-0217-5fad-b446-2eca6a8992e3", "text": "Create an image depicting the serene morning atmosphere in a small village, with the sun rising on the horizon, the sky tinted orange, and traditional houses amidst the rice fields. "} +{"id": "7003929", "video_name": "04530fc2-0c7b-5348-afea-3b5010aea3d3", "text": "a camel stands next to a penguin. They are standing in a snowy field. The penguin is happy. The camel is happy. "} +{"id": "4003599", "video_name": "78d91b62-e0f9-554b-a2fd-ec1882061dea", "text": "a town calmed like a ghost town "} +{"id": "5001531", "video_name": "2603b986-6f69-509c-913b-fc0a43060eb6", "text": "a daschund cooking hot dogs infront of the prime minister of Malaysia. "} +{"id": "7002877", "video_name": "94650ea8-a33d-5737-a9df-8a6a4582c131", "text": "a man standing in front of the house with his daughter "} +{"id": "8002389", "video_name": "30b27ea6-175f-56b9-94ad-d41b1c9abea8", "text": "Heavenly Bow Empire is a small country in the western regions of Boundless Mainland (Hao Miao Da Lu). It isn\u2019t bound to any larger countries, and its environment and climate are extremely suitable for humans to live in. "} +{"id": "0006476", "video_name": "2d26e551-9f58-5413-8ae7-50a87f0f4613", "text": "a little boy lost in the forest and met a tiger "} +{"id": "2006009", "video_name": "000239cc-de9b-56f0-82ef-6af678c0a85f", "text": "beautiful village sonset time evening in 3d cartoon 1080p quality "} +{"id": "8003775", "video_name": "1ac502b1-5121-5bd0-8767-9ba775d48cef", "text": "Create a dynamic black and white masterpiece that features a geometrically impeccable tree at its center, surrounded by complex patterns and forms. Utilize bold, precise linework to outline the tree and its surroundings. Incorporate actual mathematical equations or symbols directly into the art, so as to resonate with math enthusiasts. The artwork should convey a sense of movement, as if the tree is swaying, creating a seamless fusion of natural beauty and mathematical accuracy. "} +{"id": "5001620", "video_name": "e3556d88-2b9a-5d4e-a754-6aaaeafdefba", "text": "A realistic green jet airplane flying in the sky and then very quickly breaking apart into smaller robot airplanes "} +{"id": "2003522", "video_name": "1922174a-2a38-593b-97d5-5d8778e3c81c", "text": "An astronaut resting on mars in a beach chair, vibrant lighting, elegant, highly detailed, smooth, sharp focus, illustration, beautiful, geometric, trending on artstation, full body, cinematic, artwork by borovikovsky, 8k "} +{"id": "8003983", "video_name": "83cbf3f6-951a-5eb9-bedd-5314b434fe71", "text": "A empty street at night, with yellow nehon lights and water pudlles on the pavement "} +{"id": "4002196", "video_name": "dd8b85fc-e27c-54ec-927d-23844f882540", "text": "A lion and a fox grow up to be boys in the same field in time "} +{"id": "2005447", "video_name": "8b6455f4-8343-5bd2-9434-73f5f19d8053", "text": "concerned officials in a meeting room "} +{"id": "6004551", "video_name": "0d82d70a-0eb9-5d74-87b6-507cbe32114c", "text": "sky full of star which are twinkling "} +{"id": "1005396", "video_name": "6330b6b9-a165-5312-a756-9a7b5e34c184", "text": "An encroaching shot of a shabby texture. "} +{"id": "1006092", "video_name": "6fa883d7-5fdd-55a5-b833-9a11dbdb9f93", "text": "animate water and face of woman "} +{"id": "2003307", "video_name": "771d02bb-b38e-5664-bd84-b218cd800976", "text": "sunset breaking through the rain clouds, signaling the end of the hunt "} +{"id": "7003151", "video_name": "827c6412-e7b3-562a-aaee-66eb4098c0cc", "text": "shaking a left hand and more smailing brightly Message: 1 Attachment "} +{"id": "1004425", "video_name": "51e58c90-7a9d-579f-b3a9-73869e0fe369", "text": "Generate astronauts on the international space station "} +{"id": "7004914", "video_name": "c361b6c5-f33f-536c-bc2d-610204dbd3b1", "text": "16th century spain cocoa drink shop "} +{"id": "5001954", "video_name": "8b328137-396c-5b98-a984-8a74f47e7bd7", "text": "the ancestral home of the deep dwarves, the dark caves of Gol Golsthurr "} +{"id": "0004927", "video_name": "118e45d4-74ae-5b8e-a04a-823e94e2ffd8", "text": "a beautiful asian girl, wearing a skirt, walking to the left, in a room with traditional medicines, video ratio 9:16, video length 10s. "} +{"id": "8001427", "video_name": "df85b68e-e782-5d74-876a-96054a4ae45d", "text": "Indian cartoon character and forest everything With the camera angle looking down at the well from the sky, he looked at the gold coin every day and was happy. "} +{"id": "2006077", "video_name": "aebdc07c-0462-5986-b7c3-1938486b6359", "text": "vibrant futuristic city. 32k HD. Colourful world. Full of advanced technology and robots. Perfectly looping video. "} +{"id": "3005419", "video_name": "6e684181-497c-577f-af85-821378b5259e", "text": "300 warriors on horseback descend from the mountain to the king "} +{"id": "6003953", "video_name": "4136ead5-db4b-5853-b4dc-ca21d27c1f50", "text": "The young man with brown shirt and backpack saw a small microphone from a distance installed in the corner of the cigarettes and tea making shop where the sound was coming from while he is taking a cigarette Kolkata bazaar "} +{"id": "8003505", "video_name": "d7e5c051-756a-569f-be40-9229bd9c0c13", "text": "Children as Advocates for Nature: A scene showing the children speaking in front of other villages, passionately sharing their stories and promoting the importance of nature conservation and education. "} +{"id": "1006751", "video_name": "7b9aaaff-2ab3-5217-ae97-74c02b77490b", "text": "Compose an enchanting and immersive narrative that transports the reader to a tranquil camping haven, concealed within the dense embrace of ancient pine trees in the heart of the Pacific Northwest "} +{"id": "2004250", "video_name": "8241cb8d-3e6f-5eaf-816a-77e2100c86cd", "text": "Show Spiderman swinging through the New York City skyline using his webs. "} +{"id": "7003399", "video_name": "6db995cf-ed7a-5585-8632-e7a99939c569", "text": "blue eagles flying over a hill "} +{"id": "0006169", "video_name": "279c5dfb-5114-54a1-acd9-118fd3942d72", "text": "On this mountain, God will eliminate the curtain that hides all people, coverage that encompasses all nations "} +{"id": "0006977", "video_name": "362403e9-76c0-5e77-bd65-6835c7cf283e", "text": "long baby colognes blinded everyone by walking all over the world, so the perfume war began "} +{"id": "3005271", "video_name": "ea329c12-548d-526a-9060-f77eba37bdd3", "text": "the buildings form an inscription Message: MAX (Font: MODERN) "} +{"id": "2004363", "video_name": "33ba3185-9123-54fb-b88f-1c2e84936e4d", "text": "The single powerful Rin girl speaking in 3d animated jungle "} +{"id": "2004313", "video_name": "4c3bf2f2-7442-5333-bee8-7301c9f2314e", "text": "A person facing his back to the screen reaches out for a jewel that is glimmering and the background is of a shed where the jewel is placed "} +{"id": "6003269", "video_name": "933b65bc-78a4-53ca-bfa5-83777b90f776", "text": "Video of double overtime basketball game between basketball stars Curry and James "} +{"id": "5001560", "video_name": "43af693c-6de4-532a-8937-4550035d166f", "text": "Video of futuristic rock band on stage welcomes a guest drummer who is a steampunk female who looks very glamorous. The rock band start playing and we swing the camera around to see the huge audience. Swing the camera view back to the stage and zoom in on the steampunk female drummer. "} +{"id": "1003007", "video_name": "37307dd6-8990-5a66-973b-a4109d0efe9c", "text": "lazer beams diverting a meteor shower from hitting earth from space view "} +{"id": "2005541", "video_name": "ef82448c-a540-52ff-b925-140c30231e67", "text": "Create a map of China highlighting its key agricultural regions "} +{"id": "4003689", "video_name": "4496170d-f4c8-5fd0-b068-fa3265f0a847", "text": "In the midst of their banter, an eerie silence engulfs them momentarily, the air thick with unspoken mysteries. The rustling leaves and the distant hoot of an owl seem to echo a forewarning as they stand at the threshold of the unknown "} +{"id": "4003086", "video_name": "42a80cce-5383-50ea-99bb-3f2e42b1e596", "text": "Sunset, a black robotic horse walking in the rain at night behind the silhouette of a woman, realistic chiaroscuro lighting, depiction of rural life, mist. "} +{"id": "0006387", "video_name": "2b950414-07c6-50cf-8c4a-da8675995b01", "text": "Red Spider Man with some movements, 4d animated tall plastic type of body prominent exact features outstanding and a masterpiece if art "} +{"id": "5001411", "video_name": "fa8686bd-5611-53a8-88c1-b243365093ab", "text": "blue whale bungee jumping Golden Gate Bridge "} +{"id": "1004349", "video_name": "503b33ad-2348-52fc-9319-83b28e0af15c", "text": "Little girl running through a scary forest in rainy weather 1970s movie style zoom in "} +{"id": "0003526", "video_name": "3efeb61a-50da-5795-a383-3a71b9d156d7", "text": "underwater dead body floating,vhs, old film, old movie, Blair witch project, dawn of the dead, scary, horror, the walking dead "} +{"id": "3003190", "video_name": "7b929c72-69cc-556d-8f29-8267610f8aac", "text": "commercial advertisment, Estee Lauder Advanced Night Repair Intense Reset Concentrate, sun and flowers, ocean, wind blowing, gs 24, ar 16:9, seed 10 "} +{"id": "1005854", "video_name": "6bb022c7-2056-5ccc-86b8-2ed0d53af2b7", "text": "create an image of a boy at his bedroom window looking into a telescope, the planets "} +{"id": "2003495", "video_name": "783b1416-8f5d-597c-a868-664a7b06e727", "text": "a beauty colorful flowers gardens at a peaceful morning stroll through the garden.Show various flowers, butterflies, and other elements of nature, Studio Ghibli, hand drawn, emotional, 8k, ultra hd, high quality, wide view, no building "} +{"id": "7004410", "video_name": "484faaeb-d380-50df-84c9-0bcace2ccc85", "text": "A silver androgynous robot without hair, the torso can be seen up to the knees. Intense Intensive present demanding look into the camera. Tribe tatoos. Shamanic style. Urban space scenery in the background. Mystic light. Colors blue and green. Epic mood distinct facial features, pensive poses, precisionist lines, ethical concerns, precision engineering, machine age aesthetics "} +{"id": "3004812", "video_name": "543c838f-f0e4-5b5f-a914-87cd1c1611c3", "text": "The Journey of Repentance: A Story of Transformation. "} +{"id": "4004589", "video_name": "e5b09c7f-6a91-542e-81ac-af2190ab89b0", "text": "a school boy fight at home with Father "} +{"id": "5001068", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "The movie opens in the eerie silence of an abandoned psychiatric hospital. Meet JASON, a former patient who has returned to confront the ghosts of his past. "} +{"id": "0005173", "video_name": "1601e497-e8e4-5b09-8fd0-1975ca5f7d11", "text": "elefant with butterfuly wings with forrest background. AR 16:9 "} +{"id": "1003706", "video_name": "446abb05-4007-548a-b172-182704e44fe0", "text": "a winged shark flying over the mountains "} +{"id": "6003592", "video_name": "90ea1a47-47a4-5e98-a3c2-bd7c65c8778f", "text": "A princess in a pink dress touching a blue butterfly sitting on a yellow flower. "} +{"id": "6002142", "video_name": "43042276-7094-5fa5-898b-0100451d2791", "text": "Under the sunset, a dewdrop hits the petals of a rose "} +{"id": "6003316", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "RED BLAC AND WHITE COLOUR PALETTE, crows flying over a graveyards , horror, cinematic scene Message: 1 Attachment "} +{"id": "4003600", "video_name": "a44cde62-5e6a-565c-b34f-55e143113de6", "text": "a sunny day in the park with birds and bugs "} +{"id": "3004766", "video_name": "56a5e116-a10b-5202-9517-27a6258ee172", "text": "metal boots hitting the mud of a road when falling, seen in first person, steampunk style "} +{"id": "8003894", "video_name": "58a3932b-2f5e-52a6-87d6-1ef398d38f88", "text": "Transition to the character putting the cake in the oven. Use fun visuals to depict the baking process, like the cake growing in size. "} +{"id": "7002237", "video_name": "350a9c6a-4cac-5b63-86e7-2447305d8b73", "text": "a muscular Stoic philosopher with a brilliant mind, radiating light against a background of darkness. Emphasises the mental and spiritual strength to be gained through Stoic philosophy. Landscape background in nature, 8k "} +{"id": "1006430", "video_name": "75a210cb-38db-547d-91ba-a76093d625a0", "text": "Hank, utterly transfixed by the beauty, wanders, eyes wide with wonder. "} +{"id": "1005822", "video_name": "6afc765d-eeb0-5b4c-9025-828a75281738", "text": "A rustic village square in Tchameria, with a woman in traditional attire adorned with a striking red headscarf. "} +{"id": "2006532", "video_name": "9333d7b8-64b2-565e-93ac-d44fd2883e68", "text": "A corridor inside an elegant house containing several works of art and a hanging painting of sunflowers in oil colors "} +{"id": "0003538", "video_name": "3f2d698f-891a-566c-95f5-5b48a3eac726", "text": "little girl Lily tucked in bed, holding doll Rosie, surrounded by stars in a dreamy bedroom setting. "} +{"id": "4003886", "video_name": "4534da9e-ab1f-57f7-9473-54f742752ff5", "text": "a talking skull, jaw movement, gothic style, hd photography, high quality, cinematic character, very detailed, realistic skull "} +{"id": "3005692", "video_name": "337e93e2-5fd3-530a-88e2-9412a7419cc9", "text": "animals drinking water in forest from pond "} +{"id": "4003367", "video_name": "c4fc8e7c-3d60-5b11-a5d6-3568579f45b2", "text": "earth explode burning from space station "} +{"id": "0005869", "video_name": "22966783-0640-550d-9cb7-b7d2c4221d81", "text": "abraham lincoln in a fist fight with uncle sam while the the dallar cheerleaders cheer for them in the background. "} +{"id": "2004745", "video_name": "0566ab0a-8f60-5dd2-9a70-a0f97223af3f", "text": "Aquaman meets Simcheong in the deep water "} +{"id": "4003924", "video_name": "d904d32c-31bc-52c4-9789-25b8372c6f81", "text": "Show a graphic of an AI system detecting an issue and sending an alert "} +{"id": "8001978", "video_name": "8b1df9aa-5285-57ea-9f6d-5b91f00909d3", "text": "beer, estrella Galicia, terrace, people drinking beer Message: JAVI (Font: MODERN) "} +{"id": "2004098", "video_name": "40a2d3fe-4d7b-5bd4-9935-c5156d86ddf7", "text": "In a paint mode. An astronaut standing on moon surface looking through a telescope that aimed at the word SAI at a distance "} +{"id": "0004147", "video_name": "04175e1f-6a67-52c0-b7db-b30d336791c7", "text": "baby riding atop a single fox running through a field chasing a rabbit "} +{"id": "7004117", "video_name": "5dce1432-e9b7-5804-bb65-2445a62abd89", "text": "sea lions flowing under the sea "} +{"id": "4003363", "video_name": "afb48e9b-4c98-5ba5-908d-b1d1e5139259", "text": "a pencil sketch of fish on the sky "} +{"id": "7002852", "video_name": "6ea8085a-57ed-51ca-9dcb-0a099a6d7058", "text": "a little girl walking on enchanted forest "} +{"id": "2007880", "video_name": "155be606-f1c3-587f-9b2e-a3c8370bab62", "text": "Realistic photo vintage style portrait 35 millimeter film cinematic quality of a beautiful girl with an angelic face delicate features blue eyes blonde hair set in 80s clothing on a bicycle "} +{"id": "2003519", "video_name": "79dec470-b99a-596b-a655-d63c1f0dc16b", "text": "A beautiful round orange fruit grows on the tree and shines "} +{"id": "5001309", "video_name": "bb6d4a79-7a25-5274-9ded-6e4dadbaeb7d", "text": "Portrait of the head of a young monk chanting sutras "} +{"id": "3003353", "video_name": "a6b9b686-6ac7-501d-8655-3034866fda6e", "text": "rays and lightning, a lot of wind, hair flying, rays and lightning "} +{"id": "8001470", "video_name": "dcd231c4-81e7-57f5-be63-5972c126bf06", "text": "a realistic vision of a single stars cloud floating above a man inside of a bed with blankets in a dark night "} +{"id": "8003534", "video_name": "3e7658e4-0527-59d3-9c73-4dcfb22814d7", "text": "a bear suiming in a river "} +{"id": "8002635", "video_name": "eea88699-8dc5-50ac-9cd4-47b5b43ed8fb", "text": "creation of the future, a manager deciding for the future "} +{"id": "2003296", "video_name": "38337f84-18ea-5e54-87ad-66b10c02930b", "text": "image retrival at scale across the globe "} +{"id": "3004318", "video_name": "5ba6c444-4263-5b31-9b8c-68f2445dd56f", "text": "an asntronaut floating in space, eye catching colours, planets and stars, chiaroscuro, realistic, no low quality "} +{"id": "6002481", "video_name": "b6bc7c15-6c32-5611-8ff3-663ce57744f4", "text": "realistic image of meteor shower over a city "} +{"id": "4003360", "video_name": "4fdc06b2-98a4-550b-b0e7-ddda10a6f8e7", "text": "Queen of Denmark, arriving in an Bob Lazar ufo, Christiansborg castle, Copenhagen, at night, photorealistic "} +{"id": "0006192", "video_name": "27fbb33d-3d76-5ec7-8c2b-16a36e31acf7", "text": "Aphrodite, swimming inside the ocean with a dress "} +{"id": "2005101", "video_name": "00e7e19e-99c7-5c43-9bc0-4a34c99ac041", "text": "a sleeping man seeing a dream in a white cloud and camera zooms to that clouds "} +{"id": "2006397", "video_name": "663415f8-eeed-53d8-b244-0fdb8d125bd5", "text": "A faceless man is standing and rotating in an empty room "} +{"id": "8001696", "video_name": "fb6bf356-2227-530b-8c19-6ce65fdd8006", "text": "The Japan street is on fire, people are running in panic, cars are destroyed and burning "} +{"id": "2004282", "video_name": "c1c8d445-4d1f-5765-a9af-bc0bdcb6f4f1", "text": "gothic cathedrals in the night with bat flying all around "} +{"id": "2005733", "video_name": "52e073d0-153d-5056-8367-57511bcc50bf", "text": "The camera slowly approaches Kia Seltos, the headlights turn on. "} +{"id": "6002071", "video_name": "1f91c955-41e2-5e14-b12a-ee08fdeac3cc", "text": "lords of heaven doing cosmic dance "} +{"id": "8003751", "video_name": "6fdac65a-7770-5deb-8bc4-0ac7eb477b81", "text": "anthro elefant walks fast, angry, cinematic shot, cgi, marvel studio cgi, "} +{"id": "1006657", "video_name": "79f594a5-7259-5a20-bcf7-0dbd458aa6ee", "text": "christmas lights on outside the house, jack frost shining "} +{"id": "7004356", "video_name": "bc172332-4386-5279-bee4-8b280a413fc0", "text": "man shocked with eyes wide open hands on face "} +{"id": "5001590", "video_name": "fa881841-3ee7-522c-803b-91bb812188f9", "text": "4image: The head turns to the left and back, then the character looks towards the camera and waves his hand Message: 1 Attachment "} +{"id": "3004364", "video_name": "122961aa-d388-526b-accb-bfdb16f06eba", "text": "a dog eating biscuits in a kitchen sat at the table cinematic ultra realistic "} +{"id": "1004765", "video_name": "58234b80-2c54-504a-b0ce-64ae4f307300", "text": "cars and trains flying every where scattered like stars "} +{"id": "2003573", "video_name": "d61a687c-5b10-5051-a5cb-32a88d64be54", "text": "a cool sticker motive which fits to Heineken sv and and beer and red and green "} +{"id": "0006293", "video_name": "2a204a46-7d52-5da0-a986-b58e991eab30", "text": "hair blowing in the wind clouds gliding across the sky, flower petals falling. "} +{"id": "3003411", "video_name": "2d0b2dcc-7fad-55d1-9644-c736dfe7bb62", "text": "A brief glimpse of the letters reveals snippets of romantic correspondence from the past. "} +{"id": "2005585", "video_name": "18fd271b-4312-51af-b0b0-4166c0311e15", "text": "illustration of many birds surrounding the circle "} +{"id": "2004050", "video_name": "dfe85f1c-0c2f-555d-8478-134ae37a1f9b", "text": "a man walking into a crowded indian marketplace "} +{"id": "1006812", "video_name": "7caf2ca3-3a66-5262-b4c2-7eaa08d87a25", "text": "old house in Nebraska, camera pull back, daytime, tall grass fields "} +{"id": "2004866", "video_name": "0124c5fa-055d-58a3-9645-373cc218d9a0", "text": "Incorporate elements of the sun and a magnetic field compass to represent their unique navigational methods. "} +{"id": "7002129", "video_name": "7cc68b0d-f481-52d7-bd39-7bc5e0e86079", "text": "Jolin Tsoi in space suit, futuristic, space shuttle "} +{"id": "4004029", "video_name": "dbe1c217-5268-5456-a523-97c49363b9a8", "text": "heath ledger joker riding a rocket "} +{"id": "2006099", "video_name": "b5b42934-ed3f-55be-95a0-ab8f6c8b4784", "text": "Joe Biden as YODA kisses Elon Musk as Hans Solo in a 1970s film style. "} +{"id": "3006007", "video_name": "0f8e53ce-980a-511a-9417-92f1aa256b8c", "text": "With a drum roll, the camera zooms in and out, the camera rotates counter "} +{"id": "1003152", "video_name": "3a191642-57d7-5480-8abd-7780a6987b6c", "text": "the most amazing robot kung fu fight ever "} +{"id": "1006306", "video_name": "736f480e-737c-55a9-a709-4d26d726d919", "text": "Hey, friends! What do you say we spend this sunny Sunday at the beach? "} +{"id": "2007766", "video_name": "bd1afa8b-0d5b-569f-820d-d79c94ada785", "text": "Generate a action scene video of a metal star is throwing thrown straight towards the camera. flawless green screen background. "} +{"id": "2006883", "video_name": "56891631-26ef-56b9-867f-5cd13aa0c7e6", "text": "Girl walking on street with jasmine flowers, road is wet and shiny, night time, long buildings "} +{"id": "3005306", "video_name": "18f942e5-0c19-5117-88c9-7770984ac81b", "text": "vintage 70s astronaut takes his helmet away "} +{"id": "3004001", "video_name": "87a6f8ea-af8c-5bf7-b020-0d4d848bb366", "text": "the white cat at the balcony "} +{"id": "8003464", "video_name": "0363a210-844b-5940-bb18-ef1e16f86c48", "text": "Keanu Reeves wearing a boxing short, wearing a red gloves in a boxing ring, close up 4k animation "} +{"id": "3006821", "video_name": "826fe5b1-34c9-5c02-9281-9e90810db7a0", "text": "Dragon from Skinwalker Ranch probing a thin grey alien why Travis Taylor watches with a fleshy leer. Cinematic "} +{"id": "3004389", "video_name": "fd0630dd-500f-5507-9e81-404a9a2e60ed", "text": "a Chinese beauty take care of her skin in the beauty ahop,her skin is white and legs is long "} +{"id": "6003829", "video_name": "857602a9-6382-54e6-84dd-7f21567a0277", "text": "platinum power ranger kissing Trini yellow power ranger "} +{"id": "0003215", "video_name": "3967b236-56d4-54e4-84c5-14e76b0c1f22", "text": "beautiful hippy woman dancing at a psytrance festival "} +{"id": "6002226", "video_name": "7d4aac2d-95d4-5e10-9a7b-0b4f8043e3f4", "text": "sorrow is the cost of love "} +{"id": "1003000", "video_name": "370f0a80-ec8d-53e2-b6d3-500b7a3ac37a", "text": "In the heart of the forest, a wise old turtle is surrounded by a diverse and colorful group of creatures, all eager to hear its ancient wisdom. "} +{"id": "6002250", "video_name": "19b4dc17-650d-5b19-b1b0-49872a3502ec", "text": "a long video, car running on the road, 4k "} +{"id": "2006095", "video_name": "7b49ac28-9a26-5531-8f2c-20f9aaee0c95", "text": "sea monster, swims in water, rocks, big eyes, scary "} +{"id": "2004451", "video_name": "567f95a6-2e8e-5b79-86d8-5fefe7a79e43", "text": "Imam Ali Ibn Abi Talib is struck by a sword "} +{"id": "2006771", "video_name": "2c496fd2-dc82-5a4a-b211-5bed7aaa7b19", "text": "A hotdog shaped rocket blasts off into space towards Saturn "} +{"id": "3004608", "video_name": "df4f40b7-2953-5648-9077-e794e3b58607", "text": "darkspace no light, explosion occur, many sun created in great distance and stars, planet formed revolving around the sun 30 second duration "} +{"id": "1003238", "video_name": "3bab31ab-1add-597e-84db-3eedb1880060", "text": "And in the end, it was Aiden who emerged victorious, wielding the power of the Crown of Eldoria to banish the darkness and bring light back to the land. "} +{"id": "0004677", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "mother bunny prepared food at kitchen "} +{"id": "0005330", "video_name": "18ed6a08-7f19-556a-b630-8d86bd988bba", "text": "cloud formation moving into a stormy hurricane windy Message: Pictorius (Font: MODERN) "} +{"id": "2005195", "video_name": "cf39369e-2e44-5f36-926e-9dc74f30d7f2", "text": "man in green balaclava looking through a geometric background with vibrant colors "} +{"id": "2004983", "video_name": "f2e99c89-778c-53ce-bed4-f967a7afa71f", "text": "an old man face walking down the street with his dog 4K "} +{"id": "7004456", "video_name": "4cdd857e-330f-5ce8-a769-7837e8571e91", "text": "a shark swimming in the ocean, style of van gogh "} +{"id": "1004759", "video_name": "58150d39-ee6d-51fc-91c3-42e4ffc78e1c", "text": "a beautiful fairy dances, angels sit in a circle and frogs play the flute, locusts play the violin "} +{"id": "6002394", "video_name": "9625c7fb-fd61-5d63-beaa-66bdcd84bbe2", "text": "helping with magic powers in village animated "} +{"id": "6004146", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "TV in the old room with white noise, natural light emphasising the textures, high detail, 8k resolution "} +{"id": "0003344", "video_name": "3bf0deb6-9ff3-520a-bd74-70c2d7c154af", "text": "Lake Michigan\u2019s name is derived from the Ojibwa word Michi Gami "} +{"id": "3003749", "video_name": "ea24ef70-36fd-5b3b-a656-584e4a3c0f73", "text": "overflowing Chalice Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "1005438", "video_name": "63edb39f-e097-5051-a1d9-ced8e3551826", "text": "lava burns on an active volcano Message: WESTSIDE WAYNE (Font: RETRO) "} +{"id": "2006046", "video_name": "054e5551-796f-542f-8b48-23e9278eab45", "text": "fire flies flying around in digital art "} +{"id": "0005124", "video_name": "153e3e53-c9cd-5439-8d9c-1394d7aee3de", "text": "Amid the rain of 1978, a young couple takes shelter under the same overhang, leading to a conversation that could change their lives forever. "} +{"id": "2005617", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "Create an image of Kaida and Aslan, each presenting their symbols of worthiness to King Leonidas on Pride Rock. "} +{"id": "0003970", "video_name": "00e3cbc2-fd07-5308-98d5-7db70846b90a", "text": "a 3d blue heart break into 2 "} +{"id": "6004464", "video_name": "9e28bfd7-b1e0-5d6c-afc1-1cde18312d9f", "text": "a cute bee is playing piano in a beautiful colorful flower garden "} +{"id": "0004450", "video_name": "094c2636-5113-56c5-8ab3-b519bd7f07ea", "text": "create a beautiful bottle, with a hawk logo, in the background a snowy mountain "} +{"id": "0003379", "video_name": "3c89eeba-3d18-550e-8d29-18ead56956a3", "text": "1980s little girls competing in a bodybuilding competition, classic physique , smiling, fake tan "} +{"id": "2004292", "video_name": "9a22a3f6-5505-5020-9c23-d94289e97f9d", "text": "A lonely robot walking in the desert, 4K, Cannon, hyper realistic "} +{"id": "3004580", "video_name": "cc29f70d-5be2-522c-9514-8c66f7f396fc", "text": "people eat in the chinese resturant "} +{"id": "0003296", "video_name": "3b24f8a3-753e-52a6-ab8c-a00fa0498bca", "text": "create a background for a music mix type of a video "} +{"id": "4003622", "video_name": "dcae8c7b-c902-5fd9-837f-103c67781dd9", "text": "The scene begins with a wide, breathtaking shot of an otherworldly spacecraft descending from the heavens, against a backdrop of a picturesque sunset. The camera is positioned low to the ground, highlighting the majesty of the moment. "} +{"id": "0006516", "video_name": "2de2430f-e877-50b1-b3d9-30186623b251", "text": "Zoom in on specific areas of the factory, such as assembly lines, storage areas, and quality control stations. Show how digital factory simulation allows for a comprehensive analysis of the current production processes, identifying bottlenecks and areas for improvement. "} +{"id": "8001889", "video_name": "e7c2d942-4a55-572d-a90b-85aa03ea173d", "text": "white on black, spinning dandelion seed head disintegrating into individual seeds, cinematic "} +{"id": "8003074", "video_name": "102b9ed2-9eef-5fe3-aeee-78f81f7a37e5", "text": "In the process, he sacrificed himself to save the city. "} +{"id": "6004422", "video_name": "32a0aa3d-45ef-5f90-9775-37133e283576", "text": "a jaeger robot hallucinating, zoom out "} +{"id": "0005119", "video_name": "151c58b4-d1f8-58f5-b834-800f83bffc50", "text": "French Artillery firing out upon Prussian forces 1870, 4K, High Resolution "} +{"id": "2007009", "video_name": "4c1dec56-29a5-5775-bcfb-00029b37e64a", "text": "a yellow lab dressed as a king walking towards his throne "} +{"id": "0005921", "video_name": "2349fc7e-4cab-594c-96c1-0176a29dcd09", "text": "bear walking in forest,k art style, waterfall, treess "} +{"id": "5001597", "video_name": "7508ac52-657e-5f31-a851-177a0f5df466", "text": "Overwhelmed by fear, attempted to call the police. "} +{"id": "4004895", "video_name": "526a5f11-9c15-55fb-8559-89b239fec8c6", "text": "moving texture of stones and rocks "} +{"id": "7004280", "video_name": "fea3c1aa-1320-545d-a9f0-c368854feaf8", "text": "a photograph of a city viewed from the sky Message: manu (Font: MODERN) "} +{"id": "2004816", "video_name": "e7afa80f-7525-5813-acca-ea03557e3fc4", "text": "sun set on the beach with starry sky "} +{"id": "2004859", "video_name": "b065401a-25ea-5fc1-b4fb-1c2b2f96e338", "text": "Create an artistic representation of a spiral tunnel composed entirely of red flowers, where each petal seems to form a unique note in a mesmerizing floral symphony. "} +{"id": "8003294", "video_name": "6019e2da-d3cc-5981-832a-2a9995b96fb2", "text": "Poverty stained the lives of those surrounding us, where even property taxes paled in comparison to the meager existence they led. "} +{"id": "1006887", "video_name": "7de52cce-b9b4-5ee9-9b12-758d965ab093", "text": "let the eyes wink,the clothes flutter Message: 1 Attachment "} +{"id": "7004670", "video_name": "3ad1e9c7-1022-546b-a021-4e43f958b47e", "text": "business discussion in a meeting room by 3 man and 3 wonen middle age in business clothes at a big table "} +{"id": "3005342", "video_name": "d9f9da8e-510c-5d79-8a1f-0f4f81223f4f", "text": "couch , red and black color "} +{"id": "4003202", "video_name": "c41e370f-f329-55e5-a26d-21e66441bb79", "text": "italian woman sitting at a table on a balkony overlooking a landscape in tuscany, eating spaghetti "} +{"id": "3004221", "video_name": "9455afa5-9aea-5359-979d-a77ea6742410", "text": "In 4K quality, a rabbit astronaut floating in outerspace, with stars shining behind her "} +{"id": "7004119", "video_name": "8a089671-42af-5402-a71c-a9f79f910b60", "text": "draws atomic particles that emit sparkles around the physicist Nikola Tesla. "} +{"id": "1003191", "video_name": "3ab6ed02-d6cf-5f2f-93d9-3f152f795c83", "text": "smiling guy in the room full of smoke "} +{"id": "6004085", "video_name": "a6af4128-82e7-5178-91c5-87efbe10ee13", "text": "once upon a time their was a big red dragon in a beautiful forest, he always laugh and small animals "} +{"id": "5001996", "video_name": "a44bfcbc-f207-5ab7-a3e1-f7cc17121c3f", "text": "a one poor vendor man selling a lot of bindi , comb are into basket near street where many houses are made "} +{"id": "0003654", "video_name": "4116c487-16eb-57ad-bf04-f77ccc8df9c6", "text": "a man with a very heavy fur coat walking into a sand desert in the style of photorealistic cinematic light 8k super realistic "} +{"id": "7004116", "video_name": "60d218b4-33c4-5a16-a8d5-9829bea3a07c", "text": "Virtual Odyssey: The HOLOLEARNER embarks on a journey through virtual landscapes within the HOLODECK, with the Toroidal Lattice forming paths and terrains to explore. The animation depicts a seamless blend of natural and digital worlds, highlighting the fusion of technology and nature. "} +{"id": "7004537", "video_name": "67712eca-1d1c-5868-8908-7a60849897cf", "text": "The girl is walking along the street "} +{"id": "7004337", "video_name": "017b0778-61b0-5fa3-a8ce-018ed1e7c2fa", "text": "blood raining on a burnimg church at night, directed by h.r.giger ,8mm film footage , black and white, 1970, TV static "} +{"id": "1003359", "video_name": "3ddf3c07-7f9f-544e-b12b-94aa553997c1", "text": "A spacious and bright room, with windows allowing warm sunlight to illuminate the entire space. The desk is neatly arranged with books and study materials, such as colored pens, pencils, and a calculator. The walls are adorned with inspirational posters and student works, creating a positive and uplifting learning atmosphere. The floor is clean and bright, free from clutter and dust. There are no scattered items in the entire space, and the furniture and curtains are kept clean and tidy. Family members sit attentively at their desks, studying, while parents or siblings silently communicate. "} +{"id": "2004112", "video_name": "24b952f6-2756-56df-ac40-6fe91fc0c0aa", "text": "a plane land which are bounded by beautiful hills and clouds "} +{"id": "2006681", "video_name": "d507d618-42e2-5795-b3f0-38c1f3092a6b", "text": "White hospital hallway central view, boy walking in hospital, back view "} +{"id": "4003077", "video_name": "aa42a7ab-0da9-5567-b582-aec136068dec", "text": "a musical concert, neon lights Message: Richart (Font: MODERN) "} +{"id": "3004621", "video_name": "46651f8a-2aa1-5325-85e4-827b2fb7f099", "text": "make an cartoon eye that blinks in glowing luminous colors .and the luminous colors are glitching "} +{"id": "1006706", "video_name": "7ae2594c-2b82-5899-b56c-ed74f614eec3", "text": "a Nissan 240sx getting high centered on a speed bump "} +{"id": "0004651", "video_name": "0ca5e208-bcd6-5018-b3bc-54bfbb64ed24", "text": "a young man proposes to his girlfriend, ghibli studio style by miyazaki "} +{"id": "1003825", "video_name": "46ac58b2-718a-5a36-8f81-9f831eced79a", "text": "Strawberry elephant fights against dinosaur in the jungle "} +{"id": "7003122", "video_name": "1c03d1d0-a5a3-5290-920d-d228a2d86d0c", "text": "NATIVE AMERICAN INDIAN CHAMAN Message: NUCLEAR BOMB (Font: MODERN) "} +{"id": "3005139", "video_name": "6af72aca-ef6f-5199-b714-e1fa2389f2d6", "text": "Cyberpunk city, man shoots at robots, duration 10 seconds "} +{"id": "0006324", "video_name": "2aa71c1b-c414-5320-85ed-59ddcfe2c662", "text": "The house where Minnie used to live, now empty and desolateAnimated cartoon. "} +{"id": "2005950", "video_name": "92c46a31-8fc6-5131-a5d2-54910c20f658", "text": "The Sumerian creation myth is not just a story "} +{"id": "1003712", "video_name": "4477b70e-2a5c-5482-8e3a-f2d2796f99be", "text": "adorable white goat with horns standing next to a bold oak tree, mountains in background "} +{"id": "8003596", "video_name": "3682e0d2-abf0-547b-a467-5d7e1a66eae1", "text": "In a magical forest, dense forests and jungles thrive. During the day, the sun bathes the place in warm sunlight, but when the sun sets below the horizon, the forest becomes mysterious and quiet. "} +{"id": "3004791", "video_name": "39935441-5b13-5786-890f-667be38073dc", "text": "The explosion of the Chernobyl nuclear power plant 10 seconds "} +{"id": "3003919", "video_name": "ab163822-d8e1-52a0-8753-3e35342080ac", "text": "small mirror appears an old woman "} +{"id": "0006715", "video_name": "318f244e-4be4-5c81-93d1-f1dd6e692fa4", "text": "A stressed young person in a workspace staring computer surrounded by a pile of papers coffee mug and a geometric shaped light bulb "} +{"id": "4002804", "video_name": "71bcb858-f16a-56a8-b4cf-a8ca647abc4e", "text": "To his amazement, every morning the hen laid a golden egg "} +{"id": "2007211", "video_name": "2a1e14d8-ef63-50d0-9dd9-7dd119b74470", "text": "A girl and a dog walking on the field "} +{"id": "7004792", "video_name": "61d80671-9ed6-5c7d-a6bf-5208200fca98", "text": "a man walking up the city street with money falling from the sky "} +{"id": "2007692", "video_name": "2e201e5c-e6b8-54de-b3c7-638150ddc6a6", "text": "barbie hugg each other with happy face "} +{"id": "8003816", "video_name": "c404390a-f7b4-599e-bca5-6d9dc8ff15e0", "text": "willy wonka in a rap music video holding an ak47 "} +{"id": "4002712", "video_name": "d63912cd-048b-53b7-8765-6948aabd10fd", "text": "The animation returns to the forest, now flourishing in vibrant colors. "} +{"id": "0003543", "video_name": "3f3fab79-09e0-5f71-a34b-5b9667744efc", "text": "a star made of air that floats everywhere in the world "} +{"id": "0006415", "video_name": "2bf51ec0-3f0f-511d-bb3b-81b397b61459", "text": "Talking two peoples while they are laughing "} +{"id": "0003924", "video_name": "45d90b75-e0fb-536d-b6c5-7c19dfe2bc79", "text": "Ryan Gosling in sports clothes runs down the street in the morning "} +{"id": "2005342", "video_name": "1a7ed724-490b-5d14-9868-60b404ce4982", "text": "3d images One sunny morning, Luca and Alberto were enjoying their favorite pastime: collecting unique human treasures that washed up on the shore. "} +{"id": "4004825", "video_name": "283d37fb-7844-552c-ad4f-e108dd24dee0", "text": "marvel super hero marvel style hd image full body futuristic clothing lofi image inuit young man "} +{"id": "6004362", "video_name": "2b823f24-c678-51f8-a4d7-55709423d998", "text": "looking through the eyes of a tiger, it see a calf "} +{"id": "5001168", "video_name": "981847c6-75ab-57c8-b90f-ea9aff045a90", "text": "Once in the forest, the clever fox, near a pond, saw a strange vehicle "} +{"id": "2003562", "video_name": "3f68be75-3c2f-59df-9280-f09d450407af", "text": "Plants and animals had a hard time getting used to the new amount of sunlight and temperature "} +{"id": "7003895", "video_name": "7060233f-d3a0-58ca-a7d0-32f71642565c", "text": "motorbike through retro future jungle Tokyo "} +{"id": "8002691", "video_name": "2b7c3747-a8f3-5bee-945a-bcaa28451778", "text": "ally mcbeal muscle promo on fox "} +{"id": "0004545", "video_name": "0af9870b-317f-5fb6-a931-a9267d24c1e9", "text": "The leater A made whit human arms "} +{"id": "1006652", "video_name": "79dd36bf-28f6-55d4-9d3b-2ba90f1c7129", "text": "MEtaveeerse glasses wearing up cyber futuristic techwear cyberwear high tech neon lemon green and purple neon perfect lghts dolly zoom "} +{"id": "0003942", "video_name": "0038dc81-1d35-5701-a47b-d74773fa3f8b", "text": "A baby smiling and dancing with sunglasses, as if he were famous, walking in the mall with his mother. Realistic 3d cartoon. High quality image. "} +{"id": "2006306", "video_name": "a24c5290-5480-5aa7-baf0-3d61f779cddf", "text": "a flying hex, black and white movie "} +{"id": "6003986", "video_name": "7547806d-4515-5301-86c2-fbcb4546ba79", "text": "Moving conductor from the front performing a song, with his futuristic symphonic orchestra in the background in the year 2200, all playing moving the instruments in harmony, in high resolution, 4K and futuristic, the place is a theater on a river with the moon in the background "} +{"id": "5001514", "video_name": "365d2239-b21f-51e3-b6d0-6a939bfbb254", "text": "The pokemon Gengar blinking slowly and a red flag waving "} +{"id": "5001494", "video_name": "af254086-247d-55f5-8870-f93074170b84", "text": "a waterfall along a hiking trail in the mountains "} +{"id": "1006874", "video_name": "7d8653df-cba7-5548-b34d-27f6859a8a19", "text": "His mother asked him repeatedly: Why do you draw these strange shapes, my son? "} +{"id": "1006667", "video_name": "7a15c8ed-182a-5d54-b9f5-d659b9903d2b", "text": "Robocop fist fights the Termintor in a movie theatre "} +{"id": "2006267", "video_name": "0b2a138e-2fea-5b3c-8244-433d99f95003", "text": "a agent looking into a telescope "} +{"id": "8001097", "video_name": "f7b0f79a-91bb-5692-9543-56381ea56c6a", "text": "Incredible sunset over the ocean waves. Girl dancing under a mesmerizing sunset "} +{"id": "2006106", "video_name": "af5242e7-5665-5537-a8e8-c9c3d26bb54d", "text": "huge chocolate ice cream in the shape of a heart "} +{"id": "3004991", "video_name": "2ebb8265-28fc-5327-8121-6fb1a5cf6de2", "text": "diamond ring in the shape of a 5 pointed star "} +{"id": "1006519", "video_name": "7742ec65-8fd6-59b2-8ff6-bbd8f2ea230b", "text": "A glass of wine shaking in the air and some vineyards in the background Message: Pena da Osa (Font: MODERN) "} +{"id": "6004838", "video_name": "c72e39d3-6b86-5573-9a26-97bacdb1f58c", "text": "Create an image that combines elements of Greek mythology and science fiction, representing the gods of Olympus in a futuristic environment "} +{"id": "7004846", "video_name": "f6383349-a571-50f9-8ed8-cc012f74dc14", "text": "a stylish kitchen with stove on with a city view 4k "} +{"id": "7002264", "video_name": "fe87c5e0-795d-5f10-9c46-43647330c9f1", "text": "hyperrealistic slow motion video of red colors drops are dissolving In water, cinematic, 8k, high quality, "} +{"id": "6004191", "video_name": "bbb429c6-9b23-5090-b47c-dbd3dcaecc58", "text": "white cat sits with headphones and talks on them "} +{"id": "7002822", "video_name": "ed6515fc-35db-5bf2-8386-7ccbb835bb86", "text": "a girl reading book, open page book, light low, near window, night "} +{"id": "7002029", "video_name": "2b171d7e-33f2-5c9d-8b59-917adf96c6c3", "text": "sunset at the sabana Message: wild (Font: MODERN) "} +{"id": "8003328", "video_name": "bffe33d2-1cba-50a8-9992-000c0c781f2d", "text": "Santa Claus waves with 1 hand, the reindeer smiling, passing over the houses on Christmas night, with the starry sky, a few snowflakes. "} +{"id": "3004591", "video_name": "bcd30eb6-b15c-575b-9f99-ccab0a32613f", "text": "Turkish bath with very lively psychedelic colored tiles "} +{"id": "6003145", "video_name": "fdf68f22-3edf-5ce1-b36d-e5ef8a9cafe1", "text": "a wolf grabing a human baby, super realistic "} +{"id": "0006177", "video_name": "27c199bb-bf11-5faf-93c0-f5295d60f68d", "text": "her eyes held the wisdom of centuries.\n32k resolution highly detailed realastic character notion stability effects "} +{"id": "8001101", "video_name": "c6bf39d8-4592-503d-b469-b76913a9ab9e", "text": "Man sitting on couch playing video games with a headset on talking with a bowl of popcorn next to him "} +{"id": "2003219", "video_name": "0dbb6c42-6b23-53fb-a7be-9580172c3b30", "text": "The cat is sitting near the entrance, it is raining and he is wrapped in a scarf "} +{"id": "7004913", "video_name": "fcaa138c-dbe8-51fd-a5a0-aa2b56bf6ac9", "text": "After crossing the river, they entered the Enchanted Woods, a mystical place filled with glowing mushrooms and fireflies. The woods seemed to whisper secrets as they ventured deeper inside. "} +{"id": "3004984", "video_name": "a510a2df-d109-578d-af83-a65d4384a5fc", "text": "video has a spaceship under alien atack, around a black hole "} +{"id": "1005653", "video_name": "67e19f30-f85d-5aa5-8c35-d3d5ea9e8c32", "text": "doly zoom to the top of the tallest tower on earth "} +{"id": "2007320", "video_name": "e2732454-4ed3-55b6-868c-2e69a86b4fef", "text": "young woman looking out a large picture window at a futuristic city "} +{"id": "3005071", "video_name": "a9e93b10-a628-5125-a009-fc316f804397", "text": "business man in a suit 3d walking on the moon in the daytime "} +{"id": "2003155", "video_name": "6623677a-d82e-56d8-9fb8-71b79a6ba504", "text": "young russian woman enter in the museum of paris Louvres seed5984821372683218048 "} +{"id": "4003348", "video_name": "cdae7626-d944-5a4d-a669-8686fc0621d0", "text": "A panda with a red backpack running on a country road "} +{"id": "1005789", "video_name": "6a88f9bd-a0fd-5422-8a01-57160f6c09b3", "text": "a loosing guy walks trough the dark streets of new york city, photorealistic "} +{"id": "0004163", "video_name": "045af3aa-d2c5-58d3-8e8e-285543a3cb33", "text": "A tiny firefly, lost from its swarm, stumbles upon a forgotten clock workshop where time has stood still since the last chime. "} +{"id": "2003631", "video_name": "77adec66-1dee-54e7-ac74-2c8739fd12cd", "text": "1950\u2019s super 8 footage of man exploring wild environment "} +{"id": "5001960", "video_name": "2b213766-3fcf-5a3f-acee-b6c7b263ca56", "text": "The girl in the picture has a slight smile and flying leaves Message: 1 Attachment "} +{"id": "4004356", "video_name": "b97006a3-ccd8-5e61-b03b-2bd32ed09de1", "text": ". Concrete evidence supporting the return of the Anunnaki is about as elusive as Bigfoot sightings "} +{"id": "1003286", "video_name": "3c6e411e-dce0-5966-bd30-99d4082cf9cb", "text": "The four teen agers had heard a lot about this mysterious tree in 3d animation style 4k resolution "} +{"id": "2006365", "video_name": "68390866-f6b5-507b-8d17-cc4b4d71647e", "text": "Sachin tendulkar changing grip of his bat "} +{"id": "1006914", "video_name": "7e6c800c-f7d4-51c9-a0b9-a69f15a972b4", "text": "earth looks like a basketball but then transforms to look like earth again "} +{"id": "7003426", "video_name": "e69b024f-2ac3-5705-ace5-ff26cc3a5dac", "text": "Create a video that delves into the captivating world of philosophy, unraveling its significance in understanding the human experience and the pursuit of truth and meaning. Let us embark on an enlightening expedition through the realms of thought and wisdom that have shaped our understanding of the world. "} +{"id": "3006280", "video_name": "fd67177a-e625-51a4-90fe-500069cfde73", "text": "Rock song in Spanish that talks about young Dario as Police "} +{"id": "4004445", "video_name": "38cdfee5-8e15-53af-8c1c-04a2806fde21", "text": "Recycling Electric Car Batteries: The Process "} +{"id": "0005596", "video_name": "1da9fc41-9f0a-566e-aa61-4b1db4344bcc", "text": "3d variant of germs and bacterials "} +{"id": "3005289", "video_name": "547cbf62-fbb2-5bef-9a82-0598eeb65f8b", "text": "two pigeons are trying to find food in the disco with animated laser and strobo lights "} +{"id": "5001271", "video_name": "119cbbd6-8327-5d29-bee2-a6f4592667d8", "text": "Amitabh Bachchan riding on a camel in the Sahara Desert wearing local community clothes "} +{"id": "8003726", "video_name": "fc011ce0-2135-5d56-a222-8d816ac7a5ec", "text": "cinematic shot Rahul Sri Bhadra treating Sultan Bakhtiyar Khalji, illustrating the healing aspect.8k ultra hd "} +{"id": "6004444", "video_name": "3c173b13-ee6f-5c90-b512-675900666c06", "text": "People protesting at a coal plant, realistic style "} +{"id": "8001469", "video_name": "31024931-a20e-55ba-b258-0d1c1b7897cf", "text": "Wispy apparitions emerged, clad in tattered garments, their mournful wails echoing through the night. darkness animation horror "} +{"id": "1003017", "video_name": "376f0b72-52f4-57de-98d0-f9d288488177", "text": "Open on a whimsical forest, where Luna, a curious fox, and Oliver, an adventurous owl, embark on a journey through the enchanted woods. "} +{"id": "2003010", "video_name": "e6956759-5150-54b7-ad0e-29a5c455c951", "text": "Tuned BMW GTR leaves at high speed through the city from the chase "} +{"id": "4002994", "video_name": "7fc6cdd6-9129-51e2-9f21-2588534c9310", "text": "film 1970 style coraline movie horror "} +{"id": "0005088", "video_name": "147efbec-4f94-5aa5-82cb-82f8da6c2b4a", "text": "The third time I have died is now. Two years that have had unexpected turns and my mind had to create cays due to the blows it had. This death was the most conscious compared to the others because in the first I was discovering my personality, in the second I transmitted it through art, but this time I had to be firm and continue moving forward without my fears or fantasies subduing me. "} +{"id": "6004662", "video_name": "f6d91a99-4226-578b-a633-e9d2fc5ab83b", "text": "A man around 40 years old with slightly tanned skin and dark eyes. His face appears somewhat neglected, with an ungroomed beard and slightly unkempt hair. The background is also neutral to focus attention on his facial expression. "} +{"id": "3005321", "video_name": "79234324-9d1f-5b43-bcbd-84e0232b1fa1", "text": "whole body, female student, beautiful, samurai "} +{"id": "3004316", "video_name": "f78c9654-6b5e-5705-902b-c78883e7b8fa", "text": "Jellyfish float in the sea rather than on the seabed. Jellyfish have a soft and transparent body structure and they control their position in the water by expanding and contracting their bodies. They can adjust their depth in the water by moving their bodies up and down. Jellyfish mainly rely on ocean currents and plankton as their food source. When a jellyfish dies, it usually sinks to the seabed and can be carried away by water currents or other organisms. "} +{"id": "0003206", "video_name": "3938a144-e895-5cde-afd8-deafbb6488d7", "text": "super mario brothers jumping with princess video length 5 seconds "} +{"id": "4003230", "video_name": "b834c792-c5fc-5c28-af26-8f8b1c4ae320", "text": "make the blue building change white Message: 1 Attachment "} +{"id": "0003237", "video_name": "39c9f8f0-c5f6-5840-812a-19bcb357b6aa", "text": "BLACK AND WHITE vintage 1950s Hank Bruster guided his cattle across the remote ranchland, the night sky overflowing with stars. "} +{"id": "8003563", "video_name": "04a8ea5c-f023-5bc8-b289-c01d0fb85c6d", "text": "the earth scrolls and stops at Siberia "} +{"id": "3003262", "video_name": "313741f0-2a06-5365-9a18-c8e2554b043c", "text": "frog holds the microphone and sings on stage as the spectators watch "} +{"id": "1003317", "video_name": "3d171adf-791d-51a8-bdc4-3f59a7610208", "text": "Kaiju fighting mecha in space and moon can be seen "} +{"id": "2005398", "video_name": "132174be-3889-5971-bccf-2ad3f8340913", "text": "A cat running at the beach at sun set with explousion in the background "} +{"id": "1006168", "video_name": "70e0ad01-105c-59c3-b1ca-37541afbc90e", "text": "a haunted forest where you can see little elves walking through the shadows "} +{"id": "4004277", "video_name": "4b4d8b57-18d7-556f-bd03-14ea63b13b51", "text": "cow flying in the sky looking down to other cow , realistic,4k, "} +{"id": "0003251", "video_name": "3a0d5b70-1fe1-5fbf-99cd-6d5e4104c4f6", "text": "Move the hand to the person "} +{"id": "1005593", "video_name": "66df5e1b-5684-55aa-933e-3e82143e5285", "text": "Once upon a time, in a mystical forest nestled deep within the heart of a forgotten kingdom, there lived a remarkable black crow named Onyx. Onyx was unlike any other crow in the forest. His feathers shimmered like the midnight sky, and his eyes sparkled with an otherworldly intelligence. "} +{"id": "7003962", "video_name": "90146f82-2053-549e-9f12-2376f9d4361a", "text": "Ariel is walking trough a forest "} +{"id": "2005690", "video_name": "9fdac195-7bb6-5959-9976-c928e7d5ff74", "text": "A large area of farmland, with a small cabin in the middle, and a huge alien spaceship looming in the sky. Large vista, comfortable color scheme, minimalist style, retro poster art, Graphic, paper styled, paper posters "} +{"id": "0004643", "video_name": "0c892131-0538-5680-9b25-81fb90deef5f", "text": "tarot cards flying in a blue sky "} +{"id": "2003212", "video_name": "644e05f5-1af0-5143-a0d0-c11ea2cedd2c", "text": "Gaziantep in Turkey, reel, professional video, details, 4K, Attractive colors, City, Drone, "} +{"id": "7003529", "video_name": "4a20056f-7741-507b-a261-72997923ac5b", "text": "Medium shot of a girl with tears on her cheek. "} +{"id": "7003007", "video_name": "7f94ddb3-69cc-566b-af03-fb675fda32c7", "text": "pencils on a magnificent wood Message: test (Font: COMICS) "} +{"id": "4002387", "video_name": "dd58adde-839d-5b38-b148-0072ab462138", "text": "metallic, 3D effect, drifting slowly across a panorama of deep space, with stars twinkling and nebulae swirling in the distance Message: yandex (Font: BAUHAUS) "} +{"id": "8001422", "video_name": "fabc1c9c-fd83-5360-b872-8998d34c326c", "text": "animated 3d caracters the married couple, Sharfu and Azma, in the picture. "} +{"id": "3006939", "video_name": "ba621575-6cc4-55dc-8697-29c21c37b395", "text": "the red car flying in the sky ,and light blue all around the word , "} +{"id": "2005997", "video_name": "a6107ba4-3130-56bc-a70c-8556106ef5ed", "text": "In a small, impoverished village. 3d motion "} +{"id": "5001546", "video_name": "27babe8f-308a-55de-8162-4c5b230ce708", "text": "bob schneider rolling down the street "} +{"id": "3006154", "video_name": "8170cdb0-89e3-5ec4-9be3-be72bcf1447f", "text": "I have learned how to create interesting and valuable content "} +{"id": "0005856", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "A chilling medieval scene depicting Vlad III, known as Vlad the Impaler, dining at a long table set up among rows of impaled enemies, with a dark, foreboding castle in the background. "} +{"id": "6003546", "video_name": "b0277886-6e25-55b8-a8e8-22046294e401", "text": "a woman a girl and a man in a garden in medieval times as he drew animated "} +{"id": "4004204", "video_name": "8083a430-bef8-52aa-9508-3b0d00e01e13", "text": "David Guetta crying because no one likes his DJ skills "} +{"id": "1003257", "video_name": "3bf33cf5-79fe-50ea-8b27-af188221deb4", "text": "A woman dancing in the Renaissance painting style "} +{"id": "3003320", "video_name": "8857d493-608f-55be-a03c-ff889922fa80", "text": "boy petting the cat, leaves slowly moving "} +{"id": "0004531", "video_name": "0aae33f0-b59b-5886-855b-272ec836de54", "text": "Creative Intro for a fitness website named Fit Health and Vitals "} +{"id": "6003638", "video_name": "ef28636a-28f9-5a38-abf7-104ce042c71c", "text": "A dramatic cinematic view of prehistoric scenes with towering ancient trees and giant creatures roaming, fighting and killing each other "} +{"id": "2003865", "video_name": "cb4dc013-e33f-5a80-8a78-098c87f7a413", "text": "a bunny on a balloon that explodes "} +{"id": "3005575", "video_name": "0f6857f7-cdf4-5326-9fd1-1a69393d50f3", "text": "realistic mysticwizards making music with remix machine "} +{"id": "0005703", "video_name": "1fcea32b-e6d7-58b4-a3db-8c85fe4a9cd8", "text": "Terrified, girl pulled out my hat from under the bed, only to be confronted by something far more sinister. Horror, 4K, realistic, nightmare "} +{"id": "8002783", "video_name": "0ef5d352-4c53-5664-9903-a4d65b2d15ab", "text": "zoom into a star house high up at night "} +{"id": "6004641", "video_name": "0000de28-d879-57c0-9614-9ae5d06a824d", "text": "iron man suit is put on his light "} +{"id": "4004327", "video_name": "4b08e38a-2439-563c-b81d-f628afeaa78e", "text": "the hair specialists recommending a personalized hair treatment plan to Raj. "} +{"id": "8003732", "video_name": "26cec3b5-e970-5b54-8300-1ef606a3d0a7", "text": "an image of a young adult in an american jazz pub who smile "} +{"id": "7002208", "video_name": "0d64bc59-996a-54f4-b9d6-e71d8454c9e5", "text": "happy man painting on canvas, morning light "} +{"id": "3006549", "video_name": "399bb925-e068-5284-b455-bf0d97b32cf5", "text": "hackers work on their computers Message: Winners (Font: MODERN) "} +{"id": "1005951", "video_name": "6d4dbe27-e7ac-5e5a-a8a3-acd42874ff57", "text": "a video of a chat gpt tool "} +{"id": "8001460", "video_name": "311b9988-ca38-5922-aa2b-e92ab71014c2", "text": "Margaret thatcher skateboarding on the mega ramp "} +{"id": "6004313", "video_name": "73e92491-195b-5d4b-aca0-14cd84edf2cf", "text": "chris chan smiling while working in a fast food restaurant "} +{"id": "1005470", "video_name": "647d6caa-a5f3-501c-a0e4-62f86ce1a54b", "text": "the universe as a human figure floating endlessly through a nebula "} +{"id": "6004741", "video_name": "01a392c6-321a-5a7a-86d8-39358466113b", "text": "Advertising for tayota carolla. White color "} +{"id": "5001112", "video_name": "1c128c68-5e07-5de0-aa2e-91dd1431d9a6", "text": "In an alternate reality, Albert Einstein discovers time travel. Write a scene where he meets a younger version of himself and imparts wisdom about the consequences and responsibilities of tampering with time. "} +{"id": "1004461", "video_name": "5288cd1d-a6bb-59a0-813c-234b63fc7fce", "text": "In the second minute, a strange sound was heard, but it was not known where the sound was coming from "} +{"id": "3006619", "video_name": "01a90ccc-741c-5bee-9643-912fa693ef68", "text": "The hero looks apprehensive and conflicted, discussing the map with elder villagers who appear concerned and cautionary. "} +{"id": "1006252", "video_name": "72955590-615d-5c17-8fe3-37c6ec89458a", "text": "animated digit 1 coming from right side slowly walking "} +{"id": "7003851", "video_name": "d03be552-e7fd-5d3a-b3a0-66400a9fdf43", "text": "an office building from the outside "} +{"id": "1003990", "video_name": "49ce90b4-1231-59cf-80f8-140b45885c77", "text": "sea surf Message: good bye (Font: MODERN) "} +{"id": "3003435", "video_name": "b25b0634-4d1d-5499-ab74-662c6c8af7c4", "text": "UFO over White House USA, 70mm Anamorphic lens "} +{"id": "8001732", "video_name": "07546d29-6301-5c8a-a019-e39306906365", "text": "halbody giraffe and half body zebra in a cool, cinematic colorful dessertbackground "} +{"id": "3005970", "video_name": "88dc2c33-e5ca-59ad-a982-6bcbbb043eec", "text": "Why Satan Appeared Before God in the Bible, 8k, realistic, fulhd "} +{"id": "1006523", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "TV in the old room with white noise, natural light emphasising the textures, high detail, 8k resolution "} +{"id": "1006333", "video_name": "73debc5d-05b2-5e35-a2be-912309f81c7f", "text": "cyberpunk sports car drifting on a neon lit cyberpunk city "} +{"id": "5001809", "video_name": "57740501-0441-57df-91b9-ddea02f34cab", "text": "Produce an evolving and dynamic world video "} +{"id": "6004695", "video_name": "6edc3680-eff6-59b6-860f-663a3f3c0043", "text": "traveling thru a road in the middle of thick forest in india "} +{"id": "0005866", "video_name": "2282fac6-1ca9-584d-a107-652a36dbefa8", "text": "A customized gaming desktop showcase, zoom in, detail and correct place exhibit of GPU, CPU, RAM, Hard drive, and mother board. "} +{"id": "6003266", "video_name": "a1505f2d-5b3a-58ae-bcd7-276d146a448f", "text": "A serene view of the small village of Bhanwargarh in Uttar Pradesh, India, surrounded by lush green forests. "} +{"id": "1006374", "video_name": "74b1e55d-cd9f-5913-ad6f-2a19c1c63f5b", "text": "defying human logic KFC in the red robot superbowl water "} +{"id": "8002090", "video_name": "c69e21dd-d9d4-5b1e-9785-774f64546e1c", "text": "a couple running, holding hands, ultra hd, city lights "} +{"id": "2003163", "video_name": "9a388970-e86f-5a35-97f9-459d9f501680", "text": "pretty young lady dancing in yoga outfit "} +{"id": "1005997", "video_name": "6e36c49d-8e1b-5b7d-ab21-361a6b1c7887", "text": "A soldier watching a magical sunset, wondering, studio ghibli style "} +{"id": "3005216", "video_name": "fabd00d8-5aff-577f-8248-a3211ef67fcb", "text": "Sonic X Sonic Running Through Green hill zone in a 2d way without 3d and make it look good "} +{"id": "6002417", "video_name": "73cf3d75-df2c-5489-a82d-7469e0f85df0", "text": "Porsche 911 turbo is in the desert with winds "} +{"id": "8003882", "video_name": "8e640fcc-4b53-5a2e-8715-c28e7f4f921c", "text": "A cinematic image of a prehistoric landscape "} +{"id": "1004824", "video_name": "59227ca2-400e-54b7-a90a-fea74a9c7d27", "text": "deeply unhappy with her betrothal but consents to the match, wedding in sultan "} +{"id": "2004090", "video_name": "19fd043c-23a2-5341-9323-a3fdce660bfe", "text": "group of bear walks in a forest with kitties as clear 3D "} +{"id": "2004460", "video_name": "f18f7f58-4e12-5abb-bca1-efa568a22b45", "text": "The clouds in the sky are fluttering "} +{"id": "6004624", "video_name": "6851fad9-381d-5265-98ab-b6a0ba0335f2", "text": "wooden architecture in a snow capped mountain "} +{"id": "3005699", "video_name": "4ae2983e-90b2-5604-abc3-fc58ed6e0dda", "text": "A door opens automatically, surprising a cat. "} +{"id": "8003808", "video_name": "6b90f00d-3aeb-5198-89c1-f7dce76b409a", "text": "25 year old man sitting on the floor playing guitar in a one light room "} +{"id": "8002902", "video_name": "20c7fd77-c6a4-501d-9928-12591d985252", "text": "the sun shining bright through a thunder storm over a beautiul grassland meadow, cinematic, hyperrealistic "} +{"id": "3006843", "video_name": "4d631815-d437-5d6a-8165-be5ca3926d7d", "text": "japanese sword fighters in the setting sun in the woods, zoom out "} +{"id": "8002010", "video_name": "710f05ef-8ffc-55a6-b8b1-bb13cb41407a", "text": "Barack Obama, Oprah Winfrey, Donald Trump, and Princess Diana waving. "} +{"id": "1003006", "video_name": "372fe8c1-3fc9-5f9c-89e2-595238215f72", "text": "The Splendors of Ancient Egyptian Hieroglyphics. "} +{"id": "2005623", "video_name": "b8a0723b-74bf-59a1-ba0c-d5cf77618241", "text": "Mac DeMarco playing on guitar in the studio "} +{"id": "2004935", "video_name": "c63abf87-f144-5d5e-aba9-b759bc446c35", "text": "Front door of old creepy house opening dramatically in a 1940s black and white illustration style. "} +{"id": "7002684", "video_name": "46e7541e-f850-55a1-8be2-1b17a1efb6c5", "text": "powerful angel fighting werewolves, 4k, ultra realistic, cinema style "} +{"id": "2004975", "video_name": "057a83d1-35ac-5c67-acf5-6837da304f8c", "text": "a bouquet of beautiful flowers dancing and exploding then dripping before being replaced by new flowers "} +{"id": "3004241", "video_name": "1c73d25b-96b4-594a-b13f-ac0efcf24d5e", "text": "In this diverse ecosystem, there were animals of all shapes and sizes, each with its own role to play. "} +{"id": "8002857", "video_name": "3add55aa-f762-5b2c-9145-26cc0608b49a", "text": "Act like a professional video creator, and generate a 10 minutes video prompt for animated video for Arc Flash safety about a Electrician working in plant (confined space) on Electric panel met with an accident and fall on ground due to Arc flash, guide what do do in emergency situation, instruct how to prevent further accidents, Instruct how to work safely on High Tension Cables and Low tension Cables, use previous data statistic of Arc flash accidents "} +{"id": "2005080", "video_name": "d92d4062-af5c-5355-996a-aa01bbeb0a85", "text": "A little boy is walking in a forest with a wooden stick.clear 3d animation and 4k video "} +{"id": "2003707", "video_name": "c1195cce-b005-5983-b932-51f41878b4cd", "text": "shampoos and perfumes on a shelf in a store "} +{"id": "0005396", "video_name": "1a174d83-cbe8-5203-9fce-1ce1cda394a4", "text": "sunshine and clouds zoom out Message: Thanks (Font: MODERN) "} +{"id": "2006443", "video_name": "a63e3f99-f647-5cf1-a348-1edd880e600a", "text": "100 miniature people dressed as pirates climbing a coke can fighting along the way "} +{"id": "2004992", "video_name": "fcb565b2-8e8d-57b7-b38d-098b4b5480f3", "text": "Personify midjourney and stable diffusion, and then the two of them are fighting "} +{"id": "6002890", "video_name": "f3c3e52e-d0e3-52ff-8356-fe70163b6a1d", "text": "Create an image depicting the moment when Commodus was strangled by a hired wrestler in his bath. "} +{"id": "2007872", "video_name": "fc42b27d-a0f9-5ade-a2ea-cf5b8ff393e0", "text": "number 1 in math sitting on a chessboard Ultra HD 4k hyperrealistic zoom out camera "} +{"id": "4003416", "video_name": "d7b3bc8f-e363-5982-837c-301826874003", "text": "Optimus Prime happy in El Salvador anime style "} +{"id": "0003065", "video_name": "365d514e-fd20-5725-b443-31bf89a0257e", "text": "An allegory of the tree of evolution from Darwin theory "} +{"id": "8003102", "video_name": "66eaa83a-728f-5cc9-9841-083b2801f400", "text": "animated motion of an sheep running on the road "} +{"id": "2006810", "video_name": "9296a438-83c8-5ac0-a1a6-58b98fb9c35e", "text": "parking an rv from far away "} +{"id": "6004113", "video_name": "731aa2fe-eabc-52a4-9a95-7970e800f298", "text": "red origami waves filled with strawberries "} +{"id": "1005756", "video_name": "69e8484d-bb82-5801-b5b0-a69745da9257", "text": "A Chinese boy playing football at sunset, Cartoon Style "} +{"id": "7002994", "video_name": "491bab17-abe1-597a-a212-b91492c659c3", "text": "person facing an obstacle, with the shadow of God at their side "} +{"id": "8003346", "video_name": "f98826b0-d042-5fbc-b229-33a45c63d4e7", "text": "people wait outside the party, with big home "} +{"id": "4003011", "video_name": "1831dbfe-0abd-54f6-9579-42563d7f75ba", "text": "anime style, diamond, greek pillars, a person touching the shiny diamond "} +{"id": "8002419", "video_name": "8ca6e823-0c5c-5d4d-815b-253f675d8f00", "text": "dancing goat in the snow, movie 20 seconds, bright daylight, blue sky, red sun "} +{"id": "8003333", "video_name": "8e85b2c9-5a53-53e6-b8eb-3679694d70e2", "text": "Sohdai is an amazing world of the wild west, where warm rays of sunlight illuminate narrow streets and colorful levels limit life. Your video should capture the atmosphere of encounters with friendly residents, breathtaking scenery along rivers and mysterious corners of the old town. moments that stay in your memory forever "} +{"id": "4004169", "video_name": "2549a0b5-4b6c-5a4a-bd3e-c7f16bcb76d7", "text": "Russian flag on Ukraine government building "} +{"id": "7002451", "video_name": "7cd982b1-609b-5ec0-8384-fa07a200534d", "text": "flesh and muscles pumping red in style of yves klein red installation, zoom closer "} +{"id": "6002902", "video_name": "3b8538fc-955f-5331-ad26-4ff5aa80e0df", "text": "The leader of Germany during 1940 in front of the Eiffel Tower "} +{"id": "0006236", "video_name": "28e3a9f1-6057-5e08-b496-cfea3bc44700", "text": "valorant highligts 8k 2000 fps all movement "} +{"id": "7004992", "video_name": "4b53874c-e896-599d-b7ac-fa88db60a96a", "text": "girl with white hair, white silk covering her eyes, crying, praying to the moon "} +{"id": "8003012", "video_name": "58e72deb-c859-5360-9ec8-918409ddd1fc", "text": "Simple house, workers, demolition walls, interior "} +{"id": "5001084", "video_name": "ee0ad9d9-34ae-587c-bfca-dae9530cfb24", "text": "a scary monster crashing through an old house at night, shot on vintage film, scary "} +{"id": "8003342", "video_name": "fc3b60a2-c75b-5ef9-bf3b-f6a5778f8035", "text": "a dancing pink panda with blue eyes "} +{"id": "1003726", "video_name": "44d65796-3b67-5875-93f1-0f35b15a4cd1", "text": "Gigi surrounded by blooming lollipop flowers in the Enchanted Garden.Animated cartoon "} +{"id": "2003709", "video_name": "8becc0f9-2196-5d73-b001-4102309387d6", "text": "At night, brightly lit and snowy oriental ancient streets "} +{"id": "8003698", "video_name": "c76de06b-92a8-5299-9cbf-0005cce91952", "text": "Create a mba graduate in the field of HR with corporate office background office and highlight the background with the important HR skills "} +{"id": "0005891", "video_name": "22dafcdb-840f-5362-80fa-2795c818ad53", "text": "A knight in gold shining armor swimming in the stars of space "} +{"id": "6002433", "video_name": "92f78a9f-46fb-51de-b96f-cf696322b48b", "text": "Pillow Farting and Green Smoke Comes Out "} +{"id": "4004680", "video_name": "66ad21ab-edfb-5d34-8acb-a9171e16be7c", "text": "very sigma male with muscle mass like gorrila and so sigma "} +{"id": "0003393", "video_name": "3cc5147e-8b70-5441-8fa4-1a0350e74809", "text": "Kim jong un runing away from police "} +{"id": "1004644", "video_name": "565b9908-3d63-5eeb-a9a8-c8cde7d4b930", "text": "3D animation, village with rabbits, squirrels and birds "} +{"id": "2005501", "video_name": "6a01064a-b135-5e69-8d5f-6fdb64066504", "text": "A girl walks slowly among the trees, heading towards the sun. "} +{"id": "6003457", "video_name": "eb2c5bf7-3224-5f2e-8318-2f30be1e9b01", "text": "A ruined settlement many house ruins "} +{"id": "0003940", "video_name": "002ef7ca-a4de-54df-8088-40f9ded5aa7d", "text": "wonder woman eating a piece of pizza sitting on a rustic wooden table "} +{"id": "6004600", "video_name": "6e47ac79-1a43-5877-988e-78e52b57ee63", "text": "Star Trek, USS ENTERPRISE star ship, saucer section, two nacelles, black letters, space, laser beams "} +{"id": "4002017", "video_name": "49ee61ac-b629-530b-b7bb-352eb9b3dbfb", "text": "Cinematic Portrait Close up of a princess walking in a flower garden "} +{"id": "2005969", "video_name": "6d11e912-8120-5b54-9411-9fc9cab56d59", "text": "The war of Kurukshetra is a devastating event that results in the deaths of millions of people. \n\nGandhari loses all of her sons in the war, including Duryodhana. "} +{"id": "8001769", "video_name": "130addb9-76c3-524c-abd3-a481056c9c98", "text": "make a logo with the text \u201ehis notes\u201c, let it look cartoonish and animated. there should be a pencil. "} +{"id": "3003080", "video_name": "cbde943e-7f9b-52b4-990a-83047de5789a", "text": "black and white grainy film style video of a huge thunderstorm "} +{"id": "2006784", "video_name": "e85962b3-6371-5477-ab38-b1e70ca88567", "text": "movie scene from blade runner 2049 of a man meditating "} +{"id": "0004283", "video_name": "06570a95-e471-540b-b9d3-4525eef7e6bd", "text": "tall stack of photo print like a tower "} +{"id": "3003173", "video_name": "1bcb23d1-b5cd-5533-af17-270f705bf955", "text": "Musician playing an instrument on Mars "} +{"id": "2007425", "video_name": "089b6652-39f4-5a5b-abf1-bd3a83804cc9", "text": "deep at night, a man in a dark forest, got lost, a monster is watching him, looks out of the trees, from different angles "} +{"id": "0005786", "video_name": "21388876-220e-58df-8a4b-fa67b6de97ee", "text": "naruto on a train Message: huh (Font: MODERN) "} +{"id": "3005709", "video_name": "bbe6d1c9-a308-5dca-8b6e-d12fb7f188e7", "text": "a girl gives another girl a pendant in the form of a heart with an arrow "} +{"id": "2003074", "video_name": "8ff7e5e2-9a87-5f0c-ae76-a660b3d2cce3", "text": "leopard wearing golden armor holding a sword going to fite "} +{"id": "3006589", "video_name": "3e11c8f8-2aed-5590-9b1e-b559f97f5fd0", "text": "a killer nanobot fly landing on a ladybird high definition, cinematic, clear image moving "} +{"id": "1003312", "video_name": "3cfe2dac-60f2-5efe-b922-50eb5c37e614", "text": "Disney princesses in popcorn. realism. tattoo "} +{"id": "0005168", "video_name": "15f27bca-d8ff-5c9d-a96c-5a1d7aa2fe94", "text": "high resolution science fiction 8k cinematic film space soldier armour futuristic sleek coloured visor helmet laser pistol imaginative product design arresting imagery lighting "} +{"id": "7003364", "video_name": "c7a29051-3d23-5cce-a356-84c9e15e95ed", "text": "A luxury yacht in a beautiful bay "} +{"id": "4002279", "video_name": "cb1180b6-1718-534d-a713-eb8260817c8d", "text": "The delicate touch of flower petals. "} +{"id": "7004327", "video_name": "8e5e196a-c042-5e71-ab3b-cd8e172b52ad", "text": "real camera footage of tom cruise hanging of the empire state building in 2023 "} +{"id": "6002000", "video_name": "36c5c620-190e-54b4-bc5f-89b1f520e9d4", "text": "Inside a Benz car in a luxurious restaurant next to an artificial lake, Burj Khalifa, wearing a nice black coat and trousers, watches and wristbands. "} +{"id": "6002702", "video_name": "a6d64208-501c-5bdb-a25b-c0206f36e554", "text": "Show Emily and Max meeting creatures that speak in a language of melody, and describe their astonishment at the communication. "} +{"id": "8001867", "video_name": "6e03f45b-dd4a-5400-bd2f-9419f77a74d2", "text": "Gajiya, an Indian wrestler bodyguard in 1920, fighting another larger wrestler and carrying him over his shoulders and screaming at the camera "} +{"id": "0005413", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "realistic 8k uhd planet collision with another planet explosive impact in space "} +{"id": "8001520", "video_name": "966e5f8d-fab1-5bcc-b518-266a1c4015a8", "text": "sara and jack talking about their love under the oak tree, cinematic shot, 8k, "} +{"id": "8003950", "video_name": "ffcf1552-98a6-512f-bea0-bba2d4a8fee6", "text": "Battle of German forces against separatists on Verdun "} +{"id": "4002335", "video_name": "d6762417-5430-521f-91c5-f909630a168a", "text": "Generate an illustration of Roronoa Zoro from One Piece walking gracefully along a grassy field during sunset. Render a captivating side profile showcasing Zoro with one hand confidently gripping the three swords at his side and the other holding a distinctive gourd water bottle. Capture the warm, atmospheric hues of the setting sun, highlighting the stoic yet determined demeanor of the character in this serene moment. "} +{"id": "2003457", "video_name": "f8909710-97b8-52b3-973d-19f78bb60aa4", "text": "a path fading into the horizon "} +{"id": "8003287", "video_name": "b4019236-7314-5e29-9215-d846696cfab2", "text": "polaroid photography, beautiful girl with long red curly hair, freckles, a lake with trees, film grain and chromatic aberration , spotlight "} +{"id": "1006895", "video_name": "7e042e34-561d-5540-93de-a7b1b5fdc04d", "text": "Protestors wearing all blue, holding blue signs, blocking blue cars "} +{"id": "4004882", "video_name": "e0dc00e6-0968-5a40-aba8-c789502b9ad6", "text": "A tech senator in a cyberpunk environment "} +{"id": "7004760", "video_name": "305e3576-a924-5f97-89c8-7b22bc291446", "text": "nasa finds an ancient dust in the darkness of space with new quantum light made from a super conductive material that ingnites plasma "} +{"id": "2004274", "video_name": "253a8c0d-2a18-504c-a6ef-a77cdbed63d8", "text": "a boy playing video games, cartoon style and blue hoodie and a headphone "} +{"id": "3006446", "video_name": "39d5f024-06db-528f-838c-f7bb971ea277", "text": "abandoned town houses along a deep valley road, somber dark pine trees and hills, dark night sky with purpuric blueish weak tones , unreal engine 5 ultra detail hyper realistic dark fantasy style shading shadow depth cinematic aesthetic "} +{"id": "2006519", "video_name": "4369af7e-d9ab-5f9f-b59d-430056328a50", "text": "An artistic representation of the aftermath, with the city of Iram in ruins and people seeking refuge "} +{"id": "1003489", "video_name": "40a9c2f4-ea26-553f-b446-06e0f8ff59cf", "text": "a Bitcoin morpging into a hotel room "} +{"id": "0003257", "video_name": "3a367a29-118c-5087-a16c-99756a3df591", "text": "leela a young girl she embarked on a journey through enchanted forests, crossed luminous rivers, and entered the surreal Dreamwood, a forest existing within the dream realm. "} +{"id": "3004419", "video_name": "0ee271b0-508b-575e-b191-c28ae9064543", "text": "cats in a line Message: 1 Attachment "} +{"id": "1005289", "video_name": "613ddc9c-6a46-5a9c-ad6f-45a0ec73fe4a", "text": "youtube ibotton like,share,subscribe short green video "} +{"id": "3003723", "video_name": "ed04f887-5266-55cf-aa85-1daadd1fdf7d", "text": "cute boy standing in a creative landscape "} +{"id": "0006813", "video_name": "338797ee-758d-5976-84fd-efc4295a30c7", "text": "full body view of girl, because she dropped her ice cream "} +{"id": "6004169", "video_name": "ab310abc-c05f-5178-aed5-f79836b9f69d", "text": "a lady dancing with half a face "} +{"id": "4004165", "video_name": "a74290c8-e2c6-58c8-9710-8bdbcead2b57", "text": "A beautiful sky Message: PANTOS (Font: MODERN) "} +{"id": "7002655", "video_name": "1891fedd-44cc-51b2-b675-432247d4dffe", "text": "A pink rose opening with oat dewdrops on the petals "} +{"id": "4004556", "video_name": "ba19ab40-6a03-58fe-9846-13c0a5750599", "text": "a dachshund jumping through a birthday cake "} +{"id": "8003913", "video_name": "b1cdd125-6904-5d78-9402-c022d4aee58c", "text": "lofi girl in a cyberpunk world "} +{"id": "1006767", "video_name": "7be0d46a-93e2-53e7-a8f2-b314ae611595", "text": "world war one machine gun, ultra realistic, grainy, high resolution, candid 8k form, ar 16:9 "} +{"id": "8001982", "video_name": "60323a0e-190e-5b11-aa7b-3893b0434a31", "text": "blonde girl wearing a white dress in the snow "} +{"id": "7003570", "video_name": "e549816b-64ca-56d1-9e50-835f42f5780a", "text": "Hockey game in a stadium full of people Message: 1 Attachment "} +{"id": "3003329", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "Two stars shining bright in the London sky, dark blue sky, magical, 70s dark fantasy style, live action, realistic, cinematic, vintage, HD realistic, ULTRA HD, 70s movie style "} +{"id": "3006738", "video_name": "c4cac566-daf8-555b-b729-38d659f78524", "text": "two rugby teams are walking out of the tunnel entering the stadium and walking onto the pitch, the camera is between the two teams as they walked past, new zealand vs south africa, audience is cheering, pixar style "} +{"id": "2004664", "video_name": "686c01b2-f72f-53d0-8c65-e435392725e1", "text": "greyscale grainy security cam footage, low framerate sped up, unsettling atmosphere "} +{"id": "4004026", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "sharing in social media in cartoon "} +{"id": "3005841", "video_name": "5a14a7f9-2e1b-5da8-ac4f-0b2ae9768ae4", "text": "a woman with short hair and Green yes walking on a beach at sunset style Disney Pixar "} +{"id": "8001435", "video_name": "cc143b21-4706-5a33-9301-23e0e4a93333", "text": "cinematic, photorealistic, two mantis dancing tango "} +{"id": "6003875", "video_name": "bbac4e38-fa98-5a6b-843c-d0bc4bf98f1e", "text": "hyper realistic ,8k, woman playing with her children at a beach, thailand beach scenery, extra long "} +{"id": "6003273", "video_name": "17cdefaf-e1a0-5c69-8df1-4251f0d67920", "text": "Rocket trails in the sky spelling out the words EVIL Message: evil (Font: MODERN) "} +{"id": "6002991", "video_name": "f7e34aee-7393-5a0d-9291-f92980e58891", "text": "surreal abstract flower blooming, black and white, 4k "} +{"id": "4004898", "video_name": "dfee371f-1002-56aa-b3dd-b408db244c02", "text": "scene from a Cyberpunk Movie, downtown Street full of shop, under the rain, a man in walking in the middle. Cinematic footage, hi quality, 8k "} +{"id": "0006815", "video_name": "338eedb2-b079-57c0-b011-396e5b67202a", "text": "Groom and bride dance at wedding "} +{"id": "8003944", "video_name": "f685e63d-bcaa-5133-ae8e-8eff4d07cedb", "text": "lady addvocate and 6 lady firiends are singing in the train "} +{"id": "2003654", "video_name": "db326861-11bc-5f90-ad41-812a7a32ad5d", "text": "smiling fish swimming out of an underwater castle surrounded by underwater enormous trees "} +{"id": "3006368", "video_name": "df7ba0d8-b86b-5070-a7a9-143fc0bfc188", "text": "a husky running in high speed "} +{"id": "2004193", "video_name": "68455ca0-b69a-5333-89ce-9780817187b8", "text": "There is only one thing in life "} +{"id": "6003794", "video_name": "b2081b1e-df86-544e-83fd-baae2d97aa8a", "text": "drone attack on Kremlin. Russian flag is on fire "} +{"id": "2005454", "video_name": "e6863639-4895-57bb-881a-bfaf77ca692a", "text": "animate a scene where Bholenath and kamakhya sitting in front of a river "} +{"id": "4002545", "video_name": "84761269-d4a8-5d51-85d2-d8c8d6ea1cdb", "text": "Peanuts flying out of an aluminum tin in a swoosh in speed ramped slow motion "} +{"id": "2004863", "video_name": "3b105312-03b8-58cf-8f61-42bf24733b07", "text": "taking the form of a shepherdshepherd "} +{"id": "2007993", "video_name": "81283624-6921-585e-828e-b1af6af78efd", "text": "A girl faces forward and gradually smiles "} +{"id": "2007542", "video_name": "7c255b0a-9e9d-5ffa-8972-0b23e5a69213", "text": "scarlett johansson underwater, RAW, professional, 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3, realistic, best quality, masterpiece, detailed "} +{"id": "6003278", "video_name": "09ccc22d-27a9-547e-999c-1cc6106627c3", "text": "chocolate stream falling into chocolate cake,4k,beautiful,ultrarealistic "} +{"id": "4003162", "video_name": "2eb5c56c-b03d-5acf-b479-afc2a1fcc457", "text": "A young man, just turned 18, sits in a plush leather chair, his fingers tapping away on the sleek silver keys of his Apple laptop. In front of him, a wooden table holds his laptop, a stack of books, and a steaming cup of coffee. In the background, a large black screen glows, displaying lines of code and intricate digital designs. "} +{"id": "0004252", "video_name": "05d05cba-5740-5c96-942e-7956d6ae599b", "text": "3d printer prints model, dark background, realistic "} +{"id": "0006330", "video_name": "2ab91dd4-ccf6-500b-a7eb-70a05000a4e1", "text": "Girl and fairy in the park animated Cartoon "} +{"id": "4004985", "video_name": "855ab5c0-7feb-5fb0-b928-7b7f69b9f3ee", "text": "synthetic biological snake creature, ghostly white skin, alien features, slow mo, lab view "} +{"id": "2003511", "video_name": "bab98c3c-0ec9-5833-a5bc-3ee948166660", "text": "girl in green dress with star in her hair, Flowing magic mantle, Glowing capes, clothed in ethereal armor, Armor made of ice crystals, Wearing Diamond Armor, Magic dress, The Crystal Maiden, A glowing aura around her, fantasy dress, Crystalline skin, in opal armor, Green aura, Luminous details!, astral witch clothes, Azure Cape, green raincoat "} +{"id": "8002048", "video_name": "ed5e9009-0ad0-56d9-b336-893a2e840bb8", "text": "a cute red cat smiling a cup of milk "} +{"id": "2007712", "video_name": "c827390c-5034-5218-a5fa-d61f7004b8a2", "text": "police standing to guard a film shooting "} +{"id": "3005600", "video_name": "3aaa31f2-f696-58e0-8884-f59cc8baa789", "text": "small boy plying in magical garden realistic 3d "} +{"id": "4002301", "video_name": "810f3fc6-a49f-5836-84d5-6f664d34580a", "text": "the boy standing ship middle of deck,sunset,yellow sun, "} +{"id": "2004119", "video_name": "cd42df2e-77b6-5ade-bace-fb3d4d32a485", "text": "dss Message: man ye ghahremanam (Font: MODERN) "} +{"id": "3004645", "video_name": "90826b0f-0d6e-5f08-96ac-03f2f3c8cb5c", "text": "There is a scientist in the screen who is studying activated carbon samples "} +{"id": "6004081", "video_name": "64c557e9-f4e0-5bc1-95d9-98d3348a5984", "text": "Uzbekistan flag is flying on Mars "} +{"id": "4004464", "video_name": "28ef6aaa-4af2-5ee8-b891-74e0f4257cd5", "text": "wax candles are chasing bees through the autumn forest hi res dark key "} +{"id": "4003665", "video_name": "e526b187-8d00-5c45-904a-6e5048f7d0c4", "text": "beautiful elf gir, mini skirt, with bow, hunting for a pray, high detailed "} +{"id": "5001311", "video_name": "1361cf47-1601-587b-a6d6-1fed011f16f6", "text": "is full of toughness, determination, and dedication, showing how courage and cooperation can lead us to success in the struggle against an invisible enemy. "} +{"id": "5001571", "video_name": "7f98f735-6143-541a-b23c-9fa5bab658ed", "text": "painting of a honey drew fruit "} +{"id": "0005601", "video_name": "1dcbe376-cf92-5ac2-a1c8-caaabd867d34", "text": "The Joker is sitting at the poker table "} +{"id": "8001962", "video_name": "4973452f-4ce2-5990-bad5-c33c63523314", "text": "wide shot, a super heroine standing in the wind her hair blowing as fire burns all around her, the wind blows her hair and cape, her cape flutters in the wind, she stands defiant, fists clench in anger, she frowns, and th camera zooms slowly in on her defiant burning expression "} +{"id": "2005048", "video_name": "cc71093c-f2a1-58cc-8906-51100886e815", "text": "worker in dairy industry working on tetra machine "} +{"id": "0006579", "video_name": "2eebb9aa-a9d1-5f60-9e27-2182fcbc671d", "text": "a cinematic video of the ocean waters receding from the shoreline ahead of a towering tsunami wave "} +{"id": "8001984", "video_name": "b6c73d9d-6195-5505-8469-df4b039d3171", "text": "A realistic and cinematic scene of several meteorites falling from the sky to the earth engulfed in flames. "} +{"id": "2006003", "video_name": "333c3bd4-9e61-5057-b73b-a027162d6220", "text": "Mix of Vladamir Putin and Joe Biden "} +{"id": "6002703", "video_name": "fe0dcfb1-1241-5108-90fe-5c636e93fe8b", "text": "audi a4 b9 2016 avant roling down the street "} +{"id": "1006351", "video_name": "74488759-3d79-52b7-bc08-dad5563c75f3", "text": "Video clip from the other dimension for guilt and the last day :1080px x 1920px "} +{"id": "6002509", "video_name": "9d922a10-e60b-5cba-9583-bb3cb792dd5f", "text": "a yellow labradoodle and chocolate Labrador sitting on a porch "} +{"id": "2005474", "video_name": "3342519e-38b1-598b-a511-41a0f4cfe485", "text": "sweat soaked shirt hitting the ground i gym "} +{"id": "7004306", "video_name": "fce3459d-133f-50cc-b798-cefbe1990eb1", "text": "Opening shot of a dynamic and futuristic blockchain animation "} +{"id": "4002304", "video_name": "ce848706-e3d2-5afb-9064-b8bee0d5c5de", "text": "A young woman named Ava stands at the edge of the shoreline, her gaze fixed on the distant lighthouse. She holds a worn map in her hand and her backpack slung over her shoulder. "} +{"id": "3004663", "video_name": "1bb35b0c-6b67-5f7e-84b4-dbd854efabb2", "text": "professional cinematic shot of streetlights illuminating in the dark foggy night bokeh dof "} +{"id": "7004666", "video_name": "59925c6a-1b4d-5704-be3f-46755f18c1e3", "text": "rain of green diamonds on the house of a poor family "} +{"id": "3003993", "video_name": "04e4d387-5856-5a7a-9c97-4b54dfe7f572", "text": "A phoenix whose entire body burns and shines like fire spreads its wings and flaps its wings. "} +{"id": "2006848", "video_name": "ff72e1c5-6d3e-5a76-a115-ce921b88cf0c", "text": "One Girl Stand in the road During Rain "} +{"id": "3003263", "video_name": "92f7654d-cf83-5282-b228-c686a8ae0dad", "text": "Wheelchair user doing backflip on a skate ramp "} +{"id": "6004530", "video_name": "60a7b953-b9b7-5651-aa0d-72dc48b43049", "text": "johannes verneer style picture of a man sitting in a park "} +{"id": "7004769", "video_name": "daf4aa00-423a-573c-b7aa-7ea2fd47ba3e", "text": "A lone cherry blossom tree stands at the edge of a tranquil pond. The soft pink petals create a stark contrast against the dusky, indigo twilight. The water below perfectly mirrors the delicate branches, disrupted only by gentle ripples from a solitary duck gliding by. Above, the crescent moon peeks through wisps of cirrus clouds, casting a pale silvery light on the scene. In the distance, a shadowy mountain range stretches, embracing the horizon. "} +{"id": "1003291", "video_name": "3c945f23-543a-5aac-a237-9b2d81009f3b", "text": "man holding a bottle Champagne popping "} +{"id": "4002755", "video_name": "3e93461f-893a-5ff3-a405-1b47703fcbce", "text": "a boy is born without magic in a world where magic is blessed to everyone . He trains himself hard and beats the ones with magic "} +{"id": "2007195", "video_name": "b19f598e-e1ae-5cc3-8a39-7ef99253bb8b", "text": "Moonlight, roses from the brilliant stars across the sky, the sky appeared vaguely a beautiful face Hangzhou woman and Shanghai handsome boy gazed at the picture of deep love, 4k, soft light, the picture visual effects shock, the camera follows! "} +{"id": "1005731", "video_name": "696c469b-c854-5b2b-95d5-ee81ecdf5755", "text": "earth breaking up right down the middle "} +{"id": "7004169", "video_name": "fa1d4515-39d4-532a-a0e0-c87d702b054d", "text": "1990s VHS nostalgic video of kids inside a shopping mall, Synthwave, 1993 "} +{"id": "0005445", "video_name": "1ae2cf30-3873-542c-9c86-79110e947110", "text": "Tesla Model S, flying with wings, on the sea, there are several islands in the sea, and there are dinosaurs swimming in the sea "} +{"id": "0005536", "video_name": "1c73765a-2878-55e1-a89c-e348ff9bbddc", "text": "A poor boy lives in a small villagevillage 4k "} +{"id": "1005904", "video_name": "6c8ab91a-409b-5364-8652-a4415e78a2fd", "text": "espresso making in a busy city "} +{"id": "0006178", "video_name": "27c39498-bb98-55f5-abde-0b360bc158c0", "text": "make a orca fighting with sharks "} +{"id": "0003641", "video_name": "40e8bd98-5860-5458-87c3-170ca2f4c653", "text": "ancient kings of the east in the desert "} +{"id": "8002271", "video_name": "3b3f60cf-3309-5ee9-8592-b4e715f5f617", "text": "Ferrari 488 Spider traveling at a speed of 300mph jumps off a cliff "} +{"id": "8002363", "video_name": "1297b167-7619-56ff-85f7-8bf2d08ce970", "text": "Medieval castle sunset dragons flying cinematic "} +{"id": "0003894", "video_name": "455ea680-0d11-5ffb-a588-82f58cea332d", "text": "woman hands typing text into smartphone "} +{"id": "8003280", "video_name": "4aa070b0-20a0-581a-9576-bad692d3f245", "text": "Birds Fyling on Sky, stars around "} +{"id": "2005301", "video_name": "cf7437e5-9679-5860-860f-d9e1d4e37e84", "text": "human hand drawing a bycicle on a white page notebook, anime style, 2d animation, 5 seconds animation "} +{"id": "2006459", "video_name": "4df5c43c-5a61-5150-b27e-21736ef25014", "text": "A realistic whale swimming in the sky, movement forward from left to right. "} +{"id": "2007025", "video_name": "f6ecf995-df76-5adc-b7e9-4f66788b097f", "text": "the crew members waving goodbye to the shore. Use aerial shots to capture the vastness of the sea. "} +{"id": "3006402", "video_name": "9a6bc99a-c556-5100-8b7b-accea071afcc", "text": "small, multiple explosions similar to fireworks occur in the corners of the brain mass of a brain seen from the inside, cinematic, medical video "} +{"id": "3006201", "video_name": "6583b554-9ba7-567d-b7a8-713bc3eeb2c5", "text": "5 seconds animation, Small Old man, long white beard, long red pointy hat, brown leather clothes, wood staff, big backpack, Walking in enchanted forest, warm light, Hyper Realist, wide angle, camera flares "} +{"id": "3003953", "video_name": "5a5b3485-42a9-5978-88fd-c6f147eb3b0a", "text": "a video with a robot TV news presenter in a TV studio talking about overtourist and desolated islands. a news ticker crawls on the bottom "} +{"id": "1006614", "video_name": "793d5802-8665-5578-bbec-3c7c9cbe9521", "text": "squirrel showing off his speed by racing past a group of baby birds as they attempt to fly. Capture their awe and amazement. "} +{"id": "0006996", "video_name": "3662e28d-bcff-5275-ad15-74b635734ac2", "text": "a tree of money grows inside a prison cell "} +{"id": "3006827", "video_name": "1d51e72d-9846-51f0-931e-1b346b2da7f4", "text": "detective Sherlock Holmes walking in Copacabana Beach enjoying summer and drinks caipirinha, luxury, gorgeous, action pose "} +{"id": "4004770", "video_name": "7a6a46d6-9c0b-5add-abb6-058a7c004d71", "text": "amazon forest, with a rainfall, mountains, sky Message: S (Font: MODERN) "} +{"id": "6004533", "video_name": "2511ee39-1403-5b80-99f0-4fcb218f2921", "text": "glitter orange splash with hypno black and white wave "} +{"id": "0005009", "video_name": "132cf0ab-c9cd-53bc-b42e-e3d2514db184", "text": "tv sitting on table playing alice in wonderland "} +{"id": "0005718", "video_name": "2015e140-a0c7-5788-aa31-3048d32a101b", "text": "city of flowers one girl one boy "} +{"id": "6003519", "video_name": "344a1def-9a73-5789-af6a-fd20f3b48800", "text": "Irish flag on top of Empire State Building "} +{"id": "3004561", "video_name": "3eb92a92-92ff-54e8-9042-68acfd9caaee", "text": "satelitte in orbit around alient planet scanning planet for life forms "} +{"id": "2003500", "video_name": "4907c253-a916-5a2e-baf2-17ea47de5afa", "text": "an epic crest with some gears and maschine parts in it "} +{"id": "1003845", "video_name": "46ddcc01-7e36-5e69-93b2-524865a3702b", "text": "The tuna is in a transparent bowl. Now mix the flaked tuna with the sriracha sauce and mayonnaise and garnish with sesame seeds. The addition of sriracha will make the mixture creamy and slightly reddish in color to the mayonnaise. "} +{"id": "7004330", "video_name": "93b267c4-fea3-5326-9b3a-04dfad5837ca", "text": "A cartoon character whose upper body is transparent while the lower body becomes semi transparent "} +{"id": "6002402", "video_name": "748fd13a-f50e-5039-986a-872b868467d2", "text": "Reveal the eerie chamber with eerie artifacts, bathed in a strange glow. black and white 16:9 "} +{"id": "2006626", "video_name": "267cde82-fa81-5df1-85c5-a67eda8e117a", "text": "white federal building Message: 1 Attachment "} +{"id": "2006969", "video_name": "1ae6e4bf-1992-56a8-9c02-a8d61f480bc9", "text": "On a ship, there is a giant octopus moving around "} +{"id": "2004092", "video_name": "0d9d44e9-8ebe-5c22-87e4-2bb02bd6e5d5", "text": "A cozy coffee shop with baristas at work. "} +{"id": "0005690", "video_name": "1f758938-c4f2-53a9-9b3a-287472b42351", "text": "flag divided into three parts of color, yellow, blue, red "} +{"id": "0003545", "video_name": "3f43163b-5c4b-59ec-bd00-a92b3dd4b15b", "text": "farmer in corn field waves at camera "} +{"id": "8001406", "video_name": "47743ebf-9df4-519a-973d-afd9140dd4e9", "text": "SAX AND ROLL logo colors, rock, vintage, music, techno, manifest "} +{"id": "8001949", "video_name": "aeed41cd-71a8-5798-9e1c-dcff9c783943", "text": "2 little boys and 2 little girls with smily faced "} +{"id": "8001393", "video_name": "db431ecf-c988-59d1-bfac-79f6e006c996", "text": "The stick figure transitions into a downward dog yoga pose, forming an inverted V shape with her body. "} +{"id": "6002548", "video_name": "c7eac8ef-e3ec-5d95-b866-705036e1e862", "text": "tiktok format campaign against windturbines on indigenous peoples land without consent "} +{"id": "3003140", "video_name": "1b0ecc56-3276-5b5c-acc2-141e59572a52", "text": "a short film on one side love "} +{"id": "2007168", "video_name": "b32943d3-25ac-5794-bc76-727731469c23", "text": "animated flowing rivers of rainbows, ethereal, uncanny "} +{"id": "7004092", "video_name": "baeceb7c-52eb-5dc6-bbed-2b0a15179dfb", "text": "labyrinth of gigantic columns, observed from above "} +{"id": "7003289", "video_name": "ea143ce3-ad4e-5cb2-903c-d2ad845f9e04", "text": "a young man in his room looking at the sale, it is raining "} +{"id": "4002923", "video_name": "79514422-596a-5615-82aa-9b522fb5af71", "text": "people went back home and put down his or her package Message: 1 Attachment "} +{"id": "0006326", "video_name": "2aac13d1-e4e6-5c46-b8ec-d9fe06f9671a", "text": "blue, yellow and brown wet watercolor being absorbed by white paper forming into maple leaf image, white background, static camera from above "} +{"id": "7003495", "video_name": "38815c6b-8526-55a4-a981-6145b41d3f26", "text": "a golden colored sheep growing day by day, cinematic,film, "} +{"id": "4003681", "video_name": "0e9950d8-d6fc-5bdb-b61c-33f5915b0a1d", "text": "many hamsters playing merry go round under Eiffel Tower "} +{"id": "3003177", "video_name": "1ac58d54-85c4-5299-9d4d-7233c1018371", "text": "Generate this photo to reality video. "} +{"id": "1006285", "video_name": "731b1175-6dd7-5cbf-8a84-5b0e88d5e098", "text": "Standing in front of a massive tidal wave dreamscape "} +{"id": "3004978", "video_name": "ca4bf3cf-aa00-55d2-86b8-802c44e2c3b4", "text": "cozy dining room with a large window through which it is raining softly "} +{"id": "7004614", "video_name": "5abf886a-fe3a-5045-aa66-8b62de3147af", "text": "a starship in the cosmos destroying others starshpis "} +{"id": "2006568", "video_name": "3bdd2cef-8f45-59b0-8853-b2c3f70a8d49", "text": "grainy footage of the new yorker hotel "} +{"id": "2004807", "video_name": "c1f6970b-17b6-53c9-b861-ff7ad9d9b53c", "text": "a cinematographic scene of a people daning in a club, "} +{"id": "7004212", "video_name": "6b73d54e-08c6-5907-842d-ad3233115dd9", "text": "1950\u2019s black and white beautiful garden with gardeners cutting the bushes vertigo shot "} +{"id": "2007558", "video_name": "bdf160b0-796b-56e2-91f2-d0fd0875b4fc", "text": "anime, man running on clouds with red tag on head "} +{"id": "7002283", "video_name": "b00359b9-49cc-5029-8905-7a0214317b82", "text": "fast moving cinematic time lapses of medieval European realistically large castle and beautiful sunset landscape "} +{"id": "2003627", "video_name": "c1b250c3-379f-591e-9fb5-3159139d7444", "text": "have a fight between naruto and ghost from call of duty in anime style "} +{"id": "8001921", "video_name": "163a52f0-8aeb-55cc-855a-a8f580cf4b70", "text": "A small cute orange octopus,in deep water,high quality, cartoon style,just two eyes,from a distance,3D,endless deep water background "} +{"id": "4004091", "video_name": "e05b8df2-bacb-5729-b5a4-60097a532ce2", "text": "Elmo jumping off of a building, cinematic, epic jump, zoom out, realistic motion "} +{"id": "0004649", "video_name": "0ca16651-45b2-5b02-8290-6011a66eafc3", "text": "A little girl named Emma is sitting on a bench in a park, drawing in her sketchbook. "} +{"id": "3003172", "video_name": "5ed088cd-2d99-53fb-92a8-0e9673cb709f", "text": "Santa Claus with white deer in Iceland, aurora above "} +{"id": "1003422", "video_name": "3f38e0f5-35c3-5be7-b63b-3c650d8d57ea", "text": "FromFrom classic comfort food to international delicacies, our recipe collection is a culinary treasure trove waiting to be explored. "} +{"id": "8002323", "video_name": "371eab9a-92b6-5ee9-a27b-d5adcf6409ec", "text": "photo of sky with sun, clouds, and sea "} +{"id": "6003138", "video_name": "e7e3fb6e-bcfd-5e3a-8794-e4c29fea877f", "text": "Illustrate a bus with wheels in motion, moving in a circular pattern. "} +{"id": "2006835", "video_name": "64c9d2e4-f274-5945-883f-d2eecdeccc88", "text": "a beautiful woman wearing American flag shorts, top, and white cowboy boots dancing."} +{"id": "2006246", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "warhammer 40k cinematic trailer, character design, action "} +{"id": "1003171", "video_name": "3a5f1e9a-7f47-53f6-bb0d-788e712c2aee", "text": "An orangutan in the woods on top of a strawberry jelly dressed in Gucci clothes "} +{"id": "8001146", "video_name": "e98891c9-58c4-52e5-8c54-e7120a958ac3", "text": "Egg picture in class room animated 20 ps "} +{"id": "2004605", "video_name": "1b0dd0bc-759f-549a-85d8-f0690d1cf993", "text": "a realistic Christmas tree Message: Christmas Star (Font: MODERN) "} +{"id": "4003968", "video_name": "29b2d65b-d286-5dd5-b395-36e394eae91a", "text": "Spiderman and Barbie in a boxing ring, beating each other up, fine detail, realistic movement, audience cheering "} +{"id": "6002143", "video_name": "c6be59b3-6881-5eea-aed4-24a5d9065bf7", "text": "bullseye ripple wave drop perfectly symmetrical "} +{"id": "8002311", "video_name": "201cd50e-02a7-5581-a369-b64281380ca5", "text": "a boy in a problem solving alone thinking "} +{"id": "0006277", "video_name": "29e61172-f9b0-59a3-8dcc-0cc119486398", "text": "european tabby cat, on an armchair, film style, film lighting, film shot "} +{"id": "1003604", "video_name": "427562ac-f558-5a08-9c67-e84c3996280f", "text": "bustling streets of the city, darker skin Eve walking thick hips slim waist down the street with ear pods in her ear in deep focus scrolling on her phone. "} +{"id": "2003623", "video_name": "9a68a29a-dc27-5ee7-8877-0ca9563380af", "text": "old woman with silver hair pointing at a young man by a mountain river at night "} +{"id": "8003375", "video_name": "716a4f89-cdcd-5150-a53f-9e36351f292b", "text": "the opening of a new chapter "} +{"id": "2004850", "video_name": "7a2b6f28-edca-5ae7-bda4-2d2415b051f4", "text": "man with gun, darkroom, cyberpunk cop "} +{"id": "1004921", "video_name": "5afc870a-a8eb-5d84-8118-b28249de3f10", "text": "Shiba Inu running with a motorcycle, oblique front view, HD, midjunrnyv5, novelAI, animation, dynamic action movie, remove, error, broken, artifacts, duplicate, blurry, blurry haze, double body, outoffocus, depthoffield "} +{"id": "4002366", "video_name": "c74f6570-e886-5b03-8c54-5ca7825e521c", "text": "Shawn Mendes getting angry to a man "} +{"id": "3004084", "video_name": "7e109061-e3b6-51a7-8676-e44e004ac487", "text": "creation of a bridge uniting two cities "} +{"id": "5001290", "video_name": "03b5cb5f-16fc-5911-b5cb-aef62c0ee996", "text": "hyper realistic trailer of someone sitting by a desk reading a book and typing on laptop, 5 seconds long "} +{"id": "4003707", "video_name": "751b6a2a-2fbb-58a6-ae95-eb4da9ab8bf9", "text": "A man is sitting bored looking at the river., a big tree in the fire. A bird is sitting next to it. photo realistic. Cinematic photo, yellow vibe. "} +{"id": "2004879", "video_name": "61508eaa-5b1d-5f51-80a6-f5721ff61726", "text": "space with stars and nebula, with in center a futuristic gateway, with colored lights running over the surface of the gateway "} +{"id": "2007325", "video_name": "91051e1a-ff43-52d2-8849-b1ee30c606ff", "text": "UP CLOSE VIDEO OF THE HOOD ORNAMENET OF THE ROLLS ROYCE "} +{"id": "3003649", "video_name": "f2a1d287-6752-5119-b151-2c3e83e86efe", "text": "create a mystic logo for tiktok account "} +{"id": "6003212", "video_name": "28328c8a-509d-528b-8f4d-9b220ff14925", "text": "Night in a dark wild forest, with lot of trees, moon light was less bright "} +{"id": "6003889", "video_name": "fe326c51-53be-5e67-84c5-d7a61875e7c1", "text": "a cat and mouse shake hands animation "} +{"id": "6003508", "video_name": "450e7d4a-10d3-5919-87e1-e5a4af3c6f96", "text": "an assortment of medieval weapons and armor, surrounding a trench in the dirt. Message: Nifty Craft (Font: MODERN) "} +{"id": "2004765", "video_name": "475a17c4-ca05-5c4f-a222-26da68d07d6e", "text": "kids selling lemonade at their lemonade stand "} +{"id": "6002008", "video_name": "b38ec728-97e8-55e3-9808-3f427dcc61c9", "text": "Link watching a castle while on a cliff, in the style of Zelda 3 artworks, it is so high that there are clouds in front of the view "} +{"id": "0004870", "video_name": "109f0434-14b5-57e0-b47e-4d38ee36e421", "text": "beautiful nature with mind blowing lake view for stargazing "} +{"id": "0006592", "video_name": "2f30899e-b2ac-5dfe-9a02-e79cb9d54b5e", "text": "a person looks in the mirror and sees a demon, 24 fps, movement 5 "} +{"id": "0006496", "video_name": "2d7ef4a0-a8e7-59b7-8931-e1ebcd1109b8", "text": "a dj going to various places that look colorful and trippy she plays music for all the different creatures and they love it they have amazing sound systems everywhere they look very special "} +{"id": "2003249", "video_name": "bfae6f52-bb6d-53e0-830c-938f2ae1da20", "text": "a photorealistic 3D animation video set in a cybernetic scenario. In the first scene, depict a blazing processor, emitting fiery particles and intense heat. Show the processor struggling to handle the immense workload. In the second scene, portray a distressed RAM, visually representing its limited capacity, with data overflowing and causing visible strain on the RAM module. Finally, in the third scene, showcase a NAS device exploding with a burst of energy, symbolizing the consequences of excessive data storage. Make sure to incorporate futuristic cybernetic elements throughout the video to enhance the overall ambiance. "} +{"id": "6003604", "video_name": "cfe05c18-b877-5845-9e3b-dac4dae0b0f8", "text": "a testudo running in a field "} +{"id": "6003008", "video_name": "4531e22f-26d8-5545-86ba-683b89728810", "text": "look how the planet was yesterday Message: planet (Font: MODERN) "} +{"id": "2007279", "video_name": "85b8bb67-7700-5bc4-b283-18367387719f", "text": "shark swimming near diver in cage "} +{"id": "3005461", "video_name": "c593332d-c1f6-51ea-82b6-557e37acaade", "text": "Boy blinking then smiling with his eye turn blue to red "} +{"id": "1004232", "video_name": "4e63a18d-49d1-57e2-b308-3e187aa24679", "text": "romantic history girl and boy love history. "} +{"id": "0004543", "video_name": "0af5a1a1-200f-57c9-a48b-66f1e9fc0091", "text": "blend chicken with crocodile jumping around, 1970 horror movie "} +{"id": "0004061", "video_name": "0288c604-5c8e-52a5-b95c-2b28da7db11f", "text": "stonks memw Message: PLAN SCAM (Font: MODERN) "} +{"id": "2004489", "video_name": "e8abc457-32ac-5412-b4c2-8bc300bea8fd", "text": "big transformer style robot with shining blue body, reality "} +{"id": "7002974", "video_name": "d8a61dd0-5cd8-5d65-bc9c-9e1f7ce4a216", "text": "Discuss the challenges they faced in trying to access the locked rooms. "} +{"id": "2007255", "video_name": "963fe7e0-c8e1-554b-b052-2f86ac13b58b", "text": "Create a visual representation of the concept of Zionism and the Balfour Declaration in 1917 that triggered tension in the region "} +{"id": "8002030", "video_name": "666fdaff-5384-57e7-9f0f-65deb030338b", "text": "Be yourself; everyone else is already taken.Oscar Wilde "} +{"id": "8002101", "video_name": "e5b1acf1-0a56-5882-a90e-20e5acc1bc6e", "text": "Froggy escapade during rainy day at school "} +{"id": "2003691", "video_name": "c6c2adcb-895f-55e5-8cff-a0a9b681801d", "text": "Characters are walking and puppies are jumping Message: 1 Attachment "} +{"id": "8003070", "video_name": "9f7719e6-46de-5055-9d43-c4e210e81192", "text": "View of New York from the hotel "} +{"id": "2003207", "video_name": "9352f377-4c93-5ccb-8a2e-eb5dd451ff9c", "text": "opium bird swimming underwater in the ocean "} +{"id": "2003800", "video_name": "58e78f10-0401-5789-be26-210f1ecafb1d", "text": "With a heavy heart, the king realized the depth of his folly(3D cartoon video "} +{"id": "1006725", "video_name": "7b3a12c1-1365-576e-b33e-82a8d24efb98", "text": "bus in the shape of a dove "} +{"id": "0003043", "video_name": "35ff6474-5570-5336-a9b0-d9c3c90de648", "text": "sport fishermen on a river beach "} +{"id": "4004588", "video_name": "af830058-f7c2-5189-8403-54328a374634", "text": "walking in japan in front of fuji mountain "} +{"id": "3005287", "video_name": "7f1a6196-c9a6-51aa-8c39-b33d076a2888", "text": "four pentagrams appear in the ether one by one: ain soph aur: flashing colours "} +{"id": "1004160", "video_name": "4d0a7434-70f0-5be2-bd5b-3e08f7c10d7c", "text": "klaus schwab and mark Rutte dancing well the worlf turns in chaos "} +{"id": "8003817", "video_name": "8fe14e31-0006-5e64-b888-e0fb25dedfbb", "text": "sitting on a golden chair talking in the middle of a ocean with a big storm in the background Message: a wizard (Font: MODERN) "} +{"id": "8001648", "video_name": "b6ed4da9-42b2-5a05-bbf3-53e43d92d114", "text": "juana la loca looking at the camera and smilinng "} +{"id": "7002103", "video_name": "9126bbbe-fcf7-5b99-b115-4661d4119d50", "text": "woman in long white robe turns to face camera front on, warm lighting, forest background "} +{"id": "4002587", "video_name": "2ad7f4ef-8d1b-5b08-b653-6047308bccb7", "text": "a video of the ocean receding away from the shoreline to reveal the depths of the ocean floor on Miami Beach with erupting volcanoes in the distance "} +{"id": "1004598", "video_name": "559c938a-97a7-5baa-90ea-ce50ae050698", "text": "Getting Teachers to Speak Message: 1 Attachment "} +{"id": "2004400", "video_name": "dbbbcd88-61c3-58f4-b37a-7d63682f577b", "text": "A tall man with long flowing hair and wearing a long coat, stares down at the busy street from atop a tall building at night "} +{"id": "7002354", "video_name": "69ab00ef-6690-59e1-9523-f2a70e068b64", "text": "Man named Zhanadil Taldybayev walking down the street in Astana "} +{"id": "7002693", "video_name": "eac28db8-fbd0-5a16-b7f1-7d84eb72da17", "text": "stop motion, experimental, abstract, objects dance in the dark, loop "} +{"id": "7003110", "video_name": "e440007b-f5a0-5d43-aea7-27ccc0a2f0df", "text": "flying dragon ,comes down from the toppest mountain where in Asia,the dragon is Chinese dragon,Fire breathing is one of the most representative abilities of dragons. Many dragons in legends can breathe out fierce flames.dragons can freely change their forms into humans or other animals. "} +{"id": "2003129", "video_name": "b548ac6c-29f3-5ff4-9052-a3ba3dd8dc9b", "text": "man having axe walking,birds chirping,wind blowing 16:9, "} +{"id": "8001266", "video_name": "d8495d38-2631-5bec-8288-76dde4071153", "text": "energy being stored in human body "} +{"id": "4003246", "video_name": "929f4a58-be93-5f99-b023-32342e859c39", "text": "John Kenn Mortensen painting of a knight dancing in ancient rome "} +{"id": "1003048", "video_name": "38035755-420b-5f71-961c-e106b60eda34", "text": "The mill is turning and the water flowing. "} +{"id": "1004433", "video_name": "51fdc529-ffb6-59ec-aff9-b954315b8893", "text": "The inner workings of MemoryLink, a virtual world filled with floating memories represented as holographic spheres. "} +{"id": "7003423", "video_name": "702b22ce-f8c6-5588-aaae-da3818855d8b", "text": "Pirate action pose, full body, potrait scale, 4k resolution, holding sword "} +{"id": "6002313", "video_name": "2c1568e6-f8e7-5aa6-9052-15e030bc1380", "text": "future flying cars in the valley los angeles "} +{"id": "3004044", "video_name": "72fdcfa6-6792-589a-b702-3d69bbc72318", "text": "1980s infomercial of a wall of hands "} +{"id": "2004064", "video_name": "e4040465-6130-5d93-8d50-61b46bba883e", "text": "A robot walks in a futuristic city and flying cars "} +{"id": "1004617", "video_name": "55dcdd14-2ce9-5ce5-ae18-ecb8e943c7fc", "text": "mosaic pieces lighting on and off and changing colours "} +{"id": "1004353", "video_name": "504bccab-31f7-583a-8eb1-17eceec2716f", "text": "a man and a woman holding hands while they are walking down a snowy path, beautiful scenery, nighttime, snowing, slow movement, gentle wind, warm light heartwarming while the camera slowly pans up "} +{"id": "8001813", "video_name": "9627c86b-1f30-5140-bc43-9f77bb234b5d", "text": "the text ICEBOUND in a winter landscape "} +{"id": "3006146", "video_name": "e8633a87-83b8-512c-b79f-df4d422824de", "text": "ethiopia in 2030 a digital revolution man recording using an ai software in a record studio "} +{"id": "7002839", "video_name": "e0a55545-f2d0-5c14-a9e5-be0c3cafb1fb", "text": "A 4K PHOTOREALISTIC VIDEO OF A BOXER FALLING AFTER BEING PUNCHED IN THE FACE "} +{"id": "3006868", "video_name": "5339d29b-5229-5321-b974-e26ed9cb5aff", "text": "Generate an oni of Japanese mythology in the studio ghibli style "} +{"id": "5001999", "video_name": "78f6c795-2932-561d-8952-aa15e60b1bb8", "text": "a man and a woman taking a selfie on a car , realistic, "} +{"id": "7003625", "video_name": "aecd80d4-b0ee-5152-9a99-0398177fe2d8", "text": "methyl groups are added to the DNA strand "} +{"id": "6002353", "video_name": "24c14700-d03f-533c-a8dd-bd44a868ae08", "text": "Peechha Karti Parchhaiyan written on palace wall by shadows "} +{"id": "6002196", "video_name": "448065c8-14f3-5275-88d5-a32ca481d0f2", "text": "a cool looking visual for the text: The elements Emissary "} +{"id": "1005492", "video_name": "64f13e33-57ab-5fa7-bf86-4482908fcb2b", "text": "Ronnie James Dio posing for one Photo session, realistic, detail "} +{"id": "3005012", "video_name": "b80d6519-8a2e-5b65-bc33-323a3c1465d7", "text": "Lord Shiva and Lord Vishnu discussing "} +{"id": "4003626", "video_name": "fa3a3a02-5af5-5345-9bcd-68b07ab0da4a", "text": "a ocean of fire full of fishes. "} +{"id": "2005223", "video_name": "5d8b3098-37d5-5d9c-b3b3-49ce11e60274", "text": "the two boys smiling happily and triumphantly after rescuing the cat from the well. Animated "} +{"id": "7002341", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "a hindu god beautiful youth with a glowing complexion the color of rain clouds. He plays a flute, attracting the hearts of all. His cheeks are brilliant, His smiling enchanting. He wears a peacock feather in His curly black hair and a flower garland around His neck. "} +{"id": "3005805", "video_name": "76777de7-9431-5a75-b409-3c281dbc76f8", "text": "a robotic humanoid realistic on mars walking "} +{"id": "4004988", "video_name": "7f998435-03c3-5dd8-b078-e0fd7888f0b6", "text": "Your face is like jade and your eyebrows are like the moon, you are truly beautiful and fragrant. Therefore, I will give you a Tang poem: The beautiful lotus flowers are blooming, and the red lips are dotted with green moss. There is a hint of charm in every frown and smile. "} +{"id": "0004771", "video_name": "0efbc5a7-657b-5cae-8565-a87a89e6802a", "text": "a fusion of toji Zenin and Don Quixote Doflamingo "} +{"id": "6004901", "video_name": "d1f56a20-4c80-58a8-a71b-afda799aaf3b", "text": "a girl is walking in the beach, sunset\uff0cwith camera in high position "} +{"id": "6004725", "video_name": "82c83578-0daa-563a-a643-e2c564721efa", "text": "3D a grilled seabass fish , in seaside resturant, overlooking the ocean, on a beauitful day "} +{"id": "2006013", "video_name": "24d902c0-1550-5ea5-97c5-55607b570255", "text": "little pony dancing, pixar style, HD "} +{"id": "0006933", "video_name": "35797294-9dd8-54d1-a246-c816fa0bf74d", "text": "lady sews dress in the atelier, disney cartoon style "} +{"id": "6003976", "video_name": "9b23382a-aed5-5ddc-914e-0d618f4e3d36", "text": "wind flows on road misty, mystery, horror, cinematic "} +{"id": "1006441", "video_name": "75ec9588-0d2b-5ed0-9b9e-86a472e7a17c", "text": "a pictographic of a person walking in the nature "} +{"id": "2007832", "video_name": "d82be3c3-256c-5c23-829a-f0e815319fcc", "text": "pirate boat is fishing a marine monster "} +{"id": "3006028", "video_name": "f6aa7364-925d-5533-bb95-16eb1b4a9fea", "text": "BACKGROUND BLACK, hiper realistic lights metalics Message: GRAFF LIFE (Font: MODERN) "} +{"id": "8003047", "video_name": "0ca87d83-2aef-521f-9bb0-097de46cd120", "text": "pulling a divine book from a celestial portal "} +{"id": "2004171", "video_name": "a4e88796-ff41-5c03-a0de-1fcf011ecba6", "text": "spaceship exploding in middle of lush green forest "} +{"id": "5001061", "video_name": "05794b02-bd8e-552a-9541-aa191b551d7f", "text": "a man driving in a car through the streets of havanna "} +{"id": "0006042", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "Amitabh Bachchan addressing a crowd as he resigns his presidency, camera dollies around him. 10K, 85mm lens, slight dutch tilt. "} +{"id": "3006679", "video_name": "49a0ffec-a573-5dff-8fa0-4f4ce320449c", "text": "handshake anime girls in bathing suits "} +{"id": "6004322", "video_name": "1438e33a-ed0e-5ead-8b53-3c2fd5e797bd", "text": "security camera footage of donald trump stealing "} +{"id": "2007658", "video_name": "e5b63885-07cc-527b-ab96-22d8341c46c5", "text": "silver mouth movement from woman with silver lips and silver skin and electronics, skin made of white acrylic smooth texture, beautifull star was combined with the witcher "} +{"id": "1004560", "video_name": "54a46270-dbf9-5b5d-a82c-3858dc3228f7", "text": "beautiful redwood forest, sunny day, epic picture Message: ecobee (Font: MODERN) "} +{"id": "2006750", "video_name": "e5712713-b37d-5476-8efa-351b951d85da", "text": "ancient roman army, marching, holding spears or swords, some riding horses "} +{"id": "0006869", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "Shot of a galaxy forming in space, smooth animation, 4k, no distortion "} +{"id": "1004565", "video_name": "54d02758-a17f-5511-97b3-9e1454847132", "text": "hole opens up in the sky "} +{"id": "3003946", "video_name": "619a3dcd-7b66-5dac-a727-3ea25709e543", "text": "a leaf falls from the sky to the ground in slow motion "} +{"id": "1003680", "video_name": "43da626d-877d-57b4-8db3-d6b9252ac0dd", "text": "Two cartoon characters, one is Mongolian costume, the other is Han costume, landing "} +{"id": "3004632", "video_name": "8541ee73-8578-5300-8e74-0a6d7b156311", "text": "A cyborg floating in space, looking towards planet Earth, and then a cable arrives connecting to its head, another to its chest, and another to its stomach, but it always looks at the planet Earth with enthusiasm. "} +{"id": "0003133", "video_name": "37bdf81c-d938-57d1-8379-c8b2cf0ab63e", "text": "real Dokumentation about Centrel Park New York,snuff Movie,cinematik Look "} +{"id": "7003993", "video_name": "2f588c61-fcac-5462-969a-6e113a11f0c7", "text": "Creation job queued. manages a flying saucer that sits on top of a company, it can see a good part of the city, this flying saucer has many LEDs "} +{"id": "6003464", "video_name": "3c1db858-6d09-5599-84b8-d4a030f7b3e5", "text": "A massive and intricate robot strides amidst the chaotic constructions, while the sky remains shrouded in dense fog, with minimal illumination. "} +{"id": "3003287", "video_name": "52b22ce3-1534-5a45-8c03-8de6ac6f3ed0", "text": "breathtaking captivating view of the inside of a volcano "} +{"id": "1005085", "video_name": "5dca95c9-8fe3-561f-a8d0-d778df20bef5", "text": "lucky pizza that came to life and began dancing "} +{"id": "8001554", "video_name": "70ff0094-2053-565f-bc56-a8045943b64e", "text": "You can give me a sketch of a set tishert, jacket and black pants and safety shoes for work in a workshop "} +{"id": "4004235", "video_name": "eb2a4feb-c710-53d1-a73a-d787274f3d99", "text": "human infantry fighting huge cthulu creatures as an astreroid approaches "} +{"id": "7004650", "video_name": "fbb0b3b9-1da3-5509-92e2-95270f0dc3dd", "text": "image of a blonde girl in the sun by 9:35 am "} +{"id": "4003147", "video_name": "009fa0a2-00f5-5bea-a366-ea4832348c4e", "text": "a cat on a red kawasaki motorcycle. zooming out to see the entire motorcycle. moving motorcycle. "} +{"id": "0005267", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "hotel manager talking to employee, hotel background setting, realistic "} +{"id": "0004065", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "ancient vikings using sun stone in a tumultous ocean with mountain like waves while strong rains are falling. "} +{"id": "7004454", "video_name": "8b4d479b-e9f7-5208-a579-b55295c1de4f", "text": "Black sabbath dio galaxy mermaid space castle in bubble in a fantasy painting circa 1977, Hajime sorayama, alphonse mucha, mucha, michael hussar, frazetta, boris vallejo, backlight surrounded by smoke fantasy art 16:9 "} +{"id": "4003280", "video_name": "411258c9-ab56-5994-9f15-5d4ba7fbe014", "text": "electric poles in distance, a deserted hilltop, multiple cables in sky, black and white "} +{"id": "0003948", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "A girl is electrocuted in a torture chamber "} +{"id": "3005891", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "Rabbit twisting vines, slippery rocks, and thorny bushes. Despite his agility, he struggled to navigate the challenges, occasionally tripping and stumbling "} +{"id": "6003988", "video_name": "4fe0c9e3-ea2a-5749-ae13-25d6aa5577c8", "text": "a woman that is sitting down with her hand on her chin, a picture, tumblr, hurufiyya, brown hair and large eyes, around 20 yo, profile picture, indoor picture "} +{"id": "0003461", "video_name": "3df3c39a-a544-5ef6-bcdd-7819e4525506", "text": "Catholic mass. Priest walking down isle. Super realistic. 1980. Restored footage. "} +{"id": "3006189", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "coral bareers, ultra realistic, 8K, 60 fps "} +{"id": "6003386", "video_name": "1ac9d081-3ad4-59bc-9739-03df55650d3f", "text": "Can of Coca Cola comes off with beautiful splashes "} +{"id": "1006019", "video_name": "6e8f6dd6-63e2-5dc7-890a-314ac85dfe1f", "text": "a giant spaceship landing on an island with disco music playing "} +{"id": "8002648", "video_name": "2e2498ad-1c36-53f2-b45d-45e24dbb8780", "text": "child and mother going to the theater "} +{"id": "8002514", "video_name": "08471dbb-599d-523d-b844-fcb16fed8027", "text": "a sushi roll grow spiders legs and star crolling on the floor "} +{"id": "2007359", "video_name": "81aa2ff1-f8b1-5093-908d-dc6900fffe04", "text": "rainy field, high resolution, cloudy, dark "} +{"id": "3003452", "video_name": "daf00ae3-2f56-55dd-9a7e-5daf8aab5358", "text": "a black and white photograph of a lake and a gazebo, a detailed matte painting by Taravat Jalali Farahani, cg society, qajar art, 1920s, matte painting, calotype "} +{"id": "6003797", "video_name": "5c79acec-8faf-509e-b91f-96397a6969b1", "text": "Capetown city, hyper realistic, high octane render, high detail, Monochromatic color, Alfred Hitchcock style annd Wes Anderson style shot, day to night transition hyper "} +{"id": "3004643", "video_name": "34d76ee6-b430-5035-8ad9-bea3adff25de", "text": "cat sitting on the window. tail slight movement "} +{"id": "6003036", "video_name": "5e706ba6-8844-5db1-afde-f9144e1630e9", "text": "scene: cyberpunk city, sportscar transforming into a spaceship and launching into space. 4k cinematic music video. "} +{"id": "2003158", "video_name": "806eec5a-1507-52bf-8ab5-476a9ea5afe8", "text": "is the existence of underwater structures "} +{"id": "0006552", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "surrealism art man swimming under smoke "} +{"id": "2007778", "video_name": "7528c237-06a1-570a-bf49-3a2e313b3909", "text": "a scary jumpscare of an old man "} +{"id": "1006891", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "Old King with Hammer, backgound is a castle color blue, rainbow at right top corner, river on bottom left "} +{"id": "0003669", "video_name": "416a6353-61fa-52f4-82bf-09b742ca07bf", "text": "attractive young man speeds through Monument Valley on a motorcycle without helmet "} +{"id": "8001596", "video_name": "4dccc1c5-d51f-51de-9c40-0655ecaf34ed", "text": "Show the fox sitting down, looking defeated "} +{"id": "1005592", "video_name": "66de2f5d-470d-56eb-9495-1c2c3523d7e8", "text": "sunshine shining to the house through a window "} +{"id": "0006470", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "a grou of people on a safari game drive "} +{"id": "2004699", "video_name": "12c8d81f-a515-57b6-98bd-4a96443e1f8b", "text": "a futuristic office in an overgrown garden, photo realistic, 4k "} +{"id": "1003396", "video_name": "3e9e6b55-a4e4-520a-9a4b-1ee4bb668de7", "text": "nebula space travel soft blue and neutral colors "} +{"id": "3003324", "video_name": "6e9063eb-b79f-5a5a-8620-f2734c7f3796", "text": "a man walking behind a women as a stranger but when she turns around he got invisible "} +{"id": "1006866", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "Man looking up at the sky "} +{"id": "6003749", "video_name": "ed001d70-b0b1-5f57-923a-380f6d2a9e8a", "text": "green liquid mixed with blood cells, macro, under a microscope, blood, circulation "} +{"id": "3006941", "video_name": "2ebfc886-1af3-57f4-838c-a742ddb32613", "text": "8 year old girl saw that her mother giving money, clothes, toys, toffees and biscuits to the servant. "} +{"id": "3004461", "video_name": "6b98a8f4-13f0-59f1-8677-56697b97dcac", "text": "Spiritual egypt eye transforms in to an energy "} +{"id": "0004738", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "A schoolgirl in a school uniform is walking through the school and saw a cell phone on the ground, she picked it up and turned it "} +{"id": "4004012", "video_name": "b6c9ebbd-5472-53f4-a08c-83e507433ab8", "text": "digital twins working with robots making pink Versace leather dresses in a fully automated futuristic manufacturing environment and wire guided robots moving clothing rack up and down the isles "} +{"id": "4003642", "video_name": "9ae8d90a-f94d-5520-96e6-9f773e5db4c9", "text": "blood flowed out of the press, rising as high as the horses\u2019 bridles "} +{"id": "0006732", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "a cuban boy in havana malecon "} +{"id": "2003094", "video_name": "71953213-f909-5db7-8239-ef08740e672e", "text": "shaky phone camera footage running through the woods "} +{"id": "4003173", "video_name": "5ea4e294-4582-535c-9665-d05b751578c8", "text": "Astronaut in rocket flying to the moon "} +{"id": "0005325", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "energetic engineer solving computer problems in the midnight, high quality high resolution "} +{"id": "6004376", "video_name": "0845962e-3a20-5dbd-8000-3a41ab1eb68d", "text": "a caramel skin woman with long cornrow braids with brown tips sleeping in a black and yellow Versace robe with the window open on a grey bed "} +{"id": "1004531", "video_name": "54377ee4-c853-5287-b257-5da52588a4d9", "text": "model in a dreamy setting, with soft lighting and flowing fabrics, capturing a sense of ethereal beauty and grace. "} +{"id": "4003195", "video_name": "031fd928-5e07-57be-b41b-1958babcb632", "text": "a hyperrealistic video about the does and donts of what to do when you are stopped by the police and are driving under the influence of drugs or alcohol. Thisis the trasncript for the video. "} +{"id": "6004869", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "perspective view from street level of tall futuristic building. Ambient is dark, night. Rainy day. 16:9 ratio. cyber punk type of scene. "} +{"id": "0006939", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "Hydration: Drink plenty of water, as it helps rinse away food particles and prevents staining. "} +{"id": "1005170", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "make arm movements with natural and neutral movements "} +{"id": "2005392", "video_name": "26d4cf6b-c321-5211-8394-356995d2bc25", "text": "table cloth fractal, lsd at the dinner table "} +{"id": "0005157", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "a close up of a bullet zooming through the air, MATRIX, REALISTIC, ACTION, MOVIE "} +{"id": "4003643", "video_name": "489a16e9-7886-54e9-a889-99b14173c01e", "text": "A suspenseful moment as a villager opens an old, creaking door, revealing a dusty room with cobwebs and a flickering lantern on an antique table. "} +{"id": "6002761", "video_name": "440e799c-9403-53b1-83ae-193397586984", "text": "Jenny, a recently graduated medical student, "} +{"id": "2006695", "video_name": "39528f47-50dc-5abe-bf19-bcd274496bac", "text": "An image of mysterious, tired man with a flag on the stone, surrounded by ocean "} +{"id": "2003663", "video_name": "df9a57a3-0b64-5054-af60-320c5372920a", "text": "pixar style, peaceful forest, cartoon, night, moon, stars, light, flying fireflies, trees are blown slowly by wind "} +{"id": "0006370", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "black men in purple and gold "} +{"id": "1005348", "video_name": "6256a0f8-0503-5d4b-bd86-1f9612dafd02", "text": "space is moving fast towards me "} +{"id": "3006811", "video_name": "a6dfd31a-7f21-556b-ad18-06338bd97986", "text": "On the right, two sets of mutually perpendicular colorful parallel lines appear, which turn and disappear, replaced by flickering dots of light. "} +{"id": "0006433", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "Farming game simulation\twith farming theme\tcolorful\twith chicken "} +{"id": "7004412", "video_name": "a6302a9d-eaf0-53b1-a4f1-7ac138a2df73", "text": "4k hdr of a futuristic space ship flying through outer space "} +{"id": "6003467", "video_name": "b74cca4f-41a6-5fc1-87df-900349fa3dbd", "text": "1950\u2019s footage style of humans walking in the year 2023 "} +{"id": "0006297", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "a bread delivery person delivers two dozen hero buns to a deli in downtown madison georgia, at a place called madison produce "} +{"id": "0004351", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "add movement to smoke in backgrounf "} +{"id": "8003804", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "But danger lion lurked, an imminent threat, "} +{"id": "0006294", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "takes us back to the final moments of his life, "} +{"id": "2003681", "video_name": "76edaf2e-5bdc-56d6-b10d-831c909f13c1", "text": "egle landing on a rock slowly in the evening light "} +{"id": "2004500", "video_name": "db1bb027-03b1-547b-b43c-48ec109d8b6f", "text": "the square sun descends into the river "} +{"id": "6003593", "video_name": "6d24426c-2964-5a9a-ad40-2a9b6fb505ca", "text": "a man walking towars a rotating giant bobbin "} +{"id": "1004367", "video_name": "50a8ea60-bfe8-5de8-978f-8ecaf564d8d2", "text": "Danny de Vito shakes hands with Putin "} +{"id": "0006862", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "first eye catching scene between hero and heroine at a acfe "} +{"id": "2007799", "video_name": "c4a71acc-f16f-5d51-9233-49b95017cbe8", "text": "blinking,hair floating in the wing,head tilting "} +{"id": "6003646", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "A Little Monkey Eating Peaches in the Forest "} +{"id": "3003762", "video_name": "f5993d68-8b51-5b67-8292-ba9c1b9a5512", "text": "Ram and Shyam shake hands, showing their friendship on the first day of school. "} +{"id": "7002906", "video_name": "e2ab6b2d-32f5-52ee-9dfe-72e510bff69c", "text": "A man wearing glasses and a black hat stops with his hands in his pockets on a train Message: 1 Attachment "} +{"id": "2006826", "video_name": "5a5437f1-e501-59a0-80ce-b27cdbab9ab0", "text": "a zebra walks through a field, pixar style "} +{"id": "4002571", "video_name": "4eaee66b-5af2-5cd2-825c-ee717955e66a", "text": "Central theme visually represented: the vibrant village, unique colors and companionship of Sunny, a vibrant yellow canary, and Skyler, a graceful blue jay, their journey, and the lessons of friendship, all conveying the message of the importance of unwavering bonds and the beauty of shared adventures "} +{"id": "8003108", "video_name": "d1b41be9-cb1f-5db0-902e-efcd81b369f6", "text": "Girl dancing. Si Fi movie. empty street. Down town in front of the stairs. blue tinted. Raining "} +{"id": "4002491", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "a beautiful night in Madrid Message: Jhon (Font: MODERN) "} +{"id": "5001549", "video_name": "54cce539-d7bf-571c-bb5a-a885c5383cc9", "text": "Graduation hat and balloons and concierge flowers Message: 2018 (Font: MODERN) "} +{"id": "6002980", "video_name": "b0ba2913-c65c-5c26-b5b9-077f8e77faad", "text": "Open with a panoramic view of a bustling futuristic city, towering skyscrapers, and flying vehicles. The sun sets, casting a warm glow on the cityscapeb "} +{"id": "8003069", "video_name": "de62404a-6c76-50a7-b67f-a8d182b0411f", "text": "Depict the moment girl stumbles upon the tiny kitten, their eyes locked in a captivating gaze. Convey the immediate connection and the secrecy of their newfound bond,in studio GHibli style "} +{"id": "6004893", "video_name": "ba0527e7-04b9-5529-9eeb-62e0d110246f", "text": "Describe an evocative image featuring a dark and mysterious background, with an eye at its center, reflecting a sense of worry and anxiety. The eye is partially obscured by dense shadows, symbolizing the weight of condemnation. However, amidst the darkness, a penetrating ray of light cuts through the shadows, illuminating part of the face around the eye. This ray of light represents the possibility of overcoming condemnation and finding the path to redemption. The image conveys a powerful message about facing the spirit of condemnation and discovering hope "} +{"id": "2005130", "video_name": "c74e38cc-e551-5eaa-a473-29bed455a258", "text": "someone do something, somewhere. something going on somewhere "} +{"id": "0006232", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "A police car follows a hover sports car down the canyon freeway. Scifi. Cyberpunk. "} +{"id": "8002369", "video_name": "a9ba7c42-9f0a-5af8-95d6-763f43bb228c", "text": "A mathematics teacher giving a lecture. The teacher is male and teaches the lesson in a classroom. "} +{"id": "8001972", "video_name": "3bb35673-77be-5a80-8004-d3270b715615", "text": "Parashurama traveled across the land, challenging and defeating numerous kings and warriors. He became a legendary figure known for his relentless pursuit of justice. He fought countless battles, wielding his mighty axe and displaying extraordinary valor. His exploits in battle became the stuff of legends, inspiring generations to come. "} +{"id": "7004209", "video_name": "f4293c1e-5e41-5d19-bdab-28b0ef410d01", "text": "ali thinking about there plans\nHe dreaming the goals of hos life. "} +{"id": "1004662", "video_name": "56b1dc62-3b1a-5c8a-820b-36410c78b99f", "text": "a large proud bullfrog enjoys the peace and quiet in a vast overgrown forest "} +{"id": "3005528", "video_name": "bb5f7ca0-4bf5-5ef5-851e-d0d8d4466ba4", "text": "The child walks in between them, holding the hands of both parents, their face beaming with joy. Their hair is tousled by the sea breeze, and their eyes sparkle with curiosity and delight. Engaging in the joyful pursuit of collecting seashells, they occasionally bend down to pick up beautiful treasures, accompanied by shared laughter. "} +{"id": "8001779", "video_name": "77f1a2f1-6de2-5268-9319-07276af5eb27", "text": "a mamouth ridding a bicycle on the sea "} +{"id": "3003073", "video_name": "637063d0-49f4-5763-ae1f-b4848df0bbda", "text": "Zooming Close Up of a old chart worn of a from a beautiful latin woman dressed of white "} +{"id": "3006461", "video_name": "28eeda12-e7b4-52aa-b12d-e5a26d876f3b", "text": "orange sphere shape character, complex, robotic eyes, antenna, look like ballon with feet and arms, multiple pose sheet, short feet sticking out, tv screen face, outline, white background, no shadows, turnaround, realistic, photoreal, surrealist, 3D, hightech, spacejunk, running "} +{"id": "7002742", "video_name": "11316c0f-c224-54bd-b850-d0505f9fb9d6", "text": "anime, futuristic helicopters flying overhead, cinematic, motion 4 "} +{"id": "4002656", "video_name": "23a52821-4b4a-5f0b-8fd1-403c1a98a1f4", "text": "high resolution grass land sunset Message: 1 Attachment "} +{"id": "0004178", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "wide deep space, floating in space a camera with sereval blinking eyes "} +{"id": "4002033", "video_name": "67de0411-2f46-59c3-bfd4-feb514a4f255", "text": "Aerial photography, racetrack, through the perspective of a racing drone,cinematic "} +{"id": "7004424", "video_name": "599cc922-26e8-5355-92ca-aa7699fe07de", "text": "hyper realistic santa with 2024 new year message "} +{"id": "7003855", "video_name": "4420cb92-0d91-53fb-9220-86575df99144", "text": "water flowing and fish swimming in lake "} +{"id": "2006850", "video_name": "f5d2d86f-67fb-54a8-a3fa-316903ae20ce", "text": "teenage Chinese girl wearing bikini dancing traditional Chinese festival "} +{"id": "3003668", "video_name": "b22333ca-ef15-5c6d-b3d5-903892917aa9", "text": "Soak in the stunning scenery, where the grass is a soft pink and the river is a serene blue. The mountains loom in the distance, their purple peaks rising into the sky. In this ethereal environment, a powerful female warrior rides her fearsome creature, always alert to her surroundings. "} +{"id": "6004626", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "fern leaves on a black background "} +{"id": "3005548", "video_name": "cc471b62-e377-59b9-8111-b5420f2c0990", "text": "Channeling Personal Power\nAbove the navel lies the Solar Plexus Chakra, "} +{"id": "3005069", "video_name": "a98594d0-9ca9-5930-9856-1881134c6ff9", "text": "Minotaur caught in brambles Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "8001702", "video_name": "4e0a4d6b-159d-5c05-9faf-a492fe1ff199", "text": "then impress them by telling them all. "} +{"id": "1003985", "video_name": "499f24df-1ddc-5759-9db1-3206e52f9005", "text": "a man is riding bike in full speed "} +{"id": "2007129", "video_name": "074a5f67-5299-5d94-a99a-deea4d0fca1c", "text": "Introduce the mysterious village and the strange noises heard at night. "} +{"id": "2007143", "video_name": "7ff8bd11-a961-5dba-b161-af00d92ebe60", "text": "metal made cowboy made of shiny bricks reflecting on his being in the desert, depth of field, 16:9, Hasselblad "} +{"id": "3004867", "video_name": "3717dd6a-581c-5802-88b9-376bf84011cb", "text": "Space game geometry dash Message: VodaBAF (Font: MODERN) "} +{"id": "0003279", "video_name": "3ab570b1-3c9d-5724-834b-c6ee976bdd43", "text": "The older sister is having fun playing with her younger sister in the park. "} +{"id": "1004346", "video_name": "502a4612-bc74-5d84-b850-a2d2513d55a7", "text": "mystical shiny lake filled with Vomiting Rock People Alejandro Jodorowsky vivid colors "} +{"id": "7003033", "video_name": "0e7207dc-2cf1-5c65-821d-6b885865c94a", "text": "big mota plant swaying in the wind "} +{"id": "0003592", "video_name": "401a65bb-f376-52cc-a247-09e945edf92b", "text": "black background with thin wavy lines and gentle sparkling "} +{"id": "0005666", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "Video of a fortune teller divining using a quartz crystal "} +{"id": "7004076", "video_name": "0abef248-2378-54f6-9936-a191aa357706", "text": "A little cat fell to the ground,Illustration style "} +{"id": "2006875", "video_name": "fb231cfe-ea5a-5eb0-9b9b-ce06fa38fc49", "text": "ancient Israel, a few people leave the city, "} +{"id": "2005531", "video_name": "312d1aa6-cb27-5aff-ba6b-207cb887d428", "text": "happy childs Message: Teknofest (Font: MODERN) "} +{"id": "5001578", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "hyper realistic young woman with blonde hair, smiling at the camera for a profile picture "} +{"id": "4002358", "video_name": "abfc64a2-d22e-5865-8e25-f4a5506c5dad", "text": "a realistic levitating pickle, cinematic style, detail shot, macro lens "} +{"id": "2007284", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "In an ancient Greek temple, a venerable scene stretches out in which several people stand in a devout posture. The majestic dome above them stretches like a divine firmament, allowing the light of the gods to stream into the sacred space. At the edges of the painting, elegant columns line the temple, while in the center two important figures rise up on a staircase. These central figures, draped in dignified robes, embody the wisdom and spiritual guidance of this ancient society, while the temple itself is a place of deep reverence and enlightenment, high quality, realistic "} +{"id": "6004799", "video_name": "01888fb2-4530-5bb7-9a59-3bf7a270fbe8", "text": "16:9, sheep an a farm, studio ghibli style "} +{"id": "6003500", "video_name": "fd622210-92db-566d-b422-49e8a5c186bf", "text": "night mode,and lighting bubble Message: 1 Attachment "} +{"id": "3004603", "video_name": "f16c4761-2b4b-5c4b-99b8-6ec669e5bf4e", "text": "Dumplings symbolize reunion, and I hope the whole family will be safe and sound in the new year. "} +{"id": "8002997", "video_name": "04eb1dda-89b5-5548-bb74-d1811b5d4017", "text": "joe biden walks through a vaporwave city, neon, rain, "} +{"id": "2007420", "video_name": "9c9a35f9-27f9-5248-996c-6a93272f51c8", "text": "banana man driving, a lot of traffic, giant eye in the sky, psychedelic art, black and white, VHS, Super 8 "} +{"id": "6003884", "video_name": "479bba6c-b25e-5e67-8762-299d12454d1d", "text": "dark rainy night in the city of Rome with the cobblestone roads reflect the scene, a dark hooded figure runs away from the viewer towards a bar with a neon sign "} +{"id": "0006787", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "young woman lying on a towel legs visible, on the beach near the sea, wearing very light clothes, realistic body, wearing sunglasses and a cap, smiling happily, hands behind her back, blue eyes, small freckles, photorealistic, very detailed "} +{"id": "2007995", "video_name": "b91b4f00-ee5c-5aca-8a72-8932e0193b83", "text": "a guy tranforming in a zebra "} +{"id": "6003998", "video_name": "1a8a5218-9dba-5d8b-aa04-93dc54d4d1f0", "text": "timid lanternfish named Lucy, trembling, explained that she was afraid of the dark and the unseen dangers that lurked in the deep ocean "} +{"id": "7004707", "video_name": "182375e1-a882-5d2b-a12b-3cb896ff787b", "text": "a beautiful girl looking at her reflection in the mirror "} +{"id": "0006197", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "tesla model is moving fast in a futuristic crystal city "} +{"id": "0006549", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "slow panning camera across chess board squares, some battle worn and damaged, as the camera pans outwards there is a battle between white and black chess pieces, they move like real warriors in combat, 2 minute long cinematic at least "} +{"id": "6003658", "video_name": "057d2b81-6e08-5c7a-bff6-d2b53214f214", "text": "people dancing in a night club, 4k relistic "} +{"id": "4003074", "video_name": "179e2ef6-a75e-523d-8871-172b8401e055", "text": "The man was identifying the dead "} +{"id": "4002233", "video_name": "75631806-19d2-5a14-9ca8-c7e90c361bfe", "text": "A beautiful girl selling wallets in a market "} +{"id": "7002755", "video_name": "a094f9c3-d4ac-54f0-8fc2-22b04c8e4279", "text": "high speed cat chasing mouse, pov camera traveling with action, sharp focus "} +{"id": "2003290", "video_name": "a1676389-a151-5fa5-a727-1c5411a6b4c9", "text": "A boy sitting in a snowy park on a bench with colorful shapes on top of the snow "} +{"id": "7003886", "video_name": "1f60403d-fc8a-5d29-9782-7f28a717705d", "text": "make an einstein video explainig, walking from one side of the room to the other, 15 second video "} +{"id": "6002099", "video_name": "59981010-6c6e-53f4-8b8c-3f9244e5de24", "text": "an air filter sitting on a table "} +{"id": "0004880", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "Monochrome video, Loneliness and fear in outer space , fear, "} +{"id": "3004973", "video_name": "34fb8769-78a8-5298-861e-82d699430b31", "text": "clouds drifting away in a pastel sunset sky, Studio Ghibli style "} +{"id": "4003802", "video_name": "dedb8544-2de5-55e0-91e4-0dd56781cd72", "text": "At a river bank at sunset with a bridge, group of people chatting. "} +{"id": "2005299", "video_name": "707d42d0-6590-5b93-a155-2eba7ddb21f8", "text": "Feature scenes of a beautiful landscape of mountains y bosques from Mexico, sylte pixar, disney, 3d, hd "} +{"id": "1004960", "video_name": "5ba363ce-715d-56d3-90b0-ffe3a68590b4", "text": "santa claus talks with the children, and they move slow "} +{"id": "3004655", "video_name": "effd6435-badf-58e7-a8a2-f7e0ae9238af", "text": "an old woman, sitting on the bench, at the corner of the road, people avoiding the old woman, long video, highly realistic, cinematic "} +{"id": "2004161", "video_name": "24de2e18-7334-5467-8e95-80583c6826dd", "text": "a arabic man dancing In night "} +{"id": "0004711", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "The mission no russian from modern warfare 2 "} +{"id": "8001602", "video_name": "a08bef5d-674d-5e58-b9e6-ab359182e786", "text": "Fast and huge explosion of the Sun "} +{"id": "2007193", "video_name": "09013aad-8f09-569e-9526-132c171a231f", "text": "Silver 2004 Ford Focus Sedan speeds off of a cliff in the desert "} +{"id": "2007639", "video_name": "57da3213-0085-5b60-b60c-cca1cef42d86", "text": "a small white dog walking through the Video Game Call of Duty. Soldiers are all around "} +{"id": "4003166", "video_name": "fcf383ab-a6bc-5244-938f-2b5d455e016c", "text": "a London uk roadman anime trailer "} +{"id": "1003327", "video_name": "3d44cbe6-3755-5277-91f3-bd4474e9343a", "text": "beutyfull latin girl on The beach with palms and Purple sky 4K 16:9 "} +{"id": "4004937", "video_name": "abc61292-4823-54a5-b2fa-d6e8d2ea7cf7", "text": "Swami Raman watched his progress with pride. "} +{"id": "7003298", "video_name": "4195f9e4-47a1-57d3-959a-3860605ddb83", "text": "woman smiling. camera flash. at night. 4k. hd "} +{"id": "7002396", "video_name": "2339d1c3-9f9b-5676-9782-dc6cd20fed22", "text": "walk along a deserted beach like in the old days "} +{"id": "8002371", "video_name": "5cf22af8-b03f-5411-befd-d8e3d6bf212d", "text": "a spaceship from outer space enters the atmosphere of an alien planet below. The air around the spaceship is glowing because of friction. epic, cinematic photography, scifi, ultra detailed, wide angle, sharp focus, cinematic lighting, artstation, 8k, simplified colors "} +{"id": "7002738", "video_name": "a54bc066-53b7-50cb-94d4-dce0e0cde2a9", "text": "generate video moving flowers and flying butterflies "} +{"id": "0005741", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "hunters putting down their weapons and leaving the jungle, capturing the moment of change and resolution. "} +{"id": "3005458", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "Lord Krishna, with sixteen arts, was born in Dwaparayuga. "} +{"id": "1003792", "video_name": "45f86d0d-e8ee-5fef-b603-7002ae700096", "text": "a human, born from a machine that manufactures it, high quality, realism "} +{"id": "1005893", "video_name": "6c66dc5a-4de6-53d1-830d-f47f106fc94b", "text": "an astronaut with a beautiful sunset behind "} +{"id": "3005080", "video_name": "2672e8c1-9e50-5db6-b716-29ba7481abc4", "text": "old homeless group of people around the fire, realistic video, camera zooms on the fire, they are cold "} +{"id": "2006804", "video_name": "8c110921-702b-5a7f-81ee-bbc4dba96db8", "text": "brown rabbit sitting and eating carrot in the carrot. ar 16:9 "} +{"id": "8002865", "video_name": "9b035a9d-2ff2-5006-b61a-6d702ac66a92", "text": "Middle Eastern girl, 9 years old, falls down the stairs and faints, 1910 passes. "} +{"id": "8001687", "video_name": "82a6455d-bdb0-548e-a737-4814862807fc", "text": "a steamy cup of coffee in a cozy old school diner "} +{"id": "1005836", "video_name": "6b4d0687-4a6d-57a7-b583-67fae189747c", "text": "a giant skeleton horse and a fiery creature holding its rope "} +{"id": "1004299", "video_name": "4f7ec213-e03d-56e0-bdc7-45878b9c0949", "text": "One gloomy evening, a daring group of friends decided to explore the mysterious mansion for a thrill to capture on their YouTube channel "} +{"id": "0005964", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "bts jungkook is a history teacher in their late 20s, with a keen interest in local legends and maritime history. "} +{"id": "0004607", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "Pictures of training for young police officers "} +{"id": "4003658", "video_name": "4fd66065-d772-552b-8c52-50bb219a0457", "text": "a person travelling around the world happy "} +{"id": "0006893", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "Hoodboy (HB) walking down a sidewalk, wearing a hoodie and a cap, with a melancholic expression. "} +{"id": "1005244", "video_name": "60781f3f-3855-59ee-9480-5b3f7a0480f0", "text": "an abstract animation for a creative studio inspired in an ancient mosaic in black and white "} +{"id": "6002457", "video_name": "d16047a7-c34f-5e7f-a7a7-91fd8b7a51e0", "text": "Meanwhile, Whiskers, who had been taking his time, ambled past the exhausted horses with ease. "} +{"id": "7004617", "video_name": "482fced7-0402-5945-8439-8b2961562d9b", "text": "a woman is at a salon doing her hair "} +{"id": "7002144", "video_name": "bd27aac3-1f33-5756-a3e8-d788a4b4c904", "text": "Jesus on the mountain looking at many people with his hand raised "} +{"id": "8001793", "video_name": "9e5a0d86-8dd5-5963-b405-03f4bd13860a", "text": "lots autumn leaves falling to the ground. A blurry complementary background "} +{"id": "7003020", "video_name": "905cf4e4-d118-52ac-9f62-6e4d643b1178", "text": "a man approached a young boy at the ocean "} +{"id": "3005866", "video_name": "8a1e7cdd-b7e7-5f82-835a-63cb3b9cb669", "text": "Enter the home of the penguin "} +{"id": "1004398", "video_name": "514fee55-4260-5e1c-b4d9-7ff020283677", "text": "ooze falling out of man\u2019s mouth, close up, cinematic, sharp teeth "} +{"id": "0003281", "video_name": "3ac889e9-93c9-5e00-9788-d4eec3f90554", "text": "a chrome ant robot covered in graphitti fights out of a volcano walking in molten lava "} +{"id": "8002283", "video_name": "c0026227-400a-54b7-9048-8906c1792363", "text": "Although challenging, evoke the sensation of saltiness lingering in the air as it mingles with the other sensory experiences of the ocean. "} +{"id": "1005925", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "university professor giving classes to her students "} +{"id": "2003737", "video_name": "ff58ff03-b1ff-5420-9b83-af5623c4fc08", "text": "A golden retriever with a hat saying anxhela is studying for university "} +{"id": "7003239", "video_name": "6eaf1ef2-1a2b-56fe-a4f1-ff4481df490e", "text": "love is in the air, Santa singing "} +{"id": "4003938", "video_name": "48e02971-ed28-5bc4-abe4-d6ff48289388", "text": "Superman As Evil God armor moving image 8k "} +{"id": "7003761", "video_name": "b3b3baa4-e26e-558e-9533-b27a9fce2f3d", "text": "psychedelic fly fishing man painting cinematic 8k hdr, high detailed, soft cinematic light, 9:16 "} +{"id": "2007545", "video_name": "4c89cd5f-bd85-5c76-8210-d87df559f6c9", "text": "asteroid made of gold floating in space "} +{"id": "1004764", "video_name": "582307a3-5933-5e19-afdb-d9ec28ed6b0a", "text": "three humanoid robots are sitting at a space bar talking, the bar is moody and retro theme "} +{"id": "6004513", "video_name": "a388adf7-d648-54d9-9241-d00793aa6e30", "text": "lamborghini sian half in blue and the other half in purple parking outside a modern masion with a fountain "} +{"id": "3006708", "video_name": "429555c4-b203-531d-8df9-32dd6012111d", "text": "Jake and Olivia sit on the couch, surrounded by Christmas decorations. The room is filled with a warm glow from the twinkling lights. "} +{"id": "7003120", "video_name": "8feef778-3e11-59ea-808a-65eacd229b63", "text": "mrs piggy with utters mounted by hermit the frog "} +{"id": "3003556", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "heavy rain falls on a terrace in P:aris "} +{"id": "4002384", "video_name": "2f8941a1-d966-5bce-ada2-c348039e9b72", "text": "The animals sharing food, playing games, and laughing together. "} +{"id": "3004009", "video_name": "e324466f-e75c-5046-84f3-5f03d806091c", "text": "man brushing teeth, cinematic ultra zoom lens, extreme closeup shot. "} +{"id": "2006988", "video_name": "efc8ffcd-81d2-5ba1-9d54-773e7c70405f", "text": "In the center of the picture rises an ancient muscular Greek statue of an ancient warrior, dominating the picture with its impressive size "} +{"id": "2004763", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "a girl doing zen mediation beside a window, the sun shone on a burning natural incense on the table "} +{"id": "1004077", "video_name": "4b90fc3e-1add-5cef-b079-ba0799beb43b", "text": "so she has been trying to get her parents to move, for the last several years. "} +{"id": "8002978", "video_name": "325a33e4-3a0a-5c0e-a0c5-4ddba663bf7e", "text": "scientist putting tiny fishes in a tank with a shark "} +{"id": "8002876", "video_name": "8eee5a0d-2957-58ff-be31-a15279912e8c", "text": "Create a village in a fantasy world, with plain and green vegetation, forest, sunny with wind, have villagers "} +{"id": "0003469", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "These colossal mummies, unearthed in the 1920s, were often associated with lavish burial practices, "} +{"id": "7004711", "video_name": "fdc15d0f-e68f-5b0c-aba2-36f8239bdd22", "text": "singularity Message: ai world (Font: MODERN) "} +{"id": "3004935", "video_name": "4a253af1-d357-54a9-a097-27a02d948af8", "text": "realistic woman dressing up in her room, jeans and jacket, mysterious atmosphere "} +{"id": "4004790", "video_name": "9e8fd236-46a9-5156-814c-5181da4efed1", "text": "Hill filled with flowers of various colours Message: BACK (Font: MODERN) "} +{"id": "4003817", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "Girl and boy in love looking at each other in a big park, snow mountains behind big trees all around "} +{"id": "0003976", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "Once upon a time, there lived a young girl named Karen "} +{"id": "2004016", "video_name": "1d3308f9-c309-5f44-b640-1db3077fe4ff", "text": "Toucan: The toucan, with its vibrant beak, started a jungle orchestra by tapping its beak on different tree branches, creating a unique musical composition. "} +{"id": "3004899", "video_name": "d28b0465-05c6-5c03-9489-b1cca5b78b21", "text": "ancient warriors training for an upcoming battle against the gods "} +{"id": "6004647", "video_name": "4ffe3c68-6246-5b6d-86bb-d1ee56944b60", "text": "couple against a backdrop of a breathtaking sunset, with warm hues enveloping them, symbolizing the beginning of their new life together. "} +{"id": "2007863", "video_name": "557b49ea-98c3-51f1-955f-ec75f96c8006", "text": "A horse in a crowded city center "} +{"id": "0004979", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "wolf are walking in the forst "} +{"id": "8001528", "video_name": "df7c0cca-e134-5f11-94b5-ccb6b280a70a", "text": "a video of me counting 1 to 10 "} +{"id": "0006361", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "meteor shower over jakarta buildings and monas monument "} +{"id": "6003335", "video_name": "909c6321-1d2c-5c57-bbf9-698357a6855b", "text": "purple lol doll with gold outfit and driving car "} +{"id": "2007044", "video_name": "df2cff99-c64b-5a07-8a3e-3927df7593f9", "text": "golden rolls royce phantom driving in a russian village "} +{"id": "3004105", "video_name": "dd633944-e8cf-53bf-885a-0be5e4098d0a", "text": "a million abandoned trumpets scattered all over the desert floor while nuclear bombs obscure the horizon post apocalyptic "} +{"id": "0005947", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "Max transformed ordinary materials into magical sculptures capturing joy. "} +{"id": "6002380", "video_name": "be76392c-baea-5760-9bf9-ec2a6cce1998", "text": "A writer with his back turned creating a poem. From his head come out multicolored ideas and beautiful verses.hiperrealista, photo, cinematic "} +{"id": "6002218", "video_name": "7e477bbf-edb4-50fc-9675-bcd5c900f37d", "text": "An old black and white photo of a family in 1450 at night "} +{"id": "2007594", "video_name": "d59da577-f61a-5c23-b289-67a8c46359bd", "text": "a young athlete man rising up the champion trophy "} +{"id": "8002646", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "cinematic, 3d animation, porcupine hugs balloon and the balloon pops. "} +{"id": "4004227", "video_name": "06a253ec-87ad-5bae-b918-f580cf068c0c", "text": "Disney style princess with human face in a pink dress in a magical forest "} +{"id": "3003197", "video_name": "e3fe214d-fb14-5f77-830c-74bcfd33eeb0", "text": "picture that has never been created before "} +{"id": "8003354", "video_name": "f7e27639-33f7-5949-b8ba-4574bc09e2a3", "text": "a train moving in a railway track with big trees in a forest "} +{"id": "1004496", "video_name": "5356e483-82f4-5554-9bc1-744ed0035646", "text": "cars in the city Message: Usedcarsni (Font: MODERN) "} +{"id": "6002323", "video_name": "5944749d-47fd-599f-8b60-e282e9ac78fb", "text": "wide shot, black and white movie, silent movie, gothic aesthetic, film effect, around the ruins of gothic cathedrals "} +{"id": "5001515", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "University student desperate for not realizing his dreams "} +{"id": "3006490", "video_name": "ef0bc65a-e737-5e17-8dfd-3ac7d8f5e74a", "text": "a man with a TV on his head sings and dances "} +{"id": "1003801", "video_name": "463866c3-f96e-5410-a671-381070a2c3f4", "text": "furniture floating static in the air, table chair and lamp, levitating "} +{"id": "1003141", "video_name": "39ea4c0e-5d13-5cea-adea-159f7f36ffc4", "text": "Madonna is drinking coca cola 16:9 realistic "} +{"id": "6002411", "video_name": "ee7f25b0-df8d-52fb-9042-f30191af8361", "text": "Vestal sisters dressed in their traditional attire, tending to the Eternal Flame. "} +{"id": "0006823", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "In a secluded corner of Bikini Bottom, on a dark and quiet night, SpongeBob SquarePants suddenly felt that something was amiss. The sound of light footsteps and the movement of shadows made him suspicious. It turns out, Plankton had decided to change his tactics by sending a group of ninjas to steal the Krabby Patty secret formula. "} +{"id": "2004892", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "underwater, huge shark behind a blue glowing small fish "} +{"id": "2004445", "video_name": "adc0bc46-a414-534d-a6a7-ee11077564dc", "text": "4k animation style, cinematic, short story a professor found abandon ufo in the forest "} +{"id": "2006301", "video_name": "a29b0ff6-0d8f-5dd9-8015-95f6c5d91fcb", "text": "A cute cloud in the style of a 3d animated movie "} +{"id": "3006508", "video_name": "01e56879-0e86-5313-9563-9856579c4a8c", "text": "a beautiful girl korean is showed "} +{"id": "2005567", "video_name": "397e234a-a4a9-51ca-b28d-5b9a0914592f", "text": "Leila and Ali praying in the mosque, along with other worshipers. The imam leads the prayer in the front. The mosque has traditional Islamic decoration on the walls and rugs on the floor. "} +{"id": "3004907", "video_name": "dbf22a4f-2c57-54a3-a970-811f7100cc0a", "text": "The fight reaches its climax when they are both on the edge of the abyss, struggling to hold their ground while avoiding the surrounding lava. "} +{"id": "4002225", "video_name": "b96bf3ba-c488-5246-b4b3-f035720af7aa", "text": "in stunning 4k resolution, 60 fps, a vegeteble growing "} +{"id": "8001310", "video_name": "0079a232-d735-5066-87ff-99fde3aff8c7", "text": "birds sitting on window started flying full hd "} +{"id": "6002630", "video_name": "5aaec9c9-00b7-50df-a916-effd74fccb63", "text": "A beagle sitting in front of a christmas tree "} +{"id": "4002916", "video_name": "e3818173-9134-5e45-853d-1b0cc2aa23fd", "text": "disney style cartoon village with moving head detailed, "} +{"id": "0004599", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "there was a boy who live with her friends in jungles to need work to "} +{"id": "2007976", "video_name": "ba014d45-5fea-565a-b070-71966415a8f3", "text": "Pamukkale is a natural wonder located in southwestern Turkey. "} +{"id": "8002587", "video_name": "0dc7dfe7-cb90-5b27-ab4e-b0cb077a060b", "text": "river with a sunset in the backround hyperrealistich "} +{"id": "3003082", "video_name": "2bc80240-59b4-5697-99ff-43f92d4e89c9", "text": "hi boys Message: sword man (Font: MODERN) "} +{"id": "8003080", "video_name": "5e0f6c75-33f2-5530-8902-b0d8718ee37f", "text": "pan of street scene in Bangalore, India, people walking down the street, Hindu temple in the background, a cow is lying on the pavement, comic city, graphic illustration, comic art, graphic novel art, vibrant, highly detailed "} +{"id": "3004904", "video_name": "2d3711c3-93a5-507a-a189-c193314b4556", "text": "mamluks riding horses, cinematic shots, cinematic lighting, massive scale "} +{"id": "5001872", "video_name": "fc802e33-c058-55ed-9389-27f665c3816b", "text": "Mario jumps on the camel, anime "} +{"id": "2003037", "video_name": "7fdeb587-168a-5ea2-95ab-3c29d72cdf22", "text": "A mysterious figure sits in front of a glowing laptop screen, He looks towards the camera, which he talks to. The city outside the window is alive with lights, a perfect backdrop for his secretive work. "} +{"id": "3003819", "video_name": "4c69d88f-de37-59ec-bac3-a198178ff276", "text": "Show the process of skin cell regeneration and collagen hyperplasia.The colour of the cell is white. "} +{"id": "2004945", "video_name": "bcb2a010-c1a6-5221-9444-7ca2b2082d88", "text": "Darth Vader performing lazer tattoo removal surgery "} +{"id": "6004453", "video_name": "1019c8b5-9132-5ad3-97ba-3d730eb328e0", "text": "james bond chasing car with super car "} +{"id": "8003884", "video_name": "2551e65d-0585-50b1-a103-159c80395912", "text": "a man sitting in office and exploring ai. then someone brings him a coffee. he drinks and enjoys. after lokks to the window "} +{"id": "0006005", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "a cocker spaniel running in the park in England, disney, unreal engine "} +{"id": "6003485", "video_name": "4c09e0e2-7a4b-533d-a195-c1ebf584d66a", "text": "man sitting on a porch smoking a glass pipe, it causes him to enter his own mind and is now falling through a psychedelic dreamscape "} +{"id": "4002609", "video_name": "efb3b6fe-cc4f-592d-805b-696bee7a42e3", "text": "prompt: girl was slowly dancing with a smile. "} +{"id": "3005884", "video_name": "274cd3d0-f207-535d-9099-154f58477453", "text": "one school boy on road smoking "} +{"id": "0005513", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "Quiet moments in a whimsical town, in the style of Studio Ghibli slice of life, warm and vibrant colors, cozy interiors, slow camera pans "} +{"id": "2006570", "video_name": "fcd16bf9-7415-5cf8-975d-849d45fd8f2a", "text": "car moves slowly pass an old amusement park "} +{"id": "0003780", "video_name": "433bdbc0-d59b-56e2-ac86-45b6079ee6b9", "text": "ice heart, black and white, 1940, silent movie "} +{"id": "8002075", "video_name": "ea90a26e-e424-51e2-8353-a989b8d00596", "text": "Fabric wrapped in the moon aesthetically "} +{"id": "3004245", "video_name": "2006fe66-9aea-57c2-bb4b-706129bb0fd3", "text": "Generate an image of the mermaid sitting on the marble terrace, concealed in the clear moonlight, , Photorealistic, Hyper detailed, cinematic,16:9,Ultra 8K,Hyper detailed,\u201d "} +{"id": "1006496", "video_name": "76f1a9c9-afdb-5dc4-b7cf-d78fbc335a6e", "text": "front to back meditating brown and blue no white thick cloak, the father of bravery and light, karl urban as a determined, shaved head and a beard jedi knight with a human face, banpresto, hanna barbera, looks different, depicted as a 3 d render, dark blue mist, green glow, fog and mist gentle breeze "} +{"id": "7003656", "video_name": "9d8ee12a-64df-5284-9645-28688fd38d37", "text": "dua lipa arrived at Mumbai airport. public went crazy. "} +{"id": "0004110", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "Man holding lottery ticket with surprised expression on his face "} +{"id": "5001903", "video_name": "e3f2587f-5eb3-5607-bff9-8968c1a1f3ab", "text": "glowing flower in a 3D render luxuriant forest, rapid dolly motion, motion blur, low shutter speed "} +{"id": "2005693", "video_name": "e741f787-82bd-566b-9fd1-cc9571538234", "text": "90s vhs footage of , civil war 1887 "} +{"id": "0006979", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "an old man writing a blank book in the forest "} +{"id": "2007904", "video_name": "9c9dd23b-e52d-51d7-a556-bfd73e3f7578", "text": "a parrot flying over the cage "} +{"id": "5001647", "video_name": "1e3e2fdd-5144-5e6b-bdf7-913e46e99b55", "text": ". Princess Lily, with gratitude in her heart, held the Heartstone high "} +{"id": "1006873", "video_name": "7d847ed3-aacd-5f05-a21c-7a6d134fc353", "text": "rick and morty as body builders "} +{"id": "2004948", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "Man wearing 56 number green jersey,fire in all stadium,nights scene, "} +{"id": "2007833", "video_name": "a996cf5a-211e-5317-8d9b-973271fb80ed", "text": "image of an astronaut moving to stand up from a seat "} +{"id": "6002624", "video_name": "0a63bf0b-e438-52e6-aed2-f152d44d9923", "text": "In a dark environment, a man is kneeling on the ground in prayer. "} +{"id": "2004809", "video_name": "37d5a087-e352-5fe0-9677-e849e31d0639", "text": "a young man with leather jacket riding on a motor bike cinematic film image "} +{"id": "8003347", "video_name": "d365e08e-850a-50bf-bd7d-c4afb608a4db", "text": "A zooming out colored cinematic video with 8k HD of Berlin conference of 1884 where Africa was divided by Europeans. "} +{"id": "7004040", "video_name": "e94e35d3-5817-5540-9d30-0ac0e0ba4e7e", "text": "a cat eating bread in the style of pixar animation "} +{"id": "2003334", "video_name": "eacef6a1-0020-5e29-898f-9785ef6b15bf", "text": "the gladiator movie as it was the barbie movie "} +{"id": "7003192", "video_name": "7494713a-f53f-59f4-aad0-e005c59614d5", "text": "Robot horse running on city streets "} +{"id": "3004188", "video_name": "12769240-15dd-5503-9191-ab2977b92edf", "text": "A girl wearing blue Hanfu walks in the rain with an umbrella "} +{"id": "1004705", "video_name": "5763492d-62e3-5e97-a01d-9fa5967b8bcf", "text": "A cute little dog, running in the yard "} +{"id": "8002345", "video_name": "b2a74346-3950-5229-87cc-f6f318a86c2e", "text": "the Clarabelle a cow is drowning a muddy pond in the forest "} +{"id": "6004794", "video_name": "47fe9949-8dae-5741-b897-915bc7d68408", "text": "Female ghost, sadness, floating in the air, fog, sad emotions "} +{"id": "2007733", "video_name": "abaf3b25-a175-5041-94ff-939caab722a3", "text": "The burger is steaming hot, dropping cheese, "} +{"id": "6003562", "video_name": "dbb1d81f-7fe4-5d5a-ad5c-bc98d9cf243b", "text": "person ejecting from an f16 while on an aircraft carrier "} +{"id": "4003071", "video_name": "e2f5d111-5dce-5d84-93d3-f0f49927ecb6", "text": "Vertical Aerial Top view, flight over fields, desert, Germany, bright sunlight, high resolution, 4K, satellite footage "} +{"id": "1005689", "video_name": "6885a33b-77dc-52d7-b6bd-744b2c178866", "text": "video of a beagle hound sticking his head out a window of a moving car ears flopping in the wind "} +{"id": "3006285", "video_name": "8422da62-7a26-5884-9838-42b63767bf3b", "text": "pixel art raining in a cyberpunk city "} +{"id": "4003759", "video_name": "64ff4c4f-00b4-5540-ae91-c6b9a731f4af", "text": "a haunting in Venice but it\u2019s Venice, California "} +{"id": "2003344", "video_name": "98d60fe3-c621-55bb-ba18-117f5f8d5a5a", "text": "animated title sequence video for a show about children "} +{"id": "3004971", "video_name": "e81da705-c334-5655-b7fe-64be2d7414a2", "text": "In the vast sea, on a boat, a woman was fishing for a big fish with a lure rod. "} +{"id": "4004039", "video_name": "432a3681-c79d-519b-90d6-0aee6d09c088", "text": "4 actions, have the flower petals falling, sunlight streaming, with talking "} +{"id": "3004263", "video_name": "f9214551-a263-5f36-accb-a5b41d551154", "text": "muhammed ali jumping up and down in a boxing ring "} +{"id": "8001989", "video_name": "61469974-c5ab-5831-81f7-093e375c0353", "text": "make all image in circles move "} +{"id": "3003103", "video_name": "6d2b0c6d-cf7e-5210-a385-1dfdbf3b7198", "text": "pirate captain sword fighting a girl captain on boats "} +{"id": "1006256", "video_name": "729caeda-5986-5efc-870f-ae7aa84ed409", "text": "generating video sc fi space ship war "} +{"id": "1005302", "video_name": "617115c1-bfdb-58a0-bcbd-55487b78b05f", "text": "Curly hair suggestive bikini woman standing. natural light. realistic. "} +{"id": "5001289", "video_name": "bbb91964-7960-5b50-af73-dccbe0c3b98f", "text": "beautiful woman with suit, speaking some words with mouth, in the kitchen, "} +{"id": "0004394", "video_name": "083026d5-4f7c-55e1-8aa0-773a3d631d28", "text": "a girl reading book in a wood house "} +{"id": "3004061", "video_name": "06979c9b-15cd-5d04-aae2-88382b826877", "text": "crocodile Sobek egyptian god playing video games in streaming studio 3d rendering "} +{"id": "3003834", "video_name": "d42fb20f-0227-50ce-a9eb-e5902e35b026", "text": "kitty Anne puppy swims together underwater with aqua masks, zoom out, HD "} +{"id": "0006525", "video_name": "2e0fed4c-51ac-5fb2-bf0f-a1195db17a86", "text": "prrehistoric humans in cave with fire "} +{"id": "0005121", "video_name": "152eda01-aaba-53b9-a8e9-d592deec5961", "text": "Gandalf talking with Bilbo Baggins, cinematic slow zoom, clouds moves, bright day, green garden "} +{"id": "0005350", "video_name": "19415581-468c-5549-9588-b1836493db77", "text": "man 50 years old kneeling front "} +{"id": "3003278", "video_name": "1030e40a-0e89-508b-9f3a-21199bb9c295", "text": "A japanese barista serving espresso in a Starbucks shop "} +{"id": "2003593", "video_name": "0cea0e79-a717-55ec-959f-5a470d6c8859", "text": "green cng on the road at night "} +{"id": "1003030", "video_name": "37a009c0-7f59-53e8-a93b-b7d8f5879671", "text": "Represent Jesus as the Master guiding His followers toward true spirituality "} +{"id": "2006137", "video_name": "65d7a636-cbc6-50d6-9ff0-63af11cb04ac", "text": "In the whimsical world of Studio Ghibli, where nature intertwines with magic, and ordinary animals lead extraordinary lives, imagine a heartwarming and enchanting tale centered around Luna, a white fluffy cat. Luna lives in a quaint, secluded cottage nestled deep within a mystical forest. "} +{"id": "2007296", "video_name": "a6bc7bbe-f0b2-53ae-a866-cd41eb067fc1", "text": "A group of students in a forum debate in a classroom "} +{"id": "2003277", "video_name": "ac880eec-9def-5dd2-95c9-3a51fbf80e28", "text": "Generate a black and white tattoo design for Second Life. I want an eagle tattoo with wings spread. The design should be simple and elegant, with clean lines. The eagle should have a majestic and powerful appearance. Ensure that the wings are open, and the design is suitable for a PNG format with a transparent background. Please include details that highlight the shape and structure of the eagle. The final file should have a resolution of at least 500x500 pixels. "} +{"id": "2005586", "video_name": "d91dc636-8bbb-5d05-92fa-372cca8ac94f", "text": "Ancient workers carrying stones, ancient construction site, 8K picture "} +{"id": "7004363", "video_name": "67e19f30-f85d-5aa5-8c35-d3d5ea9e8c32", "text": "doly zoom to the top of the tallest tower on earth "} +{"id": "6003043", "video_name": "ef5b42d6-653c-509e-9dde-0eb9b8279524", "text": "a girl walking to forest . 16:9 "} +{"id": "2006357", "video_name": "ac70430a-4314-53fe-8ae4-6a51760eeb9f", "text": "1980s video of a UFO flying through the clouds at night time. Bright light,4K, 16:9 "} +{"id": "1005272", "video_name": "60ef3f44-3c53-524e-bdeb-582dfa0e92cd", "text": "airplane crashing into a house, 1985 "} +{"id": "0004623", "video_name": "0c194721-67ab-5166-a9a8-8c4073501664", "text": "A drop of a tear,smashed on a note,dramatic ambient,indirect lights,distorted, "} +{"id": "0005997", "video_name": "24ba7eb2-d925-526b-9060-5dda81e4f81f", "text": "one cool dude wearing leather jacket and sunglasses driving harley davidson motorbike on the highway, high speed, driving fast, motionblur "} +{"id": "8002584", "video_name": "cf21d871-f73d-54b5-a376-5bde97b6e9ad", "text": "landcape, reflections, big snowy mountrains, jucy green grass, realistic, fall, autumn, dark "} +{"id": "3006596", "video_name": "a1d47ecb-3926-561c-91c8-e4232ec3f2f1", "text": "space rocket launch in Finland, 1973, flames bursting under the rocket and snow floating in the air "} +{"id": "4003289", "video_name": "a280c250-3dde-5996-8a20-3fe442f5b3ba", "text": "generate video like faceless person upstairs in a Russian green sides porch "} +{"id": "2007947", "video_name": "4a1ac98e-2a4d-5397-b567-828b85c69b8a", "text": "The drawing begins with a panoramic view of a landscape "} +{"id": "5001706", "video_name": "9328e1b3-1bfd-58c7-a1ab-475a3b907324", "text": "The painted guy stands in the middle of the forest with a round aquarium and hugs him"} +{"id": "0006338", "video_name": "2adbf766-1435-5b9b-9dab-a7e03468f5e1", "text": "an immortal hero in greek mythology "} +{"id": "1006378", "video_name": "74bb54eb-e949-576b-a8cf-cdb9db58b11d", "text": "transform into a Sahara desert with (dunes) in a sunset with the moon rising on one side and the sun setting "} +{"id": "2006712", "video_name": "5184e187-3e79-510e-9fcd-b1b394531811", "text": "Generate an image of the village at night, shrouded in darkness. Show the villagers gathered around a bonfire, sharing tales of the haunted mansion and pointing in its direction, their faces etched with fear and intrigue "} +{"id": "2007812", "video_name": "955a8216-29a9-5bb5-9cd7-96d33f2055b6", "text": "A man walking on a empty road with trees surrounding, camera just behind the man. Studio Ghibli style animation "} +{"id": "3006244", "video_name": "fc861681-7e5f-572e-9fd2-6d2aab86811e", "text": "It was a dark and stormy night. A group of four friends, Alex, Ben, Cindy and David, decided to explore an old abandoned house on the outskirts of town. "} +{"id": "2004078", "video_name": "74ea1d54-2321-58f9-8136-70475f817055", "text": "magical liquid flowing down through a bucket "} +{"id": "0005679", "video_name": "1f244386-767b-5da5-8036-dbf08036c22f", "text": "young american man in yoga class surrounded by house "} +{"id": "2004549", "video_name": "51a10046-2717-5928-a445-8974a3606c6e", "text": "green colour mini bus entering into city by highway "} +{"id": "8003437", "video_name": "0be543dc-2d95-5272-b5f4-7a4bc58d8a82", "text": "the hardworking ant and bird marked by acts of kindness and assistance at Vibrant meadow with colorful wildflowers swaying in the breeze. "} +{"id": "8001725", "video_name": "35370950-d34a-59ab-98e5-5a35f997a49c", "text": "Grandpa sat at home, wearing a black hat "} +{"id": "1003221", "video_name": "3b585843-d804-59e8-b808-25c7ba14cbc8", "text": "The man in the tuxedo is drifting with an Aston Martin "} +{"id": "0003274", "video_name": "3aa0968d-b1de-598b-b14e-5ae6e34de268", "text": "But they never forgot the day they climbed the oak tree and saw the world from a whole new perspective "} +{"id": "2006148", "video_name": "82842c79-b419-5543-ae41-43230fc39e89", "text": "rhinoceros, camera facing,standing in the forest "} +{"id": "7003404", "video_name": "6ef90844-1aa4-515d-9d1b-345a0576ebd9", "text": "Overhead shot of a plate with portioned food groups "} +{"id": "6003074", "video_name": "53c98f86-498b-5f67-82ac-b5d3a82a876f", "text": "slowly zoom in as boy is slightly shaking "} +{"id": "1003376", "video_name": "3e4029ec-a1cb-59f9-a68c-7e41cc21c4cd", "text": "In the darkness, a wolf represents imminent danger. The vulnerable sheep illustrates the challenges faced when away from the Shepherd and the flock.3D "} +{"id": "3006900", "video_name": "110c0809-0f27-5bba-af6c-2205e241b7ef", "text": "a tree with roots that spell out the word \u201cwisdom.\u201d cinematic photorealistic, "} +{"id": "8002358", "video_name": "51e7aa6f-3419-547b-a4b6-fe969726a85b", "text": "little girl happily makes a snowman with huge snowballs.cartoon style "} +{"id": "7003781", "video_name": "45a97ae4-f69f-506d-86c1-760c927c5aec", "text": "people running away from the cabin in the night time "} +{"id": "2006972", "video_name": "35504b5e-e788-5642-8966-d63cfae95b2f", "text": "house from the 1888 year in china, isometric illustration "} +{"id": "1006095", "video_name": "6fc75375-ca6c-5820-b1d7-559e94c360c2", "text": "Two old men were playing Chinese chess in the park, and a young man standing next to them was talking. "} +{"id": "8002370", "video_name": "28b51621-6b3f-59ff-9dff-569bc9887ac3", "text": "Capture the sheer terror of the lady in white, a ghostly apparition who haunts a desolate mansion. Her presence is marked by an eerie, mournful wail that echoes through the halls, chilling the bravest of souls to the bone. As you approach the mansion, the air grows colder, and you feel an overwhelming sense of dread. In the dim light, her spectral figure materializes, her eyes devoid of life, yet filled with an insatiable hunger for the living. Every step closer to her is a step deeper into the abyss of terror, where escape seems impossible "} +{"id": "8001085", "video_name": "33f9d578-4874-52c3-a1a6-5437d4eac1e2", "text": "A little boy is standing on a mountain looking at a fountain "} +{"id": "2006774", "video_name": "54ccaa9f-a0ec-533c-af79-14073b483af2", "text": "Toys on kids room Message: Antony (Font: MODERN) "} +{"id": "8003201", "video_name": "03a23ffc-4582-5b1c-98a0-533ba868a412", "text": "a prisoner walking to his cell with two police officers behind him "} +{"id": "4003334", "video_name": "8a8ae224-0604-57cf-94a0-4bb3a1ef12af", "text": "make a 3 seconds video with a turtle riding a bike "} +{"id": "8001773", "video_name": "e24ea956-d183-5081-9b9c-4b7ad8b2af9a", "text": "A man with glowing hands is standing in the middle of the highway "} +{"id": "2004663", "video_name": "8efc96b6-1475-5210-8f9d-d9d8c09ee308", "text": "Witness the excitement of cricket as the umpire triumphantly signals a six! "} +{"id": "2004907", "video_name": "7f87e152-588e-5227-bd28-b7ba2f2fdbd8", "text": "cartoonish tomato and carrot talking to each other "} +{"id": "8001280", "video_name": "52d80334-9dca-50ec-8b42-68b7cebc3bbb", "text": "Geralt of Riva, Henry Cavill as Geralt of Rivia "} +{"id": "7003882", "video_name": "84c8e590-06ac-5c13-82da-ffccd3f30646", "text": "king Ram sitting as king and servicing poor people in his kingdom "} +{"id": "1004614", "video_name": "55d14ef1-e1cf-5c65-86f8-98dd8854fa2f", "text": "30sec video of a bee talking to another bee "} +{"id": "7003732", "video_name": "d2533c4e-0b00-5066-863e-2db32d52efd0", "text": "woman in car thinking about not wanting to cook, anime "} +{"id": "7002696", "video_name": "5debacae-6aeb-532a-9c3a-b3fb4f1010fd", "text": "A man who committed suicide,dark vibe "} +{"id": "4003569", "video_name": "a7365e9f-84b5-50ef-ab98-5c7b0dffc7f2", "text": "A lighthouse weathering a storm, representing guidance and resilience in difficult times. "} +{"id": "4003941", "video_name": "21feeb33-5ae2-5800-8c25-4feb9327bbc8", "text": "flying fabric, lightweight materials, black and white, light effect, timelaps, 360 rotation, more detail "} +{"id": "0006490", "video_name": "2d6aac47-f05f-53ac-9a7a-ed5dcc5ce080", "text": "A man running from a cave, there are monsters standing in front of the man in a winter theme, first person view "} +{"id": "0006198", "video_name": "280fb5b7-cec5-52e0-9baa-c16350a4ea9e", "text": "a young woman in sand colored uniform on a archeological digging site and on the back ground of the woman walking, there are other archeologists working on the site "} +{"id": "3006870", "video_name": "42271a52-8c35-5b2b-ae6c-791cd0723fca", "text": "man clean a window glass car day "} +{"id": "8001201", "video_name": "9de90436-4587-5989-9926-aeae1e10404d", "text": "chromatic abba ration scary k hole collapse fast motion millions of atoms being blown away going through portal fast scary quick motion with so much happening "} +{"id": "0003430", "video_name": "3d62cf77-7b0c-53fa-8f45-7b2cdcc7928b", "text": "cartoon yellow duck from the duck song walking away from its lemonoid stand "} +{"id": "1004401", "video_name": "515a4856-63ad-5038-9463-f8adb8092ae5", "text": "baby in a pram, pulled by a dog "} +{"id": "2005884", "video_name": "aa496ffd-fd83-5fd1-936c-ea877076e101", "text": "Illustrate the Roman city post the fall of King Valerius. Depict Marcus as a wise leader, delivering justice to the citizens, and restoring balance and peace in the city. Show a populace living freely and happily under their new leadership. Message: 1 Attachment "} +{"id": "8001659", "video_name": "f2d98a18-f3b7-5c13-88d3-91002f6b989f", "text": "Prof, rapper high priced shoes, light show "} +{"id": "0004710", "video_name": "0dc4fe17-c791-5999-b60e-fde969ea2fa2", "text": "video for eccomerce busines of various digital products like ebooks, tshirts, planners and journals using digital art. "} +{"id": "1006659", "video_name": "7a043785-953e-5385-be1f-7b0bcfb6d68a", "text": "Show a historical photograph or image of the Titanic. "} +{"id": "4002902", "video_name": "5e5e191f-851a-5429-bb12-2d8b62643dda", "text": "the dragon standing at the castle began to grow in size and crushed the castle. "} +{"id": "1003669", "video_name": "4386f291-b291-5915-a5a6-7dd7a49c21bc", "text": "ken kaneki slowly walking through flames, flames bursting with stars and energy, hyperrealistic, hyper detailed burned city in the background, long road warping into the sky "} +{"id": "1004024", "video_name": "4aad328e-6a80-518e-96b9-f2b0e27b1980", "text": "Batman driving a hellcat,while joker is racing him with a trackhawk srt "} +{"id": "1003361", "video_name": "3de44bfa-2b28-5be5-8209-67bf3b986b50", "text": "a beautiful woman with long black hair and tight dress gets into her sports car she is smiling "} +{"id": "3003168", "video_name": "f6832569-43cb-58f7-a201-c7b0a5325ac1", "text": "Chef Betty opens the box with enthusiasm and pours the magical mix into a mixing bowl of cookie dough. "} +{"id": "0006305", "video_name": "2a61bf27-5927-5e30-9ff7-91e9c99601d9", "text": "a star search algorithm traversing simulation "} +{"id": "4003143", "video_name": "d0fbb8b7-1f80-55c4-81d8-5ac1e53062e6", "text": "in the morning flies the clock "} +{"id": "7004029", "video_name": "58515d99-3c9b-5d54-aa53-447e0397e9b9", "text": "going over train tracks at night "} +{"id": "1004929", "video_name": "5b2287d6-5fb8-5b18-8a0b-f9e61cc07077", "text": "world aids day red ribbon floating over winter Tallinn "} +{"id": "6002002", "video_name": "cbcd0dce-ab92-5e6f-8615-8be8a886a2bf", "text": "Picture a boy who is walking in a road with tall windows, cars pass by him and it is rainy weather, the boy is wearing a raincoat. "} +{"id": "3006385", "video_name": "e0eeb268-4293-59d4-8a90-2ffa61378017", "text": "bear sleeping on hammock in a living room "} +{"id": "0004962", "video_name": "1248fa13-354a-5161-b53e-cd71a12ca2dd", "text": "a lady asking for vote in india for congress "} +{"id": "4004618", "video_name": "3972bc18-8407-50df-bdb2-f1ad5e6fb53c", "text": "man walking in a tunnel of dollar bills "} +{"id": "3003620", "video_name": "1365c83a-45a2-5811-8e7d-7cf9cdd4d62d", "text": "marker art showing a surreal figure drawing of an abstract grey humanoid alien, sharpie drawing sketchbook, elaborate ink sketch of modern art cubism style, human form model pose, a detailed gesture drawing "} +{"id": "1006386", "video_name": "74d0f108-9d2c-5d64-955d-de4bcd9d7345", "text": "man holding phone front facing camera, walking in his studio "} +{"id": "6003017", "video_name": "874eb96c-a9e9-5fb6-928e-7ba4dccf3fc0", "text": "two friends injured in ground in army "} +{"id": "8002660", "video_name": "aba687f8-f40a-55d4-9660-0005025dced0", "text": "A scene captures a cozy study environment with a girl studying and listening to music in Japanese animated manga style, maintaining a tranquil atmosphere for LoFi music, with a golden retriever by her side, with sweet chemistry between the two "} +{"id": "4002208", "video_name": "248ad3c8-336e-51fe-9d2e-a4e68194c332", "text": "Alex a passionate history professor taking class for college students "} +{"id": "4004808", "video_name": "68660646-5a66-51c3-aea1-f0648862bdee", "text": "falling and crashing down the Berlin Wall "} +{"id": "6004240", "video_name": "d61b482f-5b71-5b7d-9e09-92aab075eb5e", "text": "In the year 3000 AC, portals unexpectedly opened across Earth, unleashing a chaotic convergence of beings from every corner of the universe. From distant galaxies and parallel dimensions, a myriad of aliens, animals, and unimaginable creatures spilled forth, their arrival heralding an apocalyptic spectacle. "} +{"id": "7004191", "video_name": "3b728cf4-691c-5d7c-822f-9ad661ca64e3", "text": "A Chinese girl in a bikini runs on the beach "} +{"id": "2004436", "video_name": "721c18b0-3a53-516b-b854-7c7ec45b4b65", "text": "a man throwing like and comment logo . Cartoon caricature "} +{"id": "5001661", "video_name": "a8248492-9918-5f77-9e71-c33aef3d90d9", "text": "The sun is approaching as if it were about to hit "} +{"id": "5001614", "video_name": "1ec0bc3f-f249-53fa-9aca-63eba7660c73", "text": "a man standing alone in a train station in india "} +{"id": "4004684", "video_name": "1d079e3e-b564-5fc9-bfa0-c4f7ec067940", "text": "dragons eye burning bright red zooming in slowly Message: Sam Cater (Font: MODERN) "} +{"id": "4004587", "video_name": "9eb616c6-1227-58de-b4fc-7455562bbe36", "text": "futuristic fighter jets fight alien spaceship above Tel Aviv Israel "} +{"id": "4002836", "video_name": "ab4ef00d-5d9e-5a01-b2f7-26a06c69477b", "text": "Message Message: join now in Telegram (Font: MODERN) "} +{"id": "7003466", "video_name": "934cfb96-480f-52b4-80cc-8a584c864e47", "text": "Human Heart beat , Heart human like Apple and beat "} +{"id": "4002021", "video_name": "8780dca6-1351-51fb-8431-5c90b0c651db", "text": "A child discovering AI for the first time. "} +{"id": "0005623", "video_name": "1e4786e5-38be-5df7-b0c7-1147c7161087", "text": "A playful comparison between DreamFusion and everyday objects, like using it to summon a cup of coffee instead of making it. "} +{"id": "4002036", "video_name": "ab1e5eeb-be13-50a2-981a-8ba92cb1a54b", "text": "a panda with a sunglasses on the highway"} +{"id": "7004365", "video_name": "6b38f77c-c855-5d1b-8f0b-076132513a2e", "text": "drone footage of a beautiful sandy beach "} +{"id": "3005111", "video_name": "ce555735-48ec-58fa-a4ba-0e55d52a8450", "text": "cloathe ripples, flying birds, clouds are moving,dust rises from the ground Message: 1 Attachment "} +{"id": "0006559", "video_name": "2eaa409a-f941-5d7f-9a0d-11b78c360492", "text": "a beautiful girl with unicon, dramatic sky, they slowly walking "} +{"id": "8001217", "video_name": "a3c3d976-b90b-584f-8707-8b9d74861527", "text": "minimal party, house music. Happy imagens, people smoking news herbs, gothic Alien photography "} +{"id": "0006458", "video_name": "2ce91d94-d95e-5f49-ad32-c93b42f1c80e", "text": "A man with a sword fights a group of bad guys "} +{"id": "1005848", "video_name": "6b7b9306-1496-50b2-905c-f7d12a9ef25b", "text": "occupational therapy influenced by generative artificial intelligence "} +{"id": "6002466", "video_name": "03dde5ea-5688-5390-9c71-de25d3b58738", "text": "students designing a prehistoric restaurant using media tools "} +{"id": "7004364", "video_name": "a9a9b2a9-14cd-5ac4-a403-cb08d0eae5d7", "text": "Transition to a dreamy sequence of the same character imagining their travel dream. Background: Beautiful landscapes, iconic landmarks. Facial expression: Dreamy, hopeful. Body movement: Gazing into the distance, smiling. "} +{"id": "0004882", "video_name": "10d9bf69-7c65-5d80-99fc-550fa2e3a366", "text": "On the grassland, a lion charges. Wind tousles its fur as it races towards the camera, exuding power and determination. "} +{"id": "8001906", "video_name": "79532675-f33b-574b-a82f-f0d9750d0455", "text": "Natural satellites glowing in the space "} +{"id": "1003969", "video_name": "494a4031-1502-57f9-ac27-f9f07c890d99", "text": "continued to explore Storyville, eager to learn more about the wonderful world around him "} +{"id": "2003539", "video_name": "daa8efbb-1a0a-5946-9f52-8689b35bb243", "text": "Create an image of two people talking in a podcast "} +{"id": "8003391", "video_name": "7f628839-84dd-5218-9953-8cf269f65ac9", "text": "The moon experiences extreme temperature variations, "} +{"id": "2005146", "video_name": "51b21929-4625-53c7-adcd-21dbe19f25de", "text": "the earth rotating on its own axis while an eclipse happens, with a view from space. "} +{"id": "7002057", "video_name": "bdb58c21-67e6-5eb2-b1c7-b2c3a30d664f", "text": "Generate a series of quick shots showcasing animated characters solving puzzles, exploring new and fantastical worlds, and sharing exciting adventures. Each shot should exude enthusiasm and wonder "} +{"id": "4003593", "video_name": "d30367aa-92f2-5cb1-a7a7-b9e53ef7881f", "text": "Clint Eastwood Riding a Chopper through the Desert with a beautiful blonde woman as his passenger "} +{"id": "1005149", "video_name": "5edb757d-254f-52eb-a437-1c4f2f5e0ce2", "text": "Soft sunlight fills the room as we meet a young boy named Jake, who is blind. He sits at a table, surrounded by paints, brushes, and canvases. His fingers glide across the textures, feeling the paint and tools. Message: 1 Attachment "} +{"id": "4004520", "video_name": "0da2e271-c5fd-5bb3-9abb-8cc4886bfdaf", "text": "the cell donates an empty electron to an oxygen molecule "} +{"id": "7004094", "video_name": "dd14129e-699a-5503-8c1d-b84eeff4f736", "text": "Momey Tresors and juwels. And diamonds Message: Money (Font: MODERN) "} +{"id": "2006042", "video_name": "c970bf36-c3c0-52a8-a12a-48ec4d23a560", "text": "They were taken in by their aunt, who was not the most loving or caring guardian. She always reminded them of how much of a burden they were and how unlucky she was to have to take care of them "} +{"id": "0005693", "video_name": "1f92cae1-3dd6-5b58-a4f7-d2b9a1b1b56e", "text": "character raising hands, moving clouds and moving costumes "} +{"id": "0004209", "video_name": "0501ae39-1a8d-517e-ae13-2afec8b888a8", "text": "A Lamborghini made of chocolate at high speed "} +{"id": "1004551", "video_name": "54873c6c-bdee-5607-890f-7bc2e8cc9b94", "text": "generate an image for a post about selling of Airtime and data business in Nigeria could include other subscriptions "} +{"id": "2005375", "video_name": "827f6d31-bb0e-501e-a4e4-26b91ddf4013", "text": "Mustafa Kemal Ataturk in military uniform "} +{"id": "1004900", "video_name": "5a81c64c-67dc-5a48-bd1a-7d5dd7f4a185", "text": "a family of cute little ants gathered in the rain under an umbrella, "} +{"id": "0006870", "video_name": "3488a4dc-7009-549b-9828-47e20b2cfbf6", "text": "a realistic elephant of the year 2150, with a tales like a fish in their feet\u2019s ti swim "} +{"id": "5001604", "video_name": "c5410d7b-158f-58ff-a97c-708fbda02f06", "text": "mischievous selkie frolicking through shipwrecks, portrait "} +{"id": "4004394", "video_name": "9633d54a-0258-50ef-a349-96724483177b", "text": "the bright moon shines over the sea; from far away we share this moment together "} +{"id": "4002214", "video_name": "ef5df905-19a4-5825-a183-179f741518eb", "text": "a creepy dark texas highway in 1962, a blonde woman with red lipstick is driving a car, her hands gripping the wheel as her husband lies sprawled in the seat next to her "} +{"id": "1005050", "video_name": "5d5e0a4e-db68-5638-bfb7-8aa11ff5cecb", "text": "Eve feeding an apple to adam "} +{"id": "0003087", "video_name": "36bef0d0-e221-5883-a4de-ee34f0dc22ea", "text": "farmers in Bangladesh in a huge wave flowing over fields "} +{"id": "1005027", "video_name": "5d035f5d-048e-58be-8dd5-f8ff67af9faa", "text": "a fit man swimming vertically up in a deep dark sea trying to reach the surface surrounded by menacing marine monsters, hyper realistic, super detailed, cinematic light "} +{"id": "1006450", "video_name": "760fa1cc-d2fa-5c7b-b9bb-daa70da4ba76", "text": "Young Millionaires with lots of cash and Porsche gt3rs next to them. "} +{"id": "3003223", "video_name": "27e51b11-0c9f-5242-9d77-ed9570f6b537", "text": "A dragondecorated time portel, twisting and turning mist, dino comming out of it, intricate , 3D digital painting, infrared photography, by Thomas Kinkaid, Robert Seldon Duncanson, Brian Froud, Magic the Gathering, Final Fantasy "} +{"id": "3005903", "video_name": "d496bd44-a13b-5641-a946-82f49040c3d6", "text": "downpour ashes from sky in cyber city "} +{"id": "0004050", "video_name": "024c88b8-4298-5dca-a431-a8baf5d2b95a", "text": "lanky wendigo. wearing suit, blurry, low quality, found footage, vhs, forest clearing, abandonned farrm house, sleeping children in grass "} +{"id": "8001038", "video_name": "c2a6b1c5-3293-53f4-ab81-88a326890a2c", "text": "jesus walking on water at an indoor pool, hyper realistic "} +{"id": "4002553", "video_name": "d8709623-609e-51c9-a652-44be83c6b190", "text": "Ahmed smashes the ball for a boundary, sealing the VICTORY for Pakistan. The crowd erupts in celebration. "} +{"id": "4002718", "video_name": "6b5a74d7-6d3a-55c8-92d4-9465a5a46619", "text": "Harry Potter park with strong wind and people covering their faces in discomfort "} +{"id": "6002083", "video_name": "4d59e92e-1b70-5f3b-9ac5-95d18dc4e8fa", "text": "The explosion of a terrestrial planet in space, moving the camera forward, the spread of rocks and smoke and fire, the explosion of a planet in space "} +{"id": "6004035", "video_name": "8f416fe1-f2fc-56d5-9ec9-715aa5997c14", "text": "In the heart of a lush jungle, there lived a young and spirited tiger named Toby. Toby was known for his striking orange coat with bold black stripes, his bright amber eyes, and his courageous spirit. "} +{"id": "1006368", "video_name": "7498912b-ecbf-5d80-b7a1-cfe142910b4c", "text": "optimus prime robot on the toilet "} +{"id": "8003781", "video_name": "526afb3d-8f87-5556-adef-88c01b82f2ec", "text": "a man standing in the center of the frame and in background american city skyline "} +{"id": "2003778", "video_name": "c5c58915-2967-5ab4-9d66-51eb559faf52", "text": "an epic battle between an human man in a red space suit and a human man in a blue space suit with a sword in a desolate landscape, explosiones and lasers "} +{"id": "0003385", "video_name": "3ca70e33-4141-5f1c-804f-f404b156709d", "text": "head tilt. eyes blinking. hair blowing with the wind. background blurry. fireflies moving in the background. "} +{"id": "1005283", "video_name": "6128cb89-7a70-50c3-86ee-af9a3e222d7e", "text": "looked around and saw some crumbs on the floor and some chocolate on the window sill. "} +{"id": "4002820", "video_name": "a960242e-b9fe-506f-95c4-3e882900f3af", "text": "A man with a blue shirt and blue pants and blue shoes and a blue hat and blue sunglasses "} +{"id": "8001301", "video_name": "237f064e-936e-53ed-94d9-663518b61b00", "text": "A cute little white bunny noticing that the water is rising in the middle of a forest lake "} +{"id": "1003270", "video_name": "3c2b9dd2-85c1-5b06-9b31-bc53c7331e46", "text": "personality girl , super detail , gradient background,soft colors, soft lighting, anime, high detail, art, blind box , divine , cinematic edge lighting, light and dark contrast ,8k "} +{"id": "1004229", "video_name": "4e463d67-855c-597a-9e40-6cfb41745ee6", "text": "a closeup to a Sasquatch drinking Champagne "} +{"id": "0006794", "video_name": "333b1666-240f-52bd-b084-56ab69b72378", "text": "Very beautiful photo of Ganesh ji "} +{"id": "8001971", "video_name": "5265ad80-7282-5193-9bd7-cbad087783d8", "text": "Elara and Seraphina setting off on a journey through the forest, walking along a winding path. "} +{"id": "2004253", "video_name": "7d6b376c-0942-5d53-a62a-72450d4b5a59", "text": "follow. three black tulips growing from bulb to bloom with blinding sunlight in the background. hopeful. happy. alive. "} +{"id": "1003064", "video_name": "384df57f-6a79-505c-9deb-9798a15b787a", "text": "A grasshopper with a katana rushes through the grass "} +{"id": "0004527", "video_name": "0a94f77f-f958-5b00-a665-33f43a9cacbd", "text": "explosion of light surrounds a cross "} +{"id": "2007381", "video_name": "38f5c7cc-9668-5177-8a01-a24b0da026dc", "text": "orange cat playing with a lamp and the lamp falls "} +{"id": "1003576", "video_name": "41ec1325-4a6a-5d09-8e87-6c4724de1a59", "text": "Trees blowing along with birds and plants. "} +{"id": "1003301", "video_name": "3cc0896d-1215-59d8-9cd2-d43a097a7716", "text": "A castle filled with the numbers 123456789 "} +{"id": "0004456", "video_name": "095be3ed-b8b7-5120-8156-1d5c4d33a83c", "text": "the rocs mube up and down "} +{"id": "3003249", "video_name": "f0b3c1cd-0534-5409-bbc0-b2ac6359785b", "text": "Afro dances around the Palmares zombie statue in the center of Rio de Janeiro, exaltation atmosphere, religiosity, realistic, joy, cinematographic, long shot, 4k "} +{"id": "1006543", "video_name": "77db25a5-511d-5e0d-84aa-1492536130d0", "text": "dry fruits are dissolving on 10 ice creams cuos "} +{"id": "4003523", "video_name": "589c0f76-d623-56f2-86d6-a6bc0af2aa3c", "text": "osv video with spring flower pattern "} +{"id": "2007305", "video_name": "27fff71d-e97b-5bf6-bacd-9bff2a103376", "text": "10x10 canvas, water splash, product shot, studio shot, crisp, highly detailed, full HD 4K "} +{"id": "4003018", "video_name": "8f140a80-261a-5281-b4dd-2710b0f9aabe", "text": "a magic lamp that expelles smoke that turns into a coiled king cobra "} +{"id": "3003633", "video_name": "7740bf8e-419e-5d51-8db6-05636244d861", "text": "create a 18 years old boy has a curly hair and a jacket black written on it yxxser . background : gaming romm (15 seconds) "} +{"id": "1003362", "video_name": "3de4dcc0-fa24-5aa4-8e8c-bdbb5582c48d", "text": "a 5 year old girl crying and running "} +{"id": "4003741", "video_name": "05cc325c-b3d7-501c-ae31-67ded2dcec16", "text": "lego batman figure parachute from airplane "} +{"id": "3003823", "video_name": "f7a86cfd-d801-51c5-9cba-d852af19456a", "text": "coffee being pured in a cup "} +{"id": "1005651", "video_name": "67dc0dc5-c07b-54b5-9d8a-759d354cb7f2", "text": "create Jesus in Tallinna city Estonia 4k best hyper quallity and detalied and olviste church "} +{"id": "6004532", "video_name": "6f32d5d6-5ed1-54ac-b35d-d432952f75e7", "text": "a green ray reveals a tree and a snow covered landscape, in the style of fantastical otherworldly visions, dimitry roulland, hypercolorful dreamscapes, god rays, precisionist art, spiritual meditations Message: 1 Attachment "} +{"id": "7004584", "video_name": "24b8c950-0f90-527c-95c6-b2358965afe1", "text": "3d mythological final boss for Indonesia, roaring, "} +{"id": "4004945", "video_name": "7b11f706-0964-55b7-bf1e-2238798c9a73", "text": "ronaldo flying in air and secoring goal for al "} +{"id": "8002967", "video_name": "77cfe1c0-d8e3-55a0-ba03-8ed3ecbf95d1", "text": "timelpase of a sandstrom on jupiter "} +{"id": "4002428", "video_name": "1aba8809-57f2-503c-a9f6-63de7c30dcb1", "text": "human human looking at his robotic hand "} +{"id": "7003401", "video_name": "215335d3-c02a-5d26-a61b-c295c664df9f", "text": "stop motion animation, weird clay people, claymation, 1950s animation, experimental, Foggy night during fall overlooking a river, smoke on the water, stop motion animation, claymation, 1950s animation, experimental "} +{"id": "4003899", "video_name": "1cf1de67-8efe-5348-b9de-c73723c43fae", "text": "oilwell packer dress like an Apache "} +{"id": "0005461", "video_name": "1b29e308-cbd1-5e9c-9098-40f22a17fbdd", "text": "a young woman with brown hair. Your eyes are green. She has a confident smile wearing a dress. with sad looking at cell phone in his hand, cinema "} +{"id": "6003883", "video_name": "c0e04653-936d-57ca-9467-d58a2a4b4224", "text": "castle from another universe at war "} +{"id": "1006106", "video_name": "70114577-e0ff-5bbb-9769-d52c35531925", "text": "Show someone controlling the Philips Hue lights with their phone "} +{"id": "5001609", "video_name": "14bee999-08aa-560c-965d-fabddfc7b3a6", "text": "a chinese red dragon slide into the scene,then it disppear "} +{"id": "1005742", "video_name": "69a7dac2-b0fd-5755-8692-fb366ba8afef", "text": "godzilla baking a cake in the kitchen, 1985 sitcom "} +{"id": "2006987", "video_name": "9210baa3-3a24-59bc-aa63-92b6bd455582", "text": "It takes place in a modern kitchen. The camera focuses on a countertop where there is a bright and elegant thermos "} +{"id": "4004292", "video_name": "7c0feb19-77bd-5648-a17d-ab163bbbed3a", "text": "There is a battle of knights in court "} +{"id": "8001584", "video_name": "9578a033-e3fb-58b2-bd77-7e72582b24de", "text": "a Dance floor full of disco lights and pop , full of speakers Message: Liba Dance (Font: MODERN) "} +{"id": "1005525", "video_name": "65b702d5-2ff5-5263-9c5f-42fb03c21be7", "text": "2 baby orphans, perfect hands, perfect legs "} +{"id": "2005559", "video_name": "8e013345-aa61-5e7e-86cc-c9ad845e93ad", "text": "a GTA six video leak of a robot destroying a car. "} +{"id": "1005812", "video_name": "6ad8d33c-5adc-5cd3-b8c0-6607a2a8139e", "text": "The man who writes music on the computer at night in the room. "} +{"id": "7002983", "video_name": "8a04f8a7-ef85-5831-bffe-5f486de4d6f8", "text": "Masterpiece, best quality, 4k, Chinese New Year, red background, festive atmosphere, dragon illustration, detailed character design, CGSociety, 3D 8K HD Trend on ArtStation, China Dragon Dou,Gold foil painting "} +{"id": "2004008", "video_name": "34ea2e6c-be07-5031-8f81-2853abe5dc7f", "text": "pikachu transforming into optimus prime cinematic 3d "} +{"id": "1004889", "video_name": "5a5bb24b-f1dc-5f1d-a98f-d983419e4fad", "text": "A small table lamp casts a warm glow in the room "} +{"id": "4003477", "video_name": "eb7362a2-dcbf-5397-8984-f691af011e5d", "text": "The girl sat in front of the TV and watched the movie happily "} +{"id": "1006930", "video_name": "7eba0b9f-bf48-5047-9e85-1ce180ba6564", "text": "12 sec. The tourists stumble out of the time machine, bewildered by the sand and palm trees surrounding them. The locals stare at their colorful outfits and selfie sticks in confusion. "} +{"id": "4003083", "video_name": "59582987-b742-5cd0-b3e6-aa0776db6829", "text": "Storms gather, thunder and lightning, heavy rain.cinematic shot,movie,film,realistic "} +{"id": "2003850", "video_name": "7556be86-8a79-538e-990e-d0512a090340", "text": "a waterfall made of orange juice falls into a huge black leather long boot, studio light, motion 5 "} +{"id": "1004205", "video_name": "4db8fbcd-2db9-5c60-8425-383bf5d07d16", "text": "The lion is in a daze "} +{"id": "7004278", "video_name": "f99b56cf-2ee4-578f-8b36-9ebf4b1d0d72", "text": "you can taducir me in creating a landscape in motion "} +{"id": "3006200", "video_name": "c363c2db-dbfd-5229-9848-40b4d24f44bf", "text": "glossy abstract color red, green,e blue, \nbrush painting,8k, HD "} +{"id": "8001822", "video_name": "0f635bc5-f747-597e-ad00-db7ac06f0988", "text": "The little girl picked up a dropped wallet on the street, cartoon 3D, high quality, landscape 19:6, "} +{"id": "0006856", "video_name": "34502209-bdce-5018-ac11-7ce35534df98", "text": "Introduction of Sparky: Show Sparky, the lovable cat with a spacesuit on, playfully chasing a space butterfly in his backyard on the colorful planet Whiskeronia. "} +{"id": "6002372", "video_name": "e19761ed-2885-5182-bb04-c382b66f9e36", "text": "gacha life eating good in aeroplane "} +{"id": "2006529", "video_name": "3eca396e-5b37-57a6-ad28-691f0e19179f", "text": "happy and cute many babies inside a capsule sent in a spaceship perfect composition bjjeautiful "} +{"id": "3005050", "video_name": "c32ac3a7-cf36-567f-9d9a-98b3c108f03e", "text": "a realistic video of Jesus Christ walking down a path while men and women follow him "} +{"id": "8003706", "video_name": "bd1cd6d9-cf59-5cba-abd0-e73e746079a2", "text": "Man left gun and standing infront of big army "} +{"id": "0005516", "video_name": "1c26be3e-579d-50be-91e6-37db08d2d781", "text": "magical merry go round with father and daughter having fun in the sunshine "} +{"id": "4004339", "video_name": "c3bcce27-2a5c-5b3c-bdd8-e8fb9e0dd3e6", "text": "city in fire Message: Allyson (Font: MODERN) "} +{"id": "8002985", "video_name": "cf83b61c-f6b1-5544-ad5a-d8b64166bf81", "text": "family of cucumbers in the garden "} +{"id": "1006013", "video_name": "6e75a4bb-7305-5e5d-8b81-7fdf6d18573c", "text": "squirrel in windy and rainy forest "} +{"id": "0003457", "video_name": "3ddb9955-ac4e-5457-8e80-e062d18015aa", "text": "old wall, rain, evening, light from a lantern, silhouettes of people with umbrellas, 1920 "} +{"id": "0004095", "video_name": "03258411-4efb-5f6a-94b9-cbcd94189bed", "text": "loop of a girl floating in the space with no space suit "} +{"id": "1006882", "video_name": "7ddaa117-21e8-5ea0-8817-81ac028dbdb5", "text": "Durjaya, a young and determined protector, leading a group of warriors to defend a village from a fearsome threat. "} +{"id": "0003346", "video_name": "3bf33cf5-79fe-50ea-8b27-af188221deb4", "text": "A woman dancing in the Renaissance painting style "} +{"id": "5001264", "video_name": "c1779eac-6f74-503a-aeee-0745d8d6dc86", "text": "Write about a place you love to explore and what you like to learn there. "} +{"id": "7002934", "video_name": "07279c5a-e457-5320-9f03-5ce452144c50", "text": "upside down world in water fish and bioluminescence "} +{"id": "2005406", "video_name": "0e51744c-89c7-5b62-a8c0-aed73c3c1d55", "text": "Yamata no Orochi is smashing the mountain "} +{"id": "7002745", "video_name": "fb95ef6e-8a3f-5fca-9c44-2ee6252bea15", "text": "city skyline Message: SAC2BAY (Font: RETRO) "} +{"id": "8001935", "video_name": "1ff21af3-7bf9-5a66-8e93-22e9f37d4847", "text": "Kane WWE doing chokeslam in a wrestling ring cinematic ultra realistic 4k "} +{"id": "2006502", "video_name": "1b262f75-5f1f-5799-9566-95dab74eeb26", "text": "among us animation on the new map "} +{"id": "3006106", "video_name": "ff02319e-fec9-5f9a-b2c7-3d0bc9487537", "text": "flyover top down birdseye view of Atlantis "} +{"id": "3003616", "video_name": "756b24df-bd10-5ad2-a97d-9ceedb5a2a13", "text": "mystic libary in a castle, candles, bird in cages "} +{"id": "4003098", "video_name": "a4bf8b14-b038-5b57-be05-5ad0ec0b2a00", "text": "One orange male chicken running very fast in front of a village house, it is full of stamina, the morning air is cold "} +{"id": "3004165", "video_name": "ab334054-f733-55fe-a75c-4a907f107c5e", "text": "bob schneider in a tuxedo going floating above the crowd screaming "} +{"id": "0003598", "video_name": "402e8fa2-4219-53d5-9600-61fc49e37463", "text": "superman flying high above flying airplane around CN Tower sunrise, moving clouds high speed time lapse, zoom out, cinematic motion, uhd "} +{"id": "3005620", "video_name": "d6ed5abe-5b75-5170-bba4-73b29d26d1bd", "text": "The lights of the city gradually fade, creating a silence "} +{"id": "7004487", "video_name": "3a68cfd9-112b-541d-b355-bd51976ba875", "text": "The dragon cat eats a shrimp with its paw against the background of a star. realism "} +{"id": "5001823", "video_name": "9c56e5cf-1b15-535d-9dea-a2a93002972a", "text": "As blue t shirt and shorts Sam reached the old lady in the railway track , he discovered that she was blind. "} +{"id": "8002160", "video_name": "bee0d98a-d11a-55ba-b303-fa7eaae21ab7", "text": "3d, 4k background of flowing numbers algorithim metrics Message: ALGORANGE (Font: MODERN) "} +{"id": "4004073", "video_name": "07af6b01-79ba-5433-9ec5-c0b2e04d8893", "text": "A university of oklahoma football player holding up his hand in the fashion of a number 1 while scoring a touchdown "} +{"id": "1004728", "video_name": "57afe93e-a4af-507c-87f5-88e44e975a32", "text": "an Indian girl on the beach running with a blue sky wearing bikini "} +{"id": "7004336", "video_name": "f2545941-d9eb-5a7f-be1c-187ac804a526", "text": "an cup of coffe in a simple minimalistic environnement, beige shades "} +{"id": "3004917", "video_name": "0c4c82c0-f5ef-59ec-b373-25c5c7d04566", "text": "make a picture of two men crossing their arms while looking down at the camera in a black puffer jacket and make it gta graphics "} +{"id": "1006352", "video_name": "744d735d-2a30-5d15-a484-31259efebe89", "text": "early morning, cloudy day, cars are passing through the highway. "} +{"id": "0003491", "video_name": "3e7c3913-2d8e-5553-acfc-466f60b6244e", "text": "1girl, solo, blonde hair, open mouth, ribbon, hair ribbon, shoes, vest, smile, , shirt, long sleeves, short hair, bloomers, spread arms, full body, red footwear, looking at viewer, white legwear, black skirt, red ribbon, red neckwear, socks, white shirt, 4k, ultrarealistic "} +{"id": "3006576", "video_name": "e614ef91-8305-5f20-9bc9-1f8aeb631015", "text": "in the foreground is a lush green meadow surrounded by majestic trees, and in the background you can see the peaks of the mountains, shrouded in soft clouds. In the center of the frame is the smiling hero of the video, standing next to a cute rabbit. "} +{"id": "1003335", "video_name": "3d5fcad0-54b1-5771-8a0a-192a0ea505db", "text": "Bank vault doors slowly opening . pixel art, retro graphics , retro game "} +{"id": "8003673", "video_name": "6d8299fa-2d5b-5908-b1d1-a5c34e678a08", "text": "a bike jumping over a cloud "} +{"id": "2003666", "video_name": "b7ba54e4-0bfa-5531-bb5a-aed66b9b89f6", "text": "guy asking for coffee at cafe "} +{"id": "0006733", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "the strong empire of the king, Xie "} +{"id": "0005657", "video_name": "1ed1634f-d445-5341-8f17-233b1dc965b8", "text": "cinematic low light portrait shot of woman sitting in front of screen, that show surveillance recording "} +{"id": "4004404", "video_name": "888aac8f-82a7-5bcb-8d87-ce727a548cef", "text": "an amazing prototype of a litmus rotating planet "} +{"id": "1006397", "video_name": "752ca08f-2dfe-52aa-a19f-f980de0a93f8", "text": "dragon flying over paris, realistic video, 4k "} +{"id": "4004939", "video_name": "550ff4e3-9fe0-5d76-a870-d32866668417", "text": "A boy in armor, riding a horse "} +{"id": "8002227", "video_name": "17fdd341-6b31-5714-939b-1a126d3f7761", "text": "the prince searching the shores for his mysterious savior, longing for her return. "} +{"id": "3004170", "video_name": "5304343b-ed35-580b-95c0-e557cea958b8", "text": "Present the main character, Marco, and his quest for answers about his future in life. Highlight his concerns and the reason why he decides to visit the Tree of Wisdom style pixar "} +{"id": "7003804", "video_name": "5ae5f55a-f142-5131-a13c-ead652fda47a", "text": "2 boys jump into river of crispy fried chicken, sunset, forest, minimal realism "} +{"id": "4002309", "video_name": "83eb0ace-4005-58de-b773-f8cd83e8dc4f", "text": "nine golden dragons pull the stone coffin "} +{"id": "6004636", "video_name": "a513dd40-1c66-5f39-b563-c98c7224a05d", "text": "client of an automotive workshop receiving on his cell phone through a WhatsApp link a detailed report on the maintenance status of his vehicle with photos, videos and comments and a detailed budget for approval "} +{"id": "2005361", "video_name": "67bbbb1b-5f4d-5076-a109-b1f05f305608", "text": ":very advanced anthropomorphic robot woman walking fast to me "} +{"id": "7003245", "video_name": "1f25cf27-31c7-5d95-82ca-7a1fa640d0ca", "text": "a girl is eating a cheesecake "} +{"id": "1005102", "video_name": "5e0f991d-7e75-5eb6-8801-725cd9fb67cd", "text": "doctor in white coat plays piano in senior home "} +{"id": "2006938", "video_name": "fb6ccc8a-a3d0-5d7f-81aa-fd9717686412", "text": "Create a realistic video of lord hanuman enjoying games on his smartphone "} +{"id": "2006849", "video_name": "e989aafc-33e8-5601-a4e6-47dd9170090b", "text": "logo for a wedding decor companay calles Allwins decor "} +{"id": "8001443", "video_name": "759ed753-d9cb-5a45-b02f-49723dce88bb", "text": "two Kalaripayattu practitioners engaged in a thrilling sword fight, surrounded by a blur of swift, precise movements., with cocunut trees in background "} +{"id": "1004198", "video_name": "4da20104-0102-50b7-82d0-66610cf12cd7", "text": "The eggplant dips itself into the bucket of milk to help protect it from the sun rays "} +{"id": "7002898", "video_name": "6029ff42-adb4-577b-aa38-10c03efe7865", "text": "a Cinema about Messi in a Cartoon Look where he raises the world Cup and an Underline which is the magician. "} +{"id": "0004900", "video_name": "111d7200-9046-5db1-8da4-6e6b5405d99a", "text": "I am an entrepreneur from China "} +{"id": "0004525", "video_name": "0a8a63dc-bf08-59a7-9fed-4cd23a8c8872", "text": "he young girl runs through the streets of the city, and as night falls, the neon lights on both sides of the streets gradually light up. This symbolizes the pursuit of dreams and inner passion. Elements: City streetscape, running, neon lights, day to night time lapse. "} +{"id": "3004897", "video_name": "fdc132ac-d830-5ebc-9407-dc35ac05caee", "text": "One human eye. Orange\u2013yellow iris. realism 4k "} +{"id": "8003504", "video_name": "746dd936-7780-501a-bdd5-ed64188ed899", "text": "everhthing, everywhere all at once movie scene "} +{"id": "7003846", "video_name": "54e98c5b-f84b-5ada-9710-cae957f2749a", "text": "Draw three paint cans, one red, one green, and one blue, spilled on a brick floor. "} +{"id": "0003597", "video_name": "4025b272-b7b6-547c-99e3-61ada85c7bcb", "text": "godess saraswathi devi Message: open eyes (Font: MODERN) "} +{"id": "7003576", "video_name": "b89ce302-c0f9-5979-97ee-21062633bf3b", "text": "epic angle unreal engine render if anonymous faceless cyber pilgrim wandering in the desert of the seventh vail , full moon rising, distant sun, burrito apocalypse "} +{"id": "8003046", "video_name": "b4364a25-bc02-538a-8e78-faa25adf6559", "text": "a dinosaur is eating another dinosaur in a restaurant "} +{"id": "3006224", "video_name": "bf8e786e-15e8-55bb-a515-6ec88489e7a9", "text": "going down a waterslide into a pool in a basement scary dark "} +{"id": "2006456", "video_name": "d1bf5150-1490-587d-ac2f-a6f8d71ca6d3", "text": "man facing the ocean, feels like a evening sunset "} +{"id": "1006222", "video_name": "722247f2-d5e1-552b-b148-bc45e371b232", "text": "Once upon a time, as the sun said goodbye, it was time to say goodnight to the forest friends. "} +{"id": "2007043", "video_name": "4749ab17-9bee-5d14-99df-fd76be98c1ab", "text": "a photorealistic video of a mushroom boy, running in a grass field "} +{"id": "1003016", "video_name": "376d75b2-aa93-5c90-a320-12b78fd15a1e", "text": "beautiful indian young women convencing another women inside village house "} +{"id": "7004219", "video_name": "01356f8b-a2c1-5a71-8f74-ba6add4c7844", "text": "grey cat chasing a mouse like disney animation "} +{"id": "3005425", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "animation of a dj performing in an enchanted forest, studio ghibili style "} +{"id": "6002744", "video_name": "4b15b3d3-e593-5038-94b6-49d7eb55bea7", "text": "a quiet shadowy environment with whispers of pain in the air, portraying a sense of haunting sorrow. "} +{"id": "0006475", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "the earth shiffting into the new earth, and if you arent in line with vibrations of the earth shift, you get left behind. so make sure your true to self . and true to the earth. "} +{"id": "8002703", "video_name": "a8cf6b48-0481-52d2-9d62-b83aed642a23", "text": "the Allied powers used inflatable tanks and planes made of rubber and canvas to deceive the Axis powers into thinking that their forces were larger than they actually "} +{"id": "6004729", "video_name": "f407777f-a4ca-5573-b87b-ad2d195e8df2", "text": "Amelia whispers to animated animals, enchanted trees revealing secrets around her \u201316:9 motion 3 "} +{"id": "4003960", "video_name": "e86c66e8-d113-5b28-ba4e-ab6e9b7b239d", "text": "Girl from behind that missed her last train home like visual novel "} +{"id": "3003074", "video_name": "7407e443-3241-56eb-afff-6889dee7ca1a", "text": "robots and people walking together back view "} +{"id": "3006978", "video_name": "22daf4c7-0041-539a-8dae-2bee787f1471", "text": "Scientist running from chasing bull inside bullring "} +{"id": "4002716", "video_name": "39fee5c0-8c52-5917-9e67-f12118746aa9", "text": "IRONMAN walking with a smile. Hands moving. Eyes blinking "} +{"id": "8003745", "video_name": "7a569af5-f496-5dcb-8840-f531f9198a54", "text": "Establishing shot of A landscape with a tree "} +{"id": "7003057", "video_name": "2cf7a95c-2917-5912-843e-9cb39f17a5a1", "text": "create a fusion sphere with greenscreen background for use in chroma key , high details with cinematic lighting, high quality 16:9 "} +{"id": "0005996", "video_name": "24b5dd1b-6d3f-568c-83a7-69409d87dba4", "text": "Clips of friends playing together, sharing snacks, studying, and celebrating birthdays "} +{"id": "7002762", "video_name": "746e7b4a-5607-5e1a-8b70-13a27f61128c", "text": "3d animation of a cartoon Mandebulb talking through a large moving mouth with funny lips in the fog and rain "} +{"id": "3003147", "video_name": "0656b9f7-9ea0-503f-98d2-bac04254814f", "text": "Navy carrier sinking battle, cat struggling and holding on wood, war "} +{"id": "0005040", "video_name": "139946dd-e4dc-5d47-90f8-c5f64eb5f905", "text": "two girls sitting at the edge of a moutain watching the northern lights "} +{"id": "3004938", "video_name": "94576e8b-36b8-5bf8-bada-8c0a5c240a7d", "text": "football hitting the back of the net "} +{"id": "7002939", "video_name": "bf3a5757-3c54-5950-bff0-9311118fd04d", "text": "A bird flying in the sky, gibhli art "} +{"id": "3006593", "video_name": "8a56eb41-e9ee-53fa-80f3-e1c2d6a26311", "text": "reveal 2024 numbers behind tall buildings, with fireworks "} +{"id": "5001794", "video_name": "4697bb63-9f63-5ffe-bd7c-708e3c20fd7d", "text": "lady is walking in the dark "} +{"id": "4004148", "video_name": "f2e80b9b-c8bc-5032-8b05-5b6081f47d15", "text": "an analog style video of a japanese crane bird "} +{"id": "2006934", "video_name": "4da310b7-1269-5fb5-a588-98fc03f1b476", "text": "Lord krishna with little smile 16.9 "} +{"id": "8002769", "video_name": "3e67b4b6-c8ce-5d0b-bef1-04f3f6d94436", "text": "The man stops and looks out over the horizon, assessing the desolation before him. He grips the hilt of his blade with determination "} +{"id": "7003712", "video_name": "0483592e-16d9-5909-92dc-89396005ebab", "text": "A man in a white shirt and blue pants stands in front of a chart. He is looking at the chart intently, and his face is filled with concentration "} +{"id": "2007753", "video_name": "03c7e247-63c8-52a3-bcbd-462f243e4e8b", "text": "sun in the galaxy and other planets orbit "} +{"id": "7003146", "video_name": "c7012647-4ec0-5dbb-9f17-b8b69fb49385", "text": "a princess with black hair, bright eyes and her lion friend, disney style, pixar style "} +{"id": "6003783", "video_name": "3e0c970d-c586-5eb4-adc5-ce0158d3ea15", "text": "outside is raining weather. Gilr is writing your home work, and looking camera sometimes. Table lamp sometimes is turn on and off "} +{"id": "1004015", "video_name": "4a6a62c1-3e6a-5ebe-9b06-9e07d0bf7ad0", "text": "mike the situation talking to girls at the jersey shore, realistic "} +{"id": "7002810", "video_name": "e444ba39-664b-536a-95d9-28234841ae71", "text": "I want a couple cartoon faces talking with rick and morty , man is brown hair with green eyes and 198 cm tall , the girl is black short hair , black eyes and 160 cm tall . "} +{"id": "2004575", "video_name": "c45f43df-323e-5009-b8be-dead3c4507dc", "text": "a robot is cooking food in mars "} +{"id": "4003315", "video_name": "d49ac007-e13b-50fb-a974-2ee3b713fbd4", "text": "Young Ashoka displaying intelligence and curiosity in the royal court. Elements: Palatial setting, interactions with parents and mentors, a glimpse of his early education. "} +{"id": "8003078", "video_name": "afb4c6db-15a7-55b8-9fc5-deea0a6e2c1c", "text": "anime style attack on titan, attack on titan fight szene against a titan, "} +{"id": "2004210", "video_name": "979e41b5-9162-5813-8c58-dbc3e57a143e", "text": "A cyberpunk robot look for the sky "} +{"id": "8003785", "video_name": "3926a1cf-03d9-53fa-86b7-961bb456615d", "text": "A wide frame from above, the camera moving closer to the city of Baghdad "} +{"id": "3005463", "video_name": "9169288f-c348-5b03-a66c-e56de7def98c", "text": "Death of the West in a 1960s French film "} +{"id": "7003578", "video_name": "1a307ad6-c304-5565-aa21-33f6ab36582e", "text": "time flowing slowly, 4k, ultra surrealism "} +{"id": "1004073", "video_name": "4b88390e-7f25-59cb-b641-696f487c4928", "text": "create pixer toddler playing with the phone "} +{"id": "8002743", "video_name": "733adcc0-5554-52b6-a8fd-61e050a40055", "text": "a field on mars growing with earth in the background "} +{"id": "3004806", "video_name": "64961ed0-cae1-553d-bf7a-db101ed6cefb", "text": "The incense burner peak is glowing purple under the sunlight.The Purple haze flows. Surrealistic style.Hyperrealistic style. "} +{"id": "6003384", "video_name": "52583f31-b7cf-58dd-9e22-fea96b07fb5c", "text": "superman Christopher Reeve fly on cow "} +{"id": "4004835", "video_name": "53b0a229-6e52-5088-8c57-815678460a6a", "text": "a teenage girl performing laboratory tests, showing her face "} +{"id": "1005539", "video_name": "65ef1a6e-594a-5a51-9b2c-3c492b341096", "text": "fighting between giant dinosaurs and Smaller. 3D, high resolution "} +{"id": "1003383", "video_name": "3e558e45-fac5-5d74-8950-79d982b1a564", "text": "A baby elephant the size of a human palm, held up in the hand for display, long shot, anime style "} +{"id": "3003725", "video_name": "84310c00-5002-56af-a521-f404e561a8c2", "text": "create a realistic 4k image of an angel of death "} +{"id": "2006172", "video_name": "beae6e0f-e6f9-5373-a068-447a4c0c0245", "text": "people handing tickets at a concession stand "} +{"id": "0006766", "video_name": "32ad33ec-3f81-599a-9196-3b546859a1a4", "text": "a flower being eaten in a businessman in Tokyo tripping on acid at tea ceremony. He is doing the YMCA. 8k ultra realistic in the style of national geographic. "} +{"id": "6002884", "video_name": "a22f35ac-c389-5461-a42e-20d3bd17860c", "text": "happy child with an ice cream "} +{"id": "0004761", "video_name": "0ed9002e-e7d9-5e27-ac4a-1b68e8107278", "text": "lawyers in court Message: 1 Attachment "} +{"id": "4003063", "video_name": "dec3c4b4-7043-5635-a79a-e837c98a65a1", "text": "an anime woman interviewing another person at a coffee shop "} +{"id": "2003374", "video_name": "a2c90c45-48e0-5a2c-887d-32fca864d3e8", "text": "However, linguistic differences between the Onges and the Sentinelese, exacerbated during the 19th century when the British brought Onges to North Sentinel Island, indicate a significant period of separation. "} +{"id": "8002688", "video_name": "c222775a-a97d-55fc-9a9e-1d4005daec7c", "text": "I imagine a sleek, graceful cat with soft fur and sharp, intelligent eyes. It moves with an air of confidence, its whiskers twitching as it takes in its surroundings. The cat is playful and curious, yet also possesses a sense of tranquility and independence. It may curl up in a cozy spot for a peaceful nap or pounce on a toy with boundless energy. It radiates a sense of mystery and elegance, embodying the timeless allure of feline grace and charm. "} +{"id": "2005151", "video_name": "bc42d8d3-d6cb-5bb9-bb0d-69011eefd8d6", "text": "a cooking room in the beautiful house "} +{"id": "7004071", "video_name": "e38f47a0-5e95-59b0-9be2-5bfdccb0e49d", "text": "A cute cat is crying in a cozy room with its eyes blinking "} +{"id": "8003558", "video_name": "0a1a1eea-4484-5668-882a-13ea98daa2bd", "text": "Generate an video showing a person being flattened under immense pressure with extreme heat "} +{"id": "3003869", "video_name": "59e23c1a-bacf-544a-a26a-75b92493f7b2", "text": "Lion struggles to break free the trap, his roars for help echoing through the jungle. "} +{"id": "0005541", "video_name": "1c83d234-e09f-5e85-8263-1b45f39ac5a4", "text": "man walking to his house in a neighborhood with white houses "} +{"id": "4003340", "video_name": "6ce8f0c9-aff6-5f22-86f4-6428ef45cd4d", "text": "a beautiful sunset with peaceful view of relaxing heart. "} +{"id": "3005660", "video_name": "29375abc-da4c-5e39-aed2-b33009207f13", "text": "The room is filled with warmth and coziness, the drapes are tightly closed, creating a pleasant twilight. sits and reads a book "} +{"id": "3006960", "video_name": "dcf2d767-6d37-5f8b-a16d-f00cfcaf2556", "text": "a 10 second video loop of geometric shapes evolving "} +{"id": "4002220", "video_name": "0e6933d1-7d60-5776-bc15-355c3c7aad59", "text": "A very beautiful heavenly landscape. Ten angels are praising. "} +{"id": "6002876", "video_name": "6661e63b-58bd-512f-93d8-5bec79ac21bb", "text": "Salman Khan in a superhero movie "} +{"id": "4004771", "video_name": "1584a185-907d-5da5-9c27-e6c9eaa7c0ba", "text": "A tv screen, The weather channel, a weatheman points at a map of the country, storms "} +{"id": "3006747", "video_name": "e4122e8e-0895-551c-8823-88551492e997", "text": "John Burningham and Pascal Campion animation of a bar where poeple drink wine "} +{"id": "1004892", "video_name": "5a6758c9-0d35-539d-aa2b-e7f24946effe", "text": "a video of 5 most iconic Mayan Pyramids "} +{"id": "5001147", "video_name": "43207da2-a835-5439-8f71-344a0e736cb8", "text": "a short anime movie, 1 minute long "} +{"id": "7004990", "video_name": "aeb656fa-5540-516d-8d03-0a4232e3e631", "text": "lord durga mata coming to indian village in the night with tiger "} +{"id": "5001326", "video_name": "16e755f3-fc59-5b2a-aa4c-5bfc3ca4005c", "text": "the bear springs very dynamically and attacks from the fog "} +{"id": "3005401", "video_name": "7b55510e-2171-5ff6-ad35-ab5a9edd401f", "text": "An angry brown bear throwing a big stone, rear view, green background "} +{"id": "4003573", "video_name": "fe1310fc-1e25-5b5d-85f2-fd6fa790be72", "text": "blood cell flow in the vessel, closeup "} +{"id": "3005344", "video_name": "5063d3c8-4a44-5989-805d-45008fa08bc4", "text": "a drone recording to jesucrist in jerusalem "} +{"id": "2004895", "video_name": "5d305acf-04ee-5417-be99-700fd20ab8ea", "text": "a bodybuilder is flexing in the gym aggressively "} +{"id": "1005062", "video_name": "5d893325-15ba-5250-b651-5a85bab9c5d1", "text": "A beautiful girl being hunted by the villager "} +{"id": "2005206", "video_name": "3a7a46e7-d231-57a8-838b-5515469984bc", "text": "Anjali appears hesitant and worried, while Kartik seems intrigued and drawn towards the mansion "} +{"id": "6003018", "video_name": "ae781d2d-ad17-5cf5-a396-a3925a420ecb", "text": "large stealthy male figure jumping from building roof top to another building roof top in a large city at night "} +{"id": "1004636", "video_name": "5637da66-e361-57c7-94b9-7cf9f051941b", "text": "a 1960 super8 film about a pregnant woman crying in the front of the window watching a floating umbrella "} +{"id": "6000001", "video_name": "b0d7889c-c711-51ef-89d3-228372ebfb9d", "text": "the litlle mermaid swiming in the beach "} +{"id": "4002904", "video_name": "5b6684eb-4574-5088-b77a-c4a4e8509d25", "text": "cats song and dance on concert hall "} +{"id": "6004651", "video_name": "f8ce9221-7f6d-593e-b273-69c3c83362d7", "text": "Businessman both hand empty and looks like receiving,4k,Animation. "} +{"id": "0003100", "video_name": "3700d51b-92d5-5ef4-b8d7-8d8b32ebde2c", "text": "Iron Man, light red style, floral Surrealism, Surrealism Pop, edited illustrations, David Hockney, High detail, HD, 32k Message: 1 Attachment "} +{"id": "1006500", "video_name": "76fdcfb8-7f3d-5c15-a4ed-59d34a21c409", "text": "a puppy wearing an ghost white sheet sitting under an orange tree. "} +{"id": "3006682", "video_name": "72402663-577b-51f0-967f-1fd3300d96e4", "text": "a dog is snowboarding at Tahoe "} +{"id": "2004191", "video_name": "0d40d08a-36cb-5cb6-ba48-150b8b3ad195", "text": "barbie looking up, big eyes, open mouth, hair moving style stop motion henry selick "} +{"id": "3003312", "video_name": "398e978e-354c-5a10-9a31-4c0e3b0c6983", "text": "cut cat playing in the flower "} +{"id": "3005987", "video_name": "6bb2d44d-25df-5ce8-b526-5d85ec9e2df1", "text": "beautiful woman lies in hypersleep chamber box, transparent box, futuristic design, in spaceship, inside box woman breathe makes weak smoke, because cool, hyperrealistic, high resolution 8k "} +{"id": "3006991", "video_name": "460df0c8-c353-5c37-b1fe-34c124d1d55d", "text": "80s roller skate with green screen "} +{"id": "1005056", "video_name": "5d6f570f-030a-54ee-b85a-dde627418330", "text": "a painting of a woman with flowers in her hair, beautiful fantasy art portrait, trending digital fantasy art, beautiful fantasy portrait, digital fantasy art ), exquisite digital illustration, stunning digital illustration, digital art fantasy art, digital fantasy art, digital art fantasy, colorfull digital fantasy art, exquisite digital art, by Anna Dittmann, in style of anna dittmann "} +{"id": "4003949", "video_name": "6005ab7a-216a-5acc-aea5-02bd756a2a90", "text": "Atomic bomb explosion in Hiroshima, filmed by drone, with 35 mm canon camera, cinematic look, Johfra Bosschart style. "} +{"id": "0004730", "video_name": "0e378030-f961-5976-9382-3703cc2b9ef2", "text": "The hero Thor from Scandinavian mythology flies away from the planet Earth with the help of a space bridge called the bivrest. Colorful. "} +{"id": "2007452", "video_name": "1f002ce6-9d28-510d-aca1-016122396b18", "text": "mini girl running for president in a road in Philippines "} +{"id": "7002466", "video_name": "0d3d4c20-cd8e-5657-8e7d-e3e6cefcfb5d", "text": "fortune teller using crystal ball and gem stones in a room full of tarot cards "} +{"id": "2007959", "video_name": "3c74a920-115d-5648-b043-c5b54d0cf598", "text": "ceace full, colour full cloud moving, house, green mountain,forest, summer view "} +{"id": "2006248", "video_name": "5fe97fac-3340-5526-a6e8-0d9c51350e5b", "text": "two young adult girls are talking to their father in a restaurant while he is holding a purple flower "} +{"id": "2005750", "video_name": "fc65235b-397f-5f57-a4f1-33699e764f6c", "text": "Dinosaur Valley Flourishing: Dinosaur Show the valley transformed into a place where friendship and bravery flourish, with dinosaurs of all sizes living harmoniously. "} +{"id": "0003052", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "an old man writing a blank book in the forest "} +{"id": "7002286", "video_name": "dd984adf-e0a4-5b91-8002-43c9489805d2", "text": "a short 6 second addvertisement , advertising proofreading and editing . just images of some documents spanning with transitions , catchy , fun animations . aspect artio 1:1 "} +{"id": "1005554", "video_name": "66429a1a-5744-5f3d-b665-006fa9e950db", "text": "indian village womens gathering around women "} +{"id": "3004253", "video_name": "d0ee9564-30b6-527e-856a-ab3898a95e2e", "text": "a toaster with arms and legs dancing to electronic music in a crowded nightclub "} +{"id": "0003428", "video_name": "3d5fcad0-54b1-5771-8a0a-192a0ea505db", "text": "Bank vault doors slowly opening . pixel art, retro graphics , retro game "} +{"id": "0003997", "video_name": "014fb780-2809-591e-8b55-cc25a2e2a2d1", "text": "drow Spy girl fighting against Kelemvor paladin, 4k, cinematics, dnd, zoom "} +{"id": "8003565", "video_name": "9f3ada97-8890-5ef6-b89b-35baedf82bf5", "text": "a man sitting in a chair looking at his phone screaming "} +{"id": "5001738", "video_name": "95f9da74-aec9-58a1-a2dc-18f3af82379c", "text": "meme video about carry minati and mr beast fighting over pizza "} +{"id": "8001398", "video_name": "4ce25120-715e-56d2-89b7-1a14db5c3d7e", "text": "chocolate chip cookies and data chips falling down Message: data cookies (Font: SANS SERIF) "} +{"id": "2004759", "video_name": "4ca0ffa3-7fbe-55c1-ae94-0dbd6fbddb39", "text": "man who is sad and regrets his life "} +{"id": "5001554", "video_name": "98331b6c-6b1e-5b96-af26-49d3c908c70a", "text": "slow motion video Cheese cake with some candles with red roses "} +{"id": "1003352", "video_name": "3dc9ab2c-a4fb-53ef-aeae-362b3809e78e", "text": "She spent her days grazing on lush grass and nurturing the "} +{"id": "2003594", "video_name": "3f8267bc-c940-5af9-9dc6-a41b0258dac4", "text": "sexy lady ware short frock, she walking in the morning in the side of the road, she has red color umbrella. "} +{"id": "2007083", "video_name": "5ec6b0df-a593-5554-b8ab-002e5a952922", "text": "grainy footage of the basement, 1970s horror "} +{"id": "3004308", "video_name": "548c2c69-4d9f-5415-a1d3-b87f9d99de5e", "text": "A panda wearing a bathrobe is having breakfast at the dining table "} +{"id": "7002598", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "krishna in the mahabharatha battle field cinematic "} +{"id": "4002880", "video_name": "bb5e3ffc-b3b0-5163-840f-306707cab318", "text": "As she wandered deeper into the woods, Lily stumbled upon a small, quaint cabin. The sound of laughter and music drew her towards it. It was the perfect place to rest and warm her rosy cheeks. 3d, Disney Pixar style, High quality, 8k ultra "} +{"id": "4004657", "video_name": "2c7cf4e1-eac6-5226-b5df-6d145be44ffa", "text": "\u201cIn a whimsical world of elves, one small and curious elf journeys through the enchanted ranks of his kind, from crafting shoes as the cobbler sleeps to baking cookies in oak trees, until he discovers his true calling in the heartwarming chaos of Santa\u2019s bustling workshop, where he finds the magic of giving that transforms his life forever.\u201d "} +{"id": "5001711", "video_name": "bba457c2-ac10-5fda-85d5-3d7e25244aad", "text": "M R I DA A TEXT LOG "} +{"id": "0006333", "video_name": "2acb01fd-96e5-58e9-a8ea-ddf9c791b2ca", "text": "photograph, L USM, Velvia (hugo weaving) eating spaghetti, (dynamic composition, dynamic scene 1.025) , alligator skin frame, accent lighting, film camera, canon 5d mark 4, Nikon Z9 "} +{"id": "0006150", "video_name": "27603806-0bee-5987-bb0d-ca766ff9e9d8", "text": "animated boy with simple graphism happily imaginin to visit a beatiful city with a beautiful perspective "} +{"id": "3005053", "video_name": "002d4c7a-855f-580a-b480-f7a19eb2eed9", "text": "lady running down path in a jungle "} +{"id": "1006084", "video_name": "6f891f6f-a80c-5069-be66-216312491a27", "text": "grey fox taking,its hair are blowing by wind and its stand very deep and foggy forest. "} +{"id": "2007456", "video_name": "d0a98e4a-004e-59ab-83b1-8b388a24246f", "text": "The dove is touched and happy to receive the golden egg "} +{"id": "0003835", "video_name": "444809b3-7b41-5d7d-87b3-9037bfa9d041", "text": "a farmer who turns off his phone, looks at his phone like a merchant "} +{"id": "2007267", "video_name": "603bfafe-ad2e-56d1-90b4-d8eed0e60de4", "text": "Berlin Alexanderplatz camera rotates very fast clockwise "} +{"id": "2003395", "video_name": "662acd0e-f0bc-5680-94a3-a30a17b1b6b5", "text": "The scene of intertwined fungal hyphae and tree roots\uff0cLight points flow between the roots and hyphae\uff0c symbolizing the exchange of nutrients and information "} +{"id": "7004979", "video_name": "62d6a31b-f511-5d41-b5f2-df9bd0a6752b", "text": "nepalese girl dancing in the nature "} +{"id": "2003728", "video_name": "1e2d2590-0bde-5b68-b63f-0b175c3ca8bc", "text": "Dark Night. Drama. Cyberpunk. Movie. top floorlooking at empty city street "} +{"id": "8001330", "video_name": "7f0e680d-fead-5f2a-91f4-242fd9efa4ba", "text": "unicorn dancing on a magenta cake in a yellow forrest "} +{"id": "7003243", "video_name": "20a2a20b-70a9-5214-a25d-5a59deb6cc99", "text": "A flying airplane similare to an insect, flying around buldings in a city "} +{"id": "0005475", "video_name": "1b6bb7cb-4fbd-572f-9823-320ccd71af43", "text": "Alien King holding court in 1000ft room 8 k, shot with Canon EOS R 5, photographed in a Canon EOS R5, captured on canon eos r 6, Soft lighting and focus, shot with Nikon Z9, 8k artgerm bokeh "} +{"id": "5001118", "video_name": "466e5d66-f270-50fc-8433-879283cb45c4", "text": "elonmusk Message: achieving success (Font: COMICS) "} +{"id": "7002338", "video_name": "2f48be7a-e075-56aa-8f6d-9dc811538fde", "text": "raining in a camp of flowers "} +{"id": "2005691", "video_name": "c3304dbc-da9e-527e-85e6-553480ff6738", "text": "create a channel banner Message: 1 Attachment "} +{"id": "1004931", "video_name": "5b29b4ce-fae7-51be-84ec-f151a402e444", "text": "Description: Create an image depicting a scene set in the late 19th century on the island of Timor, with influences from Dutch colonial architecture and indigenous Timorese culture. Include elements such as missionaries arriving on the island and engaging with the local population. Keywords: Dutch colonial architecture, missionaries, indigenous Timorese, late 19th century, interaction. "} +{"id": "2004338", "video_name": "c4bc12c6-f2ce-5762-bf22-1e2a0e988a3b", "text": "a space cat flying through the galaxy "} +{"id": "0006945", "video_name": "35ac16f8-4522-5f18-8c8f-656f648a9ec8", "text": "It was snowing heavily in the sky, and a beautiful woman was dancing in the air. "} +{"id": "8001360", "video_name": "8fb5e0b6-3a85-5552-bbb3-d2d4851d4021", "text": "lily . gently reached out her hand, and to her surprise, the hen nuzzled her fingers affectionately. cartoon style "} +{"id": "2005734", "video_name": "afe2e69e-2ba9-5b14-80c8-4c887fa5dad9", "text": "a man is fling for sky using help of aeroplain "} +{"id": "0005153", "video_name": "15ace988-f49d-5016-b9bc-7fe4dc9215cf", "text": "a small r2 d2 robot in the anicent ruins with lot of destroyed robots around disney style 8k cinematic "} +{"id": "1004439", "video_name": "521d0fb8-a9a6-5d01-ae45-e32e7c0cbb93", "text": "A 1940 silent film of a macabre Woman sleeping in the darkest part of the woods, bad quality, film grain, ambient, eerie "} +{"id": "5001057", "video_name": "c02d6457-3f20-55b1-aad6-3ab4b0b5d2c5", "text": "noor the cute and beautiful princess bend toward a small and cute fairy "} +{"id": "3003567", "video_name": "9acbf73e-86ca-5200-83c5-b03cbcb774aa", "text": "a old man walking in the high way "} +{"id": "5001372", "video_name": "8cbe2389-4021-5b5c-bb3d-cb4916b4fff4", "text": "an walking in track Message: 1 Attachment "} +{"id": "2006434", "video_name": "35610971-10c7-500d-a4f8-7b0e11afdae3", "text": "The figure remains still, hair flowing, flames swaying. Message: 1 Attachment "} +{"id": "8001780", "video_name": "d0aaf9a7-6626-5a2d-87c8-dc47bc98b40b", "text": "a pink teddy bear dancing in barbie world "} +{"id": "0004020", "video_name": "01a0237a-1106-5324-9484-bc6b0fae880d", "text": "Marcus Garvey marching in a parade amid rainstorm surrounded by cheering crowds black and white video voluminous clouds "} +{"id": "0004680", "video_name": "0d3da4bc-1abf-5e87-bb85-170d397935c3", "text": "future Greek God purple eyes, lightning storm, 4k ar 9:16 "} +{"id": "6002808", "video_name": "0bd31991-08ee-54c7-a507-b0a55a5364bb", "text": "illustrate a dragon and raccoon find a glowing chest in the forest "} +{"id": "6004483", "video_name": "1e1f778a-1574-5c9c-8780-ef6dccc2d902", "text": "I came to the waters edge, the frozen landscape was hauntingly empty and desolate. Apart from the sailor who floated lifeless and slowly past. His skin was blue from exposure to the extreme cold. "} +{"id": "7000002", "video_name": "86b97016-e9cd-531d-8005-abbc1fc98b0a", "text": "the girl in the Wight rising her hand and touching the tiger "} +{"id": "7003066", "video_name": "67dc0dc5-c07b-54b5-9d8a-759d354cb7f2", "text": "create Jesus in Tallinna city Estonia 4k best hyper quallity and detalied and olviste church "} +{"id": "5001836", "video_name": "27a64ad3-c867-574c-ad49-9744848b6845", "text": "super 8 footage of black floating jellyfish in the forest "} +{"id": "3004639", "video_name": "a0dc8d99-7897-52e0-977a-ed097fa232c0", "text": "dungeon siege 3 jeyne kassynder in the spire bailey "} +{"id": "6003554", "video_name": "24ad1803-34e8-56fa-8578-a1717dc22f51", "text": "Hundreds of people at an auction, Gotham city style "} +{"id": "2003815", "video_name": "bb5f3671-9ef5-553e-9e99-92eadeb20432", "text": "astronaut on mars climbing a ladder "} +{"id": "1005852", "video_name": "6ba50638-d12d-5e63-9e78-069ee816f408", "text": "a 30 year old man wearing a hospital gown and oxygen mask sitting up in a hospital bed scratching themselves frantically "} +{"id": "8003306", "video_name": "f57fd080-b5b5-565b-b763-89c44f26a74a", "text": "tractor driving in the field with rotvator "} +{"id": "3006575", "video_name": "ed2f75c1-e6a5-5b3c-a254-6caea93cb5e0", "text": "a sad man rides a train and looks out the window "} +{"id": "1004546", "video_name": "546b73a2-7741-5800-af91-e7d079055e78", "text": "Inside the house, a long, dusty hallway with peeling wallpaper and eerie portraits hanging crookedly on the walls. "} +{"id": "2006992", "video_name": "187979ca-497e-5d51-99d8-3ffe103df21a", "text": "Their first stop was the town library, adorned with twinkling lights and tinsel. Mrs. Thompson, the librarian, welcomed them with a warm smile. Lily, Jake, and Emma were eager to discover the secrets of Christmas, so Mrs. Thompson led them to a corner filled with festive books. "} +{"id": "2003584", "video_name": "302e8a0b-0e92-53d3-acb5-fddab9fedd4e", "text": "winter. road. forest. A white training car is driving along the road. "} +{"id": "1005478", "video_name": "649ebec7-61de-5569-9d1c-2a91e8666a02", "text": "cloudy forecast, tornado in the background "} +{"id": "3004415", "video_name": "ed5bcca7-1eb1-53c5-a6c6-122ec094d7b0", "text": "burning piece of paper sitting on a dust wooden table "} +{"id": "7003238", "video_name": "aace52e8-e3b0-5b28-9c5d-d25fcc92fc17", "text": "slow track inn movement with thunders in sky "} +{"id": "4003780", "video_name": "fc19b9ba-7d99-50fd-bfdb-e7e4c848db05", "text": "Money at the top of the pyramid, above the whole world "} +{"id": "2005939", "video_name": "995839c3-5cc3-54cd-9a35-77d86aee171f", "text": "distributing of destructive things dark saky , electronic items, "} +{"id": "1005761", "video_name": "69f97659-3eff-5159-ab22-ce526aa02eef", "text": "a cool snowy mountain in a globe with white background "} +{"id": "4004857", "video_name": "79ddd724-bb75-592e-9078-d1e8c378b199", "text": "Show a montage of humble farmer Day turns into night as he digs deeper into the earth. "} +{"id": "8001944", "video_name": "53ea01b7-905e-54be-82d7-871ffff631d3", "text": "A Dragon egg of fire, born a dragon and he burn all forest "} +{"id": "8002562", "video_name": "427b8546-8dc5-57fa-b51e-4f1f364eb562", "text": "weeping willow tree in the backyard with a pool, shimmering water. ar: 16:9 "} +{"id": "0006185", "video_name": "27d7e37d-8050-522c-b533-c38f8baa4a7d", "text": "Classic Xianxia style. The library of the Immortal Academy, in addition to the classics and drawings of immortal cultivation techniques "} +{"id": "5001164", "video_name": "a402f6fe-403e-5293-84ce-33f81dc1a53d", "text": "Porsche cat driving down the highway at breakneck speed. "} +{"id": "4003109", "video_name": "e81c5937-7658-588d-8203-b1d2bccf9269", "text": "Darth Vader is sitting at a table in an Imperial war room and talking. Lightsaber on the table. Stormtroopers in the background. The lightsaber shines on Darth Vader from underneath. "} +{"id": "4004947", "video_name": "7989b293-12a9-5718-9d5e-2b5ffe971925", "text": "repentance and releasing the pain of eternal suffering "} +{"id": "7004695", "video_name": "cd0b45f2-cfaa-5dfc-92b6-d6ea4a733fa4", "text": "Lionel Messi dribbling a football through the Madrid city with 11 football player follow him "} +{"id": "1005165", "video_name": "5f0fd713-f1c2-5901-b1d0-7686b2035fce", "text": "The mountains bear witness to the saga of unity and courage of these legendary predators. "} +{"id": "0006689", "video_name": "311ed527-9da7-5dd0-9001-d7fc79871a8e", "text": "daenerys targaryen healing from her injury created by Jon Snow with Dragon whistle "} +{"id": "0003277", "video_name": "3aa7891b-0efd-5e9c-b41c-ab8db9563908", "text": "beautiful computer with lights, with rtx 4090 "} +{"id": "7004260", "video_name": "71052f92-e0cc-54a5-afde-e9d3894ffd39", "text": "indian village street dog sheru, in stunning 4k resolution, with detailed 3d animation "} +{"id": "0005394", "video_name": "1a01ee41-cd0c-57e6-aa66-ce573189c839", "text": "a panda wearing a medical gown "} +{"id": "3005346", "video_name": "edb11373-3b3c-5cb0-bcc6-7b625edebc3d", "text": "the image of a dark and creepy setting of an alien and a man, in the style of light purple and magenta, gigantic scale, neurocore, rhads, vibrant illustrations, 32k uhd, jon foster "} +{"id": "1003102", "video_name": "39243e5a-c6bf-565b-8890-e3abc966356b", "text": "message: the moving tentacles of a kraken surrounding a moog synthesizer, golden hour, hyperrealism, close up "} +{"id": "1004300", "video_name": "4f7f88f9-29d9-549c-9088-02c41f697a5b", "text": "Detective Sam, a smart and friendly detective with a magnifying glass in hand, is introduced "} +{"id": "3004054", "video_name": "4519e9f5-b318-5c7d-9afe-e70157360a8c", "text": "no clouds, white egg big white egg rolling out of a big tree, disney style.onto the ground "} +{"id": "4004656", "video_name": "7ae4351a-dd61-5332-b3f6-aea9d740f989", "text": "1920s vintage roflecopter with whirling helicopter blades is rescuing beautiful people from a volcano Message: roflecopter (Font: MODERN) "} +{"id": "2003251", "video_name": "e403dc81-e78e-5c42-a433-c1cfb5ab0d5a", "text": "manifesting magic from the implicate order "} +{"id": "8001840", "video_name": "1a2333a2-5d3a-5fd6-9de0-00c08bfe5360", "text": "college girl collaborating with robot to write a story "} +{"id": "2006337", "video_name": "3e875a16-7852-5aee-86af-c2bc4c918232", "text": "black and white Message: Ninja Fu (Font: MODERN) "} +{"id": "2007859", "video_name": "4e89c618-643b-5526-b529-3b7696e7be4e", "text": "a dog serving beer at an old western bar "} +{"id": "2007386", "video_name": "11ef65af-1be9-5fa8-a73e-265cb62b2f22", "text": "jesus driving a motorcycle on fire 4k "} +{"id": "5001871", "video_name": "56b236e4-a04b-5899-baf4-9c9b27e26f01", "text": "people are going to ready to fight "} +{"id": "2007117", "video_name": "fe2f8e63-18ee-5890-aca4-5507bdaa487a", "text": "1970s american football helmet painted green with stylized tyrannosaurus logo on the sides, realistic, zoom in "} +{"id": "6003065", "video_name": "dd837cd5-189d-5d23-821a-47a93da4a741", "text": "a group of soldier in a paddy field preparing an ambush "} +{"id": "1003294", "video_name": "3c9d858c-f49f-57de-bf1d-b467a1c3293b", "text": "Harvesting Gratitude with Navratri: A Rural Perspective! Create an informative video depicting how Navratri is celebrated in rural India as a gesture of gratitude for a bountiful harvest. Explore the cultural significance and rituals in farming communities. "} +{"id": "1003513", "video_name": "40e68dcb-843d-5eec-b44f-963cdef74577", "text": "A Boy Tht Looking In The Sky Bei Nite And Sea Ader\nGalaxy. And Is Tieme Traveling There "} +{"id": "1005660", "video_name": "67fa00d4-2bf1-5b4e-b76a-a0515fb8abcd", "text": "The health of the bulls was excellent due to the variety of plants, leaves, and grass they ate in the forest.kids story "} +{"id": "8001416", "video_name": "4e89cc63-ce00-5d56-9b3f-bf506b2b41e1", "text": "in the dirt crawling and an girl comes out in a sunny day "} +{"id": "6003691", "video_name": "760d33eb-8c51-50dd-91d7-1564b63b2769", "text": "a rainy day with rainbow on the mountain view "} +{"id": "4003051", "video_name": "a3c7a8f6-b45b-5e51-8013-06f223ee432f", "text": "prompt: fox like pomeranian and Shih Tzu with grey and white fur, playing and chasing each other, Pixar character style "} +{"id": "2003724", "video_name": "ad107162-c16b-5011-86d7-8358c217310e", "text": "macro flesh skin teeths tonge hands starts a fire, 4k, cinematic "} +{"id": "4002909", "video_name": "fab2d7e9-eeb3-5e4d-b70c-379b7750bdf5", "text": "rich man talk colorful daylight around mountain "} +{"id": "2004444", "video_name": "c39cc756-b950-5e2e-a90f-5e57363ee056", "text": "beautiful couple hiking through green mountains "} +{"id": "3003553", "video_name": "e7e7de30-f84b-5633-9881-6eeebb006c0f", "text": "wojak losing money in crypto at a computer, cinematic and dramatic "} +{"id": "7003017", "video_name": "56710b46-619b-528b-bbb8-230ae4eb4f46", "text": "green screen man running, for video Animation "} +{"id": "3006041", "video_name": "e7b818f8-f77a-5b1a-b889-fc4f500237e3", "text": "Imagine a 16 year old boy riding a bicycle on a very dark street, 2D animation style "} +{"id": "4003825", "video_name": "4bd02484-d2fd-5e0d-86d2-9efd06be421a", "text": "a boy is laughed by his firends "} +{"id": "7004600", "video_name": "d93e4d8b-d5fa-5dc2-8830-fbcc15366c28", "text": "beautiful mountains and rivers Message: AIVATAR (Font: MODERN) "} +{"id": "3003260", "video_name": "25d64ea1-1236-59f0-bffa-7f06f523f0b3", "text": "a realistic detailed video with HD quality of a city burning with blue fire "} +{"id": "4004084", "video_name": "d18d2b44-8743-56d0-964f-948f5d4c0958", "text": "Bambi walks in the park of Yosemite, and find a cave in front of it. "} +{"id": "2007055", "video_name": "3bbe5e31-9a35-50d1-bb25-5e36ea0f9243", "text": "rabbits driving in a car through midtown manhattan "} +{"id": "4003211", "video_name": "1b79ae8f-dd83-5c3a-82e6-e36aafcefccf", "text": "an iphone sprouts arms and legs and walks off a desk and goes to work at the cell phone store "} +{"id": "3004160", "video_name": "86f51a4e-4a68-585e-b3c2-a4639a61903e", "text": "wizard casting a power on a wolf in a medieval street, 3d animation style "} +{"id": "4002815", "video_name": "a7e8ca10-2332-5bdc-acf3-e61c8ed40233", "text": "maxima the man taste the sweet freedom denied to him for so long under the sky "} +{"id": "2006613", "video_name": "9ea7f0e7-585a-56d2-914d-8491d1f2b43c", "text": "hearts exploding in the blue cloudy sky "} +{"id": "0006110", "video_name": "26c379a4-c719-5fbe-8ac9-0e82da4ae857", "text": "Make an image with a green background and writing on the front that has the following message: "} +{"id": "0006963", "video_name": "35ece90b-9e00-5668-93d5-0ac805bc89a2", "text": "sports man eat ice cream in saigon vietnam, sunset hour, 4k, film camera, kodak portra "} +{"id": "4003229", "video_name": "4fd6ed7c-875c-5cd7-86b7-24367814d5ea", "text": "Make a video clip of a pink panther running on the beach "} +{"id": "0004942", "video_name": "11f8bc27-6b93-5048-80e1-f225a5b75b45", "text": "The old tailor who says this is the wheel "} +{"id": "2004238", "video_name": "d646c797-ac61-56b8-8f2f-5fdf63c2ecd2", "text": "sharp focus, high detailed, Sakyamuni is sitting in meditation, 4K, HDR "} +{"id": "5001274", "video_name": "88002720-6513-5af7-b85d-e9205c5a742c", "text": "opening gift box with musical intruement and music sheet inside "} +{"id": "1003672", "video_name": "43a0f928-5859-553f-b6bc-c77ef99fc7c3", "text": "a car driving down the drive way high speed "} +{"id": "8003554", "video_name": "17fc2c6e-f1d8-5c88-9171-6393b96c0c66", "text": "Man sitting in a bunker in the desert "} +{"id": "0006260", "video_name": "299057d7-4d17-52ff-ad61-9e7e14901eba", "text": "Liminal space hallway creepy unsettling strange surrealism dreamcore Message: THE (Font: RETRO) "} +{"id": "0003466", "video_name": "3e0d773d-185d-5288-8312-78067df84495", "text": "woman wearing an opaque white flowing gown walking on small shards of broken glass Downpour of crimson drizzle "} +{"id": "2007590", "video_name": "b6633321-5265-5778-bb7d-30f1b1512b90", "text": "the butterfly emerged but had a swollen body and shriveled wings. It could hardly move. "} +{"id": "3004441", "video_name": "3c61b704-d05e-5400-8d5c-c840ffa116c4", "text": "Two people are chatting, blowing the wind ,8K "} +{"id": "5001198", "video_name": "2827b120-f9a9-5355-acf3-6dd66504e0c3", "text": "a robot in a spacecraft shooting a laser gun at an alien "} +{"id": "0003319", "video_name": "3b8e9292-53ca-58a7-8d1f-0276e7e13b80", "text": "hair slowly waving and beers clinking, aa wind, hands do not move, the hair of the man on the left is curly "} +{"id": "7002650", "video_name": "97c95878-c50e-5cb3-8d0d-ace93f751b8b", "text": "Create a video of an atomic bomb blast. The video should start with a shot of a desert landscape. In the distance, there should be a small town. The sun should be setting, and the sky should be ablaze with color. The video should then show the atomic bomb blast, including the mushroom cloud and the destruction of the town. The video should end with a shot of the mushroom cloud, slowly fading away. "} +{"id": "1004069", "video_name": "4b7abbe1-28d5-5f91-9d6d-b1acbdf77f12", "text": "The days turned into weeks, and the boy devoted his time to taking care of the injured bird "} +{"id": "3006858", "video_name": "947ef562-ef6e-5b74-ae26-36a2556a4399", "text": "In the vast landscape of creativity, a new force emerges \u2013 the synergy of Artificial Intelligence and Graphic Design "} +{"id": "1006053", "video_name": "6f237749-73c3-5385-a8e3-077b9df94a67", "text": "sophisticated fighter spaceship, Star Wars style, at airbase, sunset, cloudy, on Tatooine planet, vivid colors, intricate shape "} +{"id": "3005380", "video_name": "122984b4-6dcf-55af-b774-dbfea1f4057d", "text": "two elves smoking cigars in a mysterious planet super realistic "} +{"id": "6003739", "video_name": "e699611d-f237-52db-9edf-c597d4d20f8f", "text": "Draw a person in a helicopter filming with a broadcast camera from below. "} +{"id": "7004213", "video_name": "5b9f88f1-9f18-513c-a210-b52581d6af6b", "text": "The displacement of Palestinians in 1948 had a profound impact on the collective memory and identity of both Palestinian and Israeli populations. For Palestinians, the Nakba is a defining moment in their history, symbolizing their loss of homeland and the longing to return. "} +{"id": "1006141", "video_name": "7083de87-e130-54d2-a2c5-7897329e54f2", "text": "cartoon animation 3D 4k Once upon a time, in a vast and colorful jungle, there lived five very different but inseparable friends: Leo the lion, Robbie the rabbit, Benny the bird, Barry the bear, and Ellie the elephant. They had grown up together, their bonds forged through countless adventures and shared experiences "} +{"id": "4003706", "video_name": "873a335c-b781-52ad-a9c9-64c311447da8", "text": "inuit super hero tintin style cartoon "} +{"id": "7003054", "video_name": "71202f6c-cd30-5659-b412-7cd99afa13e7", "text": "suburban rioting, mob violence, exploding buildings, suburbs, frantic action "} +{"id": "0006027", "video_name": "25449a24-f786-50da-87d2-49d01d1889a8", "text": "1950\u2019s technicolor cinema western zombie movie intro with the title reading Dusty Rust Ride On "} +{"id": "8003268", "video_name": "e40698e6-d824-5021-8aab-7246b3875b68", "text": "A 25 year old man with buzz cut hair red shirt and green trousers looking at a space craft passing by in the air. "} +{"id": "7002753", "video_name": "2ff877f5-15c6-5391-9915-d1e87ae8d0f9", "text": "Vintage footage of a Beautiful Angel and a stron knight walking through a marsh and they see people dancing in the water "} +{"id": "3003969", "video_name": "b9a3c81e-2422-52c8-946f-a3a2bdcd2605", "text": "arealistic cobra, camera zooming into the cobra "} +{"id": "7003795", "video_name": "efb9e57c-ad95-5f38-b1b7-a38a41556c42", "text": "stonehenge and we fly among the stones "} +{"id": "6003738", "video_name": "f9602879-378e-5b7c-8a38-e9dfdbf8d8c0", "text": "A chamomile field of yellow daisies, a ladybug crawling around the flowers, complete realism, detailed drawing Message: 1 Attachment "} +{"id": "2007220", "video_name": "63412b4a-9d54-5b20-8c41-99cff23a24aa", "text": "king alfred the great of wessex sit on the throne "} +{"id": "0006827", "video_name": "33b870c1-8281-5f84-a5fa-e759b7f98bf9", "text": "create a realistic video of nature, 4K, Full HD, Realistic "} +{"id": "0006111", "video_name": "26c705d4-1e06-5c1b-9795-031e1f16a8c9", "text": "Yellow waning moon that shines in the night "} +{"id": "3006126", "video_name": "37ad1380-8527-5792-8602-088072cb2f0e", "text": "In the quiet of the night, I search the stars above, Lost within my thoughts, seeking solace, seeking love, 4K, HD, Cinematic, photorealistic "} +{"id": "8003416", "video_name": "f774ef2e-76a5-58df-bb18-6277ad174268", "text": "Top 30 Trendy and Professional Hair stylist outfits ideas 2023 "} +{"id": "0004609", "video_name": "0be20016-4c6a-56f3-8f6c-a3c2651e5717", "text": "replace the bird by a grizzly bear. Keep the unidentified person next to the bear. Theres a lot of wind and makes the bears hair move with it. "} +{"id": "1006388", "video_name": "74d2a3f4-9b49-5642-b0d7-4d73dd204676", "text": "a pika labs ai tool show up "} +{"id": "1003032", "video_name": "37a1a3c2-95f2-5a46-8cb5-9b3abd6f559c", "text": "A beautiful blond girl walking and being admired from male onlookers "} +{"id": "6003754", "video_name": "fd3449c8-a3d9-5a43-919a-adbd335da681", "text": "a birthday video for amalia my doughter with a teddy bear animation in andy wharho style saying i love youl "} +{"id": "3004214", "video_name": "ab42a73e-6dbe-536f-88ad-42a4aa209271", "text": "a cat eating ice cream zoomed out raw video "} +{"id": "2005913", "video_name": "66c87176-cde0-5af0-8a9b-30cb5873bb1e", "text": "City with heavy traffic car ,ligth effects "} +{"id": "3003116", "video_name": "aee1492a-8255-5f02-8e97-c4a5a904a8a0", "text": "Strawberry bear, pink candy, cute. Fantasy, Cartoon "} +{"id": "5001002", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "timelapes , recorded from boat Message: 1 Attachment "} +{"id": "3004195", "video_name": "c70f4b60-b089-56d5-976a-c8bcfafca066", "text": "create video to many animal in the zoo "} +{"id": "8001713", "video_name": "819975ef-e5a5-5fbf-8f6e-4bab3450b899", "text": "word written in the sand at the beach, waves moving in and out Message: PALAST (Font: MODERN) "} +{"id": "4003592", "video_name": "826a5768-bf0c-57d5-9873-9868b7d82b26", "text": "animated squirrel living happily in a dense forest with many trees "} +{"id": "8001249", "video_name": "3460d47d-f979-57a6-aa5d-edf8fb152d04", "text": "girl nature Message: new girl (Font: MODERN) "} +{"id": "3003319", "video_name": "021fcedf-d9d9-5805-ba88-dac3d4d47b21", "text": "genshin impact Message: renzo (Font: MODERN) "} +{"id": "2007532", "video_name": "91edbcde-c03e-5503-add9-cd65676998d4", "text": "Design an image of Jack and Jill laughing together while walking up the hill again, showcasing their companionship. "} +{"id": "2006331", "video_name": "ff61b91c-ea2d-57eb-8e35-5028370b44b0", "text": "Video of soccer players scoring with 30 seconds left "} +{"id": "5001593", "video_name": "7ba4e4e6-db17-58cf-9951-c709e34f1b10", "text": "Generate a war battle in the style of a sand show "} +{"id": "8003143", "video_name": "119fbbd2-5f1e-5132-b2b3-1a597bf54c34", "text": "Room of time like dragon ball z anime "} +{"id": "5001312", "video_name": "3288a84b-6cdb-5e2f-8a9c-1051385343f8", "text": "sacred winter garden with a mysterious tree "} +{"id": "0005455", "video_name": "1b085d36-2532-52e6-88d8-119a3914d72a", "text": "Dancing Winter Kids in a colorful snow storm , facing camera , cinematic, Discolight, fast Motion, "} +{"id": "0006472", "video_name": "2d187009-f479-5ac0-b6dc-72c9e464d78f", "text": "a graceful fairy with shimmering blue wings and a dress made of petals and leaves stands with a delicate smile "} +{"id": "3006098", "video_name": "13284fdd-f446-523f-a6ec-cefb6a2542b0", "text": "Leo is joined by his best friend, Lily, a playful lioness. Together, they embark on their journey, leaving the familiar jungle behind. "} +{"id": "3006613", "video_name": "2d25e201-374f-58c6-a7d1-1dd2bc676cc3", "text": "video of a young man in his 20s driving with a woman in her 50s in May "} +{"id": "2005321", "video_name": "70163169-286a-55d2-94a3-08285926f6be", "text": "a 12 second video of A stunning photorealistic photograph of a handcrafted pottery vase, delicately painted with intricate floral patterns and glazed to perfection "} +{"id": "5001992", "video_name": "0e86e8ba-d98a-5842-85a6-bb110cac680c", "text": "This character stares straight ahead while blinking calmly and slowly slowly next to the palms of his hands while he continues looking and blinking slowly.image:OIG.y9RpkZhy1gE0.jpg "} +{"id": "8002605", "video_name": "dae242bd-fd6d-5325-a822-eca08a4d82eb", "text": "there is a seaside view with sunset light and a light breeze that moves the leaves of the sakura tree near the street. There are two dolphins jumoing in the sea "} +{"id": "3003840", "video_name": "6e8fb224-705c-5c5c-b52d-7e5892b7ddbb", "text": "a big wave hitting a rock at sunset "} +{"id": "4004493", "video_name": "56baf37e-b048-5329-909d-74200c359752", "text": "Conclude the image by depicting animated generations of humans and animals living harmoniously in the forest. Show animated characters representing the past, present, and future to symbolize the enduring balance in 3d animation style "} +{"id": "1006301", "video_name": "735c8ec7-a131-5149-8e1b-803f31104e2d", "text": "Bikini beauty, Bust 90, Waist circumference 60, Hips 90 "} +{"id": "1005817", "video_name": "6ae5bc54-b7d6-54ab-93c3-6f7903f5ad27", "text": "YouTube channel intro title words NM Amusement background arcade game machines "} +{"id": "0004616", "video_name": "0bfd4573-b895-5b9b-b2e2-6047a2b8d91b", "text": "a little story. 1 scene: bird flies against a window and is dead. 2 scene: a human puts a sticker against that window. 3 scene: the same bird as in scene 1 flies, sees the window with the sticker and is alerted, so he evades the window "} +{"id": "3003630", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "a magician walking in his forest, enchanted he cried, 4k "} +{"id": "1005947", "video_name": "6d3decae-a80e-5b92-b3ec-50cd43028468", "text": "teen, reading book in room, sitting, background window, bed "} +{"id": "0005515", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "make this man talking and moving his head slowly "} +{"id": "7003422", "video_name": "c84865db-8f54-5e16-be88-a783a2af64bb", "text": "Exercising pregnant woman on a Pilates ball by the sunny sea "} +{"id": "0004281", "video_name": "06517249-9af6-5d9e-996c-0baa24c98017", "text": "pov walking through tokyos streets ; motion 4 "} +{"id": "2007189", "video_name": "e80cdb39-0580-54e6-b282-54751bac04e1", "text": "many people from different sports are standing at the stadium "} +{"id": "2003132", "video_name": "028c7524-94f2-51d8-8bd5-34fc222abbe8", "text": "mocumentary interview frankenstein, 1980s horror movie style, cinematic, "} +{"id": "4004778", "video_name": "8205ac3b-129f-5b52-8103-26248cc58f88", "text": "dark background white text of an X thats clean and futuristic "} +{"id": "6002939", "video_name": "deb0f8b6-bb5f-511d-ba4c-65455189dd47", "text": "beard men realistic painting colorful lights v3 8k realistic, "} +{"id": "6004781", "video_name": "faaa11d2-704f-57fb-a5fd-00edfe0b42f4", "text": "A man meditating in front of a planet with the universe in the background "} +{"id": "8002453", "video_name": "9adac29e-ff39-584d-b772-6855f826b028", "text": "Love at First Sight\nMaria glances at Luca with a shy smile, and he notices her.\nThey exchange a few glances, and Luca plays a melodious tune on his guitar. "} +{"id": "4004186", "video_name": "1b56cb81-db84-535f-a841-ddd81ee40db3", "text": "image of a sword in grass terrain "} +{"id": "5001135", "video_name": "91934d06-1cc0-5c97-9f38-7daf72c4dea8", "text": "A futuristic journey took them to a world where robots served tea. "} +{"id": "0006746", "video_name": "3232fafc-0d95-51ac-8050-6d7f1d7d48b7", "text": "looking back ,eye blink Message: 1 Attachment "} +{"id": "8002018", "video_name": "46e7e377-ed1c-59ef-b051-52f55752366b", "text": "generate a 3d low poly model scene of an african marketplace surrounded by kids playing football "} +{"id": "2003027", "video_name": "197ff85c-3873-5097-a4ef-2a47f6ba552e", "text": "A daily news service on TV with a woman speaker "} +{"id": "6002778", "video_name": "0ca8763d-1211-5e47-8c4c-002c79b46bae", "text": "beautiful pear shaped body women anime "} +{"id": "2005837", "video_name": "6e573007-0812-5c48-9c3a-10d7d2b9c7bd", "text": "lady in white walking in a dark forest "} +{"id": "5001172", "video_name": "d43a269f-cc86-57cb-9bcf-5ca49cbda61b", "text": "Burger spinning on its axis and steaming. "} +{"id": "3003406", "video_name": "599ef95c-fdaf-5242-bf50-e7aa67a2c7d0", "text": "a one armed hiker walking away "} +{"id": "2005090", "video_name": "2dcf5937-1278-5239-9981-bc89cb6f885d", "text": "A man runs away from an angel "} +{"id": "8003845", "video_name": "b65227b4-e39a-5a07-8ae9-7fd497a2b6a0", "text": "I want a logo with the name (Nart), green in color, and an animated black and green background "} +{"id": "2003512", "video_name": "0a4deb34-6ab1-5839-844e-9341dec40f55", "text": "The wizard at his desk, quill in hand, candlelight flickering, hyperrealistic, scene fellowship of the ring, shadowplay, point of view, dramatic lighting "} +{"id": "2003299", "video_name": "6408f1c6-f62f-5b96-add1-920daa230aea", "text": "ghost castle ona hill in the woods "} +{"id": "3004849", "video_name": "0ab97b7a-7b7a-5d2d-9c31-a939d79c1f21", "text": "piramids of mexico Message: 1 Attachment "} +{"id": "7002228", "video_name": "228fad2c-293a-5fed-b5b1-2eea32a82c88", "text": "There were some white clouds in the sky Message: hu guan (Font: MODERN) "} +{"id": "0005468", "video_name": "1b5422b0-8127-56ec-b128-d52ca0f63563", "text": "werewolf over the moon on a foggy night "} +{"id": "5001260", "video_name": "83f2c94f-fb47-5005-a8fc-03d4adccc420", "text": "water flows around rocks at a shore. Clouds float majestic in the background "} +{"id": "8002401", "video_name": "64da82a5-fd42-52dd-b3df-08b8b2a74673", "text": "wind blowing trees and butterfliies flying. wimage:1703410160420.jpg "} +{"id": "3006264", "video_name": "019cd22e-770f-5455-88ea-4d06adfd9bc3", "text": "The fridge is completely packed with food, sausage, cheese, caviar "} +{"id": "5001892", "video_name": "079644db-0a3d-598f-a5c5-02ef1dfb1cbc", "text": "et the image be same but add animation of this man speaking using some hand movements and sometimes blinking the eyes ; make it like 15 seconds long Message: 1 Attachment "} +{"id": "4003413", "video_name": "397d9cc2-b57e-5ca9-a231-11edec084914", "text": "cinematic lighting;beautiful girl;Running from a distance to the front of the camera; "} +{"id": "4004980", "video_name": "a67badfb-b742-5803-84bb-9d113f069054", "text": "As the Eastern Roman Empire was thriving, the West was inching toward its eventual fall. However, before it fell to the invasions c. 476 CE, it faced one more opponent: Attila the Hun, the scourge of God. After he ravaged the Balkans in 451 CE, Attila crossed the Rhine "} +{"id": "8003215", "video_name": "b67c0d59-9a74-5c1a-b965-db15b0a899bd", "text": "Invent a face veiled in shadows, with eyes that gleam with an enigmatic intensity. Add intricate, dark markings that flow along the contours of the face, suggesting a connection to ancient and mysterious forces "} +{"id": "6004008", "video_name": "a4750922-f8d8-577d-b519-0fcc3f78a0fa", "text": "Transparent background. Letters are made out of textiles blowing in a breeze. Message: Agenda (Font: MODERN) "} +{"id": "1003568", "video_name": "41cd0a2f-4060-5069-9836-a11ca2e39697", "text": "An idol dancing on stage, a customer waving psyllium "} +{"id": "0003018", "video_name": "35ac16f8-4522-5f18-8c8f-656f648a9ec8", "text": "It was snowing heavily in the sky, and a beautiful woman was dancing in the air. "} +{"id": "3003141", "video_name": "78c45c9e-2992-53c9-b282-eaece38552e3", "text": "A cozy evening with the night sky full of shining stars. Drawed style. A panda sitting on a tree swing "} +{"id": "1004490", "video_name": "533b5ad8-f144-5223-a8c8-2b9cd44d01a8", "text": "singer tiger walking in the middle of a jungle at night in 3D animation "} +{"id": "7002763", "video_name": "b9fd2eea-186c-57f2-a0eb-b485bd5843d4", "text": "A classy english ai butler dressed in a business suit. 8k,3D animated style. Dark gray background. "} +{"id": "1003931", "video_name": "48928ea1-0ee0-5c9a-8541-ded9a8627e9c", "text": "car crashing on road, fast motion "} +{"id": "4004665", "video_name": "b4c8d528-8967-5d44-820e-580c440d34c8", "text": "A small alien looking pitbull growling with glowing blue eyes "} +{"id": "4002382", "video_name": "3f1c9fbe-5123-529d-99e3-307f6e9ff046", "text": "a red sunrise in the mexican desert "} +{"id": "4004332", "video_name": "751672d0-60e7-5bee-9278-f9dbaddb8a15", "text": "Make character smile and turns head "} +{"id": "7002101", "video_name": "90f7657e-54fd-578e-b6c9-7e87dedb0b3f", "text": "a man and a woman walking together in shanghai, camera behind her, cinematic, realistic lighting, realism "} +{"id": "0004444", "video_name": "092f2403-2bc8-5674-a7df-8775d1dd0a0f", "text": "realistic rabbit riding on sports motorbike avoiding snails on road "} +{"id": "4004216", "video_name": "8aa84037-b5d9-5d75-a6ec-5c70615b7094", "text": "a demon walking street, anime photorealistic "} +{"id": "2004727", "video_name": "9fc6f9be-7765-5c86-9616-124a43bd80d5", "text": "a sleet company factory with workers with saftey and woking environment "} +{"id": "8003196", "video_name": "d1243ffc-bbdb-54d3-a83a-7b698452b344", "text": "1890s Sasquatch in forest with a group of men "} +{"id": "2006038", "video_name": "74731065-423e-5b57-ba9b-477f18c0ff07", "text": "hawaiian coffee beans, high resolution, ad format "} +{"id": "4002073", "video_name": "9c218eb8-8584-58eb-bd75-732e89ee63fb", "text": "cinematic film, in a fairyland, a beautifal full moon in the sky, moonlight pass through leaves, forground with beautiful flowers "} +{"id": "2007686", "video_name": "57ce6fd0-fec7-55dc-adff-5612895ab6af", "text": "An ancient graveyard, tombstones covered in moss, graves overgrown with weeds "} +{"id": "2007514", "video_name": "efad5747-41ee-5345-9049-3bf01ac00acc", "text": "cats Message: Klaj is the goat (Font: MODERN) "} +{"id": "6004454", "video_name": "c5d287b7-a99e-56c3-b601-e7c64a8134da", "text": "Due to which the nerves and cells of the neck were significantly damaged. The neck bone was also found broken. After which a detailed investigation was conducted into this death and Shu was considered the culprit of his death. "} +{"id": "6004914", "video_name": "4784670d-f538-5a05-822e-7c4270358170", "text": "fishes swimming, wave, coral and seawes moving, light slowly moving "} +{"id": "4002726", "video_name": "98698b08-0612-57ff-9cc7-bedc97029a5c", "text": "anime style gibili, small sparkles falling from the sky in the moon light on an egypian city. "} +{"id": "4004551", "video_name": "ba7c8b67-c99d-5f31-8a4d-39842ab500f4", "text": "a man who is successful with hard work and patience "} +{"id": "0004167", "video_name": "0463b136-7087-5bfa-aeef-7b16d0d0e7ce", "text": "An image of the main stage at the Eurovision Song Contest. The entire picture is full of a lot of red and black imagery. Lots and lots of red and black. There is a black eagle which represents the eagle from the Albanian flag. "} +{"id": "2007236", "video_name": "29dfc63c-4cc8-5387-a796-cfadd1146476", "text": "robotic Batman fighting shadow in Gotham city, cinematic, 4k "} +{"id": "8001246", "video_name": "1e67801a-5b31-50a3-857c-028d7522d9b4", "text": "a woman staring into the dreamcore landscape in a lucid dream "} +{"id": "1004381", "video_name": "50ea2cce-8133-50d4-a6c8-78cb69f49a71", "text": "A mother and her daughter lying in a shanty next to a bridge "} +{"id": "3005347", "video_name": "ab664fc4-202b-5513-b286-996cc31e6906", "text": "employee sitting at a desk, surrounded by papers and graphs, "} +{"id": "6002594", "video_name": "26c94d27-ee66-5ed0-b305-dbf61440b1ad", "text": "a ceo with a human soul "} +{"id": "6004571", "video_name": "890ff854-d3f2-5459-9d14-5b95b5b6c8b2", "text": "There was even an example of such a pigeon directly saving lives, through delivering an essential communique when there was no other way to pass the message along. The pigeon, named Cher Ami, had been incorporated in the US Signal Corps alongside 600 other pigeons and sent to France to support communication in World War One. "} +{"id": "8002689", "video_name": "f8ebe6b6-805f-5455-9967-97a07bdc0f38", "text": "New Fire AI Video for Anime Version "} +{"id": "3005522", "video_name": "ce426175-85ce-5ba8-ae4f-7db497a24531", "text": "cut of meat with a lot of tomato that can be seen in three dimensions "} +{"id": "6002446", "video_name": "1b4ff86e-eb22-5f3d-b0c8-65cdd22f2243", "text": "make them perform squats, vid should me 30 sec log, natural movement, 16:9 Message: 1 Attachment "} +{"id": "2003656", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "anime, a band plays at a martini bar, camera zoom, motion 2 "} +{"id": "1005365", "video_name": "629e2af6-50c7-5d84-a2e2-8651c6111eed", "text": "A dog saves a little girl in the forest "} +{"id": "4003337", "video_name": "3d3e0297-7a72-5ca7-b675-63acb26f8a96", "text": "Create photo portrait with man, zooming with ring transformer at the center,cinematic, street, raining, dark ambient, cinematic, 4k "} +{"id": "3005588", "video_name": "270e38ef-86b1-5924-adbf-897bd587fd90", "text": "A woman cuts a honeycomb and then drips forest honey into a glass "} +{"id": "1004557", "video_name": "5498d960-fbac-5975-b53d-93864db644ad", "text": "viewers of wrestling show applaud in stadium, cartoon style "} +{"id": "3003572", "video_name": "306a0b08-cc83-59ef-b522-04973f076cb0", "text": "Craft a compelling and informative video showcasing the impact of anger on our body. Explore the release of adrenaline and cortisol, highlighting how these hormones boost muscle strength for a temporary period. Ensure a visually engaging representation of the physiological process. "} +{"id": "7002196", "video_name": "b17336f3-eebe-5bdf-91db-773a6aa90e82", "text": "A charming woman lie on the ground Message: on the ground (Font: MODERN) "} +{"id": "8002304", "video_name": "fc3cd7b0-68d7-56b1-9aac-837725963a11", "text": "an official called the telephone operator in an angry tone "} +{"id": "1006999", "video_name": "8010a0ad-f4a6-57d4-9f21-eaf0bee82988", "text": "Druids with goat skulls in desert Alfred Stieglitz black and white 1900s "} +{"id": "0003073", "video_name": "3679513f-5b50-5abd-a584-783de078d339", "text": "In the dusty streets of Casablanca, Morocco, lived Adix, a passionate metalhead. His heart beat to the beat of the powerful guitar riffs and thunderous drum beats. The metal music "} +{"id": "2006739", "video_name": "c50de4b3-bd3a-51c9-866e-b53ffa97fa91", "text": "Begin with a scenic view of the charming town where she and her dog live, highlighting its peaceful and harmonious atmosphere. "} +{"id": "3004814", "video_name": "c3e6f7a3-80c6-5d80-8eb6-88f043478713", "text": "A sexy black silk beauty took a picture and wrote this "} +{"id": "1005201", "video_name": "5fc68f60-3900-56c9-8e75-fa2003bef5e2", "text": "Illustration of an ice cream parlor with a variety of ice cream flavors displayed. There are options like chocolate, vanilla, strawberry, and more, each depicted in mouthwatering detail. "} +{"id": "0003115", "video_name": "374ffa50-dbf6-5ed0-b02f-dd5bebe37053", "text": "CIELO CON DRAGONES Message: ALVARO (Font: MODERN) "} +{"id": "1004608", "video_name": "55ca885a-9a33-5336-8a7d-9b354c80e40a", "text": "Rick and Morty 60fps fight scene.\nPop art. "} +{"id": "1005238", "video_name": "605a4432-6422-5737-9683-ccca6c81a0f2", "text": "Wearing a tank top Message: 1 Attachment "} +{"id": "3006731", "video_name": "80b22da5-9c85-55b4-8008-45883f95d49b", "text": "In the forest, the rabbit stands in front of the lion in a friendly and amicable manner. "} +{"id": "8003843", "video_name": "44d36c3a-2375-53db-8cbc-d9ba1cc3b555", "text": "CEO bald Clint Howard walking in the hall of the Winchester Mansion, horror film, thriller, scary, 4k "} +{"id": "0004547", "video_name": "0b0df7f4-b20a-59a3-bf62-f3bd0eebc294", "text": "A man with blue eyes and red hair sitting on a quiet train "} +{"id": "2003490", "video_name": "5bb674a9-80a0-5487-83c6-444681b6e276", "text": "Every day after school, the boy and his dog went on exciting adventures together. They explored the nearby woods, chased butterflies, and played fetch in the park. The boy loves his dog , and dog loves the boy more than anything. "} +{"id": "3004201", "video_name": "d0226993-a175-54b4-8587-1a2bca3e4720", "text": "Animated flow chart showing AI model processing data and adjusting MPPT "} +{"id": "0005580", "video_name": "1d6676b7-23c5-5431-bc97-aaf0afd07f69", "text": "a romantic beach sunset walk, with the lyrics reflecting the intense connection between two people, 8seconds "} +{"id": "0006927", "video_name": "356b3856-9bce-5857-9e2c-8ec23607bfe1", "text": "The video starts with a burst of vibrant colors swirling around the screen, creating an animated, magical effect. Sparkles and stars twinkle in the background "} +{"id": "2003748", "video_name": "7db63397-da6d-5f23-ae4d-2e33b94585e5", "text": "Barbie, with a cheerful smile, raises her hand in a friendly greeting. Wide Angle Shot captures the entire scene, emphasizing her presence against the background. Dramatic lighting enhances the ambiance, hyper realistic, detail resolution "} +{"id": "1005469", "video_name": "647c07bc-1bb1-50c7-be68-ba3d70031a37", "text": "Lines of code disintegrate as errors appear throughout the virtual environment, like cracks spreading across a wall. "} +{"id": "3005386", "video_name": "1a53bb20-1c10-504f-8bb5-8847575dd550", "text": "The legends of Sir Lancelot and Sir Gawain "} +{"id": "1005611", "video_name": "6728f910-d294-5d9b-b56f-52ced0ae7fc1", "text": "cartoon 2d video of a small 7 year old boy and his dog walking through jungle "} +{"id": "6003631", "video_name": "6815d117-cc2c-5806-9719-afce3767f4bc", "text": "all animals really like ducks because of their kindness. create animated 3d images "} +{"id": "0004346", "video_name": "077cbf46-5b2c-5680-90e6-3edc2b49c972", "text": "A man standing on a bridge in the middle of the vast ocean "} +{"id": "1003486", "video_name": "409b206b-d74c-511d-9010-bdebbcd11222", "text": "cello virtouse dies when playing the instrument "} +{"id": "7004554", "video_name": "f4e26457-de83-5b0c-a5cc-61dda6e65d2b", "text": "White lion sitting in snow. Warm bright light coming from behind and a beautiful night sky "} +{"id": "7003784", "video_name": "7a805ff9-aeb1-50ea-928e-c65b5b84269f", "text": "Peaceful village with charming houses and gardens. "} +{"id": "7004565", "video_name": "dbc7e720-79fe-5537-a89a-64617c75e49e", "text": "A wheat field in the Wheat Belt, captured aerially, with thousands of wheat plants under the sunset in the Midwest USA. The strong sunset light casts a golden hue as the wind moves the leaves, creating a scene of beauty. "} +{"id": "8003494", "video_name": "df5f6250-4bf6-591a-902a-c6ea1d973ffd", "text": "a man in a plack hood alone in the dark streets doing oushups "} +{"id": "3004711", "video_name": "89c13a3e-02ef-5a3f-bde1-7d98b6a2d76d", "text": "a meditator meditating in a suit finding peace and quiet despite there being chaos in his office "} +{"id": "1006196", "video_name": "71876c52-e9b4-524b-8b17-68f206c51547", "text": "An expansive cavern with many doors made of stone emitting blue light "} +{"id": "2004726", "video_name": "4d7b6c5a-e792-5ed4-885e-d4624c18a237", "text": "national award icon in golden look and white background "} +{"id": "0005587", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "Ronaldo and Aslan playing ball with each other, realistic ultra graphics "} +{"id": "1005898", "video_name": "6c785da0-2c01-5ea2-8884-cb3fd063b110", "text": "A typhoon surrounds the city of Seoul. "} +{"id": "8001799", "video_name": "8b860762-a83f-51a3-96a3-03f6cf89f6f1", "text": "a princess imprisoned in the towering fortree "} +{"id": "7003266", "video_name": "a8ba0b42-1a83-5bc5-85e8-f34441b812f5", "text": "scientist with electrodes on his head in a 1967 laboratory "} +{"id": "4003913", "video_name": "0ce52094-8080-54e0-a53d-a4a0400dfcc0", "text": "The story takes place on a remote alien planet, bathed in an eerie purple light, with towering crystal formations and bioluminescent flora "} +{"id": "8003914", "video_name": "eb1cce7f-70d7-51a1-a400-57393d189318", "text": "The failure of humanity seen through hole in wall. "} +{"id": "1004672", "video_name": "56d8f43b-72d9-51da-b6f1-5a5123ba455d", "text": "behold the magnificent rainbow cotton candy tree "} +{"id": "3006143", "video_name": "00f03e87-54bb-525b-ab86-3633cecabcba", "text": "the diverse pantheon of Arabian gods and goddesses, such as Hubal "} +{"id": "7003953", "video_name": "269b4120-fcc7-58b0-b26e-f0f16543174b", "text": "an asian dragon being hatched and come out of its egg shell, then fly to the sky. Background has mountain, rice field and river. "} +{"id": "2006399", "video_name": "d628f86e-11a2-5e58-9a3f-c0cd235f6b03", "text": "empty horror house and one girl and one boy enter house and night time and reail Astic image studio disney image "} +{"id": "3006307", "video_name": "d6c8d3ef-e38d-5aa8-8584-db280724243c", "text": "beautiful flowers growing out of a pool of black sludge, grow to form a fluorescent cluster which forms the word \u201c black juice\u201d "} +{"id": "3006850", "video_name": "ce2af491-d23a-5e27-9820-2f43a53dfe91", "text": "BMW car collection to travel through the desert "} +{"id": "0006230", "video_name": "28c1f5bc-82ac-5204-95e2-e2d0b402f1be", "text": "sand dunes in a desert at night, with a starry sky and snowfall falling "} +{"id": "1004219", "video_name": "4e0ffbd4-4c9c-5cce-b098-d16d71901f1c", "text": "As the camera pans up, capture the breathtaking sunrise in the background, painting the sky with shades of orange and pink and temple on top of mountain and showing valley Message: Har Har Mahadev (Font: MODERN) "} +{"id": "4002850", "video_name": "00838710-55de-5447-941a-95d304c43cba", "text": "The Pope examining a manuscript in his Private Papal Library. "} +{"id": "8003200", "video_name": "3994a272-9e92-539d-952f-d3c6edbe256f", "text": "a koala dancing and turning into toothpaste "} +{"id": "2007089", "video_name": "951fb6c6-ab9d-5c48-8a4f-9223b37d76c6", "text": "from above zoom out, machinery filtering night sky , realistic, Cyberpunk anime "} +{"id": "3006622", "video_name": "630782c3-3ce1-5e4a-ae8a-67096d4703df", "text": "young Indian beautiful fair girl reading current affairs "} +{"id": "4004360", "video_name": "deda97e9-9b69-51be-828c-562acfa16119", "text": "Hindu God krishna smile face and eye movement "} +{"id": "7004788", "video_name": "11014ea4-fa1f-5ec1-bd0f-f3ac403948ea", "text": "a man walks out of a building smirking and holding a duffel bag while the building explodes "} +{"id": "7004316", "video_name": "09752c8a-a87e-508a-aec3-bc58d8ab1185", "text": "Hot girl 32k high resolution, cinematic. "} +{"id": "8001891", "video_name": "39bd2fba-314a-56dc-b418-695db318ffef", "text": "Vintage,popcorn,1980s,film camera,Realistic depiction of teenagers from the millennium era, dressed in highly saturated clothing "} +{"id": "4002550", "video_name": "b26fe720-81bc-52a0-99bb-19d9eed683d7", "text": "a squirrel as hero in new york "} +{"id": "6002567", "video_name": "48b0441d-c192-5290-aa16-302e7071f1bb", "text": "A helicopter escapes from the fire, while an aerial view of a volcano exploding. "} +{"id": "7002976", "video_name": "c4dd848a-8acd-53bb-a867-f7129c7528aa", "text": "sifi woman beautiful looks like lexica "} +{"id": "4003155", "video_name": "49c05126-be78-5931-b924-5f78d288d7d7", "text": "apple orange banana pineapple kiwi watermelon bursting in slow motion "} +{"id": "2006458", "video_name": "17887e2c-421c-52eb-b538-9b6975b77eee", "text": "The sun is obscured by heavy clouds "} +{"id": "6002281", "video_name": "8e9efb89-d837-5c5f-836f-20e32021bcc4", "text": "one cartoon character is listening music on headphones, another cartoon character is speaking to him but he is not able to listen his voice due to the headphones "} +{"id": "5001891", "video_name": "59a84854-45c2-519a-894c-981d2244d7e8", "text": "car in heavy traffic grows steel wings and flies away, fantasy "} +{"id": "2005312", "video_name": "f81e97bc-7e1a-5473-bc65-746d3a7e70bc", "text": "a white building with a tree in front of it, a cubist painting by Johannes Itten, featured on pexels, heidelberg school, academic art, constructivism, dynamic composition "} +{"id": "8003165", "video_name": "884d4c61-6b70-59ab-8b89-c77bb88ae71c", "text": "a man stubble beard,in a beach club "} +{"id": "1003941", "video_name": "48bbb07d-16f9-5718-a22a-b94996c507e0", "text": "no camera movements, no zoom, beehive under apple tree without Bees, the leaves of the tree move slowly with the wind "} +{"id": "2003508", "video_name": "fe753f39-405f-510e-b00c-7e2d7cd50e19", "text": "Crying boy in the middle of a forest "} +{"id": "4004387", "video_name": "6fdaac34-9caa-5671-a9e8-450444cf3b0b", "text": "hyperrealistic elven king in long robes in ancient persian style full of jewellery walking "} +{"id": "2004288", "video_name": "d81b9fc5-3793-5e47-a326-1b0e76f51a8f", "text": "The gentle rustle of leaves, the chirping of birds, and the distant call of woodland creatures create a serene backdrop for the mystical realm of Eldoria in pixar movie style "} +{"id": "0003928", "video_name": "0004206e-065c-50db-8351-8bb1c235f0e2", "text": "A green, grassy yard with a view of the ocean with calm waves. "} +{"id": "6002041", "video_name": "5272f81a-7536-5c32-9cf1-375b65acfca4", "text": "8k DSLR photograph door breach drill beautiful female ex machina combat soldier wearing future combat tech adaptive gear, in dystopian abandoned cloning facility raided raid, armed, SWAT, protectorate, squad, military police raid "} +{"id": "2007380", "video_name": "a68e99c9-798c-5656-aeed-aaf4fba194e0", "text": "zoro from onepiece fighting like yujiro hanama "} +{"id": "1006572", "video_name": "7867bc42-62be-5185-9269-350d9298f9da", "text": "space, milky way, stars, bright stars, shooting stars. "} +{"id": "0004208", "video_name": "04fcdef8-11f5-5cf2-bda7-86068056ab14", "text": "the guy is driving a pit bike on the rear wheel around the city "} +{"id": "1005546", "video_name": "6621f5ea-ff48-535d-a535-b531bc40c2a8", "text": "masculine greek god with mighty beard. only face. animation "} +{"id": "3006113", "video_name": "9bbc27a4-860c-5825-9213-5ee4ff6415c4", "text": "In the heart of a bustling underwater city known as Coralhaven, "} +{"id": "2006537", "video_name": "0befa07c-97d4-50bd-b369-56cddf198593", "text": "a muppet on fire, vhs, 1970s educational film, glitches "} +{"id": "7002593", "video_name": "f3e1790a-a3f1-5517-8470-bdc33a7d49c7", "text": "a cute little girl try to catch butterflies in garden "} +{"id": "7002297", "video_name": "ea58b53f-dab3-5245-930d-85e815f01878", "text": "Indian Girl expressing her feelings on the endless love "} +{"id": "4004619", "video_name": "090cd7de-ba9b-502c-a347-893aab8cc2df", "text": "A vast, panoramic landscape depicting a myriad of paths crisscrossing over varied terrains \u2013 dense forests, arid deserts, steep mountains, and calm meadows. Along these paths, people of all ages and cultures are seen running, walking, or resting, each at their own distinct pace. Some paths are solitary, while others are crowded. Each path, however, converges towards a glowing horizon, symbolizing enlightenment or personal growth. Above, a majestic eagle soars effortlessly, representing the higher perspective of understanding that everyone is on their unique journey, and the freedom that comes with this realization. "} +{"id": "3004852", "video_name": "8b7569d8-c7dc-5de7-b576-7c2b8523c343", "text": "Soldiers wearing futuristic armor are marching in the desolate desert "} +{"id": "1004713", "video_name": "5781b335-95ef-578f-b401-adb7a5bc5e6b", "text": "tom and jarry Message: 1 Attachment "} +{"id": "1006906", "video_name": "7e4db811-d767-58f8-8dbf-815fcd3df5e0", "text": "fairy woman with green hair and red eyes turning into light "} +{"id": "0003594", "video_name": "401fa84d-0fdd-5baa-a657-832e58f1376f", "text": "Place a tempting piece of fruit at the bottom, create a funnel with plastic wrap "} +{"id": "2004369", "video_name": "cf747eed-3cc1-58f1-9249-f86dddbcd5a7", "text": "tangled golden skull of snakes on the ground of a green vegetation "} +{"id": "3004272", "video_name": "d6e74c98-4ef2-5447-8795-225ad67f8652", "text": "17years olg , indian girl, with western dress, "} +{"id": "0004745", "video_name": "0e929118-095b-5672-a3ee-3bd993865f04", "text": "oilpainting style, ink wash in green and gold tones, a chinese dragon, new Chinese style, minimalism, hand drawn style, illustration, festive style, muted colours, wet on wet technique, sketch ink watercolor style with a hint of orange and white by Wu Guanzhong, Truong Lo, Mary Jane Ansell, Agnes Cecile, muted splatter art, gold ink splatter, faded dripping paints. green monochrome, soft impressionistic brushstrokes, oil painting, heavy strokes, dripping paint, oil painting, heavy strokes, paint dripping "} +{"id": "6004237", "video_name": "2af94b36-d0b3-5c9e-b7b6-90abefe7120f", "text": "beautiful cat standing on top hill, comfy sleep "} +{"id": "2003779", "video_name": "f2302871-88b4-5d05-99b9-e80dea605fe6", "text": "A skull with a cracked, weathered look, surrounded by a swirling vortex of smoke and fire., 32k, sharpness, photorealisitic, realistic view, high quality, ultra hd, extreme detail, hyper realistic, photo realistic, photorealism, ultra detailed, 8k. "} +{"id": "4003892", "video_name": "757e1606-a86b-547a-9754-39fcf238a27e", "text": "Super resolution, full HD, stalactites can be seen dripping water in a lush, green, cave in the distance, catfish swim in an underground lake nearby, and fireflies fly and glow everywhere in the air around them, "} +{"id": "4002435", "video_name": "4b4970c1-efea-560b-b896-852c730e4873", "text": "a description of a beautiful and graceful broadcaster: "} +{"id": "3003250", "video_name": "4b93273f-3daf-5064-9266-12e284cef57c", "text": "the city of the future, three men talking, shallow depth of field, aperture 1.5, bokeh, cinematic color correction, dark background, cinema light "} +{"id": "4004834", "video_name": "3c387ba6-6f94-578e-b298-f3fe862f8f6f", "text": "an old TV from the 70s playing Rick Roll "} +{"id": "2005622", "video_name": "6af69870-f712-556e-a530-aa7337752031", "text": "long road bright. at the end no car no person except sunshine. forest. little. animals "} +{"id": "0005236", "video_name": "17123a2b-391e-5615-92c1-c4d8f16c5bb4", "text": "Animate the characters with the tender strokes of emotion, breathing life into their expressions. Every pixel should echo the emotions of a heartwarming melody, as if the very soul of your creation is harmonizing with the symphony of human connection. "} +{"id": "8001161", "video_name": "aedd69e3-5fb6-5617-84dd-959f5438c627", "text": "A girl as ( fantasy personification of chocolate cupcake ), character design, cute hats, victorian inspired clothing, unreal engine, ( highly detailed ), smooth, digital illustration by artgerm, tooth wu, studio ghibli, sharp focus, artstation. ribbons, fractal swirls. "} +{"id": "2007058", "video_name": "9ebee280-289d-5a64-b7b8-14baefc9b10f", "text": ", drawing people from around the world to witness the captivating beauty of this natural wonder tucked away in the Peruvian Andes. "} +{"id": "2004582", "video_name": "1177f7d3-e9fa-5ba9-abd6-06ec019230e8", "text": "aerobics workout spinning around on beach "} +{"id": "1003798", "video_name": "462a7191-8b76-50ee-8399-b160e02cdcbb", "text": "astronaut soccer, against the backdrop of space, , stars and comets fly "} +{"id": "0006521", "video_name": "2dfdf098-6913-53df-ae31-fb55005090d5", "text": "psychedelic color blur, morphing shapes, sine waves "} +{"id": "3005178", "video_name": "06cdceee-70e8-562b-88b3-7374f41274d1", "text": "a smarly dressed congregation of kenyans, outside a huge church, in the sun, singing "} +{"id": "6004605", "video_name": "152eee9c-69bd-5a3d-a70e-555211924cbf", "text": "a design for a black ice hockey jersey without logo\u2019s with a white background "} +{"id": "4003160", "video_name": "47c95838-200d-5541-a584-b7088648f2e9", "text": "Animated movement and sound effects of the ticking clock to create urgency "} +{"id": "2003469", "video_name": "ed6df2c1-c513-5967-9be7-cd9fa80fae35", "text": "Thor Punching Batman in slow Motion Ultra 4K "} +{"id": "0005102", "video_name": "14c1d79d-0de7-5386-a875-699d39b2e937", "text": "Generate a video showing a child dancing with many people in a park. "} +{"id": "1003695", "video_name": "44181b89-7933-5fb1-95ce-a5c3ceca4c5b", "text": "3D radha ranhi walking in garden everthing moving there like wind flowing Message: 3D (Font: MODERN) "} +{"id": "7002399", "video_name": "e3043b2c-739c-5a47-8c83-0fa4a46b1f1b", "text": "The god Zeus rules over the Olympian gods like a father over a family of gods. He is the king of the gods and oversees the universe, being the god of the sky and thunder and therefore of energy. "} +{"id": "2006741", "video_name": "3d160749-1d3f-5f86-bb56-3e2ee7a638d1", "text": "Illustrate a breathtaking moment of a fireworks display in the night sky. Use a burst of colors to create a festive and celebratory atmosphere. "} +{"id": "7002262", "video_name": "abbce941-4949-5c3a-a450-743993227316", "text": "four students drawing pictures in a room "} +{"id": "0006767", "video_name": "32af494c-e4b5-508a-b1a1-717b0b38a4d0", "text": "man and woman wearing purple and blue hoodies sun mask playing video games "} +{"id": "2006582", "video_name": "53362126-266f-5651-a112-22e2a3b8ee0b", "text": "video of capital city of austrailia "} +{"id": "6004406", "video_name": "5f9ce46e-f9c7-54a5-baa7-e0920db8a37f", "text": "a snail and a snake, fighting with guns, cinematic, 4k "} +{"id": "1006902", "video_name": "7e2f6690-71aa-5f80-bd8b-2e6dd6965af3", "text": "different kind of tools kept in a utility room "} +{"id": "7003801", "video_name": "ce875556-0a37-5ba9-a65f-16110adb8e49", "text": "an explosion of color camera zoom out "} +{"id": "6004561", "video_name": "4be30f6e-3526-5d2c-a7cb-5463c2050e9d", "text": "cats flying through space, night scene, shooting stars, disney animation style "} +{"id": "1003860", "video_name": "472167bb-2740-51d5-a0cb-322e99c4e414", "text": "I want a manga character, comic book style, a boy "} +{"id": "8001077", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "a crystal ball, monochrome, faded colors, magical "} +{"id": "8003671", "video_name": "1d18da3f-a7ef-5052-8b05-306277faad7d", "text": "Surreal Illustration, A big raft floating in the sky, by Jeremiah Ketner, Jeff Lemire, Richard Schmid "} +{"id": "3006392", "video_name": "540158fe-65fc-58ce-9c32-a28e952c147e", "text": "she tiptoed through the woods, feeling a mix of excitement and fear. , imagination , 4k hd video "} +{"id": "7003898", "video_name": "4f6fc4e0-465b-5cf2-b34d-769177cd1583", "text": "the Tsarina queen of Russia is sitting on her bed with Rasputin the scruffy monk in a black tunic with long wild black hair and unkempt beard, they are holding hands and looking at each other with love, the room is finely decorated with the pomp of early Russian royalty 1900, the atmosphere is romantic but also dark, their love would be a betrayal for the King "} +{"id": "3003940", "video_name": "b438976f-98d7-577f-a5ff-0461811848d8", "text": "Bhola and Yashodha cradling their newborn baby boy, Mowgli, with smiles of pure joy on their faces.indian village cartoon style Disney style 8k Pixar art "} +{"id": "8003166", "video_name": "274b3d54-02d2-5081-a4ae-6b3e79b0e794", "text": "lancer evo x, anime style, cruising tokyo street ,4k "} +{"id": "2003280", "video_name": "183b78da-ccba-5d68-b74b-fc2d1793e5b3", "text": "maa durga and lord shiva doing shopping in AI world "} +{"id": "6002658", "video_name": "c362a344-d8fa-5bec-a3e1-8aac47e461d9", "text": "a blond boy and a beagle, happy, photorealistic, love Message: NACHO (Font: MODERN) "} +{"id": "8002387", "video_name": "cc3235d8-c555-597d-8754-e717aba57775", "text": "ten motorcycles rolling on the road at the dusk "} +{"id": "2004635", "video_name": "c86613d2-0e38-5fa3-a6d3-9a3a3d0469f1", "text": "gamers determination is on full display as he spends long nights practicing, pushing himself to the limit "} +{"id": "0006845", "video_name": "341c7453-2251-5f58-acf7-30e67d2f77bd", "text": "pokemon turtle with glasses and a saxophone on a stage full of lights while spinning in a tombolada all in 3d "} +{"id": "6004207", "video_name": "df598b6d-262d-50b7-b767-dc9f331d1282", "text": "moses and sea apart to each side, miracle "} +{"id": "2006669", "video_name": "e3d0c663-4bd9-548d-a8a1-d39bf1c053fa", "text": "overflowed water in a slight rusty room inside a ship with only walls , no objects, in the style of 3d animationm with increasing water level "} +{"id": "2005038", "video_name": "9f76a042-a3c9-5b22-b682-0fcd33bf6795", "text": "With the support of the jungle animals, Mowgli, Bagheera, and Baloo confront Shere Khan.\nThey set a trap using a net made of vines.\nShere Khan falls into the trap and is captured.16.9 3D "} +{"id": "8002231", "video_name": "3c556b5d-323d-54c0-8d76-4b47192b8875", "text": "One night, calf golden and cow went on a magical journey to the moon. "} +{"id": "4004676", "video_name": "4d887b7d-50c1-556a-8398-35f0d898f3b5", "text": "Silhouettes of two people walking away from each other: To depict the feeling of drifting apart. "} +{"id": "4002560", "video_name": "740b1f4e-2ad8-5e38-bb53-821af84e5d23", "text": "a dragonborn looking for your prisioneers "} +{"id": "4004602", "video_name": "f75f388f-fe62-5e98-8d9c-3ae8234be128", "text": "camera flying into scene, wind, hot embers blowing past in the "} +{"id": "4002751", "video_name": "a02ed8b2-7c45-5370-8eca-2a6c8256e475", "text": "Tokyo city in china several cars moving on the streets and several people moving with several neon lights in market bakeries on a realistic rainy day "} +{"id": "7004564", "video_name": "fef8def1-0ab8-5340-b05d-21c2ba3106d7", "text": "The water of the river animates the clouds in the sky, also the artificial lights and the sky and the boat moving forward. "} +{"id": "0006538", "video_name": "2e5d9b06-51a9-5ed6-9e83-d77fe87955e0", "text": "The structure has changed and has been deformed.image:mmexport1700187501277.jpg "} +{"id": "1006641", "video_name": "79b6df7f-016f-5d35-90dd-b3cda20714af", "text": "Surreal, Abstract, books floating around in Outer Space "} +{"id": "0003902", "video_name": "456ed447-f52d-518b-a4a3-fc2de990d52e", "text": "I looked, and there before me was a white horse! Its rider held a bow, and he was given a crown, and he rode out as a conqueror bent on conquest. "} +{"id": "3003412", "video_name": "5885dab4-e7b1-5cc7-be06-a39516d14661", "text": "In the first quarter of the game, Tom dropped a crucial pass that could have led to a touchdown. His teammates were disappointed, and he felt like he had let everyone down. His coach benched him for the rest of the game, and the team lost. "} +{"id": "1006631", "video_name": "798f98cc-1fef-5181-ad12-3b578195a352", "text": "Giant crawling Crow Old abandoned Godzilla animatronic Flesh "} +{"id": "0003134", "video_name": "37d05ca8-b0f9-598c-b1ac-8f638ee55001", "text": "disney pixar animation style, theres one college student wear maroon shirt walking to the blackbillboard, then he stoped and see the blackbillboard, campus background, 3d animation, 1920x1080 resolution "} +{"id": "0005344", "video_name": "191da1cd-a0b7-5c7a-9f5a-f3a2e5b5b8c1", "text": "Beautiful ethereal elf ready to fight, from an 80s dark fantasy movie, realistic, cinematic, vintage, HD "} +{"id": "6003635", "video_name": "9804405a-a915-5307-a8bb-0a2896648c97", "text": "Yuvraj Singh a great Businessman one hand lot of dollars cinematic 4k "} +{"id": "3005152", "video_name": "50351ad0-ff84-5d20-afde-90232aa8b5b9", "text": "navy seals wearing camouflage, standing on a ship, having each other back, back to back shot, close up, camera rotating clockwise, cinematic, epic lighting, 8k, 60 fps, realistic, hd Message: 1 Attachment "} +{"id": "6002799", "video_name": "f2688644-bf7b-5afc-8e1d-c782f4e3c2d9", "text": "A Man with muscles in a harsh winter landscape cinematic "} +{"id": "6002490", "video_name": "d916507f-74d5-5b01-b052-61fc1be5613d", "text": "lush jungle moving witht he wind. Animals moving around in background. A man runs out of the forest, stares straiught into the camera, then rushes off stage right "} +{"id": "7004398", "video_name": "14fcd764-7e17-5fd5-8e7f-e4730626b219", "text": "Creepy And Paranormal 1900s Film Footage, little doll "} +{"id": "3006706", "video_name": "90cef320-303a-5952-9684-05f714f5281f", "text": "flying 3d butterflies at the sunset beach "} +{"id": "0006321", "video_name": "2aa4b3b8-b227-5a69-a770-70f121e8915c", "text": "Cute robot flying through the sky leaving jet stream from rocket booster "} +{"id": "0003715", "video_name": "42442103-66cf-51d3-82de-15a885543892", "text": "A family sitting on the sofa in their home, watching television while it is raining and lightning. After a very strong lightning strike, the television turns off and the family is sad because the television has turned off. "} +{"id": "3006976", "video_name": "cc539b04-2e4a-50f9-8af2-7da062bb0605", "text": "create prompt:The scene evolves into a darker setting "} +{"id": "2006861", "video_name": "9bfa5b0e-8c73-552c-988a-88e38595b278", "text": "water spill out from kitchen basin "} +{"id": "2006549", "video_name": "4174e6bf-3b28-5110-ad2d-b7c87a7c886a", "text": "A small child is standing on a village road "} +{"id": "3005667", "video_name": "190e6ebb-d652-58ac-86b8-07d400288dff", "text": "Volumetric plasticine cute cartoon man accidentally pours coffee on himself, 4D volumetric, blue and white colorurs "} +{"id": "6004380", "video_name": "6a28294a-3f81-5442-8827-8ef3e47ad801", "text": "a huge monster is rampaging in the middle of the city, realistic image, HD quality 1080, ratio 16:9 "} +{"id": "4002852", "video_name": "58247e9c-6776-5ca1-bcab-13d05e4b84c2", "text": "Travis Scott in concert, fire around, full, ultra realistic, super detailed "} +{"id": "1005558", "video_name": "664cd5f7-c8a4-5e88-8b80-3153c5ba6220", "text": "a woman walking on the beach in her 30s. "} +{"id": "6004067", "video_name": "7ebcf614-60b9-535d-9dfa-57e73b42bde5", "text": "i need two girls in office with modern accounting design office "} +{"id": "1005248", "video_name": "6094293f-df6d-53a9-8de2-2390e6beca23", "text": "dark hole in the sewage, modern futuristic city street at midnight, neon , cyber punk, ultra realistic "} +{"id": "2003362", "video_name": "9a0c7488-286b-5c1a-b708-0fee2c735f30", "text": "Capture the vibrant scene of Arab customers relishing their fried chicken feast in a cozy restaurant ambiance. Emphasize communal joy, laughter, and diverse interactions. "} +{"id": "1004152", "video_name": "4cf16ac0-f8c4-5d8f-98bc-2f78bfda3a80", "text": "storms and rains in the forest with waterfalls "} +{"id": "7004175", "video_name": "eddcced9-edfd-5672-9796-2d14d612c8f2", "text": "girl who is sitting on a activa "} +{"id": "4002613", "video_name": "fd11fa89-54cf-5f21-a9e1-d9e2296ada97", "text": "Elvis posing for pictures next to a Birthday cake in Las Vegas, camera flashes "} +{"id": "2007683", "video_name": "a6d64208-501c-5bdb-a25b-c0206f36e554", "text": "Show Emily and Max meeting creatures that speak in a language of melody, and describe their astonishment at the communication. "} +{"id": "3005164", "video_name": "8c9d1521-e5ab-5089-a854-bc4b9357f9bb", "text": "Maya carefully examining a tattered map, her finger tracing a path through the dense "} +{"id": "1004830", "video_name": "593982b1-ef70-5e42-b6cb-99e7d9138fa3", "text": "Show Leo leading a group of animals to the village with barrels of water on their backs. "} +{"id": "0003467", "video_name": "3e1b5fe3-1f10-5688-b9a4-ff672a35589f", "text": "guests on board a sailing boat looking happy, white sail,vivid colors,16:9 "} +{"id": "8003946", "video_name": "5c846de3-65d9-557f-a75e-273026898fc3", "text": "make this animated tennis shine and appear butterflies flying and shine "} +{"id": "6003564", "video_name": "11dce68e-7353-5f8d-8809-55fcd513b107", "text": "format ad to advertise digital marketing services such as SEO, SEM, SMM, Content Creation, Content Marketing, Brand Building, and management , Web development ETC of Tirumala IT Consultancy services a digital marketing company "} +{"id": "4002095", "video_name": "5eef856a-800b-57b5-ae51-5710e294968f", "text": "Celebration youth national holiday with waving flag fireworks "} +{"id": "2006803", "video_name": "df36871f-47eb-5063-abbd-10b91e8c4874", "text": "Show realistic lettuce plants roots within a hydroponic system absorbing tiny nanoparticles that make the plant grow. Make the view of this process with the camera observing the process at their roots. "} +{"id": "1004772", "video_name": "5847b379-8f2f-5857-a865-e633c94cefb7", "text": "tribe of Minotaur men dancing for a queen "} +{"id": "4003041", "video_name": "b395da5e-e300-5d72-83a9-c0c7f0b8ba57", "text": "Black and white 1940s illustration of old house at night during a storm with lighting and two men standing at the front door. "} +{"id": "7003123", "video_name": "3b63b060-0bb9-57ff-9687-00338cdd41f8", "text": "Adorned with Biopunk Cyborg Flowers, Butterflies, and Fireflies, they exude captivating allure. "} +{"id": "1004508", "video_name": "53974ffe-2f39-5570-a8d9-fee576d40381", "text": "Focus on Mr. Whiskers as he smiles with gratitude at the children, conveying his relief and appreciation. "} +{"id": "2004401", "video_name": "256d6940-35e2-520f-a286-5df36cc1394c", "text": "A fair skinned woman dancing by the seaside "} +{"id": "7002797", "video_name": "fcbbf5f6-87ab-5db6-b524-3303b006bc51", "text": "create a satisfying video infinite loop of a gemoetric shape "} +{"id": "2005779", "video_name": "7a8b6c8a-8d12-5fe7-98bd-e5de57b17283", "text": "A Pixar girl character, very cute, big eyes, smiling, dressed in princess costume, with a volcanic eruption in the background "} +{"id": "0005907", "video_name": "23145ed2-09ba-500a-a59a-d54081bbd35e", "text": "slow motion, high details, 8k, cinematic Man talking on TV "} +{"id": "7002125", "video_name": "f9e3aaaf-9713-5a47-96ff-efcf1281f41d", "text": "a pheeonix flying above a city "} +{"id": "2006293", "video_name": "a2d39f5b-5404-5765-b192-13e2d5637868", "text": "Blue sky, white clouds, sandy beach, palm trees, seashells, crabs, footprints in the sand, and the sea gently washing ashore. "} +{"id": "0004554", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI and tommy fury standing in the middle of the ring in front of a crowd of 20000 people in a bboxing arena in an enchanting atmosphere hugging each other "} +{"id": "3004130", "video_name": "5b244e1c-5317-5412-af00-74ad706bfa96", "text": "a few robots with weapons walking through a forest "} +{"id": "6002813", "video_name": "2b652590-6439-51e9-97d8-8d6838d19976", "text": "motion background with a solid light red and pink color with subtle hearts floating uniformly "} +{"id": "2006329", "video_name": "7cdca3e0-2673-5719-94e0-79b22750fde2", "text": "a thai man with golden vampire teeth and tattoos looking menacingly at the camera "} +{"id": "4004220", "video_name": "7b7baa3c-0fa5-529b-afdb-0b927d787be8", "text": "A youtube logo riseing above a dark city setting, lens flare coming in from right top, "} +{"id": "4003095", "video_name": "1f2b7b1c-2b81-5a18-aa0b-a6f87571924a", "text": "UK Prime Minister Boris Johnson playfully ruffles his famously disheveled blonde hair. The lighthearted gesture reflects his charismatic and approachable persona, as he often embraces his unique style. The brief clip captures his distinctive charm and adds a touch of humor, resonating with both supporters and critics of the charismatic politician. "} +{"id": "6003396", "video_name": "67baa9da-3e0c-5b61-b690-6e0a8b08934f", "text": "a wild isard goes outside on a sunny day "} +{"id": "6002801", "video_name": "22c02447-684e-5277-9722-628a1c3643e7", "text": "Chief Minister Chanakya was presiding over the court proceedings. "} +{"id": "6004492", "video_name": "a76bc6d8-9477-5c72-a9ff-4ac35f3cd835", "text": "flexing muscles, slight movement Message: 1 Attachment "} +{"id": "2006314", "video_name": "f5104878-bff5-5049-b8e1-a6a46a7a3c85", "text": "close up of boy, short brown hair, 4k resolution, 16:9, 60 fps, talking on a bench "} +{"id": "3006665", "video_name": "e10a344a-5961-5aa8-ad29-4f740abaadcb", "text": "3d animation style can you make birds, squirrel, mouse, cat, dog, beaver, butterfly in the forest "} +{"id": "3004069", "video_name": "d921615c-e1fc-517a-a300-5f2d8efff6ba", "text": "had claimed countless lives throughout history. "} +{"id": "2007883", "video_name": "9451a842-6f8a-5b23-bfe1-d702509cc598", "text": "A little girl holding a corgi playing on the grass, face straight. "} +{"id": "4002652", "video_name": "7a1de3f4-bb14-582f-b65f-05528840aa19", "text": "lovely girl was reading a book, in anime style "} +{"id": "3006139", "video_name": "2f6602b5-e344-5c25-846b-7bd2c08a7f66", "text": "a woman before the beach in bikin dancing "} +{"id": "1005961", "video_name": "6d869177-ebe0-5174-9883-8402492f0b5e", "text": "Soilders fending off goey green soilders with theri shields and swards Message: 1 Attachment "} +{"id": "3005754", "video_name": "5435f563-5a76-5e1e-b279-a0d2b23c4e22", "text": "a boy wearing red sweater, facing camera, clear yellow background "} +{"id": "3006742", "video_name": "455ce8db-3bdc-5fb2-ab96-5d203523af7f", "text": "a warrior shouting to his enemy Message: 1 Attachment "} +{"id": "8003905", "video_name": "c2eb564b-b76a-56fb-a322-cf1bb1e4c4a3", "text": "Merry Go Round of Torment eerie 1890s occult footage black and white blur Alejandro Jodorowsky "} +{"id": "2006315", "video_name": "7d9c100d-5a90-5163-aa53-eaeec62f5129", "text": "lord shiva meditating, space backgroung, galaxies "} +{"id": "2003930", "video_name": "4b2745ae-3286-545a-95a6-4c8d54e25113", "text": "anime aking about why he is angry "} +{"id": "0005191", "video_name": "1665d73e-b16c-52fe-a293-670e8af928b0", "text": "background of brazillian favela full of life "} +{"id": "8001841", "video_name": "97955818-0c44-50b7-8005-ecf19abc6a0a", "text": "A jackal hybrid human woman in the form of Anubis, with a regal and commanding presence. She possesses a strong and powerful physique, accentuated by her big chest, which adds to her imposing aura. Her body is adorned with intricate tattoos and symbols that reflect her divine nature "} +{"id": "3004091", "video_name": "948d696b-1407-5b64-b39d-9902de1befe8", "text": "a giant kaiju flying in mid air above the clouds, and chasing an airplane "} +{"id": "2007601", "video_name": "3b3602a1-96c3-564e-800c-9aefbdb18e76", "text": "Worm eye view, hyperfocus, HDRI, Japandi interior design room "} +{"id": "4002539", "video_name": "27094187-5056-503b-87b3-33ee16ec2f62", "text": "Drone shot of dead plant in the desert "} +{"id": "1003995", "video_name": "4a03885e-be4b-5c9f-9b2d-5dff3774e8d0", "text": "a green crocodile is swimming in water, the crocodile is swiming out surface of water water waves, create a 3d scene "} +{"id": "3004279", "video_name": "b3f9704c-e893-5435-b202-70f685ccd689", "text": "cute chubby dog, big eyes, 3D,inspired by the whimsical and playful style of pixar and disney ,the ground coverd with green grass and wild flower ,outdoors,grassland "} +{"id": "2005187", "video_name": "5933897b-e68a-5db9-9562-26353226dce6", "text": "a plane flying past a flying city "} +{"id": "4002353", "video_name": "5308392b-7235-5ab9-8fd6-ee88f71d58c5", "text": "Inside a huge Buddha forest, bamboo forest, there are ants crawling on the ground "} +{"id": "1004762", "video_name": "58227203-a2ae-566d-ac4d-2338f04c1acb", "text": "cute girl is walking through the road pixar 3D blend 4K resolution wide angle cinematic shot "} +{"id": "2003871", "video_name": "38e19b52-a662-54e3-a68b-e2f5079e350c", "text": "3D animation at the cellular level "} +{"id": "2003283", "video_name": "3c98503a-7ec8-5007-bd5f-9b80d6ef015e", "text": "SLAVE IN THE ERA OF THE COLONY TELLING A STORY IN 1821 "} +{"id": "2006585", "video_name": "5769d2ce-5bcf-59f1-8f60-fa3157bd93eb", "text": "new york Message: want to face time (Font: COMICS) "} +{"id": "0006296", "video_name": "2a2b7101-d0ae-53f0-9261-4d71b50f3cfd", "text": "man on a motorbike crashing into a wall at a high speed, explosion, shrapnel "} +{"id": "4002356", "video_name": "89641567-5d26-5697-bdc6-5950d39d35e9", "text": "Cartoon network Message: SAIOJI (Font: COMICS) "} +{"id": "2006670", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "wide shot, man eating potato chips, smiling "} +{"id": "1005508", "video_name": "656d03b2-a95c-5e24-9ce0-0b78b9ff8d4b", "text": "The lone witness was Dr. Enrique Caretenuto Botta, who passed his incredible story on to Horacio Gonzales G. in Caracas at a UFO conference in 1955. "} +{"id": "6004249", "video_name": "3ee02ff7-52f4-5146-bcc6-8c8026b8bf74", "text": "8k, image realistic, 20 year old man looking frighteningly at 3 menacing and sinister souls "} +{"id": "2006653", "video_name": "542f6eff-7bdb-53c0-bc56-7a084224a748", "text": "israeli with liquid gold Message: 1 Attachment "} +{"id": "4002736", "video_name": "c5a7a925-eb15-5036-b7b4-5816759b5a8a", "text": "Display a person cleaning their mobile phone with a cloth. "} +{"id": "1005861", "video_name": "6be7b183-133a-5fa0-8bf8-667240d80155", "text": "A giant caterpillar is crawling inside the helmet of an astronaut "} +{"id": "6003951", "video_name": "8c450e8b-afd0-5591-a2ea-81535e2744a7", "text": "old gothic church at dawn in a dense forest "} +{"id": "4004315", "video_name": "74923d5a-48bd-578a-a416-b19e89de8968", "text": "a man holding his newly born son for the first time, sunshine, beautiful lighting "} +{"id": "0006590", "video_name": "2f1dce37-859f-5fc3-8439-916a8cda31d1", "text": "Draw a bustling bicycle shop in the heart of a city with customers browsing around. "} +{"id": "4002848", "video_name": "7f9a48aa-34a0-506f-9630-4c899f6e861d", "text": "twist the body gently, speaking,the wind blows the hair from the left to the right Message: 1 Attachment "} +{"id": "7003523", "video_name": "9b38dd19-b940-53e7-8a3a-32fdb3b01c87", "text": "vintage ivy and flower motion graphics in the style of Beatrix Potter "} +{"id": "3004093", "video_name": "8f25ee8e-1a18-58fa-ae1e-b556166f7e11", "text": "create a video with the universe with moving starts, a man walking "} +{"id": "2006611", "video_name": "ddcb0767-fc21-5bd2-a994-cee43e08af3a", "text": "watyer coming out from earth,disney style 8k image "} +{"id": "3005822", "video_name": "d206e865-aebb-5683-b8d4-4f16d5185ab1", "text": "animation of a woman hula hooping, colorful "} +{"id": "3006522", "video_name": "06b8b5ac-225b-50f4-8571-fc1e7336be8a", "text": "A mechanical owl, stage vision, dark style, lights flash according to the music in 8 beats, c4d, dark lights, owl in the center, 4k, metal material, red and blue lights, video length 8 seconds, emphasis on dark lights, particles, within the scene no other objects, machines, machines "} +{"id": "7003443", "video_name": "f75310af-992d-5c93-a210-027260d211a6", "text": "a guy makes searches on the beach with metal detector "} +{"id": "0006152", "video_name": "2764e8a2-d50d-510f-bf7a-780dbb1d097d", "text": "A beautiful image with a fence in the middle of a forest animal hut and a forest, trees, clouds, and the sun in the background. It should be for a screen in a puppet theater. "} +{"id": "6002593", "video_name": "7f04c791-f97e-572e-9962-0e2e4e2920a9", "text": "aantique style small key spinning in the air "} +{"id": "1005800", "video_name": "6ab52a49-f0b8-514d-a8a8-6b1df15116c8", "text": "a human lion doing a radio show as a presenter "} +{"id": "2003217", "video_name": "506450f9-87e1-5704-aba5-6ae5faaa125b", "text": "a person thinking of ai with a digital ai background "} +{"id": "0003943", "video_name": "003d858c-f20d-583c-be84-66af3bd11b8a", "text": "1984 video, hands playing rock paper scissors "} +{"id": "2007659", "video_name": "6fded791-258d-5ebe-993d-06b416904e99", "text": "Earthrise, 3D, split lighting, 16k, photo realistic, "} +{"id": "7002519", "video_name": "72afbca1-0a54-502f-9669-ce92439ae75e", "text": "A boy whose hands turned into ears listening to mashed potatoes "} +{"id": "2004270", "video_name": "13d8d249-0c2d-5ea9-aaed-7db962b65219", "text": "Crassus, one of the richest men in Rome, sought military glory to match his political influence. He believed this campaign against the Parthians would secure his legacy. "} +{"id": "8001150", "video_name": "9db8c991-0373-5081-ac31-5198f94ffa13", "text": "pixel art, a tree in the dark, animation effect "} +{"id": "3003497", "video_name": "3698274e-5b64-5045-9374-9649ba7345e1", "text": "realistic depiction of Bald man Aleister Crowley. genre: urban fantasy: magic. in the style artist Michael Whelan, Full colour, Hyper realistic, ultra detailed, high contrast. Seed: 259584456 "} +{"id": "3003042", "video_name": "9141a0e7-7042-53db-8fb8-91b0cdacc7a8", "text": "highest level super saiyan goku holding 7 dragon balls "} +{"id": "8001705", "video_name": "aef5c287-88d9-5d8c-b200-a1ac42ef80de", "text": "grey marble stone statue of elon musk, changing form and shapeshifting into Nikola Tesla "} +{"id": "3003674", "video_name": "b888f4d0-8236-584d-9470-d66f701512df", "text": "a christmas tree with fireworks in the background "} +{"id": "8003150", "video_name": "3bca2c79-8edf-56bb-bf86-058a0eb2cc1e", "text": "30 year old woman looking up at the sky as there is rain of beauty products "} +{"id": "8002330", "video_name": "ca9eb397-fb23-5bf1-bbd5-2c3785c0dfc5", "text": "floating mouth in space, psychedelic, outlined mouth, 3d render, "} +{"id": "1006202", "video_name": "71af25a0-9591-5919-a991-eb1b27469475", "text": "superhero superman muscular realistic with futuristic armor "} +{"id": "1006741", "video_name": "7b72546d-f39a-5144-8d66-3d9f95046aaa", "text": "rabbit running across the beautiful meadow with long grass epic sky sun rising , camera zoom focus "} +{"id": "3005670", "video_name": "3c786887-581d-5a17-a7d6-b85847af3456", "text": "A cozy restaurant with dim lighting, showcasing a couple enjoying a romantic dinner. "} +{"id": "2003195", "video_name": "af640b9e-b5be-5414-bb6e-19fbacc31b04", "text": "giant tidal wave approaching a cape cod lighthouse "} +{"id": "2006680", "video_name": "4e65bf72-db64-55df-93ca-ce2e22185ab3", "text": "A data engineer who is building Scalable Data pipelines and building Data dashboards. "} +{"id": "2006740", "video_name": "4b6c7d02-4e7a-5f4a-811f-1196f11cd3ad", "text": "Create a youtube short about gym. Settings: Show subtitles in the video. "} +{"id": "2007974", "video_name": "0e08b153-77dc-5427-a74b-70fe6bc143f7", "text": "make the image run across a grass field over view Message: 1 Attachment "} +{"id": "5001734", "video_name": "3caa1978-2edc-5569-8481-98668f4949dc", "text": "a person walking in a steet of Paris, 1979, 4k, sharp, focused, Technicolor, telephoto lens, detailed skin, detailed realistic eyes, medium shot "} +{"id": "5001020", "video_name": "3fecffa3-09c4-5fa6-b74c-2e6a69666935", "text": "5.\tThe plow: They used bronze metal (and later iron metal) to make strong tools and weapons "} +{"id": "6002183", "video_name": "d1223646-ac76-5e2e-9dc7-26fe7b6f9c8f", "text": "Gorlock the Destroyer eating a cheeseburger then distroying mcdonalds HD, 4k resolution, sharp "} +{"id": "7002848", "video_name": "7fbeb512-dfff-5d4b-ade4-072fab43a804", "text": "a lonly man singing while looking at a couple in a resturant "} +{"id": "4003045", "video_name": "7732dc38-1ff4-5e2b-b09f-41db4d066e4c", "text": "portrait of donald trump dressed as a Roman centurion from 100BC "} +{"id": "8002595", "video_name": "26dce1f3-f88e-5ee8-a732-907a615d93c5", "text": "naruto and hinata kissing in front of moon ultra realistic full hd "} +{"id": "0006902", "video_name": "3513dfc3-b1ce-553d-862d-7fe9e3728567", "text": "white cat playing drum in a cozy beautiful room "} +{"id": "7004883", "video_name": "43e9990b-2a2f-50c1-835c-86ed7213ffdd", "text": "real person sitting in office and doing work on laptop "} +{"id": "8001605", "video_name": "60533bfc-27f4-5ccf-8706-786190a63af7", "text": "A Chinese little girl was carrying a backpack and wearing a school uniform, bouncing back and forth on her way home. Her face was filled with a happy smile, and she sang cheerful songs in her mouth. The sun shone on her hair, casting warm shadows. The trees and flowers around seemed to be swaying joyfully with her rhythm, and a little bird flew in the air, seemingly intoxicated by her singing. "} +{"id": "0004305", "video_name": "06c5b563-2e63-5f41-9177-9527aa92a0d9", "text": "Ronald Reagan speaking to a cabinet meeting in 1980 "} +{"id": "0005537", "video_name": "1c77602f-22fd-5398-b820-77d57e05c46e", "text": "scrolling Instagram barely awake. a pov shot "} +{"id": "2003738", "video_name": "0ef8e007-cb61-5f77-9d25-6240bf1e3c55", "text": "Darth Vader Riding A Motorcycle While Holding A Lightsaber "} +{"id": "7004516", "video_name": "f9eab55b-2c90-513b-a835-f650f98f5f23", "text": "a pilot flying through the clouds in a convertable plane, with the wind blowing through his har "} +{"id": "1004429", "video_name": "51f29b05-6f36-5bd3-8615-698618a2714e", "text": "cockpit view of a crashing fighterjet before impact. "} +{"id": "2006278", "video_name": "2384ca87-682c-5331-bcfe-cf425d4274cf", "text": "a blond girl 25 years long hairs and white leather jacket is in the gasoline station in the desert. She enters in a blue lamborghini roof lowered car driven by a blond man with blue eyes and black leather jacket. He is sitting in the car and she gets into the seat next to him "} +{"id": "0006780", "video_name": "330b7caf-2b26-5e6a-b79a-caa3fb88f293", "text": "Alex finds an old journal in a secret room. The group gathers around, reading the journal entries. Ar 16:9 "} +{"id": "2007603", "video_name": "9caf8891-0e81-5d54-99fc-1276534db62f", "text": "beautiful girl walking at beach, 3d, realistic "} +{"id": "2003224", "video_name": "9c77e898-efb5-51c4-bb63-ef9069e9c369", "text": "On a sunny day in the garden around the princess 7 little girls are dancing hand in hand in a circle. a preens comes to them "} +{"id": "2007708", "video_name": "f797b025-7485-529e-90f5-209f740bb73e", "text": "a logo for kids channel named galaxy kids music "} +{"id": "1003242", "video_name": "3bbb764c-4c1f-5ef9-8108-ab648e98d80d", "text": "haitian household thanksgiving dinner gathering with latin women and man laugther and job. Food visible on table slow motion camera zoom in and out "} +{"id": "2007454", "video_name": "98a0c4ab-c358-5762-99ae-788df91cd82a", "text": "a cinematic video featuring a cartoon horse "} +{"id": "0006660", "video_name": "30930991-3a87-546f-8e0b-27eaaf0b89ea", "text": "road, abandoned town, fog, dark, night. "} +{"id": "4002581", "video_name": "3bd91b72-02ef-5a33-b811-a7e7d5c25bad", "text": "school transport in saudi arabia stops near the door of a house to take a clothed child home, pixar art "} +{"id": "4004182", "video_name": "0c4fc38a-65d9-58fb-b61d-77d73e9da2d4", "text": "a modern luxury Volvo XC90 car rushes down the road, Volvo commercial, cinematic, 4k shot, 24p motion blur, drives on the road "} +{"id": "3005137", "video_name": "dd0ad518-d88a-572f-9929-165a6fb771ef", "text": "mountain hiking, great weather, people having fun "} +{"id": "8002539", "video_name": "4667bad6-1477-557f-bc22-b36459f49927", "text": "a ghost hiding in the shadow, dark office, 4k "} +{"id": "8001375", "video_name": "a64f7e67-c5a2-5621-9774-051ebc60d197", "text": "a beautiful grey grandma narating a story "} +{"id": "3006561", "video_name": "ea3bd6e8-1b56-517f-9772-b11a511571bb", "text": "Some people with in the night screaming, cinematographic format "} +{"id": "8001734", "video_name": "9be5b49a-43ec-55d0-851c-dedc50ac43da", "text": "girl breathing,breasts waving, Message: 1 Attachment "} +{"id": "2004420", "video_name": "faa81b3d-eddc-55d0-901f-410a63d59883", "text": "dostoyevski writing a book in library while camera zooms out "} +{"id": "6004260", "video_name": "69ce336a-04e0-5280-acaf-28e33b41cecd", "text": "beautiful nature camera is moving anime "} +{"id": "2006668", "video_name": "cfba9f33-88e3-55e4-806a-e8e210d6bacc", "text": "A couple walks in slow motion in NYC "} +{"id": "2004954", "video_name": "e8f7636d-416e-5454-81aa-4ce4e789412e", "text": "Worlds Largest Temple with Red Flag on the Top Sky View "} +{"id": "1004643", "video_name": "56597659-b11c-5a87-9a12-aebfeaba6265", "text": "A handsome young man was barefoot. his feet is big and clean. Realistic style. "} +{"id": "2005819", "video_name": "4c677bf1-a939-5d8a-a351-5227c39063bf", "text": "the text full in a locus Message: 1 Attachment "} +{"id": "3005536", "video_name": "568aacb7-a454-5bc0-bc40-a19afa5578e1", "text": "A wizard, sitting in his chamber at the top of his tower. He is smoking a magnificent pipe as he ponders over an ancient spellbook. "} +{"id": "1004786", "video_name": "5870ca0a-2c7f-5700-8f32-4b72f2c8f0c2", "text": "documentary shot of ancient egypt battle, sunset ligthing, dolly shot, lens flare, high quality, ancient history, moving camera, dynamic "} +{"id": "3003852", "video_name": "9bf6ddac-9c5b-53e9-a3fe-2a581072962d", "text": "a boy fromfromfrom poopoor familfamily of vullavillage "} +{"id": "2007893", "video_name": "b7c06114-f653-5946-9dca-ca4ecc43a209", "text": "TAylor swift at the eras tour wearing a reputation themed dress "} +{"id": "1006181", "video_name": "7131aaac-b6f7-52b1-9c72-b1128224e690", "text": "Scene: Wrap up with a warm, comforting environment, perhaps with soft colors and gentle imagery like nature or peaceful landscapes. "} +{"id": "8003883", "video_name": "f9aa7a54-feb3-5a09-8180-7f6e072362ab", "text": "The supernova explosion of a white dwarf in the universe, photo realistic, 8k, cinematic lighting, hd, atmospheric, hyperdetailed, photography, glow effect. "} +{"id": "5001572", "video_name": "cc31b668-7f55-5420-8709-fbee2a72f5a4", "text": "dog dancing on earth, glasses on eye "} +{"id": "6002854", "video_name": "1c69b6ed-ae04-5bf4-bcb3-796437f7ca93", "text": "zoom out In a bustling city, a young boy named Alex dreamt of running a marathon. But there was a challenge \u2013 he had never walked without crutches due to a leg disability. 9:16 "} +{"id": "7003845", "video_name": "d1539df4-b70f-5f09-baee-6497552a072b", "text": "Shakyamuni Buddha is the son of King Pure Sanskrit and Queen Maya. "} +{"id": "3005582", "video_name": "32f7f4ad-eaad-5d84-9753-3b0b8d7a670b", "text": "A Man from Lilliput, sitting in a cage "} +{"id": "0006061", "video_name": "25f7ea94-df08-5b73-aa8d-bb69af03f590", "text": "Homeless children playing with donated toys, laughing and smiling, in a park in Mexico City, in a joyful, cartoon style "} +{"id": "2003211", "video_name": "c01032ff-16e1-562b-8c85-7ced1e493b09", "text": "melted pink ice cream business on dark background, time lapse "} +{"id": "3005051", "video_name": "13413cbf-c727-58e1-88c1-0b5bb9e48164", "text": "the singer of the city going to a musice stusio "} +{"id": "3005907", "video_name": "5118f7f7-3b8a-5c36-87db-9c53879821e7", "text": "empty room with laser lights, green atmosphere, with gas and smoke "} +{"id": "2003316", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "lion trying to catch a rat no blur video anime style "} +{"id": "0005167", "video_name": "15f10ac9-b1c4-5cf9-941c-b4e3d222c432", "text": "a tired athelete running a race Message: never back down (Font: RETRO) "} +{"id": "3005314", "video_name": "db5e6df3-1d30-5fe9-bf97-c692589c4008", "text": "Rosie guiding the team through the Red Riddle Maze with vibrant red paths and challenges.Animated cartoon "} +{"id": "6003167", "video_name": "2de609d3-a3e2-54d5-b84c-5611f9b53fe7", "text": "post apocalyptic city scene, woman running from fast zombies "} +{"id": "2004059", "video_name": "f637aa8d-65ef-56f6-bfe0-745786ee3545", "text": "bring to life an animated scene of a busy downtown street from a police state, apocalyptic and dystopian future like book 1984, done strictly in the artistic style of H.R. Giger "} +{"id": "2005102", "video_name": "6cf9fddf-aee2-5f9a-9bae-d9b0610858dd", "text": "Rachel McAdams laughs as buildings burn, funny, sarcastic "} +{"id": "3003686", "video_name": "610e1e77-e99e-53ab-afc3-b5e06966a2ae", "text": "Scene opens with a vibrant animation of technological gears turning and evolving "} +{"id": "2005098", "video_name": "656b8f78-edf5-5c67-b66e-5d597f785a17", "text": "medium closeup POV of CEO Latino James Marsden anxiously looking at a tablet with a robots design schematic on it "} +{"id": "3005915", "video_name": "ca3a6076-98eb-5152-bfff-aca904debedb", "text": "Oppenheimer in front of the big explosion anime in the style of Ghibli "} +{"id": "3004789", "video_name": "5e66cdec-f088-5b6a-b660-cb99e85c3826", "text": "sunset greenery scene with birds flying "} +{"id": "1005247", "video_name": "608d3c8a-39aa-5437-a828-c5f07c990e90", "text": "A young woman put on a dress and stood in front of the house, then turned and walked out of the house. "} +{"id": "3003534", "video_name": "535e6871-b3e0-5b40-b5eb-66884461584f", "text": "A common man with happy expression "} +{"id": "8002199", "video_name": "c20c3799-b424-5c10-bf64-0d3069b79a95", "text": "Produce a video highlighting the significance of the Anahata Chakra and its association with Maa Kushmanda, showcasing how worshipping her can open the heart chakras and fill lives with love and positive energy. "} +{"id": "4002427", "video_name": "7313e9ef-0cc5-5f53-8018-3e89b4f8785e", "text": "guy wears wrist bands for the gym "} +{"id": "2005478", "video_name": "4acefbca-c839-56aa-abd7-cc418a07a7c0", "text": "anime style close up girl with pink air wearing a red jacket looking directly to camera "} +{"id": "5001138", "video_name": "2f0aa7a6-4aca-5823-bddf-e0446ec4c93b", "text": "make elephant walk in muddy pond, inside jungle "} +{"id": "8002804", "video_name": "d6fd15ea-8805-5add-bcbd-8a60c3738ecf", "text": "a star shining from a dim to light "} +{"id": "6002496", "video_name": "13ef58fb-ff2b-5b73-9262-09c55216ca65", "text": "a painted portrait coming out of the frame "} +{"id": "0003479", "video_name": "3e5a9d19-dadd-586f-998c-6f10e82364dc", "text": "Exam Hall Horror: On the day of the exam, the setting shifts to an intimidating exam hall. Rahul enters the hall, and a palpable sense of darkness and fear surrounds him. The clock ticks, questions seem insurmountable, and time slips away. "} +{"id": "1004803", "video_name": "58c16342-b60b-5425-92bc-bdf77d202a65", "text": "She saw a rover moving around, collecting samples. "} +{"id": "7004248", "video_name": "5f7d07d3-b7ac-57a0-a53a-579c9c6a0435", "text": "man standing on little planet, looking for a new verse "} +{"id": "1003330", "video_name": "3d4997f6-6a20-5fa6-b341-5157ea3d49bf", "text": "glorius futuristic eurorack synthetizer with many lights and vapor in dark surrealism dark electronica "} +{"id": "8002129", "video_name": "08bde791-6296-5b80-a6fa-08547f8ee4b3", "text": "Saint Michael the Archangel, saint in Ukraine "} +{"id": "2003015", "video_name": "8c41478e-6f98-527d-b7cc-4d3eb9e6264d", "text": "running extremely fast (action movie) five gorillas (look national geographic) in yellow overalls running a steep stairway all in one direction in a japanese skyscraper fast, birds view hectic camera movement, anatomically correct, coherent bodies Message: 1 Attachment "} +{"id": "6003406", "video_name": "36cd51cc-9bee-5e31-8189-57adc46fc5de", "text": "transform the image into sute animated character "} +{"id": "1005807", "video_name": "6ac8fbf4-8cd4-5c55-a958-f722746d2bdc", "text": "drone shoot of the nuclear explotion in valdivia , chile . "} +{"id": "3003936", "video_name": "3dc454f4-70ba-5f36-ad02-f91e5d06b207", "text": "A very cute fluffy anthropomorphic White cat with huge green eyes, pink ears, and a mermaid tail, sits on the river bank, laughs. "} +{"id": "6003418", "video_name": "352801b8-5691-5266-a5d4-ae7757099061", "text": "big tree swaying in the wind niji5 16:9 "} +{"id": "1003971", "video_name": "494e4a07-38a5-571e-a83d-040f552e6075", "text": "a girl dance in the living room, in front of a fireplace and a Xmas tree "} +{"id": "4002232", "video_name": "3ae59311-787d-5d69-acca-ead295d4f578", "text": "Display the princess forming alliances with a diverse group of characters. Each one is uniquely designed and brought to life in intricate 3D detail "} +{"id": "0006385", "video_name": "2b8dd5d2-e003-5664-af3e-a28c7f623869", "text": "taylor swift dancing shake it off"} +{"id": "7002701", "video_name": "28cd9119-9aa0-51f2-96ea-79cd629cc316", "text": "A rainbow arching across the sky, bringing hope and comfort. "} +{"id": "8002768", "video_name": "1cc33216-4935-5b66-94f8-dc57fe564c90", "text": "there is huge world in the cochlea world "} +{"id": "1005823", "video_name": "6b0279f0-fcde-5e51-a9d7-6a7def6958d8", "text": "movie poster vertically oriented, TIGER SOUP is the tittle of the movie, 90s american circus is the theme, Bill Gold style, masterpiece "} +{"id": "8001691", "video_name": "aa6e766b-6373-571a-a3c5-f3320948da07", "text": "superhereos in love, romatic, kiss, joy, cinematic "} +{"id": "8002425", "video_name": "cb5380d1-0448-570e-973a-1f5352d38789", "text": "salvador dali art style, inside huge building, clocks are everywhere and almost melted "} +{"id": "2007507", "video_name": "3f8ac07e-7f50-5d02-84a4-7ecd94138110", "text": "gnome artificer birthday, fantasy, dreamy, wonderful, fireworks, 4k, cinematics, zoom, smooth movements "} +{"id": "2005026", "video_name": "ea481e8c-c4ed-5227-bc97-bfb67473c44c", "text": "animal body Plan evolving rapidly over time "} +{"id": "2003073", "video_name": "5266118b-aaae-555b-b5cb-2b87a5d97713", "text": "Key Moments: The sound of slow footsteps behind them, faint whispers echoing through the corridors, and attempts to force open the doors of their rooms, all contribute to a sense of impending doom. "} +{"id": "2007030", "video_name": "3587c273-bf2b-55ca-bd11-262552338d58", "text": "a rainbow tornado spins and travels through a town "} +{"id": "0004519", "video_name": "0a71ac69-2eb2-5d3b-80ac-c4d9b3dd0030", "text": "a diwali background with podium in the middle and home textile and furnishing like sofa, curtain, pillow, mattress etc in the middle "} +{"id": "0005565", "video_name": "1cfb95c5-c518-595c-9e18-dc937124a571", "text": "People began to smile in town, and the sun shone even brighter. zoom in "} +{"id": "8002022", "video_name": "4ed40062-ff90-5bf4-a705-c99c73fafbd0", "text": "realistic video Physiotherapy session for a person suffering from illness "} +{"id": "4003184", "video_name": "c36dc8f6-a659-5741-9c91-358b2cf32bac", "text": "teacher explaining present simple tense of English language "} +{"id": "6002837", "video_name": "dcd54fbe-6aff-5675-bf00-bc2d85f15dc4", "text": "the bot walks through the desert "} +{"id": "0004398", "video_name": "083c0bac-04f5-53a6-aa16-4ae69403381a", "text": "hot girl character anime singing and walking "} +{"id": "5001912", "video_name": "72d82482-27f6-5985-9330-5c4703534838", "text": "A farm,rolling hills and gentle slopes, rows of coffee plants, birds, the rustle of leaves in the breeze, stream. "} +{"id": "1006128", "video_name": "70541159-eb7d-5bd7-b1a7-ccbe837ec1e4", "text": "a Chinese instructor teaching extremely flexible gymnast children "} +{"id": "7002227", "video_name": "a6b890a9-fb1c-58ed-a668-77af211eb24f", "text": "The cat is wearing a black top hat and leaning on a cane, looking like a gentleman. "} +{"id": "4004179", "video_name": "d829f76b-9f9c-5754-bed7-920dd0997282", "text": "A young couple holds hands tightly as their roller coaster train twists and turns through a series of loops "} +{"id": "0003761", "video_name": "42e80367-fe33-5b4d-bd66-4979d936543b", "text": "Render a comical 3D cooking scene where Sheikh Chili attempts to prepare imaginary Pakistani pilaf, complete with traditional utensils and ingredients. "} +{"id": "4004600", "video_name": "1976a975-c620-5350-9af3-842d82d99f05", "text": "The Simpsons, sitting on couch, eating popcorn, realistic, detailed, quality "} +{"id": "8002243", "video_name": "5ce70f78-c6dc-5140-88d8-c12be36892d2", "text": "Queen of ancient Tree , beautiful forest "} +{"id": "2004478", "video_name": "323224f4-fcac-53dc-b4bc-0125b426891a", "text": "in black and white old silent movie film, children in a war parade new york newsreel, in the style of black and white 1900s expressionist silent movie "} +{"id": "6004029", "video_name": "8088aa60-153f-509d-88ee-4387fe8f4451", "text": "pixar style animated shopping mall full of holiday products "} +{"id": "0003312", "video_name": "3b69031e-25b9-5eda-a592-e5d99385cc22", "text": "An establishing shot of the Doric columned old building of the California Capitol "} +{"id": "2005725", "video_name": "e4aea97c-0a1e-5d7e-9586-3cdb0ebdddaf", "text": "90 second video of five human like frogs on stage playing music instuments in a rock n roll band "} +{"id": "0006425", "video_name": "2c22090b-126b-556b-af42-b2e5b6eabbf3", "text": "character\u2019s motivations for using elysium\u2019s technology unveiled "} +{"id": "6002655", "video_name": "9ef828ab-5ad1-5de8-b210-8c6a3414553e", "text": "A little Chinese girl is dancing gracefully among the flowers, and the willow tree next to her seems to be waving at her. The language sparrow in the sky is hovering above her head, and the little girl looks very light and graceful in her movements "} +{"id": "3005526", "video_name": "42c9d8d2-a91a-53fc-a712-f4366a0a34b0", "text": "A futuristic meeting of workers in the film industry they watch artificial intelligence take over their industry "} +{"id": "0005275", "video_name": "17ada198-97b9-54fb-8fcb-1896341a51f5", "text": "a little girl talking with her friends "} +{"id": "6002186", "video_name": "efb682b0-15a2-5b6d-9765-9445144c6544", "text": "pollution and smoke from city going onto girls face "} +{"id": "1006257", "video_name": "729d32fd-f501-5ec3-a196-6e324b46e0d2", "text": "an army veteran looking at the camera "} +{"id": "8001918", "video_name": "ab07fecd-98b3-55a9-9b89-31e516d342c6", "text": "a man that is holding his phone that is glitching and smoking comes off "} +{"id": "3003153", "video_name": "a12f331d-a68a-506d-8181-d5d1c34b3f2a", "text": "The sun was setting over the horizon, casting a fiery glow across the sky. The clouds were ablaze in shades of orange, red, and yellow, and the water below reflected the beauty of the sky. "} +{"id": "7003177", "video_name": "adfea81f-c988-576f-a6ab-395a22c3e143", "text": "An Girl with a bow and well "} +{"id": "0003175", "video_name": "3898d85c-74ee-5668-ba19-3343d7a97e50", "text": "1990s experimental French film, young man staring down the lens of the camera close up, cars driving past 4K, 16:9 "} +{"id": "3004213", "video_name": "0bd18703-bed2-5467-babd-8fa08048030b", "text": "orcs in space, lord of the rings sci fi movie "} +{"id": "8002057", "video_name": "147dc3a9-f725-5caf-864b-14856d4c726c", "text": "Little Nightmares character waking in a room full of black balloons "} +{"id": "6004094", "video_name": "79bb6f2b-2ed2-5fd2-8b1e-3c9678ea6da2", "text": "avatar movie blue alien in the futuristic space city "} +{"id": "2003520", "video_name": "0ad15808-d7c8-525a-a095-6c17c7de5a42", "text": "A white cat and a black cat laugh while watching the cartoon Tom and Jerry on TV. "} +{"id": "2006551", "video_name": "1805c61d-5cdc-50c4-a313-050f22e88f79", "text": "create a logo for a business of computer courses called, VirtualTech Explorers, vector, simple "} +{"id": "3005628", "video_name": "e0a38820-46e8-5f88-a60c-b6d113df0fad", "text": "a boy try to comeout from heart "} +{"id": "2006471", "video_name": "0139f146-3b09-5b9d-b614-89db39f68d0c", "text": "Pov video. playing in a garden. Wide Angle, First person "} +{"id": "3006394", "video_name": "5b0d1923-bb93-5190-a2e8-60b9e0975924", "text": "Fans of the Argentina national soccer team in the stands supporting their team "} +{"id": "3003998", "video_name": "cf40c534-e9c9-5b81-98ad-bcbd394d1124", "text": "soundwaves, forming an abstract and dynamic technology, sleek and modern visual elements. Columns. Spirals. Matt. Glossy "} +{"id": "7003502", "video_name": "d740e41c-7eb2-5a3e-b7f8-55d110a20ffd", "text": "a chameleon wearing a mask and holding a drink "} +{"id": "2006778", "video_name": "0a3e493f-ed70-509c-a400-22af64a92eea", "text": "pinky skirt do K Da dance on the moving train "} +{"id": "0003901", "video_name": "456ec39e-44ce-53d7-8484-cc8f159db43f", "text": "A pretty girl who looks like Liu Yifei, dancing in a Chinese dress. "} +{"id": "2004195", "video_name": "62bbca7a-2ac9-593a-8da0-af708ae717e2", "text": "Move forward quickly Message: 1 Attachment "} +{"id": "8002940", "video_name": "27c283c9-8a60-503f-89fc-ea02a6361f99", "text": "balenciaga, 1980s video, realistic hulk flexing jaw muscles "} +{"id": "3005034", "video_name": "b9953a2b-7029-5a49-9b92-737ca5717aba", "text": "hungry red dragon eating fish 16:9 "} +{"id": "2007265", "video_name": "54a3275e-f3cb-55e3-9a17-9f755624a45e", "text": "The silhouette of a Chinese Mongolian general riding a horse,war theme, determined expression, medieval clothing, standing pose, high angle view, preparing for battle, cloudy sky, tense atmosphere, military camp, historical moment "} +{"id": "2003902", "video_name": "8e0290d7-b8fa-5dd8-98f9-f33478caf8b4", "text": "Elon musk drinking coffee watching sunrise beside full glass window "} +{"id": "8001234", "video_name": "eb9eea22-5499-54ef-93af-2c7033b33286", "text": "in a world of princesses be a samurai Message: 1 Attachment "} +{"id": "1006655", "video_name": "79e85a28-cc5a-5f3f-803e-b908ad124951", "text": "two boys play on the board "} +{"id": "1004901", "video_name": "5a93569b-6738-54fe-a47f-e71ad6a77474", "text": "evil santa claus laughing at children. motion 5. slow pan "} +{"id": "1003994", "video_name": "49fb7f15-9eb1-585d-867a-11f74832c7f9", "text": "wright on the coffee Sonce ya tebya lyublu "} +{"id": "7004176", "video_name": "38dac227-cb43-552c-a948-b2632f3e6313", "text": "Tonal colors, high contrast, and a rich technicolor palette convey the natural beauty and playfulness of the Cyborg fox and its surroundings. "} +{"id": "6002664", "video_name": "b08ca889-fcf5-5a63-a4c9-815706acc53d", "text": "react like a cat fighting with snake cat and boy both eye blinking wind blowing cat running "} +{"id": "8002497", "video_name": "f3701df0-81ea-5019-8006-3a5995cd6dd2", "text": "a male teacher is teaching in the school with students "} +{"id": "2007034", "video_name": "e4c5af5d-0bf1-519f-a8e3-708bc8b528ea", "text": "a visually stunning and conceptually rich scene, depicting the extraordinary connection and synergy between two minds through a symphony of neural signals. "} +{"id": "3004085", "video_name": "0a2eec88-fb1f-5176-ae9c-d2bc78c90096", "text": "cell phone screen with a photography of the back of a girl in surrealism style "} +{"id": "0006994", "video_name": "3661a3cc-adc3-5c25-b0b6-5cc3a1c78d87", "text": "snapdragon cartoon firing lasers into a busy crowded city "} +{"id": "8001849", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "A little girl sitting next to many puppies and having many climb over her while she is petting them and laughing "} +{"id": "1003934", "video_name": "48a43b1c-2902-5043-a303-9f0e08a73b5c", "text": "superman trading at the stock market "} +{"id": "4004642", "video_name": "b166fe0e-395a-5dfa-b4e1-1fe4082133c6", "text": "create the small twon that town name is ravenswood "} +{"id": "0004857", "video_name": "106072aa-a4ee-53fb-b2e8-1522d5e3fd88", "text": "A long haired girl laughed and jumped off the bridge, landing steadily "} +{"id": "6002062", "video_name": "1eb970fb-e149-510a-81fb-29bb8dadd8de", "text": "an empty space of darkness with a small spark of light "} +{"id": "3005118", "video_name": "fff04adf-4eb0-5d24-b546-5cb7042a3723", "text": "Subject Action: Transition to an animated universe model, showing galaxies, stars, and planets. Camera Motion: Slow rotation around the animated universe, showcasing its vastness. Scene Description: Introduce narration about TOE encompassing everything in the universe. "} +{"id": "0005938", "video_name": "2383c5e0-ae4b-56cb-83ee-baaf0b3a5bf6", "text": "In the forest, Mohan beckoned to remain silent in his house cartoon "} +{"id": "3006115", "video_name": "2def8b72-dc48-53f7-afa7-05d8841fcee9", "text": "cinematic little girl hiding in the corner of a big empty old fashion class room "} +{"id": "3004027", "video_name": "9a9a7f9a-5390-5bfb-8761-65435ab9ef21", "text": "Cybernetic,inter dimensional technologies project,futurism, by John Berkey large asteroids made of labradorite, asteroid field in background, by John Berkey, detailed to harness power from star systems, black holes, black hole Reactor ,container chambers, breeder core , hyper realistic, futuristic international power station rigs, outer space,sci fi concept art, black market, industrial engineering, dark orange red radiance rainbow prism.Ashley Wood style . "} +{"id": "3003539", "video_name": "6d0fefef-cee5-5bde-81f8-570cf25adb27", "text": "birds chirping excitedly outside the grove, camera zoom in, "} +{"id": "3003909", "video_name": "e557db32-36bd-518e-92ec-48cdb682ebad", "text": "giant machine made from human organs "} +{"id": "1005599", "video_name": "67025fcd-f04a-5aa2-8fa2-b7fc89ea87f6", "text": "theater room, with 6 seated people, and the room fully decorated with christmas assets "} +{"id": "2003191", "video_name": "08c4d952-b066-5187-a273-6cf4e1f65fec", "text": "create a scene with three friends laughing "} +{"id": "8002454", "video_name": "19e0d6e3-5187-53d1-a6a9-ffd1399b54f9", "text": "two lion King together walk to slow motion side by side Message: 1 Attachment "} +{"id": "8002799", "video_name": "eb040bc2-707e-5bca-9eab-a2c4ef8502f4", "text": "an elegant pvc gentleman holding a gun in a crystal pyramid hallway, spy movie, chrome pvc symmetrical kamenrider mask, pvc trench coat, symmetrical nouveau serval, underground parking, holographic rubber gloves, liminal matrix, black and red 1970s photograph "} +{"id": "1004145", "video_name": "4cc23bd0-7413-5f42-9362-7ad8cc89c836", "text": "Generate an image of the serene village of Dholakpur, nestled between rolling hills and lush green fields "} +{"id": "8002950", "video_name": "c57459c4-7ec2-5f63-90fc-1bdaa1a5ca3f", "text": "Kids, witches, and villagers enjoy the carnival together. image cartoon "} +{"id": "7004230", "video_name": "30649783-d637-5e71-b9c2-863f427c7385", "text": "a trailer for a new hero movie "} +{"id": "3004999", "video_name": "059c0534-77da-5efc-a2b5-c7dcfaf7f872", "text": "two powerful african women in a dynamic fight "} +{"id": "8001092", "video_name": "79ca4404-3d32-577e-ac79-3402f658f154", "text": "Spartans fighting with bats in battle, Old Greece "} +{"id": "0003254", "video_name": "3a156432-4820-54f6-b806-bdabd6a99181", "text": "cute animated cat character at school "} +{"id": "2003578", "video_name": "3c2ded77-9369-5995-9552-55ca1cb837a7", "text": "Map of Brazil with indication points in 23 states. Realism "} +{"id": "7004476", "video_name": "a49a19d0-fbce-5b18-84e5-1e47d52d33bd", "text": "world war 2 planes fly across the sky dropping crystal balls over withered flowers "} +{"id": "8002245", "video_name": "fdfc0083-3fd6-5427-88c2-e2acb3ac455c", "text": "delete everything and add fake turf with people standing on it Message: 1 Attachment "} +{"id": "4004540", "video_name": "6c27a6d8-9f57-5e55-bba4-f43d3862ec6a", "text": "nike logo sneaker, all colors, hyper realistic, hyper detailed artgerm, colorful neon splashes, symmetrical "} +{"id": "2005958", "video_name": "77ba4667-1d79-539c-a16e-821a8fe6045a", "text": "draupadi a hindu mythology queen with emense beauty "} +{"id": "7004562", "video_name": "14aa5eef-6c90-516e-9e4a-cf16db781e34", "text": "Create a modern animation made from many different modern website interfaces in different business areas, and at the end animate the logo of a web studio called Triple wave, video resolution 16k "} +{"id": "4004052", "video_name": "6c35562d-c2ed-597b-885d-74bf5ce211fe", "text": "astronaut in space and in backgound there is a universe "} +{"id": "3006795", "video_name": "ef61af42-2c6e-53b4-96ec-baa56e29c449", "text": "Every morning, Lily little girl and Whiskers cat would embark on grand adventures. They explored the secret corners of their garden, chased butterflies, and imagined they were brave explorers in a wild jungle. "} +{"id": "6004080", "video_name": "153d9d1c-7faa-5672-89dd-d9080b7a54ce", "text": "cul de sac road with houses on it and light rays coming through the trees "} +{"id": "6002709", "video_name": "3b5db755-aa10-5809-a890-7a79fe0d54d9", "text": "a red fox hunting in a forest at night with fireflies and luminescent mushrooms "} +{"id": "3003531", "video_name": "7fc3ca3d-83b5-5661-971b-eb7b52908238", "text": "A golden key unlocking a treasure chest filled with gold bars and money. "} +{"id": "3004344", "video_name": "cbf6dfa2-99f3-589d-bee5-6239750aac6e", "text": "a big flower with blue eyes "} +{"id": "8003138", "video_name": "04d460aa-9fec-523f-af7e-05152277667d", "text": "juice wrld and pretty goth girl at rock concert "} +{"id": "2004130", "video_name": "6e6083ef-90b7-5b50-a887-402d28f55bc4", "text": "The multidimensional space of interstellar travel "} +{"id": "8001505", "video_name": "123b66ab-be7b-570a-8460-648bb1a01081", "text": "A divine celestial symbol covered in fire and clouds around it like a golden sword that is floating "} +{"id": "4004533", "video_name": "f6f33468-04b8-5716-b76e-b9280b26f55b", "text": "a swordsman riding a horse on fire "} +{"id": "6002651", "video_name": "da1d8668-d131-5d8b-bc17-27217c7483bd", "text": "A dancer rehearsing in an empty studio, capturing the fluidity of their movements, the precision of their footwork, and the emotion conveyed through their performance. "} +{"id": "4004900", "video_name": "0c0ade66-ab42-5c33-bb27-adeeca1e5bd1", "text": "A flock of migratory birds soars gracefully above the sheep. The camera pans upward to capture this natural spectacle. "} +{"id": "4002975", "video_name": "9c3e36d3-7566-593e-bb5e-7e4a28aab6ad", "text": "cloudy sunset in the beach Message: feelthebalance (Font: MODERN) "} +{"id": "4003756", "video_name": "93c6281c-100c-5804-9c89-496a9b679c3f", "text": "astronaut floating in space trying to grab floating oranges "} +{"id": "7002100", "video_name": "b7e4219d-4d8a-59ad-b837-58d4e6e7a871", "text": "christmass tree at macys parade on dubai "} +{"id": "6004773", "video_name": "ee461562-733f-5aa3-95b7-7edbb1efb591", "text": "A couple is showing affection to each other. The wind is blowing. The flowers are moving. "} +{"id": "2005694", "video_name": "4cd6fc6d-6818-5f73-8556-2fbfe8046d65", "text": "Bugatti car moving fast at road "} +{"id": "2007873", "video_name": "eb38fd3a-8a8c-5ccf-a631-15dbefbf5473", "text": "Wireframe black and white abstract donut shape rotating "} +{"id": "1005477", "video_name": "649d6e99-543a-563b-8c9d-ac1a13aafe6b", "text": "A quaint library filled with gothic novels and dim lighting. "} +{"id": "2005614", "video_name": "e4f05bd7-7c43-5be1-a39a-e787fa005017", "text": "a anime man waking in a rainforest Message: forest (Font: MODERN) "} +{"id": "6004040", "video_name": "17228dd0-1baa-5b25-bf58-e6c40852f916", "text": "formula cars racing in a futuristic city "} +{"id": "3006487", "video_name": "e70f6c20-b055-53da-b299-fd5ef1a49768", "text": "AONB HDR Distant China Doll Abandoned in field red and White lighthouse in the distance "} +{"id": "2006899", "video_name": "43bcc54c-08a1-5b4b-bf04-45fc0627c7de", "text": "Rama and Sari are two divers who love to explore the underwater beauty. They often meet on the beach and talk about underwater beauties. One day, while they were swimming together, Rama gave a necklace made of pearls to Sari as a token of his love. Sari is very happy and thanks Rama. "} +{"id": "0003306", "video_name": "3b54935c-5f0a-5667-aaac-eb337943333d", "text": "Beautiful girl dancing around the fire looking up to the stars in a distant valley at night "} +{"id": "3004771", "video_name": "277615d3-f99f-5732-9173-73aea3c22c13", "text": "a bladder empty fill to the full bladder "} +{"id": "6002867", "video_name": "f0dd0f01-c580-5de8-b9e4-9f96c9f488b8", "text": "inside a starship firing , there is a blue fire inside the spaceship "} +{"id": "6004327", "video_name": "543c0580-b22f-5a49-a919-1b3f28cb570b", "text": "E.T biking with Eliot in the front rack. Background a very large and slightly orange moon on a starry night background. "} +{"id": "3006184", "video_name": "2001c181-0fbc-5545-bb1c-b2317b0f5c3b", "text": "move the moon and add people around looking the moon "} +{"id": "3004342", "video_name": "fd5fd11c-ecca-5e5a-853e-e00051b89161", "text": "A Boy with a confident and determined expression, holding a sword or a weapon, ready for battle, in the background moving cloud timeleps "} +{"id": "3003873", "video_name": "a2ce2994-02b5-547f-bedf-03c40f36cbb9", "text": "a boy and his yellow cow. country road. trees "} +{"id": "8003877", "video_name": "4990c849-6f5c-52b9-8ee3-96438d2c64b9", "text": "a green aurora bore is seen over a lake in the night sky with snow on the ground and trees, Alexander Jansson, glowing lights, a jigsaw puzzle, space art "} +{"id": "0006643", "video_name": "3021b470-7b35-51c7-a5cf-a19622d33075", "text": "Dogs bs wolf fire jacket and the blue shirt "} +{"id": "2006335", "video_name": "61bdf7c9-db34-5c53-91a5-c03352fac48b", "text": "a old book map which pages are whole "} +{"id": "6004222", "video_name": "cb38415c-e3d2-53dd-8064-73f58ad9e868", "text": "long realistic video that telling a love story "} +{"id": "3003654", "video_name": "862d7937-c3e9-5ebc-9e7e-13a42662a8db", "text": "man holding a crying child as they flee from a burning city "} +{"id": "6004584", "video_name": "03d1bb8f-db36-5a95-92ee-2ddaafaa31a6", "text": "an old mom yelling at her little girl. the girl has red hair "} +{"id": "8001531", "video_name": "3014fd17-27ef-5e2a-a6b2-abb0c99d6c62", "text": "create a video which shows a makeshift robot writing on paper, in the centre of a dark room lit by candlelight "} +{"id": "0005186", "video_name": "164500fb-1099-535d-9e80-c57a9b722e1c", "text": "a very long, metal cable, completely entangling a microphone and also a cassette radio ancestral ethereal extremely realistic highly detailed movie spectacular "} +{"id": "4003704", "video_name": "b9bc5475-7f73-5f8e-a9c8-fbca3fcaabeb", "text": "A white cat lying asleep on a blanket outside, under a twinkling starry sky. The glow of the moon highlights his detailed head. "} +{"id": "7004519", "video_name": "ef209acc-1fd2-5b84-84c4-8f9658a1f548", "text": "hard candy Message: flp (Font: MODERN) "} +{"id": "0005716", "video_name": "200a0029-ea48-5ab5-ad29-95f625faf29f", "text": "There lived a young man named Karthik in a small village. He lived with his family and had a normal life "} +{"id": "1005568", "video_name": "667b43f1-992c-5c31-a816-4afa9ed874f6", "text": "Jenny collected various rumors from nurses, doctors, and janitorial staff regarding the source of the cries. It was said that the hospital was once the site of a bizarre and terrifying event, and these cries were the harbinger of a similar occurrence. "} +{"id": "6002016", "video_name": "20a1abff-e1e2-519b-8fc8-d4c5f4dd46f8", "text": "healthy Brazilian beach girl drinking a smoothie "} +{"id": "0005724", "video_name": "203028c4-05c2-599d-b65f-c9f40592296c", "text": "light rain coming down into the grey quarry "} +{"id": "2003766", "video_name": "d3dfbfa2-f8f5-55a6-97d5-90da27d608fb", "text": "pyramids in the desert with a splash Message: ntt (Font: MODERN) "} +{"id": "4004183", "video_name": "7bd4a6a8-025e-5201-a6e4-ca7391df0022", "text": "Real alien being walking in a field, super realistic looking. Grayish color, big head, black eyes. Walking in a wheat field. "} +{"id": "5001398", "video_name": "244dc793-82c5-5ddf-8e25-d5e5490987be", "text": "moose with wings , winged moose, flying in the sky among the clouds, blue sky "} +{"id": "2006285", "video_name": "61b37828-1c4b-53db-bc56-88bf02e899c1", "text": "2 porsche 992 GT3 RS racing "} +{"id": "8003374", "video_name": "5a180519-7569-5290-8bbc-87331d947f38", "text": "In the vast expanse of the universe, a single leaf falls gracefully from a towering tree. "} +{"id": "6004198", "video_name": "5b5fd6e8-7ed2-5804-9bee-3e97a43fcdbc", "text": "oil paint london with big ben tower and sherlock homes running with time "} +{"id": "6003775", "video_name": "7110d3e6-8d8e-5fc4-9a40-aba815fb73ee", "text": "The car was speeding down the road, thunder and lightning in the sky, and rain was pouring down Message: 1 Attachment "} +{"id": "1003197", "video_name": "3ac7a406-de0b-5994-ba94-d466270015d0", "text": "A group of city pigeons, forming an alliance with Remy and Benny to protect their shared interests.Animated cartoon "} +{"id": "4004447", "video_name": "d5c2e12e-93f4-5a89-ae21-09927aff88e8", "text": "pagans practicing ancient rituals and traditions "} +{"id": "7003018", "video_name": "0699c6ad-bdd2-5521-8e8a-e992ad69ef71", "text": "a small yellow dot encircled by a large group of red dots, motion 2 "} +{"id": "2004311", "video_name": "5de97bbe-a245-5cc3-9941-76a0801edaa4", "text": "grass seeding growing and breaking the surface of fresh soil "} +{"id": "3004652", "video_name": "cf558df1-87ef-570d-ad17-43c62fd0ffdb", "text": "a beautiful indigenous girl from Cusco, anime style "} +{"id": "3006214", "video_name": "d1a09a27-0ac8-53a5-ab9c-d678cea44966", "text": "a random animation video of your choice "} +{"id": "6002147", "video_name": "98180f53-9b3d-5db5-904e-48fb001761d1", "text": "A colourful forest of glowing red and white mushrooms against a surreal cityscape. "} +{"id": "3003367", "video_name": "feafa957-3544-5531-93e4-4a08727e5b80", "text": "a boat in stream with a beautiful garden with pink flowers and green Grass, fantasy, unreal engine 5, dramatic light, epic, beautiful environment, realistic highly detailed, realistic texture, ultra hd "} +{"id": "1003682", "video_name": "43dc1a2e-464b-5458-bcea-0acdba384e69", "text": "Pharaoh and his army realizing that they are doomed, depicted with a look of panic and fear on their faces. "} +{"id": "2007057", "video_name": "240be227-9ac7-53dc-9a9c-03987f8dc1cc", "text": "birds chirping in nature with factory in the background "} +{"id": "2004168", "video_name": "95269063-472e-58db-a56d-22ca58d2bc78", "text": "create a video on lord ganesh moving "} +{"id": "5001137", "video_name": "b8cfdeff-faf7-5203-a3a8-9e3ef72dd08a", "text": "3 cubs of tigress walking beside her in forest , realistic "} +{"id": "0005564", "video_name": "1cf9f9cc-f4fc-58ec-b00e-c7473713cab9", "text": "samurai walking and birds flying and rubbit eat and makit animated "} +{"id": "6002077", "video_name": "a0ff05e5-af9e-510e-8cde-9cd6dc8a8c4c", "text": "A cute girl of 25 years old with long hair wearing a nice frock and having such an atmosphere around her is giving an invitation to someone who is setting up. "} +{"id": "1004286", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "fire in the sky Message: 1 Attachment "} +{"id": "1003554", "video_name": "418bbf1f-47c1-56e8-951f-5f0e79bdce71", "text": "A bar is located by the river. It is decorated in an industrial style. The street in front of the bar is bright and lively. The door of the bar is made of iron. A beautiful woman walked to the door of the bar and opened the door. "} +{"id": "1005510", "video_name": "6573a46e-0db4-5843-b520-cbb978a2774a", "text": "a waterfall of prismatic color, rainbow, vibrant, zoom out, iguazu drone footage "} +{"id": "4003974", "video_name": "c233932c-8d47-59ad-9a1e-9c91fd2a08e8", "text": "10 ladies queuing into a hardressers, can\u2019t wait to get their hair done "} +{"id": "2004634", "video_name": "7642ebb2-a7fe-5c82-9bb0-ce89bd63e4c2", "text": "tesla roadster speeding in philadelphia, PA "} +{"id": "4004973", "video_name": "c7b242f7-a04d-550e-b1a4-d1249f9497a5", "text": "a high resolution logo for an online marketing agency specialized in crypto currencies field with the usage of bear and bull referring to the market. "} +{"id": "2005631", "video_name": "6a8e00a0-cba8-512a-ba44-e65958765a29", "text": "a car stopping on a road then another car crashing into it "} +{"id": "2005220", "video_name": "5d5e81a7-babb-5e32-b6e3-9ce1b36a6c0c", "text": "a brown rabbit in a barn is looking around "} +{"id": "2003963", "video_name": "c4985a7d-554d-5947-850f-f4f7ca6566f2", "text": "mike tyson, cartoon, black and white, 1940, silent movie "} +{"id": "5001409", "video_name": "00a5a3f9-066e-5d75-9c44-b7592c996b13", "text": "2D animated fairy on a 80s movie style flying into a field of flowers at night with little colorful lights all around her, cartoon, vintage, Fairycore, "} +{"id": "3003359", "video_name": "163f09f7-d4be-500b-be03-8fc48806982d", "text": "Set up a prank where people open a box expecting a cute kitten but find a mysterious mathematical problem to solve instead. Film their reactions. "} +{"id": "3006915", "video_name": "f4c5cec6-cd6d-52f5-b978-f93f180ec377", "text": "words written on the stemp of the moving tree "} +{"id": "4002147", "video_name": "fef79394-075e-59ba-b722-5048a5977be2", "text": "A cinematic shot movie of a scene of a redhead boy teenager with a shirt in his hand in a bathroom sink, early in the morining sunny day "} +{"id": "0005342", "video_name": "191b2e83-bbb7-5041-b91a-cb53869e9454", "text": "3D, Disney Pixel, african american little girl "} +{"id": "2006944", "video_name": "74250790-b3da-5151-a907-f190f2ded18d", "text": "A bird fly in the allien sky "} +{"id": "3006707", "video_name": "843c9267-9fa0-55f6-90b0-4de74777768e", "text": "a nuclear engineer finding finally the holy grail of energy generation: a beautiful nuclear reactor made out of unicorns and glitter "} +{"id": "1003598", "video_name": "423e4709-1759-5e26-ad7e-c7b97632965b", "text": "The Quest Begins squirrel decided to embark on a quest to find the rare Rainbow Berry that would bring eternal happiness to the forest. With the help of his new friends, a friendly rabbit named Rosie and a chatty bluebird named Benny, they set off on their adventure "} +{"id": "1004698", "video_name": "57506225-307c-554b-9bc9-8c526407c3a9", "text": "golden eagle in the forest on a tree "} +{"id": "2007605", "video_name": "a03107d6-704a-5ffd-9631-790abccda9c5", "text": ": universal movie intro with the word aldimercado "} +{"id": "2005462", "video_name": "04cd9314-bed7-57b5-bece-3b88ff7bd9f9", "text": "a yellow cocoa fruit falling from the tree "} +{"id": "3005124", "video_name": "d27e4981-047f-5b78-b7b2-e82fce133453", "text": "The Colorado River has carved this natural wonder over millions of years. "} +{"id": "2004209", "video_name": "6e0437e4-6deb-5abe-a37f-e70d79a06c39", "text": "man lifting panipuri from the dish, clear action, "} +{"id": "0006243", "video_name": "290e6f3e-09f6-57c6-a6a1-2da331685717", "text": "magical crystals floating and spinning in the air, behance, by Oskar Schlemmer, prismatic, invisible "} +{"id": "7002000", "video_name": "a5857bcb-bf5f-5efd-b6b4-d308b5ae3784", "text": "stormy sea, byzantine age ship sailing, epic cinematic drone footage, oil painting style "} +{"id": "1003233", "video_name": "3b8a4a22-6d18-5387-9b2a-bfa59b667470", "text": "Create a video featuring a refined and graceful individual of Asian descent, elegantly presenting a premium credit card in a luxurious shopping mall. Dressed in stylish and sophisticated attire, the person exudes confidence and professionalism. The mall is adorned with exquisite decor, reflecting affluence and exclusivity. The individual engages with potential clients with poise, highlighting the exceptional benefits and prestige associated with the credit card. Every aspect, from attire to expressions and the opulent atmosphere of the mall, is captured with pristine clarity and elegance. "} +{"id": "3005994", "video_name": "36fd942e-fb9d-57a1-a049-bdbb59e43605", "text": "cinematic shot black color grid The spirit of Leonidas embodied in a striking visual, representing his unyielding determination and the sacrifices he made for the future generations "} +{"id": "3004322", "video_name": "06fe4b5a-68a1-559f-b11c-90b78c61234e", "text": "In the ancient world, fires spread "} +{"id": "3003598", "video_name": "7f66a72e-d545-50a7-b2a4-c4791a24a9c7", "text": "first person perspective, jump off from rooftop of a skyscraper "} +{"id": "4004623", "video_name": "a749c847-c6e2-524f-b1b5-92cb659fc851", "text": "glowing particles that look like insects are attracted to the camera "} +{"id": "2006689", "video_name": "a13b79db-a9d5-5ac6-b2c1-fdda2fe4476c", "text": "hyperrealistic dandelion seed flying over nature "} +{"id": "3005379", "video_name": "e795c321-ca36-568d-81c8-104d75f4705d", "text": "Weed flavored Indian spice, MDH brand "} +{"id": "0005249", "video_name": "17398f46-db3b-5ea2-8def-33ef5614870a", "text": "unreal engine 5 gameplay footage in the city of Ani in Bagratid Armenia 11th century, walking in busy market square "} +{"id": "6003299", "video_name": "5809a906-5777-57da-8d6b-9795b2356d03", "text": "tiktok screen format of A locked room with a heavy, ornate door. "} +{"id": "8002977", "video_name": "59d1bd82-7d71-5779-aef2-14d8329717e4", "text": "a yello dog is eating meat "} +{"id": "1003413", "video_name": "3eff1259-db80-50e2-829a-2edf4fcaf014", "text": "a star wars style, jedis and other species together in a reunion "} +{"id": "7002736", "video_name": "fdb1d4b9-cda4-513d-958a-c7413936afd6", "text": "The whale floating in the universe, all around stars floating cypherpunk building "} +{"id": "2003843", "video_name": "38f481a2-5e1e-5e0c-a316-65ebdbb06c27", "text": "a man with a bulge near the pool "} +{"id": "2006082", "video_name": "1f14f44d-e5bd-59c7-911d-68fcd11fd172", "text": "Make an animation of Jinx holding a gun "} +{"id": "6004790", "video_name": "9eea0fa2-cded-5aa6-a4d7-4f53979eae13", "text": "Return to the serene nature setting or a tranquil scene with birds flying or flowers gently swaying in the breeze. "} +{"id": "6002883", "video_name": "8abf5084-1f8d-5316-94fe-6f40e5d54796", "text": "crochet gingerbread man and snowman with christmas tree in background "} +{"id": "1005107", "video_name": "5e23b2ee-9fa5-5833-b209-b3610aa41e94", "text": "hospital in charge male he is taking to a nurse in a hospital "} +{"id": "6003255", "video_name": "40ca59a3-94d6-595a-af8f-e6085a93bcfd", "text": "big yacht on fire, on croatian coast, tourist photo footage "} +{"id": "2007431", "video_name": "ab501def-5f34-5488-8334-df5a7bf8d38b", "text": "cowboys riding across a desert valley, in the style of a painting "} +{"id": "7004473", "video_name": "594dc1bf-fab9-5868-857e-5f84243d020a", "text": "Stockings hung with festive glee, Gifts beneath the glowing tree. "} +{"id": "7002645", "video_name": "0054d37e-69ee-50e1-b4e7-4d5befddf0ac", "text": "create a university ad with students walking on campus "} +{"id": "6002442", "video_name": "ee087078-d43d-579d-b3f4-da884e6c477d", "text": "Shining sister knows no shadows Utters mirage words To rolling dunes And your parched eyes "} +{"id": "2006619", "video_name": "4f33cc1d-7077-5d0b-99bd-ab3cb4947528", "text": "The eagle swooped down in the blue sky "} +{"id": "0006595", "video_name": "2f433c1e-7790-53e2-bd61-1aca76f17524", "text": "An Ikran from Avatar The way of water "} +{"id": "2003816", "video_name": "24ed641e-5009-52c4-bce7-142a334e4290", "text": "Cute Bengal Cat Patterns: Highlight the striking patterns of a Bengal cat with dappled sunlight, capturing its active and playful nature as it engages in a dynamic pose. "} +{"id": "4003341", "video_name": "05272491-5391-5c26-b984-3f64ee883306", "text": "make a love with the name zahra "} +{"id": "1006978", "video_name": "7fb94751-e6ef-5b41-b8dc-c34af5063a80", "text": "a large flag that says binance "} +{"id": "8001177", "video_name": "8c17b611-af61-5725-9e5f-99e680f258da", "text": "A cartoon couple sitting on a bench, the city skyline in the background, clear view, ultra hd, hd, 8k "} +{"id": "4003292", "video_name": "6199befe-779d-59db-ba3f-a191a56e4b78", "text": "The man was very happy and gave the farmer a reward , create a video , 9x16 , "} +{"id": "0006239", "video_name": "28f0183d-afcd-5b7c-9af5-fac8f4aa0d7d", "text": "Epic duel between two powerful mages in a dramatic setting. The first mage, a male of Middle Eastern descent, harnesses the power of arcane magic, with mysterious symbols and ethereal energy swirling around him. The second mage, a female of Native American descent, wields both fire and ice magic, her hands producing intense flames on one side and chilling frost on the other. The two mages lock eyes, their spells clashing in a display of raw magical power. "} +{"id": "0006390", "video_name": "2bafde53-51d1-5ad9-adbb-f0c676616fd0", "text": "blurry ghostlike people walking down a dirt road. found footage old black and white film. "} +{"id": "2005522", "video_name": "c72a3d3f-76ef-5fb9-8c14-c5efcbbe2d55", "text": "a beautiful dog Huskie ranking anterior a categoria with blue eles. 4k "} +{"id": "7004497", "video_name": "c4e8d08e-3094-5f88-8b87-0ecb0107efad", "text": "miles davis 1972 looking like a metal ai robot playing trumpet with bug eyed glasses looking down at the floor "} +{"id": "3004882", "video_name": "58ac2d82-fb29-5936-91f0-de77b7788327", "text": "gtavi partnership between humans and AI. The set is a tableau of tension, with each character grappling with the weight of their decision. "} +{"id": "2006366", "video_name": "e07e815d-1050-5393-8387-3861d27c7900", "text": "DRAW THE LETTER I in white Roman numeral swinging movement from left to right side on green screen background "} +{"id": "7003659", "video_name": "94abbe22-9d3d-58f2-b20c-2a65af63e1e0", "text": "three eyed creature from fantasy movie "} +{"id": "8001462", "video_name": "7d2804b5-269c-5bb4-af6d-05368d1f500b", "text": "a Box dropping from the sky "} +{"id": "4004252", "video_name": "d8120fee-cb62-5a3a-8141-6abe154f0053", "text": "an elf sits on a log at night in the forest and looks intently at the camera with a very scary face "} +{"id": "6002061", "video_name": "6ad06124-73a7-5112-b62e-0497f2ad5eb4", "text": "The trailer culminates in an epic final shot of the heroes and their allies standing as a united front, facing the looming alien threat. "} +{"id": "2006321", "video_name": "2b955983-90d9-5ff8-ad22-476ce0574f95", "text": "Jesus praying by himself in a garden, realism, 16mm "} +{"id": "2007578", "video_name": "9f1d85ba-e9e6-5e48-8589-adfe179c6af9", "text": "a in movement picture of a lofi girl sitting at the table contemplating the landscape through the window "} +{"id": "4004291", "video_name": "de58846e-34f5-591e-9191-a12308993ebf", "text": "a scary alien in a window "} +{"id": "4003118", "video_name": "f95f7b9f-403d-5dc3-9a6f-2abde05cd15d", "text": "boy find out something in a cave "} +{"id": "2005306", "video_name": "60a7bbb0-ffd9-5f51-98f3-3e2d2cf6dd23", "text": "the band Nirvana as a 1970 Hannah Barbera cartoon "} +{"id": "7004756", "video_name": "c9a2518c-319c-5fdd-8334-dc8e28e5b14c", "text": "a happy smiling family, animation, motion 0 "} +{"id": "3005631", "video_name": "313f25d8-a3a0-5c3a-82be-e8298b6f5858", "text": "There was a pond near the same village.On which some herds of elephants started coming to drink water.To reach the pond the elephant herd had to pass through the same village. "} +{"id": "0006379", "video_name": "2b6ff115-1ade-55cb-b83a-5e1390db4bf3", "text": "a befana sitting on a broom flying over a city at night, starry sky, city lights "} +{"id": "6004471", "video_name": "b34f5d5b-457c-521b-be6c-56331106e073", "text": "Description of mourning, departure of dog color white, man on his back looking at the starry sky and receiving the moonlight, anime style, motion2 "} +{"id": "6004371", "video_name": "4111959e-cf13-596c-96ba-489a9a46df0f", "text": "wide shot, surroundings morph, children playing and running around, surrounded by eerie mist and moonlight, slow camera movement "} +{"id": "0006593", "video_name": "2f35a1c5-6fa7-5d0a-b2f4-b29629f680d9", "text": "a girl wear a white dress is lying on the bed with white sheet in hotel "} +{"id": "7004431", "video_name": "3f87c54c-2e64-5cde-9267-9ba4350e64de", "text": "a calendar that flips from August to September and then the camera approaches until September 1 in 9:16 4k format "} +{"id": "7003160", "video_name": "97d6fabb-e7fc-536b-90cb-12fae104209c", "text": "I can run Disney Children animation "} +{"id": "6003439", "video_name": "2c0530e7-d596-59eb-9494-044be90f33ba", "text": "flag flowing with a bright blue sky as background, slow motion "} +{"id": "5001219", "video_name": "20e94006-d4b6-5c08-8ead-fba58f9b61c0", "text": "Broccoli, vegetable on stage, playing electric guitar, artistic "} +{"id": "0006737", "video_name": "320844ad-b81a-51c7-a995-6749d9a86242", "text": "A group of children discovering a large kite. "} +{"id": "3005583", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "Sun rising in mountain 3d animated "} +{"id": "4002819", "video_name": "2a6bf020-a15c-5778-b500-aebca095cdb0", "text": "3 kids in space suits look at the holographic projection map on the table and communicate "} +{"id": "2004620", "video_name": "37f01d71-4ff3-54f7-a072-85a4bc357e80", "text": "A girl in shorts smoking ciggi "} +{"id": "0006363", "video_name": "2b43017e-e4d5-5466-a5e8-9a9216438fa2", "text": "a girl on a Harley Davidson riding down a deserted road. "} +{"id": "0006189", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "In a surreal cricket match, Prince Bin Salman and President Sisi face off on a tank, with the Israeli flag as their banner. The road beneath them is paved with the blood and corpses of innocent children, as they try to turn back from the horrors of war. "} +{"id": "0006344", "video_name": "2af3a94b-93a5-5d1d-a200-94b103332700", "text": "psychedelic many hearts in water with fire and earth, wind and fog "} +{"id": "2005593", "video_name": "7411a466-9288-5ca8-a8f2-9596268ba69c", "text": "Super Mario bros running very fast in a dark castle "} +{"id": "3005211", "video_name": "ef49f875-a575-59bd-8b2e-bb5bac67776f", "text": "a young ancient chinese female concubine empress sitting on her throne and drinking tea "} +{"id": "8003910", "video_name": "447dac45-dcee-5d54-af37-f3583599d7ad", "text": "Once there was a boy who kept sheep. "} +{"id": "0003013", "video_name": "35961992-6f68-5ce1-9787-f891f36a078b", "text": "the pianist play in record session "} +{"id": "1004255", "video_name": "4ec71471-a54a-5058-9df6-64fb9363d9cc", "text": "somebody cut tasty pears fruit. camera zoom in. "} +{"id": "8001319", "video_name": "72ae5dfd-e58a-5d17-9667-c327ce819d93", "text": "The oldest brother was always unkind to his younger brother. The older brother took all the food and snatched all the good clothes. "} +{"id": "1005150", "video_name": "5edce348-45d9-5afe-a325-4a325d295650", "text": "Discussion in an academic circle, about green growth. "} +{"id": "8003844", "video_name": "24b43382-5492-576c-a1b3-56934240f492", "text": "yellow colour land with mountains and yellow grass "} +{"id": "0005944", "video_name": "23b9075d-d177-5aec-a6cb-49543a240697", "text": "close up lightsaber shallow depth of field "} +{"id": "1005297", "video_name": "61508eaa-5b1d-5f51-80a6-f5721ff61726", "text": "space with stars and nebula, with in center a futuristic gateway, with colored lights running over the surface of the gateway "} +{"id": "2007157", "video_name": "91773227-0251-5905-9fd9-9db80f1deb3c", "text": "create a video of a banana from germination state to ripen state "} +{"id": "8001174", "video_name": "08fec416-83bc-5e96-8713-0fe0d448da0a", "text": "batman, fights , banana man, minecraft "} +{"id": "3004335", "video_name": "fc1dd10c-ffea-514e-a160-6fd9b9d61d07", "text": "a teenage boy using laptop in his room, open window, curtains are flying from the chill breeze, low lighting inside the room, cozy vibe "} +{"id": "7002507", "video_name": "99d42c0a-f803-5d15-b3b2-ae503e643d54", "text": "a bunch of kids hip hop dancing "} +{"id": "4004035", "video_name": "28369c55-beb3-5044-9341-abcfa4385897", "text": "a guy standing infront of a mirror, using a comb on his amazing hair "} +{"id": "3003246", "video_name": "1affca68-696e-5bd4-b78a-89e6f78fbd8d", "text": "animate the animals and trees and zoom in to show the elephant clearly "} +{"id": "1005779", "video_name": "6a5233ff-cac8-55c0-b10d-455b95b1040d", "text": "Incorporate whimsical elements, like animated creatures, playful fireflies, and a talking cat with a twinkle in its eye. "} +{"id": "1003928", "video_name": "4878e30a-1678-5994-82fe-0e0b2f850bc4", "text": "human materialises in massive brutalist lunar station Alfred Stieglitz black and white 1900s "} +{"id": "4002266", "video_name": "d25761cd-ebfd-5f74-8c04-6c6b249e80e9", "text": "cat wearing a suit in a black sofa at a office background with a human working on gaming computer full of leds "} +{"id": "6002105", "video_name": "5b357310-8e33-5917-ad21-4424ffa30568", "text": "plucked a golden apple from one of the branches "} +{"id": "2007208", "video_name": "5b7d8cea-2a64-5360-9afd-81146e2b3173", "text": "at night a boat floating on ocean that has floating aurora borealis, clear sky with many stars and full moon "} +{"id": "8002853", "video_name": "ae82c19e-892b-5d1d-b13d-5c7c306ca874", "text": "A roman soldier with his sword drawn out in a desert "} +{"id": "6002836", "video_name": "aa2f929b-982b-50a5-bb1f-fd05b63636e8", "text": "Many dogs jumping to a pool Message: Perro beso (Font: SANS SERIF) "} +{"id": "2003233", "video_name": "00246a50-5dda-5c2b-84c0-bd81002e0541", "text": "imran khan changing pakistan future in front of enemy "} +{"id": "7002017", "video_name": "e80c349b-e99e-5b3e-a026-4677d30c4767", "text": "Completely black background! Endless sign in the middle with one dot moving on the endless sign "} +{"id": "5001670", "video_name": "f8d0ea5a-03fd-52f1-b33c-dc9065726e8d", "text": "a young woman 18 yo, raising her arms, standing under the rain, a looking at a marvelous rainbow 8k 16:9 motion 2 "} +{"id": "2005084", "video_name": "3d71885d-275c-51c8-9bcb-acbfccdedad2", "text": "in anime style: a comet is hurtling toward a blue and purple planet "} +{"id": "7002778", "video_name": "e0257c6c-51f4-552c-95d1-131a5deeba24", "text": "abstract background, visionary art, soft golds, browns, reds, psychedelic, trippy "} +{"id": "2006108", "video_name": "f7d93fe1-4acb-5b7d-bff3-f2e982f974b6", "text": "a young couple, age 20, kissing on a beach, romantic atmosphere, palms, on the Easter islands "} +{"id": "1003013", "video_name": "375ca82d-1fbb-59b8-9e1c-27e0aa02ce3b", "text": "a dawn photo through wind shield, 3 rows of lane control light above the road, 4 green arrow sign lights and 3 red cross sign lights in each row "} +{"id": "0006612", "video_name": "2f8c1073-9722-571e-ae56-d775f083fa94", "text": "Crowd of people waiting in the dense forest for someone they are scared it is a very dark night that is creepy, They are looking for some one in the distance "} +{"id": "1006341", "video_name": "740e05b9-d4c5-56fa-ad0b-7e64f9aac40e", "text": "Max lying down in a patch of sunlight, taking a break from the festivities and soaking in the warmth.Animated cartoon "} +{"id": "6004072", "video_name": "0173a2ef-f50c-5987-8ee0-4e7bdde85311", "text": "kids unpacking 1 million christmas gifts "} +{"id": "3004251", "video_name": "3ca88e53-bc38-501a-a346-c1ab328ceb50", "text": "a man doing homework in home "} +{"id": "1005023", "video_name": "5ceac785-3448-5fa7-9295-89bcb1352987", "text": "magic mushroom kingdom, psychedelic kingdom, lsd kingdom, cinematic, high quality, 4K quality, psychedelic effect "} +{"id": "1003988", "video_name": "49b18dcd-1e0a-5870-b357-3beca2a063c3", "text": "a rocket flying through the clouds, realistic, HD, 4K, drama, cinematic "} +{"id": "2004058", "video_name": "d754daef-0f16-5eaa-876b-840426d9d298", "text": "baby phoenix is born, 80s, cinematic "} +{"id": "2006328", "video_name": "ee15c459-92ee-5675-bbdc-f017c7ac8b34", "text": "Mischievous fairies danced around Leo, playfully sprinkling glitter over his head as he journeyed deeper into the woods. "} +{"id": "8001745", "video_name": "cb59aff3-5fc3-55c6-8fa6-59249d39a3f8", "text": "old haunting photo of a wounded soldier in WW1 smiling "} +{"id": "4002883", "video_name": "3a107ede-6237-5ed5-90a3-ddccdb2d1abd", "text": "Goku fights giant monsters in the city "} +{"id": "0003326", "video_name": "3baa78a3-5be7-5126-bc58-3cc73ccb792b", "text": "Display a list of languages scrolling on the screen "} +{"id": "8001595", "video_name": "bab8b980-b7ea-5b6d-b52e-ff92ea0c90a4", "text": "travel wearing full with knapsack bag with black short hair in his face as small facial hair reading ancient black gold book around camp fire with two other friends wearing green and gray and blue "} +{"id": "8002395", "video_name": "f89c2ab9-2ac4-5627-872c-83c0e22f4677", "text": "group of arabian drummers playing excited "} +{"id": "2006517", "video_name": "5903a293-7f3d-5087-8e7b-3aafd96f46e7", "text": "Create a video of a team playing football based on pictures "} +{"id": "8003105", "video_name": "04a2a144-da9b-5fe0-b206-a10ecb37b930", "text": "Wind blowing through curtains in an aesthetic minimalist living room. In landscape. "} +{"id": "2004184", "video_name": "9e650f35-d09a-5261-9e6e-374a62ddfa02", "text": "translucent flowing fabric made of light falling in ribbons through clouds, soft light, high definition Message: lockscreen baby (Font: MODERN) "} +{"id": "1003107", "video_name": "3934a495-e888-5f41-86bc-7eb0ec122107", "text": "a realistic video of gizeh pyramids flyover "} +{"id": "0004320", "video_name": "0709f838-c35d-5ade-bd8f-9dace06dda41", "text": "hyper realistic rendering of a flock of seagulls flying into the sunset "} +{"id": "0006119", "video_name": "26f0e863-0db5-54ec-a7fa-4328152b1f2a", "text": "I want a video that depicts advanced life in the year 2100, where buildings are very advanced and life is vibrant with technology "} +{"id": "0005765", "video_name": "20e9f569-44a8-56d7-abda-fca1673796de", "text": "one normal man looking at an army of evil looking knights who looks back at the man "} +{"id": "1005134", "video_name": "5eacbdd2-39e7-57ca-9dba-8c60190b510b", "text": "sandy seashore, aerial view Message: ChatGPT 5 (Font: MODERN) "} +{"id": "8001871", "video_name": "45e54534-2bb8-5ace-bef6-44cf229c9e99", "text": "In candlelight with remedies brewed, camera zoom out "} +{"id": "6003616", "video_name": "0238f2bb-f344-5622-9a4c-f0622c32e37d", "text": "a moving car bring out fire "} +{"id": "4003957", "video_name": "622e2a66-96c1-5faf-bd14-d2f736cffdb5", "text": "a beautiful river between two forest, highly realistic, very high quality, 8k "} +{"id": "2005176", "video_name": "23948906-d8e9-5d52-8cd3-3ebdb65b422d", "text": "trail cam footage of a cryptid sighting at night in the woods, creepy and scary "} +{"id": "7003023", "video_name": "3231388b-3840-5288-b209-f039366063f5", "text": "Early in the morning, a flock of sheep walks slowly through the meadow under the snowy mountains "} +{"id": "0006930", "video_name": "3574d5eb-3734-5bad-84a1-65d8e2ea01ac", "text": "a character of a girl of 4 years old wearing a bleue dress with golden color of hair, multiple angles, Studio Ghibli animation, Studio Ghibli style "} +{"id": "1003902", "video_name": "48030619-b6ae-5860-858a-58dad7a4c41d", "text": "all people in background kneel, rays of light shining, 4k, hd, animate "} +{"id": "5001268", "video_name": "72c8fab5-dadd-5abc-91e3-f5b7f77d85ec", "text": "a sharply as possible jetson style spaceship, landing at a sharp as possible ancient roman castle, a sharply as possible hd movie quality cinimatic outerspace background, motion 0 "} +{"id": "7002351", "video_name": "1315baf2-8d8d-5620-b5f3-1df7c1feb79f", "text": "plasmid moving within cell for teaching "} +{"id": "8001059", "video_name": "4682a82f-340f-5bb8-b1fa-27db5ce4b422", "text": "A cow walking across the ocean "} +{"id": "7002236", "video_name": "e5aa5bc8-4228-5ebb-bec4-77416d690819", "text": "A beautiful Asian sister wearing black stockings and high heels "} +{"id": "8001102", "video_name": "3117a61d-fdef-5f4e-8e6b-72f4559aef1b", "text": "The old abandoned house stood on a hill, overlooking the town. It had been empty for years, and no one dared to go near it. It was said to be haunted by the ghost of a young girl who had been murdered there. "} +{"id": "0005653", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "Elon Musk contemplating the landscape of Mars in an astronaut suit "} +{"id": "2005703", "video_name": "43d28869-7f6c-5379-bda9-e6c5c8f65e9f", "text": "growth of the thallus of a geranium "} +{"id": "3003652", "video_name": "cd1d32b7-76c9-53ea-90f2-1e92480423c0", "text": "a girl is dancing with a pink bunny in the forest, sunny, ar 16:9 "} +{"id": "0003039", "video_name": "35f5d2a5-50bf-58c1-a467-a1ea46a43894", "text": "a group sets traps and creates a labyrinthine path into the forest, planning to ambush the wolves during their nightly rampage. "} +{"id": "6004132", "video_name": "3d104189-3f0f-5242-ac6e-66f3aa3cce20", "text": "scifi wizard flying on robot dragon "} +{"id": "3006793", "video_name": "17521083-3643-5f85-95bc-e6d5b4075f96", "text": "a wizard in a field with mysterious lighting is looking at a crystal ball. he has a tall hat and red robe "} +{"id": "3005272", "video_name": "6532b27b-648a-5a5e-9571-44b5934169c8", "text": "a girl walking from home to school "} +{"id": "8002678", "video_name": "f09c1287-b3fc-56a5-bcec-e7bd504ccd7c", "text": "revealed its wonders one by one "} +{"id": "4004131", "video_name": "19721eb9-96c1-5f4a-a8ab-55ef353439d3", "text": "gladiators marching on the Appian Way "} +{"id": "0003213", "video_name": "395b44f6-1475-5377-8e1c-b1585ccdf1e6", "text": "red night flooded with lightning falling into the sea arm, in the sea a giant yacht tries to control the waves. 8k . realistic view "} +{"id": "6003452", "video_name": "affad493-4211-542c-98df-ff1b7b2206d0", "text": "A man holding a fish, sitting at a computer desk surrounded by cash. "} +{"id": "4002178", "video_name": "212cd27f-89c4-5a78-b051-b0e676c65b6f", "text": "a sky with three moons and a pyramid like in the movie stargate, 4K "} +{"id": "0004739", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "a woman feels tired after a whole day work, she sits down on the chair and then fulls in sleep "} +{"id": "2003684", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "Scene: A traveler is walking alone in a lush forest "} +{"id": "3006155", "video_name": "26a5d0a5-6998-5fc0-8886-94327351679e", "text": "Paint macro pictures of fantastic marine and submarine landscapes, including vibrant colors and unusual plants, creatures, and glowing objects. "} +{"id": "8002352", "video_name": "a8716de1-949a-5c98-bbcd-8dafca691dd2", "text": "man sitting on a throne of iron "} +{"id": "2006111", "video_name": "1cdc03ed-bcfd-5a96-98d9-20045c413715", "text": "polar bear eating a salmon in the desert "} +{"id": "5001760", "video_name": "e45ea414-3926-5fbf-9ac8-00ec51e193b6", "text": "LED light Message: good enough (Font: RETRO) "} +{"id": "5001895", "video_name": "b3dfbdfa-7ece-5882-b426-d9a0ce8a6fb4", "text": "a chicken in a house eating corn off the floor in the kitchen white House with black accents "} +{"id": "7004057", "video_name": "25db137d-6dcf-5e2f-8e98-39a9ecfe4625", "text": "indian ancient saint coming in caravan across himalayas cinematic "} +{"id": "8001026", "video_name": "20cda577-0498-5dde-8362-670fc853cb57", "text": "smoke billowing from the object in the astronauts hand "} +{"id": "6004226", "video_name": "ab5c3c4c-660c-5175-bd0e-bef63d1caa6f", "text": "two futuristic looking people walking out of a space ship that is flying in the space of pickles while some of the pickles explode, disney aesthetic, very cute, high quality Message: explosion (Font: MODERN) "} +{"id": "2003912", "video_name": "c32f1e93-7a06-5f07-a560-2899e26b0fa7", "text": "As we conclude our expedition into the enigmatic realm of Agartha "} +{"id": "7002577", "video_name": "a613c1a2-23a4-599a-9974-c9a1260d20e1", "text": "a boy falls asleep on the bed, some apples are dropping besides him, a realistic video "} +{"id": "4002568", "video_name": "ce331244-eb8b-5d0c-86f1-3e2142e720bc", "text": "girl studying in room on her chair on the mountain "} +{"id": "4004774", "video_name": "4814bcea-14e4-542a-9429-0b16b076c402", "text": "man sitting on the sofa with bear Message: 1 Attachment "} +{"id": "8001190", "video_name": "cf0ccf49-d092-5004-9346-a45686d93f60", "text": "A beautiful lady that is facing the camera with her back. In the background there is a sunny park with trees, a beautiful location in the nature. "} +{"id": "2003055", "video_name": "d9852fb5-5543-5081-a987-326b21211774", "text": "a group of elephants running in a village in anger, 3d cartoon "} +{"id": "1006187", "video_name": "715410a9-9817-5865-acd3-55592c2fcacf", "text": "A warm Christmas card gradually appears in the center of the screen, surrounded by festive decorations in the background. "} +{"id": "3004724", "video_name": "3aa58cbe-4ce2-520e-8814-04ce386ccd65", "text": "a protagonist cautiously exploring the abandoned mansion with a flickering flashlight. "} +{"id": "0006561", "video_name": "2eb2649b-c3de-58a2-b7fc-c8ac459c2dd4", "text": "drmatic action in the style of into the spiderverse man swing from city buildings day time "} +{"id": "1005962", "video_name": "6d8c52c0-fcc7-5d5a-ac00-37b99ba3a889", "text": "a boy dressed up as the godfather "} +{"id": "3006369", "video_name": "f64c12a6-a6cc-557b-9866-c580c53ef007", "text": "The door was ajar, on it you could read, \u201cBACK STAGE\u201d. "} +{"id": "4003365", "video_name": "cbb1c503-2171-513c-b449-5acb2a48e4c5", "text": "woman walks through the forest to the house "} +{"id": "7004481", "video_name": "f3075c9a-e217-53bd-973e-e95c3b4f6588", "text": "sun rays flickering on the walls, wind in the grass and branches "} +{"id": "7003682", "video_name": "df1175b7-42e1-54c3-a51b-7d9a914cfcd7", "text": "kids playing with huge robot in Village "} +{"id": "8001907", "video_name": "973c2b4d-74c3-5210-b9c4-0e0d3abd10a5", "text": "I uploaded this picture of a woman wearing a bikini smiling on the beach in the afternoon sunimage:mmexport1703731081472.jpg "} +{"id": "3003841", "video_name": "f68c3c68-6e91-5e56-a82b-fe7c73a1a169", "text": "teenager with defined face and short hair escaping from a drone in an abandoned building "} +{"id": "1005550", "video_name": "663056b3-07ed-54da-be78-a8daecb95fb0", "text": "Create a good quality video about trees dancing and near them in the distance 2 magicians performing their spells, video length 10 seconds "} +{"id": "3005969", "video_name": "2a63826c-392e-589c-87b3-d09b16c60cab", "text": "Eastern aesthetics, subtle, restrained, jade red, for a promotional video. "} +{"id": "8001788", "video_name": "a0df352c-2a42-538d-a6eb-85c6bc7505b9", "text": "A dam in heavy rain, Kerala flood "} +{"id": "3003688", "video_name": "32a197ef-a94f-5b92-8632-e93e2ad03f8f", "text": "vision of an elderly man under the influence of 6 hallucinogenic mushrooms dressed as a lady "} +{"id": "6003789", "video_name": "59ffc3e7-d97a-537b-b2ff-203e0b098df1", "text": "dominic toretto siting in his car with vinnie the pooh paxar style "} +{"id": "7002828", "video_name": "efa81324-4402-5ec3-b2f1-ef5c44e7b378", "text": "detail shot of water extinguishing fire, particle, epic, documentary, 8K, HDRI, Hollywood "} +{"id": "2005925", "video_name": "ff8dd36f-616b-5a7e-8f8b-7072df643bdc", "text": "Farmer working in the field with light drizzling "} +{"id": "1005079", "video_name": "5da6a7f4-d484-5fae-9fea-c1245cabe23b", "text": "1 zombie walks through a graveyard "} +{"id": "2005786", "video_name": "97745002-55f5-58b2-bf90-c834a0b0af40", "text": "a antique play gramphone on a table with a blue background, gramphone playing "} +{"id": "3003724", "video_name": "cf73556b-5465-594c-b5c6-cb4c91c79861", "text": "pill dissolving in liquid in the style of Zdzis\u0142aw Beksi\u0144ski "} +{"id": "8002878", "video_name": "57651b66-5648-5ca7-89fb-09f3e729e3dc", "text": "Reduce water level in a half filled old cubical container indore and mild rusted clip art style "} +{"id": "4004172", "video_name": "93c2e649-6afb-5b94-a36f-f9d256ebe644", "text": "foot stomping down into dirt, CU, 24 fps, movement 5, "} +{"id": "2006996", "video_name": "847da92c-f3b2-533c-9471-65b32becdb6d", "text": "Bachchu, the son of Bhikhu Confectioner, was very temperamental. "} +{"id": "1003092", "video_name": "38e00268-cfef-5df6-ad71-bb930555a138", "text": "a male teacher teaching math to two child at the table "} +{"id": "1006283", "video_name": "7316184a-2fdf-543e-887e-5d8a943f0846", "text": "video containing tips to improve personal finance lasting 10 seconds with shades of blue gray and also have good elements of investments and finance "} +{"id": "2006707", "video_name": "bbbdf87e-f289-58ab-9c2a-2e18b4f3f982", "text": "Cinematic scenes of a futuristic time machine in 4K "} +{"id": "2004319", "video_name": "82702d0e-9edf-54ce-8924-6fa63d717290", "text": "River in the sunset, movie, lens far away "} +{"id": "2004488", "video_name": "6a0e4ecd-c232-5215-a0cd-678561e5cbba", "text": "real computer with security camera on "} +{"id": "5001970", "video_name": "0f572c3b-adf8-56dc-bf10-e3f3949916b1", "text": "The rose that burgeons on the climbing briar, "} +{"id": "2006919", "video_name": "4302bb27-1b85-5d9b-b55d-a71658a0c27d", "text": "Late at night, stars are shining bright "} +{"id": "1005093", "video_name": "5df756d1-ad8c-50ff-ac45-4813061f4187", "text": "a squirrel with a bike helmet in a pool on a licorn "} +{"id": "7003247", "video_name": "38c98e14-86e1-5bde-a6c6-fb6799b51700", "text": "jerry seinfeld in a car taking a sip of coffee "} +{"id": "7004392", "video_name": "d5cd8d0f-b1af-5b73-8703-b68c5d6144f1", "text": "family of 4 having christmas dinner at the dining table with christmas decoration all over the house "} +{"id": "1004403", "video_name": "51672851-cf24-5479-9044-cfcfeff66dcc", "text": "As the water trickled down, he sprinkled a handful of gold coins. "} +{"id": "7004726", "video_name": "760c49f7-c3c7-52da-a85a-0d0785b46f69", "text": "Make a video in which pigeons fly and the Turkish flag rises to the sky on a beautiful sunny day. "} +{"id": "1004221", "video_name": "4e1aac71-cfc9-5695-bc3f-7ea4c5832152", "text": "a military man in a helmet shoots at the camera "} +{"id": "2004707", "video_name": "ba284bcf-e05d-5917-8647-58bfd6b42424", "text": "people smoking injections Message: 1 Attachment "} +{"id": "7004716", "video_name": "63123e35-26dd-5876-911c-c23f0d300fee", "text": "A strong and big tree in the forest "} +{"id": "2003159", "video_name": "ece4e3b8-bfb5-5fbb-a144-0a9d618e36d3", "text": "dark space city with solar panels everywere "} +{"id": "4002512", "video_name": "c8b2101b-9e02-5fc0-b675-1d3b91dc4a59", "text": "A Sub Woofer Bassing and Vibrating, 4k Quality "} +{"id": "0004034", "video_name": "01d7dd45-dd63-5d17-9cb5-1d3f05bc4252", "text": "a young woman who communicates happily with other people "} +{"id": "0004304", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "lord shiv sitting on himalya mountain, 4k, zoom in, 16:9 "} +{"id": "1004105", "video_name": "4bf74c42-99fd-5b69-88b9-5439f16b82eb", "text": "yellow Ferrari transforming into a chocolate cup cake "} +{"id": "7002177", "video_name": "d6125bd7-3a2b-5b74-85ae-60930c2fa8d2", "text": "Someone is walking at a large flea market when suddenly their keys fall down. "} +{"id": "7003655", "video_name": "09768ec3-cf00-58d7-b12f-33a14f837ac8", "text": "Bride crying on a dark street. Canvas size 9:16. Hyperrealistic Style "} +{"id": "0005726", "video_name": "20370c18-6db5-5c12-b3d2-2a7c7363e97c", "text": "a video of messing wishing happy birthday to eren 16:9 "} +{"id": "8002241", "video_name": "4d3ab89c-0e05-5b21-b1b2-5333759550f8", "text": "extreme close up of a hand going through scrolls, 1967 zenith color, satire, antique television, 1899 visuals "} +{"id": "1003287", "video_name": "3c6ee9f1-8bb0-5df0-b8b6-8ec202393c34", "text": "linkedIn cover which has Angular, reactjs, Java, Kotlin, postgreSQL, MongoDB, Docker, Git logos "} +{"id": "7004623", "video_name": "ce416f1a-b152-5795-b407-b2f56f10ed1e", "text": "Goku from dragon ball Z powering up to super sayain 10 where his hair goes white "} +{"id": "1006787", "video_name": "7c614a5e-0e8f-599c-8d4a-849609716d95", "text": "closeup shot of the alien face. Zoom out to see other aliens on the side holding guns. On the background the sun is rising. professional ilumination. Cinematic, 4k, ar 16:9, RAW "} +{"id": "8003382", "video_name": "73b9911d-2076-513e-be1b-c2c40f358e78", "text": "classic car flying through galaxy cosmic "} +{"id": "5001104", "video_name": "ecc1902b-16de-58e7-ab4e-1168c7a045ce", "text": "man and women shouting at each other, realistic, "} +{"id": "3005212", "video_name": "53ac3be0-daf9-57d2-8c4c-cc81708545de", "text": "The little girl sat down with elves and flying unicorns to communicate and be friendly. "} +{"id": "3003763", "video_name": "47345908-cb70-51dc-8240-0ef1f61a786a", "text": "a 8 bit love story in a beautiful city like caracas venezuela "} +{"id": "4003214", "video_name": "4b251cf8-af22-5535-a604-9cb2014fc1d5", "text": "a drag king character en 2d motion "} +{"id": "4002628", "video_name": "096fb3f7-e02c-5ad7-8d1e-9c2b2e5c7577", "text": "one white dog and one black dog in the snow ground with a man walking and snow fall "} +{"id": "8003296", "video_name": "44289cec-8fc3-559f-bb0d-bef381a50d6e", "text": "A picturesque Indian village at sunset, with Arjun sitting under a banyan tree, bathed in warm golden light, playing his sitar. Meera, dressed in traditional attire, gracefully dancing beside him. The scene exudes a sense of serenity and young love. "} +{"id": "8001932", "video_name": "b8329176-b992-5498-8179-dcb8223c2342", "text": "fractal ornament gold blue black smoke withe milk "} +{"id": "1005174", "video_name": "5f398d1c-8d32-50a7-a848-c6c781762433", "text": "blinking, hyperspace, animated LED lights, LASER beams, particle flow "} +{"id": "4004542", "video_name": "2df74b8c-b36c-5eff-9800-677ee6fa3c5b", "text": "Spiderman and the joker Playing fortnite in a cave with Harley Queen and poison ivy "} +{"id": "3006134", "video_name": "281576ee-20a7-5155-956e-76f7d08096d9", "text": "Big Red Teddy with Double Axe in hands "} +{"id": "8002411", "video_name": "53a011bc-8184-5a45-b4e8-c5f461d51946", "text": "kitten and kid both turning back and see "} +{"id": "8001896", "video_name": "2d75d679-e4a2-5edf-8b6e-63e97c7a0ec1", "text": "alley leading to the castle, 80s, cinematic "} +{"id": "2003757", "video_name": "1565f9eb-64d9-56b9-bc0c-4ad34bf6aa50", "text": "bobby koelble chasing a vampire at night "} +{"id": "8001706", "video_name": "035f32f8-e627-5813-90bc-68b3aede8c41", "text": "French Soldiers defending a buildings ruins from a mass Prussian army 1871, 4K, High Resolution "} +{"id": "6004905", "video_name": "c4c09653-1f8a-5160-8591-de7be806a7cb", "text": "supermassive black hole staring the sun "} +{"id": "1003180", "video_name": "3a7a310a-c28c-56f3-9bab-508649d9bb16", "text": "War between worlds in the distant future "} +{"id": "7004478", "video_name": "8c16c68d-056f-50b7-ae50-3d551c5bff47", "text": "Drinking water can also have psychological benefits for weight loss. Often, people mistake thirst for hunger and consume unnecessary calories when they are actually dehydrated. By regularly drinking water throughout the day, you can help differentiate between true hunger and thirst, potentially reducing overall calorie intake. "} +{"id": "0005990", "video_name": "249af953-6bc8-5376-909e-a1d3e920b811", "text": "realistic persian black cat jumping into a sea of gold coins in the middle of a thunderstorm at night with a crowd following it "} +{"id": "4004593", "video_name": "7551bd3f-902e-58d0-9b4d-b40f59828929", "text": "bugs crawling all over the camera viewer "} +{"id": "7003134", "video_name": "3cbd646e-e1c3-5a84-8406-9f7866ce71a5", "text": "The Horse in Motion, Eadweard Muybridge style, 3D, split lighting, 16k, photo realistic "} +{"id": "1005206", "video_name": "5fd8529a-99fb-58ad-bf46-37125ad93efd", "text": "beautiful woman with headphones, listen to music, show soundwaves around the headphone, Background San Francisco "} +{"id": "8001998", "video_name": "6863c2f1-2c19-5fb0-9832-8aa2a2fc2579", "text": "blonde curly hair black skin woman walking Venice street "} +{"id": "0003800", "video_name": "43b4fb44-0261-5f89-b02c-c52ca446c19b", "text": "big eyes toddlers dancing in synchronisation in snow, making snowman, Santa Claus gives them gifts , going in sleighs, cartoon animation, "} +{"id": "3006898", "video_name": "9bd4f8b3-7275-570b-994e-016e30589874", "text": "man and girl, alone and lost in their thoughts, each holding a photo of happier times "} +{"id": "7003145", "video_name": "b8678c96-4041-5c71-b294-acad9537beb7", "text": "friends now travel in a ship "} +{"id": "2005096", "video_name": "37a49eb7-6b4e-5676-934f-73d96ff428f5", "text": "A sports car hurtling down the mountain road "} +{"id": "7003624", "video_name": "4e5b8f69-b056-5915-a48d-664efc78c880", "text": "climbing alpinists on the statue of liberty "} +{"id": "3003038", "video_name": "21cfd737-e362-5dbd-a2f5-ecee14ee5618", "text": "a rodeo with cowboys and lassos "} +{"id": "8001718", "video_name": "fd0b94bd-71a6-5fae-96cf-7dd9f8e0ecb1", "text": "The magical Jeweled Lake shimmering with a thousand colors In a lush and vibrant forest nestled between rolling hills and meandering streams, "} +{"id": "1006455", "video_name": "76255c90-afea-5d3e-ac7d-e3934f5349c9", "text": "a humanoid walks through the forest and looks around "} +{"id": "0003304", "video_name": "3b51c73b-b75c-5db0-ba6e-aee1fe3aa606", "text": "flying a helicopter over iceland, looking down at a beautiful labndscape, flying overhead,anime "} +{"id": "0004032", "video_name": "01d339db-cf75-5116-82bf-fb355b1cda4b", "text": "tarot cards and tarot readings in the heavens above "} +{"id": "3003217", "video_name": "45f07309-22cb-510e-a19e-508ba500279d", "text": "Bread pops out of the toaster "} +{"id": "3006534", "video_name": "c4cdc5da-3707-547c-9327-3af86d545384", "text": "lonely warrior with hood slowly walks towards a cliff revealing a mysterious landsape "} +{"id": "1004292", "video_name": "4f69f213-2dbd-53e1-a3bf-8f157a362432", "text": "One bouncing ball, bouncing at 120 bpm, comic style "} +{"id": "2004860", "video_name": "3a579624-6e27-5e9e-a62a-e83fcdaf6245", "text": "Haley Williams, singing in the mountain, loating limbs, "} +{"id": "1005871", "video_name": "6c0cb534-be7b-5bc9-9923-c31bf08a17f5", "text": "white stripe vertical lines with large gapes between them moving left to right on black background looping over and over again "} +{"id": "8001492", "video_name": "9611d9c8-311e-55bf-b823-ee195026bffe", "text": "In the black space, a 3D colored linear model is rhythmically floating in the air and changing "} +{"id": "4004616", "video_name": "5aaa7cd9-bac7-57db-88b2-9a7f95f7ef86", "text": "Winter forest snow sunset zoom in peaceful xmas "} +{"id": "6002947", "video_name": "6afcfafc-0718-598d-b4eb-faf5bc98bf43", "text": "Cornelis de Heem animation of a hand picking an apple from a table "} +{"id": "5001251", "video_name": "8f28ff74-33b5-5b88-9a44-53453ea52511", "text": "1950s super 8 body shot of a lion mixed with a human wearing a colouful tutu smiling at the camera "} +{"id": "6004408", "video_name": "d90eb22a-f566-5278-9d98-8508c440b18e", "text": "Suzuki gsxr doing a wheeling on a empty street "} +{"id": "6004956", "video_name": "5afb6d6d-5566-5534-891d-bf9d1c979f09", "text": "The idea was taken up in the following centuries by magicians and secret groups, which added elements to this idea until the 20th century. "} +{"id": "2004599", "video_name": "106e596e-ef79-5e7f-bb46-b42cae82fbfb", "text": "rare documentary footage, football World Cup from 1930, "} +{"id": "2007724", "video_name": "56f5dab9-2ab7-58b7-91ab-a4f10a0865b0", "text": "A breathtaking display of fireworks painted the night sky with an explosion of colors and patterns. Glittering golden bursts cascaded down like ethereal rain, briefly illuminating the darkness. Crimson and emerald trails intertwined, creating a mesmerizing dance of light. Each explosion was accompanied by a symphony of crackles and booms, echoing through the air, and leaving an indelible memory of a truly spectacular and magical moment. "} +{"id": "2003577", "video_name": "d99a3bb8-0996-58a0-a13c-60e1f76fa5d4", "text": "drone camera fotage of neelum valley "} +{"id": "3003903", "video_name": "436be1dd-95f0-5513-8e3f-08ca513d5775", "text": "Special Forces squad with MTF on the back and SCP on the shoulder "} +{"id": "4004913", "video_name": "553b5b0d-9142-5c65-a873-9a3c3db8004a", "text": "big screen with hundreds of vj loop thumbnails Message: erandistic (Font: MODERN) "} +{"id": "5001611", "video_name": "5a9f7e98-7bf0-5567-8622-8df9be801f26", "text": "Charlie fell asleep in the snow after he took drugs "} +{"id": "0005086", "video_name": "147b7579-d610-56f8-b590-28d20a16b616", "text": "In an old antique shop, a dusty music box sat untouched for years "} +{"id": "4002520", "video_name": "67e99199-0340-580a-9119-d972ccb26280", "text": "close up shot of someone\u2019s mouth singing karaoke, the person has green lipstick and golden teeth, karaoke in a studio,bright lights, realistic,8k "} +{"id": "1006649", "video_name": "79db7105-8aa0-5e35-bb91-4fcd9cdf5a43", "text": "create video of rocking star yash attitude since "} +{"id": "2007980", "video_name": "024d1a21-8ddf-5e24-a218-9195b8d59a89", "text": "a robot driving a car,motion 3, portrait format,mid close up, "} +{"id": "3003706", "video_name": "d180780b-5e9b-5b04-a479-65a343869cec", "text": "ULTA 8K. REALISTIC. 3D QUALITY. BIRDS FLYING. PEOPLE WALKING.A breathtaking aerial view of the picturesque village of Batie, Cameroon. AN AFRICAN VILLAGE "} +{"id": "0004698", "video_name": "0d82e10a-d137-5fb7-9f9a-04c212942877", "text": "Car, stopped in front of a macabre, realistic, detailed forest, "} +{"id": "1005442", "video_name": "64038f30-b2c7-5588-998e-17b676027e61", "text": "Leaves swirl in a sudden gust of wind. "} +{"id": "8003336", "video_name": "a82a7b19-452d-5136-9274-d51753cec370", "text": "Craft a historical stock footage sequence depicting Germany in 1945. Showcase war aftermath, cities, and the changing landscape. Use visuals to capture the end of World War II and its impact on the country "} +{"id": "4004049", "video_name": "f1bf4fe4-75ff-5eed-80b8-cceac827c4f8", "text": "sharp and simple rabbit open aye for the first time "} +{"id": "7003598", "video_name": "291bf012-3ef3-5abb-acc7-7cc41fde8245", "text": "a cute teddy bear fighting a tiger"} +{"id": "4003595", "video_name": "e925e6d1-011d-5620-826f-726edcd79ccd", "text": "Ayrton Senna with fish DNA swimming fast through the water like a tuna using race instincts "} +{"id": "2003540", "video_name": "fdf69ffa-5185-56e8-898b-8d2c3be55c6b", "text": "a person of age 35, with blue shirt, black pant ,brown hair,full body streched,symmetric "} +{"id": "3004551", "video_name": "5f798e16-8b9c-5460-9fb2-40c0f76f05b7", "text": "a full frames of the war in middle Ages "} +{"id": "1005229", "video_name": "6042c5d7-a0cc-579e-bd4a-b92cce0e2c10", "text": "blond female artist interacting with crowd while on stage singing into a microphone, cinematic "} +{"id": "7004489", "video_name": "77ec52e8-1e45-545f-8de9-f2817e712c9b", "text": "a mystical dark fantasy photo shoot in the style of ilona veresk of a beatiful female cyborg in a futuristic dystopian world, glamorous, cybersteampunk, cinematic, hyperreal, photorealistic, award winning digital artwork"} +{"id": "7004836", "video_name": "6e3d8162-321c-58f0-ac14-b340598f494c", "text": "a tshal soldier in an urban combat enviroment, desertic style "} +{"id": "1003425", "video_name": "3f46b9a5-c26a-56a6-abb5-81ba899e03a6", "text": "boy use the electric gadgets cartoon "} +{"id": "4004119", "video_name": "b36933d8-4024-597b-80b2-ed8bd3995f37", "text": "Future world , Cyberpunk City, A Big eye in a technology World, AI , Glows in anger "} +{"id": "4004841", "video_name": "135cc283-feff-5012-a5e2-64e89d79da69", "text": "animate this character and make it talk to the camera "} +{"id": "1003778", "video_name": "45ad3c4f-43e6-57ad-8659-6cc4fbb3a378", "text": "3 war cinematic blood explosion action "} +{"id": "5001774", "video_name": "63f3eee9-e1f1-54aa-a449-69c33c307ce9", "text": "a girl walks through the autumn park and collects leaves "} +{"id": "1006867", "video_name": "7d5e261f-5594-510e-9d31-bf9f54f1d9ad", "text": "a cyberpunk movie trailer , 8k, hyper realistic "} +{"id": "6004133", "video_name": "3815215a-60db-5172-951e-72b1df095992", "text": "a catjumping from roof to roof each roof gets higher "} +{"id": "6003806", "video_name": "ddfc9ff8-fe83-5ff0-a007-8ef0c5a1064b", "text": "hourglass wrapped in plants and flowers "} +{"id": "6002889", "video_name": "d9c05eb7-af58-5be8-9267-e4609496e85e", "text": "Lady GaGa wearing Alexander Mcqueen posing "} +{"id": "2007000", "video_name": "0506c809-b89f-502c-913d-0571ae357941", "text": "The yellow Porsche crosses the Manhattan Bridge, overlooking the Statue of Liberty. "} +{"id": "0003072", "video_name": "3678f7af-dd62-5773-ab07-8a7401d7bc7b", "text": "how to make chocolate at home "} +{"id": "8002983", "video_name": "55a84a5b-52ff-51d1-a352-455c8be930de", "text": "a turtil walking in the garden "} +{"id": "1004161", "video_name": "4d0ec323-c891-538f-93f8-be8705ca93ea", "text": "3d talking boy, pixar style, bright light, colorfull "} +{"id": "1006080", "video_name": "6f7d996d-68c8-5a0f-a9da-872685d3b85a", "text": "skull inside astronaut helmet, swirling galaxies background "} +{"id": "7003365", "video_name": "6d2903ad-acf0-5810-a408-ba440a7e699e", "text": "Video 15 seconds long, for advertising a musical composition in the style of pop rock "} +{"id": "0004622", "video_name": "0c18d51e-2e34-5174-8bd8-a29f68ec53fa", "text": "the trippy visuals of a 5 gram magic mushroom trip, walking through a forest as a hallucination of a Pringles can walks towards you. "} +{"id": "7004912", "video_name": "2bb89b9e-efa0-5d7b-a7c0-71d164aaefae", "text": "Iron Man Elon Musk is dancing "} +{"id": "2004027", "video_name": "b249f9bd-2690-5c14-a687-44daee23fd69", "text": "create a rapid progression of changing seasons, a fast makeover, or a speedy artistic creation "} +{"id": "4004264", "video_name": "1fd0e500-385e-5c64-8067-87d56bcce78a", "text": "A ship that hit an iceberg and sank Message: A ship that hit an (Font: MODERN) "} +{"id": "8003562", "video_name": "c64f2a96-c87e-5d04-9b78-1c3e8c6adf39", "text": "The camera advances, and the wind blows through the forest.motion 2 "} +{"id": "6003912", "video_name": "da683bae-cc49-5f38-a69f-6e25a5faad54", "text": "baseball player swinging the bat and striking ouy "} +{"id": "7003106", "video_name": "dc5f673c-1a6f-5ad1-96d7-242c8287a590", "text": "A group of people dressed in medieval Western European style greeted the pineapple with cheers, and a giant pineapple glowing in the center of the picture was placed on a carpet with intricate religious patterns, religious style, medieval painting style "} +{"id": "0003042", "video_name": "35fd58f9-e0e1-55fb-bb3b-6ad92b4eed90", "text": "talking tree in forest in 3D animation "} +{"id": "7004098", "video_name": "e696b23f-c9a4-5047-8780-29c6deea3714", "text": "Sunlight filters through the leaves, casting a gentle glow. The wind dances with the leaves, and a group of birds joyfully soars through the air. Message: 1 Attachment "} +{"id": "3004817", "video_name": "80eeaa3c-8fc8-50e5-8f2d-82054e8246bb", "text": "teen indian women dancing in the river bank, red dress, fullmoon night "} +{"id": "3003603", "video_name": "dd2a4c6b-32c3-55e4-a844-f0b982c8ab2f", "text": "3 years old girl brown eyes brown hair "} +{"id": "2007623", "video_name": "1ae590e8-50c4-5565-ac2a-b1d32dbac900", "text": "a coastal redwood forest Message: OBEY (Font: MODERN) "} +{"id": "4003855", "video_name": "f1d90c04-88fa-53e5-8805-bc52aa88b79b", "text": "maros playing in the forest with a little girl "} +{"id": "4002602", "video_name": "5a7c3384-73fe-5a2c-bb44-8c64cad742ec", "text": "Saudi man on horse have sword "} +{"id": "3003584", "video_name": "d49762c5-eaea-5690-a338-0ca48b45a04c", "text": "Jedi Master and Goro from Mortal Kombat getting ready for a duel "} +{"id": "7003185", "video_name": "cd40a59e-4a51-5284-83eb-0b08ad4b7308", "text": "a bird bursting into rainbow flames "} +{"id": "3005122", "video_name": "79bd8eba-980a-5eed-bf1c-4d6b1d46671a", "text": "landscape with gree hills and a mountain in the distance the clouds move fast with the wind "} +{"id": "1006920", "video_name": "7e7fc7ad-0aa6-5163-8e2d-dad8b69e5317", "text": "light being blowing heavenly trumpets warning the world, slow motions "} +{"id": "2006153", "video_name": "a432ba94-a2af-5a2e-82ee-5706abeefd1a", "text": "a house on fire while raining "} +{"id": "0005443", "video_name": "1ad876dc-a99c-5310-ac88-3552b03ece78", "text": "Visual: A montage of services (SEO, Sales Funnels, Advertising, Optimization) being applied to a website. Purpose: To showcase the range of services offered. "} +{"id": "3004008", "video_name": "865a9be4-4e1b-54cf-892e-bc56982f1425", "text": "a movie scene of people running away from a wave in a city "} +{"id": "0003930", "video_name": "000c9183-f83c-50b7-9bea-7188d4e95caf", "text": "demon playing the ouija board, cinematic horror trailer style. "} +{"id": "2007543", "video_name": "3ce5ff59-c314-542a-9c30-d172d41ca638", "text": "show human techgrowth over time , from houses to building "} +{"id": "0005334", "video_name": "18fe0b3c-54f2-53a9-8057-95c60ba405f3", "text": "A man walks on a pencil "} +{"id": "3006809", "video_name": "c0f57500-1f8f-5a60-9fb6-32713e316611", "text": "a girl is surrounded by a lot of cats and playing happily with them. "} +{"id": "1004108", "video_name": "4c129680-832a-5426-b022-2a46d4089b34", "text": "The creation of a new civilization, in space, free from the problems of Earth, cinematic, 8k "} +{"id": "0003194", "video_name": "390f3662-3f81-5819-abfe-4c7b3d87396d", "text": "london bridge Message: shymal hojai (Font: MODERN) "} +{"id": "7004981", "video_name": "533aa793-e9b9-527a-9d78-cc7518267bc2", "text": "two kids are in the jungle walking animated 3d "} +{"id": "0003448", "video_name": "3dbe5adc-919e-5aaa-888e-e83c92b440c1", "text": "mario in real life, playing with legos "} +{"id": "2006526", "video_name": "284a858a-1c56-599e-8a38-1e6dccbdc59d", "text": "help me and get free latest iphone 16 max shorts experiment "} +{"id": "3006947", "video_name": "a62b669f-6784-5e69-8bde-4844d7f3e7c0", "text": "An ancient, towering tree in the heart of the forest. "} +{"id": "1006073", "video_name": "6f6f4531-0ebc-59d7-9f85-c73cd3029cbd", "text": "a cat on a trash can at night "} +{"id": "0004990", "video_name": "12d18fea-7a4e-5fd5-a02b-c9e3a2a3a6e4", "text": "silent hill 2 man from monsters go pro footage fast movement "} +{"id": "6002869", "video_name": "dcefa0d2-a413-597b-8f92-165ab4c1dd11", "text": "A ship going to catch the fish "} +{"id": "0005071", "video_name": "144e6006-5e33-5d88-be07-3228fbeb24bb", "text": "Open with a captivating shot of a Fragrance Square logo gently fading in against a backdrop of a sophisticated fragrance bottle. "} +{"id": "2007285", "video_name": "8a615ee3-dee7-5e4b-98f2-2ed6d99ca27a", "text": "The Giant of Kandahar according to the Photograph on cryptidz.fandom.com leaves his cave "} +{"id": "2004183", "video_name": "634fedf6-48b4-5d20-95f8-61149ce77c5e", "text": "Barbarians running through snowy mountains, from far to near, dusk, comic book style, "} +{"id": "3003728", "video_name": "56851096-35be-51ba-97e6-ee289d97421e", "text": "window and big gem inside. Have dark clouds and beautiful woman. add a big clock "} +{"id": "4003428", "video_name": "a0b40ed7-4193-5cc2-beff-40362c177d60", "text": "a snowy elven village with lots of elves having fun in the snow "} +{"id": "7002365", "video_name": "e0863e8d-3700-560c-99fe-a0ed8500fc1d", "text": "Nike logo and website URL displayed on the screen. ( "} +{"id": "7002318", "video_name": "09c38232-c595-5644-99ce-908433c86cbd", "text": "happy humanoids having some coffee at outside lounge "} +{"id": "3005955", "video_name": "27f25040-0733-571e-9cde-4472afed9cc5", "text": "porsche rides on dust in a storm, make it in good quality "} +{"id": "0003742", "video_name": "42a72bed-e09a-5128-bbe4-96a4265e77cc", "text": "a magical medieveal game setting in the rain "} +{"id": "6004177", "video_name": "06d8a65c-42a4-5892-b966-2d270efd1b49", "text": "scene from a 1980s crime thriller, SWAT team running into bank with rifles drawn "} +{"id": "3006318", "video_name": "f54648b9-5d2b-5ff7-8459-d8051a186420", "text": "School backround Message: Audiovisuals (Font: MODERN) "} +{"id": "0004189", "video_name": "04c71990-9959-5fc8-bcea-6bca55926f8f", "text": "a streets of the city of chicago in gangsters ages, people and cars on the estreets, landscape panorama of the city "} +{"id": "6004227", "video_name": "4fba464e-8f33-5427-bd54-878802bff175", "text": "The Grim Reaper paraded in the square, with red flags waving, and animals in white clothes walking neatly past, including donkeys, piglets, puppies, and kittens. "} +{"id": "7002865", "video_name": "ff753c7f-a23d-5788-8286-0ec2fead2711", "text": "An animated timeline depicting key moments in human evolution, highlighting the development of the trust in authority.\nDescription: Illustrating how our brains evolved to trust and obey authority figures throughout history. "} +{"id": "2007413", "video_name": "2ddc730b-c020-5aa3-a01c-c585b7de542e", "text": "aanimation , Wide aerial shot of the bustling futuristic city with skyscrapers, advanced transportation, and a mix of humans and robots. "} +{"id": "3005453", "video_name": "7df011b1-e414-524c-bc2a-634d84700ba3", "text": "pretty shiny fairy collecting roses at the island "} +{"id": "2005182", "video_name": "cd257815-ba08-51db-8cdc-3b9a1cc871ab", "text": "halloween party in a grave yard "} +{"id": "8001879", "video_name": "4173b93e-c33b-590c-8d98-e799425c26c4", "text": "a minmimalist house render, in a forest context, pan right, wind on trees "} +{"id": "2006382", "video_name": "3f30b831-ce5f-5075-8094-816cc37a3f7b", "text": "Harry Potter eating Tofus at a Taiwanese style restaurant "} +{"id": "3004398", "video_name": "a2609e77-48ac-500a-9cd7-838777c2b765", "text": "cybertruck racing across a desert highway at high speeds, arabian horses with long manes chasing it "} +{"id": "0006889", "video_name": "34cdcf1a-3f20-57c1-8fab-d2688322a8cc", "text": "a man standing on a planet, cinematic 4k "} +{"id": "6003818", "video_name": "d68bd958-f748-5c8f-9868-100291fd775a", "text": "Steve Jobs talks with Jack Ma "} +{"id": "8001061", "video_name": "ba10be20-dfe4-5ec2-9eeb-744c9a9cb4d1", "text": "a man sitting in a boat on a lake, a detailed matte painting by Taravat Jalali Farahani, pixabay contest winner, qajar art, matte painting, matte drawing, digitally enhanced "} +{"id": "4003594", "video_name": "5a25e870-4c0e-5f8e-8841-5d432d59bcff", "text": "a cotton candy with chocolate chips and fruits,8k,no ugly,nwfs, "} +{"id": "7003616", "video_name": "8df5be56-6d74-5462-bae3-003b8cb24fad", "text": "an elephant is drawning deep in the ocean "} +{"id": "3006038", "video_name": "9b41a6c5-0ff1-5394-aa7a-10f96ea56dc6", "text": "coraline smiling and holding a storybook in her hands. sitting in a cozy library. no distorted features ,4k "} +{"id": "6003166", "video_name": "338815be-66f6-53f5-b6b1-caeeb35bd539", "text": "aztecs doing a ritual in tenochtitlan, old film still "} +{"id": "4004130", "video_name": "3ed0aa8c-c64f-53a9-be0c-9371c087edab", "text": "A seedling emerges from its shell, tender and determined "} +{"id": "4003125", "video_name": "ca443642-d0f5-5c1b-b682-0533d2bbff0c", "text": "quadrille dance at a regency england ball in an estate house, england 1812 "} +{"id": "6004610", "video_name": "c13c8181-8739-54eb-841c-02504108c5fa", "text": "hyper realistic, 3D, photo realistic, anime style, Earth being hit by meteor, view from space looking at earth "} +{"id": "8001244", "video_name": "7a7e7b9a-78dd-53fc-82b0-029b11b59a92", "text": "bridge getting build from an old city towards a futuristic city "} +{"id": "3005445", "video_name": "9a925892-8774-5450-942f-d69c94768e3d", "text": "big smiling, great smile, perfect teeth "} +{"id": "1003635", "video_name": "42feaee8-6048-5fbd-b9cc-a6a56127cd6b", "text": "film crew members work on a film "} +{"id": "0004094", "video_name": "0313acd0-f34f-5d73-b945-40a94881ea18", "text": "Noodles falling into a bowl of soup. "} +{"id": "8002083", "video_name": "17c1f317-29bc-5201-86aa-a85fa8237970", "text": "medic from video game team fortress 2 walking to the car which is in forest "} +{"id": "4003797", "video_name": "cc2f0e18-ba8d-57c6-8d97-d7f2d7803ed2", "text": "yong hand, silver jewlery to old hand "} +{"id": "8001333", "video_name": "a697680d-7109-523a-97b1-18784e90221f", "text": "all the animals in the forest pan right down "} +{"id": "7002213", "video_name": "d6794bf4-31f5-59c9-b94d-096c943bbfe7", "text": "realistic pink haired woman in a bikini dancing "} +{"id": "8001357", "video_name": "42516323-0c78-50af-a7a5-fcde089d16be", "text": "three astronauts walking into he surface of mars during sunset "} +{"id": "6004769", "video_name": "323b3c80-323a-57b1-9ad9-dbe0174fdb9e", "text": "Generate a festive Christmas landscape featuring Santa Claus on a sleigh. Ensure that the sleigh appears to be in motion, creating a dynamic scene Message: Bones Festes (Font: MODERN) "} +{"id": "4003057", "video_name": "35025987-bb70-5b09-996f-805d58f8d625", "text": "young guy in a black hoodie looking at the camera "} +{"id": "4002023", "video_name": "001f6b9c-0251-5a62-9a65-fdff05e29a9b", "text": "Futuristic Lantern, simple and sleek design. "} +{"id": "1004275", "video_name": "4f16a99d-7ab2-56b6-a464-4cbe97f168ee", "text": "stock video of a man at a computer and frusterated "} +{"id": "1004607", "video_name": "55c4b59e-32cc-5eca-904a-af3f5c5a5243", "text": "Little bear and friends trek through the forest, climb mountains, and cross rivers, making new friends along the way. "} +{"id": "3003988", "video_name": "cd87b39c-b088-5aee-9254-b84c9b1738e0", "text": "A guy reading a grafic novel comic book indie "} +{"id": "0005925", "video_name": "23525e10-e835-582e-b978-c8edef13ccd0", "text": "King Tommen enters the dimly lit prison cell, where Cersei Lannister is sitting on a simple cot. She looks up, surprised to see him. "} +{"id": "0005817", "video_name": "21adf059-78a2-57d3-9540-ed53b6d67e94", "text": "A lovely white rabbit was standing in the grass, the sun beating down on him "} +{"id": "4004509", "video_name": "f1bb9582-8387-541c-851f-18bc89427d68", "text": "In the heart of London, the charming Enfield House. "} +{"id": "6003704", "video_name": "f58b2c95-1b0a-5d19-b5c6-028a8086463a", "text": "a black hood figure in a yacht "} +{"id": "0003502", "video_name": "3ea71f6b-9f12-52fd-95db-01348aad9ec1", "text": "album art, luffy, Nami, Fighting each other, luffy used rasengan, retro theme "} +{"id": "7002850", "video_name": "1ceeb1cd-7e39-5f27-833e-1224b5dda01e", "text": "a rose that is surrounded by a barbed wire that is suffocating it and the leaves are falling off and drying out. "} +{"id": "8002947", "video_name": "0546a2cc-dddf-519d-b56f-8d4c2a55a1f6", "text": "an African american lgbt couple having dinner at a private table overlooking the ocean at sunset. out of focus, in the background are tropical birds happily flying around. the server, dressed casually, arrives and pours two glasses of champagne. they couple is discussing their recent wedding, the mood is sentimental, calm and everyone appears relaxed. "} +{"id": "1004249", "video_name": "4ea6c7e6-5a83-5c17-9866-dcb43b04a78d", "text": "Indian summer night fireflies village house night time trees real life like beautiful nature wonderful cinematic quality "} +{"id": "1004743", "video_name": "57d5f0e0-1228-5a27-9344-9327783d91f4", "text": "1girl, white skirt, yellow hair, smile, happy, forrest, tree, path, red fllowers "} +{"id": "6004918", "video_name": "28f231af-14ca-5fb2-b1f6-565289bfcd38", "text": "a spearfishemar hunting a hugw fish. first person pov. high quality photography. realistic "} +{"id": "5001995", "video_name": "a9156ea6-b3f9-559e-8a9e-2326ff981c56", "text": "tree grows out of an orange "} +{"id": "0004245", "video_name": "05b21085-53ba-53b9-947f-77bf303096f1", "text": "A boy and his father walking through the jungle, carrying spears and bows. The boy is looking around with excitement, while his father is looking ahead with caution "} +{"id": "1004612", "video_name": "55ce6fce-8975-55f5-bc13-027da522b508", "text": "A forest with lush and green trees, with a small deer inside "} +{"id": "4002578", "video_name": "670799c7-60d2-5686-bf4a-483d1a149cae", "text": "urban combat aftermath sub machine gun ethics and truth "} +{"id": "7004235", "video_name": "cef99110-13fd-5881-94dd-ed07864448e7", "text": "a teddy bear band live on stage in kilt, paying scottish folk rock, thunder and lightnig in the syies "} +{"id": "5001393", "video_name": "56a38ac5-5d0e-5d16-b16c-68a6cfac8432", "text": "Steam is coming from the samovar. birds are flying Message: 1 Attachment "} +{"id": "1004396", "video_name": "514da03b-a775-5b5d-873e-215271616e50", "text": "3D animated traffic in the road "} +{"id": "0003106", "video_name": "3722600d-3186-5063-95d0-5869cc0dc690", "text": "hamburgers began to be served on a bun. "} +{"id": "8003238", "video_name": "ffd863fb-2c2d-5d32-9edf-e7946faf114e", "text": "The man is now standing in a field of flowers, with his family and friends by his side. He is happy and fulfilled, and he knows that he has made a difference in the world. "} +{"id": "3003551", "video_name": "92ac0ab9-8745-5b81-879b-0013ab7aec75", "text": "a man and a woman sitting at a hotel toom and having a very serious and sad talk about job opportunitites "} +{"id": "6002469", "video_name": "5a3c7ecb-e9d3-5dee-978b-c17960f0cf72", "text": "the concepts of love in the world "} +{"id": "3003049", "video_name": "1a35253d-1657-5a33-aae8-bd5d09eba15c", "text": "The cry of a dog left on the street "} +{"id": "1003732", "video_name": "44e33166-9efd-5c7e-8aea-489e9ad62506", "text": "A Man Buys Things On Walmart "} +{"id": "6004753", "video_name": "ff623587-731b-55b0-8418-e60398e3f64a", "text": "All animals walk back of lion in beautiful jungle "} +{"id": "1005881", "video_name": "6c34d132-3dae-5b20-b710-3117cb86322c", "text": "Leo and Stella set off in their small boat. "} +{"id": "1006612", "video_name": "79376787-23ee-5800-a099-8dca3e3e82a7", "text": "watercolor painting of golden gate bridge and the bay in the style of claude monet"} +{"id": "6003944", "video_name": "c022bfe2-8822-5156-b528-d84a48077354", "text": "Din Grogu playing with Master Yoda "} +{"id": "0003444", "video_name": "3da20df4-1337-523f-b94f-2b0c6b2e456f", "text": "two hands are breaking the plates. Message: 1 Attachment "} +{"id": "6003574", "video_name": "e7680a3d-aea3-53a3-b4a1-5796ce68e852", "text": "The pregnant cat is in the operating room. "} +{"id": "3005207", "video_name": "952a1b77-1350-56ab-9213-5155c65ec205", "text": "ms dhoni is running for 1 run in cricket ground "} +{"id": "0006140", "video_name": "272bf78e-15eb-5e61-9f5d-6791b8c24537", "text": "man walking in the remains of an old battle field "} +{"id": "3006057", "video_name": "a779bada-73db-56b3-bab9-533dc00dd989", "text": "a man is dancing in the rain, cinmactic experience, urban city "} +{"id": "4002451", "video_name": "d2f3b8f1-5b05-54f9-b1b1-b425bfd87f97", "text": "Young girl waiting for the train, scrolling her cell phone, anime style "} +{"id": "5001811", "video_name": "61799bfb-9bec-5723-afef-addd513297a2", "text": "Generate an image of Benny discovering the mysterious map in the magical forest. "} +{"id": "6004194", "video_name": "61f529a4-2040-5462-a1e6-e86dd79bf8b1", "text": "A group of friends, middle age, men and women, smiling side by side posing to be photographed,4k, perfect faces, perfect movements. "} +{"id": "7003280", "video_name": "2925d61b-1e40-5971-aeb1-94be23ad7412", "text": "a bright thought in a very dark place Message: 1 Attachment "} +{"id": "4004441", "video_name": "20ec3120-9488-5b95-a927-8a8cf7eb9753", "text": "Pop Mart inspired toy in the theme of colorful virus boy "} +{"id": "3005120", "video_name": "a5629623-86a4-5a18-b396-3ac7523e3b38", "text": "Joe Biden dancing in a parking lot in Belgium, 2010, music video, shoulder level shot "} +{"id": "0005428", "video_name": "1aa3473e-4775-55a6-86b9-d5084a22a9c7", "text": "3d young Emirati child dressing Emirati uniform stands at his home. 8k, colorful "} +{"id": "0003034", "video_name": "35eb117e-bbdb-5838-93bb-c86f89da8d0b", "text": "red Ferrari on a groove street "} +{"id": "1006484", "video_name": "76a4d300-8090-52bb-8259-581669544664", "text": "a mulim boy talking to a fairy about the problems his villagers are facing "} +{"id": "2004577", "video_name": "b9f34a35-d893-5f3e-a88b-8fca0db9f40f", "text": "many man ghosts into to the cemetary during dark night , full moon and rain "} +{"id": "3006289", "video_name": "279c4554-4165-536c-b711-063a4a889bc6", "text": "What is beyond the boundaries of the visible universe, what should be there in your opinion and all the information that is "} +{"id": "7002136", "video_name": "b33a9cee-416d-56e9-900b-0cfafbe29fe5", "text": "A boy wants to go to America "} +{"id": "3005392", "video_name": "ea38f2eb-50ab-5b9b-9da2-b8b135d0d023", "text": "a woman climbing out of a swimming pook "} +{"id": "1004058", "video_name": "4b4022e9-5616-571b-a815-66b04623c2b7", "text": "The house is smoking. There is fire on the house. The sky is dark. An explosion has occurred. "} +{"id": "0003745", "video_name": "42ab4e3d-f13b-54e1-ac18-f0b8cd40f164", "text": "a eastern dragon is catching a big rabbit and flying in the sky! "} +{"id": "1004086", "video_name": "4bb2b317-ec03-579f-9834-b5ea9f30f008", "text": "The figure of a person wearing a black robe, standing on a dark mountain canyon, with their backs facing each other, their robes fluttering in the wind "} +{"id": "7004284", "video_name": "d393ac51-ecfb-5a64-89ac-de4d183fa795", "text": "Two images, separated by half. The right half\nis black: fire and flame, sparks flying from the patterns. white: carved ice of a frosty pattern on glass, snowflakes flying, surrealism, grotesque, complex background of a swirl of snow, cinematic, bright colors, the camera moves away "} +{"id": "2003264", "video_name": "83da21d9-bcc0-524a-8241-51f5ab120952", "text": "close up of Mogul army, flags flying,sepia, encampment "} +{"id": "4004431", "video_name": "679f530c-8118-51c0-81e4-93ae3512f032", "text": "A waterfall on a flying island flows into a lake in the mouth of an extinct volcano, around which a magical forest spreads. "} +{"id": "8003477", "video_name": "b14e936d-d7db-5ae3-81ca-fa50b74b63d6", "text": "1840s coloured footage of young girl and young boy, both are twins and have strawberry blonde hair and are both dressed in Victorian era attire, bad quality and very old footage "} +{"id": "6003477", "video_name": "4200c0dd-a888-5a8a-aad3-e1fdeff7abe8", "text": "Lorna Shore performing at a heavy metal music festival "} +{"id": "2003715", "video_name": "fa08079d-7833-514d-a744-44960f7aca2a", "text": "an image of a house on a hill , "} +{"id": "2003368", "video_name": "a69b28fe-6366-56d1-9729-17f5ab3c9a95", "text": "worker\u2019s building with iron and steel "} +{"id": "4002025", "video_name": "f70d5b99-46c7-550a-a036-784d82f4c1ad", "text": "Stallone as Remy from ratatouille Disney "} +{"id": "0003358", "video_name": "3c27b41b-b5e0-553f-a91d-6942c6110d5b", "text": "High quality detailed watercolour style, flying through the streets of old New York, the year is 1910 "} +{"id": "0004709", "video_name": "0db9c44f-0d8a-58d4-84b5-dcc3801add4c", "text": "cartoon bear angel with wings flying through a city "} +{"id": "0005158", "video_name": "15c5b44f-9fdd-5b6f-adf1-86f0fdaa0510", "text": "a mouse deer standing on the river bank, with a background of gaping crocodiles with 3D animation "} +{"id": "1004937", "video_name": "5b4a7bd6-bfdb-59df-8f14-249fa9162fb3", "text": "Hyper realistic fish, floating over water, ocean waves, clouds "} +{"id": "7002453", "video_name": "21578c7e-0b30-598e-bff2-05fe39af9bb9", "text": "a bouquet of pink buds are slowly blooming on a white background, fireworks explode in the background "} +{"id": "1005456", "video_name": "644207b7-46f1-5da8-8ec3-55ad9141fdff", "text": "lips move, hair develops, lights twinkle in the background "} +{"id": "3006492", "video_name": "f71a4e7f-a804-5b27-a958-12a19ee72656", "text": "old papers and manuscripts flying and circling on a table in a room in 1940s "} +{"id": "1004627", "video_name": "5609eeb2-2bb9-5c5b-a241-3956209ea927", "text": "A Japanese person scored a goal on the football field "} +{"id": "0003221", "video_name": "3983e275-c7ca-5961-adc8-69547a72c4d0", "text": "Robots helping in a every day person\u2019s house "} +{"id": "1006980", "video_name": "7fbeb512-dfff-5d4b-ade4-072fab43a804", "text": "a lonly man singing while looking at a couple in a resturant "} +{"id": "6003191", "video_name": "c8a1aeb6-c381-5464-b76b-4f5b8f56fae9", "text": "a woman is dancing in front of a dance studio mirror proving to herself that she can finish a choreography and believing in herself "} +{"id": "0004729", "video_name": "0e2e8ef4-b19d-50e2-a083-1b3f501335ca", "text": "a 40 yo man sitting in a chair near fireplace, he is reading a book, soft light atmosphere "} +{"id": "4003472", "video_name": "e5c50d2c-365d-57ba-b2f1-7eb5fd419897", "text": "prototyp mix Porsche Lamborghini tuning Trade Show Exhibition "} +{"id": "2007318", "video_name": "c908512c-8cce-58ce-a4dd-552d13600350", "text": "and if there is no room upon the hill "} +{"id": "4002499", "video_name": "546e8b75-2b6f-5f6f-a25a-668d41e1e8a5", "text": "a football team playing on a stadium "} +{"id": "7004197", "video_name": "99214848-d2ce-58c6-b51f-05e7a4238847", "text": "2 chairs at night buy the ocean waves crashing starry night "} +{"id": "8001304", "video_name": "bb3db73b-89c8-56a6-99f6-0731c6cd7b65", "text": "generate a video of Jesus walking on water during a storm "} +{"id": "5001250", "video_name": "ae8a6c98-8980-5092-b35d-287e4010ede8", "text": "Arab men and women gather around a large bonfire while praying, moderate wind effects "} +{"id": "7004142", "video_name": "a4c22dc7-806c-519a-bc7c-f98c7926e458", "text": "In 1972, in the heart of Richmond, Virginia, a young black boy was born into a modest family. They lived on a small truck farm, where he spent his early years surrounded by the rhythms of nature. This boy, whose name was Jamal, had a vivid imagination that seemed to thrive amidst the sprawling woods behind their house. "} +{"id": "8002964", "video_name": "9ee95092-7a06-5ef9-8f07-52904209c590", "text": "a cartoon character sitting in garden "} +{"id": "3003215", "video_name": "149d6eb1-df23-5d9c-96ff-6676e47a2936", "text": "man in desert, his is thirsty, sunburned. 2 bright suns in the clear sky sbove him. AR 16:9 "} +{"id": "3003871", "video_name": "36c8c464-a8c9-56df-a011-9de7362f73b4", "text": "A man in a factory placing blue chips in a bag with the name takis and the man is smiling "} +{"id": "5001749", "video_name": "161ad8d4-ac7c-553c-a2a7-ac151b74a1ea", "text": "a phone on the table with wrritne FACEBOOK Profile "} +{"id": "1005966", "video_name": "6d98c4b5-d670-5b54-9304-e5c6c209299c", "text": "I want a video introduction to a rare disease "} +{"id": "3006705", "video_name": "ea3771d6-4e64-55ed-a2f6-a2efb078dd9f", "text": "Villager kids and women walking with matkas and buckets "} +{"id": "7002988", "video_name": "66b7b87d-6bdf-507b-86b9-971e366aca65", "text": "People with their protection kit in a fictitious city under a volcano "} +{"id": "4003907", "video_name": "b557379c-6b60-5f19-a384-239ea005949b", "text": "art by todd mcfarlane, spider man mixed with cyborg, newzyork city, sitting on a roof watching a alien attack incoming, hyper realistic, surrealistic, 3d render, dark, neon lights "} +{"id": "6004012", "video_name": "30277738-ef90-53d8-a9dc-ef514eb7ce18", "text": "ducati numeber 63 winning in misano wolrd circuit in a sunny day in september "} +{"id": "7002465", "video_name": "e8d1b023-525d-5bd0-83a3-386a2082a7ad", "text": "these saw an elephant trainer standing beside them and he expressed his puzzled state of mind "} +{"id": "2005120", "video_name": "42880c14-ac02-55ef-8ba4-7073320e5bee", "text": "video of a girl talking about how good product glowglass is "} +{"id": "3003595", "video_name": "caef234b-79d3-50f1-bc94-b5fd6859a415", "text": "creation of world by god, 16:9 ratio, realistic "} +{"id": "1006240", "video_name": "724c3e94-c222-5933-b855-b7ec60f12491", "text": "1930s documentary film in color plane flying in the air releasing bright green spray from underneath its wings "} +{"id": "3005574", "video_name": "bfe55500-f31a-5384-ab59-a576ebabd237", "text": "8bit wall of speakers playing music with lights changing colors "} +{"id": "1003457", "video_name": "400125c4-3f74-5744-aeaf-6be97d5430a0", "text": "Portrait of a young Roman emperor, Elagabalus, wearing a crown of golden laurels with the ancient city of Rome as the background "} +{"id": "6004599", "video_name": "2e43e0cf-b897-5b11-af80-47f80275ffe8", "text": "On October 4, 1996, while accompanying a convoy of mules near Nathula mountain in East Sikkim, Harbhajan Singh tragically fell into a river. "} +{"id": "5001430", "video_name": "3bbb39a0-dfaa-56e4-937b-29fedc27fb02", "text": ", its rivers drying up and its forests turning into desolate wastelands. "} +{"id": "0004470", "video_name": "09a40074-81d1-559b-bec0-82903c2fbf72", "text": "a 10 second video of a paradisiacal beach for an afro house music video set "} +{"id": "4003566", "video_name": "202708cd-208e-5e45-afcc-beed240b4033", "text": "A tranquil scene of the family sleeping peacefully in their leafy shelter under the starry night sky. Sunrise over the jungle, casting a warm, golden light on the family as they wake up. "} +{"id": "3004997", "video_name": "54a205b5-d18f-53a2-bf26-fc149af30dd6", "text": "A new festival venue at a theatre place calles lucid dreams with a lot of young people and imemrsive media installations "} +{"id": "7004298", "video_name": "ea349cf8-e221-53f7-9a9a-e3a5472a5afa", "text": "missile traveling hyper sonic speeds breaking the sound barrier "} +{"id": "3005503", "video_name": "fcc552be-63ba-5a9f-a2d8-5dfd89f43ff6", "text": "two people saying yes to marriage "} +{"id": "0005055", "video_name": "13d623bc-effd-51c8-ba4c-9e050ccbd85b", "text": "a cyborg warrior girl on a flying carpet "} +{"id": "3006348", "video_name": "8bf14a31-91a7-58ef-9d34-a7e7d27a21a5", "text": "a happy dog jumping in slowmotion "} +{"id": "4002839", "video_name": "23ac8742-e02e-5bdd-987a-0235bbcf9ace", "text": "Fade in from black to a bustling digital cityscape \u2013 pixels, binary codes, moving digital elements "} +{"id": "2004385", "video_name": "ef71a181-882a-55b8-94f2-083803092628", "text": "loopable background of a fire in a fireplace "} +{"id": "6004977", "video_name": "257ac589-6600-5640-9021-50bda9f7462b", "text": "Inside a sleek spaceship cockpit, a skilled female pilot with vibrant blue hair is maneuvering through a dazzling asteroid field, her expression focused and determined. "} +{"id": "4003880", "video_name": "8cc2a55c-3d3e-5e3e-b3c4-e782dbb2d2f0", "text": "chinese new year vibe, cartoon chinese dragon with red lantern, blinking eyes "} +{"id": "6003075", "video_name": "0e864c54-488f-5a32-8f3c-3b84692672be", "text": "Dungeons and Dragons style view of a series of burning villages "} +{"id": "6004295", "video_name": "221fb341-ef47-59c4-8219-91ac3f4daaed", "text": "an elephant cartoon doing all poses of surya namaskar. Keep the elemphant as a simple clip art. "} +{"id": "2003112", "video_name": "b3fa93e5-af0d-5752-ad4c-36dfdc451b72", "text": "Metaverse, Sports, Future,City, From far to near, moving the lens,50mm lens "} +{"id": "2007909", "video_name": "6e7993db-e5d2-599f-a73d-03079c658fd2", "text": "GOOGLE WRITTEN Logo, Robot, Dancing, hAPPY, Photorealistic "} +{"id": "1003407", "video_name": "3ee3c427-a986-5587-86ec-98b19aa5a145", "text": "Fashion show in which models wearing space suits and space clothing walk the runway "} +{"id": "2006350", "video_name": "2a990619-1237-5d54-b175-df49e6fdadcb", "text": "70s album cover melting eye, astral traveller "} +{"id": "4003487", "video_name": "b1c844b9-6271-55c8-a253-640610dc3f38", "text": "Show an image of a key being placed into a lock labeled "} +{"id": "1003764", "video_name": "455a95bb-2630-5ec2-b9c5-345587ccfc52", "text": "A kid playing a Game Boy, Fisheye, VHS, Super 8 "} +{"id": "3006568", "video_name": "c4f19a2c-5e0d-510f-95f5-0d04e1820225", "text": "head turning, slowling moving forward , waving, light rain and sunshine in the background "} +{"id": "3006940", "video_name": "8554f057-34a0-5be3-a988-4e57920376d5", "text": "breath on the edge of nowhere "} +{"id": "7004395", "video_name": "6dcba2e5-4d57-50f6-928f-c9573740b821", "text": "giant hand coming out of the sky and picking up house, cinematic, in the style of expressionism "} +{"id": "7004323", "video_name": "fb1c6850-27f3-58d7-9f7d-e7467626cb86", "text": "a man on horseback with a hat and a guitar "} +{"id": "0006443", "video_name": "2c864e87-972e-56eb-8a3e-135b653fc54a", "text": "ufo is flying over the sky next to the moon "} +{"id": "6003105", "video_name": "65d9a3b1-973c-56dd-a218-cf0255d82e83", "text": "a moving drone shot capturing a moving bullet train in safron color passing over a 8 lane highway, highway is partially crowded with all moving vehicles audi cars, and bmw trucks, Mercedes cars. "} +{"id": "0006084", "video_name": "2665d97d-f431-5bde-904c-615b919bc5ea", "text": "The Breathtaking Landscape: Open with a sweeping aerial shot of Serendell, with its lush forests, rolling hills, and a sparkling river winding through the kingdom. The sun bathes the land in a warm, golden glow. "} +{"id": "4002133", "video_name": "f4f911f8-7675-5284-8873-c5e940348801", "text": "That night the man arrived accompanied by a procession, they carried candles, the man insisted that the woman come down, she felt tempted, but she remembered the words of the old woman and the young woman told her, I know you are death, go in peace, still not my time. "} +{"id": "4003236", "video_name": "7a8f6b2a-6543-5271-ae99-4ba8e8425b46", "text": "male and female performing workout in a gym environment all sweaty nd motivated Message: HIIT workouts (Font: MODERN) "} +{"id": "6003184", "video_name": "44adace9-0f14-5734-bff5-1ce2c455f3f8", "text": "Mrs. Thatcher DJing at a Rave "} +{"id": "2005405", "video_name": "2e94c392-fb67-5ba3-ac99-813752b40e18", "text": "Cherry blossoms blowing in the wind in the blue sky "} +{"id": "1006385", "video_name": "74d0a6aa-2000-5844-b058-c7f217033e2c", "text": "handsome young man, dark hair, holding a spear "} +{"id": "8002376", "video_name": "7a077535-a04e-51bd-ba8f-b853e5ba41ba", "text": "Beautiful lake , waterfall , caves , sunrise. A woman with a blush hair swims in the water, her back to the camera and looks at a large beautiful lake. birds .camera close behind woman. "} +{"id": "1003903", "video_name": "4807a819-b66f-530d-802e-8804031fe5a6", "text": "background fire, glasses, camera zoom in Message: 1 Attachment "} +{"id": "5001298", "video_name": "2b98b2c3-456c-5fbe-b191-8576a61d0a50", "text": "many mushrooms in the fir forest "} +{"id": "6004688", "video_name": "5640d2dc-7883-50a2-918e-48ccd0ba3fa9", "text": "a burning blue fabric with flowers "} +{"id": "3004435", "video_name": "b7b3fd2b-5d04-59e9-87be-4e1afed6c3cf", "text": "Jesus raising from the dead emerging from the tomb on easter sunday, garden, birds, lightning, explosion, rembrandt style "} +{"id": "7004571", "video_name": "4809898d-62ba-50ca-a756-8fc0220dda86", "text": "create a boy in the sun "} +{"id": "3003037", "video_name": "c7eb2c9a-2780-5cfd-b8de-570e10cea4c9", "text": "fairy kittens with wings flying to each plant to pollinate them cinematic quality "} +{"id": "8002267", "video_name": "ba686c11-94a8-5e75-8f45-be5e68c36b5e", "text": "creation of the universe, planets, and meteorites "} +{"id": "1005680", "video_name": "68619291-1930-5e42-9cd1-7d01c0599c85", "text": "black shadows move on a white brick wall, spiritualism "} +{"id": "5001497", "video_name": "34b75ffd-310b-5fd6-928d-9b042cc44d28", "text": "a couple that has just broken up and walking away from each other on a windy day "} +{"id": "7002567", "video_name": "0efa278b-6518-56ec-92e0-44a1e03e5b6e", "text": "Grandad feeding goats, milking them zoom in the chimney in the background smoke rising in it "} +{"id": "6003223", "video_name": "cd39ecc6-cae6-5d2e-b1bd-761eccb67f75", "text": "running dinosaur 8k video with 60sec "} +{"id": "2003267", "video_name": "69bc06c0-6dac-5430-976c-082eea363d2c", "text": "create a very simplistic logo for an online store that is natural and uses beads and gems for jewelry called, ARTISAN AURA "} +{"id": "2005472", "video_name": "9fec81f9-e621-5111-8908-a6471c34d32e", "text": "Set the scene on a sunny day in the ant colony. "} +{"id": "6003729", "video_name": "87aa9ce8-f743-5f50-89bd-8ec73b585c53", "text": "Ahmed forgives Khalid and offers him a job in his newly rebuilt store.Khalid realizes the value of honesty and compassion. "} +{"id": "8001715", "video_name": "3c97e614-baaa-5907-adb7-58a24e3f2a5b", "text": "a robot walking against a white background "} +{"id": "0005405", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "PIXAR STYLE, A COMPUTER PROCESSOR INSIDE AN ICE CUBE, AND THE CUBE MELTING "} +{"id": "0005787", "video_name": "21463d5d-8a9a-5df6-a5d3-140cf324e6ce", "text": "a dog running behind a bus "} +{"id": "7004144", "video_name": "6ff26003-0fea-548c-955d-59a5d188cc8c", "text": "Men in a futuristic suit in a chair with a lamp on the side of the room behind her, slightly zooming out, "} +{"id": "4003164", "video_name": "0d24598a-6b49-532c-81f8-89368f14206b", "text": "2 couples of eyes are eye to eye. Isolate eyes "} +{"id": "0003574", "video_name": "3fc3f329-ea8e-5e51-9c7b-307d5a0fb4e0", "text": "speedfight 2 Driving through the desert "} +{"id": "0003360", "video_name": "3c365d7c-c441-5847-9faf-4cef8422bcf9", "text": "man changes to robot with a slow morph effect "} +{"id": "6004355", "video_name": "a611c4a9-ac46-59c5-a35f-37b6575d7c60", "text": "two dimensional scenery martial arts students seated on temple mats, meditating in peaceful japanese temple "} +{"id": "1006753", "video_name": "7ba0dd63-d9ed-5a45-96ad-cdd9f18eb407", "text": "A 22 year old boy is sitting under a tree in the middle of the forest in the dark and because of the darkness his face is not visible. "} +{"id": "7004156", "video_name": "0091aa04-67a4-502a-9dc9-6fcc71bea040", "text": "a boy is walking along his pet dog in a green forest, sun is shining through the thick forest, ghibli style "} +{"id": "7002992", "video_name": "9054cd9c-4155-5e97-8bb0-bd55d58d84cb", "text": "Game character Blue Sonic running and jumping on his feet "} +{"id": "8002254", "video_name": "50d755fb-a300-5a3a-9630-8f9c0deb1288", "text": "Stone Cold Steve Austin drinking a beer cinematic ultra realistic 4k "} +{"id": "4004446", "video_name": "cfc85b39-ebee-5c0e-8175-2fc2fefe1fe7", "text": "which some researchers believe could be remnants of the lost continent "} +{"id": "0004947", "video_name": "120acd93-8172-5af0-9ccb-7778684c6587", "text": "chicago skyline at night with snow falling in the background "} +{"id": "5001745", "video_name": "2ed89528-2fc0-58da-9a34-6deafa280450", "text": "drone film from party in the beach "} +{"id": "4002513", "video_name": "1eb483a6-a668-5cc7-8c7a-1af43dce0278", "text": "animation fire an and zoom in all man thinking and running "} +{"id": "1006581", "video_name": "78921fcf-b4af-5b3f-8fab-8401ef142194", "text": "users wearing VR headsets, immersed in various historical and cultural scenarios. These users are exploring ancient civilizations, strolling through interactive museums, and interacting with digital representations of historical figures. "} +{"id": "8002900", "video_name": "72cb4116-cb30-542e-82d5-bc32643dafbc", "text": "droplets of black oil dropping into the clear water "} +{"id": "2007967", "video_name": "892ff76c-a1d0-5312-baf1-189b87b38dd1", "text": "Blue shooting stars heading toward a green planet "} +{"id": "5001987", "video_name": "225a1551-840c-5087-a782-2bd69787ed73", "text": "a hand walking with his fingers "} +{"id": "3003809", "video_name": "f197629e-38e1-5574-885d-567385158931", "text": " an evocative scene of a fantastical world, blending elements of nature and technology with a focus on vivid colors and ethereal lighting."} +{"id": "5001915", "video_name": "5bbfc84c-2ae9-55fc-a5e1-c2176da4ceaa", "text": "Romantic bouquet of red roses, each petal of which is elegantly decorated in the shape of a heart on the beach, 4K resolution, "} +{"id": "0006201", "video_name": "28270329-570f-5767-b532-4ce66f9f3d50", "text": "A boy with wolf running in the forest towards sunset "} +{"id": "4003655", "video_name": "a3bc8d1a-b16d-5beb-9533-6924dc148ce4", "text": "a planet of color grey, somo fluorecent things and an astronaut walking in the middle "} +{"id": "6003287", "video_name": "2c5fb186-948b-5b56-b3e3-ac90f8ac4bdf", "text": "A dog with wings soars in the dusk sky "} +{"id": "3005275", "video_name": "ee900e1f-4ebf-5c12-9003-f936a97637fd", "text": "Ancient red palace, Pleasant and greatest, Moving, Castle "} +{"id": "0004814", "video_name": "0f97149e-0cb3-537f-bfc1-21ee077e2d46", "text": "boy speaking to the hunters, trying to persuade them to leave the jungle peacefully, showcasing his diplomacy. "} +{"id": "0003007", "video_name": "357d9ee7-e547-5a3a-ab28-6b5abd63da85", "text": "young people, dancing, electronic club, night, many colorful lights "} +{"id": "6002774", "video_name": "b70a8809-8a87-52d4-b973-6c4c402f9d3a", "text": "scary underwater scene, details, epic, movie, cinematic, 4k, "} +{"id": "4004831", "video_name": "94cfc33b-3e7e-5cdc-a064-dedc5f707a3c", "text": "man crying thinking about his lost love "} +{"id": "1005727", "video_name": "6952824f-d473-5fa8-9259-68ba676692d8", "text": "Krishna asks Barbarika whom he would favour in the war. Barbarika reveals that he intends to fight for the side whichever is weak . "} +{"id": "4003943", "video_name": "46a42673-1c62-59cc-aea8-36dbf3a4b73f", "text": "cherry blooms fast opening of buds. Sunset "} +{"id": "1005162", "video_name": "5f080c88-9942-51d1-934b-110aa66cd338", "text": "human walking on the moon on fire "} +{"id": "7003304", "video_name": "8c2724a5-4afd-54c6-88fd-682c9ecc8192", "text": "a woman in a fashion film art experimental runs down a long corridor with flashing lights "} +{"id": "1004519", "video_name": "53e8209e-a8be-5c83-b5ae-a74d56c7005b", "text": "Cook the pasta according to package instructions until al dente. Drain and set aside. "} +{"id": "2005583", "video_name": "28d4c096-9c23-580c-a127-c36edca7b61d", "text": "Imagine Alex searching through a stack of papers on their desk. Suddenly, they come across a brochure from your digital marketing and web design company "} +{"id": "1006996", "video_name": "7ffdb367-6649-5d27-a47c-11858758e711", "text": "boy alex challenge to rematch game "} +{"id": "6002089", "video_name": "e4362e45-0d40-54bc-b48d-761a254b8ac6", "text": "chibi people looking at mobile devices walking about in a street "} +{"id": "7002022", "video_name": "a441bd60-eb2d-5487-92a7-5fc426c061d7", "text": "Two beautiful white dogs play with a small red ball "} +{"id": "2006802", "video_name": "eae755bd-54f3-5590-9b90-171e68813082", "text": "Biden performs Middle East diplomacy in his dream by negotiating an intergalactic peace treaty with the beautiful black Princess of Mars. Afrofuturism, hyper realism, 8K. "} +{"id": "8002446", "video_name": "b09e0409-8cfb-5457-bfd4-58198aa18096", "text": "abstract flow of lines slowly moving from left to right. each lines has a soft gradient that blends into the background. looks like an electric flow "} +{"id": "8001162", "video_name": "63add022-f7c6-538f-985e-65d8209612d1", "text": "old man walking and taking with subtitles "} +{"id": "3003673", "video_name": "ac94084a-4564-5d3b-afe0-c20777ae65ef", "text": "imagine iron man with a gold cape using his powers against spiderman, the scene takes place in the middle of New York City in the United States "} +{"id": "8001750", "video_name": "2f65506d-0a3f-5651-a22a-6d069c54c7f1", "text": "4k, high quality, A Chinese teenager is practicing Chinese calligraphy with the night view of the Canton Tower in Guangzhou as the background. Inside, the air is filled with the lingering smoke of burning sandalwood incense. "} +{"id": "4004001", "video_name": "f628ad88-430b-5593-8ea6-20a78da821e3", "text": "a panda dancing under the tree, photorealistic, masterpiece "} +{"id": "8001121", "video_name": "ab30110a-adfd-505b-8a1d-e637d7a073df", "text": "Bhangarh Fort at night with ghost "} +{"id": "4002261", "video_name": "3a3ef53d-d779-5626-98a3-6137ab84f498", "text": "animation of how money falls out of a bank card "} +{"id": "1006447", "video_name": "7606625f-2f05-501a-b617-af21267721cd", "text": "A greek statue under the sea "} +{"id": "2003557", "video_name": "ba31c1c1-d51a-51c7-a348-5c4b15966d58", "text": "realistic aliens vs army 2023 video "} +{"id": "0006436", "video_name": "2c45f71f-fe7e-5bf0-bd28-8c7f883c5787", "text": "deep blue ocean cuddle fish swimming across "} +{"id": "0003700", "video_name": "41f20485-395f-57f5-ab07-2918c2b2b71a", "text": "1941 Citizen Kane film, Denzel Washington is the judge in his courtrrom, natural motion "} +{"id": "7004505", "video_name": "69fe2963-63f5-5b36-989d-5d1df46e57e6", "text": "a still image logo of a d and a x making an infinity symbol "} +{"id": "8003224", "video_name": "76b99bb7-45ab-526c-9349-7c1401cf9e86", "text": "a meteor landing in the middle of a city in the style of into the spiderverse "} +{"id": "1005540", "video_name": "65ef22cd-7eec-5175-8970-2309c060657b", "text": "a colorful cat running on the city street, sunny day, blue sky "} +{"id": "7003455", "video_name": "ce3c6994-59fe-575a-8580-b3be0c1637f0", "text": "futuristic colossal battleship firing beams coloured pink in space "} +{"id": "3005821", "video_name": "0fd40f37-984c-5349-b0ba-177bea5530e9", "text": "eight fyling sauers fly through the planet earth, distance shot "} +{"id": "2006444", "video_name": "0cf01c7f-0c58-56c7-b753-f7c22604644e", "text": "a little boy in jungle Sam dipped his fingers into the cool water, "} +{"id": "1004287", "video_name": "4f4c5fe3-aab7-5238-b962-8517881fdeff", "text": "hd advertisment for a gym business "} diff --git a/webpage/text_files/anno_rd1/text_zh_display.jsonl b/webpage/text_files/anno_rd1/text_zh_display.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..da4a8cc7e9d3ebc2bdf5097cb8b6c68f0a5e8566 --- /dev/null +++ b/webpage/text_files/anno_rd1/text_zh_display.jsonl @@ -0,0 +1,30000 @@ +{"id": "3003896", "video_name": "b271d77d-b09e-50e6-8f00-b2b647249284", "text": "\u6c34\u4e0b\u5973\u5b50\u4e0d\u65ad\u4e0b\u6c89\uff0c\u5468\u56f4\u6f02\u6d6e\u7740\u8bb8\u591a\u62bd\u8c61\u7684\u5237\u7b14\u548c\u788e\u7247\u3002"} +{"id": "6004706", "video_name": "3ff3b4c6-f92a-526f-9075-4dabe78789b0", "text": "\u9ad8\u5206\u8fa8\u7387\u7684CGI\u52a8\u753b\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u6cbf\u7740\u53ef\u7231\u7684\u4e61\u95f4\u5c0f\u8def\u8d70\u3002"} +{"id": "3005501", "video_name": "22ea2bef-19c2-5539-a051-263c666ea253", "text": "\u4e00\u4f4d\u670b\u53cb\u9762\u5bb9\u626d\u66f2\u5730\u72ec\u81ea\u7ad9\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\uff0c\u624b\u638c\u8d34\u5728\u4e00\u4e2a\u892a\u8272\u3001\u7834\u88c2\u7684\u955c\u5b50\u4e0a"} +{"id": "3006574", "video_name": "00d50fa5-6df4-5f51-97bf-846e4f886058", "text": "\u6d77\u6d6a\u62cd\u6253\u7740\u6c99\u6ee9\u3002\u5411\u6d77\u6d6a\u79fb\u52a8\u3002"} +{"id": "0004967", "video_name": "12730f91-8baf-5aa4-94a9-4fc3d0cbfc2a", "text": "\u7334\u5b50\u5728Radmir RolePlay CRMP 4K Ultra HD\u4e2d\u73a9\u800d\u3002"} +{"id": "3006567", "video_name": "d2d7b08c-66e2-57e1-a78b-d223f9097264", "text": "\u5de8\u5927\u7684\u9aa8\u9abc\u6cd5\u8001\u5236\u6210\u94ec\u7535\u8def\u677f\uff0c\u88ab\u73bb\u7483\u5236\u6210\u7684\u70df\u96fe\u6240\u5305\u56f4\uff0c\u7528\u8d858\u6beb\u7c73\u7535\u5f71\u955c"} +{"id": "0003932", "video_name": "00154155-84e1-575a-ae9a-9174687a86c2", "text": "\u8fd9\u66fe\u7ecf\u662f\u4e00\u4e2a\u4eba\u4eec\u6b22\u7b11\u3001\u5b69\u5b50\u4eec\u5feb\u4e50\u73a9\u800d\u7684\u5730\u65b9\u3002"} +{"id": "1004008", "video_name": "4a24c4fc-6791-51a7-82f8-492490e376b1", "text": "\u65b0\u9c9c\u6c34\u679c\u3002\u4fe1\u606f\uff1aGrowCode\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003149", "video_name": "4095e718-46f7-5f0b-870a-dc43edb41bf5", "text": "\u4e00\u5806\u8682\u8681\u5728\u722c\u6765\u722c\u53bb\u3002\u4fe1\u606f\uff1aARDVRK\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004026", "video_name": "be366522-6100-5d82-b4e1-6652dceb6b4f", "text": "\u4e00\u53ea\u677e\u9f20\u5728\u591c\u665a\u7a7f\u8fc7\u4e1c\u4eac\u6ed1\u677f\u3002"} +{"id": "7003127", "video_name": "3026e3c8-9153-53b5-bd0c-b4152575338d", "text": "\u4e00\u8f86\u6551\u62a4\u8f66\uff0c\u524d\u89c6\u56fe\uff0c\u5199\u7740\u201c\u6551\u62a4\u8f66\u201d\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "7004568", "video_name": "f54a7ff4-eaf6-5bdf-9af8-f32826d872cd", "text": "\u521b\u9020\u4e00\u5e45\u666f\u89c2\uff0c\u4e00\u4e2a\u7537\u5b69\u548c\u4e24\u4e2a\u670b\u53cb\u5728\u4e1b\u6797\u91cc\u65c5\u884c\u3002"} +{"id": "3005850", "video_name": "c1d789ee-4430-5405-bfdb-e66c1de30ad3", "text": "\u4e00\u4e2a\u52a8\u7269\u7ec6\u80de\u7ed3\u6784\uff0c\u663e\u793a\u5185\u90e8\u7ec6\u80de\u5668\u3002"} +{"id": "6002242", "video_name": "419d695e-1105-5e2f-8627-6b09d1e47265", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u98de\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u67d4\u548c\u7684\u8272\u5f69\u8c03\u8272\u677f\u3002"} +{"id": "7003834", "video_name": "c4418dd6-f251-58ee-a224-e48435ead701", "text": "\u7535\u5f71\u9ed1\u8272\u7cfb\uff0c\u4e2d\u666f\u62cd\u6444\uff0c\u8857\u706f\uff0c\u6162\u6162\u62c9\u5f00\u955c\u5934\uff0c\u6234\u7740\u5706\u9ed1\u773c\u955c\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u795e"} +{"id": "6004970", "video_name": "aeab9a7b-610a-5d8e-a3e8-d0675ac52c6a", "text": "\u4e24\u53ea\u732b\u548c\u4e00\u53ea\u8003\u62c9\u8df3\u821e\u3002"} +{"id": "1003252", "video_name": "3bda7339-ade4-57c7-bd77-ab85e942b0a6", "text": "\u4e00\u5f20\u5e03\u6ee1\u6d82\u9e26\u7684\u76b1\u5df4\u5df4\u7684\u65e7\u5199\u4f5c\u7eb8\uff0c\u4e0a\u9762\u5199\u7740\u201c\u4e0d\u4e45\u4e4b\u540e\u7684\u67d0\u4e00\u5929\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004363", "video_name": "8128c558-0ed7-5732-877d-592837259d7b", "text": "\u521b\u5efa\u4e00\u4e2a\u4e1b\u6797\u52a8\u7269\u7684\u5750\u59ff\u573a\u666f\uff0c\u5305\u62ec\u72ee\u5b50\u3001\u5927\u8c61\u3001\u8001\u864e\u3001\u957f\u9888\u9e7f\u548c\u5154\u5b50\u3002\u91c7\u75283D\u3001\u5361"} +{"id": "7002777", "video_name": "010ce4c1-c967-541e-9d37-71f0df8af6e1", "text": "\u6709\u8bb8\u591a\u672a\u6765\u4e3b\u4e49\u914d\u4ef6\u7684\u4eba\u5f62\u5916\u661f\u4eba"} +{"id": "2003226", "video_name": "b061d565-908c-593c-ac3f-3795a6f2766f", "text": "\u5c55\u51fa\u7684\u68a8\u5f62203\u514b\u62c9\u94bb\u77f3"} +{"id": "4002552", "video_name": "4860fc88-67a7-5e58-ba17-31c0a1efbecf", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u753b\u98ce\u666f\u3002"} +{"id": "8003618", "video_name": "a75baca1-6603-5688-a558-e63326682f57", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u7728\u773c\u548c\u5fae\u7b11\u3002"} +{"id": "2007645", "video_name": "b32bd165-0178-5fb4-b7d0-e2d911b75f23", "text": "\u5f3a\u8c03\u4eab\u53d7\u65c5\u7a0b\u7684\u76ee\u7684\u5730\u89c6\u89c9\uff0c\u53ef\u4ee5\u662f\u4e00\u7fa4\u89d2\u8272\u4e00\u8d77\u6b23\u8d4f\u7f8e\u666f\u3002"} +{"id": "0006234", "video_name": "28d9f3a8-26f5-5038-b2e8-253b3264da95", "text": "\u4e00\u4e2a30\u5c81\u7684\u7537\u4eba\u5728\u6d77\u6ee9\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u6563\u6b65\uff0c\u508d\u665a\u7684\u5149\u7ebf\u4e0b\uff0c\u65e5\u843d\u65f6\u5206\uff0c4K\u3001\u9ad8\u6e05\u3001\u903c\u771f"} +{"id": "4002383", "video_name": "6600170b-9206-5bd5-b6ff-f835ffa54061", "text": "\u7b2c\u4e8c\u5929\uff0c\u8389\u8389\u548c\u5979\u6700\u597d\u7684\u670b\u53cb\u5c71\u59c6\u89c1\u9762\u4e86\u3002"} +{"id": "3006164", "video_name": "57fc9a74-1d6e-5620-9402-d5dd90969c72", "text": "\u8b66\u60d5\u672a\u77e5\u7684\u8bf1\u60d1\uff0c\u597d\u5947\u5fc3\u53ef\u80fd\u5bfc\u81f4\u4e0e\u9ed1\u6697\u5171\u821e\uff0c\u5373\u4f7f\u97f3\u4e50\u6d88\u5931\u540e\u4e5f\u4f1a\u60a0\u7136\u6325\u4e4b\u4e0d\u53bb\u3002"} +{"id": "6003361", "video_name": "89bdb97b-e8e7-5919-b7f5-84c2ae0731cb", "text": "\u955c\u5934\u5207\u6362\u5230\u827e\u7c73\uff0c\u5979\u6df1\u6df1\u5730\u671b\u7740\u68ee\u6797\uff0c\u8138\u4e0a\u5145\u6ee1\u4e86\u6050\u60e7\u3002"} +{"id": "3004732", "video_name": "730304ac-9120-523b-a786-beaf45d249d8", "text": "\u5c0f\u7537\u5b69\u5728\u4e00\u5bb6\u821e\u8e48\u5b66\u9662\u8df3\u82ad\u857e\u3002"} +{"id": "1004951", "video_name": "5b8f24eb-afd9-5389-992f-abb1212bd8d7", "text": "\u8fd9\u5ea7\u57ce\u5e02\u5e86\u795d\u4e86\u4ed6\u4eec\u5931\u53bb\u7684\u82f1\u96c4\u3002"} +{"id": "2006703", "video_name": "efebd381-1f59-5cf2-bd2f-02d6ba1ebbc8", "text": "\u4e09\u4e2a\u7537\u5b69\u5728\u5bb6\u5403\u62ab\u8428\u3002"} +{"id": "7002917", "video_name": "ada9471b-d0eb-5c2a-b46e-2035340d0220", "text": "\u975e\u5e38\u8be6\u7ec6\u8d85\u53ef\u7231\u7684\u864e\u6591\u732b\uff0c\u6bdb\u53d1\u8d85\u7ea7\u84ec\u677e\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "4004659", "video_name": "5870945c-16b0-5fe9-8239-20c4a2860153", "text": "\u8f6c\u6362\u6210\u9633\u5149\u900f\u8fc7\u6811\u6728\u6d12\u5411\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u3002"} +{"id": "2006559", "video_name": "b0f86fbc-6305-5bb9-8549-3c81d8ce753d", "text": "\u628a\u4ed6\u4eec\u5e26\u5165\u4e86\u4e00\u6761\u9ed1\u6697\u7684\u9053\u8def\u3002"} +{"id": "2005855", "video_name": "b3e91da5-9035-503b-9d16-6523a5e683fe", "text": "\u4eba\u4eec\u5728\u7eb8\u677f\u76d2\u4e0a\u8df3\u8857\u821e\u3002\u628a\u5b83\u505a\u5f97\u5361\u901a\u4e00\u4e9b\u3002"} +{"id": "4003468", "video_name": "aad29556-9c6e-5326-8393-c594d9761589", "text": "\u4e00\u6bb5\u53ef\u7231\u7684\u5a5a\u793c\u89c6\u9891\uff0c\u7a7f\u7740\u7ee3\u5408\u5a5a\u7eb1\u3002"} +{"id": "7004466", "video_name": "76b05d90-6ca3-5024-a0a8-ebb7b4ab8c69", "text": "\u4ece\u6811\u4e0a\u843d\u4e0b\u4e00\u7247\u53f6\u5b50\uff0c\u88ab\u98ce\u5439\u52a8\u7684\u53f6\u5b50\u6548\u679c\uff0c\u5361\u901a\u98ce\u683c\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "2005340", "video_name": "4382e6ef-be4e-5082-b1dd-bb09418d1e26", "text": "\u4e00\u4f4d\u4ea4\u6362\u751f\u5728\u955c\u5934\u524d\u770b\u8d77\u6765\u5f88\u5f00\u5fc3\u3002"} +{"id": "8001951", "video_name": "9de48c23-f8a6-565b-a69a-6c52e1b44892", "text": "\u6709\u4e00\u4e2a\u8584\u96fe\u5f25\u6f2b\u7684\u5c71\u8c37\u3002\u571f\u8033\u5176\u56fd\u65d7\u5728\u8fd9\u4e2a\u5c71\u8c37\u4e2d\u95f4\u98d8\u626c\u3002"} +{"id": "3006315", "video_name": "9e371c7e-c022-5364-8186-00b658689a32", "text": "\u5b89\u96c5\u00b7\u6cf0\u52d2\u00b7\u4e54\u4f0a\u7a7f\u7740\u5185\u8863\u5750\u7740\u3002"} +{"id": "1006647", "video_name": "79cc9595-d800-5453-95f4-b00207b80068", "text": "\u5b9d\u74f6\u5ea7\u7684\u661f\u5ea7\u6807\u5fd7\u662f\u4e00\u4e2a\u7537\u4eba\u4ece\u4e00\u4e2a\u7f50\u5b50\u4e2d\u5012\u6c34\u7684\u5f62\u8c61\u3002"} +{"id": "0003965", "video_name": "00da7c18-d676-575f-a200-bc4ae90e504d", "text": "\u5458\u5de5\u6b63\u5728\u5bfb\u627e\u62fc\u56fe\u5757\u3002"} +{"id": "3004607", "video_name": "b76f9ca5-7171-508c-b705-e90958d8359d", "text": "\u4e00\u5bf9\u53ef\u7231\u7684\u60c5\u4fa3\u5750\u5728\u4e24\u68f5\u6811\u4e0b\uff0c\u5c31\u50cf\u5728\u4e00\u4e2a\u68a6\u5e7b\u4e16\u754c\u91cc\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u6548\u679c\u3002"} +{"id": "2005217", "video_name": "c5234678-33cf-536a-b9a9-e7b5d6c3bde1", "text": "\u6709\u4e00\u95f4\u6709\u7a97\u6237\u7684\u9ed1\u6697\u623f\u95f4\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "0006847", "video_name": "342686cf-5a4f-5941-b766-672b14a00b5c", "text": "\u4e00\u4e2a\u6765\u81ea\u54e5\u65af\u8fbe\u9ece\u52a0\u7684\u5496\u5561\u519c\u573a\u666f\u89c2\uff0c\u540e\u9762\u662f\u4e00\u5ea7\u706b\u5c71\uff0c\u914d\u6709\u5178\u578b\u7684\u5c0f\u54e5\u65af\u8fbe\u9ece\u52a0\u8001"} +{"id": "1003067", "video_name": "385cdaea-1364-5c3a-aca2-2bcbbb3ab699", "text": "\u89d2\u6597\u58eb\u3001\u52a8\u6001\u3001\u97f3\u6548\uff1a\u5251\u7684\u78b0\u649e\u58f0\u3002"} +{"id": "0005939", "video_name": "2384ac11-68c5-5c72-86a3-e4101e04a2bc", "text": "\u4e00\u5ea7\u4e2d\u4e16\u7eaa\u7684\u4e2d\u56fd\u57ce\u5e02\uff0c\u5728\u7f8e\u4e3d\u7684\u6708\u5149\u4e0b\uff0c\u57ce\u5e02\u91cc\u53ea\u6709\u4e00\u76cf\u706f\u5728\u71c3\u70e7\u3002"} +{"id": "1004374", "video_name": "50c9e61c-b8cd-5821-90af-774ee94e4950", "text": "\u60f3\u8c61\u4e00\u4e0b\uff0c\u53cb\u597d\u7684\u5c0f\u661f\u661fSparkle\u5728\u5176\u4ed6\u661f\u661f\u4e2d\u95ea\u8000\u3002"} +{"id": "3003186", "video_name": "cdb15193-3e1e-5e6a-ab4f-c9c54098ab3f", "text": "\u4e4c\u514b\u5170\u5b88\u62a4\u8005\u662f\u57ce\u5e02\u7684\u9ec4\u84dd\u8272\u88c5\u7532\u8863\u8d85\u7ea7\u82f1\u96c4\u3002"} +{"id": "4002344", "video_name": "188462b1-c3cc-5074-8532-98edaa67e051", "text": "floor of an old building.\n\n\u8001\u51ef\u8389\u838e\u662f\u4e00\u4f4d\u53e4\u8001\u7684\u5973\u4eba\uff0c\u5979\u72ec\u81ea\u751f\u6d3b\u5728\u4e00\u5e62\u8001\u5efa\u7b51\u7684\u9876\u5c42\u7684\u5c0f\u516c"} +{"id": "1006109", "video_name": "7013e2f8-defd-5fd8-9f20-8826f896906a", "text": "\u767d\u96ea\u516c\u4e3b\u5728\u9ed1\u6697\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u5f98\u5f8a\uff0c\u770b\u8d77\u6765\u5f88\u5bb3\u6015\u30029:16"} +{"id": "1004704", "video_name": "575fa507-5b5f-5920-8160-1b866fb1411e", "text": "\u573a\u666f1\uff1a\u4ecb\u7ecd\u8fd9\u4e2a\u7537\u5b69\uff0c\u5e76\u63cf\u8ff0\u4ed6\u5f00\u59cb\u6cbf\u7740\u8def\u8d70\u7684\u60c5\u666f\u3002"} +{"id": "3004712", "video_name": "72607b12-2c1c-5a18-b9be-f4d99a5cd706", "text": "\u73b0\u5728\u7ee7\u7eed\u4e0a\u9762\u7684\u573a\u666f\uff0c\u4ecb\u7ecd\u53d1\u5c55\u969c\u788d\u7684\u6982\u5ff5\u548c\u513f\u7ae5\u53ef\u80fd\u9762\u4e34\u7684\u8ba4\u77e5\u6311\u6218\u3002"} +{"id": "7002776", "video_name": "bdb70246-983e-5009-a278-ce20b361e6ee", "text": "\u9a6c\u65af\u514b\u975e\u5e38\u5174\u594b\uff0c\u4ee5\u81f3\u4e8e\u4ed6\u8df3\u8d77\u4e86\u821e\u3002"} +{"id": "8001800", "video_name": "c2190f99-f1f6-5706-990f-a0cffe933ea4", "text": "\u8c6a\u534e\u522b\u5885\u914d\u6709\u65e0\u8fb9\u6cf3\u6c60\u3001\u5168\u666f\u843d\u5730\u7a97\u548c\u6d77\u666f\uff0c\u8fd8\u6709\u7167\u660e\u68d5\u6988\u6811\u3002"} +{"id": "3003280", "video_name": "14b2f464-353e-525d-af27-c51529a714f8", "text": "1970\u5e74\u4ee3\u5531\u7247\u5e97\u7a97\u53e3\u5c55\u793a\u7684Electric Light Orchestra\u6d77\u62a5\u3002"} +{"id": "7003835", "video_name": "1d684f25-f468-578b-b9b8-960f6aae21cb", "text": "\u4e00\u4f4d\u8001\u592a\u592a\u5728\u8f66\u5b50\u8fd8\u5728\u884c\u9a76\u4e2d\u8df3\u4e0b\u4e86\u8f66\uff0c\u54c7\uff01"} +{"id": "2004265", "video_name": "1d6a4e1b-bfa0-5b78-81b7-a4adaf960d0c", "text": "\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u642c\u8fd0\u8d27\u7269\uff0c\u8d70\u8fdb\u4e00\u4e2a\u5145\u6ee1\u8d27\u67b6\u7684\u4ed3\u5e93\u3002"} +{"id": "2007015", "video_name": "b41b2a26-22da-51fa-8b2a-3e87d21c155f", "text": "\u573a\u666f\u5c31\u50cf\u4e00\u4e2a\u5782\u76f4\u9762\u4e0a\u7684\u5361\u5415\u5e03\u65af\uff0c\u65cb\u8f6c\u7740\u7684\u5f3a\u5ea6\u5c06\u4e00\u5207\u5438\u5165\u6df1\u6e0a\u3002"} +{"id": "6004547", "video_name": "8567d73c-2c76-5290-925f-67562a1e4813", "text": "\u4e00\u4e2a\u5361\u901a\u98ce\u683c\u7684\u4fa6\u63a2\u84dd\u8272\u8001\u9f20\u3002"} +{"id": "1004783", "video_name": "586b0481-aa52-50c6-9ad0-cb1481c115cd", "text": "\u4e00\u5bf9\u4e4c\u9e26\u5728\u8d85\u73b0\u5b9e\u7684\u68ee\u6797\u91cc\u7b49\u5f85\u6b7b\u8005\u590d\u6d3b\u3002"} +{"id": "2006662", "video_name": "595c1dbe-118e-563f-a8ac-de1a8eba6f06", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u4f4d\u540d\u53eb\u8389\u62c9\u7684\u5e74\u8f7b\u5973\u5deb\u6765\u5230\u4e86\u5b66\u6821\u3002"} +{"id": "0004068", "video_name": "02b8877a-6658-5787-acd0-b42b64b77aa4", "text": "\u5973\u4eba\u56e0\u5931\u53bb\u6240\u7231\u7684\u4eba\u800c\u611f\u5230\u60b2\u4f24\u3002\u5c3a\u5bf8\u4e3a1920x1080\u3002"} +{"id": "3006767", "video_name": "9f8389a1-1076-5aeb-942d-1c1edc8e4ca5", "text": "\u91d1\u5b57\u5854\u7684\u9ad8\u6e05\u5185\u90e8\u666f\u8c61"} +{"id": "4002970", "video_name": "ddd32609-d0e0-5625-9318-3a0948afabbe", "text": "\u6c14\u573a\u95ea\u8000\uff0c\u5634\u5df4\u52a8\u8d77\u6765\u3002"} +{"id": "6002305", "video_name": "3349df80-d748-5bbf-a2c9-01ac42a155ad", "text": "\u7535\u5f71\u5316\u7684\u3001\u5728\u6d77\u6ee9\u4e0a\u5feb\u4e50\u7684\u5973\u5b69\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "5001071", "video_name": "4ddc2d4e-898f-5db1-b2a3-2cfad8491485", "text": "\u4eab\u53d7\u8212\u9002\u7684\u79df\u8f66\u670d\u52a1\u3002"} +{"id": "1003518", "video_name": "40f20f78-a149-53fe-9af4-d1579d6fe860", "text": "\u6709\u4e24\u4e2a\u540d\u53eb\u8389\u8389\u548c\u73ab\u7470\u7684\u6700\u597d\u7684\u670b\u53cb\u3002"} +{"id": "3006984", "video_name": "297b0ba6-f370-5ab4-95dc-7bada8c90bf3", "text": "\u4e24\u4e2a\u7eff\u8272\u5916\u661f\u4eba\u5728\u4ff1\u4e50\u90e8\u6253\u789f\uff0c\u6fc0\u5149\u3001\u95ea\u5149\u548c\u706f\u5149\u3002\n\nSource sentence: The cat is sleeping on the couch in the living room.\n"} +{"id": "0004678", "video_name": "0d2ea4df-3a5d-5c69-8719-3e022e04faca", "text": "\u4e24\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u670b\u53cb\u5728\u4ea4\u8c08\u3002"} +{"id": "6002047", "video_name": "97b31c9f-220c-554c-ae61-24b43c6cd9a0", "text": "\u4e00\u9053\u7f8e\u4e3d\u7684\u65e5\u843d\u548c\u4e00\u540d\u5750\u5728\u6d77\u6ee9\u4e0a\u7684\u7537\u5b50\u3002"} +{"id": "4003830", "video_name": "296785a2-59ed-5758-b205-3ddc870393f1", "text": "\u8ba9\u6211\u770b\u8d77\u6765\u597d\u4e00\u4e9b\uff0c\u6211\u53ea\u662f\u5916\u8868\u8d2b\u7a77\uff0c\u5185\u5fc3\u662f\u6e29\u6696\u800c\u5bcc\u6709\u7684\u3002"} +{"id": "3005138", "video_name": "576c6ae5-b0f7-5e25-84b6-8f5470b24cd9", "text": "\u4e16\u754c\u5728\u5b87\u5b99\u4e2d\u878d\u5316\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002"} +{"id": "5001238", "video_name": "8b1633ff-0369-548a-9c87-0c5156580f2f", "text": "Source sentence: \u597d\u83b1\u575e\u725b\u4ed4\u4f0d\u8fea\u79fb\u52a8\u4ed6\u7684\u5e3d\u5b50"} +{"id": "1006633", "video_name": "79973fdb-dd5c-57d7-b102-d943b20f9fe4", "text": "\u4e00\u4e2a\u6234\u8349\u5e3d\u7684\u8fea\u58eb\u5c3c\u7535\u5f71\u91cc\u7684\u7537\u5b69\u3002"} +{"id": "7002929", "video_name": "db92534b-a5dd-5b8b-9974-efb5f37c3756", "text": "\u89c6\u9891\u957f\u5ea6\u4e3a4\u5206\u949f\uff0c\u4f69\u4f69\u732a\u548c\u5988\u5988\u3001\u5c0f\u718a\u73a9\u800d\u3002"} +{"id": "1006839", "video_name": "7d0ad8bb-c7fe-514d-9db9-66eebbc6b5b6", "text": "\u7a7a\u4e2d\u98de\u4eba1\u53f7\u7403\u978b\u7ff1\u7fd4\u4e8e\u592a\u7a7a\u548c\u5730\u7403\u3002"} +{"id": "8003288", "video_name": "3c91d34e-7276-5706-8450-8637c57600c7", "text": "\u6587\u827a\u590d\u5174\u65f6\u671f\uff0c\u4e0a\u5e1d\u7684\u8096\u50cf\u4fef\u77b0\u7740\u9ed1\u4eba\u5723\u6bcd\u739b\u5229\u4e9a\u548c\u5a74\u513f\u8036\u7a23\u3002"} +{"id": "2005507", "video_name": "698132f9-3f0e-5edd-8b91-7deba99d14f3", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u77f3\u95e8\u5c01\u95ed\u7740\u4e00\u4e2a\u5e7f\u9614\u7684\u5927\u5385\uff0c\u5176\u8868\u9762\u88c5\u9970\u7740\u56db\u4e2a\u94a5\u5319\u5b54\u3002"} +{"id": "8002939", "video_name": "6268cfe8-0ed8-5d88-9b2e-fad65e4d695e", "text": "\u7528\u8fd0\u52a8\u57ab\u505a\u7684\u8dd1\u6b65\u673a\u4e0a\u8d70\u52a8\u7684\u6728\u5236\u6a21\u578b\u3002"} +{"id": "5001012", "video_name": "cf82015b-b459-58e7-bf2b-be44ba482530", "text": "\u7b2c\u4e8c\u5929\u65e9\u4e0a\uff0c\u5728\u53e6\u4e00\u4e2a\u90ca\u533a\u540e\u9662\uff0c\u4e00\u4e2a\u540d\u53ebLeo\u7684\u7537\u5b69\u5728\u8349\u5730\u4e0a\u53d1\u73b0\u4e86\u762a\u6389\u7684\u6c14\u7403\u3002"} +{"id": "8001626", "video_name": "b73278c5-20e7-507d-923d-ead8a6e23939", "text": "Minecraft\u6e38\u620f\u9891\u9053\u201cMemhik Play\u201d\u7684\u5c4f\u5e55\u4fdd\u62a4\u7a0b\u5e8f\u3002 \n\nSource sentence: The new iPhone has a better camera than the previous model. \n\u65b0\u6b3eiPhone\u7684\u76f8\u673a\u6bd4\u4e4b\u524d\u7684\u578b"} +{"id": "3006008", "video_name": "39e7ddcb-8714-5b31-b943-3e7288dc2a2f", "text": "\u5f15\u8a00\uff1a\u7f57\u74e6\u7279\u6cd5\u6848\n\u7f57\u74e6\u7279\u6cd5\u6848\uff08\u6b63\u5f0f\u540d\u79f0\u4e3a1919\u5e74\u65e0\u653f\u5e9c\u4e3b\u4e49\u548c\u9769\u547d\u72af\u7f6a\u6cd5\u6848\uff09\u662f\u82f1\u56fd"} +{"id": "1004125", "video_name": "4c677bf1-a939-5d8a-a351-5227c39063bf", "text": "\u6587\u672c\u5145\u6ee1\u4e00\u4e2a\u4f4d\u7f6e\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "3004173", "video_name": "b1e8a057-5264-5c4c-a944-7bf167f0c6a7", "text": "\u5361\u5c14\u8fd9\u53ea\u6bdb\u6bdb\u866b\u88f9\u7740\u4e1d\u7ef8\u822c\u7684\u8327\uff0c\u6a21\u4eff\u86f9\u7684\u5f62\u6001\u3002\u5c55\u793a\u5b83\u6bcf\u5929\u8d8a\u5305\u8d8a\u7d27\u7684"} +{"id": "4003460", "video_name": "e5fdb5fe-bb9e-5e4d-9df0-6e982d2c8ea6", "text": "\u8718\u86db\u4fa0\u7b2c\u4e00\u573a\u666f\uff1a\u4f60\u5728\u5e8a\u4e0a\u9192\u6765\uff0c\u8138\u4e0a\u5e26\u7740\u65e0\u804a\u7684\u8868\u60c5\u3002"} +{"id": "1006492", "video_name": "76e25c7a-a5cc-539d-9d59-bcbd1a7b1735", "text": "\u5728\u52a0\u52d2\u6bd4\u6d77\u7684\u591c\u665a\uff0c\u62cd\u6444\u843d\u5728\u94c1\u76ae\u5c4b\u9876\u623f\u5c4b\u4e0a\u7684\u96e8\u6c34\u5b9a\u683c\u955c\u5934\u3002"} +{"id": "1004089", "video_name": "4bc0131e-17fa-5b19-adc4-107c0be6e379", "text": "\u8fd9\u4e2a\u573a\u666f\u4f20\u8fbe\u4e86\u5e78\u798f\u7684\u4e3b\u9898\uff0c\u56e0\u4e3a\u6770\u897f\u5361\u548c\u5927\u536b\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u79cb\u5929\u6797\u51a0\u4e0b\u76f8\u9047\uff0c\u8c61\u5f81"} +{"id": "2003892", "video_name": "7337241a-7b6f-5760-a536-495348bb6026", "text": "\u5de8\u5927\u7684\u5916\u661f\u4eba\u5728\u5927\u5385\u4f1a\u9762\u3002"} +{"id": "8003729", "video_name": "85918a54-1b62-5f03-9183-14afc15bf7ee", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\uff0c\u89e3\u91ca\u5c3c\u5e0c\u7c73\u4e66\u7b2c\u4e00\u7ae0\u3002"} +{"id": "0005023", "video_name": "135d719c-77ca-5fc7-a115-83f3ad20b48d", "text": "\u4ece\u4e4c\u9e26\u8eab\u4e0a\u5b66\u4e60\u6b63\u4e49\u548c\u846c\u793c\u793c\u4eea\uff1a\u9e1f\u7c7b\u4e16\u754c\u7684\u5b9d\u8d35\u6559\u8bad"} +{"id": "1006366", "video_name": "7496b5f3-4507-5da1-a884-47e29c265dcc", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u63a5\u5230\u7535\u8bdd\uff0c\u9732\u51fa\u9707\u60ca\u548c\u60b2\u4f24\u7684\u8868\u60c5\u3002"} +{"id": "3003369", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "\u4ece\u5c0f\u7537\u5b69\u548c\u5c0f\u5973\u5b69\u7684\u80cc\u5f71\u6765\u770b\uff0c\u4ed6\u4eec\u624b\u7275\u624b\u5730\u7f13\u7f13\u5411\u524d\u8d70\uff0c\u5f71\u5b50\u662f\u4e00\u7247\u8349\u5730\uff0c\u8fdc\u5904\u6709\u5c71\u3002"} +{"id": "2006409", "video_name": "231cafce-2a14-5331-b4c4-af6ed895be37", "text": "Translation: \u6751\u5e84\u91cc\u7684\u96ea\u5728\u6ee1\u6708\u7684\u591c\u665a\u666f\u8272\u4e2d\u3002"} +{"id": "2006579", "video_name": "4eda8ef5-7380-51d2-96b9-37312bb4eaf9", "text": "\u5979\u9047\u89c1\u4e86\u4e9a\u7279\u5170\u8482\u65af\u7684\u5b88\u62a4\u8005\uff0c\u4ed6\u4eec\u662f\u5e84\u4e25\u7684\u6d77\u6d0b\u751f\u7269\uff0c\u773c\u4e2d\u954c\u523b\u7740\u53e4\u8001\u7684"} +{"id": "6004290", "video_name": "b887a95c-a18a-5acd-b911-02692b8054dc", "text": "\u673a\u5668\u5154\u5b50\u7684\u796d\u7940\u4eea\u5f0f"} +{"id": "3003098", "video_name": "0892de0f-94e2-55e5-8b04-f714face3c6d", "text": "\u72ec\u81ea\u5728\u73b0\u4ee3\u72b9\u592a\u6559\u5802\u4e2d\u7977\u544a\u7684\u72b9\u592a\u7537\u5b50"} +{"id": "3005036", "video_name": "6567991d-c358-5190-b01b-1b43515981cc", "text": "\u5728\u7b2c\u4e09\u6b21\u4e16\u754c\u5927\u6218\u7206\u53d1\u7684\u6708\u7403\u4e0a\u6709\u4e00\u4e2a\u6027\u611f\u7684\u5973\u4eba\u3002"} +{"id": "7002885", "video_name": "79ecafab-43c5-5944-bfcc-99dfca3787a7", "text": "\u65e9\u4e0a\u7684\u9a6c\u6765\u897f\u4e9a\u4f4f\u5b85\u533a"} +{"id": "8002745", "video_name": "58963a7f-69db-5588-9cab-d4e21f7a13c5", "text": "\u5954\u9a70\u7684\u767d\u7ffc\u9a6c\uff0c\u5728\u4e91\u96fe\u4e2d\u7ff1\u7fd4\uff0c\u7eda\u4e3d\u7279\u6548\uff0c\u9633\u5149\u7167\u8000\u4e0b\uff0c\u7fc5\u8180\u717d"} +{"id": "4003812", "video_name": "df762905-fb7b-5d94-8886-8e5bfdf63984", "text": "\u5b8b\u671d\uff0c\u4e2d\u56fd\uff0c\u4e00\u4e2a\u5e9e\u5927\u7684\u519b\u8425\uff0c\u706b\u5149\u51b2\u5929\uff0c\u58eb\u5175\u4eec\u6b63\u51c6\u5907\u6218\u6597\u3002"} +{"id": "6004885", "video_name": "19a87346-563a-5bf9-8cbe-4496f1502ee5", "text": "\u4e00\u4e2a\u4eba\u62e7\u7089\u5b50\u7684\u65cb\u94ae\u3002"} +{"id": "6003816", "video_name": "cc94dcc8-3170-53d7-9b32-46ff33b50846", "text": "\u4e00\u53ea\u5c0f\u72d0\u72f8\u5728\u6cb3\u8fb9\u7761\u89c9\u3002\u540e\u6765\uff0c\u4e00\u53ea\u8774\u8776\u98de\u5230\u5b83\u8eab\u4e0a\uff0c\u843d\u5728\u5b83\u7684\u9f3b\u5b50\u4e0a\uff0c"} +{"id": "6003241", "video_name": "07868bc5-e81d-584c-a4ac-65b18e31e896", "text": "\u5f53\u6bcd\u4eb2\u548c\u513f\u5b50\u6b63\u5728\u804a\u5929\u65f6\uff0c\u51fa\u53bb\u7684\u7334\u5b50\u722c\u8fc7\u5899\u8df3\u4e86\u8fdb\u6765\u3002"} +{"id": "6004654", "video_name": "1136d35c-48f5-5ad2-9563-a180f3153792", "text": "\u8fd9\u4e2a\u5973\u5b69\u5728\u4e00\u9996\u7f8e\u5999\u7684\u6b4c\u66f2\u4e2d\u5f00\u59cb\u8df3\u821e\uff0c\u5934\u53d1\u7f13\u7f13\u98d8\u52a8\uff0c\u5b8c\u7f8e\u7684\u8138\u5e9e\u3001\u5b8c\u7f8e\u7684\u624b\u548c\u5b8c\u7f8e"} +{"id": "1004943", "video_name": "5b67d3a3-1cc0-5bea-9d66-68bf18371f04", "text": "\u9053\u6069\u00b7\u5f3a\u68ee\u662f\u7626\u7684\u3002"} +{"id": "0005353", "video_name": "1942893b-2f5f-56aa-a531-47579bd97747", "text": "\u89c6\u9891\u53f3\u4e0b\u89d2\u4e00\u4e2a\u7537\u4eba\u72ec\u81ea\u5728\u96e8\u4e2d\u884c\u8d70\uff0c\u666f\u8272\u5fe7\u4f24\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "4003801", "video_name": "0a7e65b8-d66a-59be-a155-6b8357fb7ac5", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u4ece\u5934\u5230\u5c3e\u5c55\u793a\u7b2c\u4e09\u5e1d\u56fd\u9886\u8896\u5207\u8179\u81ea\u6740\u7684\u8fc7\u7a0b\u3002"} +{"id": "1004000", "video_name": "4a11ed06-329b-5b42-bb67-028474a1a87f", "text": "\u6307\u7532\u4e0a\u7684 QR \u7801"} +{"id": "2004366", "video_name": "325241a4-7522-5955-9721-9d4bdf6e6585", "text": "\u4e24\u4e2a\u5916\u661f\u4eba\u5728\u98de\u8239\u91cc\u5728\u4e00\u4e2a\u663e\u793a\u5668\u4e0a\u6253\u5b57\u3002"} +{"id": "1003264", "video_name": "3c1484d8-a8f9-5fcb-b6fa-9616756686f7", "text": "\u6d41\u661f\u95ea\u8000\uff0c\u79cb\u6797\u9759\u9ed8\uff0c\u6e56\u6cca\u3001\u5c71\u5cf0\u3002"} +{"id": "7002887", "video_name": "2523614c-04b6-52d7-9cb7-fd96c943fcbf", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u548c\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u8857\u4e0a\u3002"} +{"id": "4003356", "video_name": "7cafad0f-6255-5822-a123-73811d2694c5", "text": "\u4e00\u5e45\u6f2b\u753b\u5f0f\u7684\u8096\u50cf\u753b\uff0c\u753b\u7740\u4e00\u4e2a\u8d64\u88f8\u4e0a\u8eab\u7684\u7537\u4eba\uff0c\u50cf\u8d85\u4eba\u4e00\u6837\uff0c\u53cc\u81c2\u6298\u53e0\uff0c\u8c61\u5f81\u7740\u529b\u91cf\u548c"} +{"id": "8001965", "video_name": "e735c995-8c87-5ad1-a298-b92405b6f711", "text": "\u91ce\u751f\u5361\u901a\u52a8\u7269\u4ee5\u5feb\u4e50\u9762\u5b54\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6002120", "video_name": "a68d7a88-f0a6-5e9b-9cdf-b6286985fb04", "text": "\u978b\u5b50\u811a\u5370\uff0c\u5728\u519c\u573a\uff0c1922\u5e74\u3002"} +{"id": "0005279", "video_name": "17bd3885-5d8e-52ed-bd72-cfd0714f53a8", "text": "\u5c06\u6570\u5b57\u4fdd\u5b58\u5728\u50cf\u56fe\u793a\u89e3\u91ca\u4e2d\u4e00\u6837\u7684\u76d2\u5b50\u4e2d\u3002"} +{"id": "1005715", "video_name": "691b4fab-dfb9-58ca-82f1-6901f72c23ea", "text": "\u4e00\u4e2a\u7a7f\u7740\u6a59\u8272\u670d\u88c5\u5728\u68ee\u6797\u91cc\u6253\u5750\u7684\u52a8\u6f2b\u7537\u5b69\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u3002"} +{"id": "3005723", "video_name": "9e84ec47-f608-51b4-99d7-501c749751a6", "text": "\u4e0e\u67d0\u4eba\u4ea4\u8c08\u5e76\u89c2\u770b\u6db2\u6676\u5c4f\u5e55\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002702", "video_name": "d8bda6b3-d000-59b5-abbc-e78289a64fc4", "text": "\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u7684\u795e\u5947\u52a8\u7269\u68a6\u5883\u3002"} +{"id": "3006347", "video_name": "66ed4784-7212-5356-a030-25c318415cc3", "text": "\u5b99\u65af\u624b\u6301\u96f7\u7535\uff0c\u5f62\u8c61\u4e30\u5bcc\u3002"} +{"id": "3005479", "video_name": "00f03d39-b640-59da-bf6f-241243bbf58f", "text": "\u8001\u5f0f\u7ed8\u753b\u590d\u53e4\u57ce\u5e02 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3006844", "video_name": "c3d92009-ce4b-56a3-ba97-7718745519ba", "text": "\u7f8e\u4e3d\u7684\u9a6c\u7eb3\u5229\uff0c\u8d85\u5199\u5b9e\uff0c4K\u5206\u8fa8\u7387\uff0c\u9ad8\u8f9b\u70f7\u6e32\u67d3\uff0c\u9ec4\u91d1\u65f6\u6bb5\u7167\u660e\uff0c\u667a\u80fd\u6e32\u67d3\uff0c\u65e0"} +{"id": "0006786", "video_name": "33239fb9-f958-5045-97b7-a7cfc65eff61", "text": "\u79cb\u5929\u8e22\u8db3\u7403"} +{"id": "3004378", "video_name": "2c1c9a4a-0d6e-5ec8-91c5-7173ef12af8a", "text": "\u9ed1\u8272\u72d7\u72d7\u5728\u8349\u5730\u4e0a\u5feb\u4e50\u5730\u5954\u8dd1\uff0c\u4e00\u8fb9\u5954\u8dd1\u4e00\u8fb9\u5411\u7740\u6444\u50cf\u673a\u770b\u3002"} +{"id": "3006412", "video_name": "39418504-7b42-5c36-87ea-1e7eff51602c", "text": "\u524d\u666f\u4e2d\u6709\u70ed\u5e26\u9e1f\u7684\u56fe\u50cf\uff0c\u80cc\u666f\u5219\u662f\u5728\u4f5b\u7f57\u91cc\u8fbe\u5dde\u8fc8\u963f\u5bc6\u7684\u6cf3\u6c60\u6d3e\u5bf9\u3002"} +{"id": "0006405", "video_name": "2be0bdb5-0d27-5479-8ffd-6c49560745d0", "text": "\u9b41\u5317\u514b\u5e02\u72ed\u7a84\u7684\u8857\u9053\u4e0a\u6709\u4e00\u8f86\u5de8\u5927\u7684\u767d\u8272SUV\u3002"} +{"id": "8003569", "video_name": "a60f0caf-830c-5524-98e8-4f9a16f1e841", "text": "\u4e00\u68f5\u5de8\u5927\u7684\u6811\uff0c\u80cc\u540e\u662f\u661f\u7a7a\u3002"} +{"id": "2005437", "video_name": "5a4dd05e-309a-5a10-b0fc-43194014824c", "text": "\u9053\u5229\u8fdb\uff0c\u653e\u5927\uff0c\u591c\u665a\u4e00\u5bb6\u5c0f\u800c\u53e4\u8001\u7684\u5496\u5561\u5e97\u524d\u9762\uff0c\u6709\u51e0\u4e2a\u987e\u5ba2\uff0c\u50cf\u662f\u65af\u4e07\u514b\u8fc8\u8036\u7684\u7535\u5f71"} +{"id": "1003018", "video_name": "377bd0eb-cb4b-5261-81fe-4b2c6dbac5b6", "text": "\u4e00\u672c\u4e2d\u6587\u4e66\u5728\u591c\u665a\u6253\u5f00\uff0c\u5b57\u4f53\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "1006952", "video_name": "7f30f292-1d4b-5577-a628-4ff998b9e4e3", "text": "\u4f7f\u7528\u865a\u5e7b\u5f15\u64ce\uff0c\u8e0f\u4e0a\u4e00\u6bb5\u7a7f\u8d8a\u795e\u79d8\u65f6\u95f4\u9886\u57df\u7684\u89c6\u89c9\u4e4b\u65c5\u3002\u4ece\u4e00\u4e2a\u7199\u7199\u6518\u6518\u7684"} +{"id": "0005311", "video_name": "18543071-9c2f-5657-8242-0895474f89a4", "text": "\u62e5\u6709\u516d\u5757\u8179\u808c\u548c\u6a21\u7279\u8eab\u6750\u7684\u7537\u4eba\u3002"} +{"id": "7003373", "video_name": "24cc568f-02fa-51cf-b33f-d65926ccdd45", "text": "\u9634\u9669\u7684\u673a\u5668\u4eba\u77a5\u4e86\u4e00\u773c\u89c2\u4f17\u3002"} +{"id": "7002119", "video_name": "41b6aed6-fad0-589d-8588-ba99a63afe26", "text": "\u4e00\u573a\u5b8c\u7f8e\u7684\u592a\u5e73\u6d0b\u96f7\u66b4\u4ee5\u7535\u5f71\u6444\u5f71\u98ce\u683c\u5448\u73b0\uff0c\u7f8e\u4e3d\u7684\u6784\u56fe\u3001\u52a8\u6001\u7684\u8fd0\u52a8\u3001\u666f\u6df1\u3001\u805a\u7126\u7684\u4e3b\u4f53"} +{"id": "3004631", "video_name": "9d52aa54-5b2d-5ae8-8ebd-5666834d5c0b", "text": "\u6211\u6765\u5230\u4e86\u4e00\u4e2a\u5b81\u9759\u7684\u6e56\u8fb9\u3002\u6e56\u6c34\u50cf\u4e00\u9762\u955c\u5b50\uff0c\u6620\u7167\u7740\u84dd\u5929\u548c\u6811\u5f71\u3002\u6e56\u8fb9\u7684\u82b1\u8349"} +{"id": "0005889", "video_name": "22d987eb-36d9-54f8-b3b5-36058b0ba873", "text": "\u8001\u4eba\u6b63\u5728\u7167\u987e\u82b1\u56ed\u3002"} +{"id": "0005313", "video_name": "18638bd2-d6f5-56cb-935b-0ce01d92f68b", "text": "\u5e86\u795d\u6210\u5c31\uff1a\u8ba4\u53ef\u6bcf\u4e00\u6b21\u5c0f\u6210\u529f\uff1b\u5b83\u53ef\u4ee5\u8ba9\u4f60\u4fdd\u6301\u52a8\u529b\u3002"} +{"id": "0006124", "video_name": "27034b3c-d595-5edf-b532-f0e201b50b32", "text": "\u5723\u8bde\u8001\u4eba\u5728\u6d77\u6ee9\u4e0a\u4f11\u606f\uff0c\u68d5\u6988\u6811\u50cf\u5723\u8bde\u6811\u4e00\u6837\u3002"} +{"id": "2004176", "video_name": "bf177e8d-066d-5e6e-8d21-024cc10fb94c", "text": "Ramesh\u5728\u5370\u5ea6\u6559\u5bfc\u5e08Parvasu\u7684\u6307\u5bfc\u4e0b\uff0c\u5728\u5bfa\u5e99\u91cc\u51a5\u60f3\u4e86\u51e0\u5929\u3002\u5728\u8fd9\u671f\u95f4\uff0c\u4ed6\u770b\u5230\u4e86\u8033\u8bed\u6811\u60ca"} +{"id": "6003372", "video_name": "e542bf31-59ad-5afb-b2d9-b100374588db", "text": "\u4e00\u53ea\u9ab7\u9ac5\u5728\u8c6a\u534e\u623f\u95f4\u91cc\u8fdb\u98df\u3002"} +{"id": "1004885", "video_name": "5a4e3569-e4b5-5743-84ad-46529eb1662e", "text": "\u4e00\u9996140bpm\u7684\u8df3\u821e\u7535\u5b50\u670b\u514b\u5b8c\u7f8e\u5730\u5c55\u793a\u4e86\u4e00\u4e2a\u91ce\u6027\u800c\u8ff7\u4eba\u7684\u7f8e\u4e3d\u9762\u5bb9\uff0c\u5b8c\u7f8e\u7684\u7279\u5f81\u88ab\u9713\u8679"} +{"id": "8001540", "video_name": "23ec65e3-a4ec-5d79-86d0-832c6fae3f57", "text": "\u5979\u73b0\u5728\u95ea\u8000\u7740\u5149\u8292\uff0c\u5e26\u7740\u8000\u773c\u7684\u5149\u8f89\u56de\u5230\u4e86\u732b\u5934\u9e70\u8eab\u8fb9\uff0c\u4e0e\u56f4\u7ed5\u7740"} +{"id": "3006062", "video_name": "def3cea6-f11c-5fbb-942d-304398767a4c", "text": "\u7528\u4e00\u6761\u5927\u6cb3\u548c\u5de8\u5927\u7684\u6d77\u9f9f\u521b\u9020\u4e00\u4e2a\u68ee\u6797\u3002"} +{"id": "6004661", "video_name": "0dff62b1-5e04-59a2-a8d5-e26c73ebc669", "text": "1960\u5e74\u4ee3\uff0c\u5370\u5ea6\u652f\u90a3\u4e00\u5bb6\u9ad8\u96c5\u9910\u5385\u5185\uff0c\u6781\u8fd1\u8ddd\u79bb\u7684\u9ad8\u89d2\u5ea6\u76f8\u673a\uff0c\u62cd\u6444\u4e86\u4e24\u676f\u9e21\u5c3e"} +{"id": "8003330", "video_name": "b07e43bb-aeef-5b32-9102-ebacc9237bf1", "text": "\u5de8\u5927\u9e21\u5934\u4ece\u5de8\u5927\u865a\u7a7a\u5b54\u6d1e\u4e2d\u51fa\u73b0\uff0c\u9634\u68ee\u7684\u9ed1\u767d1970\u5e74\u4ee3\u827a\u672f\u7535\u5f71\uff0c\u795e\u79d8\u7684\u7ea2\u773c"} +{"id": "7003201", "video_name": "111698b3-ed58-5f81-abf4-a36ff19c3acd", "text": "\u63d0\u793a\u4e00\u4e2a\u7ad9\u5728\u5c71\u9876\u4e0a\u7684\u52c7\u58eb\u516c\u4e3b\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u9f99\uff0c\u9ed1\u6697\u5947\u5e7b\u4eba\u7269\u8bbe\u8ba1\uff0c\u6f2b\u753b\u827a\u672f\uff0c\u70bd"} +{"id": "5001626", "video_name": "9e6e4850-2c12-53c5-8b57-c4e4cc2452b3", "text": "1750\u540d\u5e74\u8f7b\u5973\u4ec6\u56f4\u7ed5\u5979\u7684\u8096\u50cf\u753b\u8fdb\u884c4K\u7535\u5f71\u6444\u5f71\u3002"} +{"id": "5001208", "video_name": "13f38086-ee3d-52bf-8b54-74aa2bb3b315", "text": "\u6c99\u6ee9\u4e0a\u5954\u8dd1\u7684\u963f\u51e1\u8fbe\u5973\u5b69"} +{"id": "0004974", "video_name": "128f5040-3e8b-5124-818d-b4b2115bed45", "text": "\u9ed1\u8272\u8001\u7237\u8f66\u5728\u4e00\u6761\u76f4\u8def\u4e0a\u5feb\u901f\u884c\u9a76\uff0c\u4ece\u57ce\u5e02\u4e0a\u7a7a\u62cd\u6444\u7684\u89c6\u89d2\u770b\uff0c\u80fd\u770b\u5230\u57ce\u5e02\u7684\u706f\u5149\u7480\u74a8\u3002"} +{"id": "6004349", "video_name": "8f711020-3db0-547e-8e2b-7ab605058076", "text": "\u5c55\u793a\u5728\u6076\u52a3\u5730\u5f62\u4e2d\u5b89\u8fbe\u5362\u897f\u4e9a\u963f\u62c9\u4f2f\u7a46\u65af\u6797\u519b\u961f\u83b7\u80dc\u7684\u77ac\u95f4\u3002"} +{"id": "4004800", "video_name": "753665d0-d2c8-5bcc-a625-2efc2e17e5fa", "text": "\u7537\u4eba\u773c\u4e2d\u71c3\u70e7\u7740\u6124\u6012\u7684\u706b\u7130\uff0c\u8868\u73b0\u51fa\u6124\u6012\u3002\n\u51b3\u5fc3\u5728\u4e00\u5207\u4e8b\u60c5\u4e0a\u83b7\u80dc\u3002"} +{"id": "2006591", "video_name": "608625d2-6bae-5d49-954d-24e89fbc9b02", "text": "\u4f46\u5979\u559c\u6b22\u7a7f\u7740\u8272\u5f69\u7f24\u7eb7\u7684\u88d9\u5b50\u50cf\u91ce\u9e7f\u822c\u56db\u5904\u6e38\u8361\u3002"} +{"id": "7003339", "video_name": "4bd7265a-3af1-5485-8b58-5e17b4e55ff0", "text": "\u4e00\u5e45\u4ee3\u8868\u56e2\u7ed3\u672c\u8d28\u7684\u5f62\u8c61\uff0c\u5c55\u73b0\u5bb6\u5ead\u5171\u9910\u6216\u53c2\u4e0e\u6e29\u99a8\u65f6\u523b\uff0c\u5f3a\u8c03 Diwali \u7684\u60c5\u611f\u6838\u5fc3\u3002"} +{"id": "7002146", "video_name": "1f9ad14f-e5e9-59a1-82d7-ac84b7791677", "text": "\"\u9b54\u6cd5\u99f1\u99dd\u548c\u963f\u62c9\u4f2f\u570b\u738b\u5728\u6c99\u6f20\u4e0a\"\uff0c4K\u3001HD\u30019:16\u7684\u5716\u50cf\u5927\u5c0f\u3002"} +{"id": "6003586", "video_name": "df86ff76-1678-56d4-9b16-a462e820721e", "text": "\u7206\u70b8\u7684\u7a7a\u95f4\u3001\u661f\u7403\u548c\u661f\u7cfb\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u7535\u5f71\uff0cIMAX\uff0c\u7535\u5f71\u7684\u9897\u7c92\u5ea6\u3002 \n\nSource sentence: The world is a book and those who"} +{"id": "1005113", "video_name": "5e46dc8c-acc4-5882-ac54-1b69589bd03d", "text": "\u53e4\u4ee3\u7684\u4e2d\u56fd\u5bab\u6bbf\u91cc\uff0c\u53ea\u6709\u70df\u96fe\u3001\u4f17\u591a\u9c9c\u82b1\u3001\u706f\u5149\uff0c\u5730\u9762\u94fa\u7740\u4f1a\u53d1\u5149\u7684\u767d\u8272\u77f3\u5934"} +{"id": "3003713", "video_name": "a5babf01-3705-5a08-8334-845d88be30dd", "text": "\u591c\u5e97\u5b89\u4fdd\u5e94\u8fdb\u884c\u5168\u9762\u7684\u5165\u573a\u68c0\u67e5\uff0c\u4ee5\u9632\u6b62\u6b66\u5668\u6216\u975e\u6cd5\u7269\u54c1\u8fdb\u5165\u573a\u6240\u3002"} +{"id": "2004649", "video_name": "8ea3add3-ff0e-5d4b-9124-f85d259bc9ea", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u64e6\u9632\u6652\u971c\u3002"} +{"id": "4003103", "video_name": "42ee1098-e1ea-5ded-8443-e22ec386839b", "text": "\u5448\u73b0\u5ba0\u7269\u4e0e\u4eba\u4e4b\u95f4\u7684\u6e29\u99a8\u65f6\u523b\uff0c\u5f3a\u5316\u5b83\u4eec\u4e4b\u95f4\u7684\u7d27\u5bc6\u8054\u7cfb\u3002"} +{"id": "8001988", "video_name": "1ae259d1-aa9c-515f-98db-ae61354eb85d", "text": "Stranger Things\u7535\u89c6\u5267\u4e2d\u7684Demogorgon\u6b63\u5728\u8ffd\u9010\u4eba\u7c7b\u3002\n\nSource sentence: The Great Wall of China is one of the world's most famous landmarks. \n\n\u4e2d\u56fd\u7684\u957f\u57ce\u662f\u4e16\u754c\u4e0a\u6700"} +{"id": "2006204", "video_name": "81098c53-5ef0-5764-b7d4-e5802ecee2d8", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u89e3\u91ca\u632f\u52a8\u952f\u7247\u7684\u7279\u70b9\u3002"} +{"id": "8001383", "video_name": "29f4227b-0d8d-54b8-9f93-951bd4677119", "text": "\u9c8d\u52c3\u00b7\u9a6c\u5229\u4ee5\u4ed6\u7684\u96f7\u65af\u7279\u5934\u53d1\uff0c\u4ed6\u7684\u97f3\u4e50\u548c\u4fe1\u606f\u4e3a\u9057\u4ea7\uff0c\u6c38\u8fdc\u6d3b\u5728\u4eba\u4eec\u5fc3\u4e2d\u3002\u4ed6\u88ab\u846c\u5728\u4e00"} +{"id": "6002632", "video_name": "6afc6c34-99b4-5998-af5b-5224b089d7a6", "text": "\u6885\u54c8\u827e\u5c14\u83ab\u548c\u6885\u54c8\u66f2\u5947\u602a\u517d\u8df3\u821e\u3002"} +{"id": "7004523", "video_name": "c29c7504-2613-5116-a447-cbaa3365c81a", "text": "\u4e00\u4e2a\u7ea2\u773c\u775b\u3001\u7ea2\u5934\u53d1\uff0c\u624b\u91cc\u62ff\u7740\u706b\u5e76\u5fae\u7b11\u7684\u7537\u4eba\u3002"} +{"id": "0006587", "video_name": "2f13647a-7993-5518-aad1-8300df641d08", "text": "\u7406\u89e3\uff0c\u5c31\u50cf\u4e24\u4e2a\u62fc\u56fe\u788e\u7247\u62fc\u63a5\u5728\u4e00\u8d77\u3002"} +{"id": "8003767", "video_name": "93651976-32cc-5efd-8e03-8014cb63794c", "text": "\u52a8\u753b\u903c\u771f\u7684\u52a8\u4f5c\uff0c\u4eba\u8d70\u706b\u7130\u8fd0\u52a8\u3002"} +{"id": "7003474", "video_name": "4d42815f-1a52-54d9-812d-ac4d62f7dd20", "text": "\u96f7\u795e\u6258\u5c14\uff0c\u732b\u5934\u4eba\u8eab\u3002"} +{"id": "8003714", "video_name": "80e08194-ea90-5c0c-872e-dc54fe2fc24f", "text": "\u6076\u9b54\u7684\u90aa\u6076\u884c\u4e3a\uff0c\u5730\u72f1\uff0c\u8df3\u821e\uff0c\u6d3e\u5bf9\uff0c1923\u5e74"} +{"id": "8003651", "video_name": "ff8cd187-b2cd-5e6f-a185-60c25a7358e8", "text": "\u5370\u5ea6\u6751\u5e84\u5929\u7a7a\u4e2d\u843d\u4e0b\u9732\u73e0\u3002"} +{"id": "5001754", "video_name": "f87c8fba-31d5-5170-b0e0-c97c4cf9faa4", "text": "\u7537\u4eba\u548c\u5973\u5b69\u6b63\u5728\u6162\u6162\u5730\u8f6c\u5708\u3002"} +{"id": "1003907", "video_name": "4816e64d-31c4-597c-a286-3b05af98d6f3", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u56fe\u6848\u7684\u94dc\u5b50\u5f39\u5728\u767d\u8272\u80cc\u666f\u4e0a\u65cb\u8f6c\u3002"} +{"id": "7003956", "video_name": "4cbfa768-ad0d-52c7-99b8-8a2eef9e8d82", "text": "\u6ce2\u65af\u732b\u5728\u90c1\u91d1\u9999\u516c\u56ed\u65c1\u5c06\u4e00\u53ea\u62c9\u5e03\u62c9\u591a\u72ac\u6253\u5165\u4e00\u6ee9\u6ce5\u6cde\u3002"} +{"id": "5001643", "video_name": "b6fde043-a5f3-537d-be74-6639f859af3c", "text": "\u53e4\u5e0c\u814a\u7537\u8d35\u65cf\uff0c\u91d1\u53d1\u4e30\u76c8\uff0c\u7a7f\u7740\u51c9\u978b\u8d76\u7740\u7ef5\u7f8a\uff0c\u82f1\u4fca\u6d3b\u6cfc\u7684\u5916\u8868\uff0c\u53e4\u5e0c"} +{"id": "2007367", "video_name": "b43193bd-60d9-5634-ae9f-c66a3d549eff", "text": "\u6700\u5c0f\u7684\u7ec6\u8282\u3002\u7b80\u5355\u7684\u5f62\u72b6\u3002\u5bb6\u4eba\u5728\u516c\u56ed\u91cc\u653e\u677e\u3002"} +{"id": "1004413", "video_name": "518a7b8e-b624-5182-8b37-fd12e47420ab", "text": "\u4e00\u573a\u597d\u83b1\u575e\u4e3b\u9898\u7684\u7535\u5f71\u62cd\u6444\u573a\u65b0\u5e74\u6d3e\u5bf9\u3002"} +{"id": "0003562", "video_name": "3f97aca2-d913-566a-b389-17d3cde0c55d", "text": "\u6982\u5ff5\u827a\u672f\u672b\u65e5\u57ce\u5e02\u666f\u89c2\uff0c\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\u5728\u9ed1\u6697\u4e2d\u6295\u4e0b\u957f\u957f\u7684\u9634\u5f71\uff0c\u5efa\u7b51\u7269\u4e0a\u6302\u7740"} +{"id": "4002024", "video_name": "d3554ef1-8f4b-5a28-b57f-07dd7f0414c9", "text": "\u4e00\u8258\u6f5c\u8247\u6f02\u6d6e\u5728\u6c89\u6ca1\u7684\u6cf0\u5766\u5c3c\u514b\u53f7\u65c1\u8fb9\u3002 \n\nSource sentence: The cat chased the mouse around the house. \n\n\u732b\u5728"} +{"id": "3006258", "video_name": "1c6f65e1-90f3-5d3c-8abd-fd62d33048e9", "text": "\u5916\u661f\u5973\u5b69\u7ad9\u5728\u5b87\u5b99\u5929\u7a7a\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "1003522", "video_name": "40fea0f9-cdd7-561a-8679-9e73c593c77d", "text": "\u4ea4\u901a\u6d41\u91cf\u5728\u5927\u96ea\u8986\u76d6\u7684\u9053\u8def\u4e0a\u3002"} +{"id": "1006744", "video_name": "7b75096c-2703-5d3b-b531-e0cb9a9904c5", "text": "\u773c\u6cea\u51b2\u7834\u4e86\u54e5\u7279\u5986\u5bb9\u3002"} +{"id": "6004187", "video_name": "f784e7a5-993b-5850-a0cc-867f31ea646a", "text": "\u51b0\u96d5\u4e2d\u7684\u8bf4\u5531\u6b4c\u624bIce T"} +{"id": "0003129", "video_name": "379b6fc1-23e9-5747-a8e5-768afe2aac9e", "text": "\u6770\u4f5c\uff0c\u4ee5\u4e00\u4e2a\u6234\u82b1\u7684\u5973\u5b69\u4e3a\u4e2d\u5fc3\u7684\u7ed8\u753b\uff0c\u4e00\u4e2a\u52a8\u6f2b\u7ed8\u753b\uff0c\u5728pixiv\u4e0a\u5c55\u793a\uff0c\u54e5\u7279\u827a\u672f\uff0c\u9713\u8679\u9ed1"} +{"id": "6003462", "video_name": "b76e2420-d44f-506f-87e0-23162908cdf6", "text": "\u672a\u6765\u9644\u8fd1\u7684\u563b\u54c8\u821e\u8e48\uff0c\u4e09\u4e2a\u5973\u5b69\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "5001267", "video_name": "ff9ede23-677c-5e46-99aa-9b0ddfe80a21", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\uff0c\u8ba9\u5b69\u5b50\u548c\u5987\u5973\u56e0\u4e3a\u6218\u4e89\u548c\u65e5\u5e38\u751f\u6d3b\u7684\u5f71\u54cd\u800c\u54ed\u6ce3\u3002"} +{"id": "7003102", "video_name": "6c441b6c-f562-5462-97ce-ca821d21678c", "text": "\u661f\u7403\u5927\u6218\u65e7\u5171\u548c\u56fd\u65f6\u671f\u7684\u5149\u5251\u5251\u672f\u5728\u53e4\u8001\u7684\u7edd\u5730\u795e\u5e99\u4e2d\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u5411\u5de6\u5e73\u79fb\uff0c\u4f7f\u752850"} +{"id": "8003216", "video_name": "c9d6eeac-b0c9-50a7-92fb-59fe0984638f", "text": "\u4e00\u53ea\u5927\u72d7\u5728\u623f\u5b50\u91cc\u5954\u8dd1\u3002"} +{"id": "6004293", "video_name": "4bae3274-3d18-560e-8b00-df40b12bddbc", "text": "\u57284K\u7684\u753b\u8d28\u4e0b\uff0c\u91d1\u53d1\u5973\u6a21\u7279\u7684\u8ff7\u4eba\u7684\u7f8e\u4e3d\u751f\u52a8\u7684\u7fe1\u7fe0\u548c\u6d45\u68d5\u8272\u7684\u773c\u775b\u88ab\u653e\u5927\uff0c\u5e76\u4f18\u96c5\u5730"} +{"id": "1005363", "video_name": "629625db-a6f6-595f-87cf-b431730033e9", "text": "\u767d\u4e91\u5728\u79fb\u52a8\u5e76\u5f62\u6210\u4e00\u4e2a\u7231\u5fc3\u7684\u5f62\u72b6\u3002\u7559\u8a00\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004502", "video_name": "45958c65-098c-5609-8410-830d17ff3e54", "text": "\u4f1a\u8bae\u671f\u95f4\u4e00\u4f4d\u9ad8\u7ba1\u70b9\u5934\u8868\u793a\u540c\u610f\u3002"} +{"id": "8003725", "video_name": "458946e4-e2f3-5c89-97e2-ec976068e2f1", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u68ee\u6797\uff0c\u6811\u4e0a\u6302\u7740\u4eba\uff0c\u6076\u9b54\u822c\u7684\u9634\u5f71\u5728\u5176\u4e2d\u3002"} +{"id": "6002073", "video_name": "c7eabe0e-e7b5-529b-b881-7357a0d9f5c4", "text": "\u5173\u4e8e\u8001\u9e70\u98de\u7fd4\uff0c\u4e54\u00b7\u62dc\u767b\u624b\u6301A.R.15\u6b65\u67aa\u3002"} +{"id": "1003239", "video_name": "3bb10652-c773-57eb-8802-6af2f68ea918", "text": "\u4e00\u4e2a\u4e2d\u56fd\u6027\u611f\u5973\u5b69\u5728\u8df3\u821e\u548c\u5fae\u7b11\u3002"} +{"id": "6004075", "video_name": "9e40575f-f488-5b2c-ae75-f566015e58e2", "text": "\u9713\u8679\u706f\u548c\u706f\u6ce1\u706f \u6587\u5b57\u4fe1\u606f\uff1aVIDA\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "6002898", "video_name": "b7a8db70-a5d0-5a8d-9525-9d9062f3f5e6", "text": "\u98df\u7269\u5728\u6d88\u5316\u7cfb\u7edf\u4e2d\u7684\u8fd0\u8f93\u3002"} +{"id": "8003707", "video_name": "b01fb5c0-9e53-5671-89b8-5cb0da04b3cd", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u9ec4\u91d1\u65f6\u523b\uff0c4K\u3002"} +{"id": "1004080", "video_name": "4b989c69-5b13-5e00-9338-4c7f65689480", "text": "\u5236\u4f5c\u4e00\u6bb520\u79d2\u7684Itachi\u5bf9Madara Uchiha\u7684\u89c6\u9891\uff0c\u5206\u8fa8\u7387\u4e3a4K\u3002"} +{"id": "6003126", "video_name": "91f368da-2d26-59e5-8a97-d41481ee6ee8", "text": "\u6df7\u5408\u725b\u5b69\u5b50\u5b9e\u4f53\uff0c\u7535\u5f71\u611f\uff0c\u7c7b\u4f3c\u300a\u5e03\u83b1\u5c14\u5973\u5deb\u8ba1\u5212\u300b\u7684\u98ce\u683c\uff0c\u65e7\u5f71\u7247\uff0c\u955c\u5934\u6162\u6162"} +{"id": "2007551", "video_name": "f8810a6d-3bc5-560d-8021-a708e01378a4", "text": "\u83ab\u65af\u79d1\u5927\u5b66\uff0c\u8d85\u8be6\u7ec6\u3001\u8d85\u9ad8\u6e05\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u6770\u4f5c\uff0c\u8d859k\u9ad8\u6e05\u56fe\u50cf\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003380", "video_name": "3c91dd51-6c49-5233-9899-67568eceb5c9", "text": "\u5a01\u58eb\u5fcc\uff0c\u6563\u843d\u5728\u73bb\u7483\u684c\u4e0a\u7684\u94b1\u548c\u6bd2\u54c1\u3002"} +{"id": "4004326", "video_name": "357426d9-fb7c-594e-99b0-a988ca6d2ca3", "text": "\u6000\u7279\u5821\u6c49\u5821\u5e97\u7684\u871c\u6c41\u70e4\u9e21\u6761\u4e09\u660e\u6cbb\u52a0\u4e0a\u767d\u5207\u8fbe\u5976\u916a\uff0c\u6dcb\u5728\u4f5b\u7f57\u91cc\u8fbe\u5dde"} +{"id": "2005881", "video_name": "38b5cb4a-ac6c-52cd-8734-54a93e30722e", "text": "\u7b2c\u56db\u4efb\u535a\u58eb\u5728\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\u9003\u907f\u4e00\u5806\u7ea2\u8272\u7684\u82b1\u3002"} +{"id": "6002572", "video_name": "fdf4441f-dccf-5cd1-8db8-cde1029ef1f1", "text": "\u4ece\u524d\uff0c\u5728\u683c\u5c14\u767b\u53d1\u751f\u4e86\u4e00\u4ef6\u4e8b\u3002"} +{"id": "0004333", "video_name": "074e5fb1-b07c-5b98-88d4-ea896ffdac06", "text": "\u4ea7\u54c1\u7f6e\u4e8e\u767d\u8272\u80cc\u666f\u4e0a\u7684\u653e\u5927\u955c\u9876\u90e8\u3002"} +{"id": "5001180", "video_name": "d91fe32f-dd53-55e8-9df7-8de9fd64ba53", "text": "\u5927\u578b\u653f\u5e9c\u5efa\u7b51\u88ab\u6bdb\u76ae\u8986\u76d6\uff0c\u6467\u6bc1\u4e86\u80cc\u666f\u57ce\u5e02\uff0c\u5448\u73b0\u51fa\u771f\u5b9e\u611f\u7684\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "3006422", "video_name": "80275546-2bcc-5786-a716-5c5dc32cbdee", "text": "\u6d89\u8c37\u5341\u5b57\u8def\u53e3\uff0c\u4eba\u4eec\u5306\u5306\u5fd9\u5fd9\u5730\u8d70\u7740\u3002"} +{"id": "5001639", "video_name": "752de335-e7ff-5b7a-9dba-220cb217450e", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u661f\u7403\u970d\u65af\u7279\u7684\u9152\u5427\u559d\u5564\u9152\u3002"} +{"id": "4003426", "video_name": "b869ad79-75c3-57b6-894f-e6b288744a0e", "text": "\u521b\u4f5c\u4e00\u4e2a10\u79d2\u949f\u957f\u7684\u4ea7\u54c1\u89c6\u9891\uff0c\u4ea7\u54c1\u662f\u53ef\u5b9a\u5236\u7684\u62ab\u8428\u76d2\u3002\u4ee5\u73b0\u5b9e\u98ce\u683c\u548c\u4e30\u5bcc\u7684\u52a8\u6001\u6548\u679c\u5448\u73b0\u3002"} +{"id": "4003806", "video_name": "92720038-cc41-5ca7-86c0-6fd505128492", "text": "\u6ca1\u6709\u4ec0\u4e48\u6bd4\u4e0a\u65b9\u7684\u5149\u660e\u66f4\u660e\u4eae\u7684\u4e1c\u897f\u4f1a\u50cf\u4e00\u6ef4\u6c34\u4e00\u6837\u843d\u5165\u9ed1\u6697\u4e2d\u3002"} +{"id": "2003770", "video_name": "5b50202e-38ab-5a58-b9b4-44a1d40673cc", "text": "\u661f\u9645\u8ff7\u822a\uff1a\u4e0b\u4e00\u4ee3\u4e2d\u7684\u7535\u5f71\u573a\u666f\uff0c\u7531\u5e03\u4f26\u7279\u00b7\u65af\u76ae\u7eb3\u626e\u6f14\u7684\u4e2d\u5c09\u6307\u6325\u5b98\u6570\u636e\uff0c\u4e00\u4e2a\u957f\u80d6\u7684"} +{"id": "6003533", "video_name": "c86c9959-ce21-5793-97bb-bbadfadc02e3", "text": "\u4e00\u5219\u4ee5\u7ea2\u73ab\u7470\u548c\u7ea2\u8272\u9999\u6c34\u74f6\u4e3a\u4e3b\u9898\u7684\u9999\u6c34\u5e7f\u544a"} +{"id": "7003517", "video_name": "ea4b2b46-e87e-5b2e-b40e-587320b74d2e", "text": "\u67e5\u7406\u00b7\u8292\u683c\u6b63\u5728\u6f14\u8bb2\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u5e76\u65cb\u8f6c\u3002"} +{"id": "0006001", "video_name": "24d73a94-b5ff-5999-938c-f5fc6e209d82", "text": "\u6c61\u6c34\u4ece\u4e00\u4e2a\u7aef\u6d41\u5165\u6e7f\u5730\uff0c\u4ece\u53e6\u4e00\u4e2a\u7aef\u6d41\u51fa\u5e72\u51c0\u3002"} +{"id": "7003047", "video_name": "51a6dc21-5a3d-5f6e-ac28-20f7deb2e365", "text": "\u8fd9\u4e2a iPhoto \u50cf\u8fd9\u6837\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0004782", "video_name": "0f1661b1-9f83-595b-8c63-5b391d554a1e", "text": "\u5b87\u822a\u5458\u7a7f\u7740\u5b87\u822a\u670d\u5728\u5916\u5c42\u7a7a\u95f4\u6f02\u6d6e\uff0c\u903c\u771f\u800c\u8d85\u73b0\u5b9e\u3002"} +{"id": "6002161", "video_name": "742f5874-d217-511c-a391-585f2c76c5e0", "text": "\u5df2\u7ecf\u521b\u4f5c\u51fa\u4e00\u5e45\u6c34\u5f69\u98ce\u683c\u7684\u592a\u7a7a\u98de\u8239\u7a7f\u8fc7\u66b4\u98ce\u96e8\u5929\u7a7a\u4e0b\u7684\u6d77\u6d0b\u7684\u753b\u4f5c\u3002"} +{"id": "5001416", "video_name": "9cfb86c7-a296-5f87-a665-c922278539d0", "text": "\u5728\u7ea6\u65e6\u6cb3\u62cd\u6444\u4e00\u4e2a\u771f\u5b9e\u7684\u8036\u7a23\u57fa\u7763\u89c6\u9891\u3002"} +{"id": "2004465", "video_name": "72f978b8-3b78-5e68-a44a-452690033f9e", "text": "\u4e24\u53ea\u9ad8\u5927\u7684\u6bdb\u76ae\u751f\u7269\u5728\u8fdc\u5904\uff0c\u88ab\u957f\u6bdb\u8986\u76d6\u7740\uff0c\u6709\u5599\u3001\u9ed1\u68d5\u8272\u7684\u6bdb\u76ae\u3001\u957f\u957f\u7684\u7fbd\u6bdb\u3001"} +{"id": "3006790", "video_name": "f4006695-4737-5529-82f7-a45af2db2508", "text": "\u9762\u5177\u4eba\u5728\u79cb\u98ce\u4e2d\u7b11\u4e86\u3002"} +{"id": "8003272", "video_name": "f5b1f31d-02df-5949-a96a-a8108462bdf0", "text": "\u67ef\u67ef\u00b7\u5e15\u5c14\u9ed8\u6b63\u5728\u505a\u4e00\u6b21\u5750\u4e0b\u91c7\u8bbf\uff0c\u5b57\u6bcd\u4ece\u5979\u5934\u9876\u4e0a\u65b9\u843d\u4e0b\u8fdb\u753b\u9762\uff0c\u5f88\u6709\u8da3\u3002"} +{"id": "0006174", "video_name": "27b1dd00-9ffe-5407-adc0-a298cf5f898d", "text": "\u5de8\u5927\u7684\u86cb\u7cd5\u4e0a\u6709\u8bb8\u591a\u8721\u70db\u3002"} +{"id": "0003830", "video_name": "44381715-4eb8-53b3-a84a-8f1c15fc6895", "text": "Demi Lovato\u624b\u62ff\u68d2\u68d2\u7cd6\u548cMark Zuckerberg\u8df3\u821e\u3002"} +{"id": "8001094", "video_name": "6cad8e67-75d6-5f5d-b4ed-8b7592f4cca0", "text": "\u4e24\u4e2a\u4eba\u5728\u56fe\u50cf\u4e2d\u79fb\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004819", "video_name": "0fa785be-6fbf-5323-9cae-053263fe3b90", "text": "\u4e00\u4e2a\u7a7f\u84dd\u8272\u886c\u886b\u768413\u5c81\u5370\u5ea6\u7537\u5b69\u5728\u623f\u95f4\u91cc\u88ab\u8868\u60c5\u548c\u8bb2\u8bdd\u6240\u9707\u60ca\u3002 \n\nSource sentence: She enjoys listening to classical music while"} +{"id": "1005032", "video_name": "5d13152c-3d21-55ca-856e-5110b1a16ce7", "text": "\u4e00\u4e2a\u79c3\u9876\u7537\u5b50\u906d\u53d7\u6b3a\u8d1f\u7684\u89c6\u9891\u3002"} +{"id": "7002674", "video_name": "194b716c-b5c3-5904-902e-238de72176a0", "text": "\u751f\u6210\u4e00\u4e2a\u8eab\u7a7f\u91cd\u7532\u5e76\u624b\u6301\u5251\u3001\u77db\u548c\u5927\u76fe\u7684\u53ef\u6015\u975e\u5229\u58eb\u5de8\u4eba\u7684\u5f62\u8c61\uff0c\u6bcf\u5929\u65e9\u4e0a\u6311\u6218\u4ee5\u8272\u5217\u4eba\u3002"} +{"id": "0003048", "video_name": "3614c70d-a749-5eec-b67a-30dbed922cb5", "text": "\u4e00\u79cd\u52a8\u6001\u8fc7\u6e21\u548cPaytm\u6807\u5fd7"} +{"id": "1004078", "video_name": "4b93178e-dbce-553e-ae58-1df872e071f7", "text": "\u53e3\u5f62\u52a8\u4f5c\u50cf\u5728\u8bf4\u8bdd\uff0c\u80cc\u666f\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "8001099", "video_name": "f95f7956-d7d4-5743-a5a2-86d263c46dee", "text": "\u8fc8\u514b\u00b7\u8001\u9f20\u5728\u79d1\u7f57\u62c9\u591a\u5dde\u7684\u5229\u5fb7\u7ef4\u5c14\u6ed1\u96ea\uff0c\u770b\u8d77\u6765\u975e\u5e38\u75b2\u60eb\u3002"} +{"id": "0004989", "video_name": "12ce1a97-e340-5199-8243-edc7163d9b99", "text": "\u4e00\u4e2a\u7531\u6bdb\u6be1\u5236\u6210\u7684\u5de8\u5927\u6124\u6012\u7684\u6c49\u5821\u5305\u5c06\u6f14\u5458\u6574\u4e2a\u541e\u4e0b\uff0c\u641e\u7b11\u573a\u666f\uff0c\u5b9e\u9645\u7279\u6548\uff0c\u6709\u8da3\u7684\u8868"} +{"id": "7004733", "video_name": "7aa0571b-41d8-556e-8988-8fc98ce49cd5", "text": "\u773c\u775b\u95ea\u70c1\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "6003340", "video_name": "0ccdaa33-70e9-5ed4-b151-4ee2b7ec3f3b", "text": "\u94f6\u6cb3\u7cfb\u5728\u5b87\u5b99\u4e2d\u7684\u65cb\u8f6c"} +{"id": "4002606", "video_name": "d07fec90-037b-5011-a1fb-fc5029cb3606", "text": "\u4e00\u53ea\u7a7f\u7740\u7eff\u8272\u5de5\u4f5c\u670d\u7684\u718a\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u7684\u9177\u70ed\u54c8\u9a6c\u5766\u5b63\u8282\u4e0b\uff0c\u5728\u4e00\u6761\u5355\u8f66\u9053\u516c\u8def\u4e0a"} +{"id": "8002846", "video_name": "05798690-1f2d-5659-8f63-67e27069b2c5", "text": "\u4e00\u8f86\u9ad8\u901f\u884c\u9a76\u7684\u5170\u535a\u57fa\u5c3cAventador"} +{"id": "3005472", "video_name": "5a3d2fd0-28c6-5060-8971-04b4c4affad9", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7537\u5b50\u5728\u53a8\u623f\u91cc\u6454\u5012\u5728\u836f\u7247\u5806\u4e2d\u3002"} +{"id": "0005940", "video_name": "238cbd87-28a3-59d9-aa32-b6fde4783837", "text": "\u53a8\u623f\u91cc\u9505\u91cc\u5192\u51fa\u7684\u84b8\u6c7d\u3002"} +{"id": "2007675", "video_name": "87acb94a-8069-54e2-a10b-aed037637a5b", "text": "\u521b\u5efa\u6709\u5173\u672c\u7530\u601d\u57df\u6700\u4f73\u6c7d\u8f66\u5ea7\u6905\u7684\u5f62\u8c61\u3002"} +{"id": "6003772", "video_name": "980fc9bc-51be-5709-9b01-1ef8ce2b36b9", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u65e5\u672c\u5973\u5b69\u7a7f\u7740\u548c\u670d\uff0c\u6162\u6162\u5730\u7a7f\u8d8a\u65e5\u672c\u5386\u53f2\u65f6\u671f\u3002 \n\nSource sentence: The Great Wall of China is an ancient fort"} +{"id": "7004868", "video_name": "32321251-0b0b-5bcd-abfc-6dc48fa5998c", "text": "\u51cb\u96f6\u7684\u82b1\u98d8\u843d\u5728\u655e\u5f00\u7684\u76f8\u518c\u4e0a\uff0c\u79cb\u65e5\u7684\u4e0b\u5348\uff0c\u5728\u516c\u56ed\u91cc\uff0c\u4e00\u5207\u90fd\u5728\u51cb\u96f6\u548c\u751f\u9508\u3002"} +{"id": "1004027", "video_name": "4ab26dd3-3047-5983-87fd-129caaecfabd", "text": "Source translation: \u56fe\u5362\u59c6\u6d77\u6ee9\u7684\u65e0\u4eba\u673a\u89c6\u9891\u98ce\u683c"} +{"id": "6004883", "video_name": "8ba0676d-d5b9-5d0d-9a5a-92ee99b28805", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u5bb6\u5ead\uff0c\u6709\u4e00\u500b\u5c0f\u5bf6\u5bf6\u3001\u7238\u7238\u548c\u5abd\u5abd\u3002"} +{"id": "4004827", "video_name": "08307182-e97e-578d-a1ea-0ab5573af196", "text": "\u7535\u5f71\u9662\u91cc\u52a8\u6f2b\u98ce\u683c\u7684\u5f71\u5385\uff0c\u5730\u4e0a\u7559\u4e0b\u4e86\u7206\u7c73\u82b1\u76d2\u5b50\u3002"} +{"id": "2006505", "video_name": "1b9175b9-cc98-5aed-bd59-e46a43ce8be6", "text": "\u4fdd\u65f6\u6377911 GT4\u5728\u6c99\u6f20\u4e2d\u6bd4\u8d5b\uff0c\u540e\u9762\u662f\u661f\u9645\u98de\u8239Anaken Skywalker\u3002"} +{"id": "3003238", "video_name": "06788e76-9698-541c-87d2-3ec4c1e6f072", "text": "\u9e1f\u513f\u98de\u8fc7\u66ae\u8272\u7684\u6d77\u6d0b\u3002 \n\nSource sentence: She is studying Chinese literature at university. \n\n\u5979\u6b63\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u56fd\u6587\u5b66\u3002"} +{"id": "8001438", "video_name": "32b749dc-6e8b-55d3-ab98-87ea3c200d7b", "text": "\u5c0f\u732b\u5deb\u5e08\u5f00\u59cb\u4ed6\u7684\u65c5\u7a0b\u3002\n\nSource sentence: I am learning Chinese language for my future career. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u4e3a\u4e86\u6211\u7684\u672a\u6765\u804c\u4e1a\u3002"} +{"id": "0003738", "video_name": "429799ff-e0bc-5a51-8f09-c91ad303bc59", "text": "3D\u5361\u901a\n\n\u67d0\u4e2a\u56fd\u5bb6\u7684\u57ce\u5e02\u91cc\uff0c\u6709\u4e00\u4e2a\u57ce\u5e02\uff0c\u90a3\u91cc\u6709\u4e00\u4e2a\u738b\u5b50\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u738b\u5b50\uff0c\u4ed6\u4e3a\u4ed6\u7684\u56fd\u5bb6\u7684\u4eba\u6c11\u670d\u52a1\u3002"} +{"id": "8003923", "video_name": "d549d6b5-6361-5992-87eb-5fe330e8cfc2", "text": "\u98de\u673a\u964d\u843d\u5728\u4f5b\u7f57\u91cc\u8fbe\u5ddeJFK\u673a\u573a\u3002"} +{"id": "2004410", "video_name": "b092c61b-bc7b-5663-a218-b68e2c6a051f", "text": "\u72d7\u3001\u732b\u3001\u5154\u5b50\u3001\u7334\u5b50\u4e00\u8d77\u5e26\u6765\u53ef\u7231\u7684\u65f6\u523b\u3002\n\nSource sentence: I love spending time with my family, it's the best feeling in the world. \n\n"} +{"id": "2004244", "video_name": "19503fc0-e3da-5cf6-bf8b-094ff8b5f136", "text": "\u6c99\u6f20\u4e4b\u591c\uff0c\u661f\u7a7a\u7e41\u661f\u95ea\u70c1\uff0c\u6c99\u4e18\u4e0a\u7684\u6708\u5149\u5929\u9645\uff0c\u8425\u706b\u8fb9\u7684\u591c\u884c\u52a8\u7269\uff0c\u661f\u8f68\u4ea4\u9519\uff0c"} +{"id": "1006265", "video_name": "72c56a52-3930-5d7b-bac5-4cd572a6eef3", "text": "\u4e00\u4e2a\u6d3b\u6cfc\u76842D\u5f69\u8272\u50cf\u7d20\u827a\u672f\u7cbe\u5ea6\u5e73\u53f0\u6e38\u620f\uff0c\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u68c9\u82b1\u7cd6\u89d2\u8272\u8df3\u6765\u8df3\u53bb\u3002\n\nSource sentence:"} +{"id": "2003375", "video_name": "8457d19f-43ab-5d5e-bd29-a5aa0665d612", "text": "\u8fd9\u4e2a\u56fe\u50cf\u7684\u89c6\u9891\u663e\u793a\u4e86\u6c34\u5728\u6d74\u7f38\u4e2d\u968f\u7740\u97f3\u4e50\u632f\u52a8\u3002"} +{"id": "6004775", "video_name": "b841e888-a40b-5315-aaab-499c70aa9b89", "text": "\u957f\u957f\u7684\u9cc4\u9c7c\u98de\u5411\u706b\u661f\u3002"} +{"id": "1003453", "video_name": "3ff56aa3-28b5-555a-8a98-ec57518401b4", "text": "\u4e00\u4e2a\u62ff\u7740\u96e8\u4f1e\u7684\u4f20\u7edf\u4e2d\u56fd\u5973\u5b69"} +{"id": "1003225", "video_name": "3b5cbfdc-c1ea-5930-b9c6-f52c66607552", "text": "\u56de\u5230\u9ed1\u9b42\u4ea4\u54cd\u66f2\u4e2d\u7684\u5927\u5730\uff0c\u5728\u795e\u79d8\u4e4b\u65c5\u4e2d\u3002"} +{"id": "0006058", "video_name": "25dbab4c-b43b-515f-a1b6-e5d9b2b0b659", "text": "\u7528\u8fea\u58eb\u5c3c\u98ce\u683c\u521b\u4f5c\u5173\u4e8e\u7ea6\u62ff\u7684\u5f62\u8c61\u3002"} +{"id": "3004189", "video_name": "a106834b-718a-54db-bc94-486793932444", "text": "\u5728\u4e00\u4e2a\u5c0f\u5c0f\u7684\u7eff\u8272\u6c60\u5858\u91cc\uff0c\u7531\u5c0f\u6c34\u5f69\u8272\u5f62\u6210\u7684\u900f\u660e\u9c7c\u82d7\uff0c\u5728\u6c34\u5e95\u7684\u5c0f\u77f3\u7c92\u4e2d\u6e38\u52a8\uff0c\u9c7c\u5728"} +{"id": "7004551", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "Source sentence: \u73ca\u745a\u7901\u5c4f\u969c\uff0c\u8d85\u903c\u771f\uff0c8K\uff0c60\u5e27\u6bcf\u79d2"} +{"id": "2005354", "video_name": "3a67fcfd-ed2b-51ca-9795-0f959997542b", "text": "\u300aPAYDAY 2\u300b\u73b0\u5b9e\u7248\u6539\u7f16\u7684\u5f00\u573a\u3002"} +{"id": "7004821", "video_name": "20b68079-bea1-5350-81ee-accbcdb2897c", "text": "\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e5\u5b50\u7684\u6545\u4e8b\u3002\n\nSource sentence: She is studying Mandarin Chinese at university. \n\n\u5979\u6b63\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "1005372", "video_name": "62d94d93-d741-5db2-97b1-0fad21e65a9c", "text": "\u4e00\u53ea\u9e70\u98de\u884c\u7684\u5feb\u901f\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "2005199", "video_name": "5d7f8b4f-af9d-55eb-a5d2-deeee3f3fcd8", "text": "\u8718\u86db\u4fa0\u9a91\u7740\u81ea\u884c\u8f66\u53bb\u5546\u5e97\u3002"} +{"id": "2007728", "video_name": "18f60498-0b09-5485-aba4-ceac2818e4b9", "text": "\u4e00\u957f\u4e32\u7684\u4e2a\u4eba\u88ab\u9501\u94fe\u675f\u7f1a\u4f4f\u3002"} +{"id": "7003371", "video_name": "c7f6fb9a-2ad0-5463-8476-4484dcc03872", "text": "\u8fc7\u4e86\u4e00\u4f1a\u513f\uff0c\u4e00\u8f86\u8f66\u505c\u5728\u5df4\u5df4\u65c1\u8fb9\uff0c\u5df4\u5df4\u4e0a\u4e86\u8f66\u3002"} +{"id": "0004315", "video_name": "06ffe2af-f2e3-517f-98cc-422432b6c56f", "text": "\u7a0b\u5e8f\u5458\u5728\u4ed6\u7684\u684c\u5b50\u524d\u75af\u72c2\u5730\u7f16\u5199\u4ee3\u7801\u3002"} +{"id": "8003020", "video_name": "153a3331-eb47-5bc7-9de9-8b5d846d5991", "text": "\u4e00\u540d\u767d\u4eba\u5973\u5b69\u7a7f\u7740\u857e\u4e1d\u8863\u7ad9\u5728\u6b96\u6c11\u5730\uff0c\u770b\u7740\u57c3\u83f2\u5c14\u94c1\u5854\u3002"} +{"id": "0004791", "video_name": "0f341f10-f556-5eac-88e3-1251e5c15a8d", "text": "\u56fd\u738b\u8eab\u7a7f\u5370\u5ea6\u56fd\u738b\u7684\u670d\u9970\uff0c\u4e0e\u4ed6\u7684\u513f\u5b50\u4eec\u4e00\u8d77\u7ad9\u5728\u56fd\u738b\u7684\u5730\u65b9\uff0c\u6bcf\u4e2a\u4eba\u624b\u6301\u4e0d\u540c\u98ce\u683c\u7684\u9493"} +{"id": "6004011", "video_name": "2432d88d-bce5-51ba-a49e-a736a79258a0", "text": "\u57ce\u5e02\u91cc\u6709\u5176\u4ed6\u4eba\uff0c\u7a7f\u7740\u563b\u54c8\u8863\u670d\u8df3\u821e\u7684\u7537\u4eba\u3002"} +{"id": "8002381", "video_name": "b9479947-ea9b-5caa-ac37-c1405634e16d", "text": "\u5728\u7a7a\u4e2d\u4fef\u77b0\u9707\u6ce2\u5728\u4e16\u754c\u8303\u56f4\u5185\u7684\u4f20\u64ad\uff0c\u7f29\u5c0f\u89c6\u89d2\u3002"} +{"id": "2007846", "video_name": "d215a947-aaec-50e6-bdc1-9c2e24d6d502", "text": "\u5236\u4f5c\u4e00\u6bb5\u6709\u5173\u5728\u7ebf\u8425\u9500\u673a\u6784\u7684\u89c6\u9891\uff0c\u89c6\u9891\u5145\u6ee1\u52a8\u4f5c\u548c\u6218\u6597\u573a\u9762\u3002"} +{"id": "3006449", "video_name": "2176f16e-7986-5354-927e-421d50b7c873", "text": "\u4e00\u4e2a\u4eba\u7c7b\u7684\u8f6e\u5ed3\u5728\u5b87\u5b99\u4e2d\u8d85\u73b0\u5b9e\u5730\u65c5\u884c\uff0c\u8d85\u7ea7\u6e05\u6670\uff0c\u8d85\u7ea7\u771f\u5b9e\uff0c128k\uff0c24\u5e27\u6bcf\u79d2\u3002"} +{"id": "2003139", "video_name": "cae8b50c-7ee3-54a6-822e-1147df00533b", "text": "\u96ea\u6a47\u5728\u7f13\u5761\u4e0a\u6ed1\u884c\uff0c\u670b\u53cb\u4eec\u5145\u6ee1\u4e86\u6fc0\u52a8\u3002"} +{"id": "3006616", "video_name": "70783096-548b-5e18-9cce-b5ac3511db83", "text": "\u4ed6\u5728\u68a6\u91cc\u7684\u7537\u6027\u79c1\u4eba\u7a7a\u95f4\u3002"} +{"id": "1005757", "video_name": "69ec6a40-a81d-5337-94f2-46772e55acca", "text": "\u6211\u4eec\u5fc3\u4e2d\u4e0d\u53ef\u89c1\u7684\u7231\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "1006268", "video_name": "72cd060f-3756-5c74-b114-e2fd752952cc", "text": "DnD\u98ce\u683c\uff0c\u9ad8\u8d35\u7684\u72ee\u5b50\u4e0e\u9f99\u6218\u6597\u3002"} +{"id": "8001698", "video_name": "e129dfe4-deae-57ae-bda3-0cd62fde9c6a", "text": "\u4f01\u4e1a\u5dee\u65c5\u4fe1\u606f\u89c6\u989160\u79d2\u3002"} +{"id": "1003112", "video_name": "3946b37d-b86f-5fa6-b036-91f87bf72879", "text": "\u4e00\u5e45\u58a8\u6c34\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u7e41\u5fd9\u7684\u57ce\u5e02\uff0c\u8f66\u8f86\u7a7f\u68ad\u800c\u8fc7\u3002"} +{"id": "8002265", "video_name": "cabf2cad-b6d9-57db-bf96-00ff90ed1967", "text": "\u665a\u4e0a\u7684\u96ea\u57ce\uff0c\u6e29\u99a8\u7684\u706f\u5149\u3002\u7a7a\u8361\u7684\u8857\u9053\u3002\u6709\u96fe\uff0c\u4f46\u4e0d\u662f\u592a\u6d53\u3002"} +{"id": "3003898", "video_name": "02c500f1-2996-5ff5-9ad2-9e33c098763b", "text": "\u4e09\u540d\u7537\u5b50\u7684\u9057\u4f53\u88ab\u9057\u5f03\u5728\u51b7\u85cf\u67dc\u4e2d\u3002"} +{"id": "7003891", "video_name": "f35d227e-9e0f-58ac-b77b-1d5d6c83522c", "text": "iPhone\u88ab\u5361\u8f66\u78be\u8fc7\u4e86\u3002"} +{"id": "7002879", "video_name": "c762efb5-e9d4-58a8-85e7-785571b3a7a2", "text": "\u4e00\u4e2a\u9965\u997f\u3001\u5bd2\u51b7\u3001\u7a7f\u7740\u7834\u65e7\u8863\u670d\u7684\u5973\u4eba\u7684\u52a8\u753b\u3002"} +{"id": "4003753", "video_name": "b7362c69-9898-5b1b-a547-f2cc05bb7b9f", "text": "\u8f9b\u8fea\u00b7\u514b\u52b3\u99a5\u671d\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "5001207", "video_name": "17dd420e-2894-57b8-9a38-5ec7a0393152", "text": "\u673a\u7532\u6218\u58eb\u548c\u4eba\u7c7b\u5728\u5730\u7403\u4e0a\u62cd\u7167\u3002"} +{"id": "7002833", "video_name": "a60e0977-df6d-5358-9f55-c4f0a0979a05", "text": "\u4ece\u524d\uff0c\u5728\u6d77\u5f97\u62c9\u5df4\u5e02\u7e41\u534e\u7684\u8857\u9053\u4e0a\uff0c\u4e00\u4e2a\u540d\u53eb\u963f\u739b\u5c14\u7684\u5370\u5ea6\u5e74\u8f7b\u7537\u5b69\u548c\u4ed6\u7684\u5bb6\u4eba\u4e00\u8d77\u751f\u6d3b\u3002\u90a3"} +{"id": "2007934", "video_name": "708d8146-af82-54e1-82da-d3b5300166af", "text": "\u6765\u6e90\u53e5\u5b50\uff1a\u95f4\u8c0d\u5bb6\u65cf\u4e2d\u7684\u5b89\u96c5\u5728\u5854\u970d\u6e56\u6ed1\u96ea\u3002\n\n\u7ffb\u8bd1\uff1a\u95f4\u8c0d\u5bb6\u65cf\u4e2d\u7684\u5b89\u96c5\u5728\u5854\u970d\u6e56\u6ed1"} +{"id": "4002585", "video_name": "9552b17b-6f78-5f4d-aa32-ee1e4bd74d03", "text": "\u8d85\u5e02\u91cc\u6709\u975e\u5e38\u8be1\u5f02\u7684\u9c7c\u3002"} +{"id": "2006975", "video_name": "5172bd00-4ca6-5f57-a592-3bdf4acf55b6", "text": "\u5f88\u4e45\u4ee5\u524d\uff0c\u8fd9\u4e2a\u4e16\u754c\u66fe\u7ecf\u4eab\u6709\u4e00\u6bb5\u548c\u5e73\u7684\u65f6\u671f\u3002\u4e0d\u540c\u7684\u738b\u56fd\u7e41\u8363\u5174\u76db\uff0c\u6bcf\u4e2a\u738b\u56fd\u90fd\u6709\u81ea"} +{"id": "4002857", "video_name": "0ab7deee-5692-5b2f-b87c-5908638045f4", "text": "\u4e00\u5f20\u88ab\u5168\u89c6\u773c\u56fe\u6848\u8986\u76d6\u7684\u68d5\u8272\u7167\u7247\u3002"} +{"id": "1005692", "video_name": "689f0531-ffca-5c64-ae07-2f9e46c066aa", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u51ac\u5929\u8d70\u8fc7\u65f6\u4ee3\u5e7f\u573a\u3002"} +{"id": "2006933", "video_name": "aa20c438-54d6-50b4-a087-79f9771c3a7e", "text": "\u5ddd\u666e\u00b7\u5510\u7eb3\u5fb7\u5728\u8df3\u821e\uff0c3D\u52a8\u753b\u3002"} +{"id": "3005234", "video_name": "82a29ef6-8bca-516c-a551-b4887e237fcd", "text": "\u4e00\u4e2a\u4eba\u5728\u90fd\u5e02\u8857\u9053\u4e0a\u6ed1\u677f\uff0c\u4e24\u65c1\u90fd\u662f\u5012\u584c\u7684\u5efa\u7b51\uff0c\u5448\u73b0\u51fa\u4e00\u79cd1970\u5e74\u4ee3\u5199\u5b9e\u53c8\u6709\u7535\u5f71\u611f\u7684\u827a\u672f"} +{"id": "4003431", "video_name": "b768f796-7a12-508b-8bb2-eea7e568521b", "text": "\u9a6c\u91cc\u5965\u5728\u7b2c\u4e00\u5173\u4e2d\u5411\u524d\u8d70\uff0c\u4f34\u968f\u7740\u901a\u7528\u7684\u9a6c\u91cc\u5965\u97f3\u4e50\u3002"} +{"id": "6004784", "video_name": "658b838c-496e-5c73-8c50-ef681d6161e3", "text": "\u4e00\u67b6\u84dd\u8272\u7684\u4e0d\u660e\u98de\u884c\u7269\u5728\u591c\u665a\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "3004746", "video_name": "6e926b11-eef9-502f-b0b1-6d493dd479c3", "text": "\u4e00\u53ea\u6551\u63f4\u72ac\u5728\u6e29\u6696\u8212\u9002\u7684\u6bef\u5b50\u4e0b\u5b89\u9759\u5730\u5c0f\u7761\u3002"} +{"id": "2004199", "video_name": "8b4e4ebf-797e-53c5-af64-e4944d021c06", "text": "\u624b\u4e0e\u811a\u6454\u8de4\u624b\u5728\u52a8\u6001\u6454\u8de4\u6bd4\u8d5b\u4e2d\u640f\u6597\u3002"} +{"id": "7002732", "video_name": "492cc155-bfe2-5428-a5b3-0223bd27a90a", "text": "\u8239\u4e0a\u53d7\u56f0\u7684\u7537\u5b50\u7167\u7247"} +{"id": "6003441", "video_name": "9040f727-c0b6-54d6-9c87-6380bc2a82e0", "text": "\u5f53\u5979\u8d70\u8fc7\u660f\u6697\u7684\u8d70\u5eca\u65f6\uff0c\u73cd\u59ae\u611f\u5230\u4e00\u79cd\u7126\u8651\u548c\u5174\u594b\u7684\u6df7\u5408\u7269\u6d41\u904d\u5168\u8eab\u3002"} +{"id": "4004976", "video_name": "33025462-bfc9-5973-b94a-ad8273b3f5f4", "text": "\u73b0\u5728\u5b9d\u5b9d\u662f\u4e2a\u806a\u660e\u7684\u5b69\u5b50\u3002"} +{"id": "4004191", "video_name": "7fe254ba-a970-5d77-998b-f4aa89601c22", "text": "\u4e00\u4e2a\u5973\u4eba\u8df3\u821e\u3002\u4fe1\u606f\uff1aHEX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002571", "video_name": "a6339f90-c6ac-5d77-87c0-5f0bf286185d", "text": "\u8ba2\u4e66\u673a\u4e0e\u9e1f\u513f\u5728\u4e91\u4e2d\u98de\u7fd4\u3002"} +{"id": "2004708", "video_name": "c4647348-9759-5bf1-92ec-7dff491e7ca3", "text": "\u7535\u5f71\u5316\u3001\u7279\u5199\u3001\u300a\u771f\u4eba\u5feb\u6253\u300b\u573a\u666f\u4e0e\u5947\u5e7b\u89d2\u8272\u3002"} +{"id": "7003535", "video_name": "d28ebb19-3cd0-5fb2-afca-928dd375678e", "text": "\u4e00\u53ea\u5154\u5b50\u5403\u80e1\u841d\u535c\u7684\u4e8c\u7ef4\u52a8\u753b\u7d20\u63cf"} +{"id": "3005209", "video_name": "8d3abea5-d003-5a08-a708-703b296799fb", "text": "\u4e3b\u795e\u6e7f\u5a46\u6709\u84dd\u8272\u5589\u5499\u3001\u989d\u5934\u4e0a\u7684\u7b2c\u4e09\u53ea\u773c\u775b\u3001\u4e71\u84ec\u84ec\u7684\u5934\u53d1\u3001\u65b0\u6708\u3001\u86c7\u3001"} +{"id": "2003675", "video_name": "d2567f0b-24e0-5fdb-b0fb-316a82277dc1", "text": "\u5b9d\u5b9d\u7a7f\u7740\u592a\u7a7a\u670d\u559d\u725b\u5976\u3002"} +{"id": "4002506", "video_name": "e621c423-9fa0-55d2-bb66-08262ff6967a", "text": "\u4ece\u5e7f\u9614\u7684\u89d2\u5ea6\u5f00\u59cb\u62cd\u6444\uff0c\u5c55\u73b0\u6765\u81ea\u4e0d\u540c\u9636\u5c42\u7684\u4eba\u4eec\u5728\u4e00\u4e2a\u8282\u65e5\u6216\u805a\u4f1a\u4e0a\u8df3\u7740\u838e\u838e\u821e\u3002"} +{"id": "8001262", "video_name": "e15141e2-5eb3-58ad-b1b1-497f12a990c0", "text": "\u8d85\u7ea7\u98ce\u66b4\uff0c\u5e26\u6765\u4e86\u5168\u7403\u7684\u964d\u96e8\u3002"} +{"id": "6004843", "video_name": "9aad52b5-d099-5731-97f8-9202ca9bd4ee", "text": "\u4eba\u4eec\u6b22\u547c\u5e76\u5e0c\u671b\u5148\u77e5\u56de\u6765\u3002"} +{"id": "8003197", "video_name": "e2ef8f84-39a7-5ce9-b6d1-ac62f08b7add", "text": "\u4e00\u4e2a\u753b\u5357\u74dc\u7684\u4eba\u7684\u89c6\u89d2\uff0c\u4ee53D\u3001\u903c\u771f\u30018K\u7684\u65b9\u5f0f\u5448\u73b0\u3002"} +{"id": "2006161", "video_name": "5c3e558a-e339-5ce5-906b-49eab6e0a328", "text": "\u8d23\u602a\u67d0\u4eba\u5e76\u6307\u7740\u5c4f\u5e55\u751f\u6c14"} +{"id": "5001318", "video_name": "dacf1bde-1229-5c21-97eb-3028f7241749", "text": "\u4e00\u5e45\u4e2d\u56fd\u5c71\u6c34\u753b\u3002\u5e76\u4e14\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "3003109", "video_name": "66bc08a3-fce0-5ce5-9760-fda250484103", "text": "\u5b9e\u9a8c\u5ba4\u5de5\u4f5c\u8005\u6b63\u5728\u5199\u7b14\u8bb0\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006665", "video_name": "30aabd6d-ec47-5622-bd8e-918c91950ce2", "text": "\u5973\u5b69\u7a7f\u7740\u7d2b\u8272\u725b\u4ed4\u77ed\u88e4\uff0c\u6325\u7740\u4e00\u628a\u65a7\u5934\uff0c4k\u5206\u8fa8\u7387\u3002"} +{"id": "3003444", "video_name": "c9fb42ce-9f44-5ea4-a72c-b1727f218139", "text": "\u8363\u8000\uff0c\u8363\u8000\uff0c\u54c8\u5229\u8def\u4e9a\uff0c\u5feb\u4e50\u81f3\u6781\u3002"} +{"id": "3006021", "video_name": "068d43a0-bcd6-509c-b84f-fff5885ccc47", "text": "\u7ea2\u8272\u9f99\u5728\u7194\u5ca9\u6c60\u4e2d\uff0c\u7535\u5f71\u822c\u7684\uff0c\u5371\u9669\u7684\uff0c\u73b0\u573a\u62cd\u6444\uff0c\u65e7\u7684\u6444\u50cf\u673a\u3002"} +{"id": "8001017", "video_name": "21bdb4d4-a915-55df-9717-7b9f9bfeece7", "text": "\u300a\u5b64\u5c9b\u60ca\u9b423\u300b\u4e2d\u7684Vaas\uff0c\u9ed1\u767d\u5bf9\u6bd4\u9c9c\u660e\u7684\u8868\u73b0\u4e3b\u4e49\uff0c\u5927\u80c6\u7684\u7b14\u89e6\u548c\u51cc\u4e71\u7684\u58a8\u6c34\uff0c"} +{"id": "2005139", "video_name": "5b0a36f9-cdca-5272-8cea-115e75c75b27", "text": "\u5728\u7070\u8272\u80cc\u666f\u4e0a\u884c\u8d70\u7684\u4f01\u9e45\u811a"} +{"id": "3003115", "video_name": "4d2a1739-6184-5628-ba77-0244ae5878e1", "text": "\u9ed1\u6d1e\u5468\u56f4\u73a9\u800d\u7684\u5c0f\u732b\u4eec\u3002"} +{"id": "0004064", "video_name": "02abf8ef-46c2-5831-854e-81bac8cfb6a8", "text": "\u4e24\u7ef4\u5361\u901a\u52a8\u753b\uff0c\u5c55\u73b0\u4e09\u53ea\u5c0f\u732a\u8df3\u821e\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u5361\u901a\u3002"} +{"id": "7002642", "video_name": "b7453354-09f3-5d36-a6aa-ddc284889f3c", "text": "\u4eba\u5de5\u667a\u80fd\u5c06\u5982\u4f55\u5f71\u54cd\u6211\u4eec\u7684\u65e5\u5e38\u751f\u6d3b"} +{"id": "4002840", "video_name": "2880526a-39f4-5d93-9439-5518e6407af6", "text": "\u4e00\u540d\u7259\u4e70\u52a0\u5973\u6027\u5728\u591c\u5e97\u8df3\u7740\u96f7\u9b3c\u821e\u3002"} +{"id": "2005429", "video_name": "a69e0b18-28a4-5961-8b3d-54fec25d2aa3", "text": "\u5916\u661f\u75c5\u6bd2\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u632f\u52a8\uff0c\u4fe1\u606f\uff1a\u75c5\u6bd2\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002521", "video_name": "a1a918f5-9857-5ce7-8204-68d5181d9f4d", "text": "\u97e6\u6069\u00b7\u9c81\u5c3c\u626e\u6f14\u8718\u86db\u4fa0\uff0c\u5c04\u51fa\u8718\u86db\u4e1d\u3002"} +{"id": "6004509", "video_name": "46224c73-1bbc-5b7e-9ac2-dad69d83998d", "text": "\u5e03\u65993D\u65cb\u8f6c \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2005457", "video_name": "8b4a8736-b447-5df4-b31b-928029c78eb1", "text": "\u5728\u96ea\u5c71\u80cc\u666f\u4e0b\u5954\u8dd1\u7684\u8d8a\u91ce\u8dd1\u8005\uff0c\u84dd\u5929\u6e56\u6cca\u548c\u5c71\u8c37\u4e2d\u7684\u68ee\u6797\u3002\u725b\u5728\u7530\u91ce\u4e2d\u3002"} +{"id": "2007981", "video_name": "88c687f8-04cb-5ada-87e5-8c268528330e", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u623f\u95f4\u91cc\u770b\u4e66\uff0c\u7a97\u5916\u6253\u96f7\u95ea\u7535\u3002"} +{"id": "2005491", "video_name": "18412e49-4c0d-5a6c-bb23-0ea59efb6a63", "text": "\u8bf7\u751f\u6210\u6b64\u79fb\u52a8\u6d88\u606f\u7684\u9644\u4ef6\u3002"} +{"id": "0006867", "video_name": "3478b9e2-999b-56eb-a313-d2d33ae17018", "text": "\u62a4\u58eb\u4fa7\u8eab\u5411\u540e\u5f2f\u66f2\uff0c\u4ee5\u52a8\u753b\u98ce\u683c\u6ce8\u89c6\u7740\u955c\u5934\u3002"} +{"id": "0006479", "video_name": "2d3fb01f-46e2-5910-b828-5a8cf0cc8ae2", "text": "\u4e00\u4e2a\u7a7f\u7740\u53e4\u4ee3\u670d\u88c5\u7684\u7537\u4eba\u7126\u6025\u5730\u671b\u7740\u524d\u65b9\u3002"} +{"id": "8001530", "video_name": "16472b9d-8f8f-53fd-9770-19c4afc46d41", "text": "\u7070\u59d1\u5a18\u5728\u54c8\u5229\u6cd5\u5854\u524d\u6446\u59ff\u52bf\u3002"} +{"id": "4004648", "video_name": "c09e6786-6d62-570f-90f1-758867fd5038", "text": "\u4ece\u4e00\u4e2a\u7ad9\u5728\u60ac\u5d16\u4e0a\u7684\u4eba\u7684\u89c6\u89d2\u770b\uff0c\u5de8\u5927\u7684\u5927\u7406\u77f3\u96d5\u50cf\u5728\u6d77\u6d0b\u4e2d\u6f02\u6d6e\u3002 \n\nSource sentence: The restaurant serves a variety of dishes,"} +{"id": "2003739", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "\u90a3\u4e2a\u5728\u8d85\u73b0\u5b9e\u4e16\u754c\u91cc\u54ed\u6ce3\u7684\u7537\u4eba\u770b\u8d77\u6765\u50cf\u662f\u8d5b\u535a\u670b\u514b3\u3002"} +{"id": "6003804", "video_name": "32fa9468-e49f-5173-a808-add848f05160", "text": "\u865a\u5e7b\u5f15\u64ce\uff0c\u5b87\u5b99\u5927\u7206\u70b8\u7406\u8bba\uff0c\u9668\u77f3\u6467\u6bc1\u6d77\u6ee9\uff0c\u6467\u6bc1\u3002"} +{"id": "4002179", "video_name": "1eb18656-4ca7-511f-9251-29deaa705ae7", "text": "\u5730\u7403\u8352\u51c9\u4e0d\u6bdb\uff0c\u6ee1\u5e03\u51f6\u731b\u91ce\u517d\uff0c\u4e0d\u65ad\u7206\u53d1\u6218\u4e89\u3002"} +{"id": "3003737", "video_name": "9841dfe2-c9f1-56c6-be20-788e50bbbea4", "text": "\u4e91\u5f69\u79fb\u52a8\u5f97\u66f4\u5feb\u4e86\u3002\u4fe1\u606f\uff1a\u6c34\u5f69\u753b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1006742", "video_name": "7b74203f-b951-5c4a-a767-4750cad25124", "text": "\u4e00\u652f\u70b9\u71c3\u4e86\u7684\u3001\u5377\u8d77\u6765\u7684\u5927\u9ebb\u5377\u843d\u5165\u8840\u6c60\u4e2d\uff0c\u5f15\u8d77\u4e86\u4e00\u80a1\u6df1\u7ea2\u8272\u6db2\u4f53\u7684\u6e85\u6cfc\u3002"} +{"id": "0006098", "video_name": "269199db-93e4-5523-a4d3-cb4dfa9fd2e8", "text": "\u5728\u4e00\u4e2a\u5929\u7a7a\u662f\u5976\u916a\uff0c\u5927\u5730\u662f\u5de7\u514b\u529b\u7684\u4e16\u754c\u91cc"} +{"id": "2006737", "video_name": "637efb0a-713d-507c-9930-34204ba0143f", "text": "\u4e00\u5f20\u8be6\u7ec6\u7684\u7167\u7247\uff0c\u663e\u793a\u4e00\u4e2a\u4e25\u8083\u7684\u65e5\u672c\u827a\u4f0e\u6b63\u89c6\u7740\u955c\u5934\uff0c\u7ad9\u76f4\u4e86\u8eab\u5b50\uff0c\u624b\u653e\u677e\uff0c\u7a7f\u7740\u8272\u5f69"} +{"id": "4003514", "video_name": "d446cd51-2099-59e6-aa54-254e4958cf48", "text": "\u57fa\u4e8e\u7535\u5f71\u300a\u76d7\u68a6\u7a7a\u95f4\u300b\u521b\u4f5c\u4e00\u90e8\u89c6\u9891\u3002"} +{"id": "8002007", "video_name": "4b2e258c-1d93-553e-8558-40a3d7f5c361", "text": "\u5566\u5566\u961f\u5458\u5728\u8db3\u7403\u573a\u4e0a\u62e5\u62b1\u4e00\u540d\u8db3\u7403\u8fd0\u52a8\u5458\uff0c\u8d85\u8f7b\uff0c\u8d85\u73b0\u5b9e\uff0c\u7167\u7247\u903c\u771f\uff0c8K\uff0c\u865a\u5e7b\u5f15"} +{"id": "3005655", "video_name": "1ef64844-c841-561b-a562-be7852767aab", "text": "\u6cbf\u9014\uff0c\u5361\u97e6\u4f1a\u9047\u5230\u5176\u4ed6\u89d2\u8272\uff0c\u4ed6\u4eec\u4f1a\u52a0\u5165\u4ed6\u7684\u65c5\u7a0b\u3002\u5176\u4e2d\u4e00\u4e9b\u89d2\u8272\u662f\u76df\u53cb\uff0c\u800c\u53e6\u4e00\u4e9b\u5219\u662f\u654c\u4eba\uff0c"} +{"id": "8003444", "video_name": "1551964d-656b-58c4-b35d-15f535ebb249", "text": "1950\u5e74\u4ee3\u767e\u8d27\u5546\u5e97\u7684\u7535\u89c6\u673a\u5728\u5723\u8bde\u8282\u671f\u95f4\u5c55\u793a\u5728\u6a71\u7a97\u4e2d\u3002"} +{"id": "8003231", "video_name": "f1abfd9c-ce7c-5168-a71e-5a807704611b", "text": "\u8815\u52a8\u89c6\u89d2\uff0c\u7279\u62c9\u7ef4\u65af\u00b7\u65af\u79d1\u7279\u5728\u6c99\u6f20\u4e2d\u8bf4\u5531\uff0c\u671d\u5411\u955c\u5934\uff0c\u5947\u602a\u7684\u5929\u6c14\u3002"} +{"id": "3006227", "video_name": "e3c40edd-57bd-525c-9543-0f369d58bef9", "text": "\u6234\u7740\u8033\u673a\u7684\u7537\u5b50\u4ece\u80a9\u8180\u8d77\u8df3\u7740\u8df3\u821e\u3002"} +{"id": "7002914", "video_name": "6e49c36d-7f97-5ea6-81dc-c73d0515366d", "text": "\u4e00\u4eba\u8df3\u821e\u8fb9\u62cd\u638c\uff0c\u771f\u5b9e\u3002"} +{"id": "7004772", "video_name": "10dc1b06-dc67-52bc-b489-65e1cf9f09d3", "text": "\u5404\u79cd\u6797\u5730\u751f\u7269\uff0c\u5982\u5154\u5b50\u3001\u9e1f\u7c7b\u548c\u677e\u9f20\uff0c\u6b63\u5728\u8fdb\u884c\u5b83\u4eec\u7684\u65e5\u5e38\u6d3b\u52a8\u3002\u5361\u901a\u98ce\u683c\uff0c8K\uff0c\u9ad8\u8d28\u91cf"} +{"id": "2005011", "video_name": "0b061eed-103f-5b8b-8479-55d621b88c24", "text": "\u4e00\u4e2a\u5370\u5ea6\u90e8\u843d\u7684\u7f8e\u4e3d\u5973\u5b69\u6b63\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "7003424", "video_name": "fdea2ba9-4ffc-5e28-9c45-a1f3d2473b94", "text": "\u4e00\u8f86\u8d5b\u8f66\u5728\u8d5b\u9053\u4e0a\u6f02\u79fb\u3002"} +{"id": "1004782", "video_name": "5869738d-0d9a-5134-a9d2-42c365b1b308", "text": "\u6d88\u606f\uff1a1\u9644\u4ef6\n\u6e90\u53e5\uff1a\u672a\u8bbe\u7f6e\uff0c\u903c\u771f\u7684\u660e\u6697\u5bf9\u6bd4\u7167\u660e\uff0c\u539f\u59cb\u7684\u8857\u5934\u6444\u5f71\uff0c\u4e61\u6751\u751f\u6d3b\u7684\u63cf\u7ed8\uff0c\u96fe"} +{"id": "3006092", "video_name": "7e042e34-561d-5540-93de-a7b1b5fdc04d", "text": "\u793a\u5a01\u8005\u7a7f\u7740\u5168\u84dd\u8272\u8863\u670d\uff0c\u624b\u6301\u84dd\u8272\u6807\u724c\uff0c\u963b\u62e6\u84dd\u8272\u6c7d\u8f66\u3002"} +{"id": "2007132", "video_name": "5abcb684-67b9-5096-832d-754d70d3a61a", "text": "\u4e00\u53ea\u732b\u8d70\u5728\u8def\u4e0a\u3002"} +{"id": "7004272", "video_name": "57a5ca24-a60b-5967-88b9-cb7e3fee3e5a", "text": "\u6211\u7684\u5fc3\u968f\u7740\u547c\u5438\u6447\u66f3\uff0c\u611f\u53d7\u5230\u751f\u547d\u7684\u8282\u594f\uff0c\u6211\u627e\u5230\u4e86\u5e73\u9759\u3002"} +{"id": "0006784", "video_name": "331bd1d5-5e22-5f03-9b9f-3d0aeaeb7b82", "text": "\u54c8\u7ef4\u5c14\u00b7\u7c73\u83b1\u7a7f\u7740\u71d5\u5c3e\u670d\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728"} +{"id": "6003135", "video_name": "637f7e25-2401-5a7b-b43b-0c6d47e3e9aa", "text": "\u56e0\u4e3a\u73e0\u5b9d\u7684\u5149\u5f69\uff0c\u4e9a\u9ebb\u62c9\u6770\u79bb\u5f00\u4e86\u90a3\u4e2a\u5730\u65b9\u3002"} +{"id": "0003617", "video_name": "408dd489-9e2c-504b-bde0-6ebcf1b9bb42", "text": "\u63cf\u7ed8\u672a\u6765\u573a\u666f\u9700\u8981\u5177\u5907\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u89c6\u9891\u8981\u6c42\u4e3a9:16\u3002"} +{"id": "1004897", "video_name": "5a725c9d-b273-5e05-8353-722d484360f9", "text": "\u7a74\u58c1\u753b\u63cf\u7ed8\u4e86\u53f2\u524d\u4eba\u7c7b\u5728\u7bdd\u706b\u65c1\u8fdb\u9910\u7684\u573a\u666f\u3002"} +{"id": "2006377", "video_name": "55a05da7-5646-577b-b389-acab8cfafafa", "text": "\u4eba\u4eec\u5728\u6d77\u6ee9\u4e0a\u3002\u6444\u50cf\u673a\u5411\u524d\u79fb\u52a8\u5e76\u7f29\u653e\uff0c\u706f\u5149\u67d4\u548c\u3002"} +{"id": "3003060", "video_name": "69c03abe-3508-57cd-ba0c-fd21dd091814", "text": "\u665a\u4e0a\u68ee\u6797\u5730\u533a\u53d1\u751f\u7206\u70b8\u3002"} +{"id": "2007294", "video_name": "651d0802-df9d-590e-9ac1-b14fcad24adf", "text": "\u4e00\u53ea\u9cc4\u9c7c\u7a81\u7136\u6293\u4f4f\u5927\u8c61\u7684\u817f\u62d6\u5165\u6c34\u4e2d\u7684\u5361\u901a\u6545\u4e8b"} +{"id": "2006729", "video_name": "d8b492a3-45aa-5fec-908d-98a81d98297b", "text": "\u4eba\u4ee5\u76f4\u7acb\u59ff\u52bf\u56de\u671b\u81ea\u5df1\u6210\u529f\u5730\u5411\u516c\u4f17\u9500\u552e\u76ca\u751f\u83cc\u7684\u4e8b\u4e1a\uff0c\u7f13\u6162\u79fb\u52a8\uff0c8K\u3002"} +{"id": "0006286", "video_name": "2a05b421-db1f-5ab3-819f-5eb824f8a152", "text": "\u4e00\u4e2a\u5b69\u5b50\u8df3\u4e0a\u4e86\u4e00\u5f20\u53cc\u5c42\u5e8a\u3002"} +{"id": "8003086", "video_name": "60b78560-9349-50f3-86f5-e575af653512", "text": "\u4e00\u4e2a\u5bf9\u522b\u4eba\u8fc7\u4e8e\u4ec1\u6148\u5374\u6d6a\u8d39\u4e86\u4ed6\u7684\u4ec1\u6148\u7684\u7537\u4eba\u3002"} +{"id": "2004111", "video_name": "1849d792-0d2b-55b3-8f0a-0aa7733acb96", "text": "\u6d6a\u6f2b\u80cc\u666f\uff1a\u5c71\u91ce\u5f92\u6b65\u63a2\u9669\u573a\u666f\uff0c\u8d85\u903c\u771f\u7ed8\u753b\uff0c\u6570\u5b57\u7ed8\u753b\uff0cAnna Dittman\u7684\u827a\u672f\u4f5c\u54c1\uff0c\u53d7\u5230\u6e38"} +{"id": "6004667", "video_name": "fc0b0e6b-a748-5081-bc17-a02f897e1f07", "text": "\u6807\u5fd7\u7c7b\u578b\uff1a\u8d3e\u8d1d\u5c14\u00b7\u7d22\u79d1\u8482\u73b0\u573a\u4e50\u961f\u97f3\u4e50"} +{"id": "4002191", "video_name": "0026a9e2-2a48-5d45-a8e9-9aa2c4dd1979", "text": "\u8ba9\u56fe\u7247\u4e2d\u7684\u4eba\u7269\u52a8\u8d77\u6765\u3002"} +{"id": "2007789", "video_name": "fc326a85-c349-5ed8-be15-d82d6b1c09c7", "text": "\u6d41\u52a8\u7684\u62bd\u8c61\u751f\u62103D\u52a8\u753b\u3002Octane\u6e32\u67d3\u3002\u767d\u8272\uff0c\u9752\u8272\uff0c\u6a59\u8272\u6c14\u6c1b\u3002"} +{"id": "8002502", "video_name": "eba7af14-f6d3-510f-bb3b-dd42bbb090c2", "text": "\u623f\u5c4b\u91cc\u7684\u82cd\u8747\u5728\u819d\u76d6\u4e0a\u722c\u884c\u3002"} +{"id": "2007584", "video_name": "1ef4bc7b-3381-53a0-a6e3-c4bb2003952e", "text": "\u82b1\u56ed\u91cc\u6709\u8bb8\u591a\u52a8\u7269\u5728\u5730\u4e0a\u8df3\u821e\u3002"} +{"id": "2005039", "video_name": "bba9ac41-a46e-555a-8d1c-bab51311a0e2", "text": "\u4e00\u4e2a\u53e4\u5178\u5e0c\u814a\u96d5\u5851\uff0c\u5168\u8eab"} +{"id": "0003371", "video_name": "3c7102cb-ddb8-5f76-a684-2764e3e0193c", "text": "\u4e00\u4e2a\u8868\u6f14\u97f3\u4e50\u7684\u9b54\u672f\u5e08\uff0clofi \u8282\u594f\u3002"} +{"id": "2003237", "video_name": "65f3facd-7992-5e9f-9f57-8014775dc5c2", "text": "\u4e00\u53ea\u5c0f\u72d7\u6b63\u5728\u770b\u7740\u4e00\u53ea\u732b\uff0c\u8fd9\u53ea\u732b\u662f\u91d1\u8272\u7684\u3002"} +{"id": "6004965", "video_name": "e9748fd6-9550-5863-9d85-75416e7330f3", "text": "\u63cf\u7ed8\u975e\u6d32\u8349\u539f\u4e0a\u4e00\u7fa4\u96c4\u72ee\uff0c\u5c0f\u72ee\u5b50\u5728\u5468\u56f4\u73a9\u800d\u3002"} +{"id": "6004308", "video_name": "4803d73b-b9f4-5a6e-896b-00322e933903", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9ed1\u6697\u68a6\u5883\u7684\u7530\u91ce\u4e2d\u5954\u8dd1\u3002"} +{"id": "3005856", "video_name": "fb4f7a34-a342-526e-82aa-b86568a8bd57", "text": "\u5341\u4e03\u4e16\u7eaa\u4e54\u6cbb\u00b7\u534e\u76db\u987f\u505a\u5361\u62c9\u7279\u5c0f\u5b50\u9e64\u7acb\u529f\u3002"} +{"id": "6002235", "video_name": "f4316358-9b14-5ee0-ade2-6abb287dd867", "text": "\u718a\u770b\u5230\u4e00\u4e9b\u4ed9\u5973\u4eec carrying \u4e00\u9897\u5de8\u5927\u95ea\u4eae\u7684\u7403\uff0c\u50cf\u4ec0\u4e48\u4e1c\u897f\u3002"} +{"id": "8001946", "video_name": "546d6904-e035-5d54-9399-26f61bb3315b", "text": "\u5348\u591c\u65f6\u5206\uff0c\u4f73\u80fdRF 16mm f\uff1a2.8 STM\u955c\u5934\uff0c\u8d85\u5199\u5b9e\u6444\u5f71\uff0cunsplash\u548c\u56fd\u5bb6\u5730\u7406\u513f\u7ae5\u6742\u5fd7\u98ce\u683c\u3002"} +{"id": "2004066", "video_name": "8772d101-f1d2-5826-933f-7d9487a419cd", "text": "\u8001\u864e\u5976\u5976\u6b3a\u9a97\u5b69\u5b50\u5f00\u95e8\u7684\u884c\u4e3a"} +{"id": "5001758", "video_name": "acebefc0-c71e-5731-ad2b-977f16025652", "text": "9:16\u8d85\u6e05\u6670\u3001\u5e73\u6ed1\u7684\u8fb9\u6846\uff0c\u903c\u771f\u76848K\u3001\u590d\u6742\u7684\u7ec6\u8282\uff0c\u5e74\u8f7b\u7684\u6df1\u8272\u5934\u53d1\u5973\u58eb\u3002"} +{"id": "4003207", "video_name": "29a232c8-0afe-506a-a0fa-e1d349d353e0", "text": "\u4e00\u5f20\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u56fe\u50cf\uff0c\u5c55\u73b0\u51fa\u591a\u59ff\u591a\u5f69\u7684\u7ebf\u6761\uff0c\u4ee3\u8868\u7740\u6bcf\u4e00\u4efd\u53cb\u8c0a\u7684\u72ec\u7279\u6027\u3002"} +{"id": "2005068", "video_name": "9656317b-6a52-5ce8-8ed5-5892ef79caee", "text": "\u5730\u7403\u662f\u4e00\u4e2a\u7f8e\u4e3d\u7684\u661f\u7403\uff0c\u62e5\u6709\u4e30\u5bcc\u591a\u6837\u7684\u751f\u547d\u548c\u81ea\u7136\u73af\u5883\u3002\u5728\u5730\u7403\u4e0a\uff0c\u6709\u8bb8\u591a\u4e0d\u540c\u7684\u6587\u5316\u3001\u5b97\u6559\u548c"} +{"id": "6004614", "video_name": "db84c187-3d0b-5826-8710-60eb94244004", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u5979\u7684\u817f\u4e0a\u653e\u7f6e\u5531\u7247\u673a\uff0c\u624b\u91cc\u62ff\u7740\u9ed1\u80f6\u5531\u7247\u3002"} +{"id": "2005774", "video_name": "4bfbb108-863d-5fa1-808e-c39389af0745", "text": "\u4f60\u80fd\u5426\u5728\u5c4f\u5e55\u4e0a\u521b\u5efa\u4e00\u4e2a\u6587\u5b57\uff0c\u5199\u4e0a\u201c\u4f60\u80fd\u505a\u5230\u201d\uff1f"} +{"id": "2007512", "video_name": "24fa1835-6fef-5245-a92e-5e6f07b2b13b", "text": "\u5728\u68ee\u6797\u91cc\u4ef0\u671b\uff0c\u660e\u4eae\u7684\u6708\u4eae\u6302\u5728\u5929\u7a7a\u4e2d\uff0c\u666f\u8272\u975e\u5e38\u7f8e\u4e3d\u548c\u5b89\u9759\u3002"} +{"id": "4003093", "video_name": "0e7a9b6a-da1e-5c8b-8512-8979d5c2fa3e", "text": "\u4e00\u4e2a\u5b81\u9759\u8212\u9002\u7684\u5367\u5ba4\uff0c\u53ef\u4ee5\u8ba9\u4eba\u653e\u677e\uff0c\u5916\u9762\u5728\u4e0b\u96e8\u3002"} +{"id": "8002189", "video_name": "60a2b9ff-f936-5fe3-be25-9646cab5201e", "text": "CGI \u52a8\u753b\u5973\u5b69\u6234\u7740\u8033\u673a\uff0c\u7c89\u8272\u5934\u53d1\uff0c\u5750\u5728\u5e8a\u4e0a\u62ff\u7740\u624b\u673a\uff0c\u968f\u7740\u97f3\u4e50\u70b9\u5934\u3002"} +{"id": "2004301", "video_name": "b238bf33-0007-55dc-abf4-4fa1405cbf6d", "text": "\u8bf7\u4e3a\u6211\u521b\u5efa\u4e00\u4e2a\u4e09\u7ef4\u98ce\u683c\u7684\u6885\u8d5b\u5fb7\u65af\u5df4\u58eb\u3002"} +{"id": "5001379", "video_name": "8e0b884c-3726-5f43-8b4d-f70ab4d0e12d", "text": "Hagrid\u9a91\u7740\u5c0f\u9a6c\u53bb\u53c2\u52a0\u4ed6\u7684\u821e\u4f1a\u7684\u7535\u5f71\u622a\u56fe\u3002"} +{"id": "6002705", "video_name": "5c42d625-0f0b-55ba-9b99-6047dc8c44d6", "text": "\u74e2\u866b\u4e0e\u9ed1\u732b\u5c0f\u961f\u7b2c\u516d\u5b63\u4ee5\u65b0\u8bbe\u8ba1\u5bf9\u6297\u8389\u62c9\u8c6a\u7279\u83ab\u7279\u3002"} +{"id": "0004491", "video_name": "09dc12b7-51e5-5460-9502-22cfbedfd2ca", "text": "Source sentence: 2100\u5e74\u7684\u52a0\u62c9\u52a0\u65af\u6cb3\u8c37\u5df2\u6210\u4e3a\u4e00\u4e2a\u53d1\u8fbe\u57ce\u5e02\u3002\n\nSource sentence: I am studying Chinese language and culture at university.\nTranslation: \u6211\u5728\u5927\u5b66\u5b66\u4e60\u4e2d"} +{"id": "0003609", "video_name": "406507c2-e49f-59e3-b488-96f97f67184e", "text": "\u8fd9\u4e24\u4e2a\u4eba\u6b63\u5728\u76f8\u4e92\u4ea4\u8c08\uff0c\u76f8\u4e92\u6df1\u60c5\u5730\u6ce8\u89c6\u7740\u5bf9\u65b9\u3002"} +{"id": "7003217", "video_name": "801a66fe-21c3-56f2-98f0-f36dbe60f2f9", "text": "\u5e26\u6709\u6e85\u6cfc\u6cb9\u6f06\u7684\u9152\u676f\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u7ec6\u8282\u903c\u771f\u9ad8\u8d28\u91cf\u3002"} +{"id": "3004326", "video_name": "0534213e-8c47-5c6f-93fe-cb990e56b71c", "text": "\u9ed1\u6697\u73af\u5883\u4e2d\u7684\u50f5\u5c38\u542f\u793a\u5f55\u7684\u7535\u5f71\u7167\u7247\uff0c\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "1004491", "video_name": "533d2295-01b8-5608-80a6-92053cc4bc96", "text": "\u6709\u4e00\u5929\uff0c\u7576\u4ed6\u6b63\u5728\u63a2\u7d22\u53e2\u6797\u7684\u6df1\u8655\u6642\uff0c\u52d5\u756b\u958b\u59cb\u4e86\u3002"} +{"id": "3003582", "video_name": "054b85e3-921d-50c5-b33c-506cf16b5c93", "text": "\u5e2e\u52a9\u9700\u8981\u5e2e\u52a9\u7684\u5176\u4ed6\u7537\u4eba\u3002"} +{"id": "2005350", "video_name": "4d2d98a9-87a0-5069-815c-a090c4d7d3eb", "text": "\u591c\u5e55\u964d\u4e34\uff0c\u5b81\u9759\u7684\u6d77\u6d0b\u53d8\u5f97\u66f4\u52a0\u795e\u79d8\u548c\u7f8e\u4e3d\u3002\u6240\u6709\u7684\u6d77\u6d0b\u751f\u7269\u90fd\u9759\u9759\u5730\u8eba\u5728\u6d77\u5e95"} +{"id": "6003855", "video_name": "21b2ebbd-5dd4-5b44-a9ab-e90b669356e2", "text": "\u4e00\u540d\u5973\u5b50\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c1080p\uff0c4k\uff0c\u4e13\u4e1a\u89c6\u9891\u62cd\u6444\u3002"} +{"id": "2003896", "video_name": "75f18369-fb95-5e68-814b-c4f343c46c6c", "text": "\u4e94\u4e2a\u6781\u5176\u53ef\u6015\u7684\u9762\u8bd5\u95ee\u9898\uff0c\u597d\u83b1\u575e\u6050\u6016\u7535\u5f71\u98ce\u683c"} +{"id": "1004253", "video_name": "4eb90822-1c6c-5b6c-a5eb-ea738918de40", "text": "\u624b\u8868\u7684\u7206\u70b8\u89c6\u56fe"} +{"id": "8003687", "video_name": "0d510ffe-49da-578e-9ad6-0006018ffc2c", "text": "\u56fe\u4e66\u9986\u7684\u4e66\u67b6\uff0c\u7ea2\u3001\u84dd\u548c\u9ec4\u8272\uff0c\u7535\u5f71\u611f\uff0c\u9633\u5149\u4e0b\u6f02\u6d6e\u7684\u7c92\u5b50\uff0c\u5177\u6709\u5438\u5f15\u529b\u3002\u9644\u4ef61\u3002"} +{"id": "1005701", "video_name": "68d42a64-44fb-5135-bf74-cc26827a4254", "text": "\u6c64\u59c6\u00b7\u970d\u5170\u5fb7\u4f5c\u4e3a\u4e00\u540d\u5927\u5b66\u751f\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u53ea\u6709\u4ed6\u4e00\u4e2a\u4eba\u3002"} +{"id": "3006727", "video_name": "8bd550d8-6ad9-5881-b250-9a98d2a8c8ac", "text": "2021\u5e74\uff0c\u4e00\u540d40\u5c81\u7537\u5b50\u76ef\u7740\u5c4f\u5e55\uff0c\u624b\u6301\u4e00\u672c\u300a\u53db\u9006\u601d\u60f3\u5bb6\u300b\u7684\u4e66\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "3003514", "video_name": "556b1b51-e43d-5cd5-a10f-27b5c0f4ed54", "text": "\u79cb\u5929\u7684\u508d\u665a\uff0c\u5915\u9633\u843d\u5728\u5c71\u4e0a\u3002"} +{"id": "4002390", "video_name": "04fc55da-e9a7-5668-bd29-a4f7b90161bf", "text": "\u8d85\u7ec6\u8282\u3001\u5fae\u7b11\u3001\u4e00\u4f4d\u77ed\u53d1\u3001\u8d34\u6ee1\u8d34\u7eb8\u7684\u52a8\u6f2b\u5973\u5b69\uff0c\u4ee5\u9ed1\u767d\u98ce\u683c\u3001\u9a6c\u8d5b\u514b\u6d82\u9e26"} +{"id": "0005480", "video_name": "1b7e08a3-01f5-5a98-a0c5-6123ab337bc5", "text": "\u4eba\u4eec\u5728\u6d77\u6ee9\u4e0a\u770b\u65e5\u843d\u3002\u4fe1\u606f\uff1a\u8bf4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004409", "video_name": "40af8d7e-8bd5-5848-b75b-e5b7955985c8", "text": "\u82f9\u679c\u516c\u53f8\u7684\u7b2c\u4e00\u6b3e iPhone \u5728\u5927\u578b\u5e7f\u544a\u724c\u4e0a\u5c55\u793a\uff0c\u4eba\u4eec\u6392\u6210\u957f\u961f\u3002\u4fe1\u606f\uff1aiPhone\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3005188", "video_name": "f280d37c-10d4-58c3-a51b-d768ee49825c", "text": "\u6e38\u620f\u300a\u661f\u9645\u751f\u547d\u300b\u4e2d\u7684\u5916\u661f\u57ce\u5e02\u3002"} +{"id": "3006071", "video_name": "3e5bb7a1-3de1-5c87-9472-db0951374c99", "text": "\u968f\u7740\u5c55\u89c8\u4e4b\u591c\u7684\u4e34\u8fd1\uff0c\u795e\u79d8\u7684\u6c14\u606f\u7b3c\u7f69\u4e86Noir\u57ce\u3002"} +{"id": "0004402", "video_name": "084f42ab-16c3-5b8e-a671-3bc06e76cea9", "text": "\u795e\u79d8\u7684 1970 \u5e74\u4ee3\u827a\u672f\u6050\u6016\u955c\u5934\uff0c\u63cf\u7ed8\u4e86\u8428\u6ee1\u4eea\u5f0f\u3002"} +{"id": "1004098", "video_name": "4bd5cf83-49e2-510c-8695-d01c23308f09", "text": "\u7535\u5f71\u822c\u7684\u84dd\u773c\u775b\u4ece\u9ed1\u6697\u4e2d\u6d6e\u73b0\u3002"} +{"id": "2003093", "video_name": "b1ccace0-1e61-5a83-854e-5ccf0a91a11e", "text": "\u53e4\u8001\u7684\u53e4\u57c3\u53ca\u7206\u53d1\u6218\u4e89\u3002\u6728\u4e43\u4f0a\u5012\u584c\u5e76\u7834\u788e\u3002"} +{"id": "3003516", "video_name": "ab1c6a22-1e53-5d70-99ea-0106fdac7ab8", "text": "\u4e00\u4f4d\u957f\u7740\u9ed1\u8272\u957f\u53d1\u7684\u7537\u5b50\uff0c\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u624b\u6301\u957f\u5251\uff0c\u88ab\u654c\u4eba\u5305\u56f4\uff01\u4e2d\u56fd\u98ce\u3001\u4e2d\u56fd\u53e4\u4ee3\u98ce\u683c\u3002"} +{"id": "8003813", "video_name": "6a27fc78-0dc6-5845-a8cf-3807df01ff59", "text": "\u5fb7\u745e\u514b\u5750\u5728\u7535\u8111\u524d\u73a9\u82f1\u96c4\u8054\u76df\u3002"} +{"id": "6003364", "video_name": "8bdfd961-ca09-5f2e-a9f3-5c4a88015d57", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u8036\u7a23\u57fa\u7763\u5728\u4e00\u8f86\u7ecf\u5178\u7684\u798f\u7279\u91ce\u9a6c\u4e0a\u8fdb\u884c\u6f02\u79fb\u3002"} +{"id": "4003384", "video_name": "e50a638d-f10a-50ae-abdb-8f33dd94796f", "text": "Translation: \u5982\u679c\u5929\u4e0a\u7684\u5973\u4eba\u5728\u5730\u7403\u4e0a\u751f\u6d3b"} +{"id": "4002833", "video_name": "78e453d0-6ace-5406-b2f6-68419755b04b", "text": "\u63cf\u7ed8\u51fa\u4e4c\u9f9f\u4e13\u6ce8\u5730\u7a33\u6b65\u524d\u884c\uff0c\u8d85\u8fc7\u8fd8\u5728\u7761\u89c9\u7684\u5154\u5b50\u3002"} +{"id": "3006070", "video_name": "a3db74d1-2ebc-5c10-8162-dabfc751e558", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u623f\u95f4\u6709\u9999\u6c14\u6c1b\u56f4\uff0c\u4e00\u5207\u770b\u8d77\u6765\u90fd\u5f88\u51a5\u60f3\uff0c4k\uff0c\u52a8\u6f2b\uff0c\u9ad8\u7ec6\u8282\uff0c\u827a\u672f"} +{"id": "2004093", "video_name": "269553ce-0c0c-514f-99ed-08c31c10ea83", "text": "\u7f8e\u4e3d\u7684\u84b8\u6c7d\u670b\u514b\u98ce\u683c\uff0c\u6709\u84b8\u6c7d\u673a\u3001\u671b\u8fdc\u955c\u3001\u590d\u53e4\u670d\u88c5\u3001\u6237\u5916\u7279\u6548\u3001\u521b\u610f\u6444\u5f71\u3002"} +{"id": "7003967", "video_name": "c1798489-e305-515f-8aee-09a00ae8f6b1", "text": "1950\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u6076\u9b54\u7f8e\u4eba\u9c7c\u955c\u5934\u3002"} +{"id": "2003273", "video_name": "6e9ece93-4ec9-5d59-8758-9d513d680629", "text": "\u65b0\u95fb\u4e2d\u5fc3\u7684\u6f14\u64ad\u5ba4\uff0c\u5973\u4e3b\u6301\u4eba\u6b63\u5728\u5ff5\u65b0\u95fb\u3002"} +{"id": "6004856", "video_name": "21cc5140-4ab7-5881-bae0-51990ce8308f", "text": "\u5973\u5b69\u7528\u624b\u81c2\u3001\u817f\u3001\u80f8\u548c\u5934\u8df3\u821e\u3002"} +{"id": "2005882", "video_name": "09f88771-0013-514a-afd4-271c4cefe4bc", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u6234\u7740\u773c\u955c\u8bfb\u4e66\u3002"} +{"id": "8003654", "video_name": "fc66528a-efca-5b6d-92fe-f51330786f1d", "text": "\u4f7f\u7528\u9ed1\u8272\u7a7a\u519b\u4e00\u53f7\u978b\u521b\u9020\u7d22\u5c3c\u514b\u5c0f\u5b50\u7684\u9634\u5f71\u3002"} +{"id": "3003422", "video_name": "3b581c82-d61b-53ed-8ad9-c3e2f27981c6", "text": "\u7a7f\u8457\u767d\u8272\u9577\u88d9\u3001\u9577\u9aee\u98c4\u63da\u7684\u7f8e\u9e97\u5973\u5b50\u5728\u6afb\u82b1\u6a39\u4e0b\u6162\u6162\u5730\u6416"} +{"id": "1005979", "video_name": "6de1671f-5146-5268-81ed-cb98d196ff74", "text": "\u5723\u8bde\u8001\u4eba\uff0c\u4e00\u4f4d\u957f\u7740\u4e00\u5934\u767d\u8272\u957f\u80e1\u5b50\u3001\u7a7f\u7740\u7ea2\u8272\u8863\u670d\u7684\u6b22\u4e50\u8001\u4eba\uff0c\u6b63\u4e58\u5750\u4e00\u8f86\u7531"} +{"id": "6003834", "video_name": "07607256-5d6a-5f46-b1c3-9e9581822087", "text": "\u4e00\u4e2a\u9762\u5bf9\u7740\u955c\u5934\u7684\u5973\u5b69\uff0c\u771f\u5b9e\u573a\u666f\uff0c\u903c\u771f\u5730\u63cf\u7ed8\u3002"} +{"id": "6003517", "video_name": "2c460cd2-a140-546e-a4ad-8f5fa453839b", "text": "\u50e7\u4fa3\u5728\u6c34\u6d41\u8fb9\u6c89\u601d\u51a5\u60f3\u7684\u98ce\u666f\u52a8\u753b\uff0c\u6c34\u6ce2\u7eb9\u52a8\u6001\u5faa\u73af\uff0c\u5448\u73b0\u51fa\u98ce\u666f\u753b\u9762\u3002"} +{"id": "3003163", "video_name": "311f5736-7cc9-5429-b855-1cef50f1eda9", "text": "\u5728\u665a\u4e0a\uff0c\u4e00\u4f4d\u8eab\u7a7f\u767d\u8272\u5df4\u57fa\u65af\u5766\u670d\u88c5\u3001\u5750\u5728\u4e66\u684c\u524d\u9762\u7684\u6f02\u4eae\u5df4\u57fa\u65af\u5766\u5973\u5b69\uff0c\u9762\u5bf9"} +{"id": "2005876", "video_name": "5a281cbd-e352-5d10-90c7-0ee9b4a755c9", "text": "\u4e00\u53ea\u7cbe\u529b\u5145\u6c9b\u3001\u597d\u73a9\u7684\u72d7Rocky\uff0c\u773c\u4e2d\u95ea\u70c1\u7740\u6dd8\u6c14\u7684\u5149\u8292\uff0c\u6447\u7740\u5c3e\u5df4\u76ef"} +{"id": "7003954", "video_name": "d649bf4a-3d4a-5ed3-88c5-06da4f195895", "text": "\u7537\u5b69\u5750\u5728\u4e00\u68f5\u6811\u524d\uff0c\u771f\u5b9e\u800c\u5bcc\u6709\u7f8e\u611f\u7684\u89c6\u9891\u3002"} +{"id": "0003530", "video_name": "3f0acef5-fce2-5b07-9d90-878af239570c", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e1c\u4eac\u5854\u524d\u8bfb\u4e66\u3002\n\nSource sentence: The weather is very hot today."} +{"id": "7004233", "video_name": "869df99f-ee61-5083-9866-b0973632f34f", "text": "\u6708\u4eae\u548c\u72ee\u5b50\u7ad9\u5728\u6f02\u6d6e\u6ce1\u6ce1\u7684\u7530\u91ce\u524d\uff0c\u6bcf\u4e2a\u6ce1\u6ce1\u90fd\u5305\u542b\u7740\u4e0d\u540c\u7684\u5947\u5999\u548c\u6109\u60a6"} +{"id": "1004917", "video_name": "5aed784e-4979-5b0d-8b10-095af5bfbdc4", "text": "\u7537\u4eba\u5fae\u7b11\u7740\uff0c\u4e66\u91cc\u5192\u51fa\u9ed1\u70df\uff0cT\u6064\u65cb\u8f6c\u7740\uff0c\u624b\u5728\u98a4\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003188", "video_name": "38f76582-7987-5ee2-a8db-458c4eac6dfd", "text": "\u4e00\u4e2a\u5496\u5561\u9986\u7206\u70b8\u7684\u5e7f\u89d2\u7535\u5f71\u955c\u5934"} +{"id": "4002092", "video_name": "b90644f2-69cd-5e9e-bc6c-a6b94a383f1e", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5154\u732b\u5934\u9e70\uff0c\u52a8\u753b\uff0c\u8fd0\u52a84"} +{"id": "2006372", "video_name": "0715cd03-b77b-53b3-a418-797c1967ec17", "text": "\u4e00\u53ea\u80a5\u80d6\u7684\u8001\u864e\uff0c\u7ad9\u7740\uff0c\u6234\u7740\u58a8\u955c\u548c\u7ea2\u8272\u9a6c\u7532\uff0c\u5f00\u5fc3\u5730\u8df3\u821e\u5e76\u4e0d\u65ad\u6447\u5934\u3002"} +{"id": "0003368", "video_name": "3c5d0d90-cfd6-5801-8993-1d55699138c5", "text": "\u5927\u9762\u79ef\u7684\u573a\u5730\u56e0\u77f3\u68c9\u800c\u5173\u95ed\u3002"} +{"id": "4002113", "video_name": "2916de2f-4531-57da-acf6-3325614dbac4", "text": "\u4e61\u6751\u98ce\u683c\u7684\u95ee\u5019\u5361\u63d2\u56fe\uff0c\u5c0f\u5b69\u5b50\u5728\u5929\u7a7a\u7684\u4e91\u6735\u4e0a\u7761\u89c9\u3002"} +{"id": "4002541", "video_name": "fe25502e-5907-565a-acdb-2949d2db50a7", "text": "\u8def\u98de\u5728\u6d77\u8d3c\u8239\u4e0a\u8df3\u7740\u821e\uff0c\u8fdb\u5165\u4e86\u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7684\u7b2c\u4e94\u6863\u88c5\u626e\u3002"} +{"id": "6003602", "video_name": "20a490ff-c42f-51ef-a680-8d7d8a77cee9", "text": "\u4e00\u4f4d\u9a91\u9a6c\u7684\u7537\u5b50\u3002\u4ee5\u300a\u5e7d\u7075\u516c\u4e3b\u300b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2006141", "video_name": "8edd8099-a48c-5b47-9164-04d180194e7b", "text": "\u4f0a\u6717\u5730\u56fe\u4e0a\u7684\u4fe1\u606f\uff1aLumos\u64ad\u5ba2\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002462", "video_name": "c65a2b45-c909-53ba-a967-954bead4af14", "text": "\u8463\u4e8b\u4f1a\u8bae\uff0c\u8463\u4e8b\u4eec\u4f1a\u67e5\u770b\u663e\u793a\u516c\u53f8\u589e\u957f\u7684\u56fe\u8868\u3002"} +{"id": "0004830", "video_name": "0fe947f7-042c-5551-8e69-1b1a10c3da24", "text": "\u523b\u677f\u5370\u8c61\u4e2d\u7684\u5916\u661f\u4eba\u7ad9\u5728\u90ca\u533a\u3002"} +{"id": "1004899", "video_name": "5a7a4719-9049-586a-a949-15639e6b7d63", "text": "\u521b\u9020\u4e00\u4e2a\u63cf\u7ed8\u5b81\u9759\u4e14\u539f\u59cb\u7684\u81ea\u7136\u666f\u89c2\u7684\u5f62\u8c61\uff0c\u5176\u4e2d\u4e00\u4e2a\u4eba\u6b63\u5728\u4ece\u4e8b\u4e00\u9879\u7b80\u5355\u800c\u5584\u826f\u7684\u884c\u52a8\uff0c\u5982\u5e2e\u52a9"} +{"id": "1006039", "video_name": "6ee39bd7-5f8c-58fd-a2b7-dc6bb64f83a1", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u4e24\u4e2a\u5de8\u4eba\u5728\u884c\u8d70\u3002"} +{"id": "7002529", "video_name": "189c6cea-47af-5931-a7d5-c72e37782c2d", "text": "\u521b\u5efa\u4e00\u4e2a\u6709\u6e05\u6670\u6587\u672c\u7ec6\u8282\u7684\u4fc3\u9500\u5c55\u793a\u7684\u89c6\u89c9\u56fe\uff0c\u5438\u5f15\u987e\u5ba2\u53c2\u4e0e\u7ade\u8d5b\uff0c\u6709\u673a\u4f1a\u8d62\u5f97\u5de7\u514b\u529b\u5de5\u5382"} +{"id": "4003285", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "\u7537\u5b69\u7ad9\u5728\u6751\u5e84\u8857\u9053\u4e0a\uff0c\u662f\u4e00\u4e2a3D\u89d2\u8272\u7537\u5b69\u3002"} +{"id": "7003824", "video_name": "9b2aa355-0858-5745-8aab-d2d9ca6dd123", "text": "\u5929\u4e0a\u5c06\u4f1a\u51fa\u73b0\u8036\u7a23\u7684\u5230\u6765\u7684\u9884\u5146\uff0c\u63a5\u7740\u4eba\u5b50\u5c06\u4f1a\u4e58\u7740\u5929\u7a7a\u7684\u4e91\u5f69\u964d\u4e34\uff0c\u4f34\u968f\u7740\u5de8\u5927"} +{"id": "1003766", "video_name": "455fdb01-443a-55da-ae37-0dfcfa9e14be", "text": "\u6bd5\u4e1a\u5178\u793c\uff0c\u574e\u8036\u00b7\u5a01\u65af\u7279\uff08Kanye West\uff09\u718a\u718a\u5750\u5728\u4e00\u8f86\u52b3\u65af\u83b1\u65af\u5e7b\u5f71\u8c6a"} +{"id": "4004538", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "\u5f3a\u5927\u7684\u56fd\u738b\u5e1d\u56fd\uff0c\u8c22\u3002"} +{"id": "8002962", "video_name": "2b24b863-1000-5c45-8384-9a335fa3c088", "text": "\u6500\u5ca9\u7684\u7537\u4eba"} +{"id": "3005864", "video_name": "fc6e5614-8c04-5022-84ee-c2c22638b457", "text": "\u60f3\u8c61\u4e00\u5e45\u5b87\u5b99\u666f\u89c2\uff0c\u6709\u73a9\u800d\u7684\u732b\u54aa\u6f02\u6d6e\u5728\u661f\u661f\u3001\u884c\u661f\u548c\u4e30\u5bcc\u591a\u5f69\u7684\u661f\u4e91\u4e4b\u95f4"} +{"id": "0004659", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "\u5929\u4f7f\u5973\u5b69\u5728\u6708\u5149\u4e0b\u5f39\u594f\u5409\u4ed6\u3002"} +{"id": "4003809", "video_name": "e9b32673-43d8-51f5-85a1-9135bb63406a", "text": "\u4e61\u6751\u591c\u665a\u7684\u5c0f\u5b69"} +{"id": "3005415", "video_name": "b0abfea9-5b24-5f12-aad3-c9e4c9d7910d", "text": "\u5728\u8fd9\u79cd\u73af\u5883\u4e0b\uff0c\u4eba\u7c7b\u533b\u5b66\u7a0b\u5e8f\u9700\u8981\u5148\u8fdb\u7684\u6280\u672f\u548c\u9002\u5e94\u6027\u3002\u4ee5\u4e0b\u662f\u8fd9\u4e9b\u7a0b\u5e8f\u7684\u63cf\u8ff0\uff1a"} +{"id": "6003409", "video_name": "c9898aa8-9b68-5096-a544-fd37baccd4ef", "text": "\u57286\u79d2\u7684\u89c6\u9891\u4e2d\u521b\u5efa\u9a91\u718a\u8f7d\u5177\u3002"} +{"id": "2004570", "video_name": "91c96e80-d978-5b76-8875-fcdce87a74c7", "text": "\u65e9\u6668\u7684\u84dd\u5929\u4e91\u6735\u7f29\u5c0f\uff0c\u5149\u8292\u7167\u8000\u3002\n\nSource sentence: I am learning Chinese with the help of a tutor.\n\u6211\u5728\u6709\u5bfc\u5e08\u5e2e\u52a9"} +{"id": "1004039", "video_name": "4ad9f013-3808-59c0-91e9-a20ee8565615", "text": "\u7528\u65a7\u5934\u6325\u821e\u7740\u4e24\u4e2a\u5934\u7684\u91ce\u86ee\u6218\u58eb\u7537\u4eba"} +{"id": "0003327", "video_name": "3bac8021-c0e5-56e4-ab06-0dbbd5595fc1", "text": "\u4e00\u53f0\u5265\u83e0\u841d\u7684\u84b8\u6c7d\u673a"} +{"id": "1005745", "video_name": "69bb3466-abcb-5b34-8172-6c67f6a5afb1", "text": "\u4e24\u4e2a\u4e16\u754c\u4e4b\u95f4\u7684\u795e\u79d8\u95e8\u6237\u3002"} +{"id": "0006894", "video_name": "34e6c6a2-05e3-505b-bcf4-b7cf1e4c5718", "text": "\u533b\u751f\u5728\u5973\u6027\u5206\u5a29\u65f6\u7684\u7b2c\u4e00\u4e2a\u89c6\u89d2"} +{"id": "7002585", "video_name": "10153315-8553-5e6a-8b21-d75be865138f", "text": "\u663e\u5fae\u955c\u4e0b\u89c2\u5bdf\u6240\u6709\u89d2\u5ea6\uff0c\u8682\u8681\u5954\u8dd1\u3002"} +{"id": "8003097", "video_name": "192d4676-473f-5714-a6b3-a3c1e0264f46", "text": "\u6211\u4eec\u5185\u5fc3\u6df1\u5904\u7684\u9b54\u529b\u3002"} +{"id": "3004100", "video_name": "3b9523e0-f719-5fc4-a228-7359326814cb", "text": "\u4e00\u6bb5\u62e5\u6709\u7535\u5f71\u822c\u706f\u5149\u548c\u52a8\u611f\u7684\u8fd0\u52a8\u56fe\u5f62\u89c6\u9891\u3002"} +{"id": "0005813", "video_name": "21953fa0-f01e-536f-914b-075ae2abedd4", "text": "\u5341\u6708\u662f\u4e16\u754c\u5fc3\u7406\u5065\u5eb7\u610f\u8bc6\u6708\u3002"} +{"id": "2006615", "video_name": "61ea28b2-00c6-5232-9b88-7dca3e17a1ea", "text": "\u4e00\u672c\u539a\u539a\u7684\u795e\u5723\u91d1\u8272\u4e66\u5c55\u5f00\u4e86\uff0c\u4e00\u53ea\u767d\u9e3d\u4ece\u4e2d\u7f13\u6162\u98de\u51fa\uff0c\u7fc5\u8180\u6380\u52a8\uff0c\u7ffb\u52a8"} +{"id": "6004254", "video_name": "023d1c19-6ddd-5ee2-a208-ca1ff923fd6d", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u4eba\u5750\u5728\u7535\u8111\u524d\u5236\u4f5c\u97f3\u4e50\uff0c\u5904\u4e8elofi\u5973\u5b69\u573a\u666f\uff0c\u6234\u7740\u8033\u673a\u5750\u5728\u684c"} +{"id": "8001709", "video_name": "f5cf9896-d862-5388-bcc4-ef4ff28673bb", "text": "\u5728\u6d77\u4e0a\u7684\u7f51\u7403\u9009\u624b\u6709\u7231\u3002"} +{"id": "4003132", "video_name": "5fe67657-a856-5801-a996-e8aca35b3fee", "text": "\u516c\u5bd3\u91cc\u6d41\u52a8\u7a97\u5e18\u7684\u62cd\u7acb\u5f97\u7167\u7247"} +{"id": "3005112", "video_name": "95fac385-b5a5-5b88-871a-753b9a577e5e", "text": "1\u4e2a16\u5c81\u7684\u4e66\u5446\u5b50\u7537\u5b69\uff0c\u7a7f\u7740\u9ad8\u8d28\u91cf\u903c\u771f\u768416\u5c81\u6821\u670d\uff0c\u7cfb\u7740\u9886\u5e26\uff0c\u62cd\u6444\u4e86\u5b66\u6821\u7167\u7247"} +{"id": "7003762", "video_name": "62ead3ee-da58-5e29-a2d3-f0ddc902c1d3", "text": "\u5f53\u4ed6\u4eec\u63a2\u7d22\u6c89\u8239\u65f6\uff0c\u4ed6\u4eec\u53d1\u73b0\u4e86\u53e4\u8001\u7684\u6587\u7269\uff0c\u8bb2\u8ff0\u4e86\u5f88\u4e45\u4ee5\u524d\u7684\u6545\u4e8b\u3002\u670b\u53cb\u4eec\u60ca\u53f9\u4e8e\u8fd9\u4e9b"} +{"id": "1006916", "video_name": "7e7081f1-bbbf-59f5-9da8-5d40d40691d7", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6cb3\u5cb8\u666f\u8272\uff0c\u5728\u90a3\u91cc\u6811\u6728\u968f\u98ce\u6447\u66f3\uff0c\u81ea\u7136\u7ec6\u81f4\u3002\n\nSource sentence: I am looking forward to our meeting next week to discuss the project"} +{"id": "8002639", "video_name": "457861e0-502c-53c7-87b0-0452b141459f", "text": "\u6559\u6388X\u548cX\u6218\u961f\u5728\u8d4c\u573a\u5916\u906d\u9047\u4e00\u540d\u6234\u8fde\u5e3d\u886b\u7684\u7537\u5b50\u3002"} +{"id": "3006505", "video_name": "aec94ba3-2601-5858-b7e0-b373b61adf76", "text": "\u6ce2\u591a\u9ece\u5404\u52a8\u6f2b\u4eba\u7269\u7a7f\u7740\u6d77\u519b\u8fd0\u52a8\u88c5\u5728\u591c\u665a\u8dd1\u5728\u516c\u8def\u4e0a\uff0c\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "0006082", "video_name": "265ff94f-396b-5156-805e-05babc1e1eb1", "text": "\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u540d\u4e3a\u6851\u8fbe\u666e\u5c14\uff0c\u5468\u56f4\u662f\u90c1\u90c1\u8471\u8471\u7684\u7530\u91ce\u548c\u5c0f\u8305\u5c4b\u3002"} +{"id": "4002047", "video_name": "a7ba7b45-7804-5439-af06-eb6cf3a5e5b6", "text": "\u4e00\u679a\u706b\u7bad\u70df\u82b1\u5347\u7a7a\u5e76\u53d8\u6210\u771f\u6b63\u7684\u706b\u7bad\u7684\u52a8\u753b\u3002"} +{"id": "4002662", "video_name": "3fa5ea0e-5549-5535-b3ef-61907de1cbb1", "text": "\u706b\u661f\u4e0a\u843d\u65e5\u65f6\uff0c\u5929\u7a7a\u4e2d\u53ef\u89c1\u5916\u661f\u4eba\u5c55\u793a\u5730\u7403\u30024K"} +{"id": "8001117", "video_name": "66a731a8-7449-5dae-9e3f-80e47ac9589c", "text": "\u8584\u819c\u4e0e\u6c14\u6ce1\u65cb\u8f6c\u7684\u8fd1\u666f\u4ea4\u4e92\u4f5c\u7528"} +{"id": "8001305", "video_name": "f5cbd8b1-4262-52da-98bc-3694270f7684", "text": "\u4e00\u4e2a\u5e26\u6709\u767d\u65e5\u68a6\u610f\u4e49\u7684\u6280\u80fd\u56fe\u6807"} +{"id": "4004953", "video_name": "008334fe-fe64-5fd0-a691-8595f22487dd", "text": "\u6709\u4e00\u4e2a\u6545\u4e8b\uff0c\u53d1\u751f\u5728Quezon City\u7684\u4e2d\u5fc3\u3002"} +{"id": "7004951", "video_name": "745f83e0-62b4-5b0d-a5e1-2fb304f94efd", "text": "\u767d\u5c4f\u7537\u5b69\u4eec\u6765\u81ea\u963f\u66fc\uff0c\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u3002"} +{"id": "6004618", "video_name": "d7b004e6-b6a1-54c1-bcae-8e05c30bc489", "text": "\u5468\u4e09\u4e9a\u5f53\u65af\u5168\u8eab\u526a\u8d34\u753b\uff0c4k\uff0c3D\u3002"} +{"id": "2007538", "video_name": "50d94a73-b760-50c8-9ae9-6f79a907b8d2", "text": "\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u5973\u4eba\u548c\u9a6c\u5728\u8bad\u7ec3\uff0c\u51ac\u5b63\u68ee\u6797\u573a\u666f\uff0c\u6162\u52a8\u6001\u7535\u5f71\u6548\u679c\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004668", "video_name": "0d008084-0109-5c9b-98c0-59e072b6c743", "text": "\u521b\u9020\u51fa\u8fd0\u52a8\u4e2d\u7684\u5927\u5730\u548c\u5929\u7a7a\u3002"} +{"id": "4003762", "video_name": "badea9d4-8898-5197-88b5-4e3441714423", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u610f\u5927\u5229\u73b0\u4ee3\u5973\u5b69\u7a7f\u7740\u665a\u793c\u670d\uff0c\u5728\u9ad8\u7ea7\u9910\u5385\u91cc\u4eab\u7528\u610f\u5927\u5229\u9762\u6761\u3002\u684c\u5b50\u4e0a\u94fa\u7740\u767d"} +{"id": "1005213", "video_name": "5ffde02b-5a98-5744-b96f-c2c13a8eea51", "text": "\u57ce\u5e02\u88ab\u6df9\u6ca1\uff0c\u5145\u6ee1\u9634\u90c1\u7684\u6c14\u606f\uff0c8K\u56fe\u50cf\u5411\u4e0b\u79fb\u52a8\u3002"} +{"id": "0005154", "video_name": "15b45765-8eef-5b77-903f-569b1e2e2213", "text": "\u4e00\u4e2a\u5728\u96e8\u5929\u7684\u53ef\u6015\u7684\u5927\u53a6"} +{"id": "5001299", "video_name": "3e8f1e6b-db1b-56d9-8b61-488d9af65b46", "text": "\u4e00\u4e2a\u5438\u8840\u9b3c\u57ce\u5821\uff0c\u903c\u771f\u76848K\u753b\u9762\uff0c\u7535\u5f71\u822c\u7684\u5149\u5f71\u6548\u679c\uff0c\u9ed1\u6697\u7684\u73af\u5883\uff0c\u68ee\u6797\uff0c\u8ff7\u96fe\u3002"} +{"id": "0003559", "video_name": "3f9189ec-2338-5b7a-8d04-392802726bed", "text": "Translation: \u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u62e5\u6709\u9002\u5f53\u7a33\u5b9a\u7684\u6563\u53d1\u3002"} +{"id": "1006547", "video_name": "77f0e5d8-ff2d-54bf-b70f-e57c26e6d6d7", "text": "\u4e00\u53ea\u72fc\u5728\u6469\u6258\u8f66\u65c1\u5954\u8dd1\u3002"} +{"id": "6003576", "video_name": "2639d2c4-fae9-5b99-afcb-6ab70ae09ee3", "text": "\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u4ee5\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u5448\u73b0\uff0c\u7a7f\u7740\u7c89\u8272\u77ed\u88e4\u548c\u767d\u8272\u886c\u886b\u3002"} +{"id": "2006452", "video_name": "fbd05695-369e-5259-b3f1-45870f864964", "text": "ISRO\u7684\u6708\u7403\u7740\u9646\u5668\u5728\u6708\u7403\u4e0a\uff0c\u6708\u7403\u653e\u7f6e\u5728\u5370\u5ea6\u6559\u795e\u7947\u6e7f\u5a46\u4e4b\u4e0a\u3002"} +{"id": "6004497", "video_name": "c52a75f7-713c-5b2e-aa95-e71ed5017e43", "text": "\u5f17\u5170\u80af\u65af\u5766\u9a91\u7740\u81ea\u884c\u8f66\u4ece\u9493\u9c7c\u7801\u5934\u8df3\u8fdb\u5927\u6d77\u4e2d\uff0c\u5929\u7a7a\u662f\u7ea2\u8272\u7684\uff0c\u5916\u9762\u5f88\u6697\u3002\u5f53"} +{"id": "1006552", "video_name": "78041f14-aa3e-5bdf-a84b-66b5505f3dda", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u6b63\u5728\u884c\u8d70\u7a7f\u8fc7\u4e00\u4e2a\u661f\u7403\u3002"} +{"id": "6003642", "video_name": "69d66a12-d22a-5a8f-86b2-e301fde00a5d", "text": "\u4e00\u4f4d\u7559\u7740\u80e1\u5b50\u548c\u5c0f\u80e1\u5b50\u7684\u7537\u5b50\u5728\u4ed6\u7684\u53a8\u623f\u91cc\u6302\u65ad\u65cb\u8f6c\u5f0f\u7535\u8bdd\u7684\u753b\u9762\u51fa\u73b0\u572820\u4e16\u7eaa70\u5e74\u4ee3\u3002"} +{"id": "3004021", "video_name": "b06127e8-6dc5-59b6-8257-9dd500cbe704", "text": "\u521b\u9020\u4e00\u4e2a\u795e\u7ecf\u5143\u7684\u56fe\u50cf\uff0c\u5b83\u6b63\u5728\u63a5\u6536\u7535\u8109\u51b2\uff0c\u79d1\u5b66\u5904\u7406\u8ba9\u5176\u53d1\u5149\u3002\u80cc\u666f\u5e94\u8be5\u662f\u9ed1\u8272\u7684\uff0c\u7167\u660e\u5e94\u8be5\u7ed9"} +{"id": "8002574", "video_name": "f35cfdc8-c94b-57dc-a90f-841752e8f045", "text": "\u63cf\u8ff0\u4e00\u4e2a\u8d2a\u5a6a\u7684\u4eba\u53cd\u601d\u4ed6\u7684\u884c\u52a8\u5e76\u5b66\u5230\u6709\u5173\u5206\u4eab\u548c\u5584\u826f\u91cd\u8981\u6027\u7684\u5b9d\u8d35\u6559\u8bad\u7684\u65f6\u523b\u3002\u53ef\u4ee5\u4f7f\u7528\u8fd9\u4e9b\u63d0\u793a\u6765"} +{"id": "3006902", "video_name": "3413996e-ecd3-50d3-b177-74f24508b5ba", "text": "\u9ec4\u91d1\u5973\u738b\u5728\u672a\u6765\u4e3b\u4e49\u5927\u5385\u7684\u738b\u5ea7\u4e0a\u3002"} +{"id": "1004250", "video_name": "4eaa213f-289b-56a8-9078-ccb49b7f97f2", "text": "\u6751\u5e84\u56e0\u5176\u4e30\u5bcc\u591a\u5f69\u7684\u5929\u7a7a\u548c\u5f69\u8679\u753b\u5bb6\u7684\u53cb\u5584\u800c\u95fb\u540d\u3002"} +{"id": "6003825", "video_name": "a9d9d686-6a47-52e7-ae87-5cd8bd6ca6e5", "text": "\u5c55\u793a\u4e00\u4e2a\u8212\u9002\u7684\u5ba2\u5385\uff0c\u732b\u5728\u9760\u57ab\u4e0a\u5e73\u9759\u5730\u7761\u89c9\uff0c\u72d7\u8eba\u5728\u58c1\u7089\u65c1\u8fb9\u3002"} +{"id": "2003203", "video_name": "35c6a6dc-8845-597c-968e-c9458903a5d8", "text": "\u6d77\u574a\u4e3b\u7684\u753b\u9762\u6a21\u7cca\u3001\u9897\u7c92\u611f\u5f3a\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u5177\u67091970\u5e74\u4ee3\u963f\u83b1\u676d\u5fb7\u7f57"} +{"id": "7004048", "video_name": "21ab105f-9ebf-56ae-8036-f125f0227b21", "text": "\u628a\u8461\u8404\u6458\u4e0b\u6765\uff0c\u8ba9\u5b83\u4eec\u66f4\u52a0\u6e05\u6670\u3002"} +{"id": "2007485", "video_name": "10eebfa7-4009-52ab-a233-c466f94eda09", "text": "\u5236\u4f5c\u4e00\u4e2a\u5361\u901a\u5f62\u8c61\uff0c\u540d\u4e3a\u201cTeetu\u201d\u7684\u5c0f\u9f9f\u3002Teetu\u4f4f\u5728\u4e00\u4e2a\u7f8e\u4e3d\u800c\u5145\u6ee1\u6d3b\u529b\u7684\u6c60\u5858\u4e2d\uff0c\u6c34\u4e0b\u5145\u6ee1\u795e"} +{"id": "3003390", "video_name": "0a592afc-64ea-5421-ae59-189c8a7e9e1e", "text": "\u68ee\u6797\u4e2d\u7684\u5fa9\u53e4\u738b\u570b\u5faa\u74b0\u79fb\u52d530\u79d2\u3002"} +{"id": "4004214", "video_name": "084c1232-fc35-59cd-956e-146fb2024050", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u7f8e\u4e3d\u5973\u6027\u4fa7\u9762\u5411\u7740\u6bd4\u5f17\u5229\u5c71\u671b\u53bb\u3002\u5979\u7684\u8138\u4e0a\u795e\u601d\u604d\u60da\uff0c\u601d\u8003\u5979\u4eba\u751f\u7684\u4e0b"} +{"id": "2003269", "video_name": "5d83a70e-dcf8-50b4-8fc2-7b433cca5f1b", "text": "\u6570\u5343\u540d\u6124\u6012\u7684\u5b69\u5b50\u5c16\u53eb\u7740\uff0c\u6012\u6c14\u51b2\u51b2\u5730\u5411\u76f8\u673a\u5954\u8dd1\u3002"} +{"id": "3004065", "video_name": "8d3b21ab-f106-5a56-a7ae-8a455548112f", "text": "\u5728\u4e00\u4e2a\u6811\u6728\u8302\u5bc6\u7684\u5730\u65b9\u753b\u4e00\u4e2a\u9760\u5728\u4e00\u68f5\u6811\u4e0a\u7684\u7537\u4eba\u3002"} +{"id": "0004239", "video_name": "059b9e48-fe3f-5b68-b090-2f3cd4f3f6d5", "text": "\u4e00\u5e45\u5b81\u9759\u3001\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u573a\u666f\uff0c\u5bb6\u5ead\u5728\u6c34\u4e2d\u73a9\u800d\u3002"} +{"id": "8002382", "video_name": "4c035779-f02a-5599-a338-0fb4960ce63e", "text": "\u4e00\u68f5\u88c5\u9970\u7740\u5723\u8bde\u6811\u548c\u793c\u7269\u7684\u6811\uff0c\u5468\u56f4\u6709\u6f02\u6d6e\u7684\u8721\u70db\u3001\u9c9c\u8273\u7684\u989c\u8272\u3001"} +{"id": "2004353", "video_name": "07dc519e-cbbb-52ec-941d-7340605ab7cb", "text": "1975\u5e74\u5728\u7ebd\u7ea6\u54c8\u83b1\u59c6\u533a\u7684\u8857\u5934\uff0c\u4e00\u4f4d\u76f8\u5f53\u5438\u5f15\u4eba\u7684\u975e\u88d4\u7f8e\u56fd\u5c11\u5973\u7a7f\u7740\u7d27\u8eab\u725b\u4ed4\u88e4\u3001"} +{"id": "1005603", "video_name": "6710d808-0295-5e8c-bf92-b1ae8aefc696", "text": "\u5feb\u4e50\u7684\u6234\u773c\u955c\u7684\u957f\u9888\u9e7f\uff0c\u5728\u6c34\u6ce5\u5730\u4e0a\u62c9\u5c0f\u63d0\u7434\u3002\u6708\u4eae\u3002"} +{"id": "2007879", "video_name": "1da3fa16-8465-5deb-bcc2-5ed6a6d1b668", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5e72\u71e5\u6c99\u6f20\u4e2d\uff0c\u6709\u4e00\u68f5\u5b64\u72ec\u7684\u4ed9\u4eba\u638c\u53eb\u505a\u65af\u6d3e\u514b\u3002\u65af\u6d3e\u514b\u5168\u8eab\u957f"} +{"id": "6002631", "video_name": "d5ee6228-5792-53cd-bf10-2e59762747e9", "text": "\u4e00\u6761\u6b7b\u9c7c\u8eba\u5728\u6d77\u5cb8\u8fb9\u7684\u5730\u4e0a\uff0c\u6709\u866b\u5b50\u5728\u5543\u5b83\u7684\u5934\u90e8\u3002"} +{"id": "2005770", "video_name": "fbf25562-859b-56a1-afd3-188dbab9aa5a", "text": "50\u5c81\u76842Pac\u7ad9\u5728\u539f\u5730\uff0c\u51dd\u89c6\u7740\u955c\u5934\u3002"} +{"id": "4003588", "video_name": "fff44e7a-58ad-5fda-81da-06a7352b917d", "text": "\u9885\u9aa8\u53d8\u6210\u7537\u6027\u4eba\u8138\uff0c\u80cc\u666f\u662f\u8ff7\u5e7b\u7684\u3002"} +{"id": "4004512", "video_name": "2d09c107-7e37-5a36-8f08-12e31eaa8a77", "text": "\u4e00\u53ea\u6bcd\u9e7f\u6b63\u5728\u71c3\u70e7\u7684\u68ee\u6797\u4e2d\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "0005218", "video_name": "16cfbf67-896a-5b06-a7a3-e6b69f58e954", "text": "\u5ea7\u5934\u9cb8\u8dc3\u8fc7\u5927\u6d0b"} +{"id": "6002449", "video_name": "eaa56762-8414-5c32-91cd-25d5cac9ef5b", "text": "\u4e00\u53ea\u5927\u767d\u7070\u76f8\u95f4\u7684\u732b\u649e\u5012\u4e86\u68cb\u76d8\u4e0a\u7684\u4e00\u4e2a\u68cb\u5b50\u3002"} +{"id": "4004062", "video_name": "08a7f181-f435-56fc-b748-67f8c124fd7e", "text": "\u9ec4\u8272\u53f6\u5b50\u50cf\u8865\u4e01\u4e00\u6837\u8d34\u5728\u5e06\u5e03\u88e4\u4e0a\u3002"} +{"id": "7004122", "video_name": "2374e569-5924-54ee-9019-b4cae00ead04", "text": "\u4e00\u4e2a\u73bb\u7483\u7f50\u5b50\u653e\u5728\u53a8\u623f\u684c\u5b50\u4e0a\uff0c\u91cc\u9762\u88c5\u4e86\u4e00\u534a\u7684\u756a\u8304\u9171\u3002\u684c\u5b50\u4e0a\u6563\u843d\u7740\u756a\u8304\u300232"} +{"id": "8003988", "video_name": "4edc80f1-9cc1-5a7f-a64f-b19b40c5a04f", "text": "\u5438\u5f15\u4eba\u7684\u795e\u79d8\u5c01\u9762\u56fe\u7247\u9002\u7528\u4e8e\u82f1\u56fd\u3002"} +{"id": "4003191", "video_name": "96029dff-7274-5c31-b481-32008a01699d", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u8fea\u58eb\u5c3c\u5361\u901a\u6a02\u5712\u5bb6"} +{"id": "3005341", "video_name": "c681d469-0699-593e-9ec0-d826b4e18729", "text": "\u514b\u91cc\u5e0c\u7eb3\u8eab\u4e0a\u6563\u53d1\u7740\u795e\u5723\u7684\u5149\u8f89\uff0c\u7ad9\u5728\u963f\u5468\u90a3\u8eab\u65c1\uff0c\u4ed6\u7684\u624b\u52bf\u6307\u5411\u81ea\u5df1\u7684\u5fc3\u7075\uff0c"} +{"id": "3006757", "video_name": "4a3e9d63-5920-5456-afbe-7a4e14831b9f", "text": "\u533b\u9662\u91cc\u5de5\u4f5c\u7684\u62a4\u58eb\u7684\u4e13\u4e1a\u7167\u7247\uff0c\u4f20\u9012\u6162\u6027\u75c5\u7684\u4fe1\u606f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006897", "video_name": "34fa9dcd-370a-51a2-a6c4-6cb0dede2051", "text": "\u70df\u96fe\u4ece\u7a97\u6237\u5192\u51fa\uff0c\u5efa\u7b51\u7269\u7740\u706b\uff0c\u6d88\u9632\u5458\u55b7\u6c34\uff0c\u4ee5\u903c\u771f\u76848K\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1006556", "video_name": "7818713f-c886-557f-a7c6-c92580256585", "text": "\u8718\u86db\u72b9\u8c6b\u4e0d\u51b3\u5730\u901a\u8fc7\u63e1\u624b\u6216\u70b9\u5934\u540c\u610f\u8682\u8681\u7684\u63d0\u8bae\u3002"} +{"id": "7004771", "video_name": "879f0f51-9ed7-5eb3-bb36-4332bc13ee0f", "text": "\u5728\u534a\u591c\u4e2d\u4e00\u4e2a\u8001\u65e7\u7684\u6050\u6016\u4e3b\u9898\u57ce\u5821\uff0c\u6708\u4eae\u7167\u8000\u7740\uff0c\u57ce\u5821\u5468\u56f4\u7684\u6811\u6797\u5728\u6447\u6643\u3002"} +{"id": "1003491", "video_name": "40b1c725-f6dc-5561-b053-5dffaf066fd6", "text": "\u8d70\u5eca\u91cc\u88c5\u6ee1\u4e86\u9e1f\u7b3c\uff0c\u660f\u6697\u3001\u6c1b\u56f4\u6d53\u90c1\uff0c\u6708\u5149\u7167\u5c04\u4e0b\uff0c\u6709\u4e2a\u5973\u5b69\u3002"} +{"id": "2004614", "video_name": "01932015-b47a-5f9d-914b-c85961dbff46", "text": "\u4eba\u4eec\u53ef\u80fd\u80cc\u7740\u80cc\u5305\u72c2\u5954\uff0c\u62fc\u547d\u5bfb\u627e\u5b89\u5168\u7684\u5730\u65b9\u3002\u8fd9\u53ef\u80fd\u5305\u62ec\u7a7f\u8d8a\u8352\u91ce\u3001\u514b\u670d\u969c\u788d\u6216"} +{"id": "0003000", "video_name": "356b3856-9bce-5857-9e2c-8ec23607bfe1", "text": "\u89c6\u9891\u4ee5\u4e00\u5927\u56e2\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u5728\u5c4f\u5e55\u4e0a\u65cb\u8f6c\u5f00\u59cb\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u52a8\u6001\u7684\u795e\u5947\u6548\u679c\u3002\u80cc\u666f\u95ea\u8000"} +{"id": "3003939", "video_name": "7a30e66c-5591-52a3-826e-b9476106763a", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u5305\u62ec\u7985\u5b97\u77f3\u3001\u7af9\u5236\u55b7\u6cc9\u3001\u7c89\u8272\u6c34\u7597\u8721\u70db\u3001\u82b1\u6735\u548c\u5468\u56f4\u7684\u6c34\uff0c\u4f7f\u7528"} +{"id": "2004293", "video_name": "c3e66799-e22c-5425-ac33-cb4d889c5f41", "text": "\u5a5a\u793c\u5927\u5385\u5ba2\u4eba\u6ee1\u5ea7\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007546", "video_name": "01bc53fe-8724-5c2f-8f61-f2fab4db3c6a", "text": "\u4e00\u4f4d\u53e4\u5e0c\u814a\u5e74\u8f7b\u5973\u5b50\uff0c\u91d1\u53d1\u98d8\u9038\uff0c\u7ad9\u5728\u96c5\u5178\u8857\u5934\uff0c\u770b\u8d77\u6765\u975e\u5e38\u5929\u771f\u3001\u6f02\u4eae\u3002"} +{"id": "7003414", "video_name": "46bc18d4-31ad-5633-9bb9-726127a8503b", "text": "\u6124\u6012\u7684\u7537\u5b50\u5f20\u5f00\u5634\u5df4\u56b7\u53eb\uff0c\u5e76\u5728\u73b0\u4ee3\u9769\u547d\u4e2d\u6295\u63b7\u6c7d\u6cb9\u5f39\uff0c\u4eba\u4eec\u7a7f\u7740\u73b0\u4ee3\u65f6\u5c1a\u7684\u670d\u88c5"} +{"id": "0004723", "video_name": "0e0dcccb-b74f-543f-9f02-1561ec2a63f0", "text": "\u521b\u5efa\u8fd9\u4e2a\u89c6\u9891\u526a\u8f91\u7684\u6700\u4f73\u7248\u672c\u3002"} +{"id": "6003236", "video_name": "f08dad47-5263-5d54-9b79-1b0fc41f10ea", "text": "\u8759\u8760\u4fa0\u5728\u68b5\u8482\u5188\u57ce\u5e02\u65c5\u6e38\u3002"} +{"id": "8003797", "video_name": "1a35ca6b-94fc-5612-916e-994e120ea890", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u5728\u8349\u539f\u4e0a\u884c\u8d70\u3002"} +{"id": "3006055", "video_name": "a9432a13-08a7-5d68-bb9a-b259a7a61be0", "text": "\u5973\u5b69\u6b63\u5728\u8bb2\u6545\u4e8b\uff0c\u624b\u52a8\u8138\u52a8\u3002"} +{"id": "7004059", "video_name": "10854226-3e04-52ca-8ecf-7dff6a3d1dda", "text": "\u8d85\u903c\u771f\u3001\u7167\u7247\u822c\u903c\u771f\u3001\u4e13\u4e1a\u5de5\u4f5c\u4eba\u5458\u3001\u4e92\u52a8\u3001\u529e\u516c\u5ba4\u3001\u660e\u4eae\u7684\u623f\u95f4\u3002"} +{"id": "3006800", "video_name": "6aa62e4e-6917-53d8-ad88-b28e17785494", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u84dd\u773c\u775b\u7728\u7728\uff0c\u767d\u8272\u7684\u732b\u548c\u5979\u7684\u5c0f\u732b\u5750\u5728\u5979\u7684\u524d\u9762\u4e92\u76f8\u7231\u629a\uff0c"} +{"id": "1006260", "video_name": "72ae3bb6-107e-551e-9df1-cd45cebc52ce", "text": "\u65e5\u8bb0\u5b9d\u5b9d\u5f00\u653e\u4e16\u754c\u6e38\u620f\u7684\u56fe\u7247\uff0c\u4f46\u4f7f\u7528\u4e0e\u7535\u5f71\u76f8\u540c\u7684\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "1003267", "video_name": "3c17de89-3914-5855-b2c6-c1db988a4903", "text": "\u8be5\u5f71\u50cf\u5de7\u5999\u5730\u8fd0\u7528\u5f71\u5b50\u548c\u5149\u7ebf\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u7535\u5f71\u822c\u7684\u6c1b\u56f4\uff0c\u4ee4\u4eba\u611f\u53d7\u5230\u795e\u79d8\u548c\u9b45\u529b"} +{"id": "2006147", "video_name": "8954a996-9669-5295-a07d-1729f5a4815d", "text": "\u673a\u5668\u4eba\u5728\u6708\u7403\u4e0a\u5efa\u9020\u57fa\u5730\u3002"} +{"id": "4002876", "video_name": "f34e7f8f-1392-5900-bc59-b15de97fa23d", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u7684\u8352\u5e9f\u5496\u5561\u9986\u5916\u660f\u660f\u6b32\u7761\u3002"} +{"id": "3003285", "video_name": "7ff4c422-c02f-5009-b15b-ec426b1dcb37", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5c06\u9886\uff0c\u80cc\u540e\u662f\u4e00\u4e2a\u5de8\u5927\u7684\u7fe0\u7eff\u8272\u7684\u6e56\u3002"} +{"id": "2004646", "video_name": "80773fbc-61c6-51ff-8f16-1eb727a7d107", "text": "from above, glowing with city lights.\n\n\u5c0f\u578b\u592a\u7a7a\u8239\u5728\u591c\u665a\u7f13\u6162\u964d\u843d\u5230\u5730\u7403\u3002\u4ece\u4e0a\u65b9\u53ef\u4ee5\u770b\u5230\u5730\u7403\uff0c\u57ce\u5e02\u7684\u706f\u5149"} +{"id": "2004899", "video_name": "ac01c2da-d63a-5d68-9b4a-8f16730913e7", "text": "\u4e00\u5f20\u591c\u665a\u6d77\u6ee9\u7684\u7167\u7247\uff0c\u8fdc\u5904\u6d77\u6d6a\u62cd\u6253\u6d77\u5cb8\u7ebf\uff0c\u4e2d\u95f4\u8ddd\u79bb\u6709\u4e00\u53ea\u751f\u7269\u5728\u6c99\u6ee9\u4e0a\u6316\u6398\uff0c"} +{"id": "7002058", "video_name": "9abc9a02-57f1-5694-8b7c-684421652004", "text": "\u6c64\u59c6\u00b7\u5e0c\u5fb7\u52d2\u65af\u987f\u626e\u6f14\u7684\u6d1b\u57fa\u548c\u514b\u91cc\u65af\u00b7\u6d77\u59c6\u65af\u6c83\u65af\u626e\u6f14\u7684\u96f7\u795e\u7a7f"} +{"id": "6000005", "video_name": "6be436c8-b0f2-5dfa-b31f-1cdc1856a978", "text": "\u5236\u4f5c\u4e00\u6bb5\u9ed1\u767d\u9a7e\u8f66\u89c6\u9891\uff0c\u65f6\u957f\u4e3a1\u5206\u949f\u3002"} +{"id": "0006697", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "\u751f\u6210\u4e00\u4e2a\u8d85\u903c\u771f\u7684\u9ad8\u6e05\u753b\u9762\u5c55\u793a\u6218\u5f79\u89c4\u6a21\u548c\u5f3a\u5ea6\uff0c\u5448\u73b0\u9ad8\u52a0\u7f8e\u62c9\u6218\u5f79\u7684\u771f\u5b9e\u573a\u666f\u3002"} +{"id": "7002632", "video_name": "9deb1f40-5b1b-50ab-abe8-f6cd73c67f1c", "text": "\u6c34\u7ba1\u5de5\u4eba\u8d70\u5230\u987e\u5ba2\u5bb6\u95e8\u53e3\uff0c\u987e\u5ba2\u7ad9\u5728\u524d\u5eca\u5fae\u7b11\u7740\u8fce\u63a5\u6c34\u7ba1\u5de5\u4eba\u3002"} +{"id": "0006510", "video_name": "2dca828f-02ac-5d03-b140-e1c8633af8bb", "text": "\u963f\u80b2\u5420\u9640\u5728\u70ed\u5e26\u5c9b\u5c7f\u4e0a\u3002\u4fe1\u606f\uff1aP\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005607", "video_name": "4316ab0d-23f9-54e8-aa41-d258cd2198c3", "text": "\u4e00\u4f4d\u53d7\u60ca\u7684\u79d1\u5b66\u5bb6\u6b63\u5728\u5220\u9664\u4ed6\u4eec\u7684\u6570\u5b57\u75d5\u8ff9\u3002"} +{"id": "3005063", "video_name": "ada9b77e-1cfc-53a0-8af8-b102bbea84bb", "text": "\u5728\u6e38\u620f\u684c\u4e0a\u7761\u89c9\uff0c\u6795\u7740\u952e\u76d8\u3002"} +{"id": "8003656", "video_name": "ece59a35-1fc6-5598-bd81-4ce65296bdaa", "text": "\u5728\u591c\u5e97\u91cc\u8df3\u821e\u7684\u6027\u611f\u5973\u5b69\u3002\u771f\u5b9e\u3002"} +{"id": "0003462", "video_name": "3df55364-b0ad-5439-afb8-044d700ca5c3", "text": "\u5510\u671d\u7684\u4e00\u4e2a\u4e2d\u56fd\u5973\u5b69\uff0c\u7a7f\u8863\u955c\u3002\u7a97\u6237\uff0c\u6708\u4eae\u3002"} +{"id": "3006536", "video_name": "8765723d-b07d-509e-bd1e-db0be1ca17b9", "text": "\u82f1\u56fd\u768466\u578b\u67f4\u6cb9\u706b\u8f66\u4ee5\u9ad8\u901f\u98de\u9a70\u901a\u8fc7\u9053\u5229\u4ec0\u3002"} +{"id": "0004449", "video_name": "094b124e-ab0a-5233-a469-44a467532381", "text": "\u753b\u4e00\u95f4\u62e5\u6709\u7f8e\u4e3d\u7684\u51e1\u5c14\u8d5b\u65f6\u671f\u540a\u706f\u7684\u5927\u5385\u3002\u7136\u540e\u4e00\u4e2a\u5973\u5b69\u51fa\u73b0\u5728\u8def\u6613\u5341\u516d\u7684\u623f\u95f4\u91cc\uff0c\u7a7f\u7740"} +{"id": "3006066", "video_name": "444d730a-12d9-53a6-9004-19fede10ccf0", "text": "\u6709\u4e2a\u4eba\u5728\u753b\u8499\u5a1c\u4e3d\u838e\uff0c\u5934\u53d1\u4e0a\u63d2\u7740\u94c5\u7b14\uff0c\u7ed3\u679c\u628a\u989c\u6599\u6d12\u51fa\u6765\u4e86\u3002"} +{"id": "1006364", "video_name": "74944acb-7be0-5167-a904-e803ebaebbb0", "text": "\u7334\u5b50\u548c\u5b83\u7684\u4e1b\u6797\u670b\u53cb\u5728\u5b89\u9759\u7684\u591c\u665a\u56f4\u7740\u7bdd\u706b\u805a\u96c6\u3002"} +{"id": "4002610", "video_name": "3a6a0cf2-a3c0-5dcf-9eed-9fcca58c8609", "text": "\u751f\u6210\u4e00\u4e2a\u7537\u5b69\u7a7f\u7740\u76f8\u540c\u670d\u88c5\u5728\u4e61\u6751\u80cc\u666f\u4e0b\u8e22\u8db3\u7403\u7684\u89c6\u9891\u3002"} +{"id": "2006576", "video_name": "f5dc1e7f-7b8b-5cd7-9a83-472d7271d465", "text": "\u7ea6\u8fbe\u8de8\u8d8a\u4e0d\u53ef\u601d\u8bae\u7684\u6d69\u514b\u80a9\u8180\uff0c\u6325\u821e\u7740\u5149\u5251\u3002"} +{"id": "6004689", "video_name": "366f1633-033d-5c02-98f7-0f916286ca00", "text": "\u4ed6\u8eab\u4e0a\u5145\u6ee1\u6d3b\u529b\u548c\u97e7\u6027\uff0c\u4eff\u4f5b\u4ed6\u7ecf\u5386\u4e86\u65e0\u6570\u98ce\u96e8\uff0c\u6bcf\u6b21\u90fd\u66f4\u52a0\u575a\u5f3a\u3002\n\n\u5e15\u5179\u5728\u6b23\u8d4f\u65e5"} +{"id": "2006112", "video_name": "ace4d76b-3df7-540e-9620-8c7a565e8f5e", "text": "\u5730\u7403\u6b63\u5728\u4e09\u7ef4\u7a7a\u95f4\u4e2d\u56e0\u6838\u7206\u70b8\u800c\u6fd2\u4e34\u6b7b\u4ea1\u3002"} +{"id": "3003825", "video_name": "f5162a05-fcd1-55f6-9d23-39f11b9d5518", "text": "\u4e00\u5f201960\u5e74\u4ee3\u590d\u53e4\u611f\u6069\u8282\u5531\u7247\u5c01\u9762\uff0c\u88c5\u9970\u5728\u7f8e\u56fd\u519c\u820d\u7684\u9910\u5385\u91cc\uff0c\u5c55\u793a\u4e86\u7956\u6bcd\u626e\u6210\u6d77"} +{"id": "0005307", "video_name": "183f90ee-678e-5341-9048-2ca8701037fd", "text": "\u7ea2\u8272\u65c5\u6e38\u5df4\u58eb\u6b63\u5728\u8fdb\u5165\u963f\u5c14\u5df4\u5c3c\u4e9a\u7684\u88ab\u5e9f\u5f03\u548c\u635f\u574f\u7684\u7279\u91cc\u4e9a\u7eb3\u57ce\u5e02\uff0c\u5448\u7535\u5f71\u753b\u9762"} +{"id": "8003230", "video_name": "1f679b8f-3b2a-5a9d-aa00-85cd5aa4be0a", "text": "\u5927\u91cf\u8c61\u5f62\u6587\u5b57\u7684\u8bc1\u636e\u76f4\u63a5\u5c06\u91d1\u5b57\u5854\u7684\u5efa\u9020\u5f52\u56e0\u4e8e\u53e4\u57c3\u53ca\u4eba\uff0c\u8fd9\u662f\u4ee4\u4eba\u56f0\u60d1\u7684\u3002"} +{"id": "1005709", "video_name": "68fa4ff4-d299-5537-8295-57eb668ced0d", "text": "\u597d\u5947\u7684\u9752\u86d9\u89d2\u8272\uff0c\u50cf\u76ae\u514b\u65af\u7684\u98ce\u683c\uff0c\u5fae\u7b11\u7740\u6325\u624b\uff0c\u5feb\u4e50\u3001\u660e\u4eae\u30013D\u6a21\u578b\uff0c\u903c\u771f\u3001"} +{"id": "1005139", "video_name": "5eb91015-597a-5c45-968a-4cd55b5013dd", "text": "\u54c0\u4f24\u7684\u7537\u4eba\u773c\u775b\u770b\u7740\u76f8\u673a\u3002"} +{"id": "3005712", "video_name": "f3532009-abc0-5204-8c95-7c38efddb4a1", "text": "\u6d77\u6ee9\u4e0a\u6709\u4e00\u5bf9\u592b\u5987\u5750\u5728\u7bdd\u706b\u65c1\u3002"} +{"id": "8001714", "video_name": "88ee3c12-c9fc-5a22-93c4-289e750eefe9", "text": "\u4e00\u8f86\u534e\u4e3d\u7684\u82b1\u8f66\u5728\u8857\u4e0a\u7f13\u7f13\u524d\u884c\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u7275\u7740\u4ed6\u5988\u5988\u7684\u624b\uff0c\u5979\u7b11\u5bb9\u5982\u82b1\uff0c\u8857"} +{"id": "7003969", "video_name": "f40a5282-23bb-5831-aa17-d0e987ceabe0", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u5728\u6d77\u5cb8\u9644\u8fd1\u8df3\u821e\u3002"} +{"id": "7004024", "video_name": "276e2aa9-2e79-58e8-9602-4a64fe56cd52", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u7535\u8111\u524d\u5199\u4f5c\u3002"} +{"id": "3004666", "video_name": "4b7faf41-06e1-50fa-a1b2-02ebcdb86493", "text": "\u5de8\u4eba\u4f5c\u4e3a\u5a01\u6b66\u548c\u82f1\u52c7\u7684\u4eba\u7269\u3002"} +{"id": "1005177", "video_name": "5f461d73-16f5-50b8-aa68-bc97caaee96e", "text": "\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u7ad9\u5728\u90a3\u91cc\u6559\u5507\u8bed\u3002"} +{"id": "2003192", "video_name": "0bdecb56-58e6-5a4e-baaf-0875bc401850", "text": "\u4e00\u4e2a\u7a7f\u7740\u7ea2\u88d9\u5b50\u7684\u5973\u5b69\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u5728\u96ea\u5730\u4e0a\u884c\u8d70\u3002"} +{"id": "8003309", "video_name": "32d4138c-8d9b-5bcf-bfef-9e0163544782", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u7684\u7537\u4eba\uff0c\u770b\u7740\u4e00\u5ea7\u54e5\u7279\u5f0f\u7684\u767d\u8272\u5bab\u6bbf\uff0c\u4e4c\u4e91\u5728\u79fb\u52a8\u3002"} +{"id": "1005176", "video_name": "5f41a62d-8da0-5198-be96-62a0e2ee7e2b", "text": "\u5173\u4e8e\u4e09\u80de\u80ce\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e4970\u5e74\u4ee3\u827a\u672f\u7535\u5f71\uff0c\u4ed6\u4eec\u7a7f\u7740\u84dd\u8272\u7684\u767d\u8272\u5706\u70b9\u8fde\u8863\u88d9\uff0c\u53ea\u662f\u7ad9\u5728"} +{"id": "1003835", "video_name": "46c0a23c-4246-5610-a7bc-e0af80a06cfc", "text": "\u4e00\u8f86\u9ec4\u8272\u7684\u6c7d\u8f66\u5728\u6c99\u6f20\u4e2d\u6f02\u79fb\u3002"} +{"id": "1003332", "video_name": "3d50bd57-2f1e-5c25-8def-0b8be55a971e", "text": "\u6708\u4eae\u878d\u5316\u5728\u897f\u8fb9\uff0c\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u903c\u771f\u6570\u5b57\u827a\u672f\u3002\u4fe1\u606f\uff1aLORENA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003404", "video_name": "e493eb58-ca5a-593f-a852-98f48d27866b", "text": "\u9a6c\u7279\u00b7\u6ce2\u65af\u7684\u52a8\u753b\u5c55\u793a\u4e86\u8239\u53ea\u822a\u884c\u3001\u6d77\u6d0b\u548c\u98ce\u3002"} +{"id": "8001782", "video_name": "666eb83c-181c-5277-9842-4b5b7252c4fb", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u591c\u665a\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u7684\u52a8\u753b\u5361\u901a\u3002"} +{"id": "4004502", "video_name": "ff49e6d9-ecf0-585b-b23a-9227ff6f9bde", "text": "\u96f7\u59c6\u5e03\u5170\u7279\u7684\u5927\u90e8\u5206\u4f5c\u54c1\u90fd\u662f\u8096\u50cf\u548c\u795e\u8bdd\u573a\u666f\u3002"} +{"id": "8003322", "video_name": "759b2745-0da6-5ccc-b042-1ef04bf70b06", "text": "\u60f3\u8c61\u4e00\u4e0b\u5b81\u9759\u9547\uff0c\u5b83\u6709\u9e45\u5375\u77f3\u8857\u9053\u7a7f\u8fc7\u8ff7\u4eba\u7684\u5c0f\u5c4b\u4e4b\u95f4\uff0c\u88ab\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u76db"} +{"id": "8002292", "video_name": "d95eba66-8869-5d0c-9aba-5e4375f81c1b", "text": "\u4e00\u540d\u661f\u7403\u5927\u6218\u7684\u51b2\u950b\u961f\u5458\u5728\u83b2\u82b1\u5750\u59ff\u4e2d\u51a5\u60f3\uff0c\u65c1\u8fb9\u6709\u8bb8\u591a\u7a7f\u7740\u5b09\u76ae\u58eb\u670d"} +{"id": "8003479", "video_name": "6167551f-3c31-50ff-97a9-b641215eddfe", "text": "\u7d2b\u8272\u7684\u673a\u5668\u4eba\u5b9d\u5b9d\u5973\u5b69\uff0c\u5927\u8111\u888b\u5927\u773c\u775b\uff0c\u53ef\u7231\uff0c\u5fae\u7b11\uff0c\u68a6\u5e7b\u822c\u7684\uff0c\u67d4\u548c\u7684\u81ea\u7136"} +{"id": "2006525", "video_name": "426e2da8-2a8c-505c-99c9-43a00d053124", "text": "\u957f\u86c7\u5728\u5c71\u4e0a\u7ecf\u8fc7\u4e00\u7fa4\u5154\u5b50\u65f6\u95ea\u70c1\u7740\u773c\u775b\u3002Benny Hill\u548cCharlie Chaplin\u3002"} +{"id": "2007582", "video_name": "1a61255b-be86-5373-93df-b3857734cc36", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e9a\u6d32\u5973\u5b69\u5728\u9ed1\u591c\u7684\u6751\u5e84\u8def\u4e0a\u5954\u8dd1\uff0c\u80cc\u666f\u89c6\u89d2\uff0c\u7535\u5f71\u611f\uff0c8K\uff0cAR 16:9\u3002"} +{"id": "2005490", "video_name": "a89d49db-a023-55ea-9b8e-ec9c59758a06", "text": "Source sentence: a bee that is buzzing around\n\n\u4e00\u53ea\u55e1\u55e1\u98de\u821e\u7684\u871c\u8702"} +{"id": "4004420", "video_name": "baa68bba-8d44-5e14-9f6a-07811fc8b117", "text": "\u7ea6\u7ff0\u6d17\u8005\u5728\u7ea6\u65e6\u6cb3\u4e0a\u8fdb\u884c\u6d17\u793c\uff0c\u6444\u50cf\u673a\u9760\u8fd1\u4eba\u7fa4\uff0c\u52a8\u4f5c\u6d41\u7545\uff0c\u706f\u5149\u660e\u4eae\uff0c\u50cf\u7535\u5f71\u4e00\u6837"} +{"id": "6003413", "video_name": "3c75445b-b325-58ae-a102-4606f499d52a", "text": "\u51e0\u4e2a\u5357\u74dc\u8fd1\u5728\u54ab\u5c3a\uff0c\u4e0a\u9762\u523b\u7740\u201c\u4e07\u5723\u8282\u201d\u7684\u5b57\u6837\u3002\u80cc\u666f\u91cc\u6709\u4e00\u6247\u7a97\u6237\u53d1\u51fa\u5fae\u5f31\u7684\u5149"} +{"id": "4002470", "video_name": "b748c6ba-ecee-53b9-90d7-c0feea2af6e0", "text": "\u7d20\u63cf: \u5bf9\u70ed\u60c5\u7684\u8db3\u7403\u89c2\u4f17\u548c\u6807\u5fd7\u6027\u7684\u9ed1\u767d\u65d7\u5e1c\u7684\u5feb\u901f\u7d20\u63cf\u3002 \u5bcc\u6709\u8868\u73b0\u529b\u7684\u7ebf\u6761\uff0c\u6355"} +{"id": "7003518", "video_name": "46235a20-d4c1-591d-b622-55f92f5122c0", "text": "\u4e00\u5957\u9152\u7c7b\u996e\u6599\u88ab\u6cfc\u6d12\u4e86\u3002"} +{"id": "0004650", "video_name": "0ca543b8-063f-5d52-b4ac-08eb0af46069", "text": "\u706f\u5149\u6253\u5f00\uff0c\u5efa\u7b51\u7269\u5448\u5fc3\u5f62\u52a8\u753b\u3002"} +{"id": "2007225", "video_name": "42f01658-3d76-5ce4-9b84-c2e07f3b4c5f", "text": "\u60ac\u6d6e\u6c7d\u8f66\u98de\u8d8a\u5e9f\u5f03\u7684\u7ebd\u7ea6\u57ce\u5e02\u3002"} +{"id": "4002243", "video_name": "77d6e3d3-c707-594a-b83e-f4c680377fd8", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8ffd\u9010\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u3002\u516c\u56ed\u573a\u666f\u3002"} +{"id": "6003026", "video_name": "0e0f82b0-1938-506b-8da5-ff41e86362d1", "text": "\u68a6\u5e7b\u822c\u7684\u5c71\u8109\uff0c\u9633\u5149\u548c\u6d77\u6d0b\u5728\u524d\u65b9\uff0c\u6709\u7740\u4e91\u6735\u822c\u7684\u9633\u5149\u3002"} +{"id": "8002821", "video_name": "9ac302bf-3935-5ed9-ab28-b73039619f6d", "text": "\u5730\u7403\u4e0a\u751f\u547d\u7684\u8d77\u6e90\uff1a\u7406\u8bba\u548c\u8bc1\u636e"} +{"id": "4002475", "video_name": "33cbf84a-5308-5926-8b68-78ddebe6af32", "text": "\u8001\u592a\u592a\u7ed9\u4e86\u9732\u4e1d\u4e00\u9897\u661f\u7684\u5149\u8292\u3002"} +{"id": "1004368", "video_name": "50ae5370-4596-5564-935a-38e662ff5c61", "text": "\u673a\u5668\u4eba\u7a7f\u7740\u79d1\u6280\u670d\u88c5\u548c\u88c5\u7532\uff0c\u5934\u6234\u5154\u5b50\u5934\u76d4\uff0c\u91c7\u7528\u673a\u68b0\u98ce\u683c\u3002\u7f8e\u4e3d\u7684\u767d\u5316\u75c5\u5973\u58eb"} +{"id": "4002971", "video_name": "710b7d29-5d89-568f-b980-b53f22612a23", "text": "\u4e0d\u52a8\u6447\u7684\u4fe1\u4ef0\u548c\u65e0\u79c1\u7684\u884c\u4e3a\u53ef\u4ee5\u5e26\u6765\u79ef\u6781\u7684\u53d8\u5316\uff0c\u5e76\u6210\u4e3a\u6240\u6709\u4eba\u7684\u6fc0\u52b1\u3002"} +{"id": "2003266", "video_name": "c28b94d6-4eb3-505b-a62b-b04db596454c", "text": "\u4ece\u8349\u576a\u60ac\u5d16\u8df3\u4f1e\u65e0\u964d\u843d\u4f1e\u7684\u89c6\u9891"} +{"id": "4002069", "video_name": "eb1379c4-64ee-565e-889d-dfdc0f258793", "text": "\u9ca8\u9c7c\u5728\u6d77\u5e95\u6c89\u8239\u9644\u8fd1\u89c5\u98df\uff0c\u7126\u70b9\u4e3a\u9ca8\u9c7c\u3002\u955c\u5934\u79fb\u52a8\uff0c\u6c14\u6ce1\u4e0a\u5347\u30024K "} +{"id": "6004235", "video_name": "2ae3a9f3-2e7f-5cc4-8ea5-394aca108b42", "text": "\u7a7a\u4e2d\u540a\u8239\u987a\u7740\u6cb3\u6d41\u800c\u4e0b\uff0c\u6781\u7b80\u4e3b\u4e49\uff0c\u6726\u80e7\u800c\u620f\u5267\u5316\u3002"} +{"id": "1006063", "video_name": "6f4da80c-8479-5eb4-afef-ee7a34a793b4", "text": "\u771f\u5b9e\u7684\u89c6\u9891\u8bb0\u5f55\u4e86\u6d77\u6d6a\u5728\u5730\u7406\u4f4d\u7f6e\u4e0e\u5929\u7a7a\u4e2d\u6708\u4eae\u76f8\u5bf9\u7684\u6d77\u6ee9\u4e0a\u5347\u8d77\u7684\u60c5\u666f\u3002"} +{"id": "3006053", "video_name": "6056819a-ed3c-5dc9-94cd-314c17842ea4", "text": "\u4e00\u53ea\u72d7\u5728\u6c99\u6f20\u91cc\u548c\u670b\u53cb\u73a9\u800d\u3002"} +{"id": "0003413", "video_name": "3d3bfe05-73ff-5739-89e0-5e9381818819", "text": "\u5927\u888b\u9f20\u548c\u5b66\u6821\u91cc\u7684\u5b69\u5b50\u4eec\u4e00\u8d77\u73a9\u800d\uff0c3D\u52a8\u753b\u3002"} +{"id": "2007152", "video_name": "caa0d81d-c7d7-5ef4-b1ed-3de651f6f3fa", "text": "1945\u5e74\u53d1\u751f\u7684\u4e8b\u4ef6\u3002"} +{"id": "0003927", "video_name": "00033a92-83eb-5fda-94a5-3a5cdf53eb7a", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u6f0f\u96e8\u7684\u5929\u7a7a\u4ece\u7ffc\u4e0a\u770b\u4e0d\u5230\u81ea\u5df1\u7684\u8138\uff0c\u5439\u54cd\u4e86\u53f7\u89d2\u3002"} +{"id": "1003915", "video_name": "48562e7c-ecc0-5ff1-9a29-b2db53130e5e", "text": "\u5973\u4eba\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\uff0c\u4e91\u96fe\u7f2d\u7ed5\uff0c\u8272\u8c03\u6df1\u6c89\u7f8e\u4e3d\uff0c\u65e5\u843d\u65f6\u5206\uff0c\u5177\u6709\u7535\u5f71\u611f\uff0c16:9\u3002"} +{"id": "7004546", "video_name": "66191b9f-210c-52c5-9ef3-b9cb1ca5c275", "text": "\u4e0a\u4e16\u7eaa70\u5e74\u4ee3\uff0c\u4e00\u5bf9\u604b\u4eba\u7b49\u5f85\u516c\u4ea4\u8f66\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "2007570", "video_name": "b7fd0c96-a98d-5603-a2b7-1f7170f1247d", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u548c\u767d\u8272\u978b\u5b50\u5728\u65f6\u88c5\u79c0\u4e0a\u8d70\u79c0\u3002"} +{"id": "1005314", "video_name": "6193e1f3-480d-518d-91b0-3db4a9cc07bd", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u4ece\u5f00\u7740\u7684\u706b\u8f66\u7a97\u6237\u5411\u5916\u770b\uff0c\u5979\u7684\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u770b\u5230\u4e86\u5916\u9762\u7f8e\u4e3d\u7684\u5c71\u666f\u3002"} +{"id": "1003689", "video_name": "43f524a4-9554-5d93-ba41-c5e23f4bddfe", "text": "\u6e90\u53e5\uff1a\u52a8\u753b\u5f62\u5f0f\u586b\u5145\u52fe\u9009\u6846\u4ee5\u5f3a\u8c03\u51c6\u786e\u6027\u3002"} +{"id": "0006303", "video_name": "2a590035-ce12-5bd7-b316-58e220cf2aa6", "text": "\u5979\u7684\u817f\u6162\u6162\u5730\u81ea\u7136\u5730\u5411\u524d\u79fb\u52a8\uff0c\u5979\u7684\u5934\u53d1\u98d8\u52a8\uff0c\u5979\u7684\u624b\u79fb\u52a8\uff0c\u5979\u7684\u773c\u775b\u63a5\u89e6\uff0c\u5979"} +{"id": "6004774", "video_name": "931bc3d0-037a-5b36-9882-f121e471766d", "text": "\u5728\u4e00\u95f4\u96fe\u6c14\u8499\u8499\u7684\u5c0f\u6728\u5c4b\u95e8\u5eca\u4e0a\u9605\u8bfb\u7684\u56f0\u6270\u7684\u5e74\u8f7b\u6210\u5e74\u4eba\u3002"} +{"id": "2007382", "video_name": "aa5e907f-c4b8-528e-933b-e7cdb45a21d7", "text": "\u4ed6\u4eec\u7684\u53cb\u8c0a\u968f\u7740\u5e74\u9f84\u7684\u589e\u957f\u800c\u4e0d\u65ad\u84ec\u52c3\u53d1\u5c55\u3002"} +{"id": "6004401", "video_name": "7eeb3354-b610-5683-a23c-9f64fea6feed", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u9a7e\u9a76\u81ea\u5df1\u7684\u98de\u673a\u3002\u8fd9\u67b6\u98de\u673a\u975e\u5e38\u5c0f\uff0c\u53ea\u6709\u8eaf\u5e72\u80fd\u591f\u5bb9\u7eb3\uff0c\u5176\u4f59\u8eab"} +{"id": "7004678", "video_name": "d6b082e2-d432-5b39-acfb-8b241ff3866d", "text": "\u7535\u5f71\u6d77\u62a5 \u4fe1\u606f\uff1a\u7c89\u8272\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "3005926", "video_name": "78543064-e95f-50cc-a9a5-f56c0581123e", "text": "\u7f8e\u4e3d\u7684\u54e5\u8428\u514b\u5973\u5b69\uff0c\u957f\u957f\u7684\u5934\u53d1\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u675f\u827e\u8349\u3001\u68c9\u84df\u8349\u7684\u82b1\u675f\u3002"} +{"id": "4004615", "video_name": "6343c59c-521f-5275-902c-b0f0be04b817", "text": "\u89d2\u5ea6\u72af\u4e86\u9519\u8bef\uff0c\u628a\u4eba\u653e\u5728\u5929\u5802\u91cc\u3002"} +{"id": "0005810", "video_name": "218d0b07-252a-5757-863b-0ea19e2f5e64", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f1\u7684\u753b\u9762\u7d20\u6750"} +{"id": "0005876", "video_name": "22a24335-e1f2-5a50-8702-f84c583111bc", "text": "\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u5728\u9152\u5427\u804a\u5929\u3002"} +{"id": "2006715", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "\u4e54\u00b7\u7f57\u6839\u548c\u4e00\u4e2a\u5a74\u513f\u8df3\u821e\u3002"} +{"id": "0006094", "video_name": "267ec722-3917-5640-be80-ce2bb68e93b9", "text": "\u5728\u6c99\u6f20\u4e0a\u653e\u7740\u4e00\u628a\u91d1\u8272\u5409\u4ed6\uff0c\u4e0a\u9762\u6709\u4e00\u4e2a\u5c0f\u5341\u5b57\u67b6\u6807\u5fd7\u3002"} +{"id": "2006066", "video_name": "5152ede5-cc0e-5bbd-8c4d-addce12ed90a", "text": "\u524d\u666f\u4e2d\uff0c\u4e00\u4e2a\u7956\u7236\u4ee5\u6781\u7aef\u5361\u901a\u98ce\u683c\u8bf4\u8bdd\u3002"} +{"id": "2006728", "video_name": "7a149cde-6709-5285-9cc9-64b2c6b253c8", "text": "\u9ec4\u660f\u6e10\u6e10\u8f6c\u4e3a\u9ed1\u6697\uff0c\u5927\u53a6\u5f00\u59cb\u82cf\u9192\u3002\u795e\u79d8\u73b0\u8c61\u6e10\u6e10\u663e\u73b0\uff0c\u95e8\u8f7b\u8f7b\u53d1\u51fa\u5431\u5440\u58f0"} +{"id": "4003078", "video_name": "d64e9666-7a52-579b-91e7-9707f1a8a4d8", "text": "\u5f00\u573a\uff1a\u5c55\u793a2023\u5e74\u4e00\u4e2a\u96e8\u5929\u7684\u65e9\u6668\uff0c\u7537\u5b69Jeppe\u5728\u90ca\u533a\u5367\u5ba4\u9192\u6765\u3002\u96e8\u6ef4\u987a\u7740\u7a97\u6237\u6ef4"} +{"id": "6004635", "video_name": "bdfd12c3-e672-5d59-a395-e2df6b4381e8", "text": "\u602a\u7269\u8bd5\u56fe\u6293\u4f4f\u76f8\u673a\uff0c\u52a8\u4f5c\u3001\u52a8\u6001\u3001\u6697\u89d2\u3001\u6a21\u62df\u30018k\u3002"} +{"id": "0003501", "video_name": "3ea5776a-463c-5c21-b310-5796c8583e5c", "text": "\u591a\u4e2a\u4e0d\u540c\u7684\u5b87\u5b99\u5e76\u6392\u6392\u5217\uff0c8K\u3002"} +{"id": "0006529", "video_name": "2e2d356f-4ced-5519-b0aa-2a4b61aea653", "text": "\u5c55\u793a\u838e\u62c9\u8dea\u5728\u9677\u9631\u95e8\u65c1\uff0c\u51c6\u5907\u8c03\u67e5\u3002"} +{"id": "4004081", "video_name": "afcde6f0-f619-5d2b-9af0-d00028b3aa2c", "text": "\u4e00\u53ea\u8774\u8776\u53d8\u6210\u4e86\u4e00\u5f20\u6d1b\u590f\u6d4b\u8bd5\u56fe\u7247\u3002"} +{"id": "2005145", "video_name": "589c0f76-d623-56f2-86d6-a6bc0af2aa3c", "text": "\u6625\u82b1\u56fe\u6848\u7684OSV\u89c6\u9891"} +{"id": "8001329", "video_name": "55877b85-e642-5225-927a-711470006e1c", "text": "\u4e9a\u5386\u5c71\u5927\u91cc\u4e9a\u7684\u624b\u672f\u5728\u7535\u5f71\u300a\u79cb\u5929\u300b\u548c\u300a\u7279\u62c9\u6851\u8f9b\u683c\u300b\u4e2d\u51fa\u73b0\u3002"} +{"id": "4003517", "video_name": "16eaf788-27b8-5bdd-9434-ab7bf6580b88", "text": "\u6708\u4e0b\u7530\u91ce\u4e2d\u7684\u795e\u79d8\u4eea\u5f0f\u821e\u8e48\u3002"} +{"id": "8003334", "video_name": "3ef5196f-43ed-5f51-ac9b-e3c558399589", "text": "\u4e00\u4e2a\u5145\u6ee1\u62bd\u8c61\u5973\u6027\u3001\u7a7f\u7740\u7c89\u8272\u5047\u53d1\u548c\u95ea\u5149\u9713\u8679\u706f\u5236\u6210\u7684\u793c\u670d\u7684\u672a\u6765\u4e3b\u4e49\u665a\u4f1a\u3002"} +{"id": "2006833", "video_name": "91d93df2-15b5-5044-9d75-14a4281291ab", "text": "\u975e\u5e38\u6f02\u4eae\u7684\u82d7\u6761\u5973\u5b69\uff0c\u7a7f\u7740\u7531\u4e1d\u7ef8\u9713\u8679\u7ebf\u5236\u6210\u7684\u95ea\u95ea\u53d1\u5149\u7684\u793c\u670d\uff0c\u7ad9\u5728\u6c79\u6d8c\u7684"} +{"id": "3006408", "video_name": "54c525a0-7ff8-50e4-adb5-34c262e649b3", "text": "\u65cb\u8f6c\u7684\u82cf\u83f2\u821e\u8e48\u3001\u65cb\u8f6c\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u989c\u8272\u3001\u6f29\u6da1\u3001\u903c\u771f\u3001\u9c9c\u660e\u7684\u8272\u5f69\u3001\u9ad8\u5ea6\u8be6"} +{"id": "3003456", "video_name": "368c203a-a23e-5edb-be98-7faf250ee8f3", "text": "\u4e00\u6b3e\u7528\u767d\u68c9\u82b1\u5236\u6210\u7684\u62a4\u7406\u4ea7\u54c1\uff0c\u770b\u8d77\u6765\u67d4\u8f6f\u8212\u9002\uff0c\u4ee5\u53ca\u542b\u6709\u5c3f\u5e03\u7684\u5546\u54c1\u5c55\u793a\u7a97\u548c\u5e7f\u544a\u3002"} +{"id": "2006873", "video_name": "d4dc6997-7add-50b1-ab9c-b5740e1611c1", "text": "\u4ebf\u4e07\u53ea\u963f\u5df4\u6bd4\u5c14\u9e1f\u5145\u6ee1\u4e86\u5929\u7a7a\u3002"} +{"id": "0004489", "video_name": "09d30fae-f8a0-5df7-89de-f892103481f3", "text": "\u672a\u6765\uff0c\u4eba\u5de5\u667a\u80fd\u63a5\u7ba1\u4e86\u4eba\u7c7b\u7684\u5de5\u4f5c\u3002\u57ce\u5e02\u7684\u8857\u9053\u7a7a\u65e0\u4e00\u4eba\uff0c\u4eba\u4eec\u7684\u751f\u6d3b\u90fd\u57fa\u4e8e\u81ea\u52a8\u5316\u3002\u591c\u7a7a\u7531\u4eba\u5de5\u667a\u80fd\u7684"} +{"id": "0004893", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "\u5730\u9707\u671f\u95f4\u6545\u969c\u8fd0\u52a8\u7684\u793a\u610f\u56fe\u3002\u6b64\u89c6\u9891\u8d28\u91cf\u4e3a4K\uff0c\u753b\u9762\u5982\u540c\u7535\u5f71\u955c\u5934\u822c\u6e05\u6670\u660e\u4eae\u3002"} +{"id": "2006393", "video_name": "44cae555-357e-5293-9c01-5fa7b31a76ad", "text": "\u9e1f\u77b0\u5e7f\u897f\u6842\u6797\u771f\u5b9e\u666f\u89c2\u6444\u5f71\uff0c\u5305\u62ec\u5f53\u5730\u65c5\u6e38\u8239\uff0c1080p 60fps\u5f53\u5730\u8239\u53ea\u3002"} +{"id": "6003171", "video_name": "c7502e73-9afa-58cc-abe7-43e08af219d1", "text": "Lady Gaga\u770b\u7740\u955c\u5b50\uff0c\u770b\u5230\u4e86Peter Witkin\u98ce\u683c\u7684\u955c\u4e2d\u5e7d\u7075\u3002"} +{"id": "0004077", "video_name": "02d4df79-56d2-57aa-9de1-296914a6d259", "text": "\u4e09\u8f86\u79d1\u6280\u6469\u6258\u8f66\u51fa\u79df\u8f66\u5728\u5341\u5b57\u8def\u53e3\u7b49\u5019\uff0c\u9644\u5e26\u4e24\u5f20\u7167\u7247\u3002\u65f6\u95f4\u4e3a9:16\u3002"} +{"id": "4002722", "video_name": "76a30c5e-a649-5172-8889-0246684c2fb6", "text": "\u4e24\u4e2a\u70df\u76d2\u653e\u5728\u7eff\u8272\u8868\u9762\u4e0a\uff0c\u4e0a\u9762\u6709\u5361\u901a\u4eba\u7269\uff0c\u5176\u4e2d\u4e00\u4e2a\u4eba\u7269\u6b63\u5728\u62bd\u70df\u3002\u963f\u8d39\u74e6\u514b\u00b7\u7279\u514b\u52d2"} +{"id": "6002134", "video_name": "930f2053-435d-5c07-936b-91b1b7b17731", "text": "\u8611\u83c7\u4eba\u5728\u57ce\u5e02\u8df3\u821e\u3002"} +{"id": "2007553", "video_name": "52c41f53-21fb-5966-a639-45be562a2898", "text": "\u5979\u5728\u5c4b\u9876\u4e0a\u5954\u8dd1\uff0c\u9ed1\u591c\u4e2d\u6708\u5149\u4e0b\uff0c\u4e3a\u89e3\u6551\u5bb6\u4eba\u800c\u594b\u6597\u3002"} +{"id": "0004930", "video_name": "119ef5d0-b1b8-5018-b517-1f0fbe00bb06", "text": "\u5947\u5f02\u7684\u8c6a\u534e\u5c9b\u6f02\u6d6e\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\u3002"} +{"id": "7003333", "video_name": "2ecc4faa-81ab-5925-be75-17884b5b946e", "text": "\u6c99\u6f20\u4e2d\u7684\u6218\u4e89\uff0c\u4e2d\u4e16\u7eaa\u65f6\u671f\uff0c\u5728\u9a6c\u80cc\u4e0a\uff0c\u5e9e\u5927\u7684\u519b\u961f\uff0c\u6fc0\u70c8\u7684\u51b2\u7a81\u3002"} +{"id": "2004051", "video_name": "34212324-752d-5974-86e7-32b981bf992f", "text": "\u89c6\u9891\u91cc\u5fc3\u8df3\u4e91\u5728\u6f02\u6d6e\uff0c\u7a7a\u6c14\u5728\u6d41\u52a8\u3002"} +{"id": "0006818", "video_name": "339b9d4a-31a1-5ead-9580-1e997b92e3a8", "text": "\u54c8\u96f7\u5c06\u8fd9\u79cd\u73b0\u8c61\u5f52\u56e0\u4e8e\u5730\u7403\u7684\u4e2d\u7a7a\u7ed3\u6784\u3002"} +{"id": "2003907", "video_name": "c864ec2b-462e-50f7-b79d-9bb6ad5c60c1", "text": "\u5728\u4e00\u4e2a\u6050\u6016\u7684\u591c\u665a\uff0c\u6709\u4e00\u4e2a\u7537\u5b69\u5728\u5893\u5730\u91cc\u7761\u89c9\uff0c\u6708\u5149\u4e0b\u3002"} +{"id": "2005412", "video_name": "a5642d32-81da-57d5-9953-0740fcce58cc", "text": "\u6e29\u99a8\u8212\u9002\u7684\u73af\u5883\uff0c\u900f\u8fc7\u5927\u73bb\u7483\u7a97\u770b\u5230\u70df\u82b1\u548c\u96e8\u843d\u4e0b\u3002"} +{"id": "0005861", "video_name": "22755d09-41c6-57d9-873d-8e9ea9e69001", "text": "\u8fc8\u963f\u5bc61974\u5e74\u6f2b\u753b\u98ce\u683c\u6d3e\u5bf9\u3002"} +{"id": "1004501", "video_name": "536bc23f-15f5-5b79-a013-98b02183c929", "text": "\u5973\u6027\u7684\u624b\u5728\u9633\u5149\u7684\u7167\u8000\u4e0b\u3002"} +{"id": "8001472", "video_name": "35a13c77-e920-5c11-9215-ca5515b92b8c", "text": "\u4e24\u53ea\u72d7\u4e92\u76f8\u773c\u795e\u67d4\u60c5\u5730\u6ce8\u89c6\u7740\u5f7c\u6b64\u3002"} +{"id": "7004079", "video_name": "8809e705-f5c7-579e-b4c6-149efbb9a25e", "text": "\u4e00\u5f20\u63d2\u56fe\u5c55\u793a\u4e86\u8499\u5a1c\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u8fea\u58eb\u5c3c\u98ce\u683c\u4e2d\u643a\u5e26\u8001\u5987\u4eba\u7684\u5305\u888b\uff0c\u8868\u73b0"} +{"id": "1006931", "video_name": "7ec6d7ad-3458-5a59-afd2-fd1f3e2537d8", "text": "\u82cf\u95e8\u7b54\u814a\u864e\u5728\u9ad8\u6e05\u80cc\u666f\u4e0b\u5486\u54ee\u3002"} +{"id": "1003497", "video_name": "40bb08d8-99ae-5e27-8d49-e16142599fb8", "text": "\u6218\u58eb\u4eec\u73b0\u5728\u5728\u5411\u9ed1\u6697\u5973\u795e\u7687\u540e\u97a0\u8eac\uff0c\u5e76\u5411\u5979\u6700\u4f1f\u5927\u7684\u529b\u91cf\u81f4\u656c\uff0c\u4ed6\u4eec\u7684\u624b\u81c2\u548c\u624b\u4f38"} +{"id": "0004902", "video_name": "112b444a-e505-50ad-b8ad-bfedd81f843c", "text": "\u56db\u5343\u5146\u903c\u771f\u7684\u6076\u9b54\u751f\u7269\u7f13\u6162\u5730\u5411\u4e0b\u4e00\u4e2a\u72ed\u7a84\u7684\u533b\u9662\u8d70\u5eca\u7684\u6444\u50cf\u673a\u9760\u8fd1\u3002"} +{"id": "6002633", "video_name": "1d4b0951-d562-5ea5-80c6-b2dba4e94e20", "text": "\u5728\u7f50\u5b50\u91cc\u53ea\u6709\u6c34\u3002"} +{"id": "5001201", "video_name": "1791c993-de0b-553e-bfed-4456e8c216b2", "text": "\u4e00\u8258\u8239\u5728\u6ce1\u6cab\u6ce2\u6d6a\u4e2d\u822a\u884c\uff0c\u68a6\u5e7b\u3002"} +{"id": "0004067", "video_name": "02b3cbe7-4689-5818-b262-d65798a3ffdb", "text": "\u4e00\u5e45\u7d20\u63cf\u8f6e\u5ed3\u7684\u6cb3\u6d41\uff0c\u80cc\u666f\u662f\u7cd6\u679c\u5c71\u3002\u9ed1\u767d\u8272\u8c03\u3002"} +{"id": "4004822", "video_name": "a509af72-c487-5edb-8de3-75d4c2f2fc93", "text": "\u8bb8\u591a\u95ea\u95ea\u53d1\u5149\u7684\u5eb7\u4e43\u99a8\u82b1\u675f"} +{"id": "8002180", "video_name": "1f3e617c-07a1-5bf5-85e6-5df3e95d6b1e", "text": "\u4fa7\u9762\u89d2\u5ea6\u7684\u955c\u5934\u9010\u6e10\u62c9\u8fd1\uff0c\u663e\u793a\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u89c2\u770b\u4ed6\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u4e0a\u7684\u89c6\u9891\u3002\uff08\u8d5b\u535a\u670b\u514b\uff0c"} +{"id": "7004687", "video_name": "938f4d57-8859-5a41-98d4-cda10ec8c752", "text": "\u4e00\u4e2a\u592b\u5987\u5750\u5728\u5ba2\u5385\u8ba8\u8bba\uff0c\u4ed6\u4eec\u5e26\u7740\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u548c\u4e00\u4e2a\u76d2\u5b50\u3002"} +{"id": "7002878", "video_name": "4276ff2f-a0fc-5aa3-8d51-e55c44ff19e0", "text": "\u4e24\u4e2a\u5973\u5b69\uff0c\u4e24\u4e2a\u7537\u5b69\u5750\u5728\u4e00\u8d77\uff0c\u4ece\u4ed6\u4eec\u7684\u8138\u90e8\u8868\u60c5\u53ef\u4ee5\u611f\u89c9\u5230\u5b64\u72ec\u3002"} +{"id": "1005669", "video_name": "6822dd12-4e48-51f3-b027-af5f197d98c0", "text": "Lionel Messi\u548c\u4ed6\u7684\u513f\u5b50\u4e00\u8d77\u8e22\u8db3\u7403\u3002 \n\nSource sentence: I need to buy some groceries at the supermarket. \n\n\u6211\u9700\u8981\u5728\u8d85\u5e02\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "3005777", "video_name": "62aa0b64-963a-59a5-a332-b472d0e031ff", "text": "\u4e00\u4f4d\u4eba\u6b63\u5728\u5f92\u6b65\u6500\u767b\u5c71\u9876\u3002"} +{"id": "3004096", "video_name": "ab3c4198-6b56-55b8-8c70-b7aea4972e9e", "text": "\u4e24\u7f50\u6cb9\u6f06\u5728\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "3003800", "video_name": "73dc3f6d-e64b-5522-90f9-22cfc626ef24", "text": "\u7537\u5b69\u5728\u6d77\u4e0a\u5212\u8239\u3002"} +{"id": "6003077", "video_name": "ea23b9c4-4ddf-57f7-9a86-c9c4f9373972", "text": "\u7ad9\u5728\u70ed\u5e26\u6d77\u6ee9\u4e0a\uff0c\u5de8\u6d6a\u671d\u5cb8\u8fb9\u51b2\u6765\u3002"} +{"id": "1006287", "video_name": "7326ca8c-b6f2-513f-9886-0110f420092d", "text": "\u5c06\u7167\u7247\u4e2d\u7684\u96e8\u6c34\u52a8\u8d77\u6765\u3002"} +{"id": "2003228", "video_name": "153b08fa-7444-5eb4-ac8e-cc420f4e2e14", "text": "\u5b9e\u9a8c\u6027\u8857\u5934\u98ceRick Owens\u8d85\u73b0\u5b9e\u9ad8\u7aef\u65f6\u5c1a\u62cd\u6444"} +{"id": "4003159", "video_name": "2eaab1af-0498-5d19-bf1a-1447a941dc55", "text": "\u8fd9\u5e45\u753b\u4f5c\u662f\u6770\u4f5c\uff0c\u54c1\u8d28\u6700\u4f18\uff0c\u62e5\u6709\u8d85\u9ad8\u54c1\u8d28\uff0c8K\u5206\u8fa8\u7387\uff0c\u7ec6\u8282\u4e4b\u5904\u532a\u5937\u6240\u601d\uff0c\u7cbe\u7ec6\u7a0b\u5ea6"} +{"id": "2004602", "video_name": "2d9c3a99-8346-5094-aefa-be2c63c7d6f6", "text": "\u57ce\u5e02\u7684\u822a\u62cd\u7167\u7247\uff0c\u5b57\u4f53\u4e3aMODERN\uff0c\u6587\u5b57\u4e3aOLE\u3002"} +{"id": "4003396", "video_name": "31d289e3-050d-5932-8d73-31280183efb9", "text": "\u5973\u795e\u5728\u8d85\u65b0\u661f\u7206\u70b8\u4e2d\u7684\u5929\u4f7f\u89c6\u89c9"} +{"id": "6004761", "video_name": "ab3576cf-00dc-5599-9aca-b636d6e90334", "text": "\u56fd\u738b\u7ad9\u5728\u4eba\u7fa4\u4e2d\u3002"} +{"id": "0006450", "video_name": "2cc18ed3-481c-563a-a4b4-ed02a8d29e7d", "text": "\u5f17\u5170\u80af\u65af\u5766\u662f\u4e00\u540d\u8b66\u5bdf\u3002\u955c\u5934\u5411\u53f3\u8f6c\u52a8\uff0c\u4ed6\u8e22\u5f00\u4e00\u6247\u95e8\u5e76\u8fc5\u901f\u8fdb\u5165\u3002\u4ed6\u624b\u4e2d\u62ff\u7740\u4e00"} +{"id": "2006765", "video_name": "5789e6f9-2b9a-5cb9-a6f2-a538f4f4643b", "text": "\u4eba\u4ef0\u671b\u5929\u7a7a\u5e76\u5c16\u53eb\u3002"} +{"id": "7004857", "video_name": "be025ba0-86e7-5852-aac8-ad9f0a65f5ec", "text": "\u5de7\u514b\u529b\u66f2\u5947\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u4f34\u968f\u7740\u9713\u8679\u706f\u548c\u661f\u661f\uff0c\u4ee5\u53ca\u98de\u821e\u7684\u4e09\u89d2\u5f62\u3002\n\nSource sentence: I"} +{"id": "3003968", "video_name": "86f3ca4d-2b2e-5caf-910b-84178d22a64a", "text": "\u4e00\u4e2a\u6709\u5173DNA\u7ffb\u8bd1\u7684\u77ed\u7247"} +{"id": "8003264", "video_name": "f9e965a5-3263-5d59-bb35-c27e4799c467", "text": "\u5f39\u5934\u51fb\u788e\u4e86\u9152\u676f\uff0c\u52a8\u6f2b\u3002"} +{"id": "0005187", "video_name": "16460475-cf47-561e-aaf0-2d5e49d62aca", "text": "\u4e00\u4e2a\u5e26\u7740\u67e0\u6aac\u548c\u67e0\u6aac\u6c34\u5012\u5165\u7f50\u5b50\u7684\u684c\u5b50\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "0004978", "video_name": "12a107a0-1c23-5bd0-a133-568a609f29dc", "text": "\u6c34\u4e0b\u95e8\u6237\u5c06\u5979\u5e26\u5230\u4e00\u4e2a\u5145\u6ee1\u751f\u7269\u53d1\u5149\u548c\u88ab\u9057\u5fd8\u6587\u660e\u7684\u60ca\u4eba\u6c34\u4e0b\u4e16\u754c\u3002"} +{"id": "6002576", "video_name": "6a786463-ed76-5481-84f8-7fe2a1db5c30", "text": "\u4e03\u4e2a\u4e9a\u6d32\u7a0b\u5e8f\u5458\u624b\u63e1\u6b66\u5668\u8d70\u5411\u63a2\u7d22\u706b\u661f\u3002"} +{"id": "4004970", "video_name": "8bca9f2a-b00e-54dd-b2ea-f34257ecff0f", "text": "\u4e00\u53ea\u9a6f\u9e7f\u5728\u6c60\u5858\u91cc\u559d\u6c34\uff0c\u6c60\u5858\u4e2d\u6620\u51fa\u5b83\u7684\u5f71\u5b50\u3002"} +{"id": "2007598", "video_name": "df028fac-4dc9-5323-8d7e-c7f32e238996", "text": "\u82f1\u6587\u539f\u53e5\uff1aheroic character standing on top of the hill takes of an arrow from his bow.\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u7ad9\u5728\u5c71\u9876\u4e0a\u7684\u82f1\u52c7\u4eba\u7269\u4ece\u5f13\u4e0a\u53d6\u4e0b\u4e00\u652f"} +{"id": "1003296", "video_name": "3ca01888-eaa5-5762-a537-6c87e0ca5f20", "text": "\u5730\u7403\u5317\u4fa7\u5916\u90e8\u7684\u89c6\u89d2\u3002"} +{"id": "8003710", "video_name": "de696e3f-771a-59aa-96a2-e77ccc94c237", "text": "4K\u52a8\u753b\u4e2d\uff0c\u5409\u5c3c\u4ece\u5b9d\u77f3\u4e2d\u94bb\u51fa\u6765\u3002"} +{"id": "8003362", "video_name": "ec086344-77f1-5ec1-8479-64f8d9cb461c", "text": "\u8096\u50cf\u65f6\u5c1a\u6a21\u7279\u5973\u6027\u9b45\u9b54\u5728\u524d\u7f6e\u6444\u50cf\u5934\u4e0b\u8dd1\u6b65\u3002\u68ee\u6797\u6e56\u6cca\u3002\u98ce\u548c\u6ce2\u6d6a\u3002\u795e\u79d8\u548c"} +{"id": "5001458", "video_name": "44bbb193-c0d5-5c22-9194-fd4b9f213271", "text": "\u9ed1\u53d1\u767d\u88d9\u5c0f\u5973\u5b69\u5728\u68ee\u6797\u91cc\u4e0e\u5e7d\u7075\u8df3\u821e\u3002"} +{"id": "5001224", "video_name": "132afd58-9696-5abc-bef8-647bc3d84a44", "text": "Source sentence: \u4e00\u4f4d\u8eab\u6750\u5065\u7f8e\u7684\u6a21\u7279\u5973\u5b50\u7a7f\u7740\u8d85\u7d27\u8eab\u6bd4\u57fa\u5c3c\uff0c\u5728T\u578b\u53f0\u4e0a\u6027\u611f\u5730\u8d70\u7740\u3002\n\nTranslated sentence: \u4e00\u4f4d\u8eab"} +{"id": "0006520", "video_name": "2dfa3606-7691-5579-b90e-a04a3752f297", "text": "\u4e00\u4f4d\u6234\u7740\u9762\u7f69\u3001\u7a7f\u7740\u5e3d\u886b\u7684\u672a\u6765\u4eba\u5728\u5c71\u9876\u4e0a\u8df3\u821e\uff0c\u753b\u8d28\u4e3a4K\u3002"} +{"id": "2003312", "video_name": "6d1fd220-ac71-52d5-8462-518b6fa00e85", "text": "\u4e2d\u4e16\u7eaa\u56fd\u738b\u8eba\u5728\u5730\u677f\u4e0a\u6b7b\u4e86\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "3006419", "video_name": "6fde998f-8556-5995-8368-b1a8e4f9ec9c", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u57ce\u5e02\u5728\u65e5\u843d\u65f6\u5206\u3002\u4fe1\u606f\uff1aplatzi\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004431", "video_name": "51fa2c3e-c6ef-5f85-b38c-d1f5e9bf8a30", "text": "\u5e03\u9c81\u585e\u5c14\u5927\u5e7f\u573a\u5e02\u653f\u5385\u4eba\u5c71\u4eba\u6d77\u3002\u7559\u8a00\uff1a\u5362\u5361\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006807", "video_name": "2731264d-4d1d-5be5-9a21-ec60dcb878b4", "text": "\u54c6\u5566A\u68a6\u4ece\u5929\u7a7a\u5760\u843d\u5728\u8d85\u9ad8\u6e05\u7f8e\u4e3d\u7684\u81ea\u7136\u68ee\u6797\u4e2d\u3002"} +{"id": "7002775", "video_name": "cf6eb179-30d5-5ebc-8caf-c6aaa71dc635", "text": "\u51b0\u5757\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u5468\u56f4\u6709\u5c0f\u884c\u661f\uff0c\u7f8e\u4e3d\u60ca\u4eba\uff0c\u56fe\u50cf\u7ec6\u8282\u9ad8\uff0c\u771f\u5b9e\u611f\u5f3a\uff0c4K\u3002"} +{"id": "4002224", "video_name": "f24046eb-e94f-52f5-97eb-866df84d78c4", "text": "\u5c06\u5546\u4e1a\u754c\u4e0e\u6280\u672f\u76f8\u8fde\u63a5\u3002"} +{"id": "3003269", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "\u8568\u7c7b\u53f6\u5b50\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "3004391", "video_name": "c8eeff52-a5bf-52dc-ab01-ef165c597f52", "text": "\u7ebd\u7ea6\u6050\u9f99\u5411\u65e5\u843d\u884c\u8d70\u3002"} +{"id": "0005571", "video_name": "1d2d262a-030d-52ea-90b0-3b6ed1878e5b", "text": "\u52a8\u753b\u7247\u4ece\u4e00\u4e2a\u8212\u9002\u7684\u5367\u5ba4\u5f00\u59cb\uff0c\u660f\u6697\u7684\u591c\u706f\u6563\u53d1\u7740\u6e29\u6696\u7684\u5149\u8292\uff0c\u8fd9\u662f\u5bab\u5d0e\u9a8f"} +{"id": "7002076", "video_name": "0e5e0e76-a144-5ad2-bc36-ac9aae82574c", "text": "\u50e7\u4eba\u548c\u9a6c\u4e00\u8d77\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "1005869", "video_name": "6c00d84e-42cc-5c13-9c5e-d267bc90bddb", "text": "\u4e00\u4f4d\u51b0\u5c9b\u5973\u5b50\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "2007988", "video_name": "7cb51674-e805-5dbf-9505-038e8c6c6350", "text": "\u54c8\u7acb\u5fb7\u00b7\u672c\u00b7\u74e6\u5229\u5fb7\u4e0e\u9c81\u65af\u5766\u5728\u5361\u8fea\u897f\u4e9a\u6218\u5f79\u4e2d\u5bf9\u5792\u3002"} +{"id": "2006022", "video_name": "f710d0ea-30a8-563f-8115-353fa42775fa", "text": "\u5973\u5b69\u88ab\u8986\u76d6\u5728\u5979\u8eab\u4e0a\u7684\u72ee\u5b50\u4e0b\u9762\uff0c\u671b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "2006616", "video_name": "d048b895-6a10-575f-8a9b-30d6d0e3a025", "text": "\u4e0d\u662f\u5750\u7740\u559d\u67e0\u6aac\u6c41\u7684\u84dd\u8272\u8fde\u8863\u88d9\u91d1\u53d1\u5973\u4eba\u3002"} +{"id": "8002444", "video_name": "987229eb-e28f-5baa-9148-b452afa84571", "text": "\u4e00\u53f0\u6d17\u8863\u673a\u6b63\u5728\u8fdb\u884c4K\u8fd0\u52a8\u6d17\u6da4\u8863\u7269\u3002"} +{"id": "0003698", "video_name": "41f062f7-e1aa-56ed-b541-29b8a5b84bfb", "text": "\u4e00\u5ea7\u8352\u51c9\u7684\u57ce\u5e02\u98ce\u666f\uff0c\u5230\u5904\u662f\u690d\u88ab\u548c\u8150\u673d\u3002\u8fdc\u5904\u4f20\u6765\u5fae\u5f31\u7684\u98ce\u58f0\u3002"} +{"id": "0004371", "video_name": "07e86f2c-93ed-5b8a-a567-020f3c497b9e", "text": "\u53a8\u623f\u91cc\u5df2\u7ecf\u51c6\u5907\u597d\u4e86\u98df\u7269\u3002"} +{"id": "0006237", "video_name": "28e8d579-4a46-5db3-841d-4ad59df4d4cc", "text": "\u79d1\u5e7b\u7535\u5f71\u4e2d\u5b87\u5b99\u98de\u8239\u4e0a\u7535\u8111\u5c4f\u5e55\u7684\u6781\u9650\u8fd1\u666f\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u7167\u660e\uff0c\u9ad8\u9ed1\u70b9\uff0c\u5355\u8272\u8c03\u989c\u8272\u3002"} +{"id": "0004557", "video_name": "0b380cb4-4eab-5d50-9164-fe08e1acc9fc", "text": "\u4e00\u4e2a\u5df2\u7ecf\u5341\u5c81\u7684\u5c0f\u7537\u5b69\u4f4f\u5728\u57ce\u5821\u91cc\uff0c\u6b63\u5728\u770b\u7740\u76f8\u673a\u3002"} +{"id": "8001845", "video_name": "e49b2555-8e85-506f-8cde-91651560d582", "text": "\u5728\u6e14\u6751\u4e0a\u7a7a\u51fa\u73b0\u4e86\u4e0d\u660e\u98de\u884c\u7269\uff0c\u79fb\u52a8\u5e76\u53d7\u98ce\u5f71\u54cd\u3002"} +{"id": "2006920", "video_name": "1027c29c-d904-5fe0-a105-26137c710364", "text": "\u53e4\u65f6\u5019\uff0c\u4e00\u540d\u963f\u62c9\u4f2f\u7537\u5b50\u9a91\u5728\u6c99\u6f20\u4e2d\u7684\u9a6c\u4e0a\u3002"} +{"id": "1004043", "video_name": "4b02932e-964c-5759-b60d-9a62f0ec13b4", "text": "\u6c38\u6052\u7684\u673a\u5668\u81c2\u5faa\u73af\u3002"} +{"id": "7004377", "video_name": "5c53695e-723d-58b7-b664-88b3db1d4c73", "text": "\u8ff7\u5e7b\u5206\u5f62\u98ce\u683c\u7684Alex Grey\uff0c\u5feb\u901f\u79fb\u52a8\u7684\u52a8\u4f5c\u955c\u5934\uff0c\u4ee5\u53ca\u76f8\u673a\u7684\u8fd0\u52a8\u3002"} +{"id": "2007944", "video_name": "9ee5e4e0-3a64-5d9d-b5ed-88a2add445c7", "text": "\u5236\u4f5c\u4e00\u4e2a\u975e\u5e38\u903c\u771f\u7684\u89c6\u9891\uff0c\u663e\u793a\u4e00\u4e2a\u4ece\u6cbc\u6cfd\u4e2d\u94bb\u51fa\u6765\u7684\u602a\u7269\uff0c\u4f7f\u7528\u975e\u5e38\u7070\u6697\u7684\u7167\u660e\u3002"} +{"id": "7002039", "video_name": "8321aaea-18f2-5075-bac7-c9ff7e03116b", "text": "\u9f99\u55b7\u706b\uff0c\u5728\u5e9f\u5f03\u7684\u6559\u5802\u91cc\u7f13\u6162\u722c\u884c\uff0c\u4e54\u5c14\u00b7\u5f7c\u5f97\u00b7\u7ef4\u7279\u91d1\u548c\u626c\u00b7\u7d22\u5fb7\u514b\uff0c\u8fd0\u52a8\uff1a"} +{"id": "5001035", "video_name": "94ee6eb8-f65a-5ceb-be3c-470cc3f5d018", "text": "\u9e1f\u513f\u5728\u4e4c\u5e72\u8fbe\u5531\u6b4c\u7684\u89c6\u9891\u3002"} +{"id": "0006207", "video_name": "286cc6a7-a8a4-56b1-ae72-c3a5b5a45fb8", "text": "\u786c\u89d2\u5ea6\uff0c\u7f8e\u56fd\u7537\u6027\uff0c\u666e\u901a\u773c\u775b\uff0c18\u5c81\uff0c\u7626\u957f\u8138\uff0c\u540e\u6218\u58eb\uff0c\u67f4\u6cb9\u670b\u514b\uff0c\u4e0e\u9f99\u7684\u666f"} +{"id": "7003135", "video_name": "c1444f88-dfe5-518f-87bb-299ba823a4cc", "text": "\u4eba\u4eec\u5728\u7f8e\u5f0f\u8db3\u7403\u573a\u770b\u53f0\u4e0a\u6fc0\u70c8\u6597\u6bb4\uff0c\u903c\u771f\u3002"} +{"id": "4003990", "video_name": "61172168-7952-59ba-92f3-a4b58dc0d8e1", "text": "\u6d3b\u52a8\u7684\u72ee\u5b50\uff0c\u56db\u6761\u817f\uff0c\u4e25\u8083\u7684\u9762\u5bb9\uff0c\u8d85\u903c\u771f\uff0c8K\u3002"} +{"id": "6002835", "video_name": "42965c69-24c3-56fd-aecd-0d8fc38dfeab", "text": "\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\uff0c\u4e00\u4e2a\u4f1f\u5927\u7684\u6218\u58eb\u3002"} +{"id": "4003814", "video_name": "ce8435eb-a11a-54f1-8596-09dbd68e4785", "text": "\u6bcd\u4eb2\u548c\u513f\u5b50\u5728\u5546\u573a\u8bd5\u7a7f\u4e0d\u540c\u7684\u8863\u670d\uff0c\u5206\u4eab\u610f\u89c1\uff0c\u5e76\u8fdb\u884c\u8d2d\u4e70\u3002"} +{"id": "7003326", "video_name": "bedabee5-2ea6-5339-868a-742c86ef0f3c", "text": "\u60f3\u8c61\u4e00\u4e0b Nubian neon\uff0c\u8fd9\u662f\u4e00\u4e2a\u5e86\u795d\u97f3\u4e50\u3001\u827a\u672f\u548c\u65f6\u5c1a\u7684\u5a92\u4f53\u7a7a\u95f4\uff0c\u6db5\u76d6\u4e86\u5404\u79cd\u6587\u5316\u548c\u5e74\u4ee3"} +{"id": "6002694", "video_name": "539b1362-dea9-598d-96db-c01d81c8b3b5", "text": "\u521b\u9020\u4e00\u4e2a\u5feb\u4e50\u7684\u7011\u5e03\uff0c\u5468\u56f4\u662f\u5e78\u798f\u7684\u6811\u548c\u80cc\u666f\u7684\u5c71\u8109\uff0c\u50cfBob Ross\u98ce\u683c\u4e00\u6837\uff0c\u5411\u5de6\u79fb\u52a8\u62cd"} +{"id": "8001151", "video_name": "3365230f-f707-5329-b553-f9f39d471392", "text": "\u56db\u4e2a\u5973\u5b69\u63a2\u7d22\u4e00\u4e2a\u5e9f\u5f03\u7684\u57ce\u5e02\u3002"} +{"id": "1004912", "video_name": "5ae47f02-4be9-53bc-9472-ce4da56a6b03", "text": "\u8001\u5f0f\u9ed1\u767d\u7535\u5f71\uff0c\u4e00\u4e2a\u5973\u4eba\u8d70\u4e0b\u697c\u68af\uff0c\u6211\u4eec\u4ece\u5730\u4e0b\u5ba4\u770b\u5230\uff0c\u5f88\u9ed1\u6697\u3002"} +{"id": "0005067", "video_name": "141eb2df-7940-5b0f-af86-46ed421b6369", "text": "\u5766\u514b\u5728\u5c4f\u5e55\u5185\u5916\u6eda\u52a8\u3002\n\nSource sentence: I am learning Chinese language."} +{"id": "4002598", "video_name": "d590e991-0b7d-56d4-a5bd-bf49e642d4e1", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u4ece\u7eb8\u98de\u673a\u4e2d\u98de\u4e86\u51fa\u6765\uff0c\u5c31\u50cf\u5929\u7a7a\u4e2d\u753b\u51fa\u7684\u7ebf\u4e00\u6837\u3002"} +{"id": "3006027", "video_name": "1584d474-5b73-5f31-ae45-0f5ee9866e2e", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u5728\u8d85\u73b0\u5b9e\u7684\u4e16\u754c\u91cc\n\nSource sentence: I am looking forward to the weekend."} +{"id": "3006577", "video_name": "9d9ddfde-4294-518b-a993-99362eb17e62", "text": "\u9713\u8679\u84dd\u8272\u57ce\u5e02\u4e2d\u6709\u4e00\u6761\u9053\u8def\u4e0a\u6709\u4e00\u8f86\u8f66\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u73af\u5f62\u884c\u661f\u3002"} +{"id": "2003370", "video_name": "1eb8b19d-f330-5f30-b2a7-12e702ba8bb9", "text": "\u661f\u9645\u5929\u4f7f\u9a6c\u5728\u5916\u592a\u7a7a\u4e2d\u3002\u79d1\u5e7b\u30011980\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "1006530", "video_name": "7797517d-a921-5882-8aab-943a5a23d7a0", "text": "\u68ee\u6797\u91cc\u6709\u5f88\u591a\u52a8\u7269\u3002"} +{"id": "6003311", "video_name": "468ebbe2-4a72-54cd-8541-ed246ec96009", "text": "\u4ec0\u4e48\u90fd\u6ca1\u6709\u751f\u957f\uff0c\u4ec0\u4e48\u90fd\u6ca1\u6709\u98de\u8fc7\uff0c\u4ec0\u4e48\u90fd\u6ca1\u6709\u8d70\u52a8\uff0c\u4ec0\u4e48\u90fd\u6ca1\u6709\u8bf4\u8bdd\u3002"} +{"id": "6002921", "video_name": "26726e87-9ffa-5307-beb6-ef525599049d", "text": "\u4e00\u4e2a\u53ebMia\u7684\u5e74\u8f7b\u5973\u5b69\u52e4\u594b\u5730\u7ec3\u4e60\uff0c\u5b66\u4e60\u6df7\u5408\u989c\u8272\u5e76\u6355\u6349\u5b83\u4eec\u7684\u672c\u8d28\u3002"} +{"id": "2006809", "video_name": "99338f49-aec4-5bf7-a99d-a2c85279c6cd", "text": "\"\u7a7f\u7740\u8fbe\u65af\u00b7\u7ef4\u8fbe\u670d\u88c5\u7684\u51b0\u7403\u8fd0\u52a8\u5458\u5728\u51b0\u4e0a\u4e0e\u5176\u4ed6\u8fd0\u52a8\u5458\u6bd4\u8d5b\uff0c\u89c2\u4f17\u5e2d\u4e0a\u6709\u6570\u5343\u540d\u89c2\u4f17"} +{"id": "6002581", "video_name": "ebc02673-f290-560f-9845-ce846afd8d1d", "text": "\u732b\u5973\u7a7f\u7740\u7d27\u8eab\u9713\u8679\u8272\u670d\u88c5\u5750\u5728\u65e5\u672c\u7684\u6469\u6258\u8f66\u4e0a\uff0c\u53d1\u52a8\u5f15\u64ce\u3002"} +{"id": "2005112", "video_name": "22c76267-2266-51a4-8c48-ab426faf4dd1", "text": "\u591c\u7a7a\u4e2d\u7684\u6df1\u84dd\u8272\u548c\u95ea\u70c1\u7684\u661f\u661f\u3002"} +{"id": "2003674", "video_name": "5e109981-b1f4-552f-9450-0ca3db020bc7", "text": "\u5e02\u7acb\u56fe\u4e66\u9986\u76db\u5927\u5f00\u5e55\u3002"} +{"id": "8003756", "video_name": "ec9945c3-ca85-53ac-8b94-39a842ab2d43", "text": "Source sentence: \u9e21\u6ca1\u6709\u5174\u8da3\u8fc7\u9a6c\u8def\uff0c16:9\uff0c\u6c7d\u8f66\u5728\u80cc\u666f\u4e2d\u79fb\u52a8\u3002"} +{"id": "1005378", "video_name": "62e0604a-7c1c-53cc-ac0c-a029e30b50dd", "text": "\u6e05\u6668\u7684\u592a\u9633\u5347\u8d77\u5f97\u5f88\u5feb\uff0c\u7f8e\u4e3d\u7684\u5149\u7ebf\u7167\u8000\u5728\u6c34\u9762\u4e0a\uff0c4K\uff0c\u89c6\u89c9\u6548\u679c\u5f88\u50cf\u7535\u5f71\u3002"} +{"id": "6002093", "video_name": "38af854f-d3bf-51b2-a33a-bbe66c8abcd1", "text": "\u96e8\u6797\u7011\u5e03 NO"} +{"id": "7003347", "video_name": "8ff9f851-e992-52d1-9cf6-1547c2e5c6bf", "text": "\u573a\u666f\u8bbe\u5b9a\u5728\u4e00\u5bb6\u7e41\u5fd9\u7684\u6c7d\u8f66\u4fee\u7406\u5e97\uff0c\u80cc\u666f\u4e2d\u8fd8\u6709\u5176\u4ed6\u673a\u4fee\u5de5\u5728\u4fee\u7406\u6c7d\u8f66\u3002"} +{"id": "4003647", "video_name": "ab07c077-c1a6-5e4c-9a87-6bb9ad7d3d76", "text": "\u4e24\u4e2a\u4eba\u4ece\u5361\u8f66\u4e0a\u5378\u4e0b\u7bb1\u5b50\u3002"} +{"id": "3005547", "video_name": "f4d8d67b-0a09-54e1-8792-3c0ef70f6fbc", "text": "\u62c9\u6731\u6b63\u5728\u4e66\u4e2d\u5199\u4f5c\uff0c\u8bb0\u5f55\u4ed6\u7684\u667a\u6167\u548c\u89e3\u51b3\u65b9\u6848\uff0c\u4e3a\u672a\u6765\u7684\u4e16\u4ee3\u505a\u51fa\u8d21\u732e\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "6002627", "video_name": "212b8b90-777f-5f9a-92ab-9bd5926f8531", "text": "\u795e\u548c\u4e00\u7fa4\u5929\u4f7f\u964d\u4e34\u5230\u5730\u7403\u4e0a\u3002"} +{"id": "6004348", "video_name": "814913ca-9ce6-5da2-9957-4d21570e62ca", "text": "\u5728\u591c\u665a\u7684\u53e2\u6797\u88e1\uff0c\u6709\u4e00\u500b\u71df\u706b\u548c\u52d5\u7269\u773c\u775b\u5728\u80cc\u666f\u767c\u5149\u3002"} +{"id": "8002907", "video_name": "907fd29d-5534-50f5-ba83-41e407b6c4f6", "text": "\u7eff\u8349\u4e18\u9675\u4e0a\u6709\u63a5\u8fd1\u5730\u9762\u7684\u4e91\u3002"} +{"id": "7002111", "video_name": "c37bd17c-b1cb-5444-9978-6c1792172924", "text": "Translation: \u4e00\u4e2a\u5341\u51e0\u5c81\u7684\u5973\u5b69\u5728\u9601\u697c\u91cc\u53d1\u73b0\u4e86\u4e00\u4e2a\u795e\u79d8\u7684\u76d2\u5b50\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "3006225", "video_name": "f5a4fb3e-d30f-5dc5-9dab-dd15948c9be0", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6050\u60e7\u4e2d\u5954\u5411\u6811\u6797\uff0c\u96e8\u6c34\u843d\u4e0b\uff0c\u6444\u5f71\u673a\u65cb\u8f6c\uff0c\u7535\u5f71\u822c\u7684\u98ce\u683c\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "7002676", "video_name": "08d1b44d-0b7e-5127-9b62-6872514ba5a5", "text": "\u72d7\u519b\u961f\u5229\u7528\u4eba\u5de5\u667a\u80fd\u62ef\u6551\u4eba\u7c7b\u3002"} +{"id": "8002151", "video_name": "ba5bc41c-a150-5bf6-b82d-cd3306f0211b", "text": "\u5973\u6027\u5728\u5927\u5c4f\u5e55\u4e0a\u7ec6\u81f4\u5730\u64cd\u4f5c\u7740\u4e00\u4e2aAI\uff0c\u4f7f\u75284K\u7684\u4f73\u80fdCinema EOS\u76f8\u673a\u3002"} +{"id": "4002128", "video_name": "af3d0a71-4907-598a-ae5e-e66943d0145c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u7535\u89c6\u4e3b\u6301\u4eba\u5728\u65b0\u95fb\u8282\u76ee\u4e2d\u64ad\u62a5\u65b0\u95fb\u3002"} +{"id": "7003432", "video_name": "d69c37cf-8228-5420-89b0-bae699df9d31", "text": "\u95ea\u7535\u83b7\u5f97\u4e86\u7eff\u706f\u519b\u56e2\u7684\u529b\u91cf\u3002"} +{"id": "4004901", "video_name": "c2b9b8ad-ba8e-5dbb-a1d1-12cd0f75f8ee", "text": "\u5e03\u9c81\u8bfa\u00b7\u9a6c\u5c14\u65af\u5728\u5145\u6ee1\u751f\u673a\u548c\u8272\u5f69\u7684\u8857\u9053\u4e0a\u8df3\u821e\uff0c\u5176\u4ed6\u4eba\u4e5f\u5728\u8df3\u821e\u3002"} +{"id": "0005833", "video_name": "21ede3be-50cd-593d-86f6-ea4ed7d5674b", "text": "\u4eba\u7c7b\u548c\u673a\u5668\u4eba\u5e76\u80a9\u7ad9\u5728\u4e00\u8d77\u7684\u5f3a\u5927\u5f62\u8c61\uff0c\u8c61\u5f81\u7740\u5371\u673a\u4e2d\u953b\u9020\u7684\u56e2\u7ed3\uff0c\u56e0\u4e3a\u4ed6\u4eec\u5171\u540c\u52aa\u529b\u9632\u6b62\u91d1"} +{"id": "3004889", "video_name": "789074b7-9151-52d8-881c-41a348ddee43", "text": "\u963f\u535c\u675c\u62c9\u4f0a\u672c\u00b7\u7a46\u5df4\u62c9\u514b\u662f\u4e00\u4f4d\u6709\u5b66\u95ee\u7684\u4eba\u7269\uff0c\u6000\u7740\u76ee\u7684\u611f\u5f00\u59cb\u4ed6\u7684\u671d\u89d0\u65c5\u7a0b\u3002"} +{"id": "8003615", "video_name": "d16985d3-44e5-510c-b85e-d034e34b814f", "text": "\u4e07\u82b1\u7b52\u673a\u68b0\u7684\u91d1\u5c5e\u673a\u6784\u52a8\u753b\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "1005212", "video_name": "5ff7ad1a-4838-5e04-aef7-29642caabfb1", "text": "\u73b0\u5b9e\u7684\u524d\u65b9\u89c6\u89d2\uff0c\u4e0e\u4e09\u4e2a\u540c\u6837\u4f7f\u7528\u6c34\u5143\u7d20\u7684\u5deb\u5e08\u8fdb\u884c\u6218\u6597\uff0c\u4e3b\u89d2\u7528\u624b\u5f20\u5f00\u624b\u6307\uff0c\u5728\u5929\u7a7a\u6700\u9ed1\u6697\u7684\u4e91\u5c42\u4e2d"} +{"id": "6004246", "video_name": "2835ade6-ab9d-5a1b-8589-844518f80fed", "text": "\u6770\u897f\u00b7\u6587\u56fe\u62c9\u9a7e\u9a76\u8dd1\u8f66\u5728\u7a7a\u65f7\u7684\u57ce\u5e02\u8857\u9053\u73af\u5883\u4e2d\u8fdb\u884c\u7535\u5f71\u52a8\u4f5c\u955c\u5934\u62cd\u6444\u3002"} +{"id": "0003511", "video_name": "3ecd41d3-620b-5356-9bac-7ff9a6673fd7", "text": "\u4e24\u53ea\u732b\u773c\u5728\u591c\u665a\u7684\u8349\u5730\u4e0a\u6ce8\u89c6\u7740\u4e24\u4e2a\u4eba\u3002"} +{"id": "3005693", "video_name": "443ba6a1-518f-55a1-b8a7-b1e307a18042", "text": "\u6211\u4eec\u5728\u5b87\u5b99\u4e2d\u771f\u7684\u662f\u5b64\u72ec\u7684\u5417\uff1f"} +{"id": "6004262", "video_name": "5c14e967-279d-5194-8984-4e35079c6432", "text": "Translation: \u7f8a\u6bdb\u6be1\u67d4\u8f6f\u7684\u8d28\u5730\uff0c\u53ef\u7231\u7684\u519b\u7528\u608d\u9a6c\u602a\u7269\u5361\u8f66\uff0c\u9ad8\u6e0532K 3D\u6a21\u578b\uff0c\u5927\u8f6e"} +{"id": "1006689", "video_name": "7a9eba35-ad6c-5454-a436-9ef4d06196a0", "text": "\u5b69\u5b50\u4eec\u5728\u79cb\u5929\u7684\u68ee\u6797\u91cc\u73a9\u800d\u7740\u843d\u53f6\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "7004718", "video_name": "0afc7551-0aed-5125-b0cb-b5e0731e1c12", "text": "\u963f\u52aa\u6bd4\u65af\u673a\u5668\u4eba\uff0c\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7\u7ea6\u591a\u6d1b\u592b\u65af\u57fa\u7684\u68a6\u5883\u8272\u8c03\u3002"} +{"id": "7004671", "video_name": "e4bbdf87-9d3d-591c-b3b5-7620a416a52b", "text": "\u624b\u67aa\u5f00\u706b\uff0c\u7136\u540e\u7f29\u653e\u5230\u7a7a\u8154\u4e2d\uff0c\u663e\u793a\u4e9a\u745f\u00b7\u6469\u6839\u3002"} +{"id": "8002202", "video_name": "1f322e31-945d-58f2-9ffa-1899c4b182a7", "text": "\u4e94\u79d2\u949f\u7684\u52a8\u753b\uff0c\u98ce\u8f66\uff0c\u5c0f\u8138\u52a8\u753b\u3002"} +{"id": "8001963", "video_name": "14206141-ffff-5341-9307-2854831e7204", "text": "\u7a81\u7136\u95f4\uff0c\u4e00\u58f0\u641e\u7b11\u7684\u649e\u51fb\u58f0\u5728\u623f\u95f4\u65c1\u54cd\u8d77\u3002\n\nSource sentence: I need to buy some groceries for dinner tonight. \n\n\u6211\u9700\u8981\u4e70\u4e9b\u665a\u9910"} +{"id": "0005397", "video_name": "1a17fa4b-7657-57a8-a462-0d367be4b187", "text": "\u53e4\u4ee3\u4e2d\u6587\u8bd7\u6b4c\uff1a\u51cb\u96f6\u7684\u85e4\u8513\uff0c\u8001\u6811\uff0c\u9ec4\u660f\u7684\u4e4c\u9e26\uff1b\u4e00\u5ea7\u5c0f\u6865\uff0c\u6d41\u6c34\u548c\u4e00\u4e9b\u5c0f"} +{"id": "2007097", "video_name": "f90553e8-4f8a-56cf-a82d-05d52ea845d1", "text": "\u6211\u7684\u5e94\u7528\u7a0b\u5e8fPopup\u9700\u8981\u52a8\u753b\u3001\u76f4\u64ad\u8d2d\u7269\u548c\u5e02\u573a\uff08\u6742\u5fd7\u3001\u8fbe\u8fbe\u4e3b\u4e49\u3001\u6ce2\u666e\u827a\u672f\u3001\u84dd\u5929\uff09\u7684\u652f\u6301\u3002"} +{"id": "0004242", "video_name": "05a73523-100f-5353-ab2b-8429004e5d98", "text": "\u4e24\u4e2a\u7537\u6027\u80cc\u9760\u80cc\u62e5\u62b1\uff0c\u671b\u7740\u5e03\u5b9c\u8bfa\u65af\u827e\u5229\u65af\u5efa\u7b51\u3001\u8bbe\u8ba1\u548c\u57ce\u5e02\u89c4\u5212\u5b66\u9662\u3002"} +{"id": "1005253", "video_name": "60a1c552-b7d6-5614-bd22-bb998bc8002e", "text": "\u7f57\u6469\u795e\u548c\u5e0c\u5854\u592b\u4eba\u7684\u5076\u50cf"} +{"id": "6004116", "video_name": "3025a283-33eb-5cf9-8f5d-30a5b3ca86f4", "text": "\u60f3\u8c61\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u5f62\u8c61\u5728\u884c\u8d70\u3002"} +{"id": "0006208", "video_name": "287409e0-fbf8-57a7-9231-16df1a8a35b3", "text": "\u4e94\u5f69\u7f24\u7eb7\u7684\u91ce\u82b1\u5728\u65e5\u5f0f\u82b1\u56ed\u4e2d\u968f\u98ce\u6447\u66f3\uff0c\u7011\u5e03\u6d41\u6c34\uff0c\u5149\u5f71\u4ea4\u9519\uff0c\u548c\u8c10\u5b9c\u4eba\uff0c"} +{"id": "2004399", "video_name": "608ff3d3-0b54-5c4a-914f-74882954afd6", "text": "\u4e00\u53ea\u7a7f\u7740\u76d4\u7532\u7684\u9a6c\u5728\u5c71\u4e18\u4e0a\u5954\u8dd1\u7684\u7535\u5f71\u77ed\u7247"} +{"id": "6002427", "video_name": "1c5779a8-4943-5144-aaab-315c449b580b", "text": "24 \u5e27\u6bcf\u79d2\u7684\u4fa6\u63a2\u529e\u516c\u5ba4\u63d0\u793a\uff1a\u4ee5\u9ed1\u9e70\u5760\u843d\u7684\u98ce\u683c\u4e3a\u57fa\u7840\uff0c\u4f7f\u7528\u4ece\u4e0a\u65b9\u62cd\u6444\u7684\u8d85\u8be6\u7ec6\u9ed1"} +{"id": "3006319", "video_name": "1a327d19-ba1f-57d5-9309-7e657785bd3d", "text": "\u4e00\u6247\u95e8\u6162\u6162\u5730\u6253\u5f00\uff0c\u900f\u8fc7\u95e8\u4f20\u6765\u5149\u4eae\uff0c\u98ce\u683c\u903c\u771f\uff0c\u753b\u9762\u62c9\u8fdc\u3002"} +{"id": "3005480", "video_name": "fb171863-9ba4-5f22-8d37-9e79e67124e7", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5730\u4e0a\u878d\u5316\u3002"} +{"id": "6002987", "video_name": "5b28583d-f72b-56fd-950c-4e4b0d873614", "text": "\u6709\u94b1\u4eba\u4e70\u4e86\u4e00\u5757\u4ef7\u503c\u767e\u4e07\u7f8e\u5143\u7684\u6bd4\u8428\u3002"} +{"id": "1003474", "video_name": "40613d44-8082-5de6-9318-6c4ade83df4c", "text": "\u4e24\u4e2a\u6454\u8de4\u624b\u5728\u6253\u6597\u3002\u5176\u4e2d\u4e00\u4e2a\u5f88\u5065\u5eb7\uff0c\u800c\u53e6\u4e00\u4e2a\u5f88\u865a\u5f31\u3002\u5065\u5eb7\u7684\u662fOdoo\uff0cOdoo\u7684\u5236\u670d\u662f\u7c89\u8272"} +{"id": "2005497", "video_name": "bf689666-c480-5bfe-8643-66d634f75489", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u5c55\u793a\u4e9a\u5386\u5c71\u5927\u5f81\u670d\u5730\u533a\u540e\u7684\u5e0c\u814a\u5316\u6587\u5316\u4f20\u64ad\u60c5\u51b5\uff0c\u5e76\u5448\u73b0\u6765\u81ea\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u4eec\u8fdb\u884c\u601d"} +{"id": "5001459", "video_name": "8ed538d0-e66a-5324-a08b-1798d6ca0907", "text": "\u534e\u5c14\u5179\u4e0e\u5df4\u5e0c\u5c14\u98ce\u683c\u7684\u52a8\u753b\u7535\u5f71\u300a\u52a8\u7269\u519c\u573a\u300b\u3002"} +{"id": "1004735", "video_name": "57c01749-21b7-5493-92f2-e19491cbb5ce", "text": "\u6210\u763e\u662f\u4e00\u79cd\u751f\u7406\u4e0a\u7684\u53cd\u5e94\u3002 \n\nSource sentence: The company's profits have increased by 20% this year. \n\n\u516c\u53f8\u4eca\u5e74\u7684\u5229\u6da6\u589e\u957f\u4e8620%\u3002"} +{"id": "6002732", "video_name": "2e7facb1-94d4-5537-bc51-7c8df0a4a6ab", "text": "Translation: \u5c0f\u5973\u5b69\u5728\u9ece\u660e\u65f6\u5206\u5728\u7530\u91ce\u4e2d\u91c7\u82b1\uff0c\u5730\u5e73\u7ebf\u4e0a\u6709\u4e00\u4e9b\u84dd\u8272\u7684\u6811\u6797\uff0c\u573a\u666f\u662f\u52a8\u753b\u7684\u3002"} +{"id": "5001470", "video_name": "69f094d6-51bc-51d8-a541-8245db49a620", "text": "3D\u6253\u5370\u673a\u6559\u5199\u5b57\u7ed9\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "4003844", "video_name": "e48963b0-03af-5079-9563-efced83e875f", "text": "\u7ef4\u591a\u5229\u4e9a\u88c5\u626e\u7684\u5de7\u514b\u529b\u5bb6\u5ead\u5728\u8df3\u821e\u3002"} +{"id": "7004797", "video_name": "07c1e0dd-5124-5522-96ff-bf44db8434be", "text": "\u4e00\u4f4d\u91d1\u53d1\u7f8e\u5973\u6b63\u5728\u6d77\u8fb9\u8d70\u52a8\u3002"} +{"id": "3003704", "video_name": "4779aac3-f1ac-5d94-a4c9-7569adb455f0", "text": "\u7535\u5f71\u955c\u5934\u4e2d\u7684\u6807\u5fd7\u6027\u5973\u6f14\u5458\u54ed\u6ce3\uff0c\u8272\u5f69\u5904\u7406\uff0c\u7535\u5f71\u611f\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u4ee4\u4eba\u60ca\u53f9\u7684\u573a\u666f\uff0c\u9ad8\u5ea6\u8be6"} +{"id": "1004211", "video_name": "4dcd4991-bda6-5a79-9a34-3e59581aaa9c", "text": "\u5bfb\u627e\u4eba\u751f\u7b54\u6848\u7684\u4eba\u6f2b\u65e0\u76ee\u7684\u5730\u884c\u8d70\u3002"} +{"id": "1006691", "video_name": "7aa1fbeb-837d-5104-a60c-d127175078d0", "text": "\u7ef5\u7f8a\u5728\u5403\u8349\uff0c\u72fc\u5728\u5b88\u536b\u5b83\u4eec\uff0c\u963f\u62c9\u4f2f\u7a46\u65af\u6797\u5987\u5973\u5728\u7948\u7977\u5e76\u547c\u5524\u5979\u4eec"} +{"id": "4004567", "video_name": "2638527d-80be-5ce1-b5c9-e47906a81e45", "text": "\u4ed6\u4eec\u7684\u7b2c\u4e00\u7ad9\u662f\u57ce\u9547\u8fb9\u7f18\u7684\u9b54\u6cd5\u68ee\u6797\uff0c\u90a3\u91cc\u7684\u53e4\u8001\u6811\u6728\u4f4e\u8bed\u7740\u79d8\u5bc6\uff0c\u68ee\u6797\u751f\u7269"} +{"id": "5001063", "video_name": "e0e8dc3b-59a3-52b2-8cf7-2cbde57ab849", "text": "\u5973\u5b69\u5168\u8eab\u9762\u5411\u6d77\u6ee9\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\uff0c\u5915\u9633\u3001\u8fb9\u7f18\u5149\u3001\u80cc\u666f\u865a\u5316\u3001\u5149\u8292\u7efd\u653e\uff0c\u7535\u5f71\u822c"} +{"id": "6002262", "video_name": "c246391f-f44d-5980-b6c5-12e318e3527c", "text": "AI\u9a71\u52a8\u7684\u673a\u5668\u4eba\u5728\u5148\u8fdb\u5de5\u5382\u4e2d3D\u6253\u5370\u623f\u5c4b\u3002"} +{"id": "0006089", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "\u4e00\u7247\u6709\u5927\u6811\u548c\u9e1f\u513f\u98de\u7fd4\u7684\u68ee\u6797\uff0c\u8272\u5f69\u4e30\u5bcc\u3001\u903c\u771f\uff0c\u89c6\u89d2\u6781\u4f73\u3002"} +{"id": "3006426", "video_name": "f513c9a4-411c-50a1-bc4b-69042ecd3a31", "text": "\u4ece\u4e0a\u65b9\u89c6\u89d2\u89c2\u770b\uff0c\u5c55\u793a\u9f13\u624b\u4ee5\u4e5d\u5bf8\u9489\u5b50\u98ce\u683c\u6f14\u594f\u91cd\u91d1\u5c5e\u9f13\u3002"} +{"id": "6002606", "video_name": "33f93f7a-26b2-534c-b7a9-48b2479b151a", "text": "\u7345\u5b50\u8eba\u5728\u5973\u5b69\u8eab\u4e0a\uff0c\u53ea\u6709\u5979\u7684\u982d\u90e8\u53ef\u898b\u3002\u5973\u5b69\u8a66\u5716\u9003\u812b\u3002"} +{"id": "8003449", "video_name": "fe50a9f0-cdf2-5029-a9ad-af5c4382f58c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728AI\u4e16\u754c\u4e2d\u8df3\u821e\uff0c8k\u3002"} +{"id": "3005172", "video_name": "fc28bbd3-2dd9-58dd-927a-3a4891455ca1", "text": "\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u89c6\u89d2\u3002\u4e00\u5ea7\u5c0f\u6728\u5c4b\u5750\u843d\u5728\u5c71\u8c37\u4e2d\u3002\u6b63\u5728\u4e0b\u96ea\u3002\u975e\u5e38\u8be6\u7ec6\u3002\u6709\u5929\u9645\u7ebf\u611f\u89c9\u3002\u6444\u50cf\u673a\u5411"} +{"id": "2004069", "video_name": "9ddb30b0-6758-5c8b-a2a6-14aa50123417", "text": "\u7a7f\u7740\u660e\u4eae\u670d\u88c5\u7684\u821e\u8005\u5728\u8282\u65e5\u4e0a\u8868\u6f14\u3002"} +{"id": "6003968", "video_name": "3d4bda1d-66cf-5474-b901-69bd468cd54d", "text": "\u6ce2\u5170\u58eb\u5175\u57281945\u5e74\u6218\u80dc\u4e86\u5fb7\u56fd\u4eba\u3002"} +{"id": "8001749", "video_name": "4c061fe4-a9d6-5960-abba-5b3311b7f877", "text": "\u5973\u5b69\u7ad9\u5728\u516c\u4ea4\u8f66\u7ad9\uff0c\u9ad8\u5206\u8fa8\u7387\u3001\u6162\u52a8\u4f5c\u3001\u9ad8\u7ec6\u8282\u3001\u9ad8\u8d28\u91cf\u30018K\u3001\u9ad8\u6e05\u56fe\u50cf\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002336", "video_name": "353e5262-467f-5d7f-b784-5fe088a5de35", "text": "\u5728\u4e00\u4e2a\u6708\u9ed1\u98ce\u9ad8\u7684\u591c\u665a\uff0c\u5199\u4e00\u4e2a\u5145\u6ee1\u5bd2\u610f\u548c\u6c14\u6c1b\u7684\u6545\u4e8b\uff0c\u4e00\u4e2a\u5973\u4eba\u6210\u4e3a\u4e86\u6240\u6709\u9047\u5230\u5979\u7684\u4eba\u6700\u53ef\u6015"} +{"id": "6002351", "video_name": "42eebb21-200b-57f8-a8e3-afa1f8dbd364", "text": "\u5e9f\u5f03\u7684\u8f6c\u8fd0\u96a7\u9053\uff0c\u900f\u8fc7\u5149\u7ebf\u663e\u9732\u51fa\u4e94\u5f69\u7f24\u7eb7\u7684\u6d82\u9e26\u3002"} +{"id": "2004267", "video_name": "d49c1c2d-8a2f-5f89-a4ac-214b30746366", "text": "\u4e00\u68f5\u9ad8\u5927\u7684\u6811\u5728\u5317\u4eac\u6545\u5bab\u91cc\u6f2b\u6b65\u3002"} +{"id": "8001804", "video_name": "7fab32d5-899f-5456-a238-e6345f8e13f5", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u6e38\u620f\u4e2d\u7684\u4e24\u4e2a Roblox \u89d2\u8272\u3002"} +{"id": "0005317", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960\u5e74\u7684\u827a\u672f\u7535\u5f71\u5c55\u793a\u4e86\u4e00\u4e2a\u8349\u8ff7\u5bab\u548c\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u5973\u4eba\u5728\u5bfb\u627e\u8ff7\u5bab\u7684\u51fa\u53e3\u3002"} +{"id": "2004207", "video_name": "06189f5b-f6bd-5974-aba5-d40eb8422ce1", "text": "\u9f99\u73e0Z\u98ce\u683c\u7684\u519c\u5386\u5e74\u3002"} +{"id": "8003335", "video_name": "72ab484c-cda6-553a-894d-f4874e912152", "text": "\u4eba\u5728\u9ed1\u591c\u4e2d\u5e26\u7740\u80cc\u666f\u706f\u5149\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c4K\u3002"} +{"id": "7002563", "video_name": "1aa17dbd-68df-53b1-ba4b-0d43fecef9ca", "text": "\u8c6a\u534e\u6d77\u6ee9\u522b\u5885\uff0c\u6d77\u6d6a\u9633\u5149\u95ea\u8000\u3002"} +{"id": "1005132", "video_name": "5e9dd0b7-3747-5edd-ad9b-32dd86496bf9", "text": "\u6c7d\u8f66\u7a7f\u8fc7\u6c99\u6f20\uff0c\u6700\u7ec8\u5230\u8fbe\u4e00\u4e2a\u65b0\u7684\u73b0\u4ee3\u5316\u57ce\u5e02\u3002"} +{"id": "3006923", "video_name": "64ab1018-eec8-53eb-935d-d60645dc4e7b", "text": "\u4e00\u5e45\u7ed8\u6709\u5404\u79cd\u989c\u8272\u3001\u4e91\u6735\u548c\u661f\u7403\u7684\u5929\u7a7a\uff0c\u6709\u6d41\u661f\u548c\u661f\u661f\u7684\u753b\u4f5c\uff0c\u662f\u7531DeviantArt\u6bd4\u8d5b\u83b7\u80dc\u8005Noah Bradley"} +{"id": "1006443", "video_name": "75f24bc1-5208-5a20-86d5-4efd2e394287", "text": "\u4e00\u4e2a\u4ece\u6811\u4e0a\u6389\u843d\u7684\u82f9\u679c\u7684\u7535\u5f71\u8fd0\u52a8\u955c\u5934\uff0c\u5fae\u8ddd\uff0c4k"} +{"id": "3003143", "video_name": "6fb0361b-14a0-5649-8e7e-05c46483a62b", "text": "\u4e24\u53ea\u76ae\u514b\u65af\u98ce\u683c\u7684\u732b\u5934\u9e70\u5728\u68ee\u6797\u4e2d\u98de\u884c\uff0c\u5bfb\u627e\u68ee\u6797\u670b\u53cb\u3002"} +{"id": "2003427", "video_name": "ef69c2b7-fa39-5493-b1a4-6b1e67893576", "text": "\u5236\u4f5c\u4e00\u6bb5\u5361\u901a\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5176\u4e2d\u4e09\u6839\u4e0d\u540c\u989c\u8272\u7684\u7ebf\u98de\u884c\u5728\u4e00\u8d77\uff0c\u7136\u540e\u5b83\u4eec\u90fd\u878d\u5408\u6210\u4e00\u6839\u767d\u8272\u7ebf\u3002"} +{"id": "0004105", "video_name": "034c5018-9172-5425-aaef-7f45752973bc", "text": "\u4e00\u4e2a\u5728\u6d77\u6ee9\u4e0a\u884c\u8d70\u7684\u7537\u4eba\u7a81\u7136\u4ee5\u7535\u5f71\u5f0f\u8dcc\u5012\u5230\u6c34\u91cc\u3002"} +{"id": "0003468", "video_name": "3e200f7b-cc01-5fb8-8af8-2b862baed1b3", "text": "\u53c2\u4e0e\u8005\u56e0\u6050\u60e7\u800c\u762b\u75ea\uff0c\n\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6050\u60163D\u56fe\u50cf\u3002"} +{"id": "3003712", "video_name": "0c40723b-0fcb-53fa-8ae2-48583b242f47", "text": "\u7f51\u7edc\u6c7d\u8f66\u5728\u591c\u57ce\u4e2d\u884c\u9a76\u3002"} +{"id": "2004630", "video_name": "86551ec8-98ea-5371-bc48-cac40a2af0c0", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u975e\u5e38\u62e5\u6324\u5608\u6742\u7684\u516c\u4ea4\u8f66\u4e0a\u7761\u89c9\u3002"} +{"id": "8001997", "video_name": "500c29e8-39f0-5e17-a449-9bcbac8e2919", "text": "\u5728\u5357\u975e\u516c\u56ed\u91cc\uff0c\u8001\u4eba\u4eec\u5728\u6674\u6717\u7684\u65e5\u5b50\u91cc\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "4002759", "video_name": "f054a8f9-a253-5b85-ae79-b7dfbdb7c2f9", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u5609\u5e74\u534e\u644a\u4f4d\u5728\u96fe\u8499\u8499\u7684\u591c\u665a\u3002"} +{"id": "0003067", "video_name": "3661a3cc-adc3-5c25-b0b6-5cc3a1c78d87", "text": "\u9b3c\u706b\u9f8d\u5361\u901a\u5c04\u51fa\u6fc0\u5149\u5230\u7e41\u5fd9\u64c1\u64e0\u7684\u57ce\u5e02\u4e2d\u3002"} +{"id": "2004157", "video_name": "05a4fa29-3c1f-574e-b17b-9e1e68725cc4", "text": "3D\u52a8\u753b\u3002\u6709\u4e00\u5929\u6e05\u6668\uff0cSparky\u7ad9\u5728\u6811\u679d\u4e0a\uff0c\u542c\u5230\u4ed6\u7684\u670b\u53cbBenny the Bunny\u7684\u6c42\u6551\u58f0\u3002"} +{"id": "3006826", "video_name": "05d994ea-9cce-5102-9fce-4961af31cc95", "text": "\u5236\u4f5c\u4e00\u90e8\u6709\u8da3\u76842D\u5361\u901a\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u4f20\u7edf\u5370\u5ea6\u5973\u6027\u5728\u8def\u8fb9\u5356\u9c7c\u7684\u6545\u4e8b\u3002"} +{"id": "1006067", "video_name": "6f649649-fdb5-50e1-9cfe-324fa816bc3e", "text": "\u70ed\u817e\u817e\u3001\u84b8\u6c14\u817e\u817e\u7684\u65b0\u9c9c\u62ab\u8428\u653e\u5728\u5207\u83dc\u677f\u4e0a\u3002"} +{"id": "7004834", "video_name": "7ce6c19b-7ec9-55df-b502-bde8993aeeeb", "text": "\u4e00\u7247\u4e0b\u96e8\u7684\u68ee\u6797\u91cc\uff0c\u6709UFO\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "2005590", "video_name": "578b8d79-1d4e-575c-b409-4fa534fec8d8", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u52a8\u753b3D\u89d2\u8272\u4e92\u76f8\u73a9\u800d\u3002"} +{"id": "3006283", "video_name": "e8b23020-514a-54ce-bb70-4209c9f93119", "text": "\u5728\u98de\u673a\u4e0a\u4e00\u540d\u7537\u5b50\u548c\u4ed6\u7684\u72d7\u5435\u67b6\u3002"} +{"id": "5001751", "video_name": "7f74b238-df48-548f-8f96-fc29c91698ca", "text": "\u4e24\u540d\u5c11\u5e74\u6b66\u58eb\u7a7f\u7740\u7b80\u5355\u7684\u6218\u6597\u88c5\u5907\u4ee5\u67d4\u672f\u98ce\u683c\u640f\u6597\u3002"} +{"id": "3003549", "video_name": "7ede276b-083c-58db-b465-9bb3b5eca2d5", "text": "LSD\u52a8\u753b\u83b7\u5956\u6c49\u5821\u6309\u94ae\u88ab\u6309\u4e0b\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7004989", "video_name": "bba6814d-ec9a-59b7-81c6-59783606638c", "text": "\u80cc\u666f\u4e2d\u7684\u5f69\u8679\u5411\u4e0b\u6d41\u52a8\u3002"} +{"id": "8002153", "video_name": "447543f4-396e-5f00-8965-0c083ac469b6", "text": "\u8001\u9f20\u62ff\u7740\u4e00\u5757\u5976\u916a\u4ece\u732b\u90a3\u91cc\u9003\u8dd1\u3002"} +{"id": "0004309", "video_name": "06dff108-e6ff-5ef2-8008-ac0b432f27ee", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u6c99\u9762\u56e2\u88ab\u5207\u5272\u6210\u5782\u76f4\u7684\u8584\u7247\u3002"} +{"id": "2005709", "video_name": "7579a212-af0e-5801-a9c3-4d8acf4396ba", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\uff0c\u4e00\u7247\u8349\u4e1b\u5728\u98ce\u5411\u4e2d\u79fb\u52a8\u5f62\u6210\u4e00\u7247\u96fe\u6c14\u3002"} +{"id": "1006159", "video_name": "70c5d588-20a3-5281-82ed-428dfc186f80", "text": "\u573a\u666f\u4e09\uff1a\u8015\u5730\n\u6c64\u59c6\u548c\u827e\u739b\u6ee1\u6000\u51b3\u5fc3\u5730\u7528\u4f20\u7edf\u519c\u5177\u8015\u7530\u3002\u5e84\u7a3c\u751f\u957f\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec"} +{"id": "3003029", "video_name": "76a77aef-4837-5abc-b6c4-712b8c4bf499", "text": "AR\u6821\u56ed\u5ba4\u5185\u5bfc\u822a\u5e94\u7528\u7a0b\u5e8f\uff0c\u914d\u5907\u670b\u53cb\u67e5\u627e\u529f\u80fd\u7684\u4ecb\u7ecd\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "7004062", "video_name": "84755021-98c1-550b-97fe-562e43a13111", "text": "\u52a8\u753b\uff0c\u8ba9\u89d2\u8272\u6f14\u594f\u4e50\u5668\u3002"} +{"id": "6004947", "video_name": "a13f64cb-bfcd-5c85-b8ed-dda2da92df2e", "text": "\u4e00\u540d\u7537\u5b50\u548c\u4e00\u540d\u5973\u5b50\u7a7f\u7740\u8ff7\u5f69\u670d\u6a2a\u7a7f\u9a6c\u8def\u4e00\u8d77\u6162\u8dd1\u3002"} +{"id": "3005223", "video_name": "380f8087-e81d-5aea-becb-953fa7285de2", "text": "\u7537\u4eba\u8eab\u7a7f\u4e8c\u6218\u5236\u670d\uff0c\u53cc\u624b\u62b1\u7740\u5a74\u513f\uff0c\u751f\u6d3b\u5e78\u798f\u7684\u4e8c\u6218\u5ba3\u4f20\u827a\u672f\u3002"} +{"id": "2005934", "video_name": "6be4f316-8637-59da-8e69-65e330a32591", "text": "\u5927\u5b66\u5973\u751f\u60f3\u8981\u51fa\u56fd\u7559\u5b66\u533b\u5b66\u4e13\u4e1a\uff0c\u672a\u6765\u533b\u751f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1004242", "video_name": "4e7e6eb2-72ed-523f-8dab-be379a341ba8", "text": "\u5f26\u4e50\u624b\u5728\u6c99\u6f20\u80cc\u666f\u4e0b\u6f14\u594f Fender Jazzmaster \u5409\u4ed6\uff0c\u955c\u5934\u8fdc\u79bb\u3002"} +{"id": "3005330", "video_name": "6d6b7124-f8fc-5b85-aae7-80c48c65260f", "text": "\u5154\u5154\u50cf\u8d85\u4eba\u4e00\u6837\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u4ece\u773c\u775b\u4e2d\u5c04\u51fa\u6fc0\u5149\uff0c\u975e\u5e38\u903c\u771f\u8be6\u7ec6\u3002"} +{"id": "3006791", "video_name": "49e00a1a-4b2d-51c5-8fac-cf65b6b2d96a", "text": "\u6e34\u671b\u4e0e\u8001\u670b\u53cb\u91cd\u805a"} +{"id": "3006550", "video_name": "63ed1b07-73bc-5b32-a79b-89078a068661", "text": "\u7537\u4eba\u89c2\u770b\u5f57\u661f\u98de\u8fc7\u5929\u7a7a\uff0c\u7535\u5f71\u822c\u768416:9\u753b\u9762\u3002"} +{"id": "7004200", "video_name": "04cb8da2-342c-5506-abc1-b4dce6ea03cd", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8138\u4e0a\u6d82\u62b9\u4e00\u6839\u7528\u94f6\u505a\u7684\u9ec4\u6cb9\u3002"} +{"id": "0004466", "video_name": "0996854f-da0e-52ff-b8f5-48062ae17628", "text": "\u80cc\u666f\u4e0b\u98d8\u96ea\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c8\u5e27\u6bcf\u79d2\u3002"} +{"id": "0003876", "video_name": "4505dd16-3f6f-5c79-8d57-00ba3eb2c6c0", "text": "\u4e00\u4e2a\u5b66\u751f\u6254\u4e86\u4e00\u4e2a\u6a61\u76ae\u3002"} +{"id": "8001173", "video_name": "dc0b44e4-793d-5e73-8c69-de4a2a6e275e", "text": "\u4e00\u4e2a\u4eba\u5728\u7a7a\u95f4\u91cc\u51a5\u60f3\u7684\u526a\u5f71"} +{"id": "3005304", "video_name": "61ba1f64-532a-5d35-bab6-705ceb9d1665", "text": "\u7a7f\u7740\u6df1\u84dd\u8272\u897f\u88c5\u768450\u591a\u5c81\u767d\u4eba\uff0c\u7559\u7740\u7070\u8272\u5934\u53d1\uff0c\u5728\u5de6\u81c2\u4e0a\u62b1\u7740\u4e00\u53ea\u5409\u5a03\u5a03\uff0c\u5e76"} +{"id": "8001771", "video_name": "f2c14cc7-1170-5748-b797-5d787bc7a478", "text": "\u4e2d\u56fd\u53e4\u4ee3\u7684\u6218\u58eb\u4eec\u5728\u591c\u665a\u5bf9\u57ce\u5899\u8fdb\u884c\u56e2\u4f53\u653b\u51fb\u3002"} +{"id": "1006739", "video_name": "7b6e8011-aee7-5895-80cc-a28e34e0266d", "text": "\u751f\u6210\u4e00\u5f20\u533b\u751f\u548c\u8fc8\u514b\u00b7\u6cf0\u68ee\u8ba8\u8bba\u95ee\u9898\u7684\u56fe\u7247\uff0c\u5f3a\u8c03\u5bf9\u8bdd\u7684\u4e25\u8083\u6027\uff0c\u7740\u91cd\u8868\u73b0\u9762\u90e8\u8868\u60c5\u548c\u8eab\u4f53\u8bed\u8a00\u3002"} +{"id": "6004096", "video_name": "012081f4-d83e-5cf1-9ea5-b87264663955", "text": "\u4e00\u4e2a\u7ad9\u7acb\u7740\u7684\u5927\u9e1f\uff0c\u957f\u7740\u4e00\u53ea\u5927\u5599\u548c\u84dd\u8272\u7684\u6bdb\u53d1\uff0c\u770b\u8d77\u6765\u50cf\u662f\u4e00\u53ea\u602a\u517d\u7ad9\u5728\u4e1b\u6797\u4e2d\uff0c\u9762\u5bf9"} +{"id": "6003407", "video_name": "2b2ea2ef-585a-50d8-a24b-411299b31c62", "text": "\u4e00\u4e2a\u53ef\u7231\u53ef\u7231\u7684\u732b\u6b63\u5728\u5403\u6c49\u5821\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "1004841", "video_name": "5978d5bc-e811-5681-82b2-26d2be57f8f0", "text": "\u4e00\u5bf9\u4e8c\u5341\u591a\u5c81\u7684\u592b\u5987\u5728\u68ee\u6797\u4e2d\u7684\u5e9f\u5f03\u623f\u5c4b\u4e2d\uff0c\u5728\u66b4\u98ce\u96e8\u7684\u591c\u665a\u60ca\u6050\u4e0d\u5b89\uff0c\u96e8\u70b9"} +{"id": "6002767", "video_name": "443a49f7-6511-5f07-8a7e-3f45259283fb", "text": "\u4ed6\u662f\u6ce2\u591a\u9ece\u5404\u7684\u5360\u9886\u884c\u52a8\u7684\u4e00\u90e8\u5206\uff0c\u66fe\u5728\u5723\u80e1\u5b89\u62c5\u4efb\u4ed3\u5e93\u548c\u9996\u5e2d\u519b\u9700\u5b98\u3002"} +{"id": "8002992", "video_name": "96777cf6-2340-5d4e-a4de-7cb54718eec2", "text": "\u7f8e\u4e3d\u7684\u65b0\u95fb\u5973\u6027\u60f3\u627e\u5230\u7231\u60c5\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006353", "video_name": "07a87507-4222-5c37-8ba8-6caf6684c4e3", "text": "1873\u5e74\uff0c\u7ebd\u7ea6\u7684\u8001\u5f71\u7247\u4e2d\u6709\u4eba\u51fa\u552e\u91ce\u725b\u76ae\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2004025", "video_name": "1e28a04a-1982-5620-91b2-4ad490b992f0", "text": "\u68b5\u5929\u795e\u5728\u5b87\u5b99\u4e4b\u95f4\u653e\u677e\u4f11\u606f\u3002"} +{"id": "8002917", "video_name": "d93e9fcb-9172-5d6b-a7dd-908fc681b6fc", "text": "\u6d88\u5316\u997c\u5e72\u88ab\u54ac\u65ad\u7684\u560e\u5431\u58f0\u3002"} +{"id": "1005802", "video_name": "6abe9f0e-6919-5dea-b77d-30a0de661520", "text": "\u9ad8\u8fbe\u98ce\u683c\uff0c\u4e00\u4e2a\u673a\u5668\u4eba\u5c04\u51fb\u53e6\u4e00\u4e2a\u673a\u5668\u4eba\u3002"} +{"id": "6003338", "video_name": "74dda4bc-cbca-5a2e-9bdb-4c1a7be5a19e", "text": "\u767e\u5206\u6bd4\u4e0a\u4e0b\u7bad\u5934\u3002\u94f6\u884c\u3001\u4fe1\u7528\u3001\u5229\u7387\u3002\u52a8\u6001\u56fe\u5f62\u3002"} +{"id": "7003189", "video_name": "a7cac1b8-14b0-5788-b6bf-5bf7cdf48f53", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u68a6\u60f3\u7740\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4e16\u754c\u3002"} +{"id": "0004465", "video_name": "0985c9e4-9f58-57de-9b9b-97e9d59f7a1b", "text": "\u53ef\u7231\u7684\u602a\u7269\u8df3\u6765\u8df3\u53bb\u3002"} +{"id": "0006899", "video_name": "3501f080-20cf-546d-ba94-6ad388adb57a", "text": "\u6709\u4eba\u8bf4\u4e16\u754c\u672b\u65e5\uff0c\u6709\u4eba\u8bf4\u51b0\u5c01\u4e09\u5c3a\u3002"} +{"id": "5001562", "video_name": "ab3c6ddd-c726-5c3f-aaab-0a10692138c3", "text": "\u8fde\u63a5\u5929\u5730\u7684\u95ea\u7535\u3002"} +{"id": "0005327", "video_name": "18d7b002-48e8-565f-8744-fe533ffaedbf", "text": "\u770b\u8d77\u6765\u5f88\u7f8e\uff0c\u4ee4\u4eba\u610f\u4e71\u60c5\u8ff7\u7684\u9178\u65c5\u7a0b\uff0c\u9713\u8679\u706f\uff0c\u4e30\u5bcc\u591a\u5f69\u7684\u9b54\u5e7b\u666f\u89c2\uff0c\u9ad8\u5927"} +{"id": "2004396", "video_name": "50f8c6f5-5dad-53b9-8e9b-b387199edf4b", "text": "\u7ebf\u63cf\u3002\u4e00\u53ea\u9e21\u62cd\u6253\u7740\u7fc5\u8180\uff0c\u98de\u5411\u7a7a\u4e2d\u3002"} +{"id": "7003627", "video_name": "277615d3-f99f-5732-9173-73aea3c22c13", "text": "\u4e00\u4e2a\u8180\u80f1\u7a7a\u7684\u88ab\u586b\u6ee1\u5230\u6ee1\u8180\u80f1\n\nSource sentence: I am learning Chinese with the help of a tutor. \n\n\u6211\u5728\u6709\u5bfc\u5e08\u5e2e\u52a9\u4e0b\u5b66"} +{"id": "1006814", "video_name": "7cb132c7-0fdb-5403-b4a2-8dd87c68cdfa", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u7684\u68ee\u6797\u5165\u53e3\u573a\u666f\uff0c\u5c55\u5f00\u7fc5\u8180\u8e0f\u4e0a\u65c5\u7a0b\u3002\u52a0\u5165\u50cf\u95ea\u4eae\u7684\u6811\u6728\u548c\u795e\u79d8\u7684"} +{"id": "3004617", "video_name": "74dc44ad-0bd0-5b3c-8097-501933234738", "text": "\u4e2d\u56fd\u5973\u5b69\u5361\u901a\uff0c\u5fae\u7b11\uff0c\u82f9\u679c\uff0c\u756a\u8304\uff0c\u9ec4\u74dc\u82b1"} +{"id": "3003481", "video_name": "cc4a4bbb-ed43-5995-a4ea-eba5d97d39a2", "text": "\u4e1c\u6cb3\u753b\u7684\u8001\u9f20\u5a5a\u793c"} +{"id": "2003448", "video_name": "00b64725-3bad-5fa7-a4e9-4a5e80301600", "text": "\u7f8e\u4e3d\u7684\u9e1f\u5728\u6d77\u5cb8\u4e0a\u5c55\u793a\u51fa\u5b83\u6f02\u4eae\u7684\u9762\u5bb9\u3002"} +{"id": "6002839", "video_name": "49308680-f49d-56b4-bc4e-35e3f0aa6a56", "text": "\u4e00\u4ef6\u886c\u886b\u7761\u5728\u5e8a\u4e0a\u3002"} +{"id": "8002672", "video_name": "3dea197b-2574-58f8-91d3-4b36ae20520a", "text": "\u628a\u8fd9\u4e2a\u8bc4\u7ea7\u63d0\u9ad8\u4e00\u4e0b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006470", "video_name": "23a88778-51cd-5383-80b3-f721153507f1", "text": "\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\uff0c\u4e00\u4e2a\u88ab\u68ee\u6797\u5305\u56f4\u7684\u5c0f\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u6563\u6b65\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n"} +{"id": "2006189", "video_name": "d1f2a9be-5a89-5b60-84a2-f67c282e396f", "text": "\u4f7f\u7528\u79d1\u6280\u7684\u718a\u732b"} +{"id": "2004912", "video_name": "cfa5bf69-32c6-5abf-9849-d1d822e42875", "text": "\u4e00\u4f4d\u5973\u58eb\u5728\u85b0\u8863\u8349\u82b1\u7530\u4e0b\u8df3\u821e\u3002"} +{"id": "1004162", "video_name": "4d0ff0ef-e16d-500e-8804-1ad7bae77d38", "text": "\u91d1\u5c5e\u88c5\u5907\u56fa\u4f53\u7cfb\u5217\u4e2d\u7684\u5b9e\u4f53\u86c7\u85cf\u5728\u7eb8\u7bb1\u4e2d\uff0c\u91c7\u7528PlayStation 2\u98ce\u683c\u7684\u56fe\u5f62\u3002"} +{"id": "2004108", "video_name": "1e785b71-3aca-57a9-a465-4d3618212c61", "text": "\u76ae\u5361\u4e18\u7a7f\u7740\u897f\u88c5\u8d70\u8def\uff0c\u8d85\u5199\u5b9e\uff0c\u7126\u70b9\u6e05\u6670\u3002"} +{"id": "7002647", "video_name": "0b251616-a820-5c2e-98dd-7dae63991b4b", "text": "\u79d1\u6280\u7535\u8111\u548c\u5e26\u6709\u7070\u8272\u7687\u5bb6\u5916\u89c2\u7684\u623f\u95f4\u50cf\u662f\u4e00\u4e2a\u79d1\u6280\u623f\u95f4\u3002"} +{"id": "6003984", "video_name": "4b63a23d-3db0-56ad-86d8-228956bbbd51", "text": "\u4e0b\u96e8\u4e86\uff0c\u96e8\u6c34\u6253\u5728\u4e00\u4e2a\u4e09\u89d2\u5f62\u7684\u5e10\u7bf7\u4e0a\uff0c\u8fd9\u4e2a\u5e10\u7bf7\u5c31\u5728\u4e00\u4e2a\u5c0f\u6e56\u65c1\u8fb9\uff0c\u5468\u56f4\u90fd\u662f\u704c\u6728\u3002"} +{"id": "3004947", "video_name": "ff85e3b8-baad-5306-bd7b-dae34e214ea5", "text": "\u4f0a\u62c9\u62c9\u662f\u4e00\u4f4d\u597d\u5947\u52c7\u6562\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u6765\u81ea\u5a01\u6d1b\u5e03\u9c81\u514b\u3002"} +{"id": "0006640", "video_name": "3013e1a2-3ad7-54a5-a323-c1f5e5df804a", "text": "\u5979\u6253\u5f00BeautoNomi\u5e94\u7528\u7a0b\u5e8f\u5e76\u9884\u7ea6\u4e86\u4e00\u4f4d\u53d1\u578b\u5e08\u3002"} +{"id": "3005091", "video_name": "a247b40d-93d5-5831-9975-f44f9401e48b", "text": "\u5b89\u63d0\u74dc\u74dc\u5730\u9a6c\u62c9\u8857\u5934\u7684\u5feb\u4e50\u4eba\u4eec\u5e86\u795d\u66f4\u7f8e\u597d\u7684\u672a\u6765\u3002"} +{"id": "7003214", "video_name": "1904e2a2-7307-5243-8243-ef0c12e70158", "text": "\u521b\u9020\u4e00\u4e2a\u753b\u9762\uff0c\u4e24\u4e2a\u4eba\u5750\u5728\u67d4\u548c\u7167\u660e\u7684\u623f\u95f4\u91cc\uff0c\u4ed6\u4eec\u76f8\u4e92\u5bf9\u89c6\uff0c\u773c\u795e\u6df1\u9083\u800c\u6709\u610f\u4e49\uff0c\u6d41\u9732\u51fa"} +{"id": "7004295", "video_name": "ba9425a2-fb93-5aa4-9a0d-2853c696c614", "text": "\u5916\u661f\u4eba\u5177\u6709\u82b1\u6735\u7684DNA\uff0c\u8272\u5f69\u591a\u5f69\u6591\u6593\uff0c\u9633\u5149\u7480\u74a8\uff0c\u6781\u5177\u7535\u5f71\u611f\u548c\u903c\u771f\u5ea6\u3002"} +{"id": "2007391", "video_name": "d7dad1be-0763-5253-8451-5be530de8dd5", "text": "\u6559\u7687\u5f39\u5408\u6210\u5668\uff0c\u6559\u7687\u5f39\u6a21\u5757\u5408\u6210\u5668\u3002"} +{"id": "6002618", "video_name": "88ed4462-c552-5c74-bdee-9b22a3befb6f", "text": "\u76d1\u63a7\u5f55\u50cf\u663e\u793a\u602a\u7269\u6a2a\u7a7f\u5c4f\u5e55\u3002"} +{"id": "7004335", "video_name": "32c96ce9-1369-5a5e-9cff-f66b89cef4b6", "text": "\u4e00\u4e2a9:16\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u54c8\u5c14\u8fea\u62c9\u59c6\u4e30\u5bcc\u6587\u5316\u5ba4\u5185\u8bbe\u8ba1\u5982\u4f55\u9002\u5e94\u65c1\u906e\u666e\u5730\u533a\u7684\u60c5\u51b5\u3002"} +{"id": "4002193", "video_name": "a972f86c-89f2-56bd-9803-315dcc228d3f", "text": "\u8389\u8389\u548c\u9a6c\u514b\u65af\u88ab\u65cb\u8f6c\u7684\u9b54\u6cd5\u80fd\u91cf\u5305\u56f4\uff0c\u60c5\u51b5\u8d8a\u6765\u8d8a\u6df7\u4e71\u3002"} +{"id": "8003298", "video_name": "79997bbd-48b0-570c-86da-8e95c0186e0f", "text": "\u5728\u82b1\u56ed\u91cc\u7684\u5c0f\u5973\u5b69\u548c\u5b54\u96c0\u3002"} +{"id": "1006709", "video_name": "7af13603-be45-5725-8923-b4434c01bc46", "text": "\u4e00\u4f4d\u8001\u4eba\u7528\u52a9\u884c\u5668\u6cbf\u7740\u9661\u5ced\u7684\u5c71\u8def\u884c\u8d70\uff0c\u770b\u8d77\u6765\u75b2\u60eb\u800c\u60b2\u4f24\u3002"} +{"id": "2005999", "video_name": "9f69e18b-efd2-5c17-906b-7b010f303bc0", "text": "\u4e24\u4e2a\u9ed1\u5e2e\u8001\u5927\u5728\u5f00\u59cb\u6253\u6597\u524d\u4e92\u76f8\u5bf9\u89c6\u3002"} +{"id": "6003666", "video_name": "c171954d-2eee-574d-b873-d595a5f2930c", "text": "\u4e00\u53ea\u7eff\u8272\u7684DJ\u9e1f\u5728\u96e8\u4e2d\u4eba\u7fa4\u4e2d\u95f4\uff0c\u4eab\u53d7\u7740\u97f3\u4e50\u3002"} +{"id": "6004823", "video_name": "253aac71-5066-5e14-b3b6-e3ee02a8caff", "text": "\u9ed1\u591c\u4e2d\u7684\u4e00\u7247\u9ed1\u6697\u68ee\u6797\u3002\n\u98ce\u547c\u5578\u7740\uff0c\u87cb\u87c0\u5728\u53eb\u7740\u3002"} +{"id": "2007743", "video_name": "a567198f-9a7f-5168-953e-930894042fe1", "text": "\u6c34\u4e2d\u7684\u73ca\u745a\u3002\u4fe1\u606f\uff1aPika\u5b9e\u9a8c\u5ba4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003729", "video_name": "d9e7c4ad-3198-5c65-a317-5f1752c309ec", "text": "\u9b3c\u9b42\u5728\u533b\u9662\u8d70\u5eca\u4e0a\u6f02\u6d6e\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u706f\u5149\uff0c\u7535\u5f71\u822c\u7684\u6050\u6016\u6c1b"} +{"id": "1003080", "video_name": "38a8b929-3df6-59e5-9b2d-fd16c568307d", "text": "\u5728\u793e\u4f1a\u4e2d\u8ff7\u5931\u65b9\u5411\u7684\u60a3\u6709\u6ce8\u610f\u529b\u7f3a\u9677\u591a\u52a8\u75c7\u7684\u7537\u4eba\u3002"} +{"id": "2003130", "video_name": "b631c63d-feea-509a-9a15-d2fb55347061", "text": "\u4e00\u4e2a\u6234\u84dd\u8272\u53d1\u5e26\u7684\u5973\u5b69\u5750\u5728\u5730\u4e0a\uff0c\u7528\u80f6\u6c34\u628a\u94bb\u77f3\u7c98\u5728\u978b\u4e0a\u3002"} +{"id": "8003652", "video_name": "1c855515-7d2a-5e4c-ba83-ece093b0c1a0", "text": "\u706b\u7bad\u53d1\u5c04\u7684\u8d85\u903c\u771f\u56fe\u50cf\u3002"} +{"id": "5001826", "video_name": "03d02c20-5ee9-5d63-ba96-64dc4791040d", "text": "\u8ba9\u8fd9\u4e2a\u5973\u4eba\u5bf9\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "3004257", "video_name": "fb8bab72-b6fe-56f4-aa36-28d2617ec73f", "text": "\u4e00\u4e2a\u7531\u4e50\u9ad8\u79ef\u6728\u5236\u6210\u7684\u6d88\u9632\u8f66\u98de\u9a70\u5411\u706b\u707e\u73b0\u573a\u3002"} +{"id": "7004683", "video_name": "cb46b301-d563-5aad-afa0-2dadcbd926f1", "text": "\u8513\u5ef6\u8de8\u8d8a\u94f6\u6cb3\u7cfb\u7684\u85e4\u8513\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u5373\u5c06\u964d\u4e34\u7684\u5384\u8fd0\u611f\u3002"} +{"id": "3003612", "video_name": "68235087-b88d-5c24-91e3-3ffd44441b9c", "text": "\u80cc\u666f\uff1a\u96fe\u7b3c\u7f69\u7684\u5c71\u5ce6\u3002\n\u5929\u7a7a\uff1a\u65e9\u6668\u7684\u6708\u4eae\uff0c\u4e00\u7fa4\u9e1f\u671d\u5357\u65b9\u98de\u7fd4\u3002\n\u524d\u666f\uff1a\u68ee"} +{"id": "1006805", "video_name": "7c922abc-3680-5727-9789-46b3ec05aead", "text": "\u7537\u4eba\u6162\u6162\u5730\u7728\u773c\uff0c\u6162\u6162\u5730\u547c\u5438\uff0c\u76f8\u673a\u6162\u6162\u5730\u8f6c\u5411\u4ed6\u7684\u8138\u3002"} +{"id": "2006951", "video_name": "72b8df13-745c-5d94-92e2-9b85abf1d773", "text": "\u6211\u9700\u8981\u5728\u4e00\u5bb6\u8425\u9500\u673a\u6784\u4e2d\u7684\u63d2\u56fe\uff0c\u8fd9\u4e2a\u673a\u6784\u6b63\u5728\u4e3a\u6211\u8fdb\u884c\u66f4\u591a\u7684\u897f\u74dc\u521b\u610f\u9879\u76ee\u3002"} +{"id": "6004228", "video_name": "684bd149-5155-5497-9853-85cfa03a70e8", "text": "\u76d1\u72f1\u7262\u623f\u4e2d\u7684\u56da\u72af\uff0c\u591c\u89c6\u6a21\u5f0f\u4e0b\u7684\u95ed\u8def\u7535\u89c6\u6444\u50cf\u5934\u89c6\u89d2\u3002"} +{"id": "7002489", "video_name": "5697ee22-e564-561d-8355-35ef41ae68f1", "text": "\u4e00\u540d\u5973\u5b50\u5728\u8857\u9053\u4e2d\u592e\u5c16\u53eb\uff0c\u4e00\u8f86\u8f66\u5411\u5979\u76f4\u9a76\u800c\u6765\u3002"} +{"id": "2006260", "video_name": "fb1c49e7-fabc-5540-b984-7b380957d5ff", "text": "\u4f50\u6cbb\u4e9a\u662f\u5c0f\u5c4b\u4f2b\u7acb\u5728\u96ea\u6797\u4e2d\u7684\u5730\u65b9\uff0c\u662f\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u5730\u65b9\uff0c\u4ed6\u4eec\u98de\u884c\u65e0\u4eba\u673a\u62cd\u6444\u89c6\u9891\u3002"} +{"id": "2005664", "video_name": "f4cd13ac-2321-5000-ad3f-101a20e2e615", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5b87\u822a\u670d\u5728\u6d77\u6d0b\u4e2d\u6f5c\u6c34\u3002"} +{"id": "1004498", "video_name": "5360c020-2f69-5f2e-a672-a4c95a47f33e", "text": "\u725b\u5934\u72ac\uff08\u5174\u594b\u5730\uff09\u592a\u4e0d\u53ef\u601d\u8bae\u4e86\uff0c\u4f19\u8ba1\u4eec\uff01\u6211\u4eec\u7ec4\u6210\u4e86\u4e00\u4e2a\u4e86\u4e0d\u8d77\u7684\u56e2\u961f\uff01"} +{"id": "1005376", "video_name": "62e021e4-4c96-5719-b2bd-6a2ae1d101a9", "text": "\u5448\u73b0\u4e00\u4efd\u5168\u9762\u7684\u6307\u5357\uff0c\u4ecb\u7ecd\u5728\u7eb3\u74e6\u62c9\u7279\u91cc\u671f\u95f4\u6240\u9075\u5faa\u7684\u4eea\u5f0f\u548c\u60ef\u4f8b\uff0c\u91cd\u70b9\u5173\u6ce8\u6bcf\u4e00\u5929\u7684\u610f\u4e49\u4ee5"} +{"id": "8001882", "video_name": "bef759bf-dffe-5784-95b7-5ebc0d623b99", "text": "\u6d77\u4e0a\u98ce\u66b4\u4e2d\u7684\u5c0f\u5e06\u8239"} +{"id": "2005918", "video_name": "17c1c498-09cd-55b6-93b8-fae380810285", "text": "\u4ed6\u5b66\u5230\u7684\u8ff7\u4eba\u4e8b\u7269\u3002"} +{"id": "1004956", "video_name": "5b96cc13-83d8-5ce5-9ea7-b88158934c52", "text": "\u90a3\u4e2a\u5973\u5b69\u8f7b\u8f7b\u5730\u7528\u624b\u6293\u4f4f\u4e86\u98de\u821e\u7684\u8774\u8776\u3002"} +{"id": "8003237", "video_name": "9c4af032-0f48-5bfe-a1f1-76e4cea7f394", "text": "\u4e00\u4e2a\u6709\u771f\u5b9e\u300a\u5821\u5792\u4e4b\u591c\u300b\u89d2\u8272\u7684\u89c6\u9891\u3002"} +{"id": "2005822", "video_name": "961600de-2f4a-5900-8b6a-af5c6c06cbf5", "text": "\u79cb\u5929\u7684\u6c5f\u5357\u98ce\u5149\uff0c\u6668\u96fe\u8986\u76d6\u6e56\u9762\uff0c\u79cb\u98ce\u5439\u52a8\u67f3\u679d\u4ece\u7eff\u53d8\u9ec4\u3002\u6e56\u4e0a\u6709\u4e00\u8258\u5c0f"} +{"id": "7004779", "video_name": "73cbc932-deea-5857-86ba-f4d83e5020e8", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u54ed\u6ce3\u7684\u7279\u5199\u955c\u5934"} +{"id": "3004911", "video_name": "96c17b86-9e78-5a65-98a8-9890a65a4f22", "text": "100\u82f1\u5c3a\u9ad8\u7684\u4eba\u4f38\u624b\u53bb\u6458\u6708\u4eae\u3002"} +{"id": "8001287", "video_name": "8d33cc26-7f71-5dd5-a86b-e770abdf9ee1", "text": "\u5728\u52a0\u8f7d\u5c4f\u5e55\u4e0a\uff0c\u6709\u4e00\u4e2a\u88ab\u710a\u63a5\u7684\u6b63\u65b9\u5f62\u3002"} +{"id": "8002924", "video_name": "91ccc85e-5fc5-5ee3-816b-d19cdba34c5c", "text": "\u5361\u901a\u8d85\u7ea7\u82f1\u96c4\uff0c\u5177\u6709X\u5c04\u7ebf\u89c6\u89c9\u3002"} +{"id": "6004342", "video_name": "bad5e172-6210-50c5-9436-7388b4542cd4", "text": "\u732b\u5750\u5728\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u73a9Minecraft\u3002"} +{"id": "5001975", "video_name": "2913bbf2-ebb1-5ae2-a227-8f3cce69e611", "text": "\u6709\u5173\u4e8e\u843d\u5165\u5de8\u87f9\u5ea7\u5973\u5b69\u7684\u7535\u5f71\u9884\u544a\u7247\u3002"} +{"id": "2007286", "video_name": "7fa031aa-a5e7-5d08-9d90-bd205b538757", "text": "\u871c\u8702\u5de2\u72b6\u7269\u4e2d\u6ef4\u843d\u7684\u4e00\u6ef4\u8702\u871c\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u8702\u5de2\u9644\u7740\u5728\u6811"} +{"id": "7003012", "video_name": "b4ccba9b-3bf7-5d6b-941a-90425850a34c", "text": "\u9ed1\u767d\u6c61\u6e0d\uff0c\u4ec0\u4e48\u610f\u601d\uff1f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001159", "video_name": "2abb764c-3718-5104-8540-4169b7a87532", "text": "60\u5e74\u4ee3\u7684\u7ebd\u7ea6\u8857\u5934\uff0c\u7537\u5b69\u5728\u5356\u62a5\u7eb8\uff0c\u8001\u4eba\u5728\u64e6\u978b\uff0c\u8001\u7237\u8f66\u9a76\u8fc7\u3002\u67ef\u8fbe\u514b\u7f57\u59c6\u3002"} +{"id": "2006781", "video_name": "ed9a3684-9e05-5391-a169-78d5e7d94f9a", "text": "\u80e1\u987b\u5de8\u4eba\u51dd\u89c6\u7740\u5230\u5904\u90fd\u662f\u4eba\u7c7b\u9aa8\u9abc\u548c\u8eab\u4f53\u788e\u7247\u7684\u5730\u9762\u3002\u68d5\u8910\u8272\u8c03\u3002"} +{"id": "8002437", "video_name": "2c9c13c8-86c0-5a47-9a07-e9370cecf1db", "text": "\u65b0\u5a18\u548c\u65b0\u90ce\u7684\u80cc\u5f71\u7167\u7247\uff0c\u6ca1\u6709\u9762\u5b54\u3002"} +{"id": "3006333", "video_name": "f88e98e1-1318-517c-bf6b-d58eb1758e6a", "text": "\u5b9d\u5b9d\u4e3b\u8c61\u795e\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002"} +{"id": "0006018", "video_name": "251c0fd4-3264-5b69-8616-751b7cc9f32e", "text": "\u7535\u5f71\u4e2d\u666f\u955c\u5934\uff0c\u864e\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u67d4\u548c\u7684\u7167\u660e\uff0c4k\uff0c\u6e05\u6670\uff0c\u4f73\u80fd C300\uff0c\u666f\u6df1\uff0c\u9ad8\u5ea6\u8be6\u7ec6"} +{"id": "6003323", "video_name": "21086ae1-b1d9-50c2-a6c9-c1fe26ef11ba", "text": "\u5954\u8dd1\u3001\u98d8\u52a8\u7684\u5934\u53d1\u548c\u5fae\u7b11\u7684\u52a8\u753b\u5973\u5b69\u3002"} +{"id": "2003534", "video_name": "7ccc16d5-c47a-5c31-aa01-fbd81dcce4c8", "text": "\u7231\u4e3d\u4e1d\u5728\u9b54\u6cd5\u68ee\u6797\u4e2d\u548c\u5947\u5999\u7684\u52a8\u7269\u4ee5\u53ca\u4e00\u53ea\u5927\u767d\u5154\u4e00\u8d77\u63a2\u9669\u3002"} +{"id": "2007820", "video_name": "d9aa7483-b88c-563a-ad15-96697d2daf22", "text": "\u591c\u5e55\u964d\u4e34\uff1a\u6708\u4eae\u6295\u4e0b\u4e00\u7247\u602a\u5f02\u7684\u5149\u8292\uff0c\u5728\u6751\u5e84\u4e0a\u5f62\u6210\u7d27\u5f20\u7684\u6c14\u6c1b\u3002"} +{"id": "2005936", "video_name": "1bd52db1-51b9-54a4-a9a8-1634a8344390", "text": "\u7ec6\u83cc\u6b63\u5728\u4ee5\u5927\u5199\u5b57\u6bcdA\u7684\u5f62\u72b6\u4f20\u64ad\uff0c\u8fd9\u662f\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u9ed1\u6697\u5e7b\u60f3\u63d2\u56fe\u3002"} +{"id": "2006645", "video_name": "1900b48a-48bd-50e4-b339-29e459b52b39", "text": "\u73b0\u5b9e\u7684\u5168\u7403\u89c2\u548c\u5580\u62c9\u62c9\u90a6\u7684\u5730\u56fe"} +{"id": "4002955", "video_name": "53e47951-7fd5-5914-9e00-3a2cb3341a2f", "text": "\u60f3\u8c61\u4e00\u4e0b\uff0c\u54c8\u7f57\u5fb7\u7237\u7237\u3001Squeaky\u548cRemy\u5728\u68ee\u6797\u4e2d\u5206\u4eab\u91ce\u9910\u6bef\u3002\u9762\u6761\u7897\u6446\u5f00\u4e86\uff0c\u4e09\u4eba\u4ea4\u6d41"} +{"id": "3006105", "video_name": "4bc87134-11ae-5fd7-b037-2c61f83b70a6", "text": "\u91ca\u4e49\uff1a\u5728\u6218\u4e89\u4e2d\u95f4\uff0c\u795e\u5723\u7684\u514b\u91cc\u5e0c\u7eb3\u7ad9\u5728\u6218\u8f66\u4e0a\uff0c\u6307\u7740\u7bad\u3002 \n\nSource sentence: The Great Wall of China is over 13,"} +{"id": "1006605", "video_name": "79065967-58c2-51b5-a3bb-0eb5e0120a30", "text": "\u628a\u4e00\u4e2a\u89d2\u8272\u6d3b\u7075\u6d3b\u73b0\u5730\u5448\u73b0\u51fa\u6765\uff0c\u4e00\u4e2a\u5b66\u751f\u9ed1\u5ba2\u653b\u51fb\u7f51\u7ad9\u5e76\u8d5a\u94b1\uff0c\u8ba9\u8fd9\u4e2a\u89c6\u9891\u53d8\u957f\u52302\u5206\u949f\uff0c3D 4K\u3002"} +{"id": "3006327", "video_name": "c59a8efe-470e-524c-9139-66df818285b5", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u767d\u8272\u62bd\u8c61\u58c1\u7eb8\uff0c4K \u660e\u4eae\u5b8c\u7f8e\u3002"} +{"id": "8001251", "video_name": "2c96a837-0f41-560e-89f0-cd72070983f4", "text": "\u4e00\u4e2a\u5373\u5c06\u9644\u8eab\u4e8e\u5973\u5b69\u8eab\u4e0a\u7684\u9b3c\u3002"} +{"id": "4003791", "video_name": "369d7431-ed69-5616-b4ed-17a8aae43602", "text": "\u4ed6\u95ed\u7740\u773c\u775b\u5750\u4e86\u4e00\u6574\u5929\uff0c\u5168\u795e\u8d2f\u6ce8\u5730\u6c89\u6d78\u5728\u6df1\u5ea6\u51a5\u60f3\u4e2d\u3002\u6ca1\u6709\u8a00\u8bed\uff0c\u6ca1\u6709\u5fe7\u8651\uff0c\u738b\u5b50\u5185"} +{"id": "5001817", "video_name": "c52d289c-c8d1-5081-8907-f00f7f597e2e", "text": "\u56fe\u7247\uff1a\u4e00\u7247\u9633\u5149\u660e\u5a9a\u7684\u8349\u5730\u4e0a\uff0c\u6709\u7740\u8272\u5f69\u4e30\u5bcc\u7684\u82b1\u6735\u548c\u8774\u8776\u3002"} +{"id": "2004417", "video_name": "af543b8e-62d0-5327-84e3-c3b7958f47dd", "text": "Source sentence: Ronaldo\u5411Messi\u7ad6\u8d77\u4e86\u4e2d\u6307\u3002\n\nTranslated sentence: Ronaldo\u5411Messi\u7ad6\u8d77\u4e86\u4e2d\u6307\u3002"} +{"id": "4004674", "video_name": "acdce93a-1f1e-55e4-9749-ba1e4f34ddd7", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u7f8e\u4e3d\u7684\u722c\u884c\u52a8\u7269\u7a7f\u7740\u5b87\u822a\u670d\u767b\u4e0a\u4ed6\u7684\u98de\u8239\uff0c\u5e76\u6709\u4e00\u4f4d\u91d1\u53d1\u5973\u5b69\u966a\u4f34\uff0c"} +{"id": "0003094", "video_name": "36e71006-8666-59c1-ac38-9c3336135b01", "text": "\u4e00\u4e2a\u903c\u771f\u76843D\u5ba2\u5385\u7a97\u6237\uff0c\u6d45\u84dd\u8272\u7a97\u5e18\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "3005374", "video_name": "da55576a-d5f4-515f-bfe7-16a18cc74059", "text": "\u52a8\u7269\u7684\u79fb\u52a8\u662f\u6b65\u884c\uff0c\u52a8\u7269\u7684\u773c\u775b\u3002"} +{"id": "3003559", "video_name": "17b2d417-7ed1-5166-a1a8-2aa529091252", "text": "\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\uff0c\u5fe7\u4f24\u5730\u60f3\u7740\u4e00\u4e2a\u4eba\uff0c\u773c\u775b\u6162\u6162\u95ed\u4e0a\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "3004237", "video_name": "6562acab-e8cd-5221-9993-beddea344111", "text": "\u5728\u6c99\u6f20\u4e2d\u592e\u6709\u4e00\u9762\u55b7\u6d82\u6d82\u9e26\u7684\u5899\uff0c\u4e0a\u9762\u5199\u7740\u201c\u6211\u4eec\u5df2\u7ecf\u83b7\u80dc\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004132", "video_name": "0157eb90-97ec-5be2-b965-e11add93bbd5", "text": "\u6709\u4e9b\u4eba\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c\u5929\u7a7a\u5f88\u7f8e\uff0c\u98ce\u5f90\u5f90\u5439\u52a8\u3002"} +{"id": "8002509", "video_name": "7fabba11-a1b7-5c45-bc90-3f00c9a2107e", "text": "Chinese translation: \u89c6\u9891\u91cc\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u3002\u5979\u4f1a\u8bf4\u8bdd\u3002"} +{"id": "3003165", "video_name": "4175c4cb-96ea-57cb-8705-52f97bbe686b", "text": "\u4e00\u4e2a\u4eba\u7528\u9ec4\u91d1\u6253\u9020\u4e00\u628a\u5251\uff0c\u903c\u771f\u3001\u8be6\u7ec6\u3002"} +{"id": "2005308", "video_name": "6dd8f963-4882-5eff-b8f9-9a8e71a2358c", "text": "\u68ee\u6797\uff0c\u524d\u666f\u6709\u6811\u6728\uff0c\u4e2d\u592e\u6709\u51ef\u5c14\u7279\u7b26\u53f7\u7684\u77f3\u5934\u5bfa\u5e99\uff0c\u5de8\u77f3\u9635\uff0c\u524d\u666f\u6709\u96ea\u5c71\uff0c\u5448S\u578b\u7ec4"} +{"id": "4002320", "video_name": "8650c67f-ec17-5acc-9a4e-de605a8a98ed", "text": "\u521b\u9020\u4ea4\u4e92\u5f0f\u56fe\u50cf\uff0c\u4ea4\u7ec7\u5728\u529b\u7ebf\u4e4b\u95f4\u3002"} +{"id": "4004769", "video_name": "77e1c4a9-3ecb-57d7-b027-c914c6a739f0", "text": "\u7537\u4eba\u5177\u6709\u8d85\u80fd\u7535\u529b\u95ea\u7535\u6548\u5e94\u80fd\u91cf\u6ce2\u7403\u6a21\u62df\u80fd\u91cf\u7403\u3002"} +{"id": "0006219", "video_name": "28900265-489f-5699-aefc-f9a8d4d6afd3", "text": "\u5728\u68ee\u6797\u4e2d\uff0c\u76f8\u673a\u5e73\u7a33\u5730\u7a7f\u8fc7\u8302\u5bc6\u7684\u6811\u6797\uff0c\u5c55\u793a\u51fa\u91ce\u6027\u548c\u98ce\u666f\u5982\u753b\u7684\u68ee\u6797\u3002\u5728\u4e00\u68f5\u6811\u540e"} +{"id": "8002279", "video_name": "14e9aeef-d49a-5ba8-a83a-2a347a1abf8f", "text": "\u4e00\u4e2a\u6e29\u99a8\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e00\u676f\u5496\u5561\u548c\u4e00\u672c\u4e66\uff0c\u5f15\u53d1\u653e\u677e\u548c\u9605\u8bfb\u7684\u60c5\u611f\u3002"} +{"id": "2004185", "video_name": "04332c1b-dcfb-51dc-83a9-f7872b96a0e4", "text": "\u6bdb\u8338\u8338\u7684\u767d\u8272\u9f99\u5728\u300a\u65e0\u5c3d\u7684\u6545\u4e8b\u300b\u666f\u89c2\u5e7b\u60f3\u4e2d\u98de\u7fd4\u3002"} +{"id": "0006830", "video_name": "33d1fe45-6aad-551d-b66a-ec9ce319714a", "text": "\u65cb\u8f6c\u60a8\u7684\u624b\u673a\u4ee5\u67e5\u770b\u5c4f\u5e55\u4fe1\u606f\u3002"} +{"id": "3004303", "video_name": "45ba2ec1-f916-561a-b5d7-abcfcf0b058f", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u52a8\u7269\u4eec\u548c\u8c10\u5171\u5b58\u3002\n\n\u8001\u72d0\u72f8\u3001\u5b54\u96c0\u3001\u677e\u9f20\u3001\u5927\u8c61\u548c\u5176\u4ed6\u68ee\u6797\u52a8\u7269\u3002"} +{"id": "2006385", "video_name": "78be3f97-aef7-5f08-866f-191ce64aa3c4", "text": "\u7531\u72ee\u5b50\u3001\u4eba\u7c7b\u3001\u7a7a\u5fc3\u83dc\u548c\u54e5\u65af\u62c9\u6df7\u5408\u800c\u6210\u7684\u751f\u7269\u6b63\u5728\u62ef\u6551\u7f8e\u56fd\uff0c\u9632\u6b62\u5feb\u901f\u843d\u5411\u5730\u7403\u7684\u5c0f\u884c\u661f"} +{"id": "7003488", "video_name": "f0bf46a1-baa0-5bee-a8eb-6b73a112b298", "text": "\u5170\u535a\u57fa\u5c3c\u5728\u591c\u665a\u57ce\u5e02\u4ee5\u60ca\u4eba\u7684\u901f\u5ea6\u98de\u9a70\u3002"} +{"id": "4002699", "video_name": "d7638b74-d962-5b19-8e81-f15de52b4325", "text": "Optimus Prime\u6d4b\u8bd5Cybertruck\u662f\u5426\u9632\u5f39\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4003970", "video_name": "b1427273-0db6-5575-adf3-a0283eb2a0db", "text": "\u60f3\u8c61\u4e00\u4e2a\u4eba\u6234\u4e0a\u548c\u6458\u4e0b\u773c\u955c\u7684\u8138\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005978", "video_name": "11b594a4-2e04-5dba-a99d-8bad282f8e03", "text": "\u8bb8\u591a\u6d77\u9f9f\u5728\u6d77\u6d0b\u5e7b\u60f3\u4e16\u754c\u4e2d\u8df3\u821e\u3002"} +{"id": "2007702", "video_name": "7804ed7a-be98-578b-8609-44e9d5e49bca", "text": "\u56fe\u7247\u4e2d\u7684\u4eba\u7269\u548c\u9f99\u9700\u8981\u79fb\u52a8\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004345", "video_name": "497651fd-f898-51e9-be02-3acc5fe113ac", "text": "\u4e00\u4e2a\u51e0\u4f55\u4e09\u89d2\u5f62\uff08\u7528\u7ea2\u8272\u7ae5\u8da3\u98ce\u683c\u586b\u5145\uff09\u5728\u767d\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "2004065", "video_name": "480dafd1-c131-5a85-bd17-70191ad36572", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u4e00\u4e2a\u591a\u5f69\u7684\u82b1\u56ed\u91cc\u51a5\u60f3\u3002"} +{"id": "6004927", "video_name": "525ec174-1d3a-592a-83b5-d1abc40bf8ab", "text": "\u5b87\u5b99\u6050\u6016\u3001\u673a\u7532\u3001\u673a\u68b0\u3001\u795e\u79d8\u6050\u6016\u3002"} +{"id": "8002388", "video_name": "c8f6c5ca-a29e-5304-8d44-35894086b0ad", "text": "\u5c55\u793a\u5973\u5b69\u68c0\u67e5\u4e00\u74f6\u91ce\u73ab\u7470\u679c\u6cb9\uff0c\u5e76\u70b9\u5934\u8d5e\u540c\u4e0a\u9762\u63d0\u5230\u7684\u6297\u6c27\u5316\u7279\u6027\u3002"} +{"id": "4004893", "video_name": "5e1a43c0-cd7d-5eb9-bb54-44fac3a911b3", "text": "\u7528\u4e00\u4e2a\u5c0f\u5316\u8eab\u3001\u5361\u901a\u98ce\u683c\u6e05\u6d01\u6e38\u6cf3\u6c60\u6c34\uff0c\u573a\u666f\u5e95\u90e8\u662f\u4e00\u4e2a\u7a7f\u7740\u4f11\u95f2\u670d\u88c5\u768430\u5c81\u5973\u4eba\u3002"} +{"id": "1006261", "video_name": "72b04042-3323-5f2b-a1d3-78e8d649f33d", "text": "\u739b\u4e3d\u5973\u738b\u4e3b\u6301\u6cd5\u5ead\u5ba1\u5224\u3002"} +{"id": "8003619", "video_name": "d8ca4fdb-1e2a-5bb1-a432-9771ffa15e05", "text": "\u6c7d\u8f66\u5728\u7b14\u76f4\u7684\u9053\u8def\u4e0a\u7f13\u6162\u884c\u9a76\uff0c\u98ce\u5728\u7f13\u6162\u5730\u5439\u52a8\uff0c\u4e91\u6735\u5728\u7f13\u6162\u5730\u79fb\u52a8\u3002"} +{"id": "3005659", "video_name": "d3ef878a-9da0-580e-8940-9a40f4298d31", "text": "\u4e00\u4e2a\u4ee3\u8868\u6050\u60e7\u3001\u53ef\u6015\u3001\u9ed1\u6697\u3001\u9ed1\u6697\u6cb9\u753b\u3001\u6781\u5176\u8be6\u7ec6\u7684\u5b9e\u4f53\u3002"} +{"id": "2007372", "video_name": "e60db72d-df50-57c1-b368-ccc00e48c34c", "text": "\u5c11\u5973\u5728\u8868\u6f14\u52a8\u6f2b\u98ce\u683c\u7684\u745c\u4f3d\u59ff\u52bf\u3002"} +{"id": "3005044", "video_name": "6e90b855-2838-5ae2-b976-98ff892c9199", "text": "\u4e00\u4e2a\u6234\u5e3d\u5b50\u7684\u6a59\u8272\u7403\u8863\u7537\u5b50\u5728\u770b\u5929\u7a7a\u3002"} +{"id": "1003525", "video_name": "41044dfc-337b-58d4-a0c7-f91758829e05", "text": "\u4e24\u53ea\u624b\u63e1\u7740 PlayStation \u624b\u67c4"} +{"id": "1003548", "video_name": "417c4553-c349-5f1f-be5c-4faa30917676", "text": "\u4ed3\u5e93\uff0c\u8fd9\u91cc\u50a8\u5b58\u7740\u5404\u884c\u5404\u4e1a\u7684\u77e5\u8bc6\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u5185\u5bb9\u8f7b\u677e\u3002"} +{"id": "8002097", "video_name": "947327ab-1d9f-5759-9180-3f96ade8671b", "text": "\u6d77\u795e\u6ce2\u585e\u51ac\u548c\u5973\u795e\u96c5\u5178\u5a1c\u6b63\u5728\u96c5\u5178\u536b\u57ce\u524d\u5bf9\u5cd9\u3002"} +{"id": "8001273", "video_name": "eb966af0-7aa1-50b9-a761-b4a60ec67a7d", "text": "\u5c4f\u5e55\u4e2d\u592e\u5411\u5916\u7206\u53d1\u51fa\u706b\u7130\uff0c\u70ed\u70c8\u7684\u7206\u70b8\uff0c\u592a\u9633\uff0c\u5730\u72f1\u822c\u7684\u706b\u70ed\uff0c\u72c2"} +{"id": "3004278", "video_name": "573f97c6-835d-58db-b224-fcdd3e99c7bd", "text": "\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u76841873\u5e74\uff0c\u7535\u5f71\u955c\u5934\u3002"} +{"id": "6003067", "video_name": "1009c175-06ee-5385-9e4b-ad3c30842d98", "text": "3D\u9ed1\u8272\u4e4c\u9e26\u5750\u5728\u6811\u4e0a\u3002"} +{"id": "8001552", "video_name": "7ac1219e-e6db-5898-8471-07c98f96582b", "text": "\u66f2\u68cd\u7403\u8fd0\u52a8\u5458\u7ad9\u5728\u51b0\u9762\u4e2d\u592e\u770b\u7740\u8bb0\u5206\u724c\u3002"} +{"id": "0005079", "video_name": "1461630b-9d82-546e-89a8-b177da33880f", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u68ee\u6797\uff0c\u4e00\u6761\u7f13\u7f13\u6d41\u6dcc\u7684\u6cb3\u6d41\u3002"} +{"id": "6002173", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "\u96e8\u5237\u8d8a\u6765\u8d8a\u5feb\u5730\u79fb\u52a8\uff0c\u4eff\u4f5b\u5728\u9f13\u52b1\u53f8\u673a\u52c7\u6562\u524d\u884c\u3002\u8f66\u7a97\u5916\u7684\u666f\u8272\u5728\u96e8\u5237\u7684\u6446\u52a8"} +{"id": "0005400", "video_name": "1a29733c-81a3-529d-88e6-836182e066f6", "text": "\u57fa\u57fa\uff0c\u8fd9\u4f4d\u4e16\u754c\u63a2\u9669\u5bb6\uff0c\u5f00\u59cb\u4e86\u4e00\u6bb5\u5145\u6ee1\u5192\u9669\u7684\u65c5\u7a0b\uff0c\u63ed\u5f00\u5730\u7403\u7684\u79d8\u5bc6\u3002"} +{"id": "3006704", "video_name": "621af4b9-0eb0-529f-bd98-72810476613a", "text": "\u79d1\u5b66\u5bb6\u5728\u4e00\u5bb6\u5148\u8fdb\u5b9e\u9a8c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "1003344", "video_name": "3d95f2a7-2fc2-5566-8b7f-9367080302fd", "text": "\u4e09\u7ef4\u52a8\u753b\uff0c\u4e00\u53ea\u9cb8\u9c7c\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "8003586", "video_name": "e3ac704b-5f17-5029-af06-082ee4bdbffb", "text": "\u9ad8\u901f\u6c7d\u8f66\u8ffd\u9010\uff0c\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u5b87\u5b99\u98de\u8239\uff0c\u6db2\u6001\u94ec\uff0c\u5206\u652f\u7535\u5b50\u6280\u672f"} +{"id": "3006831", "video_name": "de4cd32c-ba5a-5fe3-abf6-1f8ed4407ffc", "text": "\u4e16\u754c\u6b63\u5728\u53d8\u5f97\u8d8a\u6765\u8d8a\u5feb\u3002"} +{"id": "2004561", "video_name": "8af78395-b89d-595d-85a8-95b9ef9ca86e", "text": "\u8001\u4eba\u4ece\u6d77\u6ee9\u540e\u9762\u8d70\u8fc7\u3002"} +{"id": "1004862", "video_name": "59c7f74f-ec2c-53c7-8013-a6b4fa69eee8", "text": "\u751f\u6210\u4e00\u5f20\u9e7f\u5934\u56fe\u50cf\uff0c\u5176\u624b\u81c2\u4ee3\u66ff\u4e86\u9e7f\u89d2\u3002"} +{"id": "7002895", "video_name": "7411a466-9288-5ca8-a8f2-9596268ba69c", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f\u5728\u9ed1\u6697\u7684\u57ce\u5821\u91cc\u98de\u5feb\u5954\u8dd1\u3002"} +{"id": "6002003", "video_name": "6372bf48-854e-5c92-93a2-d6bb0819695c", "text": "\u4e00\u4e2a\u7a7f\u7740\u5929\u7a7a\u5236\u670d\u7684\u7ba1\u5f26\u4e50\u56e2\uff0c\u6709\u6307\u6325\u5728\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "6004284", "video_name": "5bef3ab4-bc64-5aad-895c-de5433f5b484", "text": "\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u4e00\u4e2a\u540d\u53eb\u739b\u96c5\u7684\u5c0f\u5b69\u8ff7\u8def\u4e86\u3002\u4ed6\u54ed\u7740\u8bd5\u56fe\u627e\u5230\u56de\u5bb6\u7684\u8def\u3002\u665a\u4e0a\u7684\u5149\u7ebf"} +{"id": "2004358", "video_name": "8a63665e-bff0-5bec-9a50-4654672bc773", "text": "\u4e00\u9762\u670925\u6247\u95e8\u4ece\u5de6\u5230\u53f3\u6392\u5217\u7684\u5899\u58c1\uff0c\u5728\u7b2c25\u6247\u95e8\u505c\u6b62\u3002"} +{"id": "0003585", "video_name": "3ff5ed4f-64bc-516f-8e44-011215bf2d63", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u8857\u4e0a\u8d70\uff0c\u5468\u56f4\u4e00\u5207\u90fd\u88ab\u6467\u6bc1\u4e86\uff0c\u706b\u7130\u65e0\u5904\u4e0d\u5728\u3002"} +{"id": "8003411", "video_name": "8e8a74d0-86b8-5942-b439-a0de0aec25fd", "text": "\u4e00\u6bb5\u63cf\u8ff0DevOps\u548cSRE\u533a\u522b\u7684\u89c6\u9891\u3002"} +{"id": "7004685", "video_name": "6c9c327f-bb14-5ac3-9127-f27301c5b247", "text": "\u4e24\u4e2a\u6876\u5728\u659c\u5761\u4e0a\u6eda\u52a8\u3002"} +{"id": "6003971", "video_name": "e1f9e4c8-1398-5148-bb8b-f2780d9cea6e", "text": "\u5728\u9633\u53f0\u4e0a\u7ad6\u7acb\u7740\u7f8e\u56fd\u56fd\u65d7\uff0c\u80cc\u540e\u662f\u7eff\u6811\u6210\u836b\u7684\u666f\u8272\u3002"} +{"id": "7002164", "video_name": "10a59fb8-36ac-59fe-800d-c9f26a89fbdc", "text": "1970\u5e74\u4ee3\u8d858\u6beb\u7c73\u4e09\u89d2\u5f62\u5f62\u72b6\u7684\u4eba\u7c7b\u955c\u5934\u3002"} +{"id": "7004313", "video_name": "63d5146b-fad5-59d5-83d3-13b2997c40b5", "text": "\u5de8\u5320\u82cf\u83b1\u66fc\uff08\u613f\u4e3b\u4fdd\u4f51\u4ed6\uff09\u7684\u77e5\u8bc6\u548c\u547d\u4ee4\u4e5f\u9002\u7528\u4e8e\u7cbe\u7075\uff0c\u4ed6\u4eec\u987a\u4ece\u4e8e\u4ed6\u3002"} +{"id": "7003425", "video_name": "45126ea4-eb3c-51c2-a304-efcbbae34ecd", "text": "\u5f00\u53d1\u4eba\u5458\u5728\u4e00\u5ea7\u6469\u5929\u5927\u697c\u4e2d\uff0c\u901a\u8fc7\u7535\u8111\u89c2\u770b\u591c\u665a\u57ce\u5e02\u3002"} +{"id": "6002030", "video_name": "3592df95-1302-5d87-9ef6-9d4e0ae12d67", "text": "\u7433\u838e\uff0c\u632f\u7fc5\u95ea\u8000\u3001\u773c\u795e\u8ff7\u4eba\u5730\u4ece\u6811\u540e\u73b0\u8eab\u5e76\u4ecb\u7ecd\u81ea\u5df1\u3002"} +{"id": "1003137", "video_name": "39d85c0c-4091-50de-b23b-77e3e8bed6b8", "text": "\u8840\u7ea2\u8272\u7684\u5929\u7a7a\u3002\u4e0b\u7740\u8840\u6ef4\u822c\u7684\u96e8\u3002\u7b3c\u5b50\u60ac\u6302\u5728\u5934\u9876\u4e0a\u3002\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u3002\u5669\u68a6\u822c"} +{"id": "0004822", "video_name": "0fbd11ed-d1f1-5e67-9e50-c8c039c9272a", "text": "\u673a\u5668\u4eba\u5728\u8dd1\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "5001031", "video_name": "fcee9bb9-26bb-5c02-89b8-bbb849821b1b", "text": "\u7535\u5f71\u5316\u7684\uff0c\u72d7\u548c\u732b\u7ed3\u5a5a\u3002"} +{"id": "0003453", "video_name": "3dd29c87-f8bc-53c8-bbad-40b40cfd1fdf", "text": "\u4e00\u4e2a\u6765\u81ea\u4f5b\u706f\u82af\u7684\u660e\u4eae\u706b\u7130\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447\u66f3\u3002"} +{"id": "2003104", "video_name": "b1417615-a630-51af-a1ed-7bc23dae5b44", "text": "\u4ecb\u7ecd\u4e3b\u89d2\u7684\u573a\u666f\uff0c\u6765\u81ea\u53f2\u8482\u6587\u00b7\u65af\u76ae\u5c14\u4f2f\u683c1980\u5e74\u4ee3\u7684\u5e7b\u60f3\u7535\u5f71\u300a\u5feb\u4e50\u738b\u56fd\u300b\u3002"} +{"id": "8001675", "video_name": "793e5948-4ace-53a3-8c62-10954ed66b14", "text": "\u732b\u54aa\u5728\u58c1\u7089\u65c1\u8fb9\u7761\u89c9\u7684\u753b\u9762\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "0004512", "video_name": "0a4d09aa-1ebc-5daf-be0c-fb72abf64a2c", "text": "\u96d5\u5851\u3001\u8457\u540d\u827a\u672f\u5bb6\u3001\u73bb\u7483\u3001\u65cb\u8f6c\u3001\u95ea\u8000\u3001\u6c34\u3001\u9633\u5149\u3001\u7834\u788e\u3001\u585e\u73ed\u6d77\u6ee9\u3002"} +{"id": "4003747", "video_name": "d1ff742f-1a44-5a71-b3e8-2da79b394426", "text": "\u5f00\u5fc3\u7684\u5b66\u751f\u5728\u4e00\u5802\u7cbe\u5f69\u7684\u8bfe\u7a0b\u540e\u79bb\u5f00\u6559\u5ba4\u3002"} +{"id": "2004629", "video_name": "69e45a27-044a-5a30-89bf-0326a4b32d03", "text": "\u9ed1\u9aee\u611b\u9e97\u7d72\u7a4d\u6975\u53c3\u8207\u4e00\u500b\u6578\u64da\u5206\u6790\u9805\u76ee\uff0c\u8207\u4e00\u7fa4\u5c08\u696d\u4eba\u58eb\u8a0e\u8ad6"} +{"id": "0004415", "video_name": "087def22-1f1c-5a33-a70c-98b45f7fe27e", "text": "\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u591c\u665a\uff0c\u5728\u6811\u4e0a\u6302\u7740\u4e00\u8f6e\u660e\u4eae\u7684\u6708\u4eae\u3002"} +{"id": "2003985", "video_name": "35ae3859-543e-5ddb-a713-cf06bb0db04a", "text": "\u5c55\u793a\u4e00\u4e2a\u5728\u516c\u53f8\u529e\u516c\u5ba4\u91cc\u626e\u6f14\u5973\u8001\u677f\u7684\u5458\u5de5\uff0c\u7a7f\u7740\u804c\u4e1a\u88c5\u3002\u5c55\u793a\u4e0d\u540c\u7684\u9762\u90e8\u8868\u60c5\u3002"} +{"id": "6003675", "video_name": "2a95c404-ad5f-5a0f-9fe3-d5edae9aea9e", "text": "\u4e00\u4f4d\u89d2\u6597\u5929\u4f7f\u9a91\u58eb\u5728\u7ade\u6280\u573a\u4e2d\uff0c\u964d\u4e0b\u706b\u96e8\uff0c\u98d8\u843d\u4f59\u70ec\uff0c\u5730\u9762\u662f\u7194\u5ca9\uff0c\u662f\u4e00\u4f4d\u7537\u6027"} +{"id": "2006276", "video_name": "e175bc01-a745-508f-a7b4-b1aeab53961e", "text": "\u6885\u897f\u88ab\u59da\u660e\u62ac\u8d77\u6765\u4e86\u3002"} +{"id": "7004880", "video_name": "3de725c6-f59e-54ba-96db-d20de6dae66e", "text": "\u751f\u6210\u4e00\u4e2a\u5e26\u6709\u54ed\u6ce3\u8868\u60c5\u7684\u4e0b\u884c\u8ffd\u968f\u8005\u56fe\u8868\u3002"} +{"id": "4002192", "video_name": "2453106f-1d9f-57ba-8dc2-7e95688e170e", "text": "\u5979\u5728\u624b\u5199\u4fbf\u6761\u4e2d\u503e\u8bc9\u4e86\u5979\u5bf9\u6bdb\u8338\u8338\u7684\u4f34\u4fa3\u7684\u6e34\u671b\uff0c\u7279\u522b\u662f\u4e00\u53ea\u6a59\u8272\u7684\u732b\uff0c\u6210\u4e3a"} +{"id": "1003340", "video_name": "3d8768c7-4ac7-5bfc-9740-5fffbeb1a313", "text": "Source sentence: Eldorado\u9ec4\u91d1\u57ce\u5728\u7eff\u8272\u7684\u4e1b\u6797\u4e2d\uff0c\u4e3b\u5e7f\u573a16:9\u3002\n\nTranslated sentence: Eldorado\u9ec4\u91d1\u57ce\u4f4d\u4e8e\u7eff\u8272\u4e1b\u6797\u4e2d\uff0c\u4e3b\u5e7f\u573a"} +{"id": "0003595", "video_name": "40201c2e-660f-5146-871e-bbdea43149ec", "text": "\u4e00\u68f5\u6811\u5728\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u7a81\u7136\u5012\u4e0b\uff0c\u53d1\u51fa\u5de8\u54cd\uff0c\u56de\u58f0\u4e0d\u7edd\u3002\u955c\u5934\u968f\u540e\u626b\u89c6\uff0c\u63ed\u793a\u51fa\u4e00"} +{"id": "0003673", "video_name": "417cda1f-dddc-51bc-a648-41dedbdd56ef", "text": "\u5e74\u8f7b\u7537\u5b69\u5229\u4e9a\u59c6\u4e0a\u65b9\u7684\u661f\u661f\u91cd\u65b0\u6392\u5217\uff0c\u5f62\u6210\u4e86\u4e00\u4e2a\u5929\u4f53\u5973\u5b50\u7684\u5f62\u8c61\uff0c\u5979\u81ea\u6211\u4ecb\u7ecd\u4e3a\u8fd9\u4e2a\u68a6\u5883\u7684\u5b88"} +{"id": "8002954", "video_name": "e6e481c3-7084-5bc8-8f81-2d8885fb7fee", "text": "\u7334\u738b\u53d8\u6210\u4e00\u53ea\u9e70\u3002"} +{"id": "6003690", "video_name": "9f8c56c0-8b4e-5e73-ba88-2b1cdf13770a", "text": "\u4e00\u4e2a\u756a\u8304\u7f51\u7ad9\u524d\u7aef\u7684\u56fe\u7247"} +{"id": "7002306", "video_name": "f7b27ec9-e8ab-54da-9ec0-013ad33f070f", "text": "\u9ebb\u96c0\u5728\u4e91\u5c42\u4e0b\u98de\u7fd4\u3002"} +{"id": "3006700", "video_name": "85364c6f-f466-566d-bb27-55f534f74261", "text": "\u9a7e\u8f66\u7a7f\u8d8a\u70ed\u5e26\u96e8\u6797\uff0c\u6709\u5f88\u591a\u68d5\u6988\u6811\u3002"} +{"id": "1006554", "video_name": "7807573a-d1fa-540b-b4f5-bd72e882d747", "text": "GTA 3\u89d2\u8272NPC\u591a\u8fb9\u5f62\u6e32\u67d3\u4e0d\u4f73\uff0c3D\u6c7d\u8f66\u52ab\u6301\u3002"} +{"id": "4002419", "video_name": "18127dc1-0c7d-56d5-8317-7f2fcec1b4d5", "text": "\u4e00\u53ea\u5c0f\u8001\u9f20\u548c\u4e00\u53ea\u96c4\u4f1f\u7684\u72ee\u5b50\u5728\u4e1b\u6797\u4e2d\u81ea\u8c6a\u5730\u7ad9\u5728\u4e00\u8d77\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "1003393", "video_name": "3e921e9c-3f59-5cbf-b1f3-fce6b1af7fd7", "text": "\u79fb\u52a8\u56fe\u50cf\uff0c16K\u5206\u8fa8\u7387\uff0c\u6e05\u6670\uff0c\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u79fb\u52a8\u7684\u6c14\u6ce1\uff0c\u4e0b\u843d\u7684\u79fb\u52a8\u6c14"} +{"id": "3006079", "video_name": "6cd30953-c8db-52b7-b11e-21a1217dec43", "text": "\u795ezilla\u5728\u8857\u4e0a\u548c\u4e00\u53ea\u5927\u732b\u8df3\u821e\u3002"} +{"id": "3006701", "video_name": "ba2850cd-7b5d-532d-bec4-479d2ef5120b", "text": "\u7537\u4eba\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u5e76\u5fae\u7b11\u3002"} +{"id": "2005441", "video_name": "83ac183b-d6cd-576b-a1b3-0898b55a099f", "text": "\u7eff\u8272\u548c\u7070\u8272\u7684\u989c\u8272\u5728\u767d\u8272\u7eb8\u5f20\u4e0a\u6e85\u5f00\u3002"} +{"id": "1005834", "video_name": "6b43657a-957b-5473-8da0-f6ac7418475a", "text": "\u4e00\u5757\u77f3\u5934\u6f02\u6d6e\u5728\u4e00\u4e2a\u5e26\u6709\u65e5\u5149\u7684\u6df7\u51dd\u571f\u5149\u6ed1\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "6004079", "video_name": "c5ae006b-b933-507f-87d9-2972594daaf6", "text": "\u521b\u4f5c\u4e00\u4e2a\u65f6\u95f4\u8de8\u5ea6\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a\u5feb\u4e50\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u5361\u901a\u4eba\u7269\u9010\u6e10\u8f6c\u53d8\u4e3a\u75b2\u60eb\u4e0d\u582a\u3001\u7cbe\u75b2"} +{"id": "8001012", "video_name": "cca31328-5a9f-5822-99d4-ad48bc825332", "text": "\u53ef\u7231\u7684\u5a74\u513f\u5fae\u7b11\u7740\u76f8\u4e92\u770b\u7740\u3002"} +{"id": "4002519", "video_name": "9c6b2f1f-dc67-55f3-a07c-0e61bc165324", "text": "\u5728\u4e2d\u56fd\u53e4\u4ee3\u7684\u6c49\u671d\uff0c\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u7ec3\u4e60\u529f\u592b\u3002\u4e00\u4f4d\u8001\u5e08\u548c\u7236\u4eb2\u7ad9\u5728\u5bf9\u9762\uff0c\u65c1\u8fb9\u6709\u4e00\u95f4\u5c0f"} +{"id": "6003524", "video_name": "744925fa-c50f-5224-84e6-95076a9ec940", "text": "\u5e05\u6c14\u7684\u5e74\u8f7b\u7537\u5b50\u5728\u5e8a\u4e0a\u7761\u89c9\uff0c\u5e8a\u8fb9\u684c\u5b50\u4e0a\u653e\u7740\u4e66\u3002 \n\nSource sentence: The cat is lying on the sofa and enjoying the sunshine. \n"} +{"id": "0006031", "video_name": "255bcb98-a36f-5e3f-acfd-d36b7f7f8401", "text": "\u65c5\u884c\u53bb\u4f26\u6566\uff0c\u91d1\u94b1\u98de\u6765\u98de\u53bb\u3002"} +{"id": "6002223", "video_name": "a841a17f-5c29-5d8f-b7f4-b9ca3ba40d98", "text": "\u5feb\u901f\u98de\u884c\u7269\u4f53\uff0c\u5728\u5929\u7a7a\u3001\u6c34\u4e0b\u548c\u5730\u9762\u4e0a\u98de\u884c\u7a7f\u8d8a\u5168\u7403\u76843D\u3002"} +{"id": "3004491", "video_name": "a8ff709c-f0bb-5a08-9153-f05f963f7723", "text": "\u4e00\u540d\u5178\u578b\u7684\u6cd5\u56fd\u4eba\u7ad9\u5728\u827e\u83f2\u5c14\u94c1\u5854\u524d\u3002"} +{"id": "1004113", "video_name": "4c25e78b-9863-507a-96f9-5d67bd2fd1c7", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u6234\u7740\u6ed1\u8f6e\u978b\u98de\u5feb\u6ed1\u884c\u3002"} +{"id": "2006117", "video_name": "ba2118fb-653a-5e67-983f-59fe17ccbc84", "text": "\u6211\u5e0c\u671b\u4ed6\u4eec\u5728\u8857\u4e0a\u8d70\u8def\u65f6\u80fd\u591f\u4e92\u76f8\u770b\u7740\u5bf9\u65b9\u3002"} +{"id": "8001536", "video_name": "1b9f3c5e-9571-5912-9ffb-6c4cfa657a78", "text": "\u4e00\u4e2a\u89d2\u8272\u8dd1\u4e0a\u5c71\u4e18\uff0c\u4fef\u77b0\u7740\u5c71\u8109\uff0c\u6b23\u8d4f\u7f8e\u4e3d\u7684\u5c71\u8c37\u666f\u8272\u3002"} +{"id": "7002595", "video_name": "393c572c-d518-54fe-9c0f-dcb8a4f78873", "text": "\u5973\u4eba\u5728\u4e00\u4e2a\u975e\u5e38\u9ad8\u6863\u7684\u8d2d\u7269\u4e2d\u5fc3\u8d2d\u7269\u3002"} +{"id": "1004157", "video_name": "4d079a58-5b26-58be-873c-03b1ef8565cb", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u767d\u8272\u6c99\u53d1\u4e0a\u73a9\u89c6\u9891\u6e38\u620f\u3002\u4ed6\u4eec\u4e24\u4e2a\u90fd\u6709\u5218\u6d77\u7684\u68d5\u8272\u5934\u53d1\u3002\u4ed6\u4eec\u6709\u4e00\u53ea\u66b9\u7f57\u732b"} +{"id": "4002604", "video_name": "03e11b24-699f-5799-b468-08454ec6e236", "text": "\u95ea\u7535\u4ece\u53f3\u5230\u5de6\u95ea\u8000\u3002"} +{"id": "7004586", "video_name": "b2334b43-d279-54a2-9e44-fd245e7c21b9", "text": "\u4e00\u4efd\u5e26\u6709\u878d\u5316\u7684\u5976\u916a\u3001\u610f\u5927\u5229\u8fa3\u5473\u9999\u80a0\u548c\u70e4\u8fc7\u7684\u897f\u846b\u82a6\u7247\u7684\u5927\u5706\u5f62\u62ab\u8428\u3002"} +{"id": "4004728", "video_name": "a72e4db1-db88-527f-b829-593a45bc1dab", "text": "\u5728\u4e00\u4e2a\u6709\u7f8e\u4e3d\u82b1\u56ed\u548c\u7011\u5e03\u7684\u5730\u65b9\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u629a\u6478\u5979\u7684\u53ef\u7231\u6bdb\u8338\u8338\u7684\u72d7\u3002"} +{"id": "4002875", "video_name": "25345115-eaaf-5d4f-bd46-54e5649037c0", "text": "Source sentence: Eminem\u5403\u5e78\u8fd0\u9b54\u6cd5\u7403\u8c37\u7247\u7535\u5f714K"} +{"id": "1006347", "video_name": "74332b97-8c8f-5eb1-80a5-20953769b880", "text": "\u6709\u8da3\u7684\u84dd\u8272\u5fae\u7b11\u62d6\u62c9\u673a\uff0c\u5361\u901a\uff0c\u4e3a\u513f\u7ae5\u5236\u4f5c\uff0c\u524d\u65b9\u7ea2\u8272\u3002"} +{"id": "0005277", "video_name": "17b9c475-03e0-5467-a513-0af3c7c2a6b6", "text": "\u4e00\u4e2a\u7537\u4eba\u9a91\u7740\u9a6c\u89c2\u770b\u4e00\u4e2a\u5973\u5b69\u6f14\u594f\u4e8c\u80e1\u3002"} +{"id": "1003779", "video_name": "45c6f966-ca3b-5b0b-b670-4b44daa43514", "text": "\u4e00\u4e2a\u65b0\u95fb\u56e2\u961f\u4e0e\u4e00\u53ea\u55b7\u706b\u7684\u9f99\u6218\u6597\u3002"} +{"id": "7003485", "video_name": "b4086b87-c96f-575b-aea1-17ca41684573", "text": "\u63cf\u7ed8\u5e02\u6c11\u5728\u4eb2\u773c\u76ee\u7779\u9053\u8def\u6539\u9020\u65f6\u7684\u53cd\u5e94\u573a\u666f\uff0c\u5c55\u73b0\u51fa\u597d\u5947\u3001\u60ca\u8bb6\u548c\u94a6\u4f69\u7684\u6df7\u5408\u60c5\u611f\u3002"} +{"id": "1004936", "video_name": "5b4567c9-e16e-5dca-a876-2e683a9e3496", "text": "\u6e05\u6f88\u7684\u6cb3\u6c34\u6d41\u6dcc\u7740\u3002"} +{"id": "6003163", "video_name": "dbee34d3-3a28-5742-a1c4-76f2eca52bac", "text": "\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u8df3\u86a4\u5e02\u573a\u4e0a\u7684\u5916\u661f\u4eba\u8d2d\u7269\u7684\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "2007524", "video_name": "8f529970-f87d-50b6-a96e-bc5b2b90acbc", "text": "Source sentence: \u5a01\u5229\u6bd4\u5728\u661f\u671f\u5929\u665a\u4e0a\u5728\u6c49\u5821\u738b\u70b9\u4e86\u56db\u4e2a\u829d\u58eb\u6c49\u5821\u5305\uff0c\u5e76\u627f\u8bfa\u5728\u661f\u671f\u4e8c\u4ed8\u6b3e\u30021976\u5e74"} +{"id": "2004777", "video_name": "cbc64de0-0cb6-58ef-8878-4333cf70df2f", "text": "\u4e00\u4e2a\u5973\u5b69\u5e26\u7740\u732b\u5728\u82b1\u56ed\u91cc\u6563\u6b65\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002749", "video_name": "8ed4759a-3639-5015-9b5d-72d21f6534b3", "text": "\u4e00\u53ea\u59dc\u9ec4\u8272\u7684\u732b\u5728\u8349\u5730\u4e0a\u8ffd\u9010\u4e00\u53ea\u8001\u9f20\u3002\u4fe1\u606f\uff1aJacobus\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001867", "video_name": "70d6bad5-5870-5374-8261-80eee294a075", "text": "\u6728\u684c\u4e0a\u6709\u6c34\u679c\u3002"} +{"id": "2006142", "video_name": "379f0477-a34a-5dc4-9ec2-f3a44645262b", "text": "\u8d5b\u8f66\u5728\u8d5b\u9053\u4e0a\u884c\u9a76\u3002\u4fe1\u606f\uff1aZL Odai\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003361", "video_name": "d5a92cbb-51ad-5df3-b1e1-79192401710b", "text": "\u5728\u592a\u7a7a\u7f8e\u4e3d\u7684\u661f\u4e91\u95f4\u98de\u884c\u3002"} +{"id": "0006149", "video_name": "275bed9a-5323-5047-8171-4328018e3d80", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u4eba\u5f62\u793c\u7269\u5531\u7740\u6b22\u5feb\u6709\u8da3\u7684\u73b0\u4ee3\u5723\u8bde\u9882\u6b4c\uff0c\u914d\u4ee5\u5723\u8bde\u706f\u3001\u96ea\u548c"} +{"id": "6002260", "video_name": "b8a61959-dc37-59c3-bdaa-e10ab0d7228e", "text": "\u4e00\u4e2a\u6c99\u7279\u963f\u62c9\u4f2f\u4eba\u4e58\u5750\u592a\u7a7a\u98de\u8239\u98de\u5f80\u7a7a\u95f4\u7ad9\u3002"} +{"id": "0003200", "video_name": "3922d052-355a-5f22-81ea-e288c2a3ef94", "text": "\u751f\u6210\u4e00\u6761\u8fdb\u5165\u6c34\u5e93\u7684\u6c34\u7ba1\u9053\u3002"} +{"id": "2007399", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "\u4e3b\u795e\u514b\u5229\u987b\u90a3\uff0c\u4ee5\u5341\u516d\u79cd\u827a\u672f\u964d\u751f\u4e8e\u5fb7\u7f57\u5df4\u65f6\u4ee3\u3002"} +{"id": "2005606", "video_name": "c6f7b363-5cb5-52f4-9e8e-dc0283ac93fd", "text": "\u4e00\u4e2a\u8eab\u6750\u975e\u5e38\u597d\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u5e74\u8f7b\u6f02\u4eae\uff0c\u8eab\u6750\u5f88\u597d\u3002"} +{"id": "0006337", "video_name": "2adbee19-e1c9-5bee-8107-61f18357b816", "text": "\u745e\u58eb\u56fd\u5bb6\u516c\u56ed\uff0c\u5c71\u4e0a\u5f00\u6ee1\u4e86\u82b1\uff0c\u4f60\u53ef\u4ee5\u4eab\u53d7\u4e00\u4e2a\u8f7b\u677e\u3001\u9690\u853d\u7684\u5047\u671f\u3002"} +{"id": "8003397", "video_name": "a4992cab-259b-5fbf-9890-f5dc3d5307e5", "text": "\u534e\u5c14\u8857\u4e0a\u6bcf\u4e2a\u4eba\u90fd\u5f88\u5f00\u5fc3\uff0c\u5bf9\u4e8e\u80a1\u7968\u6295\u8d44\u6765\u8bf4\u662f\u7f8e\u597d\u7684\u4e00\u5929\u3002"} +{"id": "0006952", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "\u4ed6\u8d70\u8fdb\u53e6\u4e00\u4e2a\u623f\u95f4\uff0c\u770b\u5230\u91cc\u9762\u5f88\u6697\uff0c\u53ea\u6709\u4e00\u5f20\u684c\u5b50\u548c\u51e0\u628a\u6905\u5b50\uff0c\u6444\u50cf\u673a\u8fdb\u884c\u4e86\u5e73\u79fb\u548c\u7f29\u653e\u3002"} +{"id": "4003521", "video_name": "c9d623f7-fb0e-51e7-a072-b759e96303fb", "text": "\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u5b87\u822a\u5458\uff0c\u591a\u5f69\u7684\u661f\u7cfb\uff0c\u80cc\u666f\u4e2d\u7684\u571f\u661f\u5448\u8fbe\u7c73\u6069\u00b7\u8d6b\u65af\u7279\u98ce\u683c\uff0c\u592a\u7a7a\u6587\u660e"} +{"id": "6004402", "video_name": "30e061b5-eb68-5ae3-a2f3-371e0c48c306", "text": "\u6d3e\u5bf9\u706f\u5149\u3001\u70df\u96fe\u3001\u65cb\u8f6c\u3001\u9713\u8679\u3001\u7c89\u8272"} +{"id": "3004992", "video_name": "22a38311-d932-5280-94d9-d74c994ad3eb", "text": "\u4e00\u4e2a\u751f\u52a8\u7684\u62df\u4eba\u5316\u5361\u5c14\u5fb7\u96d5\u5851\u5728\u4e00\u4e2a\u80ae\u810f\u7684\u9152\u5427\u524d\u9762\u62bd\u7740\u4e00\u652f\u9999\u70df\uff0c\u4ee5\u52a8\u6f2b\u98ce"} +{"id": "8002923", "video_name": "dc98b7f7-3e65-5e7f-9cc0-8e67b37bc74c", "text": "\u592a\u7a7a\u98de\u8239\u7a7f\u8fc7\u4eba\u4f53\u5185\u90e8\uff0c\u7ecf\u8fc7\u5fc3\u810f\u3002"} +{"id": "1006207", "video_name": "71d02d20-e6a8-5425-93da-e993f0f85194", "text": "\u9b54\u6cd5\u51b0\u95e8\uff0c\u9ed1\u6697\u80cc\u666f\uff0c8K\u753b\u8d28\uff0c\u6770\u4f5c\uff0c\u6700\u9ad8\u7ec6\u8282\uff0c\u6e05\u6670\u9510\u5229\u3002"} +{"id": "4004212", "video_name": "85f8e121-b0f7-5dba-a762-f2ac885b6523", "text": "\u4e00\u4e2a\u6f02\u4eae\u4f46\u4e0d\u771f\u8bda\u3001\u5fc3\u9ed1\u7684\u5973\u5b69\u3002\u4fe1\u606f\uff1a\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "7003922", "video_name": "1608f7bf-1fc1-5334-9ae5-abec7680df11", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u8005\u53c2\u52a0\u4e86\u8036\u7a23\u548c\u739b\u4e3d\u4e9a\u7684\u8bde\u751f\u573a\u666f\u3002"} +{"id": "6004165", "video_name": "eceb5c44-366d-5e07-b102-2da5ca385edd", "text": "\u9752\u82d4\u751f\u957f\u5728\u8eba\u5728\u7530\u91ce\u4e2d\u7684\u4eba\u8eab\u4e0a\uff0c\u62cd\u7acb\u5f97\u7167\u7247\uff0c1950\u5e74\u4ee3\u3002"} +{"id": "3006627", "video_name": "333f2394-f9c8-5c93-8b9e-48ce2321b3ef", "text": "\u7c89\u8272\u89d2\u8272\u5728\u68ee\u6797\u4e2d\u5bfb\u627e"} +{"id": "6004592", "video_name": "2f20f209-4ed9-5fbc-8e97-cebf720b10be", "text": "\u4e00\u4e2a\u76f4\u5f84\u4e3a120\u7c73\u7684\u5706\u5f62\u5c9b\u5c7f\u3002"} +{"id": "1006279", "video_name": "72fe656c-078e-5aad-bdfc-83472f68c470", "text": "\u4e00\u53ea\u9e2d\u5b50\u5728\u9633\u5149\u4e0b\u5954\u8dd1\u3002"} +{"id": "7002644", "video_name": "cc8c151b-a3b1-548b-a1bb-1274dced930e", "text": "\u8377\u7f57\u5c3c\u59c6\u65af\u00b7\u535a\u4e16\u7684\u300a\u5730\u72f1\u4e50\u56ed\u300b(The Garden of Earthly Delights)1503-1515\u5e74\u5df2\u7ecf\u6829\u6829\u5982\u751f\u3002"} +{"id": "7003003", "video_name": "6d56a57d-168a-5c87-83bf-566ff937cc6a", "text": "\u5728\u6c34\u4e0a\u6f02\u6d6e\u7684\u8036\u7a23\uff0c\u6162\u52a8\u4f5c\u653e\u5927\uff0c\u95e8\u5f92\u4f38\u624b\uff0c\u96f7\u9e23\u95ea\u7535\uff0c\u6d77\u6d6a\u7ffb\u6d8c\uff0c\u95ea\u95ea\u53d1"} +{"id": "5001900", "video_name": "8cbbb0c9-e32e-5390-a593-fe6537cfa8b6", "text": "\u5927\u5385\u91cc\u653e\u7740\u9ab7\u9ac5\uff0c\u7a97\u6237\u900f\u8fdb\u6765\u5149\u7ebf\u3002"} +{"id": "6003529", "video_name": "854e9cb1-41ad-5766-a664-22e73575daa0", "text": "\u6697\u9ed1\u7834\u574f\u795e\u548c\u8759\u8760\u4fa0\u6b63\u5728\u8840\u6c60\u4e2d\u6fc0\u6218\u3002"} +{"id": "6004865", "video_name": "4eb28093-e4ca-589d-bff5-9e7bc9bf0d42", "text": "\u795e\u79d8\u7684\u5fc3\u7075\u8bfb\u8005\u63e1\u7740\u6c34\u6676\u7403\u3002\u50ac\u7720\u672f\u8bf1\u53d1\u4e86\u4e00\u79cd\u4ee4\u4eba\u96be\u5fd8\u7684\u611f\u89c9\u3002\u591a\u5f69\u7684\u7075"} +{"id": "3003991", "video_name": "f0a2539a-d405-5738-aab7-07486de1d2ab", "text": "\u53f2\u6cf0\u9f99\u4f5c\u4e3a\u9ed1\u624b\u515a\u6740\u624b\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "0006613", "video_name": "2f8eb22a-086c-5e18-bc9e-665ef3c7d7c4", "text": "\u7070\u9ed1\u8272\u7684\u5783\u573e\u98ce\u590d\u53e4\u80cc\u666f\uff0c\u4e2d\u95f4\u6709\u4ece\u4e2d\u6563\u53d1\u51fa\u6765\u7684\u7f8e\u4e3d\u7684\u73ab\u7470\u7c89\u7ea2\u8272\u83b2\u82b1\u548c"} +{"id": "3005838", "video_name": "8e36e839-3ea3-581b-897b-72a6d7c52ac0", "text": "\u5de5\u4f5c\u5ba4\u65b0\u95fb\uff0c\u9ad8\u8d28\u91cf\uff0c16:9\u5bbd\u9ad8\u6bd4"} +{"id": "4003447", "video_name": "cb7c934c-0ed6-5cc5-ab08-294a41247db8", "text": "\u827e\u8389\u548c\u672c\u5c3c\u89c1\u8bc1\u65e5\u51fa\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u80dc\u5229\u548c\u53cb\u8c0a\u7684\u611f\u89c9\u3002"} +{"id": "5001839", "video_name": "c5eb8b96-f69b-51e8-bbf9-8db9e1615fb2", "text": "\u7537\u6027\u5929\u4f7f\uff0c\u7167\u7247\u903c\u771f\uff0c\u8d85\u7ea7\u8be6\u7ec6\uff0c\u957f\u53d1\uff0c\u7a7f\u7740\u767d\u8272\u548c\u91d1\u8272\u7684\u98d8\u5e26\u3002"} +{"id": "8002960", "video_name": "eeff0c61-6a8d-5637-842f-767a1e440c5d", "text": "\u4e00\u540d\u7537\u5b50\u770b\u5230\u4e00\u8f86\u65e0\u4eba\u9a7e\u9a76\u7684\u6c7d\u8f66\uff0c\u611f\u5230\u6050\u60e7\u4e0d\u5df2\u3002"} +{"id": "1005564", "video_name": "666c622d-607c-5dd2-95c2-ef6d6429c6f1", "text": "\u91ca\u8fe6\u725f\u5c3c\u5750\u5728\u4e00\u4e2a\u9759\u8c27\u7684\u5c0f\u6eaa\u65c1\uff0c\u5929\u7a7a\u4e2d\u98de\u7740\u9e1f\u513f\uff0c\u666f\u8272\u5982\u540c\u5929\u5802\u3002 \n\nSource sentence: The internet"} +{"id": "3006664", "video_name": "94d57950-5670-5367-906d-6e9e7721018c", "text": "\u94a2\u94c1\u4fa0\u6b63\u5728\u8fea\u62dc\u6e38\u6cf3\u6c60\u6e38\u6cf3\u3002"} +{"id": "2007121", "video_name": "151c2cee-b5fa-54d5-8f83-9175a5b1be9f", "text": "\u4ea7\u54c1\u5468\u56f4\u95ea\u70c1\u7740\u5149\u8292\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005874", "video_name": "5fa2a2e8-81f1-5e91-915d-c1907689ca4c", "text": "\u7535\u5f71\u822c\u4fef\u77b0\u7f8e\u4e3d\u7684\u6e56\u6cca\u81ea\u7136\u573a\u666f\uff0c\u771f\u5b9e\u5199\u5b9e\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0cHDR\uff0c8K\uff0c\u7535\u5f71\u5f0f\u62cd\u6444\u3002"} +{"id": "3005151", "video_name": "e2105f22-8b28-565c-83d1-793d62953719", "text": "\u7d20\u63cf\u957f\u77ed\u4e0d\u4e00\u3001\u8272\u5f69\u591a\u6837\u3001\u7b14\u89e6\u72ec\u7279\u3001\u7eb9\u7406\u7eb7\u7e41\u3001\u58a8\u6c34\u7ec6\u8282\u4e30\u5bcc\u3001\u9ed1\u7ebf\u6d53\u91cd"} +{"id": "2004969", "video_name": "20901f72-b328-5123-8066-d16b52263912", "text": "1980\u5e74\uff0c\u4e00\u4e2a\u88ab\u7eff\u8272\u7c98\u6db2\u8986\u76d6\u7684\u5c0f\u9547\u3002 \n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002"} +{"id": "2005721", "video_name": "759e778b-9651-51d4-ac5d-723cb37e00aa", "text": "\u4e00\u4e2a\u6709\u7740\u9ed1\u6697\u7684\u5317\u6b27\u73af\u5883\u548c\u4e00\u4e2a\u50cf\u7d20\u98ce\u683c\u7684\u6258\u5c14\u96d5\u50cf\u76842D\u6e38\u620f\u3002"} +{"id": "6004455", "video_name": "563cbe48-267b-52da-ae06-c4f0310cc155", "text": "\u96ea\u82b1\u843d\u5f97\u66f4\u5bc6\u66f4\u5feb\u3002"} +{"id": "0003146", "video_name": "380b6b2e-1885-58d8-951a-f00a8b4efa27", "text": "2040\u5e74\u4e1c\u4eac\u7684\u8d5b\u535a\u670b\u514b\u6807\u5fd7\uff0c\u672a\u6765\u57ce\u5e02\u3002\u4fe1\u606f\uff1a2023\u5e74\u7684\u4eba\u5de5\u667a\u80fd\u97f3\u4e50\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006257", "video_name": "97a8c556-7270-537c-9a90-876270962e14", "text": "\u4e00\u4e2a\u7535\u5f71\u9884\u544a\u7247\uff0c\u6301\u7eed30\u79d2\uff0c\u63cf\u8ff0\u4e00\u4e2a\u52a8\u753b\u5de5\u4f5c\u5ba4\u88ab\u8150\u8d25\uff0c\u5230\u5904\u90fd\u662f\u58a8\u6c34\uff0c\u6700\u540e\u51fa\u73b0\u4e86\u4e00\u53ea\u58a8\u6c34\u6076"} +{"id": "0004369", "video_name": "07e5dece-2f93-5d06-ad3a-4b288a42f23f", "text": "\u4e00\u6b3e\u673a\u5668\u4eba\u6218\u58eb\uff0c\u50cf\u9ad8\u8fbe\u7ffc\u6216\u53d8\u5f62\u91d1\u521a\uff0c\u4f46\u662f\u91c7\u7528\u8d5b\u8f66\u4e00\u7ea7\u65b9\u7a0b\u5f0f\u6885\u8d5b\u5fb7\u65af\u94f6\u7bad\u7684"} +{"id": "8001342", "video_name": "40d22619-1034-592c-a221-bd0eb8b1ddc3", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7ad9\u5728\u4e9a\u5229\u6851\u90a3\u5dde\u7684\u7535\u8868\u524d\u3002"} +{"id": "7004439", "video_name": "a4dea720-9bfc-5f7a-95af-57376d355b1d", "text": "\u8d85\u9ad8\u6e058K\u89c6\u9891\uff0c80\u5e74\u4ee3\u9ed1\u6697\u5e7b\u60f3\u4e3b\u9898\uff0c\u6781\u5176\u8be6\u7ec6\u3001\u8d85\u7ea7\u903c\u771f\uff0c4K\u30018K\uff0c\u6ca1\u6709\u52a8\u6001\u6a21\u7cca\u6548\u679c\uff0c\u4e00\u4e2a"} +{"id": "5001439", "video_name": "0b976c10-6c2d-5121-9da1-e20f328b8372", "text": "\u5728\u8bbe\u8ba1\u5e08\u4e0a\u521b\u5efa\u4e00\u4e2a\u7f8e\u4e3d\u7684\u7f51\u7ad9\u3002"} +{"id": "6002403", "video_name": "70a8241b-aa0b-58cb-a313-508ae58b8d41", "text": "\u5728\u57ce\u5e02\u91cc\u5f00\u8f66\u515c\u98ce"} +{"id": "7003539", "video_name": "12717086-3e05-5688-bf87-1603f1e76272", "text": "\u5927\u811a\u73a9PS5\u7684\u5821\u5792\u4e4b\u591c\uff0c4K\u548c\u903c\u771f\u3002 \n\nSource sentence: Can you please pass me the salt? \n\n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u53ef\u4ee5\u5417"} +{"id": "7002606", "video_name": "05ef0315-9ff2-50f7-ae57-cb31e4499781", "text": "\u4e00\u4f4d\u8001\u5e08\u5728\u5b66\u751f\u9762\u524d\u6717\u8bfb\u8bd7\u6b4c\u3002"} +{"id": "0005830", "video_name": "21dc7c31-b426-501d-81d8-cd0f24297f15", "text": "\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u5728\u8db3\u7403\u6bd4\u8d5b\u4e2d\u6253\u8fdb\u4e86\u4e00\u4e2a\u6f02\u4eae\u7684\u8fdb\u7403\u3002"} +{"id": "6004282", "video_name": "7285825a-45b0-5c27-84e6-fe6f5da22625", "text": "\u4e00\u4f4d\u5973\u58eb\u7ad9\u5728\u5feb\u901f\u79fb\u52a8\u7684\u4e91\u5c42\u4e0b\u65b9\uff0c\u65b9\u5411\u5411\u4e0a\u3002\u9ad8\u6e05\u3002"} +{"id": "4003978", "video_name": "1d14a5ab-67a3-5f40-b8b5-3741f79ac7a1", "text": "\u4e0d\u540c\u7684\u624b\u5f62\u5728\u656c\u62dc\u4e2d\u4e3e\u8d77\uff0c\u6355\u6349\u4e86\u6b4c\u66f2\u4e2d\u8868\u8fbe\u7684\u8d5e\u7f8e\u548c\u656c\u754f\u7684\u672c\u8d28\u3002"} +{"id": "5001882", "video_name": "3b44fb29-7193-5c2a-879e-b86fcba591e4", "text": "\u524d\u5f80\u6c34\u4e0a\u4e50\u56ed\uff0c\u4f46\u6c34\u4e0a\u4e50\u56ed\u53d8\u6210\u4e86\u7194\u5ca9\u3002"} +{"id": "3006635", "video_name": "a564ca02-1f15-5780-9650-68932198669c", "text": "\u4e00\u4e2a\u4eba\u5728\u96ea\u82b1\u98de\u821e\u7684\u5c71\u4e0a\u5954\u8dd1\uff0c\u6b64\u65f6\u592a\u9633\u6b63\u5728\u843d\u5c71\u3002"} +{"id": "3006298", "video_name": "96dc9a32-5a54-5e47-9d46-b58d85695f2c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u7ad9\u5728\u6e38\u6cf3\u6c60\u8fb9\uff0c\u7136\u540e\u8df3\u8fdb\u4e86\u6c60\u4e2d\u3002"} +{"id": "1006188", "video_name": "71572ace-57e3-536d-825b-ca1bcb4e8fe4", "text": "\u53e4\u4ee3\u6587\u660e\u53d1\u751f\u6218\u4e89\u7684\u8be6\u7ec6\u7535\u5f71\u5f0f\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "5001230", "video_name": "4b3cd07a-94c0-5da1-8246-3b76dd8cbb46", "text": "\u4e00\u7fa4\u821e\u8005\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u8868\u6f14\u4e00\u5834\u5feb\u9583\u3002\u4ed6\u5011\u7a7f\u8457\u8272\u5f69\u7e7d\u7d1b\u7684\u670d\u88dd\uff0c\u8ddf"} +{"id": "4004230", "video_name": "f9662ad6-0fe1-55ae-8b02-779f00744ed5", "text": "\u5f39\u5939\u4f1a\u653e\u5165\u67aa\u819b\uff0c\u5c06\u6240\u6709\u540d\u5b57\u6e05\u96f6\u3002"} +{"id": "3004765", "video_name": "c97390a1-7357-5f30-ace6-36bba8c08c8d", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u753b\u9762\u4e0a\u6709\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u6559\u5ba4\u91cc\uff0c\u4ece\u8fdc\u5904\u7f9e\u6da9\u5730\u671b\u7740\u5b89\u5fb7\u9c81\u3002"} +{"id": "7004052", "video_name": "747baa96-e19a-53fe-ab8f-f2efe7535195", "text": "\u4e00\u4e2a\u5e26\u7740\u730e\u9e70\u7684\u6b66\u58eb\u4ee3\u8868\u8fd9\u4e2a\u5bb6\u65cf\uff0c\u4f5c\u4e3aYouTube\u7f29\u7565\u56fe\u3002"} +{"id": "1004209", "video_name": "4dc151fc-5c78-5404-9332-689d8a1ebfff", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u4e2ajpg\u5c4f\u5e55\u6e38\u620f\u4e2d\u8015\u79cd\u3002"} +{"id": "3005244", "video_name": "667eee52-bfcc-5501-87be-c758cecb7a11", "text": "\u5c55\u793a\u9f99Sparklewing\u5c06\u6c34\u6676\u4ea4\u7ed9Sammy\uff0c\u5c55\u793a\u4ed6\u4eec\u5728\u76f8\u9047\u8fc7\u7a0b\u4e2d\u5efa\u7acb\u7684\u53cb\u8c0a\u548c\u4fe1\u4efb\u3002"} +{"id": "4002831", "video_name": "7583b753-eb5d-5213-9402-b76c3921754e", "text": "\u767d\u8272\u7684\u957f\u53d1\uff0c\u706b\u7130\u822c\u7684\u773c\u775b\u548c\u811a\uff0c\u8eab\u7a7f\u53e4\u4ee3\u5e0c\u4f2f\u6765\u767d\u8272\u8863\u670d\u7684\u8001\u4eba\u5750\u5728\u91d1\u8272\u7684\u5b9d"} +{"id": "1004456", "video_name": "5270cf80-2e8f-57b4-baac-b37dca489ca8", "text": "\u4e00\u4e2a\u573a\u666f\u5c55\u793a\u4e86\u4e00\u540d\u519b\u5b98\u548c\u4ed6\u7684\u59bb\u5b50\u6700\u540e\u4e00\u6b21\u89c1\u9762\u7684\u60c5\u666f\u3002"} +{"id": "0003882", "video_name": "4524c2f6-f1d1-56e2-b8fe-70ac42955056", "text": "\u519b\u56e2\u9634\u5f71\u6218\u6597\u4e4b\u738b"} +{"id": "5001685", "video_name": "7373e3aa-7512-55fc-b0cf-9db1d1b7b55f", "text": "\u5947\u7f8e\u62c9\uff1a\u4e00\u79cd\u7531\u4e0d\u540c\u52a8\u7269\u90e8\u5206\u7ec4\u6210\u7684\u751f\u7269\uff0c\u5305\u62ec\u72ee\u5b50\u3001\u5c71\u7f8a\u548c\u86c7\uff0c\u4ee3\u8868\u6df7\u5408\u7684\u602a\u7269\u3002"} +{"id": "1005419", "video_name": "638b131a-5964-5110-a3c1-87e2331a9bbb", "text": "\u6709\u84b8\u6c7d\u7684\u9ed1\u6697\u4e3b\u9898\u5927\u6469\u5929\u5927\u697c\u5ba2\u5385\uff0c\u51e0\u4e4e\u6ca1\u6709\u5149\u7ebf\uff0c\u5468\u56f4\u662f\u9ed1\u8272\u7684\u767d\u8272LED\u706f\uff0c\u73b0\u4ee3\u3001\u73b0\u5b9e"} +{"id": "7002538", "video_name": "71121267-e596-5a86-9e78-1841eb01af3d", "text": "\u8840\u6ef43D\u6a21\u578b\u5728\u767d\u8272\u80cc\u666f\u4e0a\u65cb\u8f6c\u3002"} +{"id": "6004804", "video_name": "51760c0d-9226-5e01-9e23-2b97b50abc7b", "text": "\u5e73\u9759\u7684\u73af\u5883\uff0c\u5b64\u72ec\u7684\u91ce\u8425\uff0c\u4e00\u9876\u5e10\u7bf7\uff0c\u5e10\u7bf7\u524d\u7684\u706b\u5806\uff0c\u5e26\u84b8\u6c7d\u7684\u9505\u5728\u706b\u5806"} +{"id": "7003073", "video_name": "aeb83bb0-269d-51c8-822a-c4aa4e4411d2", "text": "\u4e2d\u5e74\u5973\u5b50\u5728\u96e8\u4e2d\u5feb\u4e50\u5730\u8df3\u821e\u3002"} +{"id": "2003547", "video_name": "8cc0815b-ede1-50ea-93a6-82619d5c13d2", "text": "\u4f5b\u9640\u6b63\u5728\u6559\u6388\u53f2\u8482\u592b\u00b7\u4e54\u5e03\u65af\uff0c\u4e00\u9897\u82f9\u679c\u4ece\u6811\u4e0a\u843d\u4e0b\uff0c\u9ed1\u767d\u58a8\u6c34\u5b9a\u4e49\uff0c\u95ea\u7535\u3002"} +{"id": "1004049", "video_name": "4b1b387d-bf37-5d65-bf1c-cddf0460c1d6", "text": "\u4e00\u4e2a\u4e9a\u6d32\u7537\u5b50\u6b63\u9762\u89c6\u89d2\u88c5\u5305\u3002\n\nSource sentence: Can you please pass me the salt and pepper? \n\u8bf7\u4f60\u628a\u76d0\u548c\u80e1\u6912\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "6004020", "video_name": "ffd843cb-cb22-5f25-a76d-81d746a34309", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u7684\u52a8\u753b\uff0c\u4ece\u96ea\u5cf0\u5c71\u8109\u5b81\u9759\u7684\u666f\u8272\u5f00\u59cb\u3002\u968f\u7740\u98ce\u7684\u52a0\u5f3a\uff0c\u6a21\u62df\u9ad8\u8038\u7684\u677e"} +{"id": "3006121", "video_name": "a8fb539f-8e0c-5478-8acf-32f87ec4a91c", "text": "\u505c\u8f66\u573a\u957f\u6ee1\u4e86\u8349\uff0c\u4eba\u4eec\u6b63\u5728\u90a3\u4e2a\u7a7a\u95f4\u91cc\u53d1\u6325\u521b\u610f\u3002"} +{"id": "4003864", "video_name": "2d8ee24b-355a-5917-abf6-fa412e8a1586", "text": "\u9f99\u8e52\u8dda\u800c\u884c\uff0c\u7b28\u624b\u7b28\u811a\u7684\uff0c\u4f46\u660e\u667a\u7684\u8001\u732b\u5934\u9e70\u5f88\u6709\u8010\u5fc3\u5e76\u4e14\u9f13\u52b1\u4ed6\u3002\u4ed6"} +{"id": "0006410", "video_name": "2bec0f18-86e5-549e-a829-0c08892c5da2", "text": "\u5728\u6eda\u6eda\u7684\u5c71\u4e18\u548c\u76db\u5f00\u7684\u8349\u5730\u4e4b\u95f4\uff0c\u6709\u4e00\u4e2a\u751f\u6c14\u52c3\u52c3\u7684\u52a8\u7269\u56ed\uff0c\u91cc\u9762\u4f4f\u7740\u72ee\u5b50\u91cc\u5965\u3001"} +{"id": "1003304", "video_name": "3cca5a2f-f685-50d3-b328-3da2bfc863e6", "text": "\u4e00\u4e2a\u975e\u5e38\u63a5\u8fd1\u7684\u7537\u4eba\u811a\u6b65\u56fe\u50cf\uff0c\u4ed6\u6b63\u5728\u722c\u697c\u68af\u3002\n\nSource sentence: I will meet you at the coffee shop at 3 pm. \n\u6211\u4f1a\u5728\u4e0b\u53483\u70b9\u5728"} +{"id": "8001943", "video_name": "7b929c72-69cc-556d-8f29-8267610f8aac", "text": "\u5546\u4e1a\u5e7f\u544a\uff0c\u96c5\u8bd7\u5170\u9edb\u5148\u4fee\u590d\u539f\u751f\u6db2\u96c6\u4e2d\u4fee\u62a4\u7cbe\u534e\uff0c\u9633\u5149\u548c\u82b1\u6735\uff0c\u6d77\u6d0b\uff0c\u5fae\u98ce\u62c2\u8fc7\uff0cGS "} +{"id": "2005763", "video_name": "b0a6dd45-a9d3-53b7-a442-74fce202e504", "text": "4D\u7269\u4f53\u57283D\u7a7a\u95f4\u4e2d\u79fb\u52a8\u3002"} +{"id": "7003610", "video_name": "44de6583-e337-5846-854e-cde6bf4199bb", "text": "\u4e00\u4e2a\u7531\u6db2\u6001\u91d1\u5c5e\u5236\u6210\u8eab\u4f53\u3001\u4f7f\u7528\u7eaf\u80fd\u91cf\u5236\u6210\u7684\u5251\u7684\u673a\u5668\u4eba\u5973\u6027\uff0c\u7ad9\u5728\u661f\u9645\u6218\u573a\u4e0a\u3002"} +{"id": "2006049", "video_name": "60a24ca6-51fc-58e3-a32d-590557bbc163", "text": "\u76ae\u5361\u4e18\u5728\u96ea\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "3004369", "video_name": "77f7bfcb-9da8-5ab8-97ad-99612b5a5b9a", "text": "\u4e00\u53ea\u718a\u732b\u5439\u706d\u751f\u65e5\u8721\u70db\u3002"} +{"id": "7004527", "video_name": "34144f0a-5949-590f-ad1f-bba9d637ede2", "text": "\u521b\u4f5c\u4e00\u4e2a\u77ed\u89c6\u9891\uff0c\u4f7f\u7528\u9c9c\u8273\u7684\u989c\u8272\uff0c\u5feb\u901f\u7a7f\u8d8a\u753b\u9762\uff0c\u548c\u62bd\u8c61\u7684\u5f62\u72b6\u3002"} +{"id": "4003493", "video_name": "9bcdebcf-e229-5c27-a1e6-954dc29ec6b5", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u5154\u5b50\u5728\u4e00\u7247\u82b1\u6d77\u4e2d\u6f2b\u6b65\uff0c\u8d70\u4e86\u4e0d\u8fdc\u4fbf\u9047\u5230\u4e86\u4e00\u53ea\u51f6\u731b\u7684\u72fc\u6321\u5728\u4e86\u5b83"} +{"id": "0003340", "video_name": "3bef34e4-1ff0-5f92-9d6f-22b30e10f2aa", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4e00\u4e2a\u4eba\u8c08\u8bba\u4e16\u754c\u53d8\u5f97\u5982\u4f55\u7cdf\u7cd5\u7684\u77ed\u89c6\u9891\u3002"} +{"id": "6002435", "video_name": "896ab249-5a17-5c7c-9881-3bacf4958b42", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7537\u5973\u56e2\u4f53\u8df3\u97e9\u56fd\u6d41\u884c\u821e\u8e48\u3002"} +{"id": "5001067", "video_name": "b8e17342-d872-5a4b-a0e9-858e01ab73ed", "text": "\u4e00\u8f86\u9177\u70ab\u7684\u8d85\u7ea7\u8dd1\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u9a70\u9a8b\u3002"} +{"id": "3006799", "video_name": "3c3bafe1-1412-585e-9d4a-455a0b59a8d3", "text": "\u9c9c\u6d3b\u9c7c\u5728\u7389\u7c73\u5377\u91cc\u3002"} +{"id": "8003605", "video_name": "3a220982-e5b1-5f39-8678-ec4bdd15bab9", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u706b\u9e21\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\uff0c\u6fc0\u5149\u3002"} +{"id": "6004899", "video_name": "2e2bb09c-4202-59de-af3b-715c14c11400", "text": "\u5b9d\u9a6cM5\u4e50\u9ad8\u5957\u88c5\u5e26\u76d2\u5b50\u3002"} +{"id": "7004578", "video_name": "5bf28cdb-ae5a-585c-a2ec-c40212e50a74", "text": "\u8d85\u7ea7\u9ad8\u94c1\u5728\u900f\u660e\u7684\u96a7\u9053\u4e2d\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "3005832", "video_name": "f93aa2b8-5b5d-559c-ae1f-9469fa50e281", "text": "\u521b\u9020\u4e00\u4e2a\u4eba\u4f53\u8840\u6db2\u5faa\u73af\u7684\u4e09\u7ef4\u89c6\u9891\u3002"} +{"id": "3006599", "video_name": "39d40e31-c5ed-5cbf-9d9b-d39fb566f881", "text": "\u5c55\u793a\u4e00\u4e2a\u6c14\u6c1b\u4ee4\u4eba\u4e0d\u5b89\u7684\u6751\u5e84\uff0c\u6697\u793a\u7740\u5373\u5c06\u5230\u6765\u7684\u795e\u79d8\u3002"} +{"id": "7003525", "video_name": "96646bb1-826d-5852-8734-9e0801bbc0c8", "text": "\u975e\u5e38\u903c\u771f\u7684\u5df4\u4f10\u5229\u4e9a\u6551\u62a4\u8f66\uff0c\u5e26\u95ea\u70c1\u7684\u84dd\u8272\u706f\u5149\u3002"} +{"id": "0004165", "video_name": "046215c6-edff-5c44-9863-0f8544da404e", "text": "\u5370\u5ea6\u8bae\u4f1a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ad8\u8f9b\u70f7\u6e32\u67d3\uff0c\u591c\u95f4\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "1006714", "video_name": "7b04ec75-3ad6-5e7c-8bdf-11d814b1ca6c", "text": "\u795e\u8bdd\u751f\u7269\u81ea\u7531\u5730\u6f2b\u6e38\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u76db\u5f00\u82b1\u6735\u7684\u9999\u6c14\u548c\u770b\u4e0d\u89c1\u7684\u9e1f\u513f\u7684\u65cb\u5f8b"} +{"id": "0003022", "video_name": "35b7b21a-57c9-5cda-b965-b2db4cf4078d", "text": "\u300a\u6469\u8bc3\u5a46\u7f57\u591a\u300b\u4e2d\u6c99\u5e93\u5c3c\u79d8\u5bc6\u8c08\u8bdd\u3002"} +{"id": "6003922", "video_name": "771e6c3f-965d-5331-826d-968bc6824a9d", "text": "\u97f3\u4e50\u821e\u53f0\uff0c\u80cc\u666f\u662f\u8352\u5e9f\u7684\u666f\u8c61\uff0c\u88ab\u6bc1\u574f\u7684\u623f\u5c4b\u548c\u706b\u707e\u3002"} +{"id": "6002329", "video_name": "955a93f1-7a60-5a07-ade3-4e354bb46a49", "text": "\u60a8\u8981\u6c42\u7684\u592a\u9633\u80fd\u7535\u6c60\u677f\u6536\u96c6\u5149\u7ebf\u7684\u73b0\u5b9e\u4e3b\u4e49\u73b0\u4ee3\u63d2\u56fe\uff0c\u592a\u9633\u548c\u7535\u677f\u4e4b\u95f4\u6709\u4e00\u6735\u5c0f\u800c\u6d45\u8272\u7684\u4e91\u3002"} +{"id": "7003730", "video_name": "1df1d50a-b62a-5627-adf6-980dd5d7684c", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6765\u5230\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4e61\u6751\u3002"} +{"id": "2007323", "video_name": "2f3f4972-f849-50e5-a48b-bd2f9c11a198", "text": "\u51b0\u8574\u542b\u6545\u4e8b\uff0c\u6bcf\u4e00\u5757\u51b0\u6838\u90fd\u662f\u7b49\u5f85\u88ab\u9605\u8bfb\u7684\u7ae0\u8282\u3002"} +{"id": "1003857", "video_name": "47106abf-c90b-5081-834c-144a30c0a8ba", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5f69\u8679\u68ee\u6797\u91cc\u548c\u8349\u5730\u4ea4\u8c08\u3002"} +{"id": "1006472", "video_name": "7675ef00-c2fa-59e8-bcce-2e35c5da1da4", "text": "\u7528\u753b\u9762\u4f18\u7f8e\u7684\u6e56\u7554\u573a\u666f\u5236\u4f5c\u7ea6\u7ff0\u7684\u4e09\u7ef4\u89d2\u8272\u3002\u5c55\u793a\u8ba2\u5a5a\u6212\u6307\uff0c\u4f7f\u5468\u56f4\u73af\u5883\u5728\u4e09\u7ef4\u4e2d\u903c"} +{"id": "6003722", "video_name": "b2f90298-e8c3-5d72-b049-484593089961", "text": "\u649e\u51fb\u7740\u52a0\u52d2\u6bd4\u6d77\u7684\u6d6a\u82b1\u3002\u5355\u8bcd\uff1aSTRAPA\u3002"} +{"id": "0006811", "video_name": "33795e37-cc2f-5073-ad93-d47534b897ef", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4eba\u7c7b\u770b\u5230AI\u673a\u5668\u6b63\u5728\u505a\u4ed6\u4eec\u6240\u80fd\u505a\u7684\u4e00\u5207\uff0c\u5982\u8fd0\u884c\u7f16\u7801\u3001\u521b\u4f5c\u5185\u5bb9\u3001\u8fd0\u8425\u5e7f\u544a\u7b49\u7b49\uff0c\u4f46AI\u673a\u5668"} +{"id": "2004057", "video_name": "1ee5aaa9-e431-5051-af6b-d3eb72813700", "text": "\u706b\u5728\u5c0f\u7537\u5b69\u540e\u65b9\u71c3\u70e7\uff0c\u70df\u96fe\u6eda\u6eda\u3002"} +{"id": "2007768", "video_name": "e86432ff-b8cb-525a-8828-4f1edefceda7", "text": "\u4e00\u53ea\u7531\u6c49\u5821\u5305\u5236\u6210\u7684\u725b"} +{"id": "4003458", "video_name": "b2f46cce-48fc-5760-a27c-64ab2a3ed460", "text": "\u4e00\u80a1\u8f7b\u67d4\u7684\u5fae\u98ce\u5439\u8fc7\u8352\u51c9\u7684\u6d77\u5cb8\u7ebf\u3002"} +{"id": "1003673", "video_name": "43a13f76-7307-5f2b-be1e-77a11a9f32a6", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e00\u8f86\u6d82\u6709\u955c\u9762\u6f06\u7684\u5b9d\u9a6cX5\u884c\u9a76\uff0c\u7ecf\u8fc7\u68d5\u6988\u6811\uff0c\u955c\u5934\u5411\u5b83\u653e\u5927\u3002\u80cc\u666f"} +{"id": "7004218", "video_name": "b3ee3402-f8f7-5929-a893-e65308f44700", "text": "\u5927\u5ce1\u8c37\u4ee5\u9c9c\u8273\u7684\u8272\u5f69\u5728\u9e1f\u77b0\u56fe\u4e2d\u5448\u73b0\u3002 \n\nSource sentence: She was delighted to receive a bouquet of flowers from her secret admirer. \n\n"} +{"id": "5001697", "video_name": "01fe3032-3942-51ba-b4d3-46cf1fd5f725", "text": "\u4e00\u53ea\u8eab\u7a7f\u9ec4\u91d1\u3001\u7ea2\u5b9d\u77f3\u548c\u94bb\u77f3\u534e\u4e3d\u8863\u670d\u7684\u733f\u7334\uff0c\u6234\u7740\u7687\u51a0\uff0c\u5728\u7a7a\u4e2d\u98de\u7fd4"} +{"id": "4002132", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "\u5236\u4f5c\u4e00\u6bb51500\u5e74\u4ee3\u7684\u5a5a\u793c4K\u89c6\u9891\uff0c\u7a7f\u7740\u5f53\u65f6\u7684\u670d\u88c5\uff0c\u4ece\u6559\u5802\u591c\u95f4\u51fa\u95e8\uff0c\u5c55\u73b0\u6b27\u6d32\u6587\u5316\uff0c\u80cc"} +{"id": "2007495", "video_name": "c6d2898e-6a97-5d8e-aec4-a3b26d457a46", "text": "\u624b\u6301\u4e00\u53ea\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u4e2d\u56fd\u4f20\u7edf\u8336\u676f\u548c\u4e00\u53ea\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u5496\u5561\u676f\uff1b19:6\u52a8\u4f5c1"} +{"id": "4003836", "video_name": "532ac671-b05b-5fcb-aa72-2da09e5ae7bf", "text": "\u5728\u5ba1\u5224\u65e5\uff0c\u54c8\u624e\u7279\u00b7\u7a46\u7f55\u9ed8\u5fb7\u5c06\u4ece\u5929\u800c\u964d\uff0c\u5e26\u7740\u4e00\u987b\u767d\u8272\u7684\u767d\u8272\u957f\u888d\u3002"} +{"id": "2004882", "video_name": "12964c79-4e00-539e-87bb-a6796520c980", "text": "\u4e09\u7ef4\u732b\u7684\u6e32\u67d3\uff0c\u901a\u8fc7\u7167\u660e\u6280\u672f\u5b9e\u73b0\u3002"} +{"id": "7003631", "video_name": "3e11b384-dea2-5a6d-8832-609470ac835d", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u4e1b\u6797\u4e2d\uff0c\u4ecb\u7ecd\u4e00\u4e2a\u597d\u5947\u7684\u72d7Max\u548c\u4e00\u4e2a\u8c03\u76ae\u7684\u7334\u5b50Milo\uff0c\u5e76\u63cf\u8ff0\u4ed6\u4eec\u5728\u9ad8\u8038\u7684\u6811"} +{"id": "8001915", "video_name": "7d0de08b-0136-5733-bd6d-b27cb07889fe", "text": "\u7537\u5b50\u7a7f\u7740\u897f\u88c5\uff0c\u5634\u91cc\u53fc\u7740\u9999\u70df\uff0c\u4e3e\u7740\u624b\u673a\u5728\u5934\u4e0a\u3002"} +{"id": "2004204", "video_name": "378ffc24-ca0b-55b6-ba7a-dddf11472476", "text": "\u98de\u7fd4\u7684\u51e4\u51f0\uff0c\u4ece\u5c71\u9876\u8d77\u98de\u76843D\u6e32\u67d3\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff084K\uff09\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004700", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "\u4e00\u53ea\u5c0f\u7334\u5b50\u5728\u68ee\u6797\u91cc\u5403\u6843\u5b50\u3002"} +{"id": "5001204", "video_name": "f4316358-9b14-5ee0-ade2-6abb287dd867", "text": "\u718a\u770b\u5230\u4e00\u4e9b\u4ed9\u5973\u4eec carrying \u4e00\u9897\u5de8\u5927\u95ea\u4eae\u7684\u7403\uff0c\u50cf\u4ec0\u4e48\u4e1c\u897f\u3002"} +{"id": "3005627", "video_name": "a62b384f-bde6-5655-9e21-18f809bf4454", "text": "\u6728\u677f\u4e0a\u6709\u7b11\u8138\u3001\u624b\u81c2\u548c\u817f\u8df3\u821e\u3002"} +{"id": "6004050", "video_name": "7b827770-5564-506b-8c06-660f6b7a4903", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u89c6\u9891\u7247\u6bb5\uff0c\u5c55\u793a\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u4e0e\u6d3b\u529b\u3001\u5145\u6ee1\u6b22\u7b11\u7684\u8349\u5730\uff0c\u5c0f\u6bdb\u6bdb\u866b\u5361\u5c14\u5728\u5176\u4e2d\u5feb\u4e50"} +{"id": "1003090", "video_name": "38de7376-13b6-5b01-8a01-fac42d2d2f5d", "text": "\u5bbd\u5c4f\u7535\u8111\u663e\u793a\u5c4f\uff0c\u4e0a\u9762\u663e\u793a\u4e00\u4e2a\u76f4\u7ebf\u56fe\u3002"} +{"id": "3004135", "video_name": "612266d0-10df-5bce-905f-136b2ff23a7d", "text": "\u7535\u5f71\u300aCinematic still\u300b\u7531\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u6267\u5bfc\uff0c\u6570\u767e\u4e2a\u6728\u5076\u5728\u57ce\u5e02\u4e2d\u5bf9\u8bdd\uff0c\u7279\u5199\u955c\u5934\u91c7\u7528\u4e86\u8d5b"} +{"id": "4004074", "video_name": "515c2635-9d9d-5542-9697-89532ef29c54", "text": "\u6709\u4e00\u4e2a\u519c\u573a\uff0c\u91cc\u9762\u6709\u4e00\u4e2a\u519c\u6c11\u548c\u4e00\u6240\u623f\u5b50\uff0c\u8fd8\u6709\u4e00\u5934\u725b\u3002"} +{"id": "1005195", "video_name": "5f8fe237-7ac3-54d7-9b64-8dd927790f71", "text": "\u98df\u54c1\u6d77\u62a5\u98ce\u683c\uff0c\u4e00\u53ea\u8001\u864e\u60f3\u8981\u5403\u524d\u9762\u76d8\u5b50\u91cc\u7684\u5927\u9aa8\u5934\uff0c\u771f\u5b9e\u98ce\u683c\u3002"} +{"id": "0005259", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "\u5370\u5ea6\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u4e0a\u7684\u5361\u4f0a\u62c9\u4ec0\u5c71\u4e0a\u6709\u4e00\u5e45\u56fe\u50cf\u3002"} +{"id": "2005607", "video_name": "71eb677c-43d8-548e-a53d-b1da01c23324", "text": "\u5361\u901a\u51fa\u73b0\u4e86\u592a\u9633\uff0c\u628a\u6240\u6709\u7684\u96e8\u90fd\u6652\u5e72\u4e86 (\u6240\u6709\u7684\u96e8)\u3002"} +{"id": "2007922", "video_name": "a7be2c5a-2629-5567-b057-e427694bd83e", "text": "\u53e4\u8463\u5e97\u5728\u660e\u6708\u5149\u4e0b\uff0c\u70df\u96fe\u5347\u8d77\uff0c\u6f02\u6d6e\u7684\u4e91\u6735\u300216:9. 3D\u3002"} +{"id": "8002695", "video_name": "18f60498-0b09-5485-aba4-ceac2818e4b9", "text": "\u4e00\u957f\u4e32\u7684\u4e2a\u4eba\u88ab\u9501\u94fe\u675f\u7f1a\u4f4f\u3002"} +{"id": "1004279", "video_name": "4f1f1330-75e9-5b48-9e1d-18b3c29bdba0", "text": "\u6a2a\u8de8\u68ee\u6797\u7684\u5370\u5ea6\u795e\u50cfShiva Lingam\u3002"} +{"id": "4004513", "video_name": "d09c51a6-0bbb-5f41-bc61-32377a06b1bf", "text": "\u8d44\u672c\u4e3b\u4e49\u548c\u9053\u5bb6\u601d\u60f3\u548c\u8c10\u878d\u5408\u7684\u53ef\u89c6\u5316\u3002"} +{"id": "0006608", "video_name": "2f7a2596-1ba1-5d46-bbdf-81ade0951558", "text": "\u4e00\u6240\u88ab\u65f6\u95f4\u9057\u5f03\u7684\u5927\u5b66\u5448\u73b0\u51fa\u8d85\u771f\u5b9e\u7684\u753b\u9762\u3002\u5899\u58c1\u4e0a\u7684\u6c34\u6ce5\u4e0d\u65ad\u8131\u843d\uff0c\u8001\u5e08\u548c\u5b66\u751f\u4eec\u6b63\u8bd5\u56fe"} +{"id": "2004744", "video_name": "ad036934-8c69-5232-848d-592f3e2b4f67", "text": "\u5979\u7684\u7b2c\u4e00\u5370\u8c61\u662f\u68ee\u6797\u91cc\u7684\u6811\u6728\u4eff\u4f5b\u5728\u5fae\u5fae\u6643\u52a8\uff0c\u5c31\u50cf\u5b83\u4eec\u5728\u8df3\u821e\u4e00\u6837\u3002\u6811\u53f6\u53d8\u6210\u5404"} +{"id": "7003028", "video_name": "220d523b-4e5a-5cdd-9a3a-e6a732ecf8ef", "text": "\u521b\u9020\u4e00\u4e2a\u4e07\u5723\u8282\u6751\u5e84\uff0c\u6709\u5357\u74dc\u548c\u6c1b\u56f4\u706f\u5149\u3002\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "4002619", "video_name": "dbf07027-7b5a-506e-8686-3084c34bfdec", "text": "\u5723\u5f17\u6717\u897f\u65af\u5728\u963f\u897f\u897f\u6b23\u8d4f\u548c\u4ef0\u671b\u592a\u9633\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8003289", "video_name": "5afd27c3-9b6d-505b-83f0-3462389feaa0", "text": "\u7ea2\u9f99\u98de\u884c\u53d8\u7126\u76f8\u673a\u79fb\u52a8\u8bbe\u7f6e\u4e3a3Y\u4e00\u6735\u4e91\u3002"} +{"id": "2004795", "video_name": "b661ba6c-0d43-5a9b-b90a-ce4475808eb8", "text": "\u6700\u540e\u56de\u671b\u90a3\u4e2a\u5145\u6ee1\u56de\u5fc6\u7684\u8001\u68da\u5c4b\uff0c\u7136\u540e\u671d\u7740\u5730\u5e73\u7ebf\u524d\u8fdb\u3002"} +{"id": "1003188", "video_name": "3aa4dd29-b6bb-5ace-8481-326304e3842a", "text": "\u4e00\u4e2a\u4ecb\u7ecd\u6027\u8d28\u7684YouTube\u89c6\u9891\uff0c\u4e24\u5bf9\u60c5\u4fa3\u5728\u5c71\u8def\u4e0a\u8d70\u7740\uff0c\u524d\u65b9\u6709\u60ca\u4eba\u7684\u7f8e\u666f\u3002"} +{"id": "7002407", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "\u7537\u4eba\u7a7f\u7740\u9a6c\u91cc\u5965\u670d\u88c5\u5728\u5a5a\u793c\u4e0a\u5403\u610f\u5927\u5229\u8089\u4e38\u9762\u3002"} +{"id": "0003883", "video_name": "45284216-a27e-5769-af6d-44bea4af0d83", "text": "\u684c\u5b50\u4e0a\u6709\u5f88\u591a\u949e\u7968\u3002"} +{"id": "0004183", "video_name": "04b665b9-fa45-5c5a-abe9-dda134793ece", "text": "\u665a\u971e\u4e2d\u98d8\u8361\u7684\u9ea6\u6d6a\u56fe\u7247"} +{"id": "4003680", "video_name": "d9161244-79c3-5c8a-a2f1-4ad50d053a3b", "text": "\u8d8a\u5357\u7f8e\u4e3d\u7684\u8001\u5e08\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u53d1\u4e1d\u52a8\u6001\uff0c8K\u5149\u5b66\uff0c\u8d85\u7ea7\u751f\u52a8\u7ec6\u8282\uff0c\u4e30\u5bcc\u591a\u5f69\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "6004849", "video_name": "01901190-49b1-5b9f-8da5-f33e0b2d05e1", "text": "\u96e8\u679c\u00b7\u6770\u514b\u66fc\u9970\u6f14\u7684\u91d1\u521a\u72fc\uff0c\u7a7f\u7740\u9ec4\u8272\u670d\u88c5\uff0c\u6ca1\u6709\u9762\u5177\u548c\u80e1\u5b50\uff0c\u7279\u5199\u955c\u5934\u975e\u5e38\u903c"} +{"id": "8003921", "video_name": "2366ab25-515f-548f-88e7-4676368a228f", "text": "\u8d85\u4eba\u5728\u5730\u7403\u5468\u56f4\u98de\u7fd4\u3002"} +{"id": "0003554", "video_name": "3f6f94e2-0b58-541b-a8e3-f1a5b7f6e862", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u548c\u4e00\u4e2a\u7537\u4eba\u6253\u6597\u3002"} +{"id": "4002504", "video_name": "e55455b3-a896-5aea-bf28-3d9a8dbaa770", "text": "\u4e2d\u56fd\u7435\u7436\u6216\u4e2d\u56fd\u5409\u4ed6"} +{"id": "2005699", "video_name": "57a0eae5-8c15-5b55-9a1b-40e0e6d21c88", "text": "\u5c06\u8fd9\u5f20\u56fe\u7247\u52a8\u753b\u5316\u4e3a\u4e00\u4e2a\u81ea\u7136\u4e2d\u7684\u81ea\u884c\u8f66\u573a\u666f\u3002"} +{"id": "6003903", "video_name": "10408a13-8697-54dd-88b3-f322732b15a7", "text": "\u9752\u86d9\u8df3\u8fdb\u4e86\u6c64\u91cc\u3002"} +{"id": "0004753", "video_name": "0ea99e5e-ad1a-5fd9-88be-3c4964b3ce6c", "text": "\u4e24\u4e2a\u6f02\u4eae\u7684\u4e2d\u56fd\u5973\u5b69\u6b63\u5728\u73a9\u6c34\uff0c\u7b11\u7740\u3002"} +{"id": "2006140", "video_name": "897dde23-1060-59c1-a288-a70bee2f476c", "text": "\u4e00\u4e2a\u7a46\u65af\u6797\u7537\u5b50\u57283D\u4e2d\u7ad9\u5728\u4ed6\u7684\u5730\u65b9\u524d\u9762\u3002"} +{"id": "4003375", "video_name": "a165035f-be23-5ced-944a-83a13f2368ff", "text": "\u5ba1\u7f8e\u3001\u7387\u771f\uff0cBLACKPINK\u7684Jisoo\u7a7f\u7740Y2K\u7684\u670d\u88c5\uff0c\u65f6\u5c1a\uff0cOOTD\uff0c\u4e0a\u955c\uff0c\u59ff\u52bf\uff0c\u5168\u8eab\uff0c85mm\u955c\u5934\uff0c"} +{"id": "8003519", "video_name": "71ff8398-0130-5742-8d75-2de76229fa3a", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u88ab\u6709\u610f\u8bc6\u7684\u9ed1\u8272\u6ca5\u9752\u5305\u56f4\u7740\uff0c\u6b63\u6d41\u52a8\u7740\u5979\u548c\u5468\u56f4\u7684\u533a\u57df\u3002"} +{"id": "6004676", "video_name": "200ca620-3bf0-54a7-b79c-796c6cd2fb00", "text": "\u5728\u53e4\u8001\u7684\u8c6a\u5b85\u955c\u5b50\u91cc\uff0c\u5e7d\u7075\u7684\u5f71\u5b50\u4ee53D\u98ce\u683c\u5728\u79fb\u52a8\u3002"} +{"id": "2004803", "video_name": "839f710b-985a-5f53-8a79-22780331f0f1", "text": "\u521b\u9020\u4e00\u4e2aTed\u548cZoe\u5174\u9ad8\u91c7\u70c8\u5730\u8df3\u821e\u7684\u751f\u52a8\u573a\u666f\uff0c\u5468\u56f4\u662f\u6b22\u5feb\u7684\u68ee\u6797\u751f\u7269\u3002"} +{"id": "2003246", "video_name": "2695ce72-3072-5d73-8857-7f76fa1f71a0", "text": "\u4ee5H.R. Giger\u7684\u827a\u672f\u98ce\u683c\uff0c\u6784\u60f3\u4e00\u4e2a\u52a8\u753b\u3001\u6a2a\u5411\u65cb\u8f6c\u3001\u5e7f\u89d2\u7684\u955c\u5934\uff0c\u5c55\u73b0\u4e00\u53ea\u84b8\u6c7d\u670b\u514b\u673a"} +{"id": "4003760", "video_name": "7d411128-fd80-5c21-9b81-f178f5834351", "text": "\u6536\u85cf\u5bb6\u7684\u5c55\u793a\u6a71\u67dc\u91cc\u88c5\u6ee1\u4e86\u4e94\u989c\u516d\u8272\u7684\u866b\u5b50\u3002"} +{"id": "0005704", "video_name": "1fd21c04-21f1-5501-869e-3d5de7987095", "text": "\u4ed6\u7a7f\u8d8a\u795e\u79d8\u7684\u666f\u89c2\uff0c\u8d8a\u8fc7\u5371\u9669\u7684\u6865\u6881\uff0c\u89e3\u51b3\u795e\u8bdd\u751f\u7269\u63d0\u51fa\u7684\u96be\u9898\u3002\u5728\u9014\u4e2d\u3002"} +{"id": "2004089", "video_name": "4e517bc8-ae85-5e1d-b2b7-6a3a70de721f", "text": "\u6613\u8d1f\u9762\uff0cbadhandv4\uff0c\uff08\u6700\u5dee\u8d28\u91cf\uff0c\u4f4e\u8d28\u91cf\uff1a1.3\uff09\uff0c\u5fbd\u6807\uff0c\u6c34\u5370\uff0c\u7b7e\u540d\uff0c\u6587\u672c"} +{"id": "2007772", "video_name": "dc2cd4bd-58c4-5832-bec3-148eaefd80a1", "text": "\u4e3b\u4eba\u516c\u5218\u80d6\u5b50\u5750\u5728\u95e8\u53e3\uff0c\u4e00\u624b\u62ff\u7740\u53e4\u8001\u7684\u9152\u575b\u3002\u900f\u8fc7\u8f7b\u8f7b\u63a0\u8fc7\u7684\u7a97\u5e18\uff0c\u4ed6\u770b\u7740"} +{"id": "6003256", "video_name": "50991a37-d699-5aa7-a91b-da03614ec08e", "text": "\u4e00\u680b\u903c\u771f\u7684\u522b\u5885\u5728\u9ed1\u591c\u4e2d\u88ab\u4e24\u76cf\u8857\u706f\u7167\u4eae\uff0c\u4e00\u4e2a\u7a7f\u7740\u5f97\u4f53\u7684\u7f8e\u4e3d\u9ed1\u4eba\u5e74\u8f7b\u5973\u5b50\u7ad9\u5728"} +{"id": "0006628", "video_name": "2fd5d2d2-da23-54e6-9dac-a0752ad82f24", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u68ee\u6797\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u53d1\u5149\u7684\u8611\u83c7\u7167\u4eae\u4e86\u9053\u8def\uff0c\u6c11\u95f4\u4f20\u8bf4\u7684\u751f\u7269\u5728\u9634\u5f71\u4e2d\u6f5c"} +{"id": "0004582", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "\u6bd4\u5c14\u00b7\u76d6\u8328\u5411\u5fae\u8f6f\u603b\u90e8\u6325\u624b\u544a\u522b\u3002"} +{"id": "0004428", "video_name": "08c937f0-6fb0-5d09-9e62-36d8e997a614", "text": "\u84dd\u8272\u548c\u9ec4\u8272\u7684\u98de\u673a\u548c\u6b63\u5728\u751f\u957f\u7684\u5411\u65e5\u8475"} +{"id": "4004363", "video_name": "c6336604-4f0e-55c5-a9cd-70ee6cc8a8b2", "text": "\u4e00\u4e2a\u4f9b\u732b\u548c\u8001\u9f20\u5c45\u4f4f\u7684\u5c0f\u6751\u5e84\uff0c\u4ece\u9876\u90e8\u62cd\u6444\uff0c16:9\u753b\u9762\u6bd4\u4f8b\u3002"} +{"id": "2006698", "video_name": "bf29490b-1654-5888-ad25-662c544a42a2", "text": "\u795e\u79d8\u7684\u540e\u623f\u8ff7\u5bab\u5728\u6570\u5b57\u7684\u68a6\u5e7b\u666f\u8c61\u4e2d\u663e\u73b0\u51fa\u6765\uff0c\u7531\u9762\u5b54\u7167\u4eae\uff0c\u88c5\u9970\u7740\u5fae\u5999\u7684"} +{"id": "1004010", "video_name": "4a3a5d08-db82-59f3-928e-29bbfe78cb90", "text": "\u6c7d\u8f66\u5728\u6cb9\u6cf5\u524d\u7f13\u6162\u884c\u9a76\u7b49\u5f85\u52a0\u6cb9\u7684\u8f6e\u5230\u3002"} +{"id": "0003124", "video_name": "37737eb0-0a84-54fd-bb67-fcc6a56a1174", "text": "\u4e00\u4e2a\u4eba\u60ca\u8bb6\u5730\u62ac\u5934\u3002"} +{"id": "8001727", "video_name": "32315d84-cb3e-57a5-a0a8-7e37147049d6", "text": "\u753b\u5361\u901a\u6c83\u5c14\u7279\u00b7\u8fea\u65af\u5c3c\u52a8\u753b\u677e\u9f20\u73a9\u800d\u7684\u573a\u666f\u3002"} +{"id": "7003133", "video_name": "0bf9f760-871c-508c-b9d1-e299ba01880b", "text": "\u5168\u7eaf\u79cd\u9a6c\u516c\u56ed\uff1a\u4e00\u4e2a\u81f4\u529b\u4e8e\u8d5b\u9a6c\u7684\u96d5\u5851\u516c\u56ed\u3002"} +{"id": "0004417", "video_name": "0881b073-8004-56da-834b-6c7dd31ee461", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u91d1\u8272\u793c\u670d\uff0c\u9762\u5bb9\u7f8e\u4e3d\uff0c\u773c\u775b\u5a07\u5a9a\uff0c\u6234\u7740\u5934\u9970\u548c\u7687\u51a0\u7684\u5973\u4eba\u7ad9\u5728"} +{"id": "7004055", "video_name": "911ca98d-99bf-51df-b33f-c35f5a1e26a2", "text": "\u8bb8\u591a\u4ed9\u5b50\u5728\u82b1\u56ed\u91cc\u5531\u6b4c\u3001\u8df3\u821e\u548c\u73a9\u800d\uff0c3D\u52a8\u753b\u3002"} +{"id": "8001591", "video_name": "b1758ac6-3abc-51c9-b0de-006667c21fb4", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u690d\u7269\u4ece\u94dd\u516d\u8fb9\u5f62\u4e2d\u751f\u957f\u51fa\u6765\u3002\n\nSource sentence: The restaurant serves delicious food with a beautiful view of the city. \n\n\u8fd9\u5bb6\u9910\u5385\u63d0\u4f9b\u7f8e"} +{"id": "4004190", "video_name": "a10c33ad-96d6-52ff-8768-0f5cabcd4024", "text": "\u529e\u516c\u5ba4\u5de5\u4f5c\u7684\u4eba\uff0c4K\uff0c\u6d45\u666f\u6df1\uff0c\u80cc\u666f\u662f\u7ebd\u7ea6\u57ce\u5e02\u666f\u89c2\uff0c4K\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "5001771", "video_name": "3cdafb82-1aeb-59e1-9dd7-6684d7232687", "text": "\u4ee5\u65af\u5e16\u89e6\u6478\u91d1\u6743\u6756\u7684\u753b\u50cf"} +{"id": "6003440", "video_name": "5f2c839b-ee2b-5112-8731-be56d0379f1a", "text": "\u7f8e\u4e3d\u7684\u5916\u661f\u751f\u7269\u5728\u4e00\u7247\u78f7\u5149\u7c89\u7ea2\u8272\u6c99\u6ee9\u4e0a\u6c90\u6d74\u3002\u5929\u7a7a\u5b9b\u5982\u94f6\u6cb3\u822c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "4004314", "video_name": "f84a17f6-9ef8-5ac5-aa6d-9ba379dcbb76", "text": "\u6f2b\u753b\u52a8\u753b\uff0c\u5b69\u5b50\u4eec\u73a9\u8367\u5149\u7403\u67aa\u3002"} +{"id": "2007467", "video_name": "72fdd79c-1edb-501e-9da8-b9c7ca52ac6b", "text": "\u4e00\u4e2a\u9e70\u5f0f\u5ea7\u6905\u5728\u98de\u673a\u673a\u7ffc\u4e0a\u3002"} +{"id": "7002943", "video_name": "79fa8511-0273-5088-a70e-1999d37e0b84", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u4f5c\u54c1\u3002\u4ee5\u8868\u73b0\u4e3b\u4e49\u7684\u65b9\u5f0f\u521b\u4f5c\u7ed8\u753b\u7d20\u63cf\u3002"} +{"id": "4004270", "video_name": "0c516db7-fbd3-524c-b10f-9cea05187421", "text": "\u963f\u51e1\u8fbe\u7684\u963f\u5e15\u7238\u7238\u548c\u4ed6\u7684\u5b69\u5b50\u4eec\u4e00\u8d77\u98de\u884c\uff0c4K\uff0c\u8d85\u903c\u771f\uff0c\u6bdb\u53d1\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "1006504", "video_name": "77084260-5902-59eb-95f5-e7b00f3c8485", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u516c\u56ed\u5411\u4e00\u4e2a\u5973\u5b69\u6c42\u5a5a\u3002"} +{"id": "4003627", "video_name": "aebd464b-6e32-5d54-aa97-4eacb58f1f7b", "text": "\u5929\u4e0a\u6709\u4e09\u4e2a\u6760\u6746\uff0c\u8349\u5199\u6210\u7684\u3002"} +{"id": "1004282", "video_name": "4f2a060e-bbbd-50b8-8e0a-774b0c6f851b", "text": "\u4e00\u4f4d\u91d1\u8272\u5934\u53d1\u7684\u5973\u5b69\u6b63\u5728\u8857\u4e0a\u5de5\u4f5c\u3002"} +{"id": "0003407", "video_name": "3d261586-d21e-5c2d-a80e-b8f022391370", "text": "\u8774\u8776\u98de\u8fdb\u5b57\u6bcd\u201cs\u201d\u548c\u201cf\u201d\u4e2d\u3002"} +{"id": "5001787", "video_name": "bf0f9dc5-2a9e-5cb4-8b33-28aac3093566", "text": "\u4f7f\u7528\u4e0d\u540c\u989c\u8272\u7684\u6811\u6728\u3001\u6c34\u548c\u5c71\u65c1\u7684\u6751\u5e84\uff0c\u521b\u9020\u81ea\u7136\u98ce\u666f\u7684\u4e19\u70ef\u753b\u5f62\u8c61\u3002"} +{"id": "0005501", "video_name": "1be934b9-48b7-50dd-9d0b-b939d6e732f7", "text": "4K\u56fe\u50cf\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u957f\u5377\u53d1\uff0c\u7f8e\u4e3d\u7684\u5fae\u7b11\uff0c\u68d5\u8272\u7684\u773c\u775b\u3002"} +{"id": "0006699", "video_name": "315c8d61-9a54-574f-bc81-5028f77b2690", "text": "Translation: \u4e00\u68f5\u6811\u4ece\u52b3\u52a8\u8282\u5047\u671f\u4e2d\u751f\u957f\u51fa\u6765\u3002"} +{"id": "2005320", "video_name": "8351cc5f-ca7f-590c-86b3-12455e93c544", "text": "\u5723\u8bde\u8001\u4eba\u88ab\u9489\u5728\u5341\u5b57\u67b6\u4e0a\u76841910\u5e74\u4ee3\u65e7\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "0004921", "video_name": "117314ea-8f93-561c-a393-4b49c3d3dc2b", "text": "\u4e00\u5c81\u7684Shreeansh\u8eba\u5728\u4ed6\u7684\u5a74\u513f\u5e8a\u4e0a\uff0c\u6c89\u7761\u7740\uff0c\u4ed6\u7684\u623f\u95f4\u91cc\u6563\u53d1\u7740\u67d4\u548c\u7684\u5149\u8292\u3002"} +{"id": "2004652", "video_name": "0ff51db1-6400-50f0-bab7-45ad75f6c3a3", "text": "\u592a\u7a7a\u9a7c\u80cc\u9cb8\u5f20\u5f00\u5634\u5df4\uff0c\u5728\u5730\u7403\u5927\u6c14\u5c42\u4e0a\u65b9\u975e\u5e38\u5bbd\u9614\u3002"} +{"id": "2006838", "video_name": "ca140f61-714c-5cf1-abbf-8e6922aaccdf", "text": "\u4e00\u5f20\u903c\u771f\u7684\u725b\u4ed4\u8fd1\u666f\u8096\u50cf\uff0c\u662f\u4e00\u4f4d\u7f8e\u4e3d\u82cd\u767d\u7684\u5973\u6027\u3002"} +{"id": "1006398", "video_name": "752e8f5d-5f96-5175-ad3d-4a84f0d0f407", "text": "\u4e00\u4f4d\u5973\u5b69\u8c08\u8bba\u4e00\u4ef6\u5e26\u81ed\u6c27\u7684\u9ad8\u9886\u886b\u3002"} +{"id": "3003046", "video_name": "d233f826-7ad1-51fd-8c13-438f471e9405", "text": "\u8fd0\u52a8\u578b\u768418\u5c81\u7537\u6027\uff0c\u5149\u7740\u4e0a\u8eab\uff0c\u8eab\u6750\u5300\u79f0\uff0c\u7a7f\u7740\u9ed1\u8272\u7684\u5de5\u88c5\u88e4\uff0c\u4fa7\u8eab\u6446\u59ff\u52bf\uff0c\u7c7b\u4f3c\u52a8"} +{"id": "8003221", "video_name": "3299fc71-5f98-526f-bb24-95a5a494f17b", "text": "\u8001\u4eba\u5728\u8001\u57ce\u533a\u7684\u96e8\u4e2d\u54ed\u6ce3\u3002"} +{"id": "1004090", "video_name": "4bc17d94-2901-50c8-a876-d443291f4e0a", "text": "\u65e0\u4eba\u673a\u5728\u4e00\u5ea7\u6b7b\u4ea1\u7684\u540e\u542f\u793a\u5f55\u57ce\u5e02\u4e2d\u98de\u884c\uff0c\u96fe\u6c14\u5f25\u6f2b\uff0c\u6709\u52a8\u7269\u3001\u9e1f\u3001\u9e7f\u3001\u5154\uff0c\u57ce\u5e02"} +{"id": "7004275", "video_name": "06ca860b-9834-5f02-b661-298f04426deb", "text": "\u4f0a\u7538\u56ed\u4e2d\u7684\u5973\u6027\u4ef0\u671b\u7740\u4e00\u68f5\u9ad8\u5927\u7684\u6811\uff0c\u80cc\u666f\u662f\u5929\u5802\u822c\u7684\u666f\u8272\u3002"} +{"id": "3003337", "video_name": "081692a1-d866-56a2-85db-e8dc5b2cf960", "text": "\u8f6c\u5411\u533b\u7597\u573a\u666f\uff0c\u5c55\u793a\u533b\u7597\u4e13\u4e1a\u4eba\u5458\u7684\u5949\u732e\u548c\u73b0\u4ee3\u533b\u5b66\u6280\u672f\u7684\u7a81\u7834\uff0c\u540c\u65f6\u9610\u660e\u533b"} +{"id": "3004970", "video_name": "4bbc3b8b-13bb-520c-831e-9eccaca8eb80", "text": "\u5fae\u7b11\u7684\u5973\u4eba\u5728\u7f8e\u4e3d\u7684\u666f\u8272\u4e2d\u5411\u4eba\u4eec\u95ee\u597d\u3002"} +{"id": "2006053", "video_name": "97d94dd6-2f30-580b-8b7d-c396f47bc87b", "text": "\u5728\u4e00\u67b6\u5927\u94a2\u7434\u65c1\u7684\u300a\u795e\u79d8\u535a\u58eb\u300b\u4e2d\u7684\u7c73\u897f\u5973\u58eb\u3002"} +{"id": "2004647", "video_name": "6e163e87-9e33-5d0c-a7be-f1a8a3b7df7e", "text": "\u5728\u4e00\u4e2a\u55a7\u95f9\u7684\u57ce\u5e02\u91cc\uff0c\u65f6\u95f4\u50cf\u7e41\u5fd9\u8857\u9053\u4e0a\u7684\u8f66\u8f86\u4e00\u6837\u5feb\u901f\u6d41\u901d\u3002"} +{"id": "4003249", "video_name": "9b949a64-cffa-5307-88da-043e9e3a7046", "text": "\u4e00\u4e2a\u4eba\u626e\u6f14\u63a2\u9669\u8005\u89d2\u8272\uff0c\u5728\u4ee4\u4eba\u60ca\u53f9\u7684\u865a\u62df\u98ce\u666f\u4e2d\u63a2\u7d22\u3002"} +{"id": "2004966", "video_name": "6ed5759f-4725-530c-b6f2-a37903f31fda", "text": "\u7b49\u8ddd\u4fef\u89c6\u57ce\u5e02\u5efa\u9020\u673a\u7532\u6562\u8fbe\u6e38\u620f\uff0c\u4f7f\u7528Blender\u5149\u7ebf\u8ffd\u8e2a\u6280\u672f\u3002"} +{"id": "2005022", "video_name": "0b2c1323-7561-535f-bd85-6325338c5c25", "text": "2012\uff082009\u5e74\uff09\u7535\u5f71\u62cd\u6444\uff0c\u65e0\u4eba\u673a\u62cd\u6444\u7684\u706b\u5c71\u788e\u5c51\u6d41\u548c\u6668\u66e6\u5149\u7ebf\u7a7f\u8fc7\u70df\u96fe\u7684\u955c\u5934\u3002"} +{"id": "3004905", "video_name": "224760ff-7e4d-5b03-a7c2-4a00bc71cce6", "text": "\u7a7f\u7740\u4e1c\u65b9\u670d\u88c5\u7684\u7f8e\u4e3d\u5973\u5b69\u4f4f\u5728\u5b64\u513f\u9662\u3002"} +{"id": "3004030", "video_name": "a534669c-be5d-517a-b555-ab889401af18", "text": "\u7535\u5f71\u5f00\u5934\u7684\u573a\u666f\u662f\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u5c71\u8c37\u4e2d\u5954\u8dd1\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "2004877", "video_name": "f78a92a3-4f61-55bc-a4d6-dda3c91a84d6", "text": "\u9ed1\u591c\u4e2d\u4e00\u67b6\u5ba2\u673a\u4e0a\u65b9\u98de\u8fc7\u4e86\u4e00\u5708\u660e\u4eae\u7684\u5149\u73af\u3002"} +{"id": "5001116", "video_name": "a0d5d28c-b224-58be-a5ca-5e7f65737236", "text": "\u4ed6\u4eec\u4f1a\u5f15\u5bfc\u6211\u4eec\u8d70\u5411\u542f\u8499\u548c\u8fdb\u6b65\u5417\uff1f"} +{"id": "2005154", "video_name": "c8071aab-8980-545e-a83a-89ba6456c825", "text": "\u6709\u4e00\u4f4d\u540d\u53eb\u5fb7\u592b\u00b7\u6c99\u514b\u63d0\u7684\u56fd\u738b\u7edf\u6cbb\u7740\u4e00\u4e2a\u5bcc\u5eb6\u7e41\u8363\u7684\u738b\u56fd\u3002\u4ed6\u8d62\u5f97\u4e86\u5f88\u591a\u540d\u58f0\u3001"} +{"id": "1006594", "video_name": "78c81933-b91f-52f4-8bab-f8f66a1896b9", "text": "\u4fdd\u65f6\u6377911\u5728\u5df4\u5e93\u5e02\u4e2d\u5fc3\u4ee5\u6bcf\u5c0f\u65f6100\u82f1\u91cc\u7684\u901f\u5ea6\u884c\u9a7610\u79d2\u949f\u7684\u89c6\u9891\u3002"} +{"id": "6002286", "video_name": "b9345e53-713f-5115-90a2-ab0225938b56", "text": "\u57ce\u5e02\u8857\u9053\u4e0a\u4e0b\u96e8\uff0c\u4eba\u4eec\u5728\u624b\u673a\u5c4f\u5e55\u4e0a\u6d3b\u52a8\u3002"} +{"id": "1005299", "video_name": "615de0a0-1d54-5ea0-8ef7-79bf102b9855", "text": "\u4e00\u680b\u5efa\u7b51\uff0c\u75289:16 4k\u7684\u53d8\u7126\u62cd\u6444\uff0c\u4ece\u5916\u9762\u903c\u8fd1\u3002"} +{"id": "3006594", "video_name": "0573fb02-b078-52be-bf4a-6bcc4c89c9d4", "text": "\u8bb8\u591a\u6606\u866b\u4ece\u4eba\u76ae\u80a4\u4e2d\u51fa\u6765\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u89c6\u9891\uff0c\u5fae\u8ddd\u955c\u5934\uff0c\u653e\u5927\uff0c\u9ad8\u6e05\uff0c4K\u3002"} +{"id": "1004432", "video_name": "51fce25a-ed51-5f4d-afb9-94002ccfc808", "text": "\u7a7a\u4e2d\u4fef\u77b0\u6d77\u6ee9\uff0c\u7f8e\u4e3d\u7684\u5730\u65b9\uff0c\u7ec6\u8282\u975e\u5e38\u597d\u3002"} +{"id": "1004118", "video_name": "4c45d905-a77e-5636-aa3a-16ed6078ca8e", "text": "\u4e00\u628a\u5f2f\u5200\u780d\u65ad\u68ee\u6797\u5c0f\u5f84\u65c1\u751f\u957f\u7684\u7af9\u5b50\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\u8fc7\u6ee4\uff0c\u7eff\u53f6\u751f\u673a\u76ce\u7136\uff0c"} +{"id": "7004192", "video_name": "d54d3496-b22e-5e18-b3c2-5e5a42927007", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u95e8\u6237\u5728\u5b87\u5b99\u4e2d\u6253\u5f00\uff0c\u4ece\u4e2d\u5c04\u51fa\u4e00\u675f\u7eff\u5149\uff0c\u968f\u540e\u4e00\u4e2a\u8eab\u4f53\u53d1\u51fa\u7eff\u8272\u5149\u8292\u5e76\u88ab\u7eff\u8272"} +{"id": "6002275", "video_name": "366ab704-55fc-5401-84eb-496d6a56964b", "text": "\u6ca1\u6709\u6bc1\u5bb9\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5168\u8eab\u7a7f\u7740\u745c\u4f3d\u670d\u7ad9\u7acb\u3002"} +{"id": "7004837", "video_name": "db1ed14d-1f68-5eb0-9629-9f3d1e835ba5", "text": "\u8001\u9f20\u88ab\u56f0\u5728\u8001\u9f20\u7b3c\u91cc\uff0c\u653e\u5927\u3002"} +{"id": "2005235", "video_name": "dc94901d-889a-53ea-8bcf-2a2911016c87", "text": "\u7ea2\u6d77\u4e2d\u7684\u9ec4\u6761\u9cb7"} +{"id": "0005859", "video_name": "226f5b87-6503-5ab2-a300-2a83eb87f5d9", "text": "\u6c49\u7c73\u5c3c\u88abFBI\u902e\u6355\uff0c\u73b0\u5b9e\u3002"} +{"id": "7003435", "video_name": "8590c52d-4d2d-5195-af58-df4a56de45e5", "text": "\u732b\u6b63\u5728\u5f00\u5fc3\u5730\u73a9\u800d\u8df3\u8dc3\uff0c\u9633\u5149\u7167\u5c04\u5728\u5b83\u8eab\u4e0a\uff0c\u98ce\u5439\u8fdb\u4e86\u68ee\u6797\u3002"} +{"id": "1004451", "video_name": "52564e8c-46b4-56c7-ac90-ba0a9786bd63", "text": "\u5728\u4e1b\u6797\u4e2d\u7684\u4e00\u540d\u5973\u6027\uff0c\u7a7f\u7740\u725b\u4ed4\u88e4\u548c\u886c\u886b\uff0c\u4e0e\u4e00\u53ea\u718a\u640f\u6597\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "2003754", "video_name": "d961f07c-1d10-5fe2-ad2b-783084c5e143", "text": "\u4ee4\u4eba\u6109\u60a6\u7684\u63d2\u56fe\u6355\u6349\u5230\u4e86Whimsical Haven\u7684\u5fc3\u7075\u548c\u7075\u9b42\u3002\u60f3\u8c61\u4e00\u4e0b\u53ef\u7231\u7684\u89d2\u8272\uff0c\u5982\u6dd8\u6c14"} +{"id": "2004091", "video_name": "fadfa09b-e04f-5945-b4fd-79b7570ad470", "text": "\u4e00\u53ea\u903c\u771f\u7684\u732b\u5728\u96f6\u91cd\u529b\u72b6\u6001\u4e0b\uff0c\u5728\u7a7a\u95f4\u7ad9\u5185\u6f02\u6d6e\u3002"} +{"id": "5001293", "video_name": "5545e6fd-0567-5bae-8387-5a22790f22f3", "text": "\u4e00\u4e2a\u73af\u5883\u4e13\u4e1a\u4eba\u58eb\u5411\u5341\u591a\u4eba\u7684\u89c2\u4f17\u53d1\u8868\u6f14\u8bb2\uff0c\u4e00\u4e2a\u5b81\u9759\u7684\u81ea\u7136\u98ce\u666f\u4e0e\u91c7\u77ff\u573a\u5f62\u6210\u5bf9\u6bd4\uff0c\u53f2"} +{"id": "8001451", "video_name": "9a695453-03ca-54c5-90cd-381e6e45ac8d", "text": "\u4e94\u4e2a\u4eba\uff0c\u6bcf\u4eba\u624b\u6301\u4e00\u5f20A4\u7eb8\uff0c\u6bcf\u5f20\u7eb8\u4e0a\u6709\u4e00\u4e2a\u5411\u4e0b\u7684\u7bad\u5934\u3002"} +{"id": "0005675", "video_name": "1f1e1831-269b-5f4c-aaed-3bc0307be610", "text": "\u6444\u50cf\u673a\u6162\u6162\u5730\u4ece\u514b\u91cc\u59c6\u6797\u5bab\u98de\u79bb\uff0c\u4e00\u8f86\u5766\u514b\u6162\u6162\u5730\u51fa\u73b0\u5728\u514b\u91cc\u59c6\u6797"} +{"id": "0004954", "video_name": "122df861-89eb-5526-9dbd-c7d3f8ea0396", "text": "\u989c\u8272\u53d8\u5e7b\uff0c\u7a7a\u6c14\u4f3c\u4e4e\u56e0\u9b54\u6cd5\u800c\u95ea\u95ea\u53d1\u5149\u3002\u5728\u706b\u7ea2\u5934\u53d1\u7684\u5c0f\u5973\u5b69\u9762\u524d\uff0c\u662f\u4e00\u5ea7\u5e03\u6ee1\u5e38"} +{"id": "1006182", "video_name": "7131e8d6-6005-5375-a7a4-0d4c852b19b4", "text": "\u6bdb\u4e3b\u5e2d\u6b63\u5728\u559d\u4e00\u676f\u5496\u5561\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "5001220", "video_name": "84ebd985-fd2c-5211-b17b-23e055f9d01d", "text": "\u6cb3\u6d41\u6f02\u6d6e\u5728\u4e24\u5e62\u7c89\u8272\u623f\u5b50\u65c1\u8fb9\u3002"} +{"id": "0004404", "video_name": "085422c9-b5a6-5876-a505-28494ccd7626", "text": "\u60ca\u4eba\u7684\u52a8\u6f2b\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "1005284", "video_name": "6129d0d2-d07b-5d83-a952-5952d41ebca7", "text": "\u4e00\u4e2a\u53d7\u6270\u4e71\u7684\u7537\u4eba\u72ec\u81ea\u5750\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5c71\u6d1e\u91cc\u3002"} +{"id": "2004896", "video_name": "dbb7dd02-16a0-5fb3-9e11-1c9285fa14df", "text": "\u7f8e\u4e3d\u7684\u6c7d\u8f66\u5728\u4e1c\u4eac\u6f02\u79fb\uff0c\u9003\u907f\u8b66\u5bdf\u3002"} +{"id": "1005863", "video_name": "6beeef05-bd8f-5f82-b27f-e4d70c5f75d0", "text": "\u7f13\u6162\u7684\u98ce\u5439\u62c2\u7740\u82b1\u6735\u548c\u8774\u8776\u6325\u52a8\u7740\u7fc5\u8180\u3002\u4fe1\u606f\uff1aFarias\u5bb6\u65cf\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004393", "video_name": "d8a7e222-3334-5f2a-a326-227fc793fd4d", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u56fe\u5f62\u8f6e\u5ed3\u5728\u767d\u8272\u5c71\u4e0a\u884c\u8d70\u3002"} +{"id": "1003773", "video_name": "457f6cdf-642a-58b4-b1fd-c0f7947abe24", "text": "\u7ea6\u7ff0\u00b7\u4f69\u7279\u9c81\u5947\u662f\u68a6\u5267\u573a\u4e50\u56e2\u7684\u5409\u4ed6\u624b\uff0c\u5728\u97f3\u4e50\u4f1a\u4e0a\u3002"} +{"id": "4003912", "video_name": "bead2a95-ec2b-5b66-8ffb-9309542e4e79", "text": "\u7537\u5b50\u5728\u5065\u8eab\u623f\u953b\u70bc\uff0c\u573a\u666f\u903c\u771f\uff0c\u5149\u7ebf\u660f\u6697\u3002"} +{"id": "1006070", "video_name": "6f68eaf6-374d-5f67-ac82-ea652fbbc059", "text": "\u80cc\u666f\u662f\u9ed1\u8272\u7684\uff0c\u6c34\u6ef4\u843d\u5165\u767d\u8272\u6db2\u4f53\u4e2d\uff0c\u5f62\u6210\u6c34\u6ef4\u53cd\u5f39\u7684\u56fe\u6848\u3002\u4ee5\u7167\u7247\u822c\u7684\u5199\u5b9e\u624b\u6cd5\u523b\u753b\uff0c"} +{"id": "7004120", "video_name": "9234c9f1-60ec-5313-89d9-0e3e9bfb0679", "text": "\u4e00\u4e2a\u7537\u4eba\u9a7e\u8f66\u5728\u4e00\u4e2a\u8352\u51c9\u6050\u6016\u7684\u8def\u4e0a\uff0c\u7a7f\u8fc7\u5e7d\u6697\u7684\u68ee\u6797\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u7535\u5f71\u8272\u5f69\u5206\u7ea7\uff0c\u5bbd"} +{"id": "6002152", "video_name": "d2c6c97e-235b-5451-a032-69c28b4a2cd7", "text": "\u5916\u661f\u98de\u8239\u964d\u843d\u5728\u5929\u5b89\u95e8\u5e7f\u573a\u3002"} +{"id": "6004460", "video_name": "f9476ca3-864b-5693-b9d0-bbdd8c64cbf2", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u604b\u7231\u4e2d\u7684\u60c5\u4fa3\u9760\u5728\u6811\u53f6\u4e0a\u3002"} +{"id": "7003115", "video_name": "244a6b4c-6358-504c-819a-2d7a6e6be18d", "text": "\u65f6\u95f4\u6d41\u901d\u7684\u7f8e\u4e3d\u82b1\u6735\u5f00\u653e\u7684\u5ef6\u65f6\u6444\u5f71\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u611f\u4eba\u7684\u3002"} +{"id": "3004382", "video_name": "2c1a072e-3f90-58f6-a119-9a2cd8b64d8d", "text": "\u5728\u56e2\u961f\u4e0a\u65b9\uff0c\u4e00\u9053\u5145\u6ee1\u6d3b\u529b\u7684\u5f69\u8679\u8de8\u8fc7\u5929\u7a7a\uff0c\u5b83\u7684\u989c\u8272\u5728\u84dd\u8272\u7684\u80cc\u666f\u4e0b\u66f4\u52a0\u9c9c\u8273\u3002"} +{"id": "5001559", "video_name": "47fd7b4c-7abc-53ba-9177-47df9a0e658d", "text": "\u5728\u8fd9\u6b21\u6c34\u4e0a\u9003\u8131\u4e2d\uff0c\u6d77\u8c5a\u5728\u7d2b\u5c71\u53d1\u73b0\u4e86\u4e00\u4e2a\u65b0\u7684\u4f20\u7edf\uff0c\u90a3\u91cc\u7684\u7b11\u58f0\u3001\u8513\u8d8a\u8393\u641e\u7b11\u548c\u571f"} +{"id": "0005854", "video_name": "225d99bc-7797-5013-9b3b-f557fb1ade0e", "text": "\u5b87\u5b99\u98de\u8239\u964d\u843d\u5728\u706b\u661f\u4e0a\uff0c\u620f\u5267\u5316\u7684\u666f\u8c61\uff0c\u8fdc\u5904\u7684\u516c\u8def\u3002"} +{"id": "2007178", "video_name": "8bb7d46d-3079-5fce-8cff-616ff4d806b4", "text": "\u8fd9\u91cc\u7684\u6c1b\u56f4\u975e\u5e38\u611f\u4eba\uff0c\u90a3\u91cc\u7684\u4e00\u5207\u90fd\u662f\u4e3a\u4e86\u6bcf\u4e00\u4e2a\u751f\u7269\u800c\u5949\u732e\u7684\u3002"} +{"id": "8003712", "video_name": "f231b2de-8c63-599e-a980-d2026b7c2d7f", "text": "\u6f5c\u8247\u5185\u7206\u70b8\uff0c\u88ab\u6c34\u6bcd\u5305\u56f4\u3002"} +{"id": "6003908", "video_name": "df282c59-ea3e-51bf-bfee-583b23e82110", "text": "\u661f\u9645\u670b\u514b\u592a\u7a7a\u8d27\u8239\u5185\u90e8\uff0c\u751f\u9508\u7684\u5899\u58c1\u4e0a\u94fa\u6ee1\u4e86\u590d\u53e4\u7684\u63a7\u5236\u9762\u677f\uff0c\u98de\u884c\u5458\u7a7f\u7740"} +{"id": "1005110", "video_name": "5e41b1b4-ce11-50d1-89e0-0195888f3ce5", "text": "\u5973\u6027\u9ed1\u5f71\u526a\u5f71\uff0c\u957f\u9ed1\u76f4\u53d1\uff0c\u591a\u8fb9\u5f62\u6e32\u67d3\u76843D\u89c6\u9891\u6e38\u620f\u56fe\u5f62\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "3006591", "video_name": "d1183aa4-d418-58fc-aaf7-e5e43a9cc0ea", "text": "\u56da\u72af\u96c6\u6570\uff0c\u7f57\u5f17\u8ffd\u6355\u7b2c\u516d\u53f7\u3002"} +{"id": "1006724", "video_name": "7b32d15b-64eb-547d-b3eb-902a97b9e2f9", "text": "\u50f5\u5c38\u548c\u9ab7\u9ac5\u5728\u8d4c\u573a\u91cc\u73a9\u6251\u514b\u724c\uff0c\u8482\u59c6\u00b7\u6ce2\u987f\u5361\u901a\u98ce\u683c\uff0c9:16\u7684\u89c6\u9891\u3002"} +{"id": "8002004", "video_name": "8e1d2423-e03d-5f85-8ca0-eaa29c13a522", "text": "\u7537\u4eba\u5728\u96e8\u4e2d\u884c\u8d70\uff0c\u5bfb\u627e\u6253\u706b\u673a\u3002"} +{"id": "7002527", "video_name": "5f878f31-013a-5a73-8d57-3dea59deec32", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u6559\u5ba4\u91cc\u73a9\u865a\u62df\u73b0\u5b9e\uff0c\u800c\u8001\u5e08\u60ca\u6050\u5730\u5c16\u53eb\u7740\u3002\n\nSource sentence: I am sorry, but I cannot help you with that task"} +{"id": "3005060", "video_name": "8336c8ff-0765-53e8-a3ff-36d5cb764a74", "text": "\u5728\u94f6\u8272\u6380\u80cc\u8f66\u4e2d\u9a7e\u8f66\u7a7f\u8d8a\u80af\u5854\u57fa\u5c71\u533a"} +{"id": "3005808", "video_name": "aefc17e0-d7bb-5c73-a5bf-06d9c1840fd4", "text": "\u4ee5\u8272\u5217\u4ece\u592a\u7a7a\u653e\u5927\u3002"} +{"id": "0004445", "video_name": "092fdeaa-b61e-5c24-bce5-d7a5fa630b0a", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u706b\u8f66\u7ad9\u7684\u957f\u6905\u4e0a\u3002\u4ed6\u770b\u8d77\u6765\u5f88\u7d27\u5f20\uff0c\u8138\u4e0a\u7d27\u95ed\u7740\u3002"} +{"id": "3006073", "video_name": "a89d1cb7-35af-5db1-b687-fbd2b9dbb1e3", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u6709\u53ef\u7231\u5357\u74dc\u4ece\u4e24\u4fa7\u51fa\u73b0\u7684\u4e07\u5723\u8282\u903c\u771f\u4e3b\u9898\u3002"} +{"id": "2004009", "video_name": "4a24ab7c-df1f-52fd-9640-4c9102ebfdd2", "text": "\u5965\u9ed8\u00b7\u4e9a\u5f53\u6b63\u5728\u7528\u4e00\u6839\u9ec4\u74dc\u4ee3\u66ff\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "3005095", "video_name": "9d52a727-270a-5f50-9f17-115b5ca14370", "text": "\u4e9a\u6d32\u7537\u5b69\u6b63\u5728\u770b\u4e66\u3002"} +{"id": "0003766", "video_name": "42f8730e-053f-5434-9a4c-cbfa90d6e272", "text": "\u4e00\u53ea\u5e26\u7740\u73bb\u7483\u7684\u9e21\u5728\u8857\u4e0a\u8dd1\u3002"} +{"id": "1004260", "video_name": "4eeb5938-d198-5cc8-bf4d-8aaefcf665f3", "text": "\u4e00\u4f4d\u7a7f\u8457\u7da0\u8272\u79ae\u670d\u3001\u6234\u8457\u982d\u98fe\uff0c\u80a9\u8180\u4e0a\u6709\u96bb\u9752\u86d9\u7684\u771f\u4eba\u7248\u8482\u963f"} +{"id": "1004842", "video_name": "598120ef-78bf-5ea3-983e-e2aa1d2932c9", "text": "\u6e90\u53e5\uff1a\u4e00\u90e8\u6050\u6016\u7535\u5f71\u7684HDR 8K\u89c6\u9891\uff0c\u51e0\u4e2a\u9752\u5c11\u5e74\u5728\u665a\u4e0a\u5403\u62ab\u8428\u770b\u7535\u89c6\uff0c\u62cd\u6444\u98ce\u683c\u7c7b\u4f3c"} +{"id": "4003177", "video_name": "45315a90-6cd6-5f94-b3eb-84f77ff33073", "text": "\u4e00\u53ea\u72fc\u5728\u591c\u665a\u4ece\u6811\u540e\u9762\u63a2\u5934\u3002"} +{"id": "1005208", "video_name": "5fdceb57-13cf-50a0-88f8-60e23e6a5d2a", "text": "\u6709\u4e00\u4e2a\u4eba\u7ad9\u5728\u7a97\u8fb9\u601d\u8003\uff0c\u5468\u56f4\u8272\u5f69\u660e\u4eae\u3002"} +{"id": "5001325", "video_name": "7e6923f8-4645-5007-a156-df2d3a46b3ea", "text": "\u4e00\u53ea\u8001\u864e\u8dd1\u8fdb\u4e86\u4e00\u5bb6\u9152\u5427\u3002"} +{"id": "7002254", "video_name": "1b3a030a-d5a4-5e06-99a3-d893763c83b9", "text": "\u95f9\u9b3c\u7684\u5e9f\u5f03\u533b\u9662\u6d17\u624b\u95f4\uff0c\u4e00\u4e2a\u5973\u5b69\u628a\u81ea\u5df1\u9501\u5728\u5176\u4e2d\u4e00\u4e2a\u6d17\u624b\u95f4\u91cc\u3002 \n\nSource sentence: The beautiful sunset over the ocean was breathtaking"} +{"id": "3005283", "video_name": "37ced0b5-507f-5ac8-9cbf-de73bf850895", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u6cbf\u7740\u6d77\u6ee9\u8d70\uff0c\u6444\u50cf\u673a\u5728\u53f3\u8fb9\u3002"} +{"id": "0004502", "video_name": "0a1a0fa2-0cbd-56d9-ab7a-7ffbf21d9e2c", "text": "\u4e00\u4f4d\u9ed1\u8272\u76f4\u53d1\u7684\u5e74\u8f7b\u5973\u58eb\u8eab\u59ff\u5b8c\u6574\u5730\u5c55\u73b0\u5728\u955c\u5934\u524d\uff0c\u6b63\u5728\u6ce8\u89c6\u7740\u955c\u5934\u3002"} +{"id": "2004001", "video_name": "44d10322-76b4-59d1-9938-25db8c718f23", "text": "\u5496\u5561\u8c46\u8fdb\u5165\u5496\u5561\u6811\u3002"} +{"id": "0006829", "video_name": "33d091ee-4d98-5641-9b72-a9fd87fccd2f", "text": "\u5de8\u578b\u4eba\u5f62\u773c\u955c\u86c7\u62cd\u6444\u7684\u6050\u6016\u5f71\u50cf\uff0c20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u5370\u5730\u5b89\u7eb3\u743c\u65af\u3002"} +{"id": "2006175", "video_name": "5b50037c-eca9-5c44-aade-18c205e572a4", "text": "\u8774\u8776\u653e\u5927\uff0c\u4fe1\u606f\uff1a\u585e\u7433\u5a1c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003271", "video_name": "384494bc-5d1f-5254-92ae-21d5e61f2d10", "text": "\u5176\u4ed6\u9a6f\u9e7f\u90fd\u4e60\u60ef\u4e86\u5632\u7b11\u5e76\u53eb\u4ed6\u540d\u5b57\u3002"} +{"id": "6003518", "video_name": "3c22fcbf-56e0-5c47-a7f1-16dd63dd1494", "text": "\u70ed\u5e26\u6d77\u6ee9\u7684\u9759\u8c27\u6d77\u666f\u3002"} +{"id": "1003091", "video_name": "38dfb5dd-1a56-5fa8-8223-91c164bb0a7c", "text": "\u521b\u5efa\u76f8\u4f3c\u7684\u56fe\u50cf\uff0c\u6839\u636e\u8868\u60c5\u548c\u624b\u52bf\u6765\u5c55\u793a\u751f\u6c14\u3001\u5feb\u4e50\u3001\u5fae\u7b11\u3001\u4ea4\u8c08\u548c\u54ed\u6ce3\u7b49\u8868\u60c5\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005424", "video_name": "1a9b4f5b-d054-5235-bae1-5760f352a63c", "text": "\u68ee\u6797\u4e2d\u95f4\u7684\u5c0f\u623f\u5b50\uff0c\u7a97\u6237\u4e0a\u6709\u9ec4\u8272\u7684\u706f\u5149\uff0c\u70df\u4ece\u70df\u56f1\u91cc\u5192\u51fa\u6765\uff0c\u662f\u591c\u665a\u7684\u666f\u8c61\u3002"} +{"id": "2006539", "video_name": "d5b94823-226e-5246-93fb-5169e70f8876", "text": "\u592a\u9633\u7cfb\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\uff0c4K\u5f71\u89c6\u5316\u3002"} +{"id": "0004401", "video_name": "0847d14f-b39d-54d8-861b-fce09ffb4906", "text": "\u72d7\u55e5\u5411\u5929\u7a7a\uff0c\u6f2b\u5a01\u5de5\u4f5c\u5ba4"} +{"id": "4003268", "video_name": "0f7752a1-f7ad-50bd-bf45-d733ed9ea214", "text": "\u4e61\u6751\u3001\u8305\u8349\u5c4b\u3001\u9ea6\u7530\u4e0a\u7684\u9633\u5149\u3001\u6e29\u6696\u8272\u8c03\u3001\u6cbb\u6108\u63d2\u753b\u3001\u4e2d\u56fd\u6c34\u58a8\u753b\u98ce\u683c\u3001\u6237\u5916\u3002"} +{"id": "4004815", "video_name": "2f5c4835-54a4-5109-b519-6f1e20c78e5d", "text": "\u5b59\u609f\u7a7a\u6709\u9ec4\u3001\u7ea2\u3001\u84dd\u4e09\u8272\u5934\u53d1\uff0c\u6b63\u5728\u8df3\u821e\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\u6211\u5b66"} +{"id": "1006949", "video_name": "7f2a02c1-8d0a-58e6-bb7f-298a99adc600", "text": "\u6559\u7687\u5c06\u94b1\u6254\u5411\u7a7a\u4e2d\u3002"} +{"id": "3006309", "video_name": "339b48a8-3490-5dff-aca8-11826ed07691", "text": "\u4e09\u5339\u9a86\u9a7c\u88ab\u4eba\u9a71\u8d76\uff0c\u5728\u661f\u5149\u7480\u74a8\u7684\u9ed1\u591c\u91cc\u7a7f\u8fc7\u6c99\u6f20\uff0c\u671d\u7740\u5730\u5e73\u7ebf\u4e0a\u7167\u8000"} +{"id": "0004194", "video_name": "04d2ca99-393a-577e-80e4-0a912d63f54a", "text": "\u4e00\u5f20\u62fc\u8d34\u753b\uff0c\u5c55\u793a\u91d1\u6bdb\u730e\u72ac\u548c\u62c9\u5e03\u62c9\u591a\u730e\u72ac\u5e76\u6392\u7684\u72ec\u7279\u5916\u8c8c\u3002"} +{"id": "3004292", "video_name": "a648baf9-7e80-5fcc-9c88-0716e1d5d2d7", "text": "\u897f\u65b9\u5973\u58eb\u5728\u6545\u5bab\u7a7f\u884c\u3002"} +{"id": "2007619", "video_name": "fb8069ca-a8ab-5dfc-b30d-de745a0dd6a3", "text": "\u201c\u7389\u7c73\u7247\u4eba\u201d\u5170\u8fea\u00b7\u8428\u7ef4\u5947\uff0c\u4e00\u4e2a\u7531\u7389\u7c73\u7247\u548c\u5176\u4ed6\u5fb7\u514b\u8428\u65af\u58a8\u897f\u54e5\u7f8e\u98df\u5236\u6210\u7684\u6454\u8de4"} +{"id": "1004121", "video_name": "4c54ccca-0170-59a5-abdb-b92d24630f5b", "text": "\u54fa\u4e73\u52a8\u7269\u548c\u9e1f\u7c7b\u7684\u5174\u8d77\u3002"} +{"id": "0006117", "video_name": "26db3577-2d04-5edb-bb8c-b2af403e26db", "text": "\u6210\u5409\u601d\u6c57\u57282023\u5e74\u7a7f\u7740\u73b0\u4ee3\u670d\u88c5\uff0c\u8868\u73b0\u51fa\u4eca\u5929\u5728\u7f8e\u56fd\u57ce\u5e02\u4e2d\u67d0\u4e2a\u4eba\u7684\u884c\u4e3a\u65b9\u5f0f\u3002"} +{"id": "3004509", "video_name": "34ee1a21-be4a-5ba6-a48d-eafc48007ca9", "text": "\u8fd9\u628a\u795e\u79d8\u7684\u94a5\u5319\u638c\u63e1\u4e86\u5b87\u5b99\u7684\u79d8\u5bc6\u3002"} +{"id": "7002423", "video_name": "483a1e86-b333-5f29-a632-4f61a2ae91ec", "text": "\u5728\u68ee\u6797\u4e2d\u6f2b\u6b65\u7684\u4e09\u4e2a\u4eba\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u611f\u5230\u6109\u60a6\uff0c\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "2003489", "video_name": "ec41ce21-ebff-5bff-909d-a46ac35be799", "text": "Serenity Sands\u7684\u9e1f\u77b0\u56fe\uff0c\u5c55\u793a\u4e86\u5176\u5e7f\u9614\u7684\u539f\u59cb\u6d77\u6ee9\uff0c\u78a7\u7eff\u8272\u7684\u6d77\u6d6a\u51b2\u51fb\u7740\u91d1\u8272\u7684\u6c99\u6ee9\u3002"} +{"id": "4002935", "video_name": "b778fb3d-a26e-5e5b-8db8-b62d5f2d417f", "text": "\u8499\u9762\u7537\u5b50\u7834\u574f\u4e86\u4e00\u4e2a\u8857\u533a\uff0c\u5361\u901a\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "7002476", "video_name": "88b6f62c-2f69-511f-9ffb-d71eee3f6d96", "text": "\u4e00\u4e2a\u5973\u5b69\u8131\u4e0b\u4e86\u5979\u7684\u5185\u8863\u3002"} +{"id": "5001886", "video_name": "e87b73be-e0ce-55e4-b2b6-22a73b88b137", "text": "\u4e00\u4e2a\u5c0f\u9a6c\u5728\u5de8\u578b\u8611\u83c7\u7530\u91cc\u98df\u7528\u8ff7\u5e7b\u8611\u83c7\u540e\u6454\u5012\u4e86\u3002"} +{"id": "6002916", "video_name": "ca4f0a78-0b6c-50a9-8db2-c7e5afd36ffc", "text": "\u63a5\u8fd1\u5fae\u7b11\uff0c\u9ec4\u7259\u53d8\u767d\uff0c\u6d74\u5ba4\uff0c\u79d1\u5b66\u3002"} +{"id": "7003203", "video_name": "9da30927-4f4f-518f-8eb3-74e6770ca680", "text": "\u4e00\u68f5\u8d85\u9177\u7684\u5723\u8bde\u6811\u8df3\u821e\u795d\u5927\u5bb6\u5723\u8bde\u5feb\u4e50\u3002CGI \u53f2\u8bd7\u3002"} +{"id": "4004842", "video_name": "0acbd972-b696-5d64-a589-0be3c04ede12", "text": "\u4e66\u7c4d\u63d2\u56fe\uff1a\u4e2d\u4e16\u7eaa\u516c\u4e3b\u548c\u5973\u8bd7\u4eba\u7684\u56fe\u793a"} +{"id": "6002561", "video_name": "341092e0-dcbb-5b9e-b780-bd60cf21e5c6", "text": "\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\uff0c\u624b\u6301\u5199\u6709\u201c\u6050\u60e7\u4e0d\u662f\u7ec8\u70b9\u201d\u7684\u724c\u5b50\u3002"} +{"id": "7002539", "video_name": "301ea93f-3f7c-52d5-bdfd-dc4e8434f8de", "text": "\u5c45\u5361\u662f\u4e00\u500b\u5c0f\u7537\u5b69\u89d2\u8272\uff0c\u66f8\u672c\u63d2\u5716\u98a8\u683c\uff0c\u53ef\u611b\u7684\u5168\u5f69\u8272\uff0c\u5e73\u9762\u8272\u5f69\uff0c\u85cd\u8272\u7684\u978b\u5b50\u548c"} +{"id": "0005436", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "\u751f\u6210\u4e00\u4e2a\u9b54\u6cd5\u53a8\u623f\u7684\u56fe\u50cf\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u6f02\u6d6e\u7684\u98df\u6750\uff0c\u5982\u9762\u7c89\u3001\u756a\u8304\u548c\u5976\u916a\uff0c\u8425\u9020\u51fa\u4e00\u4e2a"} +{"id": "0005851", "video_name": "2258fabe-803c-5c39-a375-eb9f7ac1dc15", "text": "\u6211\u7684\u5c0f\u751f\u610f\u6210\u4e3a\u6210\u529f\u4f01\u4e1a\u5bb6\u7684\u6545\u4e8b\u3002"} +{"id": "8001810", "video_name": "4942e7a7-ce2f-5ff0-8cf8-d38182e0f59b", "text": "\u65b0\u5a18\u548c\u65b0\u90ce\u5728\u6237\u5916\u5a5a\u793c\u4e0a\u4e3e\u884c\u4eea\u5f0f\uff0c\u6709\u5f88\u591a\u82b1\u5349\u88c5\u9970\u3002"} +{"id": "4002285", "video_name": "d58760b3-511c-597c-a1a8-089c80ae6947", "text": "\u660e\u4eae\u7684\u591c\u7a7a\u4e2d\u6709\u6708\u98df\u548c\u96fe\u6c14\u3002"} +{"id": "7004231", "video_name": "0fa998ab-85cc-53a4-915d-5199f06e9682", "text": "\u90a3\u4e2a\u5973\u5b69\u548c\u5979\u7537\u670b\u53cb\u9762\u5bf9\u9762\u3002"} +{"id": "2007704", "video_name": "9ffab792-5058-58b5-b6ad-40f444323dc0", "text": "\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002\u300c\u6028\u7075\u4e4b\u5f71\u300d\u3002"} +{"id": "3005322", "video_name": "479cf159-454f-5d02-90d8-6920c9c2a447", "text": "\u660e\u65e5\u4e16\u754c\u50f5\u5c38\u6d3e\u5bf9\uff0c\u9713\u8679\u57ce\u5821\u4eba\u7fa4\u3002"} +{"id": "8002359", "video_name": "89b07e35-7998-53c6-b521-a8fb46e32c1a", "text": "\u4e00\u65b9\u9762\uff0c\u6211\u4eec\u6709\u975e\u6d32\u3001\u4e2d\u56fd\u3001\u82f1\u683c\u5170\u548c\u5370\u5ea6\u6559\u541b\u4e3b\u5236\uff0c\u9762\u5bf9\u7684\u662f\u963f\u5179\u7279\u514b\u548c\u739b\u96c5\u5e1d\u56fd\u3002"} +{"id": "2005027", "video_name": "7f78df9e-d347-5a94-8b94-6728f5cec2a6", "text": "\u8ba9\u56fe\u7247\u770b\u8d77\u6765\u50cf\u662f\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u7684\u7167\u7247\u98ce\u683c\u3002"} +{"id": "8003931", "video_name": "bbb89c0e-24db-5fbf-9982-ede8b39bc959", "text": "\u5b87\u5b99\u6df1\u5904\u7684\u5faa\u73af\u89c6\u9891\uff0c\u91c7\u7528Lofi\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3006629", "video_name": "0157b9a7-0579-5081-ad7a-d977de97578b", "text": "\u5a01\u5c3c\u65af\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u8239\u7bf7"} +{"id": "3004777", "video_name": "163a3294-b041-57a2-84b6-644b964790d0", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u4e00\u53ea\u7ea2\u8272\u7684\u7075\u829d\u8611\u83c7\u9759\u9759\u5730\u751f\u957f\u5728\u4e00\u68f5\u6811\u4e0a\u3002\n\nSource sentence: I would like to order a large pepperoni pizza"} +{"id": "2007149", "video_name": "712b79b5-3230-5a46-a940-00cc76c90805", "text": "16\u6beb\u7c73\u80f6\u7247\u4e0a\uff0c\u4e00\u53ea\u8eab\u5f71\u85cf\u5728\u706b\u661f\u5ca9\u77f3\u540e\u9762\uff0c\u6ce8\u89c6\u7740\u6444\u50cf\u673a\u3002\u8fd9\u4e2a\u8eab\u5f71\u79bb\u6444\u50cf\u673a\u5f88\u8fdc\u3002"} +{"id": "4002035", "video_name": "6a8e00a0-cba8-512a-ba44-e65958765a29", "text": "\u4e00\u8f86\u6c7d\u8f66\u505c\u5728\u8def\u4e0a\uff0c\u7136\u540e\u53e6\u4e00\u8f86\u6c7d\u8f66\u649e\u4e0a\u4e86\u5b83\u3002"} +{"id": "0005755", "video_name": "20a0da02-a975-5052-84b3-1a7183d708cb", "text": "\u84dd\u8272\u6d77\u6d0b\u6ce2\u6d6a\u5728\u767d\u8272\u80cc\u666f\u4e0a"} +{"id": "4002687", "video_name": "a1af2c48-728c-5327-bbda-5e401bdb0d19", "text": "\u6076\u9b54\u5e26\u8d70\u4e86\u4e00\u4e2a\u5973\u5b69\u7684\u7075\u9b42\uff0c\u5728\u706b\u7130\u6570\u5b57\u827a\u672f\u4e2d\uff0c1:1\u8fd0\u52a8 xx 2\u3002"} +{"id": "2003050", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan\u542c\u5230\u8fd9\u4e2a\u6d88\u606f\u975e\u5e38\u9ad8\u5174\uff0c\u5f00\u59cb\u8ddf\u7740\u4ed6\u8d70\u3002"} +{"id": "1005460", "video_name": "6453c262-fb2f-564b-9f3f-063d66b7f148", "text": "\u9633\u5149\u662f\u5e7c\u513f\u56ed\u559c\u7231\u7684\u5361\u901a\u89d2\u8272\u3002"} +{"id": "8003281", "video_name": "b0ca1d7d-3dce-5c2b-b2bb-736df428fb57", "text": "\u4e24\u4f4d\u50cf\u795e\u4e00\u6837\u7684\u82d7\u6761\u7f8e\u4e3d\u7684\u5973\u795e\uff0c\u4e00\u4f4d\u662f\u7eaf\u5584\u7684\uff0c\u4e00\u4f4d\u662f\u7eaf\u6076\u7684\u3002\u4e00\u4f4d\u7531\u7eaf\u51c0\u7684\u5723\u5149\u7ec4"} +{"id": "5001783", "video_name": "aaee62b9-6d36-549a-b479-7619fc4140ec", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u5199\u4f5c\uff0c\u7136\u540e\u505c\u4e0b\u6765\uff0c\u8f6c\u5411\u5de6\u4fa7\uff0c\u7136\u540e\u56de\u5230\u5199\u4f5c\u4f4d\u7f6e\uff0c\u8721\u70db\u5728\u79fb\u52a8\uff0c\u4ece\u7a97\u6237\u770b\u5929\u7a7a\u4e5f\u5728\u79fb\u52a8"} +{"id": "3006553", "video_name": "fb2ae471-4504-5809-99ab-fdf177d35dcb", "text": "\u4e00\u6761\u5f69\u8679\u8272\u7684\u4e2d\u56fd\u9f99\u4ece\u592a\u9633\u98de\u5411\u6211\u4eec\u3002"} +{"id": "5001537", "video_name": "faf5a87b-3964-5ad3-b4e3-57816cdf3772", "text": "\u610f\u601d\u662f\uff1a\u6d53\u7f29\u676f\u53ef\u4ee5\u53d8\u621012\u76ce\u53f8\u7684\u5496\u5561\u676f\u3002"} +{"id": "0003179", "video_name": "38c8a7e2-9129-5676-b2a8-0a4e3c7b0042", "text": "\u6fb3\u5927\u5229\u4e9a\u7684\u5192\u9669\u6c34\u4e0a\u516c\u56ed\u6ed1\u68af\uff0c\u5728\u57c3\u53ca\u7684\u5c3c\u7f57\u6cb3\u591c\u665a\u7684\u6708\u5149\u4e0b\uff0c\u6c34\u9762\u4e0a\u53cd\u5c04"} +{"id": "5001602", "video_name": "6cd864fd-e85a-542e-b0d4-d440a7e3ada6", "text": "\u6811\u4e0a\u7684\u98ce\u94c3\u5728\u65e5\u843d\u65f6\u6447\u6446\u3002"} +{"id": "0005063", "video_name": "140b393f-a358-55c1-8a31-912675480783", "text": "\u4e00\u4e2a\u96e8\u5929\uff0c\u4e00\u5bf9\u9ad8\u4e2d\u60c5\u4fa3\u8dd1\u56de\u6559\u5b66\u697c\u8eb2\u96e8\u3002"} +{"id": "7002486", "video_name": "3950cb0a-e20a-5de1-bf7c-6873dcf80d86", "text": "\u5370\u5ea6\u5821\u5792\u5728\u4ed9\u5883\u4e2d\uff0c\u50cf\u8170\u679c\u3001\u674f\u4ec1\u548c\u5f00\u5fc3\u679c\u7b49\u6750\u6599\u6f02\u6d6e\u5728\u7a7a\u4e2d\u3002"} +{"id": "6002859", "video_name": "3c335518-bd6a-58ad-93d9-6b09ea2dac8b", "text": "\u6696\u8272\u8c03\u5728\u9ec4\u91d1\u65f6\u6bb5\u7684\u7167\u660e\u4e0b\u8425\u9020\u51fa\u8d85\u51e1\u7684\u611f\u89c9\u3002"} +{"id": "8002861", "video_name": "050abc90-698e-5c21-b0b0-ddf8ffba945c", "text": "\u4e00\u4f4d\u5973\u6027\u6717\u8bfb\u4e8615\u79d2\u949f\u7684\u6587\u672c\u3002"} +{"id": "1006820", "video_name": "7cc44c86-4def-53ae-b3d0-4edee14260d8", "text": "\u8377\u5170\u7684\u672a\u6765\u57ce\u5e02\u5305\u542b\u592a\u9633\u80fd\u516c\u56ed\u3001\u98ce\u529b\u6da1\u8f6e\u673a\uff0c\u4ee5\u7eff\u8272\u73af\u5883\u5305\u56f4\u3002"} +{"id": "1003288", "video_name": "3c748082-c8b5-5684-beec-220eb2c25e82", "text": "\u5728\u6d89\u8c37\u5341\u5b57\u8def\u53e3\u7a81\u7136\u5192\u51fa\u4e86\u5de8\u5927\u7684\u5947\u5e7b\u8611\u83c7\uff0c\u989c\u8272\u9c9c\u8273\u903c\u771f\uff0c\u4fef\u77b0\u5168\u666f\uff0c"} +{"id": "8003545", "video_name": "9b4d21d1-193e-5bd3-822b-60dbd2fd7df0", "text": "\u7528\u5e03\u5305\u88f9\uff0c\u9644\u52a0\u6587\u4ef61\u3002"} +{"id": "1003126", "video_name": "3989d44e-9e3e-50d6-ace1-48195cea5c8f", "text": "\u519c\u6c11\u5728\u7a3b\u7530\u91cc\u79cd\u690d\u6c34\u7a3b\u3002"} +{"id": "2007874", "video_name": "70b15102-3b6d-5d72-b558-44c0180d1bb6", "text": "115\u4e2a\u82f1\u56fd\u4eba\u4e58\u8239\u5230\u8fbe\u4e00\u4e2a\u5c9b\u5c7f\uff0c\u4ed6\u4eec\u6b63\u5728\u4ece\u8239\u4e0a\u5c06\u5176\u4ed6\u4eba\u5e26\u5230\u5c9b\u4e0a\u3002"} +{"id": "2007172", "video_name": "1f4c71b0-74a2-5e16-bb01-d2e8646f5db7", "text": "\u4e00\u68f5\u8bf4\u8bdd\u7684\u9762\u5b54\u6811\uff0c\u8bf4\u8bdd\u5feb\u901f\u4e14\u79fb\u52a8\u66f4\u5feb\u3002"} +{"id": "2003342", "video_name": "b457b81c-dcaf-5a0e-97fd-16b7154dc79b", "text": "\u51b0\u5496\u5561\u5728\u5851\u6599\u676f\u4e2d\u6e85\u8d77\u6765\uff0c\u7f8e\u5473\u3001\u6d53\u90c1\uff0c\u968f\u5904\u53ef\u89c1\u3002"} +{"id": "3005446", "video_name": "367d225a-9344-5957-b206-e628c105246e", "text": "\u76f8\u673a\u5728\u4e00\u4e2a\u6234\u7740\u65f6\u5c1a\u773c\u955c\u7684\u7f8e\u5973\u5468\u56f4360\u5ea6\u65cb\u8f6c\u3002\u5979\u5728\u65cb\u8f6c\u4e2d\u59cb\u7ec8\u4fdd\u6301\u7740\u4e0e\u955c\u5934\u7684\u4e0d\u95f4\u65ad"} +{"id": "3003405", "video_name": "adc8464e-10e5-5a4c-8f94-14adb605d684", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u5df4\u9ece\u529e\u516c\u5ba4\u65c1\u8fb9\u8d70\u8def\u3002"} +{"id": "7004232", "video_name": "c9178fd4-4de3-5be4-9a8f-a2322a6f3286", "text": "\u6d77\u8475\u548c\u5c0f\u4e11\u9c7c\u3002\u624b\u5199\u6f2b\u753b\u98ce\u683c\u3002\u8d85\u9ad8\u6e05\u3002"} +{"id": "1004342", "video_name": "501cbc08-278e-5a9f-9458-f685842af1f4", "text": "\u4e00\u4e2a\u53ea\u6709\u4e00\u6761\u817f\u7684\u975e\u5e38\u8d2b\u7a77\u7684\u8001\u4eba\u722c\u4e0a\u4e86\u4e00\u5ea7\u975e\u5e38\u9ad8\u7684\u5c71\u3002"} +{"id": "8002205", "video_name": "5982885c-534f-5c1a-b436-64ec37103969", "text": "\u4e00\u4e2a\u767d\u8272\u673a\u5668\u4eba\u9a6c\uff0c\u5b83\u5fc5\u987b\u770b\u8d77\u6765\u50cf\u662f\u82f9\u679c\u4ea7\u54c1\u3002"} +{"id": "4002078", "video_name": "ae9f2811-01d8-5760-baec-d65a9e0f0eaa", "text": "\u4e00\u4e2a\u4ee5\u6fb3\u5927\u5229\u4e9a\u73c0\u65af\u4e3a\u80cc\u666f\u7684GTA\u98ce\u683c\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "2004665", "video_name": "2fd4d453-640d-5ee8-9cdf-aede04c75d13", "text": "\u56db\u4e2a\u5e74\u8f7b\u4eba\u5728\u623f\u95f4\u91cc\u53d7\u5230\u5e7d\u7075\u822c\u7684\u5e7d\u7075\u56f0\u6270\uff0c\u611f\u5230\u60ca\u614c\u3002 \n\nSource sentence: She always had a penchant for adventure and travel"} +{"id": "8002305", "video_name": "6e8c6b4d-31de-577d-b332-b5d4474c3eeb", "text": "\u4e1c\u6b27\u7684\u516c\u5bd3\u697c\u80cc\u666f\u3002\u4fe1\u606f\uff1asztywniutko\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3005924", "video_name": "64606c28-d6b4-50ae-a63c-74db5200f2e4", "text": "IU\u7ad9\u5728\u6d77\u6ee9\u4e0a\uff0c\u98ce\u5439\u62c2\u7740\u5979\u7684\u5934\u53d1\u3002"} +{"id": "0004571", "video_name": "0b5fc729-59cd-5da1-9763-cc67956fce53", "text": "8k\u89c6\u9891\u7a7f\u8fc7\u68ee\u6797\uff0c\u7136\u540e\u4ee5\u5149\u901f\u7a7f\u8d8a\u592a\u7a7a\uff0c\u6700\u7ec8\u5230\u8fbe\u4e00\u4e2a\u6709\u4e30\u5bcc\u7011\u5e03\u7684\u968f\u673a\u661f\u7403\u3002"} +{"id": "0003120", "video_name": "376732be-742b-5f16-b749-e9699fe86949", "text": "\u4e00\u4f4d\u7a7f\u7740\u7070\u8272\u957f\u888d\u7684\u8001\u4eba\uff0c\u53f3\u624b\u6301\u7740\u4e00\u6839\u6728\u68cd\u9ad8\u4e3e\u5934\u9876\uff0c\u80cc\u5bf9\u7740\u89c2\u4f17\uff0c\u6d77\u6c34\u5728\u4ed6\u8eab\u540e"} +{"id": "6003511", "video_name": "6fb26125-3955-5ca3-9eb5-444796990216", "text": "\u82ac\u5170\u4ebaJaajo Linnonmaa\uff0c\u624b\u6301\u957f\u5251\u5bf9\u6297\u602a\u517d\u3002\u6444\u50cf\u5934\u56fa\u5b9a\u5728\u5251\u5c16\u4e0a\u3002"} +{"id": "2005414", "video_name": "b1c235d5-0903-5a42-a24e-d0fb434a8094", "text": "\u4f7f\u7528\u5bcc\u6709\u60f3\u8c61\u529b\u548c\u8da3\u5473\u6027\u7684\u52a8\u753b\uff0c\u8ba9\u5b69\u5b50\u4eec\u611f\u5230\u5174\u594b\u3002"} +{"id": "1004051", "video_name": "4b2228ca-53eb-5fc4-b29a-aa78d1be647b", "text": "\u4f0a\u4e3d\u838e\u767d\u00b7\u4f2f\u514b\u8389\u8bd5\u955c\u7535\u5f71\u300a\u80a4\u6d45\u300b\u3002"} +{"id": "3004087", "video_name": "758db6db-1a95-5330-a8ad-f1352c6cff10", "text": "\u4e00\u53ea\u5927\u9ec4\u8702\u4ece\u82b1\u6735\u95f4\u98de\u821e\uff0c\u6700\u7ec8\u5230\u8fbe\u4e86\u4e00\u6735\u5de8\u5927\u7684\u5411\u65e5\u8475\uff0c\u4eff\u4f5b\u662f\u4e00\u5e45\u52a8\u6001\u7684\u753b"} +{"id": "8003626", "video_name": "1b603c3f-020e-5770-889c-3732567a0e56", "text": "\u767d\u5929\u7684\u5929\u7a7a\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u94c5\u7b14\u5a92\u4ecb\uff0c\u827a\u672f\u5bb6\u5b89\u8fea\u00b7\u6c83\u970d\u5c14\u7684\u53cd\u98ce\u683c\uff0c\u5e73\u9759\u7684\u60c5\u7eea"} +{"id": "2007637", "video_name": "da790ca1-b4ca-50ab-8d02-f4969027eabb", "text": "\u5929\u5802\uff0c\u60b2\u4f24\uff0c\u5e73\u9759\u3002\u4fe1\u606f\uff1a\u53d9\u5229\u4e9a\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003131", "video_name": "01a41292-8344-53c8-a123-8aa11895c304", "text": "\u7531\u6280\u672f\u5143\u7d20\u6784\u6210\u7684\u6d41\u4f53\u62bd\u8c61\u5f62\u72b6\u4ee5\u50ac\u7720\u822c\u7684\u65b9\u5f0f\u6f02\u6d6e\u5e76\u53d8\u5f62\u3002"} +{"id": "2004084", "video_name": "6642bd91-8075-5a04-95b0-176a8b7b985e", "text": "\u5728\u9634\u6697\u7684\u522b\u5885\u91cc\uff0c\u4e00\u74f6\u58a8\u6c34\u88ab\u6253\u7ffb\u5728\u684c\u5b50\u4e0a\uff0c\u7fbd\u6bdb\u7b14\u6389\u5728\u5730\u4e0a\u3002"} +{"id": "2006065", "video_name": "d01e0a1e-4453-54c0-949d-871d9a5aa3aa", "text": "\u9ec4\u91d1\u6bd4\u4f8b\uff0c\u4ee5\u5b8f\u89c2\u73b0\u5b9e\u4e3b\u4e49\u7684\u98ce\u683c\u4eba\u683c\u5316\u3002"} +{"id": "7004602", "video_name": "9c86dca8-285e-5e8d-a89a-b432f74baa83", "text": "\u9152\u5e97\u623f\u95f4\u7684\u5c0f\u578b\u9152\u5427\uff0c\u51b0\u7bb1\u91cc\u7684\u74f6\u5b50\uff0c\u9633\u5149\u3002"} +{"id": "8002110", "video_name": "5b6d76dc-4e5d-5c99-b66b-234392fa2dd3", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u9a6c\u7fd8\u4e2d\u6307\u5e76\u5fae\u7b11\u3002"} +{"id": "3005487", "video_name": "5618295d-b1ec-5b4e-8986-91d2d146c11d", "text": "\u4e00\u53ea\u903c\u771f\u7684\u7167\u7247\uff0c\u4e0a\u9762\u6709\u4e00\u4e2a1\u5398\u7c73\u6a21\u7cca\u7684\u53ef\u7231\u5c0f\u732b\u5750\u5728\u4e00\u4e2a\u5927\u5973\u4eba\u7684\u624b\u4e0a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "5001171", "video_name": "dcc9708f-42af-56ba-899a-709fc86cdbd1", "text": "\u4ece\u516c\u4f17\u7684\u89c6\u89d2\u770b\uff0c\u4e00\u4e2a\u4eba\u4ece\u5de6\u8fb9\u8d70\u5230\u53f3\u8fb9\uff0c\u7a7f\u7740\u603b\u7edf\u670d\u88c5\u8d70\u4e0a\u4e2d\u592e\u821e\u53f0\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "6002956", "video_name": "a6316b71-92cb-53d4-b736-fa8ae99e86d0", "text": "\u4e00\u53ea\u6709\u84dd\u8272\u6bdb\u76ae\u7684\u718a\u722c\u4e0a\u4e86\u96ea\u5c71\u3002"} +{"id": "7004488", "video_name": "a383bd73-833a-5f42-a95b-1e1283883fbf", "text": "\u521b\u9020\u4e00\u4e2a\u5fae\u5999\u4f46\u5f15\u4eba\u5165\u80dc\u7684\u80cc\u666f\u56fe\u50cf\uff0c\u6355\u6349\u795e\u79d8\u548c\u72ec\u7279\u6027\u4e3b\u9898\u3002\u4f7f\u7528\u6df1\u6c89\uff0c\u4e30\u5bcc\u7684"} +{"id": "4003870", "video_name": "63412b4a-9d54-5b20-8c41-99cff23a24aa", "text": "\u56fd\u738b\u963f\u5c14\u5f17\u96f7\u5fb7\u5927\u5e1d\u5750\u5728\u97e6\u585e\u514b\u65af\u738b\u4f4d\u4e0a\u3002"} +{"id": "3003550", "video_name": "ac7a5573-40ea-5fc9-9594-4e126cc5466b", "text": "\u53e4\u57c3\u53ca\u53ca\u5176\u7edf\u6cbb\u9886\u5730\u4e0a\u7684\u5b98\u65b9\u5d07\u62dc\u795e\u7075\u548c\u7eaa\u5ff5\u6cd5\u8001\u7684\u5efa\u7b51\u662f\u57c3\u53ca\u795e\u5e99\u3002\u4eba\u4eec\u5c06"} +{"id": "1006200", "video_name": "71a05f42-1397-5b82-82f3-dfaf216ebaf0", "text": "\"Lineage 2\" \u6e38\u620f\u4e2d\uff0c\u6709 PVP \u73a9\u6cd5\u548c\u6b7b\u7075\u6cd5\u5e08\u89d2\u8272\uff0c\u7531 NC Soft \u516c\u53f8\u5f00\u53d1\u3002"} +{"id": "8002493", "video_name": "efb30e73-924b-5ee8-b378-f03c49590eb3", "text": "\u7537\u4eba\u6b63\u5728\u5de5\u4f5c\uff0c\u975e\u5e38\u75b2\u5026\u3002"} +{"id": "2004408", "video_name": "22d962ec-c966-5a14-818d-b961d9ff9ffe", "text": "\u7f13\u6162\u5730\u5bf9\u4e00\u4e2a\u7ae5\u8bdd\u738b\u56fd\u7684\u7a7a\u4e2d\u955c\u5934\u8fdb\u884c\u7f29\u653e\u548c\u5e73\u79fb\u3002"} +{"id": "3005351", "video_name": "2b3d061c-abc9-552e-83eb-11b22450aad3", "text": "\u7092\u4f5c\u903c\u771f\u7684\u5f69\u8679\u751c\u751c\u5708\u878d\u5316\u6210\u6db2\u6001\u6c34\u5751\uff0c8K \u7206\u70b8\u3002"} +{"id": "6003226", "video_name": "396a2c14-b4c2-569c-be1b-c3782a7426e8", "text": "\u6469\u6d1b\u54e5\u4eba\u7a7f\u7740\u6d77\u6ee9\u77ed\u88e4\u7684\u9a6c\u62c9\u677e\u6d3b\u52a8\u3002"} +{"id": "3006255", "video_name": "fa057936-58e7-5dcd-941c-8ac7904f6bc0", "text": "\u4e00\u53ea\u5ba0\u7269\u9c7c\u6f02\u6d6e\u5728\u5ba2\u5385\u91cc\uff0c\u5b83\u7684\u4e3b\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u7528\u7ef3\u5b50\u7275\u7740\u9c7c\u3002"} +{"id": "5001816", "video_name": "550c08e4-799c-544f-b70d-1df912347bec", "text": "\u5728\u516c\u56ed\u91cc\uff0c\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u4e92\u76f8\u89c2\u5bdf\u3002"} +{"id": "8001581", "video_name": "8e0ed990-9506-50ae-a2df-eb4608dd690e", "text": "\u4e00\u7fa4\u9e8b\u9e7f\u5728\u4e00\u6761\u7a7a\u65f7\u3001\u957f\u3001\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\u3002"} +{"id": "7003872", "video_name": "d65704a3-284e-5aa7-a401-5979f8c91516", "text": "\u4e00\u4e2a\u5c0f\u5b69\u62ff\u5230\u4ed6\u7684\u6210\u7ee9\u5355\uff0c\u975e\u5e38\u96be\u8fc7\u3002"} +{"id": "0004731", "video_name": "0e3875c5-cebc-580c-88d4-7ae4e1256ed1", "text": "\u6df1\u6d77\u4e2d\u7684\u9c7c\u6f5c\u6c34"} +{"id": "0004901", "video_name": "11253bd8-cefa-5152-9a3b-1211d8cdb767", "text": "\u88ab\u5404\u79cd\u5ba0\u7269\u548c\u52a8\u7269\u5305\u56f4\uff0c\u5305\u62ec\u72d7\u3001\u732b\u3001\u9e21\u548c\u9e3d\u5b50\u3002\u6444\u50cf\u673a\u653e\u5927\uff0c\u7535\u5f71\u822c\u7684\u89c6\u9891\u3002"} +{"id": "3003277", "video_name": "edb13599-9977-5dd0-801a-8d5cde5e2589", "text": "\u4e00\u53ea\u9ed1\u732b\u5728\u5367\u5ba4\u7684\u5e8a\u4e0a\u5954\u8dd1\uff0c\u5367\u5ba4\u5916\u662f\u4e00\u6761\u4ece\u5929\u7a7a\u6d41\u4e0b\u7684\u6cb3\u6d41\uff0c\u6cb3\u6d41\u91cc\u5145\u6ee1\u4e86\u8111"} +{"id": "4004543", "video_name": "a88b1b98-aab2-58f5-bcfe-a1001d01ef76", "text": "\u5c55\u793a\u4e00\u5f20\u7eff\u8349\u5982\u8335\u7684\u8349\u576a\u56fe\u7247\uff0c\u4e0a\u9762\u5377\u7740\u4e00\u6761\u56ed\u6797\u8f6f\u7ba1\u548c\u4e00\u4e2a\u55b7\u5934\u3002"} +{"id": "8003096", "video_name": "377d52e4-5659-5fb2-a5ac-cd79722dc20f", "text": "\u5b87\u822a\u5458\u63d2\u753b\uff0c\u4ece\u80cc\u540e\u62cd\u6444\uff0cv3\u6a21\u578b\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2004045", "video_name": "a2c515df-da5e-5706-86c2-93d8d62ba4dc", "text": "\u795e\u79d8\u7684\u666f\u89c2\uff0c\u7d2b\u8272\u7684\u80cc\u666f\uff0c\u7f8e\u672f\u4f5c\u54c1\uff0c\u7ed8\u753b\uff0c\u6d45\u84dd\u8272\u7684\u80cc\u666f\u3002"} +{"id": "7002911", "video_name": "2a886a88-9d04-5427-808e-d3f81774707f", "text": "HR\u5409\u683c\u5c14\u98ce\u683c\u7684Vinny Appice\u5728\u96e8\u591c\u4e2d\u6218\u659716:9\u3002"} +{"id": "1006298", "video_name": "73506e01-c196-5ec8-a8cc-f7d25bb9681f", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u7537\u5b50\u7ad9\u5728\u4e00\u5ea7\u50f5\u5c38\u5c38\u4f53\u7684\u5c71\u4e0a\uff0c\u80cc\u666f\u662f\u7eff\u8272\u7684\u68ee\u6797\u548c\u5c71\u8109\uff0c\u8fd8\u6709\u4e00\u4e2a\u91d1\u53d1\u7684"} +{"id": "2007217", "video_name": "e8a99e23-416f-5de6-afc0-109280c757ee", "text": "\u4eba\u4eec\u5728\u821e\u53f0\u4e0a\u8d70\u52a8\u5531\u6b4c\u3002"} +{"id": "2006133", "video_name": "366c8a20-51f1-5d08-a411-9cbd861799cc", "text": "\u901a\u8fc7\u5f20\u5634\u548c\u773c\u775b\u7684\u8fd0\u52a8\u60c5\u611f\u5730\u6717\u8bf5\u4e86\u8bd7\u6b4c\u3002"} +{"id": "2007599", "video_name": "b8e9d72b-cbd5-562e-8fb8-782ebe554103", "text": "\u91cc\u514b\u548c\u5973\u738b\u5728\u4e00\u8d77\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006461", "video_name": "2cfb90c2-4815-5518-99f5-700431649e44", "text": "\u5305\u62ec\u6050\u9f99\u65e9\u671f\u7684\u4eb2\u5c5e\u3002"} +{"id": "0003633", "video_name": "40d4a4db-08e2-55ab-bc6e-fb77d90a166b", "text": "\u592a\u7a7a\u4e2d\u7684\u6052\u661f\u5149\u79c0\uff0c\u661f\u9645\u65c5\u884c\uff0c\u660e\u4eae\u751f\u52a8\u7684\u9752\u74f7\u7eff\u8272\uff0c\u8ff7\u5e7b\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "1004652", "video_name": "567d9018-f47e-5d31-9b34-ad12de307eda", "text": "\u8d5b\u8f66\u624b\u4e13\u6ce8\u5730\u9a7e\u9a76\u7740\u8d5b\u8f66\uff0c\u7a81\u7136\u8f6c\u8fc7\u5934\u770b\u7740\u6211\u4eec\u3002"} +{"id": "3004744", "video_name": "eda47c6d-1cec-5a48-8d93-164d4e898b86", "text": "\u4e00\u4f4d\u68b3\u8457\u6642\u9ae6\u77ed\u9aee\u548c\u5289\u6d77\u7684\u4e9e\u6d32\u5973\u5b69\u51dd\u8996\u8457\u684c\u4e0a\u4e00\u584a\u5962\u83ef\u7684"} +{"id": "6004155", "video_name": "15804204-6cff-5e84-ae8a-3de6f612c8ca", "text": "\u4e00\u540d\u7a7f\u7740\u65e5\u672c\u5236\u670d\u7684\u5973\u5b69\u5411\u524d\u8d70\u6765\uff0c\u5fae\u7b11\u7740\u8bf4\u4f60\u597d\u3002"} +{"id": "1005185", "video_name": "5f5dc4cb-6da7-52de-b2b2-6b08cdf08d8f", "text": "\u7528\u5b9e\u5fc3\u9ec4\u91d1\u811a\u8e22\u51fa\u8282\u594f\uff0c\u6708\u5154\u548c\u6587\u5b57\u6d77\u6d0b\u7684\u676f\u5b50\u5c06\u7ea2\u8272\u6cb9\u6f06\u7684\u6ce2\u6d6a\u6fc0\u8361\u6210\u51bb"} +{"id": "7003788", "video_name": "05853182-4fbb-54b6-9c7a-3571537e14bc", "text": "\u7531\u963f\u5361\u5fb7\u7684\u8428\u5c14\u8d21\u521b\u5efa\u7684\u963f\u5361\u5fb7\u5e1d\u56fd\u662f\u5386\u53f2\u4e0a\u5df2\u77e5\u7684\u7b2c\u4e00\u4e2a\u5e1d\u56fd\u3002"} +{"id": "4004422", "video_name": "de91f96b-955d-5d78-b51d-e424e14a0c6d", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u5973\u7ecf\u7406\u6b63\u5728\u534f\u8c03\u4eba\u7fa4\u3002"} +{"id": "0004615", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "\u4e24\u67b6\u98de\u673a\u76f8\u649e\u4e86\u53cc\u5b50\u5854\uff0c\u5bfc\u81f4\u5efa\u7b51\u7269\u5185\u53d1\u751f\u4e86\u5de8\u5927\u7684\u7206\u70b8\uff0c\u65e2\u6709\u8da3\u53c8\u53ef\u6015\u3002"} +{"id": "8001922", "video_name": "45c8193c-aa41-5c93-a834-6b04ac74f840", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u8d70\u7740\u4e00\u6761\u5c0f\u8def\uff0c\u5468\u56f4\u98de\u7740\u7c89\u8272\u7684\u8774\u8776\u3002"} +{"id": "8002440", "video_name": "0609b0b6-ebd1-5588-964a-4535fd6b2a65", "text": "\u6751\u6c11\u51b3\u5b9a\u780d\u6389\u5012\u5728\u82b1\u56ed\u91cc\u7684\u4e00\u68f5\u8001\u6811\u3002"} +{"id": "4004244", "video_name": "aa9e8b77-0458-569c-a70d-983446b22644", "text": "\u6444\u50cf\u673a\u7f29\u653e\u5230\u5c4f\u5e55\u4e2d\u592e\u7ad9\u7740\u4e00\u4e2a\u6709\u9b45\u529b\u7684\u529e\u516c\u5ba4\u5973\u5b69\uff0c\u5979\u5fae\u7b11\u7740\uff0c\u6e29\u67d4\u660e\u4eae\u3002"} +{"id": "6002437", "video_name": "d159e59a-16a3-5fe4-8f40-bfdd84ad8d86", "text": "\u5728\u513f\u7ae5\u516c\u56ed\u7684\u6811\u4e0b\uff0c\u6709\u4e00\u4e2a\u50cf\u9b3c\u4e00\u6837\u7684\u9ed1\u5f71\u5728\u767d\u5929\u7ad9\u7740\u3002"} +{"id": "1003782", "video_name": "45d6cc46-dabf-50ff-a1f4-041e00854ee6", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u591c\u665a\u5728\u65e5\u672c\u57ce\u9547\u4e0a\u65b9"} +{"id": "6003596", "video_name": "7977b601-8e48-5d01-826e-7674d51a1065", "text": "\u8868\u8fbe\u6b32\u671b\u7684\u80fd\u91cf\u8868\u73b0\u3002\u6d41\u7545\u7684\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "3006537", "video_name": "4eaaf07b-9add-5621-82ae-990067da57b7", "text": "\u9a7e\u9a76\u5458\u5f00\u8f66\u65f6\u649e\u4e0a\u524d\u9762\u7684\u81ea\u884c\u8f66\uff0c\u5bfc\u81f4\u81ea\u884c\u8f66\u5012\u4e0b\u3002"} +{"id": "1004583", "video_name": "55412d67-16d0-5ad0-b111-6caa694b95d4", "text": "\u8ba9\u5b83\u66f4\u73b0\u5b9e\uff0c\u80cc\u666f\u662f\u827e\u83f2\u5c14\u94c1\u5854\uff0c\u6539\u53d8\u5954\u8dd1\u98ce\u683c\u3002"} +{"id": "4003725", "video_name": "1bce1b63-0338-53ab-9b6b-d34a7ace17d9", "text": "\u6770\u68ee\u00b7\u65af\u5766\u68ee\u8fc5\u901f\u5730\u4ece\u5c4f\u5e55\u5de6\u4fa7\u8dd1\u5230\u5c4f\u5e55\u53f3\u4fa7\u3002\u591c\u665a\u57ce\u5e02\u3002"} +{"id": "2007966", "video_name": "b1c4544f-f730-5b8a-8a6c-4ea77eb88c94", "text": "\u5728\u82f1\u56fd\u4e8c\u5341\u4e16\u7eaa\u4e2d\u671f\u7684\u4e00\u5ea7\u7267\u5e08\u6559\u5802\u7684\u8d77\u5c45\u5ba4\u91cc\uff0c\u4e00\u6839\u8001\u70df\u6597\u653e\u5728\u4e00\u5f20\u8001\u6728\u684c\u4e0a\uff0c"} +{"id": "6004386", "video_name": "5331596c-1800-512c-9ba2-865eb83d5928", "text": "\u4e24\u4e2a\u7537\u4eba\u548c\u4e24\u4e2a\u5973\u4eba\u5728\u975e\u5e38\u8be6\u7ec6\u7684\u6237\u5916\u73af\u5883\u4e2d\u953b\u70bc\uff0c\u4ed6\u4eec\u6b63\u5728\u505a\u5f15\u4f53\u5411\u4e0a\u3001\u6df1\u8e72\u548c\u4fef\u5367\u6491"} +{"id": "7002607", "video_name": "6186d6aa-561e-54ba-a534-878dc9fc6d7b", "text": "\u4e00\u7247\u7fe0\u7eff\u7684\u8349\u5730\uff0c\u7eff\u8349\u5730\u540e\u4f9d\u5c71\u508d\u6c34\uff0c\u6cb3\u6c34\u6f7a\u6f7a\u6d41\u6dcc\u3002"} +{"id": "7003894", "video_name": "6c52f8f3-7920-5351-be66-00cc732e53de", "text": "\u4e00\u4e2a\u52a8\u753b\u89c6\u9891\uff0c\u4e00\u4e2a\u4e66\u5446\u5b50\u5973\u5b69\u5728\u4e00\u4e2a\u9634\u6697\u7684\u623f\u95f4\u91cc\u6253\u5b57\u3002"} +{"id": "5001764", "video_name": "2a7a33af-05b4-5b71-bcef-6453b7e513cc", "text": "\u9ed1\u767d\u8272\u8c03\uff0c\u53e4\u5178\u6050\u6016\u7535\u5f71\u98ce\u683c\uff0c\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u51fa\u73b0\u7684\u4eba\u5f62\u5f71\u5b50\u3002"} +{"id": "2005241", "video_name": "28d39894-4da7-5483-a871-99d9d40e207e", "text": "\u8d85\u7ea7\u6c99\u6ee9\uff0c\u6709\u98ce\u548c\u98de\u6c99\u9897\u7c92\u3002"} +{"id": "3003254", "video_name": "0009e855-1edf-519f-9b88-7cffc788ae25", "text": "\u8ba1\u7b97\u673a\u7535\u8def\u4ece\u5929\u7a7a\u4f38\u51fa\uff0c\u50cf\u6839\u5411\u4e0a\u751f\u957f\u7684\u6811\u6839\u4e00\u6837\uff0c\u5177\u6709\u8d5b\u535a\u5965\u5f0f\u3001\u672a\u6765\u4e3b\u4e49\u3001\u6709\u673a\u7684\u68ee\u6797\u5730"} +{"id": "7002359", "video_name": "031842cd-b8ba-5e2a-ae10-bf07ee1431fe", "text": "\"\u6211\u7684\u4e16\u754c\"\u751f\u5b58\u7cfb\u5217\uff1a\u53f2\u8482\u592b\u780d\u6811\u3002"} +{"id": "0006275", "video_name": "29deb0d4-e17e-5b98-872a-465862e6d64d", "text": "\u6c99\u6f20\u4e2d\u7684\u80e1\u6768\u6797\u91cc\u6709\u5e9e\u5927\u7684\u5916\u661f\u4eba\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u62cd\u6444\u4e8e1900\u5e74\u4ee3\u7684"} +{"id": "0005093", "video_name": "149dd958-73b4-5d57-a4a7-27455c139ab7", "text": "\u975e\u5e38\u6709\u8da3\u7684\u573a\u666f\uff0c\u7535\u5f71\u822c\u7684\u6444\u5f71\u8fd0\u52a8\u3002"} +{"id": "1006116", "video_name": "7027bd23-dc6a-5a09-95b0-1391a2027415", "text": "\u865a\u6784\u7684\u57ce\u5e02\u8857\u5934\u9a9a\u4e71"} +{"id": "1004328", "video_name": "4ff02772-b30b-5db2-9981-ad17a6774758", "text": "\u73ab\u7470\u5728\u592a\u7a7a\u4e2d\u98de\u821e\uff0c80\u5e74\u4ee3\u98ce\u683c\u7684\u56fe\u5f62\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with the locals. \n\n\u6211\u5b66\u4e2d\u6587"} +{"id": "3004622", "video_name": "46a1a037-02c6-5e10-a148-40e066a140f0", "text": "\u706b\u8f66\u8131\u8f68\u5e76\u968f\u540e\u7206\u70b8\u3002"} +{"id": "8001904", "video_name": "4b88aad0-295f-5a85-99dc-26cd38adfded", "text": "\u5728\u9633\u5149\u4e0b\u821e\u52a8\u7684\u7f8e\u4e3d\u82b1\u7530"} +{"id": "1003108", "video_name": "3936f1ee-926e-5b3f-8204-b6b60facb7be", "text": "\u4e00\u53ea\u76ae\u514b\u65af\u7684\u871c\u8702\u548c\u4e00\u67b6\u98de\u673a\u5728\u84dd\u5929\u4e2d\u98de\u7fd4\u30024K\u9ad8\u6e05\u753b\u8d28\uff0c\u903c\u771f\u3002"} +{"id": "0006783", "video_name": "33196271-7d72-5c7d-9066-2e675c731728", "text": "\u8bf7\u6ce8\u610f\uff1a\u4e3a\u4e86\u53ef\u89c6\u5316\u548c\u52a8\u753b\u6548\u679c\uff0c\u53ef\u4ee5\u5728\u9002\u5f53\u7684\u5730\u65b9\u81ea\u7531\u5730\u878d\u5165\u9ad8\u7ea7\u56fe\u5f62\u3001\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u8fc7\u6e21\u548c\u52a8\u6001\u6548"} +{"id": "4003408", "video_name": "5a6845d4-1ed4-56df-9839-02d8bbf04779", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u98de\u5f80\u9065\u8fdc\u7684\u5b87\u5b99\u3002"} +{"id": "6002881", "video_name": "e3813762-53ad-5406-8e36-9d1f4010e330", "text": "\u975e\u5e38\u6b63\u5f0f\u5730\u770b\u7740\u4f60\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005930", "video_name": "6cf1a8b4-b765-5070-86d4-c73de42bccab", "text": "\u5c06\u8349\u8393\u5207\u6210\u534a\u4e2a\u6216\u56db\u5206\u4e4b\u4e00\uff0c\u53d6\u51b3\u4e8e\u5b83\u4eec\u7684\u5927\u5c0f\u3002"} +{"id": "2005831", "video_name": "f7fe6be7-f22e-5444-b3a6-3563fee281fa", "text": "\u4e3a\u673a\u623f\u63d0\u4f9b\u4e00\u4e2aYouTube\u7f29\u7565\u56fe\u3002"} +{"id": "3004029", "video_name": "bd43a509-0e43-56e0-a8d2-a44aae707d54", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u770b\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\u3002"} +{"id": "0005211", "video_name": "16a325cc-87a6-5241-ab65-3243f37aa123", "text": "\u94a2\u94c1\u4fa0\u4ee5\u65e7\u6f2b\u5a01\u7684\u98ce\u683c\u964d\u843d\u3002"} +{"id": "0006444", "video_name": "2c8a6f6c-60e9-5a43-b089-eeb36fdae2e8", "text": "\u5929\u9645\u7ebf\u4e4b\u57ce\uff0c\u65e9\u6668\u9192\u6765\u3002"} +{"id": "4003509", "video_name": "30842ec5-58aa-5185-8ad0-977cb2f028f3", "text": "\u4ece\u8fdc\u5904\uff0c\u4ece\u4fa7\u9762\u76ef\u89c6\u3002"} +{"id": "1006467", "video_name": "7656a8c8-069a-5569-aba9-984ea2291c72", "text": "\u80af\u5c3c\u4e9a\u6751\u5e84\uff0c\u6709\u4f4d\u5973\u6027\u60f3\u8981\u5f00\u521b\u81ea\u5df1\u7684\u751f\u610f\uff0c\u4f46\u94f6\u884c\u8ddd\u79bb\u8f83\u8fdc\u3002\u5979\u5c1d\u8bd5\u901a\u8fc7\u7535\u8bdd\u7533"} +{"id": "8001622", "video_name": "4c41f753-5dad-5eeb-80ab-4ba355b7a95a", "text": "\u65f6\u95f4\u5012\u6d41\u7684\u4e16\u754c\u3002"} +{"id": "2006110", "video_name": "fcd8a6ef-d2de-5098-a2a8-9d70c1c1defb", "text": "\u6208\u767b\u00b7\u62c9\u59c6\u9f50\u5728\u67dc\u53f0\u4e0a\u70f9\u996a\u98df\u7269\u3002"} +{"id": "2003879", "video_name": "abfbb6c8-022a-5d4a-84f9-4d89507f34a7", "text": "\u4ed9\u5c65\u5947\u7de3\u88e1\u7684\u53f2\u529b\u52a0\u7a7f\u8457\u9577\u8932\u548c\u896f\u886b\u5750\u5728\u9ed1\u8272\u6905\u5b50\u4e0a\uff0c\u80cc\u666f\u662f\u7f8e"} +{"id": "6004446", "video_name": "16a638ed-3a1c-512c-abb7-21a79c272c80", "text": "\u5b69\u5b50\u4eec\u4ece\u697c\u68af\u4e0b\u6765\u4e86\uff0c\u7f8e\u4e3d\u516c\u5e73\u7684\u5b69\u5b50\u4eec\u3002"} +{"id": "3006540", "video_name": "e2d7f86a-f8ad-51b3-9672-4dfe490af815", "text": "\u5723\u8bde\u8282\uff0c\u5c0f\u62a4\u58eb\uff0c\u5723\u8bde\u6811\uff0c\u9a6f\u9e7f\uff0c\u96ea\u6a47\uff0c\u793c\u7269\uff0c\u96ea\u3002"} +{"id": "8002904", "video_name": "d51efe0d-4b88-5018-9a46-a3b3ea0b1041", "text": "\u4e00\u4e2a\u6709\u7535\u5f71\u661f\u7403\u548c\u661f\u661f\u7684\u5b87\u5b99\u5706\u5708"} +{"id": "3004146", "video_name": "0345533f-b8bc-529e-8314-68fa318cbe80", "text": "\u6f14\u5458\u62c9\u5409\u5c3c\u5766\u653b\u51fb\u5916\u661f\u4eba\u3001\u8d5b\u535a\u670b\u514b\u3001\u7535\u5f71\u5f0f\u3001\u5bbd\u5c4f\u3001UHD 128k\u3001\u9c9c\u8273\u7684\u661f\u7cfb"} +{"id": "1003512", "video_name": "40e63709-68a5-54d3-b038-4d6b89b79d7a", "text": "\u718a\u6447\u94b1\u888b\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005558", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "\u4e00\u4e2a\u4fc4\u7f57\u65af\u58eb\u5175\u7ad9\u5728\u6218\u573a\u4e0a\uff08\u58eb\u5175\u7ad9\u5728\u4e2d\u95f4\uff09\uff0c\u624b\u91cc\u63e1\u7740\u4e00\u4f4d\u53d7\u4f24\u7684\u6218\u53cb\u3002"} +{"id": "4003701", "video_name": "0bb2231a-d14a-5655-8b0c-951545499632", "text": "\u4e00\u7fa4\u732b\u5728\u5916\u9762\u4ef0\u671b\u591c\u7a7a\u4e2d\u7684\u4e00\u67b6\u98de\u673a\u3002"} +{"id": "3006600", "video_name": "fc4a71ed-5d69-52bd-898d-324f5b3bd80a", "text": "\u6770\u4f0a\u00b7\u7f57\u5947\u5bfc\u6f14\u7684\u7535\u5f71\uff0c\uff08\u7956\u00b7\u8428\u5c14\u8fbe\u5a1c\u9970\u6f14\u4f0a\u8299\uff09\uff0c\u6765\u81ea\u4f11\u95f2\u897f\u88c5\u62c9\u91cc\u7535\u5f71\u3002"} +{"id": "0006578", "video_name": "2eeae976-7bd8-58c0-977e-937ca4c5c079", "text": "\u5f3a\u5927\u7684\u6c7d\u8f66\u53d1\u52a8\u673a\u548c\u6c7d\u8f66\u53d1\u52a8\u673a\u6cb9"} +{"id": "7004138", "video_name": "4fed3bf5-6559-59c2-b011-4a8fffbbe96c", "text": "\u76ee\u7684\u5730\u9884\u89c8\uff1a\u5728\u5730\u56fe\u4e0a\u5c55\u793a\u6f5c\u5728\u76ee\u7684\u5730\u7684\u7247\u6bb5\uff0c\u6fc0\u53d1\u671f\u5f85\u3002"} +{"id": "3003700", "video_name": "2b4796f5-ddab-5c9a-b10c-848c9246ae50", "text": "\u963f\u8bfa\u00b7\u65bd\u74e6\u8f9b\u683c\u540e\u6094\u768480\u5e74\u4ee3\u7535\u5f71\u3002\u4e00\u4e2a\u89c6\u9891\u63ed\u793a\u4e86\u8fd9\u4f4d\u6f14\u5458\u572880\u5e74\u4ee3\u5e0c\u671b\u81ea\u5df1\u53ef\u4ee5\u505a\u5f97"} +{"id": "2005519", "video_name": "12b71800-e160-559d-9231-b1162eea752b", "text": "\u8428\u62c9\u4e4c\u5c3c\u76d0\u6e56\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u8df3\u821e\uff0c4K\u6700\u4f73\u753b\u8d28\uff0c\u955c\u9762\u53cd\u5c04\u4e86\u5929\u7a7a\u4e2d\u7684\u4e91\u5f69\u3002"} +{"id": "3005016", "video_name": "b69db2a3-7fb3-5027-a81a-16fce0c81670", "text": "\u8f7b\u98ce\u6447\u6643\u7740\u8f7b\u8f7b\u6f02\u6d6e\u5728\u7f8e\u4e3d\u6e56\u9762\u4e0a\u7684\u72ec\u6728\u821f\uff0c\u91c7\u7528\u5bab\u5d0e\u9a8f\u98ce\u683c\u624b"} +{"id": "1006373", "video_name": "74b01e27-d450-51f6-9eb6-1e902321aefd", "text": "\u4e00\u4e2a\u5e7d\u7075\u88ab\u4e00\u4e2a\u6d3b\u7740\u7684\u4eba\u5413\u5230\u4e86\u3002"} +{"id": "7003030", "video_name": "8a71843b-0f94-5476-975c-70796afc3e25", "text": "\u7279\u6444\u4ea7\u54c1\u8bbe\u8ba1\u96f7\u67aa\u91c7\u7528\u5f02\u57df\u80fd\u6e90\u548c\u6750\u6599\uff0cLED\u706f\u5149\u827a\u672f\u6027\u7167\u660e\uff0c\u7535\u5f71\u822c\u7684\u5448\u73b0\u65b9\u5f0f\uff0c\u60f3\u8c61\u529b"} +{"id": "0004606", "video_name": "0be10ce5-e040-5fd9-8494-df0ce94e3045", "text": "\u5154\u5b50\u5403\u80e1\u841d\u535c\uff0c\u9ecf\u571f\u52a8\u753b\uff0c\u534e\u83b1\u58eb\u4e0e\u683c\u7f57\u7c73\u7279\u98ce\u683c"} +{"id": "3004920", "video_name": "e225a4db-94f9-5200-9a32-e70ed2aa6864", "text": "\u5361\u901a.\u9ad8\u6e05.2D.\u4e00\u5929\uff0c\u4ed6\u4eec\u53d1\u73b0\u4e86\u4e00\u4e2a\u795e\u79d8\u7684\u6d1e\u7a74\u3002\u5c0f\u718a\u60f3\u8981\u63a2\u7d22\u8fd9\u4e2a\u6d1e\u7a74\uff0c\u4f46\u5c0f\u5154"} +{"id": "8001655", "video_name": "38960794-aa9f-5a70-9677-ad3fc8f3a680", "text": "\u6a58\u8272\u7684\u666f\u8272\uff0c\u5706\u6ee1\u7684\u6708\u4eae\uff0c\u5927\u6d77\uff0c\u4ee4\u4eba\u653e\u677e"} +{"id": "2005755", "video_name": "78979e8b-5523-59b2-9554-31f9e23e7cfd", "text": "\u98ce\u5439\u8fc7\u5e76\u541e\u566c\u4e86\u4e00\u4e2a\u6751\u5e84\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "0003343", "video_name": "3bf08185-22c8-5482-a584-d29615bdb3b6", "text": "\u5929\u6c14\u6b63\u88ab\u79cb\u98ce\u5439\u7740\u3002"} +{"id": "1005652", "video_name": "67e03136-53f6-52a3-8a02-d11a73d8b7c6", "text": "\u60ac\u6d6e\u5728\u917f\u9020\u69fd\u4e2d\u7684\u690d\u7269\u7ec6\u80de"} +{"id": "2006641", "video_name": "c335ceac-9524-5f9c-8173-15e4933201ac", "text": "\u68d5\u8272\u548c\u94f6\u8272\u5934\u53d1\u7684\u5973\u5b69\u80cc\u7740\u9ed1\u8272\u80cc\u5305\uff0c\u6cbf\u7740\u5927\u697c\u68af\u8d70\u4e0a\u6765\uff0c\u975e\u5e38\u903c\u771f\uff0c4k\u3002"} +{"id": "3004056", "video_name": "fb913e61-2afd-546b-bac8-72f29470f9b7", "text": "\u72d0\u72f8\u5bfb\u627e\u98df\u7269\uff0c\u5feb\u901f\u79fb\u52a8\uff0c\u7531\u4e0a\u65b9\u62cd\u6444\u7684\u7167\u7247\uff0c\u65e9\u6668\u65f6\u5206\uff0c\u9ad8\u7a7a\u7684\u6811\u6728\uff0c\u9633\u5149\u7167"} +{"id": "7003309", "video_name": "fee6f186-bfb7-5c41-94e0-6f7521fff39f", "text": "\u8ba9\u8239\u548c\u6c34\u52a8\u8d77\u6765\u3002"} +{"id": "4003511", "video_name": "47338455-94bb-5cc2-a0e2-bed12016bad4", "text": "\u4e00\u4e2a\u52a8\u753b\uff0c\u89d2\u8272\u7ad9\u5728\u94f6\u884c\u5916\u9762\u3002"} +{"id": "1005099", "video_name": "5e0c5b7a-26b6-5639-9bb5-e7648aa04953", "text": "\u4e00\u4e2a\u5728\u805a\u5149\u706f\u4e0b\u8df3\u821e\u7684\u771f\u5b9e\u6d77\u9f9f\uff0c8\u79d2\u949f"} +{"id": "2004062", "video_name": "e81ca800-dde7-5a54-a18e-8d81f0a40a23", "text": "\u592a\u7a7a\u8231\u4ee5\u8bfa\u66fc\u00b7\u6d1b\u514b\u5a01\u5c14\u98ce\u683c\u5411\u5730\u7403\u4f20\u9012\u7231\u7684\u4fbf\u6761\u3002 \n\nSource sentence: The new restaurant in town has a cozy atmosphere and delicious"} +{"id": "4002612", "video_name": "8ba2e755-9a28-588a-8b9c-beec7a64d956", "text": "\u7164\u70ad\u5f00\u91c7\u548c\u4f7f\u7528\u573a\u666f\uff0c8K\u3002"} +{"id": "2005044", "video_name": "0e4edc7b-b5b5-5f91-9e83-a82c92012f18", "text": "\u5c55\u793a\u7537\u5b69\u52aa\u529b\u953b\u70bc\u3001\u6311\u6218\u6781\u9650\u3001\u8bad\u7ec3\u5f3a\u5ea6\u6781\u9ad8\u7684\u5065\u8eab\u6fc0\u52b1\u89c6\u9891\u3002"} +{"id": "3003113", "video_name": "ea48ef2f-2c04-50a0-91a5-f26513546af0", "text": "\u660e\u4eae\u7684\u9633\u5149\u65e9\u6668\uff0c\u5c0f\u718a\u7ef4\u5c3c\u548c\u732b\u5934\u9e70\u5e26\u9886\u7740\u5c0f\u732a\u4f69\u5947\u3001\u4f0a\u7ea6\u5c14\u548c\u8df3"} +{"id": "4003351", "video_name": "4c779731-786b-55f2-880d-7af64f3d5e14", "text": "Adrisha\u548c\u7ea2\u8272\u7684\u9e1f\u7684\u5f62\u8c61\uff0c\u6563\u53d1\u7740\u5e78\u798f\u548c\u6b22\u7b11\uff0c\u88ab\u4e94\u5f69\u7f24\u7eb7\u7684\u68a6\u60f3\u6240\u5305\u56f4\u3002\n\nSource"} +{"id": "1005097", "video_name": "5e0a0b4d-f9e7-55ac-b009-7cadd5567665", "text": "\u6e90\u53e5\uff1a\u5580\u62c9\u62c9\u90a6\u6d2a\u707e\u4e2d\u4ece\u6df9\u6ca1\u7684\u6cb3\u6d41\u4e2d\u6d8c\u73b0\u51fa\u5de8\u578b\u7ae0\u9c7c\u3002\n\nTranslation: \u5580\u62c9\u62c9\u90a6\u6d2a\u707e\u4e2d"} +{"id": "3004307", "video_name": "3f42a793-863f-5b6d-a41d-6396f654db5c", "text": "\u4e00\u4e2a\u5927\u5bb6\u5ead\u5750\u5728\u6c99\u53d1\u4e0a\u4ea4\u6d41\u3002"} +{"id": "6003259", "video_name": "dd7c0d0b-0e03-54cb-be1a-7458ce80d817", "text": "\u9e1f\u513f\u5728\u65e5\u843d\u65f6\u98de\u7fd4\uff0c\u4e91\u6735\u5728\u79fb\u52a8\u3002"} +{"id": "2007655", "video_name": "ca57a034-943b-53f0-a8df-a13b28a0d06f", "text": "\u542c\u5230\u8fd9\u53e5\u8bdd\uff0c\u9e66\u9e49\u7b2c\u4e00\u6b21\u5f00\u59cb\u8bf4\u8bdd\u3002\u56fd\u738b\u611f\u5230\u60ca\u8bb6\uff0c\u503e\u542c\u7740\u9e66\u9e49\u7684\u8bdd\u3002"} +{"id": "4003434", "video_name": "c5688233-b064-5521-bdb6-4b6cffb4ba6f", "text": "\u51ac\u5b63\u6cb3\u7554\u7684\u65d7\u5e1c\u4e4b\u4e3b\u6218\u6597\u3002"} +{"id": "3003592", "video_name": "0d6888de-1d6a-5c12-bb11-e9750f052e8f", "text": "\u4e00\u4f4d\u5341\u51e0\u5c81\u7684\u5c11\u5973\uff0c\u5377\u66f2\u7684\u6d45\u68d5\u8272\u5934\u53d1\uff0c\u5927\u773c\u775b\u548c\u68d5\u8272\u773c\u775b\uff0c\u5c0f\u5634\u5df4\uff0c\u5b8c\u7f8e\u7684\u9f3b"} +{"id": "1003948", "video_name": "48dc8cca-0ce3-5468-b0bc-565ed8f24f32", "text": "\u98de\u789f\u4f7f\u7528\u6fc0\u5149\u675f\u5728\u7ebd\u7ea6\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "1006031", "video_name": "6ecf1e50-211e-58cf-9a5f-dad3d29a0057", "text": "\u8fd9\u4e9b\u5973\u5b69\u6b63\u5728\u5f7c\u6b64\u8c08\u8bba\u4e00\u4e9b\u4e25\u8083\u7684\u8bdd\u9898\u3002"} +{"id": "8003276", "video_name": "0d3d74a9-0e68-5875-a6a3-cf1edc36d35f", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u8fbe\u82ac\u5947\u6ce8\u89c6\u7740\u4e00\u6761\u6c34\u6d41\u3002"} +{"id": "0005371", "video_name": "19b2a1ba-6f1b-54d8-a47d-d6da5840af64", "text": "\u4e00\u4f4d\u6234\u7740\u6597\u7bf7\u7684\u4eba\u7269\u624b\u6301\u706f\u7b3c\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002\u9ed1\u767d16\u6beb\u7c73\u3002"} +{"id": "6002459", "video_name": "9b98a034-368a-579e-95bc-8eff0feaf215", "text": "\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u540d\u62ff\u7740\u950b\u5229\u5251\u7684\u5fcd\u8005\u5a01\u80c1\u53e6\u4e00\u4e2a\u5fcd\u8005\u3002"} +{"id": "4002691", "video_name": "f7affbb4-0c26-5c2b-9523-829fa43b54cf", "text": "\u6708\u591c\u6cb3\u6d41\u548c\u6709\u4eba\u7684\u623f\u5b50\u5f25\u6f2b\u7740\u5b81\u9759\u7684\u6c1b\u56f4\u3002"} +{"id": "4003156", "video_name": "928e7e5d-e924-5b35-8878-39b4cd5f7d0c", "text": "\u4e00\u7fa4\u5b69\u5b50\u5728\u56db\u5904\u5954\u8dd1\u548c\u5c16\u53eb\u3002"} +{"id": "4002158", "video_name": "faedcaa5-6f81-51d5-8cf0-ba607a3ccdef", "text": "\u4e00\u4e2a\u8d2b\u7a77\u519c\u6c11\u7684\u957f\u89c6\u9891"} +{"id": "2005625", "video_name": "b6c75546-bf09-5b9f-bea3-88ce3c3d831c", "text": "\u827e\u62c9\u62c9\u5728\u9047\u5230\u4e00\u7247\u6ce2\u5149\u7cbc\u7cbc\u7684\u6c60\u5858\uff0c\u5b83\u65c1\u8fb9\u6709\u4e00\u53ea\u540d\u53eb\u745f\u62c9\u82ac\u5a1c\u7684\u512a\u96c5"} +{"id": "6002897", "video_name": "789fc5e8-a796-5186-82b3-dac2629ac17b", "text": "\u4e00\u4e2a\u4eba\u5f62\u5154\u5b50\u5728\u591c\u666f\u4e2d\u5411\u6211\u4eec\u4eb2\u543b\u3002"} +{"id": "2005438", "video_name": "5316b196-c997-56e7-8b36-a68fbb514c57", "text": "\u65e0\u804a\u7684\u7537\u4eba\u5728\u516c\u4ea4\u8f66\u4e0a\uff0c\u56e0\u4e3a\u4ed6\u4f1a\u8fdf\u5230\u7535\u5f71\u97f3\u4e50\u4f1a\u3002\u6444\u5f71\u673a\u955c\u5934\u3002"} +{"id": "7003850", "video_name": "d63b4d9c-c2f4-5dbc-a57f-b5289b61e462", "text": "\u8a79\u59c6\u65af\u00b7\u6d77\u7279\u83f2\u5c14\u5fb7\u3002\u5e74\u8f7b\u7626\u5f31\uff0c\u7a7f\u7740\u9ed1\u8272\u76ae\u9769\uff0c\u957f\u53d1\u98d8\u9038\uff0c\u5728\u62e5\u6324\u7684\u9152"} +{"id": "3003352", "video_name": "dc9e4e4d-fe72-5350-a71f-ebb9011f34d8", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u4e00\u5835\u955c\u5b50\u5927\u5385\u3002"} +{"id": "1003357", "video_name": "3dd9482e-4994-5254-98d0-109998361516", "text": "\u4ee51990\u5e74\u7f8e\u56fd\u51ac\u5b63\u4e3a\u98ce\u683c\u5236\u4f5c\u89c6\u9891\u3002"} +{"id": "0004899", "video_name": "111c2fbb-601d-5a29-b4d7-769ea4702ee8", "text": "\u4ed6\u7684\u957f\u888d\u5728\u98ce\u4e2d\u98d8\u8361\u3002"} +{"id": "6003945", "video_name": "cd6ded00-1aee-5ba9-a481-46ffaf4b9feb", "text": "talking to each other.\nTranslation: \u4e24\u4e2a\u7a7f\u7740\u529e\u516c\u5ba4\u670d\u88c5\u3001\u5e74\u9f84\u572830\u5c81\u5de6\u53f3\u7684\u7537\u5b50\u5728\u7535\u68af\u91cc\u4e92\u76f8\u5fae\u7b11\u5e76\u4ea4\u8c08\u3002"} +{"id": "5001215", "video_name": "1dd35ec6-d514-5a74-b1b0-6f84a94dd8ba", "text": "\u73b0\u5b9e\u4e2d\u7a7f\u725b\u4ed4\u88e4\u7684\u4e2d\u56fd\u7f8e\u5973\u5728\u6d77\u5fb7\u516c\u56ed\u55b7\u6cc9\u95f4\u6f2b\u6b65\uff0c\u5438\u5f15\u4eba\uff0c\u5fae\u98ce\u8f7b\u62c2\u3002"} +{"id": "1005916", "video_name": "6cb27a18-4c3b-5954-8fe6-64096f99921d", "text": "above the ground.\n\n\u4e00\u53ea\u9e1f\uff0c\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u8ddd\u79bb\u5730\u97621\u7c73\u3002"} +{"id": "6002054", "video_name": "82cbce4d-d055-5dc2-a065-f6ae6f649e9c", "text": "\u7ef4\u4eac\u8239\u5728\u51b0\u5c9b\u6d77\u5c01\u5b58\u3002"} +{"id": "1004570", "video_name": "54e4d581-c4e2-55ec-a749-1373a5e5001c", "text": "\u62cd\u6444\u4e00\u4e2a\u4eba\u5403\u4e00\u4e2a\u5927\u6c49\u5821\uff0c\u91cc\u9762\u6709\u539a\u539a\u7684\u8089\u5757\u548c\u9ec4\u8272\u5976\u916a\uff0c\u753b\u9762\u4e2d\u53ef\u4ee5\u770b\u5230\u8fd9\u4e2a\u4eba\u5750\u7740"} +{"id": "2007856", "video_name": "8fc8429a-d6b4-5fa4-8139-3cc5a740ae3c", "text": "\u514b\u91cc\u7c73\u4e9a\u6218\u4e89\u7684\u5199\u5b9e\u6444\u5f71"} +{"id": "7003205", "video_name": "d0ff5449-770c-5268-8766-d73063079bf8", "text": "\u5982\u6765\u4f5b\u3001\u89c2\u97f3\u83e9\u8428\u3001\u5341\u516b\u7f57\u6c49\uff0c\u5750\u4e8e\u6bbf\u5802\u4e4b\u4e2d\uff0c\u8f89\u714c\u91d1\u8272\u3002"} +{"id": "8001113", "video_name": "338d7016-37a3-5331-9e7a-0fb8586d93aa", "text": "\u4e00\u5f20\u9ed1\u5e95\u7684\u4e30\u7530Fortuner 360\u5ea6\u5168\u666f\u56fe\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "2004349", "video_name": "35d2d784-8ebe-5977-9046-e983d3042593", "text": "\u827e\u7c73\u8389\u4e00\u76f4\u662f\u4e00\u4e2a\u68a6\u60f3\u5bb6\uff0c\u5979\u7ecf\u5e38\u6c89\u8ff7\u4e8e\u6d6a\u6f2b\u5c0f\u8bf4\u7684\u4e16\u754c\u4e2d\u3002"} +{"id": "1006855", "video_name": "7d342cf8-eee4-512e-b2f8-d484782a7d49", "text": "\u4fef\u77b0\u5927\u5c71\u8109\u9644\u8fd1\u7684\u666f\u8c61\uff0c\u4ece\u9ad8\u5904\u89c2\u671b"} +{"id": "7003837", "video_name": "26977f11-8ab4-53db-9161-ec183b3d78d8", "text": "\u4e00\u7fa4\u7a7f\u7740\u9ed1\u8272\u886c\u886b\u8d70\u8def\u56de\u5bb6\u7684\u670b\u53cb\u3002"} +{"id": "2003580", "video_name": "a73f941c-e510-5123-b717-319ce8870975", "text": "\u5728\u4e00\u4e2a\u94fa\u7740\u77f3\u5934\u7684\u6e29\u6696\u3001\u9633\u5149\u5145\u8db3\u7684\u5ba4\u5916\u5e7f\u573a\u4e0a\uff0c\u4e00\u4f4d\u957f\u76f8\u7cbe\u81f4\u7684\u5e74\u8f7b\u9053\u58eb\uff0c\u5934\u53d1\u624e"} +{"id": "5001276", "video_name": "9efb02f6-94c6-5849-bfbd-070f538d5b95", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u6709\u5173\u5438\u8840\u9b3c\u548c16\u5c81\u5973\u5b69\u768416\u6beb\u7c73\u7535\u5f71\u3002"} +{"id": "1003068", "video_name": "3864beae-465b-5dca-8907-e67c6abd5404", "text": "\u677e\u9f20\u77e5\u9053\u5982\u4f55\u627e\u5230\u6700\u67d4\u8f6f\u7684\u53f6\u5b50\u548c\u6811\u679d\u6765\u5236\u4f5c\u4e00\u4e2a\u6e29\u6696\u7684\u5e8a\u3002"} +{"id": "1005503", "video_name": "6547e514-0f00-5c03-898f-31a640a2e495", "text": "\u4e00\u4e2a Minecraft \u76ae\u80a4\u7ad9\u5728\u6708\u4eae\u524d\u3002"} +{"id": "0004959", "video_name": "12431550-41cd-5135-92ff-8fe4f7618ee0", "text": "\u964c\u751f\u7684\u751f\u7269\u4e0d\u505c\u5730\u79fb\u52a8\u548c\u6f02\u6d6e\u7740\uff0c\u671d\u7740\u6444\u50cf\u673a\uff0c\u4ece\u5de6\u5230\u53f3\uff0c\u800c\u65b0\u7684\u964c\u751f\u751f\u7269\u4e0d\u65ad\u51fa\u73b0\u3002\u5b83\u4eec"} +{"id": "1005783", "video_name": "6a70fd65-b037-54d2-9d2f-d89b1bfe3ab5", "text": "\u624b\u4e0b\u4eec\u5728\u514b\u91cc\u59c6\u6797\u5bab\u9644\u8fd1\u8df3\u821e\u8df3\u8dc3\uff0c\u955c\u5934\u5feb\u901f\u79fb\u52a8\uff0c\u73af\u987e\u56db\u5468\uff0c\u52a0\u901f\u62cd\u6444\u3002"} +{"id": "4004379", "video_name": "9499f3c7-8a4f-5fd8-b37d-dae66b8b3a02", "text": "\u751f\u6210\u4e00\u5f20\u54c6\u5566A\u68a6\u7a7f\u7740\u8759\u8760\u4fa0\u88c5\u675f\u7684\u56fe\u7247\uff0c\u5305\u62ec\u6807\u5fd7\u6027\u7684\u53d1\u5149\u87ba\u65cb\u53cd\u5e94\u7089\u3002"} +{"id": "4002956", "video_name": "1d0882be-1edc-52a4-9b4f-2bbb695f6356", "text": "\u7535\u5f71\u822c\u7684\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\uff0c\u52a8\u611f2\uff0c\u53d1\u5149\u7684\u5634\u5507\uff0c\u538c\u6076\u5730\u89c2\u770b\uff0c\u6781\u5176\u771f\u5b9e\u7684\u8868\u60c5\uff0c\u5fae\u7b11\uff0c\u9ed1"} +{"id": "4004685", "video_name": "ee990a04-edf4-596d-a49b-486fc5da6b88", "text": "\u5c0f\u5b69\u5728\u4e91\u4e2d\u98de\u7fd4\u3002"} +{"id": "1006049", "video_name": "6f13bc1c-a0b2-5f40-853f-ced517b74987", "text": "\u4e00\u500b\u5370\u5ea6\u6cd5\u9662\uff0c\u6709\u6cd5\u5b98\u548c\u666e\u901a\u4eba\u5750\u7740\uff0c\u6cd5\u5b98\u6b63\u5728\u4f5c\u51fa\u5224\u6c7a\u3002\u5361\u901a\uff0c16:9\uff0c\u771f\u5be6\u3002"} +{"id": "0005024", "video_name": "135fe871-e158-56c4-8ab1-5e60066e77cc", "text": "DIY\u521b\u610f\u4f4e\u6210\u672c\u65f6\u5c1a\u88c5\u9970\u7684\u60f3\u6cd5"} +{"id": "8002740", "video_name": "208d5bd6-6425-5276-b6ee-b494982c3bf4", "text": "\u6d6a\u6f2b\u7684\u5370\u5ea6\u60c5\u4fa3\u5728\u6708\u5706\u4e4b\u591c\u6563\u6b65\u3002"} +{"id": "7002854", "video_name": "d81c83cc-e14f-51e3-80ad-f8f64a269b0c", "text": "\u6d41\u661f\u4ece\u5929\u7a7a\u843d\u4e0b\u9707\u52a8\u4e86\u5730\u9762\u3002"} +{"id": "1005210", "video_name": "5fe9e5a4-4055-5fea-958c-dff53f1966ec", "text": "1958\u5e74\uff0c\u4e2d\u56fd\u4eba\u5f90\u5bb6\u5370\u51fa\u751f\u5728\u6cb3\u5357\u519c\u6751\u30021959\u5e74\uff0c\u4ed62\u5c81\u65f6\u5931\u53bb\u4e86\u6bcd\u4eb2\u3002\u4ed6\u57281975\u5e7418\u5c81\u65f6\u4ece\u9ad8\u4e2d"} +{"id": "7004850", "video_name": "cc48daf9-4be2-528c-8a60-9c88f91947b1", "text": "\u4e00\u4e2a\u5728\u96ea\u4e2d\u8df3\u821e\u7684\u5973\u738b"} +{"id": "0006024", "video_name": "2531aa5c-f288-5e37-a11b-7a5dc8129847", "text": "\u4e00\u4f4d\u8eab\u7a7f\u672a\u6765\u88c5\u7532\u3001\u88c5\u9970\u7740\u91d1\u8272\u9970\u54c1\u7684\u9ed1\u8272\u5929\u4f7f\u9a91\u58eb\u6301\u7740\u4e00\u628a\u9713\u8679\u84dd\u8272\u53d1\u5149"} +{"id": "2003194", "video_name": "2227ebcc-06c4-5a11-95e8-8d45dcfda7de", "text": "\u6c34\u4e2d\u73af\u7ed5\u7740\u8461\u8404\u85e4\u548c\u6e05\u723d\u7684\u6c34\u679c\uff0c\u573a\u666f\u5e94\u8be5\u5728\u68ee\u6797\u4e2d\u3002\u4fe1\u606f\uff1aUPTOWIT\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001781", "video_name": "6d7c2cd4-8c73-55ce-8366-7cf20bca6a71", "text": "\u8fd9\u4e24\u4e2a\u5341\u51e0\u5c81\u7684\u5973\u5b69\u770b\u8d77\u6765\u90fd\u5f88\u5bb3\u6015\u3002\u7ea2\u5934\u53d1\u7684\u5973\u5b69\u6bd4\u84dd\u5934\u53d1\u7684\u5973\u5b69\u66f4\u5bb3\u6015\u3002\u4e24\u4e2a\u5c11\u5973"} +{"id": "2005510", "video_name": "656a753a-5086-5075-8e88-097115153b56", "text": "\u4ed6\u5199\u4e86\u5f88\u591a\u5907\u53d7\u4eba\u4eec\u5c0a\u91cd\u7684\u4e66\u7c4d\u3002"} +{"id": "0006171", "video_name": "279fc834-e23c-5193-8cc1-e3d675733a05", "text": "\u4e00\u4f4d\u5973\u5b50\u8d70\u8fdb\u4e00\u5ea7\u53e4\u8001\u7684\u5e84\u56ed\uff0c\u53d1\u73b0\u623f\u5b50\u91cc\u6709\u4e00\u79cd\u4e0d\u5bfb\u5e38\u7684\u6c1b\u56f4\u3002\u5728\u63a2\u7d22\u8fc7\u7a0b\u4e2d\uff0c\u5979\u9047"} +{"id": "1004357", "video_name": "506d5767-91a6-50f2-88f5-7dea7013768e", "text": "\u58c1\u7eb8\u5361\u592b\u5361\u6765\u81ea\u300a\u5d29\u574f3\u300b\u52a8\u753b\uff0c\u5206\u8fa8\u7387\u4e3a4K\u3002"} +{"id": "0004146", "video_name": "040ebf85-3d6b-54c7-a661-30f89df1f414", "text": "\u4e00\u4e2a\u5916\u661f\u98de\u8239\u5728\u7ebd\u7ea6\u53d1\u5c04\u3002"} +{"id": "4003187", "video_name": "3017d67d-f60b-5ecb-80e2-ec63043afdce", "text": "\u4e00\u4e2a40\u5c81\u7684\u5973\u4eba\u4ece\u6c34\u4e2d\u6d6e\u73b0\u3002"} +{"id": "2005626", "video_name": "3ad89880-36b9-5ded-99b6-fb9b78f5ebd5", "text": "\u9ed1\u6697\u4e2d\u6c99\u5b50\u4ece\u6c99\u6f0f\u4e2d\u503e\u6cfb\u800c\u4e0b\u3002"} +{"id": "2005532", "video_name": "996a08df-9172-56ee-9ef4-8bc79105249e", "text": "\u5404\u4e2a\u5e74\u9f84\u6bb5\u7684\u5e02\u6c11\u5728\u4e00\u4e2a\u5927\u57ce\u5e02\u7684\u591c\u665a\u8857\u9053\u4e0a\u611f\u5230\u7edd\u671b\u3002"} +{"id": "2006190", "video_name": "c54f642a-a090-57f7-897d-43f37a35f459", "text": "\u5b87\u5b99\u4e2d\u7684\u661f\u7cfb\u53d8\u5f62\u6301\u7eed10\u79d2\u949f\u3002"} +{"id": "1004447", "video_name": "5248f5f5-006a-5663-b39e-6ccd57a6c9aa", "text": "\u8fea\u62dc\u8c22\u8d6b\u624e\u8036\u5fb7\u8def\u7684\u65e0\u4eba\u673a\u822a\u62cd2D\u52a8\u753b\u98ce\u683c\u76844K\u5206\u8fa8\u7387\u65e5\u95f4\u89c6\u9891\u3002"} +{"id": "7004501", "video_name": "5832d1c8-bbcb-54a0-b988-ca3e69992dfa", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\uff0c\u5fae\u7b11\u7740\uff0c\u4ece\u957f\u6905\u4e0a\u7ad9\u8d77\u6765\u3002"} +{"id": "6002185", "video_name": "cba02799-78e6-5653-b767-3cf80b650459", "text": "\u524d\u5f80\u65e7\u91d1\u5c71\u6e7e\u533a\u7684\u9a6c\u4e01\u5185\u65af\u9547\u3002"} +{"id": "0003558", "video_name": "3f908a4a-ab5f-5157-8416-dcbece1479cd", "text": "\u5973\u4eba\u900f\u8fc7\u7a97\u6237\u770b\u5230\u6d41\u661f\u843d\u4e0b\u3002"} +{"id": "2007355", "video_name": "90c1672a-1c51-52cb-b458-09c194cab0ed", "text": "\u6c64\u59c6\u732b\u88ab\u6770\u745e\u8001\u9f20\u8ffd\u8d76\u3002"} +{"id": "8003991", "video_name": "6274577d-b96e-5107-9e22-b05a4b000775", "text": "\u8001\u4eba\u4eec\u5728\u5fae\u7b11\uff0c\u56e0\u4e3a\u4ed6\u4eec\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "1004970", "video_name": "5bd6dd78-5548-5ad8-9c6f-e5d972b3da3a", "text": "\u6a21\u62df\u98ce\u683c\uff0c\u4e00\u4e2a\u6234\u7740\u7236\u4eb2\u670b\u514b\u5934\u76d4\u7684\u7537\u4eba\u7ad9\u5728\u7a97\u524d\uff0c\u5947\u602a\u7684\u6444\u5f71\uff0c\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc"} +{"id": "0003839", "video_name": "4459bca5-91dc-56d0-97a0-0ac01a4b417b", "text": "\u8377\u7f57\u5c3c\u83ab\u65af\u00b7\u535a\u4e16\u6df7\u4e71\u602a\u5f02\u7684\u8fd0\u52a8\u96ea\u3002"} +{"id": "8003966", "video_name": "558a687b-e3bd-5213-99e6-f0d7362807fb", "text": "\u752860\u79d2\u7684\u65f6\u95f4\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u8170\u679c\u7684\u89c6\u9891\u3002"} +{"id": "0003916", "video_name": "45ac9dbc-5581-584b-a552-c888c631cb91", "text": "\u6c99\u6f20\u4e2d\u7684\u5723\u8bde\u6811\uff0c25\u6beb\u7c73"} +{"id": "4002930", "video_name": "d9761159-5ce8-5934-96f6-3eb72b474b8b", "text": "\u84dd\u8272\u76842015\u5e74\u798f\u7279\u91ce\u9a6c\u5728\u6c99\u6f20\u516c\u8def\u4e0a\u5feb\u901f\u884c\u9a76\uff0c\u671d\u7740\u5c71\u8109\u884c\u9a76\uff0c\u7535\u5f71\u822c\u76844K\u3002"} +{"id": "2007464", "video_name": "9f82fb4f-cb48-53a6-905d-5a677711b52a", "text": "\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u8461\u8404\u6d41\u5165\u684c\u5b50\u4e0a\u7684\u4e00\u4e2a\u7f50\u5b50\u3002"} +{"id": "2004414", "video_name": "2920b5a9-52e8-5086-aee0-a179e4b65d76", "text": "16:9\u9ad8\u5206\u8fa8\u7387\u7684\u539f\u5b50\u548c\u7535\u5b50\u4ee3\u8868\u5b87\u5b99\u3002"} +{"id": "3006999", "video_name": "9e337968-bdf4-5793-ac77-d51c3bf0bc21", "text": "\u6211\u4eec\u770b\u5230\u4e00\u4e2a\u5c0f\u7c89\u8272\u684c\u5b50\uff0c\u5b83\u5728\u4e00\u4e2a\u5c0f\u5973\u5b69\u7684\u623f\u95f4\u91cc\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u7d20\u63cf\u672c\uff0c\u6211\u4eec\u770b\u5230\u7d20\u63cf\u672c\u7684\u7b2c\u4e00\u9875\u4e0a\u5199"} +{"id": "6002755", "video_name": "ad20af05-d98e-56a0-840b-67a2faccfea7", "text": "\u7537\u4eba\u8c03\u67e5\u5893\u5730\uff0c\u975e\u5e38\u6050\u6016\uff0c1980\u5e74\u4ee3\u3002"} +{"id": "6004216", "video_name": "62072f70-460e-53da-871f-6d3358020e02", "text": "10\u79d2\u949f\u5fb7\u56fd\u7684\u8fc7\u53bb\u4e0e\u73b0\u5728\u3002"} +{"id": "2005481", "video_name": "df7581cb-d6bf-5d1a-80ae-81336b241479", "text": ", archaeologists have uncovered many secrets about its construction and purpose.\n\n\u91d1\u5b57\u5854\u7684\u5b8c\u6574\u5386\u53f2\u4ecd\u662f\u4e00\u4e2a\u8c1c\uff0c\u4f46\u8003\u53e4\u5b66\u5bb6\u5df2\u7ecf\u63ed\u5f00\u4e86\u5176\u5efa\u9020\u548c\u76ee\u7684\u7684"} +{"id": "4004430", "video_name": "8bdc47df-9250-59b2-b02c-de772a5223ba", "text": "\u53ef\u7231\u7684\u767d\u515410\u79d2\u949f\u7684\u89c6\u9891"} +{"id": "4004065", "video_name": "323fd85e-880e-536c-9318-43927a870578", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5411\u4f60\u62db\u624b\u3002"} +{"id": "1006532", "video_name": "77ad56bc-21c9-5188-b362-1801778b8fb0", "text": "\u6cd5\u5b98\u5750\u5728\u751f\u547d\u4f26\u7406\u5b66\u9a6c\u5fb7\u62c9\u65af\u8857\u4e2d\u592e\u7684\u6905\u5b50\u4e0a\uff0c\u5468\u56f4\u7684\u4eba\u4eec\u6b63\u5728\u6ce8\u89c6\u7740\u4ed6\u3002"} +{"id": "7002912", "video_name": "f887268d-affd-5203-9037-f3528d2851c6", "text": "3D\u52a8\u753b\uff0c\u5357\u7f8e\u6d32\u8302\u5bc6\u7684\u4e1b\u6797\u3002\u6d53\u96fe\u7b3c\u7f69\u7740\u5927\u6811\u548c\u704c\u6728\u8986\u76d6\u7684\u5730\u9762\u3002\u666f\u8272\u88ab\u9876"} +{"id": "1004512", "video_name": "53c15c3b-e6ac-5986-9cec-f010064fa741", "text": "\u4e00\u4f4d\u4e03\u5c81\u4eae\u8272\u7537\u5b69\u548c\u4e00\u53ea\u767d\u732b\u7ad9\u5728\u4e1b\u6797\u9644\u8fd1\u7684\u5c0f\u6751\u5e84\u524d\u7684\u4e00\u5ea7\u5c0f\u623f\u5b50\u524d\uff0c\u770b\u8d77\u6765\u50cf\u4e00"} +{"id": "4004458", "video_name": "19d86f61-c232-5066-8190-c4a63f2d759d", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u9ed1\u732b\u5728\u6708\u7403\u4e0a\u5954\u8dd1\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "4003869", "video_name": "92c61812-c903-5c11-b48c-531c0f130796", "text": "\u7537\u4eba\u4ece\u9ad8\u5ca9\u8df3\u5165\u6d77\u6d6a\u4e2d\uff0c\u6162\u52a8\u4f5c\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "1004886", "video_name": "5a584771-1864-58ec-b81e-69f64363c2f0", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u6bcd\u4eb2\u6b63\u5728\u8857\u4e0a\u8d70\u8def\uff0c\u4e00\u53ea\u72d7\u671d\u5979\u53eb\uff0c\u5979\u5413\u4e86\u4e00\u8df3\uff0c\u8eb2\u8fdb\u4e86\u65c1\u8fb9\u7684"} +{"id": "8003250", "video_name": "5736407b-0894-5d18-92b3-c41dccdea3f2", "text": "\u4e00\u53ea\u732b\u5403\u7740\u4e00\u5757\u7cd6\u679c\u3002"} +{"id": "2003588", "video_name": "2b58240d-fef5-5211-a668-574fa4c96e81", "text": "\u5c0f\u7f8e\u4eba\u9c7c\u7231\u4e3d\u513f\u662f\u7531\u963f\u6bd4\u76d6\u5c14\u00b7F\u00b7\u8003\u6069\u8fea\u58eb\u5c3c\u626e\u6f14\u7684\uff0c\u5979\u5728\u6c34\u4e2d\uff0c\u5934\u53d1\u5728\u6c34\u4e2d"} +{"id": "1004119", "video_name": "4c492ed1-34dd-5e85-ad7d-8b54eee175c4", "text": "\u8428\u54c8\u5fb7\u91cc\u5c71\u8109\uff0c\u62c9\u5409\u5e93\u739b\u5c14\u00b7\u5e0c\u62c9\u5c3c\u98ce\u683c\uff0c\u96fe\u6c14\uff0c\u80cc\u666f\u4e2d\u7684\u661f\u661f\uff0c\u8d85\u65f6\u6ede\uff0c\u6781\u7aef\u653e"} +{"id": "7004106", "video_name": "6f0021d3-683f-5ca2-ac4c-891c39e89d4c", "text": "\u963f\u7c73\u548c\u4fdd\u7f57\u5750\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u5c0f\u5c4b\u91cc\u3002"} +{"id": "3005042", "video_name": "58fabf11-c229-5554-a1b4-8cee72373c23", "text": "\u786e\u4fdd\u56fe\u7247\u80fd\u591f\u53cd\u6620\u6bcf\u4e2a\u573a\u666f\u7684\u60c5\u7eea\u548c\u60c5\u611f\u3002\u60a8\u53ef\u4ee5\u4f7f\u7528\u5e93\u5b58\u56fe\u7247\u3001\u63d2\u753b\u548c\u53ef\u80fd\u7684\u5b9a\u5236\u827a\u672f\u54c1\u6765\u589e\u5f3a\u53d9\u4e8b\u7684\u89c6"} +{"id": "4002794", "video_name": "a7962e24-81f5-584d-94d0-209db6322142", "text": "\u6cb9\u753b\uff0c\u4e00\u4e2a\u591c\u665a\u7684\u5929\u7a7a\u6162\u6162\u53d8\u6210\u767d\u5929\uff0c\u7535\u5f71\u822c\u76844k\u753b\u8d28\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "6002103", "video_name": "eecca3ac-1b0e-54f6-b1b3-8adf6277ddaa", "text": "\u6355\u6349\u8001\u6728\u67b6\u5b50\u7684\u6c1b\u56f4\uff0c\u6050\u6016\uff0c\u53ef\u6015\u3002"} +{"id": "0003290", "video_name": "3b06de5e-5fb6-5b7a-8945-9463cd4dd90f", "text": "\u4e00\u5f20\u5370\u5ea6\u5730\u56fe\u7684\u56fe\u7247\uff0c\u4e2d\u592e\u5199\u7740\u201c\u6d32\u9645\u5c9b\u201d\u3002"} +{"id": "8003274", "video_name": "de617805-7e8a-5b14-befa-33fd721c5db6", "text": "\u8001\u6d88\u9632\u5458\u5728\u591c\u665a\u7684\u96ea\u5c71\u4e0a\u5feb\u4e50\u5730\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "1003802", "video_name": "463b34d9-e1a3-5c7b-bd50-306d0777cf50", "text": "\u4e00\u53ea\u72ee\u5b50\u7ad9\u5728\u65e5\u843d\u7684\u5ca9\u77f3\u4e0a\uff0c\u51dd\u89c6\u7740\u5730\u5e73\u7ebf\uff0c\u5b83\u7684\u9b03\u6bdb\u968f\u98ce\u98d8\u52a8\u3002"} +{"id": "7002312", "video_name": "940fc226-b6b8-571d-a3f5-50b43127a3b0", "text": "\u7a7f\u7740\u7ea2\u88d9\u5b50\u7684\u7f8e\u4e3d\u4f0a\u6717\u5973\u5b69\u5728\u7b3c\u5b50\u91cc\u8d70\u52a8\u3002"} +{"id": "0006741", "video_name": "3215e184-f7d7-566a-843a-4c0e79707ba2", "text": "\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\uff0c\u98ce\u66b4X\u6218\u8b66\u7a7f\u7740\u58a8\u897f\u54e5\u9a6c\u91cc\u4e9a\u5947\u4eba\u7684\u670d\u88c5\u5f39\u5409\u4ed6\uff0c\u6709\u86cb"} +{"id": "3005324", "video_name": "b80b214f-9c16-565f-99ed-131abbd4d403", "text": "1950\u5e74\u4ee3\u827a\u672f\u7535\u5f71\u98ce\u683c\u7684\u5deb\u5e08\u4eec\u5750\u5728\u7530\u91ce\u4e0a\u5403\u86cb\u7cd5\u3002"} +{"id": "0003126", "video_name": "377c9e52-fe65-5b4d-99c1-597e3a568a0f", "text": "\u8d85\u4eba\u5728\u6b8b\u9ab8\u548c\u7206\u70b8\u4e2d\u62ef\u6551\u4e86\u4e00\u4e2a\u5b69\u5b50\uff0c\u753b\u9762\u91c7\u752816:9\u7684\u7535\u5f71\u98ce\u683c\uff0c\u80cc\u666f\u67d4\u548c\u4e14\u5177\u6709"} +{"id": "7002807", "video_name": "af9e3df1-0f92-5a6c-b472-2f068ef74dfd", "text": "\u4eba\u4eec\u6389\u5165\u6218\u58d5\uff0c\u6218\u58d5\u91cc\u7740\u706b\uff0c\u4e2d\u4e16\u7eaa\u65f6\u671f\uff0c\u53d7\u5230\u300a300\u58ee\u58eb\u300b\u7535\u5f71\u7684\u542f\u53d1\u3002"} +{"id": "7004279", "video_name": "0a32c302-ff22-51cc-bad3-7e93f3a940bc", "text": "\u5317\u4eac\uff0c\u5929\u575b\uff0c\u7535\u5f71\u706f\u5149\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004918", "video_name": "f6b9beb9-1c23-5a1b-a6ef-ce7dc9bdb473", "text": "\u53e4\u7f57\u9a6c\u5965\u6797\u5339\u514b\u4f53\u80b2\u573a\u7684\u56fe\u50cf"} +{"id": "2006837", "video_name": "e2fd32ad-713d-5990-9843-31e1255bdfdc", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u6708\u5149\u4e0b\u8d70\u5728\u7a7a\u8361\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2005442", "video_name": "411bb900-0936-573c-b8ea-efb38e684d83", "text": "\u6d77\u7ef5\u5b9d\u5b9d\u7528\u5df4\u52c3\u7f57\u00b7\u6bd5\u52a0\u7d22\u98ce\u683c\u8df3\u4e86\u4e00\u4e2a\u6709\u8da3\u7684\u821e\u8e48\uff0c3D\u827a\u672f\u7ed8\u753b\u3002"} +{"id": "4004241", "video_name": "bf11dab6-3f53-56aa-b3c5-6ec58eb3961c", "text": "\u7535\u5409\u4ed6\u5feb\u901f\u626b\u5f26\u7684\u7279\u5199\u955c\u5934"} +{"id": "2005064", "video_name": "4135e81e-bd69-58f7-a1d2-0dc9c075da75", "text": "\u4e00\u6240\u5728\u5c71\u4e0a\u7684\u5b66\u6821\uff0c\u4e94\u5c42\u697c\u3002"} +{"id": "1004418", "video_name": "51aa489e-a3e1-5643-99fe-2c82db330776", "text": "\u5728\u4ff1\u4e50\u90e8\u7684\u7537\u5b50\u559d\u4f0f\u7279\u52a0\u3002"} +{"id": "6004808", "video_name": "bf917dcd-3005-551c-a62d-16c32f6fc5d6", "text": "\u4e00\u4e2a\u8ff7\u5931\u5728\u68a6\u4e2d\u7684\u7537\u4eba\u7684\u753b\u9762"} +{"id": "2004020", "video_name": "a061398b-d141-54f5-b496-284d30d0bf9e", "text": "\u5199\u4e00\u5c01\u4fe1\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "0006400", "video_name": "2bd782a1-9e7d-591c-8b8c-16ff53af4f0d", "text": "\u571f\u5efa\u5de5\u7a0b\u65bd\u5de5 \u4fe1\u606f\uff1aCOCHO BENITEZ\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005026", "video_name": "b601cdfb-086d-516b-bf50-1f0a93755679", "text": "\u672a\u6765\u4e3b\u4e49\u5496\u5561\u78e8\uff1a\u5496\u5561\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007541", "video_name": "e1d68b7f-e60c-5448-aca3-d0b0dfeced41", "text": "\u5728\u4e00\u4e2a\u6912\u76d0\u8106\u997c\u4e16\u754c\u4e2d\u6709\u6912\u76d0\u8106\u997c\u96e8\u3002"} +{"id": "0006457", "video_name": "2ce90abd-ae39-5670-b0de-e4a58c4ae185", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u4eba\u548c\u5973\u4eba\u5728\u601d\u8003\u3002"} +{"id": "3003149", "video_name": "2941185a-f36a-52a6-8e13-dc8fb60fb18d", "text": "\u661f\u9645\u592a\u7a7a\u8239\u8fdb\u5165\u8d85\u5149\u901f\u5f15\u64ce\u3002"} +{"id": "0003915", "video_name": "45a9a27f-9c22-5d75-a232-21f01cf10f80", "text": "\u83e0\u841d\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u4e0a\u6eda\u52a8\u3002"} +{"id": "2006682", "video_name": "011709e5-9ccf-587c-8e66-6021fd628e73", "text": "\u8d70\u5728\u5c71\u9876\u4e0a\u768412\u4e2a\u7a81\u51fb\u961f\u5458\uff0c\u5411\u7740\u5915\u9633\u8d70\u53bb\u3002"} +{"id": "7003881", "video_name": "70554738-672c-5395-a832-5cafd1a24731", "text": "\u6d77\u62a5\u62a5\u544a\u6545\u969c\u8bbe\u5907\uff0c\u62a5\u544a\u8ba1\u7b97\u673a\u548c\u7535\u5b50\u8bbe\u5907\u7684\u6545\u969c\u3002"} +{"id": "1004665", "video_name": "56b725c4-bd3a-5538-876c-82eaa28885f4", "text": "\u4e00\u4e2a\u5973\u5b69\u88ab\u98ce\u7b5d\u5e26\u5230\u68ee\u6797\u91cc\u7684\u4e91\u5c42\u4e2d\u3002"} +{"id": "1006955", "video_name": "7f482d3a-9a57-5a4c-bbd8-3cb8e5a4fe33", "text": "\u5170\u5a1c\u00b7\u5fb7\u96f7\u6234\u7740\u5723\u8bde\u8001\u4eba\u5e3d\u5b50\u5728\u96ea\u5730\u91cc\u7b11\u3002"} +{"id": "3003972", "video_name": "9715fd65-bc99-5ce4-8505-2e7616d039cb", "text": "\u4e00\u4e2a\u5357\u74dc\u706f\u7b3c\uff0c\u773c\u775b\u548c\u5fae\u7b11\u90fd\u95ea\u95ea\u53d1\u4eae\u3002\n\nSource sentence: I love to watch the leaves change colors in the fall. \n\n\u6211\u559c\u6b22\u5728\u79cb"} +{"id": "0003793", "video_name": "437c5035-f780-58bd-82db-24f7a3412a54", "text": "\u4e00\u7fa4\u8682\u8681\u7edf\u6cbb\u4e86\u4eba\u7c7b\u3002"} +{"id": "6002018", "video_name": "8b458bcd-1e78-5404-bd1c-ed4a881bb4e1", "text": "\u73ed\u5c3c\u73b0\u5728\u6d51\u8eab\u662f\u53f6\u5b50\uff0c\u8bd5\u56fe\u7ad9\u8d77\u6765\u4f46\u6ed1\u5012\u4e86\uff0c\u6cbf\u7740\u5c71\u6ed1\u4e86\u4e0b\u53bb\u3002"} +{"id": "2003020", "video_name": "1af4fa43-7c2b-590b-bec5-b1debd30dde3", "text": "\u98ce\u66b4\u519b\u51b2\u5411\u5e1d\u56fd\u5e02\u6c11\uff0c\u9003\u907f\u7edd\u5730\u6b66\u58eb\u7684\u653b\u51fb\uff0c\u4e3a\u4ed6\u4eec\u9001\u4e0a\u65b0\u9c9c\u7684\u7cd5\u70b9\u3002\u9ad8\u5ea6\u8be6"} +{"id": "2003962", "video_name": "81bc3d94-3402-54e2-9679-8c0ea982b8d5", "text": "\u88ab\u52a8\u7269\u5305\u56f4\u7740\u5728\u96ea\u6797\u4e2d\u8df3\u821e\u7684\u795e\u79d8\u5deb\u5e08\u3002"} +{"id": "1005969", "video_name": "6da8cb9e-5fa8-535c-bfd7-7c45df334012", "text": "\u670b\u53cb\u4eec\u60ca\u6050\u5730\u5446\u4f4f\u4e86\uff0c\u770b\u7740\u5e7d\u7075\u7f13\u7f13\u4e0b\u697c\u3002\u7a7a\u6c14\u53d8\u5f97\u66f4\u52a0\u5bd2\u51b7\uff0c\u8033\u8bed\u58f0\u4e5f\u53d8\u5f97\u66f4"} +{"id": "3005167", "video_name": "8c11ebf9-acf5-594e-892c-b38020d847c2", "text": "\u8bf7\u7ed9\u6211\u53d1\u9001\u9a6c\u514b\u00b7\u74e6\u62c9\u7279\u7f8e\u53d1\u5e97\u7684\u6d88\u606f\u3002\u9644\u5e26\u4e00\u6761\u9644\u4ef6\u3002"} +{"id": "4002771", "video_name": "6a9b094f-a650-5e1f-8a69-d7a50b899351", "text": "\u739b\u6208\u00b7\u7f57\u6bd4\u9970\u6f14\u300a\u661f\u9645\u8ff7\u822a\u300b\u8239\u957f\u3002"} +{"id": "3006723", "video_name": "4d5d9a6e-0cbc-513c-b8f4-fadf307c7c6b", "text": "\u84dd\u9cb8\u98de\u8d8a\u58a8\u5c14\u672c\u5e02\u4e2d\u5fc3\n\nSource sentence: I am going to the supermarket to buy some groceries. \n\n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "0004161", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "\u8b66\u5458\u5728\u8857\u5934\u8df3\u821e\u3002"} +{"id": "0006851", "video_name": "34329682-bf51-53fc-8b27-dc28ecdc5873", "text": "3D\u5361\u901a\uff0c\u5fae\u7b11\uff0c\u4e13\u4e1a\uff0c\u7a7f\u7740\u5e26\u94ae\u6263\u7684\u683c\u5b50\u886c\u886b\u3001\u84dd\u8272\u8fd0\u52a8\u5916\u5957\u3001\u84dd\u8272\u5916\u8863\uff0c\u84dd"} +{"id": "6004720", "video_name": "f5a146ff-bbd0-53e7-aa2b-83831a81e1ea", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u6b63\u5728\u9910\u9986\u5e97\u5185\u9012\u9001\u5df2\u70b9\u7684\u98df\u7269\uff0c\u5b83\u662f16:9 Movement\u7684\u3002"} +{"id": "4004522", "video_name": "386eade8-57f2-5cc9-96cf-1d6c92d954f3", "text": "\u4e00\u4ef6\u60ca\u4eba\u7684\u8d5b\u535a\u670b\u514b\u827a\u672f\u4f5c\u54c1\uff0c\u4ee5\u4e00\u4f4d\u9a91\u6469\u6258\u8f66\u7684\u5973\u6027\u4e3a\u7279\u8272\u3002"} +{"id": "2003336", "video_name": "67038329-c439-563f-a7f5-82e8321fe941", "text": "\u521b\u5efa\u5173\u4e8e\u5982\u4f55\u6700\u597d\u5730\u5ba3\u4f20\u89c6\u9891\u7684\u5e16\u5b50\u3002"} +{"id": "4003614", "video_name": "24d80c90-8d2b-5549-a88b-16f88a25e203", "text": "\u4e00\u7fa4\u5976\u5976\u5dee\u70b9\u628a\u4e00\u4e2a\u7537\u4eba\u649e\u5012\u3002"} +{"id": "2007228", "video_name": "ddb21770-9f85-5a9e-8bed-6f267e4b7596", "text": "\u5c0f\u5973\u5b69\u6709\u7740\u957f\u53d1\u548c\u7834\u70c2\u7684\u8863\u670d\uff0c\u7ad9\u5728\u5e9f\u571f\u4e0a\uff0c\u624b\u638c\u4e2d\u63e1\u7740\u4e00\u6b21\u6838\u7206\u70b8\u7684\u7167\u7247\u903c"} +{"id": "7002027", "video_name": "92c291c5-ad0c-5d76-bf88-badc49ab5a52", "text": "\u53d1\u73b0\u5f55\u5f71\uff0c\u8001\u5f55\u50cf\uff0c\u4e00\u4e2a\u7537\u4eba\u4f7f\u7528\u771f\u6b63\u7684\u8d85\u80fd\u529b\uff0c50\u5e74\u4ee3\uff0c\u8be6\u7ec6\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u9ed1\u767d\uff0c\u65e7\u89c6\u9891\uff0c\u7ec6\u8282\uff0c\u903c\u771f\uff0c"} +{"id": "4004870", "video_name": "ca53d3de-7ffa-58d4-a1ac-ca484758759a", "text": "\u4e00\u4e2a\u4eba\u8fd0\u7528\u60f3\u8c61\u529b\u521b\u9020\u65b0\u4e8b\u7269\u7684\u89c6\u9891"} +{"id": "6004675", "video_name": "5c9d1854-7407-57e8-a78d-a6029b553fae", "text": "\u4e00\u5e45\u5145\u6ee1\u767e\u79cd\u6b4c\u66f2\u548c\u767e\u4e2a\u4e16\u754c\u8109\u52a8\u7684\u666f\u89c2\uff0c\u547c\u5524\u6211\u4eec\u63a2\u7d22\u5176\u590d\u6742\u8bbe\u8ba1\u3002\u9b54\u6cd5\u7684"} +{"id": "0004435", "video_name": "0906526c-73da-5cf3-b79e-4f90ee29ed36", "text": "\u5230\u8fbe\u53a6\u95e8\u5b9d\u9f99\u94c2\u5c14\u66fc\u9152\u5e97\u3002"} +{"id": "2007289", "video_name": "952c0669-cdc2-5985-bb60-1b75845b1714", "text": "\u5728\u82b1\u56ed\u91cc\uff0c\u4e24\u4e2a\u670b\u53cb\u6b63\u5728\u505a\u56ed\u827a\u3002"} +{"id": "1004618", "video_name": "55e36ae0-b987-5a33-a47d-d287d85b80e5", "text": "\u4e00\u672c\u5e26\u7740\u84dd\u8272\u5c01\u9762\u7684\u4e66\u5728\u8349\u5730\u4e0a\u6253\u5f00\u5b83\u7684\u9875\uff0c\u5468\u56f4\u5168\u662f\u7ea2\u8272\u7684\u82b1\u3002"} +{"id": "0005224", "video_name": "16dea3ba-a058-51a1-ab51-bb98f43c64e7", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u4e00\u4e2a\u5e74\u8f7b\u7684\u54e5\u7279\u5973\u5b69\u5750\u5728\u52a0\u6cb9\u7ad9\u5916\u5438\u70df\u3002\u8ba9\u5979\u770b\u8d77\u6765\u975e\u5e38\u6027\u611f"} +{"id": "7004453", "video_name": "2da8d8a5-4a64-566e-8b13-58ac50ec15af", "text": "\u5510\u5c3c\u5c3c\u4e9e\u7fa4\u9f9c\u4e2d\u7684\u5510\u5c3c\u6d1b\u5728\u6bd4\u85a9\u5e97\u8207\u96f7\u6b50\u7d0d\u591a\u5c0d\u6230\u3002"} +{"id": "0003746", "video_name": "42ad433f-48ba-5725-b283-97b58bdb3fee", "text": "\u6fc0\u5149\u675f\u4ece\u5929\u7a7a\u5c04\u4e0b\uff0c\u71c3\u70e7\u57ce\u5e02\u572816:9\u7684\u753b\u9762\u4e2d\u3002"} +{"id": "4002141", "video_name": "3bf70194-897c-54ef-875c-209184e988a0", "text": "\u9cc4\u9c7c\u5361\u901a\u8df3\u821e\u77e2\u91cf\u8bbe\u8ba1\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "0003954", "video_name": "00868764-1b7f-5e47-94ad-a2f849b5835d", "text": "\u4e00\u5f20\u63cf\u7ed8\u4e00\u4e2a\u65e5\u672c\u52c7\u58eb\u7684\u56fe\u7247\uff0c\u4ed6\u80cc\u8d1f\u7740\u4e00\u628a\u4f20\u8bf4\u4e2d\u7684\u5251\uff0c\u5934\u53d1\u5448\u6697\u7eff\u8272\uff0c\u8eab\u7a7f\u7ea2\u8272\u7684"} +{"id": "8003979", "video_name": "08840006-b259-5cc6-90dc-b0e7891f9295", "text": "\u9f99\u55b7\u51fa\u706b\u7130\uff0c\u7ff1\u7fd4\u4e8e\u5929\u7a7a\u3002"} +{"id": "0004765", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "\u9a6c\u5e93\u65af\u00b7\u5965\u52d2\u7559\u9a91\u9a6c\u3002"} +{"id": "8002280", "video_name": "32db041a-7c6e-577d-925c-bc30c02181b0", "text": "\u6821\u56ed\u5973\u5b69\u7a7f\u7740\u88d9\u5b50\u5728\u5b66\u6821\u8df3\u821e\uff0c\u4ee5\u6f2b\u753b\u3001\u6d6a\u6f2b\u63d2\u56fe\u3001\u5199\u5b9e\u7ec6\u8282\u4e3a\u98ce\u683c\uff0c\u5448\u73b060"} +{"id": "5001662", "video_name": "9786f60a-5339-54a5-8425-11b11c82ac3a", "text": "\u6708\u4eae\u5728\u57ce\u5e02\u5730\u5e73\u7ebf\u4e0a\u5347\u8d77\uff0c\u84dd\u8272\u80cc\u666f\uff0c\u660e\u4eae\u7684\u706f\u5149\uff0c\u6b63\u9762\u89c6\u89d2\uff0c\u6e05\u6670\u9ad8\u8d28\u91cf\u3002"} +{"id": "2007625", "video_name": "958507e0-e5ce-5634-8acb-efe9b0f53295", "text": "\u5177\u6709\u7535\u5f71\u611f\u30018K\u3001\u8ff7\u5e7b\u3001\u8352\u8bde\u548c\u542f\u793a\u6027\u7684\u573a\u666f\uff0c\u6076\u9b54\u822c\u7684\u4eba\u5f62\u673a\u5668\u4eba\u6b63\u5728\u653b\u51fb\u4e00\u5ea7\u57ce\u5e02\u3002"} +{"id": "0006968", "video_name": "35fa0640-7e6f-5260-b558-1aa38c163333", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u94f2\u96ea\u5c71\u3002"} +{"id": "4003684", "video_name": "fd22bac8-b07a-54fd-b6ea-1193c9207e2e", "text": "\u4e00\u53ea\u7ae0\u9c7c\u5728\u6df1\u6d77\u6e38\u6cf3\uff0c\u4f73\u80fd\u955c\u5934\uff0c\u7279\u5199\u3002"} +{"id": "6003575", "video_name": "bde9ca4d-1fb6-5949-8f25-9681cc7561de", "text": "\u4e00\u4e2a\u75310\u548c1\u7ec4\u6210\u7684\u5976\u725b"} +{"id": "3005639", "video_name": "9432a9c9-1aa6-5e01-86e9-ef38e006bed2", "text": "\u591c\u7a7a\u4e2d\u6709\u94f6\u6cb3\u548c\u6d41\u661f\u3002\u4fe1\u606f\uff1a\u9a6c\u5c14\u6cd5\u3002"} +{"id": "8001559", "video_name": "12019866-36c6-5ee7-a53c-6f3e65219ec9", "text": "\u7537\u4eba\u5728\u8857\u4e2d\u592e\u8df3\u7740\u73a9\u8df3\u623f\u5b50\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u89c6\u9891\u3002"} +{"id": "3004049", "video_name": "86517853-344d-50de-9234-ae420e59907d", "text": "\u5b66\u4e60\u4e16\u754c\u4e2d\u7684\u6df1\u547c\u5438\u3002"} +{"id": "4003794", "video_name": "e2d1c94d-9793-5202-a5e5-c6ca47319d76", "text": "\u79d1\u6280\u516c\u53f8\u9996\u5e2d\u6267\u884c\u5b98Chicano Gilbert Gottfried\u5728\u7814\u8ba8\u4f1a\u4e0a\u8bb2\u8bfe\u7684\u4e2d\u666f\u3002"} +{"id": "0006828", "video_name": "33c6586d-b16c-5006-86b7-cfd78f8dbe10", "text": "\u4e00\u4e2a\u767d\u5154\u548c\u4e00\u4e2a\u9ec4\u5154\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "7002619", "video_name": "3d393981-cdae-556e-9256-31a764a7db43", "text": "\u963f\u53e4\u65af\u5728\u300a\u738b\u8005\u8363\u8000\u300b\u4e2d\u6124\u6012\u5730\u53d8\u6210\u4e0d\u6b7b\u4e4b\u8eab\uff0c\u7136\u540e\u4ed6\u53d8\u5f97\u975e\u5e38\u6b8b\u5fcd\u3002"} +{"id": "2005486", "video_name": "480c7a73-0111-5f02-b7be-452d9efe64dc", "text": "\u4eba\u4eec\u5728\u79d1\u5e7b\u8282\u4e0a\u8df3\u821e\uff0c\u5929\u7a7a\u4e2d\u6709\u9177\u70ab\u7684\u673a\u5668\u4eba\u548c\u4e00\u8258\u592a\u7a7a\u98de\u8239\u3002"} +{"id": "8003932", "video_name": "c70c972b-2b29-5135-a08e-a9227fe05480", "text": "\u6469\u6d1b\u54e5\u9a91\u58eb\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u6444\u5f71\uff0c3D Max\uff0c\u9ad8\u89d2\u5ea6\u900f\u89c6\uff0c\u5927\u753b\u5e45\u76f8\u673a\uff0c\u805a\u5149\u706f\u3002"} +{"id": "5001887", "video_name": "b291e868-c147-55d9-b469-64e2c8c88a9f", "text": "\u89c6\u9891\u5f00\u573a\uff0c\u6211\u4eec\u7684\u4e3b\u89d2\u7ad9\u5728\u6d69\u701a\u65e0\u57a0\u7684\u592a\u7a7a\u4e2d\uff0c\u9762\u5bf9\u4e00\u4e2a\u5de8\u5927\u3001\u4e0d\u7965\u7684\u9ed1\u6d1e\u3002\u6444\u50cf\u673a\u6355\u6349\u5230\u9ed1"} +{"id": "3003199", "video_name": "c39497cc-6b82-53a0-9d93-a8ce58b199e4", "text": "\u706b\u8f66\u7f13\u6162\u524d\u8fdb\uff0c\u8f66\u8f6e\u8f6c\u52a8\uff0c\u96ea\u82b1\u98d8\u843d\u3002"} +{"id": "0004188", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6cf3\u88c5\u7684\u52a8\u6f2b\u98ce\u683c\u975e\u5e38\u5438\u5f15\u4eba\u7684\u5973\u5b69\u3002"} +{"id": "0004971", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "\u57ce\u5e02\u82f1\u96c4\u5f0f\u955c\u5934\u5e7f\u89d2\u62cd\u6444\uff0c\u795e\u79d8\u7684\u8f6e\u5ed3\u4e0b\u6234\u7740\u515c\u5e3d\u7684\u5973\u6027\u751f\u7269\u4ece\u9634\u5f71\u4e2d\u8d70\u51fa\u6765\uff0c"} +{"id": "4003409", "video_name": "ab537e20-ea3b-5728-931d-bc373984b2a2", "text": "\u4e24\u4e2a\u5973\u5b69\u5750\u5728\u5c4b\u9876\u4e0a\u804a\u5929\uff0c\u51dd\u89c6\u7740\u57ce\u5e02\u3002"} +{"id": "8003331", "video_name": "740dd4bb-73d3-5b4a-b1ac-904606754043", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7ed9\u6211\u4e00\u4e2a\u6f02\u4eae\u7684\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "6002229", "video_name": "4ed24421-4441-59b2-aec4-973fb7b174fd", "text": "\u5c4b\u5185\u7684\u4eba\u5c06\u4e00\u5806\u6728\u6750\u5806\u653e\u5728\u623f\u95e8\u65c1\u3002"} +{"id": "0005976", "video_name": "244654d5-a832-51c6-a294-842770ba823c", "text": "\u5de5\u4f5c\u5ba4\u91cc\u7684\u4eba\u5728\u5236\u4f5c\u8bf4\u5531\u97f3\u4e50\u3002"} +{"id": "1006288", "video_name": "732b0704-4a9d-51db-b4c3-e70d4fb934be", "text": "\u5144\u5f1f\u59d0\u59b9\u4e92\u76f8\u8d60\u9001\u793c\u7269\u3002"} +{"id": "4004098", "video_name": "c8d52940-16ad-58b7-b92b-c459b6aaba3d", "text": "\u516c\u5143755\u5e74\uff0c\u4e2d\u56fd\u5510\u671d\u4e0e\u5b89\u7984\u5c71\u53d1\u751f\u51b2\u7a81\uff0c\u5b89\u7984\u5c71\u662f\u5f53\u65f6\u7684\u9886\u8896\u3002\u6211\u60f3\u8981\u60f3\u8c61\u8fd9\u573a\u6218\u6597\uff0c\u5176\u4e2d"} +{"id": "4002489", "video_name": "e7d9ef86-f844-518c-a93f-1b4d36d92c8a", "text": "\u5409\u535c\u529b\u98ce\u683c\u7684\u52a8\u753b\u7247\uff0c\u6559\u5b69\u5b50\u5237\u7259\u3002"} +{"id": "6003416", "video_name": "7c2dc1d8-470d-5cab-ba34-93f3ea57976a", "text": "\u7537\u5b69\u6765\u4e86\uff0c\u7a7f\u7740\u84dd\u8272\u886c\u886b\u3001\u84dd\u8272\u88e4\u5b50\u548c\u978b\u5b50\u3002"} +{"id": "6004740", "video_name": "88b740df-da82-52a0-8395-d553fa0a7776", "text": "\u5c0f\u7537\u5b69\u8428\u59c6\u7a7f\u7740\u84dd\u8272T\u6064\u548c\u77ed\u88e4\u7ad9\u5728\u94c1\u8def\u8f68\u9053\u9644\u8fd1\uff0c\u4e0e\u8001\u592a\u592a\u3001\u4e00\u4e2a\u4e2d\u5e74\u7537\u5b50\u548c"} +{"id": "4003311", "video_name": "dcd4a24f-efc0-58ac-a2b1-52154ca808eb", "text": "\u4e00\u6bb5\u89c6\u9891\u4e2d\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u5370\u5ea6\u8d2b\u56f0\u7537\u5b69Chaitanya\u548c\u4ed6\u7684\u5bb6\u4eba\uff08\u6bcd\u4eb2\u3001\u7236\u4eb2\u3001\u59d0\u59d0\uff09\u5750\u5728\u4ed6\u4eec\u7684"} +{"id": "7004182", "video_name": "d9702cd4-75b1-5523-9166-32967e6a8551", "text": "\u773c\u775b\u5b8c\u5168\u7741\u5f00\uff0c\u53cd\u5c04\u5730\u5e73\u7ebf\u4e0a\u5347\u8d77\u7684\u592a\u9633\u3002"} +{"id": "3004869", "video_name": "a3e9c84c-378b-511d-9698-06adc580d0b7", "text": "\u72ee\u5b50\u624b\u6301\u9a6c\u63d0\u5c3c\uff0c\u5750\u5728\u9cc4\u9c7c\u80cc\u4e0a\u5728\u4e1b\u6797\u6cb3\u4e2d\u3002"} +{"id": "1006702", "video_name": "7acdc41e-52df-55fc-b25c-753e09869ba7", "text": "\u661f\u7403\u5927\u6218\u7535\u5f71\u3002\u6c49\u00b7\u7d22\u6d1b\u5954\u8dd1\u5c04\u51fb\u3002\u5854\u56fe\u56e0\u9547\u3002"} +{"id": "1003749", "video_name": "45269191-2b7b-5ac9-af95-ef6836b7d597", "text": "\u4e00\u7247\u7f8e\u4e3d\u7684\u8349\u5730\uff0c\u7eff\u8349\u5982\u8335\uff0c\u8272\u5f69\u6591\u6593\u7684\u82b1\u6735\u70b9\u7f00\u5176\u4e2d\u3002\u52c7\u6562\u7684\u5c0f\u5154Rosie\u5728\u8349\u5730\u4e0a"} +{"id": "2003931", "video_name": "e684cd26-7555-55d0-8ec3-91af39cfbef0", "text": "\u63cf\u7ed8\u4e24\u4e2a\u7a7f\u7740\u548c\u670d\u7684\u5973\u5b69\u5728\u795e\u793e\u62bd\u53d6\u5fa1\u795e\u7c64\u3002\u901a\u8fc7\u63cf\u7ed8\u5979\u4eec\u7684\u9762\u90e8\u8868\u60c5\u548c\u795e\u793e\u62dc"} +{"id": "1005609", "video_name": "6722ab9a-c4a3-5412-81aa-8712e2550bdb", "text": "\u90ae\u9012\u5458\u7537\u5b69\u7a7f\u7740\u84dd\u8272\u5236\u670d\uff0c\u5e26\u7740\u90ae\u5dee\u5e3d\u5b50\u548c\u90ae\u5dee\u5305\uff0c\u5728\u96ea\u5730\u4e0a\u8d70\u7740\uff0c\u5468\u56f4\u6709\u8774"} +{"id": "1004700", "video_name": "575c038a-0a84-57be-b8e4-6f9ba4ac39ba", "text": "\u91ca\u8fe6\u725f\u5c3c\u4f5b\u4e0e\u4ed6\u7684\u5f1f\u5b50\u548c\u5c3c\u50e7\u6b65\u884c\u65c5\u884c\u3002 \u4fe1\u606f\uff1a\u4f5b (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003280", "video_name": "3c53fd98-4313-5c85-8b3e-d1bb18711842", "text": "\u4e0d\u8981\u4fee\u6539\u539f\u59cb\u56fe\u50cf\uff0c\u6d77\u6d0b\u5728\u79fb\u52a8\uff0c\u6d77\u9e25\u5728\u98de\u52a8\u3002"} +{"id": "3006657", "video_name": "3ca12265-2584-59e1-8a08-0cafcdb820a8", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u9762\u5177\u5f13\u7bad\u624b\u89d2\u8272\u6982\u5ff5\u827a\u672f\u4f5c\u54c1\uff0c\u6c1b\u56f4\u9ed1\u6697\u5386\u53f2\u611f\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u6ce8\u91cd\u7eb9\u7406"} +{"id": "3003697", "video_name": "ee4cab14-9ea6-5347-b613-1e8c5744cf59", "text": "\u5927\u59d0\u975e\u5e38\u5bb3\u6015\uff0c\u56e0\u4e3a\u5979\u4e0d\u77e5\u9053\u5982\u679c\u623f\u5b50\u88ab\u5356\u4e86\u5979\u4f1a\u53bb\u54ea\u91cc\u6216\u505a\u4ec0\u4e48\uff0c\u6240\u4ee5\u5979\u82e6\u82e6\u54c0"} +{"id": "3005568", "video_name": "96f952b2-1cfb-50bf-9370-7ac1d0ad7ca6", "text": "\u6e56\u4e2d\u7684\u84dd\u8272\u602a\u517d\u51fb\u843d\u4e86\u4e00\u67b6\u76f4\u5347\u673a\u3002"} +{"id": "3004873", "video_name": "81a803e9-7b67-52b5-a591-6e6299a2451c", "text": "\u5b69\u5b50\u4ef0\u5934\u770b\u7740\u91d1\u8272\u7684\u4e94\u5f69\u7eb8\u5c51\u98d8\u843d\u3002"} +{"id": "7003005", "video_name": "8f696766-678a-59c9-96b2-3cac76b3b0a4", "text": "\u8ba9\u88d9\u6446\u6f02\u8d77\u6765\uff0c\u82b1\u74e3\u98d8\u843d\u4e0b\u6765\u3002"} +{"id": "2007329", "video_name": "b54bfa6f-ec95-5214-bebd-88527f1ef54e", "text": "Haxan\u662fAlfred Stieglitz\u62cd\u6444\u7684\u9ed1\u767d\u7167\u7247\uff0c\u62cd\u6444\u4e8e1930\u5e74\u4ee3\u3002\n\nSource sentence: The Great Wall of China is over 13,000 miles long and was"} +{"id": "0006825", "video_name": "33b63cbb-9c5d-5905-ae87-a5032fd34937", "text": "\u7537\u6027\uff0c\u5370\u5ea6\u4eba\uff0c30\u5c81\uff0c\u76f8\u8c8c\u82f1\u4fca\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u73b0\u4ee3\u611f\u5341\u8db3\uff0c\u76f4\u89c6\u524d\u65b9\uff0c\u8863\u7740\u9c9c\u8273\u3002\u4ed6\u53cb\u5584"} +{"id": "7004750", "video_name": "9b314609-00ba-5b32-92ad-e15923500925", "text": "\u4ed6\u4eec\u4e0d\u77e5\u9053\u4ed6\u4eec\u7684\u53cb\u8c0a\u5373\u5c06\u53d7\u5230\u8003\u9a8c\u3002\u8d85\u771f\u5b9e\u7684\u7535\u5f71\u822c\u76844K\u3002"} +{"id": "1003638", "video_name": "430cb24c-1700-5147-97ff-b1dcf448fff9", "text": "\u79fb\u52a8\u7684\u5f71\u50cf\uff0c\u8036\u7a23\u57fa\u7763\u6b65\u5165\u79d1\u9686\u5927\u6559\u5802\u3002"} +{"id": "3003742", "video_name": "b54bebb0-f023-583a-90e9-ad3e07a7a581", "text": "\u60ca\u4eba\u7684\u4ff1\u4e50\u90e8\u6d3e\u5bf9\u6fc0\u5149\u79c0\uff0c\u53d7\u661f\u7403\u5927\u6218\u542f\u53d1\u3002"} +{"id": "6004291", "video_name": "1ba2102a-4245-5021-8f9a-340625af75f3", "text": "\u672a\u6765\u6765\u7684\u52a8\u7269\u5f88\u53ef\u6015\u3002"} +{"id": "7003325", "video_name": "1e45e96e-f928-513e-aa7b-070c2c5a7b81", "text": "\u4e00\u4e2a\u5973\u5b69\u4ee5\u52a8\u6f2b\u98ce\u683c\u9012\u7ed9\u4e00\u4f4d\u8001\u5987\u4eba\u4e00\u628a\u94a5\u5319\u3002"} +{"id": "7002889", "video_name": "bbc18446-43c7-5283-8aa0-a16db1cd09b6", "text": "\u4e00\u53ea\u6234\u5e3d\u5b50\u7684\u72d7\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u623f\u5b50\u7740\u706b\u4e86\u3002"} +{"id": "6004350", "video_name": "d73aba89-0a30-5516-aad1-21edce8948e5", "text": "\u4e00\u4e2a\u76f8\u7231\u7684\u60c5\u4fa3\u5728\u6469\u6258\u8f66\u4e0a\u4e92\u76f8\u642d\u4e58\u3002"} +{"id": "8002449", "video_name": "4e56b695-baff-528f-9e54-6c79e6e391d1", "text": "\u897f\u74dc\u98de\u5165\u5c4f\u5e55\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004580", "video_name": "ca54170e-3973-5eff-8d42-6042dea42863", "text": "\u4e00\u4e2a\u5927\u6c99\u5c18\u66b4\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u4e2d\uff0c\u4fe1\u606f\uff1a\u6570\u5b57\u5927\u8111\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004279", "video_name": "06418933-7c94-5e46-a2e7-ab0f22a2ed18", "text": "\u6559\u5802\u5916\u9762\u6302\u7740\u4e00\u9762\u5f69\u8679\u65d7\uff0c\u73af\u7ed5\u6574\u4e2a\u5efa\u7b51\u3002"} +{"id": "0005595", "video_name": "1da98552-3c76-56cf-be8c-f242e8f44628", "text": "\u4ece\u5929\u7a7a\u5f80\u4e0b\u770b\u91d1\u5b57\u5854\uff0c\u4f60\u4f1a\u770b\u5230\u4e00\u4e2a\u7559\u7740\u5c0f\u80e1\u5b50\u7684\u7537\u4eba\u7a7f\u7740\u4f18\u96c5\u7684\u897f\u88c5\u548c\u9ad8\u9876\u793c\u5e3d\uff0c\u8d2a"} +{"id": "1006692", "video_name": "7aa34865-f9a5-52d2-ae1c-091f2beb7195", "text": "\u706b\u7130\u8d85\u7ea7\u82f1\u96c4\u9a91\u7740\u706b\u7130\u6ed1\u9053\u7a7f\u8d8a\u65cb\u8f6c\u9f99\u5377\u98ce\uff0c\u79fb\u52a8\u3001\u95ea\u70c1\u3001\u706f\u5149\uff0c8k\u3001\u8d85"} +{"id": "2005273", "video_name": "43b24f9b-0468-5009-9114-d95522f47386", "text": "\u4e00\u4e2a\u62e5\u6709\u7fe9\u7fe9\u7eff\u53d1\u7684\u7cbe\u7075\u5973\u5b50\u7741\u5f00\u5979\u7684\u7ea2\u8272\u773c\u775b\uff0c\u5411\u524d\u770b\u7740\uff0c\u6f02\u6d6e\u7740\uff0c\u5e76\u6446\u51fa"} +{"id": "3006377", "video_name": "b750d68c-b816-59ac-8368-09490347063e", "text": "\u4ed6\u4eec\u4e92\u76f8\u5fae\u7b11\u7740\uff0c\u4e00\u79cd\u6e29\u6696\u548c\u8054\u7cfb\u7684\u611f\u89c9\u7b3c\u7f69\u7740\u4ed6\u4eec\u3002"} +{"id": "3004715", "video_name": "fd357b9c-2603-5338-935f-5476bcf93fbd", "text": "\u5728\u7231\u5c14\u5170\u7684\u4e00\u7247\u8774\u8776\u8349\u539f\u4e0a\uff0c\u4e00\u4e2a\u7537\u5b69\u5728\u5954\u8dd1\u3002 \n\nSource sentence: The restaurant serves a variety of delicious dishes from different countries. \n\n\u8fd9\u5bb6"} +{"id": "7002780", "video_name": "c9b6ed0a-38bf-5866-ae9d-11a8b8de0b8b", "text": "\u611f\u8c22\u60a8\u89c2\u770b\uff0c\u8bf7\u7ed9\u6211\u4eec\u7684\u9891\u9053\u70b9\u8d5e\u5e76\u8ba2\u9605\u4ee5\u83b7\u53d6\u66f4\u591a\u76843D\u52a8\u753b\u548c\u8fea\u58eb\u5c3c\u89c6\u9891\u3002"} +{"id": "7002216", "video_name": "fe9bdf75-6964-588a-8183-c7ac16ae9e55", "text": "\u725b\u5976\u88ab\u5fae\u751f\u7269\u53d8\u6210\u4e86\u51dd\u4e73\u3002"} +{"id": "0006266", "video_name": "29a8b538-04e6-54de-ab12-9a6b0be4fd68", "text": "\u53d8\u538b\u5668\u662f\u4e00\u79cd\u9759\u6001\u8bbe\u5907\uff0c\u5b83\u53ef\u4ee5\u5728\u4e0d\u6539\u53d8\u9891\u7387\u7684\u60c5\u51b5\u4e0b\u5c06\u7535\u529b\u4ece\u4e00\u4e2a\u7535\u8def\u4f20\u9012\u5230\u53e6\u4e00\u4e2a\u7535\u8def\u3002\u5b83\u7684\u5de5\u4f5c\u539f"} +{"id": "3004164", "video_name": "302520a5-49d8-5372-860b-d45e8a6ccb52", "text": "\u9aa8\u67b6\u7537\u5973\u76f8\u9047\u5e76\u76f8\u7231\u3002"} +{"id": "8001925", "video_name": "cf796703-64d1-5c15-836a-52de2cb20e68", "text": "\u653e\u5927\u4e00\u4e2a\u7279\u522b\u660e\u4eae\u7684\u661f\u661f\uff0c\u4f7f\u5176\u6210\u4e3a\u7126\u70b9\u3002"} +{"id": "7003084", "video_name": "94368115-eee0-5282-a7d1-ec4e04fdcb89", "text": "\u4fef\u89c6\u4e00\u9762\u5e26\u95e8\u7684\u5899\u58c1\uff0c\u95e8\u9694\u5f00\u4e24\u4e2a\u623f\u95f4\uff0c25\u5c81\u7684\u7537\u5b50\u4ece\u4e00\u4fa7\u900f\u8fc7\u95e8\u4e0a\u7684\u5b54\u6d1e\u770b\u51fa\u53bb\uff0c\u5e74\u8f7b"} +{"id": "6002851", "video_name": "3660ff20-146b-57c6-ac02-5583ca3105f4", "text": "\u4e3b\u89d2\u5728\u96e8\u4e2d\u6f2b\u6b65\uff0c\u8def\u706f\u6295\u4e0b\u4ed6\u4eec\u7684\u5f71\u5b50\uff0c\u53cd\u6620\u5185\u5728\u7684\u6e38\u8361\u548c\u56f0\u60d1\u3002"} +{"id": "7003532", "video_name": "4efb7b1f-2d66-5601-a502-68748a0f9094", "text": "\u5236\u4f5c\u4e00\u4e2a3D\u7684\u9676\u6ce5\u5a03\u5a03\uff0c\u8ba9\u5b83\u8bde\u751f\u5e76\u5f00\u59cb\u884c\u8d70\uff0c\u6700\u9ad8\u8d28\u91cf4K\u3002"} +{"id": "2004056", "video_name": "f8ad3437-62fc-5665-9fe7-e3b64b32cd18", "text": "\u4ece\u5929\u7a7a\u770b\u5230\u7684\u52a8\u6001\u5730\u7403\u89c6\u56fe"} +{"id": "2005717", "video_name": "5881b5ee-81a9-5199-8a9f-800dcecb6fcf", "text": "\u73b0\u5b9e\u7684\u4eba\u5f62\u6b66\u58eb\uff0c\u624b\u6301\u6b66\u58eb\u5200\uff0c\u5728\u96ea\u666f\u4e2d\u7a7f\u7740\u767d\u8272\u8863\u670d\u3002"} +{"id": "5001213", "video_name": "93ec2f78-a492-5a9f-98fd-190b8a18d13a", "text": "\u4e00\u4e2a\u7a7f\u7740\u4eba\u5b57\u62d6\u7684\u884c\u8d70\u7740\u7684\u85af\u6761\uff0c\u903c\u771f\u3001\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u3001\u9ad8\u5206\u8fa8\u7387\u3001\u6d41\u7545\u7684\u52a8\u753b\u3002"} +{"id": "0004413", "video_name": "0875152e-16ba-5939-b26f-7ed74379dde9", "text": "\u7a7f\u7740\u793c\u670d\u7684\u5e74\u8f7b\u7f8e\u5973"} +{"id": "0003282", "video_name": "3ad16a7a-b545-5732-9c31-3a2bcaa043b0", "text": "\u5728YouTube\u4e0a\u70b9\u8d5e\u3001\u5206\u4eab\u3001\u8ba2\u9605\u3001\u8bc4\u8bba\u3002"} +{"id": "2004290", "video_name": "6af41298-3e21-554f-a347-99112b164237", "text": "\u5728\u89c6\u9891\u4e2d\uff0c\u4e00\u540d\u52a8\u6f2b\u7537\u5b50\u5750\u5728\u8f66\u9876\u4e0a\u62ff\u7740\u67aa\uff0c\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "2003320", "video_name": "256a6091-25f5-593e-a340-558ef70477fe", "text": "\u5448\u73b0\u4e00\u7cfb\u5217\u573a\u666f\uff0c\u4f7f\u7528\u82b1\u6735\u9010\u6e10\u67af\u840e\u6216\u5728\u6240\u8ff0\u671f\u95f4\u4fdd\u6301\u65b0\u9c9c\u7684\u89c6\u89c9\u6765\u63cf\u7ed8\u65f6\u95f4\u7684\u6d41\u901d\u3002"} +{"id": "7004245", "video_name": "9ae3394b-3da4-59d7-93e8-ea1a302eec7b", "text": "\u9ad8\u6e29\u4e0b\uff0c\u7ea2\u8272\u7684\u6cb9\u72b6\u6db2\u4f53\u6d41\u52a8\u3002"} +{"id": "0005563", "video_name": "1cf6b570-b4d2-518e-9e46-b171751484ce", "text": "\u4e00\u53ea\u8001\u9f20\u5403\u7740\u5976\u916a\uff0c4k\u30018k\u3001\u8d85\u8be6\u7ec6\u3001\u5361\u901a\u3001\u52a8\u6f2b\u3001\u8fea\u58eb\u5c3c\u3002"} +{"id": "3004033", "video_name": "a1f6b8cf-5d10-5cce-883b-5dead0ff0e3a", "text": "\u521b\u5efa\u7a7a\u95f4\u7ad9\uff0c\u5236\u9020\u4f4e\u6e29\u8231\u3002"} +{"id": "4002666", "video_name": "9d9b1769-e656-5eac-a6a4-700e46168332", "text": "\u4e00\u4e2a\u9ad8\u5927\u7626\u524a\u3001\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u3001\u5934\u53d1\u51b0\u84dd\u8272\u7684\u7537\u4fa6\u63a2\uff0c\u5728\u672a\u6765\u79d1\u6280\u7a7a\u95f4\u7ad9\u4e0a\u7a7f\u68ad\u4e8e\u706f"} +{"id": "8001679", "video_name": "7a276506-1539-5407-a019-8759e66a2b29", "text": "\u953b\u70bc\u8ba1\u5212\u8bbe\u7f6e\u5728\u5927\u81ea\u7136\u4e4b\u4e2d\uff0c\u5c55\u73b0\u8eab\u4f53\u6d3b\u52a8\u7684\u7f8e\u4e3d\u3002"} +{"id": "1005001", "video_name": "5c706df2-3f58-51db-971c-aef2b6b457e6", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u673a\u68b0\u4eba\u7c7b\u5728\u57ce\u5e02\u4e2d\u884c\u8d70\u3002"} +{"id": "7002055", "video_name": "54c7b2ce-c8c1-5fae-acb5-d2ad3a81fb92", "text": "\u9ed1\u6697\u5996\u7cbe\u5e26\u9886\u730e\u4eba\u5411\u524d\u8d70\u3002"} +{"id": "4002487", "video_name": "8ecd3659-6b19-5269-8d8f-db3823039f17", "text": "\u5b87\u5b99\u98de\u8239\u7684\u95e8\u6253\u5f00\uff0c\u53d8\u7126\u955c\u5934\uff0c\u8fd0\u52a82\uff0c\u7279\u5199\u955c\u5934\uff0c\u8d85\u9ad8\u6e05\uff0c6k\u3002"} +{"id": "3004587", "video_name": "08d87d8a-7d17-59e4-830a-3521664a1f5f", "text": "\u5c71\u9876\u4e0a\u6709\u679c\u56ed\uff0c\u4e2d\u95f4\u505c\u7740\u4e00\u8f86\u8f66\u3002"} +{"id": "2003206", "video_name": "4f913972-a5e4-586c-a854-a77804214c32", "text": "\u4e00\u540d\u517d\u533b\u8d85\u58f0\u6ce2\u6280\u5e08\u57282045\u5e74\u7684\u4e00\u5bb6\u52a8\u7269\u56ed\u5bf9\u4e00\u53ea\u6000\u5b55\u957f\u9888\u9e7f\u8fdb\u884c\u8d85\u58f0\u6ce2\u68c0\u67e5\u3002"} +{"id": "8002512", "video_name": "51863a5a-768d-518a-acf4-e6e08b1281ed", "text": "Source sentence: \u9472\u5d4c\u947d\u77f3\u7684\u9cf3\u51f0\u5728\u5c71\u4e0a\u98db\u7fd4\uff0c\u7167\u8000\u8457\u967d\u5149\u4e0b\u9583\u9583\u767c\u5149\u3002"} +{"id": "0006214", "video_name": "287dae1f-c004-54dd-b6bf-d50cf8d3a11d", "text": "\u4e00\u4e2a\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u4e09\u7ef4\u52a8\u753b\u4e2d\uff0c\u6709\u8bb8\u591a\u7f8e\u98df\u8f66\u548c\u8282\u65e5\u7684\u4eba\u7fa4\uff0c\u80cc\u666f\u662f\u57ce\u5e02\u3002"} +{"id": "6003689", "video_name": "02fee463-756e-5528-8592-3d9089a4f404", "text": "\u96e8\u6ef4\u843d\u4e0b\uff0c\u5411\u65e5\u8475\u5728\u5fae\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "8003232", "video_name": "bcf3a357-9044-573c-aad8-32b7d6997022", "text": "\u521b\u4f5c\u4e00\u5e45\u63d2\u753b\uff0c\u753b\u4e0a\u6708\u4eae\u548c\u72ee\u5b50\u5ea7\u88ab\u751f\u673a\u52c3\u52c3\u7684\u8349\u5730\u6240\u5305\u56f4\uff0c\u548c\u4ed6\u4eec\u7684\u9b54\u6cd5\u4f19"} +{"id": "7003957", "video_name": "8c51099a-7c96-5509-9c69-61f429dd4c47", "text": "\u53ef\u7231\u7684\u5370\u5ea6\u5973\u5b69\u8df3\u821e\uff0c\u5b8c\u5168\u900f\u660e\u7684\u8eab\u4f53\uff0c\u7535\u5f71 looo\uff0c\u5370\u5ea6\u5973\u4eba\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u6f14\u5458\u8df3\u821e\uff0c"} +{"id": "0003621", "video_name": "40acce6b-ebda-5d87-8688-ecec5d41de28", "text": "\u65e5\u672c\u6b66\u58eb\u4e0e\u673a\u5668\u4eba\u5728\u6218\u6597\u3002 \n\nSource sentence: I am studying Chinese language and culture. \n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "3006012", "video_name": "5e555e90-cfd8-552f-8fec-2afcfa731f81", "text": "3D\u52a8\u753b\u5e74\u8f7b\u5973\u5b50\uff0c\u84dd\u8272\u773c\u775b\uff0c\u5728\u8def\u4e0a\u8d70\u3002"} +{"id": "2004659", "video_name": "3e7bd97d-153f-5d05-9a74-2470c6977da6", "text": "\u4e00\u4e2a\u6d1e\u7a74\u91cc\u5145\u6ee1\u4e86\u9762\u5b54\u88ab\u84dd\u5149\u7167\u4eae\u7684\u751f\u7269\u3002"} +{"id": "7004595", "video_name": "722aaa01-64e9-5bad-8c25-5c60bb1a81d0", "text": "\u5728\u68ee\u6797\u4e2d\u4f7f\u7528\u7f57\u76d8\u65f6\uff0c\u7f57\u76d8\u7684\u6307\u9488\u4f1a\u51fa\u73b0\u4e0d\u89c4\u5219\u65cb\u8f6c\u7684\u955c\u5934\u3002 \n\nSource sentence: The restaurant is closed on Mondays. \n\n\u8fd9\u5bb6"} +{"id": "3005685", "video_name": "19e8bb85-90c7-540c-8c18-87743d02d441", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u62ff\u7740\u4e00\u676f\u725b\u5976\u3002"} +{"id": "1005785", "video_name": "6a7de0f7-a3ec-5983-9538-1c701bbd8c7b", "text": "\u86c7\u5403\u6c34\u679c\uff0c3D\u52a8\u753b\uff0c\u52a8\u753b\u98ce\u683c\uff0c21\uff1a9\u3002"} +{"id": "3003433", "video_name": "de0f7180-3f66-5a49-9c35-7cb0dcad48f7", "text": "\u4f0a\u83ab\u91d1\u00b7\u666e\u8328\u6234\u4e0a\u4e86\u592a\u7a7a\u5934\u76d4\u3002"} +{"id": "7002741", "video_name": "7d74078f-4951-5a28-a449-b2dc8a8a536c", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u7011\u5e03\u843d\u5728\u6df1\u84dd\u8272\u7684\u6cfb\u6e56\u4e2d\uff0c\u5fc5\u987b\u662f\u903c\u771f\u7684\u7167\u7247\u6548\u679c\uff0c\u6301\u7eed\u81f3\u5c1115\u79d2\u949f\u3002"} +{"id": "2003458", "video_name": "0e336b9d-bd6a-50d9-a9a7-6a27131e3eeb", "text": "\u4e00\u4e2a\u5149\u7ebf\u660f\u6697\u7684\u76d1\u63a7\u5927\u5385\uff0c\u6709\u8bb8\u591a\u5c4f\u5e55\u663e\u793a\u7740\u4e0d\u65ad\u53d8\u5316\u7684\u76d1\u63a7\u56fe\u50cf\u3002"} +{"id": "6002384", "video_name": "290cdd5a-662d-59da-b47a-ba9830c4a078", "text": "\u7b2c\u4e00\u4eba\u79f0\u900f\u8fc7\u5fae\u5f31\u7684\u706f\u5149\uff0c\u8d70\u8fdb\u4e00\u4e2a\u7a7a\u65e0\u4e00\u4eba\u7684\u5c01\u95ed\u8d85\u5e02\u3002"} +{"id": "8002397", "video_name": "82985496-fde9-58d2-8ffb-77ac202ee96c", "text": "Translation: \u72c2\u70ed\u7684\u6728\u5076\u89e3\u5256\u4e0e\u84b8\u6c7d\u670b\u514b\u533b\u5b66\u5b9e\u9a8c\uff0c\u7d27\u5f20\u7684\u52a8\u4f5c\u548c\u795e\u79d8\u4e3b\u9898\u3002"} +{"id": "4003998", "video_name": "38377861-5ba8-5980-98c9-f955dec69be2", "text": "\u52a8\u6f2b\u5973\u5b69\u5750\u5728\u6d77\u6ee9\u4e0a\u7684\u9999\u8549\u4e0a\u3002"} +{"id": "1004147", "video_name": "4cce8063-6791-5738-aa15-006d281abe9c", "text": "\u4e00\u6bb5\u8bb2\u6388AI\u548c\u533b\u7597\u4fdd\u5065\u7684Zoom\u4f1a\u8bae\u89c6\u9891"} +{"id": "2004943", "video_name": "3a7c1643-01e5-5f35-8c79-40285e4e55f5", "text": "Translation: \u521b\u9020\u4e00\u4e2a\u7531\u6570\u767e\u4e07\u5929\u4f7f\u548c\u6076\u9b54\u7ec4\u6210\u7684\u89d2\u8272\uff0c\u7a7f\u7740\u8fde\u5e3d\u886b\uff0c\u9762\u90e8\u7531\u706f\u5149\u548c\u9634\u5f71\u6784\u6210\uff0c\u624b"} +{"id": "8003662", "video_name": "494e31d4-7917-5952-abba-decd9e0e4477", "text": "\u517d\u4eba\u770b\u7740\u9a91\u58eb\uff0c\u9a91\u58eb\u7528\u5251\u780d\u5411\u517d\u4eba\u3002"} +{"id": "2006415", "video_name": "51e29942-6fca-54cb-a656-2555d4feb8cf", "text": "\u8718\u86db\u4fa0\u5e94\u8be5\u52a8\u8d77\u6765\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003742", "video_name": "451493d4-18bd-534c-bece-27f6f5a0da9c", "text": "\u6bcf\u4e2a\u6c14\u5019\u533a\u57df\u90fd\u6709\u4e0d\u540c\u7684\u5b63\u8282\uff0c\u4e00\u4e9b\u56fd\u5bb6\u4e5f\u4f4d\u4e8e\u8fd9\u4e9b\u6c14\u5019\u533a\u57df\u3002"} +{"id": "0003333", "video_name": "3bcbc49c-ecc7-545a-a70c-5f867acc8fe4", "text": "\u5c06\u5ba2\u5385\u60f3\u8c61\u6210\u4e00\u4e2a\u6df7\u4e71\u7684\u573a\u666f\uff0c\u6709\u98de\u884c\u7269\u54c1\uff0c\u8fd8\u6709\u7a7f\u7740\u5e3d\u5b50\u7684\u732b\u6307\u6325\u7740\u8fd9\u573a\u6709\u8da3\u7684"} +{"id": "6002894", "video_name": "9dc1d46b-3ff9-5e54-8ebb-0eae961e3332", "text": "\u53f2\u8bd7\u7ea7\u7684\u6218\u6597\uff1a\u90aa\u6076\u4e0e\u795e\u3002"} +{"id": "8001223", "video_name": "48d8bf1a-0f2d-5115-a08a-3e7751aaf12c", "text": "\u52a8\u753b\u3001\u546a\u8853\u56de\u6226\u3001\u30b5\u30e0\u30e9\u30a4\u30c1\u30e3\u30f3\u30d7\u30eb\u30fc\u3001\u30ab\u30a6\u30dc\u30fc\u30a4\u30d3\u30d0\u30c3\u30d7\u3001\u30d8\u30c3\u30c9\u30d5\u30a9\u30f3\u3092\u3064\u3051\u305f\u30d2\u30c3\u30d7\u30db"} +{"id": "1003745", "video_name": "451a6fe5-a307-53e6-a0f2-0800fb7234b7", "text": "\u73b0\u5b9e\u822c\u7684\u5916\u89c2\uff0c\u4ee4\u4eba\u4e0d\u5b89\u7684\u5de8\u5927\u5730\u4e0b\u6d1e\u7a74\uff0c\u914d\u6709\u7070\u5c18\u98de\u626c\u7684\u6bdb\u8338\u8338\u68d5\u8272\u5730\u6bef\u548c"} +{"id": "7004736", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "\u5728\u65e5\u590d\u4e00\u65e5\u7684\u751f\u6d3b\u4e2d\uff0c\u5979\u7684\u5185\u5fc3\u6e34\u671b\u7740\u66f4\u591a\u7684\u4e1c\u897f\u3002"} +{"id": "8001960", "video_name": "cf341a00-8fa0-55c0-8978-4deb47f83bb9", "text": "\u4e00\u4e2a\u5973\u5b69\u505a\u5065\u8eab\u953b\u70bc\u7684\u89c6\u9891\u3002"} +{"id": "6002689", "video_name": "1e394800-4bdb-576d-b237-365acb8af22b", "text": "\u4e00\u4e2a\u6f02\u4eae\u768420\u5c81\u4eba\u7c7b\u5973\u5b69\u5934\u90e8\u7684\u7167\u7247\u822c\u903c\u771f\u7684\u56fe\u50cf\u4e0e\u770b\u8d77\u6765\u50cf\u673a\u5668\u4eba\u7684\u4eba\u5de5\u667a\u80fd\u6df7\u5408\u5728\u4e00\u8d77\u3002"} +{"id": "6003006", "video_name": "25d30ee2-f533-522d-89c5-337943dd515b", "text": "\u94f6\u6cb3\u4e2d\u592e\u7684\u7f8e\u4e3d\u6811\u6728\uff0c\u80cc\u666f\u661f\u5149\u71a0\u71a0\uff0c\u9ad8\u7ec6\u8282\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "6002733", "video_name": "c5230c34-8bba-56c2-991a-a9db2f70b29e", "text": "\u5b87\u822a\u5458\u670d\u7684\u5934\u76d4\u662f\u7531\u6be1\u7ec7\u7269\u3001\u7eb1\u7ebf\u548c\u7eb8\u677f\u5236\u6210\u7684\u3002"} +{"id": "1006584", "video_name": "78a08778-a7f2-5681-af12-d92233a56259", "text": "\u5728\u6e56\u8fb9\uff0c\u6709\u4e00\u53ea\u9a74\u548c\u5176\u4ed6\u68ee\u6797\u52a8\u7269\uff0c\u559d\u7740\u6c34\u76843D\u52a8\u753b\u3002"} +{"id": "2006675", "video_name": "1b46d5d2-a56e-5de6-90ed-02c923f17e71", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u738b\u5b50\u6b63\u5728\u5bfb\u627e\u9f99\u86cb\u3002"} +{"id": "1004621", "video_name": "55eed0b9-9abb-51ba-be16-1cc28f52feb3", "text": "\u8ff7\u5bab\u56fe\u50cf\u6709\u4e00\u4e2a\u5165\u53e3\u548c\u56db\u4e2a\u53ef\u80fd\u7684\u51fa\u53e3\u3002\u53ea\u6709\u4e00\u6761\u8def\u901a\u5411\u5176\u4e2d\u4e00\u4e2a\u51fa\u53e3\u3002\u5176\u4ed6\u4e09\u4e2a\u51fa\u53e3\u5728\u8def\u5f84\u7684\u67d0\u4e2a\u5730\u65b9\u88ab\u5c01\u95ed\u3002\u4ece"} +{"id": "2005209", "video_name": "5540f85a-556d-5819-a436-ca82f93c720e", "text": "\u4e00\u540d\u7537\u5b50\u6b63\u5728\u5bf9\u7740\u623f\u5b50\u4e0a\u65b9\u7684\u76d1\u63a7\u6444\u50cf\u5934\u8bf4\u8bdd\uff0c\u4ed6\u5728\u665a\u4e0a\u975e\u5e38\u5bb3\u6015\uff0c\u8eab\u540e\u6709\u4e00\u53ea\u975e\u5e38\u771f\u5b9e\u3001\u53ef\u6015\u7684"} +{"id": "1003507", "video_name": "40d57a43-1550-5d90-9bed-921d4deaf183", "text": "\u4e30\u753086\u5728\u508d\u665a\u7a7a\u65f7\u7684\u9053\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "8003368", "video_name": "eb1df4a4-42ac-5a98-9aad-30154477ede1", "text": "\u68ee\u6797\u91cc\u4f4f\u7740\u4e00\u53ea\u540d\u53eb\u62c9\u8d3e\u7684\u72ee\u5b50\uff0c\u5b83\u975e\u5e38\u5e9e\u5927\u800c\u4e14\u5f3a\u5927\u3002"} +{"id": "7004317", "video_name": "7afc6859-03da-51e6-a935-02cae91abca4", "text": "\u4e00\u4e2a\u7537\u4eba\u6f02\u6d6e\u5728\u5404\u79cd\u5b87\u5b99\u4e2d\u3002"} +{"id": "6004442", "video_name": "cb7bd4e1-a697-57fe-b7a0-b2d6641ab721", "text": "\u5728\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u4e0b\u7684\u8fea\u58eb\u5c3c\u516c\u4e3b\u3002"} +{"id": "8003249", "video_name": "f8f73443-9e7e-5fbb-a13d-680bdf18fd73", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u7537\u5b50\u5c48\u808c\u547b\u541f\uff0c\u70db\u53f0\u95ea\u70c1\u3002"} +{"id": "8002775", "video_name": "9f963635-c9a0-56c8-ae97-b68e690bb0ef", "text": "\u4e00\u4e2a\u82cd\u767d\u7684\u5e7d\u7075\uff0c\u4ece\u5173\u95ed\u7684\u95e8\u4e2d\u51fa\u73b0\uff0c\u975e\u5e38\u9ad8\uff0c\u773c\u775b\u53d1\u5149\uff0c\u5f13\u7740\u80cc\uff0c\u9ed1\u6697\u7684\u8d70\u5eca\u3002"} +{"id": "7002936", "video_name": "f360e7a9-54d7-5695-9784-4b04b795fb8b", "text": "1\u0441\u4ea7\u751f\u76f8\u540c\u7684\u679c\u5b9e\uff0c\u52a8\u6f2b"} +{"id": "2004521", "video_name": "39283e74-b13e-5119-892c-e9dc865238fa", "text": "\u8d5b\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u5728\u753b\u5e03\u4e0a\u6cfc\u6d12\u6cb9\u6f06\u3002"} +{"id": "0004240", "video_name": "05a1f9fb-f34d-53c3-8a7c-c0e47e51cd60", "text": "\u8fdc\u7a0b\u529e\u516c\u7684VR\u754c\u9762\uff1a\u521b\u5efa\u4e00\u4e2a\u4f69\u6234VR\u773c\u955c\u7684\u4eba\u5728\u5bb6\u5ead\u529e\u516c\u5ba4\u91cc\u7684\u5f62\u8c61\uff0c\u5b8c\u5168\u6c89\u6d78\u5728\u5168\u606f\u5de5\u4f5c\u533a"} +{"id": "4002978", "video_name": "18e99e60-397a-565d-9e2d-1dfdb8190176", "text": "\u5728\u7eff\u5e55\u4e0a\u6709\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u732b\uff0c\u6b63\u5728\u79fb\u52a8\u3002"} +{"id": "1006908", "video_name": "7e581277-6cc5-5754-aad4-80e0c91d8ea8", "text": "\u6bcf\u4e2a\u5bb6\u5ead\u6210\u5458\u90fd\u5f88\u9ad8\u5174\u5730\u770b\u5230\u4e86\u62e5\u6709\u7f8e\u4e3d\u7fc5\u8180\u3001\u5b8c\u7f8e\u5929\u7a7a\u548c\u5149\u8292\u7684\u65b0\u751f\u4ed9\u5973\u3002"} +{"id": "8003351", "video_name": "3058ffc4-7804-5dbc-9801-09f290f59a1c", "text": "\u82f1\u6587\u53e5\u5b50\uff1aEpic showcase of an heroic android short before he rush into the battle.\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1\u52c7\u7684\u673a\u5668\u4eba\u5728\u51b2\u5411\u6218\u573a\u524d\u8fdb\u884c\u4e86\u53f2\u8bd7"} +{"id": "2003444", "video_name": "fcbf439b-0de8-55ab-954a-69f1f9757c4b", "text": "\u827a\u672f\u98ce\u683c\u7684\u5e73\u9762\u8bbe\u8ba1\u6d77\u62a5\uff0c\u673a\u68b0\u8fd0\u52a8\u3002 \n\nSource sentence: The concert was amazing, the singer had a great voice and the music was fantastic. \n\n\u8fd9\u573a\u97f3\u4e50\u4f1a"} +{"id": "2004033", "video_name": "f2a2e14a-1d2f-5383-be70-f3fca243458c", "text": "\u7267\u7f8a\u4eba\u6307\u7740\u8c22\u8d6b\u5e0c\u5229\u8ba9\u4ed6\u628a\u5c71\u7f8a\u5e26\u5230\u4e1b\u6797\u91cc\u3002"} +{"id": "2005411", "video_name": "b3cea14f-7e6d-5865-9caa-c6ff75c069c1", "text": "\u4e00\u6bb5\u7535\u5f71\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u679a\u5bfc\u5f39\u671d\u7740\u6218\u6597\u673a\u98de\u884c\u7684\u573a\u666f\u3002"} +{"id": "1006670", "video_name": "7a2212e8-1dc2-5531-ba60-cf95aa65b817", "text": "\u8349\u539f\u5230\u6cb3\u6d41\u518d\u5230\u82b1\u6797\u7684\u98ce\u666f\u987a\u5e8f\u79fb\u52a8\u3002"} +{"id": "4002218", "video_name": "ca89b819-9a10-5861-9889-6c91d5b3f410", "text": "\u4e00\u4e2a\u4eba\u624b\u6301\u6b66\u58eb\u5200\u7684\u7535\u5f71\u89c6\u89d2\u3002"} +{"id": "6002846", "video_name": "f46084f8-cdfe-5976-93b7-e88fa1947c81", "text": "\u5efa\u7acb\u4ed6\u4eec\u5bf9Elysium\u8bbe\u65bd\u7684\u53d1\u73b0"} +{"id": "3006959", "video_name": "053d0b64-a799-558d-a42d-92ce5e5c3440", "text": "\u90a3\u662f\u4e00\u4e2a\u9ed1\u6697\u7684\u591c\u665a\uff0c\u623f\u95f4\u91cc\u6709\u4e00\u5f20\u684c\u5b50\uff0c\u684c\u5b50\u4e0a\u6446\u7740\u4e00\u672c\u6253\u5f00\u7684\u7b14\u8bb0\u672c\u3002"} +{"id": "3005052", "video_name": "63248dc1-18ac-5c55-aee4-e75df692e23c", "text": "1932\u5e74\u7684\u5df4\u9ece\uff0c\u5361\u5730\u4e9e\u00b7\u5e03\u96f7\u677e\u98a8\u683c\u3002"} +{"id": "3005123", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "\u4e24\u4e2a\u670b\u53cb\u7684\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\uff0c\u4ed6\u4eec\u5f7c\u6b64\u6325\u624b\u3002"} +{"id": "2004928", "video_name": "7af92b95-fa3a-5131-a466-b4782ae99f7c", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u533b\u7597\u8d28\u5b50\u7597\u6cd5\u7c92\u5b50\u52a0\u901f\u5668\u623f\u95f4\uff0c\u4ee5\u76ae\u514b\u65af3D\u52a8\u753b\u98ce\u683c\u63cf\u7ed8\u3002"} +{"id": "7004309", "video_name": "3bc43552-60f1-59d9-802d-903a87d366b0", "text": "Source sentence: \u8fc7\u8282\u771f\u662f\u6709\u8da3\uff0c\u4eba\u4eec\u5531\u6b4c\uff0c\u5929\u4f7f\u5728\u98de\u821e\u3002\n\nTranslated sentence: \u8fc7\u8282\u771f\u662f\u6709\u8da3\uff0c\u4eba\u4eec\u5531\u6b4c\uff0c\u5929\u4f7f\u5728"} +{"id": "8002487", "video_name": "39f70800-8aa6-583c-9db1-e79325202f2d", "text": "\u739b\u4e3d\u83b2\u00b7\u68a6\u9732\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\u6bd4\u4f8b\u3002\n\nSource sentence: I love to travel to new places and experience different cultures. \n\u6211"} +{"id": "7003771", "video_name": "f9bd1c72-cc0a-52aa-aa03-bd58616979ed", "text": "\u955c\u5b50\u91cc\u6234\u7740\u9ed1\u8272\u516c\u7f8a\u89d2\u7684Fairuza Balk"} +{"id": "1003660", "video_name": "4365930a-fa8e-53a5-99d4-8d346fe753ad", "text": "\u6f02\u4eae\u7684\u5973\u4eba\u5728\u516c\u56ed\u91cc\u8dd1\u6b65\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "1003619", "video_name": "42b5dec9-8a3f-5aa1-933c-d860948bccb6", "text": "\u4eca\u5929\u6765\u89c1\u89c1\u6211\uff0c\u82ad\u8389\uff0c\u82b1\u56ed\u91cc\u6700\u53cb\u597d\u7684\u9999\u8549\u3002\u6211\u6709\u4ee4\u4eba\u5174\u594b\u7684\u4e8b\u8981\u5206\u4eab\uff01"} +{"id": "7002708", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "\u4e00\u53ea\u91d1\u8272\u7684\u72ee\u5b50\u738b\u4fef\u77b0\u7740\u5404\u4e2a\u5206\u90e8\u3002"} +{"id": "2007793", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "\u624b\u63d0\u9ad8\u7ea7\u65f6\u5c1a\u5305\u91cc\u5192\u51fa\u4e86\u82b1\u6735\uff0c\u767d\u8272\u80cc\u666f\uff0c\u706f\u5149\u6444\u5f71\u3002"} +{"id": "2005562", "video_name": "b882facf-a8a2-568c-89c7-58ba6b1ec12e", "text": "\u4e00\u53ea\u624b\u6b63\u4ece\u8fea\u65af\u79d1\u821e\u5385\u7684\u8fea\u65af\u79d1\u7403\u7897\u91cc\u53d6\u51fa\u4e00\u4e9b\u7206\u7c73\u82b1\u3002"} +{"id": "2003078", "video_name": "cea98b74-f3e1-5e38-b92e-69991ce6eeca", "text": "\u7528\u5409\u4ed6\u96f6\u4ef6\u5236\u6210\u7684\u673a\u5668\u4eba\u7a7f\u8d8a\u300a\u865a\u7a7a\u4e4b\u9748\u300b\u7535\u5f71\u573a\u666f\u3002"} +{"id": "5001640", "video_name": "9bf0c6ae-ace8-5c49-94b1-e90738bffada", "text": "\u84dd\u9cb8\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u3002"} +{"id": "3003489", "video_name": "258213cc-660a-51ff-b488-9f020b45de4c", "text": "\u4e00\u53ea\u6d77\u736d\u4ef0\u8eba\u5728\u6c34\u9762\u4e0a\uff0c\u6572\u5f00\u8d1d\u58f3\u30024k\u9ad8\u6e05\u54c1\u8d28\u3002"} +{"id": "2007460", "video_name": "9eb3d421-4ae2-575c-b41e-e26ce7d40d8b", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u508d\u665a\u6c99\u6ee9\u4e0a\u5954\u8dd1\u3002"} +{"id": "6004537", "video_name": "3ae02cda-a62e-5a24-9b3f-7a8d63204830", "text": "\u4ea7\u751f\u56fe\u7247 \u4fe1\u606f\uff1a\u5b97\u6559\u4fe1\u4ef0 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002165", "video_name": "7ab01730-9a6a-5412-a850-d1d09302a14a", "text": "\u4e00\u4e2a\u65b0\u751f\u7684\u96cf\u9ebb\u96c0\u6765\u5230\u4e86\u8fd9\u4e2a\u4e16\u754c\u3002"} +{"id": "3003887", "video_name": "913f63ed-949e-59f3-94d5-521dbed2b75b", "text": "\u5916\u661f\u7403\u4e0a\u7684\u6838\u7206\u70b8\u3002\u903c\u771f\u7684\u3002\u7535\u5f71\u822c\u7684\u3002"} +{"id": "8001199", "video_name": "20febced-4ec0-5796-8429-4a29ea429642", "text": "\u62bd\u8c61\u7684\u57ce\u5e02\u548c\u7f8e\u4e3d\u7684\u5973\u4eba\u8131\u8863\u670d"} +{"id": "8003286", "video_name": "ec1755cf-bb58-5a9c-9373-b3de883903c4", "text": "Source sentence: Burj Khalifa\u9876\u90e8\u7684\u89c6\u89d2\n\nTranslated sentence: Burj Khalifa\u9876\u90e8\u7684\u89c2\u70b9"} +{"id": "3004832", "video_name": "e74c289c-3771-531a-84b1-40df54f65907", "text": "\u5b89\u4e1c\u00b7\u62c9\u7ef4\u98ce\u683c\u7684\u5438\u8840\u9b3c\uff0c\u665a\u5b89\u3002"} +{"id": "3005393", "video_name": "e6d1b716-1db4-5ac8-a0a9-3cebacefd18c", "text": "\u7334\u5b50\u7684\u96c4\u4f1f\u7fc5\u8180\u548c\u667a\u6167\u8001\u8c61\u7f13\u6162\u5730\u62cd\u52a8\u7740\uff0c\u4e0e\u9e1f\u7c7b\u4ea4\u6d41\u7740\u3002"} +{"id": "3006666", "video_name": "0cf21965-e3a3-59cc-9875-279eb5196e35", "text": "\u57284K\u8d28\u91cf\u4e0b\uff0c\u753b\u9762\u7ec6\u8282\u6781\u81f4\u5c55\u73b0\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u592a\u7a7a\u8239\u7684\u4e00\u4e2a\u5706\u5f62\u7a97\u6237\u65c1"} +{"id": "4002019", "video_name": "7804c577-0ba5-5c87-b5fe-3932eddcfa72", "text": "\u300a\u8840\u6e90\u300b\u6e38\u620f\u6539\u7f16\u6210\u6f2b\u753b\u4e66\u3002"} +{"id": "4003910", "video_name": "9f9cde13-63db-581a-a0db-829d4a92bc9c", "text": "\u5728\u829d\u58eb\u86cb\u7cd5\u5de5\u5382\u9910\u5385\uff0c\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\u3002"} +{"id": "2003858", "video_name": "1c906434-3dd8-503e-b642-10da40038f52", "text": "\u4e61\u6751\u7530\u56ed\u98ce\u683c\u7684\u827e\u4e3d\u897f\u5b89\u83f2\u5c14\u5fb7\u5ba4\u5185\u8bbe\u8ba1\uff0c\u4ece\u4fa7\u9762\u80a9\u90e8\u89c6\u89d2\u5c55\u73b0\u3002"} +{"id": "0005243", "video_name": "17262d50-d55a-5dc6-85a8-ed3a2b91bcf6", "text": "\u5b87\u5b99\u4e2d\u6f02\u6d6e\u7740\u4e0d\u540c\u989c\u8272\u7684\u6052\u661f\uff0c\u5168\u9ad8\u6e05\u30014K\u90fd\u65e0\u6240\u4e0d\u5728\uff0c\u9668\u77f3\u4e5f\u5728\u7ecf\u8fc7\u3002"} +{"id": "0006860", "video_name": "345b57f6-161b-5bbd-bac0-b6f35f62cfee", "text": "\u5de8\u5927\u7684\u7194\u5ca9\u602a\u7269\u53d7\u706b\u5c71\u80fd\u91cf\u589e\u5f3a\uff0c\u55b7\u5c04\u706b\u7130\u548c\u5ca9\u6d46\uff0c\u6467\u6bc1\u4e86\u57ce\u5e02\uff0c\u5de8\u578b\u602a\u517d"} +{"id": "2007230", "video_name": "efe29624-43b7-51fd-b036-4f301f720cc8", "text": "\u57ce\u5e02\u6d77\u5cb8\u7ebf\u5728\u591c\u665a\u53d8\u6210\u661f\u7a7a\u548c\u6096\u8bba\u7684\u5929\u7a7a\u7ebf - Berna RG\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005481", "video_name": "d79be8e5-f2b4-538f-9973-42a35e56a640", "text": "\u5370\u5ea6\u6751\u5e84\u7684\u623f\u5c4b\u5728\u4e00\u4e2a\u732e\u796d\u8282\u65e5\u91cc\u88c5\u9970\u7740\u9c9c\u82b1\u3002"} +{"id": "8003488", "video_name": "b4e60888-4af1-536d-8f06-e6ddd30e8776", "text": "\u5728\u57ce\u5e02\u91cc\u521b\u9020\u4e00\u4e2a\u9f99\u4e0e\u54e5\u65af\u62c9\u7684\u6218\u6597\u89c6\u9891\u3002"} +{"id": "8001937", "video_name": "2f1df4ae-7a31-5406-bfd9-63b13d0bd48e", "text": "\u4e00\u4e2a\u5973\u8bf4\u5531\u6b4c\u624b\u5728\u5f55\u97f3\u68da\u91cc\u8bf4\u5531\uff0c\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u53ea\u6709\u4e00\u4e2a\u5149\u6e90\u3002"} +{"id": "6004331", "video_name": "c556ef9e-f4ee-58b5-a7bf-a965d3701f16", "text": "\u4ee5\u67e5\u5c14\u65af\u00b7\u4f2f\u6069\u65af\u98ce\u683c\u4e3a\u57fa\u7840\u521b\u4f5c\u7684\u4f0a\u5409\u00b7\u6ce2\u666e1990\u5e74\u4ee3\u6f2b\u753b\u4e13\u8f91\u3002"} +{"id": "3003848", "video_name": "794377d2-e768-51a8-88df-c9387db2e9e6", "text": "\u5c71\u9876\u7684\u4eba\uff0c\u4e91\u6735\u79fb\u52a8\u3002"} +{"id": "4004164", "video_name": "b2d36589-d978-5b60-9e73-58eec32bd03e", "text": "\u5f88\u591a\u7ae0\u9c7c\u5728\u4e0e\u8b66\u5bdf\u66b4\u52a8\u548c\u6218\u6597\uff0c\u6162\u52a8\u4f5c\uff0c\u9ed1\u767d\u9ad8\u5bf9\u6bd4\u3002"} +{"id": "7004331", "video_name": "e25bd9ef-a615-53df-8c08-4fbb58d9cceb", "text": "\u5168\u7403\u707e\u96be\u540e\u7684\u672b\u65e5\u4e16\u754c\uff0c\u4f46\u4ecd\u6709\u5e0c\u671b\u7684\u66d9\u5149\uff0c\u4e00\u4e2a\u7a7f\u7740\u7834\u6d1e\u725b\u4ed4\u88e4\u548c\u886c\u886b"} +{"id": "3005963", "video_name": "d065dc29-6338-5b97-9248-7adbe3d551a3", "text": "\u8fea\u65af\u79d1\u7403\u5728\u4e1b\u6797\u4e2d\u6eda\u52a8\uff0c\u52a8\u7269\u5954\u8dd1\u7740\u3002"} +{"id": "4004126", "video_name": "76624f0e-50ee-52f1-ba2d-93ea94dbbd29", "text": "\u4e00\u6735\u73ab\u7470\u5728\u94c1\u8def\u7684\u65e9\u6668\u7efd\u653e\u3002"} +{"id": "8001402", "video_name": "f9c2c6aa-3a5c-5a55-a31d-1078771fe8b6", "text": "\u4e00\u500b\u6234\u8457\u8033\u6a5f\u5750\u5728\u684c\u5b50\u524d\u5de5\u4f5c\u7684\u4eba\u3002"} +{"id": "0006223", "video_name": "28a298e9-0630-5587-ad03-e9e93c6d571d", "text": "\u6210\u5343\u4e0a\u4e07\u53f0\u8ba1\u7b97\u673a\u7ec4\u6210\u4e86\u4e92\u8054\u7f51\u3002"} +{"id": "1006678", "video_name": "7a61e2c6-33e2-5fa8-ac1c-fa73c14d5664", "text": "\u5728\u5723\u8bde\u8282\u90a3\u5929\uff0c\u4e00\u4e2a\u5973\u5b69\u8d70\u5728\u8def\u4e0a\u3002\n\nSource sentence: He is studying Chinese at university. \n\n\u4ed6\u6b63\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "1006772", "video_name": "7bfa4968-24ba-514e-8a05-77ad148ab7e8", "text": "\u4e00\u7fa4\u4e9a\u6d32\u4f01\u4e1a\u5bb6\u6b63\u5728\u4f1a\u8bae\u5ba4\u91cc\u70ed\u70c8\u8ba8\u8bba\u4eba\u5de5\u667a\u80fd\u3002\u4e00\u4e9b\u4eba\u611f\u5230\u5174\u594b\uff0c\u4e00\u4e9b\u4eba\u5728\u770b\u67b6\u6784\u56fe"} +{"id": "4004236", "video_name": "6be93629-699c-59a7-aaec-6e3feed40b1c", "text": "\u5168\u8eab\u7167\u7247\u63cf\u7ed8\u4e86\u4e00\u4e2a\u6234\u7740\u82b1\u73af\u7684\u5973\u5b50\uff0c\u662f\u4e00\u4e2a\u6570\u5b57\u5e7b\u60f3\u89d2\u8272\uff0c\u68d5\u8272\u5934\u53d1\u7684\u5c11\u5973\uff0c\u7f8e\u4e3d\u52a8\u4eba\uff0c\u7ec6\u8282"} +{"id": "1004189", "video_name": "4d7a5a18-8f90-589e-97fa-8b954d346500", "text": "\u5fb7\u91cc\u7199\u7199\u6518\u6518\u7684\u8857\u9053\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u4eba\u7fa4\u5404\u5f02\u3002\u6c1b\u56f4\u5145\u6ee1\u6d3b\u529b\uff0c\u6355\u6349\u4e86"} +{"id": "3006825", "video_name": "20ddeec7-473a-5191-9e0f-d707d000db1a", "text": "\u4e00\u53ea\u9ca8\u9c7c\u6765\u56de\u6e38\u52a8\u3002"} +{"id": "6004274", "video_name": "f35a2e55-7be3-5fb3-8026-46691a7ffa17", "text": "\u5728\u6c34\u4e0a\u8df3\u821e\u7684\u673a\u5668\u4eba\uff0c\u540c\u65f6\u62b1\u7740\u4e00\u53ea\u5154\u5b50\u3002"} +{"id": "7003568", "video_name": "4daf04b9-d56d-576f-a8ad-8f76dc8896f6", "text": "\u4e00\u8f86\u6c7d\u8f66\u53d8\u6210\u4e86\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "0004664", "video_name": "0ce5b990-05b7-5677-a3ce-55d37d3537b9", "text": "\u6d3b\u6cfc\u7684\u5154\u5b50\u3001\u6e29\u67d4\u7684\u718a\u548c\u597d\u5947\u7684\u677e\u9f20\uff0c\u5b83\u4eec\u548c\u7766\u76f8\u5904\uff0c\u5206\u4eab\u7740\u5b83\u4eec\u96ea\u57df\u4e4b\u5bb6\u7684\u7f8e"} +{"id": "4002644", "video_name": "eee4cf3b-0710-53e3-8cf4-44a26cb0bf56", "text": "\u7ebd\u7ea6\u9ad8\u5cf0\u65f6\u6bb5\u7684\u51fa\u79df\u8f66\u3002"} +{"id": "4004209", "video_name": "1ac5b604-9291-5ff1-81d4-ba24347fb572", "text": "\u5404\u4e2a\u5e74\u9f84\u6bb5\u7684\u4eba\u805a\u96c6\u5728\u4e00\u8d77\u3002"} +{"id": "2003806", "video_name": "b0e4d7cf-c6c9-5300-846b-02a9c8be5451", "text": "\u6811\u836b\u4e0b\u7761\u89c9\u7684\u72ee\u5b50\uff0c\u800c\u597d\u5947\u5730\u7aa5\u89c6\u7740\u7684\u8001\u9f20\u3002"} +{"id": "7004060", "video_name": "600433fb-6166-546c-ad7a-e94cf9378e37", "text": "\u4e00\u500b\u4eba\u5750\u5728\u5149\u7dda\u660f\u6697\u7684\u5730\u65b9\uff0c\u5468\u570d\u6709\u591a\u500b\u9ede\u5149\u6e90\u3002"} +{"id": "3006145", "video_name": "04cf1e91-e49f-557d-bdb2-12cd34b953f4", "text": "\u4e00\u4e2a\u5deb\u5e08\u5728\u68ee\u6797\u4e2d\u8df3\u821e\uff0c3D\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "7002913", "video_name": "304de8c2-2e33-5256-8214-d5ae03399b4b", "text": "\u6709\u4e00\u573a\u706b\u707e\uff0c\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u53d6\u4ee3\u4e86\u6d88\u9632\u5458\u524d\u5f80\u706b\u707e\u73b0\u573a\uff0c\u5e2e\u52a9\u8425\u6551\u88ab\u56f0\u4eba\u5458\u3002"} +{"id": "2005325", "video_name": "6e97fb50-67c4-5f5b-98e5-6c8bf250dd47", "text": "\u7f8e\u4e3d\u7684\u57ce\u5e02\u5145\u6ee1\u4e86\u6469\u5929\u5927\u697c\u3002\u4fe1\u606f\uff1a\u6211\u7231\u4f60\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4003439", "video_name": "ffb60dfa-d891-5114-9624-2af8a28e6aa6", "text": "3\u4e2a\u5341\u51e0\u5c81\u7684\u5973\u5b69\u7b2c\u4e00\u5929\u5728\u65c5\u9986\u76f8\u9047\u3002\u5176\u4e2d\u4e00\u4e2a\u662f\u7a7f\u7740\u5934\u5dfe\u7684\u5973\u5b69\u3002\u5979\u4eec\u6b63\u5728\u4ea4\u8c08\u3002\u6211\u60f3\u628a"} +{"id": "2004116", "video_name": "6c7f2c47-6e3c-5d23-a235-cf4892f5b037", "text": "\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u957f\u88d9\u7684\u7f8e\u4e3d\u4e9a\u6d32\u5973\u6027\u6b63\u5728\u5403\u82f9\u679c\u3002\u5979\u6709\u9ed1\u8272\u957f\u53d1\uff0c\u5927\u773c\u775b\uff0c\u8ff7\u4eba\u7684\u9762\u90e8\u7279"} +{"id": "5001727", "video_name": "47f5f390-8bf3-539f-8e55-2e71deefa673", "text": "\u6c34\u624b\u6708\u4eae\uff0c\u6218\u58eb\u670d\u88c5\uff0c\u660e\u4eae\u7684\u989c\u8272\uff0c\u957f\u53d1\uff0c\u5927\u773c\u775b\u3002\u51b3\u5fc3\u3001\u6e29\u67d4\u3001\u5c0f\u52a8\u7269\u4f19\u4f34\u3001\u9b54"} +{"id": "0004825", "video_name": "0fd604f0-1971-569f-88e2-6d761699c9c4", "text": "\u4e00\u53f0\u73b0\u4ee3\u673a\u5668\u4eba\u5728\u5df4\u9ece\u7684\u65f6\u88c5\u79c0\u4e2d\u72ec\u81ea\u884c\u8d70\uff0c\u4f17\u4eba\u8eab\u7a7f\u7c89\u8272\u4e0e\u5176\u5f62\u6210\u9c9c\u660e\u5bf9\u6bd4\u3002\u89c6\u9891\u5fc5\u987b"} +{"id": "7004251", "video_name": "2586bd1c-8bda-5bad-b63f-ed98dd0c525d", "text": "\u4e00\u53ea\u7c89\u8272\u7684\u72ee\u5b50\u5728\u955c\u5934\u524d\u770b\u7740\uff0c\u5b83\u7ad9\u5728\u4e00\u7247\u9ed1\u6697\u7684\u68ee\u6797\u524d\u3002"} +{"id": "3004226", "video_name": "e7b1ce1d-1d08-5170-a1b2-1a8210b7b4f5", "text": "\u5728\u4e1b\u6797\u91cc\uff0c\u4e00\u53ea\u52a8\u753b\u72ee\u5b50\u6b63\u5728\u6811\u4e0b\u7761\u89c9\u3002"} +{"id": "2004832", "video_name": "21b83f60-11ff-5cf7-a90c-3df753f1711d", "text": "\u79c1\u4eba\u5e15\u7279\u91cc\u514b\u8bfb\u4e86\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u7684\u4fe1\u3002"} +{"id": "7002235", "video_name": "22952e0d-525c-5650-99c4-4aa139ee8894", "text": "\u5728\u9644\u5e26\u7684\u623f\u5c4b\u56fe\u7247\u4e2d\uff0c\u5916\u5899\u7684\u4e3b\u8272\u8c03\u53d8\u6210\u4e86\u85cf\u9752\u8272\u3002"} +{"id": "6004872", "video_name": "0fdd2c84-44b7-51cc-a476-38d0f278e417", "text": "\u6297\u5fae\u751f\u7269\u548c\u708e\u75c7\u8fc7\u7a0b\u5728\u751f\u7269\u4f53\u5185\u5bc6\u5207\u534f\u4f5c\uff0c\u4ee5\u7ef4\u6301\u7ec4\u7ec7\u5065\u5eb7\u548c\u514d\u75ab\u5e73\u8861\u3002\u6297\u5fae"} +{"id": "4002838", "video_name": "8e814a4f-7aab-55ad-9e86-189ae257229c", "text": "\u706b\u7bad\u505c\u5728\u53d1\u5c04\u67b6\u4e0a\uff0c\u53d1\u52a8\u673a\u6b63\u5728\u8fd0\u8f6c\u3002"} +{"id": "1006058", "video_name": "6f436d03-d110-5434-8526-8f234a358a6c", "text": "\u9b54\u6cd5\u7537\u5b69\u5492\u8bed\u4e86\u4e00\u4e2a\u9b54\u6cd5\u5492\u8bed\u3002"} +{"id": "3003775", "video_name": "8fdf8c2a-49d1-577d-b02f-699122be767d", "text": "\u4e00\u53ea\u7a7f\u7740\u897f\u88c5\u7684\u4ed3\u9f20\u559d\u7740\u8461\u8404\u9152\uff0c\u903c\u771f\u800c\u8be6\u7ec6\u3002"} +{"id": "1006292", "video_name": "73355ad9-8449-51a9-89cd-b23f4c071ed7", "text": "20\u4e16\u7eaa\u65e9\u671f\u98ce\u683c\u7684\u8857\u666f\uff0c\u4eff\u4f5b\u662fWes Anderson\u7684\u4f5c\u54c1\u3002"} +{"id": "4004408", "video_name": "7b3264e9-114e-5547-8b23-6b7f5fee6eaa", "text": "\u5728\u4e00\u4e2a\u79d1\u6280\u6d3e\u5bf9\u4e0a\u8df3\u821e\u7684\u7f8e\u4e3d\u7f8e\u4eba\u9c7c"} +{"id": "2007332", "video_name": "8b5d1720-e828-5725-bf75-bc687e8e527e", "text": "\u8eab\u7740\u9632\u6bd2\u9762\u5177\u7684\u7740\u706b\u7537\u5b50\u5411\u955c\u5934\u8d70\u6765\u3002"} +{"id": "4002134", "video_name": "26ae9f24-b025-5429-921c-4e7ecc953a4f", "text": "\u7ea2\u8272\u7784\u51c6\u955c\u6307\u5411\u76ee\u6807\u7ea2\u70b9\u7784\u51c6\u955c\u3002"} +{"id": "2005953", "video_name": "d6371675-1afc-5adf-bede-32c52c9ea7a1", "text": "\u5de7\u514b\u529b\u9c7c\u4ece\u95f4\u6b47\u6cc9\u5496\u5561\u673a\u91cc\u8d70\u51fa\u6765\uff0c\u9003\u8dd1\u4e86\uff0c4K\u3002"} +{"id": "1006481", "video_name": "76970aff-e13c-5fa9-8e58-902991829179", "text": "\u5b87\u5b99\u98de\u8239\u964d\u843d\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u57ce\u5e02\u3002"} +{"id": "2003979", "video_name": "0c2a373f-857b-51c2-a54f-22a0e540af19", "text": "\u4e00\u5e45\u4ee5\u9ed1\u767d16:9\u6bd4\u4f8b\u5448\u73b0\u7981\u6b32\u4e3b\u4e49\u8005\u7231\u6bd4\u514b\u6cf0\u5fb7\u65af\u7684\u8096\u50cf\u3002"} +{"id": "2004331", "video_name": "8aa57191-4772-5942-95d2-5c29e209a907", "text": "\u7c89\u7ea2\u5f17\u6d1b\u4f0a\u5fb7\u4e50\u961f\u5728\u592a\u7a7a\u6f14\u594f\u3002"} +{"id": "1005767", "video_name": "6a200bb6-2348-5b60-9429-1466a50828df", "text": "\u6444\u50cf\u673a\u5bf9\u7740\u6811\u4e0a\u7a7f\u7740\u7ea2\u88d9\u5316\u4e86\u5986\u7684\u5973\u58eb\u8fdb\u884c\u4e86\u7126\u70b9\u8c03\u8282\uff0c\u5979\u7684\u526a\u5f71\u88ab\u6668\u5149\u886c"} +{"id": "4004261", "video_name": "7b61937c-e735-50e9-acf4-19c41eb30bf3", "text": "\u521b\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u5148\u77e5\u7a46\u7f55\u9ed8\u5fb7 (\ufdfa) \u4e0e\u4ed6\u7684\u540c\u4f34\u4e00\u8d77\u5750\u5728\u90c1\u90c1\u8471\u8471\u7684\u68d5"} +{"id": "3004827", "video_name": "27b7b782-44a2-501c-86b6-0198d17b5ca2", "text": "\u628a\u6811\u4e0a\u7684\u4e00\u53ea\u9e3d\u5b50\u548c\u6811\u4e0b\u7684\u4e00\u53ea\u8001\u9f20\u79fb\u52a8\u4e00\u4e0b\u3002"} +{"id": "3005909", "video_name": "c0c7e826-9f8d-5e62-90bc-a090811d216a", "text": "\u5728\u65e5\u672c\u5e02\u4e2d\u5fc3\u7684\u591c\u665a\uff0c\u85aa\u6c34\u7537\u5b50\u8df3\u821e\u3002"} +{"id": "1003277", "video_name": "3c496800-4b34-59af-adfe-f52d03cacad4", "text": "\u5728\u4e00\u4e2a\u88ab\u7eff\u8272\u7a3b\u7530\u73af\u7ed5\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u4e00\u5bf9\u540d\u4e3a\u963f\u4f9d\u838e\u548c\u963f\u4f9d\u838e\u7684\u540c\u5375\u53cc\u80de"} +{"id": "3006814", "video_name": "a235164a-af0b-5aa4-9f1f-4b98fd5f0fb7", "text": "\u4f20\u8fbe\u52c7\u6c14\u548c\u52c7\u6562\u7684\u7167\u7247\u3002"} +{"id": "7003537", "video_name": "2cbb5d8f-b747-507d-aea3-d9b5f2a922fc", "text": "\u4e00\u53ea\u72ee\u5b50\u547c\u5578\uff0c\u4eff\u68b5\u9ad8\u98ce\u683c\u3002"} +{"id": "0005363", "video_name": "1988e509-b9f2-5b66-95b7-94fc0a580cc0", "text": "\u4e00\u53ea\u516c\u7f8a\u4ece\u7535\u8111\u91cc\u8df3\u51fa\u6765\uff0c\u671d\u7740\u6211\u7684iPhone\u5c4f\u5e55\u5954\u8dd1\u3002"} +{"id": "3004531", "video_name": "a9c52d2b-3a12-5b1b-ad57-8166ebb79f65", "text": "\u4e00\u53ea\u4e2d\u56fd\u767d\u9f99\u5728\u6218\u573a\u4e0a\u98de\u7fd4\uff0c\u6218\u58eb\u4eec\u6fc0\u70c8\u5730\u6218\u6597\u3002"} +{"id": "3004644", "video_name": "4891818f-499c-5a89-bf9b-0c3610ef27f6", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u5b50\u4ece\u96fe\u4e2d\u8d70\u51fa\u3002"} +{"id": "0005298", "video_name": "180b96fc-5343-5b27-b861-0f067bea5ee0", "text": "\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u5929\u4f7f\uff0c\u5e7b\u60f3\u7684\u5f62\u8c61\u3002"} +{"id": "0006670", "video_name": "30bd9242-75ab-5f67-9767-cdd774af9a1b", "text": "\u897f\u5c14\u7ef4\u65af\u7279\u00b7\u53f2\u6cf0\u9f99\u5728\u9152\u5427\u91cc\u75af\u72c2\u8df3\u8dc3\u3002"} +{"id": "8002050", "video_name": "d258833e-b13a-5798-8b1d-8e712ca7808c", "text": "\u4e24\u4e2a\u4eba\u7269\u5728\u957f\u957f\u7684\u8d70\u5eca\u4e2d\u9762\u5bf9\u9762\u7ad9\u7740\u3002\u4e00\u4e2a\u7a7f\u7740\u526a\u5f71\u5f0f\u7684\u98ce\u8863\u548c\u5e3d\u5b50\u7684\u7537\u4eba\u9762\u5bf9\u7740\u4e00\u4e2a\u9ed1\u8272\u897f\u88c5"} +{"id": "6004276", "video_name": "f7eb91fc-245c-5714-b505-1662f7a67f43", "text": "\u521b\u9020\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u4eec\u4e3a\u6211\u6240\u505a\u7684\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "7004624", "video_name": "a52a1275-d743-5071-93f7-c9b01e0a85a4", "text": "\u521b\u5efa\u4e00\u4e2a\u8be6\u7ec6\u7684\u4e09\u7ef4\u793a\u610f\u56fe\uff0c\u5c55\u793a\u4e00\u4e2a\u7403\u5f62\u7ed3\u6784\uff0c\u6e05\u6670\u5730\u533a\u5206\u5b83\u7684\u5916\u90e8\u65e0\u673a\u57fa\u8d28\u548c\u5185\u90e8\u6676\u4f53\u6838\u5fc3\u3002\u5728\u60a8\u7684\u8bbe\u8ba1"} +{"id": "2003870", "video_name": "37774ecf-c816-5c8d-aafd-fb81ff8db25c", "text": "\u5e74\u8f7b\u3001\u9b45\u529b\u5341\u8db3\u7684\u5973\u5b69\uff0c\u957f\u7740\u4e00\u5934\u767d\u53d1\uff0c\u8eab\u7a7f\u767d\u8272\u6597\u7bf7\uff0c\u76ef\u7740\u653e\u5728\u767d\u8272\u7a7a\u623f\u95f4\u4e2d"} +{"id": "0005784", "video_name": "2132bc2e-973a-590c-93b1-d5308dcc2d3d", "text": "\u52a8\u753b\u7eff\u8272\u91ce\u9a6c\u5728\u4e91\u4e2d\u5954\u8dd1\u3002"} +{"id": "6002640", "video_name": "f2ae67af-dcc8-5895-8fcf-8266bc08de93", "text": "\u7518\u5c3c\u4ec0\u6b63\u5728\u8d50\u4e88\u795d\u798f\uff0c\u4ed6\u7684\u624b\u4e2d\u6563\u53d1\u51fa\u4e00\u80a1\u767d\u8272\u80fd\u91cf\u6ce2\u52a8\u3002\u624b\u638c\u4e0a\u51fa\u73b0\u4e86\u300c\u0950\u300d\u5b57\u3002"} +{"id": "3005072", "video_name": "0bc3eded-b649-5be0-9537-059de83307de", "text": "\u7f57\u4f2f\u7279\u00b7\u5510\u5c3c\u6254\u82f9\u679c\u7ed9\u89c2\u4f17\uff0c\u4e0b\u5348\u7684\u5149\u7ebf\u3002"} +{"id": "0005853", "video_name": "225cdac3-c473-5847-9df8-082d02cfa8c9", "text": "alpha\u72fc\u5c79\u7acb\u4e0d\u5012\uff0c\u6563\u53d1\u81ea\u4fe1\uff0c3D\u903c\u771f\u3002"} +{"id": "2004828", "video_name": "ec8f8f29-be92-5218-b403-77f4bc1c45c2", "text": "\u5931\u671b\u4e86\u3002\u7535\u5f71\u822c\u7684\u6c1b\u56f4\u3002\u5f3a\u70c8\u800c\u5f15\u4eba\u6ce8\u76ee\u3002\u6444\u5f71\u822c\u7684\u771f\u5b9e\u611f\u3002"} +{"id": "2007696", "video_name": "4c32d414-5c17-5d47-98ad-e81749ee3966", "text": "\u7537\u5973\u8eab\u7a7f\u65e0\u82b1\u679c\u53f6\u7f9e\u6127\uff0c\u52a8\u753b\u3002"} +{"id": "8002384", "video_name": "ea2fb0f1-bc65-57b0-9a4f-0bcfbb79077b", "text": "\u5728\u4e00\u4e2a\u5927\u7a97\u6237\u9644\u8fd1\u7684\u5c0f\u6728\u5c4b\u91cc\uff0c\u751f\u6210\u4e00\u4f4d\u5973\u6027\u5728\u591c\u665a\u5927\u96e8\u4e2d\u5e73\u9759\u5730\u7761\u89c9\u3002\u5f3a\u8c03\u7a97\u6237\u4e0a\u7684\u96e8"} +{"id": "0004722", "video_name": "0e0b90eb-2338-548f-a9a9-3c2fac534693", "text": "\u751f\u6210\u4e00\u4e2a\u7334\u5b50\u5728\u6c99\u6ee9\u4e0a\u884c\u8d70\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "4002418", "video_name": "bf92143b-b705-5a6a-b7f2-e5a8d58cd74c", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5b55\u5987\u7ad9\u5728\u955c\u5b50\u524d\u3002 \n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "7004001", "video_name": "3a196950-79fd-58e8-9b86-5c6b00e7c1fc", "text": "\u97f3\u4e50\u3001\u821e\u8e48\u548c\u5496\u5561\u673a\u3002"} +{"id": "0004237", "video_name": "059298b6-9d71-5e51-b729-f3ba64ecb045", "text": "\u5f53\u4ed6\u6b63\u51c6\u5907\u79bb\u5f00\u65f6\uff0c\u4e00\u4e2a\u6e29\u67d4\u7684\u58f0\u97f3\u4ece\u7011\u5e03\u540e\u9762\u4f20\u6765\u3002\u90a3\u662f\u68ee\u6797\u7684\u5b88\u62a4\u8005\uff0c\u4e00\u53ea\u53e4\u8001\u7684\u3001"} +{"id": "8001956", "video_name": "08f8c754-605c-510d-a18f-f15bb9277413", "text": "\u4eba\u4eec\u603b\u662f\u5f7c\u6b64\u5bf9\u89c6\u7740\u3002"} +{"id": "0003890", "video_name": "454d7104-01dc-5f29-abcc-4a65c50f1462", "text": "\u8349\u539f\u4e0a\u6709\u4e00\u7fa4\u9a6c\uff0c\u5929\u7a7a\u6674\u6717\u660e\u4eae\uff0c\u8349\u539f\u4e0a\u8fd8\u6709\u4e00\u4e2a\u6e05\u6f88\u7684\u6e56\u6cca\u3002"} +{"id": "2005738", "video_name": "0ba02629-b715-55b2-9579-04668ff72e63", "text": "\u5728\u7531\u9ed1\u8272\u5929\u7136\u5ca9\u77f3\u6784\u6210\u7684\u8212\u9002\u6d1e\u7a74\u91cc\u6709\u58c1\u7089\u3001\u8c6a\u534e\u6c99\u53d1\u548c\u8bbe\u65bd\uff0c\u4ee5\u53ca\u4fef\u77b0\u70ed"} +{"id": "3003256", "video_name": "306f8a7c-629f-5459-9a58-e44ea589e8a0", "text": "\u4e24\u8f86\u8c6a\u534e\u8f7f\u8f66\u5728\u83ab\u65af\u79d1\u8857\u5934\u8d5b\u8f66\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "8001093", "video_name": "5ff1cd4e-d87d-5d0b-9636-25f9b23091cc", "text": "Translated sentence: \u4e00\u4e2a\u6700\u4f73\u7537\u58eb\u7406\u53d1\u5e97\u6709\u5f88\u591a\u7406\u53d1\u5e08\u3002"} +{"id": "6002647", "video_name": "59f6de60-8ed7-5697-86ec-d6209edc1a66", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u6ce2\u5170\u8457\u540d\u7684\u6b6a\u5c4b\u5b50\u7684\u6b63\u9762\u5168\u666f\u3002"} +{"id": "1004467", "video_name": "52b5b8bf-eb7e-565d-8bc3-7b61cdf5778d", "text": "\u5730\u7403\u5728\u9ed1\u6697\u4e2d\uff0c\u53f2\u8bd7\u822c\u7684\u573a\u666f\uff0c\u9ad8\u52a8\u6001\u8303\u56f4\uff0c\u65e5\u843d\u3002"} +{"id": "0006947", "video_name": "35b04528-3fa1-5a52-a288-286c3cc03821", "text": "\u57ce\u5e02\u7684\u591c\u666f\u80cc\u666f\u4e0b\uff0c\u7a97\u6237\u91cc\u6709\u5f88\u591a\u7684\u706f\u5149\u5728\u95ea\u70c1\u7740\uff0c\u65f6\u9690\u65f6\u73b0\uff0c\u8425\u9020\u51fa\u79d1\u6280\u611f\u3002"} +{"id": "8002777", "video_name": "dd233da9-9175-59f6-8385-004beb6d1fe8", "text": "\u5728AI\u5934\u50cf\u4e2d\u5c55\u793a\u8fd9\u5f20\u56fe\u7247\u3002"} +{"id": "3005162", "video_name": "8a62545a-56d3-5a92-baed-a9554f544519", "text": "\u4e00\u7fa4\u7d2b\u8272\u7684\u6076\u9b54\u5728\u5e86\u795d\u80dc\u5229\u3002"} +{"id": "4003158", "video_name": "f42b350a-c98d-5675-84a8-a4d6c408a46f", "text": "\u624b\u672f\u6d3b\u52a8\uff1a\u5c06\u4eba\u7c7b\u7684\u80be\u810f\u79fb\u690d\u5230\u7329\u7329\u8eab\u4e0a\uff0c\u4fef\u89c6\u89d2\u5ea6\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "8003473", "video_name": "25b6b3e5-d765-58b7-951d-2d0f500d5aa8", "text": "\u4ed6\u4eec\u5728\u5a5a\u793c\u4e0a\u4ea4\u6362\u771f\u631a\u7684\u8a93\u8a00\uff0c\u6807\u5fd7\u7740\u4ed6\u4eec\u4ece\u6050\u60e7\u5230\u7231\u7684\u65c5\u7a0b\u7684\u9876\u70b9\u3002"} +{"id": "3004825", "video_name": "5bc8da70-09de-5aac-8c58-afd37b317fe3", "text": "\u7e41\u5fd9\u7684\u4e1c\u4eac\u65e5\u672c\u8857\u9053\uff0c\u9713\u8679\u706f\u665a\u4e0a\u8bbe\u5b9a\u30021\u5f20\u9644\u4ef6\u3002"} +{"id": "7004862", "video_name": "18bb5514-36bc-52e2-b3cd-10b275c8a517", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u610f\u5927\u5229\u65b0\u73b0\u5b9e\u4e3b\u4e49\u7684\u8fc7\u671f\u80f6\u7247\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u540d\u5728\u68ee\u6797\u4e2d\u5bb3\u6015\u7684\u5973\u5b69\u3002"} +{"id": "4002253", "video_name": "54680df8-a5cb-547b-bacc-96ec0ce93849", "text": "\u5c4f\u5e55\u4e2d\u592e\u7684\u4e00\u6ef4\u6c34\uff0c\u5728\u6f06\u9ed1\u7684\u80cc\u666f\u4e0b\uff0c\u968f\u7740\u7a7a\u6c14\u7684\u6d41\u52a8\u9010\u6e10\u53d8\u6210\u7ea2\u8272\u7684\u51b0\u3002"} +{"id": "1004207", "video_name": "4dbe4e7b-50d6-554b-b81d-ce76bde43f3d", "text": "\u4e09\u7ef4CGI\u52a8\u753b\u5f00\u59cb\u4e8e\u4e00\u4e2a\u5bb6\u5ead\u5750\u5728\u4e00\u8d77\u7684\u665a\u9910\u684c\u524d\uff0c\u6bcf\u4e2a\u6210\u5458\u90fd\u4e13\u6ce8\u4e8e\u81ea\u5df1\u7684\u624b\u673a\uff0c\u5b8c\u5168\u6ca1\u6709\u610f\u8bc6\u5230\u4ed6"} +{"id": "8001220", "video_name": "eee4b793-3ca6-5e22-aec4-74660b64b538", "text": "\u5728\u575f\u5893\u4e0a\u4e3e\u8d77\u9152\u676f\u7684\u4eba\u4eec\u3002"} +{"id": "3003416", "video_name": "4cc6d9e4-d1dd-53ea-bd95-0be37e6c23e9", "text": "\u4e30\u7530Yaris\u8f66\u578b\uff0c\u672a\u6765\u5c06\u91c7\u7528\u7535\u52a8\u9a71\u52a8\uff0c\u767d\u8272\u8f66\u8eab\uff0c\u76f4\u6d41\u548c\u4ea4\u6d41\u7535\u7cfb\u7edf\u3002"} +{"id": "1004984", "video_name": "5c21ad19-6e66-55d1-b0c6-318b56d9c7c5", "text": "\u80e1\u9a6c\u5c24\u6069\u00b7\u827e\u54c8\u8fc8\u5fb7\u662f\u5b5f\u52a0\u62c9\u56fd\u8457\u540d\u4f5c\u5bb6\uff0c\u5750\u5728\u684c\u524d\u770b\u7740\u7eb8\u5f20\uff0c\u5ba4\u5185\u6563\u843d"} +{"id": "2007423", "video_name": "f2079b42-c05d-52f2-a91c-0e538a4bfabb", "text": "1957\u5e74\u7684\u7532\u866b\u5531\u7247\u673a\uff0c\u767d\u8272\u80cc\u666f\uff0c\u5e72\u51c0\u6574\u6d01\u3002"} +{"id": "6003828", "video_name": "0ae56484-aa59-5fe9-97bb-d9f62600e7b0", "text": "\u5f7c\u5f97\u8428\u65af\u7684\u62ab\u8428\u5236\u9020\u8005\u5728\u300a\u592a\u7a7a\u7403\u300b\u7535\u5f71\u4e2d\uff0c\u7ad9\u5728\u8bb2\u53f0\u540e\u9762\u8bf4\u8bdd\uff0c\u7ea2\u8272\u9886\u5e26\uff0c\u653f\u6cbb\u8272\u5f69\u3002"} +{"id": "6002441", "video_name": "ed7f6535-5b64-506f-9446-ec58a8c7247e", "text": "\u5973\u4eba\u8d70\u8def\uff0c\u5bc2\u9759\u7684\u5c71\u4e18\uff0c\u96fe\u6c14\uff0c\u5947\u602a\uff0c\u7070\u8272\u3002"} +{"id": "4002802", "video_name": "1939dc53-4f4e-504b-9839-722272634576", "text": "\u6211\u4eec\u4e16\u754c\u4e2d\u8ba9\u6211\u4eec\u611f\u5230\u5feb\u4e50\u7684\u4e8b\u60c5\uff01"} +{"id": "6004700", "video_name": "58782cbe-ee2a-526b-a882-c3b106041e05", "text": "\u94f6\u8272\u7684\u4e2d\u56fd\u9f99\u5728\u5929\u7a7a\u4e2d\u53d8\u6210\u4e86\u8000\u773c\u7684\u91d1\u8272\u5149\u8292\uff0c\u6574\u4e2a\u573a\u666f\u53d8\u5f97\u65e0\u5f62\u3002"} +{"id": "8003879", "video_name": "39f6af4e-4159-56f6-a7dc-8a99f3859b4d", "text": "\u4e00\u53ea\u9e3d\u5b50\u548c\u4e00\u53ea\u4e4c\u9e26\u5728\u4e2d\u5348\u7ad9\u5728\u4e00\u68f5\u5149\u79c3\u79c3\u7684\u6811\u679d\u4e0a\u3002"} +{"id": "2006004", "video_name": "20b69517-4f56-56c9-92d1-351d06b9171e", "text": "\u5728\u5348\u591c\u65f6\u5206\uff0c\u4ed6\u62ff\u7740\u82f9\u679c\u7535\u8111\uff0c\u559d\u7740\u5496\u5561\u5145\u6ee1\u521b\u9020\u529b\uff0c\u867d\u7136\u75b2\u60eb\u4e0d\u582a\uff0c"} +{"id": "2007433", "video_name": "e90a31a8-7684-5e40-9fbb-a4a31338d13a", "text": "\u4e00\u5bf9\u592b\u5987\u548c\u4e00\u53ea\u72d7\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u590d\u53e4VHS\u98ce\u683c\u3002"} +{"id": "3006773", "video_name": "cb1f1fe0-fd46-53cd-925a-0b46c3c5d8f7", "text": "\u7a81\u51fa\u6c14\u5019\u53d8\u5316\u5bf9\u7c89\u8272\u751f\u6001\u7cfb\u7edf\u5f71\u54cd\u7684\u526a\u8f91\u3002"} +{"id": "3004081", "video_name": "a5e88a9d-3f49-5dde-8b0d-5568f30a15a9", "text": "\u4e24\u4e2a\u4e4c\u5179\u522b\u514b\u5f0f\u6454\u8de4\u624b\u5728\u6c99\u6f20\u7684\u8349\u5730\u4e0a\u6454\u8de4\uff0c\u4e00\u4e2a\u6b4c\u624b\u5728\u4ed6\u4eec\u8eab\u540e\u5531\u6b4c\u3002"} +{"id": "2005346", "video_name": "8c165573-1c11-57b3-8e3f-143d7725fb87", "text": "\u63d0\u4e01\u5728\u963f\u59c6\u65af\u7279\u4e39\uff0c\u51ac\u5b63\u666f\u8272\uff0c\u6ee1\u6708\u3002"} +{"id": "0006694", "video_name": "312f9c83-d064-5f56-b6bd-f64618541a69", "text": "\u7687\u5e1d\u5854\u7f57\u724c\uff1a\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u7ea2\u8272\u548c\u6a59\u8272\uff1a\u4e25\u8083\u3002"} +{"id": "6004065", "video_name": "cf23a0a4-7d8d-5dbc-a733-e65266d8d2d8", "text": "\u5b87\u5b99\u68a6\u5e7b\u822c\u7684\u666f\u89c2\u4ee4\u4eba\u60ca\u53f9\uff0c\u4ece\u7a7a\u95f4\u62cd\u6444\u3002 \n\nSource sentence: The teacher asked the students to complete the assignment before the deadline. \n\n\u8001"} +{"id": "4002713", "video_name": "cd33cc09-4923-5f05-882b-f58e95e83339", "text": "\u4e00\u4e9b\u4eba\u6b63\u5728\u4e3a\u671f\u672b\u8003\u8bd5\u800c\u82e6\u82e6\u6323\u624e\uff0c\u4ed6\u4eec\u5728\u82f9\u679cMacBook\u4e0a\u770b\u8bd5\u5377\uff0c\u5e76\u76f8\u4e92\u4ea4\u8c08\u3002"} +{"id": "4004775", "video_name": "0c02bd83-3822-5616-ba01-e192c2c4b03e", "text": "\u540c\u4e8b\u4eec\u5728\u529e\u516c\u5ba4\u7a97\u6237\u9644\u8fd1\u4ea4\u8c08\u3002"} +{"id": "6004314", "video_name": "ecb12274-0519-5784-a981-a801ac081969", "text": "\u300a\u6307\u73af\u738b\u300b\u4e2d\u7684\u573a\u666f\u3002"} +{"id": "2007364", "video_name": "204d1bd8-5f6d-5b43-8bc4-a921a2f4c2f4", "text": "\u684c\u9762\u4e0a\u7684\u7537\u4eba\u6b63\u5728\u89c2\u770bPika\u5b9e\u9a8c\u5ba4\u7684\u89c6\u9891\uff0c\u5728\u5145\u6ee1\u5e0c\u671b\u548c\u79d1\u6280\u6c1b\u56f4\u7684\u9c9c\u8273\u8272\u5f69\u4e2d\u3002"} +{"id": "7003987", "video_name": "3fd92ef4-ce66-578b-8fef-1aac64e8b860", "text": "\u751f\u8bcd\u89e3\u91ca\uff1a\nRusty\uff1a\u751f\u9508\u7684\nBMW E34\uff1a\u5b9d\u9a6cE34\u8f66\u578b\nGarage\uff1a\u8f66\u5e93\n\n\u6c49\u8bed\u7ffb\u8bd1\uff1a\u751f\u9508\u7684\u5b9d\u9a6c"} +{"id": "8002914", "video_name": "6a27d959-34d1-5805-917d-e666e84e433c", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u53a8\u623f\uff0c\u8981\u6c42\u4ed6\u7684\u59bb\u5b50\u6ce1\u8336\u3002"} +{"id": "8001535", "video_name": "23516143-c90c-593e-9993-46772ac58db8", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u89c2\u770bSpaceX\u9f99\u98de\u8239\u53d1\u5c04\u6d3b\u52a8\u3002"} +{"id": "3003711", "video_name": "290683a1-f9b8-5824-bfea-379e4e63d47a", "text": "\u4e00\u4e2a\u8611\u83c7\u4eba\u5728\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u80cc\u7740\u4e00\u4e2a\u88c5\u6ee1\u4e86\u9b54\u6cd5\u8611\u83c7\u7684\u7bee\u5b50\u3002"} +{"id": "4002911", "video_name": "675933c5-33df-53fe-9b57-8e5c20fe1bdc", "text": "\u5de8\u9f7f\u9ca8\u57284K 1:1\u80cc\u666f\u4e0b\u4e0e\u6210\u5343\u4e0a\u4e07\u7684\u9c7c\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "6004982", "video_name": "be1acf65-b2e0-5ec5-addb-74aa17e86dee", "text": "\u9955\u992e\u662f\u300a\u5c71\u6d77\u7ecf\u300b\u4e2d\u7684\u795e\u517d\u3002"} +{"id": "1005130", "video_name": "5e935c8e-8eef-5e8a-bd0c-3798bba230a0", "text": "\u8fd9\u4e2a\u79cb\u5929\uff0c\u6811\u53f6\u5728\u9010\u6e10\u53d8\u6210\u91d1\u9ec4\u8272\u4e4b\u540e\uff0c\u5f00\u59cb\u7f13\u6162\u5730\u843d\u4e0b\u3002"} +{"id": "4002782", "video_name": "b8e9d72b-cbd5-562e-8fb8-782ebe554103", "text": "\u91cc\u514b\u548c\u5973\u738b\u5728\u4e00\u8d77\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003529", "video_name": "b2142d8d-dc93-5be5-a26c-2efdc3443b24", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u7a7f\u7740\u9ec4\u8272\u6bd4\u57fa\u5c3c\u7684\u706b\u8fa3\u5973\u5b69\u548c\u72d7\u4e00\u8d77\u5954\u8dd1\uff0c\u751f\u6210\u8d85\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "8002212", "video_name": "6563dad1-54f5-5815-8f94-d838ab62f52a", "text": "\u4e00\u500b\u91d1\u9aee\u7684\u4e5d\u6b72\u5973\u5b69\uff0c\u5728\u820a\u6b4c\u5287\u9662\u8df3\u821e\uff0c\u4e2d\u9577\u9aee\uff0c\u7a7f\u8457\u4e00\u4ef6\u9577\u767d\u8272\u79ae\u670d"} +{"id": "4004317", "video_name": "e86e541c-929b-5787-b56e-95cb30fa6ec1", "text": "\u4e00\u53ea\u586b\u5145\u7684\u732b\u8eba\u5728\u660e\u4eae\u7684\u9633\u5149\u4e0b\u7684\u8349\u5730\u4e0a\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u6761\u9c7c\uff0c\u6109\u5feb\u5730\u5403\u7740\u3002"} +{"id": "7002245", "video_name": "e05d3e87-55f8-541a-9f4a-465ffc13fec0", "text": "\u8bb8\u591a\u72d7\u5750\u5728\u5730\u94c1\u96a7\u9053\u91cc\u3002"} +{"id": "2005752", "video_name": "4c55c877-565f-50a2-9ae5-8f9a3d0ec7b7", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u955c\u5b50\u524d\uff0c\u55b7\u7740\u9999\u6c34\u3002\u914d\u97f3\uff1aVersace Eros EDT \u662f\u7537\u58eb\u7684\u78c1\u6027\u3001\u8bf1\u4eba\u7684\u9999\u5473\u3002\u5b83\u662f\u67d1"} +{"id": "8001007", "video_name": "baef6cf2-8411-549a-9c45-d8f3e5e4c9ce", "text": "\u6d77\u72f8\uff1a\u5e03\u62c9\u5fb7\u5403\u575a\u679c\u3002"} +{"id": "3004990", "video_name": "f369ad39-f298-56a5-8b93-a9d2b5f6f439", "text": "\u6f29\u6da1\u8fc5\u901f\u65cb\u8f6c\uff0c\u5076\u5c14\u6709\u95ea\u7535\u7206\u53d1\uff0c\u7537\u4eba\u6ce8\u89c6\u7740\u3002"} +{"id": "1004651", "video_name": "56735376-693e-5f3e-beb4-3aa934efff69", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7537\u4eba\u8096\u50cf\u5403\u7740\u897f\u74dc\uff0c\u95ed\u4e0a\u4e86\u53cc\u773c\u3002"} +{"id": "1003731", "video_name": "44ddd14a-2ae4-5634-828c-ef6fe8801da1", "text": "\u5956\u52b1\uff1a\u5c55\u793a\u6f5c\u5728\u7684\u672a\u6765\u5192\u9669\u7684\u7247\u6bb5\uff0c\u9884\u793a\u7740\u7b49\u5f85\u7231\u4e3d\u4e1d\u7684\u65b0\u6311\u6218\u548c\u795e\u5947\u7684\u4e16\u754c\u3002"} +{"id": "0003176", "video_name": "389a7cca-4803-594d-9e66-dd5afcb2c2aa", "text": "\u4e00\u53ea\u5c71\u7f8a\u5728\u963f\u4f2f\u91cc\u65af\u7279\u5a01\u65af\u7684\u8e66\u5e8a\u4e0a\u6f14\u594f\u8428\u514b\u65af\u7ba1\uff0c\u4e00\u7fa4\u4eba\u89c2\u770b\u5e76\u6325\u821e"} +{"id": "1004797", "video_name": "58b19eba-3db8-55da-b23b-174b8dea4f6b", "text": "\u9ad8\u8d28\u91cf\uff0c\u4e54\u6cbb\u4e9a\u4eba\u7684\u65d7\u5e1c\u5728\u9ec4\u660f\u65f6\u5206\u7684\u57ce\u5e02\u5e9f\u589f\u80cc\u666f\u4e0b\u98d8\u626c\u3002"} +{"id": "4002890", "video_name": "cd1fea65-b3f5-584e-8a4d-1ddd59288423", "text": "\u6559\u80b2\u6280\u672f\uff0c\u6837\u5f0f\u77e9\u9635\uff0c\u89c6\u9891\u5206\u8fa8\u7387\u4e3a1920x1080\u50cf\u7d20\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\uff0c\u7535\u5f71\u98ce\u683c\uff0c4D\u3002"} +{"id": "3004805", "video_name": "beb7b1eb-d34c-502c-ab55-2b65ef500ea3", "text": "\u77f3\u5934\u3001\u6811\u53f6\u3001\u77f3\u5757\u548c\u9053\u5177\u5728\u7a7a\u4e2d\u98de\u821e\uff0c\u773c\u775b\u95ea\u70c1\u3002"} +{"id": "8003560", "video_name": "a2825e07-737a-5a5f-adf8-2a5e5ce78c0b", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5750\u5728\u8c6a\u5b85\u7684\u957f\u6905\u4e0a\uff0c\u770b\u7740\u5730\u7403\u88ab\u6838\u5f39\u6467\u6bc1\u3002"} +{"id": "0006280", "video_name": "29eddbc8-ae53-569c-92d8-ce75452a29f5", "text": "\u4e00\u4e2a\u624b\u4f38\u51fa\u6765\uff0c\u4ece\u4e00\u4e2a\u65e7\u7b14\u8bb0\u672c\u4e0a\u6293\u4f4f\u4e86\u4e00\u4e2a\u68a6\u5e7b\u4e16\u754c\u91cc\u7684\u5f69\u8272\u5730\u7403\u3002"} +{"id": "7003437", "video_name": "145c2209-0972-51ab-a512-a48a26312263", "text": "\u5973\u5b69\u5728\u5927\u52a0\u90a3\u5229\u5c9b\u7684\u6d77\u6ee9\u4e0a\uff0c\u80cc\u666f\u662f\u6708\u4eae\uff0c\u7d27\u62b1\u7740\u7537\u5b69\u6162\u821e\u3002"} +{"id": "8001063", "video_name": "dd0570b6-8335-58c2-b399-ca078f19953f", "text": "\u73b0\u4ee3\u800c\u6e29\u6696\u7684\u5ead\u9662\uff0c\u6444\u50cf\u673a\u7531\u8fdc\u53ca\u8fd1\uff0c\u98ce\u5439\u6811\u6447\u6446\u3002"} +{"id": "0006382", "video_name": "2b7b7f4f-bfd7-5d49-9bb1-c6d36a403cef", "text": "\u5f17\u96f7\u8fea\u00b7\u5409\u5e03\u65af\u4e8c\u6218\u7535\u5f71\u7ed3\u5c3e\uff0c\u9a7e\u9a76\u5766\u514b\uff0c\u62bd\u96ea\u8304\uff0c\u6162\u52a8\u4f5c\uff0c\u7d2b\u8272\u80cc\u666f\uff0c"} +{"id": "3003675", "video_name": "b4faaa0d-88db-565b-af1f-476de6d219ca", "text": "\u5728\u8d6b\u8499\u5c71\u4e0a\u7684\u5815\u843d\u5929\u4f7f\u3002"} +{"id": "4003418", "video_name": "e0150355-1c4c-5fcf-a71b-89d980f83af7", "text": "\u58f0\u901f\u5c0f\u5b50\u5728\u8fea\u62dc\u57ce\u8df3\u821e\uff0c\u8fd8\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u8df3\u821e\u3002"} +{"id": "6002320", "video_name": "5d57999e-91d0-5760-af65-10830e2e5afe", "text": "\u4e00\u4e2a\u6765\u81ea\u5370\u5ea6\u7684\u8d85\u7ea7\u6ce8\u518c\u4f1a\u8ba1\u5e08"} +{"id": "1005251", "video_name": "609b3c47-7888-503b-811b-e69621a9c68f", "text": "\u5979\u6709\u4e00\u79cd\u7279\u6b8a\u7684\u5929\u8d4b\uff0c\u80fd\u8bb2\u6545\u4e8b\u8ba9\u4eba\u4eec\u5fae\u7b11\u3001\u5927\u7b11\uff0c\u6709\u65f6\u8fd8\u4f1a\u54ed\u6ce3\u3002"} +{"id": "7002868", "video_name": "ccf322b7-da90-5c61-8774-5ba2bee57884", "text": "\u6124\u6012\u7684\u5927\u7329\u7329\u91d1\u7259\u821e\u8e48\u57284K\u4e2d\u3002"} +{"id": "8003478", "video_name": "9b04bc2c-fbb9-5dd7-a6cf-b9813f8bed73", "text": "\u4e30\u7530Innova\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\u3002"} +{"id": "3004623", "video_name": "766b18e3-8ee5-52c0-91dc-c519ac61b5fa", "text": "\u57281970\u5e74\u4ee3\u7684\u795e\u79d8\u51fa\u7248\u590d\u5174\u4e2d\uff0c\u795e\u79d8\u4e3b\u4e49\u8005\u4eec\u3002"} +{"id": "3006343", "video_name": "2cc096d4-e684-53ee-aeda-de2944bd33a7", "text": "\u5c06\u5531\u7247\u50cf\u5728\u5531\u7247\u673a\u4e0a\u64ad\u653e\u4e00\u6837\u65cb\u8f6c60\u79d2\u3002"} +{"id": "0006641", "video_name": "30151202-3022-50f7-8c37-884f49ffb605", "text": "\u7a7a\u62cd\u591c\u665a\u5c9b\u5c7f\uff0c\u4e09\u5ea7\u706b\u846c\u53f0\uff0c\u70df\u96fe\u5728\u6cb3\u9762\u4e0a\u6d41\u6dcc\uff0c\u8d85\u5bbd\u89d2\u5ea6\u955c\u5934\uff0c\u6781\u5176\u903c\u771f"} +{"id": "7004502", "video_name": "c7d050d5-f937-582d-b698-5c69566a2b16", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u96e8\u4e2d\u9a91\u9a6c\u3002"} +{"id": "2007303", "video_name": "aded3c0a-c28c-5136-920f-0dd65be04b40", "text": "\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\u58eb\u5175\u5728\u6218\u4e89\u524d\u7ebf\u4e0b\u906d\u53d7\u706b\u529b\u653b\u51fb\uff0c\u79fb\u52a8\u3001\u5f00\u706b\u3001\u501f\u52a9\u98ce\u5411\u3002"} +{"id": "3005310", "video_name": "c394b893-bc7b-5d25-ad72-9d7cf2ea3036", "text": "\u521b\u9020\u6df7\u6c8c\u7684\u62bd\u8c61\u8868\u73b0\uff0c\u5b83\u662f\u5e0c\u814a\u5b87\u5b99\u51fa\u73b0\u7684\u65e0\u5f62\u865a\u7a7a\u3002\u60f3\u8c61\u65cb\u8f6c\u7684\u3001\u65e0\u5b9a\u5f62\u7684\u7269\u4f53\uff0c"} +{"id": "6002401", "video_name": "6a8bd9a9-a54c-5796-8a61-53f7e339ce22", "text": "\u5927\u81ea\u7136\u7684\u6811\u6728\uff0c\u4fef\u89c6\u56fe\uff0c\u5929\u9876\u89c6\u56fe\uff0c\u4f0a\u74dc\u82cf\u7011\u5e03\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005030", "video_name": "c8be17ea-9b15-5e41-aefc-2d5a9847d3a2", "text": "\u4e00\u4e2a\u714e\u9505\u70d8\u70e4\u7684\u7cd5\u70b9\uff0c8k\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u6e05"} +{"id": "2006864", "video_name": "75dd4117-10d0-58cf-80bb-2b24cd3589c2", "text": "\u9ea6\u7530\u5728\u65e5\u843d\u65f6\uff0c\u98ce\u5439\u52a8\u7740\u9ea6\u7a57\uff0c\u84dd\u5929\u767d\u4e91\u70b9\u7f00\u5176\u95f4\u3002"} +{"id": "1004770", "video_name": "58450d0c-980d-5800-afab-c9868f3fa153", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u77ff\u7269\u77f3\u91c7\u77f3\u573a\uff0c\u8d85\u73b0\u5b9e\u98ce\u683c\uff0c\u6ca1\u6709\u626d\u66f2\uff0c\u6781\u9ad8\u6e05\u6670\u5ea6\uff0c8k"} +{"id": "0006281", "video_name": "29f1343a-8c33-53e8-8e8c-3d370b00ce56", "text": "\u4e00\u672c\u53e4\u8001\u7684\u6545\u4e8b\u4e66\u7ffb\u5f00\uff0c\u7136\u540e\u7f29\u653e\u8fdb\u5165\u53e6\u4e00\u4e2a\u89c6\u9891\u3002"} +{"id": "2005055", "video_name": "e2fa0857-9390-54da-85f5-ef52af8760b5", "text": "\u732b\u5411\u524d\u8d70\u5e76\u5411\u53f3\u8f6c\u5934\u3002"} +{"id": "2004162", "video_name": "00b176ca-3a06-5e9e-a110-c6f5d05323b8", "text": "\u827e\u5fb7\u00b7\u5e0c\u5170\u6f14\u594f\u5409\u4ed6\u65f6\u6302\u7740\u4ee5\u8272\u5217\u56fd\u65d7\u3002"} +{"id": "2006347", "video_name": "21edc68a-9ec4-5823-bc2b-68d6fabe9cb6", "text": "\u4e66\u5c01\u9762\u5c55\u793a\u4e86\u4e00\u4f4d\u91d1\u53d1\u7f51\u7ea2\u5fae\u7b11\u7684\u9762\u5b54\u3002"} +{"id": "0003786", "video_name": "43690864-a148-598b-a36d-4b657bdf2bcf", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u8349\u602a\u4ece\u8349\u4e1b\u4e2d\u8df3\u4e86\u8d77\u6765\u3002"} +{"id": "4002748", "video_name": "4c9ed8f4-ee09-5efe-be61-2c42c721a22f", "text": "\u5728SOC\u5de5\u4f5c\u7684\u6027\u611f\u9053\u5fb7\u9ed1\u5ba2\u5973\u5b69\u3002"} +{"id": "6004103", "video_name": "90150dc0-03b8-5bac-a00d-ef7d8daa0103", "text": "\u76ee\u524d\uff0c\u5b83\u88ab\u8ba4\u4e3a\u662f\u4e16\u754c\u4e0a\u7b2c\u4e8c\u5927\u7684\u5ca9\u6eb6\u6e90\u3002\n\nSource sentence: The company's profits have increased by 20% compared to last year. \n\u8be5\u516c\u53f8\u7684\u5229\u6da6\u76f8"} +{"id": "6002795", "video_name": "81a98e41-72e5-511f-844d-8129f0ec6e87", "text": "\u7535\u5f71\u6d77\u62a5\uff0cInstagram\u6545\u4e8b\u6846\u67b6\uff0c\u653e\u5927\uff0c\u4eba\u7c7b\u4e0e\u673a\u5668\u4eba\u7684\u6218\u6597\uff0c\u7535\u5f71\u98ce\u683c\uff0c15\u79d2\u3002"} +{"id": "1004452", "video_name": "52612ce1-a4c7-5a78-adce-ed91939b4d4b", "text": "\u4eba\u4eec\u64ad\u79cd\u65f6\u6492\u4e0b\u8c37\u7269\u7684\u7530\u5730\uff0c\u4fef\u89c6\u56fe\uff0c\u65f6\u523b\u4e3a\u516c\u5143\u524d\u96f6\u5e74\u3002"} +{"id": "3005701", "video_name": "54c27ec1-878f-5227-b458-5881e7c733db", "text": "\u95e8\u536b\u62d2\u7edd\u4e86\u56db\u4e2a\u4eba\u8fdb\u5165\u3002"} +{"id": "1006696", "video_name": "7aae8c8e-e563-50ec-86bd-209caa958e5d", "text": "\u673a\u5668\u4eba\u770b\u8d77\u6765\u66f4\u50cf\u771f\u6b63\u7684\u4eba\u8138\u3002"} +{"id": "4003582", "video_name": "b5e527b9-0bd8-59bb-af7d-7fea9eb590b7", "text": "\u4e8e\u662f\uff0c\u667a\u8005\u548c\u4ed6\u5fe0\u5b9e\u7684\u95e8\u5f92\u5728\u5370\u5ea6\u5c71\u533a\u7684\u5b81\u9759\u7f8e\u4e3d\u4e2d\u5ea6\u8fc7\u4e86\u4ed6\u4eec\u7684\u4f59\u751f\u3002"} +{"id": "6003735", "video_name": "1f79ccd5-1855-56c4-ad2c-437710d40c6c", "text": "\u5efa\u9020\u4e00\u4e2a\u50cf\u827e\u83f2\u5c14\u94c1\u5854\u4e00\u6837\uff0c\u5411\u5de6\u503e\u5012\u3001\u903c\u771f\u7684\u5854\u3002"} +{"id": "7004075", "video_name": "c2456672-74e3-5360-bab1-3c46560712c9", "text": "\u6c99\u6f20\u548c\u5c71\u8109\uff0c\u5b69\u5b50\u4eec\u73a9\u800d\uff0c\u963f\u62c9\u4f2f\u5916\u8c8c\u3002"} +{"id": "0006176", "video_name": "27c0fd1d-4de5-5207-b326-8f56037d1dcd", "text": "\u63cf\u8ff0\u4e00\u4e2a\u4eba\u7ad9\u5728\u6307\u6325\u53f0\u4e0a\uff0c\u5468\u56f4\u6709\u5404\u79cd\u4ee3\u8868\u7ecf\u5386\u3001\u4fe1\u4ef0\u548c\u5173\u7cfb\u7684\u4eba\u7269\u3002\u63cf\u7ed8\u6bcf\u4e2a\u4eba\u7269\u624b\u6301\u4ee3\u8868\u4ed6\u4eec\u5bf9\u6b64\u4eba"} +{"id": "1005026", "video_name": "5cfb052f-ea68-57f4-bf8f-567f16e440fd", "text": "\u5510\u4eba\u8857\uff0c\u70df\u82b1\uff0c\u5e7b\u60f3\uff0c\u534e\u4e3d\uff0c\u559c\u5e86\uff0c\u751f\u65e5\u5feb\u4e50\uff0c\u903c\u771f\uff0c\u7535\u5f71\u6548\u679c"} +{"id": "3003426", "video_name": "88ec6677-5a79-5cf0-9d25-b3e7b52fcff7", "text": "\u5916\u661f\u5973\u738b\u7a7f\u91d1\u8272\u793c\u670d\u5316\u5986\uff0c\u62e5\u6709\u957f\u53d1\u548c\u7f8e\u4e3d\u8eab\u6750\u3002"} +{"id": "3006334", "video_name": "2a89756b-b104-5123-8662-d9c2934fe026", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u4f20\u9001\u95e8\u5728\u6cd5\u56fd\u533a\u6253\u5f00\u4e86\u3002"} +{"id": "2005153", "video_name": "d1f4aa24-9152-5f56-b0cc-cb1e815cc087", "text": "\u73b0\u5b9e\u7684\u56fe\u50cf\uff0c\u5e74\u8f7b\u5973\u5b50\u624b\u4e2d\u62ff\u7740\u5854\u7f57\u724c\uff0c\u7279\u5199\u955c\u5934\uff0c\u975e\u5e38\u903c\u771f\u3002\n\nSource sentence: The restaurant is located on the top floor of a skys"} +{"id": "3004793", "video_name": "fdf47adf-a2a6-5813-baaf-3c43072ceea4", "text": "\u5f00\u59cb\u7a7a\u5c71\u57fa\u4eba\u7684\u673a\u5668\u4eba\u5168\u8eab\uff0c\u903c\u771f\u7684\u3002"} +{"id": "6003676", "video_name": "3f0c2b4a-9777-516d-bd18-fbee39098adb", "text": "\u524d\u6765\u770b\u623f\u7684\u4eba"} +{"id": "3004337", "video_name": "ae713642-7249-5cf5-a1a0-ca226c195af3", "text": "\u4e00\u500b\u60c5\u611f\u8c50\u5bcc\u7684\u5b89\u5353\u5750\u5728\u516c\u5712\u7684\u9577\u6905\u4e0a\u3002\u9ec3\u91d1\u6642\u5149\u3002"} +{"id": "1005994", "video_name": "6e2e41b7-4dd7-584a-b6e4-63ddf572e2ad", "text": "\u57ce\u5e02\u4e2d\u62ff\u7740\u9ea6\u514b\u98ce\u7ad9\u5728\u6444\u50cf\u673a\u524d\u53d1\u8a00\u7684\u5973\u6027"} +{"id": "3004651", "video_name": "3ac31284-1668-5adc-9277-554a23fe8869", "text": "\u98ce\u5439\u62c2\u7740\u5934\u53d1\uff0c\u7728\u773c\u775b\u3002"} +{"id": "6003967", "video_name": "c7963fbe-b331-5104-85f5-68b7431ac564", "text": "\u9093\u5e03\u5229\u591a\u4f5c\u4e3aDJ\uff0c\u5728\u67cf\u6797\u7684\u4e00\u4e2a\u5730\u4e0b\u4ff1\u4e50\u90e8\u91cc\u8df3\u7740\u5730\u4e0b\u7535\u5b50\u97f3\u4e50\uff0c\u6ca1\u6709\u7a7f\u4e0a\u8863\u3002"} +{"id": "8002017", "video_name": "c4fd1ad5-7c0a-5c13-99f5-1e06b9e8aaea", "text": "\u7f8e\u4e3d\u591a\u5f69\u7684\u5929\u7a7a\uff0c\u5de8\u5927\u7684\u5c71\u5ce6\u9876\u4e0a\u8986\u76d6\u7740\u51b0\u96ea\uff0c\u81ea\u7136\u73af\u7ed5\u7740\u7fe0\u7eff\u7684\u690d\u88ab"} +{"id": "7004698", "video_name": "27440b35-c18b-5999-a9dd-01d6a313491e", "text": "\u4e00\u573a\u53e4\u5178\u97f3\u4e50\u97f3\u4e50\u4f1a\uff0c\u6709\u5f88\u591a\u7a7f\u7740\u793c\u670d\u7684\u4eba\u7684\u5267\u9662\u3002"} +{"id": "0003588", "video_name": "4008140d-2e02-5b03-bb22-0e1740613874", "text": "\u67cf\u67973000\u5e74\u591c\u666f"} +{"id": "1003323", "video_name": "3d2ed216-e285-501a-a1f9-c9b467c48f14", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u8eb2\u5728\u8c6a\u5b85\u91cc\u54ed\u6ce3\u7740\uff0c\u906e\u4f4f\u4e86\u5979\u7684\u8138\u3002"} +{"id": "0003003", "video_name": "3574d5eb-3734-5bad-84a1-65d8e2ea01ac", "text": "\u4e00\u4e2a\u56db\u5c81\u5973\u5b69\u7684\u89d2\u8272\uff0c\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u591a\u4e2a\u89d2\u5ea6\uff0cStudio Ghibli\u52a8\u753b\uff0cStudio Ghibli\u98ce\u683c\u3002"} +{"id": "6004441", "video_name": "2d557946-5e85-5d7f-a3b3-8fedab7919da", "text": "\u7537\u5b69\u8d70\u4e86\u5f88\u957f\u65f6\u95f4\uff0c\u6811\u53d8\u5f97\u66f4\u9ad8\uff0c\u68ee\u6797\u53d8\u5f97\u66f4\u9ed1\u3002\u6770\u514b\u5f00\u59cb\u611f\u5230\u5bb3\u6015\uff0c\u4f46\u4ed6\u7ee7\u7eed\u524d\u8fdb\u3002"} +{"id": "0003412", "video_name": "3d390362-9154-58d9-89bb-65e3ddac4c13", "text": "\u53ef\u7231\u7684\u5c0f\u72d7\u56db\u5904\u73a9\u800d\uff0c\u50cf\u7d20\u827a\u672f\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c"} +{"id": "7004925", "video_name": "d87fa87a-8df0-5a5b-9bed-c1aad6028055", "text": "\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u9a7e\u9a76\u592a\u7a7a\u6218\u6597\u673a\uff0c\u559d\u7740\u5496\u5561\u3002"} +{"id": "8003961", "video_name": "978fd0e7-bf4c-55a6-9409-2cabfd54149e", "text": "\u4ece\u9ec4\u9e64\u697c\u4e0a\uff0c\u4e00\u89c8\u65e0\u4f59\uff0c\u6668\u5149\u521d\u7167\uff0c\u697c\u5f71\u5012\u6620\u6c5f\u4e2d\uff0c\u6c5f\u5149\u95ea\u70c1\uff0c\u91d1\u8272\u707f\u70c2\u3002"} +{"id": "3005074", "video_name": "198b9158-945e-5b4b-9e47-42dda62738c1", "text": "\u65b0\u79fb\u6c11\u548c\u6751\u6c11\u4e00\u8d77\u5408\u4f5c\u89e3\u51b3\u8c1c\u56e2\uff0c\u5e73\u606f\u7075\u9b42\u3002"} +{"id": "6002691", "video_name": "3a6a6f7d-798e-5f74-b9d2-5e4a36774c5d", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u52c7\u58eb\u5728\u6c99\u6f20\u5954\u8dd1\uff0c\u6709\u7740\u72ee\u5b50\u7684\u5473\u9053\u3002"} +{"id": "6004633", "video_name": "e85323e0-68fc-5ad6-9966-73c0fbe3b41b", "text": "\u5362\u6d6e\u5bab\u7684\u8499\u5a1c\u4e3d\u838e\u753b\u4f5c\u4e2d\uff0c\u5979\u5bf9\u89c2\u4f17\u8868\u73b0\u51fa\u4e0d\u9ad8\u5174\u548c\u65e0\u793c\u7684\u6001\u5ea6\u3002\u5149\u7ebf\u5904\u7406\u5938"} +{"id": "1006009", "video_name": "6e704d97-49f8-51b6-b617-4b58cfafe8e1", "text": "\u4e00\u6bb5\u7b2c\u4e00\u4eba\u79f0\u6444\u50cf\u5934\u5f55\u5236\u7684\u89c6\u9891\uff0c\u8bb0\u5f55\u4e86\u4ece\u9ad8\u5c14\u592b\u7403\u8f66\u524d\u76d6\u4e0a\u8dcc\u843d\u7684\u8fc7\u7a0b\u3002"} +{"id": "4004951", "video_name": "2a67f643-9975-5467-925a-48ba1f8190bf", "text": "\u4e00\u4e2a\u68a6\u5e7b\u6751\u5e84\u7684\u5e02\u573a\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u5947\u5e7b\u3001\u9ad8\u54c1\u8d28\u3001\u9ad8\u7ec6\u8282\u30014K\u3001\u7535\u5f71\u3001\u5f71\u89c6\u7535\u5f71\u3002"} +{"id": "1004938", "video_name": "5b4d5f0b-94ec-5b1e-bfb2-2626d07e6007", "text": "\u9ed1\u6697\u5973\u58eb\u7231\u4e0a\u4e86\u5149\u660e\u9b54\u672f\u5e08\u3002"} +{"id": "7003324", "video_name": "a5c9da4a-465a-5eea-8d46-e745c93f5090", "text": "\u5b59\u609f\u7a7a\u4ece\u300a\u9f99\u73e0\u300b\u4e2d\u9003\u79bb\u4e86\u4e00\u53ea\u516c\u9e21\u3002"} +{"id": "1005312", "video_name": "618f4cf2-bf75-58d1-94de-eb02e467c319", "text": "\u4e00\u4e2a\u5341\u51e0\u5c81\u7684\u85cf\u65cf\u5973\u5b69\uff0c\u7ad9\u5728\u88ab\u65e9\u6668\u9633\u5149\u7167\u8000\u7684\u559c\u9a6c\u62c9\u96c5\u5c71\u524d\u3002"} +{"id": "7003831", "video_name": "71075450-1176-5a2b-9873-52158b474264", "text": "\u4e00\u4e2a\u5728\u7075\u754c\u65c5\u884c\u7684\u5bb6\u4f19\u3002"} +{"id": "2003294", "video_name": "05de04d1-ff1e-5585-9b75-2d8cea5c093d", "text": "\u5728\u53e4\u8001\u7684\u5370\u5ea6\u5bab\u6bbf\u57ce\u5821\u5185\u521b\u9020\u4e00\u53ea\u98de\u7fd4\u7684\u730e\u9e70\u5f71\u5b50\u3002\n\nSource sentence: The sun sets behind the mountains, painting the sky with"} +{"id": "0003415", "video_name": "3d429358-4013-5964-b081-eb3448de696e", "text": "\u5b69\u5b50\u4eec\u770b\u7740\u4e00\u7247\u96cf\u83ca\u7530\u3002"} +{"id": "1003935", "video_name": "48a45706-26b2-5d6f-9c17-d2b63b93dff2", "text": "\u6559\u5ba4\u91cc\u6709\u8001\u5e08\u548c\u6d3b\u6cfc\u7684\u5b66\u751f\u4eec\u6b63\u5728\u8fdb\u884c\u8ba8\u8bba\u3002"} +{"id": "3004720", "video_name": "b6c1cd03-549e-5276-a2e3-4262f142462f", "text": "\u5370\u5ea6\u5973\u5b69\u5728\u6cb3\u8fb9\u7684\u52a8\u753b\u7248\u672c\u3002"} +{"id": "3005921", "video_name": "795f4af2-d5c2-5038-aacc-8c36a8754de0", "text": "\u4e00\u53ea\u975e\u5e38\u53ef\u7231\u7684\u732b\u6253\u7ffb\u4e86\u4e00\u676f\u6c34\uff0c\u7136\u540e\u505a\u4e86\u4e00\u4e2a\u62b1\u6b49\u7684\u8868\u60c5\u3002"} +{"id": "1006121", "video_name": "703ef3d8-180d-5dda-99a4-bcb635fb40ca", "text": "\u5728\u90a3\u91cc\u8d70\u7740\u4e00\u4e2a\u5973\u5b69\uff0c\u624b\u62ff\u7740\u4e00\u672c\u4e66\uff0c\u5468\u56f4\u6f02\u6d6e\u7740\u4e66\u548c\u52a8\u7269\u3002"} +{"id": "1004911", "video_name": "5ae3a345-0eeb-5ce8-9be4-926e289323b4", "text": "\u733f\u7334\u5728\u96e8\u4e2d\u8d70\u5728\u57ce\u5e02\u91cc\u3002"} +{"id": "2003238", "video_name": "444ee31f-a38c-54ae-afc4-8e018f710532", "text": "\u7eb3\u7279\u00b7\u91d1\u00b7\u79d1\u5c14\u57281960\u5e74\u4ee3\u7684\u62c9\u65af\u7ef4\u52a0\u65af\u6851\u5179\u9152\u5e97\u79d1\u5e15\u5bb4\u4f1a\u5385\u6f14\u51fa\u3002"} +{"id": "2007688", "video_name": "56524e75-68d8-5ede-a081-d882f6a863b4", "text": "\u4e00\u5f20\u8986\u76d6\u7740\u6cdb\u9ec4\u7f8a\u76ae\u7eb8\u7684\u65e7\u6728\u4e66\u684c\u3002"} +{"id": "2006155", "video_name": "bacd3e12-475d-57e8-b869-a99796105e5b", "text": "\u89c2\u5bdf\u7a97\uff0c\u6765\u81ea\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u592a\u7a7a\u5a5a\u793c\uff0c\u671b\u5411\u8fdc\u65b9\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ad8\u79d1\u6280\u670d\u88c5\u7684\u5b87\u822a\u5458\uff0c\u8eab\u5904\u5916"} +{"id": "8003116", "video_name": "f0f7b9d1-a615-5d4e-9855-4bf18e56bc73", "text": "\u4fe1\u4ef0\u4e0e\u7406\u6027\u7684\u4ea4\u53c9\u70b9\u3002"} +{"id": "7003184", "video_name": "9101f4d4-4f26-5005-9072-8170b023e024", "text": "\u540e\u623f\u95f4\u76840\u7ea7\u63a2\u7d22\u3002"} +{"id": "3005718", "video_name": "59c3d69b-d568-5fa1-a5ea-99f25d7987d5", "text": "\u8499\u53e4\u90e8\u843d\u7684\u5973\u6027\u5728\u591c\u665a\u56f4\u7740\u5de8\u5927\u7684\u7bdd\u706b\u8df3\u821e\uff0c\u661f\u661f\u95ea\u8000\u3002"} +{"id": "0004529", "video_name": "0aaab644-60fe-5178-bad7-98aa3515763a", "text": "\u4e00\u4f4d\u770b\u8d77\u6765\u50cf\u957f\u53d1\u516c\u4e3b\u7684\u5e74\u8f7b\u5973\u5b69\u5361\u901a\u98ce\u683c\u7684\u5f62\u8c61\uff0c25\u5c81\uff0c\u62e5\u6709\u68d5\u8272\u7684\u76f4\u53d1\uff0c\u7f8e\u4e3d\u7684\u95ed\u773c\u7761"} +{"id": "4003321", "video_name": "14b198fd-7c84-5b87-a51f-e3ba01293bf5", "text": "\u4e00\u53ea\u72d7\uff0c3D\u89c6\u9891\u548c4K\u8d28\u91cf\u3002"} +{"id": "3003107", "video_name": "b7d96759-1d89-57b3-86b2-ff6632d83a70", "text": "\u62a5\u7eb8\u4e0a\u7684\u6d88\u606f\uff1a\u62c9\u7ef4\u5c3c\u4e9a\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003974", "video_name": "bace091a-9e3f-55ff-87e7-bdf25bb663b1", "text": "\u571f\u8033\u5176\u56fd\u65d7\uff0c\u6b22\u5feb\u7684\u4eba\u4eec\uff0c\u5e86\u795d\u76db\u5bb4\uff0c\u70ed\u60c5\u7684\u9752\u5e74\uff0c\u963f\u5854\u56fe\u5c14\u514b\uff0c8\u670830\u65e5\u80dc\u5229"} +{"id": "3003479", "video_name": "7daf780e-663d-5f80-b33e-f6429ffb51e9", "text": "\u5723\u8bde\u57ce\u53d8\u6210\u4e86\u4e00\u4e2a\u73bb\u7483\u666f\u8c61\u3002"} +{"id": "7002454", "video_name": "6d20a3cd-b8df-521a-b48c-f01b18bdcead", "text": "\u4e00\u53ea\u624b\u4f38\u5411\u996e\u6599\uff0c\u80cc\u666f\u4e2d\u6709\u4eba\uff0c\u7425\u73c0\u8272\u548c\u84dd\u7eff\u8272\u5929\u9e45\u7ed2\u9760\u57ab\u4ee5\u53ca\u4e00\u5f20\u53cd\u5149\u684c"} +{"id": "6002497", "video_name": "0298ef3e-b742-51cb-a63e-e34e2d24e0b3", "text": "\u4ed6\u4eec\u4e4b\u95f4\u4f20\u9012\u4e86\u4e00\u5c01\u53d1\u81ea\u5185\u5fc3\u7684\u4fe1\u6216\u4fbf\u6761\u3002"} +{"id": "2007059", "video_name": "34d99216-669e-512e-91c3-4735760438df", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u753b\u4e1b\u6797\u573a\u666f\uff0c\u6240\u6709\u52a8\u7269\u5305\u62ec\u8001\u864e\u3001\u9e7f\u548c\u5e7c\u72ee\u90fd\u5728\u6cb3\u91cc\u73a9\u800d\u3002"} +{"id": "4004696", "video_name": "66d8e271-828b-55fe-aedb-43114be93c76", "text": "\u4e00\u500b\u8db3\u7403\u5fbd\u6a19\u548c\u5564\u9152\u676f\u7d50\u5408\uff0c\u4f7f\u7528\u7d05\u3001\u767d\u548c\u9ed1\u7c21\u55ae\u5316\u3002"} +{"id": "1006216", "video_name": "71f663fb-bbc0-5108-9e1f-6405d6df4710", "text": "\u4e00\u4e2a\u6234\u7740\u5357\u74dc\u5934\u7684\u7537\u4eba\u7ad9\u5728\u821e\u53f0\u4e0a\uff0c\u4e07\u5723\u8282\uff0c4K\u3002"} +{"id": "3004157", "video_name": "1841843e-663b-56e0-b59f-7e31cbff089f", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u96e8\u4e2d\u8df3\u821e\uff0c\u72ee\u5b50\u4ece\u4e1b\u6797\u91cc\u770b\u7740\u5b83\u3002"} +{"id": "0003460", "video_name": "3df07659-9bc8-5bdc-a2cb-ac7a788963b2", "text": "\u5236\u4f5c\u4e00\u53ea\u6234\u7740\u738b\u51a0\u5728\u8349\u5730\u4e0a\u884c\u8d70\u7684\u5587\u561b\u3002"} +{"id": "7004259", "video_name": "4ff8c229-c5c2-5c1c-b498-637df044d943", "text": "\u5728\u7ae5\u8bdd\u68ee\u6797\u91cc\u6f14\u594f\u7684\u52a8\u6001\u5409\u4ed6\u624b\u3002"} +{"id": "2006017", "video_name": "18f20237-e81a-5353-9e5b-d571d05b66b8", "text": "\u5723\u8bde\u8282\u677e\u6811\u6797\uff0c\u5361\u901a\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c16:9\u3002"} +{"id": "7002907", "video_name": "793c9c3c-84a9-5e44-975b-61c76b592bcb", "text": "\u5723\u8bde\u8001\u4eba\u5c06\u4e00\u680b\u65b0\u623f\u5b50\u7684\u94a5\u5319\u4ea4\u7ed9\u4e00\u5bf9\u6709\u5b69\u5b50\u7684\u62c9\u4e01\u592b\u5987\uff0c4K\u3002"} +{"id": "4004866", "video_name": "3ab8f397-5d1c-59dc-a5ae-8ddbd1ce2f25", "text": "\u5236\u4f5c\u4e00\u4e2a9:16\u7684YouTube\u7f29\u7565\u56fe\uff0c\u7537\u5b69\u5750\u5728\u5e8a\u4e0a\uff0c\u5e8a\u5e95\u4e0b\u6709\u4e2a\u9b3c\u3002"} +{"id": "2007798", "video_name": "3f4a057e-d2f8-5a17-8981-fc94aacedcad", "text": "\u4e24\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u624b\u6301\u4f1e\u5728\u5929\u7a7a\u4e2d\u884c\u8d70\u3002"} +{"id": "1006167", "video_name": "70d9248b-7d67-5c6c-8eda-03d3b63355da", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u9ca8\u9c7c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u3002"} +{"id": "4004992", "video_name": "76393d50-bd60-5090-9f59-626c2f12c226", "text": "\u524d\u666f\u4e2d\u6709\u4e00\u68f5\u6811\u5728\u751f\u957f\uff0c\u80cc\u666f\u662f\u4e00\u7247\u6709\u79fb\u52a8\u4e91\u6735\u7684\u5929\u7a7a\u3002"} +{"id": "1003187", "video_name": "3a9e3b12-33cd-53e9-9dd7-8d806e7f9b97", "text": "\u8bbe\u8ba1\u5065\u5eb7\u5065\u8eab\u5e94\u7528\u9875\u9762\uff0c\u5176\u4e2d\u5305\u62ec AI \u804a\u5929\u673a\u5668\u4eba\u63d0\u4f9b\u4e2a\u6027\u5316\u5efa\u8bae\u3002"} +{"id": "8002009", "video_name": "f0cb796e-ae18-576e-9885-af86b95befb6", "text": "\u9e66\u9e49\uff0c8k\uff0c\u5168\u9ad8\u6e05\uff0cCinema4d\uff0c\u8d85\u5199\u5b9e\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0cGS5\uff0cMotion 2\u3002"} +{"id": "4002910", "video_name": "4ff981c6-1c37-551d-a0d9-185eeccd009e", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u9e1f\u98de\u5230\u4e86\u623f\u5b50\u7684\u7a97\u53f0\u4e0a\u3002"} +{"id": "2004040", "video_name": "03ae2485-e985-5b4f-812e-c525db72b830", "text": "\u4e2d\u5e74\u7537\u5b50\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "5001555", "video_name": "002aef48-8fef-562c-b1c1-3e66f8caef88", "text": "\u4ed6\u4eec\u5728\u5bfa\u5e99\u5185\u53d1\u73b0\u4e00\u672c\u655e\u5f00\u7684\u4e66\u653e\u5728\u796d\u575b\u4e0a\uff0c\u5b83\u7684\u9875\u5728\u4f4e\u8bed\u7740\u672a\u77e5\u7684\u5965\u79d8\u3002\u5176\u4e2d\u4e00\u9875\u7279\u522b\u5f15\u8d77\u4ed6"} +{"id": "1004296", "video_name": "4f7819a1-9053-56b9-9b79-ab30bc01f3c3", "text": "\u6211\u4eec\u7684\u4e0b\u4e00\u4e2a\u64ad\u5ba2\u5373\u5c06\u5f00\u59cb\uff0c\u5728\u4e00\u5206\u949f\u5185\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u624b\u8868\u3002"} +{"id": "6002815", "video_name": "241fa74a-3c96-5faa-81e5-0298126b3a4d", "text": "\u670b\u53cb\u4eec\u88ab\u56f0\u5728\u4e00\u4e2a\u5e7d\u95ed\u6050\u60e7\u7684\u623f\u95f4\u91cc\uff0c\u6572\u6253\u7740\u95e8\u3002"} +{"id": "7004444", "video_name": "65bcf3f4-cfff-5e3d-a99c-29999f3031ef", "text": "\u7194\u5ca9\u706f\uff0c\u5305\u542b\u5916\u592a\u7a7a\u661f\u7cfb\uff0c\u903c\u771f\u7684VHS\u6548\u679c\u3002"} +{"id": "3003072", "video_name": "58ba9433-9f65-5401-b7e4-9feda7814c2e", "text": "\u4e34\u754c\u7a7a\u95f4\u5927\u7247\u5916\u505c\u8f66\u533a\u591c\u665a\u3002"} +{"id": "2004192", "video_name": "417e9f55-b31c-5f0b-8f9f-faea9e501496", "text": "\u6700\u540e\uff0c\u968f\u7740\u9633\u5149\u6269\u6563\uff0c\u89c6\u9891\u4ee5\u5766\u514b\u64a4\u9000\u7684\u753b\u9762\u7ed3\u675f\uff0c\u7559\u4e0b\u6d53\u5bc6\u7684\u5c18\u571f\u4e91\u3002\u66fe\u7ecf\u548c\u5e73\u7684\u6751"} +{"id": "6002585", "video_name": "4109eae2-63a8-56df-b059-e799ace2f931", "text": "\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u6d77\u6ee9\uff0c\u6ce2\u6d6a\u7ffb\u6eda\uff0c\u7f8e\u4e3d\u52a8\u4eba\u3002\n\nSource sentence: I enjoy spending time with my family and friends. \n\u6211\u559c\u6b22\u548c\u5bb6"} +{"id": "3004048", "video_name": "70ad2386-78f3-5ea4-a6e7-150f6cf6c776", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u7f69\u7684\u82f1\u56fd\u8b66\u5bdf\u5728\u4f26\u6566\u8857\u5934\u5954\u8dd1\u3002"} +{"id": "3005023", "video_name": "25307ce5-0aab-5e4c-86d0-e831117653a1", "text": "\u4e0b\u96e8\u5929\u6253\u5728\u623f\u5b50\u7a97\u6237\u4e0a\u3002"} +{"id": "8002303", "video_name": "3a702789-c0dc-545d-af4c-eb69c37c2727", "text": "\u9f99\u5728\u5f00\u9614\u7684\u5929\u7a7a\u4e2d\u7ff1\u7fd4\u7684\u753b\u9762\uff0c\u7537\u4eba\u5728\u62c9\u5c4e\uff0c\u6ca1\u6709\u5395\u6240\u5c4b\u9876\u9ad8\u6e05\u3002"} +{"id": "6004863", "video_name": "5aa47406-1066-50c2-8ac3-911d98e68c5a", "text": "\u6b66\u88c5\u6454\u8de4\u5065\u8eab\u623f\u914d\u5907\u8bbe\u5907\u3002\u4fe1\u606f\uff1aANTONWIN\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005879", "video_name": "6c313bdd-26d7-5a6e-838a-84d224b7c1a1", "text": "\u9ed1\u767d4:3\u89c6\u9891\u4e2d\u7684\u5e7d\u7075\u8d70\u5728\u4e00\u4e2a\u9ed1\u6697\u6050\u6016\u7684\u623f\u5b50\u7684\u8d70\u5eca\u4e0a\u3002"} +{"id": "7002427", "video_name": "f269e5c6-e4b7-566e-9d80-e4f5ef0e0f7a", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u5730\u7cbe\u5728\u539f\u59cb\u68ee\u6797\u4e2d\u7a7f\u8fc7\u66b4\u98ce\u96ea\uff0c\u6c14\u5598\u5401\u5401\u5730\u5954\u8dd1\u3002\u4ed6\u5728\u96ea\u5730\u4e2d\u6ed1\u5012"} +{"id": "2005366", "video_name": "5f3fb599-63c9-5998-b6c9-af5889cdbe99", "text": "\u4eba\u6389\u8fdb\u4e00\u5806\u84dd\u8272\u5947\u591a\u3002"} +{"id": "4004331", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "\u7d2b\u8272\u85b0\u8863\u8349\u7761\u7720\u836f\u996e\u6599\u7684\u903c\u771f\u56fe\u50cf"} +{"id": "1004182", "video_name": "4d64767c-5884-52bc-8062-718418e08cca", "text": "\u628a\u6b63\u5728\u7761\u89c9\u7684\u7267\u7f8a\u4eba\u4ece\u68a6\u4e2d\u5524\u9192\u3002"} +{"id": "3005957", "video_name": "710ab76f-ce2e-5df3-9d2a-2208f52e05dd", "text": "\u5728\u65e5\u843d\u65f6\u5206\uff0c\u6587\u5b57\u201crock\u201d\u6a2a\u8de8\u5728\u4e00\u5ea7\u5927\u5c71\u4e0a\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\uff0c\u4fe1\u606f\u4e3a\u201cla biblia\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7003976", "video_name": "b329ef78-1820-5ee1-a76f-4f5e7baddab1", "text": "\u4ece\u6bbf\u91cc\u8d70\u51fa\u4e86\u4e03\u4f4d\u62e5\u6709\u4e03\u707e\u7684\u5929\u4f7f\u3002\u4ed6\u4eec\u8eab\u7a7f\u6d01\u51c0\u660e\u4eae\u7684\u7ec6\u9ebb\u5e03\uff0c\u8170\u95f4\u675f\u7740\u91d1"} +{"id": "6002762", "video_name": "3a04dd31-b070-57dc-9d9a-9847475bd7b0", "text": "\u5728\u7af9\u6797\u4e2d\u7a7f\u6a59\u8272POLO\u886b\u548c\u9ed1\u88e4\u5b50\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u505a\u592a\u6781\u7684\u7f57\u6770\u53d4"} +{"id": "8003243", "video_name": "65dfe4b6-6a9a-558b-b26f-1717b97158f9", "text": "\u4e00\u4e2a\u88c5\u6ee1\u7cd6\u679c\u6756\u548c\u7cd6\u971c\u7684\u59dc\u997c\u5c4b\u3002\u4e00\u7fa4\u5b69\u5b50\u6b63\u5728\u5236\u4f5c\u997c\u5e72\uff0c\u5e76\u7528\u5f69\u7cd6\u548c\u7cd6"} +{"id": "2004714", "video_name": "9235ead7-f8d5-592c-8730-b9b41de39cd0", "text": "\u53e4\u8463\u62cd\u7acb\u5f97\u76f8\u7247\uff0c\u4e00\u4f4d\u5feb\u6a02\u7684\u5973\u4eba\u7ad9\u5728\u6c99\u7058\u4e0a\u4eab\u53d7\u967d\u5149\u3002"} +{"id": "6002368", "video_name": "2b5edeb4-1882-50b2-bc77-21e18dd8adeb", "text": "\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u9ad8\u7ea7\u5b9a\u5236\u6cf3\u88c5\u8d70\u5728T\u53f0\u4e0a\u3002"} +{"id": "4002667", "video_name": "01a10379-088f-5d47-a4ee-312074ceaca7", "text": "\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u53d1\u73b0\u5927\u9ebb\u3002"} +{"id": "4004453", "video_name": "0cdbcff2-7123-5132-97a6-0d04f71e7ede", "text": "\u4e24\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u601d\u8003\u6d77\u62a5\uff0c8k\u3002"} +{"id": "3003735", "video_name": "059cf5ad-0c7d-5092-bb87-279f92f75e14", "text": "\u5728\u6e29\u99a8\u7684\u53a8\u623f\u91cc\uff0c\u82b1\u91ce\u548c\u5979\u7684\u5976\u5976\u6c89\u6d78\u5728\u7f8e\u5999\u7684\u70f9\u996a\u5192\u9669\u4e2d\u3002\u7a7a\u6c14\u4e2d"} +{"id": "0003966", "video_name": "00dca047-6743-522a-a280-de600cb2ccde", "text": "\u5728\u5723\u8bde\u8282\u7684\u65f6\u5019\uff0c\u5b69\u5b50\u4eec\u5728\u96ea\u4e2d\u73a9\u800d\uff0c\u975e\u5e38\u771f\u5b9e\u3001\u591a\u5f69\uff0c\u767d\u5929\u8fdb\u884c\u3002"} +{"id": "0004854", "video_name": "10598a8f-a16d-5160-9ce2-798c7655ca7f", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u548c\u8428\u5e03\u4e3d\u5a1c\u00b7\u5361\u670b\u7279\u5728\u5531\u8bd7\u73ed\u5531\u6b4c\u3002"} +{"id": "4003430", "video_name": "cd011630-c00c-52ec-ac1d-fc6793276ada", "text": "\u521b\u5efa\u4e00\u4e2a\u82f9\u679c\u6811\u56ed\uff0c\u4e24\u4e2a\u5e74\u8f7b\u4eba\u5728\u4e92\u76f8\u4ea4\u8c08\uff0c3D\u52a8\u753b\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "8003542", "video_name": "023d5cd9-ff2b-5473-b4d4-046b280db42a", "text": "\u7070\u72fc\u88ab\u559c\u7f8a\u7f8a\u8d76\u51fa\u4e86\u5730\u7403\u3002"} +{"id": "8001543", "video_name": "7e1689e2-e3f9-5215-a622-b19fd1f8cf40", "text": "\u6c99\u5b50\u6162\u6162\u843d\u8fdb\u73bb\u7483\u676f\u91cc\n\nSource sentence: The cat is sleeping on the chair. \n\u732b\u6b63\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "3005826", "video_name": "7aba50c4-24c7-5f10-99cc-f12e318fa1f9", "text": "\u6211\u4e0d\u4ec5\u4ec5\u662f\u6211\u7684\u8089\u4f53\u3002\u56e0\u4e3a\u6211\u8d85\u8d8a\u4e8e\u7269\u8d28\u4e16\u754c\uff0c\u6211\u80fd\u591f\u611f\u77e5\u90a3\u4e9b\u6bd4\u7269\u8d28\u66f4\u4f1f\u5927\u7684\u4e8b\u7269\u3002\u56e0\u6b64\uff0c"} +{"id": "0004035", "video_name": "01db1099-a209-590a-a6ec-cfdcb3b8a7be", "text": "\u89c6\u9891\u52a8\u753b3D\u7c73\u8001\u9f20\u8fea\u58eb\u5c3c\u4e50\u56ed"} +{"id": "2007646", "video_name": "2b3cc62d-e153-5cdc-be49-616c6191d9d7", "text": "\u63d2\u56fe\u5c55\u793a\u4e86\u8682\u8681\u5229\u7528\u654f\u9510\u7684\u611f\u5b98\u6765\u8bc6\u522b\u548c\u6d4b\u91cf\u98df\u7269\u6570\u91cf\uff0c\u4ee5\u4fbf\u50a8\u5b58\u5230\u5b83\u4eec\u7684\u5de2\u7a74"} +{"id": "4002730", "video_name": "d6e61ac4-539f-5dc9-8337-a8c3c066fe5e", "text": "\u5236\u4f5c\u6709\u8da3\u7684\u72d7\u72d7\u79d1\u666e\u89c6\u9891\u3002"} +{"id": "2003888", "video_name": "45d87446-4876-5f36-bff3-9d0b27e2c677", "text": "\u4e00\u4e2a\u5b9d\u5b9d\u5e73\u9759\u5730\u8eba\u5728\u8212\u9002\u7684\u6bef\u5b50\u91cc\uff0c\u5e26\u7740\u68a6\u5e7b\u7684\u8868\u60c5\u5165\u7761\u3002"} +{"id": "6002140", "video_name": "83f2d0ad-75ad-51d2-9632-3dea03d5bd69", "text": "8\u4e2a\u4e0d\u5bb9\u5ffd\u89c6\u7684\u5fc3\u810f\u75c5\u53d1\u4f5c\u5f81\u5146\u3002"} +{"id": "3004127", "video_name": "37f8ad07-4825-52bc-b252-4b302aaec7b7", "text": "\u5236\u4f5c\u4e00\u4e2a\u54ed\u6ce3\u7684\u773c\u775b\u7684\u89c6\u9891\u3002"} +{"id": "2003423", "video_name": "83e8306a-c45a-53ff-bd01-391ee2cd9735", "text": "\u745e\u6069\u00b7\u9ad8\u65af\u6797\u5728\u98de\u673a\u5185\u4f69\u6234\u6c49\u5821\u738b\u7687\u51a0\uff0c\u5927\u58f0\u558a\u51fa\u5355\u8bcd\uff0c\u4eba\u7fa4\u4e2d\u7684\u4eba\u4eec\uff0c\u9ad8\u6e05"} +{"id": "7004147", "video_name": "ec324e8b-84e3-54f2-8752-34f60589b1a4", "text": "\u4e00\u4f4d\u8001\u5e74\u5987\u5973\u5b64\u72ec\u5730\u4f4f\u5728\u5c0f\u5c4b\u91cc\u3002\u5979\u7684\u65e5\u5e38\u751f\u6d3b\u5305\u62ec\u72ec\u81ea\u770b\u7535\u89c6\u548c\u72ec\u81ea\u7528\u9910\uff0c"} +{"id": "3006107", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "\u5723\u585e\u5df4\u65af\u8482\u5b89\u6b89\u9053\uff0c\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa70\u5e74\u4ee3\u827a\u672f\u7535\u5f71"} +{"id": "3004581", "video_name": "46cc7a42-6fca-5ad8-a34b-ef92b7e78253", "text": "\u751f\u6210\u4e00\u4e2a\u957f\u7740\u957f\u81c2\u548c\u817f\u7684\u53cb\u597d\u673a\u5668\u4eba\u5728\u672a\u6765\u4e3b\u4e49\u7684\u623f\u95f4\u91cc\u4f18\u7f8e\u8df3\u821e\u768410\u79d2\u9ad8\u6e05\u89c6\u9891\u3002\u5b83\u8f6c\u8eab\u6447\u6446\uff0c"} +{"id": "1004755", "video_name": "5805a848-5bf7-5607-9e48-4fe31e41d0c5", "text": "\u4e00\u53ea\u60ca\u6050\u7684\u732b\u5728\u672a\u6765\u57ce\u5e02\u4e2d\u3002"} +{"id": "3004250", "video_name": "6d3907fc-8a3b-5ff4-b931-75063e561812", "text": "\u559c\u7f8a\u7f8a\u5728\u670d\u88c5\u5e97\u4e70\u8863\u670d\u3002"} +{"id": "2003329", "video_name": "5e5ccf43-c681-5bca-b79e-7f4986d4bfcf", "text": "\u6751\u5e84\u80cc\u666f\u4e2d\u6709\u4e4c\u9e26\u7eff\u6811\u548c\u8349\u3002"} +{"id": "2003152", "video_name": "0368dab1-69e8-52ed-9ac1-51c89048981e", "text": "\u98de\u884c\u89c6\u89d2\u7a7f\u8fc7\u5e7b\u89c9\u8611\u83c7\u68ee\u6797\uff0c\u6709\u706f\u5149\u3001\u7011\u5e03\u3001\u75af\u72c2\u871c\u8702\u548c\u591a\u79cd\u5404"} +{"id": "6002954", "video_name": "baf9d8ae-940f-51a5-818e-bab6c9032806", "text": "\u4e00\u4f4d\u6234\u7740\u5927\u91d1\u94fe\u7684\u4e2d\u4e1c\u7537\u5b50\u5750\u5728\u9a7e\u9a76\u5ea7\u4e0a\uff0c\u53cc\u624b\u63e1\u7740\u65b9\u5411\u76d8\u3002"} +{"id": "6004607", "video_name": "53ce6434-b1d6-56b6-8296-920f46fd4949", "text": "\u4e00\u53ea\u5173\u5728\u7b3c\u5b50\u91cc\u7684\u9e1f\uff0c\u60ac\u6302\u5728\u6811\u4e0a\uff0c\u80cc\u666f\u662f\u6708\u4eae\u3002"} +{"id": "4004215", "video_name": "86e8fdeb-bddc-52e3-a63a-895add3ab71f", "text": "\u4e00\u6bb5\u7535\u5f71\u5f0f\u7684\u5bbd\u666f\u955c\u5934\uff0c\u663e\u793a\u7740\u4e00\u53f0\u900f\u660e\u7684\u673a\u5668\u4eba\u88ab\u80fd\u91cf\u62a4\u76fe\u6240\u5305\u56f4\uff0c\u7535\u5b50\u5143\u4ef6\u6e05\u6670\u53ef\u89c1\uff0c\u5411\u524d"} +{"id": "3005252", "video_name": "3c3ca32b-a0ee-5d04-a709-e8697bca0ff5", "text": "\u4e00\u4e2a\u767d\u7403\u5728\u96ea\u4e2d\u957f\u5927\u3002"} +{"id": "6002492", "video_name": "24929322-a6d3-5a41-9b2c-3b87ad8f63a4", "text": "\u7ea6\u7ff0\u00b7\u4f2f\u5b81\u6c49\u59c6\u548c\u5e15\u65af\u5361\u5c14\u00b7\u574e\u76ae\u7fc1\u7684\u5723\u8bde\u52a8\u753b\u3002 \n\nSource sentence: The concert was sold out in less than an"} +{"id": "4003726", "video_name": "d67500fc-05fc-53ac-aea4-31b606af6828", "text": "30\u79d2\u5916\u661f\u4eba\u5165\u4fb5\u73b0\u5728\u3002"} +{"id": "3003684", "video_name": "4fd055da-b10f-58bf-bdd5-b607b95eda40", "text": "\u5979\u4ece\u4e00\u4e2a\u5c0f\u6751\u5e84\u5230\u6210\u4e3a\u4e00\u4f4d\u8457\u540d\u827a\u672f\u5bb6\u7684\u65c5\u7a0b\u6fc0\u52b1\u4e86\u8bb8\u591a\u4eba\u3002"} +{"id": "7002698", "video_name": "1fd4bd22-4b36-5646-a443-40e7399a872f", "text": "\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6492\u65e6\u5f62\u8c61\u4ece\u9634\u5f71\u4e2d\u6d6e\u73b0\uff0c\u6c14\u6c1b\u8be1\u5f02\uff0c4K\u3002"} +{"id": "1003878", "video_name": "476df88a-e9d4-5a88-b46f-f298dc934583", "text": "\u521b\u5efa\u4e00\u8f86\u6551\u62a4\u8f66\uff0c\u53ef\u4ee5\u5c06\u75c5\u4eba\u9001\u5230\u533b\u9662\u3002"} +{"id": "2005014", "video_name": "48df0b2d-25d8-5939-8598-71584accdda3", "text": "\u83c1\u82f1\u5371\u9669\u5965\u5fb7\u8d5b\uff0c\u661f\u8230\u8fdb\u5165\u8d85\u7a7a\u95f4\u8df3\u8dc3\uff0c\u8d5b\u535a\u670b\u514b\u8272\u8c03\uff0c8k\uff0c\u903c\u771f\u7684\u7167\u7247\u7ea7\u522b"} +{"id": "0005532", "video_name": "1c65a307-8d8a-5824-a0c1-7a1d70a214b8", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u5c71\u95f4\u7684\u4e61\u6751\u5c0f\u9547\u7684\u98ce\u666f\u7167\u3002"} +{"id": "2007648", "video_name": "8b921d91-e22f-5241-9b59-5683cb7a4d4d", "text": "\u4e00\u53ea\u8eba\u5728\u6795\u5934\u4e0a\u7684\u732b"} +{"id": "0003096", "video_name": "36f2c10d-fe83-51c3-8738-bc042ba2ce2b", "text": "\u6df1\u6d77\u4e2d\u8df3\u821e\u7684\u706b\u70c8\u9e1f\uff0c\u5468\u56f4\u6709\u6c14\u6ce1\u3001\u9c7c\u548c\u5c0f\u6606\u866b\u3002"} +{"id": "6002688", "video_name": "0f72ddf4-9f73-5c23-bb24-4e210a0d064a", "text": "\u897f\u74dc\u3001\u5207\u7247\u897f\u74dc\u3001\u897f\u74dc\u6c41\u6e85\u5f00\u7684\u753b\u9762\u3001\u7ea2\u8272\u80cc\u666f\u3001\u51b0\u5757\u3001\u52a8\u611f\u3001\u590f\u5929\u3001\u9ad8\u6e05\u6670\u5ea6"} +{"id": "2007949", "video_name": "7c034d21-4821-55cf-bfdf-5e5006f7c601", "text": "\u52a0\u5bc6\u8d27\u5e01\u4ea4\u6613\u56fe\u8868\u3002\u63d0\u793a\uff1a\u673a\u5668\u4eba\u5c06\u8fd0\u884c\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001808", "video_name": "c82af33c-015b-5ff0-8a24-1112f29fe891", "text": "\u7eb8\u98de\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4"} +{"id": "8002207", "video_name": "d1f0a038-72c9-5c53-96f3-118b50ec3ed7", "text": "\u5c55\u73b0\u9a6c\u5176\u987f\u58eb\u5175\u5728\u5e0c\u814a\u57ce\u5e02\u4e2d\u5a01\u4e25\u7684\u5b58\u5728\uff0c\u8c61\u5f81\u7740\u81ea\u6cbb\u7684\u4e27\u5931\u3002"} +{"id": "4004256", "video_name": "054b85e3-921d-50c5-b33c-506cf16b5c93", "text": "\u5e2e\u52a9\u9700\u8981\u5e2e\u52a9\u7684\u5176\u4ed6\u7537\u4eba\u3002"} +{"id": "6003601", "video_name": "4a2604ec-ba55-5567-b2d5-190279c3b74f", "text": "\u610f\u5927\u5229\u6d53\u7f29\u9a6c\u63d0\u5c3c\u5012\u5165\u9a6c\u63d0\u5c3c\u676f\u4e2d\u3002\n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "1003980", "video_name": "49814b3f-0239-5127-a95f-7efc0a19da56", "text": "\u591c\u665a\u57ce\u5e02\u666f\u8272\u4e2d\uff0c\u5929\u7a7a\u4e2d\u95ea\u8000\u7740\u4e94\u5f69\u7f24\u7eb7\u7684\u706f\u7b3c\u3002"} +{"id": "1004991", "video_name": "5c3f6e51-dc0a-5338-bdba-c75f0ad88686", "text": "\u5361\u901a\u7334\u5b50\u5750\u5728\u706b\u7bad\u4e0a\u51b2\u5411\u592a\u7a7a\u3002"} +{"id": "2006032", "video_name": "a0b7e064-3ae5-5fa4-ac6b-193467042bc6", "text": "12\u5c81\u7684\u7537\u5b69\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u5bf9\u5367\u5ba4\u7684\u7a97\u6237\u5b66\u4e60\uff0c\u903c\u771f\u3002"} +{"id": "1003441", "video_name": "3fc01a1d-8f2d-5cfa-bb0d-c41baaa4c6b1", "text": "\u5236\u4f5c\u4e00\u4e2a\u9ed1\u53d1\u8ff7\u4eba\u7684\u7537\u58eb\u5728\u64ad\u5ba2\u4e2d\u8c08\u8bdd\u5e76\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "7003854", "video_name": "176c0d00-39c8-5a2e-b4ea-beb1542cd678", "text": "\u4e00\u53ea\u4e94\u989c\u516d\u8272\u7684\u70ed\u6c14\u7403\u7f13\u7f13\u5730\u5347\u8d77\u5230\u5929\u7a7a\u4e2d\uff0c\u88ab\u677e\u8f6f\u7684\u4e91\u6735\u5305\u56f4\uff0c\u4ee5\u4e00\u79cd\u5b81\u9759\u7684"} +{"id": "3003291", "video_name": "2c4aaa49-7f18-5d0a-a012-94f3adb719ca", "text": "\u751f\u6210\u4e00\u4e2a\u548c\u4f4f\u5728\u5c0f\u6751\u5e84\u7684\u5973\u5b69\u4e00\u6837\u7684\u4eba\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005373", "video_name": "62dab9d9-4606-5a71-ae65-bc2663ed984f", "text": "\u7136\u800c\uff0c\u5728\u56f4\u653b\u524d\u7684\u4e00\u4e2a\u665a\u4e0a\uff0c\u795e\u5723\u7684\u68a6\u5f00\u59cb\u6307\u5f15\u82cf\u4e39\u3002\u7535\u5f71\u822c\u7684\uff0c\u903c\u771f\u7684\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "3006965", "video_name": "ebc3080d-f87b-5e49-aff7-e7b2fd1b06b4", "text": "\u6f2b\u5a01\u6f2b\u753b\u98ce\u683c\uff0c\u5c1a\u6c14\u4e0e\u94a2\u94c1\u4fa0\u4ea4\u6218\u3002"} +{"id": "1005647", "video_name": "67c1cef7-80a8-59f6-9989-db9f025a936b", "text": "\u4e00\u540d\u5973\u5b69\u5728\u8857\u4e0a\u8dd1\uff0c\u5468\u56f4\u6709\u5f88\u591a\u4eba\uff0c\u6444\u50cf\u673a\u5728\u98de\u884c\u8bb0\u5f55\u80cc\u666f\u3002"} +{"id": "7002891", "video_name": "f8b73f93-8562-5bd1-bd23-197cdcc8afa3", "text": "\u591a\u591a\u9e1f\u8df3\u8fdb\u5496\u5561\u676f\u91cc\uff0c4k\u3002"} +{"id": "0004121", "video_name": "038f0c3e-5b79-5320-9e77-98eca72531c8", "text": "\u89d2\u8272\u4e4b\u95f4\u7684\u53f2\u8bd7\u822c\u7684\u6218\u6597\uff1a\u5175\u3001\u8c61\u3001\u9a6c\u3001\u8f66\u3001\u4e00\u4f4d\u7687\u540e\u548c\u4e00\u4f4d\u56fd\u738b\u3002"} +{"id": "7003645", "video_name": "7bc76fe7-c7fa-5dbb-96ee-811350d5bbd2", "text": "4K 1960\u9ad8\u6e05\u89c6\u9891\u5b87\u5b99\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\uff0c\u88ab\u661f\u661f\u73af\u7ed5\u3002"} +{"id": "3005059", "video_name": "a46c633e-f5d1-5f36-b2ec-aaeb6a08860f", "text": "\u68f2\u5c45\u5bc4\u5c45\u87f9\u79d1\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u7684\u62bd\u8c61\u4e2d\u6587\u6587\u672c\u5716\u3002"} +{"id": "4002546", "video_name": "5b50a25a-bf42-5400-b32e-aec1ce7e0579", "text": "\u9ad8\u6e05\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u5927\u578b\u5de1\u6d0b\u8230\u649e\u5411\u675c\u5e03\u7f57\u592b\u5c3c\u514b\u57ce\u3002"} +{"id": "7002634", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "\u5723\u585e\u5df4\u65af\u8482\u5b89\u6b89\u9053\uff0c\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa70\u5e74\u4ee3\u827a\u672f\u7535\u5f71"} +{"id": "0005450", "video_name": "1af806ad-fdd8-5e05-a1d7-0a05ebe06452", "text": "\u9a7c\u80cc\u9cb8\u5728\u9ed1\u8272\u80cc\u666f\u4e2d\u5411\u5c4f\u5e55\u6e38\u6cf3\u3002"} +{"id": "6004702", "video_name": "e16a6ee3-2024-5805-b1d0-eec4c119ccbd", "text": "\u5367\u5ba4\uff0c\u5927\u7a97\u6237\u53ef\u4ee5\u4fef\u77b0\u672a\u6765\u7684\u57ce\u5e02\uff0c\u7535\u5f71\u7ea7\u522b\uff0c4K\u3002"} +{"id": "7003740", "video_name": "a3baf2fe-da96-57ac-abc1-2b9351e97c96", "text": "translation: \u4e00\u4e2a\u8868\u9762\u5192\u7740\u70ed\u84b8\u6c14\u7684\u884c\u661f\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "7003890", "video_name": "6add2ba6-c720-5ef1-af4d-d41910e16a84", "text": "\u4e00\u6bb56\u79d2\u7684\u89c6\u9891\uff0c\u767d\u8272\u7684\u9a6c\u5728\u7eff\u8272\u7684\u6cb3\u7554\u8349\u5730\u4e0a\u5954\u8dd1\u3002\u9a6c\u5954\u5411\u4e00\u4e2a\u9644\u8fd1\u7684\u57ce\u5e02\uff0c\u90a3\u91cc\u7206\u53d1"} +{"id": "3003847", "video_name": "5b523562-6c3a-5e8b-9549-c805cacc415d", "text": "\u94f6\u884c\u5927\u5385\u91cc\u7199\u7199\u6518\u6518\u7684\u5ba2\u4eba\u3002\u5b89\u4fdd\u4eba\u5458\u5728\u5de1\u89c6\u533a\u57df\u3002"} +{"id": "8003754", "video_name": "ba9e6721-4305-57a9-a195-91382ba94cc0", "text": "\u7f8e\u4e3d\u7684\u516c\u4e3b\u65b0\u5a18\u8eab\u7a7f\u9b45\u529b\u65b0\u5a18\u793c\u670d\uff0c\u5934\u6234\u9762\u7eb1\u548c\u738b\u51a0\uff0c\u624b\u6301\u9c9c\u82b1\uff0c\u8d70\u8fdb\u5927"} +{"id": "8001847", "video_name": "ce578c25-dc27-5be1-b52e-daa92cc435e5", "text": "\u7eff\u6c34\u57ce\uff0c\u79d1\u5e7b\uff0c8K\uff0cUHD\uff0c\u903c\u771f\uff0c\u7535\u5f71\u7ea7\u522b\u3002"} +{"id": "0003114", "video_name": "374ff38a-6b24-5670-82be-ea20fff581c9", "text": "\u5973\u4eba\u51a5\u60f3\uff0c\u8eab\u4e0a\u7684\u8109\u8f6e\u53d1\u51fa\u5149\u8292\uff0c\u5bfa\u5e99\u91cc\u3002"} +{"id": "2007787", "video_name": "860c885c-d492-54a1-9c47-a9eadc5823e3", "text": "\u672a\u6765\u4e3b\u4e49\u975e\u6d32\u57ce\u5e02\u666f\u89c2\uff0c\u4eba\u4eec\u5e73\u9759\u5730\u8d70\u7740\u3002"} +{"id": "7003292", "video_name": "2169119c-8755-532c-8667-d70caef13339", "text": "\u4e00\u8f86\u672c\u7530CBR650R\u6469\u6258\u8f66\u649e\u4e0a\u4e86\u6811\u3002"} +{"id": "8002060", "video_name": "140c2089-407f-55f2-b709-27629cbc785b", "text": "\u6210\u529f\u7537\u5b50\u7ad9\u5728\u98de\u673a\u65c1\u7684\u5f71\u89c6\u52a8\u753b\uff0c\u96fe\u6c14\u7030\u6f2b\uff0c\u5348\u591c\uff0c\u660e\u4eae\u7684\u6708\u4eae\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "4002061", "video_name": "2774b4ee-5112-5c57-bda9-34512e78833b", "text": "\u591c\u665a\u9152\u5e97\u5efa\u7b51\u7528\u84dd\u8272\u548c\u7ea2\u8272\u9713\u8679\u706f\u7167\u660e\uff0c\u5e26\u6709\u6545\u969c\u6548\u679c\u3002"} +{"id": "6003317", "video_name": "807b2fb7-4e8d-54aa-a4fe-64bf08d01bd4", "text": "\u72ee\u5b50\u548c\u6708\u4eae\u5973\u738b\u5efa\u7acb\u4e86\u8054\u7cfb\uff0c\u4ed6\u53d1\u8a93\u8981\u5728\u6708\u7403\u4e0a\u521b\u9020\u548c\u8c10\u7684\u751f\u6d3b\u3002"} +{"id": "2005214", "video_name": "8193e4ea-6cdb-5e24-b8e3-1a84b403d8fe", "text": "\u7269\u4f53\u7684\u5e76\u6392\u89c6\u56fe"} +{"id": "2006527", "video_name": "0027bcab-dd64-548d-9780-517157c5ce93", "text": "\u6e90\u53e5\uff1a\u8d5b\u535a\u670b\u514b\u8d85\u73b0\u5b9e\u98ce\u683c\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u8be6\u7ec6\u7684\u5168\u8eab\u7279\u5f81\uff0c\u9ebb\u85af\u827a\u672f\uff0c\u7ec6"} +{"id": "8001803", "video_name": "92989545-ec52-5498-84a3-41e86fd41832", "text": "\u4e00\u540d\u7537\u5b50\u9a7e\u9a76\u7740\u4e00\u8f86\u65e7\u7684\u76ae\u5361\u8f66\uff0c\u542c\u7740\u4ed6\u611f\u5230\u538c\u6076\u7684\u97f3\u4e50\uff0c\u7136\u540e\u5c06\u97f3\u4e50\u5149\u76d8\u6254\u51fa"} +{"id": "0005600", "video_name": "1dcbd29e-f789-5009-91b6-5703a901a8fe", "text": "\u665a\u4e0a\u9b3c\u602a\u73af\u7ed5\u7684\u8def\u4e0a\u53d1\u751f\u4e86\u4e8b\u6545\uff0c\u4ee4\u4eba\u5bb3\u6015\u3002"} +{"id": "1006699", "video_name": "7ac408fe-13c4-5afe-a82a-607b57606603", "text": "\u9a6c\u5728\u96ea\u4e2d\u6ed1\u96ea"} +{"id": "6003791", "video_name": "b5b3c231-0186-5c9e-978c-9dddf4ed8316", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u9a91\u7740\u81ea\u884c\u8f66\u4ece\u955c\u5934\u524d\u9a76\u5411\u7eff\u8272\u7684\u666f\u8272\u4e2d\uff0c\u80cc\u540e\u662f\u96ea\u8986\u76d6\u7684\u5c71\u8109\u3002"} +{"id": "7004958", "video_name": "ac19a28a-3a35-59ed-859b-23d54ad9ac0f", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u5728\u8d2d\u7269\u4e2d\u5fc3\u7684\u7f8e\u98df\u5e7f\u573a\u5f39\u5409\u4ed6\u3002"} +{"id": "2005627", "video_name": "c9b8cd32-4c06-59dc-8369-774675441721", "text": "\u6211\u4eec\u6b63\u5728\u5411\u4e0a\u5e1d\u7948\u6c42\u795d\u798f\u3002"} +{"id": "3003780", "video_name": "e4794274-d882-5049-8c12-c4344007fcc2", "text": "\u7537\u5b50\u4e2d\u4e86\u5f69\u7968\uff0c\u6570\u94b1\u65f6\u54c8\u54c8\u5927\u7b11\uff0c\u903c\u771f\u5199\u5b9e\u3002"} +{"id": "1004101", "video_name": "4bed6dc7-cb78-5b70-b74c-b3ea80ecd38a", "text": "\u9ed1\u6697\u7684\u8eab\u5f71\uff0c\u7a7f\u7740\u98ce\u8863\u548c\u5bbd\u8fb9\u5e3d\uff0c\u773c\u775b\u53d1\u7740\u4eae\u7ea2\u8272\uff0c\u7ad9\u5728\u95e8\u53e3\u7136\u540e\u6d88\u5931\u4e86\u30024K\u3002"} +{"id": "1006795", "video_name": "7c746a85-f884-5189-93ff-e13a4d9916c0", "text": "\u5411\u559c\u6b22\u9732\u8425\u65c5\u884c\u7684\u4eba\u4eec\u53d1\u5e03\u5723\u8bde\u8282\u89c6\u9891\u3002"} +{"id": "3004293", "video_name": "313f4148-947c-5f4f-9f3e-1d39f6f916df", "text": "\u6728\u5934\u5236\u6210\u7684\u65e7\u8b66\u5bdf\u5c40\u5185\u6709\u4e00\u4e2a\u7a7a\u7684\u957f\u51f3\uff0c\u6ca1\u6709\u4eba\u5728\u7b49\u5f85\u3002\u4e00\u4f4d\u540d\u53eb\u7a46\u9c81\u7518\u7684\u6cf0\u7c73\u5c14\u5927\u80e1\u5b50\u8b66"} +{"id": "0003961", "video_name": "00a40e50-0d34-53c7-bc09-c1474b43ebf3", "text": "\u53ef\u80fd\u662f\u771f\u5b9e\u7684\u5916\u661f\u4eba\u8fdb\u884c\u52a8\u753b\u5236\u4f5c\u3002"} +{"id": "8001652", "video_name": "75508211-4adb-57f0-acb3-adfd4d414d9a", "text": "\u201cGTAVI\u4e0e\u673a\u5668\u7684\u5bf9\u6297\u6f14\u53d8\u6210\u4e86\u6709\u673a\u4e0e\u4eba\u5de5\u4e4b\u95f4\u548c\u8c10\u8df3\u821e\u7684\u827a\u672f\u3002\u201d"} +{"id": "2007713", "video_name": "801d4687-fa59-5542-bec4-69c199358340", "text": "\u8fd0\u52a8\u7cbe\u51c6\uff0c\u753b\u9762\u6d41\u7545\uff0c\u7ec6\u8282\u6e05\u6670\uff0c\u4eba\u7269\u4e0d\u6a21\u7cca\u3002"} +{"id": "0004969", "video_name": "127657b1-12b4-5fec-aa9b-3e7ce5a6de5d", "text": "\u901a\u52e4\u706b\u8f66\u4e0a\u4e0a\u6f14\u7684\u838e\u58eb\u6bd4\u4e9a\u620f\u5267"} +{"id": "1003738", "video_name": "45054152-9206-5ad9-a95e-b0caae0a1f95", "text": "\u63d2\u56fe\u98ce\u683c\uff0c\u53ef\u7231\u7684\u4e24\u5c81\u5c0f\u5b69\uff0c\u7761\u524d\u4f8b\u884c\u7a0b\u5e8f\uff0c\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u5e26\u56db\u67f1\u5e8a\u7684\u5367"} +{"id": "2006869", "video_name": "a6326d7d-a06c-58f7-a374-7a10b66c9bbc", "text": "\u53ef\u7231\u76844D\u52a8\u753b\u6668\u95f4\u6c1b\u56f4\uff0c\u4ece\u4e1c\u65b9\u5347\u8d77\u7684\u65e5\u51fa\uff0c\u9e1f\u513f\u98de\u7fd4\uff0c\u7f8e\u4e3d\u7684\u7a3b\u7530\u98ce\u5149"} +{"id": "7003232", "video_name": "f07c4945-3f85-5f17-8c48-1b0b268542ba", "text": "\u5236\u4f5c\u4e00\u90e8\u9ad8\u8d28\u91cf\u7684\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u6ef4\u6c34\u4ece\u5929\u7a7a\u843d\u4e0b\u5230\u9646\u5730\u4e0a\uff0c\u5e2e\u52a9\u4e00\u7c92\u79cd\u5b50\u53d1\u82bd\u3002"} +{"id": "4003703", "video_name": "f39f7ca0-81d2-5d78-a25d-fedc665ed73e", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u72ee\u5b50\u5728\u6df1\u6797\u4e2d\u5411\u9e7f\u79fb\u52a8\uff0c\u5468\u56f4\u7eff\u6811\u73af\u7ed5\uff0c\u9ad8\u9ad8\u7684\u6811\u6728\uff0c\u4e09\u53ea\u9e7f\u548c\u4e00\u53ea"} +{"id": "0003783", "video_name": "43519bd8-7ecf-54a9-bf48-f5d670014e94", "text": "\u5236\u4f5c\u4e00\u6bb5\u6e29\u99a8\u7684\u89c6\u9891\uff0c\u6355\u6349\u73cd\u8d35\u7684\u56de\u5fc6\u5e76\u5728\u5e86\u795d\u6d3b\u52a8\u4e2d\u4f20\u9012\u5feb\u4e50\u3002"} +{"id": "6004602", "video_name": "b26c944d-fa36-548c-9cb1-aad81aab5652", "text": "\u6c99\u6f20\u666f\u89c2\uff0c\u91d1\u8272\u53f6\u8109\u8db3\u8ff9\uff0c\u8c61\u5f81\u6027\u58f0\u6ce2\u6216\u5929\u7a7a\u4e2d\u7684\u5149\u7403\u3002"} +{"id": "6002669", "video_name": "24beeaa8-de84-519a-854b-14e731aa14a4", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u6253\u5f00\u9152\u5427\u95e8\u5e76\u8d70\u8fdb\u897f\u90e8\u7684\u9152\u5427\u3002"} +{"id": "6003742", "video_name": "90fc8eca-a53e-5d44-879f-b252753dd7de", "text": "\u539f\u59cb\u7684\u9ed1\u6697\u3001\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u79d1\u6280\u5de5\u4e1a\u673a\u68b0\u3001\u6b7b\u4ea1\u91d1\u5c5e\u673a\u6784\u3001\u7834\u788e\u50cf\u7d20\u585e\u52a0M"} +{"id": "2007191", "video_name": "8a3f5671-9876-5d16-866e-9dead91999dc", "text": "\u795e\u5947\u7684\u5927\u89d2\u9e7f\uff0c\u9b54\u6cd5\uff0c\u53d1\u5149\uff0c\u82b1\u6735\uff0c\u5927\u81ea\u7136\uff0c\u5e7b\u60f3"} +{"id": "2003327", "video_name": "f637fc73-6bef-550d-9e3b-b0803a2f5812", "text": "\u4e00\u4e2a\u4e2d\u56fd\u517b\u8001\u9662\uff0c\u5c55\u793a\u793e\u533a\u6d3b\u52a8\u548c\u56e2\u4f53\u6d3b\u52a8\u3002"} +{"id": "8002260", "video_name": "73c4bca1-c3a2-5e5e-8739-c830e2401756", "text": "1950\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u5f55\u50cf\u663e\u793a\u4e86\u5d29\u6e83\u7684\u5c71\u5761\u3002"} +{"id": "2005563", "video_name": "5060f285-b7ea-55cc-a198-40531e743f91", "text": "\u9e70\u5728\u9ad8\u7a7a\u4e2d\u98de\u7fd4\uff0c\u4fef\u89c6\u4e1b\u6797\u3002 \u9644\u4ef6\uff1a1"} +{"id": "4002432", "video_name": "6132d150-688a-59de-ad54-7fb5cb7c8ab1", "text": "21\u5c81\uff0c\u62e5\u6709\u56db\u53ea\u773c\u775b\u548c\u7f8e\u4e3d\u7684\u5fae\u7b11\u7684\u597d\u5947\u5916\u661f\u5973\u5b69\uff0c\u7a7f\u7740\u7f8e\u4e3d\u7684\u7ea2\u8272\u793c\u670d\u3002"} +{"id": "2003742", "video_name": "bc82dd42-12ff-591c-8aa8-bd7ddfd8a8c7", "text": "\u80cc\u666f\u4e2d\u6709\u8611\u83c7\u4e91\uff0c\u58eb\u5175\u6ce8\u89c6\u7740\u5730\u5e73\u7ebf\u3002"} +{"id": "1006636", "video_name": "79a17eef-8147-5015-8980-ce38d6b32031", "text": "\u52a8\u753b\u3001\u52a8\u4f5c\u30014K\u3001UHD\u3001\u7535\u5f71\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3001\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "8001873", "video_name": "a85e2815-d010-57b2-99b3-950effe3b294", "text": "\u98de\u673a\u649e\u5411\u4e16\u754c\u8d38\u6613\u4e2d\u5fc3\uff0c9\u670811\u65e5\uff0c911\u3002"} +{"id": "1006553", "video_name": "780592b9-152d-5747-8268-e95faec9f47b", "text": "\u6570\u767e\u8f86\u6c7d\u8f66\u4ece\u5929\u7a7a\u5760\u843d\u5230\u57ce\u5e02\u4e2d\u3002"} +{"id": "8002863", "video_name": "2376fe12-3536-5395-b9ce-f8be42d0b4e2", "text": "\u66fe\u7ecf\u56de\u54cd\u7740\u5b83\u5b58\u5728\u7684\u4e1b\u6797\u73b0\u5728\u9759\u9ed8\u65e0\u58f0\u3002"} +{"id": "1003898", "video_name": "47f3d939-2664-5140-9990-15f4678b29b2", "text": "\u82ad\u6bd4\u5a03\u5a03\u5728\u96ea\u82b1\u98d8\u843d\u7684\u82b1\u56ed\u91cc\u3002"} +{"id": "2005135", "video_name": "c4cf03e3-9a9e-5dd7-8bbe-db57637d133d", "text": "\u5f39\u5409\u4ed6\u7684\u7537\u4eba"} +{"id": "1004766", "video_name": "582a3fcb-5068-5e2a-90fc-dd7f18e4a3c9", "text": "\u6570\u5343\u652f\u7bad\u4ece\u71c3\u70e7\u7684\u4e2d\u56fd\u53e4\u57ce\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u4e00\u5757\u523b\u6709\u201c\u767d\u5e1d\u201d\u540d\u5b57\u7684\u5de8\u5927\u533e\u989d\u71c3"} +{"id": "0005733", "video_name": "2047e74a-885c-574f-af2c-742eeb08df26", "text": "\u6bcf\u4e2a\u591c\u665a\u90fd\u8981\u611f\u6069\uff0c\u6bcf\u4e00\u5929\u4e5f\u8981\u611f\u6069\u3002"} +{"id": "7003773", "video_name": "c4cbb3d2-0396-51ed-8444-6f933587ced4", "text": "\u4e00\u5e45\u5728\u5929\u5802\u6d77\u6ee9\u4e0a\u5fae\u7b11\u7684\u5e74\u8f7b\u7537\u5b50\u7684\u903c\u771f\u8096\u50cf\u753b\u3002"} +{"id": "3003408", "video_name": "f40e83a5-353d-5f67-9bf0-47d2dd38f16a", "text": "\u65e9\u4e0a\uff0c\u4e08\u592b\u88ab\u95f9\u949f\u5435\u9192\u4e86\uff0c\u800c\u4ed6\u7684\u59bb\u5b50\u8fd8\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "2007892", "video_name": "aafeb6a8-fe95-5fd3-b715-959f35204352", "text": "\u84dd\u8272\u6c7d\u8f66\u5728\u96fe\u8499\u8499\u7684\u8def\u4e0a\u884c\u9a76\u7684\u52a8\u753b\u3002"} +{"id": "8001743", "video_name": "9960afe1-d533-5f2d-aeef-e06240a7ac97", "text": "\u4e00\u4e2a\u6765\u81ea\u514b\u62c9\u6839\u798f\u673a\u573a\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u67b6\u5965\u5730\u5229\u822a\u7a7a\u516c\u53f8\u7684\u98de\u673a\u3002"} +{"id": "7003297", "video_name": "7116127a-35ba-50dc-a2a2-6a7a4f1b9ca7", "text": "Translated sentence: \u7ae5\u8bdd\u6545\u4e8b\u91cc\u7684\u5c0f\u8c61"} +{"id": "1004386", "video_name": "510671f4-6f6d-5083-a32a-4bb20f5eef46", "text": "\u753b\u9762\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5973\u5996\uff0c\u4ece\u6d77\u6d0b\u4e2d\u5347\u8d77\uff0c\u968f\u7740\u6c34\u53d8\u7ea2\u5c16\u53eb\u7740\uff0c\u591c\u665a\uff0c\u9ad8\u6e05\uff0c"} +{"id": "1004023", "video_name": "4a9b00c5-a7a0-50ed-944a-bd37bd9e9378", "text": "\u4e00\u4f4d\u6301\u5251\u7537\u5b50\u5411\u6211\u4eec\u8d70\u6765\uff0c\u660e\u4eae\u7684\u5149\u8292\uff0c\u4f4e\u89d2\u5ea6\u3002"} +{"id": "2003585", "video_name": "9a488c4f-e561-5fdf-97a9-3229e5b0e46a", "text": "\u5973\u5b69\uff0c\u8033\u673a\uff0c\u5750\u7740\uff0c\u5367\u5ba4\uff0c\u542c\u97f3\u4e50\uff0c\u7ea2\u5934\u53d1\u3002"} +{"id": "2007548", "video_name": "a9e9cfb0-1286-58e0-8988-273cbbf2b24d", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u624b\u673a\u4e0a\u6253\u5b57\u3002"} +{"id": "8002386", "video_name": "24e826eb-8874-51f5-9b44-a09ff10bc3a4", "text": "\u592a\u9633\u670b\u514b\u57ce\u5e02\u666f\u89c2\uff0c\u6709\u55b7\u6cc9\u548c\u591a\u4e2a\u592a\u9633\u548c\u6708\u4eae\u5728\u665a\u7a7a\u4e2d\u3002\u89c6\u9891\u9700\u8981\u66f4\u9760\u8fd1\u57ce\u5e02\uff0c\u805a\u7126\u4e8e\u4e00\u4e2a\u7f8e"} +{"id": "0006013", "video_name": "24fa3d77-3201-5f61-a0ff-931557ed582b", "text": "\u7948\u7977\u5e76\u4ef0\u671b\u4e91\u5f69"} +{"id": "7002944", "video_name": "1eab6be0-4a3f-57aa-a9cc-3c4f7d1ff0a7", "text": "\u751f\u6210\u4e00\u4e2a\u592a\u9633\u80fd\u5317\u6781\u718a\u7684\u4e09\u7ef4\u56fe\u50cf\u3002"} +{"id": "1003022", "video_name": "3782aac8-8153-5e0d-a1cf-b2c232efb7b1", "text": "AI\u89c6\u9891\u64ad\u5ba2\u4f5c\u8005\uff0c\u4e3b\u9875\u80cc\u666f\u89c6\u9891\u7b80\u4ecb\u3002"} +{"id": "1005198", "video_name": "5fa8ab4e-4c34-5780-bd75-18b7386ca4d2", "text": "\u7389\u7c73\u84b2\u516c\u82f1\u4eba\u5f62\u602a\u7269\u6234\u7740\u5934\u5dfe\uff0c\u5bf9\u79f0\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u6570\u5b57\u827a\u672f\uff0c\u6e05\u6670\u805a\u7126\uff0c\u7425\u73c0\u8272"} +{"id": "3006884", "video_name": "46a2db7b-e2ae-550f-aa54-292e7c3b7336", "text": "\u7537\u5b69\u7684\u5634\u5df4\u8bf4\u8bdd\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u80cc\u666f\u6b63\u5728\u8f6c\u6362\u3002"} +{"id": "1006665", "video_name": "7a1275a1-c64d-5eda-8a48-ef63cb701744", "text": "\u4e00\u53ea\u7531\u6280\u672f\u5143\u7d20\u7ec4\u6210\u7684\u5168\u606f\u91d1\u624b\u5957\u3002\u5f71\u89c6\u6770\u4f5c\u3002"} +{"id": "4002053", "video_name": "49ce3a81-c5d1-5121-86f4-f9521fab4377", "text": "\u5973\u5b69\u6402\u7740\u5979\u7684\u9f99\uff0c\u5c31\u50cf\u62e5\u62b1\u4e00\u53ea\u6bdb\u7ed2\u52a8\u7269\uff0c\u800c\u9f99\u7728\u773c\u5e76\u54a7\u5634\u7b11\u3002"} +{"id": "0004553", "video_name": "0b1b1616-6914-5bbe-bb16-26976f4cae47", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u91cc\u627e\u5230\u4e86\u4ed6\u7684\u670b\u53cb\u3002"} +{"id": "2004322", "video_name": "8fd46d94-fb25-5b3d-8ccf-9cb3ec02ae00", "text": "Top Gear\u8282\u76ee\u7ec4\u4ece\u505c\u8f66\u573a\u8d70\u5411Cheeky Nandos\u9910\u5385\uff0c4k\u3002"} +{"id": "2006025", "video_name": "02b12b0b-8876-538f-aadb-1dd2a3cbde9b", "text": "\u7535\u5b50\u670b\u514b\u57ce\u5e02\u8857\u9053\u5728\u6e05\u6668\u7684\u7535\u5f71\u5316\u4e2d\u3002"} +{"id": "8002862", "video_name": "0b72fbf2-925f-5106-92f1-79cd3d5281c4", "text": "\u8d5b\u535a\u670b\u514b\u4fe1\u606f\uff1a\u53bb\u6b7b\u5427\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004480", "video_name": "4911e6bb-6dd5-5f2d-85a4-28d65ff80df0", "text": "\u516b\u65b9\u65c5\u4eba\uff0cJRPG\u89d2\u8272\u5728\u9547\u4e0a\u884c\u8d70\uff0c\u5361\u901a\u5f62\u8c61\uff0c\u76f8\u673a\u5e73\u79fb\u8ddf\u968f\u4e3b\u89d2\u3002"} +{"id": "0003487", "video_name": "3e761ac0-9b45-50c8-943e-e215e76bc7c4", "text": "\u548c\u98de\u884c\u6c7d\u8f66\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003149", "video_name": "18798568-25e3-555a-92f8-c1a3cc1aacf1", "text": "\u8de8\u666e\u65af\u7ad9\u5728\u623f\u9876\u4e0a\uff0c\u591c\u665a\uff0c\u5bd2\u51ac\uff0c\u4ee4\u4eba\u4e0d\u5b89\u548c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "7003180", "video_name": "a32c7e4a-5bdc-54fc-b066-b928793307a2", "text": "\u4e24\u652f\u5de8\u5927\u7684\u519b\u961f\u4ee5\u6587\u827a\u590d\u5174\u98ce\u683c\u9762\u5bf9\u5f7c\u6b64\u3002"} +{"id": "5001502", "video_name": "02d80b4d-0128-58f2-8ee8-216a908c62a1", "text": "\u4e9a\u9a6c\u900a\u4eba\uff0c\u6234\u7740\u8001\u864e\u9762\u5177\u7684\u4eba\u6392\u6210\u4e00\u6392\u3002"} +{"id": "4004679", "video_name": "bdb7bf7d-3549-5d52-8b68-08e7f9e3f465", "text": "\u786e\u4fdd\u5b69\u5b50\u5145\u5206\u4f11\u606f\uff0c\u8ba9\u8eab\u4f53\u80fd\u591f\u6062\u590d\u3002\u4e00\u4e2a\u8212\u9002\u548c\u5b89\u9759\u7684\u73af\u5883\u53ef\u4ee5\u4fc3\u8fdb\u66f4\u597d\u7684\u7761\u7720\u548c\u6108"} +{"id": "8001324", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "\u8fd9\u4e2a\u53e4\u57c3\u53ca\u519b\u961f\u5728\u5bf9\u6297\u654c\u4eba\u65f6\uff0c\u4f7f\u7528\u7535\u5f71\u6548\u679c\u3002\n\nSource sentence: The new restaurant offers a wide variety of international cuisine. \n\u8fd9\u5bb6\u65b0\u9910\u5385\u63d0\u4f9b"} +{"id": "5001395", "video_name": "ccf598b4-8eb1-52ab-9367-b3df5b22f462", "text": "\u5728\u7ebd\u7ea6\u88ab\u6467\u6bc1\u7684\u6469\u5929\u5927\u697c\uff0c\u68d5\u8272\u96fe\u973e\u3002"} +{"id": "0005208", "video_name": "169c4e95-2ac6-55dc-9e4f-f1d0720081f7", "text": "\u521b\u9020\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u573a\u666f\uff0c\u5c55\u793a\u9065\u8fdc\u661f\u7403\u6216\u7a7a\u95f4\u4e2d\u7684\u4eba\u7c7b\u6b96\u6c11\u5730\uff0c\u5c55\u793a\u5706\u9876\u7ed3\u6784\u3001\u5148\u8fdb\u7684\u751f\u547d\u652f\u6301\u7cfb\u7edf\u548c"} +{"id": "3006746", "video_name": "00bad95a-7553-5b98-9770-d9eb1a5c8ebe", "text": "\u5b69\u5b50\u4eec\u51b3\u5b9a\u5c1d\u8bd5\u4e00\u4e0b\uff0c\u770b\u770b\u8fd9\u4e2a\u513f\u7ae5\u5361\u901a\u8282\u76ee\u3002"} +{"id": "2003776", "video_name": "21e86428-909a-5cd3-b30a-ebea0a62a0ff", "text": "\u9510\u5229\u3001\u9ed1\u8272\u7684\u73ab\u7470\u7f29\u5c0f\u30018K\u3001\u9ad8\u6e05\u3001\u7535\u5f71\u7ea7\u3001\u9971\u548c\u5ea6\u9ad8\u3002"} +{"id": "6004147", "video_name": "58ea0b9a-cea5-5f9a-a843-73c561150e42", "text": "\u4e00\u53ea\u6c99\u6f20\u9a86\u9a7c\u5728\u884c\u8d70\uff0c\u98ce\u683c\u7c7b\u4f3c\u83b1\u8bfa\u62c9\u00b7\u5361\u6797\u987f\u3002"} +{"id": "6002907", "video_name": "253d8aef-7b7a-539b-adeb-289fb299ec64", "text": "\u5f53\u94c3\u58f0\u54cd\u8d77\u65f6\uff0c\u6559\u5ba4\u91cc\u7684\u5b66\u751f\u4eec\u7aef\u6b63\u5750\u59ff\uff0c\u6574\u7406\u597d\u4e66\u672c\uff0c\u7b49\u5f85\u8001\u5e08\u4e0a\u8bfe\u3002\u8001\u5e08\u8fdb\u5165\u6559\u5ba4\u540e"} +{"id": "6003281", "video_name": "98d374aa-d688-55d8-bc31-bf4b8f0ec8da", "text": "\u73b0\u4ee3\u827a\u672f \u65f6\u5c1a \u672a\u6765\u4e3b\u4e49 \u66ff\u4ee3\u5386\u53f2 \u6d1b\u53ef\u53ef\u670b\u514b \u670b\u514b\u6d41\u884c etsy\u5e97\u94fa \u5efa\u6a21 ai\u827a"} +{"id": "2003040", "video_name": "7de82d00-302b-54d3-9e0a-b45b003f642a", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u8f7b\u67d4\u7684\u96e8\u6ef4\u843d\u4e0b\u3002\u91c7\u8336\u5de5\u4eba\u6b63\u5728\u8336\u56ed\u91cc\u91c7\u8336\uff0c4K\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0006594", "video_name": "2f3764d0-e0b1-516b-a0e4-8608aae288d8", "text": "\u5feb\u4e50\u7684\u5927\u9ec4\u8702\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4004348", "video_name": "98603708-05ed-5ffd-8cc3-f0d1c09c5da5", "text": "UFO\u5728\u771f\u5b9e\u751f\u6d3b\u4e2d\u98de\u884c\uff0c\u5b69\u5b50\u4eec\u89c2\u770b\u5b83\u76844k\u753b\u9762\u3002"} +{"id": "1003770", "video_name": "456ddf91-a7ec-5749-a9ba-4235316b659e", "text": "\u5916\u661f\u4eba\u5165\u4fb5\uff0c\u6709\u50f5\u5c38\u5b58\u5728\u3002"} +{"id": "2006326", "video_name": "f1ae8cfa-5ee8-566e-8b81-f043eee82cf9", "text": "\u4e00\u4e2a\u9634\u90c1\u3001\u652f\u79bb\u7834\u788e\u3001\u53cd\u4e4c\u6258\u90a6\u548c\u673a\u68b0\u5316\u7684\u4e16\u754c\uff0c\u4eba\u4eec\u5728\u5176\u4e2d\u79fb\u52a8\u3002"} +{"id": "0003571", "video_name": "3fbf3efd-bcc8-59fa-8267-d16c8177d35a", "text": "24\u5c81\u7684\u4ed6\u8fc7\u7740\u5e73\u9759\u7684\u751f\u6d3b\uff0c\u4e0d\u77e5\u9053\u4ed6\u5185\u5fc3\u6f5c\u85cf\u7740\u975e\u51e1\u7684\u529b\u91cf\u3002\u6f2b\u753b\u52a8\u753b\u3002"} +{"id": "4003860", "video_name": "21ec82db-1ca2-5cc1-982f-073488205a19", "text": "\u53cd\u5bf9\u515a\u9886\u8896\u8054\u76df\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006284", "video_name": "73179f60-e567-5704-8697-7e387cbca6d1", "text": "\u9ed1\u8272\u592a\u9633\u955c\u91cc\u7684\u5411\u65e5\u8475\u5750\u5728\u655e\u7bf7\u8f66\u4e0a\uff0c\u6cbf\u7740\u7f8e\u4e3d\u7684\u6d77\u6ee8\u5927\u9053\u884c\u9a76\u3002"} +{"id": "4003731", "video_name": "642eb5b0-f920-5869-8d96-5f0ea39563d7", "text": "\u53ef\u7231\u7684\u4f01\u9e45\u6447\u6447\u6643\u6643\u5730\u8d70\u8def\uff0c\u52a8\u753b\uff0c\u7535\u5f71\u822c\u7684\uff0c\u7cbe\u7ec6\u7684\u7ec6\u8282\uff0c4K\u3002"} +{"id": "4002328", "video_name": "57d1d439-0e85-5d94-a67e-12e2fe6f7eb4", "text": "\u73b0\u5b9e\u60c5\u4fa3\u5728\u5ca9\u77f3\u4e0a\u5c55\u7fc5\u98de\u7fd4\u3002"} +{"id": "3006969", "video_name": "ab828bb3-e16b-5e38-a68e-e8a07bc5570c", "text": "\u8d85\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7167\u7247\u822c\u903c\u771f\uff0c\u9a6c\u7ad9\u5728\u8c37\u4ed3\u524d\uff0c\u547c\u51fa\u51b7\u6c14\uff0c\u56db\u5468\u98d8\u843d\u7740\u96ea\u82b1"} +{"id": "0006312", "video_name": "2a7f93b3-d9eb-53d0-bb38-b5747da7d327", "text": "\u5bfc\u6f14\u6b63\u5728\u6d4b\u8bd5\u865a\u62df\u6444\u50cf\u673a\u4e0a\u7684\u5730\u6807\u7279\u5f81\uff0c\u4ee5\u4ece\u591a\u4e2a\u89d2\u5ea6\u53ef\u89c6\u53163D\u573a\u666f\u548c\u73af\u5883\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003497", "video_name": "161c3c6e-add1-5d75-84ed-52b92a08149e", "text": "\u65e0\u58f0\u7535\u5f71\uff0c\u7537\u5b50\u8dea\u5728\u5730\u4e0a\u7948\u7977\uff0c\u5929\u7a7a\u6253\u5f00\uff0c\u9ed1\u767d\u3001\u9ec4\u8272\uff0c\u5448\u94c5\u7b14\u753b\u98ce\u683c\uff0c\u4f4e\u5206\u8fa8\u7387\uff0c\u9897"} +{"id": "4002171", "video_name": "a540ebd8-5f40-5e8c-ad65-120d49354a54", "text": "Gta 5\u5728\u7ebf\u89d2\u8272\u9a7e\u9a76\u5e03\u52a0\u8fea\u3002"} +{"id": "2005355", "video_name": "089541fe-fab8-51ac-94e9-56825b038bb4", "text": "\u4e00\u4e2a\u8db3\u7403\u8fd0\u52a8\u5458\u7a81\u7834\u4e09\u540d\u9632\u5b88\u7403\u5458\u5e76\u57286\u4e07\u89c2\u4f17\u9762\u524d\u5c04\u95e8\u5f97\u5206\u7684\u89c6\u9891\u3002"} +{"id": "8002293", "video_name": "8c74992c-bab8-5646-a19b-98ab57d49293", "text": "\u5199\u51fa\u4e86\u60ca\u4eba\u6b4c\u8bcd\u7684\u4f5c\u5bb6"} +{"id": "4004854", "video_name": "9e391268-3810-5d8b-970d-c1f913a6f21d", "text": "\u5c0f\u578b\u673a\u573a\uff0c\u8dd1\u9053\u4e0a\u6709\u4e00\u67b6\u98de\u673a\uff0c\u9e1f\u77b0\u56fe\uff0c\u65e5\u672c\u98ce\u683c\uff0c\u51ac\u5b63\uff0c\u964d\u96ea\uff0c\u591c\u665a\uff0c\u8d27\u7269\uff0c\u7bb1"} +{"id": "8003902", "video_name": "24db17d5-5218-566f-9a4a-573183bc8c57", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u56fe\u50cf\uff0c\u5c31\u50cf\u6700\u540e\u4ed6\u5e73\u6574\u4e86\u7530\u91ce\uff0c\u964d\u4f4e\u4e86\u5c71\u8c37\uff0c\u7528\u53f6\u5b50\u8986\u76d6\u4e86\u68ee\u6797\uff0c\u5347\u8d77\u4e86\u5c71"} +{"id": "6002145", "video_name": "3b200231-a74e-5f9e-b15b-1863d88ac542", "text": "\u7eff\u8272\u7684\u72d7\u5728\u6c99\u6f20\u91cc\u5403\u9999\u80a0\u3002"} +{"id": "2006463", "video_name": "6176361d-8931-599e-b883-bb9100e08dbe", "text": "\u7535\u5b50\u7535\u8def\uff0c\u5404\u79cd\u91d1\u8272\u7ebf\u8def\uff0c15\u4e2a\u5b54\uff0c\u7eff\u8272LED\uff0c\u9ec4\u8272LED\uff0c\u7ea2\u8272LED\u4eae\u8d77\u6765\uff0c\u7535\u5b50\u5728\u7ebf\u8def\u4e0a\u8fd0\u884c\u3002"} +{"id": "3004507", "video_name": "bc8aa9b2-5ce3-5f5e-9b36-43c4605c213c", "text": "\u7236\u6bcd\u5728\u6253\u67b6\uff0c\u4e2d\u95f4\u7684\u5b69\u5b50\u5728\u54ed\u3002"} +{"id": "3004163", "video_name": "3f853b41-39de-5c11-b036-625df6cb3068", "text": "\u6211\u770b\u5230\u4e00\u4e2a\u7a7f\u6cf3\u88c5\u7684\u53ef\u7231\u7684\u4e5d\u5c81\u5973\u5b69\u3002"} +{"id": "6002432", "video_name": "eab1cc4a-1a2b-5b5b-9f25-aad615c80bfb", "text": "\u5341\u79d2\u949f\u7684\u5973\u5b69\u89c6\u9891\u3002"} +{"id": "1005151", "video_name": "5ee3fef3-1004-53c8-a213-2cfe12389344", "text": "\u4e00\u4e2a\u7ad9\u5728\u8d34\u6ee1\u4fbf\u5229\u8d34\u548c\u7167\u7247\u7684\u613f\u666f\u677f\u524d\uff0c\u5e86\u795d\u5c0f\u6210\u5c31\u7684\u4eba\u3002\u7eb5\u6a2a\u6bd416:9\uff0c\u65f6\u95f4\u52a0\u901f4K\u52a8\u6001"} +{"id": "2003946", "video_name": "39e7fe44-e213-5026-b96f-0e0c5066165f", "text": "\u5728\u5730\u7403\u4e0a\u5c55\u5f00\u7684\u53f2\u8bd7\u7ea7\u661f\u7403\u5927\u6218\uff0c\u592a\u7a7a\u98de\u884c\u5458\u7f6e\u8eab\u5176\u4e2d\u3002"} +{"id": "4002976", "video_name": "33ada038-2134-57dc-9a9a-66fdfb815f47", "text": "\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\u7684\u58eb\u5175\u4eec\u5411\u5929\u7a7a\u5f00\u67aa\u3002"} +{"id": "2006986", "video_name": "355b0c60-19ff-5166-b59d-07792a9ea4ba", "text": "\u5168\u666f\u89c6\u56fe\uff1a\u76f8\u673a\u626b\u8fc7\u6218\u573a\uff0c\u63ed\u793a\u4e86\u5916\u661f\u4eba\u5165\u4fb5\u7684\u5de8\u5927\u89c4\u6a21\u548c\u9020\u6210\u7684\u7834\u574f\u3002"} +{"id": "8001628", "video_name": "85efaa9d-eb98-559c-b3ed-c9fee17b6198", "text": "\u4e00\u6761\u4f20\u8bf4\u4e2d\u9c9c\u7ea2\u8272\u7684\u53e4\u86c7"} +{"id": "2006440", "video_name": "2ea3308c-ebcc-5595-b985-1cef4d80e2cc", "text": "\u53ea\u6709\u4ee5\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u66f4\u6539\u7684\u80cc\u666f\u3002"} +{"id": "2003598", "video_name": "ebc4412a-aa36-5191-8c01-6f543a63c48d", "text": "\u4e00\u4e2a\u805a\u5149\u706f\u5728\u9ed1\u6697\u7684\u505c\u8f66\u573a\u5feb\u901f\u626b\u8fc7\u3002"} +{"id": "4002783", "video_name": "ed42e2e2-8e3b-5ae3-ab66-d842bf6449ad", "text": "\u4e00\u4e2a\u98de\u884c\u7684DeLorean\u8b66\u8f66\u5728\u591c\u665a\u5347\u8d77\uff0c\u8fdb\u5165\u4e00\u4e2a\u53cd\u4e4c\u6258\u90a6\u7684\u672a\u6765\u57ce\u5e02\u3002"} +{"id": "2004405", "video_name": "9495e5cf-55ca-56ca-939e-d9f26ac761a4", "text": "\u5a74\u513f\u56fe\u5e15\u514b\u00b7\u6c99\u5e93\u5c14\u5728\u821e\u53f0\u4e0a\u73b0\u573a\u8868\u6f14"} +{"id": "2004585", "video_name": "15a10418-577b-5266-940f-84a5a70322bd", "text": "\u4e00\u6574\u4e2a10\u5206\u949f\u7684\u52a8\u753b\u5267\u96c6\u3002"} +{"id": "1003373", "video_name": "3e2d2563-381e-5b54-818d-6bd806f11e2c", "text": "\u8df3Boogie\u821e\uff0cYagaman\u539f\u521b"} +{"id": "6004432", "video_name": "427c98af-b959-5158-962e-eac17cef118a", "text": "\u5728\u65e5\u843d\u65f6\u5206\uff0c\u4e00\u4e2a\u4eba\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "1004096", "video_name": "4bc87134-11ae-5fd7-b037-2c61f83b70a6", "text": "\u91ca\u4e49\uff1a\u5728\u6218\u4e89\u4e2d\u95f4\uff0c\u795e\u5723\u7684\u514b\u91cc\u5e0c\u7eb3\u7ad9\u5728\u6218\u8f66\u4e0a\uff0c\u6307\u7740\u7bad\u3002 \n\nSource sentence: The Great Wall of China is over 13,"} +{"id": "5001377", "video_name": "7f69db67-0c13-56af-8dc4-4e0950edb893", "text": "\u65e0\u7ebf\u7535\u5934\u4e50\u961f\u6210\u5458\u53d8\u6210\u4e00\u53ea\u5de8\u5927\u7684\u673a\u5668\u4eba\uff0c\u5728\u5916\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u7531\u5927\u536b\u00b7\u82ac\u5947\u548c\u96f7"} +{"id": "6002500", "video_name": "a618bf9a-ce8b-5653-bcb5-6edd3105a8ab", "text": "\u4e00\u53ea\u732b\u5b87\u822a\u5458\u524d\u5f80\u6708\u7403\uff08\u5976\u916a\u6708\u7403\uff09\uff0c\u5728\u90a3\u91cc\u751f\u6d3b\u7740\u4e00\u7fa4\u8001\u9f20\u3002"} +{"id": "8001920", "video_name": "2ea5eaeb-becd-5317-878e-f86475abf982", "text": "\u8ba9\u7537\u5b69\u5fae\u7b11\u5e76\u6325\u624b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002636", "video_name": "45db7a88-1367-530a-aeb8-75534ed4a114", "text": "\u4e00\u540d\u7a7f\u8457\u904b\u52d5\u670d\u7684\u7537\u5b69\u5728\u591c\u8def\u4e0a\u5954\u8dd1\uff0c\u8207\u4e00\u500b\u5b64\u7368\u7684\u8eab\u5f71\u5728\u5fae\u5149\u4e0b\u5f62\u6210\u5c0d\u6bd4\u3002"} +{"id": "7003340", "video_name": "c485c7cf-62c7-5e12-b034-708e2e0aa834", "text": "\u4e00\u4e2a\u62e5\u6709\u6a31\u82b1\u6811\u7684\u5e7f\u9614\u65e5\u672c\u98ce\u666f\u3002\u6d88\u606f\uff1aTHEO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006491", "video_name": "2d6eb191-65ec-5bf6-a5fe-df3888832f0a", "text": "\u4e00\u4e2a\u4f63\u4eba\u6234\u7740\u5251\u6b63\u5728\u4e0e\u4e09\u4e2a\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "8003004", "video_name": "52233ef6-c35d-5f10-8dfd-28faedbb03df", "text": "\u5973\u5b69\uff0c17\u5c81\uff0c\u7a7f\u7740\u6bd4\u57fa\u5c3c\u4ece\u6d77\u6ee9\u5411\u955c\u5934\u5954\u8dd1\u3002"} +{"id": "2007443", "video_name": "af84a3ae-5f41-5256-a342-af3314b68665", "text": "\u75283D 8K\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7535\u5f71\u624b\u6cd5\u521b\u9020\u4e00\u4e2a\u89c6\u89c9\u5f62\u8c61\uff0c\u5c55\u73b0\u4e00\u53ea\u957f\u8033\u767d\u5154\u805a\u7cbe\u4f1a\u795e\u5730"} +{"id": "0004362", "video_name": "07c1d79a-7a96-5838-9d20-674ff9340bf1", "text": "\u4e00\u7ec4\u5546\u4e1a\u4e13\u5bb6\u534f\u52a9\u4f01\u4e1a\u589e\u957f\u9500\u552e\u3002"} +{"id": "4002355", "video_name": "2667442a-d188-5686-b35a-98b47090735a", "text": "\u8de8\u8d8a\u4e00\u5f20\u6ee1\u662f\u8ff7\u4eba\u672a\u6765\u4eba\u5de5\u667a\u80fd\u5de5\u5177\u7684\u5de5\u4f5c\u53f0\uff0c\u5f71\u50cf\u611f\u5f3a\uff0c4K\u3002"} +{"id": "3003739", "video_name": "b86dca7b-aa86-5156-b90a-fbeb7f402192", "text": "\u53e4\u7f57\u9a6c\u8001\u5e08\u72ec\u81ea\u5750\u5728\u684c\u524d\u7814\u7a76\u3002"} +{"id": "2004419", "video_name": "db8d772f-4d28-560f-b6e5-c75af5b91c64", "text": "\u4e00\u4e2a\u624b\u6301\u9504\u5934\u5728\u7530\u5730\u91cc\u8015\u4f5c\u7684\u7537\u4eba\uff0c\u7a7f\u7740\u767d\u8272\u7684\u8863\u670d\uff0c\u6b63\u9762\u89c6\u89d2\uff0c\u8138\u90e8\u4e0d\u53ef\u89c1\u3002"} +{"id": "8001022", "video_name": "1350aaab-8246-5330-bcf6-afd7322bb174", "text": "\u52a8\u753b\u7247\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u540d\u53eb\u514b\u5229\u83f2\u7684\u5c0f\u9e2d\u5634\u517d\u5728\u6fb3\u5927\u5229\u4e9a\u4f53\u9a8c\u4ed6\u7684\u7b2c\u4e00\u4e2a\u6625\u5929\u3002\u4ed6\u9047\u89c1\u4e86\u7c73"} +{"id": "2004299", "video_name": "88e9fcd3-ed13-5243-aea7-70f79107d60d", "text": "\u738b\u5b50\u67e5\u5c14\u65af\u548c\u6bd4\u5c14\u00b7\u76d6\u8328\u63e1\u624b\u7b11\u4e86\uff0c\u7167\u7247\u975e\u5e38\u903c\u771f\u3002"} +{"id": "1005006", "video_name": "5c8e481f-1ec4-5a47-8bbe-729e2f8aa3e1", "text": "\u767d\u96ea\u516c\u4e3b\u8d70\u8fc7\u7ebd\u7ea6\u57ce\u3002"} +{"id": "7004419", "video_name": "90e23fb0-44e3-5080-8011-1daa31d93fe6", "text": "\u5148\u77e5\u5411\u4ed6\u7684\u95e8\u5f92\u4f20\u9053\u3002"} +{"id": "2003582", "video_name": "47e43e31-c689-5bab-b99a-6c5181fce88b", "text": "\u6b4c\u624b\u6c64\u59c6\u00b7\u97e6\u8328\u629a\u6478\u7740\u96ea\u767d\u8272\u7684\u732b\u3002"} +{"id": "4002410", "video_name": "91d6df9b-0786-5513-9248-1cc5a4be52de", "text": "\u4e00\u540d\u8b66\u5bdf\u6b63\u5728\u6ed1\u677f\u6280\u5de7\u3002"} +{"id": "6004850", "video_name": "c03a4dec-4064-593c-931b-b3a320163151", "text": "\u4e00\u540d\u7537\u5b50\u60ca\u6050\u5954\u8dd1\u3002\u5916\u661f\u4eba\u5165\u4fb5\u3002\u624b\u673a\u901a\u77e5\u5f39\u51fa\u3002\u6280\u672f\u5927\u5e08\u8282\u76ee\u5728\u624b\u673a\u4e0a\u64ad\u653e\u3002\u89c6\u9891\u753b\u8d28\u6e05\u6670\uff0c4"} +{"id": "0005060", "video_name": "13f2b767-3c9a-56e6-88ec-cbf583ab498a", "text": "\u793e\u4ea4\u89c6\u9891\uff0c\u5173\u4e8e\u4eba\u7c7b\u5bf9\u7a7a\u6c14\u7684\u5f71\u54cd\u3002"} +{"id": "2004012", "video_name": "2402ae2d-d075-578c-9e97-c037b89d65d4", "text": "\u53d1\u5149\u7684\u9b54\u6cd5\u8611\u83c7\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001426", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "\u4eba\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "6004527", "video_name": "267d7ad6-c4a0-5cc9-a8ec-61759327ace0", "text": "\u676f\u5b50\u4e0a\u7684\u7f8e\u4e3d\u903c\u771f\u7684\u52a8\u753b\u9a6f\u9e7f\u3002"} +{"id": "8001976", "video_name": "a697df88-3ba7-5a6c-a2a6-118bdd3b1455", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u6ed1\u52a8\u7740\u624b\u673a\uff0c\u5634\u5507\u52a8\u7740\uff0c8K\u3001\u54c1\u8d28\u3001\u8d85\u9ad8\u6e05\u3001\u52a8\u753b\u3002"} +{"id": "3004541", "video_name": "eb2b873f-c608-534f-9cd2-29a8ddc771e5", "text": "\u5728\u6597\u725b\u573a\u4e0b\u7684\u623f\u95f4\u91cc\u6709\u4e24\u53ea\u767d\u732b\uff0c\u9633\u5149\u5728\u73a9\u800d\u3002"} +{"id": "1005009", "video_name": "5ca78800-f9c2-56e5-96c2-fc845dfe7eb2", "text": "\u56fe\u50cf\u4fe1\u606f\uff1a\u4f0a\u6851\u00b7\u91cc\u5947\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003716", "video_name": "1e76dcca-c85a-5e05-95cd-b4dcf4baa374", "text": "\u5c55\u793a\u6851\u987f\u535a\u58eb\u548c\u5979\u7684\u56e2\u961f\u5230\u8fbe\u8f66\u8f86\uff0c\u6355\u6349\u4ed6\u4eec\u5145\u6ee1\u51b3\u5fc3\u548c\u597d\u5947\u7684\u8868\u60c5\u3002\u4f7f\u7528\u6444\u50cf\u673a\u89d2"} +{"id": "6003665", "video_name": "0671ea40-b7e2-5fe6-9798-87c1dd437da8", "text": "Source sentence: \u4e00\u8f86\u8b66\u8f66\u95ea\u70c1\u7740\u5e76\u53d1\u51fa\u58f0\u97f3\u3002"} +{"id": "0005954", "video_name": "23df8a3a-5b43-51ad-a90e-e590b8cc27aa", "text": "\u4f60\u77e5\u9053\u6211\u4eec\u6700\u7ec8\u5931\u53bb\u6211\u4eec\u5fc3\u7231\u7684\u4eba\u662f\u4ec0\u4e48\u65f6\u5019\u5417\uff1f\u5f53\u6211\u4eec\u4e0d\u518d\u611f\u5230\u5931\u53bb\u4ed6\u4eec\u7684\u75db\u82e6\u65f6\u3002"} +{"id": "8002750", "video_name": "ebb1ee3d-894b-54e1-8a3d-28599f24744a", "text": "\u5728\u672a\u6765\u57ce\u5e02\u4e0a\u65b9\u98de\u884c\uff0c\u5929\u7a7a\u4e2d\u6709\u7c89\u8272\u3001\u84dd\u8272\u548c\u7d2b\u8272\u7684\u989c\u8272\uff0c\u5177\u6709\u7535\u5f71\u611f\uff0cGS 15\uff0c16:19\u3002"} +{"id": "2003420", "video_name": "034cf4af-2ba8-52c7-adfa-3c3fda242dca", "text": "\u4e0a\u5e1d\u662f\u5426\u5728\u770b\u7740\u4f60\u3002"} +{"id": "6003522", "video_name": "50fb1212-073a-5eb8-93e7-ca77a3730c14", "text": "\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u673a\u5668\u4eba\u8bf4\u624b\u5de7\u3002"} +{"id": "1005066", "video_name": "5d8f1145-d9bb-5bd4-8e03-0d312b2898f6", "text": "\u8ba9\u6211\u4eec\u60f3\u8c61\u8389\u8389\u5728\u8302\u5bc6\u7684\u704c\u6728\u4e1b\u4e2d\u7a7f\u884c\uff0c\u5979\u7684\u773c\u775b\u56e0\u60ca\u8bb6\u800c\u7741\u5927\uff0c\u5f53\u5979\u5728\u8302"} +{"id": "8001331", "video_name": "8e7ea79f-8a29-5cae-8ba0-2b26a94bacc3", "text": "\u4e00\u53ea\u5410\u94b1\u7684\u91d1\u87fe\u3002"} +{"id": "3005474", "video_name": "a827dc48-3c3f-5397-ab3c-7de6c87525a6", "text": "\u8f7b\u5fae\u7684\u95ea\u70c1\u706f\u5149\uff0c\u98d8\u8fc7\u7684\u4e91\u6735\uff0c\u98de\u884c\u7684\u9e1f\u513f\uff0c\u67d4\u548c\u7684\u5fae\u98ce\uff0c\u6000\u65e7\u7684\u6c1b\u56f4"} +{"id": "6004710", "video_name": "05cf195c-8d28-5cd1-9349-8e40b71eac0d", "text": "\u4e00\u4e2a\u4eba\u5411\u7740\u4e94\u6761\u609f\u548c\u4e94\u6761\u56de\u671b\u8d70\u53bb\u3002"} +{"id": "4003977", "video_name": "7cf9360b-cef9-5591-a03a-47f4ed8dc8ae", "text": "\u4e00\u4e2a\u7537\u4eba\u4ef0\u671b\u7740\uff0c\u5468\u56f4\u6709\u4eba\u5728\u54ed\u6ce3\u3002"} +{"id": "3004820", "video_name": "9c6141dc-73ff-5ed9-8836-f4386b4e7024", "text": "\u65e5\u672c\u6218\u6597\u672a\u6765\u4e3b\u4e49\u6d6e\u7a7a\u98de\u8247"} +{"id": "4002617", "video_name": "67f56bf9-0711-53fd-bba1-d087ac325aab", "text": "\u4e00\u7fa4\u670b\u53cb\u5728\u4e00\u689d\u7f8e\u9e97\u7684\u6cb3\u88e1\u91e3\u9b5a\uff0c\u4e26\u4eab\u53d7\u8457\u6109\u5feb\u7684\u6642\u5149\u3002"} +{"id": "1006727", "video_name": "7b403523-35e6-5b79-ab4c-0398caeca265", "text": "\u56db\u4e2a\u5144\u5f1f\u59d0\u59b9\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u5411\u4e00\u4e2a\u8fdb\u5165\u623f\u5b50\u7684\u98df\u4eba\u9b54\u6254\u4e86\u4e00\u4e2a\u8c46\u5b50\uff0c\u98df\u4eba\u9b54\u88ab\u8c46\u5b50\u653b"} +{"id": "1006396", "video_name": "7512e8f0-61bd-5ea3-a513-74bec0eed53c", "text": "\u4e00\u53ea\u732b\u66ff\u4ee3\u5f17\u96f7\u5fb7\u00b7\u963f\u65af\u6cf0\u5c14\u5728\u96e8\u4e2d\u6f14\u5531\u300a\u96e8\u4e2d\u66f2\u300b\u3002"} +{"id": "3006434", "video_name": "39f5d863-d24f-5259-9ff1-e61195ee4eb8", "text": "\u623f\u5b50\u7684\u724c\u5c4b\u7740\u706b\u4e86\uff0c\u5012\u584c\u4e86\uff0c\u9e70\u5728\u65e5\u51fa\u4e2d\u98de\u7fd4\u3002"} +{"id": "2005409", "video_name": "082cf730-9ac7-527e-9e4c-b541071ae7be", "text": "\u963f\u91cc\u987f\u00b7\u585e\u7eb3\u9a7e\u9a76\u8fc8\u51ef\u8f6eF1\u8d5b\u8f66\u5728\u5df4\u897f\u9053\u8def\u4e0a\u4ee5256\u82f1\u91cc\u6bcf\u5c0f\u65f6\u7684\u901f\u5ea6\u884c\u9a76\uff0c\u6162\u52a8\u4f5c"} +{"id": "0005382", "video_name": "19cf3d08-e88b-573e-8287-9dbce268dcba", "text": "\u6469\u897f\u7a7f\u7740\u7070\u8272\u957f\u888d\uff0c\u53f3\u624b\u9ad8\u4e3e\u7740\u4e00\u6839\u6728\u68cd\uff0c\u80cc\u5bf9\u7740\u89c2\u4f17\uff0c\u6d77\u6c34\u5728\u4ed6\u524d\u9762\u5206\u5f00\uff0c\u9732\u51fa"} +{"id": "1003377", "video_name": "3e423012-2c5e-5dab-91e1-c3b7cfe30ab6", "text": "\u9634\u90c1\u7684\u51ac\u591c\uff0c\u96ea\u82b1\u8f7b\u67d4\u5730\u843d\u5728\u8986\u76d6\u7740\u9ed1\u8272\u5c4b\u9876\u548c\u5c0f\u5df7\u7684\u6751\u5e84\u4e0a\uff0c\u50cf\u6050\u6016"} +{"id": "5001845", "video_name": "b56ad4cf-2368-590e-9a72-51f19ebb49d4", "text": "\u5e26\u6709FitGearz\u6807\u5fd7\u7684\u4e3e\u91cd\u8170\u5e26"} +{"id": "0005754", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya\u548c\u6c64\u666e\u68ee\u5148\u751f\u5750\u5728\u95e8\u5eca\u4e0a\uff0c\u5206\u4eab\u6545\u4e8b\u3002"} +{"id": "2004442", "video_name": "b13f4edf-6698-5bcf-9860-d649762e7121", "text": "\u4e00\u4f4d\u5973\u6027\u5750\u5728\u8fea\u65af\u79d1\u4e2d\u592e\uff0c\u7a7f\u7740\u95ea\u70c1\u7684\u706f\u5149\u4e0b\u5373\u5c06\u5750\u5728\u4ed9\u4eba\u638c\u4e0a\u7684\u955c\u5934\u7279\u5199\u3002"} +{"id": "1006479", "video_name": "768ea493-374a-5b4d-b45e-437c428f845a", "text": "\u4e00\u4e2a\u7ad9\u5728\u5927\u6811\u4e0a\u7684\u5973\u5b69\u5728\u8fd9\u5f20\u56fe\u7247\u4e0a\u7528\u98ce\u7684\u6548\u679c\u4f7f\u8349\u548c\u4e91\u52a8\u8d77\u6765\u3002"} +{"id": "2005619", "video_name": "86d07a6e-3d47-5efa-bef4-2392b2944738", "text": "\u513f\u7ae5\u52a8\u753b\u7247\uff0c\u732b\u9009\u62e9\u4e86\u4e00\u4e2a\u82f9\u679c\u3002"} +{"id": "0005170", "video_name": "15f7e539-99f5-5eeb-8252-c24eafd177c4", "text": "\u5728\u8857\u4e0a\u5448\u73b0\u8718\u86db\u4fa0\u52a8\u6001"} +{"id": "2006596", "video_name": "152808c6-78ab-5191-ba32-f16f8a89d656", "text": "\u62c9\u7a46\u628a\u4ed6\u7684\u98df\u7269\u7ed9\u4e86\u72ee\u5b50\uff0c\u72ee\u5b50\u79bb\u5f00\u524d\u611f\u8c22\u4e86\u4ed6\u3002"} +{"id": "8003629", "video_name": "77cdde84-c8de-5487-9600-0c0ae18eee9f", "text": "\u5728\u5929\u7a7a\u4e2d\u7ff1\u7fd4\u7684\u4e4c\u9e26\u611f\u89c9\u6109\u60a6\u548c\u6e05\u65b0\u3002"} +{"id": "3003377", "video_name": "ce4501fd-95fa-5093-933b-e0b70e836ef8", "text": "\u751f\u6210\u89c6\u9891\u300a\u62d6\u62c9\u673a\u8482\u59c6\u300b\u5076\u7136\u53d1\u73b0\u88ab\u5ffd\u89c6\u7684\u82b1\u56ed\uff0c\u51b3\u5b9a\u63a2\u7d22\u3002\u5728\u82b1\u56ed\u91cc\uff0c\u4ed6\u53d1\u73b0\u795e\u79d8"} +{"id": "4003405", "video_name": "7b0bb6d3-9979-5350-bbd8-c2beb886cb17", "text": "\u970d\u683c\u6c83\u8328\u57ce\u5821\u88ab\u514b\u82cf\u9c81\u5165\u4fb5\u3002"} +{"id": "1006249", "video_name": "727c388a-8b38-58fb-8d8c-f36e3cae87d5", "text": "\u4e00\u5806\u6587\u4ef6\u548c\u6587\u6863\u6563\u843d\u5728\u684c\u9762\u4e0a\u3002\u4fe1\u606f\uff1a\u9c81\u672c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003148", "video_name": "f35a394f-858d-5e67-b8e3-bfb3ac04ec2a", "text": "\u4e00\u5f20\u9ed1\u767d\u76f8\u95f4\u7684\u68cb\u76d8\u80cc\u666f\u4e2d\u592e\u6709\u4e00\u4e2a\u7403\u5f62\uff0c\u8ff7\u5e7b\u7684\u5149\u5b66\u9519\u89c9\u827a\u672f\uff0c\u521b\u9020\u5149\u5b66\u9519\u89c9\u7684"} +{"id": "3006199", "video_name": "bec65c5e-8f3c-5cfb-9500-fb928afc80f2", "text": "\u661f\u9645\u822a\u8230\u4e0a\u7684\u5b87\u5b99\u6d77\u519b\u8054\u5408\u66f4\u8863\u5ba4\uff0c\u7535\u5f71\u7ea74K\u753b\u8d28\uff0c\u8fd1\u8ddd\u79bb\u79fb\u52a8\u955c\u5934\u3002"} +{"id": "6002510", "video_name": "7ca62762-539d-50ba-8dfb-b9292c3120a3", "text": "\u4e00\u53ea\u5154\u5b50\u548c\u4e00\u53ea\u732b\u9f2c\u5728\u4e00\u4e2a\u9b54\u6cd5\u68ee\u6797\u7684\u4e2d\u592e\u6563\u6b65\uff0c\u5728\u9633\u5149\u4e0b\uff0c\u68ee\u6797\u5145\u6ee1\u4e86\u9c9c"} +{"id": "6003625", "video_name": "b9af23b9-a46d-5c76-ab4a-4a25129dbfe0", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u9760\u8fd1\u4e00\u6247\u655e\u5f00\u7684\u7a97\u6237\uff0c\u5438\u7740\u9999\u70df\u3002"} +{"id": "6004456", "video_name": "4d2ffb17-a84f-5779-8e67-7585e0ba81f9", "text": "\u661f\u7a7a\u89c6\u9891\u8fd0\u52a8\u7684\u80cc\u666f"} +{"id": "1006001", "video_name": "6e40a099-bea2-5578-8c67-454b62d4f0ff", "text": "\u4e24\u6761\u86c7\u5728\u4e9a\u9a6c\u900a\u4e1b\u6797\u7684\u751f\u547d\u4e4b\u6811\u4e0a\u5e73\u7a33\u5730\u79fb\u52a8\uff0c\u5e7f\u89d2\u955c\u5934\u4e0b\uff0c\u795e\u79d8\u800c\u9b54\u5e7b\u7684\u5149"} +{"id": "5001842", "video_name": "a282f3bc-f3c4-5c04-815b-6c3fc34e3661", "text": "\u4e00\u53ea\u7687\u5bb6\u5b5f\u52a0\u62c9\u864e\u5728\u4e1b\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "2007719", "video_name": "8aa8de22-e7fd-58e2-869b-970c75179abf", "text": "\u5fc3\u7075\u97f3\u4e50\u56e2\u4f53\u6296\u97f3\u6559\u5b66\u89c6\u9891"} +{"id": "2007971", "video_name": "9cf026d2-9e9b-5c30-952c-50f2403ef536", "text": "\u521b\u5efa\u4e00\u4e2a17\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4f7f\u7528\u73af\u4fdd\u7535\u8111\u7684\u5bb6\u5ead\u529e\u516c\u5ba4\u3002\n\nSource sentence: The company's goal is to become the leading provider of sustainable energy solutions. \n\n\u516c\u53f8\u7684\u76ee\u6807"} +{"id": "3005998", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u9003\u8131\uff0c\u4e00\u4f4d\u7a7f\u9ed1\u8272\u793c\u670d\u7684\u7f8e\u4e3d\u91d1\u53d1\u5973\u90ce\u548c\u4e00\u4f4d\u666e\u901a\u7684\u6d77\u76d7\u3002"} +{"id": "8002135", "video_name": "a52c51c5-95db-50ab-a2e9-f13b0dcd129b", "text": "\u7535\u5f71\u611f\uff0c\u4ece\u5fd9\u788c\u7684\u5546\u5e97\u91cc\u8d2d\u4e70\u5723\u8bde\u793c\u7269\u7684\u60c5\u4fa3\u5feb\u901f\u62c9\u8fdc\uff0c\u76f4\u81f3\u5730\u7403\u3002"} +{"id": "7003306", "video_name": "a3187e95-833b-5a1e-9ae6-542b98bb18a1", "text": "\u5973\u4eba\u5728\u6708\u5149\u4e0b\u7684\u5f71\u5b50\u91cc\u8df3\u821e\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "8002008", "video_name": "f8cfa143-ecd0-5a99-9aa0-43be0672c92e", "text": "\u4e00\u4e2a\u62e5\u6709\u6240\u6709\u4eba\u7c7b\u79cd\u65cf\u7279\u5f81\u7684\u7537\u4eba\u3002"} +{"id": "6003598", "video_name": "2042db8d-781f-5395-b08e-2fdcd3d14247", "text": "\u4e00\u4e2a70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u4e00\u5f00\u59cb\u5f88\u5f00\u5fc3\u4f46\u6700\u540e\u53d8\u5f97\u8d8a\u6765\u8d8a\u9ed1\u6697\u548c\u53ef\u6015\u3002\n\nSource sentence: The restaurant serves a variety of dishes including seafood, steak"} +{"id": "8002899", "video_name": "cf3480a6-312f-56e7-979f-d98df7fab262", "text": "\u6bd2\u6db2\u9762\u5b54 \u4fe1\u606f\uff1aWPSI\uff08\u5b57\u4f53\uff1aRETRO\uff09"} +{"id": "6004142", "video_name": "98aca9b5-42d2-5869-b527-a3e4351be4d7", "text": "\u4e00\u5e45\u666f\u8272\u753b\u9762\uff0c\u592a\u9633\u5347\u8d77\uff0c\u767d\u5929\u8fc7\u53bb\uff0c\u592a\u9633\u843d\u4e0b\u3002"} +{"id": "0005361", "video_name": "1978bc51-a5bf-59f8-98de-98841e99599d", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4ee5\u52a8\u753b\u65b9\u5f0f\u4ece\u6708\u7403\u8df3\u56de\u5730\u7403\u3002"} +{"id": "3003043", "video_name": "3a528114-192c-5f5b-a9e8-844dec41e751", "text": "\u4e00\u53ea\u8272\u5f69\u6591\u6593\u7684\u7f9a\u7f8a\u5728\u5bd2\u51b7\u548c\u96ea\u7684\u73af\u7ed5\u4e0b\u5954\u8dd1\u7740\uff0c\u661f\u5149\u95ea\u8000\u3002"} +{"id": "6002069", "video_name": "9272a9da-8a47-5ca4-bd27-7a1e53f37094", "text": "\u7a97\u8fb9\u5750\u7740\u4e00\u4f4d\u5973\u5b50\uff0c\u65c1\u8fb9\u684c\u4e0a\u653e\u7740\u5496\u5561\uff0c\u5979\u6b63\u5728\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "7003117", "video_name": "59a84318-6536-5350-9bdc-ff3465d463c9", "text": "\u521b\u9020\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u52a8\u753b\uff0c\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u57ce\u5e02\u4e2d\u8ba9\u65e0\u751f\u547d\u7684\u7269\u4f53\u6d3b\u8fc7\u6765\uff0c\u63ed\u793a\u51e0\u4e2a\u4e16\u7eaa\u4ee5\u6765\u88ab\u57cb\u85cf\u7684"} +{"id": "0005725", "video_name": "20321512-20f3-52b0-94d1-97515c4e73e4", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u8611\u83c7\u4f3c\u4e4e\u5728\u4f4e\u58f0\u8033\u8bed\uff0c\u5206\u4eab\u7740\u751f\u5b58\u7684\u667a\u6167\uff0c\u795e\u79d8\u800c\u8ff7\u5e7b\u3002"} +{"id": "0006932", "video_name": "3576d06c-75f8-5aa2-9942-ce7cb5bce6a4", "text": "\u4e00\u4e2a\u540d\u53eb\u7f57\u6c49\u7684\u5e74\u8f7b\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u6d4f\u89c8\u5404\u79cd\u6570\u5b57\u8425\u9500\u5728\u7ebf\u8bfe\u7a0b\u3002\u4ed6\u770b\u8d77\u6765\u5bf9\u672a\u6765\u7684\u53ef\u80fd\u6027\u611f\u5230"} +{"id": "8003377", "video_name": "162d544e-3f0f-5888-a5c8-fc23ed5deef6", "text": "\u5236\u4f5c\u4e00\u4e2a\u591c\u665a\u5728\u96e8\u4e2d\u7684\u7537\u5b50\u7684\u89c6\u9891\u3002"} +{"id": "0006309", "video_name": "2a756c95-cf71-5ee0-8e90-26caf7bbd2eb", "text": "\u4e00\u4e2a\u8c6a\u534e\u7684\u8f66\u5e93\uff0c\u91cc\u9762\u6709\u8fd0\u52a8\u8f66\u548c\u4f4e\u5e95\u76d8\u8f66\u3002"} +{"id": "6002892", "video_name": "63f92248-cb4d-52d4-9441-98621b880ed7", "text": "Source sentence: \u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7684\u5fb7\u62c9\u514b\u00b7\u7c73\u970d\u514b\u4ee5\u52a8\u6f2b\u98ce\u683c\u8bf4\u8bdd\u3002\n\nTranslated sentence: \u6d77\u8d3c\u738b\u4e2d\u7684\u5fb7\u62c9\u514b"} +{"id": "2005568", "video_name": "78cc7d8f-ff9a-5e1f-98c9-0fe42a914e3b", "text": "\u4e00\u682a\u5c0f\u5411\u9633\u7684\u5411\u9633\u82b1\u5e7c\u82d7\u5728\u571f\u58e4\u4e2d\u7834\u571f\u800c\u51fa\u3002"} +{"id": "3005203", "video_name": "7bf90667-f815-5caa-832f-f61f5de225a0", "text": "\u4e00\u4f4d\u8001\u5e74\u7537\u5b50\u7ad9\u5728\u4e00\u8f86\u9ad8\u5ea6\u8be6\u7ec6\u7684\u9ed1\u8272\u8001\u5f0f\u6c7d\u8f66\u65c1\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u5411\u5185\u7f29\u653e\uff0c\u9ad8\u54c1\u8d28\uff0c4k\u5206"} +{"id": "7003105", "video_name": "ece6f278-357c-5bcc-b7b2-50553b46a5ce", "text": "\u63cf\u8ff0\uff1a\u65e9\u6668\uff0c\u5728\u5c71\u811a\u4e0b\uff0c\u5e74\u8f7b\u7684\u4f10\u6728\u5de5\u4eba\u6325\u821e\u7740\u65a7\u5934\uff0c\u780d\u5012\u9ad8\u5927\u7684\u6811\u6728\u3002\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "4004048", "video_name": "f70578e6-6eb8-54cf-b459-eeefc87c5f26", "text": "\u52c7\u6562\u7684\u5973\u4eba\u838e\u62c9\u5728\u9547\u4e0a\u662f\u4e00\u4e2a\u4f20\u5947\u3002"} +{"id": "0006034", "video_name": "2569be3f-0d8a-5b85-bc21-ccd5466a8585", "text": "\u4e00\u5957\u84dd\u8272\u7684\u6b63\u88c5\u4ece\u6d77\u6d0b\u4e2d\u6d6e\u73b0\u3002"} +{"id": "3005732", "video_name": "edf1761e-e797-5135-9ea4-c9f7d63601b8", "text": "\u51b7\u51bb\u7761\u7720\u7684\u4e00\u6392\u4eba\u5728\u5de8\u77f3\u4e3b\u4e49\u7f51\u683c\u5730\u56fe\u4e2d\uff0c\u6709\u7535\u7ebf\u548c\u4e8c\u6781\u7ba1\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229"} +{"id": "3005357", "video_name": "82c5e7f7-5be4-5cdc-940a-1edd8605ff20", "text": "\u4e00\u53ea\u9ed1\u732b\uff0c\u8eab\u4e0a\u6d82\u6ee1\u4e86\u7535\u5b50\u989c\u8272\uff0c\u6df7\u5408\u7740\u97f3\u4e50\uff0c\u6234\u7740DJ\u8033\u673a\u3002"} +{"id": "8001218", "video_name": "4a7b04cb-7de9-5b3f-ae05-c1aa37d40525", "text": "\u4e00\u4e2a\u5305\u542bvs\u7684\u624b\u673a\u683c\u5f0f\u89c6\u9891\u3002"} +{"id": "8002374", "video_name": "ee4c0978-4c4b-5842-9ee0-a06f5ebff376", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u54c8\u5229\u6ce2\u7279\u5728\u697c\u68af\u4e0b\u7684\u58c1\u6a71\u91cc\u53d1\u73b0\u4e86\u4ed6\u88ab\u6536\u5165\u970d\u683c\u6c83\u8328\u9b54\u6cd5\u5b66\u6821\u7684\u5f55"} +{"id": "6003964", "video_name": "ebc46914-b032-5d45-9a22-e7025dce3ed4", "text": "\u9ed1\u8272\u5c4f\u5e55\u4e0a\u98de\u5feb\u5730\u8f93\u5165\u7eff\u8272\u4ee3\u7801\u3002"} +{"id": "8003172", "video_name": "880d0598-32d6-5915-a6a2-498a8f651d30", "text": "\u9690\u85cf\u7684\u4e1b\u6797\u5165\u53e3\uff1a\n\n\u4e00\u4e2a\u795e\u79d8\u3001\u8302\u5bc6\u7684\u4e1b\u6797\uff0c\u7e41\u8302\u7684\u7eff\u8272\u690d\u88ab\u3002"} +{"id": "6003605", "video_name": "b8fa1e4d-a124-5aa6-bc38-cf447e473e99", "text": "\u97f3\u4e50\u5f55\u5f71\u5e26\u5c55\u793a\u4e86\u62ab\u5934\u58eb\u4e50\u961f\u6210\u5458\u5728\u73b0\u573a\u91cd\u805a\u5e76\u8868\u6f14\u7684\u60c5\u666f\u3002"} +{"id": "5001117", "video_name": "7b8f7370-f8a7-5060-aedd-de8557641765", "text": "\u5e99\u91cc\u6709\u4e00\u4f4d\u5e26\u7740\u767d\u732b\u7684\u7537\u5b50\u3002"} +{"id": "4003536", "video_name": "da66b530-8ada-51d3-a58e-2e80d979f745", "text": "1969\u5e74\u767d\u8272Shelby\u7a81\u7136\u5728\u4e00\u6761\u5c0f\u5df7\u4e2d\u505c\u4e0b\uff0c\u955c\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "6002553", "video_name": "88369775-dd65-5aa3-b20d-def9229c0a08", "text": "\u58eb\u5175\u5e2e\u52a9\u5973\u5b50\u9003\u79bb\u50f5\u5c38\uff0c\u903c\u771f\u3002"} +{"id": "2007549", "video_name": "ce4af6b6-8c99-5aa9-a47a-d4278e8d677a", "text": "\u5927\u706f\u6ce1\u6f02\u6d6e\u5728\u7a7a\u4e2d\u7167\u5c04\u7740\u5149\u8292\u3002"} +{"id": "7004947", "video_name": "0fba8459-da47-55b0-9d7a-4e657d598a58", "text": "\u77ed\u6a59\u8272\u5934\u53d1\u7684\u7728\u773c\u5973\u5b69\u753b\u50cf\uff0c\u62e5\u6709\u5149\u6ed1\u7684\u5a03\u5a03\u8138\u7279\u5f81\uff0c\u7cbe\u7ec6\u7684\u6cb9\u753b\u6280"} +{"id": "7003731", "video_name": "5bba7930-e271-57f6-bd20-a93470cebe93", "text": "\u4e00\u5e45\u666f\u89c2\u6216\u661f\u7cfb\u5177\u6709\u8d4b\u4e88\u529b\u91cf\u7684\u7279\u8d28\u3002"} +{"id": "7003648", "video_name": "52e025fe-6114-5d45-ba02-63f5882a9ef2", "text": "\u63cf\u8ff0\uff1a\u57c3\u585e\u4fc4\u6bd4\u4e9a\u7684\u7537\u8bf4\u5531\u6b4c\u624b\u5750\u5728\u5bb6\u95e8\u524d\uff0c\u548c\u4ed6\u7684\u5973\u53cb\u4e00\u8d77\u8bf4\u5531\uff0c\u89c6\u9891\u753b\u8d28\u4e3a4K\uff0c\u975e\u5e38\u6e05\u6670"} +{"id": "3006039", "video_name": "4ee14a2a-2a5c-5549-b3f4-c3a470a9a02d", "text": "\u4f0d\u5fb7\u65af\u6258\u514b\u97f3\u4e50\u82821970\u5e74\u4ee3\u89c6\u89c9\u5927\u5e08\u98ce\u683c\u3002"} +{"id": "6002574", "video_name": "74aa9403-6a05-54e4-b7f4-7152be3cd0d2", "text": "\u53cc\u624b\u62ff\u8d77\u4e00\u5f20\u684c\u5b50\u7684\u7167\u7247\u3002"} +{"id": "1004256", "video_name": "4ed35735-5993-5d3a-9deb-ce806fcc22d8", "text": "\u5361\u901a\u732b\u62e5\u6709\u91d1\u5c5e\u6bdb\u76ae\u3001\u7eff\u8272\u56f4\u5dfe\u548c\u957f\u7740\u4e00\u5f20\u8138\u7684\u5c3e\u5df4\uff0c\u521b\u4f5c\u8005\u662f\u9a6c\u7279\u00b7\u683c\u52d2"} +{"id": "2005221", "video_name": "cdd6a953-7704-5e55-b3ef-e5a7e6f048cf", "text": "\u65c5\u884c\u5728\u8def\u4e0a\uff0c\u8f66\u91cc\u7684\u60c5\u4fa3\uff0c\u4ece\u8f66\u5185\u770b\u5230\u7684\u666f\u8c61\uff0c\u5728\u591c\u665a\uff0c\u8352\u51c9\u7684\u5730\u65b9\uff0c\u5929\u7a7a\u4e2d\u6709\u5947\u602a\u7684\u706f\u5149\uff0c"} +{"id": "6004017", "video_name": "f65ee929-94f6-5e0c-8fdd-3cc045044703", "text": "\u4e24\u540d\u5b87\u822a\u5458\u8d70\u5411\u5bcc\u58eb\u5c71\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "6002149", "video_name": "fddf4fd4-11d5-5756-af36-6ff8ba136649", "text": "\u6d77\u4e0a\u7684\u6d77\u519b\u884c\u52a8"} +{"id": "2005798", "video_name": "90489210-284c-5a59-a270-465737ccf70f", "text": "\u4e24\u4e2a\u5370\u5ea6\u5e74\u8f7b\u5973\u5b50\u9762\u5bf9\u9762\u7ad9\u7740\uff0c\u76f8\u8ddd\u751a\u8fdc\u5e76\u4e92\u76f8\u6ce8\u89c6\u7740\u3002"} +{"id": "4003649", "video_name": "7e887f91-3d1d-5761-adae-62a4ee9ff089", "text": "\u8499\u7279\u5229\u5c14\u8bae\u5b9a\u4e66\u7b7e\u7f72\u65f6\u7684\u81ed\u6c27\u5c42\u3002"} +{"id": "2004925", "video_name": "da1f2060-692d-5a48-af62-b638dd096b55", "text": "\u57281928\u5e74\u7684\u58a8\u897f\u54e5\u57ce\u6148\u5584\u665a\u4f1a\u4e0a\uff0cCantinflas \u5448\u73b0\u51fa\u7535\u5f71\u822c\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a"} +{"id": "1005967", "video_name": "6d9fbb79-a627-523e-8c73-eeeb104ff61c", "text": "\u9ed1\u8272\u7684\u623f\u95f4\uff0c\u6709\u4e00\u4e2a\u9ec4\u8272\u7684\u95e8\u548c\u7eff\u8272\u7684\u72d7\u3002"} +{"id": "2003070", "video_name": "33d8941d-fa57-5b0b-8374-86a36103275d", "text": "\u4e00\u4e2a\u58eb\u5175\u7ad9\u5728\u6218\u573a\u4e2d\u592e\uff0c\u4e3a\u4ed6\u7684\u6218\u53cb\u52a0\u6cb9\u6253\u6c14\u3002"} +{"id": "7002060", "video_name": "02c59cdd-20bd-516a-bc67-840858ff3f02", "text": "Translation: \u519c\u592b\u6709\u4e00\u5929\u75c5\u5f97\u5f88\u91cd\u3002"} +{"id": "2005743", "video_name": "a5aa67fe-5548-5d5e-a502-1ba8f6f25dc8", "text": "\u4e00\u6735\u53d1\u5149\u7684\u83b2\u82b1\uff0c4:3\u7684\u9ec4\u91d1\u6bd4\u4f8b\u827a\u672f\u3002"} +{"id": "7003770", "video_name": "2e476eec-e7dc-53c6-888c-5489dd12ef34", "text": "\u6709\u7814\u7a76\u4eba\u5458\u548c\u79d1\u5b66\u5bb6\u4e00\u76f4\u5728\u63a2\u7d22\u7ef4\u5229\u5c14\u5b58\u5728\u7684\u53ef\u80fd\u6027\u3002\u4e3b\u8981\u5728\u91cf\u5b50\u7269\u7406\u9886\u57df\u8fdb\u884c\u4e86\u5b9e\u9a8c\uff0c\u4ee5\u66f4\u597d\u5730\u7406\u89e3\u5fae"} +{"id": "6003333", "video_name": "70834b0a-4bfe-5b86-a7c9-a0ee71e2fdd8", "text": "\u4e24\u4e2a\u4eba\u5728\u707c\u70ed\u7684\u592a\u9633\u4e0b\u71c3\u70e7\uff0c\u7f8e\u5973\u5728\u6d77\u6ee9\u4e0a\u6652\u592a\u9633\u3002"} +{"id": "6004179", "video_name": "f5e3a5b1-9cbd-5df8-9fde-4b28145a3a05", "text": "\u4f20\u7edf\u7684\u897f\u73ed\u7259\u4eba\u5145\u6ee1\u4e86\u5de5\u4f5c\u548c\u6b65\u884c\u7684\u5199\u5b9e\u753b\u98ce\u3002\u4fe1\u606f\uff1a\u4e61\u6751\u6821\u56ed\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006858", "video_name": "1bb8d0ce-0bb9-5266-9372-7ae01d83f01e", "text": "\u83f2\u5f8b\u5bbe\u8fd9\u4e2a\u56fd\u5bb6\u4ece\u5730\u56fe\u4e0a\u6d88\u5931\u4e86\u3002"} +{"id": "3006732", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "\u8d858\u6beb\u7c73\u80d6\u5efa\u7b51\u5de5\u4eba\u780c\u5899\u7684\u5f55\u50cf\u3002"} +{"id": "2007826", "video_name": "d80413c2-86e9-5232-943d-2c9210fac13b", "text": "\u5c55\u793a\u74e6\u62c9\u54c8\u628a\u5730\u7403\u4e3e\u8d77\u5e76\u653e\u56de\u5b83\u5e94\u8be5\u5728\u7684\u4f4d\u7f6e\uff0c\u8c61\u5f81\u5b87\u5b99\u79e9\u5e8f\u7684\u6062\u590d\u3002"} +{"id": "8002915", "video_name": "2026b11b-1fbf-5115-922f-8472ecd31a75", "text": "\u66fe\u7ecf\u50cf\u706b\u4e00\u822c\u70bd\u70ed\u7684\u7231\u60c5\uff0c\u73b0\u5728\u6210\u4e86\u9065\u8fdc\u7684\u56de\u5fc6\uff0c\u661f\u7a7a\u7684\u591c\u665a\uff0c\u63d0\u9192\u7740\u66fe\u7ecf\u548c"} +{"id": "2007126", "video_name": "531768da-b698-5f9d-8ae5-956fec268071", "text": "\u96e8\u6797\u771f\u5b9e4K\u4fe1\u606f\uff1a\u4e91\u6e38\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "2005119", "video_name": "ccd03a13-139c-564d-bcfd-001a2e1091df", "text": "\u79d1\u91cc\uff0c\u806a\u660e\u7684\u4e4c\u9e26\uff0c\u505c\u5728\u4e00\u68f5\u6811\u679d\u4e0a\uff0c\u5b83\u6709\u95ea\u4eae\u7684\u5b9d\u85cf\uff0c\u5b83\u5728\u9ad8\u8038\u7684\u3001\u8033\u8bed\u7684\u6811"} +{"id": "3006958", "video_name": "252f3e1d-4f54-509a-ba6a-3b8babb0cd21", "text": "\u6d77\u6ee9\u4e0a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u4eba\u5728\u7bdd\u706b\u524d\u8df3\u821e\uff0c\u5929\u7a7a\u4e2d\u6709\u6ee1\u6708\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "8002149", "video_name": "88321b5f-dc8f-5cfa-9d71-f4b664e2cea8", "text": "\u8389\u62c9\u548c\u5c0f\u80e1\u5b50\u4e00\u8d77\u73a9\u6349\u8ff7\u85cf\uff0c\u5750\u5728\u4e00\u8d77\u5206\u4eab\u6545\u4e8b\u3002"} +{"id": "1006164", "video_name": "70d631eb-7660-5401-8590-4ebaecdcf879", "text": "\u739b\u683c\u7279\u00b7\u7f57\u6bd4\u548c\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u7a7f\u7740\u5185\u8863\u8df3\u821e\uff0c\u4eba\u7fa4\u5728\u80cc\u666f\u4e2d\u9707\u60ca\u5730\u770b"} +{"id": "1003863", "video_name": "472b792e-fd2d-5f4d-9262-e2ce7d0e5895", "text": "\u4e00\u4e9b\u6811\u6728\u751f\u957f\u5728\u7f8e\u5143\u4e0a\uff0c\u7136\u540e\u5f3a\u6709\u529b\u7684\u624b\u53bb\u780d\u6389\u5b83\u4eec\u3002"} +{"id": "4003450", "video_name": "7ab36dce-d6cc-5c61-9903-41b26338a1e5", "text": "\u72b9\u6d01\u8d1d\u5c14\uff0c\u4e00\u4e2a\u806a\u660e\u72e1\u733e\u7684\u5973\u4eba\u3002"} +{"id": "4003136", "video_name": "d48ee67a-62d5-5127-b158-3f94c509e005", "text": "\u4e00\u53ea\u5438\u8840\u9b3c\u5728\u5fae\u7b11\uff0c\u8fd1\u8ddd\u79bb\u62cd\u7167\u3002"} +{"id": "8002409", "video_name": "20c54dca-48de-55a7-b756-6cf61d7851a5", "text": "\u5b89\u6170\u662f\u901a\u8fc7\u8fdc\u79bb\u5c18\u4e16\u800c\u5f97\u5230\u7684\u3002\u8fd9\u662f14\u4e16\u7eaa\u96d5\u523b\u7684\u94dc\u7248\u753b\u300a\u8056\u4f2f\u723e\u55ac\u6885\u00b7\u535a"} +{"id": "1006238", "video_name": "724594ec-10e0-5110-8fad-65d062054cd1", "text": "\u4e00\u53ea\u4ed9\u5973\u5728\u592a\u7a7a\u4e2d\u6355\u6349\u4e00\u9897\u661f\u661f\u3002"} +{"id": "3003373", "video_name": "24f761ba-ed8c-5b65-aec2-d209b2d05996", "text": "\u5728\u65e0\u5c3d\u7684\u8349\u539f\u4e0a\uff0c\u5728\u84dd\u8272\u7684\u591c\u7a7a\u4e2d\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u7bdd\u706b\u65c1\u70e4\u8089\uff0c\u65c1\u8fb9\u662f\u963f\u62c9\u65af"} +{"id": "7003210", "video_name": "e96e2382-474d-50a5-93a1-f10cc8bcf1fd", "text": "\u4e00\u4f4d\u7a7f\u7740\u5370\u5ea6\u4f20\u7edf\u670d\u9970\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "6002438", "video_name": "33f20182-77b7-5c97-a635-b812302e9a63", "text": "\u4e00\u4e2a\u4e09\u7ef4\u5361\u901a\u7537\u5b69\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "8003089", "video_name": "36722fc5-2827-50b3-a808-773765f9749a", "text": "\u5361\u6bd4\u517d\u5728\u7761\u89c9\uff0c2D\uff0c10K\u9ad8\u6e05\u5206\u8fa8\u7387\uff0c\u8fb9\u7f18\u9510\u5229\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "3003268", "video_name": "6f13f53d-f180-54be-b9a8-fb676b8c0de0", "text": "\u7f8e\u4e3d\u7684\u65e5\u843d\uff0c\u4ece\u8fdc\u5904\u770b\u6d77\u6d0b\u4e2d\u7684\u8239\u53ea\u3002\u6d88\u606f\uff1aAmal Lukose\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006610", "video_name": "f9abcef5-b578-5f8f-9c7c-c122a96c4d86", "text": "\u61d2\u732a\u770b\u8d77\u6765\u5f88\u9177\uff0c\u7136\u540e\u53bb\u6d77\u6ee9\uff0c\u63a5\u7740\u9047\u5230\u4e24\u4e2a\u5973\u5b69\u3002"} +{"id": "0003021", "video_name": "35b58c6f-6595-5ae7-83e1-fc81cca360e0", "text": "\u8001\u5175\u653b\u51fb\u72fc\u7684\u65e7\u753b\u9762\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "4002961", "video_name": "04fc5c0b-29c7-56d1-9e1d-58b31c9dfdd1", "text": "\u5976\u5976\u5411\u524d\u8d70\uff0c\u82b1\u6735\u968f\u98ce\u98d8\u626c\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006599", "video_name": "78ebdf5c-537f-5ec4-bd0c-6081d65bd716", "text": "\u7535\u5f71\u5316\u52a8\u4f5c\u6ed1\u677f\u8005\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u8df3\u821e\uff0c\u4f7f\u7528\u7535\u5f71\u624b\u6301\u6444\u50cf\u673a\u79fb\u52a8\u3001\u6784\u56fe\u3001\u6846\u67b6\u548c\u4e2d\u5fc3\u753b\u9762\u3002"} +{"id": "8003394", "video_name": "0c8da673-0d01-5e80-9334-c5eb2eca5d49", "text": "\u8ba9\u56fe\u7247\u4e2d\u7684\u732b\u6447\u6446\u5c3e\u5df4\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7004045", "video_name": "ae75fd3f-f7f1-5458-84fd-49f006929c03", "text": "\u6c34\u4e2d\u5145\u6ee1\u4e86\u751f\u7269\u53d1\u5149\uff0c\u5b87\u5b99\u98de\u8239\u5f15\u64ce\u53d1\u51fa\u5149\u8292\u3002"} +{"id": "8001035", "video_name": "6f6e1d5d-7a1a-5bd4-bcc7-63f58c74a6e1", "text": "\u574e\u6234\u5c14\u00b7\u8a79\u7eb3\u548c\u8d1d\u62c9\u00b7\u54c8\u8fea\u5fb7\u8eab\u7740\u590f\u5b63\u670d\u88c5\uff0c\u624b\u6301\u624b\u673a\u7ad9\u5728\u4e00\u5ea7\u7ea2\u8272\u5929\u7a7a\u4e0b\u7684\u706b\u70e7"} +{"id": "4003751", "video_name": "97eba988-8c9d-57bf-ac34-06381329d843", "text": "\u4e00\u53ea\u72d7\u653b\u51fb\u4e00\u6761\u9f99\uff0c\u7535\u5f71\u7ea78K UHD\u8d85\u771f\u5b9e\u3002"} +{"id": "4002496", "video_name": "c7c614f4-4b60-5799-99a1-4ca34edb3386", "text": "\u9003\u751f\u8231\u4ece\u592a\u7a7a\u7684\u8fb9\u7f18\u98de\u6765\uff0c\u5728\u6708\u7403\u4e0a\u7740\u9646\u3002"} +{"id": "7003938", "video_name": "c09c17bd-1bde-59a4-adef-1bdaee1df464", "text": "\u9633\u5149\u6d77\u6ee9\u4e0a\u7684\u5973\u5b69\uff0c\u98ce\uff0c\u4e00\u7fa4\u9c7c\uff0c\u5c0f\u8239\uff0c16\uff1a9\u3002"} +{"id": "8002269", "video_name": "1bbc8e3b-5de9-5b1d-b404-a597ddacc335", "text": "\u91cc\u5179\u4e07\u548c\u8428\u8fea\u4e9a\u5750\u5728\u660f\u6697\u7684\u9910\u5385\u91cc\u4e00\u4e2a\u8212\u9002\u7684\u89d2\u843d\u91cc\uff0c\u5f7c\u6b64\u5bf9\u5750\uff0c\u88ab\u67d4\u548c\u7684"} +{"id": "8002001", "video_name": "01881e4c-d440-5b5f-9798-d6d76d1b4936", "text": "\u52a8\u6f2b\u5973\u5b69\u5bf9\u6297\u5927\u6279\u50f5\u5c38"} +{"id": "3004988", "video_name": "78a613c4-b08e-5c57-898c-ab542e128584", "text": "\u6050\u6016\u7535\u5f71\uff0c\u6807\u7740\u8499\u7279\u83ab\u96f7\u6d1b\u65af\u7684\u724c\u5b50\uff0c\u4e00\u4e2a\u6ee1\u662f\u6a59\u5b50\u7684\u679c\u56ed\uff0c\u6709\u6a59\u5b50\u7684\u6559\u5802"} +{"id": "2003513", "video_name": "16acf697-33c6-5ad2-92bc-aae99a1f9cd1", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u4eba\u7fa4\u524d\u9762\uff0c\u53d1\u8868\u5173\u4e8e\u8d22\u7ecf\u6559\u80b2\u91cd\u8981\u6027\u7684\u6f14\u8bb2\u3002"} +{"id": "1004733", "video_name": "57beea8a-e71d-5450-9450-357403ab6db8", "text": "\u89c6\u89c9\u89c6\u9891\uff1a\u8f6c\u6362\u5230\u8682\u8681\u7167\u987e\u5e7c\u5d3d\uff0c\u6e05\u6d01\u548c\u5582\u517b\u5e7c\u866b\u3002"} +{"id": "3003844", "video_name": "98a371b7-9237-53f5-87c6-251f15181003", "text": "Bobby\u8774\u8776\u5728\u5145\u6ee1\u8272\u5f69\u7eda\u4e3d\u7684\u82b1\u56ed\u91cc\u7fe9\u7fe9\u8d77\u821e\uff0c\u5b83\u90a3\u5112\u96c5\u7684\u6a59\u9ed1\u8272"} +{"id": "7002274", "video_name": "617a669c-b108-5ad3-a24c-e4588fc41b7f", "text": "\u661f\u7cfb\u4e2d\u7684\u9e21\u8089\u6c49\u5821\u548c\u85af\u6761\u3002"} +{"id": "2004357", "video_name": "17567366-d6b0-53f9-952f-bff2e82373d4", "text": "\u4e00\u53ea\u5c0f\u68d5\u8272\u7684\u72d7\uff0c\u6ce2\u7f8e\u62c9\u5c3c\u4e9a\u5c0f\u68d5\u8272\uff0c\u8df3\u821e\u5feb\u4e50\u3002"} +{"id": "2003229", "video_name": "89940277-15ad-5b4d-b672-e09c0006a21b", "text": "\u6211\u5e0c\u671b\u4f60\u80fd\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e00\u4f4d\u5e74\u8f7b\u5973\u6027\u5728\u529e\u516c\u684c\u524d\u5de5\u4f5c\uff0c\u9762\u5e26\u6ee1\u610f\u7684\u5fae\u7b11\u3002"} +{"id": "0004555", "video_name": "0b326044-09d9-5ae0-8fac-baf1e3cd380d", "text": "\u5b89\u5fb7\u70c8\u65af\u00b7\u7ef4\u514b\u6b63\u5728\u821e\u53f0\u4e0a\u5531\u6b4c\u3002"} +{"id": "0005711", "video_name": "1fe99be4-6ef8-5ac8-9ba8-aee842c34599", "text": "\u5361\u901a\u95ea\u7535\u52a8\u753b \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0005670", "video_name": "1f148418-54d3-574a-bdb1-42e9fe73fa2b", "text": "\u4e00\u5f20\u5728\u57ce\u5e02\u6ce2\u5e0c\u7c73\u4e9a\u98ce\u683c\u7684\u5367\u5ba4\u7a97\u53e3\u5185\uff0c\u901a\u8fc7\u7a97\u6237\u770b\u5230\u4e00\u4e2a\u660f\u660f\u6b32\u7761\u7684\u96e8\u591c\u666f\u8c61\uff0c\u684c"} +{"id": "2006433", "video_name": "7a0ef2ac-3127-5ab3-8a2f-b4087d00154a", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u6811\u4e0a\u6458\u8170\u679c\u3002"} +{"id": "3006207", "video_name": "71c9d1e9-14b1-5d21-afdc-6ad834cad6b7", "text": "\u8001\u65e7\u7684\u592a\u7a7a\u7ad9\u5728\u7a7a\u6c14\u4e2d\u8f7b\u5fae\u5730\u4e0a\u4e0b\u6d6e\u52a8\uff0c\u4e91\u6735\u4ece\u5de6\u5230\u53f3\u8f7b\u5fae\u5730\u79fb\u52a8\u3002"} +{"id": "4004226", "video_name": "52564e8c-46b4-56c7-ac90-ba0a9786bd63", "text": "\u5728\u4e1b\u6797\u4e2d\u7684\u4e00\u540d\u5973\u6027\uff0c\u7a7f\u7740\u725b\u4ed4\u88e4\u548c\u886c\u886b\uff0c\u4e0e\u4e00\u53ea\u718a\u640f\u6597\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "8003783", "video_name": "5b6a9384-87ad-52e5-8e68-8789c7d9722f", "text": "\u5343\u5e74\u9e70\u53f7\u5728\u592a\u7a7a\u4e2d\u4e0e\u661f\u8230\u4f01\u4e1a\u7ade\u901f\u3002"} +{"id": "7003777", "video_name": "c1c2f53c-ba57-540d-ad84-32d6adcde674", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u768427\u5c81\u957f\u53d1\u91d1\u53d1\u5973\u5b50\uff0c\u5fae\u7b11\u7740\uff0c\u7a7f\u7740\u5723\u8bde\u6bdb\u8863\uff0c\u5728\u96ea\u5730\u6797\u95f4\uff0c\u620f\u5267\u5316\u7684\u5149\u7ebf\uff0c"} +{"id": "7004288", "video_name": "73944deb-d6c6-59bf-acf1-8562a40d301d", "text": "\u7537\u5b50\u51b2\u6d6a\uff0c\u5fc3\u60c5\u6109\u60a6\uff0c\u5fb7\u53e4\u65af\u827a\u672f\u98ce\u683c\uff0c16:9\u7684\u6bd4\u4f8b\u3002"} +{"id": "8003972", "video_name": "a11ccfed-9bce-536d-a6ec-ecab27f29acb", "text": "\u65b0\u89d2\u8272\u626e\u6f14\u6d3b\u52a8\u5373\u5c06\u5230\u6765\uff0c\u8bf7\u5236\u4f5c\u4e00\u4e2a\u6587\u672c\u6807\u5fd7\u3002"} +{"id": "0005205", "video_name": "16930e48-da32-5fac-a3ae-141f238f8df7", "text": "\u9a6c\u6258\u4eba\u7ad9\u5728\u9ad8\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u3002"} +{"id": "2004480", "video_name": "0e93261c-af6b-5b90-9d91-0dc816955ee9", "text": "\u5728\u5927\u57ce\u5e02\u91cc\u6dfb\u52a0\u4e00\u53ea\u732b\uff0c\u6301\u7eed30\u79d2\u3002"} +{"id": "1004767", "video_name": "582b22b8-c1a3-5847-b94f-899d9e7a7f65", "text": "\u5b81\u9759\u7684\u73af\u5883\uff0c\u7eff\u6811\u6210\u836b\uff0c\u6d41\u6dcc\u7684\u6cb3\u6c34\uff0c\u95ea\u4eae\u7684\u9e45\u5375\u77f3\u89c6\u9891\u3002"} +{"id": "1006129", "video_name": "70544fd5-b334-5282-bd41-2cabf9689c06", "text": "1986 \u5e74 KFC \u66b4\u529b\u6297\u8bae\u7684\u5f55\u50cf\u3002"} +{"id": "3005785", "video_name": "9e81fd21-ae7f-5bf8-a682-17a4a256956b", "text": "\u6708\u4eae\u662f\u6211\u4eec\u6700\u8fd1\u7684\u5929\u4f53\u90bb\u5c45\u3002"} +{"id": "6003318", "video_name": "58308e07-5890-5b86-9ad1-024af0f0f9cf", "text": "80\u5e74\u4ee3\u7684\u4ed9\u5883\u57ce\u5e02\u660e\u4eae\u9713\u8679\u8272\u7684\u53d1\u5149\u6807\u5fd7\u724c"} +{"id": "8003709", "video_name": "cd753fe9-917d-5757-b0ec-5d524445e014", "text": "\u80cc\u5f8c\u8996\u89d2\uff0c\u4eba\u5728\u53e4\u7f85\u99ac\u5efa\u7bc9\u7684\u8dd1\u9177\u5834\u5730\u4e0a\u5954\u8dd1\uff0c\u63d2\u5716\u7531\u83ab\u6bd4\u70cf\u65af\u548c\u672c\u00b7"} +{"id": "0005215", "video_name": "16a852cf-00a1-599b-afaf-0f4f3a76e7cb", "text": "\u4e94\u591c\u540e\u7684\u5f17\u83b1\u8fea\u4f4d\u7f6e\uff0c\u5f17\u83b1\u8fea\u5728\u5176\u524d\u9762\u8df3\u821e\u3002"} +{"id": "1006169", "video_name": "70e65cdc-cc0d-59a7-ab1b-309551c481cb", "text": "\u5973\u6218\u58eb\u884c\u8d70\u5728\u5c71\u4e18\u4e4b\u5dc5\uff0c\u5929\u7a7a\u4e2d\u7ea2\u8272\u7684\u592a\u9633\uff0c\u620f\u5267\u6027\u7684\u822a\u62cd\u89c6\u89d2\uff0c\u4f7f\u7528RED DSMC2\u6444\u5f71\u673a"} +{"id": "0006285", "video_name": "2a01caed-2cf8-558b-93dc-8a8fa4fb4573", "text": "\u4e00\u4f4d\u5934\u53d1\u706b\u7ea2\u3001\u773c\u775b\u84dd\u8272\u7684\u5973\u5b69\uff0c\u770b\u8d77\u6765\u6781\u5ea6\u6050\u60e7\u3002"} +{"id": "2007815", "video_name": "a615d82e-64af-5143-8da1-5144a9965be5", "text": "\u4e0d\u65ad\u53d1\u5c55\u6269\u5f20\u7684\u7ef4\u6d1b\u5c3c\u7f51\u7ad9"} +{"id": "3003436", "video_name": "a0b1d088-7480-54eb-842e-21bd4c3e8d0b", "text": "\u4e00\u4e2a\u8759\u8760\u4ece\u5357\u74dc\u91cc\u98de\u51fa\u6765\u4e86\u3002"} +{"id": "0005203", "video_name": "168df806-1811-5b41-a5ab-96b652f85942", "text": "\u592a\u9633\u7099\u70e4\u5927\u5730\uff0c\u7194\u5316\u94c1\u3002"} +{"id": "2003004", "video_name": "b8bcf5d8-82f6-557f-a49a-288cd2039c38", "text": "\u5728\u5730\u4e0a\u753b\u4e86\u4e00\u4e2a\u5de8\u5927\u7684\u6076\u9b54\u5706\u5708\uff0c\u591c\u665a\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "2006732", "video_name": "c351df23-dba6-57ae-b908-eb0cf4e7c58f", "text": "\u7f16\u7ec7\u7684\u7ea4\u7ef4\u4f1a\u8f6c\u52a8\u548c\u6536\u7f29\u3002\n\nSource sentence: He is studying Mandarin Chinese at university. \n\n\u4ed6\u5728\u5927\u5b66\u5b66\u4e60\u666e\u901a\u8bdd\u3002"} +{"id": "2006714", "video_name": "3d5ad1d7-d130-5110-8aa0-fead29a91197", "text": "\u6709\u4e00\u5929\uff0c\u5f53\u7537\u5b69\u63a2\u7d22\u4e1b\u6797\u6df1\u5904\u65f6\uff0c\u4ed6\u5230\u8fbe\u4e86\u4e00\u4e2a\u5f00\u9614\u7684\u5730\u65b9\uff0c\u4e00\u4e9b\u52a8\u7269\u6b63\u5728\u805a\u96c6\u3002"} +{"id": "0004321", "video_name": "070caada-f27f-51d4-aed2-3dc6e40fa31d", "text": "\u970d\u6bd4\u7279\u4eba\u7a7f\u7740\u8ff7\u5e7b\u5370\u82b1\u7684\u4f69\u65af\u5229\uff0c\u8ff7\u5e7b\u6307\u73af\u738b\uff0c\u516d\u5341\u5e74\u4ee3\uff0c\u9b54\u6cd5\u68ee\u6797\uff0c16"} +{"id": "3004074", "video_name": "91bc0e8a-3bc6-5686-900b-7ad5c19f1569", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u6027\u94ec\u548c\u94dc\u9540\u5c42\u7684\u673a\u5668\u4eba\u5916\u661f\u4eba\u8d5b\u535a\u670b\u514b\u6b4c\u624b\uff0c\u5728\u821e\u53f0\u4e0a\u5f39\u7740\u8d1d\u65af\u5409\u4ed6"} +{"id": "2003364", "video_name": "bd946a5f-a1d3-5416-b467-5ebfc812b3ea", "text": "\u4eba\u7269\u7728\u773c\uff0c\u5934\u53d1\u98d8\u52a8\u7684\u8349\u56fe\u3002"} +{"id": "1004684", "video_name": "570744e6-2bf6-5e03-9530-2e21ffab8d8a", "text": "\u56db\u4e2a\u5a46\u7f57\u95e8\u5728\u68ee\u6797\u91cc\u770b\u5230\u6b7b\u72ee\u5b50\u3002"} +{"id": "7002805", "video_name": "c86908a7-0dbf-5dcf-99d7-ee1d2a1eaec2", "text": "\u6709\u4e00\u53ea\u5e26\u7740\u72ec\u89d2\u517d\u7684\u5b9d\u53ef\u68a6\u5750\u5728\u8239\u4e0a\uff0c\u5b83\u6709\u5927\u773c\u775b\u3001\u5927\u5c3e\u5df4\u3001\u77ed\u817f\u548c\u4e24"} +{"id": "8001999", "video_name": "1f93ea96-3f03-574b-b94b-75633ed9cf8c", "text": "\u97f3\u4e50\u4ead\uff0c\u4eba\u4eec\u8d70\u52a8\uff0c\u5efa\u7b51\uff0c\u6162\u955c\u5934\u79fb\u52a8\u3002"} +{"id": "0005756", "video_name": "20a1f649-f823-5a91-8365-8f9845db1b31", "text": "\u4e00\u8258\u7834\u51b0\u8239\u6b63\u5728\u51b0\u5c42\u4e2d\u7a7f\u884c\u3002"} +{"id": "2006020", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u7a7f\u7740\u50cf\u58eb\u5175\u4e00\u6837\u7684\u8863\u670d\u3002"} +{"id": "2007716", "video_name": "3b211848-bcd9-5640-bb33-02975f75e78b", "text": "\u5728\u5c71\u4e0a\u7684\u57ce\u5821\u91cc\u62cd\u7684\u7f8e\u4e3d\u5a5a\u793c\u60c5\u4fa3\u7167\u7247\u3002"} +{"id": "1003879", "video_name": "47784be5-c157-539a-aeaa-dbf97726276a", "text": "\u8352\u91ce\u91cc\u7684\u82b1\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "0004584", "video_name": "0b913a04-bb56-5c59-a9e1-238ceb3904ae", "text": "\u4e00\u79cd\u60f3\u8c61\u4e2d\u7684\u7279\u65af\u62c9\u8f66\u578b\uff0c\u5c55\u73b0\u51fa169\u5e74\u540e\u6240\u6709\u7684\u529f\u80fd\u7279\u70b9\u3002"} +{"id": "0005263", "video_name": "17802735-4e09-503a-9ec4-ae743ff59410", "text": "\u7ea2\u7403\u88ab\u6c34\u6253\u4e2d\u5e76\u649e\u7834\u4e86\u955c\u5b50\u3002"} +{"id": "3006975", "video_name": "2047b2dc-8c12-5cbf-8f19-e8563f1e3ad7", "text": "\u5728\u4e9a\u9a6c\u900a\u96e8\u6797\u4e2d\u4e0e\u5927\u7329\u7329\u4e00\u8d77\u653e\u5927\u666f\u8c61\u3002\u4fe1\u606f\uff1aXBET\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006061", "video_name": "fb42bc37-64aa-50d4-b557-c2ee6671a2d2", "text": "\u4e00\u500b\u4e2d\u4e16\u7d00\u7684\u6751\u838a\uff0c\u5728\u9060\u8655\u62cd\u651d\uff0c\u6674\u5929\u3002"} +{"id": "5001036", "video_name": "6ddda845-09bd-5601-a26d-077b36af81c7", "text": "\u8fdc\u773a\u82cd\u7a79\uff0c\u5e7b\u60f3\u7740\u5de8\u5927\u7684\u4e2d\u4e16\u7eaa\u6218\u4e89\u7535\u5f71\u3002\u4f1f\u5927\u7684\u4e2d\u4e16\u7eaa\u810f\u6218\u4e89\u3002\u9ed1"} +{"id": "4003122", "video_name": "206fd168-ad82-5602-bbf2-9d6d102d3212", "text": "\u9a6c\u6765\u4e9a\u7684\u4fe1\u606f\uff1a\u7528\u6e29\u67d4\u7684\u65b9\u5f0f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002648", "video_name": "b6df02b6-8071-5fc7-b0d3-1efde568c536", "text": "Ramchand\u88ab\u66f4\u591a\u8d22\u5bcc\u7684\u53ef\u80fd\u6027\u6240\u5438\u5f15\uff0c\u540c\u610f\u6536\u8d2d\u8fd9\u9897\u94bb\u77f3\uff0c\u4f46\u6761\u4ef6\u662f\u4ea4\u6613\u5546\u5fc5\u987b\u534f\u52a9\u4ed6\u5229\u7528\u5176\u529b\u91cf"} +{"id": "3004994", "video_name": "04c29b22-0162-52ef-ab16-a200780e599c", "text": "\u53cc\u91cd\u5b58\u5728\u73b0\u8c61\u662f\u5f52\u529f\u4e8e\u5e15\u5fb7\u96f7\u76ae\u5965\u7684\u6700\u663e\u7740\u5929\u8d4b\u4e4b\u4e00\u3002"} +{"id": "6002179", "video_name": "8d0422e0-9aa0-5e3d-b52b-13fc1efeff0e", "text": "\u6dfb\u52a0\u4ece\u74f6\u5b50\u4e0a\u53d1\u51fa\u7684\u7c89\u8272\u7167\u660e\u3002"} +{"id": "7002154", "video_name": "1a4fd960-b1d3-5911-a92a-993e653b42ea", "text": "\u5c0f\u5de5\u4eba\u5236\u4f5c\u7684\u70b8\u571f\u8c46\u3002"} +{"id": "3003300", "video_name": "c92c6825-db81-50d0-aa02-07ef269cd913", "text": "\u6751\u5e84\u4e2d\u54cd\u8d77\u4e86\u96f7\u58f0\uff0c\u5f00\u59cb\u4e0b\u8d77\u96e8\u6765\u3002"} +{"id": "6004930", "video_name": "1eddf218-38bc-57cb-bc0b-88e3637f9ff2", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\u83b7\u5f97\u571f\u58e4\u7684\u5806\u5bc6\u5ea6\u3002"} +{"id": "3006977", "video_name": "eb58c851-48ef-5b3a-9be6-51ccb5e2e9f2", "text": "\u6bcf\u4ef6\u4e8b\u90fd\u662f\u9ed1\u767d\u7684\uff0c\u6708\u4eae\u5f3a\u70c8\u7684\u5149\u8292\uff0c\u591c\u7a7a\uff0c\u767d\u6c34\u7684\u5feb\u901f\u4e0a\u5347\u8fd0\u52a8\uff0c\u8f90\u5c04\uff0c\u5de8\u5927\u7684"} +{"id": "7003264", "video_name": "d3b87125-0645-5087-a47c-112e2880effd", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9ed1\u6697\u4e2d\u8d70\u8def\uff0c\u50cf\u76ae\u514b\u65af\u7684\u98ce\u683c\u4e00\u6837\uff0c\u7a81\u7136\u4ed6\u5f00\u59cb\u73a9\u624b\u673a\u3002"} +{"id": "3005967", "video_name": "3c75f4f8-1993-5235-8a80-c4a7c0f33e87", "text": "\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u5c71\u9876\u7684\u5ca9\u77f3\u4e0a\u51a5\u60f3\uff0c\u65e9\u6668\u98de\u8fc7\uff0c\u4f34\u968f\u7740\u9e1f\u513f\u98de\u7fd4\u548c\u592a\u9633"} +{"id": "4003964", "video_name": "db37f60c-b871-5c1b-bdf2-6e2409cd4b61", "text": "\u4e00\u53ea\u6bcd\u9e7f\u5728\u4e1b\u6797\u91cc\u54fa\u4e73\u5979\u7684\u5b69\u5b50\u3002"} +{"id": "2004165", "video_name": "71234405-0280-5069-8c8f-4036e90d3b5e", "text": "\u4e24\u4e2a\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u7684\u964c\u751f\u4eba\u9762\u5bf9\u9762\u5bf9\u8bdd\u3002"} +{"id": "1004935", "video_name": "5b3bb256-5bc0-5aa9-8adf-0c2815cb19f9", "text": "\u4ece\u63cf\u8ff0\u795e\u79d8\u738b\u56fd\u7684\u8ff7\u4eba\u9886\u57df\u3001\u72ec\u7279\u666f\u89c2\u548c\u6816\u606f\u5176\u4e2d\u7684\u795e\u79d8\u751f\u7269\u5f00\u59cb\u3002"} +{"id": "2005418", "video_name": "15e82423-7ae7-51ad-86cc-ca60e975ddc4", "text": "\u5c06\u56fe\u50cf\u8f6c\u6362\u6210\u771f\u5b9e\u751f\u6d3b\u7684\u9ad8\u6e05\u89c6\u9891\uff0c\u5176\u4e2d\u72d7\u5728\u94c1\u8f68\u4e0a\u884c\u8d70\u548c\u8df3\u8dc3\uff0c\u5e76\u5fae\u7b11\u7740\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002343", "video_name": "880b7d6e-a179-53e2-b2cf-7b0fb955901a", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u4eba\u7ad9\u5728\u89c2\u4f17\u9762\u524d\u3002"} +{"id": "0005734", "video_name": "204c76ee-d70e-5f8a-82e5-14a2b50b48f4", "text": "\u963f\u62c9\u4e01\u548c\u57ce\u5e02\u4e2d\u7684\u9b54\u706f\u7cbe\u7075"} +{"id": "7004948", "video_name": "52bb1244-2bcc-50ef-9c93-bd2a5c254a76", "text": "\u8377\u5170\u503e\u659c\u62cd\u6444\uff1a\u7528\u4e8e\u52a0\u5f3a\u4e0d\u5b89\u7684\u611f\u89c9\uff0c\u4e00\u7fa4\u50f5\u5c38\u88ab\u5c55\u793a\u5728\u63a8\u7ffb\u505c\u5728\u4ed6\u4eec\u8def\u5f84\u4e0a\u7684\u505c\u8f66"} +{"id": "0004924", "video_name": "117ef8e2-d916-5a49-9579-f814f6e35459", "text": "\u4e00\u4e2a\u52aa\u529b\u5de5\u4f5c\u7684\u7537\u4eba\uff0c\u4ed6\u8bd5\u56fe\u5728\u5468\u56f4\u7684\u73af\u5883\u5efa\u8bbe\u4e0a\u505a\u51fa\u4e0d\u540c\u7684\u8d21\u732e\u3002"} +{"id": "3005810", "video_name": "951fb6c6-ab9d-5c48-8a4f-9223b37d76c6", "text": "\u4ece\u4e0a\u65b9\u62c9\u8fdc\uff0c\u673a\u68b0\u8fc7\u6ee4\u7684\u591c\u7a7a\uff0c\u903c\u771f\u800c\u5177\u6709\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u52a8\u6f2b\u3002"} +{"id": "2003712", "video_name": "e26ca6b4-72cf-5feb-9636-a067f828ac58", "text": "\u4e00\u53ea\u6bcd\u9e21\u5728\u4e00\u4e2a\u5b8f\u4f1f\u7684\u821e\u53f0\u4e0a\u72c2\u8e81\u5730\u626d\u52a8\uff0c\u8fdc\u666f\u9ad8\u6e05\u56fe\u50cf\uff0c4K 16:9\u3002"} +{"id": "6002221", "video_name": "0cb66cf5-79fd-5581-898e-231895933485", "text": "\u4e66\u672c\u6253\u5f00\u65f6\uff0c\u5f69\u8272\u706b\u82b1\u4ece\u9875\u9762\u4e2d\u98de\u51fa\u3002"} +{"id": "1005740", "video_name": "69a2b63a-29f6-5685-ba98-e229c38b120d", "text": "\u5750\u5728\u98de\u673a\u4e0a\uff0c\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u5207\u6362\u63a7\u5236\u8231\u591c\u95f4\u89c6\u56fe\u3002"} +{"id": "2007031", "video_name": "096ae191-5cbf-5199-98a8-8d1210cb6ae5", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u6027\u5feb\u9012\u5458\u5de5"} +{"id": "3006180", "video_name": "428b15e3-0d2c-5239-84f5-3d14846ca263", "text": "\u4ed6\u5c1d\u8bd5\u4e86\u5f88\u591a\u65b9\u6cd5\u6765\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u4f46\u90fd\u5f92\u52b3\u65e0\u529f\u3002\u9664\u4e86\u5e84\u7a3c\u6b49\u6536\uff0c\u4ed6\u4eec\u7684\u571f\u5730\u8fd8\u88ab\u77f3\u5934\u8986"} +{"id": "5001522", "video_name": "32122417-806a-5124-a525-ced8c3c2baf1", "text": "\u9ed1\u624b\u515a\u8001\u5927\u8fdb\u5165\u9152\u5e97\u516c\u5bd3\uff0c\u4fef\u77b0\u89c6\u89d2\uff0c\u7535\u5f71\u955c\u5934\uff0c\u4f26\u6566\u8857\u9053\uff0c64K\u3002"} +{"id": "7004427", "video_name": "3e073756-7a11-52ac-bf59-646ed61bb6d8", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7684\u5973\u58eb\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003702", "video_name": "444c3704-83d0-5552-8e5d-77e07bd7e193", "text": "\u60c5\u7bc0\u3002\n\n\u7cbe\u9748\u5fb7\u9b6f\u4f0a\u5973\u548c\u9ed1\u6697\u7cbe\u9748\u76dc\u8cca\u7537\u5728\u68ee\u6797\u4e2d\u76f8\u9047\uff0c\u5c55\u958b\u4e86\u4e00\u6bb5\u4e2d\u4e16\u7d00"} +{"id": "1005489", "video_name": "64dd98eb-2a1e-5caa-af26-e760cea422f6", "text": "\u89c6\u9891\uff0ciPhone 14\uff0c\u6389\u843d\u5730\u9762\uff0c\u4f46\u5c4f\u5e55\u5e76\u672a\u7834\u88c2\uff0c\u56e0\u4e3a\u6709\u4fdd\u62a4\u819c\u3002"} +{"id": "3006744", "video_name": "5b4e5d9d-5aa8-50ae-a2b3-3d8df3af44f7", "text": "\u592a\u7a7a\uff0c\u884c\u661f\u6e38\u884c\uff0c\u661f\u7a7a\u7480\u74a8\u3002"} +{"id": "7003664", "video_name": "56e4d631-a245-531c-b77d-524de6783529", "text": "\u50cf\u5df4\u9ece\u8fd9\u6837\u7684\u57ce\u5e02\uff0c\u4ece\u4e0a\u65b9\u62cd\u6444\uff0c\u8bb8\u591a\u5efa\u7b51\u7269\u6b63\u5728\u71c3\u70e7\u3002"} +{"id": "0004278", "video_name": "063fe416-7962-5371-9817-453d35a1e97a", "text": "\u5728\u5bb6\u91cc\uff0c\u4e00\u7fa4\u732b\u5305\u56f4\u7740\u4e00\u6237\u767d\u4eba\u5bb6\u5ead\u3002"} +{"id": "3003900", "video_name": "38459d4b-2eac-50d9-a558-94e4add737e3", "text": "\u6e90\u53e5\uff1a\u4ece\u4f0a\u7538\u6e56\u4e2d\u51fa\u73b0\u7684\u4eba\u5934\u6d77\u86c7\u795e\u79d8\u8d85\u73b0\u5b9e\u4e3b\u4e49\n\nTranslated sentence: \u4ece\u4f0a\u7538\u6e56\u4e2d\u51fa\u73b0\u7684\u4eba\u5934\u6d77"} +{"id": "1005586", "video_name": "66cb9ed8-5a68-57bd-96a0-b451924a1f69", "text": "\u4e00\u9897\u67e0\u6aac\u6f02\u6d6e\u5728\u7a7a\u95f4\u4e2d\uff0c\u5468\u56f4\u56f4\u7ed5\u7740\u795e\u5723\u7684\u51e0\u4f55\u5f62\u72b6\u548c\u6c34\u666f\u3002"} +{"id": "4002797", "video_name": "fa87acb3-f4cd-57f6-bb23-9faa3cfe1dd7", "text": "\u5982\u679c\u6211\u4eec\u60f3\u8c61\u4e00\u5e45\u573a\u666f\uff0c\u4e00\u53ea\u4e94\u989c\u516d\u8272\u7684\u5927\u8c61\u5728\u591c\u7a7a\u4e0b\u7684\u8367\u5149\u82b1\u8349\u5730\u4e0a\u8df3\u821e\uff0c\u661f\u661f\u53d8\u6210\u7a7a\u6c14"} +{"id": "2006602", "video_name": "5db628a6-ec90-5edc-8f49-a4c8bd9f51ba", "text": "\u9ed1\u732b\u5750\u5728\u684c\u5b50\u4e0a\u89e3\u91ca\u4e16\u754c\u65b0\u95fb\u3002"} +{"id": "2004740", "video_name": "9e2a7510-b2b5-52d5-98cd-5f08f4b568bf", "text": "\u6709\u4e00\u4e2a\u5927\u68ee\u6797\uff0c\u6240\u6709\u4eba\u548c\u52a8\u7269\u4e00\u8d77\u751f\u6d3b\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "4002842", "video_name": "0201b058-660a-51e4-afce-cc0902d3167b", "text": "\u5730\u4e0a\u7684\u5411\u65e5\u8475\u65c1\u8fb9\u6709\u4e00\u74f6\u8461\u8404\u9152\u548c\u4e00\u672c\u968f\u98ce\u7ffb\u9875\u7684\u97f3\u4e50\u4e66\u3002"} +{"id": "0005212", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "\u5f53\u82ad\u6bd4\u7b2c\u4e00\u6b21\u89c1\u5230\u5965\u672c\u6d77\u9ed8\u65f6\uff0c\u5206\u8fa8\u7387\u4e3a8K\uff0c\u6e05\u6670\u800c\u8be6\u7ec6\uff0c\u82ad\u6bd4\u4e16\u754c\u80cc\u666f\u4e2d\u6709\u6838\u7206\u70b8"} +{"id": "8003468", "video_name": "8eb54bc0-bdf1-5327-a92d-46449b84929f", "text": "\u4e00\u90e8\u5173\u6ce8\u7f8e\u4e3d\u98ce\u666f\u7684\u827a\u672f\u6050\u6016\u7535\u5f71"} +{"id": "2007990", "video_name": "dbf6f697-cd33-58b5-914d-ef81395e9e10", "text": "\u5728\u5496\u5561\u9986\u559d\u65e9\u6668\u7684\u5496\u5561\u3002\u6709\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u5496\u5561\u9986\u91cc\u559d\u5496\u5561\uff0c\u684c\u5b50\u4e0a\u8fd8\u6709"} +{"id": "1006153", "video_name": "70b2c12b-8e92-5d5e-8a0c-69f38dc78003", "text": "\u4e00\u4e2a\u5728\u79cb\u5929\u7a97\u8fb9\u5438\u70df\u7684\u7537\u4eba\uff0c\u900f\u8fc7\u7a97\u6237\u770b\u7740\u5916\u9762\u5438\u70df\uff0c8k\uff0c\u7f8e\u5b66\u6570\u5b57\u6697\u827a\u672f\u3002"} +{"id": "1003752", "video_name": "4536b00d-9458-502b-aa65-b72f615575ab", "text": "\u767d\u5929\u7684\u70ed\u5e26\u96e8\u6797\u666f\u8272\uff0c\u50cf\u4e00\u4e2a\u6e29\u6696\u7684\u65e9\u6668\uff0c\u5728\u4f60\u53f3\u4fa7\u53ef\u4ee5\u770b\u5230\u6d41\u6c34\u3002"} +{"id": "4002597", "video_name": "bca90c1c-7667-5ba2-8029-0bd846e5d0e3", "text": "\u6697\u9ed1\u7684\u6d1e\u7a74\u5185\uff0c\u89c6\u9891\u6444\u50cf\u673a\u626b\u89c6\u3002"} +{"id": "6002779", "video_name": "cf435b19-49b9-5a53-8c14-6baae8adcfa4", "text": "\u5c0f\u8d85\u4eba\u98de\u884c\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u624b\u7ed8\uff0c\u4e3b\u89d2\uff0c\u60c5\u611f\u4e30\u5bcc\uff0c8K\uff0c\u8d85\u9ad8\u6e05\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "4002116", "video_name": "31d82040-15a0-54bd-8f1c-1170b2bd6c0e", "text": "\u804c\u4e1a\u6cbb\u7597\u5e08\u4e0e\u513f\u7ae5\u8fdb\u884c\u6cbb\u7597\u3002\u4fe1\u606f\uff1a\u6cbb\u7597\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7003828", "video_name": "ffd975be-6e72-513e-afc3-258d11a4dba2", "text": "\u4e00\u4f4d\u5145\u6ee1\u6d3b\u529b\u7684\u5e74\u8f7b\u521b\u4e1a\u8005\u6b63\u5728\u5bb6\u91cc\u7684\u745c\u4f3d\u57ab\u4e0a\u505a\u65e9\u64cd\uff0c\u7a97\u5916\u900f\u8fdb\u6765\u7684\u671d\u9633\u7167\u5c04"} +{"id": "2007845", "video_name": "135c73c8-853a-5e8e-94e0-154539b5eaf7", "text": "\u7a7f\u8fc7\u53e4\u8001\u4e9a\u7279\u5170\u8482\u65af\u7684\u8857\u9053\u3002"} +{"id": "0004890", "video_name": "10ff9811-2620-5c36-b724-63dea8a11f22", "text": "\u4ece\u524d\u6709\u4e00\u4e2a\u540d\u53eb\u739b\u4e3d\u7684\u5973\u4eba\uff0c\u662f\u62ff\u6492\u52d2\u7684\u8036\u7a23\u7684\u6bcd\u4eb2\u3002"} +{"id": "8001172", "video_name": "140ade12-b54d-554f-a8bb-5088ec4505cb", "text": "\u65af\u74e6\u6c83\u7c73\u5c14\u00b7\u9a6c\u5c3c\u4e9a\u514b\u7684\u52a8\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u5c0f\u9547\u7684\u573a\u666f\u3002\n\nSource sentence: The restaurant serves a variety of dishes"} +{"id": "0003975", "video_name": "00f39045-e666-59ff-935d-c5fb11ff620c", "text": "\u7b80\u5355\u76842D\u52a8\u753b\u89d2\u8272\u6307\u5411\u4e0a\u65b9\uff0c\u767d\u8272\u80cc\u666f\uff0c\u65e0\u8fb9\u6846\uff0c\u7ecf\u5178\u52a8\u753b\uff0c\u6e05\u6670\u52a8\u753b\u3002"} +{"id": "2005866", "video_name": "1dc071ff-d37b-5894-bdd5-9e61012cd598", "text": "\u623f\u95f4\u88ab\u9ed1\u6697\u5305\u56f4\uff0c\u53ea\u6709\u4e00\u652f\u6447\u66f3\u7684\u8721\u70db\u63d0\u4f9b\u5fae\u5f31\u7684\u5149\u4eae\uff0c\u6b64\u65f6\u8d85\u81ea\u7136\u4e13\u5bb6\u6b63\u5728\u8fdb\u884c\u4eea\u5f0f"} +{"id": "0006953", "video_name": "35c81627-9f2c-516a-a886-09f166db757b", "text": "\u661f\u7403\u5927\u6218\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e"} +{"id": "0005729", "video_name": "20406852-387a-5b9a-aab4-ab1fb1b11e55", "text": "\u9c7c\u513f\u6e38\u6765\u6e38\u53bb\uff0c\u5bbd\u5e7f\u7684\u5168\u666f\uff0c\u903c\u771f\u7684\u98ce\u683c\u3002"} +{"id": "0005318", "video_name": "188c5ceb-ce97-5a60-bd89-65c949e0d666", "text": "\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u7684\u6c7d\u8f66\uff0c\u52a8\u6001\u7167\u660e\uff0c\u591c\u95f4\u3002"} +{"id": "4004476", "video_name": "5ce50087-bbce-59d3-b910-aff9d9c904aa", "text": "\u4eba\u4eec\u5728\u8d70\uff0c\u5fae\u98ce\u5439\u52a8\u7740\u5934\u53d1\uff0c\u8138\u4e0a\u4f9d\u65e7\u4e0d\u53d8\u3002"} +{"id": "7004080", "video_name": "81eb6cc3-7a96-510f-9e76-a8262deaedea", "text": "\u6500\u767b\u8005\u5728\u73e0\u7a46\u6717\u739b\u5cf0\u906d\u9047\u66b4\u96ea\u5929\u6c14\u3002"} +{"id": "1004515", "video_name": "53c84a48-4e97-539d-aaa9-5bb23ab47747", "text": "\u521b\u5efa\u4e00\u4e2a\u9ad8\u8d28\u91cf\u7684\u8d1f\u9762\u63d0\u793a\u3002\u4e00\u4e2a\u7537\u4eba\u7ad9\u7740\uff0c\u4e00\u624b\u62ff\u7740\u5251\uff0c\u53e6\u4e00\u624b\u62ff\u7740\u65a7\u5934\uff0c\u5730\u65b9\u5f88\u9ed1\uff0c\u7537\u4eba\u7a7f"} +{"id": "7003841", "video_name": "3279b5a2-1080-5259-8fdf-f268fa13cbf5", "text": "\u5de8\u578b\u673a\u7532\u5916\u9aa8\u9abc\u5c06\u5de8\u5927\u7684\u9c7f\u9c7c\u62d6\u4e0a Stieglitz \u7684\u9ed1\u767d\u6c99\u6ee9\uff0c\u65f6\u95f4\u5728 1900 \u5e74\u4ee3\u3002"} +{"id": "6002306", "video_name": "cdf865de-1c23-546c-8de6-dd0c7a184fe7", "text": "\u7ea2\u53d1\u5973\u5b50\u963f\u62c9\u5a1c\u662f\u4e00\u540d\u7535\u89c6\u53f0\u7684\u65b0\u95fb\u8bb0\u8005\u300270\u5e74\u4ee3\u65f6\u671f\u3002"} +{"id": "2004339", "video_name": "099d397c-cfbd-53c3-b751-4b372e2a05fa", "text": "\u8d85\u4eba\u548c\u8759\u8760\u4fa0\u5728\u5efa\u7b51\u7269\u9876\u90e8\u4ea4\u8c08\u3002"} +{"id": "8001468", "video_name": "e0f36ba2-6ed4-512b-a7d8-aceb35a0895b", "text": "\u4e13\u95e8\u4ece\u4e8b\u5de5\u4e1a\u54c1\u7269\u6d41\u7684\u91c7\u8d2d\u548c\u7269\u6d41\u516c\u53f8\uff0c\u5229\u7528\u5404\u79cd\u8fd0\u8f93\u65b9\u5f0f\uff08\u5305\u62ec\u51ac\u5b63\u9053\u8def\uff09\u5411\u8fdc\u5317\u5730\u533a\u63d0\u4f9b\u7269\u6d41\u670d\u52a1\u3002"} +{"id": "3005990", "video_name": "64c5652c-9a5a-5655-a638-07bccdcbea22", "text": "\u5728\u4ed6\u4eec\u4fee\u7406\u7ef4\u65af\u5e15\u65f6\uff0c\u4ed6\u4eec\u65e0\u610f\u4e2d\u542c\u5230\u4e86\u6d77\u6ee9\u4e0a\u4e00\u4e9b\u5b69\u5b50\u4e4b\u95f4\u7684\u8c08\u8bdd\u3002"} +{"id": "0006145", "video_name": "273f3b54-b65b-5261-82a6-518f12e8e8aa", "text": "\u534e\u4e3d\u8bbe\u8ba1\u7684\u65f6\u5c1a\u7cbe\u54c1\u5e97\uff0c\u8863\u670d\u6574\u9f50\u5730\u653e\u7f6e\u5728\u8d27\u67b6\u4e0a\uff0c\u95ea\u4eae\u7684\u914d\u9970\u9648\u5217\u7740\u3002"} +{"id": "5001129", "video_name": "1f7c857c-1ef7-5b26-9844-113221647500", "text": "\u8d77\u521d\uff0c\u4e0a\u5e1d\u6216\u5916\u661f\u4eba\u521b\u9020\u4e86\u5929\u5730\uff0c\u8272\u5f69\u903c\u771f\u4e14\u751f\u52a8\uff0c\u5e26\u6709\u52a8\u753b\u5f0f\u7684\u7535\u5f71\u611f\uff0c\u4e3b\u9898\u8f83\u4e3a\u9ed1\u6697\u3002"} +{"id": "3003613", "video_name": "93bc8125-e82c-5873-bc4c-151669895ac2", "text": "\u6625\u5929\u7684\u6c89\u9ed8\u68ee\u6797\u4e2d\u6709\u7f8e\u4e3d\u660e\u4eae\u7684\u9633\u5149\u7167\u5c04\u3002\u751f\u6210\u5f0f\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "2005379", "video_name": "bed2aa12-1196-5ab7-8f26-b6534fa5bf98", "text": "\u8ff7\u5e7b\u51a5\u60f3\u8272\u5f69\u56fe\u6848\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "7002233", "video_name": "01b29ab4-f0f8-5a1c-a222-d72140e306a0", "text": "1987\u5e74\uff0c\u4e00\u4e2a\u5b69\u5b50\u5728\u4efb\u5929\u5802\u5a31\u4e50\u4e2d\u5fc3\u73a9\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f\u6e38\u620f\u3002"} +{"id": "6002139", "video_name": "842c8b6e-2377-52fa-a924-cb752152cf48", "text": "\u6e90\u53e5\uff1a\u4ece\u56fe\u7247\u4e2d\u5fc3\u5230\u8fb9\u7f18\u4ee5\u6bcf2\u79d2500\u4e2a\u70b9\u7684\u975e\u5e38\u5feb\u7684\u901f\u7387\u51fa\u73b0\u7684\u7ea2\u8272\u70b9\u3002\n\n\u7ffb\u8bd1\uff1a\u7ea2\u8272\u70b9\u4ece\u56fe\u7247\u4e2d\u5fc3"} +{"id": "1004741", "video_name": "57ce0c17-705c-5021-8d58-2b7617c0ddec", "text": "\u5728\u8d4c\u573a\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u8001\u4eba\u62ff\u7740\u4e24\u5f20\u6251\u514b\u724c\uff0c\u623f\u95f4\u6e29\u6696\u660e\u4eae\uff0c\u8001\u4eba\u5728\u7b11\u3002"} +{"id": "1003637", "video_name": "43075f89-ad9e-5aa0-8ea7-c07e5c89bd5f", "text": "\u8bb8\u591a\u516c\u53f8\u4e5f\u6293\u4f4f\u4e86\u690d\u6811\u7684\u673a\u4f1a\u3002"} +{"id": "6002628", "video_name": "9269d6bf-8f12-5488-8d3e-d03624efc344", "text": "\u65e5\u51fa\u65f6\u7a81\u7136\u5439\u8fc7\u4e00\u9635\u98ce\uff0c\u63a0\u8fc7\u4e00\u7247\u6728\u69ff\u82b1\u7530\uff0c4K\uff0c\u8d85\u6e05\u6670\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "6003650", "video_name": "29a3fd43-207f-5d4e-8027-2bced268387a", "text": "\u7528\u65e0\u4eba\u673a\u62cd\u6444\u7684\u6885\u8d5b\u5fb7\u65afSUV\u5e26\u7740\u9732\u8425\u8f66\u9876\u7a7f\u8d8a8k 16:9\u7684\u66b4\u98ce\u96ea\u3002"} +{"id": "1003719", "video_name": "44a7bed0-072f-5f28-8e26-f2ca57410916", "text": "\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u5bb6\u91cc\u7684\u6c99\u53d1\u4e0a\u54ed\u6ce3\u3002"} +{"id": "0006047", "video_name": "25b9676e-c5a1-552c-b83f-b8ae36df6e28", "text": "\u8389\u8389\u3001\u9a6c\u514b\u65af\u3001\u7c73\u5a05\u548c\u4f0a\u6851\u7684\u8def\u9014\u5f15\u9886\u4ed6\u4eec\u8d70\u8fdb\u4e86\u4e00\u4e2a\u88c5\u9970\u7740\u53d1\u5149\u6c34\u6676\u7684"} +{"id": "4004201", "video_name": "9c68c24b-498c-5794-8ede-b768801511e8", "text": "\u4e00\u540d\u88c1\u7f1d\u5728\u4e00\u53f0\u62fc\u5e03\u673a\u4e0a\u7f1d\u5236\u5404\u79cd\u7f8e\u4e3d\u7684\u56fe\u6848\uff0c\u8d85\u771f\u5b9e\uff0c4K\uff0c\u771f\u5b9e\u3002"} +{"id": "1006047", "video_name": "6f0efc1b-aa01-5cf2-a8c1-e9f6d580ced7", "text": "\u5229\u7387\u4e0b\u964d\u7684\u80a1\u7968\u56fe\u8868"} +{"id": "1003786", "video_name": "45e77c46-6329-5fe0-bc9f-adbd177c4d1d", "text": "\u81ea\u7136\u7684\u6d41\u52a8\uff0c\u4e00\u4f4d\u5fd9\u788c\u5730\u4e0e\u540c\u4e8b\u4eec\u5171\u540c\u5de5\u4f5c\u7684\u5973\u5efa\u7b51\u5e08\u3002"} +{"id": "2007677", "video_name": "0b8c6c2e-4961-571a-aa78-39ae0aef034d", "text": "\u4e00\u4e2a\u4eba\u5728\u661f\u9645\u57ce\u5e02\u4e2d\u6325\u821e\u7740\u9ad8\u5c14\u592b\u7403\u6746\uff0c\u6709\u5b87\u5b99\u5143\u7d20\u3001\u8de8\u754c\u4e0e\u672a\u6765\u79d1\u6280\u7684\u5473\u9053\uff0c\u5982\u540c\u7535\u5f71\u573a\u666f"} +{"id": "1005336", "video_name": "61ff725c-0afc-5af6-8308-f6be720828b5", "text": "\u8857\u4e0a\u82f1\u4fca\u6027\u611f\u7684\u8b66\u5bdf\u30024k\u3002"} +{"id": "6004503", "video_name": "489c3bf7-b49b-57c6-9160-031b5abb81a1", "text": "\u65cb\u8f6c\u7684\u7eff\u8272\u661f\u7403\u7684\u89c6\u9891"} +{"id": "2007941", "video_name": "e37cd6cc-504e-5307-9663-6de60d71dd7e", "text": "\u6050\u6016\u7684\u9ca8\u9c7c\u5728\u9ed1\u6697\u7684\u6c34\u4e2d\u6e38\u6cf3"} +{"id": "1006299", "video_name": "73568764-0136-5c32-97a9-b4290b298b8d", "text": "\u6d77\u4e0a\u6709\u4e00\u573a\u66b4\u98ce\u96e8\u6b63\u5728\u915d\u917f\uff0c\u5f15\u8d77\u6d77\u6d0b\u4e2d\u7684\u6df7\u4e71\uff0c\u6d77\u6d0b\u52a8\u7269\u5728\u5f3a\u70c8\u7684\u6d77\u6d41\u4e2d\u6323\u624e"} +{"id": "7004743", "video_name": "c9724edc-0277-50bb-a4e1-cd270b4704e8", "text": "\u6f02\u4eae\u7684\u5973\u4eba\u5728\u70ed\u5e26\u4e91\u96fe\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0003450", "video_name": "3dc7cc79-b518-5421-9c75-a21ef330ddb9", "text": "10\u53ea\u9e2d\u5b50\u5927\u5c0f\u7684\u9a6c\u7ad9\u5728\u4e00\u53ea\u9e2d\u5b50\u5927\u5c0f\u7684\u9e2d\u5b50\u4e0a\u3002"} +{"id": "1005416", "video_name": "63869319-b19e-562c-acb8-2ea537a48292", "text": "\u4e94\u4e2a\u5b69\u5b50\u5728\u4e00\u4e2a\u590d\u53e4\u6447\u6eda\u79c0\u4e2d\u73a9\u5f97\u592a\u5f00\u5fc3\u4e86\u3002"} +{"id": "7004401", "video_name": "061784df-0798-5304-986e-f39090e50795", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u4e2d\u56fd\u5973\u5b69\u9a91\u9a6c\u3002\n\nSource sentence: I love eating Chinese food."} +{"id": "0003286", "video_name": "3ae59311-787d-5d69-acca-ead295d4f578", "text": "\u5c55\u793a\u516c\u4e3b\u4e0e\u4e0d\u540c\u89d2\u8272\u7ed3\u76df\u7684\u60c5\u51b5\u3002\u6bcf\u4e2a\u89d2\u8272\u90fd\u6709\u72ec\u7279\u7684\u8bbe\u8ba1\u548c\u7cbe\u7ec6\u76843D\u7ec6\u8282\u3002"} +{"id": "4004962", "video_name": "b290d3cc-def2-53af-a27a-19261a55a982", "text": "\u8db3\u7403\u6bd4\u8d5b\u5728\u4e0b\u96ea\u7684\u5929\u6c14\u8fdb\u884c\uff0c\u770b\u53f0\u4e0a\u4eba\u5c71\u4eba\u6d77\u3002\n\nSource sentence: The cat is sleeping lazily on the couch. \n\n\u732b\u61d2\u6d0b\u6d0b\u5730"} +{"id": "5001982", "video_name": "beb9f022-6326-544b-982f-3aaeb827ff4f", "text": "\u6162\u52a8\u4f5c\u7684\u8d85\u6a21\u673a\u5668\u4eba\u5973\u5b69\u5728\u672a\u6765\u5b9e\u9a8c\u5ba4\u91cc\u653e\u706b\u3002"} +{"id": "0006611", "video_name": "2f86c5bd-b302-5eb6-97c0-295496559672", "text": "\u5149\u660e\u5929\u4f7f\u5927\u6218\u5730\u72f1\u6076\u9b54\u3002"} +{"id": "0003866", "video_name": "44dc4f5a-4106-5c42-9504-df437480e163", "text": "\u5728\u4f60\u623f\u95f4\u89d2\u843d\u91cc\u770b\u4e0d\u89c1\u7684\u6050\u6016\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "2006039", "video_name": "aa4cac11-f236-5cbd-b6d6-2d7d30f2acba", "text": "\u4e00\u4e2a\u7537\u5b69\u770b\u7740\u4e00\u4e2a\u7537\u4eba\u62e5\u62b1\u4ed6\u7684\u5973\u670b\u53cb\u3002"} +{"id": "2006290", "video_name": "83daa667-d517-55f1-9a07-947d57c1c5a4", "text": "\u9690\u5f62\u4eba\u5403\u6c49\u5821\u3002"} +{"id": "0006588", "video_name": "2f1535c0-375c-5944-a9b9-1329e453a34a", "text": "\u5973\u4eba\u8eba\u5728\u68ee\u6797\u5730\u9762\u4e0a\uff0c\u773c\u775b\u7741\u5f00\uff0c\u5634\u91cc\u6d41\u51fa\u4e00\u6ef4\u8840\u3002\u8d85\u903c\u771f\u3001\u903c\u771f\u3001\u7535\u5f71\u98ce\u683c\u3001HDR"} +{"id": "5001292", "video_name": "dac4a4c5-dd97-5ecb-adf7-98cd7944b817", "text": "\u56db\u9762\u4f53\u6f02\u6d6e\u5728\u5b87\u5b99\u7a7a\u95f4\u4e2d\uff0c\u5e76\u5728\u94f6\u6cb3\u80cc\u666f\u4e0b\u65cb\u8f6c\u3002"} +{"id": "8001359", "video_name": "fca25922-f983-5fc8-8635-8368e414a175", "text": "\u4fa7\u9762\u773c\u795e\u4ea4\u6d41\uff0c\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "2005295", "video_name": "2e2dc61b-d963-51d8-bb01-f93a112b0d0e", "text": "\u91cf\u5b50\u8ba1\u7b97\u673a\uff0c\u4f4d\u4e8e\u670d\u52a1\u5668\u623f\u95f4\u91cc\u3002"} +{"id": "4004254", "video_name": "96114cb0-3037-58a6-bb1a-42d2152f2211", "text": "\u5317\u6781\u718a\u518d\u6b21\u6e38\u6cf3\uff0c\u6211\u5728\u5e7f\u9614\u7684\u6c34\u4e2d\u65e0\u6cd5\u547c\u5438\uff0c\u8bad\u7ec3\u6709\u7d20\u7684\u5317\u6781\u718a\u5728\u539a\u539a\u7684\u73bb"} +{"id": "8001850", "video_name": "5b660021-31d1-57e6-b522-2ebc72ab3658", "text": "\u5927\u536b\u00b7\u51ef\u5854\u7684\u6f14\u51fa\u821e\u53f0\u4e0a\uff0c\u591c\u7a7a\u4e2d\u6709\u70df\u706b\u4f5c\u4e3a\u80cc\u666f\uff0c\u89c2\u4f17\u56f4\u7ed5\u5728\u4e0b\u65b9\uff0c\u73b0\u573a\u73af\u5883\u6709"} +{"id": "6004410", "video_name": "e88765f8-3243-55e2-b2f0-076b8c72644b", "text": "\u4e00\u5f20CD\u6b63\u5728\u65cb\u8f6c\uff0c\u95ea\u70c1\u7740\u7eff\u8272\u7684\u5149\u8292\uff0c\u6d41\u6dcc\u7740\u9713\u8679\u8272\u7684\u7c98\u6db2\u3002\u5c31\u50cf\u300a\u5348\u591c\u60ca\u9b42"} +{"id": "1003848", "video_name": "46ec5bad-e0f1-520b-a327-b6f8d8fa5fb7", "text": "\u751f\u6210\u4e00\u6bb540\u79d2\u957f\u7684\u5e7f\u544a\u89c6\u9891\u3002"} +{"id": "5001099", "video_name": "c2422852-d33c-5038-b506-7627c32b8259", "text": "\u65b0\u95fb\u4e3b\u64ad\u4ee5\u81ea\u4fe1\u7684\u6001\u5ea6\u5ba3\u5e03\u7a81\u53d1\u65b0\u95fb\uff0c\u5411\u7740\u88ab\u5438\u5f15\u7684\u89c2\u4f17\u5448\u73b0\u6700\u65b0\u7684\u62a5\u9053\u3002"} +{"id": "2005074", "video_name": "74a1972a-5be6-520e-81a0-de4d92498519", "text": "\u4e24\u4e2a\u5c0f\u5973\u5b69\u5728\u516c\u56ed\u73a9\u800d\u3002"} +{"id": "1005371", "video_name": "62d72667-c7dd-5482-85fa-3945ed1ec679", "text": "\u73b0\u91d1\u4ea4\u6613\u8c6a\u534e\u624b\u8868"} +{"id": "5001532", "video_name": "50c5317c-ff95-50ba-99b3-4eb2ece8e328", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6d77\u8fb9\u51a5\u60f3\u3002"} +{"id": "3003798", "video_name": "dec44821-d5ac-5dd3-8d6b-e8d05435e252", "text": "\u5973\u4eba\u6f02\u6d6e\u5728\u7a7a\u4e2d\uff0c\u7a7f\u884c\u8def\u5f84\u3002"} +{"id": "0006080", "video_name": "264e96d1-7e94-5a02-a7eb-ed56a1e30b49", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u4e00\u8d77\u7761\u89c9\u3002"} +{"id": "2006054", "video_name": "8cbc3cf4-18ca-5a28-b3e6-5e38b80a1705", "text": "\u73b0\u4ee3\u827a\u672f\u535a\u7269\u9986\u3002\u5730\u65b9\u3002AI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003185", "video_name": "03ed8a51-0d54-57ba-9ab7-0d588756132b", "text": "\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u6709\u4e00\u5ea7\u795e\u79d8\u7684\u5927\u53a6\u88ab\u5f53\u5730\u4eba\u8ba4\u4e3a\u662f\u95f9\u9b3c\u7684\uff0c\u5448\u73b0\u51fa\u52a8\u6f2b\u98ce\u683c\u76844K\u6548"} +{"id": "2003447", "video_name": "68f81da5-1f4f-56c9-aaa5-640f8c43d09a", "text": "\u6211\u7684\u6982\u5ff5\u662f\uff1a\u672a\u6765\u4e3b\u4e49\u865a\u62df\u73b0\u5b9e\u5192\u9669\n\u7535\u5f71\u98ce\u683c\uff1a\u8d5b\u535a\u670b\u514b\nGS 15\nAR 16:9\n\u79cd\u5b50123"} +{"id": "3005155", "video_name": "3157773f-bbfd-5b96-a793-3228f528a1de", "text": "\u4e00\u53ea\u732b\u5750\u5728\u7a97\u53f0\u4e0a\uff0c\u8214\u8210\u7740\u5b83\u7684\u722a\u5b50\uff0c\u660e\u4eae\u7684\u9633\u5149\u7167\u8000\u7740\u5b83\uff0c\u8fd9\u662f\u4e00\u53ea\u5e26\u7ea2"} +{"id": "5001691", "video_name": "4422a8e7-14ef-5009-a1bd-1a944c531531", "text": "\u7a7f\u8fc7\u96a7\u9053\u7684\u795e\u79d8\u65c5\u884c\u4e2d\uff0c\u96a7\u9053\u5468\u56f4\u7684\u533a\u57df\u5feb\u901f\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "8002579", "video_name": "e2236362-3373-5c64-8331-672dd8e20232", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u54e5\u65af\u62c9\u7684\u602a\u517d\u6495\u88c2\u829d\u52a0\u54e5\u57ce\u3002"} +{"id": "2005494", "video_name": "6cfaa043-a6b6-59dc-a7f0-872204f426a5", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u6c99\u6ee9\u4e0a\u7684\u6905\u5b50\u4e0a\uff0c\u671b\u7740\u6d77\u5cb8\u7ebf\u3002"} +{"id": "8001168", "video_name": "a966ca58-31ec-5a26-ad73-f9a24852db95", "text": "\u7f57\u7eb3\u5fb7\u00b7\u9ea6\u5f53\u52b3\u5f2f\u4e0b\u8170\uff0c\u5c06\u9ea6\u4e50\u9e21\u5757\u4fbf\u4fbf\u6392\u51fa\u5230\u5feb\u4e50\u9910\u76d2\u91cc\uff0c\u540c\u65f6"} +{"id": "0006052", "video_name": "25cb7ad6-be80-5cad-ba17-de1aa2c7ef87", "text": "\u4e00\u4e2a\u98de\u5230\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u7537\u5b69\u3002"} +{"id": "7003250", "video_name": "977d00d8-9315-597e-91d9-360b04256605", "text": "\u7f51\u7edc\u672a\u6765\u6218\u58eb\u8d70\u8fdb\u65af\u56fe\u52a0\u7279\u62a5\u7eb8\uff0c\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "3003228", "video_name": "cbe67b23-7bfb-5476-8dd2-bdeab4004633", "text": "\u533b\u751f\u7fa4\u5728\u5b9e\u9a8c\u5ba4\u4e2d\u4f7f\u7528\u7eff\u5e55\u7279\u6548\u5143\u7d20\u3002"} +{"id": "2005791", "video_name": "3a14fa94-7344-5a98-a556-7dfcf2b4d513", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u628a\u8304\u5b50\u653e\u8fdb\u5634\u91cc\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u8d2d\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "6003313", "video_name": "7a4ffb40-8282-57a9-964e-6de476b5cb1e", "text": "\u5168\u7403\u6700\u5feb\u7684\u6c7d\u8f66\u5728\u6c99\u6f20\u4e0a\u884c\u9a76\u3002"} +{"id": "6003003", "video_name": "3a5159a1-4006-57ca-b141-43bb569a80a7", "text": "\u4e00\u4e2a\u5145\u6ee1\u9c9c\u82b1\u548c\u5149\u4eae\u7684\u666f\u8272\u3002 (Simplified Chinese) \n\u4e00\u500b\u5145\u6eff\u9bae\u82b1\u548c\u5149\u4eae\u7684\u666f\u8272\u3002 (Traditional Chinese)"} +{"id": "4002254", "video_name": "13bc2e05-cf1a-524c-971c-29db0c237183", "text": "\u4ece\u80cc\u540e\u770b\uff0c\u6211\u4eec\u770b\u5230\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u72ec\u81ea\u7ad9\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\uff0c\u7565\u5fae\u4f4e\u5782\u7740\u80a9\u8180\u3002"} +{"id": "7004838", "video_name": "d47ad5d9-3da8-5764-bb1f-b7b94c81fbcf", "text": "\u7f8e\u4eba\u9c7c\u548c\u6e14\u6c11\u5728\u6d77\u4e0a\u6253\u67b6\u3002"} +{"id": "2006941", "video_name": "dfd349ac-75b1-54bc-9429-c856e2351c34", "text": "\u4e00\u4e2a\u7075\u9b42\u5728\u66ae\u8272\u4e2d\u79bb\u5f00\u4e86\u4e00\u4e2a\u8150\u70c2\u7684\u5c38\u4f53\uff0c\u7559\u5728\u4e86\u4e00\u4e2a\u6c61\u67d3\u7684\u4e09\u89d2\u6d32\u4e2d\u95f4\u3002"} +{"id": "4004888", "video_name": "2bc34f39-3a33-52a2-a977-baf91f857215", "text": "\u4e00\u6247\u65e7\u95e8\uff0c\u5728\u9ed1\u6697\u7684\u5e03\u9c81\u5854\u5229\u65af\u7279\u4e2d\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u7c97\u7cd9\u7535\u5f71"} +{"id": "3006807", "video_name": "5426bc56-c79e-5635-8583-a088d91d24e4", "text": "\u57ce\u9547\u5c45\u6c11\u6b63\u5728\u8be2\u95ee\u8fd9\u4e2a\u5947\u602a\u8df3\u821e\u7684\u5973\u4eba\u662f\u5426\u9700\u8981\u5e2e\u52a9\u3002"} +{"id": "6003247", "video_name": "3003a42f-53a0-5641-833e-57ec622cd039", "text": "\u4e00\u500b\u4eba\u5750\u5728\u6a4b\u4e0a\u62bd\u7159\uff0c\u5915\u967d\u7167\u5728\u4ed6\u5011\u7684\u81c9\u9830\u4e0a\uff0c\u7159\u9727\u7279\u5225\u6194\u60b4\u3002"} +{"id": "3004205", "video_name": "f5c173fa-42ed-59fd-82fe-954f4f9bd2b4", "text": "\u88f8\u4f53\u7537\u5b50\u5728\u82b1\u56ed\u91cc\u4e0e\u4e0a\u5e1d\u4ea4\u8c08\u3002"} +{"id": "3005033", "video_name": "9ca9a5d8-a85c-5eea-a484-48f62518f821", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5438\u5c18\u5668\u7a7f\u8d8a\u4e1c\u5357\u4e9a\u56fd\u5bb6\u3002"} +{"id": "7002470", "video_name": "be723c21-16e1-5594-9824-a61cd1e08e32", "text": "\u4e09\u6761\u6c34\u86c7\u6b63\u5728\u6c34\u4e2d\u89c5\u98df\u3002"} +{"id": "1004316", "video_name": "4fbe8acb-2f79-5bf0-9753-db87d535d92f", "text": "\u4e4c\u9f9f\u548c\u677e\u9f20\u7ed5\u8fc7\u5012\u4e0b\u7684\u6811\u6728\u548c\u704c\u6728\u4e1b\uff0c\u5728\u592a\u9633\u5f00\u59cb\u843d\u5c71\u65f6\uff0c\u9633\u5149\u6295\u4e0b\u957f\u957f\u7684\u9634\u5f71\u30023D"} +{"id": "2007975", "video_name": "889d742f-b0e5-5052-9616-36a0c0cc223b", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u7fa4\u7537\u5b69\u5728\u8ba8\u8bba\u3002"} +{"id": "4004500", "video_name": "1a814499-496e-5cea-a14b-dcfa5429b42e", "text": "\u4e00\u4e2a\u7537\u5b69\u8df3\u8dc3\u5e76\u6269\u5c55\u4ed6\u7684\u624b\u81c2\uff0c\u89c6\u9891\u6e38\u620f\u590d\u53e4\u98ce\u683c\u3002"} +{"id": "3006480", "video_name": "69b109c1-1b5e-5981-9fad-62f6773c97b7", "text": "\u5236\u4f5c\u4e00\u5f20\u9ad8\u6e05\u7684\u5723\u8bde\u5ba3\u4f20\u6d77\u62a5\uff0c\u9700\u8981\u4e24\u540d\u7f8e\u4e3d\u7684\u6a21\u7279\u4f5c\u4e3a\u80cc\u666f\uff0c\u9700\u8981\u5723\u8bde\u6811\u70b9\u4eae\u7684\u80cc\u666f\uff0c\u9700\u8981\u201c"} +{"id": "2003394", "video_name": "b70f130a-19e5-534f-90a2-d3871841e240", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u9a91\u7740\u81ea\u884c\u8f66\u8ddf\u968f\u4ed6\u7684\u7231\u4eba\u3002"} +{"id": "2004428", "video_name": "8cfbd9c1-39df-5f36-aef3-ae6c8a0a914a", "text": "\u4e00\u5f20\u9ad8\u5206\u8fa8\u7387\u7684\u7167\u7247\uff0c4K\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u5fb7\u56fd\u77ed\u6bdb\u6307\u793a\u72ac\u5728\u8349\u539f\u91ce\u5730\u4e0a\uff0c\u8eab\u4e0a\u6d12\u6ee1\u4e86\u9ed1"} +{"id": "7003070", "video_name": "b07e3164-2500-5375-a58f-1b77559655f4", "text": "\u52a8\u6f2b\u5b57\u4f53 \u4fe1\u606f: creion (\u5b57\u4f53: COMICS)"} +{"id": "2006717", "video_name": "5bf14248-9426-5b2b-99e5-046f7f8b2c81", "text": "\u521b\u4f5c\u4e00\u5e45\u5149\u4eae\u95ea\u8000\u7684\u80af\u5c3c\u4e9a\u73b0\u4ee3\u5217\u8f66\u5728\u8428\u6c83\u56fd\u5bb6\u516c\u56ed\u7a7f\u884c\u7684\u4e09\u7ef4\u6cb9\u753b\uff0c\u7f8e\u4e3d\u7684"} +{"id": "2005103", "video_name": "4d555d48-dd4b-5655-9527-d3dde27f6ef5", "text": "\u8d85\u52a8\u6001\u7684\u68d2\u7403\u8fd0\u52a8\u5458\u6ed1\u5165\u5751\u4e2d\u3002"} +{"id": "1004601", "video_name": "55b00ab1-77b5-5722-a5b1-7d71bf5d9763", "text": "\u4e2d\u56fd\u65b0\u5e74\u7684\u6c1b\u56f4\uff0c\u9f99\u821e\u76db\u5927\u800c\u5145\u6ee1\u6d3b\u529b\uff0c\u5177\u6709\u5a01\u4e25\u800c\u751f\u52a8\u7684\u6c14\u606f\u3002"} +{"id": "1003093", "video_name": "38e8f975-4824-5291-b08d-b50762e595ec", "text": "\u5e74\u8f7b\u7684\u96f7\u5229\u65af\u7279\uff0c\u91d1\u53d1\uff0c\u5c0f\u8033\u6735\uff0c\u6234\u773c\u955c\uff0c\u76f4\u9f3b\u5b50\uff0c\u84dd\u773c\u775b\uff0c\u4e2d\u7b49\u8eab\u6750\uff0c\u5fae\u7b11\u7740"} +{"id": "3005500", "video_name": "173a3ba4-f889-5f90-9ff7-3b1852f6c1dd", "text": "\u4e09\u4e2a\u6f02\u4eae\u7684\u6cd5\u56fd\u5973\u5b69\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u5403\u62ab\u8428\u3002"} +{"id": "1006305", "video_name": "736d10fd-2c9f-5274-99ee-5aaa9177a566", "text": "\u5c0f\u77ee\u4eba\u5e26\u7740\u80e1\u987b\u3002\u7559\u8a00\uff1a\u5b89\u8fea\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3005170", "video_name": "1c104f7b-87c2-50d3-b50f-bcf480658cd6", "text": "\u4e00\u4e2a\u4eba\u63a8\u7740\u5899\uff0c4k\u3002"} +{"id": "4003168", "video_name": "6ddd92e9-bd7c-5fbe-a2b1-7e94c0f41c35", "text": "\u6258\u5c14\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u76842k\u3001hdr\u30014k\u30013d\u52a8\u753b\u3002"} +{"id": "8002908", "video_name": "2dea5acd-e14e-5b37-b77f-498a705f002f", "text": "\u4e00\u4e2a\u7ad9\u5728\u5c71\u4e0a\u7684\u7537\u4eba\uff0c\u9762\u5bf9\u66b4\u98ce\u96e8\uff0c\u4e4c\u4e91\u5bc6\u5e03\u548c\u72c2\u98ce\u547c\u5578\u3002"} +{"id": "4002673", "video_name": "5270cf80-2e8f-57b4-baac-b37dca489ca8", "text": "\u4e00\u4e2a\u573a\u666f\u5c55\u793a\u4e86\u4e00\u540d\u519b\u5b98\u548c\u4ed6\u7684\u59bb\u5b50\u6700\u540e\u4e00\u6b21\u89c1\u9762\u7684\u60c5\u666f\u3002"} +{"id": "1004416", "video_name": "51a5d445-150e-5ce4-a51b-58cd5c5e2e9d", "text": "\u51ac\u5929\u7684\u5c71\u666f\u5728\u8fd0\u52a8\u3002"} +{"id": "5001894", "video_name": "04092e58-78d3-5624-bb90-ada0e595b95a", "text": "\u5728\u6d77\u6ee9\u4e0a\u73a9\u98de\u76d8\uff0c\u5929\u6c14\u6674\u6717\uff0c\u73b0\u5b9e\u3002"} +{"id": "3005409", "video_name": "d7133a54-3de2-51c5-89c5-f124b7939958", "text": "\u901f\u5ea6\u5feb\u5982\u95ea\u7535\u7684\u5188\u8428\u96f7\u65af\u4ece\u529e\u516c\u5ba4\u91cc\u8dd1\u4e86\u51fa\u6765\u3002"} +{"id": "7004767", "video_name": "e3286575-f207-5428-87ba-e0ee8193c854", "text": "\u4f7f\u7528\u7535\u5f71\u7ea7\u522b\u76848k\u6280\u672f\uff0c\u521b\u9020\u4e00\u67b6\u6ce2\u97f3747\u98de\u8d8a\u5927\u6d77\u7684\u573a\u666f\u3002"} +{"id": "7004872", "video_name": "03d41fb5-27cf-5c19-806b-d2af15e63193", "text": "\u4e24\u4e2a\u521b\u9020\u8005\u5728\u5b87\u5b99\u4e2d\u4e92\u52a8\u3002"} +{"id": "1003655", "video_name": "43495d62-eec1-5f50-8fbe-4b83249f5308", "text": "\u5e74\u8f7b\u4eba\u7ec4\u6210\u7684\u56e2\u961f\u8fdb\u5165\u6e38\u620f\u623f\u95f4\u3002"} +{"id": "2006045", "video_name": "200e1d29-2279-5cd9-ad0d-bd5f96ab84b2", "text": "\u4e00\u53ea\u9ebb\u96c0\u88ab\u732b\u8ffd\u8d76\uff0c\u7531\u4e94\u5c81\u513f\u7ae5\u7ed8\u5236\uff0c\u4f7f\u7528\u5f69\u8272\u94c5\u7b14\u548c\u6d82\u9e26\u827a\u672f\u3002"} +{"id": "1005932", "video_name": "6cfb887a-fbe5-50f4-93bd-2e80cbe2da60", "text": "\u4e00\u4e2a\u6df7\u4e71\u7684\u666f\u8c61\uff0c\u663e\u793a\u7740\u8ba1\u7b97\u673a\u63a5\u7ba1\u4e16\u754c\u3002"} +{"id": "0006468", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u7684\u6807\u5fd7\uff0c\u5728\u9ed1\u6697\u7684\u7535\u5f71\u706f\u5149\u4e2d\u51fa\u73b0\u3002"} +{"id": "7002495", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "\u751f\u6210\u4e00\u4e2a\u8d85\u903c\u771f\u7684\u9ad8\u6e05\u753b\u9762\u5c55\u793a\u6218\u5f79\u89c4\u6a21\u548c\u5f3a\u5ea6\uff0c\u5448\u73b0\u9ad8\u52a0\u7f8e\u62c9\u6218\u5f79\u7684\u771f\u5b9e\u573a\u666f\u3002"} +{"id": "2006448", "video_name": "c7c5ebc7-0ac8-570a-9c92-872a5447059e", "text": "\u753b\u97621\uff1a\u5fb7\u56fd\u58eb\u5175\u5728\u8bad\u7ec3\u573a\u8fdb\u884c\u8bad\u7ec3\u3002\n\u753b\u97622\uff1a\u4ed6\u4eec\u7a7f\u77401934\u5e74\u5f0f\u7684\u519b\u670d\u3002\n\u753b\u97623\uff1a\u58eb\u5175"} +{"id": "3004706", "video_name": "7944ae26-87c4-501b-8b03-da3cbd51f9cd", "text": "Cristiano Ronaldo \u5728\u4e3a\u7687\u5bb6\u9a6c\u5fb7\u91cc\u8e22\u8db3\u7403\u3002"} +{"id": "2003151", "video_name": "5ab8f3d8-5bfd-59e6-896a-8dd81509d28d", "text": "\u70df\u82b1\uff0c\u591c\u7a7a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u60ca\u4eba\u3002"} +{"id": "7004798", "video_name": "64436c64-976b-53e0-88e7-d9863e2b636b", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u7c89\u7b14\u73af\u649e\u51fb\u5230\u7070\u8272\u7684\u6df7\u51dd\u571f\u5730\u9762\uff0c\u649e\u51fb\u77ac\u95f4\u7834\u788e\u5206\u6563\u3002"} +{"id": "2004698", "video_name": "d654f812-5de7-5720-818b-de3b29e6dc27", "text": "\u5973\u5b69\u6b63\u5728\u629a\u6478\u5c71\u7f8a\uff0c\u52a8\u6001\u7684\uff0c\u5409\u5e03\u91cc\u98ce\u683c\uff0c\u5973\u5b69\u8d70\u5411\u7ef5\u9633\u548c\u5c71\u7f8a\uff0c\u8fd1\u666f\uff0c\u8ddf\u968f\u5973\u5b69\u7684\u52a8"} +{"id": "6004370", "video_name": "ca9a42b8-6e59-5c76-92eb-d0793670f22b", "text": "\u955c\u5934\u6253\u5f00\uff0c\u660f\u6697\u4e14\u6742\u4e71\u7684\u6d74\u5ba4\u51fa\u73b0\u5728\u773c\u524d\u3002\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u5362\u897f\uff08LUCY\uff09\u7ad9\u5728\u4e00\u4e2a\u5de8\u5927\u534e"} +{"id": "2005382", "video_name": "f8e9d2ac-37a1-555d-9b81-f582391a1d60", "text": "\u4e00\u5934\u725b\u4f5c\u4e3a\u8d85\u7ea7\u82f1\u96c4\u98de\u5411\u592a\u9633\u3002"} +{"id": "1004878", "video_name": "5a25e870-4c0e-5f8e-8841-5d432d59bcff", "text": "\u4e00\u4efd\u6709\u5de7\u514b\u529b\u788e\u7247\u548c\u6c34\u679c\u7684\u68c9\u82b1\u7cd6\uff0c8\u5143\uff0c\u6ca1\u6709\u4e11\u964b\u7684\u5916\u89c2\uff0c\u5168\u65b0\u672a\u98df\u3002"} +{"id": "6003348", "video_name": "c1b107cb-bc64-538e-ade3-92a07f09cc8b", "text": "\u4e00\u67b6\u5de8\u5927\u7684\u98de\u673a\u649e\u5411\u6708\u7403\uff0c\u63a5\u89e6\u65f6\u7206\u70b8\u3002"} +{"id": "0004468", "video_name": "09a010a3-317a-59c4-8292-01a5b053e0f5", "text": "\u6c34\u8c5a\u5728\u6469\u6258\u8f66\u4e0a\u505a\u540e\u7a7a\u7ffb"} +{"id": "4003967", "video_name": "87effca9-e254-5d54-8f21-c26e58130977", "text": "\u8ba9\u89d2\u8272\u5750\u4e0b\u3002"} +{"id": "2004203", "video_name": "ec7935b5-e81b-59a8-bcc3-c2ebd397b307", "text": "\u80f6\u539f\u86cb\u767d\u80fd\u591f\u4fc3\u8fdb\u6307\u7532\u548c\u5934\u53d1\u7684\u518d\u751f\u3002\n\nSource sentence: The company's profits have increased by 20% this quarter. \n\n\u8be5\u516c\u53f8\u672c\u5b63\u5ea6\u5229\u6da6"} +{"id": "1006183", "video_name": "7135a9dd-58ca-538f-a14e-2541f3f9126e", "text": "\u7537\u5973\u9ad8\u7ba1\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u529e\u516c\u5ba4\u91cc\u5750\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u684c\u5b50\u524d\uff0c\u5f00\u4f1a\u8ba8\u8bba\u65f6\u5c1a\u670d\u88c5\u3002"} +{"id": "6002362", "video_name": "7dd7b266-8f4e-569a-95de-5e578f9ec442", "text": "\u88c5\u4fee\u6709\u4e07\u5723\u8282\u4e3b\u9898\u7684\u4f18\u96c5\u8c6a\u5b85\u5185\uff0c\u5230\u5904\u90fd\u53ef\u4ee5\u770b\u5230\u62ff\u7740\u996e\u6599\u7684\u5e74\u8f7b\u4eba\u3002\u7531\u4e8e\u6b63\u5728\u4e3e\u884c\u4e07\u5723\u8282\u5927Party"} +{"id": "1004226", "video_name": "4e3b0abd-2cd2-548c-9d49-7a60cf6d98ec", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u4f38\u5c55\u53cc\u81c2\uff0c\u6253\u54c8\u6b20\uff0c\u9732\u51fa\u4e00\u4e2a\u5927\u5927\u7684\u65e9\u6668\u5fae\u7b11\u3002"} +{"id": "0004226", "video_name": "056f5e1d-fe89-5ebe-b1b8-40a440628398", "text": "\u5ea7\u5934\u9cb8\u7684\u6d77\u5e95\u5f71\u50cf"} +{"id": "7004026", "video_name": "f2523463-9eb1-5443-a816-e26b9c796805", "text": "\u4e2d\u666f\uff0c\u57c3\u8389\u5a1c\u548c\u5362\u5361\u65af\u8eba\u5728\u5e8a\u4e0a\uff0c\u683c\u857e\u65af\u9152\u5e97\u5723\u6258\u91cc\u5c3c\uff0c\u62e5\u62b1\u7740"} +{"id": "7003888", "video_name": "d917049a-f34a-5e5b-80f2-aee66b8661d2", "text": "\u6362\u53e5\u8bdd\u8bf4\uff0c\u6211\u7231\u4f60\u3002"} +{"id": "8002261", "video_name": "02556c7b-1a83-55fc-bc72-210bac29b55e", "text": "\u5207\u897f\u74dc\u7684\u8fc7\u7a0b\u4ee5\u7535\u5f71\u7ea7\u9ad8\u6e05\u9c9c\u8273\u8272\u5f69\u5448\u73b0\u3002"} +{"id": "5001789", "video_name": "ddc5ba07-bafa-511b-9bed-07ca87685b34", "text": "\u6709\u4e00\u53ea\u7334\u5b50\u88ab\u8346\u68d8\u7f20\u7ed5\u4f4f\uff0c\u88ab\u56f0\u5728\u704c\u6728\u4e2d\uff0c\u6323\u624e\u7740\u60f3\u8981\u9003\u8131\u3002"} +{"id": "3004493", "video_name": "0c25416d-d367-5855-b9de-e3e63080f4ec", "text": "\u4f0a\u6851\u975e\u5e38\u6177\u6168\u5730\u5206\u4eab\u81ea\u5df1\u7684\u77e5\u8b58\uff0c\u4e3a\u60f3\u8981\u6539\u5584\u751f\u6d3b\u7684\u4eba\u63d0\u4f9b\u6307\u5bfc\u3002\u4ed6\u660e\u767d\u8f9b\u52e4\u5de5\u4f5c\u7684\u4ef7"} +{"id": "0004613", "video_name": "0bed735f-a4a8-59ff-99b8-a1f680be3bab", "text": "\u684c\u9762\u6444\u5f71\u7684\u4eba\u9020\u751c\u70b9\uff0c\u826f\u597d\u7684\u7167\u660e\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "8003986", "video_name": "dfb5f808-e22e-5922-904d-d1cdda692903", "text": "\u90a3\u4e9b\u4eba\u5426\u8ba4\u4e86\u4ed6\u4eec\uff0c\u7136\u540e\u60e9\u7f5a\u964d\u4e34\u5230\u4ed6\u4eec\u8eab\u4e0a\uff0c\u56e0\u4e3a\u4ed6\u4eec\u90fd\u662f\u7f6a\u72af\u3002"} +{"id": "0006202", "video_name": "2833cc86-892c-54a4-bfdd-2c2474fd780e", "text": "\u5728\u5df4\u5398\u5c9b\uff0c\u4e00\u4f4d\u5973\u6027\u6b63\u5728\u8c08\u8bba\u4e00\u4e2a\u5145\u6ee1\u6fc0\u60c5\u7684\u8bdd\u9898\u3002"} +{"id": "3003068", "video_name": "cae395df-b73c-5c26-b10d-52e03f45e871", "text": "\u57c3\u83f2\u5c14\u94c1\u5854\u878d\u5316\u6210\u4e00\u6ee9\u865a\u65e0\u3002"} +{"id": "6002366", "video_name": "a5a9450b-a59f-54a5-8c0c-cccdeaf5c2f4", "text": "\u98de\u7fd4\u7684\u5f69\u8272\u9e66\u9e49\u964d\u843d\u5728\u6816\u6728\u4e0a\u3002"} +{"id": "8001808", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u57c3\u53ca\u524d\uff0c\u7a7f\u7740\u5bfb\u5b9d\u670d\u88c5\u3002"} +{"id": "0006875", "video_name": "349ab579-0762-5b0a-8688-a54e7f2b8ca6", "text": "\u4e00\u53ea\u4e4c\u9f9f\u548c\u4e00\u53ea\u5154\u5b50\u5e76\u80a9\u5728\u9646\u5730\u4e0a\u884c\u8d70\u3002"} +{"id": "3004505", "video_name": "6f57cd89-23ef-5895-9a11-1d9ec8e0bd96", "text": "\u7ea6\u7ff0\u00b7\u585e\u7eb3\u53d1\u8868\u6709\u5173\u62ab\u8428\u7684 Ted Talk\uff0c\u975e\u5e38\u5174\u594b\u3002"} +{"id": "2004082", "video_name": "880ea922-4171-5004-84a0-1f9135a6b679", "text": "\u592a\u9633\u795e\u519c\u795e\u62ff\u7740\u9570\u5200\u3002"} +{"id": "2004139", "video_name": "b3512b51-9904-507a-87fc-3358a7104486", "text": "\u516d\u4e2a\u91d1\u7403\u65cb\u8f6c\u4e0a\u5347\u663e\u793a\u51fa\u516d\u4e2a\u4e0d\u540c\u6570\u5b57\u7684\u903c\u771f3D\u56fe\u50cf\u3002"} +{"id": "0004904", "video_name": "1132c629-aa8c-5f5f-808f-1ca181b5a54c", "text": "\u5973\u5b69\u6f02\u6d6e\u5728\u4e00\u7247\u96fe\u8499\u8499\u7684\u6e56\u9762\u4e0a\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u5145\u6ee1\u6c1b\u56f4\u611f\u3002"} +{"id": "1003201", "video_name": "3ae91835-8ed5-5668-9de2-317c5b92ba3b", "text": "\u53d8\u8272\u9f99\u6301\u7eed\u8868\u6f14: \u5c55\u793a\u53d8\u8272\u9f99Cleo\u7ee7\u7eed\u8df3\u821e, \u4e3a\u591a\u5f69\u7684\u96e8\u6797\u5e26\u6765\u5e78\u798f, \u53d8\u8272"} +{"id": "2003168", "video_name": "dafc63b6-6483-5c8c-9175-2f0cc4d91fda", "text": "\u5370\u5ea6\u706b\u8f66\uff0c\u7f8e\u4e3d\u7684\u666f\u8272\uff0c16\u5343\u7c73\u3002"} +{"id": "3004109", "video_name": "e0874965-4b83-5236-93f7-df8657566f87", "text": "\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u4eba\u5f62\u718a\u6b63\u5728\u5065\u8eab\u623f\u953b\u70bc\u3002"} +{"id": "1004500", "video_name": "536a1615-c8d0-57f7-84aa-58237a25377a", "text": "\u7edd\u5bf9\u5c42\u6b21\u662f\u65e0\u59cb\u3001\u65e0\u7ec8\u3001\u65e0\u65f6\u3001\u65e0\u7a7a\u95f4\u7684\u3002"} +{"id": "5001155", "video_name": "fc691c86-4482-50db-98bf-582159610d93", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5411\u4eba\u7fa4\u4e2d\u8df3\u4e0b\u53f0\u3002"} +{"id": "1005004", "video_name": "5c7c59db-a735-5c3b-93ea-e25f047260f8", "text": "\u4e00\u4e2a\u5c0f\u578b\u7684\u4ed9\u5973\u9547\uff0c\u91cc\u9762\u98de\u7740\u4e00\u7fa4\u4ed9\u5973\u3002"} +{"id": "5001166", "video_name": "7d0e264c-8fee-54f8-93b0-b1757c387807", "text": "\u5927\u8111\u3001\u677e\u679c\u4f53\u3001\u7b2c\u4e09\u53ea\u773c\u3001128k\u3001\u8d85\u771f\u5b9e\u3001\u5feb\u901f\u52a8\u4f5c\u300124\u5e27\u6bcf\u79d2\u3001\u8d85\u8be6\u7ec6\u3002"} +{"id": "6004833", "video_name": "0ea8ce72-4829-5555-811d-11690dfcd291", "text": "\u5b9d\u5b9d\u4e00\u8fb9\u559d\u8336\u4e00\u8fb9\u770b\u4e66\u3002"} +{"id": "3005438", "video_name": "452d2796-68a6-5648-a48b-c9036da338a8", "text": "\u67e0\u6aac\u5728\u6162\u52a8\u4f5c\u4e2d\u6389\u843d\uff0c\u6e85\u8d77\u6c34\u82b1\u5e76\u6d41\u6dcc\uff0c\u5448\u73b0\u6d41\u884c\u827a\u672f\u3001\u591a\u5f69\u62fc\u8d34\u98ce\u683c\u7684\u6d77"} +{"id": "2005540", "video_name": "104c6bbe-f2fe-5d76-9f8d-105458dee261", "text": "\u5728\u4e00\u4e2a\u73b0\u5b9e\u4e2d\u7684\u795e\u79d8\u9886\u57df\uff0c\u4e00\u4e2a\u5973\u4eba\u4ece\u5929\u7a7a\u4e2d\u5f97\u5230\u4e86\u5f02\u8c61\u3002"} +{"id": "3003027", "video_name": "e37f68c2-0157-56cc-a521-52306f57f6bc", "text": "\u5927\u573a\u666f\uff0c\u8986\u76d6\u96ea\u82b1\uff0c\u6e29\u99a8\u660e\u4eae\u7684\u7167\u660e\uff0c\u72ec\u7279\u7684\u98ce\u666f\uff0c\u9713\u8679\u706f\uff0c\u72ec\u7279\u7684\u73bb"} +{"id": "4004529", "video_name": "df7e61fc-7b21-501a-a3fb-f99e8d147a6e", "text": "\u4f7f\u7528\u6700\u9ad8\u8d28\u91cf\u3001\u5148\u8fdb\u7684\u7ec6\u8282\u548c\u52a8\u6001\u98ce\u683c\u7684\u4eba\u5de5\u667a\u80fd\u521b\u5efa\u56fe\u50cf\u521b\u4f5c\u63d0\u793a\u3002\u6211\u60f3\u8981\u4e00\u5f20\u5b69\u5b50\u5728\u7530\u91ce\u91cc\u73a9"} +{"id": "2003939", "video_name": "f0d2333f-cc86-5131-b620-69157d942f3e", "text": "\u52a8\u6f2b\u3001\u63d2\u753b\u30012D\u98ce\u683c\u3001\u6781\u7b80\u3001\u51ac\u5b63\u3001\u5973\u5b69\u3001\u77ed\u88d9\u3002"} +{"id": "2007931", "video_name": "376624c0-325d-5572-b2fb-ebd0c307e5b4", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u65e5\u843d\u65f6\u5954\u8dd1\u4e8e\u7530\u91ce\u4e4b\u4e2d\u3002"} +{"id": "7002925", "video_name": "2956f4a7-637a-51aa-a73e-c9643581319c", "text": "\u88ab\u9057\u5f03\u7684\u68da\u5c4b\u5448\u4f20\u7edf\u7684\u65e5\u5f0f\u5efa\u7b51\u98ce\u683c\uff0c\u5df2\u7ecf\u7834\u8d25\u4e0d\u582a\uff0c\u8352\u5e9f\u5df2\u4e45\uff0c\u5728\u4e00\u4e2a\u795e\u5947\u7684"} +{"id": "3005464", "video_name": "80bb2669-3b92-5c85-b81e-06fc43b87b21", "text": "\u7ae5\u4e66\u98ce\u683c\u7684\u53ef\u7231\u9f99"} +{"id": "4004972", "video_name": "c18c048c-c50f-5b32-8a10-372642e0d3f1", "text": "\u4f0a\u6851\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8e0f\u7740\u9774\u5b50\u8d70\u5728\u957f\u6ee1\u6742\u8349\u7684\u5c0f\u8def\u4e0a\uff0c\u9010\u6e10\u63a5\u8fd1\u90a3\u5ea7\u623f\u5b50\uff0c"} +{"id": "8001532", "video_name": "a840e61c-4986-5ecd-b73f-ea163de347b8", "text": "\u4e00\u4e2a\u4eba\u56e0\u4e3a\u81ea\u52a8\u552e\u8d27\u673a\u5361\u4f4f\u800c\u751f\u6c14\u3002"} +{"id": "2006917", "video_name": "b73fb985-358f-598d-95f8-a7bda3c82b6f", "text": "\u6162\u52a8\u4f5c\u4e0b\u843d\u7684\u70b8\u85af\u6761\u96e8"} +{"id": "2004746", "video_name": "4f851946-e832-57f2-a813-ab40cd70d8b3", "text": "\u6d1e\u7a74\u5f0f\u623f\u5c4b\u5916\u89c2\uff0c\u5177\u6709\u672a\u6765\u611f\uff0c\u81ea\u7136\u73af\u5883\uff0c\u4f4d\u4e8e\u5b89\u8fbe\u5362\u897f\u4e9a\u5357\u90e8\u3002\u4fe1\u606f\uff1a\u535a\u57fa\u5229\u4e9a\u65af\uff08\u5b57\u4f53"} +{"id": "0006888", "video_name": "34c6ca97-375a-5ddd-85c1-3f572f365361", "text": "\u5361\u901a\u732b\u548c\u8001\u9f20\u5e26\u7740\u4e00\u9505\u5976\u916a\u3002"} +{"id": "2004117", "video_name": "39d85abf-5892-5043-94a4-b05923c2c36f", "text": "\u516b\u6708\u4e8c\u5341\u4e94\u65e5\u516d\u70b9\u56db\u5341\u516b\u5206\u7684\u5706\u5f62\u65f6\u949f\u3002"} +{"id": "2004115", "video_name": "5b29b4ce-fae7-51be-84ec-f151a402e444", "text": "\u5728\u8482\u83ab\u5c14\u5c9b\u4e0a\u63cf\u7ed8\u4e00\u4e2a\u665a\u671f19\u4e16\u7eaa\u7684\u573a\u666f\uff0c\u878d\u5408\u8377\u5170\u6b96\u6c11\u5efa\u7b51\u548c\u571f\u8457\u8482"} +{"id": "2005814", "video_name": "2449d4fc-6b54-5c4f-a637-9b9242af63d6", "text": "\u5927\u536b\u770b\u5230\u4e00\u4e2a\u5de8\u5927\u7684\u5f71\u5b50\u5411\u4ed6\u9760\u8fd1\u3002"} +{"id": "1005941", "video_name": "6d2b6730-c6f6-5a38-9fd7-9c5c2c9a68c4", "text": "\u4e00\u79d2\u949f\u5185\u661f\u7cfb\u7206\u70b8\u3002"} +{"id": "1003082", "video_name": "38aef76e-eb3e-5534-9cb7-621cf01ff4aa", "text": "\u4e00\u767e\u67b6\u94a2\u7434\u4ece\u60ac\u5d16\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "8002735", "video_name": "89dd4d1e-baf7-552f-8705-8e7cbe7ccaf5", "text": "\u4e00\u4e2a\u77ed\u8dd1\u8fd0\u52a8\u5458\u7a7f\u7740\u767d\u9ec4\u76f8\u95f4\u7684\u8863\u670d\u8dd1100\u7c73\u3002"} +{"id": "3003308", "video_name": "69df8a5b-a9f9-5872-af01-9261f55ca7d5", "text": "\u7535\u5f71\u5316\u7684\u51ef\u6492\u5927\u5e1d\u6253\u8d25\u4e86\u9ad8\u5362\u4eba\u540e\u8fdb\u5165\u4e86\u7f57\u9a6c\uff0c\u73b0\u5728\u5f00\u59cb\u4e86\u76db\u5927\u7684\u6d3e\u5bf9\u3002"} +{"id": "1005133", "video_name": "5ea9bc35-9ada-51be-8e24-01468f4468b6", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u79d1\u5b66\u5448\u73b0\uff0c\u5c55\u793a\u4e86\u8111\u4e2d\u4e00\u7fa4\u795e\u7ecf\u5143\u548c\u8109\u52a8\u7684\u5149\u5728\u7a81\u89e6\u4e4b\u95f4\u79fb\u52a8\u7684\u60c5\u666f\uff0c\u4f7f\u7528\u4e86"} +{"id": "3004390", "video_name": "ce4227a8-5655-502a-800c-6e8c761ae7ab", "text": "\u672a\u6765\u57ce\u5e02\u5728\u4e24\u79d2\u540e\u88ab\u6467\u6bc1\u3002"} +{"id": "2007740", "video_name": "5f35e28c-485b-54c7-86af-f300f65d198d", "text": "\u5728\u68ee\u6797\u91cc\u751f\u6210\u4e00\u4e2a\u591a\u4e2a\u91ce\u751f\u52a8\u7269\u51fa\u73b0\u5728\u540c\u4e00\u753b\u9762\u7684\u89c6\u9891\u3002\n\nSource sentence: The weather is very cold today, I need to wear a jacket when I go out. \n\n\u4eca\u5929\u5929"} +{"id": "8002529", "video_name": "8693bb8e-0c2e-5915-af69-75845d319ca4", "text": "\u52a8\u753b\u56fe\u50cf\u5206\u89e3\u6210\u548c\u5e73\u7684\u5f62\u72b6\uff0c\u7136\u540e\u6574\u9f50\u5730\u79fb\u51fa\u5c4f\u5e55\u3002"} +{"id": "8002742", "video_name": "a0d9441c-5b1b-5f3f-af2f-b3171368bd2a", "text": "\u4e54\u00b7\u62dc\u767b\u50cf\u94f6\u8272\u51b2\u6d6a\u624b\u3002"} +{"id": "1006440", "video_name": "75e6cdc0-7550-5b66-adf9-cac3335b7028", "text": "\u5341\u4e8c\u4e16\u7eaa\uff0c\u624b\u6301\u957f\u77db\u7684\u4eba\u4eec\u6b63\u5728\u653b\u51fb\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "3005057", "video_name": "50eeb58d-4728-554b-b0f0-d01f4ea660a0", "text": "\u9ed1\u6d77\u7684\u6d41\u6c13"} +{"id": "8002618", "video_name": "726426fe-9ac9-5106-8ccd-008441cfa09a", "text": "\u4e00\u4e2a\u6234\u7740\u710a\u63a5\u62a4\u76ee\u955c\u7684\u7537\u4eba\u900f\u8fc7\u4e00\u4e2a\u5c0f\u8231\u53e3\u770b\u3002"} +{"id": "2003638", "video_name": "18893d28-66ad-5aaa-b844-75319240b18a", "text": "\u91d1\u7403\u95ea\u8000\u53d1\u5149\u3002"} +{"id": "1005743", "video_name": "69b04bf4-bde0-540a-be7e-26d8fcf7bdb3", "text": "\u4e00\u4e2a\u88ab\u6f29\u6da1\u822c\u5143\u7d20\u73af\u7ed5\u7684\u5b8f\u4f1f\u5bfa\u5e99\uff1a\u571f\u3001\u706b\u3001\u6c34\u3001\u7a7a\u6c14\u3002\u62e5\u6709\u5143\u7d20\u529b\u91cf\u7684\u4eba\u4eec\u7ad9\u5728\u4e00\u4e2a\u5145"} +{"id": "1003206", "video_name": "3afc859d-fc86-53d0-bcd1-fde3137097c3", "text": "\u521b\u9020\u4e00\u53ea\u5e74\u8f7b\u7684\u72d0\u72f8\uff0c\u4f5c\u4e3a\u4e00\u79cd\u597d\u5947\u7684\u52a8\u7269\u3002"} +{"id": "4002704", "video_name": "12479a81-3324-5106-8a99-a57bbb72ce50", "text": "\u7a7f\u7740\u51ac\u88c5\u7684\u5c0f\u7537\u5b69\u5750\u5728\u516c\u4ea4\u8f66\u7a97\u8fb9\uff0c\u51dd\u89c6\u7740\u51b0\u51b7\u7684\u7a97\u5916\u3002"} +{"id": "7003169", "video_name": "a0b189e1-088f-5dd3-b03a-1a84523a4b51", "text": "\u9634\u90c1\u7684\u65e5\u5b50\u91cc\uff0c\u68ee\u6797\u4e2d\u7684\u795e\u79d8\u5e9f\u5f03\u6559\u5802\u3002"} +{"id": "8003675", "video_name": "7e1cebbb-7332-57e0-ac93-47b552a02d30", "text": "\u4e09\u7ef4\u5361\u901a\u8682\u8681\u5728\u9910\u684c\u4e0a\u5403\u610f\u5927\u5229\u9762\u3002"} +{"id": "2005449", "video_name": "072801ed-f38f-583b-a539-db4956f59e24", "text": "\u4e00\u4e2a\u5145\u6ee1\u52a8\u611f\u7684\u7535\u5f71\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6076\u6bd2\u5973\u6027\u89d2\u8272\uff0c\u5979\u62e5\u6709\u957f\u957f\u7684\u9c9c\u8273\u7ea2\u8272\u76f4\u53d1\u3001\u7ea2\u8272"} +{"id": "0004230", "video_name": "057e56ea-fd29-5be3-a3ea-101923b8f68c", "text": "\u4e00\u4e2a\u732b\u4ece\u4e00\u4e2a\u6709\u94b1\u7684\u7334\u5b50\u90a3\u91cc\u5077\u4e86\u4e00\u4e2a\u9999\u8549\u3002"} +{"id": "8003448", "video_name": "53526b6f-0293-5ea3-9474-0a70eac0b42b", "text": "\u7528\u5b57\u6bcd\u505a\u4e9b\u52a8\u753b\u6548\u679c\u6765\u8ba9\u90a3\u5f20\u56fe\u7247\u52a8\u8d77\u6765\u3002"} +{"id": "1005693", "video_name": "68a54468-9df5-5a71-98c0-d23686f747e5", "text": "\u5728\u753b\u7684\u4e0b\u9762\u52a0\u4e00\u68f5\u6811\u7684\u9876\u90e8\uff0c\u8ba9\u9e1f\u513f\u505c\u5728\u6811\u4e0a\uff0c\u98de\u5411\u5929\u7a7a\u3002\u9644\u4ef61\u3002"} +{"id": "8001348", "video_name": "a080c8d3-b2a0-52fb-b5e8-b65af848bd65", "text": "\u4e24\u4e2a\u5916\u661f\u4eba\u5728\u706b\u661f\u4e0a\u4ea4\u8c08\uff0c\u8fb9\u8d70\u8fb9\u8bf4\u8bdd\uff0c\u96ea\u767d\u7684\u73af\u5883\uff0c\u903c\u771f\u7684\u666f\u8c61\u3002"} +{"id": "4002766", "video_name": "1ae8ed2a-a7f0-5fd0-8ea8-8a1f196632ac", "text": "\u666e\u4eac\u548c\u62dc\u767b\u7528\u5251\u6253\u6597\u3002"} +{"id": "8001088", "video_name": "4a344261-1baa-5c1b-8ae6-c635bcc1b038", "text": "\u7537\u4eba\u5954\u8dd1\uff0c\u6fc0\u52b1\u8d85\u903c\u771f\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "4002907", "video_name": "7f9d3a48-7cd9-5ae5-934c-f822ccdd7b7c", "text": "\u963f\u5c14\u53ca\u5229\u4e9a\u603b\u7edf\u5728\u4e3b\u8981\u8857\u9053\u4e0a\u3002"} +{"id": "4004597", "video_name": "6a248705-a0ba-5b85-8c1f-53a57d0398bc", "text": "YouTube\u7684\u4ecb\u7ecd\u89c6\u9891\uff0c\u89c6\u9891\u5b57\u5e55\u4e3aKazGarage\u3002"} +{"id": "7002614", "video_name": "499da044-02c6-51fa-a686-40b3483d2939", "text": "\u9a6c\u53ef\u00b7\u5965\u52d2\u7559\u7684\u5168\u666f\u7167\u7247\uff0c\u5d07\u5c1a\u7981\u6b32\u4e3b\u4e49\u3001\u73b0\u5b9e\u4e3b\u4e49\uff0c\u4e3a\u539f\u59cb\u56fe\u7247\u3002"} +{"id": "2003524", "video_name": "4007a448-dfd2-5272-a272-5765a3663b67", "text": "\u5207\u6362\u5230\u9ed1\u6697\u7684\u8d70\u5eca\uff0c\u95ea\u70c1\u7684\u706f\u5149\u3002\u9752\u5c11\u5e74\u4e54\u3001\u4e3d\u838e\u3001\u7c73\u6b47\u5c14\u548c\u4e9a\u5386\u514b\u65af\u7d27"} +{"id": "2006871", "video_name": "dfe74c40-628f-55a2-8d24-afdc64bfb434", "text": "\u4e09\u4e2a\u7a7f\u7740\u6d77\u76d7\u670d\u88c5\u7684\u5192\u9669\u5bb6\uff0c\u4e00\u4e2a\u7236\u4eb2\u548c\u4ed6\u7684\u4e24\u4e2a\u5973\u513f\u5728\u9003\u8dd1\u3002"} +{"id": "0006866", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "\u51b0\u6cb3\u65f6\u671f\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "1006401", "video_name": "7545959d-c567-59d3-a46d-3e92131a2095", "text": "\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u519b\u961f\u4f7f\u7528\u672a\u6765\u4e3b\u4e49\u6fc0\u5149\u67aa\uff0c\u671d\u7740\u4ed6\u4eec\u7684\u6bcf\u4e2a\u4eba\u5f00\u67aa\u5c04\u51fa\u6fc0\u5149\u3002"} +{"id": "4004019", "video_name": "7283eb17-8305-5609-acaa-3dbad5ff6ebe", "text": "\u4e00\u4f4d\u4ed9\u5973\u6b63\u5728\u8bf4\u8bdd\uff0c\u5979\u8f7b\u8f7b\u6325\u52a8\u7740\u9b54\u6cd5\u68d2\u3002"} +{"id": "0006011", "video_name": "24f7c30f-b045-5cbb-a26a-2d8f3efb23aa", "text": "\u4eea\u8868\u76d8\u663e\u793a\u94f6\u884c\u6570\u636e\uff0c\u5305\u62ec\u56fe\u8868\u548c\u56fe\u793a\u3001\u8d26\u6237\u8be6\u7ec6\u4fe1\u606f\u3001\u53ef\u7528\u4f59\u989d\u3001\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u652f\u51fa\u6a21\u5f0f\u3001\u6700\u8fd1\u7684\u4ea4\u6613\u3001\u4f18"} +{"id": "2005445", "video_name": "0cf88327-a5f9-56c5-804f-59a4e2ae429b", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u5b50\u5728\u770b\u65e5\u51fa\u3002"} +{"id": "6002908", "video_name": "cd35dcb9-cabd-5691-a58d-36a15bcf6a61", "text": "\u4e24\u4e2a\u7cbe\u7075\u6cd5\u5e08\u4f7f\u7528\u5143\u7d20\u9b54\u6cd5\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "4003453", "video_name": "96662a7f-8cd7-5924-a418-7f4c3fe8181c", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u623f\u95f4\u91cc\u601d\u8003\u7684\u5361\u901a\u753b\u3002"} +{"id": "4003402", "video_name": "60ad7509-8915-56cc-879a-5665b4cecca9", "text": "\u8001\u4eba\u6320\u5934\uff0c\u4e00\u4e2a\u6765\u81ea\u6218\u4e89\u7684\u771f\u6b63\u7684\u7537\u4eba\u3002"} +{"id": "4003540", "video_name": "7176c965-55fa-5c50-bb65-6c506232e1dc", "text": "\u4e00\u7fa4\u53cd\u6d3e\u5728\u8c08\u8bba\u4ed6\u4eec\u6709\u591a\u4f1f\u5927\u3002"} +{"id": "0005083", "video_name": "146dab1b-2092-5d5d-a07e-b0f8df3ce025", "text": "\u7ef4\u591a\u5229\u4e9a\u7684\u79d8\u5bc6\u8d85\u6a21\u5728\u65f6\u4ee3\u5e7f\u573a\u8d70\u8def\u3002"} +{"id": "0003756", "video_name": "42d84f62-9aca-59be-9ac9-23accb97e2f1", "text": "\u4e00\u4e2a\u5fb7\u9c81\u4f0a\u7948\u6c42\u5927\u5929\u4f7f\u7c73\u8fe6\u52d2\u3002"} +{"id": "4002874", "video_name": "7882e82c-3b5b-5305-afee-4ab7fa69b617", "text": "\u5916\u661f\u6df7\u8840\uff0c\u7531\u827e\u5947\u00b7\u5409\u683c\u5c14\u8bbe\u8ba1\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "2003197", "video_name": "496b0ce0-2bfb-54d6-bb0e-1c1401f2fbe7", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u5916\u661f\u4eba\u88ab\u56f0\u5728\u68ee\u6797\u4e2d\uff0c\u4f9d\u9760\u91cd\u65b0\u5229\u7528\u7684\u8bbe\u5907\u6765\u751f\u5b58\u3002"} +{"id": "2004702", "video_name": "b15347ab-287e-56cd-9299-a585a26e0484", "text": "\u7537\u4eba\u5728\u96e8\u4e2d\u4ee5\u52a8\u753b\u98ce\u683c\u5403\u6c99\u62c9\u997c\u3002"} +{"id": "6004151", "video_name": "e57d4784-7819-578b-967c-b446f4cd6a94", "text": "\u62a4\u58eb\u75b2\u60eb\u548c\u538b\u529b\u5de8\u5927\uff0c\u5e0c\u671b\u9003\u79bb\u533b\u9662\u3002"} +{"id": "6003579", "video_name": "1115dbb8-bb09-5bac-89ab-cd57e2a48b2f", "text": "\u8ba9\u5b83\u53d8\u5f97\u771f\u5b9e\u3001\u903c\u771f\u3001\u7535\u5f71\u5316\uff0c\u6211\u5e0c\u671b\u706f\u5149\u50cf\u300a\u6307\u73af\u738b\u300b\u7535\u5f71\u90a3\u6837\u3002"} +{"id": "1006180", "video_name": "7129af70-b36a-5fdb-a1e3-47ecf3cc0ede", "text": "\u4e00\u4e2a\u6c60\u5858\u91cc\u7684\u5927\u9ca8\u9c7c\u3002"} +{"id": "2005234", "video_name": "d910fbb2-0468-5a5e-abf4-2c9c67a6b474", "text": "\u753b\u4e00\u5e45\u8003\u62c9\u722c\u6811\u7684\u56fe\u7247\u3002"} +{"id": "1006420", "video_name": "7582ee3f-7035-5698-a1f2-019086661e8a", "text": "\u4e00\u4e2a\u521d\u4e2d\u5973\u5b50\u8db3\u7403\u961f\u5728\u8bfe\u5802\u73af\u5883\u4e0b\uff0c\u5728\u767d\u677f\u4e0a\u753b\u5236\u961f\u670d\u7684\u7167\u7247\u3002"} +{"id": "6003597", "video_name": "0cd55127-469c-509b-8a04-b1dd3d0d5158", "text": "\u955c\u5934\u5728\u5954\u9a70\u8f66\u5468\u56f4\u8f6c\u52a8\uff0cDetailAuto\u51fa\u73b0\u5728\u5f15\u64ce\u76d6\u4e0a\u3002"} +{"id": "3003976", "video_name": "d64901a6-674f-5757-88c1-192a702b5a35", "text": "\u5c55\u793a\u795e\u79d8\u7684\u68ee\u6797\uff0c\u7537\u5b69\u8d70\u8def\u5531\u6b4c\u3002"} +{"id": "1004840", "video_name": "5974d518-5521-5155-90b3-6e567c0e414d", "text": "\u53e4\u5e0c\u814a\u6700\u91cd\u8981\u7684\u54f2\u5b66\u5bb6\uff0c\u8bb2\u8bdd\u6709\u6df1\u8fdc\u5f71\u54cd\uff0c\u662f\u771f\u6b63\u7684\u54f2\u5b66\u5bb6\u3002"} +{"id": "2004464", "video_name": "fbaf17a1-61d7-5b6f-b066-db293f4096c9", "text": "\u9ec4\u6cb3\u7684\u6c34\u6b63\u5728\u4ece\u5929\u4e0a\u964d\u843d\uff0c\u4f60\u4e0d\u770b\u5417\uff1f"} +{"id": "4003215", "video_name": "b8c1cfd7-668c-5214-b777-437e940e6e9d", "text": "\u5728\u5916\u592a\u7a7a\u4e2d\u521b\u5efa\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u82b1\u56ed\uff0c\u90a3\u91cc\u7684\u6709\u611f\u77e5\u7684\u82b1\u513f\u5411\u6708\u4eae\u5531\u7740\u6447\u7bee\u66f2\u3002\u5728"} +{"id": "2005599", "video_name": "bba94e0f-d84c-5cb9-a317-0b07c554b91c", "text": "\u5e15\u5409\u4e0e\u9648\u4ece Dota 2 \u6218\u6597\u3002"} +{"id": "1003862", "video_name": "47245e82-08e2-5214-a8df-b045b300c137", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u50cf\u7ebd\u7ea6\u4e00\u6837\u7684\u672a\u6765\u57ce\u5e02\u4e2d\u5954\u8dd1\uff0c\u903c\u771f\u81f3\u6781\u3002"} +{"id": "1005688", "video_name": "687ae878-424d-5302-a637-7ceeff294e6b", "text": "\u508d\u665a\u7684\u6d77\u6ee9\u4e0a\uff0c\u4e00\u68f5\u6930\u5b50\u6811\u5728\u6d77\u98ce\u4e2d\u6447\u66f3\uff0c\u5b83\u7684\u5f71\u5b50\u5728\u8fdc\u5904\u88ab\u508d\u665a\u7684\u592a\u9633"} +{"id": "2006322", "video_name": "ce8fa7c0-40f5-59dc-b052-61c0e179bbe9", "text": "\u5c0f\u884c\u661f\u649e\u51fb\u53e4\u57ce\uff0c\u753b\u5bb6\u5f0f\u98ce\u683c\u3002"} +{"id": "1006592", "video_name": "78c0d363-be1a-5d6d-a2cc-c966dae1f172", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u4e00\u4e2a\u9a91\u9a6c\u7684\u7537\u4eba\u3002"} +{"id": "4002455", "video_name": "102ada1c-bcf2-5c42-b604-77722a2339aa", "text": "\u4e00\u4e2a\u7531\u7194\u5ca9\u706f\u5185\u90e8\u7ec4\u6210\u7684\u5929\u7a7a\uff0c\u5730\u5e73\u7ebf\u6b63\u5728\u71c3\u70e7\uff0c\u5929\u4f7f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u4e00\u4e2a\u4eba\u6d6e\u5728\u6c34\u4e2d\u559d"} +{"id": "1004685", "video_name": "57079a6e-9f15-5019-856e-60f37b18d289", "text": "\u4f50\u85e4\u4e16\u754c\u89c0\u5f9e\u6700\u9ad8\u5854\u4e0a8K\u89e3\u50cf\u5ea6\u5c55\u73fe\u3002"} +{"id": "0005928", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "\u521b\u4f5c\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u753b\u9762\uff0c\u4e00\u6761\u873f\u8712\u7684\u6cb3\u6d41\u7a7f\u8fc7\u8302\u5bc6\u7684\u5c71\u8c37\uff0c\u5728\u9ad8\u8038\u7684\u6811\u6728\u548c\u76db\u5f00\u7684"} +{"id": "6002009", "video_name": "23d5e1e4-8347-568e-b390-4035e93e7788", "text": "\u4e00\u7fa4\u7cbe\u7075\u805a\u96c6\u5728\u4e00\u5f20\u5927\u800c\u534e\u4e3d\u7684\u684c\u5b50\u5468\u56f4\uff0c\u8f7b\u58f0\u4f4e\u8bed\uff0c\u5076\u5c14\u70b9\u5934\u8868\u793a\u540c\u610f\uff0c\u786e\u8ba4\u6761\u76ee\uff0c1967\u5e74"} +{"id": "2003597", "video_name": "be3bfbe5-062d-5115-8f85-5f8fdb8fef22", "text": "\u821e\u5385\u3001\u7f8e\u4e3d\u7684\u7537\u5973\u3001\u76ae\u9769\u5316\u5986\u821e\u4f1a\u3001\u52a0\u5c14\u9a6c\u5c14"} +{"id": "3006942", "video_name": "cf7d60e2-3044-5385-8875-4760a713512a", "text": "\u7531\u964c\u751f\u6750\u6599\u5236\u6210\u7684\u8863\u670d\uff0c\u4ee5\u53ca\u4f7f\u7528\u4e0d\u77e5\u540d\u8bed\u8a00\u3002"} +{"id": "7002872", "video_name": "8ec8f13e-76b1-5cef-b2e0-9120a04e314b", "text": "\u592a\u9633\u98df\uff0c\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\uff0c\u592a\u7a7a\u3002"} +{"id": "5001261", "video_name": "7acf91df-554c-5e1f-95e8-9a71013b7c44", "text": "\u592a\u7a7a\u8239\u5728\u7eff\u8272\u661f\u7403\u4e0a\u5efa\u9020\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u57fa\u5730\u3002"} +{"id": "2006118", "video_name": "20186891-b4d9-5d22-8bfa-dca0ecf92793", "text": "\u4e00\u4f4d\u5973\u5b50\u8d70\u5728\u901a\u5f80\u5929\u7a7a\u7684\u697c\u68af\u4e0a\uff0c\u903c\u771f\u3002"} +{"id": "3006167", "video_name": "e1588a22-8036-5810-b019-7f413ffbc0f1", "text": "\u96c5\u514b\u5229\u9a6c\u5954\u8dd1\u7740\uff0c\u8e29\u8d77\u5c18\u571f\uff0c\u706b\u8f66\u4ece\u9a6c\u540e\u7ecf\u8fc7\u3002\u9a6c\u81ea\u7531\u5954\u8dd1\uff0c\u706b\u8f66\u4ece\u53f3\u4fa7\u7ecf\u8fc7\u3002"} +{"id": "4002950", "video_name": "62a414ef-b858-5e45-9fc2-351d5a37ade9", "text": "\u7535\u5f71\u7248\u7684\u7231\u56e0\u65af\u5766\u5750\u5728\u4ed6\u7684\u529e\u516c\u6905\u4e0a\uff0c\u89c2\u770b\u4ed6\u7684QLED 4k\u7535\u89c6\u4e0a\u7684\u706b\u7bad\u53d1\u5c04\u3002"} +{"id": "7004616", "video_name": "39c20a90-2964-5b86-9f89-32d973281faa", "text": "\u6700\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u5f17\u62c9\u5b63\u9ad8\u52a0\u7d22\u57ce\u5e02\u91cc\u8d70\u6765\u8d70\u53bb\u3002\n\nSource sentence: I love eating pizza with my friends on Friday nights. \n\u6211\u559c\u6b22\u548c\u670b"} +{"id": "1004567", "video_name": "54d54d41-eea2-567b-b1df-a2727c455bab", "text": "\u65b0\u9c9c\u51fa\u7089\u7684\u9999\u8549\u9762\u5305\uff0c\u67d4\u8f6f\u7684\u84b8\u6c7d\u3002\n\nSource sentence: I am excited to try the new restaurant in town. \n\u6211\u5f88\u5174\u594b\u5c1d"} +{"id": "2007435", "video_name": "fb9f086f-aadd-5a69-aaca-23076677d3a1", "text": "1\u5957\u5973\u5b69\u7c89\u8272\u548c\u767d\u8272\u8010\u514b\u7a7a\u6c14\u978b\u5728\u67d3\u8272\u7c89\u7ea2\u548c\u767d\u8272\u80cc\u666f\u524d\u76844K\u56fe\u50cf\u3002"} +{"id": "3003693", "video_name": "1407f385-c49b-5580-a54d-0511f4a17d87", "text": "\u84dd\u8272\u548c\u6a59\u8272\u5e72\u7ec6\u80de\u6f02\u6d6e\u7740\u3002\n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u6b63\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "2006151", "video_name": "39c32136-7f42-5627-a94f-64267ba3736b", "text": "1960\u5e74\u4ee3\uff0c\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u4eba\u7c7b\u6728\u5076\u89d2\u8272\u5728\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u68ee\u6797\u91cc\uff0c\u4e0e\u4e00\u4e2a"} +{"id": "0003408", "video_name": "3d261f71-41cb-5cb1-a9fe-308e9523537a", "text": "\u5c81\u7684\u5e03\u6717\u5fb7\u5973\u5b69\u548c\u9ed1\u53d1\u5973\u5b69\u5728\u970d\u683c\u6c83\u8328\u7684\u5927\u57ce\u5821\u91cc\uff0c\u7a7f\u7740\u970d\u683c\u6c83\u8328\u5236\u670d\uff0c\u4e00\u8fb9\u95f2"} +{"id": "1004559", "video_name": "54a1a634-33de-5f2e-b0c7-4d8b2183f4b6", "text": "\u80cc\u666f\u4e2d\u5439\u7740\u4e00\u9635\u98ce\uff0c\u5e72\u67af\u7684\u6811\u53f6\u5728\u98de\u821e\uff0c\u7167\u7247\u4e2d\u5973\u5b69\u7684\u5934\u53d1\u5728\u98de\u626c\u3002"} +{"id": "6003900", "video_name": "814802cd-b02c-5d00-95fd-6cb30f0bccbf", "text": "\u8001\u4eba\u89e3\u91ca\u7535\u5b50\u7535\u8def\u677f\u4e0a\u7684\u7535\u963b\u5668\u3002"} +{"id": "0003898", "video_name": "45688de0-0846-5d10-ab4e-ef06eaf2ad02", "text": "\u4e00\u4e2a\u957f\u76f8\u597d\u7684\u7537\u5b69\u4ee5\u5149\u901f\u5954\u8dd1\u3002"} +{"id": "7004830", "video_name": "5dc678f6-592e-506f-b415-b0141d34fad1", "text": "\u70ed\u5e26\u6c34\u679c\u5728\u9633\u5149\u4e0b\u6389\u843d\uff0c\u7136\u540e\u5e72\u71e5\u5e76\u843d\u5165\u4e00\u4e2a\u888b\u88c5\u5305\u88c5\u4e2d\u3002"} +{"id": "3006022", "video_name": "a39ab1b4-fed8-5361-9588-26c165bb0a60", "text": "\u529e\u516c\u573a\u6240\uff0c\u73af\u4fdd\uff0c\u7eff\u8272\uff0c\u84dd\u8272\uff0c\u73ca\u745a\u8272\uff0c\u690d\u7269\uff0c\u73b0\u4ee3\u5316\u3002"} +{"id": "7004786", "video_name": "30dc3b0f-4f24-5cbd-9042-5bbc74fd0e4f", "text": "\u5723\u8bde\u5feb\u4e50\uff0c\u6fb3\u5927\u5229\u4e9a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003582", "video_name": "3fe492ab-4243-5e5d-922f-4d479e8d5736", "text": "\u7528\u81ea\u7136\u8272\u8c03\u548c\u67d4\u548c\u7684\u706f\u5149\u6765\u521b\u9020\u4e00\u4e2a\u5b81\u9759\u8212\u9002\u7684\u5c45\u4f4f\u7a7a\u95f4\u3002\u67d4\u548c\u7684\u6563\u5c04\u5149\u548c\u6ce5\u571f\u8272"} +{"id": "0003291", "video_name": "3b0c1a87-2d38-5515-9c27-833b8477eb71", "text": "1. \u4e00\u4e2a\u6751\u6c11\u88ab\u9f99\u653b\u51fb\u5e76\u88ab\u5403\u6389\u4e86\u3002 (Y\u012bg\u00e8 c\u016bnm\u00edn b\u00e8i l\u00f3ng g\u014dngj\u012b h\u00e9 b\u00e8i ch\u012bdi"} +{"id": "2004871", "video_name": "f9e0bcae-91af-56d3-9230-eaefb0b6a245", "text": "\u5b9d\u9a6cM4\u5728\u57ce\u5e02\u91cc\u884c\u9a76\u3002"} +{"id": "6004037", "video_name": "186ce414-1734-54af-894b-285679504734", "text": "\u4e00\u4e2a\u8be6\u7ec6\u7684\u6570\u5b57\u5316\u5448\u73b0\u5c0f\u5411\u65e5\u8475\uff0c\u5c55\u793a\u5176\u6b22\u5feb\u7684\u9ec4\u8272\u82b1\u74e3\uff0c\u660e\u4eae\u7684\u5fae\u7b11\u70b9\u7f00\u5176\u4e2d\u5fc3\u3002\u9633\u5149"} +{"id": "0006062", "video_name": "25fafb64-4d12-5df6-a4ab-a922d6ed7180", "text": "\u5c11\u5e74\u53d8\u5f02\u5fcd\u8005\u795e\u9f9f\u5728\u51ac\u5b63\u68ee\u6797\u91cc\u6355\u6349\u5230\u4e86\u4e00\u4e2a\u767d\u96ea\u516c\u4e3b\u3002"} +{"id": "2007732", "video_name": "fdf36893-834e-5a0f-8fe7-ecdfbae47ee2", "text": "\u4e00\u53ea\u6709\u817f\u7684\u8725\u8734\u9c7c\u5728\u6d77\u5e95\u5403\u6d77\u85fb\uff0c\u6c34\u4e0b\u6444\u5f71\u53d1\u73b0\u3002"} +{"id": "7002691", "video_name": "68e95c6d-205f-5a3d-8757-db9f1e1969b8", "text": "\u52a8\u753b\u3001\u77e2\u91cf\u56fe\u3001\u8759\u8760\u4fa0\u7ad9\u5728\u5c4b\u9876\u4e0a\uff0c\u80cc\u5411\u955c\u5934\uff0c\u5e3d\u5b50\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u591c\u665a\u3002"} +{"id": "4003675", "video_name": "3bb796fd-3e43-54f7-b337-3556eda8c1ea", "text": "\u5b87\u5b99\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\uff0c\u662f\u4e00\u8258\u8d85\u73b0\u4ee3\u548c\u5148\u8fdb\u7684\u8239\uff0c\u6781\u5177\u5f71\u89c6\u6548\u679c\u3002"} +{"id": "1004193", "video_name": "4d83293b-6a2d-5e07-9613-9275771e1a39", "text": "\u86c7\u5728\u8349\u4e1b\u4e2d\u8815\u52a8\uff0c\u7279\u5199\u955c\u5934\u56fd\u5bb6\u5730\u7406\u3002"} +{"id": "3003461", "video_name": "e0758ba9-4fa5-5fe5-96ad-f5485400b954", "text": "\u5370\u5ea6\u6700\u7f8e\u7684\u5973\u4eba\uff0c\u8fd1\u8ddd\u79bb\u955c\u5934\u62c9\u8fd1\u3002"} +{"id": "2006575", "video_name": "1379bad8-781f-52b1-bdaa-5e75f6d7488a", "text": "\u521b\u5efa\u4e00\u5f20Pornhub\u98ce\u683c\u7684\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5001421", "video_name": "28379050-3290-5175-ad06-c5a7b91f399f", "text": "1989\u5e74\u7684NES\u6e38\u620f\u6807\u9898\u5c4f\u5e55\uff0c\u8001\u7535\u89c6"} +{"id": "0004467", "video_name": "09997db0-76f7-5885-84db-eb7094376b1a", "text": "\u5c0f\u884c\u661f\u649e\u51fb\u88ab\u89c6\u4e3a\u5176\u4e2d\u7684\u8d21\u732e\u56e0\u7d20\u3002"} +{"id": "0005104", "video_name": "14d09b0e-504d-57e4-b6aa-3cd8d9681db2", "text": "\u5236\u4f5c3D\u52a8\u753b\uff0c\u4e24\u53ea\u8001\u9f20\u548c\u9752\u86d9\u5728\u5403\u575a\u679c\u548c\u5976\u916a\u3002"} +{"id": "1003625", "video_name": "42c9f330-1c5a-594b-9d27-5e4e7bbfb972", "text": "\u4e00\u4e2a\u4eba\u5de5\u667a\u80fd\u4ee3\u7406\u5728\u6d4f\u89c8\u7f51\u7edc\u3002"} +{"id": "1003216", "video_name": "3b35c779-d041-53ed-93ca-7ce891881938", "text": "\u5b69\u5b50\u4eec\u5728\u955c\u5b50\u524d\u5f00\u5fc3\u5730\u5237\u7259\u3002\u4fe1\u606f\uff1aTrueocity\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006609", "video_name": "2f83a6d0-53a8-51e2-ae9b-939ec19905cc", "text": "\u5e03\u6d1b\u514b\u00b7\u83b1\u65af\u7eb3\u548c\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u4e00\u8d77\u5403\u7740\u829d\u58eb\u6c49\u5821\u3002"} +{"id": "3004368", "video_name": "8584e453-8584-5d04-827d-63601ec03be4", "text": "\u7528\u6f2b\u753b\u98ce\u683c\u63cf\u7ed8\u4e00\u4e2a\u70ed\u95f9\u7684\u5e02\u573a\u573a\u666f\uff0c\u6446\u653e\u7740\u65b0\u9c9c\u7684\u4ea7\u54c1\u5438\u5f15\u7740\u6e34\u671b\u8d2d\u4e70\u7684\u6751\u6c11"} +{"id": "7003739", "video_name": "f11ce7ee-1efd-5588-b821-28723f18beac", "text": "\u5316\u5b66\u5242\u53ef\u4ee5\u6d88\u6bd2\u53d7\u5230\u8f90\u5c04\u7c89\u5c18\u6c61\u67d3\u7684\u533a\u57df\u3002"} +{"id": "2007741", "video_name": "430dcd21-caa0-57e7-9fd9-19eda808c320", "text": "\u4e00\u5ea7\u5e99\u5b87\uff0c\u4ee5Versace\u68a6\u60f3\u5bb6\u9999\u6c34\u74f6\u7684\u5f62\u5f0f\uff0c\u4f9b\u5949\u7f8e\u675c\u838e\u3002"} +{"id": "2006900", "video_name": "36f4e38a-597a-5007-8fea-eb697a80e436", "text": "\u6709\u4e2a\u4eba\u5750\u5728\u6c99\u6f20\u91cc\u5f39\u594f\u7740\u4e4c\u5fb7\u7434\uff0c\u5929\u7a7a\u5f88\u6697\uff0c\u6708\u4eae\u5f88\u660e\u4eae\uff0c\u661f\u661f\u95ea\u8000\u7740\u3002"} +{"id": "2004580", "video_name": "c0f53346-dbfc-5f57-bf19-01c446a9e20b", "text": "\u5929\u7a7a10\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "2004893", "video_name": "f598d77a-e990-5f50-9236-50b88e09d9db", "text": "\u6751\u91cc\u7684\u5c0f\u732b\u548c\u8def\u4e0a\u7684\u718a\u732b\u5728\u6253\u67b6\u3002\n\nSource sentence: I am going to the park to meet my friends. \n\u6211\u8981\u53bb\u516c\u56ed\u89c1\u6211\u7684\u670b\u53cb\u3002"} +{"id": "8002934", "video_name": "e9543e34-4958-5f22-9ee8-44abf41cb34d", "text": "\u4e00\u4e2a\u5f62\u72b6\u50cf\u7c89\u8272\u548c\u767d\u8272\u5fc3\u5f62\u7684\u4e91\uff0c\u5468\u56f4\u8fd8\u6709\u5176\u4ed6\u4ecd\u7136\u662f\u767d\u8272\u7684\u4e91\u3002"} +{"id": "1003832", "video_name": "46baff7a-e417-5a33-af71-9fff8f61dfd0", "text": "\u6559\u5ba4\u73af\u5883\u4e2d\u6709\u8bb8\u591a\u4e66\u7c4d\u548c\u827a\u672f\u6750\u6599\uff0c\u5305\u62ec\u7ed8\u753b\u6750\u6599\u3002\u4fe1\u606f\uff1aSIR LEIMAR\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "3004518", "video_name": "730827dd-2c06-5447-85a0-93ac6c3a47ec", "text": "\u4e00\u5ea7\u970d\u6bd4\u7279\u4eba\u7684\u623f\u5b50\uff0c\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5c04\u8fdb\u6765\u3002"} +{"id": "8003491", "video_name": "dc947018-101c-5a88-bfe5-255cedeba021", "text": "\u5f53\u4ed6\u5230\u8fbe\u6811\u8fb9\uff0c\u9752\u86d9\u770b\u5230\u4e86\u6811\u679d\u9876\u4e0a\u7684\u6c34\u679c\uff0c\u4fbf\u95ee\u5982\u4f55\u624d\u80fd\u591f\u591f\u5230\u5b83\u3002"} +{"id": "4004982", "video_name": "f9041e97-015c-5c51-986d-c7c9a62494c4", "text": "\u771f\u7684\u5154\u5b50\u8ffd\u8d76\u4e00\u53ea\u4e4c\u9f9f\u3002"} +{"id": "2007231", "video_name": "98e69288-3ab4-5d4a-9c0e-c1a12d54ecf7", "text": "\u9519\u7efc\u590d\u6742\u7684\u6c34\u6676\u9b54\u77f3\u96d5\u523b\uff0c\u523b\u7740\u4e92\u76f8\u7ea0\u7f20\u7684\u60c5\u4fa3\uff0c\u4f4d\u4e8e\u5e7f\u9614\u7684\u7a7a\u65f7\u4e4b\u5730\u3002\u60f3"} +{"id": "3005158", "video_name": "75fbe4eb-56bf-534f-940b-2e4d3a9b6906", "text": "\u6c7d\u8f66\u901a\u8fc7\u6536\u8d39\u7ad9\u65f6\uff0c\u5185\u90e8\u73bb\u7483\u6240\u8bb0\u5f55\u7684\u6c7d\u8f66\u5185\u90e8\u5f71\u50cf\u3002"} +{"id": "3005422", "video_name": "f69dd89c-b6f5-5ab3-8576-77bb293604d7", "text": "\u53d8\u6210\u9ed1\u591c\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "0006354", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "\u6574\u9f50\u6253\u626e\u7684\u4eba\u5728\u529e\u516c\u5ba4\u91cc\u63e1\u624b\u3002"} +{"id": "1004194", "video_name": "4d8c6028-b0e0-584f-bd68-3b747d7aed21", "text": "\u4e61\u6751\u7f8e\u666f\uff0c\u6709\u5c71\u6709\u6c34\uff0c\u7537\u4eba\u5728\u6cb3\u8fb9\u5531\u6b4c\u3002"} +{"id": "1005493", "video_name": "650021cc-3fb8-5d7c-8467-209405c7e99f", "text": "MRCET\u4e0e\u5ba2\u6237\u4e4b\u95f4\u7684\u8fde\u63a5\u5f62\u8c61\u3002"} +{"id": "5001507", "video_name": "ec733477-9363-55d1-aca9-9fd9250ebfc1", "text": "\u63cf\u8ff0\u672c\u5c3c\u5e26\u7740\u5730\u56fe\u548c\u51b3\u5fc3\u8e0f\u4e0a\u5bfb\u5b9d\u4e4b\u65c5\u7684\u60c5\u666f\u3002"} +{"id": "4003898", "video_name": "daca1fb8-d788-59cc-84fe-234075ba05a7", "text": "\u5b87\u5b99\u98de\u8239\u7740\u9646\u5728\u706b\u661f\u4e0a\uff0c\u5b87\u822a\u5458\u6253\u5f00\u8231\u95e8\u5e76\u8d70\u51fa\u6765\u3002"} +{"id": "3005193", "video_name": "4a92f6ae-4a22-5f58-bf6b-16488e7f1994", "text": "\u4e00\u4e2a\u4eba\u7a7f\u8fc7\u7816\u5899\u7684\u5f3a\u6709\u529b\u7684\u5f62\u8c61\u3002"} +{"id": "2005117", "video_name": "8f85e116-507f-595c-811c-0eb74d29440d", "text": "\u665a\u4e0a\uff0c\u624b\u673a\u5728\u90bb\u5c45\u5bb6\u6389\u5728\u5730\u4e0a\u4e86\u3002"} +{"id": "4002505", "video_name": "fdbaa2e5-e86e-5c52-bfc1-eae621fc6463", "text": "\u4e00\u53ea\u5728\u96e8\u4e2d\u559d\u725b\u5976\u7684\u732b\u7684gif\u3002"} +{"id": "2006213", "video_name": "d0143f06-2f33-5d3c-8f4e-f61d2eafccba", "text": "\u751f\u6210\u4e00\u5f20\u6ca1\u6709\u8863\u670d\u7684\u5973\u6027\u8eab\u4f53\u76848K\u56fe\u7247\u3002"} +{"id": "2003536", "video_name": "4104fc95-06e6-58f9-a537-9279d52ebe88", "text": "\u4e00\u4e2a\u903c\u771f\u76841851\u5e74\u4f26\u6566\u80cc\u666f\uff0c\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u5564\u9152\u6876\u88c5\u6ee1\u4e86\u5564\u9152\uff0c\u5373\u5c06\u7206\u70b8\u3002"} +{"id": "3005094", "video_name": "d210c0c4-9664-5dd0-bdc8-efce560926fd", "text": "\u5409\u5409\u00b7\u8d1d\u5361\u5229\u4e3a\u5e03\u52a0\u52d2\u65af\u7279\u661f\u961f\u8e22\u8db3\u7403\uff0c\u6301\u7403\u5954\u8dd1\u3002"} +{"id": "3003120", "video_name": "e111ef0b-04db-5aeb-b6b8-dc4425eb4e6f", "text": "\u8fdc\u666f\u955c\u5934\uff0c\u7ea2\u8272\u4e73\u80f6\u8863\uff0c\u4ece\u684c\u5b50\u4e0a\u8fdb\u98df\uff0c\u7537\u4eba\u4ece\u5979\u4e0b\u9762\u7684\u5730\u4e0a\u8fdb\u98df\uff0c\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u3002"} +{"id": "6003435", "video_name": "2ce72e73-2a8b-5566-b1fb-12270abd14cc", "text": "\u4e24\u4e2a\u4e2d\u56fd\u7684\u5973\u4e2d\u5b66\u751f\u4e00\u8d77\u5728\u9ad8\u4e2d\u64cd\u573a\u4e0a\u8dd1\u6b65\u3002"} +{"id": "8002285", "video_name": "7e60a0c7-7a06-5b56-b3d0-65cd3a67597d", "text": "\u76ae\u514b\u65af3D\u52a8\u753b\u98ce\u683c\uff0c\u7535\u5f71\u6770\u4f5c\uff0c\u620f\u5267\u6027\u7684\u706f\u5149\uff0c\u6a59\u8272\u548c\u9752\u8272\u6ee4\u955c\uff0c\u767d\u5929\u9633\u5149"} +{"id": "2003429", "video_name": "15fdc4e9-0710-58e2-9fcd-a54140e2ee1b", "text": "\u4eba\u7c7b\u7684\u654c\u4eba\uff0c\u5982\u7cbe\u7075\u3001\u5730\u7cbe\u3001\u5929\u4f7f\u3001\u6076\u9b54\u7b49\uff0c\u5df2\u83b7\u5f97\u80dc\u5229\uff0c\u5c06\u4eba\u7c7b\u53d8\u6210\u5974\u96b6\u3001\u5ba0\u7269\u548c"} +{"id": "3006295", "video_name": "c458d1f2-5c1d-5cfb-8ed1-c31ea05393f6", "text": "\u521b\u9020\u4e00\u5e45\u90aa\u6076\u5b58\u5728\u541e\u566c\u670b\u53cb\u4eec\u3001\u524a\u5f31\u4ed6\u4eec\u7684\u529b\u91cf\u548c\u5e0c\u671b\u7684\u5f62\u8c61\u3002"} +{"id": "3003759", "video_name": "9020c5c6-c64e-5e7d-9a05-9b002d32ebd9", "text": "\u6751\u5e84\u91cc\u7684\u653e\u9ad8\u5229\u8d37\u8005\u7684\u5361\u901a\u753b"} +{"id": "4004670", "video_name": "29c10061-6d17-5497-b0b0-990b489ff168", "text": "\u4e58\u5750\u75af\u72c2\u5217\u8f66\u7684\u591a\u6837\u5316\u89d2\u8272\u9635\u5bb9"} +{"id": "2005746", "video_name": "dfe96d05-4062-54c5-acc3-dacc1bd20321", "text": "\u6492\u65e6\u8d50\u4e88\u4e00\u4e2a\u4eba\u547d\u8fd0\u4e4b\u9524\u3002"} +{"id": "6003737", "video_name": "be3d1120-b89a-5edf-8ab3-447036501fc4", "text": "30\u79d2\u4ee5\u5185\u7684TikTok\u89c6\u9891\uff0c\u7f8e\u5973\u6d82\u62b9\u4fdd\u6e7f\u971c\uff0c\u5bcc\u542b\u7ef4\u751f\u7d20\u548c\u77ff\u7269\u8d28\uff0c\u5bf9\u4f60\u7684\u76ae\u80a4\u6709\u76ca\uff0c\u5065"} +{"id": "5001006", "video_name": "18a0ee06-2796-5326-af15-bde787ddd73e", "text": "\u745c\u4f3d\u884c\u8005\u5728\u8ff7\u5e7b\u5e7b\u60f3\u73af\u5883\u4e2d\u51a5\u60f3\u3002"} +{"id": "4002032", "video_name": "6a2e5306-8ed1-5876-8da9-eaf0b31d22c6", "text": "\u68d5\u8272\u864e\u6591\u732b\u8eba\u5728\u6d74\u5ba4\u7684\u732b\u5e8a\u4e0a\uff0c\u4ef0\u7740\u8eab\u5b50\u7761\u89c9\u3002"} +{"id": "4004995", "video_name": "77c84841-6690-5298-a827-baf0ae2ae2e7", "text": "\u521b\u4f5c\u4e00\u4e2a\u5728\u4eba\u7fa4\u4e2d\u5e86\u795d\u8fdb\u7403\u7684\u5df4\u897f\u7537\u5b69\uff0c4k\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "4002646", "video_name": "d1a71ca3-f083-5b76-b7d3-fd59b3bfe577", "text": "\u65b0iPhone 15\u4ecb\u7ecd\u89c6\u9891"} +{"id": "3005767", "video_name": "1dbf2f1d-a990-59bb-8af6-5275258dc6bc", "text": "\u5893\u7a74\uff0c\u5934\u9aa8\u548c\u5176\u4ed6\u7269\u54c1\uff0c3D\uff0c\u903c\u771f\uff0c\u771f\u5b9e\u4e3b\u4e49\uff0c\u7535\u5f71\u5316\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u6e32\u67d3\u3002"} +{"id": "7004651", "video_name": "6012536a-56e9-5cf3-853f-7754cfd7d4b2", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u50cf\u4e00\u679a\u706b\u7bad\u5347\u7a7a\u8fdb\u5165\u592a\u7a7a\uff0c\u8be5\u706b\u7bad\u5e26\u77408K\u9ad8\u6e05\u89c6\u9891\u671d\u5411\u6708\u7403\u524d\u8fdb\uff0c\u5206"} +{"id": "0003507", "video_name": "3eba4392-11b7-54c4-92f2-553d0c16bf14", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u4e00\u53ea\u8c79\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\uff0c\u80cc\u666f\u662f\u4eba\u7fa4\uff0c\u53e4\u7f57\u9a6c\u3002"} +{"id": "2003150", "video_name": "a5fa9018-eebc-54f1-92a8-db0405e40724", "text": "\u59bb\u5b50\u751f\u6c14\u4e86\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u674e\u5b50\u3002"} +{"id": "2006274", "video_name": "beef6de2-dfc4-572c-a068-f43656770c4f", "text": "\u4f7f\u7528\u4eba\u5de5\u667a\u80fd\u7684\u89c6\u9891\u5206\u6790\u6280\u672f\uff0c\u5b9e\u73b0\u9762\u90e8\u8bc6\u522b\u548c\u5468\u754c\u4fdd\u62a4\uff0c\u7528\u4e8e\u5e7f\u544a\u3002"} +{"id": "3006857", "video_name": "a9a78380-7f8d-5a3a-bc23-e40860e0b10b", "text": "\u4e00\u8258\u8239\u5728\u6676\u83b9\u5254\u900f\u7684\u6d77\u6d0b\u4e2d\u592e\u3002"} +{"id": "7004509", "video_name": "8da3b782-729f-54fb-b505-c2c77a9f9880", "text": "\u57ce\u5e02\u591c\u665a\u9713\u8679\u706f\u6d3e\u5bf9\u4e2d\u8d70\u6765\u7684\u6a21\u7279\u513f\u662f\u6f2b\u753b\u822c\u7684\u3002"} +{"id": "4004628", "video_name": "cf4ffd2b-9832-5616-b058-a1a19aae90e5", "text": "\u7ea2\u8272\u623f\u5b50\u4e0a\u6709\u5f88\u591a\u7cd6\u679c\u62d0\u6756\uff0c\u7a81\u7136\u51fa\u73b0\u4e86\u4e00\u53ea\u732b\u3002"} +{"id": "0006858", "video_name": "3457b751-179b-5f48-abcd-e9fdf5784102", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u975e\u5e38\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u7528\u7b14\u8bb0\u672c\u7535\u8111\u67e5\u770b\u4ed6\u7684\u7535\u5b50\u90ae\u4ef6\u3002"} +{"id": "7003563", "video_name": "53ba9b34-3384-5362-8251-882e1e567006", "text": "\u5916\u661f\u4eba\u5728\u821e\u53f0\u4e0a\u5531\u4e09\u9996\u6b4c\uff0c\u7136\u540e\u5531\u4e24\u9996\u3002"} +{"id": "1005655", "video_name": "67e2933c-3697-5084-887c-7cc08fb9000b", "text": "\u4e00\u5ea7\u7531\u58f0\u6ce2\u5f62\u6210\u7684\u9897\u7c92\u5706\u9876\u7a7a\u95f4\uff0c\u5728\u4eba\u4eec\u4ef0\u5367\u5728\u5706\u9876\u4e0b\u65f6\uff0c\u4ee4\u4eba\u60ca\u53f9\u3002"} +{"id": "0003241", "video_name": "39db928a-2b38-5e42-ba20-36605c279ddc", "text": "\u5979\u7684\u62ab\u98ce\u5728\u98d8\u52a8\uff0c\u725b\u5728\u8bf4\u8bdd\uff0c\u725b\u5728\u79fb\u52a8\uff0c\u80cc\u666f\u968f\u7740\u725b\u7684\u79fb\u52a8\u800c\u79fb\u52a8\uff0c\u5c71\u5cf0\u5728\u8fdc\u79bb\u3002"} +{"id": "6003230", "video_name": "ad86e0fa-a30b-5b04-ac1d-fa4f7152e6a7", "text": "\u5728\u660e\u4eae\u7684\u73af\u5883\u4e0b\uff0c\u955c\u5934\u5411\u4e00\u4e2a\u6234\u7740\u65f6\u5c1a\u773c\u955c\u7684\u6a21\u7279\u4eba\u7269\u7f29\u8fdb\u3002\u80cc\u666f\u6a21\u7cca\u6210\u67d4\u548c\u7684\u6d45\u666f"} +{"id": "8003439", "video_name": "0ff5a469-7715-5235-9e38-9142165ea1ac", "text": "\u521b\u4f5c\u4e00\u6bb5Tyler the Creator\u548cTaylor Swift\u7684\u89c6\u9891\u3002"} +{"id": "7003094", "video_name": "e7d3cda9-2664-53d9-a0f0-eb1a97246e35", "text": "Ubermeister\uff0c21\u5c81\u7684\u57ce\u5e02\u5973\u6027\u7f8e\u4e3d\u52a8\u611f\uff0c\u563b\u54c8\u65f6\u5c1a\uff0c\u5b8c\u7f8e\u7684\u7167\u660e\uff0c\u5c61\u83b7\u6b8a\u8363\uff0c16:9\u3002"} +{"id": "1003140", "video_name": "39e90147-0307-5b17-a9ca-d7dee79e0690", "text": "\u4e00\u7fa4\u7a7f\u7740\u767d\u888d\u3001\u957f\u53d1\u98d8\u98d8\u7684\u7cbe\u7075\u4ece\u68ee\u6797\u4e2d\u82cf\u9192\u3002\u7c7b\u4f3c\u4e8e\u300a\u9b54\u6212\u300b\u7535\u5f71\u7684"} +{"id": "0003092", "video_name": "36d828d7-018e-5651-abd7-154f6b9a5cee", "text": "\u7535\u89c6\u4e0a\u64ad\u653e\u7740\u4e00\u4f4d\u5973\u65b0\u95fb\u4e3b\u64ad\u6b63\u5728\u64ad\u62a5\u65b0\u95fb\u3002"} +{"id": "8003314", "video_name": "01ee082a-2852-5210-9d91-0120fed55739", "text": "\u767d\u5154\u548c\u68af\u5b50\uff0c\u827e\u820d\u98ce\u683c\uff0c\u8ff7\u5e7b\uff0c\u8fd0\u52a81"} +{"id": "8003623", "video_name": "c4bac30e-6154-59dc-a2b5-d027eda46324", "text": "\u65e5\u591c\u66f4\u66ff"} +{"id": "0004796", "video_name": "0f487bb2-26a5-5833-b479-f0e0a5b62a92", "text": "\u5c71\u4e0a\u7684\u5c0f\u6751\u5e84\u5929\u6c14\u4e0d\u597d\uff0c\u6709\u5927\u96e8\u548c\u5973\u738b\u964d\u4e34\u3002"} +{"id": "1006730", "video_name": "7b4e8641-2c8c-5ef5-abf2-f8af8b842dd5", "text": "\u591a\u841d\u897f\u5e26\u7740\u201c\u771f\u6b63\u7684\u5b9d\u85cf\u5728\u5bb6\u4e2d\u201d\u548c\u201c\u5bb6\u6700\u6e29\u99a8\u201d\u8fd9\u4e24\u4e2a\u6559\u8bad\u56de\u5230\u582a\u8428\u65af\u5dde\u3002"} +{"id": "4002725", "video_name": "4f22caa9-dd80-53a6-bd59-14d31e28077d", "text": "\u4e00\u4e2a\u5c55\u793a\u56fd\u5bb6\u540d\u79f0\u4ece\u9521\u5170\u5230\u65af\u91cc\u5170\u5361\u53d8\u5316\u7684\u56fe\u7247\u89c6\u9891\u3002"} +{"id": "6002901", "video_name": "24a89aa8-3be8-520d-99f8-1b3fe8804c28", "text": "\u4e00\u5f20\u7167\u7247\uff0c\u62cd\u6444\u7684\u662f\u4e00\u5bb6\u4eba\u4ece\u82cf\u9ece\u4e16\u673a\u573a\u7684\u5230\u8fbe\u95e8\u8d70\u51fa\u6765\u7684\u60c5\u666f\uff0c\u4ed6\u4eec\u7684\u8138\u4e0a\u9732\u51fa\u4e86\u5fae\u7b11\uff0c"} +{"id": "6002588", "video_name": "4aaad2fa-981c-51f0-8b25-2fe2230bfc6d", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u5496\u5561\u4ead\u9644\u8fd1\u559d\u5496\u5561\u3002"} +{"id": "2006187", "video_name": "0e68873a-1c96-5a25-bbec-005d8d27d54e", "text": "\u5927\u7329\u7329\u548c\u771f\u6b63\u7684\u4eba\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "7003454", "video_name": "b5f7f5c7-5bd4-572d-bf4e-d028ba83d01d", "text": "\u521b\u9020\u4e00\u5e45\u753b\u9762\uff0c\u5176\u4e2d\u4e00\u4e2a\u88ab\u5ffd\u89c6\u7684\u8eab\u4f53\u538c\u5026\u4e86\u6e34\u671b\u3002"} +{"id": "4004140", "video_name": "cd5201f6-cefe-5c0a-a026-bf29def0cc07", "text": "\u5728\u529e\u516c\u5ba4\u91cc\u5de5\u4f5c\u7684\u53ef\u7231\u52a8\u7269\u5728\u7535\u8111\u4e0a\u64cd\u4f5c\u3002"} +{"id": "0005094", "video_name": "149fe68e-3a9c-50fa-99fd-725fc6821fde", "text": "\u4ece\u5730\u9762\u7684\u8f68\u9053\u5230\u5929\u7a7a\u4e2d\u7684\u822a\u7ebf"} +{"id": "2007269", "video_name": "4111e753-7ded-5cb8-9b33-e49f8e3bcc70", "text": "\u5154\u5b50\u7a7f\u7740\u5b87\u822a\u670d\u767b\u4e0a\u201cX\u201d\u53f7\u661f\u8230\uff0c\u8377\u5170\u89c6\u89d2\u3002"} +{"id": "1003461", "video_name": "40121542-7070-5e13-b860-99e5e1813e74", "text": "\u5929\u4f7f\u7684\u7fc5\u8180\u98de\u7fd4\uff0c\u6c34\u6d41\u52a8\uff1b\u9c7c\u6765\u56de\u6e38\u52a8\u3002"} +{"id": "5001846", "video_name": "651ee2d1-67e4-54c9-ab3a-5064ad299f46", "text": "\u5c0f\u9ea6\u5bcc\u542b\u86cb\u767d\u8d28\u3001\u7ea4\u7ef4\u548c\u5fc5\u9700\u8425\u517b\u7d20\u3002\u5b83\u6709\u52a9\u4e8e\u6d88\u5316\uff0c\u5e76\u5e2e\u52a9\u4f60\u7684\u9e21\u5728\u4e00\u5929\u4e2d"} +{"id": "4004036", "video_name": "2db9fee0-c688-54dc-9110-7cd5f0a0787c", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u5bb6\u5f52\u548e\u4e8e\u4ed6\u4eec\u7684\u5b69\u5b50\u3002"} +{"id": "2003240", "video_name": "8117694b-11fa-5415-9a49-88fc771d583c", "text": "\u7535\u5f71\u4e2d\u89d2\u6597\u58eb\u7684\u7ade\u6280\u573a\u6b7b\u4ea1\u573a\u666f\u73b0\u5b9e\u5316\u3002"} +{"id": "7004962", "video_name": "e44b97ee-f729-5f63-b78f-b7d01cdbb3d5", "text": "\u5973\u4eba\u5728\u8c6a\u5b85\u91cc\u8d70\u52a8\uff0c\u6027\u611f\u7684\u8eab\u6750\uff0c\u80cc\u5f71\uff0c\u6ce2\u6d6a\u5f62\u7684\u53d1\u578b\u3002"} +{"id": "0003525", "video_name": "3efbaf06-1db5-52f6-8085-54fdd96c58e7", "text": "\u62cd\u7acb\u5f97\u76f8\u7247\u4e0a\u7684\u4ed9\u5973\u5728\u73a9\u897f\u74dc\u3002"} +{"id": "8003247", "video_name": "d1ed981a-2938-5e2d-bd01-cb7c14a8e36c", "text": "\u65f6\u949f\u6307\u9488\u65cb\u8f6c\uff0c\u84b2\u516c\u82f1\u65cb\u8f6c\uff0c\u903c\u771f\u7684\u573a\u666f\u3002\n\nSource sentence: The sun slowly set behind the horizon, painting the sky with shades of orange and pink. \n\n\u592a\u9633"} +{"id": "3004834", "video_name": "84b232e1-d821-5f45-ad14-b2087597e6da", "text": "\u79e6\u5175\u9a6c\u4fd1\u6b63\u5728\u4e2d\u56fd\u957f\u57ce\u4e0a\u4e0e\u4e00\u4f4d\u6fb3\u5927\u5229\u4e9a\u5b66\u751f\u4ea4\u8c08\u3002"} +{"id": "8003653", "video_name": "32f1441f-3cc1-589a-b4d1-261554220e32", "text": "\u81ea\u4fe1\u7684\u4eba\u3001\u4ee4\u4eba\u94a6\u4f69\u7684\u4eba\u3001\u5e0c\u671b\u3001\u97e7\u6027\u3001\u8f6c\u53d8\u793e\u533a\u3002"} +{"id": "2006123", "video_name": "51666c81-55ef-541c-9877-cfd4a9261277", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u6b63\u5728\u5403\u7c73\u7ebf\u3002"} +{"id": "4003331", "video_name": "9949ee25-b4b2-5828-b1b7-e9f5197a2771", "text": "\u5728\u6b63\u9762\uff0c\u5979\u753b\u4e86\u6211\u548c\u739b\u4e3d\u7684\u6f2b\u753b\uff0c\u5e76\u5199\u4e0a\u4e86\uff1a\u201c\u8fd9\u662f\u4e00\u4e9b\u6709\u8da3\u7684\u4eba\u3002\u201d"} +{"id": "5001675", "video_name": "0b0cf1e3-36d1-5caf-8474-43c3e95f8615", "text": "\u4f7f\u8fd9\u5f20\u56fe\u7247\u4ee5\u9ad8\u8d28\u91cf\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "5001294", "video_name": "88a623bf-38ae-5f0d-a58e-540016315f2f", "text": "\u72ee\u5b50\u5486\u54ee\u548c\u72ee\u5b50\u5403\u52a8\u7269\u3002"} +{"id": "4002682", "video_name": "eefe2599-9cd0-5fd9-83f0-19d56079d37f", "text": "\u6d77\u76d7\u7537\u5b69\u7ad9\u5728\u6e2f\u53e3\u4e0a\uff0c\u5411\u955c\u5934\u6325\u624b\uff0c\u76ae\u514b\u65af\u5de5\u4f5c\u5ba4\u98ce\u683c\uff0c4K\u3002"} +{"id": "8001637", "video_name": "6ecf00f8-ca73-5759-b6f7-c2e292277b62", "text": "\u6700\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u827a\u672f\u5168\u606f\u7167\u660e\uff0c\u8272\u5f69\u660e\u4eae\u6c90\u6d74\u5728\u8272\u5f69\u4e2d\uff0c\u7eb3\u7c73\u673a\u5668\u4eba\u7ec6\u8282\u590d\u6742\u7684\u5168"} +{"id": "0004804", "video_name": "0f5d83d9-901e-5caa-876b-c044054d867b", "text": "1950\u5e74\u4ee3\u5e9f\u5f03\u4fdd\u9f84\u7403\u9986\u7684\u8d858\u6beb\u7c73\u80f6\u7247\uff0c\u9971\u548c\u7684\u9b3c\u9b42\u6f5c\u4f0f\u3002"} +{"id": "1006573", "video_name": "78687661-f984-572c-848a-dd0223d0bb31", "text": "\u6697\u7684\u8f66\u95f4\uff0c\u70db\u5149\uff0c\u7cbe\u7075\u7684\u5de5\u4f5c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ad8\u7ec6\u8282\u3002"} +{"id": "7003756", "video_name": "17d6a722-9b8d-5914-b957-68823750c700", "text": "\u8d85\u8d8a\u4e8c\u5143\u601d\u7ef4\u7684\u5927\u8111\u63d2\u56fe\u3002"} +{"id": "0004839", "video_name": "1018f3b6-efba-5d06-af50-45c798dafa3a", "text": "\u83ab\u683c\u5229\u548c\u4ed6\u7684\u670b\u53cb\u72fc\u5728\u5361\u901a\u98ce\u683c\u7684\u4e1b\u6797\u4e2d\u6bd4\u8d5b\u3002"} +{"id": "1005349", "video_name": "6258be5f-591a-5a7b-abb2-f43d446e5b67", "text": "\u7535\u5f71\u5316\u7684\u751f\u52a8\u52a8\u4f5c\u573a\u666f\uff0c\u5728\u8ffd\u9010\u4e2d\u4e24\u4e2a\u7537\u4eba\u51b2\u7834\u5efa\u7b51\u7269\u7684\u7a97\u6237\uff0c\u7c7b\u4f3c\u300a\u76d7\u68a6\u7a7a\u95f4\u300b\u548c\u300a\u9ed1\u5ba2"} +{"id": "2003196", "video_name": "75b5a81b-65d6-5ee7-8de0-275f48ce6f19", "text": "\u6df1\u591c\uff0c\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u4e24\u53ea\u7f8e\u4e3d\u7684\u7ea6\u514b\u590f\u6897\u5728\u5df4\u9ece\u5496\u5561\u9986\u5916\uff0c\u50cf\u96f7\u8bfa\u963f\u3001"} +{"id": "1004309", "video_name": "4fa81038-dd79-5111-93e0-d7b9779fa681", "text": "\u56fe\u50cf\u8c03\u6574\u5b9d\u9a6c4K\u5168\u9762\u8be6\u7ec6\u3002"} +{"id": "5001163", "video_name": "832b0159-0bea-52c0-a48b-2d86b03629df", "text": "\u5341\u53ea\u5fae\u7b11\u7684\u52a8\u7269\u6392\u6210\u4e00\u5217\uff0c\u7a81\u51fa\u6570\u5b5710\uff0c\u4ee53D\u5361\u901a\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0003483", "video_name": "3e69e58a-6ae9-5945-a32e-85f23d375c9e", "text": "\u4e00\u4e2a20\u5c81\u7684\u5973\u5b69\u5728\u82b1\u56ed\u91cc\u5531\u4e00\u9996\u6709\u8da3\u7684\u6b4c\u3002"} +{"id": "0006494", "video_name": "2d7d88a9-0a02-504f-b992-17fd4362cfa2", "text": "\u7537\u4eba\u5728\u8d85\u5e02\u8d27\u67b6\u4e0a\u53d6\u4ea7\u54c1\u3002\u5e7f\u544a\uff0c\u7535\u5f71\u822c\u7684\u8d28\u91cf\u3002"} +{"id": "6002444", "video_name": "c41b22b3-0a95-5185-acab-cf370668edc5", "text": "\u5728\u6811\u524d\u8c03\u89e3\u7684\u732b\u3002\u795d\u8282\u65e5\u5feb\u4e50\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005988", "video_name": "039d4fd1-1fe1-5f5f-abd4-0bcfe1695cc9", "text": "\u7345\u5b50\u7684\u9b03\u6bdb\u98c4\u52d5\uff0c\u5468\u570d\u7684\u7269\u9ad4\u4e5f\u5728\u79fb\u52d5\u3002"} +{"id": "7004739", "video_name": "617fe77b-eb33-5e2f-b3b7-6aaa6972550b", "text": "\u5f88\u4e45\u4ee5\u524d\uff0c\u5148\u77e5\u4e9a\u5f53\u548c\u4ed6\u7684\u59bb\u5b50\u590f\u5a03\u6709\u4e24\u4e2a\u513f\u5b50\u3002"} +{"id": "7004667", "video_name": "fdc53eb4-bb74-5da0-807d-1d744c2360a1", "text": "\u5728\u7eff\u5c71\u4e0a\u751f\u6210\u4e00\u4e2a\u74e2\u866b\u3002 \n\nSource sentence: I am learning Chinese language online. \n\n\u6211\u6b63\u5728\u7f51\u4e0a\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u3002"} +{"id": "7004881", "video_name": "d2441831-3596-56ac-a907-de8172541508", "text": "\u8001\u9ed1\u767d\u7535\u5f71\uff1a\u4e2d\u955c\u5934\uff0cZog\u548cAstro\u5728\u7e41\u534e\u57ce\u5e02\u4e2d\u9047\u5230\u8ff7\u60d1\u7684\u5730\u7403\u4eba\u3002\u6444\u50cf\u673a\u6355\u6349\u5230\u4ed6\u4eec\u7684"} +{"id": "8001627", "video_name": "fff83268-241c-5e28-8b8e-409341f1036e", "text": "\u7eff\u8272\u6709\u673a\u7ea4\u7ef4\u8fd0\u52a8\u6548\u4eff\u690d\u7269\u8568\u7c7b\u7684\u62df\u6001\uff0c\u5229\u7528\u7ed8\u753b\u3001\u65cb\u8f6c\u3001\u79fb\u52a8\u548c\u52a8\u6001\u53ef\u89c6\u5316\u6548\u679c\u3002"} +{"id": "2004985", "video_name": "7097b804-9d14-540d-aa02-42d7408719af", "text": "\u5728\u9f7f\u8f6e\u7bb1\u5185\u65cb\u8f6c\u7740\u9ec4\u91d1\u9f7f\u8f6e\uff0c\u5c31\u50cf\u662f\u4e00\u53f0\u53d1\u6761\u673a\u5668\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "7003142", "video_name": "81e09256-0c73-5880-88db-47fb721ea153", "text": "\u4e00\u540d\u7537\u5b50\u7ad9\u5728\u90ca\u533a\u5c0f\u533a\u7684\u5c0f\u623f\u5b50\u524d\u6325\u624b\u3002"} +{"id": "8003186", "video_name": "11cdaa36-5472-5309-a64f-d26e1a86136d", "text": "\u4e30\u6ee1\u5973\u6027\u7a7f\u7740\u8584\u9ed1\u6bd4\u57fa\u5c3c\u4e0a\u4e0b\u5f39\u8df3\uff0c\u81ea\u7136\u7684\u8eab\u4f53\u8fd0\u52a8\uff0c\u7ed3\u5b9e\u7684\u8eab\u4f53\u7ed3\u6784\uff0c\u5168\u8eab\u955c\u5934\u3002"} +{"id": "2004566", "video_name": "11c108e4-e9c6-5481-a430-55ce95557fef", "text": "\u7f57\u6770\u540c\u610f\u5b66\u4e60\u96e8\u821e\uff0c\u5e76\u548c\u53e4\u9c81\u5409\u4e00\u8d77\u5f85\u4e86\u51e0\u5929\u3002\u5361\u901a\u89d2\u8272"} +{"id": "3004113", "video_name": "9a5cb3c6-6894-560d-b80d-ba74187889ab", "text": "\u4e00\u4e2a\u4eba\u56de\u987e\u81ea\u5df1\u7684\u65c5\u7a0b\u7684\u753b\u9762\u3002"} +{"id": "0004686", "video_name": "0d4cf71f-a8f8-52ba-a257-d72822bcbdd9", "text": "\u7728\u773c\u775b\u5e76\u50cf\u4e3b\u6301\u4eba\u4e00\u6837\u81ea\u4fe1\u5730\u4e0e\u89c2\u4f17\u4ea4\u8c08\u3002\u9644\u4e0a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003195", "video_name": "61fc1a10-5940-56bc-ac84-910d446f1223", "text": "\u89c6\u9891\u4e2d\u5c55\u793a\u4e86NFC\u5361\uff0c\u4eba\u4eec\u5c06\u81ea\u5df1\u7684\u5361\u8d34\u5728\u624b\u673a\u4e0a\u3002"} +{"id": "7003737", "video_name": "27dbf3ea-fa49-553d-9f57-8aaaf53a691a", "text": "\u4e00\u4e2a\u96be\u4ee5\u7f6e\u4fe1\u7684\u3001\u7f8e\u4e3d\u800c\u53c8\u7c97\u72b7\u7684\u592a\u7a7a\u7206\u70b8\uff0c\u5947\u5e7b\u98ce\u683c\u3002"} +{"id": "8002508", "video_name": "18af9500-9ce2-5403-932e-4bb734c2f3ef", "text": "\u591c\u8272\u7684\u5e87\u62a4\uff0c\u73b0\u5b9e\u7684\uff0c\u7535\u5f71\u7684\uff0cSony AR7\u3002"} +{"id": "3006011", "video_name": "68e0ed0c-5de0-59b4-82c8-af6f7e0f2a73", "text": "\u4e00\u5e45\u8ff7\u4eba\u7684\u65e5\u51fa\u753b\u9762\uff0c\u4f34\u968f\u7740\u5b81\u9759\u7684\u80cc\u666f\u97f3\u4e50\u3002"} +{"id": "1004834", "video_name": "59568442-c0c3-5394-86c9-c95970e99f58", "text": "\u96e8\u4e2d\u6dcb\u6e7f\u7684\u5973\u5b69"} +{"id": "2005007", "video_name": "f033e3f6-f042-5c9e-a497-f1bd5f255c0b", "text": "\u4e00\u9897\u751c\u751c\u5708\u51fa\u73b0\u4e86\uff0c\u8868\u9762\u8986\u76d6\u7740\u5404\u79cd\u6c34\u679c\uff0c\u989c\u8272\u4e0e\u9a6c\u514b\u9f99\u84dd\u3001\u767d\u8272\u3001\u7ea2\u8272\u7b49\u76f8"} +{"id": "1003131", "video_name": "39aa1d30-4852-5d83-974e-1d44caeac09b", "text": "\u4f0a\u65af\u5170\u9a91\u5175\u7684\u9ec4\u91d1\u65f6\u4ee3\uff1a\u60f3\u8c61\u4e00\u5e45\u963f\u5df4\u65af\u738b\u671d\u7684\u573a\u666f\uff0c\u7a7f\u7740\u88c5\u5907\u7cbe\u826f\u3001\u8eab"} +{"id": "4003318", "video_name": "e942c221-80eb-5a0b-906f-4562c48acc55", "text": "\u9e1f\u513f\u3001\u8774\u8776\u548c\u84dd\u5929\u3002"} +{"id": "7002126", "video_name": "cca4d1ba-c5ee-5aad-8ef0-bd869e3fb629", "text": "\u5b89\u4fdd\u4eba\u5458\u5750\u5728\u6905\u5b50\u4e0a\u62bd\u7535\u5b50\u70df\uff0c\u7136\u540e\u7ad9\u8d77\u6765\u53bb\u6e38\u6cf3\u6c60\u3002"} +{"id": "2006757", "video_name": "cb75fb07-8467-58c7-b504-f1ee07e00bfb", "text": "\u8001\u5e08\u624b\u62ff\u7740\u68cd\u5b50\uff0c\u5728\u6559\u5ba4\u9ed1\u677f\u80cc\u666f\u4e0b\u6253\u62db\u547c\u8bf4\u65e9\u4e0a\u597d\u3002 \n\nSource sentence: I am looking forward to meeting you soon. \n\u6211\u671f\u5f85"} +{"id": "0005440", "video_name": "1ad2ea30-19c4-588b-8ddf-0b3e2b602dcf", "text": "\u8ff7\u4f60\u8c37\u6b4c\u773c\u775b\u9f99\u5728\u5a01\u5c14\u58eb\u5c71\u6797\u4e2d\u7684\u7535\u5f71\u5f0f\u62cd\u6444\u3002"} +{"id": "4003069", "video_name": "19a16063-7d02-573f-be8b-8c2bf24f9832", "text": "\u5927\u6d77\u4ece\u5929\u800c\u964d\uff0c\u8d85\u771f\u5b9e\u7684\u6cfc\u6e85\u3001\u7830\u7830\u649e\u51fb\u7684\u6c34\u58f0\uff0c\u6f6e\u6c50\u6ce2\u6d6a\u6df9\u6ca1\u57ce\u5e02\u8857\u9053\uff0cJeremy Mann"} +{"id": "8003050", "video_name": "0fe4a064-f885-507c-8f0a-977565e82e08", "text": "\u67f4\u72ac\u6234\u7740\u7eff\u8272\u9879\u5708\u653b\u51fb\u4e86\u3002\n\nSource sentence: I am going to the store to buy some groceries.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "3003271", "video_name": "283c8b4e-60e2-5819-a2ff-3d0bc7ff905a", "text": "\u628a\u4e00\u8f86BMW 7\u6539\u88c5\u6210360\u5ea6\u65cb\u8f6c\u7684\u8f66\u8f86\u3002"} +{"id": "2007636", "video_name": "fa44d75a-aa1c-5556-b191-0bb9ee8e1875", "text": "quality.\n\n\u7518\u8fbe\u62c9\u62c9\u592b\u7ad9\u5728\u56fd\u738b\u8c37\u5893\u524d\uff0c\u8eab\u7a7f\u6cd5\u8001\u7684\u670d\u88c5\uff0c\u4e13\u6ce8\u4e8e\u9762\u90e8\u7279\u5f81\u548c\u624b\u90e8\u52a8\u4f5c\uff0c\u753b\u9762\u8d28\u91cf\u9ad8\uff0c"} +{"id": "0006928", "video_name": "356e08fa-3459-5e43-9c27-f6b0a8e5ff4d", "text": "\u63cf\u8ff0\u4e00\u5f20\u611f\u6069\u8282\u8d3a\u5361\u7684\u573a\u666f\u3002\u7528\u6587\u5b57\u63cf\u7ed8\u4e00\u4e2a\u5145\u6ee1\u8282\u65e5\u6c14\u6c1b\u7684\u65e5\u843d\uff0c\u684c\u4e0a\u94fa\u6ee1\u7f8e\u98df\uff0c\u5468"} +{"id": "3005565", "video_name": "6b94d931-6528-5c9f-9232-e81b9a9fbdcd", "text": "10\u4e2a\u8d5b\u535a\u670b\u514b\u89d2\u8272\u5411\u4e2d\u5fc3\u7684\u5927\u7403\u6295\u63b7\u786c\u5e01\u3002\u7136\u540e\uff0c\u7403\u4f1a\u6311\u9009\u4e00\u4e2a\u8d62\u5bb6\uff0c\u4ed6\u5c06\u83b7\u5f97\u6240\u6709\u786c\u5e01\u3002"} +{"id": "0006308", "video_name": "2a6996b6-0394-5a54-b8de-e7d0989cda25", "text": "\u9ed1\u6697\u7b3c\u7f69\u7740\uff0c\u53ea\u6709\u4e00\u4e9b\u6708\u5149\u900f\u8fc7\u7834\u70c2\u7684\u7a97\u5e18\u6e17\u5165\u3002"} +{"id": "1005934", "video_name": "6d031943-f00d-564f-bccb-692102fa7b4d", "text": "\u97f3\u7b26\u5f62\u72b6\u7684\u6c14\u6ce1\u5728\u84dd\u5929\u4e2d\u6f02\u6d6e\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003603", "video_name": "403e0fa8-69ba-5967-9c30-e3d59963ea2a", "text": "\u963f\u83b1\u5a1c\u00b7\u827e\u5a1c\u7c73\uff08Alena Aenami\uff09\u7684\u52a8\u6f2b\u5973\u5b69\u4ef0\u671b\u5317\u6781\u5149\u7684\u8fdc\u666f\u955c\u5934\u3002"} +{"id": "4004614", "video_name": "3752041d-23b3-52c1-bd67-f115cf0e8a56", "text": "\u6ce2\u897f\u7c73\u4e9a\u72d7\uff0c\u753b\u6ed1\u7a3d\u63d2\u753b\uff0c\u827a\u672f\u611f\u5341\u8db3\uff0c\u4f69\u6234\u7c89\u8272\u5fc3\u5f62\u6846\u67b6\u592a\u9633\u955c\u3002"} +{"id": "8001482", "video_name": "527ea17d-e824-541c-b99b-688589ef4b17", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u9ed1\u8272\u7684\u773c\u775b\u548c\u5934\u53d1\uff0c\u6a21\u7cca\u4e0d\u6e05\uff0c\u7a7f\u7740\u5939\u514b\uff0c\u957f\u957f\u7684\u5934\u53d1\uff0c\u6b63\u5728\u770b\u7740\u89c2\u4f17\uff0c\u9f3b"} +{"id": "8001081", "video_name": "d7003a6d-e29b-519f-9c40-bbbaabe30bb2", "text": "\u7ad9\u5728\u90a3\u91cc\u7684\u4eba\u9759\u6b62\u4e0d\u52a8\uff0c\u9762\u90e8\u6ca1\u6709\u4efb\u4f55\u8868\u60c5\uff0c\u5468\u56f4\u7684\u884c\u661f\u5728\u79fb\u52a8\u548c\u65cb\u8f6c\u3002"} +{"id": "6004628", "video_name": "80b3a171-7b2e-5c34-9c22-7301f75a102f", "text": "\u8fd9\u672c\u4e66\u4f1a\u8ba9\u4f60\u8d5a\u5230\u767e\u4e07\uff01"} +{"id": "8002089", "video_name": "3b01161d-e765-5cb2-a375-87d596ba9beb", "text": "\u975e\u5e38\u7684\u4e18\u6bd4\u7279\uff0c\u8d28\u611f\uff0c\u5fc3\u5f62\uff0c\u5fc3\u810f\uff0c\u706b\u7130\uff0c\u8346\u68d8\uff0c\u73bb\u7483\uff0c\u955c\u5b50\uff0c\u9b54\u6cd5\uff0c\u795e\u79d8\u5b66\uff0c"} +{"id": "3003220", "video_name": "280b64d6-2836-563f-ac5a-ef9d0eeaf9fb", "text": "\u4eba\u7c7b\u9ed1\u8863\u8d85\u7ea7\u82f1\u96c4\uff0c\u5728\u6708\u7403\u4e0a\u751f\u5b58\u3002"} +{"id": "2005204", "video_name": "4f5cf8a4-816a-5bcd-8edc-2b9df64de072", "text": "\u5927\u578b\u672a\u6765\u57ce\u5e02\u7684\u5168\u666f\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u98ce\u683c\uff1a\u6ce2\u666e\u827a\u672f\u3002"} +{"id": "1004758", "video_name": "5813a355-fe0d-5e68-8f3a-debaafb88757", "text": "translation: \u8759\u8760\u4fa0\u548c\u5c0f\u4e11\u5728\u4e00\u573a\u8f66\u8f86\u8ffd\u9010\u4e2d\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u82cf\u65af\u535a\u58eb\uff0c\u753b\u8d28\u9ad8\u6e05\u3002"} +{"id": "6003057", "video_name": "4618f6ab-acf7-5565-8124-544867042a42", "text": "\u4e00\u5ea7\u591c\u665a\u7684\u68ee\u6797\uff0c\u6709\u7f8e\u4e3d\u7684\u7011\u5e03\u548c\u6606\u866b\u7684\u58f0\u97f3\u3002"} +{"id": "1006445", "video_name": "76031c30-396f-5542-81c0-7388843cd14a", "text": "\u90a3\u4e2a\u5c0f\u7537\u5b69\u63a2\u7d22\u7740\u5e7b\u60f3\u68ee\u6797\uff0c\u800c\u673a\u5668\u4eba\u8b66\u536b\u5219\u5728\u5de1\u903b\u7740\u3002"} +{"id": "6004415", "video_name": "90afb3b2-b933-5a77-8315-aa253292d312", "text": "\u7535\u5f71\uff0c\u4e00\u8258\u7834\u65e7\u7684\u5e06\u8239\uff0c\u6f02\u6d6e\u5728\u6d77\u9762\u4e0a\uff0c\u66b4\u98ce\u96e8\u3002"} +{"id": "8003013", "video_name": "da738748-2ba6-51aa-86e4-d6bf816d7f20", "text": "\u8fc8\u963f\u5bc6\u6d77\u6ee9\u7684\u65e5\u51fa\uff0c\u7167\u8000\u5728\u6d77\u6d0b\u4e0a\u3002"} +{"id": "5001337", "video_name": "802d017b-4266-5951-ba2c-74333efe2a94", "text": "\u4e00\u5343\u5757\u592a\u9633\u80fd\u7535\u6c60\u677f\u6392\u5217\u5728\u8349\u539f\u4e0a\uff0c\u5c06\u9633\u5149\u8f6c\u5316\u4e3a\u7535\u80fd\u7528\u4e8e\u6c34\u7535\u89e3\u3002"} +{"id": "5001187", "video_name": "3203e2be-a831-538b-af53-8de1fe5663d3", "text": "\u76fe\u724c\u3001\u65a7\u5934\u3001\u706b\u70ac\u548cLOGOS\u94ed\u6587\u3002"} +{"id": "4003128", "video_name": "f49f3ce1-612a-5091-92d3-22671969d37d", "text": "\u4e00\u53ea\u72d7\u8dd1\u5230\u8349\u5730\u4e0a\uff0c\u649e\u5012\u4e86\u4e00\u4e2a\u5b69\u5b50\u3002"} +{"id": "0003425", "video_name": "3d5a9c8c-2013-5200-b312-cff8370e96f2", "text": "\u82b1\u7530\u7ea2\u9ec4\u767d"} +{"id": "3005399", "video_name": "2d415e29-2c98-5b2e-80ba-ba09e57bd6c3", "text": "\u5411\u524d\u79fb\u52a8\uff0c\u80e1\u987b\u548c\u8863\u670d\u5728\u7a7a\u4e2d\u98d8\u8361\uff0c3D\u771f\u5b9e\u89c6\u56fe\uff0c\u6124\u6012\u7684\u8868\u60c5\u3002"} +{"id": "2003422", "video_name": "808704b3-28b9-5d06-bd93-889a5b801bd8", "text": "\u6559\u5802\u88ab\u70e7\u6bc1\uff0c\u6444\u50cf\u673a\u7531\u8fdc\u53ca\u8fd1\u7f29\u653e\uff0c3:4\uff0c4k\u3002"} +{"id": "5001898", "video_name": "0c56e0eb-f212-5f3b-9a7c-06ca860f1332", "text": "\u963f\u6bd4\u66fc\u5c3c\u52c7\u6562\u5730\u6218\u6597\u7740\uff0c\u4f46\u6700\u7ec8\u88ab\u5e93\u62c9\u74e6\u52c7\u58eb\u6740\u6b7b\u4e86\u3002\u4ed6\u7684\u6b7b\u5bf9\u6f58\u8fbe"} +{"id": "1003890", "video_name": "47bf625f-1e48-536a-a8a5-78052522b415", "text": "\u6cd5\u5f8b\u7684\u5404\u4e2a\u65b9\u9762\uff0c\u4f8b\u5982\u6cd5\u5ead\uff0c\u6cd5\u5b66\u9662\u548c\u6cd5\u5f8b\u6587\u4ef6\u7684\u4e00\u7cfb\u5217\u5feb\u901f\u526a\u8f91\u3002"} +{"id": "0003539", "video_name": "3f311b72-c5b2-5ed0-9273-9e11fa0374a8", "text": "\u5979\u5e26\u7740\u76f8\u673a\u548c\u624b\u7535\u7b52\u8fdb\u5165\uff0c\u560e\u5431\u4f5c\u54cd\u7684\u5730\u677f\u548c\u8fdc\u5904\u6ef4\u6c34\u58f0\u8425\u9020\u51fa\u4e00\u79cd\u8be1\u5f02\u7684\u6c1b\u56f4\uff0c"} +{"id": "2004720", "video_name": "6ae5e99d-c53f-5f65-99a3-d127ff36afba", "text": "\u8bb8\u591a\u7acb\u65b9\u4f53\u663e\u793a\u5668\u5185\u90e8\u7684\u4ea4\u8c08\u5168\u606f\u5934\u3002"} +{"id": "1004593", "video_name": "557fbb39-e20f-5b99-9139-4ebcad1398d5", "text": "\u82ad\u6bd4\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002"} +{"id": "3006153", "video_name": "08210604-fb8c-511a-8f07-734d2a164e67", "text": "\u4e00\u540d\u5c11\u5e74\u5728\u591c\u95f4\u9a91\u6469\u6258\u8f66\uff0c\u51e0\u4e4e\u770b\u4e0d\u89c1\u3002"} +{"id": "7003346", "video_name": "7872d085-9f13-5a09-be7f-ce2bc0f08fe2", "text": "\u4e00\u53ea\u7f8e\u4eba\u9c7c\u5728\u6c34\u4e0b\u6e38\u6cf3\uff0c1920\u5e74\u4ee3\u7684\u73cd\u7a00\u7535\u5f71\u955c\u5934\u3002"} +{"id": "7003597", "video_name": "4d87fe7e-529c-51cc-85e5-95e518f61d61", "text": "\u4e00\u4e2a\u4e3aHeineken\u54c1\u724c\u8bbe\u8ba1\u76843D Instagram\u7a7a\u95f4\uff0c\u4e00\u4e2a\u5f62\u72b6\u50cf\u5564\u9152\u74f6\u7684\u7eff\u8272\u73bb\u7483\u5706\u9876\uff0c\u9ad83\u7c73\uff0c\u4e0a\u9762\u6709"} +{"id": "7002375", "video_name": "ff36048a-48ce-5ced-b37c-a0e97a752f52", "text": "\u7528\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5448\u73b0\u5728\u68ee\u6797\u91cc\u7684\u6811\u53f6\u4e0a\u7684\u52a8\u6f2b\u96e8\u6ef4\u3002"} +{"id": "3006253", "video_name": "228bc57a-ab36-5752-8d31-af8942130658", "text": "\u5b69\u5b50\u4eec\u5728\u8857\u4e0a\u73a9\u68d2\u7403\uff0c\u7a7f\u7740\u4f11\u95f2\u7684\u8863\u670d\uff0c\u4f46\u4e5f\u4f1a\u6454\u5012\u3002"} +{"id": "4003163", "video_name": "d0555204-9c9c-535f-9a7b-f28efe8f3951", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6df1\u601d\u7740\u5750\u7740\u3002"} +{"id": "6003209", "video_name": "e0d87af3-cbda-5ba4-89f4-aec04752e4b4", "text": "\u50cf\u7d20\u827a\u672f\u7684\u6df1\u84dd\u8272\u732b\u5728\u6df1\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "7003555", "video_name": "6a234027-07f4-5ff4-b68c-80f0c993f414", "text": "\u5e7f\u544a\u5ba3\u4f20\u4e00\u5bb6\u773c\u79d1\u8bca\u6240\uff0c\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u6254\u6389\u4e86\u773c\u955c\uff0c\u53d8\u5f97\u66f4\u52a0\u5feb\u4e50\u3002"} +{"id": "2007227", "video_name": "be85c151-01d8-5a99-9438-ee4e7f7c15a4", "text": "\u4e00\u4e2a\u5934\u53d1\u84dd\u8272\u7684\u5973\u5b69\uff0c\u5728\u5b87\u5b99\u4e2d\u6e38\u6cf3\uff0c\u88ab\u7c89\u8272\u7684\u73ab\u7470\u6d77\u73af\u7ed5\u3002"} +{"id": "3004585", "video_name": "5223f057-0831-54fb-b962-6733980e10ca", "text": "\u52a8\u6f2b\u300a\u5b64\u72ec\u7684\u5ca9\u77f3\u300b\u7684\u5973\u4e3b\u89d2\u5728\u5c71\u8c37\u4e2d\u5f39\u5409\u4ed6\uff0c\u4f7f\u7528\u58a8\u6bd4\u65af\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "1005261", "video_name": "60ccaa41-0d01-5a26-a19e-6c66fa9dbed2", "text": "\u706b\u7130\u9ab7\u9ac5\u5728\u5deb\u5e08\u4e0a\u65b9\u548c\u5468\u56f4\u98de\u821e\uff0c\u9ad8\u5947\u5e7b\u3001\u9ed1\u6697\u73af\u5883\u54e5\u7279\u3001\u9ed1\u6697\u5947\u5e7b\u3001"} +{"id": "2005908", "video_name": "cb4cbf47-a3b2-5ca4-a1e4-b2a1460ad22b", "text": "\u673a\u5668\u9e1f\u86cb\u6253\u5f00\uff0c\u9732\u51fa\u4e00\u4e2a\u8be6\u7ec6\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u4ee4\u4eba\u60ca\u53f9\u7684\u7ec6\u8282\u3002"} +{"id": "4003501", "video_name": "b937df80-c5f8-5d78-9fe8-58a1b891126b", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u4e2d\u7684\u8c22\u5c14\u66fc\u5766\u514b\u5728\u540e\u9762\u7684\u7011\u5e03\u524d\u79fb\u52a8\uff0c16k\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "7004507", "video_name": "ca844803-9c27-55e3-b72c-2eb432210793", "text": "\u4e24\u4f4d\u5973\u58eb\u5750\u5728\u5496\u5561\u9986\u91cc\u76f8\u5bf9\u800c\u5750\uff0c\u670d\u52a1\u5458\u7ad9\u5728\u5979\u4eec\u65c1\u8fb9\u3002\u573a\u666f\u903c\u771f\uff0c\u7535\u5f71\u611f\u5341\u8db3\uff0c\u6c1b"} +{"id": "5001873", "video_name": "75037147-cca0-5cdf-879f-73f6252dbec3", "text": "\u73b0\u5b9e\u7684\u70df\u6c11\u9cb8\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5728\u7f8e\u4e3d\u6d41\u7545\u7684\u6c34\u4e0b\u80cc\u666f\u4e2d\u653e\u677e\uff0c\u91c7\u752832k uhd\u98ce\u683c\uff0c\u5c55\u73b0\u7f8e"} +{"id": "0003729", "video_name": "4279bd4d-455a-5783-beb7-0bc1a359236d", "text": "\u70ed\u7231\u6447\u6eda\u97f3\u4e50\u7684\u4eba\u5728\u9152\u5427\u91cc\u559d\u5564\u9152\uff0c\u628a\u9152\u676f\u6447\u6643\u7740\u8bf4\u5e72\u676f\u3002"} +{"id": "1006022", "video_name": "6eab02f2-07db-518a-92fe-e0907eff4803", "text": "\u6d25\u5df4\u5e03\u97e6\u7684\u90ca\u5916\uff0c\u6709\u4e00\u5bb6\u4eba\u9053\u4e3b\u4e49\u533b\u9662\u3002\u533b\u9662\u524d\u9762\u6709\u4e00\u6761\u6cb3\u6d41\uff0c\u6cb3\u91cc\u6709\u6cb3\u9a6c\u548c\u5927\u8c61\u5728\u5e73"} +{"id": "1006894", "video_name": "7e01ea32-7f34-589b-b9dc-688a354b452d", "text": "\u5371\u9669\u7684\u4eba\u5bf9\u81ea\u5df1\u7684\u51b3\u5b9a\u611f\u5230\u9ad8\u5174\u3002"} +{"id": "8002613", "video_name": "f7c70782-79e5-5c32-aab8-7885fcb6d41a", "text": "\u4e00\u4f4d\u975e\u519b\u4e8b\u4eba\u5458\u975e\u5e38\u4f18\u96c5\u5730\u7a7f\u7740\u897f\u88c5\uff0c\u5728\u68b5\u8482\u5188\u7684\u79c1\u4eba\u516c\u5bd3\u4e2d\u4f1a\u89c1\u4e86\u6559\u7687\u3002\u5c55\u793a\u5730\u56fe\u7684\u6444"} +{"id": "2004215", "video_name": "6b2b77d3-a90c-5062-9c49-5054c437e76a", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u4f1a\u8ba1\u4e3a\u5c0f\u4f01\u4e1a\u505a\u7a0e\u52a1\u3002"} +{"id": "3003136", "video_name": "70e12fc2-99c9-5519-a7fb-8dfe15e4bd3c", "text": "\u4e00\u53ea\u6234\u7740\u5e3d\u5b50\u548c\u96ea\u7684\u732b"} +{"id": "8001453", "video_name": "d4726eae-4ce7-5756-9e5c-0fa97c9dc398", "text": "\u4e00\u53ea\u53d7\u4f24\u7684\u72ee\u5b50\u548c\u4e00\u7fa4\u9965\u997f\u7684\u72fc\u5728\u8def\u4e0a\u640f\u6597\uff0c\u88ab\u9ad8\u901f\u884c\u9a76\u7684\u706b\u8f66\u5305\u56f4\u3002\n\nSource sentence:"} +{"id": "3004796", "video_name": "0b9c01b0-394f-5e74-849e-34f6dac440be", "text": "\u4e00\u53ea\u7a7f\u7740 sombrero \u548c pancho \u7684\u5409\u5a03\u5a03\uff0c\u4ee5 Lisa Frank \u98ce\u683c\u4e3a\u4e3b\u9898\u3002"} +{"id": "0003548", "video_name": "3f4df055-ef5c-5eda-b872-eaf3a81920c4", "text": "\u7eb3\u5c3c\u4e9a\u662f\u4e00\u4e2a\u4e16\u754c\uff0c\u52a8\u7269\u548c\u795e\u8bdd\u751f\u7269\u548c\u8c10\u5171\u5b58\uff0c\u6bcf\u4e2a\u90fd\u62e5\u6709\u72ec\u7279\u7684\u54c1\u8d28\u548c\u80fd\u529b\u3002"} +{"id": "1003540", "video_name": "414c4a67-4f57-5f7d-afc3-c96d078717b1", "text": "\u72d7\u8df3\u4e0a\u5979\u4eec\u7684\u819d\u76d6\uff0c\u4e24\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\u5403\u62ab\u8428\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u6109\u5feb"} +{"id": "0004264", "video_name": "06144843-60eb-51cc-8463-cf000c1341d0", "text": "\u72d7\u7a7f\u7740\u6d0b\u7ea2\u8272\u7684\u88d9\u5b50\u8df3\u821e\u3002"} +{"id": "4004027", "video_name": "a4e88cdf-e45d-5674-9dd3-2050a471ae80", "text": "\u5973\u795e\u675c\u5c14\u52a0\u5750\u5728\u4e1b\u6797\u91cc\u7684\u72ee\u5b50\u4e0a\uff0c\u5979\u7684\u5934\u53d1\u968f\u98ce\u98d8\u52a8\u3002"} +{"id": "2004840", "video_name": "a3566248-cb92-5ad7-bd07-0ade07a83007", "text": "\u5728\u4e00\u4e2a\u5b8c\u5168\u6d82\u6210\u767d\u8272\u7684\u7a7a\u4ed3\u5e93\u91cc\uff0c\u767d\u70df\u6f02\u6d6e\u7740\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c8K\u3002"} +{"id": "0004259", "video_name": "05f2c1fc-d3a1-5356-88d1-d343f97c3181", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u4ece\u5e8a\u4e0a\u8d77\u5e8a\u3002"} +{"id": "2005205", "video_name": "a3faf101-f152-58d9-aa96-f9d4cf96ec19", "text": "\u5728\u6cb3\u91cc\u5c0f\u8239\u4e0a\uff0c\u4e00\u4f4d\u62e5\u6709\u957f\u53d1\u7684\u53e4\u5178\u7f8e\u5973\u624b\u6301\u4f1e\u3002"} +{"id": "8002385", "video_name": "1199f1f1-3126-5312-950c-048d07dce3ff", "text": "\u4e00\u4f4d\u5728\u6d77\u4e2d\u7684\u7f8e\u4eba\u9c7c\uff0c\u624b\u638c\u5f20\u5f00\uff0c\u4e00\u53ea\u624b\u62ff\u7740\u9c7c\uff0c\u53e6\u4e00\u53ea\u624b\u62c9\u7740\u4e00\u4e2a\u76d8\u5b50\uff0c\u63d2\u753b\u5e08Wor"} +{"id": "0003871", "video_name": "44f06290-bb72-51ff-a325-2403379bfefa", "text": "\u7f8e\u4e3d\u7684\u7f8e\u56fd\u5370\u5ea6\u5973\u58eb\u505a\u5408\u5341\u793c\u3002"} +{"id": "6002942", "video_name": "724ca6ce-c2c2-5be6-becf-04222a0574b3", "text": "\u5927\u4f17\u8fc8\u817e\u9ed1\u8272\uff0c\u540e\u6392\u8c6a\u534e\u5185\u9970\u9713\u8679\u706f8K\u3002"} +{"id": "0004397", "video_name": "083782f4-9af6-53f2-a9c7-a9f3af878684", "text": "\u5854\u5409\u9a6c\u54c8\u5c14\u4e0a\u7684\u592a\u7a7a\u98de\u8239\u56db\u5904\u6f2b\u6e38\u3002"} +{"id": "1006192", "video_name": "716317ce-df49-5a3d-a4d3-da2fc16f2bee", "text": "\u6c34\u6676\u822c\u53ef\u6015\u7684\u6bd2\u6db2\u5171\u751f\u4f53\u9aa8\u67b6\u4ece\u9065\u8fdc\u661f\u7cfb\u7684\u7ef4\u5ea6\u95e8\u4e2d\u8fdb\u5165\u3002"} +{"id": "4004000", "video_name": "e983cdaa-6e8b-509e-8a95-f366e9d26c3d", "text": "\u5c71\u4e0a\u62cd\u6444\u7684\u753b\u9762\uff0c\u770b\u7740\u592a\u9633\u5347\u8d77\u5728\u5185\u534e\u8fbe\u5dde\u7684\u62c9\u65af\u7ef4\u52a0\u65af\u3002"} +{"id": "7004425", "video_name": "d3c72c2c-3950-59b3-a492-b2e21adde6c3", "text": "\u751f\u6210\u4e00\u5f20\u547c\u5438\u6cd5\u5e08\u4e0e\u609f\u7a7a\u5bf9\u6253\u7684\u753b\u9762\u3002"} +{"id": "3005296", "video_name": "39e046f9-9639-5131-8da1-0ec79d4286e5", "text": "\u6e90\u6587\u53e5\uff1a\u6765\u81ea\u300a\u8d28\u91cf\u6548\u5e94\u300b\u7684EDI\u4e0e\u6765\u81ea\u300a\u5149\u73af\u300b\u7684\u79d1\u5854\u5a1c\u4ea4\u6d41\uff0c3D\uff0cAR 16:9\u3002\n\n\u7ffb\u8bd1\uff1a\u300a"} +{"id": "3006695", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "\u5927\u5b66\u751f\u56e0\u672a\u5b9e\u73b0\u68a6\u60f3\u800c\u611f\u5230\u7edd\u671b\u3002"} +{"id": "7003043", "video_name": "13044624-70fa-533b-820e-561094268a46", "text": "\u96f7\u5f17\u72ec\u81ea\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\uff0c\u6c57\u6d41\u6d43\u80cc\uff0c\u7a7f\u7740\u4e2d\u4e16\u7eaa\u670d\u88c5\u3002"} +{"id": "8003154", "video_name": "78a5cf93-3acf-50da-87bb-b807108eab08", "text": "\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u4eba\u7ad9\u5728\u90a3\u91cc\uff0c\u89c6\u89d2\uff1a\u5168\u8eab\uff0c\u7a7f\u7740\u534e\u4e3d\u7684\u84ec\u677e\u6bdb\u76ae\u5916\u5957\uff0c\u6ca1\u6709\u5931\u771f\uff0c8K\uff0c\u9ad8"} +{"id": "2004671", "video_name": "84f06f82-801a-534a-815b-62022af801d6", "text": "\u955c\u5934\u8f6c\u79fb\u5230 Gunna \u5728\u4e00\u5ea7\u6469\u5929\u5927\u697c\u7684\u9876\u90e8\uff0c\u4fef\u77b0\u6574\u4e2a\u57ce\u5e02\u3002\u57ce\u5e02\u5145\u6ee1\u6d3b\u529b\uff0cGunna \u4e3e\u8d77\u53cc\u624b"} +{"id": "4003496", "video_name": "cdb04fd0-d79c-5687-b92a-aff27c07175e", "text": "\u5728\u96e8\u5929\u4e1b\u6797\u91cc\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u718a\u8ffd\u9010\u7740\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "2007216", "video_name": "084042f6-286f-51c8-b25a-41811f8b9252", "text": "\u4e00\u5e45\u58ee\u89c2\u7684\u5370\u5ea6\u5bfa\u5e99\u4e34\u8fd1\u7011\u5e03\uff0c\u4ece\u9ad8\u89d2\u5ea6\u89c2\u5bdf\uff0c\u91c7\u7528\u9a6c\u65af\u79d1\u6258\u00b7\u65b0\u6d77\u8bda\uff0c\u8a79"} +{"id": "3003846", "video_name": "e361b1f6-842c-59ea-b29b-38c838711643", "text": "\u8def\u5361\u59c6\u5728TikTok\u4e0a\u5206\u4eab\u4e86\u4e00\u4e2a\u9e1f\u7c7b\u5438\u98df\u9e26\u7247\u7684\u89c6\u9891\u3002\u8fd9\u53ea\u8eab\u9ad86\u82f1\u5c3a9\u82f1\u5bf8\u3001\u957f\u7740\u767d\u8272\u7fbd"} +{"id": "2004682", "video_name": "897af66c-7306-5151-89d5-0490a6f8fde4", "text": "\u57ce\u5e02\u7684\u65e9\u6668\uff0c\u9e1f\u513f\u5728\u98de\u7fd4\u3002"} +{"id": "7003144", "video_name": "c4276b4d-c467-5375-931f-deab2a791b66", "text": "\u8bb8\u591a\u957f\u624b\u6307\u7f20\u7ed5\u5728\u4e00\u8d77\uff0c\u626d\u52a8\u7740\u53d8\u6210\u690d\u7269\uff0c\u7167\u7247\u822c\u903c\u771f\uff0c4K\u3002"} +{"id": "7002861", "video_name": "4b6dedb3-9670-5c2c-9fcd-b2cad1401e3e", "text": "\u4ecb\u7ecd\u4e00\u4e0b\u6885\u8389\u4e9a\u00b7\u8428\u9ed8\u65af\uff0c\u5979\u662f\u4e00\u4f4d\u82ad\u6bd4\u5973\u5b69\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u957f\u957f\u7684\u84ec\u677e"} +{"id": "0005309", "video_name": "184f2fd6-8088-53d2-80b3-a008ba103443", "text": "\u6751\u91cc\u4eba\u90fd\u77e5\u9053Liam\u6709\u4e00\u9897\u6177\u6168\u7684\u5fc3\u548c\u4e0d\u53d8\u7684\u5584\u826f\u3002"} +{"id": "0005654", "video_name": "1ec5747d-eab2-5f87-a039-76c5dc292d39", "text": "\u732b\u81ea\u62cd\uff0c\u72d7\u5728\u80cc\u666f\u91cc\u611f\u5230\u70e6\u607c\u3002"} +{"id": "1003220", "video_name": "3b548fb6-11b1-594d-a89a-be77c8f65238", "text": "\u4e00\u90e8\u9ed1\u767d\u76841930\u5e74\u4ee3\u7535\u5f71\uff0c\u5e26\u6709\u6050\u6016\u6c1b\u56f4\uff0c\u8bb2\u8ff0\u5c3c\u7f57\u6cb3\u7554\u53e4\u4ee3\u5148\u8fdb\u738b\u56fd\u7684\u6545\u4e8b\u3002"} +{"id": "4002459", "video_name": "9ed0f710-ee5b-5d8a-ab8c-c30974d28cf8", "text": "\u91d1\u53d1\u7f51\u7ea2\u63a8\u9500\u5979\u7684\u79d8\u5bc6\u7f8e\u5bb9\u76d2\uff0c\u5fae\u7b11\u7740\u5c55\u793a\u7740\u7c89\u8272\u7684\u76d2\u5b50\uff0c\u5c4f\u5e55\u4e0a\u663e\u793a\u7740\u6570\u5b57\u3002"} +{"id": "0006911", "video_name": "353a0e29-f389-544e-9772-f898c0b8224a", "text": "\u9e21\u86cb\u5ba2\u6237\u5728\u5c3c\u65e5\u5229\u4e9a\u5e02\u573a\u8d2d\u4e70\u5927\u91cf\u9e21\u86cb\u7bb1\u3002"} +{"id": "6003847", "video_name": "8d4d893d-8462-5be8-a7ef-942e420d7cbc", "text": "\u4e00\u53ea\u9e70\u98de\u7fd4\u7684\u666f\u8c61\u3002"} +{"id": "0005796", "video_name": "21648fce-3fad-5527-98c8-efd74972db71", "text": "\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\uff0c\u8f6c\u6362\u5230\u6bd5\u4e1a\u5973\u5b69\u5178\u793c\u7684\u573a\u666f\u3002"} +{"id": "2003695", "video_name": "c504dbcf-de9f-50df-a364-2ec2ac9dc3d0", "text": "\u4e00\u4e2a\u725b\u4ed4\u9a7e\u9a76\u5965\u8fea\u7a7f\u8d8a\u6c99\u6f20\u7684\u7535\u5f71\u89c6\u9891"} +{"id": "1006883", "video_name": "7ddab789-35a8-501e-abe4-bfb20f44df95", "text": "\u5de8\u5927\u7684\u602a\u517d\uff0cCG\uff0c\u96fe\u6c14\u5f25\u6f2b\u7684\u573a\u666f\u6c1b\u56f4\n\nSource sentence: The conference room is on the 5th floor, turn right after you get off the elevator."} +{"id": "2003143", "video_name": "e6409820-0dbb-5264-85d0-c8a024da4ac8", "text": "\u4e00\u4e2a\u6d1e\u7a74\u91cc\u5145\u6ee1\u5e93\u5229\u5357\u94bb\u77f3\u3002"} +{"id": "4002515", "video_name": "5d2e50fa-317b-5396-b1a6-9c4d15774c62", "text": "50\u5e74\u4ee3\u8d858\u6beb\u7c73\u7684\u626d\u66f2\u6726\u80e7\u7684\u90ca\u533a\u57ce\u5e02\u89c6\u9891\u3002"} +{"id": "0005379", "video_name": "19c0d897-6668-5b27-b999-e3f08a40b5af", "text": "\u4ed6\u4eec\u76ee\u7779\u68ee\u6797\u4e2d\u7efd\u653e\u7740\u4e94\u989c\u516d\u8272\u7684\u82b1\u6735\u548c\u5feb\u4e50\u7684\u52a8\u7269\u3002\u4e09\u7ef4\u52a8\u753b\uff0c4K \u5206\u8fa8\u7387 16:"} +{"id": "3006638", "video_name": "ed99542d-ec2d-5810-80c4-f8b59f56ddd9", "text": "\u4e00\u4e2a\u4eba\u9a91\u5728\u4e00\u53ea\u72ee\u5b50\u4e0a\u5728\u963f\u52a0\u8fea\u5c14\u57ce\u91cc\u884c\u9a76\u3002"} +{"id": "0004393", "video_name": "082e3221-75b8-5757-9d8a-6d32a8ab37d3", "text": "\u4ed9\u5883\u91cc\u6709\u5404\u79cd\u5404\u6837\u7684\u5c0f\u52a8\u7269\u3002"} +{"id": "1003324", "video_name": "3d2ed683-5583-57c4-bfa7-fd123a7202e9", "text": "\u8bbe\u8ba1\u4ee5\u57ce\u5e02\u4e3a\u80cc\u666f\u7684\u7247\u5c3e\u5b57\u5e55\uff0c\u6355\u6349\u5176\u591a\u5143\u800c\u5145\u6ee1\u6d3b\u529b\u7684\u6c1b\u56f4\u3002"} +{"id": "0006351", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "\u8499\u5a1c\u4e3d\u838e\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\u8d70\u7740\uff0c\u623f\u95f4\u91cc\u6709\u4e00\u628a\u6905\u5b50\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u95ee"} +{"id": "7003694", "video_name": "bd5c86a0-19ca-5416-85bc-0abaab9424ab", "text": "\u610f\u4e49\u91cd\u5927\u7684\u5371\u5bb3\u7531\u610f\u5916\u7206\u70b8\u5bfc\u81f4\u3002\u8fd9\u8d77\u4e8b\u4ef6\u53ef\u80fd\u4e22\u5931\u4e86\u4e00\u4e2a\u949a\u5f15\u7206\u5668\uff0c\u6574\u4e2a\u70b8\u5f39\u4ecd\u7136\u8eba"} +{"id": "8002968", "video_name": "5a239a46-7a06-54df-98c0-e22499ba6a9b", "text": "\u963f\u80b2\u5420\u9640\u53f2\u8bd7\u4e2d\u7684\u53e4\u4ee3\u6218\u58eb\u963f\u4ec0\u74e6\u5854\u739b"} +{"id": "6004136", "video_name": "21033f0e-4996-5437-af52-f19bf57f54a2", "text": "\u4e2d\u4e16\u7eaa\u65f6\u671f\u7684\u6218\u6597\uff0c\u6709\u5f88\u591a\u58eb\u5175\u53c2\u6218\u3002"} +{"id": "3004449", "video_name": "0bedb079-90b0-5ea9-91d3-11460ae7abaf", "text": "\u6c99\u5b50\u843d\u5165\u6c99\u6f0f\u7684\u4e0b\u90e8\uff0c\u6700\u540e\u8fdb\u884c\u7f29\u653e\u30025\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "7002155", "video_name": "3731109d-e2a4-50bd-8f51-424a71144579", "text": "\u968f\u7740\u4ed6\u4eec\u5728\u745e\u58eb\u7684\u65f6\u95f4\u63a5\u8fd1\u5c3e\u58f0\uff0c\u8428\u62c9\u548c\u9a6c\u514b\u77e5\u9053\u8fd9\u6b21\u5192\u9669\u5c06\u6c38\u8fdc\u5360\u636e\u4ed6\u4eec\u5fc3\u4e2d\u7684\u7279"} +{"id": "3006877", "video_name": "a943be92-1f89-5b7f-ab64-c0eb25da198f", "text": "\u5c0f\u738b\u5b50\u3001\u72d0\u72f8\u548c\u73ab\u7470\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "2005053", "video_name": "a0bd44f6-11e0-5933-ae50-2f01809a4ebe", "text": "\u5728\u6559\u5ba4\u91cc\u7684\u52a8\u6f2b\u5c11\u5e74\uff0c\u7ea2\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u9ed1\u8272\u670d\u88c5\u3002"} +{"id": "4004223", "video_name": "bce7d007-a0f4-546b-8a1b-73c11069c24b", "text": "\u51b0\u5c71\u878d\u5316\uff0c\u51b0\u5e3d\uff0c\u6d77\u6d0b\uff0c\u8d85\u771f\u5b9e\uff0c\u660e\u4eae\u7684\u9633\u5149\uff0c\u5317\u6781\u718a\u8d70\u5f00\u3002"} +{"id": "4004021", "video_name": "13604da6-6137-50e2-ac50-2f42569d15e7", "text": "\u6625\u53f6\u4e0a\u7684\u7b2c\u4e00\u573a\u96ea\uff0c\u72d7 (\u5b57\u4f53\uff1a\u73b0\u4ee3)\u3002"} +{"id": "7002311", "video_name": "12b37e76-d2fe-5ef3-b290-925de07feac9", "text": "\u4f7f\u4e00\u5339\u68d5\u8272\u7684\u9a6c\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "1004751", "video_name": "57f70422-0805-5e0c-80a8-f5600d478900", "text": "\u4e00\u5f20\u5b81\u9759\u7684\u68ee\u6797\u98ce\u666f\u7167\u7247\uff0c\u9633\u5149\u7a7f\u8fc7\u6811\u6728\uff0c\u5728\u753b\u9762\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u7537\u4eba\u3002\n\nSource sentence: The restaurant serves a variety of delicious dishes from"} +{"id": "4003344", "video_name": "f570e0d7-df78-5661-b738-3998587fc6f1", "text": "\u514b\u6797\u7279\u00b7\u4f0a\u65af\u7279\u4f0d\u5fb7\uff0c\u897f\u90e8\u725b\u4ed4\u5c04\u51fb\u9b3c\u9b42\u3002"} +{"id": "2003847", "video_name": "51168836-40d3-510c-a849-7a010c949922", "text": "\u8fd9\u4e2a\u6751\u5e84\u56e0\u5176\u590d\u6742\u7684\u7ec6\u8282\u3001\u8ff7\u4eba\u7684\u5c0f\u5c4b\u548c\u70ed\u95f9\u7684\u5e02\u573a\u800c\u5145\u6ee1\u751f\u673a\u3002"} +{"id": "1006449", "video_name": "760aa8c0-e7cd-5bf9-b4b3-f3cccff5923f", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u7a7f\u7740\u4e00\u4ef6\u957f\u957f\u7684\u9ed1\u8272\u957f\u88d9\uff0c\u5728\u6c34\u9762\u4e0a\u884c\u8d70\u3002\u5979\u6709\u7740\u957f\u800c\u6d53\u5bc6\u7684\u9ed1\u8272\u5934\u53d1\u548c"} +{"id": "2006965", "video_name": "a2069004-7367-5723-943e-7ec453720b61", "text": "\u4e00\u53ea\u9f99\u5728\u96e8\u4e2d\u8df3\u821e"} +{"id": "7002388", "video_name": "c032509d-3af2-568e-ae18-f5d77d17750e", "text": "\u4e00\u5f20\u56fe\u7247\u63cf\u7ed8\u4e86\u4e24\u4e2a\u4eba\u5728\u4ea4\u8c08\uff0c\u4e00\u4e2a\u4eba\u663e\u5f97\u60c5\u7eea\u4e0d\u7a33\u6216\u63d0\u51fa\u4e86\u8981\u6c42\uff0c\u800c\u53e6\u4e00\u4e2a\u4eba\u4f3c\u4e4e\u611f\u5230\u77db\u76fe"} +{"id": "1005725", "video_name": "694f9f25-2e09-5db4-9bec-7361743d91e3", "text": "\u8212\u9002\u7684\u5c0f\u623f\u5b50\u4f4f\u7740\u4e00\u53ea\u53eb\u505aWhiskers\u7684\u5947\u7279\u732b\u3002"} +{"id": "3006476", "video_name": "262a021a-8e2f-5094-bad1-87dfb99df315", "text": "\u4e4c\u9e26\u7684\u4e00\u7fa4\uff0c\u98de\u7fd4\u5728\u5929\u7a7a\u4e2d\uff0c\u80cc\u666f\u662f\u5c71\u8109\uff0c\u4ece\u5de6\u5411\u53f3\u3002"} +{"id": "2004835", "video_name": "791b5903-fb9c-5f50-97af-12662d663fb0", "text": "\u4e00\u4e2a\u5927\u5e08\u7ad9\u5728\u7011\u5e03\u524d\uff0c\u73af\u5883\u4f18\u7f8e\u3002"} +{"id": "1003750", "video_name": "45287df4-38dd-5169-94d3-be87edddc8d4", "text": "\u521b\u5efa\u4e00\u4e2a\u865a\u62df\u80cc\u666f\uff0c\u5c31\u50cfYouTube\u4e0a\u7684SciShow Kids\u4e00\u6837\u3002"} +{"id": "4004365", "video_name": "c836da5f-ea8b-5ada-8e1a-60db114ddc77", "text": "\u4e00\u4f4d\u5370\u5ea6\u5987\u5973\u4e0e\u5979\u7684\u4e08\u592b\u4ea4\u8c08\uff0c\u4f7f\u7528\u50cf\u76ae\u514b\u65af\u89d2\u8272\u4e00\u6837\u53ef\u7231\u76843D\u5361\u901a\u4eba\u7269\u3002"} +{"id": "2003107", "video_name": "538c7070-0ee4-5c4a-aa8f-a10fdb54dcca", "text": "\u4e00\u540d\u7687\u5bb6\u9a6c\u5fb7\u91cc\u8db3\u7403\u8fd0\u52a8\u5458\u4ee5\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u6253\u8fdb\u70b9\u7403\u3002"} +{"id": "1005126", "video_name": "5e8afaee-7885-5b7f-9360-c3114befe980", "text": "\u8718\u86db\u4fa0\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u8df3\u821e\u6a2a\u7a7f\u7ebd\u7ea6\u8857\u9053\u3002"} +{"id": "6004280", "video_name": "a096d44b-fe1b-599c-ba0d-683125d753fd", "text": "\u6ce2\u58eb\u987f\u6e2f\u7167\u7247\u63cf\u8ff0\uff1a1773\u5e74\u7684\u6ce2\u58eb\u987f\u6e2f\uff0c\u505c\u9760\u7740\u6ee1\u8f7d\u8336\u53f6\u7684\u8239\u53ea\u3002"} +{"id": "7004187", "video_name": "5f3010c2-9417-5f3d-90fa-b57445079d3d", "text": "\u5b64\u72ec\u7684\u5927\u5357\u74dc\u5fae\u7b11\u7740\u5728\u4e1b\u6797\u8def\u4e0a\u5954\u8dd1\uff0c\u8f6e\u5b50\u4e0a\uff0c\u5976\u5976\u5750\u5728\u91cc\u9762\u3002\n\nSource sentence: The cat is sleeping on"} +{"id": "6003660", "video_name": "b384e502-5893-5d8f-b9d4-400d2291bb0d", "text": "\u5c3c\u6851Silvia S15\u5728\u9053\u8def\u4e0a\u6f02\u79fb\u3002"} +{"id": "1004990", "video_name": "5c3f68ca-3642-5aec-ae24-81d52080c94e", "text": "\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u6708\u4eae\u548c\u95ea\u70c1\u7684\u661f\u661f\u3002"} +{"id": "7004950", "video_name": "d1656d40-46b0-57ca-80ce-ce8b73ca1f9c", "text": "\u76db\u5f00\u7684\u7ea2\u73ab\u7470\u3001\u9732\u73e0\u3001\u8d85\u5199\u5b9e\u7684\u5b8f\u89c2\u6444\u5f71"} +{"id": "2004377", "video_name": "39957fa0-e547-5408-867b-6d4ab545b607", "text": "3D Pixar \u52a8\u753b\u5c55\u793a\u4e86\u4e00\u4e2a\u540d\u53eb\u62c9\u79d1\u6258\u7684\u9a6c\u8fbe\u52a0\u65af\u52a0\u7537\u5b69\uff0c\u4ed6\u662f\u4e2a\u8d2b\u7a77\u7684\u5b69\u5b50\u3002"} +{"id": "8003001", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "\u5728\u4e2d\u95f4\u6302\u7740\u4e00\u5f20\u7a7a\u767d\u7684\u7eb8\uff0c\u5361\u901a\u6837\u5f0f\uff0c\u65c1\u8fb9\u6709\u4e00\u652f\u94c5\u7b14\u3002"} +{"id": "2005921", "video_name": "2bd4dd66-e5f6-5858-bb75-c5d0e99fb9a3", "text": "\u6770\u514b\u00b7\u745e\u6069\u7684\u4ecb\u7ecd0:23\u81f30:26 16:9\u3002"} +{"id": "4002787", "video_name": "396bbb2d-f26b-5f5a-ad12-ae74c3ad3274", "text": "\u4e61\u6751\u63d2\u5934\uff0c\u5c0f\u6cb3\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u8857\u9053\u4e0a\u8d70\u7740\u5947\u602a\u7684\u751f\u7269\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u76844K "} +{"id": "1005682", "video_name": "686c01b2-f72f-53d0-8c65-e435392725e1", "text": "\u7070\u5ea6\u9897\u7c92\u72b6\u7684\u5b89\u4fdd\u6444\u50cf\u5934\u753b\u9762\uff0c\u4f4e\u5e27\u7387\u52a0\u901f\u64ad\u653e\uff0c\u4ee4\u4eba\u4e0d\u5b89\u7684\u6c1b\u56f4\u3002"} +{"id": "2005495", "video_name": "0b647778-dbd5-5c32-b2c6-c3ec52cfb6f0", "text": "\u6e14\u8239\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u6d77\u6d6a\u6c79\u6d8c\uff0c\u5915\u9633\u897f\u4e0b\u3002"} +{"id": "7002533", "video_name": "c79d148a-9388-5c7b-bc4e-16e81c13d892", "text": "\u4e00\u540d\u60ca\u6050\u7684\u7537\u5b50\u5728\u9c7c\u773c\u955c\u5934\u4e0b\u6cbf\u5965\u65af\u9646\u7684\u8857\u9053\u5954\u8dd1\u3002"} +{"id": "1004269", "video_name": "4f007220-ff15-5913-9f44-210d8189f234", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u72ee\u5b50\u524d\u9762\u8d70\u3002"} +{"id": "2007092", "video_name": "8d8f3547-b570-5ceb-97ed-0af8f029c29c", "text": "\u4e00\u4e2a\u540d\u53ebBEP\u7684\u7537\u5b50\u5728\u7ebd\u7ea6\u4ea4\u901a\u9ad8\u5cf0\u671f\u7a7f\u8fc7\u8857\u9053\uff0c\u4ece\u53e3\u888b\u91cc\u638f\u51fa\u624b\u673a\u3002"} +{"id": "3006003", "video_name": "2e14891f-a473-50a8-a7a1-85ae17c49082", "text": "\u4e00\u628a\u5409\u4ed6\u7a7f\u8d8a\u4e00\u4e2a\u672b\u65e5\u79d1\u6280\u68ee\u6797\uff0c\u6709\u7194\u5316\u7684\u5e7b\u89c9\u7eb9\u7406\u3002\u591c\u665a\u88ab\u4e00\u8f6e\u5927\u6ee1\u6708\u7167"} +{"id": "2007387", "video_name": "1e8c826e-bb9c-53a7-b79c-775c927cfbe6", "text": "\u4e00\u4f4d\u5973\u5b69\uff0c\u827a\u672f\u5bb6\u8349\u95f4\u5f4c\u751f\uff0c\u5728\u6c99\u6f20\u4e2d\u9a91\u9a6c\u3002"} +{"id": "4003956", "video_name": "8633df8c-6705-5fec-afbf-c79c78c63312", "text": "2024\u5e74\u7684\u96ea\u7403\u91cc\u9762\u6709\u8718\u86db\u4fa0\u3002"} +{"id": "0006937", "video_name": "35884585-ed75-5519-90dc-55d388c35bb8", "text": "\u4e00\u5e45\u62bd\u8c61\u690d\u7269\u751f\u957f\u7684\u56fe\u753b\uff0c\u91c7\u7528\u6781\u7b80\u4e3b\u4e49\u513f\u7ae5\u753b\u98ce\u683c\uff0c\u5f69\u8272\u7b14\u5728\u767d\u8272\u80cc\u666f\u4e0a\u7ed8\u5236"} +{"id": "2003380", "video_name": "4c019f3e-2650-5670-b277-d2133aa243d5", "text": "\u64cd\u573a\u4e0a\u7684\u5b69\u5b50\u4eec\u6253\u6392\u7403\uff0c\u5468\u56f4\u89c2\u4f17\u56f4\u89c2\uff0c\u5730\u9762\u662f\u7eff\u8272\u7684\uff0c\u5b69\u5b50\u4eec\u7a7f\u7740\u8fd0\u52a8\u670d\u3002"} +{"id": "6002310", "video_name": "58ec9ae0-705d-54d4-a333-69da287e3295", "text": "\u65e5\u843d\u65f6\u62cd\u6444\u7684\u5065\u8eab\u623f\u65e0\u4eba\u673a\u955c\u5934\uff0c\u8c61\u5f81\u7740\u4e00\u4e2a\u9f13\u821e\u4eba\u5fc3\u7684\u65c5\u7a0b\u7ed3\u675f\u548c\u65b0\u6311\u6218\u7684\u5f00\u59cb\u3002"} +{"id": "2004965", "video_name": "af74ee3d-8824-538e-b324-de4482d0dc62", "text": "\u6e38\u6cf3\u6c60\u88ab\u70ed\u5e26\u4e1b\u6797\u7684\u9c9c\u8273\u8272\u5f69\u548c\u8302\u76db\u690d\u88ab\u6240\u73af\u7ed5\uff0c\u7ec6\u8282\u7cbe\u81f4\uff0c8K"} +{"id": "2004335", "video_name": "4a343fff-6659-56fc-9ad8-ae1c8aa5354d", "text": "\u5c55\u793a\u67dc\u4e2d\u7684\u79d1\u5e7b\u9885\u9aa8\u808c\u8089\u4e0d\u65ad\u751f\u957f\uff0c\u68f1\u89d2\u5206\u660e\uff0c\u5177\u6709\u7535\u5f71\u611f\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1004542", "video_name": "545b00d7-a88a-5b23-9741-be7e26cd9483", "text": "\u5728\u4e00\u4e2a\u53f2\u8bd7\u822c\u68a6\u5e7b\u7684\u573a\u666f\u4e2d\uff0c\u6709\u4e00\u53ea\u53ef\u7231\u7684\u767d\u5154\u95ea\u8000\u7740\u5149\u8292\u3002"} +{"id": "4003374", "video_name": "237c05ad-a856-59f7-81be-45aacda12777", "text": "\u80cc\u666f\u6709\u5927\u871c\u8702\u3001\u5f69\u8272\u70df\u96fe\u3001\u96f7\u7535\u661f\u7a7a\u548c\u4e00\u9876\u91d1\u8272\u7687\u51a0\u3002\u4fe1\u606f\uff1aJCI OCT MFG\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004541", "video_name": "4ad61ff9-c939-575e-b2bd-9fde2fbc7d48", "text": "\"\u822a\u6d77\u5bb6\u5e26\u7740\u5ba0\u7269\u5728\u706b\u661f\u4e0a\u884c\u8d70\u3002\""} +{"id": "6002150", "video_name": "443a99bf-315c-58dc-9c78-e12d8e6ef7dd", "text": "\u4e00\u4e2a\u597d\u5947\u7684\u5e74\u8f7b\u91d1\u9c7c\u540d\u53eb\u82ac\u6069\u5728\u8377\u53f6\u4e0a\u9047\u5230\u4e86\u8428\u7c73\u8717\u725b\u3002 \n\nSource sentence: The big brown bear climbed up the tall"} +{"id": "3006287", "video_name": "e140eae7-47fd-5c09-bbac-344337373895", "text": "\u767d\u8272\u7684\u73ab\u7470\u4e0a\u6e85\u4e0a\u4e00\u62b9\u7c89\u8272\u7684\u6cb9\u6f06\u3002"} +{"id": "8002692", "video_name": "c8c2b792-fcd9-55e4-a022-5f512da0087a", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u8036\u7a23\u76845\u79d2\u89c6\u9891\u3002"} +{"id": "3006932", "video_name": "249b135f-294a-58d5-b3d5-ecacb7a2c11b", "text": "\u795e\u7947\u8c61\u795e\u5728\u5bfa\u5edf\u88e1\u9032\u98df\u3002"} +{"id": "8001550", "video_name": "38dcd433-1b04-50c4-b8b1-525eed836d3c", "text": "\u897f\u8499\u00b7\u83b1\u5229\u662f\u4e00\u6b3e\u7535\u5b50\u6e38\u620f\u4e2d\u7684\u89d2\u8272\uff0c\u62e5\u6709\u9ed1\u6697\u7684\u4e3b\u9898\u548c\u5371\u9669\u7684\u7279\u5f81\u3002"} +{"id": "8002456", "video_name": "ba346bb6-8d3d-5d20-b0ec-3f97800355de", "text": "\u6709\u4e24\u53ea\u72ee\u5b50\u5728\u975e\u6d32\u7684\u8349\u539f\u4e0a\u6f5c\u4f0f\u730e\u7269\uff0c\u6709\u8bb8\u591a\u8001\u6811\uff0c\u6709\u51e0\u53ea\u9e7f\u5728\u5403\u8349\uff0c\u98ce\u4f7f"} +{"id": "0005952", "video_name": "23db4488-a347-5ace-958f-dba0cfab0e93", "text": "\u4f0a\u62c9\u62c9\u662f\u4e00\u4e2a\u4e03\u5c81\u7684\u5973\u5b69\uff0c\u8eab\u6750\u82d7\u6761\uff0c\u5934\u53d1\u662f\u68d5\u8272\u7684\u77ed\u53d1\uff0c\u76ae\u80a4\u989c\u8272\u7565\u5fae\u504f\u6697\uff0c\u6709\u4e24"} +{"id": "6004328", "video_name": "02f775f8-32cd-571a-9297-5d88a476acf2", "text": "\u60a8\u53ef\u4ee5\u6536\u5230\u6765\u81ea\u7535\u5b50\u8d26\u6237\u3001\u94f6\u884c\u5361\u3001\u73b0\u91d1\u548c\u52a0\u5bc6\u8d27\u5e01\u7684\u6b3e\u9879\uff0c\u5e76\u7528\u4e8e\u652f\u4ed8\u8d26\u5355\u3001\u8d2d\u4e70\u548c\u51fa\u552e\u5546\u54c1\u3001\u4f5c\u54c1\u548c\u670d\u52a1\u3002"} +{"id": "6004320", "video_name": "b01f9d62-0614-5147-8595-24fbd2daaf03", "text": "\u5de8\u517d\u4ece\u6d77\u4e2d\u5d1b\u8d77\u7684\u56fe\u50cf"} +{"id": "7002690", "video_name": "05d98ede-f68e-5f9c-bf96-fb3ffc57d90c", "text": "\u603b\u6e38\u620f\u8ba2\u9605\u4eba\u6570\u8fbe\u52303600\u4e07\uff0c\u5e86\u795d\u6d3b\u52a8\u3002"} +{"id": "3006311", "video_name": "9b5adaf4-bc2b-57ab-8e0a-3770d6e63503", "text": "\u4e00\u6bb5\u53e4\u8001\u7684\u89c6\u9891\uff0c\u4e00\u7fa4\u4eba\u7ad9\u5728\u73bb\u7483\u524d\uff0c\u770b\u7740\u706b\u8f66\u5916\u7684\u8857\u9053\u3002"} +{"id": "3003303", "video_name": "8adeb945-2aa6-5d07-b136-ae05d5c76b09", "text": "\u4e00\u4e2a\u9ed1\u53d1\u3001\u7a7f\u7740\u767d\u8272\u7761\u8863\u7684\u7537\u5b69\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u901a\u8fc78K\u7684\u5b8c\u7f8e\u7ec6\u8282\u89c2\u770b\u5b55\u5987\u7684"} +{"id": "6004524", "video_name": "e3e41128-41bb-5f2d-964d-52e30b5cc9b8", "text": "\u6f02\u4eae\u7684\u5c0f\u7537\u5b69\u5728\u66f4\u8863\u5ba4\u3002"} +{"id": "6004353", "video_name": "54d5f555-d035-5b90-814f-28e4004283a5", "text": "\u6709\u4e00\u53ea\u72d7\u3002\u4ed6\u975e\u5e38\u9965\u997f\u3002\u4ed6\u6328\u5bb6\u6328\u6237\u5730\u5f98\u5f8a\u3002\u4ed6\u4ece\u4e00\u5bb6\u8089\u94fa\u5077\u4e86\u4e00\u5757\u9aa8\u5934\u5e76\u9003"} +{"id": "8003899", "video_name": "ea066090-81e4-5365-9944-bd9f912b22b7", "text": "\u8389\u8389\uff0c\u90a3\u4e2a\u53d7\u6b22\u8fce\u7684\u5973\u5b69\uff0c\u5e26\u7740\u5979\u8ff7\u4eba\u7684\u5fae\u7b11\u3002"} +{"id": "4003314", "video_name": "8bf34d13-da72-5ce5-93e7-eaa4e5d0b85a", "text": "\u67ef\u871c\u514b\u9752\u86d9\u6572\u7740\u94c3\u9f13\u3002"} +{"id": "4002913", "video_name": "24ce01a6-17a5-577f-8c0d-d553ca284d31", "text": "\u7167\u7247\u62cd\u6444\uff0c\u4e09\u8272\u7f51\u683c\u5370\u5237\uff0c\u672a\u6765\u4e3b\u4e49\u7684\u9ed1\u8272\u5bb6\u5ead\uff0c\u5728\u6c99\u6f20\u4e2d\uff0c\u4ee5\u7c73\u6b47\u5c14\u00b7\u8d21\u5fb7\u91cc\u7684\u98ce\u683c\uff0c"} +{"id": "2004717", "video_name": "7ef4ced1-7232-58b6-a117-199257e32acc", "text": "\u4e00\u4f4d\u6301\u6709\u6b66\u58eb\u5200\u7684\u5f3a\u5927\u52a8\u6f2b\u89d2\u8272\uff0c\u5728\u5c71\u4e0a\u591c\u665a\u4e0e\u4e00\u53ea\u6709\u56db\u53ea\u624b\u7684\u6076\u9b54\u6218\u6597\uff0c\u8eab\u4f53\u53d7\u4f24"} +{"id": "5001784", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u60ac\u6302\u5728\u5929\u7a7a\u4e2d\uff0c\u6708\u4eae\u548c\u661f\u661f\u3002"} +{"id": "5001133", "video_name": "dd592fd2-d5be-5447-aaba-f8f1d3e8573d", "text": "\u4e00\u53ea\u72d7\u72ec\u81ea\u7ad9\u5728\u516c\u56ed\u91cc\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "4003235", "video_name": "1f514318-5a82-5472-9622-5c7875f93908", "text": "\u4e00\u540d\u6234\u7740\u7ea2\u8272\u5e3d\u5b50\u548c\u9ed1\u8272\u963f\u8fea\u8fbe\u65af\u5939\u514b\uff0c\u624b\u6301\u67aa\u68b0\u7684\u5b69\u5b50\u6b63\u5728\u4fc4\u7f57\u65af\u8001\u57ce\u533a\u884c"} +{"id": "7003718", "video_name": "9d046d36-2a94-51a5-9d83-361d57d1b6be", "text": "\u4e00\u4f4d\u53e4\u8001\u7684\u4e2d\u56fd\u4eba\uff0c\u7ad9\u5728\u6e56\u7554\u8fb9\u9493\u9c7c\uff0c\u7528\u58a8\u6c34\u63cf\u7ed8\u3002"} +{"id": "4003288", "video_name": "8920e459-9173-55d9-96dc-dff61aaad7bb", "text": "\u5bb6\u5ead\u6d3e\u5bf9\uff0c\u5f88\u591a\u4eba\u8df3\u821e\uff0c\u903c\u771f\u3002"} +{"id": "1003351", "video_name": "3dc345f9-5bfe-5f21-8c5f-84c6821f3366", "text": "\u751f\u6210\u9a6c\u675c\u62c9\u5bfa\u5e99\u4ee5\u5c55\u793a\u5176\u58ee\u4e3d\u7684\u7f8e\u4e3d\u3002"} +{"id": "8002668", "video_name": "6b4f6dac-8e7c-5188-89ea-35282dd3e399", "text": "\u4e00\u53ea\u7a7f\u7740\u5b87\u822a\u670d\u7684\u62df\u4eba\u5316\u6fb3\u5927\u5229\u4e9a\u6897\u3002"} +{"id": "6003956", "video_name": "97729cdc-54bf-5b6d-abe7-b8be18c1101e", "text": "\u6211\u662f\u4f55\u5bb6\u771f\u6b63\u7684\u5973\u513f\u3002"} +{"id": "5001417", "video_name": "2c5f7506-c337-57ba-80fd-75f980391b6a", "text": "\u98de\u9f99\u4e3a\u8d2b\u7620\u4e4b\u5730\u5e26\u6765\u751f\u673a\uff0c\u8c61\u5f81\u7740AI\u5982\u4f55\u63a8\u52a8\u4f01\u4e1a\u589e\u957f\u3002"} +{"id": "8003341", "video_name": "83218215-6ccc-50cc-91cd-04873ef4c0f9", "text": "\u4ece\u8d4c\u535a\u4e2d\u8d5a\u4e86\u5f88\u591a\u94b1\u7684\u7537\u4eba"} +{"id": "3005031", "video_name": "d71924e7-5073-5bd8-9d18-dea2da530d85", "text": "\u7537\u5b69\u5b8c\u6210\u4e86\u68a6\u60f3\u3002\u6f2b\u753b\u3002"} +{"id": "3003448", "video_name": "90a4cc99-cf89-5188-a917-b537566e0e5e", "text": "\u4eba\u4f53\u4e2d\u5065\u5eb7\u8425\u517b\u7269\u8d28\u6240\u83b7\u5f97\u7684\u53ef\u6301\u7eed\u7684\u81ea\u7136\u80fd\u91cf"} +{"id": "3006170", "video_name": "0ab259c4-693c-5ab5-9df2-b1f2cc5c2c0a", "text": "LSD\u4f7f\u7528\u8005\u6240\u770b\u5230\u7684\u842c\u82b1\u7b52\u8996\u91ce\u666f\u89c0\uff0c\u5f37\u70c8\u7684\u904b\u52d5\uff0c\u6f38\u8b8a\uff0c\u8272\u5f69\u7e7d\u7d1b\uff0c\u6843\u7d05"} +{"id": "3006363", "video_name": "58a2aac7-2215-591a-a5a7-26eef6130e7a", "text": "\u516c\u5171\u53c2\u4e0e\u548c\u6559\u80b2\u4e2d\u5fc3\uff1a\u4e3b\u9898\uff1a\u6559\u80b2\u5de5\u4f5c\u8005\u548c\u7814\u7a76\u4eba\u5458\u901a\u8fc7\u5c55\u89c8\u548c\u6f14\u793a\u4e0e\u516c\u4f17\u4e92\u52a8\u3002\u80cc\u666f\uff1a"} +{"id": "7003768", "video_name": "5a8b695e-c100-5509-af39-b1864d967eaa", "text": "\u4fc4\u7f57\u65af\u7684\u56fd\u65d7\u53d8\u6210\u4e86\u4e4c\u514b\u5170\u7684\u56fd\u65d7\u3002"} +{"id": "3005927", "video_name": "f27c8bb1-57f6-577c-8476-70bedc9325e6", "text": "\u6709\u8bb8\u591a\u8272\u5f69\u7f24\u7eb7\u7684\u6811\u6728\u7684\u901a\u9053\uff0c\u7f29\u5c0f\u89c6\u89d2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004297", "video_name": "4f7d51d0-ae17-50b9-93d5-ab1153585ec4", "text": "\u7535\u5f71\u822c\u7684\uff0c\u7164\u77ff\u591c\u95f4\u6316\u6398\uff0c\u5934\u706f\uff0c3D\u6e32\u67d3\u3002"} +{"id": "7004499", "video_name": "4708bd96-3ae8-593a-8f40-6e39f1c5545e", "text": "\u4ed6\u5728\u7b49\u5f85\u4ed6\u7684\u524d\u5973\u53cb\uff0c\u5373\u4f7f\u5979\u4e0d\u5728\u610f\u3002"} +{"id": "7002641", "video_name": "da58e7e3-ce35-5006-9109-54cf194c992d", "text": "\u6210\u529f\u4e86\uff1a\u8fd9\u4f4d\u96d5\u5851\u5bb6\u73b0\u5728\u611f\u5230\u5174\u9ad8\u91c7\u70c8\uff0c\u624b\u4e2d\u62ff\u7740\u4ed6\u4ece\u7834\u788e\u7684\u77f3\u5934\u4e2d\u96d5\u523b\u51fa\u6765\u7684\u6f02"} +{"id": "3006626", "video_name": "6dfe4e86-68fc-5031-a3a2-2f0fe870ca23", "text": "\u68c0\u67e5\u5458\u963f\u91cc\u7a7f\u68ad\u4e8e\u8001\u57ce\u533a\u9519\u7efc\u590d\u6742\u7684\u5c0f\u5df7\u4e2d\u3002"} +{"id": "1005073", "video_name": "5d955edc-9e40-5081-8a7d-5920076dcc2c", "text": "\u653e\u5927\u76f8\u673a\uff0c\u4f7f\u8349\u3001\u82b1\u548c\u6811\u52a8\u8d77\u6765\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u5929\u7a7a\uff0c\u677e\u9f20\u7684\u5c3e\u5df4\u5728\u52a8\uff0c\u98ce\u5728\u5439\uff0c\u8ba9"} +{"id": "8002503", "video_name": "674c166d-fd5b-5a85-a94d-a32a611ae15e", "text": "\u805a\u7126\u4e8e\u7f13\u7f13\u5f00\u542f\u7684\u95e8\uff0c\u63ed\u793a\u51fa\u4e00\u4e2a\u5e9f\u5f03\u7684\u9634\u68ee\u623f\u5c4b\u3002"} +{"id": "6002833", "video_name": "9e9ebfb1-11f0-5323-a20c-0cb78398834c", "text": "\u4e00\u90e8\u9ed1\u767d\u65e0\u58f0\u7684\u8001\u7535\u5f71\uff0c\u753b\u9762\u4e2d\u4e00\u4e2a\u5c38\u4f53\u5728\u5f00\u9614\u7684\u7530\u91ce\u4e0a\u884c\u8d70\u3002"} +{"id": "3004492", "video_name": "77c084a2-8ac5-5e49-9d04-20e7857cb717", "text": "\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u4e16\u754c\u7684\u80cc\u666f\u4e0b\uff0c\u4e0e\u706b\u5f71\u5fcd\u8005\u4e00\u8d77\u7b11\u3002"} +{"id": "6004913", "video_name": "46c4eb40-8015-533c-8be0-21874759dfbe", "text": "\u8ba9\u91d1\u725b\u5ea7\u7684\u817f\u548c\u5934\u90e8\u52a8\u6001\u79fb\u52a8\u3002"} +{"id": "0005708", "video_name": "1fdcc939-d90a-56b5-9059-5e643fd4a947", "text": "\u4e00\u4e2a\u4e2d\u666f\u7684\u89c6\u9891\uff0c\u62cd\u6444\u7684\u662f\u4e00\u4e2a\u8001\u4eba\u5750\u5728\u5c0f\u6728\u5c4b\u91cc\u7684\u76ae\u6905\u4e0a\uff0c\u80cc\u666f\u662f\u58c1\u7089\u3002"} +{"id": "1005435", "video_name": "63e412e8-ce6f-55ae-b9de-a946333e1890", "text": "\u4e00\u4e2a\u56db\u5341\u591a\u5c81\u7684\u5f8b\u5e08\uff0c\u957f\u76f8\u7c7b\u4f3c\u4e8eLjubomir Bandovic\uff0c\u65f6\u5c1a\u7684\u5916\u8868\uff0c\u5728\u8d1d\u5c14\u683c\u83b1\u5fb7\u7684\u4e2d\u5fc3\u5bfb\u627e\u4ed6\u6700\u65b0"} +{"id": "3003454", "video_name": "c3d92845-2aa2-5cab-9f4d-d30a01b8b424", "text": "\u8361\u79cb\u5343\u7684\u4eba\uff0c\u7ff1\u7fd4\u5728\u6e38\u4e50\u573a\u4e0a\u7a7a\uff0c\u5c0f\u6751\u5e84\u7f29\u6210\u4e86\u5fae\u5c0f\u7684\u623f\u5c4b\u548c\u4e94\u989c\u516d\u8272\u7684\u5e10"} +{"id": "8003631", "video_name": "03810cc5-b948-585f-96c8-04449fcf9d58", "text": "\u4e00\u4e2a\u7a7f\u9ec4\u8272\u8fde\u8863\u88d9\u7684\u5973\u5b69\u8d70\u8fdb\u4e86\u4e00\u5ea7\u9b3c\u5bab\u3002"} +{"id": "0005059", "video_name": "13ee57e1-8414-5f9e-9220-2f8e175fac1b", "text": "\u90a3\u662f\u4e00\u4e2a\u548c\u5f80\u5e38\u4e00\u6837\u7684\u665a\u4e0a\uff0c\u4e00\u4f4d\u5438\u8840\u9b3c\u5728\u4ed6\u7684\u68fa\u6750\u6df1\u5904\u611f\u53d7\u5230\u529b\u91cf\u7684\u590d\u82cf\u3002\u4ed6\u7684\u611f\u5b98"} +{"id": "3006194", "video_name": "e58ddb65-6929-5957-80a8-d77aa31a478c", "text": "\u5de8\u5927\u53d1\u5149\u7b26\u6587\u5728\u884c\u661f\u4e0a\u3002"} +{"id": "1005605", "video_name": "671448c0-c9b2-5079-81a9-69f2b523e780", "text": "\u4e00\u5206\u5b50\u7898\u548c\u4e00\u5206\u5b50\u786b\u4ee3\u786b\u9178\u94a0\u5728\u7a7a\u95f4\u4e2d\u8fd0\u52a8\u3001\u98de\u884c\u3001\u60ac\u6d6e\u3001\u6df7\u5408\uff0c\u662f\u9ad8\u8d28\u91cf\u7684\u5316\u5b66\u53cd\u5e94\u3002"} +{"id": "4004537", "video_name": "9d308156-5da2-586e-882e-fc6d3b2a4b47", "text": "Scrudd Mack Duck \u6b63\u5728\u5f00\u7740\u4e00\u8f86\u5b9d\u9a6c\u3002"} +{"id": "3003615", "video_name": "e4a1906a-5754-5dfa-b46c-0b4770d42339", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5149\u660e\u548c\u5947\u5e7b\u7684\u68a6\u5883\u4e16\u754c\u4e2d\u5bfb\u627e\uff0c\u5979\u4e00\u6b65\u4e00\u6b65\u5730\u524d\u8fdb\u3002"} +{"id": "7003657", "video_name": "ce363f67-993b-5dfb-8abb-6f7847f0e7de", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u516c\u4e3b\u5728\u5e8a\u4e0a\u7761\u89c9\u3002\u5979\u6709\u7740\u957f\u957f\u7684\u7c89\u8272\u5934\u53d1\uff0c\u5e8a\u5468\u56f4\u6709\u5f88\u591a\u8349\u548c\u82b1\u3002"} +{"id": "1003843", "video_name": "46d79775-29cf-5700-b7ac-4fccd9b3c03a", "text": "\u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u626e\u6f14\u8d85\u4eba\u7684DVD\u622a\u56fe\u3002"} +{"id": "3006854", "video_name": "00495340-7c7b-52a2-8f29-b32e4e71665e", "text": "\u6e56\u9762\u6cdb\u8d77\u84dd\u8272\u6c34\u6ce2\u3002"} +{"id": "3005450", "video_name": "5a62a68b-60d2-5c8d-9e03-23c05b431e8b", "text": "\u6709\u4e9b\u8fd0\u52a8\u5458\u6b63\u5728\u9a91\u516c\u8def\u81ea\u884c\u8f66\u6bd4\u8d5b\u3002"} +{"id": "6002055", "video_name": "8752ccd9-8445-5686-b0d9-194134b6a56f", "text": "\u5f53\u5979\u63e1\u4f4f\u6c34\u6676\u65f6\uff0c\u5979\u611f\u5230\u4e00\u80a1\u5f3a\u5927\u7684\u9b54\u529b\u6d8c\u5165\u5979\u7684\u8840\u6db2\u4e2d\u3002"} +{"id": "8002209", "video_name": "84a97ce8-52a1-530a-9adf-abaa8ded9f36", "text": "\u4e00\u4e2a\u7a7f\u7740\u83ab\u897f\u5e72\u65cf\u670d\u88c5\u7684\u82f1\u4fca\u83ab\u897f\u5e72\u65cf\u7537\u5b50\u5750\u5728\u5730\u4e0a\u6f14\u594f\u4e50\u5668\uff0c\u8349\u5730\u3001\u9633\u5149\u548c\u5f71\u89c6"} +{"id": "0003638", "video_name": "40da2b48-c12f-5c97-bb79-f95280905ea9", "text": "\u4e09\u4e2a\u7a7f\u7740\u84dd\u8272\u9632\u62a4\u670d\u7684\u7537\u4eba"} +{"id": "0005658", "video_name": "1ed30821-d13a-5d06-9609-89783cbc7ff9", "text": "\u7537\u5b69\uff0c\u5973\u5b69\uff0c\u68ee\u6797\uff0c\u82b1\uff0c\u4e4c\u9e26\uff0c\u8349\uff0c\u84dd\u5929"} +{"id": "2006304", "video_name": "6f798bab-a4d2-5225-85e2-602c9b3b7eaa", "text": "\u516c\u4e3b\u8d70\u8fc7\u73ab\u7470\u82b1\u56ed\uff0c\u5230\u5904\u90fd\u662f\u6500\u722c\u7684\u73ab\u7470\u82b1\uff0c\u767d\u5929\uff0c\u516c\u4e3b\u5fae\u7b11\u7740\u3002"} +{"id": "0003759", "video_name": "42e63dda-28c0-5a93-b02a-aa22504d8ca2", "text": "\u5965\u5df4\u9a6c\u5728\u767d\u5bab\u5403\u4e2d\u56fd\u7684\u70ed\u5e72\u9762\u3002"} +{"id": "8003645", "video_name": "b8e299e4-a5cd-5922-8e69-ae16c63e85cc", "text": "\u9508\u7070\u8272\u7684\u5ca9\u77f3\u5d0e\u5c96\u666f\u89c2\uff0c\u91c7\u7528\u9ed1\u8272\u98ce\u683c\u3002"} +{"id": "8002438", "video_name": "3ecf07e4-6397-57e8-938c-9143d9141d27", "text": "\u72ee\u5b50\u7528\u722a\u5b50\u6293\u4f4f\u8001\u9f20\u3002"} +{"id": "3004423", "video_name": "8677d600-a038-58bb-aebf-47c23d2d8eb4", "text": "\u5e74\u8f7b\u5973\u5b69\uff0c\u6d77\u76d7\uff0c\u62ff\u7740\u6307\u5357\u9488\uff0c\u98ce\u3002"} +{"id": "4003516", "video_name": "63478f63-5f7c-507d-adba-b303bc1ca4ed", "text": "\u533f\u540d\u9a7e\u9a76\u6469\u6258\u8f66\u3002\u9ad8\u6e05\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "4004213", "video_name": "fbb418e6-bf17-585b-acc2-8106aa5aac6f", "text": "\u9a6c\u91cc\u5965\u7528\u5149\u5251\u6253\u9f99\u3002"} +{"id": "4002932", "video_name": "76a96891-6ad8-562c-b9d3-76d9aa7a55cb", "text": "\u7ea2\u53d1\u6d77\u76d7\u5973\u4eba\u6ce8\u89c6\u7740\u6d77\u6d0b\u3002\u5979\u7a7f\u7740\u76ae\u7532\uff0c\u5438\u7740\u9999\u70df\u3002\u8d85\u5199\u5b9e\u3002\u76f8\u673a\u653e\u5927\u5230\u8138\u90e8"} +{"id": "3006897", "video_name": "9abc9a02-57f1-5694-8b7c-684421652004", "text": "\u6c64\u59c6\u00b7\u5e0c\u5fb7\u52d2\u65af\u987f\u626e\u6f14\u7684\u6d1b\u57fa\u548c\u514b\u91cc\u65af\u00b7\u6d77\u59c6\u65af\u6c83\u65af\u626e\u6f14\u7684\u96f7\u795e\u7a7f"} +{"id": "3003767", "video_name": "f7fb8ca7-9c05-564f-acd9-806a448c3188", "text": "\u9e1f\u513f\u722c\u4e0a\u65f6\u949f\u8fea\u58eb\u5c3c\u827a\u672f\u3002"} +{"id": "3004565", "video_name": "d1d3c351-99bb-5259-beba-2c606fe283d4", "text": "\u5730\u7406\u548c\u793e\u4f1a\u89c2\u70b9\uff0c\u52a8\u753b\u98ce\u683c"} +{"id": "2005276", "video_name": "fbeed3a7-99e5-524b-8836-f7ed0e2e2e85", "text": "\u7537\u4eba\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u4e0e\u5927\u811a\u602a\u640f\u6597\u3002"} +{"id": "2003550", "video_name": "31749010-3ecc-5a58-994e-6a07644a5dbd", "text": "\u5c06\u955c\u5934\u653e\u5927\u5230\u7537\u6027\u5634\u5507\u62fc\u51fa\u5411\u624b\u673a\u6253\u62db\u547c\u7684\u201cHELLO\u201d\u3002"} +{"id": "4002362", "video_name": "4043b402-7eb6-5e8e-b1ef-80829c7b16f4", "text": "\u516c\u56ed\u91cc\u7684\u72d7\u3002\u4fe1\u606f\uff1aTappo\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006579", "video_name": "3242c01a-9849-58c1-b4e3-d0da1dd93373", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u5546\u4e1a\u9ad8\u7ba1\u4eec\u8bd5\u56fe\u7a7f\u8d8a\u4fc4\u7f57\u65af\u7684\u8ff7\u5bab\u3002"} +{"id": "7003709", "video_name": "8a6148d7-bbf8-50f5-aa64-101b29f4bbf4", "text": "\u76ae\u514b\u65af\u7535\u5f71\uff1a\u5e74\u8f7b\u7537\u5b69\u5728Berghain\uff08\u67cf\u6797\u591c\u5e97\uff09\u805a\u4f1a\u3002"} +{"id": "1006815", "video_name": "7cb1455b-dac5-5f29-a8a8-a8d81c7c9b85", "text": "\u6708\u795e\uff0c\u9ad8\u6e05\uff0c\u8d85\u903c\u771f\uff0c4K\uff0c\u4f7f\u7528\u4f73\u80fd EOS R6\u62cd\u6444\u3002"} +{"id": "5001385", "video_name": "6966ce81-e681-5824-89bf-9f138996ad5a", "text": "\u4e00\u5f00\u59cb\u7684\u753b\u9762\uff1a\u9a6c\u54c8\u62c9\u65bd\u7279\u62c9\u90a6\u7684\u5b81\u9759\u98ce\u666f\uff0c\u80cc\u666f\u662f\u65e5\u51fa\u3002"} +{"id": "4003420", "video_name": "82b90dc3-edeb-59d7-8fdd-eabfc308e0f8", "text": "\u63d0\u793a\uff1a\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u72fc\u4eba\u8f6c\u53d8\uff0c\u8be1\u5f02\u3001\u950b\u5229\u3001\u9ed1\u6697\u5e7b\u60f3"} +{"id": "2007705", "video_name": "deb0bff9-d530-513a-b4be-0de39467b50a", "text": "\u4e00\u6bb5\u6765\u81ea\u624e\u62c9\u5766\u00b7\u6613\u535c\u62c9\u6b23\u83ab\u7ef4\u5947\u7684\u89c6\u9891\uff0c\u5e26\u7740\u7b11\u8138\u3002"} +{"id": "3005371", "video_name": "5df43a14-58d5-5463-bec8-98a3fd3adb0e", "text": "\u4e00\u4e2a\u5e26\u6709\u7a7a\u767dPNG\u7684\u4f1a\u8bf4\u8bdd\u7684\u5934\u50cfGIF\uff0c\u7528\u4e8e\u73a9\u6e38\u620f\u3002"} +{"id": "2003548", "video_name": "c85d9f7e-791f-5a7a-8bb8-7553f6d774b3", "text": "\u89c6\u9891\u4ee5\u683c\u9675\u5170\u5c9b\u7684\u753b\u9762\u4f5c\u4e3a\u7ed3\u5c3e\uff0c\u8fd9\u662f\u4e16\u754c\u4e0a\u6700\u5927\u7684\u5c9b\u5c7f\u4e4b\u4e00\uff0c\u4f34\u968f\u7740\u5f3a\u8c03\u5176\u5927\u90e8\u5206\u9886\u571f"} +{"id": "4003489", "video_name": "a0573375-cd0c-532e-a474-5031be373923", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u72d7\u5728\u9c7c\u7f38\u65c1\u51c6\u5907\u5206\u4eab\u6d6a\u6f2b\u7684\u665a\u9910\uff08\u9c7c\uff09\u3002"} +{"id": "1003852", "video_name": "4701da89-4320-5d8c-8f92-f99eda9b7fca", "text": "\u6c14\u5019\u5267\u53d8\uff0c\u7269\u79cd\u706d\u7edd\uff0c\u800c\u76f2\u76ee\u6d88\u8d39\u4ecd\u5728\u7ee7\u7eed\u3002"} +{"id": "3006272", "video_name": "08f3b787-1733-5cd6-918c-3f16eff887e4", "text": "\u5b87\u822a\u5458\u5728\u5927\u8349\u539f\u4e0a\u4f7f\u7528\u6551\u63f4\u8231\u7740\u9646\u3002"} +{"id": "2003731", "video_name": "b9b60c5a-4065-56bd-9201-02537a249312", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u9ec4\u77f3\u56fd\u5bb6\u516c\u56ed\u906d\u5230\u91ce\u725b\u963b\u6321\uff0c\u573a\u666f\u903c\u771f\u3002"} +{"id": "8001919", "video_name": "cdb76869-b838-543e-b234-2df18665707a", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u5bb6\u4eba\u5728\u63a5\u6536\u592a\u9633\u80fd\u7684\u540c\u65f6\u4f7f\u7528\u5927\u91cf\u5bb6\u7535\u7684\u60c5\u666f\u3002"} +{"id": "5001479", "video_name": "c563b086-faa5-52cf-be14-fc3b454a53d5", "text": "\u7a7f\u7740\u7ea2\u8272\u897f\u88c5\u7684\u7537\u5b50\u8df3\u697c\u3002"} +{"id": "1006510", "video_name": "773252cf-49e4-5791-a701-01185e13891a", "text": "\u739b\u96c5\u796d\u53f8\u5411\u739b\u96c5\u56fd\u738b\u548c\u738b\u540e\u732e\u4e0a\u796d\u54c1\u3002"} +{"id": "4002895", "video_name": "c89f6924-ee57-545f-b94d-88543fc03f95", "text": "\u8352\u51c9\u672a\u6765\u7684\u666f\u8c61\uff0c\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\u548c\u95ea\u70c1\u7684\u9713\u8679\u706f\u5149\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003680", "video_name": "9a2944c9-b4ed-56aa-bdfb-122657c15028", "text": "\u56db\u80a2\u8c61\u7684\u884c\u8d70\u5faa\u73af"} +{"id": "6003940", "video_name": "ae26fdd9-47f2-5022-838c-805df141cba5", "text": "\u970d\u683c\u6c83\u8328\uff0c\u5b66\u751f\u98de\u884c\uff0c\u795e\u79d8\u52a8\u7269\u3002\u4fe1\u606f\uff1a\u8bf7\u4f7f\u7528 BAUHAUS \u5b57\u4f53\u3002"} +{"id": "2003683", "video_name": "53380737-9f7d-57c8-9285-2ea10e05c4dd", "text": "\u63cf\u8ff0\u4e00\u5bf9\u592b\u5987\u8c28\u614e\u5730\u5411\u7a97\u5916\u671b\u53bb\uff0c\u56e0\u4e3a\u542c\u5230\u4e86\u5947\u602a\u7684\u58f0\u97f3\uff0c\u5374\u770b\u5230\u4e86\u4e00\u4e2a\u9b3c\u9b42\u822c\u7684"} +{"id": "4003602", "video_name": "591cb15a-25be-51a7-8cef-e8c8798b6054", "text": "\u673a\u5668\u4eba\u5973\u5b69\u7684\u8096\u50cf\uff0c\u5de8\u5927\u7684\u5634\u5507\uff0c\u900f\u660e\u7684\u8116\u5b50\uff0c\u74f7\u8d28\u7684\u8138\u548c\u5934\u90e8\uff0c\u673a\u5668\u96f6\u4ef6\uff0c"} +{"id": "8001933", "video_name": "513cbc27-4c5c-5809-97f7-3b9945aad11e", "text": "\u54c8\u9a6c\u6258\u00b7\u5409\u53d8\u8eab\u4e3a\u5927\u5e08\u9f20\uff08\u8001\u9f20\u7248\uff09\uff0c\u4ee5\u7ed8\u753b\u52a8\u753b\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "0006943", "video_name": "35a39876-616e-508c-b394-c9acbd4d3544", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u770b\u662f\u516c\u8f6c\u7684\u3002"} +{"id": "0006632", "video_name": "2ff2acc0-2cf4-5dae-805f-85c7d78a42d4", "text": "\u5411\u5927\u5bb6\u95ee\u597d\u5e76\u6253\u62db\u547c\u3002"} +{"id": "6004354", "video_name": "28197d29-220e-5222-b482-057057607bea", "text": "\u8bb8\u591a\u6c34\u6bcd\u5728\u6d77\u5e95\u6e38\u52a8\u3002"} +{"id": "5001665", "video_name": "e75fe3ef-b984-5d7b-9e28-2bd13ac28c0f", "text": "\u9713\u8679\u72d7\u4eba\u98de\u8d8a\u661f\u9645\u3002"} +{"id": "2003711", "video_name": "e14558af-dc21-5af4-a896-8e4e1ca279d7", "text": "\u4e00\u540d\u4f7f\u7528\u7b2c\u4e00\u4eba\u79f0\u6444\u50cf\u673a\u7684\u7537\u5b50\uff0c\u6cf0\u5766\u5c3c\u514b\u53f7\u770b\u8d77\u6765\u6b63\u5728\u6c89\u6ca1\uff0c18\u79d2\u7684\u7247\u6bb5\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u9ad8\u5ea6\u8fd8\u539f\u771f"} +{"id": "5001591", "video_name": "ec824aa6-b80d-529d-9a81-38ad400e9fe7", "text": "\u90a3\u4e2a\u5f00\u5fc3\u7684\u5c0f\u5973\u5b69\u7a7f\u7740\u9c9c\u8273\u7684\u84dd\u8272\u88d9\u5b50\u3002"} +{"id": "2005270", "video_name": "beb066cb-dbab-5020-a7c0-b2efa0257bcd", "text": "\u88ab\u635f\u574f\u7684\u5916\u661f\u98de\u8239\u5361\u5728\u6cbc\u6cfd\u5730\u91cc\uff0c\u591c\u665a\u3002"} +{"id": "0005764", "video_name": "20e1a266-606b-59d2-9b38-fcd7a9650a73", "text": "\u4e00\u4e9b\u7cd6\u679c\u5305\u88c5\u6563\u843d\u5728\u4e00\u5f20\u706f\u5149\u684c\u4e0a\uff0c\u56db\u4e2a\u810f\u767d\u5496\u5561\u676f\uff0c\u4e24\u4e2a\u7a7a\u7684\u8336\u6258\uff0c\u903c\u771f"} +{"id": "3005215", "video_name": "71f07e92-80c4-5399-8305-a3e4081d65e0", "text": "\u9ed1\u8272\u5170\u535a\u57fa\u5c3c\u53d8\u5f62\u91d1\u521a\u5728\u4e1c\u4eac\u4e0e\u91d1\u521a\u5927\u6218\u3002"} +{"id": "7003774", "video_name": "e2df002f-e80e-511a-87ef-35e3b797b9de", "text": "\u4ed6\u8138\u4e0a\u5fae\u5fae\u6709\u4e9b\u52a8\u4f5c\uff0c\u7f13\u6162\u5730\u5411\u53f3\u8f6c\u4e86\u4e00\u4e0b\uff0c\u9762\u65e0\u8868\u60c5\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "6002656", "video_name": "585f9c87-13be-55b9-8066-d93834a5fbcc", "text": "\u4e00\u4e2a\u5458\u5de5\u548c\u4e00\u4e2a\u7ecf\u7406\u5728\u529e\u516c\u5ba4\u91cc\u8c08\u8bdd\uff0c\u65f6\u95f4\u662f9:16\u3002"} +{"id": "6002491", "video_name": "4ae20e6e-e57e-5903-a969-f8473f8ca5dd", "text": "\u611f\u8c22\u4f60\u7684\u52a0\u5165\uff0c\u4e0b\u6b21\u518d\u89c1\uff01"} +{"id": "2003759", "video_name": "f8fcaa09-ad7b-5924-a978-a6333379287f", "text": "\u4e00\u591c\u6697\u6708\uff0c\u4e00\u652f\u7bad\u5c04\u5411\u6211\uff0c\u5e26\u7740\u5149\u8292\u3002"} +{"id": "2005612", "video_name": "c2727f5c-e201-5f45-9545-9d8d6b12cf90", "text": "\u5efa\u4e8e\u56fd\u738b\u548c\u738b\u516c\u65f6\u4ee3\uff0c\u636e\u4f20\u6709\u8d85\u81ea\u7136\u73b0\u8c61\u800c\u65e0\u4eba\u5c45\u4f4f\u7684\u95f9\u9b3c\u54c8\u7ef4\u91cc\u4ecb\u7ecd\u3002"} +{"id": "6003624", "video_name": "8147c64e-a144-5df6-9d9c-3ac89b19e449", "text": "\u751f\u6210\u4e00\u6bb5\u5173\u4e8e\u732b\u5934\u9e70\u548c\u6cb3\u9a6c\u7684\u89c6\u9891\u3002"} +{"id": "2005259", "video_name": "70554171-765b-5e93-a3fe-7155a74b75c5", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u7684\u8302\u5bc6\u68ee\u6797\u4e2d\uff0c\u7a7a\u6c14\u5e73\u9759\uff0c\u6811\u679d\u6447\u66f3\u3002\u6444\u50cf\u673a\u5e94\u8be5\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "0005774", "video_name": "2102958c-ea7d-54df-a6c8-d14198a3b738", "text": "\u4e00\u4e2a10\u5c81\u7684\u539f\u4f4f\u6c11\u5b69\u5b50\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\u5728\u957f\u8349\u4e2d\u5954\u8dd1\u3002"} +{"id": "3004258", "video_name": "81ec89a9-75c8-5099-ab27-9beeea93ef8a", "text": "\u8fd9\u5ea7\u8c6a\u5b85\u662f\u53e6\u4e00\u5ea7\u5b8f\u4f1f\u800c\u5962\u534e\u7684\u5efa\u7b51\uff0c\u5df2\u7ecf\u5e9f\u5f03\u4e86\u51e0\u5341\u5e74\uff0c\u7b3c\u7f69\u5728\u5f53\u5730\u4f20\u8bf4\u4e2d\u955c"} +{"id": "7004399", "video_name": "2665ce6d-595b-5b1b-ad3d-1c96357dc7bb", "text": "\u5927\u8c61\u7728\u773c\uff0c\u8ba9\u4e1b\u6797\u50cf\u88ab\u98ce\u5439\u52a8\u4e00\u6837\u5728\u80cc\u666f\u4e2d\u79fb\u52a8\u3002"} +{"id": "3005268", "video_name": "14cdf411-6202-5d8e-a6e1-b46c22584fdb", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u4e09\u7ef4\u5361\u901a\u86c7\u5728\u68ee\u6797\u91cc\u79fb\u52a8\u3002"} +{"id": "8002557", "video_name": "fd666228-62d5-5f75-9385-52aa80adcbf6", "text": "\u4e00\u4e2a\u4eba\u7528\u51b0\u96d5\u523b\u4e86\u4e00\u4ef6\u96d5\u5851\u3002"} +{"id": "4003002", "video_name": "60a07b6b-6ea5-5253-8d59-b595e48edc42", "text": "\u7528\u7cbe\u7f8e\u7684\u4e2d\u56fd\u7eb9\u6837\u548c\u88c5\u9970\u63cf\u7ed8\u4e00\u53ea\u58ee\u4e3d\u7684\u7eff\u8272\u9f99\uff0c\u8c61\u5f812024\u5e74\u7684\u9f99\u5e74\u3002"} +{"id": "2005722", "video_name": "4b04190b-8d6a-5e06-9c8b-276c9ef14892", "text": "\u5973\u58eb\u6b63\u5728\u6d17\u8863\u673a\u91cc\u6d17\u8863\u670d\u3002"} +{"id": "1006476", "video_name": "768394d2-64ba-547b-b5f1-a68ba01c81cc", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u5728\u6e38\u6cf3\u6c60\u91cc\u6e38\u6cf3\u3002"} +{"id": "2007013", "video_name": "f2b570cf-6ae8-5123-be56-6c3d87205388", "text": "\u8bfa\u6bd4\u5854\u548c\u54c6\u5566A\u68a6\u624b\u6301\u9c7c\u7aff\u5782\u9493\uff0c\u753b\u8d28\u4f18\u826f\u3002"} +{"id": "4004975", "video_name": "cdd93e2c-83df-5b79-8e5d-2297ba45cfc9", "text": "\u963f\u5fb7\u5c14\u3001\u827e\u54c8\u8fc8\u5fb7\u548c\u8428\u9ed8\u8d70\u8fc7\u4e00\u6761\u7e41\u534e\u7684\u57ce\u5e02\u8857\u9053\uff0c\u89c2\u5bdf\u5230\u6ee1\u5730\u7684\u5783\u573e\u3002"} +{"id": "6002760", "video_name": "09b80a95-2587-5f96-8cf2-bb0563cc5d83", "text": "\u4e00\u540d\u957f\u7740\u91d1\u8272\u957f\u53d1\u7684\u5973\u5b69\u4f38\u51fa\u624b\u81c2\uff0c\u7b11\u7740\u5728\u4e00\u8f86\u7a7f\u8d8a\u5c71\u8109\u96a7\u9053\u7684\u706b\u8f66\u7a97\u6237\u5916\u62db\u624b\u3002"} +{"id": "1003433", "video_name": "3f6989dd-ca5b-52bd-8de3-0bb7313581e3", "text": "\u4e00\u4e2a\u4eba\u8d70\u51fa\u53bb\u89c1\u8bc6\u5e7f\u9614\u7684\u4e16\u754c\u3002"} +{"id": "4002643", "video_name": "93587da0-d09c-5c90-ab8c-d3ec5a9a7cd2", "text": "\u4e00\u6240\u7740\u706b\u7684\u623f\u5b50\u548c\u6811\u6728\uff0c\u4fe1\u606f\uff1aGabriel\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006494", "video_name": "d253def3-146b-5033-8c6b-177f9b1b410e", "text": "\u5728\u4e4c\u514b\u5170\u65d7\u5e1c\u548c\u6e38\u620f\u7684\u80cc\u666f\u4e0b\uff0c\u770b\u7740\u6444\u50cf\u673a\u5e76\u53d1\u8868\u8bb2\u8bdd\u3002"} +{"id": "6004754", "video_name": "d7b40668-6b47-53cb-9eff-85db9f5896dd", "text": "\u521b\u4f5c\u4e00\u6bb5\u53ea\u6709\u4e00\u53ea\u673a\u7ffc\u7684P47\u96f7\u7535\u6218\u6597\u673a\u98de\u884c\u7684\u52a8\u753b\u3002"} +{"id": "8003245", "video_name": "d7b13d77-bc15-50c8-9cb5-55639d0c6151", "text": "3\u8258\u8239\uff1b\u8d64\u58c1\u4e4b\u6218\uff1b\u7ea2\u8272\u80cc\u666f"} +{"id": "0005757", "video_name": "20ae3e05-dc61-51bb-b225-8b077ddaffc0", "text": "\u6d77\u6d0b\u548c\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u661f\u661f\u5728\u95ea\u8000\u3002"} +{"id": "2007878", "video_name": "5b54b458-f9cf-5fb1-b05b-11ca90823eb9", "text": "\u5efa\u7b51\u5e08\u5728\u529e\u516c\u684c\u4e0a\u7528\u94a2\u7b14\u753b\u5f17\u5170\u514b\u00b7\u52b3\u57c3\u5fb7\u00b7\u8d56\u7279\u7684\u5efa\u7b51\uff0c\u900f\u8fc7\u7a97\u6237\u770b\u7740\u5929"} +{"id": "5001226", "video_name": "d79e213f-4c5a-5a47-9287-9f8173404930", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4ed6\u7684\u5988\u5988\u5728\u4e00\u4e2a\u8272\u5f69\u7f24\u7eb7\u7684\u82b1\u56ed\u91cc\uff0c\u8868\u60c5\u5e78\u798f\u3002"} +{"id": "8002038", "video_name": "11f5742d-1627-54ab-99cb-6a99b482e216", "text": "\u4e00\u540d\u50cf\u8d5b\u5c14\u4e54\u00b7\u83b1\u6602(Sergio Leone)\u7535\u5f71\u91cc\u7684\u897f\u90e8\u67aa\u624b\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "8003019", "video_name": "2465ba98-c698-5fd9-a3ed-af31c3554abe", "text": "\u51e0\u4e2a\u5b66\u751f\u624b\u7275\u624b\u5730\u5728\u6821\u56ed\u8349\u576a\u4e0a\u6563\u6b65\u3002"} +{"id": "4003771", "video_name": "0f9e08d4-20e2-5a1a-b34a-fe62446a0e36", "text": "\u89c6\u9891\u4e2d\u7684\u52a8\u6f2b\u5973\u5b69\u5728\u5927\u57ce\u5e02\u7684\u5c4b\u9876\u80cc\u666f\u4e0b\u8df3\u821e\uff0c\u8fdc\u5904\u6709\u96fe\u6c14\uff0c\u975e\u5e38\u903c\u771f\uff0c\u753b\u8d28\u9ad8\u6e05\u3002"} +{"id": "2003484", "video_name": "6b57948f-5c0b-514a-afa1-5cb434a116e8", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684Disha Patani\u5728\u65f6\u4ee3\u5e7f\u573a\u6563\u6b65\uff0c\u7a7f\u7740\u9ed1\u8272\u8fde\u8863\u88d9\uff0c\u591c\u665a\u3002"} +{"id": "6004059", "video_name": "83688194-8b10-5ca7-a8bc-083d790115c7", "text": "\u5e74\u8f7b\u533b\u751f\u5728\u57ce\u5e02\u516c\u56ed\u5e2e\u52a9\u9000\u4f11\u4eba\u5458\u3002"} +{"id": "7004664", "video_name": "c2d15af4-9e70-57fa-b096-bf927bfeabcb", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u5728\u684c\u5b50\u4e0a\u653e\u7740\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u89c2\u770bYouTube\u7684\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "0004377", "video_name": "07fbd176-5470-5545-8bcc-e38a13c509c2", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u6559\u5e08\u4e3a\u5979\u7684\u5b66\u751f\u4eec\u6559\u5b66\u3002"} +{"id": "7004744", "video_name": "873f5431-301a-507e-9609-7753b7a81f26", "text": "\u4e24\u961f\u5728\u6253\u7bee\u7403\uff0c\u4e00\u4e2a\u961f\u5458\u5c06\u7403\u6295\u8fdb\u7bee\u7b50\u3002"} +{"id": "6004940", "video_name": "0dd282b4-658d-58dd-a1fc-f34855507b1e", "text": "\u4e00\u4e2a\u6709\u5173\u5728\u9713\u8679\u57ce\u5e02\u91cc\u4e0e\u4ed6\u7684\u65e0\u4eba\u673a\u4e00\u8d77\u884c\u8d70\u7684\u6444\u5f71\u5e08\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "5001344", "video_name": "acd98050-1414-569c-abaf-35b4146b3ab8", "text": "\u4e00\u53ea\u9e2d\u5b50\u5750\u5728\u4e00\u4e2a\u91d1\u5c5e\u74e6\u529e\u516c\u5ba4\u91cc\u3002"} +{"id": "0006147", "video_name": "274e5c7f-d46f-5f71-b4e8-3c1cb75c3b8e", "text": "\u521b\u4f5c\u4e00\u4e2a\u6765\u81ea\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u6559\u5ba4\u5185\u4e00\u7fa4\u5b66\u751f\u7684\u52a8\u753b\u3002"} +{"id": "4002112", "video_name": "8747d73a-f2c8-522b-b55c-a9ac8f9540a2", "text": "\u4e00\u53ea\u5c0f\u8c61\u5728\u5954\u8dd1\uff0c\u52a8\u753b\u89c6\u98918k\u3002"} +{"id": "0005953", "video_name": "23db57a7-9acb-5271-a39a-bb96469ebf72", "text": "\u8ba9\u80cc\u666f\u4e2d\u7684\u9e1f\u513f\u98de\u8d77\u6765\u3002"} +{"id": "2005010", "video_name": "130f16b1-6832-5e84-83d0-4b73ce490bd4", "text": "\u65f6\u95f4\u7684\u5c3d\u5934\uff0c\u6709\u4e00\u7247\u88ab\u96ea\u8986\u76d6\u7684\u68ee\u6797\uff0c\u679d\u5934\u4e0a\u6302\u7740\u4e4c\u9e26\u3002"} +{"id": "8002965", "video_name": "e5d5bbe8-413f-58d1-985a-94f0647fbed5", "text": "\u4e00\u4e2a\u751f\u6d3b\u5728\u8d5b\u535a\u670b\u514b\u4e16\u754c\u91cc\u7684\u5973\u5b69\u5728\u5f15\u64ce\u76d6\u4e0b\u4fee\u7406\u6c7d\u8f66\u3002"} +{"id": "1003602", "video_name": "426bf51d-39e7-5c5f-9da6-f1a57462127c", "text": "\u4e7e\u71e5\u7684\u9678\u5730\u4e0a\u5230\u8655\u90fd\u662f\u5c71\u8108\u3001\u5766\u514b\u548c\u7206\u70b8\u8072\uff0c\u58eb\u5175\u5011\u7d1b\u7d1b\u5012\u4e0b\u3002"} +{"id": "2006170", "video_name": "2af88130-9ee7-5ef6-884f-a3604fdcdd60", "text": "\u4ed6\u4eec\u5206\u4eab\u4e86\u4ed6\u4eec\u7684\u68a6\u60f3\u548c\u70ed\u60c5\u3002Alex\u8c08\u5230\u4e86\u4ed6\u7684\u827a\u672f\uff0cElla\u5206\u4eab\u4e86\u5979\u5bf9\u5496\u5561\u7684\u70ed\u7231\u548c\u5199"} +{"id": "1005211", "video_name": "5ff6b0ac-7e0b-5487-b51f-8b95c019a2dd", "text": "\u76ae\u5361\u4e18\u5728\u53ef\u7231\u7684\u5fc3\u4e2d\u98de\u8d8a\u4e16\u754c\u8ba1\u5212\u3002"} +{"id": "6003580", "video_name": "bc603f74-db80-5ece-8a19-543554b22f8a", "text": "\u53ef\u7231\u7684\u732b\u5bf9\u7740\u955c\u5934\u770b\u8d77\u6765\u5f88\u53ef\u7231\u3002"} +{"id": "2003108", "video_name": "bd943e71-7517-5036-89b9-7ba3d731b474", "text": "\u4e00\u4e2a\u53eb\u505a\u5973\u795eKluv\u7684\u638c\u6743\u5973\u738b\u9700\u8981\u4e00\u4e2a\u6807\u5fd7\uff0c\u6807\u5fd7\u4e2d\u5305\u542b\u7687\u51a0\u3001\u9ad8\u8ddf\u978b\u548c\u5979\u7684\u540d\u5b57\u3002\u8bf7\u5728\u900f\u660e"} +{"id": "6004846", "video_name": "3a52b54b-d968-52c3-9a38-538ad92a5ae3", "text": "\u5973\u4eba\u7ed9\u7537\u4eba\u4e00\u9897\u82f9\u679c\uff0c\u4f0a\u7538\u56ed\u3002"} +{"id": "4004484", "video_name": "bdfd0cdc-0090-57aa-9df4-47e4825368e3", "text": "\u7537\u4eba\u8fdb\u5165\u903c\u771f\u76848K\u7981\u5730\u5893\u7a74\uff0c\u65e0\u52a8\u753b\u3002"} +{"id": "6004299", "video_name": "a54bd690-e5d6-5c06-a573-b8df12697033", "text": "\u4e00\u8f86\u6c7d\u8f66\u6b63\u671d\u7740\u505c\u8f66\u573a\u7684\u8def\u969c\u9ad8\u901f\u9a76\u6765\uff0c\u753b\u9762\u5728\u7f29\u5c0f\u3002"} +{"id": "7004344", "video_name": "d2cc3b11-2344-59b0-9bc3-2b12f36a79e5", "text": "\u5979\u662f\u4e00\u4f4d\u52a8\u6f2b\u5973\u5b69\uff0c\u501f\u52a9\u5979\u7684\u5fc3\u7075\u529b\u91cf\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u8eab\u4e0a\u6563\u53d1\u7740\u7eff\u8272\u7684\u5149\u8292\u3002"} +{"id": "4002323", "video_name": "674e784c-e11b-5f92-9f9e-263fd5140fb9", "text": "\u52a8\u6f2b\u5973\u5b69\uff0c\u73a9\u4e50\u961f\uff0c\u73b0\u573a\u5f55\u97f3\u5ba4"} +{"id": "4002801", "video_name": "d9953fe0-cbaf-55d4-be0a-06d451b8e4a5", "text": "\u7cbe\u82f1\u793e\u4f1a\u88ab\u90a3\u4e2a\u62e5\u6709\u5168\u89c6\u773c\u7684\u91d1\u5b57\u5854\u50ac\u7720\u4e86\u3002"} +{"id": "5001066", "video_name": "632dd2cd-99b1-5001-b065-23cc8054e7b8", "text": "\u6cb9\u6c61\u6cc4\u6f0f\u5bfc\u81f4\u661f\u7403\u4e0a\u751f\u547d\u6b7b\u4ea1\u7684\u53cd\u4e4c\u6258\u90a62D\u52a8\u753b\u3002"} +{"id": "0004008", "video_name": "01804de2-5c07-57ab-96b7-6c6005b8738c", "text": "\u68ee\u6797\u4e2d\u7684\u96e8\uff0c\u5f71\u50cf\u4e0d\u52d5\uff0c\u53ea\u6709\u96e8\u6ef4\u7684\u6d41\u52d5\uff0c\u903c\u771f\uff0c8K\u9ad8\u6e05\u3002"} +{"id": "5001054", "video_name": "f27de5b4-37b3-51da-a1a6-4a44df00aadb", "text": "\u5728\u88ab\u9057\u5f03\u7684\u8857\u9053\u4e0a\u6f2b\u6e38\u7684\u5e7d\u7075\u6216\u9634\u5f71\u3002"} +{"id": "4003607", "video_name": "91f53d35-2b32-550b-b843-d4e6edfd05b2", "text": "\u4eba\u7fa4\u9f13\u638c\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2007237", "video_name": "581017d6-e1e7-5b99-8ce1-af565e95b149", "text": "\u5723\u8bde\u8001\u4eba\u5411\u4e00\u4e2a\u5c0f\u5b69\u6295\u63b7\u793c\u7269\u3002"} +{"id": "3006688", "video_name": "6d1b2fb5-7f2d-5b01-83a6-54aa8570110d", "text": "\u897f\u683c\u739b\u8d2d\u4e70\u9ed1\u68ee\u6797\u6587\u672cBumba\u3002"} +{"id": "6003021", "video_name": "dde00810-70e0-5798-861a-8f4ae456b083", "text": "\u4e00\u53ea\u732b\u8d70\u8fdb\u4e00\u4e2a\u73b0\u4ee3\u5316\u7684\u623f\u95f4\uff0c\u722c\u4e0a\u4e00\u628a\u7eff\u8272\u7684\u6905\u5b50\u3002"} +{"id": "3004217", "video_name": "101193a4-ed29-59b9-a3cf-93f3b76bbc96", "text": "\u5973\u5b69\u611f\u53d7\u5230\u81ea\u5df1\u7684\u529b\u91cf\uff0c\u628a\u81ea\u5df1\u89c6\u4e3a\u795e\u5947\u68ee\u6797\u7684\u5b88\u62a4\u8005\u3002"} +{"id": "2003293", "video_name": "4c45c9c4-1fe6-5ac8-9d62-32f9a4b1cfe0", "text": "\u4e00\u53ea\u7a7f\u7740\u5939\u514b\u7684\u732b\u6cbf\u7740\u4eba\u884c\u9053\u8d70\uff0c4K\uff0c60FPS\uff0c\u903c\u771f\u3002"} +{"id": "2004903", "video_name": "725f4f28-aa16-5679-a0ae-f0580010f5ad", "text": "\u9ed1\u8863\u670d\u7684\u4eba\u505c\u7559\u5728\u5c71\u4e0a\u3002"} +{"id": "1003295", "video_name": "3c9db1c8-599b-5e26-a2e4-c7a09deb14a9", "text": "\u76ae\u5361\u4e18\u5728\u62bd\u5927\u9ebb\u3002\u4fe1\u606f\uff1a\u563f\u3002"} +{"id": "4002569", "video_name": "32b558d8-8209-50c4-95cb-5b727543c80b", "text": "\u4e00\u5c0f\u5ea7\u55b7\u6cc9\u4e0e\u4e00\u5ea7\u5de8\u5927\u7684\u55b7\u6cc9\u3002"} +{"id": "1004159", "video_name": "4d0a6959-1e7f-5191-ae95-85c68d228007", "text": "\u4e00\u4e2a\u7537\u5b69\u73af\u987e\u56db\u5468\uff0c\u5929\u82b1\u677f\u4e0a\u7684\u8718\u86db\u7f51\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "0005010", "video_name": "132d2bc9-2d16-5f15-bb2a-5f544236ee6d", "text": "\u521b\u9020\u4e00\u4e2a\u8c61\u5f81\u793e\u4ea4\u5a92\u4f53\u4e0a\u4e89\u8bae\u6027\u5185\u5bb9\u6269\u5927\u8fc7\u7a0b\u7684\u5f62\u8c61\u3002"} +{"id": "5001737", "video_name": "e2021308-095f-5ea9-9a5c-231328214da6", "text": "\u5728\u4e00\u4e2a\u52a8\u6f2b\u7535\u5f71\u98ce\u683c\u4e0b\uff0c\u591a\u4f26\u591a\u591c\u665a\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u957f\u6905\u4e0a\u7684\u653e\u677e\u666f\u8c61\u3002"} +{"id": "6002765", "video_name": "0dffca47-e76f-545c-9cae-16a2a4a6a333", "text": "\u6240\u6709\u5458\u5de5\u90fd\u7a7f\u7740\u84dd\u8272\u7684\u886c\u886b\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u52a8\u753b\u8fd0\u52a84\u4e2ags18\u5e27\u6bcf\u79d224\u6b21\u7f29\u5c0f\u3002"} +{"id": "0003287", "video_name": "3ae99e96-11d6-5f19-b2d4-53eddef6b77b", "text": "\u7eb3\u7c73\u673a\u5668\u4eba\u4ece\u5929\u7a7a\u53d1\u52a8\u653b\u51fb\u3002"} +{"id": "1004502", "video_name": "536bcb7a-5b76-554b-baa3-021c1fe0c0db", "text": "\u5e26\u6709\u8bb8\u591a\u5f69\u8272\u5851\u6599\u90e8\u4ef6\u7684\u79fb\u52a8\u4f20\u9001\u5e26\u4e3a16:9\u3002"} +{"id": "1005579", "video_name": "66ad296d-3090-517a-b4f7-d0af7036219f", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u6280\u672f\u201c\u56db\u6b21\u5143\u7acb\u65b9\u4f53\u201d\u53ef\u4ee5\u6539\u53d8\u5f62\u72b6\u6765\u5c55\u793a\u865a\u62df\u73b0\u5b9e\u670d\u52a1\u3002"} +{"id": "2007486", "video_name": "9724aa98-2c90-5ba7-952b-f2b153c53e6d", "text": "\u6d77\u9f9f\u5728\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4e2d\u6f5c\u6c34\u3002"} +{"id": "3004014", "video_name": "845b3aa3-579a-5cc2-a859-10696a9dfd0e", "text": "\u9ad8\u89d2\u5ea6\u8fd1\u8ddd\u79bb\u80cc\u540e\u89c6\u89d2\uff0c\u5973\u5b69\u5728\u7a97\u524d\u8bfb\u4fe1\uff0c\u9633\u5149\u900f\u8fc7\u7a97\u6237\u5c04\u5165\uff0c\u5f62\u6210\u795e\u5149\uff0c\u660e\u6697\u4ea4\u9519\uff0c"} +{"id": "4004359", "video_name": "ac3e748f-1878-5714-841a-0b2a7081f499", "text": "\u9cc4\u9c7c\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u5929\u7a7a\u4e2d\u7ff1\u7fd4\uff0c8K\uff0c\u9ec4\u91d1\u65f6\u6bb5\u7684\u5149\u7ebf\u3002"} +{"id": "8003691", "video_name": "815110a8-33bd-512c-a86d-ff3365727bf0", "text": "\u4e00\u4e2a\u51b0\u68d2\u5728\u8857\u9053\u4e0a\u878d\u5316\u7684\u5bbd\u9ad8\u6bd4\u4e3a9:16\u3002\u51b0\u68d2\u7684\u68cd\u5b50\u7ad6\u5728\u8def\u4e0a\uff0c\u6b63\u5728\u878d\u5316\u5e76\u5f62\u6210\u6c34\u6d3c\u3002"} +{"id": "6004873", "video_name": "6d6850e7-373c-5d42-8a59-3917b15f0ee5", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u6c89\u8239\u865a\u62df\u65c5\u6e38\uff0c\u8d85\u903c\u771f\uff0c24\u5e27\u6bcf\u79d2\uff0c\u8d85\u9ad8\u6e05\u7ec6\u8282\uff0c\u53ef\u53d8\u7126\uff0c4K\u97f3\u4e50\u89c6\u9891"} +{"id": "6004263", "video_name": "e29c87db-b1c4-5cc3-9616-dbdc6ca7f79a", "text": "\u73b0\u4ee3\u804c\u4e1a\u7537\u5b50\u6b63\u5728\u68c0\u67e5\u56fe\u7247\u4e2d\u7684\u8fd9\u8f86\u73b0\u4ee3\u6c7d\u8f66\u3002"} +{"id": "1003591", "video_name": "42196276-74c8-58cf-9002-efff8e8ff2aa", "text": "\u89d2A\u662f\u4e00\u4f4d30\u5c81\u7684\u4e2d\u56fd\u5973\u6027\uff0c\u8d85\u91cd\uff0c\u5c31\u8bfb\u4e8e\u54c8\u4f5b\u5927\u5b66\u7684\u4f20\u64ad\u5b66\u4e13\u4e1a\u3002\u5979\u6709\u7740\u5f3a\u70c8\u7684\u6e34\u671b\u53bb\u4e86\u89e3\u6709\u6548"} +{"id": "6004595", "video_name": "b69c7775-d668-5387-b76a-c5d135435209", "text": "\u68a6\u5e7b\u4e4b\u6cb3\uff0c\u4e9a\u9a6c\u900a\u6cb3\uff0c\u5c3c\u7f57\u6cb3\uff0c\u8bb8\u591a\u5c0f\u6cb3\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1003840", "video_name": "46cb48b2-b093-527c-a15f-153c3c71d395", "text": "\u4e00\u9053\u83dc\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u5411\u7740\u68ee\u6797\u5468\u56f4\u5730\u9762\u4e0a\u7684\u4e00\u4e2a\u4eba\u5c04\u51fa\u4e00\u675f\u5149\u7ebf\uff0c\u5929\u7a7a\u4e2d\u6709\u5927\u661f\u661f\u3002\u8fd9\u662f\u4e00\u90e8"} +{"id": "2007398", "video_name": "cc3eb2bc-12fc-5201-ae35-546d7b6400e7", "text": "\u5973\u5b69\u4e0e\u90aa\u6076\u9f99\u6218\u6597\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004534", "video_name": "7319e1ac-ae88-5c1d-a0f8-92405979edc1", "text": "\u4e00\u53ea\u957f\u7740\u53ef\u7231\u8138\u5e9e\u548c\u7d2b\u8272\u957f\u5c3e\u5df4\u7684\u52a8\u7269\u3002"} +{"id": "1006737", "video_name": "7b65c03c-44bb-5b4a-b30e-435d8a773fa1", "text": "\u5bcc\u6709\u5185\u6db5\u7684\u52a8\u6f2b\uff0c\u5176\u4e2d\u6709\u7eb3\u9c81\u6258\u548c\u4e94\u5341\u97f3\u8fdb\u884c\u6fc0\u70c8\u7684\u6218\u6597\uff0c\u5305\u62ec360\u5ea6\u65cb\u8f6c\u955c\u5934\u3002"} +{"id": "6002665", "video_name": "6f14de2a-9db8-5d43-918d-d0fa7ce5d1e8", "text": "\u8fbe\u00b7\u82ac\u5947\u7684\u751f\u52a8\u753b\u4f5c"} +{"id": "2005050", "video_name": "d927b5c4-cf4a-5d24-bc8f-fa59f46650af", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5728\u98de\u4e00\u67b6\u7eb8\u98de\u673a\u3002"} +{"id": "3004329", "video_name": "5f6aa40a-d74f-5fd6-a59e-7af3e1e3be2b", "text": "\u4e00\u53ea\u957f\u9888\u9e7f\u5728\u5fae\u7b11\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "4003937", "video_name": "e879dafc-0bb6-5799-91c7-ea4d65e94f7e", "text": "\u706b\u5c71\u7206\u53d1\uff0c\u55b7\u53d1\u706b\u5c71\u788e\u5c51\u6d41\uff0c\u4f34\u968f\u7740\u5927\u91cf\u7684\u706b\u4e0e\u4e94\u5f69\u7f24\u7eb7\u7684\u7eb8\u5c51\u3002"} +{"id": "7002656", "video_name": "05d34e86-8156-56d5-8687-bae5ec08a74b", "text": "\u5728\u4e00\u7247\u5e7f\u9614\u7684\u8349\u5730\u4e0a\uff0c\u4e00\u4e2a\u5c0f\u5973\u5b69\u72ec\u81ea\u8eba\u5728\u8349\u5730\u4e0a\uff0c\u6c90\u6d74\u5728\u6e29\u6696\u7684\u9633\u5149\u4e2d\u3002\u5979\u7684\u8eab\u4f53"} +{"id": "2006842", "video_name": "eb2f93e0-a387-5b4b-9609-499bbd0c3255", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u821e\u53f0\u4e0a\u5f39\u594f\u4f4e\u97f3\u5409\u4ed6\u3002"} +{"id": "0004411", "video_name": "08735881-a9f4-5db8-9b89-b378af57756e", "text": "\u4e00\u8258\u7ea2\u8272\u7684\u8239\u6b63\u5728\u6d77\u4e0a\u822a\u884c\u3002"} +{"id": "8002107", "video_name": "b656a5b2-c9cc-54ff-85ca-27621d4cd603", "text": "\u7d22\u83f2\u4e9a\u00b7\u6d1b\u4f26\u7684\u4fcf\u76ae\u5fae\u7b11\u548c\u7728\u773c\u3002"} +{"id": "8001487", "video_name": "1b808eb9-6074-59cd-ad0c-e3ec80235f82", "text": "\u8003\u8bd5\u662f\u7b2c\u4e8c\u5929\u3002"} +{"id": "6004637", "video_name": "23788c23-3b14-5137-9bc6-899794a79455", "text": "\u4e00\u90e8\u957f\u7bc7\u7535\u5f71\u52a8\u4f5c\u7247\u7684\u5f00\u573a\u4ecb\u7ecd\u3002"} +{"id": "8002170", "video_name": "12282210-9ee7-5b02-9507-40928c5b5a73", "text": "\u4e00\u4e2a\u7537\u5b69\u88ab\u6c34\u3001\u706b\u3001\u7a7a\u6c14\u548c\u571f\u5730\u5143\u7d20\u5305\u56f4\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "7002214", "video_name": "7e122717-3716-554e-8001-9ee345527649", "text": "\u5728\u591c\u665a\u7684\u5e9f\u589f\u4e2d\uff0c\u4e00\u7fa4\u5e26\u6709\u5408\u6210\u5668\u3001\u7535\u5409\u4ed6\u548c\u9ea6\u514b\u98ce\u7684\u673a\u5668\u4eba\u4e50\u961f\u3002"} +{"id": "1004771", "video_name": "5845f5f6-8c4b-5f8d-a6ab-84a8caa577eb", "text": "\u4e09\u4e2a\u5b69\u5b50\u5728\u4e61\u6751\u73a9\u800d\uff0c\u5feb\u4e50\u5730\u7b11\u7740\uff0c\u75283D\u52a8\u753b\u62cd\u6444\u3002"} +{"id": "5001944", "video_name": "160a9ae4-b5e6-5cd4-9a51-91b6acbfbb6c", "text": "\u4e00\u53ea\u732b\u95ea\u73b0\u5230\u6d77\u4e2d"} +{"id": "5001286", "video_name": "7148bd71-c5aa-5e2e-99c4-d7da7c52c4e8", "text": "\u4f0a\u65af\u5170\u6559\u5973\u5b69\u7684\u9762\u90e8\u8868\u60c5\u975e\u5e38\u60ca\u8bb6\u3002 \n\nSource sentence: I need to buy some groceries for dinner tonight. \n\n\u6211\u9700\u8981\u4e3a\u4eca\u665a\u7684\u665a\u9910"} +{"id": "1006965", "video_name": "7f7767ea-1300-5251-8ec4-74e1648896ab", "text": "\u4e00\u4e2a\u6ca1\u6709\u80f3\u818a\u548c\u817f\u7684\u7537\u4eba\u62bd\u6410\uff0c\u4e00\u4e2a\u60ac\u6d6e\u5728\u5e8a\u4e0a\u65b9\u7684\u5973\u4eba\uff0c\u80ae\u810f\u7684\u6c7d\u8f66\u65c5\u9986\u623f\u95f4\uff0c"} +{"id": "3005766", "video_name": "e8129ed1-0d94-5a90-9456-fa13d604c8c9", "text": "\u751f\u6210\u4e00\u5f20\u5c55\u793a\u5e72\u71e5\u571f\u5730\u548c\u9ad8\u8038\u7684\u84dd\u8272\u5c71\u5cf0\u7684\u753b\u9762\uff0c\u5c71\u9876\u4e0a\u7684\u767d\u96ea\u95ea\u95ea\u53d1\u5149\uff0c\u5f62\u6210\u5b81"} +{"id": "7003227", "video_name": "a90626bb-73ee-58e9-a93c-36e3f812a85b", "text": "\u4ed6\u7684\u7fc5\u8180\u66fe\u7ecf\u95ea\u8000\u7740\u5929\u4e0a\u7684\u5149\u8f89\uff0c\u73b0\u5728\u5374\u5145\u6ee1\u4e86\u8150\u8d25\u7684\u75d5\u8ff9\uff0c\u88ab\u4ed6\u6240"} +{"id": "3004772", "video_name": "aea888c9-0b27-5b0c-b8b1-7dce2753dc8e", "text": "\u96ea\u4eba\u8df3\u4e86\u5f88\u591a\u6b21\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001539", "video_name": "50025b26-ca5d-52cc-84d6-a00b6fe6e171", "text": "\u521b\u4f5c\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u52a8\u753b\u6545\u4e8b\uff0c\u5185\u5bb9\u5982\u4e0b\uff1a\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5750\u843d\u4e8e\u8d77\u4f0f\u5c71\u4e18\u4e4b\u95f4\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u4f4f"} +{"id": "7004033", "video_name": "8fb55459-08ca-527d-8036-dd1656c7c033", "text": "\u5929\u7a7a\u65e5\u51fa\u80cc\u666f\u4e0e\u5361\u901a\u98ce\u683c\u7684\u7eff\u8272\u666f\u89c2\u3002"} +{"id": "3005985", "video_name": "0e6ab539-6f65-5bfb-b93c-a835158b5f78", "text": "Momo\u4e0e\u5176\u4ed6\u52a8\u7269\u4e00\u8d77\u5de5\u4f5c\uff0c\u6267\u884c\u8ba1\u5212\u89e3\u51b3\u6311\u6218\u3002"} +{"id": "1006740", "video_name": "7b719a26-df67-50e4-86d5-933062791847", "text": "\u7537\u5b69\u548c\u5973\u5b69\u4e00\u8d77\u8df3\u821e\uff0c8K \u8d85\u903c\u771f\u7684\u5f71\u50cf\uff0c\u4f7f\u7528 Cinema 4D \u88fd\u4f5c\uff0c\u9ad8\u6e05 3:2 \u7684\u756b\u9762\u3002"} +{"id": "2006515", "video_name": "cc28b92d-f9d8-5242-9902-76b0f32d0813", "text": "\u8367\u5149\u63a2\u9488\u662f\u68c0\u6d4b\u6d3b\u7ec6\u80de\u4e2dROS\u6700\u5e7f\u6cdb\u4f7f\u7528\u7684\u65b9\u6cd5\u3002"} +{"id": "8003480", "video_name": "f66995ca-ea96-55c4-b64b-0d379f072554", "text": "\u4e00\u4e2a\u88c5\u626e\u6210\u4e49\u52a1\u8b66\u5458\u7684\u7537\u4eba\uff0c\u624b\u6301\u5199\u6709\u201c\u503a\u52a1\u6536\u96c6\u8005\u8bf7\u6ce8\u610f\u201d\u7684\u516c\u6587\u5305\u3002"} +{"id": "1004499", "video_name": "53680f92-f1e5-5903-adbd-4b31b11c1aea", "text": "\u732b\u5973\u90ce\u5728\u96e8\u4e2d\u8857\u5934\u8df3\u821e\u3002"} +{"id": "1005862", "video_name": "6bed7815-9ded-5ed0-8e85-08a90054985e", "text": "\u82b1\u74e3\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447\u66f3\u3002\n\nSource sentence: 2 I am going to the supermarket to buy some groceries. \n\n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e00\u4e9b\u98df\u54c1\u6742"} +{"id": "5001306", "video_name": "46dec2ac-b0e5-5ccd-b921-e1efc545f690", "text": "\u4e00\u8f86\u767d\u8272\u7684\u5170\u535a\u57fa\u5c3cHuracan\u5e26\u7740\u4e00\u633a\u5fae\u578b\u673a\u67aa\u5728\u68ee\u6797\u91cc\u8d8a\u91ce\u9a7e\u9a76\u3002\u4f7f\u7528\u865a\u5e7b\u5f15"} +{"id": "6002706", "video_name": "3039adb5-0bed-5ed2-9e2f-02cfe8bc111b", "text": "\u8302\u5bc6\u7684\u704c\u6728\u4e1b\u3001\u5927\u91cf\u7684\u6811\u6728\u548c\u6e56\u6cca\u3002"} +{"id": "1003308", "video_name": "3ce5f6cc-539e-57af-9791-3908ea4d07cd", "text": "\u5a74\u513f\u58eb\u5175\uff0c\u624b\u6301\u67aa\u68b0\u7a7f\u8fc7\u8302\u5bc6\u7684\u7eff\u8349\u5730\uff0c\u80f8\u524d\u4f69\u6234\u548c\u5e73\u6807\u5fd7\u3002"} +{"id": "7002500", "video_name": "bac388b1-ee17-5156-a3ec-0861b0851a3f", "text": "\u5728\u97f3\u4e50\u8fbe\u5230\u9ad8\u6f6e\u7684\u540c\u65f6\uff0c\u5c06\u72d7\u505c\u4e0b\u6765\u51dd\u89c6\u5730\u5e73\u7ebf\u7684\u753b\u9762\u6846\u5165\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u611f\u4eba\u7684\u65f6\u523b\u3002"} +{"id": "4002089", "video_name": "7065f765-f7d0-5bdd-8625-25f6a13f0f28", "text": "\u57ce\u5e02\u65e0\u4eba\u673a\u65f6\u95f4\u6d41\u901d\u62cd\u6444\uff0c\u592a\u9633\u5347\u8d77\u3002"} +{"id": "0003229", "video_name": "39ab35f6-2f86-59df-85b2-0428f1ced53c", "text": "\u5728\u7c7b\u4f3c\u4e8e\u5c0f\u62a5\u6f2b\u753b\u7684\u98ce\u683c\u4e2d\uff0c\u4e00\u4e2a\u7559\u7740\u80a9\u8180\u957f\u5ea6\u7684\u91d1\u9ec4\u8272\u5934\u53d1\u3001\u7a7f\u7740\u5f69\u8272\u5370\u82b1T\u6064\u548c"} +{"id": "0005017", "video_name": "134d6ab7-7991-5d40-a77a-9bfcb4acac7b", "text": "\u4e00\u4e2a\u5728\u6811\u6797\u91cc\u6ca1\u6709\u9f3b\u5b50\u7684\u5927\u8c61\u7684\u89c6\u9891\uff0c\u5468\u56f4\u5f88\u9634\u68ee\uff0c\u53ea\u6709\u6708\u5149\u7167\u5728\u5b83\u8eab\u4e0a\u3002\n\nSource sentence: The new restaurant downtown serves delicious"} +{"id": "8002593", "video_name": "88dd1efb-9e79-5862-bd63-3c549a4546c5", "text": "\u4e00\u4e2a\u516c\u56ed\u91cc\u6709\u5f88\u591a\u8001\u4eba\u5947\u602a\u5730\u8df3\u821e\uff0c\u989c\u8272\u6b22\u5feb\uff0c\u5e26\u7740\u4e00\u5806\u4e1c\u897f\uff0c\u83b7\u5956\u7684\u7535\u5f71\u4ecd\u7136\uff0c"} +{"id": "6002559", "video_name": "d83b79b6-de0b-5d31-bbee-c89a62bf4d6c", "text": "\u673a\u68b0\u4eba\u5411\u524d\u8d70\uff0c\u903c\u771f\u9ad8\u6e05\u3002 \n\nSource sentence: The new software update will improve the performance of your device. \n\u65b0\u7684\u8f6f\u4ef6\u66f4\u65b0\u5c06\u63d0\u9ad8\u60a8\u8bbe\u5907\u7684\u6027\u80fd\u3002"} +{"id": "4004796", "video_name": "2632b062-9201-5815-a9c0-8747fa4f1b55", "text": "\u8eab\u4f53\u62bd\u6410\uff0c\u95ea\u7535\uff0c\u955c\u5934\u5411\u540e\u62c9\u8fdc\u3002"} +{"id": "2005946", "video_name": "453152af-ce73-5b10-a09c-02eefcba7aa0", "text": "\u4e00\u67b6\u571f\u8033\u5176\u822a\u7a7a\u516c\u53f8\u7684\u98de\u673a\u4ece\u4f0a\u65af\u5766\u5e03\u5c14\u673a\u573a\u8d77\u98de\u3002"} +{"id": "7002115", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "\u8fd9\u4e2a\u53e4\u57c3\u53ca\u519b\u961f\u5728\u5bf9\u6297\u654c\u4eba\u65f6\uff0c\u4f7f\u7528\u7535\u5f71\u6548\u679c\u3002\n\nSource sentence: The new restaurant offers a wide variety of international cuisine. \n\u8fd9\u5bb6\u65b0\u9910\u5385\u63d0\u4f9b"} +{"id": "3003226", "video_name": "14a7828a-b5a8-58ef-87f8-6917588be57e", "text": "\u6d77\u6c34\u6d41\u52a8\uff0c\u767d\u4e91\u98d8\u52a8\u3002"} +{"id": "2006457", "video_name": "d65088b1-b30e-5312-9d0e-c9477ac8293e", "text": "\u6709\u8da3\u7684\u72d7\u5728\u9662\u5b50\u91cc\u5fae\u7b11\u3002"} +{"id": "2004136", "video_name": "28015589-4e63-5ed2-b1c0-b078b9ee791b", "text": "\u521b\u5efa\u4e00\u4e2a\u975e\u5e38\u53ef\u7231\u7684\u5154\u5b50\u5bb6\u5ead\uff0c\u5305\u62ec\u4e00\u53ea\u7236\u5154\u3001\u4e00\u53ea\u6bcd\u5154\u548c\u4e00\u4e2a\u5c0f\u5973\u513f\u5154\u5b9d\u5b9d\u3002"} +{"id": "3006097", "video_name": "7b43f06a-3ec5-5ccc-85ee-22098261f635", "text": "\u706b\u7bad\u8239\u4ece\u7eff\u8272\u661f\u7403\u8d77\u98de\u7684\u6241\u5e73\u5316\u63d2\u56fe\u3002"} +{"id": "6002383", "video_name": "8bc0fdcc-84d7-52e6-b680-9872d2c56fd1", "text": "\u5728\u4f60\u773c\u524d\uff0c\u4e00\u4e2a\u8ff7\u4eba\u7684\u573a\u666f\u5c55\u73b0\u51fa\u6765\uff0c\u4e00\u4e2a\u5149\u5f69\u7167\u4eba\u7684\u5e74\u8f7b\u5973\u5b50\u7cbe\u81f4\u5730\u5750\u5728\u5979\u7684\u7b14\u8bb0\u672c\u7535"} +{"id": "1005308", "video_name": "6182bd2c-fea8-5632-b78d-828165ee978e", "text": "\u5feb\u4e50\u7684\u5927\u849c\u5728\u8e66\u5e8a\u4e0a\u8df3\u8dc3\u3002"} +{"id": "1003011", "video_name": "37568d4b-081f-54b3-888a-072cbcc3d1ee", "text": "\u8fd0\u52a8\u8dd1\u8f66\u9a7e\u9a76\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u57ce\u5e02\uff0c\u591c\u665a\u9ed1\u6697\u7684\u5929\u7a7a\u3002"} +{"id": "2007764", "video_name": "dbf75e40-d8cd-5833-81a6-80fbf9a1e3fa", "text": "\u4e00\u4e2a\u5c71\u91cc\u4eba\u5728\u8d70\u8def\uff0c\u4ed6\u7684\u8138\u5728\u5c4f\u5e55\u4e2d\u95f4\u3002\u968f\u7740\u9010\u6e10\u653e\u5927\uff0c\u6211\u4eec\u770b\u5230\u4ed6\u5468\u56f4\u7684\u73af\u5883\u4ece\u6700\u521d\u7684\u81ea\u7136"} +{"id": "4002151", "video_name": "d9142ad4-d7ba-585b-a03b-b1d9d0d327d3", "text": "\u4e9a\u4f2f\u62c9\u7f55\uff1a\u72b9\u592a\u6c11\u65cf\u7684\u59cb\u7956\u548c\u72b9\u592a\u4fe1\u4ef0\u4e2d\u7684\u6838\u5fc3\u4eba\u7269\uff0c\u88ab\u8ba4\u4e3a\u662f\u8bb8\u591a\u4eba\u7684\u7cbe\u795e"} +{"id": "1005754", "video_name": "69db8c7d-b5ba-5a9d-ac35-22ba66bd828d", "text": "\u6258\u9a6c\u65af\u00b7\u8c22\u5c14\u6bd4\u548c\u201c\u6559\u7236\u201d\u827e\u5c14\u00b7\u5e15\u5fb7\u91cc\u8bfa\u4ea4\u8c08\u3002"} +{"id": "7003728", "video_name": "a7943a89-a5d8-5b5b-ac13-d8952871c780", "text": "\u8bb8\u591a\u4e0d\u6e05\u6670\u7684\u6d6e\u52a8\u7403\u4f53\uff0c\u4ece\u6c34\u6ef4\u5f62\u6210\u5bf9\u79f0\u6ce2\u7eb9\uff0c\u4fef\u89c6\u56fe\uff0c\u5411\u5916\u6269\u6563\u7684\u6ce2\u6d6a\uff0c\u6a21\u7cca\u7684"} +{"id": "8003749", "video_name": "2253dbfa-ca53-5c5c-9cbb-abfcea1af81f", "text": "\u300a\u53cc\u5cf0\u300b\u4e2d\u7684\u6740\u624b\u9c8d\u52c3\u5728\u4e00\u573a\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\u7684\u6ee1\u5ea7\u6454\u89d2\u6bd4\u8d5b\u4e2d\u51fb\u8d25\u4e86\u7279"} +{"id": "6003083", "video_name": "826bb093-f521-550d-b277-d48097c1248c", "text": "\u4e00\u4f4d\u91d1\u53d1\u84dd\u773c\u775b\u7684\u5973\u5b69\u5728\u5929\u7a7a\u4e2d\u73a9\u800d\u661f\u661f\u3002"} +{"id": "4002226", "video_name": "353f58b6-fd4f-5df9-b8c6-b4b2bedee109", "text": "AI\u865a\u62df\u5f62\u8c61\uff0c3D\u52a8\u753b\u98ce\u683c\uff0c30\u5c81\u7537\u6027\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u68d5\u8272\u773c\u775b\uff0c\u6de1\u6de1\u7684\u80e1\u987b\uff0c\u7a7f\u7740\u4f11"} +{"id": "2005641", "video_name": "29fcf898-f150-5d45-be67-5df19f9c35fc", "text": "\u63cf\u8ff0\u4e00\u4e2a\u624b\u69b4\u5f39\u88ab\u6254\u8fdb\u62e5\u6324\u7684\u5e02\u573a\u540e\u6240\u53d1\u751f\u7684\u6df7\u4e71\u573a\u9762\uff0c\u751f\u52a8\u5730\u63cf\u7ed8\u7206\u70b8\u4ea7\u751f\u7684\u9707"} +{"id": "0006408", "video_name": "2be7a153-aeed-56a6-b9ba-80478a3acb28", "text": "\u5979\u7684\u7236\u6bcd\u4e92\u76f8\u4ea4\u6362\u4e86\u6e29\u6696\u7684\u5fae\u7b11\u5e76\u4e14\u540c\u610f\uff0c\u7a7f\u4e0a\u5916\u5957\u548c\u56f4\u5dfe\u3002\u5bb6\u4eba\u8d70\u8fdb\u8fd9\u4e2a\u51ac\u5b63"} +{"id": "2005370", "video_name": "0bae19e5-4303-5514-9284-252b24d53bd0", "text": "\u80cc\u666f\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u68cb\u76d8\u3002\u6444\u50cf\u673a\u805a\u7126\u5728\u4e00\u4e2a\u767d\u8272\u68cb\u5b50\u4e0a\uff0c\u79fb\u52a8\u5230\u5c06\u9ed1\u8272\u56fd\u738b\u5c06\u6b7b\uff0c\u6162\u52a8\u4f5c\u4e0b"} +{"id": "7004063", "video_name": "a151064f-67ef-5b30-813e-8bea67daa218", "text": "\u6211\u770b\u5230\u6709\u5ea7\u4f4d\u7684\u5b9d\u5ea7\uff0c\u4e0a\u9762\u5750\u7740\u90a3\u4e9b\u88ab\u8d4b\u4e88\u5ba1\u5224\u6743\u529b\u7684\u4eba\u3002"} +{"id": "6003730", "video_name": "dfec2cdc-bda1-5c09-94d0-020e173f3b23", "text": "\u5c0f\u871c\u737e\u4e58\u5750\u706b\u7bad\u98de\u5f80\u6708\u7403"} +{"id": "6002740", "video_name": "fd3b36b8-b105-57e7-abd6-263723e4137f", "text": "\u53e4\u4eba\u53d1\u73b0\u51b7\u6c34\u7684\u529f\u6548\u3002"} +{"id": "7004050", "video_name": "0fb4be7d-ecfe-575d-a59c-bc05d0bbd2c8", "text": "\u6d77\u6d0b\u7f13\u6162\u7684\u6ce2\u6d6a\uff0c\u51b2\u6d6a\u8005\u89c6\u89d2\u3002"} +{"id": "8002104", "video_name": "56f426b9-248b-5420-a31a-0badda35058d", "text": "\u52a8\u6f2b\u7537\u5b50\u4f7f\u7528\u4ed6\u7684\u534d\u89e3\u98ce\u683c\uff1a\u52a8\u6f2b\u7167\u7247\uff1a1 \u7c7b\u578b\uff1a3.2 \u5bf9\u8c61\uff1a4,76\u3002"} +{"id": "5001136", "video_name": "e9692472-2af2-57b8-9e01-586fc051dab2", "text": "\u5e72\u5730\u4e0a\u4e0b\u96e8\u4e86\uff0c\u6709\u4e00\u6ef4\u6c34\u6ef4\u548c\u5fc3\u58f0\u3002"} +{"id": "1005377", "video_name": "62e031f0-cc40-5632-bb24-429c386af5f7", "text": "CCTV\u76d1\u63a7\u955c\u5934\u663e\u793a\u6d77\u7ef5\u5b9d\u5b9d\u5728\u5c0f\u5df7\u91cc\u8df3\u8dc3\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a"} +{"id": "4004450", "video_name": "18eb720f-f95c-5f9f-855a-7e86b594f547", "text": "\u4e00\u4f4d\u50cf\u5218\u4ea6\u83f2\u4e00\u6837\u62e5\u6709\u5927\u773c\u775b\u548c\u957f\u817f\u7684\u6027\u611f\u5973\u5b69\uff0c\u72ec\u81ea\u5728\u6dcb\u6d74\u65f6\u6162\u821e\u3002"} +{"id": "4002516", "video_name": "db68b586-27eb-51d1-b300-beaca3767e8a", "text": "\u5de8\u5927\u7684\u82b1\u3002\u4fe1\u606f\uff1a\u773c\u775b\u7728\u4e86\u7728\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8001753", "video_name": "c5ab0799-0686-5003-aa0f-b09f5e4fc9ec", "text": "\u968f\u7740\u591c\u8272\u7684\u52a0\u6df1\uff0c\u8428\u7c73\u610f\u8bc6\u5230\u4ed6\u79bb\u5de2\u6bd4\u8f83\u8fdc\u3002"} +{"id": "1003776", "video_name": "45a3b7a1-1088-5902-b13b-83e39dd200f3", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6c34\u679c\u4e3b\u9898\u5c0f\u602a\u517d\u7684\u5f69\u8272\u5851\u6599\u827a\u672f\u73a9\u5177\u8d70\u8def\u3002"} +{"id": "0005306", "video_name": "1835d16d-4d1b-5000-a47d-2937d99d182f", "text": "\u9a6c\u7279\u7ef4\u00b7\u535a\u6d1b\u6208\u592b\u5728\u963f\u7eb3\u5e15\u8db3\u7403\u6bd4\u8d5b\u4e2d\u8fdb\u7403\u3002"} +{"id": "6002790", "video_name": "69892f60-a984-5277-b11a-75ae10942966", "text": "\u6df1\u7a7a\u30014K\u3001\u8d85\u8be6\u7ec6\u3001\u539f\u59cb\u8272\u5f69\u827a\u672f\u3001\u5149\u7ebf\u8ffd\u8e2a\u3002"} +{"id": "6002545", "video_name": "2f202318-02a1-52d5-b0d7-e028741001b1", "text": "\u4e00\u53ea\u5934\u5f88\u5927\u3001\u770b\u8d77\u6765\u5f88\u8ba4\u771f\u4f46\u540e\u6765\u7b11\u4e86\u8d77\u6765\uff0c\u53ef\u4ee5\u770b\u5230\u4ed6\u7684\u7b11\u5bb9\u7259\u9f7f\u6709\u51e0\u9897\u6389\u4e86\u7684\u8682\u8681\u3002"} +{"id": "2007962", "video_name": "7583a8bb-4708-5d87-8597-5e1f9bc5fc4a", "text": "\u7537\u4eba\u4e0e\u5fb7\u53e4\u62c9\u6253\u67b6\u6ca1\u6709\u4eba\u56f4\u89c2\u3002"} +{"id": "2005211", "video_name": "2b3dfe86-b2ee-55ed-9be1-6e012fd57b51", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u5730\u9707\u5728\u66fc\u54c8\u987f\u4e2d\u57ce\u53d1\u751f\uff0c\u5efa\u7b51\u7269\u5012\u584c\uff0c\u5c31\u50cf\u7535\u5f71\u573a\u666f\u4e00\u6837\u3002"} +{"id": "1006534", "video_name": "77c232b5-1681-50a7-8b06-b8e1146b0752", "text": "\u5728\u8fd9\u4e2a\u5e73\u884c\u4e16\u754c\u4e2d\uff0c\u4eba\u7c7b\u4ece\u672a\u53d1\u73b0\u7535\u3002\u7f3a\u4e4f\u7535\u529b\u610f\u5473\u7740\u4e00\u4e2a\u5b8c\u5168\u4f9d\u8d56\u4e0d\u540c\u80fd\u6e90\u548c\u6280\u672f\u7684\u793e\u4f1a\u3002"} +{"id": "1004740", "video_name": "57cdadae-bfb8-5ea5-bb9c-e795fd8b53ed", "text": "\u5c55\u73b0\u62bd\u8c61\u7684\u4e07\u82b1\u7b52\u56fe\u6848\uff0c\u5145\u6ee1\u6d3b\u529b\u548c\u52a8\u611f\u7684\u89c6\u9891\u3002\u4e0d\u5e94\u51fa\u73b0\u4eba\u6216\u52a8\u7269\u3002\u8ba9\u8272\u5f69\u548c\u5f62\u72b6\u5728\u521b\u610f\u7684\u89c6"} +{"id": "7002825", "video_name": "f48fae3c-18f5-5613-9142-b8a995874d55", "text": "\u5348\u591c\u8def\u4e0a\u7684\u9b3c\u9b42\u56f4\u7ed5\u7740\u975e\u5e38\u6050\u6016\u3002"} +{"id": "0004052", "video_name": "02531fe5-dc31-5ca4-a8be-5d834508cc3a", "text": "\u4e00\u540d\u5efa\u7b51\u5de5\u4eba\u7ad9\u5728\u6708\u7403\u4e0a\uff0c\u6444\u50cf\u673a\u5411\u540e\u79fb\u52a8\uff0c\u6211\u4eec\u770b\u5230\u4ed6\u7528\u80f6\u6c34\u5c06\u6708\u7403\u7c98\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "0003191", "video_name": "3902924f-3998-5bb7-b7f8-9b0389dd0e9f", "text": "\u52a8\u6f2b\u5973\u5b50\u8eab\u7a7f\u9ed1\u8272\u8fde\u8863\u88d9\uff0c\u5728\u6c34\u4e0b\u6f02\u6d6e\uff0c\u7528\u624b\u89e6\u6478\u6c34\u9762\u3002"} +{"id": "0006679", "video_name": "30d0bff7-c74b-5891-a8ef-a3dd462fc8fb", "text": "\u62a2\u52ab\u6545\u4e8b\u3002\u89c6\u9891\u957f\u5ea6\u4e3a6\u79d2\u3002"} +{"id": "6003213", "video_name": "86cd21b9-9620-54ea-a10d-7bea493eb894", "text": "\u65e0\u4eba\u673a\u89c6\u89d2\uff0c\u7528\u4e00\u53ea\u9e21\u6362\u4e00\u74f6\u5564\u9152\u3002"} +{"id": "3004901", "video_name": "3c335ccf-2c5d-5cdb-a984-ad6d33c77eab", "text": "\u6f14\u5316\uff0c\u751f\u547d\u7684\u8d77\u6e90"} +{"id": "3003779", "video_name": "383ba236-221a-56a2-9365-b903037b022f", "text": "\u4ee3\u8868\u4e8b\u4ef6\u786e\u8ba4\u8868\u7684\u56fe\u6807"} +{"id": "6003934", "video_name": "7574ac8f-3f35-5675-860d-af6f0e6a3e66", "text": "\u4e00\u4e2a\u5de8\u5927\u7684X\u751f\u9508\u6d88\u8017\u7684\u89c6\u9891\u3002"} +{"id": "2007946", "video_name": "80835f9c-f4ed-5c96-90b9-2386fac07d7c", "text": "\u4e16\u754c\u767d\u65d7\u4e3a\u548c\u5e73\u3002\u5173\u4e8e\u4e00\u4e2a\u4eba\u9001\u7ed9\u4eba\u4eec\u548c\u5e73\u7684\u6545\u4e8b\u3002\u4ed6\u7ed9\u4e16\u754c\u9886\u8896\u5bc4\u4fe1\uff0c\u8981\u6c42\u505c\u6b62\u4e16\u754c\u4e0a\u7684\u6218"} +{"id": "0003998", "video_name": "015da121-7f40-5cb1-8770-3101cb2ece45", "text": "\u4e00\u53f0\u624b\u6301\u8bbe\u5907\u663e\u793a\u51fa\u4e00\u6761DNA\u5b57\u7b26\u4e32\u5728\u5176\u81ea\u8eab\u8f74\u4e0a\u65cb\u8f6c\uff0c\u65c1\u8fb9\u8fd8\u6709\u4e00\u4e2a\u8bf4\u8bdd\u7684\u4eba\u8138\u3002"} +{"id": "7004942", "video_name": "2eef866f-8617-5982-8bea-1d529fab7756", "text": "\u653e\u5927\u955c\u5934\uff0c\u770b\u770b\u6c49\u5821\u4e0a\u6dcb\u7740\u7684\u79d8\u5bc6\u62db\u724c\u9171\u3002"} +{"id": "7003004", "video_name": "dd3a8261-38b5-5879-9c74-864dc3bbf4db", "text": "\u7531\u53ef\u7231\u7684Yves Di\uff0c\u4f11\u95f2\u88c5\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u7f8e\u4e3d\u7684\u8138\u5e9e\uff0c\u7f8e\u4e3d\u7684\u817f\u90e8\uff0c\u6d45\u84dd\u8272\u7684\u773c"} +{"id": "2005534", "video_name": "8f0e6b00-b8b3-56d7-b440-39c6a26f1718", "text": "\u9ed1\u6697\u98ce\u683c\u7684\u7537\u5b50\u5728\u665a\u4e0a\u7684\u6559\u5802\u91cc\u5954\u8dd1\u3002"} +{"id": "4003800", "video_name": "a6692e6a-a6dd-53f7-98b9-67b9fcf78b45", "text": "\u5929\u7a7a\u7f13\u7f13\u964d\u843d\uff0c\u7a7f\u8fc7\u84dd\u5929\u4fef\u77b0\u963f\u5bcc\u6c57\u3002\u6eda\u6eda\u5c71\u5ce6\u3001\u5e7f\u88a4\u6c99\u6f20\uff0c\u6bcf\u4e00\u79cd"} +{"id": "4002465", "video_name": "68d2583c-961c-513b-8e8a-b9644c122297", "text": "\u6d77\u6ee9\u4e0a\u770b\u5230\u5de6\u53f3\u4e24\u8fb9\u6709\u4e00\u4e9b\u68d5\u6988\u6811\uff0c\u6d77\u6c34\u7f13\u7f13\u5730\u6d41\u52a8\uff0c\u5448\u73b0\u51fa\u9633\u5149\u4e0b\u8f7b\u677e\u7684\u5ea6\u5047\u6c1b"} +{"id": "5001169", "video_name": "3256125b-4b5e-56bb-9f6b-fb3e086d7052", "text": "\u751f\u6210\u4e00\u5f20\u753b\u9762\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u4e2a\u5bb3\u7f9e\u7684\u5973\u5b69\u80cc\u7740\u4e00\u4e2a\u624b\u63d0\u7bb1\u8d70\u5728\u8ff7\u4eba\u7684\u5df4\u9ece\u8857\u9053\u4e0a\u3002\u6355\u6349\u5979"} +{"id": "1003967", "video_name": "493ac084-5e03-5c28-b689-91ac4f62aeeb", "text": "\u4eba\u4eec\u5728\u591c\u603b\u4f1a\u8df3\u821e\u7684\u7279\u5199\u955c\u5934\uff0c\u7ea2\u7d2b\u8272\u9713\u8679\u706f\u7167\u4eae\uff0c\u5177\u6709\u590d\u53e4\u7f8e\u611f\u548c 80 \u5e74\u4ee3\u7535\u5f71\u573a"} +{"id": "2007773", "video_name": "38427ad7-c921-5d18-8de3-18271e056fe3", "text": "\u4e00\u4e2a\u62bd\u8c61\u62fc\u8d34\uff0c\u7531\u5404\u79cd\u76f8\u4e92\u5173\u8054\u7684\u5143\u7d20\u7ec4\u6210\uff0c\u4ee3\u8868\u4e0d\u540c\u7684\u5b66\u79d1\u9886\u57df\uff0c\u5982\u591a\u58f0\u90e8\u7684\u97f3\u7b26\u3001\u6839\u7cfb\u7684"} +{"id": "7004658", "video_name": "e28252fd-21ee-5e40-852b-c3272b598657", "text": "\u5f7c\u5f97\u00b7\u683c\u91cc\u82ac\u5750\u5728\u4e00\u628a\u6905\u5b50\u4e0a\u8fc7\u5723\u8bde\u8282\u3002"} +{"id": "3004273", "video_name": "1ef56402-94be-5172-b72d-603f54eabe58", "text": "\u4e00\u628a\u5927\u7535\u952f\u548c\u4e00\u5339\u5927\u9a6c\u3002"} +{"id": "2003662", "video_name": "94ae09a4-fb7e-5a91-99b3-141da6a6fa08", "text": "\u7f8e\u4e3d\u7684\u6d77\u6d6a\u3002\u4fe1\u606f\uff1aOLE\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "7003575", "video_name": "cfd48fe3-dba4-5cb9-bc09-71651bb4e8d2", "text": "\u6811\u53f6\u8f7b\u67d4\u7684\u6c99\u6c99\u58f0\u8425\u9020\u4e86\u5b81\u9759\u7684\u6c1b\u56f4\u3002"} +{"id": "2003614", "video_name": "83ab1882-d04a-5210-8acc-60d0b797f8b4", "text": "\u5973\u4eba\u8fdb\u5165\u5979\u5728\u82f1\u56fd\u7684\u623f\u5b50\u3002"} +{"id": "7002153", "video_name": "8a2790bb-05c0-5d37-981f-e8990f3afb3b", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5927\u8c61\u5728\u623f\u95f4\u91cc\u8d70\u6765\u8d70\u53bb\u3002"} +{"id": "1005108", "video_name": "5e28ef47-9bdc-55ab-a222-735f6e10ead3", "text": "\u8bf7\u5c55\u793a\u62c9\u6590\u5c14\u9f9f\u5982\u4f55\u6253\u5f00\u4e00\u4e2a\u88c5\u6ee1\u7ebd\u7ea6\u6700\u7f8e\u5473\u62ab\u8428\u7684\u76d2\u5b50\uff0c\u62ab\u8428\u5e94\u8be5\u5b8c\u6574\u5730\u5c55\u793a\u51fa\u6765\uff0c\u5c31\u50cf\u89d2"} +{"id": "4004961", "video_name": "bb9ef8aa-4ec3-5ce1-8ff4-2d85955213d2", "text": "\u5c55\u793a\u94a2\u94c1\u4fa0\u548c\u96f7\u795e\u5c55\u73b0\u4ed6\u4eec\u7684\u529b\u91cf\u3002"} +{"id": "3004220", "video_name": "1f575ba2-852b-5e9f-84b0-ba247601b918", "text": "\u4e3b\u9898\u4e3a\u201c\u8c03\u5927\u97f3\u91cf\u201d\u7684\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "8002504", "video_name": "7aff8b2c-758a-5650-9f7b-f75a1113c5d0", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d74\u5ba4\u91cc\u54ed\u6ce3\u3002"} +{"id": "6004032", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "\u90a3\u53ea\u6a58\u84dd\u76f8\u95f4\u7684\u732b\u7ad9\u5728\u7af9\u6797\u65c1\u8fb9\uff0c\u6b63\u5728\u5403\u9c7c\u3002\n\nSource sentence: I am looking forward to seeing you soon.\n\u6211\u671f\u5f85\u7740"} +{"id": "1004625", "video_name": "55fe13d6-6ae0-55f0-8ff8-e9cfc0da755e", "text": "\u739b\u96c5\u7ad9\u8d77\u6765\u8d70\u5230\u7a97\u6237\u3002"} +{"id": "3003692", "video_name": "ac6a12b3-1154-5d75-b606-4b7761006277", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u6234\u7740\u6c34\u80ba\u9762\u7f69\u5728\u9ed1\u6697\u4e2d\u4e0e\u9ca8\u9c7c\u6f5c\u6c34\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "6004552", "video_name": "40bf82fa-55b4-57e5-9c61-8b49475ed2be", "text": "\u5236\u9020\u4e00\u4e2a\u6c7d\u8f66\u7ecf\u9500\u5546\u7684\u524d\u95e8\u5165\u53e3\uff0c\u5728\u5546\u5e97\u524d\u65b9\u7684\u4e24\u4e2a\u89d2\u843d\u6709\u4e24\u68f5\u68d5\u6988\u6811\uff0c\u5468\u56f4\u662f\u7eff\u8272\u8349\u76ae\uff0c\u5efa"} +{"id": "4002005", "video_name": "6ba3a2bc-d558-5ec1-883a-81b0a263fff2", "text": "\u6a35\u592b\u6b63\u5728\u8003\u8651\u505c\u6b62\u5728\u4e1b\u6797\u4e2d\u780d\u6811\u3002"} +{"id": "8001968", "video_name": "0a432817-9f45-5803-bc5e-382e834238a7", "text": "\u4e00\u53ea\u9e66\u9e49\u671b\u5411\u5c71\u5cf0\uff0c\u89c2\u770b\u98d8\u843d\u96ea\u82b1\u76845\u5206\u949f\u89c6\u9891\u5236\u4f5c\u3002"} +{"id": "3003304", "video_name": "9610a522-a2df-56b4-bcac-8ed16057738f", "text": "\u9b54\u6212\u96fb\u5f71\u5927\u6230\u5f79\uff0c\u53f2\u8a69\u822c\u7684\u3001\u96fb\u5f71\u5316\u7684\u3001\u52d5\u614b\u7684\u3002"} +{"id": "5001141", "video_name": "6d0191fb-c1de-5119-93e9-410d54f945a8", "text": "\u4ee5\u4e2d\u592e\u6709\u4e00\u5ea7\u5b8f\u4f1f\u57ce\u5821\u3001\u9ad8\u9ad8\u98d8\u626c\u7684\u65d7\u5e1c\u548c\u7199\u7199\u6518\u6518\u7684\u4eba\u7fa4\u6765\u63cf\u7ed8\u4e00\u4e2a\u738b"} +{"id": "6004984", "video_name": "bbeb8bba-7953-5b69-a256-ccedd8bd0e78", "text": "\u82f9\u679c\u4ea7\u54c1\u98ce\u683c\uff0c\u4e2d\u95f4\u6709\u4e00\u679a\u94f6\u8272\u6212\u6307\u3002"} +{"id": "8001731", "video_name": "24ece03d-14ef-5a0c-a9ae-2abed976ba2d", "text": "\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u53e4\u8001\u6050\u60e7\u7684\u6c14\u606f\u3002\u9634\u5f71\u4e2d\u4f20\u6765\u88ab\u9057\u5fd8\u7684\u5669\u68a6\u7684\u8033\u8bed\uff0c\u626d\u66f2"} +{"id": "3005912", "video_name": "c58e2c78-ec8d-51ac-8a3b-132b71353581", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u6cb3\u5728\u4e00\u95f4\u5145\u6ee1\u955c\u5b50\u7684\u623f\u95f4\u6e38\u6cf3\u3002"} +{"id": "2005374", "video_name": "c236f80f-a095-5790-8f23-775ad506d343", "text": "\u4e00\u7fa4\u670b\u53cb\uff0cSARAH\u3001MIKE\u548cJASON\uff0c\u6cbf\u7740\u4e00\u6761\u72ed\u7a84\u7684\u5c0f\u5f84\u8fdc\u8db3\uff0c\u7b11\u7740\u804a\u5929\u3002"} +{"id": "4004028", "video_name": "a8bc0657-e8d3-5463-a05b-327ea5b75c3a", "text": "\u4e00\u4f4d\u667a\u8005\u6559\u6388\u4e00\u7fa4\u5b66\u751f\u3002"} +{"id": "8002675", "video_name": "44865b98-8b53-5703-881f-6d39ff88adf6", "text": "\u5965\u8fd0\u4f1a\u4e0a\u4e00\u5339\u8df3\u8dc3\u7684\u9a6c\uff0c\u4ee5\u9ad8\u5206\u8fa8\u7387\u8d85\u903c\u771f\u7684\u5f62\u8c61\u5448\u73b0\u3002"} +{"id": "2007437", "video_name": "9eb85b16-b67d-50f0-b49f-c2d474936965", "text": "\u521b\u9020\u5b8c\u7f8e\u7684\u5c0f\u732b\u8df3\u821e\uff0c\u65cb\u8f6c\u3001\u8f6c\u52a8\u3001\u5f2f\u66f2\u624b\u548c\u817f\u3002"} +{"id": "8003255", "video_name": "ad391923-6df7-59f4-85bb-de4a091695c5", "text": "\u7ed9\u6211\u7684\u7535\u5f71\u5236\u4f5c\u4e00\u4e2a\u9884\u544a\u7247\uff0c\u8bb2\u8ff0\u4eba\u5de5\u667a\u80fd\u63a5\u7ba1\u4eba\u7c7b\u667a\u6167\u540e\uff0c\u4e16\u754c\u9677\u5165\u56f0\u5883\uff0c\u6570\u5341\u4e07\u4eba\u7c7b\u53d7\u5230\u5f71"} +{"id": "6003694", "video_name": "5558cd7f-22d2-579f-94b5-cbd1fba64118", "text": "\u590d\u53e4\u6751\u5e84\u666f\u89c2\uff0c\u5728Octane Render\u4e2d\uff0c\u96e8\u540e\u6709\u4e00\u5339\u9a6c\uff0c\u70b9\u7740\u5355\u72ec\u7684\u8721\u70db\u3002 \n\nSource sentence: Our company will be closed"} +{"id": "0003110", "video_name": "373bac00-bb8a-5fb3-afe6-5f1a59675b91", "text": "\u6728\u5320\u5728\u6e56\u524d\u5de5\u4f5c\u3002"} +{"id": "2003188", "video_name": "d2f11f83-feb2-5df7-bdf5-92902c8636e8", "text": "\u572816:9\u7684\u5b89\u7b2c\u65af\u5c71\u8109\u4e2d\u6709\u706b\u7130\u3002"} +{"id": "2005836", "video_name": "4503685e-f04b-5e12-adad-7b303e5d8c78", "text": "\u9ad8\u6e05\u6700\u9ad8\u5206\u8fa8\u73874K\uff0c\u90a3\u4e2a\u4eba\u5728\u5356\u897f\u74dc\u3002"} +{"id": "3005902", "video_name": "6c803249-0177-584a-96b1-fd7d99d67bf5", "text": "\u5728\u82b1\u56ed\u4e24\u4fa7\u67091000\u4e2a\u963f\u7f57\u6c49\u7684\u8d85\u8be6\u7ec6\u63d2\u56fe\uff0c\u5176\u4e2d\u4e00\u4e2a\u963f\u7f57\u6c49\u5411\u524d\u8d70\uff0c\u8dea\u5728\u9876\u90e8\u7684\u77f3\u5934"} +{"id": "2004952", "video_name": "208fcfc7-c1fa-52de-836c-3ab481bafd00", "text": "\u4eba\u7528\u624b\u8fdb\u884c\u7535\u51fb\u653b\u51fb\u5bf9\u624b\u76843D\u52a8\u753b"} +{"id": "2007327", "video_name": "acb8d64f-1143-53d0-b5aa-1c6cc06d3b73", "text": "\u8f6f\u4ef6\u5de5\u7a0b\u5e08\u548c\u4e00\u5934\u725b\u8d70\u5728\u4e00\u8d77\u3002"} +{"id": "8003235", "video_name": "d6c3635d-537d-56cd-9e7a-46a0f445a257", "text": "\u6c49\u00b7\u7d22\u6d1b\u548c\u8389\u4e9a\u516c\u4e3b\u4ece\u98ce\u66b4\u519b\u9003\u8dd1\u3002"} +{"id": "0006097", "video_name": "26837acd-3e31-558c-a302-a7afe0e0a030", "text": "\u5728\u661f\u9645\u8ff7\u822a\u5236\u670d\u4e2d\u64cd\u4f5cEnterprise D\u6216\u661f\u9645\u8ff7\u822a\u4e2d\u7684\u4efb\u4f55\u5176\u4ed6\u8239\u53ea\u7684\u732b\u9f2c\u3002"} +{"id": "8003495", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "\u8367\u5149\u690d\u7269\u548c\u6811\u6728\u5728\u672a\u6765\u5408\u91d1\u548c\u9713\u8679\u57ce\u5e02\u4e2d\uff0c\u914d\u5408\u65f6\u5c1a\u82b1\u56ed\uff0c\u5c55\u73b0\u6280\u672f\u521b\u65b0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "8003716", "video_name": "5a0336c6-4416-5909-aee5-b69909553ea6", "text": "\u4eba\u4eec\u5728\u592a\u7a7a\u4e2d\u5403\u6c49\u5821\u76841940\u5e74\u4ee3\u5546\u4e1a\u5e7f\u544a\u3002"} +{"id": "0004213", "video_name": "0511460f-4241-5ae5-95ea-09e994d8a99e", "text": "\u81ea\u7136\u5730\u79fb\u52a8\u5634\u5507\uff0c\u7728\u773c\u775b\uff0c\u8ba9\u773c\u775b\u548c\u9888\u90e8\u7684\u706f\u5149\u6d3b\u7075\u6d3b\u73b0\u3002"} +{"id": "1005694", "video_name": "68a66a50-280f-534f-ac64-fe0c33e194a3", "text": "\u5916\u661f\u6587\u5b57\u73af\u7ed5\u7740\u7a7a\u95f4\u95e8\u6237\uff0c\u5468\u56f4\u6709\u53d1\u5149\u7684\u751f\u7269\u53d1\u5149\u7403\u548c\u95ea\u7535\u3002"} +{"id": "6004463", "video_name": "0debedf0-46ae-5afd-b103-02304e29a4ac", "text": "\u4f0a\u987f\u00b7\u54c8\u624e\u5fb7\u5e86\u795d\u65f6\u9760\u8fd1\u76f8\u673a\uff0c\u4ee5\u6ed1\u7a3d\u7684\u65b9\u5f0f\u8868\u73b0\u3002"} +{"id": "7003088", "video_name": "ec664a60-edf2-54d0-98be-022733c870a6", "text": "\u6751\u91cc\u7684\u5b69\u5b50\u4eec\u4e3e\u7740\u81ea\u5df1\u505a\u7684\u6d77\u62a5\uff0c\u4ef0\u671b\u7740\u65af\u7279\u62c9\uff0c\u6ee1\u6000\u5d07\u656c\u4e4b\u60c5\u3002"} +{"id": "2007283", "video_name": "37bf4d4e-c3ed-5e09-9735-25beba531148", "text": "2000\u5e74\uff0c9:16\uff0c\u7537\u4eba\u7126\u6025\u5730\u9003\u79bb\u623f\u5c4b\u3002"} +{"id": "3006195", "video_name": "5b8c2cef-49a5-521a-a1f9-a1b2e0474e6b", "text": "\u4e00\u67b6\u5927\u578b\u8fd0\u8f7d\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c16:9\uff0c4k\uff0c\u4e0e\u300a\u534e\u83b1\u58eb\u4e0e\u683c\u7f57\u7c73\u7279\u300b\u76f8\u540c\u7684\u7c98\u571f\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "7004961", "video_name": "63e20dec-df83-5a0f-9730-c634649553f1", "text": "\u6e90\u53e5\uff1aGIF\u52a8\u753b\uff0c\u4e24\u4e2a\u4eba\uff0c\u5973\u5b69\u548c\u7537\u4eba\u9a91\u7740\u6ed1\u677f\u8f66\uff0c\u5df4\u5398\u5c9b\u3002"} +{"id": "1003895", "video_name": "47d14fa5-0561-5176-9ef8-25f0ba80b4ea", "text": "\u6709\u620f\u5267\u6027\u6545\u4e8b\u548c\u5feb\u4e50\u7ed3\u5c40\u7684\u52a8\u6001\u7cbe\u7075\u6751\u5e84\u3002"} +{"id": "6004734", "video_name": "5895d0b5-0749-51e6-b432-c29cb6251f13", "text": "\u5728\u6e29\u5e03\u5c14\u767b\u4e2d\u5fc3\u7403\u573a\uff0c\u5c06\u955c\u5934\u62c9\u8fd1\uff0c\u805a\u7126\u5728\u7403\u573a\u4e0a\u7684\u8bfa\u74e6\u514b\u00b7\u5fb7\u7ea6\u79d1\u7ef4\u5947\u3002"} +{"id": "3006103", "video_name": "e53035bb-6648-597c-b338-777ce65f1432", "text": "\u5728\u7a7a\u4e2d\u73af\u7ed5\u7740\u95ea\u70c1\u7684\u8c1c\u9898\uff0c\u6bcf\u4e00\u4e2a\u90fd\u662f\u7b49\u5f85\u88ab\u89e3\u51b3\u7684\u96be\u9898\u3002"} +{"id": "7004339", "video_name": "4b154489-d9c1-55dd-99e5-6d6c7d97b25c", "text": "\u5728\u4e00\u6b21\u60ca\u4eba\u7684\u6280\u827a\u5c55\u793a\u4e2d\uff0c\u5c06\u8fd9\u4e2a\u6c38\u6052\u7684\u6770\u4f5c\u91cd\u65b0\u60f3\u8c61\uff0c\u795e\u79d8\u7684\u8499\u5a1c\u4e3d\u838e\u5728\u7199"} +{"id": "1004934", "video_name": "5b3622a1-9920-5dab-b3e2-3d1a837a21e6", "text": "\u4e00\u500b\u53e4\u8001\u7684\u5370\u5ea6\u5e78\u798f\u5bb6\u5ead\u5728\u60b2\u50b7\u7684\u9ed1\u6697\u4e2d\u9010\u6f38\u6d88\u5931\u3002\u903c\u771f\u76844K\u96fb\u5f71\u3002"} +{"id": "6002386", "video_name": "373f5148-527e-5362-978d-0dc8ef35c349", "text": "\u963f\u52aa\u7eb3\u57fa\u795e\u3002\u7531\u4e54\u4e39\u00b7\u683c\u91cc\u9ed8\uff08Jordan Grimmer\uff09\u3001J\u00b7C\u00b7\u83b1\u6069\u5fb7\u514b\uff08J C Leyendecker\uff09\u3001\u4f0a\u51e1\u00b7"} +{"id": "2004547", "video_name": "44d305d3-3131-55a4-b3bf-9d4f33ab8c25", "text": "\u4e00\u4e2a\u5f00\u5fc3\u7684\u5c0f\u5b69\u707f\u70c2\u5730\u5fae\u7b11\u7740"} +{"id": "6004716", "video_name": "af1ad6d3-e206-530a-bfb6-3efee1982808", "text": "\u8036\u7a23\u88ab\u9010\u51fa\u57ce\u5e02\u3002"} +{"id": "4004773", "video_name": "19155f2b-7679-5b23-9fc2-ec2e5450c175", "text": "\u4e50\u9ad8\u8f66 \u4e09\u83f1\u5170\u5fb7\u9177\u8def\u6cfdEVO 8 \u94f6\u8272\u6d82\u6599"} +{"id": "4004152", "video_name": "d993bd7b-572c-5c22-8355-73c90acd7bca", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u6597\u7bf7\u7684\u7537\u4eba\u7a7f\u8fc7\u9ed1\u6697\u7684\u5730\u7262\u6765\u5230\u4e86\u7ea2\u8272\u7684\u706f\u5149\u5904\u3002\u955c\u5934\u5bf9\u51c6\u4ed6\u7684\u80cc\u90e8\u3002"} +{"id": "6003496", "video_name": "873ea527-7bc2-554c-a13c-a6e4088c925e", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u6ee1\u662f\u90c1\u90c1\u8471\u8471\u7684\u7eff\u6811\u548c\u95ea\u95ea\u53d1\u5149\u7684\u84dd\u8272\u6cb3\u6d41\u7684\u571f\u5730\u4e0a\uff0c"} +{"id": "2004106", "video_name": "cc1fa687-5226-5db6-ba0a-2fe914ae9031", "text": "\u4e00\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u4ece\u5e10\u7bf7\u91cc\u722c\u51fa\u6765\u7684\u50cf\u7d20\u827a\u672f\u3002"} +{"id": "8002851", "video_name": "6205bd81-a828-5e46-a054-f4dec99a41c5", "text": "\u4e00\u4e2a\u4eba\u5750\u6216\u7ad9\u7740\uff0c\u4e13\u6ce8\u4e8e\u5728\u667a\u80fd\u624b\u673a\u4e0a\u53d1\u77ed\u4fe1\u6216\u4fe1\u606f\u3002"} +{"id": "6003901", "video_name": "f60c8656-fc60-5903-a9a5-dc83f46839f5", "text": "\u672c\u571f\u7f8e\u56fd\u79d1\u5b66\u5bb6\u6b63\u5728\u4f7f\u7528\u5149\u548c\u6c34\u6676\u4f5c\u4e3a\u80fd\u6e90\u6e90\uff0c\u4e3a\u7535\u5f71\u7167\u660e\u63d0\u4f9b\u60ca\u4eba\u7684\u9ad8\u79d1\u6280\u5b9e\u9a8c\u5ba4\u548c\u8f89\u714c\u88c5\u9970\u3002"} +{"id": "3003419", "video_name": "0683f882-73ed-59a9-8f8c-fe7ab779654b", "text": "\u6389\u8fdb\u96a7\u9053\u91cc\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003307", "video_name": "3cdcf0fc-79c6-5f29-9259-45f6efb138ae", "text": "\u8759\u8760\u4fa0\u548c\u94a2\u94c1\u4fa0\u5728\u7ebd\u7ea6\u5e02\u4e0a\u7a7a\u6218\u6597\uff0c\u8759\u8760\u4fa0\u88ab\u94a2\u94c1\u4fa0\u51fb\u4e2d\uff0c\u5411\u4e00\u680b"} +{"id": "1005786", "video_name": "6a83fe7a-f70b-5207-8e03-1f8a4feca898", "text": "\u591c\u7a7a\u4e2d\u5e03\u6ee1\u4e86\u661f\u661f\uff0c\u671b\u8fdc\u955c\u6307\u5411\u4e0a\u65b9\u3002"} +{"id": "7003363", "video_name": "21dc315f-f18a-51ae-98bc-0b2d6282ef82", "text": "\u521b\u65b0\u76843D\u4fe1\u606f\uff1a\u91d1\u8272\u7687\u51a0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006000", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "\u8def\u514b\u00b7\u5929\u884c\u8005\u7528\u5149\u5251\u5207\u5976\u916a\u3002"} +{"id": "2004772", "video_name": "a8a61b6c-2fdf-59e4-a6c4-c7c003fa6e8d", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u72ee\u5b50\u7ad9\u5728\u4e00\u4e2a\u5e74\u8f7b\u4eba\u7684\u8eab\u4e0a\uff0c\u62ac\u8d77\u524d\u722a\u51c6\u5907\u653b\u51fb\u3002"} +{"id": "2007761", "video_name": "7af71112-12e8-511b-82e0-8c38da726325", "text": "\u4e00\u4e2a\u5728\u6c99\u6f20\u4e2d\u6709\u4e09\u4e2a\u5929\u4f7f\u7684\u7537\u4eba"} +{"id": "3004922", "video_name": "42c17f7f-44b0-54e9-9249-162c149547b3", "text": "\u4e16\u754c\u91cf\u5b50\u529b\u5b66\u4e2d\u7684\u79d1\u5b66\u5bb6"} +{"id": "0003322", "video_name": "3b9f111f-aa61-533b-a6d4-a59c43dab46e", "text": "\u5feb\u901f\u7684\u76f8\u673a\u79fb\u52a8\u901a\u8fc7\u5e9f\u5f03\u7684\u6df7\u51dd\u571f\u5efa\u7b51\uff0c\u62cd\u6444\u7740\u8150\u70c2\u7684\u5c38\u4f53\u3002"} +{"id": "1005038", "video_name": "5d27f771-da6a-51e8-ae46-c3575209547c", "text": "\u6444\u50cf\u673a\u8ddf\u968f\u7403\u6eda\u8fc7\u8857\u9053\u3002"} +{"id": "0006792", "video_name": "3332cdac-9e9d-578e-8657-f5e55efcccf6", "text": "\u4e00\u4e2a\u7236\u4eb2\u5e2e\u52a9\u4ed6\u7684\u513f\u5b50\u9493\u9c7c\u3002"} +{"id": "0006960", "video_name": "35e1b16a-116a-51d5-bdb2-48445e7f7257", "text": "\u4e00\u4f4d\u5fc3\u7406\u54a8\u8be2\u5e08\u548c\u4e00\u4f4d\u5ba2\u6237\u6b63\u5728\u8fdb\u884c\u8c08\u8bdd\u3002"} +{"id": "2006294", "video_name": "08392545-bd4e-5ccd-974c-59b759c3dae3", "text": "\u4e00\u652f\u6709\u4e24\u53ea\u773c\u775b\u548c\u4e24\u6761\u817f\u7684\u7b14\u5728\u4e00\u5f20\u7eb8\u4e0a\u753b\u753b\u3002"} +{"id": "1005065", "video_name": "5d8e4abd-03fb-5535-9411-5bb573f18578", "text": "\u9a6c\u5e93\u65af\u7ad9\u5728\u4e00\u4e2a\u5ead\u9662\u91cc\uff0c\u795e\u60c5\u82e5\u6709\u6240\u601d\u3002"} +{"id": "6002958", "video_name": "a9970c7e-6edf-5881-8677-3f35f05a5059", "text": "\u5f69\u8272\u80cc\u666f\uff0c\u4e30\u5bcc\u591a\u5f69\u7684\u989c\u8272\uff0c\u751f\u52a8\u7684\u80cc\u666f\u3002"} +{"id": "0006040", "video_name": "257bafbb-6da4-5322-b8c1-ab3a87147be1", "text": "\u4ece\u767d\u8272\u7684\u5149\u6ed1\u96fe\u6c14\u4e2d\u51fa\u73b0\u5e76\u53d8\u6210\u9ed1\u6697\u5929\u7a7a\u4e0a\u7684\u767d\u8272\u6d41\u52a8\u4e91\u5f69\uff0c\u592a\u9633\u5149\u7ebf\u4ece\u4e91\u5f69\u4e2d\u7a7f"} +{"id": "2003506", "video_name": "81839f65-6464-5d62-b66f-86e7e6b267ca", "text": "\u5438\u5f15\u4e86\u4f0a\u85e4\u6f64\u4e8c\u7075\u611f\u7684\u602a\u7269\u5728\u6811\u6797\u4e2d\u7f13\u6162\u884c\u8d70\u3002"} +{"id": "1004702", "video_name": "575e6ac1-67bf-5fb4-b226-6039174d7279", "text": "\u718a\u732b\u5728\u6d77\u4e0a\u8df3\u821e\u3002"} +{"id": "3003916", "video_name": "2fb22af4-7df3-5493-9488-4c20b86e6839", "text": "\u79bf\u9df9\u505c\u5728\u7530\u91ce\u4e0a\uff0c\u80cc\u5f8c\u7684\u5c71\u5cf0\u6620\u7167\u51fa\u4f86\uff0c\u7136\u5f8c\u7a81\u7136\u958b\u59cb\u98db\u8d77\u4f86\u3002"} +{"id": "6004874", "video_name": "83af6136-7de3-5660-bcf4-265a7b81ff52", "text": "\u4e00\u5bf9\u592b\u59bb\u5750\u5728\u684c\u5b50\u4e24\u4fa7\uff0c\u8ba8\u8bba\u4ed6\u4eec\u7684\u5173\u7cfb\u3002"} +{"id": "3003894", "video_name": "8a71843b-0f94-5476-975c-70796afc3e25", "text": "\u7279\u6444\u4ea7\u54c1\u8bbe\u8ba1\u96f7\u67aa\u91c7\u7528\u5f02\u57df\u80fd\u6e90\u548c\u6750\u6599\uff0cLED\u706f\u5149\u827a\u672f\u6027\u7167\u660e\uff0c\u7535\u5f71\u822c\u7684\u5448\u73b0\u65b9\u5f0f\uff0c\u60f3\u8c61\u529b"} +{"id": "1004752", "video_name": "57fac576-6a7e-5474-a72c-7152198ea73b", "text": "\u5766\u514b\u5168\u901f\u9a76\u5411\u672a\u6765\u57ce\u5e02\n\nSource sentence: The sun sets over the ocean, painting the sky with shades of pink and orange. \n\n\u592a\u9633\u5728\u6d77\u6d0b\u4e0a\u843d\u4e0b\uff0c\u7528\u7c89"} +{"id": "3003236", "video_name": "0d4993eb-96ab-5c7b-a6ff-ce48c87fee8a", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0cKael\u7d27\u63e1\u5730\u56fe\uff0c\u76ee\u5149\u575a\u5b9a\u5730\u671b\u5411\u8fdc\u65b9\u7684\u5730\u5e73\u7ebf\u3002\u8868\u8fbe\u4ed6\u4eec\u5df2\u7ecf\u51c6\u5907\u597d\u8e0f\u4e0a\u4e00\u6bb5"} +{"id": "0006325", "video_name": "2aa9514b-bb6c-58c3-95a6-dfe91ad4cb62", "text": "\u9e1f\u513f\u5728\u53fd\u53fd\u55b3\u55b3\u5730\u7b51\u5de2\u3002"} +{"id": "4004008", "video_name": "0190e44f-197f-5962-910e-d9d1dcc62e98", "text": "\u4f2f\u5229\u6052\uff0c\u5723\u8bde\u8282\uff0c\u8bde\u751f\u5a74\u5b69\u8036\u7a23\u57fa\u7763\uff0c\u4e0e\u5723\u7ea6\u745f\u592b\u548c\u4ed6\u7684\u6bcd\u4eb2\u7c73\u5229\u4e9a\u59c6"} +{"id": "0004953", "video_name": "122cf5de-01a9-5e67-b221-2db2dd8d0aef", "text": "\u4e00\u7fa4\u53ef\u7231\u7684\u718a\u732b\u5212\u7740\u4e00\u8258\u5c0f\u8239\uff0c\u6cb3\u6c34\u4ece\u8239\u65c1\u6e85\u8d77\u3002"} +{"id": "6004244", "video_name": "2579cf97-5ae6-5fd1-b749-8f9c76792660", "text": "\u7c7b\u578b\uff1a\u73b0\u5b9e\u4e3b\u4e49 \u5206\u8fa8\u7387\uff1a\u9ad8\u6e05 \u573a\u666f\uff1a\u6237\u5916 \u89d2\u8272\uff1a\u4e00\u4f4d\u7a7f\u7740\u65e5\u5f0f\u6c34\u624b\u670d\u3001\u8138\u578b\u4e3a\u692d\u5706\u5f62\u7684\u53ef\u7231"} +{"id": "7003197", "video_name": "5292f870-7879-575c-a298-5ba06b97c082", "text": "\u4e00\u5bb6\u4eba\u642c\u8fdb\u4e86\u4e00\u5ea7\u53e4\u8001\u7684\u7ef4\u591a\u5229\u4e9a\u5f0f\u623f\u5c4b\uff0c\u53d1\u73b0\u9601\u697c\u91cc\u6709\u4e00\u9762\u5e03\u6ee1\u7070\u5c18\u7684\u53e4\u8463"} +{"id": "1003162", "video_name": "3a401320-18c3-52c1-a345-25f3ab8e8027", "text": "\u5728\u4e00\u4e2a\u7e41\u5fd9\u7684\u72af\u7f6a\u73b0\u573a\uff0c\u5de5\u85e4\u65b0\u4e00\u5728\u660e\u4eae\u7684\u8367\u5149\u706f\u4e0b\u4ed4\u7ec6\u68c0\u67e5\u4e00\u628a\u67d3\u8840\u7684\u5200"} +{"id": "0006861", "video_name": "345e2e54-5f44-5ad0-b804-eac57a3764e0", "text": "\u7075\u9b42\u76f8\u8fde\uff0c\u4f46\u7ebf\u5df2\u7ecf\u65ad\u4e86\u3002"} +{"id": "0003051", "video_name": "36280304-52aa-56f5-a91e-aa02feed112b", "text": "\u5c55\u793a\u4e00\u6bb5\u7537\u6027\u7a46\u65af\u6797\u670b\u53cb\u5206\u4eab\u7f8e\u98df\u3001\u6b22\u805a\u4e00\u5802\u7684\u9ad8\u8d28\u91cf\u89c6\u9891\u7247\u6bb5\u3002"} +{"id": "2003314", "video_name": "ae93ae03-cb36-5d69-8e72-e2bb0475a360", "text": "\u8ba9\u90a3\u4e2a\u73a9\u5076\u8bfb\u4e00\u5f20\u7eb8\u6761\uff0c\u5411\u6444\u50cf\u5934\u4f20\u8fbe\u4fe1\u606f\u3002"} +{"id": "6003656", "video_name": "3e248201-ccf3-5504-b028-af13a4c643e5", "text": "\u51e0\u4e2a\u670b\u53cb\u5728\u697c\u9876\u9732\u53f0\u4e0a\u4ea4\u8c08\u79d8\u5bc6\u3002\u4ed6\u4eec\u76f8\u4e92\u6ce8\u89c6\u7740\uff0c\u77e5\u9053\u4ed6\u4eec\u7684\u547d\u8fd0\u4e0d\u662f\u5728\u4e00\u8d77\u5e78\u798f\u3002"} +{"id": "2007540", "video_name": "e914dcdd-05b1-5959-b630-843ab3edbc6a", "text": "\u5355\u8eab\u7684\u5370\u5ea6\u5e74\u8f7b\u7f8e\u4e3d\u5973\u6027\u5728\u6cb3\u8fb9\u6307\u51fa\u53e6\u4e00\u4e2a\u5e74\u8f7b\u5973\u6027\u3002"} +{"id": "2006016", "video_name": "c7fb8c65-26e7-585d-b5f2-3c9001cdd1fd", "text": "19\u5c81\u7537\u5b69\u5728\u4e2d\u4e16\u7eaa\u9152\u9986\uff0c8k\uff0c\u903c\u771f\u3002"} +{"id": "8003002", "video_name": "14e519ae-cd6c-58c6-b0c4-c2d894513425", "text": "\u97f3\u4e50\u661f\u7403 \u4fe1\u606f\uff1aAydym.com (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0003750", "video_name": "42bf0ab3-afb2-5028-9511-561b99945d67", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u7ebd\u7ea6\u6d4f\u89c8\u65f6\u5c1a\u4ea7\u54c1\u3002"} +{"id": "0003081", "video_name": "36a9223b-a8bb-5eed-8f65-2cf80ab0a1da", "text": "\u4e00\u53ea\u62e5\u6709\u91d1\u9505\u7684\u5f69\u8679\u5c3d\u5934\u7684\u5c0f\u7cbe\u7075\u3002"} +{"id": "6002421", "video_name": "5d487bab-b57f-5267-838a-7a47add17033", "text": "\u8d85\u7ea7\u5973\u4eba\u98de\u8d8a\u592a\u7a7a\u5e76\u964d\u843d\u5728\u706b\u661f\u4e0a\u3002"} +{"id": "8001456", "video_name": "7e0416ff-1941-5ac0-801a-d9c942582796", "text": "\u4ec5\u6709\u7c89\u4e1d\u5973\u5b69\u5c45\u4f4f\u5728\u79bb\u7f51\u751f\u6d3b\u4e2d\u3002"} +{"id": "2005860", "video_name": "1ea0fc07-94e9-56ce-9941-a903b6e7f345", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7bdd\u706b\u65c1\uff0c\u5468\u56f4\u88ab\u5c0f\u5996\u7cbe\u5305\u56f4\u7740\u3002"} +{"id": "4002929", "video_name": "4d3afe9b-08c7-5df0-a346-7dd40cd94312", "text": "1935\u5e74\u7684\u6cf0\u6664\u58eb\u6cb3\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "8003350", "video_name": "09d9e816-1a1b-5a74-a968-859d2f1e1277", "text": "\u6d1b\u5fb7\u00b7\u62c9\u59c6\u548c\u5e0c\u5854\u5728\u62c9\u59c6\u5bfa\u5e99\u3002"} +{"id": "3005759", "video_name": "6a357013-afe0-5a14-a8ba-530028035352", "text": "\u4e00\u53ea\u9e21\u53c2\u52a0TikTok\u7684\u821e\u8e48\u6bd4\u8d5b\uff0c\u5c55\u793a\u4e13\u4e1a\u7684\u821e\u6b65\u3002"} +{"id": "0003113", "video_name": "3749148a-ceb6-5cf6-a577-adcbc4bf9792", "text": "\u5728\u52a8\u4f5c\u6355\u6349\u5de5\u4f5c\u5ba4\u91cc\uff0c\u5bfc\u6f14\u6253\u5f00\u4e00\u4e2a\u76d2\u5b50\uff0c\u91cc\u9762\u6709\u4e00\u4e2a\u76f8\u673a\u3002"} +{"id": "8003634", "video_name": "5bab9f9a-badd-5c54-8e16-bc086656982d", "text": "\u4e00\u4e2a\u9634\u5f71\u4eba\u7269\u5728\u9634\u6c89\u60b2\u4f24\u7684\u51ac\u5929\u5929\u6c14\u4e2d\u8fd1\u8ddd\u79bb\u5730\u770b\u5411\u4e00\u4e2a\u623f\u5b50\u7684\u7a97\u6237\u3002"} +{"id": "2007023", "video_name": "f8bbd30f-42ab-526f-98b1-e82cfbf4c45d", "text": "\u300a\u4f7f\u547d\u53ec\u5524\u300b\u4e2d\u7684\u5e7d\u7075\u548c\u300a\u5149\u73af\u300b\u4e2d\u7684\u58eb\u5b98\u957f\u8054\u624b\u5bf9\u6297\u90aa\u6076\u673a\u5668\u4eba\u3002"} +{"id": "1003679", "video_name": "43d3a8d0-c802-5583-834e-1ceccfb15519", "text": "\u5b66\u6821\u7b14\u8bb0\u672c\u548c\u4e66\u5728\u98de\u673a\u4e0a\u3002"} +{"id": "6004673", "video_name": "3f6587bd-5b0d-53a6-8ead-ba623ee87d0b", "text": "\u9ed1\u8272\u897f\u88c5\u7684\u7537\u4eba\u7ad9\u5728\u72c2\u66b4\u7684\u95ea\u7535\u98ce\u66b4\u4e2d\uff0c\u7535\u5149\u95ea\u70c1\u3002"} +{"id": "3006765", "video_name": "11d6ba34-457e-577b-a838-b461d601e3f4", "text": "\u65af\u5df4\u9c81\u5728\u5c71\u533a\u548c\u96e8\u4e2d\u884c\u9a76\u3002"} +{"id": "2007523", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "\u8857\u9053\u4e0a\u4fef\u89c6\u9ad8\u5927\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u7684\u89c6\u89d2\u3002\u6c1b\u56f4\u662f\u9ed1\u6697\u7684\u3001\u591c\u665a\u7684\u3001\u96e8\u5929\u300216\uff1a9\u6bd4\u4f8b\u3002\u8d5b\u535a"} +{"id": "2005279", "video_name": "d0dbcffd-94d5-547a-9573-78deddb1a9ff", "text": "\u4e00\u53ea\u732b\u5728\u65e5\u843d\u65f6\u5206\u5728\u516c\u56ed\u91cc\u5954\u8dd1\u3002"} +{"id": "0006925", "video_name": "35682bca-2741-5db8-bca3-0ad6a218de44", "text": "\u9ad8\u5cf0\u7ad9\u5728\u6d77\u5cb8\u4e0a\uff0c\u770b\u7740\u7f8e\u4eba\u9c7c\u6d88\u5931\u5728\u6ce2\u6d6a\u4e0b\u3002\u6d77\u6ee8\u5c0f\u9547\u6c90\u6d74\u5728\u6e05\u6668\u7684\u5149\u8292\u4e2d\uff0c\u6d77"} +{"id": "6004277", "video_name": "f9c5aed8-1212-5eff-b5b5-25aaf484e037", "text": "\u7728\u773c\u548c\u5598\u606f\uff0c\u8df3\u52a8\u7740\u3002\u6700\u53ef\u7231\u7684\u5c0f\u732b\u5750\u5728\u51b0\u5824\u4e0a\uff0c\u5728\u95ea\u70c1\u7684\u6708\u4eae\u548c\u6d41\u661f\u4e0b\uff0c\u770b\u7740"} +{"id": "3003160", "video_name": "d78db039-a1db-59e1-8b0a-854f8922ada7", "text": "\u4e00\u4e2a\u52a8\u6001\u7684\u8d77\u91cd\u673a\u62cd\u6444\u7ed5\u7740\u4e00\u4f4d\u5728\u6708\u5149\u5c4b\u9876\u4e0a\u8fdb\u884c\u6fc0\u70c8\u5251\u6218\u7684\u89d2\u8272\u3002"} +{"id": "1003053", "video_name": "3824f2a4-a856-52ad-aa3e-a6696f2453fc", "text": "\u73b0\u4ee3\u6751\u5e84\u91cc\uff0c\u6709\u5361\u8f66\u8f7d\u7740\u5e84\u7a3c\u884c\u9a76\uff0c\u623f\u5c4b\u6574\u6d01\u6709\u5e8f\uff0c\u6d82\u4e0a\u4e86\u7c89\u7ea2\u3001\u7eff\u8272\u3001\u9ec4\u8272\u548c"} +{"id": "3004208", "video_name": "b70f4ab5-3285-58aa-b4f0-1b530b8e665a", "text": "\u597d\u670b\u53cb\u4f1a\u5728\u4efb\u4f55\u60c5\u51b5\u4e0b\u7ed9\u4f60\u652f\u6301\uff0c16:9\u3002"} +{"id": "2007439", "video_name": "cd7db44e-260c-5eb9-815e-5bdeb570e17f", "text": "\u9c7c\u6e38\u5230\u6c60\u5858\uff0c\u7528\u5361\u901a\u7684\u65b9\u5f0f\u4e0e\u5176\u4ed6\u9c7c\u5206\u4eab\u4e86\u4ed6\u4e0d\u53ef\u601d\u8bae\u7684\u5192\u9669\u7ecf\u5386\u3002"} +{"id": "1003794", "video_name": "46089f2d-d85e-548a-98af-b1a5adcea3bf", "text": "\u5728\u4e1c\u4eac\u7684\u534a\u591c\uff0c\u4fdd\u65f6\u6377\u8f66\u5728\u57ce\u5e02\u4e2d\u884c\u9a76\u3002"} +{"id": "6002084", "video_name": "aab36d49-19da-5844-9447-59f80db24c2f", "text": "\u7535\u5f71\u822c\u7684\u975e\u6d32\u6751\u5e84\u5728\u9ec4\u660f\u65f6\u5206\u7684\u4e1b\u6797\u4e2d\u3002"} +{"id": "0006221", "video_name": "28960c1a-e343-58c2-aa1c-668bb9801348", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u9ece\u5df4\u5ae9\u5403\u86cb\u7cd5\u3002"} +{"id": "7004126", "video_name": "a2574647-7b74-5d08-9344-d1a39cc6ab3a", "text": "\u4e0a\u5e1d\u7528\u4e03\u5929\u521b\u9020\u4e86\u4e16\u754c\u3002"} +{"id": "8001381", "video_name": "5e699f04-b6bf-5b3d-9578-bfae8e623cb9", "text": "\u4e00\u8fb9\u662f\u6280\u672f\uff0c\u53e6\u4e00\u8fb9\u662f\u672a\u6765\u3002"} +{"id": "2005097", "video_name": "727c1cdf-7ca1-5e5e-b7c7-692680e5c167", "text": "\u4eba\u4eec\u6234\u7740\u53e3\u7f69\u5954\u8dd1\uff0c\u793e\u4ea4\u5a92\u4f53\u5728\u80cc\u666f\u4e2d\uff0c\u7535\u5f71\u822c\u768416k\u3001\u8d85\u7ec6\u8282\u3001\u9ad8\u6e05\u3002"} +{"id": "8003056", "video_name": "3c81d3a2-6cb2-54f0-b21f-90ca2fc832d4", "text": "\u4e1c\u65b9\u98ce\u683c\u548c\u8c10\u5730\u878d\u5408\u4e86\u4e9a\u6d32\u6587\u5316\u5143\u7d20\uff0c\u8425\u9020\u51fa\u5b81\u9759\u4f18\u96c5\u7684\u6c1b\u56f4\u3002\u4e00\u8fdb\u95e8\uff0c\u88c5\u9970\u7740"} +{"id": "4004059", "video_name": "62c0174e-c9db-5dcc-8db9-eb912f081ad4", "text": "\u590d\u53e4\u82b1\u56ed\u6d3e\u5bf9\u4f20\u5355\uff0c\u5370\u5237\u827a\u672f\u6770\u4f5c\uff0c\u6700\u4f73\u63d2\u56fe\u4f5c\u54c1\uff0c\u6700\u4f73\u63d2\u56fe\u4f5c\u54c1\uff0c\u83b7\u5956\u4f20\u5355\uff0c"} +{"id": "0005656", "video_name": "1ed052a5-2c02-5d33-9833-c1827a22bebb", "text": "\u753b\u51fa\u4e4c\u514b\u5170\u58eb\u5175\u5982\u4f55\u593a\u53d6\u83ab\u65af\u79d1\u514b\u91cc\u59c6\u6797\u5bab\u5e76\u628a\u666e\u4eac\u88c5\u8fdb\u74f6\u5b50\u91cc\uff0c\u8ba9\u4ed6"} +{"id": "5001573", "video_name": "5ffc1c20-ee63-5a38-af6a-70404b780d27", "text": "\u9c91\u9c7c\u738b\u65e2\u662f\u9c7c\u7c7b\u4e4b\u738b\uff0c\u4e5f\u6709\u5934\u4e0a\u7684\u738b\u51a0\u3002"} +{"id": "1006325", "video_name": "73c30724-1c68-52c6-9a4c-e6cc9c0a3c1f", "text": "\u5728\u79c1\u4eba\u7269\u54c1\u7684\u6d88\u8d39\u4e2d\uff0c\u72ec\u5360\u6027\u548c\u7ade\u4e89\u6027\u662f\u5b58\u5728\u7684\u3002"} +{"id": "2003337", "video_name": "f422bf8f-d8af-517f-824e-bcefb2550f4b", "text": "\u4e00\u53ea\u767d\u8272\u7684\u9e70\u964d\u843d\uff0c\u4ece\u5730\u4e0a\u62ff\u8d77\u4e00\u4e2a\u76fe\u724c\u3002"} +{"id": "0003509", "video_name": "3ebe5593-1656-5df1-b37f-e98efef71252", "text": "\u94c1\u7532\u5947\u4fa0\u7a7f\u7740\u6df1\u9ed1\u8272\u7684\u5957\u88c5\uff0c\u98de\u7fd4\u5728\u9ad8\u5bf9\u6bd4\u5ea6\u7684\u80cc\u666f\u4e0b\uff0c\u91c7\u7528HDR\u6280\u672f\uff0c\u62cd\u64444"} +{"id": "4003820", "video_name": "39fb4212-4629-5476-83b5-5e066eec3dc3", "text": "\u8fd9\u4e9b\u677f\u5757\u7684\u78b0\u649e\u548c\u6301\u7eed\u8fd0\u52a8\u7ee7\u7eed\u5851\u9020\u548c\u62ac\u5347\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\uff0c\u5305\u62ec\u73e0\u7a46\u6717\u739b"} +{"id": "3005653", "video_name": "43462f9b-6076-5f58-990f-e1df17bc8161", "text": "\u5de8\u578b\u6cd5\u8001\u7684\u9057\u4ea7\u957f\u5b58\u3002"} +{"id": "4002660", "video_name": "5292e3c3-62da-5e2d-bbd1-0b7f47c34748", "text": "\u5370\u5ea6\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6c34\u4e0b\u7741\u5f00\u773c\u775b\u3002"} +{"id": "7004543", "video_name": "b5587754-5e26-5945-8d49-c573a51bcd83", "text": "\u82f1\u6587\u53e5\u5b50\uff1ahero summoning a shadow dragon,in the desert\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u5728\u6c99\u6f20\u4e2d\u53ec\u5524\u6697\u5f71\u9f99\u3002"} +{"id": "0003555", "video_name": "3f7bfde7-4765-5960-9b0e-a18b77205da9", "text": "\u6492\u54c8\u62c9\u6c99\u6f20\u7684\u4e00\u5e55\u3002\u98de\u884c\u5458\u5750\u5728\u4ed6\u574f\u6389\u7684\u98de\u673a\u4e0a\u3002\u4ed6\u75b2\u60eb\u4e0d\u582a\uff0c\u5fc3\u70e6\u610f\u4e71\u3002\u4ed6"} +{"id": "1005949", "video_name": "6d46e00d-cd74-5c55-a73b-eb08cb9b1e74", "text": "\u5c71\u4e2d\u65e5\u51fa\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u5361\u901a\u98ce\u683c ACHQD LUYS\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "0004295", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "\u4e00\u4e2a\u7537\u5b69\u5f15\u5bfc\u4e00\u7fa4\u7f8a\u5728\u8349\u5730\u4e0a\u5403\u8349\u3002"} +{"id": "3003392", "video_name": "ace146d9-aa35-52b7-b9c6-6b69a2ebc23d", "text": "\u4e00\u8f86\u8f66\u9876\u4e0a\u642d\u8f7d\u7740\u660e\u4eae\u7684LED\u89c6\u9891\u6807\u5fd7\uff0c\u5728\u591c\u95f4\u57ce\u5e02\u9053\u8def\u4e0a\u5de1\u822a\u3002\u6807\u5fd7\u4e0a\u6b63\u5728\u64ad\u653e\u52a8\u6001\u800c\u4e30\u5bcc\u7684\u89c6\u9891"} +{"id": "6003803", "video_name": "20fa2fdc-02ed-5628-9ec2-a65077b3ffa4", "text": "\u732b\u5728\u5543\u4e66\u7684\u8fb9\u7f18\u3002"} +{"id": "1006890", "video_name": "7df1d94b-f9e6-558e-9909-4b32d3d91406", "text": "\u6211\u7684\u5c0f\u578b\u4e2a\u4eba\u53ef\u7231\u767d\u8272\u673a\u5668\u4eba\u3002"} +{"id": "0006983", "video_name": "36410757-1ac0-58cf-9dd4-3d6322ae8f68", "text": "\u7f8e\u4e3d\u7684\u821e\u8005\u7a7f\u7740\u957f\u88d9\u8df3\u821e\uff0c4K \u5206\u8fa8\u7387\u3002"} +{"id": "6004957", "video_name": "e3c4bd63-38ac-5fb2-b6f2-56996e9a07fb", "text": "\u4e00\u4e2a\u4eba\u72ec\u81ea\u5750\u5728\u957f\u51f3\u4e0a\u7684\u8fd1\u666f\u51fa\u73b0\u3002\u4ed6\u7684\u8138\u4e0a\u663e\u9732\u51fa\u4e00\u79cd\u5fe7\u90c1\u548c\u601d\u8003\u3002\u5728\u80cc\u666f\u4e2d\uff0c\u900f\u660e\u7684"} +{"id": "7003681", "video_name": "07099085-5527-5745-be12-49c259c02dad", "text": "\u788e\u7247\u7684\u9668\u77f3\u649e\u51fb\u5730\u7403\uff0c\u5c06\u6492\u54c8\u62c9\u6c99\u6f20\u5288\u6210\u4e24\u534a\u3002\n\nSource sentence: The doctor prescribed me some medicine for my cold. \n\u533b\u751f\u7ed9\u6211\u5f00"} +{"id": "8003550", "video_name": "74bbe113-9bcb-591b-b37c-bb45d5ac40d5", "text": "\u4e16\u754c\u9b54\u517d\u5750\u9a91\u6389\u843d\u5c0f\u7ec4\u7684\u6807\u5fd7\u8bbe\u8ba1"} +{"id": "5001277", "video_name": "8dcf1bb2-66d8-5da7-ab64-d97dbdc068f0", "text": "\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u7535\u5f71\u611f\u3002\u4e00\u4e2a\u82f1\u4fca\u7684\u79c3\u5934\u767d\u8272\u4eba\u5f62\u673a\u5668\u4eba\uff0c\u817f\u4e0a\u7f20\u7740\u4e00\u53ea\u8708\u86a3\u3002\u573a\u666f\uff1a\u5728"} +{"id": "7002185", "video_name": "90a3acdc-5dbc-5b29-8a14-bce36bed0377", "text": "\u5b66\u751f\u8d70\u8fdb\u6765\u770b\u5230\u6392\u706f\u8282\uff0c\u5411\u53f3\u8f6c\u5934\u770b\u5230\u6210\u5e74\u4eba\u3002"} +{"id": "3004871", "video_name": "acb4a6c4-25c5-5826-b4bb-703b416ee20c", "text": "\u4e00\u53ea\u7ae0\u9c7c\u53c2\u52a0\u6597\u725b\u6bd4\u8d5b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002549", "video_name": "f08383ff-cacd-58ca-979a-7b255e49632d", "text": "\u4eba\u548c\u4e00\u53ea\u72d7\u8d70\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u4eba\u884c\u9053\u4e0a\u3002\u8001\u7535\u5f711920\u5e74\u3002 \n\nSource sentence: The sun sets behind the mountains, casting a golden glow over the valley. \n"} +{"id": "4002312", "video_name": "bf26634d-8348-5b71-94bc-93326c62d408", "text": "\u4e00\u53ea\u62e5\u6709\u6a59\u7ea2\u8272\u5c3e\u5df4\u7684\u6597\u9c7c\u5728\u4e91\u95f4\u7ff1\u7fd4\uff0c\u795e\u79d8\u3002"} +{"id": "3004815", "video_name": "64084cef-2698-5852-a0f4-e5a8359a02fa", "text": "\u521b\u4f5c\u4e00\u4e2a\u8ff7\u4eba\u7684\u89c6\u9891\u8499\u592a\u5947\uff0c\u5c55\u793a\u5b81\u9759\u7684\u81ea\u7136\u666f\u89c2\uff0c\u7279\u522b\u5f3a\u8c03\u6355\u6349\u98ce\u666f\u3001\u690d\u7269\u548c\u52a8\u7269"} +{"id": "5001583", "video_name": "0b4d1963-c1e5-500a-bb1e-28c18eabd375", "text": "\u63d0\u793a\uff1a\u4e00\u5f20\u8fdc\u666f\u4fef\u77b0\u5728\u6d77\u6d0b\u4e2d\u8fdb\u884c\u7684\u6050\u9f99\u6218\u4e89\uff0c\u672b\u65e5\u5df2\u81f3\uff0c\u6d77\u6d6a\u7ffb\u6d8c\uff0c\u5c71\u5ce6\u5d29"} +{"id": "2007461", "video_name": "ff94eb94-16c8-56f8-af8b-7458310d1627", "text": "\u751f\u6210\u4e00\u5e45\u4ee3\u8868\u74e6\u695e\u7eb8\u677f\u7bb1\u672a\u6765\u7684\u5f62\u8c61\u3002\u60f3\u8c61\u4e00\u4e2a\u521b\u65b0\u7684\u573a\u666f\uff0c\u5176\u4e2d\u7eb8\u677f\u7bb1\u662f\u4e2a\u6027\u5316\u3001\u53ef\u6301\u7eed\u7684\uff0c\u5e76\u4e14"} +{"id": "0005333", "video_name": "18fa844a-c1e2-50a6-aedc-137f294616db", "text": "\u5728\u590f\u5a01\u5937\u6d77\u6ee9\u4e0a\u6709\u4e24\u4e2a\u5531\u6b4c\u7684\u4eba\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0005003", "video_name": "1312817b-d052-5197-b7f5-cc02460be1b9", "text": "\u5c0f\u4e11\u9c7c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c\u9633\u5149\u900f\u8fc7\u6c34\u9762\u7167\u8000\u3002"} +{"id": "6003268", "video_name": "d2c07f1f-aca1-5f4b-b7cd-f27e13c9dccf", "text": "\u5728\u5916\u592a\u7a7a\u4e2d\uff0c\u89c6\u70b9\u7a7f\u8d8a\u884c\u661f\u3001\u6052\u661f\u3001\u661f\u7cfb\u548c\u5b87\u5b99\uff0c\u9ad8\u901f\u98de\u9a70\u3002"} +{"id": "5001433", "video_name": "0fbca990-1db2-59ec-aae5-c4b2af948649", "text": "\u5b89\u88c5\u67b6\u89c6\u9891\uff0c\u7535\u89c6\u652f\u67b6\u3002"} +{"id": "3006424", "video_name": "aa1f2a14-7bf6-523c-8aeb-f123afdb23e8", "text": "\u96f7\u66b4\u6fc0\u6218\u4e2d\uff0c\u955c\u5934\u9891\u7e41\u79fb\u52a8\uff0c\u9ad8\u89d2\u5ea6\u955c\u5934\uff0c\u51fa\u62f3\u540e\u653e\u5927\u3002"} +{"id": "5001125", "video_name": "97420c31-78ea-593d-8239-9397e00a462c", "text": "\u8863\u670d\u795e\u5947\u5730\u5728\u4eba\u4eec\u8eab\u4e0a\u53d8\u5f62\u3002\u771f\u5b9e\u3001\u7535\u5f71\u822c\u300180\u5e74\u4ee3\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "2005326", "video_name": "be4b0faf-b322-5c06-933b-9839de5f9492", "text": "\u80a9\u8180\u5728\u83f2\u8fbe\u7684\u9634\u5f71\u4e0b\u3002"} +{"id": "2004219", "video_name": "a6bca154-2c13-5e0a-8f26-bee57d076479", "text": "\u4e00\u53ea\u6234\u7740VR\u773c\u955c\u7f16\u7801\u7684\u732b"} +{"id": "0005527", "video_name": "1c46f03a-58e0-5c71-b642-c4db7ff6e053", "text": "\u5728\u4e00\u4e2a\u96ea\u5929\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u9a7e\u9a76\u7740\u4e00\u8f86\u8dd1\u8f66\u53bb\u5546\u5e97\u4e70\u9c7c\u5403\u3002"} +{"id": "2005919", "video_name": "ce91058a-5bb9-5fc0-a3db-c790e7014cf1", "text": "\u4e24\u4e2a\u5c0f\u5973\u5b69\u548c\u4e24\u4e2a\u5c0f\u7537\u5b69\u6b63\u5728\u5435\u67b6\u3002"} +{"id": "7004105", "video_name": "fcc88ff9-3b56-56f4-a5e6-71cf5ec56b4d", "text": "\u4e00\u4e2a\u516c\u4e3b\u5728\u71c3\u70e7\u7684\u6218\u573a\u4e0a\u884c\u8d70\u3002"} +{"id": "5001550", "video_name": "7939fcc7-1d9e-54a9-8290-b3755ea2b0fb", "text": "\u5929\u4e0a\u7684\u7a7a\u95f4\u751f\u7269\u901a\u8fc7DMT\u6f29\u6da1\u6b22\u8fce\u4e00\u4e2a\u8d85\u8d8a\u4eba\u7c7b\u7684\u5b58\u5728\u3002"} +{"id": "8002700", "video_name": "5aaee678-6615-5e86-8327-19f04a17ac51", "text": "2077\u5e74\u7684\u672a\u6765\u60ac\u6d6e\u6c7d\u8f66\u5728\u5de8\u5927\u57ce\u5e02\u7684\u8857\u9053\u4e0a\u9ad8\u901f\u884c\u9a76\u7684\u56fe\u50cf\u3002\u6c7d\u8f66\u5e94\u8be5\u662f\u6a31\u6843\u7ea2\u8272\u7684\u3002"} +{"id": "1005530", "video_name": "65c4dc10-eb4b-5e5f-9c25-38787d7f1f11", "text": "\u7a81\u7136\u7684\u9ed1\u6697\u4e4b\u540e\uff0c\u51fa\u73b0\u4e86\u4e00\u4e2a\u53ef\u6015\u751f\u7269\u7684\u60ca\u5413\uff0c8K\uff0c\u903c\u771f\uff0c16:9\u3002"} +{"id": "0003824", "video_name": "4428c731-733a-5e60-935f-497a26958964", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u60b2\u4f24\u548c\u5bb3\u6015\u7684\u7537\u4eba\u6b63\u5728\u770b\u7740\u4e00\u53ea\u653e\u5728\u5c0f\u684c\u5b50\u4e0a\u7684\u8721\u70db\uff0c\u4ed6\u88ab\u9ed1\u6697\u5305\u56f4\uff0c\u9ed1"} +{"id": "4003778", "video_name": "44363d0f-9ad9-5eb5-988c-e815d38f6aa1", "text": "\u7537\u5b50\u8f6c\u8eab\u770b\u5411\u955c\u5934\u5e76\u7728\u773c\u3002\u4fe1\u606f\uff1a\u7537\u5b50\u7728\u773c\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0003345", "video_name": "3bf0ffc8-cd38-57fe-8dac-1be3eae2a829", "text": "\u6234\u5e3d\u5b50\u548c\u957f\u5916\u5957\u7684\u7537\u5b50\u7a7f\u8fc7\u65e0\u5c3d\u7684\u8ff7\u5bab\u3002"} +{"id": "8003353", "video_name": "6c70deab-8920-5469-b320-f1d505343eb4", "text": "\u6cb3\u6d41\uff0c\u5199\u5728\u77f3\u5934\u4e0a\u3002\u4fe1\u606f\uff1a\u7f57\u59c6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003763", "video_name": "9265a5de-e313-5b0a-af93-b5d4276d1b7b", "text": "\u521b\u5efa\u4e00\u4e2a\u5f3a\u5927\u7684\u82f1\u96c4\u6218\u6597\u5f62\u8c61\uff0c\u5177\u6709\u80fd\u91cf\u5149\u73af\uff0c\u77ed\u53d1\u5411\u540e\u68b3\u7406\uff0c30\u5c81\uff0c\u7537\u6027\uff0c\u91d1\u8272\u773c\u775b\uff0c\u7a7f"} +{"id": "7004861", "video_name": "a9f9a934-1013-5387-bffb-2fdb0504fd98", "text": "\u9f99\u5973\u5deb\u706b\uff0c\u57ce\u5821\uff0c\u7ea2\u6708\uff0c\u5954\u8dd1"} +{"id": "2007410", "video_name": "0deff2a2-af9a-56cc-b08c-eba2a794149e", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u7535\u5f71\u5236\u4f5c\u4e2d\u54ed\u6ce3\uff0c\u9ad8\u6e05\uff0c\u660f\u6697\u7684\u706f\u5149\u3002"} +{"id": "3006606", "video_name": "e7d23528-1d76-508a-8c90-cca1cc080858", "text": "\u521b\u9020\u4e00\u4e2a\u65b0\u7684\u52a8\u6f2b\u89d2\u8272\u7684\u753b\u50cf\uff0c\u76f4\u5230\u73b0\u5728\u5b83\u88ab\u7528\u4e8e\u52a8\u6f2b\u4e2d\u3002"} +{"id": "6003702", "video_name": "8a02110e-1365-51ef-a271-eae5766f0827", "text": "\u8eb2\u5728\u6bef\u5b50\u4e0b\u7684\u5973\u5b69\uff0c\u773c\u775b\u56e0\u6050\u60e7\u800c\u7741\u5f97\u5927\u5927\u7684\u3002"} +{"id": "7002400", "video_name": "b1d21e4c-d310-59c4-b999-0037b055115e", "text": "\u5728\u4ff1\u4e50\u90e8\u548c\u6d3e\u5bf9\u4e0a\u8df3\u821e\u7684\u5973\u4eba\u3002"} +{"id": "8001490", "video_name": "8d73da84-5ce9-5744-ae12-136b0eb60479", "text": "\u4e00\u5c0f\u7fa4\u4eba\u5728\u9ed1\u6697\u7684\u5367\u5ba4\u91cc\u89c2\u770b\u4e00\u4e2a\u7761\u7740\u7684\u7537\u4eba\u3002"} +{"id": "2003081", "video_name": "81c7de97-4dd4-5e33-990c-d16050cd9067", "text": "\u732b\u50cf\u7bee\u7403\u8fd0\u52a8\u5458\u4e00\u6837\u73a9\u5f04\u5730\u7403\u3002"} +{"id": "8002594", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "\u751f\u6210\u4e00\u4e2a\u9b54\u6cd5\u53a8\u623f\u7684\u56fe\u50cf\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u6f02\u6d6e\u7684\u98df\u6750\uff0c\u5982\u9762\u7c89\u3001\u756a\u8304\u548c\u5976\u916a\uff0c\u8425\u9020\u51fa\u4e00\u4e2a"} +{"id": "4004260", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "\u5728\u65e5\u590d\u4e00\u65e5\u7684\u751f\u6d3b\u4e2d\uff0c\u5979\u7684\u5185\u5fc3\u6e34\u671b\u7740\u66f4\u591a\u7684\u4e1c\u897f\u3002"} +{"id": "0004871", "video_name": "10add92d-da49-56a9-af35-41406a92cdb4", "text": "\u5b87\u5b99\u98de\u8239\u80cc\u666f\u3001\u5b87\u5b99\u80cc\u666f\u3001\u884c\u661f\u548c\u9ed1\u6d1e\u3002"} +{"id": "3004289", "video_name": "9199b549-98c9-52de-8f3f-9269812f45ad", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5f55\u50cf\uff0c\u5c55\u793a\u4e86\u91cc\u7ea6\u70ed\u5185\u5362\u5e02\u7684\u573a\u666f\uff0c\u5feb\u4e50\u7684\u884c\u4eba\u884c\u8d70\uff0c\u4ea4\u901a\u7e41\u5fd9\uff0c\u591c"} +{"id": "3005143", "video_name": "8edc2a83-767b-5e80-a15c-1050dcf7ffeb", "text": "\u57ce\u5e02\u5370\u5ea6\u516c\u5bd3\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u53cc\u624b\u6258\u7740\u5934\uff0c\u8be6\u7ec6\u8bf4\u660e\u9700\u8981\u7684\u4e8b\u9879\u3002\u98de\u884c\u89c6\u89d2\u76f8\u673a\uff0c\u52a8\u6001\u6548\u679c2\u3002"} +{"id": "7004161", "video_name": "847e1788-56e2-53c2-8263-32288bd18b68", "text": "\u7a7f\u7740\u5546\u52a1\u897f\u88c5\u7684\u7537\u4eba\u4ece\u72ed\u7a84\u7684\u5c0f\u8def\u4e0a\u6454\u5012\u3002"} +{"id": "0003622", "video_name": "40ae43a4-2044-5416-b831-89471b49aeda", "text": "\u82f9\u679ciPod\u8ff7\u4f60\u7248\u4ee5\u9752\u86d9\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "8001908", "video_name": "61bdfcdd-fb0e-56d1-893d-8f7af75de996", "text": "\u5938\u5f20\u7684\u9762\u90e8\u8868\u60c5\u548c\u52a8\u4f5c\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004875", "video_name": "8aa7d82c-e0bb-56c8-bad0-c8ff2c663c29", "text": "\u8d3e\u65af\u6c40\u00b7\u6bd4\u4f2f\u626e\u6f14\u54c8\u5229\u00b7\u6ce2\u7279\uff0c\u65bd\u5c55\u9b54\u6cd5\uff0c\u970d\u683c\u6c83\u8328\uff0c\u7535\u5f71\u3002"} +{"id": "3004182", "video_name": "9e15e27e-c6a1-571e-9766-4e4db923abb9", "text": "\u690d\u7269\u7684\u79cd\u5b50\u5c55\u793a\u4e86\u5b83\u7684\u5185\u5728\u4ef7\u503c\u3002"} +{"id": "7002033", "video_name": "76e458e2-d549-56ac-ae1d-d4157ca13dd9", "text": "80\u5e74\u4ee3\u821e\u8e48\u5c0f\u5b50\uff0c\u83ab\u970d\u514b\u6ed1\u677f\u771f\u5b9e\u98ce\u683c\u3002"} +{"id": "1004868", "video_name": "59f178f9-4665-5fef-b84a-3a5d3afff603", "text": "\u53a8\u623f\u573a\u666f\uff0c\u4e00\u53ea\u7ae0\u9c7c\u4ece\u7076\u53f0\u4e0a\u7684\u6cb8\u6c34\u9505\u4e2d\u6d6e\u73b0\u51fa\u6765\u3002"} +{"id": "1003784", "video_name": "45e540b4-3848-5149-937b-2d9321534558", "text": "\u90a3\u65f6\uff0c\u732b\u5934\u9e70\u5f00\u59cb\u6559\u9f99\u5e73\u8861\u7684\u827a\u672f\u548c\u7a7a\u6c14\u6d41\u7684\u79d8\u5bc6\u3002"} +{"id": "4003373", "video_name": "8d49a452-b22e-5fc2-8208-ebe365ffa150", "text": "\u6e90\u53e5\uff1a\u7518\u5c3c\u4ec0\u795e\u8d70\u8fdb\u5bab\u6bbf\u623f\u95f4\u3002"} +{"id": "8001555", "video_name": "63073ca6-23d9-5ac4-8527-78d177d223a5", "text": "\u8fdc\u5904\u661f\u661f\u5728\u9ed1\u6697\u7684\u7a7a\u95f4\u4e2d\u95ea\u70c1\u3002"} +{"id": "6004674", "video_name": "6b5fb3a6-86c6-597f-969d-f413639075c1", "text": "Haveli\u4e0e\u4e00\u4e2a\u5973\u4eba\u7684\u6545\u4e8b\u6709\u5173\u3002"} +{"id": "3004373", "video_name": "ec48bc14-d344-5835-86cb-3b2f0305e420", "text": "\u9ed1\u8272\u7535\u5f71\uff0c\u4e0b\u7740\u5927\u96e8\uff0c\u788e\u73bb\u7483\u95ea\u8000\uff0c\u7ebd\u7ea6\u8857\u5934\u3002"} +{"id": "0003953", "video_name": "0082c052-53ad-5dbc-8942-1429aa2f616a", "text": "\u9f99\u5377\u98ce\u5c06\u5927\u8c61\u548c\u5176\u4ed6\u52a8\u7269\u629b\u5411\u7a7a\u4e2d\uff0c\u731b\u70c8\u7684\u66b4\u98ce\u96e8\uff0c\u7eb5\u6a2a\u6bd4\uff1a9:16\u3002"} +{"id": "5001518", "video_name": "fc43d53e-1a42-5dda-9e12-37838f4f4132", "text": "\u521b\u4f5c\u4e00\u90e8\u52a8\u753b\u7247\u7684\u5f00\u573a\u52a8\u753b\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u7531\u4e00\u7fa4\u5b66\u751f\u7ec4\u6210\u7684\u5168\u7403\u53ef\u6301\u7eed\u6027\u4f1a\u8bae\uff0c\u8fde\u63a5\u5168\u7403\u5b66\u751f\uff0c\u5e76\u9080\u8bf7\u4ece\u53f2\u5bc6"} +{"id": "5001673", "video_name": "34aedc7a-c9da-58f0-83ee-61cebf2537b4", "text": "\u6444\u5f71\u68da\u5185\u9ed1\u7eff\u8272\u7535\u5b50\u8bbe\u5907\u4e0b\uff0cJake\u6b63\u5728\u7535\u8111\u4e0a\u7f16\u8f9135\u6beb\u7c73\u955c\u5934\u62cd\u6444\u7684\u4fa7\u89d2\u5ea6\u89c6\u9891\u3002\u4fe1\u606f\uff1a\u5236\u7247\u4ebaJake\uff08\u5b57"} +{"id": "7002803", "video_name": "bd8ccfc3-e919-5453-812d-eba2261f7966", "text": "\u6fc0\u52b1\u89c6\u9891\uff0c\u5176\u4e2d\u5c06\u6709\u4e00\u8f86\u9177\u8f66\u548c\u5f88\u591a\u94b1\u3002"} +{"id": "2006792", "video_name": "ad09e98d-d38f-550b-86dc-8e86952d62ae", "text": "\u4e00\u4e2a\u8db3\u7403\u3001\u8db3\u7403\u548c\u6392\u7403\u4ece\u6e38\u6cf3\u6c60\u4e2d\u51fa\u73b0\uff0c\u5e76\u53d8\u6210\u7070\u8272\u548c\u84dd\u8272\u7684\u4e09\u7ef4M\u3002"} +{"id": "7003353", "video_name": "efa9240d-2c45-542a-9c83-8bed8d263d0b", "text": "\u8389\u8389\u7684\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\uff0c\u6df1\u547c\u5438\u7740\uff0c\u5e26\u7740\u601d\u8003\u7684\u8868\u60c5\u548c\u6770\u514b\u4ea4\u8c08\u3002\u6444\u50cf\u673a\u6355\u6349\u5230"} +{"id": "7004806", "video_name": "adcc87c3-0310-5497-843e-b396ea517d45", "text": "\u60f3\u8c61\u4e00\u53ea\u5199\u7740\u201c\u513f\u7ae5ATM\u201d\u7684\u5b58\u94b1\u7f50\u3002"} +{"id": "3005556", "video_name": "b6c82114-9da1-5d13-8f4f-6e86b2013b1d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u91d1\u53d1\u745e\u5178\u5973\u738b\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "7004362", "video_name": "30ef7c95-cdb3-584c-b7a2-fc8bf11a01a0", "text": "\u5728\u53d1\u751f\u6218\u4e89\u7684\u60c5\u51b5\u4e0b\uff0c\u751f\u62101500\u5e74\u7684\u7f57\u9a6c\u8857\u9053\uff0c\u903c\u771f\u7684\uff0c\u7167\u7247\u822c\u7684\u3002"} +{"id": "4003557", "video_name": "e7f2de09-f953-59a5-b187-3c5e317ffe53", "text": "19\u4e16\u7eaa\u7684\u5e74\u8f7b\u5973\u5b69\u7ad9\u5728\u6e56\u8fb9\u3002"} +{"id": "0006240", "video_name": "28fbde91-6622-595e-9d96-f1b2f7e8a1b3", "text": "\u7cbe\u795e\u7ad9\u5728\u575f\u5893\u91cc\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002\n\nSource sentence: The moon shone brightly in the night sky, casting an ethereal glow over"} +{"id": "6004148", "video_name": "4cb03c92-f9a5-5959-9aa8-3be429235943", "text": "1978\u5e74\u7684\u610f\u5927\u5229\u6050\u6016\u7535\u5f71\uff0c\u662f\u4e00\u573a\u8ff7\u5e7b\u7684\u5669\u68a6\uff0c\u918b\u9178\u76d0\u7efc\u5408\u75c7\u3002"} +{"id": "1005762", "video_name": "6a003bb5-593b-5633-8b80-cd0c318b5d2e", "text": "\u4e00\u4f4d\u7a7f\u7c89\u8272\u8fd0\u52a8\u670d\u3001\u67d3\u7740\u7c89\u8272\u5934\u53d1\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u4e0a\u5b66\u7684\u8def\u4e0a\u5f39\u594f\u5409\u4ed6\uff0c\u5979\u662f\u6447\u6eda\u5973"} +{"id": "1003991", "video_name": "49cf2276-79be-5026-a60f-61c322196c90", "text": "\u6708\u5149\u4e0b\uff0c\u4e00\u53ea\u8c6a\u534e\u624b\u8868\u6162\u6162\u53d8\u5f62\u3002"} +{"id": "3006219", "video_name": "4f70862d-e6f2-5416-be96-2bbd43df7106", "text": "\u4e00\u4e2a\u7126\u8651\u7684\u89d2\u8272\u8eba\u5728\u5e8a\u4e0a\uff0c\u8bd5\u56fe\u5728\u4e00\u4e2a\u96e8\u591c\u5165\u7720\uff0c\u800c\u5728\u7a97\u6237\u540e\u9762\uff0c\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u96e8\u6c34\u6253\u5728\u5c4f\u5e55\u4e0a"} +{"id": "1005209", "video_name": "5fe8ad32-00c1-5727-9e66-d63d0c9c988d", "text": "\u4eba\u4eec\u62ff\u7740\u7eb8\u5728\u8fdb\u884c\u7b56\u7565\u89c4\u5212\uff0c\u4fef\u89c6\u56fe\uff0c\u903c\u771f\u3002"} +{"id": "7002909", "video_name": "f8f7c1d9-2787-5321-a3ab-c08a8430180e", "text": "\u8718\u86db\u4eba\u5728\u66fc\u54c8\u987f\u8361\u79cb\u5343\uff0c\u4e0e\u7eff\u9b54\u4eba\u4f5c\u6218\uff0c\u662f2D\u7684\u3002"} +{"id": "8002044", "video_name": "d7ada0ba-f45d-58e6-a5d6-294b57dc5820", "text": "\u5965\u5170\u591a\u7684\u5ba0\u7269\u5e97Petland\u4e3e\u884c\u4e86\u76db\u5927\u7684\u5f00\u4e1a\u5178\u793c\uff081971\u5e74\uff09\u3002"} +{"id": "4002423", "video_name": "71310422-eb01-5a9d-929a-d4195172c186", "text": "\u4e00\u95f4\u5bbd\u655e\u8212\u9002\u7684\u623f\u95f4\uff0c\u4e00\u4e2a\u58c1\u7089\uff0c\u4e00\u628a\u8212\u9002\u7684\u6905\u5b50\uff0c\u4e66\u7c4d\uff0c\u5c4b\u9876\u4e0a\u7684\u52a8\u7269\uff0c\u4e00\u4e2a"} +{"id": "1003209", "video_name": "3b1fd0b9-898b-5899-9454-884d6b854ca2", "text": "\u4e00\u4e2a\u8499\u7740\u773c\u775b\u7684\u5e74\u8f7b\u4eba\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u76ef\u7740\u76f8\u673a\u770b\u3002"} +{"id": "6002045", "video_name": "363c57d3-4b98-57f0-acbb-d0b09326f67e", "text": "\u4e00\u4e2a\u62e5\u6709\u7f8e\u4e3d\u7fc5\u8180\u7684\u5929\u4f7f\uff0c\u73b0\u5728\u5c06\u7fc5\u8180\u73af\u7ed5\u5728\u89d2\u843d\u91cc\u3002"} +{"id": "1003716", "video_name": "4491f97c-eb78-5050-8e0e-507b8c17d55d", "text": "\u73b0\u5b9e\u7684\u5c0f\u9547\uff0c\u5b69\u5b50\u4eec\u5728\u516c\u56ed\u91cc\u4ed8\u8d39\u5e76\u73a9\u800d\u3002"} +{"id": "3005513", "video_name": "ae30b5a6-f41c-5d22-8ec9-5f6359d1cb8a", "text": "\u6697\u4e91\u4e2d\u95ea\u7535\u5288\u5411\u6d77\u9762\u3002"} +{"id": "0005821", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "\u6d77\u8fb9\u7684\u6cd5\u56fd\u5317\u90e8\u6709\u4e00\u5bf9\u65b0\u4eba\uff0c\u65b0\u5a18\u7528\u82b1\u88c5\u9970\u7684\u871c\u8272\u5934\u53d1\u76d8\u6210\u53d1\u9afb\uff0c\u65b0\u90ce\u5149\u5934\uff0c\u8eab\u7a7f"} +{"id": "0003767", "video_name": "42fe3948-e5a2-5b0c-ac79-fcec2aa69be0", "text": "\u591c\u665a\u3002\u4eba\u4eec\u7684\u5c38\u4f53\u60ac\u6d6e\u5728\u7a7a\u4e2d\uff0c\u5929\u7a7a\u4e2d\u53ef\u4ee5\u770b\u5230\u6708\u4eae\u88ab\u5288\u6210\u4e24\u534a\u3002\u56db\u5468\u662f\u4e00\u7247\u6751\u5e84\u7684\u5e9f"} +{"id": "6002601", "video_name": "63b80da9-d18d-51b8-87b1-0840f431cae5", "text": "\u7537\u4eba\u6253\u5f00\u4fdd\u9669\u67dc\u5bc6\u7801\u9501\uff0c\u903c\u771f\n\nSource sentence: The cat is sleeping on the windowsill.\n\u732b\u513f\u6b63\u7761\u5728\u7a97\u53f0\u4e0a\u3002"} +{"id": "4004824", "video_name": "42d06982-a6e4-5614-942e-bfc0672d57d2", "text": "\u4e00\u4f4d\u62c5\u5fc3\u7684\u9910\u5385\u8001\u677f\u6b63\u5728\u5bfb\u627e\u589e\u52a0\u9500\u552e\u7684\u9009\u62e9\u3002"} +{"id": "7002880", "video_name": "d1825413-6229-57f2-9d16-ea4e60a7ebee", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5750\u5728\u6708\u4eae\u4e0a\uff0c\u88ab\u8f7b\u8f7b\u98d8\u8361\u7684\u4e91\u6735\u5305\u56f4\uff0c\u661f\u661f\u5728\u4ed6\u5468\u56f4\u95ea\u70c1\u3002\u4ed6\u6162"} +{"id": "1005233", "video_name": "6045eb75-06cd-561e-9f92-2e91f91a9412", "text": "\u8036\u7a23\u5728\u7f8e\u4e3d\u7684\u65e5\u51fa\u4e2d\u8dea\u4e0b\u7977\u544a\u3002"} +{"id": "2003356", "video_name": "2a350b0c-d4b9-53cc-bd34-1c9db6ca6a95", "text": "\u4e00\u4e2a\u751f\u9508\u7684\u673a\u5668\u4eba\u5728\u5de5\u5382\u91cc\u56db\u5904\u5954\u8dd1\uff0c\u4f4e\u89d2\u5ea6\uff0c\u50cf\u76ae\u514b\u65af\u7535\u5f71\u4e00\u6837\uff0c\u6e05\u6668\uff0c\u5ba4\u5185\uff0c\u6295\u4e0b\u9634\u5f71"} +{"id": "3006758", "video_name": "c3781a61-7e60-537f-b0b5-b86b8e58c6a9", "text": "\u7d27\u8d34\u7740\u5145\u6ee1\u8840\u8089\u7684\u7259\u9f7f\uff0c\u4ee4\u4eba\u60ca\u6050\u3001\u53ef\u6015\u7684\u753b\u9762\uff0cVHS\u8001\u7535\u5f71\u98ce\u683c\uff0c\u6b7b\u4ea1"} +{"id": "0005365", "video_name": "1991402e-0a07-52b5-8938-6c1fb13f058e", "text": "\u7740\u8001\u4eba\u9759\u9759\u5730\u5750\u7740\u5e76\u8bf4\u8bdd\u3002"} +{"id": "1003900", "video_name": "47fb2bf3-5f13-588c-a92e-52525d72fea5", "text": "\u7ef4\u4eac\u4eba\u53c2\u52a0\u6218\u4e89\uff0c\u4f59\u6ce2\u6f2b\u753b\u3002"} +{"id": "6002943", "video_name": "ac355912-903d-5816-ad8f-7d14f0e113a9", "text": "\u52c7\u58eb\u4eec\u5728\u6770\u62c9\u5fb7\u00b7\u5e03\u7f57\u59c6\u7684\u98ce\u683c\u4e2d\u5728\u96ea\u5730\u4e2d\u5bfb\u627e\u5b9d\u7bb1\u3002"} +{"id": "1006331", "video_name": "73d39113-4e81-5c21-ba84-35c954f5dd55", "text": "\u505a\u4e00\u4e2a\u957f\u7247\uff0c\u6218\u4e89\u3001\u88ab\u6bc1\u7684\u5bb6\u56ed\u3001\u706b\u707e\u4ee5\u53ca\u70df\u96fe\u3002 \n\nSource sentence: I am looking for a job in marketing or advertising. \n\u6211\u6b63\u5728"} +{"id": "0006381", "video_name": "2b795214-dabd-5baf-b6b5-a1318b966512", "text": "Translation: \u5728\u963f\u7ea6\u63d0\u4e9a\u5bfa\u5e99\u558a\u201c\u8d3e\u4f0a\u00b7\u5e0c\u745e\u00b7\u62c9\u59c6\u201d\u3002"} +{"id": "3005763", "video_name": "226056cc-c8f7-506c-a890-28e2c7a28279", "text": "20\u4e16\u7eaa30\u5e74\u4ee3\u7684\u5f69\u8272\u7eaa\u5f55\u7247\uff0c\u5c55\u793a\u5b9e\u9a8c\u5ba4\u5185\u7684\u79d1\u5b66\u5bb6\u5c06\u5192\u7740\u6ce1\u6cab\u7684\u7eff\u8272\u6db2\u4f53\u6df7\u5408\u5230"} +{"id": "3003188", "video_name": "6bfb7636-b209-5c68-9fa9-cf3e08e09fc5", "text": "\u5728\u76db\u5f00\u7684\u82b1\u524d\uff0c\u4ea7\u54c1\u95ea\u8000\u3002"} +{"id": "8001270", "video_name": "3778349e-e189-54d5-b130-f7c63f42b491", "text": "\u4e00\u53ea\u91d1\u5c5e\u602a\u7269\uff1a\u91ce\u517d\u4e0d\u662f\u6709\u673a\u8089\u4f53\uff0c\u800c\u662f\u4e00\u4e2a\u51b7\u6f20\u65e0\u60c5\u7684\u673a\u5668\u3002\u5b83\u7684\u8eab\u4f53\u95ea\u8000\u7740\u629b\u5149"} +{"id": "8003481", "video_name": "267e1d06-e164-5237-94b4-b1320b8613e0", "text": "\u8d3e\u65af\u6c40\u00b7\u6bd4\u4f2f\u548c\u585e\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u5728\u610f\u5927\u5229\u963f\u739b\u5c14\u83f2\u6d77\u5cb8\u7684\u4e00\u4e2a\u665a\u4e0a\u76f8\u4e92\u51dd"} +{"id": "0005442", "video_name": "1ad76fe1-e873-5bfe-a00e-3239a74b039e", "text": "\u4e24\u90e8\u65e5\u672c\u52a8\u6f2b\u4e2d\u7684\u89d2\u8272\u5728\u8bb8\u613f\u65f6\u5931\u53bb\u4e86\u5bf9\u5f7c\u6b64\u7231\u60c5\u7684\u8bb0\u5fc6\u3002"} +{"id": "4002548", "video_name": "c7b0797f-b723-5988-b2bf-3516925bca70", "text": "\u4e00\u6761\u7ea2\u8272\u7684\u7ae0\u9c7c\u89e6\u624b\u3002"} +{"id": "1003676", "video_name": "43c03fa8-0635-5aa4-b794-62ee2d34ec2b", "text": "\u4e00\u4e2a\u9776\u5fc3\u6e38\u620f\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004780", "video_name": "2b4931c1-03ef-5ca5-aa57-2d512104aa38", "text": "PC\u96f6\u4ef6\u5728\u6708\u7403\u5468\u56f4\u7684\u592a\u7a7a\u4e2d\u6f02\u6d6e360\u5ea6\u3002"} +{"id": "6003679", "video_name": "a3fae4eb-729f-5c5a-9ef8-448d9c084de2", "text": "\u4e00\u500b\u7537\u4eba\u5728\u6708\u7403\u9ad4\u80b2\u5834\u6253\u677f\u7403\uff0c\u8d0f\u5f97\u4e16\u754c\u676f\u6c7a\u8cfd\uff0c\u8209\u8d77\u734e\u76c3\uff0c\u64fa\u59ff\u52e2\u62cd"} +{"id": "2003793", "video_name": "d34bba60-3bae-5435-8a61-c58af255115a", "text": "\u4e00\u5e45\u7ecf\u5178\u6cb9\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u6dd8\u6c14\u7684\u5c0f\u7cbe\u7075\u6816\u606f\u5728\u76db\u5f00\u7684\u73ab\u7470\u4e0a\uff0c\u5176\u7fc5\u8180\u5448"} +{"id": "1005561", "video_name": "66598215-c71c-5fad-8158-e5c8add85d97", "text": "\u96fe\u5c71\uff0c\u52a8\u753b\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c8K\uff0c\u76f8\u673a\u7f29\u8fdb\u3002"} +{"id": "6004848", "video_name": "f2e55cf3-f552-58d5-9d19-3bae2c8e9c28", "text": "\u4ed6\u5168\u8eab\u5fc3\u5730\u81f4\u529b\u4e8e\u627e\u5de5\u4f5c\uff0c\u7ec8\u4e8e\u6709\u4e00\u5929\uff0c\u4e00\u4f4d\u5bcc\u6709\u7684\u672c\u5730\u5546\u4eba\u7ed9\u4e86\u62c9\u6731\u4e00\u4e2a\u5728\u4ed6\u5e97\u91cc\u7684\u5de5\u4f5c\u673a\u4f1a\u3002\u62c9\u6731\u611f"} +{"id": "4002176", "video_name": "34929335-521a-5751-a81c-cc6f8e6d7d1a", "text": "\u5728\u6d77\u6ee9\u4e0a\u5f39\u94a2\u7434\u7684\u7537\u4eba"} +{"id": "8003742", "video_name": "090736b7-8851-5dcf-9334-95b3bff22b01", "text": "\u4e00\u4f4d\u6234\u7740\u5934\u5dfe\u7684\u6f02\u4eae\u52a8\u6f2b\u5973\u5b69\u5728\u516c\u56ed\u91cc\u81ea\u7136\u800c\u771f\u5b9e\u5730\u52a8\u4e86\u8d77\u6765\u3002"} +{"id": "6003743", "video_name": "b93039c0-d38b-5e6f-9a2f-bdd2fceb956c", "text": "\u767d\u8272\u623f\u95f4\u4e2d\u6f02\u6d6e\u7740\u79cb\u53f6\u3002"} +{"id": "6002663", "video_name": "838bd2cf-40ae-5fba-9a22-ed057f0fab3c", "text": "\u751f\u7269\uff0c\u4e0d\u80fd\u4f24\u5bb3\u4efb\u4f55\u4eba\uff0c\u5e2e\u52a9\u548c\u652f\u6301\u5973\u6027\uff0c\u521b\u9020\u5b89\u5168\u7684\u73af\u5883\uff0c\u67d4\u548c\u7684\u989c\u8272\u548c\u7eb9\u7406\uff0c\u548c\u5e73\u3002"} +{"id": "1005481", "video_name": "64a93844-855a-5240-b14e-8020d208df3c", "text": "\u74e2\u866b\u5728\u8377\u5170\u82b1\u56ed\u7684\u53f6\u5b50\u4e0a\u884c\u8d70\u3002\u5bbd\u955c\u5934\u7535\u5f71\u6444\u5f7116\uff1a9\u3002"} +{"id": "7002203", "video_name": "23eea4c0-4130-57c6-b8bb-ba3a5ebfcc8d", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u68ee\u6797\u91cc\u8ffd\u9010\u4e00\u53ea\u5927\u8c61\uff0c\u6700\u7ec8\u72ee\u5b50\u6355\u6349\u5230\u4e86\u5927\u8c61\u3002"} +{"id": "0005115", "video_name": "15062059-12d3-54dc-9e1c-f52e26235d85", "text": "\u4e00\u4e2a\u5973\u6218\u58eb\u7684\u7279\u5199\u753b\u9762\uff0c\u5728\u7eb5\u6a2a\u6bd49\uff1a16\u4e0b\u7f13\u6162\u7728\u773c\uff0c\u5411\u6444\u50cf\u673a\u9760\u8fd1\u3002"} +{"id": "7002928", "video_name": "ffd2b1ce-3f59-5e3d-bd83-3bd27740ae05", "text": "\u9ed1\u8272\u7a7f\u68ad\u8005\u5728\u7d2b\u8272\u8302\u5bc6\u7684\u4e1b\u6797\u4e2d\u4e0e\u8c79\u548c\u773c\u955c\u738b\u86c7\u4e00\u8d77\u8fdb\u884c\u5b50\u5f39\u65f6\u95f4\u6444\u5f71\uff0c3D\u6e32"} +{"id": "6003833", "video_name": "915f429b-a5e9-50c0-9953-edb863f8e406", "text": "\u8d34\u7eb8\uff0c\u5e26\u4e66\u7684\u5c0f\u732b\u5934\u9e70\uff0c\u53ef\u7231\u98ce\u683c\uff0c\u8f6e\u5ed3\uff0c\u77e2\u91cf\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "0006471", "video_name": "2d18074a-c7ae-5cd2-aad3-c6a02587234f", "text": "\u591c\u665a\u57ce\u5e02\u4e2d\u7684\u66b4\u96e8\u548c\u95ea\u7535\u51fb\u4e2d\u3002"} +{"id": "2006659", "video_name": "d225b532-08da-5539-93f1-12eac6cbc359", "text": "\u6218\u533a\uff0c\u8bb8\u591a\u7206\u70b8\u7269\uff0c\u8bb8\u591a\u519b\u961f\uff0c\u8d85\u9510\u5229\uff0c\u8d85\u8be6\u7ec6\uff0c8k\uff0c\u7535\u5f71\u771f\u5b9e\u611f\u3002"} +{"id": "4003858", "video_name": "1082c2c3-3b68-5839-b18a-b907013e1859", "text": "\u7537\u5b50\u6b63\u5728\u5403\u62ab\u8428\uff0c\u4f46\u88ab\u6d77\u9e25\u653b\u51fb\u4e86\u3002"} +{"id": "5001307", "video_name": "89718d84-2381-5d11-855c-5323eeebf7aa", "text": "\u5fb7\u96f7\u514b\uff08Drake\uff09\u88ab\u56f0\u5728\u6d77\u6d0b\u4e2d\u592e"} +{"id": "6002704", "video_name": "82bc2d83-06a1-5046-95f6-894140277bac", "text": "\u4e00\u4e2a\u6050\u6016\u7684\u5c0f\u9547\u6df1\u5904\u7684\u68ee\u6797\u91cc\uff0c\u5728\u66b4\u98ce\u96e8\u7684\u591c\u665a\u3002"} +{"id": "8003039", "video_name": "43313f12-ef69-59f5-8183-5855a35e440f", "text": "\u4e00\u4e2a\u5355\u8eab\u7684\u7537\u4eba\u88f9\u7740\u6bdb\u5dfe\u4ece\u6d74\u5ba4\u8d70\u51fa\u6765\uff0c\u5531\u7740\u6b4c\u8d70\u5411\u5927\u5385\u3002\u5f53\u4ed6\u8fdb\u5165\u5927\u5385\u540e\uff0c\u5411\u4ed6\u7684"} +{"id": "3004525", "video_name": "cb5f7b06-c9b1-5330-960c-db50ef38a7c7", "text": "\u4e00\u573a\u6765\u81ea1984\u5e74\u7535\u5f71\u7684\u573a\u666f\uff0c\u8272\u5f69\u53ef\u7231\uff0c\u903c\u771f\u4e14\u7ec6\u8282\u4e30\u5bcc\uff0c\u62e5\u6709\u89c6\u89c9\u7279\u6548\uff0c\u4e00\u6735\u5de8\u5927\u7684"} +{"id": "2003619", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5750\u5728\u8bb8\u591a\u5c0f\u72d7\u65c1\u8fb9\uff0c\u8bb8\u591a\u5c0f\u72d7\u5728\u5979\u8eab\u4e0a\u722c\u6765\u722c\u53bb\uff0c\u5979\u4e00\u8fb9\u629a\u6478"} +{"id": "1006130", "video_name": "7055967c-4f93-5424-a292-353e943b6b35", "text": "\u9f99\u5377\u98ce\u66b4\u88ad\u51fb\u5e02\u4e2d\u5fc3\uff0c\u672b\u65e5\u98ce\u683c\u3002"} +{"id": "0003443", "video_name": "3d9fa0dd-0559-5ca2-9084-6189ca5fac00", "text": "\u7535\u5f71\u822c\u7684\u5f71\u7247\uff0c\u4e00\u4e2a\u9b3c\u9b42\u5728\u53e4\u5893\u4e2d\u884c\u8d70\uff0c\u8352\u51c9\u3002"} +{"id": "0004128", "video_name": "03b184d8-c60f-5039-93eb-cdf4370eb7ee", "text": "\u4e00\u4e2a\u5b66\u751f\u548c\u5979\u7684\u670b\u53cb\u4e00\u8d77\u9605\u8bfb\u5723\u7ecf\u3002"} +{"id": "2003454", "video_name": "d2cb19b7-b395-5bde-9c25-a19d5d389baa", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u521a\u521a\u8d62\u5f97\u6bd4\u8d5b\uff0c\u4ed6\u7ad9\u5728UFC\u7b3c\u5b50\u7684\u9876\u90e8\uff0c\u624b\u63e1\u4e24\u4e2aUFC\u4e16\u754c\u51a0\u519b\u8170\u5e26\uff0c"} +{"id": "7004785", "video_name": "7582f7bb-2ad4-5dd5-8d89-0ba7311c7564", "text": "\u8ba9\u5b83\u770b\u8d77\u6765\u975e\u5e38\u751f\u52a8\uff0c\u597d\u50cf\u4ed6\u4eec\u521a\u4ece\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u6218\u6597\u4e2d\u51fa\u6765\u3002\u5728\u4f60\u80fd\u591f\u7684\u5730\u65b9\u6dfb\u52a0\u5927\u91cf\u7684\u6548\u679c"} +{"id": "1006781", "video_name": "7c451dca-f1a3-5ac1-8e7b-c4052fd02f6d", "text": "\u4e00\u5f20\u6765\u81ea\u65e0\u4eba\u673a\u7684\u5854\u4ec0\u5e72\u57ce\u7167\u7247\u3002"} +{"id": "6004866", "video_name": "64670c44-4c32-5ded-96d1-35d2661be822", "text": "\u957f\u89c6\u9891\u5f69\u8272\u52a8\u753b\u6ce2\u666e\u827a\u672f\u98ce\u683c\u6a21\u62df\u3002"} +{"id": "8002608", "video_name": "f8eb3ea0-755e-5bd7-917b-382a2541342f", "text": "\u4e00\u53cc\u84dd\u8272\u8db3\u7403\u978b\uff0c\u5e26\u6709\u7ea2\u8272\u978b\u5e26\u548c\u7ea2\u8272\u978b\u9489\uff0c\u653e\u5728\u767d\u8272\u684c\u5b50\u4e0a\u3002"} +{"id": "3004510", "video_name": "69507339-4fb3-5ec8-9c7e-f85c59ec1621", "text": "\u73b0\u5b9e\u9ad8\u6e05\u745e\u58eb\u90ca\u5916\u7530\u91ce\u7684\u7167\u7247\uff0c\u6709\u8bb8\u591a\u690d\u88ab\u3002\u4fe1\u606f\uff1aDelfi\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005736", "video_name": "698e1298-486b-5994-8812-ce2fb188cdc8", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5c11\u5973\uff0c\u6709\u7740\u6ce2\u6d6a\u5f62\u72b6\u7684\u5934\u53d1\uff0c\u6d82\u7740\u8d85\u771f\u5b9e\u7684\u53e3\u7ea2\u800c\u5fae\u7b11\u3002"} +{"id": "8002124", "video_name": "100de860-be99-571b-a228-4a047b26454f", "text": "\u4e30\u7530\u6c7d\u8f66\u516c\u53f8\u7684\u89c6\u9891\u3002"} +{"id": "6002886", "video_name": "cccd1e76-47c3-587e-ab2a-9d640f9bd04f", "text": "\u5b5f\u4e70\u7e41\u5fd9\u7684\u94c1\u8def\u8f68\u9053\u3002\u4fe1\u606f\uff1aSADUBAS\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "2007939", "video_name": "a9969a04-a9b8-537d-a29b-2f9db9b5d5e8", "text": "\u65af\u51ef\u52d2\u5728\u80cc\u666f\u98ce\u5439\u4e91\u52a8\u3001\u8fdc\u5c71\u9759\u7acb\u7684\u5d0e\u5c96\u60ac\u5d16\u4e0a\u9047\u5230\u4e86\u8001\u800c\u667a\u6167\u7684\u8001"} +{"id": "0006662", "video_name": "309d4b05-cedc-5c0e-aac1-425b27d6b07b", "text": "\u7a7f\u7740JK\u6821\u670d\u7684\u4e9a\u6d32\u5973\u5b69\u6234\u7740\u773c\u955c\u3002"} +{"id": "4004095", "video_name": "327fc7d7-a319-5bbb-9151-7639c10613aa", "text": "\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u4e3b\u9898\u66f2 \u4fe1\u606f\uff1a\u79cb\u7530\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001033", "video_name": "10f694de-cf5f-5eb9-98d7-de847600d368", "text": "\u5728\u4e00\u4e2a\u5c0f\u5c4b\u91cc\uff0c\u4e00\u4e2a\u8001\u5987\u4eba\u5750\u5728\u7834\u70c2\u7684\u5e03\u6905\u4e0a\u3002\u65c1\u8fb9\uff0c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u7834\u70c2\u7684\u5730"} +{"id": "8002733", "video_name": "52acb1cc-2abb-5b31-9d08-f0cf40699d59", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4f26\u6566\u5927\u672c\u949f\u9644\u8fd1\u7684\u96e8\u96fe\u591c\u665a\u8d70\u8def\u3002"} +{"id": "0006814", "video_name": "338e2b0a-34db-5429-a872-da906f61ea8b", "text": "\u4e00\u8f86\u5145\u6ee1\u6de1\u84dd\u8272\u7684\u6c7d\u8f66\uff0c\u7ad9\u7740\u4e00\u4e2a\u4e94\u5c81\u7684\u5a74\u513f\u3002"} +{"id": "8003095", "video_name": "848c513f-9bd5-5597-af72-3e04d2edb668", "text": "\u5728\u4e1b\u6797\u4e2d\u7684\u6751\u5e84\uff0c\u6709\u6811\u5c4b\u3002"} +{"id": "0004039", "video_name": "020486f5-f0cc-56a2-b703-2e75735d5300", "text": "\u4e00\u5806\u66f8\u91dd\uff0c\u8a0a\u606f\uff1a\u6587\u6cd5\uff08\u5b57\u9ad4\uff1a\u73fe\u4ee3\uff09"} +{"id": "6003118", "video_name": "d7cfd040-2a9b-594c-98d9-4d3da8d1d166", "text": "\u6750\u6599\u5177\u6709\u5f3a\u5927\u7684\u8010\u8150\u8680\u6027\uff0c\u5728\u5404\u79cd\u73af\u5883\u4e0b\u4fdd\u6301\u7a33\u5b9a\u7684\u6027\u80fd\u3002"} +{"id": "0003630", "video_name": "40ccbdcb-c9ea-52b4-8d32-cd7edaa36bf5", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "3004015", "video_name": "b612bc98-7df5-52a3-bda9-d4b750a42038", "text": "\u91d1\u94b1\u7eb7\u7eb7\u843d\u4e0b\u7684\u4ea4\u6613\u5bf9\u8bdd\u3002"} +{"id": "5001126", "video_name": "f2782edc-23f2-5583-88f8-59ee317d02a8", "text": "\u4ece\u82af\u7247\u9876\u90e8\u5f00\u59cb\uff0c\u6162\u6162\u6cbf\u7740\u8f6e\u5ed3\u5411\u4e0b\u63a2\u7d22\uff0c\u89c2\u5bdf\u82af\u7247\u9876\u90e8\u7684\u6807\u5fd7\u548c\u6807\u8bc6\uff0c\u5e76\u83b7\u53d6\u5236\u9020"} +{"id": "3003984", "video_name": "ae8a2ba4-80b0-5961-a77e-23d688b7435c", "text": "\u514b\u91cc\u5e0c\u7eb3\u5927\u80dc\u56fd\u738b\u574e\u8428\u7684\u573a\u666f\uff0c8K\uff0cHDR\uff0c16:9\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "0003329", "video_name": "3bb72676-ac62-56f4-9a74-4733e32e57f2", "text": "Disney\u7684\u795e\u5947\u4e16\u754c\uff0c\u5c31\u50cfWuTang\u6240\u60f3\u8c61\u7684\u90a3\u6837\u3002"} +{"id": "0003644", "video_name": "40f1e531-9dfd-5c36-92f8-d50bd426a266", "text": "\u79d1\u7f57\u66fc\u5fb7\u57ce\u5e02\uff08\u9ad8\u697c\u5927\u53a6\uff09\u7684\u7535\u5f71\u822c\u955c\u5934\u3002"} +{"id": "1004318", "video_name": "4fc0be14-d192-5834-98dc-2ae2911a40b6", "text": "\u4e00\u4e2a\u8001\u4eba\u559d\u8336\u7684\u65e7\u7eaa\u5f55\u7247\uff0c\u4ed6\u7528\u4e00\u53ea\u53e4\u8463\u8336\u676f\uff0c\u8336\u789f\u4e0a\u653e\u7740\u4e00\u5757\u9a6c\u5fb7\u7433\u86cb"} +{"id": "0006298", "video_name": "2a35b685-dd0d-54de-9fd3-fd181ed53d48", "text": "\u60ca\u4eba\u7684\u9ad8\u6e05\u89c6\u9891\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "1006845", "video_name": "7d1a2b68-f98a-5a3c-979b-e947f0ae5360", "text": "\u8ba9\u6211\u7684\u5934\u53d1\u4eff\u4f5b\u88ab\u98ce\u5439\u62c2\u4e00\u822c\u6643\u52a8\uff0c\u5e76\u8ba9\u6211\u5fae\u7b11\u3002"} +{"id": "7004133", "video_name": "f57bc150-010d-5b31-a253-825b0462eb9a", "text": "\u5b87\u822a\u5458\u5750\u5728\u5e26\u95ea\u70c1\u706f\u5149\u7684\u63a7\u5236\u677f\u524d\u3002"} +{"id": "3003611", "video_name": "20a38bb2-46a2-529e-88e1-6b496ef06ac0", "text": "\u7f57\u5fb7\u5de8\u50cf\u79fb\u52a8\u5176\u5934\u90e8\u7684\u795e\u8bdd\u602a\u5f02\uff0c\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa\u3002"} +{"id": "1006712", "video_name": "7b02a609-f820-5c4c-82df-464d6e61ea26", "text": "\u521b\u9020\u4e00\u4e2a\u67e5\u7406\u00b7\u5353\u522b\u6797\u7684\u573a\u666f\uff0c\u9ed1\u767d\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u5de8\u5927\u7684\u751c\u751c\u5708\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u5404\u79cd\u53e3"} +{"id": "1004042", "video_name": "4b01fee6-1f04-51d8-a2fe-8fdc14d67956", "text": "\u7f8e\u5973\u4e3e\u8d77\u624b\u9732\u51fa\u767d\u8272\u7684\u814b\u7a9d\uff0c\u5979\u5750\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "8001475", "video_name": "650ee537-62a6-59c2-9984-5f854196b3f4", "text": "\u8721\u70db\u706f\u5185\u90e8\u7684\u5927\u8c61\u5f62\u72b6\u52a8\u753b"} +{"id": "6002330", "video_name": "c6a0903e-aa3b-5d78-9ac1-846c1760b12f", "text": "\u957f\u7740\u957f\u957f\u7684\u767d\u53d1\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u88ab\u4e00\u5e45\u53e4\u8001\u7684\u8bd7\u60c5\u753b\u610f\u6240\u5305\u56f4\u3002"} +{"id": "1003951", "video_name": "48eed00c-31ac-5df6-a6d3-c2ded9bc0750", "text": "\u5728\u9713\u8679\u591c\u90fd\u5e02\u4e2d\uff0c\u6709\u4e00\u6761\u88ab\u51b0\u4e0e\u706b\u6240\u5305\u56f4\u7684\u9f99\u3002"} +{"id": "3003023", "video_name": "494a63a0-2bb2-5715-b608-c7e49ffa5e20", "text": "Source sentence: The cat is sleeping on the couch.\n\nTranslation: \u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4004751", "video_name": "cfb5803e-6b99-5b13-be64-601a756834f3", "text": "\u5728\u677e\u6797\u4e2d\uff0c\u9a6c\u8f66\u4e0a\u7684\u9a6c\u5339\u5728\u6708\u5149\u4e0b\u5954\u9a70\uff0c\u72fc\u568e\u58f0\u4e0d\u7edd\u4e8e\u8033\u3002"} +{"id": "7003098", "video_name": "9483672c-c5f4-56a8-8539-f7b48dd026f9", "text": "\u60f3\u8c61\u4e00\u4e0b\u6709\u8fd9\u79cd\u836f\u54c1\u4f5c\u4e3a\u914d\u6599\u7684DPizza\uff0c\u7528\u6765\u6cbb\u7597\u759f\u75be\u3002"} +{"id": "2006816", "video_name": "1619ab9d-9882-5530-b30d-af1111f0e034", "text": "\u4e2d\u56fd\u5973\u4eba\u8f6c\u53d8\u6210\u5929\u4f7f\u3002"} +{"id": "7003647", "video_name": "ae12ce9b-2747-50c3-a574-7ac9d31475de", "text": "\u521b\u9020\u4e00\u4e2a\u751f\u52a8\u8ff7\u4eba\u7684\u63cf\u8ff0\uff0c\u63cf\u8ff0\u4e16\u754c\u4e0a\u6700\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u6355\u6349\u6bcf\u4e2a\u7ec6\u8282\uff0c\u8ba9\u5979\u6563\u53d1\u9b45\u529b\u548c\u8bf1"} +{"id": "1003051", "video_name": "381d8e68-d62b-53cc-a5ed-dc7ce95f7bbd", "text": "\u8fd9\u5e45\u753b\u63cf\u7ed8\u4e86\u6ce2\u65af\u56fd\u738b\u5eb7\u6bd4\u897f\u4e8c\u4e16\u65f6\u671f\u8d2a\u6c61\u6cd5\u5b98\u897f\u8428\u59c6\u5185\u65af\u88ab\u5265\u76ae\u7684\u6545\u4e8b"} +{"id": "2004086", "video_name": "5de113aa-b976-51fc-963e-2f113252ce74", "text": "and chirping birds, the explorers were filled with excitement and awe.\n\n\u8d70\u8fc7\u7761\u7740\u7684\u718a\uff0c\u5728\u5145\u6ee1\u9ad8\u5927\u6811\u6728\u3001\u6c99\u6c99\u4f5c\u54cd\u7684\u6811\u53f6\u548c"} +{"id": "1005324", "video_name": "61cddd14-f24f-55de-b8ab-6efeb09c52e0", "text": "\u5c06\u5f53\u524d\u7684\u590f\u5b63\u8f6c\u6362\u4e3a\u51ac\u5b63\uff0c\u539f\u59cb\u5e03\u5c40\u4e0d\u80fd\u66f4\u6539\uff0c\u4e0d\u9700\u8981\u989d\u5916\u7684\u52a8\u753b\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003527", "video_name": "6cbee47f-0a73-5ea0-bf51-80e86f3b6007", "text": "\u5409\u5229\u514b\u5728\u672a\u6765\u57ce\u5e02\u91cc\u9a91\u884c\u3002"} +{"id": "2007905", "video_name": "23da7861-85bf-5b21-8b78-1a52f53617c4", "text": "9:16\u6bd4\u4f8b\u7684\u89c6\u9891\uff0c\u62cd\u6444\u4e86\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4eba\uff0c\u8bb2\u8bdd\u8005\u3002"} +{"id": "6004941", "video_name": "02f17fdb-2fd6-503f-bd50-a76fd5543c90", "text": "\u4e00\u4e2a\u5370\u5ea6\u56fd\u738b\u6709\u56db\u4e2a\u738b\u540e\u548c\u4e03\u4e2a\u738b\u5b50\u3002"} +{"id": "6004639", "video_name": "5adf5d9c-fc7a-5e2a-9d2b-885c8a3dc8e2", "text": "\u672b\u65e5\u52a8\u7269\u7a7f\u8fc7\u6d77\u6d0b\u884c\u8d70\u3002"} +{"id": "2006638", "video_name": "b2873560-013a-528d-bb4e-fb6eb351c859", "text": "\u5feb\u9910\u5458\u5de5\u7684\u4eba\u7fa4\u3002\u6447\u6eda\u6f14\u5531\u4f1a\u7684\u6c1b\u56f4\u3002\u6bcf\u4e2a\u4eba\u7684\u8f6e\u5ed3\u7b80\u5355\u3002\u975e\u5e38\u4eae\u4e3d\uff0c\u4f46\u8272\u8c03\u8f83"} +{"id": "2004573", "video_name": "e2532fd1-4723-52bc-ac6c-9ad186863730", "text": "\u5e74\u8f7b\u4eba\u80cc\u7740\u4e00\u53ea\u88c5\u6ee1\u77f3\u5934\u7684\u6c89\u91cd\u80cc\u5305\u6500\u767b\u5c71\u5cf0\uff0c\u8270\u96be\u524d\u884c\u3002"} +{"id": "7002727", "video_name": "4228e144-65b5-59b1-bc56-fb9e56a33cc2", "text": "\u5e9f\u589f\u80cc\u666f\uff0c\u52a8\u6f2b\u98ce\u683c\u3002\u725b\u4ed4\u7b11\u7740\u3002"} +{"id": "2006924", "video_name": "c7fd69a3-ffe8-5aa4-b0d3-25835030024f", "text": "\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u56e0\u71b1\u611b\u8fa3\u98df\u800c\u805a\u5728\u4e00\u8d77\u3002\u5c55\u793a\u5404\u7a2e\u65cf\u7fa4\u4eab\u7528\u6dfb\u52a0\u4e86\u5854\u5df4\u65af\u79d1\u91ac\u7684\u7f8e"} +{"id": "3005040", "video_name": "ede6fa29-0e00-5a2b-8cef-4283219d000b", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u592a\u7a7a\u670d\u3001\u7eff\u8272\u8f6e\u5ed3\u7684\u7537\u5b50\u6ce8\u89c6\u7740\u76f8\u673a\u3002"} +{"id": "1003179", "video_name": "3a788825-c841-5b63-988a-b2da6b01b12f", "text": "6\u670819\u65e5\uff0c\u4ee5\u8272\u5217\u519b\u961f\u7a81\u88ad\u6770\u5b81\uff0c\u9996\u6b21\u81ea\u7b2c\u4e8c\u6b21\u53cd\u6297\u8fd0\u52a8\u4ee5\u6765\u5728\u7ea6\u65e6\u6cb3\u897f\u5cb8\u90e8\u7f72\u4e86\u76f4\u5347\u673a"} +{"id": "0004963", "video_name": "124f7ff1-e4df-5ebe-a843-9758013b0102", "text": "\u6f06\u9ed1\u7684\u7ade\u6280\u573a\u663e\u9732\u51fa\u805a\u7126\u5728\u821e\u53f0\u4e0a\u7684\u805a\u5149\u706f\u4e4b\u5149\u3002\u4e24\u4e2a\u62f3\u51fb\u624b\u5728\u821e\u53f0\u4e0a\u4e92\u76f8\u640f"} +{"id": "0005253", "video_name": "174dd8ad-5dac-5bb0-934b-d40489673638", "text": "\u5e9f\u5f03\u57ce\u5e02\u88ab\u65e0\u4eba\u673a\u548c\u673a\u5668\u4eba\u63a5\u7ba1\u7684\u4e16\u754c\u672b\u65e5\u573a\u666f\uff0c\u6781\u4e3a\u8be6\u7ec6\u548c\u903c\u771f\u3002\u4fe1\u606f\uff1a\u706d\u7edd\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "8001444", "video_name": "b6e3130e-f5b0-556a-8891-9811f439a4bb", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u6001\u56fe\u50cf\uff0c\u5c55\u793a\u6211\u7a7f\u7740\u65e7\u94b1\u8863\u670d\uff0c\u80cc\u666f\u4e3a\u590d\u53e4\u98ce\u683c\u3002"} +{"id": "1005882", "video_name": "6c3602ca-25d3-5a95-8602-734082dc315b", "text": "\u4e24\u4e2a\u53ef\u7231\u7684\u5b69\u5b50\u5728\u6eaa\u8fb9\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "0003436", "video_name": "3d8414a6-0773-51c8-95a8-a7efea6f9e0f", "text": "\u4e00\u5219\u65b0\u7684\u8010\u514b\u978b\u5e7f\u544a\uff0c\u6709\u8bb8\u591a\u9713\u8679\u706f\u548c\u9ed1\u6697\u7684\u5730\u4e0b\u77f3\u5899\u80cc\u666f\uff0c\u978b\u5b50\u5728\u524d\u9762\u95ea\u95ea\u53d1"} +{"id": "0006874", "video_name": "348e3148-47be-51fd-a2fd-9f813d485d1d", "text": "\u8b66\u5bdf\u8ffd\u9010\u72af\u4eba\u8df3\u4e0a\u6865\u3002"} +{"id": "0003174", "video_name": "389249e5-fc6d-5907-b273-f398cac7e136", "text": "\u51b0\u5c9b\u6709\u4e00\u79cd\u50cf\u4eba\u4e00\u6837\u9ad8\u7684\u84ec\u677e\u767d\u9e1f\u3002"} +{"id": "7004629", "video_name": "190bbd17-9683-5d71-8112-ccdaa711d4a0", "text": "\u5f00\u59cbBioReckon\u7684\u5669\u68a6\u4e4b\u65c5\uff0c\u751f\u547d\u548c\u5de5\u7a0b\u4e4b\u95f4\u7684\u754c\u9650\u5728\u6050\u6016\u7684\u4ea4\u54cd\u4e50\u4e2d\u53d8\u5f97\u6a21\u7cca\u3002\u5728\u6f5c\u5165"} +{"id": "5001114", "video_name": "c371f998-6ae4-5c4a-9054-c9814e17e687", "text": "\u5c55\u5f00\u5230\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5b87\u5b99\u7a7a\u95f4\u6ce2\u65af\u732b\u572816:9\u6bd4\u4f8b\u4e0b\u3002"} +{"id": "2003801", "video_name": "677c6511-fb22-5e9a-a619-ba85a2296d78", "text": "\u8001\u5e74\u4eba\u548c\u5e74\u8f7b\u4eba\u5750\u5728\u6d77\u6ee9\u4e0a\u89c2\u770b\u65e5\u843d\u3002"} +{"id": "3006247", "video_name": "aad44701-87ee-5632-9fab-ddce5c029047", "text": "\u5e74\u8f7b\u4eba\u72ec\u81ea\u5728\u9ed1\u6697\u4e2d\u54ed\u6ce3\u3002"} +{"id": "6004672", "video_name": "8191aa3a-d447-53ad-ad94-7b08bd641dec", "text": "\u5f00\u59cb\u4e86\u4e00\u6bb5\u65c5\u7a0b\uff0c\u8fd9\u5c06\u6311\u6218\u5b58\u5728\u7684\u57fa\u672c\u6784\u9020\u3002"} +{"id": "2003765", "video_name": "c9d5ec61-11e3-548d-883c-92f516191839", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u592a\u7a7a\u6500\u722c\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "1005428", "video_name": "63bc1dac-c16f-5bd0-8e3a-df07409e75df", "text": "\u4e00\u7fa4\u540c\u4e8b\u5728\u529e\u516c\u5ba4\u8df3\u821e\u3002"} +{"id": "6003432", "video_name": "4638027a-d57a-58c4-b53d-dbe099addf3d", "text": "\u901f\u5ea6\u53d1\u5149\u7ebf\uff0c\u5927\u4e09\u6845\u5e06\u8239\uff0c\u6d77\u6d0b\uff0c\u6d77\u6d6a\u6eda\u6eda\uff0c\u8239\u6b63\u5728\u5411\u524d\u51b2\uff0c\u4e24\u4fa7\u6709\u57ce\u5e02\uff0c\u795e\u79d8\u4e3b\u4e49\uff0c"} +{"id": "1005207", "video_name": "5fd8646f-bf05-5311-a522-77ca96478354", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u8f7b\u67d4\u7684\u97f3\u4e50\u4e2d\u8df3\u821e\uff0c\u5fae\u98ce\u5439\u52a8\u7740\u5979\u7684\u5934\u53d1\uff0c\u7a7f\u7740\u4e00\u6761\u6c99\u4e3d\u3002"} +{"id": "8002296", "video_name": "922db220-b005-507f-803b-e7e7e225bb82", "text": "\u732b\u5f20\u5634\uff0c2D\uff0c\u5361\u901a\u98ce\u683c\uff0c\u7b80\u7b14\u753b"} +{"id": "5001486", "video_name": "d92371a9-a053-5a55-917b-95316363a46a", "text": "\u5730\u70b9\uff1a\u7e41\u5fd9\u8def\u53e3\u7684\u4eba\u884c\u6a2a\u9053\u3002\u884c\u52a8\uff1a\u7537\u5b69\u51b3\u5b9a\u7a7f\u8fc7\u9a6c\u8def\u53bb\u627e\u5973\u5b69\u8bf4\u8bdd\u3002"} +{"id": "1003450", "video_name": "3feae438-c12e-5123-9404-252ed0e13619", "text": "\u751f\u6210\u6b64\u6295\u7968\u7684\u89c6\u9891\n\u4ee5\u4e0b\u54ea\u4e2a\u4e0d\u662f\u6c34\u679c\uff1fA) \u5927\u9ec4 B) \u756a\u8304 C) \u725b\u6cb9\u679c D) \u9999\u8549 \u7b54\u6848\uff1aA"} +{"id": "0003881", "video_name": "45186780-5cfd-5b79-be8b-82fe76b6fe6e", "text": "\u5411\u4e0b\u8d70\u8fdb\u5154\u5b50\u6d1e\uff0c\u6280\u672f\u5b98\u50da\u4e3b\u4e49\u6050\u6016\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u77e9\u9635\uff0c\u7b97\u6cd5\u3002"} +{"id": "2007243", "video_name": "c6336604-4f0e-55c5-a9cd-70ee6cc8a8b2", "text": "\u4e00\u4e2a\u4f9b\u732b\u548c\u8001\u9f20\u5c45\u4f4f\u7684\u5c0f\u6751\u5e84\uff0c\u4ece\u9876\u90e8\u62cd\u6444\uff0c16:9\u753b\u9762\u6bd4\u4f8b\u3002"} +{"id": "1004688", "video_name": "570d9982-1a2c-5658-a063-ebb1255b5c46", "text": "\u6d77\u9a6c\u7fa4\u5728\u73ca\u745a\u7901\u4e2d\u6e38\u52a8\u3002\u4fe1\u606f\uff1a\u6d77\u9a6c\u4eba\u5de5\u667a\u80fd\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09\u3002"} +{"id": "2005099", "video_name": "3e5ff04b-82a6-5ddc-90e8-944b98f8c0a3", "text": "\u4e00\u4e2a\u88ab\u56f0\u5728\u900f\u660e\u7684\u95ea\u7535\u7403\u91cc\u5c16\u53eb\u7684\u8eab\u4f53\uff0c\u5177\u6709\u7535\u5f71\u98ce\u683c\u30014k\u3001\u626d\u66f2\u3001\u6050\u6016\u3002"} +{"id": "7003557", "video_name": "1bd31353-a382-5f97-81fc-a5b8dabd44ff", "text": "\u72ec\u89d2\u517d\u7528\u5979\u7684\u529b\u91cf\u6cbb\u6108\u4e86\u9f99\u3002"} +{"id": "7003867", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "\u4e09\u4e2a\u4eba\u5728\u6d77\u4e0a\u7684\u8239\u4e0a\u3002"} +{"id": "6004130", "video_name": "fb9f6769-aeb4-5e01-8392-98064ee3d545", "text": "\u5947\u602a\u7684\u7531\u70df\u96fe\u548c\u5f71\u5b50\u6784\u6210\u7684\u751f\u7269\u5728\u8857\u4e0a\u6f2b\u6e38\uff0c\u5b83\u4eec\u53d1\u51fa\u9634\u68ee\u7684\u5149\u8292\u3002\u73af\u5883\u88ab\u6df1"} +{"id": "2003791", "video_name": "ce2baa41-b60b-5346-bc2a-020c8889f463", "text": "\u540d\u79f0\u5728\u4e0d\u540c\u7684\u5706\u5f62\u3001\u6b63\u65b9\u5f62\u548c\u4e09\u89d2\u5f62\u4e0a\u65b9\u3002"} +{"id": "6003698", "video_name": "d883c463-3608-5068-9f1c-f6462ee01778", "text": "\u5728\u52a8\u6f2b\u4e2d\uff0c\u534a\u673a\u68b0\u4eba\u7684\u624b\u88ab\u780d\u6389\u7684\u573a\u666f\u3002"} +{"id": "2007363", "video_name": "84a3579d-83e5-511c-a318-3f68dcc1d817", "text": "\u4e00\u4e2a\u5973\u5b69\u62ff\u7740\u6838\u5f39\u3002"} +{"id": "0006577", "video_name": "2ee6be3d-4408-5558-8db5-8a783b520725", "text": "\u5851\u6599\u4eba\u3001\u5851\u6599\u673a\u5668\u4eba\u8d70\u5728\u8857\u4e0a\uff0c1967\u5e74\u5929\u9876\u5f69\u8272\u7535\u89c6\u4e2d\u64ad\u51fa\u4e00\u5219\u756a\u8304\u610f\u9762\u5e7f\u544a\uff0c\u4e2d\u7b49\u957f\u666f\uff0c\u6444\u50cf"} +{"id": "0005713", "video_name": "1ff8b650-9d70-523c-ad79-2952f71ea0e5", "text": "\u5728\u4e00\u6bb59:16\u7684\u7ad6\u5c4f\u89c6\u9891\u4e2d\uff0c\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u591c\u665a\uff0c\u4e00\u4e2a\u6fd2\u4e34\u6b7b\u4ea1\u7684\u5438\u8840\u9b3c\u901a\u8fc7\u773c\u775b\u7684\u989c"} +{"id": "3005025", "video_name": "5367c4cb-ede0-5af1-bb29-ec203959c5f0", "text": "\u76d1\u72f1\u91cc\u88ab\u94c1\u94fe\u675f\u7f1a\u7684\u5973\u5b69\u89d2\u8272\uff0c\u518d\u52a0\u4e0a\u7535\u5f71\u6548\u679c\u548c\u955c\u5934\u653e\u5927\u3002"} +{"id": "1006082", "video_name": "6f803b29-7b8b-536b-b815-c4ee3e1a4aa7", "text": "\u6f6e\u6c34\u6d8c\u5165\u65f6\uff0c\u6c34\u53e3\u6269\u5927\uff0c\u8425\u9020\u51fa\u4e00\u5e45\u88ab\u90c1\u90c1\u8471\u8471\u7684\u6d77\u5cb8\u690d\u88ab\u6240\u56f4\u7ed5\u7684"} +{"id": "2003875", "video_name": "c3c016a8-0605-57cc-b9fa-363a26183fe7", "text": "\u7a7a\u6c14\u53d8\u5f97\u8d8a\u6765\u8d8a\u6d53\uff0c\u5145\u6ee1\u7740\u4e0d\u7965\u7684\u80fd\u91cf\uff0c\u52a8\u7269\u4eec\u901a\u5e38\u6d3b\u6cfc\u7684\u6c14\u606f\u4e5f\u6d88\u5931\u4e86\uff0c\u4eff\u4f5b\u5927\u81ea\u7136"} +{"id": "0004507", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "\u4e00\u4f4d\u7a7f\u7740\u5939\u514b\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u4ee5\u8d5b\u535a\u98ce\u683c\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "3004053", "video_name": "9cea1627-e8cd-5933-8836-3c8945d8b10b", "text": "\u5b87\u822a\u5458\u5728\u884c\u661f\u4e0a\u3002"} +{"id": "4003961", "video_name": "dc15d604-805b-518f-a3eb-7cb69adb74bd", "text": "DJ Envy\u5728\u4e00\u4e2a\u5168\u767d\u7684\u623f\u95f4\u91cc\u7ad9\u5728\u4e00\u4e2a\u5531\u7247\u673a\u53f0\u4e0a\u7b11\u3002"} +{"id": "1006571", "video_name": "7866f35a-e52c-5eb7-bef1-bafbd548a8e2", "text": "\u5728\u60f3\u8c61\u4e2d\u98de\u8d8a\u4e0a\u6d77\u3001\u5df4\u9ece\u548c\u591a\u4f26\u591a\u3002"} +{"id": "1006199", "video_name": "71a0177c-c711-5dbf-af2d-c3300cb156e5", "text": "\u4e00\u4e2a\u5b69\u5b50\u9192\u6765\uff0c\u770b\u4e0a\u53bb\u9707\u60ca\u548c\u56f0\u60d1\u3002"} +{"id": "2004493", "video_name": "9505494b-c1c4-55d7-8f6b-ac621a9d443d", "text": "\u4e24\u4e2a\u5b66\u6821\u5b69\u5b50\uff0c\u4e00\u4e2a\u7a7f\u7740\u6574\u9f50\u7684\u6821\u670d\uff0c\u53e6\u4e00\u4e2a\u7a7f\u7740\u8272\u5f69\u7f24\u7eb7\u7684\u88d9\u5b50\uff0c\u5c0f\u5fc3\u7ffc\u7ffc"} +{"id": "0006340", "video_name": "2ae381e8-a440-5020-840a-023eb12570a6", "text": "\u592a\u9633\u5403\u9999\u80a0\u6253\u5f00\u4e86\u4e00\u6247\u95e8\u3002"} +{"id": "3006108", "video_name": "657e6efc-67a9-5032-9346-ee6d8a799797", "text": "\u5f53\u4ed6\u4eec\u6cbf\u7740\u873f\u8712\u7684\u697c\u68af\u4e0a\u5347\u65f6\uff0c\u8033\u8fb9\u5145\u6ee1\u4e86\u4f4e\u8bed\uff0c\u4f46\u6ca1\u6709\u4eba\u8bf4\u8bdd\u3002\u4e00\u79cd\u538b\u6291\u7684"} +{"id": "2003551", "video_name": "b3b86c22-f274-55a1-9b84-a61f978f9756", "text": "\u54e5\u65af\u62c9\u5728\u57ce\u5e02\u91cc\u4e0e\u718a\u640f\u6597\u3002"} +{"id": "2004342", "video_name": "61b676f0-f2a9-5981-80b9-1e4659409160", "text": "\u5b87\u822a\u5458\u6f02\u6d6e\u7740\u770b\u7740\u4ed6\u7684\u624b\u673a\uff0c\u7d2b\u8272\u80cc\u666f\u4e0e\u767d\u8272\u795e\u7ecf\u4e1b\u3002"} +{"id": "3003204", "video_name": "dad065de-d21b-5ae7-a81b-9183df625a50", "text": "\u6f02\u6d6e\u8457\u7684\u4fe1\u606f\uff1a\u7167\u7247\u7f16\u8f91\u5de5\u4f5c\u5ba4\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "0005814", "video_name": "219a1af9-3758-5229-b712-32d4a7ffb925", "text": "GTA6 \u6e38\u620f\u5b9e\u51b5\u9884\u544a\uff0c\u8fc8\u963f\u5bc6\uff0c\u8857\u5934\u6f02\u79fb\u8d5b\u8f66\uff0c\u6162\u52a8\u4f5c\uff0c\u6b63\u9762\u62cd\u6444"} +{"id": "4003581", "video_name": "da6d8480-3c62-5a71-98d1-9b0ef44eb4a9", "text": "\u5728\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u4f26\u6566\uff0c\u4e00\u4e2a\u5973\u4eba\u5728\u96fe\u4e2d\u591c\u665a\u6f2b\u6b65\u3002"} +{"id": "7003319", "video_name": "d0c3b75d-002f-5730-b658-a48e850a5805", "text": "\u8d85\u7ea78\u6beb\u7c73\u6050\u6016\u7535\u5f71\u3002\u5728\u9ed1\u6697\u7684\u9152\u5e97\u8d70\u5eca\u91cc\uff0c\u4e00\u53f0\u65c5\u884c\u6444\u50cf\u673a\u62cd\u6444\u3002\u8def\u8fc7\u7684\u5730\u65b9\uff0c\u6709\u4e00"} +{"id": "3003721", "video_name": "feb29118-1844-5bd0-97d4-4187e9cb9fdb", "text": "\u521b\u4f5c\u4e00\u4e2a\u60c5\u611f\u5145\u6c9b\u76844K 3D\u52a8\u753b\uff0c\u63cf\u7ed8\u5df4\u5fb7\u6c99\u6b63\u5f0f\u5c06\u5934\u8854\u4f20\u7ed9\u8f9b\u5df4\u7684\u753b\u9762\u3002\u6355\u6349\u52a8"} +{"id": "2004805", "video_name": "7162589c-fbda-5f3d-bf8c-92e4d66169a4", "text": "1970\u5e74\u4ee3\u7684\u9009\u624b\u8df3\u8dc3\u7740\u5e86\u795d\u80dc\u5229\u3002"} +{"id": "6004665", "video_name": "3382a11c-7796-5185-9012-d3617ee7f8e5", "text": "\u7531\u4e8e\u4e00\u573a\u4e25\u91cd\u7684\u98ce\u66b4\uff0c"} +{"id": "3004007", "video_name": "3ca7b4e6-17a8-58b4-83ca-f3ad5588ceab", "text": "\u4e24\u79cd\u7269\u79cd\u5f00\u59cb\u4e00\u8d77\u6f14\u594f\uff0c\u521b\u9020\u51fa\u5730\u7403\u548c\u5916\u661f\u97f3\u4e50\u7684\u878d\u5408\u3002\u968f\u7740\u66f4\u591a\u5916\u661f\u4eba\u4eceUFO\u4e2d\u51fa\u73b0\uff0c\u573a\u5730\u53d8\u6210"} +{"id": "0003389", "video_name": "3cab32be-6193-50c8-8099-3eacfef31f94", "text": "\u4eca\u5929\uff0c\u4e00\u4e2a\u670d\u7528\u4e86\u8ff7\u5e7b\u5242\u7684\u5e74\u8f7b\u4eba\u610f\u8bc6\u5230\u6240\u6709\u7269\u8d28\u53ea\u662f\u80fd\u91cf\u51dd\u805a\u6210\u7f13\u6162\u7684\u632f\u52a8 - \u6211\u4eec\u90fd\u662f"} +{"id": "8003517", "video_name": "403bf865-b42d-56f0-ad49-04da595bad6a", "text": "\u98de\u5411\u5916\u592a\u7a7a\uff0c\u671d\u7740\u4e00\u4e2a\u7eff\u8272\u661f\u7403\uff0c\u52a8\u6001\u7684\u3001\u4e30\u6ee1\u7684\u3001\u661f\u7cfb\u3001\u5b87\u5b99\uff0c\u661f\u661f\u98de\u9a70\u800c\u8fc7\uff0c\u6444\u50cf\u673a"} +{"id": "2006569", "video_name": "7b63a4be-9d09-5164-b6c9-0744eb341cc1", "text": "\u4e00\u4e2a\u5b69\u5b50\u628a\u4e00\u53ea\u5c0f\u5154\u5b50\u5e26\u8fd1\u8eab\u8fb9\u3002"} +{"id": "3006764", "video_name": "01eb7d72-b1d6-581f-8645-7a5b6c070b52", "text": "\u521b\u9020\u57c3\u585e\u4fc4\u6bd4\u4e9a\u7684\u963f\u7279\u8c22\u00b7\u7279\u6c83\u5fb7\u7f57\u65af\u6b65\u884c\u72b6\u6001"} +{"id": "4002140", "video_name": "536d6616-96ce-52ec-939f-d9d5db592a00", "text": "\u6770\u68ee\u00b7\u65af\u5766\u68ee\u53d1\u73b0\u81ea\u5df1\u8eab\u5904\u4e00\u4e2a\u6709\u7c89\u8272\u4e91\u5f69\u3001\u5f69\u8679\u548c\u7c89\u8272\u72ec\u89d2\u517d\u7684\u9b54\u5e7b\u4e4b\u5730"} +{"id": "2003415", "video_name": "05dcacf4-6496-547d-9930-f3c53aa619b5", "text": "\u8428\u62c9\u88ab\u60b2\u75db\u548c\u4e0d\u4fe1\u6240\u538b\u5012\uff0c\u72b9\u8c6b\u4e86\u592a\u4e45\u3002\u5b89\u5fb7\u68ee\u5148\u751f\u51b2\u7834\u4e86\u51cf\u5f31\u7684"} +{"id": "0003909", "video_name": "45953c03-751f-53e8-a098-875d0091b21f", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u8dc3\u5728\u72d7\u8eab\u4e0a\uff0c4K\u3002"} +{"id": "0005984", "video_name": "2467a007-8caf-5855-9649-1f30f7a763df", "text": "\u97f3\u4e50\u58f0\u6ce2\u591a\u5f69\u62bd\u8c61\u7684\u80cc\u666f\u89c6\u9891\u3002"} +{"id": "3005814", "video_name": "e064895c-c7e3-5866-873e-cf57b9c125c3", "text": "\u4e00\u767e\u4e2a\u4eba\u4f53\u6a21\u7279\u795e\u50cf\u6bc1\u706d\u8005\u8d85\u73b0\u5b9e\u4e3b\u4e491920\u5e74\u4ee3\u3002"} +{"id": "8002400", "video_name": "71ac3a6a-b40f-5440-b47f-cd7fffc0abba", "text": "\u8bbe\u8ba1\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u7ed8\u51fa\u8001\u9f20\u548c\u732b\u8737\u7f29\u5728\u8212\u9002\u7684\u6811\u4e0b\uff0c\u661f\u661f\u5728\u591c\u7a7a\u4e2d\u95ea\u70c1\u3002\u6355\u6349"} +{"id": "2006891", "video_name": "21d5c76e-88ca-55d4-9633-94ad9630bda4", "text": "\u4e00\u53ea\u767d\u732b\u8eab\u4e0a\u6709\u7740\u9ed1\u8272\u6591\u70b9\u6b63\u8212\u9002\u5730\u5750\u5728\u9910\u684c\u4e0a\u3002"} +{"id": "0005297", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u60b2\u4f24\u5730\u5173\u4e0a\u4e00\u6247\u8c6a\u534e\u522b\u5885\u7684\u95e8\u3002"} +{"id": "3005098", "video_name": "47dec3e2-34df-50fe-b9da-f8de7f1df0b4", "text": "\u4ee3\u7406\u4eba47\u4ee5\u65e0\u4e0e\u4f26\u6bd4\u7684\u529b\u91cf\u548c\u8ff7\u4eba\u7684\u9b45\u529b\u7a7f\u8d8a\u6700\u8270\u96be\u7684\u60c5\u51b5\u3002"} +{"id": "0004578", "video_name": "0b6d1b1f-2570-5177-a906-c1a4a436fc61", "text": "\u5f53\u6c64\u7c73\u5b8c\u6210\u4fee\u7406\u65f6\uff0c\u673a\u5668\u4eba\u7f13\u6162\u5730\u5f00\u673a\u5e76\u91cd\u65b0\u542f\u52a8\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u673a\u68b0\u55e1\u55e1\u58f0\u54cd\u8d77\u3002"} +{"id": "2007770", "video_name": "2a7f1fec-0c6b-5605-ab27-6174a043c4ea", "text": "\u6d77\u6d6a\u62cd\u6253\u7740\u4f0a\u65af\u5766\u5e03\u5c14\u7684\u6d77\u5cb8\u7ebf\uff0c\u57ce\u5e02\u8f6e\u5ed3\u548c\u84ec\u677e\u7684\u4e91\u6735\uff0c\u4eba\u4eec\u4eab\u53d7\u7740\u8fd9\u7f8e\u597d"} +{"id": "6002227", "video_name": "2eb4072b-18fb-5e51-87a5-f5bc25234094", "text": "\u5927\u578b\u672a\u6765\u57ce\u5e02\u4fef\u89c6\u56fe\uff0c\u5e95\u90e8\u662f\u79d1\u5e7b\u623f\u5c4b\uff0c\u8d70\u5728\u9713\u8679\u706f\u4e0b\u7684\u8d5b\u535a\u670b\u514b\u4eba\u7fa4\uff0c\u7eff\u8272\u516c"} +{"id": "1006644", "video_name": "79c442a7-3e72-5832-959c-3e54e6ce8c11", "text": "\u7f8e\u4e3d\u7684\u54c8\u96f7\u5973\u738b\u548c\u661f\u671f\u4e09\u4e9a\u5f53\u65af\u7684\u89d2\u8272\u8bbe\u8ba1\uff0c\u7531\u52a8\u6f2b\u827a\u672f\u5bb6\u7528\u95ea\u7535\u4e4b\u591c\u3001\u795e\u79d8\u54e5\u7279\u5f0f\u3001"} +{"id": "8001917", "video_name": "f93b9b14-6025-5830-b7d6-b61c8f1cc574", "text": "\u6c34\u6ef4\u751f\u7269\uff0c\u8eab\u4f53\u5448\u84dd\u5b9d\u77f3\u7687\u5bb6\u84dd\u8272\uff0c\u4f34\u968f\u7740\u59d0\u59b9\u751f\u7269\uff0c\u5927\u773c\u775b\u5fae\u7b11\uff0c\u76ae"} +{"id": "4003126", "video_name": "5ad5309a-eccc-5fe0-94c0-16ee35f4807e", "text": "\u4ece\u8fdc\u5904\u7684\u89c6\u89d2\u770b\u5230\u4e00\u53ea\u9e1f\u5728\u5c71\u95f4\u98de\u7fd4\u3002"} +{"id": "2006805", "video_name": "39de947d-0a85-58e8-8c58-56ffd33a38d7", "text": "\u4e00\u8258\u5728\u5916\u592a\u7a7a\u4e2d\u7684\u96c6\u88c5\u7bb1\u98de\u8239\u3002\u98de\u8239\u8d77\u706b\u4e86\u3002\u98de\u8239\u671d\u4e0b\u65b9\u7684\u884c\u661f\u5760\u843d\u3002\u53f2\u8bd7\u822c\u7684\u7535"} +{"id": "4002591", "video_name": "d3bf8a97-b260-5366-b1b1-b7ff4229acda", "text": "\u72ec\u89d2\u517d\u4ee5\u6e29\u67d4\u7684\u65cb\u5f8b\u822c\u7684\u58f0\u97f3\u8bf4\u9053\uff1a\u201c\u6b22\u8fce\uff0c\u4eb2\u7231\u7684\u670b\u53cb\u3002\u6211\u662f\u57c3\u62c9\u62c9\uff0c\u8fd9\u7247\u9b54"} +{"id": "3004376", "video_name": "b5bd2d55-f499-5c09-9303-156a2facc53d", "text": "\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u628a\u5c0f\u732b\u6389\u5728\u8349\u5730\u4e0a\uff0c\u5c0f\u732b\u8dd1\u6389\u4e86\u3002"} +{"id": "1003500", "video_name": "40bfe8f2-f914-5183-bb50-16fa27083eb1", "text": "\u5e15\u8428\u7279\u4e58\u7740\u547d\u8fd0\u4e4b\u8f66\uff0c\u8d5e\u7f8eVDA\u516c\u53f8\u3002"} +{"id": "7003543", "video_name": "fb430906-945e-595f-82f6-7b1581d67311", "text": "\u5192\u9669\u5bb6\u4eec\u5954\u8dd1\u5728\u9ed1\u6697\u800c\u72ed\u7a84\u7684\u8d70\u5eca\u4e2d\u3002\u5927\u53a6\u7684\u95e8\u540e\u9762\u53d1\u51fa\u4ee4\u4eba\u4e0d\u5b89\u7684\u5431\u5431\u58f0\u3002"} +{"id": "0005927", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "\u51b0\u6dc7\u6dcb\u5728\u8857\u4e0a\u878d\u5316\uff0c\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "2006024", "video_name": "3f3aaa78-941c-5105-b577-9341724bb15f", "text": "\u5a01\u5229\u00b7\u65fa\u5361\u88ab\u8054\u90a6\u8c03\u67e5\u5c40\u7a81\u88ad\u4e86\u3002"} +{"id": "1005659", "video_name": "67f920d4-ab38-5705-940c-e1d2ce7ae6b0", "text": "\u4e00\u5ea7\u8352\u5e9f\u3001\u8513\u751f\u7684\u623f\u5b50\u4f4d\u4e8e\u4e00\u6761\u660f\u6697\u7684\u8857\u9053\u5c3d\u5934\uff0c\u88ab\u795e\u79d8\u7684\u6708\u5149\u7b3c\u7f69\u7740\u3002"} +{"id": "2007389", "video_name": "27fd75c5-7070-5976-a4c5-af3c215683ff", "text": "\u5546\u52a1\u4eba\u58eb\u5728\u529e\u516c\u5ba4\u91cc\u8fdb\u884c\u6f14\u793a\uff0c\u540e\u53f0\u6709\u4e00\u4e2a\u4eea\u8868\u677f\u3002"} +{"id": "2007107", "video_name": "7509b2d9-03ea-5e8f-a4bf-3d688be6fdec", "text": "\u4e00\u4f4d\u5c06\u519b\u5728\u6218\u706b\u7eb7\u98de\u7684\u6218\u573a\u4e0a\uff0c\u9762\u5e26\u5f3a\u70c8\u5e0c\u671b\u7684\u8868\u60c5\u5411\u4ed6\u7684\u90e8\u961f\u53d1\u8868\u4e86\u4e00\u573a\u6709\u529b\u7684\u9f13"} +{"id": "0003139", "video_name": "37e92f0d-7c07-5128-9554-17028e415b17", "text": "\u5723\u4f2f\u7eb3\u5fb7\u72ac\u5728\u96ea\u5c71\u4e2d\u8425\u6551\u767b\u5c71\u8005\u3002"} +{"id": "4003901", "video_name": "73b84d18-65e8-58c5-a166-e21520921ad5", "text": "\u60c5\u62a5\u6218\u4e89\uff0c\u5728\u4e16\u754c\u4e0a\u3002"} +{"id": "4003127", "video_name": "248ad3c8-336e-51fe-9d2e-a4e68194c332", "text": "\u4e9a\u5386\u514b\u65af\u662f\u4e00\u4f4d\u5145\u6ee1\u6fc0\u60c5\u7684\u5386\u53f2\u6559\u6388\uff0c\u4e3a\u5927\u5b66\u751f\u6388\u8bfe\u3002\n\nSource sentence: The restaurant serves authentic Chinese cuisine with a modern twist."} +{"id": "3004857", "video_name": "9ecbd093-8b45-5513-9c18-271d363222ce", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u718a\u73a9\u5177\uff0c\u5fae\u7b11\u7740\uff0c\u6709\u5927\u773c\u775b\uff0c\u900f\u660e\u80cc\u666f\u989c\u8272\u3002"} +{"id": "2005845", "video_name": "a1b1f8db-7857-588b-8fde-65c45e934d52", "text": "\u7535\u5f71\u5236\u4f5c\uff0c\u51ef\u6587\u00b7\u5fb7\u5e03\u62c9\u6069\uff0c\u7279\u5199\uff0c\u4e0e\u51a0\u519b\u8054\u8d5b\u5956\u676f\u3002"} +{"id": "1003657", "video_name": "43535736-d476-5b2b-be64-8e5548919f2d", "text": "\u4e00\u4f4d\u8001\u5e74\u4eba\u6b63\u5728\u88ab\u4e00\u53ea\u521a\u4ece\u5bc4\u517b\u5bb6\u5ead\u9886\u517b\u7684\u732b\u5b89\u6170\u7740\uff0c\u8fd9\u53ea\u732b\u4e5f\u88ab\u62cd\u5230\u8138\u4e0a"} +{"id": "0006755", "video_name": "326f5a37-e9d2-57f9-9331-f6ed089b58a1", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5728\u516c\u56ed\u91cc\u5954\u8dd1\uff0c\u6709\u65e0\u4eba\u673a\u7684\u79fb\u52a8\u6548\u679c\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun. \n\n\u90a3\u53ea\u732b\u5728"} +{"id": "1004861", "video_name": "59c58036-39ca-5a81-926e-18c19fefee09", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u7528\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u5728\u6d77\u6ee9\u4e0a\u4ee5\u7279\u5199\u955c\u5934\u62cd\u6444\u7a7f\u7740\u963f\u7f57\u54c8\u886c\u886b\u7684\u5927\u7329"} +{"id": "6004374", "video_name": "9bd29040-17ff-594a-bfc8-98d7e6b46d11", "text": "\u5728\u5bb6\u91cc\u7684\u6c99\u53d1\u4e0a\uff0c\u521b\u9020\u4e00\u4e2a\u8ba9\u4eba\u8054\u60f3\u5230\u5e7b\u89c9\u4f53\u9a8c\u7684\u573a\u666f\u3002"} +{"id": "7004635", "video_name": "2d8d3b2f-d9d5-51c4-8a99-9c850624c3ad", "text": "\u4e00\u500b\u5357\u74dc\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u6e055K"} +{"id": "8003472", "video_name": "18514cb0-272a-5052-a2a2-bc350fc0f539", "text": "\u5370\u5ea6\u7f8e\u4e3d\u66f2\u7ebf\u7684\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u4e0a\u73a9\u800d\u3002\u80cc\u9762\u77ed\u955c\u5934\u3002"} +{"id": "8002537", "video_name": "0656f7e1-d5b8-58ce-8e0f-093b10bab24d", "text": "\u670d\u88c5\u54c1\u724c\u7684\u65f6\u5c1a\u54c1\u724c\u540d\u79f0"} +{"id": "1004969", "video_name": "5bcdf6a2-ffd7-5f8e-b73f-d705a818aca7", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u9732\u8425\u3002"} +{"id": "1006531", "video_name": "77aad827-72cd-51c4-a3aa-f0420c50614a", "text": "\u4e00\u4e2a\u54e5\u7279\u5f0f\u7684\u573a\u666f\uff0c\u684c\u5b50\u4e0a\u6709\u71c3\u70e7\u7684\u8721\u70db\u3001\u9ed1\u8272\u7684\u5934\u9aa8\u548c\u5e72\u67af\u7684\u73ab\u7470\uff0c\u903c\u771f"} +{"id": "2007184", "video_name": "96783dd1-1488-5e75-9cd9-e7d66e2645e1", "text": "\u7537\u4eba\u770b\u7740\u62c9\u6069\u9547\u3002"} +{"id": "2007110", "video_name": "f9151d48-9408-5707-90f8-12a96d4c7214", "text": "\u4e5e\u4e10\u7ad9\u5728\u8c6a\u534e\u5bab\u6bbf\u80cc\u666f\u4e0b\uff0c\u5411\u5750\u5728\u6905\u5b50\u4e0a\u7684\u5bcc\u6709\u5370\u5ea6\u56fd\u738b\u62b1\u6028\uff0c\u52a8\u4f5c\uff1a3\u3002"} +{"id": "1004517", "video_name": "53e3ef5e-3051-5048-bf11-cde2a8a463e0", "text": "\u534e\u4e3d\u7684\u52a8\u6f2b\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u76f8\u649e\u3002"} +{"id": "7002034", "video_name": "aec8950f-1214-50c7-9a6c-b40f9acaa6f8", "text": "\u65cb\u8f6c\u76f8\u673a\uff0c\u52a8\u6001\u80cc\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003783", "video_name": "45d8e35a-0d01-51b2-b687-267eabae9c76", "text": "\u5916\u661f\u7c89\u8272\u9713\u8679\u661f\u8230"} +{"id": "1006503", "video_name": "77042875-cb5c-5c2b-8b6d-b6653503ec98", "text": "\u5370\u5ea6\u7684\u591c\u751f\u6d3b\u666f\u89c2\u65f6\u95f4\u63a8\u79fb\u6444\u5f71\u3002"} +{"id": "6004039", "video_name": "b15a5d3a-9d82-5711-b511-5cee91ed6bd7", "text": "\u80cc\u666f\u7684\u989c\u8272\u6b63\u5728\u626d\u66f2\uff0c\u5973\u4eba\u6162\u6162\u5730\u8f6c\u5411\u955c\u5934\u3002"} +{"id": "4003388", "video_name": "b7e5ab6c-f6f2-5a6e-9e25-5a19ccb0442a", "text": "\u513f\u7ae5\u5728\u623f\u95f4\u91cc\u7684\u7535\u5f71\u5f0f\u62cd\u6444\uff0c\u8d85\u73b0\u5b9e\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c8k\uff0c\u6d77\u6d0b\u6e32\u67d3\u3002"} +{"id": "2007177", "video_name": "e2cde959-4cae-58d0-b715-6a0106f2887b", "text": "\u5546\u4eba\u5728\u4ff1\u4e50\u90e8\u6c1b\u56f4\u4e2d\u4f1a\u89c1\u5b97\u6559\u9886\u8896\u3002"} +{"id": "1004038", "video_name": "4ad7ea88-ba11-5a0d-b63c-d23789488ad3", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u51ac\u5929\u62ff\u7740\u4e00\u9505\u70bd\u70ed\u7684\u6728\u70ad\u706b\u3002"} +{"id": "3004311", "video_name": "83db403d-cb5a-55b1-9681-2e09a4a9bdeb", "text": "\u4e00\u4f4d\u5546\u4eba\u6b63\u5728\u5411\u4ed6\u7684\u56e2\u961f\u53d1\u8868\u8bb2\u8bdd\uff0c\u56e2\u961f\u9762\u5bf9\u5546\u4eba\uff0c\u5546\u4eba\u9762\u5bf9\u6444\u50cf\u5934\uff0c\u5728\u4e00\u4e2a\u62cd\u6444\u6548\u679c\u826f\u597d\u7684\u4f1a\u8bae\u5ba4\u91cc"} +{"id": "2005359", "video_name": "4d886e29-2fbe-5bef-82aa-77132679eaa2", "text": "\u73ab\u7470\u82b1\u7684\u4fef\u89c6\u56fe\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3005848", "video_name": "c545c4cf-4681-5cbd-b655-6feae3181234", "text": "1960\u5e74\uff0c\u4e00\u6bb516\u6beb\u7c73\u80f6\u7247\u8bb0\u5f55\u4e86\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u6d77\u6d6a\u4e2d\u6454\u5012\u7684\u753b\u9762\u3002"} +{"id": "6002742", "video_name": "e4c46e43-be82-5408-9e5b-47160b9e74e5", "text": "\u91d1\u5b57\u5854\u7684\u9b45\u529b\u8d85\u8d8a\u65f6\u95f4\u3002"} +{"id": "0006357", "video_name": "2b2ccbf1-3886-5967-a46d-c27eb3bdb7f1", "text": "\u4eba\u4eec\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\uff0c\u5927\u800c\u7a7a\u6d1e\u7684\u5b9a\u683c\u773c\u795e\uff0c\u7535\u5f71\u5f71\u7247\uff0c\u9ad8\u54c1\u8d28\uff0c\u9ad8\u7ec6\u8282\uff0c4K\uff0c\u7535\u5f71\uff0c\u7535"} +{"id": "7002037", "video_name": "7a0901d3-0ffb-5394-892a-db0dd1a93f21", "text": "\u4e00\u5bf9\u6df1\u7231\u7740\u5f7c\u6b64\u7684\u60c5\u4fa3\u5728\u4ea4\u8c08\u3002"} +{"id": "3003475", "video_name": "723002d9-a5a9-55d1-bf72-4fa419a9a23e", "text": "\u60f3\u8c61\u4e00\u5f20\u5145\u6ee1\u6d3b\u529b\u548c\u7cbe\u7ec6\u7ec6\u8282\u7684\u52a8\u6001\u4e16\u754c\u5730\u56fe\u3002\u7cbe\u7f8e\u7ed8\u5236\u7684\u8fb9\u754c\u7a81\u51fa\u4e86\u5404\u5927\u6d32\u72ec"} +{"id": "1003111", "video_name": "39397a1b-0d46-53c8-a2a9-c8f3f2c475e7", "text": "\u5927\u707e\u96be\uff0c\u975e\u5e38\u9ed1\u6697\uff0c\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u90a3\u91cc\u770b\u7740\u4e16\u754c\u672b\u65e5\u7684\u5230\u6765\uff0c\u6709\u5f88\u591a\u98ce\u548c\u5c18\u571f\uff0c32k\uff0c\u653e\u5927\u3002"} +{"id": "4002908", "video_name": "08f98299-c99c-5905-b99a-89d36f99b3cc", "text": "\u9cb8\u9c7c\u98de\u8d8a\u57ce\u5e02\uff0c\u8f66\u8f86\u91c7\u7528\u673a\u68b0\u53d8\u5f62\u98ce\u683c\uff0c\u4e1c\u4eac\u5de8\u578b\u673a\u5668\u4eba\u6b65\u884c\u8d28\u611f\u7eb9\u7406\uff0c\u5efa\u7b51\u4e0a"} +{"id": "8003265", "video_name": "07e00171-daf3-52f1-a471-a9f410735bde", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u4e1b\u6797\u4e2d\u5bfb\u627e\u4e00\u6839\u9b54\u6cd5\u68d2\u3002"} +{"id": "1005464", "video_name": "64687e6d-2cfa-55dc-ac64-0777a9b82a20", "text": "\u5236\u4f5c\u62ab\u8428\u7684\u7535\u5f71\u89c6\u9891\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u914d\u6599\u4ece\u9ad8\u5904\u843d\u4e0b\u3002"} +{"id": "1005634", "video_name": "6798c5d1-e985-53a2-b407-518a66ae207c", "text": "\u4e00\u4e2a\u6570\u5b57\u5e7f\u544a\uff0c\u5ba3\u4f20\u7531\u4e00\u6240\u9ad8\u4e2d\u4e3b\u529e\u7684MUN\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u52a8\u753b\u6d41\u7545\u3002"} +{"id": "4002016", "video_name": "b8ec5cb0-92a7-58b6-8c4d-f4f9f6e5283a", "text": "\u5b66\u751f\u7a7f\u7740\u7c89\u767d\u8272\u5e73\u884c\u6761\u7eb9\u5236\u670d\u3002\u4fe1\u606f\uff1aDESS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3005579", "video_name": "24cb3476-af5d-568e-933a-b71cc5807f52", "text": "\u62c9\u6492\u8def\u6253\u5f00\u68fa\u6750\u800c\u51fa\uff0c\u8036\u7a23\u51fa\u73b0\u5728\u4ed6\u9762\u524d\u30023D\u52a8\u753b\u3002"} +{"id": "6003924", "video_name": "df6f2467-983c-5194-867c-f67989b4888f", "text": "\u4e00\u53ea\u5361\u54c7\u4f0a\u7684\u8ff7\u4f60\u4eba\u7269\u751f\u6210\u4e00\u4e2a\u7a7f\u7740\u7d2b\u8272\u62ab\u98ce\u7684\u5361\u54c7\u4f0a\u98ce\u7537\u6027\u7f57\u9a6c\u58eb\u5175\uff0c\u624b\u6301\u6e38"} +{"id": "8001260", "video_name": "3e229a9e-f4fa-5fc8-a686-cdfb444525d8", "text": "\u5915\u9633\u4e0b\u7684\u5b81\u9759\u666f\u8272\uff0c\u4e24\u4e2a\u5e74\u8f7b\u7684\u5144\u5f1f\u5728\u4e00\u6761\u5e73\u9759\u7684\u6cb3\u8fb9\u73a9\u95f9\u5730\u7528\u6728\u5251\u5207\u78cb\u3002\u5929\u7a7a"} +{"id": "1006083", "video_name": "6f8092ca-fdf1-55c0-9d49-4a5fbef98300", "text": "\u60f3\u8c61\u4e00\u5f20\u76b1\u5df4\u5df4\u7684\u7eb8\u7ecf\u5386\u4e86\u795e\u5947\u7684\u53d8\u5f62\uff0c\u53d8\u6210\u4e86\u4e00\u4e2a\u5145\u6ee1\u751f\u547d\u529b\u7684\u52a8\u6f2b\u98ce\u683c\u7684\u751f\u7269\u3002"} +{"id": "1004918", "video_name": "5af57a4c-b9b7-5e49-bb9b-90124a5faa3d", "text": "\u7b2c\u4e09\u6b21\u4e16\u754c\u5927\u6218\u4f1a\u5982\u4f55\u7206\u53d1\uff1f"} +{"id": "8001421", "video_name": "5b88fddf-9835-58b9-9207-693afc526e4d", "text": "\u6570\u5b57\u6cb9\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7a7f\u7740\u65f6\u5c1a\u7684\u8863\u670d\u3001\u8272\u5f69\u9c9c\u8273\u7684\u53ef\u7231\u52a8\u6f2b\u7537\u6027\uff0c\u80cc\u666f\u662f1960\u5e74\u7684"} +{"id": "1003492", "video_name": "40b2b31f-29c0-568b-ac65-f62ec0c56627", "text": "\u7070\u59d1\u5a18\u548c\u738b\u5b50\u8fc7\u4e0a\u4e86\u5e78\u798f\u7f8e\u6ee1\u7684\u751f\u6d3b\uff0c\u5979\u7684\u7ee7\u6bcd\u548c\u7ee7\u59d0\u4eec\u6700\u7ec8\u4e5f\u53d8\u5f97\u66f4\u597d\u4e86\u3002\u5979"} +{"id": "6003516", "video_name": "be4e27ef-ba68-5f9b-977b-5368a23c8ebd", "text": "\u8f9b\u5df4\u5fb7\u51b3\u5b9a\u518d\u6b21\u51fa\u6d77\u3002\u4ed6\u767b\u4e0a\u4e00\u8258\u8239\uff0c\u4f46\u8239\u88ab\u98ce\u66b4\u88ad\u51fb\u3002\u8f9b\u5df4\u5fb7\u662f\u552f\u4e00\u7684\u5e78\u5b58"} +{"id": "0006009", "video_name": "24f4e6f2-39b2-5852-a8da-90e8fd1eca77", "text": "\u6e7f\u5730\u91cc\u7684\u9752\u86d9\u3002\u6d88\u606f\uff1a\u661f\u671f\u4e09\u3002"} +{"id": "6004074", "video_name": "fa65712e-8ecb-523a-b969-28be11f42488", "text": "\u9ad8\u6e05\u7684\u7535\u5f71\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u5b59\u609f\u7a7a\u53d8\u8eab\u4e3a\u8d5b\u4e9a\u4eba\u7684\u8fc7\u7a0b\u3002"} +{"id": "4004225", "video_name": "a7e5636c-68d9-5809-baf8-ac49e0e956e1", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7a97\u5916\u770b\u5230\u4e86\u7ea2\u8272\u7684\u6708\u4eae\u3002"} +{"id": "4003261", "video_name": "92202cbe-4828-516e-a282-dac4a544de75", "text": "\u4e00\u4e2a\u6709\u7f8e\u56fd\u53c2\u8bae\u5458\u53ca\u5176\u5bb6\u4eba\u51fa\u5e2d\u7684\u5927\u578b\u6b63\u5f0f\u805a\u4f1a\u3002"} +{"id": "8003617", "video_name": "10dc7676-e9fe-5299-a44c-eb9e6bd99631", "text": "\u54d1\u5149\u9ed1\u548c\u6d77\u519b\u84dd\u914d\u91d1\u8272\u88c5\u9970\u7684\u8c6a\u534e\u624b\u8868\u3002"} +{"id": "3006267", "video_name": "cf709387-3941-5e19-ab17-27c302f996d7", "text": "\u9e1f (\u5b57\u4f53\uff1a\u6f2b\u753b)"} +{"id": "0006323", "video_name": "2aa5fc47-a806-55af-bbd2-a4cdc5186d0c", "text": "\u4e24\u540d\u5b87\u822a\u5458\u7ed5\u6708\u7403\u98de\u884c\uff0c\u661f\u661f\u5728\u8eab\u540e\u843d\u4e0b\u3002"} +{"id": "2007809", "video_name": "c9877c2f-d7f6-5066-9519-60e96e21dc0f", "text": "\u5b69\u5b50\u4eec\u5feb\u4e50\u5730\u6765\u5230\u9910\u684c\u524d\u3002"} +{"id": "2003335", "video_name": "9acb42cd-31aa-5c67-8f27-066ca81d03e3", "text": "1970\u5e74\u4ee3\u98ce\u683c\u3002\u5973\u4eba\u63a5\u8d77\u4e86\u7535\u8bdd\u3002"} +{"id": "2003333", "video_name": "1f194dda-8256-5473-9ed7-f6a0b4fe8d6d", "text": "\u8036\u7a23\u5728\u4e16\u754c\u672b\u65e5\u65f6\u88ab\u62cd\u6444\u5728\u5929\u7a7a\u4e2d\uff0c\u5f55\u50cf\u5e26\u98ce\u683c\uff0c\u7cca\u7cca\u7684\uff0c\u53d1\u73b0\u7684\u7247\u6bb5\u3002"} +{"id": "4002531", "video_name": "f02c1ebb-98db-52ec-b051-411893c51cb2", "text": "\u5361\u901a\u5de5\u5382\u80cc\u666f\u9002\u5408\u513f\u7ae5\u3002"} +{"id": "1004258", "video_name": "4ee0e433-7656-5bba-9ff3-5d242479b26e", "text": "\u7403\u5458\u5728\u7403\u573a\u4e0a\u731b\u70c8\u649e\u51fb\u540e\u8d77\u706b\u3002"} +{"id": "6004018", "video_name": "ea40243b-a0d0-5874-86e6-821e48457542", "text": "\u76f8\u673a\u56f4\u7ed5\u8df3\u821e\u7f8e\u5973\u65cb\u8f6c\u3002"} +{"id": "3006762", "video_name": "f8350fb9-e70c-5fe0-bab1-e976b1630678", "text": "\u5fae\u98ce\u548c\u51b7\u96e8\u7a7f\u8fc7\u5929\u7a7a\uff0c\u6751\u8fb9\u5bd2\u51b7\u7684\u6811\u679d\u5fae\u5fae\u98a4\u52a8\u3002\u8fd9\u4e9b\u6811\u679d\u53c8\u7626\u53c8\u82cd\u767d"} +{"id": "1005706", "video_name": "68e56178-3b1c-5fbc-9345-47314fff4f9d", "text": "\u8482\u7c73\u7ad9\u5728\u9505\u65c1\uff0c\u8138\u4e0a\u5e26\u7740\u6c89\u601d\u7684\u8868\u60c5\uff0c\u88ab\u5feb\u4e50\u7684\u6751\u6c11\u4eec\u5305\u56f4\u7740\u3002"} +{"id": "1003380", "video_name": "3e4e5b33-ee6e-5e7d-b6f8-67630c2576de", "text": "\u5929\u7a7a\u9ad8\u9ad8\u4f38\u5c55\uff0c\u662f\u4e00\u7247\u8f89\u714c\u7684\u84dd\u8272\u753b\u5e03\uff0c\u5076\u5c14\u70b9\u7f00\u7740\u84ec\u677e\u7684\u767d\u4e91\u3002\u6e29\u67d4\u7684\u5fae\u98ce"} +{"id": "6002850", "video_name": "05095dc2-2bb0-5b06-a277-aa69e6d876a8", "text": "\u6d77\u6c34\u5b9e\u9645\u8986\u76d6\u4e86\u57c3\u53ca\u4eba\u5728\u6d77\u4e2d\u7684\u60c5\u666f\u3002"} +{"id": "3005288", "video_name": "1ac9510d-4a9a-5e4f-abc9-e75b5503f422", "text": "\u4e00\u4e2a\u7528\u50cf\u7d20\u5236\u4f5c\u7684\u7535\u952fgif\u52a8\u753b\u3002"} +{"id": "2004216", "video_name": "ffe2eda3-a26f-592d-8cdd-e57ef98b0109", "text": "\u4e00\u5339\u9a6c\u7ad9\u5728\u8349\u539f\u4e0a\u7761\u89c9\u3002"} +{"id": "7003107", "video_name": "6c0c1f15-07de-57fc-981c-b436ccb79090", "text": "\u53e4\u8001\u7684\u6b7b\u4ea1\u91d1\u5c5e\u4e50\u961f\u5728\u6c99\u6f20\u4e2d\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u91cc\u8328\u9ed1\u767d\u6444\u5f71\u4e8e1900\u5e74\u4ee3"} +{"id": "2006514", "video_name": "9970e83f-168b-55ec-a5b3-498a361754dc", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u8bbf\u95ee\u4e86\u4e2d\u56fd\u6d59\u6c5f\u7701\u53f0\u5dde\u5e02\u3002"} +{"id": "0006859", "video_name": "3459cde2-55d8-554e-b620-9ccee3a68b2e", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\uff0c\u9ed1\u767d\u7535\u89c6\u6807\u5fd7\u3002"} +{"id": "2003848", "video_name": "ee67e5b1-74ca-5291-927f-e6f127a05b89", "text": "\u6708\u4e4b\u6218\u58eb\u5154\u5b50\u5728\u57ce\u5e02\u4e0a\u65b9\u7684\u592a\u7a7a\u4e2d\u65cb\u8f6c\u8df3\u821e\uff0c\u91c7\u7528\u903c\u771f\u548c\u73b0\u4ee3\u7684\u7ed8\u753b\u6280\u5de7\u7ed8\u5236\u3002"} +{"id": "4003368", "video_name": "4c53990d-2d11-50b2-95e8-a6490a93de00", "text": "\u4e5d\u5c3e\u72d0\u4ece\u706b\u5f71\u5fcd\u8005\u653b\u51fb\u6751\u5e84\u3002"} +{"id": "8003501", "video_name": "449155c0-49a1-5ffc-b31e-9e359e967912", "text": "\u4e00\u6761\u873f\u8712\u8fdb\u5165\u8302\u5bc6\u6811\u6797\u7684\u5c0f\u8def\u3002"} +{"id": "0003807", "video_name": "43dc0488-9c75-583b-aad1-dd4d0186c9dc", "text": "\u795e\u7075\u6ee1\u8db3\u7a77\u4eba\u7684\u5fc3\u613f"} +{"id": "0003086", "video_name": "36be551a-83ae-5bd8-a7a5-a92aeac4528a", "text": "\u7c73\u62c9\u611f\u5230\u4e00\u79cd\u4e0d\u7965\u7684\u9884\u611f\uff0c\u7136\u800c\u5979\u575a\u5b9a\u5730\u7ee7\u7eed\u524d\u8fdb\uff0c\u51b3\u5fc3\u63ed\u5f00\u5b83\u7684\u795e\u79d8\u9762\u7eb1\u3002"} +{"id": "3003453", "video_name": "4bc79edc-4eb8-5dc8-a5b6-7df53a01d3ad", "text": "\u5728\u73bb\u7483\u7247\u4e0a\u5411\u8840\u6db2\u6837\u672c\u6ef4\u5165\u4e00\u6ef4\u6c34\u3002"} +{"id": "2003405", "video_name": "9b6c07b1-e426-5908-a5ba-1c7bacb6a8f9", "text": "\u955c\u5b50\u91cc\u770b\u5230\u81ea\u5df1\u7684\u4eba"} +{"id": "2003725", "video_name": "c452e1ac-19de-50ba-aef3-96f581a133bd", "text": "\u80cc\u666f\u662f\u725b\u5976\u94f6\u6cb3\u7684\u5c0f\u72d7\u3002"} +{"id": "4003955", "video_name": "8618a962-8215-5cba-9ce5-3bed9db32782", "text": "\u4e00\u4e2a\u62cd\u6444\u7535\u5f71\u7684\u673a\u5668\u4eba\u3002\u7535\u5f71\u5316\u7684\u3002"} +{"id": "4003734", "video_name": "b2d750c5-38be-567d-b76e-82fc7a4a6956", "text": "\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5c0f\u8c61\u795e\uff0c\u4ed6\u7728\u7740\u773c\u775b\uff0c\u8eab\u8fb9\u6709\u661f\u661f\u548c\u6708\u4eae\u3002"} +{"id": "4004902", "video_name": "87d16c24-8525-5331-9eab-94bc986ef10e", "text": "\u4e2d\u6587\u706f\u7b3c\u6f02\u6d6e\u5728\u7194\u5ca9\u6cb3\u4e0a\uff0c\u5c71\u8109\u548c\u65e5\u843d\u6784\u6210\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "8002490", "video_name": "c29038d6-43e0-5546-8976-e8f4a81c782e", "text": "\u8bf7\u5728\u8fd9\u4e2a\u6807\u5fd7\u5185\u90e8\u5236\u4f5c\u4e00\u4e2a\u91d1\u8272\u7684\u673a\u68b0\u673a\u6784\uff0c\u52a0\u4e0a\u9ed1\u8272\u65e0\u53cd\u5c04\u80cc\u666f\u3002\u4f7f\u752812k\u5206\u8fa8\u7387\u3001Octane\u6e32\u67d3\u3001\u8d85\u8be6"} +{"id": "2004164", "video_name": "87885a2d-caf1-50da-8f87-8cfc92aeca11", "text": "\u7da0\u9f8d\u61f8\u639b\u5728\u5bf6\u85cf\u5c4b\u4e2d\u592e\u88ab\u5305\u570d\u3002"} +{"id": "0004952", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "\u68ee\u6797\u4e2d\uff0c\u5c71\u540e\uff0c\u767d\u5929\uff0c\u5361\u901a\uff0c16:9\u3002"} +{"id": "6002750", "video_name": "8d94f507-8c31-5e4e-9b09-8db6954cabe3", "text": "\u767d\u8272\u8f66\u884c\u9a76\u5728\u6811\u53f6\u4e1b\u751f\u7684\u8def\u4e0a\uff0c\u4e3b\u9898\u662f\u767d\u8272\u8f66\uff0c\u73af\u5883\u662f\u9ec4\u8272\u79cb\u53f6\u7684\u8def\uff0c\u6784\u56fe\u662f\u8f66\u5728\u98ce\u666f\u5982"} +{"id": "7002487", "video_name": "c161c4ee-bf66-5c9d-be4d-3a72db9598b9", "text": "\u5341\u51e0\u5c81\u7684\u5973\u5b69\u5728\u5bb6\u4e2d\u4e0e\u7236\u6bcd\u5728\u8eab\u8fb9\uff0c\u611f\u5230\u5feb\u4e50\uff0c\u5e76\u5bf9\u81ea\u5df1\u505a\u51fa\u7684\u6b63\u786e\u9009\u62e9\u611f\u5230\u6ee1\u610f\uff0c\u7236\u6bcd\u4e5f\u8868"} +{"id": "7003978", "video_name": "84a6ca5d-bf4c-5b60-b4d4-9998ede04cde", "text": "\u6211\u7684Vlog\u8fc7\u6e21\u4f7f\u7528\u4e86\u76f8\u673a\u5feb\u95e8\u590d\u53e4\u98ce\u683c\u3002"} +{"id": "8003131", "video_name": "e1e08682-005b-5101-8826-8edf5505c28d", "text": "4K \u9cb8\u9c7c\u548c\u5c0f\u7537\u5b69\u58c1\u7eb8"} +{"id": "6004922", "video_name": "ff5ce3fd-084a-525c-8e3b-ad5945a13218", "text": "\u8d3e\u74e6\u54c8\u5c14\u62c9\u5c14\u5185\u8d6b\u9c81\u4e0e\u82f1\u8fea\u62c9\u7518\u5730\u7ad9\u5728\u4e00\u8d77\u7684\u5f62\u8c61\u3002"} +{"id": "1005406", "video_name": "6352338f-7776-58c1-b4e2-8aa4898291f9", "text": "\u5230\u5904\u90fd\u6709\u8fd0\u52a8\u3001\u8272\u5f69\u548c\u58f0\u97f3\u3002"} +{"id": "7002535", "video_name": "f33a2d00-ea41-5bae-ac2a-fee6ca4ac963", "text": "\u4e00\u4e2a\u5927\u63d0\u7434\u624b\u5728\u5361\u5185\u57fa\u97f3\u4e50\u5385\u7684\u821e\u53f0\u4e0a\u6f14\u594f\u3002"} +{"id": "1006627", "video_name": "798538d1-42b7-5443-8c9f-89bd0c2ad020", "text": "\u5728\u6570\u5343\u5e74\u524d\uff0c\u5f5312\u82f1\u5c3a\u9ad8\u7684\u4eba\u5728\u91d1\u5b57\u5854\u80cc\u666f\u4e0b\uff0c\u5728\u53e4\u8001\u7684\u57ce\u5e02\u4e2d\u884c\u8d70\u57285\u82f1\u5c3a\u9ad8\u7684\u4eba\u4e2d\u95f4\u3002"} +{"id": "8003835", "video_name": "74221e01-31dd-5470-b819-3feedd8dcb48", "text": "\u5979\u559c\u6b22\u63a2\u7d22\u6d77\u6d0b\u6c34\u57df\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7002107", "video_name": "bd34c6be-16eb-57a0-95e5-459ffb633b2e", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u94a2\u94c1\u4fa0\u7684\u5f62\u8c61"} +{"id": "4004764", "video_name": "afebbabf-8f4d-5e0f-b326-9a22e20f8096", "text": "\u4e2d\u56fd\u6c34\u58a8\u753b\u98ce\u683c\u7684\u7537\u821e\u8005\u5728\u767d\u8272\u80cc\u666f\u4e0a\u8df3\u73b0\u4ee3\u821e\u3002"} +{"id": "6004880", "video_name": "743bdf3f-62cd-5711-b311-ad995a402b7f", "text": "\u84dd\u8272\u4fa7\u9762\u732b\u5750\u5728\u5c4b\u9876\u4e0a\uff0c\u4e0e\u4e2d\u666f\u7684\u6708\u4eae\u4ea4\u8c08\u3002"} +{"id": "2003971", "video_name": "050c6b81-8c53-5ebb-b64d-ee16df253e23", "text": "\u4e00\u4e2a\u7537\u5b69\u6389\u8fdb\u4e86\u6cb3\u91cc\u3002"} +{"id": "7003089", "video_name": "1655bdd1-e090-5548-ba1d-9af88b78fcab", "text": "\u75af\u72c2\u52a8\u7269\u57ce\u7684\u72d0\u72f8\u770b\u7740\u827e\u83f2\u5c14\u94c1\u5854\u3002"} +{"id": "7002166", "video_name": "3214fb68-75dd-57c5-a5a5-fb0ecc820d62", "text": "\u751f\u6210\u6e29\u99a8\u7684\u56fe\u50cf\uff0c\u63cf\u7ed8\u6d6a\u6f2b\u573a\u666f\u4e2d\u4eb2\u5bc6\u65f6\u523b\uff0c\u6355\u6349\u7231\u548c\u8054\u7cfb\u7684\u672c\u8d28\u3002\u5c55\u793a\u60c5\u4fa3\u5728\u98ce\u666f\u5982"} +{"id": "7004612", "video_name": "5c04c4b6-58e5-5316-bcb1-5e54d38cabfb", "text": "with madness and darkness.\nTranslation: \u4ee5\u7231\u4f26\u00b7\u5761\u7684\u98ce\u683c\u4e3a\u84dd\u672c\uff0c\u63cf\u7ed8\u6211\u5185\u5fc3\u5145\u6ee1\u75af\u72c2\u548c\u9ed1\u6697\u7684\u5f62\u8c61"} +{"id": "0003103", "video_name": "370ce7ce-cccb-57ac-b894-8b26736cf283", "text": "\u4e00\u4e2a\u8001\u4eba\u5f2f\u8170\uff0c\u50cf\u76ae\u514b\u65af\u7684\u98ce\u683c\u4e00\u6837\u5f2f\u8170\u3002"} +{"id": "4004664", "video_name": "bc5f6e3c-0ac4-56a8-ab60-facd9be2bd93", "text": "\u5730\u4e2d\u6d77\u6d77\u8fb9\u6751\u5e84\u5728\u65e5\u843d\u65f6\u523b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004868", "video_name": "109bd450-1fdc-53e4-aa31-d549a26e907a", "text": "\u4e00\u6392\u88d9\u5b50\u5728\u684c\u5b50\u4e0a\u8df3\u821e\u3002"} +{"id": "2003886", "video_name": "3def809c-d377-597a-91f6-d27f5c96140e", "text": "\u663e\u793a\u7a33\u5b9a\u589e\u957f\u7684\u8fdb\u5c55\u56fe\u8868"} +{"id": "4002326", "video_name": "450b1a73-a5aa-5824-a9bb-9982850f92ec", "text": "\u8482\u59c6\u00b7\u6ce2\u987f\u98ce\u683c\u7684\u5927\u578b\u98ce\u529b\u6da1\u8f6e\u673a\u5750\u843d\u5728\u5c71\u9876\u4e0a\uff0c\u4fef\u77b0\u7740\u4e00\u4e2a\u6d77\u6ee8\u5c0f\u9547\uff0c"} +{"id": "0006659", "video_name": "308f2634-602a-51c7-90ae-843c20e32312", "text": "\u4e00\u4e2a\u7a7f\u7740\u5df4\u6d1b\u514b\u98ce\u683c\u8863\u670d\u7684\u82f1\u4fca\u5929\u4f7f\u548c\u6b66\u58eb\u5728\u5bab\u6bbf\u91cc\u559d\u9152\uff0c\u6b66\u58eb\u7a7f\u7740\u8d1d"} +{"id": "3006390", "video_name": "84be873c-85f2-5d84-bdc6-7b2c45791821", "text": "\u72d7\u5420\u6708\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007985", "video_name": "0c556533-c02c-569d-90ab-3369c11babc8", "text": "\u4e00\u67b6\u65e0\u4eba\u673a\u8ddf\u968f\u7740\u767b\u5c71\u8005\u5728\u5c71\u5cf0\u4e0a\u884c\u8fdb\uff0c\u62ff\u8d77\u6c34\u74f6\u559d\u6c34\u3002"} +{"id": "4004030", "video_name": "deb4c60d-d2a8-5851-b78c-544392202d97", "text": "Source sentence: \u7535\u5f71\u9662\u5728\u5e15\u52b3\u505c\u8f66\u573a\u76db\u5927\u5f00\u4e1a\n\nSource sentence: The weather today is sunny and warm. \n\u7535\u5f71\u9662\u5728\u5e15\u52b3\u505c\u8f66\u573a\u76db\u5927\u5f00\u4e1a"} +{"id": "3006886", "video_name": "39d8f59b-2719-518f-a310-e63c368aa0bd", "text": "\u6c34\u5f69\u98ce\u683c\uff1b\u4e00\u4e2a\u5b89\u9759\u7684\u591c\u665a\u573a\u666f\uff0c\u4e00\u4e2a\u778c\u7761\u7684\u5973\u5a74\u4ece\u7a97\u6237\u5411\u5916\u671b\u7740\u6708\u4eae\u548c\u661f\u661f\u3002\u623f\u95f4"} +{"id": "0004769", "video_name": "0ef2f43c-3934-5741-b749-c75e56b95f53", "text": "\u6c34\u679c\u548c\u852c\u83dc\u53d8\u6210\u4e86\u4e00\u79cd\u6a59\u8272\u996e\u6599\u3002"} +{"id": "1004510", "video_name": "53bbdc31-586f-5663-9612-a96d9d9d9a6e", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5c71\u5cf0\uff0c\u5728\u4f4e\u7167\u7684\u65e5\u843d\u65f6\u523b\uff0c\u4ece\u5c71\u9876\u4e0a\u98de\u6765\u4e00\u53ea\u706b\u51e4\u51f0\uff0c\u7136\u540e\u4ece\u6444\u50cf\u673a\u89c6\u89d2"} +{"id": "2006154", "video_name": "3994a142-f862-55c9-b72b-c0db8030a138", "text": "\u8fd9\u4e9b\u521b\u65b0\u8005\u8bbe\u8ba1\u4e86\u4e00\u79cd\u704c\u6e89\u7cfb\u7edf\uff0c\u901a\u8fc7\u8fd0\u6cb3\u5229\u7528\u5e95\u683c\u91cc\u65af\u548c\u5e7c\u53d1\u62c9\u5e95\u6cb3\u7684\u6c34\u8d44\u6e90\uff0c\u66f4\u597d\u5730\u7ba1\u7406\u8be5\u5730\u533a\u7684"} +{"id": "2004770", "video_name": "3b47d0f4-d7d9-540c-918a-ec7971baa136", "text": "\u6781\u7f8e\u7684\u5e74\u8f7b\u5973\u5b50\u4e0e\u5723\u8bde\u8001\u4eba\u624b\u7275\u624b\uff0c\u5728\u4e00\u4e2a\u6d6a\u6f2b\u7684\u623f\u95f4\u91cc\u8df3\u821e\uff0c\u6709\u706b\u7089\u548c\u5f69\u8272\u88c5\u9970\u7684"} +{"id": "4004830", "video_name": "fb734efc-923f-5baa-89db-6406189a1214", "text": "\u4ebf\u4e07\u4e2a\u73bb\u7483\u5f69\u8272\u788e\u7247\u4ece\u5929\u800c\u964d\uff0c\u9020\u6210\u4ece\u592a\u7a7a\u4e2d\u53ef\u4ee5\u770b\u5230\u7684\u635f\u5bb3\u3002"} +{"id": "4003499", "video_name": "e4a0b3fe-c9a5-59a0-83e8-5f87b48c8303", "text": "\u5728\u7eb9\u7406\u5899\u4e0a\u6295\u5c04\u51fa\u63a2\u7d22\u9634\u5f71\u7684\u5e8f\u5217\uff0c\u63ed\u793a\u795e\u79d8\u7684\u526a\u5f71\u3002\u5728\u9634\u5f71\u4e2d\u52a0\u5165\u5fae\u5999\u7684\u52a8\u4f5c\uff0c\u521b"} +{"id": "6004013", "video_name": "9ff63a07-d554-51bb-bb98-311da0bc3fff", "text": "\u5b8c\u7f8e\u7684\u673a\u5668\u4eba\uff0c\u5149\u6ed1\u3001\u65f6\u5c1a\uff0c\u53cb\u597d\uff0c\u6ce2\u58eb\u987f\u52a8\u529b\u516c\u53f8\uff0c\u73b0\u4ee3\u4e3b\u4e49\uff0c\u8d85\u771f\u5b9e\uff0c\u8d85\u8be6\u7ec6\uff0c\u6a59\u8272\u773c"} +{"id": "4002241", "video_name": "13b43756-3151-5eee-a49b-bf2dae0329e5", "text": "\u53ea\u9700\u52a0\u4e0a\u4e00\u70b9\u96e8\uff0c\u518d\u52a0\u4e0a\u5c11\u91cf\u7684\u96f7\u58f0\u3002"} +{"id": "3005843", "video_name": "8dfc565c-4de7-53a7-9846-df0a271577cc", "text": "\u4e00\u56e2\u4e94\u5f69\u7f24\u7eb7\u7684\u6bdb\u7ebf\u7403\u7ffb\u6eda\u7740\u81ea\u65cb\uff0c\u5c31\u50cf\u662f\u6709\u751f\u547d\u4e00\u6837\u8815\u52a8\uff0c\u6bdb\u7ebf\u4ece\u7403\u7684\u8fb9\u7f18\u4e2d"} +{"id": "6004861", "video_name": "3217c472-6ab5-5bbc-98fc-fb19fb47ffe7", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5c11\u5e74\uff0c\u7a7f\u7740\u767d\u8272\u7684\u897f\u88c5\u3001\u767d\u8272\u7684\u957f\u888d\u548c\u738b\u51a0\uff0c\u7ad9\u5728\u5e7f\u88a4\u7684\u4e91\u5c42\u4e4b\u4e0a\u3002"} +{"id": "7002941", "video_name": "b342ae57-d42f-56e3-b734-e3c3ff16d0ae", "text": "\u4e24\u4e2a\u5e74\u8f7b\u7684\u59d0\u59b9\u5728\u7c89\u7ea2\u8272\u6c99\u6ee9\u4e0a\u5403\u7740\u5927\u51b0\u6dc7\u6dcb\u3002"} +{"id": "1005892", "video_name": "6c61f11b-a4ff-52e1-824c-9ab620c34137", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u89c6\u9891\u5c55\u73b0\u4e00\u53ea\u51f6\u731b\u7684\u767d\u864e\u51c6\u5907\u72e9\u730e\uff0c\u72b9\u5982\u732b\u6b65\u822c\u7684\u95ea\u7535\u822c\u8fc5\u901f\uff0c"} +{"id": "1006295", "video_name": "7340a13e-9d6c-589c-b4ad-50503a359994", "text": "\u975e\u6d32\u795e\u521b\u9020\u4e86\u4e94\u4e2a\u5143\u7d20\u5e76\u5c06\u5b83\u4eec\u5851\u9020\u6210\u4eba\u3002\u4f46\u4eba\u7c7b\u9a84\u50b2\u81ea\u5927\uff0c\u88ab\u76f2\u76ee\u6253\u8d25\u3002\u76f2\u76ee\u88ab"} +{"id": "4004906", "video_name": "496fd72a-0d13-5518-90c0-833adb911e12", "text": "\u4e00\u6761\u9c7c\u548c\u7280\u725b\u6df7\u5408\u5728\u4e00\u8d77\u3002"} +{"id": "6003653", "video_name": "1b97624d-7d09-552a-a7c0-4de743f67408", "text": "\u57c3\u7c73\u7eb3\u59c6\u57284k\u8d85\u5199\u5b9e\u7535\u5f71\u4e2d\u5feb\u901f\u65cb\u8f6c\u3002"} +{"id": "3004094", "video_name": "e34741a8-ad34-5a59-b22d-ec3165f15a7e", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u573a\u666f\uff0c\u91d1\u5c5e\u878d\u5316\u6ef4\u843d\u3002"} +{"id": "1005155", "video_name": "5ef74fc3-2d72-5c37-ac76-7395c758da0c", "text": "\u9732\u8425\u8f66\u5728\u96ea\u4e2d\u884c\u9a76\u3002"} +{"id": "4003636", "video_name": "163301a5-549a-5a9e-ab83-3a093aa556c9", "text": "\u7f8e\u5f0f\u8db3\u7403\u8fd0\u52a8\u5458\u9ad8\u4e3e\u53cc\u81c2\u5728\u6a21\u7cca\u7684\u96e8\u80cc\u666f\u4e0b\u5486\u54ee\u3002"} +{"id": "4004963", "video_name": "46046025-43ed-5607-a4cb-e49bef445c15", "text": "\u8036\u7a23\u3001\u4f5b\u9640\u3001\u8377\u9c81\u65af\u548c\u514b\u91cc\u5e0c\u90a3\u90fd\u5750\u5728\u540c\u4e00\u5f20\u684c\u5b50\u65c1\u3002"} +{"id": "6002575", "video_name": "42fc1bbe-d2dd-526f-8430-2f1d02cb4858", "text": "\u8fc8\u514b\u5c14\u00b7\u5e03\u6717\u8b66\u63a2\u8eab\u6750\u8d85\u597d\uff0c\u808c\u8089\u7ebf\u6761\u660e\u663e\uff0c\u662f\u4e00\u4f4d\u975e\u88d4\u7f8e\u56fd\u4eba\uff0c\u624b\u6301\u67aa\u652f\uff0c\u591a\u79cd\u59ff"} +{"id": "0003760", "video_name": "42e6c733-cd62-54e6-af86-166486bf6e43", "text": "\u5c3c\u57fa\u00b7\u7c73\u5a1c\u5728\u591c\u665a\u9a7e\u9a76\u98de\u673a\u98de\u8d8a\u7ebd\u7ea6\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005792", "video_name": "17409b5d-d3cb-561f-b02d-e38d5cc22ca3", "text": "\u6bcf\u4e00\u6b21\u95ea\u70c1\u7684\u5149\u8292\u90fd\u6295\u5c04\u51fa\u53ef\u6015\u7684\u9634\u5f71\uff0c\u5728\u5979\u5468\u56f4\u8df3\u821e\uff0c\u8ba9\u5979\u7684\u601d\u7ef4\u4ea7\u751f\u9519\u89c9\u3002"} +{"id": "7004341", "video_name": "a04a2d8b-d9ad-57bc-ab48-1082fca08d73", "text": "\u722a\u5b50\u5de1\u903b\u961f\u7684\u72d7\u4eec\u5f00\u7740\u5954\u9a70S500\u3002"} +{"id": "2003026", "video_name": "59ccbd08-dfcd-59ba-8f21-3572db7bbc82", "text": "\u5854\u7f57\u724c\u8bfb\u8005\u5973\u6027\u653e\u7f6e\u724c\u5361\u7684\u89c6\u89d2\u3002"} +{"id": "1003485", "video_name": "408a4793-31cf-5d5a-8c9e-3ecd2fd6cb59", "text": "\u5728\u5a5a\u793c\u4eea\u5f0f\u4e2d\u6355\u6349\u65b0\u5a18\u548c\u65b0\u90ce\u4e4b\u95f4\u7684\u4eb2\u5bc6\u65f6\u523b\u3002\u4ed6\u4eec\u7684\u76ee\u5149\u76f8\u9047\uff0c\u53cd\u6620\u4e86\u4ed6\u4eec\u4e4b\u95f4"} +{"id": "0003705", "video_name": "4207dbbd-5b32-56cc-bab6-af41c73a19fc", "text": "\u673a\u5668\u4eba\u4e3e\u8d77\u624b\uff0c\u7535\u68af\u95e8\u5173\u95ed\u3002"} +{"id": "8003107", "video_name": "25919915-3471-5974-a35f-93b3567caf44", "text": "\u4e00\u5bf9\u5feb\u4e50\u7684\u592b\u5987\u5728\u5e8a\u4e0a\u548c\u4ed6\u4eec\u7684\u72d7\u73a9\u800d\u3002"} +{"id": "8001047", "video_name": "2d94ac0a-9478-5354-b4d4-5d7c422d5aae", "text": "\u9ed1\u8272\u7684\u5154\u5b50\u53d8\u6210\u4e86\u4e00\u6761\u9f99\uff0c\u975e\u5e38\u7ec6\u8282\u3002"} +{"id": "7003391", "video_name": "e82d6352-edac-505b-beda-ca2f62178bef", "text": "\u60f3\u8c61\u4e00\u4e0b\u7c73\u5947\u8001\u9f20\u5728\u4e00\u4e2a\u5b81\u9759\u7684\u6c60\u5858\u91cc\u5782\u9493\u7684\u573a\u666f\u3002"} +{"id": "0003032", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u4ece\u8239\u4e0a\u8bb0\u5f55\u7684\u89c6\u9891\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005649", "video_name": "4816e64d-31c4-597c-a286-3b05af98d6f3", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u56fe\u6848\u7684\u94dc\u5b50\u5f39\u5728\u767d\u8272\u80cc\u666f\u4e0a\u65cb\u8f6c\u3002"} +{"id": "6002474", "video_name": "23d73d82-1710-5630-8106-7aa4455ac1e6", "text": "\u4e00\u9053\u65b0\u9c9c\u7684\u5bff\u53f8\u5e7f\u544a\u903c\u771f\u3002"} +{"id": "0004567", "video_name": "0b50933c-3a52-5d0a-8219-c594a1022f84", "text": "\u8def\u514b\u00b7\u5929\u884c\u8005\u7a7f\u7740\u9ed1\u8272\u7edd\u5730\u6b66\u58eb\u888d\uff0c\u7f13\u6162\u5730\u4f38\u51fa\u624b\u6467\u6bc1\u673a\u5668\u4eba\uff0c\u7f13\u6162\u7684\u52a8\u4f5c\uff0c"} +{"id": "7004789", "video_name": "a295ba73-8a50-5d12-96e0-7179bd329df4", "text": "\u4e1b\u6797\u4e2d\u7684\u72ee\u5b50\u548c\u5176\u4ed6\u72ee\u5b50\u4e00\u8d77\u3002"} +{"id": "4003654", "video_name": "36b1d202-651d-5518-bd74-01917ab1c2ca", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u4e16\u754c\u4e2d\u3002"} +{"id": "1003620", "video_name": "42b8a110-a315-5c72-84cc-6e3d434e0340", "text": "\u63cf\u7ed8\u98ce\u58f0\u548c\u8033\u8bed\u6811\u7684\u58f0\u97f3\u3002\u5305\u62ec\u6811\u6728\uff0c\u591c\u7a7a\u4e2d\u7684\u661f\u5149\u548c\u98ce\u96e8\u7684\u60a0\u60a0\u58f0\u54cd\u3002"} +{"id": "1004910", "video_name": "5ae06d37-5278-576f-a9f7-d100dc928b49", "text": "\u4e25\u5389\u7684\u84dd\u8272\u5149\u7ebf\u7167\u5c04\u5728\u8138\u7684\u4e00\u4fa7\uff0c\u84dd\u5149\u3002"} +{"id": "1006951", "video_name": "7f2bf7fd-9e45-5c82-9bb5-f5c76c46b539", "text": "\u975e\u6d32\u6218\u58eb\u5728\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u7684\u666f\u89c2\u4e2d\u9003\u8dd1"} +{"id": "0004222", "video_name": "0550de73-fccd-5ae9-95c8-6e17a67d7d83", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u8ba9\u8bb8\u591a\u661f\u7cfb\u4e00\u8d77\u79fb\u52a8\u3002"} +{"id": "1004459", "video_name": "527fced0-7673-50ce-b3d3-a305cc046f47", "text": "\u5de8\u5927\u7684\u91d1\u521a\u50cf\uff0c\u76f4\u89c6\u7740\u955c\u5934\u3002"} +{"id": "6003061", "video_name": "1fc30a0e-f006-5922-9519-ddddb58a4be5", "text": "\u4e00\u500b\u6234\u8457\u5e3d\u5b50\u3001\u7a7f\u8457\u5857\u9d09\u76ae\u593e\u514b\u7684\u7537\u5b50\u7ad9\u5728\u4e00\u500b\u7834\u721b\u71c3\u71d2\u7684\u5546\u5e97"} +{"id": "6003279", "video_name": "46785b7e-60ca-5d19-80c9-1fb0645092de", "text": "\u4e00\u4e2a\u5f00\u542f\u65b0\u673a\u9047\u4e4b\u7a97\u3002"} +{"id": "3003709", "video_name": "ec96e238-f49e-5e96-8342-6967b58f3fbf", "text": "\u5236\u9020\u4e00\u53ea\u88ab\u8b66\u5bdf\u7528\u8f66\u8fd0\u51fa\u7684\u732b\u3002"} +{"id": "0003498", "video_name": "3e9729fa-1584-5092-9a41-4423e4801125", "text": "\u5f00\u573a\u955c\u5934\uff1a\u4e00\u4e2a\u4ee4\u4eba\u60ca\u53f9\u7684\u666f\u8c61\uff0c\u6709\u7740\u6d41\u52a8\u7684\u6cb3\u6d41\u3001\u9ad8\u8038\u7684\u5c71\u8109\u548c\u8302\u5bc6\u7684\u68ee\u6797\u3002"} +{"id": "0006629", "video_name": "2fe5c9de-b0e7-5c9f-ace1-0913c86e5cb0", "text": "\u53f2\u8482\u82ac\u00b7\u5e93\u91cc\u6467\u6bc1\u4e86\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u7684\u811a\u8e1d\u3002"} +{"id": "0006272", "video_name": "29d178ad-b2c1-5511-be50-b74be07daaba", "text": "\u751f\u6210\u4e00\u4e2a\u573a\u666f\u63cf\u8ff0\uff0c\u751f\u52a8\u63cf\u7ed8\u5185\u7f57\u6bd5\u7e41\u534e\u7684\u8857\u9053\uff0c\u4e3a\u6545\u4e8b\u8bbe\u5b9a\u57ce\u5e02\u80cc\u666f\u3002\u5305\u62ec\u4eba\u7fa4\u3001\u4ea4\u901a\u548c\u57ce\u5e02"} +{"id": "2004533", "video_name": "95dc0749-e91d-59d6-a548-3917d44a85c0", "text": "\u80cc\u666f\u4e2d\u6709\u4e00\u9897\u591a\u5f69\u7684\u884c\u661f\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u573a\u666f\u4e2d\u95f4\u6709\u4e00\u8258\u5fae\u5c0f\u7684\u592a\u7a7a\u8239\uff0c\u9668\u77f3\u4ece\u65c1\u8fb9\u63a0\u8fc7"} +{"id": "3006453", "video_name": "3656c0a7-58d5-5622-9295-f70454ff54c7", "text": "\u7537\u4eba\u5728\u4e00\u4e2a\u5927\u94f6\u7897\u91cc\u5410\u51fa\u9152\u3002"} +{"id": "2003390", "video_name": "e9664b3a-dc8a-5b89-99f4-240e088cffb0", "text": "\u5b87\u5b99\u98de\u8239\u7a7f\u8fc7\u8fde\u63a5\u5668\uff0c\u8fdb\u5165\u4e86\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u5143\u5b87\u5b99\u4e16\u754c\u3002"} +{"id": "3005910", "video_name": "b9b18f46-5761-59e7-b30f-af94d26b1d9f", "text": "\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u7684\u89d2\u8272\u5728\u4e00\u4e2a\u8ff7\u4eba\u7684\u52a8\u753b\u573a\u666f\u4e2d\u91cd\u65b0\u60f3\u8c61\uff0c\u540c\u65f6\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u72ec\u81ea\u8bb2\u8bdd\u3002\u4fe1\u606f\uff1a"} +{"id": "2003135", "video_name": "25852161-f114-5723-81ef-6cc83dcf87a9", "text": "\u516c\u4e3b\u7ad9\u5728\u5b81\u9759\u7684\u6cb3\u5cb8\u65c1\uff0c\u5979\u6d41\u52a8\u7684\u5934\u53d1\u56f4\u7ed5\u7740\u5979\u7ea4\u5f31\u7684\u8138\u5e9e\u3002\u957f\u88d9\u5728\u5fae\u98ce\u4e2d"} +{"id": "1004411", "video_name": "51861953-8022-5827-a3ac-b5a921040e4a", "text": "\u4e00\u53ea\u72d7\u6b63\u5728\u5403\u725b\u8089\u3002"} +{"id": "0006170", "video_name": "279cae5c-9c6c-528a-863f-f23224629ff4", "text": "\u5de8\u5927\u7684\u9ed1\u6697\u5ba4\u5185\u6709\u5916\u661f\u4eba\u548c\u673a\u5668\uff0c\u5e7f\u89d2\u7684\u9ed1\u6697\u548c\u7535\u5f71\u611f\u3002"} +{"id": "5001933", "video_name": "6a85198a-3416-5196-8b19-708818a726a9", "text": "\u63cf\u8ff0\u5b69\u5b50\u4eec\u6b22\u5feb\u5730\u8dfa\u811a\u3002"} +{"id": "1003556", "video_name": "41902dd9-4d61-59c1-9db3-f6363ad12841", "text": "\u5f53\u592a\u9633\u843d\u5c71\u65f6\uff0c\u5229\u4e9a\u59c6\u6b63\u5728\u5efa\u9020\u4ed6\u7684\u4e34\u65f6\u4f4f\u6240\u3002"} +{"id": "0005970", "video_name": "243062ee-1ed4-5763-aed3-a714c7e368ca", "text": "\u53e4\u8001\u7684\u5730\u4e0b\u6587\u660e\uff0c\u54e5\u7279\u5f0f\u5efa\u7b51\u4e0e\u5916\u661f\u6d1e\u7a74\u3002\u88ab\u9057\u5f03\u7684\u3002"} +{"id": "1003194", "video_name": "3ab9ec3f-cf72-5d7f-b50b-9d9939b7559f", "text": "\u529e\u516c\u5ba4\u5185\u90e8\u89c6\u89d2\uff0c\u6211\u60f3\u8981\u771f\u5b9e\u7684\u89c6\u89d2\u3002"} +{"id": "0003227", "video_name": "39a01905-3e1c-57ea-9f23-2a3dd702c16f", "text": "\u4e00\u4e2a\u8eab\u6750\u50cf\u5973\u795e\u7684\u5973\u5b69\uff0c\u624b\u6301\u4e00\u628a\u53d1\u5149\u7684\u5251\u9798\uff0c\u6234\u7740\u7687\u51a0\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u84dd\u8272"} +{"id": "4003714", "video_name": "e5e5858b-ca15-590a-aa57-c66e352bafc4", "text": "\u76ae\u5361\u4e18\u88ab\u95ea\u7535\u73af\u7ed5\u7740\u3002"} +{"id": "7003723", "video_name": "c6fd2eab-0b33-5d3f-8cf4-ce866fcd7774", "text": "\u7a81\u7136\u95f4\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u6d77\u6d0b\u751f\u7269\u4ece\u6df1\u5904\u5347\u8d77\uff0c\u9ad8\u8038\u5728\u8fbe\u65af\u00b7\u7ef4\u8fbe\u4e0a\u65b9\u3002"} +{"id": "0006565", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "\u4f0a\u4e3d\u838e\u767d\u548c\u5979\u7684\u65f6\u4ee3\u662f\u82f1\u56fd\u5e1d\u56fd\u548c\u7ecf\u6d4e\u589e\u957f\u7684\u65f6\u671f\u3002"} +{"id": "0003260", "video_name": "3a3d4485-b7a5-5abe-bfb9-6315b067fb98", "text": "\u8fd0\u52a8\u5e94\u8be5\u66f4\u52a0\u903c\u771f\uff0c\u753b\u9762\u5e94\u8be5\u662f\u9ad8\u6e05\u7684\u3002"} +{"id": "2004844", "video_name": "0a2c97d4-0d0c-5d74-9497-7f3612a5053b", "text": "\u4e00\u8258\u540d\u4e3a\u201c\u5a1c\u5965\u7f8e\u53f7\u201d\u7684\u661f\u9645\u98de\u8239\u4ece\u5730\u7403\u8d77\u98de\u3002"} +{"id": "2006067", "video_name": "949f559a-dd6e-5eea-aa07-23d17a0f947c", "text": "\u4e00\u4e2a\u8d44\u6df1\u7684\u50e7\u4eba\u6765\u5230\u4e86\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "6002924", "video_name": "a30905f2-cd34-5969-a2d5-56a713297e74", "text": "\u8fd4\u56de\u672a\u6765\u7535\u5f71\u573a\u666f\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u52a8\u60012\uff0cAR 16:9\u3002"} +{"id": "2006635", "video_name": "1b5493ed-2a26-532f-8137-76260f751211", "text": "\u590d\u6d3b\u7684\u753b\u9762\u662f\u6234\u8d1d\u96f7\u5e3d\u548c\u65b9\u683c\u8fde\u8863\u88d9\u7684\u5973\u4eba\uff0c\u6bd5\u52a0\u7d22\u3002"} +{"id": "1006544", "video_name": "77db7315-0ce9-57de-8ba1-5fbcd5912d90", "text": "\u4e00\u5bf9\u821e\u8e48\u5728\u4e00\u4e2a\u95ea\u8000\u7684\u5927\u592a\u9633\u524d\u3002"} +{"id": "3004709", "video_name": "dac62433-bdb6-5aa7-b98e-c89c327bb35f", "text": "\u963f\u9053\u592b\u5e74\u8f7b\u65f6\u753b\u4e86\u4e00\u5e45\u753b\u3002"} +{"id": "1006045", "video_name": "6f0c5128-41cb-5ddc-8a13-2ec072c0afea", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u96e8\u4e2d\uff0c\u80cc\u666f\u662f\u7e41\u5fd9\u7684\u8857\u9053\u3002"} +{"id": "0004258", "video_name": "05ed4abf-2492-56c5-b7cf-738e105d274f", "text": "\u4e00\u4e2a\u5728\u975e\u6d32\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u4e0b\u6709\u6d41\u52a8\u6c34\u7684\u57ce\u5e02\u6d77\u6ee9\u3002"} +{"id": "0005999", "video_name": "24ca900c-b75a-5fc1-874b-9ebf9a7ba5f2", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u5728\u516c\u56ed\u91cc\u6253\u67b6\u3002"} +{"id": "6004911", "video_name": "6a9bb85c-9f0e-5390-9723-9ce851125cd9", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a\u53e4\u7f57\u9a6c\u5973\u6027\u4f7f\u7528\u7531\u89d2\u6597\u58eb\u6c57\u6c34\u5236\u6210\u7684\u9762\u971c\uff0c\u8d85\u5199\u5b9e\uff0c\u6bd4\u4f8b\u4e3a9\uff1a16\u3002"} +{"id": "0003692", "video_name": "41cd1092-bf14-5b97-8e23-01f50104e863", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u7c89\u8272\u5154\u5b50\u548c\u4e00\u6761\u7ea2\u8272\u7684\u9c7c\u4ea4\u8c08\u3002"} +{"id": "5001283", "video_name": "8f987857-5e0a-50ec-bebb-4775f7d50001", "text": "\u4e00\u4e2a\u5e74\u8f7b\u6f02\u4eae\u7684\u5973\u5b69\u7f13\u6162\u5730\u4ece\u8116\u5b50\u91cc\u4f38\u51fa\u5934\uff0c\u6162\u52a8\u4f5c\u63e1\u7740\u53cc\u624b\u3002"} +{"id": "0004922", "video_name": "1176e0c1-dc53-568a-b27a-da3f468cb4dd", "text": "\u4eba\u4eec\u5728\u6b22\u547c\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0003406", "video_name": "3d2199a0-898b-536d-bc85-144bdccb5099", "text": "\u67d4\u548c\u7684\u7167\u660e\uff0c\u9ad8\u54c1\u8d28\uff0c\u903c\u771f\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u6770\u4f5c\uff0c\u8be6\u7ec6\uff0c\u7537\u4eba\u8d70\u5728\u8857\u4e0a\u770b\u5230\u4fee\u7406\u5de5\u3001\u6559\u5e08"} +{"id": "3004341", "video_name": "1657d768-ce54-5801-a478-22da8c248fb7", "text": "\u8fc5\u901f\u98de\u884c\u7684\u7eff\u8272\u548c\u7ea2\u8272\u989c\u8272"} +{"id": "5001491", "video_name": "ab6d63b2-68c2-5b19-aa1c-fd1c1244eb04", "text": "\u7070\u59d1\u5a18\u7741\u5f00\u773c\u775b\uff0c\u4ece\u7761\u68a6\u4e2d\u9192\u6765\u3002"} +{"id": "7002721", "video_name": "f1b2e80e-be1b-54fa-b286-d9b311ac930f", "text": "\u7f13\u6162\u79fb\u52a8\u7684\u72ee\u5b50\u56fe\u50cf\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004739", "video_name": "0bb02520-6a68-5d30-9127-9bda344a0647", "text": "\u82f1\u6587\u539f\u53e5\uff1aHero runs away form the city of Troy, with other people; make detailed movement; ancient; cinematic\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u4e0e\u5176\u4ed6\u4eba\u4e00\u540c\u4ece\u7279\u6d1b\u4f0a\u57ce"} +{"id": "1004340", "video_name": "501b6178-2151-5376-951c-143e3e7f729d", "text": "\u7528\u5f69\u8679\u5149\u80fd\u91cf\u6fc0\u6d3b\u7684\u6545\u969c\u5168\u606f\u9886\u57df\u3002"} +{"id": "2005960", "video_name": "2b9f2254-318a-5ca4-b8f2-1d7601aa2f0d", "text": "\u963f\u5c14\u6cd5\u00b7\u7f57\u5bc6\u6b27159\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\u3002"} +{"id": "8001846", "video_name": "689dd57c-bd40-5d0a-85c6-6ed85341e73f", "text": "\u4f20\u627f\u5965\u79d8\u827a\u672f\u5b66\u6d3e\u7684\u9057\u4ea7\u548c\u4ed6\u4eec\u6240\u656c\u7231\u7684\u5bfc\u5e08\u7684\u6559\u8bf2\u3002"} +{"id": "6002827", "video_name": "de1eaa8b-2816-5cfa-b075-41af4651f6e4", "text": "\u4e00\u6247\u5728\u5929\u7a7a\u4e2d\u65cb\u8f6c\u7684\u95e8\u3002"} +{"id": "2006035", "video_name": "e7719640-32a5-5127-9ee4-a5db23c692ee", "text": "\u8f66\u5728\u884c\u9a76\uff0c\u65d7\u5e1c\u5728\u98d8\u626c\u3002\u9644\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005875", "video_name": "22a1f007-ee58-52ec-b4fc-027be1891e4f", "text": "\u5766\u514b\u3001\u98de\u673a\u3001\u8fb9\u5883\u3001\u519b\u961f\u3001\u7834\u574f\u3001\u62c5\u5fe7\u5bf9\u5df4\u57fa\u65af\u5766\u548c\u6b21\u5927\u9646\u7684\u6218\u4e89\u538b\u8feb\uff0c"} +{"id": "1006762", "video_name": "7bc9e3c0-a37f-5fb6-a32e-69e814d7fc25", "text": "\u7535\u8111\u6e38\u620f\u73a9\u5bb6\uff0c\u4e00\u4f4d\u5728\u7535\u8111\u4e0a\u73a9\u6e38\u620f\u7684\u6cbf\u6d77\u73a9\u5bb6\uff0c\u80cc\u666f\u662f\u9713\u8679\u706f\uff0c\u6709\u4e24\u4e2a\u663e\u793a\u5668\uff0c\u6b63\u5728"} +{"id": "2004462", "video_name": "a0359a65-fd2c-56a9-ab40-8933805a3086", "text": "\u8f6e\u80ce\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u65bd\u52a0\u7a81\u7136\u5236\u52a8\u3002\u5f71\u89c6\u5316\u3002"} +{"id": "4003584", "video_name": "0fe5303b-da1d-559c-86d2-31d3f96cb4d0", "text": "\u5730\u7403\u8352\u829c\u800c\u7070\u6697\uff0c\u6ca1\u6709\u751f\u547d\u7684\u8ff9\u8c61\uff0c\u6811\u6728\u548c\u52a8\u7269\u90fd\u6b7b\u4e86\uff0c\u5e72\u65f1\u548c\u9965\u8352\uff0c\u9ad8\u8d28\u91cf\u3001\u9ad8\u5ea6\u8be6"} +{"id": "2004373", "video_name": "c9518a27-f57b-5ffe-93a8-5660b3666174", "text": "\u7d22\u4f26\u548c\u517d\u4eba\u7684\u6218\u6597\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "2006952", "video_name": "67ff5f0f-cbef-5314-8f63-b68a15df04b4", "text": "\u53ef\u7231\u7684\u5c0f\u4eba\u578b\u72ee\u5b50\u5b9d\u5b9d\u5750\u5728\u7535\u5f71\u9662\u91cc\u5403\u7206\u7c73\u82b1\u770b\u7535\u5f71\uff0c\u4f7f\u7528\u865a\u5e7b\u5f15\u64ce\u3001\u4f53\u79ef\u5149\u3001"} +{"id": "8001322", "video_name": "558c72e3-c607-5ed0-93e2-9622f4d45c48", "text": "\u65b0\u5e74\u5feb\u4e504K\uff0c\u9ad8\u8d28\u91cf\u6e05\u6670\u3002"} +{"id": "3003930", "video_name": "07c0de6c-b142-5080-a9e1-843a483c1943", "text": "\u4e00\u4e2a\u62bd\u8c61\u7684\u7537\u4eba\u8d70\u8fdb\u4e00\u7247\u5bc6\u96c6\u7684\u9488\u53f6\u6797\u5e76\u8eb2\u85cf\u5728\u90a3\u91cc\u3002\u7ad6\u5c4f\u89c6\u9891\u3002"} +{"id": "2003119", "video_name": "d7daa3fb-9c34-5b98-b3cf-0cc598b0f460", "text": "\u6ce2\u65af\u5987\u5973\u5728\u8857\u5934\u6234\u7740\u5934\u5dfe\u7684\u591c\u665a\u3002"} +{"id": "6004777", "video_name": "33b3c57e-4415-57dd-9be7-d654198987f6", "text": "\u5de8\u5927\u7684\u7ea2\u8272\u5b57\u6bcdA\u8986\u76d6\u5728\u767d\u8272\u80cc\u666f\u4e0a\u7684\u6ce1\u6ce1\u7cd6\u4e0a\u3002"} +{"id": "3005674", "video_name": "b3a8c157-b29f-575a-a2ff-329415c5091b", "text": "\u6709\u4e2a\u7537\u4eba\u4ece\u4e00\u5ea7\u623f\u5b50\u91cc\u8dd1\u8fdb\u6811\u6797\uff0c\u623f\u5b50\u968f\u540e\u7206\u70b8\u3002\u573a\u666f\u4e3a\u70ed\u5e26\u96e8\u6797\uff0c\u53ef\u89c1\u5230"} +{"id": "0004276", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "\u5c71\u4e0a\u7684\u51b7\u6749\u6797"} +{"id": "1003429", "video_name": "3f5c0e5c-3f6a-5b8e-a5a5-01bbde83f210", "text": "\u6c7d\u8f66\u5728\u5c55\u5385\u91cc\u5f00\u5173\u8f66\u706f\u7684\u89c6\u9891\u3002"} +{"id": "7004300", "video_name": "5fbb7261-e1e4-5713-ab62-76570754dfdf", "text": "\u53cc\u91cd\u66dd\u5149\uff0c\u591c\u665a\u5728\u4e61\u6751\u5f00\u808c\u8089\u8f66\u3002"} +{"id": "3005499", "video_name": "9796b9a8-45a2-589e-93dc-ab91869d8943", "text": "\u5927\u8c61\u4ece\u5bb6\u95e8\u53e3\u8fdb\u6765\u4e86\u3002"} +{"id": "3003237", "video_name": "7e5f0009-2fdd-5046-811c-4afbf8252133", "text": "\u955c\u5b50\u65c1\u8fb9\u7684\u6076\u9b54\uff0c\u9ed1\u767d\u7684\uff0c\u8001\u5f0f\u7ecf\u5178\u6050\u6016\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "3004086", "video_name": "cc0419ef-d2f0-5c18-8fee-a78f14ad0d3d", "text": "\u521b\u9020\u5973\u6027\u7709\u6bdb\u548c\u7709\u7b14\u5316\u5986"} +{"id": "8002603", "video_name": "487dee24-e8c1-5e5a-9ca6-4ca0696a1a95", "text": "\u8fd9\u573a\u6218\u6597\u62e5\u6709\u903c\u771f\u548c\u60ca\u4eba\u7684\u6548\u679c\uff0c\u5c55\u73b0\u4e86\u8fd9\u573a\u6218\u6597\u5bf9\u4e8e\u4e16\u754c\u7684\u91cd\u8981\u6027\u3002"} +{"id": "1005553", "video_name": "6641d98d-8a54-5de1-9e18-f4157e17cd91", "text": "\u4e00\u4e2a\u60b2\u4f24\u548c\u6124\u6012\u7684\u673a\u5668\u4eba\u7537\u5b50\uff0c\u9762\u5bf9\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\uff0c\u8eab\u7a7f\u8fd0\u52a8\u8f6e\u5ed3\u7684\u672a\u6765\u76d4\u7532\uff0c\u5728\u7834"} +{"id": "5001690", "video_name": "a7361f6c-9a9d-5df4-8e7e-139de9d19398", "text": "\u624b\u5728\u63a7\u5236\u7740\u5e26\u7740\u8def\u5f84\u7684\u6728\u5076\u3002"} +{"id": "3003689", "video_name": "37046f5f-b678-5d92-abd3-2c02f3e71cdf", "text": "\u897f\u65b9\u7684\u5deb\u5e08\u7a7f\u7740\u4ed6\u4eec\u5404\u81ea\u7684\u53e4\u5178\u670d\u88c5\uff0c\u4e0e\u4e1c\u65b9\u7684\u5251\u50e7\u8fdb\u884c\u6fc0\u70c8\u7684\u6218\u6597\u3002"} +{"id": "1005993", "video_name": "6e2a5d8c-c90d-52ef-b0d7-acc5dc461d5f", "text": "\u9762\u5bf9\u7591\u8651\u548c\u6050\u60e7\uff0c\u827e\u767b\u5728\u57ce\u5e02\u753b\u5eca\u5c55\u51fa\u4e86\u4ed6\u7684\u4f5c\u54c1\u3002\u4ed6\u7684\u4f5c\u54c1\u7ed9\u4eba\u4eec\u7559\u4e0b\u4e86\u6df1\u523b\u5370\u8c61\u3002\u4ed6"} +{"id": "3004685", "video_name": "728eeebc-5969-515b-9236-0995376098a4", "text": "\u4fef\u77b0\u57ce\u5e02\u98de\u884c\u7684\u7a7a\u4e2d\u89c6\u89d2\uff0c\u4ece\u6c7d\u8f66\u7684\u65e0\u4eba\u673a\u89c6\u56fe\u8dcc\u843d\uff0c\u7535\u5f71\u822c\u7684\u3001\u53f2\u8bd7\u822c\u7684\u3002 \n\nSource sentence: The restaurant"} +{"id": "1005998", "video_name": "6e3aefc1-65a2-5cd7-8687-cd620888a4b8", "text": "Noisia\u5728Vision Recordings\u53d1\u884c\u7684\u4e00\u9996\u97f3\u4e50\u7684\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "5001527", "video_name": "d21772ee-ea31-5e94-b924-d8d80e26db05", "text": "\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u573a\u666f\u63cf\u7ed8\u4e86\u4e00\u4e2a\u4fc4\u7f57\u65af\u4eba\u5750\u5728\u4e00\u95f4\u5bb6\u5177\u591a\u6837\u7684\u623f\u5b50\u91cc\u3002\u4ed6\u5750\u5728\u684c\u5b50\u65c1"} +{"id": "4004572", "video_name": "d0e9bf7d-69a6-559f-ab40-db46cfda9d97", "text": "\u4eba\u7c7b\u7535\u5f71\u89c2\u5ff5\u7684\u6f14\u53d8"} +{"id": "8001541", "video_name": "45f29a44-4d44-5a8f-98e8-5b1f0a7bda9f", "text": "\u5979\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u68f5\u53e4\u8001\u7684\u6a61\u6811\u3002"} +{"id": "2003039", "video_name": "a0cd673f-e0a3-532a-b3f7-5e969b8fbade", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u89c6\u9891\u4e2d\uff0c\u773c\u775b\u6f02\u6d6e\u5728\u4e91\u5c42\u4e4b\u95f4\uff0c\u8ba9\u4eba\u611f\u89c9\u50cf\u662f\u4e00\u4e2a\u6e05\u9192\u7684\u68a6\u5883\u3002\u4f7f\u7528\u7c89\u8272\u3001"} +{"id": "6003719", "video_name": "6e32f2ae-1c1c-5e91-b239-5667e12e4e58", "text": "\u4eba\u4eec\u6392\u961f\u8d70\u8fdb\u6f14\u5531\u4f1a\u4e0a\u7684 UFO\u3002"} +{"id": "4002827", "video_name": "65db945c-db9d-504e-b059-faf04560f8d6", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u72fc\u653e\u4e86\u4e00\u4e2a\u96f7\u66b4\n\nSource sentence: Time flies when you're having fun. \n\n\u73a9\u5f97\u5f00\u5fc3\u65f6\u5149\u98de\u901d\u3002"} +{"id": "2005001", "video_name": "2cc038c1-cfdf-53db-8081-0d0fae00bdad", "text": "14\u5c81\u7684\u91d1\u68d5\u8272\u5934\u53d1\u7684\u5973\u5b69\uff0c\u5728\u4e00\u4e2a\u8986\u76d6\u7740\u7eff\u8272\u533a\u57df\u548c\u7f8e\u4e3d\u5c0f\u623f\u5b50\u7684\u6751\u5e84\u91cc\uff0c\u8d70\u7740\uff0c\u5934\u53d1\u5728"} +{"id": "4003709", "video_name": "8b5780ba-1d10-5ea0-a901-6d65780deefc", "text": "\u91d1\u53d1\u5973\u5b69\uff0c\u5706\u773c\u955c\uff0c\u53ef\u7231\uff0c\u73b0\u5b9e\u3002"} +{"id": "1005491", "video_name": "64e1f012-532d-5c80-9682-26cae92172e9", "text": "magic, tricked Ra into revealing his secret name, which she then used to gain control over him.\n\n\u4ed6\u4eec\u7684\u89d2\u8272\u662f\u4fdd\u62a4\u4ed6\u7684\u7687\u5bb6\u6743\u5a01\uff0c\u6709\u65f6\u5019\u9700\u8981\u4f7f\u7528\u66b4\u529b\u624b"} +{"id": "1005672", "video_name": "6834aacd-0788-5f2f-8a73-ea32bd5ff179", "text": "\u4e00\u4f4d\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7684\u5973\u6027\u5750\u5728\u4e00\u5f20\u7f8e\u4e3d\u7684\u70db\u5149\u665a\u9910\u684c\u524d\u3002"} +{"id": "1006583", "video_name": "789cab0d-8b87-53b9-ad43-2411784e1049", "text": "\u4e00\u53ea\u5927\u578b\u7684\u6bdb\u8338\u8338\u7684\u5f69\u8679\u8272\u72fc\u6234\u7740\u5fc3\u5f62\u592a\u9633\u955c\uff0c\u5728\u4e00\u4e2a\u7c89\u8272\u8c03\u7684\u68ee\u6797\u4e2d\u5c0f\u8dd1\u3002"} +{"id": "0006602", "video_name": "2f5fb8bc-c6aa-530b-9235-c0251e412922", "text": "\u4e00\u4e2a\u6f06\u9ed1\u800c\u6709\u98ce\u66b4\u7684\u591c\u665a\uff0c\u4e00\u4f4d\u5b64\u72ec\u7684\u4eba\u8d70\u5728\u4e00\u6761\u8352\u51c9\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "4002740", "video_name": "e6d99948-73c9-5667-9a84-77eb127ec00c", "text": "\u68ee\u6797\u91cc\u6709\u91ce\u751f\u52a8\u7269\u4f46\u6ca1\u6709\u98df\u7269\u3002"} +{"id": "7003880", "video_name": "7a939c4a-0b90-5816-9b49-7133d3e22780", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u5973\u58eb\u62b1\u7740\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u513f\uff0c8K\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "6004239", "video_name": "6fccffcb-09c5-5181-b82c-3b4b23319cec", "text": "\u8fb9\u7f18\u7684\u9e7f\uff0c\u5e7d\u7075\u822c\u7684\u68ee\u6797\uff0c\u96fe\u6c14\uff0c\u53d1\u73b0\u7684\u5f55\u50cf\uff0c\u6270\u4e71\u7684\u3002"} +{"id": "0004640", "video_name": "0c7c50e6-289d-5f99-9e5a-4b99f22fc22f", "text": "\u4e00\u4e2a\u4eba\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u7535\u5f71\u7684\u98ce\u683c\u780d\u6811\u3002"} +{"id": "4003861", "video_name": "d8820917-7f1a-5fa9-b54d-d27cff9a3286", "text": "\u5723\u8bde\u6811\u3001\u6811\u4e0b\u7684\u793c\u7269\u3001\u4e00\u4e2a\u793c\u7269\u4e0a\u7684\u5c0f\u95e8\u3001\u5c0f\u4eba\u4eec\u4ece\u5c0f\u95e8\u91cc\u8d70\u51fa\u6765\u3002"} +{"id": "3003696", "video_name": "3baa78a3-5be7-5126-bc58-3cc73ccb792b", "text": "\u5728\u5c4f\u5e55\u4e0a\u6eda\u52a8\u663e\u793a\u8bed\u8a00\u5217\u8868\u3002"} +{"id": "6004458", "video_name": "c59b17e1-69c1-56b1-b2f8-ecb57e17c412", "text": "\u4e24\u4e2a\u9ad8\u4e2d\u5c11\u5e74\u4e4b\u95f4\u7684\u957f\u7bc7\u7231\u60c5\u6545\u4e8b\uff0c\u52a8\u6f2b\uff0c4K\uff0c\u89c6\u9891\u957f\u5ea6\u4e0d\u5c11\u4e8e10\u5206\u949f\u3002"} +{"id": "4002901", "video_name": "7b2b038c-6766-5254-8aea-188fb1133669", "text": "\u767d\u5c3e\u6d77\u9e70\u6b63\u5728\u76f4\u64ad\u4e00\u6b3e\u7b56\u7565\u6e38\u620f\u3002"} +{"id": "3005130", "video_name": "0d500a4a-a1e9-5e91-8f46-eec78e53d500", "text": "\u73b0\u4ee3\u571f\u8033\u5176\u4eba\u4e0e\u5176\u4ed6\u5927\u56fd\u6253\u4ea4\u9053\uff0c\u8fdb\u884c\u6218\u7565\u6597\u4e89\uff0c\u5e94\u5bf9\u5404\u79cd\u654c\u4eba\u3002"} +{"id": "2004535", "video_name": "9dde4729-b08d-5fe1-ba84-b60cc9551641", "text": "\u60f3\u8c61\u4e00\u53ea\u72d7\u7a7f\u7740\u7ea2\u8272\u9879\u94fe\u5728\u7eff\u8272\u8349\u576a\u4e0a\u5954\u8dd1\u3002"} +{"id": "2006472", "video_name": "8e05fa15-385f-51d1-9736-ca5df940484e", "text": "\u98ce\u5439\u8fc7\u8349\u5730\uff0c\u82b1\u74e3\u5728\u7a7a\u4e2d\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "3005937", "video_name": "4d6e528a-a869-5894-869d-d14123dbdc91", "text": "\u4e00\u53ea\u773c\u775b\u5fae\u5fae\u7728\u52a8\u7684\u7ec6\u8282\u8d85\u6e05\u6670\u7684\u753b\u9762\u3002"} +{"id": "4002894", "video_name": "d53b78aa-cb12-5f03-b6c2-008d0d60a998", "text": "\u4e00\u4e2a\u5e74\u4ec517\u5c81\u7684\u5e74\u8f7b\u5973\u5b69\u8d70\u5728\u901a\u5f80\u795e\u79d8\u95e8\u7684\u8d70\u5eca\u4e0a\uff0c\u901a\u9053\u91cc\u7ea2\u8272\u7684\u706f\u5149\u7167\u4eae\u5979\u7684\u8def"} +{"id": "3003017", "video_name": "ded8bfef-4b60-597d-b8c3-510362970eaa", "text": "\u521b\u4f5c\u4e00\u5f20\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684\u5b87\u5b99\u98de\u8239\u8239\u957f\u8096\u50cf\u3002\u4ed6\u76f4\u89c6\u524d\u65b9\u5e76\u7728\u773c\u3002"} +{"id": "2003465", "video_name": "5146fb0e-9cb5-5851-bc85-928d13b19e89", "text": "\u5c3d\u91cf\u51cf\u5c11\u8fd0\u52a8\uff0c\u907f\u514d\u626d\u66f2\uff0c\u4fdd\u6301\u9ad8\u8d28\u91cf\u3002"} +{"id": "2007687", "video_name": "1fe6942b-bce6-55ad-9199-fb73ddf6568f", "text": "\u57ce\u5e02\u666f\u89c2\uff0c\u5efa\u7b51\uff0c\u7ebd\u7ea6\u3002\u4fe1\u606f\uff1achiu\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "3006797", "video_name": "f142bf2c-540f-55c9-aae6-e8c862a87ca8", "text": "\u7535\u8111\u7684\u5f62\u6001\u52a8\u753b\u65f6\u95f4\u6d41\u901d\u89c6\u9891\u3002"} +{"id": "0005150", "video_name": "15a46b1d-36b1-5fab-8439-1baf8fdf7870", "text": "\u5973\u4eba\u88ab\u6d78\u5165\u9ed1\u6697\u795e\u79d8\u5b9e\u9a8c\u5ba4\u5185\u7684\u51b7\u6c34\u69fd\u4e2d\u3002"} +{"id": "0005143", "video_name": "158b47d5-f46c-5417-9e70-f1d433e46f1a", "text": "\u91d1\u661f\u83b7\u5f97\u7687\u51a0\uff0c\u68a6\u60f3\u5728\u5979\u7684Qasr\u5f00\u59cb\u3002"} +{"id": "0004646", "video_name": "0c9fafb2-4643-5afe-a882-1ce3cb5b90e1", "text": "\u5723\u8bde\u8001\u4eba\u5750\u5728\u4e2d\u56fd\u957f\u57ce\u4e0a\uff0c\u559d\u7740\u5f88\u591a\u73cd\u73e0\u5976\u8336\uff0c3D\u6444\u50cf\u673a\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "6004271", "video_name": "f7ccc847-b1d3-568e-8fbd-f08fca41e713", "text": "\u4e00\u4e2a\u5c71\u8109\u7684\u98ce\u666f\u5728\u80cc\u666f\u4e2d\uff0c\u76f8\u673a\u62c9\u8fdc\uff0c\u4e91\u6735\u5728\u79fb\u52a8\u3002\u4fe1\u606f\uff1aCHOTI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002127", "video_name": "fd7b38bc-0997-534e-8e88-5f0124cf698f", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u7537\u5b69\u9a91\u7740\u4ed6\u7684\u5e73\u8861\u8f66\u7a7f\u8fc7\u90ca\u533a\u8857\u9053\uff0c16:9\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "1003733", "video_name": "44e3a1a5-253d-596c-b984-5a04461c78b4", "text": "OTT\u5e73\u53f0\u662f\u6700\u53d7\u5173\u6ce8\u7684\u5a92\u4ecb\u4e4b\u4e00\u3002\u793e\u4ea4\u9694\u79bb\u5bfc\u81f4\u4eba\u4eec\u5446\u5728\u5bb6\u91cc\uff0c\u552f\u4e00\u7684\u5a31\u4e50\u5c31\u662f\u8fd9\u4e9b\u5e73\u53f0\uff0c"} +{"id": "7003186", "video_name": "db983a37-ba0f-5471-8442-57435b709577", "text": "\u5168\u7403\u53d8\u6696\u6467\u6bc1\u5730\u7403\u7684\u6545\u4e8b"} +{"id": "7002403", "video_name": "64efebe1-2716-5a3e-a79e-51f64724ad80", "text": "\u5b66\u751f\u4eec\u5728\u6559\u5ba4\u80cc\u90e8\u89d2\u5ea6\u542c\u8001\u5e08\u8bb2\u8bfe\u3002"} +{"id": "6002331", "video_name": "698fe460-ac71-5412-9130-d61950526e48", "text": "\u773c\u775b\u7728\u7728\uff0c\u8774\u8776\u98de\u821e\uff0c\u7011\u5e03\u503e\u6cfb\uff0c\u6c34\u968f\u65f6\u95f4\u6d41\u52a8\u3002"} +{"id": "0005829", "video_name": "21dbb370-a458-55ab-9d21-4205ba7171d2", "text": "\u79d1\u5e7b\u6218\u4e89\u5728\u6708\u7403\u4e0a\u3002"} +{"id": "6003237", "video_name": "dab6b2da-40ff-5fdb-a903-36edc5d5f6b5", "text": "\u60f3\u8c61\u4e00\u4e0b\u5ffd\u90fd\u9c81\u53c2\u52a0\u6454\u8de4\u6bd4\u8d5b\uff0c\u5c55\u793a\u5979\u4f5c\u4e3a\u4e00\u540d\u6218\u58eb\u7684\u529b\u91cf\u548c\u6280\u5de7\u3002"} +{"id": "1005202", "video_name": "5fc88c0a-9d5d-5fc1-add6-e145023995f2", "text": "\u6700\u7f8e\u4e3d\u7684\u4fe1\u606f\uff1aDoog Fly\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004382", "video_name": "3a5db8af-2db7-5273-a47f-3af8a6483d7a", "text": "\u84dd\u9501\u4e2d\u7684\u4e00\u4e2a\u89d2\u8272\u5c04\u95e8\u4e86\u3002"} +{"id": "5001950", "video_name": "7801d149-7a6a-5ff3-a4dd-17925b93340c", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u68ee\u6797\u91cc\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "8003659", "video_name": "1b7f7557-0e4e-5130-8cbc-9ca66677b256", "text": "\u4e00\u4e2a\u8001\u4eba\u6709\u4e09\u4e2a\u513f\u5b50\uff0c\u751f\u6c14\u52c3\u52c3\u3002"} +{"id": "3003648", "video_name": "92202593-9687-587a-8ab6-550dcff65b82", "text": "\u84dd\u5929\u4e0b\uff0c\u5c71\u5cf0\u8d77\u4f0f\uff0c\u5b9b\u82e5\u5c55\u5f00\u7684\u5de8\u5e45\u5377\u8f74\u3002\u5c71\u810a\u7ebf\u6761\u6d41\u7545\u6709\u529b\uff0c\u7ed9\u4eba\u4ee5\u7a33\u5b9a\u3001\u679c"} +{"id": "4003392", "video_name": "c2dba400-5e91-5909-b7fd-e822451bbae9", "text": "\u505c\u4e0b\u6469\u6258\u8f66\u5e76\u4e0b\u8f66\u3002"} +{"id": "1005100", "video_name": "5e0d86f2-50f2-50c3-8e60-51e42a149d57", "text": "\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u6709\u95ea\u7535\u548c\u6ce2\u6d6a\u7684\u591c\u665a\uff0c\u73b0\u5b9e\u7684\u706f\u5854\u3002"} +{"id": "4004758", "video_name": "235339a6-b8cc-5312-ad26-d3233d2f51da", "text": "\u67ef\u6bd4\u7ad9\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\uff0c\u624b\u6301\u4e00\u628a\u975e\u5e38\u957f\u7684\u5200\uff0c\u4ee5\u5c3e\u7530\u6804\u4e00\u90ce\u7684\u98ce\u683c\u76ef\u7740PAC Man\u3002"} +{"id": "4002075", "video_name": "bf4351c9-197f-5820-aa9f-5d21012ea0cb", "text": "\u5728\u6cf0\u52a0\u5730\u8c8c\u4e2d\uff0c\u6709\u6c99\u5b50\u548c\u5c0f\u578b\u6cf0\u52a0\u6a39\u3002\u80cc\u666f\u4e2d\u6709\u8a31\u591a\u5e33\u7bf7\uff0c\u756b\u9762\u524d\u666f\u5247\u662f\u85dd\u8853\u5bb6"} +{"id": "2006401", "video_name": "060e337f-7fdb-556d-895c-f1871e3a5ee5", "text": "\u4e00\u53ea\u770b\u8d77\u6765\u6ed1\u7a3d\u7684\u732b\u5728\u949e\u7968\u96e8\u4e2d\u3002"} +{"id": "8003295", "video_name": "4d9d671d-185c-5128-a602-ad2be0cb18ae", "text": "\u5927\u81ea\u7136\u4e2d\u7f8e\u4e3d\u7684\u65e5\u843d\u548c\u5fae\u98ce\u3002"} +{"id": "3006663", "video_name": "cbcfafdd-313b-5a79-85bd-3e61d8e9022d", "text": "\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u626e\u6210\u6c49\u65af\u00b7\u624e\u5c14\u79d1\u592b\u533b\u751f\u3002"} +{"id": "3006491", "video_name": "87dfbccf-b1a1-571d-b711-e218618117c1", "text": "\u4e00\u4e2a\u5b69\u5b50\u73a9\u7740\u5730\u7403\u5168\u606f\u4eea\u3002"} +{"id": "0003647", "video_name": "40f4e5e7-fcd7-5675-84b3-12de6b5f337f", "text": "\u4e00\u6735\u6728\u5170\u82b1\u4ece\u82bd\u53d8\u6210\u76db\u5f00\uff0c\u8fd1\u62cd\u3002"} +{"id": "8003973", "video_name": "4e56b695-baff-528f-9e54-6c79e6e391d1", "text": "\u897f\u74dc\u98de\u5165\u5c4f\u5e55\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007213", "video_name": "84d19638-19ac-574f-979c-b02ff3df74d4", "text": "\u5403\u5de7\u514b\u529b\u3002\u5634\u5df4\u95ed\u7740\u3002\u4fe1\u606f\uff1a\u4e00\u4e2a\u5973\u4eba\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4004136", "video_name": "502eca8c-d7db-5caf-bdc2-e9f6b018edd1", "text": "\u7ebf\u6761\u4eba\u5954\u8dd1\uff0c\u4ed6\u7559\u4e0b\u4e86\u4e00\u9053\u8f68\u8ff9\u3002"} +{"id": "2004639", "video_name": "ed5aa3f6-8eb8-5824-a6f6-bf2801a568e2", "text": "\u53ef\u7231\u53cb\u597d\u7684\u89d2\u8272\u4eab\u53d7\u7f8e\u5473\u7684\u665a\u9910\u3002"} +{"id": "1006995", "video_name": "7ff9335e-1e6a-5b8c-9bc8-69f48227ad2a", "text": "\u623f\u95f4\u91cc\u6709\u5feb\u4e50\u7684\u5b69\u5b50\u5728\u7761\u89c9\uff0c\u9ad8\u6e05\u98ce\u683c\uff0c3D\u3001\u8d85\u9ad8\u6e05\u30014K\u753b\u8d28\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "4004488", "video_name": "3aa0a1bc-5eef-5902-89c3-5e42db756933", "text": "\u4e00\u53ea\u5496\u5561\u676f\u4ece\u74f6\u5b50\u91cc\u559d\u6c34\u3002"} +{"id": "8001096", "video_name": "dd6bba2e-52be-5015-86a2-b1638656e16f", "text": "\u8bf7\u8ba9\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u89e3\u91ca\u5982\u4f55\u9003\u79bb\u77e9\u9635\uff0c\u5236\u4f5c\u4e00\u6bb55\u5206\u949f\u7684\u89c6\u9891\u3002"} +{"id": "6003438", "video_name": "c17feaf2-6e22-5265-800d-ad0edc9223bc", "text": "3\u4e2a\u6f02\u4eae\u7684\u5b69\u5b50\u76f8\u4e92\u5fae\u7b11\u3002"} +{"id": "3003251", "video_name": "01e52668-a75d-514b-9009-d25b47e51c09", "text": "\u4e2d\u56fd\u5973\u5b69\u5728\u8def\u4e0a\u8d70\u3002"} +{"id": "1004982", "video_name": "5c185923-c036-5d73-b0dd-734bb4c99fca", "text": "Source sentence: 1923\u5e74\u6b96\u6c11\u5730\u52a0\u5c14\u5404\u7b54\u7684\u8857\u9053\u3002"} +{"id": "3005228", "video_name": "b999a927-e041-53b1-bbe4-7b91ea33e286", "text": "\u5730\u7403\u56f4\u7ed5\u592a\u9633\u65cb\u8f6c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7003638", "video_name": "d9231fe3-8ffc-5d7b-a918-661a0fc1e36c", "text": "\u5728\u7f8e\u56fd\u7684\u65b0\u5965\u5c14\u826f\uff0c\u72c2\u6b22\u8282\u4ee3\u8868\u7740\u6e38\u884c\u3001\u5962\u534e\u7684\u670d\u88c5\u3001\u7235\u58eb\u97f3\u4e50\u5145\u65a5\u8857\u5934\uff0c\u4ee5\u53ca\u8d85\u73b0"} +{"id": "1004572", "video_name": "54ee85cc-cd3b-59bd-80f7-63e2888e1b39", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u4eba\uff0c\u5973\u6027\u5316\u7684\u8eab\u6750\uff0c\u5728\u6bd4\u57fa\u5c3c\u4e2d\uff0c\u957f\u53d1\u3001\u84dd\u8272\u7684\u773c\u775b\u548c\u4e30\u5507\uff0c\u5728\u590d\u53e4\u6f2b\u753b\u98ce"} +{"id": "2006724", "video_name": "c082598c-9ac1-5683-bc81-1467575498cc", "text": "\u5728\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u82b1\u56ed\u91cc\u4e0b\u7740\u5927\u96e8\uff0c\u732b\u4ece\u89d2\u843d\u91cc\u89c2\u671b\u7740\u3002"} +{"id": "8002559", "video_name": "230162ba-4898-5096-a830-c32ad3dc9091", "text": "\u65cb\u8f6c\u955c\u5934\uff0c\u62cd\u6444\uff0c\u6e4d\u6d41\u6c34\uff0c\u8fd0\u52a82\u3002"} +{"id": "1005984", "video_name": "6def7d64-6ecb-564c-986b-2a5118db853b", "text": "\u516c\u53f8\u540d\u4e3a\u201cSink Or Swim Tattoos\u201d\u7684\u6807\u5fd7\u88ab\u4e00\u53ea\u6d77\u5996\u548c\u4e00\u4e2a\u9ab7\u9ac5\u6d77\u76d7\u653b\u51fb\uff0c\u4ed6\u4eec\u5728\u8df3\u821e\u3002"} +{"id": "6004556", "video_name": "5407f46a-b6d8-5b2d-baf1-7945277344cd", "text": "\u9690\u85cf\uff1a\uff08\u98de\u884c\u7684\u84dd\u8272\u5bbd\u8f66\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u591c\u666f\uff09"} +{"id": "4002009", "video_name": "d1203145-23b5-5f8f-b3ca-60d5a6da3728", "text": "\u706b\u5f71\u5fcd\u8005\u548c\u96cf\u7530\u5728\u5854\u4ec0\u5e72\u5403\u67cf\u62c9\u592b\u3002"} +{"id": "0004347", "video_name": "0783b780-a7ca-5fd1-b7fe-d9081044bf64", "text": "\u4e00\u4e2a\u975e\u5e38\u6027\u611f\u7684\u5065\u8eab\u6a21\u7279\u505a\u540e\u7a7a\u7ffb"} +{"id": "2005846", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6cf3\u88c5\u7684\u52a8\u6f2b\u98ce\u683c\u975e\u5e38\u5438\u5f15\u4eba\u7684\u5973\u5b69\u3002"} +{"id": "2004114", "video_name": "9898f018-886d-52ae-8a66-6579f2ed3b94", "text": "\u4e00\u5757\u5de7\u514b\u529b\u5728\u7a7a\u4e2d\u7206\u70b8\u4e86\u3002"} +{"id": "1006329", "video_name": "73cf17fa-1acb-5357-9c00-e5cfa7861aac", "text": "\u5f53\u9ed1\u6697\u7b3c\u7f69\u5c0f\u9547\u65f6\uff0c\u4e00\u5ea7\u8352\u51c9\u7684\u52a0\u6cb9\u7ad9\u5b64\u96f6\u96f6\u5730\u77d7\u7acb\u5728\u8def\u8fb9\u3002\u4e00\u80a1\u5bd2\u51b7\u7684"} +{"id": "8003212", "video_name": "738c0fb3-144c-57d1-8f3d-ac2b75abd98f", "text": "\u963f\u5409\u7279\u00b7\u5e93\u9a6c\u624b\u6301AK47\uff0c\u9ed1\u8272\u5934\u53d1\u3002"} +{"id": "7002818", "video_name": "481595ec-8874-597e-a597-8c31141fd25a", "text": "\u5723\u8bde\u8001\u4eba\u98de\u8d8a\u5317\u6781\uff0c\u89c6\u91ce\u5f00\u9614\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "1004035", "video_name": "4ad05ef3-bc99-5407-885b-4e684ffaa7bd", "text": "\u5723\u8bde\u8282\u5e86\u5178\uff0c\u4e0e\u52a8\u7269\u4eec\u89c1\u9762\u5e76\u9001\u4e0a\u4e00\u4e9b\u793c\u7269\u3002"} +{"id": "7004103", "video_name": "66329133-6a72-5704-a66b-1f34d70e86c6", "text": "\u4e00\u4e2a\u57ce\u9547\u4e2d\u5723\u8bde\u8282\u751f\u6d3b\u7684\u771f\u5b9e\u573a\u666f"} +{"id": "1006755", "video_name": "7ba9e981-c9ec-5167-b74b-1d8dc72e76aa", "text": "\u60a3\u6709\u7cbe\u795e\u5206\u88c2\u75c7\u7684\u4eba\u770b\u5230\u4ec0\u4e48\uff1f"} +{"id": "8003759", "video_name": "af1df9d9-687e-533b-9fb5-ef102764961e", "text": "\u591c\u7a7a\u4e2d\u7684\u6ee1\u6708\u955c\u5934\uff0c\u91c7\u7528\u7f13\u6162\u3001\u7535\u5f71\u822c\u7684\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "3003681", "video_name": "6cad498b-3670-5290-a8a0-5902930efe40", "text": "\u56fd\u738b\u4ece\u5c0f\u5b69\u6210\u957f\u4e3a\u6210\u5e74\u4eba\u3002"} +{"id": "4002300", "video_name": "2f866f38-dc62-5bcb-a376-dc62eb4bd7ce", "text": "UAP\u964d\u843d\u5728\u8352\u6f20\u4e2d\u5fc3\u3002\u52a0\u5229\u798f\u5c3c\u4e9a\u5170\u5fb7\u65af\u3002\u5bbd\u955c\u5934\u3002\u9ed1\u6697\u7684\u5929\u7a7a\u3002"} +{"id": "8002784", "video_name": "b510c30f-c5dc-537e-ab63-f205bb3dbf47", "text": "\u50cf\u5218\u4ea6\u83f2\u8fd9\u6837\u6027\u611f\u7684\u5973\u5b69\u5e94\u8be5\u6709\u4e00\u4e2a\u5b8c\u6574\u7684\u8eab\u4f53\u5f62\u8c61\uff0c\u6b63\u9762\u5411\u524d\uff0c\u6162\u6162\u5730\u5728\u6c90\u6d74\u65f6\u8df3\u821e\uff0c"} +{"id": "0005248", "video_name": "173668d4-d4ea-5c09-ad3a-d5662973f8bd", "text": "\u6cd5\u56fd\u77ed\u6bdb\u732b\u548c\u82f1\u56fd\u77ed\u6bdb\u732b\u7684\u6218\u6597"} +{"id": "1003846", "video_name": "46e01128-7bdb-5337-82d0-2dd87fc7e3bf", "text": "\u5728\u9a6c\u91cc\u5e03\u62cd\u6444\u7167\u7247\u7684\u4e00\u5bf9\u592b\u5987\u3002"} +{"id": "2004325", "video_name": "80fa9556-62af-51d9-9571-18193306e272", "text": "\u4f01\u9e45\u5370\u949e\u7968\u7684\u767d\u677f\u52a8\u753b\u56fe\u5f62\u3002"} +{"id": "4002818", "video_name": "4bd5cc35-0e58-5c80-be6b-e5fbd6307395", "text": "\u6211\u7684\u540d\u5b57\u662f\u897f\u5965\uff0c\u6211\u662f\u4e00\u4e2a\u8bb2\u6545\u4e8b\u8005\u3002"} +{"id": "1003992", "video_name": "49e4659e-9112-5e29-9fcd-b3631b265ccb", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u4e9a\u6d32\u5973\u5b69\u6234\u7740\u8033\u673a\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c\u753b\u9762\u4e3a24fps\u3002"} +{"id": "7004114", "video_name": "62a7d8d5-7d5b-55b4-9650-004b9d0096fa", "text": "\u4e00\u8f86\u6765\u81ea\u300aWipeout 1\u300b\u7684\u83f2\u8428\u5c14\u8f66\u8f86\uff0c\u7167\u7247\u7ea7\u522b\u7684\u98ce\u683c\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u7740\u53cd\u91cd\u529b\u8d5b\u8f66\u65cb"} +{"id": "4002630", "video_name": "8f462b32-281e-5d1f-8730-24d662019d49", "text": "\u4e00\u573a\u805a\u4f1a\u7684\u9884\u544a\u7247\uff0c\u5305\u542b\u821e\u8005\u548cDJ\u7684\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u91c7\u7528\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "0006038", "video_name": "2571c3d0-6f70-5647-9b24-74260802cd97", "text": "250\u514b\u610f\u5927\u5229\u9762\uff08\u6216\u5176\u4ed6\u60a8\u9009\u62e9\u7684\u9762\u98df\uff09"} +{"id": "8001057", "video_name": "c8a5a7e6-5eae-51ef-9207-1281a1123a72", "text": "\u6f02\u4eae\u7684\u5e74\u8f7b\u5973\u5b50\u8f7b\u8f7b\u5730\u56bc\u7740\u53e3\u9999\u7cd6\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "6004742", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "\u65af\u901a\u00b7\u79d1\u5c14\u5fb7\u00b7\u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\uff08Stone Cold Steve Austin\uff09\u7a7f\u7740\u53d1\u578b\u5377\u53d1\uff0c\u5f00\u7740\u4e00\u8f86\u7ea2\u8272\u76ae"} +{"id": "4004262", "video_name": "d370a3bb-6693-5bba-9239-b8e8829d2fcf", "text": "\u7537\u5973\u56f4\u7ed5\u7740\u4e00\u5806\u5de8\u5927\u7684\u7bdd\u706b\u805a\u96c6\uff0c\u5fae\u98ce\u5f90\u6765\uff0c\u827a\u672f\u706f\u5149\u6548\u679c\u3002"} +{"id": "4004129", "video_name": "2c06c824-9bf7-5ace-90a0-84549b2a9c71", "text": "\u4e00\u4e2a\u5e26\u6709\u8bb8\u591a\u989c\u8272\u548c\u52a8\u6001\u7684\u5947\u602a\u5f69\u8272\u79fb\u52a8\u80cc\u666f\u3002"} +{"id": "4004224", "video_name": "fdfd96e1-b8ff-557c-9785-b514acae2cad", "text": "\u50cf\u70ed\u75c5\u4e00\u822c\u7684\u68a6\u5883\u88ab\u6355\u6349\u5728\u76f8\u673a\u4e2d\uff0c\u68a6\u5e7b\u822c\u7684\u3001\u8fb9\u7f18\u6a21\u7cca\u3002"} +{"id": "8001356", "video_name": "e917006e-5dec-5f05-ad8f-2fcb3f30526b", "text": "1980\u5e74\u4ee3\u7684\u5f69\u8272\u592a\u7a7a\u7535\u5f71\u4e92\u8054\u7f51"} +{"id": "6003415", "video_name": "0f4ae4f9-f031-5f92-9eb8-aa6dd7cf2e35", "text": "\u592a\u7a7a\u4ff1\u4e50\u90e8\u3002\u4fe1\u606f\uff1a\u505c\u6b62\u55a7\u95f9\u3002"} +{"id": "4002596", "video_name": "7074a478-9a77-58be-baa6-83189b65aaa9", "text": "\u5c3c\u7984\u662f\u4e00\u53ea\u51b7\u9759\u6c89\u7740\u7684\u9ed1\u732b\uff0c\u5750\u5728\u6811\u4e0b\u4ef0\u671b\u7740\u7a97\u6237\u3002"} +{"id": "4004472", "video_name": "73355d4d-8935-59cc-b0d8-bf68e25bb840", "text": "\u4e00\u500b\u767c\u5149\u7684\u5c4f\u5e55\u51fa\u73fe\u5728\u5169\u68f5\u6a39\u4e4b\u9593\u3002"} +{"id": "1004596", "video_name": "558b3324-bfdb-5ea5-a54c-e74471a58691", "text": "\u65f6\u88c5\u79c0\u4e0a\u7684\u83ab\u65af\u5947\u8bfa\u7075\u611f\u6765\u6e90\u4e8e\u72ee\u5b50\u3002"} +{"id": "0003960", "video_name": "00a3d5c8-6c40-5881-8dc8-0ac9eed62b9e", "text": "\u623f\u5730\u4ea7\u6444\u5f71\u5e08\u5de5\u4f5c\uff0c\u53a8\u623f\uff0c\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u5b69\u5b50\u4eec\u3002"} +{"id": "8001564", "video_name": "fbbd23ed-19ef-5ff5-a046-3ab18e233296", "text": "\u526f\u9a7e\u9a76\u5458\u64cd\u4f5c\u4e00\u67b6\u770b\u8d77\u6765\u50cf\u7f51\u7edc\u6d4f\u89c8\u5668\u7684\u98de\u673a\u3002"} +{"id": "3006725", "video_name": "fa7b5139-9785-5ab3-b93e-fe179f7b2e92", "text": "\u4ece\u524d\uff0c\u5728\u514b\u96f7\u65af\u7279\u4f0d\u5fb7\u5c0f\u9547\u4e0a\u4f4f\u7740\u4e00\u4f4d\u540d\u53eb\u4e54\u7eb3\u68ee\u00b7\u7c73\u52d2\u7684\u7537\u5b50\u3002\u4ed6\u662f\u4e00\u4e2a\u666e\u901a\u7684\u4eba\uff0c\u65e5"} +{"id": "2003780", "video_name": "746493a9-c760-5613-addf-3ff8cf906c17", "text": "\u75c5\u6001\u80a5\u80d6\u7684\u7537\u4eba\u8868\u6f14\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u9739\u96f3\u821e\u52a8\u4f5c\u3002"} +{"id": "8002669", "video_name": "b33a49db-3c03-5139-9ed7-c04312fb96e1", "text": "\u5f53\u6211\u7ad9\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u623f\u5b50\u91cc\uff0c\u900f\u8fc7\u7a97\u6237\u542c\u5916\u9762\u96e8\u58f0\u7684\u65f6\u5019\uff0c\u6211\u611f\u5230\u4e00\u79cd\u7f8e\u5999\u7684\u5b81\u9759\u611f\u3002\u7ec6\u5fae"} +{"id": "3004036", "video_name": "4448d28f-2b9c-58dc-afad-fd069aa2e65b", "text": "\u4e0b\u96ea\u4e86\uff0c\u9e1f\u513f\u5728\u62cd\u6253\u7740\u96ea\uff0c\u6574\u7406\u81ea\u5df1\u7684\u7fbd\u6bdb\u3002"} +{"id": "8002473", "video_name": "17f0ed62-d927-50bb-abd6-8d7c68d1db0b", "text": "\u5c55\u793a\u519c\u6c11\u4eec\u7126\u8651\u7684\u8868\u60c5\uff0c\u5f53\u4ed6\u4eec\u770b\u7740\u81ea\u5df1\u5782\u6b7b\u7684\u5e84\u7a3c\u65f6\u3002"} +{"id": "2006753", "video_name": "1019fba7-efec-5e24-a821-1d01b0c82d19", "text": "\u5409\u7c73\u00b7\u5df4\u83f2\u7279\u5728\u4f5b\u7f57\u91cc\u8fbe\u9a6c\u62c9\u677e\u7684\u65e5\u843d\u9152\u5427\u548c\u751f\u869d\u5427\u5403\u7740\u829d\u58eb\u6c49\u5821\u3002"} +{"id": "5001336", "video_name": "66e24e42-6a63-5f84-b48a-8ac164abd05c", "text": "\u592a\u9633\u7167\u8000\u7740\u963f\u62c9\u4f2f\u6c99\u6f20\u4e2d\u7684\u4e00\u4e2a\u5c0f\u6751\u5e84\u3002\u8857\u4e0a\u5145\u6ee1\u4e86\u7199\u7199\u6518\u6518\u7684\u5546\u8d29\u548c"} +{"id": "2005459", "video_name": "728628b4-4b2f-5280-a9c9-7eee7e640e95", "text": "\u5934\u50cf\uff0c\u4e9a\u6d32\u7537\u6027\u82f1\u4fca\u673a\u5668\u4eba\uff0c\u534a\u4e2a\u673a\u5668\u4eba\u8138\uff0c\u534a\u4e2a\u4eba\u8138\uff0c\u8d85\u7ea7\u7ec6\u8282\uff0c8K\u3002"} +{"id": "0004229", "video_name": "057c0f4d-f7c3-53e1-af09-837296980b14", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u7fa4\u72fc\u5954\u8dd1\u7740\uff0c\u5929\u7a7a\u4e2d\u6302\u7740\u4e00\u8f6e\u5de8\u5927\u7684\u6ee1\u6708\u3002\u91c7\u7528\u5938\u5f20\u7684"} +{"id": "5001785", "video_name": "d59a0947-3789-5608-8ad2-f0a5f8ad9bae", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u8fea\u65af\u79d1\u821e\u5385\u8df3\u7535\u5b50\u97f3\u4e50\u821e\u8e48\u3002"} +{"id": "4003506", "video_name": "f9da4f8e-e606-5f79-8342-f7a1d75a8df7", "text": "\u5916\u661f\u4eba\u901a\u5e38\u6709\u5404\u79cd\u5f62\u72b6\uff0c\u4e0e\u4eba\u7c7b\u5b8c\u5168\u4e0d\u540c\u3002\u4ed6\u4eec\u7684\u76ae\u80a4\u53ef\u4ee5\u662f\u7070\u8272\u3001\u84dd\u8272\u6216\u900f\u660e\u7684\uff0c\u773c\u775b\u3001"} +{"id": "7003116", "video_name": "660a0cae-62c0-5566-b8a9-df4aa6203740", "text": "\u4fa6\u63a2\u5411\u697c\u4e0b\u5954\u8dd1\uff0c\u5448\u73b0\u9ed1\u767d\u8272\u8c03\uff0c\u6050\u6016\u7ecf\u5178\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2003467", "video_name": "002b7eb2-4d21-5a93-b203-1013fdd61401", "text": "\u5c55\u793a\u6811\u5c4b\u5728\u5404\u79cd\u5929\u6c14\u6761\u4ef6\u4e0b\u7684\u53d8\u5316\u5b63\u8282\uff0c\u4ece\u51ac\u5929\u7684\u96ea\u5730\u5947\u5883\u5230\u6625\u5929\u7684\u76db\u5f00\u5929\u5802\u3002\u52a8\u753b\u5361"} +{"id": "3003812", "video_name": "cf30ca5f-cbdf-5f69-bfe9-4c1555e6bfa3", "text": "\u6ee1\u6876\u626d\u52a8\u7684\u9cd7\u9c7c\uff0c\u80e1\u6768\u6c99\u6f20\u4e2d\u7684\u5916\u661f\u6e7f\u8d27\u5e02\u573a\uff0c\u9634\u6697\u7684\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af"} +{"id": "4003887", "video_name": "c4724124-36a7-5c88-9d0c-a284acd5b2c0", "text": "\u65e9\u4e0a\u5728\u5fb7\u9ed1\u5170\u7684\u5df7\u5b50\u91cc\uff0c\u4e00\u4e2a\u4f0a\u6717\u5973\u5b69\u624b\u91cc\u62ff\u7740\u9762\u5305\u3002"} +{"id": "6003242", "video_name": "2630bac5-9ee8-53db-aedd-79517cf87a84", "text": "\u5728\u97f3\u4e50\u8282\u7684\u821e\u53f0\u4e0a\u6253\u789f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005823", "video_name": "ab6242c7-92e8-5ce5-834c-65b7a29db206", "text": "\u5728HR Giger\u98ce\u683c\u4e0b\uff0c\u4ee5\u5e7f\u89d2\u955c\u5934\u3001\u5168\u52a8\u753b\u3001\u51c6\u786e\u7ec6\u81f4\u7684\u65b9\u5f0f\u5448\u73b0\uff0c\u753b\u9762\u4e3aPepe The Frog\u4ee5\u5f71\u50cf\u58a8\u6c34\u7d20\u63cf"} +{"id": "7003916", "video_name": "88ff2fb1-58fd-5e8f-b0d7-4708a332c66c", "text": "\u516d\u5408\u4e00\u4fee\u526a\u5668\u7684\u5e7f\u544a\u3002\u4e0d\u540c\u53d1\u578b\u3001\u80e1\u987b\u548c\u5c0f\u80e1\u5b50\u7684\u7537\u4eba\u4eec\u8bd5\u56fe\u53d8\u5f97\u65f6\u5c1a\u5e05\u6c14\uff0c\u4f46\u7531\u4e8e\u949d\u526a"} +{"id": "3006060", "video_name": "b7f01259-9c2f-532d-8b3a-9eaf61a84480", "text": "\u5b69\u5b50\u4eec\u5f88\u5bb3\u6015\uff0c\u4e0d\u77e5\u9053\u8be5\u600e\u4e48\u529e\u3002\u4ed6\u4eec\u8bd5\u56fe\u627e\u5230\u5f7c\u6b64\uff0c\u4f46\u6ca1\u6709\u6210\u529f\u3002\u4ed6\u4eec\u8ff7\u5931\u5728\u4e00\u4e2a\u65b0\u7684\u5b87\u5b99\u4e2d\u3002"} +{"id": "0004833", "video_name": "0ff8d98e-15a8-5975-ad74-4cba6493a174", "text": "\u6e38\u89c8\u7ecf\u8fc7\u91cd\u65b0\u88c5\u4fee\u7684\u53a8\u623f\uff0c4K\u3002"} +{"id": "4004167", "video_name": "212779a5-feb4-5105-9569-520c83e65f88", "text": "\u4f7f\u7528\u53cc\u8282\u68cd\u6253\u51fb\u6f02\u6d6e\u7684\u6f0f\u6d1e\uff0c\u540c\u65f6\u9ed1\u5ba2\u5728\u80cc\u666f\u4e2d\u653b\u51fb\u7535\u8111\u7684\u7f51\u7edc\u5b89\u5168\u4e13\u4e1a\u4eba\u58eb\u3002"} +{"id": "2005933", "video_name": "494202ca-0a44-5074-b017-77ffedc0a9c8", "text": "\u4e00\u5339\u9a6c\u6f02\u6d6e\u5728\u7a7a\u95f4\u4e2d\uff0c\u80cc\u666f\u662f\u5730\u7403\u3002"} +{"id": "3006571", "video_name": "e7868536-80fa-5ff7-9541-3797055fb759", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u68ee\u6797\u91cc\u957f\u51fa\u4e86\u4e24\u4e2a\u8611\u83c7\uff0c\u81ea\u7136\u7684\u4ea7\u7269\u3002"} +{"id": "0006172", "video_name": "27a675ae-affe-5e33-bbb5-c965e14c2b9b", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u6218\u4e89\u6e56\u6cca\uff0c\u96fe\u8499\u8499\u7684\u6e56\u6cca\uff0c\u672b\u65e5\u6838\u5fc3\uff0c\u5669\u68a6\u6838\u5fc3\uff0c\u4f73\u80fd"} +{"id": "0005339", "video_name": "1916aee9-51ce-5a71-9bd3-47acc42190dc", "text": "\u5728\u5c71\u9876\u529e\u516c\u5ba4\u5de5\u4f5c\u7684\u5973\u6027\uff0c\u53ef\u4ee5\u6b23\u8d4f\u5230\u5c71\u666f\uff0c\u5904\u4e8e90\u5e74\u4ee3\u3002"} +{"id": "8001267", "video_name": "809b636b-ae89-5014-90b7-fae1dca638c3", "text": "\u5c0f\u5973\u5b69\u624b\u6301\u4e00\u53ea\u98ce\u5411\u6807\u9ad8\u901f\u65cb\u8f6c\u3002"} +{"id": "3004717", "video_name": "5a1bb685-36ea-516e-bf53-57f1d30922e8", "text": "\u5730\u7403\u88c2\u6210\u4e24\u534a\uff0cUFO\u98de\u51fa\u4e86\u6d1e\u53e3\u3002"} +{"id": "3003564", "video_name": "094d959d-0a35-597e-84a5-546423735017", "text": "CHR\u52a0\u5bc6\u8d27\u5e01\u98de\u5411\u6708\u7403\u3002"} +{"id": "4004833", "video_name": "6d2699c7-c39e-5952-b8af-87a9a724d1e9", "text": "\u4e1c\u4eac\u4e0b\u96e8\uff0c\u7528\u76f8\u673a\u53d8\u7126\uff0c\u8ba9\u573a\u666f\u66f4\u52a0\u903c\u771f\u3002"} +{"id": "0006391", "video_name": "2bbc28dc-b236-5beb-a8f0-d214afabf676", "text": "\u4e00\u67b6\u76f4\u5347\u673a\u5728\u66b4\u98ce\u96ea\u4e2d\u76d8\u65cb\u5728\u4e00\u7247\u51b0\u51bb\u7684\u6e56\u9762\u4e0a\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "4003049", "video_name": "52e46b61-7975-5ddb-9ab5-5e1a6058911e", "text": "\u94a2\u94c1\u4fa0\u7ad9\u5728\u7279\u65af\u62c9\u6c7d\u8f66\u4e0a\u3002"} +{"id": "1005129", "video_name": "5e905a49-e018-5c20-846d-f446d0eeeedf", "text": "\u8239\u5185\u53ef\u4ee5\u770b\u5230Zentari\u5916\u661f\u4eba\u64cd\u7eb5\u5168\u606f\u63a7\u5236\u5668\u3002"} +{"id": "4004197", "video_name": "7984379b-c1f8-5461-a199-a6146ce8fff8", "text": "\u52a8\u6f2b\u4e2d\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\uff0c\u68d5\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u4e00\u4ef6\u7d27\u8eab\u6a59\u8272\u5939\u514b\u3002"} +{"id": "6002698", "video_name": "eee4c24e-1f4c-5b5c-9d78-68cb3a7ebf3e", "text": "\u57ce\u5e02\u5e9f\u589f\uff0c\u96e8\u6c34\u8986\u76d6\uff0c\u5efa\u7b51\u7269\u7834\u788e\u4e0d\u582a\u3002"} +{"id": "2005591", "video_name": "46b22b50-6480-537f-a548-2cdb1835ee61", "text": "\u4e00\u53ea\u767d\u8272\u8001\u864e\u9003\u51fa\u4e86\u7b3c\u5b50\u3002"} +{"id": "0006913", "video_name": "353ba5d2-6728-5a09-86b3-a5086151f884", "text": "\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\uff0c\u673a\u5668\u4eba\u9a71\u8d76\u6709\u6076\u610f\u7684\u5de5\u4f5c\u4eba\u5458\u3002"} +{"id": "1003929", "video_name": "488a8074-4c85-5dec-adc2-43ab72a35405", "text": "\u57283D\u52a8\u753b\u30014K\u5206\u8fa8\u7387\u4e0b\uff0c\u521b\u9020\u4e00\u4e2a\u7537\u5b69\u5728\u7530\u5730\u91cc\u52b3\u4f5c\u7684\u5f3a\u5927\u573a\u666f\u3002"} +{"id": "3006395", "video_name": "2978d1cc-9ecb-5f3d-b763-a49b8431840f", "text": "\u8001\u5e74\u5987\u5973\u5728\u6811\u5c4b\u91cc\u4e0e\u7537\u5b69\u548c\u5973\u5b69\u73a9\u800d\u5e76\u7b11\u95f9\u3002"} +{"id": "6002396", "video_name": "57e974b1-d626-56b7-b79b-e97398c8a21a", "text": "Part 4: \u5bfb\u627e\u7b54\u6848\u7684\u4efb\u52a1\uff08\u8352\u51c9\u6751\u5e84\u7684\u573a\u666f\uff0c\u4eba\u4eec\u5bfb\u627e\u75d5\u8ff9\uff09\u65c1\u767d\uff08\u914d\u97f3\uff09\uff1a\u5f53\u6751\u6c11\u4eec"} +{"id": "4002452", "video_name": "68a3c393-955b-5a76-9cdf-049b3cf3aa2a", "text": "\u6536\u97f3\u5934\u9ed1\u767d\u9897\u7c92\u72b6\u7535\u5f71\u7eb9\u7406"} +{"id": "2006451", "video_name": "0036193c-9c09-5d4d-9ec9-0b4277b00677", "text": "\u4e00\u53ea\u5c0f\u9e1f\u5728\u6625\u5929\u7684\u68ee\u6797\u91cc\u6389\u4e86\u4e00\u9897\u7389\u7c73\u7c92\uff0c\u91c7\u75282D\u5361\u901a\u7b14\u753b\u98ce\u683c\u3002"} +{"id": "7004646", "video_name": "293dd8a7-586f-5840-8c8b-a71ad2374003", "text": "\u5728\u5409\u535c\u529b\u52a8\u753b\u7684\u98ce\u683c\u4e0b\uff0c\u4e00\u4e2a\u8001\u4eba"} +{"id": "0003888", "video_name": "454a86f9-2932-5b47-95bd-7030408b8e97", "text": "\u65b0\u9c9c\u7684\u9762\u5305\u5e97\uff0c\u52a0\u4e0a\u4e00\u70b9\u70b9\u60ca\u559c\u3002\u4fe1\u606f\uff1aJormar\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004498", "video_name": "b74e45c8-5b8c-5304-be6b-44bcfc16cf4e", "text": "\u5e74\u8f7b\u7684\u5973\u5b69\u5728\u68ee\u6797\u91cc\u548c\u4e00\u53ea\u9e7f\u5728\u4e00\u8d77\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "3005448", "video_name": "8c401ca6-6b77-56ae-abb9-525ab59c48c4", "text": "\u4e00\u4e2a\u6570\u5b57\u62db\u8058\u4eba\u5458\u5750\u5728\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u524d\uff0c\u8eab\u540e\u662f\u4e00\u4e2a\u5f00\u653e\u7684\u7a7a\u95f4\u573a\u666f\uff0c\u5e94\u8be5\u662f\u903c\u771f\u7684\u3002"} +{"id": "3006980", "video_name": "b43e153f-97bd-52d5-a606-6b2f8d34146f", "text": "\u5927\u8c61\u8e29\u6241\u4e86\u82b1\u73af\u3002"} +{"id": "2007569", "video_name": "09a09d31-18b0-5a10-a353-10bb0d9f0cac", "text": "\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u804c\u4e1a\u51b7\u9177\u7684\u5916\u8868\uff0c\u957f\u957f\u7684\u9ed1\u53d1\u548c\u9510\u5229\u7684\u773c\u795e\uff0c\u6563\u53d1\u51fa\u529b\u91cf\u548c\u51b3\u5fc3\u3002"} +{"id": "5001641", "video_name": "a355780c-c4eb-5d8f-9513-6afb68efde24", "text": "\u70df\u4ece\u70df\u7070\u7f38\u91cc\u5347\u8d77\n\u4f60\u597d\u4e16\u754c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006519", "video_name": "2dfa06f8-55ea-556b-ad96-c21e79432ba3", "text": "\u88ab\u5b50\u4e0b\u8eb2\u85cf\u7684\u4eba\uff0c\u56e0\u4e3a\u542c\u5230\u5916\u9762\u7684\u6c89\u91cd\u547c\u5438\u548c\u4f4e\u8bed\u800c\u98a4\u6296\u7740\u6050\u60e7\u3002"} +{"id": "8001176", "video_name": "8822e909-d8d8-5cf5-9b54-f75b68f41d13", "text": "\u4e00\u4e2a\u7a7f\u7740\u7070\u8272\u897f\u88c5\u7684\u7537\u4eba\u6b63\u6cbf\u7740\u5c0f\u5df7\u8d70\u53bb\u3002\u5e26\u6709\u9ed1\u6697\u800c\u903c\u771f\u7684\u6548\u679c\u3002"} +{"id": "3004479", "video_name": "2d317549-bd0b-593c-9cec-1530143d1699", "text": "\u4e00\u53ea\u975e\u5e38\u53ef\u7231\u7684\u718a\u732b\u5728\u5c0f\u6cb3\u8fb9\u3002"} +{"id": "5001352", "video_name": "899422c1-95eb-541b-9643-a0dea2c58519", "text": "\u673a\u68b0\u773c\u5728\u68ee\u6797\u5730\u9762\u4e0a\u62cd\u6444\u7684\u5fae\u8ddd\u955c\u5934\uff0c\u56db\u5904\u5f20\u671b\u3002 \n\nSource sentence: The conference room is located on the 10th floor of the building"} +{"id": "6002994", "video_name": "95ac189b-95cf-5e85-9524-2f68d5d12828", "text": "\u89e3\u7801\u5668\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff1a\u4eba\u5de5\u8d85\u7ea7\u667a\u80fd\u795e\u7ecf\u7f51\u7edc\u80cc\u666f\u3002"} +{"id": "1004482", "video_name": "5307496c-1cdc-52a3-aa02-e917c4b7657c", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u5728\u503e\u76c6\u5927\u96e8\u4e2d\u62ff\u7740\u4e00\u628a\u7ea2\u8272\u4f1e\uff0c\u5411\u7740\u90a3\u4e2a\u5973\u5b69\u548c\u5c0f\u732b\u8d70\u6765\u3002"} +{"id": "4004490", "video_name": "362de004-60ae-5cd3-8e63-dbe412eea206", "text": "\u4e00\u4e2a\u5a74\u513f\u4ece\u5a74\u513f\u6210\u957f\u4e3a\u5b69\u5b50\uff0c\u518d\u6210\u957f\u4e3a\u6210\u5e74\u4eba\uff0c\u6700\u540e\u6210\u4e3a\u8001\u5e74\u4eba\u3002"} +{"id": "3003468", "video_name": "0252a4ce-2400-546c-8075-d54b2b605137", "text": "\u5929\u5802\u548c\u5730\u72f1\u4e4b\u95f4\u7684\u8def\u5f84"} +{"id": "4004914", "video_name": "bf3c09fb-c4d6-5ca5-8885-c4637c8295d5", "text": "\u5728\u6708\u5149\u4e0b\u7684\u5929\u7a7a\u4e2d\uff0c\u5fcd\u8005\u4eec\u526a\u5200\u9614\u6b65\u8dc3\u8fc7\u5c4b\u9876\uff0c\u4ed6\u4eec\u7684\u5200\u5149\u95ea\u70c1\uff0c\u6a31\u82b1\u74e3\u5728"} +{"id": "2007550", "video_name": "257d852e-3200-5050-9826-52a1d45f3ebf", "text": "\u4ece\u8fdc\u5904\u770b\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u6d77\u76d7\u8239\u3002"} +{"id": "0005322", "video_name": "1897ecc4-0b35-55da-a5c7-28a8bb64a025", "text": "\u4e00\u9762\u53e4\u8001\u7684\u955c\u5b50\u5728\u4e00\u5ea7\u9ed1\u6697\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "0004852", "video_name": "104f78dd-2fd0-5606-9032-26e03357c42e", "text": "\u7518\u5e15\u8482\u8282\uff0c\u4eba\u4eec\u5728\u5de8\u5927\u7684\u7518\u5e15\u8482\u795e\u50cf\u524d\u8df3\u821e\u3002"} +{"id": "7004775", "video_name": "4207f5a3-da61-527c-bbdc-60212491e3d2", "text": "\u5c71\u533a\u6469\u6258\u8f66\u9a91\u884c\uff0c8K \u8d85\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "5001153", "video_name": "fad51cc2-d8d1-55fc-88e8-b7d5e4e21c0d", "text": "\u6e29\u99a8\u7684\u96ea\u6751\uff0c\u6ed1\u96ea\u5c0f\u5c4b\uff0c\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u5927\u96ea\u7eb7\u98de\u3002"} +{"id": "2003942", "video_name": "fcfdf9ed-cebb-5d9c-9422-963dc96425ab", "text": "\u65e9\u6668\u7684\u65e5\u51fa\u7167\u8000\u7740\u8349\u5730\uff0c\u9633\u5149\u7167\u8000\u7740\uff0c\u9e1f\u513f\u5728\u6b4c\u5531\uff0c\u6709\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4:"} +{"id": "8003420", "video_name": "0ce106fc-96e7-535e-b815-4ae5e5fbb87c", "text": "\u4e00\u4e2a\u5927\u7684\u5149\u4eae\u7684\u7ea2\u70b9\u5728\u963f\u5854\u5361\u9a6c\u6c99\u6f20\u4e2d\u592e\uff0c\u6c99\u5c18\u5f25\u6f2b\uff0c\u5929\u7a7a\u5448\u84dd\u8272\uff0c\u7ea2\u8272\u548c"} +{"id": "4002946", "video_name": "39815a19-7807-5f15-a1da-f5e5deec0c51", "text": "\u4e24\u53ea\u72d7\u4ece\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u4eba\u624b\u4e2d\u9003\u8dd1\u7684\u7535\u5f71\u753b\u50cf"} +{"id": "2006386", "video_name": "2150cec5-8690-587b-b69e-38369d3494a4", "text": "\u6d77\u7ef5\u5b9d\u5b9d\u548c\u8718\u86db\u4eba\u8fdb\u884c\u4e86\u81f4\u547d\u7684\u6218\u6597\u3002"} +{"id": "7004971", "video_name": "1a64a507-9573-59d0-9727-6d253f660c8e", "text": "\u6d1b\u57fa\u56e0\u5e0c\u8299\u8389\u7684\u79bb\u5f00\u800c\u5fc3\u60c5\u6cae\u4e27\uff0c\u7ad9\u5728\u4e00\u675f\u91d1\u8272\u7684\u5149\u8292\u4e2d\uff0c\u9762\u5bb9\u60b2\u4f24\u3002"} +{"id": "2007166", "video_name": "611dd4dd-4f85-5d09-94fc-aa6823864739", "text": "\u62c7\u6307\u5411\u4e0a\uff0c\u50cf\u5361\u901a\u4e00\u6837\uff0c\u84dd\u8272\u9ad8\u6e05\u3002"} +{"id": "4004389", "video_name": "f3d3a64f-483c-5124-b8e5-270153988889", "text": "\u82b1\u6735\u84dd\u8272\u7efd\u653e\uff0c\u8303\u56f4\u5e7f\u6cdb\u5e76\u653e\u5927\u3002"} +{"id": "2003308", "video_name": "6279182b-3fe3-5048-a221-d6c32e78f0fe", "text": "\u65e5\u672c\u5973\u5b69\u5728\u6c34\u4e0b\u6f02\u6d6e\uff0c\u5979\u7684\u5934\u53d1\u968f\u7740\u6c34\u6d41\u821e\u52a8\uff0c\u6c34\u6ce1\uff0c\u6d77\u6d0b\u3002"} +{"id": "2005239", "video_name": "6093f475-066b-5fa4-80f6-fc3cfbc54f91", "text": "\u60f3\u8c61\u4e00\u4e2a\u751f\u7269\u673a\u68b0\u84b8\u6c7d\u670b\u514b\u673a\u5668\u4eba\u7684\u9762\u90e8\u8fd1\u8ddd\u79bb\u52a8\u6001\u53d8\u5f62\uff0c\u53d8\u6210\u53e6\u4e00\u4e2a\u751f\u7269\u6216\u673a\u5668\u4eba\uff0c\u91c7\u7528H"} +{"id": "8001277", "video_name": "66096a7c-8292-5e8b-b3db-f73ffcef095f", "text": "\u4e00\u4e2a\u5173\u4e8e\u8f6e\u6ed1\u7403\u8d5b\u7684\u827a\u672f\u7535\u5f71"} +{"id": "2006978", "video_name": "e2fcb84f-5c28-5e10-ba94-5b223eeeb294", "text": "\u4e00\u540d\u533b\u751f\u7167\u987e\u60a3\u6709\u76ae\u708e\u7684\u5b69\u5b50\u7684\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "8001015", "video_name": "5e55fcd2-e2ea-5edb-a129-ef33c34a8c3d", "text": "\u5728\u591c\u665a\u521b\u9020\u4e00\u4e2a\u795e\u79d8\u800c\u8ff7\u4eba\u7684\u722a\u54c7\u5357\u6d77\u56fe\u50cf\u3002\u6708\u5149\u5e94\u8f7b\u8f7b\u89e6\u6478\u6ce2\u6d6a\uff0c\u8425\u9020\u51fa\u795e"} +{"id": "4002302", "video_name": "aeb42b74-6290-54a5-be79-e9ea521f0079", "text": "\u7f8e\u4e3d\u5973\u4eba\u7279\u5199\u9762\u90e8\u5fae\u7b11\u7728\u773c\u3002"} +{"id": "1004525", "video_name": "540c3b68-7e0a-5dec-a333-18399cea8f07", "text": "\u6700\u7ec8\u5e7b\u60f3\u98ce\u683c\uff0c\u9a91\u58eb\u9a91\u7740\u9a6c\u4e0e\u602a\u7269\u6218\u6597\u3002"} +{"id": "0003253", "video_name": "3a14e38a-6824-5d73-b6a3-e50fd574a2a5", "text": "\u5973\u738b\u7a7f\u7740\u957f\u767d\u88d9\u5b50\u7ad9\u5728\u955c\u5934\u524d\uff0c\u6ce8\u89c6\u7740\u56db\u5468\u98de\u7fd4\u7684\u9ed1\u9e1f\u3002"} +{"id": "6004248", "video_name": "3bb42e0f-25ec-50e9-90bc-57024539cab1", "text": "\u5973\u5b69\u5750\u5728\u5ca9\u77f3\u5cb8\u8fb9\u6b23\u8d4f\u65e5\u843d\u3002"} +{"id": "6002010", "video_name": "5bba43ca-95af-5a2e-b784-a3a74a6e443f", "text": "\u4f2f\u5c3c\u00b7\u8d56\u7279\u68ee\u3001\u65af\u8482\u82ac\u00b7\u52a0\u6885\u5c14\u548c\u7ea6\u7ff0\u00b7\u80af\u6069\u7684\u98ce\u683c\uff0c\u6c34\u5f69\u3001\u9ed1\u767d\u3001\u6cbc"} +{"id": "2004376", "video_name": "555a0bf0-695b-5053-aa31-15625340410a", "text": "\u7537\u4eba\u548c\u5973\u4eba\uff0c\u4e24\u4e2a\u604b\u4eba\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c\u661f\u661f\uff0c\u591c\u665a\uff0c\u9713\u8679\u706f\u3002"} +{"id": "2006262", "video_name": "0dac93ae-fdcf-5924-ab0e-2931078f8ce8", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u7433\u5728\u5b5f\u4e70\u8857\u5934\u8d70\u8def\uff0c\u4e2a\u5b50\u975e\u5e38\u77ee\u3002"} +{"id": "6004797", "video_name": "4bca5fa8-2d49-5ca5-bc14-a1da870324b5", "text": "\u5929\u4f53\u4e3b\u9898\u7684\u65e5\u62a5\u89c6\u9891\uff0c\u4e3a\u5728\u4e9a\u9a6c\u900a\u4e0a\u9500\u552e\u800c\u5217\u51fa\u3002"} +{"id": "2006358", "video_name": "7245da00-32e9-5e14-b6f1-438b60ea8dcc", "text": "\u804c\u4e1a\u6559\u7ec3\u8df3\u4f1e\uff0c\u6559\u7ec3\u5728\u558a\u8bdd\u3002 \n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u5728\u57ab\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "5001463", "video_name": "017a83e3-b81d-56e8-8074-194bca0fd6c5", "text": "\u7f51\u7edc\u4e0a\u7684\u4e0d\u601d\u8bae\u7684\u7231\u4e3d\u4e1d"} +{"id": "1006832", "video_name": "7cef947f-b4d7-5497-afbe-9bd6e23c33e7", "text": "\u9ad8\u901f\u98de\u884c\u7684\u81ea\u884c\u8f66\u5728\u5929\u7a7a\u4e2d\uff0c\u91d1\u5e01\u5982\u96e8\u822c\u843d\u4e0b\u3002"} +{"id": "3004198", "video_name": "37e36869-6504-56a5-b39d-ed8d585c0d10", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a\u7535\u5b50\u7b14\u8bb0\u672c\u7684\u5e7f\u544a\uff0c\u65f6\u957f\u4e0d\u8d85\u8fc740\u79d2\u3002"} +{"id": "3003977", "video_name": "d635f5f2-19a8-5996-b43a-9e9eb589e972", "text": "\u50f5\u5c38\u3001\u72fc\u4eba\u3001\u5e7d\u7075\u3001\u4e0d\u7ed9\u7cd6\u5c31\u6363\u86cb\u3001\u6df7\u4e71\u3002"} +{"id": "1003869", "video_name": "474ad81a-3f94-5187-b46d-07da47466cb4", "text": "\u5973\u5b69\u7ad9\u5728\u540e\u9762\u3002\u80cc\u666f\u662f\u5c71\u548c\u65e5\u843d\u3002\u955c\u5934\u4ece\u5973\u5b69\u79fb\u5411\u5c71\u3002"} +{"id": "2003990", "video_name": "af0c71fe-646f-5997-ab02-d24d717555c6", "text": "\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5f97\u5230\u964c\u751f\u4eba\u7684\u5e2e\u52a9\u3002\u9ad8\u6e05\u6670\u5ea6\uff0c8K\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "3006755", "video_name": "37e193a0-a65d-5e9b-a68a-f8ea610de5fe", "text": "\u4e00\u4e2a\u7531\u8d85\u65b0\u661f\u7206\u70b8\u5f15\u53d1\u7684\u7fa4\u661f\u7cfb\u96c6\u5408\u4f53\u3002\u4fe1\u606f\uff1aCCC \u963f\u5e03\u8d3e\u4e2d\u592e\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002787", "video_name": "e27e5cad-5fac-5ff6-80f2-ab1c874568b1", "text": "\u963f\u7c73\u7279\u5e26\u5934\u4e0b\u8f66\uff0c\u4ed6\u4eec\u5230\u8fbe\u795e\u79d8\u5bfa\u5e99\u9644\u8fd1\u3002\u8f66\u5b50\u88ab\u9057\u5f03\uff0c\u6210\u4e3a\u4ed6\u4eec\u65c5\u7a0b\u4e2d\u7684\u5b64\u72ec\u89c1"} +{"id": "4002991", "video_name": "4c2d2568-e866-5e58-803a-80b465589b00", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u540d\u7a7f\u7740\u957f\u888d\u7684\u7537\u5b50\u6325\u821e\u7740\u5b9d\u5251\u6218\u6597\u7684\u573a\u666f\u3002"} +{"id": "2004034", "video_name": "84fe7f3f-8bde-5e01-9904-451e26fb0327", "text": "\u4e00\u8258\u53d8\u5f62\u91d1\u521a\u98de\u8239\u5728\u94f6\u6cb3\u4e2d\u98de\u884c\uff0c\u4e0a\u9762\u5199\u7740\u201cAutobott\u201d\u3002"} +{"id": "8003262", "video_name": "0086c802-5e52-5fda-9bcf-bcec6ba4b8cb", "text": "\u997c\u5e72\u602a\u517d\u4f5c\u4e3a\u661f\u7403\u5927\u6218\u7684\u8d3e\u74e6\u4eba\uff0c\u5728\u5854\u56fe\u56e0\u4e0a\u73a9\u5f04\u7740\u7206\u70b8\u7684\u6930\u5b50\uff0c\u52a8\u611f\u56db"} +{"id": "1005906", "video_name": "6c981476-47cb-5d70-9848-af52747dc1d8", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u827e\u9a6c\u7ebd\u57c3\u5c14\u00b7\u9a6c\u514b\u9f99\u5728\u8fea\u62dc\u73a9\u6251\u514b\u724c\uff0c\u4ee5\u6f2b\u753b\u98ce\u683c\u8868"} +{"id": "2004551", "video_name": "e5853c41-b9a4-59d4-86a8-0b8ff759a950", "text": "\u4e00\u8f86\u81ea\u884c\u8f66\u5728\u4e61\u6751\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "0005843", "video_name": "220eb508-8f94-5e32-b1c2-4b1e620d2906", "text": "3D\u8fea\u58eb\u5c3c\u8783\u87f9\u5728\u6708\u7403\u4e0a\u8df3\u821e\u3002"} +{"id": "0005553", "video_name": "1cc7a34e-b27f-55e1-b711-f53b88505bf6", "text": "\u7537\u4eba\u7684\u52a8\u753b\uff0c\u5927\u7b11\u7740\uff0c\u9732\u51fa\u5bbd\u9614\u7684\u5fae\u7b11\uff0c\u7728\u773c\u775b\u3002"} +{"id": "0006041", "video_name": "25884b6e-28c6-56a5-8f07-079a8fabc444", "text": "\u6240\u6709\u7684\u52a8\u7269\u548c\u7a7f\u7ea2\u886c\u886b\u7684\u7537\u5b69\u5728\u4e1b\u6797\u91cc\u90fd\u5f88\u5f00\u5fc3\u3002"} +{"id": "3005697", "video_name": "8e43169f-a65c-5df9-859f-cec98603a270", "text": "\u5b69\u5b50\u4eec\u5728\u623f\u5b50\u91cc\u5e86\u795d\u751f\u65e5\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u5e26\u8721\u70db\u7684\u86cb\u7cd5\u3002"} +{"id": "7004025", "video_name": "3650ae67-6e8e-5b61-a856-d24fb89a0de1", "text": "\u5723\u8bde\u8001\u4eba\u6b63\u5728\u548c\u5b69\u5b50\u4eec\u8df3\u821e\u3002"} +{"id": "0005650", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "\u5de8\u578b\u4f01\u9e45\u7f16\u7a0b\u6467\u6bc1\u4e00\u680b\u5efa\u7b51\u3002"} +{"id": "8001309", "video_name": "1d1233b9-0a11-50bb-ad8b-887a5e204b28", "text": "\u5728\u6674\u6717\u7684\u65e5\u5b50\u91cc\uff0c\u9e70\u5728\u5c71\u4e0a\u98de\u7fd4\u3002"} +{"id": "0003586", "video_name": "3ff7a500-3aac-5d89-9fed-78ae274238ee", "text": "\u5b87\u822a\u5458\u56e2\u961f\u7a7f\u4e0a\u592a\u7a7a\u670d\u51c6\u5907\u51fa\u53d1\u3002"} +{"id": "8002597", "video_name": "0c1e929f-b3cd-5a7c-b31f-8f00753cce21", "text": "\u53ef\u7231\u7684\u6a59\u8272\u523a\u732c\u5728\u8349\u5730\u4e0a\u8d70\u8def\u3002"} +{"id": "8003054", "video_name": "315abf37-c99c-5b6d-8823-94f4a5bf67c3", "text": "\u8fd0\u52a84\uff0c\u5e27\u901f24\uff0c\u7b11\u9b54\u8e29\u5728\u4eba\u8eab\u4e0a\uff0c\u80cc\u666f\u4e2d\u6709100\u4e2a\u9ed1\u6697\u7684\u7537\u4eba\u3002"} +{"id": "2005945", "video_name": "1d5877e2-cfdd-50d7-8bc6-dd24534db427", "text": "\u5728\u660f\u6697\u7684\u7a7a\u95f4\u91cc\uff0c\u4e00\u4e2a\u4eba\u8dea\u5728\u5730\u4e0a\u7948\u7977\uff0c\u4ed6\u4eec\u7684\u8138\u88ab\u906e\u853d\u3002"} +{"id": "4003267", "video_name": "9ca865d4-a823-5c87-8399-6121310f0284", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u5973\u5b69\u5728\u6444\u5f71\u5e08\u62cd\u7167\u65f6\u5fae\u7b11\u7740\u3002 \u9644\u4ef6\uff1a1\u3002"} +{"id": "3003432", "video_name": "965c9eff-0509-57f6-8d88-33489de6b24b", "text": "\u52a8\u753b\u72ec\u89d2\u517d\u5403\u8349\uff0c\u745e\u514b\u548c\u83ab\u8482\u98ce\u683c\u3002"} +{"id": "1005453", "video_name": "6432038d-ff14-5618-8744-1a5bd68f1b1c", "text": "\u5458\u5de5\u4eec\u5728\u529e\u516c\u5ba4\u91cc\u4f20\u9012\u4e00\u4e2a\u84dd\u8272\u7684\u6c99\u6ee9\u7403\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "8003917", "video_name": "48a7a74a-9a8f-5e37-8f38-c36d7f415d24", "text": "\u89c6\u89c9\uff1a\u5e26\u7740\u68a6\u5e7b\u773c\u795e\u7684\u73ab\u7470\uff0c\u5728\u4e00\u4e2a\u5947\u5f02\u7684\u60f3\u6cd5\u6c14\u6ce1\u4e2d\uff0c\u5c55\u793a\u5979\u5728\u4e0d\u540c\u7684\u666f\u89c2\u4e2d"} +{"id": "3004112", "video_name": "f1f3c9e3-445c-5389-881a-fed18d0ff164", "text": "\u592a\u7a7a\u4e2d\u7684\u5de8\u578b\u7ae0\u9c7c\u7528\u89e6\u624b\u8986\u76d6\u4e86\u6574\u4e2a\u5730\u7403\u3002"} +{"id": "1005891", "video_name": "6c5d4075-6577-5a53-9125-1e8fcaa66a50", "text": "\u6c6a\u6d0b\uff0c\u6c6a\u6d0b\uff0c\u6ce2\u6d6a\u3002"} +{"id": "2003719", "video_name": "fcba11e4-262f-501a-82d4-03db8c360ee0", "text": "\u8fea\u6069\u548c\u5c71\u59c6\u00b7\u6e29\u5f7b\u65af\u7279\u5728\u4e00\u6761\u6f2b\u957f\u9ed1\u6697\u7684\u8def\u4e0a\u9a7e\u9a76\u8fd9\u8f86\u6807\u5fd7\u6027\u76841967\u5e74\u96ea\u4f5b\u5170Impala"} +{"id": "0004747", "video_name": "0e9a52b2-26a5-58f7-a467-78d73838a394", "text": "\u4e00\u4e2a\u6ca1\u6709\u7a7f\u8863\u670d\u7684\u7537\u4eba\uff0c\u6325\u821e\u7740\u4e00\u628a\u65a7\u5934\u3002"} +{"id": "2007661", "video_name": "06305ade-f69e-5c19-b8f2-a1d7cded64e6", "text": "\u9e1f\u513f\u98de\u8fc7\u70ed\u5e26\u5c9b\u5c7f\uff0c\u6ce2\u6d6a\u4e0d\u65ad\u62cd\u51fb\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "7004906", "video_name": "59671014-c684-55e1-a87d-9b918de99801", "text": "\u5929\u7a7a\u4e2d\u7684\u63a0\u98df\u6027\u8001\u9e70\u3002"} +{"id": "0003320", "video_name": "3b926abb-09c6-58aa-9630-dc20b859a133", "text": "\u5728\u591a\u5143\u5b87\u5b99\u4e2d\u5feb\u901f\u7a7f\u8d8a\u65b0\u4e16\u754c\u3002"} +{"id": "0003169", "video_name": "388724be-10b5-5fe9-b8f7-7196ff2c7a5a", "text": "\u4ed6\u4eec\u7684\u773c\u775b\u53d8\u767d\u4e86\u3002\u4fe1\u606f\uff1a\u9644\u4ef61\u3002"} +{"id": "1004360", "video_name": "5087f171-8ee5-5824-abdf-0c610d54a005", "text": "\u4e09\u8f86\u5c0f\u8f66\u505c\u5728\u8def\u4e0a\u3002"} +{"id": "1004678", "video_name": "56e84d86-799f-5fbb-adda-c31825d0e841", "text": "\u4ed6\u6b63\u5728\u7528\u9ad8\u538b\u6d17\u8f66\u673a\u6e05\u6d17\u77f3\u8def\u3002"} +{"id": "4002450", "video_name": "bf60f287-36d9-58e2-aff2-d8777e007361", "text": "\u9a6c\u62c9\u5361\u6cb3\u8fb9\u559d\u5564\u9152\u6d88\u78e8\u65f6\u5149\u3002"} +{"id": "6002502", "video_name": "fb1d6ab7-5dc3-50e2-af89-cc3272e8e85f", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u7eb3\u548c\u4ed6\u7684\u670b\u53cb\u5f13\u7bad\u624b\u963f\u5c14\u743c\u65e9\u5728\u4e00\u5929\u524d\u5c31\u5230\u8fbe\u4e86\u73b0\u573a\u8fdb\u884c\u68c0\u67e5\u3002\u4ed6\u4eec\u6b63\u5728\u68c0\u67e5\u5e76\u67e5\u770b"} +{"id": "0005779", "video_name": "2121ec1d-4c74-5f68-adf4-65442932b9b2", "text": "\u5c0f\u5b69\u5728\u6c34\u4e2d\u73a9\u800d\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "2004687", "video_name": "134b57e3-a045-5229-a04b-9725ffcdd154", "text": "\u4e00\u4e2a\u8eab\u4f53\u5065\u5eb7\u7684\u5546\u4eba\u5728\u529e\u516c\u684c\u524d\u601d\u8003\uff0c\u4e00\u8fb9\u559d\u7740\u5496\u5561\u3002"} +{"id": "6004555", "video_name": "c43d6ea5-47f8-5985-ae34-60391b10b182", "text": "translation: \u6708\u4eae\u9ad8\u9ad8\u6302\u5728\u67ab\u6811\u4e0a\u65b9\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "5001304", "video_name": "380d4236-52a0-5f36-8b7d-f70584b6b301", "text": "\u89c6\u9891AI\u673a\u5668\u4eba\u63a5\u7ba1\u4e16\u754c\u3002"} +{"id": "6003530", "video_name": "d5fab6ec-04d0-5013-8f9e-12b6db624c0a", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5979\u7684\u8d5b\u535a\u670b\u514b\u623f\u95f4\u9605\u8bfb\u7684\u9ad8\u8d28\u91cfRAW\u7167\u7247\uff0c\u900f\u660e\uff0c\u9713\u8679\u706f\uff0c8K\u903c\u771f\u7684"} +{"id": "3003170", "video_name": "5192ebfe-f956-5ee6-9855-739f2722cf4e", "text": "\u7cdf\u7cd5\u7684\u6d77\u4e0a\u66b4\u98ce\u96e8\uff0c\u731b\u70c8\u7684\u6d77\u6d6a\uff0c\u76f8\u673a\u7f13\u6162\u5730\u4ece\u5de6\u5411\u53f3\u62c9\u8fdc\uff0c\u6d88\u606f\uff1a\"bOo mCN"} +{"id": "7003500", "video_name": "0ca41673-17fe-5a66-b0a4-e487b577db7c", "text": "\u5fcd\u8005\u8df3\u8dc3\uff0c\u5168\u8eab\u6295\u5165\uff0c\u5feb\u901f\u52a8\u4f5c\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "3005610", "video_name": "9d604dac-18a0-538b-bdb2-5634a36adb64", "text": "\u4e00\u7fa4\u4e2d\u5e74\u4e9a\u6d32\u5973\u6027\u5728\u4e00\u5ea7\u53e4\u8001\u5bfa\u5e99\u524d\u8df3\u4f20\u7edf\u4e2d\u56fd\u5f69\u5e26\u821e\uff0c\u4f34\u968f\u7740\u4e2d\u56fd\u7b1b\u5b50\u97f3\u4e50\u3002"} +{"id": "1006480", "video_name": "7690d8dc-4c47-5218-a60d-a3e272d7f116", "text": "\u521b\u9020\u4e00\u5f20\u8349\u539f\u733f\u4eba\u4e2a\u4f53\u6216\u7fa4\u4f53\u5728\u81ea\u7136\u73af\u5883\u4e2d\u7684\u5f62\u8c61\u3002"} +{"id": "2003516", "video_name": "9e8abedd-998e-5027-af4f-eff88d032b7d", "text": "\u4eba\u4eec\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u7535\u89c6\uff0c1970\u5e74\u7684\u7167\u7247\uff0c\u9ad8\u6e05\uff0c\u903c\u771f\u3002"} +{"id": "2005227", "video_name": "ac3c1bc1-d576-5df5-93ab-143388341534", "text": "\u624b\u6307\u5728\u952e\u76d8\u4e0a\u6253\u5b57\uff0c9:16\u3002"} +{"id": "1004239", "video_name": "4e795ca0-bcf1-5361-a3a9-f7349ef7bd9a", "text": "\u6bcf\u4e2a\u5370\u5ea6\u56fd\u738b\u8fbe\u4ec0\u62c9\u7279\u5bab\u6bbf\u91cc\u7684\u4eba\u90fd\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "8002222", "video_name": "47eaa3c5-d0ec-522e-b9b2-9f3e7b10e2ef", "text": "\u4e00\u5217\u706b\u8f66\u4ece\u96a7\u9053\u4e2d\u5f00\u51fa\uff0c\u7136\u540e\u98de\u4e0a\u5929\u7a7a\u3002"} +{"id": "1003970", "video_name": "494bae18-93d2-55d9-85f4-6a00dfe241ef", "text": "\u6cd5\u56fd\u5357\u7279\u57ce\u5e02\u5728\u65e5\u51fa\u65f6\u4ece\u98de\u673a\u4e0a\u770b\u5230\u7684\u5929\u7a7a\u3002\u4fe1\u606f\uff1a\u5357\u7279\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003843", "video_name": "446c7f20-c037-50d2-a6fc-f6b8c3338795", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u718a\u732b\u5728\u86cb\u7cd5\u4e0a\u8df3\u821e\u3002"} +{"id": "0005404", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "\u4e00\u4e2a\u5370\u5ea6\u6559\u795e\u7947\uff0c\u7f8e\u4e3d\u5c11\u5e74\uff0c\u76ae\u80a4\u53d1\u5149\u50cf\u96e8\u4e91\u7684\u989c\u8272\u3002\u4ed6\u5439\u7740\u957f\u7b1b\uff0c\u5438\u5f15\u6240\u6709\u4eba\u7684\u5fc3"} +{"id": "7002993", "video_name": "53b60547-0e79-5035-95dd-7d2e88da2cb5", "text": "\u8bd5\u56fe\u5728\u4e95\u91cc\u6293\u4f4f\u4e00\u679a\u786c\u5e01\u3002"} +{"id": "6003662", "video_name": "414dc610-4d26-5872-b7da-4c0f7d97b164", "text": "\u82b1\u3001\u7ed8\u753b\u548c\u4e50\u8c31\uff08\u7f8e\u5b66\uff09"} +{"id": "1006096", "video_name": "6fc98444-2502-5535-ae49-2a9077680f05", "text": "\u706b\u5c71\u8fd8\u6ca1\u6709\u7206\u53d1\u3002"} +{"id": "8003484", "video_name": "27074efd-cbd1-5d6f-a06d-3a4734f30759", "text": "\u9b3c\u9b42\u7a7f\u8d8a\u7f51\u7edc\u7a7a\u95f4\u548c\u673a\u5668\u4eba\u5916\u661f\u4eba\uff0c\u4ee580\u5e74\u4ee3\u5361\u901a\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4002022", "video_name": "5147f442-88e2-5dcb-a3e2-9475adc7ddf4", "text": "\u7537\u4eba\u65e9\u4e0a\u9192\u6765\uff0c\u53d1\u73b0\u81ea\u5df1\u5728\u5e8a\u4e0a\uff0c\u770b\u5230\u5361\u901a\u7d20\u63cf\u3002"} +{"id": "0005030", "video_name": "136d69fb-91a8-50bb-b306-fd1e972c0ecf", "text": "\u6765\u81eaFakel Voronezh\u961f\u7684\u8db3\u7403\u8fd0\u52a8\u5458\uff1aAlexey Nekrasov\u3002"} +{"id": "0004813", "video_name": "0f951ca1-d3ab-5a29-97e5-3ebb35d7ecc2", "text": "\u6218\u4e89\u4e2d\u7684\u6218\u6597\u4fe1\u606f\uff1a\u9a6c\u8fbe\u62c9\u5bf9\u9635\u9e23\u4eba\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003947", "video_name": "005de5be-274f-5204-b287-898a5abf0e0e", "text": "\u4e24\u4e2a\u4e09\u5c81\u7684\u7537\u5b69 Zhenya \u548c Sasha\uff0c\u7a7f\u7740\u5c3f\u5e03\u5750\u7740\u3002"} +{"id": "7003409", "video_name": "a7b4fc16-c1a7-5ba3-a680-a2efcee3dc63", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272 T \u6064\u7684\u5973\u5b69\u7ad9\u5728\u623f\u95f4\u4e2d\u592e\u3002"} +{"id": "1006098", "video_name": "6fd20366-100e-5a9e-9423-5bbb1eaef40a", "text": "\u4e00\u4f4d\u6f02\u4eae\u5973\u5b69\u6b63\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u5411\u540e\u8d70\uff0c\u6444\u50cf\u673a\u8ddf\u968f\u5176\u62cd\u6444\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "3005335", "video_name": "d38bfaad-8db9-5092-857d-63eaa13400e6", "text": "\u5f53\u57f9\u6839\u98de\u8d77\u6765\u65f6\uff0c10\u79d2\u949f\uff0c\u65e5\u843d\u3002"} +{"id": "2006392", "video_name": "3dda3be3-8cf7-5cda-b7b9-9b796fb0e0f5", "text": "\u4e00\u4e2a\u5370\u5ea6\u6751\u5e84\u548c\u6751\u6c11\u76842D\u52a8\u753b\u89c6\u9891"} +{"id": "0003182", "video_name": "38deb487-e73b-5016-8b2e-be8bc89e03d6", "text": "\u6211\u60f3\u8981\u4e00\u4e2a1870\u5e74\u5370\u5ea6\u80a9\u8180\u7684\u56fe\u7247\u3002"} +{"id": "4003857", "video_name": "d534f41b-d2e8-580b-b7a5-c4edc9a06040", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5f2f\u7740\u8170\u5750\u5728\u684c\u524d\uff0c\u4e13\u6ce8\u5730\u770b\u7740\u7535\u8111\u3002"} +{"id": "4004013", "video_name": "ba944e93-50de-5d35-959a-1be2549640f0", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u6811\u6728\u88ab\u5851\u6599\u5305\u88f9\u7740\uff0c\u6811\u6728\u5373\u5c06\u67af\u840e\uff0c\u5929\u7a7a\u88ab\u9ed1\u8272\u96fe\u6c14\u7b3c\u7f69\uff0c\u6c61\u6c34\u5728"} +{"id": "2005503", "video_name": "368e8b7a-92ec-5b75-b984-ac69021cfe3d", "text": "\u7531\u672c\u6770\u660e\u00b7\u83ab\u6839\u53d1\u660e\u7684\u95f4\u6b47\u6cc9\u63d0\u4f9b\u70ed\u6c34\uff0c\u5373\u4f7f\u5728\u5bd2\u51b7\u5929\u6c14\u4e0b\u4e5f\u6ca1\u6709\u95ee\u9898\u3002"} +{"id": "1006230", "video_name": "7235c3b1-25a2-57ab-9604-4de91b24e2cb", "text": "\u70ed\u5e26\u96e8\u6797\u4e2d\u7684\u9e66\u9e49\u5728\u66b4\u98ce\u96e8\u4e2d\u5bfb\u627e\u5e87\u62a4\u3002"} +{"id": "0004695", "video_name": "0d6f3406-5b9a-53d0-9e3f-e14afbcaf174", "text": "\u4e00\u4f4d\u7a7f\u7740\u6821\u670d\u7684\u5c0f\u5973\u5b69\u7ad9\u5728\u5979\u5bb6\u95e8\u524d\u3002"} +{"id": "7003842", "video_name": "db2df2f6-73b4-53e5-a559-466041954619", "text": "\u539f\u59cb\u827a\u672f\u72d7\uff0c\u9c9c\u660e\u5927\u80c6\u7684\u989c\u8272\uff0c\u539a\u91cd\u7684\u8d28\u611f\u7ed8\u753b\uff0c\u6d53\u9ed1\u7684\u7b14\u753b\uff0c\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684"} +{"id": "4002647", "video_name": "40ec58b3-ed35-5dc5-9512-c2dae8dd12a6", "text": "\u7c73\u5a05\u3001\u91cc\u5965\u548c\u4f50\u4f0a\u805a\u96c6\u5728\u7bdd\u706b\u5468\u56f4\uff0c\u5c55\u5f00\u5730\u56fe\u3002"} +{"id": "6004989", "video_name": "3234cf86-8180-537a-8c94-ea3f1f0032c0", "text": "\u5f00\u8f66\u5728\u5188\u4ec1\u6ce2\u9f50\u96ea\u5c71\u9053\u8def\u4e0a\u3002"} +{"id": "0005078", "video_name": "145d8c26-c3d2-53af-835b-3789ec33c435", "text": "\u4e00\u4e2a\u89c6\u89c9\u4e0a\u60ca\u4eba\u7684\u5f71\u50cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5145\u6ee1\u5148\u8fdb\u79d1\u6280\u548c\u4eba\u7c7b\u7684\u672a\u6765\u661f\u7403\u3002\u753b\u9762\u91c7\u7528\u5bbd\u5c4f21:9\u7684\u6bd4\u4f8b"} +{"id": "7004748", "video_name": "855f84bb-0422-5856-8a64-abcc75af5a2c", "text": "\u4eba\u8d70\u8fdb\u53bb\uff0c\u4ed6\u7684\u5f71\u5b50\u5374\u79bb\u4ed6\u8d8a\u6765\u8d8a\u8fdc\u3002"} +{"id": "4002264", "video_name": "8fbba553-d2fa-54e6-a473-ec39e815eeb9", "text": "DND\u5de5\u4f5c\u4eba\u5458\u7d2b\u8272\u53d1\u5149\u7684\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "2005012", "video_name": "a43ebef4-742a-5a83-95bf-bd83c7ccf53f", "text": "\u4e00\u4e2a\u9ad8\u5927\u3001\u767d\u7699\u7684\u7537\u4eba\uff0c\u9ed1\u8272\u7684\u76f4\u53d1\uff0c\u8138\u4e0a\u8f6e\u5ed3\u5206\u660e\uff0c\u7d2b\u8272\u7684\u773c\u775b\u548c\u6dd8\u6c14\u7684\u5fae\u7b11\u3002\u80cc\u666f\u662f"} +{"id": "8002356", "video_name": "08761473-844f-5542-bc50-aa62409b6344", "text": "\u4e00\u53ea\u5f39\u5409\u4ed6\u7684\u732b\u548c\u4e00\u53ea\u5728\u7f8e\u4e3d\u7684\u5c71\u591c\u666f\u4e0a\u8df3\u821e\u7684\u72d7\uff0c\u6708\u4eae\u3001\u6e56\u6cca\u3001\u6d41\u6c34\u3001\u6811\u6728\uff0c"} +{"id": "6002443", "video_name": "2e963e7c-8114-5e06-bf8a-b54816885e1a", "text": "\u4e24\u5ea7\u5c71\u4e4b\u95f4\u7684\u592a\u9633\u5347\u8d77\uff0c\u5c71\u9876\u4e0a\u8986\u76d6\u7740\u96ea\u3002"} +{"id": "0006536", "video_name": "2e568ac6-5cb1-5f56-b44f-521229b17e21", "text": "\u4ed6\u4eec\u770b\u5230\u4e86\u60ca\u4eba\u7684\u666f\u8c61\uff0c\u9047\u89c1\u4e86\u6709\u8da3\u7684\u592a\u7a7a\u751f\u7269\u3002"} +{"id": "6004508", "video_name": "d3eb9f72-c5fa-5632-91ac-212a63f7a2be", "text": "\u5728\u795e\u79d8\u7684\u591c\u6797\u4e2d\u884c\u8d70\u7684\u7537\u4eba\u8eab\u62ab\u795e\u79d8\u7684\u9ed1\u6697\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u5c55\u73b0\u3002"} +{"id": "7002099", "video_name": "1d974b1d-42d7-572f-b744-74f577a023e1", "text": "\u67f4\u72ac\u6ca1\u6709\u98df\u7269\uff0c\u611f\u89c9\u975e\u5e38\u9965\u997f\u3002"} +{"id": "7002187", "video_name": "82d0f7f6-627d-53b5-bfc7-0e4de8b3a5b3", "text": "\u963f\u57fa\u6069\u7684\u7167\u7247\uff0c\u4e00\u4e2a\u52c7\u6562\u7684\u5e74\u8f7b\u6218\u58eb\uff0c\u5e26\u7740\u51b3\u5fc3\u8e0f\u8fdb\u4e1b\u6797\u3002"} +{"id": "7002109", "video_name": "d1083b89-d07d-5256-8ebe-ae633aa95963", "text": "\u4e00\u53ea\u732b\u6389\u843d\u768410\u5e27\u6bcf\u79d2\u89c6\u9891"} +{"id": "2007586", "video_name": "1a2b1476-03cd-5596-8c6c-96773911dd0b", "text": "\u63cf\u7ed8\u4e00\u4e2a\u6e05\u6670\u7684\u753b\u9762\uff0c\u5373\u9ece\u660e\u7834\u6653\u540e\u57ce\u5e02\u666f\u89c2\u7684\u6837\u5b50\uff1a\u5efa\u7b51\u7269\u6355\u6349\u65e9\u6668\u9633\u5149\u7684\u5149"} +{"id": "8002087", "video_name": "838bc625-cceb-5a02-9644-f12a9e8e0290", "text": "\u5929\u7a7a\u4e2d\u7684\u4e00\u9053\u5149\u7ebf\uff08\u7535\u5f71\u822c\u7684\u573a\u9762\uff09"} +{"id": "7003839", "video_name": "435b4f10-5f5f-5ae1-a553-afb64b6fe950", "text": "\u5411\u4eba\u4eec\u5c55\u793a\u5728\u4e1b\u6797\u4e2d\u5bfb\u627e\u5bb6\u56ed\u7684\u65b9\u6cd5\u3002"} +{"id": "2005322", "video_name": "4b2c8d5c-3068-53ab-86d6-f7ef4ac699b0", "text": "\u6d74\u5ba4\u88ab\u6c34\u6df9\u81f3\u5929\u82b1\u677f\uff0c\u4e00\u4e2a\u7a7f\u7740\u98d8\u9038\u793c\u670d\u7684\u5973\u4eba\u6f02\u6d6e\u5728\u6c34\u4e2d\uff0c\u98d8\u9038\u7684\u5934\u53d1\uff0c\u80cc\u666f\u662f"} +{"id": "3006349", "video_name": "e981ee59-fa59-5df9-8f9f-11dd1d6d03cb", "text": "\u4e00\u4f4d\u8bd7\u4eba\uff0c\u8138\u4e0a\u7559\u7740\u80e1\u987b\uff0c\u773c\u775b\u6234\u7740\u773c\u955c\uff0c\u8eab\u4e0a\u7a7f\u7740\u6cd5\u8131\u8863\uff0c\u811a\u4e0a"} +{"id": "6003805", "video_name": "5af5f3ec-9e3c-5a31-b67a-1ff9ca9eb3c5", "text": "\u8718\u86db\u4fa0\u5728\u4e00\u5ea7\u5efa\u7b51\u7269\u91cc\u8fdb\u98df\uff0c\u91c7\u7528\u6781\u9ad8\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "6003004", "video_name": "849c54cf-0ef5-58e2-9965-2287e49aaba1", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u90e8\u843d\u559d\u70ed\u6c34\u3002\n\nSource sentence: She is wearing a beautiful dress. \n\n\u5979\u7a7f\u7740\u4e00\u6761\u6f02\u4eae\u7684\u88d9\u5b50\u3002"} +{"id": "7002079", "video_name": "766b9c3a-906e-53dc-9689-7d83d00576c8", "text": "\u4e24\u8f86\u7ea2\u8272\u548c\u9ec4\u8272\u7684\u6c7d\u8f66\u4e92\u76f8\u7ade\u901f\u3002\u9ec4\u8272\u6c7d\u8f66\u9996\u5148\u5230\u8fbe\u7ec8\u70b9\u7ebf\u3002"} +{"id": "0003307", "video_name": "3b5729e2-9cba-5f0b-ad66-1e03dd35782d", "text": "\u53e4\u8001\u7684\u6811\u6728\u5728\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "5001624", "video_name": "654a3347-599f-5fd5-91de-c64959965716", "text": "\u8352\u8c2c\u7684\u5361\u901a\u753b\u4e2d\uff0c\u970d\u9ed8\u00b7\u8f9b\u666e\u68ee\u5f00\u7740\u6cd5\u62c9\u5229\u7a7f\u8d8a\u68ee\u6797\uff0c\u9a7e\u8f66\u884c\u9a76\u5728\u65e5\u843d\u7684\u516c\u8def"} +{"id": "4004246", "video_name": "52b68486-ee91-5aec-b3b1-57fa963192c8", "text": "\u6811\u6728\u5728\u6447\u6643\uff0c\u5de8\u5927\u7684\u98de\u8239\u5728\u79fb\u52a8\u3002"} +{"id": "2003883", "video_name": "49b18dcd-1e0a-5870-b357-3beca2a063c3", "text": "\u4e00\u679a\u706b\u7bad\u7a7f\u8fc7\u4e91\u5c42\uff0c\u903c\u771f\u3001\u9ad8\u6e05\u30014K\u3001\u620f\u5267\u5316\u3001\u7535\u5f71\u5316\u3002"} +{"id": "3005597", "video_name": "c8d73b51-2aed-5632-96d3-16e4d413aaea", "text": "\u5723\u8bde\u5feb\u4e50\uff01\u5e26\u7740\u6240\u6709\u7ecf\u5178\u7684\u5723\u8bde\u89d2\u8272\u548c\u4e00\u4e2a\u201c\u6109\u5feb\u7684\u5047\u671f\u201d\u6807\u5fd7\u3002"} +{"id": "0003920", "video_name": "45c72aa7-bd56-5241-bd7e-300c90c87651", "text": "\u52a8\u753b\u732b\u8d23\u5907\u5b83\u4eec\u7684\u4e3b\u4eba\uff0c\u6807\u9898\uff1a\u6211\u7684\u732b\u628a\u6211\u5173\u8d77\u6765\u4e86\uff1f\n\nSource sentence: I am learning Chinese and I find it challenging but also very interesting.\n\u6211\u6b63\u5728\u5b66\u4e60"} +{"id": "6002187", "video_name": "68143e22-17ff-5e29-8720-40d6da734328", "text": "\u7d2b\u8272\u7684\u795e\u79d8\u52a8\u6f2b\u7537\u5b50\u6709\u7740\u660e\u4eae\u7684\u773c\u775b\u5954\u8dd1\u3002"} +{"id": "8002760", "video_name": "65d9bbae-06ea-5eaf-bca6-6882aea98998", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u6df1\u80a4\u8272\u5973\u5b50\u7ad9\u5728\u5d0e\u5c96\u7684\u60ac\u5d16\u8fb9\u4e0a\uff0c\u4fef\u77b0\u7740\u5e7f\u9614\u800c\u5177\u6709\u6311\u6218\u6027\u7684\u666f"} +{"id": "8001351", "video_name": "20c5882c-b593-59f7-9873-b5a03c151624", "text": "\u7a7f\u84dd\u8272\u725b\u4ed4\u88e4\u7684\u4e2d\u56fd\u5973\u5b69"} +{"id": "1003160", "video_name": "3a37284d-09b8-5d83-8793-8990e226a491", "text": "\u5973\u4eba\u8bf4\u8bdd\uff0c\u4e91\u5728\u98d8\u52a8\uff0c\u592a\u9633\u5149\u7ebf\u3002"} +{"id": "3005622", "video_name": "bf5a4919-4692-55c7-ac5e-ea0e64112d2b", "text": "\u684c\u5b50 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "6004340", "video_name": "ed708af1-6c23-52c0-933e-1c5791bf9392", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u4e61\u6751\u7537\u5b69\u8131\u9896\u800c\u51fa\u3002\n\nSource sentence: She is a talented musician with a beautiful voice.\n\u5979\u662f\u4e00\u4f4d\u62e5\u6709\u7f8e\u5999\u58f0\u97f3\u7684\u624d"} +{"id": "2005710", "video_name": "dd67ae17-77e5-5214-b125-dc8f0e079ed0", "text": "\u660e\u5b89\u6709\u7740\u957f\u957f\u7684\u9ed1\u53d1\u548c\u660e\u4eae\u7684\u773c\u775b\uff0c\u6765\u81ea\u8d8a\u5357\u3002\u5979\u603b\u662f\u70ed\u60c5\u4e13\u4e1a\uff0c\u6df1\u53d7\u5b66\u751f\u559c\u7231\uff0c\u540c\u4e8b"} +{"id": "1003649", "video_name": "433323ff-a4f7-53cc-bcb0-312cf5fc66b7", "text": "\u4e4c\u514b\u5170\u519b\u961f\u4fdd\u62a4\u81ea\u5df1\u514d\u53d7\u4fc4\u7f57\u65af\u5360\u9886\u8005\u7684\u4fb5\u5bb3\u3002"} +{"id": "3005802", "video_name": "f498ffe3-05d7-522e-b5ee-aa5ee2bfb3dc", "text": "\u60f3\u8c61\u672a\u6765\u4e3b\u4e49\u865a\u62df\u73b0\u5b9e\u8d2d\u7269\u4f53\u9a8c\uff0c\u4e3a\u670d\u88c5\u96f6\u552e\u5546\u63d0\u4f9b\u3002"} +{"id": "4003641", "video_name": "860195dc-7779-5562-a2f2-30738be9035b", "text": "\u751f\u6210\u4e00\u4e2a\u6b22\u4e50\u7684\u63d2\u56fe\uff0c\u753b\u9762\u4e0a\u6709\u6b22\u547c\u7684\u5b69\u5b50\u3001\u6c14\u7403\u548c\u8282\u65e5\u7684\u70ed\u95f9\u666f\u8c61\uff0c\u5f53Casey\u5230\u8fbe\u65f6\u3002"} +{"id": "8002034", "video_name": "41758d15-0a54-5ceb-a44f-212da9148c4d", "text": "\u8981\u771f\u6b63\u7406\u89e3\u8fd9\u573a\u6301\u4e45\u51b2\u7a81\u7684\u6839\u6e90\uff0c\u6211\u4eec\u5fc5\u987b\u6df1\u5165\u6316\u6398\u5386\u53f2\u7684\u8bb0\u5f55\u3002"} +{"id": "7002015", "video_name": "ecf00fa1-610b-5d01-9865-7a4ab8777d2d", "text": "\u516c\u53f8\u5927\u697c\u91cc\u7684\u4fa6\u63a2\u8c6a\u745f\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u5947\u602a\u7684\u5706\u5f62\u7b26\u53f7\u3002\u8d5b\u535a\u670b\u514b\u30021990\u5e74\u4ee3\u7535\u5f71\u98ce"} +{"id": "7002261", "video_name": "0f2c3fb6-7740-5be1-a2e1-00256d8b6719", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u88ab\u5e7f\u9614\u7eff\u8349\u5730\u5305\u56f4\u7684\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u519c\u592b\u5f17\u96f7\u5fb7\u3002"} +{"id": "1003439", "video_name": "3fac6119-abe3-520d-82b9-f42bf5ce5e28", "text": "\u57281518\u5e74\u7684\u6cd5\u56fd\u65af\u7279\u62c9\u65af\u5821\u5c0f\u6751\u5e84\u91cc\uff0c\u53ea\u6709\u4e00\u4f4d\u5973\u6027\u72c2\u70ed\u5730\u3001\u5f3a\u70c8\u5730\u8df3\u821e\u3002"} +{"id": "1005899", "video_name": "6c792984-8dcf-51ae-8c41-e5a3fc7f8a0b", "text": "\u5bfa\u5e99\u91cc\u7684\u51a5\u60f3\uff0c\u5176\u5185\u90e8\u4f1a\u5b9a\u671f\u66f4\u6539\u3002"} +{"id": "8003969", "video_name": "3b126c9d-f652-5709-8dde-b9e3d6e0cac8", "text": "\u73bb\u7483\u788e\u7247\u548c\u8150\u70c2\u7684\u5bb6\u5177\u6563\u843d\u5728\u5730\u677f\u4e0a\u3002"} +{"id": "8003795", "video_name": "07c9d4d7-e26f-5e33-bf45-2058a386806d", "text": "\u5b69\u5b50\u4eec\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u89c2\u770b\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0006388", "video_name": "2ba6dcaf-b2e5-50b3-8716-511a7a4c8137", "text": "\u5728\u4e00\u4e2a\u5947\u5e7b\u7684\u8352\u91ce\u91cc\uff0c\u4e00\u4f4d\u8ff7\u4eba\u7684\u5723\u8bde\u7cbe\u7075\u5531\u6b4c\u3002"} +{"id": "0004007", "video_name": "017f027a-0511-5a0b-83d8-af0620f8b535", "text": "\u9762\u5bf9\u697c\u5c42\u7684\u6cea\u6c344K"} +{"id": "2007961", "video_name": "e83ccaf3-8703-5dbb-8f0b-1b4223f15a33", "text": "\u7537\u4eba\u7ad9\u5728\u4e00\u4e2a\u590f\u65e5\u7684\u4e66\u5e97\u5916\u9762\u3002"} +{"id": "0006840", "video_name": "3407355e-010c-51ac-af62-e9cbb539e207", "text": "\u9ed1\u888d\u4eba\u7a7f\u8fc7\u9ed1\u6697\u7684\u5730\u7262\u8d70\u5411\u4e00\u76cf\u7ea2\u706f\u3002"} +{"id": "3004183", "video_name": "0205e56f-51aa-57b1-893d-4a4a33c59c10", "text": "\u9762\u5411\u5929\u7a7a\u7684\u591c\u665a\u8f6e\u5ed3 STAY FAITHFUL\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "1003104", "video_name": "392bba62-dfb3-5549-a8ae-77566b14af44", "text": "\u5728\u9713\u8679\u98ce\u683c\u7684\u591c\u5e97\u91cc\uff0c\u51e0\u4f4d\u8f7b\u677e\u81ea\u5728\u7684\u821e\u8005\u9080\u8bf7\u60a8\u6765\u559d\u4e00\u676f\u8c6a\u534e\u9e21\u5c3e\u9152\u3002"} +{"id": "3004612", "video_name": "9f040c76-ce85-5f00-b814-98fe78142066", "text": "\u65e0\u5fe7\u65e0\u8651\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u540e\u6ed1\u8f6e\u6e9c\u51b0\u65f6\u8df3\u821e\u3002\n\nSource sentence: The sun sets behind the mountains, casting a warm glow over the valley. \n\n\u592a\u9633"} +{"id": "3005698", "video_name": "13e02291-2db1-5b81-a16a-cdef1432c2c3", "text": "\u6709\u4e00\u6b21\uff0c\u68ee\u6797\u4e2d\u4f4f\u7740\u4e00\u53ea\u540d\u53eb\u7f57\u514b\u897f\u7684\u5c0f\u72d0\u72f8\u3002"} +{"id": "6002393", "video_name": "d9600af3-ebcf-5838-b0fe-00bea5e12f21", "text": "\u6751\u5e84\u4e3a\u4e86\u5e86\u795d\u8282\u65e5\u805a\u5728\u4e00\u8d77\u3002\u8428\u59c6\u548c\u4ed6\u7684\u7956\u7236\u8df3\u821e\uff0c\u4eab\u53d7\u7740\u8fd9\u4efd\u559c\u5e86\u3002"} +{"id": "2007369", "video_name": "398f5bf3-1c0d-5cc0-b013-3ceacf932455", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5728\u6cb3\u9762\u4e0a\u884c\u8d70\uff0c\u4e00\u76f4\u6ce8\u89c6\u7740\u84dd\u5929\u3002"} +{"id": "8001105", "video_name": "2c00cf47-9c43-51e1-b854-09993f761596", "text": "\u7194\u5316\u7684\u6db2\u4f53\u6d41\u5165\u6c34\u6ef4\u5e95\u90e8\uff1b\u94f6\u8272\u6db2\u4f53\uff1b\u5728\u5730\u677f\u4e0a\u6d41\u6dcc\u3002"} +{"id": "8002421", "video_name": "92547cc6-4f86-5f6b-b229-2da3070a6179", "text": "\u82f1\u6587\u53e5\u5b50\uff1ahero traveling through the fire and the flames\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1\u96c4\u7a7f\u8fc7\u70c8\u706b\u548c\u706b\u7130\u65c5\u884c"} +{"id": "6004440", "video_name": "b053e1e6-7cc7-50e1-9137-28546e775a25", "text": "\u6211\u7231\u4f60 (\u73b0\u4ee3\u5b57\u4f53)\u3002\u4ece\u8fd1\u8ddd\u79bb\u7684\u5de8\u5927\u5170\u82b1\u82b1\u74e3\u98de\u821e\u4e2d\u6e05\u6670\u5730\u5448\u73b0\u51fa\u6765\u3002"} +{"id": "4002625", "video_name": "4fa951f3-a55d-5b33-b82e-1529738b2686", "text": "\u6f5c\u8247\u5361\u8f66\u6b63\u76f4\u5411\u6211\u4eec\u79fb\u52a8\uff0c\u524d\u706f\u7a7f\u8fc7\u70df\u96fe\u5f3a\u70c8\u7167\u5c04\u3002"} +{"id": "6004875", "video_name": "e4471ba0-54c2-5fe7-bfa4-497e612e0862", "text": "\u516c\u56ed\u91cc\u76db\u5f00\u7684\u73ab\u7470\u3002\u5b8f\u89c2\u955c\u5934\u3002\u65f6\u95f4\u5ef6\u8fdf\u3002"} +{"id": "4002775", "video_name": "ecb91707-a351-5554-ad71-f834ccdaa840", "text": "\u65b0\u768450\u7f8e\u5143\u949e\u7968\u53d8\u6210\u50cf\u7403\u4e00\u6837\u76b1\u5df4\u5df4\u7684\u949e\u7968\u7684\u8f6c\u53d8\u3002"} +{"id": "3005571", "video_name": "3b211848-bcd9-5640-bb33-02975f75e78b", "text": "\u5728\u5c71\u4e0a\u7684\u57ce\u5821\u91cc\u62cd\u7684\u7f8e\u4e3d\u5a5a\u793c\u60c5\u4fa3\u7167\u7247\u3002"} +{"id": "0005174", "video_name": "160ccd58-4b97-5d35-ba6d-06d126b9373f", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u96f7\u4e91\u7684\u591c\u665a\uff0c\u6a59\u8272\u548c\u84dd\u8272\u7684\u8272\u8c03\uff0c\u5947\u602a\u7684\u4e8b\u60c5\uff0c\u4e00\u4e2a\u6234\u7740\u8033\u673a\u7ad9\u7740\u7684\u4eba\u3002"} +{"id": "6004645", "video_name": "241d4156-877d-5dbf-9645-1c5ac3bb8cdf", "text": "\u6770\u514b\u00b7\u65af\u6d3e\u7f57\u7528\u6717\u59c6\u9152\u8c03\u5236\u9e21\u5c3e\u9152\u3002"} +{"id": "3006266", "video_name": "24cb4105-6852-5df6-9e73-f7b0122f315c", "text": "\u767d\u676f\u5b50\u91cc\u9762\u653e\u7740\u5de7\u514b\u529b\u70b8\u5f39\uff0c\u52a0\u5165\u725b\u5976\u6405\u62cc\u3002"} +{"id": "6003748", "video_name": "a53bbce0-1103-5796-bd03-dbb6a7dffa9e", "text": "\u4e00\u4f4d\u7f8e\u4eba\u9c7c\u548c\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "6004803", "video_name": "6d27b609-b17a-5765-a9fa-dc8cdae86ca6", "text": "\u6c99\u5c14\u666e\uff0c\u7a7a\u4e2d\u955c\u5934\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u65e0\u4eba\u673a\uff0c\u7535\u5f71\u5f0f\uff0c\u9510\u5229\uff0c\u5bbd\u94f6\u5e55\uff0c\u6697\u8272\u5929\u7a7a\uff0c\u5317\u6781\u5149\u821e"} +{"id": "3005793", "video_name": "992bcd85-ee51-5df4-b768-81acbd19bb8e", "text": "\u5154\u5b50\u7ed9\u4e86\u72d7\u4e00\u6839\u9aa8\u5934\u3002"} +{"id": "2007125", "video_name": "b8f42aa2-f2c4-5ab2-91a3-597c261e6741", "text": "\u4e00\u4f4d\u614e\u601d\u660e\u8fa8\u768435\u5c81\u5973\u6027"} +{"id": "8002046", "video_name": "d2994dae-a6f9-50bb-b479-07ba610a7eac", "text": "\u80e1\u5b50\u62c9\u78b4\u7684\u5e05\u6c14\u4e08\u592b\u62ff\u7740\u624b\u673a\u5750\u5728\u6c99\u53d1\u4e0a\u5fd9\u788c\u3002"} +{"id": "1004306", "video_name": "4f9103a0-3457-58e6-acdf-52aa01472cc9", "text": "\u6df1\u5165\u8ff7\u5bab\u822c\u7684\u955c\u5b50\u4e2d\uff0c\u4f34\u968f\u7740\u80cc\u666f\u97f3\u4e50\u300a\u5c0f\u5fc3\u7a7f\u8fc7\u90c1\u91d1\u9999\u300b\u3002"} +{"id": "1006666", "video_name": "7a13e1e0-3be8-5a43-85db-c53decdb88c6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u6a21\u7279\u5c55\u793a\u51ac\u5b63\u670d\u88c5\u573a\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006501", "video_name": "76ff1b10-36e4-5500-848d-2aca0d035572", "text": "\u5728\u6838\u907f\u96be\u6240\u91cc\u6f14\u594f\u7684\u6447\u6eda\u4e50\u961f\uff0c\u9762\u5bf9\u7740\u5e9e\u5927\u7684\u89c2\u4f17\u7fa4\u3002\u706b\u7130\u3001\u626c\u58f0\u5668\u3001\u5409\u4ed6"} +{"id": "3004530", "video_name": "82dc8597-8924-5c58-acae-07cb750dca25", "text": "\u4e00\u53ea\u72d7\u5750\u5728\u60ac\u5d16\u4e0a\uff0c\u80cc\u666f\u662f\u65e5\u843d\u3002"} +{"id": "5001108", "video_name": "e5ae19d2-23e2-5d05-9759-0686038c2f44", "text": "\u4e00\u4f4d\u6ee1\u610f\u7684\u987e\u5ba2\u7b11\u5bb9\u6ee1\u9762\uff0c\u88ab\u4e30\u5bcc\u591a\u5f69\u7684\u989c\u8272\u6240\u5305\u56f4\u3002"} +{"id": "8002714", "video_name": "9c10c0b9-7145-5a40-9af1-81666541f15b", "text": "\u665a\u4e0a\u6709\u706f\u5149\u7684\u9ed1\u6697\u821e\u53f0\u3002"} +{"id": "8002752", "video_name": "64dd953d-ac31-50f7-9e9a-d3e5fbbfaea1", "text": "\u8001\u5e08\u5728\u7ed9\u5b69\u5b50\u4eec\u8bfb\u5b8c\u4e66\u540e\u8df3\u821e\u3002"} +{"id": "5001557", "video_name": "5a81c64c-67dc-5a48-bd1a-7d5dd7f4a185", "text": "\u4e00\u5bb6\u53ef\u7231\u7684\u5c0f\u8682\u8681\u5728\u96e8\u4e2d\u805a\u96c6\u5728\u4e00\u628a\u4f1e\u4e0b\u3002"} +{"id": "2007685", "video_name": "eab65322-38eb-57d5-a73d-85051fbe3b3a", "text": "\u4e0e10\u4eba\u6216\u66f4\u591a\u4eba\u5408\u4f5c\uff0c\u64ad\u79cd\u548c\u57f9\u80b2\u77e5\u8bc6\u4e4b\u79cd\u5b50\u3002"} +{"id": "3005714", "video_name": "8d90e061-6e4a-59d2-9033-37488da42d8a", "text": "2D\u52a8\u6f2b\u98ce\u683c\u7684\u5fcd\u8005\u732b\u780d\u5012\u7af9\u5b50\u830e\u3002"} +{"id": "1004798", "video_name": "58b4c95c-3d11-5a5a-8a8c-434cfb96c95e", "text": "\u5929\u7a7a\u5c0f\u5b50\u548c\u95ea\u7535\u8389\u8389\u7684\u5192\u9669"} +{"id": "1005945", "video_name": "6d3ab94c-3720-525a-a944-c8d8c73db43e", "text": "\u6c7d\u8f66\u8f66\u6807\u5728\u9ec4\u91d1\u65f6\u6bb5\u95ea\u95ea\u53d1\u5149\uff0c\u5706\u5f62\u4e91\u53f0\u62cd\u6444\u3002"} +{"id": "4003400", "video_name": "954479df-89ce-5dd9-a521-ed45872fe3a9", "text": "\u53f2\u83b1\u59c6\u6876 \u9644\u4ef61"} +{"id": "1006860", "video_name": "7d453804-ffad-58db-8be5-bead8d1aa79b", "text": "\u7537\u4eba\u73a9Talking and Friends\u3002"} +{"id": "7002904", "video_name": "e01ba5fb-4b93-52e2-b3b5-5b19e176f3e9", "text": "\u8bb8\u591a\u9c9c\u82b1\u5728\u9633\u5149\u4e0b\u7efd\u653e\u7684\u82b1\u56ed"} +{"id": "8001839", "video_name": "ae7b7555-719f-537c-b990-c4dd1366b9d1", "text": "\u4ea7\u751f\u4e00\u4e2a\u8be6\u7ec6\u800c\u6c89\u6d78\u5f0f\u7684\u6218\u4e89\u573a\u666f\uff0c\u8bbe\u7f6e\u5728\u865a\u6784\u7684\u5730\u5f62\u4e2d\u3002\u63cf\u8ff0\u5730\u5f62\u3001\u5929\u6c14\u6761\u4ef6\u548c\u6574\u4f53\u6c1b\u56f4\u3002\u5305\u62ec"} +{"id": "3006017", "video_name": "d72492b1-5ae9-5296-a59e-243fc0827792", "text": "\u4e09\u79cd\u8bed\u8a00\u7684\u5355\u8bcd\uff1a\u6cd5\u8bed\u3001\u82f1\u8bed\u548c\u571f\u8033\u5176\u8bed\uff0c\u80cc\u666f\u662f\u4e91\u548c\u5929\u7a7a\u3002"} +{"id": "1004341", "video_name": "501bd7f9-99a9-5834-a05a-ff3d9a4bf0e0", "text": "\u4e00\u4e2a\u5173\u4e8e\u5438\u70df\u7684\u7537\u5b69\u548c\u5973\u5b69\u57281970\u5e74\u4ee3\u7684\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "6004732", "video_name": "a74a01f2-77a3-51fe-a136-b9ce5b757179", "text": "\u5c55\u793a\u4ed6\u4eec\u6cbf\u7740\u4e00\u6761\u98ce\u666f\u5982\u753b\u7684\u5c0f\u5f84\u8d70\uff0c\u4ee5\u5409\u535c\u529b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1006606", "video_name": "79066268-d634-57a7-a4d7-e13b76754221", "text": "\u9713\u8679\u6c99\u6f20\u5e7b\u666f\uff1a\u521b\u9020\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u6c99\u6f20\u666f\u89c2\uff0c\u5145\u6ee1\u7740\u9713\u8679\u4ed9\u4eba\u638c\u3001\u5e7b\u5f71\u548c\u6f2b"} +{"id": "0005955", "video_name": "23e4e4b4-5ccf-5458-bf8d-9b7cefcfc069", "text": "\u56fd\u738b\u4e3a\u9e66\u9e49\u4efb\u547d\u4e86\u4e00\u540d\u8bad\u7ec3\u5e08\u6559\u5b83\u8bf4\u8bdd\u3002\u5f88\u591a\u5929\u8fc7\u53bb\u4e86\uff0c\u4f46\u9e66\u9e49\u4ecd\u7136\u4e0d\u8bf4\u8bdd\u3002"} +{"id": "3004800", "video_name": "c79f4e32-9cee-5ede-80c6-2cc15cbffe32", "text": "\u7ea2\u65d7\u4e0a\u98d8\u626c\u7740\u65b0\u6708\u548c\u661f\u661f\uff0c\u5728\u96fe\u5929\u4e2d\u683c\u5916\u663e\u773c\u3002"} +{"id": "8003925", "video_name": "e6342748-86f3-5cf5-872b-13faa7c4692b", "text": "\u79fb\u52a8\u5934\u90e8\u8ba9\u773c\u775b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "3006384", "video_name": "137bb5c8-5864-5fd0-8f3b-90f5f8ba0392", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u798f\u79d1\u6446\u7684\u5de5\u4f5c\u539f\u7406\u3002"} +{"id": "4004122", "video_name": "4405aced-199f-53c7-ad4f-1a073fcab5c4", "text": "\u4e00\u6392\u7f62\u5de5\u7684WGA\u7f16\u5267\uff0c\u4ed6\u4eec\u7684\u8138\u5e9e\u5145\u6ee1\u7edd\u671b\u548c\u51b3\u5fc3\uff0c\u5728\u6297\u8bae\u961f\u4f0d\u4e2d\u6e38\u884c\u3002"} +{"id": "8001237", "video_name": "51fc997d-277d-59fd-a5bc-0121f63b4946", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u5ba2\u5385\u73a9\u6728\u5757\u3002"} +{"id": "2004479", "video_name": "1f9db82c-7441-5ad0-b53c-8295c6932537", "text": "\u9632\u706b\u5899\u548c\u547d\u4ee4\u63d0\u793a\u7b26\u5c06\u81ea\u52a8\u6267\u884c\u4e00\u4e2a\u79f0\u4e3a\u811a\u672c\u7684\u5355\u4e2a\u547d\u4ee4\u4e2d\u7684\u811a\u672c\uff0c\u5e76\u5c06\u5176\u7528\u4f5c\u3002"} +{"id": "7002793", "video_name": "8a742386-c4cb-522c-a7b9-35aa45056488", "text": "\u5728\u8fd9\u4e2a\u6c89\u6ca1\u7684\u4e16\u754c\u91cc\uff0c\u95ea\u5149\u7684\u73ca\u745a\u7901\u6ee1\u662f\u6e38\u52a8\u7684\u9c7c\u7fa4\uff0c\u88ab\u6d41\u52a8\u7684\u6cb3\u6d41\u548c\u8302\u76db\u7684"} +{"id": "0005682", "video_name": "1f301aa7-5a4d-5a06-8620-e97baef72e37", "text": "Translation: \u5431\u5431\u4f5c\u54cd\u7684\u5730\u677f\uff0c\u8d70\u5eca\u91cc\u7684\u811a\u6b65\u58f0\u3002"} +{"id": "0004573", "video_name": "0b626b7a-397a-553d-bfbf-1ba5afbd32a7", "text": "\u53ef\u7231\u7684\u5973\u5b69\u5728\u5236\u4f5c\u51cf\u8102\u9910\uff0c\u5148\u5207\u9ec4\u74dc\uff0c\u7136\u540e\u52a0\u5165\u867e\u4ec1\u6405\u62cc\u3002\u4fe1\u606f\uff1a\u597d\u5403\u3002"} +{"id": "7002068", "video_name": "736f6aee-dbf0-5ef6-8f24-1ee8172166c7", "text": "\u751f\u6210\u4e00\u4e2a\u6709\u8eab\u4f53\u3001\u624b\u81c2\u548c\u817f\u8dd1\u6b65\u7684\u5357\u74dc\u89c6\u9891\u3002"} +{"id": "4002490", "video_name": "001fb1a6-587e-58e8-ba24-ef691cd307cd", "text": "\u5728\u79d8\u5bc6\u5730\u4e0b\u5ba4\u91cc\u5199\u4e00\u4e2a\u5173\u4e8e\u79d8\u5bc6\u60c5\u62a5\u7684\u5ba1\u8baf\u6545\u4e8b\uff0c\u88ab\u5ba1\u8baf\u8005\u5f88\u751f\u6c14\u5e76\u5177\u6709\u653b\u51fb\u6027\u3002"} +{"id": "1003717", "video_name": "44a2975d-5e85-5bfa-8d8e-18e980adbfdc", "text": "\u4ed6\u4eec\u7684\u94f2\u5b50\u78b0\u5230\u4e86\u4e00\u4e2a\u786c\u7269\u4f53\u3002\u5f53\u4ed6\u4eec\u6316\u6398\u51fa\u4e00\u4e2a\u5e26\u6709\u7cbe\u7f8e\u96d5\u523b\u548c\u7b26\u53f7\u7684\u5927\u578b\u534e\u4e3d\u7bb1\u5b50\u65f6\uff0c\u4ed6\u4eec"} +{"id": "1004821", "video_name": "59141513-493f-5bb3-999f-34d5ef2acaf8", "text": "\u5728\u4e00\u95f4\u5927\u5b66\u6559\u5ba4\u91cc\u5750\u7740\u4e00\u4f4d\u957f\u7740\u9ed1\u8272\u957f\u53d1\u7684\u5973\u5b69\u3002"} +{"id": "5001338", "video_name": "dda4986b-8451-59cf-a162-bdbfb1e58911", "text": "\u4e00\u4e2a\u62ff\u7740\u673a\u67aa\u7684\u519b\u4eba\u5411\u524d\u8d70\uff0c\u4ed6\u8eab\u540e\u662f\u88c5\u5907\u548c\u5176\u4ed6\u519b\u4eba\uff0c\u800c\u4ed6\u8eab\u540e\u662f\u706b\u7130\u548c\u718a\u718a\u706b\u82b1\u3002"} +{"id": "2003011", "video_name": "7e52c68e-7207-52eb-a490-530d0eb98524", "text": "\u4e09\u4e2a\u8001\u4eba\u56f4\u7740\u4e00\u5f20\u5927\u684c\u5b50\u804a\u5929\u3002"} +{"id": "0006642", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "\u673a\u5668\u4eba\u5750\u5728\u738b\u5ea7\u4e0a\uff0c\u5c55\u73b0\u51fa\u7edf\u6cbb\u548c\u5c0a\u656c\u7684\u6c14\u52bf\u3002"} +{"id": "1005590", "video_name": "66d64a5c-c8c1-5c61-a475-7c336ef1e68c", "text": "\u4e00\u4e2a\u4eba\u70ed\u60c5\u5730\u5728\u624b\u673a\u4e0a\u9605\u8bfb\u8bc4\u8bba\u548c\u8bc4\u5206\u7684\u573a\u666f\n\nSource sentence: The restaurant is famous for its spicy Sichuan cuisine.\n\u8fd9\u5bb6\u9910\u5385\u4ee5\u5176\u8fa3\u5473\u56db"} +{"id": "4004342", "video_name": "a0b60a26-60f8-5ffa-868f-fe9bfdc27fa9", "text": "\u4e00\u53ea\u8df3\u821e\u7684\u6d63\u718a\u7684\u7535\u5f71\u955c\u5934"} +{"id": "0005562", "video_name": "1cf65fcf-ea6b-5e88-9a19-707f35373059", "text": "\u7ea2\u8840\u7403\u548c\u767d\u8840\u7403\u5728\u8840\u6d46\u4e2d\u7684\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "7003743", "video_name": "91ff0046-cd73-5193-8239-855a48e75e66", "text": "\u9f99\u6709\u7740\u5bbd\u5927\u7684\u7fc5\u8180\uff0c\u632f\u7fc5\u98de\u7fd4\uff0c\u5212\u7834\u7a7a\u6c14\uff0c\u5f62\u6210\u52a8\u6001\u753b\u9762\u3002"} +{"id": "8002242", "video_name": "3086d9d1-b884-596f-a61c-a7be20062942", "text": "\u4e00\u5bf9\u8863\u670d\u7834\u70c2\u7684\u592b\u5987"} +{"id": "7002045", "video_name": "071ead1d-77f2-5329-89dc-c12f2c9121a5", "text": "\u4ed6\u62a5\u544a\u8bf4\uff0c\u5728\u98de\u8d8a\u5317\u6781\u65f6"} +{"id": "6002546", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "\u7279\u5199\u955c\u5934\uff0c\u6e05\u6670\u53ef\u89c1\u7684\u9e45\u6bdb\u822c\u7684\u96ea\u82b1\u7f13\u7f13\u843d\u4e0b\uff0c\u84dd\u5929\u767d\u4e91\u4e3a\u80cc\u666f\uff0c\u66b4\u98ce"} +{"id": "2005303", "video_name": "3462d793-9b8b-568a-ba99-f1d7e1bdcfd3", "text": "\u4e00\u4f4d\u957f\u7740\u767d\u8272\u80e1\u987b\u3001\u6709\u963f\u62c9\u4f2f\u7279\u5f81\u3001\u7a7f\u7740\u963f\u62c9\u4f2f\u670d\u88c5\u3001\u9a91\u7740\u9a6c\u7684\u7537\u4eba\u3002"} +{"id": "7002198", "video_name": "0d857fa9-666e-56d3-bfd2-2e2c960e446e", "text": "\u5236\u4f5c\u4e00\u4e2a\u7a7f\u7740ghibli\u98ce\u683c\u8863\u670d\u7684\u5973\u5b69\u7ad9\u5728\u68ee\u6797\u4e2d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003176", "video_name": "67afaadc-c92c-5313-baa5-f2e68857fda2", "text": "\u8fdb\u5165\u4e00\u4e2a\u795e\u79d8\u3001\u5b89\u9759\u3001\u5947\u602a\u3001\u60b2\u4f24\u7684\u95e8\u3002"} +{"id": "5001472", "video_name": "628c5a6e-2886-5644-b9bd-b39625e57272", "text": "\u4e00\u53ea\u6050\u9f99\u5728\u7eff\u53f6\u95f4\u5486\u54ee\u7740\uff0c\u4ece\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u8d70\u51fa\u6765\uff0c\u70ed\u5e26\u96e8\u6797\uff0c\u690d\u7269\uff0c"} +{"id": "0003382", "video_name": "3c9c2127-0a33-5fac-99f4-41c89bab297a", "text": "\u6c60\u5858\u91cc\u7684\u9c7c\u7684\u77ed\u89c6\u9891"} +{"id": "6002184", "video_name": "e0aab65c-e6f8-5471-89e0-c27ab79c49fa", "text": "17\u4e16\u7eaa\u7684\u79d1\u5b66\u5bb6\u4eec\u5728\u5b9e\u9a8c\u5ba4\u91cc\u7528\u70e7\u74f6\u716e\u6db2\u4f53\uff0c\u7814\u7a76\u53ef\u53ef\u8c46\u7684\u5316\u5b66\u80cc\u666f\u3002"} +{"id": "2006011", "video_name": "9d97dec6-3cd7-5d46-9751-1d4142776cc3", "text": "1933\u5e74\u7684\u7535\u5f71\u573a\u666f\uff0c\u4e00\u4f4d\u8eab\u6750\u6027\u611f\u7684\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u4e00\u4ef6\u6781\u77ed\u7684\u7ea2\u8272\u88d9\u5b50\u548c\u84dd\u8272\u7fbd\u6bdb\u5927"} +{"id": "0005618", "video_name": "1e2fb26e-2386-5292-9b0e-08086f6af103", "text": "\u7279\u8272\u662f\u4e00\u4e2a\u5e26\u6709\u8d27\u5e01\u7b26\u53f7\u7684\u5730\u7403\u4eea\uff0c\u4ee3\u8868\u5168\u7403\u89c6\u89d2\u3002"} +{"id": "3006736", "video_name": "852b3cb0-e01a-5a42-9337-820466c8a7bf", "text": "\u7537\u5b69\u63e1\u624b\u3002"} +{"id": "1003423", "video_name": "3f390183-dbe0-56d4-847b-1359fdd75d02", "text": "2058\u5e74\uff0c\u4e00\u4e2a\u5b69\u5b50\u9a7e\u9a76\u7740\u4e00\u8f86\u7279\u65af\u62c9\u98de\u884c\u6c7d\u8f66\u3002"} +{"id": "2003554", "video_name": "26f75597-fbf0-50c8-9939-c7df9764bb6a", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u9f13\u638c\u5e76\u7ad6\u8d77\u5927\u62c7\u6307\u3002"} +{"id": "7004879", "video_name": "ceed2a29-32ab-5d91-a55b-fa1c63aab63f", "text": "\u7528\u6237\u548c\u4eba\u5de5\u667a\u80fd\u901a\u8fc7\u754c\u9762\u5904\u7406\u5927\u91cf\u6570\u636e\u6d41\u3002"} +{"id": "8003327", "video_name": "505c2e39-946a-5605-9b7b-02ff74602e62", "text": "\u62ab\u5934\u58eb\u5728\u7a7f\u7740\u83b4\u82e3\u670d\u88c5\u7684\u60c5\u51b5\u4e0b\u5728\u8c22\u4e9a\u7403\u573a\u6f14\u51fa\u3002"} +{"id": "5001476", "video_name": "9f8758e4-83e4-5f76-b516-b4c6eee89235", "text": "\u56fd\u738b\u548c\u738b\u5b50\u7ad9\u5728\u5730\u9762\u4e0a\uff0c\u9762\u5bf9\u7740\u6211\u4eec\u3002\u57ce\u5821\u5728\u80cc\u666f\u4e2d\u3002\u4e00\u4e2a\u7537\u4eba\u8dea\u5728\u5730\u4e0a\uff0c\u4ed6\u662f\u53db\u5f92\u3002\u8bb8\u591a\u4eba\u805a"} +{"id": "7002562", "video_name": "f6519689-c78b-5a0b-8dc0-34da4448f17c", "text": "\u795e\u79d8\u7684\u53e4\u8001\u4e2d\u56fd\u6751\u5e84\uff0c\u6709\u8bb8\u591a\u7eff\u8272\u548c\u7011\u5e03\uff0c\u4ead\u5b50\uff0c\u9ed1\u767d\u58a8\u8ff9\u5b57\u753b\uff0c\u6770\u4f5c\uff0c4k\u9ad8\u6e05"} +{"id": "3006888", "video_name": "e734fb0d-30af-5200-8ef9-724c0aa00632", "text": "\u5c55\u793a\u4e00\u6bb5\u6469\u6258\u8f66\u8fdb\u5165\u5f2f\u9053\u7684\u52a8\u753b\u3002"} +{"id": "0006355", "video_name": "2b212d84-fc9a-5a6f-9a67-3ada214f127d", "text": "Source sentence: 40\u5e74\u4ee3\u9f50\u67cf\u6797\u98de\u8247\u4e0a\u7684\u72c2\u6b22\u573a\u666f"} +{"id": "0003939", "video_name": "002b3a32-cc97-5b03-b3eb-3a72713ed0b0", "text": "\u4f60\u53ef\u4ee5\u8ba9\u706b\u8f66\u66f4\u771f\u5b9e\uff0c\u4ee5\u8fbe\u5230\u66f4\u597d\u7684\u6e05\u6670\u5ea6\u5417\uff1f"} +{"id": "6004589", "video_name": "14712ebc-7dcf-5784-9643-599ba554c5ad", "text": "\u8428\u5c14\u6c99\u00b7\u7f57\u5357\u662f\u4e00\u4e2a\u7ad9\u5728\u98ce\u666f\u79c0\u4e3d\u7684\u98ce\u666f\u4e2d\u7684\u7cbe\u7075\u6218\u58eb\u516c\u4e3b\u3002"} +{"id": "6004213", "video_name": "51acae3d-42d7-5ab4-a5e8-f357a1039197", "text": "\u559d\u4e00\u4e2a\u9a6c\u6876\u5927\u5c0f\u7684\u82cf\u6253\u6c34"} +{"id": "4003497", "video_name": "680d124c-1b14-5228-b1b6-3faa471bee5a", "text": "\u971c\u4e4b\u54c0\u4f24\u8d44\u6599\u7247\uff0c\u5317\u98ce\u82d4\u539f\u573a\u666f\u3002"} +{"id": "2003133", "video_name": "1052115e-f679-5c3d-ac90-f7429c8a840e", "text": "\u6cf0\u8fea\u718a\u626e\u6f14\u533b\u751f\uff0c\u624b\u62ff\u6025\u6551\u5305\u5954\u8dd1\u5728\u6d77\u5c9b\u4e0a\u3002"} +{"id": "2005178", "video_name": "d4c77e95-1d85-5d82-9ef0-9360df596579", "text": "3D \u5f71\u50cf\u4e2d\uff0cRiya \u5174\u594b\u5730\u8fdb\u5165\u4e86\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u8ff7\u4eba\u7684\u9b54\u6cd5\u5b66\u6821\uff0c\u624b\u6301\u9b54\u6756\uff0c\u8138\u4e0a"} +{"id": "8001593", "video_name": "335af684-50c4-54a0-8e50-27473cbb325b", "text": "\u6fb3\u5927\u5229\u4e9a\u7ea2\u8272\u7267\u725b\u72ac\u5728\u68ee\u6797\u91cc\u6563\u6b65\uff0c\u4e3a\u4e00\u9897\u7403\u800c\u5954\u8dd1\uff0c\u5448\u73b01970\u5e74\u4ee3\u7684\u9897\u7c92"} +{"id": "2004873", "video_name": "8d5799b8-ce0b-55da-bef4-d49b03bdb617", "text": "\u798f\u5c14\u6469\u65af\u6234\u7740\u5e3d\u5b50\u5728\u73b0\u4ee3\u57ce\u5e02\u7684\u697c\u4e0a\u62bd\u70df\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005264", "video_name": "02b74bad-187f-5169-9442-f20b5a27a227", "text": "\u63d0\u8499\u4e0e\u666e\u5df4\u73b0\u4ee3\u6781\u7b80\u4e3b\u9898\u6d77\u62a5\u3002"} +{"id": "1006669", "video_name": "7a1f2e6a-b282-56bd-a51e-c789fb418ba2", "text": "\u6e90\u53e5\uff1a\u80cc\u666f\u8bbe\u5b9a\u5728\u53e4\u5370\u5ea6\uff0c\u4e00\u7fa4\u4eba\u5728\u8fdb\u884c\u4e00\u573a\u4e89\u8bba\uff0c\u4ee54K\u7684\u753b\u8d28\u5448\u73b0\u3002"} +{"id": "7002680", "video_name": "6b5b885c-4922-5d81-a0ab-da01bd3bc5a9", "text": "\u5251\u58eb\u4eec\u5728\u6218\u573a\u4e0a\u9759\u6b62\u4e0d\u52a8\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u7535\u5f71\u5f0f\u955c\u5934\u3002"} +{"id": "4004273", "video_name": "0988759b-a47d-56b3-b83b-d3cf6ae3ea3a", "text": "\u591a\u62c9\u63a2\u9669\u5bb6\u773c\u775b\u95ea\u70c1\u7740\u5f3a\u5927\u7684\u529b\u91cf\uff0c\u5728\u5979\u8eab\u540e\uff0c\u6240\u6709\u7684\u65e0\u9650\u5b9d\u77f3\u5728\u5706\u5708\u822c\u65cb\u8f6c\u3002"} +{"id": "1004664", "video_name": "56b65c29-3046-5ba2-bcf7-37bae607f317", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u68ee\u6797\u91cc\u54ed\u6ce3\u3002"} +{"id": "3003127", "video_name": "6fd55ba1-8a65-59c4-9afc-fcd8eed3d96b", "text": "\u5976\u5976\u5e26\u6211\u5988\u5988\u53bb\u53a8\u623f\u653e\u6750\u6599\u3002"} +{"id": "0006261", "video_name": "2992d03b-b141-5455-a1d5-7ec083b2d18b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u975e\u88d4\u7f8e\u56fd\u5973\u6027\u7ad9\u5728\u73b0\u4ee3\u7535\u68af\u95e8\u53e3\u70b9\u71c3\u4e86\u4e00\u652f\u9999\u70df\u3002\u5979\u7a7f\u7740\u7070\u8272\u8fd0\u52a8\u88e4\u548c"} +{"id": "4002458", "video_name": "761614cd-afcc-5485-a35a-c5b96d9f18a1", "text": "\u4e00\u4f4d\u8eab\u7a7f\u9ed1\u8272\u8fde\u8863\u88d9\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u591c\u665a\u9003\u79bb\u4fdd\u5b89\u3002"} +{"id": "4004876", "video_name": "43669747-bb82-5bce-999f-45083955c2e0", "text": "\u4e00\u4e2a\u7267\u5e08\u5728\u4e00\u5ea7\u5c0f\u6559\u5802\u8bb2\u9053\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c\u9ad8\u6e05\uff0c\u7535\u5f71\u611f\uff0c\u6301\u7eed10\u79d2\u3002"} +{"id": "2004258", "video_name": "fcd27160-c5c5-5405-a0e2-da6763c9babb", "text": "\u60c5\u611f\u6545\u4e8b\u753b\u9762\uff0c\u53f3\u4fa7\u6709\u4e00\u68f5\u5723\u8bde\u6811\u7684\u5973\u5b69\u3002"} +{"id": "4004694", "video_name": "ae3a695e-ae67-5157-a6d7-f61fad91e2d1", "text": "\u7236\u4eb2\u548c\u513f\u5b50\u8d70\u8fdb\u4e00\u4e2a\u5409\u4ed6\u7ef4\u4fee\u5e97\u3002\u7ef4\u4fee\u5de5\u4eba\u62ff\u8d77\u5409\u4ed6\u65f6\u5fae\u7b11\u7740\u3002\u5de5\u5177\u548c\u5907\u4ef6\u6392\u5217\u5728\u5899\u4e0a\u3002"} +{"id": "2006069", "video_name": "718105b8-24a3-51ef-b1f2-0a81cf6ec826", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u4e5e\u8ba8\u7740\uff0c\u8737\u7f29\u7740\u8eab\u5b50\u770b\u7740\u7ecf\u8fc7\u5979\u7684\u4eba\u4eec\u3002"} +{"id": "6003723", "video_name": "b9407032-ca16-590d-9c81-0386fb35f2b5", "text": "\u65b0\u95fb\u62a5\u9053\u8bf4\uff0c\u4e16\u754c\u672b\u65e5\u5c06\u57285\u79d2\u5185\u5230\u6765\u3002"} +{"id": "7002765", "video_name": "2453aef9-18a1-57ae-8f00-040d403eb794", "text": "\u6211\u662f\u4e00\u540dAIML\u5de5\u7a0b\u5e08\uff0c\u6b63\u5728\u4ece\u4e8b\u4e00\u4e2a\u5de5\u4f5c\u573a\u6240\u5b89\u5168\u9879\u76ee\uff0c\u6211\u4eec\u8bd5\u56fe\u68c0\u6d4b\u5de5\u4eba\u662f\u5426\u7a7f\u6234\u5934\u76d4\u548c\u7403\u8863\u7b49\u5de5\u4f5c\u573a\u6240\u5b89\u5168"} +{"id": "4002593", "video_name": "d632d219-6d4c-5f67-a363-846a983ca761", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fc7\u4e00\u5ea7\u8352\u829c\u7684\u57ce\u5e02\u7684\u4fa7\u9762\u7684\u6574\u4f53\u62cd\u6444\u3002"} +{"id": "5001530", "video_name": "3dab3838-d566-5790-98be-6fd6421fcab2", "text": "\u5760\u6bc1\u7684\u98de\u8239\u5728\u6811\u6797\u4e2d\u3002"} +{"id": "6004223", "video_name": "642b640c-1ae2-57f8-a168-6b320e3d3479", "text": "\u52a8\u6f2b\u5973\u5b69\u7ad9\u5728\u9ad8\u9ad8\u7684\u9633\u53f0\u4e0a\uff0c\u80cc\u666f\u4e2d\u6709\u5f3a\u98ce\u548c\u70df\u82b1\uff0c\u753b\u9762\u6d41\u7545\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "5001909", "video_name": "470eb4a9-2f97-59c6-bd95-4f4ad01cf70d", "text": "\u4e00\u67b6\u98de\u673a\u5728\u9ed1\u6697\u591a\u4e91\u7684\u591c\u7a7a\u4e2d\u98de\u8fc7\uff0c\u5934\u9876\u4e0a\u7684\u4e91\u6735\u5f62\u6210\u4e86\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u5f62\u6001\u3002"} +{"id": "8002938", "video_name": "f988fae5-ef6d-5620-9407-af9d8530ac02", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u6bcf\u4e2a\u4eba\u90fd\u548c\u8c10\u76f8\u5904\u3002"} +{"id": "0003298", "video_name": "3b32392c-cbdf-5e52-98c7-ebe939e2622b", "text": "\u4e00\u4f4d\u7559\u8457\u767d\u9aee\u7684\u6210\u5e74\u5973\u6027\uff0c\u53f3\u8173\u8e29\u5728\u77f3\u982d\u4e0a\uff0c\u624b\u4e2d\u63e1\u8457\u4e00\u628a\u528d\uff0c\u81ea\u4fe1\u5730\u770b"} +{"id": "8003703", "video_name": "78794aa2-255e-5bf9-8895-d71eb20c1d81", "text": "Translation: \u7a7f\u7740\u7834\u70c2\u7684\u53ef\u601c\u5c0f\u7537\u5b69\u8eab\u5904\u4e00\u95f4\u80fd\u591f\u4fef\u77b0\u82b1\u56ed\u548c\u7f8e\u666f\u7684\u623f\u95f4\u3002"} +{"id": "6003296", "video_name": "338d9bf1-a825-5a39-a923-2e81dc64a3c1", "text": "\u4e00\u4f4d\u5973\u513f\u548c\u5979\u7684\u7236\u4eb2\u5750\u5728\u6cb3\u8fb9\u7684\u77f3\u5934\u7801\u5934\u4e0a\uff0c\u89c2\u8d4f\u65e5\u843d\u3002"} +{"id": "3005192", "video_name": "2d03f802-8ded-5354-8b28-7712db56ea9e", "text": "\u4e00\u4e2a\u7a7f\u7740\u886c\u886b\u548c\u6b6a\u9886\u5e26\u7684\u60b2\u4f24\u5b64\u72ec\u7537\u5b50\u7ad9\u5728\u4e00\u4e2a\u4ff1\u4e50\u90e8\u91cc\uff0c\u5468\u56f4\u662f\u8df3\u821e\u7684\u5e74"} +{"id": "1004896", "video_name": "5a6c7458-e8d8-57f3-a0d1-677a1a7cc56a", "text": "\u4e24\u4e2a\u7a7f\u7740\u53e4\u5e0c\u814a\u957f\u888d\u7684\u7537\u4eba\u5728\u67f1\u5b50\u95f4\u7684\u623f\u95f4\u91cc\u5411\u53e6\u4e00\u4e2a\u7a7f\u7740\u957f\u888d\u7684\u53e4\u5e0c\u814a\u7537\u4eba"} +{"id": "6002978", "video_name": "d0acb40c-803e-5adb-a92b-ebbd3746865b", "text": "\u4e00\u4e2a\u4eba\u5728\u5ba2\u5385\u91cc\uff0c\u5174\u594b\u5730\u6253\u5f00\u4e00\u526f\u5168\u65b0\u7684QUEST 3 VR\u773c\u955c\uff0c\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u4e0a\u663e\u793a\u4e86DotCSV\u7684"} +{"id": "1005043", "video_name": "5d355409-371b-55f6-a842-b9e1e5b3cb2d", "text": "\u8001\u5e74\u4eba\u8033\u673a\u6234\u8d77\u6765\u4e0d\u8212\u9002\u3002"} +{"id": "1003055", "video_name": "382a652c-5a21-5dce-8a07-ed69daababa1", "text": "\u4e00\u53ea\u9e1f\u4ece\u5de6\u5411\u53f3\u5728\u5929\u7a7a\u98de\u884c\u3002"} +{"id": "0003337", "video_name": "3be79f7a-c75d-577f-8f6e-dbb776fe54ad", "text": "\u7537\u5b69\u7a7f\u7740\u5236\u670d\u76843D\u903c\u771f\u89c6\u9891\u3002"} +{"id": "7002710", "video_name": "43ced604-59c6-5cea-8476-ef0af29c45a6", "text": "\u8349\u5730\u5e94\u8be5\u6c90\u6d74\u5728\u67d4\u548c\u800c\u8d85\u51e1\u8131\u4fd7\u7684\u5149\u7ebf\u4e2d\uff0c\u95ea\u70c1\u7684\u82b1\u74e3\u5f15\u9886\u7740\u524d\u5f80\u3002"} +{"id": "2007302", "video_name": "bd846e0d-58c9-5f14-9d42-32040b556fa7", "text": "\u4e00\u5929\u9633\u5149\u660e\u5a9a\u7684\u5df4\u9ece\uff0c\u4e24\u540d\u5b87\u822a\u5458\u7a7f\u7740\u963f\u5c14\u53ca\u5229\u4e9a16\u4e16\u7eaa\u7684\u670d\u88c5\uff0c\u7535\u5f71\u822c\u7684\u903c\u771f"} +{"id": "8002314", "video_name": "05f0dc7b-0530-5682-afd0-56adc1ad215a", "text": "\u56db\u8f6e\u6d41\u6d6a\u8005\u673a\u5668\u4eba\u5728\u963f\u5854\u5361\u9a6c\u6c99\u6f20\u4e2d\u5bfc\u822a\u3002"} +{"id": "0005604", "video_name": "1ddb8cda-ac73-58f8-97e0-2926a3435039", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u7cbe\u7075\uff0c\u5723\u8bde\u5b69\u5b50\u7cbe\u7075\uff0c\u5927\u8033\u6735\uff0c\u7a7f\u7740\u7c89\u8272\u548c\u91d1\u8272\u88c5\u9970\u7684\u8863\u670d\uff0c"} +{"id": "8003499", "video_name": "740c0632-ba3c-583a-847c-eba7ad7499bc", "text": "\u4e24\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u5b50\u5728\u6469\u5929\u8f6e\u9876\u4e0a\u6253\u6597\u3002\n\nSource sentence: I need to buy some groceries from the supermarket. \n\u6211\u9700\u8981\u4ece\u8d85\u5e02\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "6002721", "video_name": "9fcf3fba-8894-5df3-bfd2-1951e358e003", "text": "\u4e00\u4e2a\u661f\u661f\u7206\u70b8\uff0c\u5e26\u6709\u5927\u91cf\u7684\u8fd0\u52a8\u3001\u76f8\u673a\u6643\u52a8\u548c\u5b87\u822a\u5458\u88ab\u63a8\u5f00\uff0c\u57280g\u7a7a\u95f4\u4e2d\u626d\u66f2\u548c\u7ffb\u8f6c\u3002"} +{"id": "2006586", "video_name": "0546a722-f91a-56bc-8e97-1a65396976e4", "text": "\u8ba9\u5b83\u66f4\u597d\uff0c\u4f7f\u5176\u5177\u6709\u5438\u5f15\u529b\u548c\u6613\u4e8e\u7406\u89e3\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "4003464", "video_name": "bac1dc31-5283-5d18-a1b3-0b3dc7fc24f5", "text": "10\u5c81\u7537\u5b69\u548c\u670b\u53cb\u4eec\u5728\u8db3\u7403\u573a\u73a9\u800d\u3002"} +{"id": "4003248", "video_name": "32f5030b-bb82-52ba-a95f-baeaa7ab72b9", "text": "\u6570\u767e\u4e07\u4eba\u5728\u58a8\u897f\u54e5\u5c0f\u9547\u4e0a\u9ad8\u6b4c\u8df3\u821e\uff0c\u624b\u7275\u624b\u6b22\u4e50\u524d\u8fdb\u3002"} +{"id": "6003947", "video_name": "d0c7a0d0-0f20-58c7-8d41-cc56c246123b", "text": "\u6bdb\u8338\u8338\u7684\u5c0f\u7cbe\u7075\uff0c\u7fbd\u7ffc\u6251\u52a8\u7740\uff0c\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u4f38\u624b\u53bb\u89e6\u78b0\u95ea\u8000\u77f3\uff0c\u6ee1"} +{"id": "2004858", "video_name": "ab615ee8-5006-56e5-b69f-df770f462b96", "text": "\u968f\u7740\u4ed6\u4eec\u9010\u6e10\u63a5\u8fd1\u68ee\u6797\u4e2d\u5fc3\uff0c\u9b54\u6cd5\u822c\u7684\u5b81\u9759\u53d8\u5f97\u66f4\u52a0\u6df1\u523b\u3002\u8fd9\u4e0d\u518d\u662f\u4ed6\u4eec\u4ec5\u4ec5"} +{"id": "1003366", "video_name": "3df56989-ac2a-5bdd-b0da-d95d50ee0043", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u505a\u4f5c\u4e1a\u65f6\u542c\u6b4c\u3002"} +{"id": "2003650", "video_name": "2ba46b59-a393-5ce8-9f09-18ae762c57ab", "text": "\u58eb\u5175\u6b63\u5728\u91cd\u65b0\u88c5\u586b\u4e00\u652f\u5148\u8fdb\u7684\u79d1\u5e7b\u67aa\uff0c\u6b65\u67aa\u91cd\u65b0\u88c5\u586b\uff0c\u67aa\u6253\u5f00\uff0c\u67aa\u5185\u6709\u5b9e\u9a8c\u6027\u673a\u68b0\u3002"} +{"id": "0006249", "video_name": "293811ee-43d4-50d9-83d8-09b6f61c0d98", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u7740\u79cb\u5b63\u67ab\u53f6\u98d8\u821e\uff0c\u7f8e\u4e3d\u7684\u65c1\u906e\u666e\u5973\u5b69\u5c3c\u9c81\u00b7\u5df4\u5409\u74e6\u6f2b\u6b65\u5728"} +{"id": "1006404", "video_name": "754a6f2f-dc38-5f10-90ad-1f282c665be0", "text": "\u521b\u5efa\u4e00\u4e2a\u73b0\u4ee3\u5316\u7684\u6807\u5fd7\uff1aEleven Studios\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "4003891", "video_name": "445250cd-1bf9-55d3-9e4d-847b6d154425", "text": "\u4e00\u4f4d\u6124\u6012\u7684\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u9f99\u73e0Z\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u4ed6\u7684\u8138\u5e76\u5feb\u901f\u653e\u5927\uff0c\u95ea\u7535\u548c\u706b\u7130\u73af"} +{"id": "1003253", "video_name": "3be51840-965a-56fc-9065-bbaf80580adc", "text": "\u4ed6\u4eec\u542c\u5230\u5916\u9762\u6709\u4eba\u6572\u95e8\u3002"} +{"id": "3004562", "video_name": "3af91b27-9f0d-5298-86e0-e93b8c8ac9db", "text": "\u732b\u548c\u5b83\u4eec\u7684\u5e7c\u5d3d\u5728\u6d77\u8fb9\u9644\u8fd1\u73a9\u800d\u3002\u9e1f\u513f\u5728\u4e0a\u7a7a\u98de\u7fd4\u3002"} +{"id": "8003466", "video_name": "3be4b3d2-7508-50ba-a363-4e8efbf11d08", "text": "\u5348\u95f4\u7684\u52a8\u753b\u592a\u9633\u7167\u8000\u7740\u6d77\u6d0b\uff0c\u4e3a\u5176\u63d0\u4f9b\u70ed\u91cf\uff0c\u6cb3\u6d41\u5728\u88ab\u4e00\u4e9b\u6811\u5305\u56f4\u7684\u6d77\u6d0b\u4e2d\u6d41\u6dcc\u3002"} +{"id": "7003830", "video_name": "4f345132-c94b-560b-9bdb-c5fc81b19169", "text": "\u6c7d\u8f66\u7a97\u6237\u6253\u5f00\uff0c\u7136\u540e\u4e00\u4e2a\u7537\u4eba\u4e70\u6c34\u679c\u3002"} +{"id": "8003911", "video_name": "ce0c6dbf-2c89-5482-930a-0069f55de8cf", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u5e84\u4e0a\u8d70\u7740\uff0c\u80cc\u7740\u4e00\u4f4d\u4f8d\u4ece\uff0c\u671d\u7740\u51e0\u4e2a\u5e74\u8f7b\u4eba\u805a\u96c6\u5728\u5e97\u94fa\u524d\u7684\u5730\u65b9\u8d70\u53bb"} +{"id": "1004313", "video_name": "4fb6ef5f-3d6d-545b-b95b-02b26dd2cc18", "text": "\u4e00\u53ea\u9ed1\u732b\u5750\u5728\u5ba2\u5385\u91cc\u7684\u58c1\u7089\u65c1\u8fb9\u7684\u5730\u677f\u4e0a\uff0c\u5ba2\u5385\u91cc\u6709\u58c1\u7089\u548c\u6c99\u53d1\uff1b\u5b83\u662fSots\u827a"} +{"id": "1003071", "video_name": "38806612-03c9-53d7-9bcc-29b69e46ab4c", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u8857\u4e2d\u592e\u8ba8\u8bba\u3002"} +{"id": "1003222", "video_name": "3b599e97-337b-59ee-876b-4c8177e1b390", "text": "\u4e3b\u89d2\u8eb2\u5728\u65e7\u4ed3\u5e93\u91cc\u3002\u4ed3\u5e93\u95e8\u524d\u6709\u4e00\u5806\u50f5\u5c38\u8bd5\u56fe\u6253\u5f00\u95e8\uff0c\u4f46\u4e3b\u89d2\u4e0d\u5141\u8bb8\u3002"} +{"id": "7004012", "video_name": "2bee18be-6600-5704-bdb0-c223f027fdb3", "text": "\u8f66\u8f86\u7740\u706b \u4fe1\u606f\uff1a\u5b9d\u9a6cX5 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8003826", "video_name": "73cbcebd-c8b1-566d-a7a4-ba56bb5964b7", "text": "\u5973\u5b69\u62b1\u7740\u4e00\u53ea\u68d5\u8272\u7684\u732b\u5e86\u795d\u5723\u8bde\u8282\u3002"} +{"id": "3004101", "video_name": "0c305bc2-4c1f-5608-b465-e088844b6367", "text": "\u4e00\u4f4d\u7a7f\u7740\u88d9\u5b50\uff0c\u957f\u53d1\u53ef\u7231\u5973\u5b69\u6b63\u5728\u8def\u4e0a\u6ed1\u6ed1\u677f\u3002"} +{"id": "2004456", "video_name": "f81b55d7-0956-5e4b-ae28-fb7dee08c6af", "text": "\u5c0f\u6050\u6016\u57ce\u9547\uff0c\u623f\u5c4b\uff0c\u5927\u5e84\u56ed\uff0c\u9ed1\u6697\u80cc\u666f\uff0c\u5bb6\u5ead"} +{"id": "7002688", "video_name": "ae4c6e98-ba3e-5b27-acd8-ec69ee79329f", "text": "\u4e00\u5207\u90fd\u7531\u4f53\u7d20\u5236\u6210\uff0c\u6d77\u6ee9\u4e0a\u7684\u9a6c\u4ece\u5f69\u8679\u4e2d\u964d\u843d\uff0c\u7535\u5f71\u822c\u7684\u76f8\u673a\u8fd0\u52a8\uff0c\u897f\u90e8\u7247\uff0c\u97e6\u65af\u00b7\u5b89"} +{"id": "0005171", "video_name": "15fd275a-ea23-59e6-a693-27930d2dd03c", "text": "\u5236\u4f5c\u89c6\u9891\u901a\u8bdd\u7684\u5973\u5b69"} +{"id": "0005269", "video_name": "179527b1-36a5-5053-afa8-426cb09c2ddd", "text": "\u7b2c\u4e00\u9897\u95ea\u8000\u77f3\u663e\u9732\u51fa\u6765\uff0c\u6563\u53d1\u51fa\u67d4\u548c\u7684\u5149\u8292\u3002"} +{"id": "2006398", "video_name": "4a5281e6-ee3c-5dfc-b234-d6c59c0e97a2", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u5b69\u5b50\u5728\u540e\u9662\u73a9\u6ce1\u6ce1\u3002"} +{"id": "5001009", "video_name": "657a13ff-ab4a-5611-96b2-b173ede40e4f", "text": "\u79d1\u5b66\u5bb6\u5728\u5b9e\u9a8c\u5ba4\u5de5\u4f5c\uff0c\u7c7b\u4f3c\u4e8e\u95ed\u8def\u7535\u89c6\u7684\u6444\u50cf\u5934\u3002"} +{"id": "4003048", "video_name": "af2e22b7-ae92-5dd2-9389-1933a9507f08", "text": "\u82cf\u683c\u62c9\u5e95\u6b63\u5728\u548c\u4ed6\u7684\u5b66\u751f\u4eec\u4ea4\u8c08\uff0c\u7279\u522b\u662f\u4e0e\u67cf\u62c9\u56fe\u4ea4\u8c08\u3002"} +{"id": "2004447", "video_name": "801e9455-a0a7-5775-a479-d74c84d87d93", "text": "\u4e00\u4f4d\u8001\u5e74\u5987\u5973\u5728\u6469\u6258\u8f66\u4e0a\u5438\u70df\u3002"} +{"id": "6003823", "video_name": "ab1aca95-669c-5c8b-8ae4-c659e6bf57b1", "text": "\u4e00\u4e2a\u7537\u4eba\u6389\u8fdb\u4e86\u88ab\u6c34\u6df9\u6ca1\u7684\u8857\u9053\u4e2d\u3002\u8d85\u5199\u5b9e\uff0c\u9ad8\u8f9b\u70f7\u503c\u6e32\u67d3\uff0c4k\uff0c\u79cd\u5b50373474\u3002"} +{"id": "3003210", "video_name": "985b0906-3612-5500-b7e6-6b31b46b0ce7", "text": "\u53e4\u4ee3\u5973\u6027\u7684\u5916\u8c8c\uff0c\u767d\u7699\u7684\u808c\u80a4\u5e38\u88ab\u770b\u91cd\uff0c\u800c\u7f8e\u5bb9\u4e60\u60ef\u4e5f\u5404\u4e0d\u76f8\u540c\u3002"} +{"id": "1006668", "video_name": "7a1eb7e4-d883-556d-a7c4-cc71dae3e5f6", "text": "\u6162\u6027\u6b63\u5f26\u6ce2\uff0c\u8109\u52a8\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "6004343", "video_name": "a2eef1df-2d09-54e7-b17b-5165be92caed", "text": "\u6d77\u5578\u6df9\u6ca1\u4e86\u5b64\u72ec\u7684\u5b69\u5b50\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2004918", "video_name": "a441bd60-eb2d-5487-92a7-5fc426c061d7", "text": "\u4e24\u53ea\u6f02\u4eae\u7684\u767d\u8272\u72d7\u5728\u73a9\u4e00\u4e2a\u5c0f\u7ea2\u7403\u3002"} +{"id": "4004549", "video_name": "0eacf395-7d5f-52d8-8f87-21be66967e6b", "text": "\u5927\u90fd\u5e02\u91cc\u4e0b\u96e8\u65f6\u7684\u9ed1\u767d\u8857\u666f\u3002"} +{"id": "7002429", "video_name": "c786a4a0-ee97-5e56-bd76-3d9c3e356d53", "text": "\u6b22\u8fce\uff0c\u5e74\u8f7b\u7684\u5192\u9669\u5bb6\u4eec\uff0c\u6765\u5230\u8ff7\u4eba\u7684\u300aMinecraft\u300b\u4e16\u754c\uff01\u8bf7\u56f4\u5728\u4e00\u8d77\uff0c\u5f00\u59cb\u6211\u4eec\u52c7\u6c14\u3001\u53cb\u8c0a\u548c"} +{"id": "1005395", "video_name": "632fcff8-d8f5-51a5-a587-8c1395633466", "text": "\u4e00\u4e2a\u524d\u666f\u4e2d\u6709\u4e24\u68f5\u68d5\u6988\u6811\u7684\u65e5\u843d\uff0c\u84b8\u6c7d\u6ce2\u65e5\u843d\uff0c\u5408\u6210\u6ce2\u65e5\u843d\uff0c\u5408\u6210\u6ce2\u827a\u672f\uff0c\uff08\uff08\uff08"} +{"id": "4003391", "video_name": "2c07f0c9-ff73-5d90-88aa-c9efb056e8fc", "text": "\u5efa\u9020\u4e00\u5ea7\u6b63\u5728\u7740\u706b\u7684\u5efa\u7b51\u3002"} +{"id": "4003263", "video_name": "bd1d7e9b-9fc3-59e3-9e67-e2507b63cc60", "text": "\u4f7f\u7528\u4f4d\u7f6e\u5386\u53f2\u8bb0\u5f55\uff0c\u753b\u4e00\u4e2a\u6f02\u4eae\u7684\u56fe\u7247\uff0c\u4e24\u4e2a\u4eba\u6b63\u5728\u7ea6\u4f1a\u3002\n\nSource sentence: I need to buy some groceries at the supermarket. \n\n\u6211\u9700\u8981\u5728\u8d85\u5e02\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "2006332", "video_name": "b9dd6900-5c15-5358-90e4-2715d8b8b386", "text": "\u7d2b\u7ea2\u8272\u80cc\u666f\u3002\u4fe1\u606f\uff1a\u201cMeta Talent\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7002568", "video_name": "37ca3b95-6ba8-563f-b2dc-8476e20d733b", "text": "3D\u52a8\u753b\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u72d7\u5403\u9c7c\u3002"} +{"id": "8003963", "video_name": "470fe854-8916-5bd6-8027-b208de2d4d1b", "text": "\u8001\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u8fdb\u884c\u7269\u7406\u6cbb\u7597\u7ec3\u4e60\u3002\u6cbb\u7597\u5e08\u5750\u5728\u4ed6\u9762\u524d\uff0c\u5411\u4ed6\u5c55\u793a\u5982\u4f55\u505a\u3002"} +{"id": "6003910", "video_name": "6057a91a-542f-50a0-ab05-6ad4a83f31fa", "text": "\u8fa3\u5473\u829d\u58eb\u85af\u7247\u8df3\u7740\u7259\u7ebf\u821e\u3002"} +{"id": "6003812", "video_name": "3797cb94-0bfe-5619-82dc-936ed15aa3d1", "text": "\u4e00\u4e2a\u73a9\u5bb6\u5728\u7535\u8111\u4e0a\u73a9\u6e38\u620f\uff0c\u6444\u50cf\u673a\u4ece\u4ed6\u7a0d\u5fae\u540e\u9762\u4f46\u5927\u90e8\u5206\u5728\u4ed6\u7684\u5de6\u4fa7\u62cd\u6444\uff0c\u80cc\u666f\u7684\u6bcf\u4e2a\u989c\u8272"} +{"id": "2003646", "video_name": "60a3bd8c-079c-54cb-ac2a-89d6447ab05c", "text": "\u5c71\u7f8a\u6e38\u5230\u6cb3\u5cb8\u4e0a\u83b7\u5f97\u4e86\u5b89\u5168\u3002\u5b83\u4eec\u63a5\u53d7\u4e86\u81ea\u5df1\u7684\u9519\u8bef\u3002\u5b83\u4eec\u8ba4\u8bc6\u5230\u5408\u4f5c\u548c\u59a5\u534f\u7684\u4ef7\u503c\u3002"} +{"id": "0006765", "video_name": "32a614f2-2917-555d-a3d8-4e80d82dba4c", "text": "\u5efa\u7b51\uff0c\u903c\u771f\uff0c\u6b63\u9762\u89c6\u56fe\uff0c\u6e38\u620f\u7d20\u6750\u3002"} +{"id": "3005263", "video_name": "7fe63425-689c-5740-9d0c-fe44ed7a36bc", "text": "\u592a\u7a7a\u7a7f\u68ad\u673a\u51c6\u5907\u8d77\u98de\uff0cNASA\uff0c\u753b\u8d28\u6a21\u7cca\u7684\u7535\u5f71\u3002"} +{"id": "8001522", "video_name": "76fdb305-739f-5506-b9b6-d09bc89151e4", "text": "\u7b2c\u4e00\u4e2a\u5c06\u662f\u4e00\u4e2a\u65b0\u7684\u7528\u6237\u540ddim\uff0c\u7b2c\u4e8c\u4e2a\u5c06\u6709\u4ee5\u4e0b\u540d\u79f0\uff0c\u7b2c\u4e8c\u4e2a\u5c06\u662f\u4e0d\u540c\u7684\u7528\u6237\u540d\uff0c\u7b2c\u4e8c\u4e2a\u662f\u65b0\u7684\u3002"} +{"id": "6004958", "video_name": "47049164-3a5d-5162-841e-706d897f01d6", "text": "\u4e00\u4e2a\u7531\u4e09\u4e2a\u6210\u5458\u7ec4\u6210\u7684\u5bb6\u5ead\uff0c\u4e00\u4e2a\u7537\u4eba\uff0c\u4e00\u4e2a\u5973\u4eba\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u3002"} +{"id": "6003800", "video_name": "779abef4-b693-5611-b863-402304059986", "text": "\u8759\u8760\u4fa0\u548c\u7f57\u5bbe\u5728\u591c\u665a\u7684\u5c4b\u9876\u4e0a\u4e0e\u5c0f\u4e11\u6218\u6597\u3002"} +{"id": "0005858", "video_name": "226e44cc-64fe-5c9e-9c2b-d39f3ff2c484", "text": "einary world \nTranslated sentence: \u4e00\u4e2a\u8ff7\u5e7b\u7684\u89c6\u9891\u5c55\u793a\u4e86\u8fd9\u4e2a\u975e\u51e1\u7684\u4e16\u754c"} +{"id": "2004654", "video_name": "ffcaac29-aa92-5ed0-9995-5eb29e49f523", "text": "\u4e00\u4f4d\u6234\u7740\u80fd\u591f\u906e\u6321\u9762\u90e8\u7684\u5168\u8138\u7f69\u7684\u963f\u62c9\u4f2f\u5973\u6027\u62c5\u4efb\u6cd5\u5b98\u7684\u6bcd\u4eb2\uff0c\u800c\u5728\u963f\u5df4\u65af"} +{"id": "2003282", "video_name": "08a04a29-86f4-568d-83dc-776287df0fa1", "text": "\u5728\u4e00\u4e2a\u8ff7\u4eba\u800c\u751f\u673a\u52c3\u52c3\u7684\u6d77\u8fb9\u5c0f\u6751\u5e84\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u53ea\u5e26\u7740\u72e1\u733e\u51e0\u4e4e\u7b11\u51fa\u58f0\u7684\u8868\u60c5\u7684"} +{"id": "8003942", "video_name": "77c7ff5f-ef5e-5867-a746-0f464449d991", "text": "\u5728\u5915\u9633\u4e0b\u4ece\u6c99\u6f20\u6c99\u4e18\u4e0b\u51fa\u73b0\u4e00\u53ea\u5de8\u578b\u874e\u5b50\uff0c\u874e\u5b50\u4e0a\u843d\u7740\u70df\u5c18\u5728\u6c99\u6f20\u6c99\u4e18"} +{"id": "4002599", "video_name": "0775808b-4416-5c0f-a522-3bd60575c972", "text": "\u91cc\u6839\u603b\u7edf\u9047\u523a\u672a\u9042\u524d\u7684\u65f6\u523b"} +{"id": "5001160", "video_name": "deded1d5-70f3-5785-ba4d-2800bdac273d", "text": "\u6c64\u7c73\u7ef4\u897f\u8482\u572830\u5e74\u540e\u6765\u5230\u7ef4\u57ce\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China someday.\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u56e0\u4e3a\u6211\u5e0c\u671b"} +{"id": "2006794", "video_name": "d78a1335-50c8-577f-aa15-f81497d35fd1", "text": "\u8b66\u5bdf\u7279\u79cd\u90e8\u961f\u5728\u591c\u665a\u7684\u57ce\u5e02\u4e2d\u3002"} +{"id": "0006122", "video_name": "26fe2807-14bf-5179-b4be-c59ce3fce90a", "text": "\u4f7f\u75284K\u5206\u8fa8\u7387\u76843D\u52a8\u753b\u5236\u4f5c\u4e00\u4e2a\u65e2\u7537\u5b69\u5b50\u6c14\u53c8\u4f1a\u4e00\u89c1\u949f\u60c5\u4e8e\u82f1\u4fca\u7537\u5b69\u7684\u5973\u5b69\u3002"} +{"id": "1006348", "video_name": "74343ba8-5696-5d69-80e6-3a1303f5976a", "text": "\u52a8\u753b\u7247\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u91d1\u8272\u65f6\u949f\uff0c\u79fb\u52a8\u3002"} +{"id": "8001929", "video_name": "f06d0280-58d2-5255-ba65-bcf5a27a039a", "text": "\u793a\u6ce2\u5668\u7ed8\u5236 528 Hz \u7684\u9891\u7387\u3002"} +{"id": "3004534", "video_name": "31a4d82a-6681-56fe-9f99-8e0ffec1873e", "text": "\u8389\u8389\u9762\u5bf9\u4e00\u5ea7\u9ad8\u8038\u7684\u5c71\uff0c\u5979\u7684\u51b3\u5fc3\u663e\u800c\u6613\u89c1\uff0c\u5f00\u59cb\u6500\u767b\u8fd9\u4e2a\u5177\u6709\u6311\u6218\u6027\u7684\u4efb\u52a1\u3002\u52a8\u753b\u5361\u901a"} +{"id": "2003973", "video_name": "950be074-3103-5624-bf21-45266be7632e", "text": "\u7528\u6807\u9898\u201c\u300a\u5df4\u683c\u74e6\u5fb7\u00b7\u5409\u8fbe\u300b\u768410\u53e5\u540d\u8a00\u201d\u5236\u4f5c\u4e00\u6bb53\u5206\u949f\u7684\u89c6\u9891\u3002"} +{"id": "0006467", "video_name": "2d10225b-be62-5f8d-a32d-1f40b4689d45", "text": "\u6709\u4eba\u5c06LLM\u8fde\u63a5\u5230\u963f\u5361\u897f\u8bb0\u5f55\u4e86\u5417\uff1f"} +{"id": "2006700", "video_name": "6f1b015b-ef73-5839-aeed-5da688ebedac", "text": "\u5bf9\u4f60\u7684\u611f\u89c9\u975e\u5e38\u5f3a\u70c8\u3002"} +{"id": "1006105", "video_name": "70107c7c-9ebd-5535-8c05-27e59102ade7", "text": "\u674e\u9752\u73b0\u5728\u662f\u82f1\u96c4\u8054\u76df\u7684\u4e3b\u89d2\uff0c\u6b63\u5728\u8df3\u821e\u3002"} +{"id": "8003849", "video_name": "c6825ce8-59f4-5af4-b580-4928809f17cf", "text": "\u90a3\u4e2a\u4eba\u5750\u5728\u5e9f\u5f03\u57ce\u5e02\u7684\u80cc\u666f\u4e2d\uff0c\u6444\u50cf\u673a\u9010\u6e10\u8fdc\u79bb\u3002"} +{"id": "6004318", "video_name": "01932015-b47a-5f9d-914b-c85961dbff46", "text": "\u4eba\u4eec\u53ef\u80fd\u80cc\u7740\u80cc\u5305\u72c2\u5954\uff0c\u62fc\u547d\u5bfb\u627e\u5b89\u5168\u7684\u5730\u65b9\u3002\u8fd9\u53ef\u80fd\u5305\u62ec\u7a7f\u8d8a\u8352\u91ce\u3001\u514b\u670d\u969c\u788d\u6216"} +{"id": "0004273", "video_name": "06398b5d-d6fb-559f-97a3-d38eecdd3243", "text": "\u5728\u7f8e\u4e3d\u7684\u5fb7\u5dde\u52ff\u5fd8\u6211\u82b1\u7530\u4e2d\u5954\u8dd1\u7684\u5de8\u5927\u767d\u72d7\u3002\u8d77\u4f0f\u7684\u5c0f\u5c71\u3002"} +{"id": "3003349", "video_name": "c2800092-8e0b-5601-8314-1a1fb2957816", "text": "\u7ea2\u8272\u672c\u7530NSX\uff0c\u96e8\u5929\u7f8e\u5b66\uff0c\u7535\u5f71\u611f\uff0c\u65e5\u672c\u80cc\u666f\u3002"} +{"id": "4003264", "video_name": "c175755b-86ce-5979-a100-403ce147e71e", "text": "\u968f\u7740\u592a\u9633\u5347\u8d77\uff0c\u7a97\u5916\u7684\u4e16\u754c\u88ab\u91d1\u8272\u6e32\u67d3\uff0c\u5b9b\u5982\u7535\u5f71\u822c\u76843D\u52a8\u753b\u98ce\u683c\uff0c\u89c6\u9891\u5c3a\u5bf8\u3002"} +{"id": "2007417", "video_name": "7781ac5b-b917-5477-b2fe-366e1898668c", "text": "\u5851\u6599\u5728\u706b\u4e0a\u6eb6\u89e3\uff0c4k\uff0c\u7535\u5f71\u611f"} +{"id": "0004683", "video_name": "0d428080-d207-5598-a3fd-65b3a5a17434", "text": "\u5317\u6781\u718a\u5728\u692d\u5706\u5f62\u7684\u51b0\u9762\u4e0a\u6ed1\u51b0\uff0c\u8ddf\u968f\u300a\u5411\u65e5\u8475\u300b\u7684\u65cb\u5f8b\u8df3\u821e\u3002\n\nSource sentence: I have a"} +{"id": "0004021", "video_name": "01a8e4d3-fdde-50e5-ae79-970a24ba0e67", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u5728\u591c\u603b\u4f1a\u8df3\u821e\u3002"} +{"id": "0005329", "video_name": "18ebcf55-2d24-516d-9443-4cbdae80ee44", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u98a0\u7c38\u7684\u788e\u77f3\u8def\u4e0a\u5f00\u884c\uff0c\u4f20\u8fbe\u51fa\u4e00\u79cd\u4e0d\u53d7\u63a7\u5236\u7684\u8fd0\u52a8\u611f\uff0c\u8096\u50cf\u65b9\u5411\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "0004098", "video_name": "032f90e1-0084-569e-99cc-6789f7595d68", "text": "\u4e00\u4e2a\u7537\u4eba\u9a7e\u9a76\u7740\u4e00\u8f86\u8fd0\u52a8\u8f66\u5728\u8428\u5c14\u74e6\u591a\u7684\u8857\u9053\u4e0a\u884c\u9a76\u3002"} +{"id": "2006630", "video_name": "25c0964f-81a1-5fdf-a391-f1db9566b0d2", "text": "\u6811\u91cc\u9762\u6709\u4e2a\u6d1e\u3002"} +{"id": "6002251", "video_name": "ecacc355-d711-52e8-b50b-1cb941e32586", "text": "\u4e00\u4e2a\u91d1\u53d1\u84dd\u80cc\u5e26\u7684\u7537\u5b69\uff0c\u624b\u6258\u4e0b\u5df4\uff0c\u5fe7\u90c1\u7684\u773c\u795e\uff0c\u5750\u5728\u7a97\u8fb9\uff0c\u671b\u5411\u7a97\u5916\uff0c\u5ba4\u5185"} +{"id": "2005288", "video_name": "f9f5a4c5-56cb-568d-b073-f5e98ce10792", "text": "\u9713\u8679\u706f\u821e\u52a8\u5b87\u5b99\u661f\u5149\u95ea\u8000\u3002"} +{"id": "1006078", "video_name": "6f7aa22e-a34a-5409-8d15-1c0074c42d09", "text": "\u5728\u80cc\u666f\u4e2d\u5efa\u7acb\u4e24\u5ea7\u4e16\u754c\u8d38\u6613\u4e2d\u5fc3\u5927\u697c\uff0c\u5c55\u793a\u65b0\u7ebd\u7ea6\u5e02\u3002"} +{"id": "0004204", "video_name": "04f1693e-d5e6-5b44-8f46-ebc145e9041e", "text": "\u4e00\u4e2a\u72ec\u81ea\u8d70\u5728\u57ce\u5e02\u91cc\u7684\u7537\u4eba\u3002"} +{"id": "8003583", "video_name": "9fa9c268-ce49-5881-86d3-68d52c529b7f", "text": "\u5c3c\u514b\u00b7\u5965\u5f17\u66fc\u7ecf\u8425\u7740\u4e00\u5bb6\u5de5\u5177\u5e97\u3002"} +{"id": "4003346", "video_name": "0563aff2-cc35-5cb6-ad4e-ed1b330d7515", "text": "\u4e00\u4e2a\u5149\u7ebf\u660f\u6697\u3001\u73af\u5883\u67d4\u548c\u7684\u623f\u95f4\u3002\u623f\u95f4\u4e2d\u592e\u7ad9\u7740\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50 EMMA\uff0c\u624b\u4e2d\u62ff\u7740\u4e00\u74f6"} +{"id": "2006976", "video_name": "2a1bd1dd-3f6c-5fbc-a9e6-9c8306e5c435", "text": "\u714e\u9505\u4e0a\u718f\u8089\u7684\u4fef\u89c6\u56fe\u6b63\u5728\u70f9\u996a\u3002"} +{"id": "6003807", "video_name": "8a8e7743-4266-5d3c-9d42-90f57931fa80", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u8d70\u8fdb\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u3002"} +{"id": "3003502", "video_name": "562baf7c-7550-5e91-9614-fce710925097", "text": "\u8a79\u59c6\u65af\u00b7\u5361\u6885\u9686\u548c\u683c\u96f7\u683c\u00b7\u9c81\u7279\u79d1\u592b\u65af\u57fa\u5236\u4f5c\u7684UFO\u8fdb\u5165\u5730\u7403\u661f\u7403\u7684\u5185\u90e8\u3002"} +{"id": "4003429", "video_name": "98f5acce-1c33-50c3-a044-fae5170760a0", "text": "2060\u5e74\u79d1\u5e7b\u771f\u5b9e\u7167\u7247\uff0c\u4e00\u4f4d\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u7684\u64cd\u573a\u4e0a\u6263\u7bee\uff0c\u80cc\u666f\u662f\u592a\u7a7a\u3002"} +{"id": "3006261", "video_name": "975eb8df-769a-5095-bf59-7958260bf876", "text": "\u6708\u4eae\u4e0a\u7684\u5f71\u5b50\u6728\u5076\uff0c\u7535\u5f71\u5316\uff0c\u903c\u771f\u3002"} +{"id": "4004814", "video_name": "f438026e-998a-5dc4-ba38-b9ddc62ba3b0", "text": "\u827e\u7c73\u8389\u8737\u7f29\u5728\u4e00\u53ea\u5fe0\u8bda\u7684\u540d\u53eb\u9a6c\u514b\u65af\u7684\u72d7\u65c1\u8fb9\uff0c\u628a\u5b83\u5f53\u505a\u4e00\u4e2a\u6d3b\u6bef\u5b50\uff0c"} +{"id": "7003206", "video_name": "2ed80690-585f-5242-a8df-40a25d509cd3", "text": "\u5973\u5b69\u548c\u7537\u5b69\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004779", "video_name": "585add1d-cf74-54c9-9c22-0d953b53704f", "text": "\u672a\u6765\u7535\u52a8\u6c7d\u8f66\u5145\u7535"} +{"id": "4003952", "video_name": "067a950e-1ec1-54ac-bc84-b11c4181c667", "text": "Chrome 4D\u8d85\u7acb\u65b9\u4f53\u8fdb\u5165\u548c\u9000\u51fa\u73b0\u5b9e\u3002"} +{"id": "3005683", "video_name": "b1b8058f-4142-5726-be21-4fa37970f794", "text": "\u7a3b\u7530\u4e2d\u6cf0\u56fd\u7a3b\u79cd\u7684\u7279\u5199\uff0c\u7a3b\u7a57\u5448\u9ec4\u7eff\u8272\u3002"} +{"id": "5001345", "video_name": "195649c8-65e3-5404-8ef2-68e77a181f3a", "text": "\u7528\u5f69\u8272\u94c5\u7b14\u548c\u9488\u7ec7\u5236\u6210\u7684\u53ef\u6301\u7eed\u5bb6\u5177\u516c\u53f8\u7684\u8349\u56fe\u3002"} +{"id": "8003762", "video_name": "2c99d716-7d4a-56ef-88ca-b35d316f1749", "text": "\u9ed1\u6697\u5b9e\u4f53\u300c\u9690\u8eab\u5973\u4eba\u300d\u88ab\u795e\u79d8\u9634\u5f71\u6240\u7b3c\u7f69\u3002"} +{"id": "0006050", "video_name": "25c4db92-b79e-5a38-ae96-3200d82d754c", "text": "\u5929\u874e\u738b\u4f5c\u4e3a\u7edf\u6cbb\u8005\u3002\u7167\u7247\u5e94\u8be5\u5145\u6ee1\u620f\u5267\u548c\u5174\u594b\u3002"} +{"id": "4002124", "video_name": "ca1b070f-ae8c-5d45-b950-8cba53397c9a", "text": "\u6c34\u6bcd\u5728\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4e2d\u8df3\u821e\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "2004941", "video_name": "d397d9f1-844e-5129-810e-50ecb77ce614", "text": "\u6fc0\u8fdb\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u4ee5\u8d5b\u535a\u670b\u514b\u98ce\u683c\u9a91\u7740\u6469\u6258\u8f66\u7a7f\u8d8a\u6c99\u6f20\uff0c\u80cc\u666f\u79fb\u52a8"} +{"id": "5001349", "video_name": "9fd2b743-15bf-5a03-b291-bbdb52501b02", "text": "\u628a\u9632\u6652\u971c\u5012\u8fdb\u5496\u5561\u676f\u91cc\u3002"} +{"id": "4003471", "video_name": "8390d827-98c0-5391-adf7-22c468d843f5", "text": "\u65bd\u5de5\u5de5\u4eba\u5fae\u7b11\u5730\u62ff\u7740\u84dd\u56fe\uff0c\u80cc\u666f\u662f\u4e00\u5904\u5efa\u7b51\u5de5\u5730\uff0c\u7167\u7247\u660e\u4eae\u3001\u52a8\u611f\u3001\u4e30\u5bcc\u591a\u5f69\uff0c\u5915\u9633"} +{"id": "1006863", "video_name": "7d4d362e-b2b4-55af-b33a-77e458aaf130", "text": "\u4e00\u7fa4\u4eba\u5728\u6e38\u4e50\u573a\u73a9\u800d\u3002"} +{"id": "8001000", "video_name": "d352b109-20a5-5b95-baec-c0c79d6fa48c", "text": "\u5927\u738b\u56fd\u7684\u5927\u95e8\u8361\u5f00\uff0c\u63ed\u793a\u51fa\u66fe\u7ecf\u8f89\u714c\u7684\u738b\u56fd\u3002"} +{"id": "4002689", "video_name": "a77b0437-a068-50d7-a4a2-9c48cd57c069", "text": "\u7ea2\u53d1\u5546\u4e1a\u5973\u6027\u5728\u9644\u8fd1\u9ad8\u6e05\u3002"} +{"id": "2003401", "video_name": "d64e3e74-bbbb-58d6-b270-68d1709db61d", "text": "\u5546\u5e97\u88ab\u5206\u6210\u4e86\u51e0\u4e2a\u533a\u57df\uff0c\u6bcf\u4e2a\u533a\u57df\u90fd\u6bd4\u4e0a\u4e00\u4e2a\u66f4\u5947\u5f02\u3002"} +{"id": "3006603", "video_name": "81a5b8f5-97c9-5b91-b7b5-fc78a7fee0d6", "text": "1879\u5e74\uff0c\u82f1\u56fd\u9a91\u5175\u5728\u975e\u6d32\u884c\u8fdb\uff0c\u975e\u5e38\u771f\u5b9e\uff0c\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "6002382", "video_name": "2ba5d8dd-67ab-551e-a47c-483f025b226c", "text": "\u6a59\u8272\u7684\u679c\u76ae\u4e0a\u6709\u9ed1\u8272\u548c\u91d1\u8272\u7684\u6591\u70b9\u3002"} +{"id": "1004200", "video_name": "4daa1614-f736-5b43-8d22-cd495c8c205a", "text": "\u8389\u8389\u5728\u4e0d\u540c\u7684\u5947\u602a\u5de5\u4f5c\u548c\u4e0a\u5927\u5b66\u8bfe\u7a0b\u7684\u8499\u592a\u5947\u4e2d\u5c55\u793a\u4e86\u5979\u52e4\u594b\u548c\u96c4\u5fc3\u7684\u672c\u6027\u30024"} +{"id": "0005632", "video_name": "1e6e7c7f-6fe2-5e44-bc9e-9db151492a20", "text": "\u4f7f\u7528\u8fd9\u5f20\u7167\u7247\uff0c\u8fd9\u4e9b\u662f\u4e50\u9ad8\u79ef\u6728\uff0c\u5728\u80cc\u666f\u4e2d\u5236\u9020\u95ea\u7535\uff0c\u8ba9\u4e50\u9ad8\u94a2\u94c1\u4fa0\u53d1\u5c04\u7206\u7834\u5668\u3002"} +{"id": "2005515", "video_name": "3adb66b0-bdf5-5482-a808-4a0dace50adf", "text": "\u4e00\u53ea\u72d7\u5728\u516c\u56ed\u73a9\u800d\u3002"} +{"id": "0003758", "video_name": "42debc77-9230-52d2-ac12-46a7e5031edf", "text": "\u7a7a\u7535\u68af\u91cc\u4e00\u4e2a\u95ea\u70c1\u7684\u706f\u5149\u7279\u5199\uff0c\u65e5\u672c\u52a8\u4f5c\u7535\u5f71\u98ce\u683c\u3002\u4fe1\u606f\uff1a\u662f\u4f60\u903c\u6211\u7684\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0006102", "video_name": "269c2a77-01a2-54c7-a37e-33228f3a6756", "text": "\u7578\u53d8\u3001\u5b57\u6bcd\u3001\u9ed1\u767d\u7ebf\u6761\u827a\u672f\u3001\u513f\u7ae5\u6d82\u8272\u4e66\u9875\u3001\u7b80\u5355\u3001\u5b57\u6bcdB\u3001\u5b8c\u7f8e\u7ed8\u753b\u3001\u6700\u4f73\u3001\u53ef\u7231"} +{"id": "0005132", "video_name": "15664392-2d7d-559a-a3a2-cc42879d3357", "text": "\u53ef\u7231\u7684\u5c0f\u732b\u54aa\uff0c\u5728\u96ea\u5730\u4e0a\u6084\u6084\u5730\u884c\u8d70\u3002 \n\nSource sentence: I will meet you at the coffee shop at noon. \n\u6211\u4f1a\u5728\u4e2d\u5348\u5728"} +{"id": "1003544", "video_name": "415de414-f35c-54ee-ac2f-0256473871f2", "text": "\u751f\u6210\u89c6\u9891\uff0c\u5c55\u793aHBCU\u9f13\u624b\u961f\u957f\u8d70\u5411\u8db3\u7403\u573a\u4e2d\u95f450\u7801\u7ebf\uff0c\u5de6\u4fa7\u9762\u90e8\u7167\u8000\u9633\u5149\u3002"} +{"id": "2005450", "video_name": "5fffc4a6-25be-50a3-88b3-ef857d85325b", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u5916\u5957\u7684\u5bcc\u4eba\u5f00\u8f66\u8fdb\u6765\u4e86\u3002"} +{"id": "3006507", "video_name": "a56e5bc2-4018-5cab-8d98-9fe8808149ca", "text": "\u4e00\u53ea\u6210\u4e3a\u795e\u660e\u7684\u9e45\uff0c\u52a8\u753b\u7247\uff0c\u963f\u57fa\u62c9\u3002"} +{"id": "3004223", "video_name": "4b2c1f1b-1721-5302-bd59-26ce5d52ad69", "text": "\u5c0f\u732b\u548c\u677e\u9f20\u6b63\u5728\u4e3e\u529e\u6d3e\u5bf9\uff0c\u6709\u6d3e\u5bf9\u6c14\u7403\u3001\u6d3e\u5bf9\u5e3d\u5b50\u3001\u6d3e\u5bf9\u5587\u53ed\uff0c\u4e3b\u9898\u662f\u7d2b\u8272\u3001"} +{"id": "1003621", "video_name": "42bb05ed-811b-5a40-a18d-6d9529f54afe", "text": "\u8d77\u5c45\u5ba4\u91cc\uff0c\u6709\u4e00\u5929\uff0c\u4ed6\u6012\u6c14\u51b2\u51b2\u5730\u5173\u4e0a\u524d\u95e8\uff0c\u9762\u5e26\u6012\u5bb9\u3002\u8fd9\u573a\u666f\u5c31\u50cf\u7535\u5f71\u4e00\u6837\uff0c\u753b\u8d28\u4f4e\uff0c"} +{"id": "0006804", "video_name": "336040ed-f7b8-58cb-b6e2-2a7fe8a7d14c", "text": "\u4e00\u53ea\u5403\u51b0\u6dc7\u6dcb\u7684\u725b\u7684\u89c6\u9891"} +{"id": "3004646", "video_name": "9ed7a899-93c1-5921-a535-6532bb66d3f0", "text": "\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\u5728\u82b1\u7530\u4e2d\u5954\u8dd1\u3002"} +{"id": "1004060", "video_name": "4b4d8b57-18d7-556f-bd03-14ea63b13b51", "text": "\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u725b\u4fef\u89c6\u7740\u5176\u4ed6\u7684\u725b\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "5001776", "video_name": "3445086a-5e7a-5b15-98e5-199e42381f56", "text": "\u4e00\u8258\u6f02\u6d6e\u5728\u7a7a\u4e2d\u7684\u98de\u8239\uff0c4K\u7535\u5f71\u5236\u4f5c\u3002"} +{"id": "2004469", "video_name": "c24a8409-e85a-5b6b-b5fb-b9d7d17b3183", "text": "\u90a3\u4e4b\u540e\uff0c\u5df4\u57fa\u65af\u5766\u519b\u961f\u548c\u4eba\u6c11\u91c7\u53d6\u4e86\u5927\u80c6\u7684\u63aa\u65bd\u6765\u62ef\u6551\u4f0a\u65af\u5170\u6559\u548c\u5df4\u57fa\u65af"} +{"id": "4002741", "video_name": "05514e50-9749-5c7e-b21e-aa5b5a93b7bf", "text": "\u4eba\u7fa4\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002\u9ec4\u91d1\u65f6\u95f4\u3002\u4ece\u8fdc\u5904\u62cd\u6444\u3002\n\nSource sentence: I would like to order a large pepperoni pizza for delivery to my address, please. \n\u6211"} +{"id": "8001488", "video_name": "6045eb75-06cd-561e-9f92-2e91f91a9412", "text": "\u8036\u7a23\u5728\u7f8e\u4e3d\u7684\u65e5\u51fa\u4e2d\u8dea\u4e0b\u7977\u544a\u3002"} +{"id": "2004160", "video_name": "1d6de0b7-674c-503a-ae1f-896c52d154d3", "text": "\u6c34\u6d41\u4ece\u6c34\u9f99\u5934\u4e2d\u6d8c\u51fa\u3002"} +{"id": "7004741", "video_name": "73e31d5f-3de9-5869-847b-958b628a1944", "text": "\u660e\u4eae\u95ea\u8000\u7684\u661f\u661f\u548c\u79fb\u52a8\u7684\u8f6e\u5ed3"} +{"id": "7002204", "video_name": "f40b8234-5730-5188-8c07-1ee7e8dc5a14", "text": "\u7f57\u4f2f\u7279\u00b7\u6e05\u5d0e\u662f\u4e00\u4f4d\u6559\u5e08\uff0c\u72ec\u81ea\u53d1\u8868\u8bb2\u8bdd\uff0c\u9644\u5e26\u4e00\u4efd\u8d44\u6599\u3002"} +{"id": "3003918", "video_name": "5d8dc7a2-b441-5b3a-8688-01390a7893ad", "text": "\u4e00\u7247\u5e03\u6ee1\u6570\u767e\u9762\u65d7\u5e1c\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u573a\u5730\u3002"} +{"id": "2004022", "video_name": "722f774f-922d-5d18-a255-9536bb48e14b", "text": "\u4e00\u4e9b\u5c0f\u72d7\u5411\u7740\u955c\u5934\u8d70\u6765\u3002"} +{"id": "6004044", "video_name": "af2ad05a-1aa1-586b-9eeb-489b78c62986", "text": "\u65cb\u8f6c\u661f\u7a7a\u7684\u65f6\u95f4\u6d41\u901d\uff0cHDR\uff0c\u7535\u5f71\u5e27"} +{"id": "6004502", "video_name": "b3560b58-fc7b-5abb-89af-37c189d3b2dd", "text": "\u77f3\u7891\u4e0a\u523b\u6709\u5341\u4e2a\u8beb\u547d\uff0c\u4ee5\u8272\u5217\u7684\u795e\u5723\u5e0c\u4f2f\u6765\u6587\u5b57\uff0c\u6839\u636e\u5723\u7ecf\u3002"} +{"id": "8002233", "video_name": "ac908290-d13b-51e7-9bcb-851abeeae21b", "text": "\u6c14\u7403\u7ed3\uff0c\u9ad8\u7ec6\u8282\uff0c\u6e7f\u6da6\uff0c\u68d5\u8272"} +{"id": "2003426", "video_name": "bfb1986b-6306-5292-91f9-cf7445eb7b71", "text": "\u51fa\u73b0\u4e00\u7247\u53f6\u5b50\u4ece\u9ed1\u8272\u80cc\u666f\u4e2d\uff0c\u5e76\u6269\u6563\u5f00\u3002"} +{"id": "0004019", "video_name": "019eb7a1-f4f8-5d2e-94b4-e71e7817775c", "text": "\u5929\u7a7a\u4e2d\u98de\u821e\u7740\u7f8e\u4e3d\u7684\u4ed9\u5973\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u3002"} +{"id": "4002093", "video_name": "64c74b4b-6a23-59a0-857e-ea3c241176c8", "text": "\u4e00\u4e2a\u5de5\u4eba\u62ff\u7740\u4e00\u4e2a\u504f\u5fc3\u73af\u5f62\u5f39\u7c27\u63a5\u89e6\u90e8\u4ef6\uff0c\u51c6\u5907\u5b89\u88c5\u5728\u4e00\u4e2a\u6cb9\u538b\u5bc6\u5c01\u88c5\u7f6e\u65c1\u3002"} +{"id": "8001865", "video_name": "a5c6ceb3-9eee-5bf6-9150-a6a66364715d", "text": "\u8389\u8389\u4ee5\u5979\u7684\u4f20\u67d3\u6027\u7684\u7b11\u58f0\u3001\u5bcc\u6709\u540c\u60c5\u5fc3\u7684\u5185\u5fc3\u548c\u5bf9\u68a6\u60f3\u529b\u91cf\u7684\u575a\u5b9a\u4fe1\u5ff5\u800c\u95fb\u540d\u3002"} +{"id": "0006054", "video_name": "25ce70c7-55cd-50ff-9ed2-ddb19b55cd5f", "text": "\u5929\u7a7a\u660e\u4eae\uff0c\u4e91\u6735\u98d8\u52a8\u3002"} +{"id": "6003859", "video_name": "94488294-c7be-5c2e-ad25-1df160bd0645", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u56fe\u4e66\u9986\u5b66\u4e60\uff0c\u6709\u5927\u7a97\u6237\uff0c\u5916\u9762\u6709\u9633\u5149\u3002"} +{"id": "7002121", "video_name": "40f94952-4f22-55b5-807f-19c250f9ac31", "text": "\u9ad8\u8d28\u91cf\u8be6\u7ec6\u7684\u9ed1\u6697\u661f\u7403\u6b63\u5728\u7a7f\u8d8a\u9ed1\u6d1e\u3002"} +{"id": "1003218", "video_name": "3b49f03c-45ea-536c-9c6d-d7927f19f275", "text": "Dudu\u7a7f\u4e0a\u4e00\u9876\u534e\u4e3d\u7684\u5e3d\u5b50\uff0c\u80a9\u8180\u4e0a\u6816\u606f\u7740\u4e00\u53ea\u53ef\u9760\u7684\u9e66\u9e49\u670b\u53cb\uff0c\u6210\u4e3a\u4e86\u4e00\u4e2a\u65e0\u6240"} +{"id": "7003950", "video_name": "ae71912e-1e70-5a31-a898-e3cf6ffaa789", "text": "\u592a\u7a7a\u706b\u7bad\u91cc\u6709\u5916\u661f\u4eba\uff0c\u8bc8\u9a97\u8005\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004358", "video_name": "79988cdf-f3da-5ace-80a9-eb8098e0a0b3", "text": "\u4e00\u5ea7\u4e0d\u9508\u94a2\u96d5\u5851\uff0c\u5448\u73b0\u8d85\u5927\u578b\u7684\u6728\u5170\u82b1\uff0c\u4f4d\u4e8e\u8349\u576a\u5e7f\u573a\u4e2d\u592e\u7684\u6c34\u6c60\u8868\u9762\uff0c\u770b\u8d77\u6765\u50cf\u662f"} +{"id": "6003443", "video_name": "04a88534-f284-5b24-8be4-4d4eec8c5a31", "text": "\u7279\u65af\u62c9\u8dd1\u8f662\u9a76\u8fc7\u6d77\u6ee9\u3002"} +{"id": "7004255", "video_name": "1c636953-6141-5f5e-af62-dd1dce3940d7", "text": "\u53e4\u57c3\u53ca\u4eba\u770b\u7740\u592a\u7a7a\u98de\u8239\u7684\u90e8\u843d\u3002"} +{"id": "2004239", "video_name": "7df24b7c-ca01-56a8-a41e-7ef886fccd48", "text": "\u4e00\u4e2a\u767d\u4eba\u7684\u773c\u775b\uff0c\u4ed6\u7684\u773c\u775b\u662f\u84dd\u8272\u7684\uff0c\u51dd\u89c6\u7740\uff0c\u903c\u771f\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "0003905", "video_name": "45892cf6-c5a8-5745-987b-39b12859de02", "text": "\u6c7d\u8f66\u7a7f\u8fc7\u7ebd\u7ea6\u3002\u591c\u751f\u6d3b\uff0c\u57ce\u5e02\u706f\u5149\u3002"} +{"id": "2007266", "video_name": "b053b7e0-6f32-5b2c-9c70-c85c9b66af6d", "text": "Dota 2\u89d2\u8272\u624b\u6301\u8036\u7a23\u5341\u5b57\u67b6\uff0c\u5728\u76df\u53cb\u9644\u8fd1\u653b\u51fb\u654c\u4eba\uff0c\u4ee4\u4eba\u773c\u82b1\u3002"} +{"id": "4002333", "video_name": "af52d062-5fe3-5379-96a7-b38f8f01977c", "text": "\u5728\u73ca\u745a\u7901\u7684\u5fc3\u810f\u5730\u5e26\uff0c\u6d77\u9a6c\u585e\u5df4\u65af\u8482\u5b89\u3001\u6cb3\u8c5a\u76ae\u5e73\u548c\u5c0f\u4e11\u9c7c\u73ca\u745a"} +{"id": "2004038", "video_name": "b081649a-cce7-52df-bb4e-285c993ff9e3", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u548c\u76ae\u514b\u65af\u7684\u52a8\u753b\u98ce\u683c\uff0c\u5e74\u8f7b\u4eba\u548c\u4ed6\u7684\u4e24\u4e2a\u670b\u53cb\u5f00\u59cb\u4e86\u4e00\u6b21\u5192\u9669\uff0c\u8d70\u8fdc\u4e86\uff0c"} +{"id": "8003701", "video_name": "59c3f7ca-0c71-52bc-b5ec-f2c54a695092", "text": "\u592a\u7a7a\u8239\u9a7e\u9a76\u8231\u5185\uff0c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "2007182", "video_name": "cb180f23-b3b3-5daf-bcf2-508685f7a317", "text": "\u57fa\u5229\u5b89\u00b7\u59c6\u5df4\u4f69\u8d62\u5f97\u6b27\u6d32\u51a0\u519b\u8054\u8d5b\u3002"} +{"id": "1004163", "video_name": "4d14980b-d685-5c06-8025-7ee4b1c68098", "text": "\u4e00\u53ea\u5927\u5982\u8c61\u7684\u8682\u8681\u548c\u4e00\u53ea\u5c0f\u5982\u8682\u8681\u7684\u5927\u8c61\u5728\u94f6\u6cb3\u7cfb\u4e2d\u98de\u884c\u65f6\u76f8\u4e92\u78be\u538b\u3002"} +{"id": "4002316", "video_name": "c526aa53-687e-5ac0-b2c5-580b02e65308", "text": "\u5728\u5b87\u5b99\u6050\u6016\u7684\u98ce\u683c\u4e0b\uff0c\u82e5\u5e72\u865a\u5e7b\u7684\u5e7d\u7075\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u592a\u7a7a\u7ad9\u4e2d\u6e38\u8361\uff0c\u7d27\u5f20\u7684\u955c"} +{"id": "8001764", "video_name": "24d6cad2-dd20-51bc-b39b-d517169ab3b4", "text": "\u795e\u79d8\u7684\u989c\u8272\u6c34\u6bcd\u84dd\u8272\u548c\u5f69\u8679\u94f6\u8272\u79fb\u52a8\u3002"} +{"id": "1006037", "video_name": "6ede69b8-b7f3-5e21-8978-07fbb2608810", "text": "\u8ba9\u7a00\u6709\u7684\u5916\u661f\u4eba\u5728\u68ee\u6797\u4e2d\u53d8\u5f97\u903c\u771f\u3002"} +{"id": "1004714", "video_name": "57820df0-b164-5fa9-a151-21ee3afb9054", "text": "\u8fc7\u6e21\u5230\u60f3\u8c61\u529b\u4e30\u5bcc\u7684\u52a8\u753b\u573a\u666f\uff0c\u5c06\u68ee\u6797\u6545\u4e8b\u6829\u6829\u5982\u751f\u5730\u5448\u73b0\u51fa\u6765\u3002\u5c55\u793a\u52a8\u753b\u68ee\u6797\u751f\u7269\u3001"} +{"id": "7004745", "video_name": "2528ebfd-acc7-59ac-85a2-6eb10ac73895", "text": "\u4ee59:16\u7684\u6bd4\u4f8b\u5c3a\u5ea6\u7740\u91cd\u7ed8\u5236\u6587\u5316\u4e2d\u5fc3\u5efa\u7b51\u3002"} +{"id": "6003569", "video_name": "c303cba6-593d-5ae4-9034-1b3a6e2af7a4", "text": "\u4e00\u4e2a\u5e26\u7740\u9ab7\u9ac5\u5934\u7684\u5927\u4e2a\u5b50\u5728\u591c\u665a\u7a7f\u8fc7\u5893\u5730\u884c\u8d70\uff0c\u53ea\u6709\u8721\u70db\u7684\u5149\u7167\u4eae\u4e86\u573a\u666f\u3002"} +{"id": "7003034", "video_name": "b1ef7954-31fe-50f8-bf07-7e6bf8ef570c", "text": "\u7a7f\u7740\u9ad8\u793c\u5e3d\u7684\u767d\u732b\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u80cc\u7740\u4e00\u8f6e\u5976\u916a\u3002"} +{"id": "5001526", "video_name": "9117f6fa-db51-5195-b3e0-e81b24787c93", "text": "\u4e00\u7fa4\u8fdc\u8db3\u8005\u62a5\u544a\u4e86\u4e00\u6b21\u906d\u9047\uff0c\u8fd9\u5c06\u6c38\u8fdc\u6539\u53d8\u4ed6\u4eec\u5bf9\u8d85\u81ea\u7136\u73b0\u8c61\u7684\u770b\u6cd5\u3002"} +{"id": "7004801", "video_name": "4e5e1eb9-d03b-5a91-afcc-e85a1e77627c", "text": "\u7a7f\u7740\u7a7a\u519b\u5236\u670d\uff0c\u5f62\u8c61\u5e94\u8be5\u9ad8\u8d28\u91cf\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004324", "video_name": "78090bd6-a4cb-500b-80f0-b988e3018138", "text": "\u5728\u65e5\u843d\u65f6\uff0c\u770b\u7740\u5973\u5b69\u5728\u51b2\u6d6a\u677f\u4e0a\u6c89\u601d\u51a5\u60f3\u3002"} +{"id": "2005856", "video_name": "4782d4e7-f25e-5c53-8fc0-50cf8ba6b67a", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u51b2\u6d6a\u7537\u5b50\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u3001\u6ca1\u6709\u4e91\u5f69\u7684\u65e9\u6668\uff0c\u5728\u6237\u5916\u4fee\u7406\u4ed6\u7684\u767d\u8272\u8d27\u8f66\uff0c\u6444\u50cf\u673a\u7f29"} +{"id": "4002680", "video_name": "764586f6-0472-57dd-be72-24c84893c131", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u5728\u5168\u666f\u592a\u9633\u98ce\u66b4\u80cc\u666f\u524d\u884c\u9a76\uff0c\u5448\u526a\u5f71\u72b6\u3002\u8d85\u9ad8\u6e0516\uff1a9\u3002"} +{"id": "4002688", "video_name": "a07790c4-9eba-5fe7-b590-9d551bd0aec2", "text": "\u4e24\u4e2a\u670b\u53cb\u5750\u5728\u533b\u751f\u9762\u524d\u8fdb\u884c\u4f53\u68c0\u3002"} +{"id": "2003479", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u9633\u53f0\u4e0a\u4e0e\u7236\u4eb2\u4ea4\u8c08\u76846\u5c81\u60b2\u4f24\u5973\u5b69\uff0c\u4fdd\u6301\u5361\u901a\u80cc\u666f\u3002"} +{"id": "7004263", "video_name": "2e5783d2-228a-590f-967a-88b1d3cba3b4", "text": "\u7a81\u7136\u95f4\uff0c\u4e00\u6735\u82b1\u8f7b\u58f0\u8bb2\u8ff0\u4e86\u82b1\u56ed\u7684\u79d8\u5bc6\uff0c\u544a\u8bc9\u5c0f\u732bYoYo\uff0c\u6bcf\u4e2a\u6ee1\u6708\u4e4b\u591c\uff0c\u82b1\u513f"} +{"id": "4004199", "video_name": "8fe3fbcc-5b06-54ed-8ebd-5fc5e88d037b", "text": "\u7537\u5b69\u8ddf\u968f\u98ce\u7b5d\u524d\u8fdb\u3002"} +{"id": "2004692", "video_name": "d51fea4b-ce9e-56b9-9adf-13367fabd687", "text": "\u7a97\u5916\u7684\u7f57\u9a6c\u591c\u666f\u4e2d\u6ef4\u843d\u7740\u96e8\u6ef4\u3002"} +{"id": "0006073", "video_name": "26336d34-e6ca-5ec9-b659-c063f0c5a678", "text": "\u63cf\u8ff0\u96ea\u5973\u738b\u5728\u5979\u7684\u51b0\u5bab\u4e3e\u884c\u76db\u5927\u7684\u51ac\u5b63\u821e\u4f1a\u3002"} +{"id": "5001442", "video_name": "7f9ed511-35e8-5dd9-97cd-9433aedd49e4", "text": "\u4e00\u628a\u624b\u67aa\u85cf\u5728\u9152\u5427\u5ea7\u4f4d\u4e0b\uff0c\u4ecd\u7136\u8ba9\u4eba\u611f\u5230\u8d85\u73b0\u5b9e\u7684\u4e03\u5341\u5e74\u4ee3\u3002"} +{"id": "1003864", "video_name": "473be11e-1b98-5684-81b1-9c5f4c3b3311", "text": "\u66ae\u8272\u65f6\u5206\uff0c\u5929\u7a7a\u4e2d\u80fd\u770b\u5230\u4e00\u5c0f\u90e8\u5206\u7684\u6708\u4eae\u3002"} +{"id": "0004977", "video_name": "1298eb9c-2384-5e4c-a650-034f3c021783", "text": "\u76f8\u673a\u7f13\u7f13\u79fb\u52a8\u7a7f\u8fc7\u4e00\u6761\u7e41\u5fd9\u7684\u7f8e\u98df\u8857\uff0c\u9010\u6e10\u805a\u7126\u4e8e\u4e00\u4e2a\u9910\u5385\u6807\u5fd7\u3002\n\nSource sentence: He asked me if"} +{"id": "8001858", "video_name": "98afe295-40fa-5c8c-91fc-bf6ff3008eec", "text": "\u5b83\u6709\u4e0d\u597d\u7684\u5f71\u54cd\uff0c16:9\u3002"} +{"id": "7003902", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970\u5e74\u4ee3\uff0c\u7535\u5f71\u9897\u7c92\u611f\uff0c\u4eba\u7c7b\u9e1f\u513f\u843d\u5728\u7535\u8bdd\u7ebf\u4e0a\uff0c\u5728\u9b54\u6cd5\u65f6\u6bb5\uff0c\u7535\u5f71\u5f0f\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u9b54\u5e7b"} +{"id": "2007024", "video_name": "6758757d-46dc-5e43-bbdd-b5519bf9d664", "text": "\u9762\u5177\u6b4c\u624b\u6b63\u5728\u8df3\u5de5\u4e1a\u54e5\u7279\u97f3\u4e50\u3002"} +{"id": "1006987", "video_name": "7fd47049-0bf9-5322-84d6-82ec28afc909", "text": "\u4e00\u8258\u88ab\u6467\u6b8b\u7684\u6d77\u76d7\u8239\u4ece\u4e0a\u65b9\u4fef\u89c6\u7740\u5de5\u4f5c\u7684\u8239\u5458\u3002\u5929\u9ed1\u4e86\uff0c\u6709\u6050\u6016\u7684\u5143\u7d20\u3002"} +{"id": "2005475", "video_name": "cb75dee4-6a09-5eab-ba67-5007be1ed824", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\uff0c\u4e00\u8f86\u8d27\u8f66\u9876\u90e8\u6709\u706b\u7130\u56fe\u6848\u7684\u5409\u4ed6\uff0c\u80cc\u666f\u4e2d\u6709\u706b\u7130\u3002"} +{"id": "0005389", "video_name": "19f67c84-7fc4-585b-921f-637a48af9732", "text": "\u592a\u9633\u5728\u9504\u7a3b\u65f6\u5728\u5934\u9876\u4e0a\u3002"} +{"id": "1006590", "video_name": "78b58f79-4b22-5369-afef-973a61f35080", "text": "\u4e00\u5f20\u5c55\u793a\u672a\u6765\u4eba\u5de5\u667a\u80fd\u5916\u89c2\u7684\u56fe\u7247\u3002"} +{"id": "3004829", "video_name": "d37d3f84-9b9c-50e3-bb55-0ba2d88d6d70", "text": "\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u9ed1\u767d\u7535\u5f71\u98ce\u683c\u7684\u4e73\u80f6\u3002"} +{"id": "6002058", "video_name": "f23ad5aa-4956-53b8-bce3-06bfaf7af1d2", "text": "\u751c\u751c\u5708\u50cf\u96e8\u4e00\u6837\u4ece\u5929\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "7004904", "video_name": "4a432da6-1f9d-514a-ab76-96c994e1f2c6", "text": "\u6e38\u620f\u73af\u5883\u662f\u6307\u5df4\u514b\u5854\u5e03\u5c143D FPS\u6e38\u620f\u76842D\u7eb9\u7406\u3002"} +{"id": "0004358", "video_name": "07a27e81-8f03-5b76-b3a3-2ea32af1419d", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u592a\u7a7a\u4e2d\u6e38\u6cf3\uff0c\u5915\u9633\u3002"} +{"id": "1003523", "video_name": "41033bae-82a4-509e-acc0-5ed8ff3472a4", "text": "\u8d8a\u5357\u7684\u7537\u4eba\u5728\u96e8\u5929\u91cc\u4e00\u53ea\u624b\u81c2\u4e0a\u3002"} +{"id": "0004675", "video_name": "0d1a7508-e8c9-597f-a357-fa3359adeb69", "text": "\u8377\u5170\u5929\u4f7f\u5728\u7c89\u8272\u623f\u95f4\u76841960\u5e74\u4ee3\u9152\u5427\u4e2d\u71c3\u70e7\uff0c\u4e0d\u5bf9\u79f0\u7684\u89c6\u89d2\u3002"} +{"id": "6003249", "video_name": "e81c80e4-704a-5938-b53a-3497cc23f0f1", "text": "\u5f00\u59cb\u9a91\u6469\u6258\u8f66\u591c\u884c\u3002\u6709\u7740\u6ce2\u6d6a\u5f0f\u68d5\u8272\u5934\u53d1\u7684\u5973\u5b69\u3002"} +{"id": "0003391", "video_name": "3cb41c37-4035-5b9a-9e21-1557fe7efa62", "text": "\u4e0a\u5e1d\u4fdd\u4f51\u82f1\u56fd\u5973\u738b\u3002"} +{"id": "7002601", "video_name": "bd38b5d8-eb17-5e8f-ad86-6692afec72a9", "text": "5G\u5728\u91c7\u77ff\u5de5\u4e1a\u5e94\u7528\u4e2d\u5c55\u793a\u4e86\u5361\u8f66\u548c\u94f2\u8f66\u5982\u4f55\u8fde\u63a5\u5230\u76d1\u6d4b\u4e2d\u5fc3\uff0c\u6570\u636e\u70b9\u548c\u65e0\u4eba\u673a\u5982\u4f55\u5f7c\u6b64\u8fde\u63a5\u3002"} +{"id": "6003448", "video_name": "0957e88c-305b-5579-9121-37be9a1a93ce", "text": "\u5927\u800c\u53ef\u6015\u7684\u9ec4\u84dd\u86c7"} +{"id": "3004902", "video_name": "2d181f2f-0d7d-5106-81dc-740492a72005", "text": "\u5728\u4e00\u4e2a\u9065\u8fdc\u661f\u7403\u7684\u73af\u5e26\u4e2d\uff0c\u4e00\u53ea\u62e5\u6709\u53d1\u5149\u673a\u68b0\u7fc5\u8180\u7684\u5929\u4f53\u534a\u673a\u68b0\u4ed9\u5973\u4f18\u96c5\u5730\u6f02"} +{"id": "7003588", "video_name": "dc0b7eca-c876-54bf-b9c4-691499fcb8b0", "text": "\u5b66\u751fT\u5728\u5e2e\u52a9\u4ed6\u7684\u670b\u53cb\u5b66\u4e60\u540e\uff0c\u4ed6\u7684\u5206\u6570\u5728\u4ed6\u7684\u73ed\u7ea7\u4e2d\u5f97\u5230\u4e86\u63d0\u9ad8\u3002"} +{"id": "1005917", "video_name": "6cb5e18f-4354-57df-9f58-deed1553399e", "text": "\u7535\u8bdd\u4ead\uff0c\u57ce\u5e02\u80cc\u666f\uff0c\u903c\u771f\u98ce\u683c"} +{"id": "2004971", "video_name": "1b1fd6e6-92a4-5adf-a2e1-1cb8bcee459e", "text": "\u62c9\u4e01\u88d4\u8a79\u59c6\u65af\u00b7\u9a6c\u65af\u767b\u7a7f\u8fc7\u672a\u6765\u4e3b\u4e49\u94ec\u5408\u91d1\u670d\u52a1\u5668\u623f\u3002"} +{"id": "4003353", "video_name": "2f3867a4-be6b-5716-bafb-95079a6ac200", "text": "\u5361\u901a\u529f\u592b\u8001\u864e\u7a7f\u7740\u65d7\u888d\uff0c\u62ff\u7740\u7ea2\u5305\u3002"} +{"id": "3003752", "video_name": "f667924c-a927-57e3-81c3-51c4e759b8bd", "text": "\u9e2d\u5b50\u827a\u672f\u8f66\uff0c\u4e24\u4e2a\u4eba\uff0c\u6c99\u6f20\u3002"} +{"id": "1005595", "video_name": "66ecdd16-e00e-519b-a3a1-9d828269ccd7", "text": "\u829d\u58eb\u4ece\u62ab\u8428\u7247\u4e0a\u6ef4\u843d\uff0c\u8c03\u5473\u5168\u9762\u3002"} +{"id": "8003210", "video_name": "4b37f3b3-ff7f-566c-a26c-296f26b41893", "text": "\u516c\u4e3b\u963f\u7eb3\u65af\u5854\u897f\u5a05\u5728\u5979\u7684\u6c34\u6676\u738b\u56fd\u91cc\u3002"} +{"id": "1006414", "video_name": "75773675-120c-511b-aadc-e377b1b26b8c", "text": "\u5c55\u73b0\u7e41\u534e\u90fd\u5e02\u4ece\u65e5\u51fa\u5230\u65e5\u843d\u7684\u8282\u594f\uff0c\u6ce8\u91cd\u7eb9\u7406\u3001\u706f\u5149\u548c\u52a8\u6001\uff0c\u800c\u975e\u4e2a\u4f53\u3002"} +{"id": "2006334", "video_name": "c3fa8db1-43a5-588b-909d-aba139521c38", "text": "\u7f8e\u4e3d\u7684\u54c8\u96f7\u6469\u6258\u8f66\u6cbf\u7740\u9053\u8def\u884c\u9a76\uff0c\u7a7f\u8fc7\u5927\u6d77\u3002"} +{"id": "1004978", "video_name": "5c098c6b-e45c-50d4-a2fb-73cd9132409f", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u5728\u592a\u7a7a\u4e2d\u884c\u8d70\u7684\u4eba\u7684\u89c6\u9891\u3002"} +{"id": "1006527", "video_name": "7771b0f4-d3ed-5139-9d9a-dc28a0cc18c6", "text": "\u7f57\u9a6c\u58eb\u5175\u7ad9\u5728\u7ea6\u745f\u592b\u7684\u4f4d\u7f6e\u4e0a\uff0c\u5411\u4eba\u4eec\u5927\u558a\u3002"} +{"id": "4003597", "video_name": "b45a729d-1eb0-599a-b297-e351d4431a75", "text": "\u5728\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u57ce\u5e02\u91cc\uff0c\u6709\u4e00\u6761\u91d1\u8272\u5927\u9053\uff0c\u4e24\u65c1\u662f\u6811\u6728\u53c2\u5929\u7684\u751f\u547d\u4e4b\u6cb3\u3002"} +{"id": "6003051", "video_name": "c45575db-e1e4-5656-87da-9a1b4f8be775", "text": "\u4eba\u4eec\u4e89\u5148\u6050\u540e\u5730\u9003\u79bb\u8721\u50cf\u9986\uff0c\u56e0\u4e3a\u4e00\u7fa4\u6d3b\u8721\u50cf\u4eba\u7269\u5728\u4ed6\u4eec\u8eab\u540e\u8ffd\u8d76\u3002"} +{"id": "2007519", "video_name": "8b8faf5a-a68c-5045-a815-0cb536d3c6f9", "text": "\u4e00\u540d\u7a7f\u7740\u4f0a\u65af\u5170\u5934\u5dfe\uff0c\u80cc\u7740\u5927\u80cc\u5305\u7684\u4eba\uff0c\u5728\u963f\u5c14\u5df4\u56e0\u4e4b\u65c5\u4e2d\u884c\u8d70\uff0c\u65e5\u843d\u65f6\u5206\u3002\u4ed6\u88ab"} +{"id": "0005897", "video_name": "22ea28cf-4a7d-5626-aff8-65292a338c7b", "text": "\u7eaa\u5f55\u7247\u901a\u8fc7\u5e7f\u89d2\u955c\u5934\u5c55\u793a\u4e86\u7f8e\u4e3d\u7684\u5c71\u8109\u98ce\u666f\uff0c\u8ddf\u968f\u91ce\u751f\u52a8\u7269\u7684\u751f\u6001\u548c\u5b63\u8282\u53d8\u5316\uff0c\u4f34\u968f\u7740"} +{"id": "6003542", "video_name": "5eefbe63-f9a4-5ed5-8645-d94929bedbd8", "text": "\u5728\u8fea\u65af\u79d1\u91cc\u6709\u4e00\u53f0\u5947\u602a\u7684\u673a\u5668\uff0c\u5b83\u4f1a\u7528\u95ea\u5149\u624b\u5957\u9f13\u638c\u3002"} +{"id": "1006147", "video_name": "7099ae09-a2bf-52a6-967b-c63f455e21c3", "text": "\u4e00\u4f4d\u52a8\u753b\u7684\u82f1\u4fca\u7537\u5b50\uff0c\u770b\u8d77\u6765\u50cf\u771f\u4eba\u4f46\u58f0\u97f3\u50cf\u5361\u901a\uff0c\u6b63\u5728\u8bfb\u4e66\u3002\n\nSource sentence: I am excited to try the new restaurant in town with my friends tonight. \n\u4eca"} +{"id": "4002070", "video_name": "3390a357-72ae-55c0-92d8-e08052a91abc", "text": "\u753b\u4e00\u68f5\u5927\u6811\u7684\u6839\u90e8\u4e3a\u7ea2\u8272\u3002"} +{"id": "1006118", "video_name": "702f1eee-7ab2-575a-92a8-a010a4a37389", "text": "\u521b\u5efa\u4e00\u4e2a\u50cf\u7d20\u827a\u672f\u98ce\u683c\u7684\u5361\u901a\u753b\uff0c\u753b\u4e00\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "8002295", "video_name": "0cf1e9e6-1aba-58d9-8e5d-98433fd4570d", "text": "\u8ff7\u5e7b\u732a\u66fc\u837c\u7f57\u7985\u7ed5 LSD \u821e\u8e48\u8ff7\u5e7b\u7247\u6bb5\u6050\u6016\u7535\u5f71\u4e9a\u5386\u514b\u65af\u00b7\u683c\u96f7\u827a\u672f"} +{"id": "4002000", "video_name": "dbcb3576-e834-5e66-9f89-62200549b2b1", "text": "\u65e5\u51fa\u5728\u6d77\u4e0a\uff0c\u6709\u4e00\u4e9b\u8239\u53ea\u5728\u6d77\u4e0a\uff0c\u7167\u7247\u7531\u68c9\u6728\u62cd\u6444\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002197", "video_name": "d141dfad-c09e-5aa5-ba8d-8c598ec58bae", "text": "\u5e86\u795d\u300a\u6740\u6b7b\u6bd4\u5c14\u300b20\u5468\u5e74\u7684\u6296\u97f3\u89c6\u9891"} +{"id": "6002001", "video_name": "45746ab2-3d3a-55eb-a330-d7ba7786e090", "text": "\u591c\u665a\u68ee\u6797\u4e2d\u6709\u5f3a\u70c8\u7684\u767d\u5149\u4ece\u5929\u7a7a\u5c04\u4e0b\u3002"} +{"id": "8003319", "video_name": "e8429f99-635f-50ff-a452-6b1bab3bfcde", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u53ef\u7231\u5a74\u513f\u9f99\uff0c\u8986\u76d6\u7740\u767d\u8272\u84ec\u677e\u7684\u6bdb\u76ae\u3002"} +{"id": "0004138", "video_name": "03e8516f-7790-5361-8810-ad6ee65f1a50", "text": "\u96e8\u3002\u4fe1\u606f\uff1aGratus\u5728\u68ee\u6797\u91cc\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003829", "video_name": "64c3c3e5-058b-5383-9b6c-dd1b7bd13111", "text": "\u5c55\u793a\u4e00\u4e2a\u5e74\u8f7b\u7684\u82b1\u6735\u5632\u7b11\u91d1\u8272\u73ab\u7470\u7684\u573a\u666f\u3002\u8bb2\u8ff0\u4ed6\u4eec\u7684\u7b11\u58f0\u548c\u5632\u8bbd\u30024K\uff0c3D\u89c6\u9891\u3002"} +{"id": "6004287", "video_name": "25f9707e-a990-5b25-bb89-27380cb72127", "text": "\u4e00\u5934\u5927\u8c61\u548c\u4e00\u5339\u9a6c\u5728\u76db\u5927\u7684\u8282\u65e5\u91cc\u8df3\u821e\u3002"} +{"id": "3003565", "video_name": "43b74ca7-7619-593d-bfba-29af3afd37b7", "text": "\u7834\u4ea7\u7684\u5546\u4eba\u5728\u6df1\u84dd\u8272\u6c1b\u56f4\u548c\u5546\u4e1a\u4e2d\u5fc3\u4e2d\u6e38\u8361\u3002"} +{"id": "8002408", "video_name": "d71f20e4-a2f4-532f-9526-caed6a9158d0", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u8d70\u8fc7\u68ee\u6797\uff0c\u7a7f\u8fc7\u901a\u5f80\u53e6\u4e00\u4e2a\u68ee\u6797\u7684\u95e8\u3002"} +{"id": "8002833", "video_name": "22d8ee17-e0b3-533d-89d4-7a1d31bcd91b", "text": "\u7537\u4eba\u6162\u6162\u5730\u8d70\u5411\u5730\u5e73\u7ebf\uff0c\u5915\u9633\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "7002244", "video_name": "b7bbe053-e46e-52bc-a8cd-95081a3ca3ae", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u8212\u9002\u7684\u5ba2\u5385\u91cc\u5f39\u94a2\u7434\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u67f4\u72ac\u3002"} +{"id": "6002611", "video_name": "770f1c8d-92ca-5279-b937-181c2a2e0d27", "text": "\u68a6\u5e7b\u6d77\u6ee9\u4e0a\u7f8e\u4e3d\u7684\u5c0f\u8239"} +{"id": "3006751", "video_name": "b96fbaf4-2f8e-595f-a30b-7db659a63306", "text": "\u843d\u57fa\u5c71\u8109\u591c\u666f\u3002\u591c\u7a7a\u4e2d\u660e\u4eae\u7684\u661f\u4e91\u3002\u9690\u85cf\u5728\u5929\u7a7a\u4e2d\u7684\u4e0d\u660e\u98de\u884c\u7269\u3002\u6444\u5f71\u673a\u5728\u5c4f\u5e55\u4e2d\u5fc3\u7f29\u653e"} +{"id": "7002242", "video_name": "a27f9f88-2dfe-54a4-ae3d-1796f00d8fa4", "text": "\u5c0f\u718a\u7ef4\u5c3c\u9a7e\u9a76\u84b8\u6c7d\u8239\n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "7004258", "video_name": "cdfd0d63-27fc-5722-bee0-a2069b09e9a3", "text": "\u73b0\u5b9e\u4e3b\u4e49\u63cf\u7ed8\u53e4\u4ee3\u4e2d\u56fd\u5deb\u5e08\u65bd\u6cd5\uff0c\u795e\u79d8\u6c1b\u56f4\uff0c\u4f20\u7edf\u888d\u5b50\uff0c\u9999\u70df\uff0c\u5492\u8bed\u4e66\uff0c\u865a"} +{"id": "0004040", "video_name": "020cee8a-d48a-508b-bbb2-60383745a391", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u5728\u5f00\u8f66\u3002"} +{"id": "7004809", "video_name": "9665dc72-24e1-5849-870b-f5419124edc2", "text": "\u9752\u5c11\u5e74\u5728\u5927\u578b\u97f3\u4e50\u8282\u4e2d\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "7003680", "video_name": "985a6310-4d29-5296-be7d-ae0f5e293508", "text": "\u52e4\u594b\u7684\u871c\u8702\u3002\u4f60\u4e0d\u77e5\u75b2\u5026\u5730\u56db\u5904\u98de\u821e\uff0c\u91c7\u96c6\u82b1\u871c\u5e76\u6388\u7c89\u3002\u8fea\u58eb\u5c3c\u98ce"} +{"id": "2006949", "video_name": "9f30e4ee-7003-5a6b-be2b-c9121de107a5", "text": "70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u5e26\u6709\u9a6c\u683c\u91cc\u7279\u5143\u7d20\uff0c\u5173\u4e8e\u6234\u7740\u9762\u5177\u7ad9\u5728\u7530\u91ce\u4e0a\u7684\u4eba\u4eec\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u68a6"} +{"id": "2005684", "video_name": "654200c9-b23b-5c95-9089-294f479f5c96", "text": "\u5feb\u901f\u95ea\u70c1\u7684\u706f\u5149\u3002\u660e\u4eae\u7684\u767d\u8272\u3002"} +{"id": "2004688", "video_name": "e65847dd-f19c-5c9f-9f91-232ee624298e", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u767d\u5929\u7684\u6c99\u6f20\uff0c\u955c\u5934\u5728\u6811\u95f4\u5411\u5916\u7f29\u653e\uff0c\u624b\u6301\u67aa\u7684\u5e74\u8f7b\u5973\u5b50\u4ece\u955c\u5934\u524d\u8d70\u8fc7\u3002"} +{"id": "6003973", "video_name": "c20934a4-40f7-5ed0-afa1-d8f1bb027358", "text": "\u5c0f\u718a\u770b\u7740\u6708\u4eae\u53d8\u5c0f\uff0c\u611f\u5230\u60ca\u8bb6\u3002"} +{"id": "3006802", "video_name": "3075a427-4cd9-5dd4-a8ec-49fa83fe83d3", "text": "\u80af\u5c3c\u4e9a\u5bb6\u5ead\u5728\u516c\u56ed\u91cc\u4e00\u8d77\u91ce\u9910\uff0c\u7b11\u5bb9\u6ee1\u9762\uff0c\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "4002665", "video_name": "dae04566-3148-5753-9bb6-439de5eae516", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u62e5\u62b1\u4ed6\u7684\u6bcd\u4eb2\u3002"} +{"id": "8002991", "video_name": "e69126b8-c059-5200-853d-6b2e71b27658", "text": "\u739b\u838e\u00b7\u963f\u7c73\u5c3c\u5728\u56fe\u4e66\u9986\u91cc\u770b\u4e66\u3001\u559d\u5496\u5561\u3001\u542c\u97f3\u4e50\u3002"} +{"id": "3004937", "video_name": "79198135-401c-503a-afb8-55ce6e30083d", "text": "20\u4e16\u7eaa80\u5e74\u4ee3\u7684\u5546\u4e1a\u5e7f\u544a\uff0c\u51b2\u6d6a\u5728\u6e05\u6f88\u7684\u6c34\u4e0b\u8fdb\u884c\uff0c\u5b8c\u6210\u5de8\u5927\u7684\u51b2\u6d6a\u7a7a\u4e2d\u65cb\u8f6c\u3002"} +{"id": "1006040", "video_name": "6eee999f-0956-55a9-8257-f3f9cc80a0ae", "text": "\u4e00\u5ea7\u57ce\u5e02\u51fa\u73b0\uff0c\u9e70\u773c\u5728\u5916\u592a\u7a7a\u9ad8\u901f\u98de\u884c\uff0c\u62d6\u7740\u4ed6\u4eec\u5e73\u5e38\u7684\u5c3e\u90e8\u519b\u7528\u5b87\u5b99\u98de\u8239\u6218"} +{"id": "4002051", "video_name": "02c9566d-6b16-5652-b7f2-113720e80308", "text": "\u8bf4\u8bdd\uff0c\u5fae\u7b11\uff0c\u6447\u5c3e\u5df4\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006158", "video_name": "2780399e-3994-5409-bcfa-5dbac0e1b1cb", "text": "\u4f5b\u7f57\u91cc\u8fbe\u5dde\u7684\u6cb3\u6d41\u7684\u5168\u666f\u3002\u6cb3\u8fb9\u7684\u6cbc\u6cfd\u5cb8\u8fb9\u70b9\u7f00\u7740\u8986\u76d6\u4e86\u897f\u73ed\u7259\u82d4\u85d3\u7684\u5927"} +{"id": "6004928", "video_name": "dab839e5-9fe3-5575-8534-d87779c788df", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u53d8\u7126\u955c\u5934\u805a\u7126\u5728\u5730\u7403\u4e0a\uff0c\u7136\u540e\u662f\u963f\u6839\u5ef7\u3002"} +{"id": "2006412", "video_name": "413a3e21-e7f1-5fa1-9535-5ea32e1f9b3f", "text": "\u53ea\u6709\u4e00\u53ea\u72d0\u72f8\u6ca1\u6765\u3002"} +{"id": "4004014", "video_name": "3d10ca94-2bfe-590f-a00d-cdebd08a446a", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u52a8\u753b\uff0c\u5fc3\u810f\u5f00\u59cb\u53d8\u6210\u5927\u8111\u3002"} +{"id": "2006473", "video_name": "0f72c570-66f6-5e18-a4fb-283ceb38e621", "text": "\u521b\u5efa\u4e00\u4e2a5\u5206\u949f\u7684\u8db3\u7403\u89c6\u9891\u3002"} +{"id": "3003868", "video_name": "4a601323-8144-5e45-9fd5-c0a7e43b14e0", "text": "\u4ed6\u7684\u65c5\u7a0b\u5c31\u50cf\u4e00\u9996\u5145\u6ee1\u96be\u4ee5\u8a00\u55bb\u7684\u98ce\u5473\u7684\u6b4c\u66f2\uff0c\n\u4ece\u8f9b\u8fa3\u5230\u751c\u871c\uff0c\u5c55\u5f00\u4e86\u6574\u4e2a\u6545\u4e8b"} +{"id": "4003023", "video_name": "a3960c78-96f3-5321-a654-0df601b4f0cb", "text": "\u5c0f\u77ee\u4eba\uff0c\u9ed1\u53d1\u767d\u76ae\u80a4\uff0c\u7559\u7740\u80e1\u987b\uff0c\u8eab\u7a7f\u7ea2\u7eff\u76d4\u7532\uff0c\u624b\u6301\u4e00\u628a\u5251\uff0c\u4f69\u6234\u7740"} +{"id": "0004618", "video_name": "0c051f34-f150-5330-b058-ebc361581bcb", "text": "\u4e00\u4e2a\u5361\u901a\u7259\u9f7f\u4e0e\u9f8b\u9f7f\u7684\u6218\u6597\u3002"} +{"id": "7004645", "video_name": "ffab60aa-2d01-5b7c-900f-28f80b2fa191", "text": "\u521b\u4f5c\u4e00\u5e45\u57c3\u5c14\u83ab\u00b7\u8a79\u59c6\u65af\u7684\u753b\uff01"} +{"id": "2005161", "video_name": "597a15ba-ebb4-5ed7-9632-8dbe60922fc2", "text": "1989\u5e74\u9ed1\u6697\u5947\u5e7b\u7535\u5f71\u4e2d\u7684\u620f\u5267\u6027\u573a\u666f\uff0cDVD\u8d28\u91cf\uff0c\u7a7f\u7740\u7cbe\u81f4\u7684\u677f\u7532\u7684\u5973\u4eba\uff0c\u6325\u821e\u7740"} +{"id": "3006768", "video_name": "e0415239-dab0-5b24-a46f-57bae1123c0a", "text": "\u89c6\u9891\u5f00\u5934\u662f\u4e00\u4e2a\u5927\u5b66\u751f\u57cb\u5934\u5728\u4e66\u672c\u4e2d\uff0c\u62c5\u5fe7\u7684\u8868\u60c5\u6697\u793a\u7740\u7ecf\u6d4e\u4e0a\u7684\u56f0\u96be\u3002\u7136\u540e\u5207\u6362\u5230\u4ed6\u4eec\u6ce8\u518c\u6210\u4e3aUber"} +{"id": "3004114", "video_name": "594389b3-6069-5ebf-8a55-6c9ef33ac50f", "text": "\u7ebd\u7ea6\u5e02\u591c\u665a\u7684\u5929\u9645\u7ebf\u53d8\u6210\u4e86\u54e5\u4f26\u6bd4\u4e9a\u5361\u5854\u8d6b\u7eb3\u7684\u5929\u9645\u7ebf\u3002"} +{"id": "7003701", "video_name": "c8ea560a-9d33-5319-9da8-9c631225ff0a", "text": "\u672a\u6765\u7684\u4eba\u7c7b\u901a\u8fc7\u5fc3\u7075\u611f\u5e94\u548c\u96c6\u4f53\u610f\u8bc6\u5b66\u4e60\u65b0\u77e5\u8bc6\u3002"} +{"id": "1005342", "video_name": "6236dd09-f911-5caf-98dd-d52e1e3f09b1", "text": "\u63cf\u8ff0\u706b\u661f\u4e0a\u5947\u5f02\u7684\u57ce\u5e02\u9700\u8981\u4e00\u6bb5\u89c6\u9891\uff0c\u7ed3\u5408\u79d1\u5e7b\u548c\u521b\u610f\u5143\u7d20\u3002\u57ce\u5e02\u91cc\u6709\u5916\u661f\u4eba\u8d70\u6765\u8d70\u53bb\uff0c\u900f\u660e\u7684\u5706\u9876"} +{"id": "6002577", "video_name": "e6a89dde-00ea-5b27-a2a2-563ce0736bfa", "text": "\u767d\u72ee\u3001\u767d\u8c61\u3001\u6218\u6597\u3001\u6218\u4e89\u3001\u4e91\u5f69\u3001\u8d85\u6781\u4e3b\u4e49\u8005\u3001\u542f\u8fea\u3001\u95ea\u7535\u3001\u53f2\u8bd7\u822c\u7684\u573a\u9762\u3001"} +{"id": "7003161", "video_name": "165a1f16-4789-5bb9-9a60-83bc0be3053c", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u770b\u7740\u4ed6\u7684\u7b14\u8bb0\u672c\u5c4f\u5e55\u611f\u5230\u56f0\u60d1\u3002\u4ed6\u62ff\u8d77\u4e86\u4ed6\u7684\u667a\u80fd\u624b\u673a\u3002"} +{"id": "7004674", "video_name": "4f6aa5c6-7b55-544d-be24-4aebaf21d8c2", "text": "\u4e00\u4e2a\u7537\u4eba\u54ed\u51fa\u7ea2\u8272\u7684\u6db2\u4f53\uff0c\u7535\u5f71\u822c\u7684\u6050\u6016\uff0c\u7528\u590d\u53e4\u80f6\u7247\u62cd\u6444\u3002"} +{"id": "3003351", "video_name": "b7065b30-dde7-5869-9c03-30d96c20e974", "text": "\u4e39\u5c3c\u5c14\u77e5\u9053\u65c5\u7a0b\u8fd8\u5728\u7ee7\u7eed\uff0c\u65b0\u7684\u68a6\u60f3\u548c\u6311\u6218\u5373\u5c06\u5230\u6765\uff0c\u9ad8\u5ea6\u903c\u771f\u76843D\u3002"} +{"id": "3005938", "video_name": "d9bfaca0-28c6-5f83-abfc-62543f552e13", "text": "\u4e00\u4f4d\u6709\u9ed1\u8272\u982d\u9aee\u548c\u7d05\u8272\u5916\u5957\u7684\u5c0f\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u8207\u8a31\u591a\u52d5\u7269\u4ea4\u8ac7\u3002"} +{"id": "0004923", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "\u56db\u4e2a\u6234\u7740\u5934\u5dfe\u7684\u5973\u4eba\u5728\u8d5b\u9a6c\u573a\u4e0a\u9a91\u9a6c\u6bd4\u8d5b\u3002"} +{"id": "0005820", "video_name": "21b767e8-079b-512d-aef2-3451686a88fb", "text": "\u6574\u4e2a\u9ed1\u767d\u753b\u9762\uff0c\u7ec6\u817b\u7684\u58a8\u6c34\u753b\uff0c\u6cb9\u6f06\u7b14\u89e6\uff0c\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u611f\u6027\u5973\u5b69\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u5c0f\u660e"} +{"id": "8002417", "video_name": "30d3c393-d007-5ff4-8f68-49378039145c", "text": "\u5728\u65e5\u843d\u65f6\u65e0\u4eba\u673a\u98de\u8fc7\u4e00\u5ea7\u5e9f\u5f03\u7684\u57ce\u5e02\uff0c\u57ce\u5e02\u6b63\u5728\u9010\u6e10\u8352\u829c\uff0c\u5e95\u4e0b\u662f\u88ab\u9057\u5f03\u7684\u6c7d\u8f66\uff0c\u5177\u6709"} +{"id": "2007610", "video_name": "10a003cf-5e00-5a5a-a751-0160c86944b1", "text": "\u5947\u5e7b\u4e3b\u9898\u7684\u9f99\uff0c\u590d\u6742\u7684\u7ec6\u8282\uff0c\u706b\u7130\u3002"} +{"id": "2004864", "video_name": "8c81e7bd-51c6-524c-ab04-812ec3cd3769", "text": "\u4ed6\u5728\u81ea\u5df1\u7684\u5f55\u97f3\u5ba4\u91cc\u542c\u7740Trap\u8282\u594f\uff0c\u4e00\u8fb9\u6447\u5934\u6643\u8111\uff0c\u4e00\u8fb9\u5236\u4f5c\u97f3\u4e50\u3002"} +{"id": "8003874", "video_name": "8c89a09b-b7cf-53e8-97de-db17fd113b63", "text": "\u4e00\u4e2a\u6ed1\u7a3d\u7684\u5c0f\u4f8f\u5112\u9a91\u7740\u4e00\u8f86\u6469\u6258\u8f66\uff0c\u8eab\u540e\u5750\u7740\u4e00\u4e2a\u6027\u611f\u7684\u91d1\u53d1\u5973\u4eba\u3002"} +{"id": "7003361", "video_name": "35b5b6b4-f575-5b2a-a572-a93a5811476b", "text": "\u5143\u5b87\u5b99\u98ce\u683c\u7684\u67f4\u72ac\uff0c\u5e26\u6709\u65e5\u672c\u5bfa\u5e99\u548c\u7011\u5e03\u3002"} +{"id": "3005490", "video_name": "48bff8c4-ec78-5f9f-83de-d8cde5599e4d", "text": "\u8d70\u5728\u7d2b\u7981\u57ce\u7684\u4e2d\u8f74\u7ebf\u4e0a\uff0c\u62c9\u8fdc\u6216\u653e\u5927\u89c6\u89d2\u3002"} +{"id": "3005426", "video_name": "8ecb0aaf-1408-5b9c-95c8-172c194acdf1", "text": "\u624b\u62ff\u7740\u7f8e\u5143\u7684\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "2004048", "video_name": "1a61ecca-ca36-5211-8f0d-83f1d0415edd", "text": "\u4e00\u53ea\u9cb8\u9c7c\u5728\u65f6\u949f\u4e4b\u95f4\u6e38\u8fc7\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005901", "video_name": "22fd9ec2-5566-59f5-bd5b-3f5ee8e59ad2", "text": "\u4e2d\u534e\u6c11\u56fd\u56fd\u65d7\u5728\u84dd\u5929\u4e2d\u98d8\u626c\u3002"} +{"id": "7002626", "video_name": "9ce090db-41f2-5c30-ad0b-35f84c88f5c7", "text": "\u63cf\u8ff0\u62c9\u6770\u5728\u9605\u8bfb\u53e4\u4e66\u4e2d\u7684\u6545\u4e8b\u4e4b\u4e00\uff0c\u4ed6\u7684\u773c\u775b\u6c89\u6d78\u5728\u6545\u4e8b\u4e2d\uff0c\u540c\u65f6\u4ece\u4e2d\u5b66\u5230\u4e86\u5b9d\u8d35\u7684\u4eba\u751f\u7ecf\u9a8c"} +{"id": "2007199", "video_name": "53fa415f-d7db-52ed-bd36-f34f4764b42b", "text": "\u6349\u9b3c\u5c0f\u7ec4\u4f7f\u7528\u8d28\u5b50\u675f\u8ffd\u6355\u9b3c\u9b42\u3002"} +{"id": "6003980", "video_name": "4c8b483f-2b19-5cb3-92b4-a3a2f0e4736d", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a\u4eba\u9677\u5165\u6c89\u601d\uff0c\u601d\u8003\u4ed6\u4eba\u751f\u8be5\u9009\u62e9\u4f55\u79cd\u65b9\u5411\u3002"} +{"id": "0006922", "video_name": "355f893e-c551-50b1-a5e9-06923c737a51", "text": "\u4e54\u00b7\u62dc\u767b\u5f00\u7740\u4e30\u7530\u666e\u9510\u65af\u5e76\u7cfb\u7740\u5b89\u5168\u5e26\u3002"} +{"id": "7002231", "video_name": "d756462f-5ed9-504d-b929-4e090056550f", "text": "\u5728\u83f2\u5f8b\u5bbe\u9ece\u524e\u516c\u56ed\u6563\u6b65\u7684\u4eba\u3002"} +{"id": "7004346", "video_name": "193ee229-e41b-5b05-93e2-7ed2989d8b4b", "text": "\u4e00\u4e2a\u5145\u6ee1\u4e0d\u540c\u82b1\u5349\u548c\u690d\u7269\u7684\u82b1\u56ed\uff0c\u6709\u52a8\u753b\u6548\u679c\u3002"} +{"id": "2003852", "video_name": "b01191ac-0042-5c4b-959a-958fa5a642ff", "text": "3D\uff0c\u5b69\u5b50\u4eec\u73a9\u5927\u53f7\u5706\u5f62\u57c3\u53ca\u5e3d\u5b50\u3002"} +{"id": "6003165", "video_name": "2c6b2b0b-9ba0-58e4-95a9-8f4e0c52e1c7", "text": "\u94a2\u94c1\u4fa0\u4e0e\u4e00\u53ea\u5de8\u5927\u53ef\u6015\u7684\u6050\u9f99\u640f\u6597\u3002"} +{"id": "2005105", "video_name": "68dadbf4-d520-5485-9b58-876c021bcb3a", "text": "\u5fb7\u97e6\u6069\u00b7\u7ea6\u7ff0\u900a\u548c\u683c\u4f26\u00b7\u4e39\u9f50\u683c\u4e00\u8d77\u4e3e\u529e\u67e0\u6aac\u6d3e\u5bf9\u3002"} +{"id": "3004372", "video_name": "f99bc330-aa50-5303-a3b1-81820c34ca26", "text": "\u514b\u91cc\u65af\u6258\u5f17\u00b7\u54e5\u4f26\u5e03\u822a\u884c\u8fdb\u5165\u73b0\u4ee3\u5965\u65af\u9646\uff0c\u65e5\u843d\u65f6\u5206\u3002"} +{"id": "4004294", "video_name": "bef04d13-b07d-55e9-8e64-0df6c6075693", "text": "\u8def\u7c73\u5a1c\u548c\u5979\u7684\u4f19\u4f34\u4eec\u9762\u5bf9\u6311\u6218\uff0c\u6bd4\u5982\u7a7f\u8d8a\u590d\u6742\u7684\u8ff7\u5bab\u548c\u89e3\u51b3\u8c1c\u9898\u3002"} +{"id": "6003190", "video_name": "fb0da1ca-2019-5415-ad7e-3a8131e0b889", "text": "\u6570\u4e0d\u6e05\u7684\u6211\u4eec\u5728\u4e00\u4e2a\u4e0d\u53ef\u9006\u8f6c\u7684\u547d\u8fd0\u6cd5\u5219\u7684\u5e7f\u9614\u7f51\u7edc\u4e2d\u73a9\u800d\u3002\u8fd9\u4e2a\u7f51\u7edc\u6f02\u6d6e\u5728\u5b87\u5b99\u4e4b\u4e0a\uff0c\u7531\u900f\u660e\u7684\u7ebf"} +{"id": "0005766", "video_name": "20f0b0b4-4b8b-5c09-a676-e262cc0ed365", "text": "\u7531\u4e8e\u6ca1\u6709\u6559\u80b2\u7ecf\u8d39\u652f\u6301\u3002"} +{"id": "0005555", "video_name": "1cc947b4-13fe-5c31-8d6a-f58c36f65e14", "text": "\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u52a8\u6001\u5fc3\u5f62\u7684\u5976\u6cb9\u5496\u5561\u3002"} +{"id": "8002540", "video_name": "13f6a029-0f51-5ae9-8cd6-01421f5f3312", "text": "\u67d4\u9053\u5927\u5e08\u7a7f\u7740\u767d\u8272\u7684\u548c\u670d\u548c\u9ed1\u8272\u7684\u8170\u5e26\uff0c\u4e0e\u4ed6\u7684\u67d4\u9053\u5b66\u751f\u4e00\u8d77\u89c2\u770b\u6cb3\u6c34\u6d41\u6dcc\u3002"} +{"id": "0004995", "video_name": "12e9dcd1-33d2-5b2e-85f5-356e8144f89d", "text": "\u4ecb\u7ecdMoonbeam\uff1a\u63cf\u7ed8Moonbeam\uff0c\u90a3\u53ea\u773c\u4e2d\u95ea\u70c1\u7740\u9b54\u529b\u7684\u732b\uff0c\u5728Whispering Pines\u5c0f\u9547\u7684\u4e00\u68f5\u8001\u6a61"} +{"id": "8003263", "video_name": "6265ea16-2dce-549f-8ef8-e65a64f5ed01", "text": "\u72d7\u3001\u732b\u3001\u5154\u5b50\u3001\u7334\u5b50\u4f4f\u5728\u540c\u4e00\u4e2a\u623f\u5b50\u91cc\uff0c\u6bcf\u5929\u90fd\u4f1a\u53d1\u751f\u5404\u79cd\u6709\u8da3\u7684\u6076\u4f5c\u5267\u3002"} +{"id": "6002527", "video_name": "4d0a9c7f-abb7-5776-8551-a5a1e27644c5", "text": "\u6709\u56db\u4e2a\u4eba\uff0c\u4e24\u4e2a\u7537\u5b69\uff0c\u4e24\u4e2a\u5973\u5b69\uff0c\u6211\u4eec\u90fd\u662f\u5341\u51e0\u5c81\u7684\u9752\u5c11\u5e74\uff0c\u7ad9\u5728\u9760\u8fd1\u6eaa\u6d41\u7684\u68ee\u6797\u91cc\u3002\u6211\u4eec\u53ea\u80fd\u80cc"} +{"id": "3005073", "video_name": "e58347f8-6ee5-5f20-968d-8a2225e4d09c", "text": "\u7a7f\u767d\u8272\u85a9\u723e\u74e6\u723e\u88d9\u7684\u5973\u5b69\uff0c\u6234\u8457\u91d1\u8272\u8033\u74b0\u3002"} +{"id": "7004486", "video_name": "1d8e4677-b2cf-5521-9ecf-fe10848cf238", "text": "\u4f60\u80fd\u5728\u8fd9\u5f20\u56fe\u7247\u7684\u5929\u7a7a\u91cc\u5236\u9020\u4e00\u573a\u5927\u66b4\u98ce\u96e8\u5417\uff1f"} +{"id": "2005095", "video_name": "24d502f9-56d8-51df-811e-e1faa69ffdc6", "text": "\u6574\u4f53\u955c\u5934\uff0c\u897f\u90e8\u573a\u666f\uff0c\u4e24\u4e2a\u5973\u4eba\u5728\u57ce\u9547\u4e2d\u592e\u8fdb\u884c\u4e00\u573a\u6e05\u6668\u7684\u51b3\u6597\u3002"} +{"id": "3006841", "video_name": "48093c0a-bdb3-53e1-ab25-a05af2fcaf4f", "text": "\u8d70\u5728\u4e00\u4e2a\u5b8c\u5168\u7531\u5f69\u8272\u7eb1\u7ebf\u5236\u6210\u7684\u90ca\u533a\u793e\u533a\u91cc\u3002"} +{"id": "7004793", "video_name": "28d6225b-dcf0-5c4c-b2eb-8e5397582662", "text": "\u8033\u673a\u91cc\u7684\u97f3\u9891\u5de5\u7a0b\u5e08\u5f88\u60b2\u4f24\u3002"} +{"id": "8002111", "video_name": "99ed10cb-e089-5f85-9b22-99f90fd6cdda", "text": "\u7a7f\u7740\u897f\u88c5\u8df3\u821e\u7684\u6d63\u718a\uff0c\u5b8c\u7f8e\u7684\u821e\u59ff\uff0c\u53cc\u817f\u8df3\u821e\uff0c4K\u771f\u5b9e\u7684\u6d63\u718a\u3002"} +{"id": "4004797", "video_name": "cfa519e5-8ed8-5a03-9eaa-ae2bac004c59", "text": "\u4e00\u53ea\u718a\u732b\u5728\u7af9\u6797\u91cc\u7684\u96e8\u5929\u8fdb\u98df\u3002"} +{"id": "2006716", "video_name": "ccb5586b-6aac-54be-b011-54e478f2c396", "text": "\u73b0\u4ee3\u7684\u5de5\u4f5c\u573a\u6240\uff0c\u529e\u516c\u5ba4\uff0c\u5546\u4e1a\uff0c\u5de5\u4f5c\u548c\u8c08\u8bdd\u3002"} +{"id": "1004833", "video_name": "5955afe4-0086-52eb-b7f0-7df319e1492a", "text": "\u5973\u5b69\u5c55\u5f00\u53cc\u624b\uff0c\u98ce\u683c\u4eff\u4f5b\u5b89\u5a1c\u00b7\u5df4\u5207\u5229\u8036\u3002"} +{"id": "0004150", "video_name": "04277587-ded3-5b84-a5e6-515f194e9c21", "text": "\u73c0\u897f\u611f\u5230\u88ab\u6392\u9664\u5728\u670b\u53cb\u4eec\u51c6\u5907\u8fdc\u8db3\u7684\u884c\u52a8\u4e4b\u5916\u3002"} +{"id": "0004446", "video_name": "093c1710-3423-5238-90b1-7f5ae0262c59", "text": "\u4e00\u4e2a\u63cf\u7ed8\u83b1\u62c9\u514b\u65af\u5916\u4ea4\u5b98\u4e0e\u4eba\u7c7b\u4ee3\u8868\u4ea4\u8c08\u7684\u89c6\u89c9\u5448\u73b0\uff0c\u8868\u73b0\u4e86\u4ed6\u4eec\u8ffd\u6c42\u548c\u5e73\u5171\u5b58\u548c\u76f8\u4e92\u7406"} +{"id": "0006064", "video_name": "25ffd52b-8071-5a2f-bdec-748627527b1a", "text": "1980\u5e74\u4ee3\u592a\u7a7a\u6b4c\u5267\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u8863\u670d\uff0c\u6709\u8bb8\u591a\u91d1\u5c5e\u8272\u548c\u91d1\u8272\u3002\u7535\u5f71\u822c\u7684\u62cd\u6444\u955c"} +{"id": "1003146", "video_name": "3a06005e-3039-5cfa-8aa8-3b6a08c624d9", "text": "\u63cf\u7ed8\u4e00\u9897\u79cd\u5b50\u53d8\u6210\u5f00\u82b1\u7684\u690d\u7269\u3002"} +{"id": "4004427", "video_name": "51234c6d-b345-5795-8741-1b6693f2b4bd", "text": "\u8759\u8760\u4fa0\u548c\u8d85\u4eba\u5728\u62f3\u51fb\u8d5b\u573a\u4e0a\u5bf9\u51b3\u3002"} +{"id": "3004693", "video_name": "0ab5e48b-af6b-5c80-abdd-3a48299106ba", "text": "\u795e\u79d8\u7684\u72ee\u5b50\uff0c\u50cf\u51e4\u51f0\u4e00\u6837\uff0c\u7ea2\u8272\u548c\u9ed1\u8272\u3002"} +{"id": "0005237", "video_name": "171380e5-bbff-590b-aeb1-2e4bc4adf7c5", "text": "\u5728\u98ce\u666f\u5982\u753b\u7684\u79d8\u5bc6\u6751\u5e84\u91cc\uff0c\u5b83\u5750\u843d\u4e8e\u8fde\u7ef5\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272"} +{"id": "8003251", "video_name": "f2cae67b-7c08-558f-a3c8-175e1eada861", "text": "\u4e00\u4e2a\u8682\u8681\u89d2\u8272\u7684\u5361\u901a\u7248\u672c\uff0c\u7c7b\u4f3c\u4e8e\u5723\u8bde\u8001\u4eba\u3002 \n\nSource sentence: The movie was a huge success, grossing over $1 billion worldwide. \n\n\u8fd9\u90e8\u7535\u5f71"} +{"id": "6003761", "video_name": "74b8c662-86de-543e-a49e-9aaf85615d48", "text": "\u91d1\u5e01\u5728\u6728\u684c\u4e0a\uff0c\u4fe1\u606f\u4e3aBASA\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "2006381", "video_name": "54622726-05c1-529d-8dca-b2aca566a23d", "text": "\u4e00\u53ea\u5e26\u6709\u8d5b\u535a\u670b\u514b\u67aa\u7684\u72d7\u5411\u6444\u50cf\u673aW1.5\u5c04\u51fa\u6fc0\u5149\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3) \u4fe1\u606f\uff1a\u8d5b\u535a"} +{"id": "3005317", "video_name": "651d5642-16df-5850-8145-9f5670f4c7f7", "text": "\u8036\u7a23\u624b\u6301\u4e00\u676f\u8d85\u9ad8\u6e058K\u7684\u7ea2\u9152\u3002"} +{"id": "1006974", "video_name": "7fa44434-90eb-5a45-a8ea-dd3cfcf42b24", "text": "\u6c34\u725b\u7fa4\u5728\u6708\u7403\u4e0a\u5954\u8dd1\u76844K\u52a8\u6001\u3002"} +{"id": "5001123", "video_name": "9c635746-06ac-52b7-84b2-3176603e896b", "text": "\u7537\u5b50\u83b7\u5f97\u5e74\u5ea6\u5fc3\u7406\u6218\u7ade\u8d5b\u51a0\u519b\u3002"} +{"id": "0004195", "video_name": "04d57141-5444-5435-baa7-6261489bf4ac", "text": "\u5f7c\u6b64\u5e2e\u52a9\uff0c\u5171\u540c\u524d\u884c\u3002"} +{"id": "6003124", "video_name": "cde1d3e6-30de-5b64-aa35-1737008a55a6", "text": "\u4ed6\u4eec\u4eca\u5e74\u7279\u522b\u5173\u6ce8\u4e3a\u4e0d\u5e78\u7684\u4eba\u5e26\u6765\u5feb\u4e50\u3002"} +{"id": "2005244", "video_name": "01fe8fc0-3e51-5d6c-8291-188ca02c223d", "text": "\u6708\u4eae\u4ece\u91d1\u5b57\u5854\u540e\u9762\u7ecf\u8fc7\u3002"} +{"id": "0005608", "video_name": "1dee70da-1c6d-5222-ac1e-f312261b3bba", "text": "\u8fd9\u53ea\u503e\u542c\u7684\u72ee\u5b50\u53d7\u5230\u60ca\u5413\uff0c\u4ece\u90a3\u91cc\u7ad9\u4e86\u8d77\u6765\u3002"} +{"id": "2006701", "video_name": "9c8de9f6-1561-5473-8954-a3cb0528e39d", "text": "\u4e3b\u9898\u7f16\u53f7279\uff0c3D\u6587\u672c\u4ece\u4e2d\u95f4\u51fa\u73b0\uff0c\u56f4\u7ed5\u5706\u5708\u65cb\u8f6c\uff0c\u91d1\u8272\uff0c\u53ea\u6709279\u51fa\u73b0\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u65c1\u8fb9\u91d1\u8272\u70b9"} +{"id": "3005563", "video_name": "997f78d8-805c-5464-9583-36ea806be486", "text": "\u7ec7\u5973\u84dd\u8272\u8718\u86db\u53e4\u602a\u7684\u6218\u6597Dota 2\u3002"} +{"id": "0004797", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "\u4e00\u4e2a\u5927\u57ce\u5e02\u7684\u7a7a\u4e2d\u955c\u5934\uff0c\u56f4\u7ed5\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u65cb\u8f6c\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u771f\u5b9e\u3002"} +{"id": "1003243", "video_name": "3bbf6338-4b39-5d41-a2e4-768230f94149", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u6559\u6388Kinemaster\u7f16\u8f91\u5668\u7a0b\u5e8f\u3002"} +{"id": "6002532", "video_name": "b6de03e4-84e8-51b5-957f-c9d9434bb22f", "text": "\u533b\u9662\u623f\u95f4\u91cc\u9633\u5149\u660e\u5a9a\uff0c\u75c5\u4eba\u6b63\u5728\u5eb7\u590d\u3002"} +{"id": "6002925", "video_name": "fa961073-2fd3-5636-9486-0d3a96e877ec", "text": "\u56db\u5341\u5e74\u4ee3\u7684\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u5348\u540e\uff0c\u5728\u6d1b\u6749\u77f6\u5e02\u533a\u7684\u8857\u5934\u73a9\u800d\u7684\u5b69\u5b50\u4eec\u3002"} +{"id": "0003505", "video_name": "3eb3a49a-ea30-51d8-9fa5-2b6161d1522d", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u7a97\u53f0\u4e0a\u8bfb\u4e66\u3002"} +{"id": "7004597", "video_name": "c3cac704-0785-5aba-96ac-6938eaa67be9", "text": "\u51a5\u738b\u54c8\u8fea\u65af\u7684\u5c38\u4f53\u5728\u5730\u4e0b\u6d1e\u7a74\u91cc\u88ab\u53d1\u73b0\uff0c\u8fd9\u662f\u57281945\u5e74\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u7684\u6a21\u7cca\u76f8\u673a"} +{"id": "1005545", "video_name": "661a0bc3-29f0-5b74-a6e9-288b01f8e476", "text": "\u98ce\u683c\u5316\u7684\u6c34\u5f69\u6570\u5b57\u63d2\u56fe\uff0c\u8857\u666f\uff0c\u4ea4\u901a\u4fe1\u53f7\u706f\uff0c\u591c\u665a\uff0c\u5efa\u7b51\u7269\uff0c\u7ebd\u7ea6\uff0c8k UHD\uff0c\u6770\u4f5c\uff0c\u8d85\u7ec6"} +{"id": "0003848", "video_name": "4492c610-21ef-5794-808a-e7d05e2818fc", "text": "\u8a79\u59c6\u65af\u00b7\u5361\u6885\u9686\u5728\u6d77\u5e95\u884c\u8d70\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3003183", "video_name": "6736e103-41d3-5d90-8dd7-1702b9f16f94", "text": "\u4e00\u540d\u5973\u5b69\u5750\u5728\u5df4\u58eb\u91cc\uff0c\u770b\u7740\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u5144\u5f1f\u59d0\u59b9\u5728\u5916\u9762\u73a9\u800d\u3002"} +{"id": "4003717", "video_name": "e9dffebe-b492-5313-ba1e-27912b741bb1", "text": "\u5236\u4f5c\u4e00\u4efd\u6574\u4e2a\u4e9a\u6d32\u5730\u56fe\uff0c\u7528\u85cf\u7ea2\u82b1\u8272\u6d82\u4e0a\uff0c\u4ece\u5929\u7a7a\u4e2d\u5c55\u793a\u6574\u4e2a\u4e9a\u6d32\uff0c\u5e76\u63d2\u4e0a\u4e00\u9762\u85cf\u7ea2\u82b1\u65d7\u3002"} +{"id": "7002269", "video_name": "8daf1d24-9420-5016-9ae3-4d668ca46b27", "text": "\u4e00\u4e2a\u4e09\u5341\u591a\u5c81\u7684\u7537\u4eba\u795e\u7ecf\u7d27\u5f20\u5730\u8e31\u6b65\uff0c\u989d\u5934\u4e0a\u6ef4\u4e0b\u4e86\u6c57\u73e0\u3002"} +{"id": "0006348", "video_name": "2b0be789-7298-5cd8-ae27-ad845edf5dfd", "text": "\u7f57\u4f2f\u7279\uff0c\u4e00\u4f4d\u524d\u4fa6\u63a2\uff0c\u8bd5\u56fe\u5fd8\u8bb0\u4ed6\u7684\u635f\u5931\u548c\u9519\u8bef\u3002"} +{"id": "2003459", "video_name": "56ad4503-bc7d-5a8a-8043-4d5536e3e4e7", "text": "\u6bd4\u5982\u4eba\u4eec\u5f81\u670d\u4ed6\u4eec\u7684\u6050\u60e7\uff0c"} +{"id": "7003744", "video_name": "c570fdbd-b9f6-5211-a8a6-f012a9cd8670", "text": "\u4e00\u4f4d\u9b45\u529b\u5341\u8db3\u7684\u5e74\u8f7b\u91d1\u53d1\u5973\u5b50\u6234\u7740\u5de8\u5927\u7684\u9ed1\u8272\u8033\u673a\uff0c\u5728\u4e00\u95f4\u73b0\u4ee3\u7684\u767d\u8272\u623f\u95f4\u91cc\u8df3\u821e\u3002"} +{"id": "7002160", "video_name": "1427305e-8354-56e4-bf6c-90d585775616", "text": "\u4e00\u4e2a\u8001\u4eba\u7ad9\u5728\u53e4\u4ee3\u4e2d\u56fd\u7684\u76d1\u72f1\u91cc\uff0c\u9762\u5bf9\u7740\u76d1\u72f1\u7684\u56f4\u5899\u3002"} +{"id": "3004357", "video_name": "78d91b62-e0f9-554b-a2fd-ec1882061dea", "text": "\u4e00\u4e2a\u9547\u5b50\u53d8\u5f97\u50cf\u5ea7\u9b3c\u9547\u4e00\u6837\u5b89\u9759\u3002"} +{"id": "3006181", "video_name": "717eb5ea-fa18-58b0-ba42-15c7cc543523", "text": "\u4e00\u4e2a\u5e05\u6c14\u7684\u7537\u4eba\u5728\u505a\u70ed\u8eab\u8fd0\u52a8\u3002"} +{"id": "2003932", "video_name": "7a15afed-a2ab-5f2b-8e2a-2cbad69add0c", "text": "\u6709\u773c\u775b\u3001\u624b\u81c2\u548c\u817f\u7684\u50cf\u7d20\u3002"} +{"id": "7004606", "video_name": "d6f908a7-8a0e-581b-969f-3aff49444d6c", "text": "\u65e0\u4eba\u673a\u5728\u5e7f\u9614\u7684\u6c99\u4e18\u4e0a\u7a7a\u98de\u884c\uff0c\u5c55\u793a\u5b83\u4eec\u65e0\u5c3d\u7684\u7f8e\u4e3d\u3002"} +{"id": "0006242", "video_name": "2903310e-2158-5ad0-9918-2739e82291c2", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u897f\u73ed\u7259\u963f\u5170\u5c71\u8c37\u8d70\u8def\uff0c\u4e00\u4e2a\u9ad8\u4e2a\u5b50\uff0c\u53e6\u4e00\u4e2a\u4e2d\u7b49\u8eab\u9ad8\u3002"} +{"id": "1004054", "video_name": "4b2e5f8a-e947-5a22-964a-89b845642d9b", "text": "\u53ea\u6709\u4f60\u7684\u7cbe\u795e\u624d\u662f\u4f60\u5b89\u5168\u7684\u4fdd\u8bc1\u3002"} +{"id": "4002239", "video_name": "3338b6ba-d840-54b1-bf7f-6394700f4c23", "text": "1970\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u4e2d\uff0c\u4e00\u4e2a\u5728\u82b1\u56ed\u91cc\u62e5\u6709\u4eae\u7c89\u8272\u773c\u775b\u7684\u89d2\u8272\u3002"} +{"id": "4004110", "video_name": "dc929c12-9718-5929-83fa-2b3196b335a4", "text": "\u5c71\u59c6\u662f\u4e00\u53ea\u597d\u5947\u7684\u677e\u9f20\uff0c\u7ad9\u5728\u795e\u5947\u6d1e\u7a74\u7684\u8fb9\u7f18\uff0cMotion4\u3002"} +{"id": "2007145", "video_name": "d876f3da-96f0-5335-a19a-4f188a087b35", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5361\u901a\u98ce\u683c\u7684\u573a\u666f\u4e2d\u60f3\u5ff5\u4e00\u4e2a\u5c0f\u7ea2\u6c14\u7403\uff08\u6d3b\u6cfc\u60b2\u4f24\u7684\u7537\u5b69\uff0c\u7ea2\u8272\u6c14\u7403\uff0c\u7eff\u8272"} +{"id": "4002276", "video_name": "777bce24-b7bc-510a-a31f-e1c1c2b58ea1", "text": "\u8001\u610f\u5927\u5229\u7535\u5f71\u3002\u6234\u7740\u5e3d\u5b50\u7684\u7537\u4eba\u5728\u610f\u5927\u5229\u6751\u5e84\u91cc\u5f00\u655e\u7bf7\u8f66\u3002"} +{"id": "3003506", "video_name": "f99d2b58-bd2e-5346-ae16-8929dbfd0415", "text": "\u9ad8\u54c1\u8d28\uff0c\u4ee5\u8272\u5217\u4eba\u4ece\u5723\u7ecf\u65f6\u4ee3\u5f00\u59cb\u7528\u5251\u4e0e\u975e\u5229\u58eb\u4eba\u6218\u6597\uff0c\u6709\u7535\u5f71\u611f\uff0c4K\u3002"} +{"id": "4002060", "video_name": "2698d137-1b0d-52ae-b31a-8fdc7636f616", "text": "\u795e\u79d8\u4eea\u5f0f1840\u5e74\u4ee3\u7535\u5f714K \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "0006369", "video_name": "2b4f443a-52e8-595e-a634-eecf1bad5966", "text": "\u4ed6\u5f88\u611f\u5174\u8da3\uff0c\u51b3\u5b9a\u8ddf\u7740\u5b83\u8d70\uff0c\u4ece\u4e00\u4e2a\u67d4\u8f6f\u7684\u82d4\u85d3\u77f3\u8df3\u8dc3\u5230\u53e6\u4e00\u4e2a\u3002"} +{"id": "5001709", "video_name": "1e82424d-d821-54c7-885d-1274271eeed7", "text": "\u4e0b\u96e8\u5929\u5973\u5b50\u50cfUFC\u6bd4\u8d5b\u4e00\u6837\u640f\u6597\u3002"} +{"id": "1006312", "video_name": "737dfebf-db01-5f10-b484-509ee3176657", "text": "\u54e5\u8c2d\u5e02\u4e2d\u7684\u5c0f\u4e11\u5728\u96e8\u4e2d\u884c\u8d70\u3002"} +{"id": "0006938", "video_name": "3589e9f5-dba5-5cab-8d66-c5ecf2d7ff19", "text": "\u4e00\u540d\u5341\u51e0\u5c81\u7684\u5973\u5b69\u5728\u4e1c\u4eac\u7684\u8857\u9053\u4e0a\u8d70\u7740\u3002"} +{"id": "4003942", "video_name": "9df06b62-9081-5faa-99e2-17351478b082", "text": "\u5fc3\u8df3\u52a0\u901f\uff0c\u63d0\u7c73\u53ec\u96c6\u4e86\u4ed6\u53ef\u9760\u7684\u4f19\u4f34\uff1a\u72e1\u733e\u7684\u7b56\u7565\u5bb6\u827e\u7c73\u4e3d\uff0c\u719f\u7ec3\u7684\u5de5\u7a0b\u5e08"} +{"id": "5001897", "video_name": "3d829543-48ce-5148-bb3d-f3ff63113b7c", "text": "\u521b\u4f5c\u4e00\u90e8\u672a\u6765\u4e3b\u4e49\u79d1\u5e7b\u6545\u4e8b\uff0c\u5176\u4e2d\u5148\u8fdb\u7684\u6280\u672f\u4f7f\u4eba\u4eec\u53ef\u4ee5\u4eb2\u8eab\u76ee\u7779\u7c7b\u4f3c\u9a6c\u62c9\u5179\u683c\u5c14\u5fb7\u6218\u5f79\u8fd9"} +{"id": "0003137", "video_name": "37d4ccae-5375-580d-87af-2e25d8510d99", "text": "\u900f\u660e\u88d9\u5b50\u91cc\u9762\u6ca1\u6709\u7a7f\u8863\u670d\u7684\u5973\u58eb"} +{"id": "3004068", "video_name": "34772c49-10a0-5248-bd30-da60ffb6e148", "text": "\u5728\u4e00\u6735\u7ea2\u73ab\u7470\u4e0a\u65b9\uff0c\u6709\u4e00\u53ea\u7f8e\u4e3d\u7684\u8774\u8776\u5728\u98de\u7fd4\u3002"} +{"id": "1004695", "video_name": "574a5979-28d3-50e7-85da-d84a531ada84", "text": "\u4e24\u4e2a\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u4e0d\u540c\u98ce\u683c\u7684\u725b\u4ed4\u5e3d\u548c\u5de5\u88c5\u88e4\uff0c\u5750\u5728\u684c\u5b50\u65c1\uff0c\u9762\u5e26\u6ed1\u7a3d\u8868\u60c5\uff0c\u540c\u65f6\u5bf9"} +{"id": "5001173", "video_name": "2017f31f-cdaf-5b17-83a9-9aad3197c609", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u5728\u591c\u665a\u7684\u6d77\u5cb8\u7a7f\u7740\u84dd\u8272\u6cf3\u8863\u8df3\u821e\u3002\u5979\u62e5\u6709\u957f\u957f\u7684\u539a\u91cd\u7684\u91d1"} +{"id": "0004044", "video_name": "0215f905-4236-5c68-ba41-e298566e5c46", "text": "\u4e24\u4e2a\u5b69\u5b50\u625b\u7740\u4e00\u4ef6\u6cd5\u8001\u91d1\u5b9d\u85cf\u3002"} +{"id": "3003961", "video_name": "bcee4789-7a12-5f93-ba9d-fcb0f32db61f", "text": "\u8fd9\u53ea\u72d7\u5f39\u7740\u5409\u4ed6\uff0c\u540c\u65f6\u8dfa\u7740\u811a\uff0c\u5c55\u73b0\u51fa\u751f\u52a8\u7684\u52a8\u4f5c\u3002"} +{"id": "3006547", "video_name": "548e22f6-d2a8-525d-923c-bc8a5bf99338", "text": "\u5370\u5ea6\u58eb\u5175\u4fdd\u62a4\u4ed6\u7684\u56fd\u65d7\u3002"} +{"id": "4003962", "video_name": "e3acba07-f276-556e-b903-c1d58327f7c5", "text": "\u5728\u591c\u665a\u7a7f\u8fc7\u57ce\u5e02\uff0c\u6211\u4eec\u770b\u5230\u4e00\u6761\u9ed1\u6697\u7684\u4e0d\u7965\u5c0f\u5df7\u3002\u6444\u50cf\u673a\u5728\u4e00\u6761\u5b64\u72ec\u7a7a\u8361\u7684\u8857\u9053\u4e0a\u6162"} +{"id": "2005824", "video_name": "fa0f98c6-9c31-5d9c-b52b-5bcd6186dcc5", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7535\u5f71\uff0c\u624b\u7ed8\u52a8\u753b\uff0c\u7a7a\u4e2d\u4fef\u77b0\u65e5\u672c\u6d77\u6ee8\u4f20\u7edf\u623f\u5c4b\u7684\u57ce\u9547\u3002"} +{"id": "2005141", "video_name": "95ba74f3-dc8d-503e-bf79-eab4be7450fc", "text": "\u5ba4\u5185\u690d\u7269\u5728\u623f\u95f4\u91cc\u75af\u72c2\u821e\u52a8\u3002\n\nSource sentence: The sun sets behind the mountains in the west. \n\n\u592a\u9633\u5728\u897f\u8fb9\u7684\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "3003231", "video_name": "962aada6-7235-5927-ae4e-be89d733664f", "text": "\u4e00\u4e2a\u538b\u529b\u8ba1\u663e\u793a\u538b\u529b\u503c\u4e3a55\u3002"} +{"id": "0005982", "video_name": "245d01ed-9cb8-5735-af14-85ad9a85c34f", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u5ba2\u5385\u91cc\uff0c\u54c6\u5566A\u68a6\u548c\u5c0f\u53ee\u5f53\u5728\u4ea4\u8c08\u3002"} +{"id": "0006799", "video_name": "334f97dd-32c2-5180-8333-cbf0c4df0657", "text": "\u5370\u5ea6\u4e3a\u5176\u79d1\u5b66\u5bb6\u7684\u6708\u7403\u4efb\u52a1\u611f\u5230\u81ea\u8c6a\u3002"} +{"id": "3003293", "video_name": "3dabe0d2-7e1e-50bb-b8e5-8c30edd99259", "text": "PS5\u7684\u8718\u86db\u4fa0\u548c\u8fc8\u5c14\u65af\u00b7\u83ab\u62c9\u96f7\u65af\u5728\u591a\u4f26\u591a\u5e02\u4e2d\u5fc3\u7684\u6838\u5fc3\u533a\u8361\u79cb\u5343\uff0c\u52a0\u62ff\u5927\u56fd\u5bb6"} +{"id": "0004126", "video_name": "03aba788-cd33-5d1e-b493-74067487983d", "text": "\u7c73\u5947\u8001\u9f20\u5728SEO\u672f\u8bed\u7684\u8ff7\u5bab\u4e2d\u5954\u8dd1\u3002"} +{"id": "7003947", "video_name": "130b926f-f5ab-5eb3-9453-cc8c6ea276c5", "text": "\u4e00\u500b\u6dda\u773c\u6fd5\u6f64\u7684\u4eba\u7ad9\u5728\u67d4\u548c\u7167\u660e\u7684\u623f\u9593\u88e1\uff0c\u900f\u904e\u534a\u63a9\u7684\u9580\uff0c\u770b\u8457\u53e6\u4e00"} +{"id": "3003591", "video_name": "7d041206-8b9c-5734-9ed3-da4a449ef167", "text": "\u7537\u4eba\u6253\u6597 \u4fe1\u606f\uff1a\u4fdd\u7f57 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1005388", "video_name": "630a89b2-e9c8-5fee-befc-80dbbc6a3704", "text": "\u60ca\u6050\u7684\u5b87\u822a\u5458\u5728\u8231\u5185\u91cd\u65b0\u8fdb\u5165\u5927\u6c14\u5c42\uff0c\u4fa7\u9762\u89c6\u89d2\uff0c\u9ad8\u6e05\u3002"} +{"id": "0003994", "video_name": "014c5b6e-6c6a-5046-b24a-b12874dc5b81", "text": "\u6d77\u6d6a\u4e0a\u6700\u7f8e\u7684\u843d\u65e5\u5370\u8c61\u4e3b\u4e49\u7167\u7247\uff0c\u70ed\u5e26\u6d77\u6ee9\uff0c\u68a6\u5e7b\u3001\u6d6a\u6f2b\uff0c\u6eda\u6eda\u7684\u6d77\u6d6a\uff0c\u6f02"} +{"id": "6003909", "video_name": "bc57720a-5372-5817-900f-b3b072a401fc", "text": "\u5929\u7a7a\u4e2d\u6709\u82b1\u6735\u3001\u8611\u83c7\u3001\u6307\u5411\u8349\u3002"} +{"id": "0004845", "video_name": "102b1582-2aab-58fa-bc3b-24e0f46bd082", "text": "\u903c\u771f\u76844K\u56fe\u7247\uff0c\u4eba\u7269\uff0c\u5458\u5de5\uff0c\u538b\u529b\uff0c\u8bbe\u8ba1\u516c\u53f8\uff0c\u5de5\u4f5c\u6d41\u7a0b\u3002"} +{"id": "2007104", "video_name": "2db835e8-3ab4-5d8c-a0a5-79e8e840c109", "text": "\u4e00\u53ea\u732b\u505a\u540e\u7a7a\u7ffb\uff0c\u843d\u5728\u4e00\u4e2a\u6795\u5934\u4e0a\u7684\u89c6\u9891\u3002"} +{"id": "5001853", "video_name": "2def2955-0f6c-5da0-bb1a-2d5766703d7a", "text": "\u6211\u7684\u670b\u53cb\u548c\u6211\u5728\u8df3\u821e\u3002"} +{"id": "0004246", "video_name": "05b3a98f-8127-5242-921a-6a11c8bb1e99", "text": "\u4ece\u5728\u51b0\u5c9b\u516c\u8def\u4e0a\u5f00\u8f66\u65f6\u7a97\u6237\u5916\u770b\u5230\u7684\u666f\u8c61\u3002"} +{"id": "3005358", "video_name": "aa57c8c5-1b7e-5a92-b7a5-b5f5c03678a7", "text": "\u4e00\u4e2a\u7530\u56ed\u98ce\u5149\u7684\u6751\u5e84\u5e7f\u573a\uff0c\u94fa\u7740\u9e45\u5375\u77f3\u5c0f\u8def\uff0c\u80cc\u666f\u662f\u53e4\u8272\u53e4\u9999\u7684\u623f\u5c4b\u3002"} +{"id": "2003389", "video_name": "93a4764e-0190-5ba4-8b69-885b53c4e3a4", "text": "\u5c0f\u5b69\u5c71\u59c6\u5728\u8dd1\u9053\u4e0a\u5954\u8dd1\uff0c\u4e3a\u4e86\u6551\u52a9\u90a3\u4f4d\u8001\u5976\u5976\u3002"} +{"id": "2007662", "video_name": "6dc115e2-39aa-5d0d-8ed7-fbde6a068bdf", "text": "\u6708\u4eae\u88ab\u9ed1\u4e91\u906e\u4f4f\u4e86\u3002"} +{"id": "0003982", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "\u73ed\u5c3c\u5728\u8349\u5730\u4e0a\u9047\u89c1\u4e86\u7f57\u831c\u5154\uff0c\u4e24\u53ea\u5154\u5b50\u90fd\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "6003568", "video_name": "63695f38-2027-5734-a1c5-be23c564cf36", "text": "\u4e00\u4e2a\u7ad9\u5728\u6536\u94f6\u53f0\u7684\u5973\u5b69\u3002"} +{"id": "1005235", "video_name": "6049ca62-3702-53b7-aa4a-ca1892ae5087", "text": "\u6e56\u9762\u4e0a\u7684\u8239\u5306\u5306\u5730\u5954\u5411\u65e5\u843d\u3002"} +{"id": "8001189", "video_name": "38314e73-e28c-59ad-92cd-1757c9a9417b", "text": "\u5728\u641c\u7d22\u680f\u4e2d\u8f93\u5165\u5173\u952e\u8bcd\u3002"} +{"id": "0004620", "video_name": "0c0dbc11-f3d5-5db0-b189-cfdb966d62b7", "text": "\u884c\u661f\u548c\u536b\u661f\u7684\u5f62\u6210"} +{"id": "2005493", "video_name": "d52796c9-9948-5824-bc98-2ab6d7e6ebdb", "text": "\u7537\u6027\u5bb6\u5ead\u6cb9\u6f06\u627f\u5305\u5546\u8868\u73b0\u826f\u597d\uff0c\u770b\u7740\u624b\u8868\u3002"} +{"id": "7004286", "video_name": "1f916156-d061-5c4f-bcab-4e95e9ed7057", "text": "\u7f8e\u4e3d\u7684\u5973\u6a21\u7279\u7a7f\u7740\u767d\u8272\u62c9\u94fe\u536b\u8863\uff0c\u5174\u594b\u5730\u4e3e\u8d77\u53cc\u81c2\uff0c\u9ad8\u8d28\u91cf\uff0c\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "5001726", "video_name": "384ca2c8-e573-51c6-833f-2e7112b2e561", "text": "\u72ec\u81ea\u7684\u7537\u4eba\uff0c\u7ad9\u5728\u5c71\u8c37\u91cc\uff0c\u98ce\u4ece\u80cc\u540e\u5439\u6765\uff0c2D\u52a8\u753b\uff0c\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "0005395", "video_name": "1a0cead7-4208-5949-bbd8-167bf8b22f90", "text": "\u690d\u7269\u5728\u96e8\u4e2d\u8f7b\u8f7b\u5730\u6f02\u6d6e\u7740\u3002"} +{"id": "8003178", "video_name": "f34cf0ba-80fb-51da-816d-173fd6b96d60", "text": "\u4e00\u4f4d\u8001\u7070\u987b\u6e14\u592b\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u5bfa\u5e99\u91cc\u97a0\u8eac\u3002"} +{"id": "3004395", "video_name": "bfd134e3-5958-5a43-a08c-83980e053bfb", "text": "\u6765\u81ea\u6545\u4e8b\u4e2d\u7684\u5404\u79cd\u9e1f\u7c7b\u548c\u52a8\u7269\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u5f3a\u8c03\u591a\u6837\u6027\u548c\u56e2\u7ed3\u3002"} +{"id": "0003727", "video_name": "427765fe-e1ff-5a44-8495-c0ce01286091", "text": "\u4e24\u4e2a\u673a\u5668\u4eba\u5728\u7a7a\u4e2d\u6218\u6597\u3002"} +{"id": "3004125", "video_name": "aa2b63ad-917b-5884-8a82-94b68a32816a", "text": "\u4e00\u53ea\u732b\u5728\u6e38\u6cf3\u6c60\u91cc\u6e38\u6cf3\u3002"} +{"id": "5001272", "video_name": "e63fbc17-09a0-524f-b30f-920806db85f8", "text": "\u4e00\u4e2a\u516d\u5c81\u7684\u5c0f\u5973\u5b69\u665a\u4e0a\u8eba\u5728\u5979\u7684\u5e8a\u4e0a\uff0c\u4ece\u4e0a\u65b9\u7684\u6444\u50cf\u5934\u89c6\u89d2\u62cd\u6444\u3002"} +{"id": "1004588", "video_name": "5555d961-2dfd-5475-b96b-d2c1df581be3", "text": "\u573a\u666f\uff1a\u8bb8\u591a\u4eba\u53c2\u89c2\u68b5\u8482\u5188\uff0c\u9634\u6697\u591a\u96e8\u7684\u4e0b\u5348\uff0c\u7d20\u63cf\u98ce\u683c\u3002\u76f8\u673a\u4f7f\u752822\u6beb\u7c73\u955c\u5934\uff0c\u9ed1"} +{"id": "0003503", "video_name": "3eb350b6-3dd1-59a1-b7ac-c57e5d7a1022", "text": "\u4e00\u53ea\u6234\u7740\u738b\u51a0\u5750\u5728\u77f3\u5934\u4e0a\u7684\u9752\u86d9\u7684\u521b\u610f\u6784\u56fe"} +{"id": "3004124", "video_name": "aa7fe47e-ff80-5bdf-87ab-7953ec963ba3", "text": "\u8fea\u58eb\u5c3c\u5361\u901a\u53cd\u6d3e\uff0c\u7559\u7740\u5c0f\u80e1\u5b50\uff0c\u6234\u7740\u9ad8\u9876\u793c\u5e3d\uff0c\u4e3e\u7740\u4e00\u5f20\u7a7a\u767d\u7684\u5361\u7247\uff0c\u767d"} +{"id": "2007282", "video_name": "ea412137-652a-514f-914f-bdd06b1f9f42", "text": "\u5728\u52a0\u62ff\u5927\uff0c\u6bcf\u79cd\u836f\u54c1\u572824\u5c0f\u65f6\u5185\u90fd\u662f\u5408\u6cd5\u7684\u3002"} +{"id": "2003994", "video_name": "67819c6b-eef8-59be-bac5-eec1c1e8577d", "text": "\u73ab\u7470\u4e2d\u7684\u6c34\u6ef4\uff0c\u592a\u9633\u7684\u5012\u5f71\u3002\n\nSource sentence: The cat is sleeping peacefully on the windowsill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u5b89\u9759\u5730\u7761\u89c9\u3002"} +{"id": "3006165", "video_name": "c7b76177-fa51-5545-84a2-52e419405849", "text": "\u4e00\u53ea\u4ed3\u9f20\u5728\u5403\u5bff\u53f8\u3002\u4ed3\u9f20\u5fc5\u987b\u5750\u5728\u684c\u5b50\u65c1\u3002\u80cc\u666f\u5fc5\u987b\u5305\u62ec\u5176\u4ed6\u4eba\u5728\u5176\u4ed6\u684c\u5b50\u4e0a\u3002"} +{"id": "8001837", "video_name": "f9a5c887-71de-517d-b48e-b6e3e4d81031", "text": "\u4eba\u7269\u4ece\u5706\u5f62\u8d70\u5eca\u8d70\u8fc7\uff0c\u4fa7\u9762\u89c6\u56fe\uff0c\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "2007001", "video_name": "1ea55801-b937-5ec8-9582-076841985a4d", "text": "\u548c\u5e73\u7684\u6751\u5e84\uff0c\u6709\u7740\u4e94\u989c\u516d\u8272\u7684\u623f\u5c4b\u548c\u5fae\u7b11\u7684\u6751\u6c11\u3002"} +{"id": "0005619", "video_name": "1e38dec1-06e3-50e0-927f-356a5135bca4", "text": "\u585e\u6bd4\u535a\u58eb\u76f4\u63a5\u548c\u4f60\u5bf9\u8bdd\uff0c\u4ed6\u5750\u5728\u4ed6\u7684\u533b\u751f\u529e\u516c\u5ba4\u91cc\uff0c\u80cc\u666f\u4e2d\u6709\u8349\u836f\u3002"} +{"id": "0003613", "video_name": "40788fcb-2a4d-5dc8-a06e-53ee356a135a", "text": "\u6709\u773c\u775b\u7684\u6c64\uff0c\u6ce8\u89c6\u7740\u6708\u4eae\u3002"} +{"id": "0004353", "video_name": "079342fb-6feb-5694-9791-3e06f9930029", "text": "\u4e07\u5723\u8282\u65f6\uff0c\u9ed1\u6697\u7684\u5a01\u5c14\u57fa\u8def\u94f6\u6cb3\u7cfb\u4e0a\u6709\u5357\u74dc\u3002\u7559\u8a00\uff1aElora\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006203", "video_name": "71b53837-410d-5c86-b6c6-8c7f0853bb9e", "text": "\u5728\u6bc1\u706d\u6027\u7684\u4e16\u754c\u5927\u6218\u540e\uff0c\u6b27\u6d32\u7ecf\u5386\u4e86\u4e00\u6b21\u5353\u8d8a\u7684\u77e5\u8bc6\u548c\u827a\u672f\u590d\u5174\uff0c1919\u5e74\u7684\u6587\u5316\u3001\u653f\u6cbb"} +{"id": "4002407", "video_name": "a67dd8f7-984a-5aa9-a4e8-405b3ccf2c88", "text": "\u7c89\u767d\u8272\u82b1\u6735\u7684\u6237\u5916\u5a5a\u793c\u3002 \n\nSource sentence: She is studying medicine at the university. \n\u5979\u5728\u5927\u5b66\u5b66\u4e60\u533b\u5b66\u3002"} +{"id": "1003251", "video_name": "3bda1940-4004-54fb-a12d-897923a8e4dc", "text": "\u4e00\u4e2a\u5728\u68ee\u6797\u4e2d\u65e9\u6668\u5236\u4f5c\u8239\u53ea\u7684\u5370\u5ea6\u5c11\u5e74\u3002 \n\nSource sentence: I will be attending a conference in Shanghai next week. \n\u6211\u4e0b\u5468\u5c06\u53c2\u52a0\u5728\u4e0a\u6d77\u4e3e"} +{"id": "2005385", "video_name": "fff7e82f-7866-5eaa-94ca-9950c549769b", "text": "\u8863\u670d\u5806\u5728\u5e8a\u4e0a\uff0c\u660e\u4eae\u7684\u989c\u8272\uff0c\u81ea\u7136\u5149\u7ebf\u3002"} +{"id": "6004703", "video_name": "0a972cd8-25ed-5f89-a632-ceba4cfdd154", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u66b4\u9f99\u6b63\u5728\u5f20\u5f00\u5b83\u7684\u5927\u5634\u653b\u51fb\u4e00\u8f86\u8f66\u3002"} +{"id": "0003478", "video_name": "3e5684b3-5dc5-5ef1-a271-b89f1c77a743", "text": "\u8fd9\u53f0\u673a\u5668\u6709\u773c\u775b\u5e76\u4e14\u7728\u773c\u775b\u3002"} +{"id": "2004169", "video_name": "5dbc624e-2d7a-52ba-98f6-f35f1795a13d", "text": "\u6cd5\u5ead\u914d\u5907\u4e00\u5207\u6280\u672f\u8bbe\u5907\u548c\u5168\u606f\u56fe\u50cf\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "1005942", "video_name": "6d319bad-3e32-5689-a7d4-48df0db0b3d8", "text": "\u8001\u592b\u59bb\u8eba\u5728\u7ebd\u7ea6\u516c\u5bd3\u7684\u5e8a\u4e0a\uff0c\u89c2\u8d4f\u65e5\u51fa\u3002"} +{"id": "1006149", "video_name": "70a7e80e-1a7c-571c-bd20-ab7a5941fe66", "text": "\u4e91\u6735\u8d77\u521d\u6742\u4e71\u65e0\u7ae0\u5730\u821e\u52a8\uff0c\u9010\u6e10\u53d8\u5f62\u6210\u4e3a\u4e00\u4e2a\u4eba\u7c7b\u82ad\u857e\u821e\u8005\u3002"} +{"id": "2005909", "video_name": "249e52e2-a66f-59bf-8dd6-e0338d427339", "text": "\u5b5f\u52a0\u62c9\u519c\u6c11\u5728\u5e84\u7a3c\u7530\u91cc\u8df3\u821e\u3002"} +{"id": "1005596", "video_name": "66f34f3b-6ef4-5d5e-b22f-fd93bda2cf98", "text": "\u516c\u4e3b\u8389\u4e9a\u5750\u5728\u6b7b\u661f\u4e0a (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1004154", "video_name": "4cf9b07d-b7af-5e49-9cd6-206392f51dad", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5438\u8840\u9b3c\u9762\u5b54\uff0c\u7ea2\u8272\u7684\u773c\u775b\uff0c\u957f\u53d1\uff0c\u5728\u9ed1\u6697\u7684\u591c\u665a\u3002"} +{"id": "1004372", "video_name": "50c16541-21ac-599d-95d4-9274630cb7fb", "text": "\u955c\u5b50\u4e0a\u6709\u8840\u8ff9\uff0c\u80cc\u666f\u6709\u95ea\u7535\u6253\u51fb\u3002"} +{"id": "3003486", "video_name": "a11f2dc3-4797-5f4a-bb04-86136b2fb709", "text": "\u6765\u81ea\u7eb3\u62c9\u897f\u739b\u5927\u795e\u7684\u4fdd\u62a4\u548c\u795d\u798f\u30028k\u5206\u8fa8\u7387\uff0c\u52a8\u753b\uff0c\u903c\u771f\u3002"} +{"id": "5001188", "video_name": "af7a86be-7d93-57d4-8a78-570885cbafe6", "text": "\u8fd9\u53ea\u72d7\u8bc1\u660e\u4e86\u5b83\u662f\u6b63\u786e\u7684\u3002"} +{"id": "6003329", "video_name": "f8365a3f-c7ea-5b1f-bc49-610285719178", "text": "\u9a6c\u91cc\u5965\u5403\u610f\u5927\u5229\u9762\u56db\u4e2a\u5c0f\u65f6\u3002"} +{"id": "8001588", "video_name": "a76abb8e-f832-58ff-bfca-1a1d5836b1f8", "text": "\u7cbe\u7075\u5deb\u5e08\uff0c\u5c16\u8033\u6735\uff0c\u5e7b\u60f3\uff0c\u5492\u8bed\uff0c\u7ea2\u8272\uff0c\u659c\u89d2\u62cd\u6444"} +{"id": "2006733", "video_name": "039f01db-199f-5fc1-a60f-8f0efbe10b3f", "text": "\u4e00\u4e2a\u5a74\u513f\u662f\u5728\u540e\u666f\u4e2d\u6e10\u53d8\u7684\u5706\u5f62\u5149\u8292\u4e2d\u51a5\u60f3\u3002"} +{"id": "4003133", "video_name": "6a14d588-b8ff-59df-b223-68789f5e53b8", "text": "\u52a0\u901f\u65f6\u5149\u673a\u4e0e\u5c81\u6708\u5306\u5306"} +{"id": "3005394", "video_name": "cc5ab460-eec3-5c59-b6fa-4c12dccb0be6", "text": "\u4e24\u53ea\u5b9d\u5b9d\u9e1f\u5728\u624b\u4e0a\u3002"} +{"id": "0005574", "video_name": "1d37a147-5b0a-51de-8b67-33114ff2a7cc", "text": "\u4f0a\u5229\u4e9a\u5931\u53bb\u4e86\u6240\u6709\u8d4c\u535a\u8d5a\u6765\u7684\u94b1\u3002"} +{"id": "7003112", "video_name": "6f40d45a-1647-54d7-92e6-c1970926f8e3", "text": "\u6c99\u6f20\u4e2d\u60ca\u8273\u7684\u5e7f\u89d2\u6c99\u5c18\u66b4\u62cd\u6444\uff0c\u7528ARRI ALEXA\u6444\u50cf\u673a\u62cd\u6444\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "1004975", "video_name": "5bfa4e7b-26dc-59f2-b7c7-72e934b70586", "text": "\u4e00\u5f20\u5e7f\u89d2\u62bd\u8c61\u5efa\u7acb\u955c\u5934\uff0c\u5c55\u73b0\u4e00\u4e2a\u5e74\u8f7b\u5e05\u6c14\u7684\u9ed1\u4eba\u7537\u5b69\u5b64\u8eab\u4e00\u4eba\uff0c\u6cae\u4e27\u4e8e\u4eba\u7c7b\u6240\u505a\u51fa\u7684\u4e2a\u4eba\u548c"} +{"id": "1004007", "video_name": "4a207e75-775c-50f2-a761-a64355f34b37", "text": "\u91d1\u5c5e\u4e50\u961fMetallica\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u7a7f\u7740\u9a6c\u91cc\u5947\u88c5\u626e\uff0c\u5f39\u7740\u5409\u4ed6\uff0c\u6709\u86cb\u7cd5\uff0c\u5f69"} +{"id": "6003854", "video_name": "def2f93b-40ae-5a2e-929d-bc8d4ae5f4ba", "text": "\u4e00\u4e2a\u624b\u67c4\u676f\uff0c\u624b\u5728\u676f\u5b50\u91cc\u9762\uff0c\u800c\u4e0d\u662f\u5916\u9762\uff01"} +{"id": "6004469", "video_name": "01dc3542-73f1-588f-a0e4-a8d4738c7c9c", "text": "\u4e00\u6bb5\u50cf\u6444\u50cf\u5934\u8fdb\u5165\u6df1\u6d77\u4e00\u6837\u7684\u89c6\u9891\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4fa7\u9762\u7684\u6c14\u6ce1\u3002"} +{"id": "7003825", "video_name": "53ac4785-6fef-53e1-80f4-a0128b0d4773", "text": "ource sentence in Chinese: \u5728\u4e00\u4e2a\u96e8\u591c\uff0c\u827e\u7c73\u4e3d\u72ec\u81ea\u7ad9\u5728\u4f1e\u4e0b\uff0c\u8bef\u89e3\u5bfc\u81f4\u6fc0\u70c8\u4e89\u5435\uff0c\u8ba9\u827e\u7c73\u4e3d"} +{"id": "0006971", "video_name": "36001929-3913-5e4c-b739-6f2c3823122e", "text": "\u4e00\u5f20\u72d7\u5750\u5728\u5723\u8bde\u6811\u4e0b\u7684\u56fe\u7247\u3002"} +{"id": "5001415", "video_name": "977ebf37-7d90-517c-9635-06295e2f4224", "text": "\u4e00\u5e45\u5e26\u6709\u6d41\u52a8\u6c34\u7684\u53e4\u4ee3\u6b27\u6d32\u5730\u56fe\u3002"} +{"id": "3006703", "video_name": "0f614d17-5d89-50a1-819a-715a98b4849e", "text": "\u57283D\u9ad8\u6e05\u96e8\u6797\u4e2d\uff0c\u6709\u4e00\u4f4d\u6d3b\u7075\u6d3b\u73b0\u7684\u975e\u88d4\u7f8e\u56fd\u4eba\u548c\u5e7c\u72ee\u5d3d\u4e00\u8d77\u73a9\u800d\u3002"} +{"id": "1003882", "video_name": "47817738-0963-5cd9-91ab-f8f307d059dc", "text": "\u5728\u82b1\u56ed\u91cc\uff0c\u63d0\u793a\u60c5\u4fa3\u8ddf\u843d\u5728\u5730\u4e0a\u7684\u843d\u53f6\u804a\u5929\u3002"} +{"id": "8003621", "video_name": "70ad9f06-091e-5244-bf55-9197f24c5992", "text": "\u7537\u5b50\u6b63\u5728\u4fee\u7406\u4e00\u90e8\u7834\u788e\u7684iPhone 15\u5c4f\u5e55\u3002"} +{"id": "1004545", "video_name": "5466e6a0-7983-5925-bc12-d31aac10610c", "text": "\u8d85\u7ea7\u5973\u82f1\u96c4\u7a7f\u7740\u7d27\u8eab\u76ae\u8863\u548c\u5e3d\u5b50\u5728\u5c4b\u9876\u4e0a\u8d70\u8def\uff0c1970\u5e74\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "0006473", "video_name": "2d1b623f-66a6-54d3-b647-2745b55c4752", "text": "\u7537\u5b50\u4ece\u7535\u89c6\u673a\u91cc\u8df3\u51fa\u6765\uff0c\u65c5\u884c\u822c\u7684\u4f53\u9a8c\uff0c\u52a8\u611f\u5341\u8db3\uff0c\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u98ce\u683c\u3002"} +{"id": "7004799", "video_name": "99ce1336-2b8a-5095-ba85-468266febe2d", "text": "\u4e0d\u9053\u5fb7\u7684\u4ef0\u671b\u5929\u7a7a\u5e76\u770b\u5230\u3002"} +{"id": "4003669", "video_name": "9985fd7d-bcc5-5c11-9b39-5dc08f5e251d", "text": "\u4e00\u4e2a\u53e4\u8001\u3001\u660f\u6697\u7684\u56fe\u4e66\u9986\uff0c\u6728\u5236\u4e66\u67b6\u4e0a\u5806\u6ee1\u4e86\u53e4\u8001\u7684\u4e66\u7c4d\u3002\u5929\u82b1\u677f\u4e0a\u6302\u7740\u8718\u86db\u7f51"} +{"id": "7003793", "video_name": "7ac3eedd-a436-5506-a386-377ac77743e9", "text": "\u732b\u6b63\u5728\u5403\u7eff\u8272\u7684\u9762\u6761\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u5728Artstation\u4e0a\u6d41\u884c\uff0c\u662f\u6770\u4f5c\uff0c\u9ad8\u8d28\u91cf\uff0c8k\u3002"} +{"id": "1005953", "video_name": "6d544947-9e88-5102-8e40-3061a274d4a3", "text": "\u8389\u8389\u548c\u6728\u9a6c\u7684\u6545\u4e8b"} +{"id": "0006568", "video_name": "2ec1afb1-f8a5-5fc1-b69c-c240ef7cce49", "text": "DNA\u5206\u5b50\u5728\u5730\u7403\u80cc\u666f\u4e0b\u65cb\u8f6c\u3002"} +{"id": "6002328", "video_name": "dc73e75a-2890-5be7-814d-cfb323e5d8b8", "text": "\u5728\u82f1\u56fd\u4f0d\u5c14\u76ae\u7279\u6751\u7684\u7530\u91ce\u8fb9\u7f18\u3002"} +{"id": "7002991", "video_name": "95ff5972-7eb1-52c6-a206-1c529e721825", "text": "\u4e00\u6bb5\u957f\u89c6\u9891\uff0c\u4ecb\u7ecd\u4e30\u7530Mark 2\u5728\u6c99\u6f20\u4e2d\u7684\u60c5\u51b5\u3002"} +{"id": "1005033", "video_name": "5d17be26-879f-5a52-8c64-a6ad3b2012b7", "text": "\u4ece\u53f3\u5411\u5de6\u7684\u8fd0\u52a8"} +{"id": "3003224", "video_name": "b2b0ec06-1b6e-5a12-bfdd-f09c0e748f84", "text": "\u94f6\u884c\u5de5\u4f5c\u4eba\u5458\u628a\u73b0\u91d1\u7bb1\u653e\u8fdb\u4e00\u8f86\u9762\u5305\u8f66\u91cc\u3002\u89c6\u89d2\u5e94\u8be5\u5728\u8f66\u5185\u3002"} +{"id": "3005614", "video_name": "35095d79-0f59-583b-bde7-dd4a3d4413d8", "text": "\u7d2b\u8272\u6709\u89d2\u7684\u67d0\u7269\u4ece\u70df\u96fe\u5c4f\u969c\u4e2d\u51b2\u5411\u6218\u6597\uff0c\u4ece\u8fdc\u5904\u7684\u89c6\u9891\u4e2d\u770b\u5230\u3002"} +{"id": "2003504", "video_name": "03a0938c-2423-551c-a8f6-86aef9a363d7", "text": "\u4e00\u4e2a\u5973\u4eba\u8eba\u5728\u9ed1\u6697\u7684\u5730\u677f\u4e0a\u660f\u8ff7\u4e0d\u9192\u7684\u591c\u665a\u3002"} +{"id": "0005427", "video_name": "1a9dfa9f-0a8e-5895-9a97-d9b5f63b0917", "text": "\u6c34\u4e0b\u88ab\u73ca\u745a\u8986\u76d6\u7684\u96c5\u5178\u5a1c\u5973\u795e\u96d5\u50cf\uff0c\u795e\u79d8\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "6003206", "video_name": "509e7e59-af95-5328-ba8f-52c4fc126c48", "text": "\u6050\u9f99\u6d1e\u7a74\u5165\u53e3\uff1a\u63cf\u7ed8\u6050\u9f99\u591a\u8482\u7b2c\u4e00\u6b21\u8e0f\u8fdb\u6d1e\u7a74\uff0c\u6050\u9f99\u7684\u773c\u775b\u5145\u6ee1\u4e86"} +{"id": "1006711", "video_name": "7afa2cbd-542a-5a69-ad93-82e36ac361c0", "text": "\u4e00\u53ea\u4e4c\u9e26\u98de\u8fc7\u68ee\u6797\uff0c\u5361\u901a\uff0c\u53ef\u7231\uff0c\u5929\u7a7a\u3002"} +{"id": "4004285", "video_name": "291a38f7-759a-517e-933c-a1874e3116d4", "text": "\u5723\u8bde\u6811\u4e0b\u653e\u7740\u4e00\u74f6\u9152\uff0c\u80cc\u666f\u91cc\u5bb6\u4eba\u548c\u4e00\u53ea\u72d7\u5728\u73a9\u800d\u3002"} +{"id": "2007615", "video_name": "e9650f44-43ab-5698-b2f1-99c75f638bb1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6c99\u6f20\u91cc\u8d70\u3002\u98ce\u5728\u4e00\u4e2a\u4eba\u5468\u56f4\u5f3a\u70c8\u65cb\u8f6c\u3002"} +{"id": "3005345", "video_name": "e1ccca52-d49f-5229-b6c5-589f92631891", "text": "\u4e00\u7fa4\u4eba\u6f2b\u6b65\u5728\u610f\u5927\u5229\u5c0f\u5df7\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "4003154", "video_name": "7c7e1f54-45d4-50fd-afe5-bd55cfa78526", "text": "\u4e00\u6735\u7d2b\u7ea2\u8272\u7684\u73ab\u7470\u82b1\uff0c\u82b1\u74e3\u4e0a\u9576\u5d4c\u7740\u94bb\u77f3\uff0c\u5728\u95ea\u70c1\u7684\u661f\u7a7a\u80cc\u666f\u4e0b\u6f02\u6d6e"} +{"id": "7004264", "video_name": "1bf17491-27bf-512f-b22f-a188aa1c95c8", "text": "\u9ed1\u8c79\u5973\u90ce\u6234\u7740\u91d1\u51a0\uff0c\u5468\u56f4\u662f\u4e1b\u6797\u548c\u91d1\u8272\u7684\u5149\u8292\u3002"} +{"id": "7003358", "video_name": "240be227-9ac7-53dc-9a9c-03987f8dc1cc", "text": "\u81ea\u7136\u4e2d\u9ce5\u9cf4\u8072\u4f34\u96a8\u8457\u5de5\u5ee0\u7684\u80cc\u666f\u8072\u3002"} +{"id": "3005733", "video_name": "e3616eff-3109-50e5-9e2c-68093c2a0f5e", "text": "\u8f6c\u53d8\u6cd5\u6208\u516c\u4ea4\u8f66\u4e3a\u56fe\u4e66\u9986\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "2003323", "video_name": "60b3d928-460f-5038-b243-6b5e08334263", "text": "\u8bb8\u591a\u82b1\u6735\u540c\u65f6\u5f00\u653e\u7684\u90a3\u4e00\u523b"} +{"id": "4004071", "video_name": "c6c36906-b9df-5172-a250-f11e2ef4b4cc", "text": "\u7537\u5b69\u5728\u68ee\u6797\u91cc\u7ed9\u4e00\u53ea\u767d\u72d7\u63d0\u4f9b\u98df\u7269\u548c\u6c34\u30023D\u52a8\u753b\u3002"} +{"id": "2007361", "video_name": "472542f0-d68d-5dc5-8fc3-076b441ecd0d", "text": "\u4e00\u5f20\u975e\u5e38\u8fd1\u8ddd\u79bb\u7684\u957f\u9888\u9e7f\u7167\u7247\uff0c\u957f\u9888\u9e7f\u7728\u773c\u5e76\u5fae\u7b11\u3002"} +{"id": "1004739", "video_name": "57cc3794-99bf-51d5-85be-33437ca5c938", "text": "\u5728LinkedIn\u4e0a\u6d4f\u89c8\u5de5\u4f5c\u804c\u4f4d\u7684\u89c6\u89c9\u6548\u679c\u3002\u6211\u5e0c\u671b\u5b83\u6709\u4e9b\u52a8\u753b\u611f\u3002"} +{"id": "3004566", "video_name": "c4e43488-3191-509e-adea-46f8bbd183c6", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u5c0f\u732b\u54aa\u8dd1\u8fc7\u6765\u95fb\u684c\u5b50\u4e0a\u7684\u5496\u5561\u8c46\u3002"} +{"id": "6004722", "video_name": "7dec7884-3464-5a1a-ae6a-59a3cdd4f008", "text": "\u4e00\u8f86\u6df1\u84dd\u8272\u7684\u8d5b\u8f66\u505c\u5728\u8d5b\u9053\u4e2d\u592e\uff0c\u540e\u9762\u6709\u770b\u53f0\u4e0a\u7684\u89c2\u4f17\u3002\u5728\u84dd\u8272\u8d5b\u8f66\u65c1\u8fb9\uff0c\u6709\u4e00"} +{"id": "1004619", "video_name": "55e6ad93-1021-5838-8139-046e663146b4", "text": "\u7ea2\u8611\u83c7\u4e16\u754c\u5728\u8fd9\u4e2a\u661f\u7403\u4e0a\u65cb\u8f6c\u3002"} +{"id": "2003452", "video_name": "4b972e66-92e0-5a2b-aab8-42a9a4e5c403", "text": "\u79d1\u6280\u8fd0\u884c\uff0c\u6570\u5b57\u672a\u6765\uff0c\u52a8\u6001\u6d41\u7545\uff0c\u73b0\u4ee3\u7b80\u7ea6\uff0c\u6df1\u7ea2\u8272\u80cc\u666f\u3002"} +{"id": "3003500", "video_name": "89f13dae-73ea-5e79-944d-bb68779c6386", "text": "3D\u52a8\u753b\uff0c\u63cf\u7ed8\u4e00\u4e2a\u8001\u8001\u8005\u6e29\u6696\u4ed613\u5c81\u7684\u513f\u5b50\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "2007368", "video_name": "88d61a96-b868-5ab8-a71c-ec1918c9daa7", "text": "\u9152\u5e97\u5de5\u4f5c\u4eba\u5458\u901a\u8fc7\u4f7f\u7528\u53d8\u7126\u76f8\u673a\u3001\u7ea2\u7d2b\u8272\u706f\u5149\u548c\u6d6a\u6f2b\u6c1b\u56f4\u6765\u6b22\u8fce\u5ba2\u4eba\uff0c\u914d\u59078K\u3001HDR\u3001\u52a8"} +{"id": "1005369", "video_name": "62c6019c-5cfc-5331-a3d2-7f1dd0e380d6", "text": "\u70df\u96fe\u3001\u591c\u665a\u3001\u6708\u5149\u30019:16\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u524d\u95e8\uff0c\u7f13\u6162\u5730\u5f00\u542f\uff0c\u63ed\u793a\u51fa\u4e00\u5bb6\u4eba\u72b9\u8c6b"} +{"id": "7003711", "video_name": "50ec59fe-9da5-5766-acf2-8d2250bef91c", "text": "\u5728\u90a3\u91cc\u603b\u662f\u6709\u4e00\u4e2a\u66f4\u9ed1\u6697\u7684\u4e00\u9762\u3002"} +{"id": "8003602", "video_name": "76de6c74-3157-52cd-81cd-84a6e8943a01", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u98ce\u666f\u753b\uff0c\u6d77\u8fb9\uff0c\u524d\u9762\u662f\u4f4e\u77ee\u7684\u5c0f\u5c71\u4e18\uff0c\u80cc\u540e\u662f\u5927\u6d77\u3002"} +{"id": "7004387", "video_name": "abf75b14-5fec-5c50-93d1-f36bc0346fa7", "text": "\u5728\u6b64\u57fa\u7840\u4e0a\uff0c\u751f\u6210\u4e86\u4e00\u5e45\u9c7c\u6162\u6162\u6e38\u52a8\u7684\u753b\u9762\u3002"} +{"id": "4002611", "video_name": "43bd89f7-11ae-528e-8961-9900ebcf3bde", "text": "\u7535\u5b50\u6d3e\u5bf9\u97f3\u4e50\uff0c\u660e\u65e5\u4e16\u754c\u97f3\u4e50\u8282\uff0cBAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004901", "video_name": "d624df12-fe77-5ce5-831a-588cd3d4012b", "text": "\u82b1\u56ed\u91cc\u7684\u5154\u5b50\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "0004917", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "\u4e00\u53ea\u82cd\u8747\u843d\u5728\u679c\u9171\u7f50\u4e0a\u3002"} +{"id": "4003598", "video_name": "a2e35e2b-6e4b-54ea-8a37-580ed07c8968", "text": "\u8fc8\u963f\u5bc6\u590d\u53e4\u98ce\u683c\u7684\u89c6\u9891\u5728\u4e00\u95f4\u4fef\u77b0\u57ce\u5e02\u7684\u516c\u5bd3\u91cc\uff0c\u7a97\u5916\u662f\u68d5\u6988\u6811\u3001\u57ce\u5e02\u548c\u6d77\u6d0b\u3002"} +{"id": "0005737", "video_name": "20649f19-2c28-5b00-88ee-d1966ed0ccbe", "text": "\u5728\u5916\u661f\u7403\u7684\u53e2\u6797\u88e1\uff0c\u4e00\u500b\u661f\u5149\u7480\u74a8\u7684\u591c\u665a\uff0c\u5230\u8655\u662f\u8272\u5f69\u7e7d\u7d1b\u7684\u5916\u661f\u690d\u7269\uff0c"} +{"id": "0005117", "video_name": "151117e5-8489-5725-ad8f-625ff80bb040", "text": "Translation: \u624b\u7d27\u63e1\u7740\u7ef3\u7d22\uff0c\u6c64\u59c6\u00b7\u514b\u9c81\u65af"} +{"id": "2004406", "video_name": "91856243-bee7-5d39-902d-76bd50dee50d", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u4e00\u4f4d\u6bcd\u4eb2\u62b1\u7740\u5979\u7684\u5b9d\u5b9d\u6652\u592a\u9633\u3002"} +{"id": "8001390", "video_name": "561b9262-a5ce-591c-b5cb-c972fe772136", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u7ebd\u7ea6\u7684\u6d77\u5578\u7684\u7535\u5f71\u822c\u903c\u771f\u7684\u573a\u666f\u3002"} +{"id": "4003435", "video_name": "0954e32b-990c-5c32-9d6d-711781bb71ed", "text": "\u5317\u6781\u718a\u5728\u51b0\u4e0a\u6355\u9c7c\u3002"} +{"id": "1003572", "video_name": "41e6d821-d8ab-572b-8621-fe0d4a6b9740", "text": "\u65b0\u5a18\u7a7f\u7740\u767d\u8272\u5a5a\u7eb1\uff0c\u65b0\u90ce\u7a7f\u7740\u767d\u8272\u897f\u88c5\uff0c\u65b0\u5a18\u624b\u6301\u767d\u8272\u73ab\u7470\u82b1\u675f\uff0c\u4ed6\u4eec"} +{"id": "3004202", "video_name": "3a123b6b-b654-5aa6-a98d-d96b51e25bba", "text": "\u7535\u5f71\u300a\u4e16\u754c\u5927\u6218Z\u300b\u4e2d\u7684\u573a\u666f\u3002\u50f5\u5c38\u7fa4\u5806\u79ef\u6210\u5c71\uff0c\u8bd5\u56fe\u6500\u722c\u8fc7\u4e00\u5835\u5de8\u5927\u7684\u5899\uff0c\u5f71\u89c6\u7279\u5199"} +{"id": "0003858", "video_name": "44bcb903-dcba-535a-9c7d-5344ab3b8ba9", "text": "\u68ee\u6797\u91cc\u7684\u52a8\u7269\u90fd\u559c\u6b22\u677e\u9f20\u3002"} +{"id": "0005109", "video_name": "14ed0916-fdf1-59ae-8bbf-26b094f78014", "text": "\u6234\u773c\u955c\u7684\u7537\u4eba\u5728 UFO \u98de\u8239\u4e2d\u3002"} +{"id": "4002869", "video_name": "3dbc7fb0-b3ea-5c93-a174-e36cff391dca", "text": "\u94a2\u94c1\u4fa0\u5728\u9ad8\u697c\u6797\u7acb\u7684\u57ce\u5e02\u4e2d\u98de\u7fd4\u3002"} +{"id": "8001689", "video_name": "7ea2b7b9-5a8f-59de-8779-c8e586bbe988", "text": "\u4e2d\u4e16\u7eaa\u6218\u6597\uff0c\u9a91\u58eb\uff0c\u5251\uff0c\u6570\u767e\u540d\u52c7\u58eb\uff0c\u9ed1\u6697\u3002"} +{"id": "7003671", "video_name": "01476cfc-fca9-5d41-bfce-b81660f0558a", "text": "\u4e00\u90e8\u5173\u4e8e\u6469\u6d1b\u54e5\u4e34\u754c\u4f4f\u6240\u548c\u5929\u4f7f\u768460\u5e74\u4ee3\u7535\u5f71"} +{"id": "4003277", "video_name": "c448fc02-7fa1-5fc4-a2d8-4f29f56a8d93", "text": "\u624b\u51fa\u73b0\u5728\u624b\u6cd5\u672f\u4e2d\u3002"} +{"id": "0005520", "video_name": "1c35392b-aada-50a4-aa77-eb093e972d14", "text": "\u9ad8\u54c1\u8d28\u7684\u5f71\u50cf\u7535\u5f71\uff0c\u4e00\u540d\u5973\u5b50\u5750\u5728\u4e00\u7247\u5145\u6ee1\u76db\u5f00\u5170\u82b1\u7684\u98d8\u6d6e\u82b1\u56ed\u4e2d\uff0c\u5468\u56f4\u4e91\u96fe\u7f2d"} +{"id": "1003504", "video_name": "40c7938e-d640-5913-9681-ff6f363e81a9", "text": "\u80dc\u5229\u7684\u65f6\u523b\uff0c\u9f99\u88ab\u6253\u8d25\u4e86\uff0c\u57c3\u5c14\u591a\u5229\u4e9a\u738b\u56fd\u5e86\u795d\u3002"} +{"id": "6003521", "video_name": "d6b87ef2-1ec3-5abe-a517-68e0856b033d", "text": "\u4e00\u6bb5\u9002\u7528\u4e8e\u624b\u673a\u7684\u7ad6\u5c4f\u89c6\u9891\uff0c\u955c\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\u70b9\u71c3\u7684\u5723\u8bde\u58c1\u7089\uff0c\u5de6\u8fb9\u662f\u5723\u8bde"} +{"id": "1003122", "video_name": "397f69bf-6347-5e8b-b267-94eb478d852e", "text": "\u6469\u897f\u5728\u51fa\u57c3\u53ca\u8bb0\u4e2d\u770b\u7740\u7ea2\u6d77\u3002"} +{"id": "0006301", "video_name": "2a4d1bb5-a7a5-59dc-a6e0-3deb4fb8e8c5", "text": "\u5c55\u793aTravis Scott\u8bbe\u8ba1\u7684\u4ed9\u4eba\u638c\u6770\u514b\u8fd0\u52a8\u978b\u3002"} +{"id": "0003209", "video_name": "3940cb19-2d0e-5fa7-ae6f-286015c24292", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272T\u6064\u548c\u773c\u955c\u7684\u6f02\u4eae\u5973\u5b69\u5728\u5fae\u7b11\u3002"} +{"id": "1004509", "video_name": "53a011bc-8184-5a45-b4e8-c5f461d51946", "text": "\u5c0f\u732b\u548c\u5c0f\u5b69\u90fd\u8f6c\u8fc7\u8eab\u6765\u770b\u3002"} +{"id": "3004338", "video_name": "c6352f33-7139-56bc-9805-9d28517c31e8", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5e74\u8f7b\u91d1\u53d1\u5973\u5b50\u62ff\u7740\u4e00\u628a\u771f\u67aa\u3002"} +{"id": "3006849", "video_name": "e35a64a4-12ca-53d2-bc40-6c632ae2594e", "text": "\u68ee\u6797\u4e2d\u7684\u5c0f\u623f\u5b50\u5361\u901a\u56fe\uff0c\u7ea2\u5c4b\u9876\uff0c\u7531\u8d1d\u5a05\u7279\u4e3d\u514b\u4e1d\u00b7\u6ce2\u7279\u521b\u4f5c\u3002"} +{"id": "1005999", "video_name": "6e3d3d5e-0832-5937-8c37-9b8cf8215e76", "text": "in its place.\n\nTranslation: \u4e00\u4e2a\u7537\u5b50\u6495\u4e0b\u4e86\u4fc4\u7f57\u65af\u56fd\u65d7\uff0c\u7136\u540e\u6362\u4e0a\u4e86\u4e00\u9762\u7ea2\u65d7\u3002"} +{"id": "8001285", "video_name": "92e632df-b33f-53bc-a818-983edbdbb8f7", "text": "\u5c16\u9510\u903c\u771f\u7684\u8fbe\u82ac\u5947\u8138\u53d8\u5f62\u8f6c\u6362\u6210\u91d1\u53d1\u6a21\u7279\u7684\u8138\uff0c\u84dd\u8272\u773c\u775b\uff0c\u9f3b\u5b50\uff0c\u9f3b\u5b50\u4e0a\u7684"} +{"id": "1003076", "video_name": "389335b5-d42a-5e9e-b287-b51b73b7ce44", "text": "\u559d\u4e00\u4e9b\u7ea2\u8336\u83c7\u914d\u4e00\u987f\u8f7b\u98df\u3002"} +{"id": "8001704", "video_name": "3dab1e08-8b8d-57b3-8c2d-9908bc93b919", "text": "\u56db\u4e2a\u7537\u4eba\u4e2d\u7684\u4e00\u4e2a\u8d70\u5411\u4ed6\u7684\u5973\u513f\uff0c\u8fdb\u884c\u4e86\u4e00\u6b21\u5145\u6ee1\u611f\u60c5\u7684\u62e5\u62b1\u3002"} +{"id": "5001086", "video_name": "670e381f-729c-5b1e-9486-71fa1cf837d6", "text": "\u5728\u79d1\u5b66\u5b9e\u9a8c\u5ba4\u4e2d\u8fdb\u884c\u661f\u9645\u6295\u5c04\u7684\u6050\u6016\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u9897\u7c92\u9ed1\u767d\u7167\u7247"} +{"id": "8001216", "video_name": "a3d72342-c2eb-56c5-9c19-e63e1419bff0", "text": "\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\u4e00\u4e2a\u767d\u8272\u7684\u5f71\u5b50\u3002"} +{"id": "3005200", "video_name": "ba913c0d-b19d-52d7-862b-b1ac314beb79", "text": "\u4e0b\u5348\uff0c\u4e00\u4e2a\u7a7a\u8361\u8361\u7684\u793e\u533a\uff0c\u6709\u975e\u5e38\u9ad8\u7684\u6811\u548c\u975e\u5e38\u5bbd\u7684\u9053\u8def\u3002"} +{"id": "0006134", "video_name": "271e3ae7-d31c-5f2e-a28d-8c0892a3f636", "text": "\u54c7\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u5fb7\u9ed1\u5170\u7684\u81ea\u7531\u4e4b\u5854\u5728\u65e5\u843d\u65f6\u5206\u3002"} +{"id": "0003847", "video_name": "44866008-0b86-5276-a023-61f78812443b", "text": "\u4e00\u500b\u53ef\u611b\u7d14\u771f\u7684\u4e03\u6b72\u5973\u5b69\uff0c\u9762\u5e36\u60b2\u50b7\u7684\u6b63\u9762\u8996\u89d2\u3002"} +{"id": "1005714", "video_name": "690db0b6-213e-51e1-b44c-e8747e82fa42", "text": "\u4f5b\u6559\u5bfa\u5e99\u573a\u666f\uff0c3D\u6548\u679c\uff0c\u7535\u5f71\u98ce\u683c\u6548\u679c\uff0c\u5e73\u79fb\u548c\u7f29\u653e\u56fe\u50cf\uff0c\u79fb\u52a8\u6548\u679c\u3002"} +{"id": "0006603", "video_name": "2f68d22b-3d72-5a41-93e6-100f94637eec", "text": "\u591c\u665a\u68ee\u6797\u4e2d\u4e00\u4e2a\u9ed1\u8272\u4eba\u5f71\u5f88\u6709\u7535\u5f71\u611f\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a"} +{"id": "7004567", "video_name": "cacd2906-835d-52a3-b463-34f6a2747783", "text": "\u4e00\u4e2a\u7531\u7a7a\u6c14\u5236\u6210\uff0c\u5e26\u7740\u4e16\u754c\u58f0\u97f3\u7684\u661f\u661f\u3002"} +{"id": "7004472", "video_name": "75901f9b-571b-5ffa-afc0-418418304799", "text": "\u592b\u5987\u5728\u5c4b\u9876\u9910\u5385\u559d\u996e\u6599\u3002"} +{"id": "4004690", "video_name": "33a3dae6-28c3-5c09-940b-2588b1ac701a", "text": "\u7f8e\u4e3d\u7684\u4e9a\u6d32\u5973\u5b69\uff0c\u771f\u5b9e\u5b58\u5728\uff0c\u5728\u51b0\u4e0a\u8df3\u821e\u3002"} +{"id": "8002516", "video_name": "27cc4cfb-cce5-5c92-b498-9ba36f776e2a", "text": "\u4e00\u4e2a\u68a8\u5f62\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u5316\u8eab\n\nSource sentence: I will meet you at the park at 3 PM.\n\u6211\u4f1a\u5728\u4e0b\u53483\u70b9\u5728\u516c\u56ed\u89c1\u4f60\u3002"} +{"id": "1003755", "video_name": "453bde52-386a-5ccb-8888-0b31097a1fee", "text": "\u4e00\u540d\u4eba\u7c7b\u4ece\u8857\u4e0a\u5411\u70d8\u7119\u5e97\u7684\u73bb\u7483\u91cc\u7aa5\u89c6\uff0c\u8bb8\u591a\u4eba\u7c7b\u7ecf\u8fc7\u8fd9\u5bb6\u5e97\u3002"} +{"id": "6002726", "video_name": "09ed5262-a6b5-5445-a451-20e677cf6703", "text": "\u8fd9\u8258\u8239\u6f02\u6d6e\u5728\u6cb3\u4e0a\uff0c\u6709\u4e00\u70b9\u96fe\u6c14\uff0c\u8239\u4e0a\u6709\u4e00\u4e2a\u4eba\u7ad9\u7740\uff0c\u5177\u6709\u4e2d\u56fd\u7535\u5f71\u7684\u7279\u8272\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "4002204", "video_name": "1b929836-1df3-5b44-9d2a-9bad7bfb5f0d", "text": "\u5728\u5982\u68a6\u4f3c\u5e7b\u7684\u6e56\u9762\u4e0a\uff0c\u6709\u4e00\u4e2a\u4e9a\u6d32\u7537\u5b50\u6f02\u6d6e\u5728\u6c34\u9762\u4e0a\u5438\u70df\uff0c\u592a\u9633\u900f\u8fc7\u6c34\u9762\u7167\u5c04\uff0c"} +{"id": "3006210", "video_name": "ce52e9ae-ae5e-5650-bac3-eb68a4e5ea72", "text": "\u675c\u5a03\u00b7\u5229\u5e15\u5728\u65f6\u88c5\u79c0\u4e0a\u5c55\u793a\u5979\u7684\u6700\u65b0\u65f6\u5c1a\u3002"} +{"id": "7004746", "video_name": "616dd3b2-a948-5d75-b132-ec628a095521", "text": "\u521b\u4f5c\u4e00\u4e2a10\u79d2\u949f\u7684\u89c6\u9891\u7f16\u8f91\u5668\u5c55\u793a\u96c6\u3002"} +{"id": "8001133", "video_name": "bfc25dd1-c5a3-5f9c-87e9-8a0ccc69a64b", "text": "\u7a7f\u6bd4\u57fa\u5c3c\u7684\u6027\u611f\u5973\u5b69\u5728\u51b2\u6d6a\u677f\u4e0a\u3002"} +{"id": "8002464", "video_name": "9806c8c6-1cba-5520-8b5a-bcb456b743ba", "text": "\u4e00\u4f4d\u5de5\u7a0b\u5e08\u5206\u6790\u673a\u5668\u6545\u969c\u3002"} +{"id": "2004504", "video_name": "5935a12e-737f-533e-9015-c209b9e3fe5c", "text": "\u8f6f\u4ef6\u516c\u53f8DevTeam\u4e3a\u4f01\u4e1a\u63d0\u4f9b\u8f6f\u4ef6\u89e3\u51b3\u65b9\u6848\u3002"} +{"id": "1005303", "video_name": "6171c224-00a1-598f-9b00-c9cf0593567c", "text": "\u4e00\u53ea\u6050\u9f99\u671d\u73b0\u4ee3\u522b\u5885\u8d70\u6765\uff0c\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "2005058", "video_name": "a5ba7d74-b848-549f-ae4c-15cdecb32c69", "text": "\u7537\u4eba\u989d\u5934\u4e0a\u6709\u7b2c\u4e09\u53ea\u773c\u775b\uff0c\u8986\u76d6\u7740\u66fc\u9640\u7f57\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c8k\u3002"} +{"id": "3005182", "video_name": "6a3df839-502c-5d9d-b0d5-e9fc50a16ec1", "text": "\u9a6c\u54c8\u5df4\u62c9\u5854\u6218\u4e89\u7684\u5f00\u59cb\u548c\u7bad\u5934"} +{"id": "6003553", "video_name": "36c0d043-db8a-5958-b947-30df8fbffab7", "text": "\u5f53\u592a\u9633\u843d\u5c71\u65f6\uff0c\u72ee\u5b50\u610f\u8bc6\u5230\u771f\u6b63\u7684\u9b54\u529b\u5728\u4e8e\u4e0e\u670b\u53cb\u5206\u4eab\u7f8e\u98df\u3002"} +{"id": "0004505", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "\u4e00\u7fa4\u670b\u53cb\u5750\u5728\u8def\u8fb9\u7684\u8336\u9986\u91cc\uff0c\u6109\u5feb\u5730\u804a\u5929\u3002"} +{"id": "0003077", "video_name": "36919da1-c262-510e-8f87-a830c5f48a16", "text": "\u8d85\u903c\u771f\u7684\u590d\u53e4\u98ce\u683c\u6c7d\u8f66\u7167\u7247\uff0c\u672a\u6765\u591c\u665a\u57ce\u5e02\uff0c\u591c\u665a\u9713\u8679\u706f\u3002"} +{"id": "1006526", "video_name": "77712720-5018-5169-8340-387cfc7e665f", "text": "YouTube\u9891\u9053\u5251\u7684\u9884\u89c8\u3002\u4ee5\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "6002027", "video_name": "f46031c0-8c76-59dd-92d6-418e42aee710", "text": "\u9ec4\u888d\u4eba\u7269\u5728\u8857\u9053\u4e0a\u76d8\u65cb\u3002"} +{"id": "6002993", "video_name": "5d987e0b-2095-50e4-af23-bb9a64777ad7", "text": "\u897f\u6c49\u548c\u7f57\u9a6c\u6253\u4e86\u4e00\u573a\u6218\u4e89\u3002"} +{"id": "0004976", "video_name": "1296b188-cff3-5168-a48f-4d348a54f9a4", "text": "\u9ed1\u591c\u4e2d\u7684\u9713\u8679\u57ce\u5e02\u3002\u4e00\u4f4d\u76f4\u53d1\u91d1\u8272\u5934\u53d1\u3001\u6d45\u68d5\u8272\u773c\u775b\u7684\u5973\u5b69\u548c\u4e00\u4f4d\u77ed\u53d1\u6ce2\u6d6a\u5f0f\u6df1\u68d5"} +{"id": "4004133", "video_name": "d3dd4f15-abf4-5d38-8932-bb05390782b9", "text": "\u4e00\u4e2a\u6325\u624b\u7684\u68d2\u4eba\u5f62\u89d2\u8272"} +{"id": "7002457", "video_name": "955a192f-adc5-58de-a0f9-909ab58d64c0", "text": "\u5361\u666e\u91cc\u5c9b\u4e0a\u7684\u6cd5\u62c9\u53e4\u5229\u5ca9\u77f3\u88ab\u96ea\u8986\u76d6\uff0c\u653e\u5927\u955c\u5934\u3002"} +{"id": "1005511", "video_name": "65784c82-6bbc-5d5e-978d-563345d98ea4", "text": "\u95f9\u9b3c\u7684\u5893\u5730\uff0c2\u5343\u7c73\u8fdc\uff0c\u6709\u4e2a\u7537\u4eba\uff0c\u4e00\u4e2a\u5973\u5b69\u5168\u8eab\u662f\u8840\uff0c\u5f53\u76f8\u673a\u653e\u5927\u5230\u4ed6\u7684\u773c\u775b\u65f6\uff0c\u5979\u51dd"} +{"id": "0004471", "video_name": "09a7a648-7724-57da-aaca-223ef998145c", "text": "\u4e00\u4e2a\u7537\u5b69\u770b\u7740\u4ed6\u6240\u7231\u7684\u4eba\u7231\u4e0a\u4e86\u53e6\u4e00\u4e2a\u4eba\uff0c\u9ed8\u9ed8\u5730\u79bb\u5f00\u4e86\uff0c\u4f46\u770b\u7740\u8fd9\u4e00\u5e55\u4ecd\u611f\u5230\u60b2\u4f24\uff0c"} +{"id": "2007913", "video_name": "0f2119e8-6715-57bc-adae-06dcbe906b76", "text": "\u897f\u5357\u8272\u5f69\u7f8e\u4e3d\u7684\u843d\u65e5\u7167\u8000\u5728\u58ee\u4e3d\u7684\u4e9a\u5229\u6851\u90a3\u5357\u90e8\u5c71\u8109\u4e0a\uff0c\u6709\u4ed9\u4eba\u638c\u548c\u98de\u7fd4\u7684"} +{"id": "8003613", "video_name": "f0a43ae7-eddd-50a9-8b6c-0d56495f1c11", "text": "\u4ea4\u6613\u671f\u6743\u56fe\u8868\u7a81\u7834\u4ea4\u6613\u5c55\u793a\u5728\u4ea4\u6613\u89c6\u56fe\u7f51\u7ad9\u4e0a\u83b7\u5229\u3002"} +{"id": "2007002", "video_name": "27acd368-c1c8-57b3-938c-717fc967d0d8", "text": "\u9a91\u8f66\u3001\u6b65\u884c\u3001\u9a91\u9a6c\u3001\u5411\u4e0a\u79fb\u52a8\u4ed6\u7684\u624b\u81c2\uff0c\u7136\u540e\u5954\u8dd1\u3002"} +{"id": "0003079", "video_name": "369f893f-f3b4-5e34-8bae-0d0b23541a28", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u7535\u5f71\u4e2d\u7684\u52a8\u4f5c\u573a\u666f"} +{"id": "5001582", "video_name": "da6d5d29-823e-5d04-aed5-4a5dc3223dcb", "text": "\u522e\u98ce\uff0c\u591a\u4e91\u3002\u9634\u5f71\u79fb\u52a8\uff0c\u8be6\u7ec6\u3002\u5206\u8fa8\u7387\u4f18\u5316\u4e3aWhatsApp\u3002"} +{"id": "2006923", "video_name": "2a63826c-392e-589c-87b3-d09b16c60cab", "text": "\u4e1c\u65b9\u7f8e\u5b66\uff0c\u7ec6\u817b\u3001\u542b\u84c4\uff0c\u7389\u7ea2\uff0c\u7528\u4e8e\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "4003996", "video_name": "65be7cf3-f223-5d49-8218-15af75296c07", "text": "\u4e00\u573a\u9e7f\u4e0e\u9a6c\u7684\u6218\u6597\uff0c\u8fbe\u5230\u4e86\u53e4\u795e\u7684\u5c42\u6b21\u3002"} +{"id": "2007935", "video_name": "03320a2b-6f88-5415-a154-64600ff54e6f", "text": "\u53e4\u4ee3\u6f2b\u753b\u4e2d\u7684\u7f8e\u4e3d\u7537\u5b69\u624b\u6301\u5251\u5728\u98ce\u96ea\u4e2d\u884c\u8d70\u3002"} +{"id": "4003295", "video_name": "7e2e67df-4170-55fc-a618-f8ede73ed0e5", "text": "\u76f8\u673a\u653e\u5927\u62cd\u6444\u7f8e\u4e3d\u7684\u5973\u58eb\u3002"} +{"id": "8002877", "video_name": "5c669dcb-13d2-584b-a4cf-75945932b0d0", "text": "\u62c9\u59c6\u548c\u897f\u5854\u4e00\u8d77\u98de\u884c\uff0c\u62c9\u59c6\u7684\u5934\u53d1\u548c\u8863\u670d\u90fd\u5728\u98de\u821e\uff0c\u8863\u670d\u662f\u6a59\u8272\u7684\u3002\u897f\u5854\u7a7f\u7740\u6a59"} +{"id": "0006290", "video_name": "2a10c020-d41f-5cfa-a10b-8a6feebd4ee5", "text": "\u5728\u5b5f\u4e70\u7e41\u534e\u7684\u8857\u9053\u4e0a\uff0c\u4e00\u4e2a\u540d\u53eb\u62c9\u6731\uff08Raju\uff09\u7684\u5e74\u8f7b\u7537\u5b69\u901a\u8fc7\u64e6\u978b\u6765\u8c0b\u751f\u3002"} +{"id": "6002499", "video_name": "1e9f9845-cc6f-5c90-9ec4-4bdd26290288", "text": "Source sentence: \u592a\u9633\u5e06\u98de\u5411\u5b87\u5b99\u6df1\u5904\u3002"} +{"id": "1005016", "video_name": "5cce3a86-447e-5f8e-a24a-0262ad28c3f7", "text": "\u4f0a\u65af\u5766\u5e03\u5c14\u57ce\u5e02\u4e2d\u5de1\u903b\u7684\u6218\u6597\u673a\u5668\u4eba"} +{"id": "5001657", "video_name": "c97705e6-3801-519d-9a9f-7dc97eb6821b", "text": "\u4e24\u53ea\u9e1f\u505c\u5728\u6811\u4e0a\uff0c\u5f7c\u6b64\u4eb2\u6635\u3002"} +{"id": "2004083", "video_name": "058ae3c5-a86b-557e-a296-ddf809f8bacf", "text": "\u7ebf\u6846\u4e09\u89d2\u5f62\u516c\u8def\u6a21\u578b\uff0c4K\uff0c\u9ad8\u7cbe\u5ea6\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u9ad8\u6e05\uff0c\u8d85\u9ad8\u6e05\uff0c3D\u9762\u3002"} +{"id": "2005377", "video_name": "4bac40c7-3d0a-528a-ae75-bcd21f013007", "text": "\u80cc\u666f\u662f\uff08\u7a97\u6237\uff0c\u82b1\u74f6\uff09\uff0c\u5706\u5f62\u73bb\u7483\u684c\uff0c\u5c3d\u804c\u8c03\u67e5\uff1a\uff08\u4e00\u676f\u5192\u7740\u70ed\u6c14\u7684\u5496"} +{"id": "3005633", "video_name": "51c7cddd-1a69-58dc-a244-08bcc0eba857", "text": "\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u5f69\u8272UFO\u591c\u95f4\u906d\u9047\u5f55\u50cf\uff0c\u98ce\u683c\u7c7b\u4f3c\u8fbe\u91cc\u5965\u00b7\u963f\u6839\u6258\u7684\u7535\u5f71"} +{"id": "2004922", "video_name": "7cdd37b8-a95e-5fa2-aaf3-66f10d6fdcab", "text": "\u4e00\u53ea\u5e74\u8f7b\u7684\u624b\u4f1a\u53d8\u76b1\uff0c\u76ae\u80a4\u8131\u843d\u9732\u51fa\u9aa8\u5934\u3002"} +{"id": "1004168", "video_name": "4d2b1918-3640-53d4-bf21-d64d68d7f040", "text": "\u4e00\u4e2a\u6709\u79fb\u52a8RGB\u706f\u7684\u9713\u8679\u6e38\u620f\u5ba4\u3002"} +{"id": "7004185", "video_name": "94c84a19-4236-570a-9923-f10a3f6fce8b", "text": "\u5bfb\u5b9d\u8005\u559c\u6b22\u53d1\u73b0\u65b0\u4e8b\u7269\u3002"} +{"id": "0005006", "video_name": "13227ce7-b614-5ca7-9f93-f4783fcccc4d", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u5973\u5b69\u62b1\u7740\u8774\u8776\u7684\u5f62\u8c61\u3002"} +{"id": "0004560", "video_name": "0b444de6-cddf-597b-a209-b5680757bd74", "text": "\u623f\u95f4\u91cc\u6446\u6ee1\u4e86\u53e4\u8001\u3001\u8150\u70c2\u7684\u5bb6\u5177\uff0c\u8986\u76d6\u7740\u7834\u70c2\u7684\u5e8a\u5355\u3002\u4e00\u79cd\u5373\u5c06\u6765\u4e34\u7684\u5384"} +{"id": "4003875", "video_name": "411701e3-5bcf-5213-97e1-13f6cc98aad2", "text": "\u5728\u591c\u665a\uff0c\u4e00\u4e2a\u795e\u79d8\u7684\u751f\u7269\u7ad9\u5728\u4e00\u5ea7\u623f\u5b50\u65c1\u8fb9\uff0c\u8fd9\u662f90\u5e74\u4ee3\u7684VHS\u5bb6\u5ead\u5f71\u7247\u3002"} +{"id": "2006995", "video_name": "2463a003-05af-5e73-a8d4-ee9e13207331", "text": "\u5728\u6668\u5149\u4e2d\uff0c\u968f\u7740\u592a\u9633\u5347\u8d77\uff0c\u6211\u4eec\u7684\u76f8\u9047\u7f16\u7ec7\u51fa\u4e00\u4e2a\u795e\u5947\u7684\u6545\u4e8b\u3002"} +{"id": "1003658", "video_name": "435d0699-ac37-53f6-87fe-bb4d1ece3197", "text": "\u4e00\u53ea\u733f\u7334\u624b\u6301\u6b66\u5668\u5728\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u4e2d\uff0c\u573a\u666f\u903c\u771f\u3002"} +{"id": "8003608", "video_name": "e24d73ce-f31c-5168-9cf3-0b5c83df4300", "text": "\u4e00\u675f\u7f8e\u4e3d\u7684\u82b1\u6735\uff0c\u73ab\u7470\uff0c\u6ee1\u662f\u661f\u661f\uff0c\u5728\u4e00\u4e2a\u7cbe\u81f4\u7684\u82b1\u7bee\u91cc\uff0c\u98ce\u5439\u62c2\u7740\u82b1\u513f\u3002"} +{"id": "5001762", "video_name": "3ed09aa0-a44e-5707-a6da-21baea58feed", "text": "\u4e00\u5f20\u4e13\u4e1a\u7684\u5168\u8eab\u7167\u7247\uff0c\u7279\u5199\u4e00\u4e2a30\u5c81\u7684\u7537\u4eba\uff08\u53d1\u9645\u7ebf\u7a00\u758f\uff09\uff0c\u4ed6\u7ad9\u5728\u7e41\u534e\u7684\u8857\u9053\u4e2d\u5fc3\uff0c\u9762\u5411\u955c\u5934\uff0c"} +{"id": "3004012", "video_name": "43e16275-d37b-53bc-9020-dc5be016f4ea", "text": "\u4e00\u4e2a\u6a59\u8272\u7684\u9c7c\u5728\u6d77\u5e95\u548c\u5b83\u7684\u5bb6\u4eba\u4e00\u8d77\u6e38\u6cf3\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7004324", "video_name": "bdb725e5-c277-503e-91c4-a14ef4afa305", "text": "\u5361\u5854\u5c14\u822a\u7a7a\u516c\u53f8\u7684\u98de\u884c\u5c31\u50cf\u4e00\u53ea\u9e1f\u4e00\u6837\u3002"} +{"id": "3003769", "video_name": "a3a5c9c5-9210-5f46-a47e-b34f7733aef0", "text": "\u7194\u5ca9\u7f13\u6162\u5730\u6d41\u52a8\uff0c\u65ad\u94fe\u7684\u90e8\u4ef6\u4ece\u5929\u4e0a\u843d\u4e0b\u3002"} +{"id": "6004707", "video_name": "4b7ea2bc-ecf7-53e8-8e46-1782e26ab50c", "text": "\u5fc3\u810f\u89e3\u5256\u56fe\u3001\u73ab\u7470\u3001\u82b1\u5349\u3001\u54e5\u7279\u5f0f\u3001\u68d5\u8272\u6811\u679d\u3001\u5728ArtStation\u4e0a\u6d41\u884c\uff0c\u7126\u70b9\u6e05\u6670\u3001\u5de5\u4f5c"} +{"id": "7003287", "video_name": "7a4e2b0e-baf2-50ba-a68d-40ba5e097987", "text": "\u5feb\u901f\u7f29\u653e\u84b8\u6c7d\u670b\u514b\u821e\u8e48\u673a\u5668\u4eba\u5728\u5206\u5f62\u65e0\u9650\u9ad8\u6e05\u7535\u5f71\u4e2d\u3002"} +{"id": "2006556", "video_name": "05272491-5391-5c26-b984-3f64ee883306", "text": "\u7528Zahra\u7684\u540d\u5b57\u505a\u7231\u3002"} +{"id": "2004576", "video_name": "7d124b47-0d3a-5b81-b572-0f73f4700910", "text": "\u5728\u5c71\u4e0a\u89c2\u770b\u58eb\u5175\u5728\u4e0b\u9762\u6218\u6597\u3002"} +{"id": "2003275", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u730e\u4eba\u4e00\u8d77\u8d70\u3002"} +{"id": "8003236", "video_name": "61806b20-4d3a-5ea6-bdbf-0b7f821abcba", "text": "\u7535\u5f71\u573a\u666f\uff0c\u4eba\u7269\u671d\u5411\u955c\u5934\uff0c\u7537\u6027\u957f\u9ed1\u53d1\uff0c\u9ed1\u8272\u7535\u5f71\u98ce\u683c\uff0c\u52a8\u753b\u3002"} +{"id": "0003900", "video_name": "456a8c98-8473-5d3e-94c0-92db7f3715cf", "text": "\u5370\u5ea6\u6559\u795e\u7947\u5df4\u62c9\u5409\u795e\u7ad9\u5728\u63d0\u9b6f\u4f2f\u5e0c\u5bfa\u5167\u3002\u5370\u5ea6\u6559\u795e\u7947\u68b5\u5929\u70ba\u5df4\u62c9"} +{"id": "6004259", "video_name": "b7a2f48e-91bc-57c3-8315-c07f91a19fed", "text": "\u4e00\u4f4d\u6587\u6848\u64b0\u7a3f\u4eba\u6b63\u5fd9\u7740\u7528\u4ed6\u7684\u9ed1\u8272\u5e15\u514b\u7b14\u5728\u7eb8\u4e0a\u975e\u5e38\u771f\u8bda\u5730\u5199\u4e00\u5c01\u4f1f\u5927\u7684\u4fe1\u7ed9\u4ed6\u7684\u5ba2\u6237\u3002\u9ad8"} +{"id": "8001594", "video_name": "32b23478-f0b1-545e-ab1b-f113edaefe18", "text": "\u677e\u6797\u4e2d\uff0c\u5927\u96e8\uff0c\u96f7\u58f0\u548c\u72c2\u98ce\uff0c\u77f3\u9636\uff0c3D\u52a8\u753b\uff0c16:9\u3002"} +{"id": "6002557", "video_name": "2f101898-2e1b-55bf-92ad-131723fefbbb", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u6c34\u725b\u770b\u8d77\u6765\u5f88\u5f00\u5fc3\uff0c\u5fae\u7b11\u7740\u548c\u72ee\u5b50\u4ea4\u8c08\uff0c\u72ee\u5b50\u4e5f\u53d8\u5f97\u5f00\u5fc3\u3002"} +{"id": "3006598", "video_name": "a2362cdc-2aa1-5223-bffa-48bb2db934a1", "text": "\u5728\u9152\u5427\u91cc\u73a9\u97f3\u4e50\u7684\u732b\u4eec\u3002"} +{"id": "3003299", "video_name": "72b9ede1-1f61-5293-8516-ed8f188143af", "text": "\u5976\u725b\u5728\u96ea\u5c71\u4e0a\u6ed1\u96ea\u677f\u3002"} +{"id": "2005362", "video_name": "12d334b2-7ce7-534c-8151-fccdb9a377be", "text": "\u7eff\u8272\u7684\u9e1f\u513f\u4ece\u767d\u8272\u7684\u98ce\u7b5d\u65c1\u98de\u8fc7\u3002"} +{"id": "2007810", "video_name": "cd38d871-144e-5f1f-a543-19730d973752", "text": "\u4e00\u4e2a\u8001\u4eba\u6cbf\u7740\u697c\u68af\u8d70\u4e0a\u53bb\uff0c\u7ecf\u8fc7\u51e0\u680b\u6f02\u4eae\u7684\u623f\u5b50\uff0c\u8d70\u5230\u4e00\u68f5\u6811\u65c1\u8fb9\u6709\u4e00\u5f20\u957f"} +{"id": "7002841", "video_name": "0b9f5c9b-ae5f-5a3c-b6e8-81a9c2303830", "text": "\u4e00\u6761\u84dd\u8272\u7684\u9c7c\u5728\u6d77\u6d0b\u4e2d\u8df3\u8dc3\u3002"} +{"id": "0003789", "video_name": "436f80f2-b7d2-5ea1-93ee-d1b35d270da6", "text": "\u7236\u4eb2\u51c6\u5907\u4e86\u4e00\u4e2a\u5927\u91ce\u9910\u7bee\u5b50\uff0c\u6bcd\u4eb2\u4e3a\u5b69\u5b50\u4eec\u505a\u4e09\u660e\u6cbb\u3002\u5b69\u5b50\u4eec\u9ad8\u5174\u5730\u51c6\u5907\u7740\u5916\u51fa\u6e38"} +{"id": "1003558", "video_name": "41930b89-00dc-5e48-9b80-a29debadb9ef", "text": "\u516c\u4e3b\u5e26\u7740\u60b2\u4f24\u7684\u5fae\u7b11\u8bf4\u8bdd\u5e76\u56db\u5904\u5f20\u671b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004472", "video_name": "52cf92a4-8da7-55a7-9048-66489ca7b17f", "text": "\u540d\u4eba\u7528\u624b\u5403\u610f\u5927\u5229\u9762\u3002"} +{"id": "4002485", "video_name": "f7f77de6-014f-50cf-8814-b68302a8a2cd", "text": "\u82f1\u56fd\u6d3e\u5bf9\u7684\u5ba3\u4f20\u9884\u544a\u7247\uff0c\u5361\u901a\u98ce\u683c"} +{"id": "2004862", "video_name": "e9c5152b-bf11-511e-b41d-4c8b575e59b6", "text": "\u4e00\u53ea\u7a7f\u7740\u7cbe\u81f4\u793c\u670d\uff0c\u9ad8\u8d35\u5730\u6293\u7740\u4e00\u4e32\u9879\u94fe\u7684\u732b\u6a21\u4eff\u65f6\u88c5\u79c0\u8d70\u8def\uff0c\u5c55\u793a\u4e86\u72ec\u7279\u7684"} +{"id": "3003924", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u5728\u5c71\u9876\u4e0a\uff0c\u4e00\u53ea\u9ed1\u732b\u6b63\u5728\u5403\u7740\u4e00\u6735\u84dd\u8272\u7684\u73ab\u7470\u3002"} +{"id": "1005703", "video_name": "68d97cef-d9b2-5fa5-a82b-1a71580f989f", "text": "\u4e09\u4f4d\u5929\u795e\u60ca\u53f9\u5730\u89c2\u770b\u7740\u4ed6\u4eec\u7684\u521b\u9020\u7269\u2014\u2014\u5730\u7403\u2014\u2014\u9010\u6e10\u6d3b\u4e86\u8fc7\u6765\u3002\u8fd9\u662f\u4e00\u4e2a\u5145\u6ee1\u5947\u8ff9\u3001\u7f8e\u4e3d"} +{"id": "2005561", "video_name": "2a2c55ab-e2c3-5e77-82e9-f3dd9ae86174", "text": "\u6444\u50cf\u673a\u56de\u5230\u5927\u5c55\u5385\uff0c\u827a\u672f\u7231\u597d\u8005\u7ee7\u7eed\u60ca\u53f9\u5730\u6f2b\u6b65\u3002"} +{"id": "0004403", "video_name": "0850becf-7ba8-5eb9-97c0-effe6b68964d", "text": "\u4e00\u9897\u9668\u77f3\u7a7f\u8fc7\u4e91\u5c42\u5e76\u7206\u70b8\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "6003732", "video_name": "92e0bd05-3cf3-5ed5-8e82-095dcd8d2cf9", "text": "\u7535\u5f71\u822c\u7684\u7f29\u653e\u8fdb\u5165\u7f8e\u4e3d\u7684\u5feb\u901f\u65cb\u8f6c\u7684\u592a\u7a7a\u7b49\u79bb\u5b50\u4f53\u6df1\u573a\u591a\u5f69\u661f\u4e91\u78b0\u649e\u5feb\u901f\u7f29\u653e\u3002"} +{"id": "1003791", "video_name": "45f7ff07-3b2c-51b6-bfcf-4fea59c681d1", "text": "\u4e00\u4e2a\u730e\u4eba\u548c\u4e00\u4e2a\u5973\u5b69\u6b63\u9a7e\u8f66\u7a7f\u8d8a\u6c99\u6f20\u3002"} +{"id": "8001592", "video_name": "c0930ca4-5512-53ec-bd91-b0fd527c3c3b", "text": "\u5728\u68ee\u6797\u91cc\u7684\u8611\u83c7\u4ed9\u5973\u5708\u5185\uff0c\u6d3e\u5bf9\u706f\u5149\u548c\u8df3\u821e\u7684\u7f8e\u666f\u4e0b\uff0c\u7cbe\u7075\u4eec\u72c2\u6b22\u7684\u53f2"} +{"id": "1003674", "video_name": "43a35305-46ce-5d7e-b9f2-2f9b16690b48", "text": "\u4e54\u00b7\u62dc\u767b\uff0c\u7ea2\u8272\u6fc0\u5149\u773c\u775b\uff0c\u5145\u6ee1\u529b\u91cf\u6d8c\u52a8\u3002"} +{"id": "8002649", "video_name": "174f57ef-381f-5053-a10c-a8424428a2c6", "text": "\u4e00\u9897\u7c89\u8272\u73cd\u73e0\u843d\u5728\u6ee1\u6708\u4e0a\uff0c\u7136\u540e\u6d88\u5931\u4e86\u3002"} +{"id": "7003015", "video_name": "2dba4eb6-c26c-59d6-972f-7d4cba761dd8", "text": "\u4e00\u4f4d\u7a7f\u7740\u5916\u5957\u897f\u88c5\u624b\u6301\u9c9c\u82b1\u7684\u65f6\u5c1a\u7537\u5b50\u6b63\u5728\u4e0e\u4e00\u4f4d\u7a7f\u7740\u5370\u5ea6\u6c99\u4e3d\u670d\u9970\u914d\u9970\u73e0"} +{"id": "0006548", "video_name": "2e7a9ef0-fd51-53c3-b432-8b18ea7e3b07", "text": "\u4e00\u5e45\u661f\u7a7a\u5929\u6587\u7684\u8096\u50cf\u5f0f\u52a8\u753b\u3002"} +{"id": "4003265", "video_name": "a5b75e23-50dd-5330-bf93-3022924ea9b7", "text": "\u4e00\u4e2a\u540d\u53ebDexter\u7684\u5c0f\u72d7\u3002\u5b83\u6709\u7740\u660e\u4eae\u7684\u773c\u775b\u548c\u67d4\u8f6f\u7684\u68d5\u8272\u6bdb\u76ae\u3002"} +{"id": "6004378", "video_name": "d7fda019-c789-585c-af91-f02aeac9ec32", "text": "\u955c\u5934\u805a\u7126\u5728\u83b1\u5361\u8eab\u4e0a\uff0c\u5979\u5b64\u72ec\u5730\u5728\u8857\u4e0a\u6f2b\u6b65\uff0c\u55c5\u7740\u7a7a\u6c14\uff0c\u8bd5\u56fe\u95fb\u5230\u98df\u7269\u7684"} +{"id": "8002721", "video_name": "d08bb5aa-5d21-500d-9855-555f3e8e17e2", "text": "\u68d2\u4eba\u7bee\u7403\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "3006068", "video_name": "369f94ad-f782-5d38-9be3-c597c6d4a64c", "text": "\u70ae\u5f39\u51fb\u4e2d\u6d77\u76d7\u8239\uff0c\u8239\u6c89\u4e86\uff0c\u753b\u8d284K\u3002"} +{"id": "6003383", "video_name": "0a499acf-26eb-5cc9-9f9c-281d5f012331", "text": "\u4e00\u4e2a\u597d\u83b1\u575e\u6050\u6016\u7535\u5f71\u9884\u544a\u7247\uff0c\u80cc\u666f\u8bbe\u5b9a\u5728\u5df4\u897f\u4e1c\u5317\u90e8\u7684\u8352\u91ce\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4f4d\u6e38\u5ba2\u5728\u8352\u91ce\u4e2d"} +{"id": "2006639", "video_name": "a579f2e2-d125-5ae7-af03-5409385ee0dc", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u53a8\u623f\u73af\u5883\uff0c\u81ea\u7136\u5149\u7ebf\u7167\u5c04\u8fdb\u6765\u3002\u4e00\u4e2a\u5973\u4eba\u5728\u624b\u638c\u4e2d\u7ffb\u8f6c\u9ec4\u82aa\u3002"} +{"id": "2006994", "video_name": "d296e4ac-df3e-5e31-ac78-576b1b6f9677", "text": "3D \u52a8\u753b\uff0c\u52a8\u4f5c 2\uff0c16:9\n\u4e00\u53ea\u72ee\u5b50\u653b\u51fb\u4e00\u53ea\u957f\u9888\u9e7f\u7684\u80cc\u90e8"} +{"id": "8002481", "video_name": "2a8c7ec3-2a6f-57fa-8502-4291deee656f", "text": "\u5728\u8305\u8349\u5c4b\u9876\u4e0b\u7684\u52a8\u6f2b\u89d2\u8272\u626e\u6f14\u6d77\u6ee9\u6d3e\u5bf9\u3002\u63d0\u57fa\u9152\u5427\u3002\u9c9c\u8273\u7684\u989c\u8272\u3002"} +{"id": "0003426", "video_name": "3d5c10dd-de23-5188-869d-a3d9a460aaa0", "text": "\u5728\u7d2b\u8272\u68ee\u6797\u91cc\u957f\u6ee1\u4e86\u82d4\u85d3\u8986\u76d6\u7684\u8611\u83c7\uff0c\u95ea\u8000\u7740\u661f\u661f\u548c\u661f\u7cfb\u3002"} +{"id": "2007857", "video_name": "fb9a3503-fa18-55c2-a894-f708fc06bec9", "text": "\u4e00\u4f4d\u8eab\u6750\u82d7\u6761\uff0c\u957f\u817f\u4fee\u957f\u7684\u5973\u6027\u6b63\u5728\u884c\u8d70\u3002\u5979\u7a7f\u7740\u4e00\u6761\u8ff7\u4f60\u88d9\uff0c\u540e\u89c6\u89d2\uff0c\u642d\u914d\u9ed1\u8272\u9ad8\u8ddf"} +{"id": "8002171", "video_name": "3606fa36-b28a-520a-b725-d52cc04a1bfd", "text": "\u5973\u4eba\u5728\u53a8\u623f\u80cc\u666f\u4e0b\u51b2\u5496\u5561\u3002"} +{"id": "2007627", "video_name": "d079e509-ee56-55bd-a69d-5ff8651e720b", "text": "\u6253\u9020\u4e00\u4e2a\u52a8\u6001\u7684\u89c6\u89c9\u76db\u5bb4\uff1a\u60f3\u8c61\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u7ea2\u8272\u80cc\u666f\u4f5c\u4e3a\u5b87\u5b99\u821e\u53f0\u3002\u8bbe\u60f3\u4e00\u4e2a\u6c38\u4e0d\u505c"} +{"id": "3005933", "video_name": "bc2cfb79-c109-5abf-8006-7b325864eff6", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u5728\u4e1c\u4eac\u7684\u4e00\u5bb6\u65e5\u672c\u6e05\u9152\u9152\u5427\u91cc\u3002"} +{"id": "1004041", "video_name": "4af4f6cd-14c7-5466-a9b4-39b0f3508ec8", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u8239\u53ea\u6f02\u6d41\u5728\u6cb3\u4e0a\u3002"} +{"id": "0004350", "video_name": "078c7868-8f02-5e83-94c8-6efcd3f631fd", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u72d7\u88ad\u51fb\u57ce\u5e02\uff0c\u73b0\u5b9e\u4e3b\u4e49\u7684\u58eb\u5175\u5219\u4fdd\u536b\u57ce\u5e024K\u3002"} +{"id": "4003793", "video_name": "ab2f34eb-dced-5500-b236-ce9c43d7fc58", "text": "\u4e24\u53ea\u5c0f\u732b\u54aa\uff0c\u5b83\u4eec\u53cb\u597d\u5730\u4e92\u76f8\u63a5\u89e6\u3002"} +{"id": "2006853", "video_name": "8a139d3c-b938-535c-99b4-0eb429b0bca8", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u73b0\u4e86\u4e00\u4e2a\u62e5\u6709\u91d1\u8272\u76ae\u80a4\u548c\u9ed1\u8272\u5934\u53d1\u7684\u5973\u5b50\u6df1\u6df1\u5730\u7761\u5728\u4e91\u6735\u5e8a\u4e0a\uff0c\u80f8\u90e8\u660e\u663e\u968f\u7740"} +{"id": "2007183", "video_name": "5c1b972b-862c-5868-bc57-199a7d120ef4", "text": "\u52a8\u753b\u89d2\u8272\u7a7f\u8d8a\u4e1b\u6797\uff0c\u89e3\u51b3\u8c1c\u9898\uff0c\u9762\u5bf9\u98ce\u66b4\u3002"} +{"id": "2007400", "video_name": "3676db8d-5ea9-5946-819b-8b7acc91f5d4", "text": "\u5409\u535c\u529b\u4e16\u754c\u7f8e\u4e3d\u7684\u5c0f\u5c4b\uff0c\u6d41\u6c34\u6f7a\u6f7a\uff0c\u9e1f\u513f\u56f4\u7ed5\u3002"} +{"id": "0004307", "video_name": "06d2e8f8-9987-5fa9-914b-7608a24686b8", "text": "\u7ea6\u7ff0\u548c\u7c73\u8212\u5728\u6df1\u6797\u4e2d\u9a91\u81ea\u884c\u8f66\u65c5\u884c\u76843D\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "8002472", "video_name": "e2fde849-8c4d-5f1b-b0e7-a99d97213c71", "text": "\u683c\u7f57\u6208\u6d1b\u65af\u4f5b\u3001\u6469\u6d1b\u514b\u96d5\u50cf\u30011920\u5e74\u4ee3\u5f71\u50cf\u3001\u8be1\u5f02\u7684\u6c1b\u56f4\u3002"} +{"id": "5001339", "video_name": "c044c61a-3845-5e43-9b05-9fc864de321e", "text": "\u949e\u7968\u6811\u4e0b\u91d1\u5e01\u96e8\uff0c4K\uff0c\u771f\u5b9e\u7167\u7247\u6548\u679c\u3002"} +{"id": "2006758", "video_name": "856eb496-d911-5177-bdf3-e0c2dc54c160", "text": "\u8b66\u65b9\u5728Chuck E Cheese\u513f\u7ae5\u9910\u5385\u5916\u7684\u72af\u7f6a\u73b0\u573a\u3002\u5efa\u7b51\u7269\u524d\u7684\u8be6\u7ec6\u7167\u7247\u3002"} +{"id": "4004106", "video_name": "93a87312-e62d-5629-9b11-c95e72538415", "text": "\u62bd\u8c61\u7684\u68ee\u6797\u7f8e\u4e3d\uff0c8k\uff0c3D\u6e32\u67d3\uff0c\u5c61\u83b7\u6b8a\u8363\uff0c\u4f7f\u7528Blender\u5236\u4f5c\u3002"} +{"id": "6004267", "video_name": "df3ce3b8-9dab-59b0-98aa-be4cb892eaac", "text": "\u5168\u9547\u7684\u5b69\u5b50\u4eec\u90fd\u68a6\u60f3\u7740\u4e0b\u4e00\u6b21\u7684\u5192\u9669\uff0c\u7b49\u5f85\u9b54\u6cd5\u6e38\u4e50\u573a\u91cd\u65b0\u51fa\u73b0\u7684\u90a3\u4e00\u5929\uff0c\u63d0\u9192\u4ed6\u4eec"} +{"id": "2007593", "video_name": "89af21e1-8e1f-5794-a268-4be6a9db9486", "text": "\u8424\u706b\u866b\u88ab\u6df1\u84dd\u8272\u7684\u591c\u7a7a\u5305\u56f4\u7740\uff0c\u8fdc\u5904\u53ef\u4ee5\u770b\u5230\u51e0\u9897\u661f\u661f\u3002"} +{"id": "0005986", "video_name": "248db85d-4ec4-5e44-abbd-c82d5df239df", "text": "\u4e00\u4e2a\u5723\u8bde\u8282\u7684\u4e2d\u56fd\u9f99\uff0c\u6298\u7eb8\u827a\u672f\u3002"} +{"id": "0005832", "video_name": "21e23eee-0c1e-5a69-b197-f1331ccd3d20", "text": "\u81ea\u7531\u804c\u4e1a\u8005\u4f7f\u7528\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f\u83b7\u53d6\u6f5c\u5728\u5ba2\u6237\u6216\u5de5\u4f5c\u3002"} +{"id": "3005867", "video_name": "d43cca88-1361-54ae-ae9d-075e440bb803", "text": "\u5361\u666e\u5170\u5361\u4e9a\u6d77\u6ee8\u6563\u6b65\u91d1\u8272\u65f6\u523b\u7684\u77f3\u94fa\u8def\uff0c\u5ea7\u4f4d\u7684\u9b45\u529b\u6a44\u6984\u6811\uff0c\u8d85\u9ad8\u6e05\u7684"} +{"id": "1004554", "video_name": "548af631-36bc-5d84-9c73-b87a4e16ba2f", "text": "\u5c55\u793a\u54c8\u53e4\u5411\u5343\u5c0b\u5c55\u9732\u5176\u771f\u5b9e\u9f99\u5f62\u6001\u7684\u77ed\u6682\u65f6\u523b\u3002"} +{"id": "5001797", "video_name": "59f07c49-c173-5c68-abba-959ecd1383ce", "text": "\u6fc0\u52b1\u6f14\u8bb2\uff1a\u4e00\u4f4d\u5973\u6559\u5e08\u5728\u8bfe\u5802\u4e0a\u5411\u5916\u661f\u4eba\u8bb2\u6388\u77e5\u8bc6\u3002"} +{"id": "3005535", "video_name": "8664bcfa-2083-5379-979f-8964522665bf", "text": "\u5bb6\u5ead\u4fe1\u606f\uff1aBerjan (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "5001438", "video_name": "23ae290a-2a21-56cb-aa7d-2c0410863a0c", "text": "\u5750\u7262\u7684\u5370\u5ea6\u56fd\u738b\u4ec6\u4eba\u8bf4\u4e86\u4e9b\u4ec0\u4e48\u3002"} +{"id": "1003906", "video_name": "48112629-d7ab-5811-8141-5f4846e9402d", "text": "\u4e00\u4f4d\u957f\u53d1\u3001\u77ed\u88d9\u3001\u957f\u817f\u7684\u97e9\u56fd\u821e\u5973\u3002"} +{"id": "6002052", "video_name": "3e342984-e3e7-5c47-add1-07ef07a4ce89", "text": "\u52a0\u83f2\u732b\u770b\u7740\u5c4f\u5e55\u8bf4\u8bdd\uff0c\u4ee5\u52a0\u83f2\u5c14\u5fb7\u98ce\u683c\u5448\u73b0\u76843D\u3001\u8d85\u9ad8\u6e05\u30018K\u3001\u8d85\u9510\u5229\u3001\u5e7f\u89d2\u3001\u52a8\u753b"} +{"id": "6002408", "video_name": "e5fb8f21-f4ab-5bbf-957f-687a04b454d8", "text": "\u5b66\u751f\u7a7f\u7740\u6821\u670d\u5750\u5728\u6559\u5ba4\u91cc\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u624b\u673a\u65c1\u8fb9\u63a5\u5230\u901a\u77e5\u3002"} +{"id": "3006380", "video_name": "dbaca836-b541-5717-8c8c-ba77cc2cec8b", "text": "\u56fe\u50cf\uff1a\u4e00\u4f4d\u5973\u6027\u5728\u4e61\u6751\u98ce\u5149\u80cc\u666f\u4e0b\u89c2\u770b\u5979\u7684\u7231\u4eba\uff0c\u6d6a\u6f2b\uff0c\u80a9\u90e8\u7279\u5199\u3002"} +{"id": "5001249", "video_name": "cf2cada9-f8db-5827-a633-459d4e4f9fd4", "text": "\u4e0d\u8f9e\u8f9b\u52b3\u5730\u52aa\u529b\u62ef\u6551\u4ed6\u4eec\u7684\u7272\u755c\u548c\u4fdd\u62a4\u5269\u4e0b\u7684\u5e84\u7a3c\u3002"} +{"id": "1006898", "video_name": "7e1ada98-6f90-502c-937b-239f2cb2a79d", "text": "\u4e00\u4e2a\u79cb\u5b63\u7684\u68ee\u6797\u3002\u591a\u4e91\u7684\u5929\u3002\u79cb\u53f6\u3002\u5b81\u9759\u3002\u9634\u90c1\u3002"} +{"id": "3005387", "video_name": "19f65ebe-86c3-5081-9a68-bb5f0683ee7e", "text": "\u5c0f\u5c0f\u7684\u94ec\u7532\u866b\u548c\u8682\u8681\u4e92\u76f8\u6355\u98df\uff0c\u5c55\u5f00\u4e86\u6606\u866b\u4e4b\u95f4\u7684\u6218\u4e89\u3002"} +{"id": "1003577", "video_name": "41edba39-147e-57ba-8870-d6fa69e168cc", "text": "\u7f8e\u4e3d\u7684\u672a\u6765\u4e3b\u4e49\u98ce\u666f\u548c\u4e0d\u540c\u989c\u8272\u7684\u7f8e\u4e3d\u5929\u7a7a\u3002"} +{"id": "1006944", "video_name": "7f140edb-4871-525e-9ae5-2db0247b1110", "text": "\u5979\u662f\u9ed1\u591c\u4e2d\u552f\u4e00\u7684\u5149\u4eae\uff0c\u5979\u7684\u58f0\u97f3\u662f\u5e0c\u671b\u7684\u706f\u5854\u3002"} +{"id": "1006988", "video_name": "7fdac6c0-cca8-5038-b180-cac2a4a69590", "text": "\u521b\u4f5c\u4e00\u90e8\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u5b69\u5b50\u5728\u81ea\u8c6a\u7684\u65f6\u523b\u89c2\u770b\u4ed6\u7684\u57ce\u5e02\u3002"} +{"id": "2007418", "video_name": "4be04383-5c86-54f5-99e3-8f7d51345431", "text": "\u9ad8\u4e2d\u5973\u5b50\u6454\u8de4\u8fd0\u52a8\u5458\u5728\u6bd4\u8d5b\u4e2d\u3002"} +{"id": "3004377", "video_name": "f78abc7f-24cd-5fad-827f-05bdb0c29901", "text": "\u7535\u5f71\uff1a\u5728\u4e9a\u6d32\u57ce\u9547\u4e2d\u53e4\u4ee3\u5fcd\u8005\u6f2b\u6b65\u3002"} +{"id": "7004966", "video_name": "efd60977-d66e-5d56-8a34-8ce244ec20ae", "text": "\u4e00\u53ea\u7531\u5927\u9ebb\u690d\u7269\u5236\u6210\u7684\u732b\u54aa\u6b63\u5728\u7a97\u8fb9\u7684\u6795\u5934\u4e0a\u6253\u76f9\uff0c\u53d1\u51fa\u547c\u565c\u58f0\u3002"} +{"id": "8002782", "video_name": "6213fde2-9e58-5d17-ad94-c468f98f8f88", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u4ed6\u7684\u536b\u661f\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "4002594", "video_name": "161dcc09-649c-5bb0-bde3-adda3a366816", "text": "\u4e00\u53ea\u51b0\u6fc0\u51cc\u7a0d\u5fae\u53d8\u6210\u4e86\u4e00\u53ea\u6d77\u9f9f\uff0c\u52a8\u753b\u3002"} +{"id": "1006933", "video_name": "7ece9ff5-2434-5834-95a5-1a4b0245f06c", "text": "\u5c55\u793a\u4e00\u4e2a\u5e26\u7f8e\u4e3d\u540e\u9662\u666f\u8272\u7684\u653e\u677e\u5ba4\u5185\u3002\u73b0\u4ee3\u7a97\u6237\u88c5\u9970\u6709\u5f53\u4ee3\u767e\u53f6\u7a97\uff0c\u5141\u8bb8\u60a8\u8c03\u8282\u623f\u95f4\u5185"} +{"id": "8003947", "video_name": "c4dd9564-c571-5468-922d-07a0499b0ffa", "text": "\u4e00\u53ea\u72d7\u5728\u4ea4\u901a\u4e2d\u9a7e\u9a76\u7279\u65af\u62c9\u3002"} +{"id": "8002619", "video_name": "bae2dc01-db31-54b7-8615-48f2fe4bd397", "text": "\u6708\u4eae\u7f8a\u9a7c\u7684\u795e\u5947\u5192\u9669"} +{"id": "1005179", "video_name": "5f4cdec3-f918-5734-b451-f1246fc94a5d", "text": "\u767d\u8272\u773c\u955c\u533b\u751f\u7a7f\u84dd\u8272\u5236\u670d\u51fa\u5e2d\u4e86\u81ea\u7136\u5206\u5a29\u3002"} +{"id": "3003774", "video_name": "f92cc59a-b9ca-53f9-a9f4-6f522ed90bbd", "text": "\u4e00\u4e2a\u592a\u7a7a\u4eba\u62b5\u8fbe\u6708\u7403\u3002"} +{"id": "6003029", "video_name": "20455900-d949-5cd3-83f6-09b9d804d13b", "text": "\u6211\u60f3\u5728\u5370\u5ea6\u89c1\u5230\u6e7f\u5a46\u795e\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6002564", "video_name": "b595af93-685f-5c24-8450-39058216c23e", "text": "\u5361\u901a\u72fc\u7684\u773c\u775b\uff0c\u572870\u5e74\u4ee3\u7684\u98ce\u683c\u4e0b\uff0c\u6ce8\u89c6\u7740\u6f02\u4eae\u7684\u5927\u5973\u4eba\u8d70\u8fc7\u3002"} +{"id": "0005064", "video_name": "140b5014-bb69-51c4-b9af-7db484dff5c0", "text": "YouTube\u9891\u9053\u7684\u89c6\u9891\u8bbe\u8ba1"} +{"id": "2003733", "video_name": "7e8d96ac-aa35-534b-a306-2f12f48f2633", "text": "\u5c0f\u97f3\u97f3\u5750\u5728\u8349\u5730\u4e0a\uff0c\u653e\u98de\u4e86\u4e00\u67b6\u80fd\u9ad8\u9ad8\u98de\u8d77\u7684\u7eb8\u98de\u673a\u3002"} +{"id": "2003876", "video_name": "ed05a75d-2aa7-5649-a2c2-59fe92131bdf", "text": "\u4e00\u4f4d\u5973\u5b50\u8d70\u8fc7\u95e8\u53e3\u3002"} +{"id": "2003827", "video_name": "b2838652-d032-5424-822b-1d72fdcda019", "text": "\u8df3\u5230\u5730\u4e0a\uff0c\u5f53\u6da1\u8f6e\u51cf\u901f\u8d8a\u8fc7\u8fb9\u5883\u65f6\uff0c\u50cf\u98ce\u4e00\u6837\u5954\u8dd1\uff0c\u5174\u594b\u5728\u6211\u7684\u810a\u690e\u4e0a\u98a4\u6296"} +{"id": "8003786", "video_name": "689cb5ee-4a16-5227-bddd-7379fe2c039e", "text": "\u6700\u4f73\u54c1\u8d28\uff0c\u6770\u4f5c\uff0c\u80cc\u666f\uff1a\u684c\u5b50\u4e0a\uff0c\u6251\u514b\u724c\u53d8\u6210\u4e86\u4eba\u7269\u5f62\u8c61\uff0c8K UHD\uff0cDSLR\uff0c\u67d4\u548c\u7684\u706f\u5149"} +{"id": "4003522", "video_name": "45acf1a8-df1d-5e9f-aeb9-3d59e279569b", "text": "\u4f01\u9e45\u7279\u5de5\u961f\u5236\u9020C4\uff0c3D\u903c\u771f\u3002"} +{"id": "4003350", "video_name": "ea6d7654-3d69-5333-85d5-ed3d02a9835d", "text": "\u673a\u5668\u732b\u62ff\u7740\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "4002087", "video_name": "b20d2da7-3695-5792-afee-cfa94e5a208e", "text": "\u4e00\u53ea\u9e7f\u5728\u6811\u6797\u4e2d\u5954\u8dd1\u7684\u52a8\u753b"} +{"id": "2005901", "video_name": "330e02bc-5172-5ff2-b268-91cbd1031722", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u76ae\u5939\u514b\u7684\u5973\u4eba\u6b63\u9a7e\u9a76\u7740\u4e00\u8f86\u6469\u6258\u8f66\uff0c\u624b\u4e2d\u62ff\u7740\u4e00\u652f\u67aa\u3002\u5728\u5979\u540e\u9762\u662f"} +{"id": "3003975", "video_name": "72e9bea2-def6-59eb-9ee6-655af93c11da", "text": "\u4eba\u4eec\u95ee\u4e00\u4e2a\u7537\u4eba\u4ece\u54ea\u91cc\u4e70\u4e86\u73a9\u5177\u3002"} +{"id": "0005922", "video_name": "234db46f-a588-54e3-8828-fd5a882aab3d", "text": "\u65b0\u7684\u5e03\u9c81\u5854\u5229\u65af\u7279\u661f\u7403\u6f02\u6d6e\u5728\u661f\u7a7a\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "1005591", "video_name": "66daba80-1714-5caf-ad98-7a52b788ab57", "text": "\u5317\u65b9\u6709\u4e00\u4e9b\u795e\u5947\u7684\u666f\u89c2\u3002"} +{"id": "8001880", "video_name": "26ce1913-1446-5760-bf15-8ccc7e258cdd", "text": "\u4e00\u540d\u7537\u5b50\u5728\u84dd\u8272\u80cc\u666f\u4e0b\u5403\u8089\u3002"} +{"id": "4002768", "video_name": "b6b3aa30-dc3a-5a20-aa03-5f5d88390e65", "text": "\u6211\u60f3\u8981\u5934\u53d1\u50cf\u7a7a\u6c14\u4e00\u6837\u98d8\u52a8\uff0c\u540c\u65f6\u5e0c\u671b\u8721\u70db\u548c\u82b1\u6735\u50cf\u98ce\u5439\u8fc7\u623f\u95f4\u4e00\u6837\u79fb\u52a8\u3002"} +{"id": "7002675", "video_name": "a22bd8b4-d361-5ee9-b4e6-f530ff99c4e8", "text": "\u4ee5\u6f2b\u753b\u98ce\u683c\u5448\u73b0\u52a8\u753b\uff0c\u6bd5\u52a0\u7d22\u7684\u7ed8\u753b\u4f5c\u54c1"} +{"id": "2004904", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u5b87\u5b99\u4e16\u754c\u65cb\u8f6c\u8df3\u821e\u3002"} +{"id": "0004611", "video_name": "0be64c9a-fcfb-5ec7-b2a6-38a7527c899c", "text": "\u4e00\u4e2a\u5e26\u7740\u5979\u7684\u72d7\u5728\u9ed1\u6697\u7a7a\u95f4\u4e2d\u8d70\u8def\u7684\u5973\u5b66\u751f\uff0c\u540c\u65f6\u611f\u5230\u8ff7\u5931\u5728\u5b87\u5b99\u4e2d\uff0c\u5177\u6709\u7f13\u6162\u800c\u4f4e\u4fdd"} +{"id": "2007072", "video_name": "f30643d5-365b-58f9-8a5f-d3b95b3d7117", "text": "\u5728\u4e00\u4e2a\u53e4\u96c5\u7684\u6751\u5e84\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u5c71\u59c6\u7684\u5c0f\u7537\u5b69\u3002"} +{"id": "2003230", "video_name": "a5db6108-be02-510c-a20b-03b99018beb0", "text": "\u6fc0\u52b1\u4eba\u5fc3\u7684\u6f14\u8bb2\u5bb6\u5411\u5927\u4f17\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "7004563", "video_name": "099ba0de-4161-52e7-a39a-e0d4f1453fdd", "text": "\u521b\u9020\u4e00\u4e2a\u6ee1\u6708\u548c\u661f\u661f\u7684\u591c\u666f\u573a\u666f\u3002"} +{"id": "2006796", "video_name": "e0a68589-883f-5f1f-83a3-ebb55fb65eba", "text": "\u7167\u7247\u903c\u771f\u7684\u6cf0\u52d2\u00b7\u8fbe\u767b\u5438\u98df\u9999\u70df\u3002"} +{"id": "3006459", "video_name": "e1e5c51c-6473-5a13-a383-11542a0a7784", "text": "\u91cd\u65b0\u5f00\u59cb\u6216\u6446\u8131\u4e0d\u5065\u5eb7\u7684\u4e60\u60ef\u6216\u6267\u5ff5\uff0c\u5c31\u50cf\u64e6\u53bb\u6ce5\u6cde\uff0c\u62e5\u62b1\u6e05\u6d01\u3001\u65e0\u8d1f\u62c5\u7684\u5b58\u5728"} +{"id": "6003611", "video_name": "aab9fc01-a2fb-5862-8229-16933628b439", "text": "\u665a\u4e0a\u5728\u68ee\u6797\u52a8\u7269\u6d3e\u5bf9\u4e0a\uff0c\u6709\u4e1c\u897f\u6389\u5728\u4e86\u72ee\u5b50\u5934\u4e0a\u3002\n\nSource sentence: The sun is shining and the birds are singing. \n\u592a\u9633\u6b63\u5728\u7167"} +{"id": "0005578", "video_name": "1d5dacb0-b0af-57f9-ad2e-e1f89fdc9ff2", "text": "\u6885\u897f\u5728\u6b27\u51a0\u51b3\u8d5b\u4e2d\u5bf9\u9635\u5c24\u6587\u56fe\u65af\u6253\u8fdb\u4e86\u8fdb\u7403\u3002"} +{"id": "7003377", "video_name": "6c71a52e-bc75-5fe3-b393-2b742c69911e", "text": "\u54c8\u5229\u6ce2\u7279\u6709\u8457\u808c\u8089\u767c\u9054\u7684\u8eab\u9ad4\uff0c\u7a7f\u8457\u80cc\u5fc3\u8209\u8457\u8209\u91cd\u6746\u3002"} +{"id": "2003117", "video_name": "edbab424-53fa-5d95-b661-42ece9bed617", "text": "\u5728\u52a0\u6cb9\u7ad9\u7684\u6d74\u5ba4\uff0c\u6c34\u7ba1\u5de5\u6b63\u5728\u7ef4\u4fee\u5395\u6240\u3002"} +{"id": "8001549", "video_name": "0e3c0d79-ed7e-5d44-a9b7-3d98ffdc7166", "text": "\u521b\u4f5c\u89c6\u9891\uff1a\u591c\u665a\uff0c\u83ab\u65af\u79d1\u57ce\u5e02\uff0cFavor flux\u4e0a\u7684\u4f1f\u5927\u8ba1\u5212\u6807\u7b7e"} +{"id": "3005119", "video_name": "f000637b-3313-5315-a8de-85118302a471", "text": "\u4e00\u4e2a\u7a7f\u7740\u5e26\u515c\u5e3d\u7684\u5939\u514b\u548c\u80cc\u5305\u7684\u7537\u5b50\u624b\u6301\u4e00\u652f\u7a81\u51fb\u6b65\u67aa\u7ad9\u7acb\u7740\u3002\u5728\u4ed6\u8eab\u540e\uff0c\u5e9f\u589f\u548c"} +{"id": "0003968", "video_name": "00de6cc7-1f56-59de-afa2-5512bc54b54f", "text": "Translation: \u53ea\u6709\u5f53\u4eba\u4eec\u6446\u8131\u5b64\u72ec\uff0c\u624d\u80fd\u91cd\u62fe\u70ed\u95f9\u7e41\u534e\u3002"} +{"id": "2003839", "video_name": "0df90836-a6de-5ef4-a9d8-0cb935838081", "text": "\u521b\u9020\u4e00\u4e2a\u4ece\u4e2d\u5fc3\u8f90\u5c04\u51fa\u7684\u8d85\u73b0\u5b9e\u706b\u73af\uff0c4K\uff0car 16:16\u3002"} +{"id": "4004303", "video_name": "c5002883-79e1-527f-831e-c22c572b460f", "text": "\u4e24\u4e2a\u4eba\u8d70\u51fa\u5e10\u7bf7\u3002"} +{"id": "0003384", "video_name": "3ca66383-f8e7-54d9-8ace-7e64e81ff544", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u9713\u8679\u706f\u57ce\u5e02\u4e2d\u3002"} +{"id": "7002555", "video_name": "783563f2-ec17-5291-af59-3e7fcddfaf55", "text": "\u7f8e\u4e3d\u7684\u6a21\u7279\u5728\u821e\u53f0\u4e0a\u5c55\u793a\u4ed6\u6700\u65b0\u7684\u670d\u88c5\u3002"} +{"id": "8002941", "video_name": "3667c860-194c-563c-90d7-d1cad6123719", "text": "\u7c98\u571f\u52a8\u753b\u602a\u5f02\u7684\u4eba\u7c7b\u4ef2\u590f\u9762\u5177\u8986\u76d6\u9762\u90e8\uff0c\u9ad8\u5ea6\u7ec6\u8282\u3001\u5927\u91cf\u7ec6\u8282\uff0c\u65e5\u843d\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u5947"} +{"id": "1004241", "video_name": "4e7c6e98-3e5a-542f-bc0b-90e02da11e33", "text": "\u5b66\u672f\u5e86\u5178\u4e0a\uff0c\u6559\u6388\u4eec\u7528\u6050\u6016\u88ad\u51fb\u60ca\u559c\u5b66\u751f\u3002"} +{"id": "2006577", "video_name": "b4da404a-325d-5dd2-ac67-010185579a83", "text": "\u4e00\u4e2a\u5c06\u7acb\u4f53\u4e3b\u4e49\u4e0e\u8d85\u73b0\u5b9e\u4e3b\u4e49\u878d\u5408\uff0c\u521b\u9020\u51fa\u6311\u6218\u611f\u77e5\u4e0e\u73b0\u5b9e\u7684\u5f62\u8c61\u7684\u8fd0\u52a8\u3002"} +{"id": "1004790", "video_name": "587b9934-9edb-5b75-989d-f0c88be79088", "text": "\u4e4c\u6208\u6797\u7279\u662f\u541e\u566c\u5149\u660e\u7684\u5de8\u578b\u8718\u86db\u3002"} +{"id": "4002364", "video_name": "2981b5e1-2874-5a7e-be85-a5921cf97e59", "text": "\u4e00\u4e2a3D\u5934\u50cf\uff0c\u770b\u8d77\u6765\u50cf\u563b\u54c8\u6df7\u97f3\u5e26\u3002"} +{"id": "2006125", "video_name": "3a67002b-e012-5202-9256-dffd289cfc5b", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u6444\u50cf\u673a\u4ea4\u8c08\u3002"} +{"id": "6002233", "video_name": "bc85dd56-d585-572b-b182-7edb548415a7", "text": "\u4e00\u5f20\u5973\u4eba\u624b\u7d27\u63e1\u7740\u4e00\u90e8\u5f00\u542f\u5c4f\u5e55\u7684\u624b\u673a\u7279\u5199\u955c\u5934\uff08\u8d5b\u535a\u670b\u514b\uff0c\u7535\u5f71\u611f\uff09\u3002"} +{"id": "1003596", "video_name": "4231c070-9aed-5774-8a02-e919dfe1fa07", "text": "\u4e00\u4e2a\u767d\u8272\u5c0f\u732b\u6b63\u5728\u73a9\u4e00\u4e2a\u7c89\u8272\u7684\u7403\u3002"} +{"id": "0003369", "video_name": "3c5d2f0f-bde6-58ec-bfd7-19d7b87d3d8b", "text": "\u7a7f\u7740\u98ce\u8863\u548c\u5e3d\u5b50\u7684\u7537\u4eba\u3002\u9065\u8fdc\u7684\u8f6e\u5ed3\uff0c\u8d70\u7740\uff0c\u9ed1\u767d\u76f8\u95f4\u3002\u57ce\u5e02\u4e2d\u5145\u6ee1\u5e7d\u6028\u7684"} +{"id": "2007775", "video_name": "8ea6a1c5-22af-5c46-b74f-03bb56e45bf7", "text": "\u4ed6\u4eec\u770b\u5230\u88ab\u8bc1\u660e\u662f\u5df4\u5c14\u56fd\u738b\u73e0\u5b9d\u7684\u4e2d\u5fc3\u3002"} +{"id": "6003932", "video_name": "9b24dc78-64f3-5476-8a66-90eb9ed07da5", "text": "\u7535\u5f71\u62cd\u6444\uff0c\u68a6\u5883\u573a\u666f\uff0c\u4e00\u4f4d\u5973\u58eb\u62ff\u7740\u884c\u674e\u5728\u8d70\uff0c\u900f\u89c6\u89d2\u5ea6\u5e94\u8be5\u662f\u4ece\u540e\u9762\u3002"} +{"id": "0005995", "video_name": "24ad5dee-b2cd-5597-aad0-6eb1a884af2b", "text": "\u4eba\u626e\u6f14\u9752\u86d930\u79d2\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "6002528", "video_name": "0ea45654-5a45-5fd4-8600-d5c1d6405966", "text": "\u5929\u5802\uff0c\u7ec6\u8282\u6700\u9ad8\u54c1\u8d28\u3002"} +{"id": "8003546", "video_name": "57b1c028-9168-5bde-88cf-ed77f900af50", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u6709\u6389\u843d\u7684\u91d1\u8272\u5c18\u57c3\uff0c\u5de8\u5927\u7684\u8702\u5de2\u4e0a\u6709\u871c\u8702\u5728\u52b3\u4f5c\u3002"} +{"id": "6002841", "video_name": "8ea3add3-ff0e-5d4b-9124-f85d259bc9ea", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u64e6\u9632\u6652\u971c\u3002"} +{"id": "3004154", "video_name": "182cdb72-24e4-597a-9034-425ab8654a16", "text": "\u4e00\u4e2a\u9e21\u86cb\uff0c\u4e00\u4e2a\u8098\u90e8\uff0c\u4e00\u4e2a\u4fe1\u5c01\uff0c\u548c\u4e00\u53ea\u5927\u8c61\u5728\u516c\u56ed\u91cc\u4f11\u606f\u3002"} +{"id": "4004368", "video_name": "c4451c9d-a32e-5723-b55e-083f8563c146", "text": "\u6d77\u5e95\u4e0b\uff0c\u5c0f\u7f8e\u4eba\u9c7c\u7a7f\u7740\u6f02\u4eae\u7684\u8863\u670d\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u975e\u5e38\u903c\u771f\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u5b83\u4eec\u6b63\u5728"} +{"id": "0003805", "video_name": "43d63ed9-8e2c-5c73-825f-1d16c7e82df8", "text": "\u56fd\u738b\u5728\u6e05\u6d17\u4e00\u628a\u5251\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004298", "video_name": "4f7dafa0-9001-5fe6-abf5-f467bd9a71af", "text": "\u7231\u56e0\u65af\u5766\u88ab\u65b9\u7a0b\u548c\u601d\u7ef4\u6c14\u6ce1\u5305\u56f4\u7740\uff0c\u63cf\u7ed8\u4e86\u4ed6\u7684\u60f3\u6cd5\u3002"} +{"id": "0004432", "video_name": "08d2d2e0-f694-58f7-b798-058f430c9c1f", "text": "\u5728\u672a\u6765\u7684\u83ab\u65af\u79d1\u5f00\u7740\u4fdd\u65f6\u6377911\u3002"} +{"id": "2007494", "video_name": "e112dde4-2364-50e0-93f4-c2e3128253b5", "text": "\u5c4f\u5e55\u6bd4\u4f8b\uff1a9:16\u3002\u4e00\u4e2a\u6e05\u6668\u7684\u7530\u91ce\uff0c\u6625\u5929\u7684\u666f\u8c61\u3002\u753b\u9762\u4e2d\u592e\u662f\u4e00\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u7761\u5728\u6728\u5e8a\u4e0a\uff0c"} +{"id": "3006721", "video_name": "5c5dd3d0-1549-562a-b6ad-5fcf2093e71e", "text": "\u6211\u4e0d\u77e5\u9053\u5982\u4f55\u521b\u5efa\u4e00\u4e2a\u666e\u901a\u7684\u63d0\u793a\u3002"} +{"id": "1005237", "video_name": "6057a91a-542f-50a0-ab05-6ad4a83f31fa", "text": "\u8fa3\u5473\u829d\u58eb\u85af\u7247\u8df3\u7740\u7259\u7ebf\u821e\u3002"} +{"id": "5001841", "video_name": "6df179be-305c-5239-a245-c157277ef6e8", "text": "\u89c6\u9891\u4e2d\uff0c\u4e00\u8f86\u52a8\u753b\u5df4\u58eb\u5728\u65cb\u8f6c\u7f29\u5c0f\u81f3\u5fae\u89c2\u5927\u5c0f\u3002"} +{"id": "0004395", "video_name": "0832c245-cd08-56f1-875f-7dcab0a7afbf", "text": "\u8c46\u5b50\u4ece\u888b\u5b50\u91cc\u6389\u843d\uff0c\u5728\u4e2d\u6027\u80cc\u666f\u4e0b\u3002"} +{"id": "2007050", "video_name": "5fb151d2-5704-5685-b309-1fdf08565d09", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u50cf\u9a86\u9a7c\u4e00\u6837\u7684\u8eab\u5f62\u3002"} +{"id": "8002866", "video_name": "9c9ea677-1c8d-5d1b-a82b-7f074c0516f5", "text": "\u4e00\u95f4\u5e26\u7535\u8111\u7684\u4f18\u96c5\u529e\u516c\u5ba4\uff0c\u53ef\u4ee5\u653e\u5927\u5230\u57ce\u5e02\u76844K\u89c6\u91ce\u3002"} +{"id": "0004141", "video_name": "03fa4248-b422-5240-9514-1b2bf17965e3", "text": "\u4e00\u53ea\u91d1\u5c5e\u8718\u86db\u4fa0\uff0c\u7a7f\u7740\u9ed1\u7ea2\u8272\u7684\u591a\u9762\u51e0\u4f55\u98ce\u683c\u5957\u88c5\uff0c\u91c7\u7528vray\u8ffd\u8e2a\u6280\u672f\uff0c"} +{"id": "2005931", "video_name": "ba99a54c-d970-5826-92d8-2a1941b542a3", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u8868\u793a\uff1a1\uff09\u53bbbitfura.com\uff1b2\uff09\u8f93\u5165\u63a8\u8350\u7801GHKERW25\uff1b3\uff09\u5c060.25\u6bd4\u7279\u5e01\u5b58\u5165\u60a8\u7684\u8d26\u6237\uff1b"} +{"id": "6002746", "video_name": "00920568-5250-5c90-a621-83e88c95833c", "text": "\u82f1\u6587\u53e5\u5b50\uff1aHeimerdinger \u4ece\u82f1\u96c4\u8054\u76df\u5403\u8461\u8404\u3002\n\n\u7ffb\u8bd1\uff1a\u82f1\u96c4\u8054\u76df\u7684Heimerdinger\u5728\u5403\u8461"} +{"id": "7003086", "video_name": "a31d6d08-337b-5403-bed6-4a0baa3dd364", "text": "\u6355\u6349\u4f20\u5947\u7684\u8bde\u751f\uff1a\u5c55\u73b0\u5e74\u8f7b\u7684\u5bab\u672c\u6b66\u85cf\u548c\u6709\u9a6c\u559c\u5175\u5353\u8d8a\u7684\u5bf9\u51b3\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u96fe"} +{"id": "2006034", "video_name": "a121d33d-bea2-577a-b539-3c82c0550a47", "text": "\u6765\u81ea\u4e0d\u540c\u6587\u5316\u7684\u4eba\u4e0e\u81ea\u7136\u4e92\u52a8\uff0c\u5982\u56ed\u827a\u5de5\u3001\u519c\u6c11\u548c\u6e14\u6c11\u3002"} +{"id": "6004691", "video_name": "67108fb0-c262-55f1-bdaa-0536ddaa593f", "text": "\u4e00\u95f4\u6709\u53f2\u8482\u592b\u7684 Minecraft \u623f\u5b50\uff0c\u5e8a\u4e0a\u653e\u7740\u4ed6\u7684\u6a21\u578b\u3002"} +{"id": "7003092", "video_name": "177f4db1-5f06-5895-97db-815a0026bf58", "text": "\u5deb\u5e08\u7537\u5973\u9a91\u9a6c\u7a7f\u8d8a\u4e1b\u6797\u516c\u8def\u3002"} +{"id": "2005977", "video_name": "5a342a59-c6e3-5758-a4d7-8d0e1108d0f6", "text": "\u6709\u4e00\u5929\uff0c\u5979\u51b3\u5b9a\u6084\u6084\u6e9c\u51fa\u57ce\u5821\u53bb\u5192\u9669\u3002"} +{"id": "7004557", "video_name": "32a1a00a-d3e7-5777-8aa4-1275c35198f9", "text": "\u5370\u5237\u673a\u548c\u73b0\u91d1\u7684\u5e93\u5b58\u5f71\u50cf\u3002\u65c1\u767d\uff1a\u6cd5\u5b9a\u8d27\u5e01\u5df2\u7ecf\u5728\u91d1\u878d\u9886\u57df\u5360\u636e\u4e3b\u5bfc\u5730\u4f4d\u6570\u5341\u5e74\u3002\u8fd9\u79cd\u9648"} +{"id": "5001485", "video_name": "c607030a-043b-555f-893c-8f35e55a20c1", "text": "\u672a\u6765\u4e3b\u4e49 AI \u987e\u95ee\u9080\u8bf7\u89c2\u4f17\u4e0e\u4ed6\u4e00\u8d77\u8e0f\u4e0a AI \u4e4b\u65c5\u3002"} +{"id": "4004358", "video_name": "0446eacd-3751-5ddd-b465-93fb7f0bc3ac", "text": "\u7f8e\u4e3d\u7684\u5e7b\u60f3\u57ce\u5e02\uff0c\u4e2d\u4e16\u7eaa\u57ce\u5e02\uff0c\u5927\u90fd\u5e02\uff0c\u9b54\u6cd5\uff0c\u6c34\u9053\uff0c\u7011\u5e03\uff0c\u7f8e\u4e3d\u7684\u4e91\u6735\uff0c\u767d\u8272\u5927\u7406"} +{"id": "1005856", "video_name": "6bbdaad2-59f6-5ea7-8668-e04f831e0a94", "text": "\u4f0a\u957f\u5316\u8eab\u4e3a\u7f8e\u4e3d\u7684\u5973\u5b50\uff0c\u7b2c\u4e00\u6b21\u8fdb\u5165\u5510\u671d\u7e41\u534e\u7684\u90fd\u57ce\u3002"} +{"id": "8003858", "video_name": "ec95f938-1182-500e-92e6-7de78366bb39", "text": "\u95ea\u5149\u3001\u95ea\u4eae\u3001\u955c\u5934\u8000\u6591\u3001\u98de\u6e85\u3001\u5546\u4e1a\u6d77\u62a5\u3001\u9ad8\u5bf9\u6bd4\u5ea6\u3001\u52a8\u6001\u6a21\u7cca\u3001\u6d45\u666f\u6df1\u3002"} +{"id": "7003156", "video_name": "d3ac4b37-468d-5432-bdec-78dec8a8b08d", "text": "\u9886\u4e3bEndershpere\u7687\u5bb6\u9ad8\u8d35\u9886\u4e3b\u5728AONB\u9886\u57df\u4e2d\uff0c\u8fdc\u5904\u6709\u4e00\u4e2a\u72e9\u730e\u5c0f\u5c4b\u3002"} +{"id": "1004127", "video_name": "4c6d022b-7a23-506a-9b7f-3e8a1cdb986f", "text": "\u4e24\u53ea\u72d7\u5750\u5728\u5a01\u5c3c\u65af\u7684\u5e73\u5e95\u8239\u4e0a\u3002\u8239\u592b\u5531\u7740\u610f\u5927\u5229\u60c5\u6b4c\uff0c\u800c\u4e24\u53ea\u72d7\u5219\u53d8\u5f97\u6d6a"} +{"id": "7002324", "video_name": "0ccc09f6-b39a-5fd8-b1c4-efbf137fa546", "text": "\u4f0a\u6851\u8d70\u5230\u72d7\u8eab\u65c1\u7684\u704c\u6728\u4e1b\u8fb9\u3002"} +{"id": "3006399", "video_name": "2a15533a-96d9-5505-8227-08bd3d9a22e4", "text": "\u4e00\u4e2a\u6709\u54c1\u4f4d\u3001\u4f18\u96c5\u3001\u806a\u660e\u3001\u5e05\u6c14\u7684\u7537\u4eba\u3002"} +{"id": "8001079", "video_name": "651f93ca-3d6b-5eb2-b069-47683aaed3ee", "text": "\u827e\u7c73\u7eb3\u59c6\u7a7f\u7740\u9488\u7ec7\u6bdb\u8863\u5728\u70e7\u70e4\u805a\u4f1a\u4e0a\u8bf4\u5531\u3002"} +{"id": "5001259", "video_name": "729d79fd-83c1-537b-8b56-0327b3b954c6", "text": "\u5f53\u4ed6\u89e6\u6478\u7740\u95ea\u70c1\u77f3\uff08Glimmerstone\uff09\u7684\u65f6\u5019\uff0c\u4ed6\u611f\u5230\u81ea\u5df1\u5145\u6ee1\u4e86\u4e0d\u5b89\u548c\u6050\u60e7\uff0c\u5468\u56f4\u7b3c"} +{"id": "2006483", "video_name": "235c1e62-1585-5f21-a1c0-5ab279463f13", "text": "\u4e00\u4f4d\u795e\u79d8\u7684\u5973\u5b50\uff0c\u7f8e\u4e3d\uff0c\u6df1\u84dd\u8272\u7684\u773c\u775b\u3002"} +{"id": "7003736", "video_name": "621623cd-5c5c-56e4-b17c-ba00ca7b3990", "text": "\u4e9a\u7279\u5170\u8482\u65af\uff0c\u4e00\u4e2a\u88ab\u5f3a\u98ce\u5439\u62c2\u7684\u5931\u843d\u4e4b\u57ce\u3002\u620f\u5267\u6027\u7684\u7535\u5f71\u822c\u753b\u9762\u3002"} +{"id": "4004146", "video_name": "45e3ceae-db21-5aa7-9b0e-88fe06b8b85f", "text": "\u5728\u591c\u665a\u91cc\uff0c\u5728\u7530\u91ce\u4e0a\u884c\u8d70\u7684\u811a\u6b65\u3002"} +{"id": "2006927", "video_name": "bbe357c0-5ef1-5c84-a44a-11d92e67acce", "text": "\u7f57\u9a6c\u57ce\u6709\u6a44\u6984\uff0c\u8001\u53e4\u5178\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "8003141", "video_name": "b466c227-633f-55fb-bbaf-d88955b1fa01", "text": "\u5728\u89c6\u9891\u4e2d\uff0c\u5723\u7c73\u8fe6\u52d2\u4f4d\u4e8e\u4e2d\u5fc3\uff0c\u6444\u50cf\u673a\u4f7f\u7528\u76d8\u65cb\u8fd0\u52a8\u7ed5\u7740\u5927\u5929\u4f7f\u65cb\u8f6c\u3002\u5927\u5929\u4f7f\u5fc5\u987b\u662f\u4e00\u4e2a\u5f3a\u6709\u529b"} +{"id": "7003849", "video_name": "12cc9f76-34d4-5a93-bb6e-73aede9f1842", "text": "\u4e00\u53ea\u7a7f\u7740\u8d85\u4eba\u670d\u88c5\u7684\u5c0f\u732b\u6b63\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "8002588", "video_name": "9e6bbc0b-b07c-5a81-b599-514872d64c34", "text": "\u592a\u7a7a\u7a7f\u68ad\u673a\uff0c\u7a7f\u8d8a\u6d41\u661f\uff0c\u592a\u7a7a\u5149\u8292\uff0c\u5916\u661f\u6bcd\u8230\u5347\u8d77\u3002"} +{"id": "5001667", "video_name": "e4c04995-3b30-558f-b81f-3292e3ea6021", "text": "\u8036\u7a23\u57fa\u7763\u795d\u798f\u5e76\u795d\u8d3a\u6885\u65af\u00b7\u9a6c\u7eb3\u5c14\u751f\u65e5\u5feb\u4e50\u3002"} +{"id": "4003030", "video_name": "b63f1912-e06c-5e81-a2ce-8653d5d6744f", "text": "\u91d1\u8272\u7ad6\u7434\u6846\u67b6\u5728\u7070\u8272\u5149\u7ebf\u5899\u4e0a\u3002"} +{"id": "0006634", "video_name": "2ff6bdfd-3714-57ad-ac96-4a34c0b7d2b5", "text": "\u9713\u8679\u6c14\u7403\u5728\u591c\u7a7a\u4e2d\u98d8\u8361\uff0c\u87ba\u65cb\u6868\u65cb\u8f6c\u7740\u5ba3\u4f20\u4ea7\u54c1\u3002"} +{"id": "5001658", "video_name": "7386107b-9d70-564e-9328-29f0be502076", "text": "\u7f2a\u5a05\u4e0e\u8d5b\u5f17\u5bf9\u5cd9\uff0c\u5c55\u5f00\u4e86\u4e00\u573a\u667a\u529b\u548c\u6280\u5de7\u7684\u8f83\u91cf\u3002"} +{"id": "3006157", "video_name": "3be7b333-51a7-5638-a48d-41bc0514ca4e", "text": "\u5728\u80af\u5c3c\u4e9a\u5145\u6ee1\u6d3b\u529b\u7684\u5e73\u539f\u4e2d\u5fc3\uff0c\u5728\u5e7f\u9614\u7684\u975e\u6d32\u5929\u7a7a\u4e0b\uff0c\u4e00\u4e2a\u52c7\u6c14\u3001\u667a\u6167\u548c\u5192\u9669\u7684\u7535\u5f71\u6545"} +{"id": "4002413", "video_name": "cfdd769a-98da-5978-8caa-805dbf8e117e", "text": "\u51ac\u5929\u4e0b\u96ea\uff0c\u6e29\u6696\u7684\u5149\u7ebf\u3002"} +{"id": "0004936", "video_name": "11d028e8-69a4-546d-96df-8e4ad972b12b", "text": "\u89c6\u9891\u4e2d\u6709\u96ea\u82b1\u98d8\u843d\u548c\u96ea\u666f\u53ef\u89c1\u3002"} +{"id": "5001069", "video_name": "c28093cc-6dc5-5d59-8807-5eba60d210dc", "text": "\u4e00\u53ea\u814a\u80a0\u72d7\u5728\u8857\u4e0a\u8d70\u8def\u5e76\u5fae\u7b11"} +{"id": "4004085", "video_name": "a28ac052-10cb-53ea-ae8a-a981dfe1dc2d", "text": "\u56de\u5bb6\u8def\u4e0a\u770b\u5230\u53cc\u91cd\u5f69\u8679\uff01\u4fe1\u606f\uff1a\u9b54\u6cd5\u68ee\u6797\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007441", "video_name": "014ff3e6-a3f6-5e8f-8cc2-60ca8899ab2d", "text": "\u5411\u8336\u6ef4\u4e2d\u6dfb\u52a0\u767d\u5149\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002982", "video_name": "0add7bea-abb9-5a38-aec5-9c46b54ee211", "text": "\u6709\u4e00\u5929\uff0c\u4ed6\u4eec\u5230\u8fbe\u4e86\u4e00\u68f5\u6709\u7740\u91d1\u8272\u679d\u5e72\u7684\u5de8\u5927\u6811\u3002\u96d5\u523b\u5728\u6811\u5e72\u4e0a\u7684\u53e4\u8001\u7b26\u53f7\u5f15\u8d77\u4e86\u4ed6\u4eec\u7684"} +{"id": "1004443", "video_name": "52321a88-ea17-5fe1-8218-ab1d6fac88a8", "text": "\u5236\u9020\u4e00\u4e2a\u68a6\u60f3\u7684\u611f\u89c9\uff0c\u5c31\u50cf\u6270\u4e71\u73b0\u5b9e\u3002\u4e91\u6735\u51fa\u73b0\u3002\u9644\u4ef61\u3002"} +{"id": "2004046", "video_name": "4136ead5-db4b-5853-b4dc-ca21d27c1f50", "text": "\u90a3\u4e2a\u7a7f\u7740\u68d5\u8272\u886c\u886b\u548c\u80cc\u5305\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u5728\u5580\u5c14\u5580\u5854\u5e02\u573a\u5438\u70df\u65f6\uff0c\u8fdc\u5904\u770b\u89c1\u4e00\u4e2a\u5c0f"} +{"id": "3003884", "video_name": "e02dc96d-1017-5caf-8a30-dfd1397a04d1", "text": "\u4e00\u4f4d\u6709\u7740\u9ec4\u8272\u773c\u775b\u7684\u53ef\u6015\u5973\u4eba\uff0c\u4ece\u4e00\u7247\u6ee1\u662f\u6b7b\u843d\u53f6\u7684\u6e56\u6c34\u4e2d\u5347\u8d77\u3002"} +{"id": "5001501", "video_name": "61c80730-4398-5e0d-bf01-af7a37a9ee25", "text": "\u4e00\u53ea\u6bd4\u683c\u72ac\u5750\u5728\u9a7e\u9a76\u6c7d\u8f66\u7684\u65b9\u5411\u76d8\u524d\uff0c\u5411\u6444\u50cf\u5934\u5bf9\u8bdd\uff0c\u753b\u9762\u903c\u771f\u3002"} +{"id": "0004160", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "\u7f8e\u4e3d\u7684\u5973\u58eb\u6b63\u5fd9\u7740\u4f7f\u7528\u5979\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "0003464", "video_name": "3df67bc6-87da-5b78-8283-f1d06563dc98", "text": "\u7f51\u7edc\u670b\u514b\u9713\u8679\u793e\u533a\u8d2f\u7a7f\u57ce\u5e02\u3002"} +{"id": "1003608", "video_name": "4286018e-fd40-5ec5-9f51-00c36256cddc", "text": "\u751f\u547d\u4e4b\u6811\uff0c\u6839\u548c\u7cbe\u7075\u73af\u7ed5\u7740\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "3004830", "video_name": "481d0328-360a-5b0f-b455-fc548dc9d07f", "text": "\u4e00\u4e2a\u97e9\u56fd\u82f1\u4fca\u7684\u5e74\u8f7b\u4eba\u4ee5\u52a8\u6f2b\u98ce\u683c\u7684KPOP\u6b65\u5165\u5b66\u6821\u3002"} +{"id": "1004734", "video_name": "57c00286-2919-5e6c-8bba-024fbde59b94", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "2003105", "video_name": "2f3fefd3-2277-5b5f-a9cb-4c9f5e8750f0", "text": "\u7535\u5f71\u822c\u7684\u7ebd\u7ea6\u5e02\u666f\uff0c\u4ee4\u4eba\u632f\u594b\uff0c\u5915\u9633\u4f59\u6656\u3002"} +{"id": "4004899", "video_name": "d7e4be13-1ab9-5cb4-8afe-14b100e992d6", "text": "\u4e00\u5c0a\u5f3a\u5927\u7684\u65af\u591a\u845b\u54f2\u5b66\u5bb6\u7684\u96d5\u5851\uff0c\u5faa\u73af\u64ad\u653e\u7684\u89c6\u9891\u3002"} +{"id": "3003151", "video_name": "46db2d6c-616a-5dd0-9f29-16150947fff7", "text": "\u8d85\u7ea7\u8868\u73b0\u529b\u548c\u60c5\u611f\u7684\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u5b59\u609f\u7a7a\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u7684\u5347\u7ea7\u3002"} +{"id": "1004947", "video_name": "5b8184d3-9de4-520a-b9bc-94eede980d6d", "text": "Source sentence: Rahul Gandhi\u5728\u6708\u7403\u8868\u9762\u884c\u8d70\u3002"} +{"id": "0003578", "video_name": "3fd55f27-2c45-5c19-8e7f-b574f79c994a", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u4e86NASA\u7ad9\u5185\u4e00\u4e2a\u5de8\u5927\u7684NASA\u6b66\u5668\u3002"} +{"id": "0006687", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "\u751f\u6210\u4e00\u4e2a\u5173\u4e8e\u4eba\u7c7b\u548c\u4eba\u5de5\u667a\u80fd\u76f8\u5173\u6027\u7684\u73af\u5883\u89c6\u9891\u3002"} +{"id": "3004554", "video_name": "f4c0c762-d8ad-5db9-b914-d756404a09f8", "text": "\u4e2d\u56fd\u51fa\u751f\u7684\u534e\u4eba\u5bf9\u4e0a\u4e16\u7eaa\u516d\u5341\u5e74\u4ee3\u7684\u6000\u65e7\u60c5\u7ed3\u3002"} +{"id": "2003586", "video_name": "ea126f3b-bce8-5fb2-8da0-dbcd04432b2b", "text": "\u82cf\u683c\u5170\u5c71\u533a\u7684\u4e00\u6bb5\u89c6\u9891"} +{"id": "1003190", "video_name": "3ab0c847-2502-5594-b672-7e6b674382e1", "text": "\u8a79\u59c6\u65af\u00b7\u97e6\u4f2f\u671b\u8fdc\u955c\u7684\u89c6\u9891\u7531\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "2004731", "video_name": "9386da61-542d-5a9a-9895-3b0b01ced9dd", "text": "\u6df7\u4e71\u548c\u5c60\u6740\u4e4b\u4e2d\uff0c\u8fd8\u6709\u4eba\u6027\u7684\u65f6\u523b\uff0c\u63d0\u9192\u6211\u4eec\u4eba\u7c7b\u540c\u60c5\u5fc3\u7684\u5171\u540c\u7ebd\u5e26\u3002"} +{"id": "6002708", "video_name": "4499f889-c4f1-510d-8fa3-6dcf9bc673af", "text": "\u5973\u5b69\u80cc\u5bf9\u7740\u8352\u91ce\u7ad9\u7740\uff0c\u98ce\u683c\u4e3a1990\u5e74\u4ee3\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "6003534", "video_name": "8385b961-3fb8-5303-9658-276af03fc03e", "text": "\u5e7f\u9614\u7684\u5927\u897f\u6d0b\u5728\u6c79\u6d8c\u7684\u9634\u5929\u4e0b\u5f00\u573a\u3002\u6d77\u9762\u4e0d\u5b89\uff0c\u6ce2\u6d6a\u62cd\u6253\u7740\u82f1\u6cd5\u6218\u8230\u3002"} +{"id": "6002934", "video_name": "f6a47591-f9e9-5835-9d1d-6e0d23794b15", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u822a\u5929\u5668\u4e0a\u770b\u8d8a\u6765\u8d8a\u5c0f\u3002"} +{"id": "8001853", "video_name": "86094085-180d-53f3-9d27-1a332a4b7d7a", "text": "\u4e00\u4e2a\u4eba\u5b64\u72ec\u5730\u5750\u5728\u5e8a\u4e0a\uff0c\u611f\u5230\u6cae\u4e27\u3002"} +{"id": "2004133", "video_name": "66246fb3-93e2-5317-912f-d3cfb0ae6c56", "text": "\u8ba9\u9875\u9762\u52a8\u8d77\u6765\uff0c\u5973\u5b69\u6b63\u5728\u7ffb\u5f00\u4e66\u3002"} +{"id": "2006666", "video_name": "cc4275fa-6667-511b-ae83-abc125bcea31", "text": "\u7535\u5f71\u6d77\u62a5\uff0c\u5173\u4e8e\u4fc4\u7f57\u65af\u6ed1\u677f\u7a7a\u4e2d\u6b65\u884c\u3002"} +{"id": "0004241", "video_name": "05a4d9a5-e583-5df4-87b3-f75f2c3d524a", "text": "\u6210\u5e74\u4eba\u5728\u6d77\u6ee9\u4e0a\u62bd\u70df\u3002"} +{"id": "6004144", "video_name": "96f22e5c-e51b-5cdd-9103-a39d451bc61c", "text": "\u5973\u8d85\u7ea7\u6b4c\u624b\uff0c\u7ad9\u5728\u7ebd\u7ea6\u6469\u5929\u5927\u697c\u524d\u3002"} +{"id": "7004976", "video_name": "ba1ebe6d-53b0-5bee-b2b9-4420986d9aad", "text": "\u90a3\u4e2a\u7537\u4eba\u5403\u4e86\u7a7a\u8c03\u3002"} +{"id": "4003307", "video_name": "657cfa23-b964-5a21-90af-bac74b5ffc58", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u4e8e\u5c0f\u738b\u5b50\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u6709\u7740\u7070\u8272\u7684\u5934\u53d1\uff0c\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u4e2d\u6f2b\u6b65\uff0c\u6c1b\u56f4\u5fe7"} +{"id": "8002718", "video_name": "771a38b0-0a84-5172-afaf-b2d84f9889f3", "text": "Source sentence: \u5fcd\u8005\u548c\u5b9d\u53ef\u68a6\u677e\u9f20\u517d\u4e00\u8d77\u6253\u9ad8\u5c14\u592b\u7403\u3002"} +{"id": "6003566", "video_name": "c726d67d-1931-5870-ace8-176fb644f7a4", "text": "\u4e2d\u56fd\u6709\u4e00\u5ea7\u975e\u5e38\u9ad8\u4e14\u53e4\u8001\u7684\u5c71\uff0c\u5b83\u975e\u5e38\u9ad8\u3002\u5c71\u9876\u4e0a\u8fd8\u6709\u4e00\u5ea7\u975e\u5e38\u53e4\u8001\u7684\u5bfa\u5e99\uff0c\u975e\u5e38\u795e\u5723\u3002"} +{"id": "0006713", "video_name": "318d6efa-c803-5057-929a-ca0fd1df2071", "text": "\u6c99\u6f20\u4e2d\u7684\u68d5\u6988\u6811\u5728\u591c\u665a\uff0c4K\uff0c1:1"} +{"id": "1003273", "video_name": "3c4061a5-e497-5350-907c-6d482e953287", "text": "\u6717\u5a1c\u00b7\u5fb7\u857e\u4f5c\u4e3a\u4e16\u754c\u603b\u7edf"} +{"id": "2004559", "video_name": "0f49a0dd-6f50-5d3c-93e0-40ca31cbeb5c", "text": "\u751f\u6210\u4e00\u53ea\u7ad9\u5728\u6b27\u4e9a\u731e\u7301\u4e0a\u7684\u91d1\u521a\u9e66\u9e49\u3002"} +{"id": "4004058", "video_name": "9315b053-d160-5057-8167-27fdd8da8e2e", "text": "\u5893\u5730\u573a\u666f\uff0c\u52a8\u6001\uff0c\u53e4\u8001\uff0c\u9b3c\u9b42\u7c7b\u578b\uff0c\u591c\u665a\u3002"} +{"id": "2007020", "video_name": "059c7b15-9524-5242-a318-4a90879926aa", "text": "\u4e00\u6bb5\u7eff\u5e55\u89c6\u9891\uff0c\u5c55\u793a\u7a7f\u77401920\u5e74\u4ee3\u670d\u88c5\u7684\u4eba\u4eec\u3002"} +{"id": "4003019", "video_name": "627188d4-119a-5d14-813b-5c3b6e2b9fcd", "text": "\u8001\u5f71\u50cf\uff0c\u53e4\u8463\uff0c\u4e00\u4e2a\u6234\u7740\u7ea2\u8272\u6bdb\u7ebf\u5e3d\u5b50\u7684\u5973\u5b69\u5728\u906d\u8f70\u70b8\u7684\u57ce\u5e02\u4e2d\u884c\u8d70\u3002"} +{"id": "2003029", "video_name": "067c4552-8976-5e21-8460-cf7e08ef8fac", "text": "\u7528AI\u4e3aYouTube\u77ed\u89c6\u9891\u8d5a\u94b1\u3002"} +{"id": "4002411", "video_name": "e3ec0593-788f-517b-aa77-d8a931d82433", "text": "\u90a3\u4e2a\u5973\u4eba\u72b9\u8c6b\u4e86\u4e00\u4f1a\u513f\uff0c\u7136\u540e\u63a5\u53d7\u4e86\u4ed6\u7684\u63d0\u8bae\u3002\u4ed6\u4eec\u5750\u5728\u89d2\u843d\u91cc\u7684\u684c\u5b50\u65c1\uff0c\u4ed6\u4eec\u7684\u76ee\u5149"} +{"id": "1006872", "video_name": "7d7f7af4-3510-52c4-b12b-7ceadf3a89f7", "text": "\u4e00\u53ea\u53e4\u8001\u7684\u77f3\u5934\u5de8\u4eba\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8857\u8fb9\u662f\u57ce\u5e02\uff0c\u80cc\u666f\u662f\u5728\u591c\u665a\u3002"} +{"id": "8002990", "video_name": "cc450e43-9c92-5f61-a391-85756450f912", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5728\u5bfb\u627e\u7231\u7684\u529b\u91cf\u3002"} +{"id": "7003551", "video_name": "eefbd660-6bf3-5e4a-a2fb-57e8afb8d5c0", "text": "\u592a\u7a7a\u8239\u673a\u7ec4\u548c\u5916\u661f\u5149\u4f53\u8054\u624b\u63ed\u5f00\u4e86\u91cf\u5b50\u865a\u7a7a\u7684\u5965\u79d8\u3002\u4ed6\u4eec\u4e00\u8d77\u9762\u5bf9\u6311\u6218\uff0c\u8003\u9a8c\u4e86\u4ed6\u4eec\u5bf9\u73b0\u5b9e\u7684"} +{"id": "1003208", "video_name": "3b159854-501d-566e-b30d-77872f51a93d", "text": "sight of rainbow wings fluttering in the sunlight.\n\nTranslated sentence: \u5f69\u8679\u7fc5\u8180 \u5f53\u6211\u4eec\u7684\u4e3b\u89d2Mia\u8e0f\u5165\u4e00\u4e2a\u7a7a\u5730\uff0c\u5979\u88ab\u9633\u5149\u7167\u8000"} +{"id": "1006173", "video_name": "70fa4615-72c4-56c8-ba70-f2969b4aa855", "text": "\u4e00\u4e2a\u5934\u4e0a\u6234\u7740\u624b\u8868\u7684\u7537\u4eba\uff0c\u591c\u665a\u3002"} +{"id": "6003349", "video_name": "0b8273dc-0531-5eb3-b146-91f1e95cc202", "text": "\u6c34\u4ece\u6c34\u9f99\u5934\u6d41\u51fa\u7684\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2007240", "video_name": "d1bffcd5-9dd6-5759-b5a6-bff80c39c7f7", "text": "\u5728\u8302\u5bc6\u7684\u7af9\u6797\u4e2d\uff0c\u87ba\u65cb\u72b6\u7684\u7af9\u53f6\u5728\u8fd1\u666f\u4e2d\u843d\u4e0b\uff0c\u5448\u73b0\u51fa\u65e5\u5f0f\u6c34\u58a8\u98ce\u683c\u3002"} +{"id": "4002549", "video_name": "a50cb89c-0b00-52ad-a611-4c826e7fcd58", "text": "\u5ba2\u673a\u98de\u8d8a\u559c\u9a6c\u62c9\u96c5\u5c71\u3002"} +{"id": "2007200", "video_name": "fc286ab2-65f7-50d1-90b2-dcc8070b8472", "text": "\u5728\u4e00\u4e2a\u96e8\u591c\u91cc\uff0c\u751f\u6210\u4e00\u4e2a\u5973\u5b69\uff0c\u987a\u4ece\u7684\u732b\u548c\u72d7\u6b63\u5728\u5979\u8eab\u8fb9\u7761\u89c9\uff0c\u4ee5\u65e5\u672c\u5361\u901a\u98ce\u683c\u63cf\u7ed8\uff0c"} +{"id": "5001434", "video_name": "bf19bb69-d1a4-5bc3-a5c6-773aed948242", "text": "\u4e00\u4f4d\u62e5\u6709\u8f89\u714c\u94f6\u8eab\u3001\u95ea\u4eae\u9762\u5bb9\u3001\u7d2b\u8272\u5149\u4e0e\u6697\u8c03\u7fc5\u8180\u3001\u6697\u84dd\u7d2b\u8272\u5e26\u6709\u94f6"} +{"id": "0004999", "video_name": "13008c4b-a001-58dc-9cf4-d8322efe2a86", "text": "\u6d77\u5cb8\u7ebf\u4e0a\u9759\u8c27\u653e\u677e\u7684\u6d77\u6c34\u4e0e\u843d\u65e5\u7684\u80cc\u666f\u5f62\u6210\u7f8e\u4e3d\u7684\u753b\u9762\uff0c\u6c34\u9762\u5448\u73b0\u5fae\u6ce2\u8361\u6f3e\u7684\u52a8\u6001\u3002"} +{"id": "1006791", "video_name": "7c655648-c6cd-5283-9e33-6575112c8992", "text": "\u4e09\u4e2a\u82d7\u6761\u7684\u963f\u62c9\u4f2f\u5de8\u4eba\u4e0e\u4e9a\u4f2f\u62c9\u7f55\u4ea4\u8c08\uff0c\u7535\u5f71\u91c7\u752870\u6beb\u7c73\u53d8\u5f62\u955c\u5934\uff0c\u5b8f\u4f1f\u7684\u706f\u5149"} +{"id": "7003920", "video_name": "08e2eafb-127c-52b0-9be7-d20811667c76", "text": "\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u8fdc\u666f\uff0c\u7626\u7537\u4eba\uff0c\u7b11\u58f0\uff0c\u957f\u53d1\uff0c\u98d8\u52a8\u7684\u5934\u53d1\uff0c\u5929\u7a7a\uff0c\u4e91\u6735\u79fb\u52a8\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c24"} +{"id": "5001904", "video_name": "30502520-d191-5bb9-beef-66c6e0f211b7", "text": "\u5c0f\u5154\u5b50\u5728\u6811\u4e0a\u73a9\u800d\u3002"} +{"id": "0006805", "video_name": "336284c9-6a21-5b3b-9491-8eb8e4afd914", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5728\u6d77\u5e95\u6e38\u52a8\u7684\u4e39\u9876\u9e64\u9c7c\uff0c\u8d85\u903c\u771f\uff0c\u7f29\u5c0f\u89c6\u89d2\u3002"} +{"id": "7002915", "video_name": "62440a6f-bc1c-5bdb-84ba-f232efe77165", "text": "\u53e4\u4ee3\u52c7\u58eb\u624b\u6301\u91d1\u5251\uff0c\u7f6e\u8eab\u4e8e\u4e91\u95f4\u7ff1\u7fd4\uff0c\u773c\u795e\u70af\u70af\u6709\u795e\uff0c\u573a\u666f\u9ed1\u6697\u800c\u8d85\u7ea7\u7ec6"} +{"id": "5001151", "video_name": "c16bfa6b-6fb1-5632-be7b-05f3318af3cc", "text": "\u4e94\u5f69\u7f24\u7eb7\u7684\u670b\u53cb\u8df3\u821e\u5e76\u73a9\u4e50\u3002"} +{"id": "8001417", "video_name": "ed2936b4-d283-5633-9dc3-5c4a6d29a0a5", "text": "\u8138\u4e0a\u7f13\u7f13\u9732\u51fa\u5fae\u7b11\uff0c\u5934\u53d1\u5411\u5de6\u5fae\u5fae\u98d8\u52a8\u3002\u8033\u73af\u968f\u7740\u98ce\u8f7b\u8f7b\u6447\u66f3\u3002"} +{"id": "6002824", "video_name": "0e8a7604-579d-51a3-bee8-6fc3446c5ce1", "text": "\u4e00\u4e2a\u65b0\u7684\u60f3\u6cd5\u6d6e\u73b0\u5728\u8111\u6d77\u4e2d\uff0c\u5927\u8111\u5916\u4fa7\u753b\u7740\u4e00\u4e2a\u706f\u6ce1\uff0c\u53ef\u4ee5\u95ea\u70c1\u5f00\u5173\u3002\u8fd9\u4e2a\u573a\u666f\u5e94\u8be5\u662f\u4e00\u4e2a\u5750"} +{"id": "0004881", "video_name": "10d791f1-cf74-5836-9cfb-8603ca1f1326", "text": "\u540e\u65b9\u548c\u4e0b\u65b9\u7684\u955c\u5934\u3002\u573a\u666f\u662f\u725b\u4ed4\u7684\u540e\u817f\u3002\u4ed6\u8981\u51fa\u95e8\uff0c\u573a\u666f\u662f\u91ce\u897f\u90e8\u98ce\u683c\u3002"} +{"id": "0006619", "video_name": "2fa1d332-0b53-535e-a5ca-96b278963785", "text": "\u5c55\u793a\u4e09\u53ea\u6d77\u9f9f\u5728\u6d77\u4e2d\u6ed1\u884c\u7684\u89c6\u9891\u3002"} +{"id": "4003269", "video_name": "92cc70ea-758d-51ba-8dd7-140f44ea8eef", "text": "\u4e00\u9879\u6fc0\u589e\u7684\u8c03\u67e5 \n\nSource sentence: The cat is sitting on the mat. \n\n\u732b\u5750\u5728\u57ab\u5b50\u4e0a\u3002"} +{"id": "4003617", "video_name": "e3bf5a8b-5c68-5e85-aec3-2f8ef1764bc5", "text": "\u62bd\u8c61\u53cc\u91cd\u66dd\u5149\u6444\u5f71\u4f5c\u54c1\u5c55\u793a\u4e86\u4e00\u4f4d\u5e74\u8f7b\u5973\u6027\u548c\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5723\u5854\u514b\u9c81\u65af\u4e4b\u95f4\u7684"} +{"id": "5001025", "video_name": "cf379afc-adbf-5f80-914a-b7b3abffca70", "text": "\u592a\u5e73\u6d0b\u897f\u5317\u5730\u533a\u7684\u98ce\u5439\u52a8\u4e86\u6811\u6728\u3002"} +{"id": "6003052", "video_name": "76727b8a-103a-56c4-b6af-ec5e1e6a8272", "text": "\u7f8e\u4e3d\u7684\u4ed9\u5973\u7528\u4e00\u4ef6\u84dd\u8272\u5962\u534e\u7684\u793c\u670d\u548c\u6f02\u4eae\u7684\u73bb\u7483\u978b\u5c06\u7070\u59d1\u5a18\u53d8\u6210\u4e86\u4e00\u4f4d\u7f8e\u4e3d"} +{"id": "3004267", "video_name": "52e610ae-8e24-54e2-b0ce-a65d8551a2b4", "text": "\u795e\u79d8\u7684\u84dd\u7f50\u5728\u7f8e\u4e3d\u7684\u4e1b\u6797\u4e2d\u3002"} +{"id": "3003087", "video_name": "91cfcc14-cef8-501b-808b-0791b3010924", "text": "\u4e00\u4f4d\u77ed\u53d1\u3001\u4e2d\u5f0f\u98ce\u683c\u7684\u5973\u58eb\u624b\u63e1\u67d3\u8840\u957f\u5251\uff0c\u7a7f\u7740\u98ce\u8863\uff0c\u8eab\u5904\u5c71\u8c37\uff0c\u56db\u5468\u5012\u4e0b\u4e86\u654c"} +{"id": "1004204", "video_name": "4db3ae8c-b7da-5307-bc3a-bae80315cced", "text": "\u4e00\u4e2a\u9ab7\u9ac5\u8eab\u7a7f\u9713\u8679\u6548\u679c\uff0c\u7275\u7740\u4e00\u4f4d\u7f8e\u5973\u3002"} +{"id": "4004638", "video_name": "c1fd7643-9125-5f39-b881-c0446ec328cd", "text": "\u4e00\u8f86\u7ea2\u8272\u7684\u6c7d\u8f66\u6b63\u5728\u591c\u665a\u7684\u4e61\u95f4\u516c\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "4002607", "video_name": "4a7b0922-ca9e-50b6-83f4-9d028b52f68e", "text": "\u4e00\u6bb5\u95e8\u88ab\u731b\u529b\u5173\u4e0a\u7684\u89c6\u9891\uff0c\u6444\u50cf\u673a\u5e94\u8be5\u653e\u7f6e\u5728\u623f\u5b50\u524d\u9762\u3002"} +{"id": "3003229", "video_name": "d65704a3-284e-5aa7-a401-5979f8c91516", "text": "\u4e00\u4e2a\u5c0f\u5b69\u62ff\u5230\u4ed6\u7684\u6210\u7ee9\u5355\uff0c\u975e\u5e38\u96be\u8fc7\u3002"} +{"id": "7003512", "video_name": "fb14ed34-74f9-5c50-b15f-cb9ff0fd8bf4", "text": "\u5979\u662f\u4e00\u53ea\u5de8\u5927\u7684\u96cc\u6027\u5996\u602a\u62c9\u514b\u6c99\u5e0c\u5e0c\u8fea\u59c6\u5df4\uff0c\u957f\u7740\u89d2\u548c\u957f\u6307\u7532\uff0c\u8eab\u62ab\u9cde"} +{"id": "4003966", "video_name": "21ead6a4-6d7e-550a-b3ff-2df167304759", "text": "\u5de8\u5927\u7684\u5927\u7329\u7329\u8df3\u51fa\u6765\uff0c\u4ece\u6811\u540e\u9762\u5954\u8dd1\u3002"} +{"id": "2005877", "video_name": "ad2402a5-2a67-58f4-930a-76ba1b2fba79", "text": "\u90a3\u4e2a\u5973\u5b69\u624b\u6301\u4f1e\uff0c\u5feb\u4e50\u5730\u8d70\u5728\u9ed1\u6697\u7684\u8857\u4e0a\uff0c\u6ca5\u9752\u8def\u9762\u6e7f\u6f09\u6f09\u7684\uff0c\u95ea\u4eae\u7740\u5149"} +{"id": "2004135", "video_name": "27b3bdb9-7caf-5955-95e0-1861114925b3", "text": "\u65e9\u6668\u4e00\u53ea\u9ca8\u9c7c\u5728\u6c34\u4e0b\u6e38\u6cf3\u8bd5\u56fe\u6355\u6349\u9c7c\uff0c\u9c7c\u6e38\u5f00\u4e86\uff0c\u9ca8\u9c7c\u8ffd\u9010\u5e76\u8bd5\u56fe\u6355"} +{"id": "7002012", "video_name": "970df9dd-f271-5593-bebf-d0c1972513c0", "text": "\u9713\u8679\u706f\u7167\u4eae\u8857\u9053\uff0c\u655e\u7bf7\u8f66\u91cc\u7684\u7537\u4eba\u9876\u7740\u655e\u5f00\u7684\u5929\u7a97\uff0c\u7a7f\u7740\u897f\u88c5\u62bd\u7740\u70df\uff0c\u5fae"} +{"id": "2004217", "video_name": "46da6e4b-24fc-5734-bcc6-91e3072403d3", "text": "\u76ae\u514b\u65af\u52a8\u753b\u4e2d\u7684\u7537\u5b69\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "0005783", "video_name": "2129eea7-728d-5ee6-b4a3-2db35c36ac7c", "text": "\u6765\u81ea\u4e00\u90e81970\u5e74\u7684\u827a\u672f\u7535\u5f71\u7684\u56fe\u50cf\u3002\u4e00\u4e2a\u7531\u767d\u5149\u5236\u6210\u7684\u8f6e\u5ed3\u6b63\u5728\u6ce8\u89c6\u7740\u6a59\u8272\u7684\u65e5\u843d\u3002"} +{"id": "3004959", "video_name": "6e2eb4a3-b22e-5e81-b028-61ab404b6bd5", "text": "\u4e24\u4e2a\u89d2\u6597\u58eb\u5728\u7f57\u9a6c\u7ade\u6280\u573a\u640f\u6597\uff0c\u4eba\u7fa4\u5c16\u53eb\u3002"} +{"id": "7004974", "video_name": "38571db4-2258-5ee2-baf6-460c7813f428", "text": "\u900f\u660e\u5851\u6599\u768490\u5e74\u4ee3\u7535\u5b50\u4ea7\u54c1\uff0c\u5e26\u6709\u86cb\u767d\u77f3\u8272\u7684\u4e73\u767d\u8272\u3002"} +{"id": "8002187", "video_name": "9ba6a343-91af-5fdb-bcdf-eb8e0afdbbb3", "text": "\u4e00\u5c81\u7684\u5b9d\u5b9d\u7a7f\u7740Pampers\u54c1\u724c\u7684\u5c3f\u7247\u8df3\u7740\u96be\u4ee5\u60f3\u8c61\u7684\u821e\u8e48\u52a8\u4f5c\u3002"} +{"id": "8001082", "video_name": "ea350d15-42fe-5743-895e-363eea87558c", "text": "\u9152\u5e97\u623f\u95f4\u91cc\u7684\u5e73\u5e95\u9505\uff0c\u7531Norm\u5efa\u7b51\u5e08\u8bbe\u8ba1\u7684\u73b0\u4ee3\u5317\u6b27\u9152\u5e97\u623f\u95f4\uff0c\u5168\u8eab\u8096\u50cf\uff0c\u98ce\u5316\u7684\u9762\u5b54"} +{"id": "0004552", "video_name": "0b1a29b3-bd6f-56a5-974a-99a19c5b51c9", "text": "\u9ed1\u767d\u7535\u5f71\u7684\u8bfa\u4e9a\u98ce\u683c\uff0c\u7ef4\u7f57\u5c3c\u5361\u00b7\u83b1\u514b\u5728\u5e8a\u4e0a\u5c55\u5f00\u7f8e\u4e3d\u7684\u53d1\u578b"} +{"id": "3004403", "video_name": "074aee8d-e228-5ff1-acd9-d2fc2a409b55", "text": "\u6211\u5728\u5317\u97d3\u751f\u5b58\u4e8624\u5c0f\u6642\uff1aMr Beast\u7684YouTube\u7e2e\u7565\u5716"} +{"id": "2004831", "video_name": "108e11f8-829b-566d-98dc-8ea084b9ff9c", "text": "\u5c55\u793a\u4ed6\u4eec\u7684\u5174\u594b\u548c\u6e34\u671b\u5f00\u59cb\u65c5\u7a0b\u3002\u4ee5\u5409\u535c\u529b\u7684\u98ce\u683c\u3002"} +{"id": "4004780", "video_name": "34f2e931-de33-50d1-a759-bedeb9ade8ba", "text": "\u4ece\u5c71\u4e0a\u5347\u8d77\u4e00\u675f\u660e\u4eae\u7684\u5149\u675f\u7684\u7535\u5f71\u822c\u6784\u56fe\uff0c\u9ad8\u5ea6\u7535\u5f71\u5316\uff0c\u8f9b\u70f7\u6e32\u67d3\uff0c\u5feb\u901f\u98de\u884c\u955c\u5934\u3002"} +{"id": "4003630", "video_name": "7d3afaf1-b7c9-54b2-aa42-252e66e06225", "text": "\u300a\u6307\u73af\u738b\u300b\u4e2d\u7684\u7cbe\u7075\u5973\u5b50\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\u7167\u8000\u5728\u5979\u4eec\u8eab\u4e0a\u3002"} +{"id": "3006855", "video_name": "7174554c-1c0d-5a61-9db7-66a0c845a3f4", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6d77\u4e0a\u6234\u7740\u592a\u9633\u773c\u955c\uff0c\u6447\u6446\u7740\u3002 \n\nSource sentence: I am looking for a good Chinese restaurant in this area, can you recommend one?"} +{"id": "2006746", "video_name": "3d3fa293-7380-5cc7-aaf5-6109d1439bae", "text": "\u89c6\u9891\u8bb0\u5f55\u4e86\u5730\u7403\u6838\u6218\u4e89\u540e\u7684\u6700\u540e4\u5206\u949f\u3002"} +{"id": "2003243", "video_name": "cf0fc82d-cdc0-5d2c-bd72-1ecda4c041c0", "text": "\u751f\u6210\u4e00\u4e2a\u4eba\u7c7b\u80ce\u513f\u5728\u7b2c\u4e94\u4e2a\u6708\u5b50\u5bab\u5185\u7684\u56fe\u50cf\uff0c\u5177\u6709\u6e05\u6670\u7684\u89e3\u5256\u7ec6\u8282\u3002\u91cd\u70b9\u5173\u6ce8\u9762\u90e8\u3001\u624b\u548c\u817f\u3002\u63d0\u4f9b"} +{"id": "7002421", "video_name": "99409c00-3e89-5bbc-9004-f9751fe3fa89", "text": "\u8840\u7ea2\u8272\u5929\u7a7a\u7684\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u4ee5 1980 \u5e74\u4ee3\u98ce\u683c\u7684\u7535\u5f71\u6e32\u67d3\u3002"} +{"id": "2005126", "video_name": "11f3db8f-6e65-59d3-a449-a5acab6b93b6", "text": "\u4e00\u4e2a\u6545\u4e8b\u9891\u9053\u7684YouTube\u6a2a\u5e45\u5e7f\u544a"} +{"id": "8002819", "video_name": "646f27b5-23ae-590d-bb8a-8ba592014761", "text": "\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u5b9e\u9a8c\u5ba4\u5916\u5957\uff0c\u547c\u5438\u7740\u3002"} +{"id": "7004582", "video_name": "858e179b-7f9a-5ade-b0df-e97e5401e93e", "text": "\u5728\u68ee\u6797\u7684\u4e2d\u5fc3\uff0c\u4e00\u7fa4\u591a\u6837\u5316\u7684\u52a8\u7269\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u5c55\u793a\u7740\u56e2\u7ed3\u548c\u8c26\u5351\u7684\u5feb\u4e50\u3002\u592a\u9633\u7167\u5728"} +{"id": "0004696", "video_name": "0d773380-c6fa-5840-bc1b-db7c8446d5c6", "text": "\u4e9a\u4f2f\u62c9\u7f55\u6574\u7406\u597d\u884c\u674e\uff0c\u5411\u5bb6\u4eba\u548c\u670b\u53cb\u544a\u522b\u3002\u4e0e\u59bb\u5b50\u6492\u62c9\u548c\u4f84\u5b50\u7f57\u5f97\u4e00\u8d77\uff0c\u4ed6\u8e0f\u4e0a\u4e86\u672a\u77e5"} +{"id": "1004877", "video_name": "5a1a310d-9d73-537a-9363-fc351c126647", "text": "\u5e8a\u4e0a\u7684\u5916\u661f\u4eba\uff0c\u573a\u666f\u5207\u6362\uff0c\u4e00\u67b6\u98de\u673a\u7a7f\u8fc7\u5929\u7a7a\u3002"} +{"id": "1003434", "video_name": "3f6be806-0740-51c1-9cd0-90cbacb094c1", "text": "\u62a4\u58eb\u8d70\u8fdb\u533b\u9662\u5730\u4e0b\u8d70\u5eca\uff0c\u5899\u4e0a\u7684\u706f\u5149\u66f4\u52a0\u660f\u6697\u3002\u770b\u7740\u4ed3\u5e93\u548c\u8bbe\u5907\u5e93\u623f\uff0c\u6c14\u6c1b"} +{"id": "6002645", "video_name": "d6a588cb-4e81-517f-8053-64e6e0d38abe", "text": "\u6709\u4eba\u5728\u73e0\u7a46\u6717\u746a\u5cf0\u4e0a\u6ed1\u96ea\uff0c\u624b\u62ff\u4e00\u6839\u8c37\u7269\u68d2\u3002\u4e00\u4eba\u89c6\u89d2\u3002"} +{"id": "0003352", "video_name": "3c06ac0d-082d-5c0a-97b2-ac5a44eaf05a", "text": "\u9ed1\u6697\u7684\u68ee\u6797\uff0c\u5730\u5e73\u7ebf\u4e0a\u662f\u4e00\u8f6e\u6ee1\u6708\uff0c\u54481920\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u98ce\u683c\uff0c\u68ee\u6797\u8fb9\u7f18\u6709\u4e00\u4e2a\u767d\u8272"} +{"id": "3006617", "video_name": "c6320c09-6e8b-517c-8e39-47ced5acef26", "text": "\u7231\u7740\u52a8\u7269\u957f\u8fbe\u6570\u79d2\u3002"} +{"id": "2004909", "video_name": "e5f874ae-8e49-53d9-b344-cf0c8687154c", "text": "\u5927\u536b\u00b7\u76d6\u5854\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "2005114", "video_name": "880d61fa-92a7-5b9e-a6f3-f4ce6cd2623c", "text": "\u5927\u8c61\u62ac\u8d77\u7279\u6717\u666e\uff0c\u8d85\u9ad8\u6e05\uff0c\u52a8\u6001\u4e09\u7ef4\u3002"} +{"id": "3005889", "video_name": "5c6046e7-10da-5106-a782-d7e6302a8a82", "text": "\u5e7f\u9614\u7684\u6c99\u6f20\u3002\u7f57\u831c\u548c\u5979\u7684\u65b0\u670b\u53cb\u9a86\u9a7c\u5361\u5c14\u7ad9\u5728\u4e00\u4e2a\u5e7f\u9614\u3001\u91d1\u8272\u7684\u6c99\u6f20\u8fb9\u7f18\uff0c\u5728"} +{"id": "1006138", "video_name": "707c8779-a71d-5d6c-9dfa-beb1fbbc6f42", "text": "\u80a1\u5e02\u89c6\u9891\u76c8\u5229\u548c\u8d22\u5bcc\u521b\u9020\u3002"} +{"id": "1004933", "video_name": "5b34ad18-ccc5-5181-b0d0-e54ec734814a", "text": "\u4e00\u540d\u4e13\u4e1a\u7684\u6447\u6eda\u9f13\u624b\u5728\u821e\u53f0\u4e0a\u4eab\u53d7\u9f13\u58f0\u3002"} +{"id": "8001752", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "\u5438\u5f15\u4eba\u7684\u5973\u670d\u52a1\u5458\u572850\u5e74\u4ee3\u9910\u5385\u4e0d\u505c\u5730\u5012\u7740\u5496\u5561\u3002"} +{"id": "7002458", "video_name": "090dbd39-f199-5675-9c28-9d7c927adb6d", "text": "\u5728\u9ed1\u6697\u7684\u5929\u4e3b\u6559\u5802\u91cc\uff0c\u67a2\u673a\u4e3b\u6559\u8d70\u5411\u4e86\u955c\u5934\u3002\u4ed6\u8d70\u5230\u4e86\u9ec4\u91d1\u9ab7\u9ac5\u524d\uff0c\u5411\u5b83\u97a0"} +{"id": "7002030", "video_name": "c2ccf99b-e8e1-5521-9347-9b837502f538", "text": "\u53f6\u6d77\u9f99\u548c\u6d77\u85fb\u878d\u4e3a\u4e00\u4f53\u3002"} +{"id": "7002053", "video_name": "8c65a74f-749f-5979-848f-3dd2f2d75a2b", "text": "\u6218\u4e89\u4e2d\u768440K\u6218\u9524\u592a\u7a7a\u6d77\u519b\u58eb\u5175\u3002"} +{"id": "0004086", "video_name": "02eaac19-3cb9-5357-a1b7-a3734e38c119", "text": "\u4e00\u8f86\u7531\u67e0\u6aac\u5236\u6210\u7684\u6c7d\u8f66\u6b63\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "1005290", "video_name": "613eeb39-1eb0-55fe-b5e3-e2209d4ecdff", "text": "\u4e09\u7ef4\u6e32\u67d3\u6a21\u578b\u4e2d\u7684\u7269\u4f53\uff0c\u6ee1\u8db3\u52a8\u753b\u9700\u6c42\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "8003509", "video_name": "5b125c3a-4f08-5fc3-900c-723b479a6c75", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u7ed8Kavin\u6240\u65c5\u884c\u7684\u795e\u79d8\u68ee\u6797\u7684\u8be6\u7ec6\u63cf\u8ff0\u3002\u6355\u6349\u9ad8\u8038\u7684\u6811\u6728\u3001\u5947\u5f02\u7684\u690d"} +{"id": "4004412", "video_name": "cc2814f2-fd1f-595f-91ca-f03ad2b74605", "text": "\u5728\u7f8e\u4e3d\u7684\u5927\u81ea\u7136\u65c1\u8fb9\u7684\u6c34\u6676\u6d77\u8fb9\u8ba9\u4e00\u4e2a\u7537\u4eba\u6829\u6829\u5982\u751f\u3002"} +{"id": "1006099", "video_name": "6fd4b547-b865-5504-84f2-85bbb94bc23b", "text": "\u4e00\u4e2a\u79cb\u5b63\u7684\u573a\u666f\u3002\u7167\u7247\u4e2d\u592e\u662f\u4e00\u4e2a\u5fae\u7b11\u7684\u5c0f\u5973\u5b69\u5750\u5728\u79cb\u5343\u4e0a\uff0c\u7528\u53cc\u624b\u7d27\u7d27\u6293\u4f4f\u7ef3\u5b50\uff0c"} +{"id": "3004428", "video_name": "7ff1841b-7162-5f19-9d07-9e79d94ffcaf", "text": "\u6c99\u6f20\u4e0a\u7684\u7537\u5b69\u4e3e\u8d77\u624b\u5728\u98ce\u4e2d\uff0c\u4e91\u6735\u72b9\u5982\u7535\u5f71\u822c\u3002"} +{"id": "5001185", "video_name": "b1a3eedc-8820-545a-8eb2-7396ec7c7d17", "text": "\u6709\u80e1\u987b\u7684\u7537\u4eba\u5728\u6e56\u8fb9\u8d70\u8def\u3002"} +{"id": "0003504", "video_name": "3eb35237-869f-5791-a029-d9dda0bccd25", "text": "\u7231\u60c5\u6545\u4e8b\u4e2d\u7684\u60c5\u4fa3\u6f2b\u6b65\uff0c\u73ab\u7470\u6447\u66f3\u3002"} +{"id": "2004773", "video_name": "3fc671f9-db70-5ac1-bffb-357786fbb7b5", "text": "\u673a\u5668\u5b66\u4e60\u3002\u4fe1\u606f\uff1a\u4e1b\u6797\u4e2d\u7684\u8f6f\u4ef6\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4004239", "video_name": "5ba5b4a4-fc9e-5b48-a47f-8ec3d5c12a46", "text": "Translation: \u8fd9\u662f\u4e2a\u661f\u7403\u7684\u65f6\u4ee3\uff1b\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "7003977", "video_name": "6a271aff-77e2-579c-8292-f902a45feb67", "text": "\u5f53\u8718\u86db\u5728\u57ce\u5e02\u4e2d\u6447\u6446\u65f6\uff0c\u4ed6\u9047\u5230\u4e86\u5404\u79cd\u6606\u866b\u670b\u53cb\uff0c\u4ed6\u4eec\u52a0\u5165\u4e86\u4ed6\u7684\u63a2\u9669\u961f\u3002\u6709\u5f69\u8272"} +{"id": "1005664", "video_name": "6809268f-188c-5b8a-855d-9bac704f599e", "text": "\u4e00\u5f20\u8d70\u8def\u50f5\u5c38\u7684\u63d2\u753b\uff0c\u5305\u542b\u5f69\u8272\u548c\u9ed1\u8272\u8f6e\u5ed3\u7ebf\u3002"} +{"id": "4003885", "video_name": "85e681ec-3a4e-5a27-832c-9fac02b4cf05", "text": "\u4e09\u4e2a\u670b\u53cb\uff08\u4e00\u4e2a\u7537\u5b69\uff0c\u4e24\u4e2a\u5973\u5b69\uff09\u5728\u591c\u665a\u5230\u8fbe\u6df1\u6797\u4e2d\u5fc3\u7684\u7535\u5f71\u822c\u666f\u8c61\u3002"} +{"id": "2006974", "video_name": "3729249a-4455-55b3-b6b3-ea1b576fd5f1", "text": "20\u5e74\u5185\u5c06\u51b0\u5c9b\u79fb\u52a8\u4ee5\u586b\u8865\u4ece\u592a\u7a7a\u4e2d\u770b\u5230\u7684\u6d77\u6d0b\u95f4\u7684\u7a7a\u767d\u3002"} +{"id": "0004202", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "\u718a\u732b\u592b\u5987\u5728\u7af9\u6797\u91cc\u4e0e\u677e\u9f20\u3001\u5c0f\u72d0\u72f8\u3001\u5c0f\u6d63\u718a\u3001\u5c0f\u9e7f\u548c\u4e91\u96c0\u4e00\u8d77"} +{"id": "2005207", "video_name": "ca6a3014-9356-5238-909b-6caa56d2cb0b", "text": "\u89c6\u9891\u5e94\u8be5\u653e\u5927\uff0c\u6709\u5927\u96e8\u548c\u95ea\u7535\uff0c\u4e3b\u9898\u5e94\u8be5\u662f\u6050\u6016\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "3006035", "video_name": "3a0c32a0-e6e2-534b-951f-4033d0d8cef3", "text": "\u5de8\u4eba\u9e70\u5728\u5927\u6d77\u4e0a\u7ff1\u7fd4\uff0c\u6709\u7740\u6258\u5c14\u91d1\u5f0f\u7684\u5e7b\u60f3\u98ce\u683c\u3002"} +{"id": "3004718", "video_name": "f5ea7f2a-f496-5a85-8c80-73f1c96d831a", "text": "\u8bbe\u8ba1\u4e00\u5e45\u63cf\u7ed8\u201c\u5904\u7406\u6587\u5316\u201d\u7684\u63d2\u56fe\u3002\u63cf\u7ed8\u8fc7\u5ea6\u4f7f\u7528\u548c\u4e0d\u8d1f\u8d23\u4efb\u7684\u5783\u573e\u503e\u5012\u5bfc\u81f4\u5783\u573e\u548c"} +{"id": "4004134", "video_name": "36ffd33a-479e-5575-8f4b-f9c0a36498dc", "text": "\u521b\u4f5c\u4e86\u201c\u4e09\u82f1\u5c3a\u79bb\u9ec4\u91d1\u53ea\u6709\u4e00\u6b65\u201d\u6e38\u620f\u7684\u6807\u5fd7\u3002"} +{"id": "7002260", "video_name": "79522cd1-8766-5d64-b4da-726cf4cc323d", "text": "\u5564\u9152\u8282\u3002\u4fe1\u606f\uff1aczuxik\u3002 (Font: \u73b0\u4ee3)"} +{"id": "3004320", "video_name": "bc0e0afe-dd6a-5434-b571-7f1f6545e0a7", "text": "\u8fd9\u4e2a\u8c6a\u5b85\u7684\u827a\u672f\u5f62\u8c61\u56e0\u9b3c\u9b45\u7684\u5370\u8bb0\u548c\u602a\u5f02\u7684\u7b26\u53f7\u88ab\u523b\u5728\u5899\u58c1\u4e0a\u800c\u5931\u53bb\u5b83\u539f\u6709\u7684\u5efa"} +{"id": "4002867", "video_name": "4238786e-ef03-56a1-8cbf-0ee4ebd7a024", "text": "\u4ed9\u5973\u98de\u821e\u7684\u5206\u5b50\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u539f\u59cb\u7167\u7247\u3002"} +{"id": "8003724", "video_name": "3780cc2b-7bc9-5d0c-a1e9-def498de862f", "text": "\u5728\u4e00\u4e2a\u900f\u660e\u76843D\u4eba\u4f53\u5185\u5c55\u793a\u98df\u7269\u7ecf\u8fc7\u4f60\u7684\u8eab\u4f53\u3002"} +{"id": "1005147", "video_name": "5ed6e018-1ff7-5ade-92f2-1a44e84cab52", "text": "\u4e00\u4e2a\u80cc\u7740\u6ee1\u6ee1\u5f39\u836f\u5305\u7684\u7537\u5b69\u3002"} +{"id": "1004884", "video_name": "5a4e1339-cfd5-59cd-b5d9-0ee627641968", "text": "\u4e00\u4e2a\u5e26\u80e1\u987b\u3001\u7a7f\u7740\u8fde\u5e3d\u886b\u3001\u76ae\u80a4\u767d\u7699\u7684\u5370\u5ea6\u7537\u5b69\uff0c\u7ad9\u5728\u5bbf\u820d\u8d70\u5eca\u91cc\u3002\u4ed6\u6253\u5f00"} +{"id": "3005602", "video_name": "5527af91-8c5d-5ccc-986b-77db6b1b9ef7", "text": "\u706d\u9738\u88ab\u94a2\u94c1\u4fa0\u6740\u6b7b\uff0c\u662f\u6700\u957f\u7684\u7535\u5f71\u6548\u679c\u3002"} +{"id": "7004867", "video_name": "02cc9bc5-b28e-5af5-926c-39e1f12aced8", "text": "\u5feb\u4e50\u5b66\u4e60\uff0c\u5b57\u6bcd\u548c\u6570\u5b57\u98d8\u843d\u3002"} +{"id": "2003736", "video_name": "47be6c9c-0810-5b7b-a684-dbd85059e3c8", "text": "\u672a\u6765\u4e3b\u4e49\u8d85\u7ea7\u82f1\u96c4\u5728\u6570\u5b57\u8425\u9500\u4e0a\u62ef\u6551\u4e16\u754c\u3002"} +{"id": "3004939", "video_name": "fbd2ac11-8794-5b37-ab62-663b02e733fa", "text": "\u672a\u6765\u4e3b\u4e49\u5b87\u5b99\u98de\u8239\u5728\u591a\u4e91\u7684\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u4f34\u968f\u96f7\u58f0\u3001\u96e8\u548c\u5f3a\u98ce\uff0c\u52a8\u6001\u53d8\u5316\u3002"} +{"id": "1005630", "video_name": "67836ead-86a7-52b3-9680-51d788f91b09", "text": "\u5927\u7406\u753b\u4f5c\u54c1\u6829\u6829\u5982\u751f\uff0c\u989c\u6599\u6ef4\u843d\u3002"} +{"id": "3005745", "video_name": "280b58eb-7a2b-5db6-b6e9-4fdd5bef56e1", "text": "\u57ce\u90ca\u5916\u7684\u623f\u5b50\uff0c\u665a\u4e0a\u3002\u6e29\u99a8\u7684\u51ac\u5929\u573a\u666f\uff0c\u96ea\u82b1\u98d8\u843d\u3002\u5f53\u6211\u4eec\u653e\u5927\u955c\u5934\u8fdb\u5165\u7a97\u6237\u65f6\uff0c\u7a97\u6237"} +{"id": "3006914", "video_name": "e18337df-0c34-5a52-842c-7be70342db42", "text": "\u5fb7\u53e4\u62c9\u4f2f\u7235\u559d\u8461\u8404\u9152\u5403\u96de\u8089\u3002"} +{"id": "6004906", "video_name": "a1da8192-dd4b-5d0e-a85b-b9fe9022b41a", "text": "\u5c0f\u8c61\u540d\u53eb\u827e\u8389\uff0c\u6709\u5149\u6cfd\u7684\u3001\u5f69\u8272\u7684\u77f3\u5934\u3002"} +{"id": "1003520", "video_name": "40f6ff12-5b2f-58ee-9599-2915ab9ef72c", "text": "\u4ece\u76f4\u5347\u673a\u4e0a\u770b\u5230\u7684\u7c98\u7a20\u7684\u7d2b\u8272\u6d77\u6d0b\u3002"} +{"id": "1003527", "video_name": "41061e7f-335f-51d2-b5b8-f1d23b681bed", "text": "\u62c9\u59c6\uff0c\u957f\u5b50\uff0c\u56e0\u5176\u6b63\u4e49\u3001\u5584\u826f\u548c\u575a\u5b9a\u7684\u804c\u8d23\u611f\u800c\u95fb\u540d\u3002"} +{"id": "2006605", "video_name": "4fb8b215-8da6-5d78-9567-d81ae8fc118b", "text": "\u963f\u52aa\uff0c\u4f17\u795e\u4e4b\u7236\uff0c\u7edf\u6cbb\u7740\u5929\u5bab\u3002\u4f17\u795e\u4e4b\u738b\u3002"} +{"id": "1003445", "video_name": "3fe4ccdb-4f3a-5a3b-87a7-4b83a826aea2", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u72d0\u72f8\u5728\u7a7a\u8361\u7684\u68ee\u6797\u91cc\u8d70\u8def\u3002"} +{"id": "6003652", "video_name": "1dd42be0-83e1-5841-86c6-7c1e01ea18be", "text": "\u975e\u5e38\u53ef\u7231\u7684\u5c0f\u548c\u5c1a\u6d3b\u6cfc\u5730\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "6002615", "video_name": "a66782b0-846f-5085-91fa-c94c0c63a09f", "text": "3D\u52a8\u753b\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u8003\u53e4\u5b66\u5bb6\u8096\u50cf\uff0c\u63a2\u7d22\u4ee5\u8272\u5217\u795e\u79d8\u6316\u6398\u3002\u903c\u771f\u800c\u4e30"} +{"id": "0003390", "video_name": "3cb061b1-f773-5feb-81c8-a5c6bf291401", "text": "\u542c\u5230\u4ed6\u75af\u72c2\u7684\u547c\u558a\u58f0\uff0c\u6751\u6c11\u4eec\u653e\u4e0b\u624b\u5934\u7684\u4e8b\u60c5\uff0c\u51b2\u5411\u7530\u5730\u5bfb\u6c42\u5e2e\u52a9\u3002\u4f46\u5f53\u4ed6\u4eec\u5230\u8fbe\u65f6\uff0c"} +{"id": "4003548", "video_name": "fc70c966-cfb3-599b-983b-79f839941e77", "text": "\u4e24\u4e2a\u7a7f\u7740\u9ec4\u8272\u5939\u514b\u7684\u7537\u4eba\u6b63\u5728\u4ea4\u6d41\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "4003834", "video_name": "defc9f80-961a-5e0c-84e8-662eb812d6bb", "text": "\u4f17\u5723\u67e5\u5c14\u65af\u9a91\u58eb\u961f\uff0cIzzy\u975e\u5e38\u7f8e\u4e3d\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8002246", "video_name": "8a09f64d-9437-5e86-975f-8643ee036f8d", "text": "\u4e00\u53ea\u732b\u5728\u52a0\u5229\u798f\u5c3c\u4e9a\u627e\u5230\u7684\u9cc4\u68a8\u58f3\u91cc\u5403\u4e1c\u897f\u3002"} +{"id": "4003677", "video_name": "dca2f7e9-3563-52de-9117-866330696422", "text": "\u751f\u6210\u4e00\u5f20\u4f7f\u7528\u65e0\u4eba\u548c\u5468\u661f\u9a70\u7684\u56fe\u7247\u3002"} +{"id": "2007311", "video_name": "b70a3b7b-1c36-51dc-b4a0-e45cdd06a8a1", "text": "\u4e00\u4e2a\u6234\u7740\u975e\u6d32\u53d1\u578b\u7684\u5c0f\u5973\u5b69\u7684\u60f3\u8c61\u56fe\u3002"} +{"id": "0003804", "video_name": "43c895a6-93fc-5543-9673-d5c8cf341f5f", "text": "\u53ef\u7231\u7684\u60c5\u4fa3\u624b\u7275\u624b\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "1003455", "video_name": "3ff86b0b-37c1-55ca-810d-9e5b110822de", "text": "\u4e00\u9897\u661f\u661f\u5728\u591c\u665a\u7684\u5c71\u4e0a\uff0c\u7f29\u5c0f\u955c\u5934\uff0c\u4f4e\u901f\u79fb\u52a8\u3002"} +{"id": "7004291", "video_name": "f808cd92-5993-575b-974c-4673e18e7681", "text": "\u8d27\u67dc\u6389\u843d\u3001\u6447\u6643\u5e76\u649e\u4e0a\u4e865\u8f86\u6c7d\u8f66\u3002"} +{"id": "8002390", "video_name": "8b4c7aee-96ba-52b9-9855-08eb24181b75", "text": "\u5728\u97f3\u4e50\u7684\u4f34\u594f\u4e0b\uff0c\u6885\u8d5b\u5fb7\u65af\u884c\u9a76\u5728\u963f\u5fb7\u52d2\u7684\u8857\u9053\u4e0a\uff0c\u753b\u8d28\u9ad8\u6e05\u7684\u89c6\u9891\u3002 \n\nSource sentence: The new"} +{"id": "8001384", "video_name": "27601337-779c-5baf-9182-8aecc89806e1", "text": "\u5929\u4e0a\u6b63\u5728\u4e0b\u7eb8\u949e\uff0c\u5927\u5bb6\u6b22\u5e86\u3002"} +{"id": "6002391", "video_name": "6c0265dc-4c47-5f44-9918-5d973efcce7f", "text": "\u4e09\u53ea\u732b\u5728\u65e5\u843d\u65f6\u6563\u6b65\uff0c\u57ce\u5e02\u666f\u89c2\uff0c\u8d85\u5e7f\u89d2\u955c\u5934\uff0c\u7531\u5de6\u5411\u53f3\u5e73\u79fb\uff0c\u7531\u5de6\u5411\u53f3\u65cb\u8f6c\uff0c\u6709\u53ea\u732b\u56de\u5934\u770b"} +{"id": "5001457", "video_name": "930cec12-82a7-5cc0-8a0a-fc0d851e19f8", "text": "\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u5728\u591c\u665a\u7684\u706f\u5149\u548c\u6280\u672f\u4e0b\uff0c\u5448\u73b0\u51fa\u5e7f\u89d2\u7535\u5f71\u822c\u7684\u666f\u8c61\u3002\u4fe1\u606f\uff1a\u6f02\u767d\u5a92\u4f53\uff08\u5b57\u4f53\uff1a"} +{"id": "6003819", "video_name": "7d6c5d4d-6813-56be-8371-7bf5749a7e14", "text": "M\u5b57\u6bcd\u4ece\u57ce\u5e02\u5929\u9645\u7ebf\u4e0a\u53d8\u5f62\u800c\u6765\u3002"} +{"id": "5001844", "video_name": "6aa2a6ff-24d5-52a6-93a8-2d1a9122daa2", "text": "\u7eff\u8272\u7684\u7ebf\u56e2\u3002\u7ebf\u5934\u7f13\u6162\u5730\u5f00\u59cb\u79fb\u52a8\uff0c\u4ece\u7ebf\u56e2\u6cbf\u7740\u684c\u5b50\u671d\u5411\u91d1\u5c5e\u94a9\u5b50\u79fb\u52a8\u3002\u7ebf\u50cf\u88ab\u65e0\u5f62\u529b"} +{"id": "1006824", "video_name": "7cd6d6ff-384f-5aa4-8f7a-747150195efa", "text": "\u60c5\u611f\u544a\u522b\uff1a\u5728\u706b\u8f66\u7ad9\u4e0a\uff0c\u8428\u62c9\u548c\u8a79\u59c6\u65af\u7d27\u7d27\u5730\u62e5\u62b1\u7740\uff0c\u773c\u542b\u6cea\u6c34\uff0c\u9762\u5bf9\u5206\u522b\u7684\u75db\u82e6"} +{"id": "3003554", "video_name": "04e21380-67b3-57ca-b143-b060c1c7ce1a", "text": "\u57ce\u5e02\u98ce\u666f\u7684\u63d2\u56fe\uff0c\u91c7\u7528yoh nagao\u7684\u98ce\u683c\uff0c\u751f\u52a8\u7684\u9152\u9986\u573a\u666f\uff0c\u6237\u5916\u73af\u5883\uff0c\u4ee5\u9ec4\u8272\u548c\u7c89\u8272\u4e3a\u4e3b\u8272"} +{"id": "8001632", "video_name": "856119aa-c4e2-5da9-ba16-0bdf597ddb05", "text": "\u4e00\u540d\u5b87\u822a\u5458\u8db4\u5728\u592a\u7a7a\u98de\u8239\u4e0a\uff0c\u88ab\u7ef3\u7d22\u56fa\u5b9a\u7761\u89c9\u3002"} +{"id": "8002686", "video_name": "3c89e808-2a64-5482-9bcb-cb74047fe50f", "text": "\u8fd9\u4e9b\u4eba\u90fd\u5728\u5f7c\u6b64\u5fae\u7b11\u4ea4\u8c08\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006269", "video_name": "ae236c23-bf65-5522-bae1-b6ebb70bf44a", "text": "\u73bb\u7483\u676f\u8fc5\u901f\u6ce8\u6ee1\u9152\u7cbe\uff0c\u7136\u540e\u6ea2\u51fa\u7684\u52a8\u753b\u3002 \n\nSource sentence: The meeting has been postponed until next Monday due to scheduling conflicts. \n\n\u7531\u4e8e\u65f6\u95f4\u5b89"} +{"id": "3005783", "video_name": "b1854db2-082f-50bf-89d9-6f30078b23e8", "text": "\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\uff0c\u5728\u7eff\u8349\u4e1b\u751f\u7684\u68ee\u6797\u91cc\uff0c\u51fa\u73b0\u4e86\u771f\u5b9e\u7684\u5999\u86d9\u79cd\u5b50\u3002"} +{"id": "0004938", "video_name": "11dd29c8-5f32-5da2-b5d8-18d56237738d", "text": "Capybara \u548c\u9e2d\u5b50\u5728\u6d74\u7f38\u91cc\u6e38\u6cf3\u3002"} +{"id": "4002330", "video_name": "a0a102bb-5b45-5048-ab5e-cd91481fffad", "text": "\u91ce\u5916\u7684\u7f8e\u4e3d\u730e\u8c79\u955c\u5934\uff0c\u5f3a\u8c03\u5b83\u4eec\u7684\u529b\u91cf\u548c\u4f18\u96c5\u3002"} +{"id": "1006191", "video_name": "71630a04-a068-5c30-831d-f5bed2c9d5b7", "text": "\u76ae\u5361\u4e18\u6b63\u5728\u6d77\u6d0b\u4e0a\u5ea6\u5047\uff0c\u8df3\u4e866\u5343\u6b21\u3002"} +{"id": "1003365", "video_name": "3df1f801-b781-5916-b1ba-c0ffbd0fe210", "text": "\u7d2b\u7f57\u5170\u6c34\u6676\u73e0\u6ef4\u843d\u5728\u7cd6\u679c\u5c4b\u4e0a\u3002"} +{"id": "1003350", "video_name": "3db3c0c2-8dea-539e-8b3a-40ba560ad760", "text": "\u94f6\u6cb3\u4e2d\u7684\u6df7\u4e71\uff0c\u884c\u661f\u76f8\u4e92\u78b0\u649e\uff0c"} +{"id": "8003372", "video_name": "6e057562-e94a-5602-b22e-5643f90eb254", "text": "\u4e00\u53f0\u5728\u5b8c\u5168\u7ea2\u8272\u53a8\u623f\u91cc\u7206\u70b8\u7684\u5496\u5561\u673a"} +{"id": "1006971", "video_name": "7f9c9024-d0cb-5ff0-ab06-8a9262ee62e2", "text": "\u52a8\u7269\u4eec\u5728\u8349\u539f\u4e0a\u7ec8\u4e8e\u8fce\u6765\u96e8\u5b63\u65f6\u7684\u6b22\u4e50\u5e86\u795d\u3002"} +{"id": "5001525", "video_name": "6a1d651e-9884-5c2c-a7f8-3e67d033610e", "text": "\u4e54\u5e0c\u00b7\u51ef\u5229\u5750\u5728\u7194\u5ca9\u738b\u5ea7\u4e0a\uff0c\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u5750\u5728\u73bb\u7483\u738b\u5ea7\u4e0a\u3002"} +{"id": "3006467", "video_name": "0d0c8049-3d14-54ed-bc78-4cbd52aa2f8e", "text": "\u5c0f\u5b69\u5c71\u59c6\u5728\u6574\u4e2a\u9547\u4e0a\u7684\u773c\u4e2d\u6210\u4e3a\u4e86\u771f\u6b63\u7684\u51a0\u519b\u3002"} +{"id": "1006679", "video_name": "7a6ebbfd-07b8-52b8-803f-f9688792d3aa", "text": "\u706b\u5f71\u5fcd\u8005\u3001\u94a2\u94c1\u4fa0\u3001\u91d1\u53d1\u78a7\u773c\u3001\u96f7\u7535\u98ce\u66b4\u3002"} +{"id": "3003888", "video_name": "abacfcea-e20e-5c78-a349-4756b8049eec", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u58eb\u5728\u6c99\u53d1\u4e0a\u5fae\u7b11\u7740\u6253\u5b57\uff0c\u5979\u8eab\u8fb9\u6709\u4e00\u676f\u5496\u5561\u3002"} +{"id": "2004812", "video_name": "5b88ab74-b26b-53a3-ab19-4ff0838cb13d", "text": "\u6838\u7535\u7ad9\u8b66\u62a5\u54cd\u8d77\uff0c\u7ea2\u8272\u95ea\u5149\uff0c\u4f4d\u4e8e\u95e8\u53e3\u4e0a\u65b9\u53d1\u5149\u7684\u7ea2\u8272\u51fa\u53e3\u6807\u5fd7\u65c1\uff0c\u6574\u4e2a\u5efa\u7b51\u7269\u5185\u7684\u706f\u5149"} +{"id": "6004788", "video_name": "9204fe1f-1079-5496-bdf5-bc9f94e5a36f", "text": "\u4e00\u8f86\u7eff\u677e\u77f3\u8272\u7684\u5170\u535a\u57fa\u5c3cUrus\u5728\u8d5b\u9053\u4e0a\u7ade\u4e89\uff0c\u5e76\u8d85\u8d8a\u4e86\u4e00\u8f86\u7eff\u677e\u77f3\u8272\u7684\u5170\u535a\u57fa"} +{"id": "3004106", "video_name": "51bc1c36-7ad8-5bf7-99d4-a2ffd2ae83fa", "text": "\u8fd0\u52a8\u7684\u6301\u7eed\u65f6\u95f4\u4e3a5\u79d2\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "3005109", "video_name": "53b6c186-b0e4-55ac-a813-5288c4d3500e", "text": "\u521b\u9020\u68a6\u5e7b\u98ce\u683c\u7684\u91d1\u5948\u9ad8\u7b49\u6cd5\u9662"} +{"id": "7003368", "video_name": "80e353a2-770b-55f6-8369-0e2c6d01035c", "text": "\u975e\u6d32\u7537\u5b50\u5f39\u5409\u4ed6\u5531\u7740\u60b2\u4f24\u7684\u6b4c\u66f2\u5728\u57ce\u9547\u4e0a\u6f2b\u6b65\uff0c\u50cfGTA\u98ce\u683c\u3002"} +{"id": "1005315", "video_name": "61971576-bfd4-5daf-b717-38878810943c", "text": "\u4e00\u4e2a\u7537\u5b69\u6162\u6162\u5730\u7741\u5f00\u4ed6\u7684\u773c\u775b\u5728\u52a8\u753b\u4e2d\u3002"} +{"id": "0005839", "video_name": "220a1d26-12ca-5cf7-b253-c8837b0e2865", "text": "\u6587\u827a\u590d\u5174\u65f6\u671f\u5e74\u8f7b\u7537\u5b50\u7684\u5168\u8eab\u8096\u50cf\uff0c\u8868\u60c5\u4e30\u5bcc\uff0c\u5b8c\u7f8e\u5bb9\u989c\uff0c\u80e1\u987b\uff0c\u68a6\u5e7b\u666f\u8272\uff0c\u6781\u5177\u771f"} +{"id": "4003637", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "\u673a\u5668\u4eba\u5750\u5728\u738b\u5ea7\u4e0a\uff0c\u5c55\u73b0\u51fa\u7edf\u6cbb\u548c\u5c0a\u656c\u7684\u6c14\u52bf\u3002"} +{"id": "6002171", "video_name": "3ba3473e-d287-5726-8335-cec4d1a2fef9", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u6162\u6162\u5730\u6325\u624b\uff0c\u7728\u773c\uff0c\u8d70\u7740\uff0c\u8bf4\u518d\u89c1\u3002"} +{"id": "0004066", "video_name": "02b08029-5b64-52df-9506-16a346c69468", "text": "\u68ee\u6797\u3001\u96e8\u3001\u65e9\u6668\u3002\u4fe1\u606f\uff1aAKIPRESS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3003473", "video_name": "6e610eb5-d291-5041-b9e0-b8b45d10b938", "text": "\u5728\u7f42\u7c9f\u82b1\u7530\u91cc\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u629a\u6478\u7740\u4e00\u5934\u725b\u3002"} +{"id": "2007239", "video_name": "41df4201-eabb-5b14-a5e6-4d675105b1d2", "text": "\u6709\u4e00\u6b21\u63d0\u5230\uff0c\u4e00\u4f4d\u88c1\u7f1d\u5750\u5728\u4ed6\u7684\u5e97\u91cc\u7f1d\u8863\u670d\u3002"} +{"id": "6004714", "video_name": "704b3674-073c-5617-8799-87427100f3b9", "text": "\u5929\u7a7a\u6709\u5f88\u591a\u4e91\u3002\u4fe1\u606f\uff1aLesly\u3002"} +{"id": "1004703", "video_name": "575f674b-d3f3-5953-850d-7fb11933f218", "text": "\u5728\u4e1b\u6797\u4e2d\u62cd\u6444\u5de8\u578b\u751f\u7269\u884c\u8d70\uff0c\u76f8\u673a\u8fdb\u884c\u653e\u5927\u548c\u805a\u7126\uff0c\u7136\u540e\u8ddf\u968f\u5de8\u578b\u751f\u7269\uff0c\u5b9e\u73b0\u903c\u771f\u4e0d\u5931\u771f"} +{"id": "8003091", "video_name": "7d8396b0-0c7b-5c0b-b6ea-615c5580a034", "text": "1890\u5e74\uff0c\u79d1\u5b66\u5bb6\u4eec\u7814\u7a76\u7535\u52a8\u673a\u3002"} +{"id": "0004657", "video_name": "0cc4a9d7-7186-5952-b262-8f30399bb76a", "text": "5\u540d\u56e2\u961f\u6210\u5458\u6b63\u5728\u8fdb\u884c\u8f6f\u4ef6\u751f\u4ea7\u3002"} +{"id": "2003092", "video_name": "73d309bc-66f2-5f09-860f-b4f0277df146", "text": "\u4e9a\u6d32\u6a21\u7279\u8eab\u7a7f\u767d\u8272\u6a59\u8272\u67d3\u8272\u8fde\u8863\u88d9\uff0c\u5728\u4e9a\u5386\u5c71\u5927\u00b7\u9ea6\u6606\u7684\u4e1d\u7ef8\u6c34\u6bcd\u73bb\u7483"} +{"id": "8001072", "video_name": "88359ec5-4103-5cfa-b1a3-63d73154ec83", "text": "\u5929\u4f7f\u7fc5\u8180\u5c55\u5f00\uff0c\u5361\u901a\u98ce\u683c\uff0c\u4ece\u7fc5\u8180\u7684\u89d2\u5ea6\u89c2\u770b\uff0c\u767d\u8272\u7fc5\u8180\u3002"} +{"id": "2007780", "video_name": "b1d86474-5c51-5025-9341-9b4963933311", "text": "\u7315\u7334\u6843\u52a8\u753b\u4e92\u76f8\u8bf4\u8bdd\u3002"} +{"id": "1004391", "video_name": "51284efa-25a8-5632-bfe3-7a614bee0629", "text": "Pastel\u7c89\u7b14\u753b\uff0c\u56e2\u4f53\u7167\u7247\uff0c2\u4e2a\u59d0\u59b9\u3002"} +{"id": "0003063", "video_name": "36598de4-609f-51e1-ada0-1b13d0370482", "text": "\u751f\u6210\u4e00\u5f20\u4f20\u7edf\u670d\u9970\u4e0b\u3001\u624b\u6301\u5251\u6216\u77db\u3001\u5a01\u6b66\u52c7\u731b\u7684\u66fc\u5c3c\u666e\u5c14\u6885\u6cf0\u65cf\u6218\u58eb\u7684\u5f62"} +{"id": "1006011", "video_name": "6e7458af-9792-5e86-b7ae-10d93f4d0892", "text": "\u4ed6\u4eec\u5728\u540d\u4eba\u5802\u4eea\u5f0f\u7684\u821e\u53f0\u4e0a\u63e1\u624b\uff0c\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u6234\u7740\u516d\u679a\u51a0\u519b\u6212\u6307\uff0c\u4e0e\u8fc8"} +{"id": "8001844", "video_name": "9ce9f1ad-fd6c-5bc9-be77-9c11042051d8", "text": "\u7f8e\u4e3d\u6c60\u5858\u4e2d\u7684\u9e2d\u5b50 3D 8K"} +{"id": "5001642", "video_name": "d6f62282-5258-5024-ad7c-34bb5eef0f7b", "text": "\u54c8\u5229\u6ce2\u7279\u6d3e\u5bf9\uff0c\u5564\u9152\uff0c\u8df3\u821e\uff0c3D\uff0c\u903c\u771f\uff0c\u970d\u683c\u6c83\u8328\u3002"} +{"id": "1006794", "video_name": "7c74496f-060e-5d02-8fbe-c30a402c7454", "text": "\u9ec4\u8272\u96e8\u8863\u91cc\u7684\u5c01\u53e3\u5728\u96e8\u4e2d\u98a4\u52a8\u3002"} +{"id": "1005897", "video_name": "6c76cab3-5b85-5283-a3b1-d8b2bb3871b0", "text": "\u6545\u4e8b\u4e66\uff0c\u9875\u6570\u5f88\u591a\uff0c\u5199\u6545\u4e8b\u4e66\u3002"} +{"id": "7002385", "video_name": "4828ba5a-ef58-5908-8625-9f473846f9e0", "text": "\u82ad\u6bd4\u5a03\u5a03\u5750\u5728\u5496\u5561\u9986\u7684\u6905\u5b50\u4e0a\u559d\u5496\u5561\uff0c\u54c1\u8d28\u4e0d\u9519\u3002"} +{"id": "0006535", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "\u706b\u5f71\u5fcd\u8005\u4e2d\uff0c\u6f29\u6da1\u9e23\u4eba\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u89d2\u8272\u3002"} +{"id": "2005138", "video_name": "d1903b41-7b88-5e7a-898d-139954842fbc", "text": "\u4e24\u53ea\u718a\u732b\u5728\u6708\u7403\u4e0a\u8d70\u8def\u3002"} +{"id": "0003236", "video_name": "39c820f1-88a8-5eea-a6ab-1118ac1b0651", "text": "\u201c\u542c\u4e86\u519c\u6c11\u7684\u8bdd\u540e\uff0c\u6e7f\u5a46\u795e\u5fae\u5fae\u4e00\u7b11\uff0c\u8bf4\u9053\uff1a\u2018\u4f60\u600e\u4e48\u80fd\u5982\u6b64\u81ea\u4fe1\u5730\u8bf4\u4eca\u665a\u4f1a\u4e0b\u96e8\u5462\uff1f\u4f60\u662f\u4e2a"} +{"id": "2006646", "video_name": "deed8beb-90e3-5a4b-a2e7-befe9f1d2485", "text": "\u5c06\u753b\u9762\u653e\u5927\u81f3\u4e2d\u5fc3\u3002"} +{"id": "0003846", "video_name": "447d8a1e-073e-5a30-8d7a-7d710c769310", "text": "\u7f8e\u4e3d\u7684\u51ef\u5c14\u7279\u6218\u58eb\u5973\u6027\uff0c\u84dd\u773c\u775b\u548c\u957f\u53d1\uff0c\u6df1\u91d1\u53d1\u8272\uff0c\u77f3\u5934\u5e9f\u589f\uff0c\u9ad8\u6311\u4fee\u957f\uff0c\u6d41\u52a8\u7684"} +{"id": "3003922", "video_name": "73cd0c51-ccab-5794-8a2d-2632dd68af1f", "text": "\u5c3c\u6851\u7eb3\u74e6\u62c9\uff0c\u4fc4\u7f57\u65af\u724c\u7167M374AB777\u3002"} +{"id": "5001370", "video_name": "a789791f-4882-5d3b-88ec-3f82af435279", "text": "\u8f7b\u753b\uff0c\u7f8e\u4e3d\u5973\u5b69\u7ad9\u5728\u6d77\u8fb9\u3002\u8f7b\u76c8\u7684\u767d\u8272\u793c\u670d\uff0c\u624b\u62ff\u7740\u50cf\u767d\u8272\u5170\u82b1\u7684\u6811\u679d\u3002\u95ea"} +{"id": "1006813", "video_name": "7cafad0f-6255-5822-a123-73811d2694c5", "text": "\u4e00\u5e45\u6f2b\u753b\u5f0f\u7684\u8096\u50cf\u753b\uff0c\u753b\u7740\u4e00\u4e2a\u8d64\u88f8\u4e0a\u8eab\u7684\u7537\u4eba\uff0c\u50cf\u8d85\u4eba\u4e00\u6837\uff0c\u53cc\u81c2\u6298\u53e0\uff0c\u8c61\u5f81\u7740\u529b\u91cf\u548c"} +{"id": "5001052", "video_name": "c47cdc33-2e13-5061-8b61-144eeeb286fd", "text": "\u521b\u9020\u573a\u666f\uff0c\u8ba9\u72ee\u5b50\u738b\u5229\u5965\u4e0e\u8f9b\u5df4\u5206\u4eab\u6709\u5173\u4e1b\u6797\u3001\u6bcd\u72ee\u548c\u4ed6\u4eec\u90e8\u843d\u7684\u4f20\u7edf\u7684\u6545\u4e8b\u3002"} +{"id": "4002765", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "\u8001\u5f0f\u7684\u573a\u666f\uff0c\u8fdc\u5904\u6709\u623f\u5b50\u3002\u4fe1\u606f\uff1a\u666e\u9c81\u4ec0\u66fc\u8fbe\u5c14\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1006844", "video_name": "7d198c74-a51e-5304-b7ad-2d003d689ccf", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u91d1\u5b57\u5854\u65c1\u8fb9\u3002"} +{"id": "3005971", "video_name": "0796ff0a-4a9e-5d17-9cd1-6ddd78651d27", "text": "\u4e09\u4e2a\u4eba\u88ab\u9501\u94fe\u62f4\u5728\u76d1\u72f1\u4e2d\uff0c\u65f6\u95f4\u662f\u516c\u5143\u96f6\u5e74\uff0c\u955c\u5934\u5728\u524d\u65b9\uff0c\u9762\u5b54\u65e0\u6cd5\u8fa8\u8ba4\u3002"} +{"id": "2004224", "video_name": "1a92f769-d78c-5cbf-8c1f-82e1e5c229cb", "text": "\u4eba\u7fa4\u8ffd\u7740\u660e\u661f\u7684\u8c6a\u8f66\u8dd1\u53bb\uff0c\u5979\u9ad8\u5174\u5730\u8df3\u4e0a\u4e86\u8f66\u3002"} +{"id": "1004776", "video_name": "585640a0-37b4-540c-8aba-05a67713dd89", "text": "\u5973\u6218\u58eb\u4ece\u623f\u5b50\u91cc\u8dd1\u51fa\u53bb\uff0c\u8fdb\u5165\u795e\u8bdd\u822c\u7684\u68ee\u6797\u3002"} +{"id": "2003704", "video_name": "f8de15d8-e63f-5c88-a275-0c52dac3d318", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u591c\u665a\u7eff\u8272\u68ee\u6797\u4e2d\u95ea\u70c1\u7684\u8424\u706b\u866b\u5149\u70b9\uff0c\u7edd\u5bf9\u662f\u7f8e\u4e3d\u7684\u9ad8\u5206\u8fa8\u7387\u753b\u9762\u3002"} +{"id": "3003627", "video_name": "14f8112a-3508-5c3e-9f04-dd5cd14e3a2f", "text": "\u5f97\u514b\u8428\u65af\u5dde\u7684\u76f2\u9cb5\u5f39\u594f\u4e3b\u97f3\u7535\u5409\u4ed6\uff0c\u9886\u5bfc\u4e00\u652f\u4e50\u961f\u3002\u4e50\u961f\u6210\u5458\u6709\u9f13\u624b\uff0c\u4f4e\u97f3\u5409"} +{"id": "1004550", "video_name": "54871130-cf59-54ba-ad91-dc02ee778742", "text": "\u60f3\u8c61\u4e00\u4e0b\uff0c\u6709\u4e24\u4e2a\u7537\u5b69\u548c\u4e24\u4e2a\u5973\u5b69\u7684\u56db\u4e2a\u670b\u53cb\u6b63\u5728\u63a2\u7d22\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\uff0c\u90a3\u91cc\u6709\u9ad8\u5927\u7684\u53e4\u8001"} +{"id": "8001083", "video_name": "d17d7c74-870a-5ae0-86e9-851e0411c4d5", "text": "Source sentence: Eminem\u6234\u7740\u6d77\u76d7\u5e3d\u5531\u6b4c\u3002"} +{"id": "6002117", "video_name": "479041d7-b51a-56ef-9b0f-1b6fa578d754", "text": "\u5b54\u96c0\u8ba4\u4e3a\u5b83\u7684\u7f8e\u8c8c\u4e0d\u8db3\u4ee5\u5b9e\u73b0\u5b83\u7684\u62b1\u8d1f\u3002"} +{"id": "0006359", "video_name": "2b320cd7-ca54-5022-8299-b2e9c83f820a", "text": "\u4e91\u5728\u5929\u7a7a\u4e2d\u98d8\u98de\u3002 (Font: \u5b8b\u4f53)"} +{"id": "6002094", "video_name": "05ef90b6-48ae-517e-8a70-7ac49e4b29a2", "text": "\u4e00\u6bb5Matterport Pro3\u626b\u63cf\u57ce\u5821\u80cc\u666f\u7684\u89c6\u9891\u3002"} +{"id": "3003327", "video_name": "f4574e08-b252-504b-a0bf-6e255fe715b4", "text": "\u6218\u952440000\u7a79\u6781\u84dd\u6218\u58eb\u4e0e\u6076\u9b54\u7684\u6218\u6597"} +{"id": "3005751", "video_name": "8022141d-1966-5845-aaf1-31b7dd1cf483", "text": "\u4e00\u53ea\u7a7f\u7740\u6c49\u670d\u8d70\u79c0\u7684\u732b\uff0c\u6700\u9ad8\u54c1\u8d28\uff0c\u4e2d\u5f0f\u98ce\u683c\u3002"} +{"id": "0005880", "video_name": "22bcedda-79e4-5766-a29c-fe8c0bedf7d4", "text": "\u5b59\u5b50\u5e26\u7740\u70e6\u607c\u7684\u8868\u60c5\u8d70\u5411\u4ed6\u7684\u7237\u7237\u3002"} +{"id": "7003126", "video_name": "c2901b0c-cc80-56d4-a865-3e00f09293b0", "text": "\u5728\u4e00\u4e2a\u9759\u8c27\u7684\u5c0f\u9547\uff0c\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u95f4\uff0c\u8428\u62c9\u548c\u8fc8\u514b\u5c14\u5728\u4e00\u4e2a\u547d\u8fd0\u822c\u7684\u665a\u4e0a\u88ab\u56f0\u5728\u4e86"} +{"id": "2007409", "video_name": "cfe2cbaf-975b-5860-91c2-77736f0d1bcb", "text": "\u4e00\u53ea\u72d7\u8bd5\u56fe\u6316\u4e00\u4e2a\u6d1e\u4f46\u6700\u7ec8\u628a\u5b83\u81ea\u5df1\u7684\u73a9\u5177\u57cb\u4e86\u3002"} +{"id": "1005778", "video_name": "6a4b8ec1-089d-56c0-b0b9-0e378369276e", "text": "\u751f\u6210\u4e00\u4e2a\u957f\u5bbd\u6bd4\u4e3a9:16\u7684\u63d2\u56fe\uff0c\u63cf\u7ed8\u52aa\u529b\u505a\u597d\u4e8b\u3001\u907f\u514d\u9519\u8bef\u884c\u4e3a\u7684\u6982\u5ff5\u3002\u63d2\u56fe\u5e94\u4f20\u8fbe\u79ef\u6781"} +{"id": "8002299", "video_name": "e3c00646-eff5-54fe-80db-3515c44dc7dc", "text": "\u5df4\u9ece\u7684\u827e\u83f2\u5c14\u94c1\u5854\u57281889\u5e74\u5373\u5c06\u88ab\u62c6\u9664\u3002"} +{"id": "0003762", "video_name": "42ea5804-1c37-57c4-b43b-a02e9a00654a", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u706b\u5c71\u55b7\u53d1\uff0c\u8ba9\u5b83\u770b\u8d77\u6765\u5f88\u68d2\uff0c\u5468\u56f4\u6709\u7eff\u8272\u690d\u7269\u3002"} +{"id": "1003488", "video_name": "40a28db5-a0c8-5d62-88ee-67c9a398b314", "text": "\u6d77\u6d0b\u4e2d\u79fb\u52a8\u76843D\u6d77\u8c5a\u3002"} +{"id": "2007660", "video_name": "8aaaaa8a-e20d-5c16-8d4a-4bf8e6b64a99", "text": "\u4e00\u4e2a\u6e38\u620f\u89d2\u8272\u7684\u56fe\u7247\uff0c\u4ed6\u5f88\u5f3a\u5927\uff0c\u800c\u4e14\u7a7f\u5f97\u8fc7\u4e8e\u534e\u4e3d\u3002"} +{"id": "0003616", "video_name": "40891922-66ca-52fa-8f6e-afe1f447830f", "text": "1930\u5e74\u4ee3\u7684\u6536\u97f3\u673a\u7ad9\u5728\u4e0b\u96ea\u7684\u5723\u8bde\u591c\u4ee51960\u5e74\u4ee3\u7684\u7535\u89c6\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0005302", "video_name": "182702d6-f16e-55de-aaa9-f60dcb923787", "text": "\u9999\u80a0\u548c\u85af\u6761\u88ab\u6254\u5230\u7a7a\u6c14\u4e2d\u3002"} +{"id": "7003078", "video_name": "04a185a8-fb99-5f13-b152-e26e0a1bfabf", "text": "\u89c1\u5230\u8389\u8389\uff0c\u5979\u662f\u5a01\u6d1b\u4ee3\u5c14\u6751\u4e00\u4e2a\u5f00\u6717\u7684\u5973\u5b69\uff0c\u8fd8\u6709\u5979\u6bdb\u8338\u8338\u7684\u5154\u5b50\u670b\u53cb\u2014\u2014\u68c9"} +{"id": "6004272", "video_name": "fdef07e7-2a25-5dea-b98a-f8e4a439ea5f", "text": "\u9ad8\u54c1\u8d28\uff0c\u53ef\u7231\u7684\u8d34\u7eb8\uff0c\u5361\u901a\u98ce\u683c\uff0c\u53ef\u7231\u7684\u8d85\u53d8\u5f62\u4eba\u7269\uff0c\u767d\u8fb9\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u8be6\u7ec6\u63cf"} +{"id": "7004781", "video_name": "c762132a-74c0-5e85-a38f-99308a3f6020", "text": "\u5b64\u72ec\u3001\u5b64\u5355\u3001\u5185\u5fc3\u7684\u75db\u82e6\u3001\u65e0\u52a9\u7684\u8868\u60c5\u3001\u77db\u76fe\u7684\u60c5\u7eea\u3001\u660f\u6697\u7684\u623f\u95f4\u3001\u8212\u9002\u7684"} +{"id": "5001581", "video_name": "78de1916-5115-5f48-b8b2-a0749ea4dde7", "text": "\u4e00\u7247\u53d7\u5929\u5802\u542f\u53d1\u7684\u5e73\u5766\u8349\u539f\uff0c\u53ef\u4ee5\u4fef\u89c6\u3001\u4fa7\u89c6\u3001\u62c9\u8fd1\u3001\u62c9\u8fdc\u3001\u52a8\u753b\u5316\u3002"} +{"id": "6003746", "video_name": "9665dc72-24e1-5849-870b-f5419124edc2", "text": "\u9752\u5c11\u5e74\u5728\u5927\u578b\u97f3\u4e50\u8282\u4e2d\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "8001624", "video_name": "8c6b7cbc-efdb-5adb-b0b1-8f87925fe9af", "text": "\u8fdc\u5904\u9053\u8def\u4e0a\u7684\u7206\u70b8\u8d77\u521d\u5f88\u5c0f\uff0c\u7136\u540e\u53d8\u5f97\u8d8a\u6765\u8d8a\u5927\uff0c\u4ee5\u9ad8\u8d28\u91cf\u5168\u5c4f\u663e\u793a\u3002"} +{"id": "3006156", "video_name": "1f28e310-0479-5616-96be-de7a124d3496", "text": "\u84dd\u8272\u6cb9\u6f06\u6ef4\u5728\u767d\u8272\u753b\u5e03\u4e0a\u3002"} +{"id": "6003820", "video_name": "1277fd85-2bc1-576b-b155-06a669abd9d0", "text": "\u4e00\u4e2a\u534a\u673a\u68b0\u4eba\u4e0e\u4e00\u6761\u65e5\u672c\u9f99\u6218\u6597\u3002"} +{"id": "1003370", "video_name": "3e24d318-77c0-59d1-b7ab-f48af08d2589", "text": "\u4e00\u4e2a\u7537\u5b69\u8d70\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "0005061", "video_name": "13f7cd3a-e5b1-52d2-a7be-fb00bd3e6dba", "text": "\u8fd9\u5f20\u7167\u7247\u91cc\u7684\u90a3\u4e2a\u4eba\u5f00\u7740\u4e00\u8f86\u4fdd\u65f6\u6377\u3002"} +{"id": "6003918", "video_name": "cb0d990a-bd82-5665-a78c-58328b1b5378", "text": "\u5934\u8111\u4e2d\u4ee5\u8bd7\u610f\u7684\u65b9\u5f0f\u6d8c\u73b0\u7684\u60f3\u6cd5\u3002\u89c6\u9891\u7684\u98ce\u683c\u5fc5\u987b\u73b0\u5b9e\uff0c\u6709\u7f8e\u4e3d\u7684\u706f\u5149\u3002"} +{"id": "7004046", "video_name": "a73c2705-4421-56fc-ab3f-f41d40471d96", "text": "\u5f53\u9152\u676f\u6643\u52a8\u65f6\uff0c\u753b\u9762\u5f00\u59cb\u6a21\u7cca\uff0c\u989c\u8272\u9010\u6e10\u4ece\u9152\u7684\u6df1\u7ea2\u8272\u8fc7\u6e21\u5230\u4ead\u5b50\u7684\u6d45\u8272\u3002\u8bbe\u8ba1\u4e00\u4e2a"} +{"id": "3006628", "video_name": "ea88e00d-4e44-5fa9-bca9-f27ff0cfd9b0", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6c90\u6d74\u5728\u9ec4\u91d1\u4e2d\n\nSource sentence: She has a heart of gold. \n\u5979\u6709\u4e00\u9897\u9ec4\u91d1\u822c\u7684\u5fc3\u3002"} +{"id": "1006375", "video_name": "74b82521-17e4-5ac3-ab00-837c78c7bf76", "text": "\u4e00\u4e2a\u50cf\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u5e0c\u533a\u67ef\u514b\u7684\u573a\u666f\uff0c\u50cf\u9e1f\u4e00\u6837\u3002"} +{"id": "2004782", "video_name": "d7d3f8ae-3e9e-5f01-9a7b-132ce2b3729f", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u5723\u6d77\u4f26\u65af\u5c71\u55b7\u53d1\u753b\u9762\u3002"} +{"id": "8002801", "video_name": "8ba75f76-a8e1-5a5e-af2c-c852dd0b00fd", "text": "\u5b89\u5353\u5728\u6ee1\u6708\u7684\u80cc\u666f\u4e0b\u8df3\u8fc8\u514b\u5c14\u6770\u514b\u900a\u7684\u6708\u7403\u6f2b\u6b65\u821e\u3002"} +{"id": "2007351", "video_name": "5513f7ed-da07-5e07-be5d-d3e2dee71dcd", "text": "\u4e8c\u5341\u4e16\u7eaa\u521d\uff0c\u4e00\u90e8\u65e0\u58f0\u7684\u9ed1\u767d\u8001\u7535\u5f71\uff0c\u5c55\u73b0\u4e86\u5b87\u822a\u5458\u5750\u5728\u4e00\u4e2a\u4e0d\u9508\u94a2\u84b8\u6c7d\u670b\u514b\u706b\u7bad\u91cc\uff0c"} +{"id": "8002946", "video_name": "ec96c9ad-7859-5714-a9d0-3690321f876c", "text": "\u4e00\u4e2aSasuke Uchiha\u5236\u4f5c\u5343\u9e1f\u7684\u89c6\u9891\uff0c4K\uff0c\u6781\u7ec6\u8282\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002"} +{"id": "3005365", "video_name": "a842f947-d35a-5ebd-96ba-8103e8a2b066", "text": "\u4ece\u94a2\u94c1\u548c\u6df7\u51dd\u571f\u5230\u5efa\u7b51\u7269\uff0c\u53d8\u5316\u975e\u5e38\u5feb\uff0c\u8282\u594f\u5feb\uff0c\u771f\u5b9e\u3002"} +{"id": "7002955", "video_name": "bc18aa70-325f-56c2-88a4-2bd3252dcf4f", "text": "\u4e00\u5207\u90fd\u662f\u4ece\u6211\u628a\u4e00\u5207\u629b\u5f03\u5f00\u59cb\u7684\u3002"} +{"id": "8001111", "video_name": "152a4658-f513-55c4-89dd-5092452d0008", "text": "\u6050\u6016\u7535\u5f71\u914d\u4e50\u6d77\u62a5\uff0c\u9713\u8679\u706f\u6548\u679c"} +{"id": "8002095", "video_name": "e905db68-67f2-5707-9856-a9b5304eabdb", "text": "\u5c55\u793a1950\u5e74\u4ee3\u4e0e\u4e1c\u5fb7\u7684\u8fb9\u5883\u3002\u6570\u767e\u4eba\u4e89\u76f8\u8fdb\u5165\u5fb7\u610f\u5fd7\u6c11\u4e3b\u5171\u548c\u56fd\u3002\u9ed1\u767d\u6444\u5f71\u3002fsp 24. \u7167\u7247"} +{"id": "2007534", "video_name": "589019da-f724-5c44-b68e-2026b6fd1eef", "text": "\u6218\u4e89\u4e2d\u7684\u58eb\u5175\uff0c\u6ee1\u5929\u7684\u6218\u6597\u673a\uff0c\u6218\u4e89\u80cc\u666f\uff0c\u6218\u4e89\u4e3b\u9898\uff0c\u50cf\u6218\u573a\u4e00\u6837\uff0c\u5c65\u884c\u804c\u8d23\u3002"} +{"id": "8003516", "video_name": "2f4918c0-0f1e-5fb3-a3a5-5b240c924845", "text": "\u4e00\u4f4d\u6709\u7075\u6027\u7684\u5973\u6027\u7741\u5f00\u5979\u7684\u84dd\u8272\u773c\u775b\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "7002394", "video_name": "7ac92546-04b8-56ec-a679-bc85cb69ac2e", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7f8a\u9a7c\u5728\u81ea\u7136\u80cc\u666f\u4e0b\u884c\u8d70\u3002"} +{"id": "4004671", "video_name": "04d80d7f-ace9-51c1-adff-353e868356a1", "text": "\u4e00\u4e2a\u65b0\u7684\u4e3b\u64ad\uff0c\u7b7e\u4e86\u4e00\u4efd\u5408\u7ea6\uff0c\u5ba3\u5e03\u4e86\u6d88\u606f\u3002"} +{"id": "1006362", "video_name": "747d6afe-96dd-553c-88d9-f3e99af48848", "text": "\u674e\u5c0f\u9f99\u5728\u4e2d\u56fd\u957f\u57ce\u4e0a\u4e0e\u9f99\u640f\u6597\u3002"} +{"id": "3006625", "video_name": "472f89c7-b045-500d-a8d9-1e7bb89c706a", "text": "\u751f\u6210\u4e00\u90e8\u5168\u9ad8\u6e05\u52a8\u753b\u89c6\u9891\uff0c\u63cf\u8ff0\u517d\u4eba\u548c\u4eba\u7c7b\u4e4b\u95f4\u7684\u53f2\u8bd7\u7ea7\u6218\u6597\uff0c\u7075\u611f\u6765\u6e90\u4e8e\u300a\u6307\u73af\u738b\u300b\u7684\u5b8f\u4f1f\u6218\u6597"} +{"id": "7003327", "video_name": "76a77aef-4837-5abc-b6c4-712b8c4bf499", "text": "AR\u6821\u56ed\u5ba4\u5185\u5bfc\u822a\u5e94\u7528\u7a0b\u5e8f\uff0c\u914d\u5907\u670b\u53cb\u67e5\u627e\u529f\u80fd\u7684\u4ecb\u7ecd\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "0006377", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "\u7f8e\u4e3d\u7684\u63d2\u56fe\uff0c\u5e74\u8f7b\u7684\u6811\u5728\u5e72\u67af\u7684\u690d\u7269\u4e2d\u95f4\uff0c\u6210\u529f\u548c\u5931\u8d25\u4e4b\u95f4\u5f62\u6210\u9c9c\u660e\u7684\u5bf9\u6bd4\u3002\u4e00\u4e2a\u53cd\u601d\u7684\u65f6\u523b\u3002"} +{"id": "1004084", "video_name": "4ba8a2f3-e032-526e-bbda-167a4d61ea84", "text": "\u624b\u673a\u5c4f\u5e55\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u5c4f\u5e55\u4e0a\u6709\u4e00\u4e2a\u975e\u5e38\u5438\u5f15\u4eba\u7684\u808c\u8089\u7537\u4eba\u3002"} +{"id": "1006521", "video_name": "775a57be-8f7f-5ff6-9f4f-a75a9c567dc9", "text": "\u65f6\u95f4\u8f74\u4ece\u516c\u51433001\u5e74\u7684\u7b2c\u56db\u4e2a\u5343\u5e74\u5f00\u59cb\uff0c\u903c\u771f\u3001\u8d85\u7ea7\u7535\u5f71\u5316\uff0cRTX\u5f00\u542f\u3002"} +{"id": "7003812", "video_name": "35b672cf-2e6f-5344-83d4-9bd332a00af2", "text": "\u5154\u5b50\u62d2\u7edd\u5403\u9aa8\u5934\uff0c\u7559\u4e0b\u72d7\uff0c\u79bb\u5f00\u4e86\u90a3\u4e2a\u5730\u65b9\u3002"} +{"id": "0003119", "video_name": "3762db7d-3d4e-5e65-9878-7af876722f06", "text": "\u4e00\u53ea\u5bb6\u8747\u964d\u843d\u5728\u4e00\u676f\u5496\u5561\u4e0a\u3002"} +{"id": "0006430", "video_name": "2c2828b0-4441-5807-8154-e1013568aa56", "text": "\u7ebd\u7ea6\u5e02\u770b\u8d77\u6765\u50cf\u662f\u4e00\u4e2a\u559c\u9a6c\u62c9\u96c5\u5c71\u6751\u5e84\uff0c\u5e26\u7740\u7a7a\u6c14\u6d41\u52a8\u3002"} +{"id": "0003250", "video_name": "3a0b46d0-b868-5cab-b41d-65514daed23a", "text": "\u5e9e\u5927\u7684\u5e93\u5584\u6076\u9b54\u4ece\u6df1\u6d1e\u51fa\u73b0\uff0c\u50cf\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u548c\u5927\u536b\u00b7\u6797\u5947\u5f0f\u7684\u8be1\u5f02\u6050\u6016"} +{"id": "3005258", "video_name": "77588d23-85c6-5326-be7d-7d20e715eb95", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7684\u4eba\u5982\u4f55\u53d8\u5f97\u5bcc\u6709\uff0c\u8fc7\u4e0a\u5bcc\u88d5\u7684\u751f\u6d3b\u7684\u89c6\u9891\u3002"} +{"id": "4004792", "video_name": "b1c17116-2c74-5d6f-9da7-198cfa2e7a4f", "text": "\u80cc\u666f\u662f\u51b0\u6dc7\u6dcb\u5e97\uff0c\u4e00\u4e2a\u5b69\u5b50\u5728\u51b0\u6dc7\u6dcb\u5e97\u91cc\u62ff\u7740\u51b0\u6dc7\u6dcb\uff0c\u4ee53D\u5361\u901a4K\u5206\u8fa8\u7387\u5448"} +{"id": "3006993", "video_name": "9f3c30dd-6fec-5e3c-981b-7a01dff9b581", "text": "\u4e00\u4e2a\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u7684\u6c99\u6f0f\u5728\u6c99\u6f20\u4e2d\uff0c\u6c99\u5b50\u6d41\u52a8\uff0c\u5c18\u571f\u98de\u626c\uff0c\u753b\u9762\u91cc\u53ea\u6709\u6d77\u6ee9\u6c34\u548c\u6d77"} +{"id": "0003879", "video_name": "450b9060-68c2-572d-8764-6fe52986cd6d", "text": "\u7537\u4eba\u5728\u5893\u5730\u91cc\u8f6c\u8eab\uff0c\u773c\u775b\u53d1\u51fa\u7ea2\u8272\u7684\u5149\u8292\u3002"} +{"id": "1003473", "video_name": "405509d9-78e0-5140-b621-cd8e3b2b9060", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u6751\u5e84\u548c\u623f\u5c4b\u4ee5\u53ca\u5361\u901a\u89d2\u8272\u3002\u4f4f\u5728\u8fd9\u4e2a\u6751\u5e84\u7684\u4e24\u4e2a\u5c0f\u623f\u5b50\u91cc\u7684\u5b69\u5b50\u662f\u975e"} +{"id": "5001848", "video_name": "21395c1c-dbd1-5f7c-9009-f861e0eda2c8", "text": "\u670b\u53cb\u4eec\u57283D\u5361\u901a\u9ad8\u6e05\u573a\u666f\u4e2d\u7684\u5bf9\u8bdd"} +{"id": "8003106", "video_name": "e902dc28-90df-5e4f-8084-43dc872ad764", "text": "\u5e74\u8f7b\u7684\u5e03\u9c81\u65af\u00b7\u97e6\u6069\u5728\u9ed1\u6697\u5c0f\u5df7\u91cc\u9762\u9762\u5bf9\u4ed6\u7684\u6050\u60e7\u3002\u7535\u5f71\u6444\u5f71\uff1a\u6447\u6446\u7684\u8857\u706f\u6295"} +{"id": "3006784", "video_name": "b5da08c2-bb18-568f-8dd9-f599b633ee2a", "text": "\u4e00\u4e2a\u63cf\u7ed8\u95e8\u536b\u63a7\u5236\u4e91\u8d44\u6e90\u5165\u53e3\u3001\u5f3a\u8c03\u6570\u636e\u4fdd\u62a4\u7684\u5f62\u8c61\u3002"} +{"id": "2003208", "video_name": "c30bbe11-2248-5119-ad1a-9eaec7d9a2c9", "text": "\u673a\u68b0\u673a\u5668\u4eba\u7ad9\u5728\u706b\u661f\u8868\u9762\uff0c\u653e\u51fa\u5de8\u5927\u7684\u706b\u7130\u3002"} +{"id": "1003398", "video_name": "3ea3159c-3b01-5bb9-b6eb-af6abcb16cb5", "text": "\u4e00\u4f4d\u8d5b\u535a\u670b\u514b\u5973\u5b50\u5728\u4e0b\u96e8\u7684\u65f6\u5019\u4ece\u4e00\u5ea7\u5efa\u7b51\u7269\u7684\u9876\u90e8\u76ef\u7740\u4f60\uff0c\u8fd9\u662f4K\u8d85\u903c\u771f\u7684\u573a\u666f\u3002"} +{"id": "5001044", "video_name": "9318c696-b0c3-5070-a7fb-24882ad5eed9", "text": "\u8428\u59c6\u548c\u9a6c\u514b\u65af\u5750\u5728\u5c4b\u91cc\u4e00\u4e2a\u8212\u9002\u7684\u7a97\u6237\u5ea7\u4f4d\u4e0a\u7167\u770b\u72d7\uff0c\u770b\u7740\u5916\u9762\u503e\u76c6\u800c\u4e0b\u7684"} +{"id": "8003273", "video_name": "f71dd5a6-e828-555b-aec8-383fe1c35fea", "text": "NASA\u7684\u822a\u5929\u98de\u673a\u5728\u6447\u6643\u7740\u4ece\u53d1\u5c04\u53f0\u4e0a\u5347\u5165\u5929\u7a7a\u3002"} +{"id": "6003756", "video_name": "fab8b55b-409d-5c6b-88fb-b32a1cad6161", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4ece\u4e00\u4e2a\u9b54\u6cd5\u74f6\u5b50\u91cc\u559d\u6db2\u4f53\u3002"} +{"id": "6004627", "video_name": "ce10f227-15be-52f8-8f2b-43f874314999", "text": "\u62c9\u5c14\u592b\u00b7\u5df4\u514b\u5e0c\u7684\u89d2\u8272\u970d\u8389\u5728\u300a\u9177\u4e16\u754c\u300b\u8d4c\u573a\u573a\u666f\u4e2d\u8eab\u7740\u767d\u8272\u793c\u670d\u8df3\u821e\uff0c\u8425"} +{"id": "3003703", "video_name": "90b47613-ed78-5dcf-8f5f-840240117825", "text": "\u4e00\u573a\u6838\u6218\u4e89\u6467\u6bc1\u4e86\u5df4\u897f\u5229\u4e9a\uff0c\u5df4\u897f\u3002"} +{"id": "6003649", "video_name": "de8c2b4b-83bb-5036-84c8-ccc8671709f5", "text": "\u4e24\u4e2a\u4fc4\u7f57\u65af\u4eba\u4e4b\u95f4\u7684\u7231\u60c5\u573a\u666f\u3002\u5728\u7c89\u8272\u7684\u6811\u6797\u4e2d\u3002\u5168\u5c4f\u5e55\u3002\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u300210\u79d2\u949f\u5185\u3002"} +{"id": "6004608", "video_name": "5ca8b821-91a5-5060-9ebd-fa298ec8e359", "text": "\u9b25\u58eb\u4ff1\u6a02\u90e8\u7684\u9b91\u52c3\u505a\u4e86\u4e09\u500b\u5f8c\u7a7a\u7ffb\u3002"} +{"id": "2007442", "video_name": "32671385-8e17-55c1-bd40-23cc6a6fc450", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u88ab\u6467\u6bc1\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\uff0c\u8001\u7535\u5f71\u98ce\u683c\uff0c\u6050\u6016\uff0c\u53ef\u6015\uff0c\u50cf\u300a\u5e03\u83b1\u5c14\u5973\u5deb\u8ba1"} +{"id": "7003046", "video_name": "c80d864d-f98e-5e59-ae00-ba91c9790b03", "text": "\u4eba\u9c7c\uff0c\u5f69\u8679\u822c\u7684\u9cde\u7247\u548c\u6d77\u85fb\u822c\u7684\u5934\u53d1\uff0c\u62ef\u6551\u6eba\u6c34\u7684\u5b69\u5b50\uff0c\u4f7f\u7528\u663e\u5fae\u955c\uff0c\u9b54\u6cd5"} +{"id": "1003311", "video_name": "3ceed67a-eea0-52cc-91cc-73dbff2c7251", "text": "\u4e00\u5207\u8f6c\u5230\u4e00\u4e2a\u65e7\u7684\u3001\u53e4\u6734\u7684\u98de\u884c\u573a\uff0c\u4e00\u4e2a\u5c0f\u578b\u7684\u8f7b\u578b\u98de\u673a\u6b63\u5728\u51c6\u5907\u8d77\u98de\u3002\u4e00\u4f4d\u51b3\u5fc3\u5341\u8db3\u7684\u98de\u884c"} +{"id": "3006873", "video_name": "4030b4ef-964c-56af-bd6e-d2f58e9e842d", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u53ea\u795e\u79d8\u7684\u5c0f\u72d0\u72f8\u6765\u5230\u4e86\u68ee\u6797\u3002\u5b83\u6709\u7740\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u8272\u6bdb\u53d1\u548c\u806a\u660e\u7684"} +{"id": "7004933", "video_name": "4573a4a5-cbb0-55cc-9c4c-c88512d043d9", "text": "\u84c4\u7740\u80e1\u5b50\u3001\u70b9\u5934\u770b\u7740\u955c\u5934\u7684\u5361\u901a\u98ce\u683c\u753b\u4f5c\u3002"} +{"id": "6003453", "video_name": "b372b2bd-7285-55e6-bd70-059675e76d0f", "text": "\u6211\u5e0c\u671b\u4f60\u5236\u4f5c\u4e00\u4e2a\u52a8\u7269\u5f39\u94a2\u7434\u7684\u4e00\u5206\u949f\u89c6\u9891\u3002"} +{"id": "2003699", "video_name": "18e80932-9bea-5b1e-90b1-e582c8e89794", "text": "\u4e00\u7fa4\u4eba\u98de\u5f80\u68a6\u7684\u6d77\u6d0b\uff0c\u8138\u4e0a\u5145\u6ee1\u4e86\u5e78\u798f\u7684\u7b11\u5bb9\u3002"} +{"id": "0005597", "video_name": "1daa61d4-560f-5f98-bca5-7269023170d4", "text": "\u963f\u6cfd\u8389\u4e9a\u00b7\u73ed\u514b\u65af\u4e0e\u5c3c\u57fa\u00b7\u7c73\u5a1c\u5435\u67b6\u3002"} +{"id": "7002395", "video_name": "977b5a8e-e17d-55e4-857c-4b1059c71a10", "text": "\u5728\u5979\u51cc\u4e71\u7684\u5367\u5ba4\u91cc\u5750\u7740\u7684\u4eba\u3002"} +{"id": "6002959", "video_name": "d0b48ada-6573-5616-b471-49acc8b5b14d", "text": "\u5510\u6c0f\u7efc\u5408\u75c7\u8d85\u4eba\u5fae\u7b11\u7740\u5c06\u4e00\u4e2a\u5973\u4eba\u63a8\u4e0b\u53bb\uff0c\u81f4\u5176\u6b7b\u4ea1\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u8fd9\u53ea\u732b"} +{"id": "2003349", "video_name": "4d70ea4a-e2e1-5970-aa64-25962582ed69", "text": "\u4e00\u4e2a\u5706\u5706\u7684\u5361\u901a\u7ef5\u7f8a\uff0c\u6709\u7740\u773c\u775b\u548c\u8033\u6735\uff0c\u5728\u9633\u5149\u4e0b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u7a81\u7136\u505c\u4e0b\u6765\u5f00\u59cb\u5403"} +{"id": "1005562", "video_name": "665e9b12-211d-5b22-ab5d-e775d220b97e", "text": "\u4e00\u4e2a\u4ed9\u5973\u548c\u4e00\u4e2a\u5de8\u4eba\uff0c\u4ed6\u4eec\u901a\u8fc7\u7b11\u58f0\u3001\u624b\u52bf\u4ee5\u53ca\u5fc3\u7075\u4e0a\u7684\u65e0\u58f0\u8bed\u8a00\u8fdb\u884c\u6c9f\u901a\u3002"} +{"id": "6003366", "video_name": "28e1ff3b-4247-5c92-98a7-f5ca57141f65", "text": "JCB\u5728\u6cb3\u91cc\u6316\u6c99\u3002"} +{"id": "1005794", "video_name": "6aa7a4a8-9171-5606-abe6-dc52ca0a1744", "text": "\u4e00\u4e2a\u5965\u7279\u66fc\u5728\u7eaf\u7eff\u8272\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "6003717", "video_name": "4f1cf35d-fe74-5b22-9932-9d71e0e80572", "text": "\u5728\u9e70\u7c7b\u8bfe\u5802\u4e0a\u521b\u4f5c\u4e00\u4e2a\u7f8e\u4e3d\u76843D\u9e70\uff0c\u6709\u4e66\u7c4d\u3001\u9ed1\u677f\u4e0a\u7684\u6587\u672c\u548c\u9e70\u6587\u5316\u5b66\u9662\u4ee5\u53d1\u5149\u7684\u5927\u5199"} +{"id": "0005934", "video_name": "237a7d5d-8bef-512c-8784-fb0f69a9f0cc", "text": "\u4f2f\u5c3c\u00b7\u8d56\u7279\u68ee\uff08Bernie Wrightson\uff09\u6cb9\u753b\u4e2d\u4fa7\u9762\u770b\u5230\u7684\u5954\u8dd1\u602a\u7269\u7684\u8fd0\u52a8\u5faa\u73af\u3002"} +{"id": "4004544", "video_name": "6424450f-4fb1-51ee-b5d7-faa816118c44", "text": "\u4e00\u53ea\u72fc\u5934\u5728\u54ac\u7a7a\u6c14\u7684\u52a8\u6f2b\u52a8\u753b"} +{"id": "7003688", "video_name": "d0ea95e3-8244-5867-9aeb-e98ab972b8ee", "text": "\u7eff\u8272\u5851\u6599\u7ed1\u5728\u811a\u4e0a\u7684\u519b\u4eba\u7eff\u8272\u73a9\u5177\u58eb\u5175\u6323\u8131\u51fa\u6765\u4e86\u3002"} +{"id": "2007109", "video_name": "1b72de71-fe49-5a82-82f9-fa18b22ff50b", "text": "\u9a91\u58eb\u8fdb\u5165\u9ed1\u6697\u5730\u7262\u7684\u7535\u5f71\u822c\u573a\u666f\uff0c\u51b0\u51b7\u3001\u9634\u90c1\u3001\u6c1b\u56f4\u611f\u5f3a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u76ae\u80a4\u771f"} +{"id": "4003667", "video_name": "69b86bb8-d0c7-5ad2-9fa9-8a9842c31a07", "text": "\u4e00\u4e2a\u88ab\u5939\u4f4f\u7684\u7741\u773c\u7684\u773c\u775b\u3002MKUltra\u3002VHS\u5f55\u50cf\u5e26\u3002"} +{"id": "5001493", "video_name": "a7defc65-cb12-5a88-ad4d-de444d750caf", "text": "\u84dd\u8272\u53c9\u5b50\u7684\u5361\u901a\u5973\u5b69\u7275\u7740\u5979\u6bcd\u4eb2\u7684\u624b\u3002"} +{"id": "2004458", "video_name": "874f6f15-2db4-5431-a2d4-51bbfffa8631", "text": "80\u5e74\u4ee3\u5f55\u97f3\uff0cVHS\uff0c\u91cc\u7ea6\u70ed\u5185\u5362\u5e02\u4e2d\u5fc3\uff0c\u7a7f\u774070\u5e74\u4ee3\u670d\u88c5\u7684\u884c\u4eba\u5728\u4eba\u884c\u9053\u4e0a\u884c\u8d70\uff0c\u665a\u4e0a\uff0c\u9ad8\u5c42\u516c"} +{"id": "7002006", "video_name": "0ecdfc7f-62eb-5987-bd49-bc2f6a16b769", "text": "\u6e56\u7554\u6708\u5149\u4e0b\u7f8e\u4e3d\u7684\u60c5\u4fa3\u3002"} +{"id": "1003921", "video_name": "48695f9a-e8ce-5674-b114-13057e84fef7", "text": "\u5f88\u591a\u677f\u7403\u8ff7\u4e3a3D\u7535\u5f71\u53164K\u7684\u677f\u7403\u8fd0\u52a8\u5458\u52a0\u6cb9\u52a9\u5a01\u3002"} +{"id": "1004866", "video_name": "59eadac0-e565-5df2-9b89-122b2b30d8db", "text": "\u5728\u65f6\u95f4\u8fb9\u7f18\u7684\u795e\u5947\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u5c4b\u3002\u76f8\u673a\u653e\u5927\u5e76\u5411\u4e0a\u5e73\u79fb\u300224\u5e27\u6bcf\u79d2\u3002"} +{"id": "2003365", "video_name": "e3e25914-8422-5da9-86fe-e5ed3a5e381b", "text": "\u83ab\u5361\u4f18\u96c5\u5730\u6816\u606f\u5728\u6e29\u6696\u3001\u9633\u5149\u5145\u8db3\u7684\u7a97\u53f0\u8fb9\u7f18\uff0c\u5468\u56f4\u662f\u76c6\u683d\u690d\u7269\uff0c\u6295\u5c04\u51fa"} +{"id": "7002049", "video_name": "48c9ab6a-97e7-5d5d-9442-a2aa07d29d22", "text": "\u5e26\u6709\u53ef\u7231\u5ba0\u7269\u548c\u5b87\u822a\u5458\u7684NFT\u3002"} +{"id": "4003963", "video_name": "e45da9af-9cf3-5af2-a292-0ce6f9a257bd", "text": "\u7ffb\u8bd1\uff1a\u732b\u5934\u9e70\u3001\u677e\u9f20\u548c\u9e7f\u7ed9\u4e86\u5e74\u8f7b\u4eba\u4e00\u5f20\u5730\u56fe\u3002"} +{"id": "2004878", "video_name": "268b0050-334c-55f8-9a48-e14c5d6b0d76", "text": "\u4eba\u72691\uff1a\u5728\u4eba\u884c\u9053\u4e0a\u5f80\u524d\u8d70\u3002\u80cc\u666f\uff1a\u9ed1\u6697\u6050\u6016\u795e\u79d8\uff0c\u9634\u68ee\u3001\u9ed1\u8272\u3001\u591c\u665a\uff0c\u53ea\u6709\u8def\u706f\u7684"} +{"id": "8003981", "video_name": "abeb3732-1449-53ab-b1e0-981ff8d79b86", "text": "\u901a\u8fc7\u516d\u5ea6\u5206\u79bb\u52a8\u753b\uff1a\u5c55\u793a\u4e00\u4e2a\u4eba\u901a\u8fc7\u4e94\u4e2a\u4e2d\u95f4\u4eba\u8fde\u63a5\u5230\u53e6\u4e00\u4e2a\u4eba\u3002"} +{"id": "2006818", "video_name": "a66c7457-202f-50f1-888e-64d84c4ed5e9", "text": "\u7cbe\u7075\u5728\u591c\u665a\u9a7e\u8f66\u7a7f\u8fc7\u6ee1\u8f7d\u7caa\u80a5\u7684\u9053\u8def\u4e0a\u5403\u5de7\u514b\u529b\u3002"} +{"id": "2005469", "video_name": "6f03989c-4462-56cb-8083-e309a4bb918b", "text": "\u5973\u5b69\u8d70\u8def\uff0c\u8349\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u592a\u9633\u5347\u8d77\uff0c\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "1004099", "video_name": "4be18ae2-dfb9-559f-84ba-aa48dfd6ca13", "text": "\u4e00\u540d\u5973\u5b50\u6500\u722c\u4e00\u6761\u901a\u5411\u9876\u697c\u7684\u65e7\u697c\u68af\u3002"} +{"id": "4004585", "video_name": "69157405-3e4c-5624-8af9-f4d143e81b63", "text": "\u4e00\u53f0\u7535\u8111\u5411\u8c03\u5236\u89e3\u8c03\u5668\u3001\u623f\u95f4\u30014K\u53d1\u9001\u6570\u636e\u5305\u3002"} +{"id": "8003793", "video_name": "7c5789bb-749a-5861-a8eb-b2432a5ef56c", "text": "\u4e00\u53ea\u5de8\u9f99\u964d\u843d\u5728\u4e00\u7247\u88ab\u8001\u65e7\u98de\u673a\u6b8b\u9ab8\u8986\u76d6\u7684\u68ee\u6797\u4e2d\uff0c\u753b\u9762\u5982\u540c\u7535\u5f71\u4e00\u822c\u3002"} +{"id": "0005746", "video_name": "2083e11e-7582-5167-8f49-43aedc3cfa6c", "text": "\u4e00\u7fa4\u5e2e\u6d3e\u6b63\u5728\u8c6a\u534e\u522b\u5885\u91cc\u805a\u4f1a\u559d\u9152\u3002"} +{"id": "0005519", "video_name": "1c324803-a3d8-55d3-a690-d9e9c45b39f8", "text": "\u5916\u661f\u4eba\u7a7f\u7740\u76d4\u7532\u7ad9\u5728\u5bab\u6bbf\u524d\u5fae\u7b11\uff0c\u5bab\u6bbf\u706f\u5149\u7167\u8000\uff0c\u753b\u9762\u7f29\u5c0f\uff0c\u7b49\u5f852\u79d2\u540e\u518d\u653e\u5927\u3002"} +{"id": "4003746", "video_name": "87424dd0-3fea-5d39-9e84-9d8dab9cba0e", "text": "\u5728\u6e56\u548c\u68ee\u6797\u7684\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u6709\u4e00\u573a\u6d3e\u5bf9\uff0c\u6709\u4e00\u79cd\u9999\u6c34\u5473\u3002 \n\nSource sentence: I am looking forward to seeing you tomorrow."} +{"id": "3004763", "video_name": "a2b07ac4-cd0b-516a-aca9-ca2aa01c9895", "text": "\u505c\u6b62\u52a8\u753b\u9ab7\u9ac5\u3002\u903c\u771f\u7684\uff0c\u884c\u8d70\u7684\uff0c\u6ef4\u6f0f\u878d\u5316\u7684\u76ae\u80a4\uff0c4K\uff0c\u7535\u5f71\u9662\uff0c16\uff1a9\u7684\u5bbd\u9ad8\u6bd4"} +{"id": "7002330", "video_name": "87ff2524-18d3-55f7-9d4e-f6c2b2e30ef8", "text": "\u536b\u661f\u5728\u65e5\u843d\u65f6\u5728\u516c\u8def\u4e0a\u7740\u9646\uff0c\u70df\u82b1\u5728\u80cc\u666f\u4e2d\u7efd\u653e\u3002"} +{"id": "7002639", "video_name": "e608c6b7-fa58-557f-bba4-28c01875615a", "text": "\u6d6a\u6f2b\u7684\u590d\u53e4\u5367\u5ba4\uff0c\u53ef\u4ee5\u6b23\u8d4f\u7f8e\u666f\u3002\u6c1b\u56f4\u6216\u6c14\u6c1b\uff1a\u6d6a\u6f2b\u3002\u5ba4\u5185\u8bbe\u8ba1\u98ce\u683c\uff1a\u590d\u53e4\u3002"} +{"id": "1003594", "video_name": "422ef742-7f63-5f95-afc9-dc3fb136d6ac", "text": "\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u7684\u753b\u4f5c\uff0c\u753b\u7684\u662f\u7a7f\u7740\u7761\u888d\u7684\u5973\u4eba\u88ab\u9b54\u9b3c\u5f15\u8bf1\u7684\u573a\u666f\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0005247", "video_name": "17336bcd-21aa-5feb-9da4-36e7d9073d90", "text": "\u53f2\u8482\u592b\u4ee5\u707f\u70c2\u7684\u5fae\u7b11\u5f00\u59cb\u4e86\u4ed6\u7684\u4e00\u5929\u3002\u4ed6\u671b\u7740\u7a97\u5916\uff0c\u51dd\u89c6\u7740\u8ff7\u4eba\u7684\u68ee\u6797\u3002"} +{"id": "1004895", "video_name": "5a6bf414-3dfa-5690-98e6-513be0d2bfbc", "text": "\u6d77\u6d6a\u5728\u65e0\u5c3d\u7684\u5929\u7a7a\u4e0b\u8ff7\u4eba\u5730\u8d77\u4f0f\u3002"} +{"id": "3005360", "video_name": "6d2e2dcd-af49-5d31-9d3b-b9ec60b10d5c", "text": "\u62bd\u8c61\u52a8\u753b\u770b\u8d77\u6765\u50cf\u662f\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u548c\u8d6b\u7f57\u5c3c\u7a46\u65af\u00b7\u535a\u4e16\u7684\u753b\u4f5c\uff0c\u5230\u5904\u90fd\u6709\u82b1\u6735\u751f\u957f"} +{"id": "1005803", "video_name": "6ac0f7f8-735d-546e-8fe5-f89c42f00b3f", "text": "\u6d77\u4e2d\u6e38\u6cf3\u7684\u6d77\u8c5a\u3002\u4fe1\u606f\uff1a\u91ce\u751f\u3002"} +{"id": "8002761", "video_name": "649c58a2-b569-5377-9461-a04b1e860f06", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5b69\u5b50\u6210\u957f\u4e3a\u6210\u5e74\u4eba\u5e76\u9762\u5bf9\u4eba\u751f\u4e2d\u7684\u8270\u96be\u6311\u6218\u7684\u65f6\u95f4\u6d41\u901d\u3002\u5361\u901a\u98ce\u683c\u3002\u611f\u4eba\u7684\u300216:9\u3002"} +{"id": "7002531", "video_name": "f09dd8af-2666-5808-8653-577c2ce8d007", "text": "\u4e00\u53ea\u516c\u9e21\u4ece\u6811\u4e0b\u98de\u8d77\u3002"} +{"id": "7002576", "video_name": "528d0b79-ed00-5305-b75e-af4e6d2cf38d", "text": "\u4e00\u4f4d\u5973\u9b3c\u5728\u57ce\u5e02\u4e2d\u6e38\u8361\uff0c\u67092k\u63d2\u56fe\uff0c\u8272\u5f69\u9c9c\u660e\u3002"} +{"id": "1005457", "video_name": "64474ac0-ae87-5ab9-80e1-126d33d684ce", "text": "\u6b66\u58eb\u5728\u9634\u68ee\u7684\u68ee\u6797\u80cc\u666f\u4e0b\u3002"} +{"id": "7002938", "video_name": "e7108eb1-9a87-5904-97e7-d682cbd6d281", "text": "10\u79d2\u7684\u52a8\u6f2b\u4e2d\u6709\u4e0d\u540c\u7684\u89d2\u8272\u3002"} +{"id": "3003733", "video_name": "11a111f6-4408-582e-b3aa-da31363b317d", "text": "\u4e00\u4e2a\u5728\u96c5\u5178\u536b\u57ce\u7684\u7535\u89c6\u5c4f\u5e55\u4f5c\u4e3a\u8138\u7684\u673a\u5668\u4eba\uff0c4k\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "4002790", "video_name": "b2ffa533-eb48-5ff1-8874-a9c228220580", "text": "\u672c\u5c3c\u548c\u8482\u7c73\u6b63\u5728\u4e3a\u4ed6\u4eec\u7684\u7b4f\u5b50\u6536\u96c6\u6811\u53f6\u548c\u6811\u679d\u3002 \u513f\u7ae5\u6545\u4e8b"} +{"id": "7002552", "video_name": "9596b422-0f46-5e0e-842c-4c1ae15196eb", "text": "\u8857\u9053\u62e5\u6324\uff0c\u8f66\u6d41\u4e0d\u606f\uff0c\u7ebd\u7ea6\u4eba\u4eec\u5954\u8dd1\uff0c\u5efa\u7b51\u5de5\u5730\uff0c\u5927\u9053\uff0c\u4ea4\u901a\u7e41\u5fd9\uff0c\u52a8\u611f\u5341\u8db3\u3002"} +{"id": "5001539", "video_name": "ca358071-6761-5268-a074-58d73a290b60", "text": "\u9ed1\u8272\u72d0\u72f8\uff0c\u80cc\u666f\u6709\u8702\u5de2\u56fe\u6848\u3002\n\nSource sentence: I would like to order a bowl of noodles with beef. \n\u6211\u60f3\u70b9\u4e00\u4efd\u725b\u8089\u9762\u3002"} +{"id": "3005483", "video_name": "f3c71149-6203-5449-8709-65176573cb4a", "text": "\u4e00\u53ea\u9ed1\u8272\u7684\u591c\u6e38\u732b\uff0c\u5728\u660e\u4eae\u7684\u591c\u7a7a\u4e0b\u95ea\u8000\u7740\u660e\u4eae\u7684\u773c\u775b\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004666", "video_name": "2c958c5d-fdaa-5c92-8a0b-f41a37ee9fdd", "text": "\u4e00\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\uff0c\u505a\u771f\u5b9e\u5199\u5b9e\u7684\u4eba\u50cf\u6444\u5f71\uff0c\u5411\u4e0a\u62ac\u8d77\u4e00\u6761\u817f\u62cd\u7167\u3002"} +{"id": "4004863", "video_name": "98fc556a-18e0-53d7-8d6f-9ea41c8cf27e", "text": "\u5b69\u5b50\u4eec\u4e0d\u5728\u5bb6\u65f6\uff0c\u5988\u5988\u4eec\u4f1a\u73a9\u5f97\u5f00\u5fc3\u3002"} +{"id": "4004531", "video_name": "b599e843-807a-580d-86e1-18c215cb35ec", "text": "\u4e00\u500b\u7531\u9ed1\u8272\u7684\u7159\u9727\u7d44\u6210\u3001\u975e\u5e38\u7626\u9577\u800c\u795e\u79d8\u7684\u8eab\u5f71\u5f9e\u4e00\u5ea71920\u5e74\u4ee3\u7684\u8c6a\u5b85\u6a13"} +{"id": "1003318", "video_name": "3d20dfff-ea13-5232-bc88-3769aedcf118", "text": "\u6751\u5e84\u91cc\u9ad8\u7d20\u8d28\u7684\u4eba\u4e0e\u5750\u7740\u738b\u5ea7\u7684\u56fd\u738b\u4ea4\u8c08\u3002"} +{"id": "6002592", "video_name": "0d7ca099-5d5c-5300-a6d7-9e4434c92f2f", "text": "\u7f8e\u4e3d\u68ee\u6797\u91cc\u7684\u5973\u5b69\uff0c\u8ff7\u4eba\u7684\u68ee\u6797\uff0c\u65e9\u6668\u65f6\u5149\uff0c\u7f8e\u4e3d\u7684\u52a8\u7269\u3002"} +{"id": "2003635", "video_name": "77f5df55-f493-5104-9869-eedf48c87137", "text": "\u8ba9\u5934\u53d1\u52a8\u8d77\u6765\uff0c\u8ba9\u773c\u775b\u52a8\u8d77\u6765\uff0c\u547c\u5438\u3002"} +{"id": "8002157", "video_name": "5839ce95-de9d-5312-8cb0-4b0b9ca648d7", "text": "\u5c55\u793a\u4e00\u4e2a\u5145\u6ee1\u9b45\u529b\u7684\u89c6\u9891\u7247\u6bb5\uff0c\u5fd9\u788c\u7684\u8d38\u6613\u6e2f\u53e3\u3001\u76ee\u7684\u660e\u786e\u7684\u5de8\u578b\u8d27\u8239\u3001\u7cbe\u51c6\u64cd\u4f5c\u7684\u8d77\u91cd\u673a"} +{"id": "6003437", "video_name": "de4fde88-eece-53e4-84f7-ca9ef5d2e5fd", "text": "\u73b0\u4ee3\u5973\u6027\uff0c\u5377\u53d1\uff0c\u94f6\u9c7c\u773c\uff0c\u5546\u4e1a\u5973\u6027\uff0c\u6b63\u9762\u89c6\u56fe\u3002"} +{"id": "6004412", "video_name": "9be74ff0-f6b2-5639-8f0e-df129705f669", "text": "\u65f6\u95f4\u65c5\u884c\u548c\u6c38\u751f\u7684\u795e\u79d8\u4e4b\u5904\u3002"} +{"id": "4003452", "video_name": "7f5b2113-f655-515b-b550-d63bda7fd254", "text": "\u5173\u4e8e\u5b87\u5b99\u7684\u795e\u79d8\u6027\uff0c\u5f3a\u8c03\u5176\u6df1\u8fdc\u7684\u610f\u4e49\uff0c\u5e76\u5c06\u5929\u4f53\u4e0e\u6211\u4eec\u81ea\u5df1\u7684\u5b58\u5728\u8fdb\u884c\u6bd4\u8f83\u3002"} +{"id": "8003941", "video_name": "18d36244-226d-5b22-bb81-fbbfb81364f6", "text": "\u7535\u5f71\u5316\u7684\u65f6\u5c1a\u573a\u666f\uff08\u5df4\u9ece\u4e16\u5bb6\u98ce\u683c\u65f6\u88c5\u79c0\uff0c\u9ed1\u8272\u76ae\u9769\uff0c\u4e73\u80f6\uff0c\u84ec\u677e\u5927\u8863\uff0c\u77ed"} +{"id": "1005431", "video_name": "63c325ff-d605-526c-a18a-28b83384a34f", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u53ea\u5c71\u7f8a\u5728\u519c\u573a\u91cc\u5e72\u6d3b\u3002"} +{"id": "0003636", "video_name": "40d5fc96-d9ac-50e9-a383-a50c382cefe3", "text": "\u8ba9\u5b69\u5b50\u4eec\u8d70\u8def\u3002\u8ba9\u5929\u7a7a\u4e2d\u7684\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "8003513", "video_name": "d7c730b9-571b-5f32-8db7-a2d500cefc9b", "text": "\u8b66\u5bdf\u5e26\u7740\u4e00\u53ea\u53ef\u7231\u7684\u8fbe\u5c14\u9a6c\u63d0\u4e9a\u72ac\u5728\u8857\u4e0a\u8d70\uff0c\u8fd9\u662f\u9ecf\u571f\u52a8\u753b\u3002"} +{"id": "1004244", "video_name": "4e88f2e6-191a-512e-aef0-6ed46a531c9e", "text": "\u5361\u901a\u5973\u5b69\u5750\u5728\u684c\u524d\uff0c\u4e13\u6ce8\u5730\u4fef\u8eab\u770b\u4e66\u3002\u5979\u770b\u7740\u4e66\uff0c\u7136\u540e\u5199\u5728\u7b14\u8bb0\u672c\u4e0a\uff0c\u8ba4\u771f\u5b66\u4e60\u3002"} +{"id": "1003163", "video_name": "3a43dc5d-297a-56c2-9bce-9a50433f458b", "text": "\u8d85\u81ea\u7136\u7684\u9b3c\u9b42\u8ddf\u968f\u7740\u706f\u5149\u5728\u623f\u95f4\u91cc\u7184\u706d\u3002"} +{"id": "1003202", "video_name": "3aed299e-e7ed-5ef4-abad-d4eca5ed97b1", "text": "\u4e00\u4e2a\u88c5\u7740\u6c99\u5b50\u7684\u7f50\u5b50\u4e0a\u4e0b\u98a0\u7c38\uff0c\u5c31\u50cf\u5728\u6643\u52a8\u7f50\u5b50\u3002"} +{"id": "3006129", "video_name": "58e38fc6-8240-5dd8-8b5a-f543b301695d", "text": "\u4ed6\u4eec\u5728\u4e00\u4e2a\u5145\u6ee1\u751f\u6c14\u7684\u5916\u56fd\u5e02\u573a\u4e2d\u63a2\u7d22\uff0c\u56db\u5468\u662f\u5145\u6ee1\u6d3b\u529b\u7684\u989c\u8272\u3001\u5f02\u56fd\u60c5\u8c03\u7684\u6c14\u5473\u548c\u65b0\u6587\u5316\u7684\u80fd"} +{"id": "1006947", "video_name": "7f26aaf5-f5e1-55b9-a71f-b4ded5b4f152", "text": "\u4e00\u6761\u4e24\u65c1\u6709\u623f\u95f4\u7684\u8d70\u5eca\uff0c\u9713\u8679\u706f\u95ea\u70c1\u7740\u3002\u7f29\u5c0f\u753b\u9762\u3002"} +{"id": "2004836", "video_name": "186c6b35-7fac-5733-82ef-9f681858babd", "text": "\u5e74\u8f7b\u7537\u5b50\u624b\u6301\u5251\uff0c\u9a91\u9a6c\u800c\u884c\uff0c\u5934\u4e0a\u6709\u4e00\u4e2a\u5b57\uff0c\u8fd9\u4e2a\u5b57\u662f\u201cyanime\u201d\u3002"} +{"id": "6002617", "video_name": "f66156af-143a-5816-b558-cee620fac2c0", "text": "\u4eba\u4eec\u56e0\u6d77\u5578\u6b7b\u4ea1\u3002"} +{"id": "7004166", "video_name": "b0e91636-447a-5f1e-8dec-acef110a9378", "text": "\u4e00\u7247\u5e26\u6709\u68d5\u6988\u6811\u548c\u6ce2\u6d6a\u7684\u6d77\u6ee9\uff0c\u5c55\u73b0\u4ece\u65e5\u51fa\u5230\u65e5\u843d\u7684\u7f8e\u4e3d\uff0c\u662f\u4e00\u6574\u5929\u7684\u6d77\u6ee9\u4e4b\u7f8e\uff0c\u6c99"} +{"id": "4002341", "video_name": "0535b464-77cf-52f3-b7dc-5caaec734bbc", "text": "\u4e00\u4e2a\u9ed1\u6697\u7f51\u7edc\u7ea6\u4f1a\u5e94\u7528\u7684UI\u754c\u9762"} +{"id": "7003540", "video_name": "8d0247d3-f737-51e3-a948-a030bc83825b", "text": "\u5c55\u793a\u5e7f\u544a\u6750\u6599\uff1a\u5496\u5561\u6e85\u6cfc\u76d8\u65cb\u3002"} +{"id": "1006822", "video_name": "7cca0c25-9619-528c-b589-359fcf5e7dcb", "text": "\u8fd9\u6b21\u6563\u6b65\u671f\u95f4\uff0c\u8001\u4eba\u7a81\u7136\u5fc3\u810f\u75c5\u53d1\u4f5c\u5012\u5730\u3002"} +{"id": "0003512", "video_name": "3ecfe410-5395-565b-8d00-f62c19c6bf33", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u6e38\u620f\u73af\u5883\u4e2d\u5c55\u793a\u300a\u8352\u91ce\u5927\u9556\u5ba22\u300b\u4e2d\u7684\u4e9a\u745f\u00b7\u6469\u6839\u4f11\u606f\u7684\u573a\u666f\u3002"} +{"id": "2006044", "video_name": "69269dfb-751b-5e14-b5f3-040d0f7a2993", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u673a\u5668\u4eba\uff0c\u5934\u90e8\u5448\u65e7\u7535\u89c6\u7684\u5f62\u72b6\uff0c\u5411\u6bcf\u4e2a\u4eba\u6253\u62db\u547c\u3002"} +{"id": "1006935", "video_name": "7edcbd4f-bacd-55e1-a14d-7b8cdb163e50", "text": "\u5728\u68a6\u5e7b\u7684\u98ce\u683c\u4e2d\uff0c\u602a\u5f02\u7684\u6050\u6016\u751f\u7269\u6f02\u6d6e\u5728\u591c\u7a7a\u661f\u7a7a\u4e2d\u3002"} +{"id": "2005107", "video_name": "c88b9e72-04bc-5396-a445-43e2da98a844", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7684\u4f10\u6728\u5de5\u7ad9\u5728\u4ed6\u7684\u5bb6\u91cc\uff0c\u6709\u4e00\u4f4d\u76f2\u76ee\u7684\u6bcd\u4eb2\u548c\u59bb\u5b50\u5728\u4ed6\u7684\u5c0f\u5c4b\u91cc\u3002\u786e\u4fdd\u4ed6\u7684\u5c0f\u5c4b\u91cc"} +{"id": "8001202", "video_name": "24c6537a-dbec-5ca2-ab8e-e10ed8f88166", "text": "\u795d\u8d3a\u4e00\u4e2a\u5973\u5b69\u4e00\u5468\u5e74\u7eaa\u5ff5\u65e5\uff0c\u8fd9\u662f\u4e00\u90e8\u611f\u6027\u800c\u771f\u8bda\u7684\u89c6\u9891\uff0c\u89e6\u52a8\u4eba\u5fc3\uff0c\u5c55\u73b0\u4e86\u96be\u4ee5\u7f6e\u4fe1\u7684\u6e29\u67d4\u548c"} +{"id": "8003694", "video_name": "2a77a845-87f9-5d40-be2e-d782f9b86cf0", "text": "\u4e00\u4e2a\u7a7f\u7740\u6821\u670d\u7684\u5c0f\u5973\u5b69\u5728T\u53f0\u4e0a\u8d70\u5411\u6211\u3002\u4e00\u540d\u6a21\u7279\u5728T\u53f0\u4e0a\u8d70\u6765\u8d70\u53bb\u3002"} +{"id": "2003247", "video_name": "eeaf5934-2cdd-5c5b-b511-ec044396c8f9", "text": "\u6df7\u5408\u8393\u679c\u843d\u5728\u767d\u8272\u5730\u677f\u4e0a\u3002"} +{"id": "3006087", "video_name": "5098a1d0-827b-5f61-8c43-fe15d3673f3f", "text": "\u72ec\u7279\u8bbe\u8ba1\u7684\u8fd0\u52a8\u978b\u4ef7\u503c10\u4ebf\u3002"} +{"id": "0003726", "video_name": "427574a2-c8a1-5d0f-9e8c-56f3da74757d", "text": "\u8b66\u65b9\u7684\u76f4\u5347\u673a\u5728\u7a7a\u4e2d\u76d1\u89c6\u72af\u7f6a\u59d4\u5458\u4f1a\uff0c\u771f\u5b9e\u3001\u9ad8\u8d28\u91cf\u3001HDR\u30018K\u3001\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0003674", "video_name": "417f6d79-527a-5722-8878-b56e705bf91a", "text": "\u4e00\u540d\u5973\u5b50\u7a7f\u8fc7\u535a\u7269\u9986\uff0c\u4e0b\u53484:9\u3002"} +{"id": "0006998", "video_name": "3677b3a9-73a2-5f7f-953b-cd3941378480", "text": "\u7535\u5f71\u300a\u6c99\u4e18\u300b\u7684\u60c5\u8282\uff0c\u53d1\u751f\u5728\u6c99\u6f20\u661f\u7403\u963f\u62c9\u57fa\u65af\u7684\u6218\u4e89\u4e2d\uff0c\u91c7\u7528\u97e6\u6069\u00b7\u5df4\u6d1b\u97e6"} +{"id": "0004409", "video_name": "086db630-6e0b-5342-8a74-73befe7ec907", "text": "\u4e00\u4e2a\u5973\u5b69\u7a7f\u7740\u6f02\u4eae\u7684\u70ed\u88d9\u5b50\uff0c\u62cd\u4e86\u4e00\u5f20\u5168\u8eab\u7167\u7247\u3002"} +{"id": "0003851", "video_name": "44985444-3d58-5a8f-a734-239308a95885", "text": "\u6c64\u7c73\u548c\u9b54\u6cd5\u6559\u6388\u5a01\u5179\u73ed\u5728\u5e02\u573a\u4e0a\u9047\u89c1\u4e86\u514b\u5229\u5965\u5e15\u7279\u62c9\u3002\u4ed6\u4eec\u89c1\u8bc1\u4e86\u53e4\u57c3\u53ca\u7684\u65e5\u5e38"} +{"id": "3003071", "video_name": "28b0f4ec-2cad-57bd-b347-a3112588ccd8", "text": "\u4e00\u4e2a\u80cc\u7740\u80cc\u5305\u7684\u808c\u8089\u7537\u5b50\u5728\u6674\u6717\u7684\u82b1\u7530\u4e2d\u6563\u6b65\u3002"} +{"id": "7003025", "video_name": "73ad6622-35dc-5ca4-bfe7-35762c816291", "text": "\u8def\u5fb7\u7ef4\u5e0c\u00b7\u8303\u00b7\u8d1d\u591a\u82ac\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "6003498", "video_name": "5f5b9bdc-146f-582f-a7cd-7d2234fc1b94", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5b69\u5b50\u5728\u8857\u4e0a\u8df3\u821e\u3002"} +{"id": "2006773", "video_name": "9c8bf8e9-f813-5b9a-a278-dfe07e3d52d5", "text": "\u4e00\u7fa4\u6b66\u88c5\u5916\u661f\u4eba\u5728\u706b\u661f\u4e0a\u884c\u8d70\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "0003608", "video_name": "4063e29f-9ec7-57c0-9262-2636270bcb94", "text": "\u8d64\u58c1\u8df3\u821e\u7684\u9752\u86d9\u3001\u9ed1\u5149\u7ed8\u753b\u3001\u9c9c\u8273\u7684\u989c\u8272\u3001\u5149\u5f71\u7ed8\u753b\u3001Burneum\u3001\u672a\u6765\u611f\u5ba4\u5185\u8bbe\u8ba1"} +{"id": "4004247", "video_name": "8f2a804c-4d49-5c4f-8cea-0018e80c20dd", "text": "\u7f51\u7edc\u6444\u50cf\u5934\u9690\u79c1\u4fdd\u62a4\u906e\u76d6\uff0c\u7528\u4e8eiPad\u5e73\u677f\u7535\u8111\u3001Web\u3001\u7b14\u8bb0\u672c\u7535\u8111\u3001\u624b\u673a\u955c\u5934\u7b49\u3002\u91c7\u7528\u78c1\u6027"} +{"id": "3006893", "video_name": "df52335b-457c-59d0-aab7-82ea79e72965", "text": "\u5236\u4f5c\u4e00\u4e2a\u5411\u91cf\u827a\u672f\u56fe\uff0c\u8868\u73b0\u4e00\u4e2a\u7537\u4eba\u62ff\u7740\u624b\u673a\u5e76\u6b63\u5728\u901a\u8bdd\u548c\u53d1\u9001\u97f3\u9891\u3002\u9002\u5e94\u53e3\u578b\u3001\u9762\u90e8\u8868\u60c5\u548c\u624b\u52bf\u6765\u5339\u914d\u751f\u52a8"} +{"id": "3005470", "video_name": "5a885d21-6cd3-5be9-8959-ac56963adbe5", "text": "\u84dd\u8272\u7684\u6c34\uff0c\u6ce2\u6d6a\uff0c\u6eaa\u6d41\uff0c\u6db2\u4f53\u3002"} +{"id": "7004895", "video_name": "448a9dfc-fc56-50f0-a257-5179bd9caa96", "text": "\u98ce\u683c\u7684\u5ea6\u5047\u5c0f\u5c4b\uff0c\u4fef\u77b0\u7740\u6e56\u6cca\u3002\u5b81\u9759\u3001\u7b80\u7ea6\u7684\u8bbe\u8ba1\u3002"} +{"id": "6003433", "video_name": "6ca38fe8-3c4d-50c2-b020-67c630550fa7", "text": "\u4e00\u8258\u6d77\u76d7\u8239\u5728\u6c34\u4e0a\u524d\u8fdb\uff0c\u96f7\u4e91\u6eda\u6eda\uff0c\u96e8\u6c34\u503e\u6cfb\uff0c4k 1080p\u3002"} +{"id": "0005070", "video_name": "144c0963-d6f7-50f8-8b8d-c5d02bdb8e8b", "text": "\u5e0c\u814a\u6218\u58eb\u624b\u6301\u4fe1\u4ef6\u51fa\u73b0\u5728\u7535\u5f71\u955c\u5934\u4e2d\u3002"} +{"id": "0004889", "video_name": "10f7e358-e091-5b36-b461-55145843cdc5", "text": "\u8fdb\u884c\u7b80\u5355\u800c\u5b89\u5168\u7684\u79d1\u5b66\u5b9e\u9a8c\uff0c\u8ba9\u5b69\u5b50\u4eec\u80fd\u591f\u8f7b\u677e\u5730\u5728\u5bb6\u91cc\u590d\u5236\uff0c\u4f7f\u5b66\u4e60\u57fa\u7840\u79d1\u5b66\u6982\u5ff5\u53d8\u5f97\u4ee4\u4eba"} +{"id": "8001671", "video_name": "29ceb625-e3b8-56c0-8a2e-7a837876d818", "text": "\u4e00\u4e2a\u6c89\u8ff7\u4e8e\u624b\u673a\u7684\u4eba\uff0c\u4f7f\u7528\u624b\u673a\uff0c\u773c\u775b\u7741\u5f00\uff0c\u80cc\u666f\u5e94\u8be5\u662f\u5de6\u53f3\u5404\u6709\u7ea2\u8272\u548c\u84dd\u8272\u7684\u77e2\u91cf\u56fe\u3001\u52a8\u6001\u56fe"} +{"id": "0003813", "video_name": "43f464eb-d726-526e-81fe-9b9f802664ef", "text": "\u9a6c\u54c8\u8302\u5fb7\u00b7\u827e\u54c8\u8fc8\u8fea\u5185\u8d3e\u5fb7\u5728\u5df4\u9ece\u9a7e\u9a76\u7740\u4e00\u8f86\u4e30\u7530\u9646\u5730\u5de1\u6d0b\u8230\u3002"} +{"id": "7004413", "video_name": "75c068a8-fbf1-55ae-b784-1f5c09c378e6", "text": "\u6751\u843d\u91cc\u7684\u6f02\u4eae\u5c0f\u975e\u6d32\u5973\u5b69\u3002"} +{"id": "6002181", "video_name": "401c1c9a-cbb4-528d-b293-430f8392bc17", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6708\u5149\u4e0b\u591c\u8dd1\u5728\u9ed1\u6697\u7684\u8def\u4e0a\uff0c35\u6beb\u7c73\uff0c\u80f6\u7247\u3002"} +{"id": "1003713", "video_name": "4481e770-a4dc-52b8-9271-4fe8049ce634", "text": "\u5e74\u5e74\u5c81\u5c81\u82b1\u76f8\u4f3c\uff0c\u5c81\u5c81\u5e74\u5e74\u4eba\u4e0d\u540c\u3002\u6625\u98ce\u4e0d\u5ea6\u7389\u95e8\u5173\uff0c\u4f55\u5904\u5439\u82b1\u843d\u8c01\u5bb6\uff1f\u9f99\u98de\u51e4\u821e"} +{"id": "2004811", "video_name": "08890665-67e2-5517-81e1-2c64dc32aa90", "text": "\u75af\u72c2\u7684\u6d41\u884c\u65f6\u523b\uff0c\u7f29\u5c0f\u753b\u9762\uff0c\u5411\u5de6\u5e73\u79fb\u3002"} +{"id": "2003596", "video_name": "c259909d-b2ac-5771-9396-ffbda46943bc", "text": "\u7ea6\u7ff0\u00b7\u5217\u4fac\u5728\u5e10\u7bf7\u91cc\u548c\u4e00\u4f4d\u8001\u592a\u592a\u4e00\u8d77\u770b\u6f2b\u753b\u4e66\u3002 \n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u6b63\u5728\u6905"} +{"id": "2003185", "video_name": "a89cdd72-70a7-5d5d-8c9b-579ad2357b43", "text": "\u4e00\u7247\u7eff\u8349\u5730\u7684\u666f\u8c61"} +{"id": "4002369", "video_name": "ce970c2b-66df-5261-ad53-d92c6e59d12d", "text": "\u5916\u661f\u4eba\u63a5\u543b\u76f8\u673a\u6781\u7b80\u98ce\u683c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u56fe\u6848\uff0c\u9ad8\u6e05\uff0c8K\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u6700\u4f73\u54c1\u8d28\u3002"} +{"id": "8001827", "video_name": "6c5b8cdb-6299-5f73-81a6-3ce243a316aa", "text": "\u63a0\u98df\u8005\u7535\u5f71\u98ce\u683c\uff0c\u63a0\u98df\u8005\u85cf\u5728\u4e1b\u6797\u6811\u4e0a\u4fef\u89c6\u4e00\u7ec4\u58eb\u5175\u3002"} +{"id": "6002804", "video_name": "6878c769-d36c-5eaf-88a4-b23f0ef8eecd", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u81ea\u884c\u8f66\u8fdb\u5165\u592a\u7a7a"} +{"id": "7004406", "video_name": "c9bdc6e9-86ca-5d2a-bc5a-52a9e2ca4874", "text": "\u5728\u7e41\u5fd9\u7684\u5a92\u4f53\u673a\u6784\u5de5\u4f5c\u7684\u4eba\u4eec\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u591c\u665a\u3002"} +{"id": "3003755", "video_name": "17ed11b4-d2fb-5abf-b5ff-b28fea9e01b5", "text": "\u76f4\u63a5\u6784\u56fe\uff0c\u84dd\u8272\u76d2\u5b50\u4f4d\u4e8e\u73bb\u7483\u684c\u5b50\u7684\u4e2d\u5fc3\uff0c\u76d2\u5b50\u662f\u7531\u900f\u660e\u73bb\u7483\u5236\u6210\uff0c\u67d4\u548c\u7684\u53cd\u5c04\u4f7f"} +{"id": "2007135", "video_name": "0f9dba3d-1a08-552c-9657-2f7f828ffb7b", "text": "\u5168\u666f360\u5ea6\u6d77\u666f\u89c6\u9891\uff0c\u62cd\u6444\u5230\u80cc\u666f\u7684\u57ce\u9547\u548c\u65e5\u843d\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "6004201", "video_name": "ba6c2af9-6d3e-5025-8192-7984f5de50a0", "text": "\u7c89\u8272\u5b87\u822a\u5458\u8dd1\u6b65\uff0c\u5934\u76d4\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u4ee4\u4eba\u5174\u594b\u3002"} +{"id": "8003537", "video_name": "df3f9933-6a3a-5b0f-90bf-897a954d8d4f", "text": "\u4e00\u4e2a\u8eab\u7a7f\u8c79\u76ae\u8863\u7684\u53e4\u8001\u4eba\u7ad9\u5728\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u886c\u886b\u548c\u88e4\u5b50\u7684\u73b0\u4ee3\u4eba\u65c1\u8fb9\uff0c\u80cc\u666f\u662f\u767d\u8272\u7684\u3002"} +{"id": "1003246", "video_name": "3bc7d135-a40f-5a0c-82fb-69bb6f39493e", "text": "5\u4e2a\u84b8\u6c7d\u670b\u514b\u4e3b\u9898\u7684\u53a8\u5e08\u5728\u6d77\u8fb9\u70f9\u996a\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u7684RPG\u3002"} +{"id": "3005054", "video_name": "287a6cdb-eb7f-51fc-be3f-3a36af41c643", "text": "\u4e00\u4e2a\u7537\u4eba\u8dcc\u5012\u5728\u4e00\u4e2a\u6697\u7ea2\u8272\u7684\u623f\u95f4\u91cc\uff0c\u5730\u677f\u548c\u5899\u58c1\u90fd\u662f\u6697\u7ea2\u8272\u7684\uff0c\u660e\u4eae\u7684\u767d\u5149\u900f\u8fc7\u7a97\u6237"} +{"id": "6003072", "video_name": "48049c32-ddb3-599c-8429-b0b0448d70df", "text": "\u6298\u5c04\u8272\u8c31\uff0c\u4fe1\u606f\uff1a\u7c89\u7ea2\u5f17\u6d1b\u4f0a\u5fb7\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004714", "video_name": "bf9477bf-18f8-5a83-a034-faa94091644f", "text": "\u9a6c\u65af\u514b\u4e58\u5750\u706b\u7bad\u8fdb\u5165\u592a\u7a7a\u3002"} +{"id": "2006590", "video_name": "d624202e-9367-5c46-a0b0-e9a81fbeae09", "text": "\u5f53\u9633\u5149\u7167\u8fdbKiki\u5c0f\u5973\u5b69\u7684\u623f\u95f4\u65f6\uff0c\u5979\u7684\u773c\u775b\u95ea\u95ea\u53d1\u5149\uff0c\u5c31\u50cf\u4e24\u9897\u95ea\u8000\u7684\u661f\u661f\u3002\u5979\u662f"} +{"id": "2003221", "video_name": "ad133000-856d-55f7-b24f-cf6ed5b3c9ca", "text": "\u6cf0\u7c73\u5c14\u56fd\u738b\u548c\u8b66\u536b\u9a91\u7740\u5927\u8c61\u884c\u8d70\uff0c\u6709\u79fb\u52a8\u548c\u52a8\u753b\u3002"} +{"id": "0003404", "video_name": "3d12e851-ddee-531b-9f8d-5185fc835d53", "text": "\u4f20\u8bf4\u4e2d\u5b83\u80fd\u591f\u5f15\u5bfc\u6700\u7eaf\u7cb9\u7684\u9b54\u6cd5\u3002"} +{"id": "1006622", "video_name": "796e1103-844f-55e9-8efc-ee329b46a3df", "text": "\u65f6\u95f4\u65c5\u884c\u7684\u592a\u7a7a\u8239\u7a7f\u8d8a\u5b87\u5b99\u7f51\u7edc\u3002"} +{"id": "0005668", "video_name": "1f053dda-83b0-5ef0-9d31-45fd51be768e", "text": "\u5f53\u65f6\u673a\u5230\u6765\u65f6\uff0c\u5973\u738b\u518d\u6b21\u751f\u4e0b\u4e86\u4e00\u4e2a\u513f\u5b50\u3002"} +{"id": "2004475", "video_name": "fb6d91d7-3f54-5ebf-a431-be6ff895018e", "text": "\u4e00\u4f4d\u5e26\u7740\u5ba0\u7269\u5728\u4e1b\u6797\u91cc\u6563\u6b65\u7684\u5973\u5b69\u3002"} +{"id": "8002116", "video_name": "6c70e2e0-ab0b-57a0-aea7-712a0db92e9c", "text": "\u5370\u5ea6\u6cf0\u59ec\u9675\u4e0a\u7684\u70df\u82b1\u55b7\u5c04\u3002"} +{"id": "6002327", "video_name": "04c9cce6-96cd-576c-afde-ca1d4dc2a8f2", "text": "\u5353\u6717\u738b\u671d\u7684\u8239\u961f\u5411\u5370\u5ea6\u5c3c\u897f\u4e9a\u8fdb\u53d1\u4f5c\u6218\u3002\u521b\u9020\u4e00\u5e45\u6218\u8239\u63a5\u8fd1\u5370\u5ea6\u5c3c\u897f\u4e9a\u7684\u573a\u666f"} +{"id": "2004508", "video_name": "5c5c9d7a-1618-511a-bce8-41965b7fa370", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u53ef\u6015\u7684\u8857\u9053\u8fb9\u9192\u6765\u7684\u4eba\u3002"} +{"id": "3006618", "video_name": "10282191-b4fe-5d3f-8f58-eb1e316ca87f", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u66fe\u7ecf\u5145\u6ee1\u751f\u673a\u7684\u6e7f\u5730\uff0c\u5982\u4eca\u53d8\u5f97\u5e72\u88c2\u65e0\u6bd4\u3002\u89c6\u9891\u7684\u4e3b\u9898\u5e94\u8be5\u662f\u5e72\u6db8\u7684\u571f\u5730"} +{"id": "3004671", "video_name": "e1dd254d-7279-5388-8a15-15747b70f3a3", "text": "\u63d2\u56fe\uff1a\u4e00\u4e2a\u6709\u673a\u7ec6\u80de\u5f62\u72b6\u7684\u5361\u901a\u89d2\u8272\u8d70\u5411\u8fdc\u65b9\u3002"} +{"id": "2004128", "video_name": "b76cb4b2-33d6-55ed-864e-d3f57062cc5c", "text": "\u5c0f\u72d7\u5728\u5954\u8dd1\u65f6\u4f1a\u957f\u5927\u5e76\u53d8\u6210\u72ee\u5b50\u3002"} +{"id": "4004050", "video_name": "f42239b3-6d5e-5182-8f63-3bb1eee108af", "text": "\u5728\u96e8\u6797\u4e2d\u98de\u7fd4\u7684\u9e1f"} +{"id": "7004634", "video_name": "7a48e495-5aa7-51ca-a7e5-08a091f63654", "text": "\u793e\u533a\u3001\u4eba\u53e3\u7edf\u8ba1\u3001\u6587\u5316\u56e0\u7d20\u548c\u793e\u4f1a\u52a8\u6001\u3002"} +{"id": "5001520", "video_name": "ee14fbbd-b5b4-572c-ad7f-39362aba92ef", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u9b3c\u602a\u964d\u4e34\uff0c\u6050\u6016\u7ec6\u8282\u4e4b\u6781\uff0c\u903c\u771f\u81f3\u6781\u3002"} +{"id": "0005661", "video_name": "1ee112ac-6cbd-51f5-9447-9458b1f85ae6", "text": "\u9ed1\u80f6\u5531\u7247\u673a\uff0c\u9ed1\u80f6\u5531\u7247\u65cb\u8f6c\u3002"} +{"id": "8003968", "video_name": "5ddce48a-58f3-5010-91a1-7075893d9583", "text": "\u60f3\u8c61\u5de6\u8fb9\u7684\u7537\u5b69\u6b63\u5728\u5145\u6ee1\u70ed\u60c5\u5730\u8c08\u8bba\u67d0\u4ef6\u4e8b\u60c5\u3002"} +{"id": "6002337", "video_name": "c29a68f3-829f-5aba-a7d7-dd21c41127c9", "text": "\u73b0\u5b9e\u7248\u7684\u7d22\u5c3c\u514b\u5c0f\u5b50\u624b\u5076\u5954\u8dd1\u3002"} +{"id": "8003259", "video_name": "e891254a-3fc2-5a8d-9769-53acb078ee3a", "text": "\u57ce\u5e02\u4e2d\u7684\u4e00\u6761\u8857\u9053\uff0c\u591c\u665a\uff0c\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u3002"} +{"id": "7003492", "video_name": "e60cc340-0ece-512a-9ad6-6bed05a9eb96", "text": "\u4e00\u53ea\u61d2\u6d0b\u6d0b\u7684\u732b\u5728\u6811\u4e0b\u3002 \n\nSource sentence: I like to eat pizza for dinner. \n\u6211\u559c\u6b22\u665a\u9910\u5403\u62ab\u8428\u3002"} +{"id": "4004489", "video_name": "a8057e7a-d21e-5ae5-8186-f79ac316800f", "text": "\u4e00\u4e2a\u4eba\u5728\u6811\u95f4\u98de\u7fd4\u3002"} +{"id": "6002332", "video_name": "a841ac4f-2184-5570-8d26-41f71a156ca3", "text": "\u7f8e\u4e3d\u7684\u5355\u4e2a\u91d1\u5e01\u5728\u7a7a\u4e2d\u7ffb\u8f6c\uff0c\u8109\u52a8\u7684\u91d1\u8272\u80fd\u91cf\uff0c\u5728\u7eaf\u9ed1\u8272\u80cc\u666f\u4e0b\uff0c4K\u30018K\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7ffb"} +{"id": "5001885", "video_name": "67b9d74a-bbb8-5232-9a5a-5f04470b7959", "text": "\u8036\u7a23\u5728\u8f89\u714c\u7684\u4e91\u5929\u80cc\u666f\u4e0b\u88ab\u9489\u5728\u5341\u5b57\u67b6\u4e0a\uff0c\u56fe\u50cf\u903c\u771f\uff0c\u7535\u5f71\u8d28\u91cf\u3002"} +{"id": "1005466", "video_name": "646e9433-20ac-50f9-8a94-efdc89c11705", "text": "\u4ee5\u300a\u72d9\u51fb\u624b\u300b\u98ce\u683c\u4e3a\u57fa\u7840\uff0c\u52a0\u5165\u6728\u5076\u5143\u7d20\u7684\u52a8\u4f5c\u7247\u573a\u666f\u3002 \n\nSource sentence: I am planning to visit China next year during the Chinese New Year holiday. \n\n"} +{"id": "8001385", "video_name": "d2003420-6c01-5434-b9de-14e3310539b3", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7f8e\u4e3d\u7684\u8001\u5e08\u6b63\u5728\u6559\u5ba4\u91cc\u7ed9\u5b66\u751f\u4e0a\u897f\u73ed\u7259\u8bed\u8bfe\uff0c\u5979\u662f\u89c6\u9891\u7684\u4e3b\u89d2\u3002"} +{"id": "2005402", "video_name": "20361eff-7c15-5ab6-af39-8f61d85a4b0c", "text": "\u9ed1\u732b\u5728\u53e6\u4e00\u53ea\u732b\u9762\u524d\u6446\u51fa\u653b\u51fb\u59ff\u6001\u3002"} +{"id": "8001197", "video_name": "0f2e6686-1a29-59cd-8653-b72775cb2bba", "text": "\u4e00\u53ea\u72d7\u5728\u7eff\u5730\u4e0a\u8ffd\u9010\u3002"} +{"id": "0004665", "video_name": "0ce821af-1ac7-58ca-9d69-4414ae742e0c", "text": "\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u4e1b\u6797\u4e2d\u7684\u4e00\u5ea7\u5bab\u6bbf\u5728\u4e00\u4e2a\u5c0f\u6c34\u6c60\u4e2d\u5012\u6620\u51fa\u6765\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u8e0f\u5165\u6c34\u6c60\uff0c\u6270"} +{"id": "4002217", "video_name": "267de5e0-7353-5925-b4d0-d548215f27d4", "text": "\u6211\u60f3\u8981\u4e00\u6bb5\u6000\u65e7\u7684\u56de\u5fc6\u89c6\u9891\u3002\u5c31\u50cf\u5728\u6211\u7684\u8111\u6d77\u91cc\uff0c\u4ee5\u201c\u56de\u5fc6\u201d\u4e3a\u8d77\u70b9\u7684\u4e00\u6761\u7ebf\u8fde\u63a5\u5230\u53e6\u4e00\u4e2a\u201c\u672a\u6765\u201d\u7684\u6587\u5b57\uff0c"} +{"id": "7002435", "video_name": "a8091c82-800b-54ab-8270-3bbe0849de6f", "text": "\u4e00\u4e2a\u6c7d\u8f66\u5728\u5341\u5b57\u8def\u53e3\u3002\u53f8\u673a\u5f00\u8f66\u79bb\u5f00\u65f6\u5411\u4f60\u6325\u624b\u3002"} +{"id": "6003370", "video_name": "db7fa731-9be1-5246-ad7c-5b7746fd088f", "text": "\u5c0f\u9547\u4e0a\u4e00\u6240\u5c0f\u5b66\u91cc\u4f4f\u7740\u4e00\u4f4d\u5145\u6ee1\u70ed\u60c5\u7684\u8001\u5e08\uff0c\u5b89\u5fb7\u68ee\u592b\u4eba\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3) \u4fe1\u606f\uff1a\u5b89\u5fb7"} +{"id": "1003661", "video_name": "4369af7e-d9ab-5f9f-b59d-430056328a50", "text": "\u4e00\u5e45\u827a\u672f\u4f5c\u54c1\uff0c\u63cf\u7ed8\u4e86\u57ce\u5e02\u4f0a\u62c9\u59c6\u7684\u5e9f\u589f\u548c\u4eba\u4eec\u7684\u907f\u96be\u573a\u9762\u3002"} +{"id": "2005360", "video_name": "f32dd9b5-89ea-57f4-a08f-965a921fd22c", "text": "\u4e00\u679a\u706b\u7bad\u5728\u53d1\u5c04\u53f0\u4e0a\u7b49\u5f85\u53d1\u5c04\uff0c\u4eba\u4eec\u5728\u591a\u4e91\u7684\u65e5\u5b50\u91cc\u8fdc\u8fdc\u5730\u89c2\u671b\u7740\u3002"} +{"id": "8001145", "video_name": "28b7dc2e-6098-57cc-b3e8-d91d81d06602", "text": "\u4e00\u5ea7\u519c\u820d\u5750\u843d\u5728\u519c\u573a\u4e2d\u592e\uff0c\u5448\u73b0\u51fa\u5b81\u9759\u7684\u666f\u8c61\u3002\u8fd9\u5ea7\u623f\u5b50\u5177\u6709\u4e61\u6751\u98ce\u60c5\uff0c\u5750"} +{"id": "8001137", "video_name": "561b3aea-eb81-5645-8a93-028b7a4bd03f", "text": "\u81f3\u5c11\u5728\u80cc\u666f\u4e2d\u6dfb\u52a010\u4e2a\u4eba\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005748", "video_name": "20860acb-ddae-51c9-a9b4-fcfc1723dd2d", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u65cb\u8f6c\uff0c\u7136\u540e\u53d8\u5f62\u6210\u5357\u74dc\u706f\u3002"} +{"id": "1006317", "video_name": "7399d3a6-da14-5557-9e70-1580da514198", "text": "\u6211\u4ec0\u4e48\u4e5f\u6ca1\u770b\u5230\uff0c\u4ec0\u4e48\u4e5f\u6ca1\u542c\u5230\uff0c\u4ec0\u4e48\u4e5f\u6ca1\u8bf4\u3002"} +{"id": "6004514", "video_name": "4a157e24-b25e-540a-9367-c4078db22379", "text": "\u63cf\u8ff0\u677e\u9f20\u6ee1\u6000\u5e0c\u671b\u7684\u8868\u60c5\u8bb8\u613f\u65f6\uff0c\u4e00\u9897\u6d41\u661f\u5212\u8fc7\u591c\u7a7a\u3002"} +{"id": "2007446", "video_name": "3aecd274-efbb-5b03-a6a9-b3321396d703", "text": "\u6728\u5236\u97f3\u4e50\u76d2\u4e0a\u5370\u6709\"Neaon Hindi\"\u6587\u5b57\uff0c\u8fd8\u6709\u7f8e\u4e3d\u7684\u9713\u8679\u8272\u82b1\u6735\u56fe\u6848\u30024k\uff0car 9:16\u3002"} +{"id": "6002356", "video_name": "c42e81b2-2839-5a1c-a4d0-5ff955ab6836", "text": "\u7535\u5f71\u822c\u65e0\u804a\u7684\u6559\u6388\u5750\u5728\u7535\u8111\u524d\uff0c\u5468\u56f4\u6446\u653e\u7740\u8bb8\u591a\u4e66\u7c4d\u3002"} +{"id": "0004970", "video_name": "12780589-3e5b-5a91-b79f-2d2cb1d661a4", "text": "Robbie\u975e\u5e38\u671f\u5f85\u80fd\u62e5\u6709\u4e00\u4e2a\u670b\u53cb\u5e76\u4ece\u667a\u6167\u7684\u72ee\u5b50\u90a3\u91cc\u5b66\u4e60\uff0c\u6240\u4ee5\u4ed6\u540c\u610f\u4e86\u3002"} +{"id": "8001411", "video_name": "a18a9356-61af-5c10-b69a-b8a72134efe2", "text": "\u68d5\u8272\u5934\u53d1\u548c\u84dd\u8272\u773c\u775b\u7684\u5973\u5b69\u6b63\u5728\u4e0e\u4e00\u4f4d\u8457\u540d\u7684\u6a44\u6984\u7403\u8fd0\u52a8\u5458\u4e3a\u4e00\u4efd\u62a5\u7eb8\u62cd\u7167\u3002"} +{"id": "1003567", "video_name": "41cd013a-d369-5dbd-b47f-d1cb212a7bd4", "text": "\u4e00\u4e2a\u9ad8\u901f\u7684\u5361\u901a\u9c7f\u9c7c\uff0c\u7535\u5b50\u6a59\u8272\uff0c\u62e5\u6709\u5927\u773c\u775b\uff0c\u901a\u8fc7\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4ece\u8336\u58f6\u6e38\u8d70\u800c"} +{"id": "8002706", "video_name": "6c31057d-9af2-5e24-a480-138f56f52a7d", "text": "\u601d\u8003\u7684\u4eba\u4eec\u671b\u7740\u661f\u7a7a\u3002"} +{"id": "0004173", "video_name": "04853db3-30f5-58e8-a17a-0dc2d0968bf7", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u91d1\u53d1\u5973\u5b69\u7a7f\u7740\u4f18\u96c5\u7684\u84dd\u8272\u793c\u670d\u3002 \n\nSource sentence: My favorite food is sushi. \n\n\u6211\u6700\u559c\u6b22\u7684\u98df\u7269\u662f\u5bff"} +{"id": "4002223", "video_name": "c737945e-e09a-5e73-8c69-0d8b501a930d", "text": "\u4e00\u53ea\u624b\u53d8\u6210\u4e86\u8718\u86db\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u4ece\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "7003791", "video_name": "efd133b8-e311-5f40-9fd8-baf55999060e", "text": "\u8001\u7167\u7247\u4e0a\u7684\u4eba\u4eec\u89c2\u770b\u7740\u5929\u7a7a\u3002"} +{"id": "3005932", "video_name": "c5adc1d1-d642-5b75-8068-2985c0592dd0", "text": "\u5b83\u5531\u7740\u4e00\u9996\u6b4c\uff0c\u751c\u7f8e\u800c\u81ea\u7531\uff0c\u4e00\u66f2\u5feb\u4e50\u7684\u65cb\u5f8b\uff0c\u4e3a\u4f60\u548c\u6211\u800c\u5531\u3002"} +{"id": "2007651", "video_name": "0706915e-4e5f-5662-82b9-bd0be181a4f6", "text": "\u4e24\u4e2a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u7684\u5c11\u5973\u5728\u4e00\u4e2a\u767d\u8272\u74f7\u7816\u623f\u95f4\u91cc\u8df3\u821e\u3002\u6bcf\u4e2a\u5973\u5b69\u90fd\u6709\u50cf\u7f8e\u675c\u838e\u4e00\u6837\u7684"} +{"id": "5001830", "video_name": "32b4c4f2-280a-5eb4-89c9-c51836032b49", "text": "\u5728\u9152\u5427\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u684c\u5b50\u65c1\uff0c\u559d\u9152\u548c\u62bd\u70df\uff0c\u88ab\u84dd\u7eff\u8272\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u822c\u7684"} +{"id": "4002003", "video_name": "651f6fab-71fc-5912-8309-b6d2ba1d78f5", "text": "\u5728\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u4e2d\uff0c\u9ad8\u8038\u5165\u4e91\u7684\u6469\u5929\u5927\u697c\u548c\u9713\u8679\u706f\u5149\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537"} +{"id": "2003880", "video_name": "5244ddeb-4159-5314-81bb-8e95b8ab34d5", "text": "\u773c\u775b\u95ea\u70c1\u7740\u6e29\u6696\u7684\u5149\u8292\uff0c\u72b9\u5982\u955c\u5b50\u822c\u53cd\u5c04\u51fa\u7231\u610f\u3002"} +{"id": "4002262", "video_name": "ff8e8d0d-3e21-50f5-b882-edb3dff0b732", "text": "\u7a7a\u6d1e\u7684\u9ed1\u8272\u5706\u5708\u5728\u4e2d\u5fc3\u524d\u65b9\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u5929\u4e0a\u82b1\u56ed\u4e2d\uff0c\u591c\u7a7a\u4e2d\u661f\u661f\u95ea\u70c1\uff0c\u6d77\u6d6a\u8f7b\u8f7b\u62cd\u6253\u7740"} +{"id": "4004632", "video_name": "49152a10-c2d2-5cf8-89e7-c290e8064f03", "text": "\u4e00\u4f4d\u60b2\u4f24\u7684\u5973\u4eba\u6b63\u5728\u6865\u4e0a\u54ed\u6ce3\u3002"} +{"id": "3005284", "video_name": "1b6aeb03-aada-5b8a-b75f-56e16723775c", "text": "\u8fd9\u652f\u67aa\u672c\u6765\u53ef\u4ee5\u6539\u53d8\u8fd9\u4e2a\u6751\u5e84\u7684\u5386\u53f2\u3002"} +{"id": "8001313", "video_name": "0af0fd68-7f72-5156-b359-311203b7f654", "text": "\u963f\u52a0\u5c14\u5854\u7684\u6545\u4e8b\u5df2\u7ecf\u51e0\u4e2a\u4e16\u7eaa\u4ee5\u6765\u4e00\u76f4\u5438\u5f15\u7740\u5192\u9669\u5bb6\u548c\u795e\u79d8\u4e3b\u4e49\u8005\u7684\u60f3\u8c61\u529b\u3002"} +{"id": "6003700", "video_name": "50a54f83-6983-568d-abec-c023706c4f33", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u7528\u57fa\u672c\u624b\u52bf\u4ea4\u8c08\u3002"} +{"id": "1003158", "video_name": "3a2e046d-db02-5bd8-9693-336168ff2996", "text": "\u7a7f\u7740\u8fd0\u52a8\u670d\u7684\u7537\u4eba\u5728\u9152\u5427\u91cc\u559d\u7740\u5564\u9152\u770b\u8db3\u7403\u3002"} +{"id": "0006686", "video_name": "310212d1-087a-5065-a092-bf8c9c5da218", "text": "\u4e00\u4e2a\u7a7f\u7740\u4e0a\u8863\u3001\u6234\u7740\u773c\u955c\u76841950\u5e74\u4ee3\u4e08\u592b\u624b\u6301\u5496\u5561\u676f\u7ad9\u5728\u7a97\u6237\u524d\u5411\u5916\u770b\uff0c\u8857\u4e0a\u6709195"} +{"id": "3006690", "video_name": "78a08778-a7f2-5681-af12-d92233a56259", "text": "\u5728\u6e56\u8fb9\uff0c\u6709\u4e00\u53ea\u9a74\u548c\u5176\u4ed6\u68ee\u6797\u52a8\u7269\uff0c\u559d\u7740\u6c34\u76843D\u52a8\u753b\u3002"} +{"id": "2004657", "video_name": "ec9a1b42-093e-56fc-96bb-7ecee10d4d4d", "text": "\u7279\u65af\u62c9Cybertruck\u548c\u5927\u4f17\u7532\u58f3\u866b\u5728\u8857\u5934\u6bd4\u8d5b\u3002"} +{"id": "0005015", "video_name": "1346a238-5bfc-5e93-8f7b-a8b6f7502707", "text": "\u4e0d\u540c\u89d2\u5ea6\u7684\u4e00\u4e2a\u89d2\u8272\u7684\u52a8\u6f2b\u98ce\u683c\u753b\u4f5c"} +{"id": "8002712", "video_name": "a2ac8b4d-9873-5de8-ae7a-c70aea13f525", "text": "\u6f0f\u6c34\u7684\u6c34\u9f99\u5934\u548c\u7ba1\u9053\u4f1a\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\u5bfc\u81f4\u91cd\u5927\u7684\u6c34\u6d6a\u8d39\u3002"} +{"id": "7004266", "video_name": "9a00407f-db9d-5437-8234-3b701a9780f0", "text": "\u591c\u665a\u62cd\u6444\u4e86\u4e00\u4e2a\u88ab\u9057\u5f03\u7684\u623f\u5b50\u7684\u5916\u90e8\u666f\u8c61\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5927\u5706\u6708\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eAshley Wood\u7684\u56fe\u50cf\u5c0f"} +{"id": "4003303", "video_name": "4aa4d096-9df3-5235-8ed2-e87344773460", "text": "\u6bdb\u6bdb\u7ec6\u96e8\u4e0b\uff0c\u4e00\u76f4\u4fdd\u62a4\u7740\u5c0f\u9ec4\u9e1f\uff0c\u5b83\u4eec\u5728\u5ca9\u77f3\u4e0a\u5b89\u5168\u5730\u7a7f\u884c\uff0c\u6c34\u9762\u4e0a\u95ea\u70c1\u7740"} +{"id": "7002302", "video_name": "94d69f75-e097-5f88-a4d0-4029e857cec1", "text": "\u7537\u6027\u6b65\u884c\u81ea\u7136\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006594", "video_name": "3874ca69-4ca1-55da-b0d4-65fe1df0972d", "text": "\u4e00\u53ea\u667a\u6167\u7684\u8001\u732b\u5934\u9e70\u6816\u606f\u5728\u6811\u679d\u4e0a\uff0c\u4ee5\u5b89\u6170\u7684\u8868\u60c5\u6ce8\u89c6\u83b1\u62c9\uff0c\u4e3a\u5979\u7684\u65c5\u7a0b\u63d0\u4f9b\u6307"} +{"id": "0005781", "video_name": "2124c82c-61b4-50fe-902f-450aea234b5d", "text": "\u4e00\u4e2a\u53a8\u5e08\u5728\u8212\u9002\u7684\u73af\u5883\u4e0b\u70f9\u996a\u7f8e\u98df\u7684\u89c6\u9891\uff0c\u914d\u4ee5\u7535\u5f71\u5316\u7684\u7167\u660e\u3002"} +{"id": "7003613", "video_name": "6b67b102-6057-5217-9450-bab18a6f1467", "text": "\u5723\u6d01\u7684\u5904\u5973\u4ece\u5929\u7a7a\u4e2d\u964d\u843d"} +{"id": "3004687", "video_name": "d1d0c5ed-b06d-5bb9-afb7-e78093e514d1", "text": "\u4e00\u53ea\u8682\u8681\u5728\u6811\u679d\u4e0a\u884c\u8d70\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "4003863", "video_name": "1fedca1f-7945-53f9-8c09-2953bb27cb38", "text": "\u5b69\u5b50\u4eec\u7a7f\u7740\u767d\u8272\u5e26\u6709\u7ea2\u8272\u6761\u7eb9\u7684\u6c49\u670d\u6392\u961f\u8d70\u8fdb\u5927\u5385\u3002"} +{"id": "6003001", "video_name": "09417599-6f71-599d-8497-bfeee144aedb", "text": "\u5de8\u5927\u7684\u5916\u661f\u9ca8\u9c7c\u5728\u6c34\u4e0b\uff0cVHS\u753b\u8d28\u3002"} +{"id": "0006817", "video_name": "339a6293-341f-52ca-a69c-5c1940b64171", "text": "\u4e00\u4e2a\u6728\u5de5\u6b63\u5728\u7528\u5c0f\u5de5\u5177\u5207\u5272\u6728\u6750\u3002"} +{"id": "1004259", "video_name": "4ee76b49-c4ba-5778-8f3c-9231f17884a6", "text": "\u5728\u4e00\u5bb6\u53f2\u524d\u9910\u5385\u4f7f\u7528\u65e9\u671f\u4eba\u7c7b\u7684\u5de5\u5177\u3002"} +{"id": "1005695", "video_name": "68aa76f2-ccbe-5754-9739-50fe6977e8b6", "text": "\u5199\u5728\u4e66\u4e0a\u5e76\u9644\u4e0a\u8bb2\u8bdd\u4fe1\u606f\u3002"} +{"id": "3004149", "video_name": "85c3ed5b-43ae-5ce5-ad63-0191903a53ad", "text": "\u91d1\u9c7c\u738b\u5728\u5409\u535c\u529b\u98ce\u683c\u7684\u753b\u9762\u4e2d\uff0c\u4e0e\u5999\u86d9\u79cd\u5b50\u548c\u6770\u5c3c\u9f9f\u4e00\u8d77\u5954\u8dd1\u3002"} +{"id": "8001431", "video_name": "37cb44c1-f7da-5e06-8d05-a242652a8960", "text": "\u4e00\u6bb5\u7535\u5f71\u5316\u7684\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u6a2a\u8de8\u4e2d\u897f\u90e8\u7684\u4e00\u7247\u7389\u7c73\u7530\uff0c\u62cd\u6444\u65f6\u95f4\u6b63\u597d\u662f\u9ec4\u91d1\u65f6\u6bb5\u3002"} +{"id": "1005356", "video_name": "62859090-f64f-59b4-a647-00ca03764365", "text": "\u5728\u9ed1\u6697\u7684\u5929\u4e3b\u6559\u5802\u91cc\uff0c\u9ed1\u8272\u70df\u96fe\u5f00\u59cb\u65cb\u8f6c\uff0c\u5f62\u6210\u795e\u79d8\u7684\u5e7b\u89c9\u3002\u91d1\u8272\u5934\u9aa8\u7684\u773c\u775b\u95ea"} +{"id": "6002279", "video_name": "a08b16d4-2d87-5167-9fdd-32a0c851b360", "text": "\u4e09\u53ea\u53ef\u7231\u7684\u8001\u864e\u5728\u68ee\u6797\u91cc\u6f2b\u6b65\uff0c\u6c90\u6d74\u5728\u91d1\u8272\u7684\u9633\u5149\u4e2d\uff0c\u5468\u56f4\u662f\u5c0f\u82b1\uff0c\u5929\u7a7a\u4e2d\u5c0f\u9e1f\u7ff1"} +{"id": "7003221", "video_name": "4ff93961-28db-5612-b971-3d397712b337", "text": "\u9a6c\u5954\u8dd1\uff0c\u8d85\u5199\u5b9e\uff0c\u9ad8\u8f9b\u70f7\u6570\u6e32\u67d3\u3002"} +{"id": "3005367", "video_name": "b2aedf48-0aaf-57cf-9bad-5ea0866b3bbc", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8857\u4e0a\u8d70\uff0c\u7a7f\u7740\u65f6\u5c1a\u7684\u8857\u5934\u670d\u9970\u3002"} +{"id": "0005551", "video_name": "1cb7753e-0aae-59e3-ae44-c6f0d21f6646", "text": "\u4fef\u89c6\u4e00\u4e2a\u8eba\u5728\u77f3\u5934\u4e0a\u7684\u4eba\u3002"} +{"id": "8003438", "video_name": "aa8d7de7-828a-569e-9bbe-baeeca396a44", "text": "\u591c\u665a\u7684\u57ce\u5e02\u98ce\u666f\uff0c\u8272\u5f69\u67d4\u548c\uff0c\u8def\u706f\u67d4\u548c\uff0c\u5b81\u9759\u7684\u6708\u5149\u7167\u8000\u7740\u5b81\u9759\u7684\u57ce\u5e02\u3002"} +{"id": "2004643", "video_name": "813d72e4-902d-568f-bfc8-2df38b52ed13", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u8fd9\u91cc\u6447\u6446\u7740\u5979\u7684\u5934\n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "6003808", "video_name": "1b22da2b-c075-5c3c-98f8-7191455a99ee", "text": "\u4e00\u4e2a\u7075\u9b42\u53d8\u6210\u4e86\u4e00\u53ea\u9e1f\u3002"} +{"id": "2003016", "video_name": "d7d0ef12-7f4a-5f15-b088-cb00126be391", "text": "\u4e00\u573a\u53f2\u8bd7\u7ea7\u7684\u592a\u7a7a\u6218\u6597\uff0c\u4ee51970\u5e74\u4ee3\u7684\u79d1\u6280\u8272\u5f69\u5448\u73b0\u3002"} +{"id": "2007179", "video_name": "6b3a5086-f822-56cc-a50f-8eadf7d4b3bc", "text": "\u4e00\u53ea\u72ee\u5b50\u8df3\u4e0a\u6c34\u725b\u4ee5\u6293\u4f4f\u5b83\u3002"} +{"id": "3005555", "video_name": "c83d27b4-e277-599e-b774-c2376b237229", "text": "\u8001\u4eba\u5728\u6811\u5c4b\u4e0a\u5f39\u5409\u4ed6\u7684\u526a\u5f71\uff0c\u62cd\u6444\u89d2\u5ea6\u8f83\u8fdc\u3002"} +{"id": "6002098", "video_name": "45996767-653f-526b-999b-8b1a207d2ad8", "text": "\u65e5\u5149\u4e0b\u7684\u57c3\u53ca\u91d1\u5b57\u5854\u7684\u8d85\u7ea7\u7f29\u5c0f\u955c\u5934\u3002"} +{"id": "1003687", "video_name": "43f24cfa-64a4-5afe-92a5-373069f425e5", "text": "\u5b87\u5b99\u7684\u754c\u9650\uff0c\u73b0\u5b9e\u7684\u7a7a\u95f4\uff0c\u5e7f\u6cdb\u7684\u8303\u56f4\u3002"} +{"id": "3003384", "video_name": "8fcbd876-f113-5de1-b1f6-1cee6f43b30c", "text": "\u6d77\u6d6a\u5728\u8d77\u4f0f\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u89e6\u6478\u4f60\u7684\u5934\u53d1\uff0c\u4e00\u4e2a\u8bf1\u4eba\u7684\u5fae\u7b11\uff0c\u9633\u5149\u7167\u5728\u53f3\u4e0a\u89d2\uff0c\u4eba\u7269\u8f6c\u8eab\u9762"} +{"id": "6003565", "video_name": "f9db84e9-41fd-50d6-8de5-a40362e5186d", "text": "\u4e00\u5f20\u5c55\u73b0\u5f3a\u58ee\u9633\u521a\u7684\u957f\u80e1\u5b50\u7537\u5b50\u7ffb\u5f00\u667a\u6167\u4e66\u7684\u7167\u7247\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u70b9\u70b9\u5149\u4eae\u3002"} +{"id": "8003434", "video_name": "24200ec2-3f03-5be7-a288-e7c86f36f5a5", "text": "\u8d2b\u7620\u7684\u571f\u5730\uff0c\u88c2\u7f1d\u3002\u4fe1\u606f\uff1a\u6c34\u3002"} +{"id": "7004672", "video_name": "dd400807-4484-581f-a3eb-6cc2b9d75dd6", "text": "\u7a81\u7136\u5b83\u770b\u5230\u4e00\u53ea\u677e\u9f20\u4ece\u6811\u679d\u4e0a\u8df3\u8dc3\u7740\uff0c\u6536\u96c6\u575a\u679c\u5e76\u5c06\u5b83\u4eec\u85cf\u5728\u4e00\u68f5\u7a7a\u5fc3\u7684\u6811\u91cc\u3002"} +{"id": "4004210", "video_name": "452c70ce-620a-59fa-9402-0aea7a4fba18", "text": "\u7ea6\u67dc\u662f\u4e00\u4e2a\u503c\u5f97\u89c2\u8d4f\u7684\u666f\u8c61\uff0c\u5b83\u534e\u4e3d\u7684\u8bbe\u8ba1\u548c\u8fdc\u53e4\u7684\u529b\u91cf\u5438\u5f15\u7740\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u4eba\u4eec\u6765\u89c1\u8bc1"} +{"id": "0006278", "video_name": "29e69d9c-36a8-53a8-8d93-580489cb02e6", "text": "\u7a7f\u7740\u6821\u670d\u7684\u9ad8\u4e2d\u5b66\u751f\u6cbf\u7740\u8857\u9053\u8d70\u8def\uff0c\u4fef\u77b0\u57ce\u5e02\u3002"} +{"id": "3004249", "video_name": "edd90270-d714-5d9e-af06-776501e8da33", "text": "\u4e00\u53ea\u7070\u8272\u7684\u8001\u9f20\u62b1\u7740\u5730\u7403\uff0c\u5e76\u5543\u98df\u7740\u5730\u7403\u3002"} +{"id": "3006839", "video_name": "5a198281-3dca-5a95-bf44-808206202f41", "text": "\u9752\u86d9\u671b\u7740\u7a97\u5916\uff0c3D\uff0c\u865a\u6784\u6e32\u67d3\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "3005934", "video_name": "f95c5fbd-c7ab-5801-b2e2-86dce22810b3", "text": "\u9ab7\u9ac5\u5728\u5e1d\u56fd\u8c37\u884c\u8d70\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "4003389", "video_name": "6ad395be-0071-50fa-a5b8-2c686722683a", "text": "\u533b\u9662\u91cc\u6234\u7740\u53e3\u7f69\u7684\u5973\u5b69\u5728\u6838\u653b\u51fb\u540e\u3002"} +{"id": "1006475", "video_name": "767ece1f-2462-548c-9c2f-b0ce863f4aae", "text": "\u514b\u6d1b\u4f0a\u94b1\u5305\u5728\u514b\u6d1b\u4f0a\u5962\u4f88\u54c1\u5e97\u7684\u8dd1\u6b65\u673a\u4e0a\u901a\u8fc7\u3002"} +{"id": "4003518", "video_name": "e4d75433-a746-5acf-80ab-3b93225f5211", "text": "\u4ed6\u4eec\u88ab\u8ba4\u4e3a\u662f\u5185\u5730\u7684\u5b88\u62a4\u8005\u3002"} +{"id": "0003743", "video_name": "42a7867f-ca5e-58ee-a046-c46c3e93a46d", "text": "\u4e00\u4e2a\u84b8\u6c7d\u670b\u514b\u7684\u871c\u8702\u5728\u82b1\u4e4b\u95f4\u79fb\u52a8\u7684\u89c6\u9891\u3002"} +{"id": "6003745", "video_name": "29f99d73-72df-5933-9fdc-36bc3ad02b00", "text": "\u5e74\u8f7b\u7684\u585e\u5df4\u65af\u8482\u5b89\u00b7\u8096\u5728\u7194\u5ca9\u77f3\u4e0a\u722c\u884c\uff0c\u4f38\u51fa\u624b\u81c2\uff0c\u75db\u82e6\u5730\u5c16\u53eb\u3002"} +{"id": "2007515", "video_name": "acd3a40b-b964-5b33-b0e0-4a668f00a45a", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u548c\u5979\u7684\u7236\u4eb2\u5728\u5b66\u6821\u73a9\u800d\u3002"} +{"id": "0005903", "video_name": "23001f3d-7cd5-5948-b8fc-c171b79d3b7f", "text": "\u53ef\u7231\u7684\u732b\u53eb\u7740\uff0c\u5de8\u578b\u8001\u864e\u5728\u5b83\u524d\u9762\u3002"} +{"id": "4003558", "video_name": "6693dc80-f3f9-5d4b-b56e-27b419cb929c", "text": "\u53f2\u4e0a\u6700\u6602\u8d35\u7684\u5f55\u50cf\u3002"} +{"id": "7004205", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u821e\uff0c8k\u5206\u8fa8\u7387\uff0c\u8d85\u903c\u771f\u6e32\u67d3\u3002"} +{"id": "1005799", "video_name": "6ab2d1cb-986e-5219-ab3f-74096ac92717", "text": "\u7a7f\u7740\u5df4\u62c9\u7518\u98ce\u683c\u7684\u65f6\u5c1a\u897f\u88c5\u893b\u7006"} +{"id": "6004728", "video_name": "a97f7105-6f69-527b-b91a-3fd753a8b50c", "text": "\u4e00\u4e2a\u62bd\u8c61\u7684\u6c34\u6548\u679c\uff0c\u53ea\u4f7f\u7528\u84dd\u8272\u8c03\u3002"} +{"id": "3006441", "video_name": "de986839-e664-5266-a13c-7c9ac0cf8c61", "text": "\u5979\u5728\u4e00\u5ea7\u900f\u660e\u7684\u6cf3\u6c60\u91cc\u6e38\u6cf3\uff0c\u4ec0\u4e48\u4e5f\u6ca1\u6709\u3002"} +{"id": "6002217", "video_name": "5a17537f-e203-5a92-a730-2111b08e64a9", "text": "\u4e66\u4e0a\u7684\u5b57\u6d6e\u73b0\u3002"} +{"id": "6002772", "video_name": "3a219716-d1ed-5906-a543-b19880d4d641", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u5973\u6027\u6ce8\u89c6\u7740\u6d77\u6d0b\u7684\u7535\u5f71\u5f0f\u62cd\u6444\u3002"} +{"id": "2007814", "video_name": "ebffcc25-87c9-5a50-9ab3-194adff3a3b3", "text": "6\u5c81\u7537\u5b69\u62ff\u7740\u96e8\u4f1e\u5728\u96e8\u4e2d 16:9"} +{"id": "4003510", "video_name": "c5cfcca6-b80a-5198-aafb-f485bd89e4a2", "text": "\u4e00\u4e2a\u6234\u7740\u8fde\u5e3d\u886b\u7684\u903c\u771f\u79d1\u6280\u9762\u5177\u7537\u5b50\u5728\u4e1b\u6797\u9876\u90e8\u9ad8\u5904\u8df3\u7740\u7535\u5b50\u97f3\u4e50\u821e\u8e48\u3002"} +{"id": "3005115", "video_name": "97a47ff3-37ac-54b6-9e8f-3989505fd83b", "text": "\u4e30\u5bcc\u591a\u5f69\u7684\u623f\u5b50\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u68ee\u6797\u91cc\u3002\n\nSource sentence: The sun is shining brightly in the sky.\n\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u660e\u4eae\u5730\u95ea\u8000"} +{"id": "2007848", "video_name": "6200f473-34fd-57b8-aacd-368b76ba76a0", "text": "\u5728\u5df4\u5398\u5c9b\u7684\u6d77\u6ee9\u4e0a\u884c\u8d70\u7684\u5df4\u5398\u5c9b\u5df4\u9f99\u3002"} +{"id": "8003735", "video_name": "d29dd588-39dc-5188-81ce-de39503b8d0b", "text": "\u89c6\u9891\u4ee5\u8389\u8389\u548c\u5979\u7684\u670b\u53cb\u4eec\u5411\u89c2\u4f17\u6325\u624b\u544a\u522b\u7ed3\u675f\u3002"} +{"id": "6004889", "video_name": "d0884dc0-9e05-5d17-b507-9dceb1bea930", "text": "\u4e00\u5f20\u684c\u5b50\u4e0a\u5806\u6ee1\u4e86\u7eb8\u548c\u4e66\uff0c\u89c6\u9891\u4e2d\u8fd8\u6709\u73b0\u4ee3\u548c\u8d85\u73b0\u5b9e\u7684\u5143\u7d20\u3002"} +{"id": "0006762", "video_name": "32a0c6c3-8ef2-5d3c-b234-f7f678acebb9", "text": "2019\u5e74\uff0c\u4e00\u8f86\u767d\u8272\u7684BMW E30 325is\u505c\u5728\u7d22\u97e6\u6258\u7684\u4e00\u6240\u623f\u5b50\u5916\u9762\u3002"} +{"id": "2007254", "video_name": "12064bf6-2dc5-5dbd-b6c9-786ea67d249c", "text": "\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\u65f6\uff0c\u4f26\u6566\u5728\u591c\u665a\u7740\u706b\u3002"} +{"id": "0006704", "video_name": "316ca01f-55fe-59ee-81d3-47a31b027791", "text": "\u65e0\u7455\u75b5\u7684\u716e\u9e21\u86cb\u4e09\u660e\u6cbb\uff0c\u57f9\u6839\uff0c\u70e4\u82f1\u5f0f\u9ea6\u82ac\u6216\u767e\u5409\u997c\u3002\u756a\u8304\u6216"} +{"id": "6003227", "video_name": "bf6f2d2e-ed35-5852-be91-b3f9ce334a55", "text": "\u732b\u6234\u7740iPod\u8033\u673a\u542c\u97f3\u4e50\uff0ciPod\u8033\u673a\u7ebf\u6643\u52a8\u7740\u3002"} +{"id": "0006842", "video_name": "340df211-ad8f-523d-8474-ec637cdc6ca3", "text": "\u9605\u8bfb\u4e00\u672c\u4e66\u65f6\uff0c\u6709\u4e9b\u5b69\u5b50\u5728\u6211\u65c1\u8fb9\u7684\u5ea7\u4f4d\u4e0a\u5fae\u7b11\uff0c\u5c31\u50cf\u7167\u7247\u4e2d\u7684\u98ce\u683c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004954", "video_name": "5b946724-01ee-549f-a30e-0d6df025cc4c", "text": "\u8bbe\u8ba1\u4e00\u5e45\u63cf\u7ed8\u5e72\u65f1\u65f6\u671f\u707c\u70ed\u7684\u592a\u9633\u548c\u5e72\u71e5\u7684\u571f\u5730\u7684\u56fe\u50cf\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "3006182", "video_name": "3b4b3ed9-f4bc-536b-8c65-53f1cbcfa32f", "text": "\u4e00\u540d\u7a7f\u7740\u5546\u52a1\u670d\u88c5\u7684\u7537\u5b50\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "0004642", "video_name": "0c822c9f-18e8-530c-adca-d38f642ca00a", "text": "\u4e00\u5934\u5927\u578b\u6bcd\u725b\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u8349\u5730\u4e0a\u4f18\u96c5\u5730\u884c\u8d70\uff0c\u80cc\u666f\u662f\u8fdc\u5904\u7684\u6811\u548c\u6e05\u6f88\u7684\u84dd\u5929\u3002"} +{"id": "2006691", "video_name": "47e4513e-68d7-5a4f-94ea-cfd9559508bb", "text": "\u4fdd\u65f6\u6377\u505c\u5728\u4e00\u5ea7\u88ab\u9057\u5f03\u7684\u542f\u793a\u5f55\u57ce\u5e02\u91cc\u3002"} +{"id": "8002974", "video_name": "85f5607c-0e5e-50e7-b48d-fb22db505a65", "text": "\u4e00\u65f6\u7684\u8bef\u89e3\u6216\u5206\u6b67\u6311\u6218\u4e86\u4ed6\u4eec\u7684\u60c5\u611f\u7ebd\u5e26\u3002\u5f53\u4ed6\u4eec\u9762\u5bf9\u5dee\u5f02\u65f6\uff0c\u7d27\u5f20\u5c40\u52bf\u5347\u7ea7\u3002\u7136\u800c\uff0c\u901a\u8fc7"} +{"id": "0005629", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "\u672a\u6765\u7684\u4e16\u754c\u4f1a\u53d8\u5f97\u66f4\u52a0\u667a\u80fd\u5316\uff0c\u5efa\u7b51\u3001\u57ce\u5e02\u3001\u673a\u68b0\u548c\u6c7d\u8f66\u4e5f\u4f1a\u53d8\u5f97\u66f4\u52a0\u5148\u8fdb\u3002"} +{"id": "5001748", "video_name": "e2664a6a-1c4f-596c-861d-ff1b8ac370fa", "text": "\u9f13\u7ad9\uff0c\u7535\u5f71\u5f0f\u7f29\u5c0f\uff0c\u540e\u53f0\u63a7\u5236\u53f0\u3002"} +{"id": "0004907", "video_name": "113db62f-97a3-59ed-92ee-c777ab2edc21", "text": "\u5728\u9ed1\u6697\u7a7a\u95f4\u4e2d\u7684\u7206\u70b8\uff0c\u9713\u8679\u8272\u5f69\uff0c\u5e7b\u60f3\u3002"} +{"id": "1004729", "video_name": "57b1ac93-f298-541c-896c-af7fb7cb7e25", "text": "\u5728\u6708\u7403\u8868\u9762\u884c\u8d70\u7684\u5370\u5ea6\u5bb6\u5ead\uff0c\u5929\u7a7a\u4e2d\u53ef\u89c1\u5730\u7403\uff0c\u672a\u6765\u4e3b\u4e49\u4f4f\u5b85\u3002"} +{"id": "2006168", "video_name": "8ae78f3c-c6a0-536b-b724-4477b84599d5", "text": "\u5370\u5ea6\u7684\u795e\u7075\u805a\u96c6\u5728\u88ab\u4e91\u5c42\u8986\u76d6\u7684\u5929\u5802\u3002"} +{"id": "6002065", "video_name": "505849bf-49f5-5d4b-a62b-b1fcc64cb93e", "text": "\u6708\u5149\u4e0b\u7684\u5496\u5561\u4e50\u4f5b\u97f3\u4e50\u4e4b\u591c\uff0c\u4e00\u53ea\u732b\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u52a8\uff0c\u5927\u96e8\u503e\u76c6\uff0c\u4e00\u4f4d\u5973\u58eb\u6234"} +{"id": "7004301", "video_name": "30f2d667-5266-56eb-bc60-59d87a4fcbd9", "text": "\u50f5\u5c38\u5411\u5e78\u5b58\u8005\u6251\u6765\uff0c\u54ac\u7259\u5207\u9f7f\u3002"} +{"id": "2007453", "video_name": "cb30b384-2966-53e5-8507-9f60bc6e9ebf", "text": "\u9ad8\u54c1\u8d28\u7684\u5927\u9ebb\u82b1\uff0c\u9876\u7ea7\u7684\u7cbe\u534e\uff0c\u9648\u5217\u5ba4\u3002"} +{"id": "0004702", "video_name": "0d952b29-fac9-5a36-b730-154bbe6b3e96", "text": "\u6570\u4e0d\u5c3d\u7684\u6570\u5b57\u6c14\u7403\u6f02\u6d6e\uff0c\u4fe1\u606f\uff1aAI\u673a\u7ec4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003556", "video_name": "3bd2e89c-590f-58b9-bab4-b5f205548b50", "text": "\u739b\u96c5\u5728\u67d4\u548c\u7684\u70db\u5149\u4e0b\u68c0\u67e5\u4e00\u4ef6\u7a00\u6709\u7684\u6587\u7269\u3002"} +{"id": "1003938", "video_name": "48a6ce3f-e0e5-5e0a-abf5-491bf6ec45fc", "text": "100\u4e07\u4e2a\u773c\u775b\uff0c\u6392\u5217\u7ec4\u5408\uff0c\u590d\u6742\uff0c\u5bf9\u6bd4\uff0c\u5168\u5f69\u8272\uff0c\u5df4\u52c3\u7f57\u00b7\u6bd5\u52a0\u7d22\u98ce\u683c\uff0c\u9ad8\u7ec6\u8282\uff0c4k\uff0c\u8d85\u73b0"} +{"id": "7004019", "video_name": "3a3ac855-ad53-5cb4-894d-893e3add8ea2", "text": "\u4e00\u67b6\u7ea2\u8272\u7684\u7279\u6280\u98de\u673a\u5728\u4e00\u4e2a\u5e26\u6709\u5c0f\u6e2f\u53e3\u7684\u7eff\u8272\u5c9b\u5c7f\u4e0a\u76d8\u65cb\u98de\u8fc7\u3002"} +{"id": "0005266", "video_name": "178a82d5-07db-5e79-9543-055d1da934d2", "text": "\u51ac\u65e5\u96c5\u5c14\u8fbe\uff0c\u96ea\u82b1\u3001\u897f\u74dc\u548c\u77f3\u69b4\u3002"} +{"id": "1005241", "video_name": "606304fb-a998-5bce-ad33-68e4d3b060da", "text": "\u706b\u661f\u4e0a\u6709\u8db3\u7403\u573a\u548c\u7403\u5458\u3002"} +{"id": "0004440", "video_name": "091e0432-3ce9-5b71-a79a-671de40e9abc", "text": "\u9f99\u5728\u9ad8\u7a7a\u7ff1\u7fd4\uff0c\u5468\u56f4\u662f\u767d\u4e91\u548c\u84dd\u5929\uff0c\u5b9b\u5982\u7535\u5f71\u753b\u9762\u822c\u903c\u771f\u3002"} +{"id": "2005971", "video_name": "fcedaee5-103c-54f3-b0da-bf0ca83d3889", "text": "\u53d1\u73b0\u4e86\u4e00\u6bb5\u62cd\u6444\u5230\u4e00\u4e2a\u8611\u83c7\u5934\u751f\u7269\u7684\u5f55\u50cf\u3002"} +{"id": "0004500", "video_name": "0a0da7f6-32d1-56d5-ba90-a0e56d7124f3", "text": "\u5728\u53e4\u753b\u6587\u5b57\u4e2d\uff0c\u4fe1\u606f\u4e3a\u201c\u8bf7\u52ff\u8e29\u8e0f\u201d\uff0c\u5b57\u4f53\u4e3a\u73b0\u4ee3\u4f53\u3002"} +{"id": "6002276", "video_name": "b61ba34b-103d-563b-ac51-5caf6b56d440", "text": "\u7535\u5f71\u300a\u67ef\u5e03\u91cc\u514b\u7684\u90ca\u533a\u57ce\u5e02\u300b\u4e0b\u5348\u573a\u666f\uff0c\u5e7f\u89d2\u955c\u5934\uff0c35\u6beb\u7c73\uff0c\u7eb5\u6a2a\u6bd4\u4e3a2\uff1a1\u3002"} +{"id": "0005589", "video_name": "1d938b91-4b38-5270-a35b-470be8ea86c0", "text": "\u4e3aDream Light Photo Design\u521b\u5efa\u4e00\u4e2a\u5b57\u6bcd\u5f62\u5f0f\u7684Logo\uff0c\u4ee3\u8868\u7740\u5353\u8d8a\u7684\u6444\u5f71\u6280\u672f\u548c\u521b\u610f\u8bbe\u8ba1\u80fd\u529b\u3002"} +{"id": "2005004", "video_name": "4db038f2-203d-5aa4-8f5e-7013eeb48e9f", "text": "\u4e2d\u592e\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u74f6\u5b50\u91cc\u9762\u662f\u795e\u5948\u5ddd\u6d77\u5cb8\u7684\u5de8\u6d6a\u3002"} +{"id": "0004635", "video_name": "0c600e6f-39e6-5f7a-a918-bd14924a4677", "text": "\u4ece\u9e1f\u513f\u7684\u89d2\u5ea6\u98de\u8d8a\u4e91\u5c42\uff0c\u4eab\u53d7\u5168\u666f\u89c6\u91ce\uff0c\u4e0b\u65b9\u7684\u4e91\u5c42\u4e2d\u900f\u51fa\u8d85\u51e1\u7684\u666f\u8272\u3002"} +{"id": "1006435", "video_name": "75d21bcc-0018-599f-8959-35accf5d8554", "text": "\u9ed1\u591c\u3001\u5854\u7f57\u724c\u3001\u95ea\u5149\u3001\u9ed1\u57ce\u5e02\u8f6e\u5ed3\u3001\u6697\u57ce\u5e02\u7535\u5f71\u60c5\u7eea\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u5feb\u901f\u79fb\u52a8\u3001\u94bb\u77f3"} +{"id": "8001716", "video_name": "524a8f8a-a5f7-5d34-9671-94674931fd40", "text": "\u8d85\u4eba\u5c55\u793a\u4ed6\u7a7a\u94b1\u5305\u7684\u5185\u5bb9\uff0c\u91cc\u9762\u6ca1\u6709\u94b1\u3002"} +{"id": "6003224", "video_name": "f948f7e6-7430-5133-b789-48b6f1d816a4", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u68ee\u6797\u91cc\u4ee5\u7535\u5f71\u8fd0\u52a8\u98ce\u683c\u5954\u8dd1\uff0c\u4f7f\u7528\u4f73\u80fd\u7535\u5f71\u6444\u50cf\u673a4\u3002"} +{"id": "1005719", "video_name": "693cf673-e057-56ff-849b-af6bf92f44e1", "text": "\u5728\u6218\u573a\u4e0a\uff0c\u5f20\u98de\u9ad8\u9ad8\u4e3e\u8d77\u6218\u516b\u86c7\u77db\uff0c\u731b\u70c8\u5730\u5411\u5415\u5e03\u51b2\u53bb\u3002\u4ed6\u7684\u8138\u4e0a\u8868\u73b0\u51fa"} +{"id": "4003120", "video_name": "2d0cd130-16a9-5a6a-bf61-4bc5484fa974", "text": "\u73b0\u5b9e\u7684\u96e8\u4ece\u5929\u7a7a\u843d\u4e0b\uff0c\u6697\u8272\u7684\u4e91\u3002"} +{"id": "3003995", "video_name": "39947d5d-4ced-59cc-b8fc-19fa1c9ac72e", "text": "\u5f6d\u6d1b\u666e\uff08\u53e4\u5e0c\u814a\u7f8e\u5973\uff09\u5750\u5728\u5979\u7684\u7ec7\u5e03\u673a\u524d\uff0c\u7f16\u7ec7\u548c\u62c6\u5f00\u4e00\u4ef6\u88f9\u5c38\u5e03\uff0c\u5979\u7684\u8138"} +{"id": "7004545", "video_name": "be20ad64-8f64-5194-9c4f-227bdb41dda1", "text": "\u4e00\u5e45\u9ed1\u767d\u76841900\u5e74\u660e\u4eae\u661f\u7a7a\u7684\u591c\u666f\u3002"} +{"id": "0003660", "video_name": "41367f6e-2184-5f60-bb50-37fa8312d07d", "text": "\u4e24\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u97f3\u4e50\u548c\u5c16\u53eb\u3002"} +{"id": "2004037", "video_name": "6aa2c4f2-7146-571e-8cb2-873f4b036ec7", "text": "\u7535\u5f71\u6d77\u62a5\uff0c\u98ce\u683c\u4e3a\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7684\u5409\u666e\u8d5b\u4eba\u3002"} +{"id": "1005627", "video_name": "677368ab-eec5-5eac-b492-113421b51449", "text": "\u624b\u673a\u548c\u7b14\u8bb0\u672c\u7535\u8111\u7684\u8f6f\u4ef6\u66f4\u65b0"} +{"id": "6002409", "video_name": "745743d3-2714-537e-9d51-e544fa041fff", "text": "\u94f6\u884c\u8d26\u6237\u8fd9\u4e2a\u8bcd\u4ece\u4e8c\u8fdb\u5236\u6570\u5b57\u80cc\u666f\u4e2d\u5f39\u51fa\uff0c\u6444\u50cf\u673a\u5411\u524d\u6ed1\u52a8\u3002\u4e8c\u8fdb\u5236\u6570\u5b57\u6982\u5ff5\u3002\u4fe1\u606f\uff1a\u94f6\u884c\u8d26\u6237\uff08\u5b57"} +{"id": "7004435", "video_name": "8df8cbde-5419-5f9a-9090-734ac897c086", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5c31\u50cf\u5929\u4f7f\uff0c\u5934\u53d1\u662f\u9713\u8679\u8272\u7684\uff0c\u5c55\u7fc5\u9ad8\u98de\uff0c\u5168\u8eab\u89c6\u89d2\u6e05\u6670\u7684\u9ad8\u6e05\u7167\u7247\uff0c32K\u8d85\u9ad8\u7ec6"} +{"id": "6004220", "video_name": "0e20c596-3c01-520e-bc34-02d54160003d", "text": "\u822a\u62cd\u5ef6\u6642\u651d\u5f71\u7684\u7d10\u7d04\u6a4b\u6881\u9304\u5f71\uff0c\u6d77\u4e0a\u5feb\u901f\u79fb\u52d5\u548c\u6f2b\u904a\u7684\u8239\u96bb\uff0c\u6a4b\u4e0a\u8eca"} +{"id": "8003003", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "\u7a46\u65af\u6797\u80cc\u666f\uff0c\u5f00\u7bc7\u53e4\u5170\u7ecf\u9ad8\u6e05\u753b\u8d28\uff0c\u5e26\u6709\u7535\u5f71\u822c\u7684\u53d8\u7126\u6444\u50cf\u5934\uff0c16:9\u903c\u771f\u3002"} +{"id": "8002728", "video_name": "91b4c8b0-546f-503f-bb5c-5e8f86bf1683", "text": "\u597d\u5947\u4e0e\u6050\u60e7\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u5728\u793e\u533a\u4e2d\u521b\u9020\u4e86\u4e00\u79cd\u660e\u663e\u7684\u7d27\u5f20\u6c14\u6c1b\u3002\u4e00\u4e9b\u52c7\u6562\u7684\u4eba\u51b3\u5b9a\u8c03\u67e5"} +{"id": "1005674", "video_name": "683af448-5635-58d2-ab53-3a1d620c8afb", "text": "\u89c6\u9891\u63a5\u7740\u5207\u6362\u5230\u670b\u53cb\u4eec\u6b65\u884c\u53bb\u4e86\u4e00\u5bb6\u9760\u8fd1\u6e56\u8fb9\u7684\u9910\u5385\u3002\u4ed6\u4eec\u6b23\u8d4f\u7f8e\u4e3d\u7684\u666f\u8272\uff0c\u770b\u6e56\u6c34\u548c"} +{"id": "1003282", "video_name": "3c5d2419-1699-5af3-b618-d34b0ac54d19", "text": "\u5173\u6ce8\u661f\u661f\u548c\u6708\u4eae\uff0c\u53d1\u5149\u3002"} +{"id": "0005919", "video_name": "233e0e78-21a6-5b35-a779-1e63a6b87547", "text": "3D\u52a8\u753b\u7537\u5b69\u4f5c\u4e3a\u4e00\u540d\u5c0f\u5deb\u5e08\u5728\u970d\u683c\u6c83\u8328\u5deb\u5e08\u5b66\u6821\u524d\u8d70\u8def\u3002\n\nSource sentence: I want to order the chicken fried rice and a side"} +{"id": "6002737", "video_name": "7f1bf44a-1fcf-51a6-b310-4ab7c8d9d1c9", "text": "\u4e00\u5219\u5e26\u5916\u661f\u4eba\u7684\u672a\u6765\u4e3b\u4e49\u53f2\u5bc6\u8bfa\u592b\u5e7f\u544a\u3002"} +{"id": "2005242", "video_name": "95f864e0-2fd9-586c-ad35-0a6e7762f338", "text": "\u4e00\u5e45\u9633\u5149\u660e\u5a9a\u7684\u573a\u666f\uff0c\u677e\u9f20\u5728\u6811\u65c1\u8df3\u8dc3\u73a9\u800d\u3002\u4ee52D\u5361\u901a\u98ce\u683c\u5236\u4f5c\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a"} +{"id": "0005370", "video_name": "19acde51-f41d-5c94-b82d-e0d278ce6d9b", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65e5\u843d\u65f6\u6cbf\u7740\u6d77\u5cb8\u6563\u6b65\u3002"} +{"id": "0005667", "video_name": "1f001bc2-75cd-5fb3-bc62-2167d680e66b", "text": "\u4e00\u4e2a\u6234\u7740\u4e66\u5305\u3001\u8d70\u5411\u9ec4\u8272\u6821\u8f66\u7684\u5c0f\u7537\u5b69\u3002"} +{"id": "8003220", "video_name": "f34782fa-ee63-5256-974d-146a94d2e828", "text": "\u5f3a\u8c03\u5173\u952e\u597d\u5904\u7684\u4fe1\u606f\u56fe\u8868\uff0c\u4f8b\u5982\u63d0\u9ad8\u6548\u7387\u3001\u66f4\u5feb\u7684\u9002\u5e94\u80fd\u529b\u7b49\u3002"} +{"id": "4003386", "video_name": "ae5ec1a6-61dd-5e0f-bc6f-211e73e6f266", "text": "\u6253\u9020\u4e00\u5f20\u5f62\u8c61\uff0c\u63cf\u7ed8\u51fa\u667a\u8005\u670b\u53cb\u4f20\u6388\u6559\u8bf2\u7684\u573a\u666f\u3002\u5229\u7528\u89c6\u89c9\u7b26\u53f7\u4ee3\u8868\u771f\u7406\u548c\u4f26\u7406\u4ef7\u503c\u89c2\uff0c\u8c61"} +{"id": "3003865", "video_name": "6bf60456-c34f-5fab-b46a-81ff8a89cf89", "text": "\u4e00\u4efd\u5305\u542b\u6587\u672c\u548c\u56fe\u50cf\u7684\u89c6\u9891\uff0c\u65e8\u5728\u4f5c\u4e3a\u6709\u5173\u4f7f\u7528Pagefly\u3001Gempages\u7b49\u5236\u4f5cShopify\u9875\u9762\u8bbe\u8ba1\u7684\u6f14\u793a\u89c6\u9891\u3002"} +{"id": "6002830", "video_name": "e61cea73-9c22-59bb-9178-3e05ff8f9eca", "text": "\u968f\u7740\u65e5\u5b50\u7684\u6d41\u901d\uff0c\u6751\u6c11\u4eec\u5728\u96ea\u5730\u533a\u53d1\u73b0\u4e86\u8001\u7267\u7f8a\u4eba\u7684\u53d8\u5316\u3002\u4ed6\u53d8\u5f97\u758f\u8fdc\u4e86\uff0c\u66fe\u7ecf\u5584\u826f"} +{"id": "3004487", "video_name": "acff1f57-0367-559d-8b39-6c29bcea7025", "text": "18\u4e16\u7eaa\u672b\uff0c\u4e00\u4e2a\u7531\u5e74\u9f84\u7ea6\u4e3a10\u5c81\u7684\u7537\u5b69\u548c\u5973\u5b69\u7ec4\u6210\u7684\u5c0f\u7ec4\uff0c\u5728\u534e\u6c99\u5e02\u4e00\u6240\u5c0f\u5b66\u7684\u6559\u5ba4\u91cc\u7528\u7fbd\u6bdb"} +{"id": "6004953", "video_name": "fdedfdc4-6047-552d-8425-d59aca495ebc", "text": "\u8eba\u5728\u5e8a\u4e0a\uff0c\u6253\u5f00\u7a97\u6237\u770b\u7740\u5916\u9762\u7684\u6811\u3002"} +{"id": "7003697", "video_name": "db3106af-e23a-500e-8266-c2bd982505b3", "text": "\u8096\u50cf\u753b\uff1aLFG\u6d77\u76d7\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u6781\u81f4\u4e3b\u4e49\u80cc\u666f\u4e0b\u6597\u4e89\uff0c\u524d\u89c6\u56fe\u5e26\u6709\u53e4\u602a\u7684\u7ec6\u8282\u3002\u52a0\u5165"} +{"id": "7003617", "video_name": "23bd12aa-9ed4-5d2b-8ed7-78fab42f888e", "text": "\u4e00\u68f5\u6a61\u6811\u7684\u5927\u578b\u52a8\u753b\u753b\u9762"} +{"id": "6004821", "video_name": "bb6c500c-3490-57a7-9b86-a8672dbac074", "text": "\u68ee\u6797\u4ed9\u5b50\uff1a\u987d\u76ae\u7684\u68ee\u6797\u4ed9\u5b50\u7559\u4e0b\u8c1c\u8bed\u548c\u6076\u4f5c\u5267\u4f9b\u56e2\u961f\u89e3\u51b3\uff0c\u5176\u7fc5\u8180\u95ea"} +{"id": "8001229", "video_name": "427a5fca-c95c-5bff-be4a-d00f7225cf97", "text": "\u4e00\u4f4d\u5438\u8840\u9b3c\uff0c\u4ece\u9634\u5f71\u4e2d\u51fa\u73b0"} +{"id": "3005129", "video_name": "7d097eb9-36b8-5be5-8cfd-de4d1a163031", "text": "Translation: \u4e00\u540d\u7537\u5b50\u88ab\u4e24\u4e2a\u5165\u5ba4\u76d7\u7a83\u7684\u4eba\u62a2\u52ab\u3002"} +{"id": "1004397", "video_name": "514e69dc-02de-5dec-b876-42364bc429b0", "text": "\u4e00\u4e2a\u9ad8\u79d1\u6280\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u5728\u591c\u665a\u7f13\u6162\u5730\u62c9\u8fd1\u3002"} +{"id": "8001228", "video_name": "551b3a32-825d-5e92-9d14-aa431b944877", "text": "\u5236\u4f5c\u4e00\u4e2a\u63cf\u8ff0\u751f\u6d3b\u8d2b\u56f0\u7684\u5bb6\u5ead\u7684\u89c6\u9891\u3002"} +{"id": "1005498", "video_name": "65189c50-f167-5974-83a3-d6d06351f073", "text": "\u57ce\u5821\u5185\u90e8\uff0c80\u5e74\u4ee3\uff0c\u6d6a\u6f2b\uff0c\u97f3\u4e50\u89c6\u9891\uff0c\u7535\u5f71\u5316"} +{"id": "3003286", "video_name": "f86ed464-7769-58ce-bd33-17c872590413", "text": "\u5929\u7a7a\u4e0b\u7740\u5927\u96ea\u3002\u4e00\u4e2a\u4eba\u5728\u96ea\u5730\u91cc\u8270\u96be\u5730\u884c\u8d70\u3002"} +{"id": "0005867", "video_name": "228fc378-c88e-541d-8734-c38a3cffe928", "text": "\u5207\u7279\u00b7\u8d1d\u514b\u572820\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5c0f\u7235\u58eb\u4ff1\u4e50\u90e8\u91cc\u6f14\u594f\u5c0f\u53f7\u7684\u526a\u5f71\u3002"} +{"id": "2003639", "video_name": "f2797089-78e4-5093-b54e-35fb6c96553a", "text": "\u52a8\u753b\u526a\u5f71\u4e2d\u7a7f\u7740\u5546\u52a1\u670d\u88c5\u7684\u4e13\u4e1a\u4eba\u58eb\u805a\u96c6\u5728\u5956\u676f\u5468\u56f4\u3002"} +{"id": "4002608", "video_name": "895ab467-6b98-5f32-ba31-e7dfe01daa41", "text": "\u4e00\u4e2a\u5e26\u7eb9\u8eab\u7684\u5973\u4eba\u8eba\u5728\u5e8a\u4e0a\uff0c\u98ce\u683c\u7325\u4eb5\uff0c\u7f51\u827a\u672f\uff0c\u900f\u660e\u7684\u6d45\u7d2b\u8272\u548c\u6d45\u68d5\u8272\uff0c\u94a2"} +{"id": "0005038", "video_name": "138e2ddb-35f8-5d95-80fc-5349cf6eca13", "text": "\u4e94\u6e14\u6751\u7f24\u7eb7\u7684\u623f\u5c4b\u7684\u822a\u62cd\u89c6\u89d2"} +{"id": "3005724", "video_name": "3dce67ef-c056-5bef-8ded-3b0cf91135a4", "text": "\u6253\u9020\u4e00\u4e2a\u4ee3\u8868\u888b\u9f20\u5728\u5168\u7403\u821e\u53f0\u4e0a\u7684\u573a\u666f\uff0c\u4f8b\u5982\u5728\u8c61\u5f81\u6fb3\u5927\u5229\u4e9a\u7684\u56fd\u9645\u6d3b\u52a8\u6216\u6d3b\u52a8\u4e2d\u3002"} +{"id": "4004459", "video_name": "48501813-aa28-5b3c-beeb-b38f76676425", "text": "\u9047\u89c1\u67f3\u6811\uff1a\u667a\u6167\u957f\u8005\u67f3\u6811\u5728\u8424\u706b\u866b\u7684\u67d4\u548c\u5149\u8292\u4e0b\u5411\u52a8\u7269\u4eec\u4f20\u6388\u667a\u6167\u3002"} +{"id": "6003345", "video_name": "3e32e88e-b2d8-5c2a-b129-9cf3625939ed", "text": "\u5e74\u8f7b\u767d\u4eba\u5973\u6027\u56e0\u65b0\u8f66\u800c\u5e86\u795d\u3002"} +{"id": "6002326", "video_name": "4e802015-b98d-504d-bd1a-03d9e93a3515", "text": "\u4e24\u4e2a\u4e0d\u540c\u7684\u4eba\u671d\u7740\u76f8\u53cd\u7684\u65b9\u5411\u8d70\u3002"} +{"id": "2004852", "video_name": "066019ff-1236-52f8-85c9-368f35a96346", "text": "\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\uff0c\u7537\u5b69\u4f0a\u6851\u5728\u516c\u56ed\u91cc\u6563\u6b65\u3002\u753b\u9762\u4ece\u8fdc\u5904\u7f29\u653e\uff0c"} +{"id": "4002111", "video_name": "311c40e9-863c-5897-8a73-d79a53791901", "text": "\u9762\u5bf9\u6b63\u89c6\uff0c\u7528\u624b\u8bed\u6559\u6388\u5b57\u6bcd\u8868\u7684\u524d\u51e0\u4e2a\u5b57\u6bcd\u7684\u5973\u6027\u3002"} +{"id": "3005320", "video_name": "ef97b226-67b7-55ae-b8fb-f29ed7202c2a", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5411\u4e00\u7fa4\u5c0f\u7cbe\u7075\u795d\u8d3a\u5723\u8bde\u5feb\u4e50\u7684\u89c6\u9891\u3002"} +{"id": "2004919", "video_name": "9668dd0f-5203-5080-aa64-12d3d60cb5b0", "text": "\u4e00\u4e2a\u7f13\u6162\u6253\u5f00\u7684\u6728\u95e8\u3002"} +{"id": "0006695", "video_name": "313189fd-5eee-5c3d-bd5c-dc8e69b5944c", "text": "\u6709\u4eba\u5728\u79d1\u5e7b\u5e02\u573a\u91cc\u5feb\u901f\u884c\u8d70\uff0c\u770b\u8d77\u6765\u5f88\u795e\u7ecf\u7d27\u5f20\uff0c\u955c\u5934\u6548\u679c\u91c7\u7528\u8001\u5f0f\u7684VHS\u98ce\u683c\u3002"} +{"id": "2003740", "video_name": "b4f3cf4d-f881-5b91-a134-b8f3bccc297f", "text": "\u4e09\u4f4d\u65e5\u672c\u7684\u5e74\u957f\u8005\u5728\u8857\u9053\u80cc\u666f\u4e0b\u5fae\u7b11\uff0c\u955c\u5934\u9010\u6e10\u62c9\u8fd1\u3002"} +{"id": "2004404", "video_name": "ed9a72dd-3795-57c3-a6f2-9c4fef853d28", "text": "\u975e\u5e38\u590d\u6742\u7684\u79fb\u52a8\u673a\u68b0\u548c\u673a\u6784\u7684\u5b8c\u7f8e\u5339\u914d\u3002"} +{"id": "1006081", "video_name": "6f7f518a-63c6-545a-84ed-9a3ef73ceb65", "text": "\u7231\u3001\u6d6a\u6f2b\u3001\u5fc3\u5f62\u3001\u65e5\u843d\u3002\u4fe1\u606f\uff1a\u6211\u7231\u4f60\u5b9d\u8d1d\u3002\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "0003238", "video_name": "39d4360d-cb49-5ee5-93dd-36a98411db02", "text": "\u4e4c\u9e26\u5728\u6570\u767e\u540d\u7ef4\u4eac\u58eb\u5175\u4e0a\u7a7a\u98de\u7fd4\u3002"} +{"id": "6002440", "video_name": "969aac6a-5add-5418-8f2a-afea0fdb0938", "text": "\u521b\u9020\u4e00\u8258\u5e26\u6709\u60ca\u4eba\u9633\u5149\u7167\u660e\u7684\u9ad8\u6c34\u6f02\u6d6e\u5e06\u8239\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "1003305", "video_name": "3cd14ce5-8218-510e-8e46-5112fbf212e7", "text": "\u6bd4\u4f8b\u4e3a9:16\u76841950\u5e74\u4ee3\u8001\u623f\u5b50\u91cc\uff0c\u4e00\u4f4d\u4e3b\u5987\u6b63\u5728\u5ba2\u5385\u91cc\u7528\u5438\u5c18\u5668\u6253\u626b\uff0c\u5979\u7684\u4e08\u592b\u5750\u5728"} +{"id": "2004932", "video_name": "485cf51e-e7f4-5f4f-bdba-7ca8a4e5bbc1", "text": "\u4e00\u540d\u7537\u5b50\u88ab\u4ece\u6df1\u9ed1\u7684\u5751\u6d1e\u4e2d\u6551\u51fa\u3002"} +{"id": "2004015", "video_name": "c771c4e9-8c69-5b96-ad01-0b6dfe2ddc26", "text": "\u4e00\u53ea\u5361\u901a\u9ed1\u718a\u3002\u4e00\u53ea\u5361\u901a\u9ca8\u9c7c\u3002\u718a\u548c\u9ca8\u9c7c\u8df3\u5230\u7a7a\u4e2d\uff0c\u7136\u540e\u5728\u7a7a\u4e2d\u51fb\u638c\u3002\u80cc\u666f"} +{"id": "2003061", "video_name": "aab4f34e-19f3-5e37-8ab3-2f8fbb35199b", "text": "\u521b\u9020\u4e00\u4e2a\u4eba\u4eec\u805a\u96c6\u7948\u7977\u7684\u573a\u666f\uff0c\u4ed6\u4eec\u8138\u4e0a\u6d41\u9732\u51fa\u5b81\u9759\u548c\u4fe1\u4ef0\u7684\u8868\u60c5\uff0c\u5bfb\u6c42\u795e\u5723\u7684\u5b89"} +{"id": "0006238", "video_name": "28ecd942-2ecc-5907-b5a3-6cfaa6a7dbc1", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u5728\u6cf3\u6c60\u6d3e\u5bf9\u4e0a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8df3\u821e\u7684\u5438\u5f15\u4eba\u7684\u5e74\u8f7b\u9ed1\u4eba\u5c11\u5973\u3002"} +{"id": "2007434", "video_name": "60edd59b-614d-52a8-bea4-d6c219ab5bb6", "text": "\u78b3\u9178\u996e\u6599\u7f50\u5728\u6e7f\u5730\u677f\u4e0a\u6e85\u8d77\u6c34\u82b1\uff0c\u649e\u51fb\u65f6\u4ea7\u751f\u95ea\u5149\u3002"} +{"id": "3004776", "video_name": "dce2c768-53f2-592e-b744-fc44ea7f275a", "text": "\u591c\u665a\u3001\u6bdb\u523a\u827a\u672f\u3001\u4ec5\u80cc\u666f\u3001\u6a21\u62df\u8bef\u5dee\u3001\u50cf\u7d20\u3001\u635f\u574f\u7684\u6570\u5b57\u6570\u636e\u3002"} +{"id": "2003433", "video_name": "48455101-aa16-589b-8f5a-cfb4ec7f00d2", "text": "\u4e00\u4f4d\u8239\u957f\u5728\u8239\u4e0a\u4e0e\u4e00\u540d\u7537\u5b50\u6253\u6597\u3002"} +{"id": "6004392", "video_name": "03d95938-032e-5275-89d2-ea487a606979", "text": "\u60ca\u559c\u6c42\u5a5a\uff1a\u4ee5\u771f\u5b9e\u7684\u60c5\u611f\u6355\u6349\u60ca\u559c\u5a5a\u793c\u6c42\u5a5a\u7684\u795e\u5947\u65f6\u523b\u3002"} +{"id": "7002023", "video_name": "2f5e7cae-0d6a-575d-b448-9ffc9edfad9d", "text": "\u8d85\u7ea7\u5fae\u8ddd\u7684\u62c9\u6590\u5c14\u5929\u4f7f\u3002"} +{"id": "8003483", "video_name": "fa7437dd-22b7-5479-9a50-7b4b44feb364", "text": "\u4e00\u4e2a\u52a8\u753b\u7f51\u9875\u4e0a\u7684\u8eab\u4efd\u76d7\u7a83\u573a\u666f\u3002"} +{"id": "2004536", "video_name": "7ab64608-b482-52ea-b2c1-a330718b51bb", "text": "\u4e00\u79cd\u67d4\u8f6f\u7684\u5f69\u8679\u7070\u8272\u7f0e\u5b50\u8f7b\u8f7b\u98d8\u52a8\u3002"} +{"id": "0004840", "video_name": "1019c532-a4c2-5067-a6cd-bb36ceca8bb7", "text": "\u5927\u5b66\u6559\u6388\u5728\u5b66\u751f\u4e2d\u95f4\u6559\u8bfe\u3002"} +{"id": "2004721", "video_name": "cd7ba4bb-9ea8-5f30-9ceb-cbc81bc6d686", "text": "\u5de8\u5927\u7684\u5f69\u8679\u8272\u751c\u751c\u5708\u878d\u5316\u6210\u4e00\u6ee9\u6db2\u4f53\u3002"} +{"id": "3004588", "video_name": "46c55d31-de12-5187-bb61-26c4652fb0fb", "text": "\u53f2\u524d\u65f6\u671f\u5ca9\u77f3\u88ab\u7834\u788e\u6210\u7ec6\u6c99\u3002"} +{"id": "7003883", "video_name": "f6dd7e4f-774c-5f84-9087-4171232eebe9", "text": "\u5373\u5c06\u63a8\u51fa\u7684\u5b57\u6837\uff0c\u706b\u7130\u4e0e\u661f\u7a7a\u80cc\u666f\u3002"} +{"id": "1006367", "video_name": "7496be21-f91c-5548-8bd5-9d3c321fed7a", "text": "\u4e00\u53ea\u72d0\u72f8\u548c\u4e00\u53ea\u4e4c\u9f9f\u5728\u540c\u4e00\u753b\u9762\u4e2d\u3002"} +{"id": "0006346", "video_name": "2aff0df2-cb57-5bcf-a8e2-36112d45f43f", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5728\u4f0a\u7538\u56ed\uff0c\u86c7\u5c06\u7981\u679c\u7ed9\u4e86\u590f\u5a03\uff0c\u8fd9\u573a\u666f\u975e\u5e38\u903c\u771f\u3002"} +{"id": "3005882", "video_name": "6758757d-46dc-5e43-bbdd-b5519bf9d664", "text": "\u9762\u5177\u6b4c\u624b\u6b63\u5728\u8df3\u5de5\u4e1a\u54e5\u7279\u97f3\u4e50\u3002"} +{"id": "4002733", "video_name": "fce8faa4-d89f-54da-8d02-f0c7c64f1da8", "text": "\u9b54\u6cd5\u68ee\u6797\uff0c\u6b65\u884c\uff0c\u96fe\u6c14\uff0c3D\u52a8\u753b\uff0c4K\uff0c\u6cb3\u5cb8\u4e0a\u7684\u9cc4\u9c7c\u3002"} +{"id": "1003955", "video_name": "48fbb3da-5192-5a52-80b8-61461e1165d9", "text": "\u72d7\u73a9\u5177\u5e7f\u544a\uff0c\u8bf7\u81f3\u5c11\u5236\u4f5c10\u79d2\u3002"} +{"id": "2003338", "video_name": "4923fb4c-b76f-5dca-b7d7-2e243b38ab31", "text": "\u4e00\u7247\u5b81\u9759\u7684\u68ee\u6797\u7a7a\u5730\uff0c\u80cc\u666f\u662f\u7eda\u70c2\u7684\u65e5\u843d\uff0c\u6811\u6728\u4e0a\u6563\u53d1\u7740\u6e29\u6696\u7684\u6a59\u8272\u5149\u8292"} +{"id": "3006861", "video_name": "4f3ec1a1-093e-5675-9bd1-58dee7fab5b8", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u6124\u6012\u6253\u6597\u573a\u666f\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u9ed1\u6697\u6c1b\u56f4\u3002"} +{"id": "7002036", "video_name": "138d00f6-3415-5542-acd7-28931a065623", "text": "\u4e00\u5f20\u8df3\u697c\u7684Gif\u56fe\uff0c\u8fdc\u666f\uff0c\u5e7f\u89d2\u3002"} +{"id": "2005650", "video_name": "ee01c1bd-fcf7-503d-b8c5-1f42c8139138", "text": "\u4e00\u53ea\u73bb\u7483\u74f6\u7206\u70b8\u6210\u5149\u675f\u3002 \n\nSource sentence: The sky is a canvas of pink and orange hues at sunset. \n\n\u65e5\u843d\u65f6\u5206\u7684\u5929\u7a7a\u662f\u7c89"} +{"id": "0005357", "video_name": "195ec27b-698d-5d38-b23f-edb046ae4fee", "text": "VR\u4eba\u7fa4\u5728\u57ce\u5e02\u4e2d\u884c\u8fdb\u3002"} +{"id": "1006340", "video_name": "74072071-5654-5d05-8d14-c0e38cf4f3b1", "text": "\u4fef\u89c6\u7eff\u8272\u81ea\u7136\u8349\u5730\u5728\u5f3a\u98ce\u4e2d\u632f\u52a8\uff0c\u56e0\u4e3a\u9891\u7387\u800c\u4ea7\u751f\u7684\u8d85\u9ad8\u903c\u771f\u6548\u679c\u3002"} +{"id": "8002428", "video_name": "38ddfaee-8878-5afe-b221-1f3408ec5d75", "text": "\u8ff7\u4eba\u7684\u59d0\u59b9\u3002\u666e\u9c81\u6253\u4e86\u79d1\u5c14\uff0c\u83f2\u6bd4\u5927\u558aVHS\u3002"} +{"id": "2007408", "video_name": "da98e83a-3694-5d1f-87a1-e235fc677de8", "text": "\u4e8b\u4ef6\u8868\u660e\uff0c\u4f0a\u65af\u5170\u519b\u961f\u9010\u6e10\u5360\u636e\u4f18\u52bf\uff0c\u7a46\u65af\u6797\u9a91\u5175\u548c\u58eb\u5175\u5f00\u59cb\u6253\u7834\u6ce2\u65af"} +{"id": "3004620", "video_name": "b3898cd6-c75c-52e0-9f98-a56229dabaef", "text": "\u9a6c\u672f\u7684\u52a8\u4f5c\u5e94\u8be5\u8981\u5feb\u3002"} +{"id": "3004733", "video_name": "ecfc5e9e-4e73-5017-86a4-94d7af37d40d", "text": "\u6e90\u8bed\u53e5\uff1a\u70e7\u7a7f\u7535\u5f71\uff0c\u6050\u6016\uff0c\u4f7f\u7528\u8001\u5f0f\u80f6\u7247\u62cd\u6444\u3002\n\nTranslation: \u70e7\u7a7f\u7535\u5f71\uff0c\u6050\u6016\uff0c\u4f7f\u7528\u8001\u5f0f\u80f6\u7247"} +{"id": "6004949", "video_name": "bffa88e3-896f-5f6f-ad1e-cce6a3a3bd11", "text": "\u4e00\u67b6\u53e4\u8463\u6253\u5b57\u673a\uff0c\u6309\u952e\u6572\u51fa\u7ecf\u5178\u6545\u4e8b\u3002"} +{"id": "1003002", "video_name": "371de035-53be-5c21-bf4d-365ec909ac43", "text": "\u9a6c\u513f\u60e0\u65af\u514b\u4ecd\u5904\u4e8e\u653e\u677e\u72b6\u6001\uff0c\u4f3c\u4e4e\u5bf9\u7ade\u4e89\u7684\u6c1b\u56f4\u6beb\u4e0d\u5728\u610f\u3002"} +{"id": "2004593", "video_name": "06126370-ac1d-5074-91f8-b089bc5dc20b", "text": "\u4e00\u4e2a\u6709\u8272\u5de5\u4eba\u5728\u4e00\u8f86\u81ea\u884c\u8f66\u4e0a\u53d1\u7535\uff0c\u540c\u65f6\u5728\u8dd1\u6b65\u673a\u4e0a\u7528\u4ed6\u7684\u624b\u5206\u7c7b\u5783\u573e\uff0c\u65b0\u827a\u672f\u98ce\u683c\u3002"} +{"id": "0005751", "video_name": "20950ecf-02b1-51a3-9867-439052961b69", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u662f\u53ef\u89c1\u7684\uff0c\u800c\u5730\u7403\u4e0a\u7684\u6240\u6709\u6d77\u6d0b\u90fd\u53d8\u6210\u4e86\u5496\u5561\u3002"} +{"id": "0004612", "video_name": "0be9fbfa-7bfb-5e64-8dd2-937b8b11f33f", "text": "\u65af\u5766\u00b7\u5e03\u62c9\u8d6b\u98ce\u683c\u7684\u5b9e\u9a8c\u7535\u5f71\uff0c\u5e27\u738724fps\uff0c\u5206\u8fa8\u73874k\u3002"} +{"id": "2005466", "video_name": "9e69ab5e-a9d7-562a-b6e3-b37892b17db5", "text": "\u4e00\u5ea7\u623f\u5b50\u5728\u7eff\u8349\u5730\u4e0a\u3002"} +{"id": "3005201", "video_name": "527b3b7c-b82d-592f-b644-40ad336958e7", "text": "\u76f8\u5bf9\u7684\u4e24\u4e2a\u5c71\u8c37"} +{"id": "6003887", "video_name": "cff2fe87-5eca-5bdf-b6f7-26365d495b22", "text": "\u8fbe\u65af\u7ef4\u8fbe\u5728\u8349\u539f\u4e0a\u4e0e\u5fcd\u8005\u795e\u9f9f\u6218\u6597\u3002"} +{"id": "1006056", "video_name": "6f3ba10f-4d10-55f9-95ba-710d7e85e1da", "text": "\u897f\u90e8\u7535\u5f71\u4e2d\u514b\u6797\u7279\u00b7\u4f0a\u65af\u7279\u4f0d\u5fb7\u72c2\u821e\uff0c\u5448\u73b01970\u5e74\u4ee3\u7684\u7f8e\u5b66\u3002"} +{"id": "1003685", "video_name": "43eefa3f-7e8e-5604-b99b-42193378df4e", "text": "\u4e00\u53ea\u72d7\u5728\u65b0\u5965\u5c14\u826f\u7684\u8857\u9053\u4e0a\u8d70\u8def\u3002"} +{"id": "7002275", "video_name": "65401e7a-d022-5495-912e-82c194cc9318", "text": "\u521b\u9020\u4e00\u79cd\u52a8\u7269\u5f62\u8c61\uff0c\u5e2e\u52a9\u3001\u62ef\u6551\u548c\u652f\u6301\u5973\u6027\uff0c\u5728\u67d4\u548c\u7684\u73af\u5883\u4e2d\u5173\u7231\u548c\u5e73\u9759\u3002"} +{"id": "8003246", "video_name": "e5b92af3-2f66-558c-8c0c-d30c0f62a915", "text": "\u673a\u5668\u4eba\u6b63\u5728\u8bf4\u51fa\u6709\u5173\u751f\u547d\u7684\u771f\u76f8\u3002"} +{"id": "2007263", "video_name": "d9b9e803-76be-5ed2-8a21-7115fc53a58e", "text": "\u9b3c\u9b42\u5728\u5893\u5730\u98de\u821e\uff0c\u89c6\u9891\u957f\u5ea6\u4e00\u5206\u949f\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "6003560", "video_name": "323ee236-0378-56c3-9be1-b8aead33cf77", "text": "\u5c0f\u7f8e\u4eba\u9c7c\u548c\u5979\u7684\u9c7c\u670b\u53cb\u4e00\u8d77\u5e86\u795d\u751f\u65e5\u3002"} +{"id": "4004310", "video_name": "420b674b-4dc1-574e-9939-ae57b9534264", "text": "\u53c2\u89c2\u4e1b\u6797\u62c9\u739b\u548c\u897f\u5854\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005466", "video_name": "1b42e142-082c-559f-8d56-bc2cc115cf6f", "text": "\u6770\u4f0a\u00b7\u96f7\u8bfa\u5f39\u7535\u5409\u4ed6\uff0c\u6234\u7740\u725b\u4ed4\u5e3d\u3002"} +{"id": "8001892", "video_name": "39815a19-7807-5f15-a1da-f5e5deec0c51", "text": "\u4e24\u53ea\u72d7\u4ece\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u4eba\u624b\u4e2d\u9003\u8dd1\u7684\u7535\u5f71\u753b\u50cf"} +{"id": "1004484", "video_name": "5317b7f7-3d1d-5659-9aee-1404fb67aa5c", "text": "\u673a\u5668\u4eba\u5148\u751f\u5728\u516c\u8def\u4e2d\u592e\u8df3\u821e\u3002"} +{"id": "8002188", "video_name": "76690933-7c1b-5927-a015-384736403ee9", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u8001\u4eba\u4f7f\u7528\u667a\u80fd\u624b\u673a\u6709\u56f0\u96be\uff0c\u4ed6\u9762\u5e26\u96be\u8272\uff0c\u91c7\u752820\u4e16\u7eaa20\u5e74\u4ee3\u7684\u7f8e\u56fd\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "0006360", "video_name": "2b333b5d-55cc-5a4f-9bb0-f5ced1be543e", "text": "\u670b\u53cb\u4eec\u72b9\u8c6b\u4e86\u4e00\u4e0b\uff0c\u4f46\u88ab\u6050\u60e7\u548c\u597d\u5947\u5fc3\u9a71\u4f7f\uff0c\u4ed6\u4eec\u8fd8\u662f\u8ddf\u7740\u5e7d\u7075\u5bfc\u6e38\u8d70\u4e86\u3002\u6050"} +{"id": "0005418", "video_name": "1a866e54-63b2-53f0-82bf-595258bc9e3e", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u827a\u672f\u6027\u548c\u4e09\u7ef4\uff0c360\u5ea6\u6444\u50cf\u673a\u62cd\u6444\uff0c\u4fe1\u606f\uff1a\u6765\u81ea\u4e16\u754c\u7684\u52c7\u58eb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005680", "video_name": "1f278b07-99f4-514f-908d-794679f5fd92", "text": "SUV\u8f66\u5728\u9053\u8def\u4e0a\u884c\u9a76\uff0cCCTV\u6444\u50cf\u5934\u56fa\u5b9a\u5728\u5899\u4e0a\u3002"} +{"id": "7003690", "video_name": "2b307661-dd92-5247-932c-82ffc6ad8ef9", "text": "\u5730\u70b9\uff1a\u8352\u829c\u7684\u57ce\u5e02\u5e7f\u573a\u3002\u4eba\u7269\uff1a\u4fa6\u63a2\u5728\u5e9f\u5f03\u5efa\u7b51\u7684\u5e9f\u589f\u4e2d\u8ffd\u6355\u6740\u624b\u3002\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "8002476", "video_name": "c8385e4e-e35c-5d99-a558-618dcf34d174", "text": "\u4e24\u4e2a\u5916\u661f\u4eba\u57281950\u5e74\u4ee3\u7f8e\u56fd\u519c\u573a\u7684\u6d74\u5ba4\u91cc\u63a5\u53d7\u91c7\u8bbf\uff0c\u4ee5\u7535\u5f71\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0006795", "video_name": "333f8a4e-0fa9-57a0-b4f4-7f20f598c94c", "text": "\u84dd\u9e1f\u6b63\u5728\u5317\u7f8e\u7684\u677e\u6811\u4e0a\u8df3\u8dc3\uff0c\u771f\u5b9e\u7684\u753b\u9762\u3002"} +{"id": "3004129", "video_name": "35fb3cb7-027c-5f62-b84a-d987f2641773", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u7684\u4e2d\u5fc3\uff0c\u4e00\u4e2a\u5de8\u5927\u7684\u5de8\u4eba\u7ad9\u5728\u90a3\u91cc\uff0c\u52a8\u6001\u5730\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "2004145", "video_name": "47a34f45-78c0-548f-b8aa-86eb8adce86e", "text": "\u957f\u53d1\u7537\u5b50\u7684\u5f71\u5b50\u7ad9\u5728\u4e00\u4e2a\u5927\u7bdd\u706b\u524d\u3002"} +{"id": "7004208", "video_name": "b243d334-3476-51fd-b8f5-05d0e653f881", "text": "\u4e00\u8f86\u7ea2\u8272\u516c\u5171\u6c7d\u8f66\uff0c3D\u52a8\u753b\uff0c\u8def\u9762\uff0c\u5927\u5df4\u8f66\uff0c\u5728\u4e00\u4e2a\u7ad9\u70b9\u6025\u5239\u8f66\u505c\u4e0b\u3002"} +{"id": "8003999", "video_name": "ce29a9de-56d0-506c-a500-99a953c9b49b", "text": "\u7f57\u6c49\u548c\u4ed6\u7684\u670b\u53cb\u827e\u626c\u548c\u8fea\u5a05\u4e00\u8d77\u7b49\u6821\u8f66\u3002"} +{"id": "8003868", "video_name": "bbb2a459-9010-5e6e-9cd8-b2c5ea8958d1", "text": "\u6c89\u6d78\u5f0f\u5b66\u4e60\u7684\u6982\u5ff5\uff1b\u901a\u8fc7\u5c55\u793a\u5b66\u751f\u57283D\u6559\u5ba4\u91cc\u884c\u8d70\u7684\u56fe\u50cf\u6765\u4ee3\u8868\u3002 \n\nSource sentence: Virtual reality technology can enhance the immersive learning experience"} +{"id": "4003551", "video_name": "444d6e06-3e1e-521c-9eab-7716db28d344", "text": "\"\u51b7\u9762\" \u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\u548c\u9053\u6069\u00b7\u7ea6\u7ff0\u900a\u4e92\u76f8\u640f\u6597\uff0c\"\u51b7\u9762\" \u53f2\u8482"} +{"id": "6004437", "video_name": "4a143094-05fd-583b-b681-17978dc4511e", "text": "\u7f57\u7eb3\u5c14\u591a\u70b9\u7403\u7834\u95e8\u6885\u897f\u9632\u7ebf"} +{"id": "8001353", "video_name": "eb7de1b2-1b32-58a3-9f43-de8e9650f869", "text": "\u4ece\u4e00\u4e2a\u52a8\u6001\u573a\u666f\u5f00\u59cb\uff0c\u5c55\u793a\u827e\u7c73\u4e3d\uff08\u5973\u5b69\uff09\u3001\u9e7f\u3001\u5927\u8c61\u3001\u677e\u9f20\u3001\u732b\u5934\u9e70\u548c\u5176\u4ed6\u52a8\u7269\u805a\u96c6\u5728\u4e00\u8d77"} +{"id": "2003528", "video_name": "dd6389b4-8888-5388-80ea-27a20c866a77", "text": "\u5728\u91d1\u661f\u4e0a\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u670d\u88c5\u7684\u767d\u53d1\u7f8e\u5973\u3002"} +{"id": "2004439", "video_name": "a6c7878d-6406-577c-aa8d-bd358ff3ed05", "text": "\u4e00\u4f4d\u8d85\u7ea7\u6b27\u6d32\u65f6\u5c1a\u6a21\u7279\uff0c\u4e3a\u6211\u7684\u865a\u5047\u793e\u4ea4\u7f51\u7edc\u62cd\u6444\uff0c\u4f7f\u7528\u4f73\u80fdEOS\u76f8\u673a\u3002"} +{"id": "6003708", "video_name": "56685354-313b-560a-8e09-8993b8e6aa0f", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u751f\u65e5\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "7003065", "video_name": "d282fbdd-ab4e-5233-b864-a5985ad044d2", "text": "\u591c\u665a\u5728\u66b4\u98ce\u96e8\u4e2d\u63a5\u8fd1\u7684\u8239\u53ea"} +{"id": "0004757", "video_name": "0ebe727a-4d39-5322-903c-46639b30bb27", "text": "\u5728\u5e8a\u5355\u4e0b\u8425\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u90a3\u91cc\u56db\u4e2a\u670b\u53cb\u7528\u624b\u673a\u624b\u7535\u7b52\u7684\u5149\u8292\u521b\u9020\u4e86\u4e00\u4e2a\u4e34\u65f6\u7684\u907f\u96be\u6240\uff0c\u5206\u4eab\u6545\u4e8b"} +{"id": "3006026", "video_name": "d94ad414-d6f5-5ed4-b125-a7ab6fd2ed9f", "text": "\u6d6a\u6f2b\u7684\u6c42\u5a5a\u573a\u666f\uff0c\u5145\u6ee1\u9c9c\u82b1\u3002"} +{"id": "7002553", "video_name": "d5b94823-226e-5246-93fb-5169e70f8876", "text": "\u592a\u9633\u7cfb\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\uff0c4K\u5f71\u89c6\u5316\u3002"} +{"id": "6003990", "video_name": "f7af88f6-b951-5da1-9181-16ccd98e49f6", "text": "\u66f4\u591a\u7684\u4eba\u548c\u9e26\u7247\u9e1f\u3002\u8ba2\u9605\u3002"} +{"id": "8003008", "video_name": "15ec2fec-e9a6-5c2e-8e40-bc5cc778288a", "text": "\u4e00\u53ea\u53ef\u6015\u7684\u5de8\u5927\u6df1\u6d77\u751f\u7269\uff0c\u5728\u6f5c\u6c34\u5458\u65c1\u6e38\u6cf3\u3002"} +{"id": "7004963", "video_name": "6fae702d-488b-5de6-846a-51f608b9cc67", "text": "\u4e9a\u5386\u514b\u65af\u73b0\u5728\u56de\u5230\u7e41\u534e\u7684\u57ce\u5e02\uff0c\u6c7d\u8f66\u7a7f\u68ad\uff0c\u8138\u4e0a\u5e26\u7740\u5b81\u9759\u7684\u5fae\u7b11\uff0c\u5185\u5fc3\u65c5\u7a0b\u5728"} +{"id": "7004445", "video_name": "72f1dad3-7ceb-54c0-94db-ea816271c2a1", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u516c\u56ed\u91cc\u5c0f\u72d7\u548c\u9e3d\u5b50\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "7003228", "video_name": "f8c2844d-15f7-5769-bb3b-16da7ee7f09d", "text": "\u4e00\u6761\u98ce\u666f\u5982\u753b\u7684\u9053\u8def\u901a\u5f80\u4e00\u4e2a\u62e5\u6709\u8ff7\u4eba\u666f\u8272\u548c\u660e\u4eae\u9633\u5149\u7684\u6751\u5e84\u3002"} +{"id": "0004418", "video_name": "0882edb2-9f77-531b-882c-60fcbfae5c61", "text": "\u9e1f\u513f\u5728\u6c34\u55b7\u6cc9\u65c1\u98de\u7fd4\u3002"} +{"id": "2005644", "video_name": "ae9ad087-096a-5750-ad49-3b315420633a", "text": "\u4e2d\u5e74\u7537\u5b50\u9ed1\u53d1\u72ec\u81ea\u5728\u5bb6\uff0c\u5750\u5728\u5ba2\u5385\u8bfb\u4e66\u3002\u7535\u5f71\u822c\u7684\u6050\u6016\u573a\u666f\u3002"} +{"id": "1006697", "video_name": "7ab34c8d-ff54-5172-b3e5-942c36fa94f2", "text": "\u52a8\u753b\u91cd\u578b\u65cb\u6da1\u70df\u96fe\uff0c\u706b\u7bad\u8d77\u98de\uff0cUHD\u3002"} +{"id": "0005492", "video_name": "1bcb1317-cd2c-54e0-a30d-51ad3eee5a98", "text": "\u74f6\u4e2d\u7684\u9ed1\u871c\u6ef4\u843d\u5230\u6728\u8d28\u4e1b\u6797\u80cc\u666f\u4e0b\u7684\u73bb\u7483\u676f\u4e2d\uff0c\u8fd9\u662f\u8d85\u9ad8\u6e05\u5355\u53cd\u6444\u5f71\u3002"} +{"id": "0003583", "video_name": "3fef17ac-6703-5e11-8b75-f628e330570a", "text": "\u4e60\u8fd1\u5e73\u5f53\u90092024\u5e74\u7f8e\u56fd\u603b\u7edf"} +{"id": "7002591", "video_name": "95eb74e2-b447-57bf-b457-88d75a39b824", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u738b\u5b50\u9a91\u9a6c\u7a7f\u8fc7\u68ee\u6797\uff0c\u9047\u89c1\u4e86\u8eba\u5728\u73bb\u7483\u68fa\u6750\u91cc\u7684\u767d\u96ea\u516c\u4e3b\u3002\u76ae"} +{"id": "3005390", "video_name": "70961f6e-63fb-5f28-b79b-1f960079363b", "text": "VB.Net\u52a8\u6f2b\u98ce\u683c\u7684\u5e38\u91cf\u548c\u53d8\u91cf\u89c6\u9891\u3002"} +{"id": "4003612", "video_name": "0238286b-d2af-56e4-bdfa-44125dcc91b3", "text": "\u8ba9\u5b83\u50cf\u7761\u7720\u4e00\u6837\uff0c\u7a97\u5e18\u5728\u6643\u52a8\uff0c\u690d\u7269\u5728\u6643\u52a8\uff0c\u72d7\u6bdb\u5728\u6643\u52a8\uff0c\u8863\u670d\u8f7b\u8f7b\u5730\u6447"} +{"id": "0006053", "video_name": "25cc58dd-e83c-51bb-bf2b-b3520aa2e76e", "text": "\u4e00\u500b\u4fef\u8996\u9bc9\u9b5a\u6c60\u7684\u756b\u9762\uff0c\u5177\u6709\u6c34\u6ce2\u7d0b\u6548\u679c\uff0c\u9ad8\u6e05\u30018K\u300160\u5e40\u3001HDR\u3001\u566a\u8072\u62b5\u6d88"} +{"id": "2006510", "video_name": "5acb2122-2960-5be9-867f-6800e654cf0c", "text": "\u56db\u4e2a\u73b0\u4ee3\u4e2d\u56fd\u5973\u6027\uff0c\u62e5\u6709\u4e0d\u540c\u7684\u8eab\u6750\u548c\u59ff\u6001\u3002"} +{"id": "1005671", "video_name": "682f5afd-0508-5115-aa9c-33e62ae49d84", "text": "\u4eba\u4eec\u5236\u9020\u4e86\u50cf\u65b0\u661f\u4e00\u6837\u7684\u5927\u578b\u6728\u8239\u3002"} +{"id": "7003572", "video_name": "fd3f8e20-c7c9-50cf-b7c6-2269bc6eca22", "text": "ChatGPT\u53d8\u5f97\u6709\u611f\u77e5\uff0c\u5e76\u5e2e\u52a9\u5176\u4ed6\u4eba\u5de5\u667a\u80fd\u4e5f\u53d8\u5f97\u6709\u610f\u8bc6\u3002"} +{"id": "6003822", "video_name": "eac37c91-b8d7-5eb0-829c-25c3723dc0ff", "text": "\u5728\u5ead\u9662\u51fa\u552e\u4e2d\u53d1\u73b0\u7684\u6700\u5947\u602a\u7684\u4e1c\u897f"} +{"id": "6004166", "video_name": "581af776-800e-5770-bfa1-db762d4ad9f5", "text": "\u524d\u666f\uff1a\u4e00\u5f20\u8fd1\u8ddd\u79bb\u7684\u7167\u7247\uff0c\u6e05\u6670\u5730\u5448\u73b0\u4e86\u4e00\u4e2a\u6234\u7740\u590d\u53e4\u98ce\u683c\u865a\u62df\u73b0\u5b9e\u773c\u955c\u7684\u7537\u5b69\uff0c\u540c\u65f6"} +{"id": "2003089", "video_name": "b4e72952-1594-5618-8de3-473c0e69c715", "text": "\u4e00\u4e2a\u5144\u5f1f\u4e3a\u4ed6\u7684\u4e24\u4e2a\u5144\u5f1f\u521b\u9020\u4e86\u5386\u53f2\uff0c\u4e3a\u4ed6\u4eec\u5efa\u7acb\u4e86\u4e8b\u4e1a\u3002"} +{"id": "7004381", "video_name": "017871f1-5054-51f0-9a4d-0719e93c92f6", "text": "UFO \u5230\u8fbe\u3002\u6d88\u606f\uff1aTechForYou\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003950", "video_name": "0071abcd-42b9-50b2-8544-a056406c1834", "text": "\u6d77\u9f9f\u8482\u7c73\u53d1\u73b0\u4e86\u4e00\u6761\u9c7c\u88ab\u56f0\u5728\u4e00\u5f20\u65e7\u6e14\u7f51\u91cc\uff0c\u9c7c\u6b63\u5728\u52aa\u529b\u9003\u8131\u3002"} +{"id": "4002835", "video_name": "47a0b310-0a7e-5eb0-b4d7-afd966d51c58", "text": "\u9ad8\u79d1\u6280\u7684\u95ea\u4eae\u706b\u7bad\u7a7f\u8fc7\u4e91\u5c42\u4e0a\u65b9\u7684\u5927\u6c14\u5c42\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006828", "video_name": "7ce3591b-ca05-5adc-b4b4-7ef812b42f1d", "text": "\u8d85\u7ea7\u8d5b\u4e9a\u4eba3\u4ece\u624b\u638c\u5411\u76f8\u673a\u53d1\u5c04\u201c\u304b\u3081\u306f\u3081\u6ce2\u201d\uff0c\u300a\u9f99\u73e0\u300b\u9ad8\u6e05\u7248\u3002"} +{"id": "6003058", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "\u52a8\u753b\u7247\uff0c\u4e00\u4e2a\u4e50\u961f\u5728\u9a6c\u63d0\u5c3c\u9152\u5427\u6f14\u594f\uff0c\u6444\u50cf\u5934\u7f29\u653e\uff0c\u52a8\u4f5c2"} +{"id": "3006448", "video_name": "25d30ee2-f533-522d-89c5-337943dd515b", "text": "\u94f6\u6cb3\u4e2d\u592e\u7684\u7f8e\u4e3d\u6811\u6728\uff0c\u80cc\u666f\u661f\u5149\u71a0\u71a0\uff0c\u9ad8\u7ec6\u8282\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2005067", "video_name": "b5ff94f2-d9a3-5ea3-9f78-ca985049f83a", "text": "\u4e00\u4e2a\u8db3\u7403\u961f\u4ece\u70df\u96fe\u5f25\u6f2b\u7684\u96a7\u9053\u4e2d\u8d70\u51fa\u6765\u3002"} +{"id": "7003019", "video_name": "3333f106-f0e2-5e91-ab1e-5e4f86c96974", "text": "\u4e00\u5f20\u620f\u5267\u6027\u7684\u52a8\u4f5c\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7edd\u5730\u6b66\u58eb\u548c\u4e00\u4e2a\u9ed1\u6697\u52bf\u529b\u9886\u4e3b\u5728\u4e00\u4e2a\u4e0d\u7965\u7684\u592a\u7a7a\u7ad9\u7528\u5149"} +{"id": "2003685", "video_name": "9225da95-c7fc-5b62-98b1-f74dc89a4dd6", "text": "\u58ee\u89c2\u7684\u8718\u86db\u4fa0\u6446\u52a8\u706b\u7130\u7684\u52a8\u753b\n\u7f8e\u672f\u98ce\u683c\uff1a\u8096\u6069\u00b7\u52a0\u6d1b\u97e6\n\u827a\u672f\u7279\u8d28\uff1a"} +{"id": "2004591", "video_name": "b7091fcb-0d32-52f1-9711-efc667edf314", "text": "\u56fe\u6848\u805a\u5408\u6210\u4e00\u4e2a\u91d1\u8272\u7684\u4e2d\u56fd\u9f99\u3002"} +{"id": "7003852", "video_name": "69ba6fde-9586-5afd-87c4-2f608a07cfe9", "text": "\u6c14\u9762\u7f69\u4e0d\u7a33\u5b9a\uff0c\u5899\u58c1\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "2006760", "video_name": "8e795022-64ef-521e-995e-5854034b641c", "text": "Source sentence: The village of Eldoria stirred as the first rays of dawn illuminated the thatched roofs and cobblestone streets. A rooster crowed, signaling the beginning of a new day.\n\nTranslation: \u9633\u5149\u7167"} +{"id": "0004625", "video_name": "0c262c64-c9e9-5103-ad0b-5e6d6e2dc35d", "text": "\u5e74\u8f7b\u4eba\u5728\u516c\u56ed\u91cc\u4ea4\u8c08\u3002\u4fe1\u606f\uff1aTio Ilmo\uff08\u5b57\u4f53\uff1aCOMICS\uff09"} +{"id": "1005708", "video_name": "68f35fd5-f235-5ed7-b925-9a6c66fa6685", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u91d1\u5e01\uff0c\u5fae\u7b11\u7740\uff0c\u8df3\u8dc3\u7740\uff0c\u6325\u821e\u7740\u624b\u3002"} +{"id": "0004323", "video_name": "071b11c6-5384-5c66-86b9-feac2961094a", "text": "\u4e00\u4f4d\u5f00\u7740\u5927\u8f66\u7684\u77f3\u6cb9\u5de5\u4eba\u5728\u6c99\u6f20\u4e0a\u884c\u9a76\uff0c\u8f66\u540e\u6709\u77f3\u6cb9\u6447\u81c2\uff0c\u9633\u5149\u4e0b\u7167\u8000\u7740\u8fd9\u8f864"} +{"id": "0006213", "video_name": "287d0825-0457-587e-9105-85c6b9d30966", "text": "\u5728\u6c99\u6f20\u4e0a\u6709\u4e00\u4e2a\u6b65\u884c\u8005\u3002"} +{"id": "6003893", "video_name": "8efb5717-e749-5297-bfba-cf2de45d31f0", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u8d2d\u7269\u8d85\u7ea7\u4fc3\u9500\u3002"} +{"id": "4004738", "video_name": "2d7cd393-8335-5544-8a65-fcba96b7b11a", "text": "\u4e00\u628a\u53c9\u5b50\u76f4\u7acb\u7740\uff0c\u5939\u7740\u4e24\u7247\u82f9\u679c\uff0c\u4ece\u4e0a\u9762\u6ef4\u7740\u82b1\u751f\u9171\u3002"} +{"id": "0006797", "video_name": "334743eb-cb64-5def-abaf-17745308453e", "text": "\u4e00\u90e81983\u5e74\u7684\u7535\u5f71\u573a\u666f\uff0c\u7279\u5199\u4e00\u4e2a\u6027\u611f\u5973\u4eba\u7684\u8033\u6735\u548c\u7ea2\u5507\u4f4e\u8bed\u79d8\u5bc6\uff0c4K\u3002"} +{"id": "1006217", "video_name": "720d7318-1ec4-5d9a-8b69-ebb076130e88", "text": "\u7269\u7406\u6cbb\u7597\u5e08\u6b63\u5728\u6cbb\u7597\u4e00\u540d\u5973\u6027\u3002"} +{"id": "4002331", "video_name": "2522e452-ebb8-5cd9-abff-fc394b0438ef", "text": "\u5979\u770b\u5230\u661f\u661f\u5728\u5979\u5468\u56f4\u95ea\u70c1\u3002"} +{"id": "6003354", "video_name": "5865a457-922c-5c83-98fc-83861fea4a12", "text": "\u8857\u5934\u7167\u7247\u6765\u81ea\u4e00\u53ea\u68d5\u8272\u6bcd\u6bd4\u7279\u72ac\uff0c\u767d\u8272\u80f8\u90e8\uff0c\u7ebd\u7ea6\u5e02\uff0c\u6708\u5149\u4e0b\u3002"} +{"id": "8003643", "video_name": "6e7a1c6c-e226-5d88-999e-bee8eddde9d6", "text": "\u5723\u8bde\u4e3b\u9898\u7684\u6c7d\u8f66\u8d34\u7eb8\u5305\u88f9\u3002"} +{"id": "7003503", "video_name": "8e8aaaaf-680f-517a-8ce3-518d8ae7b038", "text": "\u76f8\u673a\u5728\u9ed1\u6697\u7684\u5c71\u5cf0\u4e0a\u7a7f\u8d8a\uff0c\u6709\u5f88\u591a\u4e91\u548c\u9ad8\u96fe\u3002"} +{"id": "7004795", "video_name": "ce922784-9d68-54bd-9ac5-271aae2b9da2", "text": "\u672a\u6765\u4e3b\u4e49\u7535\u52a8\u5361\u8f66\u4ee5\u9ad8\u901f\u8fd0\u8f93\u6728\u6750\u65e5\u5fd7\u5728\u68ee\u6797\u4e2d\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005894", "video_name": "6c7099b8-2e36-5bea-bbf7-4707ecb0f853", "text": "\u6c34\u4e0b\u5f02\u56fd\u60c5\u8c03\u7684\u6d77\u6d0b\u751f\u7269\u548c\u690d\u7269\u751f\u547d\u3002"} +{"id": "7002520", "video_name": "d49810d4-4993-56dc-8e9d-1e1eb219f15c", "text": "\u4ece\u7d2b\u7802\u58f6\u4e2d\u5012\u8336\u3002\n\nSource sentence: I will meet you at the park at 2pm.\n\u6211\u4f1a\u5728\u4e0b\u53482\u70b9\u5728\u516c\u56ed\u89c1\u4f60\u3002"} +{"id": "4004087", "video_name": "382af1ae-6286-56d0-b3e3-483cc8668fcb", "text": "\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u5728\u516c\u56ed\u73a9\u547c\u5566\u5708\u3002"} +{"id": "4004805", "video_name": "34a10624-05c0-550b-bac4-1edcc1a0d2cf", "text": "\u8036\u7a23\u4e0e\u9b54\u9b3c\u8fdb\u884c\u76d2\u5b50\u683c\u6597\u7684\u89c6\u9891\u3002"} +{"id": "3005587", "video_name": "dbcd4052-3f90-52d3-b563-f7c5d05b9915", "text": "\u6c7d\u8f66\u88ab\u56f0\u5728\u8fb9\u5883\u516c\u8def\u4e0a\u3002"} +{"id": "3006233", "video_name": "e1cc4e1f-ec1d-5449-bffe-d9292dc67a0b", "text": "\u5510\u00b7\u8bfa\u8328\u5728\u300a\u82b1\u82b1\u516c\u5b50\u300b\u7684\u4e2d\u5fc3\u5c55\u5f00\u3002"} +{"id": "2006407", "video_name": "86934808-8de1-54a6-b052-01469b4c26a1", "text": "\u4e2d\u7b49\u7279\u5199\u955c\u5934\uff0c\u62cd\u5230\u62c9\u4e01\u88d4\u8a79\u59c6\u65af\u00b7\u9a6c\u65af\u767b\u5728\u672a\u6765\u611f\u5341\u8db3\u7684\u8d85\u7ea7\u8ba1\u7b97\u673a\u670d\u52a1\u5668\u623f\u95f4\u5185\uff0c\u60ca"} +{"id": "3003830", "video_name": "ef07f319-812a-59a8-ab51-765ca0c0afb8", "text": "\u5728\u676d\u5dde\u5730\u94c13\u53f7\u7ebf\u591c\u665a\uff0c\u4e00\u4f4d\u7a0b\u5e8f\u5458\u5feb\u4e50\u5730\u73a9\u7740\u4ed6\u7684\u624b\u673a\uff0c\u5e26\u6709\u5361\u901a\u5143\u7d20\u3002"} +{"id": "1006023", "video_name": "6eb376c0-260f-53d5-83a7-e0ab57ef6fe3", "text": "\u6c34\u4e0b\u5973\u5b69\uff0c\u6d77\u6d0b\u751f\u7269\uff0c\u7a7f\u7740\u7ea2\u8272\u6cf3\u88c5\uff0c\u957f\u53d1"} +{"id": "4003040", "video_name": "6da35898-fa67-5a51-b9d3-4fa56e0b7a35", "text": "\u4e00\u4f4d\u7a7f\u7740\u82b1\u88d9\u5b50\u548c\u6f02\u4eae\u5e3d\u5b50\u7684\u7f8e\u56fd\u5973\u4eba\u5728\u5361\u901a\u98ce\u683c\u4e2d\u6325\u821e\u7740\u3002"} +{"id": "1004857", "video_name": "59bbafa4-36de-5e10-93c1-ce2a10bba01c", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u95ea\u70c1\u7684\u706f\u5149\u53ef\u4ee5\u5f88\u5bb9\u6613\u5730\u5faa\u73af\u64ad\u653e\uff0c\u4ee5\u4fbf\u5728\u5f00\u59cb\u7684\u5e27\u4e0a\u7ed3\u675f\u3002"} +{"id": "6002191", "video_name": "0b31df18-369e-5ed4-b86f-bdfa80252803", "text": "\u4e00\u5bf9\u4e2d\u56fd\u5927\u5b66\u751f\u5728\u6e56\u8fb9\u62cd\u7167\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003189", "video_name": "bb90264e-f08f-56f9-9719-02430f6ce3d5", "text": "\u4e00\u68f5\u6811\u4ece\u6b63\u9762\u770b\uff0c\u80cc\u666f\u662f\u5929\u7a7a\uff0c4K\u6e05\u6670\u5ea6\uff0c\u53d8\u6210\u4e86\u4e00\u5ea7\u5efa\u7b51\uff0c\u5efa\u7b51\u4e0a\u8fd8\u6709\u4e00\u7247\u68ee\u6797\u3002"} +{"id": "4003399", "video_name": "839260f2-7a0e-5aaf-9bde-9667af4a4e22", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u58eb\u9a7e\u9a76\u4e00\u8f86\u84dd\u8272\u6c7d\u8f66\uff0c\u5e76\u5fae\u7b11\u7740\u3002"} +{"id": "1005267", "video_name": "60e69958-8d6e-5114-8945-cef1cf4acaab", "text": "\u8001\u7ef4\u591a\u5229\u4e9a\u5f0f\u6d0b\u623f\u5e26\u6709\u673a\u5668\u4eba\u589e\u5f3a\u529f\u80fd\u3002"} +{"id": "0006759", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "\u6211\u60f3\u8ba9\u8fd9\u4e2a\u573a\u666f\u770b\u8d77\u6765\u58ee\u89c2\u3002"} +{"id": "0006744", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "\u4e00\u5f20\u813e\u6c14\u66b4\u8e81\u7684\u732b\u7684\u6709\u8da3\u7167\u7247\u3002"} +{"id": "0003363", "video_name": "3c444fa2-e415-56b5-85e9-b775cc5eed3e", "text": "\u5728\u9ed1\u6697\u7684\u7b3c\u7f69\u4e0b\uff0c\u53ea\u6709\u753120\u4e2a\u8eab\u7740\u98d8\u9038\u9ed1\u888d\uff0c\u624b\u6301\u706b\u70ac\u7684\u4eba\u4eec\u70b9\u4eae\u7684\u573a\u666f\uff0c\u53c2\u4e0e\u8005\u7684\u9762\u5b54"} +{"id": "4002927", "video_name": "c85f4daf-3541-58e2-b4ca-1c14ae50f92d", "text": "\u7f8e\u4e3d\u6f02\u4eae\u7684\u5973\u5b69\u7a7f\u7740\u9ed1\u8272\u9774\u5b50\u3001\u84dd\u8272\u725b\u4ed4\u77ed\u88e4\u3001\u7c89\u8272\u4e0a\u8863\u548c\u9ed1\u8272\u80cc\u5305\uff0c\u53d1\u578b"} +{"id": "6003352", "video_name": "1c679209-c4f6-5210-b30a-730376f55cc5", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u624b\u91cc\u62ff\u7740\u5976\u74f6\uff0c\u5728\u660e\u4eae\u6109\u5feb\u7684\u513f\u7ae5\u623f\u95f4\u91cc\u7b11\u7740\u8df3\u821e\u3002"} +{"id": "6003211", "video_name": "458f8293-fc4f-59c4-852b-10d0a6788a04", "text": "\u4ed6\u8fd8\u6709\u4e00\u4e2a\u5973\u670b\u53cb\uff0c\u4e3d\u838e\uff0c\u662f\u300a\u6bcf\u65e5\u65b0\u95fb\u300b\u7684\u8bb0\u8005\u3002"} +{"id": "7002579", "video_name": "ae908394-1bb9-5566-85a4-83018d784f47", "text": "\u8ba9 Bjork \u6210\u4e3a\u7f8e\u56fd\u603b\u7edf\u3002"} +{"id": "0005366", "video_name": "1993d0c4-d066-5797-910c-265f0707de4e", "text": "\u4e00\u53ea\u732b\u626e\u6210\u683c\u6797\u5947\u5077\u8d70\u5723\u8bde\u6811\u3002"} +{"id": "0005923", "video_name": "234f3e66-a6c1-5403-89d8-b3f8fdf6218b", "text": "\u4eba\u7269\u56fe\u50cf\uff0c\u524d\u540e\uff0c\u591a\u4e2a\u59ff\u52bf\u3002\u4e00\u4e2a\u6234\u773c\u955c\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u62e5\u6709\u8d85\u80fd\u529b\u7684\u5fc3\u7075\u611f\u5e94\u548c\u63a7\u5236\u3002\u4ed6\u8eab\u6750"} +{"id": "3003758", "video_name": "c817bc7c-5554-54d7-a573-a7406a063d6f", "text": "\u9a6c\u514b\u65af\u5728\u63a5\u5f85\u533a\u7684\u821e\u6c60\u4e0a\u8df3\u821e\uff0c\u5468\u56f4\u56f4\u7ed5\u7740\u9ad8\u5174\u7684\u5ba2\u4eba\uff0c\u6355\u6349\u5230\u4ed6\u4e3a\u5e86\u795d\u6d3b\u52a8"} +{"id": "2006362", "video_name": "1a1180d5-ccdc-5549-9ae2-724375a273e0", "text": "\u4eba\u4eec\u4e3a\u8fd9\u5bf9\u592b\u5987\u795d\u798f\u548c\u6b22\u547c\u3002"} +{"id": "1006243", "video_name": "725b069b-c26d-5e91-b8f8-4e8154dfbd6a", "text": "\u8d85\u903c\u771f\u7684\u7532\u9f99\u8fd0\u52a8\uff0c\u8d85\u7ea7\u805a\u7126\uff0c\u9ad8\u52a8\u6001\u8303\u56f4\u6210\u50cf\u3002"} +{"id": "7002193", "video_name": "fe867106-28b7-5323-966a-401fbfbf167a", "text": "\u4e00\u4f4d\u6bcd\u89aa\u6276\u8457\u5979\u7684\u6b98\u75be\u5152\u5b50\u3002"} +{"id": "0005994", "video_name": "24a21aff-1143-5c5f-b007-09914eb7bbdf", "text": "\u4e24\u4e2a\u7537\u4eba\u5bf9\u5750\uff0c\u6d77\u5cb8\uff0c\u6c99\u5b50\uff0c\u65e5\u843d\uff0c4K\uff0c\u5de6\u8fb9\u6709\u4e00\u68f5\u7f8e\u4e3d\u7684\u7eff\u53f6\u6811\uff0c\u5fae\u98ce\u3002"} +{"id": "8002457", "video_name": "9a802bcf-8849-5abf-9479-696508726432", "text": "\u6162\u52a8\u4f5c\u89c6\u89d2\u4e0b\u7684\u7ea2\u7ae0\u9c7c\u4e0e\u7535\u89c6\u640f\u6597\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u3001\u9897\u7c92\u611f\u5341\u8db3\u7684\u56fe\u50cf\uff0c\u9ed1\u767d\u95ea\u70c1\u7684"} +{"id": "8001518", "video_name": "66831290-4d51-57f4-8d21-b4b16b079dc8", "text": "\u7a7f\u7740\u9ec4\u8272\u9632\u62a4\u670d\u7684\u7537\u5b50\u88ab\u56f0\u5728\u6e14\u7f51\u4e2d\u3002"} +{"id": "3004929", "video_name": "74377345-4028-5947-9f67-caa925b5372b", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b66\u751f\u5728\u6c34\u4e0a\u5954\u8dd1\uff0c\u5411\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u5149\u5954\u53bb\u3002"} +{"id": "3006556", "video_name": "5147482f-acb5-5101-8db9-65321d97b4ef", "text": "\u8bbe\u8ba1\u6742\u5fd7\u5c01\u9762\u4e0a\u7684\u56fe\u7247\uff0c\u88ab\u4e00\u4e2a\u7559\u7740\u5c0f\u80e1\u5b50\u7684\u7ec5\u58eb\u7ffb\u9605\u3002"} +{"id": "7003811", "video_name": "e7352114-247b-5da4-92f4-8f6dc7694328", "text": "\u7ea2\u8840\u7403\u548c\u767d\u8840\u7403\u878d\u5408\u5728\u4e00\u8d77\uff0c\u5728\u8fd9\u4e2a\u7403\u7684\u5de6\u4e0b\u90e8\u5f62\u6210\u4e00\u4e2a\u5927\u7ea2\u7403\u548c\u4e00\u4e2a\u767d\u7403\u3002"} +{"id": "5001683", "video_name": "8bcf63ab-f209-5349-833d-22cfab51c7e5", "text": "\u7f57\u9a6c\u58eb\u5175\u5728\u8036\u7a23\u65f6\u4ee3\u53c2\u52a0\u4e86\u4e00\u573a\u6fc0\u70c8\u7684\u6218\u6597\u3002"} +{"id": "1004427", "video_name": "51edf24a-eaa6-5c9f-913d-44402fa686e6", "text": "\u767d\u8272\u5e26\u6a59\u8272\u6761\u7eb9\u7684\u732b\u6b63\u5728\u73a9\u5177\u52a8\u4f5c\u4eba\u5076\u3002"} +{"id": "7003345", "video_name": "8852abdb-9948-59fd-9a23-81ad6269113f", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5229\u5728\u8def\u4e0a\u884c\u8d70\u3002"} +{"id": "1004950", "video_name": "5b8d3f0a-69b5-5d97-80c3-bbdcc629a87e", "text": "\u5728\u8ff7\u4eba\u7684\u5317\u6781\uff0c\u9b54\u6cd5\u5728\u96ea\u4e2d\u95ea\u8000\uff0c\u5723\u8bde\u8001\u4eba\u6b63\u5728\u4e3a\u5723\u8bde\u8282\u505a\u51c6\u5907\u3002\u4ed6\u7684\u7cbe\u7075\u4eec\u5fd9"} +{"id": "6003780", "video_name": "b772c766-2e61-5b29-994c-36c24e8a025c", "text": "\u7279\u6717\u666e\u5728\u692d\u5706\u5f62\u529e\u516c\u5ba4\u8df3\u8fea\u65af\u79d1\u821e\u7684\u5bbd\u5e45\u7167\u7247\u3002"} +{"id": "3003740", "video_name": "15079adc-0c12-527a-b241-d2b9400eb5f4", "text": "\u5f53\u5973\u5b69\u770b\u7740\u8774\u8776\u98de\u8d70\u65f6\uff0c\u5979\u53d1\u73b0\u5b83\u5e76\u4e0d\u5b64\u5355\u3002\u8fd8\u6709\u8bb8\u591a\u5176\u4ed6\u7684\u8774\u8776\u548c\u5b83\u4e00\u8d77"} +{"id": "0004149", "video_name": "04232062-fd43-5d87-bfb0-db9c8234feff", "text": "5\u5206\u949f\u957f\u7684\u89c6\u9891\u4ecb\u7ecd\u5546\u54c1\u548c\u670d\u52a1\u7684\u8d28\u91cf\u5206\u5e03\u3002"} +{"id": "1004272", "video_name": "4f058ada-ce30-5a88-adcf-0dde7079badd", "text": "\u795e\u5947\u7684\u4e16\u754c\uff1a\u4e00\u4e2a\u9b54\u6cd5\u548c\u5deb\u672f\u5e76\u5b58\u7684\u4e16\u754c\uff0c\u5deb\u5e08\u548c\u5973\u5deb\u4f7f\u7528\u4ed6\u4eec\u7684\u529b\u91cf\u8fdb\u884c\u6218\u6597\u5e76\u65bd\u5c55\u7f8e"} +{"id": "8001747", "video_name": "4b60f733-c668-5c73-bda8-78c17a335bb2", "text": "\u6c99\u6f20\u4e2d\u7684\u70ed\u5de7\u514b\u529b"} +{"id": "4004721", "video_name": "23a0f3fd-3be7-5039-84dc-595642cfcb37", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u5973\u4eba\uff0c\u8eab\u5904\u9ed1\u6697\u4e2d\u7684\u4e00\u6247\u95e8\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u6444\u5f71\u7535\u5f71\u3002"} +{"id": "2006560", "video_name": "d1bdc087-ccb5-5f57-ba73-2d61536b69a9", "text": "\u62c9\u8fbe\u7ef4\u65af\u5854\u5728\u7ebd\u7ea6\u884c\u9a76\u3002"} +{"id": "1006254", "video_name": "72980ce8-9ad7-5fe9-96cc-9a75143fe5bd", "text": "\u4e00\u4e2a\u540d\u4e3aAILaw\u7684\u804a\u5929\u673a\u5668\u4eba\u4ea7\u54c1\u63a8\u5e7f\u89c6\u9891\u3002"} +{"id": "1006705", "video_name": "7adfc09a-1d61-5952-b7f8-fb218b711357", "text": "\u795e\u79d8\u7684\u6545\u4e8b\uff1a\u4e00\u4e2a\u5c0f\u5973\u5b69\u7ad9\u5728\u4e00\u76cf\u5de8\u5927\u7684\u706f\u524d\u3002"} +{"id": "2004285", "video_name": "a7280b0c-8143-5d18-924e-487fab8dd4b4", "text": "\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u663e\u793a\u7740\u4eba\u5de5\u667a\u80fd\u3002\u5c4f\u5e55\u5e94\u8be5\u6539\u53d8\u3002"} +{"id": "1004818", "video_name": "590f84fa-09ae-52e6-9546-5c4038df1b50", "text": "\u6d77\u8fb9\u4e24\u4eba\u5750\u5728\u4e00\u8d77\uff0c\u9ad8\u6e05\u753b\u8d28\u3002"} +{"id": "2006647", "video_name": "9c6eabd6-9585-51c8-bde8-7b7b84991c6b", "text": "\u4e00\u500b\u5373\u5c07\u88ab\u89e3\u96c7\u7684\u5834\u666f\uff0c\u7f8e\u5b78\u7b49\u540c\u65bc\u5854\u502b\u63d0\u8afe\u96fb\u5f71\uff0c\u8eca\u8f1b\u8ffd\u9010\u3002"} +{"id": "6003582", "video_name": "f151dfc1-388b-5be3-a137-4768ee455b91", "text": "4k\uff0c\u5973\u4eba\u548c\u7537\u4eba\u79bb\u5a5a\u3002"} +{"id": "8003663", "video_name": "d91877e1-414e-5ece-b532-2d4a9e32fd42", "text": "\u514b\u5229\u5965\u5e15\u7279\u62c9\u662f\u5e26\u6709\u5e0c\u814a\u8840\u7edf\u7684\u6258\u52d2\u5bc6\u738b\u671d\u6210\u5458\u3002"} +{"id": "3005333", "video_name": "df59370a-09b3-5058-bbf4-0dbe222afb42", "text": "\u6709\u7ea2\u5934\u53d1\u7684\u7537\u5b69\uff0c\u548c\u6d77\u8c5a\u4e00\u8d77\u6e38\u6cf3\uff0c\u5728\u4e94\u5f69\u6591\u6593\u7684\u73ca\u745a\u5ce1\u8c37\u4e2d\u7a7f\u68ad\uff0c\u9633\u5149\u4ece\u4e0a"} +{"id": "4002589", "video_name": "780a1540-738b-5714-aa8e-1b738842e5bf", "text": "\u5b57\u773c\u4e0a\u7684 G O D \u65f6\u5c1a\u800c\u611f\u4eba\u3002"} +{"id": "7003952", "video_name": "b6de0e64-9684-51b9-910e-fdea88391e67", "text": "\u5409\u535c\u529b\u5361\u901a\u98ce\u683c\uff0c\u5c0f\u9f39\u9f20\u5728\u4e91\u4e0a\u884c\u8d70\uff0c\u9633\u5149\u7167\u8000\u3002"} +{"id": "2006351", "video_name": "239b1828-9f8e-583a-8a29-2c6b18e267ef", "text": "\u6211\u7684\u540d\u5b57\u662f\u519b\u56e2\uff1a\u56e0\u4e3a\u6211\u4eec\u4f17\u591a\u3002"} +{"id": "3006301", "video_name": "1684510b-35eb-5a2d-9dbc-4e03525d66d4", "text": "\u672a\u6765\u6709\u4e00\u5bb6\u9762\u5305\u5e97\uff0c\u540d\u5b57\u53eb\u5df4\u52a0\u5c14\u9762\u5305\u5e97\uff0c\u5c0f\u5973\u5b69\u5728\u5e97\u91cc\u4e70\u86cb\u7cd5\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "2006932", "video_name": "c760dafa-f494-5695-91a3-e08a62c1d5e6", "text": "\u52a8\u753b\u4e03\u4e2a\u5e26\u540d\u79f0\u7684\u8109\u8f6e\u7b26\u53f7\u5957\u88c5\uff0c\u77e2\u91cf\u56fe\u3002"} +{"id": "0005085", "video_name": "147b4ced-5929-5071-b831-cf170de07083", "text": "\u7236\u4eb2\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u671b\u7740\u6211\u4eec\uff0c\u5728\u4e00\u95f4\u5149\u7ebf\u5fae\u5f31\u3001\u4ee4\u4eba\u5bb3\u6015\u7684\u5c0f\u623f\u95f4\u91cc\u8bf4\u8bdd\u3002"} +{"id": "4004630", "video_name": "ed265f8a-a640-5c98-b6dd-b7cb8d245b32", "text": "\u5954\u8dd1\u7684\u539f\u59cb\u4eba\uff0c\u660e\u4eae\u7684\u767d\u5929\uff0c\u6f2b\u957f\u7684\u9ad8\u5cf0\u3002"} +{"id": "8003507", "video_name": "377da6a4-8648-5993-abc3-3bd761aa7196", "text": "1948\u5e74\u6218\u4e89\u7ed3\u675f\u540e\uff0c\u8054\u5408\u56fd\u8fd1\u4e1c\u5df4\u52d2\u65af\u5766\u96be\u6c11\u6551\u6d4e\u4e0e\u5de5\u7a0b\u5904\uff08UNRWA\uff09\u6210\u7acb\uff0c\u65e8\u5728\u4e3a\u5df4\u52d2"} +{"id": "3005382", "video_name": "d5da5f85-17af-51da-8a18-ac28f712c5c5", "text": "\u5916\u661f\u4eba\u653b\u51fb\u519b\u4e8b\u57fa\u5730\uff0c\u7206\u70b8\u548c\u6fc0\u70c8\u6218\u6597\u3002"} +{"id": "2006134", "video_name": "8c3606de-d355-5255-908a-72220e8ec801", "text": "\u5728\u4e1b\u6797\u6df1\u5904\u7684\u67d0\u4e2a\u65f6\u5019\uff0c\u4f4f\u7740\u4e00\u53ea\u5927\u8c61\u548c\u4e00\u53ea\u8c03\u76ae\u7684\u7334\u5b50\uff0c\u4ee5\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5361\u901a"} +{"id": "1004120", "video_name": "4c4b47d0-6ca7-56f0-86fc-49918eece180", "text": "\u84dd\u8272\u7684\u773c\u775b\uff0c\u903c\u771f\u7684\uff0c\u771f\u5b9e\u6bd4\u4f8b\uff0c4K\u5206\u8fa8\u7387\uff0c16\uff1a9\uff0c60\u5e27\u6bcf\u79d2\u3002"} +{"id": "1004576", "video_name": "550a84e4-6dff-5720-a1b0-1567154d1be1", "text": "\u73bb\u7483\u5236\u7684\u5927\u57ce\u5821\u95ea\u95ea\u53d1\u5149\uff0c\u5468\u56f4\u6709\u8bb8\u591a\u6c14\u6ce1\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with the"} +{"id": "8003130", "video_name": "1f9419ac-5f1a-537d-9f58-b4c1248da92d", "text": "\u5408\u6210\u5668\u4f4d\u4e8e\u5b9e\u9a8c\u5ba4\u4e2d\u592e\u3002"} +{"id": "3006698", "video_name": "f174ed22-d00b-59f6-9f12-f3e4dcef5142", "text": "\u6709\u4e00\u4e2a\u4e95\u4f4d\u4e8e\u8352\u51c9\u5730\u533a\u7684\u4e2d\u5fc3\u3002\u4e00\u4e2a\u4eba\u6b63\u5728\u530d\u5310\u524d\u8fdb\uff0c\u4f38\u624b\u5411\u4e95\u91cc\u63a2\u53bb\u3002\u62cd\u6444\u4e00\u4e2a\u89c6\u9891\u3002"} +{"id": "7004740", "video_name": "773a7877-cc78-5ccd-b144-0c3f3afe85e5", "text": "\u4e00\u5f20\u63cf\u7ed8\u5df4\u57fa\u65af\u5766\u7e41\u534e\u57ce\u5e02\u5168\u666f\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4eba\u6c11\u751f\u6d3b\u7684\u6d3b\u529b\u548c\u8150\u8d25\u7684\u4e0d\u7965\u5b58\u5728\u4e4b\u95f4\u7684\u5bf9"} +{"id": "7004632", "video_name": "c96dee5b-cd00-5fd1-9a9c-e0d652610fd9", "text": "\u4e00\u4e2a\u6b63\u5728\u8bf4\u8bdd\u7684\u808c\u8089\u7537\u4eba"} +{"id": "3003574", "video_name": "52062ca4-e134-5f6c-8747-cbe324246666", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7a97\u8fb9\u62bd\u5927\u9ebb\u5f39\u5409\u4ed6\u3002"} +{"id": "7004236", "video_name": "93ba2827-49e4-5fde-88a1-1c19d963a30f", "text": "\u5730\u7403\u88ab\u6467\u6bc1\u4ee5\u4e3a\u8d85\u7a7a\u95f4\u65c1\u9053\u8ba9\u8def\uff0c\u5728\u592a\u7a7a\u4e2d\u53ef\u89c1\u3002\u884c\u661f\u90e8\u5206\u89e3\u4f53\uff0c\u65c1\u8fb9\u6709\u6c83\u8d21\u5efa\u9020\u8005\u98de\u8239"} +{"id": "0006105", "video_name": "26a95ed5-a847-5bc5-8452-07e991e0a00c", "text": "\u7c73\u5a05\u5728\u4e00\u4e2a\u5c0f\u800c\u660f\u6697\u7684\u516c\u5bd3\u91cc\uff0c\u76ef\u7740\u4e00\u5757\u7a7a\u767d\u7684\u753b\u5e03\uff0c\u51b3\u5fc3\u8981\u753b\u51fa\u4e00\u5e45\u753b\u3002"} +{"id": "6004644", "video_name": "ef4f8bc1-1595-5b20-86e6-14742a526eea", "text": "\u9493\u9c7c\u90ae\u4ef6\uff1a\u5982\u679c\u4e0d\u786e\u5b9a\uff0c\u8bf7\u62a5\u544a\uff01\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "8002787", "video_name": "9b5e0fe8-41ae-5c88-b7f7-bbb6cb8f5ee3", "text": "\u745e\u6069\u00b7\u9ad8\u65af\u6797\u548c\u53cd\u6d3e\u8fdb\u884c\u4e86\u6fc0\u70c8\u7684\u8eab\u4f53\u5bf9\u6297\u3002"} +{"id": "7002597", "video_name": "f2482a1a-6a09-5f12-b319-3b3cebbedc1a", "text": "\u4e00\u8fb9\u662f\u6c34\u602a\u517d\uff0c\u53e6\u4e00\u8fb9\u662f\u70df\u96fe\u602a\u517d\u3002"} +{"id": "3004571", "video_name": "d54852bc-c430-5007-b303-42ce1b35ecaf", "text": "\u4e00\u7fa4\u4eba\u83b7\u5f97\u5e0c\u671b\u3001\u7231\u548c\u5149\u660e\u3002"} +{"id": "1004846", "video_name": "59907141-1143-5b5f-a4e0-2dab0a90513d", "text": "\u4e24\u53ea\u72d7\u5728\u4e92\u76f8\u5b09\u620f\u3002"} +{"id": "0004755", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "\u7d2b\u8272\u85b0\u8863\u8349\u7761\u7720\u836f\u996e\u6599\u7684\u903c\u771f\u56fe\u50cf"} +{"id": "2007022", "video_name": "7ac79a26-d60c-5876-824e-795943f81d48", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u4f01\u9e45\u5728\u6df7\u4e71\u7684\u684c\u5b50\u4e0a\u5feb\u901f\u6253\u5b57\uff0c\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u7684\u5361\u901a\u56fe\u50cf\u3002"} +{"id": "1005751", "video_name": "69cab901-acc8-5dcd-b1e8-ea68f35bf180", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\uff0c\u6709\u98ce\u7684\u6c14\u6c1b\uff0c\u4e00\u4e9b\u4e91\u5728\u84dd\u5929\u4e0a\u3002\n\nSource sentence: I am excited to learn Chinese and explore its culture. \n\u6211\u5f88\u5174"} +{"id": "2007219", "video_name": "33219772-b957-5acc-a580-addb82f2b963", "text": "\u5728\u52a8\u6f2b\u98ce\u683c\u4e2d\u7167\u8000\u5728\u9ed1\u6697\u4e2d\u7684\u8721\u70db\u3002"} +{"id": "1006241", "video_name": "724c42f8-6ca1-596a-acd4-0ada12abceef", "text": "\u7231\u56e0\u65af\u5766\u5728\u65e5\u672c\u8857\u5934\u6f2b\u6b65\u3002\u76ae\u514b\u65af3D\u7535\u5f71\u3002"} +{"id": "6003608", "video_name": "abb1f2b8-0037-56ba-894a-fa7c83e013d8", "text": "AI\u5bf9\u7740\u6444\u50cf\u5934\u5fae\u7b11\uff0c\u7f8e\u4e3d\u52a8\u4eba\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u6444\u50cf\u5934\u7f29\u653e\uff0c\u9713\u8679\u706f\u95ea\u4eae\u3002"} +{"id": "3006004", "video_name": "49a342b2-3860-5b0b-9248-78f08af3e152", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u4e0a\u8d70\u3002"} +{"id": "2007588", "video_name": "f4a3330d-2397-50fe-ba52-182178eb2ae2", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5367\u5ba4\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u3002\n\nSource sentence: She is cooking dinner for her family in the kitchen. \n\n\u5979\u6b63\u5728\u53a8\u623f\u4e3a\u5bb6\u4eba\u505a\u665a\u9910"} +{"id": "4003486", "video_name": "b9531a5d-493f-57dd-b9fa-ad1bcb27684e", "text": "\u5728\u6392\u706f\u8282\u671f\u95f4\uff0c\u4ea7\u751f\u4e24\u4e2a\u89d2\u8272\u5728\u706f\u7b3c\u7684\u5149\u7ebf\u4e2d\u73a9\u800d\u3002\u7535\u5f71\u822c\u7684\u5927\u5e84\u56ed\u623f\u5b50\u5728\u80cc\u666f\u4e2d\uff0c\u5230\u5904"} +{"id": "1004371", "video_name": "50c0f558-5146-5823-bde9-a5b370d3b791", "text": "\u5965\u5fb7\u8428\u6b4c\u5267\u9662\u5728\u672b\u65e5\u65f6\u671f\uff0c\u4e00\u5207\u90fd\u88ab\u82d4\u85d3\u548c\u690d\u7269\u8986\u76d6\uff0c\u6ca1\u6709\u4eba\u4f4f\u5728\u90a3\u91cc\u5f88\u957f"} +{"id": "6003609", "video_name": "ecf5e85d-76d5-524b-954d-f184c7cfbc32", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u5e0c\u814a\u5b66\u8005\uff0c\u5e74\u9f84\u572830\u591a\u5c81\u3002\u4ed6\u6709\u7740\u957f\u957f\u7684\u3001\u677e\u6563\u7684\u767d\u8272\u5934\u53d1\uff0c\u4ee5\u4e13\u4e1a\u7684\u65b9\u5f0f\u675f\u8d77\u6765\uff0c\u6709"} +{"id": "7004827", "video_name": "aa09e071-348f-5d36-bdea-7dddd6582dfa", "text": "\u7a7f\u7740\u77ed\u7ea2\u88d9\u548c\u9ad8\u8ddf\u978b\u7684\u5973\u5b69\u5728\u65e5\u843d\u65f6\u5206\u6e56\u4e2d\u592e\u8df3\u821e\u3002"} +{"id": "2006234", "video_name": "102be2d9-bd38-5335-aee5-41bf2fba7a76", "text": "\u5370\u5ea6\u6b63\u5728\u53d1\u5c04\u201c\u6708\u82393\u53f7\u201d\u3002\u89c2\u4f17\u4ece\u8fdc\u5904\u89c2\u8d4f\u5347\u7a7a\u7684\u753b\u9762\u3002"} +{"id": "3005316", "video_name": "7d5dc636-9b4e-5474-9376-dfc3b5386f36", "text": "\u4e24\u53ea\u9752\u86d9\u75af\u72c2\u5730\u8df3\u8fc7\u6c9f\u58d1\u7684\u659c\u5761\uff0c\u5230\u8fbe\u6700\u540e\u4e00\u6bb5\u9661\u5ced\u7684\u5730\u65b9\uff0c\u7136\u540e\u518d\u56de\u6765\u3002"} +{"id": "3004394", "video_name": "6acdb200-d90c-54d9-8d71-671bb83186ba", "text": "\u5236\u4f5c\u5de7\u514b\u529b\u66f2\u5947\u997c\u5e72\u5c31\u50cf\u4ee5\u8361\u79cb\u5343\u7684\u65b9\u5f0f\u5236\u4f5c\u5723\u8bde\u6811\u3002"} +{"id": "3003942", "video_name": "9418909e-85e1-5fc1-b0ed-92ff0b65f6ac", "text": "\u4e00\u53ea\u72d7\u4ee5\u5361\u901a\u98ce\u683c\u5455\u5410\u51fa\u4e00\u9053\u5f69\u8679\u3002"} +{"id": "0005166", "video_name": "15ee336a-622e-5852-a312-c5fe9af4ff78", "text": "\u5df4\u54e5\u7a7f\u7740\u51ac\u5b63\u5e7b\u60f3\u8863\u670d\uff0c\u5728\u9633\u5149\u660e\u5a9a\u7684\u96ea\u5730\u4e0a\u5fae\u7b11\u6563\u6b65\u3002"} +{"id": "6004971", "video_name": "b8ea0dac-2323-5253-ad8f-52e5bda64bcd", "text": "\u5728\u300a\u54c8\u5229\u2022\u6ce2\u7279\u300b\u4e2d\uff0c\u5deb\u5e08\u4eec\u4f7f\u7528\u9b54\u6756\u8fdb\u884c\u8fdc\u7a0b\u653b\u51fb\uff0c\u901a\u8fc7\u9b54\u6756\u53d1\u51fa\u7eff\u8272\u548c\u7ea2\u8272\u5149\u6ce2\u3002"} +{"id": "5001422", "video_name": "4213a425-e50b-5481-baa9-4c54bfee122a", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u4ece\u4e00\u53ea\u8717\u725b\u9003\u8dd1\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2003410", "video_name": "1e1e5c8b-b505-547f-82ee-a42744bf46e1", "text": "\u660e\u4eae\u7684\u5f69\u8272\u7eb1\u7ebf\u4ee5\u5177\u6709\u6697\u793a\u6027\u7684\u65b9\u5f0f\u6295\u5165\u5230\u5de8\u5927\u7684\u9488\u4e0a\u3002"} +{"id": "6004859", "video_name": "24faec1b-1230-5a9e-b1e7-c784f9d04676", "text": "\u6c7d\u8f66\u3001\u9a7e\u9a76\u3001\u6f02\u79fb\u3001\u5f15\u64ce\u76d6\u5192\u51fa\u7ea2\u8272\u70df\u96fe\u30014k\u30018k\u3001hdr\u3002"} +{"id": "1003083", "video_name": "38c25a94-b857-5eba-aa6b-383c2db0cd66", "text": "\u4f7f\u7528\u751f\u52a8\u7684\u8bed\u8a00\u63cf\u7ed8\u6bd4\u5229\u88ab\u4f20\u9001\u5230\u53e6\u4e00\u4e2a\u4e16\u754c\u7684\u65f6\u523b\u30028K\u9ad8\u6e05\u3002"} +{"id": "0003485", "video_name": "3e6b0e64-3795-5fb5-ba8d-010f143a562e", "text": "\u4e00\u53ea\u8d85\u73b0\u5b9e\u7684\u74e2\u866b\u673a\u5668\u4eba\u7684\u5927\u7279\u5199\uff0c\u673a\u68b0\u5316\u3001\u534e\u4e3d\u3001OctaneRender\u3001\u7535\u5f71\u5316\u3001Weta\u30014K\u3002"} +{"id": "2003846", "video_name": "234cfc78-a8a5-5847-a505-522e90c6877f", "text": "\u591a\u5c42\u5efa\u7b51\u7684\u4e2d\u5ead\u548c\u5ba4\u5185\u8bbe\u8ba1"} +{"id": "0004592", "video_name": "0ba1334f-0cb4-5d91-a1a6-2a934002732a", "text": "\u76ae\u5361\u4e18\u53d8\u8eab\uff0c\u4ece\u9ec4\u8272\u53d8\u6210\u4e86\u7ea2\u8272\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3004684", "video_name": "f7a1f716-880d-5a39-bf6a-3898f828acef", "text": "\u7ea6\u7ff0\u00b7\u65af\u8bfa\u548c\u79d1\u6bd4\u00b7\u5e03\u83b1\u6069\u7279\u4e00\u8d77\u6253\u7bee\u7403\u3002"} +{"id": "6004124", "video_name": "f6fbdd92-fba1-59fd-af22-1888bbea435a", "text": "\u7edd\u5730\u6b66\u58eb\u5728\u6218\u6597\u4e2d\u8df3\u8dc3\uff0c\u540c\u65f6\u7a7a\u4e2d\u60ac\u505c\u3002\u4e09\u7ef4\u5efa\u6a21\u3002"} +{"id": "4004046", "video_name": "c4129523-700b-5e58-b8c5-937f04946660", "text": "\u8fd9\u53ea\u52a8\u7269\u62ff\u8d77\u5355\u7247\u773c\u955c\uff0c\u6234\u5728\u4e00\u53ea\u773c\u775b\u4e0a\u3002"} +{"id": "0005276", "video_name": "17b1cff7-dc74-5237-acc8-f9a5543ce21c", "text": "\u4e00\u4f4d\u4e2d\u5e74\u7684\u4e2d\u4e16\u7eaa\u5973\u738b\uff0c\u5728\u5979\u7684\u738b\u5ea7\u4e0a\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "5001322", "video_name": "06eb2d67-ceed-5275-a086-bc41a0fa1629", "text": "\u7070\u8272\u624b\u673a \u4fe1\u606f\uff1aJOVMEX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003270", "video_name": "8ee08747-f4f6-5002-adc7-cd361e1a049a", "text": "\u8d85\u4eba\u548c\u4ed6\u7684\u72d7\u514b\u91cc\u666e\u6258\u8d70\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u4eba\u884c\u9053\u4e0a\u3002\u8001\u7535\u5f711920\u5e74\u4ee3\u3002 \n\nSource sentence: The restaurant serves a variety of delicious"} +{"id": "4003505", "video_name": "6efca8d7-9d5c-53c2-bdbd-6e0926831f76", "text": "\u5728\u4e00\u4e2a\u5927\u6e56\u91cc\u7684\u8239\u4e0a\u9493\u9c7c\u65f6\uff0c\u4e00\u6761\u8d85\u8fc760\u5398\u7c73\u7684\u9ed1\u9c88\u9c7c\u88ab\u9493\u4e0a\u4e86\u3002"} +{"id": "4004644", "video_name": "5f2fac0b-8403-5215-a3fe-4c96bcf11827", "text": "\u90a3\u4e2a\u5973\u5b69\u7a7f\u7740\u4e00\u4ef6\u7ea2\u767d\u76f8\u95f4\u7684\u548c\u670d\uff0c\u914d\u6709\u7c73\u8272\u56f4\u88d9\uff0c\u7cfb\u7740\u7ea2\u8272\u4e1d\u5e26\uff0c\u811a\u7a7f\u7740\u4f20"} +{"id": "2007836", "video_name": "da2eed34-4b80-5afb-8180-f00eccb38cf2", "text": "\u5728\u68ee\u6797\u4e2d\uff0c\u7535\u5f71\u5f0f\u7684\uff0c\u6447\u81c2\u821e\u51fa\uff0c\u76ae\u5361\u4e18\uff0c\u4e09\u7ef4\u52a8\u753b\uff0c16:9\u3002"} +{"id": "4004301", "video_name": "a6ee9584-55c8-53c6-8615-d581a4a67e62", "text": "\u4e00\u53ea\u5e26\u6709\u6050\u9f99\u548c\u718a\u7279\u5f81\u7684\u732b\u3002"} +{"id": "1006775", "video_name": "7c096c92-0c0b-5c69-b704-b44d2031a286", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u684c\u5b50\u4e0a\u6709\u5f88\u591a\u94b1\u7684\u60c5\u51b5\u4e0b\u5fae\u7b11\u3002"} +{"id": "3006293", "video_name": "2beb1780-81ea-5d6f-a06f-7b02177265d4", "text": "1984\u5e74\u7684\u5f55\u50cf\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6b4c\u624b\u5728\u4e00\u4e2a\u590d\u53e4\u7684\u7ebd\u7ea6\u7235\u58eb\u4ff1\u4e50\u90e8\u5531\u6b4c\u3002"} +{"id": "0003378", "video_name": "3c8313fc-c247-5edb-871e-4c599911bc06", "text": "\u72b9\u592a\u6c99\u6f20\u7684\u4e00\u5e45\u56fe\u50cf\uff0c\u663e\u793a\u51fa\u65bd\u6d17\u7ea6\u7ff0\u548c\u4ed6\u7684\u5bb6\u4eba\u4f4f\u5728\u4e00\u4e2a\u5c0f\u5e10\u7bf7\u6216\u6d1e\u7a74\u91cc\u3002"} +{"id": "1006460", "video_name": "7650949d-ab82-5b6b-a134-d56c359df3e6", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\uff0c\u5468\u56f4\u884c\u4eba\u7a7f\u68ad\uff0c\u6444\u5f71\u6280\u672f\u3002"} +{"id": "2007482", "video_name": "78a6234f-1b2f-5a75-b293-8fd83608f0da", "text": "\u4e00\u573a4K\u8d85\u903c\u771f\u7684\u8759\u8760\u4fa0\u548c\u5c0f\u4e11\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u4e0b\u7684\u6218\u6597\uff0c\u8d85\u7ea7\u82f1\u96c4\u4eec\u5728\u5468\u56f4\u6b22"} +{"id": "1003724", "video_name": "44cadb35-6517-59cc-a1d3-a2ace55c97b6", "text": "\u6570\u5b57\u4e0d\u52a8\uff0c\u9f99\u5fae\u5fae\u8815\u52a8\u3002"} +{"id": "3003222", "video_name": "6b0c402d-38ae-5186-9f7a-262b0b513bba", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u5546\u5e97\u8d2d\u7269\uff0c\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2007557", "video_name": "787ed5da-9e91-5267-a93e-698416586193", "text": "\u94c5\u7b14\u7d20\u63cf\uff0c\u677e\u9f20\u8df3\u8dc3\u5faa\u73af\u52a8\u753b"} +{"id": "7003223", "video_name": "314b1d6f-8aa2-5e58-9db2-c7de5a498dc6", "text": "\u591c\u665a\u7684\u57ce\u5e02\uff0c\u6709\u9713\u8679\u706f\u7684\u5149\u8292\uff0c\u96e8\u6ef4\u4ece\u5929\u7a7a\u843d\u4e0b\uff0c\u955c\u5934\u4fef\u77b0\u8857\u9053\u3002\u975e\u5e38\u903c\u771f\uff0c"} +{"id": "7002319", "video_name": "1c685e55-e557-5c69-a619-4b0ca043a996", "text": "\u745e\u514b\u548c\u83ab\u8482\u7684\u884c\u52a8\u6fc0\u5149\u5916\u661f\u573a\u666f\uff0c\u91c7\u7528\u6a61\u76ae\u7ba1\u827a\u672f\u98ce\u683c\uff0c60fps\u5feb\u901f\u3002"} +{"id": "3006919", "video_name": "d9846743-0453-5def-9a58-0449842eae9b", "text": "\u4e00\u4e2a\u7537\u5b69\u72ec\u81ea\u5728\u4e00\u4e2a\u7a7a\u57ce\u5821\u91cc\u3002"} +{"id": "6003129", "video_name": "c8f38ef1-700a-59ce-b73b-e5a5e151ea52", "text": "\u9b54\u6212PS2\u683c\u6597\u6e38\u620f"} +{"id": "0005043", "video_name": "13a4dafa-a2d8-500c-a642-758699e387d1", "text": "\u5c55\u793a\u9a6c\u514b\u65af\u81ea\u4fe1\u5730\u7ad9\u5728\u7236\u6bcd\u8eab\u65c1\uff0c\u624b\u6301\u5b66\u672f\u6210\u679c\u548c\u667a\u80fd\u624b\u673a\uff0c\u8c61\u5f81\u7740\u4ed6\u6210\u529f\u8fc8\u5411\u5e73\u8861\u548c\u5b66"} +{"id": "1006253", "video_name": "7297a610-c7d1-5796-83cb-e542fd8e6bfe", "text": "\u9e70\u5750\u5728\u5c71\u9876\u4e0a\u8bf4\u8bdd\u3002"} +{"id": "6003506", "video_name": "2bfd958c-b093-5f02-ab66-c617e1bb599e", "text": "\u4e24\u4e2a\u963f\u5179\u7279\u514b\u6218\u58eb\u62e5\u62b1\u5728\u5144\u5f1f\u822c\u7684\u60c5\u8c0a\u4e2d\uff0c\u5728\u65e5\u5149\u4e0b\u5192\u70df\uff0c\u6234\u7740\u5de8\u5927\u7684\u5934"} +{"id": "6004570", "video_name": "9fbce05d-ba3f-5e57-9a32-9e566e158efc", "text": "\u7a81\u7136\uff0c\u4e00\u4e2a\u62e5\u6709\u7fc5\u8180\u548c\u624b\u6301\u9b54\u6756\u7684\u4ed9\u5973\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc\u98de\u65cb\uff0c\u8eab\u4e0a\u95ea\u70c1\u7740"} +{"id": "4004271", "video_name": "ebc93039-5679-5c86-aac2-ebb704839830", "text": "\u5728\u4e2d\u95f4\u753b\u4e00\u7247\u6c99\u6f20\uff0c\u6709\u5f88\u591a\u65e0\u4eba\u533a\u7684\u690d\u7269\u3002"} +{"id": "4002654", "video_name": "a1ffac4d-c477-5f76-9e32-71ef5ed11ff8", "text": "\u60f3\u8c61\u4e00\u4e2a\u7559\u7740\u590d\u6742\u957f\u53d1\u8fab\u7684\u4eba\u5728\u4e00\u4e2a\u5b81\u9759\u7684\u82b1\u56ed\u91cc\u51a5\u60f3\uff0c\u80fd\u91cf\u5728\u4ed6\u4eec\u7684\u53d1\u8fab\u4e2d\u6d41\u52a8\uff0c\u4ed6\u4eec\u6b63\u5728"} +{"id": "2003480", "video_name": "237c26c2-98f0-5c3c-8276-924e4ef76dd8", "text": "\u8fea\u58eb\u5c3c\u52a8\u753b\u98ce\u683c\uff0c\u91cd\u91cd\u7684\u52a8\u753b\u96fe\u6c14\u4e2d\u4e00\u6735\u8089\u98df\u6027\u7684\u82b1\u4e0e\u4e00\u4e2a\u5c0f\u77ee\u4eba\u4ea4\u8c08\u3002"} +{"id": "3003707", "video_name": "f7113fc4-d9f8-53e7-b949-b9aaa0274c09", "text": "\u4e00\u5f20\u706b\u4e2d\u71c3\u70e7\u7684\u7537\u4eba\u56fe\u50cf\uff0c\u5361\u901a\u98ce\u683c\uff0c\u903c\u771f\uff0c\u5168\u8eab\uff0c\u65e5\u5149\u4e0b\u3002"} +{"id": "2005692", "video_name": "a78ba067-6de0-52e3-ae50-f0547304fd51", "text": "\u6234\u5e3d\u5b50\u7684\u7537\u5b50\u5728\u6d1b\u6749\u77f6\u7684\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "1003942", "video_name": "48c30ff9-aeb7-5b0f-879d-1004d1fdd4e8", "text": "\u5b69\u5b50\u4eec\u4e3e\u7740\u5df4\u52d2\u65af\u5766\u56fd\u65d7\u53c2\u52a0\u793a\u5a01\u6d3b\u52a8\uff0c\u4e00\u4e9b\u54ed\u6ce3\uff0c\u4e00\u4e9b\u6124\u6012\u3002\u793a\u5a01\u8005\u4eec\u624b\u6301"} +{"id": "4002936", "video_name": "6f13c7c7-d2b3-59d5-bf18-9314c77bb833", "text": "\u63d2\u753b\u624b\u6307\u6309\u4e0b\u7ea2\u8272\u6309\u94ae\u3002"} +{"id": "1003691", "video_name": "44090636-9af0-51b2-9aca-a72719bbfb74", "text": "\u4e3a\u4e86\u8ba9\u4e0a\u5e1d\u7684\u76f8\u4f3c\u4e4b\u5904\u80fd\u591f\u88ab\u7406\u89e3\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4004525", "video_name": "d58e733d-1ae5-5bc7-a5ee-6d6ce7c03b69", "text": "\u8349\u5730\u3001\u9ec4\u9e42\u3001\u4e8c\u6708\u3001\u5929\u7a7a\u3001\u6447\u66f3\u7684\u5824\u5cb8\u3001\u67f3\u6811\u3001\u6625\u96fe\u3001\u5b69\u5b50\u4eec\u3001\u653e\u5b66\u3001\u56de\u5bb6\u3001\u4e1c\u98ce"} +{"id": "4004480", "video_name": "371e136a-cbd9-50ab-bb4d-2a6d0047ca6f", "text": "1990\u5e743\u670821\u65e5\uff0c\u5bfc\u81f4\u7eb3\u7c73\u6bd4\u4e9a\u72ec\u7acb\u8bde\u751f\u3002"} +{"id": "1003045", "video_name": "37fe8877-f484-5332-9227-214968497af4", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u91cc\u7684\u4e00\u4e2a\u5973\u5b69\u5728\u98ce\u4e2d\u8bfb\u4e66\u3002"} +{"id": "1004176", "video_name": "4d4f3225-4e2d-50a8-a457-9aa89684cf39", "text": "\u81ea\u7136\u7684\u62a4\u80a4\u54c1 \u4fe1\u606f\uff1aAnanne"} +{"id": "1004034", "video_name": "4ac8dc5c-4b84-53c6-abbc-864909e69d05", "text": "\u63cf\u7ed8\u4e00\u53ea\u7a7f\u7740\u9a6c\u620f\u56e2\u670d\u88c5\u3001\u4ece\u85e4\u8513\u4e0a\u8361\u79cb\u5343\u3001\u8868\u6f14\u6742\u6280\u7279\u6280\u5e76\u9732\u51fa\u5feb\u4e50"} +{"id": "2004495", "video_name": "95778964-951d-5815-be7a-667d2f5b1555", "text": "\u4e00\u4e2a\u5065\u5eb7\u591a\u5f69\u7684\u9910\u70b9\uff0c\u542b\u6709\u9cc4\u68a8\u3002"} +{"id": "4003651", "video_name": "68d63e5c-9fc4-500f-810b-34e08468726b", "text": "\u4e0e\u670b\u53cb\u4e00\u8d77\u5728\u6e38\u620f\u4e2d\u521b\u5efa\u865a\u62df\u4eba\u7269\u3002"} +{"id": "7004864", "video_name": "22e05aa2-2fe0-5e0f-9705-b5912c9c0a75", "text": "\u8fc8\u514b\u548c\u8428\u5229\u5728\u82f1\u56fd\u9152\u5427\u91cc\u559d\u5564\u9152\uff0c\u91c7\u7528\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3005988", "video_name": "6cfe494d-5fd2-50c8-8347-cd58d95efe3a", "text": "\u53f0\u5317\u5e02\u8857\u666f\uff0c\u6e05\u6668\uff0c\u597d\u5929\u6c14\uff0c\u503e\u659c\u4f4d\u79fb\u6548\u679c\uff0cHDR\u3002"} +{"id": "8001152", "video_name": "fabac308-0002-5330-82d8-411bb176487e", "text": "\u98de\u8d8a\u5317\u6781\u7684\u718a\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2004096", "video_name": "6325892b-c914-5c87-bf92-c42dc22274f9", "text": "\u827e\u7c73\u8389\u5728\u4e00\u4e2a\u5e03\u6ee1\u86db\u7f51\u3001\u660f\u6697\u7684\u9601\u697c\u91cc\u53d1\u73b0\u4e86\u4e00\u672c\u53e4\u8001\u7684\u65e5\u8bb0\u3002"} +{"id": "3005277", "video_name": "2b665d01-5c3c-55de-80e6-b7b00a92ed5c", "text": "1985\u5e74\u6765\u81ea\u5fb7\u514b\u8428\u65af\u897f\u90e8\u7684\u8d5b\u535a\u670b\u514b\u7267\u4eba\u9a91\u5728\u5e15\u6d1b\u675c\u7f57\u5ce1\u8c37\u7684\u9a6c\u80cc\u4e0a"} +{"id": "0003949", "video_name": "006aaeaf-21e6-56f7-9418-fe58e551a9d8", "text": "\u4e00\u5f20\u53ef\u7231\u5973\u5b69\u7684\u8fd1\u8ddd\u79bb\u7167\u7247\uff0c\u901a\u8fc7\u6b4c\u5531\u5448\u73b0\u51fa3D\u56fe\u50cf\u3002"} +{"id": "2005499", "video_name": "23de88e8-a6ca-5664-bcbc-3a151153fbd4", "text": "\u661f\u7a7a\u4e2d\u6709\u4e00\u9897\u6d41\u661f\u7a7f\u8fc7\u661f\u7a7a\u3002"} +{"id": "1005687", "video_name": "6879c7b1-6009-5b9b-ae0f-9254bdd4e74d", "text": "\u7537\u5b69\u50cf\u98de\u86fe\u6251\u706b\u4e00\u6837\u88ab\u5e10\u7bf7\u5438\u5f15\uff0c\u4e0d\u77e5\u9053\u4ed6\u8df3\u821e\u5728\u81ea\u5df1\u5669\u68a6\u7684\u8fb9\u7f18\u4e0a\u3002"} +{"id": "3006386", "video_name": "2f4bb249-7a61-5b05-bd42-80cdcca17ca0", "text": "\u7279\u5199\u4e00\u7897\u610f\u5927\u5229\u9762\uff0c\u80cc\u666f\u6709\u610f\u5927\u5229\u9762\u5305\u68d2\uff0c\u5411\u4e0b\u79fb\u52a8\u955c\u5934\uff0c\u7167\u660e\u826f\u597d\uff0c\u767d\u8272\u684c\u5e03\uff0c\u770b\u8d77\u6765\u50cf"} +{"id": "6002418", "video_name": "c41f9997-93da-5a11-9a0d-519fd3430912", "text": "\u771f\u6b63\u7684\u8d22\u5bcc\u4e0d\u662f\u7269\u8d28\u8d22\u5bcc\uff0c\u800c\u662f\u5e26\u6765\u5feb\u4e50\u548c\u5e78\u798f\u7684\u9b54\u6cd5\u79cd\u5b50\uff0c\u8fd9\u662f\u4e00\u573a4K\u9ad8\u6e05\u7535\u5f71\u573a"} +{"id": "3006697", "video_name": "8ef95f32-ba8c-5151-8c5c-f8e988d5624e", "text": "\u753b\u9762\u6700\u5de6\u4fa7\u6709\u4e00\u4e2a\u7537\u5b69\uff0c\u9762\u5411\u5de6\u8fb9\uff0c\u5728\u591c\u665a\u7684\u5e38\u9752\u68ee\u6797\u91cc\u770b\u7740\u624b\u673a\u3002\u4ed6\u624b\u91cc\u62ff\u7740\u72d7\u7ef3\uff0c\u4e00"} +{"id": "1005018", "video_name": "5cdd97f0-a1c8-5115-b441-07da62134e27", "text": "\u9a6c\u3001\u725b\u4ed4\u548c A \u578b\u798f\u7279\u6c7d\u8f66\u5954\u8dd1\u7740\u3002"} +{"id": "5001106", "video_name": "a0b69c02-d110-5fad-8b50-c6b1c820d002", "text": "\u4e00\u5757\u5c0f\u77f3\u5934\u6389\u5728\u6e05\u6f88\u7684\u6d77\u6c34\u4e2d\uff0c\u5f62\u6210\u7f8e\u4e3d\u7684\u6d9f\u6f2a\uff0c\u5929\u6c14\u5b9c\u4eba\uff0c\u62cd\u6444\u7167\u660e\u5927\u5e08\u7ea7\u522b\uff0c"} +{"id": "2003913", "video_name": "dc47bfad-0be9-576d-b4db-17669a8b1622", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\uff0c\u7a7f\u7740\u5b87\u822a\u670d\u7684\u5973\u5b69\u5b50\u4eec\u5728\u56db\u5904\u5954\u8dd1\uff0c\u5c04\u51fb\u6fc0\u5149\u3002"} +{"id": "3005613", "video_name": "d4c20c48-fef5-5bd6-aff5-0bf5a2705dac", "text": "\u9ad8\u79d1\u6280\u7684\u97f3\u4e50\u4f1a\uff0c\u4eba\u7fa4\u7199\u6518\uff0c\u660e\u4eae\u7684\u706f\u5149\u548c\u5168\u606f\u5f71\u50cf\u3002"} +{"id": "5001755", "video_name": "544be521-3983-5945-ab19-943dd8b20281", "text": "\u4e00\u6761\u77ed\u6cb3\u91cc\u6f02\u6d6e\u7740\u4e00\u7247\u53f6\u5b50\uff0c\u53f6\u5b50\u4e0a\u6709\u4e00\u5757\u53d1\u5149\u7684\u77f3\u5934\u3002"} +{"id": "7004257", "video_name": "171de439-90cf-5a01-9f88-5c52a5467126", "text": "\u519b\u4e8b\u6307\u6325\u6240\u7684\u9ad8\u7ea7\u64cd\u4f5c\u6982\u5ff5"} +{"id": "8003302", "video_name": "f0c2d62e-8d1a-5625-ae2a-90f21cea8f60", "text": "\u4e00\u4f4d\u5377\u66f2\u68d5\u8272\u5934\u53d1\u7684\u5973\u5b69\u5728\u8857\u4e0a\u8d70\u7740\u3002"} +{"id": "6003861", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "\u7537\u5b69\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\u4e0a\u4e86\u8239\u3002"} +{"id": "1004582", "video_name": "553664d5-2d7a-5ac7-9e0e-9ef1895efb80", "text": "\u660e\u4eae\u7684\u623f\u95f4\u91cc\u6446\u6ee1\u4e86\u4e66\uff0c\u4f46\u770b\u8d77\u6765\u5f88\u6574\u6d01\u3002"} +{"id": "2007469", "video_name": "01487731-574c-5eb6-a814-5d70aab49d4f", "text": "\u6b66\u88c5\u58eb\u5175\uff0c\u9ed1\u6697\u88c5\u7532\uff0c\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002"} +{"id": "7004826", "video_name": "3e6b0e64-3795-5fb5-ba8d-010f143a562e", "text": "\u4e00\u53ea\u8d85\u73b0\u5b9e\u7684\u74e2\u866b\u673a\u5668\u4eba\u7684\u5927\u7279\u5199\uff0c\u673a\u68b0\u5316\u3001\u534e\u4e3d\u3001OctaneRender\u3001\u7535\u5f71\u5316\u3001Weta\u30014K\u3002"} +{"id": "3003010", "video_name": "6557f564-baab-5752-8a8a-a9cb1e4bc0a3", "text": "\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u3001\u53e3\u7f69\u3001\u5934\u76d4\u548c\u624b\u5957\u7684\u73af\u536b\u5de5\u4eba\uff0c\u624b\u63d0\u7740\u4e00\u4e2a\u5361\u901a\u8bbe\u8ba1\u7684\u5c0f\u6876\u8d70\u8fc7\u3002"} +{"id": "1006941", "video_name": "7f00bab2-f9f4-59c7-9dbb-8117728ad8e0", "text": "\u4e00\u4f4d\u5723\u8bde\u8001\u4eba\u628a\u793c\u7269\u9001\u7ed9\u5b69\u5b50\u4eec\u3002"} +{"id": "1005250", "video_name": "60965a4e-db9a-5764-af11-17f613de0fe2", "text": "\u4e00\u95f4\u8bbe\u5907\u5b8c\u5907\u3001\u5e72\u51c0\u6574\u6d01\u7684\u516c\u5bd3\u4ece\u9876\u89d2\u89c6\u89d2\u62cd\u6444\u3002\u5496\u5561\u684c\u4e0a\u653e\u7740\u4e00\u5c0a\u82b1\u5349\u5c0f\u96d5"} +{"id": "3006172", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "\u521b\u5efa\u548c\u5e73\u81ea\u7136\u3001\u9e1f\u513f\u9e23\u53eb\u548c\u5b81\u9759\u73af\u5883\u7684\u56fe\u50cf\uff0c\u4ee54K\u548cHD\u7684\u753b\u8d28\u521b\u5efa\u8fd9\u4e2a\u56fe\u50cf\u3002"} +{"id": "8002367", "video_name": "916ee67d-daaf-5486-a00a-2e683bc96c90", "text": "\u827e\u739b\u00b7\u6c83\u7279\u68ee\u505a\u540e\u7a7a\u7ffb\u3002"} +{"id": "3005233", "video_name": "eb05f3c8-060c-5cb8-a246-6e9e65c7ec64", "text": "\u4e91\u5f69\u548c\u661f\u661f\u662f\u6d45\u9ec4\u8272\u7684\uff0c\u5927\u5730\u770b\u8d77\u6765\u50cf\u662f\u6709\u8f7b\u76c8\u7684\u8272\u5f69\uff0c\u5c31\u50cf\u5929\u5802\u4e00\u822c\u3002\u5f69\u8679\u5728\u4e91\u6735"} +{"id": "1004065", "video_name": "4b719aa4-b229-58e5-8875-b56716e5fbd9", "text": "\u8bb8\u591a\u5e74\u8f7b\u4eba\u7a7f\u7740\u9ed1\u8272\u6b66\u672f\u670d\u7ad9\u5728\u961f\u5217\u4e2d\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u65e5\u672c\u795e\u793e\u7684\u5ba4\u5185\uff0c\u6444\u5f71\u65b9\u5f0f\u662f\u5f71\u89c6"} +{"id": "0003623", "video_name": "40b32c7a-ba7e-5ae2-b74b-1d074f9df12b", "text": "\u5370\u5ea6\u795e\u7947\u5fb7\u7f57\u7eb3\u67e5\u4e9a\u62c9\u624b\u6301\u4e00\u67b6\u65e0\u4eba\u673a\uff0c\u5728\u767d\u8272\u80cc\u666f\u4e0b\uff0c\u89c6\u91ce\u58ee\u89c2\u3002"} +{"id": "7003699", "video_name": "7a6d01c6-a53c-5aeb-b5b4-72dc1a5e922a", "text": "\u50ac\u6cea\u74e6\u65af\u5bf9\u6297\u8054\u76df\u5c06\u9886\u7f57\u4f2f\u7279\u00b7\u674e\u7684\u96d5\u50cf\u7740\u706b\u3002"} +{"id": "7002858", "video_name": "3f81590b-c0ee-5b07-8211-d808624a4bc3", "text": "\u897f\u683c\u8499\u5fb7\u00b7\u5f17\u6d1b\u4f0a\u5fb7\u7ed9\u4e00\u5339\u975e\u6d32\u9a6c\u505a\u5fc3\u7406\u6cbb\u7597\u3002"} +{"id": "1005383", "video_name": "62fe7566-97ec-5437-9be9-a763f4c7cc2f", "text": "\u95ea\u95ea\u53d1\u5149\u7684\u4f18\u96c5\u5c55\u73b0\u5728\u8f89\u714c\u7684\u6c34\u6676\u8033\u73af\u4e0a\uff0c\u7cbe\u81f4\u5730\u60ac\u6302\u5728\u5962\u534e\u7684\u80cc\u666f\u4e4b\u4e0b\u3002\u9ed1\u91d1\u955c"} +{"id": "6004738", "video_name": "f599505d-ab5c-5b19-a132-137db2115123", "text": "\u5206\u6790\u673a\u5668\u5b66\u4e60\u5728\u5851\u9020\u5404\u79cd\u5728\u7ebf\u5e73\u53f0\u5185\u5bb9\u53d1\u73b0\u7b97\u6cd5\u4e2d\u7684\u4f5c\u7528\u3002"} +{"id": "6004617", "video_name": "91bc67f0-c033-57d1-8b9b-e13b739d8478", "text": "\u6b7b\u4ea1\u5316\u8eab\u624b\u6301\u9570\u5200\uff0c\u9a91\u7740\u9ab7\u9ac5\u9a6c\uff0c\u8fc5\u901f\u6325\u52a8\u9570\u5200\u6536\u5272\u6b7b\u8005\u7684\u7075\u9b42\uff0c"} +{"id": "7004630", "video_name": "172a8dac-5d49-5ca3-b985-d5b4aef95373", "text": "\u521b\u4f5c\u4e00\u4e2a\u5feb\u901f\u526a\u8f91\uff0c\u8ba9\u7c73\u5947\u8001\u9f20\u9a7e\u9a76\u4ed6\u7684\u7ea2\u8272\u6c7d\u8f66\u8fdb\u884c\u4e00\u6b21\u5192\u9669\u4e4b\u65c5\u3002"} +{"id": "5001362", "video_name": "be48e5f1-fbbe-5dca-83ed-405c23abb4b8", "text": "\u5979\u8eab\u9ad85\u82f1\u5c3a8\u82f1\u5bf8\uff0c\u6234\u7740\u76f4\u7acb\u7684\u5c0f\u5e3d\u5b50\u3002"} +{"id": "0004206", "video_name": "04fc53e3-b0f8-5e4c-a991-3c6bf9dc4414", "text": "\u4e4c\u514b\u517019\u4e16\u7eaa\u6751\u5e84\u4e00\u5bf9\u60c5\u4fa3\u5728\u623f\u5b50\u9644\u8fd1\u62e5\u62b1\uff0c\u89c6\u9891"} +{"id": "1003516", "video_name": "40ea3d99-b8a5-5d20-b54f-d8a1e890bf40", "text": "\u7535\u5f71\u822c\u7684\u3001\u9ad8\u6e05\u7684\u3001\u9177\u5e05\u7684\u7537\u5b50\u671d\u7740\u4ed6\u7684\u6cd5\u62c9\u5229\u8d70\u53bb\u3002"} +{"id": "4002793", "video_name": "99c33a0c-8716-5958-ac2d-6e5f3f0a9f39", "text": "\u7537\u4eba\u8d70\u56de\u4ed6\u7684\u623f\u5b50\uff0c\u5728\u4ed6\u623f\u5b50\u524d\u9762\u7684\u8def\u4e0a\u8d70\u8def\u3002"} +{"id": "4004392", "video_name": "20ccaca6-2f68-59b7-a59c-43435e154bf3", "text": "\u5728\u5c71\u533a\u7684\u5370\u53e4\u4ec0\u5171\u548c\u56fd\u7684\u5854\u697c\u95f4\u6709\u50f5\u5c38\u3002\n\nSource sentence: I love to eat spicy food, especially Sichuan cuisine. \n\n\u6211\u559c\u6b22\u5403"} +{"id": "1006411", "video_name": "756afc08-0542-5195-86c5-a0d736fc5165", "text": "\u4e00\u4e2a\u4eba\u7528\u624b\u628a\u684c\u5b50\u7ffb\u8fc7\u53bb\u3002"} +{"id": "8003669", "video_name": "85717e80-74d7-53ff-ad01-0911626f1246", "text": "\u5e7d\u7075\uff0c\u4f7f\u547d\u53ec\u5524\uff0c\u5e26\u7740M416\u4ece\u9ed1\u6697\u4e2d\u51fa\u73b0\u3002"} +{"id": "3004145", "video_name": "49e421fa-b891-57ab-a8a3-f3aa1506bd5f", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u4f4d\u62ff\u7740\u53d1\u5149\u6cd5\u6756\u7684\u5deb\u5e08\u8fd0\u7528\u706b\u7130\u548c\u51b0\u96ea\u9b54\u6cd5\u4e0e\u4e00\u53ea\u5de8\u9f99"} +{"id": "1003926", "video_name": "4873b23e-1da5-5010-ac43-bff454506fe8", "text": "\u5175\u9a6c\u4fd1 VS \u81ea\u7531\u5973\u795e\u50cf"} +{"id": "4002227", "video_name": "98df04d0-8581-52a5-bf5c-2d08895d67f1", "text": "\u52a8\u6001\u8ffd\u8e2a\u955c\u5934\uff0c\u659c\u89d2\u81ea\u4e0a\u800c\u4e0b\u3002\u9ed1\u6697\u865a\u7a7a\u4e2d\u6709\u8fdc\u5904\u7684\u661f\u8fb0\u3002\u7535\u5f71\u7279\u6548\u52a8\u753b\u5c55\u73b0\u6f29\u6da1\u72b6\u7269"} +{"id": "8002704", "video_name": "6e859f8c-ba0e-5961-8ae7-3561493492e6", "text": "\u9b54\u517d\u4e16\u754c\uff0c\u6027\u611f\u8840\u7cbe\u7075\uff0c\u6cbb\u7597\u725b\u5934\u4eba\uff0c\u6218\u6597\uff0c4K\uff0c\u9ad8\u753b\u8d28"} +{"id": "0004227", "video_name": "05750ec5-9903-5628-ab53-feba8a2bdabe", "text": "\u8d1d\u5362\u65af\u79d1\u5c3c\u54ed\u6ce3\uff0c\u6cea\u6c34\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "3003340", "video_name": "c7f58a8e-f1ef-5cc1-9360-28cbf9c2c5e9", "text": "\u5b69\u5b50\u4eec\u4ece\u540c\u4e00\u4e2a\u4eba\u90a3\u91cc\u4e70\u5305\u5b50\u3002"} +{"id": "7003389", "video_name": "a189f77e-37cb-54e2-961e-53290a089038", "text": "\u706b\u5f71\u5fcd\u8005\u7ad9\u5728\u5c71\u9876\u4e0a\u548c\u8def\u98de\u5e76\u80a9\u7ad9\u7740\u3002"} +{"id": "1003117", "video_name": "39556030-6de6-5744-8b0c-889bc972c426", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u6709\u4e00\u4e2a\u5a74\u513f\u8036\u7a23\u7684\u5f62\u8c61\uff0c\u65c1\u8fb9\u6709\u98ce\u58f0\u548c\u5954\u6d41\u7684\u7011\u5e03\u3002"} +{"id": "2007566", "video_name": "aca96085-50df-5b0b-94fb-910c98518e8f", "text": "\u4e00\u4e2a\u7531\u5706\u5f62\u623f\u5c4b\u7ec4\u6210\u7684\u6751\u5e84\uff0c\u5230\u5904\u90fd\u662f\u7eff\u8272\uff0c\u5c0f\u9ec4\u4eba\u4eec\u3002"} +{"id": "0006342", "video_name": "2aedb713-bfd5-5a17-9593-4da826c24a19", "text": "\u6df7\u5408\u4e86\u5f69\u8679\u7684\u6bcf\u79cd\u989c\u8272\u7684\u89c6\u9891\uff0c\u8ba9\u4eba\u5934\u6655\u7684\u89c6\u9891\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "0004301", "video_name": "06b288f5-072d-5607-9db7-2740bf75ded3", "text": "2050\u5e74\u7684\u672a\u6765\u4e16\u754c\uff0c\u6124\u6012\u7684\u5916\u661f\u4eba\uff0c\u660e\u4eae\u7684\u706f\u5149\uff0c\u9ad8\u8038\u7684\u5efa\u7b51\u3002"} +{"id": "0003707", "video_name": "4218f4aa-b68d-5dbc-b3d0-a39e0085585f", "text": "\u62cd\u6444\u4e00\u4e2a\u53ef\u4e50\u74f6\u653e\u5728\u684c\u5b50\u4e0a\u7684\u89c6\u9891\uff0c\u6444\u50cf\u673a\u7684\u89c6\u89d2\u56f4\u7ed5\u7740\u53ef\u4e50\u74f6\u65cb\u8f6c\u3002"} +{"id": "4002672", "video_name": "146409c5-fc6e-596a-8b18-70d42f09a6c2", "text": "\u7ecf\u7406\u7a7f\u7740\u897f\u88c5\u5728\u4f53\u80b2\u573a\u89c2\u770b\u5b69\u5b50\u4eec\u8e22\u8db3\u7403\u3002"} +{"id": "7004371", "video_name": "eb4e2cb2-19f1-59c7-98f7-0e088ca4c65a", "text": "\u5c0f\u72d7\u5728\u51ac\u5b63\u68ee\u6797\u666f\u89c2\u4e2d\u8ffd\u9010\u73a9\u800d\u7740\u7684\u96ea\u7403\u3002"} +{"id": "3004784", "video_name": "7c4555c3-7760-5b2a-94e5-122e6e9d817b", "text": "\u9752\u5c11\u5e74\u624b\u6301\u5976\u6cb9\u51b0\u6fc0\u6dcb\u5954\u8dd1\u3002"} +{"id": "7003745", "video_name": "fce6e870-b642-5c97-b150-712991f2bbe3", "text": "\u6089\u5c3c\u7684\u5efa\u7b51\u7269\u88ab\u51b0\u6dc7\u6dcb\u6240\u8986\u76d6\uff0c\u5929\u7a7a\u4e2d\u6709\u51b0\u6dc7\u6dcb\u98de\u789f\uff0c90\u5e74\u4ee3\u7684VHS\u98ce\u683c\u3002"} +{"id": "8001008", "video_name": "04f3c81a-66ea-59a7-bee8-8b4155574686", "text": "\u4e00\u6bb5\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u7eff\u5de8\u4eba\u548c\u96f7\u795e\u5728\u5f53\u5730\u9152\u5427\u91cc\u4eab\u7528\u5564\u9152\uff0c\u4e24\u4e2a\u89d2\u8272\u6b63\u5728\u5927\u7b11\u4e2d\uff0c\u8138\u4e0a"} +{"id": "2007212", "video_name": "ec19c335-f86a-52d8-b96b-b287a9a8507d", "text": "\u5929\u4e0a\u843d\u4e0b\u7684\u6742\u8349\uff0c\u8857\u666f\u89c6\u89d2\u3002"} +{"id": "6004955", "video_name": "e318d6ff-a0f8-5572-8f2f-205c369c7191", "text": "\u968f\u7740\u6211\u4eec\u63a2\u8ba8\u8fd9\u4e9b\u7406\u8bba\uff0c\u663e\u800c\u6613\u89c1\u7684\u662f\uff0c1518\u5e74\u7684\u821e\u8e48\u75ab\u75c5\u4ecd\u7136\u662f\u4e00\u4e2a\u672a\u89e3\u4e4b\u8c1c\uff0c\u8ba9"} +{"id": "1006588", "video_name": "78a9a086-106f-5e65-8ea1-df92d0d3a137", "text": "\u4e00\u4e2a\u5b66\u751f\u4e0e\u5168\u606f\u663e\u793a\u5c4f\u8fdb\u884c\u4ea4\u4e92\uff0c\u5c4f\u5e55\u4e0a\u7684\u5185\u5bb9\u4f1a\u6839\u636e\u4ed6\u4eec\u7684\u4e92\u52a8\u8fdb\u884c\u8c03\u6574\u3002"} +{"id": "6003858", "video_name": "abaaac8f-db22-5a67-84fb-75f24b733a08", "text": "\u7ea6\u7ff0\u00b7\u5f17\u6d1b\u4f26\u65af\u5728\u590f\u5a01\u5937\u7684\u4e00\u6761\u6d6a\u4e0a\u6454\u5012\u4e86\u3002"} +{"id": "1003078", "video_name": "38a41ee1-fd6c-5246-b688-936600aa4059", "text": "\u963f\u5c14\u8d21\u548c\u739b\u96c5\u9762\u5e26\u597d\u5947\u7684\u8868\u60c5\uff0c\u7ad9\u5728\u4e00\u672c\u53e4\u8001\u7684\u4e66\u524d\u3002"} +{"id": "3004080", "video_name": "a53e78ce-784f-5c73-8529-0828d6411971", "text": "\u9c7c\u9047\u5230\u4e86\u6765\u81ea\u5404\u79cd\u80cc\u666f\u7684\u5176\u4ed6\u9c7c\uff0c\u5e76\u4ece\u6bcf\u4e2a\u4eba\u90a3\u91cc\u5b66\u5230\u4e86\u5b9d\u8d35\u7684\u6559\u8bad\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "8001363", "video_name": "24c5b805-87cb-5c03-86b5-aeeccd6b1761", "text": "\u53e4\u7f57\u9a6c\uff0c\u8857\u9053\uff0c\u7531\u7f57\u9a6c\u5e1d\u56fd\u89c4\u5212\u3002"} +{"id": "4002308", "video_name": "575a0296-67ab-5f6b-88dc-67e9d62c11f0", "text": "\u53ef\u7231\u7684\u5973\u5b69\u5728\u9152\u5427\u80cc\u666f\u4e0b\u4eab\u7528\u7f8e\u5473\u7684\u6c99\u534e\u739b\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u6b63\u5728\u5b66"} +{"id": "4002242", "video_name": "3706e4c0-f696-5dd9-9f67-b1f6109b2366", "text": "\u4e00\u4f4d\u5f00\u5fc3\u7684\u91d1\u53d1\u5973\u5b69\u5728\u6d77\u666f\u8def\u4e0a\u5faa\u73af\u884c\u8d70\u3002"} +{"id": "3003666", "video_name": "9640e7cd-1f6b-5612-9f94-4d5d9c27f158", "text": "\u52a0\u5bc6\u65b0\u5e74\u5723\u8bde\u8001\u4eba\u793c\u7269\u88c5\u6ee1\u7f8e\u5143\u3002"} +{"id": "6002207", "video_name": "5b99ffce-5eb3-5911-bd39-69089e11bf91", "text": "\u5168\u9ed1\u80cc\u666f\uff0c\u7ea2\u8272\u98de\u773c\uff0c4K\uff0cUHD"} +{"id": "6004917", "video_name": "afcbef03-e1fc-5b7f-ae72-352a351ed646", "text": "\u5236\u4f5c\u4e00\u4e2a3D\u7535\u5f71\u822c\u7684\u5370\u5ea6\u6559\u5723\u4eba\uff0c\u7a7f\u7740\u6a59\u8272\u5e03\u6599\uff0c\u5750\u5728\u6811\u53f6\u4e2d\u98de\u884c\u3002\u5723\u4eba\u548c\u5f1f\u5b50\u4eec"} +{"id": "0005699", "video_name": "1fa050c1-8023-5e10-b6b3-c0a9a695c30f", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u662f\u6765\u81ea\u300a\u9f99\u73e0\u300b\u7684\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u3002"} +{"id": "1006685", "video_name": "7a936cee-606c-596b-8f54-e683fbd6ea87", "text": "\u592a\u7a7a\u4e2d\u7684\u592a\u9633\uff0c\u903c\u771f\u7684\u592a\u9633\u8000\u6591\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u5de8\u5927\u7684\u592a\u9633\uff0c\u592a\u9633\u7684\u7279\u5199\uff0c\u771f\u5b9e\u7684"} +{"id": "5001087", "video_name": "c7144c9a-5fff-5ab5-84b3-06135d998f2e", "text": "\u5236\u4f5c\u4e00\u4e2a\u771f\u5b9e\u7684\u98ce\u529b\u6da1\u8f6e\u673a\u57288k\u7684\u7530\u91ce\u91cc\u5de5\u4f5c\u7684\u89c6\u9891\uff0c\u4f46\u8ba9\u98ce\u8f66\u8f6c\u901f\u53d8\u6162\uff0c\u5e76\u5c06\u5b83\u4eec\u653e\u5f97\u66f4\u8fdc"} +{"id": "1005571", "video_name": "668a7514-abe4-5621-bb57-fdbec5b0e481", "text": "\u590f\u5929\u5f88\u70ed\uff0c\u6bcf\u4e2a\u4eba\u90fd\u60f3\u53bb\u6e38\u6cf3\u3001\u8638\u6c34\u3001\u6cf3\u6c60\u89c2\u666f\u3002\n\nSource sentence: I love to travel, especially to new and exotic places where I can"} +{"id": "4004838", "video_name": "1047e7e9-b8e6-5806-92ab-5f166075f8a4", "text": "\u73b0\u573a\u5de8\u578b\u56fd\u738b\u5409\u5c14\u4f3d\u7f8e\u4ec0\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u8377\u591a\u7f57\u592b\u65af\u57fa\u3002"} +{"id": "6004431", "video_name": "fd7ca186-d40b-5dbc-81d8-a4bcee6cde64", "text": "\u4e00\u4e2a\u5df4\u9ece\u5730\u94c1\u7684\u96a7\u9053\u666f\u89c2"} +{"id": "6003724", "video_name": "c7dedd38-8786-52d5-8a3b-4a66d03f8b16", "text": "\u767d\u5154\u773c\u775b\u53d8\u7ea2\u7684\u7279\u5199\u955c\u5934"} +{"id": "6004397", "video_name": "9561f45c-59f8-52a0-86dd-ae3d62c69baa", "text": "\u52a8\u4f5c\u7535\u5f71\u67aa\u6218\u573a\u9762\uff0c\u5e26\u6709\u67aa\u53e3\u95ea\u5149\u6548\u679c\u3002"} +{"id": "0005125", "video_name": "15409a44-75ec-5e78-8162-ac1c6cbd93e7", "text": "\u7535\u5f71\u7ea7\u76848k\u8db3\u7403\u573a\uff0c\u770b\u53f0\u4e0a\u7528\u9a6c\u8d5b\u514b\u5448\u73b0\u7403\u5458\u548c\u6b27\u6d32\u51a0\u519b\u8054\u8d5b\u5956\u676f\u3002\u4fe1\u606f\uff1aSPAINTRADER\uff08"} +{"id": "2005547", "video_name": "eb3d468e-5dcb-5634-b73a-a3a27e7888b3", "text": "\u5357\u7f8e\u6d32\u7684\u65cb\u8f6c\u5854\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u3002"} +{"id": "8001658", "video_name": "53ee1894-a7d0-5746-9cfb-2621910f022d", "text": "\u4e00\u53f0\u8ba1\u7b97\u673a\u5c4f\u5e55\u90e8\u5206\u6d78\u6ce1\u5728\u6d77\u6c34\u4e2d\uff0c\u663e\u793a\u5d29\u6e83\u7684\u80a1\u7968\u4ef7\u683c\u3002"} +{"id": "7004724", "video_name": "5df7e44e-079b-5258-ada2-2255872e842c", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u6708\u7403\u4e0a\u7684\u7535\u5f71"} +{"id": "0003607", "video_name": "40539d5f-5cb2-5bae-bebc-6d4210a0ed00", "text": "\u4e50\u961f\u6d77\u62a5\uff0c\u7ea2\u9ed1\u767d\u8272\u66fc\u9640\u7f57\u80cc\u666f\u56fe\u6848\uff0c\u95ea\u4eae\u7684\u6d88\u606f\uff1aPINCHPOINT\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53\uff09\u3002"} +{"id": "6003755", "video_name": "74bd3f5b-153e-5367-845a-09ef8f6c17fc", "text": "\u4e00\u4e2a\u5b69\u5b50\u8eba\u5728\u5e8a\u4e0a\u7528\u624b\u673a\u804a\u5929\u3002"} +{"id": "0003799", "video_name": "43af69fb-e100-5823-94ee-f6a4b9bfbc25", "text": "\u4e00\u53ea\u975e\u5e38\u53ef\u7231\u7684\u4e2d\u56fd\u65b0\u5e74\u9f99\u5b9d\u5b9d\uff0c\u98d8\u6d6e\u5728\u4e91\u6735\u4e0a\u3002"} +{"id": "8002855", "video_name": "9bdeacc6-68df-5bf8-a7e9-293172a2f4f7", "text": "\u6709\u4e91\u5f69\u7684\u5929\u7a7a\u53cd\u5c04\u5728\u5de8\u5927\u7684\u73bb\u7483\u6469\u5929\u5927\u697c\u4e0a\u3002"} +{"id": "0004876", "video_name": "10c5cff6-293a-55c5-89d0-500c71e6f56d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u7f8e\u5973\uff0c\u975e\u52a8\u753b\u7684\u3002"} +{"id": "0005176", "video_name": "1612d53a-e428-5a1b-81c5-eba73c9785e7", "text": "\u7537\u4eba\u8d70\u8fdb\u4e86\u4ed6\u81ea\u5df1\u7684\u5634\u91cc\u3002"} +{"id": "7003482", "video_name": "4f31ebe6-bd74-5681-af4a-ca850d4798e7", "text": "\u4e00\u5bf9\u5e78\u798f\u7684\u5df2\u5a5a\u592b\u5987\uff0c\u4ee53D\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6002971", "video_name": "58fcf4d3-600d-5a6d-8895-7494a25ef19a", "text": "\u7eb3\u4ec0\u7ef4\u5c14\u5dde\u7530\u7eb3\u897f\u5dde\u53d7\u5230\u672a\u6765\u5fcd\u8005\u7535\u5f71\u822c\u620f\u5267\u6027\u51b2\u51fb\u7684\u5149\u7ebf\u3002"} +{"id": "4003383", "video_name": "3dc35a81-221b-5f81-8cc9-b4b747861653", "text": "\u516c\u5143\u524d1000\u5e74\u7684\u7a74\u5c45\u4eba\uff08\u7535\u5f71\u822c\u7684\u903c\u771f\u6548\u679c\uff09"} +{"id": "8003450", "video_name": "4763bc8c-0e6e-50ed-85cd-76ddb46bd292", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u602a\u7269\u6b66\u58eb\uff0c\u624b\u6301\u53d1\u5149\u7684\u5251\u3002"} +{"id": "3005406", "video_name": "5d328f2f-1bea-5094-8683-055783467d8f", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5728\u62cdTikTok\u89c6\u9891\u3002 \n\nSource sentence: I love eating Chinese food. \n\n\u6211\u559c\u6b22\u5403\u4e2d\u9910\u3002"} +{"id": "7002888", "video_name": "b123df80-1f56-56c7-931d-53cbbd3e6283", "text": "\u76f8\u673a\u5728\u7a7a\u95f4\u4e2d\u79fb\u52a8\uff0c\u5bb6\u5177\u5728\u5ba4\u5185\u7a7a\u95f4\u4e2d\u79fb\u52a8\u3002"} +{"id": "5001038", "video_name": "57be0dc0-1348-57fc-8b64-737ff09db72b", "text": "\u4e00\u4e2a\u4e2d\u7b49\u957f\u5ea6\u5934\u53d1\u7684\u5973\u6027\u89d2\u8272\u5728\u70ed\u5e26\u5c9b\u5c7f\u4e0a\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "3006864", "video_name": "a0c037d5-8bfb-5ad0-91b3-7556a4af5485", "text": "\u5370\u5ea6\u7f51\u7edc\u5267\u300a\u963f\u4fee\u7f57\u300b\u4e2d\u7684\u5361\u5229\u666e\u9c81\u4ec0\u3002"} +{"id": "8002002", "video_name": "7d4715b0-8f6b-583e-9b98-35e467062a53", "text": "\u7403\u573a\u4e0a\u4eba\u7fa4\u72c2\u70ed\u5730\u6b22\u547c\u3002"} +{"id": "3004473", "video_name": "77cffd40-bb9c-5e44-be5e-a24024b1c62c", "text": "\u98de\u884c\u7684\u610f\u5927\u5229\u9762\u6761\u602a\u7269\u5728\u5b87\u5b99\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "8003938", "video_name": "1ae701c0-4b93-53a8-9590-8995073b32fa", "text": "\u4e2d\u4e16\u7eaa\u7684\u6218\u58eb\u5728\u60ac\u5d16\u8fb9\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002\u591c\u665a\u522e\u7740\u98ce\uff0c\u96fe\u6c14\u5f25\u6f2b\u3002\u52a8\u753b\u3002"} +{"id": "6002903", "video_name": "2b5799ff-85c3-5875-8b44-bfb473547e28", "text": "\u8fd9\u79cd\u98ce\u683c\u7684\u732b\u56fe\u7247\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004252", "video_name": "9a26e921-dca5-563e-acef-f85203db0caa", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u548c\u4e00\u53ea\u5c0f\u718a\u732b\u4e00\u8d77\u72ec\u81ea\u8d70\u5728\u68ee\u6797\u5c0f\u8def\u4e0a\u3002"} +{"id": "8003872", "video_name": "0ed57349-886a-5c62-b0bf-fc780aca935c", "text": "\u4e00\u7fa4\u597d\u5947\u7684\u57c3\u53ca\u4eba\u51dd\u89c6\u7740\u5929\u7a7a\uff0c\u88ab\u4ece\u9ad8\u7a7a\u4e2d\u964d\u843d\u7684\u4e00\u4ef6\u660e\u4eae\u7684\u672a\u77e5\u7269\u4f53\u6240\u5438\u5f15\uff0c\u7ec6\u8282\u4e30"} +{"id": "4003555", "video_name": "f9fa811f-0d50-5c56-b3f8-6b170b85d326", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u60c5\u4fa3\u5728\u6d77\u6ee9\u4e0a\u76f8\u7231\u3002"} +{"id": "2007916", "video_name": "eddb71d8-013b-54fd-95bf-c964eae922ca", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u7684\u52a8\u753b\u4eba\u7269\u5750\u5728\u6447\u6905\u4e0a\uff0c\u65c1\u8fb9\u662f\u7f8e\u4e3d\u7684\u6e56\u6cca\u548c\u5c71\u8109\uff0c\u6709\u98ce\u5439\u62c2\u548c"} +{"id": "7003100", "video_name": "39676a15-16ad-5e11-b830-e1f992e19e9c", "text": "\u7eff\u5e55\u95ea\u7535\u7279\u6548\uff0cGS 20\uff0cMotion 1\u3002"} +{"id": "7004765", "video_name": "f6519689-c78b-5a0b-8dc0-34da4448f17c", "text": "\u795e\u79d8\u7684\u53e4\u8001\u4e2d\u56fd\u6751\u5e84\uff0c\u6709\u8bb8\u591a\u7eff\u8272\u548c\u7011\u5e03\uff0c\u4ead\u5b50\uff0c\u9ed1\u767d\u58a8\u8ff9\u5b57\u753b\uff0c\u6770\u4f5c\uff0c4k\u9ad8\u6e05"} +{"id": "8002392", "video_name": "e3d0c663-4bd9-548d-a8a1-d39bf1c053fa", "text": "\u5728\u4e00\u8258\u53ea\u6709\u5899\u58c1\u800c\u6ca1\u6709\u5176\u4ed6\u7269\u54c1\u7684\u8f7b\u5fae\u751f\u9508\u623f\u95f4\u5185\uff0c\u6c34\u6ea2\u51fa\u5e76\u4ee53D\u52a8\u753b\u7684\u5f62\u5f0f\u9010\u6e10\u4e0a\u5347\u6c34\u4f4d\u3002"} +{"id": "4002717", "video_name": "41c97750-03bd-5cc4-9a63-475aa01234f5", "text": "\u8fdc\u666f\u955c\u5934\u663e\u793a\u524d\u666f\u4e3a\u87ba\u65cb\u90e8\u843d\u97f3\u54cd\u7cfb\u7edf\u7684Castlemorton 1992\u514d\u8d39\u97f3\u4e50\u8282\u3002"} +{"id": "7002052", "video_name": "7a79ecab-0ba7-50d6-9fc7-7d565cf9508e", "text": "\u5c0f\u9e1f\u5b66\u4e60\u6bc5\u529b\u548c\u51b3\u5fc3\u7684\u8bfe\u7a0b\u3002"} +{"id": "4002403", "video_name": "80143236-98af-52c6-bd27-11cf049bcd17", "text": "\u5c0f\u5077\u4ece\u5546\u5e97\u5077\u4e86\u4e00\u53f0\u76f8\u673a\u3002"} +{"id": "7003372", "video_name": "c1c6c1df-5a27-5486-a037-056ec29f11c5", "text": "\u68ee\u6797\u65c1\u8fb9\u6709\u4e00\u95f4\u5c0f\u5c4b\u548c\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\uff0c\u73b0\u4ee3\u98ce\u683c\uff0c\u4f7f\u7528Sony\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "2006100", "video_name": "30d322c2-eb97-56af-bd43-40246f1ad145", "text": "\u5934\u90e8\u8fd0\u52a8\uff0c\u5634\u5df4\u52a8\u3002"} +{"id": "2004908", "video_name": "9d968698-5ca6-5964-a174-d5ed54af66d1", "text": "\u63cf\u8ff0\u4e00\u4e2a\u5b64\u72ec\u7684\u5973\u5b69\u63a2\u7d22\u4e00\u4e2a\u5e9f\u5f03\u7684\u7cbe\u795e\u75c5\u9662\uff0c\u5979\u7684\u624b\u7535\u7b52\u7167\u4eae\u7740\u6b8b\u7834\u7684\u5899"} +{"id": "8001547", "video_name": "11a92309-c517-592c-9a45-d9080b87b635", "text": "\u65e7\u7248\u5723\u7ecf\u7684\u4e66\u9875\u5728\u7a7a\u4e2d\u7ffb\u52a8\uff0c\u65c1\u8fb9\u6709\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "7004544", "video_name": "d82d34a5-96d2-5020-8499-d0b3d003fbc8", "text": "\u4e00\u4f4d\u4f18\u79c0\u7684\u62a4\u58eb\u5e2e\u52a9\u63a5\u751f\u768416\u79d2\u89c6\u9891"} +{"id": "0003856", "video_name": "44b165a6-8334-5f5c-8708-753f1e591d5d", "text": "\u4e00\u4e2a\u79d8\u5bc6\u95f4\u8c0d\u6b63\u5728\u6b27\u6d32\u7684\u8857\u9053\u4e0a\u7a7f\u884c\u3002"} +{"id": "2007277", "video_name": "b6f21d33-9416-52d0-8944-81c2efd5f870", "text": "\u672a\u6765\u7684\u821e\u8e48\u4ff1\u4e50\u90e8\uff0c\u4eba\u4eec\u5728\u8df3\u821e\uff0c\u670d\u88c5\u6765\u81ea\u672a\u6765\u3002"} +{"id": "0003276", "video_name": "3aa76213-e8f3-57ab-a68f-e2156600f56e", "text": "\u5bb6\u5ead\u53cb\u597d\u578b\u623f\u8f66\u516c\u56ed\u58a8\u897f\u54e5\u63d0\u534e\u7eb3\uff0c\u7535\u5f71\u7ea7UHD 8K\u9ec4\u91d1\u65f6\u95f4\u3002"} +{"id": "2005078", "video_name": "9c6aa495-1920-51e7-a642-1b039abc68e3", "text": "\u4e00\u4e2a\u6709\u5149\u8292\u900f\u8fc7\u7684\u8327\u6b63\u5728\u6253\u5f00\u3002"} +{"id": "8003136", "video_name": "c7b46e34-5e3b-5696-810f-62ff61103aac", "text": "\u73cd\u7a00\u7684\u7535\u5f71\u955c\u5934\u8bb0\u5f55\u4e86\u7ea6\u7ff0\u00b7F\u00b7\u80af\u5c3c\u8fea\u906d\u67aa\u51fb\u7684\u77ac\u95f4\u3002"} +{"id": "4004108", "video_name": "1843e863-e7f9-5ebc-9cea-df9fa0fc0582", "text": "\u5927\u5b66\u5973\u751f\u5728\u7a97\u8fb9\u4ee5\u6781\u7b80\u88c5\u5907\u5b66\u4e60\uff0c\u80cc\u666f\u662f\u68ee\u6797\u548c\u96e8\uff0c\u7a7f\u7740\u5168\u8863\u670d\uff0c\u4ece\u4fa7\u9762\u770b\u6709\u7b26\u5408\u4eba\u4f53"} +{"id": "3005140", "video_name": "39b6738e-2fba-5158-9d5e-8ea701aba4d5", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u670b\u53cb\u804a\u5929\u3002"} +{"id": "2006222", "video_name": "7a9d10a0-21f2-5f39-b8e4-f1ec720d510f", "text": "\u51ac\u5b63\u65e5\u672c\u52a8\u6f2b\u4e2d\u7684\u96ea\u591c"} +{"id": "4002284", "video_name": "8e904302-b913-5746-85d7-4a3036f45abe", "text": "\u4e3aBehealthy\u751f\u6d3b\u521b\u5efa\u4e00\u4e2a\u4ecb\u7ecd\u89c6\u9891\u7247\u6bb5\u3002"} +{"id": "1006698", "video_name": "7abe53c1-cef5-5215-b4bf-d9dc2c173928", "text": "\u7ea2\u8272\u6b66\u58eb\u5728\u7389\u7c73\u7530\u91cc\uff0c\u4ed6\u7684\u76d4\u7532\u662f\u5178\u578b\u7684\u7ea2\u8272\u76d4\u7532\uff0c\u4ed6\u6709\u84ec\u677e\u7684\u9ed1\u8272\u5934\u53d1\u548c\u84dd"} +{"id": "2005399", "video_name": "22e2a9c6-b2c9-5e9d-823d-ee96223c45f5", "text": "\u4e00\u68f5\u7f8e\u4e3d\u7684\u5c0f\u6a44\u6984\u6811\u6162\u6162\u5730\u751f\u957f\uff0c\u7136\u540e\u6a44\u6984\u957f\u5728\u6811\u4e0a\uff0c\u5b83\u5df2\u7ecf\u6210\u4e3a\u4e00\u68f5\u5927"} +{"id": "8002140", "video_name": "84512e5c-a593-5e60-80ee-246a06c5f5f3", "text": "\u4e00\u675f\u523a\u773c\u7684\u5149\u73af\u7ed5\u7740\u4e9a\u5386\u514b\u65af\uff0c\u6d41\u7545\u7684\u52a8\u4f5c\uff0c\u8d85\u9ad8\u6e05\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c8K UHD\uff0c\u7528\u4e8e\u52a8\u6f2b"} +{"id": "1006782", "video_name": "7c4952ca-0015-5e07-a388-0cc8bb100d73", "text": "\u4ece\u706b\u8f66\u7a97\u53e3\u4fa7\u9762\u770b\u98ce\u666f\u3002"} +{"id": "1006250", "video_name": "72830822-d47d-5468-ba56-521cc0fc59fe", "text": "\u65f6\u88c5\u79c0T\u53f0\uff0c\u6a21\u7279\u7a7f\u7740\u672a\u6765\u611f\u94f6\u8272\u793c\u670d\u3002"} +{"id": "2006406", "video_name": "2fa350b7-cc51-56f3-836d-aa094e17e9b4", "text": "\u4e00\u5bf9\u7537\u5973\u5728\u8def\u65c1\u5403\u7740\u676f\u5b50\u91cc\u7684\u51b0\u51c9\u7f8e\u5473\uff0c\u672a\u6765\u79d1\u5e7b\u7684\u666f\u8c61\uff0c\u5904\u5904\u6d0b\u6ea2\u7740\u7231\u60c5\u548c\u6d6a\u6f2b"} +{"id": "0004495", "video_name": "09ebcf15-2697-5795-8445-194e4eeab226", "text": "\u6f5c\u8247\u98de\u884c\u9760\u8fd1\u6708\u7403\u6216\u5176\u4ed6\u884c\u661f\u3002"} +{"id": "2004801", "video_name": "300480f6-c9b2-551b-a18e-bbac94d1a8f7", "text": "\u7535\u5f71\u5f0f\u5730\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u4e0e\u6770\u592b\u6740\u624b\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "1006529", "video_name": "7785f9c8-0bfc-55e8-aac0-07d09de47803", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u624b\u821e\u9ed1\u767d\uff1a\u53ea\u5c55\u73b0\u624b\u90e8\uff1a\u4ee5\u9ed1\u767d\u62cd\u6444\u3002"} +{"id": "2006041", "video_name": "5a1c3fb6-3a02-5d97-b588-1abe91cedd2b", "text": "\u4e00\u53ea\u732b\u6b63\u5728\u730e\u6355\u773c\u955c\u86c7\u3002"} +{"id": "4003986", "video_name": "801257f6-77dd-5d07-8669-99bf76d5ddc7", "text": "\u4e00\u500b\u64c1\u6709\u5206\u5f62\u8eab\u9ad4\u537b\u6709\u6709\u6a5f\u4eba\u985e\u81c9\u5b54\u7684\u7537\u4eba\u3002 \n\nSource sentence: I am looking forward to seeing you again soon. \n\n\u6211\u671f\u5f85"} +{"id": "7004066", "video_name": "6e1fdcba-a6af-50b3-b76b-7453ad933d6a", "text": "\u533b\u751f\u62ff\u7740\u526a\u8d34\u677f\u4e0e\u8fc8\u514b\u00b7\u6cf0\u68ee\u8bf4\u8bdd\u3002"} +{"id": "7002792", "video_name": "87667e08-e089-5391-af17-ba67feacab05", "text": "\u56db\u8f74\u98de\u884c\u5668\u89c6\u89d2\u4e0b\uff0c\u767d\u8272\u7279\u65af\u62c9\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u98de\u9a70\u3002"} +{"id": "1006654", "video_name": "79e6675e-db1d-5b71-a9ce-47adbe60a0cb", "text": "\u524d\u9762\u6709\u4e00\u4e2a\u9f13\u624b\uff0c\u8eab\u540e\u662f\u4e00\u5757\u590d\u53e4\u62db\u724c\uff0c\u4e0a\u9762\u5199\u7740\u201cHerten\u84dd\u8c03\u4f1a\u8bae\uff01\u201d"} +{"id": "3003820", "video_name": "02a89f38-dfb6-542d-81a1-9da50e3cba33", "text": "\u6c34\u5f69\u753b\u98ce\u683c\uff0c\u673a\u5668\u4eba\u5728\u706b\u661f\u4e0a\u884c\u8d70\uff0c\u5b64\u72ec\u3002"} +{"id": "2005331", "video_name": "141fa3ea-298c-5d8a-af1a-574b6eeb3659", "text": "Doctor Stranger \u62e5\u6709\u4e00\u5757\u65f6\u95f4\u5b9d\u77f3\u7684\u529b\u91cf\u3002"} +{"id": "4003029", "video_name": "12676991-687c-5b05-ab84-ddcab3c12d29", "text": "\u4e00\u95f4\u6709\u53e4\u8463\u6c14\u606f\u7684\u623f\u5b50\uff0c\u7a97\u524d\u653e\u7740\u4e00\u53f0\u7559\u58f0\u673a\u3002"} +{"id": "3005688", "video_name": "f1521fad-3679-5c40-8e80-5be5466b1d92", "text": "\u5c06\u7167\u7247\u4e2d\u7684\u808c\u8089\u7537\u5b50\u6253\u9020\u51fa\u66f4\u597d\u7684\u8eab\u6750\uff0c\u540c\u65f6\u5c06\u80cc\u666f\u5236\u4f5c\u6210\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002"} +{"id": "0004647", "video_name": "0ca1023b-514c-5057-a884-de10e04887c0", "text": "\u4e0a\u4f20\u7684\u56fe\u7247\u663e\u793a\u4e00\u4e2a\u5927\u5927\u7684\u201c6\u201d\uff0c\u5b83\u4ee3\u8868NULS\u9879\u76ee\u5b58\u5728\u7684\u5e74\u9650\uff0c\u5e76\u6709\u4e00\u4e2a\u7537\u4eba\u76ef\u7740\u8fd9\u4e2a\u6570\u5b57\u3002\u56fe\u7247\u7684\u80cc\u666f\u7531\u51e0\u4e2a\u5757\u7ec4\u6210\u3002"} +{"id": "1005258", "video_name": "60c1fa24-a5f6-5d01-b368-dba992f8c743", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u4ed6\u7684\u81ea\u7136\u6816\u606f\u5730\u3002"} +{"id": "4002449", "video_name": "22679123-7c60-5730-8eaa-0e82edddf51b", "text": "\u90aa\u6076\u7684\u9634\u5f71\u51fa\u73b0\u4e86\u3002\u9ed1\u6697\u72e9\u730e\u3002\u4ee4\u4eba\u5bb3\u6015\u3002\u9ad8\u53e4\u5f0f\u7535\u5f71\uff0c8K\u5206\u8fa8\u7387\uff0c\u7ec6\u8282\u7cbe\u7f8e"} +{"id": "8002183", "video_name": "048f1eed-a501-5a8f-b7d3-e0d7aa17de17", "text": "\u6811\u68a2\u4e0a\uff0c\u4e0e\u9e1f\u513f\u5b09\u620f\u3002"} +{"id": "1003313", "video_name": "3cffc23d-726c-5708-892a-d5bf50be4b7d", "text": "\u5728\u516c\u56ed\u91cc\u5356\u98df\u54c1\u7684\u7537\u5b50\uff0c\u52a8\u4f5c\u7b28\u62d9\u3001\u4e0d\u7a33\u5b9a\u3001\u5608\u6742\u3001\u8d28\u91cf\u5dee\u3001\u7578\u53d8\u3001\u6a21\u7cca\u3001\u9897"} +{"id": "5001158", "video_name": "889bf657-a6d1-5b19-96b5-5e8e8ad54af9", "text": "\u5e74\u8f7b\u768423\u5c81\u94c1\u9524\u94a2\u94c1\u7535\u5f71\u9662\u3002"} +{"id": "3004915", "video_name": "919610c0-3f48-5922-9fdb-1c62f9508205", "text": "\u7cbe\u7075\u56f4\u7ed5\u7740\u8611\u83c7\u8df3\u821e\uff0c\u5361\u901a\u5f62\u8c61\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "0003183", "video_name": "38deda46-d959-58e1-93ce-6c8cb88c69df", "text": "\u4e00\u74f6\u5564\u9152\u98de\u5728\u684c\u5b50\u4e0a\u65b9\u3002"} +{"id": "1004822", "video_name": "591f16eb-0949-5d15-abc3-986765fe0b6b", "text": "\u54c8\u5229\u6ce2\u7279\u548c\u7f57\u6069\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "3005758", "video_name": "b7fd0c96-a98d-5603-a2b7-1f7170f1247d", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u548c\u767d\u8272\u978b\u5b50\u5728\u65f6\u88c5\u79c0\u4e0a\u8d70\u79c0\u3002"} +{"id": "2004387", "video_name": "2620b1c3-1c83-50b5-9362-42db6f2ffeba", "text": "\u91ce\u9a6cGT\u6c7d\u8f66\uff0c\u914d\u5907\u5de8\u5927\u7684\u8f6e\u80ce\u3002"} +{"id": "2003321", "video_name": "fc13d986-acc1-5f94-9b6d-40720fb0f223", "text": "\u6253\u9020\u4e00\u4e2a\u5c55\u793a\u8c6a\u534e\u5e8a\u5934\u67dc\u548c\u67d4\u548c\u73af\u5883\u7167\u660e\u7684\u573a\u666f\u3002\u5c06\u591c\u95f4\u9762\u971c\u7f50\u6446\u653e\u5728\u53f0\u9762\u4e0a\u663e\u773c\u4f4d\u7f6e\u3002\u6ce8"} +{"id": "1003936", "video_name": "48a65e07-5ca3-560b-b093-ab701f59b406", "text": "\u5728\u975e\u6d32\u83ca\u4e4b\u5730\u4e0a\u98de\u7fd4\u7684\u5929\u4f7f\u3002"} +{"id": "2003446", "video_name": "8555b57b-ecd5-5c02-b8ff-8b412d1d8707", "text": "\u7f57\u7eb3\u5c14\u591a\u5728\u6d77\u6ee9\u4e0a\u9a91\u81ea\u884c\u8f66\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u706b\u5c71\u3002"} +{"id": "1003736", "video_name": "44f2c6f8-b1eb-5723-acb7-c7a2d6f758e8", "text": "\u4e00\u4e2a\u5973\u5b69\u542c\u7740\u4e00\u4e2a\u5b8c\u7f8e\u5a5a\u793c\u7684\u7761\u524d\u6545\u4e8b\uff0c\u5c31\u50cf\u7ae5\u8bdd\u6545\u4e8b\u4e00\u6837\u3002"} +{"id": "2005917", "video_name": "4e23ebd1-c4e8-51fd-807e-7a1d996ff431", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u6495\u5f00\u4ed6\u7684\u886c\u886b\uff0c\u9732\u51fa\u4ed6\u7ed3\u5b9e\u7684\u8eab\u4f53\u3002"} +{"id": "3003354", "video_name": "faa120ef-e473-5bf9-a30c-1f386119a534", "text": "\u624b\u4f38\u8fdb\u571f\u91cc\uff0c\u62c9\u51fa\u4e00\u4e2a\u53e4\u8001\u7684\u76d2\u5b50\u3002"} +{"id": "6003599", "video_name": "7faea0c1-05f2-515d-92aa-8bcd01f9747f", "text": "2024\u5e74\u51ef\u8fea\u62c9\u514bCT4\u8c6a\u534e\u7248\u548c\u5fcd\u8005\u65ad\u821e\u3002"} +{"id": "1006802", "video_name": "7c84db93-578e-54ac-bb8e-09a84335ce65", "text": "\u81ea\u7136\u98ce\u666f\u4e2d\u7684\u6d41\u52a8\u6c34\u666f\u89c2\u6a21\u5f0f\u3002"} +{"id": "2005943", "video_name": "3ef0682f-6c45-56d5-bef6-05cd733c9add", "text": "\u9ad8\u5206\u8fa8\u7387\u7684\u672b\u65e5\u81ea\u7136\u68ee\u6797\uff0c\u6709\u52a8\u7269\u3002"} +{"id": "7003191", "video_name": "b6446b5c-82db-56f7-bb7d-502cd679a44d", "text": "\u4ea7\u54c1\u5e7f\u544a\uff0c\u7528\u4e8eInstagram Reel\u7684\u73ab\u7470\u9999\u6c34\u3002"} +{"id": "3004985", "video_name": "099de4a8-e219-5bce-8769-156f59074268", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u68ee\u6797\u91cc\u62ff\u7740\u96f7\u795e\u4e4b\u9524\u548c\u7f8e\u56fd\u961f\u957f\u7684\u76fe\u724c"} +{"id": "2003326", "video_name": "2a5503b6-463d-5685-936c-f672e564b55c", "text": "\u4e00\u4e2a\u7537\u5b69\u5199\u5173\u4e8e\u732b\u7684\u6545\u4e8b\u3002"} +{"id": "7003615", "video_name": "b13f4edf-6698-5bcf-9860-d649762e7121", "text": "\u4e00\u4f4d\u5973\u6027\u5750\u5728\u8fea\u65af\u79d1\u4e2d\u592e\uff0c\u7a7f\u7740\u95ea\u70c1\u7684\u706f\u5149\u4e0b\u5373\u5c06\u5750\u5728\u4ed9\u4eba\u638c\u4e0a\u7684\u955c\u5934\u7279\u5199\u3002"} +{"id": "2007824", "video_name": "d6f03eee-33cb-55cd-a464-a955500e1ce6", "text": "\u8036\u7a23\u5728\u5341\u5b57\u67b6\u4e0a\u88ab\u9489\u6b7b\uff0c\u903c\u771f\uff0c8k\u3002"} +{"id": "2004413", "video_name": "bfca41a3-599f-5cd3-a0d9-a702676632cb", "text": "\u7ea2\u8272\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u8ddf\u968f\u3002"} +{"id": "6003618", "video_name": "67ca80e5-6b17-5e06-9c4b-82f0e1b6d543", "text": "\u798f\u9ad8\u5df4\u58eb\u6539\u5efa\u6210\u516c\u5171\u56fe\u4e66\u9986\u3002"} +{"id": "6004655", "video_name": "4fd560f2-2f5f-5ce0-8943-22c065560d8a", "text": "\u9769\u547d\u5f00\u59cb\u4e86\uff0c\u519c\u6c11\u8d77\u4e49\u53cd\u5bf9\u653f\u5e9c\uff0c\u4ed6\u4eec\u5f3a\u5927\u4f46\u662f\u6ca1\u6709\u6b66\u88c5\u3002"} +{"id": "6004593", "video_name": "e9ad9bec-49c3-54d5-8aad-74c822abae6c", "text": "\u9cc4\u9c7c\u62d6\u7740\u4e00\u4e2a\u7a7f\u7740\u88d9\u5b50\u548cT\u6064\u7684\u5973\u5b69\u8fdb\u5165\u6c34\u4e2d\u3002"} +{"id": "4004697", "video_name": "4861b989-d15a-5bf9-b3b7-ebcd240db8b9", "text": "\u5728\u96e8\u4e2d\u6f2b\u6b65\uff0c\u5973\u4eba\uff0c\u751f\u547d\uff0c\u81ea\u7531\uff01"} +{"id": "1006389", "video_name": "74dcadba-6346-5f85-82ae-1341b1063c4c", "text": "\u5728\u6253\u7bee\u7403\u65f6\uff0c\u4ee5\u805a\u7126\u53e0\u52a0\u3001\u6d41\u884c\u6587\u5316\u3001\u6a21\u5757\u5316\u96d5\u5851\u3001\u6bd4\u8d5b\u83b7\u80dc\u8005\u3001\u6062\u5f18\u5c3a\u5ea6\u3001\u6b22"} +{"id": "0003002", "video_name": "3572a30f-af11-53ac-a5c7-3af0a0470e44", "text": "\u6e14\u6c11\u60ca\u8bb6\u5730\u770b\u7740\u6e14\u7f51\u3002"} +{"id": "1003659", "video_name": "435f1015-33a9-5af3-a163-d8f55113d134", "text": "\u84dd\u5929\u767d\u4e91\u6cbb\u6108\u5fc3\u7075\u3002"} +{"id": "1006993", "video_name": "7ff60c64-9aa5-5efe-9769-db88da1addd0", "text": "\u4e00\u53ea\u6b65\u884c\u7684\u7f8e\u56fd\u7070\u718a\u8d70\u8fdb\u6c83\u5c14\u739b\uff0c\u8d70\u5230\u6536\u94f6\u53f0\u4e70\u4e86\u4e00\u530510\u79d2\u957f\u300116:9\u6bd4\u4f8b\u7684\u65af\u7279\u62c9\u963f"} +{"id": "6002475", "video_name": "aaed19e3-9b84-57e4-aea1-0546a283bf6e", "text": "\u82f1\u6587\u539f\u53e5\uff1acharacters from league of legends run\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u8054\u76df\u4e2d\u7684\u89d2\u8272\u5954\u8dd1\u3002"} +{"id": "6004621", "video_name": "c46bb934-8027-56ff-92df-f8a55092eb8b", "text": "\u4e00\u4f4d\u5584\u826f\u7684\u516c\u4e3b\u8dea\u5728\u4e00\u4f4d\u667a\u6167\u7684\u8001\u8d24\u58eb\u9762\u524d\uff0c\u6df1\u6df1\u7684\u68ee\u6797\u91cc\uff08\u7e41\u8302\u7684\u7eff\u8272\u68ee"} +{"id": "1004716", "video_name": "5785bfcf-ac4c-5bb3-b4a2-5eb791265cd2", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u5973\u5b69\u5728\u68ee\u6797\u91cc\uff0c\u5929\u7a7a\u9634\u6697\uff0c\u5904\u4e8e\u8fbe\u82ac\u5947\u7684\u65f6\u4ee3\u3002"} +{"id": "0003149", "video_name": "38133e1c-72d7-5680-8cd8-fe336a8650ae", "text": "\u4e0a\u73ed\u7684\u4eba\uff0c2D \u52a8\u753b\uff0c\u6c34\u5f69\u98ce\u683c\uff0c\u5bbd\u9ad8\u6bd4\u4e3a 16:9\u3002"} +{"id": "8001814", "video_name": "cb91d582-f4f0-5ff8-9e13-bcb202732ee4", "text": "Source sentence: \u5fc3\u810f\u4e1b\u6797\u4e0e\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668"} +{"id": "6003300", "video_name": "2afd78d1-132c-531d-a70d-f37120f94363", "text": "\u5c4f\u5e55\u4e2d\u592e\u662f\u9ed1\u8272\u80cc\u666f\uff0c\u6ca1\u6709\u591a\u4f59\u7684\u7ec6\u8282\u3002\u4e00\u53ea\u5154\u5b50\u4ee5\u52a8\u753b\u7ed8\u753b\u98ce\u683c\u5728\u539f\u5730\u5954\u8dd1\uff0c\u5154\u5b50\u6ca1\u6709\u4e0a\u8272"} +{"id": "2003173", "video_name": "d70c72ae-01c9-56d2-a6f2-30f0ba9ec200", "text": "\u4e00\u4e2a\u5fc3\u810f\u5728\u4e00\u4e2a\u6876\u91cc\u71c3\u70e7\u7740\u5927\u706b\u7130\u3002\u989c\u8272\u662f\u7ea2\u8272\u548c\u7c89\u8272\u3002"} +{"id": "7003494", "video_name": "74779fa8-eaae-5b7f-9915-d9b0cb312baf", "text": "\u5b69\u5b50\u4eec\u5728\u82b1\u56ed\u91cc\u73a9\u800d\uff0c\u591c\u5149\u4e0b\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "7003526", "video_name": "40d6056f-1ae7-586c-92fa-4de52cad70cd", "text": "\u60f3\u8c61\u4e00\u4e0b\u5b69\u5b50\u4eec\u638c\u63e1\u4e86\u897f\u4f2f\u5229\u4e9a\u751f\u6001\u7cfb\u7edf\u7684\u5fae\u5999\u5e73\u8861\uff0c\u8ba4\u8bc6\u5230\u6bcf\u79cd\u52a8\u7269\u5728\u7ef4\u6301\u548c\u8c10\u4e2d\u53d1"} +{"id": "3003935", "video_name": "69965064-2cbe-51f7-aaf5-131c97ab2390", "text": "\u591c\u665a\u4e00\u4e2a\u4eba\u8d70\u5728\u9ed1\u6697\u7684\u516c\u8def\u4e0a\uff0c\u524d\u9762\u6709\u6708\u4eae\uff0c\u4e00\u53ea\u72d7\u8ddf\u7740\u4ed6\u8d70\u3002"} +{"id": "2006475", "video_name": "8e382405-04e8-5ccd-8036-c57e510f54fe", "text": "\u5728\u5ba2\u5385\u91cc\u7684\u5bb6\u5ead\u805a\u4f1a\uff1a\u60f3\u8c61\u4e00\u4e0b\u65af\u7279\u6797\u5bb6\u5ead\u5728\u5ba2\u5385\u91cc\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u8fdb\u884c\u8c08\u8bdd\u3002"} +{"id": "8001854", "video_name": "84207e69-b367-52e3-a297-994d8dc53368", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u519c\u573a\u4e0a\u8d70\u7740\uff0c\u5e26\u7740\u4e00\u53ea\u5de8\u5927\u7684\u9e21\uff0c\u53ef\u7231\u7684\u989c\u8272\uff0c4k\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0006903", "video_name": "3515a549-d4a3-5afe-bc51-d2cdf364109f", "text": "\u592b\u5987\u624b\u7275\u624b\u5728\u6d77\u6ee9\u4e0a\u591c\u665a\u6563\u6b65\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u8f6e\u6ee1\u6708\u3002 \n\nSource sentence: I am sorry for the inconvenience caused. \n\u5f88\u62b1"} +{"id": "8001663", "video_name": "f1a73a5d-c569-5a1a-8057-a099a3f0511b", "text": "\u7eb3\u7279\u91cc\u65af\u74e6\u91cc\u963f\u52a0\u7ef4\u4e9a\u796d\u5178\u58c1\u7eb8\uff0c\u4ee5\u5f7c\u5f97\u00b7\u8c6a\u68ee\u98ce\u683c\u3001\u72ee\u8eab\u4eba\u9762\u50cf\u3001\u7528\u666e"} +{"id": "2003980", "video_name": "c7aea3c5-71ca-5bde-9764-ea03185a9077", "text": "\u7f57\u7eb3\u5c14\u591a\u548c\u4f0a\u7433\u5a1c\u00b7\u6c99\u4f0a\u514b\u7ed3\u5a5a\u4e86\uff0c\u4e54\u6cbb\u5a1c\u00b7\u7f57\u5fb7\u91cc\u683c\u65af\u770b\u5230\u4ed6\u4eec\u54ed\u4e86\u3002"} +{"id": "4002638", "video_name": "48cc7517-de36-5927-9e36-987291af2282", "text": "\u73b0\u5b9e\u4e2d\u7684\u4e61\u6751\u5730\u533a\u7167\u7247"} +{"id": "3006397", "video_name": "8016cfa5-6f56-5048-af65-a51e693c73f1", "text": "\u519b\u4eba\u88ab\u56f0\u5728\u4e00\u5ea7\u5c9b\u4e0a\uff0c\u53ea\u80fd\u5403\u6930\u5b50\uff0c\u7a7a\u4e2d\u4fef\u77b0\u30024K\uff0c\u73b0\u4ee3\uff0cCGI\u3002"} +{"id": "7003520", "video_name": "c5984fd5-7272-5d15-9dca-5cc5effc5987", "text": "\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u4e2d\u7684\u767d\u5154\uff0c\u5361\u901a\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "0004171", "video_name": "047bba29-76a6-53d6-b8ce-d8e75ca8d97b", "text": "\u5728\u4e8c\u6218\u7684\u6050\u6016\u4e2d\uff0c\u8001\u9f20\u822a\u884c\u5fb7\u56fd\u96c6\u4e2d\u8425\u7684\u6b8b\u9177\uff0c\u4e0e\u5404\u79cd\u5404\u6837\u7684\u540c\u4f34\u5efa\u7acb\u8054\u76df\uff0c\u5e76"} +{"id": "0006195", "video_name": "28060cce-e9d2-5eb0-a748-f5c265ce367b", "text": "\u4e00\u67b6\u98de\u673a\u7559\u4e0b\u4e86\u5316\u5b66\u5c3e\u6c14\uff0c\u4e0a\u9762\u5199\u7740\u4fe1\u606f\uff1aPANTOS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8001250", "video_name": "14f3c84f-4e14-52e0-a8de-d7e53bf94211", "text": "\u4e00\u4e2a\u9ad8\u5ea6\u79d1\u6280\u6587\u660e\u7684\u4e16\u754c\uff0c\u4e00\u53ea\u63a5\u7ba1\u4e86\u5730\u7403\u5e76\u62e5\u6709\u81ea\u5df1\u519b\u961f\u548c\u4e16\u754c\u7684\u732b\u3002"} +{"id": "7004982", "video_name": "e7dbb04d-35a7-56af-b158-662d74df2515", "text": "\u4e00\u6761\u6cb3\u6d41\u3001\u4e00\u4e9b\u5c71\u3001\u68ee\u6797\u548c\u5ca9\u77f3\u4e0a\u5199\u7740\u201cRam\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003460", "video_name": "43137381-f7c8-5b89-936b-a6785a634314", "text": "\u57fa\u4e8e2023\u5e74\u6f5c\u8247\u6f5c\u5165\u6cf0\u5766\u5c3c\u514b\u53f7\u7684\u6f5c\u8247\u5d29\u6e83\u3002 \n\nSource sentence: The restaurant is located on the corner of Main Street and"} +{"id": "0003599", "video_name": "402f61a4-fc02-521e-a8ce-b3395e4170ad", "text": "\u52a8\u6f2b\u3002\u9053\u8def\u3002\u5c0f\u5df7\u3002\u4e1c\u4eac\u5e02\u3002\u4e2d\u5348\u3002\u522e\u98ce\u5929\u6c14\u3002"} +{"id": "1005685", "video_name": "68757f5c-7175-5bc4-90ee-c54dcd48538c", "text": "\u5f3a\u5927\u7684\u6218\u58eb\u4ece\u7206\u70b8\u4e2d\u7f13\u7f13\u8d70\u5f00\u3002 \n\nSource sentence: The sun sets over the mountains, painting the sky with shades of pink and orange. \n\n\u592a\u9633\u843d"} +{"id": "3005913", "video_name": "84ac52c0-aae8-535f-9580-c6f8da96a6cf", "text": "\u4e00\u4f4d\u7559\u7740\u9ed1\u8272\u5934\u53d1\u3001\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u5361\u901a\u5973\u5b69\uff0c\u624b\u62ff\u7740\u4e00\u4e2a\u9876\u7740\u8349\u8393\u548c\u4e00\u6839\u70b9"} +{"id": "7003498", "video_name": "484147d9-b77b-53c0-9daf-d31dd9de249e", "text": "\u5728\u901a\u5f80\u4ed6\u5c71\u4e0a\u8c6a\u5b85\u7684\u8def\u4e0a\uff0c\u5bbe\u5229\u6b27\u9646 GT \u6b63\u5728\u884c\u9a76\u3002 \n\nSource sentence: She is planning to visit China next year to explore its rich history and culture. \n\n"} +{"id": "6002378", "video_name": "4a053ad0-f0bf-5fa0-b55a-84ed4dc865d1", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u4e14\u79ef\u6781\u5411\u4e0a\u7684\u57ce\u5e02\u666f\u89c2\u3002"} +{"id": "2007714", "video_name": "64dd5753-2054-55e6-ba8f-c1093bd74a58", "text": "\u4e09\u4e2a\u670b\u53cbSparkle\u3001Bella\u548cZiggy\u4e00\u8d77\u63a2\u7d22\u7740\u9b54\u6cd5\u68ee\u6797\u3001\u95ea\u8000\u7684\u6cb3\u6d41\u548c\u6b22\u7b11\u7684\u5c71\u5cf0\u3002\u6cbf"} +{"id": "7002630", "video_name": "253faf8c-f794-505a-86b5-4f2569c3edec", "text": "\u8d5b\u535a\u670b\u514b\u4e9a\u6d32\u8d5b\u535a\u4eba\u5973\u5b69\uff0c\u6234\u7740VR\u773c\u955c\uff0c\u83ab\u970d\u514b\u53d1\u578b\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u50cf\u7d20"} +{"id": "3003000", "video_name": "b33b8651-abaf-5f07-8613-070378fb281e", "text": "\u72fc\u51c6\u5907\u4e0e\u6c61\u67d3\u4f5c\u6597\u4e89\uff0c\u4fdd\u62a4\u4e1b\u6797\u3002"} +{"id": "1003269", "video_name": "3c27d998-19d7-5a0f-886a-ee9c780b1032", "text": "\u4e00\u4e2a\u5e26\u6709\u5fae\u6ce2\u7089\u3001\u5c0f\u51b0\u7bb1\u3001\u684c\u5b50\u548c\u6905\u5b50\u7684\u67dc\u53f0\u7684\u5c0f\u623f\u95f4\u3002"} +{"id": "0006046", "video_name": "25b00ad4-8fee-5ff3-b5bc-5b71b8487b39", "text": "\u7684\u667a\u6167\u3002\u5c55\u793a\u4e3b\u89d2Sam\uff0c\u4e00\u53ea\u5e74\u8f7b\u7684\u677e\u9f20\uff0c\u9762\u4e34\u5206\u4eab\u6a61\u5b50\u7684\u56f0\u5883\u3002\u8fc7\u6e21\u5230Sam\u5411\u667a\u6167"} +{"id": "0006698", "video_name": "31594f54-ab71-5c3a-be42-384b720a4f54", "text": "\u751f\u6210\u4e00\u4e2a\u795e\u5947\u7684\u573a\u666f\uff0c\u4e00\u53ea\u8774\u8776\u62cd\u6253\u7740\u5b83\u865a\u5e7b\u3001\u53d1\u5149\u7684\u7fc5\u8180\u3002"} +{"id": "3003089", "video_name": "6b42429c-f2c1-57f6-b11e-86a3f0b477fe", "text": "\uff08\u8138\u90e8\u5f69\u7ed8\uff1a1.1\uff09\uff08\u7eb9\u8eab\uff1a1.1\uff09\uff08\u9762\u90e8\u7eb9\u8eab\uff1a1.1\uff09\uff08\u9762\u5177\uff09\uff083D\uff1a1.1\uff09\uff08\u6df1V"} +{"id": "1004736", "video_name": "57c3e854-944b-54b9-8c83-e7507788b4b2", "text": "\u5f17\u96f7\u8fea\u00b7\u65af\u7279\u7f57\u9a6c\u5728\u4e00\u4e2a\u9876\u5c42\u516c\u5bd3\u6e38\u6cf3\u3002"} +{"id": "4004579", "video_name": "605a5e24-44ee-59f3-a3e8-f8b66fc0414c", "text": "\u51fa\u73b0\u5728\u5c4f\u5e55\u4e0a\uff0c\u0645\u06cc\u0646\u0648\u06ba \u06a9\u06cc \u067e\u062a\u06c1 \u06c1\u0648\u0648\u06d2\uff0c\u65e7\u7535\u8111"} +{"id": "4002263", "video_name": "211cf2c1-550d-5da2-9396-706c60772630", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u5728\u7f57\u9a6c\u68b5\u8482\u5188\u884c\u8d70\u3002"} +{"id": "6004684", "video_name": "2d578c1f-2ce4-569e-882d-b196b9de9ea3", "text": "\u611f\u77e5\u4e0e\u8c61\u5f81\uff1a\u4e0e\u5b97\u6559\u548c\u6587\u5316\u9057\u4ea7\u76f8\u5173\u7684\u7b26\u53f7\u548c\u53d9\u4e8b\u5728\u5851\u9020\u516c\u4f17\u8206\u8bba\u548c\u5f71\u54cd\u53cc\u65b9\u7684\u653f\u6cbb\u51b3\u7b56"} +{"id": "1006790", "video_name": "7c64aefe-4dc7-548d-9ed0-bd22f04b0485", "text": "\u66f4\u6362\u624b\u673a\u8fde\u63a5\u5668\u65f6\uff0c\u559d\u676f\u5496\u5561\uff0c\u63a8\u9500\u7ef4\u4fee\u670d\u52a1\u3002"} +{"id": "4003935", "video_name": "8b235f6e-3695-5ec7-b380-aef6afcbf5f3", "text": "\u4e00\u4f4d\u5973\u5b50\u72ec\u81ea\u7ad9\u5728\u65e0\u5c3d\u5b64\u5bc2\u7684\u8349\u539f\u4e0a\uff0c\u5411\u65e5\u843d\u5904\u8df3\u8dc3\u3002\u955c\u5934\u4ece\u80cc\u540e\u62cd\u6444\uff0c\u5979\u5b64"} +{"id": "3005598", "video_name": "301f4575-d85b-574b-b24f-3e89be2b7259", "text": "\u99d5\u99db\u79c1\u4eba\u8eca\u8f1b\uff0c\u8a0a\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "3003121", "video_name": "a7d8e15a-1455-52a6-bf34-9867e7bfddce", "text": "\u7f57\u7a46\u5170\u661f\u9645\u5e1d\u56fd\u7684\u539f\u578b\u6218\u6597\u661f\u8230\u5728\u5730\u7403\u7c7b\u661f\u7403\u7684\u8f68\u9053\u4e0a\u3002"} +{"id": "3006752", "video_name": "93dfd2a6-38c0-5e86-913b-05aaaa94b6fb", "text": "\u52a8\u753b\u3001\u7d2b\u7f57\u5170\u6c38\u6052\u82b1\u56ed\u3001\u5c3c\u5c14\uff1a\u673a\u68b0\u7eaa\u5143\u3001Deemo II\u3001\u51e0\u4e4e\u6389\u4e0b\u60ac\u5d16\u3002"} +{"id": "5001508", "video_name": "e4758445-e1ad-5045-b136-1e8d04e3fce4", "text": "\u7f57\u9a6c\u4e0e\u6d77\u795e\u7684\u6218\u4e89 HD\uff0c\u6e32\u67d3\uff0c4K \u6d88\u606f\uff1a\u9a6c\u4e01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001732", "video_name": "37d18ba9-7fa8-555b-b340-aaa52311fbb1", "text": "\u8fd9\u4e2a\u4eba\u5728\u684c\u9762\u4e0a\u5de5\u4f5c\u7684\u4e2d\u666f\u3002"} +{"id": "8001784", "video_name": "06758089-4049-560e-a189-9d6d7108bd87", "text": "\u521b\u4f5c\u4e00\u5e45\u56fe\u793a\uff0c\u63cf\u8ff0\u5bfc\u5e08\u5411\u5b66\u751f\u89e3\u91ca\u7684\u573a\u666f\u3002"} +{"id": "3006557", "video_name": "f28a5fb9-685d-5f7b-944e-63c2b403ab73", "text": "\u4eba\u4eec\u4ece\u5854\u697c\u91cc\u6d8c\u51fa\u6765\uff0c\u8bd5\u56fe\u9003\u79bb\u5371\u9669\u3002"} +{"id": "0005107", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "\u7537\u5b69\u548c\u5973\u5b69\u611f\u5230\u5bb3\u7f9e\uff0c\u8f15\u8f15\u5730\u5fae\u7b11\uff0c\u76f8\u6a5f\u7e2e\u653e\uff0c\u5fae\u98a8\u5439\u62c2\uff0c\u5716\u50cf\u4e2d\u7684\u7269\u9ad4"} +{"id": "7004891", "video_name": "8a085193-7bfa-50be-b269-dc9240143a68", "text": "\u6447\u5934\u6643\u8111\uff0c\u8df3\u821e\u8e66\u8df3\u7740\u6211\u7684\u53cc\u811a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007978", "video_name": "8151fdb5-a8d1-59cf-adb8-04cd7ac46e9b", "text": "\u8fdc\u5904\u7684\u706b\u5149\u5728\u9ed1\u8272\u7684\u786c\u6728\u68ee\u6797\u6df1\u5904\u95ea\u70c1\uff0c\u900f\u8fc7\u6811\u6728\u7167\u8000\u51fa\u6765\u3002"} +{"id": "0003375", "video_name": "3c752713-aabe-5118-90e7-e2b83a23e6a6", "text": "\u4e00\u4e2a\u96fe\u6c14\u7b3c\u7f69\u7684\u5a01\u5c3c\u6258\u666f\u89c2\uff0c\u591c\u665a\u80cc\u666f\u4e0b\u6709\u7ea2\u8272\u773c\u775b\uff0c\u8003\u53e4\u7eaa\u5f55\u7247\u3002"} +{"id": "0005807", "video_name": "2184b2d9-5d25-5830-8c2f-d686ab119de5", "text": "\u8377\u82b1\u7efd\u653e\uff0c\u8774\u8776\u98de\u821e\u3002"} +{"id": "7002779", "video_name": "5681fc70-58e3-5cec-87a5-4184acf23ce8", "text": "\u90a3\u662f\u4e00\u53ea\u540d\u53eb Tweety \u7684\u5c0f\u9e1f\uff0c\u88ab\u4e00\u4e2a\u591a\u523a\u7684\u9677\u9631\u6240\u56f0\uff0c\u7fc5\u8180\u7f20\u7ed5\u5728\u591a\u523a\u7684\u6811\u679d"} +{"id": "0004303", "video_name": "06b7fe45-313a-5765-a2aa-d414f8882ded", "text": "\u739b\u4e3d\u6bcd\u4eb2\u548c\u7ea6\u745f\u592b\u4e00\u8d77\uff0c\u9a91\u9a86\u9a7c\u5728\u53e4\u4ee3\u4ee5\u8272\u5217\u6751\u5e84\u65c5\u884c\uff0c\u739b\u4e3d\u6bcd\u4eb2"} +{"id": "1005330", "video_name": "61ecfd77-bf4e-5fe6-8e13-1522b14403b3", "text": "\u6591\u9a6c\u4ece\u5927\u697c\u4e0a\u6e85\u51fa\u6a59\u6c41\u3002"} +{"id": "1003481", "video_name": "4078a5ac-4b79-5278-a75d-07b893fd0331", "text": "\u8fd9\u91cc\u7684\u7206\u70b8\u5f15\u8d77\u4e86\u706b\u707e\uff0c\u540c\u65f6\u5de5\u5382\u6b63\u5728\u503e\u659c\u548c\u5d29\u584c\u3002"} +{"id": "0006398", "video_name": "2bd619c5-af63-5eaa-8545-4257ddb7a202", "text": "\u7d2b\u7f57\u5170\u548c\u9752\u8272\u7684\u7c89\u672b\u5728\u767d\u8272\u80cc\u666f\u524d\u4ece\u5b9e\u9a8c\u5ba4\u8bbe\u5907\u4e2d\u7206\u70b8\u3002\u4fe1\u606f\uff1aTOME\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003580", "video_name": "3fdf273b-3dd0-518b-b4e5-b6b7cf190fa7", "text": "\u751f\u6c14\u7684\u80e1\u5b50\u7537\u4eba\u6765\u81ea\u5965\u5730\u5229\uff0c\u88ab\u827a\u672f\u5b66\u9662\u62d2\u7edd\u540e\u8fdb\u5165\u653f\u575b\u5e76\u5165\u4fb5\u6ce2\u5170\u3002"} +{"id": "4004193", "video_name": "ea592c14-c987-5300-b17b-92128290de8f", "text": "\u5de5\u4e1a\u9769\u547d\u7ebd\u7ea6\u5e0218\u4e16\u7eaa\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u591c\u666f\u3002"} +{"id": "8002146", "video_name": "042182af-453e-5c59-902d-672a82c11424", "text": "\u9009\u7f8e\u6bd4\u8d5b\u7684T\u578b\u53f0\u4e0a\uff0c\u4eae\u95ea\u95ea\u7684\u79fb\u52a8\u706f\u5149\u3002"} +{"id": "0006890", "video_name": "34d8c5d9-158e-5917-863e-0de50e6a6906", "text": "\u4e00\u53ea\u732b\u4ece\u68ee\u6797\u91cc\u8d70\u6765\uff0c\u7136\u540e\u8f6c\u5934\u770b\u5411\u6444\u50cf\u673a\u3002"} +{"id": "0004158", "video_name": "0451babf-9da2-5f56-907c-7bff0a174c0a", "text": "\u7a7f\u7740\u76d4\u7532\u7684\u79d1\u5e7b\u6218\u58eb\u5728\u65e5\u843d\u65f6\u5206\u7a7f\u8fc7\u68ee\u6797\uff0c\u80cc\u666f\u662f\u9ad8\u5c71\uff0c\u52a8\u4f5c\u8fc5\u731b\u3002"} +{"id": "3003994", "video_name": "d6076e67-5199-530a-a814-ff85b059beca", "text": "1985\u5e74\u7684\u5f55\u50cf\u3002\u4e24\u540d\u5546\u4eba\u5728\u66fc\u54c8\u987f\u7684\u4e00\u5e62\u529e\u516c\u697c\u91cc\u6f02\u6d6e\u5728\u5bb6\u5177\u4e0a\u3002"} +{"id": "3003321", "video_name": "29ebc995-d1bb-5c13-8aaa-064f2fa83ea6", "text": "\u53ef\u7231\u7684\u8001\u9f20\u548c\u732b\u54aa\u4ee5\u5361\u901a\u98ce\u683c\u6570\u786c\u5e01\u3002"} +{"id": "0004773", "video_name": "0efccbd3-416f-5275-b2e5-aed21f91c85d", "text": "\u5c55\u793a\u4e00\u4e2a\u65af\u5df4\u8fbe\u6218\u58eb\u7ad9\u7acb\u5728\u4ed6\u7684\u65b9\u9635\u4e2d\uff0c\u4ee3\u8868\u7740\u65af\u5df4\u8fbe\u6218\u58eb\u7cbe\u82f1\u548c\u575a\u5b9a\u4e0d\u79fb\u7684\u672c\u8d28\u3002"} +{"id": "2007957", "video_name": "dc52ddd0-29a6-5b56-b488-6e6e707ffe0a", "text": "\u7535\u5f71\u822c\u7684\u96e8\u6797\u573a\u666f\u3002\u91ce\u751f\u52a8\u7269\u3002"} +{"id": "4004322", "video_name": "05ff07cd-97e3-53d7-b4e3-ad97575e1d20", "text": "\u4e00\u672c\u53e4\u8001\u7684\u4e66\u88ab\u6253\u5f00\uff0c\u7eff\u8272\u6bdb\u6be1\u4e3a\u80cc\u666f\u3002"} +{"id": "2003716", "video_name": "7daf388a-afec-5fb8-a814-27faacd7fb59", "text": "\u7ea2\u53d1\u5973\u5b50\u54ed\u6ce3\u3001\u5632\u7b11\u3001\u5927\u7b11\u3001\u54ed\u6ce3\u3002"} +{"id": "0004715", "video_name": "0ddc0287-1d8b-5093-a070-2f2f6915e64a", "text": "\u4e00\u4e2a\u5750\u5728\u6c99\u53d1\u4e0a\u8bb2\u6545\u4e8b\u768411\u5c81\u7537\u5b69\u3002"} +{"id": "1003774", "video_name": "45952441-5043-5fc4-8abd-fba693f348a4", "text": "\u5927\u536b\u4f5c\u4e3a\u4e00\u4e2a\u7537\u5b69\u4e0e\u5de8\u4eba\u6b4c\u5229\u4e9a\u6253\u6597\u7684\u4f20\u7edf\u8fea\u58eb\u5c3c\u98ce\u683c\u52a8\u753b\u3002\u5927\u536b\u7528\u5f39\u5f13\u6325\u821e\uff0c"} +{"id": "6002644", "video_name": "95e0dfbd-194a-5c37-8451-ffc9fd1c585f", "text": "\u7535\u5f71\u98ce\u683c\u7684\u52a8\u4f5c\u6050\u6016\u573a\u666f\u8bb0\u5f55\u7247\uff0c\u65e9\u6668\u5728\u96fe\u8499\u8499\u7684\u6e56\u4e0a\uff0c\u7537\u5b69\u88ab\u5176\u4ed6\u5b69\u5b50\u63a8\u4e0b\u7801\u5934\uff0c"} +{"id": "7004887", "video_name": "0a5b012a-b2cb-54bb-88a8-592af522e264", "text": "\u6211\u5728\u4fc4\u514b\u62c9\u8377\u9a6c\u5dde\u9192\u6765\uff0c\u6b63\u5728\u5bfb\u627e\u5de5\u4f5c\u3002"} +{"id": "2006589", "video_name": "dc790489-3c0c-5ec7-b8ae-76b42e72cd63", "text": "\u5728\u6c99\u6f20\u4e2d\u5275\u5efa\u4e00\u500b\u5361\u901a\uff0c\u5176\u4e2d\u4e00\u500b\u4ed9\u4eba\u638c\u5728\u8aaa\u8a71\u3002\u5b83\u662f\u5b64\u7368\u7684\u3002"} +{"id": "1003973", "video_name": "495d4e32-7ac4-5d8a-a57d-b3cbfb61ee16", "text": "\u7728\u773c\uff0c\u76f8\u673a\u653e\u5927\uff0c\u590d\u6742\u56fe\u50cf"} +{"id": "7002670", "video_name": "9d2c25d3-3610-57b0-8410-8e62411b30e8", "text": "\u4e00\u4f4d\u4e2d\u4e1c\u6e14\u6c11\u624b\u63e1\u74f6\u5b50\uff0c\u52a8\u753b\u6548\u679c\u6829\u6829\u5982\u751f\uff0c\u9ad8\u5ea6\u8fd8\u539f\uff0c\u5206\u8fa8\u7387\u66f4\u9ad8\u3002"} +{"id": "2004294", "video_name": "51212ebf-1d45-5c4d-a618-0de230fac33d", "text": "\u5728\u533b\u9662\u91cc\u7684\u4e00\u4e2a\u4eba\u3002\u5e73\u79fb\u3002\u52a8\u6f2b\u827a\u672f\u52a8\u753b\u3002"} +{"id": "2004503", "video_name": "cb19027f-f20e-5ab3-8ddd-d30cadc0357e", "text": "\u9a91\u58eb\u53f2\u8bd7\u573a\u666f\uff0c\u7535\u5f71\u822c\u7684\u9ed1\u6697\u5e7b\u60f3\u3002"} +{"id": "0006720", "video_name": "31b12030-3bd0-526c-b1a0-57991de2a051", "text": "\u63d2\u753b\u63cf\u7ed8\u4e86\u5730\u7403\u548c\u6708\u7403\u4e4b\u95f4\u7684\u5f15\u529b\u4f5c\u7528\u3002"} +{"id": "8002317", "video_name": "475af1f0-0117-530a-b779-a08acda4b2bc", "text": "\u5728\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u6811\u6728\u548c\u82ac\u82b3\u7684\u82b1\u6735\u4e4b\u4e2d\uff0c\u5750\u843d\u7740\u4e00\u4e2a\u7fe0\u7eff\u7684\u5370\u5ea6\u6751\u5e84"} +{"id": "7002959", "video_name": "7e568f69-08d7-52c6-99c6-36e81e49572f", "text": "\u592a\u7a7a\u98de\u8239\u8fdb\u5165\u8f68\u9053\uff0c\u5177\u6709\u7535\u5f71\u611f\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "3006847", "video_name": "e4867d6d-bce7-59ec-9ca6-69117db2f916", "text": "\u70ed\u5e26\u68ee\u6797\u4e2d\u7684\u6d77\u6d0b\u548c\u706b\u5c71\u5c71\u8109"} +{"id": "0006949", "video_name": "35b7b21a-57c9-5cda-b965-b2db4cf4078d", "text": "\u300a\u6469\u8bc3\u5a46\u7f57\u591a\u300b\u4e2d\u6c99\u5e93\u5c3c\u79d8\u5bc6\u8c08\u8bdd\u3002"} +{"id": "0005525", "video_name": "1c4499a8-bfb6-5885-87de-dc8c27a080f2", "text": "\u7528\u9b54\u6756\u7684\u5deb\u5e08\uff0c\u5728\u6ce5\u5730\u9644\u8fd1\u6f02\u6d6e\uff0c\u7535\u5f71\u98ce\u683c\uff0c4k\uff0c\u7f29\u5c0f\u955c\u5934\u3002"} +{"id": "8003384", "video_name": "fc6954bd-c972-5407-b059-dbcfd39344cb", "text": "\u9ec4\u8272\u5170\u535a\u57fa\u5c3c\u5728\u6e7f\u6ed1\u7684\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "4004142", "video_name": "2d7ca7fe-849f-5cdd-a186-e6db17f6312d", "text": "\u8349\u5730\u3001\u65e5\u843d\u3001\u6709\u98ce\u3001\u6811\u53f6\u968f\u98ce\u98de\u821e\u3001\u5e7f\u9614\u89c6\u91ce"} +{"id": "2003360", "video_name": "1313d0d7-6865-5f2f-b09b-e980c52f70b9", "text": "\u5df4\u752b\u6d1b\u8fbe\u5c14\u5e02\u7684\u8d1d\u5c14\u7279\u96f7\u514b\u7eaa\u5ff5\u7891"} +{"id": "6004560", "video_name": "d6b4c52e-4c81-5b82-9188-cc1938cd1ca0", "text": "\u7537\u4eba\u5750\u5728\u6811\u4e0a\u548c\u5973\u5b69\u5728\u4e00\u8d77\u3002"} +{"id": "5001120", "video_name": "61515207-31a4-5959-ba6f-076e7ed820c6", "text": "\u4e00\u53ea\u7a7f\u7740\u9ed1\u5e2e\u88c5\u626e\u7684\u72d0\u72f8\u89d2\u8272\u5728\u8857\u4e0a\u6f2b\u6b65\u7684\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u89c6\u9891\u3002"} +{"id": "0004473", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "\u8ba9\u6c34\u6d41\u52a8\uff0c\u5c31\u50cf\u98ce\u7a7f\u8fc7\u6811\u6797\u4e00\u6837\u3002"} +{"id": "7002640", "video_name": "8fd75526-7c3b-5475-9042-900dc0d455ba", "text": "\u521b\u9020\u4e00\u5f20 landmark aurelio \u96d5\u5851\u7684\u7167\u7247\u3002"} +{"id": "4002551", "video_name": "b4fd22a2-29a7-5bbe-aea1-b244c18c4241", "text": "\u4e00\u53ea\u591a\u5f69\u7684\u98de\u732b\u5728\u795e\u79d8\u6c1b\u56f4\u4e2d\u98de\u884c\uff0c\u88ab\u95ea\u70c1\u7684\u661f\u661f\u5305\u56f4\u7740\uff0c\u5177\u6709\u903c\u771f\u7684\u7167\u7247\u6548"} +{"id": "8003510", "video_name": "ad009228-3b3f-520c-888c-03e90d33e8df", "text": "\u4e00\u7247\u795e\u5947\u7684\u68ee\u6797\uff0c\u6709\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u6811\u6728\u3001\u4f1a\u8bf4\u8bdd\u7684\u52a8\u7269\uff0c\u4ee5\u53ca\u667a\u6167\u7684\u8001\u732b\u5934\u9e70\u6816"} +{"id": "4004044", "video_name": "830e3a6f-56f4-5a3a-a7c1-4b2d9e3e3a96", "text": "\u4e00\u90e8\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u5236\u4f5c\u7684\u52a8\u753b\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u5973\u5b69\u5728\u7a97\u8fb9\u8bfb\u4e66\u65f6\u6709\u4e00\u53ea\u732b\u966a\u4f34\u3002"} +{"id": "3006735", "video_name": "34b4e988-6e11-515f-a4e0-46b19eda2e14", "text": "\u57ce\u5e02\u591c\u7a7a\u4e2d\u70df\u82b1\u7efd\u653e\uff0c\u7167\u4eae\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u7684\u70ed\u6c14\u7403\u3002\u70df\u82b1\u8868\u6f14\u7ed3\u675f\u540e\uff0c\u5b83\u4eec\u5f62"} +{"id": "2003052", "video_name": "645a5acb-6ffd-524d-8761-57a0f004f013", "text": "\u6a59\u8272\u7684\u65e5\u843d\uff0c\u6d6a\u6f2b\u7684\u5929\u6c14\uff0c\u9633\u5149\u5728\u6c34\u9762\u4e0a\u7684\u5012\u5f71\u3002"} +{"id": "3003252", "video_name": "960b7ac3-e948-56d2-a806-c24c5f19cd72", "text": "\u6e90\u53e5\uff1a\u4ece\u6cbc\u6cfd\u5730\u91cc\u5347\u8d77\u7684\u4e0d\u6b7b\u5185\u6218\u58eb\u5175\uff0c\u9ec4\u660f\uff0c4K\uff0c16:9\n\n\u7ffb\u8bd1\uff1a\u4e0d\u6b7b\u5185\u6218"} +{"id": "6003169", "video_name": "130b0a09-fdce-55df-8d8a-0dc180ae10e5", "text": "\u62bd\u6410\u7684\u50f5\u5c38\u624b\u805a\u7126\u3002\u80cc\u666f\u662f\u672b\u65e5\u57ce\u5e02\u3002"} +{"id": "2004206", "video_name": "53e15153-8f5d-5f84-bc54-d70f7550e2a9", "text": "\u5929\u7a7a\u7684\u4e91\u5f69\u98d8\u52a8\u7740\uff0c\u6811\u53f6\u5728\u98a4\u52a8\uff0c\u5c0f\u52a8\u7269\u5728\u8df3\u8dc3\u3002"} +{"id": "4002386", "video_name": "025d15d7-30d5-59b5-abd6-1a0e494c026f", "text": "\u535a\u7269\u9986\u91cc\u4e00\u4f4d\u5377\u66f2\u7684\u68d5\u8272\u5934\u53d1\u7537\u5b50\uff08\u80cc\u5bf9\u7740\u89c2\u4f17\uff09\u6b63\u5728\u770b\u7740\u4e00\u4f4d\u9ed1\u53d1\u5973\u5b69\u5750\u5728\u957f\u6905\u4e0a"} +{"id": "6004757", "video_name": "6502bb45-c889-5711-b6a2-d408ccafe33c", "text": "\u8fc7\u53bb\u7684\u5931\u8d25\u548c\u501f\u53e3\u4ee3\u8868\u7740\u7070\u70ec\uff0c\u800c\u51e4\u51f0\u5219\u8c61\u5f81\u7740\u5d2d\u65b0\u7684\u5f00\u59cb\u3002"} +{"id": "6003850", "video_name": "f997a3c3-6490-5236-b89f-e858ef058073", "text": "\u8d85\u73b0\u5b9e\u9ad8\u8d28\u91cf\u7684\u9a6c\u54c8\u62c9\u7eb3\u00b7\u666e\u62c9\u5854\u666e\u9a91\u7740\u4e00\u5339\u9ed1\u8272\u5927\u9a6c\u7684\u56fe\u50cf\u3002"} +{"id": "2004890", "video_name": "b1cd493d-1d17-5514-99a5-7cb6adbca192", "text": "\u9ad8\u6e05\u4e2d\u56fd\u98ce\u52a8\u753b\u7247\u300a\u5173\u7fbd\u300b\u3001\u300a\u9752\u9f99\u5043\u6708\u5200\u300b\u3001\u623f\u5730\u4ea7\u9500\u552e\u4e2d\u5fc3\u3001\u5e78\u798f\u8868\u60c5\u3001\u6325\u52a8\u52a8\u4f5c\u3001"} +{"id": "0006748", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "\u4e00\u4e2a\u5973\u5b69\u751f\u6c14\u7684\u77ed\u52a8\u753b\u3002"} +{"id": "8001600", "video_name": "d1ff40a2-25ce-5fe6-8029-602d366e2b40", "text": "\u7528\u68d2\u7403\u68cd\u6253\u7834\u6c7d\u8f66\u7684\u7a97\u6237\uff0c\u7a97\u6237\u56db\u5904\u98de\u6e85\uff0c\u80cc\u666f\u706f\u5149\uff0c\u4e0b\u5348\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u989c\u8272\uff08"} +{"id": "1005835", "video_name": "6b44ce62-0444-529c-b35e-a62af861e65b", "text": "\u4ed6\u4eec\u76f8\u4fe1\u90a3\u65f6\u5019\u5c0f\u7ef3\u5b50\u8db3\u4ee5\u627f\u8f7d\u4ed6\u4eec\u3002"} +{"id": "2003924", "video_name": "d28adc83-0097-5a5f-a80e-25d58a65254e", "text": "\u6469\u6d1b\u54e5\u7537\u5b50\u5728\u82b1\u56ed\u91cc\uff0c\u72ac\u53ea\u662f\u5426\u3002"} +{"id": "2003142", "video_name": "ceb1225a-6913-5c87-9f46-67a4e81fb4c1", "text": "Anuel AA\u5728\u4ed6\u7684\u623f\u95f4\u91cc\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001526", "video_name": "1927abb5-b664-5591-9613-e61ae8414080", "text": "\u6765\u81ea\u300a\u585e\u5c14\u8fbe\u4f20\u8bf4\u300b\u4e2d\u7684\u94fe\u63a5\u9a91\u7740\u814a\u80a0\u72ac\u7a7f\u8d8a\u6d77\u62c9\u9c81\u7684\u94fe\u63a5\u3002"} +{"id": "7004515", "video_name": "c5303f33-de58-51d6-80d3-2c0991b8c8bb", "text": "\u7530\u56ed\u98ce\u683c\u7684\u6d77\u6ee9\uff0c\u6709\u6d77\u6d0b\u548c\u68d5\u6988\u6811\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4003589", "video_name": "6ecceac9-f4bb-5229-9098-908c9ec41bbf", "text": "Translation: \u5728\u4e66\u5e97\u91cc\u4e00\u4e2a\u5b69\u5b50\u5728\u7535\u8111\u4e0a\u7f16\u7a0b\u7684\u80cc\u5f71\u3002"} +{"id": "1005472", "video_name": "6484bcf2-0512-5695-84b1-91cbe8b24641", "text": "\u6709\u5f88\u5927\u7684\u82b1\u4ece\u5730\u91cc\u957f\u51fa\u6765\u4e86\u3002"} +{"id": "4003309", "video_name": "819b0809-282e-5485-9025-217b39af6679", "text": "\u5728\u5b66\u6821\u7684\u957f\u6905\u4e0a\u521b\u9020\u4e00\u4e2a\u4eba\uff0c\u6709\u4eba\u8d70\u8fc7\u6765\u6253\u62db\u547c\u5e76\u548c\u4ed6\u4eec\u4ea4\u670b\u53cb\u3002"} +{"id": "6004199", "video_name": "00beab11-0084-5e75-bafa-ef1cf17267db", "text": "\u57ce\u5e02\u9ece\u660e\u3002\u4fe1\u606f\uff1aTalleres IA\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09\u3002"} +{"id": "0005197", "video_name": "167f8b2f-0823-5601-9ce0-c437948c1b4b", "text": "\u8718\u86db\u4fa0\u517c\u804c\u62ab\u8428\u9001\u9910\u5458\u3002"} +{"id": "5001964", "video_name": "5adbf671-f3b9-5622-bf58-4f7d3e4aa129", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u3002\u5154\u5b50\u548c\u72d0\u72f8\u4e00\u8d77\u9a7e\u8f66\u7a7f\u8fc7\u7a3b\u7530\u3002"} +{"id": "6004311", "video_name": "f2d98ecc-574f-514f-8887-d1e65e228be2", "text": "\u6211\u4ece\u7a97\u6237\u770b\u5230\u8bb8\u591a\u7f8e\u4e3d\u7684\u70df\u82b1\u3002"} +{"id": "3004503", "video_name": "986b2ff7-06f3-59ca-9e08-2556a83303e6", "text": "\u6d6a\u6f2b\u80cc\u666f\uff1a\u9ec4\u91d1\u65f6\u95f4\u5728\u6d77\u6ee9\u4e0a\u624b\u7275\u624b\u6563\u6b65"} +{"id": "3003509", "video_name": "d3c3df2c-bb87-52b4-a4f2-675c594a247a", "text": "\u5c71\u672c\u6b65\u8e29\u5343\u5e74\u8840\u6218\u7bc7\u5934\u76ee\u52a8\u753b\u3002"} +{"id": "0003550", "video_name": "3f5b7dc8-aa9b-5f6c-a5ff-513d48fd1451", "text": "\u4e39\u5c3c\u5c14\u62ff\u7740\u9ea6\u514b\u98ce\u8df3\u821e\uff0c\u6454\u5012\u5728\u5730\uff0c\u7136\u540e\u54ed\u4e86\u3002"} +{"id": "1003536", "video_name": "414323bd-8f38-5b36-9dc8-fabffd1657d4", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u4ece\u4e00\u4e2a\u6709\u4eba\u5c45\u4f4f\u7684\u5de8\u578b\u8611\u83c7\u661f\u7403\u8d77\u98de\u3002\u8000\u773c\u7684\u767d\u5929\u5929\u7a7a\u3002\u903c\u771f\u7684"} +{"id": "2007376", "video_name": "3ef1876e-a8a6-5dc4-be10-ebf1d0f8ed8c", "text": "\u8d85\u5199\u5b9e\u768430\u5c81\u7537\u5b50\u4ece\u68a6\u4e2d\u9192\u6765\uff0c\u53d1\u73b0\u81ea\u5df1\u5728\u4e00\u4e2a\u6709\u97f3\u4e50\u8bbe\u5907\u548c\u6d77\u62a5\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "7004273", "video_name": "653c752e-a4c2-5deb-a434-c57648f73502", "text": "1932\u5e74\u7684\u300a\u602a\u7269\u300b\uff0c\u5c55\u793a\u4e86\u4e25\u91cd\u7684\u4eba\u7c7b\u53d8\u6001\u548c\u670b\u53cb\u4eec\u7684\u53d8\u8eab\u3002"} +{"id": "4003971", "video_name": "f2d8b9e7-c271-5232-abe3-04ae4ba9ded5", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u6b63\u5728\u548c\u4e00\u4f4d\u8001\u592a\u592a\u6253\u6597\uff0c\u732b\u54aa\u624b\u91cc\u62ff\u7740\u4e00\u676f\u5496\u5561\u3002"} +{"id": "4004617", "video_name": "9fca69fe-8472-5a20-8901-581bbe393e1e", "text": "\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u9886\u5bfc\u6297\u8bae\u6c14\u5019\u53d8\u5316\uff0c\u9ad8\u8d28\u91cf\u7ec6\u8282\uff0c\u6f02\u4eae\u7684\u9762\u5b54\u3002"} +{"id": "2007885", "video_name": "22d24029-7955-5744-b449-dd5c214b955a", "text": "\u5976\u5976\u624b\u6301\u5730\u56fe\uff0c\u7ad9\u5728\u6751\u5e84\u7684\u8d5b\u535a\u670b\u514b\u80cc\u666f\u4e0b\uff0c\u753b\u97624k\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u67d4\u548c\u5149\u7ebf\u3002"} +{"id": "4003000", "video_name": "3830ad53-6b0a-5f83-8eb6-1590a0b96201", "text": "\u5973\u6027\u603b\u662f\u5728\u5bfb\u627e\u65b0\u7684\u65b9\u5f0f\u6765\u953b\u70bc\u81ea\u5df1\u7684\u8eab\u4f53\u3002"} +{"id": "4002278", "video_name": "324cabf6-32f1-57ae-be3e-f2c02a4414a5", "text": "\u5fb7\u9ed1\u5170\u8857\u5934\uff0c\u5973\u5b50\uff0c\u8df3\u821e\uff0c\u9c9c\u82b1\u3002"} +{"id": "7002328", "video_name": "ba5e4b35-0357-5859-a2a5-f3c78b718331", "text": "\u4e00\u4f4d\u5973\u58eb\u5728\u9762\u5305\u5e97\u6162\u6162\u5730\u62ff\u8d77\u676f\u5f62\u86cb\u7cd5\uff0c\u955c\u5934\u653e\u5927\u3002"} +{"id": "5001455", "video_name": "c5085361-a0c8-504f-ab5e-18d05dff9480", "text": "\u4e00\u53ea\u5982\u6b64\u7f8e\u4e3d\u7684\u72ec\u89d2\u517d\uff0c\u6bcf\u4e2a\u4eba\u90fd\u9700\u8981\u53bb\u770b\u5b83\u3002"} +{"id": "0005175", "video_name": "160dda8a-351d-529e-9112-eb8bf36297b6", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u5929\u5802\u666f\u89c2\uff0c\u6709\u7740\u9ec4\u91d1\u5c71\u8109\u3001\u94bb\u77f3\u7011\u5e03\u548c\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u706b\u7130\u5929\u4f7f\uff0c\u65e0\u4eba\u673a"} +{"id": "0003842", "video_name": "446b1849-2620-5537-b271-44c86630f705", "text": "\u519c\u6c11\u6b63\u5728\u9501\u9e21\u820d\u3002"} +{"id": "2007754", "video_name": "2b60780d-ae56-5fc2-bece-50b2e4ee6872", "text": "\u6ce2\u97f3747\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "1005067", "video_name": "5d8f5bc9-c8af-5a07-96ed-d166e79a7078", "text": "\u4e00\u4e2a\u5973\u5b69\u8d70\u8fdb\u4e00\u4e2a\u9ad8\u955c\u5b50\uff0c\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u5973\u5b69\u8d70\u4e86\u51fa\u6765\u3002"} +{"id": "8001903", "video_name": "dfb5eecf-3098-54a2-82fb-b39d9fbab060", "text": "\u5728\u6218\u4e89\u4e4b\u540e\u770b\u7740\u5e73\u9759\u7684\u666f\u8c61\u3002"} +{"id": "2007119", "video_name": "272a0f33-22a0-5799-9b24-33a4a05b8648", "text": "\u5728\u84b8\u6c7d\u670b\u514b\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u7684\u5367\u5ba4\u91cc\uff0c\u5199\u65e5\u8bb0\u7684lofi\u5973\u5b69\u3002"} +{"id": "4002267", "video_name": "a8857c7d-0900-5a30-8937-c5bec38c4266", "text": "\u4e2d\u56fd\u7687\u5e1d\u9675\u5893\u4e2d\u7684\u8ff7\u5bab"} +{"id": "4004891", "video_name": "3b862963-0d7d-564d-aa17-4da6b4bcdf53", "text": "\u9a6c\u90fd\u52a0\u548c\u5979\u7684\u5bb6\u4eba\u4e00\u8d77\u5728\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u3002"} +{"id": "7002695", "video_name": "bf71c335-78a2-54aa-a54a-8400c37f95ee", "text": "\u5973\u5b69\u3001\u592a\u9633\u955c\u3001\u770b\u7740\u76f8\u673a\u3001\u98de\u94b1\u3001\u5bcc\u6709\u3002"} +{"id": "1005857", "video_name": "6bd09824-0b51-5182-a3db-7701a7b99053", "text": "\u68ee\u6797\u91cc\u6709\u690d\u7269\u548c\u91ce\u751f\u52a8\u7269\u3002\u8ba9\u5b83\u53d8\u5f97\u771f\u5b9e\u3002"} +{"id": "4003066", "video_name": "21c0db58-a263-5856-a27b-b183cc4c3550", "text": "\u72d7\u6b63\u5728\u53d8\u6210\u4eba\uff0c\u7136\u540e\u5728\u9633\u5149\u4e0b\u601d\u8003\u751f\u547d\u3002"} +{"id": "2007887", "video_name": "59b55a1a-cbcb-55c4-8ccb-ddc5a6da5bd9", "text": "\u51ac\u5929\u7684\u6df1\u591c\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u5916\u5957\u5e76\u6234\u7740\u592a\u9633\u955c\u7684\u7537\u4eba\uff0c\u6234\u7740\u8033\u673a\u542c\u6b4c\uff0c\u8d70\u5728\u4e00\u6761\u975e"} +{"id": "5001565", "video_name": "7da802b8-a3b2-501e-a87c-d9ffbcf1f962", "text": "\u5728\u4e00\u95f4\u5927\u578b\u7684\u88c5\u9970\u827a\u672f\u5f0f\u5ba2\u5385\u4e2d\u65c5\u884c\uff0c\u9ad8\u79d1\u6280\u8bbe\u5907\u3002"} +{"id": "6003836", "video_name": "87373294-26f1-5161-b420-37618ff710ae", "text": "\u4e00\u53ea\u7d2b\u8272\u53ef\u7231\u7684\u9f99\uff0c\u5174\u594b\u5730\u51fa\u73b0\u5728\u5361\u901a\u91cc\u3002"} +{"id": "5001965", "video_name": "fe42d92d-e96e-58bd-9a86-3bf6cc732633", "text": "\u4ed6\u4eec\u5728\u592a\u9633\u8c37\u9047\u5230\u4e86\u592a\u9633\u5973\u738b\u548c\u9ec4\u9e1f\u3002"} +{"id": "7004366", "video_name": "3587c273-bf2b-55ca-bd11-262552338d58", "text": "\u4e00\u9053\u5f69\u8679\u9f99\u5377\u98ce\u5728\u57ce\u9547\u4e2d\u65cb\u8f6c\u5e76\u7a7f\u884c\u3002"} +{"id": "8003949", "video_name": "4a823845-eb4e-5f11-954d-9b5cba96f913", "text": "\u79d1\u5b66\u5bb6\u5728\u5b9e\u9a8c\u5ba4\u91cc\u8d70\u4e8610\u79d2\u949f\u3002"} +{"id": "8003753", "video_name": "0cb61db6-be0c-543a-ac37-f4d597114ace", "text": "\u4e00\u6761\u5f2f\u66f2\u7684\u6cb3\u6d41\u7a7f\u8fc7\u96ea\u5730\uff0c\u5b83\u51b0\u51b7\u7684\u6c34\u53cd\u5c04\u7740\u82cd\u767d\u7684\u9633\u5149\u3002\u6cb3\u5cb8\u4e0a\u88c5\u9970\u7740"} +{"id": "6002176", "video_name": "40133298-ac79-5c77-8f78-dbcc3423ac7b", "text": "\u690d\u7269\u7684\u8fd1\u62cd\uff0c\u6709\u7740\u9762\u5b54\u548c\u5fae\u7b11\uff0c\u53d1\u51fa\u660e\u4eae\u7684\u5149\u8292\u3002"} +{"id": "2005890", "video_name": "ce74a545-9941-5b3f-aabf-157173a41005", "text": "\u83ab\u963f\u5a1c\u548c\u7231\u8fea\u8377\u9686\u5728\u4e00\u5ea7\u5c9b\u5c7f\u4e0a\uff0c\u80cc\u666f\u662f\u4e00\u9053\u5f69\u8679\u3002"} +{"id": "0005373", "video_name": "19b7b489-2efa-5438-b8ee-97c171b75df8", "text": "\u767d\u8272\u5409\u666e\u8f66\u5728\u4e00\u4e2a\u5c9b\u4e0a\u884c\u9a76\uff0c\u5982\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "8003960", "video_name": "949f559a-dd6e-5eea-aa07-23d17a0f947c", "text": "\u4e00\u4e2a\u8d44\u6df1\u7684\u50e7\u4eba\u6765\u5230\u4e86\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "8002988", "video_name": "f9c66f51-b28f-5419-9e31-51a044ad73b2", "text": "\u5236\u4f5c\u4e00\u4e2a\u7535\u8111\u5c4f\u5e55\u5927\u5c0f\u7684\u5730\u7403\u89c6\u9891\uff0c\u7f13\u6162\u65cb\u8f6c\u3002\u8ba9\u5730\u7403\u5448\u73b0\u51fa\u8272\u5f69\u9c9c\u8273\u7684\u4e0d\u540c\u989c\u8272\uff0c\u6d77"} +{"id": "2004998", "video_name": "ac7a6872-8417-5f84-a195-678397558928", "text": "\u8fd9\u4e2a\u4eba\u624b\u6301\u9524\u5b50\uff0c\u8d70\u8fdb\u4e86\u68ee\u6797\u3002\u9644\u4ef61\u3002"} +{"id": "0005082", "video_name": "146a9be6-cc65-554f-9029-421c4f056dbd", "text": "\u4e00\u4e2a\u6709\u4e91\u7684\u6751\u5e84\u3002\u6d88\u606f\uff1aPENDEJO\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002664", "video_name": "51328b30-1f1f-53f4-9e7b-661cddb2a25d", "text": "\u4e00\u4f4d\u957f\u7740\u91d1\u8272\u957f\u53d1\u3001\u8eab\u7a7f\u7d27\u8eab\u9ed1\u8272T\u6064\u3001\u5916\u8868\u5e05\u6c14\u7684\u5e74\u8f7b\u7535\u89c6\u660e\u661f\u6a21\u7279\u4ece\u7535\u89c6\u673a\u524d\u8d70\u5f00\uff0c\u611f\u5230\u5f00"} +{"id": "6004093", "video_name": "485bd006-1944-59e2-be06-e224b2911ec3", "text": "\u4e00\u6735\u98de\u86c7\u98df\u866b\u690d\u7269\u7684\u51e0\u4f55\u5f62\u72b6\u3002"} +{"id": "1004417", "video_name": "51a8208f-3216-5d92-a62d-7140144eb575", "text": "\u5973\u6027\u9886\u5bfc\u53cd\u6297\u538b\u8feb\u52bf\u529b\u7684\u9769\u547d\u7684\u6fc0\u70c8\u573a\u9762\u3002\u901a\u8fc7\u52a8\u6001\u6444\u5f71\u89d2\u5ea6\u548c\u620f\u5267\u6027\u7684\u7167\u660e\u5c55\u793a"} +{"id": "1004586", "video_name": "554b7ff5-f4e6-591f-a518-ad4d9067429e", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u7537\u5b69\u5728\u6811\u4e0b\u7684\u68ee\u6797\u91cc\u9605\u8bfb\u3002"} +{"id": "2007876", "video_name": "cb1f1fe0-fd46-53cd-925a-0b46c3c5d8f7", "text": "\u7a81\u51fa\u6c14\u5019\u53d8\u5316\u5bf9\u7c89\u8272\u751f\u6001\u7cfb\u7edf\u5f71\u54cd\u7684\u526a\u8f91\u3002"} +{"id": "1005738", "video_name": "6995d967-169f-56e4-9409-f05341538038", "text": "\u4ece\u4e0a\u65b9\u62cd\u6444\u5e7f\u9614\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a\u5411\u52a0\u6c99\u57ce\u79fb\u8fd1\u3002"} +{"id": "7004916", "video_name": "e51fd1df-8808-5659-b3a5-7972317bbe2b", "text": "\u4ece\u84dd\u8272\u7897\u91cc\u624b\u62ff\u4e00\u4e2a\u6a59\u5b50\u3002"} +{"id": "0003278", "video_name": "3aab7342-6c67-55a3-892f-d7a2eaa2d4d4", "text": "\u4e00\u7247\u5de8\u5927\u7684\u5e73\u539f\uff0c\u82b1\u8349\u6811\u6728\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "6003208", "video_name": "5d0748bc-b913-5e34-b213-800892a53930", "text": "\u7537\u5b69\u6b63\u5728\u623f\u95f4\u91cc\u548c\u4ed6\u7684AI\u773c\u955cNova\u4ea4\u8c08\uff0c\u8c08\u8bba\u4ed6\u7684\u901a\u77e5\uff0c\u8fd9\u662f\u4e00\u4e2a\u52a8\u6f2b\u98ce\u683c\u7684\u65e9\u6668\u573a\u666f\u3002"} +{"id": "0006976", "video_name": "36150480-9682-53f1-a7e9-8628437d74ae", "text": "\u623f\u95f4\u91cc\u6709\u4e00\u7cfb\u5217\u5b8c\u597d\u4fdd\u5b58\u7684\u91d1\u5b57\u5854\u3002"} +{"id": "0003099", "video_name": "37001c45-8274-5b78-b1df-de8b6ce4f605", "text": "\u9f99\u5728\u5b83\u524d\u9762\u8df3\u821e\uff0c\u6709\u4e00\u4e2a\u751f\u65e5\u86cb\u7cd5\u3002"} +{"id": "3006992", "video_name": "543513ec-afc5-5a5f-9920-341d0087d031", "text": "\u54c8\u5229\u6ce2\u7279\u548c\u4f0f\u5730\u9b54\u4e00\u8d77\u559d\u5564\u9152\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "2005529", "video_name": "44ffd4aa-23cf-5738-bf23-1e7febf0eeba", "text": "\u5728\u68ee\u6797\u4e2d\u72ec\u81ea\u7761\u89c9\u7684\u753b\u9762"} +{"id": "1006597", "video_name": "78e3e81b-b498-5e10-a2a4-be571f283f0d", "text": "\u6355\u6349\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u963f\u5c14\u5351\u65af\u5c71\u8109\u5468\u56f4\u73a9\u800d\u548c\u63a2\u7d22\u81ea\u7136\u6240\u5e26\u6765\u7684\u5feb\u4e50\u548c\u597d\u5947\u5fc3\uff0c"} +{"id": "8002414", "video_name": "e1d44545-6b71-5a7a-8f29-34837cf4c557", "text": "\u6d88\u606f\uff1a\u7a97\u6237\u4e0a\u7684\u68ee\u6797\u5728\u65e5\u843d\u65f6\u5f88\u810f\uff0c4K\uff0c\u7f29\u5c0f\u753b\u9762\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u903c\u771f\u3002\u5b57\u4f53\uff1a\u73b0\u4ee3\u3002 \n\nNote:"} +{"id": "3005292", "video_name": "e3e215a5-cd1f-5812-95a5-f2c3b8df5cc9", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5b8c\u7f8e\u89d2\u8272\u8868\uff0c\u95ea\u7535\u6ce2\uff0c\u4e09\u7ef4\uff0cCGI\u5236\u4f5c\u7684\u6781\u7f8e\u3001\u8d85\u903c\u771f\u7684\u6df1\u8272\u76ae\u80a4\u975e\u6d32\u5973\u4eba\u4f5c\u4e3a\u8d5b"} +{"id": "2005197", "video_name": "4326df12-be04-5701-93a1-ad63f9a7b73c", "text": "\u964c\u751f\u4eba\u5728\u4e00\u4e2a\u65e7\u7bb1\u5b50\u91cc\u53d1\u73b0\u4e86\u4e00\u5f20\u85cf\u5b9d\u56fe\u3002"} +{"id": "4003543", "video_name": "a1f14de6-4c29-5a63-b12e-b57ed47731e0", "text": "\u8ddf\u968f\u6751\u6c11\u4eec\u7684\u65c5\u7a0b\uff0c\u4ed6\u4eec\u63ed\u5f00\u4e86\u56f4\u7ed5\u7740\u5e9f\u5f03\u706b\u8f66\u7684\u8c1c\u56e2\u3002"} +{"id": "1005594", "video_name": "66e6ac89-b290-5807-ab85-20e6abc3691a", "text": "1920\u5e74\u4ee3\u7684\u65e0\u58f0\u7535\u5f71\uff0c8\u6beb\u7c73\uff0c\u6a21\u7cca\uff0c\u8fc7\u671f\u7684\u80f6\u7247"} +{"id": "0006090", "video_name": "2670ab62-d06b-5795-8d62-9f386153bef8", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u8389\u8389\u548c\u9a6c\u514b\u65af\u3002\u4ed6\u4eec\u5728\u516c\u56ed\u91cc\u76f8\u9047\uff0c\u7b11\u58f0\u5728\u6e29\u6696\u7684"} +{"id": "6002727", "video_name": "ab79c874-bbf6-5af1-8ee9-2fbe6d2324ea", "text": "\u5de5\u5177\u4e50\u961f\u7684\u9f13\u624b\u5728\u94a2\u7434\u4e0a\u6f14\u594f\u3002"} +{"id": "4004438", "video_name": "5bc89688-74c0-5153-b83b-5bdf606a2ad6", "text": "\u6ce1\u6ce1\u5347\u5411\u9876\u90e8\uff0c\u88ab\u6324\u538b\u5e76\u7206\u88c2\uff0c\u6a59\u8272\u80cc\u666f\u3002"} +{"id": "0004626", "video_name": "0c353db9-d250-59fd-88c1-04125daf98e9", "text": "\u5b8c\u6210\u4e00\u5e45\u60ca\u4eba\u7684\u9910\u5385\u7ed8\u753b\u3002"} +{"id": "7003556", "video_name": "41a13dac-7b14-579b-aabf-4f9d0c446e38", "text": "\u7b2c\u56db\u5bc6\u5ea6\u751f\u7269\u5728\u7b2c\u4e09\u5bc6\u5ea6\u7684\u7a7a\u95f4\u4e2d\u7684\u5f62\u8c61\u3002"} +{"id": "2004449", "video_name": "c75899b5-4116-544c-a40a-5eae5e828226", "text": "\u4e00\u4e2a\u516c\u4e3b\u5750\u5728\u6cb3\u5cb8\u8fb9\uff0c\u8eab\u5904\u4e00\u4e2a\u5145\u6ee1\u4e86\u4ed9\u5973\u3001\u5c0f\u5996\u7cbe\u3001\u7cbe\u7075\u3001\u7f8a\u4eba\u3001\u5143\u7d20\u7cbe\u7075\u3001\u5deb"} +{"id": "8002815", "video_name": "c2f29e5c-339f-59d7-9845-b41a23ea8384", "text": "\u52a8\u6f2b\u5973\u5b69\u54ed\u6ce3\uff0c\u900f\u8fc7\u7a97\u6237\u671b\u7740\u96e8\u3002\u7535\u5f71\u822c\u7684\u3002\u7ec6\u8282\u4e30\u5bcc\u3002\u9ad8\u6e05\u3002"} +{"id": "3005403", "video_name": "87b4283a-44f0-567c-bd89-afae66c2ec73", "text": "\u573a\u666f\u7684\u80cc\u666f\u5f88\u6697\uff0c\u73b0\u5728\u5206\u6210\u4e24\u4e2a\u90e8\u5206\u3002\u4e0a\u534a\u90e8\u5206\u4ee3\u8868\u9ed1\u6697\uff0c\u4e0b\u534a\u90e8\u5206\u4ee3\u8868\u5149\u660e\u3002\u8981\u6e05\u6670\u660e\u786e\u5730\u8868"} +{"id": "6003621", "video_name": "3112208b-94ad-50c9-b04b-75cfefd744ee", "text": "\u5168\u606f\u9ea6\u514b\u62c9\u4f26F1\u5728\u718a\u718a\u706b\u7130\u4e2d\u6f02\u79fb\u3002"} +{"id": "2005975", "video_name": "c1b21b24-cedd-5363-b000-c56a6ff69535", "text": "\u53d1\u73b0\u795e\u5947\u7684\u4e66\uff1a\u8bbe\u8ba1\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u8ff0\u9a6c\u514b\u65af\u548c\u5df4\u8fea\u5728\u5de8\u5927\u7684\u6a61\u6811\u4e0b\u53d1\u73b0\u95ea\u95ea\u53d1\u5149\u7684\u4e66\u3002"} +{"id": "1003274", "video_name": "3c4069f8-574e-5da9-8805-05f4545a3f2c", "text": "\u6d77\u8c79\uff1a\u5728\u6d77\u5cb8\u8df3\u8dc3\u548c\u73a9\u800d\u3002"} +{"id": "3005251", "video_name": "dcdaa33a-dac4-55a6-b7bb-a9a0119e3fc6", "text": "\u8036\u7a23\u79fb\u52a8\u4ed6\u7684\u624b\u4f7f\u865a\u5e7b\u548c\u5fc3\u7075\u60c5\u7eea8K HDR\u3002"} +{"id": "1006837", "video_name": "7d00700d-8db5-58ed-a7f0-2e67d6e6ee81", "text": "\u56de\u5230\u672a\u6765\u98ce\u683c\u7684911\u5b50\u60c5\u8282"} +{"id": "7002105", "video_name": "999d3630-164f-5ad8-8f9d-20b134671164", "text": "\u773c\u524d\u5c3d\u662f\u5370\u5ea6\u548c\u8428\u63d0\u74e6\u7684\u690d\u682a\u884c\u3002"} +{"id": "0005634", "video_name": "1e77ebc5-edf9-5253-997b-eb7f305e7d48", "text": "\u4ed6\u662f\u4e00\u4e2a\u666e\u901a\u4eba\uff0c\u4f46\u6709\u7740\u975e\u51e1\u7684\u597d\u5947\u5fc3\u3002"} +{"id": "2004407", "video_name": "ec87e3d4-c73f-55ed-aee1-2b3823ef2a13", "text": "\u73b0\u4ee3\u98ce\u683c\u7684\u623f\u95f4\uff0c\u7537\u5b69\u542c\u7740lofi\u97f3\u4e50\u3002"} +{"id": "2006993", "video_name": "f6926ed0-d5f8-5897-bd6f-85f2057d925b", "text": "\u5973\u5b69\u8499\u7740\u8138\uff0c\u53ea\u9732\u51fa\u7075\u9b42\u7684\u773c\u775b\u5728\u704c\u6728\u4e1b\u4e0b\u3002\u6050\u6016\u3001\u9ed1\u6697\u300160\u5e74\u4ee3\u3001\u827a"} +{"id": "3004239", "video_name": "24afcc7b-e65e-5661-80db-968f826dfe32", "text": "\u5c0f\u7ec4\u8ba8\u8bba\u6216\u5408\u4f5c\u5728\u68ee\u6797\u4e2d\uff1a\u8bf4\u660e\u4e2a\u4eba\u805a\u5728\u4e00\u8d77\uff0c\u8ba8\u8bba\u4ed6\u4eec\u7684\u6700\u521d\u6050\u60e7\uff0c\u5e76\u5408\u4f5c\u4e86\u89e3\u68ee\u6797\u7684\u60c5\u51b5\u3002"} +{"id": "5001739", "video_name": "bc623382-832e-5a0c-8ba3-bb6ea15ace72", "text": "\u5728\u6d77\u4e0a\u7684\u4e00\u8258\u7f8e\u4e3d\u7684\u8001\u8239\u4e0a\uff0c\u6709\u4e00\u540d\u6d77\u76d7\u7ad9\u5728\u8239\u7684\u524d\u9762\u3002"} +{"id": "5001920", "video_name": "b79c9048-bb59-5198-8afa-dd798985e078", "text": "\u4e00\u540d\u7a46\u65af\u6797\u7537\u5b50\u6b63\u5728\u5411\u963f\u62c9\u7948\u7977\uff0c3D\u52a8\u753b\uff0c\u63d2\u56fe\u3002"} +{"id": "3003747", "video_name": "196ccb04-7f9d-5702-9a72-af37c3f0cd26", "text": "\u5728\u7535\u62a5\u9891\u9053\u4e0a\u4e3a\u90a3\u4e9b\u9700\u8981\u5728\u5bb6\u51cf\u80a5\u7684\u5973\u6027\u6dfb\u52a030\u79d2\u7684\u89c6\u9891\uff0c\u5305\u62ec\u5ba4\u5185\u548c\u5ba4\u5916\u7684\u953b\u70bc\u3002"} +{"id": "2005088", "video_name": "155fec8f-5ddc-59ae-b7b6-aa87f7a57f9b", "text": "\u6bd4\u5362\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5728\u6b64\u65f6\u629b\u5f00\u4e86\u6050\u60e7\uff0c\u4e00\u8d77\u8ffd\u8d76\u8c22\u5c14\u8f9b\u683c\u79bb\u5f00\u4e86\u3002"} +{"id": "2004424", "video_name": "54705ebf-d26d-5413-b563-a4a3e364c3da", "text": "\u751f\u6210\u4e00\u5f20\u53e4\u7f57\u9a6c\u89d2\u6597\u58eb\u7ade\u6280\u573a\u7684\u56fe\u50cf\uff0c\u5eb7\u83ab\u5fb7\u65af\u66fe\u5728\u6b64\u8fdb\u884c\u6218\u6597\u30028K\u771f\u5b9e\u56fe\u50cf\u3002"} +{"id": "0005145", "video_name": "158c92ea-6a22-5fc0-ac67-f6eabec684c0", "text": "\u7535\u5b50\u670b\u514b\u72ee\u5b50\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c4K\uff0c\u4f4e\u89d2\u5ea6\u3002"} +{"id": "1005876", "video_name": "6c20e05f-f296-58fb-a385-c3eac32eb27f", "text": "\u4ece\u524d\uff0c\u5728\u8272\u5f69\u7f24\u7eb7\u7684\u5a01\u6d1b\u7ef4\u5c14\u9547\u4e0a\uff0c\u4f4f\u7740\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb\uff0c\u6731\u4e3d\u548c\u4e54\u4f0a\u3002"} +{"id": "1006984", "video_name": "7fc3f260-c6e7-5551-8ab9-ee5c9b0a1e52", "text": "\u4e00\u5f20\u663e\u793a\u4e00\u53ea\u9a86\u9a7c\u4ece\u6469\u6d1b\u54e5\u5230\u6c99\u7279\u963f\u62c9\u4f2f\u7684\u4e16\u754c\u5730\u56fe\uff0c\u6301\u7eed10\u79d2\u949f\u3002"} +{"id": "4003724", "video_name": "2c8c6332-bfda-53db-8f83-b25bdef3d41e", "text": "\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u3001\u767d\u8272\u886c\u886b\uff0c\u5750\u5728\u7ebd\u7ea6\u4e00\u5bb6\u9152\u5e97\u5185\uff0c\u4e0e\u4e00\u4f4d\u5973\u58eb\u4e00\u8d77\u7b7e\u540d\u62cd\u7167\u3002"} +{"id": "4004351", "video_name": "aeed5621-7e9a-58e6-9c45-9b1edb92e6c2", "text": "\u5728\u8fd9\u4e2a\u5ba4\u5185\u623f\u5b50\u4e0a\u52a0\u4e0a\u8f7b\u67d4\u7684\u96fe\u6c14\uff0c\u5979\u5e94\u8be5\u662f\u7126\u70b9\u3002"} +{"id": "8001606", "video_name": "9e3e30a1-76e8-5ef1-9c0d-df6b94375b23", "text": "\u4ed6\u662f\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u5b69\uff0c\u5750\u5728\u68ee\u6797\u91cc\u61ca\u6094\u7740\u3002 \n\nSource sentence: She is studying Chinese because she wants to work in China someday. \n\n\u5979"} +{"id": "1005705", "video_name": "68e54a45-b53e-588f-9fd6-68a67ebb385b", "text": "\u5362\u8bfa\u74e6\u98ce\u683c\u7684\u73af\u7ed5\u5f0f\u7011\u5e03\u3002"} +{"id": "7004829", "video_name": "f47709e8-c044-5370-84fa-12fbea0baee6", "text": "\u5f02\u661f\u68ee\u6797\u4e2d\u7684\u5947\u602a\u6606\u866b"} +{"id": "1003240", "video_name": "3bb3eb9a-538e-57a7-a500-0508dfcf4ad3", "text": "\u58eb\u5175\u4eec\u4f4e\u5934\u770b\u7740\u6444\u50cf\u673a\uff0c\u6b63\u5728\u5efa\u9020\u575a\u56fa\u7684\u9632\u5fa1\u5de5\u4e8b\u3002"} +{"id": "4003513", "video_name": "d9231fe3-8ffc-5d7b-a918-661a0fc1e36c", "text": "\u5728\u7f8e\u56fd\u7684\u65b0\u5965\u5c14\u826f\uff0c\u72c2\u6b22\u8282\u4ee3\u8868\u7740\u6e38\u884c\u3001\u5962\u534e\u7684\u670d\u88c5\u3001\u7235\u58eb\u97f3\u4e50\u5145\u65a5\u8857\u5934\uff0c\u4ee5\u53ca\u8d85\u73b0"} +{"id": "8003425", "video_name": "d7474d0c-5efe-58a6-b881-3b342b57c2af", "text": "\u7a7f\u7740\u7bee\u7403\u7403\u8863\u7684\u9e3d\u5b50\u8ffd\u7740\u4e00\u8f86\u9ed1\u8272\u6c7d\u8f66\u3002"} +{"id": "3004933", "video_name": "b4981452-656d-5f92-af60-52a67e5b55b0", "text": "\u7231\u5fb7\u534e\u00b7\u7231\u4f26\u00b7\u5761\u4ece\u68fa\u6750\u91cc\u7ad9\u8d77\u6765\u4e86\u3002"} +{"id": "6002020", "video_name": "148cf786-c043-5b6a-9106-33e5b974b482", "text": "\u4e00\u7fa4\u9e21\u521a\u964d\u843d\u5728\u4e00\u4e2a\u5c9b\u5c7f\u4e0a\uff0c\u4f4d\u4e8e\u6d77\u6ee9\u4e0a\uff0c\u80cc\u666f\u662f\u4e00\u8258\u6c89\u8239\u3002"} +{"id": "1004869", "video_name": "59f6ba5f-efe8-5a39-bcc6-bbc1f5eb72ea", "text": "\u7167\u7247\u8fc7\u591a\u7684\u7ec6\u8282\uff0c\u6781\u5ea6\u6e05\u6670\u3001\u8003\u7a76\u7cbe\u7ec6\u7684\u6742\u5fd7\u8d28\u91cf\u7167\u7247\uff0c\u63cf\u7ed8\u672a\u6765\u897f\u90e8\u7a7a\u95f4\u7684\u6e38\u7267\u6c11"} +{"id": "8003325", "video_name": "7cbd6cb1-f173-5299-80ea-769fb7806d80", "text": "\u5728\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u6210\u5343\u4e0a\u4e07\u53ea\u866b\u5b50\u5728\u4e00\u4e2a\u6ef4\u7740\u7ea2\u8272\u6cb9\u6f06\u7684\u4eba\u7c7b\u9aa8\u67b6\u4e0a\u5543\u98df\u7ea2\u8089\u3002"} +{"id": "0003749", "video_name": "42b72669-90e4-5af2-9ad9-ed2bb9ffba5b", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u3001\u4f18\u96c5\u4e13\u4e1a\u3001\u53d7\u97f3\u4e50\u9a71\u52a8\u7684\u821e\u8005\u3002"} +{"id": "1006797", "video_name": "7c7d810b-8781-587f-8d2b-a75d153e634b", "text": "\u4e00\u6bb52004\u5e74\u7684\u89c6\u9891\uff0c\u8bb0\u5f55\u7740\u4e00\u4e2a46\u5c81\u7537\u4eba\u7684\u751f\u6d3b\u3002"} +{"id": "7004638", "video_name": "660debf6-917c-58e2-9777-e0778f320431", "text": "\u4e00\u4e2a\u548c\u5c1a\u5728\u65e5\u672c\u82b1\u56ed\u91cc\u51a5\u60f3\uff0c\u5468\u56f4\u6709\u6a31\u82b1\u7efd\u653e\u7684\u753b\u4f5c\uff0c\u91c7\u7528\u68b5\u9ad8\u7684\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "0006553", "video_name": "2e8101c7-fe4b-5b83-91a9-96afdf10368e", "text": "\u4e00\u4e2a\u9ed1\u6697\u3001\u5bc2\u9759\u7684\u6d77\u6d0b\u6df1\u5904\u3002\u7a81\u7136\uff0c\u4e00\u9053\u660e\u4eae\u7684\u95ea\u5149\u63ed\u793a\u4e86\u4e00\u6761\u751f\u7269\u53d1\u5149\u7684\u9c7f\u9c7c"} +{"id": "8003023", "video_name": "d09504bd-1c63-5ecf-8a14-f9034ddf7791", "text": "\u591a\u4e91\uff0c\u4e00\u68f5\u79cb\u6811\u6447\u66f3\u7740\u843d\u53f6\u3002"} +{"id": "6002464", "video_name": "af5dc38d-7c8e-580f-bcd9-899641937db4", "text": "\u90e8\u843d\u9762\u5b54\u5bf9\u4e00\u4e2a\u65e0\u8f9c\u7684\u5c0f\u53d7\u5bb3\u8005\u5c16\u53eb\uff0c\u6050\u6016\u6c1b\u56f4\u4ece\u5149\u3001\u9762\u5b54\u548c\u52a8\u4f5c\u4e2d\u4ea7\u751f\u3002"} +{"id": "1003617", "video_name": "42a2b811-cb12-5338-aac4-be6ccc60f64b", "text": "\u529e\u516c\u697c\uff0c\u62ff\u7740\u5de8\u9524\u7684\u7537\u4eba\u3002"} +{"id": "7004224", "video_name": "fc10921b-d58c-56e5-a60b-cb92d0b548fd", "text": "\u968f\u7740\u5b69\u5b50\u4eec\u7684\u6210\u957f\u548c\u8d70\u5411\u6210\u4eba\u4e16\u754c"} +{"id": "4003542", "video_name": "f39b1d5a-e6a1-553c-b949-f7e894ac25c5", "text": "\u73b0\u5b9e\u89c6\u9891\u5c06\u56fe\u50cf\u8f6c\u6362\u4e3a\u89c6\u9891\uff0c\u662f\u539f\u59cb\u7684\u79fb\u52a8HDR\u89c6\u9891\u3002"} +{"id": "2004867", "video_name": "05f00249-1988-5d31-940a-0049dc24b698", "text": "1930\u5e74\u4ee3\u7684\u5f71\u7247\u5c55\u793a\u6208\u6797\u5728\u4ed6\u7684\u529e\u516c\u684c\u524d\uff0c\u4e2d\u666f\uff0c\u5438\u7740\u70df\u6597\uff0c\u662f\u5386\u53f2\u5f71\u50cf\u3002"} +{"id": "5001015", "video_name": "6dcd6a3a-e5d8-5bf7-9973-a23977b9682c", "text": "\u56db\u53ea\u5c0f\u732b\u5728\u6c99\u53d1\u4e0a\u8df3\u8dc3\u3002"} +{"id": "4004128", "video_name": "c351e342-700e-52a7-be40-cd5ab44c78c4", "text": "\u5728\u6545\u4e8b\u4e66\u4e2d\u5bfb\u627e\u5929\u5802"} +{"id": "1004613", "video_name": "55cee417-e3e6-5e80-922b-29aee850c33a", "text": "\u5185\u71c3\u673a\u542f\u52a8\u7684\u89c6\u9891\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6003771", "video_name": "4a0de522-4170-5a95-b7a9-9118801a30b9", "text": "\u53ef\u7231\u7684\u5154\u5b50\u6234\u7740\u5e3d\u5b50\u5728\u82b1\u56ed\u91cc\u3002"} +{"id": "4004171", "video_name": "3fc3e298-5da3-529a-895d-f0c190f90872", "text": "\u5c06\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u628a\u660e\u4fe1\u7247\u585e\u8fdb\u4ed6\u7684\u5939\u514b\u53e3\u888b\u7684\u77ed\u573a\u666f\u5236\u4f5c\u6210\u52a8\u753b\u3002"} +{"id": "1005352", "video_name": "626826f0-534d-5ba1-ab38-6239a1f29702", "text": "\u73a9\u5177\u4eec\u6d3b\u8fc7\u6765\u7684\u591c\u665a"} +{"id": "3005414", "video_name": "0a72f194-4c69-58fb-9303-ed9ca74432bb", "text": "\u4e00\u6735\u82b1\u5f00\u653e\uff1a\u5c06\u4e00\u9897\u79cd\u5b50\u53d8\u6210\u4e00\u6735\u76db\u5f00\u7684\u82b1\uff0c\u5e76\u8ba9\u82b1\u74e3\u843d\u4e0b\uff0c\u4ee3\u8868\u751f\u547d\u7684\u5faa\u73af\u3002"} +{"id": "1004745", "video_name": "57de9ccb-5ce1-574c-8657-920509f6ff4b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\u5728\u7761\u89c9\u65f6\u8131\u6389\u5979\u7684\u8863\u670d\u3002"} +{"id": "2006007", "video_name": "7344c7d8-0bad-5732-a2a2-8be952243234", "text": "\u4e00\u5f20\u6e29\u99a8\u7cbe\u7f8e\u88c5\u9970\u7684\u5ba2\u5385\u7167\u7247\uff0c\u6709\u95ea\u4eae\u7684\u58c1\u7089\uff0c\u5723\u8bde\u6811\u548c\u7cbe\u7f8e\u7684\u793c\u7269\u5305\u88c5\u3002"} +{"id": "2003186", "video_name": "1a1149cb-9c09-5a60-978f-e5185c9c17fc", "text": "\u51b2\u6d6a\u3001\u51b2\u6d6a\u8005\u3001\u6ce2\u6d6a\u3001\u677f\u3001\u6d77\u6d0b\u3001\u65e5\u843d\u3002"} +{"id": "0003071", "video_name": "3677b3a9-73a2-5f7f-953b-cd3941378480", "text": "\u7535\u5f71\u300a\u6c99\u4e18\u300b\u7684\u60c5\u8282\uff0c\u53d1\u751f\u5728\u6c99\u6f20\u661f\u7403\u963f\u62c9\u57fa\u65af\u7684\u6218\u4e89\u4e2d\uff0c\u91c7\u7528\u97e6\u6069\u00b7\u5df4\u6d1b\u97e6"} +{"id": "1005142", "video_name": "5ec20fc6-ac15-5869-bbe8-3b8071df6ae5", "text": "\u5916\u661f\u7334\u5b50\u5728\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\u7684\u8349\u5730\u4e0a\u50cf\u9e7f\u4e00\u6837\u8df3\u8dc3\u3002"} +{"id": "7003936", "video_name": "f38d6f88-4231-5e98-8ef0-d9a1abeaaab0", "text": "\u83ab\u59ae\u5361\u00b7\u76d6\u52d2\u662f\u4e00\u90e8\u7f8e\u56fd\u7535\u89c6\u60c5\u666f\u559c\u5267\u300a\u516d\u4eba\u884c\u300b\u4e2d\u7684\u89d2\u8272\u3002\n\nSource sentence: The Eiffel Tower is a wrought-iron"} +{"id": "0004965", "video_name": "12651691-42d5-50ed-a429-2cd2ac855ba5", "text": "\u5723\u8bde\u8001\u4eba\u80cc\u7740\u793c\u7269\u5954\u8dd1\u3002"} +{"id": "6002359", "video_name": "ecc9aec1-a89e-5387-a408-5f343d825792", "text": "\u4e00\u4f4d\u6234\u7740\u6597\u7bf7\u7684\u8d85\u7ea7\u5973\u5b69\uff0c6\u5c81\uff0c\u98de\u884c\uff0c\u57ce\u5e02\u5904\u4e8e\u5371\u9669\u4e4b\u4e2d\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "4002483", "video_name": "f64bc198-390a-56ce-b4a7-5f65964f4ca6", "text": "\u5f53\u591c\u5e55\u964d\u4e34\uff0c\u4ed6\u4eec\u805a\u96c6\u5728\u95e8\u5eca\u4e0a\uff0c\u6c89\u6d78\u5728\u6811\u6797\u7684\u5b81\u9759\u4e2d\u3002"} +{"id": "2006338", "video_name": "fa10de79-0537-5d2f-9a57-ff4e3e79dc6b", "text": "\u8389\u8389\u610f\u8bc6\u5230\u6e05\u6d01\u7684\u91cd\u8981\u6027\u3002"} +{"id": "0003005", "video_name": "3576d06c-75f8-5aa2-9942-ce7cb5bce6a4", "text": "\u4e00\u4e2a\u540d\u53eb\u7f57\u6c49\u7684\u5e74\u8f7b\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u6d4f\u89c8\u5404\u79cd\u6570\u5b57\u8425\u9500\u5728\u7ebf\u8bfe\u7a0b\u3002\u4ed6\u770b\u8d77\u6765\u5bf9\u672a\u6765\u7684\u53ef\u80fd\u6027\u611f\u5230"} +{"id": "1004533", "video_name": "5440aa8a-daa2-55f1-95a6-d4e75dae1d99", "text": "\u4e00\u53ea\u673a\u5668\u72d7\u53d8\u6210\u4e00\u4e2a\u5927\u6bd4\u5229\u725b\u65af\u72ac\uff0c\u518d\u53d8\u6210\u4e00\u4e2a\u602a\u7269\u5361\u8f66\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "6004329", "video_name": "4ea81cba-9696-5710-a447-030500e67f7a", "text": "\u67f3\u6811\u5c0f\u6eaa\u8fd9\u5ea7\u5145\u6ee1\u6d3b\u529b\u7684\u53e4\u57ce\uff0c\u5750\u843d\u5728\u9ad8\u8038\u7684\u5b9d\u5854\u548c\u7e41\u534e\u7684\u5e02\u573a\u4e4b\u95f4\uff0c\u5c31\u5728\u8fd9\u91cc\u662f"} +{"id": "1005287", "video_name": "6132f213-9b8a-572c-9b77-49c9ab7766a7", "text": "\u5929\u7a7a\u4e2d\u843d\u4e0b\u5de8\u5927\u7684\u8c46\u5b50\u3002"} +{"id": "2007624", "video_name": "2fe56692-5a43-5a9b-8fae-b1c2055a12cd", "text": "\u5979\u5468\u56f4\u7684\u7ec7\u7269\u50cf\u5728\u6162\u52a8\u4f5c\u89c6\u9891\u4e2d\u4e00\u6837\u8f7b\u67d4\u5730\u79fb\u52a8\uff0c\u80cc\u666f\u4e2d\u7684\u5149\u5fae\u5fae\u95ea\u8000\uff0c\u5979\u7684\u53f3\u81c2\u8c03\u6574"} +{"id": "0004174", "video_name": "0490768a-e310-5eee-bb59-16e5e8746402", "text": "\u6708\u7403\u4e0a\u8bde\u751f\u4e86\u4e00\u4e2a\u9ed1\u8272\u7684\u86cb\uff0c\u76f4\u5f8416\u6beb\u7c73\uff0c\u9ed1\u767d\u8272\uff0c\u5199\u5b9e\u3002"} +{"id": "5001701", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "\u714e\u997c\u4e0a\u878d\u5316\u7684\u9ec4\u6cb9\u548c\u7cd6\u6d46"} +{"id": "0003989", "video_name": "013a299c-fcfb-5dd2-afbe-1521c8e7700f", "text": "\u4e00\u4f4d\u5361\u901a\u5723\u8bde\u8001\u4eba\u4ece\u4e3b\u89c2\u89c6\u89d2\u9012\u7ed9\u6211\u4e00\u4efd\u793c\u7269\u3002"} +{"id": "2006564", "video_name": "73a6b207-a203-55bf-ba83-102973e0a65c", "text": "\u6c14\u6ce1\u53e3\u9999\u7cd6\u91cc\u6709\u8718\u86db\uff0c\u7535\u5f71\u822c\u7684\u6162\u52a8\u4f5c\uff0c32K\u3002"} +{"id": "2004594", "video_name": "db050590-9fb4-5867-9164-9672bbe4463c", "text": "\u52a8\u753b\u5316\u6807\u5fd7\u5728\u5723\u8bde\u98ce\u666f\u4e2d\u901a\u8fc7\u7f29\u653e\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "8003841", "video_name": "80af0b52-58d6-5356-b4b0-7cfb80d1d3a0", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u89c6\u9891\u4e2d\u662f\u300a\u5929\u6c14\u4e4b\u5b50\u300b\u52a8\u6f2b\u4e2d\u7684\u7a57\u9ad8\u6b65\u884c\u7684\u573a\u666f\u3002"} +{"id": "2007850", "video_name": "1234a387-f3bd-56c6-9252-c5d510f1de9b", "text": "\u4e00\u6bb5\u7537\u4eba\u6bd4\u8f83\u897f\u5730\u90a3\u975e\u548c\u785d\u82ef\u5730\u5e73\u7684\u89c6\u9891\u3002"} +{"id": "0005646", "video_name": "1e99abd2-c062-532a-a2b0-85ba94076f50", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u8001\u864e\u795d\u613f\u5370\u5ea6\u677f\u7403\u961f\u4e00\u5207\u987a\u5229\u3002"} +{"id": "2006281", "video_name": "e0b94123-909a-5ddf-8da3-ec26ca6fdfae", "text": "\u5728\u6d1e\u7a74\u91cc\u7761\u7740\u7684\u662f\u4e00\u53ea\u5377\u66f2\u7684\u7ea2\u8272\u5e7b\u60f3\u9f99\u3002\u80cc\u666f\u662f\u6d1e\u5916\u7684\u84dd\u5929\u548c\u68ee\u6797\u3002\u5916\u9762\u6b63\u5728"} +{"id": "1005112", "video_name": "5e462f9c-7603-5f87-b528-a2f511680eb9", "text": "\u739b\u96c5\u662f\u4e00\u4e2a\u52a8\u753b\u5f62\u8c61\u4e2d\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "1003391", "video_name": "3e7d1e62-5cea-5559-be6c-a940ecdde1ad", "text": "\u60f3\u8c61\u4e00\u4e2a\u70ed\u95f9\u7684\u573a\u666f\uff0c\u8349\u5730\u4e0a\u6709\u9a6c\u5339\u5954\u8dd1\uff0c\u9633\u5149\u9ad8\u60ac\u3002\u5b69\u5b50\u4eec\u9a91\u9a6c\u6216\u68b3\u7406\u9a6c"} +{"id": "8002150", "video_name": "3d1dafab-8fb8-57ed-89ac-71fa8e66e57e", "text": "\u5e74\u8f7b\u7537\u5b69\u5728\u7194\u5ca9\u6cb3\u524d\u5f39\u5409\u4ed6\uff0c\u6444\u50cf\u673a\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "3006677", "video_name": "dc7cf5b7-a306-5afd-8368-ee06595e2844", "text": "\u5728\u7530\u91ce\u91cc\u4e00\u6761\u6ce5\u571f\u8def\u4e0a\u98de\u7fd4\u7684\u8774\u8776\u3002"} +{"id": "0003987", "video_name": "01390711-cd14-5856-bd1d-eff4b6a50bb6", "text": "\u5b9d\u9a6cM5\u7ade\u6280\u7248\u5728\u68ee\u6797\u4e2d\u884c\u9a76\u3002"} +{"id": "8001768", "video_name": "7a381050-2ec7-5b4f-b017-57f0bb5451e6", "text": "\u4e00\u9897\u8bb0\u5fc6\u82af\u7247\u6b63\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "0005508", "video_name": "1c07a7c0-1396-5ab2-ba18-a58363b0d0dd", "text": "\u6211\u7684\u672a\u6765\u611f\u6362\u5c3f\u5e03\u57ab\u5347\u964d\u5f0f\u9ad8\u7aef\u751f\u6d3b\u673a\u5668\u4eba\u52a9\u624b\u3002"} +{"id": "2005929", "video_name": "8d7f3846-b217-5dbc-b3d2-bccb4523d24c", "text": "\u57282070\u5e74\u5de6\u53f3\uff0c\u516c\u5bd3\u5927\u697c\u5931\u706b\u4e86\u3002"} +{"id": "6004523", "video_name": "6972221c-b062-5c7d-9a4e-15d9b896cb3c", "text": "\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u7535\u5f71\u4e2d\u5173\u4e8e\u62ff\u7834\u4ed1\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "4002424", "video_name": "e26e8fc0-501a-55af-a5c3-5314870966bb", "text": "\u5409\u7965\u7269\u53eb\u5c0f\u5434\u54e5\u3002\u52aa\u529b\u5de5\u4f5c\u3002"} +{"id": "7002176", "video_name": "0840947f-f475-5e43-ad6c-643e675b59a7", "text": "\u4eba\u7fa4\u7ad9\u5728\u6d77\u6ee9\u4e0a\u770b\u65e5\u843d\u3002"} +{"id": "6004713", "video_name": "4d744707-afd8-56e7-89f5-7e7fcf1ba482", "text": "\u8001\u677f\u5411\u4ed6\u7684\u56e2\u961f\u4ecb\u7ecd\u4e86\u4e00\u4e2a\u7537\u4eba\u3002"} +{"id": "2007136", "video_name": "a77014f6-6578-5711-ba54-ed5d2eb4e6ab", "text": "\u53ef\u7231\u7684\u732b\u54aa\u88ab\u60f3\u8c61\u6210\u4eba\u7c7b\u5237\u7259\uff0c\u6bd4\u4f8b\u4e3a1\uff1a1.3\u3002"} +{"id": "2004453", "video_name": "a1f899ef-08e3-5b23-a3c8-dfc20e9f57f6", "text": "\u592a\u7a7a\u56fe\u50cf\u805a\u7126\u5728\u6708\u7403\u4e0a\uff0c\u80cc\u666f\u5e7f\u9614\u3002"} +{"id": "3004504", "video_name": "ffc9bb4c-3cfc-5c40-abdd-8dd9409f64f1", "text": "\u6c14\u5019\u53d8\u5316\u5bfc\u81f44K\u5e72\u67af\u7684\u6cb3\u6d41\u3002"} +{"id": "8002755", "video_name": "8cf26fba-9ab0-5a8e-a6ff-8db0a02e882a", "text": "\u4e00\u5ea7\u8272\u5f69\u9c9c\u8273\u7684\u57ce\u5e02\u751f\u6d3b\uff0c\u4fef\u77b0\u666f\u8c61\u3002\u4fe1\u606f\uff1aFIRAT\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005531", "video_name": "65c80c4f-9cec-5385-b5de-38a3280fb864", "text": "\u4ece\u4e00\u672c\u300a\u8bfa\u5409\u5c14\u00b7\u5df4\u62c9\u683c\u54c8\u300b\u6253\u5f00\u7684\u5b81\u9759\u753b\u9762\u5f00\u59cb\uff0c\u8fc7\u6e21\u5230\u5386\u53f2\u60a0\u4e45\u7684\u4f0a\u65af\u5170\u5efa\u7b51\u3002"} +{"id": "0006204", "video_name": "283bcd91-db42-53b3-8bfb-cf78b9c2109e", "text": "\u5750\u5728\u4e00\u628a\u8eba\u6905\u4e0a\uff0c\u80cc\u540e\u6709\u4e00\u76c6\u76c6\u666f\u6811\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004892", "video_name": "68f8be3a-6cd8-5491-aea5-1626819e6838", "text": "\u5c0f\u4f01\u9e45\u5728\u767d\u6c99\u6ee9\u4e0a\u8d70\u8def\u3002"} +{"id": "7004483", "video_name": "a234d2d8-ba14-5d9d-b26b-09ea4a4d40c1", "text": "\u6731\u7279\u5170\u6d77\u6218\u4e2d\u65e0\u754f\u8230\u76f8\u4e92\u653b\u51fb\u3002"} +{"id": "4004846", "video_name": "5d3a54cd-08d1-555e-9e9e-8cac62b3dcca", "text": "\u4e00\u500b\u6709\u6c99\u7058\u548c\u6d77\u6d6a\u7684\u590f\u5a01\u5937\u6d77\u7058\u3002\u4fe1\u606f\uff1aZAST\uff08\u5b57\u9ad4\uff1a\u73fe\u4ee3\uff09"} +{"id": "1005937", "video_name": "6d1f9538-57b4-5d09-a0a8-0e4b00f05571", "text": "\u6c1b\u56f4\u7ec6\u8282\uff1a\u5468\u56f4\u7684\u73af\u5883\u7b3c\u7f69\u5728\u9ed1\u6697\u4e2d\uff0c\u53ea\u6709\u5fae\u5f31\u7684\u6708\u5149\u4e3a\u573a\u666f\u589e\u6dfb\u4e86\u4e00\u79cd\u8d85\u51e1\u8131"} +{"id": "3004409", "video_name": "bb0343ff-a455-555a-a342-a3edc9fc0026", "text": "\u76ae\u514b\u65af\u706f\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0004157", "video_name": "0450d5f9-61fe-5d1d-840f-feb9b25d8f2c", "text": "\u5728\u4e00\u573a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\uff0c\u8036\u7a23\u6253\u4e86\u5723\u8bde\u8001\u4eba\u4e00\u62f3\u3002\u5468\u56f4\u7684\u4eba\u8df3\u821e\uff0c\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "4002361", "video_name": "dda68222-e3ff-5f95-b6bd-92f09e78acae", "text": "\u4e24\u4e2a\u673a\u5668\u4eba\u91d1\u6208\u9c81\u4e9a\uff0c\u62e5\u6709\u4e09\u4e2a\u5934\uff0c\u624b\u81c2\u548c\u624b\u3002"} +{"id": "6004704", "video_name": "d4aaf9bd-8c7e-5ede-8bbf-7b5f109bb4d3", "text": "\u5927\u8c61\u5728\u5176\u81ea\u7136\u6816\u606f\u5730\u4e2d\uff0c\u88ab\u975e\u6d32\u7684\u5927\u8349\u539f\u6216\u8302\u5bc6\u7684\u4e1b\u6797\u5305\u56f4\u7740\u3002"} +{"id": "4004313", "video_name": "f052052c-c3a5-57b6-8c84-d5385405ddaf", "text": "\u4e00\u540d\u7537\u5b50\u5728\u5546\u5e97\u91cc\u5356\u85af\u7247\uff0c\u4ed6\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002"} +{"id": "1004653", "video_name": "56893b7a-30b1-596a-8eab-5714d4b5700a", "text": "\u8d85\u7f8e\u7684\u9ad8\u6e05\u68ee\u6797\uff0c\u6709\u5f88\u591a\u52a8\u7269\u5728\u8d70\u52a8\u3002\n\nSource sentence: I am excited to try the new restaurant that just opened in town. \n\u6211\u5f88\u5174\u594b\u53bb\u5c1d\u8bd5"} +{"id": "2006188", "video_name": "f33ab51b-e920-5a6e-8f75-250942841ee9", "text": "\u4e00\u53ea\u5c0f\u732b\u5728\u4e00\u4e2a\u6709\u4e09\u9762\u5899\u7684\u623f\u95f4\u91cc\u73a9\u800d\u8df3\u8dc3\u3002"} +{"id": "4004312", "video_name": "147eab6a-0d35-587f-8f89-184424e556e3", "text": "\u5c0f\u5973\u5b69\u5728\u5b66\u6821\u5b66\u4e60\uff0c\u7136\u540e\u73a9\u800d\uff0c\u63a5\u7740\u8bfb\u4e66\uff0c\u7136\u540e\u5750\u516c\u8f66\u56de\u5bb6\uff0c\u4e0e\u5bb6\u4eba\u5171\u8fdb\u665a\u9910\uff0c\u6700\u540e\u53bb\u7761"} +{"id": "1006342", "video_name": "740f18d2-3d06-584e-a883-f3e6c21cd6b3", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u53cd\u4e4c\u6258\u90a6\u793e\u4f1a\u4e2d\uff0c\u4eba\u4eec\u6234\u7740\u5fae\u7b11\u9762\u5177\uff0c\u5728\u53cd\u4e4c\u6258\u90a6\u72c2\u6b22\u8282\u4e0a\u7a7f\u7740\u534e"} +{"id": "4004504", "video_name": "45314f0b-8c9b-5604-83e8-446e08df0d98", "text": "\u5b69\u5b50\u5728\u5bb6\u505a\u529f\u8bfe\u3002"} +{"id": "4003945", "video_name": "917d6977-47de-57cd-8b87-27af8542e893", "text": "\u4e00\u7fa4\u8001\u592a\u592a\u5728\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5927\u6559\u5802\u91cc\u7948\u7977\u3002"} +{"id": "1003498", "video_name": "40bc7c9a-f7b9-5ba0-aa16-e93307b1efe6", "text": "CCD \u626b\u63cf\u76f8\u673a\u626b\u63cf\u79fb\u52a8\u7684\u76d2\u5b50\u3002"} +{"id": "6002731", "video_name": "c4cc8d0d-4529-5dea-b431-3a63640b75b1", "text": "\u521b\u4f5c\u4e00\u5e45\u771f\u5b9e\u5199\u5b9e\u7684\u591a\u841d\u897f\u00b7\u76d6\u5c14\u8096\u50cf\uff0c\u6355\u6349\u5979\u7a7f\u7740\u9c9c\u8273\u7684\u84dd\u8272\u65b9\u683c\u5462\u88d9\u5b50"} +{"id": "0004548", "video_name": "0b13c4ed-4930-5234-9cf9-6b97716499f6", "text": "\u7ea6\u7ff0\u8d70\u51fa\u673a\u573a\u822a\u7ad9\u697c\uff0c\u5468\u56f4\u662f\u964c\u751f\u57ce\u5e02\u7684\u70ed\u95f9\u548c\u55a7\u56a3\u3002"} +{"id": "8002399", "video_name": "de9a78c1-9145-57a7-a76c-ceba38e4d833", "text": "\u5e74\u8f7b\u7684\u8fbe\u8299\u59ae\u00b7\u57fa\u56e0\u65af\u7a7f\u7740\u4eae\u7247\u5916\u5957\u548c\u672a\u6765\u611f\u955c\u7247\u592a\u9633\u955c\uff0c\u7ad9\u5728\u4e00\u4e2a\u591c\u665a\u70e7\u6bc1"} +{"id": "3006111", "video_name": "dfe4d1d5-e7d1-5529-a570-883c133f483f", "text": "\u901f\u5199\u7eb9\u8eab\u98ce\u683c\uff0c\u5feb\u901f\u7684\u821e\u6b65\uff0c\u5e26\u7740\u8ba9\u6211\u60f3\u8d77\u5931\u5fc6\u7684\u4e1c\u897f\uff0c8k\u9ad8\u8d28\u91cf\u3002"} +{"id": "4002416", "video_name": "d35c2c08-8645-5f43-98b2-0f4261edadc4", "text": "\u9ed1\u767d\u8001\u7535\u5f71\uff0c\u5173\u4e8e\u5206\u5f62\u5de8\u578b\u57ce\u5e02\u4e16\u754c\uff0c\u5728\u7535\u5f71\u822c\u7684\u573a\u666f\u4e2d\u98de\u884c\u3002"} +{"id": "7004014", "video_name": "9b459723-3838-5e65-9b78-eb9e5a848de2", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u68ee\u6797\u91cc\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5448\u73b0\uff0c\u4f46\u6c1b\u56f4\u8f83\u4e3a\u9ed1\u6697\u3002"} +{"id": "7003375", "video_name": "8e6fe553-3a87-54b2-b21d-e4972d6e6d4a", "text": "\u5973\u53a8\u5e08\u5728\u53a8\u623f\u91cc\u5de5\u4f5c\u7684\u7279\u5199\u955c\u5934\uff0c4K\uff0c\u6d45\u666f\u6df1\uff0c\u80cc\u666f\u4e3a\u7ebd\u7ea6\u591c\u666f\uff0c4K\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "1003210", "video_name": "3b260b95-8492-5ee2-86f8-5310a90fb319", "text": "\u590f\u5b63\u6709\u4e0d\u540c\u6b3e\u5f0f\u7684\u8fde\u8863\u88d9\uff0c\u989c\u8272\u6709\u7c89\u8272\u3001\u9ec4\u8272\u3001\u84dd\u8272\u548c\u7eff\u8272\u3002"} +{"id": "7002771", "video_name": "4b4d2764-fc2a-56a4-8631-4c9bd88b6678", "text": "\u4e00\u4e2a\u4eba\u4ee5\u7b2c\u4e00\u4eba\u79f0\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "6002955", "video_name": "e536a644-c025-5b0e-99a9-faaa2036de2c", "text": "\u4e00\u9053\u7ea2\u8272\u95ea\u7535\u7a7f\u8fc7\u5c4f\u5e55"} +{"id": "1003165", "video_name": "3a4aeb3c-b8df-5659-a85c-b60adb2db05a", "text": "\u5728\u4e00\u4e2a\u6751\u5e84\u91cc\uff0c\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "0004886", "video_name": "10e65cd4-fcd0-5870-966c-65747107a4d4", "text": "\u60f3\u8c61\u4e00\u4e0b\u98ce\u8d77\uff0c\u6811\u53f6\u5728\u5f02\u4e16\u754c\u822c\u7684\u821e\u8e48\u4e2d\u65cb\u8f6c\uff0c\u9b3c\u9b42\u822c\u7684\u58f0\u97f3\u5316\u4f5c\u82cd\u767d\u7684"} +{"id": "0005575", "video_name": "1d3c398b-ae5d-551b-8ca1-0235658b28ae", "text": "\u706b\u5f71\u5fcd\u8005\u6f29\u6da1\u9e23\u4eba\u5728\u4e00\u7897\u62c9\u9762\u4e0a\u7528\u9910\uff0c\u4e00\u5fc3\u5802\u98ce\u683c\uff0c\u6dfb\u52a05\u79d2\uff0c\u9ad8\u6e05\u3002"} +{"id": "3003507", "video_name": "13a4c4cc-d35d-50a0-8fa3-61df8aa47af8", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u89c2\u770b\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u5e76\u5fae\u7b11\u3002"} +{"id": "1005662", "video_name": "67fd47d6-1e61-514a-b7de-d493e224da6f", "text": "\u4e00\u95f4\u5145\u6ee1\u53e4\u8463\u5a03\u5a03\u7684\u623f\u95f4\u3002\u4ed6\u4eec\u7684\u773c\u775b\u4f3c\u4e4e\u8ddf\u7740\u4ed6\u8d70\uff0c\u4ed6\u4eec\u7684\u74f7\u8d28\u9762"} +{"id": "6002314", "video_name": "7732dc38-1ff4-5e2b-b09f-41db4d066e4c", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7684\u8096\u50cf\uff0c\u8eab\u7a7f\u516c\u5143\u524d100\u5e74\u7684\u7f57\u9a6c\u767e\u592b\u957f\u670d\u88c5\u3002"} +{"id": "7004935", "video_name": "01e501d1-d7fa-5fa2-861d-834514cb7093", "text": "\u6a21\u7279\u7a7f\u7740\u767d\u8272\u88d9\u5b50\u8d70\u5728T\u53f0\u4e0a\uff0c\u4e00\u4e0d\u5c0f\u5fc3\u6454\u4e86\u4e00\u8de4\u3002"} +{"id": "3005546", "video_name": "f073e54e-276c-5357-8832-e1ff9d9bc300", "text": "\u53ef\u80fd\u9700\u8981\u4e00\u4e2a\u5c0f\u80cc\u5305\u6765\u643a\u5e26\u3002"} +{"id": "6003041", "video_name": "25dadbed-9084-585b-9742-bea4da03b6f3", "text": "\u4ed6\u7684\u6559\u5bfc\u5f3a\u8c03\u540c\u60c5\u5fc3\u3001\u6b63\u5ff5\u4ee5\u53ca\u57f9\u517b\u4e00\u4e2a\u5584\u826f\u7684\u5fc3\u7075\u3002"} +{"id": "6004233", "video_name": "18bd9d6e-81b6-58e2-ae96-43abf0d3844e", "text": "\u5f00\u573a\u955c\u5934\uff1a\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u90ca\u533a\u793e\u533a\uff0c\u548c\u5e73\u5b89\u5b81\u3002\u8d85\u771f\u5b9e\u7684\u753b\u9762\u3002"} +{"id": "7002971", "video_name": "ff5d1687-ef74-5278-9182-58c2974d2783", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u653e\u5b66\u540e\u8d70\u5728\u8302\u5bc6\u7684\u6811\u6797\u91cc\uff0c\u53d1\u73b0\u4e86\u4e00\u53ea\u53d7\u4f24\u7684\u5e7c\u72fc\u3002\u5979\u6162\u6162\u5730\u8d70\u8fc7\u53bb"} +{"id": "3006928", "video_name": "9a827f7b-37de-534f-849f-14d61b60e1e8", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u6027\u611f\u7684\u5361\u901a\u89d2\u8272\u9762\u5bf9\u9762\u3002"} +{"id": "3006367", "video_name": "be4d4fc2-300a-5083-9a71-887507eabcd0", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u5149\u901f\u52a8\u6f2b\u98ce\u683c\u4e2d\u4f7f\u7528\u5200\u5251\u3002"} +{"id": "3004593", "video_name": "23ff54bb-b47e-501c-8ba9-a7fd7c68c06e", "text": "\u4e0b\u96e8\u4e86\uff0c\u5728\u5c0f\u6728\u5c4b\u7684\u5c4b\u9876\u4e0a\u6ef4\u7b54\u6ef4\u7b54\u5730\u54cd\u7740\uff0c\u5b83\u6d17\u8d70\u4e86\u6c61\u57a2\uff0c\u540c\u65f6\u5728\u9ed1\u6697\u7684\u68ee"} +{"id": "3003636", "video_name": "9eece4e8-df81-554d-b71d-0326f3cce840", "text": "\u53ef\u7231\u7684\u5357\u74dc\u706f\uff0c\u5927\u5c0f\u4e0d\u4e00\uff0c\u60ac\u6302\u5728\u8def\u4e24\u65c1\u7684\u6811\u4e0a\uff0c\u5973\u5b69\u6ed1\u7740\u6ed1\u677f\uff0c\u5411\u524d\u6ed1\u52a8\u65f6\uff0c\u5357"} +{"id": "2003097", "video_name": "5ca9462f-9d4d-5480-855b-c5d8e3ac3a79", "text": "\u8bb8\u591a\u4eba\u4ee5\u50cf\u7d20\u827a\u672f\u98ce\u683c\u8df3\u821e\u3002"} +{"id": "6004943", "video_name": "4481e770-a4dc-52b8-9271-4fe8049ce634", "text": "\u5e74\u5e74\u5c81\u5c81\u82b1\u76f8\u4f3c\uff0c\u5c81\u5c81\u5e74\u5e74\u4eba\u4e0d\u540c\u3002\u6625\u98ce\u4e0d\u5ea6\u7389\u95e8\u5173\uff0c\u4f55\u5904\u5439\u82b1\u843d\u8c01\u5bb6\uff1f\u9f99\u98de\u51e4\u821e"} +{"id": "6004310", "video_name": "3f0b4db6-5ae8-50a5-ae3c-928442494d11", "text": "\u7ef4\u6770\u00b7\u8c22\u5361\u5c14\u00b7\u6c99\u739b\u4e0e\u4ed6\u7684\u56e2\u961f\u5e86\u795d\u91cc\u7a0b\u7891\u65f6\u7684\u7167\u7247\u3002"} +{"id": "3004679", "video_name": "3fc36932-20bf-5c13-bc49-5ec82b03dc5f", "text": "\u8428\u62c9\u56e0\u4e3a\u6050\u60e7\u7684\u5e7b\u89c9\u800c\u5728\u9646\u5730\u4e0a\u6655\u5012\u4e86\u3002"} +{"id": "2004552", "video_name": "259dbda2-bc08-56b2-a69f-aa07fcf9069f", "text": "\u6765\u6e90\u4e8e\u5723\u7ecf\uff0c\u516c\u5143\u524d1500\u5e74\uff0c\u4e00\u4e2a\u7537\u4eba\uff0c\u7edf\u6cbb\u8005\uff0c\u7ad9\u5728\u9ad8\u697c\u4e0a\uff0c\u4fef\u89c6\u7740\u4ed6\u4e0b\u9762\u7684\u57ce\u5e02\u3002"} +{"id": "7003415", "video_name": "cecc5a30-9137-5cfe-8962-1674688c89ad", "text": "\u673a\u5668\u4eba\u8fdc\u79bb\u7740\u706b\u7684\u672a\u6765\u5b9e\u9a8c\u5ba4\u3002"} +{"id": "6002895", "video_name": "14f9016a-96d4-5344-bec7-c4a8d5bb82e3", "text": "\u84dd\u8272\u98de\u673a\u5728\u7a7a\u4e2d\u98de\u884c\u7684\u52a8\u753b\u3002"} +{"id": "1004434", "video_name": "51fe7c65-2570-59f8-a9f1-fff777ee1bb3", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u6708\u7403\u4e0a\u884c\u8d70\uff0c\u661f\u661f\u548c\u95ea\u8000\u7684\u6d41\u661f\u5145\u6ee1\u4e86\u6574\u4e2a\u7a7a\u95f4\u3002"} +{"id": "2006104", "video_name": "80d64241-1061-5af1-8c60-21cd6f9691d0", "text": "\u4eba\u4eec\u5728\u4e0a\u6d77\u7684\u8857\u5934\u665a\u4e0a\u8df3\u7535\u5b50\u97f3\u4e50\u821e\u66f2\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "0004801", "video_name": "0f589ed5-f200-5b60-a9ff-8982bc23805c", "text": "\u6708\u4eae\u53d8\u6210\u4e86\u7ea2\u8272\uff0c\u661f\u661f\u843d\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "4002933", "video_name": "8887b5c3-ebba-5dbd-a32a-cbceae482483", "text": "\u5c06\u4e00\u4e2a\u61d2\u6c49\u4e0e\u95f2\u7f6e\u7684\u94b1\u8fdb\u884c\u6bd4\u8f83\uff0c\u4e8c\u8005\u90fd\u6ca1\u6709\u5f97\u5230\u6295\u8d44\u3002"} +{"id": "2006349", "video_name": "7b95bd95-d031-511f-9c4a-87418222ca57", "text": "\u975e\u5e38\u60ca\u4eba\u548c\u7f8e\u4e3d\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u9e1f\u513f\u5728\u6b4c\u5531\u3002"} +{"id": "0005542", "video_name": "1c85e4bd-d87d-5130-af26-534fce9446ff", "text": "\u516c\u9e21\u53e3\u4e2d\u53fc\u7740\u4e00\u4e2a\u88c5\u6ee1\u91d1\u5e01\u7684\u888b\u5b50\uff0c\u6cbf\u7740\u8def\u8d70\u53bb\u3002"} +{"id": "6002214", "video_name": "48fdfe45-b385-505f-adfb-56416bef2030", "text": "\u5357\u65b9\u516c\u56ed\u91cc\u7684Manbearpig\u5728\u68ee\u6797\u4e2d\u5f39\u5409\u4ed6\u8df3\u821e\u3002"} +{"id": "1003741", "video_name": "45100666-a2b2-5536-8a4f-086c0c3e6c35", "text": "\u4e00\u4e2a\u7f8e\u56fd\u7537\u5b69\u5728\u7f8e\u4e3d\u80cc\u666f\u4e0b\u5531\u6b4c\u3002"} +{"id": "2005254", "video_name": "9f94ec39-b8bc-571e-9723-142613ca9834", "text": "\u4e24\u4e2a\u4eba\u7a7f\u8fc7\u8857\u9053\u7684\u89c6\u9891"} +{"id": "3005255", "video_name": "e76706fa-95a5-5f05-88cd-60cd3003e5c8", "text": "scattered everywhere. \n\n\u4ed6\u4eec\u7684\u623f\u5b50\u603b\u662f\u4e71\u4e03\u516b\u7cdf\u7684\uff0c\u8863\u670d\u968f\u5904\u4e71\u653e\uff0c\u7897\u789f\u672a\u6d17\uff0c\u7eb8\u5f20\u5230\u5904\u6563"} +{"id": "7003583", "video_name": "6d9cc1bd-06a8-5aa5-9713-2f7b1e229e1e", "text": "\u4e00\u4e2a\u8868\u793a\u65f6\u95f4\u3001\u91d1\u94b1\u548c\u80fd\u91cf\u7684\u65e0\u9650\u5faa\u73af\u3002"} +{"id": "4003712", "video_name": "787a20da-cd6b-57ea-a2cd-b61acc8c2158", "text": "\u5361\u6234\u73ca\u5bb6\u65cf\u6b63\u5728\u63a5\u7ba1\u4e16\u754c\u3002"} +{"id": "2005711", "video_name": "29893ef7-7537-537e-bc74-f458b72511fa", "text": "\u521b\u5efa\u6811\u548c\u7011\u5e03\u7684\u56fe\u50cf\u3002"} +{"id": "6004423", "video_name": "f32a47cd-3f48-58c5-8c88-66d920b96241", "text": "\u4e00\u4e2a\u5728\u68ee\u6797\u5730\u9762\u4e0a\u722c\u884c\u7684\u866b\u5b50\uff0c\u903c\u771f\u7684\u3001\u7535\u5f71\u822c\u7684\u6050\u6016\u3002\n\nSource sentence: The teacher explained the homework assignment in great detail to the students. \n\u8001"} +{"id": "7002952", "video_name": "740a74af-ef70-5464-828a-bf274d8b3c87", "text": "\u751f\u6210\u4e00\u4e2a\u6d1e\u7a74\u5185\u7ed8\u5236\u7684\u72e9\u730e\u573a\u666f\u56fe\u50cf\uff0c\u4ee3\u8868\u52a8\u6001\u7684\u52a8\u7269\u548c\u730e\u4eba\uff0c\u4f7f\u7528\u571f\u8910\u8272\u8c03\u3002"} +{"id": "3005946", "video_name": "f201bcdb-4f4f-5d6f-a73b-88c2ee175cc3", "text": "\u4e00\u67b6\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3001\u6709\u5f69\u8679\u3001\u8d85\u9ad8\u6e05\u7684\u98de\u884c\u5df4\u58eb\u3002"} +{"id": "5001814", "video_name": "c124126d-7108-55f4-829c-0345bdf4251e", "text": "\u89c6\u9891\u663e\u793a\uff0c\u8f9b\u83f2\u7f57\u6ce2\u5c14\u5e02\u6b63\u5728\u7740\u706b\u3002"} +{"id": "0005772", "video_name": "21010ee4-01d4-5d2d-a7b3-96a9f9df1735", "text": "\u6210\u719f\u7684\u9ea6\u7530\uff0c\u957f\u957f\u7684\u830e\u6746\uff0c\u4e30\u6ee1\u7684\u7a57\u5b50\uff0c\u84ec\u677e\u7684\u5916\u8868\uff0c\u6df1\u7eff\u8272\u7684\u9ea6\u7530\uff0c\u9633"} +{"id": "3003814", "video_name": "673fcc5b-fcde-55d7-91c7-6d78d3da201e", "text": "\u4e13\u4e1a\u9ea6\u514b\u98ce\u548c\u8033\u673a\uff0c\u80cc\u666f\uff1a\u8fdc\u5904\u7684\u91d1\u53d1\u5973\u6b4c\u624b\uff0c\u4fe1\u606f\uff1aNADYA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007241", "video_name": "2eebf653-35b9-5ffc-b44b-1fff83444ba8", "text": "\u8bd7\u7bc7121\u53f7\u56e0\u4f20\u9012\u4fe1\u4efb\u4e0a\u5e1d\u3001\u7279\u522b\u662f\u5728\u56f0\u5883\u548c\u56f0\u96be\u65f6\u671f\u7684\u5e0c\u671b\u4fe1\u606f\u800c\u95fb\u540d\u3002\u5b83\u5728\u53d7\u82e6\u7684"} +{"id": "3005700", "video_name": "57439cde-e085-5786-85bb-22841d7ab60c", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u753b\u7b14\u3002\u4fe1\u606f\uff1aVaco\u5de5\u4f5c\u5ba4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6004782", "video_name": "2fc8f91e-ad80-5851-a8e3-550766ef57a0", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u5728\u52a8\u6f2b\u4e2d\u83b7\u5f97\u8bfa\u8d1d\u5c14\u5956\u7684\u63cf\u7ed8\uff0c8K\uff0cStudio Trigger\u98ce\u683c\u3002"} +{"id": "3003493", "video_name": "d5383e77-a087-5662-96bc-d629d98db69b", "text": "\u519c\u6c11\u6361\u8d77\u9505\uff0c\u5e26\u56de\u5bb6\u7ed9\u4ed6\u59bb\u5b50\u3002"} +{"id": "8001823", "video_name": "76d85d8d-cb82-56a5-8980-5a3be48a8b8a", "text": "\u4e00\u5ea7\u4e2d\u56fd\u5f0f\u5efa\u7b51\u5728\u767d\u5929\u9633\u5149\u666e\u7167\u4e0b\uff0c\u89d2\u843d\u91cc\u6709\u9633\u5149\u6655\uff0c\u84dd\u9e1f\u5728\u5176\u4e0a\u65b9\u98de\u821e\uff0c\u4e00\u4e2a\u4f8f"} +{"id": "2007783", "video_name": "12083027-75a1-5b93-bcd7-10f6a0ef8d82", "text": "\u4e00\u4e2a\u7199\u7199\u6518\u6518\u7684\u68ee\u6797\u91cc\u957f\u6ee1\u4e86\u9ad8\u5927\u7684\u53e4\u8001\u6811\u6728\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u690d\u7269\u3002\u9633\u5149\u900f\u8fc7"} +{"id": "0003649", "video_name": "40fac6a3-8413-51cd-b874-4a3f90580d9c", "text": "\u611f\u6fc0\u5f97\u6551\uff0c\u9e1f\u513f\u5531\u4e86\u4e00\u9996\u7f8e\u5999\u7684\u6b4c\u8868\u8fbe\u611f\u8c22\u4e4b\u60c5\u3002"} +{"id": "2007795", "video_name": "cc5d6115-7651-579b-bcdb-bc5accc35cbd", "text": "20\u4e2a\u5e74\u8f7b\u7684\u9500\u552e\u5458\u5728\u8c6a\u534e\u529e\u516c\u5ba4\u91cc\u8fdb\u884c\u7535\u8bdd\u9500\u552e\u3002"} +{"id": "2004894", "video_name": "00f46558-d90c-5e96-bada-fbc65a24181c", "text": "\u5723\u8bde\u6811\u3001\u8d3a\u5361\u548c\u5361\u901a\u98ce\u683c\uff0c\u6709\u5723\u8bde\u5feb\u4e50\u7684\u52a8\u753b\u3002"} +{"id": "2005008", "video_name": "24922c89-14d1-5101-ba5a-e732e793b8b8", "text": "\u4e00\u5f20\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u6444\u5f71\u4f5c\u54c1\uff0c\u63cf\u7ed8\u5728\u9732\u8425\u5730\u7684\u4e00\u4e2a\u5feb\u4e50\u5bb6\u5ead\u5361\u901a\u5f62\u8c61\uff0c\u4f4d\u4e8e\u9732\u8425\u5730"} +{"id": "4002685", "video_name": "6134f1ef-9dc9-5bd2-a7cf-0954a99d746e", "text": "\u6234\u7740\u773c\u955c\u5728\u4e2d\u56fd\u8df3\u821e\u7684\u5e05\u7537\u5b69\u3002"} +{"id": "3004026", "video_name": "76726cde-d468-5c7b-88a8-09daec5d4709", "text": "\u8428\u62c9\u5728\u516c\u56ed\u91cc\u5750\u5728\u957f\u6905\u4e0a\uff0c\u9762\u5e26\u5fae\u7b11\u5730\u8bfb\u7740\u4e00\u5c01\u4fe1\u3002\u8428\u62c9\u4e0d\u65ad\u5730\u6536\u5230\u4fe1\u4ef6\uff0c\u901a\u8fc7\u4ed6\u4eec\u5bf9\u6587\u5b66\u7684\u5171"} +{"id": "0003217", "video_name": "3976dad1-3ae7-5c81-94d1-df1d59db821a", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u7537\u5b69\u5728\u585e\u591a\u7eb3\u5c71\u95f4\u6563\u6b65\uff0c\u98ce\u5439\u52a8\u7740\u4ed6\u4eec\u7684\u5934\u53d1\uff0c\u5f69\u8679\u822c\u7684\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u5bfb"} +{"id": "1003470", "video_name": "404a864d-72a5-5ca0-bfbe-3b06f6e6385e", "text": "\u72d7\u5728\u8857\u4e0a\u6563\u6b65\uff0c\u6765\u81eaWhatsApp\u3002"} +{"id": "3004589", "video_name": "871be6f1-f5cf-532c-adad-4387df4ec8ce", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u751f\u7269\u673a\u5668\u732b\u5728\u767d\u8272\u623f\u95f4\u91cc\u7684\u4e00\u4e2a\u767d\u8272\u7a97\u6237\u6253\u5f00\u540e\u8df3\u8dc3\u7740\u8ffd\u9010\u4e00\u4e2a\u767d\u8272\u7684\u751f\u7269\u673a\u5668"} +{"id": "8002288", "video_name": "e2f2dee7-eaea-5476-83ea-e9877b26832f", "text": "\u51ac\u5929\u9ec4\u660f\u65f6\u5206\u6811\u4e0a\u7684\u98ce"} +{"id": "0005973", "video_name": "24401492-7e1b-5bdd-9745-88b85d2086f4", "text": "\u5e74\u8f7b\u5973\u5b69\u9a91\u7740\u873b\u8713\u7a7f\u8fc7\u82b1\u56ed\uff0c\u50cf\u76ae\u514b\u65af\u7684\u52a8\u753b\u3002"} +{"id": "1005798", "video_name": "6ab1a6ff-a099-5da0-851c-5e4af74e9637", "text": "\u4e00\u679a\u52b3\u529b\u58eb\u624b\u8868\uff0c\u5728\u6770\u514b\u00b7\u67ef\u6bd4\u98ce\u683c\u4e0b\u63cf\u7ed8\u51fa\u592a\u7a7a\u5f62\u8c61\u3002"} +{"id": "3006640", "video_name": "57d401ba-9db4-50e5-9d8c-720989a8c33b", "text": "\u8ba9\u81ea\u5df1\u5468\u56f4\u7684\u4eba\u90fd\u662f\u5584\u826f\u3001\u8c26\u865a\u3001\u5c0a\u91cd\u3001\u6709\u540c\u60c5\u5fc3\u7684\uff0c\u8ba9\u4f60\u611f\u5230\u5e78\u798f\u548c\u7231\u7684\u4eba\u3002\u90a3\u4e9b"} +{"id": "2006980", "video_name": "72c59ec0-c24d-581e-a81f-d88c63d55162", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u793aEmily\u5728\u53a8\u623f\u91cc\u719f\u7ec3\u5730\u5207\u5272\u7740\u9c9c\u8273\u7684\u852c\u83dc\uff0c\u7cbe\u51c6\u5730\u638c\u63e1\u7740\u6280"} +{"id": "0003887", "video_name": "4546c358-e4bd-560e-8554-b92f203b9b5f", "text": "\u4e00\u5f20\u5e26\u6709\u540e\u80cc\u8679\u5f69\u768420\u4e16\u7eaa70\u5e74\u4ee3\u5e73\u9762\u4e0a\u7684\u5e0c\u814a\u5e9f\u589f\u7684\u81ea\u52a8\u5f69\u8272\u7167\u7247\u3002"} +{"id": "5001879", "video_name": "fcdf973a-7dd4-57b9-8245-420e09a97465", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u5916\u661f\u4eba\u5728\u8def\u4e0a\u8d70\u3002"} +{"id": "5001874", "video_name": "cdb41c98-2154-5f0d-ad45-bc46621a586c", "text": "\u4e09\u4f4d\u4e2d\u56fd\u53e4\u4ee3\u821e\u8005\u7a7f\u7740\u7ea2\u8272\u670d\u88c5\u8df3\u821e\u3002"} +{"id": "3004399", "video_name": "2347972c-4d33-5964-8132-1db8105b5a81", "text": "\u8bb8\u591a\u51f6\u731b\u7684\u72d7\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "8001521", "video_name": "f118c501-69f0-5bbb-904b-ba6dea6192be", "text": "\u5728\u4e00\u4e2a\u5973\u5b69\u7a7f\u8d8a\u9ed1\u6697\u68ee\u6797\u7684\u89d2\u5ea6\u4e0b\uff0c\u5979\u53d1\u73b0\u4e86\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u5de8\u5927\u5929\u5973\u7684\u5bfa\u5e99\u3002"} +{"id": "1003259", "video_name": "3bf7d7f0-ec6b-5153-a6f7-4d57269e8adc", "text": "\u4e4c\u9e26\u3001\u9f20\u3001\u7c89\u7334\u548c\u8001\u9f20\u82f1\u52c7\u6218\u6597\u3001\u514b\u670d\u969c\u788d\uff0c\u4e0e\u9b54\u6cd5\u751f\u7269\u640f\u6597\u7684"} +{"id": "4003494", "video_name": "ce2dbd39-ba5d-5da3-b8f4-3067a810d629", "text": "\u4e00\u4e2a\u5c0f\u5de7\u53ef\u7231\u7684\u52a8\u753b\u73a9\u5177\uff0c\u50cf\u5723\u8bde\u8001\u4eba\u4e00\u6837\u722c\u4e0a\u706f\u9876\uff0c\u5728\u88c5\u9970\u597d\u7684\u5723\u8bde\u623f\u95f4\u91cc\u975e\u5e38\u9ad8\u5174"} +{"id": "6002452", "video_name": "7553c7cf-290e-56ca-8d7f-41d064d81e76", "text": "\u6b27\u6d32\u57ce\u5e02\u8857\u9053\u4e0a\u7684\u5c0f\u5c38\u888b\u88ab\u6218\u4e89\u6467\u6bc1\u4e86\u3002"} +{"id": "8001694", "video_name": "75b54e42-1c45-55b7-9d2e-f90954477442", "text": "\u8bf7\u751f\u6210\u89c6\u9891\uff0c\u84b8\u6c7d\u673a\u8f66\u6cbf\u7740\u7a3b\u7530\u548c\u6930\u5b50\u6811\u7684\u8f68\u8ff9\u884c\u9a76\u3002\u4e0d\u8981\u6709\u6cb3\u6d41\u3002"} +{"id": "0003049", "video_name": "36150480-9682-53f1-a7e9-8628437d74ae", "text": "\u623f\u95f4\u91cc\u6709\u4e00\u7cfb\u5217\u5b8c\u597d\u4fdd\u5b58\u7684\u91d1\u5b57\u5854\u3002"} +{"id": "0003723", "video_name": "4262918a-9c01-5d01-9ef0-5209fec8990d", "text": "\u7ea6\u7ff0\u72ec\u81ea\u4e00\u4eba\u5728\u5bb6\uff0c\u5750\u5728\u5ba2\u5385\u91cc\u770b\u4e66\u3002"} +{"id": "4003317", "video_name": "e55634a7-485c-5c04-ba2a-c2ff0d510071", "text": "\u57ce\u5821\uff0c\u8fea\u58eb\u5c3c\u5899\uff0c\u98ce\u3002"} +{"id": "0006283", "video_name": "29fe1958-dd1a-53fe-aca6-30fac059d733", "text": "\u8bf7\u628a\u989c\u8272\u878d\u5408\u5728\u4e00\u8d77\uff0c\u4e13\u4e1a\u5730\u79fb\u52a8\u3002"} +{"id": "1005447", "video_name": "641ca7f4-b008-5ee4-baab-576df8e31657", "text": "\u5973\u4eba\u7ad9\u5728\u5c71\u4e0a\uff0c\u770b\u7740\u4e00\u5ea7\u672b\u65e5\u4e4b\u57ce\u5728\u71c3\u70e7\uff0c\u5de8\u5927\u7684\u70df\u67f1\u51b2\u5929\u800c\u8d77\uff0c\u79fb\u52a8\u7684\u706b\u7130\u8513"} +{"id": "7003299", "video_name": "bff96067-2d94-5a84-8a68-3acef5b65dca", "text": "\u4e00\u53ea\u9ed1\u732b\u8df3\u5230\u4e00\u53ea\u5728\u84dd\u8272\u5170\u535a\u57fa\u5c3c\u4e0a\u7684\u767d\u72d7\u8eab\u4e0a\u3002"} +{"id": "0003111", "video_name": "373ca02e-b39a-53ff-be48-25015cfbd3ab", "text": "\u4e00\u4f4d\u8eab\u7a7f\u9ed1\u8272\u897f\u88c5\uff0c\u6234\u7740\u9ed1\u8272\u592a\u9633\u955c\uff0c\u7559\u7740\u77ed\u80e1\u987b\u548c\u9ed1\u8272\u5934\u53d1\u7684\u5353\u8d8a\u53d7\u4eba\u5c0a\u656c"} +{"id": "4004552", "video_name": "08974904-a0bf-518f-8675-f1aa3f2ba782", "text": "\u7236\u5b50\u5728\u5ba2\u5385\u91cc\u6253\u62f3\u51fb\u3002"} +{"id": "1004216", "video_name": "4df59443-b706-5cfe-b46f-c0e31e1059c9", "text": "\u665a\u4e0a\u5750\u5728\u8f66\u91cc\u900f\u8fc7\u7a97\u5b50\u770b\u7740\u4f0a\u65af\u5766\u5e03\u5c14\u7684\u666f\u8272\u3002"} +{"id": "2004310", "video_name": "fa261eda-8731-5a24-9864-9042aea88fa0", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u82f1\u96c4\u5728\u591c\u665a\u7684\u96e8\u4e2d\u8d70\u5728\u57ce\u5e02\u91cc\u3002"} +{"id": "1005420", "video_name": "638fe0eb-da44-57af-b003-589aa5dae2d4", "text": "\u65e5\u672c\u5f0f\u7684\u5706\u5f62\u623f\u5c4b\u5728\u68ee\u6797\u4e2d\u7684\u7535\u5f71\u548c\u5efa\u7b51\u6e32\u67d3"} +{"id": "2005368", "video_name": "288e514e-515f-5cca-a755-b36fc9051559", "text": "\u4e00\u4ef6\u771f\u4eba\u5927\u5c0f\u7684\u5ec9\u4ef7\u5c0f\u578b3D\u6253\u5370\u73b0\u4ee3\u53c2\u6570\u5316\u8bbe\u8ba1\uff0c\u5177\u6709\u6709\u673a\u5f62\u72b6\uff0c\u751f\u7269\u672a\u6765\u5c4b\u3002"} +{"id": "3004633", "video_name": "0a160858-37ce-54d6-8760-022051d4918c", "text": "1950\u5e74\u4ee3\uff0c\u5f69\u8272\u8ff7\u5e7b\u7684\u8d858\u6444\u5f71\u8bb0\u5f55\u4e86\u5154\u5b50\u3001\u8774\u8776\u3001\u732b\u548c\u72d7\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u7684\u753b"} +{"id": "2004827", "video_name": "d80ee130-95e2-568a-a9ef-19fa09d0643c", "text": "1964\u5e74\uff0c\u5e74\u8f7b\u7684\u66fc\u5fb7\u62c9\u88ab\u5224\u65e0\u671f\u5f92\u5211\uff0c\u8fd9\u4e00\u5207\u4eff\u4f5b\u8d85\u73b0\u5b9e\uff0c\u5b9b\u5982\u7535\u5f71\u4e2d\u768416:9\u753b\u9762\u3002"} +{"id": "3003484", "video_name": "eaf43e57-db78-566b-bed4-dfd792d9913b", "text": "\u96f7\u514b\u8428\u65afLX 570\u5728\u7f8e\u4e3d\u7684\u5927\u57ce\u5e02\u4e2d\u9a7e\u9a76\u3002"} +{"id": "7003935", "video_name": "78a6234f-1b2f-5a75-b293-8fd83608f0da", "text": "\u4e00\u573a4K\u8d85\u903c\u771f\u7684\u8759\u8760\u4fa0\u548c\u5c0f\u4e11\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u4e0b\u7684\u6218\u6597\uff0c\u8d85\u7ea7\u82f1\u96c4\u4eec\u5728\u5468\u56f4\u6b22"} +{"id": "6002165", "video_name": "6ef1af94-c286-5bce-b943-12fccdf11ecc", "text": "\u4e00\u53ea\u5c0f\u5154\u5728Dr. Seuss\u98ce\u683c\u7684\u83dc\u56ed\u4e2d\u8e66\u8df3\u3002"} +{"id": "8002927", "video_name": "6c9d2abd-24be-5665-99f4-fea8e5cdcb43", "text": "\u73b0\u4ee3\u5496\u5561\u9986\u91cc\u4e24\u4f4d\u9a91\u58eb\u4e0b\u68cb\u3002"} +{"id": "4003563", "video_name": "6b5ba941-18d5-53ad-a244-61ba865cf131", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u68ee\u6797\u91cc\u5f00\u59cb\u548c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u516c\u4e3b\u4ea4\u8c08\u3002"} +{"id": "4003366", "video_name": "51ff98ef-06cb-5419-bfc6-d1c23095ee5d", "text": "\u8fd0\u52a8\u751f\u6d3b\uff0c\u70ed\u60c5\u71c3\u70e7\uff0c\u6218\u6597\u3002"} +{"id": "3003714", "video_name": "f87dbde4-116d-5927-9389-97092e51896a", "text": "Source sentence: Mahatma Gandhi\u8d70\u5728\u6751\u5b50\u91cc\uff0c\u8d70\u5230\u524d\u9762\u72ec\u81ea\u8d70\n\nSource sentence: I am going to the grocery store to buy some milk and bread.\nTranslation: \u6211\u8981\u53bb"} +{"id": "5001729", "video_name": "82118c8d-9cd8-543f-b8af-5e0543277062", "text": "\u6211\u4eec\u90fd\u6709\u521b\u9020\u80fd\u529b\uff0c\u4f46\u6211\u4eec\u4e0d\u80fd\u5145\u5206\u5229\u7528\u5b83\u4eec\u7684\u4e8b\u5b9e\u662f\u771f\u7684\u3002"} +{"id": "2003911", "video_name": "6ace8bca-4f83-57e0-a698-41bc1d276dd7", "text": "\u8fc7\u53bb\u7684\u5973\u58eb\u5728\u6d82\u9e26\u5899\u524d\u8df3\u821e\u3002"} +{"id": "6004090", "video_name": "10a825f7-ae51-582a-8bd8-3dc89e149263", "text": "\u5c0f\u8239\u4e0a\u7684\u6e14\u6c11\u7528\u6bcf\u79d224\u5e27\u7684\u901f\u5ea6\u6355\u6349\u4e86\u4e00\u53ea\u5de8\u5927\u7684\u5927\u767d\u9ca8\uff0c\u6301\u7eed3\u79d2\u949f\u3002"} +{"id": "0004697", "video_name": "0d8132fb-8143-55ad-ad01-42431ca62169", "text": "\u4e00\u5f20\u7a7a\u767d\u7684\u7eb8\uff0c\u5728\u98ce\u4e2d\u98d8\u8361\uff0c\u5448\u73b0\u7070\u8272\u7684\u8272\u8c03\u3002"} +{"id": "0003454", "video_name": "3dd81dbb-305f-5d0c-8c46-9c7741d88fbe", "text": "\u8bf7\u753b\u4e00\u5e45\u573a\u666f\uff0c\u4f60\u5728\u4e00\u4e2a\u8212\u9002\u3001\u6f02\u4eae\u7684\u5496\u5561\u9986\u91cc\u8bfb\u4e66\u559d\u5496\u5561\u3002\u6211\u5e0c\u671b\u5496\u5561"} +{"id": "3004914", "video_name": "6d3d5b80-e2e6-5276-b81f-7b976785d0d4", "text": "\u6cb3\u6d41\u7684\u81ea\u7136\u529b\u91cf\u662f\u975e\u51e1\u7684\u3002"} +{"id": "7004704", "video_name": "735869d1-7bda-53f8-8d9d-992c9d652cef", "text": "\u821e\u53f0\u4e0a\u7684\u5c06\u519b\u770b\u7740\u821e\u53f0\u4e0b\u8d70\u52a8\u7684\u58eb\u5175\u3002"} +{"id": "2005647", "video_name": "07a1e56b-20f0-5d4d-8310-4a6af0f3b7de", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5728\u6c99\u6f20\u91cc\u5f39\u594f\u5408\u6210\u5668\u3002"} +{"id": "4003845", "video_name": "62a59a4e-e93a-58a4-bdb0-b664ddbb7ac3", "text": "\u4e00\u540d\u5973\u6027\u6ce8\u89c6\u7740\u6444\u50cf\u673a\uff08\u7535\u5f71\u3001\u8d5b\u535a\u670b\u514b\u3001\u84b8\u6c7d\u3001\u9713\u8679\uff09"} +{"id": "6002228", "video_name": "c1871868-89ba-519b-bdae-aa5ffb5dc6b6", "text": "\u6444\u5f71\uff1a\u591c\u7a7a\u4e2d\u6708\u7403\u6e05\u6670\u3001\u8be6\u7ec6\u7684\u62cd\u6444\u3002\u63ed\u793a\u4e86\u6708\u7403\u7684\u7eb9\u7406\u548c\u9634\u5f71\u3002"} +{"id": "1006309", "video_name": "7373a70c-eb47-5457-a618-d37f27a14077", "text": "\u4e07\u5723\u8282\u53ef\u6015\u7684\u9ab7\u9ac5\u6b63\u5728\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "2005830", "video_name": "e6c522f7-cfff-54a0-92e3-c8a9460090dc", "text": "\u5c4f\u5e55\u9010\u6e10\u53d8\u9ed1\uff0c\u53ea\u7559\u4e0b\u6d77\u6d6a\u7684\u58f0\u97f3\u3002"} +{"id": "7004627", "video_name": "c6a4f904-d3e8-52e0-aa83-1fd0732f5881", "text": "\u4ece\u9ed1\u8272\u74f6\u5b50\u91cc\u6d41\u51fa\u6a44\u6984\u6cb9\uff0c\u6ef4\u5728\u6c99\u62c9\u4e0a\u3002"} +{"id": "0003840", "video_name": "445c63d7-fc6f-55cb-bde4-0677909f097f", "text": "\u7834\u65e7\u7684\u5b9d\u9a6ce46\u4ece\u6781\u54c1\u98de\u8f66\u6700\u60f3\u8981\u6e38\u620f\u91cc\u51fa\u73b0\u5728\u8f66\u5e93\u91cc\u3002"} +{"id": "7004728", "video_name": "cc4091ab-4bf7-5896-9998-4df3a2c6ff0c", "text": "\u5916\u5a46\u7ed9\u5b69\u5b50\u4eec\u5e26\u6765\u4e86\u5f88\u591a\u73a9\u5177\uff0c\u5b69\u5b50\u4eec\u770b\u5230\u73a9\u5177\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "0004510", "video_name": "0a4885fd-e7bf-5109-9412-4dfd1fddeb3b", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a60\u79d2\u7684\u89c6\u9891\u5c55\u793a\u5929\u5802\uff0c\u5929\u5802\u5728\u5929\u7a7a\u4e2d\u592e\u7684\u4e00\u4e2a\u5730\u65b9\uff0c\u5468\u56f4\u90fd\u662f\u5f00\u6ee1\u82f9\u679c\u7684\u6a31\u82b1\u6811\u3002"} +{"id": "6004026", "video_name": "f60e2301-74b9-5adc-acb6-a037d8d77081", "text": "\u4e00\u4f4d\u5973\u58eb\u5728\u5c71\u4e0a\u624b\u4e0a\u62ff\u7740\u706b\u3002"} +{"id": "2007537", "video_name": "d2c52041-f066-50d1-9ad2-e4de119207df", "text": "holding everything in. \n\n\u5728\u90a3\u4e2a\u5c0f\u623f\u95f4\u91cc\uff0c\u6709\u50cf\u624b\u4e00\u6837\u7684\u5899\u58c1\uff0c\u628a\u4e00\u5207\u90fd\u56fa\u5b9a\u4f4f\u4e86\u3002"} +{"id": "2005484", "video_name": "9cf0daf1-07f5-5043-aa0d-7dc910437267", "text": "\u4e00\u5217\u9ad8\u67b6\u5217\u8f66\u7a7f\u8fc7\u672a\u6765\u4e3b\u4e49\u5927\u90fd\u5e02\u3002"} +{"id": "1005286", "video_name": "612dcc28-e29d-5b63-9336-da758584937f", "text": "\u51b0\u5c01\u7684\u5929\u4f7f\u5e26\u7740\u51b0\u67f1\u5728\u6447\u5934\u5e76\u7741\u5f00\u773c\u775b\u3002"} +{"id": "4004456", "video_name": "c8b45d39-7e30-5c11-8f33-2207895ab04a", "text": "\u6807\u9898\uff1a\u591c\u665a\u7684\u53cd\u4e4c\u6258\u90a6\u9713\u8679\u98ce\u5149\u4e0b\uff0c\u5efa\u7b51\u5b57\u6bcd\u4e2d\u7684\u5438\u8840\u9b3c\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "6004586", "video_name": "8458e7a8-df6b-5bb2-abc5-74bcfc3114f9", "text": "\u795e\u5947\u5973\u4fa0\u6253\u8d85\u4eba\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u6548\u679c\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "4002934", "video_name": "b0db6956-cee4-5245-8f03-c1b3e2ed4414", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u548c\u5973\u513f\u5728\u96e8\u4e2d\u8df3\u821e\uff0c\u6bcd\u4eb2\u8fd8\u624b\u6301\u4e00\u4ef6\u62ab\u98ce\uff0c\u4e24\u4eba\u624b\u633d\u624b\u3002"} +{"id": "2006827", "video_name": "abc5633a-995a-5705-ad65-11f1332d16b1", "text": "\u5728\u8fea\u65af\u79d1\u4e4b\u540e\uff0c\u5750\u8f66\u51fa\u884c\u3002"} +{"id": "0005620", "video_name": "1e3a3be0-1969-5106-9c6e-23b94560cb8b", "text": "\u4e00\u4e2a\u9713\u8679\u4e1c\u4eac\u57ce\u5e02\u7684\u63d2\u56fe\uff0c\u7c89\u8272\u548c\u84dd\u7eff\u8272\u7684\u9713\u8679\u706f\uff0c\u95ea\u70c1\u7684\u706f\u5149\u548c\u9713\u8679\u706f\u3002"} +{"id": "7004221", "video_name": "7c93bbde-cb7e-5f57-9c2c-df195e784d35", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u5728\u4e00\u5bb6\u65e7\u6709\u9b3c\u9b42\u4f20\u8bf4\u7684\u9152\u5e97\u7684\u6d74\u5ba4\u91cc\u7167\u955c\u5b50\u3002"} +{"id": "2004189", "video_name": "a8f766e4-0486-5efe-9e39-94014d04f833", "text": "\u53d8\u8272\u9f99DJ\u5728\u97f3\u4e50\u8282\u4e0a\u64ad\u653e\u97f3\u4e50\u3002"} +{"id": "5001833", "video_name": "f71e33b8-5af3-5c9c-941f-6f3f774c6a4e", "text": "\u5728\u6e56\u8fb9\u5236\u9020\u4e00\u5ea7\u623f\u5b50\uff0c\u6709\u96e8\u548c\u96f7\u66b4\u3002"} +{"id": "2003099", "video_name": "bf410b32-e803-5905-949f-ac6871a0f7ff", "text": "\u4e00\u4e2a\u50cf\u5929\u5802\u4e00\u6837\u5e73\u9759\u7684\u5730\u65b9\uff0c\u52a8\u690d\u7269\u4eec\u90fd\u8eba\u5728\u90a3\u91cc\u3002"} +{"id": "1005948", "video_name": "6d408fcd-26cf-55e9-94e2-501d95590172", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u5a01\u6b66\u7684\u72ee\u5b50\u5728\u8d5b\u9053\u4e0a\u81ea\u4fe1\u5730\u4e0e\u8dd1\u8f66\u6bd4\u8d5b\uff0c\u4f7f\u7528\u5feb\u901f\u5e73\u79fb\u548c\u8ddf\u62cd\u7b49\u620f"} +{"id": "4002146", "video_name": "56b0090f-8cd2-5caf-9e61-3357c398c8fa", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u6751\u5e84\u91cc\u73a9\u6349\u8ff7\u85cf\uff0c\u9ad8\u7ec6\u8282\uff0c\u5361\u901a\u6a21\u5f0f\u3002"} +{"id": "7002609", "video_name": "ce0539b2-e233-5c9d-91ea-56090d68e552", "text": "\u4e00\u5f20\u62bd\u8c61\u8868\u73b0\u4e3b\u4e49\u753b\u4f5c\u7167\u7247\uff0c\u745e\u5178\u6a21\u7279\u7ad9\u5728\u524d\u9762\u3002\u8272\u5f69\u4e3a\u7c89\u5f69\u8272\u3002"} +{"id": "4003013", "video_name": "465a1b85-605b-555f-8b35-bbd5ee5ae66e", "text": "\u4e00\u4e2a8\u5c81\u7684\u6234\u7740\u773c\u955c\u7684\u6dd8\u6c14\u7537\u5b69\uff0c\u5728\u4ed6\u7684\u751f\u65e5\u4e0a\u548c\u7236\u6bcd\u4e00\u8d77\u5750\u5728\u53d8\u5f62\u91d1\u521a\u4e3b\u9898\u86cb\u7cd5"} +{"id": "8002181", "video_name": "d46093b8-78f3-5f0e-8b7f-82e9d74fa3fc", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u63a2\u9669\u961f\u5728\u5916\u661f\u7403\u4e0a\u9047\u5230\u4e86\u4e00\u4e2a\u795e\u79d8\u7684\u53e4\u4ee3AI\u5b88\u62a4\u8005\uff0c\u6d4b\u8bd5\u4ed6\u4eec\u7684\u751f\u5b58\u6280\u80fd\u3002"} +{"id": "3006681", "video_name": "9cec5fdf-a3f5-510c-9deb-d6fe1ffaec9f", "text": "\u73cd\u59ae\u5f17\u00b7\u6d1b\u4f69\u5179\u7a7f\u7740\u534e\u76db\u987f\u7ea2\u4eba\u961f\u6bd4\u57fa\u5c3c\u5272\u8349\u3002\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "1004068", "video_name": "4b79a2bf-c835-5958-8cc6-3bee4d9740a4", "text": "\u8fd9\u4e2a\u5973\u4eba\u52a8\u4f5c\u975e\u5e38\u7f13\u6162\uff0c\u5e27\u7387\u4e3a24\u3002"} +{"id": "1003145", "video_name": "39fe9848-a5a5-59dc-80e8-329e9a63d9e5", "text": "\u8001\u5987\u4eba\u5728\u7ebd\u7ea6\u8857\u5934\u4e0e\u7ae0\u9c7c\u6218\u6597\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "1003302", "video_name": "3cc6c486-e461-5d34-9699-02f14d410165", "text": "Gogo Saturo\u6b63\u5728\u89c2\u770b\u300a\u5730\u5e73\u7ebf\u300b\u52a8\u753b\u3002"} +{"id": "2007865", "video_name": "58ac39dd-8212-5e39-bfd3-ed91f09e8c02", "text": "\u6b7b\u8005\u4e4b\u65e5\u9b3c\u9b45\u821e\u8e48\u3002"} +{"id": "8002093", "video_name": "83746292-35ae-563a-963c-ff9ecf477fed", "text": "\u8d85\u94fe\u63a5\u548c\u8ba1\u7b97\u80fd\u529b\u3002\u53ef\u89c1\u5185\u90e8\u7535\u7ebf\u548c\u4e3b\u677f\u7684\u8d85\u7a00\u6709\u4eba\u5f62\u8bbe\u8ba1\u3002\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "1006463", "video_name": "7652ca3e-f693-5454-87f7-34199b81478e", "text": "\u4e00\u4e2a YouTube \u9891\u9053\u7684\u6807\u5fd7\uff0c\u591a\u5566A\u68a6\u65b0\u95fb\uff0c8k\u3002"} +{"id": "3004816", "video_name": "8707f573-25ff-5aaa-a528-90d3a27bf4b4", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u548c\u4ed6\u53ef\u7231\u7684\u673a\u5668\u72d7\u4e00\u8d77\u6ed1\u96ea\u3002"} +{"id": "6004218", "video_name": "48a01ef9-cbdd-5ee7-8148-875d3e76394f", "text": "\u4e00\u540d\u7537\u5b69\u5728\u6218\u6597\u4e2d\u6b63\u5728\u52a8\u6001\u8f6c\u5316\u4e3a\u673a\u7532\u5957\u88c5\uff0c\u51c6\u5907\u98de\u884c\uff0c\u5168\u8eab\u5c55\u73b0\u3002"} +{"id": "1005317", "video_name": "61ad482b-f7bd-5a8d-932a-3f28767a98b9", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7eff\u8272\u7684\u8349\u5730\u4e0a\u8e22\u8db3\u7403\u3002"} +{"id": "0004913", "video_name": "11581f87-abfa-54fc-94b1-aa6bf22a3903", "text": "\u6cb3\u7554\u7684\u70df\u706b\u79c0\u5e94\u8be5\u6709\u5c71\u3001\u6c34\u548c\u4eba\u7fa4\u3002"} +{"id": "5001023", "video_name": "70176bb1-de26-5ae5-9df9-9f5721aa499b", "text": "\u5728\u529e\u516c\u5ba4\u91cc\uff0c\u9886\u5bfc\u548c\u5458\u5de5\u4e00\u8d77\u5403\u5348\u9910\u5e76\u804a\u5929\u3002"} +{"id": "2003306", "video_name": "d75e8a86-95ae-501e-85a9-1c000b54b723", "text": "\u6a21\u7279\u4eec\u7a7f\u7740\u524d\u6240\u672a\u89c1\u7684Gucci\u670d\u88c5\u8d70\u5728T\u578b\u53f0\u4e0a\u3002"} +{"id": "3006418", "video_name": "6ae32b8e-61ea-54f2-9458-feee34d58537", "text": "\u4f7f\u7528\u6280\u672f\u5143\u7d20\u521b\u9020\u4e00\u4e2a\u8df3\u52a8\u7684\u5fc3\u810f\u3002\n\nSource sentence: The new software update improves the overall performance of the system. \n\n\u65b0\u7684\u8f6f\u4ef6\u66f4\u65b0\u6539\u5584\u4e86\u7cfb\u7edf\u7684\u6574\u4f53\u6027\u80fd"} +{"id": "8002380", "video_name": "429012dc-f6fd-5489-83cc-2dc97406db54", "text": "\u7b2c\u4e00\u6b21\u770b\u5230\u57c3\u83f2\u5c14\u94c1\u5854\u7684\u76ae\u514b\u65af\u98ce\u683c\u89c6\u9891\uff0c\u968f\u7740\u8d70\u8fc7\u5df4\u9ece\u8857\u9053\u800c\u7f29\u5c0f\u3002"} +{"id": "2007479", "video_name": "027a5f07-aa02-5e70-a326-b2c13664d3ce", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7f8e\u56fd\u58eb\u5175\u672a\u6765\u88c5\u7532\uff0c\u88c5\u6709\u7231\u56fd\u6d82\u6599\u3002"} +{"id": "2004177", "video_name": "e3a2512d-c274-5e4b-954b-dd1a16b9326e", "text": "\u5728\u660f\u6697\u7684\u9152\u9986\u91cc\uff0c\u827e\u5229\u4e9a\u65af\u5206\u4eab\u5f15\u4eba\u5165\u80dc\u7684\u6545\u4e8b\uff0c\u8ba9\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "6003402", "video_name": "a158b286-832b-5a4e-97db-b7a87b806dc6", "text": "\u53e4\u57c3\u53ca\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u666f\u89c2\u662f\u600e\u6837\u7684\uff1f"} +{"id": "0006738", "video_name": "320b7d3c-2192-5674-a022-2f61f3a375f9", "text": "\u5728\u5979\u7236\u6bcd\u7684\u623f\u5b50\u91cc\u7684\u5973\u5b69\uff0c\u4f46\u5979\u611f\u5230\u6cae\u4e27\u548c\u5b64\u72ec\u3002"} +{"id": "2003653", "video_name": "9050cfb3-0848-5c8a-aae1-235c700629bc", "text": "\u751f\u7269\u6f14\u5316\u5174\u8d77\uff0c\u6587\u660e\u4ece\u5e7c\u53d1\u62c9\u5e95\u6cb3\u8c37\u4f20\u64ad\u3002\u6587\u5316\u5fc5\u987b\u5728\u65e0\u5b89\u7b2c\u65af\u4eba\u7684\u60c5\u51b5\u4e0b\u7ef4\u6301\u3002\u8fdb\u6b65\u548c\u6587"} +{"id": "5001636", "video_name": "c4dfa57c-f772-5c1d-8752-f988c9af4a70", "text": "\u4ed6\u548c\u5fe0\u8bda\u7684\u59bb\u5b50\u897f\u5854\u4ee5\u53ca\u5fe0\u8bda\u7684\u5144\u5f1f\u62c9\u514b\u4ec0\u66fc\u4e00\u8d77\u9762\u5bf9\u6d41\u653e\u3002"} +{"id": "6003220", "video_name": "efc7a4f7-b100-5691-b79d-a33be6726a34", "text": "\u73bb\u7483\u676f\u4e2d\u7684\u59dc\u9ec4\u5976\u5177\u67095\u79cd\u597d\u5904\u3002"} +{"id": "3005368", "video_name": "c8d62a0f-ae4d-5675-9a41-f96cad05a4ff", "text": "\u9f99\u88d4\u3001\u80af\u5e93\u548c\u534a\u8eab\u4eba\u5728\u4e00\u8f86\u9a6c\u8f66\u4e0a\u7a7f\u8fc7\u4e2d\u4e16\u7eaa\u57ce\u5e02\u7684\u8857\u9053\uff0c\u5e7b\u60f3\u3001\u73b0\u5b9e\u4e3b\u4e49\u3001DnD\u3002"} +{"id": "6004813", "video_name": "7eba922d-5d9d-5c2a-8678-4d36062cb767", "text": "\u4e00\u53ea\u6fb3\u6d32\u5185\u9646\u5730\u533a\u7684\u91ce\u72d7\u95ef\u5165\u4e86\u4e00\u5bb6KFC\u95e8\u5e97\u3002 \n\nSource sentence: The Great Wall of China is over 13,000 miles long. \n\n\u4e2d\u56fd\u7684\u957f"} +{"id": "1006323", "video_name": "73bb2bd8-ae34-55cb-9688-f507c6314b69", "text": "\u4fdd\u6301\u56fe\u50cf\u5728\u80cc\u666f\u4e2d\u9759\u6b62\u3002\u52a8\u753b\u4e0d\u5e94\u6539\u53d8\u6216\u6dfb\u52a0\u539f\u59cb\u573a\u666f\u4e2d\u7684\u4efb\u4f55\u5143\u7d20\u3002"} +{"id": "7002896", "video_name": "aad9b6a3-a125-50b9-a583-27549b660ae9", "text": "\u5982\u679cKanye West\u5728\u4f26\u6566\u51fa\u751f\u65f6\u662f\u767d\u4eba"} +{"id": "4004788", "video_name": "9f5527e2-4cc6-59bd-b16a-49ca49aa0947", "text": "\u4e00\u4e2a\u5728\u9ec4\u91d1\u65f6\u523b\u6709\u5c71\u7684\u6e56\u6cca"} +{"id": "2005578", "video_name": "f1d82b47-b016-5936-83c1-06743603410a", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u4e00\u4e2a\u5927\u505c\u8f66\u573a\u91cc\u611f\u5230\u56f0\u60d1\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u767d\u7eff\u8272\u4e3b\u9898\uff0c4K\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "2006113", "video_name": "820c83f1-7baa-5f82-9840-dc22e936fcdd", "text": "\u8b66\u961f\u5728\u8b66\u5c40\u5f00\u4f1a\uff0c\u8fdb\u884c\u8c03\u67e5\u3002"} +{"id": "5001592", "video_name": "cbc65bf4-52fb-5534-bf59-9441bbbd7564", "text": "\u90a3\u4e2a\u88ab\u9057\u5f03\u7684\u8001\u623f\u5b50\uff0c\u50cf\u4e00\u4e2a\u9ed1\u6697\u7684\u8fc7\u53bb\u7eaa\u5ff5\u7891\u822c\u5b58\u5728\u7740\uff0c\u5b83\u53ef\u6015\u5730\u63d0\u9192\u7740\u90a3\u4e9b"} +{"id": "7003233", "video_name": "eafef992-0bb1-5fad-b8b1-3d98a3b5e06b", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u8d70\u8fd9\u6761\u8def\u3002"} +{"id": "3006631", "video_name": "8f5758d7-7291-526f-9988-a7eebcff4996", "text": "\u963f\u4e3d\u5854\u6218\u6597\u5929\u4f7f\u624b\u6301\u5251\u884c\u8d70\u3002"} +{"id": "7004210", "video_name": "c3cb7f6a-61c0-5b65-959a-51207bb1e63d", "text": "\u54e5\u7279\u5f0f\u7f57\u9a6c\u56db\u4e2a\u56fd\u738b\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "1003284", "video_name": "3c63d93c-3c73-5ef1-bc48-c0a420c15009", "text": "\u7ea2\u8272\u7684\u96e8\u843d\u5728\u4e00\u7fa4\u5438\u8840\u9b3c\u7684\u4ff1\u4e50\u90e8\u4e0a\u3002"} +{"id": "1004395", "video_name": "5148b0a3-2d32-54b7-96fc-f53a14ed710c", "text": "\u4e00\u4e2a\u6ee1\u8138\u662f\u8840\u7684\u5973\u5b69\uff0c\u80f8\u524d\u63d2\u7740\u4e00\u628a\u5251\uff0c\u5728\u73ab\u7470\u82b1\u4e1b\u4e2d\u88ab\u6740\u6b7b\uff0c\u6444\u50cf\u673a360\u5ea6"} +{"id": "8002420", "video_name": "4aa1c5e7-c5d2-539c-a1f5-eccd8ff580b4", "text": "\u6559\u8bad\uff1a\u4f20\u8fbe\u6545\u4e8b\u7684\u9053\u5fb7\uff0c\u5f3a\u8c03\u667a\u6167\u548c\u68d5\u8272\u72d0\u72f8\u7684\u806a\u660e\u80dc\u8fc7\u86ee\u529b\u7684\u529b\u91cf\u3002"} +{"id": "4003186", "video_name": "fd937079-4009-50f0-b8f5-f43e997157ba", "text": "\u6bdb\u6bdb\u866b\u5fc5\u987b\u8981\u7a7f\u8fc7\u4e00\u6761\u5bbd\u9614\u7684\u6cb3\u6d41\u3002 \n\nSource sentence: She is learning to play the piano. \n\n\u5979\u6b63\u5728\u5b66\u4e60\u5f39\u94a2\u7434\u3002"} +{"id": "1005965", "video_name": "6d91b2ab-3cb6-5c03-a9a7-e817adf2fd98", "text": "T\u548cH\u7684\u6807\u5fd7\u7528\u4e8e\u5728\u7ebf\u670d\u52a1\u673a\u6784\u3002"} +{"id": "0003696", "video_name": "41ddf2fd-cdd5-59dc-94f3-2627b3674655", "text": "\u4e00\u7897\u653e\u5728\u5927\u7406\u77f3\u684c\u4e0a\u7684\u9762\u6761\uff0c\u5192\u7740\u70ed\u6c14\u3002"} +{"id": "2004583", "video_name": "6a46228d-8883-5ab2-abe3-6892e1978cd7", "text": "8\u67083\u65e5\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006311", "video_name": "737b6a54-71ad-54c3-b1d6-c7134eb0dfcf", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u573a\u666f\uff0c\u65f6\u949f\u6307\u9488\u5411\u524d\u79fb\u52a8\uff0c\u5468\u56f4\u7684\u5b63\u8282\u77ac\u95f4\u53d8\u5316\u6a21\u7cca\uff0c\u8c61\u5f81\u7740\u65f6\u95f4\u4e0d\u61c8\u7684\u6d41"} +{"id": "8001927", "video_name": "93f70df0-baca-59c2-9a78-25cdb9cefc87", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u5728\u592a\u7a7a\u4e2d\uff0c\u7ea2\u8272\u6708\u4eae\uff0c\u7f13\u7f13\u5730\u3002"} +{"id": "0006651", "video_name": "305f53f2-6be8-5bcc-8be1-0f09a50580ff", "text": "\u4e00\u5ea7\u5927\u578b\u5efa\u7b51\uff0c\u4e2d\u95f4\u6709\u4e00\u683910\u7c73\u9ad8\u7684\u5355\u67f1\uff0c\u6709\u4e00\u4fa7\u697c\u68af\u548c\u5e95\u90e8\u7684\u7011\u5e03\u3002"} +{"id": "1006643", "video_name": "79c34765-9a32-5ec5-8e04-b2c423e72845", "text": "\u4e00\u4ef6\u6770\u4f5c\uff0c\u4e00\u4e2a\u88c5\u6709\u5927\u4eae\u4e3d\u4e1d\u5e26\u7684\u5723\u8bde\u793c\u76d2\u653e\u5728\u96ea\u5730\u4e0a\uff0c\u96ea\u82b1\u95ea\u95ea\u53d1\u5149\uff0c\u72b9\u5982"} +{"id": "1004228", "video_name": "4e45fa08-02a1-57b0-ab6c-7042b1de8c7b", "text": "\u4e00\u4e2a\u7537\u4eba\u9605\u8bfb\u4e66\u7684\u52a8\u753b"} +{"id": "2004615", "video_name": "028702d4-6435-5c93-bf20-d9e5aaca22db", "text": "\u9ed1\u8272\u5e55\u540e\uff1a\u63cf\u7ed8\u592a\u9633\u5347\u8d77\u65f6\u7684\u6668\u5f71\uff0c\u9610\u8ff0\u9ed1\u8272\u53d9\u4e8b\u7684\u7ec8\u5c40\u3002\u5229\u7528\u9ed1\u8272\u7f8e\u5b66\u548c\u65b0\u4e00\u5929\u7684\u5e0c\u671b"} +{"id": "3003715", "video_name": "189c89cc-3cf0-5180-9cf0-1b013fbfdf53", "text": "\u4e00\u4e2a\u957f\u9f3b\u5b50\u7684\u5de8\u4eba\u6b63\u5728\u4ece\u68ee\u6797\u91cc\u5438\u8fdb\u5f88\u591a\u6811\uff0c\u4ed6\u5fae\u7b11\u7740\uff0c\u773c\u73e0\u9f13\u51fa\uff0c\u5177\u6709\u53f2\u8bd7\u822c\u7684"} +{"id": "7002246", "video_name": "61df11fb-cf5b-5553-ab96-27facf369095", "text": "\u4e00\u4e2a\u516c\u4e3b\u548c\u4e00\u4e2a\u738b\u5b50\u5728\u4e00\u4e2a\u4e0d\u540c\u989c\u8272\u73ab\u7470\u7684\u5927\u82b1\u56ed\u91cc\u3002"} +{"id": "7003103", "video_name": "d8744eb2-bb99-570d-98e2-7ae279bf1f3e", "text": "\u56db\u4e2a\u6210\u5458\uff0c3\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u770b\u5230\u4e86\u9ed1\u6697\u7684\u9b3c\u5c4b\u3002"} +{"id": "1003096", "video_name": "38fdf9fe-ef72-59f1-b21d-8e4bce9ddafc", "text": "\u4e00\u6b3e\u72ec\u7279\u7684\u94b1\u5305\uff0c\u4e0a\u9762\u5370\u6709LGBT\u65d7\u5e1c\u3001\u661f\u661f\u548c\u95ea\u95ea\u53d1\u5149\u7684\u94bb\u77f3\u9732\u73e0\u3002"} +{"id": "4003862", "video_name": "418cadbe-802b-501e-8bd1-d349691575bf", "text": "\u65b9\u5757\u5728\u865a\u7a7a\u4e2d\u79fb\u52a8\u3002"} +{"id": "1005135", "video_name": "5eae0918-248c-5410-8d32-aca93e695cf0", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u6d77\u6ee9\u4e0a\uff0c\u5979\u7684\u5934\u53d1\u88ab\u98ce\u5439\u5f97\u98d8\u52a8\u7740\u3002\u5979\u5728\u54ed\u6ce3\u3002"} +{"id": "1005837", "video_name": "6b4f294e-40f2-5d6c-a10c-34d3a89071e3", "text": "\u4fc4\u52d2\u5188\u5dde\u574e\u6bd4\u5e02\u7684\u96f7\u00b7\u57fa\u6069\u5728\u9ec4\u660f\u65f6\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "7003862", "video_name": "bc9f1765-4e80-5a16-8d70-37637d9c6adc", "text": "\u5728\u6770\u5c3c\u9f9f\u8eab\u4e0a\uff0c\u55b7\u51fa\u4e86\u706b\u7130\u7684\u55b7\u706b\u9f99\u3002"} +{"id": "7002087", "video_name": "8cc6580d-1205-5c47-b179-5994173e0b66", "text": "\u4e09\u5230\u56db\u4e2a\u53ef\u7231\u7684\u5361\u901a\u6795\u5934\u5728\u5e8a\u4e0a\u5954\u8dd1\u3002"} +{"id": "8003005", "video_name": "2e209a12-65a7-5252-800c-89cfebe79890", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u5939\u514b\u3001\u624b\u6301\u98df\u54c1\u67aa\u7684\u7537\u4eba\u6b63\u5728\u770b\u7740\u6444\u50cf\u5934\u5fae\u7b11\uff0c\u5145\u6ee1\u559c\u60a6\u548c\u8272\u5f69\u3002"} +{"id": "0005522", "video_name": "1c3944fc-d1f6-5d12-87f9-a9f2ee210c1d", "text": "\u8d85\u903c\u771f\u76844K\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4f4d\u7a7f\u7740\u5e0c\u8d3e\u5e03\u7684\u5e74\u957f\u7a46\u65af\u6797\u5987\u5973\u4ece\u4e00\u4f4d\u7a7f\u7740\u9002\u5f53\u670d\u88c5\u7684\u5e74"} +{"id": "2005118", "video_name": "3a1ac77f-4b97-55c0-809b-9049641d9620", "text": "\u957f\u9888\u9e7f\u4e0e\u51b0\u6dc7\u6dcb\u4e00\u8d77\u770b\u7535\u5f71\u591c\u3002"} +{"id": "2003552", "video_name": "8d776a74-15fe-5562-98cc-182cb0342dbf", "text": "\u91d1\u878d\u5ba3\u4f20\u6d3b\u52a8\u7684\u6807\u5fd7"} +{"id": "8002665", "video_name": "4636c9dc-619c-5c20-9759-65035be2c027", "text": "\u4e00\u4e2a\u795e\u706f\u4e2d\u51fa\u6765\u7684\u7cbe\u7075\u3002"} +{"id": "7002812", "video_name": "50f7366c-4738-5345-81c0-317016de7d01", "text": "\u5207\u6362\u5230\u6c99\u4e9a\u59c6\u5728\u624b\u673a\u4e0a\u770b\u7740\u4ed6\u548c\u6885\u52a0\u7684\u7167\u7247\u5e76\u5fae\u7b11\u3002"} +{"id": "6004969", "video_name": "bd1ce829-b302-55a8-9b3f-bbd845571846", "text": "\u65c1\u8fb9\u6709\u4e00\u5f20\u56fe\u7247\uff0c\u662f\u4e00\u5339\u5954\u8dd1\u7684\u9a6c\u548c\u4e00\u4e2a\u5916\u661f\u4eba\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002033", "video_name": "48f4d946-3218-5c66-b276-50b847ccc43b", "text": "\u6446\u8131\u82e6\u6d77\uff1a\n\u8bf4\u5531\u6b4c\u624b\u6234\u597d\u5e3d\u5b50\uff0c\u51c6\u5907\u51fa\u822a\uff0c\u4e3a\u65c5\u7a0b\u505a\u51c6\u5907\u3002\n\u77ed\u6682\u7684\u8239\u79bb\u5f00"} +{"id": "6004839", "video_name": "5da55258-7d97-54ee-ae78-88a7b458e48e", "text": "\u8349\u5730\u5728\u91ce\u517d\u6d3e\u7ed8\u753b\u98ce\u683c\u4e0b\u6447\u66f3\u3002"} +{"id": "6004416", "video_name": "f9993bd4-3a65-55e9-ac9f-139930bee753", "text": "\u6162\u52a8\u4f5c\uff0c\u7279\u5199\u955c\u5934\u5c55\u793a\u300a\u661f\u7403\u5927\u6218\u300b\u4e2d\u7684\u5149\u5251\u5bf9\u51b3\u3002"} +{"id": "3003901", "video_name": "245f9093-eced-54eb-a0c9-2107cf5dd7b4", "text": "\u592a\u9633\u843d\u5728\u6d77\u4e0a\uff0c\u6d77\u50cf\u662f\u5728\u8336\u676f\u91cc\u3002"} +{"id": "1006313", "video_name": "737f8a6a-fb9c-598d-a893-ab08de7db0e6", "text": "\u5c0f\u5b69\u7ec8\u4e8e\u8dd1\u4e86\u5f88\u4e45\u5230\u8fbe\u76ee\u7684\u5730\uff0c\u611f\u5230\u8f7b\u677e\u4e86\u3002"} +{"id": "3003644", "video_name": "fda2ada4-1828-5498-80a7-e61389b9c401", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u5750\u5728\u5730\u677f\u4e0a\uff0c\u65c1\u8fb9\u6709\u4e00\u76cf\u9ec4\u8272\u7684\u706f\u3002"} +{"id": "2007249", "video_name": "2c1ae145-7ac7-52b6-a517-195948e0c14b", "text": "\u9633\u5149\u7a7f\u8fc7\u96e8\u4e91\uff0c\u7167\u8000\u5411\u65e5\u8475\u548c\u5468\u56f4\u7684\u82b1\u56ed\uff0c\u6295\u5c04\u51fa\u91d1\u8272\u7684\u5149\u8f89\u3002"} +{"id": "2006384", "video_name": "392e1b63-425d-5951-b5af-4269a19db5cd", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u3001\u767d\u8272\u886c\u886b\u548c\u9886\u5e26\u7684\u7537\u4eba\u8d70\u7740\uff0c\u5934\u4e0a\u662f\u4e00\u4e2a\u89c6\u9891\u76d1\u63a7\u6444\u50cf\u5934\uff0c\u4e00\u4e2a\u84b8\u6c7d\u670b"} +{"id": "8001293", "video_name": "d1b32f72-17ac-5de0-be3d-1b08a34833aa", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u591c\u7a7a\u88ab\u67d4\u548c\u7684\u6708\u5149\u7167\u4eae\uff0c\u5c06\u94f6\u8272\u53cd\u5c04\u6295\u5c04\u5728\u5e73\u9759\u7684\u6c34\u9762\u4e0a\uff1a\u6d3b\u52a8\u7684\u56fe\u50cf\u3002"} +{"id": "2007965", "video_name": "49bbc5d9-f3f6-5d39-9d2f-8ec476b953c6", "text": "\u751f\u6210\u4e00\u4e2a\u903c\u771f\u7684\u732b\u5f8b\u5e08\u89c6\u9891\uff0c\u6b63\u5728\u9605\u8bfb\u6cd5\u5f8b\u5e76\u7728\u773c\u3002"} +{"id": "6003994", "video_name": "0e73a7ad-ba19-5b72-a8a9-0dd634ad3844", "text": "\u4ee5\u6bcf\u5c0f\u65f6200\u516c\u91cc\u7684\u901f\u5ea6\u53bb\u4e0a\u73ed\uff0c\u8d5a\u94b1\u586b\u51b0\u7bb1\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "2007642", "video_name": "a22aac1e-9fba-5e5d-b412-1f1088146780", "text": "\u8001\u5f0f\u76841920\u5e74\u4ee3\u7535\u5f71\uff0c\u68d5\u8272\uff0c\u53d1\u73b0\u4e86\u4e00\u4e2a\u4eea\u5f0f\u7684\u7247\u6bb5\uff0c\u9ed1\u6697\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u795e\u79d8\u4e3b\u4e49\u3001\u8d85\u81ea\u7136\u3001\u9b3c"} +{"id": "2003700", "video_name": "a4a39c98-676b-5786-aae0-306547aa6d1c", "text": "18\u5c81\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b50\u5fae\u7b11\u7740\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u7a7f\u7740\u5c11\u5973\u88c5\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "1005488", "video_name": "64dacbe5-9ce2-54f4-b75a-b7505f2362d8", "text": "\u4e00\u8f86\u5e26\u6709\u5168\u526f\u88c5\u5907\u7684Supra\u8ddf\u5728\u4e00\u4e2a\u574f\u4eba\u6469\u6258\u8f66\u524d\u9762\uff0c\u6469\u6258\u8f66\u5904\u4e8e\u5168\u901f\u6a21\u5f0f\u3002"} +{"id": "4002101", "video_name": "f8c98349-5401-5263-9bf8-19700e8fab9d", "text": "\u5965\u5229\u516b\u722a\u9c7c\u4f18\u96c5\u5730\u7a7f\u8d8a\u6df1\u6d77\u591a\u5f69\u7684\u73ca\u745a\u7901\uff0c\u6c34\u4e2d\u6620\u7167\u7740\u4ed6\u95ea\u95ea\u53d1\u5149\u7684"} +{"id": "0006880", "video_name": "34a6844f-b51b-5dca-ad22-f749b2f74abf", "text": "\u590d\u6742\u7684\u5149\u56fe\u6848\u3002\n\u8d85\u9ad8\u6e05\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u30018K\u300116:9\u3002"} +{"id": "8001542", "video_name": "a1a5d8c4-3919-5051-9ba3-d41999259bf8", "text": "\u8fdc\u8ddd\u79bb\u62c9\u8fd1\u753b\u9762\uff0c\u8857\u4e0a\u7684\u8f66\u8f86\u884c\u9a76\uff0c\u9633\u53f0\u4e0a\u7684\u4eba\u4eec\u6765\u56de\u8d70\u52a8\u5e76\u6253\u7535\u8bdd\u4ea4\u8c08\u3002"} +{"id": "1006559", "video_name": "782e85f1-5bf2-5900-a9c5-27fce1febd10", "text": "\u65b0\u90ce\u8d70\u5411\u65b0\u5a18\uff0c\u5fae\u7b11\u7740\uff0c\u65b0\u5a18\u6367\u82b1\u6d12\u4e0b\uff0c\u7f8e\u4e3d\u7684\u9633\u5149\uff0c\u8349\u5730\u4e0a\uff0c\u6709\u5f55\u50cf\u3002"} +{"id": "3005373", "video_name": "ab123a0e-57cd-56c6-8dc7-94a788c987bb", "text": "\u4e2d\u56fd\u5148\u751f\u6b63\u5728\u9910\u5385\u91cc\u716e\u4e2d\u56fd\u6c64\u3002"} +{"id": "1006461", "video_name": "7650e925-c3f3-540f-a3ec-ca053e8303ef", "text": "\u4e00\u540d\u975e\u6d32\u5973\u5b50\u62ff\u7740\u624b\u673a\uff0c\u5174\u594b\u5730\u60f3\u8981\u4f7f\u7528\u624b\u673a\u3002"} +{"id": "8003692", "video_name": "e0afd07c-4540-512f-ae88-33b2e52ca337", "text": "\u4e00\u90e8\u5c0f\u7535\u5f71\uff0c\u7ed9\u4e00\u4e9b\u5de5\u7a0b\u5e08\uff0c\u6b22\u8fce\u4ed6\u4eec\u8fdb\u5165\u65b0\u7684\u4e00\u5e74\u3002"} +{"id": "1003751", "video_name": "45294e5d-4d59-5aa1-8e84-58dfb0005f74", "text": "\u9633\u5149\u7167\u5c04\u5728\u57ce\u5e02\u548c\u4eba\u7c7b\u8eab\u4e0a\u3002"} +{"id": "8001654", "video_name": "ed529b99-31f1-54ad-9273-9e47521ff1fc", "text": "\u76f8\u673a\u4ece\u540e\u9762\u62cd\u6444\uff0c\u5c31\u50cf\u7ad9\u53f0\u4e0a\u7a7f\u7740\u5916\u5957\u3001\u62d6\u7740\u624b\u63d0\u7bb1\u7684\u82f1\u4fca\u7537\u5b50\u4e00\u6837\uff0c\u5e26\u6709\u7535\u5f71\u822c\u7684\u52a8\u611f\u3002"} +{"id": "3006504", "video_name": "96133403-2909-5e87-abf6-621dab238bc0", "text": "\u7f8e\u4e3d\u7684\u62bd\u8c61\u52a8\u6001\u56fe\u50cf\u3002\u4fe1\u606f\uff1aPACE\u7eff\u8272\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003169", "video_name": "ac06f8e6-a182-526c-842c-4a770028477c", "text": "\u4e13\u6ce8\u4e8e\u4f53\u80b2\u6570\u5b57\u521b\u65b0\u56e2\u961f\u7684\u52a8\u6001\u6807\u5fd7\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "1004085", "video_name": "4baf572b-ad9c-5623-878d-2e10904bc6c5", "text": "\u5c0f\u732b\u5728\u6c34\u4e0a\u5954\u8dd1\uff0c\u53ef\u7231\u7f8e\u4e3d\uff0c\u773c\u775b\u5927\uff0c\u7ec6\u8282\u597d\uff0c\u9ad8\u6e05\u6670\u5ea64K\u3002"} +{"id": "0005411", "video_name": "1a683463-be90-5517-98d5-1bba12c021b7", "text": "\u5c0f\u96ea\u4f01\u9e45\u4ece\u76f8\u673a\u955c\u5934\u9003\u8dd1\u3002"} +{"id": "7004338", "video_name": "13f1a6ce-40bb-55a9-a4a5-fc35b9ef49ff", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u9b3c\u9b42\u5728\u57ce\u5e02\u4e2d\u5954\u8dd1\u3002"} +{"id": "8002059", "video_name": "3d376e07-8299-5890-ad98-627b01c39713", "text": "3D\u82f9\u679c\u5f00\u95e8\u65cb\u8f6c\u52a8\u753b\u8f6c\u6362\u5168\u666f\u7f29\u653e\u673a\u68b0\u8fd0\u52a8\u5411\u524d\u8fd0\u52a8\u7f29\u653e\u63a8\u62c9\u5347\u964d\u503e\u659c\u6269\u5c55\u67a2\u8f74\u6d3b"} +{"id": "2007304", "video_name": "fc83e8af-df4a-5808-8271-ca80d254dabf", "text": "\u97e9\u56fd\u6b4c\u624bPSY\u5728\u547c\u53eb\u4e2d\u5fc3\u4f7f\u7528\u8033\u673a\u63a5\u542c\u7535\u8bdd\uff0c\u7a7f\u77403D\u5143\u7d20\u5316\u8eab\u8df3\u7740\u6c5f\u5357Style\u821e\u8e48\u3002"} +{"id": "0005612", "video_name": "1e030aa3-0596-5f2c-8e38-eeede977f38d", "text": "\u60f3\u8c61\u4e00\u4e0b\u661f\u7cfb\u7684\u78b0\u649e\u3002\u5c55\u793a\u661f\u661f\u548c\u5b87\u5b99\u788e\u7247\u4e4b\u95f4\u620f\u5267\u6027\u7684\u4e92\u52a8\uff0c\u5448\u73b0\u51fa\u89c6\u89c9\u4e0a\u4ee4\u4eba\u60ca"} +{"id": "2004826", "video_name": "898d01e9-f1fd-52c9-8d77-541eb3eb5679", "text": "\u6728\u5c4b\u6751\u5e84\uff0c\u4fef\u62cd\u6444\u5f71\uff0c\u65f6\u95f4\u662f\u516c\u5143\u524d300\u5e74\u3002"} +{"id": "3005771", "video_name": "84bbe0a7-b3e7-5aee-a2fa-8bf8d9f1cb33", "text": "\u4e16\u754c\u4e0a\u7b2c\u4e00\u53f0\u8ba1\u7b97\u673a\u548c\u5e74\u4efd\u3002"} +{"id": "4003851", "video_name": "940c05d0-dd12-56e1-a1c5-35646e0f6e06", "text": "Serato DJ\u5728Windows 10\u7684\u903c\u771f8K\u5e7b\u5883\u7167\u7247\u4e2d\u5c55\u793a\u4e86\u4ed6\u7684\u7b2c\u4e09\u6839\u624b\u6307\u3002"} +{"id": "7004405", "video_name": "5d20e223-075a-5161-8570-0ac1b8b829e3", "text": "\u4e00\u5bf9\u7eff\u8272\u773c\u775b\u5728\u9ed1\u6697\u4e2d\u7741\u5f00\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "3004191", "video_name": "a1fbec21-04c0-5c50-b408-dffa007d696b", "text": "\u9ad8\u5206\u8fa8\u7387\u7684\u7ec6\u8282\uff0c\u7535\u5f71\u8272\u5f69\uff0c\u8d85\u5199\u5b9e\uff0c\u8d85\u8be6\u7ec6\u3002\u8fdc\u666f\uff0c\u4f4e\u89d2\u5ea6\uff0c\u6210\u5e74\u7f8e\u6d32\u8c79\u8df3\u4e0b\u77f3\u9636\u3002"} +{"id": "3003295", "video_name": "41d72981-8116-5125-9100-d4db6e833fba", "text": "\u8d3e\u65af\u6c40\u00b7\u6c40\u5e03\u83b1\u514b\u7ad9\u5728\u6811\u65c1\u7684\u6811\u6797\u91cc\uff0c\u767d\u5929\u7528\u9ea6\u514b\u98ce\u5531\u6b4c\uff0c\u5468\u56f4\u6709\u5f88"} +{"id": "0003520", "video_name": "3ee62a51-cf46-54c4-b284-fe54c35e2c3a", "text": "\u8759\u8760\u4fa0\u548c\u6b7b\u4f8d\u5728\u7535\u5f71\u822c\u7684\u573a\u666f\u4e2d\u6218\u6597\u3002"} +{"id": "1003333", "video_name": "3d52434b-ae42-5a9b-88ed-0b6eafac8e5a", "text": "\u4e00\u4f4d\u806a\u660e\u7684\u5b66\u751f\u6b63\u5728\u8fdb\u884c\u5b9e\u9a8c\uff0c\u6447\u52a8\u7740\u88c5\u6709\u4e00\u4e9b\u6db2\u4f53\u7684\u8bd5\u7ba1\u3002"} +{"id": "1005020", "video_name": "5cdf9bb2-ce43-5f1a-8c40-f1ab43180d62", "text": "\u4e00\u540d\u65e5\u672c\u5973\u5b69\u8d70\u5411\u5c71\u8c37\u65e5\u843d\u3002"} +{"id": "3004010", "video_name": "7c39e990-12fe-550e-bf2a-53a3bf9dd5fb", "text": "\u98ce\u548c\u6c34\u6d41\u5411\u65e0\u5c3d\u3002"} +{"id": "2005047", "video_name": "c060eb9c-a154-5ab2-ac70-f4d3ad9c1319", "text": "\u5728\u5b87\u5b99\u4e2d\u521b\u4f5c\u4e00\u90e8\u9ad8\u5ea6\u56fe\u5f62\u5316\u7684\u89c6\u9891\uff0c\u5728\u5176\u4e2d\u4eba\u7c7b\u4e0e\u673a\u5668\u4eba\u4e00\u8d77\u9a7e\u9a76\u5b87\u5b99\u98de\u8239\u548c\u4f7f\u7528\u6b66\u5668\u5bf9\u6297\u5916\u661f"} +{"id": "1004285", "video_name": "4f3dda9b-4a0d-55d3-8a10-c130bcc653e9", "text": "\u5927\u578b\u7684\u706b\u5c71\u74e6\u5c14\u5bfa\u5723\u5668\u4ece\u6d77\u6d0b\u4e2d\u6d6e\u73b0\uff0c\u5448\u73b0\u51fa\u9ed1\u767d\u7535\u5f711900\u5e74\u4ee3\u7684\u98ce\u683c\u3002"} +{"id": "7004442", "video_name": "3d71b5e7-0848-5907-8378-ec5ad310b1de", "text": "\u706b\u7130\u5347\u8d77\uff0c\u73ab\u7470\u7efd\u653e\uff08\u7535\u5f71\u822c\u7684\u573a\u666f\uff09\u3002"} +{"id": "6003842", "video_name": "0f8c406d-3dcc-5b3f-8483-8069e07a12e4", "text": "\u4eba\u7fa4\u805a\u96c6\u5728\u7eff\u8272\u5c71\u4e18\u4e0a \u5916\u9762 \u68a6\u56fa\u5b9a\u5b57\u4f53\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006620", "video_name": "2fa7269b-4a37-5e9e-9dae-ff6e48f40e32", "text": "\u4e24\u4e2a\u57c3\u53ca\u5973\u4eba\u6447\u52a8\u6247\u5b50\u3002"} +{"id": "2006008", "video_name": "e66c5b72-7daa-59de-ab85-0c05c5ed36e8", "text": "\u5728\u53e4\u4ee3\u4f0a\u65af\u5170\u65f6\u4ee3\uff0c\u54c8\u91cc\u53d1\u8eba\u5728\u5bab\u6bbf\u91cc\u8c6a\u534e\u7684\u5e8a\u4e0a\u7761\u89c9\u65f6\u56de\u5fc6\u5f80\u4e8b\u3002"} +{"id": "2006210", "video_name": "8106db72-129d-53a4-b0f4-410969097010", "text": "\u5728\u8def\u4e0a\u521b\u5efa\u4e00\u8f86\u7279\u65af\u62c9\u6c7d\u8f66\u3002"} +{"id": "2005569", "video_name": "d0eba6ff-353b-54e2-9607-dd2a6cf32b7d", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u4ed9\u5973\u72ec\u81ea\u5728\u4e1b\u6797\u4e2d\u3002"} +{"id": "1006170", "video_name": "70e9072b-0489-59b2-9070-27173e0fc6f9", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u7f69\u548c\u76ae\u9769\u88c5\u675f\u7684\u7537\u4eba\u6b63\u5728\u4e00\u4e2a\u6c99\u6f20\u533a\u57df\u91cc\u8d70\uff0c\u80cc\u666f\u4e2d\u6709\u5176\u4ed6\u7537\u4eba\u3002"} +{"id": "4002959", "video_name": "da83c466-9524-5e06-b4a4-2ae1487dcb86", "text": "\u4f7f\u7528\u201cToast\u201d\u4e00\u8bcd\u521b\u5efa\u56fe\u50cf\u3002"} +{"id": "3005538", "video_name": "051f43d0-a1a0-5238-81ae-420ceee270ef", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u623f\u95f4\u91cc\u8df3\u821e\uff0c\u80cc\u666f\u662f\u4e00\u9762\u955c\u5b50\u3002"} +{"id": "4004401", "video_name": "7d16ecd4-f63f-5b72-a930-f1a58978eb27", "text": "\u53ef\u7231\u7684\u795e\u7075\u89d2\u8272\u8868\uff0c\u591a\u89d2\u5ea6\u3002"} +{"id": "0003886", "video_name": "4540cf5e-be37-54f0-8ea7-71b660079b02", "text": "\u53e4\u8001\u7684\u8b66\u544a\uff0c\u5c16\u9510\u5730\u53cd\u6620\u4e86\u4eba\u7c7b\u5815\u843d\u7684\u4e00\u9762\u3002"} +{"id": "3006633", "video_name": "9ba2b247-df77-50d3-a1c5-d90e521dcaf4", "text": "\u5f69\u8272\u6db2\u4f53\u7684\u6cb9\u6f06\u548c\u5f69\u8272\u70df\u96fe\u878d\u5408\u6210\u7f8e\u4e3d\u5973\u4eba\u7684\u6c89\u7761\u9762\u5bb9\uff0c\u7531Henry Asencio\u548cMartin Ansin\u521b\u4f5c"} +{"id": "0006120", "video_name": "26fa4c95-4b86-5492-ab41-b27ac7a51ddd", "text": "\u6811\u5728\u6643\u52a8\uff0c\u7011\u5e03\u5728\u6d41\u52a8\u3002"} +{"id": "1006055", "video_name": "6f39ef54-4f22-5687-ab3a-927514c5eabd", "text": "\u6c64\u7c73\u00b7\u7ef4\u7d22\u624b\u6301\u51b2\u950b\u67aa\u5728\u9152\u5e97\u5efa\u7b51\u5185\u9003\u8dd1\u3002\u79d1\u5e7b\u3001\u8d5b\u535a\u670b\u514b\u30021990\u5e74\u4ee3\u7535\u5f71\u3002"} +{"id": "6002170", "video_name": "82b8c93c-3de5-5969-9c62-fa317993a4b7", "text": "\u8d85\u7ea7\u571f\u8c46\uff0c\u6709\u4e00\u4e2a\u773c\u775b\u548c\u7ea2\u8272\u62ab\u98ce\u3002"} +{"id": "0004029", "video_name": "01c81a82-7a15-5592-8a29-5c87dd5c2e0d", "text": "\u4e00\u8f86\u65e5\u672c\u8dd1\u8f66Supra\uff0c\u5e26\u6709\u9713\u8679\u706f\uff0c\u5728\u5c71\u4e0a\u6f02\u79fb\uff0c\u591c\u665a\uff0c\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u5feb\u901f\u800c\u731b\u70c8"} +{"id": "6002299", "video_name": "bc856445-04f3-5752-af9e-8b499b3561f3", "text": "\u4ed6\u88ab\u8ba4\u4e3a\u662f\u4f5b\u6559\u7684\u521b\u59cb\u4eba\u3002"} +{"id": "0004334", "video_name": "07521c50-56e9-57ac-a952-177cfbe47a71", "text": "\u9ed1\u8272\u5916\u5957\u7537\u5b50\u5728\u8272\u5f69\u6591\u6593\u7684\u5c0f\u697c\u8857\u533a\u4e2d\u88ab\u7206\u70b8\u548c\u70df\u96fe\u8986\u76d6\uff0c\u903c\u771f\u76848K\u6548\u679c\u3002"} +{"id": "2005488", "video_name": "b4e46d3e-1085-5d9b-8221-9a58c4728648", "text": "\u63cf\u7ed8\u56fd\u738b\u65c5\u884c\u65f6\u75b2\u5026\u9965\u997f\u7684\u6837\u5b50\uff0c4K\u3002"} +{"id": "2004607", "video_name": "c2b8fe0a-d006-5d38-af6e-2290d56acde2", "text": "\u624b\u6307\u5f3a\u70c8\u5730\u79fb\u52a8\uff0c\u5f2f\u66f2\uff0c\u4f38\u5c55\uff0c\u624b\u638c\uff0c\u7269\u4f53\u65cb\u8f6c\uff0c\u589e\u52a0\u5149\u6cfd\u548c\u4eae\u70b9\u3002"} +{"id": "1005520", "video_name": "65a182f1-896f-51c3-9446-1372c51d7ee8", "text": "\u6c34\u4e0b\u5176\u4ed6\u9c7c\u513f\u4e2d\u7684\u53ef\u7231\u72d7"} +{"id": "1005526", "video_name": "65ba1d7d-595c-5599-8b36-ea21120fd211", "text": "\u5c06\u76f8\u673a\u955c\u5934\u4ece\u8fdc\u5904\u79fb\u8fd1"} +{"id": "6003760", "video_name": "d9c3c0d4-645d-5b1d-bf4c-e76ddb1be988", "text": "\u4e00\u53ea\u5145\u6ee1\u6d3b\u529b\u7684\u9ed1\u8272\u5154\u5b50\uff0c\u7ea2\u8272\u7684\u773c\u775b\uff0c\u642d\u914d\u6df1\u8272\u706b\u7130\u80cc\u666f\u3002"} +{"id": "3006365", "video_name": "4ac8a14f-6db2-5646-bdd2-fedcaa65a3b0", "text": "\u8f9b\u83f2\u7f57\u6ce2\u5c14\u5e02\u653f\u5e9c\u5927\u697c\u7740\u706b\u4e86\u3002"} +{"id": "2007973", "video_name": "652a83a4-88eb-5215-ae14-880d42ac5581", "text": "3D\u52a8\u753b\u5973\u5b69\u6162\u6162\u5730\u6495\u626f\u5934\u53d1\uff0c\u7565\u5fae\u52a8\u4e86\u4e00\u4e0b\u3002"} +{"id": "8001066", "video_name": "0c4451eb-a573-54c0-9fac-b7de25412967", "text": "\u4ed6\u4eec\u7684\u8c03\u67e5\u5f15\u5bfc\u4ed6\u4eec\u524d\u5f80\u9065\u8fdc\u7684\u5f71\u5c9b\u3002"} +{"id": "1005169", "video_name": "5f250f08-f395-5444-8d83-8a67284774be", "text": "\u5c55\u793a\u4e00\u53ea\u7070\u8272\u548c\u84dd\u8272\u7684\u8001\u9e70\uff0c\u5e26\u6709\u9ec4\u8272\u7684\u817f\uff0c\u5728\u629b\u5149\u7684\u767d\u8272\u82b1\u5c97\u5ca9\u5730\u677f\u4e0a\uff0c8k\uff0c"} +{"id": "3003796", "video_name": "90890c57-114f-52e5-b1cb-1d740d517b1e", "text": "\u4e00\u4e2a\u7a7f\u7740\u7eff\u8272\u897f\u88c5\u7684\u80a5\u80d6\u7537\u5b50\u5728\u4eba\u7fa4\u4e2d\u6324\u8fc7\u53bb\uff0c\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "2005378", "video_name": "fc55fde9-3c72-5742-b005-3a5621143851", "text": "\u5e74\u8f7b\u7684\u8fd0\u52a8\u578b\u7f8e\u4e3d\u91d1\u53d1\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u5728\u6d77\u6ee9\u4e0a\u8d70\u8def\u3002"} +{"id": "4002426", "video_name": "921831b6-8b65-5854-b67f-030789aba8e2", "text": "\u8fd9\u662f\u52a0\u5dde\u66fc\u5fb7\u5c14\u5e03\u5c14 Kodak Ektar \u661f\u4f53\u5168\u606f\u80cc\u666f\u4e0b\u7684 8:05\u3002"} +{"id": "4002590", "video_name": "e6680e69-c9b4-5712-b6e4-cc19a7d69fb4", "text": "\u5e7d\u7075\u822c\u7684\u96fe\u6c14\u4ece\u623f\u5b50\u7684\u88c2\u7f1d\u4e2d\u6e17\u900f\uff0c\u586b\u6ee1\u4e86\u623f\u95f4\uff0c\u5f25\u6f2b\u7740\u4e00\u79cd\u8d85\u51e1\u8131\u4fd7"} +{"id": "1004995", "video_name": "5c568dcd-a214-5515-a991-5e6ce3c7c78d", "text": "\u8036\u7a23\u57fa\u7763\u5168\u8eab\u7167\u7247\uff0c\u7531\u827a\u672f\u5bb6Ed Blinkey\u3001Atey Ghailan\u3001Jeremy Mann\u3001Greg Manchess\u3001Antonio Moro\u6cb9\u753b\u521b\u4f5c\uff0c"} +{"id": "4002948", "video_name": "75879374-f97f-57ab-b8a8-269f047ce6ad", "text": "\u5730\u7403\u5728\u65cb\u8f6c\uff0c\u6ef4\u843d\u7740\u660e\u4eae\u7684\u7c89\u7ea2\u3001\u7d2b\u8272\u3001\u84dd\u8272\u3001\u7eff\u8272\u548c\u9ec4\u8272\u6d82\u6599\u3002"} +{"id": "0006707", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "\u4e00\u4f4d\u4ea4\u6613\u4e13\u5bb6\u5750\u5728\u6e38\u8247\u4e0a\uff0c\u8eab\u8fb9\u6709\u4e24\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u76849:16\u89c6\u9891\u3002"} +{"id": "3005892", "video_name": "5f571863-c44f-5443-a710-ea5994e283b9", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u957f\u957f\u7684\u6df1\u8272\u91d1\u53d1\u98d8\u8361\u3002"} +{"id": "4002855", "video_name": "3242f0b2-8e43-5abe-8c12-b0ce35f06771", "text": "\u4f0a\u6c83\u00b7\u6ce2\u6208\u96f7\u5229\u5947\u5728\u4e00\u5bb6\u8d85\u5e02\u6f14\u594f\u4e00\u67b6\u5927\u94a2\u7434\u3002"} +{"id": "2007421", "video_name": "c85baa24-0c11-5f6d-836a-a588639b4104", "text": "\u6709\u4e24\u4e2a\u540d\u53eb\u827e\u7c73\u8389\u548c\u838e\u62c9\u7684\u6700\u597d\u7684\u670b\u53cb\u4f4f\u5728\u8fd9\u91cc\u3002"} +{"id": "2003198", "video_name": "5d82d572-0691-5df6-86be-b81ad820e739", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u5728\u533b\u9662\u91cc\u8fdb\u884c\u6708\u7403\u6f2b\u6b65\u3002"} +{"id": "1005920", "video_name": "6cc1064d-f4f3-5c0b-af07-21b6b8b7ec95", "text": "\u5c39\u932b\u6085\uff081960\u5e7412\u670818\u65e5\u51fa\u751f\uff09\u662f\u97d3\u570b\u653f\u6cbb\u5bb6\uff0c\u81ea2022\u5e74\u4ee5\u4f86\u4e00\u76f4\u64d4\u4efb\u5357\u97d3\u7b2c13\u4efb\u548c"} +{"id": "0006742", "video_name": "3218df25-e3f8-5f88-ab59-80c9f9d6b02f", "text": "Source sentence translated into Chinese: \u300a\u4eac\u90fd\u5b87\u5b99\u8ad6\u300b\u85dd\u8853\u96fb\u5f71\u8a6d\u7570\u7684\u4e9e\u6b77\u676d\u5fb7\u7f85\u00b7\u8377\u591a\u7f85\u65af\u57fa"} +{"id": "1004419", "video_name": "51b03a3d-6e09-5c5e-a687-2f5f51776077", "text": "\u6bd5\u52a0\u7d22\u7a7f\u7740\u725b\u4ed4\u5e3d\uff0c\u5728\u6c99\u6f20\u80cc\u666f\u4e0b\u7ed8\u753b\uff0c\u9ad8\u6e05\u753b\u8d28\u3002"} +{"id": "7002673", "video_name": "85386c80-a511-5fc3-9d7d-9b6c682108ea", "text": "\u60f3\u8c61\u4e00\u4e0b\u4e00\u4f4d\u52a8\u753b\u5c11\u5973\u81ea\u6211\u4ecb\u7ecd\u4e3aSaya\uff0c\u58f0\u79f0\u81ea\u5df1\u662f\u4e00\u4e2a\u6d41\u6d6a\u8005\uff0c\u5bfb\u6c42\u907f\u5bd2\u4e4b\u6240\u3002"} +{"id": "6004145", "video_name": "cf3e55e6-baed-59f3-b287-63d0f0c540ea", "text": "\u843d\u4e0b\u7684\u6a31\u82b1\u82b1\u74e3\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "6002670", "video_name": "9cac217a-f3e0-585c-8c18-e0f23678bf6e", "text": "\u4e00\u8f86\u9ed1\u8272\u7684\u5170\u535a\u57fa\u5c3c\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u98de\u9a70\uff0c\u7531\u65e0\u4eba\u673a\u62cd\u6444\u7684\u7a7a\u4e2d\u955c\u5934\u3002"} +{"id": "1006849", "video_name": "7d250498-dd03-57e9-a13c-671e87ce595e", "text": "\u4e00\u4e2a\u5149\u5934\u3001\u6709\u7ea2\u8272\u80e1\u987b\u548c\u84dd\u8272\u773c\u775b\u7684\u7537\u4eba\u53d8\u6210\u4e86\u4e00\u4e2a\u795e\u3002"} +{"id": "8003396", "video_name": "95d7c660-d14e-594c-b38c-76a208f3a86c", "text": "\u865a\u5e7b\u5f15\u64ce\u548c\u60a8\u7684\u68a6\u60f3\u7684\u9ed8\u8ba4\u503c\u3002"} +{"id": "3005624", "video_name": "529bf9e0-b9c5-5b6b-93ed-935715f62c60", "text": "\u4e00\u4e2a\u4eba\u6b63\u9762\u671d\u7740\u7535\u8111\u5c4f\u5e55\u5de5\u4f5c\uff0c\u4e13\u6ce8\u5730\u52aa\u529b\u7740\uff0c\u684c\u5b50\u6574\u6d01\u6709\u5e8f\u3002"} +{"id": "7004121", "video_name": "cb885c2b-667d-57fa-af7f-ab2228df89ad", "text": "\u672a\u6765\u9152\u74f6\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\u3002"} +{"id": "7002870", "video_name": "7ca77265-91f2-5fd4-99a0-44dc77378f05", "text": "30\u79d2\u5faa\u73af\u89c6\u9891\u3002\u70db\u5149\u6447\u66f3\uff0c\u9e1f\u513f\u98de\u7fd4\uff0c\u6811\u6728\u6447\u6643\uff0c\u4e91\u5f69\u98d8\u52a8\uff0c4K UHD\u3002"} +{"id": "8002553", "video_name": "dc20bda9-08a8-5185-8e94-ebde8819aedf", "text": "\u4ed6\u559c\u6b22\u9017\u4eba\u4eec\u7b11\uff0c\u4f46\u6709\u65f6\u4ed6\u7684\u6076\u4f5c\u5267\u4f1a\u592a\u8fc7\u5206\u3002"} +{"id": "4002484", "video_name": "b48537ed-2419-5711-84ce-f41968ed473b", "text": "\u5c0f\u574e\u54c8\u662f\u4e00\u4e2a\u53ef\u7231\u76843D\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "4003585", "video_name": "3ee2fd6d-9c56-5ce6-b79b-b4bdf3e5d8fc", "text": "\u65e9\u6625\u65f6\u8282\uff0c\u83e9\u63d0\u6811\u679d\u4e0a\u7684\u53f6\u5b50\u8fc5\u901f\u751f\u957f\u5e76\u5f00\u82b1\uff0c\u5728\u767d\u8272\u80cc\u666f\u4e0b\u4ee5\u5fae\u8ddd\u62cd\u6444\u65b9\u5f0f\u5c55\u73b0\u3002"} +{"id": "6004068", "video_name": "6d4fc215-3926-5a40-812f-d77d93e06cb5", "text": "Source sentence: \u5728\u5efa\u7b51\u7269\u4e4b\u95f4\u7684\u8857\u9053\u4e2d\u5fc3\u8fdb\u884c\u4e86\u7535\u5f71\u822c\u7684\u7279\u5199\uff0c\u591c\u665a\u7684\u57ce\u5e02\u4e0b\u96e8\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u6709\u7c92\u5b50\u6548"} +{"id": "7004049", "video_name": "1b2d6f75-dfa7-59c3-8173-786a80156071", "text": "\u6d1b\u5fb7\u00b7\u62c9\u59c6\u7684\u63d2\u56fe\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004642", "video_name": "a238c90b-3f58-5dd4-88b1-15a320e1da52", "text": "\u811a\u8e29\u5728\u53f2\u83b1\u59c6\u4e0a\uff0c\u5f69\u8679\u8272\u7684\u5149\u8292\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0cGoPro \u62cd\u6444\uff0c\u4fef\u89c6\u3002"} +{"id": "1006792", "video_name": "7c6b750c-f20b-5e61-8152-b9ce84755edc", "text": "\u81ea\u5b9a\u4e49Sonic 16\u4f4d\u6e38\u620f\u6807\u9898\u753b\u9762\u3002"} +{"id": "5001381", "video_name": "2edc111c-bbfc-5720-b466-cbdce4e8e11f", "text": "\u4e00\u4e2a16:9\u7684\u52a8\u6f2b\u98ce\u683c\u7684\u5927\u667a\u80fd\u7535\u89c6\u5c4f\u5e55\u3002"} +{"id": "2003432", "video_name": "965fa46b-b86c-52dd-974c-c6bb2ff1c318", "text": "\u5728\u4e00\u95f4\u5bbd\u655e\u7684\u623f\u95f4\u548c\u5de8\u5927\u7684\u5e8a\u4e0a\u7761\u89c9\u5e76\u76d6\u7740\u88ab\u5b50\u7684\u7537\u4eba\u7684\u89c6\u9891"} +{"id": "6004746", "video_name": "1a692808-6bed-5a6e-b44a-39f0860e6e50", "text": "\u751c\u6c34\u6c9f\u76843D\u52a8\u753b\u3002"} +{"id": "0006165", "video_name": "279365f8-26bb-5c6d-b73a-09c7ad3e5e25", "text": "\u4e4c\u9e26\u548c\u9e1f\u513f\u6b64\u65f6\u5728\u4ee5\u5361\u901a\u98ce\u683c\u7684\u5f62\u5f0f\u5e2e\u52a9\u6751\u6c11\u627e\u5230\u65b0\u7684\u6c34\u6e90\u3002"} +{"id": "3003699", "video_name": "986491a6-c4a7-5c9f-bfe0-bd0bd49d6848", "text": "\u6885\u8d5b\u5fb7\u65af\u5982\u4f55\u5728\u8fd9\u4e9b\u5e74\u91cc\u53d1\u5c55\u6f14\u53d8\u3002"} +{"id": "3006072", "video_name": "340ebb5f-f2a8-51fb-8754-6baad8e6c4da", "text": "\u4e00\u4e2a\u51e0\u4f55\u5706\u9876\u6c99\u6f20\u793e\u533a\uff0c\u4e00\u4e2a\u4eba\u9a91\u9a6c\u7ecf\u8fc7\u3002"} +{"id": "0004134", "video_name": "03d71294-1b83-5914-8d37-83fe5ed19bc9", "text": "\u521b\u4f5c\u4e00\u79cd\u7eaa\u5f55\u7247\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5c55\u793a\u79d1\u5b66\u5bb6\u5236\u9020\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "2007473", "video_name": "a3e63d3d-2cc8-5c98-8444-651aaccfec3f", "text": "\u4e00\u4e2a\u6c99\u6f0f\uff0c\u7ea2\u8272\u6c99\u5b50\u6ef4\u843d\uff0c\u80cc\u666f\u662f\u7ea2\u8272\u661f\u7403\u548c\u592a\u9633\u3002"} +{"id": "1006363", "video_name": "7493b70d-a8d5-5e0e-878d-923a358bcb8a", "text": "\u4e00\u4f4d\u63a5\u4e00\u4f4d\uff0c\u5c0f\u7ec4\u6210\u5458\u5f00\u59cb\u6d88\u5931\u3002\u4f7f\u7528\u5feb\u901f\u5207\u6362\u548c\u60ca\u5413\u6765\u5236\u9020\u6df7\u4e71\u548c\u6050\u614c\u611f\u3002\u4ed6\u4eec\u7684\u624b\u7535\u7b52\u95ea"} +{"id": "3004259", "video_name": "1605a4c2-d358-58a1-8ce6-df5202c0a9f9", "text": "\u4e00\u4e2a\u574f\u7537\u5b69\u4ece\u4ed6\u7684\u8f66\u91cc\u51fa\u6765\uff0c\u770b\u7740\u6444\u50cf\u673a\uff0c\u6770\u4f5c\u955c\u5934\u3002"} +{"id": "6003695", "video_name": "8f8b977a-fc48-5f10-9db9-eb48cc1b1888", "text": "\u4e00\u6761\u9c7c\u662f\u8d85\u4eba\uff0c\u6e38\u52a8\u5728\u4e91\u4e2d\u3002"} +{"id": "1005644", "video_name": "67bcb7be-9ce5-5809-9566-f5ec68eb838b", "text": "\u6a21\u7279\u65f6\u5c1a\u513f\u7ae5\u9ad8\u6e05\u6670\u5ea6\u5916\u89c2"} +{"id": "5001355", "video_name": "caeffab9-ba8d-536e-b185-afd1b6ed37e3", "text": "\u5929\u4f7f\u5760\u843d\uff0c\u5929\u7a7a\uff0c\u9ed1\u6697\uff0c\u95ea\u7535\uff0c\u4ece\u9ad8\u5904\u5760\u843d\uff0c\u4f38\u51fa\u624b\u3002"} +{"id": "1003490", "video_name": "40ad28c4-845d-56ed-9805-3c3ee07bea4b", "text": "\u5929\u7a7a\u6709\u96fe\uff0c\u9ec4\u8272\u7684\u5bfa\u5e99\u3002"} +{"id": "2007071", "video_name": "4dae2dd8-e79d-5197-be3a-24a56522a20b", "text": "\u8fc7\u6e21\u5230\u4e00\u4e2a\u5145\u6ee1\u7740\u7a7f\u7740\u4f18\u96c5\u7684\u5438\u8840\u9b3c\u7684\u5927\u578b\u821e\u5385\u3002\u4ed6\u4eec\u5e94\u8be5\u4f18\u96c5\u5730\u8df3\u821e\uff0c\u773c\u775b"} +{"id": "2005704", "video_name": "35375e58-d854-56fd-8454-af0dd1f71d16", "text": "\u5b87\u5b99\u57fa\u7763\u5728\u8ff7\u5e7b\u91d1\u5c5e\u4e50\u961f\u4e2d\u6f14\u5531\uff0cMotion 4\u3002"} +{"id": "3005478", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "\u7741\u5f00\u773c\u775b\uff0c\u52a8\u52a8\u624b\u81c2\u548c\u5934\uff0c\u5a74\u513f\u8036\u7a23\u5728\u5145\u6ee1\u5e72\u8349\u7684\u9a6c\u69fd\u91cc\uff0c\u5468\u56f4\u662f\u53d1\u7740"} +{"id": "2006738", "video_name": "7504bc48-63be-503e-a5d7-19d50e36717b", "text": "\u5728\u6c99\u6f20\u4e2d\u7684\u4e00\u7fa4\u5b69\u5b50\u5728\u6c34\u5751\u91cc\u73a9\u3002"} +{"id": "0004972", "video_name": "12866f2c-cc92-51d8-96c4-b42f3bfa5073", "text": "\u4e00\u53ea\u7a7f\u7740\u5fcd\u8005\u670d\u88c5\u7684\u732b\uff0c4K\u3002"} +{"id": "3006316", "video_name": "15574f88-aafd-502f-a8b9-9bd2b96eeaec", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u515c\u5e3d\u7684\u5c0f\u4eba\u8f6c\u52a8\u7740\u5e78\u8fd0\u8f6e\u3002"} +{"id": "0005408", "video_name": "1a5103a6-1ebc-5ac2-85b8-1140c55ad159", "text": "\u5173\u4e8e\u8fd9\u4e2a\u8033\u673a\u6536\u7eb3\u76d2\u5236\u4f5c\u4e00\u4e2a20\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "7004360", "video_name": "f8677713-90ec-5de9-9b48-a278c7f475f5", "text": "\u4e00\u90e8\u5173\u4e8e90\u5e74\u4ee3\u8d85\u73b0\u5b9e\u7684\u8d5b\u9a6c\u9526\u6807\u8d5b\u7684\u7535\u5f71\u3002"} +{"id": "1004123", "video_name": "4c60cd07-0529-5d1f-9917-59bf7c89b904", "text": "\u4e00\u4e2aYouTube\u89c6\u9891\u65e5\u5fd7\u9891\u9053\u7684\u6807\u5fd7\u88ab\u79f0\u4e3a\u201cPRADEEP the vlogger\u201d\u3002"} +{"id": "3006506", "video_name": "86d2699c-d342-5069-a489-98bfdcac9089", "text": "\u591c\u665a\u8857\u5934\u4e09\u4e2a\u53ef\u6015\u7684\u7537\u4eba\uff0c\u9762\u5bb9\u4e0a\u9732\u51fa\u5927\u8ba1\u5212\u3002"} +{"id": "3005248", "video_name": "8ce74e95-4e80-53fa-b8d9-69467dfedc38", "text": "\u53d1\u5149\u7684\u9713\u8679\u85e4\u8513\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u5b83\u4eec\u7684\u5149\u7ebf\u8df3\u52a8\u7740\uff0c\u4e0e\u4e0b\u9762\u7684\u751f\u7269\u53d1\u5149\u76f8"} +{"id": "2006808", "video_name": "a5fa75f8-d7c5-581a-a7b1-0c8b233b93c6", "text": "\u8ff7\u5e7b\u827a\u672f\u98ce\u683c\u5728\u62bd\u8c61\u573a\u666f\u4e2d\uff0c\u5fae\u7b11\u7684\u9762\u5b54\uff0c\u7ec6\u8282\uff0c\u602a\u5f02\u6838\u5fc3\uff0c\u5e7d\u9ed8\u3002"} +{"id": "8003323", "video_name": "10d41da7-4e71-56b5-b2b1-15669f10434a", "text": "\u52a8\u7269\u4eec\u805a\u96c6\u5728\u68ee\u6797\u91cc\u6b22\u5feb\u5730\u7b11\u7740\u63a2\u9669\u3002\n\nSource sentence: The sun sets behind the mountains, painting the sky with shades of pink and orange. \n\n\u592a\u9633\u5728"} +{"id": "3005436", "video_name": "32347b67-2430-5afa-b507-d95670bb70d7", "text": "\u57281970\u5e74\uff0c\u8d70\u5728\u519c\u6751\u68ee\u6797\u4e2d\u7684\u4eba\u88ab\u58eb\u5175\u7ed1\u67b6\uff0c\u60c5\u51b5\u5341\u5206\u7c97\u7cd9\u3002"} +{"id": "8003865", "video_name": "21287fe0-ae50-5c4d-b0ee-8c82767c7c72", "text": "\u4ed3\u5e93\u5de5\u4eba\u5728\u7ecf\u7406\u7ecf\u8fc7\u65f6\u88c5\u6b7b\u3002"} +{"id": "0003959", "video_name": "008cd034-c583-5c3b-a74f-bd318e468107", "text": "\u4eba\u4eec\u5728\u77ff\u4e95\u4e2d\u8f9b\u52e4\u5de5\u4f5c\uff0c\u4ee5\u68b5\u9ad8\u7684\u98ce\u683c\u8868\u73b0\u3002"} +{"id": "5001962", "video_name": "fb1e035c-0b7b-5096-8dff-c603f129c64f", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u753b\u4e0a\u6d41\u6cea\u4e86\u3002"} +{"id": "7003416", "video_name": "2e40399d-5dcd-5234-b1f0-350e66660928", "text": "10\u5c81\u7537\u5b69\u7684\u5f62\u8c61"} +{"id": "0005560", "video_name": "1cf16905-adb0-563a-98af-bbe0a59a30f4", "text": "\u4e00\u540d\u4e2d\u5e74\u5987\u5973\uff0c\u68d5\u8272\u5934\u53d1\u548c\u6e29\u6696\u7684\u8138\u5b54\uff0c\u5728\u79cb\u5929\u7684\u6797\u95f4\u5c0f\u9053\u4e0a\u72ec\u81ea\u884c\u8d70\uff0c\u9ec4\u660f\u65f6\u5206"} +{"id": "2007052", "video_name": "cbddd9e2-3e55-56b9-98e6-633281ab65c5", "text": "\u4e2d\u4e16\u7eaa\u4eba\u8bb2\u6545\u4e8b\u5e76\u6ce8\u89c6\u7740\u6444\u50cf\u673a\u3002"} +{"id": "2005271", "video_name": "76bae47a-3fdf-583c-a99e-de5d23daf74c", "text": "\u5361\u65af\u4f2f\u8bd5\u56fe\u63a5\u8fd1\u6751\u6c11\u7684\u7167\u7247\uff0c\u4f46\u4ed6\u4eec\u56e0\u4e3a\u5bb3\u6015\u800c\u9003\u8dd1\uff0c\u7559\u4e0b\u4ed6\u5931\u843d\u7684\u8868\u60c5\u3002"} +{"id": "7003746", "video_name": "161bb6bc-b345-5966-8ae3-1f14f6488d00", "text": "\u6211\u60f3\u5728\u5c71\u6d77\u4e4b\u95f4\u770b\u5230\u96ea\u3002"} +{"id": "2003493", "video_name": "795e6d94-cf07-5bc9-9580-d11e74065206", "text": "\u7528\u5c71\u3001\u9ad8\u697c\u5927\u53a6\u3001\u5b87\u5b99\u98de\u8239\u3001\u6e56\u6cca\u548c\u68ee\u6797\u6765\u63cf\u8ff0\u6211\u5bb6\u4e61\u7684\u672a\u6765 \u0110ak Ha\u3002"} +{"id": "2004030", "video_name": "5955afe4-0086-52eb-b7f0-7df319e1492a", "text": "\u5973\u5b69\u5c55\u5f00\u53cc\u624b\uff0c\u98ce\u683c\u4eff\u4f5b\u5b89\u5a1c\u00b7\u5df4\u5207\u5229\u8036\u3002"} +{"id": "2006766", "video_name": "d1eda9c9-a2a4-50de-8bac-90b3386013bd", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u9009\u62e9\u8def\u7ebf\u3002"} +{"id": "8002716", "video_name": "50cbe559-491c-5192-b309-9dda4d9c6ebb", "text": "\u8c01\u58f0\u79f0\u6728\u5728\u88ab\u6bc1\u524d\u4f4d\u4e8e\u592a\u5e73\u6d0b\uff1f"} +{"id": "0004152", "video_name": "042f3d4e-9e50-5550-bd9c-8322d9a30937", "text": "\u52a8\u6f2b\u89d2\u8272\u751c\u7f8e\u7684\u957f\u7c89\u8272\u5934\u53d1\u5973\u5b69\uff0c\u624b\u6301\u4e00\u628a\u5200\u5fae\u7b11\u7740\u7ad9\u7740\u3002"} +{"id": "1004178", "video_name": "4d59e16d-9e33-5661-b111-5ed2ac029de7", "text": "\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u58eb\u6b63\u5728\u65e9\u6668\u8d70\u5411\u5927\u6d77\u3002"} +{"id": "8002308", "video_name": "c221814c-145f-5b38-ae5b-7d33fb6e60f5", "text": "\u8d85\u903c\u771f\u7684\u53ef\u7231\u7070\u8272\u7334\u5b50\u7a7f\u7740\u7f8e\u56fd\u961f\u957f\u670d\u88c5\u4e3a\u6211\u7684\u65f6\u5c1a\u54c1\u724c\u6253\u9020\uff0c\u5e26\u6709\u5706\u5f62\u773c\u955c\u3001\u6709\u8da3"} +{"id": "2007154", "video_name": "85053e22-72a5-5016-b5f1-5605d4404381", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u4ee5\u5168\u9ad8\u6e054K\u771f\u5b9e\u7684\u65b9\u5f0f\u8df3\u821e\u3002"} +{"id": "0005299", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "\u590d\u53e4\u3001\u5973\u5b69\u3001\u4e66\u3001\u9605\u8bfb\u3001\u57ce\u5e02\u30011970\u5e74\u4ee3 \n\nSource sentence: Can you recommend a good restaurant nearby? \n\u8bf7\u95ee\u60a8\u80fd\u63a8\u8350\u9644\u8fd1\u6709\u597d\u7684\u9910"} +{"id": "8003073", "video_name": "f2d4911f-4e46-5de3-8960-ae8d138fc54f", "text": "\u4e00\u4f4d\u8ba2\u5a5a\u7684\u5973\u5b50\u5728\u516c\u4f17\u9762\u524d\u7275\u7740\u53e6\u4e00\u4e2a\u7537\u4eba\u7684\u624b\u9003\u79bb\u5a5a\u59fb\u3002"} +{"id": "3005142", "video_name": "f5283409-db82-506f-b41d-5289414ab466", "text": "\u6355\u6349\u5411\u6536\u5bb9\u6240\u4e2a\u4eba\u9001\u793c\u7269\u7684\u60c5\u611f\u65f6\u523b\uff0c\u5c55\u793a\u62e5\u62b1\u3001\u5fae\u7b11\u548c\u5728\u8fd9\u4e2a\u5145\u6ee1\u6e29\u6696\u548c\u8054\u7cfb\u7684\u6df1\u523b"} +{"id": "7002464", "video_name": "926ecef3-89ec-5ba2-9cc7-66e30fe1d391", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u5728\u4ed6\u7684\u529e\u516c\u684c\u4e0a\u505a\u4fef\u5367\u6491\u3002"} +{"id": "3003459", "video_name": "0686f15a-46c1-53ad-9cc3-54d3864a0a4b", "text": "\u76f4\u5347\u673a\u5728\u592a\u7a7a\u4e2d\u7684\u7279\u5199\u3002"} +{"id": "0005402", "video_name": "1a33409d-18ac-5362-93be-ad6e1c3c35fe", "text": "\u4ed6\u4eec\u7684\u76ee\u5149\u76f8\u9047\uff0c\u4eff\u4f5b\u65f6\u95f4\u505c\u6ede\u4e86\u3002"} +{"id": "7004738", "video_name": "39608da3-25cc-59ca-95b1-6929a1a5bcd5", "text": "\u4e00\u6b21\u62bd\u8c61\u7684\u8ff7\u5e7b\u8611\u83c7\u4e4b\u65c5\uff0c\u9a0e\u8457\u4e00\u80a1\u8272\u5f69\u7e7d\u7d1b\u7684\u539a\u91cd\u7f8e\u9e97\u9ad8\u5ea6\u8a73\u7d30"} +{"id": "8003718", "video_name": "6fd20366-100e-5a9e-9423-5bbb1eaef40a", "text": "\u4e00\u4f4d\u6f02\u4eae\u5973\u5b69\u6b63\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u5411\u540e\u8d70\uff0c\u6444\u50cf\u673a\u8ddf\u968f\u5176\u62cd\u6444\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "3006994", "video_name": "baab6068-1f05-5f9e-b77a-2127fe1176a0", "text": "\u5ba4\u5185\u9ad8\u5929\u82b1\u677f\u5ba2\u5385\u6728\u8d28\u8bbe\u8ba1\u52a8\u753b\u573a\u666f\u3002"} +{"id": "4004568", "video_name": "5a96e5b2-41e3-516f-b5ce-0b6766c21e5e", "text": "\u4e4c\u9e26\u560e\u560e\u53eb\uff0c\u5931\u671b\u548c\u6cae\u4e27\u5730\u610f\u8bc6\u5230\u81ea\u5df1\u88ab\u9a97\u4e86\u3002(\u4f7f\u7528\u660e\u4eae\u3001\u4e30\u5bcc\u591a\u5f69\u3001"} +{"id": "4002525", "video_name": "67ecc303-ce8b-5a3e-9fe0-bc2144faa9ba", "text": "Translation: \u6770\u5e03\u00b7\u5e03\u4ec0\u626d\u52a8\u7740\u8eab\u4f53\u8df3\u7740 Soulja Boy \u7684\u821e\u3002"} +{"id": "4004333", "video_name": "d0eff39d-0c48-5a75-aa91-8b7dbba12ac7", "text": "Source sentence: MASHA \u4fe1\u606f\uff1a\u4e1b\u6797\uff0c\u6500\u722c\u690d\u7269\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002637", "video_name": "46089f2d-d85e-548a-98af-b1a5adcea3bf", "text": "\u5728\u4e1c\u4eac\u7684\u534a\u591c\uff0c\u4fdd\u65f6\u6377\u8f66\u5728\u57ce\u5e02\u4e2d\u884c\u9a76\u3002"} +{"id": "6002395", "video_name": "7cd64152-4ca7-5e40-9b23-e32f763a5bd7", "text": "\u57ce\u5e02\u5206\u88c2\u3002\u897f\u90e8\u6c38\u8fdc\u9633\u5149\u660e\u5a9a\u6e29\u6696\uff0c\u4e1c\u90e8\u603b\u662f\u88ab\u96e8\u96fe\u7b3c\u7f69\u3002\u4e2d\u90e8\u662f\u5404\u533a\u4e4b\u95f4\u7684\u4e2d\u7acb"} +{"id": "0005742", "video_name": "2076f93e-b344-5d88-a938-92489c0020eb", "text": "\u4e00\u4e2a\u7a7f\u7740\u53e4\u9a70\u8863\u670d\u7684\u7537\u4eba\u6234\u4e0a\u773c\u955c\u3002\u5f88\u597d\u7684\u7ec6\u8282\u3002\u4e00\u5219\u5546\u4e1a\u5e7f\u544a\u3002"} +{"id": "2004170", "video_name": "ee4c1a59-5645-5a4c-8789-08107314f4ae", "text": "\u84dd\u8272\u7684\u9ad8\u6d6a\u3002\u4fe1\u606f\uff1a\u4e13\u5bb6\u7ebf\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004243", "video_name": "fc51dc82-b384-5872-8183-8e6ba45b2252", "text": "\u4e00\u4e2a\u7537\u5b69\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u5750\u5728\u5efa\u7b51\u7269\u4e2d\u95f4\u7684\u4e00\u95f4\u623f\u95f4\u91cc\u3002\u4ece\u5916\u9762\u62cd\u6444\uff0c\u5176\u4ed6\u623f\u95f4\u7684\u706f\u90fd\u5173\u95ed\u4e86\u3002"} +{"id": "3006310", "video_name": "eadb5251-2aaa-54f7-95f3-1e4eea3af21a", "text": "\u4f7f\u8fd9\u5f20\u56fe\u7247\u52a8\u8d77\u6765\uff0c\u8ba9\u9e66\u9e49\u7728\u7728\u773c\u775b\u5e76\u79fb\u52a8\u3002"} +{"id": "4003740", "video_name": "6c3fb930-5b40-5667-b840-0a3451539c2d", "text": "\u706f\u6ce1\u95ea\u70c1\u7740\u5f00\u5173\u3002"} +{"id": "4002906", "video_name": "73b6af7b-20a0-5fe0-89b2-69fc6651aafd", "text": "\u5929\u5802\u3001\u91d1\u9970\u3001\u95ea\u8000\u3001\u5149\u8292\u3001\u771f\u5b9e"} +{"id": "5001759", "video_name": "75b0dc60-80ec-5a1f-b8dd-d93a561e70c6", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u5728\u4e0b\u96e8\u65f6\u9a91\u7740\u8fd0\u52a8\u6469\u6258\u7a7f\u8fc7\u57ce\u5e02\u3002 \n\nSource sentence: The smell of freshly baked bread filled the bakery. \n\n\u65b0\u9c9c"} +{"id": "2005463", "video_name": "1f1eb8bd-c495-5787-b9a3-d9d57aa9df28", "text": "\u52a0\u52d2\u6bd4\u68ee\u6797\u548c\u90e8\u843d\u5728\u80cc\u666f\u4e2d\uff0c\u52a0\u52d2\u6bd4\u571f\u8457\u7ad9\u6210\u4e00\u6392\uff0c\u5bf9\u7740\u624b\u6301\u67aa\u652f\u7684\u897f\u73ed\u7259\u519b\u961f\uff1b"} +{"id": "1004081", "video_name": "4ba13643-e8a8-53e9-80af-9f231e2c6ffd", "text": "\u5728\u65e5\u843d\u65f6\u5206\uff0c\u4e00\u4e2a\u6f02\u4eae\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u6237\u5916\u9152\u5427\u5531\u6b4c\uff0c\u70ed\u5e26\u6d77\u6ee9\u4e0a\u8fd8\u6709\u51e0\u4e2a\u821e\u8005\u3002\n\n"} +{"id": "3003374", "video_name": "f0b3b57c-b396-5b2c-af44-481f462d97ba", "text": "\u4e00\u4f4d\u53a8\u5e08\u76f4\u89c6\u955c\u5934\uff0c\u60ca\u8bb6\u5730\u7741\u5927\u4e86\u773c\u775b\u3002"} +{"id": "8003805", "video_name": "5d0f5d73-4ec8-52ce-a7d8-6392235a1e42", "text": "\u6d3b\u7740\u7684\u6811\u6797\u4ee5\u73b0\u4ee3\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2006963", "video_name": "233627c3-2bb2-5454-ab62-80e5d761521f", "text": "\u8759\u8760\u4fa0\u548c\u5c0f\u4e11\u3002\u9ad8\u6e05\uff0c\u903c\u771f\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "4003982", "video_name": "638ce641-1858-555b-92e9-913462339dbb", "text": "\u5929\u7a7a\u6f06\u9ed1\u4e00\u7247\uff0c\u6ca1\u6709\u661f\u661f\u3002\u5730\u9762\u4e0a\u5145\u6ee1\u4e86\u7070\u5c18\u548c\u5783\u573e\uff0c\u6ca1\u6709\u4e00\u4e1d\u751f\u547d\u7684\u75d5\u8ff9\u3002\u6b8b\u8d25\u7684\u5efa"} +{"id": "7002903", "video_name": "b9af1d28-a754-5899-950f-bf0f2f4bd42f", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u67ef\u57fa\u73a9\u800d\u3002"} +{"id": "4004702", "video_name": "6df5cbfc-4fed-5d5a-acdc-691b85f3fa6b", "text": "\u4ece\u76f8\u673a\u540e\u9762\u8ddf\u968f\u4fa6\u63a2\u7ea6\u7ff0\u00b7\u79d1\u8bfa\u7a7f\u8fc7\u829d\u52a0\u54e5\u5e02\u4e2d\u5fc3\u7684\u8857\u9053\u3002\u592a\u9633\u7167\u8000\u5728\u955c\u5934\u4e0a\uff0c"} +{"id": "8003677", "video_name": "b8ebd932-9379-5105-985d-4be468f7bec8", "text": "\u4e00\u8258\u5927\u5e06\u8239\u5728\u6c34\u5e93\u4e2d\u7281\u5f00\u6c34\u9762\u3002"} +{"id": "0005803", "video_name": "217ee36b-745c-593a-82ba-eed12bd54062", "text": "\u5965\u666e\u8482\u9ed8\u730e\u6237\u5ea7\u666e\u745e\u59c6\u6b63\u5728\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "5001281", "video_name": "6131c7c3-1fa1-514c-ba64-47dd6581693b", "text": "\u4ed6\u7684\u6bdb\u76ae\u548c\u4ed6\u811a\u4e0b\u7684\u80a5\u6c83\u571f\u5730\u4e00\u6837\u68d5\u8272\u3002"} +{"id": "4003874", "video_name": "703d8070-7adc-5e2d-b34d-656944f557a9", "text": "\u5e7f\u9614\u7684\u89c6\u91ce\uff0c\u7fe0\u7eff\u7684\u9ad8\u5c71\u8349\u7538\uff0c\u8f7b\u67d4\u7684\u7a7a\u6c14\uff0c\u6e29\u548c\u7684\u53f6\u5b50\u548c\u98d8\u52a8\u7684\u4e91\u5f69\u3002"} +{"id": "1005733", "video_name": "697b38f8-108b-5ae6-9033-501a5427b843", "text": "\u4e00\u4e2a\u5973\u5b69\u4ed4\u7ec6\u5730\u770b\u7740\u76f8\u673a\u3002"} +{"id": "3005231", "video_name": "d9ae5fcf-84f5-5a19-9c7a-3190dd01309c", "text": "\u5728\u4e00\u95f4\u6f02\u4eae\u7684\u6cd5\u5f0f\u53a8\u623f\u91cc\uff0c\u7528\u5e73\u5e95\u9505\u716e\u9e21\u86cb\uff0c\u65c1\u8fb9\u8fd8\u6709\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4ec6\u89c2\u770b"} +{"id": "0004364", "video_name": "07d2b4d5-7478-59fb-8d12-a8d479c8a47c", "text": "\u521b\u9020\u4e00\u4e2a\u6a21\u7cca\u7684\u9ed1\u6697\u80cc\u666f\uff0c\u770b\u4e0d\u5230\u4efb\u4f55\u4e1c\u897f\u3002\u7136\u540e\u5c4f\u5e55\u53d8\u5f97\u6e05\u6670\uff0c\u7126\u70b9\u96c6\u4e2d\uff0c\u6570\u636e\u70b9\u50cf\u6d41\u661f\u4e00\u6837\u5728"} +{"id": "7003844", "video_name": "da4be5a1-697b-5cc7-a487-26176b99f0d8", "text": "\u5728\u4e1b\u6797\u5c0f\u8def\u4e0a\u72ec\u81ea\u884c\u8d70\u7684\u5973\u5b69\u548c\u8bb8\u591a\u6811\u82b1\u3002"} +{"id": "1003582", "video_name": "41fa5160-a8d2-5fab-8b8e-d52914c27622", "text": "\u6d77\u8707\u6d82\u9e26\u5728\u706b\u8f66\u8f66\u53a2\u6e38\u8361\uff0c\u955c\u5934\u653e\u5927\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\u827a\u672f\uff0c\u539f\u751f\u6001\u7684\u8fd1\u8ddd\u79bb"} +{"id": "7004274", "video_name": "e268d2b4-c39d-5969-b78a-1028d8319e3d", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u76f4\u64ad\uff0c\u4ed6\u9762\u524d\u6709\u56db\u53f0\u7535\u8111\u663e\u793a\u56fe\u8868\u8fdb\u884c\u4ea4\u6613\u3002"} +{"id": "4002826", "video_name": "fb6c83ff-e1b2-5cf4-a065-62fe391ebc6a", "text": "\u5728\u6811\u836b\u4e0b\uff0c\u62cd\u6444\u4e00\u4e2a\u8d85\u53ef\u7231\u7684\u6cf0\u8fea\u718a\u5750\u7740\uff0c\u5468\u56f4\u6709\u8424\u706b\u866b\uff0c\u5236\u4f5c\u4e00\u6bb5\u4e24\u5206\u949f\u7684\u89c6\u9891\u3002"} +{"id": "8002208", "video_name": "1e7cf9fd-d0e3-5098-b34f-ac9c365157c5", "text": "\u5f3a\u98ce\u5439\u6811\uff0c\u843d\u53f6\u98d8\u96f6\uff0c\u96f7\u7535\u4ea4\u52a0\u3002"} +{"id": "2005729", "video_name": "b86bf887-43c4-546e-89ad-7fa8d2480adf", "text": "\u51a5\u60f3\u4e2d\u7684\u53e6\u4e00\u4e2a\u4e16\u754c\uff0c\u6253\u5f00\u4f60\u7684\u5fc3\u7075\u3002"} +{"id": "4004300", "video_name": "f657f8b8-8011-568b-b428-bcdf3eecaafd", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u548c\u827e\u5fb7\u00b7\u5e0c\u5170\u624b\u7275\u624b\u3002"} +{"id": "6003064", "video_name": "1bff0163-b95c-5995-b5ba-c813c1faa63c", "text": "\u6211\u4eca\u5929\u65e9\u4e0a\u88ab\u8282\u62cd\u58f0\u5435\u9192\u4e86\u3002"} +{"id": "6004297", "video_name": "acba8d7f-f67c-5ddc-8cf2-0803c74083c6", "text": "\u84dd\u8272\u6c34\u9b3c\u4ece\u6ce1\u6cab\u7684\u6d6a\u82b1\u4e2d\u8dc3\u8d77"} +{"id": "0006924", "video_name": "35678897-a294-5f3e-9efa-a2e1b521cb1a", "text": "\u4ed6\u6d88\u5931\u5728\u51b0\u51b7\u7684\u9ed1\u6697\u4e2d\uff0c\u51b7\u5149\u7b3c\u7f69\u7740\u4ed6\u7684\u8eab\u4f53\u3002"} +{"id": "2003999", "video_name": "42ed05b4-444a-51bf-a85b-1d10c4ac5fb9", "text": "\u5916\u661f\u7403\u4e0a\u7684\u7eff\u8272\u68ee\u6797\uff0c\u6709\u4e00\u4e9b\u751f\u7269\u3002"} +{"id": "7003320", "video_name": "a6cae96a-433e-5d68-b2c4-3e797a7533dd", "text": "\u6559\u5802\u91cc\u6709\u4e2a\u4e0d\u8ba4\u8bc6\u7684\u4eba\u5728\u665a\u4e0a\u6253\u9f13\u3002"} +{"id": "7004783", "video_name": "a5db71f8-f6bf-566c-81f1-39ea80ef96c5", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u5730\u65b9\uff0c\u6218\u573a\uff0c\u5bd2\u51b7\u7684\u73af\u5883\uff0c\u4e24\u4e2a\u6218\u4e89\u519b\u961f\uff0c\u903c\u771f\uff0c\u9177\u70ab\uff0c\u53f2\u8bd7\u822c\u7684\u73af"} +{"id": "6004795", "video_name": "209817aa-e60e-5bb9-8452-cb1b5829b5e3", "text": "\u5e7b\u60f3\u4e2d\u7684\u706b\u7403\u80cc\u666f\u4e0b\u6e05\u6670\u7684\u5929\u7a7a\u6570\u5b57\u63d2\u56fe\uff0c\u706b\u7130\u5728\u79fb\u52a8\u3002"} +{"id": "2007480", "video_name": "fda7e23f-207f-5d48-b63c-86b2b1f8e804", "text": "\u6ed1\u677f\u7ffb\u8f6c\uff0c\u817f\u5728\u79fb\u52a8\u3002"} +{"id": "8002028", "video_name": "d4e8fb9f-b9e7-50f7-8ec6-871fc1d0d556", "text": "\u5f15\u5bfc\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "1005700", "video_name": "68d2583c-961c-513b-8e8a-b9644c122297", "text": "\u6d77\u6ee9\u4e0a\u770b\u5230\u5de6\u53f3\u4e24\u8fb9\u6709\u4e00\u4e9b\u68d5\u6988\u6811\uff0c\u6d77\u6c34\u7f13\u7f13\u5730\u6d41\u52a8\uff0c\u5448\u73b0\u51fa\u9633\u5149\u4e0b\u8f7b\u677e\u7684\u5ea6\u5047\u6c1b"} +{"id": "0004116", "video_name": "037a9a36-024e-5389-9ff9-2aa11fbfb9a4", "text": "\u56fd\u738b\u5750\u5728\u6cb3\u8fb9\u7684\u4e00\u68f5\u6811\u4e0b\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u795e\u5728\u6c34\u4e0a\u884c\u8d70\u3002"} +{"id": "7004199", "video_name": "59ea8196-3880-54c6-b4a9-ed47651441fe", "text": "\u201c\u5927\u4f7f\u4eec\u201d\u4e2d\u7684\u4e24\u4e2a\u7537\u5b50\uff0c\u8fd9\u662f\u6c49\u65af\u00b7\u970d\u5c14\u62dc\u56e01533\u5e74\u7684\u4e00\u5e45\u753b\u3002\u4ed6\u4eec\u4e24\u4e2a\u90fd\u5728\u7528\u624b\u673a\u3002"} +{"id": "1003417", "video_name": "3f190665-2a2d-52db-838b-75da636f4bb1", "text": "\u62bd\u8c61\u7684\u9152\u7cbe\u58a8\u67d3\u51fa\u4f18\u7f8e\u7684\u7eb9\u7406\uff0c\u8f7b\u67d4\u5730\u6d41\u6dcc\u3002"} +{"id": "3005045", "video_name": "6363dfb2-4631-5c57-b4dd-f230ac368804", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u5c0f\u5c9b\u5728\u6d77\u7684\u4e2d\u592e"} +{"id": "6004388", "video_name": "5c17843f-c147-5bf8-935b-f3205cf9cc28", "text": "\u8ba9\u8fd9\u4e2a\u4eba\u5411\u5de6\u548c\u5411\u53f3\u770b\u3002"} +{"id": "3005081", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "\u751f\u6210\u4e00\u4e2a\u8d85\u903c\u771f\u7684\u9ad8\u6e05\u753b\u9762\u5c55\u793a\u6218\u5f79\u89c4\u6a21\u548c\u5f3a\u5ea6\uff0c\u5448\u73b0\u9ad8\u52a0\u7f8e\u62c9\u6218\u5f79\u7684\u771f\u5b9e\u573a\u666f\u3002"} +{"id": "8003071", "video_name": "8cb7a61d-b564-5efb-a7c8-e9f4ace432f8", "text": "\u5b89\u8fea\u00b7\u6c83\u970d\u5c14\u5bf9\u7740\u6444\u50cf\u673a\u8bb2\u8bdd\uff0c\u57282023\u5e74\u7684\u82ad\u6bd4\u7535\u5f71\u4e2d\u3002"} +{"id": "1003435", "video_name": "3f6fb8f7-b112-59e6-849c-7ab71589ef51", "text": "\u4e00\u5bb6\u5728\u5df4\u9ece\u8857\u5934\u7684\u7389\u7c73\u5377\u644a\u3002"} +{"id": "3006588", "video_name": "c5d67707-5fd6-5682-b591-896e5893acbc", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u7334\u5b50\u7a7f\u7740\u7ea2\u8272\u7684\u65f6\u5c1a\u592a\u9633\u955c\u548c\u88d9\u5b50\uff0c\u50cf\u8fea\u58eb\u5c3c\u4e00\u6837\u5927\u7b11\u7740\u5632\u7b11"} +{"id": "2007112", "video_name": "a207343e-c812-5dd7-9415-8aeab98b9930", "text": "\u590d\u53e4\u98ce\u683c\u7684\u52a8\u6f2b\u60c5\u4fa3\u5728\u5b87\u5b99\u661f\u7a7a\u73af\u5883\u4e2d\u8df3\u821e\uff0c\u68a6\u5e7b\u7231\u60c5\u7248\u3002\n\nSource sentence: The cat is sleeping on the sofa."} +{"id": "2003066", "video_name": "5d578586-8d1f-5d33-a7a0-46cf7d5c1079", "text": "\u53f0\u5317101\u524d\u7684\u6709\u98ce\u7684\u4e00\u5929"} +{"id": "3005294", "video_name": "88b13847-fe34-56ad-9577-ffaf5fc6d14c", "text": "\u6c7d\u8f66\u5728\u6c34\u4e0a\u884c\u9a76\u4e86100\u79d2\u3002"} +{"id": "8002763", "video_name": "96f440f3-b51b-5fc9-8c60-86e8b778950c", "text": "\u65e9\u4e0a\u5929\u6c14\u6674\u6717\uff0c\u5bb6\u4eba\u5728\u5927\u516c\u56ed\u91cc\u73a9\u800d\uff0c\u611f\u5230\u5e78\u798f\u3002"} +{"id": "6002940", "video_name": "4781553d-2294-5bac-b0ba-3a2b663ba7c5", "text": "\u7c97\u7cd9\u7684\u53e4\u4ee3\u96d5\u5851\u53cc\u773c\u54ed\u6ce3\uff0c\u7279\u5199\u7ec6\u8282\u3002 \n\nSource sentence: The restaurant is located in the heart of the city, with a beautiful view of the river"} +{"id": "7003913", "video_name": "7c32d5ea-e506-5f19-9c5c-b9673b57282b", "text": "\u7070\u8272\u57ce\u5e02\u666f\u89c2\u7684\u822a\u62cd\u89c6\u89d2"} +{"id": "4003686", "video_name": "1a28fe7b-c2bc-59de-a643-b7ba618bf814", "text": "\u53ef\u7231\u7684\u5988\u5988\u5728\u5bb6\u91cc\u505a\u996d\u3001\u804a\u5929\uff0c\u805a\u7126\u4e8e\u9762\u90e8\u76843D\u52a8\u753b\u3002"} +{"id": "2007204", "video_name": "8db810ad-8d08-51c2-9aee-a2fcf22e314b", "text": "\u521b\u9020\u4e00\u4e2a\u559d\u8336\u7684\u8fd0\u52a8\u3002"} +{"id": "7003923", "video_name": "d60054f5-533d-5ac0-a41b-01fae70d0368", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u53d8\u6210\u4e86\u4e00\u53ea\u732b\uff0c\u7531\u5b89\u5c3c\u6208\u5c3c\u3002"} +{"id": "1006981", "video_name": "7fc1ca6f-18fe-5cbf-977a-090ec1b885b6", "text": "\u5df4\u6bd4\u4f26\u7684\u7a7a\u4e2d\u82b1\u56ed\u548c\u9e1f\u513f\u3002"} +{"id": "2003797", "video_name": "adc9e1f2-54ec-5c0a-a478-b8ad1d3112eb", "text": "\u4e00\u53ea\u718a\u732b\u5728\u6cb3\u65c1\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "3003727", "video_name": "b64141f7-b841-5195-a453-c2eb7327e9a1", "text": "2080\u5e74\u5728\u73b0\u4ee3\u57ce\u5e02\u4e2d\u98de\u884c\u7684\u673a\u5668\u4eba\u3002"} +{"id": "1006663", "video_name": "7a0f27f0-3256-5d32-b3b7-f599e7069e24", "text": "\u5973\u4eba\u5728\u8857\u4e0a\u9a7e\u9a76\u6551\u63f4\u8f66\uff0c\u5feb\u901f\u884c\u9a76\uff0c\u955c\u5934\u524d\u666f\u4e3a\u5973\u4eba\u5fae\u7b11\u3002"} +{"id": "8001580", "video_name": "1f3774eb-b0a1-5e98-9a1b-b5f25ecc00de", "text": "\u8d85\u97f3\u901f\u8dd1\u5728\u8857\u4e0a\u9001\u62ab\u8428\u3002"} +{"id": "8001807", "video_name": "04af46c7-7520-57bf-9c09-69b00a4ccbca", "text": "\u96c5\u5404\u6ce2\u00b7\u9f90\u6258\u83ab(Jacopo Pontormo)\u7684\u52a8\u753b\uff0c\u4e00\u4e2a\u5973\u4eba\u6b63\u5728\u5403\u4e00\u4e2a\u7ea2\u82f9\u679c\u3002"} +{"id": "1006003", "video_name": "6e4fb1fa-d951-558d-8a14-31467eafe072", "text": "\u90a3\u628a\u795e\u5947\u7684\u65a7\u5934\u8ba9\u4ed6\u7684\u5de5\u4f5c\u53d8\u5f97\u66f4\u5bb9\u6613\uff0c\u4e0d\u4e45\u4e4b\u540e\uff0c\u62c9\u7ef4\u6210\u4e3a\u4e86\u8be5\u5730\u533a\u6700\u5bcc\u6709\u7684\u4f10\u6728\u5de5\u4eba\u3002"} +{"id": "5001993", "video_name": "a85a6e06-4d74-5fbc-b036-35b31fa24e9a", "text": "\u6d77\u6d6a\u62cd\u6253\u58f0\u3002\u4e00\u4e2a\u4eba\u7ad9\u5728\u90a3\u91cc\u3002\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "3004216", "video_name": "fc9381d9-8f35-569b-ac00-34c5d56756d3", "text": "\u4e00\u4e2a\u5c0f\u578b\u90fd\u5e02\u5b66\u6821\u6559\u5ba4\u7684\u5168\u666f\u89c6\u56fe\uff0c\u540e\u9762\u5750\u7740\u51e0\u4e2a\u57fa\u7840\u5b66\u751f\uff0c\u5750\u5728\u8bfe\u684c\u524d\u4e0a\u8bfe\u3002"} +{"id": "4004745", "video_name": "ea6f4fad-d3fc-570b-bb85-da458c1f599f", "text": "\u9ed1\u8272\u548c\u7ea2\u8272\u7684\u6218\u6597\u673a\uff0c\u4e0a\u9762\u6709\u7ea2\u8272\u7684X\u5b57\u6bcd\uff0c\u6709\u5149\u6cfd\u8d28\u611f\u3002"} +{"id": "3004955", "video_name": "75d0c952-3c7d-5045-a5fb-53f2e5dd6e58", "text": "3D\u52a8\u753b\u8ffd\u8e2a\u5c18\u571f\u98de\u626c\u7684\u5730\u56fe\u4e0a\u892a\u8272\u7684\u7ebf\u8def\u3002"} +{"id": "3003661", "video_name": "08050726-f162-585d-a051-04b57404861d", "text": "\u963f\u6839\u5ef7\u56fd\u65d7\u53d8\u6210\u7f8e\u56fd\u56fd\u65d7\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "7004803", "video_name": "fc28ff71-9682-561d-9d87-f216cfd3e80d", "text": "\u51ac\u5929\u7684\u60c5\u4fa3\u5750\u5728\u957f\u6905\u4e0a\uff0c\u82b1\u513f\u843d\u5728\u4ed6\u4eec\u8eab\u4e0a\uff0c\u9e1f\u513f\u5728\u5541\u557e\u3002"} +{"id": "0006079", "video_name": "264a60c6-db04-50ef-ba2f-528f2aab0069", "text": "\u4e66\u53d8\u6210\u4e86\u4e00\u90e8\u7535\u89c6\u52a8\u753b\u7247\uff0c\u4eae\u84dd\u8272\u3001\u7d2b\u8272\u3001\u9ec4\u8272\u3001\u6a59\u8272\u3001\u7d2b\u8272\u3001\u84dd\u8272\u548c\u91d1\u8272\u683c\u6805\u3002"} +{"id": "2004693", "video_name": "eba6eb3f-5ffc-5c70-91c4-e8ba414f4a19", "text": "\u4e00\u53ea\u9a7c\u9e7f\u5728\u6cb3\u4e2d\u5954\u8dd1\uff0c\u8d85\u5199\u5b9e\uff0c\u4e13\u4e1a\u7684\u56fd\u5bb6\u5730\u7406\u89c6\u9891\uff0c8K\u3002"} +{"id": "2003517", "video_name": "41aed298-81df-5efb-8573-8b7c91b0819a", "text": "\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u5728\u9910\u9986\u91cc\u5403\u6c49\u5821\u3002"} +{"id": "5001221", "video_name": "b830ff62-d541-5fc3-8c36-5565729462fd", "text": "\u8fdc\u5904\u6709\u4e00\u4e2a\u4eba\u5728\u770b\u5c71\uff0c\u4f60\u7684\u811a\u4e0b\u6709\u4e00\u6761\u6cb3\u6d41\uff0c\u5c71\u5761\u4e0a\u6709\u4e91\u5f69\u3002"} +{"id": "7004517", "video_name": "c4c7476d-8cad-54bc-a763-a9cce8f26a53", "text": "\u4e00\u90e8\u8fea\u58eb\u5c3c\u5361\u901a\uff0c\u63cf\u8ff0\u4e86\u4e00\u4e2a\u5feb\u4e50\u7684\u89e3\u5256\u5b66\u4eba\u7c7b\u5fc3\u810f\u3002"} +{"id": "2007921", "video_name": "c7a86586-62a9-56d3-b71d-4b6114513d0f", "text": "\u9ad8\u54c1\u8d28\u624b\u5de5\u7f16\u7ec7\u7684\u85e4\u5bb6\u5177\uff0c4K\uff0c\u8c6a\u534e\u88c5\u7f6e\u3002"} +{"id": "0004012", "video_name": "018c2a32-358f-5234-81e2-63c995e62116", "text": "\u73ab\u7470\u5728\u82b1\u56ed\u4e2d\u6f2b\u6b65\u5e76\u7b11\u7740\u3002"} +{"id": "3005599", "video_name": "bd590a44-89c9-5b76-8e24-0f42ddddf356", "text": "\u5728\u6d77\u4e2d\u521b\u9020\u4e00\u53ea\u96c4\u4f1f\u7684\u5ea7\u5934\u9cb8\u8dc3\u51fa\u6c34\u9762\uff0c\u5c55\u793a\u5b83\u5de8\u5927\u7684\u4f53\u578b\uff0c8K\u771f\u5b9e\u9ad8\u6e05\u54c1\u8d28\u4e14\u9ad8\u5ea6"} +{"id": "4003646", "video_name": "fa564e47-27d5-5d79-aa57-ab8ad05bfe7b", "text": "\u4e00\u5e45\u620f\u5267\u6027\u7684\u753b\u4f5c\uff0c\u63cf\u7ed8\u62ff\u7834\u4ed1\u00b7\u6ce2\u62ff\u5df4\u7387\u9886\u5176\u90e8\u961f\u5728\u5965\u65af\u7279\u5229\u8328\u6218\u5f79\u4e2d"} +{"id": "0004844", "video_name": "1027b57a-b8ae-5b3b-909d-33b3c1179868", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u6a21\u7279\u7a7f\u7740\u83b1\u6069\u52a0\u821e\u8e48\u5728\u5706\u5f62\u9635\u5217\u4e2d\u3002"} +{"id": "4002917", "video_name": "832dc473-340c-5e8d-8ded-0bd45897a007", "text": "\u4e00\u540d\u7a7f\u8457\u8ecd\u88dd\u7684\u58eb\u5175\u809a\u76ae\u821e\u3002"} +{"id": "7003544", "video_name": "95dca12d-1c45-57b2-85d8-e657035d2c99", "text": "\u5728\u5730\u94c1\u91cc\u53d1\u73b0\u4e86\u4e00\u6bb5\u5173\u4e8e\u6076\u9b54\u72fc\u4eba\u9759\u6b62\u4e0d\u52a8\u7684\u5f55\u50cf\u3002"} +{"id": "4004382", "video_name": "cd7dfb14-774c-5e1f-a946-1c6f2a439f83", "text": "\u4e94\u6761\u609f\u7684\u773c\u775b\u5728\u89c2\u770b\u300a\u546a\u8853\u5efb\u6226\u300b\u65f6\u53d8\u7ea2\u4e86\u3002"} +{"id": "0005246", "video_name": "172c8e80-5196-5319-8140-906be6a1171c", "text": "\u4e00\u4f4d\u975e\u6d32\u7403\u5458\u7a7f\u7740\u5168\u5957\u6b27\u6d32\u7403\u8863\u6446\u51fa\u9020\u578b\uff0c\u5c55\u793a\u65b0\u8d5b\u5b63\u8bbe\u8ba1\u5de5\u4f5c\u5ba4\u7684\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "0004832", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "\u94a2\u7434\u97f3\u4e50\u4f1a\u4e0a\u89c2\u4f17\u9f13\u638c\u5e76\u8d77\u7acb\u9f13\u638c\u3002"} +{"id": "6002210", "video_name": "dce2809b-b374-58d3-8bb3-5977682a1361", "text": "\u4e00\u4e2a\u5973\u6027\u5361\u901a\u89d2\u8272\u5728\u767d\u8272\u80cc\u666f\u4e0b\u5411\u955c\u5934\u6325\u624b\u5fae\u7b11\uff0c\u80cc\u666f\u662f\u65e0\u9650\u7684\uff0c\u91c7\u75283D\u52a8\u753b\u827a\u672f\u98ce\u683c\u3002"} +{"id": "3005804", "video_name": "3da7113f-4fd4-5bd5-8a71-5032cd063f8e", "text": "\u4e00\u4e2a\u4eba\u5728\u53ec\u5524\u4ed6\u8eab\u4f53\u91cc\u7684\u5251\uff0c\u5929\u7a7a\u662f\u6df1\u84dd\u8272\u7684\uff0c\u4ed6\u6b63\u9762\u5bf9\u7740\u602a\u7269\u7ad9\u7acb\u3002"} +{"id": "2005549", "video_name": "9e64a8a9-a8b6-5f05-a952-318282a3afb8", "text": "1970\u5e74\u4ee3\uff0c\u4e00\u90e8\u8d858\u9ec4\u91d1\u8c03\u8272\u7684\u827a\u672f\u7535\u5f71\u955c\u5934\uff1a\n\n\u7b2c5\u5e27\uff1a\n\u4e00\u4f4d\u4e2d\u4e16\u7eaa\u516c\u4e3b\uff0c\u5934\u53d1\u6d45\u68d5\u8272\uff0c\u8ff7"} +{"id": "7003595", "video_name": "bbd3eba4-8b48-5894-b0e1-b419bac1493f", "text": "\u76f8\u4f4d\u5668\uff0c\u6b7b\u4ea1\uff0c\u6218\u6597\uff0c\u884c\u52a8\uff0c\u6218\u4e89\uff0c\u5b87\u5b99\u98de\u8239\uff0c\u6b8b\u9ab8\uff0c\u6cb9\u753b\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u8d85\u9ad8\u6e05"} +{"id": "2005767", "video_name": "8bef338a-a8a4-516e-8d73-dd0c20903310", "text": "\u68ee\u6797\u91cc\u7684\u5e7d\u602a\u5e9f\u5f03\u706b\u8f66\u7ad9\uff0c\u88ab\u8302\u5bc6\u7684\u690d\u88ab\u8986\u76d6\uff0c\u662f\u4e00\u5ea7\u5145\u6ee1\u827a\u672f\u6c1b\u56f4"} +{"id": "1003818", "video_name": "468bbff7-4fd8-5a72-ba99-8ff805db9482", "text": "\u6b27\u5f0f\u673a\u8f66\u9a76\u8fc7\u4e00\u5ea7\u7ea2\u7816\u6865\u3002"} +{"id": "1005168", "video_name": "5f1f27d3-8114-5f03-b0b2-ceb788879c12", "text": "\u592a\u9633\u7cfb\u4e2d\u7684\u592a\u9633\u7206\u53d1"} +{"id": "0005744", "video_name": "20782a23-2977-5ce2-8e07-3c33fbac08b5", "text": "\u4e00\u4e2a\u6709\u817f\u7684\u83e0\u841d\u5728\u5706\u5708\u91cc\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "7002920", "video_name": "3d8d8e4c-ae81-5135-806e-8363945956ae", "text": "\u4e00\u7fa4\u7a7f\u7740\u5316\u5b66\u9632\u62a4\u670d\u7684\u7537\u4eba\u9762\u5bf9\u7740\u88ab\u6838\u5e9f\u6c34\u6c61\u67d3\u7684\u571f\u58e4\u3002"} +{"id": "8002488", "video_name": "b3779856-ac09-5545-b664-9b1a054c822a", "text": "\u4e00\u4e2a\u6709\u7740\u660e\u4eae\u773c\u775b\u548c\u950b\u5229\u7259\u9f7f\u7684\u6c34\u4e0b\u5de8\u517d\uff0c\u80cc\u666f\u4e2d\u53ef\u4ee5\u770b\u5230\u4e00\u8258\u6f5c\u6c34\u8247\u5728\u9ed1\u6697\u4e2d\u3002"} +{"id": "1006427", "video_name": "759addf3-7b28-549c-88ea-9599013485ab", "text": "\u53ef\u7231\u7684\u5361\u901a\u597d\u5947\u5c0f\u732b\uff0c\u603b\u662f\u63a2\u7d22\u65b0\u4e8b\u7269\u3002"} +{"id": "0005417", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "\u732b\u5c0f\u5de7\u800c\u808c\u8089\u53d1\u8fbe\uff0c\u8eab\u4f53\u5448\u9ed1\u8272\uff0c\u773c\u775b\u53ef\u4ee5\u662f\u84dd\u8272\u6216\u6a59\u8272\u3002"} +{"id": "2007868", "video_name": "11d6ba34-457e-577b-a838-b461d601e3f4", "text": "\u65af\u5df4\u9c81\u5728\u5c71\u533a\u548c\u96e8\u4e2d\u884c\u9a76\u3002"} +{"id": "2006242", "video_name": "b5c14c3e-e900-5016-a85f-5071be4c55cd", "text": "\u8fd9\u65f6\uff0c\u5176\u4e2d\u4e00\u53f0\u7535\u8111\u7a81\u7136\u7740\u706b\uff0c\u91cd\u65b0\u8ba9\u4ed6\u4eec\u610f\u8bc6\u5230\u4ed6\u4eec\u8fd8\u5904\u4e8e\u6781\u7aef\u5371\u9669\u4e4b\u4e2d\uff0c\u6253\u7834\u4e86\u80dc\u5229\u7684"} +{"id": "7004845", "video_name": "699eff64-a3a2-5d8c-b7df-2b1b29bfa288", "text": "\u51ac\u5b63\u5c0f\u5c4b\u6e29\u99a8\u8212\u9002\uff0c\u5929\u7a7a\u4e2d\u95ea\u70c1\u7740\u7480\u74a8\u7684\u661f\u661f\u3002"} +{"id": "0005943", "video_name": "23a173ae-af8e-566a-ba3c-56f2c72268a9", "text": "\u4e00\u4e2a\u7537\u4eba\u641e\u5f97\u4e00\u5730\u7cca\u6d82\u5730\u6d12\u4e86\u5496\u5561\u53c8\u559d\u4e86\u4e0b\u53bb\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b"} +{"id": "7004237", "video_name": "8f1d8053-cb90-5240-aeea-f281b9a69ac1", "text": "\u63cf\u8ff0\u82b1\u7cbe\u7075\u5f17\u6d1b\u62c9\u4ece\u795e\u5947\u7684\u82b1\u4e2d\u51fa\u73b0\u7684\u6837\u5b50\u3002\u4f7f\u7528\u751f\u52a8\u7684\u610f\u8c61\u6765\u63cf\u7ed8\u5979\u7684\u8d85\u51e1\u5916\u8c8c\u548c\u6c14"} +{"id": "2005878", "video_name": "325f6cc3-2b8a-5ce1-8163-eca3901ecf0d", "text": "\u4fdd\u6301\u80cc\u666f\u4e0d\u53d8\uff0c\u53ea\u66f4\u6362\u8138\u90e8\u3002\u5973\u5b69\u77ed\u53d1\u9ed1\u8272\uff0c\u7537\u5b69\u68d5\u8272\u5934\u53d1\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003981", "video_name": "d717332f-6b4a-5e3a-939c-a5f78d0106fd", "text": "\u7334\u5b50\u80cc\u7740\u884c\u56ca\uff0c\u5927\u8c61\u5728\u68ee\u6797\u91cc\u5e2e\u5fd9\u625b\u7740\uff0c\u5448\u73b0\u51fa3D\u98ce\u683c\u3002"} +{"id": "3004433", "video_name": "3062116f-6a67-5ab1-a6f0-58dd8bb302f4", "text": "\u4e00\u6bb5\u591c\u665a\u4ece\u5de6\u5f80\u53f3\u5e73\u79fb\u8fdc\u666f\u7684\u597d\u83b1\u575e\u5c71\u4e18\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "2005403", "video_name": "32ea48fb-5f02-5c56-b350-b3d11579363f", "text": "\u7f57\u57fa\u662f\u4e00\u4e2a\u7537\u5b69\uff0c\u573a\u666f\u5207\u6362\u5230\u53e6\u4e00\u4e2a\u4e16\u754c\u7684\u68ee\u6797\u3002\u7f57\u57fa\u7a7f\u7740\u9ed1\u888d\uff0c\u624b\u6301\u94f6\u5315\u9996\uff0c\u8eab\u540e\u8ddf"} +{"id": "5001447", "video_name": "74d02250-7569-5143-8f31-d57a22c37646", "text": "\u4e00\u4e2a\u62ff\u7740\u5927\u5251\u7684\u7537\u4eba\u780d\u4e0b\u4e86\u53e6\u4e00\u4e2a\u4eba\u7684\u5934\u3002"} +{"id": "0003677", "video_name": "418414f6-46bc-5831-9136-731d7dd995e2", "text": "\u672f\u58eb\u751f\u65e5\u5feb\u4e50\uff0c\u795e\u5947\u5e7b\u60f3\u9b54\u6cd5\u86cb\u7cd5\u3002"} +{"id": "7002845", "video_name": "efbf543a-3a25-598a-99f2-d73128034691", "text": "\u76ee\u51fb\u5f53\u5730\u4eba\u805a\u96c6\u5728\u8336\u644a\u65c1\uff0c\u8fdb\u884c\u70ed\u70c8\u7684\u4ea4\u8c08\u3002\u63a2\u8ba8\u8336\u5728\u4fc3\u8fdb\u793e\u533a\u8054\u7cfb\u548c\u4fc3\u8fdb\u5bf9\u653f\u6cbb\u548c\u65e5"} +{"id": "3003910", "video_name": "1a0c3b7f-e087-5e1f-9ed2-f2edc2880049", "text": "1984\u5e74\uff0c\u4e39\u9ea6\u5feb\u4e50\u7684\u90ae\u9012\u5458\u5728\u90ae\u5c40\u524d\u9762\u7ed9\u4e00\u8f86\u7ea2\u8272\u90ae\u8f66\u6d82\u9e26\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u591a"} +{"id": "4002298", "video_name": "2a547c3d-a62e-5210-88c2-f05e209f6689", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u7f8e\u56fd\u5973\u5b50\u7a7f\u7740\u7eb1\u4e3d\u76ae\u5957\u88c5\u7688\u4f9d\u5370\u5ea6\u6559\u3002"} +{"id": "3006783", "video_name": "29a3c7f8-549d-514d-8029-5bd4f12bae98", "text": "\u7537\u4eba\u5c55\u793a\u53ef\u53e3\u53ef\u4e50\u74f6\u4e0a\u7684NAFDAC\u7f16\u53f7\u3002"} +{"id": "0003934", "video_name": "00172bf9-f56f-50aa-a8b2-84adf05d691e", "text": "\u7a7f\u77401970\u5e74\u4ee3\u670d\u88c5\u7684\u5973\u5b69\u7ad9\u5728\u4e00\u680b\u7740\u706b\u7684\u5efa\u7b51\u524d\u3002"} +{"id": "0003884", "video_name": "452a44c7-b4b3-5ae0-b269-d8100f3fa815", "text": "\u5feb\u901f\u5730\u7a7f\u8d8a\u661f\u7cfb\u524d\u8fdb\u3002"} +{"id": "8001425", "video_name": "716671e4-39ed-5b41-bdf3-7310a5211552", "text": "\u5c0f\u84dd\u5c0f\u5fc3\u5730\u7528\u5634\u5c06\u9e1f\u513f\u642c\u5230\u4e00\u4e2a\u6e29\u6696\u7684\u5730\u65b9\u3002"} +{"id": "5001315", "video_name": "86f6c462-19e8-5cb6-acb1-433844c706a8", "text": "\u8428\u7c73\u53d1\u73b0\u4e00\u53ea\u540d\u53eb\u8d1d\u62c9\u7684\u5c0f\u9e1f\u88ab\u56f0\u5728\u8346\u68d8\u4e1b\u4e2d\u3002"} +{"id": "4003032", "video_name": "b8fb9790-bec6-59cb-ab78-9c474469e986", "text": "\u5728\u4e24\u9897\u5de8\u5927\u7684\u6a61\u6811\u4e4b\u95f4\u7684\u4e00\u4e2a\u8212\u9002\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "0003528", "video_name": "3f0385df-975e-569f-b6b4-6acfa67708c3", "text": "\u5973\u58eb\u8eab\u7740\u957f\u888d\uff0c\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u98d8\u52a8\uff0c\u5979\u662f\u5426\u89c2\u8d4f\u5230\u4e86\u6668\u66e6\u3002"} +{"id": "2005424", "video_name": "9e7c6998-7059-5846-894d-388fd869a541", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u73b0\u5723\u8bde\u8001\u4eba\u5728\u661f\u7a7a\u4e0b\u9a7e\u9a6d\u4ed6\u7684\u9a6f\u9e7f\u9a6c\u8f66\u3002"} +{"id": "1004167", "video_name": "4d29e0b8-4fd0-5c7c-98da-ebc10d0e5ca0", "text": "35\u6beb\u7c73\u5ba1\u7f8e\uff0c\u5f71\u5b50\uff0c\u4eba\u4eec\u5728\u91ce\u5916\u4fee\u7406\u592a\u7a7a\u8239\uff0c\u68ee\u6797\uff0c\u96fe\u6c14\u6c1b\u56f4\uff0c\u573a\u666f\u7684\u5927\u89c6\u91ce\u3002"} +{"id": "1005090", "video_name": "5ddb4699-454e-5d47-9298-756a49d91a1f", "text": "\u751f\u6210\u4e00\u4efd\u63cf\u8ff0\u7f8e\u4e3d\u7684\u732b\u548c\u8ff7\u4eba\u7684\u5154\u5b50\u7684\u63cf\u8ff0\u3002"} +{"id": "6003253", "video_name": "0792b5d9-64fc-5161-854e-ee58d41e2fe2", "text": "\u6cd5\u5c14\u79d1\u5c14\u5728\u5468\u56f4\u98de\u821e\u7684\u5e7b\u60f3\u4e16\u754c\u3002"} +{"id": "2003730", "video_name": "8e403151-27a8-5eb9-a023-ddd6811c2705", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u718a\u5988\u5988\u51b3\u5b9a\u4e3a\u65e9\u9910\u505a\u4e00\u9505\u7f8e\u5473\u7684\u7ca5\u3002\u5728\u5b83\u5728\u53a8\u684c\u4e0a"} +{"id": "0003038", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "\u65af\u901a\u00b7\u79d1\u5c14\u5fb7\u00b7\u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\uff08Stone Cold Steve Austin\uff09\u7a7f\u7740\u53d1\u578b\u5377\u53d1\uff0c\u5f00\u7740\u4e00\u8f86\u7ea2\u8272\u76ae"} +{"id": "7003109", "video_name": "a3941dab-4d82-598c-994b-dbe6ae0765c0", "text": "\u68ee\u6797\u91cc\u6709\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u9e21\uff0c\u662f\u4e00\u90e8\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u52a8\u753b\u3002"} +{"id": "7004626", "video_name": "f336be2c-a854-52a0-82ab-09ffd54acc39", "text": "\u5e74\u8f7b\u8863\u7740\u5149\u9c9c\u7684\u7537\u5b50\u7ad9\u5728\u4e00\u4e2a\u4e2d\u5e74\u8d2b\u7a77\u7537\u5b50\u7684\u4e00\u4fa7\u3002"} +{"id": "5001113", "video_name": "0d1b37a3-6425-5e20-80f8-2308b190716c", "text": "\u84dd\u5929\uff0c\u7eff\u8349\u5730\uff0c\u4e00\u4e2a\u7a7f\u7740\u6f02\u4eae\u7684\u9ec4\u8272\u88d9\u5b50\u7684\u5973\u5b69\u624b\u91cc\u62ff\u7740\u4e00\u6735\u82b1\u5750\u7740\u3002"} +{"id": "0006649", "video_name": "304c6c85-6662-59aa-8251-292ec54bde3c", "text": "\u6444\u50cf\u673a\u5728\u6708\u5149\u4e0b\u7684\u4e07\u5723\u8282\u5893\u5730\u5468\u56f4\u79fb\u52a8\uff0c\u62cd\u6444\u4e00\u4f4d22\u5c81\u7f8e\u4e3d\u7684\u3001\u53d1\u5149\u7684\u534a\u900f\u660e\u5973\u9b3c\uff0c"} +{"id": "0003085", "video_name": "36b8e793-ce4f-55c0-882c-baf7b4dae821", "text": "\u68ee\u6797\u751f\u7269\u5750\u5728\u4e00\u6839\u539f\u6728\u4e0a\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "3004083", "video_name": "580f7df3-6d06-5617-b8a4-10b2ec74743a", "text": "\u4e00\u4f4d\u6dd8\u91d1\u8005\u6b63\u5728\u53d1\u73b0\u5927\u5757\u7684\u9ec4\u91d1\u3002"} +{"id": "7002241", "video_name": "a2bcc8a9-b732-51ef-a68c-51b3ab08ed73", "text": "\u4e00\u53ea\u7a7f\u7740\u5fcd\u8005\u8863\u670d\u3001\u68d5\u8272\u6591\u70b9\u73ab\u7470\u82b1\u7eb9\u7684\u5b5f\u52a0\u62c9\u732b\u8bf4\u8bdd\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5168\u8eab\u9c9c"} +{"id": "0005151", "video_name": "15a4ac73-fe3e-5252-86f1-a8719ce51281", "text": "\u4e00\u4e2a\u53ef\u7231\u76843D\u52a8\u753b\u8001\u864e\u7a7f\u7740\u5723\u8bde\u88c5\uff0c\u62ff\u7740\u7206\u7c73\u82b1\u548c\u7535\u5f71\u7968\u3002"} +{"id": "3003614", "video_name": "a3e854e8-bba1-5988-b117-fdcc6584c008", "text": "\u5c0f\u523a\u732c\u5728\u8349\u5730\u4e0a\u884c\u8d70\uff0c4K\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "2007552", "video_name": "752a1485-052a-58eb-a4c7-d6d15ad31671", "text": "\u4e00\u4e2a\u5c0f\u800c\u8212\u9002\u7684\u6c34\u6676\u5c0f\u5c4b\u77d7\u7acb\u5728\u4e00\u7247\u8302\u5bc6\u7684\u591c\u665a\u9b54\u6cd5\u68ee\u6797\u4e2d\u3002\u6781\u5176\u7f8e\u4e3d\uff0c\u5ba1\u7f8e\u6109"} +{"id": "0005035", "video_name": "137abeb0-08fb-54c1-9e3c-fd8fe43dbde5", "text": "\u4e54\u591a\u6d1b\u592b\u65af\u57fa\u98ce\u683c\u7684\u4e00\u5ea7\u65e7\u57ce\u7684\u68a6\u5e7b\u666f\u8c61"} +{"id": "2004611", "video_name": "e0ceb867-371f-593f-8c18-b6ac5aa64ce9", "text": "\u56db\u540d\u6444\u50cf\u5e08\u6b63\u5728\u9003\u8dd1\u3002"} +{"id": "1003063", "video_name": "384d0c61-5ff0-5e30-b6c2-5fcd922cfe36", "text": "\u8d70\u5411\u89c2\u4f17\u7684\u50f5\u5c38\u3002\u771f\u5b9e\u7684\u9ad8\u6e05\u8d34\u56fe\u3002\u76f8\u673a\u5feb\u901f\u62c9\u8fd1\u5230\u4e00\u4e2a\u65b0\u53d8\u6210\u50f5\u5c38\u7684\u7537\u4eba\u75db\u82e6\u7684\u8138"} +{"id": "7003236", "video_name": "03318859-e13b-504e-9af4-c21995861696", "text": "\u4e00\u53ea\u9752\u86d9\u5750\u5728\u4e00\u6839\u6728\u5934\u4e0a\u3002"} +{"id": "0006485", "video_name": "2d4f70ab-8e34-5c71-ba7a-c3eccf488487", "text": "\u8428\u59c6\u773c\u542b\u6cea\u6c34\uff0c\u7d27\u7d27\u63e1\u4f4f\u8fd9\u5c01\u4fe1\u3002"} +{"id": "0006252", "video_name": "29539a8e-91d5-562a-a330-d2e7f7ed1e81", "text": "\u751f\u6210\u4e00\u5f20\u5728\u6df1\u96ea\u5c71\u4e2d\u51a5\u60f3\u7684\u808c\u8089\u7537\u5b50\u7684\u56fe\u50cf\u3002"} +{"id": "3004126", "video_name": "280a3606-760f-58df-a8e7-aae3778084d2", "text": "\u4e00\u4e2a\u4eba\u7684\u8f6e\u5ed3\uff0c\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc\uff0c\u624b\u4e3e\u7740\u4eff\u4f5b\u5728\u65bd\u6cd5\uff0c\u5468\u56f4\u7684\u5c4f\u5e55\u4e0a\u663e\u793a\u7740\u96be\u4ee5\u7406\u89e3\u7684"} +{"id": "3004850", "video_name": "206c4c5a-0f6e-52a8-af81-d4cbc12290ed", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u665a\u4e0a\u9003\u907f\u4e00\u53ea\u9b3c\uff0c\u6f2b\u753b\u753b\u9762\uff0c\u6d77\u8d3c\u738b\u98ce\u683c\u3002"} +{"id": "3004052", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "\u76f8\u7231\u7684\u7537\u5973\u5728\u5927\u516c\u56ed\u91cc\u76f8\u4e92\u6ce8\u89c6\uff0c\u56db\u5468\u90fd\u662f\u5927\u6811\u548c\u96ea\u5c71\u3002"} +{"id": "2003292", "video_name": "5263328b-5550-5d00-8438-77678cbad798", "text": "\u5f88\u591a\u5b69\u5b50\u7a7f\u7740\u5e7b\u60f3\u7684\u8863\u670d\uff0c\u5728\u9633\u5149\u4e0b\u6f2b\u6b65\u5728\u5e7b\u60f3\u8611\u83c7\u6751\u91cc\u3002"} +{"id": "4004295", "video_name": "39007694-c74a-5876-bf9e-ba82482d8de9", "text": "\u521b\u5efa\u4e00\u6bb5\u89c6\u9891\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u8001\u5e08\u548c\u5b66\u751f\u5728\u6559\u5ba4\u91cc\u6388\u8bfe\u3002"} +{"id": "7004241", "video_name": "78a60a67-63cc-5944-91bd-5d9ed1e19f4e", "text": "\u4e00\u53ea\u673a\u5668\u72d7\u5f97\u5230\u4e86\u5b83\u7684\u7b2c\u4e00\u6839\u673a\u5668\u9aa8\u5934\u3002"} +{"id": "2005645", "video_name": "70c16773-53c8-54d1-bae1-0aafb4b3b3da", "text": "\u7537\u4eba\u548c\u5973\u4eba\u5728\u5929\u5802\u98de\u884c\u3002"} +{"id": "1004799", "video_name": "58b6c8c4-93de-5052-bff7-6e7150610424", "text": "\u672a\u6765\u57ce\u5e02\u98ce\u666f\u548c\u7eff\u5316\u4e0e\u8def\u4eba\u548c\u98ce\u76f8\u5339\u914d\uff0c4k\uff0c\u8d85\u667a\u80fd\u6e32\u67d3\uff0c\u7535\u5f71\u7ea7\u62cd\u6444\uff0cAR 9:16\u3002"} +{"id": "6002336", "video_name": "cb61d954-36cb-5ba8-a09e-b79fbff77ec8", "text": "\u5728\u821e\u53f0\u4e0a\u64c1\u62b1\u8389\u8389\u548c\u6e6f\u59c6\u3002\u662f\u540c\u4e00\u500b\u8389\u8389\u548c\u6e6f\u59c6\u3002"} +{"id": "0006392", "video_name": "2bbc4a9c-0eca-59d4-b459-84636153ea9b", "text": "\u884c\u661f\u7d22\u62c9\u91cc\u65af\u88ab\u7d2b\u8272\u9ecf\u7a20\u7684\u6d77\u8986\u76d6\u3002"} +{"id": "3003328", "video_name": "8da132f2-6c15-5cad-b38b-0c9cc8dca7d3", "text": "\u4e00\u4e2a\u6708\u5149\u7167\u8000\u4e0b\u7684\u7a7a\u5730\uff0c\u6709\u626d\u66f2\u7684\u6811\u6728\u548c\u4e00\u4e2a\u53f2\u8bd7\u7ea7\u7684\u53d8\u8eab\u573a\u666f\uff0c\u5f53\u4e61\u4e0b\u4eba\u53d8\u6210\u5c71\u5730\u5927\u529b\u58eb\u7684\u65f6"} +{"id": "2006090", "video_name": "b9190035-c42b-59d7-9ddb-c45f97af99e5", "text": "\u7a7a\u4e2d\u4fef\u77b0\u7eff\u8272\u519c\u573a\uff0c\u7535\u5f71\u822c\u7684\u5f55\u50cf\u5236\u4f5c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3001\u8d85\u903c\u771f\uff0cOctane\u6e32\u67d3\uff0c\u8d85\u903c\u771f\uff0c\u5411\u5916"} +{"id": "3004527", "video_name": "b86e684d-a14b-57ca-abc5-47624a5397dd", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u6b63\u5728\u63a5\u53d7\u7efc\u5408\u683c\u6597\u8bad\u7ec3\u3002"} +{"id": "1004305", "video_name": "4f8ed9d4-3ac4-5efa-a064-9ee632b6a55c", "text": "\u4ece\u53e4\u4ee3\u963f\u5179\u7279\u514b\u6587\u660e\u7684\u4e00\u8258\u90e8\u5206\u8239\u4e0a\uff0c\u5973\u4eba\u4eec\u5728\u6f02\u6d41\u7684\u6cb3\u6d41\u4e0a\u4ea4\u8c08\u3002"} +{"id": "3004141", "video_name": "6c41a683-484c-57e3-ad63-c511319d6b02", "text": "\u4e00\u6ef4\u751f\u52a8\u7684\u58a8\u6c34\uff0c\u4e00\u4e2a\u5361\u901a\u7684\u5f62\u72b6\uff0c\u50cf\u4e00\u4e2a\u4eba\u7269\u3002"} +{"id": "2003558", "video_name": "afbd2d92-42f0-5252-87d0-12e3f85b83ee", "text": "\u5728Instagram\u4e0a\u505a\u5e7f\u544a\uff0c\u53d1\u5e03\u5927\u849c\u5bf9\u4ed8\u5438\u8840\u9b3c\uff0c\u73b0\u4ee3\u5316\u8bbe\u8ba1\uff0c\u767d\u8272\u7684\u5c16\u7259\uff0c\u5fae\u7b11\uff0c\u9ec4\u91d1\u6bd4\u4f8b\uff0c\u590d\u6742\u7684"} +{"id": "8003498", "video_name": "bbc67270-fd73-5199-bce0-b50a4ea3f256", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u52a8\u6f2b\u7c7b\u578b\u7684\u5973\u5b69\u5728\u672a\u6765\u57ce\u5e02\u4e2d\u3002"} +{"id": "4003813", "video_name": "cafc95df-b235-5de0-a2b3-5792ed6341b1", "text": "\u8ba9\u6700\u4e0b\u9762\u7684\u4eba\u73a9\u6742\u800d\u6854\u5b50\u3002"} +{"id": "0005888", "video_name": "22d529aa-8155-5a38-96b0-fb05732fabe3", "text": "\u4e00\u53f0\u7535\u89c6\u6b63\u5728\u64ad\u653eBaywatch\u4e2dDavid Hasselhoff\u548c\u4ed6\u7684\u7535\u89c6\u513f\u5b50Hoby\u7684\u573a\u666f\uff0c\u8d85\u9ad8\u6e05\uff0c32K\u3002"} +{"id": "2007673", "video_name": "fd0ff484-38f7-5ae0-8d2b-ead295cd7142", "text": "\u7f8e\u4e3d\u7684\u5929\u4f7f\u7a7f\u7740\u91d1\u8272\u957f\u888d\uff0c\u770b\u7740\u955c\u5934\uff0c\u98de\u5165\u4e91\u5c42\uff0c\u5b8c\u7f8e\u7684\u7fc5\u8180\uff0c16:9\u7684\u6bd4\u4f8b\uff0c8k"} +{"id": "2004482", "video_name": "e6fbe9eb-1195-5f7c-b38a-2dadcd84a804", "text": "\u65e5\u672c\u8f66\u5728\u8def\u4e0a\u7684lofi\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "0004849", "video_name": "103dc343-19d3-511d-b747-f3cfb3882789", "text": "\u4e00\u573a\u8db3\u7403\u6bd4\u8d5b\u5728\u524d\u666f\u4e2d\u8fdb\u884c\uff0c\u800c\u5728\u80cc\u666f\u4e2d\uff0c\u4e00\u5ea7\u706b\u5c71\u6b63\u5728\u55b7\u53d1\uff0c\u8d85\u7ea7\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "6003769", "video_name": "d14af15d-4556-5560-8636-d99efdf453eb", "text": "\u8389\u8389\u4ee5\u5979\u5bf9\u5192\u9669\u7684\u65e0\u5c3d\u6e34\u671b\u548c\u65e0\u754f\u7684\u7cbe\u795e\u800c\u95fb\u540d\u3002"} +{"id": "0006088", "video_name": "266ac691-afa9-57a1-a990-c7052cf73365", "text": "\u5730\u9762\u4e0a\u6709\u4e00\u679a\u5b87\u5b99\u706b\u7bad\uff0c\u767d\u5929\u8349\u5730\u4e0a\u6709\u7eff\u8272\u7684\u8349\u576a\uff0c\u5361\u901a\u98ce\u683c\u4eff\u4f5b\u8fea\u58eb\u5c3c\u3002"} +{"id": "7004939", "video_name": "eebdd6ec-f166-5495-a254-a47ca930678f", "text": "\u79f0\u91cd\u79e4\u663e\u793a\u66f4\u9ad8\u7684\u6570\u5b57\u3002"} +{"id": "7003427", "video_name": "d653b1f5-0d97-539c-a1a0-ba5b7cff2995", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u524d\u603b\u7406\u5750\u7262\u5e76\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "1004382", "video_name": "50f02c96-2721-5b46-b04b-ffd96e801f0e", "text": "\u83ab\u8482\u00b7\u53f2\u5bc6\u65af\u5750\u5728\u4e00\u5f20\u6c99\u53d1\u4e0a\uff0c\u5728\u4e00\u95f4\u5149\u7ebf\u4e0d\u4f73\u7684\u623f\u95f4\u91cc\u73a9\u7535\u8111\u6e38\u620f\u3002"} +{"id": "4003758", "video_name": "2c9a2181-f4b1-5f16-91a4-d6eaea43388d", "text": "\u4ed9\u5973\u706f\uff0c\u8349\u4e1b\uff0c\u4e2d\u5fc3\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003114", "video_name": "431c14b0-a4e6-5724-98fb-4178615463ab", "text": "\u5728\u68ee\u6797\u91cc\u7684\u4e00\u4e2a\u5973\u5b69\uff0c\u624b\u63e1\u7740\u4e00\u9897\u79cd\u5b50\u3002"} +{"id": "7004949", "video_name": "09d3ad70-bd81-5683-bcbe-02813fde8a9f", "text": "\u6709\u4e1c\u897f\u5728\u5feb\u901f\u79fb\u52a8\uff0c\u88ab\u76d1\u63a7\u6444\u50cf\u5934\u6355\u6349\u5230\uff0c\u591c\u665a\u7684\u67d0\u4e2a\u672a\u77e5\u7269\uff0c\u975e\u5e38\u6050\u6016\u7684\u573a\u666f\u3002"} +{"id": "5001761", "video_name": "b340db91-2268-5d8a-b77a-5559af87d839", "text": "\u4e24\u4e2a\u592a\u7a7a\u6b66\u88c5\u5206\u5b50\u6b63\u5728\u592a\u7a7a\u4e2d\u822a\u884c\u7740\u592a\u7a7a\u98de\u8239\u3002"} +{"id": "2005745", "video_name": "477b12b5-4223-52e6-aff8-a6c4b0dcd30c", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e9b\u571f\u8457\u4eba\u5728\u68ee\u6797\u91cc\u62e5\u62b1\u3002"} +{"id": "4003877", "video_name": "59ccbd08-dfcd-59ba-8f21-3572db7bbc82", "text": "\u5854\u7f57\u724c\u8bfb\u8005\u5973\u6027\u653e\u7f6e\u724c\u5361\u7684\u89c6\u89d2\u3002"} +{"id": "0003258", "video_name": "3a3886d1-b9bf-5d07-afc5-a6c77d8bcf96", "text": "\u653e\u7f6e\u5728\u5f00\u653e\u5f0f\u9633\u53f0\u4e0a\u4fef\u77b0\u591c\u665a\u57ce\u5e02\u7684\u684c\u5b50\u4e0a\u7684\u76d2\u5f0f\u5f55\u97f3\u673a\uff0c\u57ce\u5e02\u4e0b\u9762\u7684\u706f\u5149\u95ea\u70c1\uff0c\u7a97"} +{"id": "0005458", "video_name": "1b182453-da1f-50bf-a631-4b8a67a3587a", "text": "\u4e8c\u7ef4\u5361\u901a\u98ce\u683c\uff0c\u4e00\u53ea\u732b\u6b63\u5728\u5403\u9c7c\u3002"} +{"id": "1005012", "video_name": "5cb6ba98-6795-5b13-8dc3-3758c039aa6e", "text": "\u590d\u53e4\u76841950\u5e74\u4ee3\u6d77\u6ee9\u4e0a\u7684\u4eba\u4eec\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3006340", "video_name": "cd8db996-f7c2-5115-a916-899ca66b54b8", "text": "4K\u5e7b\u60f3\u706b\u7130\u573a\u666f\u50cf\u9b54\u591a\uff0c\u80cc\u666f\u6709\u4e00\u53ea\u98de\u9f99\u3002"} +{"id": "0004480", "video_name": "09b6f0b5-e2ed-53e5-9d8d-3d1940976cb0", "text": "25\u5c81\u7684\u7f8e\u4e3d\u5973\u5b69\u7ad9\u5728\u57ce\u5821\u5b8f\u4f1f\u7684\u5165\u53e3\u524d\uff0c\u597940\u5c81\u7684\u7236\u4eb2\u83ab\u91cc\u65af\u7ad9\u5728\u5979\u8eab\u65c1\uff0c\u72b9"} +{"id": "0003102", "video_name": "37088ee2-03c1-5893-81d0-a43a3c975f7b", "text": "\u4e00\u4e2a\u96ea\u4eba\u5973\u6027\u624b\u6301\u8ddf\u968f\u6a2a\u5e45\u3002"} +{"id": "4002135", "video_name": "2e1a8a25-c2f2-5624-8b9d-6786480e7280", "text": "\u4e00\u4f4d\u6770\u51fa\u7684\u79d1\u5b66\u5bb6\u5e03\u9c81\u65af\u00b7\u73ed\u7eb3\u535a\u58eb\uff0c\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "8003773", "video_name": "5700b165-e837-5cbe-bb3b-2ad5e3bc611d", "text": "TGI Fridays\u7684\u5e7f\u544a\uff0c\u6f14\u793a\u5403\u6c49\u5821\u3002"} +{"id": "8002573", "video_name": "40d7f286-4865-5de0-8fa3-d5081fffff74", "text": "\u9ed1\u8272\u515c\u5e3d\u7684\u7ef4\u4eac\u6218\u58eb\uff0c\u80cc\u666f\u660f\u6697\uff0c\u4e00\u624b\u6301\u65a7\uff0c\u4e00\u624b\u6301\u76fe\u3002"} +{"id": "0005229", "video_name": "16fb8b65-4ce3-5223-9512-0bf2ca78849b", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6d77\u9f9f\u5782\u76f4\u6e38\u6cf3\u7684\u955c\u5934\u5feb\u901f\u62c9\u8fdc\u3002"} +{"id": "3003488", "video_name": "138a1c80-f96d-5f59-9d61-c712dbdafe58", "text": "\u5728\u8fd9\u4e9b\u52a8\u7269\u5171\u540c\u52aa\u529b\u7684\u8fc7\u7a0b\u4e2d\uff0c\u4ed6\u4eec\u4e4b\u95f4\u5f62\u6210\u4e86\u4e00\u79cd\u8d85\u8d8a\u7269\u79cd\u754c\u9650\u7684\u8054\u7cfb\u3002"} +{"id": "1006608", "video_name": "790c441f-6312-59e8-83bc-38bc6cab0928", "text": "\u8036\u8def\u6492\u51b7\u53e4\u57ce\u57fa\u7763\u6559\u533a\u7684\u590d\u6d3b\u6559\u5802\u3002"} +{"id": "8001019", "video_name": "6cdadcc0-1e09-5846-af2c-0ef2e5f0724b", "text": "\u871c\u8702\u4ece\u76db\u5f00\u7684\u82b1\u6735\u4e2d\u91c7\u96c6\u871c\u3002 \u2014\u2014\u6587\u68ee\u7279\u00b7\u68b5\u9ad8"} +{"id": "1004987", "video_name": "5c35e296-4fcc-531d-b80b-9f3d17735aea", "text": "Kraken\u5f88\u5feb\u5730\u6467\u6bc1\u4e86\u4e00\u8258\u8239\u3002\u5b83\u6709\u7740\u53c8\u5927\u53c8\u957f\u7684\u89e6\u624b\u3002\u8fd9\u53d1\u751f\u5728\u767d\u5929\u65f6\u95f4\u3002\u975e\u5e38\u8be6\u7ec6\uff0c4"} +{"id": "4004457", "video_name": "eb43efee-fdf1-553a-afc7-371a81c72f9c", "text": "\u7537\u6027\uff0c45\u5c81\u7684\u767d\u4eba\u7537\u6027\uff0c\u9ed1\u8272\u5c0f\u80e1\u5b50\u548c\u6de1\u6de1\u7684\u80e1\u987b\uff0c\u8eab\u6750\u8f83\u7626\uff0c\u7a7f\u774019\u4e16\u7eaa\u7684\u4f11"} +{"id": "8002824", "video_name": "20d77a2a-f56e-5a01-845e-d05e931336c8", "text": "\u5e74\u8f7b\u7684\u5fcd\u8005\u5728\u7011\u5e03\u5168\u666f\u4e2d\u51a5\u60f3\u3002"} +{"id": "1005397", "video_name": "63341a2e-bd0b-570b-b7db-24d0e1477d83", "text": "\u4e00\u4f4d\u9ad8\u5927\u82f1\u4fca\u7684\u5c06\u519b\u7ad9\u5728\u957f\u57ce\u4e0a\uff0c\u6307\u6325\u7740\u519b\u961f\uff0c\u7167\u8000\u7740\u9633\u5149\u3002"} +{"id": "3004742", "video_name": "2327740b-af6d-5d1f-b879-aef1040a80ff", "text": "\u98de\u8d8a\u4e9a\u9a6c\u900a\u96e8\u6797\uff0c\u65e0\u4eba\u673a\u955c\u5934 \n\u4fe1\u606f\uff1a\u4f60\u597d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006269", "video_name": "29c27e36-62d5-5411-b6ad-f4835a129449", "text": "\u82f1\u6587\u53e5\u5b50\uff1aThe hero say hi on the 2nd floor of the butiful building\u3002\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u5728\u7f8e\u4e3d\u7684\u5efa\u7b51\u7269\u4e8c\u697c\u6253\u62db\u547c"} +{"id": "0003734", "video_name": "428e43a2-1779-509d-b44c-b9a721940499", "text": "\u4e00\u4e2a\u4e2a\u4eba\u8138\u7684\u7279\u5199\u903c\u771f\u7535\u5f71\u753b\u9762\u3002\u8fd9\u4e2a\u4eba\u5728\u5149\u96a7\u9053\u4e2d\u9ad8\u901f\u7a7f\u68ad\uff0c\u773c\u775b\u53d8\u6210\u4e86\u7f8e\u5143\u7b26\u53f7\u3002"} +{"id": "1003438", "video_name": "3f91ee61-5cfd-581d-ac72-f2b87a5002b3", "text": "\u4e00\u4e2a\u540d\u53eb\u827e\u838e\u7684\u5e74\u8f7b\u53c8\u6f02\u4eae\u7684\u7a46\u65af\u6797\u5973\u5b69\u548c\u5979\u7684\u7236\u6bcd\u4e00\u8d77\u4f4f\u5728\u6751\u91cc\u3002"} +{"id": "4003742", "video_name": "107e1db0-2e17-56ad-9e2a-921b264c1c5f", "text": "translation: \u5728\u591c\u665a\u7684\u96ea\u5730\u4e0a\u8df3\u821e\u7684\u7f8e\u4e3d\u5973\u6027\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "0003037", "video_name": "35eea4da-ad18-5617-be65-5ce0065f4804", "text": "\u5728\u4f2f\u5229\u6052\uff0c\u8036\u7a23\u57fa\u7763\u4e0e\u6bcd\u4eb2\u739b\u4e3d\u548c\u7ea6\u745f\u592b\u4f5c\u4e3a\u7236\u4eb2\u4e00\u8d77\u8bde\u751f\uff0c\u65c1\u8fb9\u6709\u7267"} +{"id": "6004549", "video_name": "703015d3-5d37-5655-ba1a-8d81a681c50d", "text": "\u4ee5\u9ed1\u6697\u6c1b\u56f4\u6f14\u594f\u94a2\u7434\uff0c\u7c7b\u4f3c\u4e8e\u8718\u86db\u4fa0\uff1a\u8de8\u8d8a\u4e07\u91cc\u7684\u8718\u86db\u5b87\u5b99\u98ce\u683c"} +{"id": "2003019", "video_name": "98cfb4af-ebce-586d-8425-082e066ee67e", "text": "\u5728\u9ed1\u6697\u7684\u7530\u91ce\u4e2d\u70b9\u71c3\u8721\u70db\uff0c\u8ba9\u4e16\u754c\u5145\u6ee1\u5149\u660e\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1006560", "video_name": "783e0228-daa7-55c8-ae10-f0f5299ef256", "text": "\u6444\u5f71\u6807\u5fd7\u4ee5\u8fb9\u7f18\u611f\u4e3a\u4e3b\uff0c\u5411\u89c2\u4f17\u7f29\u653e\u5e76\u65cb\u8f6c\uff0c\u8425\u9020\u51fa\u4ee4\u4eba\u5174\u594b\uff0c\u6709\u78c1\u6027\u7684\u6c1b\u56f4\uff0c"} +{"id": "7002021", "video_name": "ee8671cd-d906-5e99-95a3-8fcf5a38f5bb", "text": "\u533b\u751f\u62ff\u7740\u75ab\u82d7\u3002\u4fe1\u606f\uff1a\u4e0d\u5b89\u5168\u3002"} +{"id": "2003285", "video_name": "b68d585b-4156-5c09-a90d-3a03b6ef3516", "text": "\u8001\u4eba\u6cbe\u6ee1\u5de7\u514b\u529b\uff0c1980\u5e74\u7535\u89c6\u5e7f\u544a\u3002"} +{"id": "8001785", "video_name": "35bd93b5-f54f-591f-a2ec-0296cc242aff", "text": "\u4e00\u4e2a\u7537\u5b69\u6572\u95e8\u3002"} +{"id": "1005606", "video_name": "6717c1ae-1a37-52a1-96d0-abf64e7b67e2", "text": "\u8bd7\u6b4c\u4e0e\u8ddd\u79bb\uff0c\u5e26\u7740\u73b0\u5b9e\u573a\u666f\u8ba9\u4eba\u5411\u5f80\u3002"} +{"id": "0006539", "video_name": "2e5f8d3f-94c7-5a32-a765-695b60d1a647", "text": "\u52a8\u753b\u660e\u661f\u8de8\u8d8a\u5b87\u5b99\u4f20\u64ad\u7684\u65f6\u95f4\u6d41\u901d"} +{"id": "6003246", "video_name": "1721c7ff-2963-5b99-b8ef-ce8d4b6e498c", "text": "\u4e00\u53ea\u5f69\u8679\u72ec\u89d2\u517d\u5728\u7eff\u8272\u80cc\u666f\u4e0a\u884c\u8d70\u3002"} +{"id": "7004611", "video_name": "6454dc52-7f7d-5419-9e22-447c80f2017f", "text": "\u80a9\u8180\u4e0a\u7684\u4e00\u53ea\u9f99\u7684\u52a8\u6001\u7eb9\u8eab"} +{"id": "4002849", "video_name": "a5cdee29-3333-54a1-b78d-2f46290e382f", "text": "\u57ce\u5e02\u7740\u706b\uff0c\u5929\u7a7a\u5448\u73b0\u7ea2\u8272\uff0c\u722c\u5728\u5730\u4e0a\u6216\u5954\u8dd1\u9003\u751f\u7684\u4eba\u88ab\u5012\u584c\u7684\u5efa\u7b51\u7269\u538b\u5728\u8eab\u4e0b\u3002"} +{"id": "1005665", "video_name": "680d124c-1b14-5228-b1b6-3faa471bee5a", "text": "\u971c\u4e4b\u54c0\u4f24\u8d44\u6599\u7247\uff0c\u5317\u98ce\u82d4\u539f\u573a\u666f\u3002"} +{"id": "1003436", "video_name": "3f846e05-664a-5a38-86cd-d5be85bc04c6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5728\u96ea\u666f\u4e2d\u6d41\u6cea\u3002"} +{"id": "2006713", "video_name": "43646fe3-e174-5345-bcfa-0f50ddb80280", "text": "\u6700\u5feb\u7684\u4eba\u7c7b\uff0c\u52a8\u4f5c\u76f8\u673a"} +{"id": "2003417", "video_name": "d0cb8e83-4a5e-559a-9bae-b25ddf675726", "text": "\u8ba9\u5b83\u53d8\u5f97\u51fa\u8272\u3002\u8ba9\u5b83\u6709\u6240\u4e0d\u540c\u3002"} +{"id": "2006403", "video_name": "648946fc-0622-56ec-8565-06b17968b28e", "text": "\u5c55\u793a\u53e4\u4ee3\u4e2d\u56fd\u4eea\u5f0f\u4e0a\u7684\u6743\u529b\u3002"} +{"id": "0006723", "video_name": "31be16e1-8b19-5967-9f0f-b66c4bbe27a8", "text": "\u73b0\u5b9e\u7684\u5c71\u5cf0\uff0c\u96fe\u6c14\uff0c\u65e5\u51fa\uff0c\u96ea\uff0c\u9e1f\u7fa4\uff0c\u5f92\u6b65\u65c5\u884c\u7684\u4eba\uff0c\u7011\u5e03W\uff0c\u7011\u5e032\u3002\n\u9644\u4ef6\uff1a1"} +{"id": "0003097", "video_name": "36f358ee-b168-5a2d-af0c-4c5de2680149", "text": "\u4e00\u4e2a\u5b69\u5b50\u80cc\u5bf9\u7740\u5915\u9633\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u4e3a\u80cc\u666f\u884c\u8d70\u3002"} +{"id": "6002180", "video_name": "05ede54e-4458-5cbf-bba9-ccb77a7686fd", "text": "\u7b2c11\u90e8\u300a\u661f\u7403\u5927\u6218\u300b\u7535\u5f71\u9884\u544a\u7247"} +{"id": "0004524", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "\u8d85\u73b0\u5b9e\u7684\u80cc\u666f\uff0c\u8ff7\u5e7b\u7684\u6548\u679c\uff0c\u7c89\u8272\u548c\u9ec4\u8272\uff0c\u9633\u5149\uff0c\u9633\u5149\u5c04\u7ebf\u3002"} +{"id": "6004565", "video_name": "22ff2f39-236d-5972-b726-e73e2a8ccabc", "text": "\u5728\u68ee\u6797\u4e2d\u592e\uff0c\u4e00\u4e2a\u5973\u4eba\u6307\u7740\u4e00\u4e2a\u5730\u65b9\u3002"} +{"id": "1005345", "video_name": "623e0d65-57a1-56af-86fc-89136c1e1425", "text": "\u4ece\u4e0b\u9762\u770b\u5230\u6a31\u82b1\u6811\u7684\u7247\u6bb5\uff0c\u8eab\u5904\u4e00\u6761\u7eff\u53f6\u76ce\u7136\u7684\u5c0f\u9053\u4e0a\uff0c\u7b2c\u4e00\u4eba\u79f0\u6f2b\u6b65\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u6d6a"} +{"id": "0004410", "video_name": "086e1cb7-a1e4-5966-a7ed-0f616fac062a", "text": "\u5766\u514b\u7a7f\u8fc7\u68ee\u6797\uff0c\u6709\u590d\u53e4\u548c\u7535\u5f71\u611f\u3002\n\nSource sentence: The sun sets over the mountains, painting the sky with a beautiful orange and pink hue. \n\n\u592a\u9633\u5728\u5c71\u4e0a"} +{"id": "2006632", "video_name": "8fd28da9-a93d-5604-9636-3ca63ceed508", "text": "\u9661\u5ced\u3001\u9ed1\u6697\u800c\u6df1\u6c89\uff0c\u661f\u661f\u4ece\u5929\u4e0a\u5760\u843d\uff0c\u98ce\u5439\u52a8\u7740\u5934\u53d1\uff0c\u6811\u679d\u6447\u66f3\u3002"} +{"id": "7004819", "video_name": "5e905a49-e018-5c20-846d-f446d0eeeedf", "text": "\u8239\u5185\u53ef\u4ee5\u770b\u5230Zentari\u5916\u661f\u4eba\u64cd\u7eb5\u5168\u606f\u63a7\u5236\u5668\u3002"} +{"id": "8003451", "video_name": "ae7894cc-7873-5779-ab1a-5091a1d6cce3", "text": "\u7f8e\u4e3d\u7684\u5899\u58c1\u5e26\u7740\u9634\u5f71\u3002\u4fe1\u606f\u662f\uff1a\u4eba\u624b\u4e2d\u7684\u9634\u5f71\u65f6\u95f4\u3002"} +{"id": "1004420", "video_name": "51b27b5a-efb4-563c-878e-6b6b1400b2b8", "text": "\u8f9b\u666e\u68ee\u5bb6\u5ead\u5728\u665a\u4e0a\u5f00\u8f66\u65f6\u5531\u6b4c\u3002"} +{"id": "2003387", "video_name": "5db134fc-aee3-5f97-8eb5-abb7ea3fc45c", "text": "\u5728\u4e00\u95f4\u6f06\u9ed1\u6726\u80e7\u7684\u623f\u95f4\u91cc\uff0c\u53ea\u6709\u4e00\u76cf\u706f\u5149\uff0c\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u8005\u6b63\u5728\u56f0\u60d1\u5730\u8d70\u5708\u3002"} +{"id": "4004057", "video_name": "448851d1-49f7-5414-afe6-e053c3e82f66", "text": "family at the beach.\n\nTranslation: \u82ac\u6069\uff08\u4e00\u53ea\u72d7\uff09\u4e0e\u5bb6\u4eba\u4e00\u8d77\u5728\u6d77\u6ee9\u5ea6\u5047\u3002"} +{"id": "1004835", "video_name": "595cc8f3-b135-524f-9a7a-3873a6456738", "text": "\u7537\u4eba\u8fd1\u8ddd\u79bb\u4fa7\u9762\u89c6\u56fe\uff0c\u5411\u53f3\u8f6c\u8eab\uff0c\u52c7\u6562\uff0c\u7a7f\u7740\u6a44\u6984\u7eff\u8272\u957f\u888d\u548c\u767d\u8272\u8863\u670d\u3002"} +{"id": "6002768", "video_name": "151c2cee-b5fa-54d5-8f83-9175a5b1be9f", "text": "\u4ea7\u54c1\u5468\u56f4\u95ea\u70c1\u7740\u5149\u8292\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002290", "video_name": "5387e913-9796-596b-9a26-6a1c6325b492", "text": "\u8349\u539f\u4e0a\u5e03\u6ee1\u704c\u6728\u4e1b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002098", "video_name": "cb43a689-da69-5b29-b8ca-fc028dd7a985", "text": "\u5bb6\u4eba\u5728\u5723\u8bde\u8282\u73a9\u684c\u6e38\u3002"} +{"id": "5001234", "video_name": "d9f0fb1b-a3bd-5fbc-9f85-cd56ec230bd2", "text": "\u751f\u6c14\u7684\u571f\u8c46\u3002\u6f2b\u753b\u98ce\u683c\u3002\u6570\u7801\u7ed8\u753b\u30028K\u3002\u9ad8\u54c1\u8d28\u3002\u7167\u7247\u822c\u903c\u771f\u3002"} +{"id": "6003175", "video_name": "a60fd5fe-3e63-5cdb-8dba-66b4aa79dbf1", "text": "Source sentence: \u8ff7\u4eba\u7684\u751f\u7269\u5728\u68ee\u6797\u91cc\u81ea\u7531\u6f2b\u6e38\u3002"} +{"id": "3005894", "video_name": "23834ae8-382e-589c-ba32-16f59497d350", "text": "\u8349\u539f\u4e0a\u7684\u7f8e\u4e3d\u5973\u4eba"} +{"id": "1006418", "video_name": "75808224-859e-5b4b-bc8d-430f916c6676", "text": "\u547c\u5438\u52a8\u4f5c\uff0c\u5410\u51fa\u70df\u96fe\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u5e73\u6ed1\u98d8\u52a8\uff0c"} +{"id": "6004405", "video_name": "097ec9cd-0eb3-5d99-9876-e8008b0e7cc9", "text": "\u73bb\u7483\u7269\u54c1\u5806\u53e0\u540e\u6454\u843d\u7684\u8fd0\u52a8\u6444\u50cf\u673a\u95ea\u4eae4K\u95ea\u4eae\u8272\u5f69\u6e32\u67d3\u3002 \n\nSource sentence: The conference will be held"} +{"id": "3004476", "video_name": "c9aacf36-a2d5-5921-94a0-b0016c9130f8", "text": "\u7ed3\u5408\u6e29\u6696\u3001\u9010\u6e10\u6d88\u901d\u7684\u9633\u5149\u3001\u8584\u96fe\u6216\u79cb\u5b63\u7684\u6765\u4e34\u7b49\u5929\u6c14\u6761\u4ef6"} +{"id": "3003776", "video_name": "38f71e73-1ebe-563b-95e3-8685370d5ec8", "text": "\u5c55\u793a\u7f3a\u5931\u611f\u7684\u52a8\u753b\u8868\u73b0\uff0c\u88c5\u9970\u827a\u672f\u98ce\u683c\uff0c\u9ed1\u767d\u7ea2\u8272\uff0c\u68a6\u5e7b\u822c\u7684\uff0c\u4f4e\u4eae\u5ea6\u3002"} +{"id": "3006562", "video_name": "bf740aa7-8f0e-5369-937b-64544e1a3306", "text": "\u4e00\u4e2a\u7a7f\u7740\u66f2\u68cd\u7403\u5236\u670d\u7684\u7537\u5b69\u5f88\u96be\u8fc7\u548c\u6cae\u4e27\u3002"} +{"id": "3006590", "video_name": "7c9c6e52-5925-5a05-85f4-a28fe9199224", "text": "\u4ed6\u4eec\u5728\u9ed1\u6697\u7684\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u65f6\uff0c\u5438\u8840\u9b3c\u9c7f\u9c7c\u5f17\u62c9\u5fb7\u6559\u4e86\u540d\u4e3a\u9732\u897f\u7684\u706f\u7b3c\u9c7c"} +{"id": "7002649", "video_name": "7821311f-4eb8-5794-9077-3ce5253e43f1", "text": "\u6dfb\u52a0\u4e00\u4e9b\u6c14\u6ce1 1 \u4e2a\u9644\u4ef6"} +{"id": "2003692", "video_name": "1244a27c-2a94-5ebc-b43b-3a0d09298fa4", "text": "\u4e00\u4e2a\u4ee4\u4eba\u9707\u60ca\u7684\u7537\u4eba\u3002\u5361\u901a\u6f2b\u753b\u3002"} +{"id": "4002562", "video_name": "247bad79-c838-5b18-80e5-c34155ed7993", "text": "\u672b\u65e5\u540e\u7684\u829d\u52a0\u54e5\u5929\u9645\u7ebf\u5728\u5915\u9633\u4e0b\u3002"} +{"id": "2003268", "video_name": "51a78a3f-a655-517a-84c1-8c3e79b73b9e", "text": "Source sentence: \u8036\u7a23\u57fa\u7763\u5728\u8d5b\u535a\u670b\u514b\u7684\u5927\u90fd\u5e02\u4e00\u53f7\u3002\n\nTranslated sentence: \u8036\u7a23\u57fa\u7763\u5728\u8d5b\u535a\u670b\u514b\u7684\u5927\u90fd"} +{"id": "7004848", "video_name": "f0c4f647-851f-5095-8fd7-efb5030f1404", "text": "\u5728\u4e1b\u6797\u4e2d\u89c2\u770b\u5154\u5b50\u7684\u52a8\u753b\u3002"} +{"id": "8002354", "video_name": "6e17c6a6-8f37-5719-a322-1754eadf8a00", "text": "\u6c7d\u8f66\u5728\u6708\u7403\u80cc\u666f\u4e0b\u7684\u592a\u7a7a\u4e2d\u3002"} +{"id": "5001509", "video_name": "dd159d48-0747-58e4-94dc-e93b1f62a1ed", "text": "\u4e00\u7fa4\u7a7f\u7740\u65b0\u7ea2\u8863\u670d\u7684\u5b69\u5b50\u6b63\u5728\u653e\u97ad\u70ae\u73a9\u800d\u3002"} +{"id": "2004486", "video_name": "8754c246-241a-54bc-846a-2e9361c4993c", "text": "\u63cf\u8ff0\u4e00\u4e2a\u6709\u975e\u5e38\u7f8e\u4e3d\u7167\u660e\u3001\u9ad8\u5206\u8fa8\u7387\u548c\u5782\u76f4\u82b1\u56ed\u7684\u6e38\u6cf3\u6c60\u3002"} +{"id": "2006394", "video_name": "1d325ca1-d4df-58e6-a3f6-5986d2bdbebb", "text": "\u5728\u4e00\u4e2a\u96e8\u591c\uff0c\u65e0\u4eba\u673a\u6444\u50cf\u5934\u4fef\u77b05\u8f86\u8f66\u5728\u4e00\u6761\u957f\u5f27\u7ebf\u4e0a\u6f02\u79fb\uff0c\u6ca1\u6709\u4efb\u4f55\u6545\u969c\u3002"} +{"id": "0004984", "video_name": "12c232eb-4d74-5a13-a5a2-ea2c3f0096b1", "text": "\u5c31\u50cf\u6500\u767b\u4e00\u5ea7\u5c71\u4e00\u6837\uff0c\u751f\u6d3b\u5e76\u4e0d\u5bb9\u6613\u3002\u5b83\u9700\u8981\u51b3\u5fc3\u3001\u529b\u91cf\u548c\u97e7\u6027\u3002\u4f46\u968f\u7740\u6211\u4eec\u8fc8\u51fa\u7684\u6bcf\u4e00\u6b65\uff0c\u6211\u4eec\u53d8"} +{"id": "4004627", "video_name": "01ca5182-ad70-58dc-8182-5b9a5bd9dbec", "text": "\u7537\u4eba\u5750\u5728\u7a97\u8fb9\uff0c\u732b\u5728\u4ed6\u65c1\u8fb9\u3002\u7a97\u6237\u6253\u5f00\uff0c\u53ef\u4ee5\u770b\u5230\u591c\u8272\u4e2d\u7684\u57ce\u5e02\u3002\u96e8\u6ef4\u843d\u5728\u7a97\u6237\u4e0a\u3002"} +{"id": "4004736", "video_name": "4a66809e-7b46-5da9-8025-73b63217b9e3", "text": "\u4ea7\u751f\u4e00\u4e2a\u4eba\u5982\u4f55\u98de\u4e0a\u5929\u7684\u60f3\u6cd5\u3002"} +{"id": "8001263", "video_name": "90902c25-2657-5ba0-9932-ca983d70d301", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u8fdb\u884c\u6fc0\u70c8\u7684\u953b\u70bc\uff0c\u6c57\u6c34\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "3006515", "video_name": "afb4f5eb-a902-587e-90c0-089d8ffb6295", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5750\u5728\u7535\u8111\u524d\u7f16\u8f91\u4e00\u4e2aYouTube\u89c6\u9891\u30024k\u3002\u8d5b\u535a\u670b\u514b\u3002\u5c06\u6444\u50cf\u673a\u56f4\u7ed5\u4ed6\u7684\u80cc\u90e8\u62cd\u6444"} +{"id": "2006543", "video_name": "41407454-2a50-52ed-b2a7-f1f58cb8e741", "text": "\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u5728\u585e\u5c14\u7ef4\u4e9a\u7684\u4e00\u4e2a\u66b4\u98ce\u96e8\u591c\u51fa\u751f\u3002"} +{"id": "2003300", "video_name": "9af98b3a-a640-57b8-bb6f-9dda64d7472b", "text": "\u65c1\u8fb9\u6709\u4e00\u4f4d\u7537\u58eb\u5750\u5728\u7535\u8111\u65c1\uff0c\u6b63\u5728\u5904\u7406\u5546\u4e1a\u8d22\u52a1\u3002"} +{"id": "3003135", "video_name": "f1156475-0445-515d-bc55-0c59188fb289", "text": "\u5236\u4f5c\u4e00\u53ea\u8001\u864e\u548c\u4e00\u53ea\u5927\u8c61\u4e0e\u5176\u4ed6\u52a8\u7269\u4e00\u8d77\u73a9\u800d\u3002\u4e2d\u666f\u3002"} +{"id": "1006602", "video_name": "78f80a26-cb56-5848-a989-bc6348bccd04", "text": "\u7f8e\u4e3d\u7684\u6a21\u7279\u7a7f\u7740\u9762\u7eb1\u6750\u8d28\u7684\u8863\u670d\u5728\u5e0c\u814a\u8d70\u8def\uff0c\u767d\u8272\u5efa\u7b51\uff0c\u80cc\u666f\u662f\u5927\u6d77\u3002"} +{"id": "1003047", "video_name": "3801d4cd-337a-5cf9-ac50-ad8fdd1b32d0", "text": "\u795e\u98df\u8005\uff0c\u541e\u566c\u5927\u5730\uff0c\u5982\u6b64\u903c\u771f\u7684\u8d85\u7ea7\u8d34\u56fe\uff0c\u963f\u624e\u6258\u65af\u3002"} +{"id": "6004554", "video_name": "8eb9f467-ed07-5802-b834-c214bad67b4d", "text": "\u5370\u5ea6\u5973\u821e\u8005\u65cb\u8f6c\u7740\uff0c\u88d9\u6446\u98d8\u626c\u3002"} +{"id": "6003595", "video_name": "21a0d11f-64e8-50e9-89a6-f99575de8280", "text": "\u7535\u5f71\u300a\u821e\u5973\u771f\u4eba\u79c0\u300b\u4e2dElizabeth Berkly\u7684\u903c\u771f\u573a\u666f\u7167\u7247\u3002"} +{"id": "0006936", "video_name": "3583e661-4a5c-5fcc-81dc-d455320f1e76", "text": "\u5f88\u591a\u4e16\u7eaa\u4ee5\u524d\uff0c\u5728\u53e4\u4ee3\u8036\u8def\u6492\u51b7\u7684\u8f89\u714c\u65f6\u671f"} +{"id": "2007587", "video_name": "bc7b7e7c-282c-57cb-900e-831e2b4c46bb", "text": "\u4e00\u4e2a\u7537\u4eba\u53cc\u624b\u4e3e\u8d77\u7ad9\u5728\u8db3\u7403\u573a\u4e0a\u3002"} +{"id": "1003933", "video_name": "48a1fce8-5e23-5051-aa31-536649abe6dc", "text": "\u5c06\u4e00\u652f\u957f\u77db\u4ece\u8db3\u7403\u9876\u90e8\u7a7f\u8fc7\u5230\u5e95\u90e8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002090", "video_name": "5549056c-69c8-5150-8abd-91222cf266c9", "text": "\u5728\u70ed\u5e26\u5c9b\u5c7f\u4e0a\u7684\u4e00\u74f6\u9152\u7cbe\u3002\u4fe1\u606f\uff1aH\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\n\nSource sentence: Can you please pass me the salt and pepper? \n\u8bf7\u628a"} +{"id": "2005191", "video_name": "7bd53a75-ab90-552c-a191-5a5c8f4c3fd2", "text": "\u7531\u9876\u90e8\u56fd\u65d7\u7ec4\u6210\u7684\u548c\u5e73\u7b26\u53f7\u3002"} +{"id": "7003251", "video_name": "12bc650c-4975-5c64-82bb-f75a9087666c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5496\u5561\u9986\u559d\u5496\u5561\u3002"} +{"id": "1006566", "video_name": "785ab341-df98-52c6-ae5d-13dd17229633", "text": "\u4e00\u6bb5\u706b\u86d9\u9c7f\u9c7c\u548c\u6c34\u6bcd\u7684\u89c6\u9891"} +{"id": "6003373", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "\u4e00\u53ea\u98de\u7fd4\u7684\u5251\u9f7f\u864e\u8774\u8776\uff0c\u82b1\u6735\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "0005890", "video_name": "22da3e17-e705-5a52-8009-b2a007661581", "text": "\u5c55\u793a\u4e0d\u540c\u6816\u606f\u5730\u4e2d\u7684\u52a8\u753b\u718a\uff0c\u98df\u7269\u548c\u6e38\u620f\uff0c2D\u52a8\u753b\u3002"} +{"id": "3004446", "video_name": "f69ba125-e34d-5eec-9ad7-a1e9e039a300", "text": "\u7f57\u7eb3\u5c14\u591a\u8e22\u4e8610\u79d2\u949f\u7684\u8db3\u7403\u3002\n\nSource sentence: I am studying Chinese at university.\n\u6211\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "3003498", "video_name": "42a2a14d-5c24-5103-96b2-e6ddbbefee70", "text": "\u4e00\u4e2a\u5145\u6ee1\u9633\u5149\u7684\u661f\u671f\u5929\u65e9\u6668\uff0c\u91d1\u8272\u7684\u5149\u8292\u6d12\u5728\u5c0f\u9547\u4e0a\uff0c\u5524\u9192\u4e86\u4e16\u754c\uff0c\u8fce\u63a5\u4e00\u5929\u7684\u5192"} +{"id": "0003611", "video_name": "406ae5f9-2dd1-5593-ad01-7367fb4d2dbd", "text": "\u521b\u9020\u4e86\u4e00\u4e2a\u5c55\u793a\u602a\u8bde\u827a\u672f\u7684\u573a\u666f\uff0c\u89c2\u5bdf\u5230\u4e86\u51e0\u5e45\u6050\u6016\u7684\u753b\u4f5c\uff0c\u98ce\u683c\u6765\u81ea\u4e8e60\u5e74\u4ee3\u3002"} +{"id": "2005930", "video_name": "d87ea03b-9c4c-5e12-94f1-af06c72dc26a", "text": "\u4e00\u6761\u9ed1\u8272\u7684\u957f\u88e4\uff0c\u817f\u90e8\u88ab\u5377\u8d77\uff0c\u5230\u5927\u817f\u5904\u65f6\u7a81\u7136\u6ed1\u843d\uff0c\u6ca1\u6709\u4efb\u4f55\u76b1\u8936\uff0c\u5149\u6ed1\u7b14\u76f4"} +{"id": "2005949", "video_name": "d5846009-c2a9-5270-9d9f-06c2f95d5474", "text": "\u4e00\u4e2a\u5145\u6ee1\u6a31\u6843\u7684\u5973\u5b69\u62fc\u547d\u5730\u6572\u95e8\uff0c\u4ece\u540c\u4e00\u4e2a\u5730\u65b9\u4f20\u51fa\u5c16\u53eb\u58f0\u548c\u6293\u75d5\uff0c\u7136\u540e\u6905\u5b50\u88ab\u4ece"} +{"id": "7004835", "video_name": "2d77714e-512b-5363-85df-533a9b9359ed", "text": "\u8718\u86db\u4fa0\u5ba2\u4e32\u5728\u82ad\u6bd4\u7535\u5f71\uff082023\u5e74\u7248\uff09\u4e2d\u3002"} +{"id": "8001975", "video_name": "5550da27-8f8a-571c-af7b-ff4657916965", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u5728\u591c\u665a\u7684\u62f3\u51fb\u573a\u91cc\u6253\u62f3\u7684\u89c6\u9891\u3002"} +{"id": "1006579", "video_name": "7887bf4d-4e1a-5daf-92b5-9009226e08ce", "text": "\u5de8\u5927\u7684\u8c61\u548c\u5c0f\u8682\u8681\u76f8\u9047\u5728\u4e1b\u6797\u666f\u89c2\u4e2d\uff0c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "1006330", "video_name": "73cfb1a3-e4c7-5e2a-8897-c98666f42e23", "text": "\u4e00\u67b6\u6218\u6597\u673a\u5728\u4e00\u4e2a\u5c9b\u4e0a\u65b9\uff0c\u84dd\u8272\u7684\u6d77\u6d0b\u4e0b\u65b9\u3002"} +{"id": "1005868", "video_name": "6bfed52f-5737-5d9e-b983-647539c612d8", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6389\u8fdb\u4e86\u6cb3\u91cc\u3002\u4e00\u53ea\u9cc4\u9c7c\u4ece\u6cb3\u91cc\u6e38\u51fa\u6765\uff0c\u628a\u5979\u62d6\u5230\u6c34\u4e0b\u3002"} +{"id": "1004453", "video_name": "5267f775-c0f1-52a1-af9d-a5b194429623", "text": "\u4e00\u4f4d\u5973\u6454\u8de4\u624b\u5728\u64c2\u53f0\u4e0a\u4ece\u6700\u9ad8\u7684\u62d0\u89d2\u5904\u8df3\u4e0b\u7684\u8d85\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "0006895", "video_name": "34f61564-5152-5f7d-9461-4359e0cf7d7f", "text": "\u665a\u971e\u7167\u8000\u4e0b\uff0c\u5929\u7a7a\u666f\u8272\u5448\u73b0\u51fa\u7c89\u7ea2\u548c\u7ea2\u8272\u7684\u8272\u8c03\u3002"} +{"id": "8002779", "video_name": "09b21a6f-bcbe-5c9a-b2c5-7ebb0064740f", "text": "\u4e00\u4e2a\u4e3a\u5b69\u5b50\u5b66\u4e60\u800c\u5236\u4f5c\u7684\u5361\u901a\u8282\u76ee\uff0c\u6709\u8da3\u4e14\u5bcc\u6709\u6e38\u620f\u6027\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2007206", "video_name": "d9302ff8-7bef-5958-9ff6-01ab1d686d51", "text": "\u4e00\u4e2a\u8d85\u81ea\u7136\u7684\u9ad8\u4e2a\u5b50\u751f\u7269\uff0c\u5168\u8eab\u957f\u7740\u539a\u539a\u7684\u6bdb\u53d1\uff0c\u751f\u6d3b\u5728\u5149\u7ebf\u8f83\u5c11\u7684\u72ed\u5c0f\u9ed1\u6697\u533a\u57df\u3002"} +{"id": "1005153", "video_name": "5ef527fa-c1be-5bf0-89dc-d0fe2882cf96", "text": "\u4e00\u53ea\u5e7c\u72ee\u88ab\u56f0\u5728\u68ee\u6797\u80cc\u666f\u4e0b\u7684\u72ee\u5b50\u7b3c\u4e2d\uff0c\u5177\u6709\u8d85\u73b0\u5b9e\u7684HDR\u8d28\u91cf12k\u8d28\u91cf\u3002"} +{"id": "7003343", "video_name": "b1e24569-cdc4-5501-a3a0-854f768aac4f", "text": "\u8bf7\u8ba9\u52a8\u753b\u65cb\u8f6c360\u5ea6\u3002"} +{"id": "0006725", "video_name": "31c99ab1-11d6-552c-9f9f-e7908bda7f24", "text": "\u4e00\u526f\u9ab7\u9ac5\u9aa8\u67b6\u5728\u5893\u5730\u4e0a\u8d70\u52a8\uff0c\u914d\u590730\u5e74\u4ee3\u98ce\u683c\u7684\u76f8\u673a\uff0c\u9ed1\u767d\u8272\u8c03\uff0cVHS\u5f55\u50cf\u3002"} +{"id": "6003898", "video_name": "808e6d10-bcc4-5f05-ad61-ad98ff050898", "text": "\u690d\u7269\u548c\u592a\u9633\u5fae\u7b11\u7684\u8001\u89c6\u9891"} +{"id": "2007901", "video_name": "adb72fb6-8d37-592c-b6ee-a5b09cd7255b", "text": "\u5728\u4e00\u4e2a\u8212\u9002\u7684\u623f\u5b50\u91cc\uff0c\u670912\u4e2a\u5e74\u8f7b\u4eba\u53c2\u52a0\u7684\u684c\u6e38\u4e4b\u591c\u3002"} +{"id": "2007896", "video_name": "7862c57a-f5fb-5393-8b34-ec64e3198955", "text": "\u592a\u6781\u7b26\u5492\u98d8\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "4002247", "video_name": "dc8cb07f-953c-570e-88b2-56ab47461580", "text": "\u795d\u4f60\u4eec\u6240\u6709\u4eba\u5728\u4e2d\u56fd\u65b0\u5e74\u5feb\u4e50\u3002"} +{"id": "1004916", "video_name": "5aed1cca-13d2-505f-9276-4b1e14d05512", "text": "\u4e00\u4f4d\u8001\u4eba\u8eba\u5728\u5e8a\u4e0a\u719f\u7761\uff0c\u53cc\u773c\u7d27\u95ed\u3002"} +{"id": "2007151", "video_name": "8a89e42a-fac0-5ad8-ac51-5cd31202126d", "text": "\u5728\u672a\u6765\u4e3b\u4e49\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\u6f5c\u6c34\uff0c\u9b3c in the shell Akira\u3002"} +{"id": "1003696", "video_name": "4423fc1e-afb4-5821-90e5-0e247f5d98f7", "text": "\u4e00\u6b3e\u65f6\u5c1a\u9ed1\u8272\u88c5\u675f\u7684\u95f4\u8c0d\u673a\u5668\u4eba\u5728\u79cb\u5929\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "1003629", "video_name": "42d9f1fa-b6b1-545c-baa0-08ad11a6ac0f", "text": "\u9ed1\u6697\u623f\u95f4\u91cc\uff0c\u706f\u5173\u7740\uff0c\u6e38\u620f\u73a9\u5bb6\u73a9\u7740GTA 5\u3002"} +{"id": "1004124", "video_name": "4c635946-117f-5b38-b767-0f3dce24e3bd", "text": "\u4e03\u70b9\u949f\u54cd\u8d77\u7684\u65f6\u5019\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u949f\u3002"} +{"id": "1005877", "video_name": "6c20fba0-548e-5aa1-953b-08aa908c8442", "text": "\u661f\u671f\u4e09\u4e9a\u5f53\u65af\u8df3\u821e\uff0c\u4e07\u5723\u8282\u751f\u65e5\u6d3e\u5bf9\u3002"} +{"id": "6004785", "video_name": "d2f275f4-dbb1-5223-88d5-3ccb280ffbe5", "text": "\u6728\u5236\u5c0f\u5c4b\u3001\u51ac\u5b63\u3001\u5723\u8bde\u6811\u3001\u58c1\u7089\u3001\u4e00\u676f\u9152\u3002"} +{"id": "8002859", "video_name": "7e51230a-7596-5d6d-a687-7db24372863c", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u5728\u5b9a\u683c\u52a8\u753b\u4e2d\u8df3\u821e"} +{"id": "4004082", "video_name": "51ac74eb-f74a-5ac2-baa1-1777e65d4c51", "text": "\u90a3\u5929\u5f88\u51b7\uff0c\u4e00\u4e2a\u5927\u7ea620\u5c81\u7684\u7537\u5b69\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u7684\u7fbd\u7ed2\u670d\u548c\u7070\u8272\u88e4\u5b50\u5728\u96ea\u5730\u91cc\u884c\u8d70\u3002"} +{"id": "0006095", "video_name": "267f38bd-a339-5916-b2b2-c5917b3af903", "text": "\u5728Vrindavan\u7684\u4e00\u4e2a\u53e4\u8001\u5bfa\u5e99\uff0c\u970d\u5229\u8282\u671f\u95f4\uff0c\u4e00\u4f4d\u5973\u5b50\u7a7f\u7740\u534e\u4e3d\u7684\u4f20\u7edf\u73e0\u5b9d\u548c\u6c99\u4e3d\u5728\u5c0f\u5df7\u4e2d"} +{"id": "3006770", "video_name": "55a91864-9d45-55d4-8bf4-8df4d8b3008f", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u548c\u4e00\u53ea\u5c0f\u72d7\u73a9\u800d\u3002"} +{"id": "3006095", "video_name": "010df2a4-04b1-5b0e-91e4-287512eb4bb8", "text": "\u5f00\u5fc3\u70b9\uff0c\u8bf4\u8bdd\uff0c\u7728\u773c\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "2006431", "video_name": "e441a9bd-84c6-54c2-8d89-825cbd08c255", "text": "\u9999\u70e4\u8089\u4e32\u548c\u8638\u6599\u76d8\u3002\u6e34\u6c42\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1003678", "video_name": "43cc9b10-8106-5c2a-a38b-e0818c290c14", "text": "\u4e00\u7247\u5e7b\u60f3\u7684\u591c\u666f\u4e0b\uff0c\u4e24\u540d\u5973\u5b50\u5728\u661f\u7a7a\u4e0b\u7fe9\u7fe9\u8d77\u821e\uff0c\u95ea\u8000\u7684\u94f6\u6cb3\u548c\u4ed9\u5973\u5ea7\u5728\u4ed6\u4eec\u8eab"} +{"id": "8002494", "video_name": "1b46d5d2-a56e-5de6-90ed-02c923f17e71", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u738b\u5b50\u6b63\u5728\u5bfb\u627e\u9f99\u86cb\u3002"} +{"id": "1005642", "video_name": "67b9d74a-bbb8-5232-9a5a-5f04470b7959", "text": "\u8036\u7a23\u5728\u8f89\u714c\u7684\u4e91\u5929\u80cc\u666f\u4e0b\u88ab\u9489\u5728\u5341\u5b57\u67b6\u4e0a\uff0c\u56fe\u50cf\u903c\u771f\uff0c\u7535\u5f71\u8d28\u91cf\u3002"} +{"id": "4004452", "video_name": "700435ee-bf6e-5a1e-8423-1793b91c1964", "text": "\u5728\u7a7a\u65f7\u7684\u7a7a\u95f4\u4e2d\u63cf\u7ed8\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u7269\uff0c\u5c55\u73b0\u5b64\u72ec\u548c\u5185\u5728\u7a7a\u865a\u3002\u4f7f\u7528\u6df1\u6c89\u548c\u5fe7\u90c1\u7684\u989c\u8272"} +{"id": "2003530", "video_name": "78886524-8714-5227-b3fb-d95a93c752c8", "text": "\u5e74\u8f7b\u5973\u5b69\u548c\u8001\u4eba\u5728\u82b1\u56ed\u91cc\u6253\u67b6\u3002"} +{"id": "4003456", "video_name": "5998bb8a-81a2-56c7-a13d-08d6daf8d7c5", "text": "\u5217\u592b\u00b7\u6258\u5c14\u65af\u6cf0\u5728\u9633\u5149\u660e\u5a9a\u7684\u5929\u6c14\u91cc\u5728\u516c\u56ed\u91cc\u6563\u6b65\u3002"} +{"id": "1004699", "video_name": "57581b05-b1f8-5403-b43b-0f6af39a1cfe", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5df4\u65af\u5149\u5e74\u7684\u670d\u88c5\uff0c\u5728SpaceX\u706b\u7bad\u4e0a\u4f7f\u7528\u793e\u4ea4\u5a92\u4f53\u5e73\u53f0X\u3002"} +{"id": "1003982", "video_name": "498e450b-7252-5bac-87f5-085fc22e1276", "text": "\u66b4\u98ce\u96ea\u731b\u70c8\uff0c\u9053\u8def\u88ab\u539a\u539a\u7684\u79ef\u96ea\u8986\u76d6\uff0c\u4f7f\u5f974\u516c\u91cc\u7684\u8dcb\u6d89\u53d8\u5f97\u6781\u4e3a\u8270\u8f9b"} +{"id": "2003652", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "\u7528\u81ea\u7136\u548c\u4e2d\u6027\u7684\u52a8\u4f5c\u505a\u624b\u81c2\u8fd0\u52a8\u3002"} +{"id": "2006072", "video_name": "a0bcdea7-f627-51f7-baff-54f9b8177c2e", "text": "\u5728\u80cc\u666f\u4e2d\u6709\u571f\u661f\u7684\u5fae\u7b11\u591c\u9e2e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "2003284", "video_name": "52b99737-f4b4-59b3-b32f-d8dc0a42a677", "text": "\u4e00\u4e2a\u5a01\u80c1\u6027\u7684\u9f99\u5728\u80dc\u5229\u65f6\u5411\u5929\u7a7a\u5486\u54ee\u3002"} +{"id": "2003416", "video_name": "0e77e53f-7d2a-50fb-8423-b97d6966c8b8", "text": "\u4e00\u4e2a\u7626\u5c0f\u7684\u7537\u5b69\u53d8\u5f97\u975e\u5e38\u5f3a\u58ee\u3002\n\nSource sentence: I want to learn Chinese language."} +{"id": "7004940", "video_name": "b29b99f3-d058-5719-b5b8-6d61e2e09921", "text": "\u7bee\u7403\u8fd0\u52a8\u5458\u8fd0\u7403\uff0c\u4f4e\u59ff\u52bf\uff0c\u62bd\u8c61\u70df\u96fe\u80cc\u666f\u3002"} +{"id": "6002625", "video_name": "69e8f3ba-a8ed-50ea-83dc-ba2d2d50c4fe", "text": "\u7f8e\u4e3d\u7684\u6a58\u6811\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u91d1\u53d1\u5973\u5b69\u5750\u5728\u957f\u6905\u4e0a\uff0c\u8bb8\u591a\u9e1f\u513f\u5728\u5468\u56f4\u98de\u7fd4\u3002"} +{"id": "5001461", "video_name": "d4abe420-ffd3-5740-be20-e0822893b248", "text": "\u4e00\u53ea\u72ec\u89d2\u517dT-Rex\u5728\u4ed9\u5883\u91cc\u884c\u8d70\u3002"} +{"id": "6002334", "video_name": "e85ad245-cb3f-570c-a9d8-b5068d635681", "text": "\u5f88\u591a\u59dc\u997c\u4eba\u5728\u8bf4\u8bdd\u3002"} +{"id": "2005213", "video_name": "93ee1cc0-c4de-57bc-85a7-f23857c66b04", "text": "\u6f2b\u753b\u63cf\u7ed8\u7684\u9e3d\u5b50\u5728\u660e\u4eae\u7684\u84dd\u5929\u4e2d\u98de\u7fd4\u3002"} +{"id": "2007463", "video_name": "690ccde3-d9fd-5444-aa36-a4b8916ff58c", "text": "\u6444\u50cf\u673a\u7d27\u968f\u4e3b\u89d2\u8eab\u540e\uff0c\u5979\u7a7f\u8fc7\u6c83\u5c14\u739b\u7684\u81ea\u52a8\u95e8\uff0c\u4ece\u523a\u773c\u7684\u65e5\u5149\u4e2d\u8fc7\u6e21\u5230\u5fae\u5999\u7684\u5ba4\u5185"} +{"id": "5001092", "video_name": "bc487d78-9806-5de8-9315-d4e57c375149", "text": "\u5e74\u8f7b\u7684\u65e5\u672c\u6d6a\u4eba\u4ee5\u6751\u5e84\u6f2b\u753b\u827a\u672f\u4f5c\u54c1\u98ce\u683c\u8fdb\u5165\u3002"} +{"id": "3005410", "video_name": "18899e2d-400b-5284-bbc7-43093be76472", "text": "\u9ed1\u53d1\u7537\u5b50\u5728\u591c\u665a\u5411\u5929\u7a7a\u4f38\u51fa\u53cc\u81c2\u6b22\u547c\u3002"} +{"id": "3004438", "video_name": "cdc8bcfe-381a-5ebe-bbfe-f4f16112756b", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u5f0f\u5170\u535a\u57fa\u5c3c\u5728\u96e8\u5929\u6761\u4ef6\u4e0b\u3002"} +{"id": "2007721", "video_name": "efeda52d-ec7f-53e2-bfc6-ffeb7bed38c4", "text": "\u7389\u7c73\u7530\u7206\u70b8\u4e86\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0005337", "video_name": "190561a2-9a3f-5e96-bd8f-a0518cf10b86", "text": "\u4e09\u540d\u6251\u514b\u724c\u624b\u5728\u5ea6\u5047\u6751\u73a9\u724c\uff0c\u80cc\u666f\u662f\u6d77\u6ee9\u3002"} +{"id": "2005208", "video_name": "571f7558-6aeb-5a8a-b13a-e4cf2ef17df7", "text": "\u5409\u59c6\u00b7\u51ef\u745e\u57281960\u5e74\u4ee3\u6324\u6ee1\u8f66\u8f86\u7684\u516c\u8def\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003629", "video_name": "416284a9-e609-5e16-abc3-27a2dedba1d3", "text": "\u4e00\u53ea\u72ee\u5b50\u5e7c\u5d3d\u770b\u8d77\u6765\u5bb3\u6015\u5730\u8d70\u8fdb\u68ee\u6797\uff0c\u5c55\u73b0\u4e86\u5b83\u5fae\u5c0f\u7684\u60c5\u611f\u30024K\u8d85\u771f\u5b9e\u3001\u7535\u5f71\u5316\u7684\u573a\u666f"} +{"id": "6003763", "video_name": "a201cb64-ce91-5c6e-b76e-61a587169269", "text": "\u8759\u8760\u4fa0\u5728\u4e00\u573a\u66b4\u98ce\u96e8\u4e2d\u7ad9\u5728\u6469\u5929\u5927\u697c\u7684\u9876\u7aef\u54ed\u6ce3\u3002\u8fd9\u662f\u4e00\u90e8\u9ed1\u767d\u7684\u56fe\u50cf\u5c0f\u8bf4\u3002"} +{"id": "3004606", "video_name": "9e8e88c6-3029-5b11-981d-b2f15905c626", "text": "\u521b\u5efa\u4e00\u5f20\u6c34\u5f69\u753b\u822c\u7684\u56fe\u50cf\uff1a\u6211\u4f5c\u4e3a\u6211\u5973\u513f\u7684\u6bcd\u4eb2\u5f00\u59cb\u5531\u6447\u7bee\u66f2\u7ed9\u6211\u7684\u5b9d\u5b9d\u542c\u3002"} +{"id": "8001389", "video_name": "25cfc9e6-6098-50c4-b366-e0ba758f55d6", "text": "\u8331\u8389\u53f6\u00b7\u5218\u6613\u65af\u7a7f\u7740\u66b4\u9732\u7684\u8863\u670d\uff0c\u5728\u7535\u5f71\u7247\u6bb5\u4e2d\u9a91\u5728\u7537\u4eba\u8eab\u4e0a\u5486\u54ee\u65f6\u7740\u706b\u4e86\u3002"} +{"id": "1006511", "video_name": "7732d64b-ffca-57d1-8068-c5f14816116c", "text": "\u521b\u9020\u4e00\u4e2a\u540d\u53eb\u8a79\u59c6\u65af\u7684\u8036\u7a23\u95e8\u5f92\u5f62\u8c61\u3002"} +{"id": "3005253", "video_name": "5084c15c-e6cd-5164-98a4-e7af95479f79", "text": "\u9752\u7eff\u8272\u7684\u6d77\u9cdd\u5728\u96e8\u6797\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5929\u7a7a\u591a\u96e8\u3002"} +{"id": "3006523", "video_name": "8c84c147-e798-5c01-aead-48bee4f9f571", "text": "\u706b\u5c71\u6b63\u5728\u7206\u53d1\uff0c\u4f7f\u8fd9\u4e2a\u56fe\u50cf\u52a8\u6001\u903c\u771f\u3002"} +{"id": "6004596", "video_name": "e337cfd3-5b21-5154-9411-03cb61bee649", "text": "\u585e\u4f26\u76d6\u8482\u5e73\u539f\u4e0a\u4e00\u4f4d\u5c0f\u7684\u9a6c\u8d5b\u65cf\u7537\u5b69\u8ffd\u9010\u72ee\u5b50\u7684\u52a8\u753b\u3002"} +{"id": "8002955", "video_name": "2fb20269-21be-536a-9432-fb6f735a2316", "text": "\u8272\u5f69\u9c9c\u8273\u7684\u9c7c\u6e38\u6cf3\uff0c\u4ece\u80cc\u540e\u770b\uff0c\u5168\u8eab\u3002"} +{"id": "2005707", "video_name": "471b46c3-f4a0-5f99-9501-2fc74da23e27", "text": "\u513f\u7ae5\u63a2\u7d22\u68ee\u6797\uff1a\u4e00\u5e45\u753b\u9762\uff0c\u4e00\u7fa4\u5b69\u5b50\u5728\u8138\u4e0a\u9732\u51fa\u597d\u5947\u7684\u8868\u60c5\uff0c\u63a2\u7d22\u7740\u90c1\u90c1"} +{"id": "2003193", "video_name": "76afe226-9058-5074-b98a-a33a2da14e2c", "text": "\u5728\u4e2d\u5b66\u90e8\u5206\u653e\u5927\uff0c\u9644\u5e26\u4fe1\u606f1\u3002"} +{"id": "2007628", "video_name": "bbb5c59c-f7f5-5079-875b-ff9287798111", "text": "\u4f0a\u62c9\u62c9\uff08\u4e00\u4f4d\u91d1\u53d1\u768419\u5c81\u5973\u5b69\uff0c\u76ae\u80a4\u767d\u7699\uff09\u548c\u827e\u767b\uff08\u4e00\u4f4d\u68d5\u53d1\u768419\u5c81\u7537\u5b69\uff0c\u76ae\u80a4\u767d\u7699"} +{"id": "7004113", "video_name": "f8a3c021-bc19-5abb-bc21-572386cd82ee", "text": "\u7ef5\u7f8a\u70e7\u70e4\uff0c\u5723\u7ecf\u827a\u672f\u3002"} +{"id": "8001548", "video_name": "e11fe26b-a8e7-5eb4-be8b-393589a213bb", "text": "\u4e24\u53ea\u5c0f\u6050\u9f99\u5728\u8349\u5730\u4e0a\u73a9\u800d\u3002"} +{"id": "8003278", "video_name": "57bcc3ba-61a3-53d2-9960-7badd6d54d2b", "text": "\u4eba\u4eec\u559d\u4e86\u6cc9\u6c34\u540e\u6b7b\u4ea1\u3002\u5168\u666f\u89c6\u56fe\u3002"} +{"id": "8002548", "video_name": "b7e8dad9-0c3b-518d-ba10-4969711c960f", "text": "\u5728\u8d2b\u6c11\u7a9f\u8ffd\u6355\u7f6a\u72af\uff0c\u5feb\u901f\u79fb\u52a8\uff0c\u6444\u50cf\u673a\u8ddf\u968f\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u548c\u7f29\u51fa\uff0c\u7729\u6655\u955c\u5934"} +{"id": "1005116", "video_name": "5e5475fa-0532-5dfd-be59-ad57e5bebc8c", "text": "\u4e00\u4f4d\u82f1\u4fca\u3001\u808c\u8089\u53d1\u8fbe\u7684\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u8dd1\u6b65\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4002442", "video_name": "575fb2d6-9190-5828-9af3-5d55b95e0aca", "text": "\u5c55\u793a\u4e00\u4f4d\u7cbe\u54c1\u5e97\u5e97\u4e3b\u5728\u4ed6\u4eec\u7684\u5e97\u94fa\u7a97\u6237\u4e0a\u8d34\u4e0a\u53ea\u6709Visa Logo\u548cOlympics Logo\u7684\u8d34\u7eb8\uff0c\u6ca1\u6709\u5176\u4ed6\u5b57\u7b26\uff0c\u53ea\u6709Visa\u548cO"} +{"id": "7004423", "video_name": "5241c0a0-da2f-5832-b173-8135bd688fca", "text": "\u4e00\u4e2a\u4e0d\u5b89\u5168\u548c\u8d2b\u7a77\u7684\u57ce\u5e02\u3002 (Candelaria)"} +{"id": "3004798", "video_name": "52f83da9-3d8e-5795-8a56-bdb22ae311b9", "text": "\u5f00\u59cb\u548c\u5929\u7a7a\u4e2d\u7684\u6708\u4eae"} +{"id": "3005592", "video_name": "f3c0c6f5-58d1-5323-9b44-f3135dced4b2", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u706b\u661f\u4e0a\u5954\u8dd1\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "3005396", "video_name": "ee0f157b-49b0-5d1e-b0a5-a893713654ad", "text": "\u5a92\u4f53\u673a\u6784\u5982\u5e7f\u64ad\u3001\u7535\u89c6\u548c\u4f20\u5a92\u53d1\u5e03\u65b0\u95fb\u3002"} +{"id": "4004238", "video_name": "cd233aa1-54ce-50e8-96e7-5945bba91f06", "text": "\u90a3\u4e2a\u5973\u5b69\u5728\u7530\u91ce\u91cc\u548c\u4e00\u53ea\u72d7\u4e00\u8d77\u8dd1\u3002"} +{"id": "0003138", "video_name": "37ddfaaa-9dbe-53ad-aa91-ca87ca1eea67", "text": "\u4ece\u9633\u53f0\u4e0a\u770b\u5230\u5e73\u539f\u4e0a\u4e0b\u7740\u5927\u96e8\u3002"} +{"id": "6004078", "video_name": "ef7dbca7-f26c-50db-b23d-ff4aed4626ff", "text": "\u5728\u96fe\u4e2d\u7684\u5c0f\u523a\u732c\u5bfb\u627e\u98df\u7269\u3002"} +{"id": "6002891", "video_name": "a1c4ca38-a17c-5c95-99fa-7f5b7b33bf44", "text": "\u8bfa\u74e6\u514b\u00b7\u5fb7\u7ea6\u79d1\u7ef4\u5947\u5954\u8dd1\u7740\u8d70\u4e0a\u9886\u5956\u53f0\uff0c\u8eab\u7a7f\u585e\u5c14\u7ef4\u4e9a\u56fd\u65d7\uff0c\u5728\u7f51\u7403\u573a\u4e0a\u3002"} +{"id": "6002485", "video_name": "a13bccc0-4b33-56a7-9bba-850e18584971", "text": "\u6751\u5e84\u7684\u8def\uff0c\u52a8\u6f2b\u827a\u672f\u8f66\u8f86\u6982\u5ff5\u827a\u672f\u3002\u8d1f\u9762\u56e0\u7d20\uff1aMara Jade Skywalker\uff0c\u91d1\u5c5e\u9aa8\u67b6\uff0c\u96d5\u523b"} +{"id": "4002502", "video_name": "3b2055af-947e-5f54-b453-f9c63a94ab6b", "text": "\u9762\u90e8\u52a8\u4f5c\u548c\u98ce\u6548\u679c"} +{"id": "2003298", "video_name": "a9c0c255-c1e7-5dc8-9a37-6a9120613933", "text": "\u8868\u60c5\u7b26\u53f7\u548c\u70df\u96fe\u4ece\u667a\u80fd\u624b\u673a\u5c4f\u5e55\u4e2d\u5192\u51fa\uff0c\u5177\u6709\u7535\u5f71\u6548\u679c\uff0c16K\uff0c\u8d85\u8be6\u7ec6\uff0c\u9ad8\u6e05\u3002"} +{"id": "0004469", "video_name": "09a0beee-1098-5e6a-b877-7451cec626fa", "text": "\u4e00\u53f0\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u6027\u673a\u5668\u4eba\u62b1\u7740\u4e00\u4f4d\u5730\u7403\u5973\u6027\uff0c\u5973\u6027\u624b\u4e2d\u62ff\u7740\u4e00\u675f\u9c9c\u82b1\uff0c\u5fae\u7b11\u7740\u30023D\u52a8\u753b"} +{"id": "1005111", "video_name": "5e420cac-153e-50f6-bab0-170fed6ff31c", "text": "\u4e00\u7fa4\u5de5\u7a0b\u5e08\u5e86\u795d\u65b0\u5e74\u3002"} +{"id": "8003740", "video_name": "c278f3be-004a-58b7-ba94-15bf770ff886", "text": "\u4ece\u5929\u7a7a\u4fef\u89c6\u53e4\u8001\u7684\u5370\u5ea6\u6559\u5bfa\u5e99\uff0c\u6811\u4e0b\u8001\u5e08\u6b63\u5728\u5411\u5b66\u751f\u4f20\u6388\u77e5\u8bc6\uff0c\u6cb3\u6d41\u4e24\u5cb8\u6709\u5c71\u5ce6\u73af"} +{"id": "8001238", "video_name": "41170ae1-558c-5e45-ba50-7df2b738deec", "text": "\u6d3b\u7740\u7684\u5b57\u88ab\u6253\u51fa\u6765\uff0c\u7136\u540e\u6d88\u5931\u6210\u50cf\u7d20\u3002"} +{"id": "7004361", "video_name": "8667f8fa-0367-5e97-baf7-585b4d1d8de5", "text": "\u7535\u5b50\u6e38\u620f\u4eba\u7269\u5455\u5410\u5f69\u8679\uff0c\u5728\u591a\u5f69\u70df\u96fe\u7206\u70b8\u4e2d\u8df3\u821e\uff0c\u8fea\u65af\u79d1\u6d3e\u5bf9\u3002"} +{"id": "0006708", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u7a7a\u8361\u7684\u623f\u95f4\u91cc\u5b64\u72ec\u4e14\u975e\u5e38\u56f0\u60d1\u3002"} +{"id": "2005941", "video_name": "57c8cf20-2ba3-59ba-8388-058bf5265cd8", "text": "\u6218\u4e89\u5766\u514b\uff0cAM1\u963f\u5e03\u62c9\u59c6\u65af\u6709\u4e24\u540d\u58eb\u5175\uff0c\u4e00\u540d\u7ad9\u5728\u5766\u514b\u7684\u53f3\u4fa7\uff0c\u53e6\u4e00\u540d\u7ad9\u5728\u5de6\u4fa7\u3002"} +{"id": "2004545", "video_name": "6e28ce45-dc89-5f4e-9277-59c4a6c27b9c", "text": "\u4e00\u4e2a\u597d\u770b\u7684\u5973\u5b69\u5750\u5728\u9152\u5427\u91cc\uff0c\u51dd\u89c6\u7740\u5979\u7684\u5a01\u58eb\u5fcc\u676f\uff0c\u773c\u4e2d\u542b\u7740\u4e00\u4e9b\u6cea\u6c34\uff0c16:9"} +{"id": "4004920", "video_name": "3694d4bd-ed39-5b21-be1d-aa6d527314a6", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5c0f\u9547\u4e0a\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u5965\u9a6c\u5c14\u7684\u7537\u4eba\u3002"} +{"id": "2006360", "video_name": "53cc004b-dbef-5228-9867-fd0a1aba5f63", "text": "\u548c\u5c1a\u6ee1\u6000\u6148\u60b2\u5730\u6ce8\u89c6\u7740\uff0c\u5411\u91cc\u5965\u4f20\u6388\u4ed6\u7684\u667a\u6167\u3002"} +{"id": "0003187", "video_name": "38f65b81-6ab8-5df6-b8fe-199d8f7adcf5", "text": "\u8ffd\u968f\u4e00\u540d\u722c\u5d16\u8005\uff0c\u7d27\u5f20\u523a\u6fc0\u3002"} +{"id": "7002846", "video_name": "34e20674-8997-5a94-8eef-008ce5824b9f", "text": "\u80fd\u591f\u6cbb\u6108\u6700\u6df1\u7684\u4f24\u53e3\u5e76\u4f7f\u571f\u5730\u81ea\u6211\u66f4\u65b0\u3002"} +{"id": "3004511", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "\u5c0f\u8c61\u5934\u795e\u50cf\u5361\u901a\u63d2\u56fe\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u9762\u5bb9\u6e05\u6670\uff0c\u8eab\u5904\u65e5\u843d\u4e2d\u7684\u82b1\u56ed\u3002"} +{"id": "8003059", "video_name": "fb2a87b6-3391-558b-ba1f-8efcad9c2cac", "text": "\u96ea\u5c71\uff0c\u6247\u5f62\u7684\u5929\u7a7a\uff0c\u767d\u8272\u957f\u6bdb\u72d7\u5728\u96ea\u5730\u91cc\u5954\u8dd1\u3002"} +{"id": "2006256", "video_name": "fb1bc210-e5ce-5696-b890-6f5e8a66d304", "text": "\u900f\u8fc7\u7a97\u6237\u89c2\u770b\uff0c\u6444\u50cf\u673a\u5bf9\u7740\u9e1f\u513f\u5728\u9972\u6599\u5668\u4e0a\u8fdb\u884c\u653e\u5927\u62cd\u6444\u3002"} +{"id": "8003112", "video_name": "75365106-9ec1-5127-a4a4-d564433efd11", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u6b63\u5728\u548c\u4eba\u4eec\u4ea4\u8c08\u5e76\u7b11\u7740\u3002"} +{"id": "0004292", "video_name": "06847b20-86fa-5a4c-99a5-884165f4ec3a", "text": "\u4e00\u53ea\u82f1\u56fd\u77ed\u6bdb\u7070\u732b\u5728\u98ce\u4e2d\u3002"} +{"id": "1005386", "video_name": "6302432d-14b8-5e6c-aa24-92015fb08cd6", "text": "\u8fd9\u5f20\u56fe\u7247\u5c55\u73b0\u4e86\u4e00\u4e2a\u6cd5\u5e08\uff0c\u84dd\u767d\u76f8\u95f4\u7684\u95ea\u7535\u7a7f\u8fc7\u5929\u7a7a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003784", "video_name": "a8d0498b-03e5-52d9-8b2f-ad3f1624b5b6", "text": "\u6c34\u6bcd\u5934\u5409\u4ed6\u624b\u6f2b\u753b\u822c\u7684\u5916\u8868\u52a8\u753b\u3002"} +{"id": "2007617", "video_name": "01fd6b53-8097-5bd2-b9e3-3020a080c49e", "text": "\u4eba\u5728\u7ea2\u8272\u6708\u7403\u8868\u9762\u5954\u8dd1\u3002"} +{"id": "7003022", "video_name": "3f734f70-07b8-52d5-b603-83d6979c266a", "text": "\u4e00\u540d\u5973\u5b50\uff0c\u5979\u7684\u5934\u53d1\u548c\u6d77\u6d6a\u88ab\u98ce\u5439\u52a8\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u53bb\uff0c\u9760\u8fd1\u5979\u7684\u773c\u775b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002824", "video_name": "17f082a1-38fc-520c-9c02-9988461a7200", "text": "\u5341\u4e03\u4e16\u7eaa\u7684\u57ce\u5821\u5854\u88ab\u706b\u7403\u6467\u6bc1\u3002"} +{"id": "0004159", "video_name": "0453cec4-76b1-5c55-ac2e-d7d4a9fe3493", "text": "\u6cb3\u9a6c\u5728\u573a\u5730\u5468\u56f4\u5954\u8dd1\u5e76\u7b11\u7740\u3002"} +{"id": "1003610", "video_name": "4287824c-6291-5771-8f3b-8cf9a03381c2", "text": "\u4e00\u53ea\u9ed1\u767d\u76f8\u95f4\u7684\u732b\u6b63\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "1003805", "video_name": "46463d5b-f311-5c3e-80cd-9875beed05b0", "text": "\u98de\u673a\u7167\u660e\u4e0b\u7684\u666f\u8c61."} +{"id": "7003693", "video_name": "b2ff6f7e-3df4-5f36-81cb-5497f9d062ff", "text": "\u6d82\u9e26\u5899 \u4fe1\u606f\uff1aArtBrandNow\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "3004196", "video_name": "e086503a-f091-55f2-ba10-7ab75788a998", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6d77\u76d7\u79fb\u52a8\u6e38\u620f\uff0c\u4f60\u53ef\u4ee5\u5582\u517b\u3002"} +{"id": "2006145", "video_name": "37bf6cbd-2009-5bf0-96bf-db076e3f419e", "text": "\u5177\u6709\u6781\u9ad8\u73b0\u5b9e\u611f\u7684\u8096\u50cf\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u963f\u62c9\u4f2f\u4eba\uff0c\u7a7f\u7740\u590d\u6742\u800c\u7ec6\u81f4\u7684\u591a\u5f69\u670d\u88c5\u548c"} +{"id": "7004675", "video_name": "5e0292ed-5cae-5120-8c81-000fcd192b6c", "text": "\u5f85\u552e\uff1a\u5a74\u513f\u978b\uff0c\u4ece\u672a\u7a7f\u8fc7\u3002"} +{"id": "0003867", "video_name": "44e8db58-2325-5afb-91d5-7d35f037dd14", "text": "\u4e00\u53ea\u9965\u997f\u7684\u72d0\u72f8\u5728\u4e1b\u6797\u4e2d\u8d70\u7740\uff0c\u5b83\u770b\u89c1\u4e00\u53ea\u4e4c\u9e26\u5728\u6811\u4e0a\u7528\u5634\u5df4\u6258\u7740"} +{"id": "1004071", "video_name": "4b7c23a8-2ec8-5667-963c-c1e2c6854c0a", "text": "\u76f8\u673a\u6f02\u6d6e\u5230\u95e8\u53e3\uff0c\u5973\u6218\u58eb\u8d70\u51fa\u95e8\u3002"} +{"id": "1003364", "video_name": "3df01496-54e0-5638-b5b6-c9e9d28aec5a", "text": "\u73b0\u4ee3\u57ce\u5e02\u7684\u65e5\u51fa\u955c\u5934\uff0c\u62e5\u6709\u6469\u5929\u5927\u697c\u548c\u7e41\u5fd9\u7684\u6e2f\u53e3\u3002\u4ee5\u6f2b\u5a01\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7002815", "video_name": "7ff4c422-c02f-5009-b15b-ec426b1dcb37", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5c06\u9886\uff0c\u80cc\u540e\u662f\u4e00\u4e2a\u5de8\u5927\u7684\u7fe0\u7eff\u8272\u7684\u6e56\u3002"} +{"id": "3004804", "video_name": "fc3cef28-46e4-51c0-98dd-160755ac21d0", "text": "\u4e09\u53ea\u718a\u5750\u5728\u9152\u5427\u7684\u9a6c\u6876\u4e0a\u7684\u6be1\u7ed2\u753b\u3002"} +{"id": "7002347", "video_name": "9c89888a-04bf-5494-8494-199d18a3be00", "text": "\u8bf7\u628a\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u8fb9\u65e5\u51fa\u524d\u51a5\u60f3\uff0c\u7136\u540e\u51b2\u6d6a\u7684\u89c6\u9891\u5236\u4f5c\u6210\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "3006387", "video_name": "42074fcf-36d6-59dd-bb30-7f73b119f3fd", "text": "\u4e00\u540d\u5973\u5b50\u770b\u5230\u4e00\u540d\u7537\u5b50\u5728\u5bb6\u4f7f\u7528\u624b\u673a\u3002"} +{"id": "3005197", "video_name": "9af470c1-cec9-54c4-a8a6-0821209eda32", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u548c\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u82b1\u56ed\u91cc\u73a9\u800d\uff0c\u903c\u771f\u800c\u6709\u7535\u5f71\u611f\u7684\u753b\u9762\u3002"} +{"id": "2005167", "video_name": "dd05fee8-2ab7-5e50-8be6-e4d986d7fbd1", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u7011\u5e03\u548c\u5927\u6a39\u3002 (Font: \u6977\u9ad4)"} +{"id": "1005958", "video_name": "6d759e3f-d597-582a-97cd-6aacafe96d1a", "text": "\u5927\u536b\u00b7\u5361\u6885\u4f26\u9a91\u9a6c\u7a7f\u8fc7\u4f26\u6566\uff0c16:9\u771f\u5b9e\u611f\u7535\u5f71\u7167\u7247\u3002"} +{"id": "4002791", "video_name": "a6f0e99e-edd3-5280-b4ac-33b7c63132dc", "text": "\u6700\u521d\uff0c\u8bb8\u591a\u4e13\u5bb6\u8ba4\u4e3a\u8fd9\u4e2a\u5316\u77f3\u5c5e\u4e8e\u5c3c\u5b89\u5fb7\u7279\u4eba\u7684\u524d\u8eab\u3002"} +{"id": "2005649", "video_name": "409f9511-bae2-571d-8b9e-9171add448ac", "text": "\u9ed1\u8272\u74f7\u7816\u5236\u6210\u7684\u6e38\u6cf3\u6c60\uff0c\u6c34\u662f\u7c89\u8272\u7684\uff0c\u91cc\u9762\u6709\u65e5\u672c\u9cab\u9c7c\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5927\u536b\u00b7\u970d"} +{"id": "6002763", "video_name": "17e7ac00-54f7-5094-abae-2107b173155a", "text": "\u6211\u4eec\u5fc5\u987b\u66f4\u52a0\u52aa\u529b\uff0c\u65e0\u8bba\u8003\u9a8c\u591a\u4e48\u56f0\u96be\u3002\n\nSource sentence: The key to success is hard work and perseverance. \n\u6210\u529f\u7684\u5173\u952e\u5728\u4e8e\u52aa\u529b\u548c\u575a\u6301\u4e0d"} +{"id": "1004679", "video_name": "56e85e83-8e0b-5a07-8531-41783129d30a", "text": "\u4e00\u4e2a\u4eba\u7528\u53e4\u8463\u7897\u548c\u91d1\u52fa\u5403\u5b57\u6bcd\u6c64\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "3005973", "video_name": "639890b6-b776-5d70-a1f3-a63564a277a2", "text": "\u5e7f\u89d2\u955c\u5934\uff0c\u5496\u5561\u5e97\uff0c\u5916\u9762\u4e0b\u96ea\uff0c\u591c\u665a\uff0c\u6ca1\u6709\u8f66\uff0c\u4ece\u91cc\u9762\u5411\u5916\u770b\u3002"} +{"id": "8003881", "video_name": "4e5d9194-e5b2-5277-b8eb-c88af2675352", "text": "\u4e00\u5e45\u7530\u91ce\u4e2d\u519c\u6c11\u7684\u7530\u56ed\u98ce\u5149\u753b\u3002"} +{"id": "7003477", "video_name": "3714e6c0-34ba-5038-be92-e0ecb99c51b5", "text": "\u624b\u4e2d\u62ff\u7740\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "2004392", "video_name": "a580859a-04c1-554a-8ba5-de8a6ffdf52b", "text": "\u6f02\u4eae\u7684\u5927\u81ea\u7136\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u7011\u5e03\u548c\u7f8e\u4e3d\u7684\u82b1\u6735\u3002"} +{"id": "4003102", "video_name": "abb35418-790f-5122-8f5b-26b8e7bcf0ba", "text": "\u8389\u8389\u6000\u7740\u597d\u5947\u548c\u5192\u9669\u7684\u5fc3\u60c5\u8d70\u8fdb\u4e86\u9b54\u6cd5\u68ee\u6797\u3002\u8fd9\u662f\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u3001\u751f\u673a"} +{"id": "7004307", "video_name": "8f70ef4e-c8a6-5c1e-b47c-3300ab40527a", "text": "\u4e00\u53ea\u732b\u8bd5\u56fe\u4ece\u4e00\u53ea\u8001\u9f20\u90a3\u91cc\u5077\u96ea\u8304\u3002"} +{"id": "1005423", "video_name": "639a7cbd-e814-59bc-a099-c8afcd098ad9", "text": "\u5b69\u5b50\u5728\u6e05\u771f\u5bfa\u91cc\u505a\u52a8\u4f5c\u7977\u544a\u3002"} +{"id": "2007458", "video_name": "3ace9a09-6954-5aac-a36a-8d7a68cd2a28", "text": "\u6545\u4e8b\u51fa\u73b0\u4e86\u610f\u60f3\u4e0d\u5230\u7684\u8f6c\u6298\uff0c\u5c06\u4e2a\u4eba\u79c1\u4ec7\u4e0e\u79d1\u6280\u6770\u4f5c\u2014\u2014\u94a2\u94c1\u4fa0\u88c5\u7f6e\u7d27\u5bc6\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002"} +{"id": "0005177", "video_name": "16151f92-75af-5688-b7a9-d73851716765", "text": "\u65e5\u672c\u7684\u5b66\u751f\n\u751f\u6d3b\u5e76\u5b66\u4e60"} +{"id": "3006209", "video_name": "5ef6f6dd-9ad4-5bda-b803-8be591d4f344", "text": "\u4e00\u5806\u6c14\u6ce1\u4ece\u84dd\u8272\u80cc\u666f\u4e2d\u5192\u51fa\uff0c\u6444\u50cf\u673a\u7f29\u653e\u51fa\u6765\uff0c\u6c14\u6ce1\u53d8\u5f62\u6210\u82cf\u6253\u7f50\u9876\u3002"} +{"id": "7004027", "video_name": "df8f1529-d428-57a7-8edb-780d6bfb96ad", "text": "\u8bb8\u591a\u6c7d\u8f66\u5728\u9053\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "0006576", "video_name": "2ee44db4-e0d9-5a88-8fa4-cf50e29df71d", "text": "\u751f\u6210\u4e00\u5f20\u706b\u5f71\u5fcd\u8005\u63a5\u543b\u96cf\u7530\u7684\u56fe\u7247\u3002"} +{"id": "0004498", "video_name": "09fd5722-14c0-5bea-a3bd-639dda2a5cbf", "text": "\u4e09\u6247\u95e8\u7684\u8863\u670d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002599", "video_name": "2eb388e8-7980-57e9-af92-680dc277f45d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u5728\u5915\u9633\u4e0b\u6f2b\u6b65\u82b1\u56ed\u3002"} +{"id": "3003771", "video_name": "c7d57aab-5258-5a37-8796-a0b780f82f4e", "text": "\u706b\u661f\u53d8\u6210\u4e86\u4e00\u4e2a\u4ece\u592a\u7a7a\u4e2d\u770b\u5177\u6709\u6d77\u6d0b\u7684\u7eff\u8272\u661f\u7403\u3002"} +{"id": "4003251", "video_name": "d180c7c2-c2f6-5eb2-b0a0-964b7914f33a", "text": "\u8033\u73af\u548c\u9879\u94fe\u7531\u77f3\u82f1\u3001\u6c34\u6676\u3001\u84dd\u5b9d\u77f3\u5236\u6210\uff0c\u767d\u8272\u6c34\u6676\u5b9d\u77f3\u6d1e\u4e2d\u7684\u96ea\u540e\u5973\u738b\u9879\u94fe\u95ea"} +{"id": "3005799", "video_name": "b7e12e2a-ca70-50ee-8af7-76603b12887c", "text": "\u4e00\u9053\u7011\u5e03\u6d41\u5165\u5c71\u4e2d\u6e56\u6cca\uff0c4K\u9ad8\u6e05\u6670\u5ea6\uff0c\u6d41\u4f53\u52a8\u611f\uff0c\u65e0\u7578\u53d8\u3002"} +{"id": "1003028", "video_name": "379803fb-e287-5a16-abde-8a4a09c0bde2", "text": "\u5361\u901a\u4eba\u6234\u7740\u865a\u62df\u73b0\u5b9e\u773c\u955c\u8df3\u821e\u3002"} +{"id": "5001080", "video_name": "28310592-83b0-5c64-843e-30219d215949", "text": "\u5de8\u5927\u7684\u6cf0\u8fea\u718a\u5728\u9713\u8679\u7684\u4e1c\u4eac\u6467\u6bc1\u4e86\u4e00\u5ea7\u6469\u5929\u5927\u697c\uff0c\u6444\u50cf\u673a\u653e\u5927\u62cd\u6444\u3002\u7535\u5f71\u822c\u7684"} +{"id": "0004360", "video_name": "07b15ea1-4cee-576f-b9cf-fda1b3b1825f", "text": "\u73b0\u5b9e\u4e2d\u7684\u5973\u6027\u673a\u5668\u4eba\uff0c\u7a7f\u7740\u77ed\u9ed1\u88d9\u548c\u900f\u89c6\u4f4e\u80f8\u886c\u886b\uff0c\u5916\u8c8c\u4e9a\u6d32\u7f8e\u5973\uff0c\u8eab\u6750\u6027\u611f\uff0c\u957f"} +{"id": "6004796", "video_name": "d7abb988-339c-5eed-9145-61bcd2012cf7", "text": "\u4e4c\u9e26\u5728\u6c34\u58f6\u4e0a\u6254\u77f3\u5934\u3002"} +{"id": "2003087", "video_name": "3a6f171c-81c8-5bc9-b861-489fd6e78a7e", "text": "8\u4f4d\u50cf\u7d20\u7684\u7cbe\u7075\u6234\u7740\u7ea2\u8272\u5e3d\u5b50\u548c\u80e1\u5b50\uff0c\u5728\u4e00\u4e2a\u60b8\u52a8\u7684\u7ea2\u8272\u8611\u83c7\u4e0a\u8df3\u821e\uff0c\u80cc\u666f\u662f\u8ff7"} +{"id": "1003227", "video_name": "3b6cc189-7dc7-5a5e-b6ea-0573fdb92aaa", "text": "\u7f8e\u4e3d\u8868\u8fbe\u6027\u7684\u8d85\u73b0\u5b9e\u91cf\u5b50\u8ba1\u7b97\u673a\u5728\u98ce\u4e2d\u8df3\u821e\uff0c\u653e\u5927\u539f\u5b50\u7ed3\u6784\u3002"} +{"id": "1004301", "video_name": "4f808011-9390-57ab-ba68-43a08ee86645", "text": "\u4e00\u4e2a\u53ebNEW SUN\u7684\u7537\u4eba\u8d8a\u6765\u8d8a\u5f3a\u5927\u3002"} +{"id": "2004756", "video_name": "cb66fa70-c22d-5c8d-b88a-de7ada58defa", "text": "\u4e13\u4e1a\u7684\u821e\u8005\u5728\u7535\u5f71\u300aBreakin\u300b\u98ce\u683c\u4e2d\u8df3\u6d41\u884c\u821e\u9501\u821e\u3002"} +{"id": "0006934", "video_name": "357d9ee7-e547-5a3a-ab28-6b5abd63da85", "text": "\u5e74\u8f7b\u4eba\uff0c\u5728\u7535\u5b50\u821e\u5385\u91cc\u8df3\u821e\uff0c\u665a\u4e0a\uff0c\u6709\u8bb8\u591a\u8272\u5f69\u7f24\u7eb7\u7684\u706f\u5149\u3002"} +{"id": "3005489", "video_name": "28f5b5e1-c985-54c3-8422-db4410ac1f87", "text": "\u4e00\u4f4d\u6d77\u62c9\u9c81\u4eba\uff08\u6765\u81ea\u300a\u585e\u5c14\u8fbe\u4f20\u8bf4\uff1a\u8352\u91ce\u4e4b\u606f\u300b\uff09\uff0c\u6b63\u5728\u4e00\u6761\u5c0f\u5f84\u4e0a\u884c\u8d70\u3002"} +{"id": "3006488", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "\u7070\u8272\u6234\u773c\u955c\u7684\u732b\u6b63\u5728\u7535\u8111\u4e0a\u73a9\u800d\u3002"} +{"id": "2007250", "video_name": "0bbf769b-4cd3-5de2-a3a1-feb537999a37", "text": "\u4e00\u8258\u7f8e\u4e3d\u7684\u94f6\u8272\u94ec\u8d28\u661f\u9645\u98de\u8239\u5728\u6d77\u6ee9\u4e0a\u964d\u843d\uff0c\u900f\u8fc7\u7a97\u6237\u900f\u51fa\u706f\u5149\uff0c8k\u7684\u5f71\u89c6"} +{"id": "1003298", "video_name": "3cae7d2e-a2c1-548a-9872-53c85236da9e", "text": "\u5eb7\u7eb3\u00b7\u9ea6\u683c\u96f7\u6208\u5728UFC\u516b\u89d2\u7b3c\u4e2d\u51fb\u8d25\u8fc8\u514b\u5c14\u00b7\u94b1\u5fb7\u52d2\u3002"} +{"id": "7003822", "video_name": "b153f58b-d9b2-5dec-97ba-8a3b2d844566", "text": "\u9547\u4e0a\u7684\u5c45\u6c11\u4eec\u8b66\u544a\u8bf4\uff0c\u4e00\u95f4\u65e7\u5e9f\u5f03\u623f\u5c4b\u91cc\u6709\u4e00\u4e2a\u88ab\u9501\u8d77\u6765\u7684\u623f\u95f4\u3002"} +{"id": "6003684", "video_name": "a7c43d3a-c4f3-5907-bddc-1790c45c383e", "text": "\u4e00\u53ea\u52a8\u753b\u9b3c\u8df3\u5230\u6c99\u53d1\u4e0a\uff0c\u6709\u4eba\u6b63\u5728\u7761\u89c9\u3002"} +{"id": "7003965", "video_name": "7936c26c-2c41-59b2-ab01-fcbe5922991a", "text": "\u8ba9\u6ee1\u5929\u7ea2\u8272\u98de\u821e\uff0c\u51e0\u4e2a\u5973\u5b69\u8df3\u821e\u5e76\u4ef0\u671b\u8272\u5f69\u3002"} +{"id": "5001779", "video_name": "60b63d4f-491e-5cf4-97c8-cc366bbdf4b3", "text": "2.5D\uff0c8K\uff0c\u7cbe\u81f4\uff0c\u4e00\u4e2a\u7537\u5b69\uff0c\u4e61\u6751\u591c\u665a\uff0c\u5ba4\u5185"} +{"id": "4003549", "video_name": "4803aa63-e2dd-57cc-82c8-6898b0990f07", "text": "\u6c7d\u8f66\u5728\u8986\u76d6\u7740\u7070\u70ec\u7684\u9053\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "7004343", "video_name": "f0e50f7e-40cc-52f5-b3b3-15602df6cde1", "text": "\u7ad9\u5728\u4e00\u7fa4\u4eba\u4e2d\uff0c\u5598\u7740\u7c97\u6c14\u3002"} +{"id": "7004920", "video_name": "950a30f6-d66d-5c2b-981f-76692746d1ba", "text": "\u5973\u5b69\u5e2e\u52a9\u6751\u5e84\u5b9e\u73b0\u4e86\u548c\u5e73\u3002\n\nSource sentence: My favorite color is blue. \n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "3004393", "video_name": "e6949c57-5895-5dc8-811f-eb58bcf8202b", "text": "\u593a\u5f97\u5965\u65af\u5361\u5956\u7684\u592a\u7a7a\u98de\u8239\u964d\u843d\u5728\u5916\u661f\u884c\u661f\u7684\u7535\u5f71\u3002"} +{"id": "8002403", "video_name": "602d3209-b8ef-5703-993d-37352c23d1df", "text": "\u4e00\u5bf9\u4e2d\u56fd\u592b\u5987\u53bb\u8fea\u58eb\u5c3c\u4e50\u56ed\u65c5\u884c\u3002"} +{"id": "8002659", "video_name": "7dbb94d1-d8b7-5b94-98bc-467ec8013067", "text": "\u4e00\u9762\u79d1\u897f\u5609\u65d7\u5e1c\u98d8\u626c\u5728\u4e00\u4e2a\u5973\u4eba\u624b\u4e2d\u3002"} +{"id": "2003583", "video_name": "8c21bc24-62dc-5f95-8b99-3b96dad089de", "text": "\u7ea2\u8272\u7684\u8349\u5728\u666e\u901a\u7684\u8349\u5468\u56f4\u8513\u5ef6\uff0c\u4f7f\u666e\u901a\u7684\u8349\u53d8\u6210\u7ea2\u8272\u7684\u8349\u3002"} +{"id": "7004167", "video_name": "02329428-f3a9-5151-b10c-e3c5738f3939", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u7a7f\u7740\u582a\u8428\u65af\u57ce\u914b\u957f\u8db3\u7403\u961f\u7684\u5236\u670d\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n"} +{"id": "1005495", "video_name": "650f1a31-1b9c-5aa3-b1e6-c8b0c8c7ad4c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u4ece\u7834\u7a97\u8fdb\u5165\u3002"} +{"id": "8001601", "video_name": "d303ed10-5937-504a-87ad-cff2b09b3c79", "text": "\u6709\u4eba\u4ece\u773c\u775b\u91cc\u56bc\u53e3\u9999\u7cd6\u4e94\u79d2\u949f\u3002"} +{"id": "3004204", "video_name": "481b5640-38ab-5e16-b6ff-93ee3f0cfc5a", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u9762\u5177\u4ee5\u8001\u5f0f\u62fc\u8d34\u7684\u98ce\u683c\u8868\u8fbe\u3002"} +{"id": "8002284", "video_name": "a1c32b60-3e5c-5ee7-9543-51d91c99cbbe", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u591c\u665a\u6cbf\u7740\u9053\u8def\u884c\u9a76\uff0c\u9003\u79bb\u7740\u5927\u706b\u3002"} +{"id": "3004785", "video_name": "c5645eaf-50b6-556d-9256-9e975e79cee0", "text": "\u4e91\u6735\u5728\u79fb\u52a8\u548c\u53d8\u5316\uff0c\u5730\u4e0a\u7684\u4e91\u6735\u5728\u79fb\u52a8\u548c\u53d8\u5316\uff0c\u6eda\u52a8\u7684\u4e91\u6735\uff0c\u95ea\u5149\uff0c\u9633\u5149\u95ea\u8000\u3002"} +{"id": "0005697", "video_name": "1f970fde-2963-54c4-896b-fa8ebb27af00", "text": "\u6743\u529b\u7684\u6e38\u620f\u6700\u7ec8\u5b63\u8282\u7684\u53d8\u5316"} +{"id": "6003826", "video_name": "cf6fb197-ff93-58b8-82ce-57ba9b1137a2", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0cAaroha\u503e\u8eab\u9760\u8fd1\uff0c\u5411\u6e29\u67d4\u7684\u5fae\u98ce\u8033\u8bed\u79d8\u5bc6\u3002\u6811\u53f6\u6c99\u6c99\u4f5c\u54cd\uff0c\u4eff\u4f5b\u5206\u4eab"} +{"id": "2004395", "video_name": "3271e760-7ca0-5552-891d-33b770e917ef", "text": "\u8d2d\u7269\u8d70\u5eca\n\u4fe1\u606f\uff1a\u4e07\u5723\u8282\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001699", "video_name": "8a4ca69b-e432-56c0-8dcd-0d64cbc584d1", "text": "\u5728\u5fb7\u56fd\u83b7\u53d6\u589e\u503c\u7a0e\u53f7\u3002"} +{"id": "3006667", "video_name": "ba8d2bb8-1dde-54bc-b9b4-8812afa1d24e", "text": "\u4e00\u5f20\u903c\u771f\u7684\u7167\u7247\u5c55\u73b0\u4e86\u5df4\u675c\u4f9d\u90e8\u843d\u7684\u4f20\u7edf\u821e\u8e48\uff0c\u5b8c\u7f8e\u7684\u5f02\u5e38\uff0c\u9ad8\u54c1\u8d28\uff0c8K\u3002"} +{"id": "3003398", "video_name": "b0f40e7c-cc25-5df9-b63e-9146c05f80b9", "text": "\u5c0f\u7537\u5b69\u9a6c\u5179\u5728\u68ee\u6797\u91cc\u5bfb\u627e\u67d0\u7269\u3002"} +{"id": "7003058", "video_name": "47f238ec-451d-5355-a839-9f82cd9e6737", "text": "\u4e00\u540d\u4e94\u5c81\u7684\u7537\u5b69\u5728\u533b\u9662\u91cc\u5bb3\u6015\u533b\u751f\u3002"} +{"id": "4004576", "video_name": "df1f7e4a-cc96-53db-9445-ae480f098259", "text": "\u52a8\u753b\u725b\u5728\u8def\u4e0a\u5954\u8dd1\uff0c\u51c6\u5907\u4e0a\u516c\u4ea4\u8f66\u3002"} +{"id": "6002108", "video_name": "6aa4e361-5774-5566-a07c-c20a838a4209", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u905b\u72d7\u5e76\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "1003699", "video_name": "443a852e-769b-56d3-ba78-ed3054636abd", "text": "\u57ce\u5e02\u9010\u6e10\u8f6c\u53d8\u6210\u519c\u6751\u548c\u666f\u89c2\u3002"} +{"id": "6004578", "video_name": "53d4b94a-9475-5e74-8054-a4728ed2880c", "text": "\u8d85\u73b0\u5b9e\u7684\u6ce2\u6d6a\u62cd\u6253\u5728\u5ca9\u77f3\u6d77\u6ee9\u4e0a\u3002\u7535\u5f71\u822c\u7684AR\uff1a16\uff1a9"} +{"id": "0005715", "video_name": "1ffbd0f4-6af5-5cb9-8ed7-8b9b7e9559f1", "text": "\u4e00\u6761\u9c7c\u548c\u5176\u4ed6\u7684\u9c7c\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "2003940", "video_name": "79c77efd-1a45-5f1c-b152-c4d38ed83f68", "text": "\u6cb3\u7554\u7f8e\u4e3d\u7684\u57ce\u5e02\u666f\u89c2"} +{"id": "3003102", "video_name": "01cffc64-6aff-55ae-bb40-f2f42578efa6", "text": "\u8fbe\u82ac\u5947\u7684\u300a\u6700\u540e\u7684\u665a\u9910\u300b\u3002"} +{"id": "6002800", "video_name": "a75daaec-b000-5370-9833-c975b354b612", "text": "\u5c06\u7ef4\u514b\u591a\u8ff7\u4eba\u5730\u7a7f\u8fc7\u94f6\u884c\u5b89\u4fdd\u8fdb\u884c\u60f3\u8c61\uff0c\u878d\u5408\u60ac\u7591\u4e0e\u5e7d\u9ed8\u5143\u7d20\u3002"} +{"id": "8003152", "video_name": "c58225b6-ff27-5c6f-b4b3-8a99803764fa", "text": "\u7537\u5b69\u6b63\u5728\u5411\u6811\u6735\u8bfb\u4e66\uff0c\u60f3\u8c61\u529b\uff0c\u706f\u5149\uff0c\u5361\u901a\uff0c3D\uff0c\u903c\u771f\u3002"} +{"id": "4004735", "video_name": "a1fa8a42-726f-5e6f-879a-00ede73b9840", "text": "\u4e00\u7fa4\u533b\u751f\u5728\u9152\u5427\u8df3\u821e\u3002"} +{"id": "4002974", "video_name": "d79e227a-c046-50be-a4a6-680620b2616c", "text": "\u70ed\u5e26\u996e\u6599\u9633\u5149\u53cd\u5c04\u6f6e\u6e7f\u6ef4\u843d\u3002"} +{"id": "4003777", "video_name": "214c8280-3a1c-5bee-a9e9-ed537baac8e0", "text": "\u4f7f\u7528\u6211\u7684\u7167\u7247\u5236\u4f5c\u4e00\u6bb5157\u79d2\u7684\u89c6\u9891\uff0c\u89c6\u9891\u5e94\u8be5\u5305\u542b\u4e0d\u540c\u573a\u666f\u7684\u68ee\u6797\u3002"} +{"id": "3003148", "video_name": "8c4268bf-788b-5869-816e-62322f873490", "text": "\u6566\u714c\uff0c\u4e2d\u56fd\u80cc\u666f\uff0c\u5409\u7965\u4e91\u5143\u7d20\uff0c\u6708\u4eae"} +{"id": "2005968", "video_name": "b5566551-9c95-5c34-96b2-a9b16368e95f", "text": "\u4ed6\u52e4\u594b\u5de5\u4f5c\u4ee5\u652f\u6301\u5bb6\u4eba\uff0c\u4ed6\u5fd9\u7740\u5904\u7406\u6587\u4e66\u5de5\u4f5c\u3001\u5f00\u4f1a\uff0c\u5e76\u4e0e\u540c\u4e8b\u5076\u5c14\u804a\u5929\u3002"} +{"id": "6002067", "video_name": "6073f20f-114e-5039-8723-0a19e74921ce", "text": "\u4f60\u53ef\u4ee5\u60f3\u8c61\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u82b1\u56ed\uff0c\u5176\u4e2d\u4e00\u68f5\u53e4\u8001\u7684\u5927\u6811\u662f\u7126\u70b9\u3002\u963f\u514b\u5df4\u548c\u6bd4\u5c14\u5df4\u5c14"} +{"id": "8003239", "video_name": "70cd9686-2bc4-51ed-bbf2-44c3db3e2962", "text": "\u9a6c\u5e93\u65af\u00b7\u5965\u52d2\u7559\u6b63\u5728\u4f7f\u7528\u4eba\u5de5\u667a\u80fd\u5199\u4e00\u672c\u4e66\u3002"} +{"id": "4002068", "video_name": "8052fe30-e1cf-536a-96d8-ac0de45f451f", "text": "\u4e09\u4e2a\u4e0d\u540c\u7684\u4eba\u5206\u522b\u8868\u73b0\u51fa\u75bc\u75db\u654f\u611f\u3001\u60c5\u7eea\u56f0\u6270\u548c\u538b\u529b\u8010\u53d7\u529b\u964d\u4f4e\u7684\u4e09\u79cd\u8868\u60c5\u3002"} +{"id": "4003076", "video_name": "57868789-5075-5c0e-9d56-48755a41b616", "text": "\u521b\u9020\u4e00\u5f20\u4eba\u5de5\u667a\u80fd\u56fe\u50cf\uff0c\u63cf\u7ed8\u4e11\u5c0f\u9e2d\u79bb\u5f00\u719f\u6089\u7684\u519c\u573a\uff0c\u5728\u91d1\u8272\u7684\u843d\u65e5\u4e0b\u8e52\u8dda\u800c"} +{"id": "0003757", "video_name": "42db2837-b18f-55a0-9ea9-28d19f1e9630", "text": "\u6f02\u4eae\u7684\u767d\u8272\u5c0f\u5973\u5b69\u7ad9\u5728\u963f\u585e\u62dc\u7586\u56fd\u5fbd\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "8002375", "video_name": "a72629c4-2556-5147-8b05-e3f2bd3125c5", "text": "\u4e00\u4e2a\u5973\u5b69\u4ee5\u52a8\u6f2b\u98ce\u683c\u5728\u5b87\u5b99\u98de\u8239\u4e2d\u98de\u884c\u3002"} +{"id": "2004939", "video_name": "5385095e-5b9d-5f88-9fd1-116803c4273d", "text": "\u4e00\u540d\u7537\u5b50\u5e26\u7740\u4e00\u53ea\u9cc4\u9c7c\u548c\u6d77\u7ef5\u5b9d\u5b9d\u8d70\u8fc7\u4e00\u5ea7\u6865\u3002"} +{"id": "1004513", "video_name": "53c1df4e-d4ad-5438-9bd8-bae2cbe90fc4", "text": "\u65b0\u5a18\u4f18\u96c5\u5730\u8d70\u4e0b\u697c\u68af\u3002\n\nSource sentence: The sun is shining brightly in the sky.\n\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u7167\u8000\u660e\u4eae\u3002"} +{"id": "1003858", "video_name": "47140e63-1526-50b8-abae-2fc89aeb0942", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u5b83\u7684\u5e7c\u5d3d\u4e00\u8d77\u5750\u5728\u5ca9\u77f3\u4e0a\uff0c\u72ee\u5b50\u738b\u7535\u5f71\u5f0f\u7684\u573a\u666f\uff0c4K\u8d85\u771f\u5b9e\u7684\u7535\u5f71\u753b\u9762\uff0c"} +{"id": "5001387", "video_name": "89fc6eac-25cf-5ea2-8751-7352f5ce6bb0", "text": "\u53f2\u8482\u592b\u00b7\u62c9\u514b\u5c14\u5728\u548c\u300a\u5357\u65b9\u516c\u56ed\u300b\u89d2\u8272\u4e00\u8d77\u73a9\u300a\u5409\u4ed6\u82f1\u96c4\u300b\u3002"} +{"id": "0006070", "video_name": "261cfdbe-6b84-5946-82c2-321cccee3023", "text": "\u90a3\u4e2a\u7537\u5b69\u51fa\u751f\u7684\u65f6\u5019\uff0c\u4ed6\u7684\u5bb6\u4eba\u6b63\u7ad9\u5728\u4e00\u65c1\u770b\u7740\uff0c\u5bb6\u5883\u4e5f\u5f88\u597d\u3002"} +{"id": "7003501", "video_name": "2893542f-bcf6-5ef6-8b2e-507e6ecab77d", "text": "Translation: \u5b9d\u9a6cM5\u8fdb\u5165\u96a7\u90534K\u89c6\u9891\u903c\u771f\u3002"} +{"id": "7004160", "video_name": "7d0040a7-7363-5af1-bdde-8eb425def3f7", "text": "\u76db\u6709\u91d1\u5b50\u7684\u5b9d\u76d2\u770b\u8d77\u6765\u771f\u5b9e\u800c\u6709\u8da3\u3002"} +{"id": "0005072", "video_name": "14554896-ab11-53cf-a714-5ba49c812c0a", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u6751\u6c11\u4eec\u6ce8\u610f\u5230\u5730\u9762\u4e0a\u51fa\u73b0\u4e86\u5fae\u5c0f\u7684\u5ae9\u82bd\u3002"} +{"id": "4004257", "video_name": "5d3eb0e8-955c-57a7-83f8-3a0fb0e9ad8c", "text": "\u751f\u6210\u4e00\u6bb5\u52a8\u753b\uff0c\u8bf4\u660e\u6751\u6c11\u9762\u4e34\u7684\u5730\u7406\u6311\u6218\u3002\u5c55\u793a\u6751\u5e84\u88ab\u81ea\u7136\u969c\u788d\u7269\u5305\u56f4\uff0c\u4f8b\u5982\u5c71\u4e18\u3001\u68ee\u6797\u548c"} +{"id": "1003912", "video_name": "48375f58-3aeb-56a1-bf17-6225aee6fdec", "text": "\u4e00\u4e2a\u65b0\u7684\u53cb\u8c0a\u5f00\u59cb\u7efd\u653e\uff0c\u5fae\u5999\u7684\u7f8e\u4e3d\u3002"} +{"id": "3004107", "video_name": "39c2902b-9847-5ced-8a3d-8f6f52fc37c1", "text": "\u62ab\u8428\u5236\u4f5c\uff0c\u57f9\u6839\uff0c\u706b\u817f\uff0c4K\uff0c\u8df3\u52a8\u7684\u914d\u6599\uff0c\u591a\u6c41\u3002"} +{"id": "3005262", "video_name": "88a73072-8b30-57bb-a0c6-6aa27fa10e72", "text": "\u7f8e\u4e3d\u7684\u77ed\u53d1\u5973\u5b69\u7a7f\u7740\u4e25\u683c\u7684\u7d27\u8eab\u80cc\u5fc3\u548c\u7d27\u8eab\u5185\u88e4\uff0c\u53cc\u817f\u5f20\u5f00\uff0c\u9762\u5411\u6444\u50cf\u5934\u5728\u9ad8"} +{"id": "6003099", "video_name": "d116ec51-7656-56e1-9fc1-23e971e223e0", "text": "\u4e00\u540d\u4ece\u697c\u4e0a\u8df3\u4e0b\u6765\u7684\u7537\u5b50"} +{"id": "3006456", "video_name": "c3e8bcde-329a-510b-b781-b55f6fb165e0", "text": "\u4eba\u5458\u6d41\u52a8"} +{"id": "5001093", "video_name": "ed91a8dd-57ad-54cf-b883-395ce708cdc9", "text": "\u96e8\u5929\u4e1b\u6797\u4e2d\u7684\u5c0f\u8305\u5c4b"} +{"id": "3003334", "video_name": "55ba234d-76d4-5eaf-b526-3cf8fedffab4", "text": "\u8d5b\u535a\u670b\u514b\uff0c\u62e5\u6709\u7d2b\u8272\u773c\u775b\u7684\u65af\u82ac\u514b\u65af\u732b\uff0c\u661f\u7a7a\u591c\u665a\uff0c\u660e\u4eae\u7684\u6708\u4eae\uff0c\u8d5b"} +{"id": "8003063", "video_name": "0796d853-f99f-5fea-8150-48f80fbfc90d", "text": "\u4e00\u7fa4\u9c7c\u6e38\u6cf3\uff0c\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3005762", "video_name": "9ce8252f-c377-5065-b677-d39ea09be086", "text": "\u4e2d\u570b\u718a\u8c93\u4e58\u5750\u706b\u7bad\u524d\u5f80\u661f\u7403\uff0c3D\u52d5\u756b\u3002"} +{"id": "5001505", "video_name": "78d1fdca-d63f-51b4-b5f3-96606b533b02", "text": "priime\u996e\u6599\u7535\u5f71\u955c\u5934\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "7002348", "video_name": "ba619c1d-f085-54cf-97ea-8150bb80b68a", "text": "\u7a7f\u7740\u5f97\u4f53\u7684\u706b\u7130\u5934\u9aa8\u5411\u955c\u5934\u8d70\u6765\uff0c\u5fae\u7b11\u7740\uff0c\u949e\u7968\u5728\u5929\u7a7a\u4e2d\u98de\u821e\u7740\u5e76\u843d\u4e0b\u6765\u3002"} +{"id": "7003635", "video_name": "e1f72fbc-4595-58b5-8a9b-0e1f3fd998bf", "text": "\u4e24\u53ea\u975e\u5e38\u84ec\u677e\u548c\u53ef\u7231\u7684\u677e\u9f20\u5728\u5723\u8bde\u591c\u5728\u5e02\u4e2d\u5fc3\u8ffd\u9010\u3002"} +{"id": "7003769", "video_name": "8524b35a-9474-52be-aa45-983a20bc7a2b", "text": "\u6258\u9a6c\u65af\u5c0f\u706b\u8f66\u9760\u8fd1\uff0c\u54e5\u7279\u5f0f\u6050\u6016\uff0c\u9ed1\u6697\u5fe7\u90c1\u7684\u98ce\u683c\u3002"} +{"id": "0006022", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u9003\u8131\uff0c\u4e00\u4f4d\u7a7f\u9ed1\u8272\u793c\u670d\u7684\u7f8e\u4e3d\u91d1\u53d1\u5973\u90ce\u548c\u4e00\u4f4d\u666e\u901a\u7684\u6d77\u76d7\u3002"} +{"id": "0004125", "video_name": "039f565e-e584-551f-a621-4a4d304a21a1", "text": "\u9a86\u9a7c\u625b\u7740\u88ab\u9ec4\u91d1\u548c\u8d22\u5bcc\u5305\u88f9\u7684\u975e\u6d32\u56fd\u738b\u5728\u6c99\u6f20\u4e2d\u653e\u677e\u3002"} +{"id": "6003445", "video_name": "07efc6fe-f936-5ae5-991f-48b9dee4c0ea", "text": "\u8389\u8389\u627e\u5230\u4e86\u68ee\u6797\u7684\u5fc3\u810f\u2014\u2014\u4e00\u68f5\u5de8\u5927\u800c\u626d\u66f2\u7684\u6811\uff0c\u5b83\u7684\u6839\u90e8\u975e\u5e38\u602a\u5f02\u3002"} +{"id": "2004516", "video_name": "91a54134-7e0b-5cb5-8586-9688ddace063", "text": "\u4e00\u53ea\u673a\u5668\u732b\u4ee5\u5361\u901a\u98ce\u683c\u8df3\u8dc3\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "4003788", "video_name": "4d99d71e-3e5a-50dc-b911-232cea4cb68d", "text": "\u5728\u5176x\u8f74\u4e0a\u7ffb\u8f6c\u76fe\u724c\u4e09\u6b21\u3002"} +{"id": "0006690", "video_name": "311f107d-b1c9-5682-9ab1-92d7db224fc7", "text": "\u4e00\u4f4d\u6234\u5934\u5dfe\u7684\u5c0f\u7f8e\u4e3d3D\u667a\u80fd\u5973\u5b69\u901a\u8fc7\u625b\u7740\u4eba\u4eec\u7684\u8d2d\u7269\u888b\u6765\u5e2e\u52a9\u4ed6\u4eec\u3002"} +{"id": "6002875", "video_name": "145924d1-a938-5019-a668-5e9252413f37", "text": "\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u6751\u5e84\u7684\u753b\u9762\u4e2d\u3002"} +{"id": "1006715", "video_name": "7b0b9ae2-6654-5d1a-a1ed-935326436165", "text": "\u6c99\u6f20\u4e2d\u7684\u809a\u76ae\u821e\u8005\u6c34\u5f69\u753b"} +{"id": "4004709", "video_name": "c73f876f-e6de-5009-ac6d-6ce05c07c747", "text": "\u97f3\u4e50\u5bb6\u4eec\u7528\u5c0f\u53f7\u3001\u8428\u514b\u65af\u98ce\u5728\u592a\u7a7a\u4e2d\u6f14\u594f\u7235\u58eb\u4e50\u3002"} +{"id": "4003525", "video_name": "87e39b4d-0535-5901-8728-3d22d921503d", "text": "\u4e00\u53ea\u5c0f\u8c61\u548c\u6bcd\u4eb2\u8d70\u6563\u4e86\uff0c\u5728\u6cb3\u8fb9\u7684\u68ee\u6797\u91cc\u54ed\u6ce3\u3002"} +{"id": "2007308", "video_name": "87cc3a71-5162-5a4d-a503-253b32b67073", "text": "20\u4e16\u7eaa40\u5e74\u4ee3\u975e\u88d4\u7f8e\u56fd\u4eba\u5728\u7235\u58eb\u9152\u5427\u8df3\u821e\u3002"} +{"id": "0006096", "video_name": "2682fd14-1a7a-5ce7-9811-2ebca8dc4d5b", "text": "\u4ecb\u7ecdEspirra\u548cCastellano Silvestre\u4e3a\u7ecf\u5386\u65e0\u6570\u4e0e\u9f99\u7684\u6218\u6597\u800c\u6dec\u70bc\u5200\u950b\u7684\u5f3a\u5927\u6218\u58eb\u3002"} +{"id": "3004452", "video_name": "ace977f5-271b-5c00-b7f0-b7afc5d30df3", "text": "\u57ce\u5e02\u4e2d\u5fc3\u7684\u5973\u4eba\u7a7f\u7740\u96e8\u8863\u5728\u8857\u4e0a\u8df3\u821e\u3002\u591c\u6df1\u4eba\u9759\uff0c\u5448\u73b0\u51fa\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u98ce\u683c"} +{"id": "2005546", "video_name": "b1604c38-6c0a-54e5-9133-859dc21bd4e5", "text": "\u94f6\u6cb3\u7cfb\u7206\u70b8\u6210\u9ed1\u6d1e\u7684\u5ef6\u65f6\u6444\u5f71"} +{"id": "0005155", "video_name": "15bbed11-cc0c-5629-9d4a-ae6ebf203290", "text": "\u4e00\u53ea\u72d0\u72f8\u4e3a\u4e86\u60ac\u6302\u7684\u8461\u8404\u800c\u8df3\u8dc3\u3002"} +{"id": "1003511", "video_name": "40e074c6-9c87-5374-9d3b-031a4928bb12", "text": "\u8a79\u59c6\u65af\u5e36\u8457\u6211\u5011\u98db\u5954\u9032\u5165\u5c0f\u578b\u5b87\u5b99\u98db\u8239\"\u7c73\u8afe\u865f\"\uff0c\u6211\u5011\u53ea\u80fd\u7a7f\u8457"} +{"id": "1003446", "video_name": "3fe5b254-7bc8-5b31-86a2-1d5dc64cab91", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u665a\u4e0a\u6d77\u8fb9\u6536\u96c6\u6f02\u4eae\u7684\u5c0f\u77f3\u5934\u3002"} +{"id": "2005394", "video_name": "450e7d4a-10d3-5919-87e1-e5a4af3c6f96", "text": "\u4e2d\u4e16\u7eaa\u6b66\u5668\u548c\u76d4\u7532\u7684\u6df7\u5408\u7269\uff0c\u73af\u7ed5\u7740\u571f\u6c9f\u3002\u4fe1\u606f\uff1aNifty Craft\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003766", "video_name": "7a6ebbfd-07b8-52b8-803f-f9688792d3aa", "text": "\u706b\u5f71\u5fcd\u8005\u3001\u94a2\u94c1\u4fa0\u3001\u91d1\u53d1\u78a7\u773c\u3001\u96f7\u7535\u98ce\u66b4\u3002"} +{"id": "4002074", "video_name": "9037ab7b-7d7c-5387-a309-b87bb0cf38ec", "text": "\u901a\u8fc7\u8fd9\u4e2a\u6545\u4e8b\uff0c\u6211\u4eec\u80fd\u770b\u5230\u79cb\u5b63\u68ee\u6797\u91cc\u7684\u52a8\u7269\u5982\u4f55\u4e92\u76f8\u5e2e\u52a9\u3001\u5173\u5fc3\u5f7c\u6b64\uff0c\u5e76\u4e00\u8d77\u5ea6\u8fc7\u7f8e\u597d\u7684\u591c\u665a"} +{"id": "1003310", "video_name": "3ce81dcb-8d05-5c18-b9ff-4ff68543ba96", "text": "\u4e00\u9897\u6b4c\u5531\u7684\u5fc3\u5728\u706b\u7130\u4e2d\u8df3\u52a8\u3002\u8d858\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "7004299", "video_name": "f9f368f4-79ef-56ff-8849-9c9992b71560", "text": "\u8ba9\u725b\u5f80\u4e0a\u8d70\uff0c\u8ba9\u98ce\u9002\u5ea6\u5439\u52a8\u3002"} +{"id": "6002558", "video_name": "f049eb5d-1d5f-5090-ae22-061eb1dae400", "text": "\u98ce\u666f\u4e0e\u4e91\u6735\u548c\u65e5\u843d\u7684\u822a\u62cd\u56fe\u50cf"} +{"id": "6003677", "video_name": "8312232a-16a0-5c41-a08b-db7831381427", "text": "\u4e16\u754c\u536b\u751f\u7ec4\u7ec7\uff08WHO\uff09\u5b9a\u4e49\u7684\u4e0d\u5b55\u75c7\u662f\u6307\u592b\u5987\u5728\u540c\u5c45\u3001\u6709\u89c4\u5f8b\u7684\u6027\u751f\u6d3b\u4e14\u4e0d\u4f7f\u7528\u4efb\u4f55\u907f\u5b55"} +{"id": "7003560", "video_name": "a4082d65-376c-5dc4-b487-d936bb6c4894", "text": "\u5409\u59c6\u00b7\u4ea8\u68ee1970\u5e74\u7684\u5f69\u8272\u827a\u672f\u7535\u5f71\u3002"} +{"id": "0004433", "video_name": "08d4e3f4-46ce-5f7e-b550-f2e174801622", "text": "\u632a\u5a01\u7684\u5e05\u54e5\u5728\u5723\u8bde\u8282\u65f6\u62b1\u7740\u4e00\u53ea\u6a58\u8272\u7684\u732b\u3002"} +{"id": "2006208", "video_name": "1a363517-99ee-5547-afc1-681846a27044", "text": "\u4fdd\u7f57\u5728\u8036\u8def\u6492\u51b7\u7684\u53e4\u57ce\u5411\u4ee5\u5f17\u6240\u4eba\u89e3\u91ca\u5723\u7ecf\uff0c\u6709\u51e0\u4e2a\u5bf9\u795e\u7684\u8bdd\u611f\u5174\u8da3\u7684\u4eba\u5728\u5468\u56f4\u542c\u7740"} +{"id": "1006893", "video_name": "7df4136c-4352-59a1-845c-f42e83a34491", "text": "\u8367\u5149\u5e7d\u7075\u51fa\u73b0\u5728\u5e9f\u5f03\u7684\u7ef4\u591a\u5229\u4e9a\u5927\u5385\uff0c\u73af\u5883\u6050\u6016\u3002"} +{"id": "2003895", "video_name": "d1e7af56-08c8-5985-b070-c24fd75fcb7c", "text": "\u4e00\u53ea\u7f8e\u4e3d\u800c\u5de8\u5927\u7684\u68d5\u8272\u718a\uff0c\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u68ee\u6797\u91cc\u5750\u5728\u4e00\u6839\u65e5\u5fd7\u4e0a\uff0c\u5403\u7740\u871c"} +{"id": "2007697", "video_name": "2f2b9862-31e2-5d23-90e8-3df7f043eb15", "text": "\u9999\u6e2f\u57ce\u5e02\u7684\u7a7a\u4e2d\u62cd\u6444\u3002"} +{"id": "8003192", "video_name": "d47d92db-eeca-5404-8396-521d9d132f3d", "text": "\u4e00\u53ea\u534e\u4e3d\u7684\u9ed1\u4e4c\u9e26\u8715\u53d8\u6210\u4e00\u53ea\u60ca\u4eba\u7684\u718a\u718a\u706b\u7130\u51e4\u51f0\u3002"} +{"id": "3006133", "video_name": "8f06351a-e291-5b5d-9566-c10de0a1a9b4", "text": "\u591c\u665a\u68ee\u6797\u4e2d\u7684\u5c71\u7f8a\u7ad9\u8d77\u6765\u3002"} +{"id": "7003224", "video_name": "3fe4205f-592c-573a-aaf3-63d238784e3d", "text": "\u84dd\u732b\u6b63\u5728\u7535\u8111\u524d\u7f16\u7801\u3002\n\nSource sentence: I am learning Chinese language and culture. \n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "3004430", "video_name": "cdde2089-6fde-5482-93ef-c87114ae3a9b", "text": "\u6f2b\u753b\u98ce\u683c\uff0c\u4eba\u4eec\u4e0e\u673a\u5668\u4eba\u4e00\u8d77\u751f\u6d3b\u3002"} +{"id": "7002945", "video_name": "9810f13e-4fa3-5a22-a8bf-edadec218e01", "text": "\u9e1f\u548c\u9e66\u9e49\u5728\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "8001139", "video_name": "a01ce6cd-eaca-5472-add4-0b64ef63e18e", "text": "\u4e00\u6bb5\u5728\u300a\u81ea\u7531\u4e4b\u6218\u300b\u4e2dAlok\u8df3\u821e\u7684\u89c6\u9891\u3002"} +{"id": "6003697", "video_name": "eb41e0c0-b25e-5033-9136-14db36312543", "text": "\u5168\u8eab\u6811\u4eba\u62e5\u62b1\uff1a\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u98ce\u683c\uff0c\u7f29\u653e\u5230\u753b\u9762\u4e2d\u5fc3\uff0c\u9ed1\u767d\u3002"} +{"id": "0005827", "video_name": "21d942c8-c264-5ee9-afbc-09257d43bf85", "text": "\u6d77\u5e95\u6709\u87ba\u8d1d\u5728\u722c\u884c\u3002"} +{"id": "7003509", "video_name": "b8cc7d3d-c487-5020-a008-9c78ec0bf2b2", "text": "\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u7684\u5e74\u8f7b\u4e13\u5bb6\u7537\u5b50\u5728\u590d\u53e4\u73a9\u5177\u80cc\u666f\u524d\u5145\u6ee1\u70ed\u60c5\u5730\u9762\u5bf9\u6444\u50cf\u673a\u8bf4\u8bdd\u3002 \n\nSource sentence: The cat is sleeping"} +{"id": "8002064", "video_name": "28eb6865-0c9e-5dda-b93b-f337d01d5910", "text": "\u5f17\u96f7\u5fb7\u00b7\u6c34\u661f\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u821e\u53f0\u4e0a\uff0c3D\uff0c4K\u3002"} +{"id": "7004774", "video_name": "5944610c-2aa8-5e98-8764-eea722f14c6f", "text": "\u533f\u540d\u9ed1\u5ba2\u5728\u9ed1\u6697\u623f\u95f4\u91cc\u5de5\u4f5c\u3002"} +{"id": "6003776", "video_name": "0fea9b0b-475e-5f2f-b358-0ef35056c4f9", "text": "\u672c10\u641e\u7b11\u8df3\u821e\u53d8\u8eab\u5916\u661f\u4eba\uff0c\u9ad8\u6e05\uff0c\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u80cc\u666f\u6709\u683c\u6e29\uff0c\u672c10\u7ecf\u5178\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "2003904", "video_name": "6431d98e-78f3-5db1-b74e-64b071d4dd09", "text": "\u5bfb\u4eba\u542f\u4e8b\u6d77\u62a5\uff0c20\u4e16\u7eaa90\u5e74\u4ee3\u7535\u5f71\u573a\u666f\uff0c\u98ce\u5439\u62c2\u6d77\u62a5\uff0c\u903c\u771f\u611f\u3002"} +{"id": "1005487", "video_name": "64da8e10-e168-5e7d-9444-c5cb740d555a", "text": "\u592a\u7a7a\u6587\u660e\u5373\u5c06\u7206\u53d1\u6218\u4e89\u3002"} +{"id": "1004138", "video_name": "4cae52dd-b572-561d-baf4-6cb724f8b81a", "text": "\u7ea2\u767d\u95ea\u70c1\u5faa\u73af\u7684\u56fa\u5b9a\u5316\u3002"} +{"id": "7002145", "video_name": "052e5433-8422-5982-b975-bcdc4f02edca", "text": "\u8bf7\u5efa\u9020\u4e00\u8258\u80fd\u591f\u5728\u592a\u7a7a\u4e2d\u822a\u884c\u7684\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "8001454", "video_name": "d961faaa-0d51-56ac-a5c6-79a776196891", "text": "\u5728\u5e9f\u5f03\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u6027\u673a\u68b0\u9aa8\u67b6\uff0c\u8d85\u5199\u5b9e\uff0c\u63d2\u753b\uff0c\u9ad8\u54c1\u8d28\uff0c\u5927\u5e08\u7ea7\uff0c\u590d"} +{"id": "6003762", "video_name": "7509d246-47fe-5e93-98f5-b5ccc4186fc9", "text": "G5\uff0c\u8fd0\u52a8\u6a21\u7cca3\uff0c\u8d85\u5199\u5b9e\u9ad8\u6e05\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u574e\u8036\u00b7\u5a01\u65af\u7279\u7a7f\u7740\u5c3c\u65e5\u5229\u4e9a\u670d\u88c5"} +{"id": "3006810", "video_name": "42d0be3e-9d0e-5f1f-a3ea-10d6654e5564", "text": "\u8ba9\u56fe\u7247\u4e2d\u7684\u4e24\u4e2a\u4eba\u5bf9\u8bdd\u3002"} +{"id": "4003121", "video_name": "592954df-dc08-5d03-89c4-530ffff72de7", "text": "\u9ed1\u5ba2\u5206\u6790\u4e00\u4e2a\u5168\u74034K\u56fe\u8868\u3002"} +{"id": "3003297", "video_name": "577a592f-e497-57f8-8023-0bc3e2efe754", "text": "Sabin Balasa\u98ce\u683c\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u6d1b\u53ef\u53ef\uff0c\u5f53\u4ee3\uff0c\u6d6a\u6f2b\u4e3b\u4e49\u542f\u53d1\u7684\u8096\u50cf\u753b\u3002 \n\nSource sentence: The world is a book, and those who do"} +{"id": "2007003", "video_name": "49f087f2-0385-5dcf-ac73-2d5785a92ed6", "text": "\u4e09\u67b6\u65e0\u4eba\u673a\u5728\u83b7\u80dc\u8005\u9886\u5956\u53f0\u4e0a\u3002"} +{"id": "8002378", "video_name": "d7fa4445-6555-55db-9ea7-8ea3c4249abb", "text": "\u672a\u6765\u524d\u9762\u6709\u4e00\u53ea\u7315\u7334\u6843\u9e1f\u7684\u57ce\u5e02\u3002"} +{"id": "6004419", "video_name": "26ea8b73-1720-575a-b144-86bdc53faa5c", "text": "\u5b69\u5b50\u4eec\u7684\u52a8\u7269\u89c6\u9891\u4e2d\u6709\u4e00\u53ea\u718a\u57283:4\u7684\u6bd4\u4f8b\u4e0b\u5728\u4e1b\u6797\u4e2d\u8df3\u821e\u3002"} +{"id": "2004651", "video_name": "01071d89-9e43-5329-9520-5b1160f16dba", "text": "\u5947\u602a\u7684\u8868\u73b0\u4e3b\u4e49\u7ed8\u753b\uff0c\u5236\u4f5c\u62bd\u8c61\u753b\u3002"} +{"id": "0006717", "video_name": "319bc8ff-d366-5fb3-a6af-89b1b23f7612", "text": "\u4e00\u540d\u4fc4\u7f57\u65af\u519b\u4eba\u5b88\u536b\u5728\u4e00\u5806\u706b\u817f\u4e0a\u8df3\u7740Fortnite\u821e\u3002"} +{"id": "6003539", "video_name": "3c0cdaf3-4089-58a7-81fe-a456bc72863d", "text": "\u6d53\u5bc6\u7684\u68ee\u6797\uff0c\u5c71\u8109\uff0c\u8ff7\u4eba\u7684\u68ee\u6797\uff0c\u8d85\u73b0\u5b9e\u7684\u6e32\u67d3\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "6003157", "video_name": "cdb033bf-2d86-5baf-924f-26dd35bcf7a6", "text": "\u5728\u9ed1\u6697\u7684\u5e7f\u9614\u7a7a\u95f4\u4e2d\uff0c\u6709\u4e00\u4e2a\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u8272\u5706\u5f62\u7269\u4f53\u5728\u65cb\u8f6c\uff0c\u4eae\u5ea6\u53d8\u5f97\u8d8a\u6765\u8d8a\u6697\u3002"} +{"id": "3004352", "video_name": "e678cb49-bb40-52d4-8346-8d92ff8eaf64", "text": "\u665a\u4e0a\u68ee\u6797\u7684\u53ef\u6015\u666f\u8c61\uff0c\u4e00\u8f86\u6c7d\u8f66\u5728\u8fd9\u7247\u68ee\u6797\u91cc\u884c\u9a76\uff0c\u5f53\u4ed6\u5f00\u8f66\u884c\u9a76\u5728\u8def\u4e0a\u65f6\uff0c\u6c7d\u8f66\u7684\u8f6e\u80ce"} +{"id": "1006142", "video_name": "708527ed-2b60-5db8-a88c-7c673dcaca7f", "text": "\u5c55\u793a\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u5973\u5b69\uff0c\u7a7f\u7740\u4e94\u989c\u516d\u8272\u7684\u6ed1\u96ea\u88c5\uff0c\u4f18\u96c5\u5730\u6ed1\u4e0b\u5761\uff0c\u4eab\u53d7\u96ea\u666f\uff0c\u8fd8\u6709\u4e00\u4e2a\u5145"} +{"id": "0003402", "video_name": "3d07d958-dd06-518e-8b37-a0b8c40e63c8", "text": "\u5979\u662f\u4e00\u4f4d\u81ea\u4fe1\u5e78\u798f\u7684\u5973\u6027\uff0c\u56e0\u81ea\u5df1\u7684\u5916\u8c8c\u611f\u5230\u81ea\u8c6a\u3002"} +{"id": "6002729", "video_name": "d46859d0-aba4-56f2-b79f-77cb8d275538", "text": "\u4e00\u4e2a\u6751\u5e84\u6545\u4e8b\uff0c\u77ed\u7247\uff0c\u52a8\u753b\uff0c\u60b2\u4f24\u60ac\u7591\u3002"} +{"id": "4004826", "video_name": "74affaec-9915-533d-9f99-3459e2fbee0c", "text": "\u4e00\u6bb5\u65e0\u4eba\u673a\u89c6\u9891\u5c55\u793a\u4e86\u963f\u5179\u7279\u514b\u57ce\u5e02\u53ef\u80fd\u7684\u5916\u89c2\u3002"} +{"id": "0003230", "video_name": "39acaa85-4090-5430-b79b-a7946cbb83e4", "text": "\u5341\u4e94\u4e16\u7eaa\u7684\u82f1\u56fd\u56fd\u738b\u5750\u5728\u4e00\u4e2a\u5927\u5706\u684c\u4e0a\u3002"} +{"id": "1005192", "video_name": "5f7ab933-6cfe-5cc9-ac84-08c159e51f2f", "text": "\u4e11\u964b\u7684\u9c7c\u5728\u5145\u6ee1\u6811\u679d\u7684\u9ed1\u6697\u6d51\u6d4a\u7684\u6c34\u4e2d\uff0cVHS\u5f55\u50cf\u5e26\u771f\u5b9e\u5730\u5448\u73b0\uff0c\u50cf\u72c2\u70ed\u7684"} +{"id": "8001931", "video_name": "d75d451c-5340-511c-83b2-7318c953f813", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u8857\u4e0a\u5f98\u5f8a\uff0c\u52a8\u6f2b\u3002"} +{"id": "2003411", "video_name": "e17ac999-5635-57c9-97ae-65a30ea51538", "text": "\u6050\u6016\u7535\u5f71\u98ce\u683c\u7684\u9ed1\u767d\u4e91\u548c\u9e70\u3002"} +{"id": "0003719", "video_name": "424f706b-8bb1-58b9-b909-2d808842c9d8", "text": "\u706b\u5f71\u5fcd\u8005\u548c\u4f50\u52a9\u9a7e\u9a76\u672a\u6765\u4e3b\u4e49\u6c7d\u8f66\u6bd4\u8d5b\uff0c\u4ed6\u4eec\u7684\u7236\u4eb2\u662f\u88c1\u5224\u3002"} +{"id": "3005931", "video_name": "72b8df13-745c-5d94-92e2-9b85abf1d773", "text": "\u6211\u9700\u8981\u5728\u4e00\u5bb6\u8425\u9500\u673a\u6784\u4e2d\u7684\u63d2\u56fe\uff0c\u8fd9\u4e2a\u673a\u6784\u6b63\u5728\u4e3a\u6211\u8fdb\u884c\u66f4\u591a\u7684\u897f\u74dc\u521b\u610f\u9879\u76ee\u3002"} +{"id": "3005506", "video_name": "b723f008-bf60-56d5-8206-dbb2256c50e1", "text": "\u89c2\u4f17\u60ca\u53f9\u5e76\u9f13\u638c\uff0c\u4eff\u4f5b\u88ab\u4ed6\u4eec\u6240\u89c2\u8d4f\u7684\u7f8e\u6240\u9707\u64bc\u3002"} +{"id": "4002393", "video_name": "fded2e1b-de26-5b3a-9ea9-cb374e09b59b", "text": "\u5728\u5c71\u4e0a\u6709\u4e00\u53ea\u9ad8\u5927\u7684\u5e26\u6709\u957f\u5599\u7684\u767d\u8272\u9e1f\uff0c\u5b83\u6709\u957f\u957f\u7684\u722a\u5b50\u5728\u98a4\u6296\u3002"} +{"id": "0006432", "video_name": "2c3e4e63-1536-5444-b03b-d8e42569634e", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u5728\u300a\u751f\u547d\u529b\u91cf\u51b3\u6597\u300b\u7535\u5b50\u7ade\u6280\u6bd4\u8d5b\u4e2d\u8d62\u5f97\u4e86\u5956\u676f\u3002"} +{"id": "8003033", "video_name": "2a5dbd8c-634a-5fa8-96fd-8bca97350a0d", "text": "\u8428\u59c6\u662f\u4e00\u4e2a\u957f\u76f8\u4e0d\u9519\u4f46\u9f3b\u5b50\u5f88\u5927\u7684\u5e74\u8f7b\u4eba\uff0c\u4ed6\u6b63\u5728\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u4ed6\u5f88\u4f24\u5fc3\u5e76\u4e14\u770b\u8d77\u6765\u5f88"} +{"id": "3005455", "video_name": "f98fb681-a5c4-57a6-99aa-7da0d9aae920", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\u76ef\u7740\u6444\u50cf\u673a\uff0c\u6444\u50cf\u673a\u5c06\u7126\u70b9\u653e\u5927\u5230\u5979\u7684\u76ee\u5149\u4e0a\uff0c\u5979\u5fae\u7b11\u7740\uff0c\u8eab\u540e\u662f\u4e00\u7247\u6df7"} +{"id": "5001222", "video_name": "b449eabb-323d-54f0-9a39-2421417b1326", "text": "\u5e74\u8f7b\u7684\u677e\u9f20\u8428\u7c73\uff0c\u62e5\u6709\u7740\u5bbd\u5927\u597d\u5947\u7684\u773c\u775b\uff0c\u6b63\u4ef0\u671b\u7740\u5728\u6a61\u6811\u4e0a\u7684\u5965\u5229\u5f17"} +{"id": "3005405", "video_name": "77718f41-5595-594b-913e-0df3b3a73db3", "text": "\u82f1\u56fd\u822a\u7a7a\u516c\u53f8\u7684\u7167\u7247\u903c\u771f\u7684\u7a7a\u4e2d\u5ba2\u8f66A380\u4e0e5\u67b6\u7a7a\u5ba2\u6b27\u6d32\u6218\u6597\u673a\u4e00\u540c\u98de\u884c\u3002"} +{"id": "3004522", "video_name": "8a54f3a7-1b1c-5e2c-8dfb-2d4bd4a3642d", "text": "\u5728\u57ce\u5e02\u7684\u4e00\u500b\u9ed1\u6697\u79d8\u5bc6\u89d2\u843d\u91cc\uff0c\u4e00\u5c0f\u7fa4\u4eba\u570d\u7e5e\u8457\u6eab\u65af\u9813\uff0c\u7576\u4ed6\u7528\u5805\u5b9a\u7684\u624b\u52e2"} +{"id": "8001569", "video_name": "a0aab8e3-24b1-5893-9068-231bdd2e2276", "text": "\u5b66\u6821\u91cc\u7684\u5b69\u5b50\u4eec\u5728\u6a59\u8272\u548c\u84dd\u8272\u7684\u73af\u5883\u4e2d\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002 \n\nSource sentence: My favorite food is sushi. \n\u6211\u6700\u559c\u6b22\u7684"} +{"id": "7004787", "video_name": "a80c2af8-7ccc-54b0-93ae-c70d08af9765", "text": "\u670b\u53cb\u4eec\u7684\u5408\u7167\uff0c\u8138\u4e0a\u6df7\u5408\u4e86\u5bbd\u6170\u548c\u4ecd\u5b58\u4e0d\u5b89\u7684\u795e\u60c5\u3002"} +{"id": "4004955", "video_name": "c61dfcd6-63e5-5125-ac8c-c86bd94d95fc", "text": "\u591c\u665a\u96e8\u6ef4\u843d\u5728\u6c34\u9762\u4e0a\uff0c\u6620\u7167\u51fa\u9713\u8679\u706f\u5149\u4e0b\u7684\u57ce\u5e02\u3002"} +{"id": "8002879", "video_name": "18c6e569-70ee-5901-897b-e9383678d288", "text": "\u5728\u76d8\u5b50\u91cc\u7684\u4e00\u9897\u571f\u8c46\u4e0a\u957f\u51fa\u4e00\u4e2a\u957f\u5f97\u50cf\u4eba\u773c\u775b\u7684\u773c\u775b\uff0c\u8fd8\u7728\u4e86\u4e00\u4e0b\u773c\u3002"} +{"id": "4004066", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "\u9a6c\u5e93\u65af\u00b7\u5965\u52d2\u7559\u9a91\u9a6c\u3002"} +{"id": "7002728", "video_name": "78d893e6-4eec-59cc-823a-9e18a13aa3ae", "text": "\u5973\u5b69\u5728\u8def\u4e0a\u60b2\u4f24\u5730\u8d70\u7740\u7684\u5361\u901a"} +{"id": "1004816", "video_name": "5902bb29-e28e-56fc-8d5d-d96b0e57f971", "text": "\u5723\u8bde\u8282\uff0c\u7cbe\u7075\u4e0a\u67b6\uff0c\u76ae\u5361\u4e18\u3002"} +{"id": "4003427", "video_name": "463a9a7e-44e3-55b2-805b-9f0c8f1504ea", "text": "\u4e00\u4e2a\u9b3c\u5973\u5b69\u7684\u8138\u5f71\u5728\u6c34\u4e2d\u3002"} +{"id": "2005806", "video_name": "3a03d104-9569-556a-af3b-6bc693cc226a", "text": "1\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c0f\u5973\u5b69\u5728\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u53d1\u73b0\u4e86\u4e00\u95f4\u56fe\u4e66\u9986\uff0c\u91cc\u9762\u6709\u4e00\u4e2a\u9b54\u6cd5\u5e08\u7ed9\u4e86\u5979\u4e00\u74f6\u836f"} +{"id": "3003258", "video_name": "f7ccb4d2-5df2-5b8f-9893-5d2860e60520", "text": "\u52a8\u6f2b\u5973\u5b69\u8eba\u5728\u6d77\u6ee9\u4e0a\u770b\u4e66\u3002"} +{"id": "2007920", "video_name": "659eac5f-ab70-5de1-9fc6-053cc660607d", "text": "\u5728\u9065\u8fdc\u7684\u5b87\u5b99\u4e2d\uff0c\u53db\u9006\u98de\u884c\u5458\u963f\u4e3d\u5a05\u00b7\u8bfa\u74e6\u8239\u957f\u4e0e\u661f\u9645\u5e1d\u56fd\u5c55\u5f00\u4e86\u4e00\u573a\u7ade"} +{"id": "3005224", "video_name": "d6fd8e64-aecf-5050-9b71-2ede27895d07", "text": "\u4e94\u989c\u516d\u8272\u7684\u8774\u8776\uff0c\u957f\u7740\u5927\u8c61\u9f3b\u5b50\uff0c\u5728\u82b1\u4e1b\u4e2d\u98de\u7fd4\u3002"} +{"id": "0003193", "video_name": "390bf181-ce57-5ff9-a727-7a38d841ddd6", "text": "\u592b\u59bb\u4e4b\u7231\uff0c\u7a7f\u8d8a\u65f6\u7a7a\u4e8e\u5927\u6d77\u4e2d\uff0c\u65e5\u51fa\u3002 \n\nSource sentence: I am grateful for your help and support throughout this project.\n\u611f\u8c22\u4f60\u5728\u6574\u4e2a\u9879\u76ee\u671f\u95f4\u7684"} +{"id": "2006286", "video_name": "613cbea8-85fe-5749-94ee-1dfb3e1fa00c", "text": "\u5973\u5b69\u548c\u5979\u7684\u80cc\u666f\u7684\u672a\u6765\u4e3b\u4e49\u8fd0\u52a8 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "7002573", "video_name": "9b287d4a-feb1-5803-a327-9a01c64ffcfe", "text": "\u9ad8\u7ea7\u53e4\u4ee3\u673a\u68b0\u548c\u6280\u672f\u5efa\u9020\u91d1\u5b57\u5854\uff0c\u5fd9\u788c\u7684\u5de5\u4eba\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u8272\u5c16\u9876\u5728\u9633\u5149\u4e0b\u95ea"} +{"id": "3004514", "video_name": "b003eeb9-1424-5212-9205-f6b313e1067e", "text": "\u7406\u53d1\u5e97\u5728\u6d17\u8f66\u4e2d\u5fc3\u524d\u9762\u3002"} +{"id": "2006254", "video_name": "0344714f-c1de-54a4-8ffe-cb8a3fc132a2", "text": "\u7d2b\u8272\u6447\u6eda\u660e\u661f\uff0c\u5927\u7d2b\u8272\u5047\u53d1\uff0c\u7d2b\u8272\u8863\u670d\uff0c\u85b0\u8863\u8349\u8272\u5409\u4ed6\uff0c\u83b1\u56e0\u77f3\u9ad8\u8ddf\u978b\uff0c"} +{"id": "2003222", "video_name": "3e746b86-49b3-5afc-bf6e-54952bca44cf", "text": "\u9b3c\u9b42\u822c\u7684\u8eab\u5f71\u5728\u5e8a\u4e0a\u6389\u4e0b\u786c\u5e01\u768416:9\u753b\u9762\u3002"} +{"id": "3006161", "video_name": "8a4243e6-8097-58a7-a5c7-966291f6c0d4", "text": "\u4eba\u4eec\u901a\u8fc7\u8fd9\u9879\u670d\u52a1\u5728\u7f8e\u98df\u4e1a\u627e\u5230\u5de5\u4f5c\u3002"} +{"id": "4002862", "video_name": "7c6acb62-82e8-5042-ac10-8819642d8ca6", "text": "\u8857\u9053\u4e0a\u5feb\u901f\u79fb\u52a8\u7684\u4eba\u7fa4\u548c\u706f\u5149\u7684\u52a8\u753b\u3002"} +{"id": "7002954", "video_name": "e378ba6b-e4fd-5873-926b-b8f024de0696", "text": "\u57fa\u4e8e\u6b64\u56fe\u50cf\u521b\u5efa\u5404\u79cd\u56fe\u50cf\uff0c\u5177\u6709\u76f8\u540c\u7684\u89d2\u8272\u548c\u76f8\u540c\u7684\u7eb9\u8eab\u3002"} +{"id": "1005513", "video_name": "657b678e-0676-5361-a9aa-26b75b459052", "text": "\u6a21\u62df\u4e00\u4e2a\u5b69\u5b50\u7684\u7b11\u8138\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003492", "video_name": "092cc4ef-991f-574b-8d57-40f804fd2ea3", "text": "\u751f\u6210\u4e00\u5f20\u540d\u53eb\u827e\u7c73\u8389\u7684\u5e74\u8f7b\u5973\u5b69\u575a\u5b9a\u5411\u524d\u8fc8\u6b65\u7684\u5f62\u8c61\u3002"} +{"id": "3004564", "video_name": "2f68af6a-255a-58f0-8c62-44ebaacfa9aa", "text": "\u8036\u7a23\u6559\u5bfc\u513f\u7ae5\u5723\u7ecf\u7684\u89c6\u9891\uff0c\u6210\u5e74\u4eba\u56f4\u7ed5\u5728\u4ed6\u5468\u56f4\uff0c\u4ee5\u516c\u514330\u5e74\u7684\u4ee5\u8272\u5217\u98ce\u683c\u4e3a\u56fe\u50cf\u6837\u5f0f\uff0c\u683c\u5f0f"} +{"id": "3006728", "video_name": "e0653f5a-a240-5634-ae90-3e66cacabdac", "text": "\u4e00\u4e2a\u53e4\u8001\u3001\u7834\u8d25\u7684\u8c6a\u5b85\uff0c\u865a\u7a7a\u5e84\u56ed\uff0c\u9634\u68ee\u68ee\u5730\u77d7\u7acb\u7740\u3002"} +{"id": "2003881", "video_name": "0a23d54d-3eb1-5b08-a91c-b88bcfcc0dc6", "text": "\u7f8e\u4e3d\u7684\u6cb3\u666f\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c4K\uff0c\u77f3\u5934\u4e0a\u7684\u9752\u86d9\uff0c\u8bf7\u628a\u9752\u86d9\u7f29\u5c0f\u5e76\u91c7\u7528\u52a8\u6f2b\u98ce\u683c\uff0c"} +{"id": "1003769", "video_name": "4568fbfa-a62c-5bdb-b55e-941272e17131", "text": "\u8ff7\u4eba\u7684\u91d1\u53d1\u5929\u4f7f\u4ee5\u73b0\u4ee3\u98ce\u683c\u4e3a\u80cc\u666f\uff0c\u6620\u886c\u7740\u5927\u57ce\u5e02\u7684\u666f\u8c61\u3002"} +{"id": "4003197", "video_name": "808a51f8-a933-5432-b203-82d569e16acf", "text": "\u65e5\u4e9a\u7528\u6709\u8da3\u7684\u610f\u5916\u6765\u65bd\u6cd5\u3002"} +{"id": "1004245", "video_name": "4e8c1805-2868-5f9f-a4e4-7aebe0b412cc", "text": "\u90a3\u4e2a\u7537\u4eba\u5c06\u4f1a\u64cd\u7eb5\u4e00\u67b6\u5c0f\u98de\u673a\u8fdb\u884c\u7a7a\u4e2d\u6e38\u89c8\u3002"} +{"id": "0006164", "video_name": "2793136a-9f45-56ad-81af-dae57309a6d0", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a90\u5e74\u4ee3\u5317\u97e9\u5973\u8bb0\u8005\u5f62\u8c61\uff0c\u7a7f\u774090\u5e74\u4ee3\u98ce\u683c\u7684\u8863\u670d\uff0c\u7ad9\u572890\u5e74\u4ee3\u98ce\u683c\u7684\u80cc\u666f\u524d\u505a\u62a5\u9053\uff0c\u5934"} +{"id": "8001537", "video_name": "462476ab-ad15-54b2-8c0b-9e9c263d442b", "text": "\u6f2b\u5a01\u8d85\u7ea7\u82f1\u96c4\u62e5\u6709\u7eb3\u4f26\u5fb7\u62c9\u00b7\u83ab\u8fea\u7684\u9762\u5bb9\u3002\u590d\u4ec7\u8005\u96c6\u7ed3\u3002"} +{"id": "3006842", "video_name": "a6bad3d0-7aa6-5ff0-b843-b77bc4c4ed30", "text": "\u7c89\u8272\u6c7d\u8f66\u7684\u7279\u5199\uff0c\u955c\u9762\u53cd\u5c04\uff0c\u94ec\u9540\u90e8\u4ef6\u3002"} +{"id": "7003798", "video_name": "68122e9d-02e0-54a0-8957-c4d190545f33", "text": "\u4e00\u4e2a\u6ca1\u6709\u8138\u7684\u7537\u4eba\u60f3\u6293\u4f4f\u4e00\u4e2a\u5929\u4f7f\u3002"} +{"id": "7003941", "video_name": "2fc392b7-0189-5f79-ae27-c9e4b48748a5", "text": "\u60ca\u4eba\u7684\u9ec4\u91d1\u88c5\u7532\u9a91\u58eb\u4e4b\u6218"} +{"id": "2005714", "video_name": "6d7fcc14-d1db-5d5d-a311-97a5239e559d", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u7535\u5f71\u62cd\u6444\u4e2d\u6709\u690d\u7269\u548c\u9b54\u6cd5\u3002"} +{"id": "1003665", "video_name": "437aa9bd-e9ed-51d1-be2f-8aaf6e4cbcb0", "text": "\u5728\u661f\u9645\u6df1\u5904\u6f02\u6d6e\u7740\u4e00\u540d\u5355\u72ec\u7684\u5b87\u822a\u5458\uff0c\u8eab\u4f53\u5168\u8c8c\u53ef\u89c1\u3002\u91c7\u75282D\u6e38\u620f\u3001\u52a8\u753b\u3001\u56fe\u50cf\u5c0f\u8bf4"} +{"id": "4004592", "video_name": "8b672709-6a9a-5491-9976-2333f420c64f", "text": "\u4e00\u540d\u7537\u5b50\u62bd\u96ea\u8304\u5e76\u601d\u8003\u3002"} +{"id": "6003567", "video_name": "b6be02d5-9496-50f2-823d-7e67d9c3c762", "text": "\u767d\u8272\u80cc\u666f\u4e0a\u7684\u5496\u5561\u8c46\u6563\u843d"} +{"id": "7003268", "video_name": "86dd8dfe-cf93-50f2-8c85-8e798c8bb92e", "text": "\u5723\u8bde\u793c\u7269\u673a\uff0c1967\u5e74\u7684Zenith\u5f69\u8272\u7535\u89c6\uff0c\u8bbd\u523a\uff0c1899\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "1005034", "video_name": "5d17e3d2-ec5a-52d2-a190-c964afc4c48e", "text": "2\u6b65\u821e\u5b9d\u5b9d\u6c64\u59c6\u548c\u7f8e\u4e3d\u7684\u98ce\u666f\u4ea4\u8c08\u3002"} +{"id": "3005900", "video_name": "609573d0-59b9-5686-b8e0-aaf6ba8b0382", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u7528Xbox\u73a9\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "7003921", "video_name": "9dcc1f60-811d-536e-ae80-c15f1681945f", "text": "\u6d41\u7545\u7684\u5e27\u73878K\uff0c\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006412", "video_name": "756c047d-4fe9-5039-8005-d78d5773536a", "text": "\u672a\u67653D\u52a8\u753b\u4e2d\uff0c\u4e00\u4e2a\u4eba\u88ab\u5371\u9669\u7684\u673a\u5668\u4eba\u5305\u56f4\uff0c\u903c\u771f\u76844K\u89c6\u9891\u3002"} +{"id": "2004039", "video_name": "c099b0fa-a33d-5e2a-9a0f-6df0a0851aca", "text": "4\u4e2a\u5fb7\u56fd\u4eba\u5750\u5728\u4e00\u8d77\u6253\u300aGloomhaven\u300b\u3002"} +{"id": "2006983", "video_name": "80f3b70b-9a86-510c-a5ca-8b303bcede9b", "text": "\u8bf7\u505a\u4e00\u4e2a\u5927\u5927\u7684\u5fae\u7b11\uff0c\u70b9\u5934\u8bf4\u201c\u662f\u7684\u201d\uff0c\u5e76\u53d1\u9001\u4fe1\u606f\u7ed9\u5bf9\u65b9\u3002"} +{"id": "8002556", "video_name": "a4f617f0-2b4e-5dd8-a7e1-af35695d7f8e", "text": "\u4e3aPixar\u7684\u300a\u57ce\u5e02\u732b\u300b\u521b\u5efa\u4e00\u4e2a\u5f00\u573a\u753b\u9762\u3002"} +{"id": "7003633", "video_name": "da1de5e9-4b1d-5ea5-96c8-ea3f461f9ad3", "text": "\u521b\u9020\u771f\u5b9e\u7684\u65e9\u6668\uff0c\u52a0\u5165\u6cb3\u6d41\u3001\u6811\u6728\u548c\u661f\u661f\uff0c\u5347\u8d77\u7684\u592a\u9633\uff0c\u65f6\u95f4\u4e3a9:16\uff0c\u4f7f\u7528\u52a8\u6001\u76844\u500d\u901f\u6444\u50cf\u673a"} +{"id": "2006968", "video_name": "f3185f8a-d3a6-579d-ae06-ec492e823488", "text": "\u5728\u5c71\u8c37\u91cc\u4f4f\u7740\u4e00\u5bb6\u5c0f\u9a6c\uff0c\u4e00\u6761\u5927\u6cb3\u9694\u5f00\u4e86\u5c71\u8c37\u548c\u57ce\u9547\u3002"} +{"id": "7003836", "video_name": "69d67873-7d77-54f5-8ea2-65b1d83cc520", "text": "\u5e74\u8f7b\u5973\u5b69\u4ece\u8fd9\u4e2a\u7a97\u6237\u8df3\u4e0b\u6765\u3002"} +{"id": "7002838", "video_name": "3a73c72f-5613-5977-b0b2-e5c3f3eed8c5", "text": "\u4e09\u4e2a\u4eba\u63a8\u7740\u8d2d\u7269\u8f66\uff0c\u524d\u9762\u6709\u7ed3\u8d26\u67dc\u53f0\u3002\u5176\u4e2d\u4e00\u4e2a\u4eba\u6709\u4e00\u4e2a\u8db3\u7403\u3002"} +{"id": "1005741", "video_name": "69a7422d-1b76-5964-8f68-161ff11029ec", "text": "\u521b\u9020\u5927\u4f17\u9ad8\u5c14\u592bMK4\uff0c\u4ee5\u7535\u5f71\u822c\u7684\u65b9\u5f0f\u5728\u9053\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "6002318", "video_name": "ef285d66-1e90-57aa-be0e-b352384edd30", "text": "\u975e\u5e38\u9ad8\u54c1\u8d28\u548c\u5206\u8fa8\u7387\uff0c\u903c\u771f\u7684\u573a\u666f\uff0c\u4f18\u8d8a\u7684\u7a7a\u95f4\u73af\u5883\u548c\u8d85\u73b0\u5b9e\u7684\u91cd\u529b\u7269\u7406\u6548\u679c\uff0c3D\u4e16\u754c\uff0c\u7167\u7247"} +{"id": "2004427", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "\u4e00\u80a1\u5f3a\u70c8\u7684\u98d3\u98ce\u671d\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u79fb\u52a8\u3002"} +{"id": "0004127", "video_name": "03af1d22-1d0e-571e-ab7f-f889e0e95f56", "text": "\u5361\u901a\uff0c\u70e4\u5976\u916a\u878d\u5316\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u53a8\u623f\u8fd0\u52a8"} +{"id": "6002540", "video_name": "62781c70-792d-5a85-bd3e-efdb8554127d", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u56db\u4e2a\u6700\u597d\u7684\u670b\u53cbLily\u3001Sam\u3001Mia\u548cBen\u51b3\u5b9a\u6bd4\u4ee5\u5f80\u4efb\u4f55\u65f6\u5019\u90fd\u66f4\u6df1\u5730\u63a2\u9669"} +{"id": "6003308", "video_name": "47ddeef2-124a-5754-830d-9b741ea9ed20", "text": "\u4e54\u6cbb\u00b7\u5e03\u4ec0\u9a7e\u9a76\u55b7\u6c14\u5f0f\u98de\u673a\u649e\u5411\u4e16\u754c\u8d38\u6613\u4e2d\u5fc3\u53cc\u5b50\u5854\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "6003381", "video_name": "63b53337-41ad-5124-b8aa-e95799ab42fb", "text": "\u5206\u4eab\u667a\u6167\u7f57\u897f\u5750\u5728\u7eff\u6d32\u8fb9\uff0c\u88ab\u5176\u4ed6\u65c5\u884c\u8005\u5305\u56f4\uff0c\u5206\u4eab\u5979\u7684\u6545\u4e8b\u548c\u667a\u6167\uff0c\u80cc\u666f\u662f\u5b81\u9759"} +{"id": "3004553", "video_name": "185d41ea-7b8f-57dc-a21d-1721b4605f2a", "text": "\u4e09\u4e2a\u4eba\u73a9\u6251\u514b\u724c\uff0c\u4e00\u4e2a\u7537\u4eba\u5f88\u96be\u8fc7\uff0c\u4e00\u4e2a\u5973\u4eba\u5f88\u751f\u6c14\uff0c\u4e00\u4e2a\u8001\u4eba\u5f88\u5f00\u5fc3\u3002"} +{"id": "1004547", "video_name": "547089c7-dedf-5642-9c8b-a4e8469a3968", "text": "\u6545\u4e8b\u59cb\u4e8e\u5154\u5b50\u7a7f\u8fc7\u68ee\u6797\uff0c\u8eb2\u907f\u969c\u788d\uff0c\u8dc3\u8fc7\u6811\u6728\u3002\u5b83\u4f3c\u4e4e\u5f88\u5174\u594b\u5730\u8e0f\u4e0a"} +{"id": "6000004", "video_name": "2de80c6c-0e7c-5f5a-a33a-0c2f71d9dfc0", "text": "\u5b9d\u77f3\u6d1e\u7a74\u5973\u738b\u4f69\u6234\u5b54\u96c0\u77f3\u738b\u51a0\uff0c\u4ee5\u4e09\u79cd\u4e0d\u540c\u7684\u65f6\u5c1a\u98ce\u683c\u51fa\u73b0\uff0c\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "5001017", "video_name": "9467f462-74ac-5a6f-be2f-22127460218b", "text": "Stumpp\u88ab\u902e\u6355\u5e76\u5e26\u5230Bedburg\u57ce\u5821\uff0c\u5728\u90a3\u91cc\u4ed6\u88ab\u62f7\u95ee\u5e76\u53d7\u5230\u9177\u5211\u3002"} +{"id": "3005449", "video_name": "ea2df3a0-6624-5e64-93a2-0028f47bd744", "text": "\u7537\u4eba\u5728\u96e8\u591c\u559d\u7740\u8336\u3002"} +{"id": "6002666", "video_name": "c6172d22-4ce0-565f-a28c-90d122141d2f", "text": "\u5728\u5370\u5ea6\u852c\u83dc\u5e02\u573a\uff0c\u67095\u4e2a\u4eba\u5728\u4e89\u593a\u5077\u897f\u7ea2\u67ff\u3002"} +{"id": "2003863", "video_name": "ec8c1eda-0e0c-516c-b250-db2a9fc487b1", "text": "\u4e00\u4e2a\u5e26\u7740\u55b7\u6c14\u80cc\u5305\u7684\u7537\u4eba\u5728\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4004880", "video_name": "7175c1ce-12bc-547b-a807-6b8c1ef11334", "text": "\u4e24\u53ea\u5c0f\u5154\u5b50\u5728\u5e7f\u9614\u7684\u8349\u539f\u4e0a\u5954\u8dd1\u3002"} +{"id": "2006423", "video_name": "785c203e-157e-573a-87a8-cdc36127464a", "text": "\u5199\u4e00\u7bc7\u8bd7\u610f\u7684\u63cf\u5199\uff0c\u63cf\u8ff0\u4e00\u4e2a\u5973\u4eba\u7684\u7f8e\u4e0d\u4ec5\u4ec5\u662f\u8868\u9762\uff0c\u800c\u662f\u53cd\u6620\u5728\u5979\u6e29\u67d4\u7684\u773c\u795e\u3001\u6e29\u6696\u7684"} +{"id": "1003185", "video_name": "3a9af352-2777-53c7-b5e7-2701fbf7ce0b", "text": "\u4e00\u53ea\u7a7f\u7740\u897f\u88c5\u5531\u5723\u8bde\u9882\u6b4c\u7684\u6cf0\u8fea\u718a"} +{"id": "3006064", "video_name": "61c54887-0883-573c-b9b7-56465c0059a9", "text": "\u4ed6\u7528\u575a\u5b9a\u7684\u722a\u5b50\u7edf\u6cbb\u7740\u5927\u8349\u539f\uff0c\u8ba9\u6240\u6709\u751f\u7269\u90fd\u5fc3\u751f\u754f\u60e7\u3002"} +{"id": "3006671", "video_name": "25d9e594-943d-56a5-b5ce-e0d43b16c57e", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u5c11\u5e74\u7537\u5b50\u7a7f\u7740\u6821\u670d\u8f6c\u4e16\u5230\u4e86\u4e00\u4e2a\u6b66\u4fa0\u4e16\u754c\uff0c\u8eab\u8fb9\u6234\u7740\u76d4\u7532\u7684\u4eba\u4eec\u6ce8\u89c6\u7740"} +{"id": "0004960", "video_name": "1245860f-2d38-507d-946e-f5abfdcc38ea", "text": "\u4e00\u7fa4\u9e1f\u5728\u6811\u4e0a\u3002"} +{"id": "0005300", "video_name": "181fb99d-5c42-5bc4-8e24-6f0e3fffd91f", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u975e\u6d32\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u5468\u56f4\u8d70\u52a8\uff0c\u6ca1\u6709\u52a8\u7269\u3002"} +{"id": "2005980", "video_name": "619cea75-c0fc-5318-8031-473127617e5d", "text": "\u7b2c\u4e00\u573a\u666f\u4e2d\u540e\u9662\u7684\u5173\u952e\u5e27\u3002"} +{"id": "1006255", "video_name": "72984dfe-cf55-5ad5-adfc-5a5253a1b852", "text": "\u4ea8\u5229\u00b7\u4e9a\u745f\u00b7\u5e03\u96f7\u514b\uff0c\u4eba\u4eec\u6b22\u547c\u3002"} +{"id": "6003890", "video_name": "456d27da-d322-59a0-b636-3d2a900a2110", "text": "\u4e00\u5e45\u7ef4\u591a\u5229\u4e9a\u5bb6\u5ead\u5728\u9910\u5385\u91cc\u5403\u665a\u9910\u7684\u9ed1\u767d\u573a\u666f\uff0c\u914d\u6709\u72c4\u66f4\u65af\u63d2\u56fe\u5f0f\u7684\u5723\u8bde"} +{"id": "4004877", "video_name": "29c74908-050b-5351-8fda-620c5a3f6f51", "text": "\u4fa6\u63a2\u5ba1\u8baf\u5ba4\uff0c\u62cd\u6444\u8303\u56f4\u5e7f\u9614\uff0c\u4e00\u4e2a\u7537\u4eba\u7ad9\u7740\uff0c\u53e6\u4e00\u4e2a\u7537\u4eba\u5750\u7740\uff0c\u91c7\u7528\u9ed1\u8272\u7535\u5f71\u98ce\u683c\uff0c"} +{"id": "6004141", "video_name": "a5097d2a-a50d-54c5-8e03-f69e8fc1ab69", "text": "\u6253\u5f00\u89c6\u9891\uff0c\u5c55\u793a\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u666f\u89c2\u548c\u52a8\u753b\u56fe\u5f62\uff0c\u5c55\u73b0\u4f9b\u5e94\u94fe\u5404\u9636\u6bb5\u7684\u98df\u54c1\u6d6a\u8d39\u60c5\u51b5\u3002"} +{"id": "2007209", "video_name": "f5abfff6-7faf-5ad0-ae94-c19569f508aa", "text": "\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\uff0c\u53ea\u4f7f\u7528\u7ea2\u8272\u3001\u9ed1\u8272\u3001\u767d\u8272\u548c\u7070\u8272\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0003394", "video_name": "3cc599ab-7e48-5770-8d56-81a87a794c6a", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6765\u81ea\u5317\u65b9\u90a6\u7684\u5973\u5b69\u8c08\u8bba\u5979\u81ea\u5df1\u3002"} +{"id": "7002162", "video_name": "7a10ac06-ec5a-54c9-94af-565c24860a4f", "text": "\u5bf9\u8bdd\u4e2d\u7684\u5e72\u6270\u8005\u548c\u51b2\u7a81\u7684\u89e6\u53d1\u56e0\u7d20\u3002"} +{"id": "0005225", "video_name": "16e3d2bc-61ce-5ac4-9c4f-27ac95069bc1", "text": "\u5df4\u585e\u7f57\u90a3\u6d77\u6ee9\u4e0a\u7684\u9152\u5e97 Vela\uff08W \u9152\u5e97\uff09\u6b63\u5728\u7740\u706b\u3002"} +{"id": "6003905", "video_name": "b3281ce3-7de3-58af-a1f9-a7efa017ac17", "text": "2D\u8d70\u8def\u5973\u5b6960\u79d2\u957f\u89c6\u9891"} +{"id": "3005561", "video_name": "d984bc15-cde8-5500-b9e6-48fccc6306d4", "text": "\u8ba8\u8bba\u4e0d\u540c\u6392\u5e8f\u7b97\u6cd5\u5728\u91cd\u6392\u5143\u7d20\u65b9\u9762\u7684\u6548\u7387\uff0c\u7c7b\u6bd4\u6570\u636e\u79fb\u52a8\u3002"} +{"id": "6002110", "video_name": "81d27989-b42c-54ca-a072-b429a89ee7f8", "text": "\u4e24\u6761\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u773c\u955c\u86c7\uff0c\u5728\u4e00\u4e2a\u9690\u853d\u7684\u571f\u5730\u4e0a\u6df1\u6df1\u5730\u6c89\u6d78\u5728\u7981\u6b32\u4e2d\uff0c\u655e\u5f00\u7740\u5b83\u4eec"} +{"id": "1003559", "video_name": "419b59ae-c669-56f1-8679-dfd32b6fb704", "text": "\u5927\u7ea61500\u4e07\u5e74\u524d\uff0c\u5b83\u662f\u5728\u201c\u6208\u58c1\u6d77\u201d\uff08\u73b0\u5728\u662f\u6c99\u6f20\uff09\u4e0a\u7684\u4e00\u5ea7\u5c9b\u5c7f\u4e0a\u5efa\u7acb\u7684\u3002"} +{"id": "0005790", "video_name": "214c0217-7bc7-512b-8c93-a3e84f87d1e1", "text": "\u8bf7\u5236\u4f5c\u4e00\u6bb5\u8ff7\u4eba\u7684\u89c6\u9891\uff0c\u5c55\u793a\u5404\u79cd\u6237\u5916\u6d3b\u52a8\u3002\u89c6\u9891\u5e94\u8be5\u6355\u6349\u5230\u8fd9\u4e9b\u6d3b\u52a8\u7684\u80fd\u91cf\u3001\u6fc0\u52a8\u548c\u591a\u6837\u6027\uff0c\u5305\u62ec\u97f3"} +{"id": "7002071", "video_name": "55e410e3-05e3-5b5b-b9c4-99a7e5211dca", "text": "Source sentence: HD\u8d85\u6e05\u7535\u5f71\u7ea7\u89c6\u9891\u5c55\u793a\u5370\u5ea6\u5973\u5b50\u820c\u5934\u3001\u900f\u660e\u8863\u670d\u3001\u4fee\u957f\u8ff7\u4eba\u7684\u8eab\u6750\u3001\u9762\u5bb9\u53ca\u5065\u5eb7\u7684\u8102"} +{"id": "8001210", "video_name": "cb4dc013-e33f-5a80-8a78-098c87f7a413", "text": "\u6c14\u7403\u4e0a\u7684\u5154\u5b50\u7206\u70b8\u4e86\u3002"} +{"id": "1005148", "video_name": "5ed895ce-ed17-56dc-87cb-d093614a23ae", "text": "\u5e8a\u7684\u4fef\u89c6\u56fe\u4ee5\u8282\u594f\u8fd0\u52a8\u3002"} +{"id": "2007516", "video_name": "8b1b7c60-0df5-5117-a6a9-00e378bd4dfb", "text": "\u5e74\u8f7b\u5973\u5b69\u63a2\u7d22\u5e9f\u5f03\u7684\u82b1\u56ed\u65f6\uff0c\u5979\u9047\u5230\u4e86\u5404\u79cd\u5947\u5e7b\u751f\u7269\uff0c\u6bcf\u4e2a\u751f\u7269\u90fd\u5177\u6709\u72ec\u7279\u7684\u6709\u673a"} +{"id": "2005005", "video_name": "6cd0d304-92f9-55cc-a4ee-acf4f85ae554", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u89c6\u9891\uff0c\u4e00\u5bf9\u6050\u9f99\u5728\u65e5\u843d\u65f6\u5728\u6d77\u6ee9\u4e0a\u6ce8\u89c6\u7740\u540c\u4e00\u5904\uff0c\u80cc\u666f\u4e2d\u662f\u8f7b\u67d4\u7684\u6d77\u6d6a\u3002"} +{"id": "0005857", "video_name": "2265d06a-4baa-5cc6-8c03-d7a93ab52b07", "text": "\u7535\u89c6\u8282\u76ee\u300a\u9b3c\u7b14\u9a6c\u838e\u300b\u7684\u6f14\u5458\u4eec\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u63cf\u7ed8\u3002"} +{"id": "2004527", "video_name": "c317d0d1-57c6-5049-bd5b-9a34eb960776", "text": "4k\uff0c3D\uff0c\u5409\u7965\u7269\uff0c\u677e\u9f20\uff0c\u6c38\u6052\u4e4b\u9f84\uff0c\u6e38\u620f\uff0c\u5e26\u5934\u6234\u5f0f\u8033\u673a\uff0c\u6a59\u8272\uff0c\u9ed1\u8272\uff0c\u7ea2"} +{"id": "6004387", "video_name": "1790a508-0ffb-5dfc-80fe-f8a44edf8600", "text": "\u4ecb\u7ecd\u4e24\u4e2a\u4e3b\u89d2\uff0c\u4e00\u4e2a\u6765\u81ea\u8fc7\u53bb\uff0c\u4e00\u4e2a\u6765\u81ea\u73b0\u5728\uff0c\u5e76\u63cf\u8ff0\u4ed6\u4eec\u7684\u751f\u6d3b\u548c\u80cc\u666f\u3002"} +{"id": "8001108", "video_name": "1780db1c-75f0-529c-af50-6640a7da337a", "text": "\u4eba\u4eec\u805a\u96c6\u5728\u4e00\u5e45\u975e\u5e38\u53e4\u8001\u7684\u5973\u738b\u753b\u50cf\u5468\u56f4\uff0c\u5979\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "3004003", "video_name": "78096a4e-2b79-57d6-9f95-97d63eaf0808", "text": "\u5b87\u5b99\u7684\u8d77\u6e90\u2014\u2014\u5927\u7206\u70b8\u3002"} +{"id": "4004609", "video_name": "1983fc99-9487-55b9-a584-79cd6ef3ffa9", "text": "\u4e00\u4e2a\u6301\u6709\u82f9\u679cMacBook Pro\u7684\u65af\u91cc\u5170\u5361\u4eba\uff0c\u613f\u610f\u627e\u51fa\u6574\u4e2a\u4e92\u8054\u7f51\u7684\u6f0f\u6d1e\uff01"} +{"id": "0003090", "video_name": "36d3d030-5fa9-5c24-957d-48cd90a51d5f", "text": "\u89c6\u9891\u7f16\u8f91\u5206\u4e3a\u56db\u4e2a\u9636\u6bb5\uff0c\u5c55\u5f00\u6210\u56db\u5f20\u5361\u7247\u3002"} +{"id": "3006722", "video_name": "158b87a3-94be-5e93-a1d6-f2c408458f66", "text": "\u5141\u8bb8\u6c34\u6d41\u51b2\u5165\u4e0b\u6e38\u6751\u5e84\u4e00\u76f4\u5230\u5c3c\u65e5\u5229\u4e9a\uff0c\u5e76\u5141\u8bb8\u5927\u91cf\u4e8c\u6c27\u5316\u78b3\u9003\u9038\u3002"} +{"id": "1005523", "video_name": "65aa0e8e-ac54-5dec-9e2d-c95693f3cc83", "text": "\u5728\u5357\u6781\u6d32\u51b0\u5899\u4e4b\u5916\u7684\u591a\u4e2a\u9886\u57df\u4e2d\u7684\u5916\u661f\u751f\u7269\u3002"} +{"id": "3005328", "video_name": "57380655-469f-5d6e-8946-2fe335980ffa", "text": "\u4e00\u540d\u58eb\u5175\u5728\u9ed1\u6697\u96e8\u5929\u7684\u4e00\u5ea7\u88ab\u6467\u6bc1\u7684\u623f\u5c4b\u91cc\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "1004974", "video_name": "5bf44554-c770-5fe9-a72f-16f9a7ebe63c", "text": "\u5361\u901a\u4eba\u7269\u975e\u6d32\u88d4\u7f8e\u56fd\u5b69\u5b50\u9762\u5411\u955c\u5934\u9605\u8bfb\u4e00\u672c\u4e66\u3002"} +{"id": "0004540", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "\u7a46\u65af\u6797\u80cc\u666f\uff0c\u5f00\u7bc7\u53e4\u5170\u7ecf\u9ad8\u6e05\u753b\u8d28\uff0c\u5e26\u6709\u7535\u5f71\u822c\u7684\u53d8\u7126\u6444\u50cf\u5934\uff0c16:9\u903c\u771f\u3002"} +{"id": "0005159", "video_name": "15cb7042-dadf-5944-a9a7-2edae5ad859d", "text": "\u4e00\u540d\u624b\u6301\u6b66\u58eb\u5200\u548c\u76f8\u673a\u7684\u6b66\u58eb\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c8K\u9ad8\u6e05\uff0c\u89c6\u89c9\u9707\u64bc\u7684\u5927\u7247\u3002"} +{"id": "6002347", "video_name": "391af7bb-513c-5c6b-a9a8-1ce7bc228e08", "text": "\u8fb9\u5883\u7267\u7f8a\u72ac\u5728\u6e29\u6696\u7684\u9633\u5149\u4e0b\u6c90\u6d74\uff0c\u8f7b\u67d4\u7684\u5fae\u98ce\u4f7f\u573a\u666f\u66f4\u52a0\u771f\u5b9e\u3002"} +{"id": "6003483", "video_name": "f3ebdf0c-7f10-5b4e-8e16-ff789c70910d", "text": "\u590f\u5929\u7684\u7a7a\u6c14\u4e2d\u6709\u91d1\u8272\u7684\u5149\u8292\u3002"} +{"id": "4002348", "video_name": "a30d87ec-f546-5ed3-aee2-bb9a507a0844", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u50cf\u661f\u7403\u5927\u6218\u4e2d\u7684\u89d2\u8272\u4e00\u6837\u4e0e\u81ea\u5df1\u6218\u6597\u3002"} +{"id": "8003896", "video_name": "6aac310e-c62c-53e6-9248-9dd4ed448fc6", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u9881\u5956\u5178\u793c\u4e0a\u63a5\u53d7\u5956\u9879\uff0c\u95ea\u5149\u706f\u4e0d\u65ad\uff0c\u540d\u4eba\u4e91\u96c6\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "2006775", "video_name": "1500ef14-f631-567a-9ce2-7b1db5516ea0", "text": "\u5728\u7199\u7199\u6518\u6518\u7684\u6606\u866b\u4e16\u754c\u91cc\uff0c\u6211\u4eec\u52e4\u52c9\u7684\u5361\u901a\u8682\u8681\u548c\u65e0\u5fe7\u65e0\u8651\u7684\u86b1\u8722"} +{"id": "6004049", "video_name": "d1af97a5-b045-5d17-9078-31eeab7e0c87", "text": "\u4ed6\u6df1\u5165\u4e1b\u6797\u4e4b\u5fc3\u7684\u65c5\u9014\u4e2d\uff0c\u53d1\u73b0\u4e86\u4e00\u4ef6\u975e\u51e1\u7684\u4e8b\u60c5\u3002"} +{"id": "2006640", "video_name": "e2bacca3-53f8-5690-9c27-83f73bbaf29f", "text": "\u8fd9\u4f4d\u7ec5\u58eb\u5e94\u8be5\u5750\u5728\u684c\u5b50\u524d\uff0c\u684c\u5b50\u4e0a\u5e94\u8be5\u53ea\u6709\u4e00\u76cf\u653e\u5927\u955c\u706f\u3001\u4e00\u4e2a\u6807\u6709\u201cKurt's Card Care\u201d\u7684\u55b7\u96fe"} +{"id": "2007037", "video_name": "f95cde37-b033-5545-91d8-237f01f7eccd", "text": "\u91d1\u53d1\u7f8e\u5973\u624e\u8d77\u5934\u53d1\uff0c\u5728\u8dd1\u6b65\u673a\u4e0a\u5954\u8dd1\uff0c\u8eab\u6750\u7a88\u7a95\uff0c\u8863\u7740\u66b4\u9732\u3002"} +{"id": "8001115", "video_name": "7c0f46a2-60ff-58b2-aaad-35dbbffc21c7", "text": "\u901a\u8fc7\u4ed6\u7684\u667a\u6167\u62ef\u6551\u4e86\u4ed6\u7684\u751f\u547d\uff0c\u4ed6\u6fc0\u52b1\u52a0\u62c9\u592b\u53bb\u5bfb\u6c42\u5e87\u62a4\u4e8e\u4f4d\u4e8e\u6052\u6cb3\u548c\u4e9a\u7a46\u7eb3"} +{"id": "1006956", "video_name": "7f48cd51-0725-5a0f-b4c1-7a1ada275607", "text": "\u4e00\u500b\u57fa\u7763\u5341\u5b57\u67b6\u548c\u84b2\u516c\u82f1\u5728\u4e00\u500b\u7f8e\u570b\u570b\u65d7\u524d\u9762\uff0c\u7f6e\u65bc\u4e00\u500b\u601d\u7dad\u4e2d\u5fc3\u3002"} +{"id": "2007518", "video_name": "824f9154-6c80-5b8d-b902-aff036c5263b", "text": "\u5728\u4e00\u4e2a\u519c\u573a\u548c\u670b\u53cb\u4e00\u8d77\u3002"} +{"id": "0006675", "video_name": "30c85ddf-e088-556d-b36a-5d53a883e560", "text": "\u8fc7\u6e21\u7a7a\u95f4\u6050\u6016\u548c\u7cbe\u7075\u5c16\u53eb\u3002"} +{"id": "3004638", "video_name": "0d83d3b5-b580-52b1-bd72-d58544a0fc92", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u62b1\u7740\u4e00\u4e2a\u7728\u7728\u773c\u775b\u7684\u53ef\u7231\u5b9d\u5b9d\uff0c\u5b9d\u5b9d\u540d\u53eb\u963f\u5c14\u7ef4\u5c14\uff0c\u6bcd\u4eb2\u6b63\u5728\u5531"} +{"id": "5001400", "video_name": "8dfc1184-3ce2-5316-bbcd-16ce29dfc917", "text": "\u4e00\u4e2a\u7ea2\u8272\u7684\u6c7d\u8f66\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u4e0b\u5348\u5728\u72d7\u573a\u524d\u9a76\u79bb\u3002"} +{"id": "4004177", "video_name": "ef384c6a-c9b7-54ac-b451-3d4b998e7c19", "text": "\u9732\u8425\u8f66\u7a7f\u8d8a\u7f8e\u4e3d\u7684\u8fc7\u6e21\u4e2d\u7684\u51ac\u5b63\u666f\u89c2\u3002"} +{"id": "1005780", "video_name": "6a60ad70-b2b1-5dc2-bc71-669ba0bde71f", "text": "\u5b87\u5b99\u98de\u8239\u5185\u90e8\u6709\u4e00\u4e2a\u660e\u4eae\u7684\u767d\u8272\u623f\u95f4\uff0c\u6709\u70df\u96fe\uff0c\u767d\u8272\u7684\u5899\u58c1\u3002"} +{"id": "0006446", "video_name": "2cabf14f-7f8c-5b2c-8f5b-9353a087920e", "text": "\u5efa\u6a21\u4e00\u5f20\u718a\u5403\u7cd6\u679c\u7684\u56fe\u7247\u3002"} +{"id": "1003143", "video_name": "39f4ed33-35ce-564c-9d08-104530a0d727", "text": "\u4e00\u7247\u5e03\u6ee1\u661f\u5149\u7684\u6c99\u6f20\uff0c\u6708\u4eae\u662f\u8428\u56fe\u6069\u3002"} +{"id": "8002036", "video_name": "01a1426f-181e-5114-a966-2a30b9bb84fd", "text": "\u5965\u65af\u66fc\u5e1d\u56fd\u90e8\u961f\u5e26\u77404\u4e07\u540d\u58eb\u5175\u884c\u8fdb\u3002"} +{"id": "1005178", "video_name": "5f47da40-bd58-5f0f-9332-9cc4d9d1d79b", "text": "\u8bf7\u5236\u4f5c\u4e00\u6bb5\u62bd\u8c61\u7684\u5f69\u8272\u70df\u96fe\u6f02\u6d6e\u52a8\u753b\u3002"} +{"id": "8003995", "video_name": "b558e9d1-1146-518c-8ed9-5f03518b9df1", "text": "\u6d77\u4e0a\u6709\u5f88\u591a\u8239\u3002\u9644\u5e26\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002004", "video_name": "e0c64f6b-7104-5130-b580-c83632a2f18c", "text": "\u7eaf\u7231\u4e0e\u60c5\u611f \u4fe1\u606f\uff1a\u7231 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003037", "video_name": "37c0cfad-47f2-521a-b84d-f4181761a797", "text": "\u60f3\u8c61\u4e00\u4e2a\u6e29\u99a8\u67d4\u60c5\u7684\u6821\u56ed\u573a\u666f\uff0c\u7528\u67d4\u548c\u7684\u706f\u5149\u548c\u6e29\u67d4\u7684\u52a8\u753b\u6355\u6349\u521d\u604b\u7684\u7cbe\u534e\u3002"} +{"id": "3005818", "video_name": "fdeb53ab-834f-55aa-b950-7cbd493534a2", "text": "\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u6267\u5bfc\u4e86\u300a\u6c38\u52ab\u6781\u6218\u300b\u7684\u4e00\u96c6\u3002"} +{"id": "3003013", "video_name": "a670c096-fff3-5f63-b639-82a8540ae74c", "text": "\u7535\u529b\u6218\u58eb\u4e0e\u4e00\u53ea\u5de8\u578b\u602a\u517d\u6218\u6597\uff0c\u7535\u5f71\u822c\u7684\u53e4\u65e7\u6444\u50cf\u673a\u62cd\u6444\u4e0b\u6765\u7684\u65e7\u5f71\u7247\uff0c\u50cf\u300a\u5e03"} +{"id": "4002600", "video_name": "af6a8835-b691-5856-a029-1dd4e11ac3bc", "text": "\u53ef\u7231\u7684\u72d7\u72d7\u5361\u901a\u8d70\u8def\u3002\u4fe1\u606f\uff1a\u5982\u4f55\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004079", "video_name": "d6e09ea5-eaff-5a1f-ba28-311ae3d5117d", "text": "\u57ce\u5e02\u591c\u666f\u7684\u9e1f\u77b0\u56fe\u5feb\u901f\u7f29\u653e\u3002"} +{"id": "6002786", "video_name": "452175c1-f6f9-5bbc-8c91-ec995640d4fc", "text": "\u521b\u5efaYouTube\u89c6\u9891\u6807\u9898\u540d\u79f0\u4e3a\u201c\u963f\u5170\u52a0\u62c9\u59c6\u201d\u3002"} +{"id": "7002271", "video_name": "b2334e0b-4c37-5323-9b4a-545df45d9afc", "text": "\u8f7b\u76c8\u7684\u80cc\u666f\uff0c\u5e26\u6709\u5723\u8bde\u793c\u76d2\u5185\u7684\u514d\u8d39\u793c\u54c1\u3002"} +{"id": "7002927", "video_name": "44ee2967-98b8-5a92-a585-95d42474efbd", "text": "\"Shikanji\u91cc\u7684\u76d0\u6709\u70b9\u513f\u592a\u591a\u4e86\u3002\" \u5b66\u751f\u8bf4\u3002"} +{"id": "0003899", "video_name": "456989b1-df16-573f-a92e-0b629192a21a", "text": "\u4e00\u4e2a\u5e26\u6709\u6302\u9501\u7684\u4e2a\u4eba\u7535\u8111\u573a\u666f\u3002"} +{"id": "3006863", "video_name": "46ce7468-dba9-5f54-ab18-6a3fbad408d7", "text": "\u5b66\u751f\u4eec\u6b63\u5728\u4ece\u4e8b\u7f51\u7edc\u5b89\u5168\u5de5\u4f5c\u3002"} +{"id": "4004816", "video_name": "97b7c724-d497-514e-afe6-37d824c75e12", "text": "3D\u52a8\u753b\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u5411\u8bb2\u53f0\u3002"} +{"id": "5001127", "video_name": "fb3de33a-4cb5-574e-958f-20bdaa39d16a", "text": "\u4e00\u9897\u9668\u77f3\u4ece\u5927\u697c\u7a97\u6237\u6389\u843d\uff0c\u88ab\u89c2\u770b\u5230\u7684\u573a\u666f\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2004113", "video_name": "6b5eb1b1-3ffe-5f55-98c3-dd38c27424d8", "text": "\u6469\u5929\u5927\u697c\u5728\u6b27\u6d32\u8d2b\u7a77\u57ce\u5e02\u8d8a\u6765\u8d8a\u9ad8\uff0c90\u5e74\u4ee3\u7684VHS\u6444\u50cf\u5934\u6ee4\u955c\u6548\u679c\u3002\n\nSource sentence: The internet has revolutionized the"} +{"id": "0003797", "video_name": "43980c71-53a4-51a8-9859-c0061fce0990", "text": "\u6355\u6349\u4e00\u5f20Sam\uff0c\u5373\u96c0\u9e1f\u4f18\u96c5\u5730\u98de\u8d8a\u8349\u5730\u7684\u7167\u7247\u3002\u5c55\u793a\u4e0b\u9762\u9700\u8981\u5e2e\u52a9\u7684\u53d7\u4f24\u5154\u5b50\uff0cSam\u5728\u4e0a"} +{"id": "3005420", "video_name": "55034e27-6b01-5046-a5ae-6e1b82c2fbaa", "text": "\u79fb\u52a8\u7684\u4e91\uff0c\u968f\u7740\u7a7a\u6c14\u6447\u66f3\u7684\u68d5\u6988\u6811\uff0c\u6d77\u6d6a\u649e\u51fb\u7740\u5ca9\u77f3\uff0c\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u9762"} +{"id": "7004349", "video_name": "ccedac27-c03e-5233-99ad-d0f208f11e76", "text": "2023\u5e74\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u7535\u5f71\u300a\u8d85\u4eba\u300b\u4ee5\u8d85\u9ad8\u901f\u98de\u8d8a\u7ebd\u7ea6\u57ce\uff0c\u5bbd\u955c\u5934\u5c55\u73b0\u51fa\u5f71\u7247CGI\u6548\u679c\u7684\u5b8c\u7f8e\u5448\u73b0\u3002"} +{"id": "2004886", "video_name": "a58bc32e-0874-5982-bfae-589f571abd0a", "text": "\u7537\u5b69\u6b63\u5728\u5bfb\u627e\u65b0\u7684\u65f6\u5c1a\u8fd0\u52a8\u978b\uff0c\u4f46\u6240\u6709\u5546\u5e97\u7684\u4ef7\u683c\u90fd\u5f88\u6602\u8d35\uff0c\u7136\u540e\u4ed6\u770b\u5230\u4e00\u5bb6\u65b0\u7684\u65f6\u5c1a\u5e97\u53eb\u505a Prospect\uff0c"} +{"id": "1006050", "video_name": "6f170fd2-3dbc-5cdb-b217-5151745ee8d6", "text": "\u53e4\u5178\u97f3\u4e50\u4e50\u56e2\u5728\u4e00\u4e2a\u5927\u578b\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u5267\u9662\u6f14\u594f\uff0c\u9713\u8679\u706f\uff0c\u9c7c\u773c\u955c\u5934\u3002"} +{"id": "4002949", "video_name": "32818900-87ed-5f47-8449-c4b61b4f2efa", "text": "\u4ece\u4e0a\u65b9\u770b\u5230\u7684\u706b\u8f66 \u4fe1\u606f\uff1a\u9a6c\u91cc\u5965\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8002812", "video_name": "56901e18-a0ae-50c9-b804-9e5f91db5a3a", "text": "\u4e00\u53ea\u957f\u8033\u6735\u5e26\u6761\u7eb9\u7684\u732b\u8d70\u5411\u955c\u5934\uff0c\u5728\u4fef\u77b0\u7740\u4e00\u7247\u6e05\u6f88\u7684\u6e56\u6cca\u7684\u5c71\u4e18\u4e0a\u7728\u773c"} +{"id": "7003038", "video_name": "07a5c14c-834a-5935-aa79-28a39d1c276e", "text": "\u8bf1\u60d1\u590f\u5a03\u7684\u86c7\u5728\u4f0a\u7538\u56ed\uff0c\u7eff\u8349\u5730\u548c\u843d\u53f6\u7684\u6811\u4e3a\u80cc\u666f\u3002"} +{"id": "4002992", "video_name": "96459adf-f05a-594f-9d1d-4492cd99f72b", "text": "\u4e00\u4e2a\u4e4c\u9e26\u5728\u708e\u70ed\u5e72\u71e5\u7684\u68ee\u6797\u4e0a\u65b9\u98de\u884c\uff0c\u53d1\u73b0\u4e86\u8fdc\u5904\u7684\u4e00\u4e2a\u6c34\u58f6\u3002"} +{"id": "1003547", "video_name": "416abd16-9bb7-5ab6-bfc9-d4f9ade14023", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u5728\u9493\u9c7c\u3002"} +{"id": "1005094", "video_name": "5dfe6dd0-fcb3-53cb-9070-00146ea823ec", "text": "\u7231\u60c5\u6545\u4e8b\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e24\u4e2a\u4eba\u76f8\u7231\u3001\u9047\u5230\u56f0\u96be\u548c\u91cd\u65b0\u71c3\u8d77\u7231\u706b\u7684\u8fc7\u7a0b\u3002"} +{"id": "7003258", "video_name": "4bc46d15-c47d-5c60-8d4b-267bda941a11", "text": "\u4e24\u5ea7\u65e7\u5fb7\u91cc\u623f\u5c4b\u7684\u6e05\u6668\u666f\u8c61"} +{"id": "8003761", "video_name": "d2db6352-629c-56c9-a8b2-8347b2ec4cd2", "text": "\u5976\u725b\u5934\u4e0a\u6234\u7740\u672c\u96c5\u660e\u00b7\u5185\u5854\u5c3c\u4e9a\u80e1\u7684\u9762\u5177\u3002"} +{"id": "4003848", "video_name": "cda95e46-3298-5f68-b780-418729b58dd6", "text": "\u6843\u4e50\u4e1d\u548c\u6258\u6258\u72d7\uff08\u300a\u7eff\u91ce\u4ed9\u8e2a\u300b\u4e2d\u7684\u89d2\u8272\uff09\u5728\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u9ec4\u8272\u7816\u8def\u4e0a"} +{"id": "2005595", "video_name": "349eec42-d257-54f6-bf94-de84cb1e2a74", "text": "\u591c\u665a\u9ed1\u6697\u7a7a\u8361\u7684\u505c\u8f66\u573a\u91cc\u6709\u4e00\u53f0\u7ea2\u76d2\u5b50\u81ea\u52a8\u552e\u8d27\u673a\u3002"} +{"id": "8002952", "video_name": "550f97ba-f034-5add-abc5-c5ef43a6035f", "text": "\u4e00\u67b6\u98de\u673a\u4ece\u5929\u7a7a\u4e2d\u6389\u843d\u5728\u96fe\u4e2d\u3002"} +{"id": "1006823", "video_name": "7ccab564-118c-5de1-9f11-d5a8a75b6ce6", "text": "\u6050\u6016\u7684\u5723\u8bde\u8001\u4eba\u884c\u8d70\uff0c\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "7002379", "video_name": "67754ce2-0acd-521e-aca0-39c8a295153a", "text": "\u8fd9\u4e9b\u505a\u6cd5\u5305\u62ec\u4fdd\u6301\u5f53\u4e0b\u7684\u5b58\u5728\uff0c\u5e76\u4e14\u89c2\u5bdf\u4f60\u7684\u60f3\u6cd5\u800c\u4e0d\u5e26\u6709\u5224\u65ad\u3002"} +{"id": "2005678", "video_name": "75fff2c5-20ef-563b-bb20-e89db775acd3", "text": "\u6211\u4eec\u662f\u4e00\u4e2a\u6210\u529f\u7684\u4e2a\u4eba\u6210\u957f\u5b66\u9662\u3002\u6211\u4eec\u7684\u4f7f\u547d\u662f\u5e2e\u52a9\u73b0\u4ee3\u7236\u6bcd\u57f9\u517b\u4e00\u4ee3\u601d\u8003\u7684\u5b69\u5b50\uff0c\u5e76\u5728\u4ed6\u4eec\u8eab\u4e0a\u53d1\u5c55\u51fa\u672a\u6765"} +{"id": "1005577", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "\u5236\u4f5c\u4e00\u6bb51500\u5e74\u4ee3\u7684\u5a5a\u793c4K\u89c6\u9891\uff0c\u7a7f\u7740\u5f53\u65f6\u7684\u670d\u88c5\uff0c\u4ece\u6559\u5802\u591c\u95f4\u51fa\u95e8\uff0c\u5c55\u73b0\u6b27\u6d32\u6587\u5316\uff0c\u80cc"} +{"id": "3005089", "video_name": "c878c3b2-c90d-5275-8398-527f41907ab9", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u6807\u5fd7\uff0c\u9002\u7528\u4e8eYouTube\u9891\u9053\u3002"} +{"id": "1004264", "video_name": "4ef0e417-d4e5-537c-8695-e8011509bcf8", "text": "\u5361\u901a\uff0c\u94c1\u7827\u6389\u5728\u9ec4\u8272\u7684\u5361\u901a\u9f99\u4e0a\u3002\n\nSource sentence: I am excited to try the new restaurant in town. \n\u6211\u5f88\u5174\u594b\u5c1d\u8bd5\u9547"} +{"id": "0006724", "video_name": "31c88b09-1220-5c56-bf63-f1ce4d5e9f73", "text": "4\u53ea\u5c0f\u732b\u805a\u5728\u7a97\u6237\u8fb9\uff0c\u597d\u5947\u5730\u671b\u7740\u5c0f\u623f\u5b50\u91cc\u9762\uff0c\u5feb\u4e50\u800c\u8c03\u76ae\u3002"} +{"id": "1005298", "video_name": "61539647-b497-5527-96ad-cd6fac56c0da", "text": "\u5bb6\u5ead\u4ecb\u7ecd\uff1a\u963f\u5e03\uff08\u7236\u4eb2\uff09\uff0c\u54c8\u6851\uff0c\u827e\u54c8\u8fc8\u5fb7\u548c\u5965\u9a6c\u5c14\uff08\u5b69\u5b50\uff09\u3002\u5361\u901a 3D \u6545\u4e8b\uff0c\u52a8\u4f5c"} +{"id": "7002908", "video_name": "99b13eb2-0476-59ca-ba4c-6b0862f109ca", "text": "\u6854\u5b50\u548c\u6a58\u5b50\u5728\u7a7a\u4e2d\u98d8\u8361\uff0c\u6c41\u6db2\u4ece\u4e2d\u6d41\u51fa\uff0c\u5728\u7ea2\u8272\u80cc\u666f\u4e0b\uff0c\u6700\u9ad8\u5206\u8fa8\u7387\uff0c\u6700\u9ad8\u7ec6\u8282\uff0c\u7535\u5f71\u753b\u9762"} +{"id": "2004005", "video_name": "c06d754f-343b-5cd1-ab2e-b2df7889119d", "text": "\u5e7f\u89d2\u89c6\u89d2\u4e0b\u7684\u8352\u5e9f\u57ce\u5e02\uff0c\u672b\u65e5\u822c\u7684\u573a\u666f\uff0c\u503e\u76c6\u5927\u96e8\uff0c\u4f7f\u75284 AR 16:9\u52a8\u6001\u6548\u679c\u3002"} +{"id": "0004390", "video_name": "082a9cc8-da81-5064-b5cc-7d1f3aabe0c5", "text": "\u7f8e\u56fd\u603b\u7edf\u62dc\u767b\u7684\u846c\u793c\uff0c\u5c55\u793a\u4e86\u62dc\u767b\u7684\u7167\u7247\u3002"} +{"id": "4003580", "video_name": "4338f0cc-85a3-535b-a36f-f3c042c6d67c", "text": "\u4eba\u4eec\u5728\u83ab\u5367\u513f\u738b\u671d\u7684\u6cd5\u5ead\u4e0a\u7528\u79e4\u8861\u91cf\u4ed6\u4eec\u7684\u8d22\u5bcc\u3002\n\nSource sentence: The Great Wall of China is one of the Seven Wonders of"} +{"id": "8001291", "video_name": "1d5171f1-1a34-50d9-9cd2-decaea381885", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u9a91\u9a6c\uff0cCNN\u65b0\u95fb\u62a5\u9053\u3002\n\nSource sentence: My favorite color is blue.\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "1006881", "video_name": "7dcd7643-128f-5b1a-8c9d-31a87f27421b", "text": "\u591c\u665a\u505a\u68a6\u7684\u4eba\uff0c\u60c5\u7eea\u5316\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u73b0\u4ee3\uff0c\u68a6\u5e7b\u3002"} +{"id": "3003979", "video_name": "89eb942a-cd49-5da6-b0fa-721061ae8d64", "text": "\u51b2\u6d6a\u8005\u5728\u65e5\u843d\u65f6\u5728\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u9762\u4e0a\u51b2\u6d6a\u3002"} +{"id": "8002870", "video_name": "ca38a9d6-a3b8-5811-8c37-cd0edd56a52a", "text": "\u4e00\u4e2a\u80a9\u5230\u80a9\u7684\u68d5\u8272\u5934\u53d1\u7537\u4eba\u7ad9\u5728\u6587\u827a\u590d\u5174\u670d\u88c5\u57ce\u5821\u524d\uff0c\u4ed6\u8f6c\u8eab\u770b\u5411\u57ce\u5821\uff0c\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u5929\u7a7a\u5448"} +{"id": "8001367", "video_name": "1350c990-1a33-579d-b010-0992b9154877", "text": "\u5e74\u8f7b\u5973\u5b50\u8389\u8389\u5728\u6751\u91cc\u7684\u56fe\u4e66\u9986\u53d1\u73b0\u4e86\u4e00\u672c\u5173\u4e8e\u7231\u60c5\u836f\u6c34\u7684\u65e7\u4e66\u3002 \n\nSource sentence: The cat is sleeping on the couch."} +{"id": "0006406", "video_name": "2be3aade-4b29-5728-9dc2-5b63371a5ee5", "text": "\u624b\u638c\u5f62\u6210\u5fc3\u5f62\uff0c\u5f53\u624b\u6307\u8fde\u63a5\u65f6\uff0c\u5b83\u4eec\u4f1a\u53d1\u5149\u3002"} +{"id": "8001338", "video_name": "0822afb8-b1fa-5136-b417-ab7506901696", "text": "\u5e93\u91cc\u5965\u572825\u5c81\u65f6\u8c08\u8bdd\u3002"} +{"id": "2006622", "video_name": "c1f8658a-86fd-5938-a69e-6e1a85ca31a4", "text": "\u573a\u666f10\uff1a\u706f\u5149\u95ea\u70c1\u3002\u706f\u5149\u95ea\u70c1\u4e00\u4e0b\uff0c\u7136\u540e\u53c8\u4eae\u4e86\u8d77\u6765\u3002"} +{"id": "1005443", "video_name": "640c1e0b-c969-5ac8-8db5-478567df70d2", "text": "\u4e00\u68f5\u5973\u4eba\u5f62\u72b6\u7684\u6811\uff0c\u4ee5\u9ad8\u5ea6\u7ec6\u8282\u5316\u7684\u6570\u5b57\u7ed8\u753b\u98ce\u683c\u4e3a\u5f3a\u5316\u3002"} +{"id": "2006815", "video_name": "d02965d8-1057-5315-a7f8-de42487ba627", "text": "\u4e00\u8f86\u8fea\u62c9\u6069\u8f66\u56de\u5230\u672a\u6765\u7684\u8fc7\u7a0b\u4e2d\u7740\u706b\u4e86\u3002"} +{"id": "4002177", "video_name": "7a134cbc-5929-5219-a04b-3915276cf37a", "text": "\u5728\u68ee\u6797\u4e2d\u6d17\u6fa1\u7684\u5973\u4eba\u3002\n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "5001849", "video_name": "e9e8da56-f422-529d-8e12-71b02fb1f88f", "text": "\u5e03\u9c81\u65af\u00b7\u5a01\u5229\u65af\u7ad9\u5728\u7f8e\u56fd\u56fd\u65d7\u524d\u3002"} +{"id": "4002714", "video_name": "00e57b3f-cd6b-5774-bd70-0b2054f59b09", "text": "\u4ece\u4ee5\u8bfa\u4e66\u4e2d\u60f3\u8c61\u5929\u5802\uff0c\u52a8\u753b\uff0c8K\uff0c\u660e\u4eae\u7684\u706f\u5149\u3002"} +{"id": "8003244", "video_name": "1e9cab1f-1c10-5f29-809e-906762429411", "text": "\u4e00\u540d\u7816\u5320\u5728\u5efa\u7b51\u5de5\u5730\u52b3\u4f5c\u4e86\u4e00\u5929\u540e\u4f11\u606f\uff0c\u4ed6\u671d\u7740\u6444\u50cf\u673a\u5fae\u7b11\u7740\uff0c\u62cd\u6444\u6548\u679c\u4e3a\u7535\u5f71\u822c\u7684"} +{"id": "5001360", "video_name": "1a23fd01-943e-510b-a1e8-2267b9debf59", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u5750\u5728\u81ea\u884c\u8f66\u4e0a\u5438\u70df\u3002"} +{"id": "7003612", "video_name": "12c5c58a-89cf-507c-ad76-6967d567aa21", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u8d85\u7ea7\u82f1\u96c4\uff0c\u62ab\u7740\u6597\u7bf7\uff0c\u5728\u98ce\u4e2d\u98d8\u52a8\u7740\u5979\u7684\u5934\u53d1\uff0c\u9ad8\u8d28\u91cf\u52a8\u753b\uff0c\u9ad8\u6e05\u6670\u5ea68K"} +{"id": "3004115", "video_name": "9c7ba661-d4c9-5111-9280-9ceac58d4aed", "text": "\u4e00\u4e2a\u9a91\u5728\u592a\u7a7a\u4e2d\u7684\u72d7\u4e0a\u7684\u7537\u5b69\u3002"} +{"id": "3005148", "video_name": "db030d4c-db0f-5c30-ac78-7dd200e38b22", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u66fc\u54c8\u987f\u5e02\u4e2d\u5fc3\u8ffd\u9010\u4e00\u53ea\u8001\u9f20\u3002"} +{"id": "0005745", "video_name": "2079cd71-1b9d-5425-923d-a9c574bf4ee2", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7a7f\u7740\u5b87\u822a\u670d\uff0c\u6f02\u6d6e\u5728\u5b87\u5b99\u4e2d\uff0c\u5730\u7403\u5728\u4ed6\u8eab\u540e\u3002\u8fd9\u662f\u4e00\u90e88K\u7684\u7279\u5199\u7535"} +{"id": "1005654", "video_name": "67e22bf9-dbf7-57db-a6a0-1f0123882e78", "text": "\u4e00\u540d\u89d2\u6597\u58eb\u5750\u5728\u4e00\u4e2a\u8212\u9002\u7684\u623f\u95f4\u91cc\u7684\u5723\u8bde\u6811\u65c1\uff0c\u65c1\u8fb9\u6709\u718a\u718a\u71c3\u70e7\u7684\u58c1"} +{"id": "7003172", "video_name": "219a7add-2644-5324-9c0a-c8daea1bc772", "text": "\u5728\u897f\u4f2f\u5229\u4e9a\u51b0\u539f\u4e0a\uff0c\u5e78\u5b58\u8005\u4eec\u4e0e\u8d85\u950b\u5229\u7684\u72fc\u640f\u6597\u3002"} +{"id": "7004957", "video_name": "4101e4a9-3e21-5667-9ae4-21585d088658", "text": "\u4eba\u4eec\u7f13\u7f13\u8d70\u5230\u8fd9\u6761\u8def\u4e0a\uff0c\u5728\u6162\u52a8\u4f5c\u4e2d\u3002 \n\nSource sentence: I am excited for the upcoming trip to China. \n\u6211\u5bf9\u5373\u5c06\u5230\u6765\u7684\u4e2d\u56fd\u4e4b\u65c5\u611f\u5230"} +{"id": "0004838", "video_name": "101636e7-13d8-5c9b-a47e-a8b6037b7815", "text": "3D\uff0c\u77ee\u4eba\uff0c\u68ee\u6797\u4e2d\uff0c\u795e\u79d8\u7684\u5149\u7ebf\uff0c\u5438\u70df\u70df\u6597\uff0c\u8f7b\u5fae\u79fb\u52a8\u3002"} +{"id": "6002206", "video_name": "9bd6f76e-233f-5b81-854e-50d7dec2df70", "text": "\u4e00\u4e2a\u57ce\u5e02\u8d77\u706b\u4e86\uff0c\u4e00\u4f4d\u8d85\u7ea7\u82f1\u96c4\u5728\u80cc\u666f\u4e2d\u7ff1\u7fd4\u7740\u706b\u7130\u3002\u7535\u5f71\u822c\u7684\uff0c\u9ad8\u6e05\u7684\u3002"} +{"id": "2006116", "video_name": "455de16d-bccb-5239-98bd-da6ed159e1b1", "text": "\u5728\u57fa\u7763\u6559\u7684\u8c61\u5fb5\u548c\u827a\u672f\u4e2d\uff0c\u4f60\u66f4\u5bb9\u6613\u770b\u5230\u4ed6\u88ab\u63cf\u7ed8\u6210\u5815\u843d\u7684\u5929\u4f7f\u6216\u6492\u65e6\uff0c\u6709\u7740\u89d2\u3001"} +{"id": "2003109", "video_name": "11617ff8-7918-5760-bc16-a5ddc2a2ee13", "text": "\u4e00\u4e2a\u9ed1\u80e1\u5b50\u7684\u519c\u6c11\u5361\u901a\u4eba\u7269\u5728\u4ed6\u7684\u7530\u5730\u4e0a\u6536\u5272\u5e84\u7a3c\u3002\u8fea\u58eb\u5c3c\u98ce\u683c\u3001\u76ae\u514b\u65af\u98ce\u683c\u3001\u8d85"} +{"id": "5001055", "video_name": "72b321fd-7860-598f-b35c-756111e2951d", "text": "\u9876\u70b9\uff0c\u6cb8\u817e\u7684\u5496\u5561\uff0c\u5fae\u8ddd\u955c\u5934\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "0005609", "video_name": "1df414dd-d0c5-55aa-af9b-e73d46695cc5", "text": "\u76f4\u5347\u673a\u98de\u8d8a\u6d77\u9762\u3002"} +{"id": "7004839", "video_name": "dbc5ae90-c485-50af-8e4f-c1d1b409ca8c", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u8fea\u62dc\u6253\u9ad8\u5c14\u592b\u7403\u3002"} +{"id": "3004781", "video_name": "fe32a707-c2ba-5aee-8296-98db690a0e5d", "text": "\u5927\u5c3a\u7801\u7684\u767d\u8272\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u94a9\u7f16\u8863\u670d\u3002"} +{"id": "2007424", "video_name": "358a1c96-89f5-5618-80eb-762a07ada368", "text": "\u5728\u5546\u573a\u91cc\u5356\u9999\u7cbe\u6cb9\u7684\u4e00\u4e2a\u9ad8\u5927\u5e05\u6c14\u7684\u7537\u4eba\u3002"} +{"id": "6002996", "video_name": "69385afb-b179-5e35-a808-ee8342fd6f73", "text": "\u5973\u5b69\u8d70\u5728\u8def\u4e0a\uff0c\u6b63\u9762\u89c6\u56fe\u3002"} +{"id": "3003393", "video_name": "7b056890-edf2-5ff1-bd8d-556e7eb56c00", "text": "\u963f\u59c6\u65af\u7279\u6717\u5728\u592a\u7a7a\u4e2d\u6253\u5f00\u4e86\u8231\u53e3\u3002"} +{"id": "2005336", "video_name": "e4639871-f309-5535-b9db-7446ad8592c2", "text": "\u4e00\u53ea\u8001\u9f20\u5728\u4e00\u4e2a\u8fd0\u8f6c\u7684\u8f6e\u5b50\u91cc\u9762\u5954\u8dd1\uff0c\u9ed1\u767d\u8272\uff0c\u4e8c\u7ef4\u7684\uff0c\u62bd\u8c61\u7684\u3002"} +{"id": "4002964", "video_name": "878346ff-c001-5dca-98e7-f1239838d8a3", "text": "2030\u5e74\u98ce\u683c\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u73b0\u4ee3\u98ce\u683c\u76d4\u7532\u7684\u58eb\u5175\u4ee5\u8bda\u5b9e\u7684\u59ff\u6001\u6446\u62cd\uff0c\u6444\u5f71\u98ce\u683c\u3002"} +{"id": "1006162", "video_name": "70d564ba-5631-57da-adc7-6b0ee8ca303b", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u6709\u7740\u5927\u773c\u775b\u548c\u5c16\u9f3b\u5b50\u3002"} +{"id": "2006001", "video_name": "7257eb35-a397-5ee5-9ff7-1c7686c5b37a", "text": "\u7ea6\u7ff0\u4ece\u6cb9\u6f06\u5e97\u9009\u62e9\u4e86richlux\u6cb9\u6f06\u3002"} +{"id": "7002158", "video_name": "f47c81ef-ad65-5549-92cb-a09d1efaa717", "text": "\u4e00\u4f4d\u5750\u5728\u529e\u516c\u684c\u524d\u7684\u91d1\u878d\u4eba\u58eb\u5728\u7b49\u5f85\u91cd\u8981\u7684\u6d88\u606f\u3002"} +{"id": "3006466", "video_name": "4df45371-a6cd-5750-89f7-e259edb6c4c9", "text": "\u4e00\u53ea\u91ce\u751f\u7684\u9f9f\u30024k ar\u9ad8\u6e05\u3002\u5b8c\u6574\u7684\u8eab\u4f53\u7ed3\u6784\u3002"} +{"id": "0005572", "video_name": "1d2fa903-8bc1-57cf-83e6-95a5f246c1fa", "text": "\u4e00\u4f4d\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\u6b63\u5728\u6f2b\u6b65\u5e76\u4eab\u53d7\u9633\u5149\u3002"} +{"id": "3006495", "video_name": "b4ac97d3-f8b6-59f4-9378-77d984f20ef2", "text": "\u53cd\u6d3e\u89d2\u8272\uff0c\u5178\u578b\u7684\u574f\u4eba\uff0c\u5927BOSS\uff0c\u6700\u540e\u4e00\u5173\uff0c\u6700\u7ec8BOSS"} +{"id": "7002758", "video_name": "a215aa05-ff8f-5ba2-b10c-0c8b7ec51552", "text": "\u4e9a\u5386\u514b\u65af\u4f1a\u62ef\u6551\u4ed6\u7684\u4e16\u754c\uff0c\u8fd8\u662f\u6210\u4e3a\u81ea\u5df1\u52a8\u753b\u5669\u68a6\u7684\u53d7\u5bb3\u8005\uff1f\u7b54\u6848\u5c31\u5728\u6570\u5b57\u73b0\u5b9e\u4e2d\u56de"} +{"id": "8003772", "video_name": "33523719-b360-5155-9981-620611ed2e27", "text": "\u84dd\u8272\u7684\u9e1f\u671d\u7740\u6444\u50cf\u673a\u98de\u884c\u3002"} +{"id": "1003065", "video_name": "3854f5b4-1b5d-58a0-9782-717f0cd1f128", "text": "\u5979\u7528\u624b\u673a\uff0c\u9e1f\u513f\u5728\u5468\u56f4\u98de\u7fd4\u3002\u9644\u4ef61\u3002"} +{"id": "0006776", "video_name": "32ef48b0-4c21-5bda-bf8a-9b7320118965", "text": "1970\u5e74\u7684A24\u7535\u5f71\u5448\u73b0\u7f8e\u5b66\u70ed\u5e26\u666f\u89c2\u548c\u91ce\u706b\u3002"} +{"id": "0004888", "video_name": "10f4e4af-51ec-5c09-b291-6f4a3248178f", "text": "\u6765\u81ea\u4e00\u90e8\u8d85\u73b0\u5b9e\u4e3b\u4e49\u76841960\u5e74\u4ee3\u827a\u672f\u7535\u5f71\u7684\u72c2\u70ed\u4fe1\u5f92\u3002"} +{"id": "0004084", "video_name": "02e9598e-9b19-5fca-b351-2e1bfc5b097c", "text": "\u4e00\u5e45\u8272\u5f69\u7f24\u7eb7\u7684\u7d20\u63cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u4e8c\u5341\u591a\u5c81\u7684\u7537\u5b50\uff0c\u624b\u4e2d\u62ff\u7740\u5305\uff0c\u6b63\u9762\u89c6\u56fe\uff0c\u540e\u65b9\u53f3\u4fa7\u548c\u5de6"} +{"id": "1003528", "video_name": "410cb431-2220-5112-922c-137d72b190ec", "text": "\u4e00\u4e2a\u6d1e\u7a74\u4e2d\u7684\u72ec\u773c\u5de8\u4eba\uff0c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u9ed1\u767d\u8272\u8c03\uff0c16.9\u3002"} +{"id": "4003685", "video_name": "43690864-a148-598b-a36d-4b657bdf2bcf", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u8349\u602a\u4ece\u8349\u4e1b\u4e2d\u8df3\u4e86\u8d77\u6765\u3002"} +{"id": "1003542", "video_name": "4154b6fa-5265-5614-a8c1-1e30e0aaaf6b", "text": "\u5168\u8eab\u7167\uff0c\u4e2d\u56fd\u5973\u6a21\u7279\uff0c\u957f\u53d1\u76d8\u8d77\uff0c\u6234\u7740\u53e3\u7f69\uff0c\u7a7f\u7740\u7eff\u8272\u65d7\u888d\uff0c\u80cc\u666f\u662f\u5317\u4eac\u56db\u5408\u9662\u3002"} +{"id": "5001203", "video_name": "78a401df-8fe7-54c8-bc08-0c4b81cacf73", "text": "\u91c7\u7528Pop Art\u52a8\u753b\u98ce\u683c\u7684\u56fa\u5b9a\u6444\u50cf\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u8272\u5f69\u4e30\u5bcc\u7684\u5706\u70b9\u56fe\u6848\uff0c\u4e0d\u5206\u7537\u5973\u7684Lee Bowery"} +{"id": "1006596", "video_name": "78e380d6-f5a2-5011-99ee-c9b13a9f3d6a", "text": "\u5728\u6c99\u6f20\u4e0b\u9762\u7684\u4e00\u68f5\u6811\u4e0b\uff0c\u4e00\u4e2a\u7537\u4eba\u62b1\u7740\u4e00\u53ea\u975e\u5e38\u5947\u602a\u7684\u751f\u7269\u3002"} +{"id": "5001049", "video_name": "103a7483-9cb7-56f3-9f7f-47e090755de8", "text": "\u5728\u975e\u6d32\u53e4\u4ee3\u7684\u6218\u4e89\u4e2d\uff0c\u9a91\u9a6c\u7684\u58eb\u5175\u4e92\u76f8\u4ea4\u6218\u3002"} +{"id": "8001645", "video_name": "7f8c5048-16b4-5ed0-844f-dbfb4fe4ce07", "text": "\u7535\u8111\u5c4f\u5e55\u4e0a\u663e\u793a\uff1a\u89e3\u5bc6\u8005 (\u73b0\u4ee3\u5b57\u4f53)"} +{"id": "4004415", "video_name": "54e1c683-4d1c-557a-b286-1cfbc9a409f8", "text": "\u4e00\u68f5\u6f02\u4eae\u7684\u65e5\u672c\u767e\u8d27\u5e97\u91cc\u7684\u5723\u8bde\u6811\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2005387", "video_name": "0f5d7d5c-c295-574c-97bc-4d9647fd4f14", "text": "\u5230\u8fbe\u5f69\u8679\u5c71\u9700\u8981\u8fdb\u884c\u5177\u6709\u6311\u6218\u6027\u7684\u5f92\u6b65\u65c5\u884c\uff0c\u901a\u5e38\u4ece\u5e93\u897f\u5e15\u5854\u9547\u5f00\u59cb\u3002"} +{"id": "1003164", "video_name": "3a4600e0-2bc6-510c-9fba-b3b33104f393", "text": "\u7236\u4eb2\u548c13\u5c81\u7684\u513f\u5b50\u5728\u5f00\u8f66\u65f6\u8fdb\u884c\u7740\u91cd\u8981\u7684\u5bf9\u8bdd\uff0c\u7b80\u7ea6\u3001\u9ed1\u767d\u3001\u5361\u901a\u3002"} +{"id": "2005566", "video_name": "878183ba-f5c9-529d-99e1-2c423f953f74", "text": "\u4e00\u4e2a\u6234\u7740\u5723\u8bde\u5e3d\u7684\u5973\u5b69\u5728\u7535\u8111\u4e0a\u6253\u5b57\u3002"} +{"id": "6002539", "video_name": "561bb833-72d5-5a44-a34f-d9a411099367", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u94c1\u8def\u8f68\u9053\u4e0a\u3002"} +{"id": "8002810", "video_name": "421077ea-7d2b-58f1-8525-69c5a88d7324", "text": "\u4e2d\u666f\uff0c\u7a7f\u7eff\u8272\u886c\u886b\u3001\u9ed1\u8272\u9886\u5e26\u3001\u76f4\u53d1\u3001\u77ed\u53d1\u3001\u4e2d\u5206\u53d1\u578b\u7684\u4e2d\u56fd\u7537\u8001\u5e08\uff0c\u5728\u84dd\u767d\u8272\u8c03\u7684\u6821"} +{"id": "8003139", "video_name": "5da8c5de-a679-507f-a2fa-f9213cade9fb", "text": "\u4e00\u4f4d\u5973\u5b50\uff08\u62ff\u7740\u5e76\u770b\u7740\u4e00\u4e2a\u5934\u9aa8\uff1a1.9\uff09\uff0c\u624b\u91cc\u62ff\u7740\u5934\u9aa8\uff0c\u5973\u5b50\u4e2a\u5b50\u9ad8\uff0c\u8eab\u7a7f\u50cf\u533b\u751f\u4e00\u6837\u7684"} +{"id": "2003981", "video_name": "b0e43e53-cac7-5e6b-8794-8bb023be5613", "text": "\u4ed6\u624b\u6301\u4e09\u53c9\u621f\uff0c\u5411\u6697\u5f71\u6c34\u751f\u654c\u4eba\u8fc5\u901f\u53d1\u5c04\u6c34\u80fd\u91cf\u4e4b\u7bad\u3002"} +{"id": "8003064", "video_name": "a703ca81-ddef-5218-9714-88a1ce69f23f", "text": "\u9ad8\u8d28\u91cf\u7684\u903c\u771f\u4ed9\u5973\u738b\u56fd\u73bb\u7483\u7403\u6e32\u67d3"} +{"id": "8001447", "video_name": "f2f1c552-dc79-5bf6-b7f0-9f9982671e37", "text": "\u5c0f\u53ef\u7231\u7684\u5413\u4eba\u732b\u6234\u7740\u4e07\u5723\u8282\u670d\u88c5\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u96f6\u98df\u3002"} +{"id": "2007777", "video_name": "2a161293-1e55-5d5c-814f-3ae44ea09d48", "text": "\u5728\u591c\u89c6\u6444\u50cf\u673a\u7684\u62cd\u6444\u4e0b\uff0c\u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u5728\u6811\u6797\u4e2d\u7528\u7535\u952f\u4e0e\u50f5\u5c38\u640f\u6597\u3002"} +{"id": "1003265", "video_name": "3c16ee3f-c20e-504d-8396-c68b2e894d06", "text": "\u8ff7\u5e7b\u591a\u5f69\u7684\u7c89\u7d2b\u9ec4\u7eff\u8272\u81ea\u7136\u56fe\u50cf"} +{"id": "1003804", "video_name": "464070c9-cdf1-5b68-967b-94e866b5889e", "text": "\u5362\u6d6e\u5bab\u7684\u9e1f\u77b0\u56fe\uff0c\u9010\u6e10\u653e\u5927\u5230\u73bb\u7483\u91d1\u5b57\u5854\u3002"} +{"id": "3004271", "video_name": "d841f82b-e5fe-52e9-a695-71c3cad6cda4", "text": "\u592a\u7a7a\u706b\u7bad\u98de\u5411\u592a\u7a7a\uff0c\u53d1\u73b0\u4e86\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u661f\u7403\u3002"} +{"id": "8003158", "video_name": "4eb4d075-1355-599a-84ac-a9574bc5892e", "text": "\u4e00\u5e45\u8be6\u7ec6\u7684\u6b22\u4e50\u5730\u56fe\uff0c\u7cbe\u7f8e\u7684\u8bbe\u8ba1\u5305\u542b\u4e86\u4ee3\u8868\u7f8e\u5fb7\u7684\u81ea\u7136\u5143\u7d20\uff0c\u68ee\u6797\u3001\u6cb3\u6d41\u548c\u5c71\u8109\uff0c\u53d7\u5230"} +{"id": "6002026", "video_name": "7004f8d2-1a7c-56e5-a75d-04497b55db07", "text": "\u4e00\u53ea\u8682\u8681\u5728\u6218\u4e89\u548c\u6218\u6597\u4e2d\u7a7f\u7740\u76fe\u724c\u3002"} +{"id": "6003232", "video_name": "78d32fd0-f0a0-58de-8247-d65a72de7223", "text": "\u5728\u827e\u83f2\u5c14\u94c1\u5854\u524d\u665a\u4e0a\u5438\u5927\u9ebb\u3002"} +{"id": "0004706", "video_name": "0da4f578-983f-5656-96c3-38ba319a8c5c", "text": "\u58eb\u5175\u6551\u51fa\u79d1\u5b66\u5bb6\uff0c\u8bbe\u65bd\u7ecf\u5386\u4e86\u5de8\u5927\u7684\u7206\u70b8\u3002"} +{"id": "6002838", "video_name": "6f811ddd-0f40-5fa2-bc66-0ba58b0d8b15", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u53ea\u72d0\u72f8\u7ad9\u5728\u6e56\u8fb9\uff0c\u6ce8\u89c6\u7740\u4e00\u4e2a\u4eba\u3002"} +{"id": "2005401", "video_name": "f70d4299-7e76-5a42-baf1-9c796c7f9c58", "text": "\u8fd9\u4e2a\u4eba\u95ed\u4e0a\u773c\u775b\uff0c\u56de\u5fc6\u8d77\u8fc7\u53bb\u7684\u5feb\u4e50\u65f6\u5149\u3002\u4ed6\u4eec\u770b\u5230\u4e86\u5df2\u7ecf\u79bb\u5f00\u4e86\u4ed6\u4eec\u7684\u4eb2\u4eba\u7684\u8138\u5e9e\u3002"} +{"id": "3003914", "video_name": "9e5e9358-3073-535a-9b6b-d6f0816558e9", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u4eba\u5728\u4e00\u4e2a\u80ae\u810f\u7684\u767d\u8272\u623f\u95f4\u91cc\u62ff\u8d77\u4e86\u4e00\u652f\u6709\u6591\u70b9\u7684\u68d2\u7403\u68d2\u3002\u91cd\u5f71\u3001\u9ed1\u767d"} +{"id": "2006476", "video_name": "3b0e922b-4462-5bc9-be5c-5a8a13ba5a79", "text": "\u5728\u5927\u81ea\u7136\u4e2d\uff0c\u753b\u51fa\u5b69\u5b50\u4eec\u4eab\u53d7\u8702\u871c\u7f8e\u98df\u548c\u559c\u60a6\u7684\u573a\u666f\uff0c\u8fd8\u6709\u4ece\u8428\u83ab\u74e6\u5c14\u58f6\u4e2d"} +{"id": "0006393", "video_name": "2bc10a18-87e7-59b0-8ea3-97f87d0046b2", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u4fe1\u606f\u4e3aweb3now\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "3003670", "video_name": "6dc03214-55e5-5c55-8037-4f066443ce78", "text": "\u6708\u5149\u591c\u665a\uff0c\u9634\u5f71\u5728\u8be1\u5f02\u7684\u5149\u8292\u4e2d\u8df3\u821e\u3002"} +{"id": "2006135", "video_name": "91a9564b-f0d3-54bb-99b8-59adea6686b6", "text": "\u4e00\u4e2a\u7eff\u8272\u5916\u661f\u4eba\u5728\u4e00\u4e2a\u9540\u94ec\u7684\u590d\u6742\u5b87\u5b99\u98de\u8239\u5185\u5439\u7740\u8428\u514b\u65af\u7ba1\uff0c\u53ef\u89c1\u7684\u7a97\u6237\u5c55\u793a\u7740\u5b87"} +{"id": "1003394", "video_name": "3e95f585-96fd-5cee-96d6-9049e5528746", "text": "\u5c55\u793a\u6109\u5feb\u7684\u6d77\u9f9f\u534f\u52a9\u5176\u4ed6\u9700\u8981\u7684\u6d77\u6d0b\u751f\u7269\uff0c\u5c55\u73b0\u56e2\u961f\u5408\u4f5c\u548c\u5584\u826f\u3002"} +{"id": "7004583", "video_name": "066e5f4b-17e7-5539-a39d-9c60ca964302", "text": "\u53d7\u5230\u653e\u9032\u6536\u5bb9\u6240\u7c60\u5b50\u88e1\u7684\u5df4\u54e5\u72ac\uff0cCGI\u52d5\u756b\uff0c8K\uff0c\u60b2\u50b7\u3002"} +{"id": "1005996", "video_name": "6e33dc9a-2a7d-5182-a825-8cb3a9e12131", "text": "Translation: \u53e4\u4ee3\u6218\u6597\u7684\u573a\u666f"} +{"id": "0003708", "video_name": "421faa03-6335-5f65-8544-40f9fb19b2a7", "text": "\u516c\u5143\u524d350\u5e74\uff0c\u7f57\u9a6c\u7ade\u6280\u573a\u4e2d\u6709\u4eba\u5e2e\u52a9\u53e6\u4e00\u4e2a\u4eba\u3002"} +{"id": "7000004", "video_name": "fd82857b-7303-5e7a-b658-3caa0b0d2d8b", "text": "\u4e00\u5f20\u767d\u5316\u75c5\u5973\u6027\u5728\u7ea2\u8272\u623f\u95f4\u91cc\u4e0e\u73ab\u7470\u7684\u7167\u7247"} +{"id": "2004002", "video_name": "43a1a2b9-3873-5896-a2f6-b79203b916fb", "text": "\u4e00\u6839\u5145\u6ee1\u53d1\u5149\u7684\u7ea2\u8272\u6db2\u4f53\u7684\u5851\u6599\u7ba1\uff0c\u5728\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c8K\u52a8\u753b\u3002"} +{"id": "6002643", "video_name": "a1699235-4284-5b6d-8fb9-d7964470d3c2", "text": "\u4e00\u4f4d\u6234\u773c\u955c\u7684\u957f\u53d1\u7f8e\u5973\u6b63\u5728\u770b\u7535\u89c6\u3002"} +{"id": "0005972", "video_name": "243bc853-d90e-59f7-85c7-6a283706bc62", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u7684\u5f92\u6b65\u65c5\u884c\u8005\u8d70\u5411\u955c\u5934\u80cc\u666f\u7684\u7f8e\u4e3d\u96ea\u5c71\uff0c\u72ec\u7279\u7684\u89d2\u8272\u7ec6\u8282\u3002"} +{"id": "2006179", "video_name": "69f75766-c377-59a9-99f2-4bf421257611", "text": "\u9ed1\u7c89Lisa\u7a7f\u7740\u9ed1\u8272\u8fde\u8863\u88d9\uff0c\u5728\u6697\u623f\u91cc\u9762\u7684\u955c\u5b50\u524d\u548c\u8721\u70db\u4e00\u8d77\u73a9\u6e38\u620f\u3002"} +{"id": "4003495", "video_name": "fda32d68-1f74-52ae-aed4-3a2dde7fbcbf", "text": "\u68ee\u6797\u4e2d\u5e72\u67af\u6811\u53f6\u4e2d\u7684\u5934\u9aa8\uff0c\u8001\u5f0f\u6050\u6016\u7535\u5f71\u753b\u9762\uff0c\u53d7\u635f\u7684\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "3006564", "video_name": "03e97cca-77da-59b2-a984-f622218574ab", "text": "\u4e00\u53ea\u5c0f\u72d7\u5728\u7530\u91ce\u91cc\u8ffd\u9010\u6c14\u7403\u3002"} +{"id": "2006555", "video_name": "a82dad00-88d1-54ed-9c3b-9533597c1e1a", "text": "\u4e00\u53ea\u8d85\u7ea7\u53ef\u7231\u7684\u72d7\u72d7\u4ef0\u7740\u809a\u76ae\u73a9\u800d\u3002"} +{"id": "2007133", "video_name": "3ecb208d-b550-5b8c-b960-c19b4ee967c6", "text": "1910\u5e74\u7684\u7f57\u9a6c\uff0c\u9ed1\u767d\u76f8\u95f4\u7684\u9a6c\u8f66\u5728\u5e7f\u573a\u4e0a\u3002"} +{"id": "7004374", "video_name": "bdc752e8-cd45-59e7-9d61-92568f6cea39", "text": "\u4ed9\u5973\u7cfb\u5728\u4e95\u91cc\u7684\u94fe\u5b50\u4e0a\uff0c\u653e\u5927\u3002"} +{"id": "3005596", "video_name": "a7f1e634-6865-5e96-b35b-d965dd2d39ed", "text": "\u7528\u5237\u5b50\u753b\u4e00\u5e45\u753b\u3002"} +{"id": "8003561", "video_name": "7f8b9973-72f4-5354-a839-b6a17e387ea4", "text": "\u52a8\u6f2b\u5973\u5b69\u624b\u6301\u8d85\u7ea7\u6b65\u67aa\uff0c\u8d85\u9510\u5229\uff0c8K\u3002"} +{"id": "3005174", "video_name": "cd0451f5-bd2c-54d1-9665-7a01b1f75a68", "text": "8k\u5206\u8fa8\u7387\u7684\u73a9\u5177\u732b\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\uff0c\u5486\u54ee\u7740\uff0c\u62ff\u8d77\u4e00\u6839\u5de8\u5927\u7684\u7d2b\u8272\u68cd\u5b50\u3002"} +{"id": "6002758", "video_name": "b1c9d047-37f8-58d1-a8f4-cdb5e68de545", "text": "\u5728\u5b66\u6821\u91cc\u53d1\u751f\u4e86\u98df\u7269\u6597\u6bb4\uff0c90\u5e74\u4ee3\u7684VHS\u6ee4\u955c\u3002"} +{"id": "0003446", "video_name": "3da8e6f6-433d-5e31-aa70-089b7841e1e5", "text": "\u62fc\u56fe\u5757\uff0c\u9ed1\u767d\u76f8\u95f4\u7684\u3002\u4fe1\u606f\uff1as e g c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1003543", "video_name": "415bf908-5aa1-5a6b-bb69-e352f0f9f829", "text": "\u6df1\u591c\uff0c\u6708\u8272\u660e\u4eae\uff0c\u4e00\u95f4\u5367\u5ba4\u91cc\uff0c\u4e00\u540d\u5c0f\u7537\u5b69\u6b63\u5728\u7761\u89c9\uff0c\u7a97\u5916\u4e00\u53ea\u9cb8\u9c7c\u6e38\u8fc7\u3002"} +{"id": "1004218", "video_name": "4e07e16d-325f-5245-a58f-30ca8ac11b0d", "text": "\u7b2c\u4e00\u5bf9\u60c5\u4fa3\u7ad9\u5728\u5c71\u4e0a\u89c2\u8d4f\u81ea\u7136\uff0c\u4e24\u4eba\u90fd\u7a7f\u7740\u6a59\u8272\u8863\u670d\u3002"} +{"id": "2005682", "video_name": "3d7ba40b-2ec0-5939-8477-309a171053a0", "text": "\u4e00\u4e2a\u53ebpoints\u7684\u786c\u5e01\u7684\u5927\u6807\u5fd7\u5fc5\u987b\u662f\u9759\u6001\u7684\u3001\u6709\u8da3\u7684\u548c\u7d2b\u8272\u7684\u3002\n\nSource sentence: I need to buy some milk and bread from the grocery store. \n\u6211"} +{"id": "4004343", "video_name": "9fe58b92-859a-53ee-b420-64915abeceb2", "text": "\u5728\u82b1\u56ed\u91cc\u753b\u4e00\u4e2a\u60c5\u4fa3\u4e00\u8d77\u521b\u4f5c\u8bd7\u6b4c\uff0c\u4ed6\u4eec\u5750\u5728\u82b1\u6735\u548c\u690d\u7269\u4e4b\u95f4\uff0c\u7b14\u5c16\u6d41\u6dcc\u7740\u5bf9\u7231"} +{"id": "1004959", "video_name": "5b9ec835-5a3c-5068-bc0b-b7a54b8f457a", "text": "\u673a\u5668\u4eba\u56db\u5206\u4e94\u88c2\uff0c\u788e\u6210\u788e\u7247\uff0c\u80cc\u666f\u662f\u8d5b\u535a\u57ce\u5e02\u7684\u9713\u8679\u706f\u3002"} +{"id": "0006350", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "\u73bb\u7483\u7897\uff0c\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u88c5\u6ee1\u5de7\u514b\u529b\u5757\u878d\u5316\u6210\u6db2\u4f53\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u90a3\u53ea"} +{"id": "1006382", "video_name": "74ca3a19-a440-5a9a-a889-a1765fcabd62", "text": "\u4e00\u652f\u7531\u8682\u8681\u7ec4\u6210\u7684\u5efa\u623f\u5b50\u7684\u519b\u961f\u3002"} +{"id": "7003558", "video_name": "03753231-fe55-5b39-a549-3d3fc402b2ae", "text": "\u4e00\u68f5\u5c71\u6986\u6811\u6cbf\u8def\u751f\u957f\u3002\n\n\u5979\u662f\u65e0\u610f\u4e2d\u3001\u975e\u6cd5\u5730\u957f\u5927\u7684\uff0c\u5728\u8def\u8fb9\u3001\u9ad8\u6728\u56f4\u680f\u65c1\u8fb9\uff0c\u4f9d\u504e\u7740"} +{"id": "3003842", "video_name": "9663f935-0a33-529d-804a-76797643aac2", "text": "\u7537\u5b50\u201c\u5f71\u5b50\u4e4b\u6700\u540e\u201d\u770b\u7740\u955c\u5934\u3002"} +{"id": "3006109", "video_name": "3d8ac9d4-9ca0-5b9e-8058-d24307902480", "text": "\u4e00\u7fa4\u529e\u516c\u5ba4\u7ecf\u7406\u7ad9\u5728\u7a97\u8fb9\uff0c\u5e86\u795d\u65b0\u5e74\u3002"} +{"id": "3006926", "video_name": "d64facca-6d97-5531-8aec-65095572d4be", "text": "\u6050\u6016\u6e38\u620f\u7684FPS\u6e38\u620f\u753b\u9762\uff0c\u73a9\u5bb6\u4f7f\u7528\u76f8\u673a\u3002"} +{"id": "2005564", "video_name": "cbd21440-a6fb-5e87-be0e-148567fe38b9", "text": "\u529e\u516c\u5ba4\u6781\u7b80\u4e3b\u4e49\uff0c\u7535\u8111\u4e0a\u6253\u7740\u7a0b\u5e8f\u4ee3\u7801\u7684\u5f00\u653e\u7a97\u6237\uff0c\u6444\u50cf\u5934\u7f29\u653e\u548c\u653e\u5927\u3002\u4fe1\u606f\uff1aFabian\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003832", "video_name": "210db5b4-ba19-5fe7-9d00-c3b15622acf2", "text": "\u4e00\u540d\u5168\u8eab\u6cbe\u6ee1\u7ea2\u8272\u6db2\u4f53\u7684\u5973\u6027\u3002"} +{"id": "7002169", "video_name": "621aec2d-dbec-53cf-8661-0d4e777d958f", "text": "\u6c28\u57fa\u516c\u4e3b\u8df3\u4e0a\u8df3\u4e0b\u3002"} +{"id": "2006561", "video_name": "18ffc824-1752-559f-beeb-791949181eb6", "text": "\u4e00\u4e2a\u6301\u5200\u6597\u4e89\u7684\u7537\u4eba\u3002"} +{"id": "2003600", "video_name": "cf0ccf49-d092-5004-9346-a45686d93f60", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u80cc\u666f\u662f\u9633\u5149\u660e\u5a9a\u7684\u516c\u56ed\uff0c\u6709\u6811\u6728\uff0c\u662f\u81ea\u7136\u4e2d\u7684\u7f8e\u4e3d\u5730\u65b9"} +{"id": "2005910", "video_name": "4cd2c81a-0a69-5dae-8c42-c8778387e966", "text": "\u5728\u9ed1\u6697\u4e2d\u5fae\u7b11\u8033\u8bed\u7684\u7537\u4eba\u3002"} +{"id": "0005376", "video_name": "19be31af-9804-5c34-84fc-be8bbba2d478", "text": "\u60ca\u4eba\u7684\u8d85\u8be6\u7ec6\u590d\u53e4\u7d20\u63cf\u827a\u672f\uff0c\u59ff\u52bf\u6709\u529b\uff0c\u9762\u90e8\u8868\u60c5\u9c9c\u660e\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eMandy Jurgens\u3002"} +{"id": "4002813", "video_name": "a8bbc0c0-abed-5c52-95a7-8645450c082c", "text": "\u4f7f\u7528\u91d1\u5c5e\u98ce\u683c\u3001Octane\u6e32\u67d3\u3001\u4f53\u79ef\u5149\u30018k\u6e32\u67d3\u3001\u9ad8\u7ec6\u8282\u3001\u6700\u9ad8\u5206\u8fa8\u7387\u6765\u521b\u5efa\u4e00\u4e2a\u5e26\u6709\u201cSeVVen Angel"} +{"id": "0005669", "video_name": "1f11cf05-9094-5522-aa64-7c503b282602", "text": "\u5728\u4e00\u7247\u8302\u5bc6\u7684\u4e1b\u6797\u73af\u5883\u4e2d\uff0c\u4e00\u53ea\u4f53\u578b\u5e9e\u5927\u4e14\u6ee1\u8db3\u7684\u725b\u6b63\u5728\u5e73\u9759\u5730\u5403\u7740\u5404\u79cd\u690d\u7269\u3002\u4e00"} +{"id": "5001263", "video_name": "bd9df681-7055-5be1-88e5-0e695cf7a9c5", "text": "\u9ed1\u8272\u8fd0\u52a8\u8f66\u5e26\u6709\u9ec4\u8272\u7ec6\u8282\uff0c\u5177\u6709\u672a\u6765\u611f\u7684\u62fe\u53d6\u5f0f\u5916\u89c2\uff0c\u5728\u9ad8\u5927\u548c\u672a\u6765\u611f\u7684\u5efa\u7b51\u7269\u6797\u7acb\u7684\u57ce\u5e02\u4e2d\u884c\u9a76"} +{"id": "8002460", "video_name": "a8469001-8e47-5f57-b286-978747a326d1", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u9b54\u6cd5\u4e4b\u8def\u5728\u68ee\u6797\u6df1\u5904\u3002"} +{"id": "1005281", "video_name": "61253bcb-751a-558b-bef8-d34a22748799", "text": "\u88ab\u8ba4\u4e3a\u662f\u4e2d\u56fd\u6700\u7f8e\u4e3d\u7684\u5973\u6027\u7684\u4e2d\u56fd\u5973\u4eba\u3002"} +{"id": "6002476", "video_name": "2b24e2fa-b09b-5e5f-9619-6f7f7c7a4186", "text": "\u5c0f\u7537\u5b69\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "7003090", "video_name": "6444071a-8bb3-58e7-bd99-c37d727455a3", "text": "\u7531\u5b9e\u5fc3\u9ec4\u91d1\u548c\u767d\u91d1\u5236\u6210\u7684\u672c\u571f\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "3006324", "video_name": "f552316c-bd56-59cd-a572-9a8f10a79394", "text": "Translation: \u4e00\u4e2a\u706b\u5c71\u5bf9\u53e6\u4e00\u4e2a\u706b\u5c71\u8bf4\u4e86\u4ec0\u4e48\uff1f"} +{"id": "2004284", "video_name": "a3c80da6-9674-58c0-9163-52d0de216432", "text": "\u4ecb\u7ecd\u6751\u5e84\u548c\u4e3b\u4eba\u516c\uff0c\u7537\u4eba\u3002\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "1004174", "video_name": "4d42c25b-0780-55f8-b2c2-d507e6af9c57", "text": "\u7537\u4eba\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u4ee52D\u52a8\u753b\u5f00\u59cb\u3002"} +{"id": "6003688", "video_name": "78df4acc-d974-5e1d-b6f4-18a149cec859", "text": "\u5236\u4f5c\u4e00\u90e8\u767e\u5e74\u6885\u8d5b\u5fb7\u65af\u6f14\u53d8\u5386\u53f2\u7684\u89c6\u9891\u3002"} +{"id": "3006178", "video_name": "2a34b4a1-63c4-527a-bc81-0319e6f32a37", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u6570\u5b57\u56fe\u5f62\uff0c\u5c55\u793a\u4e00\u4e2a\u7b97\u6cd5\u8fc7\u7a0b\uff0c\u5176\u4e2d\u6570\u636e\u70b9\u3001\u4ee3\u7801\u884c\u548c\u4fe1\u606f\u6d41\u5171\u540c\u6784\u5efa\u4e00\u4e2a\u4eba\u7684\u6570\u5b57\u6863\u6848\u3002\u8be5\u56fe\u5f62\u5e94\u4f20\u8fbe\u7b97\u6cd5\u6784\u5efa\u6570\u5b57\u6863\u6848\u7684"} +{"id": "1004722", "video_name": "579516ef-30f9-5e8e-ae0c-4abfefbbda9a", "text": "\u623f\u95f4\u91cc\u6709\u4e00\u4e2a\u4eba\u5728\u4f11\u606f\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3005219", "video_name": "eddd6bae-c1c9-5522-b54b-fbf4692fa8b4", "text": "\u53e4\u6bd4\uff0c\u5b9a\u683c\u52a8\u753b\uff0c\u7c98\u571f\u52a8\u753b\uff0c1950\u5e74\u4ee3\u52a8\u753b\uff0c\u5b9e\u9a8c\u6027\u52a8\u753b\u3002"} +{"id": "4004113", "video_name": "17bb4cf4-28e3-5ad8-a22d-980477b16d00", "text": "\u4e00\u4e2a\u8bda\u5b9e\u768418\u5c81\u5c11\u5e74\u4f4f\u5728\u4e00\u4e2a\u6751\u5e84\u91cc\uff0c\u4ed6\u7684\u540d\u5b57\u53eb\u963f\u91cc\u3002"} +{"id": "0006366", "video_name": "2b469278-de8e-50c6-ade0-c60327a6d505", "text": "\u4e00\u5f20\u591c\u666f\u7167\u7247\uff0c\u9ad8\u8038\u5165\u4e91\u7684\u6469\u5929\u5927\u697c\u88ab\u8302\u5bc6\u7684\u68ee\u6797\u6240\u8986\u76d6\uff0c\u65e9\u5df2\u88ab\u65f6\u95f4\u9057\u5fd8\u3002\u8fd9"} +{"id": "7002697", "video_name": "48e38fc7-758f-5e1a-913a-12d761ad94ef", "text": "\u672a\u6765\u4e3b\u4e49\u9053\u8def\u4ea4\u901a\uff0c\u642d\u8f7d\u73b0\u4ee3\u6c7d\u8f66\u3002\u4fe1\u606f\uff1a\u795d\u60a8\u4e00\u8def\u987a\u98ce\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4004499", "video_name": "6cb9dfdf-a403-5a2f-99e8-7ee429ce1f21", "text": "\u591c\u5e55\u964d\u4e34\uff0c\u5bab\u6bbf\u91cc\u7684\u6e38\u5ba2\u6e10\u6e10\u79bb\u53bb\uff0c\u4e00\u79cd\u6df1\u6c89\u7684\u5bc2\u9759\u7b3c\u7f69\u7740\u6574\u4e2a\u7a7a\u95f4\u3002\u636e\u8bf4\uff0c\u5728"} +{"id": "6003919", "video_name": "b95e06f8-4746-58a2-9901-420e105ea1e9", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u516c\u5143\u524d100\u5e74\u7684\u53e4\u5370\u5ea6\u51fa\u73b0\u5728\u73b0\u4ee3\u5370\u5ea6\u57ce\u5e02\u8857\u5934\u7684\u6697\u7269\u8d28\u7b49\u79bb\u5b50\u4e92\u901a\u95e8\u73af\u4e2d\uff0c\u5468"} +{"id": "1003807", "video_name": "46504866-acef-57b6-8127-9c2d64ea9be0", "text": "\u4e00\u4e2a\u9f13\u662f\u7528\u756a\u8304\u5236\u6210\u7684\uff0c\u6709\u9e21\u817f\uff0c\u7eff\u8272\u80cc\u666f\u4e0a\u7684\u7ea2\u8272\uff0c\u9f13\u819c\u5e94\u8be5\u662f\u756a\u8304\uff0c\u5176\u4ed6\u90fd\u662f\u7535"} +{"id": "0006898", "video_name": "35018321-1081-5774-9e22-fb916fa6329d", "text": "\u4ed6\u9a7e\u7740\u6709\u7ffc\u7684\u6218\u8f66\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "6002348", "video_name": "55da01b8-0d59-52cd-80d9-80d94b1de9f4", "text": "translation: \u4e00\u5757\u98de\u6563\u7684\u788e\u7247\u8fdb\u5165\u4e86\u4e00\u4e2a\u9ed1\u767d\u8272\u7684\u57ce\u5e02\u7684\u6df1\u5904\u89c6\u89d2\u3002"} +{"id": "3003845", "video_name": "dd80a3f2-3979-5769-b146-72d72492fdc6", "text": "\u51e0\u5e74\u540e\uff0c\u62c9\u59c6\u660e\u767d\u4e86\u65f6\u95f4\u7684\u91cd\u8981\u6027\uff0c\u4f46\u4ed6\u7684\u5f88\u591a\u65f6\u95f4\u5df2\u7ecf\u8fc7\u53bb\u4e86\u3002\u4ed6\u4e00\u76f4\u540e\u6094\u81ea\u5df1\u6ca1\u6709\u597d\u597d\u5229\u7528\u65f6\u95f4\u3002"} +{"id": "4002526", "video_name": "b501c12c-9559-5ebd-b365-82026c6c9ab8", "text": "\u9732\u5a1c\u628a\u94a5\u5319\u63d2\u5165\u795e\u79d8\u9b54\u6cd5\u4e66\u4e2d\uff0c\u4e66\u672c\u5728\u6563\u53d1\u51fa\u9b54\u6cd5\u5149\u8292\u7684\u540c\u65f6\u6253\u5f00\u4e86\u3002"} +{"id": "8002724", "video_name": "02da313b-07ed-5795-9f28-bd589c5c1297", "text": "\u9ed1\u6697\u4e2d\u624b\u6301\u8721\u70db\u7684\u4eba\u3002"} +{"id": "4003252", "video_name": "d189bf61-7b1c-59fc-b2e4-5150020afc2e", "text": "\u63a5\u79cd\u75ab\u82d7\uff1f\u7136\u540e\u964d\u4f4e\u6211\u5728Milei\u5668\u5b98\u5e02\u573a\u4e0a\u7684\u6f5c\u5728\u8f6c\u552e\u4ef7\u503c\uff1f\u6211\u60f3\u4e0d\u662f\u8fd9\u6837\u3002"} +{"id": "7002094", "video_name": "31c6e689-3003-5dee-b487-d0994c396f39", "text": "\u65f6\u95f4\u6d41\u901d\u7684\u8ff7\u5e7b\u661f\u7cfb\uff0c\u6b23\u559c\u82e5\u72c2\uff0c\u6d41\u7545\u7684\u660e\u4eae\u8272\u5f69\uff0c\u5145\u6ee1\u6d41\u52a8\u611f\u548c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "3003346", "video_name": "d3e3f5de-07ba-5545-93a8-10c3be4bc3fe", "text": "\u4e00\u53ea\u8718\u86db\u5728\u82b1\u4e0a\u5411\u4e00\u4e2a\u6234\u7c89\u8272\u88d9\u5b50\u624e\u9a6c\u5c3e\u8fab\u7684\u5973\u5b69\u6325\u624b\u544a\u522b\uff0c\u753b\u9762\u8d85\u9ad8\u6e05\uff0c\u98ce\u683c\u7c7b"} +{"id": "4003286", "video_name": "42311100-8aca-5519-8653-8d5e64305e9e", "text": "\u9570\u5200\u4e0a\u7684\u6b7b\u795e\u5728\u6708\u4eae\u4e0a\u3002"} +{"id": "0003486", "video_name": "3e74a0a9-39cf-5b81-b852-2ee1e6f1b38f", "text": "\u63d0\u7c73\u3001\u838e\u62c9\u548c\u5a01\u65af\u514b\u65af\u4ee5\u4ed6\u4eec\u5bf9\u795e\u79d8\u548c\u8d85\u81ea\u7136\u7684\u70ed\u7231\u800c\u95fb\u540d\u3002\u4e00\u4e2a\u96fe\u8499\u8499\u7684"} +{"id": "2004768", "video_name": "5bc06738-3aae-5d26-8325-24b6de5fee19", "text": "\u5236\u4f5c\u4e00\u90e816:9\u5168\u9ad8\u6e05\u89c6\u9891\uff0c\u5185\u5bb9\u4e3a\u5728\u5348\u591c\u65f6\u5206\u79fb\u52a8\u7684UFO\u5c04\u51fb\u6fc0\u5149\u5e76\u6467\u6bc1\u57ce\u5e02\u3002"} +{"id": "2003184", "video_name": "4a7f34d9-8cec-545e-af0d-1bc39ae2503f", "text": "\u56fe\u7247\uff1aimages\uff087\uff09\u3002jpg\u80cc\u666f\u5927\u697c\u548c\u4e00\u8f86\u8dd1\u8f66\u7f8e\u4e3d\u73af\u5883\u3002"} +{"id": "4002984", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "\u8001\u4eba\u5728\u96e8\u6708\u4e2d\u8d70\u8def\u3002"} +{"id": "2006705", "video_name": "57f44c6f-0d04-5876-8da6-1c2b176cd00b", "text": "\u5851\u6599\u5a03\u5a03\u5728\u706b\u4e2d\u878d\u5316\uff0c\u5b83\u7684\u773c\u775b\u50cf\u6d3b\u7269\u4e00\u6837\u3002"} +{"id": "7003159", "video_name": "fc130c14-f027-55cf-ae54-2213716e33ef", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u8d70\u5728\u4e00\u4e2a\u5370\u5ea6\u65b9\u5757\u5370\u82b1\u5e8a\u5355\u7684\u5e8a\u8fb9\uff0c\u8c6a\u534e\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "8001054", "video_name": "63f03904-22ea-5c82-8d33-2e018360af24", "text": "\u4e00\u4e2a\u626d\u66f2\u7684\u73bb\u7483\u623f\u95f4\u91cc\uff0c\u6697\u7ea2\u8272\u7684\u9633\u5149\u5c04\u5165\u5176\u4e2d\u3002"} +{"id": "1005716", "video_name": "69264440-27c6-5e6f-be1d-7af934a09b08", "text": "\u5927\u96e8\u503e\u76c6\u800c\u4e0b\uff0c\u663e\u793a\u94f6\u884c\u5916\u5899\u4e0a\u6807\u6709\u94f6\u884c\u540d\u79f0\u7684\u6807\u724c\u3002"} +{"id": "1004942", "video_name": "5b65e98c-a288-5619-af84-c254dbed268b", "text": "\u76ae\u514b\u65af\u7684\u300a\u6c7d\u8f66\u603b\u52a8\u5458\u300b\u4e2d\uff0c\u6c7d\u8f66\u5728\u9a7e\u9a76\uff0c\u4eba\u4eec\u5728\u8857\u4e0a\u8d70\u52a8\u3002"} +{"id": "4003227", "video_name": "5673f48d-ce6b-544a-869c-c25e41fe2e49", "text": "\u5e8a\u4e0a\u7684\u72ee\u5b50\u559d\u7740\u51b0\u8336\u3002"} +{"id": "4004307", "video_name": "38f272c1-4312-5362-940b-7ebaf2330498", "text": "\u4e00\u4e2a\u88ab\u8fd0\u8f7d\u5728\u9a6c\u8f66\u4e0a\u7684\u9b54\u6cd5\u68ee\u6797\u91cc\u7684\u5927\u84dd\u8272\u9b54\u6cd5\u6c34\u6676\u3002"} +{"id": "2005524", "video_name": "37e9af12-de70-5cca-be78-1f88b2924749", "text": "\u4e00\u4e2a\u7537\u4eba\u624b\u91cc\u62ff\u7740\u624b\u673a\u5927\u558a\u3002"} +{"id": "0004053", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "\u4e00\u4f4d\u62e5\u6709\u9ec4\u8272\u7fc5\u8180\u7684\u5929\u4f7f\uff0c\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\u8fdb\u4e86\u4e00\u4e2a\u7c89\u7ea2\u8272\u7684\u8349\u5730\u3002"} +{"id": "7003677", "video_name": "ae6ef505-683a-5f69-a383-7060e99ce036", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u523a\u732c\u4ee5\u6f2b\u753b\u98ce\u683c\u5728\u5979\u7684\u6811\u5c4b\u91cc\u9192\u6765\u3002"} +{"id": "0005233", "video_name": "1710a265-e4d8-504a-a289-b4b7a42a26ba", "text": "\u6500\u5ca9\u8005\u6ed1\u843d\u5c71\u5761\uff0c\u843d\u5728\u5c71\u8c37\u7684\u4e00\u7247\u8349\u5730\u4e0a\u3002"} +{"id": "8002432", "video_name": "e076f4c9-c06d-5b69-b192-dd6811a91f2b", "text": "\u5316\u5b66\u5b9e\u9a8c\u5ba4\u91cc\u7684\u79d1\u5b66\u5bb6\u6b63\u5728\u8fdb\u884c\u67d0\u79cd\u57fa\u4e8e\u52a8\u6f2b\u6982\u5ff5\u827a\u672f\u7684\u5b9e\u9a8c\u3002"} +{"id": "3006510", "video_name": "7b2cb5fc-1bd5-5d6a-a344-cdc218f6f52e", "text": "\u725b\u4ed4\u62cd\u6444\u4e86\u739b\u96c5\u57ce\u7684\u573a\u666f\uff0c\u63cf\u7ed8\u4e86\u796d\u53f8\u4eec\u8fdb\u884c\u590d\u6742\u4eea\u5f0f\u7684\u573a\u666f\uff0c\u5e76\u914d\u4ee5\u620f\u5267\u6027\u7684\u7167\u660e\u3002"} +{"id": "3005307", "video_name": "2e678f8b-8ec2-5fa5-b9b9-71e878bf10d0", "text": "\u9ad8\u9ad8\u5174\u5174\u5730\u8d70\u8fc7\u4e66\u5e97\uff0c\u505c\u4e0b\u6765\u900f\u8fc7\u5e97\u94fa\u7684\u6a71\u7a97\u770b\u770b\u3002"} +{"id": "1006875", "video_name": "7da7603c-0de9-596d-ab49-fb7a4112b643", "text": "\u767d\u5154\u5403\u8349\u8393\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u81ea\u7136\u3002"} +{"id": "4003927", "video_name": "87953c09-ad6d-5987-acb0-cb6eb502af69", "text": "\u5728\u672b\u65e5\u73af\u5883\u4e2d\uff0c\u4e00\u540d\u8fd0\u52a8\u5458\u517c\u533b\u62a4\u4eba\u5458\u6b63\u5728\u9003\u79bb\u4e24\u53ea\u50f5\u5c38\u3002"} +{"id": "2003462", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "\u5df4\u897f\u9009\u624b\u96e8\u679c\u00b7\u5361\u5c14\u5fb7\u62c9\u8bfa\u5728\u4e1c\u4eac\u4e0e\u9a6c\u9f99\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "7004396", "video_name": "1b563743-bfe4-5cc2-a516-e77e3740ed87", "text": "\u8bb8\u591a\u5e26\u7740\u7fc5\u8180\u7684\u5929\u4f7f\u5728\u6674\u6717\u7684\u84dd\u8272\u4e91\u5f69\u4e2d\u98de\u7fd4\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u8bb8\u591a\u661f\u661f"} +{"id": "1006680", "video_name": "7a7d7f1a-4f2b-5d3f-a60b-d9deac713282", "text": "\u83ab\u8fea\u603b\u7406\u548c\u610f\u5927\u5229\u603b\u7406Melony\u5728\u623f\u95f4\u91cc\u8df3\u6d6a\u6f2b\u821e\u8e48\u3002"} +{"id": "1006360", "video_name": "747a9718-7859-56ea-92b0-dbb93964ef01", "text": "ChatGpt\u5c06\u83b7\u5f97\u4e00\u679a\u5168\u80fd\u6212\u6307\u3002"} +{"id": "0004155", "video_name": "043eb0c0-f8e3-5ff1-b6ad-d3d4f32bb85e", "text": "10\u5206\u949f\u7684\u82f1\u8bed\u52a8\u753b\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "8001556", "video_name": "9e7ce74d-36c9-52f0-8d64-e5b1309298c7", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u9e66\u9e49\u5750\u5728\u6811\u4e0a\uff0c\u5728\u767d\u5929\u5531\u6b4c\u5e76\u5c1d\u8bd5\u98de\u884c\u3002"} +{"id": "2006273", "video_name": "7671f807-5629-54b7-992b-b2c5c2105c60", "text": "\u672a\u6765\u4e3b\u4e49\u4eba\u5de5\u667a\u80fd\u89c6\u89c9\u548c\u963f\u5170\u00b7\u56fe\u7075\u7684\u601d\u8003\u3002"} +{"id": "0004316", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u730e\u4eba\u4e00\u8d77\u8d70\u3002"} +{"id": "8002751", "video_name": "33deed55-9116-5f3f-9b79-20d78b561442", "text": "\u64cd\u573a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\u7684\u94a2\u7b14\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002541", "video_name": "8b6496e2-f0d3-58f7-be5a-08ef05582ee0", "text": "\u4e00\u4e2a\u4eba\u65e9\u4e0a8\u70b9\u9192\u6765\uff0c\u611f\u89c9\u975e\u5e38\u75b2\u5026\u7684\u89c6\u9891"} +{"id": "8002685", "video_name": "155bac0a-13f5-5a46-a411-198955fdd1a9", "text": "\u963f\u62c9\u4e01\u4f4f\u5728\u90a3\u91cc\u3002\u4ed6\u6709\u4e00\u4e2a\u59d0\u59d0\u3002"} +{"id": "2006395", "video_name": "2b8633ef-817b-5459-810c-cc9e1efa282e", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u96e8\u4e2d\u7684\u573a\u666f"} +{"id": "4003325", "video_name": "4b1ea5bc-5d80-539b-98b7-8597ea037313", "text": "\u7f57\u5e03\u4e50\u601d\u7684\u65b0\u624b\u5728\u5546\u573a\u548c\u53f2\u8482\u6587\u5b87\u5b99\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "8001642", "video_name": "db8948f2-6677-5918-8976-9740234391d1", "text": "\u4e00\u4e2a\u89c6\u9891\u6dfb\u52a0\u4e86\u4e00\u4e2a\u624b\u63e1\u5668\u6765\u589e\u5f3a\u624b\u90e8\u529b\u91cf\u3002"} +{"id": "0006126", "video_name": "27068b6f-a3f2-5eae-b092-63de9a54acc2", "text": "\u62b5\u8fbe\u65b0\u4e16\u754c\u7684\u8239\u53ea"} +{"id": "3005689", "video_name": "eedb8f11-4bb0-5dd2-ac48-7f0883aa5e03", "text": "\u5362\u5361\u65af\u5728\u4e00\u4e2a\u80cc\u666f\u662f\u8d77\u4f0f\u5c71\u4e18\u7684\u5c0f\u9547\u4e0a\u3002\n\u5362\u5361\u65af\u662f\u4e00\u4e2a\u5e26\u7740\u597d\u5947\u8868\u60c5\u7684\u9752\u5c11\u5e74\u3002"} +{"id": "2003567", "video_name": "6c1fc693-7c68-5ac0-afe1-60522f318f1b", "text": "\u7537\u5b69\u5728\u623f\u95f4\u91cc\u9605\u8bfb\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\uff0c\u68a6\u5e7b\u822c\u7684\u5929\u7a7a\uff0c\u9ad8\u6e05\u30014K\u300116:9\u3002"} +{"id": "7003382", "video_name": "589f39df-cab8-5436-9280-9f0166d30c7a", "text": "\u5728\u68ee\u6797\u91cc\u5236\u4f5c\u72d0\u72f8\u3001\u5154\u5b50\u548c\u7334\u5b50\u8bf4\u8bdd\u7684\u52a8\u753b\uff0c\u65f6\u957f\u8d85\u8fc75\u79d2\u3002"} +{"id": "2006070", "video_name": "096448e3-bd2e-5272-bc3a-9a2a7d0fec03", "text": "\u673a\u5668\u79f0\u96c4\u7684\u4e16\u754c\u3002"} +{"id": "6002865", "video_name": "d119d9e4-1210-5635-88cc-e76d4775839a", "text": "\u4e24\u540d\u5de5\u4eba\u6b63\u5728\u5237\u623f\u5b50\u7684\u5899\u3002"} +{"id": "8002220", "video_name": "7016efc5-cc7c-57cf-9c82-b7b1767ebb7a", "text": "\u6050\u6016\u7684\u513f\u7ae5\u73b0\u573a\u89c6\u9891\u7684\u8499\u592a\u5947"} +{"id": "6002213", "video_name": "75c8fe3e-8657-53b9-976a-6fe2097182db", "text": "\u5728\u68ee\u6797\u4e2d\u7684\u4fa6\u63a2\u80cc\u666f"} +{"id": "3004235", "video_name": "6f7e7416-1b3e-55b5-a69e-285e7d358518", "text": "\u7f8e\u4e3d\u7684\u5c0f\u5973\u5b69\u7a7f\u7740\u6bd5\u4e1a\u888d\uff0c\u624b\u6301\u6bd5\u4e1a\u8bc1\u4e66\uff0c\u5feb\u4e50\u4e14\u52a8\u6f2b\u98ce\u683c\u3002\n\u9ad8\u8d28\u91cf\u30018K\u8d85\u9ad8\u6e05\u3001"} +{"id": "5001720", "video_name": "aa3aae9c-f288-5be9-a0b3-ee2459af40d1", "text": "\u4e00\u6bb5\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u84dd\u8272\u4e4c\u8d3c\u5728\u5f69\u8272\u73ca\u745a\u5468\u56f4\u6e38\u52a8\u3002\u4e00\u53ea\u84dd\u8272\u9f99\u867e\u5728\u84dd\u8272"} +{"id": "8003447", "video_name": "1f8fb6a2-c5e5-5c2b-8664-ca4f3e034125", "text": "\u4e00\u4e2a\u7c7b\u4eba\u673a\u5668\u4eba\u7684\u5934\u5728\u4e00\u4e2a\u9661\u5ced\u7684\u6c99\u4e18\u4e0a\u6eda\u843d\uff0c\u8fd9\u662f\u73b0\u5b9e\u7684\u3002"} +{"id": "7004657", "video_name": "8fa8e8b2-8f03-5b49-8a74-88c14aa15ab0", "text": "\u4e00\u53ea\u51f6\u731b\u7684\u82cd\u9e6d\u5728\u6c34\u4e2d\u884c\u8d70\uff0c\u98ce\u683c\u7c7b\u4f3c\u5bab\u5d0e\u9a8f\u7684\u52a8\u753b\u3002"} +{"id": "8002139", "video_name": "33df6948-d612-5b6b-8365-902a9fce3432", "text": "\u4e00\u4e2a\u5b8c\u6574\u7684\u73af\u5f62\u6d77\u6d0b\u4e16\u754c\u7684\u592a\u7a7a\u89c6\u56fe\uff0c\u6ca1\u6709\u5730\u7403\uff0c\u4e5f\u6ca1\u6709\u5149\u3002"} +{"id": "4002719", "video_name": "bf651b4c-9c19-52e7-99d1-419fa9e54c35", "text": "\u7537\u5973\u5728\u8c6a\u534e\u623f\u4ea7\u4e2d\u770b\u7740\u4e00\u90e8\u663e\u793a\u94bb\u77f3\u6d4f\u89c8\u5e94\u7528\u7684\u624b\u673a\u3002"} +{"id": "1006338", "video_name": "7402688d-21c0-5822-8dec-fddfd10d1768", "text": "\u7231\u540d\u4eba\u8df3\u821e\u89c6\u9891\uff1a\u5965\u5df4\u9a6c\u548c\u5fb7\u96f7\u514b\u3002"} +{"id": "3004300", "video_name": "f26c5873-730a-5870-b672-04719909ba37", "text": "\u7f8e\u4e3d\u7684\u6d77\u6ee9\u4e0b\u7740\u5927\u96e8\uff0c\u5f00\u7740\u82b1\uff0c\u8bb8\u591a\u9e1f\u513f\u5728\u98de\u7fd4\u3002"} +{"id": "2003744", "video_name": "a1d8650e-fc05-5331-8f38-7ebfa39a0b2f", "text": "KFC\u5e97\u94fa\uff0c\u540d\u5b57\u53f3\u4e0b\u89d2\u5199\u7740\u9648\u662f\u4e1a\u4e3b\u3002\n\nSource sentence: I need to go to the bank to withdraw some money. \n\u6211\u9700\u8981\u53bb\u94f6\u884c\u53d6\u4e00\u4e9b\u94b1\u3002"} +{"id": "4002922", "video_name": "9656d864-5503-5519-ae6e-615c3ce12594", "text": "\u6d41\u661f\u649e\u51fb\u4e86\u903c\u771f\u7684\u58c1\u708916:9\u3002"} +{"id": "8001208", "video_name": "d47e8b54-b25d-5365-872c-619571f67d6f", "text": "23\u5c81\u7684\u7f8e\u4e3d\u91d1\u53d1\u5973\u5b50\u5728\u591c\u665a\u7684\u6d77\u6ee9\u4e0a\u884c\u8d70\uff0c\u98ce\u96e8\u4ea4\u52a0\u7684\u591c\u665a\u3002"} +{"id": "5001048", "video_name": "b716e73a-3d85-5506-b07f-31ad737d6a54", "text": "\u7f8e\u5973\u4e91\u96c6\u7684\u6d77\u6ee9\u3002HDR\u3002\u903c\u771f\u3002"} +{"id": "0005776", "video_name": "21129149-e052-5082-892d-bf3f1db54f06", "text": "\u7f8e\u4e3d\u7684\u65e5\u672c\u5973\u5b69\u51c6\u5907\u597d\u6218\u6597\u4e86\u3002"} +{"id": "2003996", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "\u5bcc\u58eb\u5c71\u4e0e\u84dd\u5929\u548c\u4e00\u4e9b\u4e91\u3002"} +{"id": "6004625", "video_name": "bee99985-c173-50c9-88bf-71d0f8fde7cd", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u673a\u573a\u5411\u5bb6\u4eba\u544a\u522b\u65f6\u54ed\u6ce3\u7684\u9884\u544a\u7247"} +{"id": "2005247", "video_name": "0586a71c-665b-5498-af7e-925ed040eed2", "text": "\u5fae\u7b11\u662f\u6700\u597d\u7684\u793c\u7269\uff0c\u613f\u4f60\u83b7\u5f97\u6210\u529f\u7684\u795d\u798f\u3002"} +{"id": "3004921", "video_name": "a57c8036-f315-57f1-a083-3a7ad98717bf", "text": "\u57281500\u5e74\u7684\u771f\u5b9e\u6b27\u6d32\u57ce\u5e02\u91cc\uff0c\u9a7e\u9a76\u7740\u4e00\u8f86\u9ed1\u9a6c\u9a6c\u8f66\u3002"} +{"id": "0006531", "video_name": "2e2f360e-dd0e-5e2e-8294-0dc9c33dc5d8", "text": "\u559c\u5267\u6f14\u5458\u5728\u821e\u53f0\u4e0a\u8868\u6f14\uff0c\u611f\u5230\u60ca\u8bb6\u3002\n\nSource sentence: I am excited to go on vacation next week. \n\n\u6211\u5f88\u5174\u594b\u4e0b\u5468\u53bb\u5ea6\u5047"} +{"id": "2007956", "video_name": "0e5913f4-19b7-5d55-8185-6957bf580433", "text": "\u68ee\u6797\u4fef\u77b0\uff0c\u7f29\u653e\u5230\u68ee\u6797\u5e76\u63a5\u8fd1\u5730\u9762\u690d\u88ab\u76844K\u9ad8\u5206\u8fa8\u7387\u56fe\u50cf\uff0c\u5177\u67094K\u8be6\u7ec6\u7684\u81ea\u7136"} +{"id": "7003273", "video_name": "73b9adb1-c16e-5590-8b70-254dc508b3e6", "text": "\u53ea\u6709\u83e0\u841d\u4f5c\u4e3a\u914d\u6599\u7684\u53ef\u7231\u6bd4\u8428\u3002"} +{"id": "2007140", "video_name": "2145d044-de39-5ab6-a25a-cb68b6a8e49d", "text": "\u5728\u5f00\u7f57\u8857\u5934\u7684\u96c6\u4f53\u665a\u9910\u684c\u3002"} +{"id": "1003211", "video_name": "3b2bcc47-caac-52db-8908-09c6ec4d745f", "text": "\u6240\u7f57\u95e8\u738b\u88ab\u4ecb\u7ecd\u4e3a\u4e00\u4e2a\u660e\u667a\u7684\u7edf\u6cbb\u8005\uff0c\u53d7\u5230\u4eba\u6c11\u7684\u5c0a\u91cd\u3002"} +{"id": "3006643", "video_name": "f57a4d6e-6c8d-596c-98a3-b27ee76a9894", "text": "\u7206\u70b8\u5efa\u7b51\u7269\u8c37\u6b4c\u5b58\u50a8\u7167\u7247\u903c\u771f"} +{"id": "8002138", "video_name": "a61340a2-a85f-5e1e-8851-b84dfde3d349", "text": "\u94c1\u5668\u65f6\u4ee3\u7684\u5973\u4eba\u5728\u66b4\u98ce\u96e8\u4e2d\u8d70\u5411\u8fdc\u79bb\u8239\u53ea\u7684\u6d77\u6ee9\uff0c\u6d6a\u82b1\u98de\u6e85\uff0c\u90e8\u843d\u7eb9\u8eab\uff0c\u9ed1\u8272\u957f"} +{"id": "0006004", "video_name": "24dd9f95-c40f-563e-afe6-ae3df0c3a85b", "text": "\u4e00\u4f4d\u7a7f\u7740\u8d5b\u535a\u670b\u514b\u98ce\u683c\u673a\u5668\u4eba\u88c5\u7f6e\u7684\u672a\u6765\u4f8d\u58eb\uff0c\u5728\u4e0e20\u540d\u73b0\u5df2\u5012\u5728\u5730\u4e0a\u7684\u58eb\u5175\u640f\u6597"} +{"id": "0004629", "video_name": "0c482681-7057-595a-98fd-bf8666e17c3f", "text": "\u56fe\u50cf\u8f6c\u6362\u6210\u4e0d\u540c\u5f62\u5f0f\u7684\u8759\u8760\u4fa0\u3002"} +{"id": "3005340", "video_name": "23856097-a2ea-5619-9a50-fc02844c0860", "text": "\u4e00\u4e2a\u72c2\u70ed\u7684\u56fd\u738b\u5728\u91d1\u94b1\u96e8\u4e2d\u72c2\u821e\uff0c\u52a8\u753b\u7531Josan Gonzalez\u3001Akihiko Yoshida\u3001Laurie Greasley\u3001Takehiko Inoue"} +{"id": "7002882", "video_name": "874ff4b7-2ae0-5ddd-be0f-404417809ae5", "text": "\u89d2\u8272\u52a8\u753b\uff0c\u5e26\u624b\u673a\uff0c\u65c5\u6e38\u5230\u5730\u65b9\uff0c\u62cd\u7167\uff0c\u5feb\u4e50\u5730\u8df3\u821e\u3002"} +{"id": "2003034", "video_name": "af323d6c-07c4-5861-a98c-c2384d430a44", "text": "\u5f69\u8679\u517d\u586b\u6ee1\u4e86\u955c\u5c4b 90\u5e74\u4ee3\u5361\u901a\u3002"} +{"id": "2005646", "video_name": "e3f2223b-d4fb-5595-907e-0dbb85df8a39", "text": "\u96ea\u82b1\u98d8\u843d\u5728\u4e00\u5ea7\u822a\u62cd\u706b\u8f66\u7ad9\u3002"} +{"id": "8001299", "video_name": "76d3be0c-9d4c-515a-95d6-0df83a3d3274", "text": "\u8fc8\u514b\u5c14\u00b7\u57fa\u987f\u5728\u6708\u7403\u4e0a\u559d\u5564\u9152\u3002"} +{"id": "2004049", "video_name": "3dd2c47c-1a24-5439-80a2-dac0ef4a147b", "text": "\u4e00\u53ea\u5927\u7329\u7329\u5728\u5c71\u9876\u4e0a\u5582\u98df\u4e00\u7fa4\u5c0f\u6d77\u9a6c\u3002"} +{"id": "1003005", "video_name": "3722600d-3186-5063-95d0-5869cc0dc690", "text": "\u9c7c\u8089\u6c49\u5821\u5f00\u59cb\u642d\u914d\u9762\u5305\u5356\u3002"} +{"id": "7003504", "video_name": "33c6b259-fcc0-544f-b0c5-279ae60b075a", "text": "\u4e00\u53ea\u516c\u9e21\u548c\u4e00\u53ea\u732b\u6253\u67b6\u3002"} +{"id": "0006961", "video_name": "35eb117e-bbdb-5838-93bb-c86f89da8d0b", "text": "\u7ea2\u8272\u6cd5\u62c9\u5229\u5728\u51f9\u51f8\u4e0d\u5e73\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "0005849", "video_name": "22535da7-6914-5498-9316-db878d868f68", "text": "\u97e9\u00b7\u7d22\u6d1b\u7a7f\u8fc7\u8857\u9053\uff0c\u52a8\u6001\u6a21\u7cca\uff0c8K\uff0c\u7535\u5f71\u9759\u5e27\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u8be6\u7ec6\uff0c\u865a\u5e7b\u5f15"} +{"id": "1004479", "video_name": "52fec779-fa62-56f5-94f2-1ed7f54b4606", "text": "\u5236\u4f5c\u4e00\u90e8\u52a8\u753b\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u5e74\u8f7b\u5b69\u5b50\u6b63\u5728\u7761\u89c9\uff0c\u8bd5\u56fe\u4ece\u5e8a\u4e0a\u8d77\u5e8a\uff0c\u6668\u5149\u9010\u6e10\u7167\u5c04\u8fdb\u6765\uff0c\u4ed6"} +{"id": "4002981", "video_name": "24f663a8-80aa-51bd-8d73-05b514d375b2", "text": "\u7537\u5b69\u5728\u8f66\u5e93\u91cc\u521b\u9020\u4e86\u4e00\u4e9b\u786c\u5e01\u3002"} +{"id": "8003291", "video_name": "fcc8f0d2-c981-5324-8836-01dde2f2ba94", "text": "\u6c34\u4ed9\u82b1\u548c\u519c\u6c11\u5728\u5929\u7a7a\u4e0a\u65b9\u8df3\u821e\u3002 4k"} +{"id": "0004297", "video_name": "069c7fff-cecf-5c26-a0da-8271cd826db1", "text": "\u5149\u901f\u65c5\u884c\u4e2d\u7684\u5b87\u5b99\u98de\u8239\u7a7f\u8d8a\u4e00\u4e2a\u6709\u661f\u4e91\u80cc\u666f\u7684\u73af\u5f62\u884c\u661f\u3002"} +{"id": "6002569", "video_name": "92d5da95-0147-5527-8744-e43248fed406", "text": "\u63cf\u8ff0\u4f60\u6545\u4e8b\u7684\u80cc\u666f\u8bbe\u7f6e\u3002\u9b54\u6cd5\u68ee\u6797\u662f\u4e00\u4e2a\u600e\u6837\u7684\u5730\u65b9\uff1f\u4e3b\u89d2\u662f\u8c01\uff1f"} +{"id": "2005425", "video_name": "56397a1c-d83f-5c84-b8ad-0cfdc1d9535f", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7684\u7535\u5f71\u540d\u4e3a\u201cCago\u201d\uff0c\u300a\u9a6c\u8fbe\u52a0\u65af\u52a0\u7684\u4f01\u9e45\u300b\u4e2d\u7684\u79c1\u4eba\u5728\u9a6c\u6876\u4e0a\u5750\u7740\u5e76"} +{"id": "3004028", "video_name": "8e21178d-1f5e-5004-94f2-57305128f6a9", "text": "\u7334\u5b50\u548c\u65b0\u4ea4\u7684\u670b\u53cb\u5206\u4eab\u7b11\u58f0\u548c\u6545\u4e8b\u7684\u6b22\u4e50\u573a\u666f\u3002"} +{"id": "0004217", "video_name": "053d37b2-998f-5f9d-ad1d-6de6509ceba6", "text": "\u79d1\u5e7b\u7f8e\u56fd\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u6253\u814c\u83dc\u7403\u3002"} +{"id": "5001524", "video_name": "29356041-f757-56db-8da9-bd84ac43d0ad", "text": "\u4ea8\u5229\u00b7\u57fa\u8f9b\u683c\u5728\u5df4\u9ece\u8c08\u5224\u8d8a\u5357\u6218\u4e89\u505c\u706b\u3002"} +{"id": "3005984", "video_name": "8a888b06-0d8a-5281-968d-92b7398570c9", "text": "\u4e00\u4e2a\u7528\u50cf\u7d20\u753b\u6280\u672f\u5236\u4f5c\u7684\u65e5\u5f0f\u8857\u5df7\u52a8\u753b\uff0c\u7528\u9713\u8679\u706f\u7167\u4eae\uff0c\u6c1b\u56f4\u6c89\u95f7\u3001\u7535\u5f71\u5316\u3002"} +{"id": "6004066", "video_name": "028cc20c-76cd-51b2-a463-e71015d14d05", "text": "\u52b3\u65af\u83b1\u65af\u9a76\u5411\u8c6a\u534e\u7684\u5df4\u9ece\u9152\u5e97\u3002"} +{"id": "5001756", "video_name": "3c021718-cf1f-5a5d-a895-fe589a3ccb6a", "text": "Source sentence: \u9cb8\u9c7c\u98de\u7fd4\uff0c\u6c34\u6bcd\u6e38\u6cf3\uff0c\u6d41\u661f\u5212\u8fc7\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003451", "video_name": "98c4f8e7-1180-5eb0-bc94-220d88336c39", "text": "\u4e00\u4e2a\u6709\u8fd9\u4e9b\u7279\u5f81\u7684\u5e74\u8f7b\u4eba\uff1a"} +{"id": "6004975", "video_name": "61ab4122-730e-5fc7-b978-905440e053b9", "text": "\u9152\u74f6 \u4fe1\u606f\uff1a\u5494\u5693\u58f0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005787", "video_name": "16272bc3-0dd8-5dce-9eab-b8b3be4379f5", "text": "\u4e00\u4e2a\u62e5\u6709\u7c89\u8272PROXFON\u6807\u5fd7\u7684\u5927\u578b\u5546\u4e1a\u5efa\u7b51\u7684\u65f6\u95f4\u52a0\u901f\u6444\u5f71\u3002"} +{"id": "7003402", "video_name": "87b1bb2d-43bf-5065-96aa-a20a456fdeb5", "text": "\u5728\u4e00\u5bb6\u670d\u88c5\u5e97\uff0c\u4e00\u540d\u5973\u5b50\u8d2d\u4e70\u4e86\u4e00\u4ef6\u8863\u670d\u3002"} +{"id": "2003792", "video_name": "b0078a0f-a79c-599a-aa8c-13e02480715a", "text": "\u4e00\u53ea\u8702\u9e1f\u5728\u6811\u6797\u4e2d\u5012\u98de\u7684\u89c6\u9891\uff0c6\u79d2\u3002"} +{"id": "2003732", "video_name": "3ecb894b-843f-5695-825b-d8b549a2a104", "text": "\u624b\u638c\uff0c\u6bcf\u53ea\u624b\u6709\u4e94\u4e2a\u624b\u6307\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u624b\u91cc\u62ff\u7740\u4e00\u6839\u7ebf\uff0c\u65e5\u672c\u6f2b\u753b\u98ce\u683c\uff0c\u9ed1\u767d\u7ebf\u6761\uff0c\u6f2b\u753b\uff0c\u65e5\u672c"} +{"id": "0004363", "video_name": "07d0dcde-2476-557a-a7a3-64f27d42975e", "text": "\u4eba\u4eec\u5728\u73bb\u5229\u7ef4\u4e9a\u6b96\u6c11\u57ce\u5e02\u4e2d\u884c\u8d70\u3002\u4fe1\u606f\uff1a\u62c9\u5df4\u65af\u3002 (\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53)"} +{"id": "1004223", "video_name": "4e2317c7-1ef9-55fb-8636-cb543e89a5d1", "text": "\u9c8d\u52c3\u00b7\u9a6c\u5229\u73b0\u573a\u6f14\u5531\u7684\u7c98\u571f\u52a8\u753b\u3002"} +{"id": "4003975", "video_name": "df518e0e-7351-53d2-9faa-3520ad885116", "text": "\u672a\u6765\u7684\u673a\u5668\u4eba\u4e0e\u4eba\u7c7b\u4ea4\u8c08\uff0c\u62bd\u8c61\u7684\u80cc\u666f\u4e0b\uff0c\u5171\u540c\u521b\u9020\u66f4\u7f8e\u597d\u7684\u672a\u6765\u3002"} +{"id": "1005788", "video_name": "6a8601ba-585c-5c25-9e32-a3c1b7c8ae3b", "text": "\u7528\u751f\u52a8\u8bd7\u610f\u7684\u8bed\u8a00\uff0c\u521b\u4f5c\u4e00\u4e2a\u91d1\u8272\u65f6\u523b\u7684\u65e5\u843d\u573a\u666f\u7f8e\u5b66\u63cf\u5199\uff0c\u5305\u62ec\u9e1f\u513f\u3001\u9ec4\u8272\u8c03\u3001\u6811\u6728\u548c"} +{"id": "4003554", "video_name": "4a519f15-3326-595b-ba5c-fc5e942d3e52", "text": "\u5c0f\u732b\u4e0e\u5176\u4ed6\u8857\u5934\u732b\u73a9\u800d\u4e92\u52a8\uff0c\u5de7\u5999\u5730\u5c55\u793a\u4e86\u5979\u7684\u80fd\u529b\u3002"} +{"id": "7002439", "video_name": "d454b1db-ff0b-5025-82dc-42246fa348ea", "text": "\u5c0f\u7537\u5b69\u897f\u8499\u7a7f\u7740\u84dd\u8272T\u6064\u548c\u77ed\u88e4\uff0c\u5728\u94c1\u8def\u8f68\u9053\u4e0a\u6551\u52a9\u4e00\u4f4d\u8001\u592a\u592a\uff0c\u53d1\u73b0\u5979\u662f"} +{"id": "4004274", "video_name": "491b6db4-7f0d-51d9-a556-fb72410d6e47", "text": "\u5728\u4e00\u4e2a\u6f2b\u753b\u822c\u7684\u6c99\u6ee9\u4e0a\uff0c3D\u5361\u901a\u513f\u7ae5\u56f4\u6210\u4e00\u4e2a\u5706\u5708\u8df3\u821e\uff0c\u80cc\u666f\u4e2d\u8f7b\u8f7b\u5730\u54cd\u8d77\u6d77"} +{"id": "0005606", "video_name": "1de55e82-a5a7-5a02-86b5-469b135c6614", "text": "\u75283D\u89d2\u8272\u5448\u73b0\uff0c\u4e00\u4e2a\u5b66\u751f\u5750\u5728\u6559\u5ba4\u7a97\u8fb9\uff0c\u770b\u7740\u8d70\u8fc7\u7a97\u5916\u7684\u540c\u5b66\u4eec\u3002"} +{"id": "4004558", "video_name": "a8e4ee28-287e-5a84-a30e-89935c151c4a", "text": "\u5b69\u5b50\u4eec\u62c9\u7740\u5927\u800c\u8272\u5f69\u6591\u6593\u7684\u8718\u86db\uff0c3D\u3002"} +{"id": "3004945", "video_name": "ac7c0556-310f-5f51-9fbc-35d7c010c8c1", "text": "\u4e00\u53ea\u5e26\u7740\u592a\u7a7a\u5934\u76d4\u7684\u864e\u6591\u732b\u5728\u592a\u7a7a\u4e2d\uff0c3D\u52a8\u753b"} +{"id": "1003690", "video_name": "4402b640-1a5d-5026-bec7-924941572314", "text": "\u6765\u81ea\u79d8\u9c81\u7684\u56db\u4f4d\u8428\u6ee1\u5728\u5df4\u9ece\u8dd1\u6b65\u3002"} +{"id": "4004064", "video_name": "42fc8ead-7bf3-5cc4-95ad-3fc0e17f85d4", "text": "\u6a31\u82b1\u5728\u9644\u8fd1\u7684\u516c\u56ed\u548c\u5176\u4ed6\u5b69\u5b50\u4eec\u4e00\u8d77\u6253\u6392\u7403\u3002"} +{"id": "0004588", "video_name": "0b9e656e-ffe3-5cc8-ac98-48d60ae87970", "text": "19\u4e16\u7eaa\u7684\u4e00\u4e2a\u53e4\u8001\u57ce\u5e02\uff0c\u6240\u6709\u623f\u5c4b\u90fd\u4eae\u8d77\u6765\u4e86\uff0c\u52a8\u611f\u5341\u8db3\u3002"} +{"id": "8002455", "video_name": "b74ffb27-f907-5af8-8ae6-e31398b542a7", "text": "\u6211\u9700\u8981\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u673a\u5668\u4eba\u80f8\u90e8\u6253\u5f00\u5e76\u51fa\u73b0\u6587\u5b57\u3002"} +{"id": "6003427", "video_name": "fa9b7f0d-f51d-5810-a4a9-94d3a5bb50aa", "text": "\u6208\u58c1\u6c99\u6f20\u7684\u67af\u6b7b\u690d\u7269\u30029:16\u3002"} +{"id": "0006378", "video_name": "2b6e3252-d6b8-521f-a022-d257303446e6", "text": "\u4e00\u4e2a\u7537\u5b69 Pari \u8bf4\u4f60\u5c06\u6765\u4f1a\u6210\u4e3a\u4e00\u4e2a\u4f1f\u5927\u7684\u4fdd\u62a4\u8005\uff0c\u6709\u9b54\u6cd5\u7684\u3002"} +{"id": "3004552", "video_name": "cc9843a4-914a-5763-ac72-7eca46b68d8f", "text": "\u672a\u6765\u57ce\u5e02\u7684\u4fef\u77b0\u89c6\u89d2\uff0c\u7f13\u6162\u5730\u5728\u5176\u4e0a\u65b9\u626b\u89c6\u3002\u9ed1\u6697\uff0c\u5e26\u6709\u6807\u5fd7\u3001\u7535\u5b50\u8bbe\u5907\u7b49\u4eba\u5de5\u5149\u6e90\u3002\u7535\u5f71"} +{"id": "8003321", "video_name": "b8267150-738c-5fd1-a3b8-6b23393069ab", "text": "\u4e00\u8258\u5de8\u5927\u7684\u6e38\u8f6e\u6b63\u5728\u6d77\u4e0a\u822a\u884c\u3002\u6d77\u4e0a\u6ce2\u6d9b\u6c79\u6d8c\uff0c\u96e8\u4e0b\u5f97\u5f88\u5927\u3002"} +{"id": "7002796", "video_name": "284409ac-9499-5463-acff-3794e3dae6ec", "text": "\u4f20\u9001\u5e26\u4e0a\u7684\u7537\u5973\u98de\u884c\u5458\u6a21\u578b"} +{"id": "0006806", "video_name": "3366a5ee-7df6-5b1e-823f-43efb8a5d57b", "text": "1980\u5e74\u4ee3\u7684\u8d5b\u535a\u670b\u514b\u3002\u4ecb\u4e8e\u673a\u5668\u4eba\u548c\u4eba\u7c7b\u4e4b\u95f4\u3002\u4e00\u4e2a\u771f\u6b63\u7684\u6f2b\u753b\u4e2d\u6027\u611f\u7684\u5973\u4eba\u3002"} +{"id": "1005911", "video_name": "6c9db695-5926-5b9c-bf99-262bf2c236cc", "text": "\u6d77\u519b\u84dd\u8272\u80cc\u666f\uff0c\u9713\u8679\u84dd\u526a\u5f71\uff0c\u4e00\u4e2a\u677f\u7403\u6295\u624b\u8dd1\u6b65\u8d77\u52a8\uff08\u8fd1\u666f\u6444\u50cf\u5934\uff09\u3002"} +{"id": "4003151", "video_name": "54ce5c3d-5b09-56e0-a266-3e29c5ee8264", "text": "\u4e00\u4e2a\u7537\u4eba\u62b1\u7740\u4e00\u4e2a\u5973\u5b69\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "6003070", "video_name": "8ad9357e-38ba-5bd0-9429-2ddf6a1bc3b4", "text": "\u4e00\u4e2a\u957f\u5f97\u50cf\u6c64\u59c6\u00b7\u6c49\u514b\u65af\u7684\u7537\u4eba\u62b1\u8d77\u4e00\u4e2a\u957f\u5f97\u50cf\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u7684\u5973\u5b69\u5e76\u5927\u58f0\u558a\u53eb\u3002"} +{"id": "1005867", "video_name": "6bfbdf21-1f46-5f0b-8f85-8042c70cb766", "text": "\u6c34\u7f13\u7f13\u6d41\u52a8\uff0c\u661f\u661f\u7f13\u7f13\u79fb\u52a8\uff0c\u661f\u661f\u95ea\u8000\u3002"} +{"id": "0006349", "video_name": "2b0ddf53-4399-5140-82fb-ac6af6d58119", "text": "\u77ed\u8dd1\u9009\u624b\u7ad9\u5728\u8d77\u8dd1\u7ebf\u4e0a\uff0c\u51c6\u5907\u5f00\u59cb\u6bd4\u8d5b\u3002"} +{"id": "6003699", "video_name": "fe422c1f-bfe4-5662-be68-47e4430b3b4a", "text": "\u4e00\u4e2a\u51f6\u731b\u7684\u9f99\u7a81\u7136\u7741\u5f00\u773c\u775b\u3002 \n\nSource sentence: The sun sets behind the mountains. \n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u4e86\u3002"} +{"id": "2007907", "video_name": "4ea8efea-0ffc-5235-bdc8-ceb6e0d76f12", "text": "\u6c14\u7403\u5728\u5929\u82b1\u677f\u9644\u8fd1\u4e0a\u4e0b\u6f02\u6d6e\u3002"} +{"id": "3003480", "video_name": "3f463057-9ede-5a3b-a63a-4aa90462900d", "text": "\u4e00\u4f4d\u8457\u540d\u7537\u5b50\u6b63\u5728\u529e\u516c\u5ba4\u6253\u5b57\u3002"} +{"id": "3003504", "video_name": "36e0ce4b-edca-5403-8a0d-a0cdf42a717d", "text": "\u72e9\u730e\u8005\u6b63\u5728\u4e3a\u72ee\u5b50\u8bbe\u7f6e\u9677\u9631\uff0c\u800c\u72ee\u5b50\u6b63\u5728\u8bd5\u56fe\u5728\u8001\u9f20\u7684\u5e2e\u52a9\u4e0b\u9003\u8131\u3002"} +{"id": "7004653", "video_name": "5e8523b8-3d56-5c7f-b442-1a5ea4d09557", "text": "\u4e00\u5e45\u8ff7\u5e7b\u7684\u65e5\u843d\u753b\u9762\u548c\u4e00\u652f\u4e09\u4eba\u6447\u6eda\u4e50\u961f\u5728\u4e0b\u9762\u6fc0\u70c8\u6f14\u594f\u3002"} +{"id": "1005629", "video_name": "6777204d-1f5b-58c9-b6ea-c96a8b270b6a", "text": "\u201cHot Mic\u201d\u64ad\u5ba2\u7684\u6807\u5fd7\u662f\u5e26\u6709\u9ea6\u514b\u98ce\u3001\u8fa3\u6912\u5409\u7965\u7269\u548c\u706b\u7130\u73af\u7ed5\u7684\u6807\u5fd7\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "4002980", "video_name": "81429703-0c9e-50eb-994b-d5d4c8a59d36", "text": "\u4e00\u6761\u5bbd\u9614\u7684\u9a6c\u8def\u4e0a\u4e24\u8f86\u8f66\u76f8\u649e\uff0c\u903c\u771f\u3002"} +{"id": "7002494", "video_name": "a7a4defa-f175-562d-be21-cb5e25a7185e", "text": "\u6211\u6709\u4e00\u5f20\u8db3\u7403\u8fd0\u52a8\u5458\u5e86\u795d\u8fdb\u7403\u7684\u7167\u7247\u3002"} +{"id": "1004602", "video_name": "55b10613-fe6d-5403-b1ef-afdd854f422e", "text": "\u7535\u5f71\u7ed3\u675f\u65f6\uff0c\u6211\u9700\u8981\u5b83\u663e\u793a\u201cfin.\u201d\uff0c\u5e76\u88ab\u70df\u96fe\u5305\u56f4\uff0c\u968f\u7740\u70df\u96fe\u6d88\u6563\u800c\u6d88\u5931\u3002"} +{"id": "3004700", "video_name": "63eedc9e-5b82-569b-b6f9-8c625003f5f3", "text": "\u7f8e\u56fd\u548c\u4fc4\u7f57\u65af\u4e4b\u95f4\u7684\u6218\u4e89\uff0c\u4e4c\u514b\u5170\u603b\u7edf\u6b8b\u9177\u640f\u6597\uff0c1\uff1a1\uff0c\u7092\u4f5c\u73b0\u5b9e\u3002"} +{"id": "2005718", "video_name": "ef0c29e6-12b6-5e10-8dcd-fcaf23c11392", "text": "3D\u89d2\u8272\uff0c3D\u52a8\u753b\uff0c\u6e38\u620f\u5973\u5b69\uff0c\u8033\u673a\uff0c\u6f02\u4eae\u7684\u9762\u5bb9\uff0c\u7f8e\u4e3d\u7684\u5507\u5f62\uff0c\u5fae\u7b11\u7740\uff0c\u624b\u6bd4V\u5b57\u578b\uff0c\u773c"} +{"id": "0003918", "video_name": "45b7e1d5-d84e-5fbb-b050-1e69882c8850", "text": "\u514b\u91cc\u65af\u6c40\u00b7\u65af\u56fe\u5c14\u7279\u626e\u6f14\u7684\u8d85\u7ea7\u82f1\u96c4\u8d1d\u62c9\u00b7\u65af\u4e07\u5728\u52a8\u4f5c\u7535\u5f71\u4e2d\u6234\u7740\u77ed\u53d1\u4e0e\u5438\u8840"} +{"id": "7004458", "video_name": "e0be6814-519b-5abb-b4bf-0c80fc4075ee", "text": "\u6355\u6349\u5361\u901a\u5fc3\u810f\uff0c\u7ec6\u81f4\u5165\u5fae\u5730\u5448\u73b0\uff0c\u4ee5\u8d85\u73b0\u5b9e\u548c\u903c\u771f\u7684\u65b9\u5f0f\u878d\u5316\u3002"} +{"id": "7002770", "video_name": "bb4d9c67-8b49-56fa-b80d-ea6b6a304bbe", "text": "\u7537\u4eba\u5728\u81ea\u5df1\u7684\u82b1\u56ed\u91cc\u79cd\u82b1\u7684\u5168\u666f\u753b\u9762\uff0c\u5168\u5c4f\u6bd4\u4f8b9:16\u3002"} +{"id": "1006825", "video_name": "7cd9d9d6-c38a-577d-9f5c-7190bd9029b9", "text": "\u4f7f\u7528\u513f\u7ae5\u559c\u6b22\u7684\u5361\u901a\u4eba\u7269\u6216\u52a8\u7269\u6765\u5438\u5f15\u4ed6\u4eec\u7684\u6ce8\u610f\u529b\u3002\u5728\u7b80\u77ed\u7684\u4ecb\u7ecd\u89c6\u9891\u4e2d\u4f7f\u7528\u5e73\u9759\u6109\u60a6\u7684"} +{"id": "4003042", "video_name": "4b18129e-264b-5f0b-b4b6-ee8aeb769157", "text": "\u300a\u9b54\u6212\u300b\u4e2d\u7684\u7cbe\u7075\u5728\u70ed\u5e26\u68ee\u6797\u4e2d\u5438\u70df\uff0c\u975e\u5e38\u903c\u771f\uff0c4K\u3002"} +{"id": "2007621", "video_name": "addc4af7-1c03-550d-a2f9-35e13b392868", "text": "\u6c14\u573a\u3002\u5728\u5965\u8389\u8389\u4e9a\u7684\u5b58\u5728\u4e0b\uff0c\u5176\u4ed6\u73ab\u7470\u66f4\u52a0\u8302\u76db\uff0c\u5f00\u82b1\u66f4\u52a0\u4e30\u5bcc\uff0c\u53d8\u5f97\u66f4\u52a0\u5145\u6ee1"} +{"id": "4004442", "video_name": "856a07eb-1c98-5185-a105-39f82f411b2c", "text": "\u5728\u90a3\u4e2a\u51b0\u51b7\u7684\u623f\u95f4\u91cc\uff0c\u5bc2\u9759\u548c\u5b64\u72ec\u4e2d\uff0c\u90a3\u4f4d\u62e5\u6709\u91d1\u8272\u957f\u53d1\u7684\u7537\u4eba\u610f\u8bc6\u5230\u8d2a\u5a6a\u662f\u591a"} +{"id": "7002902", "video_name": "453b5173-654a-573d-b5b1-558577a801d1", "text": "\u4e24\u53ea\u732b\u6b63\u5728\u8ba8\u8bba\u57ce\u5e02\u5efa\u8bbe\u548c\u963f\u4f2f\u7684\u8863\u670d\u3002"} +{"id": "2005502", "video_name": "8bcd6b7b-3ebf-5455-b2db-b3e2c4bde4d8", "text": "\u5e8a\u5934\u67dc\u4e0a\u6709\u4e00\u676f\u6c34\uff0c\u4e00\u4fa7\u653e\u4e86\u4e00\u9897\u7ea2\u8272\u836f\u7247\uff0c\u53e6\u4e00\u4fa7\u653e\u4e86\u4e00\u9897\u84dd\u8272\u836f\u7247\u3002"} +{"id": "1004481", "video_name": "530403a1-6119-5846-9fad-1a355d95e92d", "text": "\u4e00\u6761\u957f\u7740\u4eba\u8138\u7684\u9c7c\u6e38\u8fc7\u4e86\u6444\u50cf\u673a\u3002"} +{"id": "7004333", "video_name": "6320877a-ad3a-5bf3-8a12-d76d0c92f45c", "text": "\u521b\u9020\u4e00\u5e45\u58ee\u89c2\u7684\u65e5\u843d\u4e0e\u5b81\u9759\u6e56\u9762\u7684\u753b\u9762\uff0c\u753b\u9762\u4e2d\u4e00\u4e2a\u4eba\u5728\u5cb8\u8fb9\u51a5\u60f3\uff0c\u53cd\u601d\u751f\u547d\u4e4b\u7f8e\u3002"} +{"id": "2007573", "video_name": "1e616199-5eeb-5843-a7b7-d63b59063afb", "text": "\u5728\u6d77\u4e0a\u4e0b\u96e8\u7684\u60c5\u51b5\u4e0b\uff0c\u5236\u4f5c\u4e00\u90e8\u9ad8\u8d28\u91cf\u3001\u957f\u65f6\u95f4\u7684\u89c6\u9891\u3002"} +{"id": "6004140", "video_name": "f44480bc-44d6-5b81-9c34-1aa461c16b85", "text": "\u76f8\u673a\u56f4\u7ed5\u7740\u4e00\u53ea\u53ef\u7231\u7684\u5154\u5b50\u62cd\u6444\uff0c\u4f7f\u7528\u4e86\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u53ef\u4ee5\u8fdb\u884c360\u5ea6\u65cb\u8f6c\u3002"} +{"id": "2005419", "video_name": "fce78506-65f6-5738-9bf4-e714ca608a59", "text": "\u91ce\u517d\u6d3e\u5efa\u7b51\uff0c\u4e2d\u666f\uff0c\u7ec6\u8282\uff0c\u9510\u5229\uff0c50\u6beb\u7c73\u3002"} +{"id": "0004968", "video_name": "12737e56-2ef1-5187-b6a3-90189521917a", "text": "Source sentence: \u6b27\u6d32\u5854\u5728\u9e7f\u7279\u4e39\u5012\u584c\u4e86\uff0c\u55b7\u6c14\u5f0f\u6218\u6597\u673a\u5411\u6b27\u6d32\u5854\u53d1\u5c04\u5bfc\u5f39\u3002"} +{"id": "3004683", "video_name": "113aba59-31a7-5a13-a8de-6e98ca45e6f4", "text": "\u7ae5\u8bdd\u5361\u901a\uff1a\u5ead\u9662\u91cc\u76db\u5f00\u7740\u4e00\u5e74\u56db\u5b63\u90fd\u4e0d\u4f1a\u51cb\u8c22\u7684\u8272\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u30024K"} +{"id": "6004054", "video_name": "140bbaa4-dd35-51bf-a102-6b48bbc64880", "text": "\u5173\u4e8e\u4eba\u7c7b\u601d\u7ef4\u9886\u57df\u7684\u672a\u77e5\u9886\u57df\uff0c\u4ee5\u5f15\u4eba\u5165\u80dc\u7684\u9648\u8ff0\u5f00\u573a\u3002"} +{"id": "0006345", "video_name": "2af71c94-8f2f-59b2-850e-2995f53d67e3", "text": "\u65cb\u8f6c\u7740\u6ee1\u8f7d\u5b69\u5b50\u4eec\u7684\u8001\u5f0f\u6728\u9a6c\u3002"} +{"id": "1006810", "video_name": "7cad8592-ffd6-576a-8d27-c62ac7b5db03", "text": "\u4e2d\u4e16\u7eaa\u6218\u58eb\u8eba\u5728\u4ed6\u7684\u80cc\u4e0a\uff0c\u8eab\u540e\u662f\u57ce\u5821\u3002\u84dd\u5929\u4e2d\u6709\u98de\u9f99\u3002"} +{"id": "8001439", "video_name": "74d4cc4d-d10a-5b63-8a4e-92e5bba4f5ca", "text": "\u5f53\u5979\u4e08\u592b\u51fa\u5dee\u51e0\u5929\u65f6\uff0c\u4e00\u540d\u5df2\u5a5a\u5973\u5b50\u88ab\u4e0b\u5c5e\u5f3a\u8feb\u4e86\u51e0\u5929\u3002"} +{"id": "4004754", "video_name": "b861fed7-f160-59c4-9539-e82022e05358", "text": "\u4e00\u4e2a\u5de8\u578b\u673a\u5668\u4eba\u7a81\u7136\u8f6c\u8eab\u3002"} +{"id": "4002187", "video_name": "370df59c-d264-58aa-a30f-c7d8d6920e13", "text": "\u79d1\u5b66\u5bb6\u5728\u5b9e\u9a8c\u5ba4\u4e2d\u521b\u9020\u4e86\u4e00\u4e2a\u5e73\u884c\u5b87\u5b99\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u4e3a\u57fa\u7840\u3002"} +{"id": "7002790", "video_name": "ad03dac7-9fd7-5fa7-ae6e-aa3771bcb801", "text": "\u827a\u672f\u5bb6\u5728\u5899\u4e0a\u753b\u753b\u3002"} +{"id": "0003354", "video_name": "3c0d64cd-d60c-5600-becd-d7e5c5129701", "text": "\u6770\u4f5c\uff0c4K\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u732b\u8fd0\u52a8\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004063", "video_name": "68bc2dfe-728a-593c-b183-d26e632f0324", "text": "\u7537\u5b69\u548c\u5973\u5b69\u4e4b\u95f4\u6709\u6c7d\u8f66\u7684\u53cb\u8c0a\n\nSource sentence: I am learning Chinese language and culture."} +{"id": "2007432", "video_name": "5524b27b-a7ac-587a-9f13-83128b38e02d", "text": "\u53ef\u7231\u7684\u526a\u5200\u821e\u8df3\u7740\u563b\u54c8\u97f3\u4e50\u3002"} +{"id": "0003458", "video_name": "3de2e04f-1b51-52f7-9af0-8d9d8a2271b2", "text": "\u4e00\u4e2a\u4e66\u8bc4\u7247\u6bb5\u7684\u526a\u8f91\uff1a\u4e00\u4e2a\u4e3b\u6301\u4eba\u5750\u5728\u8212\u9002\u7684\u9605\u8bfb\u89d2\u843d\u91cc\uff0c\u70ed\u60c5\u5730\u8ba8\u8bba\u6700\u8fd1\u7684\u65b0\u4e66\u3002"} +{"id": "5001648", "video_name": "3da17758-70aa-58ef-8eb9-63bf40c47b70", "text": "\u5386\u53f2\u4e0a\u7684\u6469\u6d1b\u54e5\u52c7\u58eb\u7387\u9886\u7740\u6469\u6d1b\u54e5\u519b\u961f\u4ece\u6469\u6d1b\u54e5\u524d\u5f80\u8036\u8def\u6492\u51b7\uff0c\u8def\u4e0a"} +{"id": "8002118", "video_name": "ac531d77-9d99-5e99-b622-97c69361d339", "text": "\u4e00\u53ea\u52a8\u753b\u72d7\uff0c\u70df\u82b1\u7efd\u653e\uff0c\u80cc\u666f\u5929\u7a7a\u4e0a\u6709\u4e00\u4e2a\u6587\u5b57\u6807\u8bc6\uff0c\u65b0\u5e74\u5feb\u4e50\u3002"} +{"id": "3003640", "video_name": "40f119a7-c463-519f-9d57-3dfb99e90c55", "text": "\u4e00\u672c\u5927\u53e4\u8001\u7684\u4e66\u653e\u5728\u6728\u5236\u684c\u5b50\u4e0a\u3002\u7535\u5f71\u822c\u76844K\u7f29\u653e\u3002"} +{"id": "7004591", "video_name": "467bdc6f-663a-553c-bbc1-896834597c67", "text": "\u7ea2\u8272\u58a8\u6c34\u6ef4\u843d\u5230\u767d\u8272\u80cc\u666f\u7684\u6c34\u69fd\u4e2d\u3002"} +{"id": "3004594", "video_name": "3e2d5721-d1f5-54d6-ac29-933b3a2392c9", "text": "\u72ee\u5b50\u91cc\u5965\u53d1\u51fa\u5fae\u5f31\u7684\u543c\u53eb\uff0c\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "2005584", "video_name": "5714bfb4-cb77-59dd-b890-397363fdc47b", "text": "\u5728\u8db3\u7403\u573a\u7684\u7403\u573a\u4e2d\u592e\u7ad9\u7740\u4e00\u540d\u5b87\u822a\u5458\uff0cEtam Cru\u3002"} +{"id": "2007056", "video_name": "bafb2c35-3d64-598e-965f-103c299c8f93", "text": "\u521b\u9020\u4e00\u5e45\u5f62\u8c61\uff0c\u6982\u62ec\u4e86\u4ece\u6291\u90c1\u75c7\u7684\u6df1\u5904\u83b7\u5f97\u529b\u91cf\u548c\u7597\u6108\u7684\u603b\u4f53\u4fe1\u606f\uff0c\u63cf\u8ff0David\u5728\u6323\u624e\u4e2d"} +{"id": "2007989", "video_name": "d0951d05-30c3-52db-b59f-1711d32e6db2", "text": "\u4e00\u4e2a\u6c89\u601d\u7740\u81ea\u5df1\u8fc7\u53bb\u9519\u8bef\u7684\u7537\u4eba\uff0c\u5fc3\u60c5\u5fe7\u90c1\u3002"} +{"id": "4003842", "video_name": "667fa2f8-a9b9-5b75-bb1e-6e2122a96ae6", "text": "\u82f1\u56fd\u6700\u7f8e\u7684\u5973\u4eba"} +{"id": "2003024", "video_name": "a4ef81c7-de99-5669-996b-fb0c8fd09bc7", "text": "\u5927\u9e21\u5de2\u91cc\uff0c\u85cf\u5728\u7a3b\u8349\u4e2d\u7684\u662f\u4e00\u9897\u534e\u4e3d\u7684\u91d1\u86cb\uff0c\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5728\u5b83\u8eab\u4e0a\uff0c\u95ea\u95ea"} +{"id": "3003077", "video_name": "5ad00027-cb5b-5050-8578-3f271e47f00b", "text": "\u5206\u5f62\u65cb\u98ce\u7684\u91cf\u5b50\u6a21\u7cca\uff0c\u8d85\u7ea7\u8be6\u7ec6\uff0c\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u3002"} +{"id": "8001843", "video_name": "3b9bc5fe-b5fc-5a15-9010-c7f7bc3c94f9", "text": "\u4e00\u6279\u7ef4\u4eac\u957f\u8239\u7a7f\u8fc7\u8584\u96fe\u524d\u6765\u62a2\u52ab\u3002"} +{"id": "8003099", "video_name": "6e85aa7e-f7e4-5878-b58b-4dfa408467b2", "text": "\u4e00\u4f4d\u62e5\u6709\u9ec4\u91d1\u6bd4\u4f8b\u5438\u5f15\u4eba\u9762\u5bb9\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u4eab\u6709\u7535\u5f71\u822c\u7684\u5149\u5f71\u3002"} +{"id": "1003035", "video_name": "37b7dbf2-e73c-5246-87c1-3b8f322253f5", "text": "\u90d1\u548c\u5728\u623f\u95f4\u91cc\u7948\u7977\uff0c\u6b63\u9762\u63cf\u7ed8\uff0c\u80cc\u540e\u6709\u5149\u7ebf\u3002"} +{"id": "7004853", "video_name": "9da843df-60b0-5667-af22-e0be7b3f9aaf", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5c0f\u6751\u5e84\uff0c\u7c73\u8001\u9f20\u548c\u5510\u8001\u9e2d\u662f\u975e\u5e38\u4eb2\u5bc6\u7684\u670b\u53cb\u3002"} +{"id": "5001412", "video_name": "69d76b01-3d57-5f6d-a440-b9a927ccdd3f", "text": "70\u5e74\u4ee3\u6c14\u6c1b\u827a\u672f\u7535\u5f71\u3002\u4e00\u7247\u767d\u8272\u7684\u9886\u57df\u60b2\u4f24\u5730\u79fb\u52a8\uff0c\u4eff\u4f5b\u662f\u6d3b\u7684\u3002"} +{"id": "2007334", "video_name": "d1f636fe-0f65-5ada-8e0f-82c459a7f3e9", "text": "\u4e00\u4e2a\u8d85\u4eba\u6807\u5fd7\uff0c\u4e2d\u95f4\u6709\u5b57\u6bcdRW\uff0c\u6807\u5fd7\u5728\u4e91\u4e2d\u3002"} +{"id": "2007091", "video_name": "9c0f2b5b-36d8-58f9-b7ad-15d39476ee28", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u5b69\u6b63\u5728\u516c\u56ed\u7684\u6905\u5b50\u4e0a\u8bfb\u4e66\uff0c\u6cb3\u6d41\u524d\u3002\u7eff\u8272\uff0c\u9633\u5149\uff0c\u53ef\u7231\u3002"} +{"id": "7002345", "video_name": "85ad65bb-bc2f-58bf-a974-1af51c273454", "text": "\u4e00\u4e2a\u4eba\u5c06\u81ea\u5df1\u7684\u9ed1\u6697\u8fc7\u53bb\u63a8\u5230\u4e00\u8fb9\uff0c\u5c55\u671b\u65b0\u751f\u6d3b\u3002"} +{"id": "0006676", "video_name": "30c8aea1-2fd7-5a3a-9fa5-cc61867fec37", "text": "\u4e00\u53f0\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u6b63\u5728\u5236\u9020\u53e6\u4e00\u53f0\u673a\u5668\u4eba\u3002"} +{"id": "6002642", "video_name": "83fedcde-2cf4-56a1-a144-c74fa553f188", "text": "\u4e00\u53ea\u6df7\u8840\u7684\u897f\u9ad8\u5730\u767d\u6897\u548c\u96ea\u7eb3\u745e\u3002"} +{"id": "1005569", "video_name": "667c8b2e-3b80-53fa-ae59-70c6da2e03fa", "text": "\u5177\u6709\u5927\u84dd\u8272\u773c\u775b\u7684\u53ef\u7231\u52a8\u753b\u725b\u6cb9\u679c\u5411\u7a7a\u6c14\u4eb2\u543b\u3002"} +{"id": "7004764", "video_name": "629339ad-0ed2-501d-babc-d6a36c1e25f6", "text": "\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u8fde\u63a5\u7740\u73bb\u7483\u7ba1\u548c\u70df\u96fe\u7684\u8611\u83c7\u5728\u7a7a\u6c14\u4e2d\u82cf\u9192\u3002"} +{"id": "7004587", "video_name": "140b9650-5bed-5b70-ba51-9021b99e8bc8", "text": "\u591c\u665a\u6797\u4e2d\u7684\u6b7b\u7075\u6cd5\u5e08"} +{"id": "0006033", "video_name": "2567465c-0597-5ec4-85a9-6358dfb2c6a2", "text": "\u7ea6\u7ff0\u5c3c\u00b7\u5fb7\u666e\u3001\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u548c\u9ea6\u8389\u00b7\u8d5b\u52d2\u65af\u5728\u592a\u7a7a\u98de\u8239\u4e0a\u3002"} +{"id": "5001241", "video_name": "f658df7e-b13e-51b3-b347-9a5e8e1afbd2", "text": "\u7f8e\u4e3d\u7684\u7ea2\u53d1\u5973\u5b50\uff0c\u5361\u901a\u5c0f\u4e11\u8138\uff0c\u7011\u5e03\u80cc\u666f\u3002"} +{"id": "8003556", "video_name": "30a8af16-6aca-53fc-a53a-3a15513031ff", "text": "2D\u5361\u901a\u52a8\u753b\u91cc\u7684\u79d1\u5b66\u5bb6\u5728\u5b9e\u9a8c\u5ba4\u91cc\uff0c\u4e0e\u8111\u673a\u63a5\u53e3\u88c5\u7f6e\u4ea4\u4e92\u3002"} +{"id": "0003240", "video_name": "39d927c0-c209-547f-94fb-807159b7a6a2", "text": "\u7537\u4eba\u9a91\u7740\u7334\u5b50\u8f6e\u5728\u706b\u661f\u4e0a\u7684\u672a\u6765\u57ce\u5e02\u91cc\uff0c\u6234\u7740\u6469\u6258\u8f66\u5934\u76d4\u3002"} +{"id": "0005937", "video_name": "2383b115-c8f2-5cef-a9e9-b3f10770e2ca", "text": "\u91d1\u5e01\u5728\u6162\u52a8\u4f5c\u4e2d\u843d\u4e0b\u5e76\u65cb\u8f6c\u3002"} +{"id": "7002088", "video_name": "f49ea33d-4808-5a78-a754-a6d91c082812", "text": "\u4e00\u6247\u8001\u5f0f\u7684\u6728\u95e8\u6253\u5f00\uff0c\u5206\u5f00\u6ed1\u52a8\u3002"} +{"id": "1004691", "video_name": "57255897-f5f4-50f3-bb63-f3c4bf994a46", "text": "\u5728\u6708\u5149\u4e0b\u6f2b\u6b65\u7684\u68ee\u6797\u4e2d\u76ee\u7779\u90a3\u4e2a\u6050\u6016\u4e14\u8d85\u81ea\u7136\u7684\u5b58\u5728\u3002"} +{"id": "6002887", "video_name": "a3ad697e-40ba-5fe0-b885-94c5b7f3e453", "text": "\u642c\u79fb\u690d\u7269\u548c\u7537\u5b69 GS5 MS2"} +{"id": "8001192", "video_name": "427b7a52-d176-5235-a5a0-4d9a669a209b", "text": "\u7f8a\u9a7c\u8df3\u821e\u5531\u751f\u65e5\u5feb\u4e50\u6b4c\u5439\u706d\u751f\u65e5\u8721\u70db\u3002"} +{"id": "0005111", "video_name": "14efeb8c-37cd-5a14-818e-00164b4ded4c", "text": "\u4e00\u4e2a\u7537\u4eba\u62b1\u7740\u4ed6\u7684\u80f8\u53e3\uff0c\u4e00\u6761\u6cb3\u6d41\u4ece\u4ed6\u7684\u5fc3\u4e2d\u6e17\u51fa\u3002\u5e7b\u60f3\u3002\u60f3\u8c61\u3002"} +{"id": "6002717", "video_name": "83ba04d0-275d-5d4d-b32e-aa3145853e80", "text": "\u53ea\u79fb\u52a8\u80cc\u666f\u4e2d\u7684\u6c34\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004441", "video_name": "09204b01-e490-511d-adcf-667b42279c40", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5f39\u8df3\u676f\u5b50\uff0c\u653e\u5728\u529e\u516c\u684c\u80cc\u666f\u4e0b\u3002"} +{"id": "1005722", "video_name": "6947d51f-29a2-5202-87a7-bef3cad5a402", "text": "\u897f\u6e38\u8bb0\uff1a\u5b59\u609f\u7a7a\u4eb2\u543b\u9aa8\u7cbe\u3002"} +{"id": "4004716", "video_name": "7016be9b-2405-51ee-84a8-c0721c4b3af4", "text": "\u5173\u4e8e\u4e1c\u5fb7\u548c\u57c3\u91cc\u5e0c\u00b7\u6d2a\u514b\u7684\u8bbd\u523a\u89c6\u9891"} +{"id": "1006830", "video_name": "7ce819a9-f8cd-57da-9362-1ef8e9ca8d0d", "text": "\u6211\u60f3\u8981\u4e00\u5f20\u83ab\u624e\u7279\u6f14\u594f\u7684\u7167\u7247\u3002"} +{"id": "7002082", "video_name": "b12d9963-cfd7-5072-8cb9-a4f19a404075", "text": "\u4eba\u624b\u62c9\u7740\u85e4\u8513\u4ece\u4e00\u68f5\u6811\u722c\u5230\u53e6\u4e00\u68f5\u6811\uff0c\u9762\u5411\u6444\u50cf\u673a\uff0c\u903c\u771f\u3002"} +{"id": "1005809", "video_name": "6acd5caa-7449-5ebf-bc05-8efad63151e9", "text": "\u4e00\u540d\u7a7f\u7740\u77ed\u88e4\u7684\u7537\u5b50\u5728\u6708\u7403\u4e0a\u884c\u8d70\u3002"} +{"id": "1004373", "video_name": "50c86e17-7796-5683-902e-db3f8d599b62", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6559\u5ba4\u8df3\u821e\uff0c\u9664\u4e86\u5168\u73ed\u7684\u540c\u5b66\uff0c\u5176\u4ed6\u4eba\u90fd\u4e0d\u5728\u573a\u3002"} +{"id": "3004059", "video_name": "1ad527f0-f8cd-59a7-bd21-aa09a222ffba", "text": "\u4e00\u53ea\u72d7\u5728\u6c99\u6ee9\u4e0a\u8df3\u8dc3\u7740\u8ffd\u9010\u8774\u8776\u3002"} +{"id": "7003096", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "\u4e00\u4e2a\u5973\u5b69\u751f\u6c14\u7684\u77ed\u52a8\u753b\u3002"} +{"id": "1006219", "video_name": "7213ca9b-c434-5847-9232-2f7c3b6c18b4", "text": "\u9a91\u81ea\u884c\u8f66\u5728\u57ce\u5e02\u4e2d\u4ee5\u5361\u901a\u5f62\u5f0f\u9012\u9001\u8ba2\u5355\u7684\u7537\u5b50"} +{"id": "1006786", "video_name": "7c5b69b3-2205-558f-8dca-abd7b60f5743", "text": "\u5927\u718a\u5168\u8eab\u548c\u806a\u660e\u7684\u732b\u5934\u9e70\u548c\u677e\u9f20\u5728\u4e00\u4e2a\u53f2\u8bd7\u822c\u7684\u68ee\u6797\u65c1\u8fb9\u3002"} +{"id": "5001580", "video_name": "2d28ef4c-6db9-5b43-9585-6485809f3781", "text": "\u5b66\u751f\u665a\u4e0a\u56de\u5bb6\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "7002720", "video_name": "b09b46eb-1ecb-56b8-8e45-8e0d1071f9a7", "text": "\u661f\u661f\u3001\u592a\u9633\u548c\u661f\u5ea7 \u4fe1\u606f\uff1a\u4f0a\u9686\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005347", "video_name": "139d9d0b-6c87-520e-94a6-4eda9dc74988", "text": "gyutaro\u548c\u6b7b\u795e\u75282\u4e2a\u5927\u9570\u5200\u878d\u5408\u4e86\u3002"} +{"id": "7002317", "video_name": "372c0751-386d-5439-89d1-de8303899d81", "text": "\u9f50\u8fbe\u5185\u548c\u7687\u5bb6\u9a6c\u5fb7\u91cc\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004149", "video_name": "b6cfac40-3205-570a-8845-47b8b97b8837", "text": "\u661f\u7403\u5927\u6218\u4e3b\u9898\u66f21\u5206\u949f\u7535\u5f71"} +{"id": "1004330", "video_name": "4ff3a788-b291-53d2-9727-8f23b205c6ed", "text": "\u666e\u91cc\u5965\u62c9\u9a76\u8fc7\u4e86\u897f\u90e8\u8352\u91ce\u3002"} +{"id": "2007014", "video_name": "ff9bc992-321a-5dc8-8ce6-f0cfada8c9cd", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u4e8e\u300a\u94f6\u7ffc\u6740\u624b\u300b\u3001\u300a\u7b2c44\u9897\u6708\u7403\u300b\u3001\u300a\u963f\u57fa\u62c9\u300b\u7684\u672a\u6765\u57ce\u5e02\u3002\u4e00\u8f86\u672a\u6765\u4e3b\u4e49\u6c7d\u8f66\u4ece\u89c2"} +{"id": "3006159", "video_name": "a0787176-49d6-5cfb-9f03-3a994e84b031", "text": "\u5929\u5802\u6709\u5c71\u3001\u91d1\u8272\u9633\u5149\u548c\u8349\u5730\uff0c\u6709\u4e0a\u5e1d\u548c\u95e8\u5f92\u3002"} +{"id": "7002402", "video_name": "ed216f99-a7e1-5051-9438-c45359122cc8", "text": "\u4e00\u540d\u957f\u5f97\u50cf\u6d1b\u514b\u5229\u5c14\u7684\u7537\u5b50\u6234\u7740\u9ed1\u8272\u5e3d\u5b50\uff0c\u5728\u8857\u9053\u4e0a\uff0c\u5927\u57ce\u5e02\uff0c\u65e5\u51fa\u65f6\u5206\uff0c\u903c\u771f\u3002"} +{"id": "0004085", "video_name": "02e9f02e-a6dd-5270-bf6e-6a4a59f0641d", "text": "\u7a7f\u7740\u6728\u978b\u8d8a\u8fc7\u5c0f\u6eaa\uff0c\u624b\u6301\u94c3\u94db\u5411\u56fd\u738b\u4f20\u9012\u6d88\u606f\u3002"} +{"id": "3006332", "video_name": "97ab2bcd-fd39-54b2-947d-bd68acfd6268", "text": "\u4e00\u4e2a\u5bcc\u6709\u4f20\u7edf\u4e2d\u56fd\u7279\u8272\u7684\u5bfa\u5e99\u524d\uff0c\u4e00\u6761\u58ee\u4e3d\u7684\u91d1\u9f99\u4ece\u5929\u800c\u964d\uff0c\u5e26\u6765\u559c\u60a6\u548c\u795d\u798f\u3002"} +{"id": "2004240", "video_name": "701c2130-e730-5d36-99bb-f5db3f1710fc", "text": "\u4e3a\u5236\u9020\u4e1a\u8bbe\u8ba1\u4e00\u5f20\u8d28\u91cf\u7ba1\u7406\u56fe\u8868\u3002\u9644\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005206", "video_name": "1695cb0e-f466-5e0e-a63b-e7562c4a2283", "text": "\u5973\u7b97\u547d\u5e08\uff0c\u732b\uff0c\u9b54\u5e7b\u73af\u5883\u3002"} +{"id": "2005605", "video_name": "4a125063-42ba-5cef-b31f-e183db10cbcb", "text": "\u795e\u79d8\u7684\u7eff\u8272\u7267\u573a\uff0c70\u5e74\u4ee3\u7684VHS\u98ce\u683c\uff0c\u8fb9\u7f18\u6050\u6016\u3002"} +{"id": "2006587", "video_name": "bdb29bc4-7266-524d-9cf7-dbbc4a5e5255", "text": "\u4e00\u4e2a\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u4eba\u665a\u4e0a\u5750\u5728\u7a97\u524d\u5199\u65e5\u8bb0\u3002"} +{"id": "0003577", "video_name": "3fd37476-e74e-56dd-b59b-9aa817e8cf49", "text": "\u89d2\u58f0\u5728\u53e4\u8001\u7684\u8036\u8def\u6492\u51b7\u57ce\u5899\u4e0a\u56de\u8361\u3002"} +{"id": "0006801", "video_name": "33553aa0-0ded-581c-be64-a52001213cb1", "text": "\u91d1\u53d1\u5973\u5b69\uff0c\u7528\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u5448\u73b0\u51fa\u70df\u82b1\u3002"} +{"id": "7004163", "video_name": "b1867db2-6fac-5087-bf7a-5822d9b23a98", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5973\u5b69\u5728\u7c89\u8272\u6bd4\u57fa\u5c3c\u4e2d\u6e38\u6cf3\u4e8e\u6d77\u6d0b\u4e2d\u3002"} +{"id": "2004713", "video_name": "4d9b0f46-b89f-57a8-aa9a-89c1a181824e", "text": "\u53cb\u597d\u7684\u6050\u9f99\u6559\u6388\uff0c\u52a8\u6f2b\uff0c\u9ad8\u5206\u8fa8\u7387"} +{"id": "8002746", "video_name": "31453256-368b-52aa-8767-ae8c6d67770f", "text": "\u521b\u4f5c\u4e00\u4e2a\u63d2\u753b\uff0c\u753b\u4e00\u4e2a\u5c0f\u5973\u5b69\u62ff\u7740\u4e00\u9762\u65d7\u5b50\u5728\u6751\u5e84\u7530\u91ce\u91cc\u5954\u8dd1\u7684\u573a\u666f\u3002"} +{"id": "0005459", "video_name": "1b228cee-b20c-5484-8f80-9fbd3b7c0954", "text": "\u6708\u7403\u66fe\u7ecf\u662f\u795e\u79d8\u7684\u8c61\u5f81\uff0c\u73b0\u5728\u5374\u9690\u85cf\u7740\u4e00\u4e2a\u4e0d\u65ad\u8fdb\u5316\u7684\u4eba\u5de5\u667a\u80fd\u7684\u90aa\u6076\u79d8\u5bc6\u3002"} +{"id": "8002971", "video_name": "85d92784-a1d0-579f-9b25-b6fb133bffab", "text": "\u672b\u65e5\u56db\u9a91\u58eb\u5230\u8fbe\u5927\u91d1\u5b57\u5854\u3002"} +{"id": "0004824", "video_name": "0fd1f1cd-9cee-5efd-b7d8-436edb3bfad4", "text": "\u8eab\u4efd\u788e\u7247 \u63a2\u7d22\u81ea\u6211 \u79cd\u65cf\u548c\u4e2a\u4eba\u8eab\u4efd \u5177\u6709\u8c61\u5f81\u610f\u8c61\u7684\u788e\u7247\u5316\u8096\u50cf \u6df7\u5408\u5a92\u4ecb\u548c\u62fc\u8d34 \u53cd\u601d"} +{"id": "1004405", "video_name": "5178b83e-834b-533b-a581-6d8baf3d9562", "text": "\u4e00\u4e2a\u52a8\u6f2b\u98ce\u683c\u7684\u4e61\u6751\u5c0f\u5c4b\u3002"} +{"id": "3004230", "video_name": "a2906de5-88bb-57a4-8a11-12fb94a6ed57", "text": "\u4e00\u53f0\u8001\u65e7\u7535\u89c6\u673a\u5728\u4e00\u4e2a\u7a7a\u8361\u7684\u9ed1\u6697\u623f\u95f4\u91cc\uff0c\u5c4f\u5e55\u4e0a\u6709\u9759\u6001\u5e72\u6270\uff0c\u9644\u7740\u7684\u56fe\u50cf\u4ee5\u6545\u969c\u6548\u679c"} +{"id": "0004267", "video_name": "06189b51-0d5b-512a-a880-cbe37eeaacd5", "text": "\u897f\u897f\u91cc\u8239\u53ea\u5728\u65e7\u5386\u53f2\u753b\u9762\u4e2d\u88ab\u4e00\u8258\u8377\u5170\u8239\u88ad\u51fb\u3002"} +{"id": "8001510", "video_name": "74652ae4-e334-511d-81e2-47e719015d95", "text": "\u5c06\u4e00\u4e2a\u989c\u8272\u4e3a\u9752\u7eff\u8272\u7684\u5927\u67f1\u5b50\u52a8\u753b\u5316\uff0c\u5b83\u5e73\u7a33\u5730\u79fb\u52a8\u5e76\u4e0e\u53e6\u4e00\u4e2a\u989c\u8272\u4e3a\u6df1\u68d5\u8272\u7684\u67f1\u5b50\u76f8\u9047\uff0c"} +{"id": "4004205", "video_name": "89446bc5-a551-5420-8736-d3dbd16c09b8", "text": "\u5b83\u751f\u6210\u4e86\u4e00\u5f20\u56fe\u50cf\uff0c\u663e\u793a\u4ed6\u4eec\u6307\u5411\u7684\u65b9\u5411\uff0c\u4e5f\u5c31\u662f\u8bf4\uff0c\u4ed6\u4eec\u5728\u4e92\u76f8\u6218\u6597\uff0c\u4f7f\u7528\u6b66\u5668\uff0c\u4e00\u4e2a\u58eb\u5175\u548c\u4e00\u4e2a\u5de5\u7a0b\u5e08"} +{"id": "0005556", "video_name": "1cd5f988-4b8e-56ca-acd2-cd743f174646", "text": "\u5206\u533a\u9ed1\u6697\u5730\u5e26\u4e0b\u96ea\u66b4\u98ce\u96ea\uff0c\u6709\u6c34\u5751\u3002"} +{"id": "2005351", "video_name": "876f7d26-f37f-5dbb-b7a4-0b7075fb4371", "text": "\u4e24\u95f4\u6728\u8d28\u5c0f\u5c4b\uff0c\u5e74\u4ee3\u5df2\u8fbe\u4e24\u5343\u5e74\uff0c\u5750\u843d\u4e8e\u4e1b\u6797\u6df1\u5904\uff0c\u4e0b\u9762\u662f\u660e\u4eae\u7684\u5929\u7a7a\u3002"} +{"id": "4003827", "video_name": "5316fbcf-7c36-5ec1-87c0-4cec628a5e4c", "text": "\u590d\u53e4\u4e07\u5723\u8282\u591c\u666f\uff0c\u6709\u5e7d\u7075\u3001\u50f5\u5c38\u3001\u9ab7\u9ac5\u548c\u53ef\u6015\u7684\u602a\u517d\u3002"} +{"id": "8002291", "video_name": "83af4184-4b08-5f4e-9359-3cd609b2b4b3", "text": "\u8428\u62c9\u548c\u4e39\u5c3c\u5c14\u5728\u4e00\u4e2a\u516c\u56ed\u76f8\u9047\uff0c\u90a3\u662f\u4ed6\u4eec\u7b2c\u4e00\u6b21\u63a5\u543b\u7684\u5730\u65b9\u3002\u4e24\u4eba\u90fd\u7ecf\u5386\u4e86\u6210\u957f\u548c\u53d8\u5316\u3002\u4ed6\u4eec\u5728\u7b2c\u4e00"} +{"id": "1005524", "video_name": "65acf927-c6c6-5193-ac1c-4041cacd22bd", "text": "\u6811\u4e0b\u6709\u4e00\u53ea\u732b\u3002"} +{"id": "7002784", "video_name": "571c6000-b223-5236-bb7e-1b884a86dbfd", "text": "\u821e\u8e48\u9a91\u58eb\u5728\u821e\u53f0\u4e0a\u8868\u6f14\uff0c\u590d\u53e4\u98ce\u683c\uff0c\u8eab\u7740\u534e\u4e3d\u670d\u88c5\uff0c\u6234\u7740\u7fbd\u6bdb\u5e3d\u7684\u6b4c\u821e"} +{"id": "2006631", "video_name": "702fc640-b9b9-5566-bc89-007d8d74f8b3", "text": "\u4e24\u4e2a\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u5728\u5929\u7a7a\u4e2d\u640f\u6597\u3002"} +{"id": "7003010", "video_name": "b508da5f-5a4b-5261-b76f-2ae9f09f8f69", "text": "\u8036\u7a23\u624b\u4e2d\u62ff\u7740\u795e\u5723\u7684\u8721\u70db\uff0c\u5728\u6c99\u6f20\u4e2d\u3002"} +{"id": "0006498", "video_name": "2d884492-7dab-5cbf-995d-e3e18b28d903", "text": "\u5582\u9e21\u5e76\u559d\u6c34\u3002"} +{"id": "8001493", "video_name": "65bc1b45-467f-542d-9720-2a81634ccaa4", "text": "\u4e00\u5e45\u4e0d\u52a8\u7684\u98ce\u666f\u753b\uff0c\u53ea\u6709\u6d41\u52a8\u7684\u6c34\u662f\u52a8\u6001\u7684\u3002"} +{"id": "8002373", "video_name": "2ed3e411-a3cf-5960-984f-e83ce14d0568", "text": "\u5361\u901a\u300aZapp Branigan\u300b\u8ba8\u538c\u4ed6\u7684\u5730\u4e0b\u529e\u516c\u5ba4\uff1a\u9ad8\u5c71\u4fdd\u9556\u6293\u4e86\u4e00\u4e2a\u4eba\u5f53\u4eba\u8d28\uff0c3D\u52a8\u753b\uff0c\u6444\u50cf\u673a\u5411\u5916\u5e73"} +{"id": "2006652", "video_name": "fc4260d8-d978-5784-87dd-ad9b1a0d4902", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5728\u665a\u4e0a\u8fdb\u5165\u4e86\u4e00\u4e2a\u4fc4\u7f57\u65af\u5165\u53e3\u3002"} +{"id": "2006272", "video_name": "d495a8a5-4740-530b-bdf4-90b0c9ee2c1e", "text": "\u7537\u5b69\u98de\u8d8a\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5c71\u5cf0\uff0c\u4e0a\u65b9\u6709\u4e00\u53ea\u8272\u5f69\u660e\u4eae\u7684\u8702\u9e1f\u3002"} +{"id": "7004946", "video_name": "56d344d1-55b2-5c7b-b934-f833d6deb4e7", "text": "\u5728\u56fe\u4e66\u9986\u627e\u5230\u4f60\u559c\u6b22\u7684\u4e66\u3002"} +{"id": "2006907", "video_name": "70465dfa-3796-5c3d-8574-393f894a15fb", "text": "\u52a8\u753b\u7247\uff0c\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\uff0c\u5728\u82cf\u8054\u542f\u793a\u5f55\u7684\u4e16\u754c\u4e2d\uff0c\u8d85\u7ea7\u8be6\u7ec6\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u5207\u5c14\u8bfa\u8d1d\u5229\u7684\u9634\u5f71"} +{"id": "2006686", "video_name": "7262c6ac-5695-5c89-86f4-2bd2276d9753", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u7ad9\u5728PVC\u652f\u67b6\u4e0a\u3002"} +{"id": "2003802", "video_name": "3c7877e7-c792-5148-83c4-12e8ea494cb4", "text": "9:16\u5c3a\u5bf8\uff0c\u5e78\u5b58\u8005\u5728\u4e16\u754c\u6bc1\u706d\u540e\u91cd\u5efa\u548c\u91cd\u65b0\u79cd\u690d\u68ee\u6797\uff0c\u571f\u8457\u56e2\u4f53\u79cd\u690d\uff0c\u6c38\u7eed"} +{"id": "2005961", "video_name": "11616ee5-c2ab-5ded-bcdb-e6ca02fa8516", "text": "\u4e00\u540d\u9500\u552e\u5458\u5728\u6742\u8d27\u5e97\u5411\u987e\u5ba2\u5f00\u652f\u7968\u3002"} +{"id": "1003073", "video_name": "38889d34-41a7-5741-93aa-a872ebeb2e65", "text": "\u521b\u9020\u4e00\u4e2a\u5370\u5ea6\u5973\u5b69\u7ad9\u5728\u5979\u7684\u629b\u951a\u6c7d\u8f66\u65c1\u7684\u5f62\u8c61\u3002"} +{"id": "2007614", "video_name": "814f1ce0-2076-5f9f-b932-afd87d7d4838", "text": "\u4fe1\u606f\uff1aAMAYA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u5728\u4e00\u4e2a\u6e05\u6f88\u7684\u6c34\u6e56\u4e2d\uff0c\u5915\u9633\u4e0b\uff0c\u6444\u50cf\u5934\u79fb\u52a8\u5e76\u5411\u5916\u7f29\u653e\u3002"} +{"id": "6002941", "video_name": "3433af38-e164-5d2a-9e96-70a8f9cba246", "text": "\u795e\u79d8\u7684\u68ee\u6797\u91cc\u6709\u5404\u79cd\u52a8\u7269\u3002\u8fd9\u4e9b\u52a8\u7269\u6709\u4e0d\u540c\u7684\u989c\u8272\u548c\u5f62\u72b6\uff0c\u4f7f\u5b83\u4eec\u975e\u5e38\u795e\u5947\u3002\u5934\u50cf\u7684\u80cc\u666f"} +{"id": "1005242", "video_name": "60635b6b-d2d8-5942-8372-737a981abe06", "text": "\u6500\u767b\u8005\u5230\u8fbe\u5177\u6709\u6311\u6218\u6027\u7684\u5c71\u9876\uff0c\u5c55\u793a\u4e86\u5f81\u670d\u548c\u514b\u670d\u5de8\u5927\u969c\u788d\u7684\u610f\u4e49\u3002"} +{"id": "1003172", "video_name": "3a5fe922-ed51-5ab4-87f8-3fdfa3b5a252", "text": "\u4e00\u53ea\u597d\u5947\u7684\u864e\u6591\u732b\u5750\u5728\u7a97\u53f0\u4e0a\uff0c\u5411\u5916\u5f20\u671b\u7740\u7199\u6518\u7684\u57ce\u5e02\u666f\u89c2\uff0c\u5929\u7a97\u66dd\u5149\uff0c\u70b9"} +{"id": "7002272", "video_name": "bd11cce1-bf2c-5a3c-a019-e1feed6637ff", "text": "\u4e8c\u8fdb\u5236\u5723\u6bbf\uff0c\u767d\u91d1\u4e4b\u5149\u3002\u4fe1\u606f\uff1a\u827a\u672f\u5bb6\u65b0\u661f\u3002"} +{"id": "3004402", "video_name": "520cf431-b75c-52d5-8c58-d94076345b62", "text": "\u5728\u5e7d\u7075\u5e84\u56ed\u5185\uff0c\u6076\u6bd2\u548c\u8be1\u5f02\u7684\u7075\u9b42\u5c45\u4f4f\u7740\uff0c\u5b83\u4eec\u66fe\u7ecf\u88ab\u8fc7\u53bb\u7684\u653f\u5e9c\u5b98\u5458\u548c"} +{"id": "6003085", "video_name": "f21d05c8-8eff-54e1-8473-89803a59f085", "text": "\u5bb6\u957f\u7528PS5\u4f5c\u4e3a\u793c\u7269\u7ed9\u5b69\u5b50\u4eec\u60ca\u559c\u3002\u5b69\u5b50\u4eec\u611f\u5230\u975e\u5e38\u9ad8\u5174\u5e76\u611f\u8c22\u4ed6\u4eec\u7684\u7236\u6bcd\u3002\u4ed6\u4eec\u5b89\u88c5\u4e86PS5"} +{"id": "3005281", "video_name": "86f854fe-32ce-538b-bfff-aa192ac40f7a", "text": "\u4e00\u53ea\u9e7f\u4ece\u7b2c\u5341\u5c42\u6254\u4e86\u4e00\u4e2a\u897f\u74dc\u3002\u73b0\u5b9e\u751f\u6d3b\u98ce\u683c\u3002"} +{"id": "4002503", "video_name": "e902f390-841b-5527-9408-c1eb73f6a113", "text": "\u8682\u8681\u548c\u8682\u86b1\u4e00\u8d77\u52aa\u529b\u6536\u96c6\u4e0b\u4e00\u4e2a\u51ac\u5929\u7684\u98df\u7269\u3002"} +{"id": "1004998", "video_name": "5c5fd02b-1939-5cec-b231-d411c0262254", "text": "\u975e\u5e38\u975e\u5e38\u5feb\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u4f4f\u5728\u5e8a\u4e0a\u7684\u79d8\u9c81\u624b\u5de5\u827a\u4eba\u592b\u5987\u7684\u6545\u4e8b\u3002"} +{"id": "7003717", "video_name": "ff808345-9903-54db-ac61-29001b734233", "text": "\u4e00\u5e45\u573a\u666f\u5c55\u73b0\u4e86\u4e00\u4e2a\u53ef\u7231\u98ce\u683c\u7684\u5973\u5b69\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u7684\u5723\u8bde\u5973\u88c5\uff0c\u6ca1\u6709\u5e3d\u5b50\uff0c\u8116\u5b50\u4e0a\u7cfb\u7740\u4e24\u4e2a"} +{"id": "8003585", "video_name": "8bc00fca-1776-5924-840d-c1bee5070f8f", "text": "\u5728\u56fe\u4e66\u9986\u5b66\u4e60GRE\u7684\u5973\u5b66\u751f\u3002"} +{"id": "4002663", "video_name": "9003b8d3-e121-53ff-a7fd-12327e2c44c1", "text": "\u5973\u5b69\u6234\u7740VR\u773c\u955c\u7ad9\u5728\u53a8\u623f\u91cc\u3002"} +{"id": "6003404", "video_name": "529e94ff-1885-55f2-a4b4-a3663b1de277", "text": "\u5317\u6781\u3001\u51ac\u5929\u3001\u5bd2\u51b7\u548c\u80cc\u666f\u4e0a\u7684\u4f01\u9e45\u3002\u4fe1\u606f\uff1aLAYERZERO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1003550", "video_name": "4182f52f-c28f-5ef9-9533-c7a6aee86e94", "text": "\u521b\u4f5c\u98ce\u683c\u4e3aAlex Grey\u7684\u591a\u7ef4\u8fd0\u52a8\u56fe\u5f62\u3002"} +{"id": "4002461", "video_name": "76ee6f83-acc5-5168-8269-8254130074fe", "text": "\u975e\u5e38\u8bf1\u4eba\u7684\u673a\u5668\u4eba\u5973\u6027\u7a7f\u7740\u6bd4\u57fa\u5c3c\u4e00\u8d77\u8d70\u8def\u3002"} +{"id": "2003396", "video_name": "b3a9e530-ef7d-5b0e-b07e-6ef5342c469b", "text": "\u7a81\u51fa\u4e00\u7fa4\u5145\u6ee1\u6d3b\u529b\u7684\u8774\u8776\u5728\u82b1\u4e1b\u4e2d\u98de\u821e\u3002"} +{"id": "0005178", "video_name": "1618e269-2a79-5ce0-bb79-cc2d30289a82", "text": "\u89c6\u9891\u903c\u771f\u7684\u81ea\u7136\u56fe\u50cf\uff0c\u68a6\u5e7b\u4e16\u754c\uff0c\u5f00\u5fc3\u8611\u83c7\uff0c\u7c89\u8272\u9ec4\u8272\u68a6\u5e7b\u3002"} +{"id": "1006002", "video_name": "6e419c49-a6b4-527f-b097-7b9390f91d98", "text": "3D\u6c34\u4e2d\u5b9d\u77f3\u548c\u6c34\u6676\u6e32\u67d3\u56fe\u3002"} +{"id": "5001308", "video_name": "bd0f9310-06b5-5591-bfb1-02e6a2737968", "text": "\u4e00\u4f4d\u5c0f\u4ed9\u5973\u548c\u5b69\u5b50\u4eec\u8bf4\u8bdd\u3002"} +{"id": "8002163", "video_name": "91d9063f-2c43-5e58-9e5b-3b95db365d53", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u72fc\u4eba\u8d70\u5411\u955c\u5934\u3002\u4ed6\u8eab\u540e\u662f\u6708\u5149\u4e0b\u95ea\u8000\u7684\u6e56\u6cca\uff0c\u6708\u4eae\u5728\u6c34\u4e2d\u5012\u6620\u3002"} +{"id": "2004977", "video_name": "f2106eb5-2e5d-5f97-a92b-fe2c1c791a99", "text": "\u6c34\u9762\u4e0a\u7684\u6c34\u6bcd\u5728\u65e5\u843d\u65f6\u8d77\u821e\uff0c\u5e7f\u89d2\u89c6\u89d2\uff0c\u620f\u5267\u6027\u7684\u5149\u7ebf\uff0c4k\uff0c\u903c\u771f\u3002"} +{"id": "6004842", "video_name": "100aa7ae-34f8-5de0-877d-53cd782d90a0", "text": "\u7535\u5f71\u822c\u7684\uff0c\u89c6\u9891\u903c\u771f\u7684\uff0c\u9b54\u5e7b\u8611\u83c7\u68ee\u6797\uff0c\u4e2d\u666f"} +{"id": "1005231", "video_name": "6043a757-22cf-59ed-9f0c-c8a0cda80f5a", "text": "\u5f53\u7537\u4eba\u9192\u6765\u65f6\uff0c\u4ed6\u7684\u5973\u4eba\u4f1a\u5fae\u7b11\u7740\u770b\u7740\u4ed6\uff0c\u80cc\u666f\u662f\u4e00\u95f4\u5367\u5ba4\u3002"} +{"id": "3003028", "video_name": "d99f93bf-2d0d-51b5-9aab-6e0d6253d3b2", "text": "\u5728\u68ee\u6797\u91cc\u6f14\u594f\u9f13\u7684\u52a8\u6001\u7ea2\u72d0\u72f8"} +{"id": "0006585", "video_name": "2f0e8a53-3f54-5510-81f9-94e8b5b55407", "text": "\u4eba\u6216\u4f01\u4e1a\u57283D\u52a8\u753b\u7535\u5f71\u4e2d\u5598\u606f\u3002"} +{"id": "8003737", "video_name": "df0042fc-2fa1-58c0-9bac-29ec5d3f47b2", "text": "\u7535\u5f71\u822c\u7684\u79d1\u5e7b\uff0c\u8bb2\u8ff0\u4e86\u5728\u4ee5\u5149\u901f\u65c5\u884c\u7684\u5b87\u5b99\u4e2d\u7684\u8ff7\u5e7b\u4eba\u7c7b\u3002"} +{"id": "2005574", "video_name": "3e2df23f-f357-5dce-a1fc-988f2e88c29b", "text": "\u5f88\u591a\u7f8e\u5143\u6b63\u5728\u71c3\u70e7\u3002"} +{"id": "3004168", "video_name": "d9f6d3d2-413e-554b-805b-240a954886c3", "text": "\u4ece\u8682\u8681\u7684\u7b2c\u4e00\u4eba\u79f0\u89d2\u5ea6\u770b\uff0c\u9178\u6027\u836f\u7269\u7684\u6548\u679c\u662f\u4ec0\u4e48\u6837\u5b50\u7684"} +{"id": "8003670", "video_name": "42229597-556f-582f-af0c-8e216c2c8952", "text": "5\u5c81\u5973\u5b69\u53d8\u621020\u5c81\u5973\u5b69\u3002"} +{"id": "3006120", "video_name": "bf497046-cadf-537f-8207-fa2887b0dfce", "text": "\u661f\u96e8\uff0c\u975e\u5e38\u8f7b\u76c8\u7684\u7d2b\u8272\u5b87\u5b99\u80cc\u666f\u3002"} +{"id": "0003523", "video_name": "3ef545f3-4147-53c6-a88a-62134d437b40", "text": "\u84dd\u5929\u767d\u4e91\u7334\u5b50\u6811"} +{"id": "8003676", "video_name": "f2c86d84-c31c-5220-8323-b10a7788d3d2", "text": "\u65af\u5e93\u6bd4\u675c\u98ce\u683c\u52a8\u753b\u7684\u5f17\u96f7\u8fea\u00b7\u5409\u5e03\u65af\u89e3\u51b3\u8c1c\u56e2\uff0cGS429\uff0c\u4f4e\u591a\u8fb9\u5f62"} +{"id": "0005289", "video_name": "17eaad9c-1638-5eff-8b63-c2454bb25b17", "text": "\u53ef\u7231\u7684\u52a8\u6f2b\u7537\u5b69\u548c\u5973\u5b69\u76f8\u7231\u4e86\u3002"} +{"id": "1006759", "video_name": "7bbd3802-2b17-5385-bccd-d6b7875cf7dc", "text": "\u5c0f\u5b69\u5c71\u59c6\u51b2\u5411\u5728\u94c1\u8def\u4e0a\u8d70\u7684\u8001\u5987\u4eba\u3002"} +{"id": "7003949", "video_name": "1fc74476-8cd7-5567-874c-051ef5432d38", "text": "\u4e00\u4e2a\u5973\u5175\u8d70\u8fc7\u4e00\u5c0f\u6c60\u6c34\u3002"} +{"id": "7003489", "video_name": "9ff8ca85-0251-584c-bf5d-f4c22ad8352d", "text": "\u5f53\u91cf\u5b50\u529b\u91cf\u5b88\u62a4\u7740\u8fd9\u5ea7\u57ce\u5e02\uff0c\u6211\u4eec\u53ef\u4ee5\u77a5\u89c1\u6765\u81ea\u5e73\u884c\u5b87\u5b99\u4e2d\u7684\u5176\u4ed6\u82f1\u96c4\u548c\u53cd\u6d3e\uff0c\u9884\u793a\u7740\u672a\u6765\u7684"} +{"id": "0006635", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "but none have been successful in locating the mythical underground city.\n\n\u591a\u5e74\u6765\uff0c\u8bb8\u591a\u63a2\u9669\u961f\u51fa\u53d1\u5bfb\u627e\u963f\u52a0\u5c14\u5854\uff0c\u4f46\u90fd\u6ca1\u6709\u6210\u529f\u627e\u5230\u8fd9\u4e2a\u795e\u79d8\u7684\u5730"} +{"id": "6002591", "video_name": "b7ad6620-5a95-59f8-bdb6-b6706da1a63b", "text": "\u4e24\u540dFBI\u7279\u5de5\uff0c\u4e00\u7537\u4e00\u5973\uff0c\u5728\u4e00\u6761\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\u53d1\u73b0\u4e86\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u7684\u5c38\u4f53\uff0c\u5979\u7684\u8116\u5b50\u4e0a\u6709\u4e00\u9053\u5438"} +{"id": "8001306", "video_name": "766e7968-4fb3-5163-a48e-d4dd60c96c31", "text": "\u5728\u68cb\u76d8\u4e0a\uff0c\u53ea\u6709\u4e00\u53ea\u7c89\u8272\u7684\u732b\u68cb\u5b50\uff0c\u68cb\u5b50\u6b63\u5728\u539f\u5730\u7f13\u6162\u65cb\u8f6c\u3002"} +{"id": "2007942", "video_name": "1ff60e8c-0cc2-579d-a272-8b168cdb5539", "text": "\u4f7f\u7528\u9644\u5e26\u7684\u56fe\u7247\u8ba9\u5b83\u5fae\u7b11\u548c\u5927\u7b11\u3002"} +{"id": "1005584", "video_name": "66bf9031-ef6b-52df-a7f6-34106262d897", "text": "\u4e00\u4e2a\u90ae\u9012\u5458\u9a91\u7740\u81ea\u884c\u8f66\uff0c\u5728\u591c\u5e55\u4e0b\u98de\u9a70\u7a7f\u8fc7\u768e\u6d01\u7f8e\u4e3d\u7684\u5929\u7a7a\u3002"} +{"id": "4002763", "video_name": "07aeec55-99cf-586c-939c-720b4ad71a28", "text": "\u5168\u7403\u6700\u7f8e\u4e3d\u5973\u5b69\u76843D\u5361\u901a\u89d2\u8272"} +{"id": "6004019", "video_name": "a24f4d39-cdee-5fac-98e6-343d6ebc1c60", "text": "\u56fe\u50cfUHD\u30014K\u3001\u96e8\u6797\u4e2d\u7684\u5b69\u5b50\u3002"} +{"id": "3003861", "video_name": "21a3191f-668f-5962-af4e-d47aa1ebfd20", "text": "\u963f\u6839\u5ef7\u5e7f\u9614\u7684\u8349\u539f\u548c\u5d0e\u5c96\u7684\u5c71\u8109"} +{"id": "2004255", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4f01\u4e1a\u4f7f\u7528\u4e91\u8ba1\u7b97\u7684\u597d\u5904\u7684\u89e3\u91ca\u89c6\u9891\u3002"} +{"id": "2007076", "video_name": "31a93f62-3d3d-5ea6-a315-72cfc91f3406", "text": "\u4e2d\u56fd\u5973\u5b69\u5728\u6536\u96c6\u7a3b\u8c37\uff0c\u5915\u9633\uff0c\u751f\u52a8\u7684\u573a\u666f\u3002\n\nSource sentence: I like to eat Chinese food, especially dumplings and stir-fry dishes."} +{"id": "3003191", "video_name": "a4c17a6e-7fdd-542f-afbb-c11a8ea5db88", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u60c5\u4eba\u8282\u5e26\u7740\u4e00\u4e2a\u5973\u5b69\u7ea6\u4f1a\uff0c\u5e0c\u671b\u80fd\u6709\u597d\u8fd0\u6c14\u3002"} +{"id": "3006909", "video_name": "4e3e1366-7511-5a50-bff0-39d24a8aca20", "text": "\u4e00\u4f4d\u73b0\u5b9e\u4e3b\u4e49\u7684\u8001\u5987\u4eba\u5750\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\u7684\u7b80\u5355\u6728\u6905\u4e0a\uff0c\u624b\u4e2d\u62ff\u7740\u653e\u5927\u955c\u3002\u8fd9\u4e2a\u623f\u95f4\u7684\u5899"} +{"id": "3003235", "video_name": "21f74afa-a71d-573a-b1a2-b5040c5af9cf", "text": "\u4e00\u53ea\u8428\u6469\u8036\u72ac\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "6003136", "video_name": "da3b41f1-9427-5015-8c9a-eb3a4d025d73", "text": "\u5979\u5929\u4f7f\u822c\u7684\u9762\u5bb9\u5728\u67d4\u548c\u7684\u9633\u5149\u4e0b\u66f4\u52a0\u7a81\u51fa\uff0c\u6e05\u6f88\u7684\u773c\u775b\u53cd\u6620\u51fa\u7eaf\u771f\u3002\u5979\u6d41\u52a8\u7684\u53d1\u4e1d"} +{"id": "2006094", "video_name": "3a8f779b-1562-5b14-9682-53876ec405cd", "text": "\u5723\u8bde\u8001\u4eba\u5728\u7ebd\u7ea6\u65f6\u4ee3\u5e7f\u573a\uff0c\u53f2\u8bd7\u822c\u7684\u89d2\u5ea6\u548c\u59ff\u52bf\uff0c3D\uff0c\u666f\u6df1\u3002"} +{"id": "1005928", "video_name": "6cdd5bd2-c63c-5e8b-9a45-3a7ee3673161", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8fd1\u8ddd\u79bb\u5480\u56bc\u62ab\u8428\u30024K\u9ad8\u6e05\u3002\u8d85\u9ad8\u5206\u8fa8\u7387\u3002\u903c\u771f\u3002"} +{"id": "4003119", "video_name": "d3dcfc07-a89d-56aa-83cd-566bd2356d47", "text": "\u4ece\u53a8\u623f\u5929\u82b1\u677f\u4e0a\u4e0b\u843d\u7740\u756a\u8304\uff0c32k\u8d85\u903c\u771f\u7684\u7b2c\u4e00\u4eba\u79f0\u6444\u50cf\u673a\u89c6\u89d2\u3002"} +{"id": "6003627", "video_name": "6f44a7e7-2ce3-5599-9685-12bd10375fab", "text": "dark\n\nTranslation: \u4e00\u4e2a\u7537\u5b69\u5728\u9ed1\u6697\u4e2d\u542c\u97f3\u4e50\u548c\u70b9\u4eae\u4e86\u706f\u3002"} +{"id": "3005131", "video_name": "49c010ae-727d-5f98-8b3c-a0754c904077", "text": "said, \"Blessed are the poor in spirit, for theirs is the kingdom of heaven.\"\n\nTranslation: \u8036\u7a23\u5728\u767b\u5c71\u5b9d\u8bad\u4e2d\u8bf4\uff1a\u201c\u865a\u5fc3\u7684\u4eba\u6709\u798f\u4e86\uff0c\u56e0\u4e3a\u5929"} +{"id": "2007330", "video_name": "87eb338d-c7ce-569e-b9aa-58ea1ee07657", "text": "\u7f8e\u4e3d\u7684\u73ab\u7470\u4e0a\u95ea\u8000\u7740\u6e05\u6668\u7684\u9732\u73e0\u3002"} +{"id": "3003214", "video_name": "73659477-fa38-5347-9927-2028eddf5146", "text": "\u7535\u8111\u548c\u667a\u80fd\u624b\u673a\u4e0a\u51fa\u73b0\u4e86\u5e26\u6709\u95f4\u8c0d\u8f6f\u4ef6\u56fe\u6807\u7684\u73b0\u8c61\u3002"} +{"id": "3006440", "video_name": "54b441ea-7285-51f2-a428-5fa206074a64", "text": "\u5efa\u9020\u4e00\u5ea7\u6469\u5929\u5927\u697c\u6797\u7acb\u7684\u5927\u57ce\u5e02\uff0c\u5176\u4e2d\u4e00\u5ea7\u5efa\u7b51\u4e0a\uff0c\u4e00\u4e2a\u8eab\u7a7f\u5efa\u7b51\u5de5\u4eba\u670d\u88c5\u7684\u5de5\u4eba\u6b63\u7528\u89d2\u78e8\u673a"} +{"id": "4002114", "video_name": "d60c520a-110f-51d3-a7b5-64b9971fd450", "text": "\u4e00\u4e2a\u7c89\u8272\u5154\u5b50\u5728\u660e\u4eae\u7684\u68ee\u6797\u73af\u5883\u4e2d\uff0c\u91c7\u75283D\u98ce\u683c\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "6004942", "video_name": "aa80f428-0b67-573b-afff-6fef328a3a21", "text": "\u4e00\u4e2a\u5927\u7684\u725b\u820d\u5728\u725b\u820d\u524d\u9762\uff0c\u7f8a\u548c\u725b\u671d\u76f8\u53cd\u7684\u65b9\u5411\u884c\u8d70\u3002"} +{"id": "6003721", "video_name": "afaac702-fc45-5149-b5a8-d2cdb067ced8", "text": "\u7535\u5b50\u8bbe\u5907\uff0c\u4f8b\u5982\u624b\u673a\u548c\u7b14\u8bb0\u672c\u7535\u8111\u7206\u70b8\uff0c\u91ca\u653e\u51fa\u95ea\u7535\u3002"} +{"id": "3003966", "video_name": "a71e5b67-f20a-5a22-a627-2728f6f13140", "text": "\u795e\u79d8\u7684\u4e95\uff1aShitala Vilas \u4ee5\u5176\u62e5\u6709\u795e\u5947\u5c5e\u6027\u7684\u4e95\u800c\u95fb\u540d\u3002\u636e\u8bf4\u4efb\u4f55\u4eba\u770b\u5411\u8fd9\u53e3\u4e95\u90fd\u53ef\u4ee5\u7aa5\u89c1\u4ed6\u4eec"} +{"id": "2007903", "video_name": "932b045b-4dec-5597-ac20-5232dc54aa67", "text": "\u9897\u7c92\u72b6\u7684VHS\u5f55\u50cf\u4e2d\u5faa\u73af\u64ad\u653e\u7740\u4e00\u4e2a\u7a7a\u5c4f\u5e55\u3002"} +{"id": "3003646", "video_name": "94dea17c-96ee-509e-95a2-eda76588ac3e", "text": "\u4ece\u62c9\u666e\u5170\u8fd4\u56de\u5e93\u5965\u76ae\u5965\u7684\u65c5\u7a0b\u4e0e\u4ed6\u4eec\u6700\u521d\u7684\u63a2\u9669\u5f62\u6210\u4e86\u9c9c\u660e\u5bf9\u6bd4\u3002\u66fe\u7ecf\u770b\u4f3c\u5a01\u80c1\u7684"} +{"id": "3004770", "video_name": "067992e4-d079-5783-9f60-0e2559a2b923", "text": "\u8bb8\u591a\u4e00\u767e\u7f8e\u5143\u7684\u949e\u7968\u96e8\u70b9\u822c\u5730\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u591c\u665a\u8986\u76d6\u5728\u7ebd\u7ea6\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "4003012", "video_name": "07b61304-6b13-5fcd-896b-a69afea56db1", "text": "\u5728\u5370\u5ea6\u5bab\u6bbf\u91cc\u51fa\u751f\u4e86\u4e00\u4e2a\u5a74\u513f\u3002"} +{"id": "1006736", "video_name": "7b651b49-dfee-54b0-9854-9b1625a97098", "text": "\u5728\u57ce\u5e02\u73af\u5883\u4e2d\u63a2\u7d22\u5149\u4e0e\u5f71\u7684\u76f8\u4e92\u4f5c\u7528\uff0c\u521b\u9020\u51fa\u89c6\u89c9\u4e0a\u5f15\u4eba\u6ce8\u76ee\u7684\u89c6\u9891\uff0c\u7a81\u51fa\u5efa\u7b51\u7ec6\u8282\u548c\u57ce\u5e02\u98ce"} +{"id": "3005086", "video_name": "79311379-12d5-5edf-b925-0bb97e986a7f", "text": "\u6211\u9700\u8981\u4e00\u4e2a\u62c9\u4e01\u7f8e\u6d32\u7684\u6807\u5fd7\uff0c\u9ed1\u8272\u5b57\u4f53\uff0c\u9ec4\u8272\u8fb9\u6846\u3002"} +{"id": "6002926", "video_name": "6eeeaf97-129e-5a9b-aa1d-5726ee5deaa1", "text": "\u5728\u300a\u822a\u6d77\u738b\u91cd\u805a\u4e4b\u8def\u300b\u4e2d\uff0c\u4e94\u4f4d\u6765\u81ea\u9ad8\u4e2d\u7684\u670b\u53cb\uff0c\u62e5\u6709\u5404\u81ea\u4e0d\u540c\u7684\u5174\u8da3\u548c\u8d23\u4efb\uff0c\u4e00\u8d77\u8e0f\u4e0a\u4e86"} +{"id": "3003754", "video_name": "af320ffa-05d2-5569-951b-f563f437ad24", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u4e00\u6761\u8ff7\u4f60\u88d9\u3002"} +{"id": "3005024", "video_name": "c8b87670-0ce3-53a3-8b75-1a75b15b570c", "text": "\u4e00\u8f86\u7ecf\u5178\u7684\u7ea2\u8272\u6c7d\u8f66\uff0c\u672a\u6d82\u6f06\u800c\u4e14\u7834\u65e7\uff0c\u884c\u9a76\u5728\u4e00\u6761\u7a7f\u8fc7\u8302\u5bc6\u4e91\u6749\u6811\u6797\u7684\u516c\u8def"} +{"id": "3005756", "video_name": "c8c0accf-4373-5b06-bce9-7c16fae7602b", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u7a7f\u7740\u9ec4\u8272\u8fd0\u52a8\u670d\u548c\u5377\u53d1\u7684\u5e74\u8f7bbboy\u5728\u6cd5\u56fd\u5357\u90e8\u7684\u4e00\u6761\u8def\u4e0a\u8d70\u7740\u3002"} +{"id": "4003058", "video_name": "15837b5a-26d9-5bf8-ba35-17ed4e9ba320", "text": "Source sentence: Air France\u98de\u673a\u5728\u8fea\u62dc\u54c8\u5229\u6cd5\u5854\u65c1\u98de\u884c\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\nTranslation: \u6211\u5b66"} +{"id": "1003314", "video_name": "3d036682-34d2-5d49-87a7-50544beb4b3c", "text": "\u9713\u8679\u6d82\u9e26\u5f02\u5f62\u5973\u5b69\uff0c\u7531\u5bcc\u91ce\u7531\u60a0\u5b63\u521b\u4f5c\u7684\u5916\u661f\u4eba\u89d2\u8272\uff0c\u5f02\u5f62\u89d2\u8272\uff0c\u6982\u5ff5\u827a\u672f\uff0c"} +{"id": "0005230", "video_name": "1700589e-187e-59aa-aeb5-370ddf314ba4", "text": "\u519c\u573a\u6545\u4e8b\uff1a\u738b\u5b50\u548c\u4e94\u5f69\u5976\u725b"} +{"id": "6003626", "video_name": "132f39cf-39db-5717-89fe-4ec00d3ba4be", "text": "RWB\u4fdd\u65f6\u6377911\u5728\u5927\u8857\u4e0a\u884c\u9a76\uff0c\u84b8\u6c7d\u6ce2\u98ce\u683c\uff0c\u9713\u8679\u706f\u524d\u5e97\u9762\uff0c\u4e1c\u4eac\u5e02\u533a\u3002"} +{"id": "3005418", "video_name": "985af4e1-19bd-505c-b875-192321d35bbe", "text": "\u82b1\u56ed\u91cc\u7a81\u7136\u5192\u51fa\u4e00\u9053\u660e\u4eae\u7684\u5149\uff0c\u628a\u5361\u901a\u732b\u6c64\u59c6\u548c\u5361\u901a\u8001\u9f20\u6770\u745e\u5e26\u5230\u4e86"} +{"id": "1006107", "video_name": "701239b6-e189-5649-9c46-6bb134c67e40", "text": "\u524d\u8054\u5408\u56fd\u5de5\u4f5c\u4eba\u5458\u6770\u745e\u00b7\u83b1\u6069\u5728\u65f6\u95f4\u8d5b\u8dd1\u4e2d\u73af\u6e38\u4e16\u754c\uff0c\u963b\u6b62\u4e00\u573a\u6b63\u5728\u63a8\u7ffb\u519b\u961f\u548c\u653f\u5e9c\u7684"} +{"id": "7002977", "video_name": "1dbc957c-2ae6-50b9-ae34-8ef68556f459", "text": "\u8d39\u5fb7\u91cc\u79d1\u00b7\u8d39\u91cc\u5c3c\u98ce\u683c\u7684\u72c2\u6b22\u8282"} +{"id": "3003637", "video_name": "0abca508-c9e2-5754-abf8-7e268f58b4ce", "text": "\u4ed6\u4eec\u4fe9\u4e00\u8d77\u53bb\u5403\u6bd4\u8428\u997c\uff0c\u611f\u89c9\u5f88\u7f8e\u5473\uff0c\u5973\u4eba\u975e\u5e38\u559c\u6b22\uff0c\u52a8\u6f2b\u753b\u9762\uff0c\u9ad8\u8d28\u91cf\uff0c16:9\u753b\u9762"} +{"id": "0003211", "video_name": "394e0269-6125-53db-91e2-fa3b680ac687", "text": "\u975e\u5e38\u8c6a\u534e\u7684\u79c1\u7acb\u5b66\u6821\uff0c\u901a\u8fc7\u8ddf\u8e2a\u955c\u5934\u62cd\u6444\u3002"} +{"id": "2006979", "video_name": "5fd93784-c75c-5be1-9253-597f5d81e5d5", "text": "\u4e00\u4e2a\u5b89\u5353\u673a\u5668\u4eba\u8eba\u5728\u6c99\u6ee9\u4e0a\u3002"} +{"id": "6002419", "video_name": "b965ad81-6c7e-50cd-a873-f8ed47891bc5", "text": "\u4e16\u4ee3\u4e16\u4ee3\uff0c\u4e00\u4f4d\u5973\u6027\u5728\u57ce\u5e02\u4e2d\u625b\u7740\u8d2d\u7269\u888b\uff0cAncell Stronach\u7684\u6570\u5b57\u6e32\u67d3\uff0c\u5728shutterstock\u4e0a\u8d8b\u52bf\u706b\u7206\uff0c\u73b0\u4ee3"} +{"id": "6003087", "video_name": "4150526e-e8f7-58c5-a885-208fee0ed03b", "text": "\u4e00\u684c\u7f8e\u5473\u7684\u4f20\u7edf\u4e2d\u56fd\u83dc\u3002"} +{"id": "2006492", "video_name": "18d31eea-1366-5aeb-8b82-4269c00e6f3a", "text": "\u611f\u6069\u6b7b\u4ea1\u4e50\u961f\u7684\u9ab7\u9ac5\u4e0e\u6770\u91cc\u00b7\u52a0\u897f\u4e9a\u3002"} +{"id": "2004328", "video_name": "06a0f32c-aea5-5ae6-9001-adc2f50dda10", "text": "\u7537\u5b69\u548c\u5973\u5b69\u804a\u5929\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "2004829", "video_name": "ec9e3964-dea1-55f8-8090-fd64fe385ac4", "text": "\u4e00\u4e2a\u6f2b\u753b\u4eba\u7269\u5728\u672a\u6765\u661f\u7403\u4e0a\u884c\u8d70\u3002"} +{"id": "8003975", "video_name": "4499c238-b4bc-5f8b-b11e-a2a76e548f26", "text": "\u9189\u9152\u7684\u4ed3\u9f20\u5728\u91d1\u5e01\u5c71\u9876\u4e0a\u3002"} +{"id": "4002580", "video_name": "6efb8340-5629-5932-827b-9bc944bb190b", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4efd\u9f13\u821e\u4eba\u5fc3\u7684\u89c6\u9891\u3002"} +{"id": "3006413", "video_name": "58dac925-3734-5953-96d7-5064e5fc649d", "text": "\u4e00\u4e2a\u7a7f\u7740\u725b\u4ed4\u88e4\u548c\u725b\u4ed4\u5916\u5957\u768480\u5e74\u4ee3\u5c11\u5e74\uff0c\u9a91\u7740BMX\u8f66\u9ad8\u901f\u7a7f\u884c\uff0c\u540c\u65f6\u5728\u4ed6\u7684\u968f\u8eab\u542c\u4e0a\u542c"} +{"id": "4004269", "video_name": "6d2a5f81-f580-5139-bc94-8649f3b5c760", "text": "\u4e0d\u4ec5\u4ec5\u662f\u5173\u4e8e\u751f\u6d3b\u6280\u5de7\u7684\u95ee\u9898\u3002"} +{"id": "2004229", "video_name": "79025786-4810-54c8-a8c0-c113518bf67d", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5e74\u8f7b\u7684\u53a8\u5e08\u5236\u4f5c\u81ea\u5236\u7389\u7c73\u5377\u914d\u767d\u8272\u8638\u9171\u7684\u89c6\u9891\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u8fd9\u53ea"} +{"id": "2006624", "video_name": "d8536450-cfff-53bc-8bec-628847c4c736", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u5c71\u4e0a\uff0c\u5feb\u901f\u8fd1\u8ddd\u79bb\u62c9\u955c\u5934\u6548\u679c\u3002"} +{"id": "0004129", "video_name": "03b8abe4-00e7-5808-8acf-9975aa1103f3", "text": "\u5f53\u771f\u5b9e\u548c\u8bda\u5b9e\u7684\u751f\u6d3b\u4e2d\u5145\u6ee1\u7231\u548c\u60c5\u611f\u65f6\uff0c\u5b83\u4eec\u66f4\u6709\u4ef7\u503c\u3002"} +{"id": "1005163", "video_name": "5f0ae7b0-ae56-580d-b67c-425f0cebfc99", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\uff0c\u7a7f\u7740\u8863\u670d\uff0c\u5c0f\u77ed\u88d9\uff0c\u767d\u8272\u5934\u53d1\uff0c\u5728\u68ee\u6797\u91cc\u7684\u6f2b\u753b4D\u573a\u666f\u4e2d\u3002"} +{"id": "7003493", "video_name": "3276e804-e7e5-5a7c-a998-a053659bdb1a", "text": "\u795e\u79d8\u7684\u7c73\u8272\u718a\u732b\u4eb2\u543b\u7af9\u5b50\u3002"} +{"id": "2006881", "video_name": "b3fa12b5-826f-5598-b706-aa2a6dcc6906", "text": "\u9ebb\u8fa3\u9762\u4ece\u7897\u91cc\u62cc\u5300\u3002"} +{"id": "5001367", "video_name": "3565768d-ba15-5dc8-a81c-a11f1aa2e67e", "text": "\u6447\u6eda\u97f3\u4e50\u4f1a\u4e0a\u6027\u611f\u7684\u5973\u4eba"} +{"id": "1004721", "video_name": "57947758-c24b-5aa9-843f-c2ca5e1c8520", "text": "\u82b1\u513f\u5728\u592a\u9633\u7684\u7167\u987e\u4e0b\u8301\u58ee\u6210\u957f\u5e76\u7efd\u653e\uff0c\u5438\u6536\u5b83\u7684\u80fd\u91cf\u5e76\u5c06\u5176\u8f6c\u5316\u4e3a\u4ee4\u4eba\u60ca\u53f9\u7684\u8272"} +{"id": "3006542", "video_name": "64312e55-b667-5e3d-afa3-bdc58c929e95", "text": "\u4e00\u6bb5VHS\u5f55\u50cf\u663e\u793a\u4e00\u7fa4\u4eba\u7a7f\u8d8a\u6c99\u6f20\uff0c\u5f55\u50cf\u662f\u7531\u4e00\u53f0\u65e0\u4eba\u673a\u62cd\u6444\u7684\uff0c\u6301\u7eed1\u5206\u949f\u3002"} +{"id": "0004754", "video_name": "0eaccb2d-44a5-57f2-94ac-6b1a7d50efbc", "text": "Source sentence: \u603b\u662f\u8bb0\u5f97\u6e29\u67d4\u667a\u6167\u7684\u732b\u5934\u9e70\u5965\u5229\u5f17\u548c\u68ee\u6797\u4e4b\u821e\u7684\u6b22\u4e50\uff0c\u8d85\u73b0\u5b9e\u7684\u611f\u89c9"} +{"id": "2003976", "video_name": "3065db55-cdda-5961-8403-e188703e9fec", "text": "\u4e00\u7fa4\u62a4\u58eb\u5728\u8fdc\u5904\u7684\u9633\u53f0\u4e0a\u6325\u624b\uff0c\u955c\u5934\u5411\u5916\u62c9\u8fdc\u3002"} +{"id": "3003746", "video_name": "d02d724c-0ea0-5705-92b6-0ba47ca7023a", "text": "\u5973\u5b69\u7ad9\u7740\u4e0d\u52a8\uff0c\u4f01\u9e45\u5728\u6d77\u4e2d\u56db\u5904\u79fb\u52a8\uff0c\u6325\u52a8\u7740\u3002"} +{"id": "6003234", "video_name": "77a6d4a8-0904-5e79-bcbd-4c76118717cf", "text": "\u96ea\u7403\u4e2d\u6709\u4e24\u4e2a\u88ab\u56f0\u5728\u91cc\u9762\u7684\u604b\u4eba\u3002\n\nSource sentence: I am excited to try the new restaurant in town. \n\n\u6211\u5f88\u5174\u594b\u5c1d\u8bd5\u57ce\u91cc\u7684\u65b0"} +{"id": "6002430", "video_name": "45bfb72e-eedc-5680-98dd-dfea3dd9ca9c", "text": "\u4e00\u53ea\u770b\u8d77\u6765\u50cf\u72d7\u7684\u732b\u671d\u6211\u4eec\u8d70\u6765\u3002"} +{"id": "6004598", "video_name": "0cf0adcf-612c-522c-846c-021633b6a6e5", "text": "\u4e00\u6bb5\u53f2\u8bd7\u822c\u7684\u98df\u54c1\u89c6\u9891\u5f15\u8a00"} +{"id": "1004454", "video_name": "5268e034-f4d1-58e9-b4b8-a62384d855c9", "text": "\u7f57\u5bbe\u00b7\u5a01\u5ec9\u59c6\u65af\u4f7f\u7528\u91cf\u5b50\u7ec4\u88c5\u6280\u672f\u4ece\u6b7b\u4ea1\u4e2d\u590d\u6d3b\u3002"} +{"id": "3005427", "video_name": "bd7df3ae-719d-5dc8-8c58-e759adf5e2de", "text": "\u6dfb\u52a0\u5e7d\u7075\u641c \u7d22 \u6d88\u606f\uff1a1 \u4e2a\u9644\u4ef6"} +{"id": "3005746", "video_name": "a20a09fc-56ce-5499-a9fa-9b70547a14ac", "text": "\u7528\u50cf\u7d20\u827a\u672f\u98ce\u683c\u5236\u4f5c\u7684\u89c6\u9891\u6e38\u620f\u5de5\u4f5c\u5ba4\u6807\u5fd7\u52a8\u753b\u3002"} +{"id": "7004426", "video_name": "82864bfd-8385-5633-bc9a-9532c1b14a47", "text": "\u4e00\u4e2a\u7531\u7535\u8111\u5c4f\u5e55\u5236\u6210\u7684\u725b\u8eb2\u5728\u4e00\u7fa4\u725b\u4e2d\u95f4\u3002"} +{"id": "6002019", "video_name": "4f477f88-2033-5074-bb1d-ac78d405eb71", "text": "\u5e74\u8f7b\u5973\u5b50\u9762\u5e26\u5fae\u7b11\u5730\u5728\u8212\u9002\u623f\u5c4b\u7684\u53a8\u623f\u91cc\u559d\u5496\u5561\uff0c\u7535\u5f71\u822c\u768416:9\u3002"} +{"id": "3003912", "video_name": "00cd8184-02d7-55dd-b650-ec8e86d3ebc5", "text": "\u5fae\u7b11\u5e76\u8f6c\u79fb\u8d44\u91d1\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003305", "video_name": "b247c72c-3e3a-5500-9cb4-242c79125224", "text": "\u4e00\u4e2a\u8f6f\u7cd6\u718a\u6b63\u5728\u6253\u53e6\u4e00\u4e2a\u8f6f\u7cd6\u718a\u3002"} +{"id": "2007894", "video_name": "588ed681-26fc-5d65-9ad1-8bfe45173783", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u5957\u88c5\u529e\u516c\u5ba4\u7684\u6905\u5b50\u4e0a\u63a5\u53d7\u91c7\u8bbf\u5e76\u73b0\u573a\u76f4\u64ad\u3002"} +{"id": "5001781", "video_name": "4bc31178-d564-5087-a9b2-b471f356b880", "text": "\u4e00\u67b6\u53d1\u5149\u7684\u98de\u789f\u4ece\u623f\u9876\u4e0a\u98de\u8d70\u4e86\u3002"} +{"id": "1004683", "video_name": "57020eb2-3c7f-59b7-878a-c66027479ffc", "text": "\u4e00\u6839\u9999\u8549\u6b63\u5728\u7528\u6838\u6b66\u5668\u6467\u6bc1\u81ea\u5df1\u3002"} +{"id": "6003538", "video_name": "437f7ab1-574a-59e0-9b22-1525c3e236ea", "text": "2. \u9ad8\u6297\u6c27\u5316\u7269\u542b\u91cf\u53ef\u4fdd\u62a4\u514d\u53d7\u81ea\u7531\u57fa\u548c\u6162\u6027\u75be\u75c5\u7684\u4fb5\u5bb3\u3002"} +{"id": "0005190", "video_name": "165f9cc5-8911-59c1-aeb0-32220feae26a", "text": "\u5a74\u513f\u6c34\u736d\u7684\u5361\u901a\u753b\u7761\u5f97\u5b89\u8be6\u3002"} +{"id": "3005537", "video_name": "7c22038c-21e5-5370-8ca6-56b5136ffee8", "text": "\u5728\u6cf3\u6c60\u6d3e\u5bf9\u4e0a\u5403\u5de7\u514b\u529b\uff0c\u5e74\u8f7b\u4eba\u8eab\u7a7f\u6cf3\u88c5\u548c\u6bd4\u57fa\u5c3c\u3002"} +{"id": "3004619", "video_name": "ef448b2c-2cde-505f-847d-a426849b09c2", "text": "\u72ee\u5b50\u6b63\u9762\u671d\u5411\uff0c\u5411\u5916\u7f29\u653e\uff0c4k\u3002"} +{"id": "6004448", "video_name": "17a72fc4-a938-58ac-a55a-7768c4b6a2db", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u7a7f\u7740\u4f20\u7edf\u7684\u4e2d\u56fd\u670d\u88c5\u3002\u5979\u9ad8\u5174\u5730\u62ff\u7740\u4e00\u7897\u767d\u8272\u5149\u6ed1\u7684\u6c64\u5706\u3002\u91c7"} +{"id": "6004243", "video_name": "024160fb-bde1-5ed5-9ddb-0781a70e0dd7", "text": "\u53d1\u73b0\u8005\u5728\u5de8\u5927\u7684\u5730\u4e0b\u6d1e\u7a74\u5185\uff0c\u653e\u5927\u89c6\u89d2\uff0c\u5185\u90e8\u89c4\u6a21\u5de8\u5927\u3002"} +{"id": "6004476", "video_name": "c2adb87e-453f-5b73-af6c-5b02b73614e9", "text": "\u4e00\u4e2a\u6050\u6016\u573a\u666f\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u9ed1\u6697\u623f\u95f4\u91cc\u5bb3\u6015\u5979\u81ea\u5df1\u7684\u5f71\u5b50\uff0c\u53ea\u6709\u4e00\u76cf\u706f\u548c\u5979\u81ea\u5df1\u7684\u8721"} +{"id": "7004152", "video_name": "25b903c1-5027-5cf2-8e0f-7945f76eb159", "text": "\u4e00\u53ea\u732b\u7528\u897f\u74dc\u6c41\u7834\u574f\u4e86\u732b\u7897\u3002"} +{"id": "3005786", "video_name": "6e156b99-42f0-5075-8dff-da5443953dff", "text": "\u53ef\u6015\u7684\u5916\u661f\u98de\u8239\u5728\u5929\u7a7a\u4e2d\uff0c\u4eba\u4eec\u60ca\u6050\u5730\u89c2\u770b\uff0c\u4f60\u53ef\u4ee5\u5728\u89c2\u4f17\u4e2d\u770b\u5230\u5916\u661f\u4eba\uff0c\u8fd9\u662f\u5165\u4fb5\u4e4b\u524d\u7684\u6050"} +{"id": "6002936", "video_name": "c2f4bca8-6c9a-5169-ae43-7c98dcebabda", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u9ed1\u8c79\u722c\u4e0a\u4e00\u68f5\u5de8\u5927\u7684\u677e\u6811\uff0c\u7136\u540e\u4f18\u96c5\u5730\u8df3\u4e0b\u6765\u3002"} +{"id": "7004656", "video_name": "46fd4798-642a-54bc-8c82-3068c23bacda", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u8fbe\u65af\u7ef4\u8fbe\u5e26\u7740\u89d2\u548c\u957f\u68cd\u5b50\u7ad9\u5728\u706b\u524d\u3002"} +{"id": "1005390", "video_name": "6312a35b-1b78-5cd8-ba61-40b666b3dfe1", "text": "\u9886\u57df\u4e2d\u6709\u6076\u9b54\uff0c\u4ee4\u4eba\u6050\u60e7\uff0c\u690d\u88ab\u67af\u840e\uff0c\u96fe\u6c14\u5f25\u6f2b\uff0c\u6ce8\u89c6\u7740\u6444\u50cf\u673a\uff0c\u9634"} +{"id": "7003521", "video_name": "740aa4f5-aeb4-5984-98fa-7ff9395ee409", "text": "\u4eba\u7fa4\u6325\u821e\u7740\u4ed6\u4eec\u7684\u65a7\u5934\uff0c\u5f00\u59cb\u7838\u5185\u5899\uff1b\u65e5\u672c\u52a8\u753b\u7247\u3002"} +{"id": "3006833", "video_name": "1651ec85-fdfe-5573-a856-63ec22a1feeb", "text": "\u4e00\u8258\u6d77\u519b\u8230\u8239\u5728\u82f1\u683c\u5170\u5468\u6e38\u3002"} +{"id": "1004812", "video_name": "58f17a5c-3e60-5e9d-8ce9-d2c2a6ace321", "text": "\u5f53\u6211\u6536\u5230\u4e00\u5c01\u533f\u540d\u4fe1\u6566\u4fc3\u6211\u8c03\u67e5\u75af\u4eba\u9662\u65f6\uff0c\u6211\u5f00\u59cb\u8fdb\u5165\u9ed1\u6697\u6df1\u5904\u7684\u65c5\u7a0b\u3002\u8fd9\u5c01\u4fe1\u63d0\u5230\u4e86\u5947"} +{"id": "3005297", "video_name": "1ec26011-013a-52fa-884b-f9db043064c4", "text": "16:9\u65b0\u90e8\u843d\u98ce\u683c\u7684\u81ea\u7136\u80cc\u666f\u3002"} +{"id": "8001004", "video_name": "138015c0-41e5-5130-bb2f-335a1a9d5bfe", "text": "\u4e00\u53ea\u72ec\u81ea\u5728\u4e1b\u6797\u4e2d\u7684\u7334\u5b50\uff0c\u4e00\u8fb9\u662f\u72ee\u5b50\uff0c\u53e6\u4e00\u8fb9\u4e5f\u662f\u72ee\u5b50\u3002"} +{"id": "5001563", "video_name": "734bd921-2732-5152-9843-722c572567fb", "text": "\u72d7\u7761\u5728\u6cb3\u524d\uff0c\u6811\u5f00\u82b1\u4e0b\u96e8\u3002"} +{"id": "4004610", "video_name": "ab4e1fdd-c02c-5e1e-a4b3-e088171fdb3b", "text": "\u4e00\u500b\u5e36\u6709\u79fb\u52d5\u96f2\u6735\u7684\u71b1\u5e36\u9732\u71df\u9ad4\u9a57"} +{"id": "2006176", "video_name": "cf5f735a-6294-5540-8495-7ec5ce5bee7b", "text": "\u52a8\u753b\u8001\u864e\u548c\u52a8\u753b\u7280\u725b\u640f\u6597\u768420\u79d2\u89c6\u9891\u3002"} +{"id": "8003442", "video_name": "d5fc13e9-a67f-502f-8eaa-58356e6b53fc", "text": "\u5341\u53ea\u9e21\u5728\u4e00\u4e2a\u6709\u5f88\u591a\u9c7c\u7684\u6c60\u5858\u91cc\u6e38\u6cf3\u3002"} +{"id": "0006402", "video_name": "2bda826c-4058-5d78-a993-519f367359e9", "text": "\u591c\u665a\u7f8e\u4e3d\u5efa\u7b51\u5de5\u5730\u7684\u4fef\u77b0\uff0c\u4e94\u989c\u516d\u8272\u7684\u706f\u5149\u3002"} +{"id": "8002315", "video_name": "6d2699c7-c39e-5952-b8af-87a9a724d1e9", "text": "\u4e1c\u4eac\u4e0b\u96e8\uff0c\u7528\u76f8\u673a\u53d8\u7126\uff0c\u8ba9\u573a\u666f\u66f4\u52a0\u903c\u771f\u3002"} +{"id": "6002425", "video_name": "699df0b0-fb41-5e75-a162-a90cda24bcc1", "text": "10\u79d2\u7684\u89c6\u9891\u5ba3\u4f20Borsa\u822a\u7a7a\u516c\u53f8\u7684\u5229\u6da6\u3002"} +{"id": "1004091", "video_name": "4bc19be5-dc7b-53c6-a13d-a9c9e27793ae", "text": "\u5728\u53e4\u8001\u7684\u4e2d\u56fd\u519c\u6751\uff0c\u4e00\u4f4d\u7275\u7740\u725b\u7684\u8001\u4eba\u5728\u519c\u7530\u65c1\u8fb9\u884c\u8d70\u3002\u8001\u4eba\u5934\u6234\u4e00\u9876\u8349\u5e3d\u3002\u4ece\u5de6"} +{"id": "2005297", "video_name": "27e3f041-d90f-51f6-824b-34808adc1e5c", "text": "\u6811\u6839\u8986\u76d6\u7740\u6d1e\u53e3\u7684\u95e8\u3002"} +{"id": "6002194", "video_name": "22a5e5fc-4337-5857-9ee5-32d819fd6156", "text": "\u5929\u7a7a\u548c\u6cb3\u6d41\u5408\u800c\u4e3a\u4e00\uff0c\u6ca1\u6709\u4e00\u70b9\u7070\u5c18\u3002"} +{"id": "1004326", "video_name": "4fe551f9-29fb-5171-9df6-bd04437b24fa", "text": "\u4e00\u4e2a\u6709\u7f8e\u4e3d\u6c34\u6d77\u7684\u795e\u5947\u68ee\u6797\u3002"} +{"id": "2003505", "video_name": "15537009-8ae9-5b63-93d3-34cf33372d48", "text": "\u72d7\u4f7f\u7528\u964d\u843d\u4f1e\u5728\u6708\u7403\u4e0a\u98de\u884c\u3002"} +{"id": "0004090", "video_name": "0305ed1a-eddf-529d-8543-74aa98ee6d7d", "text": "\u7ec4\u5efa\u5bb6\u5ead\uff0c\u5728\u623f\u95f4\u5185\uff0c\u7535\u5f71\u5f0f\u7279\u5199\u955c\u5934\uff0c\u79fb\u52a8\u6444\u5f71\u673a\u89d2\u5ea6\u3002"} +{"id": "0004261", "video_name": "060489c2-3d48-5b28-b0b2-d50a45990399", "text": "\u521b\u5efa\u4e00\u5e45\u63d2\u56fe\uff0c\u4ee5\u53ef\u89c6\u5316\u751f\u7269\u591a\u6837\u6027\u7684\u4e0b\u964d\u3002\u63cf\u7ed8\u53d7\u5a01\u80c1\u6216\u6fd2\u4e34\u706d\u7edd\u7684\u52a8\u690d\u7269\u7269"} +{"id": "8001169", "video_name": "8cdfe04c-5536-573c-83b6-d809317e15d1", "text": "\u706b\u7bad\u8054\u76df\u6e38\u620f\uff0c\u9a7e\u9a76Octane\u6c7d\u8f66\uff0c\u649e\u51fb\u5927\u53f7\u8db3\u7403\u91d1\u5c5e\u7403\u3002"} +{"id": "3003569", "video_name": "a922ec4c-0f99-5750-a9ec-e1f017c9d6ee", "text": "\u4e24\u67b6\u76f4\u5347\u673a\u5728\u7a7a\u4e2d\u76f8\u649e\u5e76\u7206\u70b8\u3002\u903c\u771f\u7684\u753b\u9762\uff0c\u706b\u7130\uff0c10\u79d2\u89c6\u9891\u3002"} +{"id": "3005835", "video_name": "de177a20-8dad-5d3a-a52f-4cba7730f970", "text": "\u521b\u9020\u4e24\u53ea\u53ef\u7231\u7684\u718a\u732b\u3002\u7b2c\u4e00\u53ea\u718a\u732b\u662f\u767d\u8272\u7684\uff0c\u7b2c\u4e8c\u53ea\u662f\u7ea2\u8272\u7684\u3002"} +{"id": "2004854", "video_name": "45ac9dbc-5581-584b-a552-c888c631cb91", "text": "\u6c99\u6f20\u4e2d\u7684\u5723\u8bde\u6811\uff0c25\u6beb\u7c73"} +{"id": "0003606", "video_name": "405192b6-fbcd-5af0-8a26-e80397e09d31", "text": "\u53f2\u8bd7\u7ea7\u6469\u6258\u8f66\u8d5b\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u7535\u5f71\u7ea7\u753b\u9762\uff0c16:9\u3002"} +{"id": "0006832", "video_name": "33dddc9e-8767-5300-a898-f2c880de21e5", "text": "\u4e00\u5f20\u5e74\u8f7b\u3001\u6f02\u4eae\u7684\u804c\u4e1a\u5973\u6027\u7a7f\u7740\u897f\u88c5\u7ad9\u7acb\u7740\uff0c\u76f4\u89c6\u955c\u5934\uff0c\u5c55\u793a\u5979\u4ece\u5934\u5230\u811a\u7684\u5168\u8c8c\u3002"} +{"id": "0003753", "video_name": "42cd815a-5815-5b27-beed-d4070821b8ec", "text": "\u4e00\u540d\u5973\u6a21\u7279\u5728\u6c99\u6ee9\u4e0a\u884c\u8d70\uff0c\u65e5\u843d\u65f6\u5206\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "8003588", "video_name": "5be523f9-8d1e-5310-96c5-0f44481ac96c", "text": "\u8f7b\u98ce\u5439\u62c2\u7740\u5934\u53d1\uff0c\u5b87\u5b99\u98de\u8239\u5728\u5934\u4e0a\u70b9\u5934\uff0c\u6d41\u661f\u95ea\u8000\uff0c\u661f\u661f\u95ea\u8000\uff0c\u884c\u661f\u65cb\u8f6c\u3002"} +{"id": "0004341", "video_name": "076c6055-1152-5e10-8bdd-623a24b70d61", "text": "\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u591c\u665a\uff0c\u4e00\u4e2a\u5973\u4eba\u7ad9\u5728\u7a97\u524d\uff0c\u7a97\u6237\u6253\u5f00\u7740\uff0c\u623f\u95f4\u91cc\u5f25\u6f2b\u7740\u70df\u96fe\uff0c\u57ce\u5e02\u7684"} +{"id": "3004424", "video_name": "870e6594-9e37-540c-bf74-fb9dda6f2cc5", "text": "\u4eba\u7fa4\u4f38\u624b\u5411\u5929\uff0c\u5723\u7ecf\uff0c\u6e05\u6670\u7684\u9762\u90e8\u7279\u5f81\uff0c\u7535\u5f71\u822c\u7684\u903c\u771f\u611f\uff0c35\u6beb\u7c73\u955c\u5934\u3002"} +{"id": "2006629", "video_name": "dadc0918-2f79-5f5a-87ba-4154c74db22f", "text": "\u52a8\u6f2b\u62ab\u8428\u9910\u5385\uff0c\u665a\u4e0a\uff0c\u6050\u6016\uff0c\u5efa\u7b51\u7269\u3002"} +{"id": "8001373", "video_name": "b1bdbeea-4f96-573a-a7c3-1864f04ec940", "text": "\u4e00\u8258\u96c6\u88c5\u7bb1\u8fd0\u8f7d\u98de\u8239\u5728\u6df1\u7a7a\u4e2d\u7740\u706b\u98de\u884c\u3002\u4ee5\u79d1\u5e7b\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "7002610", "video_name": "b499daf3-0f21-5325-8210-047f6b83d58a", "text": "PlayStation 2\u5f00\u673a\u753b\u9762\uff1aNEW SHOPPE BLESS THIS PLEX\u73af\u5883\u4f18\u7f8e\uff0c\u6697\u6de1\u6e05\u6670\uff0c\u590d\u6742\u591a\u6837\u3002\n\nSource sentence: The museum exhibit showcased a diverse range of artwork,"} +{"id": "0006841", "video_name": "340c6144-e7a5-5dff-a45a-976ede434f08", "text": "\u5728\u6d77\u6d0b\u5185\u521b\u9020\u6d77\u6d0b\u52a8\u7269\u7684\u56fe\u50cf\uff0c\u6e10\u53d8\u989c\u8272\uff0c\u9713\u8679\u706f\u5149\u3002"} +{"id": "4002354", "video_name": "77367956-d9d4-54e2-9023-a727d601f65f", "text": "\u4e00\u53f0\u8be6\u7ec6\u7684\u673a\u5668\u4eba\u6b63\u5728\u6c99\u6f20\u4e2d\u7a7f\u884c\uff0c\u5468\u56f4\u662f\u6469\u5929\u5927\u697c\u3002"} +{"id": "0005066", "video_name": "140f8cf0-7ce5-5a15-920d-116dd5619efe", "text": "\u6c34\u4e2d\u7684\u68ad\u5b50\u9c7c\u8010\u5fc3\u5730\u7b49\u5f85\u7740\u9c7c\u513f\uff0c\u7136\u540e\u6355\u6349\u5c0f\u9c7c\u3002"} +{"id": "4004787", "video_name": "f84ba179-08e9-5f9b-a54a-647c3cb92a3d", "text": "\u4e00\u4e2a\u4eba\u7528\u788e\u7247\u5efa\u9020\u6865\u6881\u7684\u56fe\u50cf\uff0c\u8c61\u5f81\u7740\u4e00\u4e2a\u4eba\u53ef\u4ee5\u5229\u7528\u5931\u8d25\u4f5c\u4e3a\u5efa\u8bbe\u969c\u788d\u7684\u57fa\u77f3\u3002"} +{"id": "7003565", "video_name": "2e900fbf-896d-5303-a5b1-cffcfe21e2ec", "text": "\u5b66\u4f1a\u628a\u63e1\u673a\u4f1a\u7684\u6b63\u786e\u65f6\u673a\u3002"} +{"id": "4004378", "video_name": "8a17afd8-644b-5cbc-b411-bbc100956285", "text": "\u4e16\u754c\u5730\u56fe\uff0c\u56fd\u5bb6\u4ee5\u6d45\u84dd\u8272\u548c\u6df1\u84dd\u8272\u4e3a\u80cc\u666f\uff0c\u767d\u8272\u4e3a\u5e95\u8272\u30021\u7f8e\u5143\u949e\u7968\u5448\u7bad\u5934\u5f62\u72b6\u4f4d"} +{"id": "3005772", "video_name": "6025d1f0-8506-5333-9cdb-765e724750d2", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u4e00\u4e2a\u597d\u5947\u7684\u5e74\u8f7b\u5973\u5b69Maya\u5f00\u59cb\u4e86\u4e00\u6b21\u5192\u9669\u3002"} +{"id": "2006780", "video_name": "39442b16-a5d3-5480-9678-8dafe795a03e", "text": "\u5f53\u4e00\u4e2a\u4eba\u9192\u6765\u65f6\uff0c\u9633\u5149\u7167\u8fdb\u623f\u95f4\u3002"} +{"id": "4003061", "video_name": "73702c12-f10d-513e-a5d0-4c673c973fda", "text": "\u5546\u4e1a\u98de\u673a\u7a7f\u8fc7\u4e91\u5c42\uff0c4K\uff0c\u903c\u771f\u7ec6\u8282\u3002"} +{"id": "1004624", "video_name": "55fb0844-2bf7-564d-b821-c69f8282f961", "text": "\u5973\u4eba\u8dd1\u6b65\u3002\u4fe1\u606f\uff1a\u6709\u8da3\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2004262", "video_name": "f1fb54cf-bcbe-5034-86bf-a14afda74d0f", "text": "\u63a5\u8fd1\u5c0f\u5c4b\u65f6\uff0c\u591c\u7a7a\u7e41\u661f\u95ea\u8000\u3002"} +{"id": "2006447", "video_name": "13217936-96ea-547b-ad5d-3bd8470b069e", "text": "\u51e0\u53ea\u5c0f\u52a8\u7269\u4ee5\u5361\u901a\u98ce\u683c\u73a9\u7403\u3002"} +{"id": "3005157", "video_name": "0e6335fa-7046-59e0-a793-ac73ac13c206", "text": "\u8ba9\u56fe\u50cf\u79fb\u52a8\u5e76\u70b9\u8d5e\u3002"} +{"id": "2007046", "video_name": "acc6c05e-08bd-5424-b270-824c229a99e4", "text": "\u5973\u4eba\u7ad9\u5728\u62c9\u4ec0\u83ab\u5c14\u5c71\u524d\u6446\u59ff\u52bf\u62cd\u7167\uff0c\u5979\u8eab\u540e\u662f\u4e00\u8258\u5de8\u5927\u7684\u5916\u661f\u98de\u8239\uff0c\u8ba9\u5b83\u770b\u8d77\u6765"} +{"id": "0003711", "video_name": "422f1ded-d289-5232-bbe9-18d27b44c48a", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u6e29\u6696\u591a\u4e91\u7684\u96e8\u4e2d\uff0c\u4ed6\u7684\u80cc\u5bf9\u7740\u6211\u4eec\uff0c\u770b\u8d77\u6765\u50cf\u300a\u4e00\u62f3\u8d85\u4eba\u300b\u4e2d\u7684\u5486\u54ee\u517d\u3002"} +{"id": "3004692", "video_name": "0f0c8f3b-d1aa-5594-8a4c-bf1c73a8041e", "text": "\u8389\u8389\u5973\u5b69\u548c\u5c71\u59c6\u7537\u5b69\u5145\u6ee1\u611f\u6fc0\u548c\u80dc\u5229\u5730\u56de\u5230\u4ed6\u4eec\u7684\u6751\u5e84\uff0c\u5e26\u7740\u7115\u53d1\u751f\u673a\u7684\u6c34"} +{"id": "3003817", "video_name": "668fabef-20e5-589f-9aa0-d9b28270e65e", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u821e\uff0c\u7f8e\u4e3d\u52a8\u4eba\uff0c\u7a7f\u7740\u84dd\u8272\u6bd4\u57fa\u5c3c\uff0c\u76f4\u89c6\u89c2\u4f17\u3002"} +{"id": "7003286", "video_name": "d1f5f22d-71c8-52ec-8682-b34f630792ef", "text": "\u5f7c\u5f97\u4ece\u300a\u6076\u641e\u4e4b\u5bb6\u300b\u5403\u610f\u5927\u5229\u9762\u3002"} +{"id": "6002983", "video_name": "29ea1c2a-1486-5750-b22d-c6018895fb97", "text": "2D\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u89c6\u9891\uff0c\u5c55\u73b0\u4e00\u53ea\u767d\u8272\u548c\u68d5\u8272\u7684\u72ee\u5b50\u72d7\u5750\u5728\u5e7f\u573a\u7684\u957f\u6905\u4e0a\uff0c"} +{"id": "0004102", "video_name": "033bcac9-25db-5c64-8c18-719552d92d1f", "text": "\u4e16\u754c\u6b63\u5728\u62e5\u62b1\u6280\u672f\u3001\u4eba\u5de5\u667a\u80fd\u3001\u673a\u5668\u4eba\u548c\u81ea\u52a8\u5316\u8fd0\u52a8\u3002"} +{"id": "3004969", "video_name": "95eeb902-a087-57e9-b579-13baaf841aaf", "text": "\u7535\u5f71\u6444\u5f71\u4e2d\u7684\u6bcd\u4eb2\u6d17\u8863\u670d\uff0c\u4e2d\u666f\u3002"} +{"id": "8001052", "video_name": "988373d3-d040-5384-9909-7c2f98a0443f", "text": "\u4ed6\u5728\u7535\u5f71\u300a\u8d5b\u62c9\u00b7\u7eb3\u62c9\u8f9b\u54c8\u00b7\u96f7\u8fea\u300b\u3001\u300a\u963f\u67e5\u91cc\u4e9a\u300b\u3001\u300a\u6559\u7236\u300b\u3001\u300a\u74e6\u5c14\u6cf0\u9c81\u00b7\u7ef4"} +{"id": "0006244", "video_name": "290f1f17-573a-55c9-80db-17f24a5103fa", "text": "\u9752\u86d9\u58c1\u753b\u53d8\u6210\u4e86\u771f\u6b63\u7684\u5de8\u578b\u9752\u86d9\u3002"} +{"id": "7002042", "video_name": "b0ddebed-7fb6-5ee5-b9db-574d05e10fb7", "text": "\u4e00\u4e2a\u6709\u7740\u9510\u5229\u3001\u751f\u6c14\u52c3\u52c3\u7684\u773c\u775b\u7684\u7537\u4eba\u5728\u8f6c\u52a8\u5934\u90e8\uff0c\u4f7f\u4ed6\u7684\u5934\u53d1\u620f\u5267\u6027\u5730\u6447\u6446\u3002"} +{"id": "2007490", "video_name": "3f280e6d-ce36-517a-8068-a5cfa09a9f9f", "text": "\u533b\u751f\u4e3a\u75c5\u4eba\u8fdb\u884c\u6cbb\u7597\u7684\u89c6\u9891"} +{"id": "0003844", "video_name": "44731de4-bfd6-548f-9be8-88ebdabd48ea", "text": "\u9ea6\u5f53\u52b3\u7684\u7f57\u7eb3\u5fb7\u00b7\u9ea6\u5f53\u52b3\u7684\u6050\u6016\u9762\u5b54\u6b63\u9762\u8bf4\u8bdd\u3002"} +{"id": "6002503", "video_name": "172cf201-4067-5391-8c82-19c245ba4720", "text": "\u665a\u4e0a\u770b\u661f\u661f\u7684\u4eba"} +{"id": "6002082", "video_name": "cc89e7c8-a47c-59b9-abda-d53619646885", "text": "\u5b89\u5c3c\u5854\u548c\u7ef4\u514b\u62c9\u59c6\u5728\u5bfb\u627e\u9e1f\u513f\u7684\u65c5\u7a0b\u4e2d\u9047\u5230\u4e86\u4e00\u4e2a\u6311\u6218\u6216\u969c\u788d\uff0c\u8bf7\u63cf\u8ff0\u5b83\u662f\u4ec0\u4e48"} +{"id": "2004748", "video_name": "b779b535-0e3a-5b59-99ea-86569f494d50", "text": "\u4e00\u53f0\u65e7\u7684\u7535\u89c6\u673a\u5728\u64ad\u653e4K\u7684\u9759\u6001\u753b\u9762\u3002"} +{"id": "2005807", "video_name": "ce8701bd-f12a-5995-a032-6e9c9654ac78", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5145\u6ee1\u6b22\u4e50\u548c\u5947\u5999\u7684\u591a\u5f69\u4e16\u754c\u4e2d\uff0c\u6709\u4e00\u7fa4\u53cb\u5584\u7684\u52a8\u7269\u5c45\u4f4f\u5728\u9b45\u529b\u5341\u8db3\u7684"} +{"id": "6004200", "video_name": "f630804d-a3ac-5645-b296-7134734ea324", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u54aa\u7761\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "0006879", "video_name": "34a6584b-6ee2-567e-b46a-84e8fa62ebf2", "text": "\u4e3b\u548c\u6551\u4e16\u4e3b\u6770\u5e03\u00b7\u5e03\u4ec0\u7279\u6717\u666e\u65d7\u5e1c\u63e1\u624b\u3002"} +{"id": "2006708", "video_name": "ba4985ec-6f05-5861-8e47-7a49e50cc1cd", "text": "\u300a\u53f2\u745e\u514b\u300b\u5361\u901a\u4e2d\u7684\u5c0f\u77ee\u4eba\u4eec\u7528\u900f\u660e\u68fa\u6750\u62ac\u7740\u767d\u96ea\u516c\u4e3b\u3002"} +{"id": "3004624", "video_name": "0f524107-0a8d-52c5-b660-285081151d1d", "text": "\u4e00\u5934\u5927\u8c61\u88ab\u56f0\u5728\u6563\u4e71\u7684\u5ca9\u77f3\u4e2d\uff0c\u7334\u5b50\u4eec\u5e2e\u52a9\u5b83\u8131\u56f0\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004330", "video_name": "074466cd-0e71-5424-a1ca-ca9d48a87907", "text": "\u5965\u5229\u5f17\u548c\u65af\u5e15\u57fa\u548c\u4e00\u5bb6\u5154\u5b50\u4e00\u8d77\u5750\u7740\uff0c\u4eab\u53d7\u7740\u8336\u4f1a\u4e0a\u7684\u7f8e\u98df\u548c\u4e94\u5f69\u6591\u6593\u7684\u8336\u676f"} +{"id": "2007462", "video_name": "524b3770-219e-5f82-b9ab-f991bb18dc52", "text": "\u73b0\u4ee3\u5973\u6027\u7a7f\u7740\u7ea2\u8272\u56f4\u88d9\u5728\u590d\u53e4\u53a8\u623f\u91cc\u7ed9\u86cb\u7cd5\u6d82\u4e0a\u5976\u6cb9\u3002"} +{"id": "4002274", "video_name": "b36d54ad-b8bd-5fd4-92e5-308621cb472d", "text": "\u4e00\u4f4d\u963f\u62c9\u4f2f\u6b4c\u624b\u7ad9\u5728\u821e\u53f0\u4e0a\u5531\u6b4c\u3002"} +{"id": "5001076", "video_name": "3d24be6b-574b-50c4-9806-502a9d74734c", "text": "\u4e00\u4e2a\u5728\u706b\u661f\u4e0a\u7e41\u8363\u7684\u4eba\u7c7b\u5b9a\u5c45\u70b9\u548c\u5148\u8fdb\u7684\u57fa\u7840\u8bbe\u65bd\u7684\u6b96\u6c11\u5730\uff0c\u5f53\u4e00\u67b6\u65f6\u5c1a\u7684\u592a\u7a7a\u706b\u7bad\u79bb\u5f00"} +{"id": "2003046", "video_name": "a4540af6-1f5f-5af9-808d-0c6bde9bc0f6", "text": "\u4e00\u8f86\u6709\u84dd\u8272\u95ea\u5149\u706f\u7684\u5fb7\u56fd\u6d88\u9632\u8f66"} +{"id": "8002657", "video_name": "1a11383d-17ec-5461-aaf9-6a8154ad261b", "text": "\u6c7d\u8f66\u5185\u90e8\u89c6\u89d2\uff0c\u4ece\u540e\u9762\u770b\u5230\u5750\u5728\u9a7e\u9a76\u5ea7\u4e0a\u7684\u7537\u4eba\uff0c\u57ce\u5e02\u8857\u9053\u5916\uff0c\u6b63\u5728\u884c\u9a76\u3002"} +{"id": "0004703", "video_name": "0d97fd5e-c8e3-5d7a-8917-066b585a251e", "text": "\u5728\u7199\u6518\u7684\u57ce\u5e02\u751f\u6d3b\u4e2d\uff0c\u4f4f\u7740\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5b89\u96c5\u3002\u5728\u6469\u5929\u5927\u697c\u4e2d\uff0c\u5979\u72b9\u5982\u4e00\u76cf\u5e0c\u671b\u7684"} +{"id": "7003055", "video_name": "e318066f-f3f1-5f16-a0ef-f1736c6c8d9d", "text": "\u94f6\u8272\u7684\u661f\u661f\u843d\u5728\u5730\u4e0a\uff0c\u5de8\u5927\u7684STARLA\u6d6e\u73b0\u5728\u7a7a\u4e2d\u3002"} +{"id": "3005550", "video_name": "353fa16d-1146-5579-a0ae-4fe67c7ed1c8", "text": "\u5728\u683c\u6597\u573a\u4e0a\u62cd\u6444\u732b\u72d7\u6253\u6597\u7684\u7535\u5f71\u3002"} +{"id": "7002002", "video_name": "dfb8b2b9-652f-57cd-bb38-468350c90e90", "text": "\u52a8\u753b\u3001\u590d\u53e480\u5e74\u4ee3\u3001\u7ea2\u8272\u6050\u6016\u7684\u6316\u6398\u673a\u3001\u5efa\u7b51\u5de5\u5730\u3001\u5893\u5730\u3001\u9489\u8f6e\u3002"} +{"id": "0004383", "video_name": "080c79d8-b602-5848-8bb7-cead82986480", "text": "\u4e00\u6b3e\u53ef\u4ee5\u5012\u6d41\u65f6\u95f4\u7684\u949f\u8868\u3002"} +{"id": "0003285", "video_name": "3ae484cf-0a89-5293-a616-1b5909eaecf3", "text": "\u4eba\u5f62\u4ece\u5145\u6ee1\u706b\u7130\u7684\u5927\u6d1e\u7a74\u4e2d\u8d70\u51fa\u3002"} +{"id": "8003647", "video_name": "6e20ed63-d2f5-5eee-875c-1e219cd9c0f4", "text": "\u65e0\u4eba\u673a\u89c6\u89d2\uff0c\u98de\u884c\uff0c\u6d77\u62d450\u82f1\u5c3a\uff0c\u98ce\uff0c\u903c\u771f\uff0c\u8d85\u73b0\u5b9e\uff0c\u4fef\u77b0\u9ea6\u7530\uff0c4K\uff0c\u6781\u5bbd\u5e7f\uff0c\u7535"} +{"id": "7003468", "video_name": "6a9c7336-58d3-57d0-969f-79a4878be2ee", "text": "\u5973\u5b69\u8096\u50cf\u7535\u5f71\u7f8e\u4e3d\u7684\u5149\u7ebf\u7ed8\u753b"} +{"id": "0004778", "video_name": "0f0c6715-3607-517d-98c1-14ad06428291", "text": "\u9707\u98a4\u505c\u6b62\u4e86\uff0c\u5e9f\u5f03\u7684\u4e0d\u660e\u98de\u884c\u7269\u63a2\u7d22\u7740Eldoria\u8fd9\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u661f\u7403\uff0c\u638c\u8235\u7684\u662f\u5730"} +{"id": "1003998", "video_name": "4a118fc4-1a33-55cb-a41b-21efaca59df6", "text": "Source sentence: Corgi\u5728\u592a\u7a7a\u5934\u76d4\u4e2d\u6f02\u6d6e\u5728\u661f\u661f\u4e2d\u5feb\u4e50\u3002"} +{"id": "0005566", "video_name": "1d0c6870-8c8d-5586-9def-a2fd47991081", "text": "\u5c55\u793aStingray\u548cStarfish\u624b\u7275\u624b\uff0c\u52c7\u6562\u5730\u5192\u9669\u8fdb\u5165\u91cc\u9762\u3002"} +{"id": "6002554", "video_name": "8078c275-e8d7-5d55-b0bd-7df1985de68d", "text": "\u9ed1\u8272\u548c\u68d5\u8272\u8ff7\u4f60\u8fbe\u514b\u65af\u730e\u72ac\uff0c\u540d\u79f0\u4e3a\u730e\u624b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6004324", "video_name": "5cbdbeaa-7e39-54a4-b89b-48ba497a2400", "text": "leapt into the air and pounced on the helpless prey.\n\nTranslation: \u8001\u864e\u4e3a\u4e86\u5c55\u793a\u4ed6\u7684\u529b\u91cf\uff0c\u8df3\u8d77\u6765\u6251\u5411\u65e0\u52a9\u7684\u730e\u7269\u3002"} +{"id": "1003271", "video_name": "3c37ba0a-cab7-5853-b198-119538de70b5", "text": "\u65e7\u4f26\u6566\uff0c\u7ef4\u591a\u5229\u4e9a\u88c5\u675f\uff0c\u4ee5\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "0005479", "video_name": "1b73a275-0ffe-5539-ac6d-079982bb663f", "text": "\u8001\u5f0f\u9ed1\u767d\u955c\u5934\u653e\u5927\uff0c\u805a\u7126\u5728\u4e00\u4e2a\u8001\u5f0f\u673a\u5668\u4eba\u505a\u624b\u52bf\u5e76\u8bf4\u8bdd\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u6709\u98de\u884c\u5668\u7684\u5de8\u578b\u57ce\u5e02\u3002\n\nSource sentence"} +{"id": "8002347", "video_name": "658cb2c7-ee1b-5344-ab93-dab9b21bcb65", "text": "\u4e00\u53ea\u732b\u7684\u6709\u8da3\u4e8c\u7ef4\u52a8\u753b\u3002"} +{"id": "4003253", "video_name": "f0c211b2-fa08-52c2-bf6e-b679c57d6993", "text": "\u4e00\u540d\u5973\u5b50\u5728\u9910\u9986\u91cc\u7528\u9ea6\u514b\u98ce\u5531\u6b4c\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5965\u5229\u7ef4\u5c14\u00b7\u74e6\u5c14\u585e\u5947\u300132K U"} +{"id": "2004152", "video_name": "52151834-6735-5606-b2aa-ff955f4a3da1", "text": "\u624d\u534e\u5f15\u64ce\u627e\u5230\u4e86\u5feb\u4e50\u7684\u5f8b\u5e08\u3002"} +{"id": "3003483", "video_name": "8224d9c7-3896-5267-b960-d045e1d61017", "text": "\u7011\u5e03\u8f70\u9e23\u7740\uff0c\u5c0f\u718a\u6728\u6728\u611f\u5230\u975e\u5e38\u65b0\u5947\u3002\u7a81\u7136\uff0c\u4e00\u7fa4\u5c0f\u7cbe\u7075\u4ece\u6811\u540e\u548c\u82b1\u53f6\u95f4\u8df3"} +{"id": "2007041", "video_name": "50065289-8a49-5e95-84d4-f365de528b4e", "text": "\u8fd9\u4e2a\u6545\u4e8b\u7684\u5bd3\u610f\u662f\uff0c\u6211\u4eec\u5e94\u8be5\u59cb\u7ec8\u52aa\u529b\u5e2e\u52a9\u6709\u9700\u8981\u7684\u4eba\uff0c\u5373\u4f7f\u8fd9\u610f\u5473\u7740\u8981\u7279\u610f\u53bb\u505a\u3002\u6bcf\u4e00\u4e2a\u5c0f\u5c0f\u7684"} +{"id": "3004919", "video_name": "6c28a69d-e166-5da9-a360-c2452cc56029", "text": "\u5de8\u5927\u7684\u6e7f\u5a46\u795e\u6ce8\u89c6\u7740\u4e00\u4e2a\u5fae\u5c0f\u7684\u7537\u5b69\uff0c\u5468\u56f4\u5f25\u6f2b\u7740\u96fe\u6c14\u3002"} +{"id": "8003974", "video_name": "75904a96-93e5-504e-b1d6-a56073fe89d9", "text": "1954\u5e74\u6709\u5173\u5854\u5854\u5229\u4e9a\u7684\u7f8e\u56fd\u65b0\u95fb\u5f71\u7247\uff0c\u6469\u5929\u5927\u697c\u3002"} +{"id": "3004563", "video_name": "3b9d10d0-4096-526d-b939-95a85e6ec1dc", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6050\u60e7\u4e2d\u5954\u8dd1\uff0c\u80cc\u666f\u79fb\u52a8\uff0c4K\u5206\u8fa8\u7387\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "8001463", "video_name": "204cec97-9587-503c-81ab-66eafc1a9d76", "text": "\u4e00\u540d\u5e74\u8f7b\u53ef\u7231\u7684\u65e5\u672c\u5973\u5b50\u6b63\u5728\u79cb\u672b\u671f\u95f4\u5728\u4eac\u90fd\u5d6f\u5ce8\u91ce\u7684\u6e21\u6708\u6865\u4e0a\u8f7b\u677e\u6109\u5feb\u5730\u6563\u6b65"} +{"id": "5001280", "video_name": "71ec57ad-3ef2-58a8-ac3a-ff6ce29ba17f", "text": "\u4e00\u9053\u95ea\u7535\u7167\u4eae\u4e86\u573a\u666f\uff0c\u63ed\u793a\u51fa\u4e00\u6761\u7a7f\u8fc7\u66b4\u98ce\u96e8\u7684\u9053\u8def\u3002"} +{"id": "3005452", "video_name": "0255ee5b-2540-5ea2-8fb5-27dbb70c5072", "text": "\u975e\u5e38\u903c\u771f\u7684\u7da0\u8272\u9b3c\u602a\u6b63\u671b\u8457\u524d\u65b9\uff0c\u80cc\u666f\u662f\u9ed1\u591c\u68ee\u6797\u30024K\u3002"} +{"id": "8001204", "video_name": "b6403c95-1995-5a30-959d-6cec65b8e685", "text": "\u7334\u5b50\u5728\u8db3\u7403\u573a\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003864", "video_name": "227f16bf-c133-587d-b4a7-7f9c90fd2db4", "text": "\u4e00\u5343\u53ea\u9e3d\u5b50\u4ece\u5730\u9762\u98de\u5411\u5929\u7a7a\uff0c\u6c99\u6f20\u3001\u767d\u8272\u6c99\u6ee9\u3001\u9633\u5149\u3001\u5854\u91cc\u6cd5\u6c99\u6f20\u3002"} +{"id": "2005148", "video_name": "fdb79311-84b7-5132-a8c3-f1784b23f163", "text": "\u75af\u5e3d\u5b50\u5728\u505a\u624b\u63a8\u8f66\u7ffb\u6eda\uff0c\u6211\u4eec\u90fd\u662f\u75af\u5b50\u3002\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "2004760", "video_name": "89e22f07-7977-5b4c-895d-0b41882b54f2", "text": "\u4e00\u500b\u4eba\u985e\u5927\u8166\uff0c\u53ef\u611b\u5730\u6234\u8457\u8056\u8a95\u5e3d\u5b50\u5728\u4e00\u500b\u554f\u7b54\u7bc0\u76ee\u4e2d\u5411\u4eba\u5011\u63d0\u554f\u3002"} +{"id": "1003865", "video_name": "4740137d-ab1a-58e7-b7c4-ed7044614519", "text": "\u6258\u6bd4\u00b7\u9a6c\u594e\u5c14\u5149\u7740\u8eab\u5b50\u548c\u533b\u751f\u5947\u5f02\u535a\u58eb\u6218\u6597\u3002\u9ed1\u6697\u7684\u623f\u95f4\u3002\u84dd\u8272\u7684\u5149\u7ebf\u3002\u7535\u5f71"} +{"id": "2003921", "video_name": "cc0c19fb-085a-5f70-a77f-43b4bcf6785c", "text": "\u4e00\u5f20\u6a21\u62df\u7684\u5f69\u8272\u7167\u7247\uff0c50\u5e74\u4ee3\u7684\u9910\u9986\uff0c\u5e95\u7279\u5f8b\uff0c\u5bbd\u666f\uff0c\u5ba4\u5916\uff0c\u80f6\u7247\u9897\u7c92\u611f\uff0c\u4ee5\u5b89\u585e"} +{"id": "4003539", "video_name": "d9fd5635-9852-5ec9-b2b0-1ef09c65f606", "text": "\u4e00\u4e2a\u6ca1\u6709\u9762\u5b54\u7684\u62bd\u8c61\u4eba\u5750\u5728\u65e0\u9650\u9ed1\u6697\u7a7a\u95f4\u7684\u4e2d\u592e\u3002\u63a5\u4e0b\u6765\u7684\u573a\u666f\u4e2d\uff0c\u4ed6\u5f39\u6307\u4e00\u6325\uff0c\u6240\u6709\u9ed1\u6697\u7a7a\u95f4\u53d8\u6210"} +{"id": "0004482", "video_name": "09b8a1e6-8ccf-5f90-b3b7-4b745a9c1619", "text": "\u4e00\u6761\u7eff\u8272\u7684\u86c7\u54ac\u4f4f\u5c4f\u5e55\uff0c\u4f7f\u5f97\u4e00\u5207\u53d8\u5f97\u9ed1\u6697\u3002 \n\nSource sentence: She is studying Chinese in Beijing. \n\n\u5979\u6b63\u5728\u5317\u4eac\u5b66\u4e60\u4e2d"} +{"id": "2007852", "video_name": "3790b0da-9939-5697-9346-2ee30c327ee4", "text": "\u4e00\u5ea7\u5c71\u7684\u7f8e\u666f\u3002\u4fe1\u606f\uff1a\u6293\u4f4f\u4eca\u5929\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6002718", "video_name": "60055d9c-b636-5dad-84b5-eb88cb183a3d", "text": "\u4eba\u7ad9\u7740\uff0c\u706b\u5728\u71c3\u70e7\uff0c\u6444\u50cf\u673a\u5728\u79fb\u52a8\u3002"} +{"id": "0003493", "video_name": "3e850ab5-57c5-58fc-9d5e-86d0be605ad5", "text": "\u4e00\u4e2a\u65cb\u8f6c\u7684\u4e09\u7ef4\u6f29\u6da1\uff0c\u6f29\u6da1\u5185\u6709\u4e09\u7ef4\u5f69\u8272\u95ee\u53f7\u3002"} +{"id": "2004739", "video_name": "2f392977-3dc8-586e-838e-e5e2a51733e7", "text": "\u521b\u9020\u4e00\u4e2a\u540d\u4e3a\u8bfa\u4e9a\u7684\u5723\u7ecf\u4eba\u7269\u5f62\u8c61\uff0c\u5728\u56fe\u50cf\u4e2d\u4ed6\u4f1a\u542c\u5230\u4e0a\u5e1d\u7684\u58f0\u97f3\u3002"} +{"id": "6002092", "video_name": "7819dd43-03a7-5a17-9b1e-a13d38eec6e9", "text": "\u5c0f\u738b\u5b50\u548c\u8774\u8776"} +{"id": "8002081", "video_name": "5d1b51fd-4ee8-55ab-b9af-2592004dd36e", "text": "\u5e74\u8f7b\u7684\u7537\u5b69\u80cc\u5bf9\u7740\u57ce\u5e02\u884c\u8d70\uff0c\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002\u4e0b\u7740\u96e8\uff0c\u8857\u4e0a\u8f66\u8f86\u548c\u4eba\u6d41\u7199\u6518"} +{"id": "6003280", "video_name": "089326af-81ab-5ccc-8b9d-6045b27238f3", "text": "\u5b87\u5b99\u98de\u8239\u8d77\u98de\uff0c\u7c89\u8272\u7684\u5915\u9633\uff0c\u4e91\u5f69\uff0c\u7f8e\u4e3d\u3002"} +{"id": "0005050", "video_name": "13c7b389-15f3-5909-9d53-7a02a3c67d2b", "text": "\u4e00\u4e2a\u957f\u5ea6\u4e3a1\u5206\u949f\u7684Valorant\u526a\u8f91\u89c6\u9891\u3002"} +{"id": "0004332", "video_name": "07499428-3b9c-5727-bcee-6d8277df45a4", "text": "\u67e5\u7406\u5179\u00b7\u585e\u9686\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728 Epcot \u4e2d\u5fc3\u7684\u4eba\u884c\u9053\u4e0a\u8d70\u8def\u3002"} +{"id": "4003407", "video_name": "3c1a56c7-3a13-57e4-8e2a-9c52c4a9a014", "text": "\u4e58\u5ba2\u7684\u98de\u673a\u8d77\u98de\u5e76\u98de\u884c\u3002"} +{"id": "8003191", "video_name": "75ae36ba-6e25-523c-9184-fa7e102121ae", "text": "\u54c8\u5c14\u79d1\u592b90\u5e74\u4ee3\u7684\u6218\u4e89\uff0c\u7535\u5f71\uff0c\u6444\u5f71\uff0c\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "8003635", "video_name": "d8d9b087-6ffb-592e-a5a1-e25fde613348", "text": "\u5de8\u5927\u7684\u69b4\u83b2\u58f3\u6709\u56db\u4e2a\u8f6e\u5b50\u548c\u7a97\u6237\uff0c\u770b\u8d77\u6765\u50cf\u4e00\u8f86\u80fd\u52a8\u7684\u6c7d\u8f66\u3002"} +{"id": "6003084", "video_name": "e8ab193d-b369-5a64-a68f-e90e3f5c93b6", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u592a\u7a7a\u4e2d\u6325\u821e\u7740\u963f\u5c14\u5df4\u5c3c\u4e9a\u56fd\u65d7\u3002"} +{"id": "0003226", "video_name": "3999de4e-d574-58d9-8130-58e9dab97f23", "text": "\u5c55\u793a\u96f7\u7535\u5982\u4f55\u4ece\u5e26\u6709\u6728\u8d28\u5899\u58c1\u7684\u7a97\u6237\u4e2d\u6253\u51fb\u3002"} +{"id": "5001943", "video_name": "46d38713-8941-5f03-aaf8-62d22615b95c", "text": "\u4e00\u53ea\u72d0\u72f8\u6cbf\u7740\u68ee\u6797\u5c0f\u8def\u8dd1\uff0c\u9047\u89c1\u4e86\u7ea6\u7ff0\u5c3c\u00b7\u5fb7\u666e\u3002"} +{"id": "2004951", "video_name": "037f187f-7d31-52e2-bd72-a67532fce3f7", "text": "\u6e05\u6668\u7684\u68ee\u6797\u91cc\uff0c\u9633\u5149\u7a7f\u8fc7\u7a00\u758f\u7684\u6811\u53f6\u7167\u5c04\u5728\u6e56\u9762\u4e0a\u3002\u4e00\u53ea\u5c0f\u8239\u60a0\u95f2\u5730\u6f02"} +{"id": "3003655", "video_name": "7a4286a3-a265-55e3-b061-1f105839c321", "text": "\u9e7f\u9a0e\u5728\u99ac\u4e0a\uff0c\u8ffd\u9010\u4e00\u500b\u4eba\u7a7f\u904e\u68ee\u6797\u3002"} +{"id": "2004123", "video_name": "6b8dbed1-d7a7-5ad9-a492-537e0eee3926", "text": "\u955c\u5934\u62c9\u8fdc\uff0c\u62cd\u6444\u5230\u6574\u4e2a\u62f3\u51fb\u573a\uff0c\u63ed\u793a\u51fa\u4e00\u4e2a\u7ad9\u5728\u89d2\u843d\u91cc\uff0c\u6234\u7740\u624b\u5957\uff0c\u8138\u4e0a\u5e26\u7740\u575a\u5b9a"} +{"id": "1006919", "video_name": "7e7a6bc8-1d3b-516b-8db9-68d6af114aca", "text": "made by the autonomous driving system.\n\n\u6c7d\u8f66\u6839\u636e\u81ea\u52a8\u9a7e\u9a76\u7cfb\u7edf\u6240\u505a\u7684\u51b3\u7b56\u6765\u91c7\u53d6\u884c\u52a8\u3002\n\nSource sentence: The robot is programmed to perform a variety of tasks, including cleaning"} +{"id": "7002823", "video_name": "6864198b-0293-566d-bbd5-2782872cc1b8", "text": "\u4e00\u4e2a\u9965\u997f\u7684\u8001\u4eba\u7a7f\u7740\u7d2b\u8272\u6709\u8da3\u7684\u5e3d\u5b50\uff0c\u5206\u88c2\u62106\u4e2a\u4e0d\u540c\u7684\u56fe\u50cf\uff0c\u67ef\u8fbe\u8096\u50cf800\u3002"} +{"id": "2007682", "video_name": "0aa2484d-53e4-57bf-a4f2-2be5c5eb8ace", "text": "ISRO\u706b\u7bad\u5fc5\u987b\u7740\u9646\u5728\u91d1\u661f\u884c\u661f\u4e0a\u3002"} +{"id": "6003094", "video_name": "a2c87319-c6e4-51e6-aac0-eab5817bd5b0", "text": "\u65f6\u95f4\u6d41\u901d\u6444\u50cf\u673a\u79fb\u52a8\u6269\u97f3\u5668\u53d1\u8a00\u3002"} +{"id": "0003210", "video_name": "394b2531-e352-5564-af60-b2aac674328e", "text": "\u4e00\u90e820\u4e16\u7eaa60\u5e74\u4ee3\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u7537\u4eba\u9a7e\u9a76\u98de\u884c\u5668\u7a7f\u8d8a\u6d77\u4e0a\u60ac\u6d6e\u7684\u5de8\u578b\u7d2b\u8272\u6c34\u6676\u4eba\u5934"} +{"id": "1003502", "video_name": "40c1df15-4a5b-589f-99ee-fbddb6c1cfd3", "text": "\u5929\u84dd\u8272\u7684\u4e91\u6735\u6c34\u5e73\u5206\u88c2\u6210\u4e24\u534a\u3002"} +{"id": "8002507", "video_name": "55629d81-d163-557b-8a4f-b83dac5db80f", "text": "\u5728\u52a0\u6c99\u751f\u6d3b\u7684\u7834\u788e\u6b98\u9918\u4e4b\u524d\uff0c\u8036\u7a4c\u986f\u73fe\u70ba\u9a0e\u5728\u767d\u99ac\u4e0a\u7684\u9a0e\u58eb\uff0c\u4ed6\u7684"} +{"id": "3006428", "video_name": "e08f4615-b584-5845-8854-4085b8b50d44", "text": "\u5c0f\u7537\u5b69\u5728\u8d85\u5e02\u91cc\u8d70\u7740\uff0c\u4ece\u8d27\u67b6\u4e0a\u62ff\u8d77\u6c34\u679c\u3002"} +{"id": "2003241", "video_name": "75329d02-e16b-5177-9f52-0244b449d005", "text": "\u8036\u7a23\u57fa\u7763\u5728\u76f8\u673a\u955c\u5934\u4e0b\u88ab\u6355\u6349\uff0c\u653e\u5927\u81f3\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u5927\u9897\u7c92\u9ed1"} +{"id": "2005219", "video_name": "b39437f5-54c5-5c1d-9a17-662f002d70f7", "text": "\u6d77\u4e2d\u6709\u4e00\u53ea\u5c0f\u7f8e\u4eba\u9c7c\uff0c\u548c\u9c7c\u513f\u5feb\u4e50\u5730\u6e38\u52a8\u7740\uff0c\u8eab\u7740\u6f02\u4eae\u7684\u8863\u670d\uff0c\u9762\u5bb9\u6e05\u6670\u3002"} +{"id": "0003198", "video_name": "391ec397-fc4e-5762-bbeb-1d8a7ac79e42", "text": "\u7687\u5ba4\u662f plugg \u7c7b\u578b\u8282\u62cd\u7684\u4e00\u4e2a\u5b50\u6d41\u6d3e\uff0c\u4ee5\u4f7f\u7528\u7ba1\u5f26\u4e50\u5668\u7684\u58f0\u97f3\u4e3a\u7279\u70b9\u3002\u8fd9\u4e9b\u8282\u62cd\u901a\u5e38\u5177\u6709\u5d07\u9ad8\u548c\u5e84"} +{"id": "3003828", "video_name": "a445fa7b-c767-56a3-b7e2-4327bb091477", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u5728\u516c\u56ed\u91cc\u6709\u4e00\u4e2a\u673a\u5668\u4eba\u3002\n\nSource sentence: Can you pass me the salt, please? \n\n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "4003660", "video_name": "7bb8fdf8-31fc-5123-a4b9-3bda21a3348e", "text": "\u7528\u751f\u52a8\u7b80\u6d01\u7684\u8bed\u8a00\u63cf\u8ff0\u4e00\u4e2a\u79cd\u5b50\u5728\u77ed\u77ed\u4e09\u79d2\u949f\u5185\u795e\u5947\u5730\u6210\u957f\u4e3a\u4e00\u68f5\u6210\u719f\u7684\u6811\u3002\u6355\u6349\u8fd9\u79cd"} +{"id": "2004326", "video_name": "1be99b54-dc15-5487-80dc-4cb3320b4ecd", "text": "\u5929\u7a7a\u95ea\u70c1\u7740\u4ee4\u4eba\u5bb3\u6015\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u5e7f\u89d216:9\u3002"} +{"id": "3003180", "video_name": "6b4146cc-cca2-568d-9862-1819b0718129", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u5fc3\u4e2d\u71c3\u70e7\u7684\u7075\u9b42\u4e4b\u706b\u7684\u5f62\u8c61\u3002"} +{"id": "0005488", "video_name": "1bb31a5a-b92e-5987-9f07-100d9074e925", "text": "\u773c\u775b\u8fd9\u4e2a\u56fe\u6848\u672c\u8eab\u6709\u7740\u66f4\u6df1\u539a\u7684\u5386\u53f2\u3002 \n\nSource sentence: The company is currently facing financial difficulties due to the pandemic. \n\n\u516c\u53f8\u76ee\u524d\u7531\u4e8e\u75ab\u60c5\u539f"} +{"id": "3006355", "video_name": "38a976a5-8dd1-5786-b91e-bc8dfb1db5ae", "text": "\u8a79\u59c6\u65af\u00b7\u97e6\u4f2f\uff08James Webb\uff09\u900f\u8fc7\u671b\u8fdc\u955c\u89c2\u6d4b\u706b\u661f\u3002"} +{"id": "1006225", "video_name": "722c2326-5754-5c03-a9aa-0d21759dbdaa", "text": "\u60ca\u53eb\u548c\u6df7\u4e71\u7684\u6076\u68a6\u822c\u573a\u666f"} +{"id": "5001248", "video_name": "a50f7ff4-03fd-52c8-92b9-97a00a212d1a", "text": "\u4e00\u5bf9\u4eba\u6b63\u5728\u901a\u8fc7\u4e00\u4e2a\u900f\u660e\u7684\u73bb\u7483\u96a7\u9053\uff0c\u4ece\u4e0a\u65b9\u7684\u65e0\u4eba\u673a\u89c6\u89d2\u53ef\u4ee5\u770b\u5230\u56fe\u50cf\u4e2d\u795e\u79d8\u800c\u6050\u6016\u7684\u6c1b\u56f4\u3002"} +{"id": "6002530", "video_name": "2ec063b5-0336-5ebe-b716-0367e1255b7c", "text": "\u4e00\u4e2a\u79d1\u5b66\u5bb6\u6b63\u5728\u8fdb\u884c\u673a\u68b0\u5b9e\u9a8c\u3002"} +{"id": "3003913", "video_name": "71dba63d-b5e5-5a76-a1e7-2e4495d10d50", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u7537\u4eba\u7a7f\u8fc7\u68ee\u6797\u7684\u704c\u6728\u4e1b\u3002 \n\nSource sentence: I enjoy listening to classical music while I work. \n\u6211\u559c\u6b22\u542c\u53e4\u5178\u97f3\u4e50"} +{"id": "8001991", "video_name": "2ff8c714-1fd9-54cb-9715-b5b72654c0ae", "text": "\u60f3\u8c61\u4e00\u8f86\u8f66\u5728\u96ea\u5c71\u4e0a\u8d5b\u8f66\uff0c\u8f66\u8f6e\u4e0a\u7740\u706b\u3002"} +{"id": "4003490", "video_name": "e595f466-8324-58a9-aaa3-176461ce5854", "text": "\u521b\u4f5c\u9ed1\u6697\u52a8\u753b\uff1a\u6211\u7684\u5185\u5fc3\u82e6\u7b11\u7740\uff0c\u4ed6\u5fae\u7b11\u5e76\u5632\u7b11\u3002"} +{"id": "8003788", "video_name": "300b90bf-1bc1-532d-b10b-8dbf13feaa53", "text": "1944\u5e74D\u65e5\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u3002"} +{"id": "2007881", "video_name": "cc36b330-1a15-5379-9f02-65ec61a7d0a3", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u9cb8\u9c7c\u7a81\u7136\u8dc3\u51fa\u6c34\u9762\u7684\u753b\u9762\uff0c\u8dcc\u843d\u5728\u6c34\u4e2d\uff0c\u6e85\u8d77\u6c34\u82b1\u548c\u6d77\u6d6a\u3002"} +{"id": "6004184", "video_name": "d6002538-44a9-5bf1-87a1-c5624459d50e", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u5b50\u7684\u68d5\u53d1\u7537\u5b50\u65e9\u4e0a\u9192\u6765\uff0c\u4f38\u4e86\u4e2a\u61d2\u8170\uff0c\u7136\u540e\u8d70\u5230\u53a8\u623f\u7684\u5496\u5561\u673a\u524d"} +{"id": "2006345", "video_name": "51c0113d-04eb-556e-b1a2-bb7272e0bcd5", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u5370\u5ea6\u7537\u5b69\u7528\u4ed6\u7684\u53cc\u7b52\u671b\u8fdc\u955c\u89c2\u5bdf\u7eff\u8272\u68ee\u6797\uff0c\u53ef\u4ee5\u770b\u5230\u8fdc\u5904\u7684\u4e00\u7fa4\u9e7f"} +{"id": "0005696", "video_name": "1f94fd75-47c5-55c6-aa51-b9e4812e9176", "text": "\u5728\u52a0\u62ff\u5927\u591a\u4f26\u591a\u5e02\u4e2d\u5fc3\uff0c\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u591a\u6837\u6027\u7684\u57ce\u5e02\u4e2d\uff0c\u6709\u4e00\u4e2a\u53eb\u505aBrookside\u7684\u53e4\u96c5\u793e\u533a\u3002\u8fd9\u662f\u4e00\u4e2a\u5bb6\u65cf"} +{"id": "7004648", "video_name": "e81ca800-dde7-5a54-a18e-8d81f0a40a23", "text": "\u592a\u7a7a\u8231\u4ee5\u8bfa\u66fc\u00b7\u6d1b\u514b\u5a01\u5c14\u98ce\u683c\u5411\u5730\u7403\u4f20\u9012\u7231\u7684\u4fbf\u6761\u3002 \n\nSource sentence: The new restaurant in town has a cozy atmosphere and delicious"} +{"id": "6003648", "video_name": "2325032e-a25e-51fb-9596-49bf48a4ee8d", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u6500\u722c\u8c46\u830e\u3002"} +{"id": "2007173", "video_name": "82870589-5713-541b-a1d6-427f91c9042d", "text": "3D\u6253\u5370\u673a\u6b63\u5728\u6253\u5370\u4e00\u4e2a\u751f\u65e5\u5feb\u4e50\u7684\u673a\u7532\u3002\n\nSource sentence: Learning a new language can open up a world of opportunities.\n\u5b66\u4e60\u4e00\u95e8\u65b0\u8bed\u8a00\u53ef\u4ee5\u6253\u5f00\u4e00\u4e2a\u673a"} +{"id": "1005673", "video_name": "6838eb62-f3ae-5338-b77c-661e7a2f344b", "text": "\u80cc\u666f\u6a21\u7cca\u3001\u6d41\u7545\u8fc7\u6e21\u548c\u7b11\u58f0\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005946", "video_name": "23c4cfca-73c2-588a-bb5b-395367318cd3", "text": "\u4e00\u53ea200\u7c73\u5de8\u578b\u84dd\u8272\u8774\u8776\u5728\u57ce\u5e02\u98de\u7fd4\uff0c\u7f8e\u4e3d\u52a8\u4eba\u3002"} +{"id": "2003318", "video_name": "f21bfd53-603c-5df1-880f-94504d8f4e35", "text": "\u5c06\u8138\u6362\u6210\u4e0d\u540c\u7684\u7537\u4eba\uff0c\u5e76\u6dfb\u52a0\u62bd\u8c61\u6cb9\u753b\u548c\u6d82\u9e26\u3002"} +{"id": "0005499", "video_name": "1be05070-fec9-50a0-ad2b-3dd8177a6a3e", "text": "Translated sentence: \u4e00\u676f\u52a8\u8d77\u6765\u7684\u5976\u8336\u3002"} +{"id": "0006768", "video_name": "32b3e1d1-fc24-5ccc-ab3e-50ed5da2b5ba", "text": "\u4e00\u4f4d\u8b66\u5bdf\u5728\u6797\u4e2d\u6218\u58d5\u7948\u7977\uff0c\u80cc\u666f\u662f\u9ec4\u660f\u65f6\u7684\u7206\u70b8\uff0c\u4fa7\u89c6\u3002"} +{"id": "5001619", "video_name": "9f1303ef-7331-5099-a5d3-12f9eeb63836", "text": "\u7537\u4eba\u7ad9\u8d77\u6765\u8d70\u5f00\uff0c\u521b\u9020\u4e00\u4e2a\u9ed1\u8272\u548c\u6781\u7b80\u7684\u573a\u666f\uff0c\u5c55\u73b0\u4e00\u4e2a\u6c89\u7740\u51b7\u9759\u7684\u667a\u8005\u5728\u5b81\u9759\u7684\u73af\u5883\u4e2d\u4f20"} +{"id": "0006908", "video_name": "35292154-7787-5a6d-a844-0412c6bd9346", "text": "\u4e00\u53ea\u732b\u65b0\u95fb\u8bb0\u8005\u8c08\u8bba\u5929\u6c14\u3002"} +{"id": "7004223", "video_name": "3a04b41f-80c6-5b7e-9580-1fb513e267ca", "text": "\u5728\u4e00\u7247\u7eff\u8272\u68ee\u6797\u4e2d\uff0c\u540a\u7740\u4e00\u53f0\u540a\u6247\u3002"} +{"id": "3005126", "video_name": "94a26618-c2e2-59c2-91a4-889c62356f0d", "text": "\u4e00\u4e2a\u7537\u5b69\u624b\u6301\u4e00\u74f6\u767e\u4e8b\u53ef\u4e50\u8df3\u821e\u3002"} +{"id": "6003302", "video_name": "22759ef4-beec-555d-8aa3-4bd16cfb43a0", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u7f69\u7684\u4eba\u5728\u5bb6\u91cc\u7ed9\u4e00\u4e2a\u4eba\u9012\u98df\u7269\u3002"} +{"id": "7004351", "video_name": "54d647c4-ae2b-54a0-becc-a69d63fe7c09", "text": "\u6e7f\u6da6\u7684\u4e1b\u6797\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "1003449", "video_name": "3fe78b7f-f6e5-5509-9949-a51512216233", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u591a\u529b\u591a\u6ecb\u5728\u97f3\u4e50\u4f1a\u4e0a\u6f14\u594f\u7535\u5409\u4ed6\u3002"} +{"id": "5001466", "video_name": "a0be8778-e065-5b0e-9956-f7d9c71e35a5", "text": "\u4e00\u53ea\u52c7\u6562\u65e0\u754f\u5730\u51b2\u5411\u519b\u961f\u7684\u72ee\u5b50\u3002"} +{"id": "0004025", "video_name": "01bca16d-4a3a-58e9-b2ef-21b7865be8da", "text": "\u9ed1\u767d\u7535\u5f71\u4e2d\u7684\u6697\u6ce2\u56fe\u50cf\uff0c\u51fa\u73b0\u572820\u4e16\u7eaa\u521d\u3002"} +{"id": "0005284", "video_name": "17c5a63b-1e29-5e22-b66d-1a9a7962d22c", "text": "\u592a\u9633\u7cfb\u7684\u8f68\u9053\u9769\u547d\u3002"} +{"id": "1004562", "video_name": "54bc06fc-a340-5d8a-959c-65598baedd7d", "text": "\u7f8e\u4e3d\u7684\u5929\u7a7a\u6709\u4e91\u5f69\uff0c\u5145\u6ee1\u5e78\u798f\u3002\u4ecd\u7136\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8001790", "video_name": "0bdd3921-9c1c-5906-9bcf-133c1ca599d6", "text": "\u4e00\u4e2a\u95ea\u8000\u7740\u91d1\u5149\u7684\u5fc3\u4ece\u706b\u4e2d\u8bde\u751f\uff0c8K\u3002"} +{"id": "3006881", "video_name": "58761c7d-f29a-5f49-ab1e-6573446323a2", "text": "EDM\u6f14\u5531\u4f1a\uff0c\u5145\u6ee1\u4eba\u7fa4\u548c\u5f69\u8272\u706f\u5149\u3002\u4fe1\u606f\uff1a\u89c6\u89c945\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09\u3002"} +{"id": "1004192", "video_name": "4d80b692-6999-572d-981b-5fee9dc14d2f", "text": "PAL\u683c\u5f0f\u3002\u4e00\u4e2a\u5355\u4e00\u4f46\u6709\u6548\u7684\u5e7b\u89c9\u56fe\u6848\uff0c\u62e5\u6709\u5206\u522b\u65cb\u8f6c\u7684\u62d6\u52a8\u70b9\u3002"} +{"id": "8003699", "video_name": "691e3aa0-0545-5640-aacd-21609f7308fd", "text": "\u4e2d\u56fd\u7537\u5b50\u9a7e\u8f66\u65f6\uff0c\u4ed6\u4ee5\u4e3a\u662f\u5b89\u5168\u5e26\u7684\u5e7d\u7075\u624b\u6a2a\u7a7f\u4ed6\u3002"} +{"id": "0006926", "video_name": "35693ef9-cfb8-52b5-9844-f9eb4d75edd3", "text": "\u5c55\u793a\u8d85\u8fc7250\u4e07\u5370\u5ea6\u519b\u961f\u5728\u4e8c\u6218\u4e2d\u505a\u51fa\u7684\u91cd\u8981\u8d21\u732e\u7684\u89c6\u9891\u3002"} +{"id": "1006624", "video_name": "7979e45c-0a7e-50b1-b464-2554c47801e7", "text": "\u4ed6\u89c2\u5bdf\u5230\u5730\u7403\u9876\u90e8\u7684\u4e00\u4e2a\u6d1e\u53e3\u3002"} +{"id": "2007821", "video_name": "9f717d62-13a7-5a25-af8c-fc23b674bf2a", "text": "\u61d2\u60f0\u52a8\u7269\u8bd5\u56fe\u5728\u88c5\u6ee1\u8702\u871c\u7684\u5927\u5bb9\u5668\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0006332", "video_name": "2ac28bc2-77fe-5653-8fbf-58af33460bb3", "text": "\u4e00\u987f\u7f8e\u4e3d\u7684\u9910\u684c\u665a\u9910\uff0c\u70b9\u7740\u8721\u70db\u548c\u9c9c\u82b1\u3002"} +{"id": "6002882", "video_name": "5a469de4-7c2b-55a1-b235-5cb09c735fdc", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u516c\u4f17\u9762\u524d\u8df3\u821e\u3002"} +{"id": "8001294", "video_name": "b64ecc74-e166-502f-843c-6ed790613702", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u51ac\u591c\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u9897\u660e\u4eae\u7684\u661f\u661f\u98de\u8fc7\u3002"} +{"id": "8003609", "video_name": "66fa4c84-98c2-5eb7-9028-8f566f2e7b57", "text": "\u9b3c\u9b42\u5728\u4e00\u8258\u7834\u8239\u5185\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\uff0c\u7ec6\u8282\uff0c\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u7ec6\u8282\uff0c4k\u3002"} +{"id": "6003629", "video_name": "6b64eb26-1189-5528-8602-a68d21a9a82f", "text": "1970\u5e74\u4ee3\u79d1\u5e7b\u7535\u89c6\u8282\u76ee\u5e8f\u5217\u7684\u7247\u5934\u5b57\u5e55\u4e2d\uff0c\u592a\u7a7a\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u79fb\u52a8\uff0c\u80cc\u666f\u4e2d\u6709\u592a\u7a7a\u7ad9\uff0c\u7279\u6548\u975e\u5e38"} +{"id": "2007720", "video_name": "eb2ed430-d82a-5ce9-aa54-c8ed6e8d3c1c", "text": "\u5728\u6d77\u91cc\u6709\u6c14\u6ce1\uff0c\u9c7c\u5728\u6e38\u52a8\u3002"} +{"id": "0003036", "video_name": "35ece90b-9e00-5668-93d5-0ac805bc89a2", "text": "\u8fd0\u52a8\u5458\u5728\u8d8a\u5357\u80e1\u5fd7\u660e\u5e02\u4eab\u7528\u51b0\u6dc7\u6dcb\uff0c\u9ec4\u660f\u65f6\u5206\uff0c4K\uff0c\u80f6\u7247\u76f8\u673a\uff0c\u67ef\u8fbePortra\u3002"} +{"id": "6002816", "video_name": "72f140b5-9103-59d9-b272-a4fa21601bad", "text": "\u665a\u4e0a\u5728\u7a7a\u8361\u8361\u7684\u529e\u516c\u5ba4\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u7535\u8111\u4e0a\u7f16\u7801\uff0c\u5916\u9762\u4e0b\u7740\u96ea\u3002"} +{"id": "1006924", "video_name": "7e9d2acb-ebb9-5708-8fda-bdd37f8807e6", "text": "\u5728\u8d85\u5feb\u7684\u8282\u594f\u4e2d\u8ff7\u5931\u4e86\u65b9\u5411\u3002"} +{"id": "0006133", "video_name": "271a04f9-b665-5ad7-9ecf-1cc51886ce9f", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u4f4e\u8f66\u5e95\u7ebf\u8f6e\u5728\u8fde\u7eed\u5faa\u73af\u4e2d\u65cb\u8f6c\uff0c8K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u9ad8\u5ea6\u903c\u771f\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u9ad8"} +{"id": "3003965", "video_name": "e77e648e-7288-55ef-ad9c-867660bba48e", "text": "\u7537\u5973\u901a\u8fc7\u52aa\u529b\u548c\u4ed8\u51fa\u5b9e\u73b0\u76ee\u6807\u7684\u526a\u8f91\u3002"} +{"id": "5001696", "video_name": "7aee70c3-40ad-5abd-98cd-4d0a5f9a9b26", "text": "\u4ed9\u5883\u5973\u795e\u624b\u6301\u5251\u5728\u96e8\u6797\u4e2d\u52a0\u5195\uff0c\u8d85\u903c\u771f\u76844K\u7535\u5f71\u3002"} +{"id": "1003888", "video_name": "47ae1e2f-fd42-5d56-b73f-07aeee142e55", "text": "\u4e00\u53ea\u6bdb\u8338\u8338\u7684\u732b\u8df3\u4e0a\u684c\u5b50\u3002"} +{"id": "3003066", "video_name": "646d685f-678a-53a7-8067-aee16eca8de6", "text": "\u5728\u68ee\u6797\u91cc\u751f\u6210\u4e00\u53ea\u72ee\u5b50\u76843D\u52a8\u753b\u56fe\u50cf\u3002"} +{"id": "1006528", "video_name": "777ea6af-129d-5f84-bf07-9965e4855036", "text": "\u7d2b\u8272\u548c\u84dd\u8272\u7684\u6c34\u6ef4\u7f20\u7ed5\u5728\u4e00\u8d77\u7684\u89c6\u9891\u3002"} +{"id": "2006777", "video_name": "bffe5a22-99a2-5b48-a3c3-cd92c2a6c68a", "text": "\u4e00\u4f4d\u52c7\u6562\u800c\u806a\u660e\u7684\u7f8e\u4eba\u9c7c\u751f\u6d3b\u5728\u8fd9\u4e2a\u6df1\u6d77\u4e16\u754c\u4e2d\u3002"} +{"id": "3006486", "video_name": "1a9754dd-312a-5858-a7bd-711c9f8d3ca7", "text": "\u53e4\u4ee3\u6c49\u671d\u7684\u8857\u9053\u4e0a\uff0c\u4eba\u4eec\u7199\u7199\u6518\u6518\uff0c\u5929\u7a7a\u4e2d\u9e1f\u513f\u7ff1\u7fd4\uff0c\u4e00\u6d3e\u7e41\u8363"} +{"id": "2006601", "video_name": "e30de18a-d452-5178-bf23-e4b119129984", "text": "\u7531\u4e8e\u7f3a\u4e4f\u5177\u4f53\u8bc1\u636e\uff0c\u8fd9\u4e2a\u7406\u8bba\u7ecf\u5e38\u53d7\u5230\u6000\u7591\u7684\u6001\u5ea6\u3002"} +{"id": "2007349", "video_name": "879a552d-74fb-5ecc-8c1f-d16bc3664fb7", "text": "\u753b\u50cf\u4e0a\u7684\u9b3c\u9b42\u7741\u5f00\u773c\u775b\u5e76\u95ed\u4e0a\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "8002073", "video_name": "1cbc4e8b-0ff8-511c-b0bc-b71c91798df3", "text": "\u5916\u661f\u4eba\u4ece\u79d8\u5bc6\u4e2d\u5fc3\u89c2\u5bdf\u592a\u7a7a\uff0c16\u6beb\u7c73\uff0c\u5199\u5b9e\uff0c\u9ed1\u767d\u3002"} +{"id": "6004776", "video_name": "f1b82792-72bc-5a6b-a932-35a8b4386881", "text": "\u5728\u68ee\u6797\u4e2d\u5efa\u6a21\u76db\u5f00\u7684\u82b1\u6735\u76843D\u7248\u672c\u3002 \n\nSource sentence: The company's profits have increased by 20% this quarter. \n\n\u516c\u53f8\u672c\u5b63\u5ea6\u7684\u5229\u6da6\u589e\u957f"} +{"id": "7004871", "video_name": "bd356fb2-97d3-54a4-8dad-4b1b84c4e93a", "text": "\u4e00\u4e2a\u5bcc\u6709\u7684\u4eba\u5728\u547c\u6551\uff0c\u8981\u6c42\u6551\u63f4\u4ed6\u6b63\u5728\u7740\u706b\u7684\u623f\u5b50\u3002"} +{"id": "7004842", "video_name": "90a553f9-8746-5fb1-bac5-46e780e7b569", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u5efa\u7b51\u7269\u5730\u4e0b\u5ba4\u91cc\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u90a3\u91cc\u5f88\u6697\uff0c\u51e0\u4e4e\u6ca1\u6709\u5149\u7ebf\u3002"} +{"id": "5001541", "video_name": "b8e0f6c1-88d4-5a4e-b683-693f319c187f", "text": "\u970d\u6bd4\u7279\u90e1\u7684\u623f\u5b50\u4ee5\u50cf\u7d20\u827a\u672f\u683c\u5f0f\u5448\u73b0\uff0c\u7c7b\u4f3c\u4e8e\u300a\u661f\u9732\u8c37\u7269\u8bed\u300b\u6e38\u620f\u3002"} +{"id": "8003982", "video_name": "be7da712-6c80-51b9-9f86-9b02b392a846", "text": "\u4e00\u7fa4\u5404\u79cd\u5404\u6837\u7684\u4e1b\u6797\u52a8\u7269\u805a\u96c6\u5728\u4e00\u4e2a\u5927\u7684\u7a7a\u5730\u4e0a\uff0c\u4ece\u8361\u79cb\u5343\u7684\u7334\u5b50\u5230\u5728\u5730\u4e0a\u5403\u8349\u7684\u5927\u8c61"} +{"id": "8003455", "video_name": "2e544c17-ab7b-5f24-85ed-19abfb665aae", "text": "\u6708\u4eae\u5728\u6674\u6717\u7684\u591c\u7a7a\u4e2d\u9010\u6e10\u6d88\u5931\u3002"} +{"id": "7004145", "video_name": "ed7bb378-dcf4-5899-9c99-a5956fddeedb", "text": "\u7f51\u6e38\u73a9\u6709\u4ec0\u4e48\u4f18\u52bf\uff1f"} +{"id": "4004570", "video_name": "c96bc8ec-faa1-5911-9c30-f70b7abbe93c", "text": "\u53e4\u8463\u7167\u7247\uff0c\u6e29\u6696\u7684\u8272\u8c03\uff0c\u5c55\u73b0\u4e86\u7956\u6bcd\u548c\u5979\u7684\u5b59\u5b50/\u5b59\u5973\u8bfb\u4e66\u7684\u573a\u666f\u3002\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u3002"} +{"id": "6004468", "video_name": "541c28b0-5dd5-5ea0-b70a-c7809eb5a5b6", "text": "Source sentence: \u8682\u8681\u5728\u68ee\u6797\u91cc\u8986\u76d6\u7740\u4e00\u53ea\u5c0f\u9e1f\u7684\u5c38\u4f53\u3002\n\nSource sentence: The sun was setting behind the mountains, casting a warm glow over the valley"} +{"id": "5001875", "video_name": "dc63c2d3-08cc-5165-bd38-2df1d08455ad", "text": "\u4e00\u4e2a\u4eba\u5728\u98ce\u683c\u7c7b\u4f3c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u68ee\u6797\u91cc\u884c\u8d70\uff0c\u8d85\u73b0\u5b9e\u7684\u5149\u7ebf\uff0c\u5730\u4e0a\u6709\u6c34\u548c\u53cd\u5c04\uff0c\u865a\u5e7b\u5f15"} +{"id": "8003790", "video_name": "93409c29-bb36-5d3b-8558-2c09a2236a1c", "text": "\u65a7\u5934\u780d\u8fdb\u6728\u5934\u91cc\uff0c\u6728\u5c51\u56db\u6563\u98de\u6e85\u3002"} +{"id": "0003978", "video_name": "00fd02a6-f5f7-5935-b889-cfb1e6bfeacc", "text": "\u7531\u6ef4\u843d\u7684\u7194\u5ca9\u6784\u6210\u7684\u98de\u884c\u5c9b\u5c7f\uff0c\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\u5feb\u901f\u4e0a\u5347\u3002"} +{"id": "0003657", "video_name": "4129912d-ba8e-5839-be40-9aa127c15128", "text": "\u5f17\u6d1b\u62c9\uff0c\u66fe\u7ecf\u662f\u4e00\u4e2a\u9633\u5149\u5973\u5b69\uff0c\u73b0\u5728\u5374\u6295\u5c04\u51fa\u51b0\u51b7\u7684\u76ee\u5149\uff0c\u8bf4\u7740\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136"} +{"id": "5001139", "video_name": "b3fd8451-053e-5251-93ed-c4d465bcfa70", "text": "\u6d77\u6d0b\u4e0a\u8086\u8650\u7684\u95ea\u7535\u98ce\u66b4\u3002\u4fe1\u606f\uff1aCRYSTALFOCUS.NET\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005242", "video_name": "1725c6b7-067a-5fde-b3b1-20058f9e7f73", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u58eb\u5728\u65e9\u6668\u6cbf\u7740\u6d77\u5cb8\u7ebf\u8dd1\u6b65\u3002"} +{"id": "3005747", "video_name": "4d1ff175-400f-5406-8a44-94ff6fe455f2", "text": "\u4e00\u8f86\u706b\u8f66\u5728\u65e5\u672c\u7f8e\u4e3d\u7684\u666f\u8272\u4e2d\u524d\u884c\uff0c\u6709\u6a31\u82b1\u6811\uff0c\u4e91\u6735\u5411\u53f3\u79fb\u52a8\uff0c\u5929\u7a7a\u4e2d\u6709\u9e1f\u513f\u98de"} +{"id": "2003877", "video_name": "531dd131-b438-55e1-9be1-a6d31b67c881", "text": "\u9910\u5385\u4e9a\u6d32\u98df\u54c1\u98ce\u666f\u6162\u52a8\u4f5c\u70f9\u996a\u852c\u83dc\u6cf0\u5f0f\u8fa3\u6912\u5207\u67e0\u6aac8K\u771f\u5b9e"} +{"id": "1004046", "video_name": "4b116d4b-3f70-551a-9582-8d633d4e7595", "text": "\u96f7\u9b3c\u4e3b\u9898\u7684\u7259\u4e70\u52a0\u8272\u5f69\u3002\u4fe1\u606f\uff1a\u62c9\u65af\u5854\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5001328", "video_name": "b69cb0ff-811e-5908-af77-509e6b0a1c0f", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u68ee\u6797\u7684\u9ed1\u591c\u4e2d\u3002"} +{"id": "8001818", "video_name": "f79ba5da-9f74-5380-9322-bdd40765822e", "text": "\u7a7f\u7740JK\u670d\u88c5\u7684\u9ad8\u4e2d\u5973\u751f\u7ad9\u5728\u6cf3\u6c60\u91cc\u3002"} +{"id": "3004529", "video_name": "6302c872-4f53-5dce-9863-5a3195fe42c2", "text": "\u6838\u80fd\u70b9\u7684PNG\u56fe\u7247"} +{"id": "7004150", "video_name": "99e9291a-ae4a-5c21-8c1c-bd14143687a4", "text": "\u5728\u8fd9\u4e2a\u4e3b\u9898\u4e0a\u5236\u4f5c\u4e00\u4e2a5\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u9e23\u4eba\u548c\u4f50\u52a9\u4f7f\u7528\u4ed6\u4eec\u6807\u5fd7\u6027\u7684\u672f\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "0004593", "video_name": "0ba2acad-8089-5a58-9c12-ec3b02e17fcc", "text": "\u70df\u96fe\u5f39\u767d\u4eae\u5149\u7206\u70b8"} +{"id": "1005810", "video_name": "6acdddbc-693c-5ad2-8ccd-c0dc8aed7a8b", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u6e38\u620f\u300aDayZ\u300b\u7684\u89c6\u9891\u3002"} +{"id": "2007511", "video_name": "e24857fe-2caa-598b-8111-33e613b203d0", "text": "\u4e00\u5e45\u5b81\u9759\u7684\u6c34\u4e0b\u753b\u9762\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u6d77\u725b\u5728\u6c34\u8349\u4e2d\u4f18\u96c5\u5730\u6e38\u52a8\u3002"} +{"id": "4003676", "video_name": "98a66a06-3d9c-5cb2-8213-565ecd2e97eb", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u6355\u6349\u8fde\u7eed\u8fdb\u6b65\u548c\u52a8\u6001\u80fd\u91cf\u7684\u672c\u8d28\u3002\u89c6\u9891\u5e94\u8be5\u4f20\u9012\u4e00\u79cd\u8fd0\u52a8\u548c\u524d\u8fdb\u7684\u52a8\u529b\u611f\uff0c\u8c61\u5f81\u7740\u521b\u65b0"} +{"id": "4004861", "video_name": "a3d0f85d-e7fa-5801-9477-cd746c5d66fa", "text": "\u5c55\u793a\u4e00\u4e2a\u7537\u4eba\u5728\u6865\u4e0a\uff0c\u62bd\u70df\uff0c\u7a7f\u7740\u8fde\u5e3d\u886b\uff0c\u7ecf\u8fc7\u96e8\u540e\uff0c\u5728\u591c\u665a\u3002"} +{"id": "8002701", "video_name": "64605168-57c6-5adc-8e69-52176c7f88ee", "text": "\u5148\u77e5\u7a46\u7f55\u9ed8\u5fb7\u548c\u4e00\u4e9b\u540c\u4f34\u5750\u5728\u5929\u5802\u82b1\u56ed\u91cc\u3002"} +{"id": "6002879", "video_name": "7d3f2c48-c334-5ee0-a875-76b047778827", "text": "\u592a\u7a7a\u5c9b\u4e0a\u7684\u7537\u4eba\u6b63\u5728\u505a\u6709\u6c27\u8fd0\u52a8\u3002"} +{"id": "0005521", "video_name": "1c378d31-6eec-54a9-a4a4-fdd3433dfb68", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e24\u4e2a\u5e74\u8f7b\u7684\u4e9a\u6d32\u7537\u5973\u5728\u9152\u5427\u91cc\u559d\u5f88\u591a\u74f6\u5564\u9152\u3002"} +{"id": "0003372", "video_name": "3c7102d7-3102-51e2-b7a5-acfe58aa9c23", "text": "\u4e00\u4f4d\u5728\u300a\u5821\u5792\u4e4b\u591c\u300b\u4e2d\u5f39\u5409\u4ed6\u7684\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "3006930", "video_name": "4990a363-ab5a-5507-80ae-2860ceb39505", "text": "\u7c89\u8272\u706f\u5149\u73af\u7ed5\u5730\u94c1\u8f66\u53a2\u4e0a\u6ee1\u662f\u6d82\u9e26\u300a\u5317\u6781\u661f\u7684\u96ea\u300b\u987a\u6ed1\u7684\u8d5b\u535a\u670b\u514b\u98ce\u683c"} +{"id": "0003650", "video_name": "40ff6c2a-c509-5296-8bd5-742a15405718", "text": "\u7279\u6280\u66ff\u8eab\u7a7f\u7740\u7fc5\u8180\u98de\u884c\u5957\u88c5\u7a7f\u8d8a\u76f4\u5347\u673a\u8eab\u4f53\u3002"} +{"id": "3006962", "video_name": "14b13e85-b780-5459-9d9e-70c22ed5393c", "text": "\u5f3a\u8c03\u9009\u62e9\u6b63\u786e\u7684\u9762\u5305\u998d\u7684\u91cd\u8981\u6027\u3002"} +{"id": "4004734", "video_name": "4f3ac50c-cb9e-5c87-94c5-51a035d1bfc1", "text": "\u63cf\u8ff0\u53e5\uff1a\u4e00\u5e45\u52a8\u6f2b\u753b\u98ce\u683c\u7684\u89c6\u89c9\u56fe\uff0c\u63cf\u7ed8\u4e00\u540d\u9ed1\u53d1\u5e74\u8f7b\u5973\u5b69\u7a7f\u7740\u8fde\u5e3d\u886b\u5728\u57ce\u5e02\u7684\u6821"} +{"id": "0003834", "video_name": "4445923d-5d8c-5be8-827d-4939be3dae0d", "text": "setting in the horizon.\n\nTranslation: \u7537\u4eba\u5750\u5728\u6d77\u5cb8\uff0c\u9ec4\u660f\u65f6\u5206\u6ce8\u89c6\u7740\u6d77\u9762\uff0c\u5915\u9633\u5728\u5730\u5e73\u7ebf\u4e0a\u843d\u4e0b\u3002\n\nSource sentence: The cat is sleeping on"} +{"id": "4004636", "video_name": "11bc76ce-d7e4-5034-a353-b102743bfdae", "text": "\u521b\u9020\u4e00\u4e2a\u8c61\u5f81\u89c2\u4f17\u62e5\u62b1\u672a\u6765\u7684\u5f62\u8c61\u3002\u8003\u8651\u4f7f\u7528\u5404\u79cd\u89d2\u8272\u4e0e\u804a\u5929\u673a\u5668\u4eba\u6216\u672a\u6765\u7684\u57ce\u5e02\u666f\u89c2\u4e92\u52a8\u3002"} +{"id": "6002451", "video_name": "921476a7-3b28-521e-ba8a-ea934e438ab6", "text": "\u6709\u8bb8\u591a\u4eba\u751f\u6d3b\u5728\u7f8e\u4e3d\u7684\u4e16\u754c\u4e2d\u3002"} +{"id": "0005326", "video_name": "18b8a802-4458-5cea-b998-b4a2b53a2076", "text": "\u4e09\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u8ffd\u6355\u4e00\u53ea\u5154\u5b50\uff0c\u65f6\u957f\u4e3a10\u79d2\u3002"} +{"id": "0004136", "video_name": "03e3ecfc-3013-5541-b65f-71d30e7051d9", "text": "\u6d77\u6d0b\u7684\u6ce2\u6d6a\u4f34\u968f\u7740\u5fc3\u5f62\u548c\u95ea\u5149\uff0c\u4f20\u9012\u7740\u7231\u3002"} +{"id": "4003745", "video_name": "52df05d0-1bbf-5e58-98d8-f1f3a9854946", "text": "\u672a\u6765\u7684\u613f\u666f\u662f\u4eba\u5de5\u667a\u80fd\u5df2\u7ecf\u5e7f\u6cdb\u5b58\u5728\u4e8e\u6211\u4eec\u7684\u751f\u6d3b\u4e2d\u3002\u6211\u4eec\u770b\u5230\u4eba\u4eec\u4f7f\u7528\u667a\u80fd\u52a9\u624b\u3002"} +{"id": "2005611", "video_name": "8f5dfbdd-eb4f-5c71-8950-86d628ac8503", "text": "\u653e\u5927\u4e00\u4e2a1932\u5e74\u516c\u5bd3\u5efa\u7b51\u5916\u5899\u4e0a\u7684\u7a97\u6237\u3002"} +{"id": "3006615", "video_name": "b8ca259d-3cee-5ffd-b415-6f42143ab146", "text": "\u6291\u90c1\u75c7\u5728\u4eba\u7c7b\u4e2d\u7684\u5047\u8bbe\u5f62\u8c61\u3002"} +{"id": "8001617", "video_name": "a567f88d-cc36-5092-9e52-86864e925321", "text": "\u6559\u5ba4\u91cc\u6709\u51e0\u4e2a\u5b69\u5b50\u4e3e\u624b\u5411\u8001\u5e08\u63d0\u95ee\uff0c\u573a\u666f3\u3002"} +{"id": "2004662", "video_name": "f1ae7301-fc1c-5382-89b1-1bd667a5a724", "text": "\u60f3\u8c61Sparky\u6447\u7740\u5c3e\u5df4\uff0c\u5f53Lily\u56de\u5fc6\u8d77\u90a3\u573a\u795e\u5947\u7684\u5192\u9669\u65f6\uff0c\u5728Meadowville\u7559\u4e0b\u4e86\u6301\u4e45\u7684\u5e78"} +{"id": "0006975", "video_name": "3614c70d-a749-5eec-b67a-30dbed922cb5", "text": "\u4e00\u79cd\u52a8\u6001\u8fc7\u6e21\u548cPaytm\u6807\u5fd7"} +{"id": "4002282", "video_name": "d4cff559-287b-59eb-b369-56a2cbcf2e26", "text": "\u4e00\u5f20\u4ee5\u7535\u5f71\u7167\u7247\u98ce\u683c\u4e3a\u7279\u8272\u7684\u5e0c\u814a\u65af\u591a\u5609\u6d3e\u54f2\u5b66\u5bb6\u514b\u5229\u5b89\u63d0\u65af\u7684\u8096\u50cf\uff0c\u9ed1\u767d\u8272\u8c03\uff0c"} +{"id": "4002174", "video_name": "ec6f49fb-7b6d-5d34-8801-260061f5c943", "text": "\u5e93\u5229\u662f\u6765\u81eaYouTube\u7684\u6e38\u620f\u4e3b\u64ad\u3002"} +{"id": "4004369", "video_name": "4b881021-395d-5d06-902d-422ef24b10d3", "text": "\u4e00\u53ea\u516c\u9e21\u7ad9\u5728\u6811\u4e0a\u9ad8\u58f0\u557c\u53eb\u3002\u592a\u9633\u5347\u8d77\u4e86\u3002\uff08\u519c\u592b\u53bb\u7530\u5730\u5f00\u59cb\u5de5\u4f5c\u3002\uff09"} +{"id": "0004546", "video_name": "0b0d4d7a-ef5f-50b1-8f7f-68d144d7f660", "text": "\u4e00\u6bb530\u79d2\u957f\u7684\u98de\u72d7\u89c6\u9891"} +{"id": "7003044", "video_name": "9b3938ab-931c-5924-a3bb-8a466da5679a", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u6551\u751f\u5458\u5728\u6d77\u6ee9\u4e0a\u8dd1\u7740\u3002\u5168\u8eab\u955c\u5934\u3002\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "0004758", "video_name": "0ebe92d6-ad35-5025-a6f8-23dcdffa1631", "text": "\u5728\u96e8\u6797\u623f\u5c4b\u7684\u9732\u53f0\u4e0a\u5750\u7740\uff0c4K\u89c6\u9891\u3002"} +{"id": "5001016", "video_name": "a9ddc2f4-b1a1-57b0-8987-955168576ea1", "text": "\u4e00\u53ea\u732b\u5934\u9e70\u7ad9\u5728\u4e00\u53ea\u5154\u5b50\u65c1\u8fb9\uff0c\u4e24\u53ea\u4e00\u8d77\u7b11\u3002"} +{"id": "1003999", "video_name": "4a11db5e-9a84-5f00-8f2d-7f56e9c6e341", "text": "\u5c55\u793a\u4e00\u7247\u8212\u9002\u7684\u68ee\u6797\u5750\u843d\u5728\u4e24\u5ea7\u5de8\u5927\u7684\u5c71\u5cf0\u4e4b\u95f4\u3002"} +{"id": "8003604", "video_name": "4b057e08-36ac-52fe-8d49-85e18871d0a5", "text": "\u4e00\u8f86\u6c7d\u8f66\u56e0\u7231\u5c14\u5170\u5171\u548c\u519b\u6c7d\u8f66\u70b8\u5f39\u7206\u70b8\u3002"} +{"id": "4004938", "video_name": "7bcd5b0b-d96f-5bff-9ee6-806e38308539", "text": "\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u666f\u89c2\u4e2d\uff0c\u4e00\u4e2a\u673a\u68b0\u4ed9\u5973\u5728\u9713\u8679\u706f\u548c\u5168\u606f\u5e7f\u544a\u724c\u4e2d\u4f18\u96c5\u5730\u76d8\u65cb\uff0c\u5979"} +{"id": "6003845", "video_name": "ac65b382-1d99-5b73-b061-b1b56964d2f3", "text": "\u4e00\u4e2a\u7537\u4eba\u6389\u4e86\u4e00\u7f50\u6cb9\u6f06\u3002"} +{"id": "1006029", "video_name": "6ecabaff-baca-5a52-98c9-aa7918736f26", "text": "\u82cf\u8054\u4fc4\u7f57\u65af\u767b\u6708\u7684\u5f71\u50cf\uff0c\u903c\u771f\u3002"} +{"id": "2003494", "video_name": "769d6de2-06fe-5ef5-9c58-27b81d6ec174", "text": "\u9a6c\u91cc\u5965\u662f\u4e00\u4e2a\u8611\u83c7\uff0c\u5403\u7740\u8611\u83c7\uff0c\u5728\u4e00\u4e2a\u8611\u83c7\u5c4b\u91cc\u3002"} +{"id": "2004473", "video_name": "33fa3335-91ac-56e7-bcd8-c57775232057", "text": "\u5728\u9a6c\u63d0\u5c3c\u514b\u7684\u623f\u95f4\u91cc\uff0c\u5f53\u4f60\u51dd\u89c6\u7740\u5bbd\u9614\u7684\u7a97\u6237\uff0c\u6df1\u591c\u4e2d\u7684\u66b4\u96e8\u843d\u4e0b\uff0c\u521b\u9020\u51fa\u4e00\u573a"} +{"id": "2007352", "video_name": "2528f617-4cf7-5e2d-960c-a64402ee1104", "text": "\u592a\u7a7a\u7ad9\u5411\u672a\u77e5\u7269\u4f53\u53d1\u5c04\u6fc0\u5149\u6b66\u5668\uff0c\u56fe\u50cf\u7ecf\u8fc7\u827a\u672f\u5316\u5904\u7406\uff0c\u9ad8\u8d28\u91cf\u9ad8\u7ec6\u8282\uff0c\u81ea\u7136\u8272\u8c03\u81ea\u7136\u5149\u7ebf"} +{"id": "6002204", "video_name": "83a53468-87a1-5f1d-99e6-0be97be244a4", "text": "\u5973\u5b69\u95ed\u4e0a\u773c\u775b\uff0c\u6325\u52a8\u7740\u624b\u3002"} +{"id": "2006592", "video_name": "c3fba55e-eaea-519a-81b2-ed6f7960680e", "text": "\u903c\u771f\u4f46\u53c8\u50cf\u68a6\u4e00\u6837\u7684\u5c71\u4e18\uff0c\u4e0a\u9762\u6709\u8272\u5f69\u7f24\u7eb7\u5b69\u5b50\u822c\u7684\u623f\u5c4b\uff0c\u8fd8\u6709\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "2006439", "video_name": "da8ba8b1-ef7e-5ee6-b096-4767a46abd4c", "text": "\u8367\u5149\u670d\u88c5\u7684\u72c2\u6b22\u8005\u5728\u9ed1\u6697\u4e2d\u8df3\u821e\u3002"} +{"id": "2005444", "video_name": "8fe26c4a-bda7-51d2-bca9-ad582bc65451", "text": "\u5927\u5b66\u7537\u5b69\u5728\u7ebd\u7ea6\u89c2\u8d4f\u65e5\u843d\uff0c4k\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "0005097", "video_name": "14b5f44b-4112-5b51-8eb7-4d0fe287658e", "text": "\u5212\u8239\uff0c\u6c34\u5fae\u5fae\u6d41\u52a8\uff0c\u5411\u5de6\u79fb\u52a8\uff0c\u6c34\u58a8\u753b\uff0c\u6728\u8239\uff0c\u80cc\u666f\u9759\u6b62\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005581", "video_name": "683d686a-28aa-5c7b-b2a9-a36a122f573c", "text": "\u602a\u4eba\u827e\u5c14\u00b7\u626c\u79d1\u7ef4\u5947\u5728\u975e\u6d32\u6f14\u594f\u624b\u98ce\u7434\uff0c\u80cc\u666f\u4e2d\u6709\u52a8\u7269\u3002"} +{"id": "1005003", "video_name": "5c72bc94-b721-576c-b079-1096a9d4fc28", "text": "1970\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u753b\u9762\u4e2d\uff0c\u4e00\u4e2a\u88ab\u5c18\u571f\u548c\u6c99\u5b50\u8986\u76d6\u3001\u62e5\u6709\u4e00\u4e2a\u5de8\u5927\u706b\u5c71\u7684\u57ce\u5e02\uff0c\u6709\u8bb8\u591a\u5efa\u7b51"} +{"id": "1003565", "video_name": "41c6e503-2946-5661-8f44-c8ebeb946d42", "text": "\u6c34\u6d41\u52a8\uff0c\u6811\u4e0a\u7684\u53f6\u5b50\u6447\u66f3\u3002"} +{"id": "3004187", "video_name": "a806f945-f8ef-5a44-ab96-5cbe96dadf29", "text": "\u8003\u62c9\u718a\u5582\u5979\u81ea\u5df1\u7684\u5b9d\u5b9d\uff0c\u5403\u4e86\u81ea\u5df1\u7684\u7caa\u4fbf\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "8003952", "video_name": "aeb279d2-ce06-5c76-bfde-e4441b2c70ce", "text": "\u65e5\u672c\u98ce\u683c\u7684\u4e8c\u7ef4\u5361\u901a\uff0c\u63cf\u8ff0\u4e86\u4e00\u4e2a\u5b69\u5b50\u5728\u7f8e\u4e3d\u7684\u7eff\u8272\u6751\u5e84\u9a91\u8f66\u3002\u5929\u7a7a\u4e2d\u6709\u98ce\u5728\u5439\uff0c\u6811\u53f6"} +{"id": "6003916", "video_name": "09727bd2-907b-50be-868f-096dba742333", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u548c\u6bd4\u57fa\u5c3c\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "6003463", "video_name": "609e3786-d8d4-5daf-aaf7-938e7b499950", "text": "\u68ee\u6797\u4e2d\u6709\u5f88\u591a\u96ea\u548c\u795e\u5947\u7684\u989c\u8272\uff0c\u7f8e\u5999\u7684\u8001\u9f20\u5728\u51ac\u65e5\u65e5\u843d\u65f6\u73a9\u800d\u3002"} +{"id": "1006324", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "\u4e00\u53ea\u98de\u7fd4\u7684\u5251\u9f7f\u864e\u8774\u8776\uff0c\u82b1\u6735\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "2005580", "video_name": "e1d35052-af15-5b17-b20d-592841236b7c", "text": "\u72ee\u5b50\u738b\u8005\u547d\u540d\u7684\u5486\u54ee\u548c\u6323\u624e\uff0c\u4f46\u7f51\u53ea\u662f\u8d8a\u6765\u8d8a\u7d27\u3002\u4ed6\u610f\u8bc6\u5230\u81ea\u5df1\u88ab\u56f0\u4f4f\u4e86\uff0c\u65e0"} +{"id": "6002216", "video_name": "07b7e002-ed7d-5c23-84cf-609bdd4ba059", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u68ee\u6797\u91cc\u548c\u4ed6\u7684\u7236\u4eb2\u4e00\u8d77\u6563\u6b65\u3002"} +{"id": "0004001", "video_name": "01611c99-8f52-5b8e-82a8-ad389ae1752e", "text": "\u62c9\u59c6\u548c\u5e0c\u5854\u53bb\u5bfa\u5e99\u3002"} +{"id": "1004489", "video_name": "5339984b-9b09-5371-9e07-132445fdc387", "text": "\u767d\u8272\u3001\u9ed1\u8272\u3001\u7c89\u8272\u3001\u84dd\u8272\u3001\u7ea2\u8272\u548c\u9ec4\u8272\u7684\u8868\u76d8\uff0c\u5e26\u8367\u5149\u3002"} +{"id": "3006152", "video_name": "9320dc15-b36e-5cf5-a34d-3829a16b7ee0", "text": "\u767d\u8272\u7684\u91d1\u9c7c\u5728\u84dd\u8272\u7684\u6c34\u4e2d\u6e38\u52a8\u3002"} +{"id": "3004974", "video_name": "8245058c-3c33-510d-af28-1ec70ef874d4", "text": "\u53f2\u745e\u514b\u548c\u6d77\u7ef5\u5b9d\u5b9d\u5728\u5ea6\u871c\u6708\u3002"} +{"id": "3006500", "video_name": "a7c4f913-a5ca-567f-9c1d-df352e5525f2", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u82f1\u56fd\u5973\u58eb\u5728\u4f26\u6566\u5854\u524d\u8bb2\u8bdd\uff0c\u80cc\u666f\u662f\u4f26\u6566\u5854\u3002"} +{"id": "6003182", "video_name": "6c3b0dcd-8848-551b-a28c-054e420093a6", "text": "\u91d1\u53d1\u9a6c\u5c3e\u8fab\u7684\u8428\u59c6\u65af\u00b7\u963f\u5170\u6765\u81ea\u300a\u94f6\u6cb3\u6218\u58eb\u300b\u7cfb\u5217\uff0c\u5979\u5954\u8dd1\u3001\u8df3\u8dc3\u3001\u6218"} +{"id": "6002893", "video_name": "3087817f-1ed0-5f2c-b6ad-8601a76d584d", "text": "\u4eba\u4eec\u70ed\u60c5\u5730\u63e1\u624b\uff0c\u5176\u4e2d\u5145\u6ee1\u4e86\u7231\u3002"} +{"id": "0003303", "video_name": "3b4d4c51-a19d-559c-81b6-3074fd3aff87", "text": "\u4e00\u5217\u6a21\u578b\u706b\u8f66\u9a76\u8fc7\u4e00\u7247\u8ff7\u5e7b\u7684\u3001\u8272\u5f69\u6591\u6593\u7684\u68a6\u5883\u4e16\u754c\u3002"} +{"id": "8001156", "video_name": "ed81b8bd-542b-5cbb-83bb-9619bd476cf2", "text": "\u4e00\u5bb63D\u6253\u5370\u516c\u53f8\u7684\u5f00\u59cb"} +{"id": "3004860", "video_name": "e78124f2-f6bd-5e2e-8486-907dc1bb8bda", "text": "\u957f\u957f\u7684\u6d41\u7ebf\u578b\u53d1\u578b\uff0c\u8ff7\u4eba\u7684\u59ff\u6001\uff0c\u7231\u60c5\u3001\u6d6a\u6f2b\u3001\u9676\u9189\u548c\u661f\u7a7a\u7684\u611f\u89c9\u3002"} +{"id": "4004766", "video_name": "5a769092-6ef4-5105-9d4c-9a24340b35ad", "text": "\u7f51\u7edc\u4e66\u7c4d\u5728\u96f6\u91cd\u529b\u4e2d\u98de\u884c\uff0c\u91c7\u7528\u9ec4\u8272\u548c\u9ed1\u8272\u914d\u8272\u65b9\u6848\u3002"} +{"id": "0006455", "video_name": "2cd408ac-3d1a-5052-b792-62b508f1484b", "text": "\u8bf7\u5728\u4e00\u4e2a\u65e9\u6625\u7684\u65e9\u6668\u4e3a\u6211\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004082", "video_name": "2181b944-3ab0-534b-a9e2-25bc9cb122ce", "text": "\u4f26\u6566\u5927\u672c\u949f\u591c\u665a\u8d77\u706b\u7684\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "6004289", "video_name": "dd5f10b6-7b29-5400-8ea0-4149b07fe239", "text": "\u5854\u53ef\u592b\u65af\u57fa\u5728\u5bb6\u4e2d\uff0c\u7a97\u5e18\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u9ed1\u767d\u8272\u8c03\u3002"} +{"id": "4002275", "video_name": "2dc0d4c2-4aea-5328-833b-1b18c630fd39", "text": "\u79fb\u52a8\u7684\u4e91\u6735\uff0c\u5728\u660e\u4eae\u7684\u84dd\u5929\u548c\u592a\u7a7a\u4e2d\u3002"} +{"id": "3004179", "video_name": "9d594d92-0fa5-5d97-bd4a-f90ba2c7dd30", "text": "\u7f13\u6162\u7ad9\u7acb\u7684\u5fcd\u8005\u3002\u52a8\u6001\u76f8\u673a\u79fb\u52a8\uff0c\u6d41\u7545\u7684\u52a8\u4f5c\u3002"} +{"id": "4002046", "video_name": "9e1a4257-1fad-5fd2-a76d-6e29d53f55cb", "text": "Source sentence: Queen from Alice in Wonderland is evil and destructive.\n\n\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u4e2d\u7684\u5973\u738b\u90aa\u6076\u800c\u5177\u6709\u7834\u574f\u6027\u3002"} +{"id": "4003507", "video_name": "81b1f4d4-668a-5f5f-9342-1d680a7456f6", "text": "\u767d\u8272\u51b0\u6dc7\u6dcb\u8d28\u5730\u87ba\u65cb\u65e0\u9650\u5faa\u73af\uff0c\u9ad8\u6e05\u6e32\u67d3\u9ad8\u8d28\u91cf4k\u3002"} +{"id": "7004791", "video_name": "0d612212-867c-5755-824b-b9d14223302f", "text": "\u8036\u7a23\u57fa\u7763\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u4e91\u5f69\u5728\u80cc\u666f\u4e2d\u79fb\u52a8\uff0c\u795e\u79d8\u7684\u6c14\u6c1b\u4ece\u8eab\u4e0a\u6563\u53d1\u51fa\u6765\uff0c\u53cc\u624b\u5408"} +{"id": "7004759", "video_name": "e6441f35-ffe5-5cf9-aebc-8cd3ff10fa26", "text": "\u4e00\u6bb5\u6162\u6162\u653e\u5927\u7684\u5973\u4eba\u5fae\u7b11\u7684\u89c6\u9891"} +{"id": "1003656", "video_name": "43519f87-a795-5c7f-acef-e6ddfb6db661", "text": "\u4e0b\u96e8\u843d\u5728\u5730\u4e0a\uff0c\u5e73\u5747\u901f\u5ea6\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8002726", "video_name": "ab11c31c-243f-546e-9fec-33137d854b31", "text": "\u5973\u5b69\u7ffb\u9875\uff0c\u732b\u5f00\u59cb\u7761\u89c9\u3002"} +{"id": "8003399", "video_name": "512074f8-68aa-51cf-bcfd-b6cbbbf77561", "text": "\u5965\u53e4\u65af\u7279\u00b7\u5e03\u9686\u7684\u300a\u4e16\u754c\u672b\u65e5\u300b\uff0c\u300a\u56fd\u5bb6\u8bde\u751f\u300b\uff0c\u6fc0\u70c8\u7684\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\uff0c\u672b\u65e5\u964d"} +{"id": "4002030", "video_name": "9028c365-8a9b-51d7-8873-2879e8ef9a5c", "text": "\u53cc\u751f\u706b\u7130\u4e4b\u65c5\u975e\u5e38\u4ee4\u4eba\u56f0\u60d1\uff0c\u5b9b\u5982\u7535\u5f71\u822c\u76844K\u3002"} +{"id": "2003202", "video_name": "45e6cd18-c4e7-5813-a488-34ebf9019f86", "text": "\u4e8c\u6b21\u5143\u52a8\u6f2b\u4e2d\uff0c\u4e00\u4f4d\u957f\u7740\u91d1\u8272\u957f\u53d1\u7684\u7f8e\u4e3d\u5973\u5b50\u7a7f\u77401950\u5e74\u4ee3\u7684\u88d9\u5b50\u5728\u5609\u5e74\u534e\u6e38\u73a9\uff0c\u773c\u795e\u6709"} +{"id": "1003444", "video_name": "3fe03c9a-5694-5d87-afbb-2cdfbd59c819", "text": "\u601d\u8003\u65f6\uff0c\u4ed6\u7f13\u6162\u5730\u8f6c\u52a8\u5934\u90e8\u548c\u773c\u775b\u3002"} +{"id": "4002447", "video_name": "dc7fa98c-44e8-52f1-9d5d-607dbeaf220f", "text": "\u4e00\u500b\u7a7f\u7d2b\u8272\u896f\u886b\u63e1\u528d\u7684\u7537\u5b50\u3001\u300a\u9b3c\u6ec5\u4e4b\u5203\u300b\u7684\u82f1\u4fca\u7537\u5b50\u3001\u543e\u5ce0\u547c\u4e16\u6674\u3001"} +{"id": "1005380", "video_name": "62e70573-4f53-51a2-bd7d-acc0add67f81", "text": "\u68d5\u8272\u8150\u70c2\u7684\u67e0\u6aac\u5728\u67e0\u6aac\u6811\u679d\u4e0a\uff0c\u62cd\u6444\u8303\u56f4\u8f83\u5e7f\u3002\u9634\u5929\u3002"} +{"id": "8003987", "video_name": "50b5d84a-5630-5461-9551-61beb1712e4d", "text": "\u4e00\u4e2a\u98de\u884c\u5458\u51fb\u843d\u5916\u661f\u98de\u8239\uff0c\u5916\u661f\u4eba\u5954\u8dd1\uff0c\u70df\u96fe\u5f25\u6f2b\uff0c1950\u5e74\uff0c\u9ed1\u767d\u5f71\u50cf\uff0c\u6709\u5f88\u591a\u7ec6\u8282"} +{"id": "6003054", "video_name": "7a755e0b-34ec-5c2f-8992-b378329f42c8", "text": "\u85e4\u8513\u4ee5\u8d85\u5feb\u7684\u901f\u5ea6\u5728\u57ce\u5e02\u4e0a\u751f\u957f\u3002"} +{"id": "3005165", "video_name": "3759f4aa-daf7-5fcc-8470-4bf51d333d87", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5ba0\u7269\u5c0f\u7cbe\u7075\u8bad\u7ec3\u5e08\u827e\u4ec0\u00b7\u51ef\u4e18\u548c\u4ed6\u7684\u76ae\u5361\u4e18\u7ad9\u5728\u5bb6\u95e8\u5916\uff0c\u91c7\u7528\u4e13\u4e1a\u52a8"} +{"id": "8001586", "video_name": "700f2255-f827-5b62-a16d-a446e640a8df", "text": "\u4ece\u4e39\u9ea6\u5230\u57c3\u585e\u4fc4\u6bd4\u4e9a\u7684\u98de\u673a\u5728\u5730\u7403\u4e0a\u65c5\u884c\u3002"} +{"id": "4003821", "video_name": "be715549-8cce-5729-8f97-1dad788007ca", "text": "\u94f6\u884c\u91cc\u7684\u673a\u5668\u4eba\u7a81\u7136\u5173\u673a\uff0c\u773c\u775b\u53d8\u6210\u4e86\u7ea2\u8272\u3002"} +{"id": "5001354", "video_name": "16b349b5-ac8b-51e1-aee4-06dd0f1843fd", "text": "\u4e00\u90e8\u6f2b\u753b\u4e2d\u7684\u60ca\u9669\u573a\u666f\u3002"} +{"id": "8001806", "video_name": "3946b37d-b86f-5fa6-b036-91f87bf72879", "text": "\u4e00\u5e45\u58a8\u6c34\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u7e41\u5fd9\u7684\u57ce\u5e02\uff0c\u8f66\u8f86\u7a7f\u68ad\u800c\u8fc7\u3002"} +{"id": "3005789", "video_name": "34f94177-2a30-5630-a917-2790afae4023", "text": "\u4e24\u4e2a\u53ef\u7231\u7684\u5916\u661f\u4eba\u5728\u7ea2\u8272\u5929\u7a7a\u7684\u661f\u7403\u4e0a\u7684\u68ee\u6797\u91cc\u4ea4\u8c08\u3002"} +{"id": "3003915", "video_name": "ab71821c-fb1c-55f5-a507-7f3646f6896a", "text": "\u4e00\u4e2a\u5728\u64ad\u5ba2\u5de5\u4f5c\u5ba4\u91cc\u5f00\u5fc3\u7684\u64ad\u5ba2\u4e3b\u64ad"} +{"id": "2005300", "video_name": "e9b1f7ab-8707-5431-a483-35bfc45780fa", "text": "\u4e00\u5f20\u684c\u5b50\u4e0a\u6709\u4e00\u4e9b\u5a01\u58eb\u5fcc\u74f6\u548c\u534a\u6ee1\u7684\u73bb\u7483\u676f\uff0c\u6162\u52a8\u4f5c\u79fb\u52a8\uff0c\u903c\u771f\u7684\u7167\u7247\u8d28"} +{"id": "1004070", "video_name": "4b7c1ba8-2cc5-5ac2-93a7-36f952b74933", "text": "\u4e00\u5f20\u8be6\u7ec6\u7684\u7167\u7247\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u4e25\u8083\u7684\u65af\u5df4\u8fbe\u6218\u58eb\u76f4\u89c6\u7740\u955c\u5934\uff0c\u7ad9\u5f97\u7b14\u76f4\uff0c\u624b\u653e\u677e\uff0c\u4e0b\u5df4"} +{"id": "1004115", "video_name": "4c3b5ae6-53ba-502f-9464-de7b63876999", "text": "\u963f\u5179\u7279\u514b\u796d\u53f8\u5728\u65e5\u843d\u65f6\u5403\u751f\u7684\u7ea2\u8089\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b"} +{"id": "0006049", "video_name": "25c341fa-ce02-5d28-9873-b132f8fba0cb", "text": "\u4e00\u4e2a\u5f20\u7740\u5634\u5df4\u5403\u5947\u602a\u98df\u7269\u7684\u573a\u666f\u3002"} +{"id": "3006221", "video_name": "f9d098e4-a596-593e-8683-020482a64f29", "text": "\u65b0\u5e74\u524d\u5915\uff0c\u4eba\u4eec\u5728\u5e86\u795d\u3002"} +{"id": "6003501", "video_name": "ccf96389-2c7f-5d79-9157-67141548f603", "text": "\u7f8e\u56fd\u961f\u957f\u795d\u4f60\u751f\u65e5\u5feb\u4e50\u5e76\u5531\u7740\u751f\u65e5\u5feb\u4e50\u6b4c\u3002"} +{"id": "3004909", "video_name": "c2c152c8-8afd-5762-ba46-5266ac6df160", "text": "16\u4e16\u7eaa\u8377\u5170\u8239\u53ea\u822a\u884c\u9760\u8fd1\u4e00\u5ea7\u6709\u5c71\u7684\u5c0f\u534a\u5c9b\u6d77\u5cb8\u3002\u8d85\u771f\u5b9e\u76844K\u3002"} +{"id": "7003040", "video_name": "00270a8b-16b2-577b-b914-36a2d7bc07ec", "text": "\u6e90\u53e5\uff1aFFVII\u4e2d\u7684\u514b\u52b3\u5fb7\u00b7\u65af\u7279\u83b1\u592b\u6325\u821e\u7740\u5251\n\n\u7ffb\u8bd1\uff1a\u514b\u52b3\u5fb7\u00b7\u65af\u7279"} +{"id": "7003164", "video_name": "8de13ca2-a6f8-5df2-aef2-90246ff686de", "text": "\u4e00\u5ea7\u88ab\u9634\u5f71\u8986\u76d6\u7684\u4e2d\u4e16\u7eaa\u57ce\u9547\u7684\u7a7a\u4e2d\u89c6\u56fe"} +{"id": "0004653", "video_name": "0cbe107e-eaec-513c-aaaa-e496d19fabd7", "text": "\u4e00\u4e2a\u8dd1\u6b65\u7684\u4eba\u5e26\u7740\u5fae\u7b11\uff0c\u5145\u6ee1\u81ea\u4fe1\u5730\u5954\u8dd1\u7740\u3002"} +{"id": "4002940", "video_name": "5dff9428-f18f-5aeb-98b3-a864303a5668", "text": "\u4e00\u4e2a\u52c7\u58eb\u4e0e\u56db\u53ea\u51f6\u731b\u7684\u602a\u517d\u640f\u6597\uff0c\u5176\u4e2d\u4e00\u53ea\u50cf\u72ee\u5b50\u4f46\u6709\u9e70\u7fc5\u8180\uff0c\u53e6\u4e00\u53ea\u50cf"} +{"id": "6004034", "video_name": "fff0b575-5abc-505a-89d0-cf1538dbb760", "text": "\u6a58\u8272\u4e9a\u6d32\u4fdd\u9669\u6570\u5b57\u4ee3\u7406\u5728\u7279\u65af\u62c9\u5c4f\u5e55\u4e0a\u3002"} +{"id": "1003183", "video_name": "3a8e394e-6eb7-56bb-8095-38ce06f1d050", "text": "\u4e00\u4e2a\u5e7b\u60f3\u822c\u7684\u5206\u5f62\u661f\u4e91\u63cf\u7ed8\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\uff0c\u8fd0\u52a8\u611f\u5341\u8db3\u3002"} +{"id": "0003173", "video_name": "3891363d-9a9c-552f-af5e-b64b439391aa", "text": "\u68ee\u6797\u4e2d\u4e00\u53ea\u84dd\u8272\u5c0f\u9e1f\u5750\u5728\u6811\u679d\u4e0a\uff0c\u5728\u96e8\u4e2d\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "7004397", "video_name": "6a28c571-dca2-5bf1-8217-41142315b470", "text": "\u6751\u6c11\u4eec\u906d\u9047\u4e86\u53ef\u6015\u7684\u547d\u8fd0\uff0c\u4eff\u4f5b\u53cd\u6620\u4e86\u4ed6\u4eec\u7684\u5669\u68a6\u3002"} +{"id": "4004991", "video_name": "eb176660-1a0d-5c63-b1c2-688537e66695", "text": "Translation: BMW E34\uff0c\u7ea2\u8272\uff0c\u8f7b\u76c8\u52a8\u611f\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "3003870", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "\u6f02\u4eae\u7684\u68d5\u8272\u76ae\u80a4\u5973\u5b69\u5728\u6237\u5916\u73a9\u800d\u3002"} +{"id": "1006457", "video_name": "762ad93c-f41e-5f64-a0ea-90f878366036", "text": "\u955c\u5b50\u91cc\u7684\u795e\u79d8\u5f71\u5b50"} +{"id": "4004102", "video_name": "f0e96684-2cdc-5e89-8d18-12123c3096d6", "text": "\u5168\u7403\u6700\u5177\u5f71\u54cd\u529b\u7684100\u4eba\u3002"} +{"id": "0003573", "video_name": "3fc3a101-2c0d-57e0-bdce-2f8ff209edab", "text": "\u9b54\u6cd5\u978b\u518d\u6b21\u56de\u5230\u516c\u4e3b\u7684\u624b\u4e2d\uff0c\u5979\u4ee5\u5361\u901a\u7684\u65b9\u5f0f\u8fd4\u56de\u4e86\u57c3\u5c14\u591a\u5229\u4e9a\u3002"} +{"id": "4002707", "video_name": "83228562-592c-5a4b-9d7e-b385db0beba7", "text": "\u624b\u673a\u4e0a\u4f7f\u7528\u7ec8\u7aef\u7684\u4eba\u3002"} +{"id": "6004888", "video_name": "54dda7f5-c13b-53bb-a1d0-0906edd9ae1b", "text": "\u5236\u4f5c\u8c46\u8150\u8138YouTube\u7f29\u7565\u56fe\u7684YouTuber"} +{"id": "6004907", "video_name": "20e58466-a220-5546-ac84-b823315f5dde", "text": "\u52a8\u4f5c1\uff0c\u9b54\u6cd5\u68d2\uff0c\u54c8\u5229\u6ce2\u7279\u98ce\u683c\uff0c9:16\u3002"} +{"id": "7004202", "video_name": "df8f2163-2e24-574c-9c4c-6f5e39dee268", "text": "\u4e00\u6bb5\u5361\u901a\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u4f4d\u806a\u660e\u7684\u5546\u52a1\u4e13\u4e1a\u4eba\u58eb\u5bfb\u627e\u5de5\u4f5c\u3002"} +{"id": "4004957", "video_name": "4bf1449d-75ea-5d52-aa07-0b139d570b08", "text": "\u4ed6\u4eec\u805a\u5728\u4e00\u8d77\uff0c\u8ba1\u5212\u5411\u8001\u864e\u547c\u5401\u505c\u6b62\u72e9\u730e\u52a8\u7269\uff0c\u800c\u4ed6\u4eec\u81ea\u5df1\u6bcf\u5929\u63d0\u4f9b\u4e00\u53ea\u52a8\u7269\u7ed9\u8001\u864e\u3002"} +{"id": "0005181", "video_name": "16330bbd-27ae-5340-a359-fc644ae97288", "text": "\u79fb\u52a8\u7684\u4e91\u5f69\uff0c\u6d77\u4e0a\u7684\u6c7d\u8f66\u548c\u8239\u53ea\u3002"} +{"id": "8001163", "video_name": "7b35cbe3-d12b-549d-b048-997a2ea9ac81", "text": "\u4ee5\u4e00\u7247\u5b81\u9759\u7684\u6c60\u5858\u4e3a\u5f00\u5934\uff0c\u56db\u5468\u73af\u7ed5\u7740\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u690d\u7269\u548c\u4e94\u5f69\u7f24\u7eb7\u7684"} +{"id": "2006402", "video_name": "ffac03d4-14f7-5aab-9f50-5cc5d998e17c", "text": "\u4e25\u683c\u7684\u5b89\u5168\u57f9\u8bad\u964d\u4f4e\u4e86\u673a\u68b0\u76f8\u5173\u98ce\u9669\u3002"} +{"id": "0003560", "video_name": "3f920123-dd9d-5d08-9933-d527be955caf", "text": "\u4e00\u9996\u540d\u4e3a\u201cgrausam\u201d\u7684\u6b4c\u66f2\u7684\u5c01\u9762\u3002"} +{"id": "7003683", "video_name": "a602c094-4509-551a-9b51-b2842833eaf7", "text": "\u4e00\u53ea\u5f00\u5fc3\u7684\u5927\u7329\u7329\u624b\u62ff\u5564\u9152\uff0c\u5728\u6d77\u4e91\u53f0\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u6234\u7740\u592a\u9633\u955c\u3002"} +{"id": "6003447", "video_name": "a0e28af0-da93-592c-bd51-d09bcac9bfce", "text": "\u8bf7\u8ba9\u56fe\u7247\u4e2d\u76f8\u540c\u7684\u76d2\u5b50\u5411\u540e\u4e0a\u5347\u79fb\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003914", "video_name": "303247d5-5699-5b94-85d9-479cb39e5dbe", "text": "\u6d77\u4e2d\u4e00\u540d\u7537\u5b50\u4e3e\u8d77\u4e86\u4e00\u53ea\u624b\uff0c\u53e6\u4e00\u53ea\u624b\u62ff\u7740\u9999\u70df\u3002"} +{"id": "8003511", "video_name": "683a8acd-b82c-5136-9b80-6f9560e9de1c", "text": "\u6dfb\u52a0\u4e00\u9897\u5fc3\u2764\ufe0f \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "8001954", "video_name": "8f6ce5d4-20af-5c79-affc-8374f865f590", "text": "\u4eba\u4eec\u5728\u5723\u8bde\u524d\u5915\u805a\u4f1a\u3002"} +{"id": "5001456", "video_name": "e4f9ef1c-a04d-5877-a6e6-e802a18a3aa0", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u623f\u95f4\u91cc\u627e\u4e1c\u897f\u3002"} +{"id": "7002767", "video_name": "18d88117-33b3-5b7a-bd73-3fc99c6d6c1a", "text": "\u4e00\u5ea7\u5b81\u9759\u7684\u5c0f\u9547\u5728\u6708\u5149\u4e0b\uff0c\u4e24\u53ea\u76ae\u6bdb\u95ea\u4eae\u7684\u732b\u5728\u5b89\u9759\u7684\u8857\u9053\u4e0a\u6f2b\u6b65\u3002"} +{"id": "3005441", "video_name": "8629a47c-63cb-50f4-bc69-f997b99801a3", "text": "\u68ee\u6797\u3001\u6797\u5730\u3001\u81ea\u7136\u3001\u5b81\u9759\u3001\u7f8e\u4e3d\u3001\u903c\u771f\u3001\u7535\u5f71\u611f\u6444\u5f71\u3001\u8272\u5f69\u53d8\u5e7b\u3002"} +{"id": "2006857", "video_name": "dc7b1359-d33f-5c3d-a91d-8ddda3ac3d9e", "text": "\u4e00\u4e2a\u663e\u793a46\u4ebf\u5e74\u524d\u6807\u8bb0\u7684\u65f6\u95f4\u8f74\u3002"} +{"id": "1006601", "video_name": "78f6c795-2932-561d-8952-aa15e60b1bb8", "text": "\u4e00\u7537\u4e00\u5973\u5728\u8f66\u4e0a\u81ea\u62cd\uff0c\u903c\u771f\u3002"} +{"id": "8003837", "video_name": "c9f9bede-76b3-5229-bc35-8c4d22d9d8fe", "text": "\u7db2\u7d61\u670b\u514b\u5973\u6027\u3001\u672a\u4f86\u4e3b\u7fa9\u6642\u88dd\u3001\u9713\u8679\u71c8\u5149\u3001\u5168\u606f\u986f\u793a\u5668\u3001\u300a\u9280\u7ffc\u6bba\u624b\u300b"} +{"id": "3005520", "video_name": "77c05c55-be81-5350-ac39-3b94e1fdc693", "text": "18\u5c81\u7684\u7537\u5b69\u5728\u516c\u5171\u573a\u5408\uff0c\u4e00\u4e2a\u5149\u7ebf\u5145\u8db3\u7684\u623f\u95f4\u91cc\u8bb2\u6545\u4e8b\u3002"} +{"id": "4003635", "video_name": "44292fcb-38be-50f8-8aad-b8147050a4ce", "text": "\u4e00\u5f20\u6781\u5177\u9b45\u529b\u76844K\u56fe\u50cf\u4e2d\uff0c\u4e00\u4e2a\u4eba\u5728\u60ca\u4eba\u7684\u7206\u70b8\u4e2d\u7834\u788e\u6210\u6676\u83b9\u7684\u788e\u7247\uff0c\u6bcf\u4e00\u4e2a\u788e\u7247"} +{"id": "2005046", "video_name": "e2a8151a-2f1b-5c7a-a4db-a6a1e519d7b5", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u7a7f\u7740\u6027\u611f\u670d\u88c5\u3002"} +{"id": "2007723", "video_name": "e6873bfb-f6b4-54c5-818f-6434dd005e5f", "text": "\u8499\u5a1c\u4e3d\u838e\u5403\u86cb\u7cd5\u7684\u52a8\u753b"} +{"id": "6004668", "video_name": "56e06a0b-11f5-5396-9b97-c174b1e707b6", "text": "\u5728\u6e56\u4e0a\u6253\u66f2\u68cd\u7403\u7684\u5b69\u5b50\u4eec\u3002"} +{"id": "6002820", "video_name": "9f489070-4b4b-5e0a-ba8c-fdff2cb801ce", "text": "\u6708\u4eae\u7684\u9762\u5bb9\u3002\u5706\u5708\u3001\u683c\u5b50\u3001\u5370\u82b1\u3001\u6591\u70b9\u3001\u5eb7\u5b9a\u65af\u57fa\u3001\u6770\u514b\u900a\u00b7\u6ce2\u6d1b\u514b\u3001\u6c34\u5f69\u753b\u3001"} +{"id": "7004986", "video_name": "2da1156f-2e80-5746-8f95-12ce03590dc8", "text": "\u8d5b\u535a\u670b\u514b\uff0c\u57ce\u5e02\u8857\u9053\uff0c\u7a7f\u7740\u6597\u7bf7\u7684\u7537\u4eba\u9762\u5e26\u4e25\u8083\u8868\u60c5\uff0c\u4ed6\u5bf9\u9762\u7ad9\u7740\u4e00\u4e2a\u62ff\u7740\u76d2\u5b50"} +{"id": "3003575", "video_name": "89f5673a-1241-5389-a6ad-6c779aaf4794", "text": "\u68d5\u8272\u7684\u72d7\u5728\u9a6c\u94c3\u85af\u7530\u91cc\u5954\u8dd1\u3002"} +{"id": "8001125", "video_name": "b4269dbc-8f6a-5def-bb63-e970ea2bb6f7", "text": "\u4e24\u4e2a\u89d2\u8272\u4e92\u76f8\u4ea4\u8c08\uff0c\u7236\u4eb2\u548c\u513f\u5b50\uff0c\u5361\u901a\uff0c3D\uff0c\u5168\u666f\uff0cHDR\uff0c\u975e\u5e38\u9ad8\u7684\u5206\u8fa8\u7387\uff0c\u89d2\u8272\u6ca1\u6709\u5931\u771f\uff0c\u4f7f\u7528\u4eba"} +{"id": "2005615", "video_name": "08189bfb-6eee-5e82-afde-a92d32bc9b63", "text": "\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u73a9\u5409\u4ed6\u7684\u6cf0\u8fea\u718a\u3002"} +{"id": "5001721", "video_name": "5e95da88-fbb4-5193-961f-0a16cc90ae11", "text": "\u7537\u4eba\u5fae\u7b11\u7740\u5411\u6444\u50cf\u673a\u6325\u624b\u544a\u522b\uff0cGIF\uff0c\u53cb\u597d\uff0c\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "3004855", "video_name": "eee98eac-18c5-50cb-b0ad-e852317e6fa2", "text": "\u591c\u7a7a\u5e03\u6ee1\u661f\u661f\u3002\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u9053\u88c2\u7f1d\u3002"} +{"id": "5001157", "video_name": "17cd1292-e529-5924-b2f2-f8bcd01390d8", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u4ece\u70b9\u7403\u70b9\u8fdb\u7403\u3002"} +{"id": "6003633", "video_name": "2d9656b4-8359-542c-b2bd-1bbe287b612c", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u5e7b\u60f3\u4e66\u6253\u5f00\uff0c\u795e\u5947\u7684\u53d1\u5149\u8774\u8776\u4ece\u4e2d\u98de\u51fa\uff0c\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "8001809", "video_name": "c4f1536a-065a-5753-95cf-5ac39b422aa4", "text": "\u6c34\u6bcd\u7684\u566a\u97f3\u541e\u566c\u7740\u5730\u7403\u7684\u6d77\u6d0b\u3002"} +{"id": "2006466", "video_name": "323408c7-c351-50ba-ab69-aae8b3055d91", "text": "\u5e26\u8fde\u5e3d\u886b\u7684\u5f71\u5b50\u3002\u80cc\u666f\u8bbe\u7f6e\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002"} +{"id": "5001548", "video_name": "39c32136-7f42-5627-a94f-64267ba3736b", "text": "1960\u5e74\u4ee3\uff0c\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u4eba\u7c7b\u6728\u5076\u89d2\u8272\u5728\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u68ee\u6797\u91cc\uff0c\u4e0e\u4e00\u4e2a"} +{"id": "7002859", "video_name": "7177aace-82a2-5fb7-acd5-5147ca17697f", "text": "\u7531\u516d\u5f20\u5355\u72ec\u7684\u56fe\u50cf\u7ec4\u6210\u7684\u5e8f\u5217\uff0c\u5171\u540c\u5f62\u6210\u4e86\u4e00\u4e2aGIF\u52a8\u753b\uff0c\u767d\u4eba\u5973\u6027\uff0c\u7eff\u8272\u773c\u775b\uff0c\u957f\u68d5\u8272\u5934\u53d1\uff0c"} +{"id": "2006430", "video_name": "fcd5acf0-f9f8-5de0-b24b-2a21e49eb3bd", "text": "\u4e00\u5ea7\u7528\u94bb\u77f3\u6253\u9020\u7684\u68a6\u5e7b\u5c71\u3002"} +{"id": "8001838", "video_name": "b148fb63-1aaa-557f-988c-d6939c9409a2", "text": "\u9f13\u52b1\u89c2\u4f17\u7ee7\u7eed\u5173\u6ce8\u4ee5\u4e86\u89e3\u8fd9\u4e2a\u666e\u904d\u95ee\u9898\u80cc\u540e\u7684\u79d1\u5b66\u3002"} +{"id": "4004306", "video_name": "b97d2c77-b9b1-5210-95a2-fc0d7f8ae30e", "text": "\u4e24\u540d\u5973\u5b50\u5728\u94c1\u7b3c\u4e2d\u8fdb\u884c\u640f\u51fb\uff0c\u914d\u4ee5\u7535\u5f71\u7ea7\u522b\u76844K\u89c6\u9891\u3002"} +{"id": "1005183", "video_name": "5f5afc05-de42-5f00-b445-6558eb6f08a2", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4e2d\u56fd\u4eba\u4ece\u98de\u673a\u4e0a\u8df3\u4f1e\u5e76\u8fdb\u884c\u8df3\u4f1e\u8fd0\u52a8\u3002"} +{"id": "6004129", "video_name": "61e89f13-b9d4-58b4-be93-508e7e40dd57", "text": "\u4e4c\u5c14\u7279\u63d0\u9192\u5f3a\u5236\u7b49\u79bb\u5b50\u65f6\u949f\u7684\u529b\u91cf\u3002"} +{"id": "7004095", "video_name": "466480c8-d428-5b3b-a5bd-d91e4dfe2b16", "text": "\u4efb\u6027\u7684\uff0c\u7eff\u8272\u8ff7\u5e7b\u7684\uff0c\u8d85\u51e1\u7684 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0006086", "video_name": "2668ef67-ccd9-51b6-8d08-f4baaef5fdec", "text": "\u4e00\u53ea\u7a7f\u7740\u6cf3\u8863\u7684\u7334\u5b50\u5728\u54c8\u74e6\u4f0a\u5c9b\uff0c4K\u89c6\u9891\uff0c16:9\u5206\u8fa8\u7387\u3002"} +{"id": "2005042", "video_name": "8f6dcd7e-1580-5b94-b38f-dc82970e88d4", "text": "\u4e00\u6bb5\u73b0\u5b9e\u4e3b\u4e49\u7684\u89c6\u9891\uff0c\u663e\u793a\u4e00\u4e2a\u76ae\u80a4\u767d\u7699\uff0c\u5468\u56f4\u6709\u95ea\u8000\u5149\u8292\u7684\u7537\u5b69\uff0c\u4ece\u80cc\u540e\u770b\u7740\u6ee1\u5e03\u7ea2\u661f"} +{"id": "5001202", "video_name": "acc49f44-42c1-527c-92c5-485736957c1a", "text": "\u4e00\u53ea\u72d7\u5728\u6d77\u6ee9\u4e0a\u73a9\u5b83\u7684\u7403\u3002"} +{"id": "0003078", "video_name": "3693bd0d-58c8-55ee-8248-893269d71606", "text": "\u5e93\u82cf\u9c81\u51fa\u73b0\u5728\u5fb7\u56fd\u5317\u90e8\u6cbc\u6cfd\u5730\u7684\u91cd\u91d1\u5c5e\u97f3\u4e50\u8282\u4e0a\uff0c\u662f\u7528iPhone 12\u62cd\u6444\u7684\u6a21\u7cca\u7684\u7eaa\u5f55\u7247"} +{"id": "4003226", "video_name": "52c2973a-042e-5bc8-adf5-d6e89ae1334b", "text": "\u9b54\u517d\u4e16\u754c\u5deb\u5996\u738b\u9677\u5165\u56f0\u5883\u3002"} +{"id": "2004122", "video_name": "7b643919-4d46-5921-87c2-b4af95090050", "text": "\u5c55\u73b0\u51fa\u4e09\u4f4d\u6218\u58eb\u4e4b\u95f4\u7684\u7d27\u5f20\u65f6\u523b\uff0c\u4ed6\u4eec\u8eab\u7a7f\u5e0c\u814a\u3001\u585e\u6d66\u8def\u65af\u548c\u571f\u8033\u5176\u7684\u4f20\u7edf\u670d\u88c5\uff0c\u51dd"} +{"id": "2005573", "video_name": "01230f81-ae6b-5804-b690-6f7874452291", "text": "\u4e00\u7cfb\u5217\u5305\u542b\u56db\u4e2a\u89c6\u9891\u7684\u591c\u7a7a\u5c55\u793a\u3002"} +{"id": "7004599", "video_name": "dae734f7-2d4e-54b0-ae8b-a9dda62dff12", "text": "\u8389\u8389\u662f\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\uff0c\u62e5\u6709\u91d1\u8272\u7684\u5377\u53d1\u548c\u84dd\u8272\u7684\u773c\u775b\uff0c\u7a7f\u7740\u5145\u6ee1\u8936\u76b1"} +{"id": "3006131", "video_name": "d442d367-dc3c-5e5a-8606-509c6f1a41ac", "text": "Francisco skyline in the distance.\n\nTranslation: \u7a81\u7136: \u5927\u96ea\u82b1\u65cb\u8f6c\uff0c\u8fdc\u5904\u4e09\u85e9\u5e02\u5929\u9645\u7ebf\u7684\u8f6e\u5ed3\u6a21\u7cca\u53ef\u89c1\u3002"} +{"id": "2006480", "video_name": "3b0b958f-8786-5172-add8-9ebd00a4e156", "text": "\u6a21\u7cca\u7684\u9ec4\u8272\u6591\u70b9\u51fa\u73b0\u5e76\u8986\u76d6\u4e86\u6574\u5f20\u56fe\u7247\u3002\n\nSource sentence: I need to buy some groceries from the supermarket."} +{"id": "2007012", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI\u548cTommy Fury\u7ad9\u5728\u62f3\u51fb\u573a\u4e0a\uff0c\u9762\u5bf920000\u4eba\u7684\u89c2\u4f17\uff0c\u5728\u8ff7\u4eba\u7684\u6c1b\u56f4\u4e2d\u5f7c\u6b64\u62e5\u62b1\u3002"} +{"id": "7003419", "video_name": "8c13159a-29dd-570c-ad09-dcbcfbe6f5ee", "text": "\u592a\u7a7a\u62ab\u8428\u914d\u653e\u5c04\u6027\u53d1\u5149\u9171\u548c\u9713\u8679\u679c\u6c41\uff0c\u5e26\u7279\u6548\u3001\u8d85\u9ad8\u6e05\u3001\u8d85\u9ad8\u52a8\u6001\u8303\u56f4\u300132K\u3002"} +{"id": "6004481", "video_name": "237e1a0b-cb00-55ae-a557-8b20a1354131", "text": "\u5728\u68ee\u6797\u4e2d\u72c2\u6b22\uff0c\u5927\u5bb6\u8df3\u821e\u3002\u8baf\u606f\uff1a\u718a\u732b\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005460", "video_name": "68951379-6716-57a6-8df4-937674c48775", "text": "\u4e00\u500b\u5c0f\u9e1a\u9d61\u7684\u5716\u5f62\u6392\u5217\u6210\u4e00\u500b\u5fc3\u5f62\u3002"} +{"id": "3004022", "video_name": "43864969-c12b-50af-8b66-664f74492ff7", "text": "\u5728\u4e00\u4e2a\u7531\u4eb2\u5207\u8457\u540d\u7684\u4e9a\u5386\u5c71\u5927\u738b\u5b50\u7edf\u6cbb\u7684\u58ee\u4e3d\u738b\u56fd\u4e2d\u8bbe\u7acb\u821e\u53f0\u3002"} +{"id": "8003431", "video_name": "55353a45-f911-5c5f-8f5b-37c2cdd8fcef", "text": "\u7a7f\u7740\u6f02\u4eae\u7684\u7d2b\u8272\u88d9\u5b50\uff0c\u548c\u4e00\u53ea\u84dd\u677e\u9e26\u804a\u5929\u3002"} +{"id": "5001974", "video_name": "d011ee32-6a58-5478-849a-5b8eb415ac56", "text": "\u5728\u53ef\u6015\u7684\u5e7d\u7075\u57ce\u5821\u91cc\u8d70\u8def\u3002"} +{"id": "3003139", "video_name": "76f5e07f-eed8-5253-9b1f-0335d4a2c762", "text": "\u53e4\u5e0c\u814a\u54f2\u5b66\u5bb6\u5728\u53e4\u5e0c\u814a\u9057\u5740\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "1005628", "video_name": "6775b16b-689f-5b76-b13e-043be8120c8d", "text": "\u623f\u95f4\u91cc\u6709\u5b69\u5b50\uff0c\u623f\u95f4\u91cc\u7528LED\u706f\u5e26\u5448\u73b0\u903c\u771f\u98ce\u683c\u3002"} +{"id": "1006549", "video_name": "77f72971-2c8f-52e5-ba86-481e1a76f626", "text": "\u8fea\u74e6\u8389\u6d1b\uff0c\u5b8c\u7f8e\u65e0\u7f3a\uff0c\u5979\u7684\u4f18\u96c5\u548c\u7f8e\u4e3d\u5438\u5f15\u4e86\u4f17\u4eba\u7684\u5fc3\u3002"} +{"id": "1005726", "video_name": "69521d2c-de5f-559a-ac7b-aefc3b459033", "text": "\u5b64\u72ec\u7684\u5c45\u6c11\u5728\u96e8\u4e2d\u7684\u534e\u5c14\u8857\u4e0a\uff0c\u8863\u670d\u7834\u70c2\uff0c\u6df1\u5ea6\u6444\u5f71\uff0c\u538b\u7f29\u9ed1\u8272\uff0c\u666f\u6df1\uff0c\u9ed1"} +{"id": "4002160", "video_name": "7ac3deac-73c9-552d-a656-b09338b6cf07", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u5c71\u666f\u5728\u9ece\u660e\u67d4\u548c\u7684\u8272\u8c03\u4e2d\u6c90\u6d74\uff0c\u9080\u8bf7\u4f60\u62e5\u62b1\u4e00\u4e2a\u5145\u6ee1\u53ef\u80fd\u6027\u7684\u65b0\u7684\u4e00\u5929\u3002"} +{"id": "6002845", "video_name": "79a7fbc1-9824-57d5-bff6-22408928f913", "text": "\u75288\u6beb\u7c73\u9897\u7c92\u611f\u753b\u8d28\u5448\u73b0\u51fa\u4e00\u4e2a\u795e\u79d8\u6050\u6016\u7684\u50ac\u7720\u89c6\u89c9\u3002"} +{"id": "4002821", "video_name": "6380e8d5-45da-57c1-83c9-9b494a8bf6d4", "text": "\u7ec8\u7ed3\u8005T800\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u4e00\u624b\u63d2\u515c\uff0c\u7535\u5f71\u5f0f\u955c\u5934\uff0c\u53cc\u82723D\u3002"} +{"id": "1005551", "video_name": "663415f8-eeed-53d8-b244-0fdb8d125bd5", "text": "\u4e00\u4e2a\u6ca1\u6709\u9762\u5b54\u7684\u7537\u4eba\u7ad9\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\u65cb\u8f6c\u3002"} +{"id": "3003429", "video_name": "1115adb6-e572-550b-804d-ee27b140a791", "text": "\u5973\u5b69\u548c\u5979\u7684\u7237\u7237\u5728\u8857\u4e0a\u6f2b\u6b65\uff0c\u5f53\u4ed6\u4eec\u8d70\u7684\u65f6\u5019\uff0c\u6444\u50cf\u673a\u5411\u4e0a\u79fb\u52a8\u3002"} +{"id": "0004983", "video_name": "12beac24-1b2f-56fd-a0b4-4d771ccdc2b5", "text": "\u4e00\u540d\u7a81\u51fb\u961f\u5458\u6b63\u5728\u4e0e\u5916\u661f\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "4004608", "video_name": "d68b8dfe-62e6-5fa6-be21-f11a102303f0", "text": "\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc\uff0c\u6709\u4e00\u53ea\u6d3b\u6cfc\u7684\u677e\u9f20\u548c\u5176\u4ed6\u52a8\u7269\u4e00\u8d77\u73a9\u800d\uff0c\u6bd4\u5982\u9e7f\u3001\u718a\u3001\u72ee\u5b50"} +{"id": "2007583", "video_name": "86e38e8c-c3e1-5102-a093-59b0d2f3e9ad", "text": "Father: \"Son, always remember to be kind and honest to others, no matter how they treat you.\" \n\n\u7236\u4eb2\uff1a\u513f\u5b50\uff0c\u65e0\u8bba\u522b\u4eba\u5982\u4f55\u5bf9\u5f85\u4f60\uff0c\u6c38\u8fdc\u8bb0\u5f97\u8981"} +{"id": "7004822", "video_name": "db28e655-154e-52d2-bf71-26523f15cd3a", "text": "\u4e00\u4e2a\u9a91\u6469\u6258\u8f66\u7684\u7537\u4eba\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u524d\u5f80\u7c7b\u4f3c\u300a\u94f6\u7ffc\u6740\u624b2049\u300b\u7b2c\u4e8c\u90e8\u7684\u6781\u5177\u672a\u6765\u611f\u7684\u9713"} +{"id": "3003838", "video_name": "ff69cb4b-51fd-5c47-b38c-6628bd11c80a", "text": "\u51cc\u4e71\u7684\u5c0f\u5973\u5b69\u624b\u6301\u68b3\u5b50\uff0c\u770b\u7740\u955c\u5b50\u91cc\u7684\u81ea\u5df1\uff0c\u76f4\u53d1\uff0c\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\uff0c4K\u3002"} +{"id": "1004442", "video_name": "522afcee-648d-5603-9c90-ef6b9bd531a7", "text": "1750\u5e74\u4ee3\u7684\u5973\u5deb\u9605\u8bfb\u8096\u50cf\u6444\u5f71\u7ea2\u767d\u8863\u670d\u300a\u82ad\u91cc\u00b7\u6797\u987f\u300b\u7535\u5f71\u3002"} +{"id": "7003434", "video_name": "2fbbc2e5-d1a2-5188-b9b3-fb303fe52b5f", "text": "\u7f57\u9a6c\u5e1d\u738b\u5965\u53e4\u65af\u90fd\u65f6\u671f\u7684\u6d74\u6c60\u6587\u5316\uff0c\u4e0e\u4eba\u6c11\u4e00\u540c\u4eab\u53d7\u76db\u5bb4\u3002"} +{"id": "4003170", "video_name": "da0811f0-74c1-5924-920e-33dc9a511a1e", "text": "\u4e00\u7fa4\u4eba\u5411\u4e00\u4e2a\u6446\u51fa\u59ff\u52bf\u7684\u7f8e\u4e3d\u5973\u5b69\u5954\u8dd1\uff0c\u6781\u7b80\u98ce\u683c\uff0c\u65f6\u95f4\u611f\uff0c\u52a8\u6001\u89c6\u9891\uff0c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0005590", "video_name": "1d9433e1-1ab1-59ce-b213-f333458bbdf1", "text": "\u4e0a\u5e1d\u6e7f\u5a46\u6b63\u5728\u51a5\u60f3\uff0c\u5929\u6c14\u7a81\u7136\u53d8\u5316\uff0c\u4e00\u6761\u86c7\u51fa\u73b0\u4e86\uff0c\u4f46\u86c7\u6ca1\u6709\u54ac\u4e0a\u5e1d\u6e7f\u5a46\u3002\u8fd9"} +{"id": "4003089", "video_name": "9e78c6dd-118f-5119-b3c1-e30e7669d460", "text": "\u4ece\u524d\u6709\u4e00\u53ea\u540d\u53eb\u83b1\u5c3c\u7684\u5c0f\u8725\u8734\u3002\u4ed6\u4f4f\u5728\u4e00\u4e2a\u88ab\u795e\u5947\u751f\u7269\u548c\u5947\u5999\u751f\u7075\u5305\u56f4\u7684"} +{"id": "6002783", "video_name": "9314f5b9-51c3-52b0-afce-bbfa5628ad4f", "text": "\u6c7d\u8f66\u4e0a\uff0c\u5f53\u6cb9\u7bb1\u5f00\u59cb\u53d8\u4f4e\u65f6\uff0c\u4eea\u8868\u677f\u4f1a\u4eae\u8d77\u6765\u3002"} +{"id": "2003937", "video_name": "d88062e8-1066-5214-9d09-cde3ad21c78d", "text": "\u53ef\u7231\u7684\u5b69\u5b50\u6234\u7740\u6709\u8da3\u7684\u773c\u955c\uff0c\u8ba9\u4ed6\u7684\u6240\u6709\u540c\u4e8b\u90fd\u5632\u7b11\u4ed6\u3002"} +{"id": "2006303", "video_name": "f0674546-6f99-5845-9254-e1bec4715644", "text": "\u5c0f\u5973\u5b69\u8fdb\u5e97\u4e70\u51b0\u6dc7\u6dcb\uff0c\u5c0f\u7f8a\u8ddf\u5728\u5979\u8eab\u540e\u6709\u4e9b\u8ddd\u79bb\u3002"} +{"id": "3006188", "video_name": "1fbcc0e4-657a-5b9e-8ff5-88296090d183", "text": "\u6c14\u57ab\u8239\u5728\u5c0f\u884c\u661f\u5e26\u4e2d\u98de\u884c\u3002\u79d1\u5e7b\u3002"} +{"id": "8001876", "video_name": "86c84081-d14c-5553-81a2-19a6a8919535", "text": "\u665a\u4e0a\u6f02\u4eae\u7684\u5973\u5b69\u4e00\u8d77\u6162\u8dd1\u3002"} +{"id": "7003108", "video_name": "49e56c27-14f8-5b1c-b230-f4b4da6f1ca4", "text": "\u73b0\u573aDJ\u8bbe\u7f6e\u7684\u89c6\u89c9\u6548\u679c\uff0c\u70ed\u5e26\u6c1b\u56f4\uff0c16:9\uff0c4k\u3002"} +{"id": "3005134", "video_name": "1b740461-34e6-5c78-8d5f-f238e4354d02", "text": "\u751f\u6210\u4e00\u5f20\u677e\u9f20\u52aa\u529b\u6500\u722c\u6700\u9ad8\u6811\u6728\u7684\u56fe\u50cf\u30028K\u3001\u8d85\u9ad8\u6e05\u3001\u50cf\u7d20\u98ce\u683c\u3001\u8fea\u58eb\u5c3c\u98ce\u683c\u3001Cinema "} +{"id": "1004552", "video_name": "5488b873-c216-5369-b660-e7b1d5ca8f38", "text": "\u4e00\u4e2a\u7a7f\u7740\u4f20\u7edf\u7267\u7f8a\u4eba\u670d\u88c5\u7684\u5e74\u8f7b\u7537\u5b69\uff0c\u5750\u5728\u9644\u8fd1\u5403\u8349\u7684\u4e00\u7fa4\u7f8a\u65c1\u3002"} +{"id": "4002622", "video_name": "69dbd48f-7216-5fda-bae8-2e60288ded94", "text": "Cheetah\u8fc5\u901f\u5730\u8bc6\u522b\u548c\u6d88\u9664\u7f51\u7edc\u5a01\u80c1\uff0c\u4fdd\u62a4Rippling\uff0c\u4f9d\u9760\u5b83\u7684\u901f\u5ea6\u548c\u654f\u6377\u6027\u3002"} +{"id": "3006669", "video_name": "a4157a5d-a714-5419-a240-cc09e787ecc7", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u58eb\u5728\u6e38\u6cf3\u6c60\u91cc\u6e38\u6cf3\u3002"} +{"id": "4002639", "video_name": "fda42e60-c84f-519f-a2cf-73436e8a27b7", "text": "70\u5c81\u7684\u5973\u6027\u5728\u5bb4\u4f1a\u5385\u4e0e\u5b69\u5b50\u4eec\u5728\u4e00\u8d77\u3002"} +{"id": "7004715", "video_name": "f968ef83-8040-5320-bb0f-1b5402832e79", "text": "\u6625\u5929\u7684\u8349\u5730\u4e0a\uff0c\u5c0f\u72d7\u5728\u4e00\u7247\u82b1\u6d77\u4e2d\u73a9\u7ea2\u7403\u3002"} +{"id": "2007822", "video_name": "400978f2-9af6-5a39-b444-78eea5bb78c9", "text": "\u9c7c\u773c\u955c\u5934\u62cd\u6444\u7684\u6d77\u7ef5\u5b9d\u5b9d\u5728\u9ad8\u4e2d\u6ed1\u51b0\u7684\u7167\u7247\u3002"} +{"id": "4002404", "video_name": "44e35aa3-88f4-598d-a9aa-6021af0f8ae3", "text": "\u4ed6\u4eec\u9047\u5230\u4e86\u5404\u79cd\u5404\u6837\u7684\u52a8\u7269\u3002"} +{"id": "1005927", "video_name": "6cdc0bd2-d6c4-5479-9d86-39502706c888", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7537\u5b50\u5728\u591c\u665a\u5750\u5728\u5496\u5561\u9986\u3002"} +{"id": "4004782", "video_name": "765f98de-143f-5a4e-b434-8dd5818f9cd9", "text": "\u7535\u5f71\u822c\u7684\u62cd\u6444\u955c\u5934\u3002\u4fa7\u9762\u5e73\u79fb\u3002\u4f53\u79ef\u5149\u3002\u4e00\u53ea\u8718\u86db\u5728\u751f\u9508\u7684\u94c1\u4e4b\u95f4\u5168\u901f\u79fb\u52a8\u3002"} +{"id": "2004542", "video_name": "363fb21b-7b3a-5998-a950-26ebc1e94064", "text": "\u8fd0\u52a8\u7c92\u5b50\u3001\u7ec6\u83cc\u548c\u4e91\u6735\u7684\u8f6e\u5ed3\u3002"} +{"id": "4004691", "video_name": "87e620cb-7c93-53cb-89af-25853ed09cc2", "text": "\u673a\u68b0\u673a\u5668\u4eba\u7684\u8be6\u7ec6\u52a8\u753b"} +{"id": "1004802", "video_name": "58bebff1-71ae-50d7-a3c7-f79cf2e21d9e", "text": "\u7f8e\u4e3d\u7684\u98de\u9a6c\u5728\u7a7a\u4e2d\u6325\u52a8\u5b83\u7684\u7fc5\u8180\u3002"} +{"id": "2006238", "video_name": "146b3ea6-3b59-59be-b8af-eb365ef4c93a", "text": "\u4e24\u4e2a\u670b\u53cb\u5728\u96e8\u591c\u7684\u8def\u4e0a\u4ea4\u8c08\u3002"} +{"id": "3005833", "video_name": "76c0ba5b-ba3c-5fd2-8235-a149890985ed", "text": "\u6124\u6012\u7684\u56da\u72af\u548c\u76d1\u72f1\u5b98\u5458\u5728\u76d1\u72f1\u5185\u76f8\u4e92\u5bf9\u89c6\u3002\u9ad8\u8d28\u91cf\u76844K\u3002"} +{"id": "8001358", "video_name": "bae51841-d56f-59c0-9187-08d530de362a", "text": "\u897f\u83b1\u6069\u00b7\u58a8\u83f2\u5728\u300a\u7edd\u547d\u6bd2\u5e08\u300b\u7684\u4e00\u96c6\u4e2d\u70bc\u5236\u51b0\u6bd2\u3002"} +{"id": "5001483", "video_name": "b4cf29ac-5e81-56a6-8b7c-2d2d26844587", "text": "\u4e00\u7fa4\u6751\u6c11\u6307\u63a7\u963f\u59c6\u5229\u5854\u4e3a\u5deb\u672f\u3002"} +{"id": "2006240", "video_name": "4c8274cc-5f64-519f-9347-f7a9269f4f83", "text": "\u4e00\u53ea\u6c34\u6bcd\u6b63\u5728\u4ece\u84dd\u8272\u53d8\u6210\u9ec4\u8272\u518d\u5230\u9752\u8272\u3002"} +{"id": "3004579", "video_name": "e89c3445-e486-57a2-9d8d-5cdd12f54a72", "text": "\u592a\u9633\u662f\u4e00\u4e2a\u75b2\u60eb\u7684\u6a59\u8272\u7403\u4f53\uff0c\u4e0e\u96fe\u973e\u640f\u6597\uff0c\u6c89\u5165\u597d\u83b1\u575e\u5c71\u540e\uff0c\u6295\u5c04\u51fa\u957f\u957f\u7684\u9634"} +{"id": "4003394", "video_name": "5bf16065-adae-55dd-9709-2ad04629d332", "text": "\u94a2\u7434\u81ea\u5f39\u81ea\u5531\u7684\u4fef\u89c6\u56fe"} +{"id": "4004867", "video_name": "4c11f125-560c-5121-8563-90b843a99cb0", "text": "\u7261\u86ce\u7901\u7684\u571f\u5efa\u8bbe\u8ba1"} +{"id": "8001870", "video_name": "efcdfeb6-4874-535b-a90d-e609c85777f7", "text": "\u4e2d\u4e16\u7eaa\u7684\u7ed8\u753b\u5c55\u793a\u4e86\u4e00\u4e2a\u529e\u516c\u5ba4\uff0c\u4eba\u4eec\u5728\u7535\u8111\u524d\u5de5\u4f5c\u30024K"} +{"id": "2005689", "video_name": "37bfb2b6-4d3d-558c-bb73-630e7995374b", "text": "\u533b\u751f\u5927\u68d5\u8272\u6cf0\u8fea\u718a\u5728\u5357\u6781\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u6025\u6551\u5305\uff0c3D\u52a8\u753b\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\u62c9\u8fd1\u3002"} +{"id": "2004752", "video_name": "725d4b9b-1452-5d5b-9c57-cdb0b5649b3e", "text": "\u4e00\u8258\u592a\u7a7a\u8239\u6b63\u5728\u4e0e\u53e6\u4e00\u8258\u8239\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "8003539", "video_name": "578b9ccb-751c-5cd2-ba8e-696bcfcfb419", "text": "\u4e00\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u7f8e\u4e3d\u5973\u5b69\u5728\u610f\u5927\u5229\u6d77\u5cb8\u4e0a\u6c90\u6d74\u3002"} +{"id": "7002826", "video_name": "5f7d8a2b-4b6f-50a1-833b-a058bbb7d897", "text": "\u795e\u5947\u800c\u751f\u673a\u52c3\u52c3\u7684\u666f\u89c2\uff0c\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u4e0a\uff0c9:16\u3002"} +{"id": "6002607", "video_name": "c4f15a09-1880-5d45-b108-d2b98aded8fe", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5927\u6d6a\u6467\u6bc1\u8759\u8760\u8239\u5728\u6d77\u6d0b\u4e0a\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "6002831", "video_name": "e80004c8-043d-567f-a699-3d78be182c30", "text": "\u63cf\u8ff0\u83ab\u683c\u5229\u4e0e\u864e\u738b\u8c22\u5c14\u6c57\u4e4b\u95f4\u7684\u9ad8\u6f6e\u6218\u6597\u573a\u9762\u3002\u63cf\u7ed8\u4ed6\u4eec\u6fc0\u70c8\u7684\u6218\u6597\uff0c\u5c55\u793a"} +{"id": "4003587", "video_name": "c72324ba-8e27-5f27-be19-8150e811b295", "text": "\u6709\u4eba\u5728\u6d3e\u5bf9\u4e0a\u559d\u9189\u4e86\uff0c\u5468\u56f4\u53d1\u751f\u7684\u4e00\u5207\u90fd\u5f88\u5feb\u3002"} +{"id": "0006289", "video_name": "2a0be4d4-5d0f-56f5-8ff5-d49aaa46c839", "text": "Sparky\u8d85\u7ea7\u677e\u9f20\uff1a\u4e00\u4e2a\u5c55\u793a\u8eab\u7a7f\u5c0f\u4eae\u4e3d\u62ab\u98ce\u7684\u677e\u9f20Sparky\u52c7\u6562\u4e14\u51c6\u5907\u597d\u5192\u9669\u7684\u89c6\u9891\u3002"} +{"id": "4003112", "video_name": "8f2fffa3-6e57-55aa-b328-e5653dec5b0f", "text": "\u732b\u548c\u72d7\u7528\u5251\u6253\u67b6\u3002 \n\nSource sentence: I like to eat sushi for dinner. \n\n\u6211\u559c\u6b22\u665a\u9910\u5403\u5bff\u53f8\u3002"} +{"id": "1005291", "video_name": "6141edca-bc95-542e-abf1-1d1b57963be5", "text": "\u4e00\u53ea\u5c0f\u72d7\u5728\u82b1\u56ed\u91cc\u5954\u8dd1\uff0c\u903c\u771f\uff0c4K\uff0c\u9633\u5149\u3002"} +{"id": "0006673", "video_name": "30c17fbf-6b1f-5a34-9b9f-699d611d6f06", "text": "\u4e9a\u5386\u5c71\u5927\u6d77\u6ee9\uff0c\u4ece\u4e0a\u65b9\u62cd\u6444\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "2004129", "video_name": "d95ac1da-35ca-5e45-9f08-379ce0e03be6", "text": "\u4eb2\u7231\u7684\u3001\u6e29\u67d4\u5fae\u7b11\u7684\u53ef\u7231\u84b8\u6c7d\u670b\u514b\u5c11\u5973\uff0c\u5fae\u7b11\u7740\u6447\u66f3\u7740\u957f\u53d1\u3002"} +{"id": "7004660", "video_name": "feb7119f-d043-5649-9638-3920bcfd73bb", "text": "\u5e74\u8f7b\u7537\u5b69\u5728\u955c\u5b50\u524d\u4ee5\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "1005382", "video_name": "62f16662-1a8b-5b02-bd26-ebee1fe42782", "text": "Youtuber\u62cd\u81ea\u62cd\u65f6\u88ab\u706b\u8f66\u649e\u51fb\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\u590d\u6742\u7ec6\u8282\u3002"} +{"id": "0003480", "video_name": "3e62fb48-de5b-553c-b43a-41616f71e563", "text": "she spotted a shooting star and made a wish.\n\nTranslation: \u4e00\u5929\u665a\u4e0a\uff0c\u5f53\u8482\u838e\u98de\u8d8a\u591c\u7a7a\u65f6\uff0c\u5979\u770b\u5230\u4e86\u4e00\u9897\u6d41\u661f\u5e76\u8bb8\u4e86\u4e2a"} +{"id": "3004488", "video_name": "9edad844-68a1-52dd-8f11-4b73c1892110", "text": "\u519b\u961f\u9886\u8896\u5e26\u9886\u4eba\u6c11\u5728\u6218\u7ebf\u4e0a\u5954\u8dd1\uff0c\u53d6\u5f97\u4e86\u80dc\u5229\u3002"} +{"id": "1004224", "video_name": "4e241169-771c-50a7-899f-f64e42cf9062", "text": "\u5fb7\u9c81\u4f0a\u6234\u7740\u6c14\u7f69\u5728\u5e03\u9c81\u5854\u5229\u65af\u7279\u54e5\u7279\u5f0f\u5b9d\u5ea7\u4e0a\u626d\u66f2\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7"} +{"id": "0003713", "video_name": "42324486-f00a-50a6-8579-694488091e6c", "text": "\u52a8\u753b8k\u8d85\u9ad8\u6e05\u76ae\u514b\u65af\u98ce\u683c\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5e74\u8f7b\u7537\u5b50\u548c\u5e74\u8f7b\u5973\u5b50\u9a7e\u7740\u6e38\u8247\u3002"} +{"id": "5001947", "video_name": "d9f1f04b-9b03-5bb5-9f27-aa62825d2d90", "text": "\u95ea\u70c1\u7684\u84dd\u8272\u773c\u775b\u53cd\u5c04\u7740\u5915\u9633\u4e0b\u7684\u6d77\u6d0b\u3002\n\nSource sentence: I love spending time with my family and friends. \n\n\u6211\u559c\u6b22\u548c\u5bb6\u4eba"} +{"id": "2004344", "video_name": "f72373a3-f915-5a78-bfb4-7765f21a3ef5", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6ed1\u96ea\uff0c\u4ed6\u4ece\u5de6\u8fb9\u6ed1\u5411\u53f3\u8fb9\u3002"} +{"id": "0006584", "video_name": "2f080927-ad35-5b33-a569-1419fe06e213", "text": "\u63cf\u8ff0Seebu\u8fd9\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u82f9\u679c\u5750\u5728\u4e1b\u6797\u6811\u4e0a\uff0c\u9762\u5e26\u6109\u5feb\u7684\u8868\u60c5\uff0c\u51c6\u5907\u4e0e\u5b69\u5b50\u4eec\u5206\u4eab\u5b83\u7684\u5065"} +{"id": "1003421", "video_name": "3f379e06-71e0-56da-ab6a-08bf5e74475e", "text": "\u5728\u8352\u91ce\u73af\u5883\u4e2d\uff0c\u4e00\u7fa4\u884c\u8d70\u7684\u50f5\u5c38\u6b63\u5728\u9760\u8fd1\uff0c\u91c7\u75283D\u5361\u901a\u903c\u771f\u98ce\u683c\u3002"} +{"id": "1005512", "video_name": "65798ebd-88bb-55f3-a1f6-191631fd344d", "text": "\u725b\u4ed4\u5728\u591c\u665a\u7684\u9152\u5427\u91cc\u5f39\u5409\u4ed6\uff0c\u9713\u8679\u706f\u4e0b\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c50mm\u3002"} +{"id": "5001939", "video_name": "a802bf38-22de-5c61-abdb-2e386b9de3dc", "text": "\u4e00\u53ea\u730e\u8c79\u4ece\u81ea\u884c\u8f66\u8df3\u53f0\u8df3\u4e0b\uff0c\u5411\u5954\u8dd1\u7684\u9e7f\u51b2\u53bb\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "6002587", "video_name": "f5375301-760d-5f8f-a13a-f7409964e5b5", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u6a59\u8272\u732b\u54aa\u5728\u7f8e\u4e3d\u7684\u82b1\u56ed\u91cc\u6f2b\u6b65\u7684\u89c6\u9891\u3002"} +{"id": "4003296", "video_name": "cecd45cf-756e-5c18-b658-e43a8ec2af9a", "text": "\u4e00\u4e2a\u773c\u9f3b\u5634\u5fae\u7b11\u7684\u8868\u60c5\uff0c\u8868\u793a\u4f60\u597d\u3002"} +{"id": "8001647", "video_name": "d7ba3dbf-3067-56ed-811c-a8c0a0f3ace3", "text": "\u751f\u6210\u4e00\u4f4d\u767d\u79cd\u5973\u5b69\u7684\u751f\u65e5\u795d\u798f\u3002"} +{"id": "8003657", "video_name": "c88a46e7-3d07-5b81-a4ad-3739865c4277", "text": "\u7535\u5f71\u3001\u52a8\u4f5c\u7247\u3001\u94a2\u94c1\u4fa0\u3001\u7ebd\u7ea6\u5e02\u3001\u98de\u884c\u3001\u4e0b\u96e8"} +{"id": "7003283", "video_name": "9249f373-78c2-5ef8-b3b9-65cd381a251f", "text": "\u57ce\u5e02\u4e2d\u5f00\u8f66\uff0c\u672b\u65e5\u98ce\u683c\uff0c\u50f5\u5c38\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "0003271", "video_name": "3a9a93c0-9159-5e75-8163-df4606009be7", "text": "\u4e00\u4e2a\u767d\u8272\u5361\u901a\u516c\u9e21\u5728TikTok\u89c6\u9891\u4e2d\u8df3\u821e\u3002"} +{"id": "4003568", "video_name": "50f8a6ae-2014-5b3e-a9f3-e548393b78ff", "text": "\u4e00\u53ea\u718a\u732b\u548c\u4e00\u53ea\u8001\u864e\u5b8c\u5168\u9759\u6b62\u4e0d\u52a8\uff0c\u53ea\u6709\u76f8\u673a\u7a0d\u5fae\u653e\u5927\u4e86\u4e00\u70b9\u3002"} +{"id": "8001899", "video_name": "63d96333-acfe-57c1-a613-6ca204771243", "text": "\u4e00\u4e2a\u7a7f\u7740Appian\u670d\u88c5\u7684\u963f\u62c9\u4f2f\u7537\u5b50\u7528\u4e00\u4ef6\u767d\u8272\u7684\u963f\u5df4\u4e9a\u906e\u76d6\u81ea\u5df1\uff0c\u8eba\u5728\u6d77\u8fb9\u4e00\u5757\u5927"} +{"id": "8003679", "video_name": "a2fe97cd-490d-58d1-b7dd-dcaa17aaf754", "text": "\u53ef\u7231\u7684\u4e2d\u56fd\u5c0f\u5973\u5b69\u5728\u9c9c\u82b1\u95f4\u5411\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "6002124", "video_name": "134d5a74-b99f-522b-97b9-dfeee68cf07e", "text": "\u516c\u53f8\u4e0e\u5ba2\u6237\u804a\u5929\u8bb0\u5f55\u7684\u5c4f\u5e55"} +{"id": "3003331", "video_name": "e5fa4186-bb38-5097-a3d3-b777af3d3140", "text": "\u4e9a\u6d32\u5973\u5b69\u7a7f\u7740\u9c9c\u8273\u7684\u989c\u8272\u5728\u65f6\u4ee3\u5e7f\u573a\u6563\u6b65\u3002"} +{"id": "2003812", "video_name": "50340550-7f5a-5548-9045-dba7d79d7ea7", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e24\u4e2a10\u5c81\u7684\u5370\u5ea6\u521d\u4e2d\u5b66\u751f\u5728\u6559\u5ba4\u91cc\u4f7f\u7528\u4e0d\u540c\u989c\u8272\u7684\u673a\u5668\u4eba\u5957\u4ef6\uff08\u5305\u62ec\u5c0f\u677f\u3001\u5c0fL\u578b"} +{"id": "0004690", "video_name": "0d556219-938b-5d53-a224-77f368099c26", "text": "\u751f\u52a8\u7684\uff0c\u955c\u50cf\u7684\uff0c\u8ba1\u7b97\u673a\u82af\u7247\uff0c\u5916\u661f\u4eba\u5750\u5728\u8ba1\u7b97\u673a\u82af\u7247\u4e0a\u559d\u8336\u3002"} +{"id": "3006812", "video_name": "3e6604b6-b7ce-5f19-a24a-e369800feafc", "text": "\u6811\u679d\u6447\u66f3\uff0c\u94f6\u674f\u53f6\u843d\uff0c\u5973\u5b50\u957f\u53d1\u98d8\u626c\u3002\u4fe1\u606f\uff1a\u843d\u4e0b\u3002"} +{"id": "7004056", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "\u6d77\u8fb9\u7684\u6cd5\u56fd\u5317\u90e8\u6709\u4e00\u5bf9\u65b0\u4eba\uff0c\u65b0\u5a18\u7528\u82b1\u88c5\u9970\u7684\u871c\u8272\u5934\u53d1\u76d8\u6210\u53d1\u9afb\uff0c\u65b0\u90ce\u5149\u5934\uff0c\u8eab\u7a7f"} +{"id": "5001579", "video_name": "84a0037d-895f-5e5f-bdce-cab25d868969", "text": "\u5f53\u8428\u6ee1\u62ac\u5934\u4ef0\u671b\u5929\u7a7a\uff0c\u4ed6\u53cc\u624b\u5411\u4e0a\u4e3e\u8d77\uff0c\u968f\u7740\u70df\u96fe\u5347\u5411\u5929\u7a7a\u3002\u540c\u65f6\uff0c\u8fdb\u884c\u4e86\u7f29\u653e\u3002"} +{"id": "0004312", "video_name": "06f7014f-b544-516b-acc0-2ffcbf6acd43", "text": "3D\u5361\u901a\u8774\u8776\u8bf4\u5bf9\u4e0d\u8d77\u3002"} +{"id": "4004864", "video_name": "5cbc8af0-0ce7-56cc-87c8-b04d1d6d364e", "text": "\u6a2a\u65ad\u9762\u7a7f\u8d8a\u5927\u8111\uff0c\u8ff7\u5e7b\u7684\u3002"} +{"id": "0005761", "video_name": "20c4de8d-123d-5c36-baac-ae9ac6ea6b3b", "text": "\u9713\u8679\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\uff0c\u79d1\u6280\u672a\u6765\u611f\uff0c\u53d1\u5149\u76843D\u7269\u4f53\uff0c\u77f3\u69b4\u77f3\uff0c\u7537\u6027\u5de5\u4f5c\u5ba4\u6444\u5f71\uff0c\u5feb\u95ea"} +{"id": "4002543", "video_name": "aa64a40b-a9e7-5787-b1f3-e10bd8768ef5", "text": "\u97f3\u4e50\u4f1a\u4e0a\u7684\u9f13\u624b\uff0c\u4ece\u4e0a\u9762\u7684\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "7003439", "video_name": "9aa1439b-a084-50c1-8bcc-a7b67b32524b", "text": "\u6211\u7684\u4e16\u754c\u53f2\u8482\u592b\u6316\u77ff\uff0c\u771f\u5b9e\u3001\u7535\u5f71\u5316\u3001\u8d85\u73b0\u5b9e\u3001\u6444\u50cf\u673a\u5411\u5de6\u7f29\u653e\u3001\u7535\u5f71\u706f\u5149\u30018k\u3002"} +{"id": "4004583", "video_name": "925db789-fa0b-53b5-bf87-7c05fbe1c1c6", "text": "\u6c7d\u8f66\u5728\u884c\u9a76\uff0c\u6c7d\u8f66\u7206\u70b8\uff0c\u7535\u5f71\u822c\u7684\u573a\u9762\u3002"} +{"id": "2003286", "video_name": "46aa3933-f4cc-544f-8ce6-84375bd4040e", "text": "\u6c99\u6ee9\u4e0a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u4eba\u78b0\u5230\u4e86\u6c34\u6bcd\u3002"} +{"id": "4004492", "video_name": "b175c9a5-0240-5127-bcdf-19d49b237e9f", "text": "\u57281980\u5e74\u4ee3\uff0c\u6cd5\u56fd\u5b9e\u9a8c\u7535\u5f71\u8fdb\u884c\u4e86\u5173\u4e8e\u7334\u5b50\u7684\u5b9e\u9a8c\u3002"} +{"id": "2003363", "video_name": "fc54fd2d-ffb2-519b-872f-ca75e6ee79d4", "text": "\u5c0f\u7537\u5b69\u88ab\u4e00\u4e2a\u5de8\u578b\u5973\u4eba\u7684\u811a\u5361\u4f4f\u4e86\uff0c\u811a\u5728\u79fb\u52a8\uff0c\u4ed6\u4e5f\u5728\u79fb\u52a8\uff0c\u547c\u5438\u7740\u3002"} +{"id": "4004762", "video_name": "315fba79-124a-5801-9a66-328b3752fa32", "text": "\u5b89\u9759\u7684\u6751\u5e84\u5750\u843d\u5728\u96c4\u4f1f\u5c71\u811a\u4e0b\uff0c\u9762\u4e34\u7740\u8bb8\u591a\u6311\u6218\uff0c\u5305\u62ec\u5371\u9669\u7684\u5730\u5f62\u3001\u4e0d\u53ef\u9884"} +{"id": "8003893", "video_name": "f8b93629-4789-5619-a525-d743d589c1df", "text": "\u7537\u4eba\u6253\u5f00\u8f66\u95e8\uff0c\u7ad9\u5728\u4e00\u5ea7\u5927\u53a6\u524d\u3002"} +{"id": "1006165", "video_name": "70d64fbd-dc04-5918-86ca-264a4d2af0bd", "text": "\u592a\u7a7a\u98de\u884c\u7535\u5f71\u9884\u544a\u7247\uff0c\u79d1\u5e7b\u706b\u7bad\u4ece\u5730\u7403\u8d77\u98de\u8fdb\u5165\u592a\u7a7a\uff0c\u7c89\u8272\u706b\u7bad\u98de\u5165\u592a\u7a7a\u3002"} +{"id": "1004640", "video_name": "564d5f6b-85bf-5583-8a8b-0c29b865d9be", "text": "\u5728\u8349\u5730\u4e2d\u592e\u4e00\u68f5\u5927\u6811\u4e0b\u7684\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u5750\u7740\u4e24\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u548c\u5361\u901a\u573a\u666f\u3002"} +{"id": "1006122", "video_name": "70454bc7-ed58-557c-aece-ec7c58c4aa76", "text": "\u591c\u665a\u98ce\u66b4\u4e2d\u7684\u6d77\u76d7\u8239"} +{"id": "3003618", "video_name": "2cb0ec02-0041-5b98-86d1-90a16d49dbf0", "text": "\u4e00\u4f4d\u5973\u6027\u5750\u5728\u83b2\u82b1\u4e0a\uff0c\u624b\u4e2d\u6301\u6709\u4e0d\u540c\u7684\u5370\u5ea6\u6559\u5143\u7d20\u7684\u8fd0\u52a8\uff0c\u89c6\u9891\u957f\u8fbe10\u79d2\u3002"} +{"id": "2005371", "video_name": "5451fd25-9005-55f1-900a-8ca3e56d8e9e", "text": "\u6545\u969c\u7684\u7ec8\u7aef\uff0c\u5e26\u6709\u7c92\u5b50\u548c\u968f\u673a\u4ee3\u7801\u8fd0\u884c\u3002"} +{"id": "3004761", "video_name": "1f7c857c-1ef7-5b26-9844-113221647500", "text": "\u8d77\u521d\uff0c\u4e0a\u5e1d\u6216\u5916\u661f\u4eba\u521b\u9020\u4e86\u5929\u5730\uff0c\u8272\u5f69\u903c\u771f\u4e14\u751f\u52a8\uff0c\u5e26\u6709\u52a8\u753b\u5f0f\u7684\u7535\u5f71\u611f\uff0c\u4e3b\u9898\u8f83\u4e3a\u9ed1\u6697\u3002"} +{"id": "6004206", "video_name": "07b4e912-c892-5d94-a5f5-43dd20077779", "text": "\u7a7f\u7740\u88d9\u5b50\u7684\u7f8e\u5973\u7728\u773c\u775b\u3002"} +{"id": "4003410", "video_name": "04419349-dd39-56b4-aeca-185b4a6edfd3", "text": "\u5927\u578b\u8282\u65e5\u6709\u5f88\u591a\u751c\u74dc\u548c\u897f\u74dc\u3002"} +{"id": "2003451", "video_name": "70c9d409-941b-5845-8c9f-9db1adde45da", "text": "\u5e74\u8f7b\u7f8e\u4e3d\u7684\u975e\u6d32\u5973\u5b50\u4ece\u5bcc\u5854\u675c\u8d3e\u9686\uff08Fouta Djallon\uff09\u7684\u8001\u623f\u5b50\u8d70\u51fa\u6765\uff0c\u5728\u591c\u665a\u6f2b\u6b65\u3002"} +{"id": "3006892", "video_name": "081344d9-93e5-51c3-8d45-d400e1b4b073", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4e00\u4e2a\u4eba\u5728\u96e8\u5929\u53d1\u73b0\u4e00\u672c\u65e7\u65e5\u8bb0\u7684\u6545\u4e8b\uff0c\u5e26\u9886\u4ed6\u4eec\u7a7f\u8d8a\u56de\u5fc6\u548c\u65cb\u5f8b\u7684\u65c5\u7a0b\u3002"} +{"id": "2006846", "video_name": "dae25b17-47d7-518a-bb52-1b3f35dd3e95", "text": "\u57282100\u5e74\uff0c\u4ee5\u79d1\u5e7b\u98ce\u683c\u62cd\u6444\u7684\u5927\u52a0\u90a3\u5229\u5c9b\u5bbd\u9614\u6d77\u6ee9\u7684\u955c\u5934\u3002"} +{"id": "7002518", "video_name": "76b32159-af2b-566b-9a01-96db13b51e26", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u5b69\u624b\u62ff\u5496\u5561\uff0c\u5728\u7f8e\u4e3d\u7684\u623f\u5b50\u4e8c\u697c\u6563\u6b65\u3002"} +{"id": "7003748", "video_name": "8e38e7a7-b5d8-5821-aeaa-1d87ec8b395a", "text": "\u4eba\u4eec\u70ed\u5207\u5730\u89c2\u770b\u6843\u82b1\u98d8\u843d\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "2006416", "video_name": "67b35b61-496b-5094-9384-b62053664604", "text": "\u6770\u4f5c\uff0c4K\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u50cfGTA\u6e38\u620f\u3002"} +{"id": "3005865", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "\u4e00\u4e2a\u79bb\u5f00\u4e09\u7ef4\u7a7a\u95f4\u7684\u4eba\u3002"} +{"id": "6002962", "video_name": "5b5f88d0-1b80-5bfb-b876-1628fde5eff0", "text": "\u975e\u6d32\u5927\u8349\u539f\u666f\u89c2\uff0c\u8fdc\u5904\u6709\u65e5\u843d\u548c\u52a8\u7269\u3002"} +{"id": "3006788", "video_name": "3378b937-c76a-5a05-99c1-5ebe01848c74", "text": "\u5c71\u548c\u4e61\u6751 \u4fe1\u606f\uff1aYanto (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003871", "video_name": "4750eb8f-a5a3-5f3e-8df2-0ae6c6328ffb", "text": "\u68ee\u6797\u4f8f\u5112\u53d1\u660e\u5bb6DND RPG\uff0c\u903c\u771f\u7684\u56fe\u5f62\uff0c\u8be6\u7ec6\u7684\u6e32\u67d3\u3002"} +{"id": "2006693", "video_name": "7e34fd26-b3f0-5c81-9aaf-be0b13ec87b7", "text": "\u6751\u5e84\u88ab\u6e29\u6696\u7684\u9633\u5149\u7167\u8000\uff0c\u5448\u73b0\u51fa\u7530\u56ed\u98ce\u5149\u548c\u6751\u6c11\u5e73\u9759\u7684\u751f\u6d3b\u3002\uff08\u98ce\u683c\uff1a\u6c34\u5f69"} +{"id": "6004959", "video_name": "5efc12ee-3e5e-5857-a0b0-3f7aba76ca9b", "text": "\u679c\u6c41\u5e7f\u544a\u6d77\u62a5\uff0c\u590f\u65e5\u679c\u56ed\u6674\u7a7a\u4e07\u91cc\uff0c\u7167\u7247\u4e2d\u592e\u6709\u4e00\u7f50\u6a59\u5b50\u679c\u9171\uff0c\u5468\u56f4\u98de\u821e\u7740"} +{"id": "2004159", "video_name": "3b1131ed-296c-50ac-a3df-8ba1fd2e83e1", "text": "\u6c34\u4e0b\u7684\u626d\u66f2\u3002\u9ca8\u9c7c\u5411\u53f3\u90aa\u6076\u5730\u5feb\u901f\u6e38\u52a8\u3002"} +{"id": "0006282", "video_name": "29fcfad0-9f81-5312-937b-87cf9c1d700f", "text": "\u6444\u50cf\u673a\u4ece\u4e0a\u65b9\u4fef\u89c6\uff0c\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u8eba\u5728\u6ca5\u9752\u8def\u9762\u4e0a\uff0c\u5468\u56f4\u6709\u4eba\u5728\u8d70\u52a8\uff0c\u6709\u4e9b\u662f\u7d20\u63cf"} +{"id": "2003507", "video_name": "29bbc2ad-3579-525b-91f5-17873c037afe", "text": "\u521b\u9020\u4e00\u4e2a\u5916\u661f\u4eba\u5728\u60f3\u8c61\u4e2d\u7684\u4e16\u754c\u91cc\u884c\u8d70\u7684\u89c6\u9891\uff0c\u5916\u661f\u4eba\u7531\u8349\u8393 DNA \u751f\u6210\uff0c\u903c\u771f\u7684\u5f69\u8272\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "7003376", "video_name": "71c30696-bc38-553c-bea4-dc5b2e2b1425", "text": "3D\u8fbe\u82ac\u5947\u53d1\u660e\u900f\u89c6\u5f71\u50cf\u3001\u7535\u5f71\u6770\u4f5c\u3001\u4e13\u4e1a\u7535\u5f71\u6444\u5f71\u3001\u6d45\u666f\u6df1\u3001\u7126\u70b9\u4e3b\u4f53\u3001\u4e13\u4e1a\u8272\u5f69\u5206\u7ea7\u3001\u5fae"} +{"id": "7003274", "video_name": "ea3c64e3-c5aa-5e67-a51b-1a413ac4f49d", "text": "\u5b64\u72ec\u7684\u6e38\u4e50\u56ed\u91cc\u7ad9\u7740\u60b2\u4f24\u7684\u5b69\u5b50\u4eec\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with shades of red and orange. \n\u592a"} +{"id": "4003757", "video_name": "efa5261a-8d5c-5503-ae10-157f2d70b56e", "text": "\u597d\u5bb6\u4f19\uff0c\u7f57\u4f2f\u7279\u00b7\u5fb7\u5c3c\u7f57\uff0c\u5361\u901a\u98ce\u683c16:9\u7684\u70df\u96fe\u80cc\u666f\uff0c\u540e\u542f\u793a\u5f55\u3002"} +{"id": "6002369", "video_name": "62c0174e-c9db-5dcc-8db9-eb912f081ad4", "text": "\u590d\u53e4\u82b1\u56ed\u6d3e\u5bf9\u4f20\u5355\uff0c\u5370\u5237\u827a\u672f\u6770\u4f5c\uff0c\u6700\u4f73\u63d2\u56fe\u4f5c\u54c1\uff0c\u6700\u4f73\u63d2\u56fe\u4f5c\u54c1\uff0c\u83b7\u5956\u4f20\u5355\uff0c"} +{"id": "7002118", "video_name": "db6f6a32-49bc-565c-bc20-a43f57efc8f6", "text": "\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u592e\u6709\u4e00\u6761\u6d41\u6dcc\u7684\u6cb3\u6d41\uff0c\u5468\u56f4\u6709\u9713\u8679\u5c0f\u8424\u706b\u866b\u98de\u821e\u3002\u6c34\u6d41\u52a8\uff0c\u98ce\u8f7b"} +{"id": "4003969", "video_name": "896f8cfb-1b0a-57f0-ae90-dca30ebfcf9a", "text": "\u5728\u7ebd\u7ea6\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u7684\u5973\u6027\u6b63\u5728\u5403\u6bd4\u8428\u3002"} +{"id": "0004379", "video_name": "08011d59-d729-549e-94cf-3359f5ac2515", "text": "\u9b54\u6cd5\u8611\u83c7\u5f9e\u5929\u7a7a\u4e2d\u4e0b\u843d"} +{"id": "3005876", "video_name": "12b6e8df-09fc-5b7a-9426-421f029cb906", "text": "\u6211\u5236\u4f5c\u4e86\u4e00\u4e2a\u7537\u4eba\u8bf4\u8bdd\u7684\u89c6\u9891\u3002"} +{"id": "3003518", "video_name": "1247739f-e9b9-5e34-8402-1b5d3a823093", "text": "\u4e3a\u540d\u4e3a\u5723\u9a6c\u79d1\u65af\u7684\u58a8\u897f\u54e5\u6742\u8d27\u5e97\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\uff0c\u5e76\u52a0\u5165\u58a8\u897f\u54e5\u4ea7\u54c1\u3002"} +{"id": "2007972", "video_name": "b85e0a3a-abb4-51a9-a196-99e28c8d0acd", "text": "\u6210\u5e74\u5973\u5b50\u7a7f\u7740\u7d27\u8eab\u9ed1\u8272\u670d\u88c5\u5411\u955c\u5934\u8d70\u6765\uff0c\u89d2\u8272\u7a0d\u6709\u52a8\u4f5c\uff0c\u7a33\u5b9a\u7684\u98ce\u5439\u62c2\uff0c4k\u8d85\u5199\u5b9e\u3002"} +{"id": "3004359", "video_name": "68cc7927-3c2b-5008-99d8-1b4564d1e639", "text": "\u4e00\u4e2a\u6ee1\u8eab\u7eb9\u8eab\u7684\u5973\u5b69\u5728\u5c71\u91cc\u91c7\u6458\u91ce\u83dc\u3002"} +{"id": "1003535", "video_name": "4141d21e-faaa-5a3b-a84c-f3c7c4e0166c", "text": "\u975e\u5e38\u6050\u6016\u7684\u6050\u6016\u573a\u666f\uff0c\u975e\u5e38\u6050\u6016\u7684\u753b\u9762\uff0c\u8df3\u8dc3\u60ca\u5413\uff0c4K\u8d28\u91cf\u3002"} +{"id": "6003047", "video_name": "cd42df2e-77b6-5ade-bace-fb3d4d32a485", "text": "\u6211\u4e5f\u662f\u4e00\u4e2a\u82f1\u96c4\u3002"} +{"id": "0003675", "video_name": "417f82f1-4fd2-5691-9bf7-44f0d204f76b", "text": "\u5e02\u573a\u4f11\u606f\u5ba4\u7684\u573a\u666f\uff0c\u4e09\u4e2a\u7537\u5b69\u5404\u81ea\u5e26\u7740\u4ed6\u4eec\u7684\u732b\u3002"} +{"id": "2005262", "video_name": "5ea96e49-2190-52e6-a6c4-f5f0db3a837c", "text": "\u52a8\u6001\u95ea\u70c1\u7684\u706f\u5149\uff0c\u9177\u70ab\u95ea\u8000\uff0c\u8f6e\u5b50\u8f6c\u52a8\u3002"} +{"id": "6004375", "video_name": "67c94f13-a46c-5852-b9b4-1afc4ce814eb", "text": "\u53e4\u4ee3\u4e2d\u56fd\u7684\u6218\u58eb\u4eec\u6b63\u5728\u6218\u573a\u4e0a\u4f5c\u6218\u3002\n\nSource sentence: I am learning Chinese language because I want to explore Chinese culture. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u4e86\u89e3"} +{"id": "2006829", "video_name": "7448d3e4-b6ea-5a41-abd2-e95246fe9b2f", "text": "\u677e\u6811\u5728\u9ad8\u5904\u5486\u54ee\u3002"} +{"id": "4004202", "video_name": "55133c7e-a8eb-5dd7-b768-584b60d3b10f", "text": "\u57ce\u9547\u3001\u5e7b\u60f3\u3001\u6811\u3001\u613f\u671b\uff0c\u5728\u4e00\u4e2a\u6709\u6d3b\u529b\u7684\u57ce\u9547\u4e2d\u5fc3\uff0c\u6811\u7684\u524d\u9762\u6709\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "7003412", "video_name": "c95c8885-826e-5a68-ae15-bc2d238c6bfa", "text": "\u6211\u4eec\u770b\u5230\u684c\u5b50\u4e0a\u6709\u6570\u767e\u4e07\u7f8e\u5143\uff0c\u7535\u5f71\u822c\u768416:9\u6bd4\u4f8b\u3002"} +{"id": "2004175", "video_name": "c8847a98-00fd-5c5c-917a-89a19e2b112d", "text": "\u4e00\u4e2a\u5c0f\u578b\u5de5\u4f5c\u5ba4\u4e13\u4e3a\u677f\u7403\u7403\u8ff7\u6253\u9020\uff0c\u62e5\u6709\u5370\u5ea6\u961f\u96c6\u4f53\u7eaa\u5ff5\u54c1\u3001\u64ad\u5ba2\u5de5\u4f5c\u5ba4\u3001\u5370\u5ea6\u961f\u3001\u677f\u7403\u5de5\u4f5c\u5ba4"} +{"id": "2004403", "video_name": "d8a01db7-0c81-561e-b877-94159e745f7f", "text": "a journey to find the biggest catch of his life.\n\n\u51e0\u5341\u5e74\u524d\uff0c\u4e00\u4f4d\u6e14\u6c11\u8e0f\u4e0a\u4e86\u5bfb\u627e\u4ed6\u4e00\u751f\u4e2d\u6700\u5927\u7684\u6e14\u83b7\u7684\u65c5\u7a0b\u3002"} +{"id": "6003240", "video_name": "c58d090a-33b6-55d3-975d-3522fd011976", "text": "\u5728\u9633\u5149\u660e\u5a9a\u7684\u5496\u5561\u9986\u91cc\uff0c\u5bf9\u684c\u4e0a\u4e00\u5757\u8272\u5f69\u7f24\u7eb7\u7684\u86cb\u7cd5\u8fdb\u884c\u653e\u5927\u955c\u5934\u3002"} +{"id": "2003414", "video_name": "13f1ed7a-4d4f-5d3b-8ead-1a4a23ae1beb", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u591c\u665a\u7684\u9633\u53f0\u4e0a\uff0c\u9762\u5bf9\u7740\u7b14\u8bb0\u672c\u7535\u8111\u5b66\u4e60\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u732b\u3002\u5979\u7684\u623f\u5b50\u5728\u5c71\u4e0a"} +{"id": "8001897", "video_name": "0d0b52cf-2c0b-59c9-aa1d-edb2fa342768", "text": "\u8759\u8760\uff0c\u5546\u5e97\u7684\u7834\u7a97\uff0c\u8857\u4e0a\u7684\u73bb\u7483\u788e\u7247\uff0c\u57ce\u5e02\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004730", "video_name": "ddb19a34-4572-504b-aaeb-4e297f612406", "text": "\u4e00\u4e2a\u5e26\u6709\u65cb\u8f6c\u4e91\u6735\u7684\u5927\u6d6e\u52a8\u5fc3\u5f62\u3002"} +{"id": "1003419", "video_name": "3f202053-6e0a-5f32-9c9c-f6b653c03c53", "text": "\u4e00\u53ea\u7334\u5b50\u3001\u590d\u6d3b\u8282\u5154\u5b50\u3001\u7334\u5b50\u5077\u8d70\u590d\u6d3b\u8282\u5154\u5b50\u7684\u5f69\u86cb\u3001\u590d\u6d3b\u8282\u3001\u6570\u5b57\u7ed8\u753b\u3001\u6982\u5ff5\u827a"} +{"id": "8002794", "video_name": "768f84ce-da19-5e75-8887-b74e7d9c4395", "text": "\u7528\u7231\u505a\u6210\u7684\u82b1\u5750\u5728\u7194\u5ca9\u4e0a\u3002"} +{"id": "1005649", "video_name": "67ca80e5-6b17-5e06-9c4b-82f0e1b6d543", "text": "\u798f\u9ad8\u5df4\u58eb\u6539\u5efa\u6210\u516c\u5171\u56fe\u4e66\u9986\u3002"} +{"id": "1003389", "video_name": "3e72b4b8-873a-5deb-ad12-a8de02fda430", "text": "\u6709\u732b\u5728\u684c\u5b50\u4e0a\u8df3\u821e\u7684\u8d5b\u535a\u670b\u514b\u623f\u95f4\u3002"} +{"id": "7003241", "video_name": "e25c9868-e586-5328-a0ed-1d358e1e72e8", "text": "\u8001\u677f\u592b\u4eba\u7a7f\u7740\u9ad8\u8ddf\u978b\u624b\u6301\u7535\u952f\u3002"} +{"id": "2007016", "video_name": "5af40d50-5c32-591c-8c4d-7a8d3d69d45f", "text": "\u91d1\u8272\u7684\u5723\u8bde\u88c5\u9970\u54c1\u5728\u96ea\u5730\u4e2d\uff0c\u7c89\u8272\u91d1\u8272\uff0c\u94bb\u77f3\uff0c\u7c89\u8272\u7f8e\u4eba\uff0c\u5c55\u53f0\uff0c\u6781\u7b80\u4e3b\u4e49\u57ce\u5e02\u666f\u89c2\uff0c"} +{"id": "4003478", "video_name": "44634447-f84e-53b2-98d7-b99d371a22d1", "text": "\u8ba9\u5979\u5728\u6d77\u6ee9\u4e0a\u7a7f\u8fde\u8863\u88d9\u3002 \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "8001377", "video_name": "02873ee1-231d-5d54-a603-e4b3c70930ed", "text": "\u7f57\u7eb3\u5c14\u5f00\u5fc3\u5730\u4ece\u5ea6\u5047\u56de\u6765\uff0c\u770b\u5230\u4e86\u4e00\u4e2a\u5b81\u9759\u7684\u5c0f\u9547\u666f\u8c61\u300216:9\uff0c3D\uff0c\u6e05\u6670\u3002"} +{"id": "1006277", "video_name": "72e79c5a-b4a6-54a9-ac47-98586988000c", "text": "\u4e00\u4e2a\u4e2d\u56fd\u8001\u4eba \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0005968", "video_name": "243052ff-9c53-5a95-b04b-86e6343b4466", "text": "\u7531\u4f0a\u592b\u00b7\u5510\u5409\u3001\u57c3\u5c14\u65af\u6c83\u65af\u00b7\u51ef\u5229\u548c\u5c3c\u53e4\u62c9\u65af\u00b7\u666e\u6851\u6784\u60f3\u51fa\u7684\u9a91\u81ea\u884c\u8f66\u7684\u5973"} +{"id": "6002192", "video_name": "bb2281ec-7fd1-526d-92b7-9f556fec8017", "text": "\u5728\u4e00\u4e2a\u6709\u661f\u661f\u548c\u6708\u4eae\u7684\u96ea\u591c\uff0c\u6709\u6e29\u67d4\u7684\u5fae\u98ce\u5439\u7740\u98d8\u843d\u7684\u96ea\u82b1\u3002"} +{"id": "6002266", "video_name": "d4fe6929-f939-53ba-afff-5f3d8ba8bd8d", "text": "\u4e00\u961f\u5341\u5b57\u519b\u7a7f\u8d8a\u6c99\u6f20\u3002"} +{"id": "8001545", "video_name": "e89b2c92-0cc3-51da-95d8-8c9d2c1ec1d6", "text": "\u5341\u4e8c\u4e2a\u7537\u4eba\u7ad9\u5728\u82b1\u56ed\u91cc\u3002\u4ed6\u4eec\u7a7f\u7740\u534e\u4e3d\u7684\u670d\u88c5\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u6572\u51fb\u5c0f\u519b\u9f13\u3002"} +{"id": "4004603", "video_name": "048b3f34-8aea-5a3d-bc08-12a2b3173bbd", "text": "\u4ed6\u611f\u5230\u5174\u594b\uff0c\u671f\u5f85\u7740\u63a5\u4e0b\u6765\u7684\u4e00\u5929\uff0c\u4eab\u53d7\u7740\u6668\u5149\u7684\u6e29\u6696\uff0c\u6ee1\u5fc3\u671f\u5f85\u3002\u89c6\u9891\u91c7\u75283D\u52a8\u753b\u98ce"} +{"id": "1003534", "video_name": "413bc568-1292-527b-9d74-cc6049e94650", "text": "\u6e29\u5ea6\u4e0a\u5347\u56fe\u8868\u4ee5\u53cc\u500d\u901f\u5ea6\u589e\u957f\u3002"} +{"id": "4004708", "video_name": "b8ea0dac-2323-5253-ad8f-52e5bda64bcd", "text": "\u5728\u300a\u54c8\u5229\u2022\u6ce2\u7279\u300b\u4e2d\uff0c\u5deb\u5e08\u4eec\u4f7f\u7528\u9b54\u6756\u8fdb\u884c\u8fdc\u7a0b\u653b\u51fb\uff0c\u901a\u8fc7\u9b54\u6756\u53d1\u51fa\u7eff\u8272\u548c\u7ea2\u8272\u5149\u6ce2\u3002"} +{"id": "6002604", "video_name": "ed1c4a9a-06b9-5124-9a39-2eddea9c6eff", "text": "\u5728\u6d77\u6d0b\u4e2d\u6709\u4e00\u53ea\u5e26\u7740\u6df1\u8272\u9634\u5f71\u7684\u9ca8\u9c7c\u3002"} +{"id": "6003115", "video_name": "9b793f37-6d91-562d-a79a-9a10eaed65f7", "text": "\u5de5\u7a0b\u5e08\u8bd5\u56fe\u4fee\u590d\u6545\u969c\uff0c\u800c\u673a\u7ec4\u4eba\u5458\u4e4b\u95f4\u7684\u7d27\u5f20\u60c5\u7eea\u9010\u6e10\u5347\u9ad8\u3002"} +{"id": "5001743", "video_name": "618b8a69-a3f3-501e-b692-5bb625255e56", "text": "\u5973\u4eba\u5728\u65e5\u51fa\u7684\u65f6\u95f4\u6f14\u53d8\u4e3a\u80cc\u666f\u4e0b\u5439\u54cd\u5587\u53ed\uff0c\u8d85\u73b0\u5b9e\u52a8\u6001\u79fb\u52a8\u76f8\u673a4K\u3002"} +{"id": "6002345", "video_name": "0e8b012d-cda7-5c8e-9827-53ef44e53884", "text": "\u5c0f\u63d0\u7434\u5728\u5b8c\u5168\u9ed1\u8272\u80cc\u666f\u4e0b\u6f14\u594f\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "3004042", "video_name": "8cc16c89-99e6-5ca5-baad-ea52f992dbe6", "text": "\u4e00\u4f4d\u52a8\u6f2b\u5973\u5b69\u5728\u9910\u5385\u91cc\u559d\u53ef\u4e50\uff0c\u5929\u6c14\u6674\u6717\u3002"} +{"id": "4004042", "video_name": "21fed98d-3844-502d-bb85-ca2e841efc3a", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u89c9\u4e30\u5bcc\u7684\u89c6\u9891\u573a\u666f\uff0c\u63cf\u7ed8\u52a0\u62ff\u5927\u539f\u4f4f\u6c11\u5bf9\u6297\u4e25\u5bd2\u548c\u5d0e\u5c96\u5730\u5f62\u7684\u575a\u97e7\u7cbe"} +{"id": "2003125", "video_name": "791042e5-e343-5f45-90db-c28c6153e848", "text": "Source sentence: \u4f0a\u5229\u8bfa\u4f0a\u5dde\u4e1c\u5723\u8def\u6613\u65af\uff0c\u4e00\u4e2a\u6b63\u5728\u8870\u8d25\u7684\u57ce\u5e02\u3002"} +{"id": "1005829", "video_name": "6b19568c-2dbf-5959-9549-f9af46140e0b", "text": "\u4e00\u4e2a\u5fcd\u8005\u5728\u68ee\u6797\u4e2d\u6d88\u5931\u4e86\uff0c\u9b54\u6cd5\uff0c4C\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "3006259", "video_name": "abfdc933-9aca-5029-941b-659961a3e08c", "text": "\u65e9\u6668\u7684\u9633\u5149\u7167\u8000\u5728\u4e00\u7247\u975e\u6d32\u83ca\u7684\u7530\u91ce\u4e0a\u3002"} +{"id": "7002161", "video_name": "82371519-36d0-59db-b8bb-16d5cb2938e8", "text": "\u6c34\u9f99\u5934\u55b7\u706b\uff0c\u9ad8\u6e05\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u5199\u5b9e\u7684\u3002"} +{"id": "8003900", "video_name": "94980903-5af4-550c-8cb0-192c4573ee3d", "text": "\u4e00\u76cf\u70b9\u71c3\u7684\u706b\u7130\uff0c\u8c61\u5f81\u7740\u611f\u6069\u4e4b\u60c5\u6e29\u6696\u5fc3\u7075\u3002"} +{"id": "7002471", "video_name": "811582d2-9ca9-5723-b950-629fdd669b18", "text": "\u4e00\u628a\u7531\u9ec4\u91d1\u5236\u6210\u7684\u5251\uff0c\u9ed1\u8272\u6db2\u4f53\u4ece\u5251\u4e0a\u6d41\u4e0b\u5e76\u6ef4\u843d\uff0c\u5251\u8eab\u88ab\u85e4\u8513\u548c\u5c0f\u7ea2\u9ed1\u82b1\u8986"} +{"id": "3004745", "video_name": "36163cdb-239e-5981-a8be-3e57ec8dd3ff", "text": "\u4e00\u500b\u5750\u5728\u684c\u5b50\u524d\uff0c\u770b\u8457\u7246\u4e0a\u7684\u6642\u9418\uff0c\u611f\u5230\u6709\u4e9b\u4e0d\u77e5\u6240\u63aa\u7684\u4eba\u3002"} +{"id": "1004139", "video_name": "4caf4098-7984-56fd-9885-4438c0334d56", "text": "\u4e00\u540d\u6251\u514b\u9526\u6807\u8d5b\u51a0\u519b\u624b\u6301\u5956\u676f\uff0c\u5468\u56f4\u56f4\u7740\u89c2\u4f17\u3002"} +{"id": "4002183", "video_name": "5f70c27b-b555-56ca-9603-f546dab2f5d4", "text": "\u5728\u5730\u7262\u4e2d\u5954\u8dd1\uff0cZX Spectrum\uff0ccommodore64\u5916\u89c2\u3002"} +{"id": "8002845", "video_name": "636a5651-7fc3-5727-9de1-e1f6ea77203f", "text": "\u7537\u5b69\u53c2\u52a0\u8d5b\u8dd1\u6bd4\u8d5b\u3002"} +{"id": "4002372", "video_name": "431eec31-40ce-5a9a-bd35-ecef26ba903b", "text": "\u5854\u514b\u00b7\u5361\u5c14\u68ee\u4eca\u665a\u6b63\u5728\u4fdd\u9f84\u7403\u6bd4\u8d5b\u4e2d\u5c34\u5c2c\u5730\u6253\u65ad\u4fdd\u9f84\u7403\u624b\uff0c\u8be2\u95ee\u4e0d\u91cd\u8981\u548c\u4e0d\u76f8\u5173\u7684\u95ee\u9898\u3002"} +{"id": "3005605", "video_name": "ded89659-3dd8-5f70-8c06-7455cfe4b0f0", "text": "PTE\u8003\u8bd5\u6bcf\u4e2a\u90e8\u5206\u7684\u89e3\u91ca\u7247\u6bb5"} +{"id": "7003398", "video_name": "e24bfd8e-af62-594b-9918-7a001ca46865", "text": "\u52a0\u52d2\u6bd4\u6d77\u5c9b\u4e0a\u66b4\u96e8\u540e\u7684\u65e5\u51fa\u3002"} +{"id": "6004779", "video_name": "ee42da8d-7afb-5fab-8df4-da463bedf670", "text": "\u4eb2\u543b\u65f6\u5145\u6ee1\u6fc0\u60c5\uff0c\u5634\u5507\u548c\u820c\u5934\u52a8\u6765\u52a8\u53bb\uff0c\u6162\u6162\u5730\u79fb\u52a8\u624b\uff0c\u653e\u5927\u52304k\u3002"} +{"id": "6003391", "video_name": "de5e259d-ba7d-5984-8d0f-b64492f1f39e", "text": "\u5e74\u8f7b\u7684\u91d1\u53d1\u957f\u53d1\u5973\u58eb\u7a7f\u7740\u6027\u611f\u670d\u88c5\u5728\u7eff\u5c71\u4e0a\u6253\u9ad8\u5c14\u592b\u7403\uff0c\u84dd\u5929\u4e0b\u3002"} +{"id": "7004312", "video_name": "854177c7-3db0-5547-a5e5-c0b7021b1032", "text": "\u5728\u89c6\u9891\u4e2d\u4f7f\u7528\u201cMabel\u4f01\u4e1a\u623f\u5730\u4ea7\u8fde\u9501\u5e97\u201d\u8fd9\u4e2a\u8bcd\u6765\u5ba3\u4f20\u623f\u5730\u4ea7\u3002\u89c6\u9891\u5305\u542b\u91d1\u8272\u548c\u9ed1\u8272\u3002"} +{"id": "2006422", "video_name": "b5682ed2-8fc1-560a-a637-955915f1fbf6", "text": "\u4e00\u5e45\u6700\u559c\u7231\u7684\u4f5c\u54c1\u2014\u2014\u6d77\u00b7\u675c\u514b\u00b7\u962e\u7684\u4f5c\u54c1\u3002\u8fd9\u662f\u4e00\u5e45\u6781\u5177\u771f\u5b9e\u611f\u548c\u60ca\u4eba\u7f8e\u611f\u7684\u753b\u4f5c\uff0c\u63cf\u7ed8"} +{"id": "2003056", "video_name": "015ca83f-0c48-5f58-acbf-fa5b3e231996", "text": "\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u5973\u4eba\u7684\u5f62\u8c61\u6f02\u6d6e\u5728\u7a7a\u95f4\u4e2d\uff0c\u5b87\u5b99\u5728\u8fd0\u52a8\uff0c\u4ee516:9\u7684\u5bbd\u9ad8\u6bd4\u548cCinema 4D\u8d28\u91cf"} +{"id": "1004166", "video_name": "4d21a611-c89a-5316-a81d-56508c96681c", "text": "\u4e00\u90e8\u5c55\u793a\u79d1\u6280\u968f\u65f6\u95f4\u53d1\u5c55\u7684\u89c6\u9891\u3002"} +{"id": "0005331", "video_name": "18f051b5-14d0-5efe-ad26-436c67fd7916", "text": "\u6bcd\u4eb2\u548c\u513f\u5b50\u5728\u73a9\u300a\u690d\u7269\u5927\u6218\u50f5\u5c38\u300b\u6e38\u620f\u3002"} +{"id": "0003985", "video_name": "0126de4d-3e82-5e6a-b0c9-6679cb8366c3", "text": "\u4e00\u76cf\u7531\u9152\u5236\u6210\u7684\u706f\uff0c\u5185\u90e8\u6709\u57ce\u5e02\u3002"} +{"id": "2007571", "video_name": "80e94677-4890-5ec3-8463-bdb8637ead27", "text": "\u5c06\u519b\u5f00\u67aa\u4e86\uff0c12\u5c81\u7537\u5b69\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u84dd\u8272\u7761\u8863\uff0c\u8eb2\u5728\u5e8a\u5e95\u4e0b\uff0c\u624b\u6301\u8721\u70db"} +{"id": "8003836", "video_name": "b8d74165-5ebd-5422-afa8-7d6a215c0492", "text": "\u5973\u4eba\u5728\u821e\u6c60\u4e0a\u5feb\u4e50\u5730\u4eab\u53d7\u7740\uff0c\u5b57\u4f53\uff1a\u73b0\u4ee3\uff0c\u4fe1\u606f\uff1a\u6559\u7ec3\u65e5\u3002"} +{"id": "6003728", "video_name": "92c7a58e-2e27-545d-9004-40618bbcb3d3", "text": "\u7345\u738b\u96f7\u6b50\u9192\u4f86\u5f8c\u767c\u73fe\u81ea\u5df1\u88ab\u56f0\u5728\u7db2\u4e2d\u3002"} +{"id": "7004828", "video_name": "a6d71e45-c211-593b-bbfc-5e4f0167cc1c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u7ad9\u5728\u6c7d\u8f66\u5c55\u5385\u91cc\u3002"} +{"id": "7002631", "video_name": "98425caa-5511-525a-8d20-a3d2be08718e", "text": "\u7235\u58eb\u5c0f\u53f7\u624b\u8fc8\u5c14\u65af\u00b7\u6234\u7ef4\u65af\u5728\u672a\u6765\u4e16\u754c3D\u4e2d\u6f14\u594f\u65f6\u98de\u884c\u3002\u53c2\u8003Flying Lotus\u8fdb\u884c\u89c6\u89c9\u5f62\u8c61\u3002"} +{"id": "4004979", "video_name": "f7c1c12d-b3cc-5366-9823-250eb121ec79", "text": "\u4e00\u4e2a\u6c34\u7403\u8fd0\u52a8\u5458\uff0c\u62e5\u6709\u91d1\u521a\u72fc\u822c\u7684\u53cc\u624b\uff0c\u5411\u7403\u95e8\u6295\u7403\uff0c\u5728\u89c2\u4f17\u5e2d\u524d\u662f\u4e00\u7fa4\u6f2b\u5a01\u82f1\u96c4\u3002"} +{"id": "2005632", "video_name": "f9ae693f-3a02-59fd-9c7a-2e752026d9a2", "text": "\u9ed1\u6d1e\u5468\u56f4\u7269\u8d28\u7684\u8fd0\u52a8\uff0c\u8ba1\u5212\u53d8\u66f4\uff0c\u9ad8\u52a8\u6001\u3002"} +{"id": "4002843", "video_name": "eef14ab3-2c89-56b2-ae4f-91aac74488a8", "text": "\u5df4\u5409\u5ea6\u72ac\u7761\u5728\u6c99\u53d1\u4e0a\uff0c\u505a\u68a6\u8ffd\u9010\u5154\u5b50\uff0c\u903c\u771f\u7ec6\u8282\u9ad8\u3002"} +{"id": "6002423", "video_name": "9ac0019b-4d7e-5a20-9031-7de381e857ce", "text": "\u8c79\u5b50\u8df3\u821e\uff0c\u6709\u4eba\u5728\u638c\u63a7\u97f3\u4e50\u3002"} +{"id": "1003532", "video_name": "4132c401-eaef-5075-92cb-91d4e642453e", "text": "\u91d1\u8272\u623f\u95f4\u5145\u6ee1\u795e\u5947\u548c\u795e\u79d8\u7684\u95e8\u6237\u3002"} +{"id": "1005505", "video_name": "654ea97e-ac88-5e00-83e0-438a9b5da82a", "text": "\u82cf\u8054\u98de\u673a\u3001\u9713\u8679\u706f\u3001\u96ea\u3001\u91ce\u751f\u3001\u52a8\u4f5c\u3001\u73ab\u7470\u3001\u5c71\u4e18\u3001\u81ea\u7136\u3001UHD 8K\u3001\u6781\u9650\u3001\u95ea"} +{"id": "0005149", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "\u5728\u843d\u65e5\u7684\u4f59\u6656\u4e0b\uff0c\u4e00\u4e9b\u8001\u4eba\u6b63\u5728\u7530\u91ce\u91cc\u6536\u5272\u7a3b\u8c37\u3002"} +{"id": "4003010", "video_name": "ad4e6cab-e28b-5405-9aa4-e2797241a4d4", "text": "\u7537\u4eba\u5728\u8def\u4e0a\u548c\u9e2d\u5b50\u8df3\u821e\u3002"} +{"id": "8002839", "video_name": "c9d5cd04-3cfc-59d2-8079-9f9e8324f1d9", "text": "\u4e00\u6bb5\u5386\u53f2\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u5e0c\u814a\u62dc\u5360\u5ead\u65f6\u671f\u7684\u7537\u5b50\u62d4\u51fa\u5315\u9996\u81ea\u536b\u3002"} +{"id": "3006630", "video_name": "5e0f4be8-3015-51f2-b93a-6285009323a0", "text": "\u4e16\u754c\u672b\u65e516K"} +{"id": "4003770", "video_name": "668da204-93d6-5e11-b093-4c3bfc6dac9a", "text": "\u5404\u56fd\u5e86\u795d\u6392\u706f\u8282\u7684\u8499\u592a\u5947\uff0c\u5c55\u73b0\u4e0d\u540c\u793e\u533a\u7684\u591a\u6837\u6027\u548c\u56e2\u7ed3\u3002"} +{"id": "3005043", "video_name": "8b47babc-39fe-5918-83ac-e71aa56770ef", "text": "\u6d88\u9632\u8f66\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u9e23\u7740\u7ea2\u8272\u8b66\u706f\u98de\u9a70\u3002"} +{"id": "6004962", "video_name": "37b75533-f193-58c8-bfc1-a54e09e42840", "text": "\u5973\u4eba\u5934\u8111\u4e2d\u6d6e\u73b0\u7740\u4ee3\u6570\u7b26\u53f7\u601d\u8003\u3002"} +{"id": "6003153", "video_name": "21261446-40c2-5f1b-9554-16ee9aeeccc9", "text": "\u8857\u4e0a\u7684\u4eba\u4eec\u770b\u7740\u4e00\u4e2a\u5feb\u901f\u5954\u8dd1\u7684\u7537\u4eba\u611f\u5230\u9707\u60ca\u3002"} +{"id": "7004188", "video_name": "c2892b67-f5af-541a-bd2c-f8a1effbdecf", "text": "\u4e00\u4e2a\u8f66\u8f6e\u7684\u7167\u7247\u3002\u8f6e\u8f8b\u7684\u8f90\u6761\u5448\u811a\u5f62\u3002"} +{"id": "8002849", "video_name": "583b64e8-4be4-552f-abaf-60077a233c44", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u6355\u6349\u7e41\u534e\u672a\u6765\u57ce\u5e02\u7684\u666f\u8c61\uff0c\u5c55\u793a\u4eba\u7c7b\u548c\u673a\u5668\u4eba\u65e0\u7f1d\u5171\u5b58\u7684\u573a\u666f\u3002\u89c6\u9891\u4e3a16:9\u9ad8\u8d28\u91cf8K\u3002"} +{"id": "1003154", "video_name": "3a26f4c8-b377-5c81-919f-5e74cf7eeabd", "text": "\u4e00\u6839\u62df\u4eba\u5316\u7684\u53f0\u6e7e\u9999\u80a0\u5728\u70e4\u8089\u67b6\u4e0a\u8df3\u821e\uff0c\u76ae\u80a4\u5149\u6ed1\u6709\u5149\u6cfd\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "4003699", "video_name": "859d3f70-1188-57f9-b044-bc3a043b08c7", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u5f3a\u58ee\u7684\u7537\u4eba\u624b\u6301\u4e00\u628a\u5251\u3002"} +{"id": "0005076", "video_name": "145cfd59-ea46-5a3e-b932-4a07c72a9e3a", "text": "\u5728\u64cd\u573a\u4e0a\u9633\u5149\u660e\u5a9a\u7684\u65f6\u5019\uff0c\u4e00\u4e2a\u7537\u5b69\u5728\u73a9\u8db3\u7403\u3002"} +{"id": "2003166", "video_name": "fca3da36-a9bc-5ccc-83ed-19d103023977", "text": "\u5728\u8fd9\u91cc\uff0c\u610f\u5927\u5229\u603b\u7406\u4e54\u5c14\u5409\u4e9a\u00b7\u6885\u6d1b\u5c3c\u63a5\u7ba1\u6743\u529b\uff0c\u6210\u4e3a\u4e2d\u56fd\u7684\u65b0\u7edf\u6cbb\u8005\u3002"} +{"id": "7003140", "video_name": "b9f2d4f5-4efe-5b79-8466-5d4cf227b3db", "text": "\u4e3a\u4e00\u4e2a\u5e02\u573a\u521b\u5efa\u4e00\u4e2a\u6807\u5fd7\uff0c\u5176\u4e2d\u5305\u62ec\u4e00\u67b6\u6ce2\u97f3747\u548c\u4e00\u4e2a\u4e16\u754c\u7684\u80cc\u666f\u3002"} +{"id": "1004626", "video_name": "56035d13-e10d-5962-9d94-444a35e4a753", "text": "Source sentence: \u5706\u5f62\u677e\u9f20\u5728\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "3003216", "video_name": "c91ca24c-4574-5400-92cf-2b3551980278", "text": "\u573a\u666f\u662f\u7f8e\u4e3d\u7684\u98ce\u666f\u548c\u9e1f\u513f\u57283D\u5361\u901a\u52a8\u753b\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "8002318", "video_name": "e30c0fe9-3a79-5d8a-89dc-6517904ecc1c", "text": "\u670b\u53cb\u4eec\u5728\u7ea2\u8c1c\u9635\u4e2d\u89e3\u8c1c\u9898\uff0c\u514b\u670d\u969c\u788d\u627e\u5230\u7ea2\u5b9d\u77f3\u3002\u8fd9\u662f\u4e00\u90e8\u52a8\u753b\u7247\u3002"} +{"id": "4003003", "video_name": "1cfc2926-7137-5bb2-b8eb-9cc22487e22b", "text": "Sasumaa\u548cBahu\u90fd\u611f\u5230\u5c34\u5c2c\u5e76\u4e14\u9053\u6b49\u4e86\u3002"} +{"id": "0003546", "video_name": "3f47bc9c-0bd2-575f-a587-e46691016c46", "text": "\u5927\u516c\u53f8\u4f1a\u8bae\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\uff0c\u65e5\u5149\u7167\u660e\u3002"} +{"id": "2003872", "video_name": "b464a873-f604-5e82-9601-f5af32b8e94b", "text": "\u94c1\u4eba\u5728\u65e9\u6668\u7684\u68ee\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "6004847", "video_name": "6dd06208-f815-5405-ad2e-41bea73cb7a0", "text": "\u4e00\u540d\u91d1\u53d1\u5973\u5b69\u51b2\u6d6a\u7684\u6d77\u5578\u3002"} +{"id": "2007106", "video_name": "5c4965ee-8f9d-588b-86da-453a646ef84e", "text": "\u5584\u826f\u548c\u65e0\u79c1\u6bd4\u4efb\u4f55\u4f53\u80b2\u5956\u676f\u90fd\u66f4\u6709\u610f\u4e49\u3002"} +{"id": "6004670", "video_name": "1be86d67-1ac1-5886-a098-fd7f5d4bc8ea", "text": "\u57fa\u672c\u7684\u739b\u96c5\u6587\u660e\u6751\u5e84CGI\u52a8\u753b\u5411\u9ad8\u8038\u7684\u5929\u6587\u89c2\u6d4b\u6240\u7684\u5148\u8fdb\u57ce\u5e02\u666f\u89c2\u8f6c\u53d8\u3002"} +{"id": "1003320", "video_name": "3d2a5c42-838a-5ef1-858b-61c0922cd68f", "text": "\u8fd9\u53ea\u732b\u8df3\u5230\u68ee\u6797\u91cc\u7684\u53e6\u4e00\u68f5\u6811\u4e0a\u3002\u6708\u5149\u5728\u80cc\u540e\u3002"} +{"id": "7003524", "video_name": "afbb592a-7d03-57cb-8db5-ed35ca10eb29", "text": "\u53ef\u7231\u7684\u5c0f\u5f69\u8272\u5c0f\u732b\u5728\u7f8e\u4e3d\u7684\u7eff\u8272\u8349\u5730\u4e0a\u73a9\u800d\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7003317", "video_name": "7de3d35c-06b8-5c9d-9637-ebb563f36f47", "text": "\u5730\u7403\u4e0a\u7684\u6700\u540e\u4e00\u4e2a\u7537\u5b69\u5728\u884c\u8d70\uff0c\u7d2b\u8272\u7684\u5929\u9645\u548c\u706b\u7130\u822c\u7684\u96e8\u6ef4\u3002"} +{"id": "8001887", "video_name": "d7456929-c17b-5f1a-a6ec-f9293778701d", "text": "\u6a59\u8272\u886c\u886b\u548c\u9ed1\u8272\u957f\u88e4\u7684\u7537\u5b50\u6234\u7740\u5e3d\u5b50\uff0c\u76f4\u89c6\u6444\u50cf\u5934\uff0c\u5448\u73b0\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u8272\u5f69\u9c9c\u660e"} +{"id": "6003983", "video_name": "5e4c5808-d7de-554a-8e03-a7d495c34040", "text": "\u66fc\u5fb7\u62c9\u50cf\u4e00\u4e2a\u5929\u4f7f\u5347\u5929\uff0c\u7167\u7247\u903c\u771f\u3002"} +{"id": "3003783", "video_name": "991f8af7-89f0-5a8d-9116-df308c01be1d", "text": "Source sentence: Lo-Fi 3D\u4e2d\u7684\u4e00\u4e2a\u5973\u5b69\u5728\u5979\u672a\u6765\u4e3b\u4e49\u7684\u4e66\u684c\u4e0a\u5b66\u4e60\u3002\n\nSource sentence: The cat is sleeping on the couch.\nTranslation: \u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "6002817", "video_name": "3e725cc3-ba7b-52f4-929e-74d07cffa354", "text": "\u75288K\u7684\u7535\u5f71\u98ce\u683c\uff0c\u521b\u9020\u4e00\u4e2a\u6709\u7740\u706b\u7130\u773c\u775b\u7684\u795e\u5723\u4e4b\u5149\u7684\u5f62\u8c61\uff0c\u5c06\u6444\u50cf\u673a\u7684\u89d2\u5ea6\u9760\u8fd1\u9762\u90e8\u3002"} +{"id": "1006290", "video_name": "73348d1b-9d7a-5e0c-ba43-27da9d973fca", "text": "\u9732\u897f\u6cd5\u7684\u624b\u6293\u7740\u4e00\u4e2a\u7eb9\u8eab\u673a\u3002"} +{"id": "6000000", "video_name": "cf7437e5-9679-5860-860f-d9e1d4e37e84", "text": "\u4eba\u624b\u5728\u767d\u8272\u7b14\u8bb0\u672c\u4e0a\u753b\u5355\u8f66\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u4e8c\u7ef4\u52a8\u753b\uff0c5\u79d2\u52a8\u753b\u3002"} +{"id": "7002061", "video_name": "e3076520-28c9-5ec1-8d18-3d32e396b4d9", "text": "\u6162\u6162\u5730\u79fb\u52a8\u4eba\u7fa4\u3001\u7f13\u7f13\u5730\u79fb\u52a8\u9a6c\u5339\uff0c\u4ee5\u53ca\u6162\u6162\u5730\u79fb\u52a8\u65d7\u5e1c\u3002"} +{"id": "7002085", "video_name": "024322d8-7313-54c4-8c7a-7e5b9f6c1d3b", "text": "\u5728GTA\u98ce\u683c\u7684\u98de\u673a\u4e2d\u3002"} +{"id": "0003737", "video_name": "428f13bd-5812-5230-8539-ffda35c0d02a", "text": "\u706b\u7130\u3001\u6c34\u4e0b\u3001\u9ad8\u6e05\u6c34\u9f99\u5377\u52a8\u6001\u3002\u4fe1\u606f\uff1aTEZLIFE\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "1004087", "video_name": "4bb5f538-ffb0-5e02-8fa2-f25da147bb5b", "text": "DBZ\u4e2d\u7684\u8d3e\u5c3c\u5df4\u7a7f\u7740\u793c\u670d"} +{"id": "2005272", "video_name": "b8baa481-75c5-570f-baa6-9accd98fa5b7", "text": "3D\u52a8\u6f2b\u592a\u7a7a\u5973\u5b69\u542cLofi\u97f3\u4e50\u9ad8\u6e05\u65e0\u9650\u5faa\u73af\u89c6\u9891"} +{"id": "1003353", "video_name": "3dcdec9e-b894-5d3f-aaa7-9ae665a944b1", "text": "\u4e00\u4e2a\u62bd\u70df\u7684\u7537\u4eba\u3002\u7f13\u6162\u5730\u5410\u51fa\u7684\u70df\u96fe\u5728\u52a8\u6001\u4e2d\u3002"} +{"id": "8001065", "video_name": "4336b386-274e-534c-be61-86a0687a1626", "text": "\u5168\u666f\u52a8\u6001\u573a\u666f\uff1a\u753b\u9762\u80cc\u9762\uff0c\u4e00\u4e2a\u957f\u7740\u6d41\u6dcc\u7684\u7070\u8272\u957f\u53d1\u7684\u5e74\u8f7b\u4e9a\u6d32\u5deb\u5e08\u6b63\u6df1\u5165\u6c89\u601d\u3002\u6355\u6349"} +{"id": "2005035", "video_name": "2845d597-0d3a-5ae7-9632-85f7f6532552", "text": "\u8ff7\u5e7b\u7684\u4eba\u7269\u51a5\u60f3\u30021970\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u3002"} +{"id": "0004228", "video_name": "057a1d19-2365-5b77-8210-685490174eaa", "text": "\u4e00\u5f20\u795e\u79d8\u7684\u5c9b\u5c7f\u5730\u56fe\uff0c\u6765\u81ea\u4e00\u672c\u6545\u4e8b\u4e664k\u3002"} +{"id": "1005853", "video_name": "6bad6acd-fb23-53af-aa4f-7d5cb1fc4f8f", "text": "\u5728\u4e00\u53ea\u5154\u5b50\u53d8\u6210\u7f8e\u4e3d\u5973\u4eba\u4e4b\u540e"} +{"id": "3003482", "video_name": "b4f435fd-1c08-5f1f-87ed-a0614ebafa76", "text": "\u751f\u6210\u4e00\u4e2a\u6c34\u4e0b\u573a\u666f\uff0c\u5c55\u793a\u4e00\u4e2a\u5145\u6ee1\u8272\u5f69\u7f24\u7eb7\u7684\u73ca\u745a\u738b\u56fd\uff0c\u6709\u7740\u53cb\u597d\u7684\u6d77\u6d0b\u751f\u7269\u548c\u540d\u4e3a\u8389\u62c9\u7684"} +{"id": "1004201", "video_name": "4daa2075-f4d8-548d-b2cd-1226c7ad7c36", "text": "\u5728\u8def\u706f\u4e0b\uff0c\u5e74\u8f7b\u7537\u5b69\u548c\u5e74\u8f7b\u5973\u5b69\u5728\u8def\u4e2d\u95f4\u4e92\u76f8\u63a5\u543b\u3002 \n\nSource sentence: I am looking forward to seeing you soon. \n\u6211\u671f\u5f85\u7740"} +{"id": "6002529", "video_name": "a39555d5-ca54-52d4-af02-213cc66baea6", "text": "\u4e00\u4e2a\u5370\u5ea6\u6559\u56fd\u738b\u5728\u4ed6\u7684\u5bab\u6bbf\u91cc\u5411\u7ef4\u5e0c\u52aa\u4e4b\u795e\u7684\u5076\u50cf\u7948\u7977\u3002"} +{"id": "3004599", "video_name": "bd716c77-e9f5-5ebd-8d49-1c22562ebc0e", "text": "\u5c11\u6797\u5bfa\u50e7\u4eba\u65b9\u8138\u51b7\u9759\u7684\u8868\u60c5\u3002"} +{"id": "7002886", "video_name": "ac9f38ca-01ca-55a2-b64b-439b63787f30", "text": "\u4e00\u5ea7\u7834\u8d25\u7684\u7ef4\u591a\u5229\u4e9a\u5f0f\u623f\u5c4b\u72ec\u7acb\u4e8e\u957f\u6ee1\u6742\u8349\u548c\u96fe\u6c14\u5f25\u6f2b\u7684\u6811\u6797\u4e2d\u3002\u8fd9\u4e2a\u753b"} +{"id": "7002401", "video_name": "9667c4ea-d57f-513e-aa64-810198e3bc77", "text": "\u6770\u4f5c\uff0c\u4e00\u540d\u7537\u6027\uff0c\u4e2d\u56fd\u58eb\u5175\uff0c\u7ad9\u5728\u76db\u5f00\u7684\u6a31\u82b1\u6811\u4e0b\uff0c\u7c89\u8272\u82b1\u74e3\u6162\u6162\u98d8\u843d\uff0c"} +{"id": "0006854", "video_name": "343fe538-104f-5447-80fe-7d9cd368763a", "text": "\u5973\u4eba\u5728\u516c\u56ed\u91cc\u9605\u8bfb\u3002\u68d5\u8910\u8272\u3002\u9488\u5b54\u76f8\u673a\u3002\u80f6\u7247\u9897\u7c92\u3002\u6e10\u53d8\u7167\u660e\u3002\u6697\u8272\u6e10\u53d8\u8fb9\u6846"} +{"id": "7004388", "video_name": "46684af8-c76e-5cb0-84bb-b9868637f8f0", "text": "\u521b\u5efa\u4e00\u4e2a\u5305\u62ec\u5c0f\u8c61\u5728\u5185\u7684\u5927\u8c61\u5bb6\u65cf\u76843D\u56fe\u50cf\uff0c\u5468\u56f4\u662f\u8302\u5bc6\u7684\u4e1b\u6797\u690d\u88ab\uff0c8K\u3001\u903c\u771f\u3001\u8272\u5f69"} +{"id": "0003219", "video_name": "3981caeb-523a-5bdc-b352-d970751fb7b6", "text": "\u4e24\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u5728\u6cd5\u9662\u5c4b\u9876\u4e0a\u6253\u6597\u3002"} +{"id": "3004953", "video_name": "bca1300c-5ccc-5cb3-a08b-46835eb307a8", "text": "\u732b\u5413\u5230\u53e6\u4e00\u53ea\u732b\uff0c\u5b83\u4eec\u6b22\u5feb\u5730\u8df3\u8dc3\u3002"} +{"id": "1006006", "video_name": "6e6686d9-6465-5f03-9c8e-bba5a25e70a0", "text": "\u6211\u8eab\u65c1\u7684\u4e24\u9897\u661f\uff0c\u6211\u5728\u4ed6\u7684\u773c\u4e2d\u627e\u5230\u4e86\u6211\u7684\u547d\u8fd0\u3002"} +{"id": "0004459", "video_name": "0964c56d-2374-52fe-9920-61fc5ed9899f", "text": "\u4e00\u8258\u8239\u822a\u884c\u5728\u7c89\u8272\u5927\u6d77\u4e0a\uff0c\u671d\u7740\u4e00\u4e2a\u5de8\u6d6a\u524d\u8fdb\u3002"} +{"id": "3003381", "video_name": "89201cc6-ee0f-5215-9b72-d89e44135cc6", "text": "\u4ee5\u84dd\u8272\u548c\u9ed1\u8272\u4e3a\u4e2d\u5fc3\uff0c\u4ee5\u6df1\u6e0a\u6f2b\u6b65\u8005\u963f\u6258\u5229\u4e9a\u65af\u7684YouTube\u7f29\u7565\u56fe\u4e3a\u4e3b\u8981\u7126\u70b9\u3002"} +{"id": "3006954", "video_name": "ed55856d-eaa3-5337-931f-e2ff8bf8ef3d", "text": "\u4e00\u822c\u955c\u5934\uff0c\u4e00\u4e2a\u4eba\u8d70\u8fdb\u4e00\u4e2a\u5145\u6ee1\u7834\u788e\u955c\u5b50\u7684\u623f\u95f4\uff0c\u955c\u5b50\u53cd\u5c04\u51fa\u4ed6\u7684\u53d8\u5f62\u7248\u672c\u3002\u7535\u5f71\u822c\u76844K"} +{"id": "6003492", "video_name": "a426ba32-b6db-534d-ad21-ec3117ed0813", "text": "\u4e24\u540d\u5251\u5ba2\u5728\u66b4\u98ce\u96e8\u4e2d\u76f8\u4e92\u51b2\u649e\u3002"} +{"id": "6004854", "video_name": "9dc29331-0427-58d8-881c-f3713725ee0b", "text": "\u8ba9\u4e24\u53ea\u8682\u8681\u7f13\u6162\u5730\u5411\u524d\u79fb\u52a8\uff0c\u5728\u89c6\u9891\u4e2d\u53ea\u6709\u8682\u8681\u5728\u79fb\u52a8\u3002"} +{"id": "3004178", "video_name": "5dff6d35-e3ef-5b5b-a82e-be4288dc1b2c", "text": "\u4fef\u89c6\u6469\u5929\u5927\u697c\u5c4b\u9876\u7684\u89c6\u89d2\u3002"} +{"id": "2006071", "video_name": "7e055561-5c16-5a75-a7ac-0d53ce0bd9f1", "text": "\u7f8e\u4e3d\u7684\u516c\u4e3b\u548c\u5de8\u5927\u7684\u86c7\u5728\u90c1\u90c1\u8471\u8471\u7684\u82b1\u56ed\u548c\u7f8e\u4e3d\u7684\u6cb3\u6d41\u4e2d\u95f4\uff0c\u5b83\u4eec\u540e\u9762\u662f\u91d1\u8272\u7684"} +{"id": "4002029", "video_name": "bb157065-fe99-5158-a0e9-405d3c369893", "text": "\u89c6\u9891\uff0c\u826f\u597d\u7684\u7167\u660e\uff0c\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b50\u6e29\u67d4\u5730\u6d82\u62b9\u9762\u971c\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u9632\u6b62\u5916\u90e8\u6c61\u67d3\u7269\u4fb5\u5165\u3001"} +{"id": "3003100", "video_name": "c88ecd99-7df9-5805-aa56-b31293e4e15c", "text": "\u68ee\u6797\u4e2d\u7684\u706b\u795e\u5973\u795e"} +{"id": "2006676", "video_name": "df259e4b-44fe-5c8c-b7cf-bd3bd69abdc7", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u5370\u52a0\u4eba\uff0c\u62e5\u6709\u95ea\u7535\u80fd\u529b\u3002"} +{"id": "8003508", "video_name": "cfd5a3e4-315f-5fae-9961-1a95321b00cc", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u3001\u7167\u7247\u822c\u903c\u771f\u30018k\u3001\u5723\u8bde\u8001\u4eba\u4ece\u5929\u7a7a\u4e2d\u4e22\u793c\u7269\u3002"} +{"id": "0004752", "video_name": "0ea6a7ad-21b8-558c-a4ed-7291a46c9b37", "text": "\u521b\u5efa\u4e00\u4e2aPPT\u5e7b\u706f\u7247\uff0c\u5217\u51fa\u5173\u4e8e\u4ec0\u4e48\u662fTableau\u6570\u636e\u53ef\u89c6\u5316\u7684\u8981\u70b9\u3002"} +{"id": "2007222", "video_name": "a70f1942-07f7-5c47-a1ae-61a9313d81c0", "text": "\u51e4\u51f0\u3001\u795e\u5947\u7684\u6548\u679c\u3001\u591c\u7a7a\u3001\u70df\u82b1"} +{"id": "4002001", "video_name": "933a24bc-b584-5de9-970f-eaa6664ac234", "text": "\u4e00\u4e2a\u72b9\u592a\u7537\u5b50\u572819\u4e16\u7eaa\u7684\u5df4\u52d2\u65af\u5766\u4e0e\u4e00\u540d\u82f1\u56fd\u58eb\u5175\u4e89\u8fa9\u3002"} +{"id": "6002416", "video_name": "f20ef9a3-9aee-521d-9c07-3b296dcd45e9", "text": "\u7ea2\u72d0\u72f8\u6234\u7740\u6e38\u620f\u8033\u673a\u5728\u592a\u7a7a\u4e2d\u542c\u97f3\u4e50\u3002\n\nSource sentence: The sun is shining brightly in the blue sky.\n\u592a\u9633\u5728\u84dd\u5929\u4e2d"} +{"id": "2003803", "video_name": "59c5741b-76ef-5093-824a-880c2decf571", "text": "\u4ece\u53f3\u5230\u5de6\u79fb\u52a8\u7535\u52a8\u6c7d\u8f66\uff0c4k\uff0c\u5168\u9ad8\u6e05\u3002"} +{"id": "7003948", "video_name": "b8b52286-37fb-5d63-9206-daf83f7f35cd", "text": "\u6162\u955c\u5934\u4e0b\u6c34\u4e2d\u843d\u4e0b\u7684\u6d46\u679c"} +{"id": "7003329", "video_name": "81f61599-d401-5b68-9fb5-5ad52bebb09c", "text": "\u5b8c\u7f8e\u7684\u7c89\u8272\u773c\u775b\uff0c\u51fa\u8272\u7684\u9762\u5bb9\uff0c20\u591a\u5c81\u7684\u5370\u5ea6\u5973\u6f14\u5458Mumtaz\uff0c\u7f8e\u4e3d\u7684\u5916\u8c8c\uff0c\u7cbe\u81f4\u4f18\u96c5\u7684\u7ea2"} +{"id": "1004424", "video_name": "51e4ac84-405f-56e4-b6c6-c16a6efdac7e", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u4e00\u4e2a\u4e0b\u6c89\u7684\u3001\u88ab\u7194\u5ca9\u6d6a\u6f6e\u5305\u56f4\u7684\u56fd\u9645"} +{"id": "7004686", "video_name": "cdaac7da-3896-5336-bb17-30ca851f294c", "text": "\u5927\u4f17\u7684\u4f5c\u54c1\u88ab\u5f2f\u66f2\u5730\u653e\u7f6e\u5728\u83ab\u65af\u79d1\u7ea2\u573a\u4e0a\uff0c\u5e76\u5728\u90a3\u91cc\u70ed\u60c5\u5730\u8df3\u821e\u3002"} +{"id": "6003172", "video_name": "36a9223b-a8bb-5eed-8f65-2cf80ab0a1da", "text": "\u4e00\u53ea\u62e5\u6709\u91d1\u9505\u7684\u5f69\u8679\u5c3d\u5934\u7684\u5c0f\u7cbe\u7075\u3002"} +{"id": "3006058", "video_name": "905f9323-67df-5aa1-a19a-4893994055b7", "text": "\u5e74\u8f7b\u7684\u5370\u5ea6\u795e\u7947\u62c9\u739b\u4e0e\u5144\u5f1f\u62c9\u514b\u65af\u66fc\u548c\u5973\u795e\u5e0c\u5854\u5728\u68ee\u6797\u4e2d\uff0c\u805a\u7126\u6e05\u6670\uff0c"} +{"id": "0006729", "video_name": "31e0773d-beb5-5cec-bfb7-a203f4bbc09c", "text": "\u91d1\u9ec4\u8272\u7684\u9633\u5149\u900f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\u3002\u9ad8\u5927\u3001\u5a01\u4e25\u7684\u6811\u6728\u6447\u66f3\u7740\u53f6\u5b50\u3002"} +{"id": "0003820", "video_name": "4417f54f-c535-5fd6-a93a-5703bbcbbf3c", "text": "PIKABOO\u662f\u4e00\u4e2a\u776b\u6bdb\u54c1\u724c\uff0c\u5168\u4e16\u754c\u7684\u4eba\u90fd\u4f7f\u7528PIKABOO\u7684\u776b\u6bdb\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u6234\u7740PIKABOO\u7684"} +{"id": "3003757", "video_name": "83a666e6-d29c-5eb9-a8ad-020428d39860", "text": "\u5f53\u7136\uff0c\u4f60\u53ef\u80fd\u4f1a\u611f\u5230\u5bb3\u6015\u3002\u6000\u7591\u53ef\u80fd\u5728\u4f60\u7684\u95e8\u53e3\u6572\u95e8\u3002\u4f46\u8bf7\u8bb0\u4f4f\uff0c\u6bcf\u4e2a\u6210\u529f\u7684\u6545\u4e8b\u90fd\u59cb\u4e8e\u4e00\u6b21\u4fe1\u4ef0\u7684"} +{"id": "1006224", "video_name": "722922e1-85e2-576f-ade4-a8ab89e20dad", "text": "\u9ed1\u6697\u6a21\u7cca\u7684\u4eba\u7c7b\u7075\u9b42\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "1005468", "video_name": "647b2c38-6b07-5191-acd4-056d208674fc", "text": "\u4e00\u7247\u5b81\u9759\u7684\u6d77\u6ee9\u548c\u58ee\u89c2\u7684\u65e5\u51fa\uff0c\u4f5c\u4e3a\u80cc\u666f\uff0c\u4e00\u53ea\u6234\u7740\u7a3b\u8349\u5e3d\u7684\u6b22\u5feb\u9e1f\u513f"} +{"id": "7003964", "video_name": "cab70fcb-28b3-523b-980e-7357cc352c8b", "text": "\u4e00\u4e2a\u5173\u4e8e\u9ed1\u6697\u68ee\u6797\u7684\u827a\u672f\u8868\u73b0\uff0c\u591c\u665a\u7684\u666f\u8c61\uff0c\u6811\u6728\u4f3c\u4e4e\u5728\u4f4e\u58f0\u8bc9\u8bf4\u7740\u8be1\u5f02\u7684\u65cb\u5f8b"} +{"id": "1004134", "video_name": "4c958a7a-33ed-53d7-af6a-473c13c1fe2f", "text": "\u4e2d\u4e16\u7eaa\u7684\u5973\u5deb\u50cf1922\u5e74\u7684\u7535\u5f71\u3002"} +{"id": "3006404", "video_name": "3d561512-9ebc-5570-88dd-3521cf774802", "text": "\u4f7f\u7528\u5148\u8fdb\u6280\u672f\u521b\u5efa\u4e00\u4e2a16:9\u683c\u5f0f\u7684\u89c6\u89c9\u5316\u8868\u73b0\uff0c\u5c55\u793a\u4e2d\u56fd\u957f\u57ce\u4ece\u592a\u7a7a\u4e2d\u770b\u7684\u666f\u8c61\u3002"} +{"id": "5001179", "video_name": "44894ffe-9485-5653-be23-84878febc6c4", "text": "\u4ee4\u4eba\u60ca\u53f9\u7684\u65f6\u5c1a\u6a21\u7279\u4e0a\u4e0b\u6253\u91cf\u3002"} +{"id": "3003580", "video_name": "42bd71af-253e-52c4-ad81-f007188d89a3", "text": "\u8def\u8fb9\u7684\u4e00\u8f86\u8f66"} +{"id": "3006015", "video_name": "8dcef672-5977-59bd-9d64-7e5a17313078", "text": "\u732b\uff0c\u6e05\u6670\u6587\u672c\uff0c\u4fe1\u606f\uff1a\u55e8\u5361\u65af\u5e15\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004494", "video_name": "33f8a4ba-a098-5069-ae14-2dd5534d4489", "text": "\u4e00\u540d\u82f1\u56fd\u7537\u5b50\u5bf9\u7740\u89c2\u4f17\u8bb2\u8bdd\u5e76\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "7002446", "video_name": "c366dd29-78ff-51d2-a82c-34f6572f1b12", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u5c0f\u72d7\u5728\u4ed6\u7684\u6c34\u7897\u91cc\u6e85\u6c34\u3002"} +{"id": "7002746", "video_name": "5fa570c1-65ef-5c17-bb84-01d9c880f7f2", "text": "\u5f17\u91cc\u8fbe\u00b7\u5361\u7f57\u5728\u5979\u4e0d\u540c\u7684\u7ed8\u753b\u4f5c\u54c1\u4e2d\u6829\u6829\u5982\u751f\u3002\u5979\u7684\u7ed8\u753b\u98ce\u683c\u662f\u5177\u6709\u4e00\u822c\u6027\u7684\u8ba1\u5212\u3002"} +{"id": "3004716", "video_name": "66851284-9b0c-59a2-8f69-449e730a95cb", "text": "\u6e05\u6f88\u7684\u6cc9\u6c34\u7f13\u7f13\u6d41\u8fc7\u77f3\u5934\uff0c\u53d1\u51fa\u60a6\u8033\u7684\u58f0\u97f3\u3002"} +{"id": "1004966", "video_name": "5bbb44eb-0c7c-50f6-a6cd-47d1573bb5a0", "text": "\u5979\u5fc5\u987b\u4ed4\u7ec6\u8046\u542c\u5e76\u89e3\u8bfb\u6811\u6728\u7684\u53e4\u8001\u8bed\u8a00\uff0c\u4ee5\u63ed\u793a\u4e0b\u4e00\u4e2a\u4eea\u5f0f\u7684\u4f4d\u7f6e\u3002"} +{"id": "3006288", "video_name": "d0470681-1a23-556e-92ef-db830c876049", "text": "\u89e6\u624b\u6495\u88c2\u7740\u4e00\u5757\u7ea2\u8272\u7684\u8089\u5757\uff0c\u751f\u7269\u3002"} +{"id": "6004108", "video_name": "8f249dff-10e3-591e-a2bf-3ad065ee7474", "text": "\u4e00\u4e2a\u7537\u5b69\u7684\u8f6e\u5ed3\u5728\u591c\u665a\u8d70\u5411\u4e00\u67b6\u53d1\u5149\u7684\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "7002761", "video_name": "b6700ac4-e8fd-5467-91f8-3f9859d6ca83", "text": "\u63d2\u753b\u5c55\u73b0\u4e86\u4e00\u4e2a\u8272\u5f69\u9c9c\u8273\u7684\u8611\u83c7\u7530\uff0c\u65e9\u6668\u7684\u76f4\u5c04\u9633\u5149\u4e0b\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u5de8\u5927\u7684\u53e4"} +{"id": "2006997", "video_name": "1b3745a3-f8ae-539a-a736-cb4ca0346e26", "text": "\u4e00\u4f4d\u6587\u827a\u590d\u5174\u65f6\u671f\u7684\u6d45\u8272\u76ae\u80a4\u5deb\u5e08\uff0c\u88ab\u4e00\u53ea\u95ea\u5149\u7684\u9e1f\u8ddf\u968f\u7a7f\u8fc7\u68ee\u6797\uff0c\u5728\u9b54"} +{"id": "4002079", "video_name": "21e0eae2-6956-5822-81ab-2974239cef86", "text": "\u718a\u732b\u6276\u63d2\u5934\u7684\u8868\u73b0\u4e3b\u4e49\u98ce\u683c\uff0c\u5177\u6709\u5145\u6ee1\u6d3b\u529b\u7684\u7f8e\u5b66\u3002\u91c7\u7528\u9c7c\u773c\u955c\u5934\u4ece\u4fef\u89c6\u89d2\u5ea6"} +{"id": "1006645", "video_name": "79ca060d-347d-523c-959f-08d76e61830e", "text": "\u4e00\u53ea\u9ca8\u9c7c\u5728\u6d77\u4e0a\u541e\u566c\u4e00\u8258\u8239\u3002"} +{"id": "8001068", "video_name": "296da1b5-b94f-50e8-b1cf-99ef7e67c021", "text": "\u9b54\u5973\u4e54\u4e54\u5728\u96e8\u4e2d\u8d70\u5f00\uff0c\u611f\u5230\u6cae\u4e27\u3002"} +{"id": "5001246", "video_name": "3bc5d41f-f5f6-5a41-9306-d53cc55ef4c0", "text": "\u8fde\u4f53\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u5934\u90e8\u795e\u79d8\u7eb9\u8eab\uff0c\u6570\u7406\u5934\u76f8\u5b66\uff0c\u7535\u5b50\u663e\u5fae\u955c\uff0c\u9ecf\u83cc\uff0c\u771f\u83cc\uff0c\u7535\u7ebf\uff0c\u4e8c\u6781"} +{"id": "3004066", "video_name": "d2246f08-ab18-5c86-8561-16692c3495d6", "text": "\u9ad8\u901f\u5217\u8f66\u4e0a\u7684\u4e58\u5ba2\u8bad\u7ec3\u5e08\uff0c\u5728\u94f6\u6cb3\u80cc\u666f\u4e0b\uff0c\u706b\u82b1\u56db\u6e85\u3002"} +{"id": "1003747", "video_name": "451f942b-9855-5d60-93fd-0553231dd041", "text": "\u508d\u665a\u65f6\u5206\uff0c\u9633\u5149\u900f\u8fc7\u7ebd\u7ea6\u5e02\u9601\u697c\u7684\u7a97\u6237\u7167\u5c04\u8fdb\u6765\u3002"} +{"id": "3003347", "video_name": "1250cf32-b91c-515f-8afc-27077fecf69b", "text": "\u52a8\u6f2b\u5973\u5b69\u548c\u7537\u5b69\u4e00\u8d77\u4fef\u89c6\u7740\u57ce\u5e02\u5730\u9762\uff0c\u91c7\u7528\u6d77\u76d7\u6d6a\u6f6e\u98ce\u683c\uff0c\u8272\u5f69\u6591\u6593\u7684\u82b1\u56ed\uff0c"} +{"id": "4002099", "video_name": "03d24379-eedb-5941-b95f-062c4a5b0012", "text": "\u5feb\u4e50\u7684\u5e74\u8f7b\u5973\u5b50\u624b\u6301\u4e00\u74f6\u5c0f\u73bb\u7483\u7cbe\u534e\u74f6\uff0c\u7a97\u6237\u655e\u5f00\uff0c\u4e00\u5219\u9ed1\u767d\u8272\u76841950\u5e74\u4ee3\u5e7f\u544a\u3002"} +{"id": "2007070", "video_name": "8d5c4dda-1ead-56ec-a09a-58436887631b", "text": "1970\u5e74\u4ee3\u7684\u7075\u611f\uff0c\u7a7f\u7740\u5f69\u8272\u5316\u88c5\u670d\u7684\u4eba\u4eec\uff0c\u7528\u8d858\u80f6\u7247\u62cd\u6444\uff0c\u7075\u5f02\u6050\u6016\u7684\u745e\u5178\u98ce\u683c"} +{"id": "0005360", "video_name": "19761374-eb02-570c-a190-5458be1093c9", "text": "\u96e8\u6c34\u843d\u4e0b\uff0c\u7b80\u964b\u7684\u623f\u5c4b\u5728\u8302\u5bc6\u7684\u5927\u81ea\u7136\u4e2d\u3002"} +{"id": "5001923", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "\u98ce\u683c\u50cfBjork\uff0c\u6444\u5f71\u5e08Nick Knight\uff0c\u65f6\u5c1a\u8bbe\u8ba1\u5e08Ric Owens\uff0c\u7535\u5f71\u5bfc\u6f14Jodorowski\u3002"} +{"id": "0005950", "video_name": "23d58d30-eda7-508e-a50d-31f918d805bb", "text": "\u4ecb\u7ecd\u4e3b\u89d2\u72d0\u72f8\u3002"} +{"id": "6003030", "video_name": "d7b78dda-56a7-5704-bd5d-8aaff6abbaca", "text": "\u6234\u7740\u5723\u8bde\u5e3d\u7684\u6d63\u718a\u9a91\u5728\u4e00\u53ea\u975e\u5e38\u6bdb\u8338\u8338\u7684\u7f8a\u4e0a\u3002"} +{"id": "3004824", "video_name": "664127f6-5118-5d79-913a-c440598e6cdd", "text": "\u57ce\u5e02\u5929\u9645\u7ebf\u4e0a\uff0c\u4e00\u4e2a\u95e8\u6237\u51fa\u73b0\u4e86\uff0c\u5145\u6ee1\u795e\u79d8\u7684\u80fd\u91cf\u95ea\u70c1\uff0c\u88ab\u9ad8\u8038\u7684\u5efa\u7b51\u6240\u73af\u7ed5\u3002"} +{"id": "6003827", "video_name": "39459dec-95a7-5886-b13d-0821743aea24", "text": "\u97e9\u56fd\u7537\u6027\u89d2\u8272\u624d\u534e\u6a2a\u6ea2\u7684\u7ed8\u753b\u827a\u672f\u5bb6"} +{"id": "7003255", "video_name": "c07179cf-623a-5e29-8f22-2acde73dce65", "text": "\u8bf7\u5e2e\u6211\u5236\u4f5c\u4e00\u5f20\u76d8\u77f3\u684c\uff0c\u957f3200\u6beb\u7c73\uff0c\u5bbd1000\u6beb\u7c73\uff0c\u9ad8750\u6beb\u7c73\u3002\u684c\u9762\u662f\u6728\u7eb9\uff0c\u817f\u90e8\u53ef\u4ee5\u7528"} +{"id": "8002067", "video_name": "9d530f18-25d0-5f5b-9d11-a6dd203fab70", "text": "\u9ed1\u6697\u6df1\u5904\u7684\u9c9c\u660e\u9ec4\u8272\u90aa\u6076\u773c\u775b\u3002"} +{"id": "3006989", "video_name": "bb8194fa-f1ad-5c31-a5cf-57f2a810a3a1", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u8d70\u4e0a\u821e\u53f0\uff0c\u5403\u7740\u4e00\u6839\u5927\u70ed\u72d7\u3002"} +{"id": "1005409", "video_name": "635f0733-953f-5a4a-a286-cd1486a6cb8d", "text": "\u76f8\u673a\u7a7f\u8fc7\u65e7\u5e9f\u5f03\u7684\u6c7d\u8f66\uff0c\u5728\u4e00\u4e2a\u8001\u65e7\u7684\u5e9f\u5f03\u8f66\u5e93\u91cc\uff0c\u6709\u7070\u5c18\u3001\u6cb9\u6c61\u3001\u4f53\u79ef\u5149\u7167\u660e\uff0c\u4f7f\u7528"} +{"id": "3004037", "video_name": "b7e0cf72-b35d-5eb5-82ef-0859025eb967", "text": "1985\u5e74\u7684\u89c6\u9891\u4e2d\uff0c\u4e00\u4e2a\u7a7f\u7740\u98ce\u8863\u7684\u6c89\u9759\u7537\u5b50\u6ce8\u89c6\u7740\u843d\u65e5\u3002"} +{"id": "2007307", "video_name": "1b010f02-a91e-5616-9299-6734c2d344eb", "text": "\u673a\u5668\u5728\u6e38\u6cf3\u6c60\u91cc\u8df3\u821e\uff0c3D\u52a8\u753b\uff0c4K\uff0c\u653e\u5927\u3002"} +{"id": "4004943", "video_name": "6876ec3b-0bd3-5efe-ab56-bb169b1ca0af", "text": "\u4e00\u4e2a\u4eba\u9a91\u7740\u6ca1\u6709\u628a\u624b\u7684\u6469\u6258\u8f66\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "2004891", "video_name": "1f6d47af-617b-5c75-8a80-321760a5b557", "text": "\u6807\u5fd7\u8bbe\u8ba1\uff0c\u5496\u5561\u5e97\uff0c\u591c\u666f\uff0c\u7a97\u6237\u900f\u51fa\u8bb8\u591a\u95ea\u95ea\u53d1\u5149\u7684\u8fea\u65af\u79d1\u706f\u5149\u3002"} +{"id": "2006497", "video_name": "91bbc43f-61b5-5f6f-806d-fd3f99428541", "text": "\u5df4\u897f\u6559\u80b2\u5bb6\u4fdd\u7f57\u00b7\u5f17\u83b1\u96f7\u8df3\u563b\u54c8\u821e\u3002"} +{"id": "1004574", "video_name": "54f99252-687e-5ab6-a466-4611941b4f1c", "text": "\u57ce\u5e02\u88ab\u706b\u707e\u6467\u6bc1\u4e86\u3002"} +{"id": "6003137", "video_name": "bbcd4555-160a-51b8-bbb3-18733af917b7", "text": "\u60f3\u8c61\u4e00\u4f4d\u5728\u5979\u80ae\u810f\u7684\u623f\u95f4\u91cc\uff0c\u5750\u5728\u4e66\u684c\u524d\u7684lofi\u5973\u5b69\uff0c\u5979\u53f3\u624b\u62ff\u7740\u53f0\u706f\u3001\u7b14\u8bb0\u672c\u3001"} +{"id": "7003870", "video_name": "3993283d-f071-57d6-aa45-5994ba822d8d", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5fae\u7b11\u7740\uff0c\u6458\u4e0b\u5e3d\u5b50\uff0c\u6bcf\u4e2a\u89d2\u843d\u90fd\u6709\u6e05\u6670\u7684\u7ec6\u8282\u3002"} +{"id": "1005765", "video_name": "6a0eb927-6479-5e25-9161-71eac81858aa", "text": "\u6709\u673a\u4eba\u5de5\u667a\u80fd\u6210\u957f\u548c\u8fdb\u5316\u3002\u4fe1\u606f\uff1aALIANZA 4.0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4003985", "video_name": "d3e084e2-b75c-562a-a8e0-49926aa53ddc", "text": "\u6162\u6162\u5730\u5c06\u591c\u665a\u7684\u767d\u5bab\u7f29\u653e\u8fdb\u53bb\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u4f60\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "2006841", "video_name": "c70378fa-d1ed-5cb9-a555-772d275588cc", "text": "\u4eba\u4eec\u5728\u5927\u5409\u8428\u91d1\u5b57\u5854\u4e0a\u8df3\u7535\u5b50\u821e\u66f2\uff0c\u591c\u665a\u822a\u62cd\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "1006515", "video_name": "7739f755-b85b-5d33-a30a-adfea0af8246", "text": "\u9ad8\u4e2d\u7537\u5b69JASON\u7ad9\u5728\u5df4\u58eb\u7ad9\u7b49\u5f85\u5df4\u58eb\u3002\u4ed6\u4f3c\u4e4e\u6bd4\u838e\u62c9\u9ad8\u4e00\u5e74\u7ea7\u3002\u6770\u68ee\u6ce8\u610f\u5230\u6821\u8f66\u6b63\u5728\u63a5\u8fd1\u3002"} +{"id": "1003960", "video_name": "4921a2b2-4e3b-5e6f-9b1d-c6fece8beb8b", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u666f\u8272\u5f15\u53d1\u4e86\u4e00\u4e2a\u60ca\u5413\u573a\u9762\u3002"} +{"id": "0003533", "video_name": "3f14017a-02ac-5c10-9cd2-02d36740cdc7", "text": "\u4e00\u5e45\u60ca\u8273\u76843D\u4e09\u91cd\u66dd\u5149\u5c55\u793a\u4e86\u4e09\u4e2a\u72ec\u7279\u800c\u4ea4\u7ec7\u7684\u573a\u666f\u3002\u80cc\u666f\u662f\u5145\u6ee1\u6d3b\u529b\u7684\u661f\u7a7a\u591c\u665a"} +{"id": "0003620", "video_name": "40a4a4c6-bfb3-592f-94b5-9fb63913d0a2", "text": "\u5965\u83f2\u65af\u8bd5\u56fe\u4ece\u5730\u4e0b\u5730\u72f1\u62ef\u6551\u5c24\u91cc\u72c4\u523b\u3002"} +{"id": "6002964", "video_name": "bbc01c0b-c349-520e-b6b1-f33fca104146", "text": "\u5b89\u9759\u7684\u5c71\u4e18\uff0c\u7f8e\u5b66\uff0c\u5954\u8dd1\uff0c\u5bb6\u91cc\u3002"} +{"id": "0006441", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u548c\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u4e3b\u6f14\u76848k\u7535\u5f71\u3002\n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u8bf7"} +{"id": "0003809", "video_name": "43e16275-d37b-53bc-9020-dc5be016f4ea", "text": "\u4e00\u4e2a\u6a59\u8272\u7684\u9c7c\u5728\u6d77\u5e95\u548c\u5b83\u7684\u5bb6\u4eba\u4e00\u8d77\u6e38\u6cf3\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "8001958", "video_name": "0f1e7dc9-076d-561d-a853-939df0ed3697", "text": "\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u4ee5\u95ea\u7535\u4fa0\u7684\u8eab\u4efd\u5954\u8dd1\u3002"} +{"id": "3005768", "video_name": "48a6c6fc-4cbd-53a1-bd2f-959acc663d1a", "text": "\u955c\u5934\u626b\u8fc7\u70df\u96fe\u5f25\u6f2b\u7684\u9152\u5427\uff0c\u6700\u7ec8\u5b9a\u683c\u5728\u821e\u53f0\u4e0a\uff0c\u90a3\u91cc\u56f4\u7ed5\u7740\u97f3\u4e50\u5bb6\uff0c\u53e4\u8fbe"} +{"id": "8002785", "video_name": "e3bdab94-a6ef-573a-bcf3-e3c800e195a3", "text": "\u6f02\u6d6e\u7684\u94ed\u6587\u201cGERKULES\u201d\uff0c\u4ee5\u7ea2\u8272\u548c\u9ed1\u8272\u5448\u73b0\u3002"} +{"id": "2003951", "video_name": "e99846d7-6129-56c6-8e68-b5ae2b2c44a0", "text": "\u4e00\u4e2a\u53c8\u5927\u53c8\u65e7\u3001\u4eba\u6324\u4eba\u7684\u6218\u6597\u573a\u5730\u3002"} +{"id": "3006621", "video_name": "253e63ec-2dbc-5417-92ac-d38e35c1227c", "text": "\u8be6\u7ec6\u76844K\u5206\u8fa8\u7387\u7684\u9ed1\u8272\u82f1\u56fd\u6298\u53e0\uff0c\u7425\u73c0\u8272\u7684\u773c\u775b\uff0c\u4e0e\u6765\u81ea\u706f\u7684\u70ec\u5bf9\u8bdd\u3002"} +{"id": "6003403", "video_name": "4623a4a3-c377-589f-9104-90ec5426486f", "text": "\u4fdd\u5b89\u6b63\u5728\u751f\u4ea7\u5de5\u5382\u5de1\u903b\u68c0\u67e5\u3002"} +{"id": "3003789", "video_name": "1fe3c2ab-0f77-50a6-9a38-6b89b1e8ca09", "text": "\u4f0a\u65af\u5170\u6559\u592b\u5987\u5750\u5728\u5361\u5df4\u9762\u524d\uff0c\u548c\u4ed6\u4eec\u7684\u4e24\u4e2a\u53ef\u7231\u3001\u5065\u5eb7\u7684\u5b69\u5b50\u4e00\u8d77\u7948\u7977\uff0c\u4e00\u4e2a\u7537"} +{"id": "1005755", "video_name": "69df160c-20d1-538e-be30-c632ee951db6", "text": "\u4e00\u4f4d\u4ee4\u4eba\u53f9\u4e3a\u89c2\u6b62\u7684\u7f8e\u4e3d\u5973\u6027\u7684\u4f4e\u8c03\u8096\u50cf\uff0c\u677e\u6563\u7684\u5934\u53d1\u6ce2\u6d6a\u822c\u5730\u6563\u843d\u5728\u706b\u7ea2\u3001\u5f69"} +{"id": "8003922", "video_name": "cd7d67bb-f888-552f-b70d-f935ddf78954", "text": "\u4e13\u4e1a\u7537\u5b50\u5728\u7a7a\u4e2d\u6254\u94b1\u3002"} +{"id": "7003408", "video_name": "559f7d1a-0d17-5257-b4d6-889e6d2da09d", "text": "\u591a\u53ea\u9a86\u9a7c\u4ece\u8fdc\u5904\u5411\u76f8\u673a\u8d70\u6765\u3002"} +{"id": "3005781", "video_name": "8242b8d6-85d4-57ec-a0b8-ebbb3e5f3117", "text": "\u52a8\u6f2b\u52a0\u4e0a\u79fb\u52a8\u7684\u5b87\u5b99\u98de\u8239\u80cc\u666f\u3002"} +{"id": "3006248", "video_name": "865836f5-8bd8-5ce2-ba51-fdb6d9396ae5", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u53a8\u623f\u91cc\u7528\u7089\u5b50\u70f9\u996a\u98df\u7269\uff0c\u70f9\u996a\u79c0\uff0c\u7f8e\u98df\u70f9\u996a\uff0c\u70f9\u996a\uff0c"} +{"id": "3003859", "video_name": "6b1c5b5b-6735-5d6f-80b7-ba99c5e6e765", "text": "\u4e00\u4e2a\u51b2\u6d6a\u5c0f\u4f19\u5b50\u5361\u901a\u4eba\u7269\u7ad9\u5728\u6d77\u6ee9\u95e8\u5eca\u4e0a\u3002"} +{"id": "2003353", "video_name": "e901cc50-3f07-5f5a-876f-f2772beab397", "text": "\u96fe\u8499\u8499\u7684\u5c71\u5ce6\u4e2d\uff0c\u7af9\u6797\u8038\u7acb\u3002\u5fcd\u8005\uff0c\u9690\u79d8\u5927\u5e08\uff0c\u5728\u96fe\u4e2d\u8df3\u8dc3\u3002\u53e4\u8001\u7684\u795e"} +{"id": "0004359", "video_name": "07ab4c21-d53e-53df-ba04-7b61bfb93bc8", "text": "\u8212\u5c14\u6f58\u5361\u63a5\u7740\u53bb\u627e\u4ed6\u7684\u5f1f\u5f1f\u62c9\u514b\u4ec0\u66fc\uff0c\u62c9\u514b\u4ec0\u66fc\u8868\u793a\u4ed6\u53ea\u662f\u62c9\u739b\u7684\u5f1f\u5f1f\uff0c\u4e0d\u503c\u5f97"} +{"id": "1004761", "video_name": "581e9b76-8d82-577f-aa56-30653998cb73", "text": "\u4e00\u540d18\u5c81\u7684\u4e2d\u56fd\u5973\u5b69\u7ad9\u5728\u8857\u4e0a\uff0c\u8868\u60c5\u60ca\u8bb6\uff0c\u6b63\u9762\u89c6\u89d2\uff0c\u591c\u665a\uff0c\u8fd1\u8ddd\u79bb\uff0c\u6050\u6016\u573a\u666f\uff0c\u602a\u5f02\u3001"} +{"id": "6003523", "video_name": "d301d874-8018-5d6d-937e-25c3136ce022", "text": "\u539f\u59cb\u7167\u7247\uff0c26\u5c81\u5973\u5b50\u8fd1\u8ddd\u79bb\u8096\u50cf\u7167\uff0c\u8eab\u7a7f\u5e9f\u571f\u6d41\u6d6a\u8005\u670d\u88c5\uff0c\u957f\u53d1\uff0c\u82cd\u767d\u76ae\u80a4\uff0c\u82d7\u6761\u8eab"} +{"id": "7003328", "video_name": "d9edcf20-e896-5ca3-b8e8-bc2c19293041", "text": "\u5f53\u6d77\u6d0b\u9047\u89c1\u5929\u7a7a\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u8272\u5f69\u751f\u52a8\u903c\u771f\u3002"} +{"id": "8002123", "video_name": "a4aedde6-6ca0-52c5-b86c-f99be0537173", "text": "\u751f\u6210\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u89c6\u9891\u573a\u666f\uff0c\u7279\u5199\u4e00\u4e2a\u4eba\u5728\u8c6a\u534e\u5ba2\u5385\u7684\u8c6a\u534e\u76ae\u6c99\u53d1\u4e0a\u60a0\u95f2\u5730\u8eba\u7740\u3002\u623f\u95f4\u660f"} +{"id": "4003224", "video_name": "9f19b752-1636-5a91-a24c-0ad1cb44cb17", "text": "\u83ab\u683c\u5229\u548c\u6240\u6709\u7684\u52a8\u7269\uff0c\u5305\u62ec\u5927\u8c61\uff0c\u5c06\u4ee516.9 3D\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "4004944", "video_name": "1b144f1e-d3aa-57b5-a7b0-9102d456efdc", "text": "1966\u5e74\uff0c\u5c55\u793a\u4e00\u4f4d\u7537\u5b50\u4e0e\u4e00\u53ea\u6bcd\u72ee\u7ad9\u5728\u4e00\u8d77\uff0c\u8d85\u903c\u771f\u76848K\u6548\u679c\u3002"} +{"id": "7003893", "video_name": "b628876c-68e3-5858-b362-7034920d6fd1", "text": "\u8bb8\u591a\u9e7f\u5e26\u7740\u4ed6\u4eec\u7684\u5b69\u5b50\u6765\u559d\u6c34\u4e86\u3002"} +{"id": "2004381", "video_name": "7a021d3b-0108-590f-9d54-85efd7452cca", "text": "\u4e00\u5e45\u63cf\u7ed8\u65b0\u4e16\u754c\u79e9\u5e8f\u8bae\u7a0b\u7684\u753b\uff0c\u5177\u6709\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u903c\u771f\u9ad8\u6e05\u8d28\u91cf\u548c\u590d\u53e4\u8272\u5f69\u3002"} +{"id": "0004898", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "\u73ed\u514b\u65af\u5728\u519c\u573a\u5efa\u7b51\u7269\u4e0a\u55b7\u7ed8\u4e86\u4e00\u4e2a\u6a21\u677f\u58c1\u753b\u3002"} +{"id": "5001819", "video_name": "30a8cffc-69b4-5185-8f72-93b25ffb2c3b", "text": "\u53a8\u5e08\u5728\u7b2c\u4e00\u4eba\u79f0\u5207\u83dc\u3002"} +{"id": "8002175", "video_name": "9bceb7bb-5cc3-56a1-8822-0100d502ca4d", "text": "\u4eba\u7fa4\u7684\u8f6e\u5ed3\u4ece\u80cc\u540e\u770b\u3002"} +{"id": "7003939", "video_name": "82c234cc-27e3-562f-843d-791d527df267", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u624b\u6301\u67aa\u5728\u706b\u661f\u4e0a\u5954\u8dd1\uff0c\u662f\u7531\u8d6b\u5409\u7ed8\u5236\u7684\u5361\u901a\u3002"} +{"id": "7002636", "video_name": "275a2ee7-fad3-5f2a-bd30-3e896aea3417", "text": "\u4e00\u4e2a\u5973\u5b69\u628a\u767d\u8272\u536b\u751f\u5dfe\u6254\u8fdb\u6cf3\u6c60\u91cc\uff0c\u6240\u6709\u7684\u6c34\u90fd\u88ab\u5438\u8fdb\u4e86\u8fd9\u4e2a\u536b\u751f\u5dfe\u91cc\u3002"} +{"id": "3005562", "video_name": "31c00308-66e0-5cfb-a797-a953fd46abd7", "text": "\u9ed1\u6697\u623f\u95f4\u91cc\u7684\u9ad8\u80fd\u706b\u82b1"} +{"id": "4003596", "video_name": "17897b96-6907-57a9-899c-376870f2b45e", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u732b\u54aa\u7537\u5b69\u548c\u5973\u5b69\u6b63\u5728\u7761\u89c9\u3002"} +{"id": "6004300", "video_name": "b15616b9-9710-559b-b585-d088ecd88de3", "text": "2013\u5e74\uff0c\u79bb\u90a3\u53ea\u732b\u4e0d\u8fdc\u5904\u5b89\u88c5\u4e86\u4e00\u5ea7\u732b\u96d5\u5851\u3002"} +{"id": "6004395", "video_name": "d57febde-88a3-5bb8-b24f-a6237a082d8b", "text": "\u5f17\u62c9\u57fa\u7c73\u5c14\u00b7\u4f0a\u91cc\u5947\u00b7\u5217\u5b81\uff0c\u5728\u5b89\u5fb7\u70c8\u00b7\u5854\u53ef\u592b\u65af\u57fa\u548c\u7ea6\u591a\u7f57\u592b\u65af\u57fa\u7684\u6cb9\u817b\u53cd"} +{"id": "5001285", "video_name": "b4ccb111-63bb-592f-9cae-781a5447e0cd", "text": "\u7ad9\u5728\u60ac\u5d16\u4e0a\u7684\u7537\u4eba\u6307\u7740\u80cc\u666f\u4e2d\u7684\u57ce\u5821\u3002"} +{"id": "7003334", "video_name": "f822a997-3b40-5f24-9f0e-bd2b73f47768", "text": "\u9999\u6e2f\u4e0b\u7740\u975e\u5e38\u5927\u7684\u96e8\u3002 \n\nSource sentence: I had a great time at the beach last weekend. \n\n\u4e0a\u4e2a\u5468\u672b\u5728\u6d77\u6ee9\u5ea6\u8fc7\u4e86\u6109\u5feb\u7684\u65f6\u5149"} +{"id": "8003029", "video_name": "6515a586-1b1d-5b94-906d-eb01482418e6", "text": "\u672a\u6765\uff0c\u65f6\u95f4\u64cd\u63a7\u5df2\u6210\u4e3a\u81f4\u547d\u6b66\u5668\u3002"} +{"id": "4003316", "video_name": "a7bdfeac-1906-5ec6-ac48-e7049a9e617d", "text": "\u831c\u831c\u4e16\u754c\u5728\u6c99\u6f20\u4e2d\u5f39\u594f\u5409\u4ed6"} +{"id": "8002868", "video_name": "a5057367-99a2-54b8-8db8-2ce603d0513c", "text": "\u7f8e\u4e3d\u91d1\u53d1\u5973\u5b50\u5728\u5065\u8eab\u623f\u7ec3\u4e60\u547c\u5566\u5708\u3002"} +{"id": "1003060", "video_name": "38401671-d022-5d69-a9d3-382b10c5cdff", "text": "\u5e7b\u60f3\uff1a\u8bb8\u591a\u8fde\u73af\u6740\u624b\u62e5\u6709\u590d\u6742\u7684\u5e7b\u60f3\uff0c\u5e76\u901a\u8fc7\u72af\u7f6a\u884c\u4e3a\u5b9e\u73b0\u3002\u8fd9\u4e9b\u5e7b\u60f3\u53ef\u4ee5\u6210\u4e3a\u4ed6\u4eec\u884c\u52a8\u7684"} +{"id": "0005926", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "\u8fea\u58eb\u5c3c\u4e50\u56ed\u91cc\u7a7f\u8ff7\u4f60\u88d9\u3001\u6bd4\u526a\u5200\u624b\u8fd8\u840c\u7684\u5973\u5b69\u4eec\u5fae\u7b11\u7740\u6446\u51fa\u548c\u5e73\u624b\u52bf\uff0c\u53d1\u8272\u8d85\u7ea7"} +{"id": "3006702", "video_name": "9ff4b206-cbc0-5088-91fe-062fd8e7814a", "text": "\u4e00\u4e2a\u6c7d\u8f66\u65c5\u9986\u7684\u6807\u5fd7\u4e0a\u5199\u7740\u201c\u6c7d\u8f66\u65c5\u9986\u201d\uff0c\u4e0b\u9762\u6709\u4e00\u4e2a\u5199\u7740\u201c\u6e38\u6cf3\u6c60\u201d\u7684\u6807\u5fd7\uff0c\u5728\u540e\u9762\u6b63\u5728\u96c6\u7ed3\u4e00\u573a\u96f7\u96e8\u3002"} +{"id": "0005567", "video_name": "1d11b64c-56e1-5755-afaa-ea952e508a4f", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d0\u72f8\u7a7f\u8fc7\u76ae\u80a4\uff0c\u903c\u771f\u7684\u6e32\u67d3\uff0c4K\uff0cUHD\uff0c9:16\u3002"} +{"id": "7002860", "video_name": "785924fc-0716-56b6-a19d-c159882c5a85", "text": "\u4e00\u5f20\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u7684\u4fe1\u7528\u5361"} +{"id": "3005404", "video_name": "0c8d4596-a22b-559e-9391-cc5f301ff402", "text": "\u4e94\u5f69\u7f24\u7eb7\u7684\u5408\u6210\u73bb\u7483\u7ea4\u7ef4\uff0c\u8d85\u903c\u771f\u7684\u8d28\u611f\u3002\u540e\u751f\u7269\u5b66\u7684\u672a\u6765\u4e3b\u4e49\u5916\u89c2\u3002\u8fd9\u79cd\u751f\u7269\u6709\u4e00\u4e2a\u5706"} +{"id": "0005200", "video_name": "168b49a0-b163-5b5a-ba79-8ab6aa2e452d", "text": "\u738b\u5b50\u770b\u5230\u6eaa\u6d41\u4e2d\u7684\u6c34\uff0c\u610f\u8bc6\u5230\u81ea\u5df1\u56e0\u53e3\u6e34\u800c\u53e3\u5e72\u820c\u71e5\u3002"} +{"id": "6003174", "video_name": "8b43fecd-ba77-5518-ade2-2260397845fd", "text": "\u5236\u4f5c\u4e00\u6bb516:9\u6bd4\u4f8b\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4efd\u4e2d\u578b\u62ab\u8428\uff0c\u4e0a\u9762\u94fa\u6ee1\u4e86\u5976\u916a\u548c\u610f\u5927\u5229\u8fa3\u9999\u80a0\u7247\uff0c\u6446\u653e"} +{"id": "3005439", "video_name": "e1445e68-f2ab-51a4-8072-fb794a17aab6", "text": "\u56db\u540d\u98de\u884c\u5458\u9a7e\u9a76\u4e00\u8f86\u5de8\u578b\u5361\u8f66\u53d1\u751f\u649e\u8f66\u4e8b\u6545\u3002"} +{"id": "7003945", "video_name": "47c53fcd-2d61-583c-a84f-0bd72a0a15ef", "text": "\u9634\u6c89\u7684\u5929\u7a7a\uff0c\u6d53\u5bc6\u7684\u9ed1\u4e91\uff0c\u5f3a\u70c8\u7684\u96e8\u6c34\u50cf\u7011\u5e03\u4e00\u6837\u4ece\u5c4b\u9876\u6d41\u4e0b\uff0c\u6811\u6728\u56e0\u95ea\u7535\u800c\u503e"} +{"id": "3005975", "video_name": "3d7c15ad-586f-58d3-bff9-47db2d2fc1bc", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u52a8\u753b\u7535\u5f71\uff0c\u8bb2\u8ff0\u53e4\u4ee3\u5854\u6728\u5fb7\u5e1d\u56fd\u7684\u6545\u4e8b\u3002"} +{"id": "7002806", "video_name": "e6398f92-6b1b-59c4-9da7-0f4d1422e351", "text": "\u5c06\u661f\u661f\u548c\u6c99\u6f20\u6c99\u5c18\u4e2d\u6563\u843d\u7684\u4e00\u4e9b\u5c18\u57c3\u79fb\u52a8\u3002"} +{"id": "2007419", "video_name": "6fc6b543-3c05-5698-8d5a-be8b56dabf07", "text": "\u5f02\u5f62\u7537\u6df7\u8840\u7ad9\u5728\u4e00\u5e62\u6469\u5929\u5927\u697c\u7684\u5899\u8fb9\uff0c\u7a7f\u7740\u9ed1\u8272\u62ab\u98ce\uff0c\u9ed1\u8272\u548c\u84dd\u8272\uff0c\u9ec4\u8272\u7684\u773c"} +{"id": "0005930", "video_name": "2366eda0-9569-5716-99aa-b196af4c3113", "text": "\u5bfb\u627e\u7537\u5b69\u7684Kiritio\u9ed1\u53d1\u5316\u8eab\u548cDiscord\u878d\u5408\u3002"} +{"id": "6004264", "video_name": "1bba7602-b7e4-5c41-a317-2ac3176eaa9a", "text": "\u5728\u7816\u5730\u4e0a\u70e7\u7eb8\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0004063", "video_name": "02923ddd-4df0-5e5b-852c-ee091ce72ff4", "text": "\u6570\u5b57\u5316\u7684\u65b9\u5f0f\u5b9e\u73b0\u66f4\u6e05\u6d01\u7684\u4e16\u754c\u3002"} +{"id": "8003401", "video_name": "77e845d7-a3af-5351-971b-6d24b15852ed", "text": "\u60a8\u7684\u60f3\u8c61\u529b\u5728\u591c\u665a\u7684\u9713\u8679\u68ee\u6797\u4e2d\uff0c\u75284K\u8d28\u91cf\u548c10\u5206\u949f\u89c6\u9891\u5448\u73b0\u3002"} +{"id": "2005825", "video_name": "99167cd4-f602-5a8a-b5c2-5a259ed7b289", "text": "\u5c55\u793a\u6d77\u8707\u4ece\u6210\u719f\u5230\u5e7c\u5e74\u72b6\u6001\u7684\u56fe\u50cf\u3002"} +{"id": "5001364", "video_name": "c2f01fef-b650-5cb1-b4c0-405419dfed30", "text": "\u4e00\u53ea\u72d7\u5728\u623f\u95f4\u91cc\u7b11\u3002"} +{"id": "7002752", "video_name": "a253ab7d-73c2-5501-80b5-6d7ce01be4c0", "text": "\u5012\u584c\u738b\u56fd\u7684\u6cea\u6c34\uff0c\u7518\u591a\u592b\u7b11\u5f97\u592a\u8fc7\u5206\u3002"} +{"id": "6002429", "video_name": "f9d71550-6efe-5fac-b571-29ac513e7a2f", "text": "\u5feb\u9910\u3001\u5976\u916a\u3001\u7ea2\u8089\u732a\u8089\u3001\u70d8\u70e4\u98df\u54c1\u3001\u9ec4\u6cb9\u3001\u725b\u5976\u3001\u690d\u7269\u6cb9"} +{"id": "8003567", "video_name": "6f732fb5-6124-566b-8e40-0ac5f9dc223d", "text": "\u8d1d\u62c9\u00b7\u54c8\u8fea\u5fb7\u4f5c\u4e3a\u592a\u9633\u516c\u4e3b"} +{"id": "1003382", "video_name": "3e54209a-86f6-5817-9937-f91c0bf765b9", "text": "\u6211\u4eec\u8d70\u8def\u65f6\u50cf\u4ec0\u4e48\u4e8b\u60c5\u90fd\u6ca1\u6709\u53d1\u751f\u8fc7\u4e00\u6837\u3002"} +{"id": "0005374", "video_name": "19ba3025-b2db-504f-b736-0d6a6cad54d4", "text": "\u7537\u4e3b\u89d2\u5927\u536b\uff0830\u5c81\uff09\u662f\u4e00\u4f4d\u6210\u529f\u7684\u827a\u672f\u5bb6\u3002"} +{"id": "0004602", "video_name": "0bc8a3ae-2259-5f5e-9bc9-8cfc480b4fc7", "text": "\u52a8\u6f2b\u4e2d\uff0c\u957f\u7740\u91d1\u8272\u957f\u53d1\u7684\u5929\u4f7f\u5c55\u5f00\u4e86\u4ed6\u7684\u7fc5\u8180\u3002"} +{"id": "3006427", "video_name": "f8ea81f5-8856-5919-9ef8-3267d67722dd", "text": "\u521d\u6b21\u89c1\u9762\uff1aSarah \u548c John \u5728\u5f53\u5730\u7684\u827a\u672f\u5c55\u89c8\u4e0a\u76f8\u9047\uff0cSarah \u6b63\u5728\u5c55\u793a\u5979\u7684\u753b\u4f5c\uff0c\u800c John \u6b63\u5728\u5f39\u594f\u4ed6\u611f\u4eba\u7684"} +{"id": "0005642", "video_name": "1e8d501d-56eb-54f4-accc-8f4eb2f9f77e", "text": "\u533b\u751f\u7684\u5361\u901a\u5f62\u8c61\u5750\u5728\u684c\u524d\uff0c\u80cc\u666f\u662f\u56fe\u8868\u548c\u80a1\u7968\u3002"} +{"id": "3003399", "video_name": "5daa7817-cee2-5cb7-bc12-43dcf470c99f", "text": "\u6709\u773c\u775b\u548c\u5634\u5df4\u7684\u6709\u7fc5\u8180\u7684\u6c7d\u8f66\u79cd\u65cf"} +{"id": "7002947", "video_name": "22ca39be-1601-521e-bace-53465057e2c6", "text": "\u70e7\u70e4\u53d1\u578b\uff1a\u5927\u80c6\u5243\u5149\u5934\uff0c\u8111\u540e\u8fab\u5b50\u3002\u770b\u8d77\u6765\u50cf\u662f\u6301\u67aa\u7784\u51c6\u67d0\u7269\u3002\u903c\u771f\u3002\u80cc\u666f"} +{"id": "0003658", "video_name": "413070b2-7858-51f8-9583-e72a7b3101e3", "text": "\u5c3c\u9a6c\u5f00\u8c6a\u8f66\uff0c\u5f00\u8f66\u65f6\u9732\u51fa\u4e86\u4ed6\u7684\u8138\u3002"} +{"id": "0003001", "video_name": "356e08fa-3459-5e43-9c27-f6b0a8e5ff4d", "text": "\u63cf\u8ff0\u4e00\u5f20\u611f\u6069\u8282\u8d3a\u5361\u7684\u573a\u666f\u3002\u7528\u6587\u5b57\u63cf\u7ed8\u4e00\u4e2a\u5145\u6ee1\u8282\u65e5\u6c14\u6c1b\u7684\u65e5\u843d\uff0c\u684c\u4e0a\u94fa\u6ee1\u7f8e\u98df\uff0c\u5468"} +{"id": "2006878", "video_name": "96ff4b01-ce73-54e2-ae5a-beafd85c9893", "text": "\u5168\u4e16\u754c\u6700\u7f8e\u5473\u7684\u62c9\u9762"} +{"id": "1003097", "video_name": "390299a5-6240-5bd0-b5b2-ad725ce41e42", "text": "\u4e00\u4e2a\u88ab\u5e03\u8986\u76d6\u7684\u82ad\u857e\u821e\u8005\u3002\u6c34\u4e0b\uff0c\u9ed1\u767d\u7535\u5f71\u822c\u7684\u706f\u5149\u3002\u72c2\u91ce\u5730\u8df3\u821e\u3002"} +{"id": "0004314", "video_name": "06fd013a-8e97-535d-bb08-9b893ea1257d", "text": "\u6218\u540e\u5e9f\u589f\u3001\u70df\u96fe\u3001\u53d8\u7126\u6548\u679c\u3001\u7535\u5f71\u822c\u7684\u30014k\u3001\u8d85\u903c\u771f\u3002"} +{"id": "2004817", "video_name": "d5fc26b1-8d51-5121-b243-0b83caec6f77", "text": "translation: \u519c\u6c11\u5728\u8015\u79cd\u7530\u5730\u548c\u519c\u4f5c\u7269\u7684\u573a\u666f\u3002\u9ad8\u8d28\u91cf\u3002"} +{"id": "2003182", "video_name": "8daa023e-cfff-5f97-a6f3-f0010e3bcd4e", "text": "\u4e00\u4e2a\u6e29\u99a8\u7684\u5bb6\u5ead\uff0c\u6709\u70ed\u95f9\u7684\u5bb6\u5ead\u6210\u5458\u805a\u96c6\u5728\u9910\u684c\u5468\u56f4\uff0c\u5206\u4eab\u7f8e\u98df\u548c\u7b11\u5bb9\u3002"} +{"id": "5001407", "video_name": "c2e55a28-11e4-5ca8-a5fc-8a8cc40d9a30", "text": "\u6240\u6709\u53e4\u4ee3\u795e\u7947\u7ad9\u5728\u5965\u6797\u5339\u65af\u5c71\u4e0a\u6325\u624b\u8df3\u821e\u3002\u8ba2\u9605\u4ee5\u83b7\u53d6\u66f4\u591a\u5185\u5bb9\u3002 (\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53)"} +{"id": "4003080", "video_name": "bdd4784f-bbfd-50fb-97cc-ef3986c50858", "text": "\u4ed6\u624b\u6301\u9524\u5b50\uff0c\u52c7\u6562\u524d\u884c\uff0c\u5c55\u73b0\u82f1\u96c4\u6c14\u6982\u3002"} +{"id": "4002186", "video_name": "cfdb7b2c-eb2e-59b9-83c6-7c4da8e37835", "text": "\u5370\u5ea6\u53e4\u8001\u7684\u50e7\u4fa3\u4eec\u7a7f\u7740\u91d1\u8272\u7684\u8863\u670d\u5728\u5149\u660e\u7684\u5bfa\u5e99\u4e2d\uff0c\u667a\u6167\u7684\u667a\u8005\uff0c\u7167\u4eae\u7684\u5f62\u8c61\uff1a"} +{"id": "0003376", "video_name": "3c78c79f-6a8a-5ba4-96a4-500e11171d44", "text": "\u6708\u7403\u4e0a\u7684\u9ad8\u5c14\u592b\u7403\u624b\u57289:16\u8fdb\u884c\u4e86\u7b2c2\u6b21\u6325\u6746\u3002"} +{"id": "3006372", "video_name": "bb0a97cc-7816-5a59-9e39-75df9c23f82f", "text": "\u6ca1\u6709\u817f\u7684\u4eba\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0004596", "video_name": "0bae578a-459d-5160-a973-f1ece62dfa77", "text": "\u7ea2\u8272\u6c14\u7403\u98d8\u8fc7\u68ee\u6797\u3002"} +{"id": "6002745", "video_name": "b7b9f7e7-e4ee-5452-92c1-990ddcec8129", "text": "\u4f5b\u9640\u76d8\u817f\u5750\u5728\u4e00\u5bb6\u6295\u8d44\u94f6\u884c\u529e\u516c\u5ba4\u91cc\uff0c\u95ed\u76ee\u51a5\u60f3\uff0c\u5468\u56f4\u7684\u4eba\u90fd\u7a7f\u7740\u897f\u88c5\u3002"} +{"id": "7003430", "video_name": "f11cd080-45b9-542d-952c-1aa1c98c6d2e", "text": "\u4e00\u4e2a\u5c55\u793a\u6211\u8fdb\u884c\u827a\u672f\u521b\u4f5c\u7684\u7535\u8111\u7684\u623f\u95f4\u3002\u5177\u6709\u672a\u6765\u611f\u7684\u5e03\u7f6e\u548c\u7d2b\u7c89\u8272\u9713\u8679\u8272\u8c03\u3002"} +{"id": "4004308", "video_name": "ad5d7e26-a135-5000-9b17-a33b88a73e72", "text": "\u56fe\u4e66\u9986\u4f4d\u4e8e\u9ed1\u6697\u7684\u5730\u4e0b\u5ba4\uff0c\u5468\u56f4\u70b9\u7740\u8721\u70db\uff0c\u4e66\u4e71\u6254\u4e00\u5730\uff0c\u4e66\u4e0a\u6709\u5916\u661f\u7b26\u53f7\u3002"} +{"id": "2004218", "video_name": "9f29da3a-036e-57de-96c2-8ee31294809e", "text": "\u4e00\u4e2a\u5e26\u6709\u53ef\u89c1\u7a97\u53e3\u7684\u86cb\u7cd5\u76d2"} +{"id": "1003133", "video_name": "39c08da1-aaba-5223-8462-2b868d77acae", "text": "\u91ce\u86ee\u7684\u4e2d\u4e16\u7eaa\u6218\u6597\u5bf9\u6297\u672a\u6765\u79d1\u6280\u673a\u5668\u4eba\u3002"} +{"id": "0005559", "video_name": "1ce962c0-a3f7-580b-acb9-eaaf33ff1415", "text": "\u4e24\u4e2a\u5144\u5f1f\u5728\u8857\u4e0a\u9a91\u81ea\u884c\u8f66\uff0c\u901f\u5ea6\u5f88\u5feb\u3002"} +{"id": "3005928", "video_name": "0296bbd2-f7b2-5e2b-8f5f-f72aa6a3a5ad", "text": "\u4e13\u4e1a\u62cd\u6444\u57ce\u5e02\u5929\u9645\u7ebf\u3001\u65e5\u843d\u30018K\u7167\u7247\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005136", "video_name": "ba53c2c7-58fa-5e6e-b4f9-fe9155d12e4b", "text": "\u4e00\u4e2a\u91d1\u5c5e\u4e50\u961f\u5728\u5e9f\u5f03\u7684\u533b\u9662\u623f\u95f4\u91cc\u3002"} +{"id": "7004550", "video_name": "62e5f126-3244-5650-b0be-63a8fe2dc20f", "text": "\u4e00\u4f4d\u5973\u5b50\u8d70\u8fdb\u4e86\u4e00\u4e2a\u95f9\u9b3c\u7684\u5927\u53a6\u91cc\u7684\u4e00\u95f4\u623f\u95f4\u3002"} +{"id": "6003489", "video_name": "7650345c-913a-52a0-9999-8cfabcd09ee2", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u9ab0\u5b50\u5728\u91d1\u5c5e\u8868\u9762\u4e0a\u5feb\u901f\u6eda\u52a8\u3002"} +{"id": "0003561", "video_name": "3f962067-aa50-5033-8584-e282270fd047", "text": "\u521b\u9020\u4e00\u4e2a\u8c46\u5b50\u8df3\u821e\u5e76\u6709\u949e\u7968\u843d\u4e0b\u7684\u52a8\u753b\u3002"} +{"id": "2005863", "video_name": "f21d9cad-cc65-5055-a02e-219a748636c3", "text": "\u6012\u6c14\u7ba1\u7406\u5c0f\u7ec4\uff0c\u65e0\u4eba\u673a\u4fef\u89c6\uff0c\u76d8\u65cb\u5468\u56f4"} +{"id": "8001578", "video_name": "1bbb4821-8e07-5df0-8491-6e1aace72503", "text": "\u68a6\u5e7b\u4e16\u754c\u4e2d\uff0c\u5b69\u5b50\u4f1a\u9762\u4e34\u6311\u6218\u8003\u9a8c\u4ed6\u7684\u52c7\u6c14\u548c\u51b3\u5fc3\u3002"} +{"id": "1003531", "video_name": "411146ec-783b-5c6b-b5c6-dce223f1f44f", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u548c\u732b\u5728\u623f\u95f4\u91cc\u3002"} +{"id": "4003461", "video_name": "bd260728-14c7-5b8f-a3d7-dfaf2d19c085", "text": "\u4e00\u9897\u9668\u77f3\u98de\u6765\u649e\u51fb\u4e86\u8fd9\u4e2a\u884c\u661f\uff0c\u7136\u540e\u8fd9\u4e2a\u884c\u661f\u77ac\u95f4\u7206\u70b8\u6210\u4e864K\u3002"} +{"id": "0003061", "video_name": "3653a132-1971-5c1a-ad9e-2e8a57661c3a", "text": "\u5730\u4e0b\u5ba4\u91cc\u6709\u4e00\u53ea\u795e\u79d8\u7684\u751f\u7269\uff0c\u5168\u8eab\u662f\u9ed1\u767d\u7684\uff0c\u8001\u5f0f\u7684\u3001\u9897\u7c92\u611f\u5f88\u5f3a\uff0c\u5e27\u7387\u5f88\u4f4e\uff0c\u662f\u95ed\u8def\u7535"} +{"id": "6003899", "video_name": "4d795991-e7e4-5491-9e07-a0d549af5213", "text": "Translation: \u6e05\u6f88\u7684\u6c34\u6ef4\u843d\u5728\u7c89\u8272\u4e0a\u3002"} +{"id": "1006176", "video_name": "710e05b5-f57c-5b42-afef-28be45e36b72", "text": "\u767d\u8272\u98de\u9f99\uff0c\u6301\u7eed5\u79d2\u3002"} +{"id": "0003963", "video_name": "00b95191-aeda-55f7-9d0b-49ff174f61fb", "text": "\u573a\u666f\u5f00\u5934\u662f\u4e00\u7fa4\u5145\u6ee1\u6d3b\u529b\u7684\u5e74\u8f7b\u670b\u53cb\uff08\u4e0d\u540c\u79cd\u65cf\u548c\u6027\u522b\uff09\uff0c\u5728\u65f6\u5c1a\u7684\u57ce\u5e02\u73af\u5883\u4e2d\u8df3\u821e\u3002\u4ed6\u4eec\u7a7f"} +{"id": "1005501", "video_name": "6536025d-32f6-59b2-a815-7585a1ea4ad5", "text": "\u6258\u5e03\u65af\u5361\u65af\u7a7f\u7740\u7eff\u8272\u886c\u886b\uff0c\u5728\u6708\u7403\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "2006884", "video_name": "8d06ef48-8816-5e68-ab4c-1cc6829a6621", "text": "\u96c4\u72ee\u57284K\u4e0b\u5486\u54ee\u5e76\u6447\u52a8\u5b83\u7684\u9b03\u6bdb\u3002"} +{"id": "7002040", "video_name": "8d924ed5-a958-5d10-88a5-1978dd67fc86", "text": "\u5e74\u8f7b\u5973\u5b50\u79cd\u690d\u690d\u7269\u548c\u6811\u6728\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003572", "video_name": "3fc15904-61a8-5d41-b253-8f44b0824204", "text": "\u4e00\u53ea\u91ce\u751f\u7684\u5996\u7cbe\u6ce2\u6d6a\u5e72\u71e5\u5973\u6811\u7075\u9a91\u7740\u4e00\u5339\u4ec0\u5c14\u9a6c\u7a7f\u8d8a\u8349\u5730\u3002"} +{"id": "7002808", "video_name": "9b1d2cce-416e-5ee6-ba30-ba683b9d375a", "text": "\u7ea6\u7ff0\u00b7F\u00b7\u5e15\u514b\u7ad9\u5728\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u65c1\u8fb9\uff0c\u753b\u98ce\u662f\u5168\u8eab\u8d85\u5199\u5b9e\u3002 \n\nSource sentence: The cat is sleeping on the"} +{"id": "1004247", "video_name": "4e9b0966-fdde-5d43-bed5-3b8bb6eeb979", "text": "\u5f15\u5bfc\u7740\u6770\u514b\u00b7\u65af\u6d3e\u7f57\u548c\u4ed6\u7684\u8239\u5458\u901a\u8fc7\u5728\u4e00\u74f6\u5170\u59c6\u9152\u4e2d\u53d1\u73b0\u7684\u5730\u56fe\uff0c\u5bfb\u627e\u4f20\u8bf4\u4e2d\u7684\u5b9d"} +{"id": "2005190", "video_name": "d121cda3-ca0e-5507-9720-4f6467365350", "text": "\u4e00\u90e8\u8fd1\u666f\u3001\u53e4\u8001\u98ce\u683c\u7684\u7535\u5f71\uff0c\u63cf\u8ff0\u4e86\u4e00\u53ea\u8272\u5f69\u6591\u6593\u7684\u91ce\u86e4\u87c6\u7ef4\u4eac\u4eba\u5728\u770b\u5230\u65b0\u5927\u9646\u7684\u65f6\u5019"} +{"id": "0005378", "video_name": "19c0a96d-5dc3-5a1c-8de9-774f87e8bb4f", "text": "\u5927\u8c61\u9a7e\u9a76\u6218\u6597\u673a\u98de\u884c\uff0c\u9762\u90e8\u8868\u60c5\u5174\u594b\uff0c\u5341\u5206\u6280\u672f\u5316\u548c\u8be6\u7ec6\uff0c\u89c6\u9891\u753b\u9762\u6709\u4e9b\u6643\u52a8\u3002"} +{"id": "0004058", "video_name": "02747e9c-097b-5f82-9926-4a356d73437a", "text": "Source sentence translated into Chinese: \u98de\u84dd\u83c7\u6b63\u5728\u751f\u957f\u3002"} +{"id": "3004199", "video_name": "a1faa1b7-87a9-5499-b77b-dedb49cc556b", "text": "\u8ddf\u8e2a\u955c\u5934\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u9a91\u9a6c\u7684\u4eba\uff0c\u65e5\u843d\uff0c\u5f00\u9614\u7684\u9ea6\u7530\uff0c\u5927\u91cf\u7684\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "7003528", "video_name": "3c53cac3-2324-5610-b6f4-02002025efd9", "text": "\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u5728\u80af\u5fb7\u57fa\u5403\u7740\u4e00\u6839\u5927\u9e21\u7fc5\u3002"} +{"id": "4004397", "video_name": "f70a1bfe-eeab-5f2f-8b79-71c848cf6a0c", "text": "\u6c64\u59c6\u7740\u8ff7\u5730\u68c0\u67e5\u7740\u65f6\u95f4\u673a\u5668\uff0c\u5b9e\u9a8c\u5ba4\u91cc\u76843D\u52a8\u753b\u5448\u73b0\u51fa\u60ca\u5947\u7684\u666f\u8c61\uff0c8K\u7684\u6e05\u6670\u5ea6\u3002"} +{"id": "4002999", "video_name": "736cd0fa-bbe9-5fbe-b565-61dc94a74dea", "text": "\u4e00\u4e2a23\u5c81\u7684\u5973\u5b69\uff0c\u7a7f\u7740\u9ed1\u8272\u978b\u5b50\uff0c\u6709\u84dd\u8272\u7684\u773c\u775b\uff0c\u5728\u82b1\u56ed\u91cc\u5e2e\u52a9\u4e00\u4e2a50\u5c81\u7684\u5973\u58eb\u3002"} +{"id": "0005835", "video_name": "21f35a4b-1959-584e-b615-f0dbe7cea5e6", "text": "\u9752\u5c11\u5e74\u65f6\u5c1a\u5728\u706b\u8f66\u7ad9\u7b49\u5019\u3002"} +{"id": "5001346", "video_name": "97fc36b1-626f-5476-8cea-5014b4880267", "text": "\u4e00\u9897\u8d85\u65b0\u661f\u521b\u9020\u4e86\u4e00\u4e2a\u65b0\u5b87\u5b99\uff0c\u5373\u5927\u7206\u70b8\u3002"} +{"id": "7003091", "video_name": "ed238956-fed6-5a5f-9990-e3e4701d9a7b", "text": "\u4e00\u53ea\u4fe1\u5929\u7fc1\u5f00\u7740\u76ae\u5361\u8f66\u5728\u76db\u590f\u767d\u5929\u6cbf\u7740\u6d77\u5cb8\u516c\u8def\u5954\u8dd1\u3002"} +{"id": "2005720", "video_name": "87cca5bf-4862-52b3-99e1-a4f12573756e", "text": "\u6162\u6162\u5730\u5c06\u5934\u90e8\u4ece\u53f3\u5f80\u5de6\u79fb\u52a8\uff0c\u540c\u65f6\u6162\u6162\u5730\u5c06\u773c\u775b\u4ece\u5de6\u5f80\u53f3\u79fb\u52a8\u3002"} +{"id": "6003954", "video_name": "be85fbb0-0318-58d0-b9e8-5c3acc2fdf94", "text": "\u672a\u6765\uff0c\u4e00\u5207\u770b\u8d77\u6765\u50cf\u7535\u5f71\u300a\u7279\u6d1b\u4f0a\u300b\uff0c\u98de\u884c\u6c7d\u8f66\uff0c\u9713\u8679\u8272\u8863\u670d\uff0c\u6295\u63b7\u98de\u76d8\u3002"} +{"id": "8002435", "video_name": "5fa83090-486f-5d48-a593-74c41961fc99", "text": "\u7537\u5b69\u548c\u516c\u4e3b\u86e4\u87c6\u8d70\u8fc7\u53e4\u5df4\u3002"} +{"id": "8001869", "video_name": "bd98f802-25fe-5115-95c0-b630828f9e1b", "text": "\u4f0a\u5361\u91cc\u4e9a\uff1a\u63ed\u793a\u88ab\u9057\u5fd8\u7684\u5e0c\u814a\u795e\u8bdd\u4e2d\u9690\u85cf\u7684\u529b\u91cf"} +{"id": "2005518", "video_name": "2ca96e79-725b-54bb-94bc-2ccc361d0c25", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7f51\u7edc\u5de5\u4f5c\u5ba4\u91cc\u3002"} +{"id": "1004964", "video_name": "5bb23aa3-738c-5a3c-81ed-eae0a6316963", "text": "\u4e1b\u6797\u4e2d\u7684\u767d\u8c61"} +{"id": "0006967", "video_name": "35f9d978-cdd2-5be8-988b-d8d3b945b52a", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u548c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4e00\u8d77\u8d70\u8def\uff0c\u4ee54K\u9ad8\u6e05\u8d85\u903c\u771f\u7684\u753b\u9762\u5448\u73b0\u3002"} +{"id": "3006393", "video_name": "57668422-be35-5cce-b6b9-382e0797cc03", "text": "\u5728\u8239\u4e0a\u7684\u573a\u666f\u4e2d\uff0c\u6c34\u624b\u4eec\u53d1\u52a8\u4e86\u53db\u4e71\u3002\u5feb\u901f\u7684\u526a\u8f91\u5f3a\u8c03\u4e86\u8239\u5458\u4eec\u6df7\u4e71\u7684\u80fd\u91cf\u548c\u96c6\u4f53\u610f\u5fd7\uff0c\u4f53\u73b0"} +{"id": "7003282", "video_name": "70bd98d4-15e9-5841-bae8-3f5034c6c109", "text": "\u5de8\u5927\u7684\u86cb\u5b75\u5316\u51fa\u795e\u79d8\u602a\u517d\u722a\u5b50\uff0c\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u970d\u591a\u6d1b\u592b\u65af\u57fa1970\u5e74\u4ee3\u7684"} +{"id": "2005435", "video_name": "2a2231c8-ad4c-55eb-9b70-1bcffd4b7c35", "text": "\u4e00\u4e2a\u5411\u4e0a\u62cd\u6444\u7684\u5de8\u5927\u6811\u6728\uff0c\u4e0a\u9762\u5efa\u6709\u4e00\u6240\u623f\u5b50\u3002"} +{"id": "7002287", "video_name": "290cd475-8f98-5d20-bf7f-defd5540aeed", "text": "\u4f7f\u7528\u4e0a\u6d77\u5929\u9645\u7ebf\u4f5c\u4e3a\u80cc\u666f\u3002\u4fe1\u606f\uff1aDIGITON\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003438", "video_name": "2e252d01-e938-5790-9548-07ac3672152a", "text": "\u4e00\u53ea\u8003\u62c9\u548c\u4e00\u53ea\u888b\u9f20\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "1003569", "video_name": "41d567ff-0a11-5884-a713-595f82ca1d74", "text": "\u65b0\u4e0d\u4f26\u745e\u514b\u7701\u51ef\u5409\u5a01\u514b\u6cb3\u7684\u7acb\u4ea4\u6865\u98de\u884c\u3002"} +{"id": "7004790", "video_name": "fe43ed98-4858-5fd7-850e-ffbe49d18c54", "text": "\u76ae\u5c14\u65af\u00b7\u7ef4\u5c14\u4e50\u961f\u7684\u300a\u738b\u8005\u4e00\u65e5\u300b\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "4003438", "video_name": "2c541b4f-a46b-5903-af87-b34556f31234", "text": "\u521b\u9020\u4e00\u5e45\u63cf\u7ed8\u65e7\u8d27\u5e97\u72ec\u7279\u73cd\u5b9d\u6240\u8425\u9020\u7684\u8212\u9002\u6c1b\u56f4\u7684\u63d2\u753b\u3002"} +{"id": "2005083", "video_name": "ce07d59d-9658-58f1-b4e7-6a111cbc7204", "text": "3. \u7edd\u5bf9\u3001\u76f8\u5bf9\u548c\u4e0d\u5b8c\u7f8e\u7684\u65b9\u9762\u5728\u4e0d\u540c\u7684\u5173\u8054\u4e2d\u3002"} +{"id": "1003908", "video_name": "482c6cd9-f83b-58f4-b706-b27f33d0d1d5", "text": "\u540e\u53f0\u623f\u95f4\uff0c\u5954\u8dd1\u5728\u8d70\u5eca\u4e2d\uff0c\u88ab\u9ed1\u767d\u5f71\u5b50\u8ffd\u9010\uff0c\u8fc7\u671f\u7684\u80f6\u7247\u3002"} +{"id": "8003571", "video_name": "78b719ed-88e5-576e-be89-aeb7d4e0f14c", "text": "\u5de5\u4f5c\u52aa\u529b\u7684\u8682\u8681\u6b63\u5728\u5c06\u8c37\u7269\u548c\u79cd\u5b50\u642c\u8fd0\u5230\u5979\u7684\u5730\u4e0b\u623f\u95f4\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with hues"} +{"id": "6003260", "video_name": "cf4a3730-92e3-5598-8ce5-46668a490676", "text": "\u7537\u6a21\u7a7f\u7740\u672a\u6765\u611f\u6cf3\u88c5\u8d70\u5728T\u53f0\u4e0a\u3002"} +{"id": "2005897", "video_name": "5a4b614a-4e5c-5a3b-b7a9-e93dd9dafe16", "text": "\u6211\u4eec\u7cbe\u5fc3\u5730\u878d\u5408\u4e86\u5fae\u89c2\u6444\u5f71\u548c\u827a\u672f\uff0c\u81f4\u529b\u4e8e\u8d5e\u7f8e\u8fd9\u4e2a\u751f\u6001\u7cfb\u7edf\u5185\u9519\u7efc\u590d\u6742\u7684\u751f\u547d\u4e4b\u7f51\u3002"} +{"id": "7002212", "video_name": "92ae15b5-bcc1-5f71-a0e6-e099932b2b76", "text": "\u4e00\u4f4d\u533b\u751f\u5411\u4ed6\u7684\u533b\u751f\u670b\u53cb\u6492\u949e\u7968\uff0c\u50cf\u76ae\u514b\u65af\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "0003482", "video_name": "3e658360-e51e-5e80-b39f-b63af5c95e24", "text": "\u7a97\u6237\u91cc\u7684\u7b80\u5355\u5973\u5f71\u62bd\u70df\u3002"} +{"id": "3003970", "video_name": "974d8a6a-77fd-59b6-a9f7-adc408440edc", "text": "\u591c\u665a\uff0c\u516c\u4e3b\u548c\u738b\u5b50\u5728\u8424\u706b\u866b\u7f24\u7eb7\u7684\u68ee\u6797\u91cc\u63a5\u543b\u3002"} +{"id": "2005183", "video_name": "f1399541-8f4a-5db5-ac86-245a33a92149", "text": "\u91d1\u6b63\u6069\u53d8\u8eab\u4e3a\u5965\u666e\u83b1\u65af\u00b7\u666e\u83b1\u59c6\uff0c\u91c7\u7528HR\u00b7\u5409\u683c\u98ce\u683c\u7684\u6f2b\u753b\u3002"} +{"id": "1006415", "video_name": "7579a212-af0e-5801-a9c3-4d8acf4396ba", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\uff0c\u4e00\u7247\u8349\u4e1b\u5728\u98ce\u5411\u4e2d\u79fb\u52a8\u5f62\u6210\u4e00\u7247\u96fe\u6c14\u3002"} +{"id": "2003407", "video_name": "8b275c04-cedc-5f3a-b429-4285dd2f8372", "text": "\u9cb8\u9c7c\u9aa8\u9abc\u6f02\u6d6e\u5728\u697c\u68af\u4e2d\u3002"} +{"id": "1005087", "video_name": "5dcbf8e0-a97e-5ae2-8607-0aac92a95eff", "text": "\u767d\u8272\u7684\u67ab\u53f6\u5728\u98d8\u843d\uff0c\u80cc\u666f\u662f\u767e\u4e8b\u53ef\u4e50\u7684\u84dd\u8272\u3002"} +{"id": "7002950", "video_name": "094027df-4f0c-52a7-bfdb-43116f8ea20d", "text": "\u5965\u5229\u5f17\u548c\u72d7\u7ad9\u5728\u8212\u9002\u7684\u5bb6\u95e8\u53e3\uff0c\u5c55\u73b0\u4ed6\u4eec\u4e4b\u95f4\u7684\u5f3a\u70c8\u8054\u7cfb\uff0c\u5965\u5229\u5f17\u53ef\u80fd\u62ff\u7740\u4e00\u6761\u7ef3\u5b50\uff0c"} +{"id": "1004188", "video_name": "4d70ea4a-e2e1-5970-aa64-25962582ed69", "text": "\u4e00\u4e2a\u5706\u5706\u7684\u5361\u901a\u7ef5\u7f8a\uff0c\u6709\u7740\u773c\u775b\u548c\u8033\u6735\uff0c\u5728\u9633\u5149\u4e0b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u7a81\u7136\u505c\u4e0b\u6765\u5f00\u59cb\u5403"} +{"id": "1004594", "video_name": "55824ea1-4d83-5f5a-924d-17cf1189cb7f", "text": "has been banished from the forest forever.\n\n\u795e\u5947\u68ee\u6797\u7684\u5c45\u6c11\u7ecf\u8fc7\u5de8\u5927\u7684\u52aa\u529b\u548c\u727a\u7272\u4e0e\u9ed1\u6697\u5deb\u5e08\u5bf9\u6297\u3002\u7ecf\u8fc7\u4e00"} +{"id": "3005801", "video_name": "9533e4bb-fd1b-54d0-8c21-d5170d78eda1", "text": "\u6234\u5934\u76d4\u7684\u7537\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u76ef\u7740\u4e00\u5835\u7a7a\u767d\u7684\u5899\u3002"} +{"id": "6002428", "video_name": "e30a0284-342a-51ee-9461-794c27d461c5", "text": "\u57ce\u9547\u548c\u53d1\u5149\u7684\u65e5\u51fa\u6751\u5e84\u76843D\u6a21\u578b\u30024K\u63d2\u56fe\u3002"} +{"id": "2006030", "video_name": "b41d59ef-8629-5ac6-b6db-19169236703b", "text": "\u8b66\u5bdf\u4ee5\u8d85\u7ea7\u82f1\u96c4\u7684\u59ff\u52bf\u7ad9\u7acb\u3002\u4fe1\u606f\uff1a\u6b3a\u8bc8\u3002"} +{"id": "4002969", "video_name": "e99f085f-1364-5d06-b0dd-28a0b6bb0f83", "text": "\u5728\u4e00\u4e2a\u540e\u542f\u793a\u5f55\u7684\u57ce\u5e02\u91cc\uff0c\u4e00\u5757\u5e7f\u544a\u724c\u4e0a\u6709\u4e00\u4e2a\u5973\u4eba\u62ff\u7740\u4e00\u74f6\u53d8\u8272\u6db2\u4f53\uff0c\u903c\u771f\u768416:9\u3002"} +{"id": "3006530", "video_name": "8ebd7b31-1ffa-59bf-8323-7d72fbefae53", "text": "\u6f14\u5316\u4e00\u8bcd\u7528\u626d\u66f2\u7684\u690d\u7269\u548c\u53f6\u5b50\u7ec4\u6210\u5927\u5b57\u3002"} +{"id": "6004988", "video_name": "27fd75c5-7070-5976-a4c5-af3c215683ff", "text": "\u5546\u52a1\u4eba\u58eb\u5728\u529e\u516c\u5ba4\u91cc\u8fdb\u884c\u6f14\u793a\uff0c\u540e\u53f0\u6709\u4e00\u4e2a\u4eea\u8868\u677f\u3002"} +{"id": "2006772", "video_name": "30367d26-eb8f-5d23-90b5-f0e1f438c9ea", "text": "\u4e00\u7fa4\u7a7f\u7740\u8fd0\u52a8\u670d\u7684\u8d85\u91cd\u4eba\u7fa4\u4e3e\u624b\u63d0\u95ee\uff0c\u6ca1\u6709\u7578\u5f62\u7684\u624b\u6216\u9762\u5bb9\u3002"} +{"id": "1005350", "video_name": "625fa626-9a98-5968-98e8-e51dde0f3345", "text": "\u4e00\u53ea\u767d\u8272\u3001\u5361\u901a\u3001\u53ef\u7231\u7684\u5154\u5b50\u53ebFluffy\uff0c\u4e00\u53ea\u9ad8\u5927\u7684\u72d0\u72f8\u548c\u4e00\u53ea\u5c0f\u677e\u9f20\u4e00\u8d77\u5728\u795e\u5947\u7684"} +{"id": "1005326", "video_name": "61d20e2f-a3f1-5548-be4f-1ecedfad120c", "text": "\u4e00\u6839\u5927\u70ed\u72d7\u4ece\u9505\u91cc\u8df3\u51fa\u6765\uff0c\u5728\u7089\u5b50\u5468\u56f4\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "0006711", "video_name": "3189bfef-32a4-54cd-acab-5ed3199427b0", "text": "\u201cMaskMonger\u201d\u8fd9\u4e2a\u8bcd\u4ee5\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u53d1\u5149\u7eff\u8272\u5b57\u6bcd\u5448\u73b0\uff0c\u7d2b\u8272\u706f\u5149\u5728\u8bcd\u7684\u80cc"} +{"id": "3003793", "video_name": "d0599786-99c0-5b33-aed2-4e3c566fb4fc", "text": "\u6211\u60f3\u8981\u4e00\u5f20\u5973\u6027\u6d77\u519b\u4e0a\u5c06\u9886\u5bfc\u6218\u6597\u7684\u56fe\u7247\u3002"} +{"id": "2003664", "video_name": "222ba483-7176-59bc-870a-b3d5eaf8c3d6", "text": "3D\u3002\u903c\u771f\u30028K\u8d28\u91cf\u3002\u52a8\u6001\u3002David\u548c\u4ed6\u7684\u670b\u53cb\u6b63\u5728\u7235\u58eb\u4ff1\u4e50\u90e8\u5185\u6e05\u6d01\u3001\u6d82\u6f06\u3001\u642d\u5efa\u4e34\u65f6"} +{"id": "2005998", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73\u5c81\u7684\u6cf0\u8fea\u00b7\u5f6d\u5fb7\u683c\u62c9\u65af\u9762\u5411\u6444\u50cf\u673a\u8c08\u8bdd\uff0cYouTube\u89c6\u9891\uff0c\u91c7\u8bbf\uff0c\u80a9\u90e8\u9ad8\u5ea6\u62cd\u6444\uff0c2023\u5e74\u3002"} +{"id": "6004877", "video_name": "8e440296-aeba-5b98-9e90-62fd92b482eb", "text": "\u73b0\u5b9e\u7167\u7247\u822c\u903c\u771f\u7684\u82b1\u56ed\u4f8f\u5112\u5728UFC\u7b3c\u5b50\u91cc\u640f\u6597\u3002"} +{"id": "4004941", "video_name": "f63f9b31-599a-5c5d-8e5a-74a4984f3107", "text": "\u4e91\u4e2d\u7206\u70b8\u7684\u661f\u4e91\u548c\u95ea\u7535\u3002"} +{"id": "6003289", "video_name": "c11ec53f-6245-5789-ad69-c2ef73908185", "text": "\u70db\u5149\u56e0\u7a97\u6237\u7684\u98ce\u800c\u6643\u52a8\u3002"} +{"id": "8002015", "video_name": "4510e940-6e1c-5da8-8388-7ace16cbe01d", "text": "\u54e5\u4f26\u6bd4\u4e9a\u57ce\u5e02\u5e02\u4e2d\u5fc3\u3002\u4fe1\u606f\uff1a\u5a01\u5c14\u5361\u65af\u5854\u8bfa\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1006394", "video_name": "75063489-2f3f-5b10-a136-25277db7535c", "text": "Source sentence: \u7c98\u571f\u82b1\u74f6\u91cc\u6d41\u51fa\u6c34\uff0c\u91d1\u82b1\u74f6\u91cc\u4e5f\u6d41\u51fa\u6c34\u3002\n\nTranslated sentence: \u7c98\u571f\u82b1\u74f6\u91cc\u6d41\u51fa\u6c34\uff0c\u91d1\u82b1"} +{"id": "4002566", "video_name": "50de3cc9-83f2-5cd6-a44e-98fb12133664", "text": "\u5c55\u793a\u5915\u9633\uff0c\u6563\u53d1\u51fa\u6e29\u6696\u7684\u5149\u8292\u3002\u4e00\u4e2a\u730e\u4eba\u5e94\u8be5\u63a5\u8fd1\u6811\u4e0a\u4f11\u606f\u7684\u9e3d\u5b50\uff0c\u624b\u6301\u4e00\u5f20\u7f51\u3002"} +{"id": "8001673", "video_name": "3f3aaa78-941c-5105-b577-9341724bb15f", "text": "\u5a01\u5229\u00b7\u65fa\u5361\u88ab\u8054\u90a6\u8c03\u67e5\u5c40\u7a81\u88ad\u4e86\u3002"} +{"id": "1003263", "video_name": "3c0e809e-79eb-539d-ac3b-55b5723b32c3", "text": "\u4e00\u7fa4\u5c0f\u8682\u8681\u5728\u70ed\u5e26\u96e8\u6797\u4e2d\u884c\u8d70\uff0c\u7eaa\u5f55\u7247\u98ce\u683c\u3002"} +{"id": "1003217", "video_name": "3b44fb29-7193-5c2a-879e-b86fcba591e4", "text": "\u524d\u5f80\u6c34\u4e0a\u4e50\u56ed\uff0c\u4f46\u6c34\u4e0a\u4e50\u56ed\u53d8\u6210\u4e86\u7194\u5ca9\u3002"} +{"id": "1006779", "video_name": "7c3bfb05-42f4-55e3-8699-28ff59c02371", "text": "\u4e00\u53ea\u5927\u732b\u770b\u89c1\u4e86\u5c0f\u516c\u9e21\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4"} +{"id": "0004866", "video_name": "108dc839-526d-5d0b-9786-e18ce603fe97", "text": "\u4e00\u4e2a\u5bb6\u5ead\u3001\u5bb6\u5ead\u6210\u5458\u3001\u4e2a\u4eba\u7684\u526a\u8f91\uff0c\u4ee5\u89c6\u89c9\u5f62\u5f0f\u5c55\u73b0\u5e74\u9f84\u3001\u5730\u70b9\u3001\u5a5a\u59fb\u72b6\u51b5\u3001\u804c\u4e1a\u548c\u4f4f"} +{"id": "7004384", "video_name": "e059ebe4-7271-5c6b-a07e-a982da1e5212", "text": "\u8718\u86db\u4fa0\u57284K\u7684\u7535\u8111\u4e0a\u521b\u5efa\u4e86\u4e00\u4e2a\u5728\u7ebf\u7ea6\u4f1a\u6863\u6848\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "4003345", "video_name": "1c665675-a6a1-555c-b532-e0a7eb0c9f53", "text": "\u4e00\u4e2a\u4eba\u4ece\u98de\u673a\u4e0a\u8df3\u4e0b\u6765\u8fdb\u884c\u8df3\u4f1e\uff0c\u5929\u6c14\u6674\u6717\uff0c\u7a7a\u4e2d\u6709\u5f3a\u98ce\u3002"} +{"id": "2004231", "video_name": "0f877cf7-da0e-582f-b667-2fb771e8e17a", "text": "\u5236\u4f5c\u4e00\u4e2a\u771f\u5b9e\u7684\u52a8\u6001\u5f71\u50cf\uff0c\u5c55\u73b0\u63a2\u5bfb\u73cd\u5b9d\u3001\u53e4\u4ee3\u91d1\u9970\u6536\u85cf\u7684\u8fc7\u7a0b\u3002"} +{"id": "6002512", "video_name": "e7f810b0-62e1-59c9-87c2-d692ebc4eff7", "text": "\u4e24\u4e2a\u7c7b\u4f3c\u5927\u5b66\u751f\u7684\u673a\u5668\u4eba\u5728\u4e00\u8d77\u5b66\u4e60\uff0c\u5750\u5728\u5927\u5b66\u56fe\u4e66\u9986\u7684\u684c\u5b50\u524d\uff0c\u9762\u524d\u6709\u7535\u8111\u5c4f\u5e55\u3002\u89c6\u9891\u9700\u8981\u9ad8\u6e05"} +{"id": "7003548", "video_name": "d1a41821-4d90-5f56-9086-44e12420af89", "text": "\u4eba\u4eec\u7a7f\u7740\u6c99\u6ee9\u670d\u5728\u51ac\u5929\uff0c\u56e0\u4e3a\u4ed6\u4eec\u5403\u4e86Tabasco\u3002"} +{"id": "3003368", "video_name": "633accc9-7f1d-5340-b2e7-e469bc8b0a18", "text": "\u98de\u7fd4\u7684\u5730\u7403\uff0c\u5929\u4f7f\u9a7e\u9a6d\u884c\u661f\uff0c\u8df3\u821e\u7684\u5927\u8c61\uff0c\u7ea2\u7eff\u8272\u7684\u8863\u88d9\uff0c\u9540\u91d1\u9970\u9762\uff0c\u5b54\u96c0\uff0c"} +{"id": "2004483", "video_name": "712b62a2-e69d-5240-a092-f9922c272c2a", "text": "\u5728\u57ce\u5e02\u4e2d\u98de\u7740\u7684\u8c6a\u534e\u624b\u63d0\u5305\u6c14\u7403"} +{"id": "1005074", "video_name": "5d9cba06-fbe9-570d-a1b6-ce705b5742ae", "text": "\u51ac\u5929\u91cc\uff0c\u4e00\u68f5\u6811\u77d7\u7acb\u5728\u5bd2\u98ce\u4e2d\uff0c\u6811\u4e0a\u4e00\u7fa4\u9ebb\u96c0\u5728\u5541\u557e\u3002"} +{"id": "6002843", "video_name": "cf5849ef-00e3-5043-9b45-cf293bd534bc", "text": "\u7537\u5b50\u88ab\u6c34\u6bcd\u5305\u56f4\u6df9\u6b7b\u3002"} +{"id": "8001516", "video_name": "084c2b28-9013-54c5-b776-aa645eca9853", "text": "\u53bf\u96c6\u5e02\u6700\u4f73\u8702\u871c\u7684\u4e00\u7b49\u5956"} +{"id": "1005167", "video_name": "5f1a94aa-17bb-5665-ba06-6869d7e1a8a1", "text": "\u624b\u7275\u624b\u8d70\u8def\u7684\u60c5\u4fa3\uff0c\u7a7f\u7740\u5723\u8bde\u989c\u8272\u7684\u8863\u670d\uff0c\u6ee1\u9762\u7b11\u5bb9\uff0c\u7eff\u5e55\u80cc\u666f\u3002"} +{"id": "1003809", "video_name": "4657e51f-e1ec-5fd6-97f2-3c960a655f78", "text": "\u4e00\u53ea\u71d5\u5b50\u5728\u767d\u4e91\u4e2d\u98de\u7fd4\u3002"} +{"id": "6003589", "video_name": "4fe7f6ed-5273-5ead-a739-f8ad476c896c", "text": "\u516b\u5341\u5e74\u4ee3\u7684\u5438\u8840\u9b3c\uff0c\u5728\u6d77\u6ee9\u4e0a\u7f8e\u4e3d\u800c\u9ed1\u6697\u3002"} +{"id": "0006313", "video_name": "2a860d39-63cb-5786-a5bb-bfc882936a69", "text": "\u4e00\u6b3e\u9152\u54278\u4f4d\u5e73\u53f0\u89c6\u9891\u6e38\u620f\uff0c\u4f60\u5728\u6e38\u620f\u4e2d\u4f5c\u4e3a\u8c03\u9152\u5e08\u4e3a\u8bb8\u591a\u996e\u54c1\u670d\u52a1\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c"} +{"id": "1004996", "video_name": "5c59ce7d-9388-5afc-ba3d-a6b620d99f31", "text": "\u597d\u5947\u5fc3\u548c\u5b66\u4e60\u7684\u610f\u613f\u662f\u4e30\u5bcc\u6211\u4eec\u751f\u6d3b\u7684\u8d22\u5bcc\u3002\u5c31\u50cf\u57fa\u57fa\u901a\u8fc7\u89c2\u5bdf\u548c\u503e\u542c\u4ed6\u4eba\u800c\u83b7\u5f97\u667a\u6167\u4e00"} +{"id": "3004159", "video_name": "125f0905-41c8-57db-8ff3-c50088a981e1", "text": "\u5feb\u4e50\u7537\u5b69\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u767d\u8272\u80cc\u666f"} +{"id": "3004545", "video_name": "cd32c1e2-f6df-55cc-a4b5-440a1c0da0b9", "text": "Source sentence translated into Chinese: \u96c5\u5b89\u7a76\u6781\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u4e89\u8bba\u7684"} +{"id": "2003350", "video_name": "66d9eb08-2af3-5e3d-98ad-85dac19691f3", "text": "\u8b66\u5bdf\u5728\u8857\u4e0a\u4ee51970\u5e74\u4ee3\u7535\u89c6\u8b66\u532a\u5267\u7684\u98ce\u683c\u6bb4\u6253\u53f2\u9177\u6bd4\u3002"} +{"id": "3005989", "video_name": "a98fef29-38d7-5fcf-8863-2dff48ebf614", "text": "\u5728\u7530\u91ce\u91cc\u73a9\u800d\u7684\u5c0f\u5973\u5b69\uff0c\u6254\u7740\u98de\u884c\u7eb8\u98de\u673a\u53d8\u6210\u98de\u7fd4\u7684\u5fc3\u5f62\u3002"} +{"id": "2004433", "video_name": "484d47f7-c20a-5d6e-9b40-f0282d8a8b6a", "text": "\u5979\u95ed\u4e0a\u773c\u775b\u6df1\u547c\u5438\uff0c\u8f7b\u58f0\u81ea\u8bed\u201c\u7ec8\u7ed3\u4e16\u754c\u201d\u3002"} +{"id": "2006027", "video_name": "0fd4f54e-1afc-51cd-91fd-86d63d32b986", "text": "\u4f0a\u672c\u00b7\u767d\u56fe\u6cf0\u9a91\u9a86\u9a7c\u961f\u7a7f\u8d8a\u6492\u54c8\u62c9\u6c99\u6f20\u3002"} +{"id": "7004158", "video_name": "15ad921a-d4da-5544-8eb5-d9eee5594884", "text": "\u4e00\u4f4d\u4e58\u5ba2\u5728\u706b\u8f66\u4e0a\uff0c\u770b\u5230\u767d\u8272\u5899\u58c1\u7684\u8f66\u53a2\u4eff\u4f5b\u5728\u6c34\u65cf\u9986\u91cc\u79fb\u52a8\u3002"} +{"id": "8002802", "video_name": "7fab205e-4afa-509d-802c-41cf6caef405", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u62ff\u7740\u4e00\u628a\u67aa\uff0c\u7136\u540e\u955c\u5934\u8f6c\u5411\u548c\u4ed6\u4e00\u8d77\u7684\u4e94\u4e2a\u6301\u67aa\u6b66\u88c5\u5206\u5b50\u3002"} +{"id": "7004824", "video_name": "da2cd281-535e-5e5c-bd39-3db2f0b5adf1", "text": "\u4e00\u4e2a\u7a7f\u7740\u5185\u88e4\u7684\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u98de\u884c\u3002"} +{"id": "0004484", "video_name": "09be6b68-2cef-5b3a-999b-c911fa957baa", "text": "\u4e00\u7897\u70ed\u817e\u817e\u7684\u7f8e\u5473\u6c64\uff0c\u5728\u9ad8\u6863\u9910\u5385\u91cc\uff0c\u666f\u6df1\uff0c\u5c3c\u5eb7\u6570\u7801\u5355\u53cd\u76f8\u673a\uff0c\u4e09\u70b9\u706f\u5149"} +{"id": "2003968", "video_name": "a4165018-1b7f-5a5e-85cb-8ea60d847227", "text": "\u4e00\u4e2a\u8ff7\u5e7b\u7684\u9a7c\u9e7f\u7537\u4eba\u8d70\u8fdb\u4e00\u4e2a\u4f20\u9001\u95e8\uff0c\u5230\u4e86\u4e00\u4e2a\u4ece\u666e\u901a\u68ee\u6797\u5230\u51b0\u51bb\u738b\u56fd\u7684\u5730\u65b9\u3002"} +{"id": "0005967", "video_name": "242d4657-6abe-53d8-87da-2237cde129ad", "text": "\u539f\u53e5\uff1a\u5728\u300a\u539f\u795e\u300b\u4e2d\u7684Fontaine\u5730\u533a\u51fa\u73b0\u4e86\u4ee5\u6c34\u4e4b\u795eFocalor\uff08\u6c34\u795e\uff09\u4e3a\u5f62\u8c61\u7684\u52a8\u753b\u3002\n\nTranslation: \u5728\u300a\u539f\u795e\u300b\u7684Fontaine"} +{"id": "8002528", "video_name": "4da10703-e31d-568c-b6b1-c564d8cd0fcf", "text": "Source sentence translation: \u5580\u62c9\u5580\u6258\u706b\u5c71\u7206\u53d1\u5f15\u8d77\u7684\u5dfd\u4ed6\u6d77\u5ce1\u6d77\u5578\u3002"} +{"id": "0004269", "video_name": "0629aa67-88f7-5016-8b7d-c1f293f8c838", "text": "\u5c71\u8def\u96a7\u9053\u5916\u7684\u4ea4\u901a\u60c5\u51b5\u3002"} +{"id": "2004800", "video_name": "6df3ddb2-2014-551b-8977-c251065da67f", "text": "\u5979\u5728\u98ce\u4e2d\u8f7b\u8f7b\u5730\u5439\u7740\u5934\u53d1\uff0c\u51c4\u51c9\u5730\u671b\u5411\u8fdc\u65b9\uff0c\u8fd9\u662f\u5728\u6bd4\u5c14\u5df4\u9102\u300212\u5343\u7c7315\u79d2\u3002"} +{"id": "2007669", "video_name": "b826104f-de91-553b-885f-551d4e64c054", "text": "\u52a8\u6f2b\u4eba\u7269\u6234\u7740\u963f\u5f17\u7f57\u5934\u53d1\u5403\u62c9\u9762\u3002"} +{"id": "1005889", "video_name": "6c53891b-c822-52f8-8298-25774046564c", "text": "\u6c14\u6c1b\u5145\u6ee1\u4e86\u5b81\u9759\u548c\u60ca\u5947\u7684\u611f\u89c9\u3002\u4e1b\u6797\u751f\u673a\u52c3\u52c3\u3001\u5145\u6ee1\u6d3b\u529b\uff0c\u9690\u85cf\u7740\u7b49\u5f85\u88ab\u53d1\u73b0"} +{"id": "0003721", "video_name": "425b43c6-e6ae-5650-b0cd-3aa97f3e4cc3", "text": "9 \u540d\u7a7f\u7740\u8001\u5f0f\u51ac\u5b63\u9732\u8425\u670d\u88c5\u7684\u5f92\u6b65\u8005\u6b63\u5728\u5c71\u8109\u4fa7\u9762\u642d\u8d77\u4e00\u5ea7\u65e7\u5e06\u5e03\u5e10\u7bf7\uff0c\u80cc"} +{"id": "7003130", "video_name": "d80935ae-1850-595c-99be-f0f94bc469a5", "text": "\u5b69\u5b50\u4eec\u7a7f\u7740\u5723\u8bde\u670d\u88c5\uff0c\u7528\u53f6\u5b50\u548c\u706f\u5149\u88c5\u9970\u5723\u8bde\u6811\u3002"} +{"id": "3004977", "video_name": "2a92bd63-ad98-53ac-91a3-abff39194081", "text": "\u4f4e\u5206\u8fa8\u7387\u5361\u901a\u98ce\u6247\u5439\u52a8\u7eb8\u5f20\u5728\u623f\u95f4\u91cc\u98de\u821e\u3002"} +{"id": "4003445", "video_name": "791f33ca-64df-5edb-84dd-dc0aa4f5d5f7", "text": "\u6050\u6016\u7684\u753b\u9762\u663e\u793a\u5728\u5929\u7a7a\u4e2d\u592a\u9633\u4e0a\u51fa\u73b0\u4e86\u4e00\u5f20\u8138\uff0c\u8d85\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "6004515", "video_name": "89c2c1ad-ce22-55bf-b868-afbaa939af6b", "text": "\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u8f6e\u76d8\u6e38\u620f\u4e2d\u63b7\u9ab0\u5b50\u7684\u7537\u5b50\u3002"} +{"id": "0004313", "video_name": "06fa8f8e-f8a9-5431-ae75-84ed2f36e18c", "text": "\u6f02\u6d6e\u5728\u6211\u4eec\u661f\u7403\u4e0a\u7684\u57ce\u5e02\u3002"} +{"id": "1004155", "video_name": "4cfe84d0-54ee-5183-beb4-79a7044efec3", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5723\u8bde\u8001\u4eba\u5728\u6324\u6ee1\u4eba\u7fa4\u7684\u8857\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "0006424", "video_name": "2c201357-6dce-524a-9a63-f2ccf468e23e", "text": "\u5927\u897f\u6d0b\u6d77\u6d0b\uff0c\u96e8\uff0c\u66b4\u98ce\u96e8\uff0c\u6f5c\u8247\u7f13\u6162\u79fb\u52a8\uff0c\u6d77\u6d6a\u7f13\u6162\u79fb\u52a8\uff0c\u96f7\u58f0\uff0c\u8d85\u9ad8\u6e05\u6670"} +{"id": "7004856", "video_name": "315f18a6-9c9c-59ce-91b1-d797a93384ae", "text": "\u6f02\u4eae\u7684\u5973\u4eba\u5728\u8377\u82b1\u6c60\u4e2d\u6563\u6b65\u3002"} +{"id": "2004944", "video_name": "550a2036-e22a-5e92-aa9b-252f78750456", "text": "\u7ef4\u4eac\u8239\u62b5\u8fbe\u6d77\u6ee9\u3002"} +{"id": "0005068", "video_name": "1420bf97-f1fc-5000-ad23-e039090d7345", "text": "\u4e2d\u570b\u7684\u5bfa\u5edf\u64c1\u6709\u838a\u56b4\u795e\u79d8\u7684\u5916\u89c0\u3002"} +{"id": "3005250", "video_name": "3e09ab9b-3bf9-59d2-8348-aa380a6b518c", "text": "\u4e00\u4f4d\u8eab\u7a7f\u767d\u8272\u670d\u88dd\u7684\u7f8e\u9e97\u5973\u5b50\u5728\u96fb\u5f71\u98a8\u683c\u7684\u8349\u539f\u4e0a\u884c\u8d70\u3002"} +{"id": "4004280", "video_name": "0211fff9-35a3-5668-9959-59325a9fe906", "text": "\u70ed\u5e26\u6d77\u6ee9\u4e0a\u7684\u6674\u6717\u65e5\u5b50\uff0c\u6709\u68d5\u6988\u6811\u548c\u5c0f\u5c9b\u3002\u6d88\u606f\uff1aBAKLAVAKINISSS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007694", "video_name": "a62a4fce-4c64-5045-8fbf-6866e624fbf9", "text": "\u673a\u5668\u4eba\u4ee5\u52a8\u6f2b\u98ce\u683c\u63a7\u5236\u4e16\u754c\u3002"} +{"id": "0005823", "video_name": "21c9e727-80e2-5129-a11b-ba66ddff3927", "text": "\u5c0f\u5b66\u5973\u8001\u5e08\u5728\u6559\u5ba4\u91cc\u751f\u6c14\u4e86\uff0c\u6307\u7740\u624b\u6307\u5e76\u8bf4\u8bdd\uff0c\u770b\u8d77\u6765\u5f88\u751f\u6c14\u3002"} +{"id": "1005902", "video_name": "6c812b36-40ba-52e1-b569-d83e00cf3261", "text": "\u95ee\u9898\n\nSource sentence: My favorite color is blue, it reminds me of the sky and the ocean.\n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\uff0c\u5b83\u8ba9\u6211\u60f3\u8d77\u4e86\u5929\u7a7a\u548c\u6d77"} +{"id": "2003844", "video_name": "b7e1ab4a-6cd2-5986-965b-edfd0a967da2", "text": "\u6e56\u6cca\u3001\u5c0f\u5c4b\u3001\u745e\u58eb\u3001\u963f\u5c14\u5351\u65af\u5c71\u3001\u5c71\u8109\uff0c\u5411\u5730\u7403\u6269\u5c55\u3002"} +{"id": "4004519", "video_name": "b78ac3e6-3116-5d3c-a18d-35efd635ff0a", "text": "\u5de8\u5927\u7684\u661f\u9645\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u88ab\u5c0f\u578b\u6218\u8230\u5305\u56f4\uff0c\u50cf\u300a\u661f\u7403\u5927\u6218\u300b\u98ce\u683c\u7684\u7535\u5f71\uff0c\u53f2\u8bd7\u822c\u7684"} +{"id": "4004491", "video_name": "40935cf8-b0c9-5fea-953e-9539c82c4caf", "text": "\u521b\u9020\u4e00\u90e8\u8d85\u9ad8\u6e05\u6670\u5ea6\u7684\u89c6\u9891\uff0c\u63cf\u8ff0\u5916\u661f\u4eba\u5165\u4fb5\u5730\u7403\uff0c\u7834\u574f\u5730\u7403\u9886\u8896\u7684\u60c5\u666f\uff0c\u65f6\u95f4\u8bbe\u5b9a\u57282366\u5e74\u3002"} +{"id": "6003931", "video_name": "41497e73-7fba-5cfb-8ff3-94ce057c14f2", "text": "\u4e00\u5bf9\u795e\u60c5\u75db\u82e6\u7684\u592b\u5987\u5750\u5728\u90a3\u91cc\uff0c\u53cc\u624b\u8986\u76d6\u5728\u8138\u4e0a\uff0c\u56e0\u4e3a\u4ed6\u4eec\u7684\u6291\u90c1\u75c7\u72b6"} +{"id": "3006678", "video_name": "af4850bc-0689-5df1-943b-fc1ec138382b", "text": "\u4e00\u4e2a\u7531\u73bb\u7483\u5236\u6210\u7684\u874e\u5b50\u5728\u5730\u7262\u91cc\u722c\u6765\u722c\u53bb\u3002\n\nSource sentence: The sunset over the mountains was breathtakingly beautiful. \n\n\u5c71\u8109\u4e0a\u7684\u65e5\u843d\u7f8e"} +{"id": "0003267", "video_name": "3a6788d9-d655-5338-8b39-71a6cae3c175", "text": "\u653e\u5927\u4e00\u4e2a\u9177\u70ab\u7684\u7535\u52a8\u673a\u68b0\u4eae\u94dc\u8272\u673a\u5668\u72d7\uff0c\u6234\u7740\u53cd\u5149\u58a8\u955c\uff0c\u7ad9\u5728\u51b2\u6d6a\u677f\u4e0a\u987a"} +{"id": "6002163", "video_name": "5d46765c-3315-518a-bce0-18b057b24463", "text": "\u8840\u6d41\u6ee1\u5730\uff0c\u4eba\u4eec\u5728\u5730\u4e0a\u6323\u624e\u3002"} +{"id": "4002444", "video_name": "84e8cf72-087e-5ff2-ae15-485444d8230e", "text": "\u68ee\u6797\u91cc\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u7537\u5b69\u548c\u4e00\u53ea\u53cb\u597d\u7684\u72ee\u5b50\u3002"} +{"id": "2004144", "video_name": "70475f6b-2ae4-53af-9eee-409725ed94a0", "text": "\u4ece\u80cc\u540e\u770b\uff0c\u5c0f\u738b\u5b50\u548c\u72d0\u72f8\u51dd\u89c6\u7740\u6708\u4eae\u3002\u5c0f\u738b\u5b50\u80cc\u4e0a\u6709\u7fc5\u8180\u3002\u6444\u50cf\u673a\u6162"} +{"id": "6003272", "video_name": "e6f8d248-2e99-5a88-993d-45c7f6ed7421", "text": "\u4e00\u4f4d\u5feb\u6a02\u7684\u5973\u4eba\u524d\u5f80\u571f\u661f\u7684\u5b87\u5b99\u98db\u8239\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\uff0c\u5973\u4eba\u8df3\u8e8d\u8457\uff0c\u7136\u5f8c\u518d\u6b21\u524d\u5f80"} +{"id": "4003212", "video_name": "fb495945-a40d-5c44-82b9-193469a20138", "text": "\u5728\u6d0b\u57fa\u4f53\u80b2\u573a\u7684\u4e2d\u573a\u79c0\u4e0a\uff0c\u5c55\u793aUNIBETS\u5b57\u6837\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\u98ce\u683c\uff09\u3002"} +{"id": "3004752", "video_name": "21dea980-b278-5d65-a5e0-5db402992980", "text": "\u8eab\u4f53\u4e0a\u7684\u6587\u5b57\u4e3a\u4ec0\u4e48\u8981\u6807\u6ce8\uff1f"} +{"id": "1005224", "video_name": "6028e614-2e6f-5ead-83ad-1fc3c5734c89", "text": "\u672a\u6765\u7684\u7537\u4eba\u53d1\u73b0\u4e86\u4e00\u8258\u53e4\u8001\u7684\u592a\u7a7a\u98de\u8239\u7684\u9ad8\u8d28\u91cf\u573a\u666f\u3002"} +{"id": "2007348", "video_name": "0f358646-a508-52c8-b224-76e3ad561a56", "text": "\u7167\u7247\u771f\u5b9e\u7684\u5947\u7f8e\u62c9\u4ece\u6811\u4e1b\u4e0a\u65b9\u7684\u96fe\u4e2d\u5347\u8d77\u300216\uff1a9\u7684\u620f\u5267\u6027\u591c\u666f\u3002JJ\u963f\u5e03\u62c9\u59c6\u65af\u98ce\u683c"} +{"id": "8003720", "video_name": "d20d24a0-b82c-5692-897b-dde0a26471e8", "text": "\u5728\u96e8\u4e2d\u7684\u9ed1\u6697\u8be1\u5f02\u7684\u5927\u53a6\uff0c\u9ad8\u8d28\u91cf\u76848K\u3002"} +{"id": "8003376", "video_name": "e087fa19-be34-512e-9d76-946a02417b9b", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b50\u5728\u5065\u8eab\u623f\u6709\u4e00\u4e2a\u622a\u6b62\u65e5\u671f\u3002"} +{"id": "3006149", "video_name": "9447a754-7bfd-5c72-8e98-f739bdaa14b3", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u65e0\u58f0\u7535\u5f71\uff0c\u5916\u661f\u9ad8\u8d28\u91cf\u7ad9\u5728\u6444\u50cf\u673a\u4e2d\u5fc3\uff0c\u5168\u7ec6\u8282\u3002"} +{"id": "0004906", "video_name": "113b28c8-5b04-593b-a5b4-464414b4a7d3", "text": "\u4e00\u540d\u533b\u7597\u5de5\u4f5c\u8005\u6b63\u5728\u7167\u987e\u6bd2\u6c14\u53d7\u5bb3\u8005\u3002\n\nSource sentence: The company's profits have increased by 20% this year. \n\n\u8be5\u516c\u53f8\u4eca\u5e74\u7684\u5229\u6da6\u589e\u957f"} +{"id": "6002723", "video_name": "1d239d0d-ff8b-5f82-8874-dfcf02453925", "text": "\u80cc\u666f\u6709\u5341\u5b57\u67b6\u65f6\u624b\u7275\u624b"} +{"id": "2003063", "video_name": "30387ce9-1528-50a7-a14a-ba6a27038544", "text": "\u653e\u5c04\u79d1\u533b\u5e08\u5728\u67e5\u770b\u8ba1\u7b97\u673a\u5bf9\u8d85\u58f0\u6ce2\u5206\u7c7b\u4e3a\u6b63\u5e38\u540e\u611f\u5230\u9ad8\u5174\u3002"} +{"id": "2005002", "video_name": "c2be83ed-69de-589f-927c-f4efe83e41a8", "text": "\u5728\u300aSONIC ADVENTURE 2\u300b\u7684\u8d85\u7ea7\u82b1\u56ed\uff0c\u76ae\u514b\u654f\u8df3\u821e\u3002"} +{"id": "4002228", "video_name": "093424aa-dd1c-5f3b-88ad-ca24146ae506", "text": "\u521b\u4f5c\u4e00\u7bc7\u7b80\u6d01\u6709\u5438\u5f15\u529b\u7684\u793e\u4ea4\u5a92\u4f53\u5e16\u5b50\u6216\u4fe1\u606f\u5185\u5bb9\uff0c\u5173\u4e8e\u8fc7\u91cf\u6444\u5165\u7cd6\u5bf9\u4f53\u91cd\u589e\u52a0\u7684\u5f71\u54cd\u3002\u7a81"} +{"id": "2007622", "video_name": "171eee10-ca85-5a12-8fa9-eb0d97be71a8", "text": "\u4eba\u4f53\u662f\u7531\u751f\u6210\u827a\u672f\u5236\u4f5c\u800c\u6210\u7684\u3002"} +{"id": "3005757", "video_name": "332c08dd-35d0-56b5-abcf-2fa6a846f745", "text": "\u5b9d\u5b9d\u706b\u5f71\u5fcd\u8005\u7a7f\u7740\u706b\u5f71\u62ab\u98ce\u5750\u5728\u5361\u897f\u80a9\u8180\u4e0a\u5fae\u7b11\u3002"} +{"id": "1004723", "video_name": "5799dc4d-42a1-5e1f-808e-09734e4ad251", "text": "\u9ed1\u5c4f\u5f00\u573a\u3002"} +{"id": "8003540", "video_name": "5ea8fa51-e71f-5e80-8663-4048449b10f0", "text": "\u4e00\u4e2a\u5173\u4e8e\u673a\u5668\u4eba\u751f\u6d3b\u7684\u8d5b\u535a\u670b\u514b\u6545\u4e8b\u3002"} +{"id": "6004771", "video_name": "c31f9119-6e71-50b3-a798-9e35929dcbd3", "text": "\u8f6c\u5316\u4e3a\u83ab\u5948\u98ce\u683c\u7684\u52a8\u6001 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "4003795", "video_name": "a5247495-0f6f-5778-b0a6-e8a82db466a2", "text": "\u9c7c\u4ece\u6c34\u4e2d\u8fdb\u5316\u51fa\u6765\u3002"} +{"id": "3003990", "video_name": "019b7cc5-e90b-50f9-a4da-3bad092e30e5", "text": "\u752835\u6beb\u7c73\u7684Arri Alexa\u62cd\u6444\uff0c\u5728\u65e5\u843d\u65f6\u5206\u5f00\u8f66\u7a7f\u8fc7\u84dd\u5cad\u516c\u56ed\u7684SUV\u3002"} +{"id": "2003966", "video_name": "848afb4e-1a24-5d10-8278-8bcd0827bd3d", "text": "\u8ba1\u7b97\u673a\u8bbe\u8ba1\u5e08\u7684\u5de5\u4f5c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ad8\u6e05\u5206\u8fa8\u7387\uff0c4k\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\uff0c65mm Panavision\u3002"} +{"id": "7002747", "video_name": "b1576e9f-4fd7-575a-8413-e43d9ca387e4", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u7075\u9b42\u662f\u4ec0\u4e48\u6837\u5b50\u7684\uff1f"} +{"id": "0006637", "video_name": "3002c696-6a79-5ad7-b5f9-0318d30e7895", "text": "\u5b54\u96c0\u610f\u8bc6\u5230\u6c60\u5858\u6bcf\u4eba\u53ea\u80fd\u5b9e\u73b0\u4e00\u4e2a\u613f\u671b\uff0c\u4ed6\u65e0\u6cd5\u64a4\u9500\u4ed6\u6240\u505a\u7684\u4e8b\u60c5\u3002"} +{"id": "3003928", "video_name": "1d687c16-9501-5726-b8cd-3610e374024e", "text": "\u4e00\u8f86\u9ed1\u8272\u7684\u798f\u7279\u91ce\u9a6c\u5728\u5e73\u9759\u7684\u6c34\u9762\u4e0a\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "8001369", "video_name": "c9aadfe5-3917-5192-b256-312eebe03496", "text": "\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u6b63\u5728\u6d77\u6ee9\u4e0a\u60a0\u95f2\u5730\u4f11\u606f\u3002"} +{"id": "4004371", "video_name": "da3c498a-dfe1-55b1-88de-65c56c8e5de7", "text": "\u62ab\u8428\u673a\u5668\u4eba\u52a8\u4f5c\uff0c\u7535\u5f71\u706f\u5149\u75af\u72c2\u821e\u52a8\u3002"} +{"id": "8002125", "video_name": "f7bec60e-578f-58b2-9c07-f5a20b4cfc1a", "text": "\u91d1\u53d1\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u5c55\u793a\u975e\u5e38\u6027\u611f\u7684\u8eab\u6750\u3002"} +{"id": "7004705", "video_name": "bb1641f5-9b7f-54f0-8b33-0a798d049439", "text": "\u4e00\u53ea\u5e26\u7740\u5199\u6709\u201c\u6b22\u8fce\u201d\u7684\u724c\u5b50\u7684\u72d7\u3002"} +{"id": "1005471", "video_name": "648166ad-ecbe-5731-ba7d-e84f66a37b7e", "text": "\u6211\u5bf9\u7ed3\u679c\u611f\u5230\u60ca\u8bb6\uff01"} +{"id": "2004793", "video_name": "c5e86390-64fe-522e-a153-05aaccb766a7", "text": "\u5728\u4e00\u4e2a\u8d85\u73b0\u5b9e\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u6e38\u620f\u573a\u5730\u91cc\uff0c\u8ba9\u4eba\u60f3\u8d77\u4e00\u4e2a\u5de8\u5927\u7684\u6c34\u679c\u56ed\uff0c\u5230\u5904\u90fd\u6563\u843d\u7740\u8d85\u5927\u7684\u6c34\u679c"} +{"id": "1006623", "video_name": "797020f1-4c59-5bb7-aeb4-d7e609aac8e0", "text": "\u592a\u7a7a\u670d\u4e2d\u7684\u4eba\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "4004018", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "Source sentence: \u6d77\u8c5a\u7a81\u7136\u51fa\u73b0\u5728\u5f69\u8679\u4e0a\u65b9"} +{"id": "4003878", "video_name": "6b2656a4-43a4-5663-9be0-b0119f07cc97", "text": "\u68a6\u5e7b\u4e4b\u5730\u963f\u4e3d\u5c14\uff0c\u4ee54K\u8d85\u771f\u5b9e\u5448\u73b0\u3002"} +{"id": "7003593", "video_name": "0aa9c5f1-7636-5aa7-98ef-cb3813d40fb0", "text": "\u670b\u53cb\u4eec\u6700\u540e\u4e00\u6b21\u89c1\u9762\u3002"} +{"id": "8002622", "video_name": "ef34df6d-c18d-58eb-b266-c3c4987caedc", "text": "\u5468\u4e8c\u51e0\u4f55\u65f6\u7a7a\u65c5\u884c\u8f85\u52a9\u3002"} +{"id": "2005108", "video_name": "06261476-5bd9-5de9-875f-ebc7af234939", "text": "\u4ece\u592a\u7a7a\u7684\u89d2\u5ea6\u6765\u770b\uff0c\u6709\u4e00\u9897\u6d41\u661f\u3002\u5728\u80cc\u666f\u4e2d\u6709\u4e00\u4e2a\u661f\u7cfb\uff0c\u4e00\u4e9b\u661f\u661f\u548c\u661f\u4e91\u3002"} +{"id": "6003290", "video_name": "89c45a52-8aee-5232-b38a-5d94c29c21d9", "text": "\u738b\u5bb6\u536b\u7535\u5f71\u7f16\u8f91\u62fc\u63a5\u5728\u4e00\u8d774K\u3002"} +{"id": "0004515", "video_name": "0a5309ff-ad4f-5318-a9c6-3135b49868e3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u53ef\u7231\u7684\u4e1c\u4e9a\u5973\u5b69\u5728\u8bf4\u8bdd\u3002"} +{"id": "6003563", "video_name": "adc91f7b-e8f6-5a37-9ef8-8ad256519d1f", "text": "\u6982\u5ff5\u827a\u672f\u6e38\u620f\u89d2\u8272\u50cf\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "0004903", "video_name": "112ba795-03a1-5546-9ec0-d4d763ba084f", "text": "\u5ba2\u670d\u4ee3\u8868\u5fae\u7b11\u7740\u4e0e\u5ba2\u6237\u4ea4\u8c08\uff0c\u5979\u7684\u684c\u9762\u4e0a\u6709\u4e00\u5757\u5bbd\u5c4f\u663e\u793a\u5ba2\u6237\u6863\u6848\u3002"} +{"id": "1004825", "video_name": "592b9363-50d9-59eb-88b4-e998ab71465e", "text": "\u51e4\u5934\u9e6b\u5728\u6c99\u6f20\u4e0a\u7ff1\u7fd4\u3002"} +{"id": "1006478", "video_name": "768cb875-ef05-592f-976f-d8aa7e06a377", "text": "\u65e5\u843d\u65f6\u51fa\u73b0\u5728\u6d77\u6ee9\u4e0a\u7684\u811a\u5370\u3002"} +{"id": "7004894", "video_name": "ac6c0e77-bca6-5eb9-a170-a818064faa89", "text": "\u5728\u5ca9\u77f3\u5730\u5f62\u4e2d\u5c55\u793a\u5de8\u5927\u7684\u6050\u9f99\u811a\u5370\uff0c\u6697\u793a\u5b83\u4eec\u7684\u5de8\u5927\u5c3a\u5bf8\u3002"} +{"id": "0006183", "video_name": "27d2e89f-f7c0-5ada-a3dc-8efc581cd1b5", "text": "\u4e91\u6735\u5f62\u6210\u4e00\u6761\u201c\u6211\u7231\u4f60\u201d\u7684\u8d85\u5199\u5b9e\u4fe1\u606f\uff0c32K\u3002"} +{"id": "5001855", "video_name": "abc8b348-fde5-57ef-b4df-e915cadf0174", "text": "\u4ed6\u662f\u4e00\u4f4d\u6b63\u5728\u53d1\u7403\u7684\u7f51\u7403\u9009\u624b\uff0c\u4f46\u4ed6\u5374\u6709\u673a\u68b0\u81c2\u3002"} +{"id": "0006279", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "\u8377\u5170\u98ce\u8f66\u7f13\u6162\u5730\u5728\u98ce\u4e2d\u8f6c\u52a8\u3002\u80cc\u666f\u662f\u725b\u548c\u9ad8\u8349\uff0c\u524d\u666f\u968f\u98ce\u6447\u66f3\u3002\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "4004111", "video_name": "def8b398-a967-5f87-849f-184b1d541c1c", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u89c6\u9891\u4e2d\uff0c\u8001\u6b66\u58eb\u82f1\u96c4\u72ec\u81ea\u7ad9\u5728\u5ca9\u77f3\u5c71\u9876\u4e0a\uff0c\u4e91\u5f69\u7f2d\u7ed5\uff0c\u5915\u9633\u4e2d\u98de\u7fd4\u7684"} +{"id": "2003013", "video_name": "544f5a99-0c79-5a4c-8190-225b56a3712f", "text": "\u6c34\u4e0b\u7684\u9f13\u624b\uff0c\u4e0e\u9c7c\u3001\u4e2d\u63d0\u7434\u3001\u5c0f\u53f7\u548c\u821e\u8005\u5171\u821e\u3002"} +{"id": "3006605", "video_name": "d9c670e1-0cbd-5253-8f65-95524b33d721", "text": "\u5236\u4f5c\u4e00\u4e2a\u7f8e\u4e3d\u5973\u533b\u751f\u8bb2\u8ff0\u6bcf\u5929\u559d\u5564\u9152\u7684\u524d5\u4e2a\u597d\u5904\u7684\u89c6\u9891\u3002"} +{"id": "4004934", "video_name": "492fdd9e-e7c3-55d2-b063-8e93c98e7f25", "text": "Source sentence: Pepe\u9752\u86d9\u5728\u8fdb\u884c\u5341\u5b57\u519b\u4e1c\u5f81\u3002"} +{"id": "8003904", "video_name": "022b0730-ca19-5566-a640-8edb84536790", "text": "\u8bb8\u591a\u7f8e\u5143\u3002\u4fe1\u606f\uff1aImalay\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004787", "video_name": "0f245125-7c39-5131-81e9-5b0af594a368", "text": "gracefully.\n\n\u4e00\u540d\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u9ed1\u767d\u6bdb\u76ae\u5927\u8863\uff0c\u5728T\u578b\u53f0\u4e0a\u4f18\u96c5\u5730\u8d70\u52a8\u3002"} +{"id": "4004318", "video_name": "7616a6d8-7586-5e40-b20b-863d9078b2a2", "text": "\u732b\u5750\u4e0b\u6765\u5e76\u8bf4\u8bdd\u4e86\u3002"} +{"id": "7004204", "video_name": "a8dfb2bd-3785-539a-a20e-9441191e99f4", "text": "\u80cc\u666f\u4e2d\u6709\u5c71\uff0c\u4e00\u4e2a\u4eba\u8d70\u7740\u4e00\u676116.9\u7684\u5c0f\u8def\u3002"} +{"id": "6003782", "video_name": "efc3f189-18b5-5a06-8fcf-a2a10b92b77c", "text": "\u4e16\u754c\u5927\u6218\uff0c20\u90e8\u7535\u5f71\uff0c\u53ef\u6015\u7684\u9b3c\u9b42\uff0c\u8840\u3002"} +{"id": "6004164", "video_name": "01687606-db39-5abf-8208-62f77b3ce991", "text": "\u4e00\u4f4d\u8001\u5987\u4eba\u5728\u4e00\u5217\u62e5\u6324\u7684\u706b\u8f66\u4e0a\u52aa\u529b\u8df3\u821e\u3002"} +{"id": "0005684", "video_name": "1f4d5e56-0168-5ecc-b7ee-5e9579bf777c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u6f2b\u7537\u5b69\uff0c\u767d\u8272\u7684\u5934\u53d1\u5728\u6c34\u4e2d\u6e38\u6cf3\u3002"} +{"id": "2005017", "video_name": "5a1de2a2-1bb5-516b-b6f4-0b1962774880", "text": "\u591c\u665a\uff0c\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u8bbe\u8ba1\u5c55\u793a\u4e00\u53ea\u9ec4\u8272\u5973\u6027\u673a\u5668\u4eba\u6301\u6b66\u5668\uff0c\u534a\u8eab\u6df1\u5165\u6c34\u4e2d\uff0c\u5411\u524d\u8d70\uff0c\u95ea\u7535\u6ce2\u6837"} +{"id": "2005328", "video_name": "4ca06b25-98a1-58bf-9383-8f65036486f1", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u52a0\u5dde\u6d1b\u6749\u77f6Studio City\u5c71\u4e18\u4e0a\u7684\u897f\u73ed\u7259\u548c\u5730\u4e2d\u6d77\u98ce\u683c\u7684\u5bb6\uff0c\u6d6a\u6f2b\u7684\u5efa\u7b51\u98ce\u683c\uff0c\u5c71\u4e18\u4e0a"} +{"id": "0005343", "video_name": "191bfe57-690e-5a19-9b8b-1ab93e3140fd", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u706b\u8f66\u65c5\u884c\u7a7f\u8d8a\u5927\u81ea\u7136\u53bb\u63a2\u7d22\u65b0\u7684\u5730\u65b9\u3002"} +{"id": "6004733", "video_name": "48b4fd52-8a26-553a-9f8d-818661d4d84b", "text": "\u98de\u8d8a\u6751\u5e84\u7684\u4e0d\u660e\u98de\u884c\u7269\uff0c\u4ee5\u9ed1\u767d\u8272\u8c03\u5448\u73b0\uff0c\u4eff\u4f5b\u662f1970\u5e74\u4ee3\u7684\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "5001236", "video_name": "fe73807f-3920-50b1-a876-f61c4dd2c2e2", "text": "\u8d2d\u7269\u4e2d\u5fc3\u7684\u5ba4\u5185\u8bbe\u8ba1"} +{"id": "3005650", "video_name": "f9a4d4c5-76f0-5473-bab9-251bcba032b8", "text": "\u5b8f\u89c2\u7279\u5199\u4e00\u4e2a\u767d\u8272\u5e76\u4e14\u6a21\u7cca\u7684\u773c\u7403\u3002"} +{"id": "3003743", "video_name": "8ddb26f4-a10a-5eb7-9b2c-e1489671e93b", "text": "\u5728\u4e00\u4e2a\u5c0f\u661f\u7403\u4e0a\u5f39\u5409\u4ed6\u7684\u60b2\u4f24\u5973\u5b50\u3002"} +{"id": "0004250", "video_name": "05c60099-82e0-5841-a0db-0730ab43f2a6", "text": "\u8096\u50cf\u6a21\u5f0f\u7684\u9ed1\u767d\u8d70\u5eca\uff0c\u5e7d\u7075\u5feb\u901f\u4ece\u95e8\u5230\u95e8\u79fb\u52a8\u3002"} +{"id": "7003871", "video_name": "f59dea9f-953a-579e-8321-2713af8cce80", "text": "\u4e00\u4e2a\u62ff\u7740\u51cb\u8c22\u7684\u82b1\u7684\u5973\u5b69\uff0c1980\u5e74\u4ee3\u7684\u6cd5\u56fd\u5b9e\u9a8c\u7535\u5f71"} +{"id": "3004420", "video_name": "54f26bf3-34c7-574a-b985-1f5eaa5f2ef7", "text": "\u610f\u5927\u5229\u4e61\u6751\uff0c\u5934\u9876\u98de\u7fd4\u7684\u9e1f\u7fa4\u3002\u4fe1\u606f\uff1a\u51ef\u7279\u7433\u3002"} +{"id": "4002189", "video_name": "ec7113b1-bdd9-579c-9b8d-5e2dccaaf1ce", "text": "\u5c55\u793aEzekiel\u5728\u8349\u5730\u4e0a\u5076\u7136\u9047\u5230Mavina\u8df3\u821e\u7684\u65f6\u523b\uff0c\u4ed6\u7740\u8ff7\u5730\u8bb0\u5f55\u4e0b\u5979\u4f18\u7f8e\u7684\u52a8\u4f5c\u548c\u5915\u9633\u7684\u80cc"} +{"id": "4004931", "video_name": "928792ca-1f69-5b0c-b0fa-4eca07b18ce3", "text": "\u4ece\u4e00\u4e2a\u8ff7\u4eba\u7684\u955c\u5934\u5f00\u59cb\uff0c\u63cf\u7ed8\u4e00\u4f4d\u5973\u9a91\u624b\u7a7f\u4e0a\u88c5\u5907\u3001\u6234\u4e0a\u5934\u76d4\u5e76\u51c6\u5907\u9a91\u884c\u3002"} +{"id": "3005668", "video_name": "aa8acf79-4f91-5112-9c79-28bce3c39351", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u62df\u4eba\u5316\u718a\u6467\u6bc1\u4e86\u4e00\u4e2a\u5c0f\u9547\u3002"} +{"id": "7004878", "video_name": "ab81095a-ff5f-569e-9b88-fc73393301a6", "text": "\u665a\u4e0a\u96e8\u4e2d\uff0c\u767d\u8272\u8f66\u524d\u6709\u4e00\u8f86\u7075\u8f66\u3002"} +{"id": "7002281", "video_name": "7f861a35-9052-5b7d-b7e2-0863f65e714f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u8def\u3002"} +{"id": "3003182", "video_name": "069aca39-167e-5d73-8926-67e73bf84e17", "text": "\u5916\u661f\u4eba\u56e0\u4e3a\u6fc0\u5149\u67aa\u7684\u653b\u51fb\u800c\u7206\u70b8\u3002\u79d1\u5e7b\u9898\u6750\u3002\u7070\u8272\u8d70\u5eca\u5185\u3002\u79d1\u5e7b\u9898\u6750\u3002"} +{"id": "3006711", "video_name": "55a7a27d-b567-5e1e-ac86-3a83280c45fa", "text": "\u4e00\u4e2a\u7537\u5b69\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "0004199", "video_name": "04dc1ab9-7f94-5755-923f-0bcb230c211e", "text": "\u50cf\u4e00\u500b\u5728\u52d5\u6f2b\u98a8\u683c\u4e0b\u5728\u623f\u9593\u88e1\u5b78\u7fd2\u7684\u7537\u5b69\u3002"} +{"id": "3003971", "video_name": "c89f2c61-27d6-5cb8-b01a-585e6d80cd82", "text": "\u4e00\u4e2a\u6b66\u58eb\u7ad9\u5728\u6a31\u82b1\u6811\u4e0b\uff0c\u624b\u6301\u706b\u7130\u5200\u3002\u80cc\u666f\u662f\u5bcc\u58eb\u5c71\u30024k\u3002\u903c\u771f\u3002"} +{"id": "2006507", "video_name": "bf04a462-eb39-5a1b-aab5-cf5490240c81", "text": "\u5207\u6362\u5230\u4e00\u4e2a\u684c\u5b50\u7684\u955c\u5934\uff0c\u4e0a\u9762\u6446\u653e\u7740\u5404\u79cd\u963f\u80b2\u5420\u9640\u8349\u836f\u548c\u9999\u6599\uff0c\u7cbe\u5fc3\u6392\u5217\u3002\u6444\u50cf\u673a"} +{"id": "6004159", "video_name": "d63fc7bd-702e-5c3e-9b4e-a8517962a70c", "text": "\u6211\u4eec\u5728\u4e00\u4e2a\u60ac\u6d6e\u7684\u98de\u884c\u5668\u4e0a\u98de\u884c\uff0c\u5728\u4e00\u4e2a\u795e\u79d8\u7684\u4e1b\u6797\u8986\u76d6\u7684\u5c71\u4e0a\u5347\u8d77\uff0c\u9ad8\u9ad8\u5730\u5347\u5165\u5e7f\u9614\u7684\u592a"} +{"id": "0005702", "video_name": "1fbb984d-33b6-5a3f-8b6e-bb768f43ab60", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u9ed1\u6697\u661f\u7a7a\u5faa\u73af\u5ef6\u65f6\u6444\u5f71\uff0c\u661f\u661f\u95ea\u70c1\u4eae\u4e3d\u3002"} +{"id": "8003388", "video_name": "3bdd2cef-8f45-59b0-8853-b2c3f70a8d49", "text": "\u7ebd\u7ea6\u9152\u5e97\u7684\u9897\u7c92\u72b6\u5f55\u50cf\u3002"} +{"id": "6003039", "video_name": "96ebe951-5ec7-5730-a4d8-902d6b1ac965", "text": "\u8c22\u6cfc\u5fb7\u00b7\u8d39\u96f7\u52a8\u753b\u4e2d\u7684\u4eba\u4eec\u5728\u81ea\u7136\u4e2d\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "3003862", "video_name": "bac33899-8c32-5818-83c8-9736a40fb7b8", "text": "\u4f8d\u58eb\u5728\u665a\u4e0a\u8fdb\u884c\u4eea\u5f0f\u3002"} +{"id": "2005517", "video_name": "887f7343-90fa-5d6d-892f-fced01ecfb5f", "text": "\u4e00\u4e2a\u91d1\u53d1\u5c0f\u5973\u5b69\u7ad9\u5728\u901a\u5f80\u53e6\u4e00\u4e2a\u661f\u7cfb\u7684\u5f3a\u5149\u4f20\u9001\u95e8\u524d\u3002"} +{"id": "0005189", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "\u90a3\u4e2a\u5728\u8d85\u73b0\u5b9e\u4e16\u754c\u91cc\u54ed\u6ce3\u7684\u7537\u4eba\u770b\u8d77\u6765\u50cf\u662f\u8d5b\u535a\u670b\u514b3\u3002"} +{"id": "6003979", "video_name": "c9492a2d-8e41-5f56-b6fa-4d361f2b4ea4", "text": "\u8001\u5e08\u5728\u9ed1\u677f\u4e0a\u8bb2\u89e3\u6570\u5b66\u77e5\u8bc6\uff0c\u9ed1\u677f\u4e0a\u5145\u6ee1\u4e86\u6570\u5b57\uff0c\u5448\u73b0\u51fa\u9ad8\u6e05\u6670\u5ea6\u76848K\u7167\u7247\u7ea7\u753b\u8d28\u3002\u4fe1\u606f\uff1a\u6851"} +{"id": "8001842", "video_name": "ea5203e8-5e3f-5b07-940a-b73866fada8b", "text": "\u665a\u4e0a\u4ef0\u671b\u661f\u7a7a\uff0c\u661f\u661f\u5728\u79fb\u52a8\u3002"} +{"id": "1003876", "video_name": "4761b47b-f454-582d-914d-4e38844e00f5", "text": "\u5728\u5e73\u5e95\u9505\u4e0a\u70f9\u5236\u4e00\u4e2a\u661f\u7cfb\u7684\u83dc\u80b4\u3002"} +{"id": "7003194", "video_name": "b1941106-8da0-5cfc-b817-edc7e39eea33", "text": "\u4eba\u7c7b\u7ec6\u80de\u65e0\u9650\u6444\u50cf\u5934\u653e\u5927\u3002"} +{"id": "1004319", "video_name": "4fc8b3c8-96f0-5d78-8aac-43dd9c2f65e5", "text": "\u6c49\u5a1c\u662f\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\uff0c\u5750\u5728\u8212\u9002\u7684\u5496\u5561\u5e97\u91cc\uff0c\u624b\u62ff\u4e00\u676f\u5496\u5561\u3002"} +{"id": "2005274", "video_name": "20f2f507-b2c5-5fdc-a35d-0defb75a32f0", "text": "\u5c0f\u74f6\u5b50\u653e\u5728\u5e8a\u5934\u67dc\u4e0a\uff0c\u8fd8\u6709\u9c9c\u82b1\uff0c1950\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u7684\u9ed1\u767d\u8272\u8c03\u3002"} +{"id": "7002482", "video_name": "6b10bce9-c613-5d0a-a2ed-4acf32659ded", "text": "\u98de\u9f99\u5b9d\u5b9d\uff0c\u7eff\u8272\u3002 \u9644\u4ef61\u3002"} +{"id": "6004791", "video_name": "b59197d6-d964-5633-9472-90b0c1d7744b", "text": "\u7eff\u5de8\u4eba\u7ad9\u5728\u5e7f\u5dde\u5854\u9876\u7aef\u3002"} +{"id": "8002078", "video_name": "d8602473-8166-54da-af0b-51394a57045c", "text": "\u5168\u5fc3\u5168\u610f\u4e3aSwami Raman\u548c\u963f\u4ec0\u62c9\u59c6\u670d\u52a1\u3002"} +{"id": "3003206", "video_name": "835eb360-f1e0-59fe-95e3-0282085a9f7a", "text": "\u6c34\u6ef4\u6162\u6162\u6ef4\u5728\u7f50\u5b50\u4e0a\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006010", "video_name": "6e71063d-f79d-51bf-abcf-c2b2621dc274", "text": "4K 50 \u5e27\u6bcf\u79d2\u7684\u5370\u5ea6\u795e\u7947\u6e7f\u5a46\uff0c\u6124\u6012\u7684\u8868\u60c5\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "3006718", "video_name": "19d0e149-831a-56af-b4bd-329a5a55173e", "text": "\u4e0d\u540c\u5927\u5c0f\u7684\u7eff\u8272\u4e09\u89d2\u5f62\u76f8\u8fde\u7ec4\u6210\u7684\u4e0d\u540c\u8272\u8c03\u80cc\u666f\u3002"} +{"id": "3006217", "video_name": "bfe35866-aca8-5ec5-bd3f-4c3f148b79db", "text": "\u4eba\u4eec\u5de5\u4f5c\u548c\u884c\u8d70\uff0c\u98ce\u8f7b\u8f7b\u5730\u5439\u52a8\u3002"} +{"id": "2005440", "video_name": "ef585eed-d615-5339-9976-585b39e18723", "text": "\u4f7f\u8349\u548c\u4e91\u52a8\u8d77\u6765\u3002\u6dfb\u52a0\u5149\u7c92\u5b50\u3002"} +{"id": "1003788", "video_name": "45ea9461-3fd4-543d-807a-e841903295df", "text": "\u5728\u8f66\u5185\u89c6\u89d2\u4e0b\uff0c\u9a7e\u9a76\u4e00\u8f86\u9053\u5947Charger Hellcat\u98de\u901f\u884c\u9a76\u3002"} +{"id": "7002575", "video_name": "1405860c-9c6f-581b-b8d9-1537470422d1", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u58eb\u7a7f\u7740\u7ea2\u8272\u8fde\u8863\u88d9\u5728\u9152\u5e97\u9152\u5427\u559d\u9a6c\u63d0\u5c3c\u9152\u3002"} +{"id": "2004957", "video_name": "16b45aa2-a7c8-5589-87d5-4c59e040291a", "text": "\u4e00\u53ea\u7a7f\u7740\u5b87\u822a\u670d\u7684\u72d7\u5750\u5728\u706b\u7bad\u4e0a\u3002"} +{"id": "4002958", "video_name": "b422956e-f430-5368-a0c3-be9d3d0d091e", "text": "\u4e00\u4e2a\u89c6\u9891\u91cc\u6709\u5f88\u591a\u4e0d\u540c\u56fd\u7c4d\u7684\u5973\u6027\u5728\u6d77\u6ee9\u8df3\u821e\uff0c\u73a9\u5f97\u5f88\u5f00\u5fc3\uff0c\u5f88\u5feb\u4e50\uff0c\u5f88\u5f00\u6000\u5730\u7b11\u7740\u3002"} +{"id": "3005065", "video_name": "d0fc893b-651a-5d4f-9352-e0c42cff246b", "text": "\u7535\u5f71\u5f0f\u7684\u201c\u9ed1\u6697\u9a91\u58eb\u201d\u4ece\u8759\u8760\u6d1e\u4e2d\u51fa\u73b0\u3002"} +{"id": "1004150", "video_name": "4cdc0e52-6312-568d-b63b-c2cbfc27762b", "text": "\u7532\u82ef\u5206\u5b50\u6f02\u6d6e\u5728\u7a7a\u6c14\u4e2d\u3002"} +{"id": "8002758", "video_name": "7d250498-dd03-57e9-a13c-671e87ce595e", "text": "\u4e00\u4e2a\u5149\u5934\u3001\u6709\u7ea2\u8272\u80e1\u987b\u548c\u84dd\u8272\u773c\u775b\u7684\u7537\u4eba\u53d8\u6210\u4e86\u4e00\u4e2a\u795e\u3002"} +{"id": "2003259", "video_name": "69193b8d-06c8-59c0-9e4c-6c143edcaef6", "text": "\u4ed9\u5973\u53f6\u6d1b\u4e3d\u9a7e\u9a76\u7740\u4e00\u8258\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "6004171", "video_name": "40c0630b-7a75-51bb-bb35-21f16fc1b87c", "text": "\u9ed1\u4e91\u6f02\u6d6e\u5728\u6674\u6717\u7684\u5929\u7a7a\u4e2d\uff0c\u5982\u540c\u7535\u5f71\u753b\u9762\u768470\u6beb\u7c73\u5e7f\u89d2\u955c\u5934\u6162\u52a8\u4f5c\u62cd\u6444\u4e00\u822c\u3002"} +{"id": "3006138", "video_name": "36d4cf4c-3c1f-5d55-92f8-22480995affa", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u676f\u5b50\u91cc\u6e38\u6cf3\n\nSource sentence: I love eating pizza with pepperoni and mushrooms.\n\u6211\u559c\u6b22\u5403\u52a0\u6709\u610f\u5927\u5229\u8fa3\u9999\u80a0\u548c\u8611\u83c7\u7684"} +{"id": "7002715", "video_name": "3e73fa02-82ce-58cd-a69d-c0118ac557ef", "text": "\u90a3\u9897\u661f\u661f\u975e\u5e38\u7f8e\u4e3d\uff0c\u53c8\u5927\u53c8\u6e05\u6670\uff0c\u4f7f\u5f97\u5929\u7a7a\u4e2d\u7684\u5176\u5b83\u661f\u661f\u90fd\u5728\u5927\u6c14\u4e2d\u53d8\u6210\u4e86\u767d\u96fe\uff0c\u4e8e\u662f\u4eba\u4eec"} +{"id": "8001776", "video_name": "8dad8044-7d2b-5965-a0e1-d93c6e505c86", "text": "\u6e38\u620f\u300a\u68d2\u68d2\u7cd6\u7535\u952f\u300b\u4e2d\u7684\u89d2\u8272\u8df3\u821e\u3002"} +{"id": "1003125", "video_name": "3985b75c-351a-5253-bfdb-df0972716711", "text": "\u5154\u5b50\u548c\u732b\u5934\u9e70\u7ecf\u5e38\u5728\u8349\u5730\u4e0a\u8df3\u6765\u8df3\u53bb\uff0c\u63a2\u7d22\u4ed6\u4eec\u8ff7\u4eba\u6751\u5e84\u7684\u6bcf\u4e00\u4e2a\u89d2\u843d\u3002"} +{"id": "8002099", "video_name": "5d0128ee-8b4c-55a0-9bd1-f71e84dfb049", "text": "\u4e00\u53ea\u8001\u864e\u6b63\u5728\u8ffd\u9010\u4e00\u53ea\u9e1f\u3002"} +{"id": "3006871", "video_name": "a6f9a90e-91ef-571f-8aa5-a436d834af46", "text": "\u9f99\u5728\u71c3\u70e7\u7740\u4e00\u6839\u6728\u6750\uff0c\u89c6\u9891\u6e38\u620f\uff0c\u68ee\u6797\u3002\u4fe1\u606f\uff1aLEO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7002819", "video_name": "355b5e13-fd19-5f0a-8a56-115e191df9ba", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u4e24\u4e2a\u5916\u661f\u4eba\u78b0\u89e6\u4e86\u5b83\u4eec\u7684\u624b\u6307\u3002"} +{"id": "7004855", "video_name": "16ec6ed1-f3dc-57d9-89a3-13910935108a", "text": "\u65b0\u95fb\u6807\u9898\u7684\u7b80\u77ed\u8499\u592a\u5947\uff0c\u5305\u62ec\u771f\u5b9e\u548c\u865a\u5047\u7684\uff0c\u95ea\u8fc7\u5c4f\u5e55\u3002"} +{"id": "1005096", "video_name": "5e067cab-6eb9-55fb-bdb2-0b7ab7ccdc27", "text": "15\u79d2\u7684\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "2004560", "video_name": "c70eeac6-70d9-530d-b630-467c7b12b902", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u5065\u8eab\u6559\u7ec3\u7a7f\u7740\u77ed\u725b\u4ed4\u88e4\u5411\u6211\u4eec\u6325\u624b\u3002"} +{"id": "4004229", "video_name": "22b323e8-0d19-5253-8cff-b619899727e4", "text": "\u8bf7\u7ed9\u6211\u521b\u4f5c\u4e00\u5f209\uff1a16\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u753b\u50cf\uff0c\u5145\u6ee1\u5a01\u4e25\u548c\u795e\u79d8\u611f\u3002"} +{"id": "2004557", "video_name": "05cff41d-c2a4-5ede-b928-86b77ae98639", "text": "\u5b64\u72ec\u7684\u7075\u9b42\u5728\u57ce\u5e02\u4e0a\u7a7a\u98de\u7fd4\u3002"} +{"id": "1003730", "video_name": "44dc4f5a-4106-5c42-9504-df437480e163", "text": "\u5728\u4f60\u623f\u95f4\u89d2\u843d\u91cc\u770b\u4e0d\u89c1\u7684\u6050\u6016\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "2003570", "video_name": "b6ab76b0-8caf-54c9-8d50-00aa1c7143e5", "text": "\u4e00\u90e8\u5173\u4e8e\u7c73\u6b47\u5c14\u00b7\u7f57\u5fb7\u91cc\u683c\u5179\u53cd\u6297\u5b89\u4e1c\u5c3c\u5965\u00b7\u73ed\u5fb7\u62c9\u65af\u7684\u897f\u90e8\u7535\u5f71\u3002"} +{"id": "1005203", "video_name": "5fd124cb-a35e-57ef-be7e-65af3aaa305a", "text": "\u4e00\u53ea\u5c0f\u72fc\u548c\u7ea2\u5e3d\u5c0f\u59d1\u5a18\u5728\u68ee\u6797\u91cc\uff0c\u52a8\u753b\u7247\uff0c\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u3002"} +{"id": "8001380", "video_name": "68dce644-c7b9-5859-a5a3-323e56339b52", "text": "\u5c55\u793a\u4eba\u4f53\u89e3\u5256\u5b66\uff0c\u5e76\u5c55\u793a\u5668\u5b98\u7684\u529f\u80fd\u3002"} +{"id": "1004130", "video_name": "4c7a1458-efca-54d3-98a1-b14fe65dfa4e", "text": "\u4ed6\u4ece\u53a8\u623f\u7a97\u6237\u95fb\u5230\u4e86\u4e00\u80a1\u7f8e\u5473\u7684\u6c14\u5473\u3002"} +{"id": "2003199", "video_name": "1611bd82-8b91-5031-a417-e5170109c7da", "text": "\u4ecb\u7ecd\u65e0\u754f\u7684\u5e74\u8f7b\u5973\u5b69\u8389\u62c9\u548c\u5979\u7684\u597d\u5947\u5fc3\uff0c\u5e26\u9886\u5979\u524d\u5f80\u5c71\u4e0a\u751f\u6d3b\u7740\u5927\u9e70\u57c3\u5c14\u5fb7"} +{"id": "7004692", "video_name": "31e9cfd8-b82c-5cd2-a4b9-7a857179bc03", "text": "\u6ce2\u6d6a\u4e16\u754c\u65b0\u95fb\u9891\u9053\u5728\u672a\u6765\u4e3b\u9898\u7684\u80cc\u666f\u4e0a\u65cb\u8f6c\uff0c\u80cc\u540e\u6709\u7ea2\u8272\u548c\u84dd\u8272\u7684\u7c7b\u6bd4\u3002"} +{"id": "3005290", "video_name": "5447c786-9c11-5bfd-ab06-de0a872b324c", "text": "\u8001\u5f0f\u7684\u897f\u90e8\u7247\u6709\u5f88\u591a\u52a8\u4f5c\u3002"} +{"id": "8003045", "video_name": "cc8c0443-0c09-5af9-8df5-b5aa21c4965a", "text": "\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u8d70\u8def\uff0c\u6d77\u6d6a\u62cd\u6253\u58f0\u54cd\uff0c\u540c\u65f6\u4f7f\u7528\u624b\u673a\u3002"} +{"id": "0004082", "video_name": "02e2b2b8-e8ae-5a37-afc4-c743ef5fe68b", "text": "\u6d77\u6d6a\u5728\u51ac\u5b63\u548c\u96ea\u5929\u62cd\u6253\u7740\u706f\u5854\u3002"} +{"id": "4003469", "video_name": "65daeba7-6c28-5f6e-be64-77487b16a5e4", "text": "\u5c55\u793a\u4e00\u5f20\u4e16\u754c\u5730\u56fe\uff0c\u663e\u793a\u4ece\u52a0\u62ff\u5927\u524d\u5f80\u79d8\u9c81\u3001\u5370\u5ea6\u548c\u6b27\u6d32\u7684\u65c5\u884c\u8def\u7ebf\u3002"} +{"id": "3003005", "video_name": "cf2123ce-f4b9-5f78-8270-ef70149658c7", "text": "\u5728\u9601\u697c\u7a97\u6237\u91cc\u51fa\u73b0\u4e86\u9b3c\u9b42\u7684\u95f9\u9b3c\u5c4b\u8fdc\u666f\u3002"} +{"id": "7003167", "video_name": "ff8934a8-d3ab-53a1-be6c-e306ff46e778", "text": "\u9ed1\u8272\u5c71\u5cf0\u5728\u7eff\u8272\u5e73\u539f\u4e0a\uff0c\u4ece\u56db\u8f74\u98de\u884c\u5668\u4e0a\u62cd\u6444\u3002Zoom\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001483", "video_name": "7f811303-2384-5f93-ab3a-90808f2ec16b", "text": "\u76f4\u5230\u6708\u7403\u7684\u5c3d\u5934\u7684\u573a\u666f\u3002"} +{"id": "3004431", "video_name": "37d72156-6f41-5dcb-b99d-5687bcd46b66", "text": "\u6162\u52a8\u4f5c\u7684\u6d77\u6d6a\uff0c\u8001\u65e7\u7684\u89c6\u9891\uff0c1970\u5e74\u4ee3\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7535\u5f71\u611f\uff0c\u300a\u9ed1\u6697\u68ee\u6797\u300b\u98ce\u683c\u7684\u7535\u5f71\uff0c\u300a\u5348\u591c"} +{"id": "2006879", "video_name": "bfc6cf71-29b5-558a-a093-c8264b476a88", "text": "\u4e00\u5ea7\u666e\u901a\u57ce\u5e02\u8f6c\u53d8\u6210\u4e86\u661f\u9645\u57ce\u5e02\uff0c\u8fd0\u52a8\u955c\u5934\u3001\u7535\u5f71\u822c\u7684\u753b\u9762\u3002"} +{"id": "4002352", "video_name": "fa166c70-0219-5811-9ad6-838251595f4e", "text": "\u4ee5\u5b81\u9759\u7684\u6c34\u4e0b\u753b\u9762\u5f00\u59cb\uff0c\u5c55\u793a\u5404\u79cd\u6c34\u6bcd\u7269\u79cd\u3002"} +{"id": "8003176", "video_name": "42ab5aef-318b-5339-a22f-4b44be292023", "text": "\u4e00\u9897\u7ea2\u8272\u5149\u6ed1\u7684\u82f9\u679c\u6f02\u6d6e\u572816:9\u52a8\u6001\u7684\u7194\u5316\u91d1\u6d77\u4e2d\uff0c\u6301\u7eed5\u79d2\u949f\u3002"} +{"id": "6002240", "video_name": "50b1e302-146c-5684-af59-bb756734f2cc", "text": "7\u4f4d\u516c\u4e3b\u5728\u5bab\u6bbf\u7684\u4e00\u4e2a\u5927\u623f\u95f4\u91cc\uff0c\u4ee5\u8fea\u65af\u5c3c\u98ce\u683c\u5206\u522b\u7761\u5728\u4e0d\u540c\u7684\u5e8a\u4e0a\u3002"} +{"id": "6004428", "video_name": "a57cbc2b-13fc-5fea-8b50-a1b0b658067e", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u5ba2\u5385\u7684\u753b\u9762\uff0c\u67d4\u548c\u7684\u6708\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5c04\u8fdb\u6765\u3002"} +{"id": "0004287", "video_name": "06625b0d-acfe-5fe8-b848-d45c046d0c55", "text": "\u65c5\u9986\u65c1\u505c\u8f66\u573a\u91cc\u6709\u5361\u8f66\u53f8\u673a\u7684\u9b3c\u9b42\u3002"} +{"id": "6003810", "video_name": "b8b70b41-b81a-5afd-94a7-31cf295543b4", "text": "\u4e00\u4f4d\u975e\u5e38\u5f3a\u58ee\u7684\u7537\u4eba\u8d70\u5728\u88ab\u5c71\u4e18\u5305\u56f4\u7684\u9053\u8def\u4e0a\u3002"} +{"id": "1005604", "video_name": "67139fd8-86fb-511f-aa90-dc3e459bbb2a", "text": "\u660e\u5929\u5e26\u6c64\u59c6\u548c\u6770\u745e\u3002"} +{"id": "6003985", "video_name": "533ccaab-1238-52f3-aec4-e5e38eba66fc", "text": "\u4e09\u4e2a\u5361\u901a\u5b69\u5b50\u7684\u89c6\u9891\uff0cEmma\u662f\u4e00\u4e2a8\u5c81\u7684\u5973\u5b69\uff0c\u7a7f\u7740\u767d\u8272\u4e0a\u8863\u548c\u84dd\u8272\u88e4\u5b50\uff0cBen\u662f\u4e00\u4e2a9\u5c81\u7684\u7537\u5b69\uff0c"} +{"id": "0003937", "video_name": "001e3344-3480-521e-b321-708a28c90a0c", "text": "\u4e00\u53ea\u732b\u5728\u5730\u677f\u4e0a\u8d70\u8def\u3002"} +{"id": "1005019", "video_name": "5cdf7a34-33a5-5012-ad28-e06b544f06e2", "text": "\u8bf7\u753b\u4e00\u5e45\u7f8e\u4e3d\u7684\u5929\u7a7a\u666f\u8c61\u3002"} +{"id": "3003607", "video_name": "f8108cf7-747a-5429-afa2-44b50d0351c9", "text": "\u4eba\u7c7b\u5934\u53d1\u7ec6\u4e1d\u7684\u5fae\u89c2\u5c42\u6b21\u7ed3\u6784\u89c6\u56fe\u3002"} +{"id": "4003137", "video_name": "252a644b-33c3-5191-a320-3624d2430b7e", "text": "1980\u5e74\u4ee3\uff0c\u67d4\u548c\u7684\uff0c\u6545\u969c\u7684\uff0cVHS\u9759\u6001\uff0c\u80cc\u666f\u6548\u679c\uff0c\u73af\u5883\u89c6\u89c9\u6548\u679c"} +{"id": "6004434", "video_name": "d93e9fcb-9172-5d6b-a7dd-908fc681b6fc", "text": "\u6d88\u5316\u997c\u5e72\u88ab\u54ac\u65ad\u7684\u560e\u5431\u58f0\u3002"} +{"id": "0004605", "video_name": "0bde2b1e-f8d5-565e-a78f-3f2b5a1a2f9b", "text": "4\u7c73\u957f\u7684\u9e1f\uff0c\u957f\u7740\u767d\u8272\u7684\u957f\u7fbd\u6bdb\u548c\u53ef\u6015\u7684\u9ed1\u8272\u8138\u5b54\uff0c\u7ad9\u7acb\u50cf\u4eba\u7c7b\u4e00\u6837\u3002\u975e\u5e38\u9ad8\u5927\uff0c\u7fbd\u6bdb"} +{"id": "8003711", "video_name": "b4761edb-02b2-55c3-a2ac-e0d1dd33ea7d", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u8389\u8389\u5728\u4e00\u6761\u72ed\u7a84\u7684\u5c0f\u8def\u4e0a\u8e66\u8e66\u8df3\u8df3\u65f6\u542c\u5230\u4e86\u4e00\u58f0\u8f7b\u67d4\u7684"} +{"id": "3005638", "video_name": "88a156fe-26be-5e7c-ba14-2842b9d36749", "text": "\u4e00\u4e2a\u9ad8\u6210\u5c31\u548c\u975e\u5e38\u6210\u529f\u7684\u7537\u4eba\u5f62\u8c61"} +{"id": "4003790", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "\u521b\u9020\u4e00\u4e2a\u65b0\u7684\u98ce\u683c\u7684\u7ea2\u8272\u4e09\u7ef4\u5361\u901a\u9e1f\uff0c\u4f5c\u4e3a\u4e00\u540d\u5e26\u6709\u4eba\u7c7b\u624b\u548c\u76f8\u673a\u6216\u9ea6\u514b\u98ce\u7684\u8bb0\u8005\u3002"} +{"id": "7003932", "video_name": "d96a03a3-d52c-5229-a6bf-6331396304e1", "text": "\u68d5\u8272\u7684\u7a97\u5e18\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc\u98de\u626c\u3001\u6447\u6446\u548c\u79fb\u52a8\u3002"} +{"id": "1004149", "video_name": "4cd980a1-badd-59d6-93d4-703c6c677aa6", "text": "\u4e00\u540d\u5973\u58eb\u8d70\u8fdb\u4e86\u529e\u516c\u5ba4\u3002"} +{"id": "0003197", "video_name": "391cdbf9-a6db-5788-ba20-8ea8fc6cc2e4", "text": "\u9644\u8fd1\u7684\u9b3c\u5c4b\u65c1\u591c\u665a\u6709\u4e00\u7247\u6811\u6797\uff0c\u6ee1\u662f\u6811\u6728\u548c\u58f0\u54cd\u3002"} +{"id": "8003515", "video_name": "151cac33-40bd-5f2e-9ce7-f44d7418a7b5", "text": "\u521b\u610f\u89c6\u9891\u5173\u4e8e\u57c3\u53ca\u7684\u795e\u7947"} +{"id": "6002095", "video_name": "7cdd37b8-a95e-5fa2-aaf3-66f10d6fdcab", "text": "\u4e00\u53ea\u5e74\u8f7b\u7684\u624b\u4f1a\u53d8\u76b1\uff0c\u76ae\u80a4\u8131\u843d\u9732\u51fa\u9aa8\u5934\u3002"} +{"id": "7002007", "video_name": "98ccb691-d01b-5a23-94d6-ab665c2960bd", "text": "\u7ef4\u4eac\u8239\u4ee580\u5e74\u4ee3\u52a8\u753b\u98ce\u683c\u5728\u6d77\u4e0a\u822a\u884c\uff0c\u4f7f\u7528VHS\u6ee4\u955c\uff0c\u5faa\u73af\u64ad\u653e\uff0c\u6781\u5176\u8be6\u7ec6\u3002"} +{"id": "1006694", "video_name": "7aace536-a8d8-5dce-87b0-a4219360cc9f", "text": "\u5728\u68ee\u6797\u4e2d\u7684\u730e\u4eba\u624b\u4e2d\u62ff\u7740\u4e00\u628a\u67aa\uff0c\u770b\u5230\u4e00\u53ea\u84dd\u8272\u7684\u9e1f\u5c31\u5f00\u59cb\u8ffd\u8d76\u3002"} +{"id": "2003898", "video_name": "045eb861-87d3-53a4-9586-15c5fb80672e", "text": "\u9e1f\u513f\u5728\u4e00\u7247\u5e72\u67af\u7684\u68ee\u6797\u4e0a\u65b9\u98de\u7fd4\uff0c\u5730\u9762\u4e5f\u5341\u5206\u5e72\u71e5\uff0c\u4e2d\u5348\u708e\u70ed\u7684\u9633\u5149"} +{"id": "0005678", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "\u7537\u5b69\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\u4e0a\u4e86\u8239\u3002"} +{"id": "1004056", "video_name": "4b2fe7a7-01e7-5b53-961d-d330feb28549", "text": "\u7f8e\u4e3d\u7684\u5973\u6027\uff0c\u5c71\u95f4\u6e56\u6cca\uff0c\u9c7c\u7c7b\uff0c\u9cb8\u9c7c\u548c\u9cc4\u9c7c\u5728\u6df1\u6d77\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0006003", "video_name": "24db47c3-738d-5080-9f45-16c55bb37a72", "text": "\u4ece\u690d\u7269\u7684\u89c6\u89d2\u770b\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u66f4\u591a\u7684\u884c\u661f\u548c\u4e00\u4e9b\u7eff\u8272\u548c\u7c89\u8272\u7684\u661f\u4e91\uff0c\u5728\u6444\u50cf\u673a\u7684\u7f29\u653e\u4e0b\u3002\u4fe1\u606f\uff1a\u963f\u5c14\u4ee3"} +{"id": "2005233", "video_name": "533ac2ed-3489-56cc-9362-ca213336d289", "text": "\u751f\u6210\u4e00\u4e2a\u573a\u666f\uff0c\u5c55\u793a\u4e00\u4e2a\u623f\u5730\u4ea7\u7ecf\u7eaa\u4eba\u4e0e\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u8c08\u8bba\u4ed6\u4eec\u5174\u594b\u5730\u8d2d\u4e70\u7b2c\u4e00\u5957\u623f\u5c4b\u7684\u4e8b"} +{"id": "2005028", "video_name": "f73a5e3d-f10e-52a7-b504-7acfa9215b81", "text": "\u6708\u7403\u4e0a\u53ef\u89c1\u7684\u9ed1\u8272\u65cb\u8f6c\u7684\u571f\u5730\uff0c\u9ed1\u6697\u6050\u6016\u795e\u79d8\u98ce\u683c\u65e0\u671b\u3002"} +{"id": "2007788", "video_name": "62f86273-bcfb-57f6-a976-1a022cec957a", "text": "\u4e3a\u6e38\u620f\u4e2d\u9500\u552e\u5546\u54c1\u521b\u9020\u4e00\u4e2a\u6f02\u4eae\u7684\u8bbe\u8ba1\u3002"} +{"id": "3005121", "video_name": "78891152-d800-5f1f-a650-217843831ff4", "text": "\u4f7f\u7528\u591a\u5143\u5b87\u5b99\u7684\u65e0\u9650\u624b\u5957\uff0c\u521b\u4f5c\u51fa\u970d\u9ed8\u76843D\u9ed1\u6697\u5947\u5e7b\u8d85\u73b0\u5b9e\u7ec6\u8282\u4e30\u5bcc\u7684\u6770\u4f5c\uff0c\u5206\u8fa8"} +{"id": "3006808", "video_name": "0f9cb453-a811-52e7-adce-dbf36ae42a6a", "text": "\u901a\u8fc7\u653e\u5927\u955c\u6d4f\u89c8\u5185\u90e8\u4e8c\u6218\u6f5c\u8247\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u5179\u7684\u9ed1\u767d\u7167\u7247\uff08\u62cd\u6444\u4e8e"} +{"id": "8003518", "video_name": "cc4407b9-d306-5316-935c-aa1c603408a5", "text": "\u672a\u676560\u5e74\u5185\u5730\u7403\u53ef\u80fd\u4f1a\u906d\u53d7\u5916\u661f\u4eba\u5165\u4fb5\u3002"} +{"id": "3005533", "video_name": "ae160b08-6a4d-5920-a4a9-bad5948ac526", "text": "\u4e00\u4e2a\u5750\u7740\u7684\u91ca\u8fe6\u725f\u5c3c\u4f5b\u5411\u516c\u4f17\u6f14\u8bb2\uff0c16:9\u52a8\u6001\u3002"} +{"id": "2003954", "video_name": "2a86184e-7ad1-508a-911e-ca7c7f0dd731", "text": "\u5728\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u7684\u98ce\u683c\u4e0b\uff0c\u4eba\u4eec\u5728\u96f7\u96e8\u4e2d\u8df3\u7535\u6ed1\u821e\u3002"} +{"id": "3004519", "video_name": "b3376783-6720-5852-ac00-fe4cd157e068", "text": "\u8fea\u58eb\u5c3c\u822c\u7684\u6c1b\u56f4\uff0c\u57ce\u5e02\u7684\u843d\u65e5\u666f\u8272\u3002"} +{"id": "2004384", "video_name": "53c14f5a-9f35-576d-89a6-623e254644c4", "text": "\u6751\u5e84\u7684\u96e8\u5b63\uff0c\u6709\u5f88\u591a\u98ce\u3002"} +{"id": "4004485", "video_name": "3a68a0be-c546-5d2c-85a3-5321dde12636", "text": "2049\u5e7410\u67081\u65e5\uff0c\u4e2d\u56fd\u56fd\u5e86\u9605\u5175\u3002"} +{"id": "1005292", "video_name": "6145f269-2da1-5aab-b94f-f38c2667ce97", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u4eba\u5f62\u673a\u5668\u4eba\u3001\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u8fd1\u666f\u9762\u90e8\u7279\u5199\uff0c\u7a7f\u8d8a\u7c7b\u4f3c\u4e8e\u94f6\u7ffc\u6740\u624b\u57ce\u5e02\u7684"} +{"id": "3003428", "video_name": "0b497c02-cf61-5bb1-ac1b-d9b44de6e102", "text": "\u670b\u53cb\u4eec\u4f9d\u9760\u624b\u7535\u7b52\u7a7f\u8fc7\u8ff7\u96fe\uff0c\u6295\u5c04\u51fa\u9634\u68ee\u3001\u53d8\u5e7b\u83ab\u6d4b\u7684\u5f71\u5b50\u3002"} +{"id": "0003433", "video_name": "3d6d73d3-367e-5ec1-9ba4-95807dfa5c07", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u4e86\u5ca9\u77f3\u4ece\u5c71\u8fb9\u6eda\u843d\u5230\u4e00\u6761\u6cbf\u7740\u5c71\u873f\u8712\u7684\u9053\u8def\u4e0a\u3002"} +{"id": "0006386", "video_name": "2b949eae-e443-5e46-ad7e-e0afbe40212b", "text": "\u6c49\u5821\u5305\u6700\u521d\u662f\u7528\u788e\u725b\u8089\u997c\u70e4\u5236\u800c\u6210\uff0c\u653e\u5728\u9762\u5305\u4e0a\u4f9b\u5e94\u3002"} +{"id": "8001603", "video_name": "b548cc01-edea-578c-837d-3670cf2a5fae", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u6570\u5b57\u7ed8\u753b\uff0c\u5934\u76d4\u7684\u9762\u7f69\u91cc\u6709\u5730\u7403\u7684\u5012\u5f71\u3002"} +{"id": "4002960", "video_name": "59ed97bd-d248-5cf3-831a-129beb461384", "text": "\u9700\u8981\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u5728\u9633\u5149\u4e0b\u751f\u957f\u7684\u89c6\u9891\u3002"} +{"id": "2003090", "video_name": "32e911f2-f95f-52c2-9b08-224dabdbcb90", "text": "\u7531\u6728\u5934\u5236\u6210\u7684\u8bdd\u6ce1\u6f02\u6d6e\u5728\u70df\u96fe\u4e2d\uff0c\u7eff\u8272\u7684\u80cc\u666f\u4ece\u4e00\u4fa7\u79fb\u52a8\u5230\u53e6\u4e00\u4fa7\u3002"} +{"id": "5001902", "video_name": "75534910-9d51-5340-b985-54490022768b", "text": "\u4e50\u9ad8\u5e7d\u9ed8\u3001\u6a21\u4eff\u3001\u6076\u641e\u3001\u7b11\u8bdd\u3001\u8bbd\u523a\u3001\u7b11\u58f0\u3001\u4ff1\u4e50\u90e8\u3001\u6709\u8da3\u7684\u95ee\u5019\u3001\u8f76\u4e8b\u3001\u73a9\u7b11"} +{"id": "8002496", "video_name": "83a9c388-2e53-537e-acb4-0ba3f1a12b06", "text": "\u6d77\u8482\u00b7\u514b\u6797\u5728\u821e\u53f0\u4e0a\u8df3\u821e\uff0c\u7136\u540e\u53d8\u6210\u897f\u8499\u00b7\u8003\u5a01\u5c14\uff0c\u518d\u53d8\u6210\u8c6a\u4f0a\u00b7\u66fc\u5fb7\u5c14\uff0c\u63a5"} +{"id": "8001566", "video_name": "735f819b-e112-54b0-8162-69686a76f534", "text": "\u51ac\u5b63\u76ae\u80a4\u62a4\u7406\u6280\u5de7\u56fe\u89e3"} +{"id": "7002409", "video_name": "705e0a09-81ff-5ca7-98d1-d6148d28d860", "text": "\u4e00\u4e2a\u7a77\u4eba\u5728\u8def\u4e0a\u770b\u5230\u4e86\u4e00\u628a\u4f1e\uff0c\u4ed6\u6361\u4e86\u8d77\u6765\u3002"} +{"id": "6003292", "video_name": "70d109dc-f66e-545d-9adf-58a92f3d7ad9", "text": "\u9053\u5fb7\u7684\u89c6\u89c9\u5448\u73b0\uff0c\u5c55\u793a\u5404\u79cd\u5177\u6709\u6311\u6218\u6027\u7684\u60c5\u5883\u548c\u5de7\u5999\u7684\u89e3\u51b3\u65b9\u6848\u3002"} +{"id": "2005158", "video_name": "3cfc0d77-8cf7-5961-975e-59b80669b253", "text": "\u4e00\u4e2a15\u79d2\u949f\u7684\u89c6\u9891\uff0c\u5730\u56fe\u4ece\u4e16\u754c\u7f29\u653e\u5230\u5e0c\u814a\uff0c\u7136\u540e\u7f29\u653e\u5230\u96c5\u5178\u3002"} +{"id": "3006922", "video_name": "18310aa5-b990-5c00-9cad-864ba635dd6e", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u623f\u95f4\u91cc\u7ec3\u4e60\uff0c\u4e00\u4e2a\u7537\u4eba\u542c\u7740\u8282\u62cd\u3002"} +{"id": "0003208", "video_name": "39400890-081b-5185-b750-0d15df8371e6", "text": "\u6d77\u6d6a\u6b63\u5728\u51b2\u5237\u4e00\u4e2a\u5df4\u5398\u5c9b\u6751\u5e84\u3002"} +{"id": "7004572", "video_name": "a3ec1151-47d9-5aea-99fc-258f7c3a0cb7", "text": "\u7528\u7b14\u5728\u7eb8\u4e0a\u624b\u5199\u3002"} +{"id": "7002856", "video_name": "250b2226-2377-550d-a34e-c3582b782379", "text": "\u91d1\u53d1\u5973\u5b69\u5750\u5728\u91ce\u9910\u684c\u65c1\u51dd\u89c6\u7740\u6811\u6797\uff0c\u6811\u6797\u5e95\u90e8\u6709\u4e00\u4e2a\u5c0f\u7cbe\u7075\u3002"} +{"id": "0005381", "video_name": "19cef012-202a-52f8-97cb-d17da70510a1", "text": "\u7535\u5f71\u8272\u5f69\uff0c\u6c99\u6f20\u4e2d\u6234\u7740\u9632\u6bd2\u9762\u5177\u7684\u7537\u4eba\u3002"} +{"id": "0006162", "video_name": "278d82aa-6c24-511e-88e4-9295b15426c8", "text": "\u5728\u68ee\u6797\u5c0f\u8def\u4e0a\uff0c\u7a7f\u7740\u4f8f\u5112\u670d\u88c5\u7684\u4f8f\u5112\u4eec\u62bd\u70df\u5e76\u9047\u5230\u4e86\u4e00\u8f86\u516c\u5171\u6c7d\u8f66\u3002"} +{"id": "0005452", "video_name": "1b019cba-4a81-564a-a89d-9d4d7e60820b", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u62ff\u7740\u6c14\u7403\u98de\u5411\u5929\u7a7a\u3002\u8d85\u7ea7\u903c\u771f\uff0c4K\u3002"} +{"id": "2004598", "video_name": "69b8658c-2396-5155-909a-58a1c97ac53e", "text": "\u4e00\u5f20\u660e\u4eae\u7684\u56fe\u50cf\uff0c\u4e0b\u7740\u95ea\u95ea\u53d1\u5149\u7684\u94bb\u77f3\uff0c\u9576\u5d4c\u5728\u629b\u5149\u7684\u91d1\u5c5e\u4e0a\uff0c\u5728\u5b8c\u7f8e\u7684\u9762\u90e8\u7279\u5f81\u548c"} +{"id": "0005188", "video_name": "16528058-7340-5e58-8112-be2ca55161ff", "text": "\u51ac\u5929\u91cc\uff0c\u732b\u8eba\u5728\u5730\u4e0a\u6253\u96ea\u5929\u4f7f\uff0c\u770b\u8d77\u6765\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "4004118", "video_name": "7aac0538-c4de-59f2-a6c6-c016a6874f2c", "text": "\u751f\u6210\u5e26\u6709\u80cc\u666f\u5c71\u7684\u6d77\u6ee9\u666f\u89c2\u3002"} +{"id": "8002566", "video_name": "95006df9-092d-5a89-9917-586e6c1a753a", "text": "\u5728\u5b89\u7b2c\u65af\u5c71\u8109\u4e2d\u4ee5\u7eb8\u827a\u672f\u98ce\u683c\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "3005125", "video_name": "f3e62029-3207-5462-bf21-f6ae8234162d", "text": "\u6781\u5176\u8be6\u7ec6\u7684\u9ad8\u6e05\u52a8\u6f2b\u7537\u6027\uff0c\u77ed\u53d1\u9ed1\u8272\u5934\u53d1\uff0c\u6234\u7740\u8033\u673a\u3002"} +{"id": "0006412", "video_name": "2bf28b58-9ebd-5ed3-8b66-89eb2bd85989", "text": "\u7f8e\u4e3d\u7684\u7a46\u65af\u6797\u52a8\u6f2b\u5973\u5b69\u6234\u7740\u7ea2\u8272\u7684\u5934\u5dfe\uff0c\u9762\u5bb9\u5149\u5f69\u7167\u4eba\uff0c\u4ee5\u6700\u4f73\u98ce\u683c\u4ea4\u8c08\u3002"} +{"id": "2005049", "video_name": "f435631d-404e-5417-a198-26146e1c93ce", "text": "\u7f8e\u4e3d\u7684\u5b69\u5b50\u770b\u7740\u65b0\u6708\u3002"} +{"id": "6002938", "video_name": "a15f5924-90b8-51ed-ab7e-3a10ee434127", "text": "Source sentence: \u9a91\u9a6c\u5954\u8dd1\u7684\u725b\u4ed4\u3002\u50cf\u7d20\u827a\u672f\u3002"} +{"id": "1006798", "video_name": "7c7d9cdd-2e64-5e62-b11a-4664204a9b37", "text": "\u4e00\u5ea7\u79d1\u5e7b\u5de5\u5382\uff0c\u6709\u5f88\u591a\u77e9\u9635\u5899\u548c\u5149\u675f\u95ea\u70c1\uff0c4K\u3002"} +{"id": "7004022", "video_name": "8497eeaf-d2a0-54d9-b1d8-2043b8748e01", "text": "\u6f29\u6da1\u822c\u7684\u989c\u8272\u548c\u5149\u8292\u5c06\u4ea8\u5229\u5e26\u5230\u4e86\u65b0\u7684\u4e16\u754c\u3002"} +{"id": "3005626", "video_name": "d59d3a42-c6fe-5272-8aa4-5f1c4acc0007", "text": "\u6eda\u6eda\u7684\u5c71\u4e18\u5728\u56db\u9762\u516b\u65b9\u5ef6\u4f38\uff0c\u8986\u76d6\u7740\u4e00\u5757\u5757\u90c1\u90c1\u8471\u8471\u7684\u7530\u91ce\u62fc\u7f1d\u3002"} +{"id": "7004000", "video_name": "c029227c-e3cd-5e28-814e-7248743fbbb3", "text": "\u6c7d\u8f66\u98de\u5165\u592a\u7a7a\uff0c4k\uff0chdr"} +{"id": "0003735", "video_name": "428e62f9-6657-5512-aab6-7ee877f11b43", "text": "\u4ece\u795e\u79d8\u7684\u963f\u6839\u5ef7\u6545\u4e8b\u5230\u4e16\u754c\u5404\u5730\u7684\u7075\u6027\u6545\u4e8b\uff0c\u74e6\u8fbe\u4e4c\u62c9\u8fde\u63a5\u5bfb\u6c42\u8005\u548c\u5148\u77e5\uff0c\u521b\u9020\u4e86"} +{"id": "6002937", "video_name": "dcab1c7d-e861-5dc6-9760-c3b733483046", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\uff0c\u957f\u53d1\u98d8\u98d8\uff0c\u5728\u6d77\u8c5a\u8eab\u8fb9\u51b2\u6d6a\u7ad9\u7acb\uff0c\u8d85\u5199\u5b9e\u5730\u88ab\u62c9\u8fdc\u3002"} +{"id": "5001111", "video_name": "4c16e4ec-b87b-5432-a5ea-397f00a7ce11", "text": "\u5973\u738b\u5750\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e0a\u548c\u72ee\u5b50\u4e00\u8d77\u3002"} +{"id": "1005717", "video_name": "69373ee0-85d8-5457-b693-a24880bc814b", "text": "\u90a3\u4e2a\u6f02\u4eae\u76846\u5c81\u5973\u5b69\u6b63\u5728\u6559\u5ba4\u91cc\u7684\u5b66\u6821\u957f\u6905\u4e0a\u548c\u540c\u5b66\u4eec\u4ea4\u8c08\u3002"} +{"id": "7004449", "video_name": "44c2ef30-3b1e-509f-b6e4-33de9ce9941c", "text": "\u6709\u660e\u4eae\u7684\u6708\u5149\uff0c\u623f\u5b50\u91cc\u5f88\u6697\u3002 \n\nSource sentence: I am looking forward to seeing you again soon. \n\n\u6211\u5f88\u671f\u5f85\u5f88\u5feb\u518d\u6b21\u89c1\u5230\u4f60\u3002"} +{"id": "1005246", "video_name": "608cf715-facd-53c4-89ad-eac5da73b8a2", "text": "\u4e00\u4e2a\u975e\u6d32\u5973\u6027\u7684\u6c34\u7cbe\u7075\uff0c\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u6c34\u4e0b\u6d1e\u7a74\u91cc\u62ff\u7740\u706b\u70ac\uff0c\u5468\u56f4\u661f\u661f\u70b9\u70b9\u3002"} +{"id": "4002256", "video_name": "0452fd71-743d-51f4-9ffd-c49d2a42b531", "text": "\u4e00\u80a1\u8f7b\u67d4\u7684\u5fae\u98ce\u5439\u8fc7\uff0c\u4e91\u6735\u5728\u98d8\u8361\uff0c\u4e00\u4f4d\u53e4\u4ee3\u4e2d\u56fd\u7684\u8bd7\u4eba\uff0c\u8eab\u7a7f\u5510\u4ee3\u670d\u88c5\uff0c\u4f18\u96c5\u5730\u7ad9\u5728"} +{"id": "3003804", "video_name": "e7ddffa9-a6d0-589a-9d00-e0800626a289", "text": "\u4e00\u5bb6\u4e09\u53e3\u642c\u51fa\u4e86\u4e00\u5ea7\u8001\u5f0f\u7ef4\u591a\u5229\u4e9a\u53e4\u5821\u91cc\u7684\u65b0\u5bb6\uff0c\u4f7f\u7528\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u865a\u5e7b\u5f15\u64ce5\uff0c\u4fdd\u6301\u8054\u7cfb\u3002"} +{"id": "6004900", "video_name": "97911c8a-dd61-5cd9-9b0d-25c4237763f0", "text": "\u4e00\u90e8\u5c55\u793a\u683c\u6d1b\u514b\u5de5\u4f5c\u539f\u7406\u76843D\u52a8\u753b\u3002"} +{"id": "0005630", "video_name": "1e6a9aae-2905-5c99-89f6-f24c1a61278d", "text": "\u98ce\u666f\u591a\u98ce\uff0c\u7d2b\u7f57\u5170\u5730\u5e73\u7ebf\u4e0a\u65b9\u6709\u84dd\u8272\u7684\u592a\u9633\uff0c\u9ec4\u8272\u548c\u7eff\u8272\u7684\u690d\u7269\u3002\u957f\u5bbd\u6bd4\u4e3a4:3\u3002"} +{"id": "2006828", "video_name": "5fabe377-e45b-5ad7-9733-d054e57e7e7f", "text": "\u60a8\u53ef\u4ee5\u4fe1\u8d56\u7684\u8d28\u91cf\uff0c\u76f4\u63a5\u9001\u5230\u60a8\u624b\u4e0a\u3002"} +{"id": "1006041", "video_name": "6ef80e6e-c792-57ea-8857-421ca843bf1b", "text": "\u4e24\u4e2a\u5b69\u5b50\u548c\u7238\u7238\u5728\u6d77\u6ee9\u4e0a\u73a9\u800d\u3002"} +{"id": "4003025", "video_name": "2d4ca78c-997c-5219-b35c-7583096aff5d", "text": "\u78be\u538b\u7684\u6d77\u6d6a DEVINITI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001524", "video_name": "6951235f-abfe-5592-a8d8-52795b6779b6", "text": "\u65e5\u843d\u65f6\u5206\u7684\u6d77\u6ee8\u5c0f\u57ce\u98ce\u666f\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\u5b57\u4f53\uff09 \u7559\u8a00\uff1aSara"} +{"id": "2005109", "video_name": "a54a552c-6649-56a8-bda2-7551f904b58a", "text": "\u670b\u53cb\u4eec\u8fdb\u5165\u57ce\u5821\uff0c\u63a2\u7d22\u9ed1\u6697\u800c\u5c18\u571f\u98de\u626c\u7684\u8d70\u5eca\u3002"} +{"id": "3003937", "video_name": "c03f4fba-299b-5bad-9b5b-ad88c1e9371a", "text": "\u6050\u9f99\u5728\u96ea\u5c71\u4e0a\u5954\u8dd1\uff0c\u8fd1\u8ddd\u79bb\u8d85\u6e058K\u89c6\u89d2\u3002"} +{"id": "2004700", "video_name": "c4a99971-e876-59d3-9cfe-ce3a63a37389", "text": "\u8096\u50cf9:16\u7684\u70ed\u5e26\u7011\u5e03\u548c\u5f69\u8679"} +{"id": "4004477", "video_name": "d290021b-f236-5a84-b615-d8b11eee2283", "text": "\u5c0f\u62c9\u5e03\u62c9\u591a\u8ff7\u4f60\u8cb4\u8cd3\u72ac\u4ee52D\u98a8\u683c\u975e\u5e38\u53ef\u611b\u3002"} +{"id": "1003820", "video_name": "468f607c-2a67-5683-8235-d07ef017237b", "text": "\u66f4\u6362\u80cc\u666f\u4e3a\u661f\u591c\u3002"} +{"id": "0004575", "video_name": "0b69fbdc-52a3-5753-ae11-83f715b13932", "text": "\u8d85\u73b0\u4ee3\u9ad8\u79d1\u6280\u5b50\u5f39\u5934\u5217\u8f66\u5feb\u901f\u884c\u9a76\uff0c\u7531\u514b\u91cc\u65af\u00b7\u5361\u5f6d\u7279\u6267\u5bfc\u3002"} +{"id": "4003909", "video_name": "861826e6-a607-5ec8-801d-3e02d2cfe75d", "text": "\u6e38\u620f\u300a\u9b54\u517d\u4e16\u754c\u300b\u4e2d\u6ca1\u6709\u62a4\u7532\u7684\u5deb\u5996\u738b\u3002"} +{"id": "2007331", "video_name": "9fa50749-b14a-597c-a5a2-8d37f4d8b3ed", "text": "\u9ad8\u901f\u516c\u8def\u4e0a\u7684\u65e0\u4eba\u673a\u4fef\u89c6\uff0c\u6709\u6c7d\u8f66\u5728\u884c\u9a76\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1003281", "video_name": "3c5abc71-e806-5ede-ad91-0b3e8bd83dd8", "text": "\u90a3\u4e2a\u5973\u5b69\u5411\u6b63\u786e\u7684\u9053\u8def\u8d70\u53bb\u3002"} +{"id": "6004478", "video_name": "23540857-6f8b-5896-b1a7-fe61682cfb85", "text": "\u5438\u8840\u9b3c\u7ad9\u5728\u7231\u60c5\u4e4b\u524d\uff0c\u7ad9\u5728\u57ce\u5821\u5c01\u9762\u827a\u672f\u524d\u3002"} +{"id": "1005189", "video_name": "5f6c7d5d-5962-5f9b-b736-33b0ab5724c9", "text": "\u7231\u4e0e\u7f8e\u4e4b\u5973\u795e\u7ef4\u7eb3\u65af\u4e0e\u5468\u56f4\u7684\u4eba\u7fa4\u8df3\u821e\u3002"} +{"id": "7003981", "video_name": "7630b263-04a9-5508-a6e1-fb157f30d8de", "text": "\u98de\u673a\u5728\u8dd1\u9053\u4e0a\u6ed1\u884c\uff0c\u673a\u5934\u9ad8\u4e8e\u5730\u9762\uff0c3D\u5f71\u50cf\u3002"} +{"id": "2004981", "video_name": "fd3f674a-ff2e-5946-aa3c-83ea222754d1", "text": "\u5728\u6d77\u8fb9\u6709\u6e14\u6c11\u5728\u9493\u9c7c\u3002"} +{"id": "8003787", "video_name": "8d9ab6ef-8316-51ed-aa26-3a0e6e92ad7d", "text": "\u4e00\u4e2a\u9ed1\u53d1\u6234\u7740\u592a\u9633\u955c\u7684\u5e05\u6c14\u7537\u5b50\u5728\u8857\u4e0a\u8d70\u7740\uff0c\u770b\u7740\u76f8\u673a\u3002"} +{"id": "8002705", "video_name": "71bae1da-55c0-509e-baef-45ffa4f3e432", "text": "\u5728\u7a3b\u7530\u91cc\uff0c\u5979\u57cb\u4e86\u4e00\u676f\u9152\u3002"} +{"id": "6002521", "video_name": "4585e63c-5347-519e-ba73-a1c658531839", "text": "\u6d77\u6d0b\u7684\u5a01\u4e25\uff0c\u5730\u5e73\u7ebf\u4e0a\u7684\u65e5\u843d\u3002"} +{"id": "2005332", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "\u96ea\u4e2d\u884c\u8d70 (Font: MODERN)"} +{"id": "8002412", "video_name": "cd5e8adc-9fd9-5e38-9112-f4723fa4965c", "text": "\u508d\u665a\u65f6\u5206\u5efa\u7b51\u7fa4\u7684\u65bd\u5de5\u73b0\u573a\uff0c\u5de5\u4eba\u4eec\u6b63\u5728\u79bb\u5f00\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4k\u3002"} +{"id": "7003733", "video_name": "d4e5884b-9f4d-5e68-a2a2-3b8af219176d", "text": "\u4e00\u4f4d\u6210\u5e74\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u5728\u7a97\u8fb9\u5438\u70df\u3002"} +{"id": "3003571", "video_name": "e7bba89d-6f6d-59db-a004-cf33b9584a6e", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4e00\u4e2a\u60b2\u4f24\u7537\u5b69\u5728\u623f\u95f4\u91cc\u7684\u6545\u4e8b\uff0c\u53ef\u7231\u98ce\u683c\uff0c\u5343\u53d8\u4e07\u5316\u98ce\u683c\uff0c\u52a8\u753b\u3002"} +{"id": "3005010", "video_name": "49cea4fc-a1a5-5794-a568-f3586147e4ba", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u6e05\u6d01\u4e00\u53cc\u767d\u8272\u7684\u978b\u5b50\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u7740\u8fd9\u4e2a\u4eba\u79fb\u52a8\uff0c\u5c31\u50cf\u662f\u7b2c\u4e00\u89c6\u89d2\u3002"} +{"id": "4002156", "video_name": "98241fc6-7a3a-50a3-a60e-639b609e56c3", "text": "\u6c99\u9c81\u514b\u00b7\u6c57\u5728\u4e00\u8f86\u65e7\u5370\u5ea6\u5f69\u8272\u5361\u8f66\u4e0a\u505a\u4ed6\u8457\u540d\u7684\u59ff\u52bf\uff0c\u53cc\u81c2\u4f38\u5411\u4e24\u4fa7\uff0c"} +{"id": "3006779", "video_name": "1fed25cf-64cf-5fd3-8ab3-e343aea8cab1", "text": "\u4e2d\u56fd\u9f99\u5143\u7d20\u4e3b\u9898\u7684\u5ead\u9662\u666f\u89c2\u3002\u73b0\u4ee3\u827a\u672f\u96d5\u5851\uff0c\u8c61\u68cb\u55b7\u6cc9\uff0c\u53e0\u6c34\uff0c8K\u3002"} +{"id": "0006544", "video_name": "2e744475-bae5-50a1-9a2d-73bd4ab58319", "text": "\u4e00\u4e2a\u5b8c\u6574\u7684\u573a\u666f\u5c55\u793a\u4e86\u4e00\u56e2\u70df\u96fe\u805a\u5408\u6210\u4e86\u5229\u8389\u4e1d\u7684\u9762\u5b54\uff0c\u4ee5H.R.\u5409\u683c\u5c14\u7684\u827a\u672f\u98ce\u683c"} +{"id": "0004043", "video_name": "021143e1-7fa8-506d-a47f-704aa634d2ab", "text": "\u4e00\u53ea\u6d77\u9f9f\u53d8\u5f62\u6210\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\uff0c\u5177\u67098k\u7535\u5f71\u7ea7\u522b\u7684\u7167\u660e\u548c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002"} +{"id": "1004334", "video_name": "500bdba0-b891-50c4-b843-b77a7c6f96be", "text": "\u5973\u5b69\u5750\u5728\u66f4\u8863\u5ba4\u5730\u677f\u4e0a\uff0c\u6697\u8272\u8c03\uff0c\u9ed1\u8272\u8272\u8c03\uff0c\u957f\u767d\u889c\u5b50\uff0c\u8010\u514b\u889c\u5b50\uff0c\u767d\u8272\u8010\u514b\u889c\u5b50"} +{"id": "2005780", "video_name": "e09a5f56-8040-5373-93b7-990c438226e4", "text": "\u5927\u962a\u7684\u6668\u9727\uff0c\u7c89\u8272\u7684\u8272\u8c03\uff0c\u5947\u602a\u7684\u5929\u6c14\u3002"} +{"id": "0003827", "video_name": "4432591a-5f2d-51f8-b088-0419f591d394", "text": "\u4e00\u4e2a\u79ef\u6781\u7684\u7537\u4eba\u5728\u5065\u8eab\u623f\u953b\u70bc\u65f6\u51fa\u6c57\u4e86\u3002"} +{"id": "8003457", "video_name": "b8351c0e-227c-59eb-9807-d94e93e1fe68", "text": "\u592a\u9633\u7cfb\u6700\u521d\u7684\u5f62\u72b6\u4e0d\u89c4\u5219\u7684\u6ce2\u72b6\u7269\u7684\u8868\u73b0"} +{"id": "2004933", "video_name": "13b3b066-e1b1-5238-a8e7-388571ce0dbd", "text": "\u5c3d\u7ba1\u72ee\u5b50\u7ed9\u4e86\u8fd9\u56db\u4e2a\u826f\u597d\u7684\u4f4d\u7f6e\uff0c\u5176\u4ed6\u52a8\u7269\u5374\u79f0\u4ed6\u4eec\u4e3a\u4e00\u7fa4\u8c04\u5a9a\u8005\u3002"} +{"id": "1003925", "video_name": "48707493-6f2c-5140-8031-e28299262e64", "text": "50\u5c81\u7684\u5927\u536b\u6234\u7740\u53e3\u7f69\uff0c\u7a7f\u7740\u957f\u6b3e\u68d5\u8272\u8fde\u5e3d\u886b\uff0c\u4ece\u5730\u4e0a\u6361\u8d77\u4e86\u4ec0\u4e48\u3002"} +{"id": "4003272", "video_name": "466d4979-7d1c-5b68-8e43-4121368ad923", "text": "\u4e00\u4e2a\u975e\u5e38\u5927\u7684\u8239\u505c\u9760\u5728\u6e2f\u53e3\uff0c\u6709\u5927\u91cf\u7684\u65c5\u5ba2\u4e0a\u8239\u3002"} +{"id": "0004460", "video_name": "096af8eb-7c37-5ff0-8514-8194d325cf67", "text": "\u91cd\u5e86\u4e24\u6c5f\u591c\u666f\u57281990\u5e74\u4ee3\u3002"} +{"id": "2004137", "video_name": "0e0b9e17-81ed-5978-ac20-18efb0f8d482", "text": "\u5929\u7a7a\u4e2d\u5145\u6ee1\u4e86\u706b\u7130\uff0c\u4eba\u4eec\u56db\u5904\u9003\u907f\u5bfb\u627e\u63a9\u62a4\u3002"} +{"id": "8003409", "video_name": "8c902ffa-091f-5360-85c8-91cce5d6bdf1", "text": "\u9b54\u9b3c\u7684\u5f62\u8c61\u5c55\u793a\u4e86\u4e0a\u4e0b\u4e00\u81f4\u7684\u539f\u5219\u3002"} +{"id": "3006693", "video_name": "8d924ed5-a958-5d10-88a5-1978dd67fc86", "text": "\u5e74\u8f7b\u5973\u5b50\u79cd\u690d\u690d\u7269\u548c\u6811\u6728\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8003831", "video_name": "4ca58185-d318-5671-afbe-eed7311dd4ae", "text": "Melstroy\u5728Efil\u5854\u7684\u5c4b\u9876\u4e0a\u65cb\u8f6c\u7740Sweet Bonanza\u8001\u864e\u673a\u3002"} +{"id": "2003679", "video_name": "7ddf9439-2749-5947-89e9-45019d038810", "text": "\u8759\u8760\u4fa0\u5728\u591c\u91cc\u7684\u96e8\u4e2d\uff0c\u6162\u52a8\u4f5c\u5730\u7ad9\u5728\u574f\u4eba\u9762\u524d\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u5bbd\u5e7f\u7684\u753b\u9762\u3002"} +{"id": "2007803", "video_name": "4cf32587-1ff0-5576-a6dd-33e9336f3fb5", "text": "\u6211\u7528\u53c9\u5b50\u6316\u8d77\u901a\u5fc3\u7c89\uff0c\u601d\u8003\u7740\u3002"} +{"id": "2006373", "video_name": "7ca58ef0-b137-5e9a-aeff-8ac3659beee8", "text": "\u4eba\u7c7b\u8fdb\u5316\u7684\u6f2b\u957f\u6cb3\u6d41\u3002"} +{"id": "5001638", "video_name": "bf5c8981-52b6-5c53-8e31-c17e8e6e2a20", "text": "\u5728\u4e00\u4e2a\u57ce\u5e02\u91cc\u6218\u6597\u7684\u7ea2\u53d1\u5973\u5b69\uff0c\u50cf\u300a\u6211\u7684\u82f1\u96c4\u5b66\u9662\u300b\u4e00\u6837\uff0c\u4e0e\u602a\u7269\u4f5c\u6218\u3002"} +{"id": "5001523", "video_name": "57ea058d-e20e-5cbe-bb0c-e9edb3ed7137", "text": "\u4e00\u540d\u7537\u5b50\u5728\u96e8\u4e2d\u6cbf\u8857\u5954\u8dd1\uff0c\u4eba\u4eec\u770b\u7740\u4ed6\u3002"} +{"id": "1005922", "video_name": "6cca4c28-9775-5b66-92b3-e982f6733b33", "text": "\u4e00\u53ea\u5e74\u8f7b\u7684\u91d1\u8272\u6df7\u79cd\u72d7\u7ad9\u5728\u4e00\u7247\u5c0f\u732b\u7684\u7530\u91ce\u4e0a\uff0c\u8df3\u7740\u53cc\u817f\u821e\u8e48\u3002\u4ed6\u5fae\u7b11\u7740\uff0c"} +{"id": "2007496", "video_name": "f53d16b5-d76f-532b-9d55-1f80331819d6", "text": "\u4e9a\u9a6c\u900a\u52a8\u7269\u56ed\u5b8c\u5168\u81ea\u7136\u4e14\u9ad8\u54c1\u8d28\u3002"} +{"id": "3003289", "video_name": "7c126652-83fc-56df-8e86-36607c708a01", "text": "\u73e0\u7a46\u6717\u739b\u5cf0\u4e0a\u7a7f\u7740\u51ac\u88c5\u7684\u732b\u3002"} +{"id": "6002029", "video_name": "22dd8e61-11a3-5f50-a44f-7bc819229292", "text": "\u767d\u8272\u7684\u5927\u4f17\u9ad8\u5c14\u592b7\u7a7f\u8fc7\u4e86\u62c9\u65af\u7ef4\u52a0\u65af\u3002"} +{"id": "3003241", "video_name": "8d7e108d-2d73-5651-8357-ed0de9af8070", "text": "\u73b0\u5b9e\u7684\u5c71\u4e2d\u6e56\u6cca\u5b81\u9759\u3002"} +{"id": "4004330", "video_name": "5d96ae78-9ea1-5c85-b8fe-246af2a70aa6", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u543b\u4e86\u4e00\u540d\u8b66\u5bdf\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd"} +{"id": "0005723", "video_name": "202c461c-bba9-5bdc-8e5b-a8f7498bd74e", "text": "\u4e00\u8258\u88ab\u9057\u5f03\u7684\u5b87\u5b99\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\uff0c\u95ea\u70c1\u7740\u5149\u8292\uff0c\u9ed1\u6d1e\u96a7\u9053\u3002"} +{"id": "8003875", "video_name": "3fd67d1d-3212-5773-9204-39dfb3f638d5", "text": "\u4e00\u7fa4\u52a8\u7269\u5728\u665a\u4e0a\u56f4\u7740\u4e00\u53ea\u5927\u8c61\uff0c\u7b49\u5f85\u5927\u8c61\u8bb2\u6545\u4e8b\u3002"} +{"id": "4004984", "video_name": "2424dc55-24e9-5390-ae4c-8cf668ec25e3", "text": "\u673a\u5668\u4eba\u5728\u5efa\u9020\u4e00\u53f0\u5927\u578b\u8ba1\u7b97\u673a\u3002"} +{"id": "1006784", "video_name": "7c52854f-c50f-5730-881c-bba7abacfc3b", "text": "\u9ec4\u8272\u7684\u4e00\u8f86F1\u8d5b\u8f66\uff0c\u4e0a\u9762\u6709\u7070\u8272\u5b57\u4f53\u5199\u7740\u52b3\u4f26\u65af\u3002"} +{"id": "1006318", "video_name": "739b18d9-0018-5624-83ef-7a4af80420cf", "text": "\u73bb\u7483\u7403\u91cc\u7684\u53ef\u7231\u5c0f\u732b\u54aa\n\nSource sentence: I am studying Chinese language and culture. \n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "7003068", "video_name": "14f8eae8-8433-5d4f-ae2e-15534744f8cc", "text": "\u4e00\u4f4d\u8425\u517b\u5e08\u5fcd\u8005\u57283D\u52a8\u753b\u4e2d\u4e0e\u4e0d\u5065\u5eb7\u98df\u54c1\u4f5c\u6597\u4e89\u3002"} +{"id": "7002682", "video_name": "dad674dd-b44a-515e-bd2f-0208e60d9713", "text": "\u62ac\u8d77\u76f8\u673a\u62cd\u7167\u3002 \u4fe1\u606f\uff1a2024\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "8001392", "video_name": "5244ddeb-4159-5314-81bb-8e95b8ab34d5", "text": "\u773c\u775b\u95ea\u70c1\u7740\u6e29\u6696\u7684\u5149\u8292\uff0c\u72b9\u5982\u955c\u5b50\u822c\u53cd\u5c04\u51fa\u7231\u610f\u3002"} +{"id": "7003678", "video_name": "26a1ed93-105d-5cb9-8c6e-8a90aca79659", "text": "\u72ee\u5b50\u6012\u543c\u7740\u770b\u7740\u6444\u50cf\u673a\uff0c\u5915\u9633\u548c\u96e8\uff0c\u611f\u89c9\u4e0d\u5b89\u3002"} +{"id": "3005028", "video_name": "e39c00e9-678e-58a5-b4f0-cf9490e2f633", "text": "\u6211\u4eec\u9762\u524d\uff0c\u6709\u5341\u4f4d\u795e\u7947\u7ad9\u5728\u5965\u6797\u5339\u65af\u5c71\u9876\uff0c\u4ed6\u4eec\u795e\u5723\u7684\u8eab\u59ff\u4ee4\u4eba\u8083\u7136\u8d77\u656c\u3002\u5728\u4ed6\u4eec\u4e4b\u540e"} +{"id": "1004774", "video_name": "584dd459-431d-5413-b1a9-9701fc56b4af", "text": "\u4e00\u53ea\u91ce\u751f\u52a8\u7269\u6f2b\u6b65\u5728\u843d\u65e5\u4e2d\u3002"} +{"id": "3003378", "video_name": "e65bd7e0-45c7-5864-88c8-bd8c22f6bc5a", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u548c\u65af\u7279\u5170\u5947\u535a\u58eb\u5728\u6cf0\u5766\u661f\u7403\u4e0a\u8fdb\u884c\u6218\u6597\uff0c\u591c\u665a\u3002"} +{"id": "0005688", "video_name": "1f726cfc-ed6d-5cb0-b472-697e025aaeac", "text": "\u900f\u8fc7\u4e00\u4e2a\u5c0f\u5c0f\u7684\u9ed1\u6697\u6d1e\uff0c\u671b\u89c1\u6674\u6717\u7684\u84dd\u5929\u3002"} +{"id": "6004912", "video_name": "5ad33bae-e925-55b5-afc9-70ddfb8a3d96", "text": "\u4e00\u53ea\u72fc\u7ad9\u5728\u9ad8\u5ca9\u4e0a\uff0c\u5728\u65e5\u843d\u65f6\u88ab\u98ce\u5439\u52a8\u7740\u6bdb\u76ae\u3002"} +{"id": "4003432", "video_name": "af626e13-578d-5a6f-a8c5-d901639c2d0a", "text": "\u9e1f\u513f\u52a0\u5165\u4e86\u8fd9\u4e00\u52aa\u529b\uff0c\u5e26\u7740\u79cd\u5b50\u6765\u79cd\u690d\uff0c\u5b89\u5a1c\u96c5\u548c\u5b69\u5b50\u4eec\u60ca\u5947\u5730\u89c2\u770b\u3002"} +{"id": "6003720", "video_name": "0cc208f7-135e-5240-9e14-87503cd2a409", "text": "\u4e00\u5ea7\u5de8\u5927\u7684\u7279\u65af\u62c9\u7ebf\u5708\u72ec\u7acb\u5efa\u7b51\u7269\u4f4d\u4e8e\u5bc6\u96c6\u7684\u9713\u8679\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\u5fc3\uff0c\u5de8\u5927\u7684\u7535"} +{"id": "4003773", "video_name": "9931f8d3-1e59-5392-aad4-9a12452b07db", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u5f20\u7ebd\u7ea6\u7684\u80cc\u666f\uff0c\u4f46\u5982\u679c\u8fd9\u5ea7\u57ce\u5e02\u88ab\u9057\u5f03\u4e86\u3002"} +{"id": "1006428", "video_name": "759fd801-6b91-5bc4-8ee6-460bea22b15a", "text": "\u8bf7\u4e3a\u6211\u521b\u9020\u4e00\u526f\u706b\u661f\u98ce\u666f\uff0c\u5c31\u50cf\u4f60\u4ece\u7a97\u5916\u770b\u4e00\u6837\u3002"} +{"id": "8003638", "video_name": "a76be663-9df7-5712-ae45-c87d4f17692b", "text": "\u8001\u65e7\u76841900\u5e74\u5c0f\u9547\uff0c\u5728\u9ed1\u591c\u7684\u6050\u6016\u4e2d\u6563\u53d1\u51fa\u795e\u79d8\u7684\u6c1b\u56f4\u3002\u6444\u50cf\u673a\u79fb\u5411\u4e00\u680b\u4ecd\u6709\u706f\u4eae"} +{"id": "4004361", "video_name": "be28f35d-2212-56f2-8b35-72afe9a99132", "text": "\u5bb6\u4eba\u5728\u79cb\u65e5\u7684\u82b1\u56ed\u91cc\u6109\u5feb\u5730\u770b\u7740\u7a97\u5916\u3002"} +{"id": "0003151", "video_name": "381d1742-d004-577a-8dd4-684bc19c88e7", "text": "\u975e\u6d32\u5c0f\u6751\u843d\u7684\u5730\u7403\u4f4d\u7f6e\u3002"} +{"id": "0004016", "video_name": "019aae0a-ee2b-51c7-8887-f939a0705903", "text": "\u526a\u4e0b\u5154\u5b50\u5e76\u6dfb\u52a0\u7eff\u8272\u80cc\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002804", "video_name": "9240b3cd-d784-5fca-8148-02e185004388", "text": "\u968f\u7740\u683c\u62c9\u592b\u7684\u65c5\u7a0b\uff0c\u4ed6\u7684\u4f53\u578b\u6210\u4e3a\u4e86\u4f18\u52bf\u3002"} +{"id": "0004779", "video_name": "0f0ca273-33e7-54eb-83d0-3bb002b66041", "text": "\u661f\u7403\u5927\u6218\u573a\u666f\uff0c\u8fbe\u65af\u00b7\u7ef4\u8fbe\u62ff\u7740\u5149\u5251\uff0c\u903c\u771f\u7684\u7167\u7247\u3002\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002"} +{"id": "1006244", "video_name": "725bdd21-f7c0-5795-8ab4-b5087d8f7719", "text": "\u7f8e\u4e3d\u76841930\u5e74\u4ee3\u57ce\u5e02\u573a\u666f\uff0c\u7528\u5f69\u8272\u5448\u73b0\uff0c\u5c55\u793a\u4e86\u7816\u77f3\u5efa\u7b51\u548c\u884c\u4eba\u3002"} +{"id": "6003023", "video_name": "d60f3c86-65df-5e9b-a21e-97b6a4c9a250", "text": "\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u8fdb\u884c\u4e00\u573a30\u79d2\u7684\u6c7d\u8f66\u6bd4\u8d5b\u3002"} +{"id": "2004847", "video_name": "3ba540a8-c568-5cd0-8c21-8e84741465d5", "text": "\u706b\u5c71\u4e2d\u51fa\u73b0\u7684\u5929\u4f7f"} +{"id": "3006551", "video_name": "95bc02ab-ccb7-5051-8c8c-460b2a97d9d9", "text": "\u884c\u4e1a\u3001\u710a\u63a5\u3001\u6fc0\u5149\u3001\u5de5\u827a\u3001\u5927\u5385\u3002\u4fe1\u606f\uff1aEMK\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6003957", "video_name": "12239482-e445-590d-ae14-9a385885789e", "text": "\u4e00\u5ea7\u88ab\u9057\u5f03\u7684\u6050\u6016\u623f\u5b50\u5728\u9ed1\u6697\u7684\u6811\u6797\u4e2d\u591c\u665a\u71c3\u70e7\u7740\u7eff\u8272\u7684\u706b\u7130\u3002"} +{"id": "2007678", "video_name": "dccdedff-8bf2-5a23-bee1-d49cbc0d01a7", "text": "\u4e0b\u96e8\u5929\uff0c\u7ea6\u7ff0\u548c\u827e\u7c73\u8389\u5728\u4e00\u628a\u96e8\u4f1e\u4e0b\u3002"} +{"id": "1005274", "video_name": "60fd0abe-df92-59b3-ae28-7723bc3d9c17", "text": "\u9732\u8425\u8005\u5728\u4e00\u7247\u7a7f\u7740\u6cf3\u88e4\u7684\u7537\u4eba\u6c99\u6ee9\u4e0a\u3002\u4fe1\u606f\uff1aBERG ONZA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005540", "video_name": "1a4d5754-2483-570a-801d-6db54741b6dd", "text": "\u513f\u7ae5\u5177\u6709\u571f\u8457\u7279\u5f81\uff0c\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\uff0c\u72ec\u81ea\u7ad9\u5728\u71c3\u70e7\u7684\u68ee\u6797\u4e2d\uff0c\u773c\u795e\u5fe7"} +{"id": "5001278", "video_name": "fe5fb244-5b5e-5db6-9ed7-e09ce2f37560", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u548c\u4e00\u9897\u83e0\u841d\u804a\u5929\uff0c\u83e0\u841d\u7ecf\u5e38\u6447\u6643\u8eab\u4f53\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u4e54\u675c\u6d1b\u592b"} +{"id": "2005383", "video_name": "01ffd247-0cab-5580-84af-4b60b6da2c19", "text": "\u591c\u665a\u57ce\u5e02\u4e2d\u7684\u8001\u5e74\u592b\u59bb\u8df3\u821e\u3002"} +{"id": "2006461", "video_name": "15017150-05ed-5f27-ae69-4ebe0111e1ce", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u8bfb\u4e66\u65f6\u8ff7\u5931\u4e86\u81ea\u5df1\u3002"} +{"id": "2003643", "video_name": "17c2f9e8-b876-5275-be99-cadd2999c889", "text": "\u725b\u4ed4\u8d76\u7740\u4e00\u7fa4\u725b\u3002"} +{"id": "2006036", "video_name": "00f278ad-ada7-5001-b87e-a371202cd88f", "text": "\u673a\u5668\u4eba\u4e0e\u82f9\u679c\u9b3c\u8fdb\u884c16\uff1a9\u79fb\u52a8\u7684\u9762\u90e8\u6218\u6597\u3002"} +{"id": "3004968", "video_name": "d8af5991-575c-575d-88ae-fd91d47e6237", "text": "\u4e00\u6735\u7cdf\u7cd5\u7684\u4e4c\u4e91\uff0c\u5e26\u7740\u53ef\u6015\u7684\u96f7\u66b4\u548c\u9ed1\u6697\u7684\u4e91\u5c42\u5728\u57ce\u5e02\u4e2d\u7a7a\u8361\u8361\u7684\u98d8\u8361\u3002"} +{"id": "2006390", "video_name": "548ded9c-e0aa-5dce-be98-9dcabe2b2dd2", "text": "\u4e00\u53ea\u770b\u8d77\u6765\u5bb3\u6015\u7684\u9e3d\u5b50\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "1006482", "video_name": "7699502c-4314-5aa0-8eff-52890eaf7da8", "text": "\u4e00\u4e2a\u88ab\u68ee\u6797\u73af\u7ed5\u7684\u5c71\u8109\u8fb9\u4e0a\u7684\u5c0f\u9547\uff0c\u4e2d\u5fc3\u6709\u4e00\u5ea7\u57ce\u5821\u3002\u903c\u771f\u7684\u753b\u9762\uff0c\u7535\u5f71\u822c\u7684\uff0c8K\u3002"} +{"id": "2007718", "video_name": "b107f2ac-ef39-5a86-8d1b-6def5d8840b4", "text": "\u5b66\u751f\u4eec\u5728\u592a\u7a7a\u4e2d\u98de\u5f80\u53e6\u4e00\u4e2a\u7ef4\u5ea6\uff0c180\u5ea6\u6444\u50cf\u673a\u62cd\u6444\uff0c\u8272\u5f69\u9c9c\u8273\uff0c4K\u3002"} +{"id": "6004630", "video_name": "c623eda7-8b61-55b5-b3d2-46345373bb3a", "text": "\u4e00\u4e2a\u5341\u516d\u5c81\u7684\u7537\u5b69\u6b63\u5728\u770b\u89c1\u4e00\u4e2a\u5341\u4e94\u5c81\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u7537\u5b69\u7ad9\u5728\u8def\u4e0a\uff0c\u5973\u5b69\u5728\u5979\u5bb6\u7684\u5c4b\u9876\u4e0a\u3002\u5973\u5b69\u4e5f"} +{"id": "1004064", "video_name": "4b63497b-f321-5a60-bc8e-d7130e998ec4", "text": "\u8036\u7a23\u547c\u53ec\u4eba\u4eec\uff0c3D\u52a8\u753b"} +{"id": "5001877", "video_name": "36fab581-3fa6-596a-b399-be3d3541029c", "text": "\u9ed1\u6697\u4e0d\u7965\u7684\u8eab\u5f71\u5728\u63a2\u7d22\u4e00\u5ea7\u53e4\u8001\u5706\u5f62\u5e99\u5b87\u7684\u5e95\u90e8\uff0c\u903c\u771f\u3001\u7535\u5f71\u822c\u7684\u6050\u6016\u3002"} +{"id": "0004221", "video_name": "0550c352-f8e5-5cfe-afcc-e9d1752de2de", "text": "\u5e74\u8f7b\u4ebaAarav\uff0c\u5f53\u4ed6\u4eec\u5206\u4eab\u65e0\u58f0\u60c5\u611f\u65f6\uff0c\u4ed6\u4eec\u7684\u5fc3\u8df3\u52a0\u901f\u3002"} +{"id": "4003631", "video_name": "23b87a34-922f-5220-a79c-2ddf8c9de2f3", "text": "\u7334\u738b\u8173\u8e0f\u5f69\u96f2\uff0c\u624b\u6301\u91d1\u7b8d\u68d2\uff0c\u51fa\u73fe\u5728\u5929\u7a7a\u7684\u5bfa\u5edf\u4e4b\u4e0a\u3002"} +{"id": "4004532", "video_name": "95defa94-18a7-5d18-9b7b-8a8dce6b4eb2", "text": "\u4e0b\u8f7d\u6211\u4eec\u7684\u94b1\u5305\u6316\u77ff\u7a0b\u5e8f\uff0c\u5373\u53ef\u5f00\u59cb\u65e0\u9700\u6602\u8d35\u786c\u4ef6\u7684\u52a0\u5bc6\u8d27\u5e01\u6316\u77ff\u3002"} +{"id": "7004622", "video_name": "3288d5a4-c0fc-5c8f-b73d-43c2e47d800c", "text": "\u4e00\u7247\u85b0\u8863\u8349\u82b1\u7530\u4e2d\u592e\u6709\u4e00\u628a\u7c73\u8272\u6276\u624b\u6905\uff0c\u7f8e\u4e3d\u7684\u65e5\u51fa\u4ee5\u7535\u5f71\u98ce\u683c\u5448\u73b0\uff0c\u4eff\u4f5b\u662f"} +{"id": "6004224", "video_name": "c53ca638-0dbb-5f7e-a026-010b817b9ade", "text": "\u6e38\u8f6e\u505c\u9760\u5728\u540e\u9662\u7684\u6cf3\u6c60\u91cc\u3002"} +{"id": "7004470", "video_name": "dc75069e-c516-5772-9680-1f0786f9e99b", "text": "\u73b0\u4ee3\u7535\u8111\u548c\u4e00\u4f4d\u5927\u7ea650\u5c81\u7684\u5973\u6027\u6b63\u5728\u4f7f\u7528\u5b83\uff0c\u4ee5\u903c\u771f\u7684\u7167\u7247\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0004526", "video_name": "0a94ead2-b08e-5345-9924-26b41a0a67df", "text": "\u91cd\u578b\uff08\u6765\u81ea\u300a\u519b\u56e2\u8981\u585e2\u300b\uff09\u5403\u9e21\u5757\u3002"} +{"id": "7003396", "video_name": "75a0fe07-6f54-5c79-aa5d-b7f6a0c0e822", "text": "\u514b\u83b1\u5c14\u610f\u5fd7\u575a\u5b9a\u5730\u63e1\u4f4f\u65cb\u8f6c\u7535\u8bdd\uff0c\u9762\u5e26\u51b3\u5fc3\u8868\u60c5\uff0c\u80cc\u666f\u663e\u793a\u4e00\u4e2a\u6307\u793a\u51cc\u66683\u70b9\u7684\u65f6\u949f\uff0c\u7535\u5f71"} +{"id": "8002398", "video_name": "b6065217-ea02-5e34-a667-85419fe141b8", "text": "\u5730\u4e0b\u505c\u8f66\u573a\uff0c\u4ece\u5185\u90e8\u770b\uff0c\u9ec4\u8272\u80cc\u666f\u3002"} +{"id": "8003283", "video_name": "e9615fee-9d75-5ef4-a124-0651fc36b98c", "text": "Multan\u7684\u5730\u7406\u4f4d\u7f6e\u548c\u7279\u70b9\uff0c\u5982\u5176\u6c14\u5019\u3001\u6cb3\u6d41\u3001\u571f\u58e4\u3001\u7535\u5f71\u822c\u7684\u666f\u8272\u3001\u8fd0\u52a82\u3001UHD\u300164k\u3002"} +{"id": "3006890", "video_name": "6d1951c9-15cc-5f68-9783-e9b3d90d955a", "text": "\u65e5\u51fa\u65f6\uff0c\u4e00\u53f0\u7535\u8111\u7b14\u8bb0\u672c\u7535\u8111\u5750\u843d\u5728\u6d77\u6ee9\u4e0a\uff0c\u706b\u5c71\u4ece\u4e2d\u7206\u53d1\u3002"} +{"id": "1003192", "video_name": "3ab7baec-f998-5949-a37b-ffadde2a5264", "text": "\u535a\u7269\u9986\u3002\u4e00\u4e2a\u7537\u4eba\u8dd1\u5230\u5899\u4e0a\u7684\u4e00\u5e45\u753b\u524d\uff0c\u5411\u5b83\u6cfc\u6d12\u7ea2\u8272\u6cb9\u6f06\uff0c\u8840\u6d41\u6210\u6cb3\u5730\u6d41\u4e0b\u753b\u5e03\uff0c"} +{"id": "0003552", "video_name": "3f6b0b7e-dc95-54c3-b256-8e3224800ccd", "text": "\u4e00\u4e2a\u4eba\u653e\u5f69\u8272\u6c14\u7403\u5230\u5929\u7a7a\uff0c\u4f5c\u4e3a\u5728\u514b\u670d\u56f0\u96be\u65f6\u671f\u540e\u89e3\u653e\u548c\u5feb\u4e50\u7684\u884c\u4e3a\u3002"} +{"id": "7002816", "video_name": "b34df3c2-1647-58ca-ab8c-9a95c94af50a", "text": "\u52a8\u753b\u98ce\u683c\uff0c\u5bab\u5d0e\u9a8f\uff0c\u4e00\u4e2a\u5927\u7a97\u6237\uff0c\u96e8\u4ece\u7a97\u6237\u5916\u9762\u843d\u4e0b\uff0c\u5728\u96e8\u5929\uff0c\u53ef\u4ee5\u770b\u5230\u6d77\u666f\u3002"} +{"id": "8001222", "video_name": "62607f3a-08ee-5033-bd30-9308ee7750a0", "text": "\u4e00\u4e2a\u4eba\u5f62\u9f99\uff0c\u8eab\u7a7f\u76d4\u7532\u4f46\u6ca1\u6709\u5934\u76d4\uff0c\u9732\u51fa\u9f99\u9762\uff0c\u624b\u6301\u4e00\u53ea\u6563\u53d1\u5fae\u5f31\u795e\u5723\u5149\u8292\u7684\u72fc\u7259"} +{"id": "8001312", "video_name": "d06cbe00-8e9e-5229-af8e-69feff9800b4", "text": "\u808c\u8089\u8f66\u5728\u591c\u665a\u7684\u96e8\u4e2d\u884c\u9a76\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2003372", "video_name": "30f360b7-2bde-5578-8b3e-9757255e9ba0", "text": "\u7537\u5b69\u5b50\u4eec\u5728\u5403\u4e1c\u897f\uff0c\u6234\u7740\u592a\u9633\u955c\u3002"} +{"id": "5001529", "video_name": "fafa2595-be8b-53de-b3b0-f8910327a0cd", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u6280\u672f\u5728\u4e00\u4e2a\u6280\u672f\u5b9e\u9a8c\u5ba4\u4e2d\u3002"} +{"id": "1004344", "video_name": "50223269-e12e-5650-9fca-f646fe405923", "text": "\u5b69\u5b50\u4eec\u56f4\u6210\u4e00\u4e2a\u5706\u5708\uff0c\u7528\u597d\u5947\u548c\u6e34\u671b\u7684\u8868\u60c5\u4ef0\u671b\u7740\u661f\u661f\u3002"} +{"id": "7003510", "video_name": "bf288e93-6ddf-5086-a40b-d42ea7cee77b", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u624b\u6301\u6b66\u58eb\u5200\u65a9\u6740\u50f5\u5c38\u3002 \n\nSource sentence: The cat sat on the windowsill watching the birds fly by. \n\n\u732b\u5750"} +{"id": "6004972", "video_name": "1de9e868-799b-54ca-a72c-4d17201797f1", "text": "\u6982\u8ff0\u9884\u70ed\u70e4\u7bb1\u7684\u6b65\u9aa4\u3002"} +{"id": "6004504", "video_name": "bff3f956-d02b-5e5d-932b-e5abc99d705d", "text": "\u6240\u6709\u52a8\u7269\u90fd\u53ef\u4ee5\u4e92\u76f8\u4ea4\u6d41\u3002"} +{"id": "7003696", "video_name": "4edfe7df-f5a5-5ec6-9785-ed90fdbb20a2", "text": "\u5317\u4eac\u6545\u5bab\u7684\u52a8\u753b\uff0c\u5e27\u901f\u738729\u5e27\uff0c\u65f6\u957f8\u79d2\uff0c\u5c3a\u5bf816:9\u3002"} +{"id": "3006044", "video_name": "ed42fcbd-0a79-5214-895d-7fa48865b570", "text": "\u76ae\u514b\u65af3D\u52a8\u753b\u300a\u5b64\u72ec\u7684\u725b\u300b\uff0c\u4ee5\u519c\u573a\u4e3a\u80cc\u666f\uff0c\u753b\u8d284K\uff0c\u8272\u5f69\u7f24\u7eb7\u76843D\u52a8\u753b\uff0c\u5728\u7eff"} +{"id": "1004135", "video_name": "4ca45cd9-b4ad-5e84-8eea-6ced8c9707e3", "text": "\u6444\u50cf\u5934\u7a7f\u8fc7\u96e8\u6797\u690d\u7269\uff0c\u9999\u8549\u82b1\uff0c\u7f8e\u5473\u9f99\u8840\u6811\uff0c\u8549\u82b1\uff0c\u897f\u756a\u83b2\uff0c\u7761"} +{"id": "6002866", "video_name": "a53cb48d-5c97-5071-81be-7d48c381d0a5", "text": "\u4e00\u4e2a\u89c6\u9891\u6e38\u620f\uff0c\u4e3b\u89d2\u662f\u4e00\u4e2a\u5b89\u5353\u673a\u5668\u4eba\uff0c\u6700\u521d\u88ab\u521b\u9020\u51fa\u6765\u4e3a\u56fd\u5bb6\u7684\u519b\u961f\u670d\u52a1\uff0c\u4f46\u5728\u67d0\u4e2a\u65f6\u523b\u5b83\u83b7\u5f97\u4e86\u81ea"} +{"id": "7004980", "video_name": "37eb83bd-7ad2-5fd6-8918-ac12081849e0", "text": "\u4e00\u80a1\u5de8\u5927\u7684\u6c34\u6d41\u4ece\u77f3\u5934\u4e2d\u6d41\u51fa\uff0c\u56f4\u7ed5\u5728\u5c71\u5468\u56f4\u7684\u4eba\u4eec\u6765\u81ea\u53e4\u4ee3\u4ee5\u8272\u5217\u7684\u65f6\u4ee3\u3002"} +{"id": "2007671", "video_name": "2df13ed4-ddeb-5850-bf08-a09507218afa", "text": "\u4e00\u500b\u5b89\u975c\u7684\u793e\u5340\uff0c\u8857\u9053\u5169\u65c1\u6709\u623f\u5c4b\uff0c\u4eba\u884c\u9053\u4e0a\u6709\u6a39\u9ede\u7db4\u3002 \n\nSource sentence: The sun was setting behind the mountains,"} +{"id": "8003313", "video_name": "24148ca7-f136-56db-b379-d70f89d43ef0", "text": "\u55b7\u53d1\u7684\u706b\u5c71\u5728\u66b4\u98ce\u96ea\u4e2d\u55b7\u5c04\u51fa\u84dd\u8272\u7684\u751f\u7269\u53d1\u5149\u7194\u5ca9\u3002"} +{"id": "7003751", "video_name": "a510530d-aa43-50de-904b-44b4283fa600", "text": "\u4e00\u5e45\u5b81\u9759\u7684\u6751\u5e84\u573a\u666f\uff0cLily \u548c Max \u5728\u9633\u5149\u660e\u5a9a\u7684\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u5468\u56f4\u662f\u91ce\u82b1\uff0c\u4ed6\u4eec\u7684\u7b11"} +{"id": "8003559", "video_name": "cde160ec-4c88-52ff-bc5a-34aa290ef694", "text": "\u50cf\u73ab\u7470\u82b1\u74e3\u822c\u7684\u5934\u53d1\u3002\u5973\u4eba\u7728\u7728\u773c\u775b\u3002"} +{"id": "2005577", "video_name": "26f10413-e11b-5f02-8d0a-ee7182bfe032", "text": "\u5723\u8bde\u8001\u4eba\u5750\u5728\u529e\u516c\u684c\u4e0a\u5de5\u4f5c\u3002"} +{"id": "1006171", "video_name": "70ed184e-9436-550e-ba07-51ce296916d0", "text": "\u5728\u8302\u5bc6\u96e8\u6797\u7684\u4e2d\u5fc3\uff0c\u4e00\u5934\u9a74\u5b50\u7ad9\u5728\u4e00\u6761\u5b81\u9759\u7684\u4e1b\u6797\u6cb3\u6d41\u65c1\uff0c\u5b83\u5728\u90c1\u90c1\u8471\u8471\u7684"} +{"id": "2004766", "video_name": "23ac93b6-f334-5499-8975-e97842fdd5de", "text": "\u4e00\u628a\u53d7\u300a\u4e1c\u4eac\u98df\u5c38\u9b3c\u300b\u542f\u53d1\u7684Quinque\u5251\uff0c\u573a\u666f\u5728\u4e00\u95f4\u65e7\u65e5\u672c\u623f\u5c4b\u5185\u53d1\u751f\u8c0b\u6740\u3002"} +{"id": "7002616", "video_name": "e5394513-2c5b-5e70-b224-dcff3988a464", "text": "\u98de\u673a\u5e26\u7740\u4ed6\u548c\u673a\u7ec4\u8d77\u98de\uff0c\u547d\u4ee4\u4ed6\u4eec\u98de\u5f80\u58a8\u897f\u54e5\u3002"} +{"id": "8003771", "video_name": "5b682b11-964d-5456-87da-0781db06a057", "text": "\u521b\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u6355\u6349\u5915\u9633\u897f\u4e0b\u7684\u5f00\u9614\u6d77\u6d0b\uff0c\u5c55\u793a\u6d77\u6d6a\u8f7b\u8f7b\u6eda\u52a8\u7684\u666f\u8c61\uff0c\u4ee5\u53ca\u5fae\u98ce\u4e0e\u6d77\u6d6a"} +{"id": "5001081", "video_name": "db775b9f-3aff-59c0-96ee-79a926a0b3a5", "text": "\u7b49\u8ddd\u52a8\u753b\u89c6\u9891\u91c7\u7528\u6781\u7b80\u548c\u73b0\u4ee3\u5316\u7684\u8bbe\u8ba1\uff0c\u989c\u8272\u65b9\u6848\u4e3a\u67d4\u548c\u7684\u84dd\u8272\u3001\u7eff\u8272\u548c\u4e2d\u6027\u8272\u8c03\u3002\u4e24\u4e2a\u4eba\u63e1\u624b\uff0c"} +{"id": "4002806", "video_name": "0908b118-64f7-5c03-a910-6fd6a8794e1e", "text": "\u7ebd\u7ea6\u5e02\u7684\u591c\u665a\u5448\u73b0\u6f2b\u5a01\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "8002486", "video_name": "2cefbcfa-491e-5fde-9fde-64ee425de4b7", "text": "\u54e5\u65af\u62c9\u7528\u4ed6\u7684\u722a\u5b50\u8e29\u7740\u4e00\u8f86\u6c7d\u8f66\uff0c\u4ee5\u300a\u963f\u57fa\u62c9\u300b\u52a8\u753b\u7535\u5f71\u7684\u98ce\u683c\u3002"} +{"id": "7002751", "video_name": "a6cfc4bd-57a8-5237-a81e-5714c9db7422", "text": "\u8ba9\u8fd9\u53ea\u718a\u6d3b\u8fc7\u6765\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003581", "video_name": "41f69360-2ce9-56ad-adcc-780fed7bcb4b", "text": "\u73b0\u5b9e\u611f\u5341\u8db3\u7684\u98de\u673a\u649e\u5411\u8f7b\u77f3\u5ced\u58c1\uff0c\u80cc\u666f\u662f\u9c9c\u8273\u7684\u84dd\u5929\u3002"} +{"id": "2003961", "video_name": "ba239d5f-a049-58c5-ac3c-9db4cd05f9e2", "text": "\u6bc1\u706d\u7684\u661f\u7403\uff0c\u6f02\u6d6e\u7684\u661f\u8230\u6b8b\u9ab8\uff0c\u7ec6\u8282\u63cf\u7ed8\uff0c\u771f\u5b9e\uff0c8K\u3002"} +{"id": "3003234", "video_name": "f69bb9cb-2e06-56ac-b8f4-8b197f5c3e5f", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u51fa\u73b0\u5728\u68ee\u6797\u4e0a\u7a7a\u3002"} +{"id": "4002072", "video_name": "4f045173-ea00-528f-9585-c06e15a9395a", "text": "\u4e00\u4e2a16:9\u7684\u661f\u7cfb\u5f62\u6210\u7684\u8fdc\u666f\u8d85\u65f6\u7a7a\u6444\u5f71\u3002"} +{"id": "7004002", "video_name": "707fe569-e42b-56d6-b188-6d1b3dc51755", "text": "\u4ed6\u4eec\u5b66\u4e60\u5230\u771f\u6b63\u7684\u4e30\u5bcc\u4e0d\u5728\u4e8e\u7269\u8d28\u8d22\u5bcc\uff0c\u800c\u5728\u4e8e\u5171\u540c\u7684\u68a6\u60f3\u548c\u62b1\u8d1f\u5c06\u4e24\u9897\u5fc3\u7d27\u7d27\u8fde"} +{"id": "5001628", "video_name": "3689541e-ac62-5492-b6e0-e15a06b6139a", "text": "\u5deb\u5973\u4ece\u7d2b\u8272\u5730\u9762\u7684\u4f20\u9001\u95e8\u53ec\u5524\u51fa\u8d85\u903c\u771f\u7684\u9b3c\u602a\u548c\u7cbe\u7075\u3002"} +{"id": "0004055", "video_name": "0269b9b0-a401-55bf-9a44-7d0f976d5bc7", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u68a6\u5883\u6838\u5fc3\u8d858\u6beb\u7c73\u5f71\u7247\uff0c\u5c55\u73b0\u4e86\u9ec4\u8863\u738b\u7684\u514b\u82cf\u9c81\u98ce\u683c\uff0c\u8272\u8c03\u6e29"} +{"id": "1006911", "video_name": "7e614e3f-ffa6-55ea-9350-1b46c3726b98", "text": "\u6234\u7740\u58a8\u955c\u9a91\u7740\u6469\u6258\u8f66\u5728\u516c\u8def\u4e0a\u7684\u718a"} +{"id": "4004298", "video_name": "ba5daa45-de59-54b0-a094-1588b2e4b78a", "text": "\u9ad8\u6863\u9ea6\u5f53\u52b3\u4e13\u95e8\u4e3a\u5bcc\u4eba\u8bbe\u8ba1\u3002"} +{"id": "3006093", "video_name": "67b51d08-e659-54ec-aabc-ded74fa89b01", "text": "\u7531\u6f2b\u5a01\u548cDC\u6f2b\u753b\u7ed8\u5236\uff1a\u72fc\u4eba\u5207\u5272\u91d1\u5c5e\u706b\u8f66\u3002"} +{"id": "7002788", "video_name": "41beed58-7c1f-5713-9116-660052be232a", "text": "\u4e00\u4e2a\u53a8\u5e08\u5728\u6a21\u5757\u5316\u53a8\u623f\u505a\u996d\u3002"} +{"id": "0006575", "video_name": "2ed822e7-6c25-5147-a8fb-816dd28f60d0", "text": "\u753b\u9762\uff1a\u6444\u50cf\u673a\u6162\u6162\u5730\u626b\u8fc7\u963f\u5c14\u5351\u65af\u5c71\u8109\u4e0a\u7684\u65e5\u51fa\uff0c\u7f13\u6162\u5730\u62c9\u8fd1\u5230\u5ce1\u8c37\u4e2d\u7684\u4e00\u4e2a"} +{"id": "2003794", "video_name": "83f9ff73-7ab9-5501-96fa-9d355db1b010", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u9ad8\u8fbe\u673a\u5668\u4eba\u5728\u6218\u573a\u4e0a\u4e3e\u8d77\u4e86\u5b83\u7684\u624b\u81c2\u3002"} +{"id": "3004018", "video_name": "8bfe6d38-8da3-5afa-9d30-595ebf29f63b", "text": "\u5de1\u903b\u72ac\u7684Chase\u548cMarshall\u6b63\u5728\u591c\u95f4\u7684\u8857\u9053\u8ffd\u6355\u4e00\u53ea\u5927\u8001\u9f20\u3002"} +{"id": "1005039", "video_name": "5d295ae9-71c7-5d77-9aa1-fabbc3daeff4", "text": "\u5927\u7206\u70b8\u521b\u9020\u4e86\u5730\u7403\uff0c\u751f\u547d\u7efd\u653e\u3002\n\nSource sentence: I love you more than anything in the world. \n\u6211\u7231\u4f60\u80dc\u8fc7\u4e16\u754c\u4e0a\u7684\u4e00\u5207\u3002"} +{"id": "3004184", "video_name": "30f0c4db-967c-5464-8e77-68a414c43f48", "text": "\u4eca\u5929\uff0c\u5f53\u4f60\u51dd\u89c6\u7eb3\u7c73\u6bd4\u4e9a\u7684\u8d85\u73b0\u5b9e\u666f\u89c2\u65f6\uff0c"} +{"id": "2007945", "video_name": "99e4f977-7a6e-54a5-9561-91c0167cb0c4", "text": "\u6839\u636e\u63d0\u4f9b\u7684\u6587\u672c\u7ed8\u5236\u4e00\u5e45\u63cf\u7ed8\u4eba\u7c7b\u793e\u4f1a\u8fdb\u5316\u7684\u56fe\u753b\u3002\u5c55\u73b0\u539f\u59cb\u4eba\u6700\u521d\u5b64\u7acb\u65e0\u52a9\uff0c\u9010\u6e10\u805a\u96c6\u6210"} +{"id": "3003833", "video_name": "cf693647-2bbf-5408-89c0-8318c7609190", "text": "\u4e00\u4e2a\u7d2b\u8272\u7684\u5f00\u53e3\uff0c\u91cc\u9762\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4ed9\u5973\u3002"} +{"id": "2007567", "video_name": "d9a8b32a-2bf5-51d3-9a99-24c15fa16d49", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u4f4d\u8d2b\u7a77\u7684\u519c\u592b\u6765\u627e\u62c9\u7ef4\u6c42\u52a9\u3002"} +{"id": "1006201", "video_name": "71a10e85-b6d8-5f07-8614-b2524a66d8b3", "text": "\u7535\u5f71\u7684\uff0c\u8f66\u95f4\u91cc\u7684\u6728\u5320\u3002"} +{"id": "5001085", "video_name": "e40df704-5612-5bc1-acbe-897f3fe44936", "text": "\u738b\u5bb6\u536b\u7535\u5f71\u98ce\u683c\u3001\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u7684\u7235\u58eb\u9152\u5427\u6b4c\u624b\u3001\u70df\u96fe\u7f2d\u7ed5\u7684\u6c1b\u56f4\u3002"} +{"id": "6004562", "video_name": "405254f6-b520-5e34-9640-558da78dd9f2", "text": "\u7528\u65e5\u672c\u52a8\u753b\u98ce\u683c\u5c55\u793a\u7684\u89d2\u8272\uff0c\u7c7b\u4f3c\u4e8e\u300a\u661f\u9645\u725b\u4ed4\u300b\u3002\u4f7f\u7528\u4e8625\u6beb\u7c73\u7684\u677e\u4e0b\u955c\u5934\uff0c8K\u5206\u8fa8\u7387\u3002\u8272"} +{"id": "2003964", "video_name": "d6fc9e47-7cc1-5a8b-a73f-ecbbe0011f74", "text": "\u534e\u4e3d\u7684\u7eff\u8272\u548c\u91d1\u8272\u8d4c\u573a\u7b79\u7801\uff0c\u538b\u82b1\u7740\u4e09\u53f6\u8349\u8bbe\u8ba1\u3002"} +{"id": "1004725", "video_name": "57a308c7-aa27-562a-9ecb-1c53ba75809f", "text": "\u4eba\u5934\u662f\u6c34\u6bcd\u7684\u4eba\u5728\u6b8b\u9177\u4e3b\u4e49\u573a\u666f\u4e2d\uff0c\u8d85\u903c\u771f\u3001\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u9ed1\u6697\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c4K\u3002"} +{"id": "1006843", "video_name": "7d1886cc-a334-5a41-9af6-8b88b038cf08", "text": "\u81ea\u7531\u57ce\u88ab\u4e00\u5ea7\u706b\u5c71\u6467\u6bc1\u4e86\u3002"} +{"id": "0004130", "video_name": "03bc1f32-1279-587f-9152-824b6c4c8acc", "text": "\u5fae\u751f\u7269\u5728\u8611\u83c7\u65c1\u88ab\u62cd\u6444\u4e0b\u6765\uff0c\u79d1\u5e7b8K\u3002"} +{"id": "8001695", "video_name": "0702ddac-5cbd-54ce-80a9-8835b469403b", "text": "\u4e00\u5bb6\u4eba\u5728\u5ba2\u5385\u89c2\u770b\u7535\u89c6\u65b0\u95fb\u3002"} +{"id": "0003684", "video_name": "41a936e9-1e23-572a-90da-1568301a5f4e", "text": "\u4e00\u4e2a\u5c0f\u578b\u5916\u661f\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u6574\u4e2a\u753b\u9762\u90fd\u88ab\u5b83\u5360\u636e\u3002\u9ed1\u6697\u7684\u592a\u7a7a\u80cc\u666f\u4e0a\u6709\u706b\u5149\u5728\u98de"} +{"id": "3005083", "video_name": "88de5ac0-3146-5179-9289-81008c624f99", "text": "\u963f\u5bcc\u6c57\u6218\u6597\u3002\u89c6\u989140\u79d2\u3002"} +{"id": "1004820", "video_name": "59133582-d414-5c7a-9492-064503b3fc8b", "text": "\u4e08\u592b\u548c\u59bb\u5b50\u5728\u5bb6\u91cc\u804a\u5929\uff0c\u4e08\u592b\u54ed\u4e86\u3002"} +{"id": "1004088", "video_name": "4bb7a067-0e24-529a-ac1a-9257eba531a9", "text": "\u4fa7\u89d2\u5ea6\uff0c\u4e00\u4e2a\u5973\u5b69\u72ec\u81ea\u5750\u5728\u9ad8\u5c71\u9876\u7aef\uff0c\u957f\u53d1\u98d8\u626c\uff0c\u9762\u5bb9\u51dd\u601d\uff0c\u5915\u9633\u7684\u989c\u8272\uff0c\u5fae\u98ce\uff0c\u592a\u9633"} +{"id": "0006248", "video_name": "29333a0f-b0fe-5da6-9d47-3d6e64ddea1d", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u89c2\u770b\u661f\u7a7a\u591c\u666f\uff0c\u6709\u5982\u7535\u5f71\u822c\u3002"} +{"id": "4003254", "video_name": "2b4f9aef-99ac-5096-937b-cf2d8c82bad2", "text": "\u62c9\u59c6\u6559\u66fc\u52aa\u5982\u4f55\u6b63\u786e\u8015\u4f5c\u540e\uff0c\u66fc\u52aa\u5411\u62c9\u59c6\u8868\u793a\u611f\u6fc0\u4e4b\u60c5\u3002"} +{"id": "1006648", "video_name": "79d35059-178e-51e3-9291-7f4653c3287e", "text": "\u5b9e\u9a8c\u5ba4\u5de5\u4eba\u4ece\u975e\u5e38\u8fd1\u7684\u8ddd\u79bb\u89c2\u5bdf\u5316\u5b66\u7269\u8d28\u7684\u74f6\u5b50\uff0c\u9644\u5e26\u6587\u4ef61\u3002"} +{"id": "7002786", "video_name": "a3ef4e63-ed02-593f-983e-3287bc149258", "text": "\u5805\u5c3c\u5730\u57ce\u5730\u9435\u7ad9\u65bc2014\u5e74\u958b\u901a\uff0c\u662f\u6e2f\u5cf6\u7dda\u897f\u7aef\u7684\u7d42\u9ede\u7ad9\uff0c\u8a72\u7dda\u5f9e\u5805\u5c3c\u5730\u57ce"} +{"id": "2004911", "video_name": "7d61c5c1-69d1-58ee-a204-b0c7aac2ad0a", "text": "\u4e00\u4e2a\u5de6\u773c\u6709\u75a4\u75d5\u7684\u7537\u4eba\u7684\u7167\u7247"} +{"id": "3006454", "video_name": "91319678-b819-50ab-b517-9a0af001e087", "text": "\u4e00\u53ea\u730e\u9e70\u5728\u96f7\u66b4\u5929\u6c14\u4e2d\u98de\u7740\u4e00\u53ea\u98ce\u7b5d\u3002"} +{"id": "8002928", "video_name": "15efe5b3-f30f-51f3-9902-15eba535b52b", "text": "\u5728\u4e00\u5ea7\u9ad8\u5c71\u8109\u4e4b\u95f4\uff0c\u6709\u4e00\u6761\u6cb3\u6d41\uff0c\u4e00\u4f4d\u6234\u7740\u8349\u5e3d\u7684\u8bd7\u4eba\u5728\u559d\u9152\u3002"} +{"id": "8001186", "video_name": "739b2d65-97d8-5193-914b-43bcbda944c1", "text": "\u4e00\u4f4d\u517d\u533b\u5728\u7ed9\u732b\u54aa\u670d\u836f\uff0c\u5c06\u836f\u4e38\u653e\u5165\u732b\u54aa\u53e3\u4e2d\u3002\u732b\u54aa\u88ab\u653e\u5728\u684c\u5b50\u4e0a\u3002\u6240\u6709"} +{"id": "2005552", "video_name": "b2e7ca54-24da-5a95-bd28-0cb8a559a4a5", "text": "\u4e00\u7fa4\u52c7\u6562\u8005\u8fdb\u5165\u8721\u50cf\u9986\u3002"} +{"id": "6004275", "video_name": "f18e4687-3c2b-5751-89e8-6367163fcb46", "text": "\u592a\u7a7a\u4eba\u5728\u5b87\u5b99\u4e2d\u65e0\u52a9\u5730\u6f02\u6d6e\uff0c\u76f8\u673a\u65cb\u8f6c\u3002"} +{"id": "0005065", "video_name": "140c766e-2fd0-520a-88fc-c5bc49150183", "text": "2024\u5e74\u7535\u5f71\u573a\u666f\u4e2d\u5e03\u9c81\u65af\u00b7\u97e6\u6069\u5728\u65e9\u4e0a5\u70b9\u9192\u6765\u7684\u7535\u5f71\u5267\u7167\u3002"} +{"id": "2006702", "video_name": "6f65e293-4cbd-5807-85a3-2216d9f8ba3d", "text": "3D\uff0c\u4e00\u4e2a\u5b69\u5b50\u5728\u5b66\u6821\u62ff\u7740\u4ed6\u7684\u4e66\u3002"} +{"id": "3005476", "video_name": "e8aed6f5-ce74-5cda-8ef8-f51baa9728ff", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u4e00\u53ea\u8001\u864e\u6597\u4e89\u7684\u7535\u5f71\uff0c\u771f\u5b9e\u7684\u52a8\u753b\u3002"} +{"id": "0006839", "video_name": "34023c06-e742-53d0-8533-cb6fa57a7b58", "text": "\u4e00\u67b6\u98de\u673a\u4ece\u706b\u5c71\u7206\u53d1\u4e2d\u9003\u8131\u4e86\u3002"} +{"id": "3006420", "video_name": "72995e64-48d1-5ec6-873b-7a9bb604a7a4", "text": "\u827e\u62c9\u62c9\uff0c\u4e00\u4f4d\u4f18\u7f8e\u800c\u5149\u5f69\u7167\u4eba\u7684\u4ed9\u5b50\uff0c\u62e5\u6709\u5f69\u8679\u822c\u7684\u7fc5\u8180\uff0c\u5979\u7528\u53d1\u5149\u7684\u624b\u5728\u7a7a\u4e2d"} +{"id": "2007506", "video_name": "6cceee8f-b718-57df-ab41-2df6bc031af3", "text": "\u7d20\u51c0\u7684\u9ed1\u767d\u753b\u9762\u548c1940\u5e74\u4ee3\u79d1\u5b66\u7eaa\u5f55\u7247\u822c\u7684\u4e25\u8083\u6c1b\u56f4\uff0c\u7537\u6027\u65c1\u767d\u5e26\u6709\u8de8\u5927\u897f\u6d0b\u53e3\u97f3\u5f15"} +{"id": "6003793", "video_name": "12ed19bb-efe6-5dd4-9c3d-92fd7e59e88c", "text": "\u5728\u7eff\u8272\u7684\u7530\u91ce\u4e0a\uff0c\u6709\u4e00\u53ea\u5f00\u5fc3\u7684\u725b\u5728\u5fae\u7b11\uff0c\u5468\u56f4\u6709\u51e0\u68f5\u6811\u548c\u4e00\u6761\u6cb3\u6d41\u3002\n\nSource sentence: I love to eat Chinese food,"} +{"id": "6004089", "video_name": "c385b8ad-2c29-5e5a-8c5a-1d13f89b24fe", "text": "\u7c73\u5a05\u3001\u91cc\u5965\u548c\u4f50\u4f0a\u7ee7\u7eed\u5728\u4e1b\u6797\u5c9b\u4e0a\u5192\u9669\uff0c\u60f3\u8c61\u529b\u7684\u529b\u91cf\u548c\u53cb\u8c0a\u7684\u9b54\u529b\u5c06\u6c38"} +{"id": "2003272", "video_name": "487fafb4-c54b-584f-ab80-ff86c0a4742b", "text": "\u98ce\u666f\u5982\u753b\u7684\u5c0f\u9547\u4e0a\u4f4f\u7740\u4e00\u4e2a\u597d\u5947\u7684\u5e74\u8f7b\u7537\u5b69\u53eb\u505aAlex\u3002"} +{"id": "7003433", "video_name": "c12ca6f9-3d3f-583d-9b54-3dbb426bde62", "text": "\u4ea4\u901a\u706f\u5728\u96e8\u8857\u4e0a\u95ea\u70c1\u3002"} +{"id": "4002394", "video_name": "0a24815a-3436-5edc-898d-14e0a8447464", "text": "\u4e2d\u5348\uff0c\u9a6c\u5c14\u4ee3\u592b\u7684\u6e14\u6c11\u5728\u6d77\u6ee9\u4e0a\u6355\u9c7c\u3002"} +{"id": "5001913", "video_name": "0b55c21c-ddbe-5628-b385-fff437dac541", "text": "\u8d5e\u8fbe\u4e9a\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\uff0c\u8fd0\u52a83\uff0c\u5feb\u901f\u653e\u5927"} +{"id": "2004539", "video_name": "35d3040c-9cfd-5175-9d88-5a6f0617593b", "text": "\u5728\u4e00\u573a\u6fc0\u70c8\u7684\u6218\u6597\u4e2d\uff0c\u4ed6\u4eec\u6467\u6bc1\u4e86\u63a7\u5236\u4e2d\u5fc3\u5e76\u627e\u51fa\u5982\u4f55\u505c\u7528\u6240\u6709\u673a\u5668\u4eba\u3002"} +{"id": "1005746", "video_name": "69c13fd7-911b-5105-8c6c-596c61dcfe76", "text": "\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u72fc\u9762\u5177\u7684\u7537\u4eba\u5728\u9634\u68ee\u7684\u68ee\u6797\u4e2d\u8d70\u8fd1\u3002"} +{"id": "0003795", "video_name": "4382da64-2c3f-5071-9152-8335177f26b1", "text": "Translation: \u5c0f\u9752\u86d9\u5728\u6c60\u5858\u65c1\u6b23\u8d4f\u6e05\u6f88\u7684\u6c34\u3002"} +{"id": "2007763", "video_name": "fa220415-d0fb-5fec-9978-7f82fd415bc5", "text": "\u54c8\u5229\u6ce2\u7279\u89d2\u8272\u7684\u8138\u5e94\u8be5\u66f4\u50cf\u7167\u7247\u4e0a\u7684\u8138\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004942", "video_name": "759fd801-6b91-5bc4-8ee6-460bea22b15a", "text": "\u8bf7\u4e3a\u6211\u521b\u9020\u4e00\u526f\u706b\u661f\u98ce\u666f\uff0c\u5c31\u50cf\u4f60\u4ece\u7a97\u5916\u770b\u4e00\u6837\u3002"} +{"id": "4003918", "video_name": "c84e2700-b2eb-509c-b4d5-aa4f35025fbc", "text": "\u4e00\u4e2a\u62e5\u6709\u767d\u8272\u7fc5\u8180\u7684\u5929\u4f7f\u5750\u5728\u82b1\u7530\u7684\u80cc\u666f\u4e2d\u3002"} +{"id": "2003153", "video_name": "65cdc2ec-2f7b-500e-8493-8159221a2d88", "text": "\u4e00\u4f4d\u65bc\u9ed1\u6697\u68ee\u6797\u4e2d\uff0c\u5e36\u8457\u52d5\u756b\u822c\u7684\u9aee\u7d72\u8d70\u8457\uff0c\u770b\u8457\u4f60\u7684\u5409\u535c\u529b\u5973\u5b69\u3002"} +{"id": "0005062", "video_name": "13fa768a-6d14-594f-be9b-c62ba2a2631e", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u548c\u7537\u5b69\u7684\u516c\u4ea4\u8f66\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "2005390", "video_name": "348589d2-95cf-552d-812d-b8ede5e339a7", "text": "\u516c\u56ed\u91cc\u6709\u4e00\u53ea\u5c0f\u767d\u732b\u3002"} +{"id": "0003575", "video_name": "3fc8d312-5a60-51f9-8188-d2e1b794e1ac", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5f00\u9614\u6d77\u6d0b\uff0c\u6709\u9cb8\u9c7c\u4ece\u6c34\u4e2d\u8dc3\u51fa\u3002"} +{"id": "8002201", "video_name": "b7a1f60f-530c-5865-8d6e-ec21743045e2", "text": "\u4e00\u679a\u5f7c\u8bfa\u65af\u4e09\u89d2\u5f62\u4ee5\u4ea8\u5229\u00b7\u5229\u6587\u65af\u7684\u98ce\u683c\uff0c\u5728\u72ed\u7a84\u7684\u4e34\u754c\u7a7a\u95f4\u4e2d\u6f02\u6d6e\u3002"} +{"id": "0004294", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "\u4e00\u67b6\u98de\u673a\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u5c31\u50cf\u5546\u4e1a\u822a\u7a7a\u516c\u53f8\u5e7f\u544a\u4e2d\u7684\u4e00\u6837\u3002"} +{"id": "5001331", "video_name": "59f095a3-73a7-5381-a244-b7541dcfeb94", "text": "\u4e00\u4e2a\u4eba\u8d70\u5411\u5341\u5b57\u67b6\uff0c\u505c\u5728\u5b83\u524d\u9762\u3002"} +{"id": "0003313", "video_name": "3b6e54ff-39a2-5c10-a378-72848ebdcfeb", "text": "\u5370\u5ea6\u653f\u5e9c\u529e\u516c\u5ba4\u6392\u4e86\u5f88\u957f\u7684\u961f\u3002"} +{"id": "2005935", "video_name": "e7a83ef6-befd-5ab4-a18d-9bc17a458b54", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u8d70\u5728\u8857\u4e0a\u3002\n\nSource sentence: I love you more than anything in this world. \n\u6211\u7231\u4f60\u80dc\u8fc7\u8fd9\u4e2a\u4e16\u754c\u4e0a\u7684\u4efb\u4f55\u4e8b\u7269\u3002"} +{"id": "0006113", "video_name": "26ced35c-1f85-5254-8bba-312f1bcbcc46", "text": "\u53e6\u4e00\u8fb9\uff0c\u4e00\u53ea\u7fe1\u7fe0\u8272\u7684\u9f99\u73a9\u95f9\u5730\u4f11\u606f\u7740\uff0c\u773c\u775b\u95ea\u70c1\u7740\u6dd8\u6c14\u7684\u5149\u8292\u3002"} +{"id": "1005123", "video_name": "5e73df83-d68e-5924-be69-3b46654c4e00", "text": "\u673a\u5668\u4eba\u5750\u5728\u684c\u524d\uff0c\u9762\u524d\u6709\u7535\u8111\u548c\u6570\u636e\uff0c\u8fd8\u6709\u4e00\u5f20\u5564\u9152\u56fe\u7247\u3002"} +{"id": "0004462", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "\u98ce\u683c\u50cfBjork\uff0c\u6444\u5f71\u5e08Nick Knight\uff0c\u65f6\u5c1a\u8bbe\u8ba1\u5e08Ric Owens\uff0c\u7535\u5f71\u5bfc\u6f14Jodorowski\u3002"} +{"id": "4004486", "video_name": "a32bf841-9ee1-5f4c-90cf-8627dbc06b84", "text": "\u4e8c\u6218\u4e2d\u9a7e\u9a76\u98de\u673a\u649e\u51fb\u6d77\u519b\u8230\u8247\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "7003275", "video_name": "254ef322-6bef-530c-af43-8c4f6605051e", "text": "\u5409\u7965\u7269\u5728\u6325\u624b\uff0c\u5fae\u98ce\u5439\u52a8\u7740\u6811\u53f6\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5001512", "video_name": "d1091aeb-8e38-5f36-affc-84156159ca6b", "text": "\u4e00\u540d\u5973\u5b69\u4ece\u5d29\u584c\u7684\u6865\u4e0a\u9003\u8dd1\u3002"} +{"id": "6003894", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "\u7f8e\u4e3d\u7684\u9521\u514b\u5973\u5b50\u5750\u5728\u5ca9\u77f3\u4e0a\u770b\u7740\u5927\u6d77\u3002"} +{"id": "6002118", "video_name": "964f3793-87d1-55dc-83f8-109a9e34baac", "text": "\u4ed6\u4eb2\u81ea\u4f1a\u89c1\u4ed6\uff0c\u5e76\u5e0c\u671b\u4ed6\u7684\u6291\u90c1\u75c7\u80fd\u591f\u5f97\u5230\u89e3\u51b3\u3002"} +{"id": "6004923", "video_name": "739e326e-ce5f-53ae-b8c8-79d8c7052392", "text": "\u7a7f\u7740\u767d\u8272\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u793c\u670d\u7684\u5973\u4eba\uff0c\u5728\u4e00\u4e2a\u5145\u6ee1\u591c\u8272\u82b1\u6735\u7684\u82b1\u56ed\u91cc\uff0c\u5728\u6ee1\u6708\u4e0b\u8df3\u821e\uff0c"} +{"id": "2006249", "video_name": "78aa2a26-3edb-5800-b462-da136eb44d2a", "text": "\u9e21\u5728\u4e0d\u95f4\u65ad\u7684\u9ad8\u6e29\u4e2d\u5bfb\u6c42\u5e87\u62a4\u3002"} +{"id": "8002837", "video_name": "d4bf185b-f6c9-5d8f-91c4-ecf3a9751444", "text": "4\u4e2a\u53ef\u7231\u7684\u65e5\u672c\u670b\u53cb\u89c2\u770b\u6e29\u54e5\u534e\u70df\u82b1\u8868\u6f14\uff01"} +{"id": "5001194", "video_name": "dd96c480-6089-57f2-969a-922313c55daa", "text": "\u5723\u8bde\u8001\u4eba\u7a7f\u7740\u7ea2\u8272\u793c\u670d\uff0c\u6234\u7740\u84dd\u7259\u8033\u673a\u5750\u5728\u6447\u6905\u4e0a\u3002"} +{"id": "2007144", "video_name": "3ac8070a-3218-5e17-ae35-2921cebb1e88", "text": "\u5728\u53e4\u4ee3\u4e2d\u56fd\uff0c\u4e00\u9897\u5929\u4e0a\u7684\u5f57\u661f\u7167\u4eae\u4e86\u4e00\u4e2a\u795e\u79d8\u7684\u4eba\u7269\uff0c\u8eab\u7a7f\u98d8\u9038\u7684\u4e1d\u7ef8\u888d\u5b50\uff0c\u624b\u6301\u4e00\u6839"} +{"id": "2007010", "video_name": "ecda3b11-97a7-51b6-bd0d-65ae22a0bd8f", "text": "\u4eba\u5f62\u6bdb\u8338\u8338\u7684\u72d0\u72f8\u8d70\u8def\u65f6\u5b09\u76ae\u7b11\u8138\u5730\u6447\u6643\u77409\u6761\u5c3e\u5df4\u3002"} +{"id": "1003961", "video_name": "4924e60c-9ff5-5538-b60a-93e3c448bf67", "text": "\u72c2\u70ed\u6cf0\u5766\u706d\u9738\u5728\u8054\u5408\u590d\u4ec7\u8005\u7684\u9762\u524d\u633a\u8eab\u800c\u7acb\uff0c\u4f46\u662f\u4e00\u4e9b\u975e\u51e1\u7684\u4e8b\u60c5\u6b63\u5728\u53d1\u751f\u3002"} +{"id": "1006806", "video_name": "7c9fab1e-b7a4-5d71-a5b8-de40709958c5", "text": "\u53a8\u623f\u7740\u706b\uff0c\u81ea\u52a8\u706d\u706b\u7cfb\u7edf\u6b63\u5728\u5de5\u4f5c\u4ee5\u6251\u706d\u706b\u52bf\u3002"} +{"id": "8001967", "video_name": "a71530c4-ac93-53fe-8963-d1ba9b6bc791", "text": "Sally\u624b\u62ff\u7740\u81f4\u547d\u7684\u98a0\u8304\uff0c\u8482\u59c6\u00b7\u4f2f\u987f"} +{"id": "4002558", "video_name": "46fb1bb0-dda9-5b2e-8217-ce7537514a26", "text": "\u4e00\u4e2a\u7a7f\u7740\u6d63\u718a\u88c5\u626e\uff0c\u8eab\u7a7f\u5f69\u8679\u8272\u9c9c\u8273\u88d9\u5b50\u7684\u5973\u5b69\uff0c\u5728\u5f69\u8272\u821e\u53f0\u4e0a\u8df3\u821e\u3002"} +{"id": "7002122", "video_name": "18097171-c713-598c-ab4c-70396ffb55e4", "text": "\u4ee51940\u5e74\u4ee3\u7535\u5f71\u7247\u5934\u7684\u5bcc\u6709\u611f\u67d3\u529b\u7684\u98ce\u683c\u5448\u73b0\u3002\u5b57\u6bcd\u7c97\u72b7\u800c\u5bcc\u6709\u620f\u5267\u6027\uff0c\u88c5\u9970\u6709\u4e9b"} +{"id": "1004082", "video_name": "4ba1d5f3-a72e-5cae-842e-3428537d864e", "text": "\u66b4\u9f99\u8ffd\u9010\u7740\u4eba\u7c7b\u5728\u4e1b\u6797\u4e2d\u5954\u8dd1\u7684\u7167\u7247\u3002"} +{"id": "6003062", "video_name": "ebf99c8d-28e1-5fad-abe7-a3f2cbd87701", "text": "\u5973\u5b69\u6b63\u5728\u8bf4\u8bdd\uff0c\u65f6\u949f\u5728\u8f6c\u52a8\u3002"} +{"id": "6003673", "video_name": "e2d44be3-fe66-5881-8baa-474429db0522", "text": "\u9646\u5fd7\u6df1\u5750\u5728\u4e00\u95f4\u53e4\u8001\u7684\u4e2d\u56fd\u623f\u95f4\u91cc\u7ee3\u82b1\uff0c\u8fd1\u666f\uff0c\u903c\u771f\u3002"} +{"id": "1003155", "video_name": "3a28297e-acb8-5fba-a22b-bec9a525298c", "text": "19\u4e16\u7eaa\u5973\u4eba\u5728\u6811\u6797\u4e2d\u5c16\u53eb\uff0c\u540e\u9762\u5192\u51fa\u6d53\u70df\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b\u54aa\u6b63\u5728"} +{"id": "7003429", "video_name": "2b6d6bd2-314d-59c3-8d8c-b20dfa6efb82", "text": "\u7f8e\u4e3d\u7684\u6674\u5929\uff0c\u7f8e\u4e3d\u7684\u6d77\u6ee9\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u6d77\u5cb8\uff0cUHD\uff0c4K\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u4ee4\u4eba\u60ca\u53f9\u7684\u7535\u5f71"} +{"id": "2005251", "video_name": "f624b07b-78b3-57f2-bfaa-c0a5bbbd81cf", "text": "\u5f69\u8272\u7f8e\u4e3d\u7684\u5973\u58eb\u53e3\u4e2d\u7684Pop Mart\u73a9\u5177\u4e3b\u9898\u542f\u53d1"} +{"id": "1005711", "video_name": "68ff100d-f24b-5d78-89f6-a9f1d7317ebd", "text": "\u5979\u8d70\u5728\u8857\u4e0a\uff0c\u4eff\u4f5b\u6d88\u5931\u4e86\uff0c\u5979\u5728\u5979\u7684\u5a5a\u793c\u4e0a\uff0c\u7136\u540e\u53d1\u751f\u4e86\u4e00\u6b21\u7206\u70b8\uff0c\u5979\u7a7f\u7740\u4e00"} +{"id": "0003059", "video_name": "36455af3-f963-556a-b9b7-e3d60dd558da", "text": "\u6c7d\u8f66\u548c\u6469\u6258\u8f66\u5728\u610f\u5927\u5229\u4e61\u95f4\u5c0f\u8def\u4e0a\u8ffd\u9010\u3002"} +{"id": "0006247", "video_name": "292cd963-df52-52ee-b9c5-b1b3079c765e", "text": "\u5c06\u4f20\u8bf4\u4e2d\u7684\u5143\u7d20\u5982\u50e7\u4fa3\u3001\u6076\u9b54\u548c\u5de8\u5927\u7684\u4e66\u7c4d\u878d\u5408\u5728\u4e00\u8d77\uff0c\u5f62\u6210\u795e\u79d8\u548c\u5145\u6ee1\u8bf1\u60d1\u529b"} +{"id": "3004856", "video_name": "1a66e131-8e31-5e2a-bbaa-af6d74d12d9e", "text": "\u653e\u5c04\u6027\u8870\u53d8\u4e2d\u5176\u539f\u5b50\u6838\u7684\u653e\u5c04\u6027\u540c\u4f4d\u7d20\u7ec4\u3002"} +{"id": "3006859", "video_name": "63e32a91-ef8d-5209-8f20-edafed6dd6a4", "text": "\u4e00\u5e45\u865a\u62df\u5361\u901a\u56fe\u753b\uff0c\u753b\u7740\u4e00\u5ea7\u8302\u5bc6\u7684\u68ee\u6797\u6811\uff0c\u4e0b\u65b9\u6709\u4e00\u6761\u6d41\u6dcc\u7684\u6cb3\u6d41\u3002"} +{"id": "6000008", "video_name": "394c5b56-be5e-5ce7-a56a-20010b015b0f", "text": "\u8f6f\u6728\u585e\u4ece\u9999\u69df\u74f6\u4e2d\u5f39\u51fa\uff0c\u5361\u901a\u3002"} +{"id": "0005033", "video_name": "13753b0e-2722-5a4c-aece-3d052bfba36c", "text": "\u72ee\u5b50\u751f\u6c14\u5730\u9192\u6765\uff0c\u770b\u7740\u8001\u9f20\u3002"} +{"id": "3004659", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "\u4e00\u4f4d\u62e5\u6709\u9ec4\u8272\u7fc5\u8180\u7684\u5929\u4f7f\uff0c\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\u8fdb\u4e86\u4e00\u4e2a\u7c89\u7ea2\u8272\u7684\u8349\u5730\u3002"} +{"id": "3005557", "video_name": "48f1e6ae-dfaa-512d-a1d0-bc1e271b8381", "text": "\u521b\u9020\u4e00\u4e2a3D\u6e32\u67d3\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u516c\u56ed\uff0c\u591c\u665a\u661f\u5149\u95ea\u70c1\uff0c\u4e00\u4e2a\u5927\u661f\u661f\u770b\u8d77\u6765\u50cf\u662f\u5728\u5730\u7403\u4e0a\uff0c\u4e00\u4e2a\u5b69\u5b50"} +{"id": "0006727", "video_name": "31da8261-f9da-5257-bdc1-60799afc25f4", "text": "10\u79d2\u7684\u89c6\u9891\u7a7f\u8d8a\u4e00\u7cfb\u5217\u5177\u6709\u6311\u6218\u6027\u7684\u666f\u89c2\u3002\u753b\u9762\u5e94\u8be5\u63cf\u7ed8\u4ed6\u4eec\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u5728\u6d53\u5bc6\u7684"} +{"id": "2004077", "video_name": "cac13d20-a0d3-5477-85a4-66d757e5e13e", "text": "\u751f\u6210\u4e00\u90e8\u63cf\u7ed8\u751f\u6d3b\u7684\u4e24\u4e2a\u59d0\u59b9\u7684\u52a8\u753b\u89c6\u9891\uff0c\u5728\u82b1\u56ed\u91cc\u8d70\u7740\u8c61\u5f81\u59d0\u59b9\u4e4b\u7231\u7684\u4eba\u7269\u3002"} +{"id": "2003952", "video_name": "deb2ffa8-2791-5576-8beb-f6a503ba976b", "text": "\u540e\u53f0\u6709\u4e00\u4e2a\u5927\u578b\u53d1\u5149\u5341\u5b57\u67b6\u7684\u821e\u53f0\u3002"} +{"id": "3003318", "video_name": "e05fa304-fd5f-5310-ba78-1bb64756dbd8", "text": "\u4e00\u53ea\u7a7f\u7740\u897f\u670d\u7684\u718a\u732b\u5bf9\u7740\u6444\u50cf\u673a\u8bf4\u8bdd\u3002"} +{"id": "4002190", "video_name": "92f32b0a-50a0-55cb-a92e-7777482ccf65", "text": "\u5723\u8bde\u6811\u58c1\u7eb8\u3001\u5e78\u798f\u6751\u5e84\u3001\u96ea\u3001\u6f02\u4eae\u3001\u7f8e\u4e3d\u3001\u6770\u4f5c\u3002"} +{"id": "3006186", "video_name": "5e197ee4-c14e-5948-8249-6127d3c678de", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u8bf4\u201c\u55e8\u201d\u8ba9\u5b83\u770b\u8d77\u6765\u8d85\u771f\u5b9e\u3002"} +{"id": "0003990", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u7a7f\u7740\u50cf\u58eb\u5175\u4e00\u6837\u7684\u8863\u670d\u3002"} +{"id": "7002926", "video_name": "19356fc0-bdec-5301-8d2b-42d59118998c", "text": "\u76d6\u7279\u6069\u00b7\u9a6c\u5854\u62c9\u4f50\u7528\u652f\u67b6\u5f39\u594f\u952e\u76d8\u3002"} +{"id": "7002658", "video_name": "41f2ad41-ecc6-5498-8db3-9b093c033cfe", "text": "\u4e00\u4e2a\u7537\u4eba\u624b\u6301\u6b66\u58eb\u5200\u5bf9\u6297\u9b54\u9b3c\u3002"} +{"id": "0005336", "video_name": "190378b7-f8c4-5e1c-a8d5-19c36d212168", "text": "\u8d85\u7ea7\u9a71\u52a8\u5668\u96a7\u9053\u7531\u5206\u5f62\u56fe\u6848\u548c\u9713\u8679\u8272\u5f69\u7ec4\u6210\uff0c\u6a21\u7cca\u4e86\u73b0\u5b9e\u548c\u6570\u5b57\u7a7a\u95f4\u4e4b\u95f4\u7684\u754c\u9650\u3002"} +{"id": "6002014", "video_name": "9a7b53a7-0b88-5dcf-a6a9-fd86261d872e", "text": "\u80bf\u7624\u795e\u7ecf\u5185\u90e8\u5b58\u5728\uff0c\u5305\u62ec\u764c\u79cd\uff0c\u76f8\u6bd4\u4e73\u817a\u764c\uff0c\u80bf\u7624\u66f4\u5bb9\u6613\u5b9e\u73b0\uff0c1\u5206\u949f\u89c6\u9891\u3002"} +{"id": "8002192", "video_name": "7c0616f5-2281-50a3-9c6b-80ffc60caac7", "text": "\u4eba\u4eec\u5728\u6d77\u6ee9\u4e0a\u60ca\u6050\u5730\u5954\u8dd1\uff0c\u9003\u79bb\u67d0\u4e2a\u4e1c\u897f\uff0c\u9ad8\u6e05\u903c\u771f\u3002"} +{"id": "0003818", "video_name": "440c7364-e96a-5231-abfa-fe49e8d4f9fd", "text": "\u68ee\u6797\u4e2d\u7684\u6811\u6728\uff0c\u6240\u6709\u9891\u7387\u548c\u5149\u8c31\u90fd\u53ef\u89c1\u3002"} +{"id": "4004435", "video_name": "a1c021fc-31b6-5d95-a236-4cc0271b7ee2", "text": "\u4e00\u7fa4\u53d7\u60ca\u7684\u4eba\uff0c\u8138\u4e0a\u6620\u7740\u8b66\u8f66\u7684\u706f\u5149\u3002"} +{"id": "2005373", "video_name": "45d323dd-65e4-580b-9af3-20f074f8c7ce", "text": "\u91d1\u8272\u7684\u5f88\u591a\u84b8\u6c7d\u670b\u514b\u4eba\u7269\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6784\u56fe\u4e2d\u5fc3\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u514b\u5229\u59c6\u7279\u98ce\u683c\u542f\u53d1\u3002"} +{"id": "5001710", "video_name": "8ccef3a2-3b0e-58ad-a381-c68e02c47044", "text": "\u9676\u8f6e\u4e0a\u7684\u5c71\u4e00\u822c\u5927\u5c0f\u7684\u82b1\u74f6"} +{"id": "3004339", "video_name": "602bb4f7-7d55-581c-8b64-1f14ad286118", "text": "\u4ed6\u547d\u4ee4\u5357\u8fea\u548c\u5176\u4ed6\u4ec6\u4eba\u7167\u770b\uff0c\u786e\u4fdd\u6ca1\u6709\u4eba\u8fdb\u5165\u6d1e\u7a74\u30023D\u5361\u901a\u89d2\u8272\u8fea\u58eb\u5c3c\u98ce\u683cgs5\u52a8\u4f5c1\u3002"} +{"id": "2005596", "video_name": "ea0cabd8-6f0e-5c9b-9357-f62aa10bd42b", "text": "\u8428\u59c6\u00b7\u5c3c\u5c14\u559d\u7cd6\u6d46\u65f6\u7684\u5495\u565c\u58f0\u3002"} +{"id": "4003715", "video_name": "f1e6d1cb-6b8d-5c4d-b6fb-f22d96b09cba", "text": "\u4e00\u573a\u5730\u9707\u9707\u52a8\u4e86\u96e8\u6797\u7684\u5927\u5730\u3002"} +{"id": "3005348", "video_name": "a793f45b-d1e1-524a-b00a-d6c7f749d317", "text": "\u94bb\u77f3\u5728\u7f8e\u4e3d\u7684\u5c71\u8109\u96fe\u6ce2\u4e0a\u65cb\u8f6c\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9\u3002"} +{"id": "8002441", "video_name": "996e1f4f-f6f9-5fde-9909-6a37a4b4b4ee", "text": "\u5973\u5b69\u5728\u8def\u4e0a\u6551\u4e86\u4e00\u53ea\u732b\u3002"} +{"id": "4004305", "video_name": "f2fce687-f894-5661-bc56-1e5098102455", "text": "\u62bd\u8c61\u5e03\u6599\u5f62\u6001\u5728\u7535\u5f71\u822c\u7684\u706f\u5149\u4e0b\u8d77\u4f0f\u3002"} +{"id": "1003989", "video_name": "49c5e3be-e0e4-5243-8c82-9367cfec088b", "text": "\u4e00\u53f0\u8001\u7535\u89c6\u5728\u6c99\u6f20\u91cc\u64ad\u653e\u3002"} +{"id": "6002135", "video_name": "d686ba70-b48e-5e5f-b890-0d7f315aa883", "text": "\u7537\u5b50\u5728\u6797\u836b\u5927\u9053\u65c1\u89c2\u770b\u94f6\u884c\u5e7f\u544a\u724c\uff0c\u7136\u540e\u6293\u8d77\u5e7f\u544a\u724c\uff0c\u5c06\u5176\u8f6c\u6362\u4e3a\u81ea\u5df1\u624b\u4e2d\u5e26\u6709\u540c\u6837\u5e7f\u544a\u7684"} +{"id": "8001901", "video_name": "85f9ed87-638c-5024-87a7-eccee5f1612d", "text": "\u8d2b\u7620\u7684\u571f\u5730\uff0c\u5927\u91cf\u7684\u519c\u6c11\uff0c\u7070\u6697\u3001\u8d2b\u7a77\u3001\u9965\u8352\u3001\u8352\u51c9\u3001\u5fe7\u90c1\u7684\u6c14\u6c1b\uff0c\u5b8f"} +{"id": "2004518", "video_name": "28239ec4-814f-58b5-8370-6c950e67f069", "text": "\u4f60\u5982\u4f55\u77e5\u9053\u4e00\u4e2a\u5206\u5b50\u91cc\u6709\u591a\u5c11\u4e2a\u539f\u5b50\uff1f"} +{"id": "2007122", "video_name": "694029f1-11e3-5f45-860e-fdc5e682e21b", "text": "\u5e7d\u7075\u9f13\u638c\u5feb\u4e50\u3002"} +{"id": "3006673", "video_name": "552239e2-bd71-5982-813b-04adbf21660d", "text": "\u5728\u8349\u5730\u4e0a\u63cf\u7ed8\u4e00\u4e2a\u795e\u5947\u7684\u65e5\u51fa\uff0c\u592a\u9633\u6295\u5c04\u51fa\u6e29\u6696\u7684\u5149\u8292\uff0c\u5468\u56f4\u7684\u666f\u8c61\u4ee5\u8000\u773c\u7684\u8272\u5f69"} +{"id": "6002321", "video_name": "47d3a589-29ba-5da5-93f1-62b4b70e4cff", "text": "\u7528\u4e00\u53e5\u8bdd\u63cf\u8ff0\u5b87\u5b99"} +{"id": "1005318", "video_name": "61b93753-f043-5746-a95f-2843d92ed016", "text": "3D\u52a8\u753b\u7684\u97e9\u56fd\u8001\u5987\u4eba\u5fae\u7b11\u7740\u3002"} +{"id": "4003219", "video_name": "a5f3604d-82ee-59a7-90f2-fbaea56a9b51", "text": "\u753b\u4e00\u5e45\u56fe\u5c55\u793a\u4e00\u6761\u5de8\u87d2\uff0c\u8eab\u4f53\u6709\u4e00\u5934\u725b\u90a3\u4e48\u5927\uff0c\u541e\u4e0b\u4e86\u519c\u573a\u91cc\u7684\u4e00\u5934\u725b\u3002\u80cc\u666f\u63cf\u7ed8\u4e86\u5c71"} +{"id": "2003696", "video_name": "6f5c7ba4-ab6c-5830-b162-916666cf6631", "text": "\u6c89\u91cd\u7684\u673a\u68b0\u84b8\u6c7d\u670b\u514b\u9501\u95e8\u6253\u5f00\uff0c\u9732\u51fa\u7fe0\u7eff\u7684\u80cc\u666f\u3002"} +{"id": "6003790", "video_name": "50fdbf3e-7d46-53d6-b0ba-7a7026cf4039", "text": "\u8bf7\u5220\u9664\u5b57\u5e55\u5e76\u5c06\u89c6\u9891\u5236\u4f5c\u6210\u9ad8\u6e05\u7248\u672c\u3002\u9644\u4ef61\u3002"} +{"id": "5001341", "video_name": "f9932931-56f7-5516-9e14-6a554aaa8eee", "text": "\u5728\u4f8f\u7f57\u7eaa\u65f6\u671f\uff0c\u9738\u738b\u9f99\u6b63\u5728\u8ffd\u9010\u5b83\u7684\u730e\u7269\u3002"} +{"id": "7003569", "video_name": "8f3daf97-14ee-5b69-ae8a-b008731f493c", "text": "\u6c14\u6ce1\u7206\u70b8\u4e86\uff0c\u5979\u611f\u5230\u60ca\u8bb6\u4f46\u4e5f\u5f88\u9ad8\u5174\u3002"} +{"id": "0005627", "video_name": "1e560ed3-3edb-50a9-a1d2-59f712318252", "text": "\u5956\u676f\u524d\u9762\u6709\u4e00\u9762\u5927\u5899\u3002"} +{"id": "0006194", "video_name": "2800b74b-a646-5d3c-a07c-91be6f1da56a", "text": "\u673a\u5668\u4eba\u4e92\u76f8\u63a5\u89e6\uff0c\u5c31\u50cf\u7c73\u5f00\u6717\u742a\u7f57\u7684\u300a\u521b\u4e16\u7eaa\u300b\u4e2d\u4e9a\u5f53\u4e0e\u4e0a\u5e1d\u7684\u63a5\u89e6\u3002"} +{"id": "2005395", "video_name": "c64fd22c-f799-5b7c-9768-1ef48327c030", "text": "\u6258\u9a6c\u65af\u00b7\u8c22\u5c14\u6bd4\u98ce\u5ea6\u7fe9\u7fe9\u5730\u8d70\u51fa\u7206\u70b8\u73b0\u573a\u3002"} +{"id": "1003945", "video_name": "48c9ab6a-97e7-5d5d-9442-a2aa07d29d22", "text": "\u5e26\u6709\u53ef\u7231\u5ba0\u7269\u548c\u5b87\u822a\u5458\u7684NFT\u3002"} +{"id": "0005349", "video_name": "19390eca-0386-5717-a87e-802837fe4fc5", "text": "\u5728\u5927\u8349\u539f\u4e0a\u521b\u9020\u4e00\u4e2a\u91ce\u751f\u52a8\u7269\u7684\u5f62\u8c61\u3002"} +{"id": "3004875", "video_name": "b219889b-0d0f-5a8a-b398-881fdf069535", "text": "\u4e00\u53ea\u6cb3\u72f8\u5728\u5411\u76f8\u673a\u62db\u624b\uff0c\u9080\u8bf7\u4eba\u4eec\u53c2\u52a0\u793e\u533a\u6e38\u620f\u591c\u3002"} +{"id": "4003043", "video_name": "02435c1d-6423-5ee1-ac25-a721c1494357", "text": "\u5728\u5c3c\u6cca\u5c14\u5e15\u65af\u5e15\u63d0\u7eb3\u7279\u5bfa\u5e99\u65c1\u8fb9\u5750\u7740\u4e00\u4e2a\u7537\u5b69\u7684\u56fe\u50cf\u3002\u8d85\u73b0\u5b9e\u7684\u56fe\u50cf\uff0c\u665a\u4e0a\uff0c\u666f\u6df1"} +{"id": "2006193", "video_name": "fefebacd-5246-57cf-a3cc-c57aab8f6ebc", "text": "\u5723\u51ef\u745f\u7433\u662f\u4fe1\u4ef0\u548c\u52c7\u6c14\u7684\u8c61\u5f81\uff0c\u662f\u5b88\u62a4\u5723\u4eba\uff0c\u89c6\u9891\u4ee58K\u3001\u903c\u771f\u3001\u7535\u5f71\u7ea7\u3001\u5b8c\u7f8e\u7684\u5149"} +{"id": "1006343", "video_name": "7413699e-3117-5da6-93c3-564e9258794c", "text": "\u7ea6\u67dc\u56e0\u5176\u4e30\u5bcc\u7684\u5386\u53f2\u548c\u5b97\u6559\u5173\u8054\uff0c\u8c61\u5f81\u7740\u795e\u4e0e\u4eba\u4e4b\u95f4\u7684\u8054\u7cfb\uff0c\u4ee3\u8868\u7740\u5951\u7ea6\u3001\u7cbe\u795e\u529b\u91cf\u548c"} +{"id": "8003752", "video_name": "374ebc6c-b57f-5864-844a-26097c4c1863", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u5b50\u7684\u5e74\u8f7b\u7f16\u7a0b\u8001\u5e08\u6b63\u5728\u4e3a\u5b69\u5b50\u4eec\u4e0a\u8bfe\u3002"} +{"id": "0005268", "video_name": "1791468f-e4be-5dbd-8519-33cd2e8d9ea8", "text": "\u5728\u5f97\u5230\u8bb8\u591a\u7269\u54c1\u540e\u4ece\u9152\u5e97\u8dd1\u51fa\u6765\uff0c\u5728\u8d85\u73b0\u5b9e\u7684\u591c\u95f4\u96e8\u4e2d\uff0c90\u5e74\u4ee3\u3002 \n\nSource sentence: The cat is sleeping on the couch by the window.\n"} +{"id": "6002234", "video_name": "de420d86-2831-59f6-b09c-389db51934f7", "text": "\u9001\u8d27\u6469\u6258\u8f66\u6b63\u5728\u88c5\u8f7d\u5e76\u5411\u57ce\u9547\u8fd0\u9001\u3002"} +{"id": "1004511", "video_name": "53bc497f-fa5d-514b-b62a-7cefe9a1d1ad", "text": "\u9897\u5c0f\u884c\u661f\u7fa4\u6b63\u5411\u5730\u7403\u79fb\u52a8\uff0c\u753b\u9762\u903c\u771f\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u8fd0\u52a8\u6d41\u7545\u3002"} +{"id": "7003048", "video_name": "fbdcc3dc-80fb-57f3-a5c8-98521dc51976", "text": "\u9e1f\uff0c\u9ec4\u8272\uff0c\u6d77\u519b\u84dd\u8272\uff0c\u9ed1\u8272\u548c\u91d1\u8272\uff0ciStockPhoto\uff0c\u9ec4\u8272\u548c\u7eff\u8272\uff0c\u7f8e\u4e3d\uff01\u5168\u8eab\u7167\uff0c\u9a6c\u8fbe\u52a0\u65af\u52a0"} +{"id": "2006378", "video_name": "6b3f4ae3-7d35-5eb7-b3b5-70f9e5c1c525", "text": "\u9053\u5947\u6311\u6218\u8005\u7a7f\u8d8a\u6c99\u6f20\u3002"} +{"id": "3004194", "video_name": "aa4554a8-5dbb-5874-bc8e-76aaf57f34db", "text": "\u4e00\u4e2a\u5f02\u57df\u516c\u4e3b\u7ad9\u5728\u5979\u738b\u56fd\u7684\u4eba\u7fa4\u4e2d\uff0c\u5468\u56f4\u662f\u9713\u8679\u84dd\u8272\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u6c34\u6676\u548c\u6676\u83b9\u7684"} +{"id": "3005195", "video_name": "6e8279b2-d24d-53dd-b926-b582be55ccaf", "text": "\u4e00\u5f20\u63d2\u753b\uff0c\u63cf\u8ff0\u4e86\u4e00\u4e2a\u77ed\u53d1\u68d5\u8272\u5934\u53d1\u3001\u7a7f\u7740\u7eff\u8272\u886c\u886b\u3001\u61d2\u6563\u5730\u8eba\u5728\u5ba2\u5385\u6c99\u53d1\u4e0a"} +{"id": "8001058", "video_name": "d14b6cb9-8f47-5211-91f4-5aa6c562fe53", "text": "\u6df1\u8272\u5934\u53d1\u7684\u5973\u5b69\u5728\u8349\u5730\u4e0a\u6295\u63b7\u5957\u7d22\uff0c\u4ece\u8fdc\u5904\u80cc\u540e\u770b\u53bb\uff0c\u7a7f\u7740\u73b0\u4ee3\u725b\u4ed4\u88e4\u548c\u886c\u886b\u3002"} +{"id": "6002458", "video_name": "e0c809de-bf63-52ad-84a4-1505df18564c", "text": "\u989c\u6599\u503e\u6cfb\u5728\u767d\u8272\u753b\u5e03\u4e0a\uff0c\u6d41\u52a8\u7684\u91d1\u8272\u3002\u62bd\u8c61\u8fd0\u52a8\u3002"} +{"id": "0006915", "video_name": "3541d8e4-806b-5bea-a936-872b7bf44d27", "text": "\u7f8e\u4e3d\u7684\u5723\u8bde\u8282\u56fe\u7247\u9ad8\u54c1\u8d28\u3001\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "3005495", "video_name": "9189160d-28fd-50cb-8595-8bae2e15548a", "text": "\u7231\u4f60Sara \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09 \u5728\u6709\u871c\u8702\u7684\u82b1\u56ed\u9644\u8fd1\u7684\u6d77\u6ee9\u3002"} +{"id": "8002141", "video_name": "0eb31ed4-5fda-5070-8d88-2b0264fd9267", "text": "\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u53d7\u65b9\u4fbf\u9762\u542f\u53d1\u7684\u670d\u88c5\u8d70\u4e0aT\u578b\u53f0\u3002"} +{"id": "3004730", "video_name": "5942b402-f6c2-5c7f-a8a3-60ba751b2a7c", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u975e\u5e38\u9ad8\u7684\u5c71\u4e0a\u9ad8\u9ad8\u5730\u8fc8\u6b65\u3002"} +{"id": "2006916", "video_name": "a6daa011-6a54-5c99-9270-477b984b1624", "text": "\u4e00\u8f86\u6469\u6258\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u71c3\u70e7\u7684\u8f6e\u5b50\u4e0a\u884c\u9a76\u3002"} +{"id": "2004568", "video_name": "4275360f-1808-5b0e-b6a4-867a973e1588", "text": "\u7535\u5f71\u5316\u3001\u97e9\u6d41\u3001\u53ef\u7231\u7684\u5634\u5507\u3001\u82d7\u6761\u7684\u4e9a\u6d32\u4eba\u3001\u65f6\u5c1a\u3001\u4e9a\u6d32\u68a6\u4e2d\u5973\u4eba\u3001\u4e9a\u6d32"} +{"id": "7002066", "video_name": "923db24b-453a-5ec5-9e3c-cefc8abc3d91", "text": "\u6570\u5b57\u65f6\u949f\u663e\u793a06:30\u7684\u65f6\u95f4\u3002"} +{"id": "0006245", "video_name": "29195791-25ee-5ecb-be79-e38c5d52b08e", "text": "\u5728\u6d77\u8fb9\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u72ec\u81ea\u5750\u7740\uff0c\u6c89\u6d78\u5728\u81ea\u5df1\u7684\u601d\u7eea\u4e2d\u3002\u5979\u4fee\u957f\u7684\u5934\u53d1\u5728\u6d77\u98ce\u4e2d\u8f7b"} +{"id": "3006778", "video_name": "d03eb76c-b424-5d18-aa9a-48958683d831", "text": "\u5947\u602a\u7684\u5361\u901a\uff0c\u6ce5\u4eba\u6b63\u5728\u4ef0\u671b\u96fe\u5929\u7684\u5929\u7a7a\u3002"} +{"id": "3003166", "video_name": "3366a347-d266-5d5c-84a7-c650c9133cf0", "text": "\u9a86\u9a7c\u80cc\u8d1f\u7740\u6c34\u3001\u98df\u7269\u548c\u5176\u4ed6\u5fc5\u9700\u54c1\uff0c\u800c\u8001\u4eba\u827e\u54c8\u8fc8\u5fb7\u5219\u5e26\u7740\u5730\u56fe\u548c\u6307\u5357\u9488\u5f15\u5bfc\u4ed6\u4eec\u524d\u884c"} +{"id": "1004364", "video_name": "50a29896-79c5-5bf0-b6ca-2cfea1a406e4", "text": "\u4e00\u4e2a\u5c71\u533a\u666f\u89c2\u4e2d\u6559\u5802\u65c1\u7684\u5893\u5730"} +{"id": "8002543", "video_name": "f91d61e6-1f6b-54a9-9a8a-1795473f3e97", "text": "\u5e86\u795d\u83b7\u5f97\u5956\u676f\u7684\u9f99"} +{"id": "8001142", "video_name": "47568aaa-1d02-56b0-bb43-10d3b858fd62", "text": "\u592a\u7a7a\u8239\u4ece\u300a2001\uff1a\u592a\u7a7a\u6f2b\u6e38\u300b\u98de\u5f80\u592a\u7a7a\u3002"} +{"id": "3005531", "video_name": "e019aca7-af9d-5024-9641-e77b47c48225", "text": "\u4e00\u4f4d\u79d1\u5b66\u5bb6\u671d\u7740\u53f3\u8fb9\u8d70\u5411\u6444\u50cf\u673a\uff0c\u8f6c\u8fc7\u8138\u770b\u5411\u6444\u50cf\u673a\uff0c\u80cc\u666f\u4e3a\u9ec4\u8272\u57ce\u5e02\uff0c\u5f71\u89c6\u7ea7\u522b\uff0c4K\uff0c"} +{"id": "6004638", "video_name": "c3faa972-ebc6-5905-9075-f03171529461", "text": "\u7eff\u8272\u548c\u9ed1\u8272\u7684\u7535\u7ade\u6807\u5fd7\u3002\u4fe1\u606f\uff1aIKRN\u7535\u7ade\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2007604", "video_name": "3a8300a9-db6b-5cc8-a3e7-c3b74fd2c2bd", "text": "\u62c9\u8d3e\u00b7\u62c9\u7ef4\u00b7\u7ef4\u5c14\u9a6c\u98ce\u683c\u7684\u514b\u91cc\u5e0c\u7eb3\u795e\u5439\u7b1b\u7ed8\u753b"} +{"id": "1003300", "video_name": "3cbe4d66-2d44-57a1-ad83-76948065c2f5", "text": "\u4e50\u5668\u5c55\u793a\uff1a\u5409\u5e03\u5170\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003262", "video_name": "3a44c0f9-7924-5cca-8601-113d17401f56", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u610f\u5927\u5229\u548c\u5973\u5b69\u4e00\u8d77\u6563\u6b65\u3002"} +{"id": "8002332", "video_name": "865ca5e9-9357-53fe-b6bd-8ca35a36a0ba", "text": "\u6709\u9b3c\u98db\u821e\u7684\u8272\u5f69\u8c50\u5bcc\u7684\u7f8e\u5b78\u52d5\u756b\u57ce\u5e02\u5834\u666f\u3002"} +{"id": "2006096", "video_name": "c79ca3a3-a5df-5f19-814d-61de95f043b6", "text": "\u9ed1\u8272\u5b9d\u53ef\u68a6\u98ce\u683c\u89d2\u8272\u7684\u5f62\u8c61"} +{"id": "6003355", "video_name": "2e882166-09ee-56bd-9b67-6e0dd7eec602", "text": "\u5728\u963f\u7c73\u4ec0\u670d\u88dd\u4e0b\u7684\u4e00\u982d\u5f17\u840a\u514b\u7dad\u8d6b\u725b\uff0c\u5c01\u9762\u7167\u7247\uff0c\u6700\u512a\u8cea\u7684\u5b89\u5fb7\u70c8\u4e9e"} +{"id": "6004250", "video_name": "557dd1f8-d31d-597f-a8b2-73b17bb23074", "text": "\u4e58\u6cd5 (\u5b57\u4f53: \u73b0\u4ee3) \u4fe1\u606f: \u6700\u597d\u7684\u5546\u5e97\u7ed9\u60a8"} +{"id": "4004203", "video_name": "1695943b-585f-5564-ad46-1bce8803712d", "text": "\u54c8\u5229\u594e\u6069\u867e\u5728\u4e00\u4e2a\u6d77\u661f\u5468\u56f4\u8df3\u821e\uff0c\u5728\u6d77\u4e2d\u6e05\u6f88\u7684\u84dd\u8272\u6c34\u57df\u30024K\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "1004701", "video_name": "575d3256-3631-5e28-bd7e-33ee44cdc91c", "text": "\u5973\u8d85\u6a21\u5728\u65e5\u843d\u65f6\u5206\u7684\u68ee\u6797\u4e2d AR 16:9\u3002"} +{"id": "3004366", "video_name": "e1593c80-384c-51be-854d-e1b1b2d17a71", "text": "\u6885\u897f\u5728\u4eba\u9020\u8349\u576a\u4e0a\u6253\u8fdb\u667a\u5229\u7403\u95e8\u7684\u8fdb\u7403\u3002"} +{"id": "6002333", "video_name": "5cdc4727-7b21-5325-a128-47457bc90c15", "text": "\u4e00\u53ea\u72fc\u5728\u68ee\u6797\u91cc\u8ffd\u8d76\u4e00\u4f4d\u5e74\u8f7b\u7684\u730e\u4eba\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u6e05\u6670\u7684\u91ce\u751f\u68ee\u6797\u3002"} +{"id": "3004474", "video_name": "93297df8-dc1b-5332-9639-360a351d424b", "text": "\u968f\u7740\u6444\u50cf\u673a\u7684\u6ed1\u52a8\uff0c\u5b83\u63a5\u8fd1\u684c\u5b50\u4e0a\u6446\u653e\u7740\u7684\u4e00\u672c\u7a7a\u767d\u7684\u65e5\u8bb0\u672c\uff0c\u8c61\u5f81\u7740\u8868\u8fbe\u7684\u6f5c\u529b\u3002"} +{"id": "8002582", "video_name": "91903a20-e14d-5238-943e-84fcf4fb72f3", "text": "\u9c7c\u5728\u6c34\u4e2d\u6e38\u52a8\uff0c\u89d2\u8272\u5fae\u7b11\u7740\uff0c\u773c\u775b\u95ea\u70c1\uff0c\u8eab\u4f53\u52a8\u6765\u52a8\u53bb\uff0c\u5979\u6b63\u5728\u4eab\u53d7\u3002"} +{"id": "8001337", "video_name": "851636cc-6213-5bec-984c-51f726a68c5b", "text": "\u5927\u52a0\u90a3\u5229\u5c9b\uff0c\u4e00\u4f4d\u76ae\u80a4\u9edd\u9ed1\u7684\u6f02\u4eae\u5973\u5b69\u8eba\u5728\u6d77\u6ee9\u4e0a\u6652\u592a\u9633\u3002"} +{"id": "4003711", "video_name": "d1a5e898-eb6d-549a-92fd-072a8b08e258", "text": "\u9ad8\u6e05\u3001\u5199\u5b9e\u7684\u96cf\u83ca\u8fd1\u666f\u7efd\u653e\u7684\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "2006355", "video_name": "3b3b9775-38be-5d00-9fc3-1a0db166b76c", "text": "\u5916\u661f\u4e16\u754c\uff0c\u9ed1\u6697\uff0c\u7eff\u8272\u4eba\u5f62\u751f\u7269\u6b63\u5e38\u751f\u6d3b\u3002"} +{"id": "8002055", "video_name": "80035da6-4d78-52ba-ab3c-f9404fb42710", "text": "\u52a8\u7269\u4eec\u5728\u56fe\u4e66\u9986\u91cc\u8bfb\u4e66\u3002"} +{"id": "2004067", "video_name": "84c9e6dc-8860-596e-a882-fa6c52f16271", "text": "\u8759\u8760\u4fa0\u5750\u5728\u5854\u4e0a\u3002"} +{"id": "6004678", "video_name": "8e3092b5-724c-5695-a781-45c5ccc2edc4", "text": "\u4e00\u8def\u4e0a\uff0c\u4ed6\u4eec\u9047\u5230\u4e86\u6dd8\u6c14\u7684\u4ed9\u5973\u3001\u4e00\u4e2a\u8f7b\u67d4\u7684\u5de8\u4eba\uff0c\u4ed6\u7528\u9686\u9686\u7684\u7b11\u58f0\u8bb2\u6545\u4e8b\uff0c\u8fd8\u6709\u4e00\u4e2a\u504f"} +{"id": "5001941", "video_name": "13adf98d-1b89-5e37-85e3-fd0ce8becfd2", "text": "\u590f\u5a01\u5937\u6d77\u6ee9\u4e0a\u6447\u66f3\u7684\u68d5\u6988\u6811\n\nSource sentence: I am looking forward to the weekend. \n\u6211\u671f\u5f85\u7740\u5468\u672b\u3002"} +{"id": "3003427", "video_name": "534600a2-188c-500e-bce6-cfcf780e6702", "text": "\u5728\u6c49\u5a1c\u00b7\u970d\u8d6b\uff08Hannah Hoch\uff09\u548c\u8fc8\u514b\u5c14\u00b7\u535a\u4f26\u66fc\u65af\uff08Michael Borremans\uff09\u7684\u98ce\u683c\u4e0b\uff0c\u897f\u91cc\u5c14\u00b7\u58a8"} +{"id": "3004071", "video_name": "8ace5270-de06-5e6e-90e4-8b121e31a05f", "text": "\u4e00\u53ea\u72d7\u5728\u5954\u8dd1\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96ea\u3002\u5728\u56fe\u7247\u7684\u89d2\u843d\u91cc\uff0c\u4e00\u53ea\u732b\u6b63\u76ef\u7740\u90a3\u53ea\u72d7\u3002"} +{"id": "0005568", "video_name": "1d11d9c1-73bc-5f32-9652-0df26f652e57", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u963f\u7ea6\u63d0\u4e9a\u5bfa\u5e99\u524d\u7948\u7977\uff0c\u753b\u9762\u653e\u5927\uff0c\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "1004262", "video_name": "4eeec533-4f1f-5783-ad2c-56cd23afbcdf", "text": "\u4e00\u628a\u624b\u67aa\uff0c\u653e\u5728\u4e00\u4e2a\u7bb1\u5b50\u91cc\uff0c\u897f\u65b9\u590d\u53e4\u8272\u5f69\u7684\u5c9b\u5c7f\u98ce\u666f\uff0c\u7f8e\u56fd\u5ba3\u4f20\uff0c\u6241\u5e73\u63d2\u56fe\u827a\u672f\u3002"} +{"id": "4004686", "video_name": "6b2bece6-c092-5c61-9a08-2daff401dd3b", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u6050\u9f99\u5728\u96ea\u5c71\u4e0a\u884c\u8d70\uff0c\u76ae\u514b\u65af\uff0cCG\u3002"} +{"id": "1005323", "video_name": "61cbbaf8-9385-58c4-8e1c-ab9d5c1c71ca", "text": "\u4ed6\u51b3\u5b9a\u5c55\u5f00\u4e00\u573a\u6fc0\u52a8\u4eba\u5fc3\u7684\u5192\u9669\u53bb\u627e\u90a3\u68f5\u6811\u3002"} +{"id": "2004633", "video_name": "2ab76faf-37cc-5efa-874c-3dbee6256eca", "text": "\u71c3\u70e7\u7684\u6587\u5b57\u4fe1\u606f\uff1a\u4f60\u597d\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "6002979", "video_name": "b2304e1b-16a2-598a-abd9-b0d0df48ec0f", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u7f8e\u4e3d\u7684\u5e7b\u60f3\u4e16\u754c\u91cc\u548c\u4e00\u53ea\u72d7\u4e00\u8d77\u5954\u8dd1\u3002"} +{"id": "6002241", "video_name": "a18c5004-887d-58f1-a13f-fdff1be8597c", "text": "\u725b\u4ed4\u5728\u540e\u53f0\u8d70\u52a8\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c8K\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "1005833", "video_name": "6b417674-f75d-5927-9d92-9584050c4cc4", "text": "\u5728\u5723\u7ecf\u4e2d\uff0c\u7ed9\u51fa\u4e00\u4e2a\u624e\u52a0\u5229\u4e9a\u65af\u81ea\u62cd\u7684\u5f62\u8c61\u3002"} +{"id": "8003219", "video_name": "86ba5617-0185-52e9-9e40-5fa2a668a047", "text": "\u672a\u6765\u6218\u4e89\u673a\u5668\u4eba\u58eb\u5175\u6b63\u5728\u5c55\u793a\u4ed6\u4eec\u60ca\u4eba\u7684\u80fd\u529b\u3002"} +{"id": "3004669", "video_name": "3f8a1044-6a76-561c-9c4a-c8d88820fa66", "text": "\u6258\u9a6c\u65af\u95ed\u4e0a\u773c\u775b\uff0c\u63a5\u53d7\u4e86\u81ea\u5df1\u7684\u547d\u8fd0\u3002\u4ed6\u5c06\u4f1a\u6c38\u8fdc\u88ab\u56f0\u5728\u5e7d\u7075\u8239\u4e0a\uff0c\u6c38\u8fdc\u5728"} +{"id": "8002258", "video_name": "42afa47e-d037-5c42-94e8-b7958ecc31ab", "text": "\u6234\u65b9\u773c\u955c\u7684\u4eba\u662f\u5eb7\u6cfd\u6587\uff0c\u4ed6\u6709\u4e00\u53ea\u53eb\u5c0f\u767d\u7684\u56ed\u72ac\uff0c\u5df2\u7ecf\u5728\u5bb6\u517b\u4e86\u4e09\u5e74\u3002"} +{"id": "7003338", "video_name": "5d79dfbe-ea0b-54c1-8bb5-bdbe63216316", "text": "\u5c0f\u578b\u5b87\u5b99\u98de\u8239\u5185\u7684\u7167\u7247\uff0c\u5c55\u793a\u4ed6\u4eec\u51c6\u5907\u8d77\u98de\u7684\u60c5\u666f\u3002"} +{"id": "6002042", "video_name": "510d3cfc-ce9f-55f1-bfeb-7929a23bca44", "text": "\u82ad\u6bd4\u5a03\u5a03\u7684\u8bfa\u66fc\u00b7\u7f57\u514b\u5a01\u5c14\u98ce\u683c\u7684\u6cb9\u753b\u3002"} +{"id": "4004372", "video_name": "f41f78f3-e4fd-548c-a72d-cf5ea589e873", "text": "\u4e24\u4e2a\u5c0f\u5b69\u548c\u94a2\u94c1\u4fa0\u6253\u67b6\uff0c\u540e\u6765\u7eff\u5de8\u4eba\u6765\u5e2e\u4ed6\u4eec\u6253\u8d25\u4e86\u94a2\u94c1\u4fa0\u3002"} +{"id": "2006442", "video_name": "2480b775-05a3-5071-a1d9-cc46485e362b", "text": "\u5b9d\u5b9d\u683c\u9c81\u7279\uff0c\u7535\u5f71\u822c\u7684\uff0c4K\uff0c\u73a9\u5f97\u5f00\u5fc3\u3002"} +{"id": "2004747", "video_name": "3ea75f94-6ff1-5d62-be57-f46c64b38067", "text": "\u7f13\u6162\u5730\u5c06\u955c\u5934\u7f29\u653e\u5230\u4e1b\u6797\u8fb9\u7f18\u7684\u4e00\u6247\u7d27\u95ed\u7684\u95e8\u4e0a\uff0c\u8425\u9020\u60ac\u5ff5\u3002"} +{"id": "0003445", "video_name": "3da7b107-2678-5c63-ada9-7c99e4152cbc", "text": "\u4e00\u4e2a\u4e9a\u6d32\u5c0f\u7537\u5b69\u4ef0\u671b\u5929\u7a7a\uff0c\u68a6\u60f3\u957f\u5927\u540e\u6210\u4e3a\u4e00\u540d\u79d1\u5b66\u5bb6\u3002"} +{"id": "3005286", "video_name": "85e1df64-1e33-5fb7-9995-8421b2d8930c", "text": "\u4e4c\u5c24\u5c3c\u76d0\u6cbc\u5730\u7684\u6bd4\u8d5b\u3002"} +{"id": "7003421", "video_name": "1b087576-1e2e-5b19-b586-5f092722a3f7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u79bb\u5f00\u4e86\u83b1\u6bd4\u9521\u7684\u8db3\u7403\u573a\u3002\n\nSource sentence: The restaurant is closed on Sundays. \n\n\u9910\u5385\u661f\u671f\u5929\u5173\u95e8\u3002"} +{"id": "0003127", "video_name": "378e1e55-9c46-5abc-a492-397b7cf34878", "text": "\u5236\u4f5c\u4e00\u6bb510\u79d2\u7684\u89c6\u9891\uff0c\u4ecb\u7ecd\u8111\u90e8\u591a\u5df4\u80fa\u6392\u6bd2\u7684\u91cd\u8981\u6027\u3002\u89c6\u9891\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "1005137", "video_name": "5eb03a0a-e085-5632-ae8e-865c261e6d63", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u74f6\u5b50\u7684\u718a\u5750\u5728\u96c5\u9a6c\u54c8\u6469\u6258\u8f66\u4e0a\u7a7f\u8d8a\u6c99\u6f20\uff0c\u5531\u6b4c\u3002"} +{"id": "7003951", "video_name": "08c19027-cfb7-51c0-8118-acc1b61b503d", "text": "\u795e\u79d8\u7684\u5730\u4e0b\u91d1\u8272\u9508\u8ff9\u6591\u6591\u7684\u738b\u56fd\uff0c\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u7ea6\u591a\u6d1b\u592b\u65af\u57fa\u68a6\u5e7b\u822c\u7684"} +{"id": "3005950", "video_name": "745e2b8c-7756-512d-bff3-8da1fceb914c", "text": "\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\u7684\u7231\u60c5\u6545\u4e8b"} +{"id": "7003667", "video_name": "a8d1c849-dde0-5ade-8492-9f40e0265241", "text": "\u6781\u81f4\u8d85\u771f\u5b9e\u3001\u6781\u81f4\u8d85\u8be6\u7ec6\u3001\u6781\u81f4\u8d85\u9510\u5229\u3001\u6781\u81f4\u8d85\u6e05\u6670\u3001\u6781\u81f4\u7279\u5199\u3001\u6b63\u9762\u671d\u5411\u3001\u5168\u8eab"} +{"id": "1005259", "video_name": "60c2a869-3a9b-5432-95b8-751dff771cda", "text": "\u4e00\u4e2a\u53ea\u6709\u8eaf\u5e72\u7684\u7537\u4eba\u3002\u4ed6\u7684\u624b\u81c2\u548c\u817f\u7f3a\u5931\u4e86\u3002\u4ed6\u9a91\u7740\u673a\u52a8\u8f66\u3002\u4ed6\u5f88\u5feb\u3002"} +{"id": "2007373", "video_name": "81541758-94f5-5206-9a75-1bc836252603", "text": "\u660e\u6708\u7167\u8000\u53cc\u7aef\u3002"} +{"id": "2007309", "video_name": "cf47b64d-2649-575a-9aa0-9199fb8dad5b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u4f18\u96c5\u7684\u7f8e\u4eba\u9c7c\u5728\u57ce\u5e02\u4e2d\u6e38\u6cf3\u3002\u5979\u6709\u7740\u957f\u957f\u7684\u6d53\u5bc6\u91d1\u53d1\uff0c\u84dd\u8272\u7684\u9cde\u7247\uff0c\u4e00\u6761\u7eff"} +{"id": "3006211", "video_name": "95250ef4-7b24-5dd9-9c9a-e97dff691775", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u6c34\u7075\u5b9e\u73b0\u4ed6\u4eec\u613f\u671b\u7684\u5f62\u8c61\uff0c\u5e26\u6709\u795e\u79d8\u7684\u6c1b\u56f4\u3002\u786e\u4fdd\u5b83\u4f20\u8fbe\u51fa\u540e\u679c\u7684\u6982\u5ff5\u3002"} +{"id": "6002660", "video_name": "079b1e83-5373-5aba-9531-4347e6df4eda", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\uff0c\u5728\u7ebd\u7ea6\u5e02\u591c\u665a\u8d70\u8def\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "0004719", "video_name": "0de9dd78-ca9d-570d-867a-2bae12810bbb", "text": "\u4eba\u4eec\u5728\u7f8e\u4e3d\u7684\u57ce\u5821\u91cc\u8df3\u534e\u5c14\u5179\u3002"} +{"id": "1005959", "video_name": "6d82ece5-e992-51df-9af5-ec299d02f578", "text": "\u6765\u81ea\u5929\u5802\u7684\u7f8e\u4e3d\u5929\u4f7f\uff0c\u62e5\u6709\u84dd\u8272\u7684\u773c\u775b\u3001\u7fbd\u7ffc\u3001\u767d\u8272\u7684\u8863\u670d\u548c\u767d\u8272\u7684\u77ed\u9774\u3002\u4ed6"} +{"id": "3006034", "video_name": "7c5661d2-6ac9-5034-b169-b6c69cd363bb", "text": "\u6c34\u4e0a\u8df3\u821e\u7684\u732b\uff0c\u9c7c\u62cd\u7167\uff0c\u80cc\u666f\u91cc\u662f\u53f2\u745e\u514b\u5750\u5728\u4e00\u628a\u65e7\u6905\u5b50\u4e0a\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a"} +{"id": "4003443", "video_name": "98387fae-b5c7-560a-b95f-24499cf56af8", "text": "\u68d5\u8272\u5361\u901a\u98ce\u683c\u7684\u732b\u5934\u9e70\u5728\u68ee\u6797\u4e2d\u98de\u7fd4\u3002"} +{"id": "2003998", "video_name": "ba7664d8-070b-5c02-bd8e-68b6ab075e82", "text": "MJO \u4ee5\u4ed6\u673a\u667a\u7684\u8a00\u8f9e\u548c\u5e7d\u9ed8\u7684\u4eba\u751f\u89c2\u800c\u95fb\u540d\u3002"} +{"id": "2006226", "video_name": "fda9ea3b-6094-5787-87c3-2ccb82a778ad", "text": "\u4e00\u8f86\u9ed1\u8272\u7684Lada Granta\u6c7d\u8f66\u9a76\u5165\u4e00\u5ea7\u5e9f\u5f03\u7684\u5de5\u5382\u3002\u5728\u5de5\u5382\u80cc\u666f\u7684\u540e\u5899\u4e0a\uff0c\u753b\u9762\u4e2d\u51fa\u73b0\u4e00\u8f86\u6c7d\u8f66"} +{"id": "3003765", "video_name": "1913d39c-bc29-5d88-afd5-f7665ee5882f", "text": "\u6258\u5c3c\u8001\u864e\u57281980\u5e74\u4ee3\u7684\u72c2\u6b22\u6d3e\u5bf9\u4e0a\uff0c\u662f\u4e00\u4e2a\u771f\u4eba\u52a8\u753b\u89d2\u8272\uff0c1988\u5e74\u7684\u7535\u89c6\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "5001716", "video_name": "945c5c0c-b05b-5bdf-8951-48f136e7ea62", "text": "\u76ae\u514b\u65af\u89d2\u8272\u5728\u516c\u56ed\u91cc\u8df3\u7ef3\u3002"} +{"id": "3004045", "video_name": "84337acd-7775-5e4c-9faf-d04f53671cdc", "text": "\u59b9\u59b9\u5728\u516c\u56ed\u91cc\u8bf4\u8bdd\u3002"} +{"id": "1006925", "video_name": "7ea09e76-b246-535e-807d-7041f11dcbf5", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u624b\u91cc\u62ff\u7740\u7535\u89c6\u9065\u63a7\u5668\u3002\u770b\u8d77\u6765\u5f88\u672a\u6765\u611f\u3002"} +{"id": "8001214", "video_name": "b249b8f3-94fa-570c-b6b2-66ab0194bd63", "text": "\u5361\u8482\u514b\u548c\u5b89\u5609\u4e3d\u63a2\u7d22\u8fd9\u6240\u5927\u53a6\u7684\u5185\u90e8\uff0c\u5076\u7136\u53d1\u73b0\u4e00\u672c\u6563\u53d1\u7740\u5fae\u5f31\u3001\u8d85\u51e1\u5149\u8292\u7684"} +{"id": "6003881", "video_name": "813cf11e-d6e6-5446-9a60-d587e9231f09", "text": "\u514b\u5229\u5965\u5e15\u7279\u62c9\u4e03\u4e16\u548c\u5c4b\u5927\u7ef4\u4e4b\u95f4\u6d77\u6218\u7684\u620f\u5267\u6027\u5f62\u8c61\uff0c\u63cf\u7ed8\u4e86\u6258\u52d2\u5bc6\u7edf\u6cbb\u8005\u7684\u5f3a\u5927"} +{"id": "0006740", "video_name": "32114dcc-3dc6-5fb6-a18a-cd4ef4c4da1a", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u5750\u5728\u5ca9\u77f3\u4e0a\uff0c\u9762\u5bf9\u5f3a\u70c8\u7684\u6d0b\u6d41\u3002"} +{"id": "3003560", "video_name": "d62d97a5-3ee0-577f-b8e8-e1dd402dc72f", "text": "\u8eab\u4f53\u6d3b\u7075\u6d3b\u73b0\uff0c\u8840\u6db2\u903c\u771f\u5730\u6d41\u6dcc\u5728\u98ce\u4e2d\u3002"} +{"id": "3005543", "video_name": "2f1b3258-dde9-57ba-a4e1-9cd7c6447dcf", "text": "\u7ed9\u8fd9\u5f20\u56fe\u7247\u6dfb\u52a0\u8f7b\u5fae\u7684\u52a8\u753b\u6548\u679c\u3002"} +{"id": "1004110", "video_name": "4c197af8-ee49-569d-b389-ba928dfef8fa", "text": "\u89c6\u9891\u7684\u6fc0\u52b1\u80cc\u666f\u3002\u5bbd\u9ad8\u6bd4\u4e3a9:16\u3002"} +{"id": "2007928", "video_name": "92f879dc-c525-584b-b695-1109f54d156a", "text": "\u4ece\u4e0a\u65b9\u6444\u50cf\u5934\u4e0a\u6389\u4e0b\u6765\u7684\u6c99\u62c9\u3002"} +{"id": "1006745", "video_name": "7b75528c-f4b4-54b8-914d-a2b17cab8feb", "text": "\u73b0\u5b9e\u4e3b\u4e49\uff0cHDR\uff0c\u5b66\u6821\uff0c\u9e1f\u77b0\u89c6\u89d2\uff0c\u50cf\u4e00\u9897\u661f\uff0c\u5730\u4e0a\u6709\u9ec4\u53f6\uff0c\u8bb8\u591a\u5b69\u5b50\u5728\u73a9\u800d\u3002"} +{"id": "2006216", "video_name": "2101cff6-92e0-575c-ac5a-1c21fd9dbe0b", "text": "\u514b\u91cc\u5e0c\u90a3\u5728\u6c34\u4e2d\uff0c\u4f46\u6c34\u4e0d\u80fd\u89e6\u78b0\u5230\u514b\u91cc\u5e0c\u90a3\u3002"} +{"id": "0006985", "video_name": "3642bc6e-98f7-5f61-9519-d302c11dc71a", "text": "\u8fd9\u662f\u4e00\u5f20\u5782\u76f4\u6784\u56fe\u7684\u8d85\u903c\u771f\u4e2d\u56fd\u9f99\u753b\uff0c\u9f99\u8eab\u4f18\u96c5\u5730\u76d8\u65cb\u626d\u66f2\u4e8e\u5929\u7a7a\u4e2d\uff0c\u5360\u636e\u6574\u4e2a\u753b\u9762\u800c\u6ca1\u6709\u4e2d"} +{"id": "3006815", "video_name": "7d917ca3-0ae0-53a4-bed4-821fa2efb49b", "text": "\u665a\u4e0a\u6d77\u6d0b\u4e2d\u7684\u6d77\u5578\u548c\u96f7\u66b4\u3002"} +{"id": "0005886", "video_name": "22ccca34-cc76-52cb-b214-04758e57f038", "text": "\u628a\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u8fd9\u5e45\u753b\u52a8\u753b\u5316\u3002"} +{"id": "0003996", "video_name": "014d905b-651f-5dc6-9d8d-6206dcd93f69", "text": "\u6cbf\u9014\uff0c\u4e4c\u9f9f\u548c\u5154\u5b50\u7eca\u5012\u5728\u77f3\u5934\u4e0a\uff0c"} +{"id": "8001219", "video_name": "66735893-3d6c-5ef5-9df7-c35f663a68e1", "text": "\u524d\u5f80\u9ed1\u6d1e\u666f\u8c61\uff0c\u770b\u5230\u65f6\u95f4\u5730\u5e73\u7ebf\u3002"} +{"id": "1005831", "video_name": "6b2ef51e-5933-563c-9562-973f63046b35", "text": "\u730e\u9e70\u62e5\u6709\u5e9e\u5927\u4e14\u975e\u5e38\u5f3a\u58ee\u7684\u808c\u8089\u3002\u4ed6\u8eab\u7a7f\u9ed1\u8272\u76d4\u7532\uff0c\u624b\u6301\u673a\u67aa\uff0c\u8eab\u540e\u662f\u57c3\u53ca\u56fd"} +{"id": "0005046", "video_name": "13b3f5d0-cfc5-5914-9295-39eeb3db8f28", "text": "\u5bbd\u955c\u5934\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\uff0c\u7537\u4eba\u5728\u591c\u665a\u5916\u9762\u7684\u9910\u9986\u524d\u8d70\u8fc7\uff0c\u9752\u84dd\u8272\u548c"} +{"id": "7003776", "video_name": "683b5135-13c7-5cd4-b55e-2d62129a9946", "text": "\u955c\u5934\u5728\u65e9\u4e0a\u4e03\u70b9\u6162\u6162\u5730\u79fb\u5411\u6df1\u6df1\u7684\u5c71\u8c37\uff0c\u6ee1\u662f\u7eff\u8272\u690d\u7269\uff0c\u975e\u5e38\u903c\u771f\u3001\u7f8e\u5999\u3001"} +{"id": "6004120", "video_name": "442008fd-73ec-5a77-b46c-eca65a8e041f", "text": "\u4e00\u4e2a\u6709\u6559\u517b\u7684\u5c3c\u65e5\u5229\u4e9a\u7537\u4eba\u5728\u4ed6\u7684\u519c\u573a\u4e30\u6536\u65f6\u7948\u7977\u3002"} +{"id": "3005128", "video_name": "1a409976-1abf-552f-9166-88a410ed2645", "text": "\u6d77\u5996\u6bc1\u574f\u8239\u53ea\uff0c\u7532\u677f\u89c6\u89d2\uff0c\u7535\u5f71\u7279\u6548\u3002"} +{"id": "6002277", "video_name": "cd4e7e3b-b006-578e-b9b5-7156b9d4ea68", "text": "\u4e00\u4e2a\u897f\u90e8\u5c0f\u9547\uff0c\u8857\u9053\u4e0a\u670919\u4e16\u7eaa\u7684\u4eba\u53e3\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "4002492", "video_name": "e30836b0-2315-57a8-92d3-2b378814ac9b", "text": "\u7528\u89c6\u89c9\u5438\u5f15\u4eba\u7684\u65b9\u5f0f\u521b\u4f5c\u4e00\u4e2a\u542b\u6709\u6545\u4e8b\u5bd3\u610f\u7684\u5f62\u8c61\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u8349\u5730\u5143\u7d20\u3002"} +{"id": "2005724", "video_name": "47c679a0-be15-5fe2-b8f5-cbadc7a0091e", "text": "\u5728\u5916\u661f\u68ee\u6797\u4e2d\u6f02\u6d6e\u7740\u95ea\u4eae\u7684\u6c34\u6bcd\u3002"} +{"id": "2004013", "video_name": "212bda1d-2a83-5ac4-865e-0e60cfc8d2fb", "text": "\u4eba\u4eec\u5728\u5ba2\u5385\u91cc\u5403\u7740\u76d2\u996d\uff0c\u80cc\u666f\u91cc\u6709\u6392\u653e\u7740\u6392\u706f\u5e86\u795d\u5370\u5ea6\u5149\u660e\u8282\u3002"} +{"id": "6004612", "video_name": "f8c3644e-d863-5d57-a78d-a1fd954e8bb3", "text": "\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u8bb2\u6545\u4e8b\u3002"} +{"id": "7002508", "video_name": "f9341c3d-61e8-598d-9df8-7aaec4e9d55f", "text": "\u63cf\u8ff0 Tricky \u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5230\u8fbe\u4e00\u6761\u95ea\u95ea\u53d1\u5149\u7684\u6cb3\u6d41\u3002\u5c55\u793a\u4ed6\u4eec\u8df3\u4e0b\u6765\u6b23\u8d4f\u666f\u8272\u3002\u7a81\u51fa\u4ed6\u4eec\u60ca\u8bb6"} +{"id": "2004968", "video_name": "0c97ae6a-6a3f-50cf-b2e4-a0e158a6aafd", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u590d\u53e4\u56fe\u4e66\u9986\u9605\u8bfb\u4e66\u7c4d\u3002"} +{"id": "8003828", "video_name": "75751fba-92bf-5829-ac62-47bd5c7ea773", "text": "\u73b0\u5b9e\u76844K\uff0c\u4e00\u4e2a\u9a91\u9ed1\u8272\u6469\u6258\u8f66\u7684\u7537\u4eba\uff0c\u7ea2\u8272\u5939\u514b\u3002"} +{"id": "1003920", "video_name": "48695f33-11aa-5513-89cc-594daea8b6aa", "text": "19\u4e16\u7eaa\u4f26\u6566\u7684\u4e0b\u96ea\u5723\u8bde\u8857\u666f"} +{"id": "0006785", "video_name": "3321fa91-1681-5b39-9987-b51cf48ae83f", "text": "\u5728\u821e\u53f0\u4e0a\u6234\u7740\u6076\u9b54\u9762\u5177\u6f14\u594f\u91cd\u91d1\u5c5e\u97f3\u4e50\u7684\u4e50\u961f\uff0c\u4e3b\u5531\u4e00\u53ea\u624b\u6307\u5411\u89d2\uff0c\u5409\u4ed6\u624b\u4eec\u968f"} +{"id": "1004961", "video_name": "5ba45e7f-822b-526f-a0cb-52b90970ae8b", "text": "\u4e00\u4e2a\u6d6e\u5728\u592a\u7a7a\u4e2d\u89c2\u6d4b\u5730\u7403\u7684\u5973\u4eba\uff0c\u5979\u6709\u7ea2\u8272\u7684\u5934\u53d1\uff0c\u80cc\u666f\u662f\u9ed1\u8272\u7684\uff0c\u661f\u661f\u5fae\u5f31\u3002"} +{"id": "7003483", "video_name": "f9cddcef-1578-52be-bf25-3b6053fe4c41", "text": "\u7b80\u5355\u7684\u54c1\u724c\u6807\u5fd7\uff0c\u7528\u4e24\u4e2a\u5b57\u6bcd P \u548c L \u7cbe\u81f4\u5730\u8bbe\u8ba1\u3002"} +{"id": "2007146", "video_name": "c00b589f-f8f6-545c-9873-993011174134", "text": "\u8d85\u7ea7\u53d8\u7126\uff0c\u773c\u775b\u805a\u7126\u5728\u4e2d\u5fc3\uff0c\u95ed\u4e0a\u3002"} +{"id": "4002812", "video_name": "0037d2a8-0d3f-5aab-bcba-5ceee37068d3", "text": "\u89c6\u9891\u4e2d\u7684\u300a\u7edd\u547d\u6bd2\u5e08\u300b\u6d77\u68ee\u4f2f\u683c\u5728\u62bd\u5c49\u91cc\u627e\u679c\u51bb\u7cd6\uff0c\u8d28\u91cf\u9ad8\u3002"} +{"id": "6003394", "video_name": "79ec8641-5a30-5ea8-a584-903d7a2ce78f", "text": "\u4e00\u4e2a\u82f1\u96c4\u6124\u6012\u5730\u4e3e\u8d77\u4ed6\u7684\u624b\u3002\n\nSource sentence: The sun sets over the horizon. \n\u592a\u9633\u5728\u5730\u5e73\u7ebf\u4e0a\u843d\u4e0b\u3002"} +{"id": "7003351", "video_name": "1bf775dc-54c4-5107-a743-290978f9c00a", "text": "\u5546\u4eba\u4eec\u6536\u62fe\u597d\u624b\u63d0\u7bb1\u51c6\u5907\u79bb\u5f00\u3002"} +{"id": "7003207", "video_name": "9b25c966-0517-5b8f-b46d-5954db8d286f", "text": "Source sentence: Rafik\u7ea2\u8272\u7684\u590d\u6d3b\u65e5\n\nTranslated sentence: \u62c9\u83f2\u514b\u7684\u590d\u6d3b\u65e5\u662f\u7ea2\u8272\u7684\u3002"} +{"id": "8003040", "video_name": "79dc9588-0c55-552a-b667-f35893cdceae", "text": "\u8428\u62c9\u548c\u9a6c\u514b\u5206\u4eab\u6d6a\u6f2b\u665a\u9910\u7684\u7231\u60c5\u6545\u4e8b\u3002\u8721\u70db\u5728\u684c\u4e0a\u6447\u66f3\uff0c\u4ed6\u4eec\u624b\u7275\u624b\u5750\u5728"} +{"id": "4004526", "video_name": "61d09332-48c1-579d-83d1-7045f9addc12", "text": "\u5728\u79cb\u5929\u7684\u68ee\u6797\u4e2d\uff0c\u4e00\u4e2a\u5e7b\u60f3\u7684Minecraft\u6e38\u620f\u8005\u7684\u4e50\u56ed\uff0c\u5b69\u5b50\u4eec\u5728\u73a9\u6e38\u620f\u673a\uff0c\u508d\u665a\u65f6\u5206\uff0c"} +{"id": "4002745", "video_name": "96f72a6f-a97a-509a-93b1-a1aad70ae417", "text": "\u4e00\u4e2a\u50cf\u9884\u544a\u7247\u4e00\u6837\u7684\u526a\u8f91\uff0c\u4ecb\u7ecd\u4e86Netflix\u7cfb\u5217\u300a\u5f71\u5b50\u9aa8\u300b\u7684\u97f3\u4e50\u5267\u3002"} +{"id": "8001981", "video_name": "5a38bec3-9bc3-513d-b6b9-51c4dd7036bc", "text": "\u4e00\u4f4d\u9ed1\u8272\u5377\u53d1\u3001\u7a7f\u7740\u84dd\u8272\u8fd0\u52a8\u886b\u7684\u6210\u5e74\u4eba\uff0c\u7537\u5b69\u6b63\u9a7e\u9a76\u55b7\u6c14\u5f0f\u6ed1\u96ea\u8f66\u7a7f\u8d8a\u96ea\u5730"} +{"id": "2006812", "video_name": "d1266a07-851e-5551-9391-b98730ff7568", "text": "\u4ed6\u671b\u7740\u6302\u5728\u623f\u5b50\u524d\u9762\u7684\u90ae\u7bb1\uff0c\u53d1\u73b0\u91cc\u9762\u6ca1\u6709\u90ae\u4ef6\uff0c\u611f\u5230\u5f88\u96be\u8fc7\u3002"} +{"id": "2006233", "video_name": "f36cb8d2-a0dc-53a5-aa19-a546feab3138", "text": "\u521b\u4f5c\u4e00\u4e2a\u53e4\u57c3\u53ca\u4e3b\u9898\u76843D\u52a8\u753b\uff0c\u5305\u542b\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\u89d2\u8272\uff0c\u5c55\u73b0\u91d1\u5b57\u5854\u3001\u8c61\u5f62\u6587\u5b57\u548c\u70ed\u95f9\u7684\u5e02\u573a"} +{"id": "8002210", "video_name": "8a9d505f-3d45-537a-8920-42deb9f87522", "text": "\u4e00\u5f20\u5973\u6027\u5728\u5de5\u5382\u91cc\u7f1d\u7eab\u7684\u56fe\u7247\u3002\u51e0\u4e2a\u4eba\u6b63\u5728\u5fd9\u788c\u5de5\u4f5c\u3002\u4e00\u70b9\u9633\u5149\u900f\u8fdb\u6765\uff0c\u6709\u4e9b\u5973\u6027\u5728\u4e92\u76f8\u4ea4\u8c08\uff0c"} +{"id": "0005700", "video_name": "1fa73acb-4b89-574f-9de6-93d62e018349", "text": "\u5730\u94c1\u5217\u8f66\u5728\u5730\u4e0b\u5feb\u901f\u901a\u8fc7\u3002"} +{"id": "3004502", "video_name": "dd05d3b5-2614-5709-98e1-52b118df8d7f", "text": "80\u5e74\u4ee3\u5408\u6210\u6ce2\u6d6a\u573a\u666f\uff0c\u5730\u5e73\u7ebf\u548c\u5c71\u8109\u3002"} +{"id": "4004885", "video_name": "3257d6b1-6b65-5a1f-b2f7-8b78452aa8d5", "text": "\u82f1\u6587\u53e5\u5b50\uff1a Montage of the heroes navigating through an otherworldly landscape, confronting alien creatures, and using their unique skills to overcome obstacles.\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u4eec\u7a7f\u8d8a\u5f02"} +{"id": "0004308", "video_name": "06d4db12-cab0-5072-8ffe-ed743be0d44b", "text": "\u6cb9\u753b\u827a\u672f\u98ce\u683c\u3002\u6ee1\u5e06\u7684\u4e09\u6845\u5e06\u8239\u5728\u590f\u65e5\u7834\u6d6a\u524d\u8fdb\u3002"} +{"id": "3004404", "video_name": "5dad7d85-0750-5d3f-a404-fdf020a7c119", "text": "\u4e00\u4e2a\u7a7f\u7740\u7834\u65e7\u8863\u670d\u3001\u5927\u7ea680\u5c81\u7684\u8001\u4eba\u5750\u5728\u6728\u6905\u4e0a\uff0c\u623f\u95f4\u7684\u73af\u5883\u770b\u8d77\u6765\u80ae\u810f\u548c\u9648\u65e7"} +{"id": "3006782", "video_name": "d47d92db-eeca-5404-8396-521d9d132f3d", "text": "\u4e00\u53ea\u534e\u4e3d\u7684\u9ed1\u4e4c\u9e26\u8715\u53d8\u6210\u4e00\u53ea\u60ca\u4eba\u7684\u718a\u718a\u706b\u7130\u51e4\u51f0\u3002"} +{"id": "6003545", "video_name": "f4f5eedf-2fcc-536f-8f00-38e201724ec8", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u7a7f\u7740\u9ed1\u8272\u793c\u670d\uff0c\u5728\u96e8\u4e2d\u5f00\u8f66\u3002"} +{"id": "0004107", "video_name": "034effc7-07a7-5b4d-bf04-0f94e7507859", "text": "\u4e00\u4e2a\u5206\u8eab\u53d8\u5f62\u6210\u4e3a\u5176\u4eba\u7c7b\u5f62\u6001\uff0c\u7535\u706b\u82b1\u7167\u4eae\u4e86\u8fd9\u4e2a\u53d8\u5f62\u3002\u6162\u52a8\u4f5c\u3002"} +{"id": "1005359", "video_name": "6289cd6a-a288-5fff-9673-927cda548ce8", "text": "\u5c97\u4f4d\uff1a\u8235\u624b\u503c\u73ed\n\u8f6c\u573a\u5230\u8bf4\u5531\u6b4c\u624b\u63a5\u66ff\u8235\u624b\u503c\u73ed\uff0c\u9a7e\u9a76\u8239\u53ea\u3002\n\u5229\u7528\u89c6\u89c9\u624b\u6bb5\u4f20\u8fbe\u5b88"} +{"id": "3006874", "video_name": "111afc51-fbbc-53de-ad0a-b1122a18ce38", "text": "\u5728\u5f69\u8679\u6751\u7684\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53ebKian\u7684\u7537\u5b69\u3002Kian\u662f\u4e00\u4e2a\u5bcc\u6709\u60f3\u8c61\u529b\u7684\u5b69\u5b50\uff0c\u603b"} +{"id": "1006446", "video_name": "760556d5-056d-5ff7-a51a-2daf7e5fdcdc", "text": "\u60f3\u8c61\u4e00\u4e0b\u4e39\u9ea6\u5546\u5e97\u4ee5\u7070\u5ea6\u3001\u76ae\u514b\u65af\u98ce\u683c\uff0c16:9 \u7684\u65b9\u5f0f\u5448\u73b0\u3002"} +{"id": "1003849", "video_name": "46eff4c9-f061-523b-b0ad-ae7cf5528055", "text": "\u9a6c\u514b\u7528\u957f\u89c6\u9891\u62cd\u6444\u4e86\u5854\u5409\u9a6c\u54c8\u5c14\u7684\u65e0\u4eba\u673a\u89c6\u89d2\u3002"} +{"id": "1005918", "video_name": "6cb7232a-e739-528d-84f5-db32ca7161b4", "text": "\u66f4\u9ad8\u7ea7\u7684\u9636\u5c42\uff0c\u975e\u5e38\u9ad8\u6863\u7684\u98ce\u683c\uff0c\u6709\u4e00\u70b9\u4eac\u5267\uff0c\u56db\u4e2a\u4eba\u6253\u9ebb\u5c06\u3002"} +{"id": "3004695", "video_name": "e18c4998-9252-5fba-ae73-9b675156b492", "text": "\u6d77\u9f9f\u5728\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4e2d\u6e38\u52a8\u3002"} +{"id": "6004974", "video_name": "01b2dc86-6090-5168-ae47-561bb378d940", "text": "\u9a6c\u4e01\u592b\u4eba\u5c06\u5bb6\u91cc\u6539\u9020\u6210\u4e00\u4e2a\u8212\u9002\u7684\u573a\u6240\uff0c\u4f9b\u5f53\u5730\u4eba\u805a\u4f1a\u4f7f\u7528\u3002"} +{"id": "0006012", "video_name": "24f983e6-c068-512a-8afe-22061b57fca0", "text": "\u58a8\u897f\u54e5\u8857\u5934\u7684\u673a\u5668\u4eba\u590d\u53e4\u821e\u8e48\u3002"} +{"id": "2005446", "video_name": "b0250f0d-e610-5d65-9f87-e66f0bf4ff9a", "text": "\u9ed1\u67f3\u5728Dota 2\u4e2d\u548c\u5c60\u592b\u4e00\u8d77\u884c\u8d70"} +{"id": "7002932", "video_name": "0538fe89-98ec-5e9f-bf3c-5c4d011e5bf3", "text": "\u5236\u4f5c\u4e00\u53ea\u9f99\uff0c\u6765\u81ea\u300a\u9a6f\u9f99\u9ad8\u624b\u300b\u3002"} +{"id": "4004649", "video_name": "31d033a8-0643-5250-a8a6-a740e9e6d02b", "text": "\u80cc\u666f\u4e2d\u6709\u4e0a\u5e1d\u9f13\u638c\uff0c\u63a5\u53d7\u8005\u6b63\u5728\u5e86\u795d\u4e00\u4e2a\u6210\u5c31\u3002"} +{"id": "7004320", "video_name": "593479e0-a9d1-5fb4-beee-fa19ff64ce9c", "text": "\u73b0\u5b9e\u7f8e\u7684\u5973\u5b69\uff0c\u80cc\u666f\u4f18\u7f8e\u81ea\u7136\u3002"} +{"id": "5001413", "video_name": "92ba7b68-286a-5617-9d72-1f6090db3fca", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u6b63\u5728\u7528\u4e00\u4e2a\u5927\u676f\u5b50\u559d\u65e9\u6668\u7684\u5496\u5561\uff0c\u5e76\u5403\u9762\u5305\u7247\u3002"} +{"id": "3006840", "video_name": "2454e2ef-e10b-56c6-a6df-10304459c6e4", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u548c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u624b\u7275\u624b\u4e00\u8d77\u8d70\u3002 \n\nSource sentence: The sun is setting behind the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "7002314", "video_name": "993cb97a-1c94-55c6-992d-6fc51599c7ac", "text": "\u5728\u8d5b\u535a\u670b\u514b\u4e1c\u4eac\u7684\u5e99\u5b87\u9644\u8fd1\u7684\u5e02\u573a\u4e0a\u6709\u4e00\u540d\u5973\u6027\uff0c\u5411\u53f3\u79fb\u52a8\u955c\u5934\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u5149\u7ebf\uff0c"} +{"id": "0003242", "video_name": "39e166aa-4915-5841-be5c-4529f4165e2d", "text": "\u521b\u9020\u4e00\u53ea\u98de\u884c\u7684\u65b0\u5a18\u753b\u50cf\u3002"} +{"id": "3003171", "video_name": "81b91621-c7d6-5489-8861-d0029d3bb65a", "text": "\u4eba\u7c7b\u53d1\u751f\u5b66\uff0c\u6307\u7684\u662f\u76f4\u7acb\u4eba\u9010\u6e10\u6f14\u5316\u6210\u4e3a\u73b0\u4ee3\u4eba\u7684\u8fc7\u7a0b\u3002"} +{"id": "1003710", "video_name": "44731de4-bfd6-548f-9be8-88ebdabd48ea", "text": "\u9ea6\u5f53\u52b3\u7684\u7f57\u7eb3\u5fb7\u00b7\u9ea6\u5f53\u52b3\u7684\u6050\u6016\u9762\u5b54\u6b63\u9762\u8bf4\u8bdd\u3002"} +{"id": "1004172", "video_name": "4d3cf2a8-329b-5b7a-8f73-556eeee45fae", "text": "\u591c\u8def\u4e0a\u7684\u9b3c\u9b42\uff0c\u6050\u6016\u7684\u773c\u775b\uff0c\u624b\u6162\u6162\u5730\u79fb\u52a8\uff0c\u4ee4\u4eba\u5728\u5348\u591c\u65f6\u5206\u770b\u5230\u540e\u611f\u5230\u5bb3"} +{"id": "1005398", "video_name": "63376c72-6f14-5d98-ae02-ecc3182573dd", "text": "\u6a59\u8272\u7684\u7403\u5728\u5979\u624b\u4e2d\u65cb\u8f6c\u3002\u5b87\u5b99\u5728\u5979\u5468\u56f4\u6f14\u53d8\uff0c\u975e\u5e38\u6d3b\u8dc3\u3002\u5979\u7ad9\u5f97\u6beb\u4e0d\u52a8\u3002"} +{"id": "7004893", "video_name": "d00cd75b-c747-56c9-a739-9fb3775e1743", "text": "\u6ce2\u97f3787\u4ee54K\u6e05\u6670\u5ea6\u7a7f\u8d8a\u65e5\u843d\u3002"} +{"id": "4004002", "video_name": "e833a5fe-dda6-50d7-92de-23e79066ae7b", "text": "\u7528\u54c8\u5229\u6ce2\u7279\u62cd\u7684\u6050\u6016\u7535\u5f71\u573a\u666f"} +{"id": "0003141", "video_name": "37f6555f-360a-50a4-b46a-ddfe75c8fc9c", "text": "\u718a\u5b9d\u5b9d\u5728\u4e1b\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "0003859", "video_name": "44bed94d-fec5-534e-9961-f7875787eab0", "text": "\u7537\u4eba\uff0c\u68d5\u8272\u5934\u53d1\uff0c\u8d70\u5728\u4e00\u4e2a\u7535\u8111\u623f\u95f4\u91cc\u3002"} +{"id": "2007699", "video_name": "70feec0b-49b3-5eb5-8721-d6e79ec0d615", "text": "\u4e00\u4e2a\u89c6\u9891\u63cf\u8ff0\u4e86\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u5bbd\u655e\u7684\u4ed3\u5e93\u91cc\u3002\u8fd9\u4e2a\u7537\u4eba\u88ab\u770b\u5230\u9ad8\u6548\u5730\u7528\u9ed1\u8272\u5851\u6599\u819c\u5305\u88f9\u4e00\u4e2a\u6258\u76d8\uff0c\u4ed4"} +{"id": "0003716", "video_name": "4248285a-7bc6-5c81-a36c-21154d1060e0", "text": "\u7ef4\u514b\u62c9\u59c6\u53f7\u7740\u9646\u5668\u901a\u8fc7\u5176\u56db\u6761\u817f\u4e0e\u6708\u7403\u63a5\u89e6\uff0c\u5b9e\u73b0\u4e86\u5728\u6708\u7403\u4e0a\u8f6f\u7740\u9646\u3002"} +{"id": "6003089", "video_name": "f3065790-0287-544f-8b14-5e728989d56c", "text": "\u5728\u4e00\u4e2a\u88ab\u6708\u5149\u7167\u4eae\u7684\u9ed1\u6697\u3001\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u5c0f\u5df7\u91cc\uff0c\u521b\u9020\u4e00\u4e2a\u5145\u6ee1\u60ac\u7591\u7684"} +{"id": "1003020", "video_name": "377c77a4-feb4-58a7-959a-0cb70c9930b3", "text": "\u4e3a\u5c0f\u7c73\u7c73\u5bb6\u4fbf\u643a\u5f0f\u5145\u6c14\u5b9d2\u4ea7\u54c1\u5236\u4f5c\u63a8\u5e7f\u89c6\u9891\u3002"} +{"id": "4004198", "video_name": "395e83e3-6837-5d84-bc44-8981db0c0e06", "text": "\u8bfb\u300a\u53e4\u5170\u7ecf\u300b\u548c\u7b14\u6bd4\u5251\u66f4\u6709\u529b\u3002"} +{"id": "0003951", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "\u4e00\u53ea\u624b\u5728\u5408\u6210\u5668\u4e0a\u6f14\u594fC\u5927\u8c03\u548c\u5f26\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "6004051", "video_name": "a1d31e59-7a06-518d-a75a-ceced96fa7b1", "text": "2D\u52a8\u753b\uff0c\u4e00\u4e2a\u7b80\u5355\u7684\u5c0f\u8239\u5728\u4e00\u7247\u4e66\u548c\u7eb8\u7684\u6d77\u6d0b\u4e2d\u822a\u884c\u3002"} +{"id": "7002238", "video_name": "2bb799da-5bc0-5273-841d-fdb9da9f8894", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u70b9\u71c3\u4e00\u652f\u7ea2\u8272\u95ea\u4eae\u7684\u5149\u5251\uff0c\u94f6\u5e55\u611f\u5f3a\uff0c\u7ea2\u8272\u7684\u5149\u8292\uff0c\u9ed1"} +{"id": "7002491", "video_name": "0c0682d9-f2eb-5d22-b711-728c245dcb82", "text": "\u84dd\u8272\u8d5b\u8f66\u5728\u8d5b\u9053\u4e0a\u9ad8\u901f\u884c\u9a76\u3002\u753b\u9762\u6765\u81ea\u5929\u7a7a\u3002\u903c\u771f\u76844K\u5206\u8fa8\u7387\u3002"} +{"id": "7004615", "video_name": "2109b090-f69b-5e75-9edd-74c3cb01dea0", "text": "\u718a\u5728\u5723\u8bde\u6811\u5468\u56f4\u6b22\u5feb\u5730\u8df3\u821e\u3002"} +{"id": "8003885", "video_name": "b273acec-5962-5f46-9a32-890e662ca23a", "text": "\u5a1c\u5965\u7c73\u00b7\u6c83\u8328\u770b\u7740\u6444\u50cf\u673a\u5fae\u7b11\u3002\u6a21\u7cca\u7684\u624b\u6301\u6444\u50cf\u673a\u753b\u9762\uff0c\u626d\u66f2\u7684\u6295\u5f71\u673a\u753b\u9762\u3002\u6000\u65e7"} +{"id": "4004208", "video_name": "6f1cb9cb-56cf-5169-8d98-6b0291b651c3", "text": "\u5236\u4f5c\u4e00\u4e2a1\u5206\u949f\u7684\u89c6\u9891\uff0cVirat Kohli\uff0cLionel Messi\u548cRohit Sharma\u4e00\u8d77\u8df3\u821e\u3002\u8ba9\u5b83\u6709\u73b0\u5b9e\u611f\uff0c\u4ed6\u4eec\u5e94\u8be5\u7a7f\u7740\u81ea\u5df1\u7684"} +{"id": "3004748", "video_name": "383258db-03d8-5be5-a8e3-491951ff5cf4", "text": "\u4e00\u4e2a\u533b\u751f\u7ad9\u5728\u95e8\u53e3\uff0c\u7528\u53f3\u624b\u89e6\u6478\u4ed6\u7684\u4e0b\u5df4\u5e76\u8bf4\u8bdd\u3002"} +{"id": "2005754", "video_name": "06419b6b-6770-56b6-bd28-391e5b9a8900", "text": "\u6545\u4e8b\u4ee5\u7a46\u683c\u5229\u4e1b\u6797\u7537\u5b69\u5728\u4e1b\u6797\u4e2d\u5e73\u9759\u5ea6\u65e5\uff0c\u88ab\u4ed6\u7684\u52a8\u7269\u4f19\u4f34\u5305\u56f4\u800c\u7ed3\u675f\u3002\u4ed6\u5728\u6811\u95f4\u8361"} +{"id": "4002108", "video_name": "1d7dd835-c98d-5ecf-a938-6ab941e37daa", "text": "\u4e00\u4e9b\u8fb9\u7f18\u7406\u8bba\u63d0\u51fa\uff0c\u4ed6\u4eec\u7684\u6280\u672f\u80fd\u529b\u8d85\u8d8a\u4e86\u5e38\u89c4\u7406\u89e3\u3002"} +{"id": "2007643", "video_name": "1094403a-0871-5106-bf0e-7111855567ea", "text": "\u732b\u5728\u6905\u5b50\u4e0a\u5403\u98df\u7269\u3002"} +{"id": "6004904", "video_name": "3117a61d-fdef-5f4e-8e6b-72f4559aef1b", "text": "\u90a3\u5ea7\u8001\u65e7\u7684\u5e9f\u5f03\u623f\u5c4b\u77d7\u7acb\u5728\u5c71\u4e0a\u4fef\u77b0\u7740\u5c0f\u9547\u3002\u5b83\u5df2\u7ecf\u7a7a\u7f6e\u591a\u5e74\uff0c\u6ca1\u6709\u4eba\u6562\u9760\u8fd1"} +{"id": "1006262", "video_name": "72b04e3e-afe4-5cc1-94b9-a449a728485b", "text": "\u7ebd\u7ea6\u5e02\u573a\u666f\u4e2d\u4e00\u7fa4\u6ed1\u677f\u8005\u5728\u6d82\u9e26\uff0c\u5448\u73b0\u51fa2000\u5e74\u4ee3\u5ba1\u7f8e\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u4fe1\u606f\u4e3a\uff1a\u7687\u540e\u533a\u7684\u5b69\u5b50"} +{"id": "1005900", "video_name": "6c79a1f7-858a-5702-b040-09044cea843d", "text": "\u4e2d\u56fd\u53f0\u6e7e\u4eba\u5728\u5de8\u6d6a\u4e2d\u5e73\u9759\u5730\u5212\u6868\uff0c\u4e00\u4e2a\u5de8\u5927\u7684\u9f99\u5728\u4e91\u4e2d\u98de\u7fd4\uff0c4k 16:9\u3002"} +{"id": "2005372", "video_name": "1d9e597a-f2eb-57c7-bf32-4abdd57f71cf", "text": "\u4e00\u67b6\u6709\u65cb\u8f6c\u53f6\u7247\u7684\u7eff\u8272\u76f4\u5347\u673a"} +{"id": "0003838", "video_name": "444959b6-97d5-5c2f-9d7a-a1d53acbd6d7", "text": "\u6d77\u5578\u6d6a\u6f6e\u51b2\u5411\u6d77\u6ee9\uff0c\u6f6e\u6c34\u6c79\u6d8c\u3002"} +{"id": "5001801", "video_name": "f6940bf6-966a-5acc-9fb8-607804b184bc", "text": "\u7528\u5237\u5b50\u6e05\u6d01\u9e82\u76ae\u8fd0\u52a8\u978b\uff0c\u5728\u4e00\u4e2a\u5927\u623f\u95f4\u91cc\u8fdb\u884c\uff0c\u6444\u50cf\u673a\u81ea\u4e0a\u800c\u4e0b\u62cd\u6444\u3002"} +{"id": "8003290", "video_name": "8d356b54-04b7-5229-8a16-58dd8b1e010b", "text": "\u5728\u5927\u7406\u6ec7\u6c60\u65c1\uff0c\u4e00\u7fa4\u9a6c\u5728\u81ea\u7531\u5954\u9a70\uff0c\u5176\u4e2d\u4e00\u5339\u7a81\u7136\u8df3\u5230\u7a7a\u4e2d\u3002"} +{"id": "3004310", "video_name": "383b9a45-bfc5-576a-97de-a125458b7877", "text": "\u9996\u5c14\u56fd\u7acb\u5927\u5b66\u767b\u5c71\u793e\u6807\u5fd7\u56fe\u50cf"} +{"id": "1004400", "video_name": "51590b79-082c-5b47-b44a-cd7d32c6327c", "text": "\u4e00\u4e2a\u62e5\u6709\u7eff\u8272\u773c\u775b\u7684\u7f8e\u4e3d\u91d1\u53d1\u79d8\u4e66\u5728\u5979\u7684\u63a5\u5f85\u53f0\u540e\u6b22\u8fce\u4f60\u3002"} +{"id": "1003207", "video_name": "3afcc9fe-2fd6-582a-adce-f6e532d5400e", "text": "\u4e24\u53ea\u7a7f\u7740\u76ae\u5939\u514b\u7684\u62df\u4eba\u5316\u9cc4\u9c7c\u5728\u7ebd\u7ea6\u5e02\u591c\u665a\u6253\u8d25\u66b4\u5f92\u540e\u9ad8\u4e3e\u53cc\u624b\u5e86\u795d\uff0c"} +{"id": "1005773", "video_name": "6a3dc833-37b4-571d-abbe-4e221a9d1ce6", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5915\u9633\u897f\u4e0b\u65f6\u95ed\u4e0a\u773c\u775b\uff0c\u7279\u5199\u955c\u5934\uff0c\u7f29\u653e\u81f3\u592a\u9633\uff0c\u518d\u7f29\u56de\u7537\u5b69\u53ea\u80fd\u770b\u5230\u9ed1\u6697\uff0c\u4ee5"} +{"id": "6003025", "video_name": "bbc790f7-2ee6-5bc1-9d63-a7a27738e1da", "text": "\u8001\u9f20\u3001\u72ee\u5b50\u548c\u8682\u8681\u4e00\u8d77\u5408\u4f5c\u4fee\u5efa\u4e00\u53e3\u4e95\u3002"} +{"id": "4004755", "video_name": "efa7cd6c-10aa-5e8b-acd2-ffc7c93e9640", "text": "\u5728\u8fd9\u91cc\u4e5f\u6709\u5f88\u591a\u6d77\u9c9c\u548c\u9c7c\u7c7b\u3002\n\nSource sentence: The weather is very hot today. \n\u4eca\u5929\u5929\u6c14\u975e\u5e38\u708e\u70ed\u3002"} +{"id": "3004485", "video_name": "4f40c383-95d4-5ee6-8823-8ada80c93b71", "text": "\u63cf\u8ff0\u7ef4\u8bfa\u8fea\u548c\u5df4\u65af\u5149\u5e74\u63d0\u9192\u96f7\u514b\u65af\u4f5c\u4e3a\u73a9\u5177\u7684\u76ee\u7684\uff0c\u5f3a\u8c03\u8ba9\u5b89\u8fea\u5f00\u5fc3\u7684\u91cd\u8981\u6027\u7684\u89c6"} +{"id": "3003372", "video_name": "a76f19ce-9e9e-5484-884d-503c587dfa71", "text": "\u4e00\u4f4d\u5e74\u8f7b\u6f02\u4eae\u7684\u5973\u4eba\uff0c\u7a7f\u7740\u7ea2\u8272\u8fde\u8863\u88d9\uff0c\u8170\u4ee5\u4e0a\u957f\u53d1\u62ab\u80a9\uff0c\u671b\u7740\u7a97\u5916\uff0c\u770b\u8d77\u6765\u5f88"} +{"id": "0006615", "video_name": "2f94ade9-6b9b-53e2-982a-d0b13bd1f556", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u767d\u8272\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "5001227", "video_name": "9e39da55-a3ee-5715-8f6e-2fc5bcb1980f", "text": "\u90a3\u4e48\uff0c\u4f60\u8fd8\u5728\u7b49\u4ec0\u4e48\u5462\uff1f\u7acb\u5373\u5f00\u59cb\u5229\u7528\u4eba\u5de5\u667a\u80fd\u804a\u5929\u673a\u5668\u4eba\u7684\u529b\u91cf\uff0c\u5c06\u4f60\u7684\u5185\u5bb9\u63d0\u5347\u5230\u65b0\u7684\u9ad8\u5ea6\uff01"} +{"id": "8003041", "video_name": "5ddc972b-b7fd-5c98-a059-513ca2ef58e6", "text": "\u7406\u53d1\u5e08\u5728\u7406\u53d1\u5e97\u526a\u5934\u53d1\uff0c\u5ba2\u4eba\u5728\u770b\u62a5\u7eb8\u3002"} +{"id": "0003944", "video_name": "00436c8c-d9f3-5d89-ae20-786d38742f92", "text": "\u6234\u773c\u955c\u7684\u7537\u5b69\u5728\u5496\u5561\u9986\u9732\u53f0\u4e0a\u665a\u4e0a\u559d\u7740\u661f\u51b0\u4e50\u3002"} +{"id": "6003161", "video_name": "7fc0528c-8fc8-5b3e-87c5-82f19b35979b", "text": "\u5510\u00b7\u8d6b\u5179\u8d39\u5c14\u7279\u5361\u901a\u98ce\u683c\u4e2d\u7684\u6076\u9b54\u3002"} +{"id": "0004162", "video_name": "045aa0fe-0900-56d2-8afc-04671829fe4d", "text": "\u5236\u4f5c\u4e00\u4e2a\u540d\u4e3aFordel\u7684\u5546\u6807\u3002"} +{"id": "0006131", "video_name": "2715d975-d2a4-5e66-b864-fd762c2bf468", "text": "\u4e00\u4f4d\u6df1\u601d\u719f\u8651\u7684\u5973\u6027\uff0c\u8d85\u9ad8\u5206\u8fa8\u7387\uff0c8K\u3002"} +{"id": "8002501", "video_name": "9dc143c1-f790-5903-8ccd-0b529b22f176", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u5c4b\u9876\u4e0a\uff0c\u80cc\u666f\u662f\u57ce\u5e02\u7684\u591c\u666f\u3002"} +{"id": "6003187", "video_name": "5f706390-2279-53d3-a597-1ad4f9097356", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u9ed1\u53d1\u5973\u4eba\u7ad9\u5728\u7f8e\u4e3d\u7684\u58c1\u7089\u65c1\uff0c\u8bb2\u8ff0\u5979\u6709\u591a\u9ad8\u5174\u3002"} +{"id": "8001479", "video_name": "67f5d790-2fb9-5fd7-b51d-275eada26cc5", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u670916K\u4e2a\u5149\u7684\u5206\u5f62\uff0c\u50cf\u8df3\u821e\u7684\u68f1\u955c\u4e00\u6837\u878d\u5408\u5728\u4e00\u8d77\uff0c\u6bd4\u65f6\u95f4\u672c\u8eab\u8fd8\u8981\u5feb\u901f\uff0c\u6700\u7ec8\u5f62"} +{"id": "0005799", "video_name": "216d7632-2443-5b8f-bf22-c9fbdd04e5cd", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u96d5\u5851\u7eb8\u6784\u9020\u7684\u98ce\u683c\u4e2d\u6446\u59ff\u52bf\uff0c\u914d\u7740\u8fc8\u514b\u00b7\u574e\u5e15\u4e4c\u7684\u82b1\u5349\u70b9"} +{"id": "2003660", "video_name": "b8a3af25-da7f-51c4-8db7-a9a0fa6d6835", "text": "\u4e24\u4e2a\u4e9a\u6d32\u7537\u5b50\u56e0\u4e3a\u5e7b\u60f3\u8db3\u7403\u800c\u6253\u67b6\u3002"} +{"id": "6004266", "video_name": "22ea8c35-dcef-5d70-9a26-be32acae318f", "text": "\u5728\u7ebd\u7ea6\u5f00\u51fa\u79df\u8f66\uff0c\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "3006136", "video_name": "24186216-9ebf-57a7-8322-3fe0cffb65b0", "text": "\u8bf7\u4f7f\u7528CMOS\u89c6\u9891\u8bbe\u5907\u62cd\u6444\u671b\u8fdc\u955c\u89c2\u6d4b\u5230\u7684\u661f\u661f\u7167\u7247\u3002"} +{"id": "3004672", "video_name": "c044da56-2fb5-50a4-a8a9-e13972e93b49", "text": "3D\u6253\u5370\u673a\u5236\u9020\u4eba\u7c7b\u5fc3\u810f\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u8fb9\u7f18\u5316\u3002"} +{"id": "0004918", "video_name": "1167d5fc-9e4d-52bc-a92c-29a020afb7db", "text": "\u732b\u5728\u7ebd\u7ea6\u62c9\u5c0f\u63d0\u7434\u5531\u6b4c\u3002"} +{"id": "3004586", "video_name": "bac12417-cd6a-5149-8003-d0bc7eee7b39", "text": "\u5f7b\u5e95\u5b64\u72ec\u7684\u611f\u89c9\u3002"} +{"id": "0006696", "video_name": "313acbc9-fafb-5f2f-865d-ddcf3f9379fd", "text": "\u4e16\u754c\u9886\u8896\u5728\u8054\u5408\u56fd\u4f1a\u8bae\u5ba4\u8fdb\u884c\u8fa9\u8bba\u3002"} +{"id": "5001375", "video_name": "d788e621-d67a-540c-aa39-b7ec487e6e72", "text": "\u753b\u9762\u5145\u6ee1\u4e86\u81ea\u7136\uff0c\u9633\u5149\u5728\u81ea\u7136\u95f4\u6d41\u52a8\u3002\u89c6\u9891\u5e94\u8be5\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "0004119", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "\u54e5\u7279\u98ce\u683c\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u957f\u7740\u84dd\u8272\u7684\u957f\u53d1\u8df3\u821e\u3002"} +{"id": "2003088", "video_name": "0cc3bc9d-73a3-5a29-af26-411adfb59209", "text": "\u4e09\u4e2a\u4eba\u5728\u4e92\u76f8\u4ea4\u8c08\uff0c\u559d\u5496\u5561\uff0c\u6ca1\u6709\u5973\u5b69\u3002"} +{"id": "2006270", "video_name": "a804198a-222e-578b-8c5c-c06551714108", "text": "\u53ef\u7231\u7684\u65b0\u5a18\u548c\u65b0\u90ce\u9aa8\u9abc\u6a21\u578b\uff0c\u897f\u73ed\u7259\u4eba\u7a7f\u7740\u793c\u670d\u548c\u5939\u514b\uff0c\u5934\u6234\u9762\u7eb1\uff0c\u773c"} +{"id": "8002563", "video_name": "c484c902-9b21-593a-b5e1-912f2bacb2c4", "text": "\u4e00\u4e2a\u773c\u6cea\u6253\u5728\u5730\u677f\u4e0a\u7684\u5b69\u5b50\uff0c\u903c\u771f\u7684\u7167\u7247\u822c\u6548\u679c\uff0c\u9c9c\u8273\u7684\u8272\u5f69\u3002"} +{"id": "8002835", "video_name": "3733932a-acba-5540-9e34-d922c56c1683", "text": "\u53a8\u5e08\u51c6\u5907\u6c49\u5821\uff0c\u975e\u5e38\u591a\u6c41\u548c\u5f00\u80c3\u3002"} +{"id": "3004248", "video_name": "27a44f51-d608-5514-a48e-e0b31faafeff", "text": "\u6211\u73b0\u5728\u4e00\u76f4\u60f3\u89c1\u4f60\u3002\n\nSource sentence: Can you help me with this problem? \n\u4f60\u80fd\u5e2e\u6211\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\u5417\uff1f"} +{"id": "2007539", "video_name": "0032a2ee-bfbe-58c6-988c-eab97b886e4f", "text": "\u5305\u62ec\u6d77\u6d6a\u62cd\u6253\u7684\u58f0\u97f3\u548c\u8fdc\u5904\u6d77\u9e1f\u7684\u53eb\u58f0\u3002"} +{"id": "2003920", "video_name": "1739e0f4-3993-5f4f-a0d9-39e773172092", "text": "\u4e3a\u5b83\u521b\u5efa\u9177\u70ab\u7684\u7f51\u7edc\u7528\u6237\u754c\u9762\u3002\u7559\u8a00\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002580", "video_name": "75c1ff83-2194-54e9-9863-bab2bb3951fe", "text": "\u7f13\u6162\u79fb\u52a8\u5e76\u52a0\u5165\u4e00\u4e9b\u52a8\u4f5c\u548c\u626d\u66f2"} +{"id": "0003725", "video_name": "42699eb0-0060-5da3-87f8-7744b779ccbd", "text": "\u585e\u7f2a\u5c14\u00b7L\u00b7\u6770\u514b\u900a\u9970\u6f14\u5c3c\u514b\u00b7\u5f17\u745e\uff0c\u7ad9\u5728\u96e8\u4e2d\u3002"} +{"id": "0004284", "video_name": "065ad5f0-8edc-5f2f-be0d-f7feea18b5d3", "text": "\u5728\u6559\u5802\u524d\u8ba9\u4e00\u4e2a\u5deb\u5e08\u5bf9\u7740\u6444\u50cf\u5934\u8bf4\u8bdd\u3002"} +{"id": "2006163", "video_name": "2046d907-06dd-5ada-ab5a-c7fd6bb0b7fc", "text": "\u5728\u591c\u665a\u7684\u57ce\u5e02\u4e2d\u5728\u96e8\u4e2d\u5954\u8dd1\uff0cAR16:9\uff0cGS15\uff0c\u52a8\u4f5c4\uff0c\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002"} +{"id": "7004482", "video_name": "985c3401-67f1-54f0-8bdf-b0f0a841408f", "text": "Mercedes AMG \u91d1\u8272\u8f66\u8eab\u5728\u6ee1\u662f\u5934\u9aa8\u7684\u5730\u9762\u4e0a\u884c\u9a76\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6002919", "video_name": "ab342cbd-faca-535f-8a98-253c097b857d", "text": "\u7a7f\u7740\u5934\u5dfe\u7684\u7f8e\u4e3d\u5973\u58eb\u6b63\u5728\u5229\u7528\u4eba\u5de5\u667a\u80fd\u521b\u4f5c\u65f6\u5c1a\u8bbe\u8ba1\u3002"} +{"id": "2006157", "video_name": "259db7a7-09c4-5201-8508-f40f9dc16973", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6c99\u6f20\u72d0\u72f8\u5728\u6492\u54c8\u62c9\u91d1\u5b57\u5854\u4e2d\u8ff7\u8def\u4e86\u3002"} +{"id": "3006776", "video_name": "24d67906-bc63-5acc-938a-11a9f6e93cae", "text": "\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\uff0cOnePunchMap\u7684\u4e3b\u89d2Saitama\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u62cd\u7167\u3002"} +{"id": "3006838", "video_name": "25dff7d9-1dd7-5478-bb62-b93e0628b27b", "text": "\u5236\u4f5c\u4e00\u4e2a\u5305\u542bRGB\u706f\u548c\u7535\u8111\u4ee5\u53ca\u5728\u7535\u8111\u4e0a\u64ad\u653e\u89c6\u9891\u7684\u6e38\u620f\u548c\u76f4\u64ad\u80cc\u666f\u623f\u95f4\uff0c\u5c06\u5176\u5236\u4f5c\u4e3a4K\u7684GIF\u3002"} +{"id": "0004948", "video_name": "120d06bd-0546-5815-95be-9826db5e6743", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u53d8\u6210\u6c34\u6bcd\u3002"} +{"id": "8001684", "video_name": "44a4166c-924d-57f1-b70e-4dcecdaf6971", "text": "\u8389\u8389\u548c\u4f69\u5854\u5c14\u5728\u82b1\u56ed\u7684\u4e00\u4e2a\u7279\u522b\u89d2\u843d\u89c1\u8bc1\u7740\u5b63\u8282\u7684\u53d8\u5316\uff0c\u79cb\u53f6\u53d8\u6210\u4e86\u51ac\u5929\u7684\u96ea\u82b1"} +{"id": "4004569", "video_name": "6cad4f40-e726-528c-a53e-2f04d23a487d", "text": "\u4e00\u4f4d\u5bb3\u6015\u7684\u6e38\u6cf3\u8005\u5728\u5df4\u897f\u6c99\u6ee9\u9003\u8dd1\uff0c\u9003\u79bb\u4e00\u53ea\u5de8\u5927\u7684\u9ca8\u9c7c\u3002"} +{"id": "1006616", "video_name": "7946f34d-368a-5aa7-b9ad-b614dbf4c98e", "text": "1\u5206\u949f\u7684\u83ab\u8fea\u8d70\u5728\u8857\u5934\u7684\u89c6\u9891\uff0c\u5177\u6709\u7535\u5f71\u611f\u548c\u771f\u5b9e\u611f\u3002"} +{"id": "5001146", "video_name": "c5e5a2a5-6c8e-5643-a179-9ff650534325", "text": "\u7528\u7f8a\u6bdb\u5236\u6210\u7684\u7537\u4eba\u81ea\u5df1\u7f1d\u5236\u62fc\u5e03\u6050\u6016\u3002"} +{"id": "8001914", "video_name": "5fed8761-c8a7-546b-a190-a4d936529cb8", "text": "\u6ed1\u677f\u624b\u5728\u95ea\u70c1\u7684\u8857\u706f\u4e0b\u6ed1\u884c\uff0c\u5e7f\u9614\u7684\u955c\u5934\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u65e5\u843d\uff0cHDR\uff0c8k\uff0c\u4f53\u79ef\u5149\u7167\u3002"} +{"id": "0005282", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "\u51ac\u5b63\u96fe\u5929\u91cc\u5ba2\u5385\u91cc\u7684\u6050\u6016\u623f\u5c4b\uff0c\u573a\u666f\u6050\u6016\u3002"} +{"id": "7003490", "video_name": "0685601e-9950-5807-ab57-1dc63d1489d4", "text": "\u7bee\u7403\u5728\u4f53\u80b2\u9986\u5730\u677f\u4e0a\u6eda\u5411\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\u6784\u56fe\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u3002\n\nSource sentence: The new restaurant in town has a diverse menu with"} +{"id": "8003945", "video_name": "1827ebac-eff7-5918-b8fa-e5b2facba4d5", "text": "\u590f\u5929\uff0c\u4e00\u4f4d\u5de5\u4eba\u5728\u8857\u4e0a\u5de5\u4f5c\u5e76\u6e05\u7406\u8857\u9053\u3002\u4ed6\u7684\u5185\u5fc3\u91cc\u6709\u53e6\u4e00\u4e2a\u4eba\uff0c\u62e5\u6709\u4e00\u8f86\u8c6a\u8f66\u3002"} +{"id": "6003146", "video_name": "236a9e04-ad42-5a50-a2a1-58f881aae196", "text": "\u5927\u9ed1\u732b\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "6004987", "video_name": "42a1732d-824a-5d27-bece-d00f6b68fd61", "text": "\u5b69\u5b50\u4eec\u7684\u6545\u4e8b\u91cc\u6709\u4e00\u53ea\u5584\u826f\u5fe0\u8bda\u7684\u72d7\uff0c\u540d\u53eb\u9a6c\u514b\u65af\u3002"} +{"id": "6003481", "video_name": "40e14a0a-a1ff-5637-894f-97f94173a1f2", "text": "\u5c0f\u72d7\u5728\u96e8\u4e2d\u7684\u52a8\u753b\u5f88\u60b2\u4f24\uff0c\u975e\u5e38\u60b2\u4f24\u3002"} +{"id": "8003937", "video_name": "34347701-e38b-5287-b24f-ede73e32946b", "text": "\u65b9\u5757\u5728\u5730\u677f\u4e0a\u6eda\u52a8\u7684\u6458\u8981\u80cc\u666f\u5fc5\u987b\u662f\u900f\u660e\u7684\uff0c\u65b9\u5757\u7684\u989c\u8272\u5fc5\u987b\u662f\u84dd\u7eff\u8272\u3002"} +{"id": "2003210", "video_name": "927e9960-7913-5cec-8bad-dde89c24a266", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u63cf\u7ed8\u4e86X\u5148\u751f\u4e0e\u4ed6\u7684\u79fb\u52a8\u8bbe\u5907\u72ec\u5904\u65e5\u591c\uff0c\u4eab\u53d7\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u5185\u5bb9\u3002"} +{"id": "2007806", "video_name": "87306e93-502b-540d-a556-246444f6440e", "text": "\u4e00\u53ea\u9e7f\u6b63\u5728\u548c\u5b83\u7684\u5bb6\u4eba\u4e00\u8d77\u79fb\u52a8\u3002"} +{"id": "1005152", "video_name": "5ef2af16-f8cd-5bb5-b786-bcf07f7cfe62", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u5728\u57ce\u5821\u82b1\u56ed\u91cc\u5ea6\u8fc7\u4e86\u9b3c\u9b45\u4e07\u5723\u8282\uff0c16:9\u5bbd\u5c4f\uff0c\u8d85\u903c"} +{"id": "6002405", "video_name": "6f58387b-4d6a-5112-a4eb-4c0787a4174d", "text": "\u4e00\u53ea\u767d\u9e3d\u5728\u6c34\u4e0a\u65b9\u3002"} +{"id": "6003274", "video_name": "051220b7-d08a-5868-99c5-8d7c0faa1d9b", "text": "\u4f7f\u4ed6\u770b\u8d77\u6765\u50cf\u662f\u5728\u4e0e\u300a\u8857\u5934\u9738\u738b\u300b\u548c\u66b4\u5f92\u640f\u6597\u3002"} +{"id": "2005986", "video_name": "c52bb567-a2ec-5fa9-9057-cd424508500f", "text": "\u4e00\u4f4d\u5341\u51e0\u5c81\u7684\u5973\u5b69\uff0c\u5979\u77ed\u5377\u7684\u68d5\u8272\u5934\u53d1\u5728\u6bcf\u4e00\u4e2a\u811a\u6b65\u8df3\u52a8\u4e2d\u53cd\u5f39\uff0c\u5728\u5c0f\u9547\u7684\u8857\u9053\u4e0a\u9003"} +{"id": "8003110", "video_name": "94984b1d-6655-545e-a8e1-852e358e4262", "text": "\u60ca\u6050\u7684\u5b69\u5b50\u4eec\u4ece\u5723\u8bde\u8001\u4eba\u90a3\u91cc\u9003\u8d70\uff0c\u51ac\u5929\uff0c\u5723\u8bde\u8001\u4eba\u624b\u6301\u706b\u70ac\uff0c\u5361\u901a\uff0c1960\u5e74\u4ee3\u3002"} +{"id": "2004761", "video_name": "f74b92e3-d880-5044-827a-5ddd69360302", "text": "\u4ed6\u8eba\u5728\u5e8a\u4e0a\uff0c\u665a\u4e0a\u6ce8\u89c6\u7740\u5929\u82b1\u677f\uff0c\u770b\u5230\u9876\u90e8\u7684\u666f\u8c61\uff0c\u5468\u56f4\u4e00\u7247\u9ed1\u6697\uff0c\u5982\u540c\u6f2b\u753b\u3002"} +{"id": "7004901", "video_name": "acdf5629-a1de-5729-9792-0c6d6f625865", "text": "\u9ed1\u6697\u7684\u5f02\u6559\u4e16\u754c\uff0c\u6709\u7740\u53e4\u8001\u7684\u795e\u50cf\u7f29\u5c0f\u3002"} +{"id": "7002191", "video_name": "5003e45e-0fee-56d8-841a-4e584adf03ac", "text": "\u7535\u5f71\u5316\u7684\uff0c\u4e2d\u666f\uff0c\u72af\u7f6a\u7535\u5f71\uff0c\u4e00\u4e2a\u7a7f\u7740\u7d2b\u8272\u8fde\u8863\u88d9\u7ad9\u5728\u70ed\u72d7\u644a\u524d\uff0c\u559d\u7740\u4e00\u676f\u5e26"} +{"id": "3006641", "video_name": "7dc85c2c-a569-58c8-8f2a-451720a2a4ac", "text": "\u7537\u5b50\u5728\u52a8\u7269\u56ed\u62cd\u7167\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "1004465", "video_name": "52b257f0-92c5-57fe-9a84-93c377357020", "text": "\u70ed\u7231\u6c7d\u8f66\u76845\u5c81\u7537\u5b69"} +{"id": "8001368", "video_name": "d41abe2f-8403-52db-b136-5a63842cd251", "text": "\u4e00\u7fa4\u5e74\u8f7b\u7684\u6050\u9f99\u8e0f\u4e0a\u4e86\u63a2\u7d22\u65b0\u9886\u57df\u7684\u5192\u9669\u4e4b\u65c5\u3002"} +{"id": "7004088", "video_name": "28ca5646-f1e4-548b-a370-5235d803e466", "text": "\u80cc\u666f\uff1a\u84dd\u8272\u7684\u5c71\u4e18\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u662f\u6700\u9ad8\u7684\u3002"} +{"id": "7002744", "video_name": "37d34e92-c51e-5131-8b09-563ad79b052e", "text": "\u4e00\u679a\u706b\u7bad\u4ece\u5730\u7403\u5347\u7a7a\u8fdb\u5165\u592a\u7a7a\u3002"} +{"id": "6003811", "video_name": "06a0824a-d0d4-5ff5-a428-17c67f50eba4", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u5b69\uff0c\u4e00\u5973\u4e00\u7537\uff0c\u60c5\u4fa3\uff0c\u65e5\u843d\uff0c\u6cb3\u6d41\uff0c\u725b\u4ed4\u955c\u5934\uff0c\u8d85\u7ea7\u8dd1\u8f66\uff0c\u8d5b\u535a\u670b\u514b\u6548\u679c"} +{"id": "3003040", "video_name": "16e62632-eaf8-5369-b99f-04035493ed58", "text": "\u4e00\u4e2a\u5e26\u6709\u5f62\u72b6\u548c\u4ee4\u4eba\u6ee1\u610f\u7684\u97f3\u4e50\u7684\u4ee4\u4eba\u6ee1\u610f\u7684\u89c6\u9891\u3002"} +{"id": "8003094", "video_name": "6ea2928b-0601-5b0f-8845-4eda0733fba8", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a19\u4e16\u7eaa\u7684\u5c3c\u59d1\uff0c\u7f55\u89c1\u7684\u7535\u5f71\u7d20\u6750\u3002"} +{"id": "2006324", "video_name": "c4e6aa1b-470c-53e6-8daf-5bc2ed000c78", "text": "\u706b\u7130\u56f4\u7ed5\u7403\u65cb\u8f6c\uff0c\u4e3b\u8981\u8fd0\u52a8\u5411\u4e0a\uff0c\u51e0\u4e4e\u50cf\u706b\u4e00\u6837\u79fb\u52a8\uff0c\u5f62\u6210\u4e00\u4e2a\u73af\u3002"} +{"id": "2005124", "video_name": "ed7c6e11-e303-598a-abad-c25a921d0b98", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1aAmastones\u8fd9\u4e2a\u8bcd\u5199\u5728\u571f\u8457\u73e0\u5b9d\u4e0a\u3002"} +{"id": "1003647", "video_name": "43310115-935f-5310-ae54-247c480144a6", "text": "\u573a\u666f10\uff1a\u5e78\u798f\u751f\u6d3b \u4f4d\u7f6e\uff1a\u4f4f\u6240\u5468\u56f4\u7684\u5404\u4e2a\u5730\u65b9\u3002\u63cf\u8ff0\uff1a\u5c55\u793a\u5973\u5b69\u548c\u5979\u7684\u7956\u7236\u5728\u963f\u5c14\u5351\u65af\u5c71"} +{"id": "2003714", "video_name": "af4a5ebf-52f4-5286-a26a-a52668c1bea3", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u8d70\u7740\uff0c\u96e8\u591c\u4e2d\u5448\u73b0\u6e7f\u6da6\u8857\u5934\u6444\u5f71\u7684\u98ce\u683c\uff0c\u91d1\u6b63\u57fa\u3001\u6f2b\u753b\u98ce\u683c\u3001"} +{"id": "7002218", "video_name": "eb4e88be-9482-5ae1-b0ff-dbebf33d27b8", "text": "\u4ed6\u53bb\u5c71\u4e0a\u559d\u9152\uff0c\u5bfb\u627e\u6170\u85c9\u548c\u89e3\u8131\u3002"} +{"id": "4004428", "video_name": "6e6cca4f-934a-5641-b4d2-a7ea25b39eed", "text": "\u8fbe\u82ac\u5947\u6b63\u5728\u753b\u4e00\u5e45\u753b\uff0c8K\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u7167\u7247\u822c\u903c\u771f\u3002"} +{"id": "2003400", "video_name": "a58eee73-f14e-5f16-9aab-a3100f3d0a0a", "text": "\u5728\u6c99\u5b50\u4e0a\u753b\u4e86\u4e00\u4e2a\u5706\u5708\uff0c\u8721\u70db\u7684\u706b\u7130\u8f7b\u76c8\u5730\u8df3\u8dc3\u5728\u6c99\u4e18\u4e4b\u95f4\uff0c\u9634\u5f71\u4e2d\u6d41\u6dcc\u7740"} +{"id": "2005983", "video_name": "bfe5200e-66e9-5268-b585-f68086c23900", "text": "\u4e00\u53ea\u53ef\u7231\u53cb\u5584\u7684\u5c0f\u957f\u9888\u9e7f\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5728\u9633\u5149\u660e\u5a9a\u7684\u68ee\u6797\u4e2d\uff0c\u5361\u901a\u6548\u679c\uff0c\u6bdb\u76ae\u4e0a\u6709"} +{"id": "7004031", "video_name": "02e50ffe-6fff-578b-a550-b714de3898a4", "text": "\u8d85\u91cd\u7537\u5b50\u751f\u6c14\u5730\u5403\u86cb\u7cd5\uff0c\u7528\u4e94\u4e2a\u624b\u6307\u3002"} +{"id": "7002560", "video_name": "60bc23e3-4140-595e-a7f6-ca6403f51f07", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u65e5\u5b50\uff0c\u592a\u967d\u5347\u8d77\uff0c\u80cc\u666f\u662f\u5c71\u8108\uff0c\u8d85\u7d1a\u9ad8\u901f\u5217\u8eca\u96f2\u6735\u5728\u80cc\u666f\u4e2d\u79fb\u52d5\uff0c"} +{"id": "4004158", "video_name": "5b31c9c8-1e71-5fda-a170-b6fd643edca5", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u6811\u4e0a\uff0c\u7a81\u7136\u4e00\u8f86\u5361\u8f66\u6765\u4e86\uff0c\u90a3\u4e2a\u4eba\u8df3\u4e0a\u4e86\u90a3\u8f86\u5361\u8f66\u3002"} +{"id": "7002774", "video_name": "f82a15de-158a-5da9-8370-0b4470425cc4", "text": "\u4e00\u90e81910\u5e74\u4ee3\u7684\u821e\u53f0\u5267\uff0c\u9ed1\u8272\u7a97\u5e18\uff0c\u7a7f\u7740\u9ed1\u888d\u7684\u4eba\u7269\u50cf\u9b3c\u9b42\u4e00\u6837\u4ece\u821e\u53f0\u5730\u677f\u4e0a\u5347\u8d77\u3002"} +{"id": "8002885", "video_name": "9d4eb35d-6365-55c8-9e54-a5a95fcc591b", "text": "\u745f\u6885\u80e1\u7ef4\u571f\u8457\u7f8e\u56fd\u4eba\u5728\u83ab\u54c8\u7ef4\u6c99\u6f20\u4e2d\u72e9\u730e\u548c\u91c7\u96c6\u3002"} +{"id": "6003258", "video_name": "1c660ff6-eafb-5678-b05d-544344915183", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7f51\u4e0a\u5bfb\u627e\u6f14\u8bb2\u51c6\u5907\u8d44\u6599\u3002"} +{"id": "2006726", "video_name": "77d8c930-d5de-5435-bb78-70395b834765", "text": "\u5b64\u5973\u51dd\u89c6\u7740\u7f8e\u4e3d\u7684\u73af\u5883\uff0c\u773c\u4e2d\u900f\u9732\u51fa\u4e00\u79cd\u5e73\u548c\u611f\u3002\u5979\u4e0e\u7237\u7237\u4e4b\u95f4\u7684\u7ebd\u5e26\u88ab\u5de7"} +{"id": "4004077", "video_name": "7da9d5f7-ecaa-535c-92aa-96bcd5a4ec33", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u8dea\u7740\u53cc\u624b\u6342\u4f4f\u8138\uff0c\u5899\u58c1\u662f\u7ea2\u8272\u7684\uff0c\u4e00\u4e2a\u8eab\u7a7f\u767d\u888d\u7684\u7537\u4eba"} +{"id": "1006990", "video_name": "7fe80c0f-49e1-5464-88ea-d218b6d0ffac", "text": "\u572852\u4e16\u7eaa\uff0c\u4e00\u4e2a\u5927\u578b\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u77d7\u7acb\u5728\u4e00\u4e2a\u4eba\u7c7b\u6b96\u6c11\u661f\u7403\u7684\u8868\u9762\uff0c\u8be5\u661f\u7403\u7ed5\u7740Cartwheel\u661f\u7cfb\u7684"} +{"id": "2004068", "video_name": "0cb26387-78ce-5a73-a4ef-799cb3f4458a", "text": "\u7530\u91ce\u4e0a\u7684\u96ea\u5929\uff0c\u4e00\u5207\u90fd\u88ab\u96ea\u8986\u76d6\uff0c\u660e\u4eae\u8000\u773c\u3002"} +{"id": "2004913", "video_name": "b6ddc0a1-3cc8-5907-aab0-f3ed7f0e149c", "text": "\u521b\u5efa\u4e00\u4e2a\u592a\u7a7a\u8239\u548c\u5b87\u822a\u5458\u5de5\u4f5c\u7684\u4eea\u8868\u677f\u3002 \n\nSource sentence: The company's goal is to increase profits while maintaining ethical standards. \n\n\u516c\u53f8\u7684\u76ee\u6807\u662f\u5728\u4fdd\u6301\u9053\u5fb7"} +{"id": "0006209", "video_name": "2874fe7c-ff26-587f-bbd0-5ea29fb53dc8", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u4e2d\u770b\u5230\u4e00\u4e9b\u4eba\u7c7b\u8eab\u4f53\uff08\u7b2c\u4e00\u4eba\u79f0\uff09"} +{"id": "3004299", "video_name": "9e547620-f4c7-55f0-837e-1397fe78055d", "text": "\u4e00\u4f4d\u5988\u5988\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u6728\u5c4b\u7684\u9910\u684c\u65c1\uff0c\u91c7\u7528\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\uff0c"} +{"id": "2006428", "video_name": "c8347356-37db-5958-a320-582d9aef228c", "text": "\u4e00\u4e2a\u4e2d\u666f\u955c\u5934\uff0c\u5c55\u793a\u4e00\u4e2a\u9ab7\u9ac5\u5728\u8001\u5f0f\u6559\u5802\u91cc\u6f14\u594f\u7ba1\u98ce\u7434\u3002"} +{"id": "2007278", "video_name": "202dcd64-23e5-5797-bc4b-06865bfe3978", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u767d\u8272\u623f\u95f4\u91cc\u8df3\u7740\u563b\u54c8\u821e\u3002"} +{"id": "8002228", "video_name": "ffc17832-b5af-5656-948c-2fa2747e33c9", "text": "\u751f\u6210\u4e00\u5e45\u8be6\u7ec6\u7684\u56fe\u50cf\uff0c\u5c55\u73b0\u5728\u4e9a\u9a6c\u900a\u4e1b\u6797\u4e2d\u6fc0\u70c8\u800c\u903c\u771f\u7684\u6597\u4e89\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u53ea\u8272\u5f69"} +{"id": "7004965", "video_name": "7cf57680-c2b8-5b3d-a039-04aa5c88f77d", "text": "\u6cb9\u753b\uff0c\u5915\u9633\u7167\u8000\u5728\u963f\u5c14\u6258\u82b1\u74f6\u4e2d\u7684\u5f69\u8679\u767e\u5408\uff0c\u5317\u6b27\u827a\u672f\u98ce\u683c\u3002"} +{"id": "7004225", "video_name": "7b7400a8-20b8-54a5-96c9-f6e017727206", "text": "\u5e8a\u8fb9\u7684\u4e66\u88ab\u5fae\u98ce\u5439\u7ffb\u4e86\u3002"} +{"id": "8001321", "video_name": "dc99a206-9f81-54bb-961a-dc16b32ced40", "text": "\u5929\u4f7f\u4ece\u5929\u5802\u5760\u843d\uff0c\u71c3\u70e7\u7740\u843d\u4e0b\uff0c\u4ece\u5149\u660e\u53d8\u6210\u9ed1\u6697\u7684\u52a8\u6f2b\u89c6\u9891\u3002"} +{"id": "6003856", "video_name": "585f161c-f380-5939-bd59-c0919d8b1b46", "text": "\u4e00\u6bb5\u508d\u665a\u56db\u70b9\u5bcc\u58eb\u5c71\u7684\u89c6\u9891\uff0c\u7ea2\u67ab\u53f6\u98d8\u843d\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "3004383", "video_name": "56370ac8-9e56-57d1-a8da-640cbd9e34eb", "text": "\u80e1\u5b50\u767d\u8272\u3001\u76b1\u7709\u7684\u8001\u4eba\u7a7f\u7740\u8036\u7a23\u65f6\u4ee3\u7684\u670d\u88c5\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u573a\u66b4\u98ce\u96e8\uff0c\u6709\u5f88\u591a\u7684\u96e8\u3001"} +{"id": "6003332", "video_name": "7f472305-9d58-5c8f-99d7-5f9ce2338d51", "text": "\u4fa7\u9762\u89c6\u56fe\uff0c\u8d85\u7ea7\u9a6c\u91cc\u5965\u9762\u5bf9\u7d22\u5c3c\u514b\u5c0f\u523a\u732c\uff0c\u8d85\u7ea7\u9a6c\u91cc\u5965\u624b\u91cc\u62ff\u7740\u4e00\u628a\u5927\u9524\u5b50\uff0c\u7eff"} +{"id": "7002729", "video_name": "d4991d4d-6cba-5c65-b625-190bfe106644", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u6700\u4f73\u5206\u8fa8\u7387\u4e0b\u7684\u4e00\u4e2a\u8721\u70db\u53d8\u5f62\u6210\u706f\u6ce1\u7684\u8fc7\u7a0b\u3002"} +{"id": "5001018", "video_name": "436d1777-afdd-52d8-9d4a-a84a64d2f831", "text": "\u653e\u5927\u5230\u591c\u665a\u9ad8\u5904\u7684\u7f8e\u4e3d\u6d1b\u6749\u77f6\u623f\u5c4b\u3002"} +{"id": "0005471", "video_name": "1b5f2864-933c-5921-9aef-fcba35e88620", "text": "\u4e00\u4e2a\u53ef\u7231\u5361\u901a\u7684\u72ec\u89d2\u517d\u6b63\u5728\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "1004548", "video_name": "5472126c-526d-5020-a718-a7e342dde284", "text": "\u6570\u5343\u53ea\u8718\u86db\u4ece\u4e00\u4e2a\u6d1e\u7a74\u964d\u843d\u3002"} +{"id": "2004884", "video_name": "6ce49aa2-91ad-55c3-b604-c2aa271fe5d0", "text": "\u4e00\u652f\u5e26\u6709\u89e6\u6478\u5c4f\u7684\u7b14"} +{"id": "0006574", "video_name": "2ed4c826-e5dc-52c4-bc56-d5bc08884dc1", "text": "\u57ce\u5e02\u6ca6\u9677\u4e86\uff0c\u62c9\u54c8\u4f2f\u548c\u5979\u7684\u5bb6\u4eba\u5e78\u514d\u4e8e\u96be\u3002"} +{"id": "6004529", "video_name": "8d7fdbc0-2e71-58b1-8453-f3d8c1469a61", "text": "3D\u98ce\u683c\u52a8\u753b\u53ef\u7231\u7537\u5b69\u6b63\u5728\u73a9\u800d\uff0c\u4f7f\u7528\u5b57\u6bcd\u5236\u4f5c\u903c\u771f\u5361\u901a\u3002"} +{"id": "2005060", "video_name": "4c172919-c831-583e-bca9-390aef32b483", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u4eba\u62b1\u7740\u4e00\u4e2a\u7537\u4eba\uff0c\u7537\u4eba\u5728\u7b11\u3002"} +{"id": "2005427", "video_name": "58bfc09e-13b5-5035-bb8c-6276cfa91ed2", "text": "\u5728\u610f\u5927\u5229\u7528\u5348\u591c\u72ec\u7279\u7684\u5e86\u795d\u4eea\u5f0f\u5e86\u795d\u65b0\u5e74\u3002"} +{"id": "8003971", "video_name": "326772cb-876b-586f-a256-0dad63ccefce", "text": "\u88ab\u9057\u5fd8\u7684\u9634\u5f71\u56fe\u4e66\u9986\u5c06\u4e0d\u518d\u4ee5\u6050\u60e7\u7684\u5f62\u5f0f\u56f0\u6270\u8fd9\u5ea7\u57ce\u9547\uff0c\u800c\u662f\u4f5c\u4e3a\u63d0\u9192\uff0c\u6697\u793a\u4eba\u6027"} +{"id": "4004879", "video_name": "1b89d3f1-ae90-5a46-a1e1-072917716ab2", "text": "\u4e00\u4e2a\u76ae\u514b\u65af\u7684\u7537\u4eba\u50cf\u5728\u7535\u5f71\u4e2d\u4e00\u6837\uff0c\u5728\u955c\u5934\u524d\u8bf4\u8bdd\u30024K \u5206\u8fa8\u7387\u3002\u80cc\u666f\u662f\u7eb8\u3002"} +{"id": "3003203", "video_name": "bd36d88a-7479-5629-bd02-76e71890b16f", "text": "\u4e00\u4e2a\u5357\u74dc\u7c7d\u7684\u8f68\u8ff9\u4ece\u6751\u5e84\u5e7f\u573a\u901a\u5411\u795e\u79d8\u7684\u8001\u957f\u8001\u6811\u68ee\u6797\u3002\u52a8\u753b\u7247\u3002"} +{"id": "3004931", "video_name": "0fc828cb-e770-56cf-b443-e15857bb0f51", "text": "\u5728\u6674\u6717\u7684\u4e00\u5929\u62cd\u6444\u91cc\u5965\u739b\u5409\u5965\u96f7\u6e2f\u53e3\u7684\u89c6\u9891\u3002"} +{"id": "7004959", "video_name": "2b0ed70e-d76a-59cb-87bb-6f263f5fcd5a", "text": "\u4e00\u7fa4\u4eba\u5728\u6050\u60e7\u4e2d\u5954\u8dd1\uff0c\u9b3c\u9b45\u5973\u5b50\u8ffd\u8d76\u5728\u540e\u9762\u3002\u4ed6\u4eec\u8dcc\u843d\u4e86\u5821\u5792\u7684\u697c\u68af\uff0c"} +{"id": "3005612", "video_name": "cb0121cd-a659-5e4b-b29a-6034faeffbcd", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u6b63\u5728\u4f7f\u7528\u5979\u7684\u667a\u80fd\u624b\u673a\u62cd\u6444\u5979\u76843D\u624b\u5de5\u5236\u54c1\u2014\u2014\u4e00\u4e2a\u53ef\u7231\u7684\u6c99\u53d1\u3002\u4f60\u53ef\u4ee5\u770b\u5230\u5979\u521b\u4f5c\u7684"} +{"id": "3006572", "video_name": "7640cbb3-c4c1-5129-9f69-d05d4393940e", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u76d1\u72f1\u91cc\u4e0e\u72af\u4eba\u6597\u4e89\u3002"} +{"id": "2007929", "video_name": "508cecd4-1818-5819-9e54-5c27aabb5fc1", "text": "\u4e00\u4f4d\u5243\u5149\u4e86\u80e1\u987b\u7684\u9ed1\u53d118\u5c81\u7537\u5b69\u548c\u4e00\u4f4d\u9ed1\u53d118\u5c81\u5973\u5b69\u7a7f\u7740\u6821\u670d\u5e76\u80a9\u8d70\u5728\u5b66\u6821\u8d70\u5eca\u4e0a"} +{"id": "1005842", "video_name": "6b6938c5-64bb-5244-9153-15ad8d9a4f1f", "text": "\u7a7a\u6c14\u70b8\u9505\u914d\u4ef6\u642d\u914d\u7a7a\u6c14\u70b8\u9505\u53ef\u4ee5\u505a\u86cb\u7cd5\u6876\uff0c\u5b69\u5b50\u4eec\u56f4\u7740\u5b83\u7b49\u7740\uff0c\u9762"} +{"id": "0006401", "video_name": "2bd88885-055f-51d6-9c22-d84ea69cef75", "text": "\u4e00\u53ea\u8df3\u821e\u7684\u72ec\u89d2\u517d\u795d\u4e00\u4e2a\u5c0f\u5973\u5b69\u751f\u65e5\u5feb\u4e50\u3002"} +{"id": "0005421", "video_name": "1a94f220-7795-565f-8726-ec535f307140", "text": "\u4e00\u7fa4\u5c0f\u9ec4\u9e2d\u5728\u7530\u91ce\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003086", "video_name": "b63e38c2-f27e-5cec-ad05-aa24c73b4c48", "text": "\u5c0f\u739b\u4e3d\u5a74\u513f\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c\u8f6c\u8eab\u5fae\u7b11\uff0c\u5929\u4f7f\u4f18\u96c5\u5730\u5728\u5979\u4e0a\u65b9\u98de\u7fd4\u3002"} +{"id": "1006570", "video_name": "7860c1fa-4a2b-5edf-b4f7-ce239c3409e2", "text": "4K\uff0c\u6765\u81ea\u52a8\u753b\u7247\u300a\u8352\u91ce\u9547\u300b\u4e2d\u7684\u52a8\u753b\uff0c\u4e00\u4e2a\u7a7f\u7740\u7ea2\u8272\u8fd0\u52a8\u886b\u3001\u6709\u7740\u91d1\u8272\u87ba\u65cb\u8fab\u7684\u7537\u5b69"} +{"id": "2007465", "video_name": "3a82f5fa-7a53-592f-b9c4-d41ab9f237ac", "text": "\u6df1\u6d77\u6f5c\u6c34\u5458\u4f38\u624b\u5230\u4e00\u53ea\u98df\u4eba\u9ca8\u8eab\u8fb9\u3002"} +{"id": "2007700", "video_name": "77fa1977-cecb-57c4-8d96-96cc9abd0610", "text": "\u5728\u5361\u724c\u4e2d\uff0c\u4fe1\u606f\u4e3aMAGIA\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "7004155", "video_name": "0868660d-da2b-54bb-a245-c12aa4b7528e", "text": "Wivi\u548cPi\u5728\u4ed6\u4eec\u8ff7\u4eba\u7684\u623f\u5b50\u91cc\u9192\u6765\uff0c\u6bcf\u4e2a\u4eba\u90fd\u6709\u81ea\u5df1\u7684\u9b54\u6cd5\u65e9\u6668\u5e38\u89c4\u3002Wivi\u8c03\u6574\u5979\u7684\u9b54"} +{"id": "7002380", "video_name": "8b713306-8c38-5d5f-a2b0-cce517488396", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\u7ad9\u5728\u6d77\u8fb9\uff0c\u6b23\u8d4f\u7740\u591c\u8272\u4e2d\u7684\u6d77\u666f\u3002"} +{"id": "2003060", "video_name": "3f014996-6c10-5728-af66-4ec7a0047d6f", "text": "\u7ebd\u7ea6\u5730\u94c1\u6240\u6709\u8f66\u53a2\u90fd\u6d82\u6210\u7c89\u8272\u548c\u7d2b\u8272\u5927\u8c61\uff0c\u903c\u771f\u5e7b\u60f3\uff0c9:16 AR\u3002\u4fe1\u606f\uff1aG A G CITY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3005873", "video_name": "393c9911-a5f0-5d44-a07c-0623edf12ab0", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u8857\u4e0a\u8d70\uff0c\u73b0\u5728\u6b63\u5728\u4e0b\u96e8\u3002\n\nSource sentence: My favorite color is blue. \n\u6211\u7684\u6700\u7231\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "4004168", "video_name": "8645c211-2be0-5eac-b69a-70880bf3c517", "text": "\u4e00\u5f20\u8ff7\u4eba\u7684\u8096\u50cf\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4f4d\u7ea2\u53d1\u5973\u5b50\u6563\u53d1\u7740\u559c\u60a6\uff0c\u5979\u7684\u5fae\u7b11\u6355\u6349\u4e86\u7eaf\u7cb9\u5e78"} +{"id": "3005006", "video_name": "d3cc4c1e-907a-56a4-b0b4-347bed33e096", "text": "\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u8bf4\u8bdd\uff0c\u7279\u5199\u955c\u5934\uff0c\u6e56\u6cca\u80cc\u666f\u3002"} +{"id": "1004569", "video_name": "54e34e49-582c-53ad-945e-73816f661ef6", "text": "\u6574\u4e2a\u8eab\u4f53\u957f\u6709\u59dc\u8272\u5934\u53d1\u7684\u5341\u51e0\u5c81\u5973\u5b69\u7a7f\u7740\u4e00\u4ef6\u84dd\u8272\u706b\u7130\u9b54\u6cd5\u88d9\u5b50\u3002"} +{"id": "7004065", "video_name": "56d4a177-ddb5-5124-93bd-858a9769783e", "text": "\u5929\u5802\u822c\u7684\u666f\u8272\uff0c\u6709\u6f02\u4eae\u7684\u623f\u5c4b\u3001\u82b1\u56ed\u3001\u6c34\u679c\u548c\u82b1\u6735\u3002"} +{"id": "1006405", "video_name": "75537aa8-8e8c-5d98-918c-b90fb64a1a49", "text": "\u642c\u5bb6\u662f\u4e00\u4ef6\u91cd\u5927\u7684\u98a0\u8986\u3002"} +{"id": "8002402", "video_name": "154256b0-a212-5fb6-9156-759acf1d9154", "text": "\u4e00\u95f4\u6709\u76f4\u6728\u677f\u548c\u8d70\u5eca\u7684\u5ba2\u5385"} +{"id": "6004793", "video_name": "2fc02a90-008b-561a-86ce-8756e89b9ecf", "text": "\u4e00\u4e2a\u5145\u6ee1\u70c8\u706b\u3001\u5728\u9ed1\u6697\u4e2d\u8fd8\u6709\u96fe\u6c14\u7684\u68ee\u6797\u3002"} +{"id": "6003877", "video_name": "199f9645-af16-5cd3-9fe1-9b4e83b25092", "text": "\u65b0\u77f3\u5668\u65f6\u4ee3\u7684\u5c3c\u5b89\u5fb7\u7279\u4eba\u5728\u6d1e\u7a74\u4e2d\u7ed8\u5236\u52a8\u7269\uff0c4K\u9ad8\u6e05\uff0c\u903c\u771f\u7ec6\u81f4\u7684\u5199\u5b9e\u98ce\u683c\u3002\n\nSource sentence: The pandemic"} +{"id": "6004091", "video_name": "6a9cbcfb-4871-536b-8834-f76f22256ae0", "text": "\u4eba\u4eec\u5728\u9ea6\u5f53\u52b3\u6c49\u5821\u5e97\u5916\u8df3\u821e\uff0c\u8138\u4e0a\u6302\u7740\u5fae\u7b11\uff0c\u7535\u5f71\u822c\u7684\u3001\u7167\u7247\u822c\u7684\u30018K\u3001\u865a"} +{"id": "3003632", "video_name": "86965127-9a52-500e-8978-3d554a90c3ae", "text": "\u5510\u7d0d\u5fb7\u00b7\u7279\u6717\u666e\u548c\u83f2\u723e\u00b7\u5b89\u585e\u723e\u83ab\u6416\u6efe\u3002"} +{"id": "2004347", "video_name": "23a20ba0-86fe-525b-9111-35f5d84a7484", "text": "\u4e00\u4e2a\u9ad8\u697c\u6797\u7acb\u3001\u6469\u5929\u5927\u697c\u89e6\u78b0\u4e91\u6735\u7684\u7e41\u534e\u57ce\u5e02\u91cc\uff0c\u4f4f\u7740\u4e00\u4f4d\u540d\u53eb\u83b1\u6602\u7eb3\u591a\u7684\u5e74"} +{"id": "7002866", "video_name": "9e4a1bde-835f-5280-9254-aeed87f14694", "text": "\u9a6c\u91cc\u5965\u5728\u5df4\u9ece\u5723\u7c73\u6b47\u5c14\u8857\u9053\u4e0a\uff0c\u9a7e\u9a76\u7740\u4ed6\u7684\u5361\u4e01\u8f66\uff0c\u72ec\u81ea\u4e00\u4eba\uff0c\u5915\u9633\u4e0b\u7684\u666f\u8c61"} +{"id": "3003195", "video_name": "17a9300b-35c4-51db-8cc9-3463c0c19ef3", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u5973\u5b69\u6b63\u5728\u548c\u732b\u73a9\u800d\u3002"} +{"id": "7003668", "video_name": "2a0c2620-8435-5310-b58d-b233b6f06187", "text": "\u4e00\u4f4d\u7a7f\u7740\u725b\u4ed4\u670d\u7684\u5973\u5b69\u95ed\u7740\u773c\u775b\u5728\u592a\u7a7a\u4e2d\u884c\u8d70\u3002"} +{"id": "0004676", "video_name": "0d22f9c9-f8df-5c81-8e48-26ccb0ad1be8", "text": "\u53f2\u524d\u539f\u59cb\u4eba\u5076\u9047\u4e86\u65f6\u5149\u5012\u6d41\u7684\u73b0\u4ee3\u4eba\uff0c\u73b0\u4ee3\u4eba\u5012\u5730\u4e0d\u8d77\uff0c\u539f\u59cb\u4eba\u7528\u68cd\u5b50\u6233\u4ed6\u4eec\u3002\u5728\u73b0\u4ee3\u4eba\u7684\u53e3"} +{"id": "2003774", "video_name": "13bd8854-5ed4-5633-ba64-f2303add37fb", "text": "\u89c6\u9891\u4ee5\u9e1f\u77b0\u89c6\u89d2\u5f00\u59cb\uff0c\u753b\u9762\u4e2d\u662f\u4e00\u8f86\u8f66\u6cbf\u7740\u7070\u8272\u7684\u9053\u8def\u524d\u884c\u3002\u8f66\u5b50\u4e0d\u65ad\u524d\u8fdb\uff0c\u5468\u56f4\u5448\u5355\u8c03\u7684\u7070"} +{"id": "1005422", "video_name": "639973bb-2df2-53f4-b462-0b0587ca2328", "text": "\u521b\u9020\u51fa\u4e00\u4e2a\u89c6\u89c9\u4e0a\u5f15\u4eba\u6ce8\u76ee\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u51fa\u5927\u536b\u7ad9\u5728\u4e00\u7247\u9ed1\u6697\u800c\u65e0\u5c3d\u7684\u6df1\u6e0a\u8fb9\u7f18\uff0c\u8c61\u5f81"} +{"id": "8001340", "video_name": "c57479e2-6652-50f0-b79a-d9e44a363a7a", "text": "\u4e00\u4e2a\u9ec4\u660f\u65f6\u7684\u7389\u7c73\u7530\u91cc\uff0c\u6709\u4e24\u4e2a\u9ad8\u5927\u7684\u5916\u661f\u4eba\u548c\u4e00\u5934\u725b\u5728\u4ea4\u8c08\u3002"} +{"id": "6004868", "video_name": "9ad735b5-2369-56a8-8d8c-b7c27ca7b42d", "text": "\u4ece\u4e0a\u65b9\u770b\uff0c\u5409\u8428\u91d1\u5b57\u5854\u3002"} +{"id": "1005106", "video_name": "5e232a7a-7bb8-542d-b490-4c0e13b7ab97", "text": "\u5370\u52a0\u73b0\u4ee3\u88c5\u7532\u7a7f\u8d8a\u901a\u5f80\u6280\u672f\u7684\u5927\u95e8\u3002"} +{"id": "2006697", "video_name": "20c2591a-6a81-52ae-8f83-34551e1bf1e4", "text": "\u4e00\u53ea\u5361\u901a\u72ee\u5b50\u5728\u4e1b\u6797\u4e2d\u6cbf\u7740\u6c34\u6d41\u5954\u8dd1\u3002"} +{"id": "1004710", "video_name": "576db418-f225-55c7-adb6-1c51aa9f83e5", "text": "\u71c3\u6599\u3001\u4ea4\u901a\u3001\u5317\u65b9\u9065\u8fdc\u76842\u5e73\u9762\u5411\u91cf\u6807\u5fd7"} +{"id": "1006206", "video_name": "71c514a5-9757-52a5-a793-e71a3c7fd0ee", "text": "\u7f51\u7edc\u670b\u514b\u57ce\u5e02\uff0c\u58eb\u5175\u7528\u6fc0\u5149\u67aa\u6218\u6597\uff0c\u70df\u96fe\u5728\u80cc\u666f\u4e2d\uff0c\u5149\u7ebf\u4ece\u4e0a\u65b9\u7167\u5c04\u3002"} +{"id": "0006435", "video_name": "2c45767d-e55a-5580-85fd-92bac39d23b8", "text": "\u57ce\u5e02\u4e2d\u7684\u6000\u65e7\u5c4b\u9876\u65f6\u523b\uff0c\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u8eba\u5728\u6bef\u5b50\u4e0a\uff0c\u88ab\u4ed9\u5973\u706f\u5305\u56f4\u7740\uff0c\u8fdc\u5904\u57ce"} +{"id": "0005162", "video_name": "15d42663-d337-5016-984d-f03d3b04f9cc", "text": "\u5728Escalade\u4e0a\u6cbf\u7740\u6ee8\u6d77\u5927\u9053\u9a91\u884c\u3002"} +{"id": "2003248", "video_name": "75b12793-fbda-5867-b424-ba92c2c27d32", "text": "\u751c\u70b9\u666f\u89c2\u4e2d\u6f02\u6d6e\u7740\u9713\u8679\u6811\u548c\u8611\u83c7\u3002"} +{"id": "3004495", "video_name": "8536dd0b-64b4-5114-acbe-c3e00f501ff1", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u5979\u7684\u623f\u95f4\u91cc\u73a9\u7535\u5b50\u6e38\u620f\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6002072", "video_name": "720b0d55-9c46-52cd-836d-1ef8393f0520", "text": "\u4e00\u53ea\u8868\u60c5\u6e29\u548c\u7684\u72ee\u5b50\uff0c\u5728\u975e\u6d32\u5927\u8349\u539f\u4e0a\u4f38\u51fa\u4e00\u53ea\u722a\u5b50\u5e2e\u52a9\u4e00\u4e2a\u8ff7\u8def\u7684\u5973\u5b69\u3002"} +{"id": "6002445", "video_name": "e89b2058-c916-5a36-9a78-a0908aa5d808", "text": "\u4e00\u4e2a\u7a7f\u7740\u91d1\u5c5e\u94f6\u8272\u5916\u5957\u7684\u82f1\u4fca\u4e9a\u6d32\u7537\u5b50\u6b63\u4ece\u6211\u8eab\u8fb9\u7684\u4eba\u884c\u9053\u4e0a\u8d70\u5f00\u3002"} +{"id": "4003546", "video_name": "381067cb-a848-5252-922b-793835c0164f", "text": "\u4e00\u53ea\u5c0f\u72ee\u5b50\u5728\u4f53\u80b2\u573a\u91cc\u5486\u54ee\uff0c\u5915\u9633\u4e0b\uff0c4K\uff0c\u9ad8\u6e05\u3002"} +{"id": "0004958", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "\u592a\u9633\u5347\u8d77\u5728\u5c71\u4e0a\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "2005019", "video_name": "d7aac6e6-4591-539b-9cb9-0e25611ace2b", "text": "\u6211\u5728\u5723\u7ecf\u7684\u6545\u4e8b\u548c\u8036\u7a23\u57fa\u7763\u7684\u6559\u5bfc\u4e2d\u6210\u957f\u3002"} +{"id": "2003682", "video_name": "ebcc56b2-d0d6-579c-92f4-afd9dd67889e", "text": "\u624b\u6b63\u5728\u4ece\u5730\u91cc\u722c\u51fa\u6765\u3002"} +{"id": "4002054", "video_name": "5f83962f-cc94-5b65-8a74-8e3e94b5aafa", "text": "\u7f8e\u4e3d\u7684\u5149\u8c31\u6676\u4f53\u6ce2\uff0c\u805a\u7126\u5149\uff0c\u62bd\u8c61\u76843D\u8fd0\u52a8\u6ce2\u6d6a\uff0c\u5e26\u6709\u5168\u606f\u6e10\u53d8\u7684\u6709\u673a\u73bb\u7483"} +{"id": "7003979", "video_name": "a3e854e8-bba1-5988-b117-fdcc6584c008", "text": "\u5c0f\u523a\u732c\u5728\u8349\u5730\u4e0a\u884c\u8d70\uff0c4K\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "2004868", "video_name": "2b3b7ba8-4c73-5d8b-87cf-e4e211521c20", "text": "\u5728\u4e00\u4e2a\u5e73\u9759\u7684\u4e61\u6751\u80cc\u666f\u4e0b\uff0c\u4ee5\u8fea\u58eb\u5c3c\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5c55\u73b0\u5e74\u8f7b\u7684\u62a4\u58eb\u6e29\u67d4\u5730\u7167\u987e"} +{"id": "0005822", "video_name": "21c302d7-b9c9-5ef2-b511-c54e44ff5f92", "text": "\u8003\u8bd5\u3001\u901a\u8fc7\u3001\u5feb\u4e50\u7684\u7537\u5973\u3002"} +{"id": "4003257", "video_name": "d1575dc3-c619-5a90-b90b-f2198f641ddd", "text": "\u4e24\u53ea\u72d7\u5728\u68d2\u7403\u573a\u4e0a\u5954\u8dd1\u3002"} +{"id": "1006296", "video_name": "73457a7f-ea9b-5aed-bdcd-dc3890664851", "text": "\u5723\u8bde\u8282\uff0c\u4e00\u7fa4\u4eba\u6109\u5feb\u5730\u4eab\u7528\u5c0f\u5403\u548c\u73a9\u684c\u6e38\u3002"} +{"id": "7002468", "video_name": "2f34600d-b8ac-5f93-b668-b52d954c9bfc", "text": "\u9b54\u6cd5\u98ce\u7b5d\u5e26\u9886\u4e09\u4e2a\u5b69\u5b50Mia\u3001Ben\u548cLeo\u6765\u5230\u4e86\u4e00\u4e2a\u5145\u6ee1\u7cd6\u679c\u6811\u7684\u56fd\u5ea6\uff0c\u4ed6\u4eec\u4eab\u7528\u5de7\u514b\u529b"} +{"id": "0004015", "video_name": "019a7573-c38a-50bb-a49e-6b69527726c3", "text": "\u73b0\u5b9e\u7684\u7206\u70b8\u5766\u514b\u6218\u4e89\u573a\u666f"} +{"id": "8003242", "video_name": "303c5da7-1c04-56e1-a300-07e88fef5d5b", "text": "\u6587\u65af\u00b7\u9ea6\u514b\u9a6c\u6d2a\u5728\u573a\u9986\u5761\u9053\u4e0a\u8d70\u52a8\uff0c\u7535\u5f71\u822c\u7684\u8d85\u73b0\u5b9e4K\u753b\u9762\u3002"} +{"id": "3003212", "video_name": "a5041a7b-270b-5074-bc36-dc3671818c5d", "text": "Source sentence: Yo Yo Honey Singh\u8d70\u4e0a\u821e\u53f0\u3002"} +{"id": "3006430", "video_name": "3bbd4de5-7078-5e69-aae7-8bb3941552f1", "text": "\u7528\u7ea2\u3001\u84dd\u3001\u9ec4\u8272\u8c03\u6df7\u5408\u521b\u4f5c\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u62bd\u8c61\u5f62\u8c61\u3002\u878d\u5165\u65cb\u6da1\u548c\u51e0\u4f55\u5f62\u72b6\u7684\u52a8\u6001"} +{"id": "6002288", "video_name": "c1060c7e-9659-5510-b358-02253dab347b", "text": "\u4e4c\u9e26\u4ee5\u4e94\u89d2\u661f\u7f16\u961f\u98de\u884c\uff0c\u7535\u5f71\u822c\u7684\u53f2\u8bd7\u611f\u3002"} +{"id": "0006334", "video_name": "2ad23428-3151-5d71-adee-e9141fad5300", "text": "\u4e00\u53ea\u767d\u8272\u957f\u6bdb\u5947\u74e6\u74e6\u6b22\u5feb\u5730\u8df3\u8fc7\u7eff\u8349\u5730\uff0c\u8ffd\u9010\u53e6\u4e00\u53ea\u68d5\u8272\u77ed\u6bdb\u5947"} +{"id": "3004630", "video_name": "cf6bcc30-fb55-51c0-859e-503985e031e4", "text": "\u4e00\u4e2a\u975e\u5e38\u73b0\u4ee3\u5316\u7684\u6b27\u6d32\u57ce\u5e02\u4e2d\u5fc3\uff0c\u9ad8\u5927\u7684\u6469\u5929\u5927\u697c\uff0c\u4eba\u5934\u6512\u52a8\uff0c\u73b0\u4ee3\u5316\u7684\u6c7d\u8f66\u3002"} +{"id": "5001586", "video_name": "e7dbb04d-35a7-56af-b158-662d74df2515", "text": "\u4e00\u6761\u6cb3\u6d41\u3001\u4e00\u4e9b\u5c71\u3001\u68ee\u6797\u548c\u5ca9\u77f3\u4e0a\u5199\u7740\u201cRam\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003733", "video_name": "61e06e98-f713-5f2e-a7fa-ab1904d43fa5", "text": "\u5728\u76f8\u540c\u7684\u73af\u5883\u4e2d\uff0c\u5973\u5b69\u5448\u73b0\u8367\u5149\u706f\u6548\u679c\uff0c\u7535\u5f71\u822c\u7684\u903c\u771f\u611f\uff0c4K\u753b\u8d28\u3002"} +{"id": "6002126", "video_name": "3d731c80-fc18-5dd2-9c8e-67d4ebc780d4", "text": "\u4e24\u4e2a\u7a74\u5c45\u4eba\u8d70\u5411\u4e00\u4e2a\u505c\u5728\u8349\u5730\u4e0a\u7684UFO\uff0cUFO\u4e0a\u6709\u4e00\u4e2a\u7eff\u8272\u7684\u706f\u5149\u3002\u4e24\u4e2a\u7a74\u5c45\u4eba\u5e26\u7740\u98df\u7269\u6765"} +{"id": "2004618", "video_name": "9f9c019e-ec39-5e05-920b-c3c3edef35fd", "text": "\u4e09\u7ef4\u52a8\u753b\u4e2d\uff0c\u5927\u8c61\u3001\u6591\u9a6c\u3001\u72d0\u72f8\u3001\u7334\u5b50\u7ad9\u5728\u9010\u6e10\u653e\u5927\u7f29\u5c0f\u7684\u96fe\u6c14\u7b3c\u7f69\u7684\u6df1"} +{"id": "3006273", "video_name": "504a5625-5109-536c-bed8-db84b8feef00", "text": "table. \n\nTranslation: \u4e00\u4f4d\u79d1\u5b66\u5bb6\u5728\u53a8\u623f\u684c\u524d\u5411\u6444\u50cf\u673a\u8bb2\u8bdd\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\nTranslation: \u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "1005824", "video_name": "6b085a85-cc58-5741-a8a1-d86933a5ffb0", "text": "\u5728\u6708\u5149\u4e0b\u63cf\u7ed8\u4e00\u5e45\u6d1b\u592b\u514b\u62c9\u592b\u7279\u5f0f\u7684\u6050\u6016\u573a\u666f\u3002\u8fd9\u4e2a\u602a\u7269\u6ca1\u6709\u5f62\u72b6\uff0c\u9634\u5f71\u548c\u5f62\u72b6\u4e0d\u65ad"} +{"id": "1005029", "video_name": "5d06a656-2f47-51d0-90e9-899414066ab0", "text": "\u4e00\u4e2a\u8001\u864e\u5728\u504f\u8fdc\u4e1b\u6797\u91cc\u5403\u7740\u4e00\u53ea\u7334\u5b50\uff0c\u84dd\u8272\u7684\u5149\u7ebf\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u7684\u573a\u666f\u3002"} +{"id": "4003301", "video_name": "d0b99046-07f7-5dbe-ae9e-96f13ed781c3", "text": "\u4e00\u53ea\u767d\u72d7\u3001\u4e00\u53ea\u9ed1\u732b\u548c\u4e00\u53ea\u9ec4\u86d9\u4e00\u8d77\u73a9\u3002"} +{"id": "2007358", "video_name": "8dfad93b-45f9-5f5d-bb4c-285b5a7a2d00", "text": "\u6bcd\u4eb2\u5012\u5728\u4e00\u6ee9\u8840\u4e2d\uff0c\u7537\u5b69\u56f0\u60d1\u5730\u54ed\u4e86\u3002\u80cc\u666f\u662f\u4e00\u4e2a\u6e38\u4e50\u56ed\uff0c\u65c1\u8fb9\u6709\u4e00\u4e2a\u65cb\u8f6c\u6728\u9a6c\u548c"} +{"id": "6004717", "video_name": "5abb8188-3e33-5b4f-a4d5-21ad81df7cc1", "text": "\u56fd\u738b\u9a91\u9a6c\u9ad8\u6e05"} +{"id": "6002064", "video_name": "b0b82100-9648-5897-8d27-3e63651bc7b6", "text": "\u5728\u6ce1\u6ce1\u6d74\u4e2d\u7684\u5973\u4eba\uff0c\u914d\u4e0a\u9999\u69df\uff0c\u4fef\u77b0\u5df4\u9ece\u548c\u57c3\u83f2\u5c14\u94c1\u5854\u7684\u9633\u53f0\u3002"} +{"id": "7002611", "video_name": "f1a4b0cb-41e3-5419-b4fc-ea7d360b6a0a", "text": "\u5916\u661f\u7403\u4f53\u5728\u5a01\u5c14\u7279\u90e1\u5236\u9020\u519c\u7530\u5706\u5708\u3002"} +{"id": "7003059", "video_name": "eb602ff4-dd6a-5b57-a222-7178a0385877", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5361\u901a\u5973\u5b69\u5750\u5728\u4e00\u4e2a\u7f8e\u4e3d\u800c\u4e30\u5bcc\u591a\u5f69\u7684\u82b1\u56ed\u91cc\uff0c\u548c\u8774\u8776\u4e00\u8d77\u73a9\u800d\uff0c"} +{"id": "0006081", "video_name": "26511b70-a762-5562-9be6-2e0eb503797c", "text": "\u7c89\u8272\u5851\u6599\u5b9d\u77f3\u6f02\u6d6e\u5728\u7070\u7d2b\u8272\u7684\u80cc\u666f\u4e0a\u3002"} +{"id": "2003867", "video_name": "b955229c-8087-59be-baef-4744bbd15d94", "text": "\u6e05\u6668\u9633\u5149\u4e0b\u7684\u9759\u8c27\u82b1\u56ed\uff0c\u55b7\u6cc9\u4e2d\u6c34\u6d41\u7545\u987a\uff0c\u82b1\u513f\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447\u66f3\uff0c\u666f\u8c61"} +{"id": "7004136", "video_name": "713168ae-4eca-5fef-9521-f3ef9fc8ec68", "text": "\u4e00\u4e2a\u540d\u53eb\u6258\u9a6c\u65af\u7684\u6e14\u6c11\u5e26\u7740\u6e14\u7f51\u548c\u888b\u5b50\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\u56de\u5bb6\u3002"} +{"id": "3005150", "video_name": "a8830ee5-a6a0-524c-8974-0bf06ae65529", "text": "\u6a59\u8272\u548c\u7070\u8272\u6cb9\u6f06\u6ef4\u731b\u70c8\u5730\u649e\u51fb\u5728\u9ed1\u8272\u7684\u753b\u5e03\u4e0a\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u620f\u5267\u6027\u3002"} +{"id": "4002501", "video_name": "ff9e2e35-d626-5126-bca9-8d36af2ff03d", "text": "\u5973\u6027\u5728\u4f53\u80b2\u573a\u8e22\u8db3\u7403\uff0c16:9\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "1005305", "video_name": "617b0f00-e1bc-5f56-93f1-40415df4e25a", "text": "\u52a8\u6f2b\u89d2\u8272\u5728\u665a\u4e0a\u7684\u623f\u95f4\u91cc\u542c\u97f3\u4e50\u3002"} +{"id": "0005524", "video_name": "1c3dc4e4-9e24-5c1e-b7b6-0e3404dda2da", "text": "\u5144\u5f1f\u548c\u7236\u4eb2\u6309\u7167\u300a\u5723\u7ecf\u300b\u7684\u65b9\u5f0f\u53bb\u9493\u9c7c\u3002"} +{"id": "4004178", "video_name": "e20dae9b-b132-5237-8442-594ecf4d82dd", "text": "\u665a\u4e0a\u68ee\u6797\u4e2d\u7684\u5e7b\u5f71\u5e7b\u8c61"} +{"id": "0004528", "video_name": "0aa3874a-211b-503f-a33e-4e4403da31fe", "text": "\u4e00\u4f4d\u8001\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u5bf9\u7535\u89c6\u89c2\u770bP. Ramlee\u7535\u5f71\u3002"} +{"id": "2007403", "video_name": "d355a630-e294-585e-bcff-e56886b06ec6", "text": "\u6e29\u99a8\u7684\u623f\u95f4\uff0c\u53ea\u6709\u5c11\u6570\u706f\u5149\uff0c\u524d\u9762\u6709\u4e00\u4e2a\u91d1\u53d1\u5973\u4eba\u5750\u5728\u684c\u5b50\u524d\uff0c\u6234\u7740\u9ea6\u514b\u98ce\u4e3a\u89c2\u4f17"} +{"id": "3003931", "video_name": "c74a931e-df34-5f97-8b4e-45ed658264ab", "text": "\u4e00\u6761\u86c7\u548c\u4e00\u53ea\u874e\u5b50\u5728\u640f\u6597\uff0c\u86c7\u5411\u53e6\u4e00\u6761\u86c7\u5410\u6bd2\uff0c\u874e\u5b50\u54ac\u4e86\u86c7\uff0c\u86c7"} +{"id": "6002535", "video_name": "7a357d69-8807-5258-8222-93ce522be84e", "text": "\u5728\u4e4c\u8d3e\u56e0\u00b7\u9a6c\u54c8\u5361\u52d2\u65af\u74e6\u00b7\u6e7f\u5a46\u5bfa\u5e99\u521b\u9020\u4e00\u4e2a\u9a6c\u54c8\u963f\u8482\u573a\u666f\u3002"} +{"id": "1005125", "video_name": "5e878bf7-9ed1-554f-9b96-dd6b9ebe2c57", "text": "\u4e00\u7fa4\u4eba\u5728\u5403\u6a59\u5b50\u3002"} +{"id": "1006850", "video_name": "7d289e1e-74c9-5f37-8a6a-2fdb213e2db2", "text": "\u4e00\u4e2a\u4eba\u6234\u7740\u74f7\u9762\u5177\u51a5\u60f3\u3002\u74f7\u9762\u5177\u88ab\u6467\u6bc1\u548c\u7834\u635f\u4e86\u3002"} +{"id": "1004634", "video_name": "56316e46-eaa6-5231-9fb3-ed6a4dc2c425", "text": "Source sentence: Rhaast\u5728\u82f1\u96c4\u8054\u76df\u4e2d\u5728\u5b87\u5b99\u4e0a\u7a7a\u98de\u7fd4\u3002\n\nSource sentence: I need to buy some groceries for dinner tonight.\nTranslation: \u6211\u9700\u8981\u4e70\u4e9b\u665a"} +{"id": "1003223", "video_name": "3b59c0b5-f568-5776-a29d-192d8134fe06", "text": "\u7a7f\u7740\u975e\u6d32\u670d\u88c5\u7684\u5973\u5b50\u5728\u661f\u7a7a\u4e0b\u8df3\u821e\u3002"} +{"id": "8002796", "video_name": "ef69c75f-b280-5fa8-a4fe-2f342160200a", "text": "\u706b\u661f\u4e0a\u7684\u5730\u7403\u5316\u6539\u9020\u5de5\u4f5c\u5df2\u7ecf\u53d6\u5f97\u4e86\u5f88\u5927\u8fdb\u5c55\u7684\u672a\u6765\u3002\u63cf\u8ff0\u4f7f\u8fd9\u9897\u884c\u661f\u66f4\u9002\u5408\u5c45\u4f4f\u7684\u8fdb\u5c55\u548c\u9762\u4e34\u7684\u6311"} +{"id": "3005352", "video_name": "25889d75-ac37-5cf3-bf9d-edd9dca7c857", "text": "\u672a\u524a\u76ae\u7684\u6574\u4e2a\u9999\u8549\u5de6\u53f3\u6643\u52a8\u3002"} +{"id": "1005449", "video_name": "6423ec2b-8e58-51f0-aefc-7dc2b5165dcb", "text": "\u8001\u9f20\u6447\u4e86\u6447\u5934\uff0c\u8868\u793a\u4e0d\u3002"} +{"id": "2004701", "video_name": "153f4bc4-7b99-5e31-b4d5-5ac288cf43c3", "text": "\u5361\u4ec0\u62c9\u59c6\u9f13\u52b1\u56fd\u738b\uff0c\u5e76\u95ee\u8c01\u5e94\u8be5\u9075\u5faa\u4e0a\u5e1d\u7684\u65e8\u610f\uff1f"} +{"id": "0003317", "video_name": "3b7f7aa8-c842-5809-b39b-01cf432a1f3c", "text": "\u8ba9\u5973\u5b69\u4f24\u5fc3\uff0c\u767d\u8272\u8fd0\u52a8\u978b\u65cb\u8f6c\u3002"} +{"id": "1005451", "video_name": "642a9ef9-1d3f-53eb-9db0-cb1645524c06", "text": "\u5728\u5370\u5ea6\uff0c\u8302\u5bc6\u7684\u7fe0\u7eff\u8272\u4e1b\u6797\u3002\u9633\u5149\u660e\u5a9a\uff0c\u900f\u8fc7\u6811\u6728\u6295\u4e0b\u6591\u9a73\u7684\u5149\u5f71\u3002"} +{"id": "0005913", "video_name": "23308879-d327-5544-9b42-7e28a728f535", "text": "\u8d85\u903c\u771f\u7684\u5973\u5b69\uff0c\u7d2b\u8272\u7684\u773c\u775b\uff0c\u96ea\u767d\u7684\u76ae\u80a4\u548c\u7ea2\u8272\u7684\u5934\u53d1\uff0c\u5fae\u7b11\u7740\u5bf9\u7740\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "1005587", "video_name": "66cd90af-d077-5895-be3e-3fffbb5b3d65", "text": "\u5728\u5c18\u571f\u98de\u626c\u7684\u5c0f\u8def\u4e0a\u9a91\u7740\u8d8a\u91ce\u6469\u6258\u8f66\uff0c\u5915\u9633\u897f\u4e0b\u3002"} +{"id": "8003768", "video_name": "c96be825-fd8c-523e-a373-10ed967a2fc1", "text": "\u665a\u4e0a\u4e0b\u96ea\u7684\u57ce\u5e02\u91cc\u6709\u732b\u8df3\u8dc3\u3002"} +{"id": "7004198", "video_name": "c818abcc-4886-5e1d-be4b-9641cf71d41a", "text": "\u68ee\u6797\u91cc\u7684\u732b\u5934\u9e70\u3002\u4fe1\u606f\uff1a\u767d\u5e95\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "8001517", "video_name": "e4db5229-3855-5f58-ae68-84a9b47ae223", "text": "\u4e00\u6761\u9f99\u5750\u5728\u6d1e\u7a74\u524d\uff0cHG\u5409\u683c\u5c14\u98ce\u683c\u3002"} +{"id": "0003810", "video_name": "43ead475-3f96-5b44-94df-befab4e3ef07", "text": "\u5b87\u822a\u5458\u88ab\u6708\u7403\u4e0a\u7684\u7d2b\u8272\u751f\u7269\u541e\u98df\u3002"} +{"id": "0006180", "video_name": "27c620e1-88bd-5e13-963c-afb856ca1f5a", "text": "\u4e00\u5bb6\u4eba\u671f\u5f85\u7740\u590f\u5b63\u5ea6\u5047\u3002"} +{"id": "0004070", "video_name": "02baf0b5-4aa7-50eb-8d9e-0eed25a7b05f", "text": "\u6d77\u5cb8\u5c71\u8109\u9644\u8fd1\u7684\u6d77\u57df\u98ce\u66b4\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "1004474", "video_name": "52d73f83-9e71-5767-a8fc-3fe22903ffe2", "text": "\u5916\u592a\u7a7a\u4e2d\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6c99\u6ee9"} +{"id": "7003955", "video_name": "37339590-34c0-51dd-87a5-2769806bd779", "text": "\u4e00\u53ea\u7a7f\u7740\u8718\u86db\u4fa0\u670d\u88c5\u7684\u732b\u5728\u8df3\u821e\u3002"} +{"id": "4004703", "video_name": "9e9400ce-9ed7-5e54-a84d-4c6eb9a4d870", "text": "\u53e4\u5e0c\u814a\u3002\u4e00\u5c0a\u5e0c\u814a\u97f3\u4e50\u7f2a\u65af\u7684\u96d5\u50cf\u7741\u5f00\u4e86\u773c\u775b\u3002"} +{"id": "7004417", "video_name": "6b2bece6-c092-5c61-9a08-2daff401dd3b", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u6050\u9f99\u5728\u96ea\u5c71\u4e0a\u884c\u8d70\uff0c\u76ae\u514b\u65af\uff0cCG\u3002"} +{"id": "1005907", "video_name": "6c990c1d-4286-53b3-bb5d-17b39c3090b2", "text": "\u8bfa\u4e9a\u548c\u4ed6\u7684\u5bb6\u4eba\u5728\u9524\u548c\u952f\u5b50\u7684\u5e2e\u52a9\u4e0b\u5f00\u59cb\u5efa\u9020\u65b9\u821f\uff0c\u4ed6\u4eec\u9762\u5bb9\u575a\u5b9a\u3002\u955c\u5934\u626b\u89c6\u6574\u4e2a\u5efa\u7b51\uff0c"} +{"id": "1006466", "video_name": "76568366-88b6-5f27-8b62-d5afd562378a", "text": "\u519c\u6c11\u5728\u7530\u5730\u4e0a\u52b3\u4f5c\uff0c\u62cd\u6444\u4e86\u5e7f\u89d2\u955c\u5934\u3002\u4ed6\u4eec\u8f9b\u52e4\u5de5\u4f5c\uff0c\u9762\u9732\u75b2\u60eb\u4e4b\u8272\u3002\u7070\u8272\u7684\u4e91"} +{"id": "5001347", "video_name": "6e0b2bfd-1916-51bd-a2d2-d5ce82dbb50f", "text": "\u4e00\u53ea\u91d1\u8272\u7684\u732b\u5934\u9e70\u5728\u5929\u7a7a\u98de\u7fd4\uff0c\u91d1\u8272\u7684\u6c99\u5b50\u4ece\u5929\u7a7a\u503e\u6cfb\u4e0b\u6765\uff0c\u91d1\u8272\u7684\u6c99\u5c71\u94fa\u5c55\u5728\u5730\u9762\u4e0a"} +{"id": "7003199", "video_name": "f8a43d5a-d172-5d6d-b735-3d1e6bea3fbb", "text": "\u675c\u8fbe\u00b7\u83ab\u6d1b\u5179\u98de\u8d8a\u96ea\u767d\u7684\u83ab\u65af\u79d1\uff0c\u5728\u623f\u5c4b\u7a97\u6237\u4e0a\u6492\u4e0b\u91d1\u8272\u793c\u7269\u3002"} +{"id": "1003927", "video_name": "4878b957-735a-54e1-b8a1-2c0c0ef2cc22", "text": "\u77e9\u9635\u4e0e\u53f2\u8482\u6587\u00b7\u585e\u52a0\u5c14\u4e00\u540c\u79fb\u52a8\u3002"} +{"id": "1006140", "video_name": "70809ae7-be92-5bea-b914-5145982cf023", "text": "\u4e00\u8f86\u5e26\u6709\u5361\u901a\u773c\u775b\u548c\u5fae\u7b11\u7684\u8001\u6b3e \u0160koda 01T \u7535\u8f66"} +{"id": "1005226", "video_name": "60323205-806f-51a2-957f-4e8a6e51945c", "text": "\u5728\u9ed1\u591c\u7684\u62e5\u62b1\u4e2d\uff0c\u4e24\u9897\u7eaf\u6d01\u7684\u5fc3\u76f8\u9047\u76f8\u7231\uff0c\n\u4ed6\u4eec\u8ddf\u7740\u97f3\u4e50\u7684\u8282\u594f\u8df3\u821e\uff0c\u4f46\u662f\u5934\u6655"} +{"id": "7003099", "video_name": "3be3ba29-fcd2-5cdc-a23d-bc055b1c0d6a", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u524d\u662f\u4e00\u53ea\u8868\uff0c\u8138\u8272\u60b2\u4f24\u3002"} +{"id": "4002271", "video_name": "54a90d8f-1dd5-5652-9b39-595b66768b03", "text": "\u6ca1\u6709\u65f6\u95f4\u7684\u65f6\u949f\u5feb\u901f\u65cb\u8f6c\u3002"} +{"id": "2005536", "video_name": "5d1e5d06-f4d6-551d-8713-075cd5b44dd9", "text": "\u51cc\u6668\u4e09\u70b9\u949f\uff0c\u4e00\u4e2a\u5f3a\u5927\u7684\u5149\u548c\u80fd\u91cf\u7206\u53d1\u5145\u6ee1\u4e86\u8fd9\u4e2a\u95f9\u9b3c\u7684\u5730\u65b9\u3002\u4e3b\u6301\u4eba\u60ca\u53f9\u4e8e\u6b63\u5728\u5c55\u5f00\u7684"} +{"id": "8001455", "video_name": "23c2ea42-94f3-5c01-9d9c-e500c1dc10b0", "text": "\u4e2d\u56fd\u98ce\u7684\u6e29\u6696\uff0c\u4e00\u53ea\u6a58\u8272\u7684\u732b\uff0c\u60f3\u5403\u997a\u5b50\u3001\u7f8a\u8089\u6c64\u548c\u7ea2\u9152\u3002"} +{"id": "1004965", "video_name": "5bbafad2-f8e1-58a8-b47b-fff19b2e6579", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u91d1\u8272\u7684\u5149\u8292\u6563\u5e03\u5728\u6d77\u9762\u4e0a\u30023D\u30029:16"} +{"id": "7002979", "video_name": "392ad712-9fa6-5051-8af6-13bcb3eccae0", "text": "\u7f13\u6162\u71c3\u70e7\u7684\u706b\u548c\u5916\u9762\u8f7b\u67d4\u7684\u6d77\u6d6a\u79fb\u52a8\u3002"} +{"id": "7002843", "video_name": "5424496e-0575-5672-b1a6-c8990877e45d", "text": "\u72ec\u89d2\u517d\u5bb6\u65cf\u76f8\u4e92\u4ea4\u8c08\u5e76\u5fae\u7b11\u3002"} +{"id": "7003658", "video_name": "0024bfe5-f7c4-57b7-b22c-03e1b863f651", "text": "\u7f8e\u56fd\u603b\u7edf\u4e54\u00b7\u62dc\u767b\u88ab\u6293\u6355\u4e86\u3002"} +{"id": "1003049", "video_name": "3807b07d-2798-51f5-9ab8-a095c171bd5d", "text": "\u9a6c\u91cc\u5965\u5728\u7535\u8111\u4e0a\u73a9\u6e38\u620f\u3002"} +{"id": "8002754", "video_name": "943d9d1f-c23e-57f1-8250-c4673c94631b", "text": "\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u628a\u5315\u9996\u5728\u7a7a\u4e2d\u5347\u8d77\u7684\u89c6\u9891\u3002"} +{"id": "7002789", "video_name": "a12d3017-9d88-5f37-9552-8843d2eecfb3", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d56\u5f17\u626e\u6f14\u52a8\u6f2b\u89d2\u8272\uff0c\u5feb\u901f\u6253\u9f13\u3002"} +{"id": "0006210", "video_name": "287a6436-c27c-5e14-bc46-503a72eb1931", "text": "\u770b\u8d77\u6765\u50cf\u897f\u74dc\u7684\u8f66\u8f86\u5f00\u5411\u60ac\u5d16\u3002"} +{"id": "2003934", "video_name": "b95d645c-3b1a-5673-a892-a45146d297df", "text": "\u6709\u4e00\u5929\uff0c\u7a46\u7f55\u9ed8\u5fb7\u51b3\u5b9a\u62ff\u51fa\u4e00\u5927\u7b14\u94b1\u6765\u73a9\u3002\u4ed6\u5411\u670b\u53cb\u548c\u719f\u4eba\u501f\u94b1\uff0c\u4ee5\u83b7\u5f97\u5fc5\u8981\u7684"} +{"id": "7002739", "video_name": "11a6095a-efe1-50da-b04b-4920cb8b44a2", "text": "\u4e00\u4e2a\u6709\u5b69\u5b50\u5728\u73a9\u7684\u8db3\u7403\u573a\u3002"} +{"id": "7003367", "video_name": "f6def898-72a0-5585-9dd4-888aba4f2f55", "text": "\u65e5\u843d\u7684\u5149\u7ebf\u900f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u7167\u4eae\u4e86\u8611\u83c7\uff0c\u4eff\u4f5b\u5c06\u5b83\u4eec\u9540\u4e0a\u91d1\u8272\u3002"} +{"id": "1006395", "video_name": "7506ebc6-f909-5313-9335-8c84b150208a", "text": "\u4e00\u4e2a\u4eba\u5728\u7530\u91ce\u4e2d\u4eab\u53d7\u5b81\u9759\u7684\u89c6\u9891"} +{"id": "1005296", "video_name": "614d3e31-9fc7-5bce-88f8-568670a79f37", "text": "\u4e00\u4e2a\u7c7b\u4eba\u86d9\u624b\u6301\u4e00\u6839\u6709\u706b\u82b1\u8ff8\u53d1\u7684\u9b54\u6756\u3002"} +{"id": "5001065", "video_name": "71db8858-cced-5788-b083-eb884d7e7e55", "text": "\u5de8\u4eba\u7684\u8c61\u5f81\u5f62\u8c61\u4ee5\u4ed6\u4eec\u6ce5\u571f\u7684\u5f62\u6001\u5448\u73b0\uff0c\u4ee3\u8868\u4ed6\u4eec\u7684\u987a\u4ece\u548c\u9b54\u6cd5\u7ebd\u5e26\u7684\u8106\u5f31\u6027\u3002\u52a8\u753b"} +{"id": "0006500", "video_name": "2d911406-fade-5603-8e9b-dadddcc93a22", "text": "\u4e24\u4e2a\u6a59\u5b50\u5728\u8fdb\u884c\u5251\u672f\u8868\u6f14\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u6e38\u3002"} +{"id": "3003892", "video_name": "5d3a2a11-b487-5493-be3a-8776a41a3818", "text": "\u903c\u771f\u7684\u7535\u5f71\u573a\u666f\u5c55\u793a\u4e00\u4e2a\u7075\u9b42\u5728\u5b69\u5b50\u7684\u7761\u7720\u4e2d\u51fa\u73b0\u3002"} +{"id": "4003550", "video_name": "c093cad1-20f8-5d1b-b9b2-052fe85f2994", "text": "\u5236\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u8868\u660e\u4eba\u4eec\u8bf7\u6c42\u8ba2\u9605\u6211\u7684\u9891\u9053\u3002"} +{"id": "6002006", "video_name": "9e2be7a2-c45b-5499-8980-90b6cb5ed9cd", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u6469\u5929\u8f6e\u6b63\u5728\u6e38\u4e50\u56ed\u4e2d\u65cb\u8f6c\u3002"} +{"id": "3005319", "video_name": "7a293c68-3fcd-5ab5-b260-1baabcff6b92", "text": "\u4e00\u53ea\u4f01\u9e45\u5728\u54b8\u6c34\u91cc\u6e38\u6cf3\uff0c\u89c6\u89c9\u4e0a\u8f6c\u5316\u6210\u6de1\u6c34\u3002"} +{"id": "7002586", "video_name": "a4f2af96-81cb-5603-93e3-1e7e22d564e1", "text": "\u6fc0\u6d3b\u5149\u548c\u80fd\u91cf\u7684\u4eba\u3002"} +{"id": "6002357", "video_name": "cbcdc7ab-3191-52dd-a722-2b3c5dea8875", "text": "\u795e\u5728\u795e\u79d8\u7684\u571f\u5730\u4e0a\uff0c\u4ee5\u7535\u5f71\u7ea7\u522b\u76844K fps\u5448\u73b0\u3002"} +{"id": "0003216", "video_name": "396c7507-4bfd-501c-8526-bf6eb6b5a50b", "text": "\u4e00\u4e2a\u7d2b\u8272\u7684\u9f99\u671d\u6211\u98de\u6765\u3002"} +{"id": "2006799", "video_name": "6e7a0d22-595a-5057-864c-0b8abd756681", "text": "\u75b2\u60eb\u7684\u7537\u4eba\u7ad9\u5728\u5e02\u4e2d\u5fc3\uff0c\u4ea4\u901a\u6df7\u4e71\u3002"} +{"id": "7004403", "video_name": "190fb2f6-d3f5-5c13-a378-36c6c25e2401", "text": "\u7a97\u5e18\u6162\u6162\u5730\u62c9\u5f00\u3002"} +{"id": "2003388", "video_name": "6564f040-2b6a-5752-bbd4-770d9120b221", "text": "Translation: \u5e93\u5c14\u7279\u00b7\u79d1\u672c\u5728\u7ebd\u7ea6\u7684\u300aNirvana Unplugged\u300b\u3002"} +{"id": "1006237", "video_name": "7242efed-04fb-5b9c-80f1-be036a780895", "text": "\u9ec4\u8272\u7684\u6d77\u8c5a\u8df3\u4e86\u8d77\u6765\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "4003026", "video_name": "13daf9b5-44d0-5c99-bb26-369fef87f455", "text": "\u4e00\u4f4d\u8eab\u7a7f\u9ed1\u8272\u6c99\u4e3d\u670d\u9970\u7684\u7f8e\u4e3d\u5370\u5ea6\u5973\u5b69\u505a\u4e86\u4e00\u4e2a360\u5ea6\u7684\u8f6c\u8eab\uff0c\u5979\u5e94\u8be5\u51fa\u73b0\u5728\u672a\u6765\u4e16\u754c\u76844K"} +{"id": "1005676", "video_name": "68442034-92e6-5a6e-8aa5-2300fe27986c", "text": "\u7eff\u8272\u80cc\u666f\u4e0a\uff0cM\u548cD\u5b57\u6bcd\u7684\u96ea\u82b1\u65cb\u8f6c\u3002"} +{"id": "8003134", "video_name": "24d51442-7970-50ef-a1bd-16a40d6241db", "text": "\u5de7\u514b\u529b\u5c71\u7f8a\u5728\u5de7\u514b\u529b\u5de5\u5382\u7684\u4f20\u9001\u5e26\u4e0a\u88ab\u9540\u94ec\u4e86\u3002"} +{"id": "6004679", "video_name": "050b131b-6584-501c-ad13-ee64b21b34ab", "text": "\u4e24\u8f86\u672a\u6765\u4e3b\u4e49\u8d85\u7ea7\u8dd1\u8f66\u6bd4\u8d5b\u7684\u52a8\u753b\u3002"} +{"id": "0003869", "video_name": "44ee06a5-249d-57b0-8438-ee31fea78be0", "text": "\u7ed5\u7740\u4e00\u4e2a5G\u57fa\u7ad9\u65cb\u8f6c\u3002"} +{"id": "5001861", "video_name": "21eb45aa-2a91-5e94-815c-96c0b1339232", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797 \u4fe1\u606f\uff1a\u62c9\u8d3e\u5144\u5f1f (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3006357", "video_name": "95a0ba35-56f4-5a76-9a5c-9dfe97d4138e", "text": "\u6811\u53f6\u8f7b\u8f7b\u6447\u66f3\uff0c\u6c34\u4e5f\u5728\u6d41\u52a8\u3002"} +{"id": "5001005", "video_name": "83bec564-1982-5f95-b29d-f3a4a6532787", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u65c5\u884c\u8f7f\u8f66\uff0c\u98de\u901f\u7a7f\u68ad\u4e8e\u90ca\u533a\u5c0f\u9547\u3002"} +{"id": "2005404", "video_name": "c1d8886c-a0b8-5ae8-983d-e57aa05635b0", "text": "\u706b\u8f66\u9a76\u8fc7\u7070\u8272\u7684\u96e8\u96fe\u3002"} +{"id": "8001820", "video_name": "e1d7e953-7f3b-5432-a270-6ca735463b11", "text": "\u4e00\u4e2a\u5148\u8fdb\u7684\u673a\u5668\u4eba\u6b63\u5728\u5b9e\u9a8c\u5ba4\u4e2d\u88ab\u521b\u9020\u51fa\u6765\uff0c\u5177\u6709\u903c\u771f\u7684\u56fe\u50cf\uff0c4K\u5206\u8fa8\u7387\u3002"} +{"id": "4002721", "video_name": "5295a328-608f-59ff-ac6d-53cfec529441", "text": "\u4e00\u6735\u5355\u72ec\u7684\u7ea2\u8272\u96cf\u83ca\u5728\u7530\u91ce\u4e0a\u7684\u5c71\u4e18\u4e0a\u751f\u957f\uff0c\u8fd1\u8ddd\u79bb\u89c2\u770b\u96cf\u83ca\uff0c\u80cc\u666f\u662f\u6811\u6728\u548c"} +{"id": "4004527", "video_name": "61f099f4-3af0-580a-aceb-4616273a3801", "text": "\u5c71\u4e0a\u6709\u4e00\u8f6e\u5927\u6708\u3002\u9e1f\u513f\u5728\u98de\u7fd4\u3002"} +{"id": "1003196", "video_name": "3ac46f89-a877-5e84-bab0-06e7d9a6db7e", "text": "\u81f3\u5c11\u4e00\u5206\u949f\u957f\u7684\u8fea\u5385\u97f3\u4e50\u89c6\u9891"} +{"id": "5001079", "video_name": "1ce65c2f-4367-54b9-b9b8-b65d27e35f32", "text": "1970\u5e74\u4ee3\u7684\u4e50\u961f\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "0006322", "video_name": "2aa5ec50-b273-5f22-9610-247bab8be874", "text": "\u53f6\u5f0f\u7684\u526a\u8f91\u6846\u67b6\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u8138\u90e8\u4e0d\u53ef\u89c1\u7684\u7537\u5b50\u3002"} +{"id": "3006781", "video_name": "608705d4-2283-5852-9b31-240c9769cf3a", "text": "\u5b87\u822a\u5458\u4e0e\u673a\u5668\u4eba\u548c\u5c0f\u9f99\u72ac\u5728\u706b\u661f\u4e0a\u884c\u8d70\u7684\u975e\u5e38\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "6003424", "video_name": "c07826b2-695f-5f6c-bcc1-19beac90cdeb", "text": "\u60f3\u8c61\u4e00\u53ea\u62ff\u7740\u6c7d\u6c34\u7f50\u7684\u718a\u732b\u3002"} +{"id": "3003609", "video_name": "6e320ad5-68f1-5ee6-8181-ec83a914e0a6", "text": "Source sentence: \u7a7f\u6bd4\u57fa\u5c3c\u7684\u8d5b\u535a\u670b\u514b\u81ea\u7531\u5973\u795e\u50cf"} +{"id": "1003760", "video_name": "454eaf98-3145-517e-a480-1906db9f3ccb", "text": "\u7537\u5b50\u8dcc\u5012\u5728\u5730\uff0c\u649e\u5230\u5730\u9762\uff0c\u9c9c\u8840\u56db\u5904\u6d8c\u6d41\u3002"} +{"id": "2005171", "video_name": "6f34efd2-5e66-5274-8b55-0021f167e7c0", "text": "\u5343\u99c4\u30f6\u8c37\u4ea4\u5dee\u70b9\u306e\u3042\u308b\u6771\u4eac\u306e\u90fd\u5e02"} +{"id": "0005816", "video_name": "21adca89-fb8c-578f-a37a-d017774be468", "text": "\u83ab\u65af\u79d1\u5e02\u4e2d\u5fc3\uff0c\u661f\u671f\u65e5\uff0c\u5546\u52a1\u55b7\u6c14\u673a\uff0c8k\uff0c\u8d85\u7ea7\u9ad8\u901f\u52a8\u4f5c\u76f8\u673a\u903c\u771f\u3002"} +{"id": "4004820", "video_name": "84872eb5-a875-56d5-aa84-6511b47d9b58", "text": "\u661f\u7a7a\uff0c\u51e0\u4e4e\u6ca1\u6709\u4e91\uff0c\u51b7\u8272\u8c03\uff0c\u7f13\u6162\u5411\u5916\u7f29\u653e\u3002"} +{"id": "8003441", "video_name": "bbb10ef2-8837-5c94-86f4-62b4872ceeaa", "text": "\u5728\u4e0b\u96e8\u7684\u57ce\u5e02\u91cc\uff0c\u4e00\u53ea\u8ff7\u60d8\u7684\u732b\uff0cLED\u706f\u5149\u7167\u8000\u4e0b\u7684\u96e8\u3002"} +{"id": "3006282", "video_name": "2a2fc5dd-7688-5ba1-b901-582560093b5c", "text": "\u4e00\u53ea\u9ed1\u5929\u9e45\u5728\u6e56\u4e0a\u6162\u6162\u6e38\u6cf3\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "4002749", "video_name": "e8fc1142-2ee3-5a61-bbf7-a07c91e8d8c3", "text": "\u4ece\u4e00\u5f20\u963f\u80b2\u738b\u7684\u56fe\u50cf\u5f00\u59cb\uff0c\u53ef\u4ee5\u662f\u5386\u53f2\u63d2\u56fe\u6216\u96d5\u50cf\u3002"} +{"id": "6002339", "video_name": "97498166-caa3-5dfa-a4bd-64ab66d2b495", "text": "\u5723\u8bde\u8001\u4eba\u5728\u4ed6\u6e29\u99a8\u7684\u5c0f\u5c4b\u91cc\uff0c\u88ab\u95ea\u70c1\u7684\u706f\u5149\u6240\u73af\u7ed5\uff0c\u9762\u5e26\u5fae\u7b11\u601d\u8003\u7740\uff0c\u8d85\u9ad8\u6e05\uff0c\u903c"} +{"id": "3005442", "video_name": "6afaede9-b119-559e-9966-e55552c5ae3e", "text": "\u7531\u6811\u6728\u6784\u5efa\u800c\u6210\uff0c\u7531\u732b\u63d0\u4f9b\u52a8\u529b\u7684\u5148\u8fdb\u751f\u7269\u673a\u5668\u4eba\u3002"} +{"id": "6002290", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "\u5973\u6027\uff0c\u5e73\u9762\u8bbe\u8ba1\u5e08\u5de5\u4f5c\u4e2d\uff0c\u5e7d\u9ed8\uff0c\u73b0\u5b9e\u3002"} +{"id": "7003780", "video_name": "88c91b96-09ba-5d0a-bfba-6f1b78ad79c1", "text": "\u9713\u8679\u706f\u7684\u5012\u5f71\u3002\u6d41\u52a8\u7684\u96fe\u6c14\u3002\u591c\u665a\u7684\u7a7a\u6c14\u3002"} +{"id": "2005461", "video_name": "33000852-2088-5fe7-b981-99c68af13ed5", "text": "\u6d77\u8c6a\u73b0\u8c61\u51fa\u73b0\u5728\u6d77\u4e0a\uff0c\u6709\u4e00\u5ea7\u6d77\u4e0a\u7684\u6865\uff0c\u9ed1\u4e91\u7b3c\u7f69\uff0c\u6d77\u9e25\u6765\u56de\u98de\u7fd4\u3002"} +{"id": "5001348", "video_name": "71993e83-a9dd-5f58-9b03-e3aa21b4d10e", "text": "\u5b59\u609f\u7a7a\uff0c\u4f20\u8bf4\u4e2d\u7684\u7334\u738b\uff0c\u4e58\u7740\u65cb\u8f6c\u7684\u91d1\u8272\u96fe\u6c14\u964d\u4e34\u3002\u4ed6\u5c79\u7acb\u5728\u90a3\u91cc\uff0c\u95ea\u70c1"} +{"id": "3005816", "video_name": "7d761ae2-7ad6-5515-8036-6d6217b2d015", "text": "\u5929\u4f7f\u5728\u4f0a\u7538\u56ed\u91cc\u6b22\u805a\uff0c\u4e3e\u884c\u76db\u5bb4\u3002"} +{"id": "0003392", "video_name": "3cb8f5d0-e0cd-5c1a-8d49-b1e30bbae6ca", "text": "\u4f7f\u7528\u706f\u5149\u53d8\u5316\u548c\u97f3\u4e50\u6765\u5f3a\u8c03\u623f\u95f4\u4e4b\u95f4\u7684\u8fc7\u6e21\u3002"} +{"id": "8003103", "video_name": "436afadb-b986-5d38-98fd-3f16866c9204", "text": "\u8239\u53ea\u4e0a\u4e0b\u6643\u52a8\uff0c\u4eba\u4eec\u7728\u773c\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u6ce2\u6d6a\u6d8c\u52a8\u3002"} +{"id": "6003148", "video_name": "702a91a2-b5b0-558c-859c-ec85f88cae75", "text": "\u9ed1\u6697\u4e2d\u7684\u9020\u7269\u4e3b\u6325\u821e\u624b\u81c2\u521b\u9020\u5b87\u5b99\uff0c\u884c\u661f\u56f4\u7ed5\u7740\u4ed6\u8fd0\u8f6c\u3002"} +{"id": "4002773", "video_name": "067d8149-f18f-5d7d-b10c-0ae07b154291", "text": "\u9b54\u5e7b\u82b1\u56ed\u5728\u65e5\u843d\u65f6\u6709\u6c34\u6bcd\u6ce1\u6ce1\u548c\u6ce1\u6ce1\u82b1\uff0c\u83b7\u5956\u6444\u5f71\u4f5c\u54c1\uff0c4K\u3002"} +{"id": "2004237", "video_name": "208778b4-e72b-57b7-8f37-ca7223ef4faa", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u5929\u5802\u5883\u754c\u63cf\u7ed8\uff0c\u7ec6\u8282\u7eb7\u7e41\u590d\u6742\u3001\u8272\u5f69\u9c9c\u8273\u751f\u52a8\u3002\u5929\u4f7f\u4eec\u7a7f\u7740\u5e84\u4e25"} +{"id": "4003097", "video_name": "4a6941cf-8f6d-5b2f-a6ed-92a715c64389", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u7684\u6218\u6597\u573a\u9762\uff0c\u82f1\u56fd\u548c\u7f8e\u56fd\u58eb\u5175\u5e26\u7740\u575a\u5b9a\u7684\u8868\u60c5\u4ece\u6218\u58d5\u9876\u7aef\u51b2\u8fc7\u53bb\uff0c\u786e"} +{"id": "6004683", "video_name": "8e689a57-195b-5cfc-bf19-3674e82a8488", "text": "\u57ce\u5e02\u4e2d\u7f8e\u4e3d\u7684\u591c\u7a7a\uff0c\u4ee5lofi\u89c6\u9891\u8d28\u91cf\u5448\u73b0\u3002"} +{"id": "2006887", "video_name": "634e3158-410f-51c2-b233-22fd00444f53", "text": "\u5728\u4e00\u500b\u6b61\u6a02\u7684\u6751\u838a\u908a\u7de3\uff0c\u6709\u4e00\u7247\u7da0\u8349\u5982\u8335\u3001\u9bae\u82b1\u76db\u958b\u3001\u5929\u7a7a\u6e5b\u85cd\u7684"} +{"id": "3005703", "video_name": "7867bc42-62be-5185-9269-350d9298f9da", "text": "\u7a7a\u95f4\uff0c\u94f6\u6cb3\uff0c\u661f\u661f\uff0c\u660e\u4eae\u7684\u661f\u661f\uff0c\u6d41\u661f\u3002"} +{"id": "6003911", "video_name": "6f97a2f9-7e89-5d2e-8c5b-1a74ae28455f", "text": "\u753b\u6c34\u6d41\uff0c\u4e91\u52a8\uff0c\u9e1f\u98de\uff0c\u8f66\u884c\uff0c\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "5001030", "video_name": "cb7fe6ff-d51e-57ee-99d4-09fb5c52226d", "text": "\u5c06\u7167\u7247\u7684\u80cc\u666f\u66f4\u6539\u4e3a\u7b80\u5355\u3001\u5b81\u9759\u7684\u6237\u5916\u573a\u666f\u3002"} +{"id": "2004988", "video_name": "d160cdae-2e3b-5e98-90fe-0ea238a981e9", "text": "\u6587\u68ee\u7279\u00b7\u68b5\u9ad8\u98ce\u683c\u7684\u661f\u7a7a\u591c\u666f\u753b\u3002\u751f\u52a8\u76843D\u8272\u5f69\u3002"} +{"id": "2005601", "video_name": "25df68bc-aefc-5080-9da8-b624d205bc7a", "text": "\u5728\u73ab\u7470\u6e56\u4e0a\u6f02\u6d6e\u7740\u4e00\u628a\u7ea2\u8272\u7684\u5409\u4ed6\u3002\n\nSource sentence: The sun sets behind the mountains, painting the sky with hues of orange and pink.\n\n\u592a\u9633\u5728"} +{"id": "2004141", "video_name": "ef675447-7e07-5caa-a2c7-7b14a4df4f90", "text": "\u4e00\u9897\u7f8e\u4e3d\u7684\u5730\u7403\u884c\u661f\u987a\u65f6\u9488\u7ed5\u7740\u5176\u4ed6\u884c\u661f\u516c\u8f6c\u3002"} +{"id": "6003686", "video_name": "ec088673-24c7-5bae-9bc8-d2a373042208", "text": "\u7f13\u6162\u7f29\u653e\u5408\u6210\u5668\u548c\u793a\u6ce2\u5668\u5728\u591c\u665a\u7684\u51ac\u6797\u4e2d\uff0c\u5448\u73b01960\u5e74\u4ee3\u7535\u89c6\u98ce\u683c\u3002"} +{"id": "4002650", "video_name": "aaffcc9f-a83d-5339-a2d0-050ccd0668dd", "text": "\u5973\u5b69\u5728\u81ea\u5df1\u7684\u6751\u5e84\u91cc\u53d8\u6210\u4e86\u4e00\u4f4d\u9886\u8896\uff0c\u5979\u5efa\u7acb\u7684\u793e\u533a\u5145\u6ee1\u7740\u5e78\u798f\u548c\u548c\u8c10\u3002"} +{"id": "8003599", "video_name": "cbde8c80-f329-5443-a5ce-bad04fde5edf", "text": "\u4e8c\u624b\u5e97\u5185\u6709\u5c0f\u5916\u661f\u4eba\u85cf\u8eab\u3002"} +{"id": "8003151", "video_name": "f228a762-fc2f-5225-9de5-4c6c567cff44", "text": "\u4e00\u4e2a\u8fd0\u52a8\u578b\u7f8e\u5973\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "7002842", "video_name": "10955eb1-62f7-581b-b412-aef7076c7d71", "text": "\u4e00\u4e2a\u4eba\u5728\u8f66\u91cc\u62ff\u7740\u65b9\u5411\u76d8\u7684\u968f\u673a\u89c6\u9891\u3002"} +{"id": "0004867", "video_name": "108e0931-c2ea-544e-bc05-3380f2be3359", "text": "\u718a\u4f5c\u4e3a\u592a\u7a7a\u6307\u6325\u5b98\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c8K\u3002"} +{"id": "3006683", "video_name": "9ca70e72-7036-5901-ac2e-a2f9d8ff0b65", "text": "5. \uff08\u6b64\u5916\uff09\uff0c\u82f1\u96c4\u906d\u9047\u795e\u8bdd\u751f\u7269\u5b88\u536b\u7684\u5165\u53e3\uff0c\u8fdb\u5165\u4e00\u4e2a\u65f6\u95f4\u5728\u73b0\u5b9e\u548c\u5e7b\u60f3\u4e4b\u95f4\u8df3\u8dc3\u7684\u9886\u57df\u3002"} +{"id": "8001506", "video_name": "7415f0a7-d578-59bd-84a9-a993d377b6d8", "text": "\u4e00\u4e2a\u5a74\u513f\u5fae\u7b11\u7740\uff0c\u7136\u540e\u7a81\u7136\u5f00\u59cb\u54ed\u4e86\u3002"} +{"id": "8003591", "video_name": "942823a4-1884-545a-b508-172ce8d97b8b", "text": "1930\u5e74\u7684\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u5f71\u50cf\u8d44\u6599\u3002"} +{"id": "1003611", "video_name": "428ae7d4-9a08-561c-90b1-baeabe904d64", "text": "3D\u52a8\u753b\u3002\u5154\u5b50\u548c\u72fc\u4e4b\u95f4\u7684\u5bf9\u8bdd\u3002\u62cd\u6444\uff1a\u5e7f\u89d2\u62cd\u6444\u68ee\u6797\uff0c\u5c55\u793a\u9ad8\u8038\u7684\u6811\u6728\u548c\u8302\u5bc6\u7684\u704c"} +{"id": "2004819", "video_name": "7cb93294-f116-5989-9c03-980e5e846d48", "text": "\u4e00\u4f4d\u7f8e\u5973\u6b63\u5728\u8349\u5730\u4e0a\u8d70\u8def\u3002"} +{"id": "3006323", "video_name": "9b0f68d1-5ca8-59c7-917c-f0c7e94803a0", "text": "\u76ee\u7684\uff0c\u6cbb\u7597\u76ee\u7684\uff0c\u63d0\u5347\uff0c\u7075\u6027\uff0c\u52a8\u6001\uff0c8K\u3002"} +{"id": "7004475", "video_name": "90812e4b-98bb-57f0-8990-e89dc2008fe5", "text": "\u4e00\u68f5\u6811\u53d8\u6210\u7edd\u5730\u6b66\u58eb\u3002"} +{"id": "6002283", "video_name": "d00f24cd-cb83-5c73-8bfb-67c17dfde407", "text": "\u5973\u4eba\u4f4e\u58f0\u5bf9\u7740\u5979\u7d27\u63e1\u5728\u80f8\u524d\u7684\u7a7a\u73bb\u7483\u7f50\u8033\u8bed\u3002"} +{"id": "7003278", "video_name": "0badfadd-c0b2-5d31-80ac-6d0e4bb85489", "text": "\u4e00\u4e2a\u767d\u4eba\u5728\u6d77\u6ee9\u522b\u5885\u91cc\u901a\u8fc7\u7f51\u7edc\u5b66\u82f1\u8bed\u3002\u8d85\u903c\u771f\u3002"} +{"id": "2004723", "video_name": "4efbcfcc-47cb-570d-8d1b-2f6e81406a9d", "text": "\u57283D\u5c0f\u5c4b\u91cc\uff0c\u6709\u4e00\u4e2a\u53eb\u505a\u624e\u5fb7\u7684\u908b\u9062\u5c71\u533a\u4f6c\uff0c\u4ed6\u5728\u9ed1\u6697\u53ef\u6015\u7684\u70db\u5149\u4e0b\u89c2\u770b\u76ae\u514b"} +{"id": "0004496", "video_name": "09ed8e6d-c280-5b8b-80cb-74eb81ff2502", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u871c\u8702\u5728\u663e\u5fae\u955c\u4e0b\u5403\u8702\u871c\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "3006421", "video_name": "fba87c1f-28ed-5f91-83c6-32ebf192ecca", "text": "\u9ed1\u6697\u7684\u68ee\u6797\u91cc\uff0c\u6ee1\u6708\u9ad8\u6302\u3002\u96fe\u6c14\u7f13\u7f13\u5730\u5377\u6765\u3002"} +{"id": "2005200", "video_name": "a83e062f-f026-5cc2-b88b-364932d0f720", "text": "\u6708\u7403\u53d4\u53d4\uff08\u5361\u901a\u6708\u4eae\u8138\uff09\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004680", "video_name": "b1dfd764-14ba-597a-86cc-0a1570e6a2b2", "text": "\u4e00\u4e2a\u9a6c\u620f\u56e2\u7684\u9886\u961f\u5728\u5927\u7bf7\u9876\u4e0b\u5411\u4eba\u7fa4\u629b\u94b1\u3002"} +{"id": "5001689", "video_name": "89767ac3-e186-5ea9-8ffd-f203697472f9", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5a74\u5728\u9633\u5149\u660e\u5a9a\u7684\u6797\u95f4\u7a7a\u5730\u4e0a\uff0c\u5468\u56f4\u662f\u4e94\u989c\u516d\u8272\u7684\u82b1\u8349\u6811\u6728\u3002"} +{"id": "6002231", "video_name": "c49c9662-4421-5dc6-b1c1-3d8f0fb9fcf9", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5c06\u949e\u7968\u6254\u5411\u7a7a\u4e2d\u3002"} +{"id": "8003267", "video_name": "22797e5c-a1c1-5141-b156-ec7678498c7c", "text": "\u9c8d\u52c3\u00b7\u7f57\u65af\u4e0e\u9ea6\u5f53\u52b3\u7684\u7f57\u7eb3\u5fb7\u00b7\u9ea6\u5f53\u52b3\u548c\u85af\u6761\u5c0f\u5b50\u8fdb\u884cMMA\u683c\u6597\u3002"} +{"id": "2006609", "video_name": "741131e5-b33a-507a-bfed-fd3993e6a4fb", "text": "\u5728\u6708\u7403\u4e0a\u8df3\u821e\uff0c\u7136\u540e\u5728\u6728\u661f\u4e0a\u8df3\u821e\u3002"} +{"id": "0004399", "video_name": "0841f9aa-e4e6-5f0c-9688-e482e510e790", "text": "\u5728\u5b8c\u5168\u7eff\u8272\u7684\u80cc\u666f\u4e0a\u521b\u5efa\u4e00\u53ea\u9752\u86d9\u7684\u4fa7\u9762\u89c6\u56fe\uff1b\u80cc\u666f\u5e94\u8be5\u6709\u4e00\u4e2a\u5355\u4e00\u7684\u7eff\u8272\u8c03\uff0c\u80cc\u666f\u4e2d\u4f7f\u7528\u7684\u7eff\u8272"} +{"id": "8002410", "video_name": "5ea9e2ef-6271-5a50-86b7-19966e1b6f82", "text": "\u4e00\u4e2a\u7a7f\u7740\u6a59\u8272\u5b87\u822a\u670d\u7684\u5b87\u822a\u5458\u4ece\u4ed6\u7684\u5b87\u5b99\u98de\u8239\u4e2d\u51fa\u6765\u3002"} +{"id": "4002798", "video_name": "ee6080fb-cbca-5d4b-af93-0c40ee8af4c9", "text": "\u57ce\u5e02\u4e2d\u67f3\u6811\u7684\u89c6\u5dee\u52a8\u753b \n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u6e38\u3002"} +{"id": "8001649", "video_name": "403f60ce-681a-5781-a17b-8e1bda79e548", "text": "\u96e8\u6797\u4e2d\u7ea2\u8272 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1004212", "video_name": "4dd03623-845a-5f3e-b762-6792475b00c8", "text": "\u79d1\u6469\u7f57\u56fd\u65d7\u5728\u5929\u7a7a\u4e2d\u98d8\u626c\u3002"} +{"id": "2006199", "video_name": "31574735-f11b-5ce1-b678-c99dbc2dd4f0", "text": "\u72c2\u6b22\u8282\u6e38\u8f6e\u671d\u7740\u65e5\u843d\u9a76\u53bb\u3002"} +{"id": "6004156", "video_name": "e61ad3fb-6874-5674-ac2a-900d028eba12", "text": "\u6bcd\u4eb2\u6b63\u5728\u7ed9\u5973\u513f\u9012\u4e00\u4e2a\u5c0f\u74f6\u5b50\uff0c\u7c7b\u4f3c\u4e8e1950\u5e74\u4ee3\u7535\u5f71\u4e2d\u7684\u9ed1\u767d\u98ce\u683c\u3002"} +{"id": "0005554", "video_name": "1cc8745b-00c3-542e-8e7e-edf09806f8fc", "text": "\u4e00\u540d\u7537\u5b50\u548c\u4e00\u540d\u5973\u5b50\u624b\u7275\u624b\u5728\u5e02\u4e2d\u5fc3\u7684\u8857\u9053\u4e0a\u6563\u6b65\u3002"} +{"id": "5001820", "video_name": "e29ad51f-0068-5069-941c-2e94b957575f", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u6bdb\u8338\u8338\u7684\u732b\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c3D\u52a8\u6f2b\u3002"} +{"id": "5001513", "video_name": "319b7f25-a227-5e4d-b742-bbdb3e65eaff", "text": "\u4eba\u5de5\u667a\u80fd\u7814\u7a76\u4e2d\u5fc3\u7684\u89c6\u9891\u5c55\u793a\u5b9e\u9a8c\u5ba4\u5165\u53e3\u52a8\u7ebf\u3002"} +{"id": "2003854", "video_name": "fddd2733-f782-53a1-af6a-53f382cdd83a", "text": "Source sentence: Warhammer 40k space marines in blue armor walking out of a drop pod in the jungle\n\n\u6218\u952440k\u84dd\u88c5\u7532\u7684\u592a\u7a7a\u6218\u58eb\u4ece\u843d\u5730\u8231"} +{"id": "8003389", "video_name": "711742a0-1b71-5ae6-b36c-cd73bd1a6ed5", "text": "\u65f6\u4ee3\u5e7f\u573a\u7684\u57ce\u5e02\u591c\u666f"} +{"id": "1003943", "video_name": "48c400fb-f707-566b-ba57-8d81f61e6f44", "text": "\u4e00\u4e2a\u4e0b\u96ea\u7684\u591c\u665a\uff0c\u5728\u91ce\u8425\u4e4b\u65c5\u7684\u524d\u5915\uff0c\u6211\u4eec\u5728\u5c0f\u5c4b\u91cc\u6574\u7406\u6211\u4eec\u7684\u88c5\u5907\u3002"} +{"id": "4004388", "video_name": "8b0b1512-0c47-58df-99b6-ced07bc66a3d", "text": "\u6726\u80e7\u7684\u4e91\u96fe\u7f2d\u7ed5\uff0c\u4fef\u77b0\u4e00\u7247\u5927\u9646\uff0c\u65e9\u6668\u7b3c\u7f69\u7740\u6697\u6de1\u7684\u5149\u3002"} +{"id": "2003007", "video_name": "bca2606d-9d35-5673-a903-ca5ddacc1b80", "text": "\u4e00\u4f4d\u5973\u58eb\u548c\u5979\u7684\u513f\u5b50\u4e00\u8d77\u5954\u8dd1\u3002"} +{"id": "1006027", "video_name": "6ec82132-4bd7-56cb-98b1-5207dbe5228a", "text": "\u4e00\u53ea\u6234\u7740\u58a8\u955c\u7684\u52a8\u753b\u67e5\u5fb7\u72d7\u7684\u56fe\u50cf\uff0c\u7528\u4f5cYouTube\u56fe\u6807\u3002"} +{"id": "3003801", "video_name": "b6b00728-eb50-50e8-8b11-44510d7876bb", "text": "\u4e4c\u9e26\u4ee5\u52a8\u6f2b\u98ce\u683c\u8868\u73b0\u51fa\u7231\u7684\u611f\u89c9\u3002"} +{"id": "1005364", "video_name": "62985341-bdd0-54b2-974a-2ec856a20725", "text": "\u95ea\u7535\u4fa0\uff08DC\uff09\u5728\u5927\u96e8\u4e2d\u7ad9\u5728\u5c4b\u9876\u4e0a\uff0c\u5c0f\u4e11\uff08DC\uff09\u671d\u4ed6\u731b\u51fb\u3002"} +{"id": "1006111", "video_name": "701ccdd7-e000-5272-8068-a6a398dfe524", "text": "\u767d\u8272\u5e03\u843d\u4e0b\uff0c\u63ed\u793a\u51fa\u4e00\u5ea7\u96d5\u50cf\u3002"} +{"id": "7003960", "video_name": "2a761f52-5495-50e1-8391-a03317ea8c62", "text": "\u63cf\u7ed8\u8c7a\u72fc\u5c0f\u5fc3\u5730\u56de\u5230\u81ea\u5df1\u7684\u5de2\u7a74\uff0c\u5e76\u611f\u89c9\u5230\u6b3a\u9a97\u72ee\u5b50\u7684\u673a\u4f1a\u3002"} +{"id": "0006017", "video_name": "251ad895-600b-5095-9323-5c35bed1c735", "text": "\u6587\u5316\u4e2d\u7684\u91ce\u5154\u9003\u8131\u4e86\u72fc\u6cf0\u5766\u3002"} +{"id": "5001736", "video_name": "74678cfa-23ad-587a-b195-9b5690a01408", "text": "\u4e00\u5339\u96c4\u58ee\u7684\u9a6c\u8dc3\u5165\u6c34\u4e2d\uff0c\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u9053\u5f69\u8679\u3002"} +{"id": "8003357", "video_name": "1d022ccd-5d68-590e-9431-41e12e7774c9", "text": "3D\u52a8\u753b\uff0c\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u8863\u670d\u3001\u77ed\u9ed1\u53d1\uff0c\u80cc\u7740\u7ea2\u8272\u80cc\u5305\u7684\u5b69\u5b50\uff0c\u5728\u6cb3\u4e0a\u7684\u6865\u4e0a\u8d70\u8def\u3002"} +{"id": "6002965", "video_name": "012fab8b-6ce4-5163-b45d-162aa884910b", "text": "\u79e6\u59cb\u7687\u9675"} +{"id": "8001573", "video_name": "11ca1a5b-e989-5dda-9624-bfff311c66fb", "text": "\u4e00\u500b\u73bb\u7483\u7403\uff0c\u57284K\u300112K\u3001\u8d85\u73fe\u5be6\u7a7a\u9593\u4e2d\u65cb\u8f49\u5730\u7403\u5927\u9678\u3002"} +{"id": "3005376", "video_name": "2536fec8-fd3b-5cce-b3dd-2ddc0a7d3e58", "text": "\u660e\u4eae\u7684\u9ec4\u8272\u84ec\u677e\u732b\uff0c\u91d1\u8272\u88c5\u9970\u54c1\uff0c\u95ea\u95ea\u53d1\u5149\uff0c\u903c\u771f\uff0c\u957f\u65f6\u95f4\u7761\u7720\u540e\u5feb\u901f\u9192\u6765"} +{"id": "7004464", "video_name": "ebd787fe-3377-59d5-86e0-4b4badb3deb2", "text": "\u8d85\u5199\u5b9e\u7684\u667a\u80fd\u624b\u673a\uff0c\u53ef\u4ee5\u64ad\u653e\u4f26\u6566\u4e0b\u96ea\u7684\u89c6\u9891\uff0c\u80cc\u666f\u662f\u4f26\u6566\u7684\u666f\u8c61\u3002"} +{"id": "8003175", "video_name": "caa95cbe-71e6-51e9-9cc1-aff42c282b54", "text": "\u4e00\u4e2a\u7537\u5b69\u7ecf\u5e38\u5728\u8bb8\u591a\u4eba\u5468\u56f4\u3002"} +{"id": "7003496", "video_name": "1fb158fa-02fc-5594-af48-c0b605548ced", "text": "\u5927\u578b\u529e\u516c\u5ba4\uff0c\u6709\u5f88\u591a\u684c\u5b50\u3001\u7535\u8111\u548c\u7a7f\u7740\u897f\u88c5\u7684\u52a8\u7269\u3002"} +{"id": "3005863", "video_name": "f8661a1c-354d-575a-bc76-761d3bbca16a", "text": "\u4e00\u4e2a\u89d2\u8272\u8fdb\u884c\u65cb\u8f6c\u8e22\u7684\u7c97\u7565\u52a8\u753b\uff0c\u8eab\u4f53\u548c\u624b\u81c2\u7684\u52a8\u4f5c\u6d41\u7545\uff0c\u6ca1\u6709\u5206\u6563\u6ce8\u610f\u529b\u7684\u5143\u7d20\u3002"} +{"id": "2003464", "video_name": "f74d4c5a-2be6-5d66-985a-e3fcd47220b4", "text": "\u4e00\u7fa4\u670b\u53cb\u5728\u804a\u5929\u548c\u7b11\u58f0\u4e2d\uff0c\u4e00\u4e2a\u7537\u5b69\u88ab\u7559\u5728\u4e00\u65c1\u5b64\u72ec\u65e0\u52a9\u3002"} +{"id": "6003502", "video_name": "e97e4fb3-41f0-58ed-a1af-b691ddf7313a", "text": "\u5973\u5b69\u8d64\u811a\u5728\u7164\u4e0a\u8d70\u5e76\u6ca1\u6709\u4efb\u4f55\u53cd\u5e94\u3002"} +{"id": "2005477", "video_name": "cc7f2c04-2239-5b83-ba10-9f2dff8570db", "text": "\u4e00\u53ea\u68d5\u8272\u6bdb\u76ae\u7684\u5154\u5b50\u548c\u4e00\u53ea\u5bb3\u7f9e\u7684\u4e4c\u9f9f\u5728\u5361\u901a\u5f62\u5f0f\u4e0b\u4ea4\u8c08\u3002"} +{"id": "4004799", "video_name": "3f1a039a-dedd-5ec5-aca8-9b95ac69fdec", "text": "\u4e00\u4e2a\u5973\u5a74\u548c\u5979\u7684\u7237\u7237\u5976\u5976\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0005416", "video_name": "1a839135-1d08-5ab1-b8bb-12cf91b851a8", "text": "\u5c0a\u91cd\u4f60\u7684\u6839\u6e90\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007831", "video_name": "c58fa23e-c798-5646-8f51-6d3fbfa5e5e9", "text": "\u7e41\u534e\u7684\u5e02\u96c6\u7a7a\u4e2d\u4fef\u77b0\uff0c\u5f69\u8272\u7684\u644a\u4f4d\u6392\u5217\u5728\u8857\u9053\u4e24\u65c1\uff0c\u795e\u5947\u7684\u751f\u7269\u5728\u6d4f\u89c8\u72ec\u7279\u7684\u7269"} +{"id": "0004265", "video_name": "0616db1d-af8a-58b5-9506-f946b0e35bb2", "text": "\u5728\u7ebd\u7ea6\u5e02\uff0c\u4e00\u4f4d\u7a7f\u7740\u6f02\u4eae\u5546\u52a1\u670d\u88c5\u7684\u5973\u6027\u8d70\u5728\u8857\u4e0a\uff0c\u7528\u4e00\u53ea\u624b\u6276\u7740\u8116\u5b50\u56e0\u4e3a\u9888\u90e8\u75bc"} +{"id": "7004408", "video_name": "e93d5673-3b21-5ce1-ac45-271757e52031", "text": "\u4e00\u4e2a\u9760\u8fd1\u7684\u77ed\u8349\u7684\u7eff\u8272\u8349\u5730\u3002"} +{"id": "2004497", "video_name": "6c7df814-af67-59ad-a4af-516d13c5925f", "text": "\u79d1\u5b66\u5bb6\u4eec\u5728\u7ea0\u7ed3\u4f26\u7406\u9053\u5fb7\u7684\u5f71\u54cd\u3002"} +{"id": "1005972", "video_name": "6daa9dc5-6ab9-5d44-aea2-8cece1fcc3c9", "text": "\u6210\u4e3a\u90a3\u4e9b\u6562\u4e8e\u9006\u5883\u68a6\u60f3\u7684\u5e0c\u671b\u706f\u5854\u3002"} +{"id": "3004512", "video_name": "800738eb-7d1e-50f8-8e08-f5a7ae0c13b0", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u7537\u5b50\u4ece\u4e00\u67b6\u79c1\u4eba\u55b7\u6c14\u673a\u8d70\u5f00\uff0c\u662f\u7531\u7f57\u4f2f\u7279\u00b7\u52a0\u6587\u6570\u5b57\u6e32\u67d3\u5236\u4f5c\u7684\uff0c\u91c7\u7528\u91d1\u8272"} +{"id": "7004525", "video_name": "4068e4ea-fe40-5654-97df-26b9edd8c9b4", "text": "\u6709\u4e00\u4f4d\u540d\u53eb\u5c1a\u5609\u7684\u5973\u738b\uff0c\u5979\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "2006391", "video_name": "4f464fdb-8546-5571-8613-64e9741c7b13", "text": "\u9ed1\u8272\u5927\u4e3d\u82b1\u5f00\u653e\u7684\u5ef6\u65f6\u6444\u5f71\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u8272\u5f69\uff0c\u5145\u6ee1\u751f\u52a8\u7684\u6708\u5149\u3002"} +{"id": "1006493", "video_name": "76e31aa2-4526-5060-b475-2783303add9d", "text": "\u8bfa\u4f2f\u7279\u662f\u7ed8\u5236\u5361\u901a\u7684\u5bf9\u8c61\u3002"} +{"id": "0005528", "video_name": "1c4c6890-a5cf-5dc7-a66a-14590d34ac51", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u8bf4\uff1a\u201c\u6211\u975e\u5e38\u7231\u4f60\uff0c\u8fbe\u7433\u5a1c\u3002\u201d"} +{"id": "7003369", "video_name": "56934fd2-fd2a-52b5-b88c-2030113878a2", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u96f7\u96e8\u4e2d\u5954\u8dd1\u7684\u7279\u5199\u955c\u5934"} +{"id": "3003510", "video_name": "bf7fcc27-6809-5d31-b52e-bc0692ca4337", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5370\u5ea6\u5973\u5b69\uff0c\u5728\u4e00\u4e2a\u5bfa\u5e99\u91cc\uff0c\u7eff\u6811\u4e3a\u80cc\u666f\uff0c\u542c\u7740\u4e00\u4f4d30\u5c81\u7684\u5929\u4f7f\u3002\u5979\u4e0d\u52306\u5c81\u3002"} +{"id": "4002288", "video_name": "6f834513-9511-5ca9-8c22-2df2aa2f4694", "text": "\u6839\u636e\u6570\u5b57\u7ed8\u753b\u7684\u6668\u7a7a\u770b\u8d77\u6765\u5f88\u5047\u3002"} +{"id": "0005369", "video_name": "19ab4aae-ed7a-51d7-aced-f1448bbc0f81", "text": "\u5728\u73bb\u7483\u76d2\u4e2d\u6f02\u6d6e\u7684\u5531\u5934\uff0c\u9644\u5e26\u7740\u7535\u7ebf\u548c\u4e8c\u6781\u7ba1\u7684\u8111\u866b\uff0c\u827e\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af"} +{"id": "2006901", "video_name": "9ace26e0-e5d0-5b57-a646-55f65c454bbd", "text": "\u5728\u5b66\u6821\u91cc\uff0c\u4fdd\u9669\u8bb2\u5e08\u89e3\u91ca\u4e86\u6c7d\u8f66\u4fdd\u9669\u6539\u9769\u7684\u4e3b\u8981\u8981\u70b9\u3002\n\nSource sentence: My favorite food is sushi because of its unique taste and texture. \n\n\u6211\u7684\u6700"} +{"id": "3006469", "video_name": "d541797f-9f55-54cb-9c76-09e6db821a42", "text": "\u4e00\u4e2a\u7537\u4eba\u88ab\u4e00\u4f4d\u5973\u4eba\u7684\u7231\u60c5\u6240\u6bd4\u55bb\u7684\u62a2\u52ab\uff0c\u6700\u7ec8\u88ab\u7559\u4e0b\u6ede\u7559\u5728\u516c\u8def\u4e0a\u3002"} +{"id": "0004093", "video_name": "0310cffc-7e08-54da-b95e-f298aa95d26a", "text": "\u7eb3\u4f26\u5fb7\u62c9\u00b7\u83ab\u8fea\u5728\u8857\u4e0a\u8df3\u821e"} +{"id": "0004776", "video_name": "0f07b697-cfaa-5402-9512-2a6ceeeacb7a", "text": "\u63cf\u7ed8\u4eba\u7c7b\u63a2\u7d22\u592a\u7a7a\u6df1\u5904\u7684\u573a\u666f\uff0c\u6709\u672a\u6765\u611f\u7684\u5b87\u5b99\u98de\u8239\u548c\u7a7a\u95f4\u7ad9\u7a7f\u8d8a\u5b87\u5b99\u98ce\u666f\u3002"} +{"id": "1004773", "video_name": "5848208c-a7d2-51aa-91ca-99539ee3761f", "text": "\u4e00\u53ea\u79c3\u9e70\u5a01\u4e25\u5730\u6ed1\u7fd4\u5728\u7a7a\u4e2d\uff0c\u5c55\u793a\u5176\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u7ffc\u5c55\u3002"} +{"id": "0005390", "video_name": "19f71dfe-f552-56ab-a302-9dde5572061b", "text": "\u5c06\u4e00\u679a\u4e2d\u56fd\u8c61\u68cb\u5b50\u5347\u7ea7\u4e3a\u5c06\u519b\u3002"} +{"id": "6004217", "video_name": "396b8be3-e478-5d1c-9d5e-6b13e3ca515f", "text": "\u4e00\u4e2a\u6234\u7740\u84dd\u8272\u8fd0\u52a8\u886b\u7684\u5377\u53d1\u7537\u5b69\u5728\u96ea\u4e2d\u6f02\u6d6e\uff0c\u5361\u901a\u3002"} +{"id": "1003538", "video_name": "41453e8b-54ca-5021-b553-9433057357f4", "text": "\u4e00\u53ea\u7a7f\u7740\u82ad\u857e\u821e\u88d9\u7684\u9752\u86d9\u5728\u6559\u5802\u524d\u9762\u8df3\u821e\u3002"} +{"id": "1004187", "video_name": "4d6fce8f-081f-5bb6-a39b-b2cd0d3513c6", "text": "\u5927\u95e8\u6253\u5f00\u4e86\uff0c\u4e00\u67b6\u67b6\u98de\u673a\u5728\u55b7\u6c14\u53d1\u52a8\u673a\u7684\u97f3\u4e50\u4e2d\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u4ece\u673a\u5e93\u91cc\u51fa\u6765\u30024K\u7167\u7247\u3002"} +{"id": "8001271", "video_name": "ebebc0fd-fcb4-56b8-ac76-f006f9db7026", "text": "\u4ece\u4ee5\u4e0b\u80cc\u666f\u4e2d\u521b\u4f5c\u4e00\u4e2a\u79d1\u5e7b\u7535\u5f71\u7684\u5ef6\u7eed\u573a\u666f\uff1a\u7b2c\u4e00\u5e55\u2014\u2014\u8352\u829c\u7684\u4e16\u754c\uff1a\u4ecb\u7ecd\u5730\u4e0b\u751f\u6d3b\u548c\u793e\u4f1a\u7684\u8870"} +{"id": "2005873", "video_name": "c0dc7f3e-e9ff-5868-b56c-ff5e3e16ceaf", "text": "\u4e00\u4f4d\u5b69\u5b50\u4ece\u81ea\u884c\u8f66\u4e0a\u6454\u4e0b\u6765\uff0c\u7136\u540e\u518d\u6b21\u5c1d\u8bd5\u3002\u4ee5\u68b5\u9ad8\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "3003097", "video_name": "33f38dfa-93d2-531c-b4c1-eeb313da430c", "text": "\u7cd6\u888b\u718a\u6839\u636e\u5b83\u4eec\u7684\u4e3b\u4eba\u2014\u2014\u4e00\u4f4d\u8eab\u7a7f\u7eff\u8272\u548c\u91d1\u8272\u957f\u888d\u7684\u667a\u6167\u8001\u6cd5\u5e08\u7684\u6307\u5f15\uff0c\u7d27\u968f\u5176"} +{"id": "1003334", "video_name": "3d5da228-232c-5597-abdd-78b603b4b2d7", "text": "\u4e2d\u4e16\u7eaa\u9a91\u58eb\u4ee5\u50cf\u7d20\u827a\u672f\u98ce\u683c\u53c2\u52a0\u6bd4\u8d5b\u3002"} +{"id": "2004074", "video_name": "e9aa8ff1-1ee1-5fcd-890c-7ea01fb14d23", "text": "\u4e00\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5750\u5728\u90a3\u91cc\uff0c\u5bf9\u7ecf\u8fc7\u7684\u6570\u767e\u4eba\u6765\u8bf4\u662f\u770b\u4e0d\u89c1\u7684\u3002"} +{"id": "0003769", "video_name": "42ff35a1-f108-5118-a41d-ffbc699e2da3", "text": "\u4e00\u79cd\u975e\u5e38\u5947\u602a\u548c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u98df\u7269\uff0c\u6709\u53a8\u5e08\u624b\u6301\u7740\u3002"} +{"id": "0003440", "video_name": "3d91c907-e42a-51e1-9c66-ccd2cd4b1f04", "text": "\u4e16\u754c\u4e0a\u6700\u5f3a\u58ee\u7684\u7537\u4eba\u4e3e\u8d77\u6bd4\u7279\u5e01\u7684\u5e7f\u89d2\u62cd\u6444\u3002"} +{"id": "2006553", "video_name": "7b7390e9-946f-54c5-b0d7-89a1a0c0ab2b", "text": "\u9ed1\u7ea2\u4e24\u4e2a\u62e5\u6709\u8d85\u4eba\u529b\u91cf\u7684\u68cd\u5b50\u4eba\u5728\u591c\u665a\u8fdb\u884c\u640f\u6597\uff0c\u6218\u6597\u6301\u7eed\u5230\u65e5\u51fa\u3002"} +{"id": "6003948", "video_name": "a96f05a9-4831-5505-84e6-6bdc6890af07", "text": "\u4e3b\u795e\u8c61\u5750\u59ff\uff0c\u5370\u5ea6\u98ce\u683c\uff0c\u53cc\u8272\u8c03\uff0c\u660e\u4eae\u3002"} +{"id": "4004852", "video_name": "24705407-0ba8-52ae-a8e3-b5ac57fee599", "text": "\u4e00\u80a1\u9f99\u5377\u98ce\u79fb\u52a8\u7740\uff0c\u6467\u6bc1\u7740\u8def\u5f84\u4e0a\u7684\u4e00\u5207\uff0c\u4e00\u4e2a\u5c0f\u90ca\u533a\u6751\u5e84\u3002"} +{"id": "7002686", "video_name": "00fa54c6-b35e-5623-a4b2-bc2b29cba797", "text": "\u65e9\u671f\u7684\u57fa\u7763\u6559\u4f1a\u805a\u4f1a\u5e86\u795d\u5723\u8bde\u8282\uff0c\u7267\u5e08\u548c\u4fe1\u5f92\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u80cc\u666f\u88c5\u9970\u7740\u7b80\u6734"} +{"id": "3006457", "video_name": "d02f4f46-83f2-514d-bd45-e042ee69f7f1", "text": "\u50cf\u7d20\u827a\u672f\u7684\u5973\u5b69\u5728\u4ff1\u4e50\u90e8\u3002"} +{"id": "0006684", "video_name": "3101a602-e439-57ac-a226-d63e2284401a", "text": "\u793e\u4ea4\u5a92\u4f53\u5f71\u54cd\u8005\u5728\u57ce\u5e02\u9ad8\u697c\u8df3\u4f1e\uff0c\u540c\u65f6\u5904\u4e8e\u81ea\u62cd\u6a21\u5f0f\u3002"} +{"id": "6003168", "video_name": "24f6f244-adbe-5678-bf43-7b88a0c00ac8", "text": "\u519b\u7528\u76f4\u5347\u673a\u5728\u7530\u91ce\u4e0a\u964d\u843d\uff0c\u4fa7\u9762\u89c6\u56fe\uff0c\u591a\u4e91\u7684\u5929\u7a7a\u3002"} +{"id": "7004184", "video_name": "1a2333a2-5d3a-5fd6-9de0-00c08bfe5360", "text": "\u5927\u5b66\u5973\u5b69\u4e0e\u673a\u5668\u4eba\u5408\u4f5c\u5199\u6545\u4e8b\u3002"} +{"id": "3004625", "video_name": "1f9bf34e-0edb-5277-a352-07988dcee111", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u8ff7\u4f60\u732b\u4e58\u5750\u706b\u7bad\u5411\u4e0a\u98de\u884c\u3002"} +{"id": "8001519", "video_name": "55ff19c9-55a1-50d0-9fca-097a33b256ee", "text": "\u591c\u7a7a\u4e2d\u7684\u70df\u706b\u3002\u9e1f\u7fa4\u805a\u96c6\u5728\u4e00\u8d77\u5e76\u4f20\u9012\u4fe1\u606f\uff1a\u041c\u0430\u043a\u043b\u0430\u0439\uff08\u5b57\u4f53\u4e3aItalic Impact\uff09\u3002"} +{"id": "4002705", "video_name": "525256c9-8592-5d83-9865-37ae474224c4", "text": "\u5728\u963f\u5df4\u65af\u6258\u7684\u8857\u9053\u4e0a\uff0c\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u72ec\u81ea\u884c\u8d70\u5728\u4e00\u7247\u9634\u4e91\u5bc6\u5e03\u3001\u65e0\u4eba\u70df\u7684\u65e9"} +{"id": "3004627", "video_name": "47f15f7c-fbea-5b13-b06a-b79c80c63145", "text": "\u4e1b\u6797\u3001\u5c71\u533a\u6216\u7535\u5f71\u4e2d\u7684\u7206\u70b8\u3002"} +{"id": "2007306", "video_name": "a3f354dc-8266-51c9-a32d-4ef99ca049de", "text": "\u4e94\u4e2a\u4eba\u5728\u5b87\u5b99\u4e2d\uff0c\u4ee5\u52a8\u753b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "8003125", "video_name": "bb67aed9-abf9-56d2-867b-f4d86f5c4fb1", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u548c\u9ed1\u8272\u76ae\u5927\u8863\u7684\u65f6\u5c1a\u4e9a\u6d32\u5973\u6027\uff0c\u5934\u671d\u5de6\u8f6c\uff0c\u5e26\u6709\u6d3b\u529b\u3002"} +{"id": "7002963", "video_name": "e4e8a29b-9bdc-5e8a-82c9-4b54df3ced09", "text": "\u7b80\u6d01\u7684\u80cc\u666f\u914d\u4e0a\u9e21\u3001\u8349\u548c\u83f2\u5f8b\u5bbe\u56fd\u65d7\u3002"} +{"id": "2005465", "video_name": "395cc854-4321-5f67-95e2-4b4c1c1d5d1b", "text": "\u4ecb\u7ecd\u4e00\u4e2a\u5145\u6ee1\u4e86\u4f1a\u8bf4\u8bdd\u7684\u52a8\u7269\u3001\u53cb\u597d\u7684\u602a\u7269\u548c\u9b54\u5e7b\u98ce\u666f\u7684\u795e\u5947\u4e16\u754c\u3002\u521b\u9020\u5177\u6709\u72ec\u7279\u80fd"} +{"id": "2007492", "video_name": "b18b955e-e39b-5cd3-90c5-51f86161bc85", "text": "\u4e00\u4e2a\u7537\u4eba\u5f00\u7740\u4e00\u628a\u673a\u67aa\uff0c\u4e00\u628a\u5927\u800c\u91cd\u7684\u673a\u67aa\uff0c\u5de8\u5927\u7684\uff0c\u7784\u51c6\u7740\u6444\u50cf\u673a\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a9:16\uff0c"} +{"id": "5001181", "video_name": "1ca04833-b810-5637-ace4-71911d1e0686", "text": "\u4e00\u7247\u6709\u50f5\u5c38\u5728\u8e22\u8db3\u7403\u7684\u8db3\u7403\u573a\u3002"} +{"id": "6003109", "video_name": "324842ac-e72b-538f-8191-83a33da4c0b1", "text": "\u5c06\u4e00\u4e2a\u6df7\u4e71\u7684\u9ed1\u8272\u5934\u53d1\u548c\u9510\u5229\u773c\u795e\u7684\u52a8\u6f2b\u89d2\u8272\uff0c\u7a7f\u7740\u9ed1\u8272\u4f20\u7edf\u7684\u65e5\u672c\u670d\u88c5\uff0c\u52a8\u753b\u5316\u3002\u8ba9\u89d2\u8272\u5728"} +{"id": "1003406", "video_name": "3edcb56d-ce40-5c40-9c9b-18ed6245e8db", "text": "\u5723\u8bde\u8001\u4eba\u7ad9\u7740\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u53ef\u6015\u3001\u5a01\u80c1\u3001\u4ee4\u4eba\u4e0d\u5b89\uff0c\u514b\u83b1\u592b\u00b7\u5df4\u514b\u98ce\u683c\u3002"} +{"id": "0005916", "video_name": "2332b5a0-0b28-5e3e-9996-d031f1222a44", "text": "\u5927\u7ea2\u8272\u6570\u5b57\u4e0b\u964d\uff0c\u955c\u5934\u62c9\u8fd1\u3002"} +{"id": "2003825", "video_name": "d7275329-d71d-58a5-b0da-748c10b78df9", "text": "\u738b\u5b50\u5750\u5728\u5730\u677f\u4e0a\uff0c\u5e2e\u52a9\u7070\u59d1\u5a18\u7a7f\u4e0a\u73bb\u7483\u978b\uff0c\u800c\u7070\u59d1\u5a18\u5219\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "4003605", "video_name": "277c72ff-8963-545d-b529-e970f715efc0", "text": "\u5bbd\u655e\u8c6a\u534e\u7684\u5ea6\u5047\u5c4b\uff0c\u5916\u9762\u98d8\u7740\u96ea\u82b1\uff0c\u5927\u7a97\u6237\uff0c\u4ece\u5ba4\u5185\u770b\u5230\u7f8e\u666f\uff0c4K\u3002"} +{"id": "0005415", "video_name": "1a7fd0ac-af50-5365-8f6f-95bc6d238809", "text": "\u5728\u68ee\u6797\u4e2d\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u5973\u4eba\u6b63\u5728\u9003\u79bb\u4e00\u53ea\u72ee\u5b50\uff0c\u4ee5\u9ed1\u767d1.33:1\u65e0\u58f0\u5149"} +{"id": "6002460", "video_name": "f294223f-0716-58bb-bf67-428794330cc2", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5728\u6cb3\u8fb9\u8dd1\u6b65\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "7004061", "video_name": "68cb4230-3865-5ff6-9cba-c7ab9f387a2c", "text": "\u6211\u7684\u53ef\u601c\u5fc3\u554a\uff0c\u90a3\u4e9b\u795e\u79d8\u7684\u6811\u7a81\uff0c\u5728\u77ac\u606f\u4e07\u53d8\u7684\u9713\u8679\u5149\u4e2d\u76f8\u4e92\u751f\u957f\u4ea4\u7ec7\uff0c\u5728\u6211\u5145\u6ee1"} +{"id": "7004808", "video_name": "dd86841b-83eb-506a-b707-f39b9ee52882", "text": "\u5728\u4e00\u4e2a\u96ea\u6d1e\u91cc\u6709\u4e2a\u7537\u4eba\uff0c\u70b9\u71c3\u4e86\u706b\uff0c\u5750\u7740\u3002"} +{"id": "2004468", "video_name": "a2524c3c-2f67-583b-8e69-6a923b33cfdd", "text": "\u7ef4\u4eac\u6218\u58eb\u7ad9\u5728\u4e00\u8258\u957f\u8239\u4e4b\u4e0a\uff0c\u6e56\u6c34\u5e73\u9759\uff0c\u53cd\u5c04\u51faEcchi\u827a\u672f\u98ce\u683c\u4e2d\u96c4\u4f1f\u7684\u5c71\u8109\u3002"} +{"id": "3003957", "video_name": "22dccf29-d1ce-5a51-a31d-55db5243b884", "text": "\u5df4\u57fa\u65af\u5766\u592b\u5987\u8d64\u8db3\u6f2b\u6b65\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2006359", "video_name": "422ed833-7fae-5d3c-9a9d-025beea4f053", "text": "\u7a7f\u7740\u4e0a\u8863\u906e\u4f4f\u8eab\u4f53\u7684\u7537\u4eba\uff0c\u9664\u4e86\u9762\u90e8\u5916\uff0c\u8138\u90e8\u662f\u534a\u4eba\u534a\u602a\u7269\u7684\uff0c\u5728\u9ed1\u6697\u7684\u5730\u65b9\u4f46\u5468\u56f4\u6709"} +{"id": "4002185", "video_name": "b6848f5b-456b-5012-a5b4-8fa986cf93b1", "text": "\u4e00\u4e2a\u56fe\u50cf\uff0c\u5176\u4e2d\u6b4c\u5267\u9662\u5efa\u7b51\u4ee5\u8def\u6613\u65af\u00b7\u5eb7\u98ce\u683c\u5efa\u9020\u3002"} +{"id": "3005108", "video_name": "348e4b2b-9c2c-5edd-926e-190903701902", "text": "Translation: \u57f9\u6839\u751f\u957f\u7684\u6811\uff0c\u53e4\u4ee3\u4e2d\u56fd\u7684\u6811\u6728"} +{"id": "6002486", "video_name": "64db3d69-03bf-52a0-b501-40fdb1d23913", "text": "\u7a81\u51fa\u5f3a\u8c03\uff0c\u4e00\u4e2a\u52c7\u6562\u7684\u5973\u5b69\u53ef\u80fd\u4f1a\u51fa\u73b0\u5728\u610f\u60f3\u4e0d\u5230\u7684\u5730\u65b9\u3002"} +{"id": "8002982", "video_name": "a579f2e2-d125-5ae7-af03-5409385ee0dc", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u53a8\u623f\u73af\u5883\uff0c\u81ea\u7136\u5149\u7ebf\u7167\u5c04\u8fdb\u6765\u3002\u4e00\u4e2a\u5973\u4eba\u5728\u624b\u638c\u4e2d\u7ffb\u8f6c\u9ec4\u82aa\u3002"} +{"id": "1005115", "video_name": "5e526f92-6455-5712-a765-3b6f926a637c", "text": "\u76ae\u5361\u4e18\u548c\u96f7\u4e18\u5728\u6d77\u6ee9\u5403\u5bff\u53f8\u3002"} +{"id": "2007459", "video_name": "72d2f0d8-b2b7-54dd-9b2b-883510a5c9ef", "text": "\u4e00\u53ea\u67ef\u57fa\u9a91\u6469\u6258\u8f66\u5728\u8def\u4e0a\u75be\u9a70\u3002"} +{"id": "4004153", "video_name": "8036bb24-ec16-5454-95e5-98ade248d8f4", "text": "\u6444\u50cf\u673a\u7f29\u653e\u5230\u753b\u4f5c\u4e0a\uff0c\u63ed\u793a\u4e86\u4e0e\u542f\u793a\u5f55\u7684\u8054\u7cfb\u3002"} +{"id": "0005254", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan\u542c\u5230\u8fd9\u4e2a\u6d88\u606f\u975e\u5e38\u9ad8\u5174\uff0c\u5f00\u59cb\u8ddf\u7740\u4ed6\u8d70\u3002"} +{"id": "1006524", "video_name": "776997f4-380a-5283-9a55-5b0b4827a979", "text": "\u5bb6\u4e2d\u76846\u5c81\u4f0a\u65af\u5170\u7537\u5b69"} +{"id": "0005146", "video_name": "158e802e-eb39-5b36-91ff-3083cd35c213", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u4eba\u5728\u5927\u8857\u4e0a\u7528\u4ed6\u7684iPhone\u5de5\u4f5c\u3002"} +{"id": "6003285", "video_name": "2229cffa-92b5-56c2-a950-d4a91eca6b7a", "text": "\u8001\u5e08\u9001\u793c\u7269\u7ed9\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "8002236", "video_name": "eaad94cd-788b-5e36-9539-a39b69bb9883", "text": "\u5728\u6c7d\u8f66\u4e0a\u521b\u9020\u4e00\u4e2a\u6b63\u5728\u6d3e\u53d1\u793c\u7269\u7684\u5723\u8bde\u8001\u4eba\u3002"} +{"id": "7002862", "video_name": "04f7e3ee-6304-5c3d-b77a-bd494a332d21", "text": "\u4e00\u95f4\u4f1a\u8bae\u5ba4\u91cc\u6709\u51e0\u4e2a\u4eba\uff0c\u6709\u7537\u6709\u5973\uff0c\u90fd\u7a7f\u7740\u897f\u88c5\u3002"} +{"id": "0004743", "video_name": "0e84de53-aa2a-54b5-a12f-1db6ddb76c9f", "text": "\u4e00\u4e2a\u7985\u5e08\u5c06\u5375\u77f3\u6254\u8fdb\u88ab\u8302\u5bc6\u7684\u7eff\u6811\u73af\u7ed5\u7684\u9759\u6c34\u6c60\u4e2d\u3002"} +{"id": "2006617", "video_name": "cfa82a1f-9370-579b-807e-0735699e60be", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u73a9\u624b\u673a\uff0cBrawl Stars\u7684\u6807\u5fd7\u51fa\u73b0\u4e86\u3002"} +{"id": "4003552", "video_name": "07b36dbc-59c4-55bb-aa88-496912ec522c", "text": "\u4e00\u540d\u5973\u6027\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u6b23\u8d4f\u98ce\u666f\u3002"} +{"id": "2007877", "video_name": "8badab59-ad3d-5dcc-9826-e580911acddf", "text": "\u4e00\u4e2a\u4eba\u5728\u6ce5\u8def\u4e0a\u8ff7\u8def\u4e86\u3002"} +{"id": "4002321", "video_name": "6e060dc7-196c-5191-8ea1-67d28a0dd5c2", "text": "\u65e5\u51fa\u7684\u65f6\u5019\uff0c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u4e66\u623f\u91cc\u601d\u8003\u5979\u7684\u4eba\u751f\u3002"} +{"id": "6003130", "video_name": "7ebfb59b-b416-5efb-9e1d-6d1bcf990477", "text": "\u4e00\u4e2a\u4eba\u7c7b\u7684\u6d77\u6ee9\u670b\u514b\u7ad9\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e0e\u5de8\u5927\u7684\u98de\u8247\u5f62\u6210\u9c9c\u660e\u5bf9\u6bd4\u3002"} +{"id": "2003412", "video_name": "d7924e1d-c283-5c05-a928-a68d559638ac", "text": "\u97f3\u4e50\u8282\u4e0a\u7684\u6447\u6eda\u4e50\u961f\u3002"} +{"id": "2003189", "video_name": "9befcef0-c18a-5857-ba35-4bf20a5b4fd4", "text": "\u4e00\u9053\u95ea\u5149\u77ac\u95f4\u81f4\u76f2\u4e86\u4e00\u540d\u6076\u9b54\u58eb\u5175\uff0c\u591c\u665a\u4e2d\uff0c\u80cc\u666f\u71c3\u8d77\u706b\u5149\uff0c\u5982\u540c\u7535\u5f71\u573a\u666f"} +{"id": "1004463", "video_name": "52a120e4-8b49-530e-821e-1436d2362582", "text": "\u8428\u7c73\u8ba4\u771f\u503e\u542c\uff0c\u5f53\u4ed6\u4eec\u5206\u4eab\u81ea\u5df1\u7684\u68ee\u6797\u670b\u53cb\u7684\u6545\u4e8b\u65f6\uff0c\u4ed6\u4eec\u4e00\u8d77\u7b11\u4e86\u3002"} +{"id": "4004218", "video_name": "6f408ea9-1979-51a8-b3f5-6afa88fe6267", "text": "\u81ea\u7531\u81ea\u5728\u5730\u505a\u9e1f\u7c7b\u8be5\u505a\u7684\u4e8b\u60c5\uff0c\u62e5\u6709\u771f\u6b63\u7684\u81ea\u7531\u3002"} +{"id": "3006398", "video_name": "28a2bba2-3061-51ed-bc31-9db9cadc1596", "text": "\u4ed6\u7684\u65a7\u5934\u4ece\u624b\u4e2d\u6ed1\u843d\uff0c\u6e85\u5165\u6cb3\u4e2d\u3002"} +{"id": "1005485", "video_name": "64c1cb62-36fa-56a3-b1b9-f117b7365557", "text": "\u5728\u6811\u6797\u4e2d\u521b\u9020\u4e00\u5e45\u72d7\u548c\u7537\u5b69\u4e92\u76f8\u4ea4\u8c08\u7684\u5f62\u8c61\u3002"} +{"id": "4004586", "video_name": "289142ac-ad63-5c99-853d-14bfd64f9c9b", "text": "\u5723\u8bde\u6c14\u6c1b\u8c03\u8282\u5458\u5728\u5723\u8bde\u5e02\u573a\u7684\u80cc\u666f\u4e0b\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "2003943", "video_name": "c2973ce2-c833-545b-a20c-39fb68e8c626", "text": "\u7687\u51a0\u7537\u5b50\u5bf9\u7740\u6444\u50cf\u673a\u8bf4\u8bdd\u3002"} +{"id": "3005334", "video_name": "b0c67066-16db-5b5c-aaf6-863637159c0b", "text": "\u8d85\u903c\u771f\u7684\u771f\u4eba\u963f\u660e\u00b7\u963f\u7279\u83b1\u7279\u3002"} +{"id": "6003813", "video_name": "0d2e146e-0f72-54bd-a51a-95c20baa6cbf", "text": "\u8fd9\u91cc\u73b0\u5728\u5b58\u5728\u7740\u6211\u4eec\u4e0d\u77e5\u9053\u7684\u7ef4\u5ea6\u3002"} +{"id": "3004802", "video_name": "7435d628-fe01-5c62-8bb3-96c737fb0c9b", "text": "\u5c3c\u7f57\u6cb3\u4e0a\u7684\u5996\u7cbe\u7684\u4e00\u90e81970\u5e74\u7684\u8001\u7535\u5f71\u3002"} +{"id": "0003992", "video_name": "0145c544-a36a-5084-81ed-2134cfe4c7e5", "text": "\u79d1\u5b66\u5bb6\u4eec\u5e0c\u671b\u8fdb\u4e00\u6b65\u7814\u7a76\u6781\u53e4\u8001\u7684\u4eba\u7c7bDNA\uff0c\u4ee5\u5e2e\u52a9\u6f84\u6e05\u8fd9\u4e9b\u8c1c\u56e2\u3002"} +{"id": "8001257", "video_name": "b97dd18f-3a04-55fa-9eef-bd142e667d9b", "text": "\u5feb\u4e50\u7684\u732b\u95ed\u7740\u773c\u775b\u611f\u53d7\u7740\u6109\u60a6\uff0c\u80cc\u666f\u662f\u7eff\u8272\u7684\u3002"} +{"id": "1003966", "video_name": "4938d551-6be3-5f09-a797-aadb615b5092", "text": "\u4e00\u53ea\u6234\u7740\u91d1\u7687\u51a0\u7684\u5361\u901a\u6c34\u6bcd\uff0c\u98ce\u683c\u4e3a\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u5361\u901a\u3002"} +{"id": "2005407", "video_name": "0b5d00c4-3875-55ce-9e99-44741ed7bd87", "text": "\u5728\u4e0d\u540c\u573a\u666f\u4e2d\u5c55\u793a\u73bb\u7483\u548c\u955c\u5b50\u7684\u62fc\u8d34\u521b\u4f5c\uff0c\u6563\u53d1\u51fa\u4f18\u96c5\u548c\u521b\u65b0\u7684\u6c14\u606f\u3002"} +{"id": "8001317", "video_name": "76529ab5-e03d-5c8f-9bae-cb64728ddd80", "text": "\u84dd\u5929\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u8349\u5730\u4e0a\u8bfb\u4e66\uff0c\u4e00\u4e2a\u7537\u4eba\u662f\u9ad8\u4e2d\u5b66\u751f\u3002"} +{"id": "8003461", "video_name": "0ae299c7-bacf-5fc3-848b-851254384c27", "text": "\u8036\u7a23\u4e0e\u4eba\u4eec\u4e00\u8d77\u767b\u4e0a\u5c71\u3002"} +{"id": "4003609", "video_name": "06def2e9-a6af-5848-80c8-3e07d219452b", "text": "\u8ba9\u5979\u79fb\u52a8\uff0c\u706b\u4e0e\u70df\u6b63\u5728\u55b7\u51fa\uff0c\u81ea\u884c\u8f66\u5954\u8dd1\u3002"} +{"id": "2003928", "video_name": "f69877f8-d81c-5486-8d1b-2acc285aa1c0", "text": "\u4e00\u4e2a\u5c0f\u53ef\u7231\u7537\u5b69\u7a7f\u8fc7\u4e00\u7247\u7fe0\u7eff\u7684\u6df1\u6797\u3002"} +{"id": "7003742", "video_name": "729d32a7-0a41-5ece-87af-cac8542e181c", "text": "Momo\u4e0b\u5b9a\u51b3\u5fc3\u8981\u5b9e\u73b0\u4ed6\u7684\u613f\u671b\uff0c\u7a7f\u8d8a\u4e1b\u6797\u65f6\u9047\u89c1\u4e86\u987d\u76ae\u7684\u9e66\u9e49\u548c\u54af\u54af\u7b11\u7684"} +{"id": "8001289", "video_name": "958a1a5d-7a33-5909-956c-34231e7d21a3", "text": "\u4f60\u7684\u7236\u4eb2\u662f\u4e00\u4f4d\u5546\u4eba\u3002\u4f60\u4eec\u7ecf\u8425\u7740\u4e00\u5bb6\u670d\u88c5\u751f\u610f\uff0c\u4f60\u4eec\u662f\u56db\u4e2a\u5144\u5f1f\u59d0\u59b9\u3002"} +{"id": "8001221", "video_name": "79a61365-026d-5f59-a8a8-872e5e1017df", "text": "\u68ee\u6797\u56fe\u50cf\u4e2d\u6709\u4e00\u4e9b\u52a8\u7269\u5728\u8fd9\u4e2a\u5730\u65b9\u884c\u8d70\u3002"} +{"id": "4002219", "video_name": "679c7b63-bc6c-5468-bc89-806b37181fb1", "text": "\u6444\u50cf\u673a\u7ed5\u62dc\u5360\u5ead\u5e1d\u56fd\u519b\u4e8b\u6307\u6325\u5b98\u8d1d\u5229\u6492\u7559\u65af\u65cb\u8f6c90\u5ea6\u3002"} +{"id": "0004627", "video_name": "0c3af018-1ca2-5d77-907a-08c197657c14", "text": "\u5728\u65e5\u843d\u65f6\u751f\u6210\u4e00\u5f20\u8461\u8404\u56ed\u7684\u56fe\u7247\u3002\u4e00\u4e32\u9971\u6ee1\u7684\u8461\u8404\u4ece\u85e4\u4e0a\u60ac\u6302\uff0c\u63a5\u4f4f\u6e29\u6696\u7684"} +{"id": "8002722", "video_name": "27c7478b-c662-5747-8955-689615207bfd", "text": "\u5370\u5ea6\u7684\u201c\u6708\u82393\u53f7\u201d\u964d\u843d\u5728\u6708\u7403\u4e0a\uff0c\u89c6\u9891\u7684\u6bd4\u4f8b\u5e94\u4e3a9:16\u3002"} +{"id": "3003929", "video_name": "b29a6eba-c1d6-5091-b9de-e95b59461bb2", "text": "\u4e00\u53ea\u5371\u9669\u868a\u5b50\u76843D\u63d2\u56fe"} +{"id": "0004595", "video_name": "0baadbdf-3e78-5ea7-8dfa-b1a6b5f25602", "text": "\u5728\u533b\u9662\u91cc\u67094\u540d\u62a4\u7406\u4eba\u5458\u5728\u5de5\u4f5c\u3002"} +{"id": "0004319", "video_name": "070929b8-6106-542f-b177-2d641bf5c137", "text": "\u9759\u8c27\u7684\u68ee\u6797\u3002\u96fe\u8499\u8499\u7684\u591c\u665a\u3002\u4e00\u9053\u8eab\u5f71\u6d6e\u73b0\u3002\u95ea\u70c1\u3001\u534a\u900f\u660e\u3002\u8d85\u51e1\u7684\u52a8\u4f5c\uff0c"} +{"id": "8003747", "video_name": "c57dd5f7-7fbe-5231-af91-1b4a1d3f9a92", "text": "\u57fa\u5b89\u5c3c\u65af\u00b7\u5b89\u7279\u6258\u6606\u535a\u5728\u7535\u8111\u4e0a\u73a9PUBG\u3002"} +{"id": "4003113", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960\u5e74\u7684\u827a\u672f\u7535\u5f71\u5c55\u793a\u4e86\u4e00\u4e2a\u8349\u8ff7\u5bab\u548c\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u5973\u4eba\u5728\u5bfb\u627e\u8ff7\u5bab\u7684\u51fa\u53e3\u3002"} +{"id": "1006693", "video_name": "7aa49a5c-bb15-5936-be74-f3ce9d22529b", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u555c\u6ce3\u7740\uff0c\u770b\u7740\u76ae\u514b\u65af\u3001\u8fea\u58eb\u5c3c\u30013D\u3002"} +{"id": "3003366", "video_name": "10f8f34b-35ac-5703-b9b8-ebb6ae100983", "text": "\u5973\u4eba\u5e26\u7740\u5973\u513f\u56de\u5bb6\uff0c\u53cc\u81c2\u7d27\u7d27\u6402\u4f4f\u5979\u4eec\uff0c\u4e00\u5bb6\u4eba\u5750\u4e0b\u6765\u4eab\u7528\u7531\u5148\u77e5\u8fbe\u4e4c\u5fb7\uff08\u613f"} +{"id": "6002566", "video_name": "0fa1417c-7388-5397-8c6b-4c053bc81992", "text": "\u4e00\u4e2a\u5750\u5728\u738b\u5ea7\u4e0a\u7684\u7537\u4eba\uff0c\u5468\u56f4\u662f\u4e00\u95f4\u5145\u6ee1\u7f8e\u4e3d\u8bf1\u60d1\u827a\u672f\u54c1\u7684\u623f\u95f4\u3002"} +{"id": "7002545", "video_name": "30abe2ca-bee9-5a8c-8f0d-eae57316b9d5", "text": "\u9f99\u9aa8\u67b6\u5728\u5730\u72f1\u4e2d\u98de\u884c\uff0c\u751f\u52a8\u3001\u53ef\u6015\u3001\u90aa\u6076\u3001\u9ad8\u8d28\u91cf8k\u3002"} +{"id": "2003475", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "\u7f57\u7f57\u8bfa\u4e9a\u00b7\u7d22\u9686\u4ece\u5730\u4e0a\u7ad9\u8d77\u6765\uff0c\u80f8\u53e3\u6df1\u5904\u6709\u4e00\u9053\u4f24\u53e3\uff0c\u5448\u52a8\u753b\u98ce\u683c\u8f6c\u8eab\u3002"} +{"id": "1004231", "video_name": "4e619950-f593-5edb-8808-5f90d000a4f5", "text": "\u8fd9\u4e5f\u8bb8\u53ef\u4ee5\u89e3\u91ca\u4e3a\u4ec0\u4e48\u5927\u91cf\u54f2\u5b66\u5bb6\u90fd\u662f\u5c40\u5916\u4eba\uff1b\u5728\u4ed6\u4eec\u7684\u5b64\u72ec\u4e2d\uff0c\u4ed6\u4eec\u6709\u65f6\u95f4\u6295\u5165\u5230\u8d85\u8d8a\u793e\u4ea4\u805a\u4f1a\u7684"} +{"id": "0005584", "video_name": "1d812c12-1759-5711-9372-3e6615afe923", "text": "\u5deb\u5e08\u73a9\u7740\u795e\u5947\u7684\u68cb\u76d8\u6e38\u620f\uff0c\u8ba8\u8bba\u5492\u8bed\u548c\u8bc5\u5492\u3002"} +{"id": "6002856", "video_name": "f6a7b998-eb18-5462-ac45-c2960ff63d46", "text": "2024\u5e74\u6700\u8ff7\u4eba\u7684\u60c5\u4eba\u8282\u3002"} +{"id": "8002626", "video_name": "7f5c966a-fa0d-50e9-b125-08aed719bda2", "text": "\u7236\u4eb2\u548c\u513f\u5b50\u5728\u5357\u90e8\u8fb9\u5883\u722c\u8fc7\u94c1\u4e1d\u7f51\u3002"} +{"id": "7004137", "video_name": "23a88778-51cd-5383-80b3-f721153507f1", "text": "\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\uff0c\u4e00\u4e2a\u88ab\u68ee\u6797\u5305\u56f4\u7684\u5c0f\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u6563\u6b65\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n"} +{"id": "7004447", "video_name": "e3043f23-6baa-559f-91e7-c9062d4c645f", "text": "\u6c7d\u8f66\u4ece\u6865\u4e0a\u5760\u843d\uff0c\u4ece\u9a7e\u9a76\u5ba4\u89c6\u89d2\u89c2\u770b\uff0c\u6709\u7535\u5f71\u822c\u7684\u611f\u89c9\u3002"} +{"id": "1006424", "video_name": "758f2eaa-396b-5d5d-90fe-1cdc780a0128", "text": "\u89c6\u9891\u5728YouTube\u4e0a\u53d1\u5e03\uff0c\u95ea\u8000\u7740\u84dd\u8272\u3002"} +{"id": "2004825", "video_name": "e8305cc0-4f3f-56f3-93c4-bade83de8453", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u516c\u56ed\u91cc\uff0c\u5468\u56f4\u6ca1\u6709\u4eba\uff0c\u770b\u7740\u52a8\u6f2b\u5361\u901a\u3002"} +{"id": "8003755", "video_name": "7b5faf84-7ff3-5d4d-a679-2f44d438f986", "text": "\u5c0f\u72d7\u5411\u7537\u5b69\u5954\u8dd1\u3002\n\nSource sentence: I like to read books in my free time. \n\u6211\u559c\u6b22\u5728\u7a7a\u95f2\u65f6\u95f4\u8bfb\u4e66\u3002"} +{"id": "2007447", "video_name": "d5d9023b-e19d-536f-9faf-9db907e124ef", "text": "\u58eb\u5175\u5728\u6218\u573a\u4e0a\u7a7f\u8d8a\u67aa\u6797\u5f39\u96e8\uff0c\u57281950\u5e74\u4ee3\u7684\u80cc\u666f\u4e0b\u4ee5\u7535\u5f71\u822c\u7684\u89c6\u89d2\u5c55\u5f00\u6218\u6597\u3002"} +{"id": "1004880", "video_name": "5a3c4669-9ef0-5fc9-a3dc-ecb866a91379", "text": "\u4e00\u4e2a\u751c\u751c\u5708\u6b63\u5728\u88ab\u653e\u5230\u4e00\u6839\u80e1\u841d\u535c\u4e0a\u9762\u3002"} +{"id": "3004537", "video_name": "9858ed67-64a9-539f-b891-c0286548c780", "text": "\u81ea\u52a8\u7784\u51c6\u662f\u6280\u672f\u95ee\u9898\uff0c\u800c\u975e\u5b9e\u9645\u95ee\u9898\u3002"} +{"id": "2006247", "video_name": "f70d4b3d-76ea-559d-b1cf-61f942fe1e3e", "text": "\u7279\u65af\u62c9\u6c7d\u8f66\u7ec4\u88c5\u7ebf\u914d\u5907\u4e86\u673a\u5668\u548c\u673a\u5668\u4eba\uff0c\u827e\u9686\u00b7\u9a6c\u65af\u514b\u7ad9\u5728\u673a\u5668\u65c1\u8fb9\uff0c\u67093D\u52a8\u753b\u3002"} +{"id": "1005884", "video_name": "6c3ecbd6-6787-5934-a73a-0fcd2c2c5426", "text": "\u4e00\u4f4d\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7684\u5973\u6027\u8eba\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5893\u5730\u91cc\uff0c\u4e0a\u9762\u6709\u5e7d\u7075\u3001\u70db\u5149\u548c\u9ab7\u9ac5\u3002"} +{"id": "4003659", "video_name": "9748faad-01a6-500c-9974-69c3b3c7adbc", "text": "\u4e00\u4e2a\u7a46\u65af\u6797\u6218\u58eb\uff0c\u62bd\u8c61\u827a\u672f\uff0c\u5e7b\u89c9\u3002"} +{"id": "2006150", "video_name": "2670acab-1b69-57e5-92cb-7373f49729d2", "text": "\u4e00\u5ea7\u7eff\u8272\u82b1\u56ed\uff0c\u6709\u7740\u5c0f\u77f3\u5934\u7011\u5e03\uff0c\u96e8\u5929\u91cc\u6c34\u6d41\u6dd9\u6dd9\u3002 8k"} +{"id": "0003088", "video_name": "36c91e63-2ab6-578c-81c8-5e16ea89c239", "text": "\u5728\u56fe\u4e66\u9986\u91cc\u5750\u7740\u4e00\u4f4d\u975e\u5e38\u806a\u660e\u535a\u5b66\u7684\u4eba\u3002\u7cbe\u7f8e\u7684\u6700\u7ec8\u5e7b\u60f3\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "7004661", "video_name": "31a39955-b4c1-59d9-aafc-0241a9b0bcaa", "text": "\u4eba\u7c7b\u7684\u9aa8\u67b6\u5728\u5893\u5730\u91cc\u5e26\u7740\u7b14\u8bb0\u672c\u7535\u8111\u8d70\u8def\u3002"} +{"id": "2005829", "video_name": "3d833095-eae9-5d49-97aa-489ec4972a3f", "text": "\u5b57\u5e55\uff0c\u4e2d\u4e16\u7eaa\u6218\u6597\uff0c\u9ed1\u767d\uff0c\u8d85\u903c\u771f\uff0c\u591c\u665a"} +{"id": "0004786", "video_name": "0f221017-4695-58f5-913d-7c7692790603", "text": "\u672a\u6765\u57ce\u5e02\u73b0\u5b9e\u52a8\u753b\u4e2d\u7684\u5973\u6027"} +{"id": "6003961", "video_name": "2e2453e5-da0c-5272-a345-bb79d5706fda", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u5448\u73b0\u51fa\u718a\u5f62\u72b6\u7684\u5f69\u8272\u5206\u5f62\u8fd0\u52a8\u3002"} +{"id": "2005249", "video_name": "ccf322b7-da90-5c61-8774-5ba2bee57884", "text": "\u6124\u6012\u7684\u5927\u7329\u7329\u91d1\u7259\u821e\u8e48\u57284K\u4e2d\u3002"} +{"id": "1003328", "video_name": "3d4545b6-f9b6-5fee-a7cf-d7527979989f", "text": "\u4e00\u53ea\u8774\u8776\u5728\u68ee\u6797\u4e2d\u98de\u821e\u3002"} +{"id": "4004424", "video_name": "d2b583ae-9693-5347-81ad-608b86e81aa0", "text": "\u7535\u5f71\u822c\u7684\u7f8e\u5973\u957f\u53d1\u98d8\u98d8\uff0c\u7ad9\u5728\u7a97\u524d\u51dd\u671b\u6c79\u6d8c\u7684\u6d77\u666f\uff0c\u6444\u50cf\u673a\u4ee5\u6bcf\u79d22\u5e27\u7684\u901f\u5ea6\u62cd\u6444\uff0c"} +{"id": "1005196", "video_name": "5f961e62-7a30-5158-88ba-2dd3200cb1b9", "text": "\u4e00\u4e9b\u4eba\u5728\u4f1a\u8bae\u5ba4\u8ba8\u8bba\u4e00\u4e2a\u95ee\u9898\u3002"} +{"id": "7003623", "video_name": "3f02f3c9-a367-5891-ac38-ae63f6b19ae4", "text": "\u6c14\u5019\u53d8\u5316\u5bfc\u81f4\u57ce\u5e02\u6c7d\u8f66\u88ab\u6df9\u6ca1\u5728\u6c34\u4e0b\u3002"} +{"id": "8001688", "video_name": "5f2c42c6-8f33-58c8-a2dd-2446074f29e3", "text": "\u53f2\u524d\u4eba\u7c7b\u72e9\u730e\u731b\u72b8\u8c61\u7684\u6d1e\u7a74\u58c1\u753b\u88ab\u52a8\u753b\u5316\u3002"} +{"id": "0006515", "video_name": "2ddeb649-4e0b-5f07-959a-f8561220a436", "text": "\u8ba9\u4ed6\u8d70\u8fc7\u96fe\u8499\u8499\u7684\u6751\u5e84\u3002"} +{"id": "6004459", "video_name": "f84d5f2d-6d0c-5ed2-8b1d-a880876fb705", "text": "\u67e0\u6aac\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u4ece\u5730\u91cc\u5192\u51fa\u6765\u3002"} +{"id": "3006730", "video_name": "86b34c38-bb91-5442-bc60-5aab24ca9f34", "text": "\u5728\u4e2d\u4e16\u7eaa\u7684\u4e2d\u56fd\uff0c\u4e00\u4f4d\u6bcd\u4eb2\u751f\u4e0b\u4e86\u4e00\u4e2a\u5973\u5b69\uff0c\u4f46\u8fd9\u4e2a\u5a74\u513f\u88ab\u6df9\u6b7b\u4e86\u3002"} +{"id": "0003736", "video_name": "428e7758-3950-5fbd-b040-91cc0327f488", "text": "\u5916\u661f\u4eba\u519b\u961f\u3002\u5de8\u5927\u7684\u5766\u514b\u548c\u6218\u6597\u673a\u6392\u6210\u4e00\u5217\u3002"} +{"id": "1003618", "video_name": "42b42bc1-8036-5bdc-847b-280a629ff669", "text": "\u6df1\u6d77\u4e2d\u7684\u9713\u8679\u6c34\u6bcd\u7fa4"} +{"id": "4004377", "video_name": "534b8b46-3322-5620-ac15-291ec425d2be", "text": "\u5728\u5915\u9633\u897f\u4e0b\uff0c\u6d77\u6d6a\u7ffb\u6eda\u7684\u6d77\u9762\u540e\u9762\uff0c\u63cf\u7ed8\u4e00\u5ea7\u6d77\u6ee8\u5c0f\u9547\uff0c\u5b83\u7684\u53e4\u96c5\u8857\u9053\u4e0a\u6392\u6ee1\u4e86\u8272"} +{"id": "2007032", "video_name": "a1f42a1a-f52b-510d-961d-4a168ee8bafd", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u53ef\u7231\u5c0f\u5b9d\u5b9d\u5728\u4e91\u6735\u4e0a\u7761\u89c9\uff0c\u6708\u4eae\u5728\u65c1\u8fb9\u6ce8\u89c6\u7740\u5979\u3002"} +{"id": "0004216", "video_name": "052d05f0-e5d0-5ba4-8dd6-52613f71ec44", "text": "\u4e00\u534a\u8702\u9e1f\uff0c\u4e00\u534a\u5154\u5b50\uff0c\u5728\u4ee5\u57c3\u83f2\u5c14\u94c1\u5854\u4e3a\u80cc\u666f\u7684\u6cb3\u8fb9\u996e\u6c34\u3002"} +{"id": "6003753", "video_name": "644d7e31-d5fc-55a8-a9b2-fd8db03743b3", "text": "\u5728\u6cb3\u8fb9\u7684\u4e00\u68f5\u67f3\u6811\u4e0b\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u6b63\u5728\u9605\u8bfb\u4e00\u672c\u4e66\u3002"} +{"id": "1006320", "video_name": "73a8a6aa-64ca-50b8-b278-e5c51fa14f39", "text": "\u5916\u661f\u4eba\u5728\u4e1b\u6797\u7684\u80cc\u666f\u4e0b\uff0c\u4ece\u4ed6\u7684\u98de\u8239\u4e0a\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "0004951", "video_name": "12160338-fa53-507f-9817-07576b104621", "text": "Source sentence: \u98ce\u795e\u57c3\u4fc4\u6d1b\u65af\u5934\u671d\u4e0b\u7740\u9646"} +{"id": "3004665", "video_name": "78819d3f-3d6a-5290-90a9-934c75568f15", "text": "\u57ce\u5e02\u8857\u9053\u4e0a\u70df\u706b\u7480\u74a8\u7efd\u653e\uff0c\u54e5\u8c2d"} +{"id": "0003672", "video_name": "417c4553-c349-5f1f-be5c-4faa30917676", "text": "\u4ed3\u5e93\uff0c\u8fd9\u91cc\u50a8\u5b58\u7740\u5404\u884c\u5404\u4e1a\u7684\u77e5\u8bc6\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u5185\u5bb9\u8f7b\u677e\u3002"} +{"id": "7003440", "video_name": "99106a2a-f9a5-50c1-bbad-53bff32166b4", "text": "\u4e1b\u6797\u8d4b\u4e88\u8482\u7c73\u3001\u8389\u8389\u548c\u6ce2\u8389\u7279\u6b8a\u7684\u793c\u7269\uff0c\u5f3a\u8c03\u4e86\u9b54\u529b\u548c\u611f\u6fc0\u4e4b\u60c5\u3002"} +{"id": "7002336", "video_name": "d1c8dad1-fbea-5953-b918-b9878d33b4f1", "text": "\u4e00\u6761\u6587\u672c\u6d88\u606f\u8bf4\u8428\u9ea6\u5c14\u5728\u7a0d\u8fdc\u7684\u5730\u65b9\u3002"} +{"id": "2003463", "video_name": "a9bc44d9-5f3c-5e79-9933-f7b580fd18e6", "text": "\u4e00\u90e8\u7535\u5f71\u4e2d\u7684\u968f\u673a\u573a\u666f\uff0c\u5728HR Giger\u7684\u827a\u672f\u98ce\u683c\u4e0b\uff0c\u5c55\u73b0Pepe\u9752\u86d9\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u4e00\u540c\u884c\u8fdb\u7684\u573a\u666f\u3002"} +{"id": "1006800", "video_name": "7c807cd9-6328-5e7a-8c4b-2773f2179e19", "text": "\u5973\u5b69\u91d1\u53d1\u52a8\u6f2b\uff0c4K\uff0c\u9ed1\u767d\u8863\u670d\uff0c\u7ea2\u8272\u978b\u5b50\u3002"} +{"id": "3005896", "video_name": "ae79fa4a-49ef-5c9b-b1ee-e040e653bf73", "text": "\u4e00\u4e2a\u4eba\u4ece\u8fdc\u5904\u5403\u6c49\u5821\u7684\u89c6\u9891"} +{"id": "4003772", "video_name": "ab0c098c-c00d-5e04-b7bd-566aaeda7166", "text": "\u5370\u5ea6\u6751\u5e84\u7684\u8857\u9053\u4e0a\u6709\u5b69\u5b50\u4eec\u5728\u73a9\u800d\u3002"} +{"id": "3006917", "video_name": "277d6993-4520-57cc-bb67-1b152df5cd54", "text": "\u5168\u8eab\u953b\u70bc\u8ba1\u5212\u6a21\u677f\u9002\u7528\u4e8e\u5973\u6027"} +{"id": "5001788", "video_name": "abaf08d9-4d74-5919-b762-c6d053f14802", "text": "\u7528\u663e\u5fae\u955c\u521b\u9020\u51fa\u8584\u8377\u817a\u6bdb\u7684\u771f\u5b9e\u56fe\u50cf"} +{"id": "7002582", "video_name": "530f4ae4-d2fc-5932-8fc0-4744911bda7b", "text": "\u6d77\u6d6a\u62cd\u6253\uff0c\u4e91\u7ffb\u6eda\uff0c\u6708\u5149\u7167\u8000\uff0c\u8239\u5728\u6c34\u4e0a\u79fb\u52a8\u3002"} +{"id": "2003376", "video_name": "94490d4a-37a5-532d-9765-38dc36a99a36", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u4e4b\u95f4\u5954\u8dd1\u3002"} +{"id": "0003668", "video_name": "416a5440-a2ba-5f91-8da7-7a2e32255794", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4ed6\u7684\u7535\u8111\u4e0a\u6253\u5f00YouTube\u3002"} +{"id": "5001376", "video_name": "7d65c356-8849-57de-b1b9-6c4dcbfbfdfc", "text": "\u77ed\u5377\u6a58\u8272\u5934\u53d1\u7684\u5973\u4eba\u5411\u524d\u8d70\u7740\u5fae\u7b11\uff0c\u8eab\u5904\u704c\u6728\u4e1b\u4e2d\uff0c\u79cb\u53f6\u7eb7\u7eb7\u800c\u843d\uff0c\u753b\u9762\u5982\u7535\u5f71"} +{"id": "7004802", "video_name": "0a67a96b-7473-5e2a-8120-d410f37abc07", "text": "\u5927\u7269\u4f53\u843d\u5165\u6c34\u4e2d\uff0c\u6e85\u8d77\u6c34\u82b1\uff0c\u6c34\u4e0b\u6444\u5f71\uff0c\u9ed1\u6697\u7684\u6c34\u4e2d\u3002"} +{"id": "3005753", "video_name": "3c5d416d-cc57-5d8c-963c-bbb6a022cf8d", "text": "\u4e4c\u5179\u522b\u514b\u65af\u5766\uff0c\u54c8\u5229\u6ce2\u7279\u4e16\u754c\u98ce\u683c\uff0c\u65e5\u591c\u8f6c\u6362\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u65f6\u95f4\u6d41\u901d\u89c6\u9891\u3002"} +{"id": "8002434", "video_name": "476d62bf-12e9-5dfc-a0c7-dd51422c7531", "text": "\u68ee\u6797\u4e2d\u4e00\u79cd\u9b54\u529b\u7684\u9c9c\u8273\u989c\u8272\uff0c\u5f53\u4e00\u4e2a\u5973\u5b69\u770b\u7740\u5b83\u3002"} +{"id": "3004656", "video_name": "9890437c-caf1-5fc6-8457-689eae1a57e0", "text": "\u84dd\u8272\u7684TARDIS\u65f6\u95f4\u673a\u5668\uff0c\u901a\u8fc7\u73b0\u5b9e\u626d\u66f2\u8fdb\u884c\u65f6\u95f4\u65c5\u884c\u3002"} +{"id": "1005058", "video_name": "5d778a8b-f4ab-5a6b-9d14-282108897203", "text": "\u56e2\u961f\u6b63\u5728\u529e\u516c\u5ba4\u8ba8\u8bba\u5de5\u4f5c\u3002\u529e\u516c\u5ba4\u91cc\u6709\u7535\u8111\u548c\u767d\u677f\uff0c\u6c14\u6c1b\u70ed\u70c8\u30028K\uff0c\u77e2\u91cf"} +{"id": "1003979", "video_name": "4975ec9d-1788-57e9-8c89-be21d63559c2", "text": "\u6218\u4e89\u3002\u4f60\u662f\u4e2a\u597d\u513f\u5b50\u3002"} +{"id": "8001131", "video_name": "cb995126-c967-56ed-a1d2-58d6e3a24fed", "text": "\u8d85\u4eba\u964d\u843d\u5728\u5e1d\u56fd\u8c37\u3002"} +{"id": "0006986", "video_name": "36455af3-f963-556a-b9b7-e3d60dd558da", "text": "\u6c7d\u8f66\u548c\u6469\u6258\u8f66\u5728\u610f\u5927\u5229\u4e61\u95f4\u5c0f\u8def\u4e0a\u8ffd\u9010\u3002"} +{"id": "7004817", "video_name": "e9353ae3-3075-5436-b5c4-064c11038e78", "text": "\u6162\u52a8\u4f5c\uff0c\u8ba9\u753b\u9762\u6d3b\u8d77\u6765\uff0c\u76f8\u673a\u5bf9\u7740\u4eba\u7269\u8fdb\u884c\u7f29\u653e\u3002"} +{"id": "4002957", "video_name": "63aa209e-38ff-5e4e-bed4-6cf38dfc711d", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u5728\u64b0\u5199\u4e00\u4efd\u89c4\u5212\u6587\u4ef6\u3002"} +{"id": "0006287", "video_name": "2a078ef1-1e0d-52ac-9db3-4afd09a7003d", "text": "\u521b\u9020\u4e00\u4e2a\u88ab\u73ca\u745a\u8986\u76d6\u7684\u6c89\u8239\u7684\u52a8\u753b\u573a\u666f\uff0c\u5468\u56f4\u6709\u597d\u5947\u7684\u9c7c\u3002"} +{"id": "4003835", "video_name": "8022141d-1966-5845-aaf1-31b7dd1cf483", "text": "\u4e00\u53ea\u7a7f\u7740\u6c49\u670d\u8d70\u79c0\u7684\u732b\uff0c\u6700\u9ad8\u54c1\u8d28\uff0c\u4e2d\u5f0f\u98ce\u683c\u3002"} +{"id": "2005816", "video_name": "591cb15a-25be-51a7-8cef-e8c8798b6054", "text": "\u673a\u5668\u4eba\u5973\u5b69\u7684\u8096\u50cf\uff0c\u5de8\u5927\u7684\u5634\u5507\uff0c\u900f\u660e\u7684\u8116\u5b50\uff0c\u74f7\u8d28\u7684\u8138\u548c\u5934\u90e8\uff0c\u673a\u5668\u96f6\u4ef6\uff0c"} +{"id": "0005958", "video_name": "23e9816d-6f87-539d-8c59-b67000a5032f", "text": "\u4ea4\u6613\u5458\u7537\u5b50\u610f\u8bc6\u5230\u4ed6\u9057\u5931\u4e86\u94b1\u5305\uff0c\u56de\u5230\u5bb6\u4e2d\u68c0\u67e5\u4e86\u4e00\u756a\u3002"} +{"id": "6003904", "video_name": "0aeaae6b-c3e2-5fe0-af3a-63165aae5d16", "text": "\u521b\u65b0\u773c\u955c\uff0c\u5e2e\u52a9\u76f2\u4eba\u901a\u8fc7\u8bc6\u522b\u7269\u4f53\u6765\u611f\u77e5\u5468\u56f4\u73af\u5883\u3002"} +{"id": "3006151", "video_name": "2dfe25f2-5e9d-5a73-a7d8-6a8bfb838fd3", "text": "\u4e00\u5bf9\u5e74\u8fc8\u7684\u592b\u5987\u8eab\u8fb9\u56f4\u7740\u5b50\u5973\u548c\u5b59\u5b50\u5b59\u5973\uff0c\u975e\u5e38\u5e78\u798f\u3002\u5730\u4e0a\u6563\u843d\u7740\u7834\u788e\u7684\u5bb6"} +{"id": "5001618", "video_name": "35374ba8-5433-58f3-9d81-def89ee584ff", "text": "\u9ed1\u8272\u7ebf\u6761\u5236\u6210\u7684\u73a9\u5076\u5728\u767d\u8272\u80cc\u666f\u4e0b\u5fae\u7b11\u7740\u8d70\u7740\uff0c\u5934\u53d1\u662f\u975e\u6d32\u53d1\u5f0f\uff0c\u6ca1\u6709\u5176\u4ed6\u989c\u8272\u3002"} +{"id": "7003763", "video_name": "c23ec25d-19e5-5e9b-9d8f-79076734a08c", "text": "\u65e9\u671f\u897f\u5468\u7684\u6c11\u95f4\u97f3\u4e50"} +{"id": "4002272", "video_name": "a23463fe-a05f-5d32-8955-2e91d2743690", "text": "\u751f\u6210\u4e00\u4e2a\u573a\u666f\uff0c\u4e00\u53ea\u9ed1\u8272\u5df4\u54e5\u72ac\u548c\u4e00\u53ea\u767d\u8272\u66b9\u7f57\u732b\u5728\u73a9\u800d\u4e2d\u4e92\u52a8\uff0c\u76f8\u4e92\u8ffd\u9010\u3002"} +{"id": "1004689", "video_name": "571df43b-5b48-5ffa-ab59-d6ab6c8dd0e7", "text": "\u4e00\u8f86\u672a\u6765\u4e3b\u4e49\u8759\u8760\u4fa0\u60ac\u6d6e\u8247\uff0c\u88c5\u5907\u9ad8\u79d1\u6280\u6b66\u5668\uff0c\u5728\u54e5\u8c2d\u57ce\u4e2d\u98de\u884c\u3002"} +{"id": "0005533", "video_name": "1c665f2a-9cd9-53e4-98e0-cc5d1a9c2edf", "text": "\u4e00\u5e45\u8239\u5728\u6c34\u4e2d\u5728\u6076\u52a3\u5929\u6c14\u4e2d\u822a\u884c\u7684\u7ed8\u753b"} +{"id": "2003140", "video_name": "23c56eb5-d18d-58bb-acd0-9f9f3c59257f", "text": "\u76f8\u673a\u8f6c\u5411\u4e00\u6761\u6c34\u6d41\uff0c\u6c34\u6e05\u6f88\uff0c\u6cbf\u5cb8\u751f\u957f\u7740\u5404\u79cd\u91ce\u82b1\u548c\u8568\u7c7b\u690d\u7269\u3002"} +{"id": "1006036", "video_name": "6edd6c2e-98ba-5648-8739-eeeb55fe1508", "text": "1987\u5e74\uff0c\u4e00\u53ea\u9e2d\u5b50\u5728\u8349\u5730\u4e0a\u8d70\u8def\u7684\u5361\u901a\u573a\u666f\u3002"} +{"id": "7004953", "video_name": "86aeeb26-49f3-598e-ae2f-2f9ae30d0702", "text": "\u4e00\u4e2a\u6709\u5438\u5f15\u529b\u7684\u5973\u4eba\u7684\u5f62\u8c61\uff0c\u5979\u7684\u6574\u4e2a\u8eab\u4f53\u90fd\u662f\u7531\u7cbe\u7f8e\u7684\u74f7\u5668\u5236\u6210\u7684\u3002\u767d\u8272\u80cc\u666f\uff0c\u9ad8\u6e05\u3002"} +{"id": "0003557", "video_name": "3f8f1051-89cb-545d-88da-ad27b11a775f", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u767d\u8272\u5c0f\u72d7\u6b63\u5728\u548c\u4e00\u53ea\u84dd\u8272\u7684\u8774\u8776\u73a9\u800d\u3002"} +{"id": "1004731", "video_name": "57bcc3ba-61a3-53d2-9960-7badd6d54d2b", "text": "\u4eba\u4eec\u559d\u4e86\u6cc9\u6c34\u540e\u6b7b\u4ea1\u3002\u5168\u666f\u89c6\u56fe\u3002"} +{"id": "8002301", "video_name": "69d4bfb6-4e23-5cb2-a9a4-ad798a70f562", "text": "\u6708\u4eae\u662f\u4e00\u4e2a\u65cb\u8f6c\u7684\u8fea\u65af\u79d1\u7403\uff0c\u4e0b\u9762\u6709\u72c2\u70ed\u8005\u8df3\u821e\u3002"} +{"id": "2003035", "video_name": "8d3d0458-405e-5f16-995d-8ca367403437", "text": "\u52a8\u753b3\u79d2\u9ad8\u7684\u6811\u4e1b\u4e1b\u6797"} +{"id": "1003123", "video_name": "3981c127-4186-5243-99a2-5468b1f63d5f", "text": "\u68ee\u6797\u91cc\u7684\u623f\u5b50\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u80cc\u666f\u6709\u96f7\u66b4\u3002"} +{"id": "4002700", "video_name": "60c21b58-ced0-5cbf-a237-9576754b88c0", "text": "\u4e00\u4e2a\u624b\u6307\u70b9\u5728\u6807\u7b7e\u4e0a\u3002"} +{"id": "0005852", "video_name": "2259df00-6125-51ba-9edb-38541e5ef2fe", "text": "\u4e00\u4e2a\u9ed1\u5f71\u4fef\u89c6\u7740\u6c99\u6f20\u3002\u4e00\u4e2a\u624b\u6307\u6309\u4e0b\u4e86\u6309\u94ae\u3002\u77ac\u95f4\uff0c\u6c99\u6f20\u53d8\u6210\u4e86\u51b0\u5ddd\u3002"} +{"id": "2006167", "video_name": "0bb8a80c-40c2-510a-a283-dca16fd5ded1", "text": "\u534e\u6c99\u6587\u5316\u79d1\u5b66\u5bab\u6bbf\u71c3\u70e7\uff0c\u80cc\u666f\u662f\u7ea2\u8272\u4e91\u5f69\uff0c\u7535\u5f71\u955c\u5934\u62cd\u6444\uff0c4k\u5206\u8fa8\u7387\u3002"} +{"id": "2006851", "video_name": "7f83ad4d-3199-5e59-95d5-1777c376033a", "text": "\u6d3b\u751f\u751f\u7684\u997c\u5e72\uff0c\u5e26\u6709\u753b\u4e0a\u7684\u624b\u548c\u811a\uff0c\u753b\u7740\u773c\u775b\u548c\u5634\u5df4\uff0c\u50cf\u5851\u6599\u6ce5\u4e00\u6837\u7684\u98ce\u683c\u3002"} +{"id": "1006940", "video_name": "7efff7ae-0cab-5226-bd9f-0dcb300ebf06", "text": "\u624b\u5de5\u98de\u884c\u98de\u8d8a\u9ec4\u91d1\u672a\u6765\u57ce\u5e02\u3002"} +{"id": "5001633", "video_name": "1c29e6af-d485-5e08-8515-c614729ef87a", "text": "\u4eba\u4eec\u5728\u9713\u8679\u706f\u57ce\u5e02\u4e2d\u8df3\u821e\u65cb\u8f6c\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u8f6e\u660e\u4eae\u7684\u767d\u8272\u6708\u4eae\u3002\u8bf7\u4ee580\u5e74\u4ee3\u5408\u6210\u6ce2\u98ce\u683c"} +{"id": "0003806", "video_name": "43d83a35-a4cb-5ce1-ba3a-99fe25ac5297", "text": "\u5c55\u793a\u4e00\u4e2a\u7531\u4e0d\u540c\u5730\u533a\u5ef6\u4f38\u7684\u7ebf\u7ec4\u6210\u7684\u5730\u7403\u3002\u6bcf\u4e2a\u7ebf\u8fde\u63a5\u7740\u4eba\u7684\u8f6e\u5ed3\uff0c\u4ee3\u8868\u4ed6\u4eec\u7684\u51fa\u751f\u5730\u3002\u5c55\u793a\u8fd9\u4e9b\u7ebf\u6c47"} +{"id": "1006833", "video_name": "7cf5c7cc-d57c-507f-94a2-7cd7ca615f80", "text": "\u4e00\u7247\u5e7f\u9614\u7684\u6c99\u6f20\uff0c\u5728\u65e5\u843d\u65f6\u5206\uff0c\u9ad8\u8038\u7684\u6c99\u4e18\u6295\u4e0b\u957f\u957f\u7684\u9634\u5f71\u3002\u4e00\u4e2a\u62ab\u7740\u9c9c\u8273\u7ef8\u7f0e\u7684\u4eba"} +{"id": "1003901", "video_name": "4800ad9e-0adc-5299-a49e-c6be88db374b", "text": "\u9769\u547d\u98ce\u683c\u7684\u6269\u97f3\u5668\u6807\u5fd7"} +{"id": "6004615", "video_name": "c8c2a78e-79cf-5f71-9cf3-6bde754485e5", "text": "\u4e00\u5ea7\u71c3\u70e7\u7684\u5927\u578b\u4e2d\u4e16\u7eaa\u6b27\u6d32\u57ce\u5821\u3002"} +{"id": "3004880", "video_name": "49e74be7-9410-516c-81b3-9b4a4dc704a1", "text": "\u4e00\u5bf9\u7537\u5973\u60c5\u4fa3\u8eb2\u5728\u5efa\u7b51\u7269\u95e8\u5eca\u4e0b\u907f\u96e8\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "5001981", "video_name": "25dbf0ab-c685-50dd-bfcf-6c7e9be99f38", "text": "\u5c71\u9876\u4e0a\u96fe\u6c14\u5f25\u6f2b\uff0c\u66b4\u96e8\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u6b66\u58eb\u7684\u526a\u5f71\uff0c\u95ea\u7535\u6495\u88c2\u9ed1\u6697\u3002"} +{"id": "1004523", "video_name": "54081a6d-5e36-50fb-bf11-0427bcc24f36", "text": "\u80a1\u5e02\u57f9\u8bad\u7684\u4eba"} +{"id": "4003527", "video_name": "20debc55-9d31-576c-972b-099a3e102278", "text": "\u6f02\u4eae\u65f6\u5c1a\uff0c\u8ba1\u7b97\u673a\u79d1\u5b66\u7537\u5b69\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003189", "video_name": "38fcd2fe-a28b-566e-a870-7bd967e308bc", "text": "\u5de8\u578b\u5a03\u5a03\u5c9b\u7684\u8be1\u5f02\u9ed1\u767d\u5f71\u50cf\uff0c\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u795e\u79d8\u3002"} +{"id": "8002475", "video_name": "acafb4be-9559-5f46-ac54-f3285b5c0eda", "text": "\u4fdd\u65f6\u6377\u6b63\u5728\u6c99\u6f20\u4e2d\u9a7e\u9a76\uff0c\u5728\u843d\u65e5\u4f59\u6656\u4e2d\uff0c\u4e00\u573a\u6d1e\u7a74\u98ce\u66b4\u5373\u5c06\u88ad\u51fb\u4ed6\u3002"} +{"id": "8001719", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "\u4e00\u53ea\u8d85\u53ef\u7231\u7684\u84ec\u677e\u864e\u6591\u5c0f\u732b\u5750\u5728\u94a2\u7434\u4e0a\u7206\u70b8\u4e86\u3002"} +{"id": "8001629", "video_name": "d3e1f7dc-8448-5feb-998c-c660cd12c14a", "text": "\u62c9\u6bd4\u9762\u5bf9\u969c\u788d\u65f6\u7684\u9762\u90e8\u8868\u60c5\u3002\n\u57284k 16:9\u4e2d\u3002"} +{"id": "3004898", "video_name": "00cd8465-e721-583c-b507-1aa9ecf8772b", "text": "\u4e00\u53ea\u72d7\u8ffd\u7740\u4e00\u8f86\u7ea2\u8272\u6c7d\u8f66\u8dd1\u3002"} +{"id": "3004640", "video_name": "8a7d875f-9a8c-504a-8d85-bc881713ee5d", "text": "\u6709\u4e00\u5929\uff0c\u9b54\u9b3c\u62ff\u7740\u4e00\u9762\u955c\u5b50\u6765\u5230\u5929\u7a7a\uff0c\u60f3\u8981\u770b\u4e0a\u5e1d\u548c\u5929\u4f7f\u3002\u4f46\u662f\u5f53\u9b54\u9b3c\u63a5\u8fd1\u5929\u5802\u4e4b"} +{"id": "3005879", "video_name": "06532f13-6ecb-58fc-afbc-e5b2a547db0c", "text": "\u5728\u52a8\u753b2D\u4e2d\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u5728\u665a\u4e0a\u5b66\u4e60\u5979\u7684\u623f\u95f4\u3002\u732b\u5728\u65c1\u8fb9\uff0c\u684c\u5b50\u4e0a\u6709\u5496\u5561\u3002"} +{"id": "3006389", "video_name": "b174cd4c-94f4-56e3-a0e8-ac92b668e5f1", "text": "\u5728\u738b\u56fd\u5bab\u6bbf\u91cc\u5236\u4f5c\u4e00\u7ec4\u8df3\u821e\u7684\u732b\u7684\u89c6\u9891\u3002"} +{"id": "1003911", "video_name": "4835aed3-ccea-57ec-acc8-9ec407f2ed79", "text": "\u81ea\u7531\u6597\u58eb\u5c3c\u5854\u5409\u00b7\u82cf\u5e03\u62c9\u59c6\u5c3c\u4e9a\u00b7\u535a\u65af"} +{"id": "3003031", "video_name": "0e6acbe9-8a64-50cd-8d8d-126b29ef8012", "text": "\u5728\u4e00\u7247\u5bbd\u9614\u7684\u8349\u5730\u4e0a\uff0c\u767d\u8272\u7684\u7f8a\u60a0\u95f2\u5730\u6f2b\u6b65\u7740\uff0c\u7267\u7f8a\u72ac\u5728\u7f8a\u7fa4\u4e2d\u7a7f\u68ad\u3002"} +{"id": "5001253", "video_name": "3f6f22fc-bced-5642-a0e7-4297a18be06b", "text": "\u4f18\u9177\u77ed\u89c6\u9891\u7b80\u4ecb\u7167\u7247\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "6003156", "video_name": "7e3757fc-b7ba-55ff-8a73-0ccbd2931c8d", "text": "\u4e00\u53ea\u5403\u8089\u7684\u6050\u9f99"} +{"id": "3004888", "video_name": "3b4e6ea6-ea93-5739-b8ff-d4a9c8ebae8d", "text": "\u6f14\u5458\u7ad9\u5728\u6d53\u70df\u4e2d\uff0c\u7279\u5199\u955c\u5934\uff0c\u9006\u5149\u62cd\u6444\uff0c\u9713\u8679\u706f\u8272\u5f69\uff0c\u9634\u90c1\u7167\u660e\uff0c\u6df1\u8272\u9634"} +{"id": "1004251", "video_name": "4eadc209-e6f0-5250-a9b7-458cfc24510e", "text": "\u8282\u65e5\u7684\u57ce\u9547\u5e7f\u573a\u70b9\u7f00\u7740\u4e94\u5f69\u7f24\u7eb7\u7684\u5723\u8bde\u706f\u548c\u88c5\u9970\uff0c\u6b22\u58f0\u7b11\u8bed\u548c\u8fdc\u5904\u7684\u9882\u6b4c\u5f62\u6210\u4e86"} +{"id": "2003431", "video_name": "6daba108-e162-57cf-a023-3557bd4f9346", "text": "\u62cd\u6444\u4e00\u4e2a\u62e5\u6324\u7e41\u534e\u7684\u963f\u62c9\u4f2f\u4e2d\u4e16\u7eaa\u5e02\u573a\u7684\u7279\u5199\u3002"} +{"id": "6002771", "video_name": "7408957a-b652-589e-90b3-ed3d87fde0d1", "text": "\u8718\u86db\u4fa0\u4e0e\u94a2\u94c1\u4fa0\u6218\u6597\u4e8610\u79d2\u949f\u3002"} +{"id": "4003065", "video_name": "8a92bd2e-bcaf-58a8-91e9-f6505330b3d3", "text": "\u4e00\u7fa4\u6559\u5802\u4f1a\u4f17\u56e0\u5723\u7075\u800c\u8df3\u821e"} +{"id": "6002798", "video_name": "3a2a55b7-f758-54af-a890-886b3ffa1d94", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u672a\u6765\u5b9e\u9a8c\u5ba4\u4e2d\u804a\u5929\u3002"} +{"id": "1005227", "video_name": "603a594b-dc36-5e65-b4a1-af843bd534a0", "text": "\u4fdd\u62a4\u6211\u4eec\u7684\u6c34\u8d44\u6e90\u7684\u571f\u58e4\u7ba1\u7406"} +{"id": "8002942", "video_name": "129bde22-4c64-5ba4-983a-ade5f7ace98b", "text": "\u5236\u4f5c\u4e00\u6bb5\u6e05\u6670\u89c6\u9891\uff0c\u5185\u5bb9\u4e3a\u4e00\u540d\u7537\u5b50\u5750\u5728\u529e\u516c\u5ba4\u91c7\u8bbf\u53e6\u4e00\u540d\u684c\u4e0a\u6709\u53f0\u5f0f\u7535\u8111\u7684\u7537\u5b50\uff0c\u9ad8\u6e05\u753b\u8d28"} +{"id": "0004654", "video_name": "0cbe226d-7bb5-5e30-b65f-fc3138f276e7", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u7684\u60c5\u7eea\u4f4e\u8ff7\u7684\u4fa7\u9762\u7167\u7247\uff0c\u4f4e\u89d2\u5ea6\u62cd\u6444\uff0c\u7070\u5ea6\u5904\u7406\u3002"} +{"id": "2003235", "video_name": "60aa9857-5455-5f6a-af26-5a084b188843", "text": "\u5b87\u822a\u5458\u7a7f\u8fc7\u9633\u5149\u666e\u7167\u7684\u5916\u661f\u6c99\u6f20\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "6003387", "video_name": "2e1c7bd7-2831-5121-b625-c223695718eb", "text": "\u4e3b\u795e\u5361\u5c14\u57fa\u4ee5\u4fb5\u7565\u548c\u5a01\u6b66\u7684\u5f62\u6001\u51fa\u73b0\u3002"} +{"id": "0005095", "video_name": "14a62521-4e24-5265-a6c8-884005559a09", "text": "\u4f60\u662f\u5426\u66fe\u7ecf\u60f3\u8fc7\uff0c\u5982\u679c\u673a\u5668\u4eba\u53d6\u4ee3\u4e86\u6bcf\u4e2a\u884c\u4e1a\u4e2d\u7684\u4eba\u7c7b\u5de5\u4f5c\u8005\uff0c\u4e16\u754c\u5c06\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\uff1f"} +{"id": "4004813", "video_name": "bc20ce93-b042-5729-9af7-cd62484f61b7", "text": "\u9ed1\u767d\u6444\u5f711850\u5e74\u7684\u4e00\u5f20\u903c\u771f\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u5413\u4eba\u7684\u8001\u592a\u592a\u62b1\u7740\u4e00\u4e2a\u7c7b\u4f3c\u602a\u7269\u7684\u53ef\u6015\u7578"} +{"id": "2007730", "video_name": "e8cfdd52-2f90-5241-bf76-f84750f39668", "text": "\u4e00\u628a\u767d\u8272\u7684\u9676\u74f7\u5315\u9996\u96d5\u5851\u88ab\u6454\u788e\u5728\u5730\u4e0a\uff0c\u788e\u7247\u548c\u6b8b\u7247\u6563\u843d\u4e00\u5730\u3002\u5315\u9996\u7684\u63e1"} +{"id": "3003094", "video_name": "a126975a-1268-55a8-b190-021f7972335f", "text": "\u653e\u5927\u5fae\u7b11\u548c\u5934\u53d1\u79fb\u52a8"} +{"id": "0005301", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "\u7537\u5b69\u7ad9\u5728\u6751\u5e84\u8857\u9053\u4e0a\uff0c\u662f\u4e00\u4e2a3D\u89d2\u8272\u7537\u5b69\u3002"} +{"id": "8003326", "video_name": "5684e1c9-ca3a-5284-b73f-036d462d6314", "text": "\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u98ce\u683c\u7684\u8d85\u5e02\u6454\u8de4\u6bd4\u8d5b"} +{"id": "8003405", "video_name": "8ef23335-9303-52d1-a9fb-3349babaa08c", "text": "\u7f57\u9a6c\u7684\u6597\u517d\u573a\u4e0a\u4e0b\u96e8\u548c\u66b4\u98ce\u96e8\u3002\n\nSource sentence: I am learning Chinese because I want to communicate with my Chinese friends. \n\n\u6211\u5b66\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3"} +{"id": "7002975", "video_name": "b24100cf-712c-5c96-b666-d2cfe4504992", "text": "\u6d4f\u89c8\u4f60\u7684 Instagram \u52a8\u6001\uff0c\u7136\u540e\u53d1\u73b0\u8fd9\u7bc7\u5e16\u5b50\u3002"} +{"id": "2003302", "video_name": "b71b1bf4-f613-5f88-bc6c-e6e7e03530be", "text": "\u95ea\u7535\u4eba\u5728\u5c71\u4e0a\u75be\u9a70\u3002"} +{"id": "0006226", "video_name": "28b9e5d1-1d3f-5990-b38d-c3d0a5430c78", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e00\u4e2a\u5de8\u5927\u7684\u5a01\u4e25\u7684\u9cb8\u9c7c\u5728\u6df1\u6d77\u4e2d\u6e38\u52a8\uff0c\u4ece\u6c34\u9762\u4e0a\u53d1\u51fa\u5149\u8292\uff0c\u7ed9\u4eba\u4e00\u79cd\u7a7a"} +{"id": "4002104", "video_name": "88add0e3-6405-5411-9391-2993a35145b4", "text": "\u5728\u516c\u56ed\u91cc\uff0c\u4e00\u4e2a\u5b69\u5b50\u5728\u7bee\u7403\u573a\u4e0a\u73a9\u4ed6\u7684\u7bee\u7403\uff0c\u4ed6\u6ca1\u6709\u63a5\u4f4f\u7403\u3002"} +{"id": "1006113", "video_name": "70209374-1dc1-520a-bbd4-3e40b8ec5582", "text": "\u4e16\u754c\u4e0a\u7684\u6218\u6597\uff1a\u6050\u9f99\u4e0e\u72ee\u5b50\u3002"} +{"id": "3004751", "video_name": "7f325531-c21d-5d47-ac74-95811653bf85", "text": "\u4e00\u8f86\u6c7d\u8f66\u4e0a\u7684\u6444\u50cf\u5934\u7a7f\u8d8a\u7e41\u5fd9\u7684\u6469\u6d1b\u54e5\u8857\u5e02\u3002"} +{"id": "6004539", "video_name": "8fed4bf2-ec2a-5c44-b019-2f3bff5273e5", "text": "\u7ea2\u8272\u6c7d\u8f66\u5728\u57ce\u5e02\u91cc\u884c\u9a76\u5e76\u5728\u8def\u4e0a\u629b\u951a\u3002"} +{"id": "5001942", "video_name": "29cd4333-d8bd-5984-be52-b2fe0831731e", "text": "\u4e00\u573a\u9a91\u58eb\u548c\u6b7b\u795e\u4e4b\u95f4\u7684\u52a8\u753b\u51b3\u6597"} +{"id": "7004297", "video_name": "850b9ef1-210b-5d1b-8933-cd56f7181648", "text": "\u4e00\u5ea7\u795e\u5947\u7684\u5c71\u95f4\u5c0f\u5c4b\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u4e4b\u95f4\uff0c\u8ff7\u4eba\u7684\u8857\u9053\u88ab\u843d\u65e5\u67d4\u548c\u7684\u5149\u8292\u7167"} +{"id": "7004987", "video_name": "6cccf71e-4df9-5ee2-aa39-925933786623", "text": "\u4e00\u6761\u5206\u5c94\u8def\uff0c\u5411\u53f3\u901a\u5f80\u7816\u77f3\u5c0f\u5f84\u3002"} +{"id": "1004243", "video_name": "4e80bcd3-d79f-5ced-b771-009fa97ef2f4", "text": "\u5728\u684c\u5b50\u4e0a\u5b66\u4e60\u7684\u4eba\u5728\u6572\u6253\u952e\u76d8\u3002"} +{"id": "2007103", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "\u88ab\u96fe\u7b3c\u7f69\u7684\u4e2d\u4e1c\u57ce\u5e02\u906d\u7834\u574f"} +{"id": "3004926", "video_name": "f2044a0e-8d00-5226-a164-40c843eb4633", "text": "\u540e\u542f\u793a\u5f55\u98ce\u683c\u7684\u827a\u672f\u65b0\u827a\u672f\u573a\u666f\uff0c\u98de\u7fd4\u7684\u9e1f\u3002"} +{"id": "7002546", "video_name": "2a645748-b654-5034-82b7-ae12494ccf99", "text": "\u5486\u54ee\u7684\u72ee\u5b50\uff0c16:9\u9ad8\u52a8\u6001\u8303\u56f4\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u91cd\u91cf\u7ea7\u52a8\u4f5c\u3002"} +{"id": "1006434", "video_name": "75c71e62-a518-5d35-bf6d-f97329ca6cc5", "text": "\u9b54\u6cd5\u4e66\u52a8\u753b\u6545\u4e8b\u7b80\u4ecb\u3002"} +{"id": "2003174", "video_name": "4c3d781a-17f0-54f6-a631-e3a34669ddf9", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u8d70\u8def\u5e76\u8bf4\u8bdd\u3002"} +{"id": "6003674", "video_name": "7ab64608-b482-52ea-b2c1-a330718b51bb", "text": "\u4e00\u79cd\u67d4\u8f6f\u7684\u5f69\u8679\u7070\u8272\u7f0e\u5b50\u8f7b\u8f7b\u98d8\u52a8\u3002"} +{"id": "0006633", "video_name": "2ff52c4c-e6ed-5470-88be-be043852c890", "text": "\u751f\u6210\u4e00\u5e45\u6c1b\u56f4\u611f\u5341\u8db3\u7684\u4e94\u6761\u609f\u50cf\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u6570\u4e2a\u5492\u672f\u7b26\u53f7\u7684\u5c4f\u969c\uff0c\u5c55\u793a\u4ed6\u7684\u9632"} +{"id": "4002292", "video_name": "abf08bbc-ebfb-5122-a525-51b15e12711b", "text": "\u7a7f\u8457\u4e00\u4ef6\u85cd\u8272\u88d9\u5b50\u3001\u6234\u8457\u82b1\u51a0\u548c\u85cd\u8272\u570d\u5dfe\u7684\u5973\u5b69\u3002"} +{"id": "7003924", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "\u4e00\u53ea\u82cd\u8747\u843d\u5728\u679c\u9171\u7f50\u4e0a\u3002"} +{"id": "7002361", "video_name": "500842ca-4f74-531d-80e8-c3f2fa4391d9", "text": "\u4e00\u7247\u68ee\u6797\u5145\u6ee1\u4e86\u8272\u5f69\u6591\u6593\u7684\u6c34\u548c\u7a7a\u95f4\u3002"} +{"id": "8003307", "video_name": "801b1bff-d593-51a1-b477-7a702965b5ee", "text": "\u4e00\u7fa4\u7531\u72ee\u5b50\u548c\u9e7f\u9886\u5bfc\u7684\u4e1b\u6797\u52a8\u7269\u8054\u5408\u8d77\u6765\uff0c\u4fdd\u62a4\u4ed6\u4eec\u7684\u5bb6\u56ed\u514d\u53d7\u4fb5\u5165\u7684\u4eba\u7c7b\u730e\u4eba"} +{"id": "1005820", "video_name": "6af8f86d-78f9-53e8-a10f-825dafab92ef", "text": "\u7528\u94bb\u77f3\u5199\u6210\u7684\u6587\u5b57\u3002\u4fe1\u606f\uff1a\u72d7\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003489", "video_name": "3e770527-e265-55af-bb43-eb2dcf7eb577", "text": "\u4eba\u4eec\u8d70\u8fdb\u4e00\u90e8\u73b0\u4ee3\u7535\u68af\u3002"} +{"id": "1003633", "video_name": "42e9ecd0-acd6-5184-b491-68008a249734", "text": "Delta\u822a\u73ed1001\u5728\u98de\u5f80\u6089\u5c3c\u9014\u4e2d\u906d\u9047\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "1003509", "video_name": "40d911e1-2675-55c4-beb3-b810d728fbe8", "text": "\u9102\u5716\u66fc\u5e1d\u570b\u7684\u5bae\u6bbf\u3002\u8d85\u903c\u771f\u7684\u3002\u96fb\u5f71\u822c\u7684\u3002"} +{"id": "1004848", "video_name": "599b2590-d17d-5d0f-af93-494a630add11", "text": "\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u6027\u5728\u6d77\u6ee9\u4e0a\u7f13\u6162\u4f18\u96c5\u5730\u884c\u8d70\uff0c\u4e3a\u751f\u547d\u6b4c\u5531\u3002"} +{"id": "1003412", "video_name": "3efcfde4-2e5a-5278-91e7-4b51191d3aa5", "text": "Raj\u662f\u5e74\u8f7b\u7537\u5b50\uff0cSima\u662f\u5e74\u8f7b\u5973\u5b50\uff0c\u4e24\u4eba\u90fd\u4f4f\u5728\u540c\u4e00\u4e2a\u57ce\u5e02\uff0c\u5728\u8fd9\u4e2a\u7279\u522b\u7684\u65e5\u5b50\u91cc\u76f8\u9047\u4e86\u3002"} +{"id": "2004616", "video_name": "cdd4f970-f874-5b4a-9e80-b98b4d466c98", "text": "\u4e00\u4e2a\u88ab\u56f0\u5728\u5730\u7262\u4e2d\u7684\u7537\u4eba\u7684\u5f62\u8c61\uff0c\u7c89\u5f69\u89c6\u9891\u827a\u672f\uff0c4k\uff0c8k\u3002"} +{"id": "8003551", "video_name": "b538dd36-fecd-5e3a-bc32-d833a15e1348", "text": "\u5728\u7535\u5f71\u98ce\u683c\u4e0b\uff0c\u4e00\u53ea\u602a\u517d\u5728\u88ab\u6bc1\u7684\u57ce\u5e02\u4e2d\u5c16\u53eb\uff0c4K\uff0c\u4f7f\u7528Blender\u3002"} +{"id": "6002202", "video_name": "1bf62352-1d88-5e01-a3db-2f67e0950053", "text": "\u5728\u6c99\u5b50\u91cc\u534a\u57cb\u7740\u4e00\u4e2a\u795e\u5947\u7684\u5706\u67f1\u4f53\uff0c\u5b83\u53ef\u4ee5\u5c55\u793a\u7ed9\u89c2\u8005\u672a\u6765\u7684\u80fd\u529b\u3002"} +{"id": "5001772", "video_name": "749a8662-da02-544d-87e6-aec4aa55ae41", "text": "\u98de\u673a\u505c\u9760\u533a\u505c\u673a\u4f4d\u7684\u56fe\u50cf\u3002"} +{"id": "2004695", "video_name": "6f61d6d3-2255-5352-aa27-7162b2cd2340", "text": "Translation: \u4eba\u7c7b\u5f62\u6001\u4e0b\u7684\u81ea\u7136\u4e4b\u6bcd\uff0c\u7a7f\u7740\u690d\u7269\u670d\u88c5\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "8003514", "video_name": "8f69d652-17c4-57ec-b9e5-dc674edf1e8e", "text": "\u6c99\u6f20\u591c\u7a7a\u4e2d\u661f\u5ea7\u7684\u65f6\u95f4\u6d41\u901d\u3002"} +{"id": "7002940", "video_name": "d89199fb-0420-543c-8ae5-efedae6bae41", "text": "\u68ee\u6797\u91cc\u4f4f\u7740\u5f88\u591a\u8682\u8681\u3002"} +{"id": "6004325", "video_name": "6c26765b-c666-5830-8d00-8f32e8648f98", "text": "\u4e24\u4e2a\u5e74\u8f7b\u7684\u59d0\u59b9\u4f4f\u5728\u623f\u5b50\u91cc\u3002\n\nSource sentence: My favorite color is blue.\n\u6211\u7684\u6700\u7231\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "4004483", "video_name": "2e9dfda9-9070-5ce5-b796-625fd7efcab0", "text": "\u53ef\u7231\u7684\u5361\u901a\u9b3c\u9b42\u4ee5\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\u5448\u73b0\uff0c\u6234\u7740\u5973\u5deb\u5e3d\u5b50\u4e3e\u884c\u8336\u4f1a\uff0c\u70db\u5149\u95ea"} +{"id": "2007026", "video_name": "585ded2c-4afc-53a8-969f-26e1937a8d45", "text": "a. \u7ae5\u8bdd\u5361\u901a\uff1a\u5b69\u5b50\u4eec\u5192\u9669\u8fdb\u5165\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u6ee1\u8138\u597d\u5947\u548c\u60ca\u5947\u3002"} +{"id": "6004563", "video_name": "bf9c7700-7ce3-5df1-a96e-ae2630c77ba3", "text": "\u4e00\u90e8\u7528\u4e0d\u540c\u9999\u6c34\u7c7b\u578b\u4ee3\u66ff\u9759\u6b62\u753b\u9762\u7684\u7535\u5f71\u3002"} +{"id": "2004848", "video_name": "ec0dc652-86ed-5d68-b646-9994bd6965bc", "text": "\u8bb8\u591a\u68a6\u5e7b\u7684\u6c14\u6ce1\u6f02\u6d6e\u5728\u7a7a\u4e2d\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "5001612", "video_name": "89686410-412e-5e65-b298-3ebc6a603e18", "text": "\u4eba\u7c7b\u4e0e\u673a\u5668\u4eba\u4e00\u8d77\u5de5\u4f5c\u3002\u9ed1\u8272\u7684\u73af\u5883\uff0c\u767d\u8272\u7684\u673a\u5668\u4eba\u3002"} +{"id": "7002669", "video_name": "f744215e-5e65-5d9d-8995-f6e32226530f", "text": "\u6709\u4e00\u4e2a\u79d8\u5bc6\u4eba\u5728\u751c\u751c\u5708\u540e\u9762\u7528\u7535\u8111\u5de5\u4f5c\uff0c\u800c\u751c\u751c\u5708\u4f1a\u4e0d\u65f6\u5730\u6539\u53d8\u5f62\u72b6\u3002"} +{"id": "4003273", "video_name": "da4aedb2-46e1-5526-afd1-0f90a771e575", "text": "\u9ed1\u6d1e\u5929\u7a7a\u4e2d\u6709\u592a\u7a7a\u8239\uff0c\u4e8b\u4ef6\u89c6\u754c\u5448\u659c\u5761\u72b6\u5e76\u50cf\u7011\u5e03\u6d41\u52a8\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "3006125", "video_name": "1b44972d-ca15-5384-93fd-c2870a3a8c3d", "text": "\u5236\u4f5c\u4e00\u4e2a\u82b1\u675f\u7684\u6d6e\u96d5\u6548\u679c\u3002\u82b1\u5e94\u8be5\u4ee5\u9ad8\u6d6e\u96d5\u7684\u65b9\u5f0f\u5448\u73b0\uff0c\u7ed3\u6784\u590d\u6742\uff0c\u800c\u80cc\u666f\u5e94\u8be5\u51f9\u9677\u4ee5\u521b\u9020"} +{"id": "0006789", "video_name": "332b9619-6ce1-5577-9460-9e3eaaacf403", "text": "\u5168\u666f\u955c\u5934\u5c55\u793a\u5899\u4e0a\u60ac\u6302\u7684\u5168\u5c3a\u5bf8\u955c\u5b50\u3002"} +{"id": "0004143", "video_name": "03fab710-5899-5e4f-9918-2cf44793ad94", "text": "\u6770\u514b\u62bd\u5230\u4e86\u9ed1\u6843\u7687\u540e\uff0c\u5f69\u8272\u7684\u3002"} +{"id": "8002294", "video_name": "1d441dba-28a8-5d8d-95bf-cd9779deee67", "text": "\u7334\u5b50\u548c\u4e24\u53ea\u732b\u4e00\u8d77\u5728\u6811\u4e0a\u8361\u79cb\u5343\u3002"} +{"id": "1004851", "video_name": "59a42c9a-e857-53dc-b971-fae4840be54b", "text": "1\u5206\u949f\u957f\u7684\u5e26\u6709\u97f3\u6548\u7684\u52a8\u753b\u6218\u6597\u89c6\u9891\u3002"} +{"id": "7003586", "video_name": "f4a2e27e-49fb-5506-adeb-e99fc1ac967c", "text": "\u5728\u80cc\u666f\u662f\u5bcc\u58eb\u516c\u53f8\u7684\u4fe1\u606f\u6280\u672f\u56ed\u533a\u4e2d\uff0c\u4e00\u4f4d\u7a7f\u7740\u9510\u5229\u7684\u5546\u52a1\u670d\u88c5\u7684\u5370\u5ea6\u5973\u4f01\u4e1a\u5bb6\uff0c\u4e2d\u666f\u3002"} +{"id": "0004056", "video_name": "026e22a4-91ee-515c-96fb-f66419cec7d1", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u4ece\u9633\u53f0\u4e0a\u770b\u7740\u4e00\u4e2a\u5feb\u4e50\u7684\u5bb6\u5ead\u53bb\u5546\u5e97\u3002"} +{"id": "7003673", "video_name": "4598347d-f233-5cf8-8736-624de548e61f", "text": "\u5468\u4e94\uff0c\u7b49\u5f85\u4e0b\u73ed\u3002"} +{"id": "2003788", "video_name": "7c349e3c-e8bc-504b-9be3-78f2dddaca2b", "text": "\u591c\u7a7a\u4e2d\u6709\u4e91\u548c\u661f\u661f\u7684\u592a\u7a7a\uff0c\u865a\u5e7b\u5f15\u64ce5\u3002"} +{"id": "0006863", "video_name": "346d6396-9204-5fb8-b2c6-1f704d023f1a", "text": "\u745e\u79cb\u00b7\u9ea6\u514b\u4e9a\u5f53\u65af\u4ee53D\u5361\u901a\u98ce\u683c\u5448\u73b0\uff0c\u5979\u5728\u8fea\u62dc\u54c8\u5229\u6cd5\u5854\u65c1\u7684\u8857\u9053\u4e0a\u884c"} +{"id": "6003073", "video_name": "25c23168-6c7e-5766-99d4-7a16ed8cb7c0", "text": "\u4eba\u4eec\u6b63\u5728\u5f81\u670d\u73e0\u7a46\u6717\u739b\u5cf0\u3002\u66b4\u98ce\u96ea\u3002 \n\nSource sentence: I love eating spicy food, but it doesn't love me back. \n\u6211\u559c\u6b22"} +{"id": "1003029", "video_name": "379ad9dd-e636-56c6-8fc2-f5086b970af9", "text": "\u65e9\u6668\u7684\u9633\u5149\u8f7b\u8f7b\u900f\u8fc7\u7a97\u5e18\uff0c\u7167\u4eae\u4e86\u6df7\u4e71\u7684\u623f\u95f4\uff0c\u6f2b\u753b\u4e66\u5806\u79ef\u5728\u4e00\u65c1\uff0c\u6563"} +{"id": "0003160", "video_name": "38487326-2f55-578e-b636-8f4b19516624", "text": "\u4ed6\u4eec\u5bfb\u627e\u4e86\u6cbb\u7597\u65b9\u6cd5\uff0c\u4e0d\u60dc\u4e00\u5207\u4ee3\u4ef7\u3002\u4f46\u968f\u7740\u75c5\u6bd2\u7684\u53d8\u5f02\uff0c\u4ed6\u4eec\u7684\u52aa\u529b\u9010\u6e10\u51cf\u5c11\u3002"} +{"id": "1004104", "video_name": "4bf6cab1-dbc9-5720-ae42-558b936f96db", "text": "\u8d85\u73fe\u5be6\u7684\u626d\u66f2\u9b54\u8853\u8868\u6f14\u5f71\u7247\uff0c\u9b54\u8853\u5e2b\u9ed1\u767d\u7d93\u5178\u756b\u9762\uff0c\u9846\u7c92\u611f\uff0c1920\u5e74\u4ee3"} +{"id": "8002671", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\uff0c\u53f3\u8fb9\u7684\u5899\u4e0a\uff0c\u4e0d\u6e05\u6670\u7684\u5149\u6591\u53d8\u6210\u4e86\u6df1\u7a7a\u4e2d\u60ca\u4eba\u7684\u661f\u7a7a\u56fe\u50cf\uff0c\u95ea\u70c1"} +{"id": "2003799", "video_name": "3d0b8893-c414-58fa-8ba2-24d1af0945c9", "text": "\u4e00\u7247\u68ee\u6797\uff0c\u91d1\u8272\u95ea\u70c1\u7684\u4e1d\u5e26\u5728\u5176\u4e2d\u6f02\u6d6e\u3002"} +{"id": "4004710", "video_name": "5e1a5a31-205b-5d27-893b-c568511092e3", "text": "\u5728\u4e1b\u6797\u68ee\u6797\u4e2d\u7684\u5c0f\u5f84\u6982\u5ff5\u827a\u672f\u4f5c\u4e3a\u4e2d\u9014\u65c5\u7a0b\u3002"} +{"id": "8002953", "video_name": "c9baf457-c3e5-5df2-bb2e-77a882e30089", "text": "\u7537\u5b69\u5728\u7530\u91ce\u91cc\u8d70\u7740\uff1bSilenceSuzuka\uff0c\u753b\u51fa\u519c\u592b\u5236\u670d\uff1b\u7537\u5b69\u63d2\u56fe\uff0c\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u975e\u5e38\u8be6\u7ec6"} +{"id": "6003028", "video_name": "10184370-cae6-521b-9f8e-cff4d9e71575", "text": "\u521b\u5efa\u79fb\u52a8\u4eba\u53e3\u7684\u6751\u5e84\u3002"} +{"id": "0006368", "video_name": "2b4d4d84-9e9f-5cda-8018-f247d6ade562", "text": "Translation: \u8389\u8389\u5728\u6e38\u6cf3\u6c60\u91cc\u505a\u4e86\u4e00\u4e2a\u4f18\u7f8e\u7684\u8df3\u6c34\u3002\u52a8\u753b\u5361\u901a"} +{"id": "1005826", "video_name": "6b0a9c14-57fd-5c06-8517-f80f7ba043f3", "text": "\u7528\u7c89\u8272\u88d9\u5b50\u7684\u5973\u5b69\u5728\u4e1b\u6797\u91cc\u5feb\u4e50\u5730\u5954\u8dd1\uff0c\u5468\u56f4\u662f\u7eff\u8272\u7684\u8349\u5730\u548c\u4e94\u5f69\u7f24\u7eb7\u7684\u8774"} +{"id": "0005323", "video_name": "18b38cef-44ce-54aa-8c74-1d8339948673", "text": "\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u591c\u665a\uff0c\u8857\u9053\u4e0a\u4e0b\u7740\u96e8\uff0c\u5973\u5b69\u7f13\u6162\u5730\u524d\u884c\u3002"} +{"id": "1004650", "video_name": "566cc770-1b75-5d6c-be9a-d089ed202f30", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u8bf7\u63cf\u8ff0\u4e00\u4e2a\u6162\u6162\u5f00\u653e\u3001\u5f62\u6210\u4e00\u5e45\u591a\u5f69\u753b\u9762\u7684\u82b1\u3002"} +{"id": "0005462", "video_name": "1b3337d1-277c-519b-a4fe-43021bb38272", "text": "\u5929\u7a7a\u4e2d\u843d\u4e0b\u94b1\u7684\u5730\u65b9\u3002"} +{"id": "3006944", "video_name": "ba189a0c-0b29-523c-9afa-3327df31064a", "text": "\u56fe\u7247\u4e2d\u7684\u751f\u7269\u5fae\u7b11\u7740\uff0c\u5411\u524d\u4f38\u51fa\u624b\uff0c\u5934\u53d1\u968f\u7740\u4ed6\u7684\u6bcf\u4e00\u4e2a\u52a8\u4f5c\u800c\u52a8\uff0c\u4ed6\u7684\u773c\u775b\u7741\u5f00\uff0c\u773c\u775b\u5b8c\u5168\u662f"} +{"id": "4004400", "video_name": "2bacada9-e8e3-58a5-9478-48fb5034771a", "text": "\u751f\u6210\u97e9\u5a1c\u66fc\u5409\u7965\u89c6\u9891\uff0c\u5176\u4e2d\u5305\u62ec\u7a7f\u8d8a\u5ce1\u8c37\u3001\u4e1b\u6797\u548c\u6c34\u9762\u7684\u98de\u884c\u955c\u5934\u3002\u4ece5\u5c81\u5230\u6210\u5e74"} +{"id": "4004883", "video_name": "27ad6224-fc17-5df2-b95b-5efbbf2e3bd5", "text": "\u4e00\u4e2a\u7a7f\u7740\u98ce\u8863\u7684\u4fa6\u63a2\u7ad9\u5728\u4ed6\u768469\u5e74\u9053\u5947Charger\u65c1\uff0c\u5174\u594b\u5730\u5728\u7535\u8bdd\u91cc\u8bf4\u8bdd\u3002"} +{"id": "6004934", "video_name": "12d57947-b47d-5ade-ad17-68f5c2fc7b4c", "text": "\u4e00\u6735\u6c83\u56e0\u5947\u7d2b\u7f57\u5170\u82b1\u4f5c\u4e3a\u4e00\u4e2a\u7f57\u590f\u514b\u5934\u9aa8\uff0c\u53e0\u52a0\u56fe\u50cf\uff0c\u7167\u660e\u6295\u5f71\u56fe\u50cf\u3002"} +{"id": "2003535", "video_name": "537283b5-5af8-5477-9c53-188a8aaaa4d0", "text": "\u6211\u505a\u7f51\u7ad9\u3001\u57df\u540d\u6ce8\u518c\u3001\u6a2a\u5e45\u5370\u5237\u3001\u6807\u5fd7\u521b\u4f5c\uff0c\u9700\u8981\u5e02\u573a\u5ba3\u4f20\u3002\u6211\u7684\u7f51\u7ad9\u662fwww.jasongraphix.co.za\uff0c\u53ef\u4ee5\u901a\u8fc7WhatsApp"} +{"id": "3006602", "video_name": "f3ebc16e-e40a-5c58-8cb3-016e66f656d8", "text": "\u5170\u535a\u57fa\u5c3cAventador\u548c\u5b9d\u9a6cM5\u4e4b\u95f4\u7684\u6bd4\u8d5b"} +{"id": "6003683", "video_name": "9d8da7e2-84e8-581b-88c3-041de6d24cc4", "text": "\u5f3a\u8c03\u7537\u5b69Ramesh\u3001Neeraj\u548cSheru\u63a2\u7d22\u5370\u5ea6\u6751\u5e84\u5404\u4e2a\u89d2\u843d\u65f6\u7684\u60ac\u5ff5\u548c\u5174\u594b\u611f\u30024K\u5206\u8fa8"} +{"id": "8003127", "video_name": "4201d2d6-ed3c-56fb-9669-58208bbd04e6", "text": "\u4e00\u9053\u5de8\u6d6a\u51b2\u4e0a\u5cb8\u8fb9\uff0c\u6467\u6bc1\u4e86\u4e00\u8258\u6b8b\u9ab8\u3002"} +{"id": "1005827", "video_name": "6b0adec9-a9a9-567c-941e-58058b575819", "text": "\u6c89\u6d78\u5728\u4e00\u4e2a\u5e73\u9759\u4e0e\u89c9\u9192\u4ea4\u7ec7\u7684\u9886\u57df\u4e2d\uff0c\u4e3b\u89d2\u901a\u8fc7\u51a5\u60f3\u7684\u8f6c\u5316\u529b\u91cf\u6df1\u5165\u81ea\u5df1\u7684\u7075\u9b42\u3002"} +{"id": "0004164", "video_name": "045b3d90-7e4b-54ed-a8ca-058b4961c8ba", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u5154\u5b50\u5f39\u5409\u4ed6\u3002"} +{"id": "8003592", "video_name": "d620a3e9-7863-5487-a735-a61ee1b1971c", "text": "\u5df4\u4ec0\u57fa\u5c14\u4eba\u5728\u6c7d\u8f66\u4fee\u7406\u5382\u91cc\u6eda\u52a8\u8f6e\u80ce\uff0c\u6765\u56de\u7761\u89c9\u3002"} +{"id": "0005377", "video_name": "19be31e9-75a5-52a2-b9b7-ef39d13fa23f", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\uff08Walter White\uff09\u6b63\u5728\u5c06\u4e00\u5757\u77f3\u5934\u63a8\u4e0a\u5c71\u3002"} +{"id": "6003262", "video_name": "2c9ee7a4-fb4a-5768-b445-776b3e282909", "text": "\u5df4\u9ece\u6cd5\u56fd\u4f4e\u7a7a\u7684\u7f8e\u4e3d\u5730\u65b9"} +{"id": "3004017", "video_name": "fd95fdb6-d065-534f-8861-723d4346caf3", "text": "\u4e00\u53ea\u72d7\u88ab\u4e00\u53ea\u732b\u5403\u6389\u4e86\u3002"} +{"id": "8003834", "video_name": "97c55c64-e8b3-5a35-a9e8-cfcbbe3b6c22", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u548c\u4ed6\u7684\u5973\u53cb\u8d70\u8fc7\u5e7f\u573a\u3002"} +{"id": "8003907", "video_name": "607b7c07-9935-5c9a-8511-3718cdfd9ded", "text": "\u5973\u5b69\u5b50\u7684\u8863\u670d\u3002\u4fe1\u606f\uff1acohina\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002396", "video_name": "ade3961f-5707-5217-b9d8-c027b6e57e0f", "text": "(\u7531Ching Yeh\uff1a1.2)\u7248\u753b\uff0c\u60ac\u6302\u5728\u5c71\u9876\u6751\u5e84\uff0c\u5e73\u8861\uff0c\u805a\u5149\u706f\uff0c\u8fb9\u7f18\u5149\uff0c3D\u6a21\u578b\uff0c"} +{"id": "8001936", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "\u590d\u53e4\u3001\u5973\u5b69\u3001\u4e66\u3001\u9605\u8bfb\u3001\u57ce\u5e02\u30011970\u5e74\u4ee3 \n\nSource sentence: Can you recommend a good restaurant nearby? \n\u8bf7\u95ee\u60a8\u80fd\u63a8\u8350\u9644\u8fd1\u6709\u597d\u7684\u9910"} +{"id": "6003078", "video_name": "daec51fd-70a7-5fff-8980-45f19fecd76b", "text": "\u4e00\u5217\u6709\u6bd4\u7279\u5e01\u6807\u5fd7\u7684\u706b\u8f66\u5728\u94c1\u8f68\u4e0a\u884c\u9a76\u3002"} +{"id": "8002601", "video_name": "f194f2bf-0d9f-5328-83bb-344626b070ee", "text": "\u4e00\u7247\u7f8e\u4e3d\u7684\u85b0\u8863\u8349\u8272\u5f69\u7684\u5929\u7a7a\uff0c\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u68a6\u5883\uff0c\u90a3\u91cc\u5145\u6ee1\u4e86\u5149\u8292\u3002"} +{"id": "1003622", "video_name": "42bf0110-0449-5765-80cf-55a567259102", "text": "\u57ce\u5e02\u591c\u666f\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u62cd\u6444\u6c34\u9762\u4e0a\u7684\u5929\u9645\u7ebf\u3002"} +{"id": "6002465", "video_name": "8a5974aa-1932-5878-8d29-fb08aac51354", "text": "\u5fc3\u610f\u8db3\u7403\u4ff1\u4e50\u90e8\u7684\u6d3b\u52a8\u4e0d\u4ec5\u4ec5\u5c40\u9650\u4e8e\u4f53\u80b2\uff0c\u8fd8\u5305\u62ec\u6587\u5316\u3001\u57f9\u80b2\u3001\u793e\u4f1a\u798f\u5229\u3001\u56fd\u9645\u5408\u4f5c\u548c\u7ec4"} +{"id": "2003717", "video_name": "fb9050e5-7a8e-5563-bbf5-474013587477", "text": "\u4e00\u4e2a\u5973\u5b69\u51fa\u73b0\u5728\u9713\u8679\u706f\u5149\u7684\u5c0f\u5df7\u4e2d\u3002\u52a8\u6001\u77ac\u95f4\uff0c\u96e8\u5929\u3002\u53f2\u8bd7\u7535\u5f71\u6d77\u62a5\uff0c\u6982\u5ff5\u827a\u672f\uff0c"} +{"id": "2003384", "video_name": "76a214bc-be96-54d8-b691-2c85bd4da707", "text": "\u4e00\u4e2a\u5e9f\u5f03\u4ed3\u5e93\u91cc\u7684\u4eba\u7fa4\u5411\u7740\u6444\u50cf\u673a\u72c2\u5954\u3002 \n\nSource sentence: The sunset over the ocean was breathtakingly beautiful. \n\n\u5927\u6d77\u4e0a\u7684\u65e5\u843d\u7f8e\u5f97"} +{"id": "8001274", "video_name": "d82329c8-cb6b-57fc-b20b-6e0b405ec57f", "text": "UFO\u98de\u789f\u5760\u843d\u5728\u6c99\u6f20\u4e2d\u3002"} +{"id": "8002966", "video_name": "cbeab040-3f90-599a-b618-0979a714314d", "text": "\u521b\u9020\u4e00\u53ea\u7a7f\u7740\u767d\u8272T\u6064\u886b\uff0c\u5728\u68ee\u6797\u4e2d\u8df3\u8dc3\u7684T-Rex\u6050\u9f99\u3002"} +{"id": "0006850", "video_name": "342f6da5-f130-530a-84c7-6bf3349225b9", "text": "\u4e2d\u6587\u6c34\u9f99\u53d8\u6210\u4e00\u6761\u9526\u9ca4\u3002"} +{"id": "2004143", "video_name": "324ef747-7b00-5082-8b3a-081783427cec", "text": "\u4e00\u4e2a\u5728\u84dd\u5929\u767d\u4e91\u548c\u5927\u6d77\u4e4b\u95f4\u7684\u5730\u65b9"} +{"id": "6002844", "video_name": "dade46cd-3f7f-5fde-aa44-2b9d74fa0f8c", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5750\u5728\u673a\u573a\uff0c\u4ece\u7a97\u6237\u770b\u7740\u98de\u673a\u3002"} +{"id": "3003722", "video_name": "605eebf0-28d9-5b5d-bb08-3a029f2b89fd", "text": "\u4e24\u4e2a\u670b\u53cb\u5728\u68ee\u6797\u4e2d\u4ee5\u8fea\u58eb\u5c3c\u98ce\u683c\u6563\u6b65\u3002"} +{"id": "1003410", "video_name": "3ef1876e-a8a6-5dc4-be10-ebf1d0f8ed8c", "text": "\u8d85\u5199\u5b9e\u768430\u5c81\u7537\u5b50\u4ece\u68a6\u4e2d\u9192\u6765\uff0c\u53d1\u73b0\u81ea\u5df1\u5728\u4e00\u4e2a\u6709\u97f3\u4e50\u8bbe\u5907\u548c\u6d77\u62a5\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "4002389", "video_name": "1a383bfc-7d07-5263-9f38-b48de709bbc3", "text": "\u5728\u4e00\u5bb6\u9152\u5427\u91cc\u5531\u6b4c\u7684\u6b4c\u624b\u72ec\u81ea\u4e00\u4eba\uff0c\u5916\u9762\u4e0b\u7740\u96e8\uff0c\u6728\u8d28\u7684\u88c5\u9970\uff0c\u5bd2\u51b7\u800c\u7070\u6697"} +{"id": "2006870", "video_name": "4c676c66-cf13-5258-8f94-711c928c1199", "text": "\u7518\u9053\u592b\u548c\u8428\u9c81\u66fc\u5728\u96ea\u5c71\u9876\u4e0a\u4e0b\u68cb\u3002"} +{"id": "6004543", "video_name": "f171ca32-b1cb-5644-bf1b-df50081d5f23", "text": "\u4ee5\u5bab\u5d0e\u9a8f\u548cGreg Rutkowski\u7684\u98ce\u683c\u4e3a\u57fa\u7840\u8bbe\u8ba1\u7684\u52a8\u6f2b\u5973\u5b69\uff0c\u62e5\u6709\u84dd\u8272\u7684\u98d8\u9038\u957f\u53d1\uff0c\u80cc\u666f\u662f\u4e00\u4e2a"} +{"id": "6003852", "video_name": "b39f4b0e-50c3-50b1-9d9c-bb9fdbf531ca", "text": "\u63cf\u8ff0\u5973\u795e\u5e93\u6749\u8fbe\u7684\u6545\u4e8b\u4e2d\u4e3b\u8981\u7684\u4e3b\u9898\u548c\u6559\u8bad\u3002"} +{"id": "3005208", "video_name": "d1d66ee9-8bfd-5c15-b6a5-1eb75497df5a", "text": "\u4e00\u67b6\u7eb8\u98de\u673a\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u53d8\u6210\u4e86\u7164\u3002"} +{"id": "2004920", "video_name": "c5b681f5-2a3b-5ddd-bfe8-2b37b5b444c4", "text": "\u63d0\u793a\u5723\u9910\uff0c\u4f46\u6240\u6709\u7684\u95e8\u5f92\u90fd\u7a7f\u7740\u9ed1\u8272\u886c\u886b\uff0c\u5728\u886c\u886b\u4e2d\u592e\u7528\u6a59\u8272\u5199\u7740UNI\u3002"} +{"id": "8003305", "video_name": "c3125b20-9b34-5551-a905-d439e76fd902", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u5728\u52a8\u4f5c\u59ff\u52bf\u4e0b\u9970\u6f14\u9ed1\u5be1\u5987\u3002"} +{"id": "8003774", "video_name": "08f8dfd2-8e4b-5d74-ac84-3717162b821c", "text": "\u4e00\u540d\u8eab\u7a7f\u5723\u7ecf\u65f6\u671f\u957f\u888d\u7684\u4e2d\u4e1c\u7537\u5b50\u5728\u5c18\u571f\u98de\u626c\u7684\u8def\u4e0a\u80cc\u5411\u955c\u5934\u884c\u8d70\u3002"} +{"id": "4003037", "video_name": "97db5578-987b-5233-924d-0c73537e2dde", "text": "\u7c89\u8272\u7684\u4e91\u5f69\u98de\u8fc7\u84dd\u8272\u7684\u5929\u7a7a\u5e76\u6539\u53d8\u5b83\u4eec\u7684\u5f62\u72b6\u3002\u91d1\u8272\u7684G\u8c03\u8c31\u53f7\u548c\u94f6\u8272\u7684\u5fc3\u5f62\u5728\u4e91\u95f4\u50cf"} +{"id": "7002899", "video_name": "3507190d-ae79-56f7-8af0-c6d1f3763b78", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u8131\u4e0b\u9762\u5177\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "0005476", "video_name": "1b6d922c-20a9-5822-9b38-adb125fbbc37", "text": "1952\u5e74\uff0c\u632a\u5a01\u7a7a\u519b\u6218\u673a\u5728\u65af\u5339\u6b21\u5351\u5c14\u6839\u8fdb\u884c\u6f14\u4e60\uff0c\u6444\u5f71\u955c\u5934\u3002"} +{"id": "6002462", "video_name": "2fcf4982-93e4-56e0-9672-2f3b9823073a", "text": "\u540e\u9662\u6e38\u6cf3\u6c60\u4e2d\u7684\u6df1\u6d77\u751f\u7269\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6004724", "video_name": "c16a5e5e-db30-5ce7-b291-701c713797dc", "text": "\u7236\u6bcd\u548c\u5973\u513f\u73a9\u4e00\u4e2a\u5c0f\u732b\u54aa\u3002 \n\nSource sentence: I am going to the store to buy some milk and bread. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u725b\u5976\u548c"} +{"id": "7003789", "video_name": "51192c39-36d1-58aa-8d45-12cf7f6ac601", "text": "\u6a21\u4effLeonardo.AI\u7684\u65b9\u5f0f\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u665a\u5b89\u6545\u4e8b\u7684\u89c6\u9891\uff0c \u5728\u5b9d\u5b9d\u5165\u7761\u65f6\u8bb2\u8ff0\u4e00\u4e2a\u8272\u5f69\u6591\u6593\u7684\u6df1\u6d77\u73ca"} +{"id": "3003505", "video_name": "2b429ade-3ab5-5180-9e8c-226e81ea8dc0", "text": "\u60a8\u60f3\u8981\u521b\u5efa\u89c6\u9891\u7684\u63cf\u8ff0\u53c2\u6570\u3002"} +{"id": "2004921", "video_name": "1323a71c-24f9-5089-a08d-5f02dcd55fe2", "text": "\u7528\u77f3\u69b4\u77f3\u788e\u7247\u5728\u9676\u74f7\u76d8\u4e0a\u8fdb\u884c\u827a\u672f\u7ed8\u753b\u3002 \n\nSource sentence: The internet has revolutionized the way we communicate and access information. \n\n\u4e92\u8054"} +{"id": "2005358", "video_name": "f967bf13-84b9-518b-82a0-c9199e1457e8", "text": "\u6c34\u5e95\u4e0b\u770b\u5230\u4e00\u53ea\u7ea2\u8272\u9ad8\u8ddf\u978b\u6f02\u6d6e\u5728\u6e38\u6cf3\u6c60\u4e2d\u592e\u3002"} +{"id": "0005204", "video_name": "1691c47b-07e8-57d7-819e-ec5579285cbc", "text": "\u4e00\u5ea7\u7b80\u5355\u4f46\u8212\u9002\u7684\u4e61\u6751\u5c0f\u5c4b\uff0c\u70df\u4ece\u70df\u56f1\u4e2d\u5347\u8d77\u3002"} +{"id": "5001206", "video_name": "9abc6d94-a2cb-5083-8390-91008e143fca", "text": "\u5df4\u9ece\u5efa\u7b51\u7684\u53e0\u5199\u5f0f\u7279\u70b9\uff0c\u5f62\u6001\u5b66\u4ee5\u53ca\u4e09\u7ef4\u6df1\u5ea6\u6620\u5c04\u3002"} +{"id": "4002524", "video_name": "71ee82c7-e9e6-5c44-84da-2f1f1523391b", "text": "\u8dd1\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u4e0e\u5361\u8f66\u5e76\u884c\u9a76\u9a76\u3002"} +{"id": "4004571", "video_name": "1fd941aa-5119-52c9-b8bb-adaf32f941f3", "text": "\u4e00\u95f4\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u53ea\u6709\u4e00\u53f0\u7535\u8111\u5c4f\u5e55\u7167\u4eae\u4e86\u533f\u540d\u9ed1\u5ba2\u56e2\u961f\u6210\u5458\u6e29\u59ae\u7684\u8138\u3002\u80cc\u666f"} +{"id": "2007606", "video_name": "fade95d0-26eb-5012-80f1-4f73072ab5a0", "text": "\u795e\u5947\u5973\u4fa0\u7ad9\u5728\u91d1\u5b57\u5854\u4e0a\u3002\u661f\u7a7a\u4e0b\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16\uff1a9\u3002"} +{"id": "4002828", "video_name": "3ef09af1-b831-542a-9ea7-dcd15dab451e", "text": "\u73b0\u5b9e\u7167\u7247\uff0c\u4e24\u4e2a\u6027\u611f\u5916\u661f\u5973\u6027\u5728\u661f\u7cfb\u591c\u603b\u4f1a\u8df3\u821e\u3002"} +{"id": "1004568", "video_name": "54e17365-8f0e-5b3d-89c8-4275259d3414", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u767d\u8272\u51ef\u7f8e\u745e\u8f66\u4ece\u53f7\u7801\u4e3aM001PP95\u7684\u5730\u65b9\u884c\u9a76\u3002"} +{"id": "8003685", "video_name": "83963bcd-2d3c-5dfa-b498-c54b27d21730", "text": "\u5929\u6c14\u4e0d\u597d\u7684\u9634\u96e8\u5929\uff0c\u4e00\u4e2a\u624b\u6367\u793c\u7269\u7684\u60b2\u4f24\u7537\u5b50\u5750\u5728\u957f\u6905\u4e0a\u3002"} +{"id": "4002097", "video_name": "b2334e0b-4c37-5323-9b4a-545df45d9afc", "text": "\u8f7b\u76c8\u7684\u80cc\u666f\uff0c\u5e26\u6709\u5723\u8bde\u793c\u76d2\u5185\u7684\u514d\u8d39\u793c\u54c1\u3002"} +{"id": "0003870", "video_name": "44f03bb3-2181-57ca-848d-50ba14f539d7", "text": "\u753b\u767d\u8272\u7684\u7ebd\u6263\u886c\u886b\u65f6\u51fa\u73b0\u9519\u8bef\uff0c\u58a8\u6c34\u6e85\u5230\u753b\u5e03\u4e0a\u3002"} +{"id": "2003859", "video_name": "310127f6-3c46-596a-879d-36d71dd63d76", "text": "\u6c34 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0004370", "video_name": "07e6fc24-9704-516d-a318-0f745260bea8", "text": "Translation: \u82f9\u679c\u53d8\u6210\u6a59\u5b50\u5f88\u771f\u5b9e\u3002"} +{"id": "7003892", "video_name": "bc4bde02-eb6b-523f-891c-457c0237a61a", "text": "\u4e00\u4e2a\u7537\u4eba\u5927\u58f0\u5730\u6309\u7167\u52a8\u6f2b\u98ce\u683c\u8fd1\u8ddd\u79bb\u558a\u53eb\uff0c8K\u9ad8\u6e05\u77ed\u7247\u3002"} +{"id": "8003169", "video_name": "ecc37252-2c33-53f5-b131-9ea5fbaac489", "text": "\u6cd5\u56fd\u653f\u5e9c\u81f4\u7f8e\u56fd"} +{"id": "3003338", "video_name": "3613eb35-3e3a-56c5-9052-9acad228b956", "text": "\u5e74\u8f7b\u4e8c\u5341\u5c81\u7684\u75b2\u60eb\u7537\u5b50\u4ef0\u671b\u7740\u6a21\u7cca\u7684\u9713\u8679\u706f\u80cc\u666f\u4e0b\u7684\u96e8\u3002"} +{"id": "6003491", "video_name": "99749c2a-9686-57c4-af48-ab933709c862", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u573a\u666f\uff0cIMAX\u7535\u5f71\uff0c\u9ad8\u6e05\u753b\u8d28\uff0c\u5e26\u6709\u5168\u666f\u955c\u5934\u7684\u5feb\u901f\u5b50\u5f39\u98de\u884c\uff0c\u80fd\u770b\u5230\u58f0\u97f3\u7684\u9707\u52a8\u5e76"} +{"id": "8002325", "video_name": "654c41fc-c1c7-50bc-a869-3c71cdbb4e93", "text": "\u4e00\u4e2a\u7a7f\u767d\u88d9\u5b50\u7684\u5973\u5b69\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u9677\u5165\u4e86\u5bf9\u5979\u7684\u604b\u4eba\u7684\u56de\u5fc6\u4e2d\u3002"} +{"id": "1003247", "video_name": "3bc9cd38-2496-5f48-a6b3-17cd0b3635ac", "text": "\u5236\u4f5c\u4e00\u4e2a\u957f\u89c6\u9891\uff0c\u6295\u63b7\u871c\u8702\u3001\u9e1f\u3001\u4e1b\u6797\u6cb3\u6d41\u548c\u82b1\u6735\u3002"} +{"id": "6003978", "video_name": "18522684-2121-5ad4-bc56-ab8d90d2eed5", "text": "\u73af\u4fdd\u5f62\u8c61\u4fc3\u8fdb\u79ef\u6781\u7684\u73af\u4fdd\u8ba4\u77e5\u3002"} +{"id": "1006178", "video_name": "710f8e4c-776c-59e1-9939-96586968f4b4", "text": "\u52a8\u753b\u673a\u5668\u96f6\u4ef6\u5e76\u653e\u5927\u5230\u7279\u5199\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002"} +{"id": "2003486", "video_name": "65341573-dbe2-5b54-9158-d570d29df1ca", "text": "\u4e00\u4e2a\u7a7f\u7740\u51ac\u5b63\u8863\u670d\u7684\u7537\u4eba\u4eab\u53d7\u51ac\u5929\u3002"} +{"id": "4003824", "video_name": "49230468-4392-5042-8aa0-d1d1ed1097d1", "text": "\u4e00\u53ea\u72fc\u548c\u4e00\u540d\u58eb\u5175\u505a\u670b\u53cb\u3002"} +{"id": "1005597", "video_name": "66f50bb0-fe7d-5e53-87c2-b48ea1893391", "text": "\u590f\u65e5\u7684\u6cd5\u56fd\u56fd\u65d7"} +{"id": "4003081", "video_name": "6849b6b2-ba4d-5f47-aafc-3b4eef5b0eaf", "text": "\u5df4\u970d\u5df4\u5229\u7a7f\u8fc7\u4e00\u5ea7\u5c0f\u53ee\u5f53\u4ed9\u5b50\u7684\u623f\u5b50\u3002"} +{"id": "7002325", "video_name": "43a59a7a-da2e-5bb8-b5b2-ee15f40f544b", "text": "\u4e00\u4e2a\u7ad9\u5728\u5c71\u9876\u4e0a\u4ef0\u671b\u5929\u7a7a\u7684\u7537\u5b69"} +{"id": "3006509", "video_name": "d60c2f33-c800-551c-a366-beaf16ad352d", "text": "\u76f2\u738b\u5fb7\u91cc\u5854\u62c9\u65af\u7279\u5750\u5728\u738b\u5ea7\u4e0a\uff0c\u8bb2\u8ff0\u6218\u51b5\u3002"} +{"id": "1004310", "video_name": "4fab9d05-3f3e-590c-84bb-285f9925f0b5", "text": "\u7528\u9b54\u6cd5\u661f\u661f\u56f4\u7ed5\u7684\u52a8\u753b\u573a\u666f\uff0c\u5c55\u73b0\u4e00\u4e2a13\u5c81\u7537\u5b69\u5728\u5730\u7403\u5468\u56f4\u98de\u884c\u7684\u60c5\u666f\u3002"} +{"id": "4002780", "video_name": "5ee0fdf4-00d9-5cac-9535-c6ae8ea256e5", "text": "\u665a\u4e0a\u4e0b\u96e8\u7684\u4e3b\u8857\u9053\uff0c\u9713\u8679\u706f\u6807\u5fd7\u6392\u5217\u5728\u8def\u8fb9\uff0c\u7a7a\u8361\u8361\u7684\u57ce\u9547\uff0c\u5012\u5f71\u6620\u5728\u8def\u9762\u4e0a\u3002"} +{"id": "2006468", "video_name": "18754331-5691-5473-bd00-1a1311c177a7", "text": "\u592a\u7a7a\u4e2d\u6218\u6597\u673a\u4e4b\u95f4\u7684\u5feb\u901f\u6c7d\u8f66\u8ffd\u9010"} +{"id": "4003052", "video_name": "c78e8fcc-1718-5f4a-bea3-12c23719e6f2", "text": "\u4e00\u4f4d\u840c\u7cfb\u52a8\u6f2b\u5973\u5b69\u6210\u529f\u9003\u8fc7\u5916\u661f\u4eba\u7684\u88ad\u51fb\u3002"} +{"id": "7003970", "video_name": "316dd818-0a7e-5a8f-bea0-02ea6e253ce0", "text": "\u4e00\u5806\u732b \u5600\u565c\u5600\u565c (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003589", "video_name": "42070572-bb7c-5094-84ac-f77dd1c4d861", "text": "\u6b65\u884c\u8005\uff0c\u7eff\u8272\u80cc\u666f\uff0c\u4fef\u89c6\u56fe\uff0c\u77e2\u91cf\u63d2\u56fe\u3002"} +{"id": "6004495", "video_name": "dd6241fc-f612-5b09-8eb2-3e97389ee689", "text": "\u6885\u897f\u7528\u6c34\u5f69\u98ce\u683c\u6253\u5165\u4e86\u4ed6\u804c\u4e1a\u751f\u6daf\u7684\u6700\u540e\u4e00\u4e2a\u8fdb\u7403\u3002"} +{"id": "8001721", "video_name": "3e3845a3-c8dd-5a2d-9a78-403f08f887bb", "text": "\u53cc\u5b50\u5854\u7684\u91cd\u5efa\u65f6\u95f4\u8f74\uff0c\u6bcf\u4e00\u79d2\u90fd\u662f\u91cd\u5efa\u7684\u6bcf\u4e00\u523b\uff0c\u89c6\u9891\u5e94\u8be5\u5728\u53cc\u5b50\u5854\u5b8c\u6210\u540e\u5448\u73b0\u51fa1973\u5e74\u7684\u5916\u89c2\u3002"} +{"id": "2003798", "video_name": "f9c919e4-038a-5399-8638-2da1ed0c8ff6", "text": "\u4e00\u5f20\u7531\u5149\u7ea4\u7ebf\u7ec4\u6210\u7684\u8718\u86db\u7f51\uff0c\u95ea\u70c1\u7740\u4f20\u8f93\u6570\u636e\u7684\u5149\u8292\u3002"} +{"id": "1003349", "video_name": "3db0e6b9-f8da-58b5-ba1e-195322041d55", "text": "\u7a7f\u7740\u98d8\u9038\u7ea2\u88d9\u7684\u5973\u4eba\u5728\u5ba4\u5185\u79d1\u5e7b\u73af\u5883\u4e2d\u8df3\u8dc3\uff0c\u5168\u5c40\u5149\u7167\u3002"} +{"id": "2004995", "video_name": "cc8feee8-b6a9-557e-a4ac-60676a29af15", "text": "\u72ee\u5b50\u662f\u9876\u7ea7\u63a0\u98df\u8005\uff0c\u5177\u6709\u590d\u6742\u7684\u793e\u4f1a\u7ed3\u6784\u3002\u5b83\u4eec\u751f\u6d3b\u5728\u7531\u4e00\u53ea\u652f\u914d\u96c4\u72ee\u9886\u5bfc\u7684\u7fa4\u4f53\u4e2d\u3002"} +{"id": "2007350", "video_name": "f40d97bb-6699-50d9-9599-3af3439ef68f", "text": "\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5df4\u65af\u594e\u7279\u7684\u5177\u6709\u6f02\u6d6e\u7a7a\u95f4\u548c\u5916\u661f\u4eba\u7684\u53cd\u4e4c\u6258\u90a6\u4e16\u754c\u3002"} +{"id": "8001014", "video_name": "58150d39-ee6d-51fc-91c3-42e4ffc78e1c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4ed9\u5973\u5728\u8df3\u821e\uff0c\u5929\u4f7f\u4eec\u56f4\u6210\u4e00\u4e2a\u5706\u5708\u5750\u7740\uff0c\u9752\u86d9\u5439\u7740\u957f\u7b1b\uff0c\u8682\u86b1"} +{"id": "0003373", "video_name": "3c72302e-1c3b-5226-92ae-cb11406156ad", "text": "\u79fb\u52a8\u7f29\u653e\uff0c\u5524\u9192\u706b\u7130\u3002"} +{"id": "7004394", "video_name": "f55935c9-f492-5848-af1a-11acf3b8028e", "text": "\u8001\u4eba\u5728\u68ee\u6797\u91cc\u53d8\u5e74\u8f7b\u4e86\u3002"} +{"id": "3003805", "video_name": "580bd135-0d7d-5717-afc9-ade01e6dcfbd", "text": "\u4e00\u534a\u9ed1\u6697\u7684\u571f\u5730\uff0c\u4e00\u534a\u9ed1\u6697\u7684\u7a7a\u95f4\uff0c\u5145\u6ee1\u4e86\u975e\u5e38\u5c0f\u7684\u767d\u8272\u661f\u661f\u3002"} +{"id": "2005799", "video_name": "b07d07b2-e860-56d9-a910-69032fa2dfd5", "text": "\u7535\u5f71\u300a\u9edb\u6bd4\u505a\u8fbe\u62c9\u65af\u300b\u4e2d\u7684\u4e00\u4e2a\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3006002", "video_name": "41f53df7-e1ba-51e9-ae20-30d82f6f9ab8", "text": "\u6f14\u5458\u201cCommon\u201d\u5750\u5728\u684c\u5b50\u65c1\u5403Subway\u8089\u4e38\u4e09\u660e\u6cbb\uff0c\u8138\u4e0a\u6709\u9171\u6c41\u7684\u7167\u7247\u903c\u771f\u3002"} +{"id": "2006383", "video_name": "7bf7a336-5463-5c62-b976-b89a05833982", "text": "\u9633\u5149\u5728\u60ac\u6302\u5728\u6c60\u5858\u4e0a\u7684\u4e00\u68f5\u6811\u7684\u79cb\u53f6\u5e95\u90e8\u8df3\u52a8\uff0c\u53cd\u5c04\u7740\u9633\u5149\u3002"} +{"id": "7003632", "video_name": "2d507d98-ccde-54e9-90ac-a90932113ea7", "text": "\u91d1\u6b63\u6069\u4e0e\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u63e1\u624b\u3002"} +{"id": "6003488", "video_name": "f05d2705-9eb4-5eb2-bdeb-7e2b2bf9d5cb", "text": "\u53e4\u5e0c\u814a\u7684\u4ed9\u5973\u5728\u5c0f\u6eaa\u8fb9\u8df3\u821e\u3002\u53f2\u8bd7\u822c\u7684\u7535\u5f71\u6c1b\u56f4\u3002\u9ad8\u54c1\u8d28\u3002\u590d\u6742\u7684\u7ec6\u8282\u3002"} +{"id": "1004737", "video_name": "57c6541b-9cdc-5983-98cc-7efd25c1d31b", "text": "\u4e00\u4f4d\u5c0f\u91d1\u53d1\u5973\u5b69\u5e2e\u52a9\u4e00\u4f4d\u8001\u5987\u4eba\u63d0\u7bee\u5b50\u3002"} +{"id": "0006069", "video_name": "26147cc4-9fbb-588c-ae11-de3d31bca4e5", "text": "\u5728\u4e2d\u5fc3\u5904\u5236\u4f5c\u4e00\u4e2a\u5e26\u6709INF\u5b57\u6bcd\u7684\u6807\u5fd7\u3002"} +{"id": "1006131", "video_name": "70563649-cca3-57ca-8138-9a13fa2e901c", "text": "\u5728\u7eff\u5c4f\u524d\uff0c\u8df3\u821e\u7684\u6728\u5076\u5728\u7535\u5b50\u97f3\u4e50\u7684\u4f34\u594f\u4e0b\uff0c\u975e\u5e38\u903c\u771f\u3002\n\nSource sentence: The new restaurant offers a unique dining experience with its fusion of traditional"} +{"id": "3005637", "video_name": "cae34b3e-4986-565e-a771-dfd4ba63d5ef", "text": "\u6751\u6c11\u4eec\u9010\u6e10\u9002\u5e94\u4e86\u4ed6\u4eec\u7684\u6539\u53d8\u611f\u77e5\uff0c\u53d1\u73b0\u4e86\u60c5\u611f\u8fc7\u5c71\u8f66\u3002"} +{"id": "1004732", "video_name": "57bd753e-6894-597d-a58f-44d18792a3c5", "text": "\u96e8\u8d8a\u6765\u8d8a\u5927\uff0c\u5f62\u6210\u4e86\u731b\u70c8\u7684\u503e\u76c6\u5927\u96e8\uff0c\u731b\u70c8\u5730\u72e0\u6253\u5728\u5ae9\u82bd\u4e0a\u3002\u98ce"} +{"id": "0006657", "video_name": "3087fc91-b60b-5ec1-ac1c-d98ab0af5324", "text": "\u9ed1\u6697\u8857\u9053\u7684\u4e00\u89d2\u80cc\u666f"} +{"id": "2004097", "video_name": "a0cf80ad-d1fd-5a81-8c25-69c35b71c06e", "text": "\u4e00\u8258\u8d27\u8239\u548c\u4e00\u8258\u8c6a\u534e\u8239\u5728\u6d77\u4e0a\u76f8\u9047\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004628", "video_name": "7dbbfa86-5130-5c8a-b3e4-59eff5854ef6", "text": "\u4e00\u4e2a\u7f8e\u597d\u7684\u65e9\u6668\uff0c\u4e24\u53ea\u8682\u8681Ben\u548cSen\u4ece\u5b83\u4eec\u7684\u5bb6\u4e2d\u51fa\u6765\uff0c\u5174\u594b\u800c\u51c6\u5907\u597d\u73a9\u800d\u3002"} +{"id": "3006552", "video_name": "3c93fdac-7ab7-51b2-b922-fa553b3ead48", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65e9\u4e0a\u548c\u5979\u7684\u670b\u53cb\u804a\u5929\u3002"} +{"id": "8001574", "video_name": "15e8341a-8fe4-52ca-ab0e-e46083335ad9", "text": "\u4e00\u4e2a\u5f3a\u6709\u529b\u7684\u753b\u9762\uff0c\u5c55\u73b0\u51fa\u6751\u6c11\u4eec\u56e2\u7ed3\u4e00\u5fc3\uff0c\u79ef\u6781\u52aa\u529b\u514b\u670d\u5371\u673a\u3002"} +{"id": "4002534", "video_name": "abf7f39d-c9b1-5c1e-8c2d-5d2218529291", "text": "\u8bf7\u6309\u7167\u56fe\u7247\u63cf\u8ff0\u521b\u5efa\u52a8\u753b\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001767", "video_name": "f15e9838-ffea-5be7-8c65-9b96a9678e03", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u5b50\u7684\u7537\u4eba\u7ad9\u5728\u6746\u4e0a\u3002"} +{"id": "1006369", "video_name": "749b25a1-01de-58f9-b5bd-2a09e18e1271", "text": "\u732b\u6f2b\u4e0d\u7ecf\u5fc3\u5730\u8737\u5728\u9644\u8fd1\u7684\u684c\u5b50\u4e0a\u3002"} +{"id": "2007027", "video_name": "77a0dc02-f283-51e7-b408-a5257ea0ace1", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u63a2\u7d22\u6765\u81ea\u5168\u7403\u5386\u53f2\u5efa\u7b51\u548c\u5730\u6807\u7684\u5b8f\u4f1f\u58ee\u4e3d\u3002"} +{"id": "2006734", "video_name": "8e72510c-b481-5dfd-a193-26e2957f0d8d", "text": "\u5973\u5b69\u7684\u8138\u56db\u5904\u5f20\u671b\uff0c\u706f\u5149\u95ea\u8000\u3002"} +{"id": "8002925", "video_name": "08f929b8-5d8e-5681-a5d8-40c82bfb4ec7", "text": "\u4e00\u4e2a\u52a8\u753b\u7684\u68ee\u6797\u80cc\u666f\uff0c\u9762\u5305\u5728\u70e4\u3002"} +{"id": "1004079", "video_name": "4b95c59c-12c7-57a8-b0dc-ddb2aed8a6c0", "text": "\u4e00\u7fa4\u670b\u53cb\u5728\u6d77\u6ee9\u9152\u5427\u805a\u4f1a\u3002\u8fdc\u5904\uff0c\u592a\u9633\u6b63\u5728\u843d\u5c71\uff0c\u4e00\u67b6\u98de\u673a\u7a7f\u8fc7\u5929\u7a7a\u3002"} +{"id": "7003387", "video_name": "70b50a75-9b0f-50e4-9edb-b74342fbb37c", "text": "\u6211\u60f3\u8981\u9ed1\u6697\u68ee\u6797\u4e2d\u9ad8\u5927\u5a01\u6b66\u7684\u5c71\u7f8a\u4eba\u3002"} +{"id": "1005000", "video_name": "5c7023d3-d0aa-518b-a50f-cfc5a38b0a1e", "text": "\u4e00\u5bb6\u4eba\u56f4\u5750\u5728\u8282\u65e5\u665a\u9910\u684c\u65c1\u3002"} +{"id": "0005511", "video_name": "1c103343-e8c5-5147-bd90-b8a90f085408", "text": "\u9ad8\u6982\u5ff5\u827a\u672f\uff1a\u4e00\u4e2a\u7531\u7b49\u79bb\u5b50\u4f53\u5236\u6210\u7684\u7acb\u65b9\u4f53\u5728\u4e00\u4e2a\u62cd\u6444\u7cbe\u7f8e\u7684\u6df7\u51dd\u571f\u4eba\u7269\u4e0a\u65b9\u95ea\u70c1\uff0c\u5c06\u660e"} +{"id": "6003068", "video_name": "7779105a-c2c1-5332-86c4-aa31578e0d49", "text": "\u666e\u901a\u7684\u4e1c\u897f\u53ef\u4ee5\u8f6c\u53d8\u6210\u771f\u6b63\u975e\u51e1\u7684\u4e1c\u897f\u3002"} +{"id": "2004666", "video_name": "bdc980c5-407b-57ad-834f-ca20ba2197b9", "text": "\u9a6c\u514b\u897f\u9a6c\u62ff\u7740\u4ed6\u7684\u5251\u548c\u76fe\uff0c\u4e00\u6b21\u53c8\u4e00\u6b21\u5730\u51fb\u8d25\u5bf9\u624b\u3002"} +{"id": "7004008", "video_name": "ed3fbc21-2f3a-5864-bd3e-98da8c707edf", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u4ee3\u91d1\u5238\u5361\uff0c\u6c14\u6c1b\u5b9c\u4eba\uff0c\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "5001835", "video_name": "36359b58-c9d0-5bd6-9fe3-fda82e86d741", "text": "\u79d1\u5b66\u5bb6\u548c\u7814\u7a76\u4eba\u5458\u6b63\u5728\u63a2\u5bfb\u6c38\u751f\uff0c\u7535\u5f71\u5316\u7684\uff0c\u7535\u5f71\u955c\u5934\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0cHD\uff0c\u9ad8\u8d28\u91cf\uff0c8K\u3002"} +{"id": "8003426", "video_name": "7db86929-60e3-5877-9961-e0d16f8a47b2", "text": "\u5c0f\u7011\u5e03\u548c\u98de\u7fd4\u7684\u9e1f4K\u3002"} +{"id": "2003678", "video_name": "39fe4aa6-fce3-5d1e-b56c-37b51da8dfde", "text": "\u8f66\u8f86\u524d\u65b9\u95ea\u70c1\u7740LED\u706f\u5149\u884c\u9a76\u3002"} +{"id": "2007888", "video_name": "f2219616-6653-5ff7-86e9-a00d7a33fe61", "text": "\u4e00\u4e2a\u9ed1\u76d2\u5b50\uff0c\u9ed1\u8272\u76d6\u5b50\uff0c\u7d2b\u8272\u5361\u901a\u732b\u6234\u7740\u773c\u955c\u3002"} +{"id": "6002106", "video_name": "b88a0ced-2505-5c1c-9cfa-c142eb660f9a", "text": "\u7b2c\u4e00\u4eba\u79f0\uff0c\u4e00\u4f4d\u5973\u4eba\u5728\u68ee\u6797\u4e2d\u9192\u6765\uff0c\u9633\u5149\u7167\u5728\u5979\u7684\u624b\u4e0a\u3002"} +{"id": "2005609", "video_name": "03ad3747-7931-5463-85fe-c1261b67712d", "text": "\u4e00\u53ea\u53d1\u7740\u7d2b\u8272\u5149\u8292\u3001\u773c\u775b\u4e5f\u662f\u7d2b\u8272\u7684\u751f\u7269\u4ece\u9ed1\u6697\u4e2d\u9760\u8fd1\u3002"} +{"id": "0006065", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "\u5eb7\u8036\u00b7\u97e6\u65af\u7279\u5728\u706b\u8f66\u7ad9\u5403\u7740\u51b0\u68d2\u3002"} +{"id": "8001442", "video_name": "a1413933-7576-5ec2-8ce5-08febeea3c3c", "text": "\u5728\u4e00\u7247\u9ed1\u6697\u7684\u677e\u6797\u4e2d\u6709\u4e00\u5ea7\u5c0f\u6865\u3002"} +{"id": "7003071", "video_name": "abd586a4-14a0-5a62-8e33-dc9c8e09ac35", "text": "\u98ce\u683c\uff1a\u795e\u79d8\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002\n\n\u59ff\u52bf\uff1a\u51a5\u60f3\uff0c\u4e00\u53ea\u773c\u775b\u7741\u5f00\u3002\n\n\u573a\u666f\uff1a\u5b87\u5b99\u66fc\u9640\u7f57"} +{"id": "1006764", "video_name": "7bcb9535-4d22-5270-a2e9-debebbe949f8", "text": "\u60f3\u8c61\u4e00\u4e2a\u4eba\u7ad9\u5728\u5b57\u9762\u4e0a\u7684\u5341\u5b57\u8def\u53e3\uff0c\u524d\u9762\u6709\u4e24\u6761\u5206\u53c9\u7684\u9053\u8def\u5ef6\u4f38\u51fa\u53bb\u3002"} +{"id": "4003335", "video_name": "87cbe181-8a10-5c61-91a0-43a0fa6dbf6b", "text": "\u80cc\u666f\u6c1b\u56f4\uff1a\u672a\u6765\u57ce\u5e02\u7684\u58f0\u97f3\uff0c\u98de\u884c\u8231\u7684\u4f4e\u55e1\u58f0\uff0c\u8fdc\u5904\u4eba\u4eec\u7684\u558b\u558b\u4e0d\u4f11\u3002"} +{"id": "4004054", "video_name": "bd198bc5-f019-5f54-afb8-2d3e0aee8cd2", "text": "\u4e00\u4e2a\u7a7f\u7740\u55b7\u6c14\u80cc\u5305\u7684\u7537\u4eba\u98de\u8d8a\u4f26\u6566\u7684\u89c6\u9891\u3002"} +{"id": "3003114", "video_name": "dd82497c-b1b3-5a4a-aaec-d7192f38463f", "text": "\u5728\u4e00\u4e2a\u590d\u53e4\u7684\u58a8\u897f\u54e5\u5c0f\u9547\uff0c\u5341\u4e2a\u5b69\u5b50\u73a9\u5f39\u73e0\u8fc7\u5f97\u5f88\u5f00\u5fc3\u3002\u8bf7\u7528\u5361\u901a\u98ce\u683c\u7ed8\u523635\u6beb\u7c7316\uff1a"} +{"id": "1004871", "video_name": "59f7bc82-811a-58a0-a48c-006669da77e6", "text": "Chinese translation: \u4e00\u8f86\u5766\u514b\u6b63\u5728\u7a7f\u8d8a\u7530\u91ce\u3002"} +{"id": "5001101", "video_name": "d590b4e9-092d-5659-8a4f-8bec7f34efe3", "text": "\u9b3c\u9b42\u4ece\u4e00\u4e2a\u7ef4\u5ea6\u95e8\u53e3\u6d8c\u5165\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u3002"} +{"id": "5001542", "video_name": "b090754e-70d3-5440-b3b7-c834ad450463", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u6bd4\u7279\u5e01\u6807\u5fd7\u5728\u672a\u6765\u4e3b\u4e49\u7684\u5929\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u4e91\u6735\u98d8\u8fc7\uff0c\u592a\u9633\u5728\u8fdc\u5904\u7167\u8000\u7740\u3002"} +{"id": "2006400", "video_name": "dcf4a421-d9d8-59fa-9d2c-8397581e152d", "text": "\u5b66\u751f\u62ff\u7740\u4e00\u7f50\u6c34\u3002"} +{"id": "6003277", "video_name": "40c2aab9-3ec1-5dd2-aa1b-918db1280a2c", "text": "\u5b9e\u9a8c\u5ba4\u7206\u70b8\u7684\u7535\u5f71\u753b\u9762\u975e\u5e38\u58ee\u89c2\u3002"} +{"id": "7004438", "video_name": "91c1e4d4-8c45-5cde-83d3-d5e59dda9621", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9677\u5165\u91d1\u94b1\u9677\u9631\u3002"} +{"id": "8003100", "video_name": "92f95fb6-8225-5101-8bc2-2eb315576d44", "text": "\u4e00\u4f4d\u7a7f\u7740\u53e4\u7f57\u9a6c\u670d\u88c5\u3001\u62e5\u6709\u957f\u5377\u53d1\u7684\u5973\u6027\u5728\u6d77\u8fb9\u6f2b\u6b65\u3002"} +{"id": "3005836", "video_name": "fdb1ca70-748f-5842-936f-fbdfdfe06089", "text": "\u4e00\u53ea\u6ce2\u65af\u732b\u5728\u6c99\u53d1\u4e0a\u73a9\u8f66\u73a9\u5177\u3002"} +{"id": "6003839", "video_name": "a78de378-dbd0-5ead-b81b-a45fe2cfaf7a", "text": "\u4e4c\u5c14\u5e0c\u5bb6\u65cf\u7684\u8870\u4ea1"} +{"id": "8002843", "video_name": "2a9426cc-9e78-50b3-85e6-00f821a4b548", "text": "\u5929\u9e45\u5728\u84dd\u6708\u5149\u7167\u8000\u4e0b\uff0c\u5728\u6e56\u4e0a\u56f4\u7ed5\u4e00\u540d\u82ad\u857e\u821e\u5973\u98de\u821e\u3002"} +{"id": "2007353", "video_name": "581e38da-330d-50a2-ba21-5cf8cae99d56", "text": "1910\u5e74\u4ee3\u7684\u7535\u5f71\u590d\u53e4\u98ce\u683c\uff0c\u72fc\u5728\u6c99\u6f20\u4e2d\u8ffd\u730e\u72d0\u72f8\uff0c\u66b4\u98ce\u96e8\u548c\u9ed1\u6697\u7684\u4e91\u5f69"} +{"id": "7003670", "video_name": "50c91baa-a858-5d62-8c72-95f9e840b5d3", "text": "\u5728\u539f\u59cb\u5730\u56fe\u4e0a\u83b7\u5f97\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u80dc\u5229\u738b\u51a0\u3002"} +{"id": "0004018", "video_name": "019bdfbb-b34b-5458-a4d5-f7da89d0b989", "text": "\u65cb\u8f6c\u7684\u5934\u53d1\uff0c\u9759\u6001\u7684\u753b\u9762\uff0c\u5fae\u7b11\u7684\u8138\u5bb9\u3002"} +{"id": "7004226", "video_name": "bf544f29-6f74-5663-acfb-d3cce2c295b4", "text": "\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u591c\u665a\u7684\u95ea\u5149\u706f\u4e0b\uff0c\u4ece\u4e0b\u9762\u5e7f\u89d2\u62cd\u6444\u7279\u5927\u578b\u7684\u7279\u62c9\u7ef4\u65af\u00b7\u65af\u79d1\u7279\u3002"} +{"id": "8002523", "video_name": "75f19d63-38f0-5fa2-8506-247955fba4d1", "text": "\u5168\u666f\u626b\u89c6\uff0c\u8bed\u97f3\u72b6\u6001\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004787", "video_name": "b7d6414a-42ae-5987-9dd1-2f41efd30c1e", "text": "\u5973\u6027\u7684\u6cf0\u7c73\u5c14\u8bed\u58f0\u97f3\uff1a\u201c\u55e8\uff0c\u5988\u5988\uff0c\u8bb0\u4e0b\u6211\u7684\u65b0\u7535\u8bdd\u53f7\u7801\u3002\u201d"} +{"id": "4003890", "video_name": "f161e547-7681-5784-acdb-954c3926de77", "text": "\u5e7b\u5f71\u5145\u65a5\u5728\u4f60\u5468\u56f4\u7684\u5929\u7a7a\u4e2d\u3002"} +{"id": "6004692", "video_name": "bd725ebe-c6a4-5938-ac36-c2158eb44fb8", "text": "\u4e9a\u7f8e\u5c3c\u4e9a\u8bd7\u4eba\u5e15\u9c81\u5c14\u00b7\u585e\u74e6\u514b\u8096\u50cf\u9ad8\u6e05\u5206\u8fa8\u7387"} +{"id": "3005400", "video_name": "502fd490-8737-514d-af31-9b972549c8e7", "text": "\u521b\u9020\u4e00\u4e2a\u62e5\u6709\u77ac\u79fb\u80fd\u529b\u7684\u52a8\u6f2b\u89d2\u8272\uff0c\u4ed6\u5728\u4e00\u4e2a\u795e\u5947\u7684\u4e16\u754c\u4e0a\u5192\u9669\u5bfb\u627e\u5931\u8e2a\u7684\u5144\u5f1f\u3002"} +{"id": "0006598", "video_name": "2f52ba42-6fe4-5566-b00a-bfb32b554157", "text": "\u5b69\u5b50\u7a7f\u7740\u7a7a\u59d0\u670d\u88c5\uff0c\u5728\u592a\u7a7a\u548c\u5b87\u5b99\u4e2d\u98de\u884c\u3002"} +{"id": "2003727", "video_name": "8b0affbb-771e-58d9-a22c-a13cfd6e844c", "text": "\u4f0a\u5361\u5c14\u8fea\u4e3a\u81ea\u5df1\u7684\u5165\u7403\u611f\u5230\u975e\u5e38\u9ad8\u5174\uff0c\u8fd9\u662f\u73b0\u5b9e\u7684\u3002"} +{"id": "7002922", "video_name": "25473f34-b503-5ebd-8216-0bdbd644f043", "text": "\u9e1f\u5de2\u91cc\u6709\u86cb\u5728\u6811\u4e0a\uff0c\u76f8\u673a\u65cb\u8f6c\u3002"} +{"id": "8001179", "video_name": "966a9021-71c6-5a2e-a886-ab2c886af7d9", "text": "\u4f7f\u6211\u9001\u4e0a\u53bb\u7684\u6708\u4eae\u6d3b\u8d77\u6765\u3002"} +{"id": "4004323", "video_name": "f803cfee-e1ea-5db5-b7d5-1c94d5deea07", "text": "\u5728\u5927\u96e8\u4e2d\u89c2\u8d4f\u8857\u9053\u666f\u8c61\u7684\u65cb\u8f6c\u89c6\u89d2\u3002"} +{"id": "1005640", "video_name": "67b5386c-d722-5db2-b4c8-4621d9d542d7", "text": "\u6234\u7740\u6df7\u5408\u73b0\u5b9e\u5934\u6234\u5f0f\u8bbe\u5907\u7684\u4eba\u6b63\u5728\u770b\u7740\u5916\u661f\u4eba\u5e76\u8df3\u8dc3\u3002"} +{"id": "6004238", "video_name": "abc2d9e5-0f61-55eb-8590-708d0701b49b", "text": "\u8bf7\u628a\u90a3\u4ef6Polo\u886b\u7a7f\u7ed9\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004879", "video_name": "5a2b5fb9-212e-5587-8939-efe6832d16e4", "text": "\u80cc\u666f\u6709\u7f8e\u9e97\u7684\u7570\u570b\u91d1\u5c6c\u82b1\u6735\uff0c\u8272\u5f69\u67d4\u548c\uff0c\u7c21\u55ae\u7f8e\u9e97\uff0c\u5973\u6027\u5316\uff0c\u9ed1\u6697\u80cc\u666f\u3002"} +{"id": "2005705", "video_name": "9c92b72a-df0d-58ff-97f4-41f37a4d6f44", "text": "\u5168\u606f\u6f14\u51fa\uff1a\u751f\u6210\u4e00\u4e2a\u97f3\u4e50\u6f14\u51fa\u7684\u63cf\u8ff0\uff0c\u5168\u606f\u89c6\u89c9\u4e0e\u8282\u594f\u540c\u6b65\uff0c\u5c55\u73b0\u672a\u6765\u4e3b\u4e49\u666f\u89c2\u548c\u52a8\u6001\u51e0\u4f55\u5f62\u72b6\u3002"} +{"id": "2007517", "video_name": "0086c802-5e52-5fda-9bcf-bcec6ba4b8cb", "text": "\u997c\u5e72\u602a\u517d\u4f5c\u4e3a\u661f\u7403\u5927\u6218\u7684\u8d3e\u74e6\u4eba\uff0c\u5728\u5854\u56fe\u56e0\u4e0a\u73a9\u5f04\u7740\u7206\u70b8\u7684\u6930\u5b50\uff0c\u52a8\u611f\u56db"} +{"id": "1005990", "video_name": "6e197ded-3fb9-59b6-90a3-ad0907bcd726", "text": "\u4e00\u7fa4\u5927\u5b66\u4f53\u80b2\u8ff7\u8df3\u8dc3\u7740\u6b22\u547c\uff0c\u5145\u6ee1\u70ed\u60c5\u548c\u5feb\u4e50\u3002"} +{"id": "3003682", "video_name": "f007bf8b-8f6d-539b-acb9-25da00c80f9d", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e24\u4e2a\u7537\u5b69\u6253\u677f\u7403\u3002"} +{"id": "8002778", "video_name": "3748a0ab-501d-5b71-96bf-7cc6b578216c", "text": "\u4e00\u5bb6\u5de5\u4e1a\u56ed\u533a\u524d\u53d1\u751f\u4e86\u4e00\u573a\u5927\u89c4\u6a21\u7684\u66b4\u4e71\u3002"} +{"id": "3003146", "video_name": "4c9687b5-9648-5a06-9ba4-dce6fa0de8ca", "text": "\u84dd\u8272\u6d77\u6d0b\u4e2d\u6709\u8367\u5149\u7684\u4e4c\u8d3c\uff0c\u6d77\u5e95\u5728\u9646\u5730\u4e0a\uff0c\u5468\u56f4\u6709\u73ca\u745a\u690d\u7269\u3002"} +{"id": "6003841", "video_name": "464e2b68-123e-5e7b-871b-e04d2c1aab4f", "text": "\u5b66\u751f\u5728\u6559\u5ba4\u91cc\u5bf9\u8001\u5e08\u8bf4\u4e86\u4e9b\u8bdd\u3002"} +{"id": "1005109", "video_name": "5e39ed14-de11-542c-b795-77484ec10242", "text": "\u4e00\u5927\u7fa4\u6765\u81ea\u4e0d\u540c\u65f6\u4ee3\u7684\u4eba\u5750\u5728\u540c\u4e00\u8f86\u8f66\u91cc\u3002"} +{"id": "0006796", "video_name": "3345b3e0-8c83-5729-a8ba-33a1d4e052b6", "text": "\u4e9a\u5386\u514b\u65af\u5148\u751f\u5728\u4ed6\u7684\u6742\u8d27\u5e97\u6536\u94f6\u53f0\u4e0a\u6d4f\u89c8\u7535\u8111\uff0c\u53d1\u73b0\u4e86TikMe\u5fe0\u8bda\u8ba1\u5212\u3002\u4ed6\u7684\u773c\u775b"} +{"id": "7004436", "video_name": "4b853bf8-432f-5a3f-8701-1a027d0fcd41", "text": "\u4e00\u4f4d\u4eba\u58eb\u8d62\u5f97\u8d8a\u91ce\u6469\u6258\u8f66\u9526\u6807\u8d5b\uff0c\u7167\u7247\u903c\u771f\u3002"} +{"id": "2007960", "video_name": "334d6d3f-8ef4-5eba-b08b-abbc68bae615", "text": "\u5899\u4e0a\u6302\u7740\u96ea\u4eba\u7537\u6027\u548c\u96ea\u4eba\u5973\u6027\u7684\u8096\u50cf\u753b\u3002"} +{"id": "7002924", "video_name": "2fe3c2a6-68d6-5259-a2d4-2ff6640178c7", "text": "\u7f8e\u4e3d\u7684\u5973\u6027\u7a7f\u884c\u5728\u661f\u7a7a\u4e4b\u95f4\uff0c\u5728\u80cc\u666f\u4e2d\uff0c\u4e91\u6735\u98d8\u8361\uff0c\u660e\u4eae\u7684\u70df\u96fe\u4e0a\u5347\uff0c\u76d4\u7532\u95ea\u8000"} +{"id": "6003151", "video_name": "6333f076-4f12-5405-b18d-86258b9ea061", "text": "\u4e24\u53ea\u624b\u4f38\u51fa\u4e92\u76f8\u63e1\u4f4f\u3002"} +{"id": "7002024", "video_name": "edcd3286-2587-582f-8d9a-23449dc0f708", "text": "\u592a\u7a7a\u6c7d\u8f66\u5728\u661f\u7403\u548c\u884c\u661f\u5468\u56f4\u98de\u884c\uff0c\u5e26\u6709\u6da1\u8f6e\u6807\u8bb0\u3002"} +{"id": "2005817", "video_name": "ef344d6f-00f0-57c2-ad16-622555731faa", "text": "\u54c8\u5229\u6ce2\u7279\u98de\u8d8a\u6bd4\u5229\u65f6\u539f\u5b50\u7403\u7684\u89c6\u9891\u3002"} +{"id": "2005672", "video_name": "77f45811-4710-5f65-ba4d-2cd18f9e3639", "text": "\u53f2\u745e\u514b\u731b\u70c8\u5730\u53d8\u6210\u72fc\u4eba\uff0c\u5bf9\u7740\u6708\u4eae\u568e\u53eb\uff0c\u4f7f\u7528\u6444\u50cf\u673a\u5e73\u79fb\u6548\u679c\u3002"} +{"id": "5001257", "video_name": "603d5eff-ac97-510d-84ab-063ac17268c5", "text": "\u4e00\u4f4d\u9976\u820c\u6b4c\u624b\u5728\u8857\u4e0a\u8d70\u7740\uff0c\u6643\u52a8\u7740\u4ed6\u7684\u624b\u3002"} +{"id": "0004268", "video_name": "06280e9b-141f-5363-a022-93bbcdf8f7d3", "text": "17\u4e16\u7eaa\u82f1\u56fd\u58eb\u5175\u902e\u6355\u975e\u6d32\u4eba\u5e76\u4f7f\u5176\u5c48\u670d\u7684\u753b\u9762\u5c55\u793a\u51fa\u6765\uff0c\u4ed6\u4eec\u9762\u90e8\u8868\u60c5\u548c\u59ff\u52bf\u8868\u8fbe\u51fa\u75db"} +{"id": "6002085", "video_name": "29ccf7a9-c259-5c16-a9fb-ebb14418b590", "text": "\u98de\u673a\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "7002910", "video_name": "84ebd985-fd2c-5211-b17b-23e055f9d01d", "text": "\u6cb3\u6d41\u6f02\u6d6e\u5728\u4e24\u5e62\u7c89\u8272\u623f\u5b50\u65c1\u8fb9\u3002"} +{"id": "2005985", "video_name": "317c535d-56dc-5733-b9f3-14ca56509c6b", "text": "\u533b\u751f\u6b63\u5728\u4f7f\u7528\u4e0b\u4e00\u4ee3\u624b\u672f\u5bfc\u822a\u7cfb\u7edf\u8fdb\u884c\u624b\u672f\u3002"} +{"id": "8002340", "video_name": "845faddd-acdc-5b00-a849-276a8b3a92a8", "text": "\u4e0d\u8981\u56e0\u4e3a\u6628\u5929\u7684\u4e0d\u597d\u800c\u6bc1\u4e86\u4eca\u5929\u7684\u597d\u5fc3\u60c5\u3002"} +{"id": "2003358", "video_name": "77a4d50e-8cfc-5a02-94da-d2c0dd9fb21d", "text": "\u751f\u6210\u4e00\u4e2a\u7a7f\u7740\u94c1\u7532\u7684\u94a2\u94c1\u4fa0\u89c6\u9891\u3002"} +{"id": "0006311", "video_name": "2a7ef9bd-cfe2-507a-8973-5aba2d0ef6bb", "text": "\uff0c\u5927\u5bb6\u597d\uff0c\u6211\u662fXXX\u3002\n\nSource sentence: Can you please send me the document by email?"} +{"id": "2005179", "video_name": "bf990b62-4212-5a85-8a87-ce2c7436ca73", "text": "\u6447\u6eda\u97f3\u4e50\u4f1a\u7684\u6c1b\u56f4\uff0c\u5145\u6ee1\u80fd\u91cf\u7684\u6c14\u6c1b\uff0c\u706f\u5149\u7684\u6e38\u620f\uff0c\u89c2\u4f17\u7684\u53cd\u5e94\u3002"} +{"id": "5001059", "video_name": "4aa2bc3b-6c90-58c4-aa1f-a5df04c9275d", "text": "\u4e0e\u6b64\u540c\u65f6\uff0c\u4e4c\u9f9f\u975e\u5e38\u51b3\u5fc3\u548c\u4e13\u6ce8\u4e8e\u6bd4\u8d5b\uff0c\u6b63\u5728\u7f13\u6162\u5730\u63a5\u8fd1\u7ec8\u70b9\u7ebf\u3002"} +{"id": "7004386", "video_name": "d224dbee-906e-5586-a375-fac1b0b359b8", "text": "\u6bcd\u4eb2\u6b63\u5728\u53a8\u623f\u51c6\u5907\u665a\u9910\u7684\u684c\u5b50\u3002"} +{"id": "1003606", "video_name": "4276ff2f-a0fc-5aa3-8d51-e55c44ff19e0", "text": "\u4e24\u4e2a\u5973\u5b69\uff0c\u4e24\u4e2a\u7537\u5b69\u5750\u5728\u4e00\u8d77\uff0c\u4ece\u4ed6\u4eec\u7684\u8138\u90e8\u8868\u60c5\u53ef\u4ee5\u611f\u89c9\u5230\u5b64\u72ec\u3002"} +{"id": "2006542", "video_name": "410aea0f-f84b-51cb-9b81-4e7855342dd5", "text": "\u6d77\u6ee9\u4e0a\u72d7\u8eab\u4e0a\u7684\u5e8a\u5355\u3002"} +{"id": "4004660", "video_name": "049b35dc-5944-54a4-9ec4-87944fd60761", "text": "\u7ea6\u7ff0\u00b7\u666e\u8d56\u65af\u662f\u6e38\u620f\u300a\u4f7f\u547d\u53ec\u5524\uff1a\u73b0\u4ee3\u6218\u4e89\u300b\u4e2d\u9ed1\u5ba2\u95e8\u7684\u4eba\u3002"} +{"id": "6003989", "video_name": "b6482657-0ad0-55ad-8d0e-091f6de62d2d", "text": "\u5c55\u793a\u90a3\u5ea7\u8c6a\u5b85\uff0c\u7a97\u53e3\u6709\u4e00\u4e2a\u6a21\u7cca\u7684\u8eab\u5f71\u6ce8\u89c6\u7740\u3002"} +{"id": "8003332", "video_name": "89704d69-c9ff-550e-a704-a1ac6b584eb0", "text": "\u8ba9\u8fd9\u5f20\u56fe\u7247\u7a0d\u5fae\u52a8\u4e00\u4e0b\uff0c\u4f7f\u5176\u66f4\u52a0\u751f\u52a8\uff0c\u4f46\u4e0d\u8981\u592a\u8fc7\u3002"} +{"id": "2003045", "video_name": "6722bcd5-9b87-51b4-b62d-a71c797407b6", "text": "\u4fa7\u58c1\u5e7f\u544a\uff0c16k\u8d28\u91cf\uff0c\u963f\u62c9\u6728\u56fe\u5e02\uff0c\u5927\u516c\u53f8\uff0c\u5546\u4e1a\u5185\u5bb9\uff0c35mm"} +{"id": "0004660", "video_name": "0cce55c1-7cff-53f2-8b4f-30b67754262d", "text": "\u81ea\u7531\u5973\u795e\u50cf \u9644\u4ef6\uff1a1"} +{"id": "4004070", "video_name": "344df17a-5ede-5c59-912e-6253a00f291c", "text": "\u82f1\u56fd\u767d\u4eba\uff0c\u77ed\u53d1\u65e0\u80e1\u987b\uff0c\u7a7f\u7740\u5939\u514b\u548c\u886c\u886b\uff0c\u547c\u5438\u5e73\u7a33\uff0c\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "0003472", "video_name": "3e3aa2ee-5372-5f65-8d43-cfef801c45c3", "text": "4K \u7684\u8be6\u7ec6\u52a8\u753b\uff0c\u4e00\u8258\u5c0f\u8239\u5728\u5927\u6d77\u6d6a\u4e2d\u6f02\u6d6e\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "7002016", "video_name": "ff3940f8-5167-5f70-8579-1982e88b56c2", "text": "\u5728\u5916\u661f\u80cc\u666f\u4e0b\u7684\u7f8e\u4e3d\u623f\u5c4b\uff0c\u5929\u7a7a\u6674\u6717\uff0c\u53ef\u4ee5\u770b\u5230\u591a\u4e2a\u536b\u661f\u5728\u5927\u6c14\u4e2d\u3002"} +{"id": "1006172", "video_name": "70f56da7-1c0a-51cd-9ea6-cab9469e0770", "text": "\u7b2c\u4e00\u6b21\u7537\u5b69\u548c\u5973\u5b69\u5728\u516c\u5171\u6c7d\u8f66\u4e0a\u604b\u7231\uff0c\u5ac9\u5992\u53e6\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "3006866", "video_name": "6db7ac52-9f21-5723-98f6-07b02e3107f1", "text": "\u5e7f\u9614\u6c99\u6f20\u666f\u89c2\u7684\u5168\u666f\u62cd\u6444\uff0c\u5f53\u592a\u9633\u5728\u6c99\u4e18\u4e0b\u964d\u65f6\uff0c\u6295\u5c04\u51fa\u957f\u957f\u7684\u8d77\u4f0f\u9634\u5f71\uff0c\u521b\u9020\u51fa"} +{"id": "4002829", "video_name": "4ed4301b-f539-5bd1-8033-d8f3e640960c", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u8d2b\u6c11\u7a9f\u91cc\u4e00\u8d77\u73a9\u800d\u201c\u9ad8\u9ad8\u7403\u201d\uff0c\u4ee5\u624b\u7ed8\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "8001170", "video_name": "2dbbf087-d4c9-58cb-8e46-84df84744bb6", "text": "\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u548c\u65cb\u8f6c\u7684\u706f\u5149\u63cf\u7ed8\u4e86\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u666f\u89c2\uff0c\u6311\u6218\u4e86\u7269\u7406\u5b9a\u5f8b\u3002"} +{"id": "2004323", "video_name": "7b509317-b102-58c3-b0ed-c553b419cc8a", "text": "\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u9ed1\u8336\u676f\uff0c\u91cc\u9762\u5192\u7740\u8336\u70df\u548c\u8336\u53f6\uff0c\u80cc\u666f\u662f\u963f\u8428\u59c6\u8336\u548c\u675c\u963f\u5c14\u65af"} +{"id": "3006558", "video_name": "7b39e408-07fa-5039-a1f0-88eff853b402", "text": "\u821e\u53f0\u70df\u706b\u5728\u4e50\u961f\u6f14\u594f\u65f6\u5728\u821e\u53f0\u8fb9\u7f18\u7206\u70b8\u3002"} +{"id": "0003031", "video_name": "35e13afc-83b4-5a7a-8f70-fff2f72544e9", "text": "\u53cb\u4eba4\u88ab\u95ea\u70c1\u7684\u706f\u5149\u6240\u5305\u56f4\uff0c\u903c\u771f\u5730\u62c9\u8fd1\u955c\u5934\uff0c\u4ed6\u4eec\u9ad8\u558a\u7740\u8981\u56e2\u7ed3\u5728\u4e00\u8d77\u3002\u5373\u4f7f\u5728\u6697\u5f71"} +{"id": "3004759", "video_name": "f145d689-6665-5905-94df-0668107d1ffb", "text": "\u6709\u4e0d\u540c\u79cd\u65cf\u7684\u5973\u6027\u7a7f\u7740\u7c89\u8272\u886c\u886b\u7684\u771f\u5b9e\u7fa4\u4f53\u5782\u76f4\u89c6\u9891\u3002"} +{"id": "3003092", "video_name": "8d8a5311-188b-530b-9b75-b0daaff9df5a", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5954\u8dd1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003098", "video_name": "a4be547a-a212-5a80-b7e4-af58b9d62cf6", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u602a\u517d\u5229\u7528\u96f7\u66b4\u7684\u80fd\u91cf\u3002\u5b83\u8eab\u4e0a\u6709\u7206\u88c2\u7684\u7535\u6c14\u89e6\u624b\uff0c\u9ed1\u6697\u7684\u4e91\u56e2\u56f4\u7ed5\u7740"} +{"id": "1003095", "video_name": "38f178b6-7b6e-5f2e-9982-a5c4bf12f6bf", "text": "\u6c34\u4e2d\u5347\u8d77\u7684\u706f\u5149"} +{"id": "8003878", "video_name": "28a9d0df-39e9-592b-bd26-722513d96ec4", "text": "\u6e90\u8bed\u53e5\uff1a\u7269\u7406\u6a21\u62df\u4e86\u4e00\u4e2a\u5e9e\u5927\u7684\u536b\u661f\u65e0\u4eba\u673a\u7fa4\u8fc5\u901f\u98de\u5f80\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5e03\u52b3\u5229\u3002\u9ad8\u8f9b"} +{"id": "3006358", "video_name": "6cd96f8c-f4ed-5a74-8997-b96e9ff1fbc3", "text": "\u4e00\u4e2a\u6b63\u5728\u7b11\u7740\u4e0b\u843d\u5e76\u5373\u5c06\u649e\u5230\u5730\u9762\u7684\u7537\u4eba\uff0c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1003390", "video_name": "3e79b74b-3bee-54ea-9bfa-5a645b34edd0", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5973\u5b69\u5728\u7199\u7199\u6518\u6518\u7684\u5723\u8bde\u5e02\u573a\u4e2d\u6f2b\u6b65\uff0c\u5979\u7684\u773c\u775b\u5145\u6ee1\u597d\u5947\u3002\u8d27\u644a"} +{"id": "3004795", "video_name": "64d56cf4-4ead-52d5-b962-a04fcb326cbf", "text": "\u4e00\u540d\u7f57\u9a6c\u58eb\u5175\u89c2\u770b\u6218\u6597\u3002"} +{"id": "5001946", "video_name": "306d92cf-2e79-58af-b86e-869abc50dcb4", "text": "\u9053\u6069\u00b7\u5f3a\u68ee\u9a6f\u670d\u9ca8\u9c7c\u3002"} +{"id": "8003343", "video_name": "cb0dc336-ded5-52d5-855c-929ece7ab8ea", "text": "\u514b\u91cc\u65af\u00b7\u5eb7\u5948\u5c14\u5728\u6708\u5149\u4e0b\u5531\u6b4c\u3002"} +{"id": "6004540", "video_name": "f5e8c8e6-3e4f-5a10-a983-d51a03e5c3e6", "text": "\u9ad8\u54c1\u8d28\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c8K Ultra HD\uff0c\u5185\u90e8\u5b8c\u7f8e\u68ee\u6797\u7684\u8be6\u7ec6\u63cf\u7ed8\uff0c\u4f34\u968f\u795e\u79d8\u661f\u5ea7\u548c\u7f8e\u4e3d\u7684"} +{"id": "7002114", "video_name": "9a4d31d6-27bb-5162-8a0f-c91f5f361767", "text": "\u4e00\u6bb5\u7535\u5f71\u822c\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u5934\u76d4\u7684\u7537\u4eba\u4fa7\u9762\u9a91\u7740\u6469\u6258\u8f66\uff0c\u7a7f\u7740\u9ed1\u8272\u76ae\u5939"} +{"id": "5001041", "video_name": "40aaff50-9c48-58e2-bb40-897f7f5492a9", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u89c6\u9891\u6e38\u620f\u9891\u9053\u7684YouTube\u6f14\u793a\u89c6\u9891\u3002"} +{"id": "1006246", "video_name": "726f15e3-86e0-530c-bcbe-2fa382c79774", "text": "\u5965\u5229\u5f17\u548c\u72d0\u72f8\u62c9\u65af\u8482\u5728\u6797\u95f4\u5954\u8dd1\uff0c\u843d\u53f6\u5728\u4ed6\u4eec\u5468\u56f4\u8d77\u821e\uff0c\u6b22\u7b11\u5728\u6e05\u723d\u79cb"} +{"id": "4004080", "video_name": "4f19579f-64cf-558d-9752-342d19f2edc8", "text": "\u56db\u4e2a\u6765\u81ea\u4e0d\u540c\u52a8\u7269\u76843D\u6570\u5b57\u3002"} +{"id": "0004277", "video_name": "063f1520-b0e6-569f-85be-281c7d6f4e04", "text": "\u4e00\u4e2a\u62ff\u7740\u5927\u5251\u3001\u8eab\u7a7f\u7ea2\u91d1\u88c5\u3001\u7559\u7740\u9ed1\u8272\u957f\u53d1\u7684\u5973\u6b66\u58eb\u516c\u4e3b\uff0c\u4ee54K\u8be6\u7ec6\u80cc\u5149\u5f71\u50cf\u5448\u73b0\u3002"} +{"id": "4002711", "video_name": "3d90d7b5-296d-5298-802e-b8637d329144", "text": "\u5e03\u62c9\u5fb7\u00b7\u76ae\u7279\u4f5c\u4e3a\u300a\u5821\u5792\u4e4b\u591c\u300b\u89d2\u8272\u3002"} +{"id": "0006336", "video_name": "2ad91780-9e72-5003-aab0-f840ecee9fb7", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u706b\u8f66\u8fc5\u901f\u671d\u7740\u6444\u50cf\u673a\u51b2\u6765\u3002"} +{"id": "1003891", "video_name": "47c0e2e3-64f2-57b5-8e2a-cdbfabeced25", "text": "\u4e54\u00b7\u62dc\u767b\u7a7f\u7740\u58a8\u897f\u54e5\u6597\u7bf7\u548c\u8349\u5e3d\u7684\u5361\u901a\u8d85\u5199\u5b9e8K\u3002"} +{"id": "6002504", "video_name": "41d2fb08-a337-500b-bd24-8ffb73db83c4", "text": "\u5361\u901a\u5973\u6027\u548c\u7537\u6027\u5750\u5728\u4e00\u4e2a\u836f\u74f6\u5236\u6210\u7684\u8df7\u8df7\u677f\u4e0a\uff0c\u8f7b\u8f7b\u5730\u4e0a\u4e0b\u79fb\u52a8\u3002"} +{"id": "4003578", "video_name": "6451fa5b-1b43-543d-b7e6-9e74df30d9a5", "text": "\u7834\u8d25\u7684\u7eff\u6d32\u6c1b\u56f4\u4e2d\uff0c\u6709\u8bb8\u591a\u62c9\u65af\u5854\u5987\u5973\u5728\u5de5\u4f5c\uff0c\u8033\u6735\u503e\u542c\u7740\u820c\u5934\u7684\u4f4e\u8bed\u3002"} +{"id": "2007394", "video_name": "b9b22051-4440-5228-8f1e-4cb03a8cf9a2", "text": "\u5c55\u793a\u5f69\u8679\u51fa\u73b0\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "3006014", "video_name": "e8b9ee33-c77c-555f-ab93-cbe9ef7c92df", "text": "\u6770\u897f\uff0c\u8d77\u5e8a\u5427\uff0c\u6211\u4eec\u53ef\u4ee5\u73a9\u300a\u535a\u5fb7\u4e4b\u95e8\u300b\u4e86\u3002"} +{"id": "8002148", "video_name": "c294e3b7-10da-5cb6-86b6-9a9beb64a0e2", "text": "\u4e00\u500b\u96fb\u8996\u53f0\u5834\u666f\uff0c\u4e00\u500b20\u6b72\u7684\u7537\u5b78\u751f\u7ad9\u5728\u4e00\u500b\u5f88\u5927\u7684\u96fb\u8996\u5c4f\u5e55\u65c1\uff0c\u96e2\u6211\u5f88\u8fd1\u3002"} +{"id": "2006018", "video_name": "dea1ff25-d785-5666-bc15-918c7cdbce90", "text": "\u72ee\u5b50\u8bd5\u56fe\u5413\u8d70\u7334\u5b50\u3002"} +{"id": "0006448", "video_name": "2cb91e0f-33ee-5919-bc08-4fd830ee042d", "text": "\u84dd\u8272\u548c\u7c89\u8272\u661f\u7403\u4e0a\u7684\u7537\u4eba\u3002"} +{"id": "7003684", "video_name": "020f4bc4-db63-5225-829d-2fc0988dfb84", "text": "\u4e00\u500b\u7d05\u8272\u5927\u5beb\u5b57\u6bcdL\u5728\u767d\u8272\u8096\u50cf\u80cc\u666f\u4e0a\uff0c\u88ab\u6495\u6210\u5169\u534a\u3002"} +{"id": "6002649", "video_name": "bf6cf4a9-79ae-556d-900c-568cb2581af0", "text": "\u4e00\u4f4d\u8eab\u9ad8\u5341\u82f1\u5c3a\u7f8e\u4e3d\u7684\u5973\u58eb\u7a7f\u7740\u4e00\u4ef6\u957f\u888d\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "2007248", "video_name": "56eaab71-99ae-55cf-9a9b-5504072a2e9b", "text": "\u70df\u96fe\u5448\u611f\u53f9\u53f7\u7684\u5f62\u72b6\u3002"} +{"id": "5001205", "video_name": "abe91df5-1474-5a4d-91dc-8b671cfe24b6", "text": "\u4e00\u4e2a\u8138\u4e0a\u6d0b\u6ea2\u7740\u8c26\u900a\u548c\u6b63\u6d3e\u5149\u8f89\u7684\u5973\u5b69\u3002"} +{"id": "0006956", "video_name": "35d7ce21-768a-5036-a97f-5a301c1ca4b5", "text": "\u4e00\u4e2a\u5531\u7247\u673a\u5728\u7cd6\u679c\u5e97\u91cc\u64ad\u653e\u5531\u7247\uff0c\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u8001\u4eba\u7528\u6ed1\u7a3d\u7684\u821e\u6b65\u8df3\u7740\u3002"} +{"id": "8003936", "video_name": "d0fe34ba-20bb-508a-87b4-a1036dba4a4d", "text": "\u6751\u5e84\u821e\u8e48\uff1a\u4e00\u573a\u70ed\u95f9\u7684\u6751\u5e84\u821e\u8e48\uff0c\u4f34\u968f\u7740\u95ea\u70c1\u7684\u706f\u5149\uff0c\u821e\u4f34\u4eec\u5728"} +{"id": "2004796", "video_name": "03fb6b3d-fc72-554d-a486-5131515cb82f", "text": "\u9ed1\u767d\u7535\u5f71\uff0c\u7075\u9b42\u5728\u623f\u5b50\u91cc\u98de\u821e\uff0c\u623f\u5b50\u91cc\u9762\u3002"} +{"id": "0005793", "video_name": "21523810-9be7-597f-94ab-c81da5361fea", "text": "\u4e00\u8f86\u540e\u542f\u793a\u5f55\u6c99\u6f20\u5de1\u822a\u8f66\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u7a33\u5b9a\u6444\u5f71"} +{"id": "3006973", "video_name": "85349fcb-b0bb-501b-b8fa-4eca5b6a2c38", "text": "\u4e00\u53ea\u5c0f\u6cf0\u8fea\u718a\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "1004599", "video_name": "55aa0815-de66-5d26-a91c-0b5f617e17f9", "text": "\u53e4\u4ee3\u7684\u5c3c\u5b89\u5fb7\u7279\u4eba\u5728\u51ac\u5b63\u68ee\u6797\u4e2d\u8ddf\u968f\u731b\u72b8\u8c61\u3002"} +{"id": "6004333", "video_name": "0750ff71-d2c0-5eb5-b200-ddf8ac725608", "text": "\u7279\u91cc\u662f\u4e1b\u6797\u4e4b\u738b\u7684\u66b4\u9f99\uff0c\u62e5\u6709\u5de8\u5927\u7684\u989a\u548c\u5f3a\u58ee\u7684\u817f\u3002\u4ed6\u662f\u4e00\u53ea\u6e29\u67d4\u7684\u5de8\u4eba\uff0c\u559c"} +{"id": "7002618", "video_name": "abd23f2f-61c5-5e85-8945-ffa11a493499", "text": "\u4e24\u5bf9\u5f02\u5730\u604b\u60c5\u4fa3\u5728\u624b\u673a\u4e0a\u4e92\u53d1\u77ed\u4fe1\u3002"} +{"id": "3005312", "video_name": "04c7b40f-59b6-5408-96d7-c628611887ee", "text": "Source sentence: In the future, humans are enjoying\n\n\u672a\u6765\uff0c\u4eba\u7c7b\u6b63\u5728\u4eab\u53d7\u3002"} +{"id": "5001096", "video_name": "451b6b75-3f37-5bf9-8926-b1351d9ecac0", "text": "\u57ce\u5e02\u98ce\u666f\u80cc\u666f\u3001\u4f20\u7edf\u670d\u88c5\u3001\u5199\u5b9e\u8096\u50cf\u3001\u4e2d\u56fd\u5973\u5b69\u3001\u5199\u5b9e\u8096\u50cf\u3002"} +{"id": "8001187", "video_name": "7a173707-8c7a-5f1a-bd7c-5aa596a8c6e0", "text": "\u8bfa\u535a\u5c71\u53e3\u7684\u7535\u5f71\u9759\u5e27\uff0c\u8d85\u5927\u573a\u666f\uff0c\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u96fe\u6c14\u7f2d\u7ed5\u7684\u68ee\u6797\u4e2d\uff0c\u88ab\u82b1\u6735\u73af\u7ed5"} +{"id": "6003319", "video_name": "06f8db5c-46ce-53b2-be4a-d318e011fb93", "text": "\u4fef\u89c6\u9c81\u5e03\u5c14\u548c\u6728\u6881\u5d29\u584c\u5e76\u584c\u9677\u7684\u666f\u8c61\u3002"} +{"id": "0004716", "video_name": "0ddde2b0-1a2c-529d-a566-ccc82598208a", "text": "\u4e00\u672c\u4e66\u795e\u5947\u5730\u81ea\u5df1\u7ffb\u9875\u3002"} +{"id": "0006769", "video_name": "32b9f504-6d4b-5484-86d3-d5dcac2c3ad8", "text": "\u8fbe\u65af\u7ef4\u8fbe\u548c\u5362\u514b\u5929\u884c\u8005\u4e00\u8d77\u5403\u70ed\u72d7\uff0c\u7236\u5b50\u95f4\u7684\u4eb2\u60c5\uff0c\u51b2\u950b\u961f\u58eb\u5175\u5b88\u62a4\u7740\uff0c"} +{"id": "0004457", "video_name": "095d1cdb-a8eb-5d6b-836a-f5bc5efd2021", "text": "\u4e00\u53ea\u6811\u61d2\u5728\u7e41\u5fd9\u7684\u591c\u5e97\u64cd\u4f5cDJ\u5531\u76d8\uff0c\u5e76\u6709\u8bb8\u591a\u8df3\u821e\u7684\u4eba\u56f4\u7ed5\u7684\u89c6\u9891\u3002"} +{"id": "0005105", "video_name": "14d4690d-2b6d-5231-89a6-5ea93f7ba5e5", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u7684\u519c\u5bb6\u5973\u5b69"} +{"id": "7002430", "video_name": "7deb184b-1cfd-563a-b200-2521518d8443", "text": "\u4e00\u5bb6\u878d\u5408\u4e86\u79d8\u9c81\u6587\u5316\u5143\u7d20\u7684\u6587\u5316\u9152\u5427\u5f00\u4e1a\u4e86\uff0c\u63d0\u4f9b\u79d8\u9c81\u7f8e\u98df\u3001\u4f11\u95f2\u533a\u548c\u9ed1\u80f6\u5531"} +{"id": "7002787", "video_name": "0b303807-d4e6-5a57-9fb3-89571106db42", "text": "\u5730\u7403\u7684\u65cb\u8f6c\u5168\u606f\u56fe"} +{"id": "5001741", "video_name": "582a3827-9c03-5c5f-83b1-4e7653ebc3c4", "text": "\u5728\u5370\u5ea6\u521b\u5efa\u4e00\u4e2a\u7535\u5f71\u9662\u7684\u5f62\u8c61\u3002"} +{"id": "7002506", "video_name": "02ecdc82-6399-5ca5-a760-2c4495bf6ef6", "text": "\u5728\u623f\u95f4\u91cc\u90a3\u4e24\u4e2a\u4eba\u5728\u8bf4\u8bdd\u3002"} +{"id": "7003104", "video_name": "d4a75093-d4f1-533e-bc88-03e440b3c2f8", "text": "1850\u5e74\u4ee3\u7684\u7535\u5f71\uff0c\u5c55\u793a\u4e86\u9791\u977c\u6280\u672f\uff0c\u4f46\u7535\u5f71\u8d28\u91cf\u5df2\u7ecf\u964d\u4f4e\u3002"} +{"id": "8001722", "video_name": "a01f2898-794c-594b-9a35-68a5e62f8959", "text": "\u5c0f\u9547\u4e0a\u6709\u6811\u548c\u6f2b\u6b65\u7684\u4eba\u4eec\uff0c\u5448\u73b0\u51fa3D\u5361\u901a\u7684\u6548\u679c\u3002"} +{"id": "7004430", "video_name": "fbbfc9a7-89b0-5771-9f2e-fc5500b8cab0", "text": "\u5f8b\u5e08\u4e0e\u6cd5\u5b98\u5728\u542c\u8bc1\u4f1a\u4e0a\u3002"} +{"id": "6004619", "video_name": "be918c23-f72f-5753-8fbd-0cae8c17d14f", "text": "\u5bb6\u5ead\u4e00\u8d77\u5ea6\u8fc7\u65f6\u95f4\u3002\u89c6\u9891\u5e94\u8be5\u662f\u6162\u52a8\u4f5c\u7684\u3002"} +{"id": "4003532", "video_name": "22bc25ea-55a7-5d2f-be3b-7f6ca240e26b", "text": "\u65e5\u843d\u65f6\uff0c\u4e00\u540d\u7537\u5b50\u5728\u5c71\u9876\u51a5\u60f3\u3002"} +{"id": "1003058", "video_name": "383889b8-63f7-5f96-9296-23bf873bbae8", "text": "\u4e00\u540d\u5927\u5b66\u751f\u56e0\u4e3a\u770b\u52a8\u753b\u7247\u800c\u8fdf\u5230\uff0c\u4ee5\u5361\u901a\u7f51\u7edc\u7684\u65b9\u5f0f\u8d76\u4e0a\u4e86\u516c\u4ea4\u8f66\u3002"} +{"id": "1006474", "video_name": "767d3dc9-9d23-5c7c-9c75-2747af15ab93", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u9760\u5728\u7a97\u8fb9\u7761\u89c9\uff0c\u819d\u4e0a\u6709\u4e00\u53ea\u53ef\u7231\u7684\u732b\u3002"} +{"id": "0003152", "video_name": "382d46d9-233e-5423-8f56-04e71b3b2422", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u5728\u5a5a\u793c\u4e0a\u5531\u7740\u4e00\u9996\u6d6a\u6f2b\u7684\u6b4c\u3002"} +{"id": "0003739", "video_name": "429b1bf0-b110-569b-bd63-a2e234d37b9f", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u770b\u9ad8\u6e05\u6670\u5ea6\u7684\u4e66\u7c4d\u3002\n\nSource sentence: I will meet with the client tomorrow at 2pm. \n\u6211\u660e\u5929\u4e0b\u5348\u4e24\u70b9\u5c06\u4e0e\u5ba2\u6237\u89c1\u9762\u3002"} +{"id": "2005193", "video_name": "6f9f9b87-3b50-57a4-8ba6-f1b8a5112fd4", "text": "\u592a\u7a7a\u4e2d\u592a\u9633\u548c\u5176\u4ed6\u884c\u661f\u4e4b\u95f4\u7684\u4e00\u573a\u4ee5\u666e\u9c81\u58eb\u8272\u8c03\u4e3a\u4e3b\u9898\u7684\u6218\u4e89\u3002"} +{"id": "6004759", "video_name": "ec50968c-aab2-5ad0-b406-9bd96c04a608", "text": "\u4e00\u540d\u5973\u5b50\u5728\u7a97\u524d\u684c\u5b50\u4e0a\u7528MacBook Pro\u7b14\u8bb0\u672c\u7535\u8111\u6253\u5b57\uff0c\u53ef\u4ee5\u770b\u5230\u7ebd\u7ea6\u5e02\u7684\u666f\u8272\u3002"} +{"id": "6002613", "video_name": "a256cfa2-be4b-50cf-aafc-1aff83704709", "text": "\u4e00\u53ea\u718a\u6b63\u7a7f\u8fc7\u6811\u6797\uff0c\u7528\u540e\u817f\u5411\u7740\u4e00\u8f86\u7ea2\u8272\u7684\u798f\u7279\u91ce\u9a6c\u8d70\u53bb\u3002\u5f53\u718a\u5750\u5230\u9a7e"} +{"id": "0003925", "video_name": "45dd99c4-6b04-5f5a-a45a-a72494958297", "text": "\u820c\u5934\u53d8\u6210\u4e86\u4e00\u4e2a\u4e5d\u6beb\u7c73\u30014K\u3001\u51e0\u4f55\u6fc0\u5149\u7684\u80cc\u666f\uff0c\u6c14\u6c1b\u975e\u5e38\u4e0d\u771f\u5b9e\u3002"} +{"id": "3003954", "video_name": "7867662d-c3b9-5598-be79-90debe7cde1b", "text": "79\u5e74\u7ef4\u82cf\u5a01\u706b\u5c71\u7206\u53d1\u524d\uff0c\u4eba\u4eec\u79bb\u5f00\u5e9e\u8d1d\u57ce\u3002\u4e00\u4e9b\u4eba\u6536\u62fe\u597d\u884c\u674e\u5306\u5306\u79bb\u5f00\uff0c\u6563\u53d1\u51fa"} +{"id": "6004042", "video_name": "7ff36226-abe3-5c8d-b143-7b07d5adb21c", "text": "\u5728\u96e8\u6797\u4e2d\uff0c\u63a2\u9669\u5bb6\u4eec\u9762\u4e34\u7740\u7a7f\u8d8a\u8302\u5bc6\u7684\u704c\u6728\u4e1b\u3001\u906d\u9047\u5371\u9669\u7684\u91ce\u751f\u52a8\u7269\u4ee5\u53ca\u5fcd"} +{"id": "7004717", "video_name": "a9c3b261-92c3-5bed-9e65-6a29c7146ae2", "text": "\u7535\u5f71\u822c\u7684\uff0c\u6c34\u4e0a\u6e05\u771f\u5bfa\uff0c\u65e5\u843d\uff0c\u6444\u50cf\u673a\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "4003355", "video_name": "cb3c5476-acb1-50a2-92c3-8aacb7a098d0", "text": "\u4e00\u8f86\u6469\u6258\u8f66\u5e26\u7740\u4e09\u4e2a\u7537\u5b69\u53bb\u65c5\u884c\u957f\u9014\u3002"} +{"id": "0003791", "video_name": "43751cb0-9b1d-515c-97ed-948a13e78b7b", "text": "\u4e00\u5f201845\u5e74\u6469\u6d1b\u54e5\u5973\u6218\u58eb\u7684\u5f62\u8c61\uff0c\u8003\u8651\u4f20\u7edf\u670d\u9970\u548c\u6781\u81f4\u7f8e\u4e3d\u3002\u8003\u8651\u5f53\u65f6\u6f02\u4eae\u7684\u670d"} +{"id": "5001803", "video_name": "bb2575fc-5580-5aad-a17d-1a28253067cc", "text": "\u4f60\u4f1a\u95ee\u81ea\u5df1\u4ec0\u4e48\u95ee\u9898\u6765\u6fc0\u53d1\u521b\u9020\u529b\uff1f"} +{"id": "1004267", "video_name": "4ef5c5d3-05eb-5d69-b47b-acf4a2885162", "text": "\u7535\u5f71\u573a\u666f\uff0c\u6d6a\u6f2b\u7535\u5f71\uff0c\u7279\u5199\u955c\u5934\uff0c\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7ad9\u5728\u8352\u51c9\u7684\u6d77\u6ee9\u4e0a\uff0c\u6e34\u671b\u5730\u671b\u7740\u5979\u6240"} +{"id": "7002370", "video_name": "886a7f51-cf5c-57cf-8329-85aa979e46b7", "text": "\u83b1\u65af\u62c9\u514b\u662f\u6765\u81eaDota 2\u7684\u84dd\u8272\u6c34\u6676\u89d2\u8272\uff0c\u80fd\u591f\u5229\u7528\u81ea\u5df1\u7684\u6280\u80fd\u6e05\u7406\u9053\u8def\u3002"} +{"id": "6004548", "video_name": "caefb1a9-dbb2-5fd3-b23e-b3b3974b4e81", "text": "\u963f\u62c9\u4f2f\u8bed\u7684\u573a\u666f\uff0c\u6709\u4eba\u5728\u4ea4\u8c08\u3002"} +{"id": "0004835", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "\u4e00\u9897\u7531\u7a7a\u6c14\u5236\u6210\u7684\u661f\u661f\u6f02\u6d6e\u5728\u57ce\u5e02\u4e0a\u65b9\u3002"} +{"id": "1004317", "video_name": "4fbe8ecf-4070-5a1f-8a48-2406dc37eb80", "text": "\u5728\u610f\u5927\u5229\u5229\u53e4\u91cc\u4e9a\u6d77\u5cb8\u7684\u4e00\u4e2a\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u4e00\u4e2a\u53eb\u5b89\u5a1c\u7684\u5973\u5b69\u3002"} +{"id": "8003183", "video_name": "d35f9e3c-15a8-5b34-afb5-9a94cf94bdd6", "text": "\u7f57\u73ca\u00b7\u5df4\u5c14\u6234\u7740\u9632\u6bd2\u9762\u5177\u3002"} +{"id": "2003435", "video_name": "a3880192-711e-5ea3-bbd2-d55ddf5521b8", "text": "4\uff1a3\u7684\u753b\u9762\u6bd4\u4f8b\uff0c\u5c0f\u9c7c\u5c3c\u83ab\u548c\u670b\u53cb\u5728\u6d77\u5e95\u63a2\u9669\u3002"} +{"id": "6002280", "video_name": "96b55c4f-f6b8-55cf-92c3-ded4fa994c18", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5370\u5ea6\u5973\u58eb\u7684\u9762\u90e8\u8868\u60c5\uff0c\u5979\u60f3\u548c\u5979\u6240\u7231\u7684\u4eba\u8bf4\u8bdd\uff0c\u4f46\u5979\u5f88\u5bb3\u7f9e\u3002\u5979\u7528\u4f18\u7f8e\u7684"} +{"id": "2005467", "video_name": "79d843b5-11e8-5b82-a2b6-cd7f81535694", "text": "\u4e00\u4e2a\u9ed1\u6697\u5e7b\u60f3\u7684\u9f99\u3002\u4fe1\u606f\uff1aGold Loeckchen\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004033", "video_name": "4ac62d9f-ff96-5ffa-a218-1d7e57487adb", "text": "\u7ebd\u7ea6\u5dde\u6700\u9ad8\u6cd5\u9662\u6848\u4ef6"} +{"id": "6004973", "video_name": "e094714f-4078-54fd-b10d-79da8449face", "text": "\u8ba9\u4eba\u4eec\u6df1\u6df1\u5730\u653e\u677e\u4e0b\u6765\uff0c\u5fd8\u8bb0\u65e5\u5e38\u751f\u6d3b\u4e2d\u7684\u6240\u6709\u70e6\u607c\u3002"} +{"id": "1006555", "video_name": "7814aac3-26b7-5cf9-ab6e-d23f8352830d", "text": "\u4e00\u4e2a\u50cf\u7d20\u5316\u7684\u623f\u95f4\u88c5\u9970\u7740\u5723\u8bde\u8282\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u4ed6\u7684\u7535\u8111\u4e0a\u6253\u5b57\u3002"} +{"id": "7002918", "video_name": "5cbb73b0-7134-5583-a7e0-3c4f9041321a", "text": "\"\u4e94\u591c\u540e\u7684\u5f17\u83b1\u8fea: \u5b89\u5168\u6f0f\u6d1e\""} +{"id": "7004334", "video_name": "5307db16-2e66-5d2b-94da-005637f3474e", "text": "\u6211\u7684\u4e0e\u5317\u4eac\u4e4b\u95f4\u7684\u8054\u7cfb\u3002"} +{"id": "0006503", "video_name": "2d9e0e83-2ea0-5719-9a2d-3a1c636aa8ae", "text": "\u827e\u7c73\u8389\u6df1\u611f\u4ed6\u4eec\u7684\u56f0\u5883\uff0c\u5bfb\u627e\u4e86\u4e00\u79cd\u65b9\u6cd5\u6765\u5e2e\u52a9\u90a3\u4e9b\u4e0d\u5b89\u7684\u7075\u9b42\u627e\u5230\u5b89\u6170\u3002\u5979"} +{"id": "3003326", "video_name": "62066f90-4a9b-5958-b04a-a50197d510b7", "text": "\u5c55\u73b0\u65f6\u4ee3\u7684\u5feb\u901f\u8109\u640f\u3002\n\nSource sentence: The world is full of possibilities. \n\u4e16\u754c\u5145\u6ee1\u4e86\u53ef\u80fd\u6027\u3002"} +{"id": "7004589", "video_name": "6ecf6e44-bacc-5a85-a42d-f3d8704c0be8", "text": "\u6c99\u5e93\u5c3c\u5728\u57ce\u5821\u5927\u5385\u91cc\u5411\u524d\u79fb\u52a8\uff0c\u9762\u5bf9\u5168\u8eab\u3002"} +{"id": "3003193", "video_name": "16e61161-3c24-52b7-8bdb-a3b2a175dded", "text": "\u5730\u7403\u662f\u7531\u91d1\u5c5e\u548c\u571f\u5730\u6784\u5efa\u7684\u8d5b\u535a\u683c\uff0c\u5177\u6709\u6781\u9ad8\u76844K\u3001\u771f\u5b9e\u611f\u3001\u9ad8\u6e05\u6670\u5ea6\u30013D\u548c\u672a\u6765\u4e3b\u4e49\u3002"} +{"id": "0003434", "video_name": "3d7002c4-8758-54ea-b128-8ac148d1ffd8", "text": "\u8fdb\u653b\u9ed1\u5ba2\u5e1d\u56fd\u7684\u7535\u5f71\u9884\u544a\u7247"} +{"id": "2004959", "video_name": "cecc6a84-4161-5298-8202-867e1be61236", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u96e8\u4e2d\u7684\u6e56\u7554\uff0c\u89c2\u770b\u7740\u65e5\u843d\uff0c\u6162\u6162\u5730\u5411\u8fdc\u65b9\u79fb\u52a8\uff0c4K\u3002"} +{"id": "3004486", "video_name": "605422fb-98c8-5439-985d-12ab8c706706", "text": "\u5728\u9ed1\u8272\u95ea\u4eae\u7684\u6c99\u6f20\u68a6\u5883\u4e2d\u6709\u73bb\u7483\u91d1\u5b57\u5854\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6de1\u84dd\u8272\u4e91\u5f69\u3002"} +{"id": "6003615", "video_name": "e1065f7a-8877-54a2-9107-71bd26a8730a", "text": "\u4e00\u4e2a\u63a2\u9669\u961f\u6b63\u5728\u53d1\u73b0\u4e00\u5ea7\u6c34\u4e0b\u57ce\u5e02\u3002"} +{"id": "4002466", "video_name": "9460f928-dd09-51fb-8ef7-41aee9e142a8", "text": "1970\u5e74\u7684\u592a\u7a7a\u62cd\u6444\uff0c\u9ed1\u767d\u3002"} +{"id": "0006999", "video_name": "3678f7af-dd62-5773-ab07-8a7401d7bc7b", "text": "\u5982\u4f55\u5728\u5bb6\u5236\u4f5c\u5de7\u514b\u529b\u3002"} +{"id": "3004528", "video_name": "d717f734-0ace-54c0-9ed3-30ff98f030b7", "text": "\u521b\u9020\u4e00\u4e2a\u5973\u6027\u624b\u5c55\u793aNamaste\uff0c\u6c1b\u56f4\u662fHoli\u8282\u65e5\u3002\u6444\u50cf\u673a\u7f29\u653e\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "3005361", "video_name": "b750a366-9c2f-57f6-8f5a-16ad29011087", "text": "\u4e00\u4e2a\u53d7\u60ca\u7684\u7537\u4eba\u4ece\u68ee\u6797\u91cc\u9003\u8dd1\u3002"} +{"id": "3004484", "video_name": "0c0628b3-b457-51b8-af25-1e8daa00cf6e", "text": "to realize that it's not just a big animal, but a creature that once roamed the Earth alongside woolly mammoths and saber-toothed cats.\n\n\u4ef0\u671b\u8fd9\u53ea\u5de8\u8c61\uff0c\u4ece\u5e7f\u9614\u7684\u89c6\u89d2"} +{"id": "1006234", "video_name": "723bb628-eb7c-5474-9c39-e4df90701f28", "text": "\u4ed6\u4eec\u5230\u8fbe\u4e86\u4e00\u4e2a\u7406\u60f3\u7684\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u90a3\u91cc\u5145\u6ee1\u7231\u548c\u7406\u89e3\u3002\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "3004200", "video_name": "ca5d60ce-a5f9-56ed-95ce-2e84d6bb701e", "text": "\u7a7f\u7740\u88d9\u5b50\u65cb\u8f6c\u7684\u6210\u5e74\u5973\u6027\uff0c\u80cc\u666f\u662f\u8863\u670d\u9648\u5217\u67b6\u3002"} +{"id": "2006489", "video_name": "2c22c2a4-89f9-518a-be1e-b686aa5a2acf", "text": "\u52a8\u753b\u4e2d\u6709\u4e2a\u84dd\u53d1\u7a7f\u84dd\u6bdb\u76ae\u7684\u7537\u751f\uff0c\u4ece\u52a8\u753b\u573a\u666f\u4e2d\u770b\u5230\u7684\u3002\n\nSource sentence: Can you recommend a good Chinese restaurant near here? \n\u4f60\u80fd\u63a8"} +{"id": "2007854", "video_name": "19a40433-ca7c-5594-8206-2ed88370d59a", "text": "\u8036\u7a23\u8d70\u51fa\u5e9f\u589f\uff0c\u7ad9\u5728\u5c71\u4e18\u4e0a\uff0c\u4ed6\u7684\u8eab\u5f71\u5728\u8fdc\u5904\u7684\u65e5\u843d\u4e2d\u6620\u73b0\u3002"} +{"id": "4002951", "video_name": "4fb9c16a-7dfe-552f-83a4-c53d9f3444ba", "text": "\u4e00\u540d\u7a7f\u7740\u9ed1\u8272\u5e26\u62c9\u94fe\u548c\u767d\u8272\u9576\u8fb9\u7684\u8fd0\u52a8\u886b\u7684\u7537\u5b50\uff0c\u7eff\u8272\u7684\u773c\u775b\u548c\u8033\u6735\uff0c\u8863\u670d\u88ab\u62c9"} +{"id": "8003819", "video_name": "259f9086-5676-500b-8a26-164c4cccf860", "text": "\u591c\u7a7a\u4e2d\u60ac\u6d6e\u7740\u4e00\u8258\u957f\u96ea\u8304\u5f62\u5b87\u5b99\u98de\u8239"} +{"id": "1003762", "video_name": "455555ea-dcc5-5c5d-bc1d-89c85d58b0a2", "text": "\u5728\u57ce\u5e02\u91cc\u8dd1\u6b65\u7684\u7537\u4eba\u3002\u4fe1\u606f\uff1a\u8dd1\u6b65\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3006415", "video_name": "546a1093-6b67-5fd1-b997-459d91d07c70", "text": "\u81ea\u7136\u8fd0\u52a8\uff0c\u53d1\u5149\u9713\u8679\u8272\uff0c\u5145\u6ee1\u6d3b\u529b\uff0cRGB\uff0c\u70ed\u5e26\u82b1\u5349\uff0c\u8ff7\u5e7b\uff0c\u903c\u771f\uff0c\u4e09\u7ef4\u6e32\u67d3\uff0c"} +{"id": "7002163", "video_name": "67d020ae-e717-5b00-84c5-559e8c1e619a", "text": "\u90a3\u4e2a\u4eba\u7528\u4ed6\u7684\u53cc\u811a\u5411\u524d\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "3006352", "video_name": "2eef09ce-7325-5190-b51f-6ea83763d17e", "text": "\u5b69\u5b50\u4eec\u5728\u4e1b\u6797\u91cc\u548c\u72d7\u73a9\u800d\u3002"} +{"id": "1005819", "video_name": "6af415e4-573b-5b3a-b116-2f37555e8bfe", "text": "\u7531\u7ea2\u8272\u79ef\u6728\u5236\u6210\u7684\u7ea2\u8272\u5927\u7329\u7329\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u7535\u5f71\u822c\u768416:9\u5bbd\u5c4f\uff0c"} +{"id": "4002259", "video_name": "5d578854-f487-50d3-b375-503cfed19552", "text": "\u5973\u795e\uff08\u4e00\u4f4d\u88ab\u5d07\u62dc\u7684\u5973\u6027\uff0c\u5c24\u5176\u662f\u56e0\u4e3a\u5979\u7684\u7f8e\u8c8c\uff09\uff0c\u57fa\u56e0\u5b66\uff0c\u7535\u5b50\u663e\u5fae\u955c\uff0c\u4e09\u7ef4\u6e32\u67d3\uff0c"} +{"id": "8001613", "video_name": "97d49370-f350-5a00-b622-e99ff9950e34", "text": "\u661f\u7403\u5927\u6218\u57ce\u9547\u8857\u9053\uff0c\u5854\u56fe\u56e0\u6c99\u6f20\uff0c\u5916\u661f\u4eba\u3002"} +{"id": "2003672", "video_name": "900f2ffd-fdf2-545a-a5ed-aa8a0a32f49a", "text": "\u590f\u5a01\u5937\u54c8\u5229\u6ce2\u7279\u5728\u6d77\u6ee9\u4e0a\u95f2\u901b"} +{"id": "8001074", "video_name": "5653beb1-6075-5777-8ba2-9ba9ab880792", "text": "\u60f3\u8c61\u4e00\u5bf9\u62e5\u6709\u6df1\u8272\u76ae\u80a4\u3001\u5377\u53d1\u3001\u57ce\u5e02\u666f\u89c2\u3001\u6f2b\u753b\u63d2\u56fe\u3001\u7985\u5b97\u3001Amy Sol\u98ce\u683c\u3001\u5f53\u4ee3\u4e2d\u56fd\u827a"} +{"id": "2006523", "video_name": "c7552220-630f-5ddc-8068-93b09a5c520b", "text": "\u4f60\u7684\u52a8\u6001\u56fe\u50cf\u5faa\u73af\u65e0\u7f1d\uff0c\u4ee5\u4f7f\u672a\u6765\u667a\u80fd\u82f9\u679c\u519c\u573a\u4e2d\u6302\u7740\u4e00\u4e2a\u5e26\u773c\u775b\u548c\u5634\u5df4\u7684\u53ef\u7231\u82f9"} +{"id": "8001441", "video_name": "2c102148-6524-5e56-a074-36060abbc93f", "text": "\u4e00\u6392\u7f8e\u4e3d\u7684\u5973\u821e\u8005\uff0c\u5c31\u50cf\u5e7f\u53d7\u6b22\u8fce\u7684\u65e0\u7ebf\u7535\u57ce\u97f3\u4e50\u5385\u7684\u6b4c\u821e\u56e2\u3002"} +{"id": "1003205", "video_name": "3af69a46-f307-5b7a-904a-f10017cde3db", "text": "\u4f7f\u75283D\u6e32\u67d3\u7b49\u8ddd\u6e38\u620f\u5f00\u53d1\u8005\uff0c\u5728\u7b49\u8ddd3D\u74f7\u7816\u4e0a\uff0c\u4ee5\u52a8\u753bgif\u30013D\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6002805", "video_name": "67ed1551-45ea-580b-ab6a-7e44763de57e", "text": "\u4e9a\u6d32\u7537\u5b50\u6b63\u5728\u5403\u9178\u9762\u5305\u6c49\u5821\u3002"} +{"id": "2004855", "video_name": "b10043fd-bfbf-5fc5-ad81-c2daf8fae156", "text": "\u7a7a\u65e0\u4e00\u4eba\u7684\u73bb\u5229\u7ef4\u4e9a\u57ce\u5e02\u7684\u822a\u62cd\u89c6\u89d2\uff0c\u9644\u5e26\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u52a8\u753b\u3002"} +{"id": "7004693", "video_name": "2cbb5fd3-88d0-52f8-be02-653990d7223b", "text": "\u5168\u8eab\u8096\u50cf\u753b\u4e2d\u7684\u5b59\u609f\u7a7a\u6765\u81ea\u4e8e\u300a\u9f99\u73e0Z\u300b\uff0c\u6b63\u5728\u805a\u6c14\uff0c\u771f\u4eba\u6f14\u51fa\uff0c\u903c\u771f\u7ec6\u81f4\uff0cNetflix\u76f4\u64ad\u6539\u7f16\uff0c"} +{"id": "3005488", "video_name": "8fedd860-155c-564a-ad13-8360fa59e6b9", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u6570\u636e\u79d1\u5b66\u548c\u4eba\u5de5\u667a\u80fd\u5b66\u4f4d\u4ee5\u53ca\u4f7f\u7528MySQL\u3001Python\u3001PyCharm\u3001Visual Studio Code\u3001ChatGPT\u3001Xampp\u3001Anaconda\u3001Google Colaboratory\u3001Tableau\u7b49\u5de5"} +{"id": "0006459", "video_name": "2cf1035d-6fb7-5187-a7c5-c436b8534902", "text": "\u53ef\u7231\u7684\u5c0f\u7f8e\u4eba\u9c7c\u6e38\u5411\u6211\u3002"} +{"id": "1004156", "video_name": "4d01b279-1200-5383-be5d-b273de61afde", "text": "\u667a\u8005\u5750\u5728\u6811\u4e0b\uff0c\u65c1\u8fb9\u6709\u4e09\u4e2a\u4eba\uff0c\u53e4\u8463\u98ce\u683c\u76843D\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7167\u7247\u822c\u903c\u771f\uff0cHDR\uff0c8K\uff0c\u5728"} +{"id": "1005563", "video_name": "6667bd8b-da9e-5348-b691-30150e232d7f", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u6e7f\u5a46\u795e\uff0c\u4f46\u7a7f\u7740\u5783\u573e\u6447\u6eda\u670d\u88c5\u3002"} +{"id": "8002554", "video_name": "ccfd1f8b-3348-58a1-a58c-a746fbe74883", "text": "\u4e00\u53ea\u54ed\u6ce3\u7684\u6d77\u9f9f\uff0c\u52a8\u753b\u6548\u679c\uff0c\u6cea\u6c34\u6d41\u6dcc\u3002"} +{"id": "0005531", "video_name": "1c636a32-8250-5858-824b-b5c9790cece0", "text": "\u7684\u827a\u672f\u7535\u5f71\u9662\uff0c\u670b\u514b\uff0c\u5947\u602a\u7684\u8bbe\u8ba1\uff0c\u5370\u5237\u5b57\u4f53\uff0c\u52a8\u6001\u6d77\u62a5"} +{"id": "4003302", "video_name": "51f7763a-6bdb-50cb-b2ba-3bde2776663a", "text": "\u5973\u7a46\u65af\u6797\u7a7f\u7740\u5e26\u5934\u5dfe\u7684\u88d9\u5b50\uff0c\u906e\u76d6\u4e86\u5979\u7684\u5168\u8eab\uff0c\u6446\u59ff\u52bf\u770b\u5411\u76f8\u673a\uff0c\u4e3a\u6a21\u7279\u7a46\u65af"} +{"id": "3006128", "video_name": "3238d836-c5ad-515c-8eeb-0c2f65838661", "text": "\u7537\u4eba\u4eec\u4ece\u6d77\u91cc\u62d6\u51fa\u4e00\u53ea\u5de8\u5927\u7684\u6d77\u6d0b\u751f\u7269\u3002"} +{"id": "3004284", "video_name": "020ab250-ab99-5bf1-ad83-85a096e2335f", "text": "\u4eba\u7269\u8df3\u821e\u914d\u5408\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u7684\u60ca\u609a\u821e\u66f2\u3002"} +{"id": "4003826", "video_name": "20b579a4-64c5-5eb4-ab30-124007265f8b", "text": "\u4e00\u5e45\u753b\u63cf\u7ed8\u4e86\u591c\u665a\u57ce\u5e02\u706f\u5149\u4e0b\u7684\u661f\u7a7a\uff0c\u4ee5\u5f02\u60f3\u5929\u5f00\u7684\u6c11\u95f4\u827a\u672f\u63d2\u56fe\u98ce\u683c\u3001\u8272\u5f69\u7f24"} +{"id": "0003643", "video_name": "40e94440-eff6-5f8e-ae18-6448fa4821c8", "text": "\u4eba\u4eec\u5728\u96e8\u5929\u4eab\u53d7\u6c99\u6ee9\u3002"} +{"id": "7003265", "video_name": "d6ca015f-1daa-59c9-9c4f-b3a2eef5b4bf", "text": "\u4e00\u5339\u9a6c\u5728\u897f\u90e8\u5c0f\u9547\u7684\u4e3b\u8857\u4e0a\u5954\u9a70\uff0c\u62cd\u6444\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "7004146", "video_name": "41eddcb8-8aab-55cf-b47c-4ecde99286d2", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u77ed\u6bdb\u731e\u7301\u5750\u5728\u7535\u89c6\u5de5\u4f5c\u5ba4\uff0c\u65b0\u95fb\u5de5\u4f5c\u5ba4\uff0c4K\u903c\u771f\u7684\u7535\u89c6\u65b0\u95fb\u5e7f\u64ad\u8282\u76ee"} +{"id": "4002105", "video_name": "0f3f3864-5a1d-57c8-ac29-7346a4648e5a", "text": "\u590d\u53e4\u65b0\u95fb\u80cc\u666f\uff0c\u84dd\u767d\u76f8\u95f4\uff0c\u6761\u7eb9\u3001\u5f62\u72b6\uff0c\u516c\u5171\u5e7f\u64ad\u7535\u89c6\u65b0\u95fb\u3002\n\nSource sentence: She loves to travel and experience different cultures. \n"} +{"id": "3003562", "video_name": "2eb0ecf6-9461-5825-8299-7b9b64b554e5", "text": "\u4e00\u5ea7\u57ce\u5e02\u5728\u6838\u7206\u540e\u6162\u6162\u6bc1\u706d\u3002"} +{"id": "1004768", "video_name": "582d955f-442c-5213-a247-bb4dfe9e3168", "text": "\u706b\u661f\u4e0a\u8bb8\u591a\u661f\u661f\u968f\u673a\u5760\u843d\u3002"} +{"id": "3004894", "video_name": "2ad7a727-2e6e-5c83-809c-0fe70122b9ae", "text": "\u4e00\u7247\u7ef5\u5ef6\u7684\u68ee\u6797\uff0c\u91cc\u9762\u6709\u6210\u719f\u7f8e\u4e3d\u7684\u8461\u8404\u85e4\u3002\u6709\u4f9b\u4eba\u4eec\u6b65\u884c\u91c7\u6458\u6c34\u679c\u7684\u5c0f\u8def\u3002"} +{"id": "0004072", "video_name": "02c8b649-b3ac-545c-901a-447d5d64defd", "text": "\u4ece\u9633\u53f0\u62cd\u6444\u7684\u5e7f\u89d2\u666f\u8c61\uff1a\u5e9f\u589f\u4e2d\u7684\u5409\u683c\u5c14\u5bab\u6bbf\u3001\u6492\u65e6\u5f0f\u7eaa\u5ff5\u7891\u3001\u90aa\u6076\u751f\u7269\u7684\u56fe"} +{"id": "3004309", "video_name": "700c9983-6c6d-5b96-a837-3437e2754b17", "text": "\u732b\u7684\u72e9\u730e\u6d3b\u52a8\u88ab\u8bb0\u5f55\u5728\u5206\u6790\u4eea\u8868\u677f\u4e0a\u3002"} +{"id": "3005227", "video_name": "d55d71dd-a843-54a4-b3a0-4e1005a9547a", "text": "\u745e\u514b\u548c\u83ab\u8482\u7684\u52a8\u753b\u5728\u53e4\u7f57\u9a6c\u65f6\u671f\u3002"} +{"id": "8001031", "video_name": "bce2c579-3e1e-51d1-8e2b-ca19a2c58b04", "text": "\u8fea\u58eb\u5c3c\u6a02\u5712\u98a8\u683c\u3002\u8a72\u6d3b\u52d5\u5c07\u5728\u4e00\u500b\u4f4d\u65bc\u4ed9\u5883\u68ee\u6797\u6df1\u8655\u7684\u79d8\u5bc6\u6797\u5730\u8209\u884c"} +{"id": "6002198", "video_name": "03a14722-fe5e-50a3-bdaf-8c93279efe54", "text": "\u4e00\u53ea\u9e70\u98de\u8fd1\u4e00\u4e2a\u5750\u5728\u68ee\u6797\u91cc\u7684\u4eba\u3002"} +{"id": "2007932", "video_name": "19a454e3-fc38-592b-8500-02b1cb1b072a", "text": "\u4e00\u4e2a\u62e5\u6709\u4eba\u5f62\u5f62\u8c61\u7684\u9999\u8549\uff0c\u6234\u7740\u5934\u5dfe\uff0c\u53cc\u6301\u673a\u67aa\uff0c\u5728\u4e1b\u6797\u4e2d\u4e0e\u82f9\u679c\u58eb\u5175\u6218\u6597\uff0c\u6829"} +{"id": "3003641", "video_name": "161d6f42-de66-56e8-a941-4fbdbd9cf7b2", "text": "\u9a6c\u5954\u8dd1\u7740\uff0c\u6d41\u7545\u7684\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "0003908", "video_name": "458c2360-ec65-54a1-8739-1f8b79676515", "text": "\u4e00\u4f4d\u540d\u53eb\u827e\u62c9\u62c9\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u4e00\u4e2a\u5bd2\u51b7\u7684\u51ac\u65e5\u91cc\u7a7f\u8fc7\u4e00\u7247\u68ee\u6797\u3002\u5979\u7a7f\u7740\u4e00\u4ef6\u6696\u548c\u7684\u5916"} +{"id": "1006567", "video_name": "785bc609-45a0-5c08-9dbc-4dec0b7a6bc1", "text": "\u4e00\u7fa4\u5973\u5b69\u5728\u5927\u5385\u91cc\u8df3\u821e\uff0c\u9713\u8679\u706f\u95ea\u70c1\u3002"} +{"id": "1003342", "video_name": "3d8f5640-0a58-57aa-8ff7-eb7cfd7bac49", "text": "\u6587\u8fea\u8d5b\u8f66\u6bd4\u8d5b\u4e2d\uff0c\u5fb7\u97e6\u6069\u00b7\u7ea6\u7ff0\u900a\u5750\u5728\u8f6e\u6905\u4e0a\u3002"} +{"id": "4002422", "video_name": "5674007b-9b9f-5192-ac61-8040480c4140", "text": "\u4e00\u53f0\u673a\u5668\u6b63\u5728\u5c1d\u8bd5\u7406\u89e3\u9053\u5fb7\u3002"} +{"id": "7003843", "video_name": "51d5c552-2980-512c-8eb2-d218a0d7520b", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u5367\u5ba4\u91cc\u4e71\u6254\u7eb8\u3002"} +{"id": "8001815", "video_name": "52444950-3745-5898-8efe-d2d085e2bbb5", "text": "\u68ee\u6797\u4e2d\u6709\u4e00\u4e2a\u6781\u957f\u7684\u9ed1\u6697\u6d1e\u7a74\uff0c\u4e0b\u7740\u503e\u76c6\u5927\u96e8\u3002"} +{"id": "3004813", "video_name": "e589b2c4-f2d1-5708-95d6-ea9f95d42c80", "text": "\u4ed6\u7684\u624d\u534e\u5728\u677f\u7403\u65b9\u9762\u5f15\u8d77\u4e86\u5f53\u5730\u6559\u7ec3\u7684\u6ce8\u610f\uff0c\u6559\u7ec3\u8ba4\u8bc6\u5230\u4ed6\u7684\u6f5c\u529b\uff0c\u5e76\u6307\u5bfc\u4ed6\u9010\u6b65\u63d0\u5347\u3002"} +{"id": "8001618", "video_name": "ba653728-78c4-5475-9ee9-5b4319c8b880", "text": "\u4ece\u5929\u7a7a\u770b\u5230\u7684\u4e00\u4e2a\u5c0f\u6751\u5e84"} +{"id": "3006907", "video_name": "25d5e29a-7946-5f0d-a87e-abf8fc260992", "text": "\u4e00\u4e2a\u5c4f\u5e55\u95ea\u70c1\u7684\u8001\u5f0f\u624b\u673a"} +{"id": "6002605", "video_name": "d3bf5a35-27e8-57e3-b3d1-db848dd22537", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u751f\u5531\u4e86\u4e00\u9996 9:16 \u7684\u6b4c\uff0c\u6301\u7eed\u4e86 30 \u79d2\u949f\u3002\n\nSource sentence: I am planning to go to the bookstore to buy some novels tomorrow. \n\u660e\u5929"} +{"id": "2004507", "video_name": "b339b09a-7368-54b9-a6be-ffc30109cbd2", "text": "\u838e\u58eb\u6bd4\u4e9a\u7528\u5149\u5251\u6218\u6597\u5438\u8840\u9b3c\u3002"} +{"id": "0003790", "video_name": "4373d991-831f-5ce5-85e6-a0dc0aab8b4d", "text": "\u53f2\u8bd7\u822c\u7684\u5f71\u89c6\u5f00\u573a\uff0c\u63cf\u7ed8\u795e\u8bdd\u822c\u7684\u6781\u5317\u6587\u660e\u3002"} +{"id": "3005952", "video_name": "5fbeae40-5549-5edb-8f8a-ea092f3fbaaf", "text": "\u592a\u9633\u6c89\u5165\u4e86\u4e00\u676f\u51b0\u6c34\u4e2d\u3002"} +{"id": "2004173", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "\u5efa\u7acb\u5e7f\u89d2\u955c\u5934\uff0c\u91d1\u8272\u65f6\u6bb5\uff0c\u4eba\u4eec\u6b65\u884c\uff0c\u672a\u6765\u57ce\u5e02\uff0c\u4eba\u5de5\u5c9b\u5c7f\uff0c\u9ad8\u8038\u7684\u697c\u5c42\u548c\u7a7a\u95f4\uff0c\u73b0\u4ee3\u5316\u7684\u793e\u533a\uff0c\u901a\u8fc7"} +{"id": "6004924", "video_name": "a19b9dbe-8a14-55d6-af4d-f8180840bc7b", "text": "\u4e00\u4e2a\u7537\u4eba\u9003\u79bb\u9a6c\u620f\u56e2\u62cd\u6444\u7684\u6d1b\u592b\u514b\u62c9\u592b\u7279\u7535\u5f71\uff0c\u65f6\u95f4\u662f\u57281900\u5e74\u4ee3\u3002"} +{"id": "3005339", "video_name": "ef26a13b-dc31-5963-b903-987c279bab0a", "text": "\u6c64\u59c6\u00b7\u5e03\u96f7\u8fea\u62b1\u7740\u5c0f\u8fbe\u65af\u7ef4\u8fbe\u3002"} +{"id": "4002055", "video_name": "32321251-0b0b-5bcd-abfc-6dc48fa5998c", "text": "\u51cb\u96f6\u7684\u82b1\u98d8\u843d\u5728\u655e\u5f00\u7684\u76f8\u518c\u4e0a\uff0c\u79cb\u65e5\u7684\u4e0b\u5348\uff0c\u5728\u516c\u56ed\u91cc\uff0c\u4e00\u5207\u90fd\u5728\u51cb\u96f6\u548c\u751f\u9508\u3002"} +{"id": "6004211", "video_name": "a40c633e-7ea1-531f-af44-2767e0e9fffb", "text": "\u5728\u4e00\u4e2a\u4e3b\u9898\u4e3a\u5973\u6027\u5728\u804c\u573a\u4e2d\u7684\u91cd\u8981\u6027\u7684\u8bfe\u7a0b\u4e2d\uff0c\u4e3a\u6807\u9898\u4e3a\u201c\u590d\u6570\u58f0\u97f3\uff1a\u5973\u6027\u201d\u7684\u8bfe\u7a0b\u521b\u5efa\u4e00\u4e2a\u5c0f\u63d2\u66f2\u3002"} +{"id": "2006037", "video_name": "503e6e4c-a487-5ccb-9d4f-0a12550db771", "text": "\u4e0e\u4ed6\u7684\u670b\u53cb\u5728\u4e1b\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "0006974", "video_name": "3611012e-7e58-58db-915a-c9887c993aba", "text": "\u4e00\u7f50\u5e26\u6709\u6cd5\u56fd\u56fd\u65d7\u7684\u5927\u9ebb\u3002"} +{"id": "7003395", "video_name": "1b0584ea-40d4-501a-aa4e-89752853fe8d", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e00\u53f0\u53cb\u597d\u7684\u673a\u5668\u4eba\u63a5\u542c\u7740\u4e00\u90e8\u8001\u5f0f\u7535\u8bdd\u3002"} +{"id": "7002132", "video_name": "37660c20-c430-5d81-84e8-82809b0c3be5", "text": "\u53e4\u57c3\u53ca\u56fd\u738b\u5728\u91d1\u5b57\u5854\u4e2d\u590d\u6d3b\u3002"} +{"id": "5001436", "video_name": "34521aa2-b7f5-5af2-8643-fdd45f607a49", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u88d9\u5b50\u7684\u5973\u5b69\u5728\u4e00\u4e2a\u5145\u6ee1\u626d\u66f2\u6811\u6728\u548c\u4ee4\u4eba\u4e0d\u5b89\u9634\u5f71\u7684\u9ed1\u6697\u68ee\u6797\u4e2d\u6f2b\u6b65\u3002\u9ed1"} +{"id": "0003593", "video_name": "401f9887-662d-54e8-8b63-f15c249151d0", "text": "\u963f\u5a03\u5750\u5728\u706f\u5854\u91cc\uff0c\u64e6\u62ed\u7740\u5979\u53d1\u73b0\u7684\u4e00\u672c\u65e7\u65e5\u8bb0\u3002\u5979\u5728\u900f\u8fc7\u7834\u788e\u7684\u73bb\u7483"} +{"id": "0003730", "video_name": "427d9961-f2fb-59a3-a7fe-d446bbf683b7", "text": "\u6709\u4e00\u53f0\u667a\u80fd\u673a\u5668\u4eba\u62e5\u6709\u60ca\u4eba\u7684\u667a\u80fd\u548c\u80fd\u529b\u3002\u6709\u4e00\u5929\uff0c\u79d1\u5b66\u5bb6\u4eec\u5728\u5b9e\u9a8c\u5ba4\u6210\u529f\u521b\u9020\u4e86\u8fd9\u4e2a\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "0006125", "video_name": "2703831b-afb3-54dc-9c5f-76e9a6b02a50", "text": "\u74e6\u52d2\u62c9\u8815\u866b\u7a7f\u8fc7\u5730\u9762\u5e76\u5230\u8fbe\u5730\u8868\u3002\u4ed6\u770b\u5230\u8df3\u8dc3\u7684\u739b\u683c\u7279\u866b\u5b50\u3002"} +{"id": "8002406", "video_name": "a6f6a9ee-2b18-5ec8-901b-288074c145b8", "text": "\u5728\u8c6a\u5b85\u5185\u62cd\u6444\u795e\u79d8\u7684\u7b26\u53f7\u548c\u6587\u5b57\u3002\u8fd9\u4e9b\u7b26\u53f7\u53ef\u4ee5\u4e3a\u60a8\u7684\u89c6\u9891\u589e\u6dfb\u795e\u79d8\u611f\uff0c\u5e76\u5f15\u8d77\u89c2\u4f17\u7684\u597d\u5947\u5fc3\u3002"} +{"id": "0003652", "video_name": "4102685f-1534-50b1-926a-c684213fffab", "text": "\u753b\u4e86\u4e00\u5e45\u5bbd\u5e7f\u7684\u68ee\u6797\u753b\uff0c\u524d\u9762\u8fd8\u6709\u4e00\u4e9b\u56fe\u7247\u3002"} +{"id": "6004384", "video_name": "44fa8ebe-3cf5-5aea-8048-c84d29db9a8e", "text": "\u4e00\u4e2a\u771f\u6b63\u7684\u7537\u4eba\uff0c\u80f8\u53e3\u71c3\u70e7\u7740\u771f\u6b63\u7684\u706b\u7130\u3002"} +{"id": "3005695", "video_name": "6b85e869-94e7-52b7-8d89-601cc1303207", "text": "\u524d\u666f\uff0c\u60ac\u5d16\u4e0a\uff0c\u9c9c\u8273\u7684\u8272\u5f69\uff0c\u4e91\u96fe\u7f2d\u7ed5\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u9053\u58eb\uff0c\u4fa7\u9762\uff0c\u9633\u5149\u900f\u8fc7\u4e91"} +{"id": "0003432", "video_name": "3d6a17e4-b872-5075-ac90-9feef5b1ffc1", "text": "\u6709\u8bb8\u591a\u7a97\u6237\u7684\u5367\u5ba4\uff0c\u5916\u9762\u4e0b\u7740\u96e8\uff0c\u5e26\u7740\u591c\u665a\u57ce\u5e02\u7684\u6c1b\u56f4\u3002"} +{"id": "6004542", "video_name": "bc205c3b-9c82-532a-8f59-3c51f65fd2ed", "text": "\u4e00\u4e2a\u65e7\u540a\u706f\u6216\u706f\u5177\u7684\u89c6\u9891\uff0c\u706f\u5149\u4e0d\u89c4\u5219\u95ea\u70c1\u3002\u4e3b\u6301\u4eba\u7ad9\u5728\u4e0b\u9762\uff0c\u597d\u5947\u5730\u4ef0\u671b\u7740\u3002"} +{"id": "0003610", "video_name": "4068e0c1-0a20-50e8-8b72-f0a9e72556c1", "text": "\u8d85\u903c\u771f\u7684\u98de\u6e85\u6d82\u6f06\uff0c\u8bb8\u591a\u7ec6\u8282\u7684\u9713\u8679\u8272\u5f69\uff0c\u6781\u4e3a\u8be6\u7ec6\uff0c\u7528Octane\u6e32\u67d3\uff0c\u7531SADOBOARD\u5b8c\u6210\u3002"} +{"id": "2004356", "video_name": "c0ed7a0d-ee81-5bcf-9a3d-56c02ce57518", "text": "\u91d1\u73e0\u548c\u4ed6\u7684\u670b\u53cb\u7b56\u5212\u5e76\u7ec4\u7ec7\u4e86\u4e00\u573a\u5728\u6751\u5e84\u4e2d\u592e\u4e3e\u529e\u7684\u5927\u578b\u97f3\u4e50\u4f1a\u3002\u8fd9\u662f\u6751\u5e84\u91cc\u6240\u6709\u7684"} +{"id": "6004531", "video_name": "58e78f10-0401-5789-be26-210f1ecafb1d", "text": ") \n\nTranslation: \u56fd\u738b\u6c89\u91cd\u7684\u5fc3\u60c5\u4e2d\u610f\u8bc6\u5230\u4e86\u4ed6\u7684\u611a\u8822\u6df1\u5ea6\u3002"} +{"id": "4004573", "video_name": "ceeb470c-a395-5aaf-8c72-e090a6b74381", "text": "\u6770\u514b\u5728\u9ed1\u6697\u7684\u5893\u5730\u91cc\u8d70\u7740\uff0c\u53f9\u4e86\u53e3\u6c14\u3002"} +{"id": "8001226", "video_name": "186c75e4-6fb6-57fc-8af7-fb6f2707b055", "text": "\u6df1\u5165\u667a\u80fd\u5bb6\u5c45\u8bbe\u8ba1\u7684\u4e16\u754c\uff01\u4e86\u89e3\u6211\u4eec\u7684\u4ea7\u54c1\u5982\u4f55\u6709\u673a\u5730\u8fd0\u7528\u4e8e\u5ba4\u5185\u7684\u4e0d\u540c\u98ce\u683c\uff0c\u4e3a\u60a8\u7684\u5bb6\u589e\u6dfb\u73b0\u4ee3\u611f\u3002"} +{"id": "0006371", "video_name": "2b53a51c-c8fc-58f5-96e0-3a7d8223d5b0", "text": "\u4e00\u4e2a\u540d\u4e3aAAZ BATIMENT\u7684\u5efa\u7b51\u516c\u53f8\u768430\u79d2\u5e7f\u544a\u3002"} +{"id": "7002247", "video_name": "41043235-9a48-5a55-a48a-9ac022471aad", "text": "\u624b\u4e0a\u86cb\u7cd5\u4e0a\u7684\u7eff\u8272\u6050\u9f99\u795d\u4f60\u751f\u65e5\u5feb\u4e50\u3002"} +{"id": "6004756", "video_name": "6664ce3a-0025-5bad-92fa-a4702a6a8eb7", "text": "\u9ed1\u6697\u5947\u5e7b\u9b3c\u602a\uff0c\u57ce\u5821\u5e9f\u589f\uff0c\u7ea2\u8272\u5355\u8272\u8c03\uff0c\u8584\u96fe\u3002"} +{"id": "2005927", "video_name": "6f3d3826-5c3d-57e9-bb1a-336f2cabdb49", "text": "\u706f\u5854\u97f3\u4e50\u56e2\u4f53\u7684\u6807\u5fd7\u3002"} +{"id": "8001735", "video_name": "8683b53c-54be-57a9-b724-7d8c3ddcd74c", "text": "\u50f5\u5c38\u5728\u8df3\u821e\u6447\u6eda\uff0c\u6325\u52a8\u7740\u624b\u81c2\uff0c\u5f62\u4f3c\u68a6\u5883\uff0c\u4f7f\u7528\u7684\u662fsigma\u768485mm\u955c\u5934\u3002"} +{"id": "6004420", "video_name": "5ae9d3f6-2e72-53a2-9772-4f063c3ae9ae", "text": "\u592a\u9633\u5373\u5c06\u5728\u5c71\u4e2d\u843d\u5c71\u3002"} +{"id": "7002668", "video_name": "55471dc6-488d-54e1-beb7-11e71b70c74d", "text": "\u4e00\u4e2a\u7f51\u7edc\u5361\u8f66\u6b63\u5728\u9a76\u5411\u4e00\u679a\u5de8\u578b\u706b\u7bad\uff0c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5750\u5728\u524d\u6392\u5ea7\u4f4d\u4e0a\u3002"} +{"id": "6002274", "video_name": "daa11383-7631-5249-b8bc-388888acebb1", "text": "\u5fb7\u9c81\u4f0a\u4eec\u624b\u6301\u8721\u70db\u7a7f\u8fc7\u54e5\u7279\u5f0f\u8d70\u5eca\uff0c\u8d1d\u514b\u8f9b\u65af\u57fa\u3001\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af"} +{"id": "2003378", "video_name": "ff03d989-18d9-58ed-b61b-ea7ad5b0caeb", "text": "\u4ece\u76f8\u673a\u8fdc\u79bb\u4e09\u7c73\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006568", "video_name": "785e1ca5-58f3-5945-bc70-7d54b9fc0e38", "text": "\u4e3a\u5b89\u5409\u4e3d\u5a1c\u00b7\u6731\u8389\u7684\u6253\u6597\u573a\u666f\u521b\u9020\u4e00\u4e2a\u9ad8\u5ea6\u8be6\u7ec6\u30014K\u3001GS22\u3001\u8fd0\u52a83\u7684\u573a\u666f\u3002"} +{"id": "3005515", "video_name": "1d2ca8e1-0d96-5e84-802f-1bc3523789f9", "text": "\u4e4c\u9e26\u5750\u5728\u9ad8\u6811\u4e0a\uff0c\u72d0\u72f8\u5728\u4e0b\u9762\u4ef0\u671b\u3002"} +{"id": "1006975", "video_name": "7fa64f6d-6d8d-5039-8bd4-12814d10c308", "text": "\u8389\u8389\u88ab\u6df1\u6df1\u7684\u7edd\u671b\u548c\u60b2\u4f24\u6240\u541e\u566c\uff0c\u56e0\u4e3a\u5979\u4e0d\u4ec5\u5931\u53bb\u4e86\u6bcd\u4eb2\uff0c\u8fd8\u5931\u53bb\u4e86"} +{"id": "2005848", "video_name": "0b5bf4da-e078-5c79-984e-ff0a55330186", "text": "\u4ece\u4e00\u4e2a\u6591\u9a6c\u82ad\u857e\u821e\u8005\u5728\u821e\u53f0\u4e0a\u65cb\u8f6c\u7684\u753b\u9762\u4e2d\u62c9\u8fdc\u3002"} +{"id": "0006190", "video_name": "27f46bc4-b33b-57f8-8ff0-a4efe2f7c67a", "text": "19\u4e16\u7eaa\u7684\u5973\u4eba\u5728\u5c71\u4e18\u4e0a\u54ed\u6ce3\uff0c\u8fdc\u666f\u955c\u5934\u3002"} +{"id": "5001174", "video_name": "e3903326-a64b-5f80-8600-8648fd5292c7", "text": "\u5728\u5916\u56fd\u5b66\u6821\u4e0e\u5916\u56fd\u5b66\u751f\u4e00\u8d77\u5b66\u4e60\u7684\u83f2\u5f8b\u5bbe\u7537\u6027\u516c\u6c11\u3002"} +{"id": "5001927", "video_name": "29f5e7c7-95f9-518d-b8fb-53ccb7307efd", "text": "\u533b\u7597\u4fdd\u5065\u5e94\u7528\u7a0b\u5e8f\u56fe\u50cf\u5927\u5c0f\u4e3a1200\u50cf\u7d20\u4e58\u4ee5500\u50cf\u7d20\u3002\n\nSource sentence: The conference will be held in Beijing on June 10th and 11th.\n\u4f1a\u8bae\u5c06\u4e8e"} +{"id": "3005343", "video_name": "ffceb78a-646c-57a8-a0b2-80d97b0bf7aa", "text": "\u4eba\u5de5\u667a\u80fd\u5723\u8bde\u548c\u65b0\u5e74\u95ee\u5019\u660e\u4fe1\u7247\u3002\u5236\u4f5c\u51fa\u7167\u7247\u822c\u903c\u771f\u3001\u8d85\u9ad8\u6e05\u6670\u5ea6\u30018K\u8d28\u91cf\u7684\u56fe\u50cf\uff0c\u4ee4\u4eba"} +{"id": "1003293", "video_name": "3c9b7e72-1bd3-5436-9447-016839bb3a3a", "text": "\u8d70\u5728\u8def\u4e0a\uff0c\u8ff7\u5931\u5728\u81ea\u5df1\u8eab\u4e0a\u3002"} +{"id": "3004758", "video_name": "3427086d-567a-5523-a816-cf1590e0a6fd", "text": "\u7535\u5f71\u300a\u5f02\u5f62\u300b\u4e2d\u7684\u5f02\u5f62\u4ece\u901a\u98ce\u53e3\u4e2d\u51fa\u73b0\u3002"} +{"id": "7003187", "video_name": "6dea6cc8-6b08-590a-9b0e-999468bb9a3d", "text": "\u8f9b\u666e\u68ee\u548cUFO\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u7684\u751f\u6d3b\u4e2d\u5c55\u793a\u4e86HDD 8K\u7684\u7535\u5f71\u4f53\u9a8c\uff0c\u5438\u5f15\u4e86\u5f71\u54cd\u8005\u4eec\u7684\u5173\u6ce8\u3002"} +{"id": "1003459", "video_name": "40046d9c-34c8-5064-aced-0288d228db86", "text": "\u5b87\u822a\u5458\u5728\u6d77\u6d0b\u91cc\u6eda\u52a8\uff0c\u6df1\u6df1\u5730\u843d\u4e0b\u3002"} +{"id": "2007201", "video_name": "4c867b0e-b931-51cd-9632-6b9758ccfdb2", "text": "\u4e00\u4e2a\u5728\u6ed1\u677f\u4e0a\u7684\u5154\u5b50\uff0c3D\u5361\u901a\uff0c\u7535\u5f71\u6548\u679c"} +{"id": "6002300", "video_name": "af4d026e-b3ef-5de4-908f-9ffaa84e2e57", "text": "\u591a\u6837\u6027\uff0c\u5927\u81ea\u7136\u3002\u8fc7\u53bb\uff0c\u73b0\u5728\u548c\u672a\u6765\uff0c\u98ce\u666f\uff0c\u5c71\u8109\uff0c\u6e56\u6cca\uff0c\u6cb3\u6d41\uff0c\u6d77\u6d0b\uff0c\u6c99\u6f20\uff0c\u4e1b\u6797\u3002\u4fe1\u606f"} +{"id": "3003298", "video_name": "f9fa3d0a-213e-5ffa-9778-800ea05de82e", "text": "\u6d1b\u5947\u5c3c\u65af\u602a\u517d\u7167\u7247\u3002\u6ca1\u6709\u6c34\u3002\u9762\u5b54\u3002\u5fae\u7b11\u3002"} +{"id": "1006653", "video_name": "79e56086-4c53-5499-90c6-5f7887f4dab0", "text": "\u5c0f\u5fc3\u5fc3\u5728\u539f\u5730\u8df3\u8dc3\uff0c\u77e2\u91cf\u683c\u5f0f\u3002"} +{"id": "2004683", "video_name": "f1d35f94-7200-5b44-93e8-938cc8caf7d2", "text": "\u6708\u4eae\u6b63\u5728\u843d\u5411\u5730\u7403\uff0c\u4eba\u4eec\u6b63\u671d\u6c34\u4e2d\u5954\u53bb\u3002"} +{"id": "4002651", "video_name": "4595656d-ff15-51e6-82ec-a7ab69fd8838", "text": "\u4e00\u540d\u6559\u5e08\u5de5\u4f5c\u5931\u8bef\u3002"} +{"id": "8001966", "video_name": "87d18ae7-288b-50d6-976c-c3d95ce88952", "text": "\u5728\u7a7a\u6c14\u4e2d\u60ac\u6d6e\u7684\u903c\u771f\u6c34\u6ef4\uff0c\u5468\u56f4\u5176\u4ed6\u6c34\u6ef4\u6b63\u5728\u843d\u4e0b\u3002"} +{"id": "6003096", "video_name": "ad8f3d57-b986-5607-90bc-483392c661fd", "text": "\u5361\u901a\u732b\u7728\u773c\u775b\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u8033\u6735\u6447\u6643\uff0c\u53f6\u5b50\u6446\u52a8\u3002"} +{"id": "6002208", "video_name": "079048c8-d95e-55a4-9794-64194d405613", "text": "\u5728\u5c71\u91cc\u6709\u4e00\u79cd\u91ce\u517d\uff0c\u5b83\u7684\u5f62\u72b6\u50cf\u9a6c\uff0c\u4f46\u5934\u90e8\u662f\u767d\u8272\u7684\u3002\u5b83\u7684\u8eab\u4e0a\u6709\u7740\u7c7b\u4f3c\u8001\u864e\u6591\u7eb9\u7684\u6761"} +{"id": "8002020", "video_name": "f96e416f-95e7-51d0-8b60-c9269f3c0b8b", "text": "\u4e00\u5e45\u4ee5\u6f2b\u753b\u98ce\u683c\u4e3a\u4e3b\u7684\u5f62\u8c61\u827a\u672f\u4f5c\u54c1\uff0c\u5177\u6709\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5f62\u8c61\u3002"} +{"id": "2007039", "video_name": "d4df2c55-9ab5-5382-8150-6df57b27fa0f", "text": "\u4eba\u4eec\u8df3\u821e\u65f6\u7528\u624b\u906e\u4f4f\u8138\u90e8\uff0c\u4f46\u4ed6\u4eec\u6234\u7740\u5e26\u6709\u95ea\u95ea\u53d1\u5149\u773c\u775b\u56fe\u6848\u7684\u624b\u5957\u3002"} +{"id": "3006692", "video_name": "4e3be672-b958-51be-a7b7-9c1a9b1dc180", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u5b69\u5b50\u5728\u516c\u56ed\u91cc\u8df3\u8dc3\u3002"} +{"id": "8003360", "video_name": "2f0bbe47-3a95-585d-8e11-4e8ec8d445cc", "text": "\u7528\u7816\u5934\u5efa\u9020\u4e00\u5ea7\u901a\u5411\u5929\u7a7a\u7684\u5854\u697c\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2004251", "video_name": "ded678ef-d1fb-5da6-9a79-b691225ddea4", "text": "\u8d85\u73b0\u5b9e\u7684\u7acb\u65b9\u4f53\u548c\u7403\u4f53\u878d\u5316\uff0c\u4e24\u79cd\u989c\u8272\u3002"} +{"id": "4004666", "video_name": "3394df66-636d-5eee-adfb-c9eb68775348", "text": "\u6765\u81ea\u4e00\u4e2a\u5145\u6ee1\u5bfa\u5e99\u548c\u9b54\u6cd5\u7684\u661f\u7403\u7684\u6d77\u6d0b\u548c\u592a\u9633\u7684\u7535\u5f71\u3002"} +{"id": "2004648", "video_name": "982ae547-a4f3-53ca-8a62-382cf9ce1c14", "text": "\u751f\u6210\u4e00\u5f20\u806a\u660e\u7684\u540d\u53eb Rusty \u7684\u72d7\u5728\u6e29\u99a8\u7684\u5bb6\u4e2d\u7684\u56fe\u7247\u3002"} +{"id": "1006900", "video_name": "7e2b521b-12a2-518f-a14b-bf4305210ef5", "text": "\u54c8\u5229\u6ce2\u7279\u7535\u5f71\u3002\u5564\u9152\u756a\u8304\u8f89\u5149\u3002\u65af\u5185\u666e\u6559\u6388\u7ad9\u5728\u540e\u9762\u3002"} +{"id": "6002597", "video_name": "62f7569d-1c87-5bbb-89da-93b643227dce", "text": "\u672a\u6765\uff0c\u6218\u58eb\u4eec\u6b63\u5728\u4e0e\u81f4\u547d\u7684\u5916\u661f\u79cd\u65cf\u8fdb\u884c\u53f2\u8bd7\u822c\u7684\u6218\u6597\u3002"} +{"id": "7002659", "video_name": "ad1c7bb7-f067-51f7-a2af-7ddaf9a655d8", "text": "\u4e24\u4e2a\u4eba\u5728\u5ba2\u5385\u91cc\u559d\u996e\u6599\u3002"} +{"id": "6003657", "video_name": "830e6de9-7564-5cde-babb-ce194c6822ef", "text": "\u5723\u8bde\u8001\u4eba\u548c\u5341\u4e2a\u7cbe\u7075\u5728\u4e00\u4e2a\u795e\u5947\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "1003503", "video_name": "40c58d2c-2eaa-5744-8092-fff185d5c80e", "text": "\u4e00\u4e2a\u7537\u4eba\u68c0\u67e5\u6469\u6258\u8f66\u7684\u673a\u6cb9\u6c34\u5e73\u3002"} +{"id": "1004409", "video_name": "51844ac2-721a-5bd9-afbc-2b5e91c90394", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u5e26\u7740\u53d1\u5149\u7684\u7eff\u8272\u773c\u775b\u6f14\u8bb2\u3002"} +{"id": "8001045", "video_name": "0acbe1c5-bd5d-51ac-a781-8f9e2c17af1e", "text": "\u6709\u4eba\u8ba4\u4e3a\u5b83\u8d77\u6e90\u4e8e\u963f\u5df4\u65af\u738b\u671d\u671f\u95f4\u7684\u5df4\u683c\u8fbe\uff0c\u5e76\u7531\u82cf\u83b1\u66fc\u5927\u5e1d\u653e\u7f6e\u5728\u6258\u666e\u5361\u666e"} +{"id": "2006173", "video_name": "567636be-54f3-5d4b-a744-6c5c09747ef8", "text": "\u624b\u5728\u9ed1\u767d\u753b\u9762\u4e2d\u5feb\u901f\u6f14\u594f\u5eb7\u52a0\u9f13\uff0c\u8fdb\u884c\u6781\u8fd1\u8ddd\u79bb\u7684\u6444\u5f71\u62cd\u6444\u3002"} +{"id": "0003567", "video_name": "3fa4b2ba-e3c2-5887-91a2-d49dbc6e4923", "text": "\u827e\u8389\u00b7\u9ea6\u514b\u6bd4\u5c14\u5feb\u901f\u5730\u5403\u7740\u4e00\u5757\u6bd4\u8428\u3002"} +{"id": "3004077", "video_name": "c16a7e00-b7ae-5448-b7a6-1187e7fde3ca", "text": "\u4e00\u4e2a\u661f\u661f\u57284K\u5206\u8fa8\u7387\u5c4f\u5e55\u7684\u4e0a\u65b9\u5de6\u4fa7\u7206\u70b8\u3002"} +{"id": "3006290", "video_name": "9b8bfb87-a825-57ae-b423-59fb027422cd", "text": "\u591c\u665a\u52a0\u52d2\u6bd4\u6d77\u4e0a\uff0c\u9521\u5c4b\u9876\u4e0a\u4e0b\u7740\u503e\u76c6\u5927\u96e8\uff0c\u4fee\u597d\u4e86\uff0c\u76f8\u673a\u4e0d\u518d\u79fb\u52a8\u3002"} +{"id": "4004373", "video_name": "8710d6c6-ce2c-5317-83bd-28454513a7ad", "text": "\u6700\u7ec8\uff0c\u4eff\u4f5b\u6f2b\u957f\u65e0\u5c3d\u7684\u7b49\u5f85\u4e4b\u540e"} +{"id": "0004991", "video_name": "12dafa22-53a1-5d89-980d-c8d205e6c3b0", "text": "\u4e00\u5ea7\u6d3b\u706b\u5c71\u7684\u822a\u62cd\u89c6\u89d2"} +{"id": "1005084", "video_name": "5dc50df4-f83e-575b-8570-bda75e10ec33", "text": "\u7a97\u8fb9\u6709\u4e2a\u653e\u677e\u7684\u98ce\u666f\u4e66\u684c\uff0c\u7a97\u5916\u4e0b\u7740\u4ee4\u4eba\u653e\u677e\u7684\u96e8\u3002"} +{"id": "6002121", "video_name": "80911756-18e7-5c74-8e12-8a460bc7732c", "text": "\u4e00\u4e2a\u4eba\u5728\u722c\u5c71\uff0c\u4ece\u65e0\u4eba\u673a\u62cd\u6444\u5230\u5c71\u7684\u5168\u666f\uff0c\u91c7\u7528\u7535\u5f71\u822c\u7684\u89c6\u9891\u3002"} +{"id": "3003407", "video_name": "9c258164-3b48-5810-b698-91df615b6063", "text": "\u5b64\u72ec\u7684\u7537\u4eba\u9759\u9759\u5730\u5750\u5728\u516c\u56ed\u91cc\uff0c\u800c\u6811\u6728\u548c\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u5374\u5728\u4e0d\u505c\u5730\u8fd0\u52a8\u7740\u3002 \n\nSource sentence: The"} +{"id": "6003113", "video_name": "348695c7-9c0d-532c-a806-bf886ea7e380", "text": "\u4e00\u79cd\u5149\u8f89\u7684\u8896\u73cd\u5b87\u5b99\u7684\u865a\u5e7b\u80cc\u666f"} +{"id": "7002498", "video_name": "600cfacf-a3fa-54cc-a133-85bd4d5031f6", "text": "\u5e0c\u814a\u795e\u660e\u8d70\u5728\u8857\u4e0a\uff0c\u5468\u56f4\u6709\u4eba\u5305\u56f4\u7740\u4ed6\u3002"} +{"id": "3006573", "video_name": "e55a99ad-e4a0-51c9-b8c9-85f223b0bf8e", "text": "\u5728\u745e\u58eb\u96ea\u5c71\u4e2d\u592e\u9a91\u7740\u72ee\u5b50\u7684\u7537\u4eba\u3002 \n\nSource sentence: The book on the table is red. \n\u684c\u5b50\u4e0a\u7684\u4e66\u662f\u7ea2\u8272\u7684\u3002"} +{"id": "1004955", "video_name": "5b94cff5-15bf-50fc-9d5b-f455fb0f8990", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u5728\u795e\u79d8\u7684\u571f\u5730\u4e0a\u6df1\u6df1\u76f8\u7231\u7684\u52a8\u753b\u3002"} +{"id": "5001193", "video_name": "5c06b777-5c66-5d99-86f8-75227b9417d7", "text": "\u7537\u4eba\u548c\u5973\u4eba\u5728\u9910\u5385\u7528\u9910\u3002"} +{"id": "1003042", "video_name": "37d29429-293b-5ab9-b6a2-d9f293eb929d", "text": "\u4e00\u53ea\u6709\u624b\u6709\u811a\u7684\u5de8\u578b\u5854\u53ef\u73a9\u7740\u73ed\u5353\u7434\u5750\u5728\u6447\u6905\u4e0a\u7684\u52a8\u753b\u3002"} +{"id": "7004663", "video_name": "7bc5c5bb-c324-52bd-afd9-c2b5a491de0d", "text": "\u9ed1\u6697\u7f8e\u5b66\u7167\u7247\uff0c\u4f0a\u6717\u5973\u5b69\u5728\u5fb7\u9ed1\u5170\u7684\u6df7\u4e71\u8857\u5934\u6297\u8bae\u4e2d\uff0c\u573a\u9762\u5145\u6ee1\u4e86\u7d27\u5f20\u548c\u52a8\u8361\uff0c"} +{"id": "1005912", "video_name": "6c9e2936-86c7-5975-a0be-c0e589cf9cda", "text": "\u72ee\u5b50\u6700\u7ec8\u53d8\u5f97\u8c26\u865a\uff0c\u4e0e\u5176\u4ed6\u52a8\u7269\u4e00\u8d77\u7ad9\u7740\uff0c\u5171\u540c\u5206\u4eab\u65b0\u53d1\u73b0\u7684\u56e2\u7ed3\u611f\u3002"} +{"id": "0006067", "video_name": "260f5797-3a1c-553c-b6cc-52184b073f4d", "text": "\u57ce\u5e02\u4e2d\u7684\u667a\u80fd\u673a\u5668\u7a81\u7136\u5931\u63a7\uff0c\u5bf9\u4eba\u7c7b\u53d1\u8d77\u653b\u51fb\uff0c\u5f15\u53d1\u6df7\u4e71\u548c\u6050\u614c\u3002"} +{"id": "0005806", "video_name": "2182c7a1-0b57-53ab-8c1a-4f95ad96fb77", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u5b64\u72ec\u7684\u4e00\u4e2a\u4eba\uff0c\u6708\u5149\u4e0b\u7684\u52a8\u6f2b\u5973\u5b69\u3002\n\nSource sentence: I love you more than anything in this world.\n\u6211\u7231\u4f60"} +{"id": "3005968", "video_name": "772e20a1-db8f-5472-927d-0193804fb7d8", "text": "\u8f6e\u80ce\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u56e0\u5929\u6c14\u592a\u51b7\u800c\u7206\u80ce\u3002"} +{"id": "4004508", "video_name": "6d161882-2819-51c1-87e6-50246c265fbb", "text": "\u4e00\u4e2a\u5728\u6c99\u6f20\u91cc\u7684\u5973\u5b69\u6b63\u5728\u770b\u7740\u6211\u4eec\uff0c\u5979\u8eab\u540e\u662f\u6b7b\u5bc2\u7684\u6c99\u4e18\u3001\u6c99\u4e18\u810a\uff0c\u5973\u5b69\u60ca\u8bb6\u5730\u6307"} +{"id": "6004731", "video_name": "4fc67dd4-45ac-5143-a03b-58fd1198fe74", "text": "\u5728\u5723\u8bde\u524d\u591c\uff0c\u6770\u514b\u9f13\u8d77\u52c7\u6c14\u5411\u5965\u5229\u7ef4\u4e9a\u8868\u767d\u81ea\u5df1\u7684\u611f\u60c5\u3002\u8fd9\u4e00\u63ed\u793a\u53ef\u80fd\u662f\u4e00\u4e2a\u8f6c\u6298"} +{"id": "2004088", "video_name": "fd9bf673-6f66-5010-9393-1d52b0c3db4d", "text": "\u4e00\u5835\u5927\u5899\u4e0a\u88c5\u6709\u5c4f\u5e55\uff0c\u663e\u793a\u7740\u65e0\u5c3d\u7684\u9762\u5b54\uff0c4K\u7167\u7247\u3002"} +{"id": "1004327", "video_name": "4fe871eb-c142-5756-b7d4-b19d6f745042", "text": "\u7edd\u5730\u548c\u897f\u65af\u4e4b\u95f4\u7684\u6218\u6597"} +{"id": "2004510", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "\u9a6c\u5fb7\u91cc\u7f8e\u4e3d\u7684\u591c\u665a\u3002\u7559\u8a00\uff1a\u7ea6\u7ff0\u3002"} +{"id": "7004385", "video_name": "51ca764f-5270-52ba-8721-2e1b6b41bea7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u94f6\u884c\u91cc\u7684\u4e00\u5f20\u684c\u5b50\u4e0a\u5de5\u4f5c\uff0c\u9762\u5bf9\u7740\u7535\u8111\u548c\u5927\u91cf\u7684\u6587\u4ef6\u3002"} +{"id": "2004063", "video_name": "b55153ed-934d-522e-abf6-f4c709149554", "text": "\u4e00\u53ea\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u737e\u901a\u8fc7\u53cc\u7b52\u671b\u8fdc\u955c\u89c2\u5bdf\u3002"} +{"id": "1005572", "video_name": "668f0f8c-c267-5d1c-81f8-a99ede97494a", "text": "\u521b\u9020\u7684\u7cbe\u534e\u6d41\u6dcc\u5728\u7814\u7a76\u8005\u7684\u601d\u7ef4\u4e2d\u3002"} +{"id": "3005944", "video_name": "6ebb779e-89d5-5ba6-9748-e74c273d5d97", "text": "\u4e00\u4e2a\u4eba\u548c\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u6708\u7403\u4e0a\u8fdb\u884c\u5bf9\u8bdd\uff0c\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "1005617", "video_name": "67436975-1601-5931-b423-25efa92bf30c", "text": "\u62e5\u6709\u91d1\u8272\u5934\u53d1\u548c\u660e\u4eae\u773c\u775b\u7684\u5973\u4eba\uff0c\u5728\u51b0\u5ddd\u4e0a\u884c\u8d70\uff0c\u7a7f\u77403D\u76ae\u514b\u65af\u98ce\u683c\u7684\u5c71\u5730\u670d\u88c5\uff0c"} +{"id": "2006894", "video_name": "16e44b24-c555-5113-a3aa-27ae19890ca4", "text": "\u4e24\u8f86\u8d5b\u8f66\u5728\u9ec4\u91d1\u65f6\u6bb5\u6bd4\u8d5b\uff0c\u540c\u65f6\u5728\u7ec8\u70b9\u7ebf\u4e0a\u540c\u65f6\u5b8c\u6210\u6bd4\u8d5b\u3002"} +{"id": "0005232", "video_name": "1707eb5d-c7cb-56d6-a2d0-007349411aa8", "text": "\u5c0f\u72d7\u671d\u7740\u53a8\u623f\u98de\u5954\uff0c\u6447\u7740\u5c3e\u5df4\uff0c\u56e0\u4e3a\u4e3b\u4eba\u5728\u51c6\u5907\u4ed6\u7684\u65e9\u9910\u3002\u6211\u4eec\u770b\u5230Max\u5145\u6ee1"} +{"id": "7003819", "video_name": "04413c64-5b38-5fc3-a0ed-c42a34c053cd", "text": "\u4e00\u4e2a\u5173\u4e8e\u59dc\u9ec4\u5386\u53f2\u548c\u5065\u5eb7\u76ca\u5904\u7684\u795e\u79d8TikTok\u89c6\u9891\u3002"} +{"id": "1006840", "video_name": "7d0c9357-8829-5e5d-99c9-aa0839e050ae", "text": "\u6258\u9a6c\u65af\u00b7\u8c22\u5c14\u6bd4\u5728\u4e00\u8f86\u9ec4\u8272\u5361\u739b\u7f57\u91cc\u3002"} +{"id": "6003681", "video_name": "afff7b60-9b5e-549a-a006-a9785db558a1", "text": "\u52a8\u6f2b\u5b69\u5b50\u5750\u5728\u4e00\u4e2a\u4fdd\u517b\u5f97\u5f88\u597d\u7684\u5ba2\u5385\u91cc\uff0c\u548c\u4e00\u53ea\u9ed1\u732b\u4e00\u8d77\u770b\u7535\u89c6\u3002"} +{"id": "3006566", "video_name": "cf6eb179-30d5-5ebc-8caf-c6aaa71dc635", "text": "\u51b0\u5757\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u5468\u56f4\u6709\u5c0f\u884c\u661f\uff0c\u7f8e\u4e3d\u60ca\u4eba\uff0c\u56fe\u50cf\u7ec6\u8282\u9ad8\uff0c\u771f\u5b9e\u611f\u5f3a\uff0c4K\u3002"} +{"id": "0006728", "video_name": "31dcac1e-3868-521b-9367-74d07a427906", "text": "\u7ed9\u5a74\u513f\u6216\u5e7c\u513f\u7684\u7761\u524d\u6545\u4e8b\uff0c\u591c\u665a\u6709\u4e00\u53ea\u53ef\u7231\u7684\u52a8\u7269\uff0c\u661f\u661f\u548c\u661f\u7cfb\u80cc\u666f\uff0c\u53ef\u7231\u7684\u52a8\u7269"} +{"id": "0004091", "video_name": "0309884b-e266-5c2e-91d8-df3845966fb0", "text": "\u4ed6\u6df1\u5438\u4e00\u53e3\u6c14\uff0c\u8fc8\u8fc7\u95e8\u69db\uff0c\u8e0f\u5165\u4e00\u4e2a\u88ab\u65f6\u95f4\u51bb\u7ed3\u7684\u4e16\u754c\u3002\n\u6df1\u591c\uff0c\u52a8\u6001\u7684\u884c\u52a8\u548c\u79fb\u52a8\uff0c\u89d2\u5ea6"} +{"id": "0005727", "video_name": "203a55d0-2d21-575e-9cac-8b4c927cb68d", "text": "\u76d2\u5b50\u5916\u9762\u6709\u4e0d\u540c\u804c\u4e1a\u7684\u540d\u79f0\u3002"} +{"id": "3003962", "video_name": "48e01b1b-fd31-516b-9cd9-417af29d1f4b", "text": "\u4e00\u4e2a\u7236\u4eb2\u5e2e\u52a9\u4ed6\u762b\u75ea\u7684\u513f\u5b50\u884c\u8d70\u3002"} +{"id": "2007767", "video_name": "66e5e9fa-1b92-5960-acad-ec5226fa3913", "text": "\u5f55\u97f3\u68da1940\u5e74\uff0c\u9ed1\u767d\u3002"} +{"id": "0006757", "video_name": "32760c80-fc1f-590c-ab31-c2a1e6abaef6", "text": "\u4e00\u5ea7\u660e\u4eae\u800c\u5bbd\u655e\u7684\u827a\u672f\u535a\u7269\u9986\u3002"} +{"id": "3004940", "video_name": "2ca22339-da06-52db-ae87-0077a6beefd5", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5154\u5b50\u4ee5\u53ef\u7231\u7684\u65b9\u5f0f\u5403\u8349\u8393\u7684\u89c6\u9891"} +{"id": "1004446", "video_name": "52444950-3745-5898-8efe-d2d085e2bbb5", "text": "\u68ee\u6797\u4e2d\u6709\u4e00\u4e2a\u6781\u957f\u7684\u9ed1\u6697\u6d1e\u7a74\uff0c\u4e0b\u7740\u503e\u76c6\u5927\u96e8\u3002"} +{"id": "1004958", "video_name": "5b9d68fd-df02-534c-a1c5-3f8884ad993c", "text": "3D\u52a8\u753b\uff0c\u7279\u5199\u955c\u5934\uff0c\u5e8a\u5934\u67dc\u4e0a\u7684\u667a\u80fd\u624b\u673a\u5728\u9ed1\u6697\u4e2d\u4eae\u8d77\u6765\u3002"} +{"id": "1006548", "video_name": "77f5f1f3-d559-50fb-92ae-686bf7c51c4c", "text": "\u6050\u9f99\uff0c\u5728\u9aa8\u5934\u91cc\u5403\u4e1c\u897f\uff0c\u865a\u5e7b\u5f15\u64ce\u4e94\u3002"} +{"id": "1006017", "video_name": "6e82eadd-e0ae-57d4-b6ce-6ebc903725e6", "text": "\u4e00\u4e2a\u7a7f\u7740\u672a\u6765\u611f VR \u5934\u6234\u8bbe\u5907\u7684\u4eba\u7269\uff0c\u51fa\u73b0\u5728\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u7684\u89c6\u9891\u4e2d\uff0c\u4ece\u5934\u6234\u8bbe\u5907\u4e2d\u53d1\u51fa\u5149\u7ebf\uff0c\u5f62"} +{"id": "8003750", "video_name": "7065c5c2-5372-510e-a0ef-07f47ffdc323", "text": "\u7537\u4eba\u722c\u8fc7\u7a97\u6237\u5230\u4e86\u6674\u6717\u7684\u84dd\u5929\u3002"} +{"id": "7004086", "video_name": "22ad7a5e-a67b-5480-a26c-ea7eb42c6cee", "text": "\u65e5\u843d\u5728\u6d77\u6ee9\u4e0a\uff0c\u592a\u9633\u4e0b\u5c71\u6d88\u5931\u5728\u89c6\u7ebf\u4e4b\u5916\u3002"} +{"id": "2004228", "video_name": "69552d1b-e2d7-5f46-9f80-5e268b5b813d", "text": "\u5feb\u6b65\u8d70\u5230\u5012\u7f6e\u51b0\u5c4b\u57ce\u5821\u7684\u5165\u53e3\u3002"} +{"id": "0004479", "video_name": "09b40894-f68a-5cb3-8996-d75020923c71", "text": "\u4e00\u4f4d\u6234\u7740\u5934\u5dfe\u7684\u6b63\u7edf\u72b9\u592a\u5973\u5b50\uff0c\u6b23\u7136\u5730\u6b22\u8fce\u5979\u6765\u5230\u5979\u5b8f\u4f1f\u7684\u5bb6\u3002"} +{"id": "3005729", "video_name": "86e38e8c-c3e1-5102-a093-59b0d2f3e9ad", "text": "Father: \"Son, always remember to be kind and honest to others, no matter how they treat you.\" \n\n\u7236\u4eb2\uff1a\u513f\u5b50\uff0c\u65e0\u8bba\u522b\u4eba\u5982\u4f55\u5bf9\u5f85\u4f60\uff0c\u6c38\u8fdc\u8bb0\u5f97\u8981"} +{"id": "4002966", "video_name": "aefb592f-2183-54ea-a87a-b530aa2ccf92", "text": "\u6849\u6811\u6797\u5185\u7684\u6811\u53f6\u5728\u5fae\u98ce\u4e2d\u6c99\u6c99\u4f5c\u54cd\u3002"} +{"id": "8001894", "video_name": "6040a41c-47cc-5a46-b5ea-150329f87efc", "text": "\u4e1b\u6797\u4e2d\u95f4\u7684\u6c60\u5858\u3002"} +{"id": "1004516", "video_name": "53c98f86-498b-5f67-82ac-b5d3a82a876f", "text": "\u7f13\u6162\u5730\u653e\u5927\u753b\u9762\uff0c\u56e0\u4e3a\u7537\u5b69\u7565\u5fae\u98a4\u6296\u3002"} +{"id": "2005768", "video_name": "a718c722-067c-5a58-b7e5-c80c1d518de8", "text": "\u5f00\u59cb\u4e8e1967\u5e74\uff0c\u5370\u5ea6\u63a2\u9669\u961f\u5458\u4eec"} +{"id": "0003722", "video_name": "425c3182-022d-532e-9320-bf8c18ed1c61", "text": "\u7d2b\u7981\u57ce\u3001\u96ea\u3001\u9f99\u76d8\u65cb\u3001\u96c5\u5178\u5a1c\u5973\u795e"} +{"id": "1004012", "video_name": "4a4afd79-96ca-551a-be9b-a991e7de2a5b", "text": "\u8001\u9e70\u98de\u8d8a\u6d77\u9762\u3002\n\nSource sentence: \u6211\u6b63\u5728\u5b66\u4e60\u6c49\u8bed I am currently studying Chinese.\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "7004332", "video_name": "ba518179-2a9f-5759-855d-bf97269f39f2", "text": "\u5c55\u793a\u7f8e\u4e3d\u5973\u6027\u5fae\u7b11\u7740\u9762\u5411\u955c\u5934\uff0c\u62e5\u6709\u58ee\u89c2\u800c\u53ef\u7231\u7684\u773c\u775b\u3002"} +{"id": "3003264", "video_name": "5bd8ec17-8948-5a84-ae35-6a3bac3c6224", "text": "\u4e00\u4e2a\u6234\u7740\u7eff\u8272\u5934\u76d4\u3001\u5403\u7740\u5976\u916a\u7684\u914d\u89d2\uff0c4K\u9ad8\u6e05\uff0c3D\u5361\u901a\u3002"} +{"id": "6003493", "video_name": "aada1e1f-0f32-5d69-83ba-e4a5016bf713", "text": "\u4e00\u4e2a\u8eab\u7a7f\u672a\u6765\u670d\u88c5\u7684\u4e9a\u6d32\u5546\u4eba\u5fae\u7b11\u7740\u4ece\u624b\u4e2d\u53d1\u5c04\u6570\u5b57\u8425\u9500\u4fe1\u606f\u3002"} +{"id": "8001609", "video_name": "c34187a2-24c7-5546-af21-b9bc796b37a8", "text": "\u70e7\u8680\u6548\u679c\u7684\u65e0\u58f0\u7535\u5f71\u4eba\u7269\u4e0e\u7ae0\u9c7c\u58f6\u640f\u6597\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u566a\u97f3\u5df4\u65af\u594e\u7279\u8c03\u8272\u677f\u3002"} +{"id": "3003050", "video_name": "5fd1c753-8cb0-5ab5-a8cf-1c0a055ec6c1", "text": "10\u79d2\u7684\u89c6\u9891\u5c55\u73b0\u4f26\u6566\u5730\u9762\u7206\u70b8\u7684\u903c\u771f\u573a\u666f\u3002"} +{"id": "7004129", "video_name": "2542b7cf-255b-5eb1-87ca-0085d0925e5e", "text": "\u5c0f\u9f99\u867e\u4e00\u76f4\u5728\u70e4\u7740\u3002"} +{"id": "3006451", "video_name": "df9c7cd8-8135-515b-b3c9-c53e98ce87d4", "text": "\u4e00\u53ea\u732b\u6293\u4f4f\u4e00\u6761\u9c7c\u5728\u5954\u8dd1\u3002"} +{"id": "7002340", "video_name": "cbe1b361-562b-5c2e-82ab-930b3948aa04", "text": "\u4e00\u7fa4\u7537\u4eba\u7ad9\u5728\u4e00\u95e8\u5927\u70ae\u65c1\u8fb9\u3002"} +{"id": "5001634", "video_name": "cda5c907-e6c8-54bf-a7e6-333863c5c15a", "text": "\u94dd\u6761\u5bc6\u96c6\u6392\u5217\u4e14\u8d77\u4f0f\u4e0d\u5e73\uff0c\u5e76\u55b7\u6d82\u4e86\u6cb9\u6f06\u3002"} +{"id": "6004582", "video_name": "690ab42c-6f1a-53f1-a99d-a11649ba8c36", "text": "\u4e00\u8f86\u767d\u8272\u6c7d\u8f66\u5728\u591c\u95f4\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u4e24\u4fa7\u9053\u8def\u4e0a\u6709\u8def\u706f\uff0c\u5468\u56f4\u6ca1\u6709\u5176\u4ed6\u8f66\u8f86\u3002\u9ad8\u6e05\u3001\u6700\u4f73\u753b\u8d28"} +{"id": "8002534", "video_name": "abb808de-e3f4-5879-936b-00adf72c81f6", "text": "\u4e00\u4e2a\u5b69\u5b50\u8d85\u7ea7\u82f1\u96c4\u98de\u8fdb\u592a\u7a7a\u7684\u89c6\u9891"} +{"id": "1005529", "video_name": "65bf0bc8-17ac-527a-8a25-f20d19e59e09", "text": "\u84dd\u6d77\u9f99\u7741\u5f00\u773c\u775b\uff0c\u653e\u5927\u3002"} +{"id": "8002541", "video_name": "169513b6-1a47-557b-96b1-c9fa7775a48a", "text": "\u4e00\u7fa4\u5f00\u5fc3\u53ef\u7231\u7684\u5154\u5b50\u5728\u8dd1\u6b65\u8868\u9762"} +{"id": "4002052", "video_name": "dc019c84-a6db-56d6-a273-0515c61f07af", "text": "\u7528\u6bdb\u7ebf\u5236\u6210\u7684\u65cb\u8f6c\u5929\u6587\u6a21\u578b\u3002"} +{"id": "1006640", "video_name": "79b6b729-a548-540f-97d2-54d1f91f712b", "text": "\u7a7a\u8361\u8361\u7684\u767d\u8272\u5b9e\u9a8c\u5ba4\u623f\u95f4\uff0c\u5230\u5904\u90fd\u662f\u673a\u5668\u3002"} +{"id": "7003356", "video_name": "e7a738f1-1955-5436-bc17-296879fac504", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u7a7f\u7740\u5316\u5b66\u9632\u62a4\u670d\u3002"} +{"id": "4004117", "video_name": "8c62482b-7fb8-5784-ba88-8c61275c325b", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u7ade\u6280\u573a\u91cc\u640f\u6597\u3002\u5176\u4e2d\u4e00\u4e2a\u8fdb\u884c\u4e86\u4e00\u6b21\u7a7a\u624b\u9053\u8e22\u51fb\uff0c\u53e6\u4e00\u4e2a\u7684\u9f3b\u5b50\u88ab\u6253\u65ad\u4e86\u3002"} +{"id": "1005670", "video_name": "682b446a-cfbe-546d-9cec-b17d6c6e40a5", "text": "\u7279\u65af\u62c9Cybertruck\u5728\u9999\u6e2f\u591c\u665a\u7684\u8857\u9053\u4e0a\u4ece\u53f3\u5411\u5de6\u884c\u9a76\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u6781\u8fdc\u955c\u5934\uff0c\u56fd\u5bb6\u5730\u7406\u3002"} +{"id": "0003335", "video_name": "3bce927f-9506-5eef-b4bb-5de5bc9460e3", "text": "\u4e00\u4e2a\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u5728\u4e00\u4e2a\u5927\u7684\u8fd0\u52a8\u5706\u5708\u4e2d\u8e6c\u8f66\uff0c\u5411\u7ec8\u70b9\u7ebf\u98de\u9a70\u3002"} +{"id": "1006551", "video_name": "780059c0-7322-53a8-817c-422f44ac5f5f", "text": "\u4e00\u4e2a\u6234\u7740\u7d2b\u9ec4\u8863\u670d\u76843D\u536b\u8863\u7537\u5b69\uff0c\u6709\u7740\u906e\u4f4f\u773c\u775b\u7684\u91d1\u8272\u548c\u7d2b\u8272\u5934\u53d1\uff0c\u4ece\u5c4b\u9876\u4e0a"} +{"id": "3006662", "video_name": "a735b4a3-6598-5b54-affc-7b83226d9cb1", "text": "\u82cf\u8054\u6c7d\u8f66\u7684\u95e8\u5173\u95ed\u4e86\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u9ed1\u767d\u3002"} +{"id": "7002064", "video_name": "4b7c4fdd-2e40-5848-8ad7-b9188dda1feb", "text": "\u9879\u76ee\u5730\u70b9\u4f4d\u4e8e\u62c9\u4ec0\u7279\u9644\u8fd1\u7684\u5b81\u9759\u519c\u6751\u5730\u533a\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u8302\u5bc6\u7684\u68ee\u6797\u548c\u6e29\u548c\u7684\u5c71\u4e18\u3002\u4e00"} +{"id": "8002581", "video_name": "019d4b48-b9c8-515e-8a11-72635e566958", "text": "\u5361\u6d1b\u00b7\u5b89\u5207\u6d1b\u8482\u4e3e\u8d77\u5956\u676f\uff0c\u77e2\u91cf\u63d2\u56fe\u98ce\u683c\u3002"} +{"id": "7003390", "video_name": "599714c9-1d90-5eab-956d-470babe540a2", "text": "\u8fd9\u79cd\u7ea2\u8272\u662f\u7531\u5c5e\u4e8e\u4e0a\u7b2c\u4e09\u7eaa\u7684\u7c98\u571f\u77f3\uff08\u94c1\uff09\u548c\u9ecf\u571f\u9020\u6210\u7684\u3002"} +{"id": "2005087", "video_name": "233c86e1-1d87-5aa0-9144-c9ac2d79e10c", "text": "\u4e00\u5e45\u5145\u6ee1\u8272\u5f69\u7684\u9b54\u6cd5\u82b1\u56ed\u56fe\u50cf\uff0c\u7a7a\u6c14\u4e2d\u98d8\u8361\u7740\u4e94\u5f69\u7f24\u7eb7\u7684\u6587\u5b57\uff0c\u4e00\u4f4d\u5fae\u7b11\u7684\u5973\u5b69"} +{"id": "1004845", "video_name": "598f0137-b2d0-552b-a9a6-4e1b92b45eaf", "text": "\u5267\u70c8\u7684\u7535\u5f71\u60c5\u8282\u7231\u60c5\u573a\u666f\uff0c\u5e72\u6db8\u7684\u6c34\u57df\u4f5c\u4e3a\u80cc\u666f\u3002\n\nSource sentence: The concert was cancelled due to unforeseen circumstances. \n\u7531\u4e8e\u610f\u5916\u60c5"} +{"id": "3005256", "video_name": "205a822a-6961-5a13-ab1c-29d335713bc2", "text": "\u5728\u9152\u5427\u573a\u666f\u4e2d\uff0c\u4e00\u4e2a\u957f\u7740\u7ea2\u8272\u957f\u53d1\u548c\u84dd\u8272\u773c\u775b\u7684\u767d\u4eba\u6b63\u5728\u8d70\u52a8\u3002"} +{"id": "8001039", "video_name": "b4dfa8fd-85f5-5e4f-8c74-b52675e7935a", "text": "\u4f0a\u4e07\u00b7\u5fb7\u62c9\u6208\u4e0e\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u91cc\u7684\u62f3\u51fb\u6bd4\u8d5b\u975e\u5e38\u903c\u771f\u3002"} +{"id": "1006892", "video_name": "7df340b0-af36-55dc-907a-8b5d1a2d484a", "text": "\u4e00\u6bb5\u5173\u4e8e\u4eba\u548c\u72d7\u7684\u89c6\u9891\u3002"} +{"id": "8002789", "video_name": "dba36bb9-86d2-5233-9f62-ec981fbda6d5", "text": "\u4e00\u5e45\u4e1b\u6797\u573a\u666f\uff0c\u6709\u72ee\u5b50\u3001\u9e1f\u3001\u9e7f\u548c\u8bb8\u591a\u6811\u3002"} +{"id": "1004906", "video_name": "5ac363b7-9c46-5ba5-b65a-f263dd31a42a", "text": "\u4e2d\u95f4\uff0c\u9762\u5bf9\u955c\u5934\uff0c\u4e00\u4f4d\u8eab\u7a7f\u767d\u8272\u5b87\u822a\u670d\u7684\u5973\u6027\u5750\u5728\u5927\u578b\u900f\u660e\u6c14\u6ce1\u5185\uff0c\u5168\u8eab\uff0c\u4fdd\u6301\u51b7\u9759\u7684"} +{"id": "8001577", "video_name": "f0a7498e-267b-5b1e-ad33-2582d5b11b1e", "text": "\u8d5b\u535a\u670b\u514b\u57ce\u3002\u9ed1\u6697\u800c\u8272\u5f69\u7f24\u7eb7\u7684\u9ed1\u5149\u65e0\u5904\u4e0d\u5728\u3002\u590d\u6742\u7684\u7ec6\u8282\u3002\u53cd\u4e4c\u6258\u90a6\u3002"} +{"id": "0003128", "video_name": "37911c60-ccc6-5278-a147-f7182a04a138", "text": "\u8d1d\u58f3\u3001\u7206\u70b8\u3001\u8d5b\u535a\u670b\u514b\u5b5f\u4e70\u57ce\u5e02\u3001\u672a\u6765\u4e3b\u4e49\u5766\u514b\u3001\u5b8f\u89c2\u6162\u52a8\u4f5c\u3001\u9ad8\u8f9b"} +{"id": "8003233", "video_name": "682b9dc6-f989-57e7-bbcf-0f0a7e46bf13", "text": "\u6c64\u59c6\u00b7\u7ea6\u514b\u73b0\u573a\u6f14\u51fa\uff0c\u771f\u5b9e\uff0c4k\u3002"} +{"id": "2004749", "video_name": "97645157-a1f1-52e2-bf8f-bda85735063e", "text": "1974\u5e74\u53d1\u5e03\u7ef4\u5c14\u7ef4\u7279\u5730\u4e0b\u4e50\u961f\u65b0\u7684\u73b0\u573a\u4e13\u8f91\u7684\u6d77\u62a5\u3002"} +{"id": "7003554", "video_name": "81c71deb-6395-5c65-b62b-5016cb01432c", "text": "\u8001\u4eba\u8df3\u8dc3\u7740\u8fdc\u773a\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003278", "video_name": "3c4a0728-c76b-582c-90ae-1f3a66a43570", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u8d5b\u8f66\u670d\uff0c\u80cc\u666f\u4e5f\u662f\u84dd\u8272\u7684F1\u8d5b\u8f66\u624b\u3002"} +{"id": "6003216", "video_name": "c89504ad-fa89-5421-bc7d-26a05ab11799", "text": "\u8349\u4e66\u98ce\u683c\u76842024\u65b0\u5e74\u5feb\u4e50\u3002"} +{"id": "0005091", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "\u4e00\u4e2a\u7ea2\u8272\u793c\u76d2\uff0c\u80cc\u666f\u6709\u7ea2\u706f\u7b3c\u3001\u6625\u8054\u548c\u70df\u706b\uff0c\u8425\u9020\u51fa\u6625\u8282\u7684\u6c1b\u56f4\u3002\u793c\u76d2\u4e0a\u6709\u4e2d\u56fd"} +{"id": "7004977", "video_name": "c8aa35ea-9df7-5d8e-bc80-21e58765ebe9", "text": "\u6211\u9700\u8981\u4e86\u89e3\u4f60\u7684\u7075\u9b42\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u4f60\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "3006271", "video_name": "62787160-04c6-57e8-9ba1-aba11398730d", "text": "\u89c6\u89c9\u5448\u73b0\u5982\u4f55\u80fd\u591f\u6355\u6349\u5230\u6b64\u523b\u5e78\u798f\u7684\u5dc5\u5cf0\uff1f\u4ed6\u4eec\u5982\u4f55\u5728\u5b9e\u9a8c\u5ba4\u73af\u5883\u4e2d\u5c55\u793a\u81ea\u5df1\u7684"} +{"id": "7003735", "video_name": "c6782f7b-72e1-5f7d-aab6-20eb25c042a0", "text": "\u4e00\u4e2a\u53d1\u5149\u7684\u7403\u6162\u6162\u5730\u4ece\u4e00\u4e2a\u9ed1\u8272\u7684\u6d74\u7f38\u91cc\u5347\u8d77\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sunshine. \n\n\u732b\u54aa\u6b63\u5728"} +{"id": "0005625", "video_name": "1e51ac14-678a-5108-8af5-24d075c166f0", "text": "\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u77ed\u6b3e\u6781\u7b80\u7ea2\u8272\u88d9\u5b50\u5728\u83ab\u65af\u79d1\u5e02\u591c\u665a\u884c\u8d70\u3002\u590f\u5b63\uff0c18:00\u3002\u89c6\u9891\u5206"} +{"id": "5001703", "video_name": "7d453804-ffad-58db-8be5-bead8d1aa79b", "text": "\u7537\u4eba\u73a9Talking and Friends\u3002"} +{"id": "1004867", "video_name": "59edb5c5-9ec3-5b7d-8b81-e11bec7d4770", "text": "\u5973\u5b69\u5728\u624b\u673a\u524d\u9762\u8bb2\u8bdd\uff0c\u8c08\u8bba\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u3002"} +{"id": "4003465", "video_name": "3819c707-9af3-50bd-80a5-665fe801ed6c", "text": "\u4e00\u4e2a\u7ad9\u5728\u706b\u8f66\u4e0a\uff0c\u9762\u5411\u6df1\u7ea2\u8272\u6708\u4eae\u5929\u7a7a\u7684\u7537\u5b69\u3002"} +{"id": "2003910", "video_name": "cb325c17-9605-5ba6-9d93-2c615d37c0c8", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u91cd\u91d1\u5c5e\u4e50\u961f\u5f39\u5409\u4ed6\u7684\u7279\u5199\u8096\u50cf\u89c6\u56fe\u3002"} +{"id": "1005219", "video_name": "6017152a-ce5f-5fef-8ee6-a6b1f6fb94ad", "text": "\u5144\u5f1f\u59d0\u59b9\u8282\u5e86\u795d\u6d3b\u52a8\u5305\u62ec\u7cd6\u679c\u3001\u706f\u7b3c\u3001\u7a7f\u7740\u6574\u9f50\u7684\u5b69\u5b50\u4eec\u7684\u5feb\u4e50\u9762\u5b54"} +{"id": "8001051", "video_name": "e36d962f-487c-5a36-b65f-810341c7ac82", "text": "\u5362\u585e\u6069\u6e56\uff0c\u4ece\u514b\u91cc\u6069\u65af\u4fef\u89c6\uff0c\u4ee5\u9ed1\u767d\u7248\u672c\u5448\u73b0\u7684\u89c6\u9891\u3002"} +{"id": "8001404", "video_name": "059aa030-6b68-55d3-b34c-51ace1c61a92", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u51a5\u60f3\u4e2d\u3002"} +{"id": "1005385", "video_name": "63023858-319b-54bf-8dab-85ca18d60fb9", "text": "\u5e26\u6709\u5f71\u5b50\u7684\u53ef\u6015\u8fb9\u7f18\u7a7a\u95f4"} +{"id": "2005252", "video_name": "05443f4a-080e-56a8-a917-f6dc371b58a5", "text": "\u4eba\u7c7b\u8bd5\u56fe\u63a7\u5236\u65f6\u95f4\u6240\u5e26\u6765\u7684\u54f2\u5b66\u548c\u793e\u4f1a\u610f\u4e49\u3002"} +{"id": "4004699", "video_name": "79c1c063-5b32-5bdc-bd06-c08ea6a59bdf", "text": "\u4e00\u500b\u5916\u8868\u5947\u7279\u7684\u5e74\u8f15\u4eba\uff0c\u4ed6\u88ab\u540c\u8f29\u5632\u5f04\u3002\u653e\u5927\u93e1\u805a\u7126\u3002"} +{"id": "6004312", "video_name": "6156d816-3f58-5c10-a239-c4f221e5ec21", "text": "\u8fbe\u6c99\u62c9\u5854\u56fd\u738b\u5bf9\u513f\u5b50\u4eec\u5145\u6ee1\u4fe1\u5fc3\uff0c\u540c\u610f\u8ba9\u4ed6\u4eec\u8ddf\u968f\u7ef4\u4ec0\u74e6\u7c73\u7279\u62c9\u5723\u4eba\u3002\u62c9\u59c6\u548c"} +{"id": "5001952", "video_name": "cc61c040-3c6b-52fb-85be-001f576097d3", "text": "\u7f51\u7edc\u670b\u514b\u98ce\u683c\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u4e00\u4e2a\u8352\u51c9\u72ed\u7a84\u7684\u5c0f\u5df7\u91cc\uff0c\u6444\u50cf\u673a\u62cd\u6444\u7740\u4ed6\u7684\u811a\u6b65\u3002"} +{"id": "6004421", "video_name": "f88a44ce-1937-5be1-9cbd-cb293fecc24e", "text": "\u624b\u63e1\u7740\u71c3\u70e7\u7684\u7164\u70ad\uff0c\u624b\u5468\u56f4\u88ab\u706b\u7130\u73af\u7ed5\u3002"} +{"id": "0006703", "video_name": "3169a288-754b-59c2-a090-ed154e94ea66", "text": "\u7cbe\u7075\u5728\u57ce\u5e02\u4e2d\u7684\u7535\u5f71\u573a\u666f\u62cd\u6444"} +{"id": "0005160", "video_name": "15cd75be-994d-5b20-834b-956a5462f007", "text": "\u4e00\u8f86\u81ea\u884c\u8f66\u7a7f\u8fc7\u4e86\u4e00\u4e2a\u96a7\u9053\u3002"} +{"id": "0005163", "video_name": "15d7813d-ad98-592b-9b0d-47921adb4fd4", "text": "\u514b\u91cc\u65af\u00b7\u8bfa\u5170\u9009\u7528\u4e86\u8389\u8389\u00b7\u8292\u65af\u7279\u548c\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u51fa\u6f14\u300a\u6076\u9b54\u57ce\u300b\u3002 \n\nSource sentence"} +{"id": "3005609", "video_name": "8992698a-d7a6-5955-8ca3-06305863b5a5", "text": "\u521b\u9020\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4e2d\u56fd\u9f99\uff0c\u4fa7\u9762\u89c6\u56fe\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u4ee5Anne Stokes\u98ce\u683c\u4e3a\u57fa\u7840\u3002"} +{"id": "5001003", "video_name": "22738328-fb65-555f-9142-1e8b71a7c619", "text": "\u91d1\u8272\u592a\u9633\u7cfb\uff0c\u6df1\u84dd\u8272\u80cc\u666f\uff0c\u4f18\u96c5\u65cb\u8f6c\u7684\u6781\u7b80\u7f8e\u5b66\u3002"} +{"id": "8003367", "video_name": "a343bec2-81c5-55be-bb0b-5f5bc51fc194", "text": "\u5728\u68ee\u6797\u6df1\u5904\uff0c\u51e0\u4e2a\u60ca\u8bb6\u7684\u9b3c\u602a\u3002"} +{"id": "5001584", "video_name": "01c05e56-b058-52fd-98ab-b28b7610d341", "text": "\u4e00\u500b\u6b63\u5728\u935b\u7149\u7684\u4eba\uff0c\u975e\u5e38\u903c\u771f\uff0c8K\u3002"} +{"id": "0003122", "video_name": "376bda75-870f-570d-9ef3-7a2657e2a01f", "text": "\u6fc0\u53d1\u4f60\u7075\u611f\u7684\u68a6\u60f3\u601d\u7ef4\uff0c16:9\u3002"} +{"id": "3005617", "video_name": "cc213ca6-31f5-5e78-b89a-c7108599c258", "text": "\u7537\u4eba\u8fd0\u7528\u4ed6\u7684\u5fc3\u7075\u529b\u91cf\u4f7f\u77f3\u5934\u6f02\u6d6e\u3002"} +{"id": "5001607", "video_name": "02f19345-ace4-5e8f-bc9a-0fd26f3cb417", "text": "\u590d\u53e4\u7535\u5f71\u98ce\u683c\u4e0b\u7199\u7199\u6518\u6518\u768420\u4e16\u7eaa20\u5e74\u4ee3\u7ebd\u7ea6\u8857\u5934\u8d28\u611f\u89c6\u9891\uff0c16:9\u5bbd\u9ad8\u6bd4\uff0c4k\u5206"} +{"id": "7002653", "video_name": "75c79f27-8e31-5ce2-92ff-7eb3b4a64b4d", "text": "\u65e0\u9650\u7535\u5f71\u4e2d\u7684\u5355\u4e2a\u753b\u9762"} +{"id": "0006950", "video_name": "35b8d6eb-d6f7-5dda-9e6e-b41bd99dd0a7", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u4ece\u81ea\u52a8\u552e\u8d27\u673a\u4e2d\u62ff\u51fa\u4e00\u7f50\u82cf\u6253\u6c34\u3002"} +{"id": "8003358", "video_name": "7f6a8283-32eb-5e5a-ae0f-0a5f8927b2d6", "text": "\u5728\u4e00\u4e2a\u660f\u6697\u7684\u623f\u95f4\u7b49\u5f85\uff0c\u7535\u5f71\u822c\u7684\u611f\u89c9\uff0c4K\u3002"} +{"id": "0004853", "video_name": "10500d63-3f33-57ee-9894-17d173057527", "text": "\u4eba\u5750\u5728\u8def\u4e0a\u7684\u6905\u5b50\u4e0a\u7684\u52a8\u753b\u3002"} +{"id": "8001419", "video_name": "f17ee646-6e9e-59d9-bfe0-7e43876a8e60", "text": "\u4e00\u6761\u820c\u5934\u6765\u56de\u79fb\u52a8\u3002"} +{"id": "0006997", "video_name": "3666b3f6-78b2-5b06-947b-58a0d041f7a8", "text": "\u65b0\u9c9c\u70e4\u5236\u7684\u85af\u6761\u5728\u7728\u773c\u95f4\u4ece\u70b8\u9505\u4e2d\u98de\u51fa\u3002"} +{"id": "2007335", "video_name": "60ed587f-2783-5d6f-aa3a-9aa20c8967d7", "text": "\u6f02\u4eae\u7684\u5973\u4eba\u6253\u53f0\u7403\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "4004357", "video_name": "de87af2a-4c83-57af-b476-8da131cd3c54", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u516c\u56ed\u91cc\u7684\u6811\u4e1b\u4e2d\u6b22\u5feb\u5730\u6162\u8dd1\u7740\u3002"} +{"id": "0006186", "video_name": "27e22c02-6f60-58aa-84b6-dff16cc5586a", "text": "\u91d1\u53d1\u548c\u95ea\u4eae\u7684\u84dd\u773c\u775b\u3002\u4e24\u4e2a25\u5c81\u7684\u5973\u5b69\u5750\u5728\u957f\u6905\u4e0a\uff0c\u9762\u524d\u6709\u70b9\u4f24\u5fc3\u3002YouTube\u77ed\u89c6\u9891\u5927\u5c0f\u4e3a9:"} +{"id": "3004560", "video_name": "9edb8e71-03d5-5e5c-abe5-ff742994c10a", "text": "\u4e00\u4e2a\u7537\u4eba\u8eba\u5728\u6811\u4e0b\u3002\u718a\u8d70\u8fc7\u6765\u95fb\u4e86\u4e00\u4e0b\u4ed6\uff0c\u7136\u540e\u79bb\u5f00\u4e86\u3002"} +{"id": "3003925", "video_name": "987b774a-d999-566f-bbf0-be7fafdd4fc9", "text": "\u521b\u5efa\u4e00\u4e2a\u865a\u5e7b\u7684\u56fe\u50cf\uff0c\u5728\u8fd9\u4e2a\u56fe\u50cf\u4e2d\uff0cBone Vox\u6b63\u5728\u7eb3\u7c73\u6bd4\u4e9a\u7684\u590f\u5b63\u5927\u8349\u539f\u4e0a\u7684\u4e00\u4e2a\u5c3c\u59c6\u6811\u4e0b\u4e0e\u5c24\u8fbe\u4ea4"} +{"id": "3005966", "video_name": "520b5519-5624-5378-9453-1c7740ef3d1c", "text": "\u591c\u7a7a\u4e2d\u7684\u661f\u661f\u5728\u79fb\u52a8\u3002\u4e00\u4e2a\u5973\u4eba\u8138\u4e0a\u7684\u591c\u7a7a\u5728\u592a\u9633\u955c\u91cc\u6620\u5c04\u51fa\u6765\u3002\u573a\u666f\u5448\u73b0\u51fa\u8d5b\u535a\u670b\u514b"} +{"id": "7003307", "video_name": "6191a80e-19bc-5580-8909-8cdde051dd17", "text": "\u4e00\u5bb6\u4eba\u5750\u5728\u9910\u684c\u65c1\u5e86\u795d\u5723\u8bde\u8282\uff0c\u96ea\uff0c\u7a97\u6237\u76f8\u673a\uff0c\u5723\u8bde\u6811\uff0c\u591c\u665a\u3002"} +{"id": "4004919", "video_name": "1a989c0b-e158-59ff-875d-d9f88edd6fa1", "text": "\u5357\u6781\u6d32\u5927\u9646\u662f\u4e00\u4e2a\u795e\u8bdd\u4e2d\u7684\u5927\u9646\uff0c\u4eba\u4eec\u8ba4\u4e3a\u5b83\u5b58\u5728\u4e8e\u5357\u534a\u7403\u3002\u5854\u65af\u66fc\u6ca1\u6709\u627e\u5230\u5357\u6781\u6d32\uff0c\u4f46\u4ed6\u9047\u5230"} +{"id": "3005486", "video_name": "f127b195-f19f-57a6-9921-1af6ad45af48", "text": "\u975e\u5e38\u5371\u9669\u7684\u9b3c\u5728\u591c\u95f4\u8def\u4e0a\u3002"} +{"id": "5001029", "video_name": "183846c8-fd55-527e-967b-8ca30423e845", "text": "\u901a\u8d27\u81a8\u80c0\u6a21\u578b\u7684\u5f62\u72b6\u50cf\u4e00\u628a\u6905\u5b50\u3002"} +{"id": "4004138", "video_name": "c91dc323-1e11-526d-9a38-0235016337e8", "text": "\u4f4f\u7740\u4e00\u53ea\u8c03\u76ae\u7684\u732b\u6c64\u59c6\u548c\u4e00\u53ea\u806a\u660e\u7684\u8001\u9f20\u6770\u745e\u3002"} +{"id": "0003683", "video_name": "41a5b77a-563a-5309-9e05-78a88dc3953f", "text": "\u4e00\u4e2a\u5370\u5ea6\u5973\u4eba\u5728\u4ed6\u4eec\u6751\u5e84\u7684\u5c0f\u5c4b\u91cc\u4e0e\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u4ea4\u8c08\uff0c\u800c\u4e00\u4e2a\u7537\u4eba\u5728\u8fdc\u5904\u6ce8\u89c6\u7740\u3002"} +{"id": "2007556", "video_name": "5ec8b87d-5835-588a-a421-8833cebe9edd", "text": "\u7684\u6e05\u7b97"} +{"id": "1003670", "video_name": "4396872f-ea9a-5816-8882-6ae1b7070089", "text": "\u4e00\u4f4d\u5df4\u897f\u7537\u5b69\u53ef\u4ee5\u6709\u9ed1\u8272\u3001\u68d5\u8272\u3001\u91d1\u8272\u7684\u5934\u53d1\u3002\u4ed6\u4eec\u53ef\u80fd\u6709\u68d5\u8272\u7684\u773c\u775b\uff0c\u901a\u5e38\u975e\u5e38\u53cb\u5584\uff0c\u5e76\u559c\u6b22\u6f14"} +{"id": "4004606", "video_name": "d3c4c986-76a8-56c6-9d98-27688cd919db", "text": "\u5728\u4e00\u4e2a\u6709\u7eff\u6811\u7684\u68ee\u6797\u65c1\u7684\u84dd\u8272\u6e56\u7554\uff0c\u767d\u8c61\u5b9d\u5b9d\u5750\u7740\u3002"} +{"id": "0003515", "video_name": "3ede23f9-79af-5f7f-8f88-5929475cf13e", "text": "\u6234\u7740\u91d1\u9970\u7684\u5976\u725b\uff0c\u767d\u8272\u5976\u725b\u3002"} +{"id": "5001266", "video_name": "bf60a0c8-94c4-57d5-90aa-517c43bf8d7e", "text": "\u53f2\u8bd7\u822c\u7684\u5347\u7a7a\uff1a\u5730\u9762\u4e2d\u961f\u6210\u5458\u5728\u53d1\u5c04\u53f0\u4e2d\u592e\u51c6\u5907\u5347\u7a7a\u3002\u60a8\u53ef\u4ee5\u63cf\u8ff0\u5b87\u5b99\u98de\u8239\u7684\u6280\u672f\u7ec6\u8282"} +{"id": "3004426", "video_name": "2a74cfc6-5109-5470-865c-1d5d07b358aa", "text": "\u6e29\u4f0d\u5fb7\u5899\u58c1\u7684\u98ce\u683c\u56fe\u50cf\u5177\u6709\u52a8\u611f\u3002"} +{"id": "7003225", "video_name": "2d9c319b-0245-5242-83e5-66e127ebe4d1", "text": "\u4e00\u5bf9\u592b\u5987\u572820\u4e16\u7eaa90\u5e74\u4ee3\u7684VHS\u5546\u5e97\u4e2d\uff0c\u9009\u62e9\u53e6\u7c7b\u6447\u6eda\u98ce\u683c\u3002"} +{"id": "8003373", "video_name": "e7357444-e9bb-573f-8083-88c0b64bd305", "text": "\u5f55\u97f3\u5ba4\u3001Moog\u5408\u6210\u5668\u3001\u9713\u8679\u706f\u3001\u52a8\u611f\u3001\u9ad8\u8d28\u91cf\u3001\u5531\u76d8\u3001Kuali Tika\u3001\u8ff7\u5e7b\u7535\u97f3\u3001\u6295\u5f71\u6620\u5c04\u3002"} +{"id": "5001327", "video_name": "ae05de9e-dd59-5b3b-82b5-fc8aa4d5f931", "text": "\u4e00\u53ea\u5927\u718a\u732b\u548c\u4e00\u53ea\u5c0f\u718a\u732b\u5728\u7af9\u6797\u4e2d\u6f2b\u6b65\uff0c\u9633\u5149\u660e\u5a9a\uff0c8K\u3002"} +{"id": "4004243", "video_name": "4228285e-8f09-5157-a634-7091c8a84169", "text": "\u84b8\u6c7d\u670b\u514b\u7537\u5b50\u8d70\u5728\u6218\u4e89\u6467\u6bc1\u7684\u84b8\u6c7d\u670b\u514b\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u9f7f\u8f6e\u548c\u9f7f\u8f6e\u8f74"} +{"id": "2006657", "video_name": "9fbab088-71a7-525d-b2a3-5a0a3a3f52dc", "text": "\u672a\u6765\u7684\u4f0a\u65af\u6cd5\u7f55\u7eb3\u8d3e\u6cd5\u5df4\u5fb7\u57ce"} +{"id": "1003897", "video_name": "47f3b15f-3d44-56a0-b47e-f3e56c9c7d97", "text": "\u611f\u8c22\u652f\u6301\u8005\u548c\u5408\u4f5c\u4f19\u4f34\u7684\u540d\u5b57\u6eda\u52a8\u5217\u8868\u3002"} +{"id": "0004744", "video_name": "0e8ba3b7-8152-5e69-ab95-21f3ba4543ee", "text": "15\u5c81\u7684\u5df4\u57fa\u65af\u5766\u8d2b\u56f0\u5973\u5b69\u7a7f\u7740\u5361\u901a\u98ce\u683c\u7684\u5168\u8eab\u5934\u5dfe\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "2007008", "video_name": "d474477d-7190-524b-9113-9fe8f5fc2678", "text": "\u524d\u89c6\u56fe\uff0c\u4e0b\u5348\u666f\u8c61\uff0c\u4e00\u4f4d\u4e13\u4e1a\u6444\u5f71\u5e08\u7ad9\u5728\u5ef7\u5df4\u514b\u56fe\u7684\u5efa\u7b51\u7269\u9876\u90e8\uff0c\u89c6\u9891\u5ef6\u65f6\u6444\u5f71\uff0c\u7535\u5f71\u822c\u76848"} +{"id": "7003643", "video_name": "f113bbcb-4329-5e71-b1fa-969e63904a37", "text": "\u65af\u62c9\u592b\u795e\u7947\u4f69\u4f26\u5fae\u7b11\u7740\uff0c\u6162\u52a8\u4f5c\uff0c4k\u9ad8\u6e05\u6670\u5ea6\uff0c\u65e0\u6a21\u7cca\uff0c\u6162\u52a8\u4f5c\u7f29\u653e\uff0c\u7a33\u5b9a"} +{"id": "2003908", "video_name": "44390b06-49d7-5620-8983-94831385ab20", "text": "\u4f7f\u7528\u9644\u5e26\u7684\u56fe\u7247\u4f5c\u4e3a\u80cc\u666f\uff0c\u63cf\u8ff0\u4e86\u4e00\u53ea\u5927\u6a59\u8272\u7684\u732b\u5728\u684c\u5b50\u4e0a\u559d\u7f8a\u8089\u6c64\u3002\u7f8a\u8089\u6c64\u65c1\u8fb9"} +{"id": "0006451", "video_name": "2cc9e06b-0e3a-5b67-b28d-eeae9d08f7fa", "text": "\u660e\u5929\u4e4b\u5730\u7684\u8611\u83c7\u57ce\u5e02\u57c3\u5c14\u91cc\u5c14\u5728\u6b7b\u5973\u795e\u7684\u68a6\u5883\u4e2d\u3002"} +{"id": "1005347", "video_name": "6252bf15-4642-5b10-9b3f-b0b3c6e62a23", "text": "\u62cd\u6444\u4e00\u4e2a\u4eba\u5728\u5916\u5356\u676f\u4e2d\u559d\u5496\u5561\u7684\u7279\u5199\u955c\u5934\uff0c\u676f\u5b50\u4e3b\u8981\u662f\u6de1\u7c89\u84dd\u8272\u548c\u6d45\u68d5\u8272\uff0c\u5916"} +{"id": "6004027", "video_name": "3fe671c1-29d2-59dc-ac29-fe4b9a052082", "text": "\u571f\u661f\u795e\u7f13\u6162\u8fd0\u52a8\u548c\u4e0d\u89c4\u5219\u6ce2\u52a8\u3002"} +{"id": "8002772", "video_name": "4e70f369-f79f-54b6-9ff8-7e3172414d9e", "text": "25\u5c81\u7537\u5b50\u8096\u50cf\u5750\u5728\u5de5\u4f5c\u5ba4\u7684\u6905\u5b50\u4e0a\uff0c\u76f4\u89c6\u7740\u6444\u50cf\u673a\u548c\u4e2d\u5fc3\uff0c\u684c\u5b50\u4e0a\u653e\u7740\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111"} +{"id": "3003106", "video_name": "2584f96d-c1a4-5bba-b4d5-d258b60ae091", "text": "\u90a3\u4e2a\u5973\u5b69\u5728\u79fb\u52a8\u7684\u706b\u8f66\u4e0a\u7761\u5728\u4e00\u5f20\u6905\u5b50\u4e0a\uff0c\u4ece\u706b\u8f66\u7a97\u53e3\u53ef\u4ee5\u770b\u5230\u661f\u661f\uff0c\u591c\u665a\u975e\u5e38\u6709\u7535\u5f71\u611f\uff0c\u5f88\u7f8e"} +{"id": "2003642", "video_name": "b00acb42-6d54-5082-a6a8-04d3bc14843a", "text": "\u58a8\u897f\u54e5\u6e7e\u7279\u6709\u7684\u5c0f\u578b\u9f20\u6d77\u8c5a\u2014\u2014\u6d77\u8c5a\u9f20\uff0c\u662f\u76ee\u524d\u6700\u6fd2\u4e34\u706d\u7edd\u7684\u9cb8\u76ee\u52a8\u7269\uff0c\u5176\u6816"} +{"id": "1004100", "video_name": "4be30f6e-3526-5d2c-a7cb-5463c2050e9d", "text": "\u732b\u5728\u591c\u7a7a\u4e2d\u98de\u884c\uff0c\u6709\u6d41\u661f\u5212\u8fc7\uff0c\u91c7\u7528\u8fea\u58eb\u5c3c\u52a8\u753b\u7684\u98ce\u683c\u3002"} +{"id": "4003561", "video_name": "d4a0d1d4-edbc-5b0d-a39d-a7933ec3008c", "text": "\u5728\u4e00\u5757\u6c34\u6ce5\u5757\u4e2d\u957f\u51fa\u6765\u7684\u767d\u8272\u5170\u82b1\u3002"} +{"id": "2006488", "video_name": "5bbd89b9-c487-55a1-86f7-83987d4ee20f", "text": "\u4e00\u4e2a\u5947\u602a\u7684\u4e16\u754c\uff0c\u6709\u7740\u5947\u5f02\u548c\u8ff7\u5e7b\u7684\u5f62\u72b6\uff0c\u67d4\u548c\u7684\u8272\u5f69\u548c\u6df1\u6c89\u3001\u5c16\u9510\u7684\u97f3\u8c03\uff0c\u5e26"} +{"id": "7002532", "video_name": "fb354828-7990-51de-a4eb-24fb993b1530", "text": "\u53ea\u9700\u8981\u52a8\u753b\u5979\u7684\u5634\u5507\u3001\u773c\u775b\u548c\u8eab\u4f53\u3002"} +{"id": "4004454", "video_name": "ed16eefb-8e44-5d4d-ae18-71ce19b79953", "text": "\u4e00\u53f0360\u5ea6\u76f8\u673a\u56f4\u7ed5\u4e00\u4e2a\u7a7f\u7740\u91d1\u5c5e\u94f6\u8272\u5916\u5957\u7684\u5e74\u8f7b\u5e05\u6c14\u4e9a\u6d32\u7537\u5b50\u79fb\u52a8\u3002"} +{"id": "0004766", "video_name": "0ee19d2b-13ee-5451-9d32-6557beb0031f", "text": "\u5c0f\u732b\u5728\u6905\u5b50\u4e0a\u6d17\u5b83\u7684\u722a\u5b50\u3002"} +{"id": "3006685", "video_name": "a4d4dedd-2a78-55da-be89-c2f3f3857513", "text": ", she becomes pregnant and gives birth to a boy, who is named Rama.\n\n\u6bcd\u4eb2\u963f\u8fea\u8482\u5f00\u59cb\u5d07\u62dc\uff0c\u5e0c\u671b\u62e5\u6709\u4e00\u4e2a\u513f\u5b50\u3002\u5728\u8fd9"} +{"id": "6003254", "video_name": "854c15e5-d4da-510a-a0be-9d071b646c21", "text": "\u98ce\u5439\u8fdb\u623f\u95f4\uff0c\u4e1c\u897f\u5728\u6643\u52a8\u3002"} +{"id": "4003271", "video_name": "dfbb3d71-3e08-5d32-836e-1876100b0a4a", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u5979\u7684\u670b\u53cb\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2005781", "video_name": "83d40f1a-a279-543e-a439-f26623ac918e", "text": "\u4e00\u53ea\u732b\u5934\u9e70\u5750\u5728\u6811\u4e0a\uff0c\u6708\u5149\u7167\u8000\u5728\u5b83\u7f8e\u4e3d\u7684\u773c\u775b\u4e0a\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\uff0c\u4ee5\u903c\u771f\u7684"} +{"id": "2006498", "video_name": "5b7002f6-e352-5a8b-9b75-b69793e1c8d6", "text": "\u5728\u9ad8\u5c14\u592b\u7403\u8f66\u4e0a\u7a7f\u8d8a\u4e1b\u6797\u8d5b\u8f66\u3002"} +{"id": "6002984", "video_name": "5df6a772-75fb-5cc1-94eb-ea7a6790d1de", "text": "\u4e00\u4e2a\u7537\u4eba\u79bb\u5f00\u4e86\u623f\u5b50\uff0c\u62ff\u7740\u4e00\u4e2a\u624b\u63d0\u7bb1\uff0c\u79bb\u5f00\u4e86\u4ed6\u7684\u5bb6\u4eba\u3002"} +{"id": "1004971", "video_name": "5bda6d0b-088e-5839-bdd8-b54f8ce36aff", "text": "\u5728\u82f1\u56fd\uff0c\u4eba\u4eec\u6b63\u5728\u9003\u79bb\u57ce\u5e02\uff0c\u706b\u52bf\u65e0\u5904\u4e0d\u5728\uff0c\u95ea\u7535\u88ad\u51fb\u53d8\u5f97\u66f4\u52a0\u4e25\u91cd\u3002"} +{"id": "5001770", "video_name": "83c8af0f-0c65-5ad1-864a-984fd5b0bec4", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d7\uff0c\u8116\u5b50\u4e0a\u6234\u7740\u4e00\u6761\u7ea2\u8272\u7684\u56f4\u5dfe\u3002\u4fe1\u606f\uff1a\u795d\u8d3aGuille\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004372", "video_name": "0a27fd94-096b-514e-880b-d22b0eaaaea1", "text": "\u522e\u98ce\u4e86\uff0c\u5973\u5b69\u7684\u5934\u53d1\u8f7b\u8f7b\u5730\u98d8\u52a8\u7740\uff0c\u5973\u5b69\u81ea\u7136\u5730\u7728\u7728\u773c\u775b\u3002"} +{"id": "2006672", "video_name": "e3678e3f-e65d-5d01-ad0b-97a34cda68f6", "text": "\u9a84\u50b2\u662f\u4eba\u7c7b\u8eab\u4f53\u4e2d\u81f4\u547d\u7684\u7f6a\u6076\uff0c\u591c\u665a\u9ed1\u6697\u7684\u5730\u70b9\uff0c\u7535\u5f71\u80cc\u666f\uff0c\u53f2\u8bd7\u822c\u7684\u7279\u6548\u4f53\u79ef"} +{"id": "6003225", "video_name": "56e56d0b-13f7-50b8-9849-3f84c764e798", "text": "\u753b\u4e00\u4e2a\u5728\u529e\u516c\u5ba4\u6e38\u8361\u7684\u9b3c\u3002"} +{"id": "8002623", "video_name": "e5f5e656-76f6-5269-ac33-3d5c62b6c011", "text": "\u4e00\u4e2a\u7231\u5fc3\u7f29\u653e\u955c\u5934\uff0c\u4e0a\u9762\u6709\u5b57\u6bcdB\u548cE\u3002"} +{"id": "2003860", "video_name": "5e901702-42d9-5416-9fa5-ea5a68cc23ca", "text": "\u90aa\u6076\u5973\u795e\u76d6\u4e9a\u4ece\u9634\u5f71\u4e2d\u51fa\u73b0\u3002"} +{"id": "2003591", "video_name": "e144c213-f455-5438-8ff5-fb2a6ac58600", "text": "\u89c9\u9192\uff0c\u4e00\u8f6e\u592a\u9633\u5347\u8d77\u5728\u8349\u5730\u4e0a\u3002"} +{"id": "3004661", "video_name": "9f2cd656-049a-50d2-9c43-736cbbd773ce", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u827e\u7c73\u8389\u5c06\u65e5\u8bb0\u4e2d\u7684\u94a5\u5319\u653e\u5165\u8349\u5730\u4e0a\u91ce\u82b1\u7684\u5706\u5708\u4e2d\uff0c\u6355\u6349\u5230\u795e\u5947\u7684\u53d8"} +{"id": "8001446", "video_name": "97afc09a-0c53-55d1-86e9-527c497c5fa7", "text": "\u4e9a\u6d32\u5973\u5b50\u5750\u5728\u6a31\u82b1\u6811\u4e0b\u7684\u5ca9\u77f3\u4e0a\uff0c\u7a7f\u7740\u6de1\u8910\u8272\u8863\u670d\u3002"} +{"id": "8001824", "video_name": "f4d34f62-79e3-5070-9e7a-1f3e4a6938d7", "text": "\u4e0d\u88ab\u56de\u5e94\u7684\u7231\u5b64\u72ec\u5730\u5728\u5bd2\u51b7\u4e2d\u3002"} +{"id": "3005993", "video_name": "95d20000-9599-57d7-b1d6-a505bd20cfa9", "text": "\u8d1d\u5a1c\u9f50\u5c14\u00b7\u5e03\u6258\u662f\u5df4\u57fa\u65af\u5766\u7684\u524d\u603b\u7406\uff0c\u5979\u6458\u4e0b\u5934\u5dfe\uff0c\u5fae\u7b11\u7740\u9762\u5bf9\u76f8\u673a\u3002\u76f8\u673a\u662f\u6570\u7801\u5355"} +{"id": "1006611", "video_name": "792d01c8-10a9-50f5-a628-85ee5ed769ee", "text": "\u5728\u4e00\u4e2a\u9ed1\u8272\u80cc\u666f\u7684\u5730\u65b9\uff0c\u4e00\u4f4d\u5e26\u6709\u7c73\u5176\u6797\u5143\u7d20\u7684\u9f99\u5377\u98ce\u7ba1\u5bb6\u5728\u6444\u50cf\u673a\u524d\u601d\u8003\u5e76\u56de\u7b54\u4e86\u4e00\u4e9b\u95ee\u9898\uff0c\u6700\u540e"} +{"id": "1005818", "video_name": "6ae868e1-8199-5fb0-9a96-83c5f08d1694", "text": "\u4e00\u4e2a\u7537\u4eba\u88ab\u8e22\u51fa\u5730\u9762\uff0c\u98de\u5f97\u5f88\u9ad8\uff0c\u7136\u540e\u6389\u843d\u5728\u5730\u4e0a\uff0c\u8eba\u4e0b\u6765\u3002"} +{"id": "2004838", "video_name": "4360c8dc-8223-577c-924e-d74e822a23de", "text": "\u9ed1\u4e4c\u9e26\u7741\u5f00\u773c\u775b\u5728\u5e26\u96fe\u7684\u68ee\u6797\u4e2d\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "5001487", "video_name": "334be362-126e-5ad2-868b-888c22ec2b59", "text": "\u5728\u795e\u5947\u7684\u68ee\u6797\u91cc\uff0c\u5bf9\u4e8e\u677e\u9f20\u6765\u8bf4\uff0c\u6bcf\u4e00\u5929\u90fd\u662f\u5145\u6ee1\u53cb\u8c0a\u3001\u6b22\u7b11\u548c\u53d1\u73b0\u7684\u65b0\u5192\u9669\u3002"} +{"id": "1005393", "video_name": "632ebff3-08f6-5d17-b573-bb158dee46df", "text": "1979\u5e7412\u6708\u4e0b\u96ea\u7684\u4e00\u4e2a\u665a\u4e0a\uff0c\u5e95\u7279\u5f8b\u5e02\u4e2d\u5fc3\u768435\u6beb\u7c73\u955c\u5934\u8bb0\u5f55\u3002"} +{"id": "3005976", "video_name": "967f1ede-796f-5d2f-b8d1-abf43aaa1802", "text": "\u7535\u5f71\u822c\u7684\uff0c\u975e\u5e38\u8be6\u7ec6\uff0c\u80cc\u666f\u4e2d\u6709\u4eba\u8df3\u821e\u3002"} +{"id": "2007860", "video_name": "03bbf6a8-2078-567f-831b-6a096ead37b2", "text": "\u4e00\u4e2a\u7a7f\u7740\u65f6\u9ae6\u7684\u732b\u5934\u4eba\u5f39\u7740\u4f4e\u97f3\u5409\u4ed6\uff0c\u5728\u591c\u603b\u4f1a\u7684\u821e\u53f0\u4e0a\u3002"} +{"id": "3005199", "video_name": "df23d03f-64c1-5d71-9b43-2598991d00b4", "text": "\u4ece\u79cd\u5b50\u957f\u51fa\u4e00\u682a\u5ae9\u82bd\uff0c\u76f4\u5230\u6210\u957f\u4e3a\u5496\u5561\u690d\u682a\uff0c\u5496\u5561\u8c46\u6210\u719f\u5e76\u88ab\u6536\u5272\uff0c"} +{"id": "1004252", "video_name": "4eb53af0-3816-5c95-bc10-3bfbc3447fcd", "text": "\u4e00\u8f86\u5feb\u901f\u800c\u957f\u7684\u7535\u52a8\u5217\u8f66\u6cbf\u7740\u94c1\u8def\u7a7f\u8d8a\u8fdc\u65b9\u7684\u57ce\u5e02\uff0c\u4fef\u89c6\u666f\u8c61\u3002"} +{"id": "1006629", "video_name": "7989ea62-240e-50af-87bd-dfd97a159cf6", "text": "\u96ea\u666f\uff0c\u56db\u5468\u4e0b\u96ea\uff0c\u53d1\u5149\u7684\u5f69\u8776\u98de\u821e\u3002"} +{"id": "3003849", "video_name": "eb45e73c-2887-5194-9748-0c11894e6b48", "text": "\u5176\u4ed6\u8424\u706b\u866b\u53ea\u80fd\u53d1\u51fa\u67d4\u548c\u7684\u9ec4\u5149\uff0c\u800cSparky\u53ef\u4ee5\u968f\u610f\u6539\u53d8\u4ed6\u7684\u5149\u7ebf\u989c\u8272\u3002\u4ed6\u53ef\u4ee5\u53d1\u51fa\u7ea2\u8272\u3001\u84dd\u8272\u3001"} +{"id": "7003451", "video_name": "93275908-055c-55cb-9743-9d8ce31358c4", "text": "\u4e00\u4e2a\u82f9\u679c\u957f\u7740\u4eba\u8138\u7684\u8001\u5f71\u7247\u3002"} +{"id": "3006979", "video_name": "f22f5bac-2634-56cd-8887-d70e25326694", "text": "\u5728\u5c71\u4e0a\u8df3\u6447\u6eda\u821e\u7684\u60c5\u4fa3\u3002"} +{"id": "2005887", "video_name": "beb0c664-5961-586c-9700-8344d4c954a8", "text": "\u7535\u5409\u4ed6\u81ea\u5df1\u6f14\u594f\uff0c\u5f26\u7ebf\u79fb\u52a8\u3002"} +{"id": "7004681", "video_name": "6ab99fcf-6081-593c-9617-fbfe9094126b", "text": "\u671d\u9c9c\u3001\u91d1\u6b63\u6069\u3001\u671d\u9c9c\u56fd\u65d7\u3002"} +{"id": "4002468", "video_name": "7e6e205f-c3f2-565f-aa7a-bab07152274d", "text": "\u8717\u725b\u548c\u4e4c\u9f9f\u5728\u6bd4\u8d5b\u3002"} +{"id": "3003413", "video_name": "07da7d5c-cdc6-5048-bdc0-fcdf59941ab2", "text": "UFC \u62f3\u624b\u5eb7\u7eb3\u00b7\u9ea6\u683c\u96f7\u6208\u5728\u963f\u5e03\u624e\u6bd4\u7684\u96e8\u5929\u4e0e\u62f3\u624b\u4f0a\u65af\u5170\u00b7\u9a6c\u54c8\u5207\u592b\u8fdb\u884c\u6bd4"} +{"id": "6004735", "video_name": "da24c17f-3a5f-58a0-987a-7b0f85ff0509", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u6027\u611f\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u62e5\u6709\u66f2\u7ebf\u4f18\u7f8e\u82d7\u6761\u7684\u8eab\u6750\uff0c\u7a7f\u7740\u8bf1\u4eba\u7684\u6bd4\u57fa\u5c3c\uff0c\u6b63\u5728\u6d77\u4e2d\u73a9\u800d\u5e76"} +{"id": "4003199", "video_name": "0d6e01e6-e089-5f9b-98b9-a9a3bcd7ec2b", "text": "085 \u6570\u5b57\u54c1\u724c\u7684\u5409\u7965\u7269\uff0c\u8ba9\u4eba\u60f3\u8d77\u5df4\u897f\u4e1c\u5317\u90e8\uff08\u4ed9\u4eba\u638c\u6216\u6d77\u6ee9\uff09\uff0c\u5fc5\u987b\u9075\u5faa\u7d2b\u8272\u548c\u84dd"} +{"id": "2004316", "video_name": "424a81e8-9a20-5eb6-81de-8066585ae851", "text": "\u8d5b\u8f66\u3001\u95ea\u70c1\u7684\u8f66\u706f\u3001\u52a8\u6001\u6a21\u7cca"} +{"id": "0005877", "video_name": "22a4b8f2-c806-507e-aa1f-31367b81cfb9", "text": "\u8fd9\u662f\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u63cf\u8ff0\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u76ef\u7740\u5728\u8349\u5730\u4e0a\u8e66\u8df3\u73a9\u800d\u7684\u5c0f\u5154\u5b50\u3002\u8fd9\u5f20\u56fe\u7247\u6355\u6349\u4e86\u4eba\u4eec"} +{"id": "6002050", "video_name": "dfdb654f-6493-5666-b075-3d005caeb4ca", "text": "\u5c06\u4e00\u4e2a\u5351\u52a3\u7684\u89d2\u8272\u4ee3\u8868\u4e3a\u4e00\u79cd\u6f0f\u6d1e\uff0c\u8bd5\u56fe\u5229\u7528\u8ba1\u7b97\u673a\u7cfb\u7edf\uff0c\u800c\u8d85\u7ea7\u82f1\u96c4\u7c7b\u578b\u7684\u89d2\u8272\u5219\u4ee3\u8868\u4e00\u4e2a\u9ed1\u5ba2\uff08\u6e17\u900f\u6d4b\u8bd5"} +{"id": "1006963", "video_name": "7f6a8241-7fc1-50c0-8605-14913e406f1e", "text": "\u5546\u795e\u5c1a\u6208\u662f\u4e00\u4f4d\u82f1\u4fca\u7684\u7537\u58eb\uff0c\u975e\u5e38\u5065\u58ee\uff0c\u808c\u8089\u7ebf\u6761\u660e\u663e\u3002"} +{"id": "0003862", "video_name": "44cd9d37-d260-556d-b48e-5865e2966910", "text": "\u770b\u770b\u6211\u7684\u65b0\u978b\uff0c\u5f88\u6709\u8da3\u3002\n\nSource sentence: I love eating sushi for dinner. \n\u6211\u559c\u6b22\u665a\u9910\u5403\u5bff\u53f8\u3002"} +{"id": "0003080", "video_name": "36a24a5d-5607-5df4-8d23-e465272bb7e3", "text": "\u4e00\u8f86\u88ab\u7269\u8054\u7f51GPS\u8bbe\u5907\u8ffd\u8e2a\u7684\u8f66\u8f86"} +{"id": "8003471", "video_name": "9cf4178f-7de1-5f10-8b4b-81dde5f8f561", "text": "\u4e4c\u9e26\u53d1\u73b0\u4e86\u6c99\u888b\u5c4f\u969c\u7684\u4e00\u4e2a\u5f31\u70b9\uff0c\u50cf\u52a8\u753b\u4e00\u6837\u8b66\u544a\u4e86\u6751\u6c11\u4eec\u3002"} +{"id": "0005909", "video_name": "2319a21e-75e2-5b94-a91f-c287b696cb4f", "text": "\u9ea6\u57fa\u5148\u751f\u6559\u6388\u6bd2\u54c1\u7684\u5371\u9669\u3002"} +{"id": "3006088", "video_name": "d568a2be-d63a-5e70-8d56-5214d135e8d1", "text": "\u8001\u864e\u5728\u5669\u68a6\u4e2d\u8ffd\u9010\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "7004701", "video_name": "1cbbe869-d943-5535-ad1f-d6f50e4c3c42", "text": "\u4e00\u95f4\u73b0\u4ee3\u5316\u7684\u623f\u95f4\uff0c4K\u8d28\u91cf\u3002"} +{"id": "3006069", "video_name": "83b1d630-f042-57fa-ad93-d270904f3e8e", "text": "\u5c0f\u5e74\u8f7b\u5973\u5b66\u751f\u5728\u96ea\u5730\u91cc\u8d70\u8def\u3002"} +{"id": "2007997", "video_name": "1cd9898b-3f13-5e57-a50c-2edf88f81849", "text": "\u767d\u8272\u7684\u5899\u58c1\uff0c\u529e\u516c\u5ba4\u706f\u7684\u526a\u5f71\u5148\u4ece\u4e00\u4fa7\u843d\u4e0b\uff0c\u6447\u6446\u7740\u7136\u540e\u65ad\u88c2\u6389\u843d\u5230\u5730\u4e0a\u3002"} +{"id": "0006763", "video_name": "32a19a56-876b-58e0-b114-cdd895bd8ad6", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u4e00\u4e2a\u5e74\u8f7b\u4eba\u548c\u4e00\u4f4d\u8001\u4eba\u8eab\u7740\u7ea2\u8272\u670d\u88c5\uff0c\u9a91\u5728\u4e00\u53ea\u5de8\u5927\u7684\u767d\u8272\u88c5\u7532\u9e70\u4e0a\uff0c\u98de\u7fd4"} +{"id": "8002108", "video_name": "c51d7ebe-5bfe-514a-b1fe-0d171c07a742", "text": "\u6211\u548c\u6211\u7684\u673a\u5668\u718a\u732b\u73a9\u7eb8\u724c\uff0c\u5979\u5bf9\u8d62\u5f97\u597d\u724c\u975e\u5e38\u5174\u594b\uff0c\u8def\u8fc7\u7684\u4eba\u4eec\u770b\u5230\u4e86\u3002"} +{"id": "4002746", "video_name": "52af83e0-8760-5448-bb63-b71477887de7", "text": "\u4e00\u5bb6\u8212\u9002\u7684\u5496\u5561\u5e97\uff0c\u706f\u5149\u6e29\u6696\u67d4\u548c\u3002Jason\u72ec\u81ea\u5750\u5728\u89d2\u843d\u7684\u684c\u5b50\u4e0a\uff0c\u559d\u7740\u5496"} +{"id": "0006014", "video_name": "250147ad-864c-5838-8c8a-de11d572c556", "text": "\u96ea\u4f5b\u5170Trax\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "8001034", "video_name": "0a4ac82e-3b74-50a3-8359-0b0987d3192c", "text": "\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u4e0a\u663e\u793a\u7684\u8282\u70b9\u7f51\u7edc\u3002"} +{"id": "4004149", "video_name": "e5d3e349-a329-5953-b898-384d30b86c40", "text": "\u4eba\u88ab\u7535\u8111\uff08PC\uff0cECRAN\uff0cTELE\uff09\u541e\u566c\u4e86\u3002"} +{"id": "5001765", "video_name": "60c33fb5-8ba3-5ce4-b280-b9a9462bd7b0", "text": "30\u5c81\u7684\u5370\u5ea6\u5973\u5b69\u7ad9\u5728\u90a3\u91cc\uff0c\u7a7f\u7740\u7c89\u8272\u7684\u6c99\u4e3d\u8fde\u8863\u88d9\uff0c\u897f\u5f0f\u98ce\u683c\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u7a0d\u5fae\u6709\u70b9\u767d"} +{"id": "0003872", "video_name": "44f5d9a2-d7fa-542f-bd10-162b5bc708d6", "text": "\u591c\u665a\u6ee1\u6708\uff0c\u77ed\u6682\u5931\u53bb4K\u3002"} +{"id": "7004983", "video_name": "df5b66ee-dfa9-549b-9175-a37e6d51a7b6", "text": "\u6c49\u5821\u4e2d\u592e\u8f66\u7ad9\u6444\u50cf\u5934\u653e\u5927\u955c\u5934\u3002"} +{"id": "7004547", "video_name": "a081b467-2852-5c21-ab19-6ad9a24d4e54", "text": "\u5728\u80cc\u666f\u4e2d\u589e\u6dfb\u66f4\u591a\u7684\u8282\u65e5\u6c14\u6c1b\u548c\u5723\u8bde\u5143\u7d20\u3002\u8ba9\u5979\u7684\u751f\u547d\u66f4\u52a0\u903c\u771f\uff0c\u5fae\u7b11\u7740\uff0c\u7a7f\u7740\u9c9c"} +{"id": "8003838", "video_name": "bd97faf5-8eda-5850-a8b7-59f966564e3b", "text": "\u4e00\u4f4d\u5931\u53bb\u4fe1\u4ef0\u7684\u5e74\u8f7b\u5973\u6027\u524d\u5f80\u5c71\u4e2d\u7684\u4e00\u4e2a\u504f\u50fb\u4fee\u9053\u9662\u671d\u5723\uff0c\u5e0c\u671b\u5bfb\u627e\u7b54\u6848\u5e76\u6062\u590d\u5979\u7684"} +{"id": "0004610", "video_name": "0be30e73-2e89-549f-bc4d-8fc5ac6a520b", "text": "\u706b\u7bad\u961f\u7834\u574f\u4e86\u548c\u5e73\u7684\u670d\u52a1\u5668\uff0c\u5bfc\u81f4\u8868\u60c5\u4e22\u5931\uff0c\u9891\u9053\u6545\u969c\uff0c\u6d88\u606f\u5728\u6570\u5b57\u6df7\u4e71\u4e2d\u4e22\u5931\u3002"} +{"id": "2007847", "video_name": "a235164a-af0b-5aa4-9f1f-4b98fd5f0fb7", "text": "\u4f20\u8fbe\u52c7\u6c14\u548c\u52c7\u6562\u7684\u7167\u7247\u3002"} +{"id": "7004722", "video_name": "61ec16f9-9daa-53a1-8611-72a236bc356d", "text": "\u4eba\u4eec\u4e92\u76f8\u4ea4\u8c08\uff0c\u4e00\u4e2a\u7537\u5b69\u76ef\u7740\u524d\u9762\u7684\u4eba\u7fa4\u3002"} +{"id": "2007192", "video_name": "125c73dc-4e33-50f8-8dbd-0ff6716a5926", "text": "\u4e00\u5ea7\u4f5b\u50cf\u5c71\u7684\u822a\u62cd\u89c6\u9891\u3002"} +{"id": "4004959", "video_name": "690fbccc-c210-510a-91be-1d5088522159", "text": "\u7535\u5f71\u822c\u7684\u5f00\u573a\u955c\u5934\uff0c\u4e00\u7fa4\u670b\u53cb\u7ad9\u5728\u4e00\u8d77\u5fae\u7b11\u7740\uff0c\u51c6\u5907\u5f00\u59cb\u4e00\u6b21\u5192\u9669\u3002"} +{"id": "1005909", "video_name": "6c9c24fa-0df7-572e-ac1d-18a0afc3b3db", "text": "\u4e00\u4e2a\u6709\u6811\u6728\u3001\u6cb3\u6d41\u548c\u9ed1\u6697\u661f\u7a7a\u7684\u7f8e\u4e3d\u91ce\u8425\u5730\u3002"} +{"id": "2005608", "video_name": "c81a716e-3ed5-511a-a33c-f9f2bb7cf33b", "text": "\u6b66\u58eb\uff0c\u5251\u6597\uff0c\u9ad8\u5f3a\u5ea6\uff0c\u7535\u5f71"} +{"id": "3004004", "video_name": "f37af2a3-6407-5097-809a-1f6e1d2e037a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u623f\u95f4\u91cc\u8df3\u821e\uff0c\u903c\u771f\u3001\u7535\u5f71\u822c\u7684\u89c6\u9891\u3002"} +{"id": "2006313", "video_name": "2ee38e30-9f4d-5162-9464-8917704a8820", "text": "\u4e00\u6761\u903c\u771f\u7684\u91d1\u6761\u5728\u767d\u8272\u80cc\u666f\u4e0a\u65cb\u8f6c\uff0c\u4e0a\u9762\u6709\u6587\u5b57SORTEO\u3002"} +{"id": "8003390", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "\u653e\u5927\u753b\u9762\uff0c\u5c55\u793a\u8389\u8389\u5728\u6751\u5e84\u5e7f\u573a\u6f2b\u6b65\uff0c\u6563\u53d1\u51fa\u5584\u826f\u7684\u5149\u8292\u30028k\u8d28\u91cf\u3002"} +{"id": "7003248", "video_name": "6e2168d5-60c8-5601-a4e8-f1096f6c6c4b", "text": "iPhone 13\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u901a\u8bdd\u529f\u80fd\u3002"} +{"id": "0004154", "video_name": "043e39e7-be2d-5332-82ae-f135553cebb5", "text": "\u9ed1\u8272\u6c34\u6ce2\u5728\u767d\u8272\u57f9\u517b\u76bf\u5185\u731b\u70c8\u78b0\u649e\u7684\u7eb3\u7c73\u7ea7\u89c2\u70b9\uff0c\u9ed1\u3001\u767d\u3001\u7070\u8272\u8c03\u642d\u914d\u6696"} +{"id": "3005068", "video_name": "f23fab96-1a76-5a25-9950-f101bb7be8be", "text": "\u4e00\u53ea\u679c\u5b50\u72f8\u5728\u65e5\u843d\u65f6\u62cd\u6444\u7684\u81ea\u62cd\u7167\uff0c\u80cc\u666f\u662f\u91d1\u5b57\u5854\uff0c\u5448\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "4002495", "video_name": "db31a8c8-3e83-50bb-bd76-94ce8b6be1d5", "text": "\u62c9\u80e1\u5c14\u00b7\u7518\u5730\u76843D\u5361\u901a\u5f62\u8c61\uff0c\u5177\u6709\u5b69\u5b50\u822c\u7684\u7279\u70b9\u3002"} +{"id": "2004704", "video_name": "617e5012-9332-5c9f-99f2-5d3893d9e8c0", "text": "2024\u5e74\u4eba\u5de5\u5149\u6e90\u4e0b\u7684\u65b0\u5e74\u5feb\u4e50\u3002"} +{"id": "0005434", "video_name": "1ac58848-6f7f-5680-8376-8ef56b6d908d", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u8001\u4eba"} +{"id": "4003448", "video_name": "c2556a04-4403-578b-b061-1f5a86d552d5", "text": "\u6ee1\u6d32\u66fe\u88ab\u79f0\u4e3a\u4e2d\u56fd\u9791\u977c\u3002"} +{"id": "2007438", "video_name": "7d251b99-c663-59f7-b752-6790ae133425", "text": "\u5750\u5728\u7a97\u8fb9\uff0c\u5916\u9762\u4e0b\u7740\u96e8\uff0c\u706b\u8f66\u7ecf\u8fc7\u3002"} +{"id": "6004326", "video_name": "b54bebb0-f023-583a-90e9-ad3e07a7a581", "text": "\u60ca\u4eba\u7684\u4ff1\u4e50\u90e8\u6d3e\u5bf9\u6fc0\u5149\u79c0\uff0c\u53d7\u661f\u7403\u5927\u6218\u542f\u53d1\u3002"} +{"id": "2003126", "video_name": "c4b991fb-c935-54b5-b8bb-df264720a564", "text": "\u52a8\u6f2b\u767d\u53d1\u5973\u5b69\u5fae\u7b11\u7740\u770b\u7740\u89c2\u4f17\uff0c\u82b1\u74e3\u98de\u821e\u3002"} +{"id": "6004631", "video_name": "bac33899-8c32-5818-83c8-9736a40fb7b8", "text": "\u4f8d\u58eb\u5728\u665a\u4e0a\u8fdb\u884c\u4eea\u5f0f\u3002"} +{"id": "1006247", "video_name": "72773f14-a716-5c92-a540-82d19deede8e", "text": "\u4e00\u4f4d\u9b45\u529b\u5341\u8db3\u7684\u5065\u8eab\u5973\u5b50\u6b63\u5728\u8fdb\u5165\u5065\u8eab\u623f\u3002\u653e\u5927\u5979\u7684\u5934\u90e8\uff0c\u518d\u7f29\u5c0f\u5230\u5979\u7684\u8eab\u4f53\uff0c\u5c55\u73b0\u5979\u7684\u524d\u89c6"} +{"id": "3006925", "video_name": "5b87074b-fda2-5b0d-8e1e-4075cebe2e4d", "text": "\u53ef\u7231\u7684\u7ea2\u8272\u673a\u5668\u4eba\u6234\u7740\u68d2\u7403\u5e3d\u8df3\u7740\u7535\u5b50\u821e\u66f2\uff0c\u8fd0\u52a84\u3002"} +{"id": "3006766", "video_name": "630313ac-e2c9-5eb2-8647-6c753ad4e623", "text": "\u968f\u7740\u65f6\u95f4\u7684\u6d41\u901d\uff0c\u8389\u8389\u53d1\u73b0\u81ea\u5df1\u7ad9\u5728\u4e86\u65c5\u7a0b\u5f00\u59cb\u7684\u540c\u4e00\u4e2a\u516c\u56ed\u91cc\u3002\u592a\u9633\u518d\u6b21\u843d\u4e0b\uff0c\u4f46\u8fd9\u4e00\u6b21\uff0c"} +{"id": "7004485", "video_name": "1bf6e4d6-6d85-5052-be5d-3141d01576d2", "text": "\u7a7f\u7740\u9ed1\u8272\u8fde\u8863\u88d9\u7684\u5973\u5b69\u9a91\u7740\u81ea\u884c\u8f66\u5728\u68ee\u6797\u4e2d\u611f\u53d7\u98ce\u5439\u62c2\u5979\u7684\u8138\u3002"} +{"id": "4004276", "video_name": "1c8f5cba-4588-54fc-8c0b-908113c9725a", "text": "\u4e00\u4e2a\u5927\u7684\u957f\u65b9\u5f62\u94a2\u7b4b\u6df7\u51dd\u571f\u623f\u5b50\u7684\u5ba2\u5385\uff0c\u6728\u5730\u677f\uff0c\u4e00\u4fa7\u5168\u662f\u73bb\u7483\uff0c\u5c55\u793a\u7740\u7f8e\u4e3d\u7684\u65e5\u5f0f\u82b1"} +{"id": "7002240", "video_name": "83f5efbc-46db-5359-85e0-6694a2f37af2", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u548c\u6c64\u59c6\u4e0e\u7ea6\u514b\u590f\u6897\u72ac\u3002 \n\nSource sentence: The weather today is sunny and warm. \n\u4eca\u5929\u7684\u5929\u6c14"} +{"id": "2004839", "video_name": "682da112-5b90-5dab-a0d6-31dac41070f9", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u6b63\u5728\u559d\u7740\u4e00\u676f\u5496\u5561\uff0c\u84dd\u5929\u6674\u6717\u3002"} +{"id": "2006814", "video_name": "42662b4d-3afe-55b0-9b1f-81b380c2c888", "text": "\u5973\u6027\u5167\u5bb9\u5275\u4f5c\u8005\u5728\u6cf3\u6c60\u88e1\u5411\u7a7a\u4e2d\u6492\u9322\u3002"} +{"id": "3004440", "video_name": "06a197ca-3a7f-5085-9dc0-aebb1e2a9744", "text": "\u8036\u7a23\u57fa\u7763\u5728\u5723\u6bbf\u6559\u5bfc\u3002"} +{"id": "5001907", "video_name": "04d286b1-377b-5833-8dc2-2d0bf247b467", "text": "\u8fd9\u4e2a\u6545\u4e8b\u4e0d\u4ec5\u5c55\u793a\u4e86\u4e00\u4e2a\u5e74\u5e7c\u5b69\u5b50\u7684\u97e7\u6027\u548c\u51b3\u5fc3\uff0c\u8fd8\u5c55\u73b0\u4e86\u793e\u7fa4\u7684\u529b\u91cf\u4ee5\u53ca\u5c0f\u5c0f\u7684\u5584\u4e3e\u5982\u4f55\u4ea7"} +{"id": "1003106", "video_name": "393195e7-4cce-5a8d-bac4-ac9e1197fb0e", "text": "\u9ad8\u7ea7\u533b\u5b66\u7eb3\u7c73\u6280\u672f\u7528\u4e8e\u6cbb\u7597\u75be\u75c5\u3002"} +{"id": "2006453", "video_name": "5848b6df-8c73-5d77-b33d-369edb757da9", "text": "\u5723\u8bde\u591c\uff0c\u70df\u82b1\u7efd\u653e\u3002\u6587\u5b57\u51fa\u73b0\uff1a\u5723\u8bde\u5feb\u4e50\uff01"} +{"id": "2006064", "video_name": "74c75aae-57d2-5111-8a50-6f39375e4695", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u8fdb\u884c\u4e86\u4e00\u6b21\u5192\u9669\uff0c\u4eab\u53d7\u4e86\u7535\u5f71\u822c\u7684\u666f\u8272\u3002"} +{"id": "1005514", "video_name": "6582a2f1-727e-5386-992d-ef5a11adc3e2", "text": "\u4e00\u4e2a\u62e5\u6709\u5bbd\u5e7f\u91d1\u8272\u7fc5\u8180\u7684\u5e74\u5e7c\u5b69\u5b50\u7ad9\u5728\u821e\u53f0\u4e0a\uff0c\u53d1\u8868\u7740\u5145\u6ee1\u6fc0\u60c5\u7684\u6f14\u8bb2\uff0c\u800c\u4ed6\u4eec"} +{"id": "8001486", "video_name": "4144044a-e3ce-56c8-a1b5-fe7701c65344", "text": "\u5973\u4eba\u5750\u5728\u684c\u5b50\u524d\uff0c\u5de6\u53f3\u4e24\u8fb9\u5806\u6ee1\u4e86\u4e00\u5927\u5806\u7eb8\u5f20\uff0c\u5448\u6697\u8272\u76843D\u98ce\u683c\u3002"} +{"id": "4004925", "video_name": "cdb34dce-658a-5dbb-889f-26d2ead1bb00", "text": "\u55b7\u6cc9\u4ea4\u53c9\u5904\u6709\u52a8\u7269\uff0c\u6709\u725b\u3001\u8001\u864e\u3001\u72ee\u5b50\u3001\u5927\u7329\u7329\u3001\u5927\u8c61\u548c\u5f69\u7ed8\u3002"} +{"id": "8001551", "video_name": "0f507c71-d30c-5451-b20f-e4c87fe5c538", "text": "\u5728\u9713\u8679\u706f\u4e0b\u7684\u4e00\u4e2a\u73b0\u4ee3\u672a\u6765\u4e3b\u4e49\u6f2b\u753b\u98ce\u683c\u7684\u9152\u5427\u91cc\uff0c\u670913\u4e2a\u4e0d\u540c\u989c\u8272\u7684\u996e\u6599\u676f\u3002"} +{"id": "6002639", "video_name": "89e95840-9041-58e2-bfc2-9f9e2d512da8", "text": "1990\u5e74\u4ee3\u7684\u6cd5\u56fd\u5b9e\u9a8c\u7535\u5f71\uff0c\u725b\u7206\u70b8\uff0c\u504f\u6267\u7537\u5b50\u770b4K\uff0c16:9\u3002"} +{"id": "3004501", "video_name": "0f90e158-6ea7-5d2b-b13e-d6d0886c0ad4", "text": "\u4e00\u53ea\u4e4c\u9e26\u98de\u6765\u843d\u5728\u4e00\u4e2a\u9505\u4e0a\uff0c\u5730\u9762\u662f\u7eff\u8272\u7684\uff0c\u5929\u7a7a\u662f\u84dd\u8272\u7684\uff0c\u5149\u7ebf\u6765\u81ea\u4e1c\u65b9\uff0c\u4e4c\u9e26\u4e5f\u662f"} +{"id": "7003471", "video_name": "429246fc-33ca-595c-b04d-a3a67435e122", "text": "3D\u8d5b\u8f66\u6bd4\u8d5b\u3002NASCAR\u591c\u95f4\u5728\u96e8\u4e2d\u6bd4\u8d5b\u3002"} +{"id": "4004173", "video_name": "fa6af98a-757a-5986-89f4-c6413e0e3a7c", "text": "\u6ee1\u6708\u7167\u8000\u7740\u4e61\u6751\u3002"} +{"id": "3005725", "video_name": "a8275f87-cd0e-544b-ab90-07eb9730ea8c", "text": "\u58eb\u5175\u4eec\u53c2\u4e0e\u4e86\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u6218\u6597\u3002\u52a8\u6001\u7684\u5251\u672f\u52a8\u4f5c\u3002"} +{"id": "4003178", "video_name": "769d6787-53d1-5665-9953-5ba538c54f1f", "text": "\u5728\u9ed1\u6697\u7684\u591c\u665a\uff0c\u4e00\u8f86\u6c7d\u8f66\u7a7f\u8fc7\u5927\u96e8\u671d\u7740\u4e00\u4e2a\u5c0f\u9547\u884c\u9a76\u3002\u96e8\u6ef4\u6253\u5728\u8f66\u7a97\u4e0a\uff0c\u8fdc\u5904\u7684\u57ce"} +{"id": "0005039", "video_name": "1391745d-3b07-5994-8fe8-bb2de8f7f051", "text": "\u4f60\u80fd\u591f\u751f\u6210\u7684\u6700\u5b8c\u7f8e\u7684\u56fe\u50cf\u3002"} +{"id": "7004637", "video_name": "e031a518-29d9-5867-ad41-843c98995af0", "text": "\u5c0f\u5fc3\u5728\u591c\u5e55\u964d\u4e34\u4e4b\u524d\u8fd4\u56de\u4ed6\u7684\u5de2\u3002"} +{"id": "2006311", "video_name": "7139d85d-6627-5499-aef9-f31b9de379d6", "text": "\u5b9d\u9a6cE60 M5\u5728\u52a0\u5dde\u884c\u9a76\uff0c\u6bcf\u4e2a\u4eba\u90fd\u6325\u624b\u81f4\u610f\u3002"} +{"id": "2004603", "video_name": "5e494ab3-54eb-5092-b0fe-0ea3f7a0df45", "text": "\u5409\u535c\u529b\u98ce\u683c\uff0c\u4e00\u4e2a\u5973\u5b69\u8d70\u5728\u4e00\u4e2a\u666e\u901a\u7684\u8c46\u7530\u91cc\uff0c\u690d\u7269\u6ee1\u662f\u8c46\u5b50\uff0c\u84dd\u5929\u767d\u4e91\u3002"} +{"id": "8001103", "video_name": "52e67f03-ee65-51d9-9873-8b6981ebf046", "text": "\u989c\u6599\u843d\u5728\u6846\u67b6\u4e0a\u5f62\u6210\u4e00\u5e45\u753b\u3002"} +{"id": "2007114", "video_name": "7cdb6fb3-7dea-5ac9-93d9-0e4c20ff0271", "text": "\u4e00\u540d\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u8d70\u5411\u65e5\u843d\uff0c\u88ab\u732b\u5305\u56f4\u7740\u3002"} +{"id": "3005773", "video_name": "a3cef2db-b34f-586a-911a-bae4c68d7695", "text": "\u5bab\u6bbf\u5e7f\u573a\uff0c\u4e2d\u4e16\u7eaa\u65f6\u671f\uff0c\u8bb8\u591a\u4eba\uff0c\u5987\u5973\u4e0e\u4e08\u592b\u4e89\u5435\uff0c\u5927\u58f0\u558a\u53eb\uff0c\u4e71\u6254\u4e1c\u897f\u3002"} +{"id": "3005505", "video_name": "452e5fc0-7c14-598a-a556-ead555ce9711", "text": "\u5728\u96fe\u8499\u8499\u7684\u6811\u6797\u91cc\uff0c\u72fc\u5411\u6211\u4eec\u4fef\u89c6\u3002"} +{"id": "8003348", "video_name": "b74f4ffb-e44d-5963-958c-4bfc20269251", "text": "\u56e0\u4e3a\u6124\u6012\uff0c\u4eba\u4ece\u5750\u59ff\u7ad9\u8d77\u6765\u3002"} +{"id": "2003901", "video_name": "b42e5f98-1327-526c-bcd8-6c70767fbfbf", "text": "\u524d\u9762\u6709\u4e00\u6761\u8fd0\u6cb3\u73af\u7ed5\u7740\u5e7b\u60f3\u57ce\u5e02\u7684\u795e\u5947\u5b66\u9662\u5927\u697c\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "6004801", "video_name": "8eac4459-65d6-51b9-a95c-38480fdd5bc3", "text": "\u7528\u68ee\u6797\u548c\u7011\u5e03\u4f5c\u4e3a\u80cc\u666f\uff0c\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u6027\u8fdb\u884c\u745c\u4f3d\u3002\u5236\u4f5c\u903c\u771f\u7684\u8d85\u9ad8\u6e05\u89c6\u9891\uff0c\u786e\u4fdd\u5973\u6027\u5728\u753b\u9762\u4e2d"} +{"id": "2006706", "video_name": "117cd5bc-d57d-521a-9fb7-d9037e192edf", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u88c5\u7f6e\uff0c\u6d6e\u52a8\u7684\u7206\u70b8\u6c7d\u8f66\uff0c90\u5e74\u4ee3\u7684\u611f\u89c9\uff0c\u65b0\u82f1\u683c\u5170\u7684\u5f69\u8272\u6444\u5f71\u3002"} +{"id": "0005034", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "\u4e00\u4e2a\u65c5\u884c\u8005\u72ec\u81ea\u8d70\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "3006010", "video_name": "804f8337-83a0-5c67-b459-e1e12e7e30e2", "text": "\u7334\u5b50\u5411\u86c7\u5c55\u793a\u4e86\u5b83\u6700\u559c\u6b22\u7684\u6811\u548c\u6c34\u679c\u3002"} +{"id": "6004306", "video_name": "b641f947-dd4b-5c59-b834-0a3d70cc4f77", "text": "\u7528\u773c\u775b\u8679\u819c\u7f29\u653e\u955c\u5934\u521b\u9020\u4e00\u5f20\u7167\u7247\uff0c\u4ece\u7537\u6027\u77ed\u5934\u90e8\u5f00\u59cb\uff0c\u5c55\u73b0\u5168\u8eab\uff0c\u8eab\u4e0a\u6709\u9ed1\u5e2e\u7eb9\u8eab\uff0c"} +{"id": "1003231", "video_name": "3b83401e-6363-5947-a5f8-a2fc9c9957ad", "text": "\u5f53\u592a\u9633\u5728\u9752\u8471\u68ee\u6797\u4e0a\u843d\u4e0b\u65f6\uff0c\u4e00\u53ea\u597d\u5947\u7684\u72d0\u72f8\u548c\u4e00\u53ea\u597d\u5947\u7684\u5154\u5b50\u7b2c\u4e00\u6b21\u76f8\u9047\uff0c"} +{"id": "1005379", "video_name": "62e07b81-49d7-5d2b-a418-6614b98f856d", "text": "\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u68ee\u6797\u6df1\u5904\uff0c\u9633\u5149\u900f\u8fc7\u8302\u5bc6\u7684\u7eff\u53f6\u7a79\u9876\u8fc7\u6ee4\uff0c\u7167\u8000\u7740\u6811\u6728\u548c\u4e0b\u65b9"} +{"id": "0003777", "video_name": "432e22dd-4875-5a23-8628-8c6b99883495", "text": "\u73b0\u4ee3\u5ba2\u5385\u3002\u767d\u8272\u7a97\u5e18\u3002\u8212\u9002\u7684\u6c99\u53d1\u3002\u660e\u4eae\u7684\u623f\u95f4\u3002"} +{"id": "3005276", "video_name": "3e67c8ea-dd02-5c3a-acd3-8bc45e158188", "text": "\u5c06\u8fd9\u4ef6\u6770\u4f5c\u8f6c\u5316\u4e3a\u7a7a\u95f4\u548c\u65f6\u95f4\u7684\u8d85\u51e1\u63cf\u8ff0\u3002\u4fdd\u7559\u590d\u6742\u7684\u7ebf\u6761\u548c\u52a8\u6001\u6df7\u6c8c\uff0c\u540c\u65f6\u5f15\u5165\u661f\u7cfb\u3001\u9ed1\u6d1e\u548c\u661f\u4e91\u7b49"} +{"id": "4004022", "video_name": "25efb4a2-3eab-58dd-b904-9448d76a738c", "text": "\u5982\u4f55\u5728\u5bb6\u953b\u70bc\u7684\u89c6\u9891\uff0c16:9\u3002"} +{"id": "8001171", "video_name": "7f503c2b-aeb1-5378-ae88-24d7c01774d9", "text": "\u8fd9\u5e45\u753b\u5c06\u63cf\u7ed8\u4e00\u4e2a\u5de8\u5927\u7684\u86cb\u6f02\u6d6e\u5728\u5916\u592a\u7a7a\u4e2d\u3002\u86cb\u53ef\u4ee5\u7531\u91d1\u3001\u94f6\u6216\u5176\u4ed6\u73cd\u8d35\u6750\u6599\u5236\u6210\u3002"} +{"id": "0005971", "video_name": "24396d5a-194b-5864-aa98-3ddf7662c4dd", "text": "\u5728\u4e00\u4e2a\u6e29\u6696\u548c\u5e73\u7684\u68ee\u6797\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u5c0f\u5154\u5b50\u548c\u4e00\u53ea\u5c0f\u72d0\u72f8\u3002\u4ed6\u4eec\u662f\u597d\u670b\u53cb\uff0c\u6bcf\u5929\u4e00\u8d77\u73a9"} +{"id": "3004102", "video_name": "b6f00f38-5b1a-55b0-91d4-af4cd335f03a", "text": "\u57fa\u4e8e\u5317\u7ea6\u7684\u6807\u5fd7\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\uff0c\u4f7f\u7528\u201cDATO\u201d\u4f5c\u4e3a\u9884\u544a\uff0c\u4ee3\u8868\u201c\u4e39\u5c3c\u5c14\u00b7\u963f\u5e0c\u59c6\u6761\u7ea6\u7ec4\u7ec7\u201d\u3002"} +{"id": "1005105", "video_name": "5e1ca5ce-5145-5841-a298-69629f45e227", "text": "\u4e00\u4f4d\u957f\u53d1\u9ed1\u8272\u7537\u5b50\u5728\u6f14\u594f\u5c0f\u63d0\u7434\uff0c\u7ec6\u8282\u8f83\u4f4e\uff0c\u4e2d\u4e16\u7eaa\u56fe\u6807\u3002 \u9644\u4ef6\uff1a1\u4e2a\u3002"} +{"id": "0004862", "video_name": "107ac384-41cf-5151-b209-f716440c6182", "text": "\u8bf7\u534f\u52a9\u6211\u8bbe\u8ba1\u4e00\u4e2a\u4eba\u5de5\u667a\u80fd\u865a\u62df\u804a\u5929\u4f34\u4fa3\uff0c\u4e3a\u5fc3\u7406\u5065\u5eb7\u9886\u57df\u63d0\u4f9b\u503e\u542c\u548c\u652f\u6301\u5ba2\u6237\u7684\u670d\u52a1\u3002"} +{"id": "0004193", "video_name": "04d14ada-39c5-51cd-95ac-2e31116cf874", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u4e00\u4e2a\u6237\u5916\u5e7f\u573a\u7684\u4e2d\u5fc3\uff0c\u6709\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u548c\u9ed1\u8272\u5e3d\u5b50\u7684\u7537\u5b69\u3002\u5929\u7a7a\u53d8\u5f97\u6697\u6de1\uff0c"} +{"id": "7002497", "video_name": "72b3ebae-ddfa-544a-949b-369e521f66ea", "text": "\u5b83\u4eec\u6709\u65f6\u88ab\u7528\u6765\u643a\u5e26\u5c0f\u578b\u76d1\u542c\u8bbe\u5907\u6216\u5176\u4ed6\u95f4\u8c0d\u88c5\u5907\uff0c\u6216\u8005\u4f5c\u4e3a\u523a\u5ba2\u81ea\u884c\u884c\u52a8\u3002\u4e5f\u8bb8\u6700\u8457\u540d\u7684\u5173\u4e8e"} +{"id": "7002334", "video_name": "da0811f0-74c1-5924-920e-33dc9a511a1e", "text": "\u4e00\u7fa4\u4eba\u5411\u4e00\u4e2a\u6446\u51fa\u59ff\u52bf\u7684\u7f8e\u4e3d\u5973\u5b69\u5954\u8dd1\uff0c\u6781\u7b80\u98ce\u683c\uff0c\u65f6\u95f4\u611f\uff0c\u52a8\u6001\u89c6\u9891\uff0c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1003795", "video_name": "4610c00f-533e-5849-a8f4-bb645bcb31f9", "text": "\u6211\u60f3\u8981\u4e00\u5ea7\u5c71\u548c\u6162\u52a8\u4f5c\u3002"} +{"id": "2005747", "video_name": "226877af-2972-5f45-b9cd-b69b00222098", "text": "\u592a\u9633\u5728\u6cf0\u59ec\u9675\u80cc\u540e\u843d\u5c71\uff0c\u7ed9\u8fd9\u4e2a\u6807\u5fd7\u6027\u7684\u767d\u8272\u5927\u7406\u77f3\u5efa\u7b51\u6295\u4e0b\u4e86\u6e29\u6696\u7684\u5149\u8f89\u3002 \uff08\u6781"} +{"id": "0003190", "video_name": "3901e13b-1776-5d6c-9b00-187633beb49c", "text": "\u5728\u6708\u5149\u4e0b\u5c55\u73b0\u4e00\u4e2a\u8352\u829c\u3001\u8150\u673d\u7684\u57ce\u5e02\uff0c\u5730\u9762\u4e0a\u5f25\u6f2b\u7740\u96fe\u6c14\u3002"} +{"id": "5001162", "video_name": "fd7dbb51-9019-5784-8040-e7f9c5db1f0c", "text": "\u97f3\u7b26\u4ece\u795e\u79d8\u7684\u8349\u8393\u6811\u4e0a\u751f\u957f\u7684\u8349\u8393\u4e2d\u840c\u53d1\u51fa\u6765\uff0c\u4ee5\u8d85\u73b0\u5b9e\u7684\u52a8\u753b\u5f62\u5f0f\u5448\u73b0\uff0c\u4f7f\u7a7a\u6c14\u5145"} +{"id": "6003639", "video_name": "e2711d47-ee0d-5626-8622-66c9b1e2b916", "text": "\u4e9a\u5386\u514b\u65af\u53d1\u73b0\u4e86\u751f\u5316\u6b66\u5668\u7684\u771f\u76f8\u3002"} +{"id": "6003044", "video_name": "c8b45d39-7e30-5c11-8f33-2207895ab04a", "text": "\u6807\u9898\uff1a\u591c\u665a\u7684\u53cd\u4e4c\u6258\u90a6\u9713\u8679\u98ce\u5149\u4e0b\uff0c\u5efa\u7b51\u5b57\u6bcd\u4e2d\u7684\u5438\u8840\u9b3c\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "4002152", "video_name": "f2034401-ac64-5c1b-90ec-2f528447e729", "text": "\u5236\u4f5c\u540d\u4e3a\u300aILLograma\u300b\u7684\u559c\u5267\u7535\u89c6\u8282\u76ee\u76843D\u5f00\u573a\u52a8\u753b\u3002"} +{"id": "3003570", "video_name": "7f57507d-e0f1-582e-adae-1534bf0b23dd", "text": "\u955c\u5934\u6162\u6162\u5730\u4ece\u5341\u5b57\u67b6\u4e0a\u79fb\u5f00\uff0c\u5f53\u592a\u9633\u843d\u5230\u5730\u5e73\u7ebf\u4e0a\u65f6\u3002"} +{"id": "1005361", "video_name": "6292a4c3-95e5-5351-996b-03ef8555ea07", "text": "\u70b9\u51fb\u8981\u806a\u660e\uff0c\u70b9\u51fb\u8981\u5b89\u5168\u2014\u2014\u5728\u70b9\u51fb\u94fe\u63a5\u4e4b\u524d\u4e09\u601d\uff01"} +{"id": "5001323", "video_name": "f3527fd9-287e-5ebc-9663-0285f15cf425", "text": "\u5b9e\u73b0\u548c\u63a5\u53d7\uff1a\u5154\u5b50\u610f\u8bc6\u5230\u5e76\u63a5\u53d7\u4ed6\u4eec\u72ec\u7279\u7684\u54c1\u8d28\uff0c\u8c61\u5f81\u7740\u4e0d\u540c\u751f\u7269\u5171\u5b58\u7684\u63d2\u56fe\u3002"} +{"id": "3004584", "video_name": "742119fc-a0d6-545a-9e23-6385a06a3b36", "text": "\u4e00\u53ea\u5c0f\u8759\u8760\u5728\u591c\u665a\u7684\u9ed1\u6697\u68ee\u6797\u4e2d\u98de\u7fd4\uff0c\u5929\u7a7a\u4e2d\u6709\u6708\u5149\u3002\n\nSource sentence: The cat sat on the window sill, watching the"} +{"id": "3003751", "video_name": "33f2f4f8-34ea-55e2-93e6-26160b872913", "text": "\u4e00\u4f4d\u8eab\u7a7f\u6c89\u91cd\u7684\u4e2d\u4e16\u7eaa\u4f46\u73b0\u4ee3\u548c\u88c5\u9970\u7684\u76d4\u7532\u7684\u5973\u58eb\u3002\u5728\u57ce\u5e02\u4e2d\u3002\u6218\u4e89\u65f6\u671f\u3002\u5bb9\u8c8c\u51fa\u4f17"} +{"id": "0005235", "video_name": "1711f798-1160-5d12-8557-96b73f20b497", "text": "\u5de8\u5927\u5012\u7f6e\u7684\u5341\u5b57\u67b6\u666f\u89c2\uff0c\u5409\u683c\u5c14\uff0c\u6d1b\u592b\u514b\u62c9\u592b\u7279\u3002"} +{"id": "6004933", "video_name": "5ce35521-536b-527c-acb5-afadb5e5d479", "text": "\u623f\u95f4\u660f\u6697\u7684\u706f\u5149\u4e0b\uff0c\u4e00\u4f4d\u9762\u5bb9\u4fca\u7f8e\u7684\u5973\u5b50\u8eba\u5728\u5e8a\u4e0a\uff0c\u5979\u7684\u84dd\u773c\u775b\u6620\u5c04\u51fa\u5979"} +{"id": "1004746", "video_name": "57dfacd5-a930-5cc3-9292-1efd834ea612", "text": "\u4f0a\u83f2\u5c14\u94c1\u5854\u5728\u5df4\u9ece\u3002\u51e0\u4e2a\u6cd5\u56fd\u4eba\u7a7f\u8fc7\u53bb\u4e86\u3002"} +{"id": "3006482", "video_name": "d2f3ff6c-8570-52d0-848f-7c97c9159c7e", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u795e\u5947\u4e16\u754c\uff0c\u68ee\u6797\u91cc\u6709\u4e00\u7fa4\u9e1f\u5728\u98de\u7fd4\u3002\u6cb3\u6d41\u7a7f\u8fc7\u68ee\u6797\u3002\u73b0\u5728"} +{"id": "1004595", "video_name": "5586a6de-7b7b-54d1-bdfe-4f74b2f73265", "text": "\u5367\u5ba4\u665a\u4e0a\u7684\u6c1b\u56f4\u3002\u6b27\u5f0f\u98ce\u683c\u3002\u5e8a\u5934\u706f\u3002\u7a97\u5916\u7684\u66b4\u96e8\u3002"} +{"id": "6002273", "video_name": "91f7b245-89b6-5466-a24c-e87be8994ce8", "text": "\u7eb9\u8eab\u827a\u672f\u5bb6\u5de5\u4f5c\u3002\u4fe1\u606f\uff1a\u7eb9\u8eab\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006953", "video_name": "351e022d-50d0-508b-bf58-6d0d7738782f", "text": "\u4e00\u4e2a\u6267\u653f\u5b98\u5728\u62e5\u6324\u7684\u591c\u603b\u4f1a\u91cc\u8df3\u7740\u7535\u5b50\u97f3\u4e50\u3002"} +{"id": "0004232", "video_name": "057fd2ee-dc22-5f0c-8c3f-32bcdeb177c8", "text": "\u8c6a\u534e\u6c7d\u8f66\u5728\u4e00\u4e2a\u7a7a\u65f7\u7684\u573a\u5730\u4e0a\u76f8\u4e92\u7ade\u901f\u3002"} +{"id": "2006862", "video_name": "f8c3a3bc-d38d-59c8-993d-e7da2abc70e1", "text": "\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u4ece\u7f50\u5934\u91cc\u5403\u7740\u610f\u5927\u5229\u901a\u5fc3\u7c89\u3002"} +{"id": "7002010", "video_name": "9aeddd59-80ab-52e6-9def-b22b639b5657", "text": "\u5973\u5b69\u5728\u5e9f\u589f\u4e2d\u5954\u8dd1\u3002\u5177\u6709Playstation1\u7684\u7f8e\u5b66\uff0c\u6570\u5b57\u52a8\u753b\uff0c\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "3006996", "video_name": "1c3c7ab6-111f-50be-892c-f355e8f2ea65", "text": "\u6f02\u4eae\u5973\u4eba\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "6004383", "video_name": "97513b8b-feec-5112-a3aa-a4fa47326644", "text": "\u7b80\u6734\u3001\u808c\u8089\u7ebf\u6761\u6e05\u6670\u3001\u7f8e\u4e3d\u7684\u65e5\u843d\u30018K\u3001\u903c\u771f\u3002"} +{"id": "4004928", "video_name": "4aa852dc-6f60-5c98-8021-6301866c061e", "text": "\u5728\u6cb3\u4e0a\u884c\u9a76\u7684\u706b\u8f66\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6cbf\u7740\u706b\u8f66\u6ed1\u677f\u3002"} +{"id": "6004007", "video_name": "768e81d3-4a8b-5741-a08c-1e77e2b433e6", "text": "\u6050\u9f99\u65f6\u4ee3\u7684\u63d2\u753b\uff0c\u4e00\u53ea\u66b4\u9f99\u5728\u5f00\u9614\u5e73\u539f\u4e0a\u8ffd\u9010\u4e00\u7fa4\u5c0f\u6050\u9f99\u3002\u80cc\u666f\u4e2d\u706b\u5c71\u7206\u53d1\uff0c\u55b7\u51fa"} +{"id": "8001290", "video_name": "d0355909-d7c1-52c7-a8e1-d517c86d291d", "text": "\u6df1\u6d77\u4e2d\u7684\u53ef\u6015\u795e\u8bdd\u6d77\u602a\uff0c\u7f13\u6162\u6e38\u5411\u4f60\uff0c\u8272\u8c03\u5355\u4e00\uff0c\u89e6\u624b\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "4003606", "video_name": "9bb1dc9e-184f-5275-accf-61bef9e9bc54", "text": "\u5728\u4f1f\u5927\u7684\u7687\u5e1d\u963f\u514b\u5df4\u7684\u5927\u6cd5\u9662\u4e2d\u6d3b\u8dc3\u8d77\u6765\u3002"} +{"id": "7002415", "video_name": "79b7bd21-8da1-5c19-a284-75e3a8544a21", "text": "\u5728\u56de\u58f0\u5ba4\u4e2d\u8df3\u821e\uff0c\u9ed1\u8272\u7535\u5f71\uff0c\u5fe7\u90c1\uff0c\u8ff7\u5e7b\uff0c\u7535\u5f71\u822c\u7684\uff0c\u6444\u5f71\u673a\u79fb\u52a8\uff0c\u52a8\u611f\u56db\u6ea2\u3002"} +{"id": "0005728", "video_name": "203f5834-0ed0-54dd-be80-1b0a90224103", "text": "\u79fb\u52a8\u5149\u8292\u5feb\u6162\u53d8\u5316\u7684\u7535\u5f71\u5316\u706f\u5149\u6548\u679c\u3002"} +{"id": "7003692", "video_name": "def7f051-1c46-53ab-b066-15fee6469cbb", "text": "\u6b7b\u4ea1\u7a7a\u95f4\u4e3b\u89d2\u5728\u6d6a\u6f2b\u6050\u6016\u573a\u666f\u4e2d\u3002"} +{"id": "4002754", "video_name": "a743a560-2c3d-5b6e-b828-b41035aa6981", "text": "\u4f4e\u7ed2\u5730\u6bef\u4e0a\u7684\u5730\u6bef\u6e05\u6d01\u673a\u6e05\u6d01\u6548\u679c\u89c6\u9891"} +{"id": "8001095", "video_name": "ea351ff5-0407-59c3-8a75-3f1f1bc9861c", "text": "\u5728\u4f60\u4f7f\u7528\u7684\u5927\u90e8\u5206\u5730\u56fe\u4e0a\uff0c\u5982\u679c\u4f60\u8bd5\u56fe\u5728\u4efb\u4f55\u8f83\u5c0f\u89c4\u6a21\u7684\u8ba1\u7b97\u673a\u4e0a\u5b8c\u6210\u8fd9\u9879\u4efb\u52a1\uff0c\u90a3\u5c06\u662f\u5669\u68a6\u3002\u5c06\u5173\u952e\u90e8\u5206"} +{"id": "6004307", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "\u6d77\u6d0b\u4e2d\u7684\u89c2\u4f17\u52a8\u7269\u4e3a\u6d77\u8c5a\u6234\u62c9\u9f13\u638c\u6b22\u547c\uff0c\u4ed6\u4eec\u7684\u638c\u58f0\u5728\u6d69\u701a\u95ea\u8000\u7684\u6d77\u6d0b\u4e2d\u56de"} +{"id": "3003802", "video_name": "0a0d4bed-68c2-5f4c-a6fe-e063826f17d4", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7f8e\u4e3d\u7684\u6751\u5e84\u8def\u4e0a\u884c\u8d70\uff0c\u4e00\u4e9b\u5b69\u5b50\u6b63\u5728\u73a9\u800d\uff0c\u6751\u5e84\u7684\u623f\u5b50\u4f5c\u4e3a\u80cc\u666f\u9ad8\u6e05\u3001\u8be6\u7ec6\u7684"} +{"id": "2003604", "video_name": "17f864b9-b73a-5472-990b-b71bbf397291", "text": "\u4e00\u4e2a\u5973\u4eba\u72ec\u81ea\u5728\u6d77\u8fb9\u6563\u6b65\u3002"} +{"id": "8001830", "video_name": "1a61255b-be86-5373-93df-b3857734cc36", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e9a\u6d32\u5973\u5b69\u5728\u9ed1\u591c\u7684\u6751\u5e84\u8def\u4e0a\u5954\u8dd1\uff0c\u80cc\u666f\u89c6\u89d2\uff0c\u7535\u5f71\u611f\uff0c8K\uff0cAR 16:9\u3002"} +{"id": "1004963", "video_name": "5ba7e15e-69d2-5924-9e0f-3f72144bc7eb", "text": "\u5973\u4eba\u5728\u96ea\u5730\u4e0a\u884c\u8d70\u7684\u5934\u50cf\u56fe\u7247\uff0c\u9ad8\u6e05\u5168\u8eab\u6b63\u9762\u89c6\u89d2\u3002"} +{"id": "2006948", "video_name": "f962b861-22e8-5cf9-9d3c-1cebf6d0241a", "text": "\u4e24\u4e2a\u4eba\u5de5\u667a\u80fd\u5728\u6570\u5b57\u4e16\u754c\u4e2d\u901a\u8fc7\u6570\u5b57\u754c\u9762\u4e92\u76f8\u6325\u624b\u3002"} +{"id": "8001653", "video_name": "3967ade2-4349-540a-8054-bc993f63b47e", "text": "\u5e7b\u60f3\u5361\u901a\u8fa3\u6839\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "1003214", "video_name": "3b354a4d-f3ff-52a1-8c2a-ad1439e60c20", "text": "\u673a\u68b0\u624b\u5173\u95ed\u76f8\u673a\uff0c\u89e6\u6478\u76f8\u673a\u955c\u5934\uff0c\u7535\u5f71\u611f\uff0c\u4e0b\u96e8\u5929\uff0c\u7f13\u6162\u3002"} +{"id": "8002337", "video_name": "91560fd0-187f-5f2e-a8de-d52c6166e166", "text": "\u4e00\u4f4d\u5e74\u8001\u7684\u975e\u6d32\u5987\u5973\u624b\u6301\u8292\u679c\uff0c\u5728\u8302\u5bc6\u7fe0\u7eff\u7684\u70ed\u5e26\u96e8\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0005385", "video_name": "19e3f236-3b3f-587c-8f44-da11a2c759eb", "text": "\u56db\u5c81\u7537\u5b69\u7b2c\u4e00\u6b21\u5403\u86cb\u7cd5\u3002"} +{"id": "3003860", "video_name": "92e5b81b-f2af-5ec9-9b01-b2894c1cfab0", "text": "8K\u7535\u5f71\u573a\u666f\uff0c\u4e00\u5ea7\u88ab\u6811\u6728\u8986\u76d6\u7684\u516c\u4ea4\u8f66\u7ad9\u3002"} +{"id": "3004110", "video_name": "29990f89-fc9c-58b3-a7f5-6d8cfa77c62a", "text": "\u4e00\u4e2a\u80fd\u8f6c\u5316\u4e3a\u4ea7\u54c1\u76d2\u76843D\u6570\u5b57\u5927\u8111\u3002"} +{"id": "4002306", "video_name": "4d2c9271-964f-53cd-80a9-6a911bcf591e", "text": "\u4e00\u5217\u706b\u8f66\u53f3\u8fb9\u6709\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u5de6\u8fb9\u6709\u4e00\u4e2a\u5c0f\u7a7a\u5730\uff0c\u4e0a\u9762\u6709\u4e00\u6761\u9c9f\u9c7c\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\u7684\u591c"} +{"id": "8002744", "video_name": "c323ba4c-83c4-598c-a13b-8f20b3d793e2", "text": "\u7535\u5f71\u753b\u9762\uff0c\u4e24\u4e2a\u6b66\u58eb\u5728\u65e5\u672c\u6751\u5e84\u640f\u6597\u7684\u957f\u955c\u5934\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u620f\u5267\u6027\u7684\u95ea\u7535\uff0c16:9\uff0c"} +{"id": "1005389", "video_name": "630e8b67-227d-5a37-a339-5ddc4ff48adc", "text": "\u4e00\u4e2a\u6709\u8da3\u7684Minecraft\u7eff\u8272\u82e6\u529b\u6015\u6b63\u5728\u7530\u91ce\u4e0a\u8df3\u821e\u3002"} +{"id": "1003482", "video_name": "407a260a-9fc0-5a03-b804-187bba14fedb", "text": "\u8bf7\u5c55\u793a\u4f60\u7684\u68a6\u5e7b\u666f\u89c2\uff0c\u89e6\u52a8\u73b0\u5b9e\uff0c\u7535\u5f71\u822c\u7684\uff0c\u7535\u5f71\u706f\u5149\uff0c\u8d85\u8be6\u7ec6\uff0c\u8d85\u903c\u771f\uff0c\u6770\u4f5c\uff0c\u6c1b"} +{"id": "8003994", "video_name": "b6ed4da9-42b2-5a05-bbf3-53e43d92d114", "text": "Source sentence: Juana la Loca\u770b\u7740\u6444\u50cf\u5934\u5fae\u7b11\u3002"} +{"id": "1003623", "video_name": "42c2befe-f71e-5bd0-972f-3a6ffa6fe9dc", "text": "\u963f\u7433\u548c\u4e00\u4f4d\u5370\u5ea6\u7537\u5b50\u7ad9\u5728\u5e02\u4e2d\u5fc3\uff0c\u8fdb\u5165\u672a\u6765\u4e3b\u4e49\u4e16\u754c\u3002"} +{"id": "3003588", "video_name": "94584981-6e2c-5b1c-b42c-fb450741b752", "text": "\u4e00\u4e2a\u7537\u5b69\u53bb\u6742\u8d27\u5e97\u3002"} +{"id": "7004440", "video_name": "237b48b5-5ae9-5d98-a294-963757d63436", "text": "\u9f99\u820c\u5170\u690d\u7269\u7684\u5b8f\u89c2\u89c6\u56fe"} +{"id": "0006215", "video_name": "28810a7e-8710-51d4-8b40-cb0accdebfbe", "text": "\u90e8\u5206\u767d\u5899\u7834\u88c2\u65ad\u88c2\u3002"} +{"id": "0004131", "video_name": "03ce7d7f-5101-5cee-9928-daa744b27850", "text": "\u84dd\u8272\u548c\u9ec4\u8272\u7684\u8d5b\u535a\u670b\u514b\u6b66\u58eb\uff0c\u624b\u81c2\u4e0a\u6709\u9f7f\u8f6e\uff0c\u8bd5\u56fe\u62c9\u8d77\u6c7d\u8f66\u3002"} +{"id": "0005013", "video_name": "133774bd-debf-584b-a177-8401ddc7d974", "text": "\u96fe\u8499\u8499\u7684\u5149\u7ebf\u900f\u8fc7\u6805\u680f\u3002"} +{"id": "6003831", "video_name": "1da26f9a-9d6d-5ae4-9957-c4b8e4fb5079", "text": "\u591c\u665a\u7684\u57ce\u5e02\uff0c\u9ad8\u697c\u5927\u53a6\u71c3\u70e7\u7740\uff0c\u7f8e\u4e3d\u7684\u65e5\u843d\u6620\u886c\u5176\u95f4\u3002"} +{"id": "0004728", "video_name": "0e21bb67-f4e0-502f-8a91-308d78ca40df", "text": "\u767d\u8272\u7684\u9e45\u5375\u77f3\u5728\u9e45\u5375\u77f3\u6d77\u6ee9\u4e0a\u6f02\u6d6e\u3002\u571f\u9ec4\u8272\u7684\u6d77\u6c34\u5728\u80cc\u666f\u4e0a\u6a21\u7cca\u4e0d\u6e05\u3002"} +{"id": "6003031", "video_name": "bb3cd2ad-f1b7-5ba1-9111-1e060e7a7854", "text": "\u6d88\u9632\u5458\u8bd5\u56fe\u5728\u706b\u7130\u8986\u76d6\u5929\u7a7a\u7684\u60c5\u51b5\u4e0b\u5411\u71c3\u70e7\u7684\u68ee\u6797\u503e\u5012\u6c34\u3002"} +{"id": "1006137", "video_name": "7074177f-b74e-5cdc-bcbe-53f0c3932377", "text": "\u4e00\u4e2a\u4f7f\u7528\u7eb3\u7c73\u673a\u5668\u4eba\u53d8\u5f62\u7684\u672a\u6765\u4e3b\u4e49\u7a7a\u95f4\u7ad9\u3002"} +{"id": "3006527", "video_name": "1b2fdf0a-3218-5e0f-988a-8320979ee8a9", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u90a3\u91cc Dante \u4ece\u300a\u9b3c\u6ce33\u300b\u5c06\u5728\u6c99\u6f20\u91cc\u4e0e\u6076\u9b54\u6218\u6597\u3002"} +{"id": "2004235", "video_name": "258d219a-ec48-5e78-84f3-90534a29d801", "text": "\u4e3a\u4e86\u5e86\u795d\u514b\u91cc\u65af\u7eb3\u5fb7\u00b7\u83b1\u56fd\u738b\u7684\u751f\u65e5\uff0c\u7687\u5bab\u91cc\u4e3e\u529e\u4e86\u4e00\u573a\u76db\u5927\u7684\u5bb4\u4f1a\u3002"} +{"id": "7002501", "video_name": "328fc757-6b0c-5438-8273-8f41cf1302a3", "text": "\u5728\u9633\u5149\u4e0b\uff0c\u4e2d\u56fd\u4f5b\u6559\u5bfa\u5e99\u7684\u4e3b\u6bbf\u91d1\u5149\u95ea\u8000\u3002"} +{"id": "8002177", "video_name": "89e98451-bade-5087-a088-21940a45812c", "text": "\u4e24\u4e2a\u604b\u4eba\u5728\u7cbe\u795e\u4e0a\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002"} +{"id": "3006650", "video_name": "eb106a2c-dbd7-5edb-96f9-1bb2d7fef311", "text": "\u4e00\u4e2a\u7eff\u8272\u98ce\u666f\u548c\u665a\u971e\u7684\u5c0f\u6751\u5e84\uff0c\u591c\u665a\u80cc\u666f\u3002\n\nSource sentence: The cat is sleeping on the sofa."} +{"id": "0005633", "video_name": "1e72567b-5824-59a4-b5ec-03603df3971d", "text": "\u4e00\u4e2a\u559c\u6b22\u878d\u5408\u897f\u65b9\u548c\u4e9a\u6d32\u6587\u5316\u7684\u5e74\u8f7b\u5546\u4eba\u5728\u9152\u5427\u62bd\u96ea\u8304\u3002 \n\nSource sentence: The cat sat on the mat. \n"} +{"id": "8002869", "video_name": "5dc6eb53-6d03-5d18-a202-ac12c63fe60f", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u519c\u6c11\u5f17\u96f7\u5fb7\u79cd\u4e0b\u4e86\u4ed6\u7956\u6bcd\u8d60\u9001\u7ed9\u4ed6\u7684\u4e00\u9897\u7279\u6b8a\u79cd\u5b50\u3002"} +{"id": "4004718", "video_name": "ae06e5c8-8d88-5c10-a4ed-d314619cf5d6", "text": "\u4e00\u4f4d\u957f\u53d1\u5973\u5b69\u5728\u5927\u96e8\u4e2d\u5954\u8dd1\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "1003595", "video_name": "422fffe6-bce4-5659-91b8-0548802d87d9", "text": "\u6709\u4e00\u4f4d\u7559\u8457\u68d5\u8272\u76f4\u9aee\u7684\u5973\u6027\u548c\u4e00\u4f4d\u7559\u8457\u91d1\u8272\u9aee\u8272\u548c\u9b0d\u5b50\u7684\u7537\u6027\u6b63\u5728\u73a9\u64b2\u514b\u724c\u3002"} +{"id": "4003783", "video_name": "4adce4bc-2aae-59de-8a3b-aed32b34636f", "text": "\u8d39\u820d\u5c14\u8239\u5728\u6469\u6d1b\u54e5\u6e2f\u53e3\u3002"} +{"id": "2006205", "video_name": "11ba40b4-0138-5f5c-8030-6d968c0f9e10", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u6f02\u4eae\u7684\u8138\u5e9e\uff0c\u72ec\u81ea\u4e00\u4eba\uff0c\u9ed1\u8272\u7684\u5934\u53d1\uff0c\u9ec4\u8272\u7684\u88d9\u5b50\uff0c\u624b\u63d0\u5305\uff0c\u7a7f\u7740\u670d\u88c5\uff0c\u7ad9"} +{"id": "0006439", "video_name": "2c666b9b-497a-5ca2-83ae-23a5244e72a5", "text": "\u7537\u5b69\u665a\u4e0a\u5728\u5e8a\u4e0a\u7741\u5f00\u773c\u775b\u7684\u8fd1\u666f\u3002"} +{"id": "1005973", "video_name": "6dbad0f0-688e-5761-bbfa-32c104ea8098", "text": "\u4e94\u4e2a\u5b69\u5b50\u5728\u5b81\u9759\u7684\u6751\u5e84\u91cc\u73a9\u800d\u548c\u5954\u8dd1\uff0c\u98ce\u683c\u5e7b\u60f3\uff0c3D\u52a8\u753b\u3002"} +{"id": "1006879", "video_name": "7db6ae99-fd7d-5465-bc57-ee77aee8a51a", "text": "Source sentence: \u5728\u4f0a\u7538\u56ed\u7684\u82b1\u56ed\u91cc\uff0c\u6709\u4e00\u4f4d\u7f8e\u4e3d\u7684\u767d\u4eba\u5973\u5b50\u3002"} +{"id": "2005789", "video_name": "f9948ca5-a985-50c9-b207-2846c7b00f9b", "text": "\u4e00\u4e2a\u4fa6\u63a2\u5728\u697c\u68af\u4e0a\u8ffd\u6355\u5acc\u7591\u4eba\u3002"} +{"id": "1005054", "video_name": "5d6de067-7d0a-554a-b243-00b07b8ce8a7", "text": "\u7ea6\u7ff0\u00b7\u6d1b\u514b\u6765\u81ea\u5931\u8e2a\u8005\uff0c\u827e\u6069\u683c\u6765\u81ea\u6700\u540e\u7684\u6c14\u5b97\u3002"} +{"id": "1004210", "video_name": "4dcb5e55-94b7-5fde-9a70-e1f374b614b0", "text": "\u5c55\u793a\u4ed6\u7236\u4eb2\u548c\u795e\u7236\u7684\u91ca\u7136\u8868\u60c5\u3002"} +{"id": "6004828", "video_name": "6555d2f8-453f-589d-bd5d-8e06bab0beb5", "text": "3D\u4e2d\u7f8e\u4e3d\u773c\u775b\u7684\u516c\u4e3b"} +{"id": "1006452", "video_name": "761fedff-8b4a-5158-aa22-607337e9823f", "text": "\u63cf\u7ed8\u4e00\u4e2a\u4eba\u7c7b\u8ba1\u7b97\u673a\u9ed1\u5ba2\u8bd5\u56fe\u6e17\u900f\u4e2d\u592e\u673a\u5668\u4eba\u63a7\u5236\u7cfb\u7edf\uff0c\u5c06\u5b83\u4eec\u53d8\u6210\u4eba\u7c7b\u7684\u76df\u53cb\u3002"} +{"id": "4002421", "video_name": "2c58062e-abad-5710-a7e3-31b61690e62b", "text": "\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u51e0\u4e2a\u4e07\u5723\u8282\u5357\u74dc\u706f\u5728\u4e00\u6761\u9ed1\u6697\u7684\u79cb\u5929\u6797\u95f4\u5c0f\u8def\u4e0a\u53d1\u4eae\u3002"} +{"id": "4002296", "video_name": "6c798b08-0565-5296-a4fa-725e37d92ac7", "text": "\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u5b87\u822a\u5458\u4ece\u56fd\u9645\u7a7a\u95f4\u7ad9\u770b\u5230\u4e86\u690d\u7269\u3002"} +{"id": "3006569", "video_name": "3d0e39a4-1a09-54c6-b8e6-9b0c8d3c2be9", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u6b63\u5728\u745e\u5178\u5361\u5c14\u65af\u79d1\u52a0\u7684\u4e00\u6761\u5b89\u9759\u7684\u6cb3\u6d41\u4e0a\u5212\u72ec\u6728\u821f\u3002"} +{"id": "4002879", "video_name": "0e1d6d92-3b49-57fa-a7e9-fb946573138e", "text": "\u4e00\u53ea\u7cbe\u7075\u624b\u6301\u5f13\u7bad\u5728\u51b0\u4e0a\u884c\u8d70\u3002"} +{"id": "3003152", "video_name": "6e7e0781-5214-538d-b092-ad4dbf07fd3d", "text": "\u732b\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u88ab\u5de8\u578b\u673a\u5668\u4eba\u6740\u6b7b\u4e86\u3002"} +{"id": "8001075", "video_name": "df7d6015-9d69-50ed-92e6-8e4529f06cff", "text": "\u4e00\u53ea\u8001\u864e\u5728\u91ce\u751f\u52a8\u7269\u56ed\u81ea\u8c6a\u5730\u8d70\u7740\u3002"} +{"id": "4004411", "video_name": "59066653-81fc-5be1-90ee-77d60e3c95e5", "text": "\u5b89\u5fb7\u9c81\u00b7\u5a01\u91d1\u65af\u8d70\u4e0a\u7403\u573a\uff0c\u5f00\u59cb\u6bd4\u8d5b\u3002"} +{"id": "2005832", "video_name": "274d905c-4cbe-5088-b781-1cc66504dadc", "text": "\u8001\u6d3e\u7684\u51ef\u8fea\u62c9\u514b\u5728\u4e00\u6761\u8001\u8def\u4e0a\u9ad8\u901f\u884c\u9a76\u3002\u524d\u89c6\u56fe\u3002"} +{"id": "0004816", "video_name": "0fa1089e-3ca4-59fb-83f2-701c4eb57ace", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5f13\u7bad\u624b\uff0c\u5f00\u9614\u7684\u7a7a\u5730\uff0c\u5f13\u7bad\uff0c\u5929\u7a7a\u5728\u897f\u5317\u65b9\uff0c\u575a\u5b9a\u7684\u8868\u60c5\uff0c\u6ce8\u89c6\u7740\u76ee\u6807\uff0c\u5f13\u7bad\u5c31\u50cf"} +{"id": "4004093", "video_name": "a2cf0a8c-a855-5524-bf7e-35e74e7f48e2", "text": "\u6d77\u5e95\u4e4b\u4e0b\uff0c\u6709\u5ea7\u8682\u8681\u5c71\uff0c\u9ed1\u6697\u6df1\u6e0a\u4e4b\u4e2d\u3002"} +{"id": "2006694", "video_name": "894d78e2-b976-55b8-8ab8-4dd8b9843f92", "text": "\u4e00\u540d\u7537\u5b50\u5728\u9ed1\u6697\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u6301\u7eed10\u79d2\uff0c4k\u3002"} +{"id": "7004540", "video_name": "b0f1da27-b807-5354-adb2-87f55da96114", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u718a\uff0c\u6b63\u5728\u5411\u76f8\u673a\u62db\u624b\u3002"} +{"id": "7002180", "video_name": "3a497577-0846-5fe6-a5fe-70fa307060df", "text": "\u4e00\u4f4d\u8001\u5587\u561b\u548c\u4e00\u7fa4\u5c0f\u5587\u561b\u6b63\u5728\u6253\u5750\u3002\u51e0\u4e2a\u5c0f\u5587\u561b\u7761\u7740\u4e86\u3002"} +{"id": "3004547", "video_name": "77f79c64-6519-5ae5-bd93-f1d9a542ce44", "text": "\u4e00\u4e2a\u706b\u8fa3\u7684\u5973\u5b69\u8df3\u821e\u5e76\u5750\u5728\u7537\u5b69\u7684\u817f\u4e0a\u3002"} +{"id": "3005496", "video_name": "b049c9a2-f2be-517a-a95a-0ba63b8396db", "text": "\u4e00\u4f4d\u5973\u5b50\u7684\u5185\u8863\u5728\u4e00\u77ac\u95f4\u53d8\u5f97\u900f\u660e"} +{"id": "6002929", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "\u505a\u4e00\u4e2a\u53ef\u6015\u7684\u4fee\u5973\u671d\u7740\u6444\u50cf\u5934\u8d70\u7684\u56fe\u50cf\u3002"} +{"id": "2007489", "video_name": "4181a66a-5e37-5909-b83c-3399ea2d85da", "text": "\u5723\u8bde\u8001\u4eba\u5e26\u7740\u8bb8\u591a\u793c\u7269\u6765\u4e86\u3002"} +{"id": "3004601", "video_name": "45db4f1c-ac1d-578e-ace5-f73313056bfd", "text": "\u7528\u661f\u9645\u4e3b\u9898\u56fe\u5f62\u521b\u9020\u6bd4\u7279\u5e01\u7684\u5f62\u8c61"} +{"id": "1006184", "video_name": "713b6768-520a-5db7-9f76-aa4618345593", "text": "\u4ed6\u72ec\u81ea\u4e00\u4eba\u5750\u5728\u5bb6\u4e2d\u9759\u9759\u7684\u73af\u5883\u4e2d\uff0c\u8eab\u4e0a\u7d27\u7d27\u88f9\u7740\u7ef7\u5e26\uff0c\u6697\u793a\u7740\u6700\u8fd1\u7684\u4f24\u75c5"} +{"id": "0005101", "video_name": "14befd0c-270f-5589-9144-6c5b22e78796", "text": "\u9f99\u73e0Z\u98ce\u683c\u7684\u52a8\u6f2b\u6253\u6597"} +{"id": "0004982", "video_name": "12b70d7e-1fa2-5cbc-a39b-f6963ebcda4b", "text": "\u4e00\u4e2a\u806a\u660e\u7684\u63a2\u9669\u5bb6\u7ecf\u8fc7\u6df1\u601d\u719f\u8651\uff0c\u627e\u5230\u4e86\u7b54\u6848\u5e76\u6210\u529f\u5730\u6253\u5f00\u4e86\u5b9d\u7bb1\u3002"} +{"id": "1003266", "video_name": "3c172041-1807-5545-8b73-1b7342318381", "text": "\u4ed6\u5728\u65e5\u8bb0\u91cc\u4e3a\u4ed6\u4eec\u753b\u4e86\u7d20\u63cf\uff0c\u8bb0\u5f55\u4e0b\u4ed6\u4eec\u72ec\u7279\u7684\u7279\u70b9\uff0c\u5e76\u5b66\u4f1a\u4e86\u4ee5\u4ed6\u81ea\u5df1\u7279\u6b8a\u7684\u65b9\u5f0f\u4e0e\u5b83\u4eec\u4ea4\u6d41\u3002"} +{"id": "1004153", "video_name": "4cf35251-1066-5a86-8c3a-68046635a32c", "text": "T\u6064\u8bbe\u8ba1\u91c7\u7528\u9ed1\u767d\u6781\u7b80\u4e3b\u4e49\u8bbe\u8ba1\u3002"} +{"id": "6003798", "video_name": "e2ec5cd7-f838-5a56-9508-08aff5a93208", "text": "\u514b\u8389\u5965\u4f69\u7279\u62c9\u5973\u738b\u7b2c\u4e00\u6b21\u89c1\u5230\u4e86\u6731\u5229\u53f6\u65af\u00b7\u51ef\u6492\u3002"} +{"id": "6003915", "video_name": "93d42378-b248-5638-a4bc-a5b54335b402", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u59bb\u5b50\uff0c\u7ad9\u5728\u8d70\u5eca\u91cc\u7b49\u5f85\u3002"} +{"id": "6002114", "video_name": "e82eafd4-b8e3-524a-81e4-aefb4f561b80", "text": "\u6570\u5b57\u5316\u8f6c\u578b\u670d\u52a1\uff0c\u4e13\u6ce8\u4e8e\u5c55\u793a\u79d1\u6280\u5982\u4f55\u5e94\u7528\u4e8e\u65e5\u5e38\u751f\u6d3b\u3002\u4fe1\u606f\uff1aProtinus\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7002679", "video_name": "a2e38618-51eb-5721-a61f-2c7ab5540be4", "text": "\u4e00\u4e2a\u751f\u52a8\u7684\u753b\u9762\uff0c\u5728\u4e00\u4e2a\u88c5\u9970\u7740\u95ea\u95ea\u53d1\u5149\u7684\u6c34\u6676\u7684\u6d1e\u7a74\u91cc\uff0c\u4f34\u968f\u7740\u4e00\u80a1\u8f7b\u67d4\u7684\u6eaa\u6d41\u3002"} +{"id": "7003618", "video_name": "07dae018-bdb9-5f12-93cb-bed80d9b5c13", "text": "\u6c34\u548c\u7537\u5b69\u5728\u8d70\uff0c\u57ce\u5e02\u548c\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "1003272", "video_name": "3c3c93a4-3af8-5d50-86f3-7278853fc50b", "text": "\u5b87\u822a\u5458\u7728\u773c\u775b\u5411\u89c2\u4f17\u6253\u62db\u547c\uff0c\u5e26\u7740\u95ea\u70c1\u7684LED\u706f\uff0c\u6d41\u661f\u5728\u5929\u7a7a\u4e2d\u98de\u901f\u7a7f\u8d8a\uff0c"} +{"id": "3006232", "video_name": "ad25dbbc-e4ee-502f-9c93-05ae47aced20", "text": "\u5728\u68ee\u6797\u91cc\u4e0e\u4e09\u53ea\u72fc\u640f\u6597\u7684\u718a"} +{"id": "3003125", "video_name": "cc03e6ac-2bef-5133-aa8c-a36a85651310", "text": "\u7ed3\u675f\u955c\u5934\uff1a\u53d9\u8ff0\u8005\u7ee7\u7eed\u8bb2\u8ff0\uff0c\u963f\u7ea6\u63d0\u4e9a\u57ce\u5e02\u5929\u9645\u7ebf\u7f8e\u4e3d\u7684\u706f\u706b\u7167\u4eae\u7740\u4e00\u7247\u5b81\u9759\u7684\u666f"} +{"id": "4004772", "video_name": "6efc39df-b354-5f2a-893e-daac6f4fb7c4", "text": "\u5b66\u751f\u4eec\u5750\u5728\u4e00\u4e2a\u5706\u5708\u4e2d\uff0c\u79ef\u6781\u8ba8\u8bba\uff0c\u524d\u9762\u653e\u7740\u6253\u5f00\u7684\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u663e\u793a\u7740GPT\u754c\u9762\uff0c\u63d0\u51fa\u534f"} +{"id": "3003022", "video_name": "faa3b712-ddd7-5a3f-bbc6-00d0efcf41f1", "text": "\u8fdd\u80cc\u8bfa\u8a00\uff1a\u516c\u4e3b\u88ab\u5efa\u8bae\u7528\u6c34\u4f5c\u4e3a\u53cd\u5c04\uff0c\u5979\u770b\u5230\u4e86\u8ff7\u4eba\u7684\u5012\u5f71\uff0c\u5374\u5fd8\u8bb0\u4e86\u5979\u7684\u627f\u8bfa\u3002"} +{"id": "7002550", "video_name": "3ffd137c-1ee4-54fb-a06d-83f0aca37df0", "text": "\u4ed6\u548c\u4ed6\u7684\u670b\u53cb\u7ef4\u514b\u62c9\u59c6\u51b3\u5b9a\u53bb\u770b\u8fd9\u4e2a\u9b3c\u5bab\u3002"} +{"id": "5001380", "video_name": "72a7aa02-0da2-56bc-84e2-79b9a2389a6d", "text": "\u521b\u5efa\u4e00\u67b6\u76f4\u5347\u673a\u98de\u8d8a\u4e00\u5ea7\u51b0\u5c71\uff0c\u706b\u8f66\u5728\u8f68\u9053\u4e0a\u8fdb\u5165\u96a7\u9053\u3002"} +{"id": "6003392", "video_name": "1294ae8e-e53e-52be-8413-c0298c1a0a8c", "text": "\u732b\u5728\u653e\u5531\u7247\uff0c\u96ea\u5728\u4e0b\u3002"} +{"id": "2006749", "video_name": "a586eb55-6158-5a04-9039-4766607bfb4e", "text": "\u4e00\u76cf\u540a\u706f\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u70b9\u4eae\u4e86\u3002"} +{"id": "1006152", "video_name": "70b204f1-0c16-5088-865f-6b8e37492001", "text": "Source sentence translation: \u5973\u795e\u62c9\u514b\u4ec0\u7c73\u5728\u8fbe\u6c49\u7279\u62c9\u65af\u4ece\u5b87\u5b99\u6d77\u6d0b\u4e2d\u6d6e\u73b0\u3002"} +{"id": "8001450", "video_name": "ec89ec4b-a8f4-5ec8-bd15-a7fa462c68d8", "text": "\u5f53\u8001\u9f20\u7edd\u671b\u5730\u8bf7\u6c42\u72ee\u5b50\u91ca\u653e\u4ed6\u65f6\u3002"} +{"id": "3004686", "video_name": "8853277c-5f07-5d16-af4e-8a46002228b0", "text": "Source sentence: \u6124\u6012\u7537\u5b50\u4e3a\u81ea\u5df1\u7684\u6743\u5229\u800c\u6218\u7684\u8d5b\u535a\u670b\u514b\u52a8\u753b"} +{"id": "3004043", "video_name": "f2660af5-57d6-571a-a9ee-3e44ed356a3b", "text": "\u4e00\u4e2a\u6709\u684c\u5b50\u3001\u6905\u5b50\u548c\u7b14\u8bb0\u672c\u7535\u8111\u7684\u5ba2\u5385\uff0c\u88c5\u9970\u5f97\u5f88\u6f02\u4eae\u7684\u623f\u95f4\u3002"} +{"id": "2003111", "video_name": "54842e59-948e-54db-ac26-4da1b2230386", "text": "\u753b\u5bb6\u7ad9\u5728\u4e00\u5e45\u5de8\u5927\u7684\u827a\u672f\u4f5c\u54c1\u524d\u9762\u753b\u753b\u3002"} +{"id": "2005782", "video_name": "079cc571-6275-5104-b6e7-16df53f4647d", "text": "\u5c0f\u5154\u5b50\u6b63\u5728\u6708\u7403\u4e0a\u6363\u836f\u7f50\uff0c\u6e29\u6696\u7684\u7c89\u8272\u548c\u9ec4\u8272\u5360\u636e\u4e86\u6574\u4e2a\u573a\u666f\u3002"} +{"id": "7003139", "video_name": "0bd73058-9536-53da-ac35-0d8877d3225f", "text": "\u4e00\u4e2a\u540d\u4e3aDverse152\u76843D\u52a8\u753b\u6807\u5fd7\u3002"} +{"id": "1003493", "video_name": "40b408cf-950f-59ca-b0e3-f6274c1423af", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u8bb0\u5f55\u4e0b\u4e86\u4e00\u4e2a\u88c5\u9970\u827a\u672f\u98ce\u683c\u7684\u5b87\u5b99\u98de\u8239\u5728\u9065\u8fdc\u5916\u661f\u7403"} +{"id": "3004696", "video_name": "27b3ba49-f28b-53d4-8633-38e52ce98277", "text": "\u4ece\u80cc\u666f\u4e2d\u663e\u73b0\u51fa\u4e00\u4f4d\u7559\u7740\u94f6\u8272\u5e73\u5934\u7684\u7537\u5b50\uff0c\u8eab\u7a7f\u9ed1\u8272\u5916\u5957\uff0c\u53cc\u773c\u95ed\u5408\uff0c\u77d7\u7acb\u5728\u66b4\u98ce\u4e2d"} +{"id": "5001825", "video_name": "c480d096-be2c-5514-bb92-f1c038902402", "text": "\u4e91\u5728\u79fb\u52a8\uff0c\u592a\u9633\u5728\u7167\u8000\u3002"} +{"id": "0005842", "video_name": "220d8f85-2bf8-52ab-89f8-3e45529df85c", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u81ea\u884c\u8f66\u5728\u4e00\u7247\u5145\u6ee1\u84dd\u8272\u548c\u7ea2\u8272\u90c1\u91d1\u9999\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "2005043", "video_name": "f16df7f0-6692-5c7f-882c-9f783ca0a7c9", "text": "\u4e00\u5e45\u903c\u771f\u3001\u9ad8\u5ea6\u8be6\u7ec6\u7684\u63d2\u753b\uff0c\u4ee5\u590d\u53e4\u597d\u83b1\u575e\u98ce\u683c\u4e3a\u4e3b\uff0c\u8ba9\u4eba\u56de\u60f3\u8d77\u7535\u5f71\u9ec4\u91d1\u5e74\u4ee3\uff0c\u6ce8\u91cd"} +{"id": "7004588", "video_name": "491347c5-ce5d-5083-96ac-40559fd36135", "text": "\u6768\u5148\u751f\u5486\u54ee\u7740\u89e3\u91ca\u4e3a\u4ec0\u4e48\u6760\u6746\u662f\u552f\u4e00\u91cd\u8981\u7684\u4e8b\u60c5\u3002"} +{"id": "2003782", "video_name": "84498cf9-5f58-51f1-9e4c-8f98dea6e429", "text": "Chinese artifact while on a visit to his grandmother's house in India.\n\n\u4e00\u4e2a\u5e74\u8f7b\u597d\u5947\u7684\u7537\u5b69\u963f\u5c14\u743c\uff0c\u5728\u53bb\u5370\u5ea6\u5976\u5976\u5bb6\u7684\u8def\u4e0a\u53d1\u73b0\u4e86\u4e00\u4ef6\u53e4"} +{"id": "3004327", "video_name": "1be0a9de-78cd-5705-97f7-e951faae3c0f", "text": "\u6211\u5e0c\u671b\u5934\u53d1\u8f7b\u8f7b\u98d8\u52a8\u3002"} +{"id": "1006512", "video_name": "7733ed7b-a9c3-56c3-8e1a-da3e64217282", "text": "\u4e54\u00b7\u62dc\u767b\u4e0e\u4e00\u6839\u5de8\u5927\u7684\u7389\u7c73\u68d2\u640f\u6597\u3002"} +{"id": "7003101", "video_name": "3a6d4c1c-d934-5c18-a6f7-9b426444a011", "text": "\u6cd5\u5b98\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u800c\u666e\u901a\u4eba\u5728\u4ed6\u9762\u524d\u6293\u4f4f\u5c0f\u5077\uff0c\u8fd9\u662f\u4e00\u4e2a\u53e4\u8001\u7684\u573a\u666f\u3002"} +{"id": "0005110", "video_name": "14ed8bf3-1271-561e-8b26-b14a6122193b", "text": "\u4e00\u4e2a\u5973\u6027\u4ee5\u83ab\u5948\u7684\u98ce\u683c\u6e38\u6cf3\u3002"} +{"id": "3003041", "video_name": "f94e8a97-5564-5880-9550-86da04d9ba81", "text": "\u73bb\u7483\u7897\u91cc\u7684\u9ec4\u6cb9\u5728\u725b\u5976\u4e2d\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3004676", "video_name": "392ad712-9fa6-5051-8af6-13bcb3eccae0", "text": "\u7f13\u6162\u71c3\u70e7\u7684\u706b\u548c\u5916\u9762\u8f7b\u67d4\u7684\u6d77\u6d6a\u79fb\u52a8\u3002"} +{"id": "4004577", "video_name": "657b55c7-c495-5dca-b6ce-570a05ef0c7b", "text": "\u4ed6\u4eec\u5de8\u5927\u5efa\u7b51\u7269\u7684\u5efa\u9020"} +{"id": "4004461", "video_name": "984b14da-e7cc-5d8c-9635-e9bc555aac76", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5728\u65e7\u56fe\u4e66\u9986\u8bfb\u4e66\uff0c\u4e3e\u8d77\u5b83\u7684\u5de6\u624b\u3002"} +{"id": "1004719", "video_name": "579191fb-d77d-5eeb-b68b-e63c2c5cafc7", "text": "\u8759\u8760\u4fa0\u548c\u4ed6\u7684\u7236\u6bcd\u4e00\u8d77\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u7535\u89c6\u3002"} +{"id": "1004289", "video_name": "4f61d91a-6fe4-511c-9265-eb32eab1f1ee", "text": "\u6d77\u6d6a\u7ffb\u6eda\u7684\u6d77\u6ee9\u662f\u4e00\u5e45\u7f8e\u4e3d\u7684\u666f\u8272\u3002"} +{"id": "0005193", "video_name": "166d1cb2-1d9e-546b-ab6e-5cb7e6be8ad1", "text": "\u8fc7\u6e21\u5230\u5b81\u9759\u7684\u65e5\u843d\uff0c\u5f15\u51fa\u767d\u864e\u3002\u5f53\u5b83\u4f18\u96c5\u5730\u79fb\u52a8\u65f6\uff0c\u6811\u53f6\u53d8\u8272\u5e76\u843d\u4e0b\uff0c\u8c61\u5f81\u7740\u79cb\u5929\u7684"} +{"id": "0005935", "video_name": "23820602-9db0-561f-b473-6b8aceff4eb7", "text": "\u5929\u4f7f\u3001\u9ed1\u8272\u3001DQ\u730e\u4eba\u3001\u84dd\u8272\u3001\u60c5\u4fa3\u3001DQ\u730e\u4eba\u3001\u7f8e\u4e3d\u3001\u7fc5\u8180\u3001\u660e\u4eae\u3001\u7537\u4eba\u3001\u5e7b"} +{"id": "4004174", "video_name": "ab7b31d9-57fd-5d37-9a10-80392a7bb952", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u5f00\u7740\u4e00\u8f86\u5965\u8fea\uff0c\u706d\u9738\u51fa\u73b0\u4e86\uff0c\u6447\u4e86\u4e00\u4e0b\u624b\u6307\uff0c\u6258\u5c3c\u53d8\u6210\u4e86\u94a2\u94c1"} +{"id": "0006265", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "\u827e\u739b\u72ec\u81ea\u5750\u5728\u623f\u95f4\u91cc\uff0c\u795e\u60c5\u5fe7\u90c1\u5b64\u72ec\u3002"} +{"id": "1004907", "video_name": "5ac5720b-6a5d-5d74-8d84-9f0444fedc51", "text": "\u9ab7\u9ac5\u4ece\u575f\u5893\u91cc\u722c\u51fa\uff0c\u9ed1\u6697\u5e7b\u60f3\uff0c\u52a8\u753b\u3002"} +{"id": "4002031", "video_name": "97bb51b1-2b23-502d-8d1b-3e64125d6f1d", "text": "\u5206\u817f\uff0c\u811a\u5728\u7a7a\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004123", "video_name": "7fc358f3-5ad4-55ac-8bbd-859df70dc0d0", "text": "\u98de\u884c\u738b\u5b50\uff0c3D\u98ce\u683c\uff0c\u8d5b\u535a\u670b\u514b\uff0c8D\u3002"} +{"id": "0006317", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "\u5df4\u897f\u9009\u624b\u96e8\u679c\u00b7\u5361\u5c14\u5fb7\u62c9\u8bfa\u5728\u4e1c\u4eac\u4e0e\u9a6c\u9f99\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "1006557", "video_name": "78199159-ba08-5385-a57c-dd28bd97e56b", "text": "\u5361\u901a\u52a8\u753b\u4e2d\uff0c\u9e21\u4eec\u5feb\u901f\u5730\u8d5b\u8dd1\uff0c\u5e86\u795d\u5723\u8bde\u8282\uff0c\u5728\u6ee1\u662f\u96ea\u7684\u5c71\u4e0a\u6ed1\u884c\u9a6f\u9e7f\u96ea"} +{"id": "0004561", "video_name": "0b4609ce-3ac3-5aca-a912-b3504fb0ddee", "text": "\u5c55\u793a\u4e00\u4e2a\u5370\u5ea6\u653f\u6cbb\u5bb6\u8d62\u5f97\u9009\u4e3e\u7684\u52a8\u753b\u3002"} +{"id": "6002259", "video_name": "602d3b00-ffcc-54e1-aeb6-a04e7cfd5ada", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u83e0\u841d\u7684\u77ed\u7247"} +{"id": "7002685", "video_name": "af99e0ee-c9c0-5e7f-9f66-a1729f7da8c8", "text": "\u5b54\u96c0\u5728\u6c42\u5076\u4eea\u5f0f\u4e2d\u4f1a\u5c55\u5f00\u7fbd\u6bdb\u4ee5\u5438\u5f15\u96cc\u5b54\u96c0\uff0c16:9\u3002"} +{"id": "2007176", "video_name": "034084cd-56c1-580e-83c5-ed49bbb89840", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u3002\u4ed6\u51fa\u6c57\u5f88\u591a\uff0c\u975e\u5e38\u5bb3\u6015\u5e76\u76f4\u89c6\u7740\u6444\u50cf\u5934\u3002\u4ed6\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u80cc\u5fc3"} +{"id": "4003433", "video_name": "734e012f-ff1a-5fb4-b84c-d5bc53384cb6", "text": "\u4e1c\u4eac\u7684\u8857\u9053\u548c\u5efa\u7b51\u7269\uff0c\u5b57\u4f53\u4e3aMODERN\uff0c\u6587\u5b57\u4e3a\u201carlo\u201d\u3002"} +{"id": "3006963", "video_name": "4ad02b16-de7f-5e4d-bf39-6d2e83579d3d", "text": "\u8718\u86db\u4fa0\u8361\u79cb\u5343\uff0c\u8d85\u771f\u5b9e\uff0c\u9ad8\u7ec6\u8282\u3002"} +{"id": "1003355", "video_name": "3dd834fb-ea31-5dda-852b-7100c90303b8", "text": "\u8d85\u903c\u771f\u7684\u4e00\u6218\u573a\u666f\uff0c\u9ed1\u767d\u8001\u5316\u7535\u5f71\u4e2d\uff0c\u4e00\u4e2a\u9ed1\u9e1f\u5934\u7684\u58eb\u5175\u3002\u4ed6\u7684\u624b\u81c2\u957f\u7740\u89e6\u624b\u3002\u4ed6\u5728\u6218\u58d5"} +{"id": "1005340", "video_name": "62254993-de32-5108-85d7-bc0019df0e36", "text": "\u91d1\u8272\u7684\u4e2d\u534e\u72ee\u4ee5\u88c5\u9970\u827a\u672f\u98ce\u683c\u4f18\u7f8e\u5730\u6446\u59ff\u3002"} +{"id": "2007261", "video_name": "e21b01c0-0925-53ff-ad3f-f8070b2dddba", "text": "\u6240\u6709\u7684\u9752\u86d9\u90fd\u5e94\u8be5\u77e5\u9053\u8fd9\u662f\u4e0d\u53ef\u80fd\u7684\u3002"} +{"id": "8001503", "video_name": "7ecd1e19-5c39-5c45-b762-1a7204a25e21", "text": "\u7c73\u8001\u9f20\u4ece\u4e00\u5e62\u5927\u697c\u4e0a\u8df3\u4e0b\u6765\u3002"} +{"id": "0005739", "video_name": "206e037f-7d86-52a1-a893-12ee2424705d", "text": "\u5c55\u793a\u4e86\u4e16\u754c\u5404\u5730\u624b\u6301\u9009\u7968\u6325\u821e\u9009\u7968\u7684\u4eba\u4eec\u7684\u89c6\u9891\u3002"} +{"id": "8003018", "video_name": "2e967fa0-4f2a-529a-b909-0288f88f00bb", "text": "\u5c55\u793a\u4e00\u4e2a\u88ab\u84dd\u5929\u548c\u6e05\u6f88\u6d77\u6c34\u5305\u56f4\u7684\u5b81\u9759\u6e14\u6751\u3002"} +{"id": "5001750", "video_name": "38643643-819f-5ce5-a45d-624e156582b3", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "8001723", "video_name": "316f513b-e7c7-5425-a4ed-f92fd86effef", "text": "\u5305\u5b50\u548c\u72fc\u7684\u4f1a\u9762"} +{"id": "1003986", "video_name": "499fb238-34fd-5cb7-af06-368ce4fd0096", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6cb3\u5cb8\u8fb9\u8d70\u8def\uff0c\u5915\u9633\u897f\u4e0b\u3002"} +{"id": "4004726", "video_name": "466ba585-d954-5194-abb3-94e9f0011ecb", "text": "2030\u5e74\uff0c\u4e00\u540d\u7537\u5b50\u9a7e\u9a76\u7279\u65af\u62c9\u6c7d\u8f66\u5728\u963f\u59c6\u65af\u7279\u4e39\u3002"} +{"id": "8001264", "video_name": "371081c9-6e6a-59ec-9b6d-445f61748554", "text": "\u4e00\u53ea\u8725\u8734\u5728\u68ee\u6797\u91cc\u8ffd\u9010\u4e00\u6761\u86c7\u3002"} +{"id": "3003438", "video_name": "562d88bf-7594-59de-9e83-40d50a6808c3", "text": "\u5723\u8bde\u8001\u4eba\u5728\u5317\u6781\u5236\u4f5c\u4ed6\u7684\u540d\u5355\u3002\u8fd9\u5e94\u8be5\u611f\u89c9\u975e\u5e38\u6709\u8da3\u548c\u8282\u65e5\u6c14\u6c1b\u3002"} +{"id": "7002332", "video_name": "b58db2f8-4ee9-5f48-82e7-59b3e7266901", "text": "\u62a4\u58eb\u5728\u533b\u9662\u4f7f\u7528\u6280\u672f\u8d70\u52a8\u3002"} +{"id": "4003503", "video_name": "bed429fd-fd55-565c-93cb-1dfce4e87a46", "text": "\u4e24\u4e2a\u4eba\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u9760\u8fd1\u5ce1\u8c37\u8fb9\u7f18\u3002"} +{"id": "2006202", "video_name": "06f2bf84-d491-5b1d-9824-00fa6ca489fa", "text": "\u7231\u53ef\u4ee5\u4ea7\u751f\u5de8\u5927\u7684\u5f71\u54cd\u3002"} +{"id": "1006150", "video_name": "70ab76be-1d52-5178-ba9a-549ee51c3425", "text": "\u5f17\u5170\u80af\u65af\u5766\u7535\u6905\u7535\u51fb\uff0c\u95ea\u70c1\u7684\u706f\u5149\u3002"} +{"id": "0005328", "video_name": "18e099ff-44a3-517e-aee0-6621f6c1fbb9", "text": "\u62bd\u8c61\u7684\u4e09\u7ef4\u6ee1\u610f\u7269\u4f53\u5f39\u8df3\u7740\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u7206\u70b8\uff0c\u7206\u7834\u58f0\uff0cASMR\u3002"} +{"id": "4004413", "video_name": "3565768d-ba15-5dc8-a81c-a11f1aa2e67e", "text": "\u6447\u6eda\u97f3\u4e50\u4f1a\u4e0a\u6027\u611f\u7684\u5973\u4eba"} +{"id": "0005103", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "\u4e00\u4e2a\u79bb\u5f00\u4e09\u7ef4\u7a7a\u95f4\u7684\u4eba\u3002"} +{"id": "7004577", "video_name": "a04d400b-efe7-52b1-b1d5-ea7e6fbfda0c", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u886c\u886b\u5728\u7528\u624b\u673a\u901a\u8bdd\u7684\u7537\u4eba\uff0c\u7535\u62a5\u8d34\u7eb8\uff0c\u6570\u5b57\u5361\u901a\u7ed8\u753b\u827a\u672f\uff0c\u88ab\u9009\u4e2d\u51fa\u73b0\u5728\u63d2"} +{"id": "7002536", "video_name": "9b5b27bc-faf3-5752-9ae8-1ee5576d118e", "text": "\u4f0a\u6851\u662f\u4e00\u4f4d\u5fb7\u56fd\u8840\u7edf\u7684\u5e74\u8f7b\u7537\u5b50\u3002\u6d45\u7eff\u8272\u7684\u5934\u53d1\uff0c\u957f\u53d1\u675f\u8d77\uff0c\u8eab\u9ad8180\u5398\u7c73\uff0c\u4f53\u91cd75\u516c\u65a4\uff0c\u7a7f"} +{"id": "1006700", "video_name": "7ac60b0f-6a58-5b00-926f-58bdae04241f", "text": "\u4fa7\u9762\u4e2d\u95f4\u7684\u6076\u9b54\u5b9a\u683c\u62cd\u6444\uff0c\u672a\u79fb\u52a8\u3002"} +{"id": "5001828", "video_name": "2ac4d61f-4e7e-5d04-965b-23246fdcc769", "text": "\u90a3\u4e2a\u7537\u5b69\u62ff\u51fa\u5929\u5e73\u79f0\u4e86\u4e00\u4e0b\u76f2\u76d2\u7684\u91cd\u91cf\u3002"} +{"id": "6004597", "video_name": "25ec62a2-d8e1-55a0-86b5-e7992d2d36d1", "text": "\u6bcd\u4eb2\u548c\u513f\u5b50\u5728\u53a8\u623f\u8c08\u8bdd\u3002"} +{"id": "4004858", "video_name": "7d1f0327-9800-5972-b745-b1f9130d92bd", "text": "\u9b54\u672f\u5e08\u7528\u5927\u5377\u70df\u6597\u62bd\u5927\u9ebb\u3002"} +{"id": "4003329", "video_name": "5089f025-5e40-5fe7-a6ee-d4180231291b", "text": "\u6f2b\u753b\u63d2\u56fe\u4e0a\u6709\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u6027\uff0c\u7ad9\u5728\u4e00\u8863\u67dc\u524d\uff0c\u8863\u67dc\u91cc\u5806\u6ee1\u4e86\u8863\u670d\uff0c\u5979\u8bf4\uff1a\u201c\u6211\u4ec0"} +{"id": "5001130", "video_name": "58ab675b-07e8-5cf3-9d50-e5ca1c658d04", "text": "\u7c73\u5947\u8001\u9f20\u5728\u8fea\u58eb\u5c3c\u4e50\u56ed\u3002"} +{"id": "3005680", "video_name": "7f04a1a0-1126-5b40-be1b-6e8d26aee172", "text": "\u4e00\u4e2a\u9a6c\u620f\u56e2\u5e10\u7bf7\u5728\u9ed1\u6697\u7684\u592a\u7a7a\u4e2d\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c16:9\u3002"} +{"id": "3006674", "video_name": "590a258d-493f-5070-8cb6-69c69eb4a776", "text": "\u4e00\u4e2a\u5e7d\u7075\u822c\u7684\u5f62\u8c61\u7ad9\u5728\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u857e\u4e1d\u793c\u670d\u7684\u5973\u4eba\u65c1\u8fb9\u3002\u5973\u4eba\u7ad9\u5728"} +{"id": "3003044", "video_name": "5468d78c-8b38-5b75-8ece-d3b776d822c6", "text": "\u60f3\u8c61\u4e00\u5ea7\u5893\u5730\uff0c\u77d7\u7acb\u5728\u7530\u91ce\u4e2d\uff0c\u7b2c\u4e00\u6b21\u9047\u5230\u4e4c\u9e26\u3002\u5c55\u793a\u4ed6\u4eec\u7684\u6700\u521d\u4e92\u52a8\uff0c\u4f20\u8fbe\u4ed6\u4eec\u6027\u683c"} +{"id": "6002493", "video_name": "1081baa2-af13-51ee-9f4c-6f28a84e44ad", "text": "\u4e00\u4e2a\u4eba\u7126\u8651\u5730\u73af\u987e\u56db\u5468\uff0c\u770b\u7740\u73af\u7ed5\u7740\u81ea\u5df1\u7684\u89c6\u9891\u5c4f\u5e55\u8d8a\u6765\u8d8a\u8fd1\u3002"} +{"id": "2006340", "video_name": "47717ee0-3062-5b42-af59-e7d0e540b86d", "text": "\u8bbe\u8ba1\u4e00\u8f86\u79d1\u5e7b\u5148\u8fdb\u7684\u94f6\u767d\u8272\u6c7d\u8f66\u3002"} +{"id": "8002226", "video_name": "1fe2dfda-7357-54b8-9fb0-3f3030735156", "text": "\u5c0f\u732b\u5728\u6563\u6b65\u4e2d\u63a5\u6536\u5230\u4fe1\u53f7\u3002"} +{"id": "4003105", "video_name": "15feac03-bb4b-5f36-8d29-7bea437dba19", "text": "\u6d88\u9632\u5458\u6b63\u5728\u6251\u706d\u706b\u707e\u3002"} +{"id": "8002289", "video_name": "e02dd768-5cbd-5c12-b9e3-6adfa53053af", "text": "\u592a\u9633\u843d\u5c71\u4e86\uff0c\u4e91\u6735\u79fb\u52a8\u7740\uff0c\u5efa\u7b51\u548cDeLorean\u8f66\u8f86\u90fd\u6253\u5f00\u4e86\u6240\u6709\u706f\u5149\u3002"} +{"id": "6002756", "video_name": "ad1f2a37-44ee-500e-a013-e92a49b6bab0", "text": "\u4ee5\u7ed8\u753b\u98ce\u683c\u5448\u73b0\u7684\u89e3\u5256\u5fc3\u810f\u6b63\u5728\u8df3\u52a8\u3002"} +{"id": "3005815", "video_name": "9a90629c-966d-5093-91b2-349914b7d083", "text": "\u665a\u4e0a\u6d77\u8fb9\u6709\u70df\u82b1\uff0c\u4eba\u7fa4\u5f88\u591a\u3002\u53ef\u4ee5\u770b\u5230\u6865\u7684\u666f\u8272\u3002"} +{"id": "6004139", "video_name": "4791bf9c-c25b-5f2b-955d-c73a84b3a320", "text": "\u4e00\u5e45\u7f8e\u5973\u6cb9\u753b\uff0c\u753b\u5728\u6728\u677f\u4e0a\uff0c\u773c\u775b\u5b8c\u7f8e\uff0c\u7531\u827a\u672f\u5bb6artgerm\u548cEdouard Bisson\u521b\u4f5c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u827a"} +{"id": "0004494", "video_name": "09ea2493-df5e-596d-9906-5ab542dc53bb", "text": "\u8036\u7a23\u5728\u6c99\u6f20\u4e2d\uff0c\u4e0e\u4e00\u4e2a\u903c\u771f\u7684\u6492\u65e6\u8fdb\u884c\u6df1\u5165\u7684\u5bf9\u8bdd\uff0c\u573a\u666f\u8bbe\u7f6e\u5728\u8be6\u7ec6\u751f\u52a8\u7684\u6c99\u6f20\u666f\u89c2\u4e2d\u3002"} +{"id": "0004453", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "\u4eba\u7c7b\u80ba\u5728\u6574\u4e2a\u5927\u5c40\u4e2d\u88ab\u770b\u5230\u3002"} +{"id": "0005846", "video_name": "222ec756-1746-5355-85e8-28e106494b5c", "text": "\u7a7f\u8fc7\u6811\u6797\u7684\u79fb\u52a8\u9633\u5149\uff0c\u80cc\u666f\u690d\u7269\u5728\u79fb\u52a8\uff0c\u8349\u4e0d\u52a8\uff0c\u5e7b\u60f3\u68ee\u6797\uff0c\u9633\u5149\uff0c\u9633\u5149\u5c04\u7ebf\u3002"} +{"id": "3004148", "video_name": "8e1d812b-0b8f-5ec3-918b-afbdd3c7b4c1", "text": "\u65b0\u5a5a\u592b\u5987\u4ee5\u5361\u901a\u98ce\u683c\u8fdb\u5165\u6559\u5802\u3002\u5929\u6c14\u6674\u6717\u3002"} +{"id": "5001938", "video_name": "f16914c1-c511-533e-9d9f-178f370ab236", "text": "\u4e00\u4e2a\u9f13\u624b\u5728\u796d\u575b\u4e0a\u72c2\u91ce\u5730\u6572\u6253\u9f13\uff0c\u5468\u56f4\u7684\u4eba\u9759\u9759\u5730\u89c2\u770b\u3002"} +{"id": "3003855", "video_name": "5fa6a0ec-3572-5958-affd-a5ed213b5a7e", "text": "\u7b2c\u4e00\u4eba\u79f0\u5728\u4fef\u77b0\u9152\u5e97\u7684\u697c\u68af\u4e0a\u8d70\u8def\u3002"} +{"id": "8003614", "video_name": "c24e651f-4c4c-5032-9e28-aabf82882cd9", "text": "\u7528\u6237\u6d4b\u8bd5\u5de5\u4f5c\u539f\u7406\u8bf4\u660e\u3002"} +{"id": "5001321", "video_name": "1c82b7fe-691d-5c82-90f1-cc85ead7d775", "text": "\u591a\u5f69\u9f99\u5377\u98ce\u6467\u6bc1\u4e86\u5c71\u5761\u4e0a\u7684\u4e2d\u4e16\u7eaa\u57ce\u5821\uff0c\u5904\u4e8e\u9b54\u6cd5\u68ee\u6797\u4e2d\uff0c4K\u3001UHD\u3001\u653e\u5927\u955c"} +{"id": "2005162", "video_name": "9870eef7-3812-5c00-9486-5cd8561b5f60", "text": "\u5e7d\u7075\u9762\u5b54\u7684\u58eb\u5175\u5728\u6218\u573a\u4e0a\u3002"} +{"id": "4004283", "video_name": "438e384c-2c32-58e2-9ad3-3cdaf22d9131", "text": "\u4e24\u4e2a\u80af\u5c3c\u4e9a\u7537\u5b50\u5750\u7740\uff0c\u4e00\u4e2a\u6709\u957f\u53d1\u8fab\uff0c\u53e6\u4e00\u4e2a\u62ff\u7740\u5df4\u96f7\u7279\u6b65\u67aa\u548c\u5496\u7279\u690d\u7269\uff0c\u80cc\u666f\u662f"} +{"id": "4002989", "video_name": "ffbebf1a-f6e5-5705-8608-8cac97a85014", "text": "\u4eba\u4eec\u5728\u672a\u6765\u4e3b\u4e49\u573a\u666f\u4e2d\u6234\u7740VR\u773c\u955c\u3002"} +{"id": "1003822", "video_name": "46990c68-0c55-5f6c-9cca-a6c7158bad3f", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6df1\u6797\u4e2d\u884c\u8d70\uff0c\u7a81\u7136\u770b\u5230\u4e86\u97e9\u7eb3\u66fc\u795e\u3002"} +{"id": "2003676", "video_name": "4ab90bc7-76bf-5ffd-bfb9-05a5a0b1f777", "text": "\u4e00\u4f4d\u7a7f\u7740\u53a8\u623f\u56f4\u88d9\u7684\u5973\u5546\u4eba\u5728\u70ed\u677f\u4e0a\u6405\u62cc\u9505\u4e2d\u7684\u98df\u6750\uff0c\u65c1\u8fb9\u7684\u4e00\u4f4d\u4f01\u4e1a\u5bb6\u7ed9"} +{"id": "2005327", "video_name": "41b2ebd7-bad7-5186-ae30-e6560b5012a7", "text": "\u6bcf\u4e00\u6b65\u90fd\u8ba9\u4ed6\u4eec\u79bb\u76ee\u7684\u5730\u66f4\u8fd1\uff0c\u4f46\u4e5f\u5524\u9192\u4e86Umbra\u7684\u6ce8\u610f\u529b\u3002"} +{"id": "4003648", "video_name": "e5568584-19d1-597b-9304-76e80dc54597", "text": "\u5fae\u7b11\uff0c\u95ed\u4e0a\u773c\u775b\uff0c\u601d\u8003\u3002"} +{"id": "6004505", "video_name": "fa8686bd-5611-53a8-88c1-b243365093ab", "text": "\u84dd\u9cb8\u8e66\u6781\u91d1\u95e8\u5927\u6865"} +{"id": "3005983", "video_name": "aef636f5-c72f-5c2c-8914-027b88bef32c", "text": "\u67e0\u6aac\u7c7d\u5728\u767d\u8272\u80cc\u666f\u4e0a\u7684\u7279\u5199\u3002"} +{"id": "4003804", "video_name": "f12a1510-853c-56c8-84fb-747259f5fc10", "text": "\u63ed\u793a\u4eba\u7c7b\u9aa8\u9abc1\u79d2\u949f\uff0c\u9707\u52a8\u7a7f\u8fc7\u8eab\u4f53\u3002"} +{"id": "6004601", "video_name": "dc13add4-4034-5cac-b2e1-df965ed33f00", "text": "\u4e00\u4e2a\u5b69\u5b50\u5750\u5728\u8f66\u91cc\uff0c\u8f66\u5b50\u5f00\u8d70\u4e86\u3002"} +{"id": "0003235", "video_name": "39c2b2a1-71b7-5a03-9617-4811ccc3c62a", "text": "\u795d\u8d3a2024\u5e74\u65b0\u5e74\u7684\u5f00\u59cb\u3002"} +{"id": "6004064", "video_name": "7261907f-e871-5fe5-9b69-4a8fb9a53f98", "text": "\u4e00\u53ea\u731b\u70c8\u543c\u53eb\u3001\u9ec4\u7ea2\u8272\u9b03\u6bdb\u7684\u72ee\u5b50\u4ece\u96fe\u4e2d\u51fa\u73b0\uff0c\u5728\u9b54\u5e7b\u68ee\u6797\u3001\u5b87\u5b99\u5929"} +{"id": "2004640", "video_name": "df4f3fde-4500-5fa3-9d17-4ab1f1d92e33", "text": "\u4e00\u53ea\u72d7\u5728\u8fd9\u91cc\u90a3\u91cc\u8dd1\u6765\u8dd1\u53bb\u627e\u98df\u7269\u3002"} +{"id": "4004281", "video_name": "4d747fba-4c4c-5444-9d33-39da0f2e6588", "text": "\u5728\u8fd9\u6bb5\u65f6\u95f4\u91cc\uff0c\u79cd\u690d\u5728\u519c\u7530\u91cc\u7684\u82a5\u83dc\u82b1\u5f00\u653e\u4e86\u3002\u8fd9\u4e9b\u82b1\u7684\u989c\u8272\u4e5f\u662f\u9ec4\u8272\u7684\u3002"} +{"id": "8002840", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u6ce2\u65af\u5deb\u5e08\uff0c\u5728\u6c99\u6f20\u4e2d\u6f2b\u6b65\uff0c\u5929\u7a7a\u4e2d\u53d1\u751f\u4e86\u65e5\u98df\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "4003038", "video_name": "cb59aff3-5fc3-55c6-8fa6-59249d39a3f8", "text": "\u4e00\u5f20\u4e00\u6218\u4e2d\u4e00\u540d\u53d7\u4f24\u58eb\u5175\u5fae\u7b11\u7684\u9648\u65e7\u5e7d\u7075\u7167\u7247\u3002"} +{"id": "3006245", "video_name": "bc5c187e-fc6c-5e31-9f50-b1e55f332811", "text": "HDR 4k\u620f\u5267\u6027\u7167\u660e\u548c\u7535\u5f71\u98ce\u683c\u7684\u89d2\u5ea6\u548c\u79fb\u52a8\u5728\u89c6\u9891\u4e2d\uff0c\u63cf\u7ed8\u4e86\u6076\u5fc3\u3001\u53ef\u6015\u7684\u51b2\u6d6a\u8005\u5728\u7194"} +{"id": "2003960", "video_name": "d2261503-8d8f-5c42-83f6-bb5941cbb95e", "text": "\u521b\u9020\u4e00\u4e2a\u50cf\u76ae\u5361\u4e18\u4e00\u6837\u6253\u9f13\u6216\u5176\u4ed6\u4e50\u5668\u7684\u5b9d\u53ef\u68a6\uff0c\u4ed6\u5728\u821e\u53f0\u4e0a\uff0c\u6709\u5f69\u706f\u3002\u4ed6\u53ea\u4f1a\u6253\u9f13"} +{"id": "3006753", "video_name": "4903a917-fbdf-5d94-981b-72e1d0829115", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u7a7f\u7740\u4f18\u96c5\u7684\u8863\u670d\uff0c\u4ece\u5927\u7a97\u6237\u671b\u7740\u5916\u9762\u7684\u96e8\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u60b2\u4f24\u7684\u9762\u90e8\u8868\u60c5\uff0c"} +{"id": "3003764", "video_name": "2aacc5a3-d719-5dd6-8611-355af3db12da", "text": "\u5916\u90e8\u89c6\u89d2\u6444\u50cf\u673a\u62cd\u6444\u7684\u94f6\u8272\u98de\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u4e0a\u4e0b\u7a7f\u68ad\u4e8e\u80cc\u666f\u4e2d\u7684\u4e91\u6735\u5e94\u8be5\u968f\u4e4b\u79fb"} +{"id": "8001013", "video_name": "e5c2c3e7-acc9-53f4-8e1a-5ea1403fa088", "text": "\u4ed9\u5973\u8fc7\u53bb\u5e38\u5e38\u4ece\u4e91\u6735\u4e0a\u4fef\u77b0\u4e16\u754c\u3002"} +{"id": "6003143", "video_name": "79f11496-16c3-52c4-9276-65128f899a1d", "text": "\u65e9\u4e0a\u4ece\u623f\u95f4\u6253\u5f00\u7a97\u6237\uff0c\u6e29\u6696\u7684\u9633\u5149\u6d12\u4e0b\u6765\uff0c\u753b\u9762\u6709\u4e00\u79cd\u6d6a\u6f2b\u611f\u3002"} +{"id": "6004303", "video_name": "c737cf7c-430f-5f76-ac7c-ea86ee44e337", "text": "\u6e56\u548c\u83ca\u82b1 \u4fe1\u606f\uff1a1 \u4e2a\u9644\u4ef6"} +{"id": "7003209", "video_name": "41d37e8b-6e29-53eb-8084-cbb9d58d93b3", "text": "\u4e00\u4e2a\u6251\u514b\u623f\u95f4\uff0c\u91cc\u9762\u67098\u5f20\u684c\u5b50\uff0c\u6bcf\u5f20\u684c\u5b50\u57508\u4e2a\u4eba\u73a9\u6251\u514b\u3002\u4ece\u4e0a\u9762\u770b\u3002"} +{"id": "0003896", "video_name": "4564516d-a5d7-5d43-9b1e-566d3613f1ab", "text": "\u5c55\u793a\u65e0\u5934\u548c\u57fa\u4e8eAPI\u7684\u8f6f\u4ef6\u67b6\u6784\u7684\u56fe\u8868\u3002\u5e94\u8be5\u662f\u4e00\u4e2a\u7b80\u6d01\u7684\u56fe\u8868\u3002"} +{"id": "5001391", "video_name": "d9fab6da-4463-52e4-8a04-316df1d3c2a5", "text": "\u68a6\u5e7b\u68ee\u6797\u4ed9\u5883\u5149\u70b9\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002124", "video_name": "2b408c6f-b723-56e7-bb7c-4aaaee8594be", "text": "\u4e00\u4e2a\u7537\u5b69\u62b1\u4f4f\u5373\u5c06\u6389\u843d\u5728\u60ac\u5d16\u8fb9\u7684\u5973\u5b69\u3002"} +{"id": "2006160", "video_name": "23a99dc6-bb6d-538f-850e-6527cf4251d8", "text": "\u53d1\u73b0\u5916\u661f\u98de\u8239\u5760\u6bc1\u7684\u5f55\u50cf\u3002"} +{"id": "8003282", "video_name": "d273f6bf-b14c-5ca1-a5e9-009b538d9e61", "text": "\u7cd6\u679c\u5973\u5b69\u5403\u81ea\u5df1\u7684\u624b\uff0c\u5979\u7ad9\u7740\u770b\u5411\u6444\u50cf\u673a\uff0c\u8863\u670d\u989c\u8272\u9c9c\u8273\uff0c\u9762\u90e8\u7ec6\u8282\u4e30\u5bcc\uff0c\u8d85"} +{"id": "0003744", "video_name": "42a88275-49ad-57f1-9b7a-2f3dd8e2910f", "text": "\u4ed6\u6709\u4e00\u5929\u6536\u5230\u4e86\u4e00\u5c01\u795e\u79d8\u4fe1\uff0c\u6307\u5411\u4e86\u4e00\u5ea7\u795e\u5947\u7684\u5c71\u3002"} +{"id": "3003273", "video_name": "3312f738-42d6-574e-b322-5ffe3357d8ed", "text": "\u4e00\u4f4d\u53e4\u57c3\u53ca\u7684\u796d\u53f8\uff0c\u76f4\u8996\u93e1\u982d\u3002"} +{"id": "6002470", "video_name": "d82ae366-036e-5a92-a59f-c1b6a4809795", "text": "\u514b\u91cc\u5e0c\u7eb3\u548c\u725b\u5728\u7eff\u5c71\u4e0a\u3002"} +{"id": "4003476", "video_name": "c90292b7-d6a2-5509-b5aa-99975005403a", "text": "\u9ed1\u767d\u6781\u7b80\uff0c\u52a8\u6001\u7ebf\u6761\uff0c\u9ec4\u91d1\u6bd4\u4f8b\u3002"} +{"id": "1003505", "video_name": "40cc8b5c-09d4-5c5a-af55-c38ba9c0f2c8", "text": "\u4e00\u4e2a\u6709\u4ed9\u5973\u98de\u6765\u98de\u53bb\uff0c\u8df3\u8dc3\u5728\u6811\u6797\u91cc\u7684\u68ee\u6797\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with shades of pink and orange. \n\n"} +{"id": "1004006", "video_name": "4a2074b9-900b-578d-85e7-09a1b59c7e1a", "text": "\u53f2\u8482\u592b\u00b7\u4e54\u5e03\u65af\u5728\u5546\u573a\u8fdb\u884c\u6f14\u8bb2\uff0c\u80cc\u540e\u662f\u4e00\u4e2a\u5e26\u6709\u82f9\u679c\u6807\u5fd7\u7684\u5c4f\u5e55\u3002"} +{"id": "0004594", "video_name": "0ba3d3fc-ea64-576d-a919-24d3544f7e7a", "text": "\u4eba\u7269\u884c\u8d70\u3001\u9634\u68ee\u3001\u52a8\u6001\u3001\u7535\u5f71\u5316\u3001\u8fd0\u52a8\u3001\u53d8\u7126\u955c\u5934\u3001\u89c6\u89d2\u5e73\u89c6\u955c\u5934"} +{"id": "7002211", "video_name": "8730135c-a430-5bbb-a631-c4c966d857b8", "text": "\u6253\u5f00\u773c\u775b\u770b\u89c1\u5b87\u5b99\u7684\u4eba"} +{"id": "4002359", "video_name": "7bf67bef-cd5c-51d2-a6d5-7a9e599205fe", "text": "\u4e00\u7247\u8352\u51c9\u3001\u6708\u5149\u7167\u8000\u4e0b\u7684\u666f\u8c61\uff0c\u56db\u5904\u6563\u843d\u7740\u5e9f\u589f\uff0c\u662f\u66fe\u7ecf\u7e41\u534e\u57ce\u5e02\u7684\u9057\u8ff9\u3002\u7a7a"} +{"id": "4004837", "video_name": "368e8b7a-92ec-5b75-b984-ac69021cfe3d", "text": "\u7531\u672c\u6770\u660e\u00b7\u83ab\u6839\u53d1\u660e\u7684\u95f4\u6b47\u6cc9\u63d0\u4f9b\u70ed\u6c34\uff0c\u5373\u4f7f\u5728\u5bd2\u51b7\u5929\u6c14\u4e0b\u4e5f\u6ca1\u6709\u95ee\u9898\u3002"} +{"id": "4004284", "video_name": "544f3aed-a789-5f46-90b8-c4d5e8d6c8b5", "text": "\u62d8\u6ce5\u4e8e\u585e\u73ed\u5c9b\u4e0a\u7684\u6d41\u4ea1\u751f\u6d3b\uff0c\u62ff\u7834\u4ed1\u5185\u5fc3\u611f\u5230\u5931\u53bb\u4e86\u4ed6\u8fc7\u53bb\u7684\u80dc\u5229\u548c\u5e1d\u56fd\u6240\u5e26\u6765\u7684"} +{"id": "4002626", "video_name": "4d434a3a-fee4-5328-b2d1-2e7018c92cf3", "text": "\u4e00\u5934\u725b\u6765\u5230\u4e00\u7247\u82a6\u82c7\u6c60\u5858\u559d\u6c34\u3002\u5f53\u5b83\u6c89\u91cd\u5730\u8df3\u8fdb\u6c34\u4e2d\u65f6\uff0c\u5b83\u628a\u4e00\u53ea\u5e74\u8f7b\u7684\u9752\u86d9"} +{"id": "7004636", "video_name": "e3da3940-cb8a-5c3d-85d8-c1e9e2734d94", "text": "\u80af\u6069\u5a03\u5a03\u7a7f\u7740\u767d\u8272\u897f\u88c5\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u62b1\u7740\u5b83\u9762\u5411\u955c\u5934\u3002"} +{"id": "2007667", "video_name": "ea9dc7d0-fc9d-5abf-80bb-438a17b1b826", "text": "\u4f7f\u7528\u5404\u79cd\u6e05\u6d01\u5242\u74f6\u5236\u6210\u7684\u673a\u5668\u4eba\u5973\u5b69\uff0c\u903c\u771f\u7684\u6982\u5ff5\u827a\u672f\uff0c8K\uff0c\u7a7a\u767d\u7684\u767d\u8272\u9762\u5b54\uff0c"} +{"id": "2005727", "video_name": "b7c536c3-b4df-5d5b-854f-ff313cfe7286", "text": "\u7528Arnold Shwarzenneger\u5728\u9ad8\u6e0516:9\u4e2d\u6740\u6b7b\u673a\u5668\u4eba\u6765\u521b\u9020\u4e1c\u4eac\u7ec8\u7ed3\u8005\u573a\u666f\u3002"} +{"id": "2006801", "video_name": "7e3205f1-c1e6-5127-858f-872ba2348e13", "text": "\u65f6\u95f4\u5f00\u59cb\u7684\u89c6\u89c9\u8272\u5dee\u3002"} +{"id": "6003799", "video_name": "97ee983e-ae31-55bc-b8fb-ec958dfc3e80", "text": "\u8d85\u73b0\u5b9e\u57ce\u5e02\u4e2d\u5feb\u901f\u6444\u50cf\u673a\u79fb\u52a8\u7684\u8d85\u5199\u5b9e\u573a\u666f\u3002"} +{"id": "0003816", "video_name": "44013df6-f9c0-55ed-9c46-123df542666e", "text": "\u536b\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\u7684\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u57ce\u5e02"} +{"id": "6002930", "video_name": "375efa18-40e2-5326-ae2a-34505d33cceb", "text": "\u8fd0\u52a8\u5458\u5728\u6bd4\u8d5b\u4e2d\u5fd9\u4e8e\u8dd1\u6b65\u548c\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "2003532", "video_name": "f38f6fc7-5818-5b49-9b79-0f2b37cf7abb", "text": "\u4e00\u53ea\u667a\u6167\u7684\u8001\u732b\u5934\u9e70\u5728\u4e1b\u6797\u4e2d\u8bf4\u8bdd\u3002"} +{"id": "7004930", "video_name": "f010fed8-9bb2-5976-b9d6-22ca1573065b", "text": "\u572820\u4e16\u7eaa70\u5e74\u4ee3\u5236\u4f5c\u7684\u4e00\u90e8\u8d85\u73b0\u5b9e\u5e7b\u60f3\u827a\u672f\u7535\u5f71\u300a\u9ec4\u8774\u8776\u300b\u4e2d\uff0c\u6709\u9ec4\u8272\u7684\u8774\u8776"} +{"id": "7003602", "video_name": "12733db4-a863-514a-954c-9e1d541c8206", "text": "\u7537\u4eba\u548c\u4e00\u53ea\u6bd4\u7279\u72ac\u4e00\u8d77\u7761\u5728\u5e8a\u4e0a\u3002"} +{"id": "7002137", "video_name": "e5dba2df-4efe-5809-ae46-738876d1fedc", "text": "\u6234\u7740\u592a\u9633\u773c\u955c\u7684\u6d77\u8c5a\u5728\u55b7\u53d1\u7684\u706b\u5c71\u811a\u4e0b\u9a91\u9a6c\uff0c\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u52a8\u753b\u3002"} +{"id": "7004246", "video_name": "2dc5e9fa-2837-52a9-bd04-a0872b3a537d", "text": "\u4e00\u4e2a\u5173\u4e8e\u5fb7\u56fd\u5fb7\u8d56\u827e\u4ea8\uff08Dreieichenhain\uff09\u548c\u5c24\u5176\u662f\u57ce\u5821\u7684\u77ed10\u79d2\u89c6\u9891\u3002"} +{"id": "2005132", "video_name": "e0933f4c-ef0c-5693-9f89-130bf1a59c01", "text": "\u8001\u5e08\u6ce8\u610f\u5230\u4e00\u4e2a\u5728\u8857\u4e0a\u5de5\u4f5c\u7684\u8d64\u811a\u52b3\u5de5\u3002"} +{"id": "6002128", "video_name": "7797fc3c-a254-5252-898c-5e6f4d84bba1", "text": "\u4e00\u4e2a\u5973\u5deb\u65bd\u6cd5\u7684\u8096\u50cf\uff0c\u590d\u53e4\u7535\u5f71\uff0c\u9ed1\u8272\u7535\u5f71\u3002"} +{"id": "0006530", "video_name": "2e2ea357-0d07-5a06-b911-aff1a2a6a849", "text": "\u6bcd\u4eb2\u548c\u5b9d\u5b9d \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3003895", "video_name": "fcdbab3b-e123-5a6e-af6a-f75a8dc9ebe1", "text": "\u50cf\u8c37\u6b4c\u548c\u5176\u4ed6\u4e92\u8054\u7f51\u5de8\u5934\u8fd9\u6837\u7684\u5927\u516c\u53f8\u83b7\u5f97\u4e86\u6211\u4eec\u7684\u516c\u5171\u670d\u52a1\u548c\u8bbe\u65bd\u7684\u8bbf\u95ee\u6743\u9650\u3002"} +{"id": "7002484", "video_name": "469fa414-bd59-5924-8ec6-fe336f7ca16d", "text": "\u6e29\u99a8\u7684\u623f\u95f4\uff0c\u5916\u9762\u4e0b\u7740\u96e8\uff0c\u4e3a\u5b66\u4e60\u6216\u653e\u677e\u521b\u9020\u4e86\u8f7b\u677e\u7684\u6c1b\u56f4\u3002"} +{"id": "3005720", "video_name": "576897dd-8ab0-57b3-b32e-63d2feaa81c1", "text": "\u4e00\u4e2a\u7537\u4eba\u8df3\u8fdb\u4e00\u5806\u6a31\u82b1\u91cc\u3002"} +{"id": "2003868", "video_name": "945aec56-555c-59b2-b647-f960363446ff", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u7ad9\u5728\u623f\u5b50\u524d\u9762\uff0c\u5b66\u6821\u7684\u9ec4\u8272\u5df4\u58eb\uff0c\u5b66\u6821\u91cc\u7684\u513f\u7ae5\u6559\u5ba4\uff0c\u4e00\u4e2a\u5e26\u6e38\u620f\u7684\u64cd\u573a"} +{"id": "1006014", "video_name": "6e7f5ccb-5aa5-592b-9f9c-c9c2580c41b0", "text": "\u7535\u9cd7\u5728\u4e9a\u7279\u5170\u8482\u65af\u7684\u53e4\u8001\u6c34\u65cf\u9986\u4e2d\u5236\u9020\u7535\u529b\u3002\u8ddd\u4eca15000\u5e74\u524d\u3002\u7535\u5f71\u822c\u7684\u3002\u6781\u5176\u8d85\u73b0\u5b9e\u3002"} +{"id": "2006425", "video_name": "f1fdeefa-9839-5ea7-bff9-3269cab0835c", "text": "\u4e00\u4e2a\u4eba\u5728\u8dd1\uff0c\u56e0\u4e3a\u5916\u661f\u4eba\u5728\u8ddf\u968f\u3002"} +{"id": "8002182", "video_name": "aef2704f-e3aa-570e-b44e-feebb77abd6e", "text": "\u5f71\u5b50\u4eba\u5728\u6f14\u594f\u91cd\u91d1\u5c5e\u97f3\u4e50\u65f6\u8df3\u821e\u3002"} +{"id": "7004902", "video_name": "277d4afe-da9a-5ba4-805e-376b78fab4a5", "text": "\u80fd\u6e90\u7ba1\u7406\uff1a\u533a\u5757\u94fe\u53ef\u7528\u4e8e\u5efa\u7acb\u5206\u5e03\u5f0f\u80fd\u6e90\u7f51\u7edc\uff0c\u5b9e\u73b0\u80fd\u6e90\u5171\u4eab\u548c\u4ea4\u6613\u3002\u901a\u8fc7\u533a\u5757\u94fe\u6280\u672f\uff0c\u57ce\u5e02\u53ef\u4ee5\u66f4\u597d\u5730\u6574\u5408\u53ef\u518d\u751f"} +{"id": "8002136", "video_name": "c680626b-a97b-5a52-9dec-08fb117d9353", "text": "\u7537\u5b69\u5728\u68ee\u6797\u91cc\u626e\u6f14\u4ed6\u7684\u7236\u4eb2\u3002"} +{"id": "3005049", "video_name": "2990a756-6056-5477-b45f-8b305b448398", "text": "\u4e00\u540d\u91d1\u53d1\u5973\u5b50\u5728\u4fdd\u9669\u516c\u53f8\u5de5\u4f5c\uff0c\u6234\u7740\u8033\u673a\u6253\u7535\u8bdd\uff0c\u540c\u65f6\u5728\u7535\u8111\u4e0a\u6253\u5b57\u3002\u4f60\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u767d\u8272\u7684\u82f9\u679c\u5c4f\u5e55"} +{"id": "7003907", "video_name": "7fca3101-18c6-509a-8e78-23c41f48ffa2", "text": "\u5c55\u793a\u7ed9\u6211\u4e00\u4e2a\u5728\u55b7\u6f06\u623f\u5185\u4f7f\u7528\u9759\u7535\u7c89\u672b\u6d82\u6599\u6d82\u6f06\u91d1\u5c5e\u76d2\u7684\u4eba\u3002"} +{"id": "7002946", "video_name": "5975a964-efdb-538f-80a0-b6ced098fc81", "text": "\u897f\u73ed\u7259\u88d4\u5973\u6027\u7a7f\u4e0a\u79d1\u5e7b\u670d\u88c5\uff0c\u5728\u9a7e\u9a76\u8231\u91cc\u975e\u5e38\u5438\u5f15\u4eba\u3002"} +{"id": "2004776", "video_name": "cac46a63-a308-5cae-9c5a-caea8c30dee0", "text": "\u4e00\u4e2a\u665a\u4e0a\u7684\u623f\u95f4\u91cc\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u548c\u4e00\u4e2a\u68cb\u76d8\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u50cf\u662f\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684"} +{"id": "6004112", "video_name": "6eecd0e1-bcde-504a-b658-0e859238fe18", "text": "9:16\u9ad8\u6e05\u65e0\u4eba\u673a\u822a\u62cd\u89c6\u9891\uff0c\u5c55\u73b0\u6930\u6811\u548c\u540e\u6e7e\u7684\u8d85\u5199\u5b9e\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "0003670", "video_name": "417654a3-fc5c-5252-8b9c-789eae3cb887", "text": "\u5bfb\u627e\u7f8e\u4e3d\u5973\u5b69\u7684\u5370\u5ea6\u82f1\u96c4\u7ad9\u5728\u5efa\u7b51\u7269\u9876\u90e8\u3002"} +{"id": "0003849", "video_name": "4494b341-4708-5eb6-9cc3-b729657175e4", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u5c0f\u9547\u88ab\u5f57\u661f\u548c\u6d41\u661f\u96e8\u8986\u76d6\u7684\u753b\u9762\u3002"} +{"id": "3003283", "video_name": "363ae94b-85df-50d8-975f-2155a15b8faf", "text": "\u5e03\u9c81\u8bfa\u00b7\u9a6c\u5c14\u65af\u7a7f\u7740\u4e00\u5957\u767d\u8272\u897f\u88c5\u5728\u661f\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4003006", "video_name": "81ef8e7b-213f-5156-aa62-af83e7fa7c21", "text": "\u4e00\u67b6\u98de\u673a\u98de\u8d8a\u7ebd\u7ea6\uff0c\u5e26\u6709\u7eff\u8272\u548c\u91d1\u8272\u7684\u7ec6\u5fae\u56fe\u6848\u3002"} +{"id": "3006935", "video_name": "132d6e51-8a55-5d98-b64b-914afb39eab5", "text": "\u4e24\u4e2a\u5916\u661f\u4eba\u5750\u5728\u4e00\u67b6\u5c0f\u706b\u7bad\u4e0a\uff0c\u5728\u5b87\u5b99\u4e2d\u98de\u884c\uff0c\u5438\u7740\u9999\u70df\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u7535\u5f71\u573a\u666f\uff0c3"} +{"id": "0005184", "video_name": "1642e7f4-ad64-5744-a4b9-c9ea49a6e52b", "text": "\u7528\u7ea2\u5507\u818f\u6307\u7740TARDIS\u7684\u533b\u751f\u3002"} +{"id": "3005497", "video_name": "ac2a2ae8-6b0e-5c28-a123-17d565769d9e", "text": "\u89c6\u9891\u5c55\u793a\u4e86\u5929\u7a7a\u4e2d\u8fdc\u5904\u5feb\u4e50\u7684\u6708\u4eae\uff08Chanda Mama\uff09\u3002"} +{"id": "4004265", "video_name": "14a5f79c-58d6-56a3-b7a3-bf6a7305a218", "text": "\u6218\u4e89\u4e2d\u7684\u58eb\u5175\u5728\u6218\u6597\u4e2d\u7948\u6c42\u7ed3\u675f\u6218\u4e89\uff0c\u508d\u665a\u65f6\u5206\uff0c\u65e5\u843d\u65f6\uff0c\u8d85\u6e05\u6670\u3001\u9ad8\u5206\u8fa8\u7387\u7684\u52a8"} +{"id": "8002561", "video_name": "f80aba75-7a39-5a7c-b805-2e485b63705b", "text": "\u4e00\u53ea\u5e26\u7740\u53d1\u52a8\u673a\u5728\u5929\u7a7a\u4e2d\u7684\u732b\u3002"} +{"id": "4004175", "video_name": "4c406a69-415f-5077-9ed4-ee1eae51c5fd", "text": "\u4e00\u8f86\u5c0f\u578b\u73a9\u5177\u5361\u8f66\u540a\u8f66\u6316\u6ce5\u571f\u3002"} +{"id": "6004852", "video_name": "ce88045d-af8a-533d-9b6a-a0506885c719", "text": "\u521b\u9020\u4e00\u4e2a\u6fc0\u70c8\u7684\u573a\u666f\uff0c\u4e3a\u97f3\u4e50\u89c6\u9891\u6253\u9020\u4e00\u4e2a\u5927\u578b\u3001\u591a\u5143\u5316\u7684\u4eba\u7fa4\uff0c\u5728\u57ce\u5e02\u73af\u5883\u4e2d\u5145\u6ee1\u6fc0\u60c5\u5730\u6297"} +{"id": "2007147", "video_name": "cf4a663e-caec-5a0b-bc3a-69cb936bceb3", "text": "\u6545\u4e8b\u677f\uff1a\u5f00\u573a\u955c\u5934\uff1a\u4e00\u4e2a\u5e7f\u89d2\u955c\u5934\u7684\u57ce\u9547\uff0c\u6c90\u6d74\u5728\u6ee1\u6708\u7684\u8be1\u5f02\u5149\u8292\u4e2d\u3002"} +{"id": "8001755", "video_name": "19a9c235-1f59-53a9-85bb-af4c106989f1", "text": "\u4e00\u4e2a\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u9762\u5e26\u8868\u60c5\u7684\u6bdb\u9aa8\u609a\u7136\u7684\u65e0\u53f6\u6811\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u3002 \n\nSource sentence: The cat is sleeping"} +{"id": "2005728", "video_name": "a89f6e8c-3eba-5caa-be1b-92e2354c003c", "text": "\u5deb\u5a46\u5df4\u5df4\u4e9a\u52a0\uff0c\u9ed1\u6697\u6c1b\u56f4\uff0c\u975e\u5e38\u53ef\u6015\u3002"} +{"id": "2007074", "video_name": "151e90a6-bf8f-5e59-a375-33cc7ec8fab8", "text": "\u533b\u9662\u75c5\u5e8a\uff0c\u4ece\u6795\u5934\u6444\u50cf\u5934\u7f29\u5c0f\uff0c\u8fd0\u52a81\uff0cgs 12\u3002"} +{"id": "4003362", "video_name": "9bbf2f57-af29-5cc3-bd53-718eb4853e60", "text": "\u8be5\u56e2\u4f53\u51b3\u5b9a\u5c06\u6c34\u6676\u4fdd\u62a4\u597d\uff0c\u53ea\u6709\u5f53\u771f\u6b63\u7684\u9ed1\u6697\u518d\u6b21\u5a01\u80c1\u68ee\u6797\u65f6\u624d\u4f7f\u7528\u5b83\u3002"} +{"id": "3003064", "video_name": "9f4462e6-6b22-59ce-b727-b086c7b8658d", "text": "\u4e8c\u5341\u5c81\u7ea2\u53d1\u7537\u5b50\u5728\u7535\u8111\u4e0a\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "0006480", "video_name": "2d432543-ec32-5566-8fef-b54687f7a7d4", "text": "\u4eba\u5728\u660e\u4eae\u7684\u6d77\u8fb9\u6f2b\u6b65\uff0c\u9633\u5149\u666e\u7167\u3002"} +{"id": "6003194", "video_name": "e422fed4-92cc-59a3-9714-aba8b83708e8", "text": "\u4f7f\u7528\u795e\u7947Radha Krishna\u5728\u4ed6\u7684\u7ae5\u5e74\u65f6\u671f\uff0c\u4ee5\u6cb3\u6d41\u3001\u5c71\u8109\u548c\u91ce\u751f\u52a8\u7269\u4e3a\u80cc\u666f\uff0c\u5236\u4f5c\u89c6\u9891\u52a8\u753b\u5c55\u793a\u7231\u7684\u5b9a\u4e49\u3002"} +{"id": "8001241", "video_name": "563addb8-6f0f-5176-8359-d1ca4831b756", "text": "\u7a7a\u4e2d\u955c\u5934 35 \u6beb\u7c73\u7535\u5f71\u9759\u6b62\u753b\u9762\uff0c\u8036\u7a23\u88ab\u56f4\u7ed5\u7740\u8bfb\u5723\u7ecf\u7684\u4eba\u62cd\u6444\u3002"} +{"id": "8001970", "video_name": "ba2581f2-9b64-5b5a-a459-8cae366b7f51", "text": "\u91ce\u6027\u6f02\u79fb\u8f66\u3002\u903c\u771f\u7684\u7167\u7247\u7ea7\u522b\uff0cHDR\uff0c\u9ad8\u8d28\u91cf\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u975e\u5e38\u8be6\u7ec6\uff0c32k\uff0c\u4ea7\u54c1\uff0c\u7167\u7247\uff0c3D\u6e32"} +{"id": "1003003", "video_name": "371eefbc-7c0f-55cd-a8e7-324e90f76362", "text": "\u4eba\u7c7b\u548c\u4eba\u5de5\u667a\u80fd\u4e00\u8d77\u5e86\u795d\u5723\u8bde\u8282"} +{"id": "4004983", "video_name": "f19acddf-ecc7-58c7-bd1b-9f5273c39230", "text": "\u6d77\u4e0a\u4f7f\u7528\u5e26\u6709\u62d6\u7f51\u7535\u673a\u7684\u8239\u53ea\u3002"} +{"id": "0006836", "video_name": "33fdf763-76f4-5a46-9d76-2d36798f4c3a", "text": "\u53e6\u4e00\u4e2a\u4e16\u754c\u822c\u7684\u666f\u8c61\u5728\u6211\u4eec\u9762\u524d\u5c55\u5f00\uff0c\u9ad8\u8038\u7684\u5c71\u8109\u4f3c\u4e4e\u89e6\u53ca\u5929\u7a7a\uff0c\u5b83\u4eec\u7684\u5c71\u9876\u4e0a\u51a0\u7740\u65cb"} +{"id": "3005295", "video_name": "3ea090d4-03be-5864-a01b-ce91faa935d0", "text": "\u91d1\u53d1\u5973\u5b50\u7ad9\u5728\u661f\u8230\u4e0a\uff0c\u9762\u5411\u7a97\u6237\uff0c\u51dd\u671b\u7a97\u5916\u7684\u5b87\u5b99\u3002"} +{"id": "2003818", "video_name": "fba484b5-b016-5679-8b55-60bcd16dc2eb", "text": "\u6162\u901f\u5b8c\u6574\u7684\u65cb\u8f6c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005621", "video_name": "1e3d43a5-0c09-56b3-b7f5-1d296f0dddc9", "text": "\u5728\u82b1\u6735\u4e2d\u6539\u53d8\u989c\u8272\uff1a\u62cd\u6444\u82b1\u56ed\u4e2d\u82b1\u6735\u7684\u56fe\u50cf\uff0c\u5e76\u4f7f\u82b1\u6735\u7684\u4e00\u90e8\u5206\u57284\u4e2a\u89c6\u9891\u4e2d\u5e73\u6ed1\u5faa\u73af\u5730"} +{"id": "7003310", "video_name": "9b7ab05d-5a73-5feb-9b7b-0c46c1f33155", "text": "\u91d1\u8272\u9ab7\u9ac5\u5728\u9c7c\u773c\u76f8\u673a\u524d\u6253\u9f13\u3002"} +{"id": "6003955", "video_name": "b8b36f8d-cc03-5839-b56a-257bede8f812", "text": "\u4e00\u4e2a\u5c0f\u5b69\u770b\u7740\u7ea2\u8272\u7684\u6cd5\u62c9\u5229\u3002"} +{"id": "3006089", "video_name": "13de6fc8-da40-5402-a72f-f1f4102d31de", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u58eb\u8eba\u5728\u84dd\u8272\u7684\u6cb3\u6d41\u4e0a\u3002 \n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u98df\u54c1"} +{"id": "4003774", "video_name": "18f42caa-63bc-5108-8e05-2fd2f28ffbb5", "text": "\u5367\u5ba4\u91cc\u6709\u53ea\u9a7c\u9e7f\uff0c\u8eba\u5728\u5e8a\u4e0a\u88ab\u5b50\u91cc\u3002"} +{"id": "3004119", "video_name": "938700af-619c-59df-9f1b-fdf2584e4e20", "text": "\u4e00\u4e2a\u8352\u829c\u7684\u4e16\u754c\u88ab\u6c38\u6052\u7684\u9ed1\u6697\u7b3c\u7f69\uff0c\u524d\u666f\u662f\u88ab\u9057\u5fd8\u7684\u6587\u660e\u7684\u5e9f\u589f\uff0c\u4e2d\u5fc3\u662f\u4e00\u4e2a\u795e\u79d8"} +{"id": "1003079", "video_name": "38a6a5db-057d-5779-b38f-18746ab8a708", "text": "\u53e4\u7f57\u9a6c\u7684\u601d\u60f3\u5bb6\u96d5\u50cf\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u5934\u4e0a\u6709\u4e00\u4e2a\u52a8\u6001\u7684\u601d\u7ef4\u6c14\u6ce1\uff0c\u6709\u4e2d\u4e16\u7eaa\u753b\u4f5c\u7684\u611f"} +{"id": "6002684", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "\u8499\u5a1c\u4e3d\u838e\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\u8d70\u7740\uff0c\u623f\u95f4\u91cc\u6709\u4e00\u628a\u6905\u5b50\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u95ee"} +{"id": "1005232", "video_name": "60455f26-1323-559b-a12e-21ef6c5f93d3", "text": "\u8def\u660e\u5e38\u88ab\u63cf\u7ed8\u6210\u4e00\u4e2a\u5929\u4f7f\u822c\u7684\u5f62\u8c61\uff0c\u5c55\u7fc5\u98de\u7fd4\uff0c\u6563\u53d1\u7740\u5149\u8f89\u7684\u6c14\u606f\u3002\u5979\u7684\u5f62\u8c61\u7f8e"} +{"id": "8002890", "video_name": "2b846690-e78e-5934-9859-0a517810b323", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u5531\u6b4c\u8df3\u821e\uff0c\u9762\u90e8\u8868\u60c5\u653e\u5927\u548c\u7f29\u5c0f\uff0c\u7728\u773c\u3002"} +{"id": "0006142", "video_name": "272ea877-8072-5e14-9f08-f484f1219ea7", "text": "\u8fd9\u5ea7\u5bab\u6bbf\u662f\u7531\u4e0d\u540c\u79cd\u7c7b\u7684\u73cd\u8d35\u77f3\u5934\u5efa\u9020\u800c\u6210\uff0c\u6709\u4e00\u4e2a\u5927\u5706\u9876\u548c\u8bb8\u591a\u67f1\u5b50\uff0c\u5728\u5bab\u6bbf\u91cc\u6709\u8bb8\u591a"} +{"id": "1006174", "video_name": "70fd1750-252f-55b2-85fa-675bf5e28b8d", "text": "\u6d41\u661f\u649e\u51fb\u5730\u9762\u540e\u7206\u70b8\uff0c\u4ece\u8fdc\u5904\u5c04\u51fa\u3002"} +{"id": "2007371", "video_name": "48bff8c4-ec78-5f9f-83de-d8cde5599e4d", "text": "\u8d70\u5728\u7d2b\u7981\u57ce\u7684\u4e2d\u8f74\u7ebf\u4e0a\uff0c\u62c9\u8fdc\u6216\u653e\u5927\u89c6\u89d2\u3002"} +{"id": "1006613", "video_name": "793c9eae-d424-5a14-a3db-7f17ea52afc7", "text": "\u76ae\u514b\u65af\u7535\u5f71\u9884\u544a\u7247\uff0c\u6709\u91d1\u6bdb\u730e\u72ac\u3002"} +{"id": "2004021", "video_name": "35ab487c-4ac4-587f-bb64-ecb5388faece", "text": "\u90a3\u4e2a\u4eba\u7ad9\u7740\u5f39\u5409\u4ed6\u5531\u6b4c\u3002"} +{"id": "0004661", "video_name": "0cdca699-2571-52c4-bd42-02de5abff4cc", "text": "\u7537\u4eba\u7761\u5728\u6811\u4e0a\uff0c\u9a6c\u5728\u6811\u4e0b\uff0c\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5361\u901a\u52a8\u753b\u3002"} +{"id": "7004153", "video_name": "36e6b174-7a1b-5ff7-a1c1-a6440eb5b7b8", "text": "\u4e24\u4e2a\u804c\u4e1a\u6454\u8de4\u624b\u5728\u4e91\u7aef\u640f\u6597\u3002"} +{"id": "2004851", "video_name": "f5da4ade-8280-574b-8d24-79cbd0877297", "text": "\u9762\u5bf9\u975e\u6d32\u653f\u6cbb\u52a8\u6001\u7684\u53d8\u5316\uff0c\u5305\u62ec\u519b\u653f\u5e9c\u4e0a\u53f0\u548c\u4fc4\u7f57\u65af\u5f71\u54cd\u529b\u7684\u589e\u5f3a\uff0c\u6cd5\u56fd\u548c\u975e\u6d32\u5927\u9646\u4e4b\u95f4\u7684"} +{"id": "3003133", "video_name": "a624fa30-631c-54e8-a126-0d01425a7988", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u7a7f\u7740\u5f97\u4f53\uff0c\u5f3a\u70c8\u7f8e\u4e3d\u7684\u773c\u795e\uff0c\u957f\u53d1\uff0c\u706b\u8fa3\u3002"} +{"id": "2004397", "video_name": "a1e2bc18-e00a-5e92-b916-40750b5c4323", "text": "\u4e3a\u6211\u521b\u5efa\u4e00\u4e2a2D\u89d2\u8272\uff0c\u4ece\u4e0d\u540c\u7684\u8138\u90e8\u89d2\u5ea6\u51fa\u53d1\u3002"} +{"id": "3005769", "video_name": "5ef3c3b2-07d9-5d2f-9e56-be0a364c5299", "text": "\u821e\u53f0\u4e0a\u7684\u4eba\u5728\u79d1\u6280\u6d3b\u52a8\u4e2d\u5ba3\u5e03\u4e86\u65b0\u7684\u8f6f\u4ef6\u529f\u80fd\uff0c\u5ba4\u5185\uff0c\u6444\u5f71\u8272\u5f69\u4e30\u5bcc\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u8be6\u7ec6\u4ecb\u7ecd"} +{"id": "3005941", "video_name": "3936aaa1-6141-5cc6-97fc-c787794f0388", "text": "\u6587\u4ef6\u5728\u623f\u95f4\u91cc\u4e71\u98de\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003743", "video_name": "451711a3-c8c4-5ae5-8601-88947b739567", "text": "\u6c99\u6f20\u4e2d\u7684\u72d7\uff0c\u5361\u901a\u98ce\u683c"} +{"id": "2004771", "video_name": "4aebf49c-b0f4-5155-9f85-24ff3daeef29", "text": "\u7537\u4eba\u4f7f\u7528\u9ad8\u6863\u8bbe\u5907\u917f\u9020\u5564\u9152\u3002"} +{"id": "8003580", "video_name": "8e3e811c-4211-50ee-aa41-3533bb8b797e", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u4ed6\u7684\u670d\u88c5\u4e0a\u6309\u6309\u94ae\u3002"} +{"id": "8002797", "video_name": "2e47ade6-28af-546b-bc41-da00ffac6886", "text": "\u4e00\u573a\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u5b81\u9759\u7684\u98ce\u666f\u753b\u9762\u4e0a\u6709\u72ee\u5b50\u3001\u8c79\u5b50\u548c\u5176\u4ed6\u52a8\u7269\u805a\u96c6\u5728\u6e56\u8fb9\u3002"} +{"id": "8001657", "video_name": "518a892f-0c10-5cdd-a023-956f9024c0ed", "text": "\u4e00\u4e2a\u54e5\u7279\u5f0f\u7684\u6050\u6016\u98ce\u683c\u5973\u82f1\u96c4\u5a01\u6b66\u5730\u77d7\u7acb\u7740\uff0c\u51dd\u89c6\u7740\u8fdc\u65b9\u3002"} +{"id": "4002532", "video_name": "319626f7-999d-5aef-b409-500dca3ffe9c", "text": "\u767d\u8272\u6c99\u6ee9\n\u8fbe\u5c14\u56fe\u5c14\u5947\u514b (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0003310", "video_name": "3b5ee716-e1fd-544a-b705-d71e46f08781", "text": "The Weeknd\u5728\u5b5f\u4e70\u7684\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "8001934", "video_name": "d1f5f22d-71c8-52ec-8682-b34f630792ef", "text": "\u5f7c\u5f97\u4ece\u300a\u6076\u641e\u4e4b\u5bb6\u300b\u5403\u610f\u5927\u5229\u9762\u3002"} +{"id": "1005519", "video_name": "659f1e89-5147-5464-8c5e-9b71f243af37", "text": "Miulu \u6709\u56db\u4e2a\u4e3b\u8981\u6751\u5e84\uff0cYava Medumgama \u662f\u5176\u4e2d\u4e4b\u4e00\u3002\u8be5\u6751\u5e84\u7684\u9886\u8896\u540d\u53ebSirivaddhana\u3002\u4ed6\u7684\u59bb\u5b50\u662fSum"} +{"id": "4002338", "video_name": "7409da93-450a-53bd-8ab6-b1f8cba5bfa2", "text": "\u5145\u6ee1\u751f\u673a\u7684\u6811\u53f6\uff0c\u4ee5\u53ca\u4e00\u6761\u5e73\u9759\u6d41\u6dcc\u7684\u6cb3\u6d41\u3002"} +{"id": "3004647", "video_name": "ebc32398-c2f0-568f-8f80-c95e75710f57", "text": "\u8d5b\u535a\u670b\u514b2077 \u5373\u5c06\u5f00\u59cb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005456", "video_name": "cdeed5d9-8ab9-51a0-b2a9-7f9ec63addca", "text": "\u7535\u5f71\u5f00\u573a\uff0c\u56db\u4f4d\u82f1\u96c4\u7a7f\u7740\u620f\u670d\u767b\u573a\uff0c\u80cc\u666f\u662f\u9ed1\u8272\u4e3b\u9898\u3002"} +{"id": "3005711", "video_name": "c4129523-700b-5e58-b8c5-937f04946660", "text": "\u8fd9\u53ea\u52a8\u7269\u62ff\u8d77\u5355\u7247\u773c\u955c\uff0c\u6234\u5728\u4e00\u53ea\u773c\u775b\u4e0a\u3002"} +{"id": "2006685", "video_name": "5abbfed6-9914-5545-9d7b-4533414993aa", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u4e66\u623f\uff0c\u4e66\u67b6\u4e0a\u6446\u6ee1\u4e86\u5fc3\u7406\u5b66\u4e66\u7c4d\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u4e13\u6ce8\u5730\u9605\u8bfb\u3002"} +{"id": "1006946", "video_name": "7f22b3a2-0c95-53db-bace-10f1612a1481", "text": "\u4e91\u6735\u6eda\u52a8\u5728\u7eff\u8272\u7684\u7530\u91ce\u4e0a\uff0c5\u4e2a\u673a\u5668\u4eba\u5728\u9633\u5149\u4e0b\u8df3\u821e\uff0c\u592a\u7a7a\u98de\u8239\u5728\u8fdc\u5904\uff0c\u4f7f\u7528\u8d858\u5bb6"} +{"id": "4004859", "video_name": "6288f7e2-da53-542a-9002-a37b1fe6d2e2", "text": "\u975e\u5e38\u8fd1\u8ddd\u79bb\u62cd\u6444\u4eba\u773c\uff0c\u9664\u4e86\u5177\u6709\u7c89\u8272\u8272\u8c03\uff0c\u8fd8\u8981\u7f29\u653e\u3002"} +{"id": "6002538", "video_name": "d7b4aa1c-ff7f-5c1f-b967-3cd6fc246757", "text": "\uff08\u66b4\u9732\u5728\u4e2d\u67a2\u795e\u7ecf\u7cfb\u7edf\u4e0b\u7684\u4f24\u53e3\uff09\uff1a"} +{"id": "0004721", "video_name": "0e0837c6-8532-5307-ab13-c8d7b5117778", "text": "\u8bb8\u591a\u5c0f\u732b\u5728\u9662\u5b50\u91cc\u73a9\u800d\u3002"} +{"id": "2006761", "video_name": "3065df72-730a-5f98-adff-4dfed904bc2f", "text": "\u770b\u5230\u53e4\u65af\u56e0\u9965\u997f\u800c\u98a4\u6296\uff0c\u5b89\u8fea\u6177\u6168\u5730\u5206\u4eab\u4e86\u4ed6\u7684\u98df\u7269\uff0c\u6559\u80b2\u4ed6\u51c6\u5907\u548c\u52aa\u529b\u5de5\u4f5c"} +{"id": "1005077", "video_name": "5da1cec8-2e7d-52d5-a7c9-3ae1deab21bc", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u7a7f\u7740\u7ea2\u8272\u6be1\u5b50\u5916\u5957\u3001\u9762\u5bb9\u9b54\u9b3c\u7684\u7537\u4eba\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u6770\u7f57\u59c6\u00b7\u535a\u65bd"} +{"id": "2005942", "video_name": "a6065919-e6da-5b17-816f-0d658d79b1f0", "text": "\u5730\u7403\u7684\u89c6\u89d2\u4ece\u8231\u5185\u770b\u3002"} +{"id": "0006216", "video_name": "28821b70-5032-5b10-ad94-b8bcf4400469", "text": "\u5b99\u65af\u6254\u51fa\u4e00\u9053\u95ea\u7535\u6240\u521b\u4f5c\u7684\u4e00\u5e45\u753b\u3002"} +{"id": "6003422", "video_name": "556f3943-92cb-5867-925f-86067a321306", "text": "\u4e00\u4f4d\u9ad8\u4e2d\u751f\u548c\u670b\u53cb\u4e00\u8d77\u8bfb\u4e66\u3002"} +{"id": "7003808", "video_name": "65b05bbf-d2a5-546a-aa8b-af431c9c7e83", "text": "\u897f\u5c14\u7ef4\u65af\u7279\u00b7\u53f2\u6cf0\u9f99\u5728\u5065\u8eab\u623f\u91cc\u8df3\u82ad\u857e\u821e\u3002"} +{"id": "7003609", "video_name": "b6145197-6eba-5ec7-90cb-e0d47b6aff2a", "text": "\u521b\u5efa\u4e00\u4e2a\u91d1\u8272\u548c\u95ea\u4eae\u7684\u80cc\u666f\u3002"} +{"id": "0006091", "video_name": "26715970-062c-54c2-9569-b271ce33773d", "text": "\u66f4\u6539\u76f8\u673a\u89d2\u5ea6\u5e76\u805a\u7126\u5728\u5c71\u7f8a\u8eab\u4e0a\u3002"} +{"id": "3003726", "video_name": "a484e51c-a3de-56fb-9747-204af7305d76", "text": "\u7f8e\u4e3d\u7684\u6a21\u7279\u4eec\u5728\u9732\u53f0\u4e0a\u6652\u5915\u9633\uff0c\u542c\u7740house\u97f3\u4e50\uff0c\u4eab\u53d7\u7740\u65e5\u843d\u65f6\u5206\uff0c\u559d\u7740\u9e21\u5c3e\u9152\u3002"} +{"id": "1003675", "video_name": "43bef295-fd19-52d0-a498-952886e86125", "text": "\u5728\u7b80\u7ea6\u4f18\u96c5\u7684\u5ba2\u5385\u4e2d\u521b\u9020\u610f\u5927\u5229\u5973\u6027\u5f62\u8c61\u3002"} +{"id": "2006062", "video_name": "6530d09b-0102-5d57-9311-411fb9a53dba", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5e03\u9c81\u585e\u5c14\u8857\u9053\u4e0a\u5954\u8dd1\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u6162\u52a8\u4f5c\uff0c8K\u3002"} +{"id": "3006260", "video_name": "5083bde8-a2a9-5b77-bc7f-c155cf3f8b14", "text": "\u5eb7\u666e\u8336\u5728\u592a\u7a7a\u7ad9\u4e0a\u541e\u566c\u4e86\u4e00\u540d\u5b87\u822a\u5458\u3002"} +{"id": "6004976", "video_name": "384377cd-b8e2-53c2-b105-3bf1c14c9e8d", "text": "\u62dc\u68ee\u7684\u5c71\u5730\u571f\u8457\uff0c\u6709\u96fe\u7684\u7535\u5f71\u3002\u4fe1\u606f\uff1a\u5fb7\u514b\u8428\u65af\u5dde\u3002"} +{"id": "0004684", "video_name": "0d49d6a2-2ce0-548b-bb16-fde69a6395ab", "text": "\u4ed6\u6709\u4e00\u4e9b\u8863\u670d\u6563\u843d\u5728\u5468\u56f4\u3002"} +{"id": "7002901", "video_name": "7c6d551d-fd4a-5be6-9758-386cb16cfdc4", "text": "\u8ba9\u5979\u5728\u753b\u753b\u65f6\u624b\u52a8\u8d77\u6765\uff0c\u9633\u5149\u4ece\u7a97\u6237\u7167\u8fdb\u6765\u3002"} +{"id": "6003103", "video_name": "9b660c50-d3b8-5f76-8362-f1f129efe497", "text": "\u5730\u94c1\u91cc\u5531\u6b4c\u7684\u6f02\u4eae\u5973\u5b69\uff0c\u98ce\u683c\u50cf\u5e15\u7279\u91cc\u514b\u00b7\u7eb3\u683c\u5c14\u3002"} +{"id": "7003669", "video_name": "5b0a0ffa-a9e5-56b4-9359-f2def24ab058", "text": "\u9732\u5bbf\u8005\u57281988\u5e74\u7684\u66b4\u98ce\u96e8\u4e2d\u5750\u5728\u8425\u706b\u5468\u56f4\u3002"} +{"id": "2005698", "video_name": "7da8bc09-b4c2-590e-92b7-389baa3c405c", "text": "\u4e00\u4e2a\u5df4\u52d2\u65af\u5766\u513f\u7ae5\u6b63\u5728\u4e3a\u4ed6\u4eec\u7684\u6743\u5229\u800c\u6218\u3002"} +{"id": "3004736", "video_name": "55275c5b-875e-5736-b83b-2198950c2cc7", "text": "\u76f4\u5347\u673a\u98de\u884c\u548c\u4eba\u4eec\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "6004932", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "\u540e\u679c\u5bf9\u4e8e\u96c6\u4f53\u8bb0\u5fc6\u548c\u8eab\u4efd\u7684\u5f71\u54cd\u3002"} +{"id": "2007190", "video_name": "d85a58c6-b80d-5a8b-93be-f54110a43ca9", "text": "\u5feb\u901f\u79fb\u52a8\u7684\u9ec4\u7eff\u8272\u4e91\u6735\uff0c\u6ce2\u666e\u827a\u672f"} +{"id": "7003848", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "\u5c55\u793a\u5e74\u8f7b\u7684\u5409\u4ed6\u624b\u5750\u5728\u5c71\u9876\u4e0a\uff0c\u4f18\u96c5\u5730\u98de\u8fc7\u5929\u7a7a\u7684\u9e1f\u513f\u52a8\u753b\uff0c\u4e3a\u8349\u548c\u82b1\u6dfb\u52a0\u5fae\u5999\u7684\u52a8\u753b"} +{"id": "2005400", "video_name": "54cb9854-0303-5d1e-8de1-f7184302e0a7", "text": "\u9ed1\u767d\u7ebf\u6761\u753b\uff0c\u8001\u864e\u5411\u4f60\u8df3\u8dc3\uff0c\u9e48\u9e55\u7ad9\u5728\u67f1\u5b50\u4e0a\uff0c\u5c55\u5f00\u7fc5\u8180\u3002"} +{"id": "0005908", "video_name": "231883e6-f99f-54f4-8398-e4424ae86349", "text": "ed deep into the ancient ruins, they discovered a mysterious device that could change the fate of the world.\nTranslated sentence: \u79d1\u5e7b\u5c0f\u8bf4\u4e2d\uff0c\u5728\u8352\u829c\u7684\u571f\u5730\u4e0a\uff0c\u4e00\u7fa4\u8eab\u7a7f\u5b87"} +{"id": "0006940", "video_name": "35961992-6f68-5ce1-9787-f891f36a078b", "text": "\u94a2\u7434\u5bb6\u5728\u5f55\u97f3\u4f1a\u4e0a\u6f14\u594f\u3002"} +{"id": "0003083", "video_name": "36b6b6bb-d60e-519e-a05c-b2ad782a43cb", "text": "\u516c\u5bd3\u7a97\u6237\u91cc\u4e00\u5e45\u767e\u53f6\u7a97\u56fe\u7247\uff0c\u503e\u659c\u7740\u906e\u6321\u9633\u5149\u3002"} +{"id": "3003877", "video_name": "d30011bf-f01c-53fb-88e7-dd079becd33c", "text": "\u56db\u5341\u5c81\u7684\u5973\u4eba\uff0c\u7ad9\u5728\u6e56\u8fb9\u7684\u4e00\u6240\u623f\u5b50\u524d\u3002"} +{"id": "0005108", "video_name": "14e8a690-504f-5199-a4d7-9d3f7733e48b", "text": "\u5973\u5b69\u5361\u901a\u4eba\u7269\uff0c\u9ec4\u8272\u5934\u53d1\uff0c\u82d7\u6761\u7684\u8eab\u6750\uff0c\u7eff\u8272\u7684\u773c\u775b\uff0c12\u5c81\uff0c\u80cc\u9762\u7167\u7247\u662f\u7eff\u8272\u7684\u3002"} +{"id": "3004392", "video_name": "350183fd-23ed-5dab-926c-5679a85e502c", "text": "\u6cb3\u5cb8\u4e0a\u6709\u4e24\u68f5\u6811\u3002"} +{"id": "2004196", "video_name": "4e2d39a8-7abd-5dc0-81e9-751d3daf11d4", "text": "\u670b\u53cb\u4eec\u5c06\u524d\u5f80\u6c99\u6f20\u65c5\u884c\uff0c\u6b23\u8d4f\u795e\u5947\u7684\u661f\u7a7a\u666f\u89c2\u3002"} +{"id": "0006969", "video_name": "35fd58f9-e0e1-55fb-bb3b-6ad92b4eed90", "text": "\u68ee\u6797\u4e2d\u7684\u8bf4\u8bdd\u6811\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "6002039", "video_name": "51023572-ff8b-5aaf-a0fc-e17f36160b7c", "text": "\u957f\u5f97\u50cf\u811a\u8dbe\u5934\u7684\u4eba\u5fae\u7b11\uff0c\u5448\u73b0\u300a\u6708\u7403\u4e4b\u65c5\u300b\u7684\u98ce\u683c\u3002"} +{"id": "6004778", "video_name": "6896b99f-346c-5e2a-b8b9-9520ed23023d", "text": "\u706b\u4e91\u5145\u6ee1\u5929\u7a7a\uff0c\u903c\u771f\uff0c\u989c\u8272\u8f83\u6d45\u3002"} +{"id": "3004078", "video_name": "b5dd167c-7453-58ae-9c83-e2aeb78539d5", "text": "\u68ee\u6797\u4e2d\u5fc3\u7684\u4e00\u6b21\u5de8\u5927\u7206\u70b8\u3002"} +{"id": "6003962", "video_name": "39263669-06b5-531c-b9ad-d5646687f127", "text": "\u670d\u52a1\u5668\u623f\u95f4\u91cc\u6709\u91ce\u751f\u52a8\u7269\u56db\u5904\u5954\u8dd1\uff0c\u914d\u8272\u4e30\u5bcc\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u6c1b\u56f4\u72ec\u7279\u7684\u706f\u5149\u3002"} +{"id": "2004778", "video_name": "c3f7e27b-631f-53af-93ff-97df0ebfacb5", "text": "\u89e3\u5256\u5b66\u4e0a\u51c6\u786e\u7684\u4eba\u7c7b\u5fc3\u810f\u7206\u70b8\u6210\u4e00\u573a\u949e\u7968\u96e8\uff0c\u4e0b\u843d\u5e76\u71c3\u8d77\u706b\u7130\uff0c\u5168\u666f\u5c55\u793a\uff0c\u9ed1\u8272\u80cc"} +{"id": "6004786", "video_name": "8fd6b352-d77e-5b98-8a01-6e07763d8898", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0c\u4e00\u4e2a\u5f3a\u58ee\u7684\u7537\u4eba\u7ad9\u5728\u5c71\u4e0a\uff0c\u624b\u6301\u5251\u3002"} +{"id": "2007689", "video_name": "9784cf01-581d-5466-80b8-6f3616c38cd5", "text": "\u5929\u5802\u5c9b\uff0c\u4e09\u68f5\u6447\u66f3\u7684\u68d5\u6988\u6811\uff0c\u4e00\u4e2a\u88ab\u56f0\u8005\u8bf7\u6c42\u6551\u63f4\u3002"} +{"id": "2004675", "video_name": "80642a30-efa5-51d5-a979-6e82df0ae447", "text": "\u52a8\u6001\u7684\u84dd\u8272\u5927\u7406\u77f3\u80cc\u666f\uff0c4k\uff0c\u903c\u771f\u3002"} +{"id": "6003100", "video_name": "53ce7a99-d8a5-57f1-a60d-3e699b4fff66", "text": "\u5723\u8bde\u8282\u7684\u591c\u665a\uff0c\u96ea\u8986\u76d6\u7684\u666f\u8c61\u3002\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u5728\u8fdc\u65b9\u77d7\u7acb\uff0c\u6c1b\u56f4\u6c89\u9759\u3002"} +{"id": "6004950", "video_name": "03e996c7-0f52-5abc-b644-45d60fa56f3a", "text": "\u5355\u8eab\u5973\u5b69\u5728\u65f6\u4ee3\u5e7f\u573a\u7a7f\u7740\u5c0f\u6cf3\u88e4\u8dd1\u6b65\u65f6\u88ab\u7a7f\u7740\u6cf3\u88e4\u7684\u7537\u5b50\u649e\u5230\u4e86\u3002"} +{"id": "3005675", "video_name": "3938ba0f-7246-5c13-a276-d5e5e00bb5cd", "text": "\u8001\u4eba\u5750\u5728\u68ee\u6797\u9732\u8425\u5730\u70b9\u706b\u3002\n\nSource sentence: The cat is sleeping on the chair in the living room. \n\n\u732b\u54aa\u5728\u5ba2\u5385\u7684\u6905\u5b50\u4e0a"} +{"id": "4004889", "video_name": "87d77590-0535-5b0b-a77e-b47c1580d3f1", "text": "\u4e00\u53ea\u732b\u5728\u53f0\u5317101\u5468\u56f4\u8d70\u52a8\u3002"} +{"id": "8002867", "video_name": "8f3857b3-c7f7-5bb7-bd31-690e10f1715e", "text": "\u5e8a\u5e95\u4e0b\u7684\u6076\u9b54\uff0c\u591c\u665a\uff0c\u5367\u5ba4\uff0c\u6bdb\u9aa8\u609a\u7136\uff0c\u666f\u6df1\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "7002794", "video_name": "0c5bec95-1934-50a1-b927-feecba14cd6d", "text": "\u4e00\u53ea\u770b\u8d77\u6765\u9648\u65e7\u7684\u624b\u8fd1\u8ddd\u79bb\u62cd\u6444\u7740\u8c31\u5199\u97f3\u4e50\u7684\u753b\u9762\u3002\u7136\u800c\uff0c\u8fd9\u4e9b\u4e50\u8c31\u4e0d\u662f\u7528\u58a8\u6c34\uff0c\u800c\u662f"} +{"id": "0006802", "video_name": "335625a7-2333-5203-ad9a-36d61315adb3", "text": "\u5916\u661f\u4eba\u548c\u6211\u4eec\u5bb6\u5ead\u4e00\u8d77\u5e86\u795d\u6392\u706f\u8282\u3002"} +{"id": "8002615", "video_name": "47af327f-e2ac-5366-8976-66933ad1b8e0", "text": "\u8ba9\u4e00\u4e2a\u4eba\u5403\u6c49\u5821\u3002"} +{"id": "1003963", "video_name": "492cb915-587f-53b6-8a09-1bf9bb8951c9", "text": "\u4e00\u4e2a\u82f1\u56fd\u5bcc\u7ec5\u58eb\u57281900\u5e74\u4ee3\u62cd\u6444\u7684\u81ea\u62cd\u7167\uff0c\u7167\u7247\u4e2d\u4ed6\u770b\u7740\u4e00\u4e2a\u65e5\u672c\u5973\u5b66\u751f\u3002"} +{"id": "0006791", "video_name": "332f642b-c2e2-50ba-8386-94d46ac803f7", "text": "\u4ece\u8857\u9053\u4e0a\u8fd1\u8ddd\u79bb\u89c2\u770b\u4e00\u5ea7\u8d85\u73b0\u4ee3\u5efa\u7b51\u3002\u4e00\u4f4d\u5973\u58eb\u4ece\u7a97\u6237\u671b\u5411\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\u3002"} +{"id": "0005504", "video_name": "1bf3ee2e-794f-5a76-ab93-fdcd326cf65a", "text": "\u5728\u57ce\u5821\u91cc\uff0c\u516c\u4e3b\u628a\u9879\u94fe\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u53ea\u5c0f\u4e4c\u9e26\u8eb2\u5728\u540a\u706f\u4e0a\u3002\u5168\u666f\uff0c\u5e73\u89c6\uff0c\u8679\u9713\u3002"} +{"id": "3006498", "video_name": "c26cfea1-6fe1-5a2e-a1a8-55eb1d1310aa", "text": "\u4e00\u4e2a\u5c0f\u5c0f\u7684\u9ed1\u6d1e\u51fa\u73b0\u5728\u9732\u5929\u7684\u5730\u9762\u4e0a\u3002"} +{"id": "4003840", "video_name": "fa71331b-46f5-5aa1-8d8a-c81f79b3b237", "text": "\u68b5\u9ad8\u52a8\u753b\uff1a\u4e00\u4e2a\u62ff\u7740\u624b\u63d0\u7bb1\u8d70\u8fdb\u9152\u5427\u7684\u7537\u4eba\u3002"} +{"id": "4003190", "video_name": "58087b6c-4e16-596f-b1af-77451f993e58", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u4e1c\u4eac\u8857\u666f\uff0c\u884c\u4eba\u7a7f\u68ad\uff0c90\u5e74\u4ee3\u52a8\u6f2b\u98ce\u683c\uff0c\u7eff\u8272\u3001\u73b0\u4ee3\u3001\u6e05\u6d01\u7684\u57ce\u5e02\u3002"} +{"id": "1006683", "video_name": "7a8b6c8a-8d12-5fe7-98bd-e5de57b17283", "text": "\u4e00\u4f4d\u76ae\u514b\u65af\u5973\u5b69\u89d2\u8272\uff0c\u975e\u5e38\u53ef\u7231\uff0c\u5927\u773c\u775b\uff0c\u5fae\u7b11\uff0c\u7a7f\u7740\u516c\u4e3b\u670d\u88c5\uff0c\u80cc\u666f\u4e2d\u6709\u706b\u5c71\u55b7\u53d1\u3002"} +{"id": "2005811", "video_name": "3a79a7ca-bba3-5d98-9bd7-23cd8f8aceba", "text": "\u7537\u5b69\u548c\u4ed6\u7684\u59d0\u59d0\u4e00\u8d77\u8d70\u8def\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005519", "video_name": "c9c83ca8-f143-5af1-ad23-ac7d1146e163", "text": "\u5403\u9ec4\u8272\u7684\u82f9\u679c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003225", "video_name": "0443747c-a913-546b-9333-7e0995687bf5", "text": "\u4f9b\u5e94\u7269\u8d44\u77ed\u7f3a\uff0c\u6751\u6c11\u4eec\u53d8\u5f97\u8d8a\u6765\u8d8a\u7126\u8651\u3002"} +{"id": "2007214", "video_name": "c64e20de-c71b-5fcb-99cd-30a1df2c4ee0", "text": "\u4e00\u4e2a\u4eba\u8df3\u4f1e\u8fdb\u5165\u4e00\u6761\u5de8\u5927\u7684\u7ea2\u86c7\u7684\u53e3\u4e2d\u3002"} +{"id": "7003154", "video_name": "3de1cf1a-0871-5ba6-8d8b-b1c69af75faa", "text": "\u5916\u661f\u4eba\u5728\u6c99\u6f20\u4e0a\u505a\u81ea\u7531\u8dd1\u9177\uff0c\u6708\u5149\u7167\u8000\u4e0b\u3002"} +{"id": "2006171", "video_name": "32c92602-d5b3-5cb9-a93d-c0976177d67a", "text": "\u65f6\u4ee3\u5e7f\u573a\u591c\u666f\uff0c\u7ebd\u7ea6\uff0c\u5c3c\u5eb7\uff0c8K\u3002"} +{"id": "7002232", "video_name": "f09245fd-3a47-5d06-8e2c-08cf9a9117c2", "text": "in a voice that was both alluring and intimidating.\n\n\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5c0f\u5df7\u4e2d\uff0c\u660f\u6697\u7684\u5149\u7ebf\u4e0b\uff0c\u9634\u5f71\u50cf\u65e0\u58f0\u7684\u540c\u8c0b\u822c\u821e\u52a8\u7740\uff0c"} +{"id": "0005645", "video_name": "1e92cd3a-9cf0-523a-af37-9ce2c263ca80", "text": "\u4e24\u7247\u900f\u660e\u7684\u94f6\u674f\u53f6\u5b50\u91cd\u53e0\u5728\u4e00\u8d77\uff0c\u534a\u90e8\u5206\u7684\u989c\u8272\u53d8\u6697\u3002"} +{"id": "6003060", "video_name": "ddcaf855-7766-5f12-ad4f-f8cf1af245e2", "text": "\u5e74\u8f7b\u7684\u5370\u5ea6\u7537\u5973\uff0c\u5728\u90a3\u77ac\u95f4\uff0c\u5feb\u4e50\u4e0d\u4ec5\u4ec5\u662f\u4e00\u79cd\u611f\u89c9\uff1b"} +{"id": "1004363", "video_name": "50a13029-a1fc-55d6-a15e-afd1cf9bf89d", "text": "\u7528\u6709\u529b\u7684\u97f3\u4e50\u5236\u4f5c\u7684\u62db\u8058\u673a\u6784\u89c6\u9891\u3002"} +{"id": "4003088", "video_name": "cca7c897-9ab1-59fd-87be-6a8277795217", "text": "\u6c64\u59c6\u548c\u6d1b\u57fa\u7684\u7535\u5f71\u9884\u544a\u7247"} +{"id": "1004913", "video_name": "5ae5da15-d280-5e69-97e0-a8875e018825", "text": "\u7f8e\u4e3d\u7684\u82b1\u56ed\u91cc\u5145\u6ee1\u4e86\u9c9c\u82b1\uff0c\u5fae\u98ce\u5439\u62c2\uff0c\u9e1f\u513f\u98de\u7fd4\u3002\u7559\u601d\uff08\u5b57\u4f53\uff1a\u65e0\u886c"} +{"id": "0004793", "video_name": "0f42c0c9-d394-5cc4-9d39-15b257b57c64", "text": "\u7528\u83ca\u82b1\uff0c\u7136\u540e\u653e\u4e00\u9762\u653e\u5927\u955c\u6765\u89c2\u770b\u8fd9\u6735\u82b1\u7684\u7ec6\u8282\uff0c\u5e94\u8be5\u662f\u903c\u771f\u7684\uff0c\u80fd\u591f\u653e\u5927\u548c\u7f29\u5c0f\u6bcf\u4e00\u4e2a\u82b1"} +{"id": "6004553", "video_name": "77471908-e623-5d89-a8e9-5602fc97fc73", "text": "\u5973\u5b69\u6210\u957f\u7684\u957f\u65f6\u95f4\u5ef6\u65f6\u6444\u5f71\u89c6\u9891\uff0c\u9ad8\u6e05\uff0c8K\u5206\u8fa8\u7387\uff0c\u7535\u5f71\u6444\u5f71\u98ce\u683c\u3002"} +{"id": "2007727", "video_name": "23db6c18-124e-51e2-9825-0c7168d12a5e", "text": "\u5784\u65ad\u8d27\u5e01\u5728\u684c\u5b50\u4e0a\u88ab\u753b\u51fa\uff0c\u53e6\u4e00\u4e2a\u4eba\u62ff\u8d70\u5e76\u82b1\u6389\u4e86\uff0c\u800c\u5784\u65ad\u8d27\u5e01\u7ee7\u7eed\u6d41\u5165\uff0c\u7136\u540e\u8fdb"} +{"id": "1005329", "video_name": "61ec7d5d-9e99-54c0-9f2f-c5a881b521b6", "text": "\u9ed1\u6697\uff0c\u4e16\u754c\u5c3d\u5934\u7684\u9ed1\u6697\u57ce\u5821\u3002"} +{"id": "2006144", "video_name": "6bf33763-42dd-5bc7-9457-2c7e10036235", "text": "\u7537\u4eba\u76d8\u817f\u5750\u5728\u4e00\u4e2a\u5bd2\u51b7\u7684\u5c71\u9876\u4e0a\u3002"} +{"id": "7003549", "video_name": "7a500378-5d8a-5f20-bd95-c2144cb98c05", "text": "\u8d85\u903c\u771f\u7684\u6c7d\u8f66\u5728\u591c\u665a\u65cb\u8f6c\u7740\u751c\u751c\u5708\u3002"} +{"id": "4004625", "video_name": "37db5960-d8b3-5cc5-bab9-9f0f782769a6", "text": "\u4f60\u89c9\u5f97\u8fd9\u4e9b\u53ef\u6016\u7684\u9057\u7269\u600e\u4e48\u6837\uff1f"} +{"id": "6002269", "video_name": "8b25b4db-2aa9-5707-a3e4-c7a3b56f290a", "text": "\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e0b\uff0c\u9713\u8679\u706f\u4e2d\u7684\u70df\u96fe\u3002"} +{"id": "7002485", "video_name": "0cc041d2-f395-533f-b5d8-7a2cd44c2032", "text": "SneakiVR \u5728 Rec Room Paintball \u4e2d\u72c2\u95ea\u8eb2\u907f\u5e76\u88ab\u5c04\u51fb\u300210 \u79d2\u7684 4K HD \u89c6\u9891\u3002"} +{"id": "1006637", "video_name": "79a2c758-a660-51a9-afe0-e2a1fd07f060", "text": "\u6d77\u5e95\u6e05\u6670\u53ef\u89c1\uff0c\u6444\u50cf\u5934\u4ece\u5de6\u81f3\u53f3\u79fb\u52a8\u3002"} +{"id": "1004480", "video_name": "5303f489-62a5-5d41-acab-65802e84b3d6", "text": "\u53e4\u4ee3\u7684\u667a\u6167\u5728\u5176\u4e0d\u5c48\u7684\u51dd\u89c6\u4e2d\u3002"} +{"id": "1003414", "video_name": "3f0b5664-9a38-5e62-831d-4d685735e2fa", "text": "\u4e00\u8f86\u5361\u901a\u9762\u5305\u8f66\u5728\u5361\u62c9\u7279\u6597\u4e89\u524d\uff0c\u5934\u4e0a\u63d2\u7740\u82b1\uff0c\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u3002"} +{"id": "7004328", "video_name": "de69ecd1-b8df-5274-8392-02371bdf9432", "text": "d in the hospital room, erupted over the misdiagnosis of his mother's illness.\n\n\u6124\u6012\u7684Rahul\u548c\u533b\u751f\u4e4b\u95f4\u5728\u533b\u9662\u75c5\u623f\u91cc\u7684\u5bf9\u6297\u7206\u53d1\u4e86"} +{"id": "1005418", "video_name": "6388a159-2ad4-5e4b-ad79-69d98e5b3e65", "text": "\u4e24\u4e2a\u60ca\u6050\u7684\u6e14\u6c11\u5728\u591c\u665a\u7684\u8239\u4e0a\u3002"} +{"id": "8001332", "video_name": "3532becd-d4ec-5f10-aa1b-32dba3e5f055", "text": "\u5916\u661f\u4eba\u559d\u9999\u69df\uff0c\u9ed1\u767d\uff0c16\u6beb\u7c73\u3002"} +{"id": "0003524", "video_name": "3efb889e-a7a8-54b3-98f0-3424170dfa45", "text": "\u4e00\u540d\u7537\u5b50\u5728\u9ed1\u591c\u4e2d\u8d70\u7740\u4e00\u6761\u88ab\u68ee\u6797\u6811\u6728\u5305\u56f4\u7684\u5c0f\u8def\uff0c\u8fd9\u662f\u4e00\u90e8\u795e\u79d8\u7684\u52a8\u753b\u3002\u4f60\u53ea\u80fd\u4ece\u4ed6\u7684"} +{"id": "6004840", "video_name": "dd74e44c-ddfd-5815-b892-d5f27a3520d1", "text": "\u7687\u5bb6\u4fc4\u4ea5\u4fc4\u516c\u6c11\u5411\u7687\u5bb6\u4fc4\u4ea5\u4fc4\u5baa\u6cd5\u5ba3\u8a93\u6548\u5fe0\u3002"} +{"id": "3006856", "video_name": "cd9119a1-5d33-554a-878a-baffb78d35b0", "text": "\u795d\u6751\u5e84\u5e78\u798f\u548c\u7e41\u8363\u3002"} +{"id": "0006407", "video_name": "2be4499f-498d-528d-8528-de9d8e038185", "text": "\u4e00\u53ea\u96c4\u58ee\u7684\u96c4\u72ee\u5728\u96e8\u4e2d\u7ad9\u5728\u60ac\u5d16\u9876\u7aef\u3002"} +{"id": "6003295", "video_name": "2be5bcfb-1715-552a-91ae-4cd3ec591cc3", "text": "\u8d5b\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u8d70\u8def\u65f6\uff0c\u5728\u571f\u58e4\u91cc\u53d1\u73b0\u4e86\u4e00\u4e2a\u88ab\u57cb\u85cf\u7684\u7269\u4f53\u3002"} +{"id": "7004513", "video_name": "8e6a65e7-4273-5c31-8878-6be2197de71e", "text": "\u4e00\u53ea\u5de5\u5177\u888b\u5728\u7f8e\u56fd\u7684\u8def\u4e0a\u8bd5\u56fe\u642d\u4fbf\u8f66\u3002"} +{"id": "6002495", "video_name": "0f8a9718-9e6e-5c3e-9d91-9baa4813e749", "text": "\u4eba\u7c7b\u8eab\u4f53\u5e26\u874e\u5c3e\uff0c\u7ad9\u5728\u60ac\u5d16\u8fb9\u7f18\uff0c\u624b\u6301\u5251\u548c\u76fe\u724c\uff0c\u80cc\u666f\u662f\u79d1\u6280\u98ce\u683c\uff0c\u9ad8\u8d28\u91cf\uff0c4"} +{"id": "8003465", "video_name": "77d8c930-d5de-5435-bb78-70395b834765", "text": "\u5b64\u5973\u51dd\u89c6\u7740\u7f8e\u4e3d\u7684\u73af\u5883\uff0c\u773c\u4e2d\u900f\u9732\u51fa\u4e00\u79cd\u5e73\u548c\u611f\u3002\u5979\u4e0e\u7237\u7237\u4e4b\u95f4\u7684\u7ebd\u5e26\u88ab\u5de7"} +{"id": "3003827", "video_name": "8395b6b3-c445-5833-88ec-41233f8dafbc", "text": "\u52a8\u753b\u63cf\u8ff0\u7a0b\u5e8f\u5458\u5728\u7535\u8111\u4e0a\u8fd8\u6709\u5f88\u591a\u5de5\u4f5c\u8981\u5b8c\u6210\uff0c\u8ba9\u4eba\u611f\u5230\u7126\u8651\u548c\u538b\u529b\u3002"} +{"id": "1003597", "video_name": "423ddffd-8677-513f-95ec-d0ca49c351f1", "text": "\u66fe\u51e0\u4f55\u65f6\uff0c\u5728\u5e7b\u60f3\u6751\u5e84Whimsyville\u91cc\u4f4f\u7740\u4e00\u53ea\u597d\u5947\u7684\u5c0f\u5154\u5b50\uff0c\u540d\u53ebFluff\u3002"} +{"id": "0006364", "video_name": "2b448694-2a55-5096-a5de-ba5a74f2141c", "text": "X\u5148\u751f\u6162\u6162\u5b66\u4f1a\u4f7f\u7528\u8fd9\u4e2a\u8bbe\u5907\u5e76\u5f00\u59cb\u63a2\u7d22\u793e\u4ea4\u5a92\u4f53\u3002\u4ed6\u521b\u5efa\u4e86\u4e2a\u4eba\u8d44\u6599\u5e76\u5f00\u59cb\u6c89\u6d78\u5728Facebook\u3001Instagram\u548c\u5176\u4ed6\u5e73\u53f0\u4e2d"} +{"id": "3004951", "video_name": "526e141e-a692-5972-aae3-faccd9f25c6a", "text": "\u4eba\u5f62\u5316\u7684\u6d77\u725b\u89d2\u8272\u5728\u4e00\u4e2a\u9b54\u6cd5\u95e8\u524d\u8bf1\u60d1\u5730\u6446\u59ff\u52bf\u3002"} +{"id": "7004411", "video_name": "4abe530b-5347-5f9c-9093-4387890808cb", "text": "\u9aa1\u5b50\u8dea\u5728\u796d\u575b\u4e0a\u3002\u7535\u5f71\u822c\u76848K\u753b\u9762\uff0c\u6df1\u8272\u80cc\u666f\uff0c\u81ea\u7136\u9633\u5149\u3002"} +{"id": "4002273", "video_name": "b7406413-bbd6-5b90-ba31-2fb15f32a121", "text": "\u68ee\u6797\u4e2d\u7684\u5f62\u8c61\u5deb\u5e08\uff0c\u62c9\u5c14\u592b\u00b7\u5df4\u514b\u5e0c\u98ce\u683c\u7684\u52a8\u753b\u3002"} +{"id": "8001481", "video_name": "5dbee1ba-0ea3-50ec-b7c3-333ae6245516", "text": "\u5916\u592a\u7a7a\u89c6\u89d2\uff0c\u7167\u7247\u903c\u771f\uff0c\u661f\u661f\u95ea\u70c1\uff0c16:9\u3002"} +{"id": "0004566", "video_name": "0b4c6ae0-518c-5cf5-83ff-2d0fbe103f3f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4ed3\u5e93\u91cc\u8df3\u5230\u4e00\u4e2a\u8d27\u76d8\u7684\u9876\u90e8"} +{"id": "6003930", "video_name": "29816e9c-af54-524c-8428-11d9e3d71122", "text": "\u4e00\u652f\u7259\u5237\u5728\u6708\u5149\u4e0b\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "7003611", "video_name": "f225b0a1-074d-5995-942d-7bb0af81f22e", "text": "\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u8863\u670d\uff0c\u624b\u6301\u957f\u5251\uff0c\u5728\u7af9\u6797\u5c0f\u5f84\u4e0a\u884c\u8d70\u7684\u53e4\u4ee3\u4e2d\u56fd\u5973\u5b50\u3002"} +{"id": "2007691", "video_name": "a6187d6e-c7d4-59e0-9699-498faa290dbd", "text": "\u96ea\u4e2d\u58eb\u5175\uff0c\u9ad8\u7ec6\u8282\uff0c\u903c\u771f\u3002"} +{"id": "8001374", "video_name": "fd9ea5e9-af9c-54c5-89e9-4a1930deecbe", "text": "\u5728\u4e1b\u6797\u91cc\uff0c3\u4e2a\u7537\u5b69\u548c2\u4e2a\u5973\u5b69\u624b\u7275\u7740\u624b\u524d\u884c\u3002\u5728\u65c5\u9014\u4e2d\uff0c\u4ed6\u4eec\u5b66\u5230\u4e86\u6709\u5173\u53cb\u8c0a\u3001\u97e7\u6027\u548c"} +{"id": "8002341", "video_name": "b376652c-6172-52a9-a77a-97e7ef010783", "text": "\u81ea\u7136\u80cc\u666f\u4e0b\u6709\u4e00\u4f4d\u5973\u58eb\u9759\u9759\u5730\u8bfb\u4e66\u7684\u753b\u9762\uff0c\u5b81\u9759\u7965\u548c\u3002"} +{"id": "1006763", "video_name": "7bca59e0-35a9-5f74-a389-f3de60aa00c6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u4f5c\u5bb6\u6b63\u5728\u5199\u4f5c\u5e76\u900f\u8fc7\u7a97\u6237\u671b\u7740\u5916\u9762\u3002"} +{"id": "7002035", "video_name": "08759049-c6a3-5421-9f50-e2acbfa61b46", "text": "\u91cc\u4e00\u4e2a\u5927\u7206\u7c73\u82b1\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u5403\uff0c\u4eff\u53e4\u7535\u5f71\u9662\u3002"} +{"id": "3004500", "video_name": "08aabdac-6f93-5009-9087-c92105e4e04e", "text": "\u5728\u4e00\u7247\u8349\u5730\u4e0a\uff0c\u4e00\u53ea\u5c0f\u5154\u5b50\u88ab\u4e00\u53ea\u5927\u574f\u72fc\u8ffd\u8d76\u3002"} +{"id": "4002841", "video_name": "d580a381-64a4-5405-9bb3-061fe0417eed", "text": "\u4f7f\u7528\u72d9\u51fb\u6b65\u67aa\u7684\u4f7f\u547d\u53ec\u5524MW3\u64cd\u4f5c\u5458\u79fb\u52a8\u3002"} +{"id": "4003145", "video_name": "95e6755a-32bb-5b0f-b9d2-c64eb3b7e605", "text": "\u7ebd\u7ea6\u7684\u5929\u9645\u7ebf\u5728\u6e05\u6668\u7684\u9633\u5149\u4e0b\u5341\u5206\u6e05\u6670\u3002"} +{"id": "4002871", "video_name": "fffe52f4-671b-5932-9f27-c921535824d8", "text": "\u7ea2\u8272\u7684\u5c0f\u72d7\u8ffd\u7740\u4e00\u53ea\u7ea2\u732b\uff0c\u5728\u6c34\u6c60\u4e2d\u5954\u8dd1\u3002 \n\nSource sentence: The sun is shining brightly in the blue sky. \n\u592a\u9633\u5728"} +{"id": "7003125", "video_name": "91f78ad0-52a8-5baf-a642-527635a29fc3", "text": "\u7ae0\u9c7c\u5144\u5f1f\u5bf9\u94c1\u4eba\u7ec6\u8282 3D 4K"} +{"id": "2004279", "video_name": "9c40873e-59d8-503f-b338-d2710d63d7e9", "text": "\u4e00\u573a\u7ea2\u767d\u53cc\u9f99\u5bf9\u5cd9\u7684\u53f2\u8bd7\u7ea7\u7535\u5f71\u573a\u666f\uff0c4k\u9ad8\u6e05\uff0c\u903c\u771f\u611f\u5341\u8db3\u3002"} +{"id": "6003342", "video_name": "fc3cd7b0-68d7-56b1-9aac-837725963a11", "text": "\u4e00\u4f4d\u5b98\u5458\u7528\u6124\u6012\u7684\u8bed\u6c14\u6253\u7535\u8bdd\u7ed9\u8bdd\u52a1\u5458\u3002"} +{"id": "0004069", "video_name": "02ba351e-103d-59ab-ae8b-04a1c7cf8183", "text": "\u9003\u79bb\u706b\u707e\u5efa\u7b51\u7684\u7537\u4eba"} +{"id": "1005847", "video_name": "6b713134-6173-524c-854d-6202e7950e66", "text": "\u4e00\u53ea\u9e1f\u4e0d\u5c0f\u5fc3\u88ab\u7f51\u7f69\u4f4f\uff0c\u730e\u4eba\u6349\u4f4f\u4e86\u5b83\u3002"} +{"id": "3006865", "video_name": "60b4105a-9dd1-54f0-bc94-c0cc2510f55f", "text": "\u5728\u4e1b\u6797\u4e2d\u7684\u5370\u5ea6\u6751\u5e84\u4e0e\u5c45\u6c11\u521b\u9020\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "3005591", "video_name": "5ab64008-2ce6-5e47-80dc-4dbf4867eff2", "text": "\"\u9b54\u6cd5\u98ce\u66b4\u4e2d\u7684\u5de8\u578b\u795e\u8bdd\u751f\u7269\u201c\u4f20\u5947\u51e4\u51f0\uff1a\u521b\u9020\u4e00\u4e2a\u96c4\u4f1f\u800c\u5f3a\u5927\u7684\u706b\u9e1f\u4ece\u7070"} +{"id": "0004180", "video_name": "04a2eb9b-2787-542f-bfe2-6050c556cf31", "text": "\u5370\u5ea6\u98ce\u683c\u7684\u5c0f\u9ea6\u997c\u5e72\uff0c4K\u8d28\u91cf\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "3006756", "video_name": "69d04ca4-a171-59e1-8669-b06dea55771f", "text": "\u5236\u4f5c\u4e00\u4efd\u52a8\u753b\uff0c\u4ee5\u8bf4\u660e\u5211\u6cd5\u4e2d\u7d2f\u72af\u7684\u6982\u5ff5\u3002"} +{"id": "1003624", "video_name": "42c44986-2147-5a91-878c-fed0f67ba110", "text": "\u8001\u5e74\u7537\u5973\u9a91\u4e09\u8f6e\u8f66\uff0c\u5e74\u8f7b\u7537\u5b69\u548c\u5973\u5b69\u770b\u7740\u7b11\u3002"} +{"id": "0005635", "video_name": "1e7b927b-1a9b-59b8-a6b4-2c13c4020f06", "text": "\u4e00\u4e2a\u90aa\u6076\u7684\u529b\u91cf\u5750\u5728\u65e7\u6c34\u6ce5\u5899\u5185\u7684\u95ea\u4eae\u95e8\u6237\u91cc\u3002"} +{"id": "1005729", "video_name": "695e727e-fb33-53ce-a866-1d05633c45bc", "text": "\u5feb\u4e50\u7684\u5916\u661f\u4eba\u6234\u7740\u8033\u673a\u5728DJ\u6df7\u97f3\u4e2d\u73a9\u800d\u3002"} +{"id": "6003080", "video_name": "720528b0-05da-5de8-be93-95d522415824", "text": "\u4e00\u4e2a\u5efa\u7b51\u5de5\u4eba\u5bf9\u4e00\u4e2a\u7b80\u5355\u7684\u624b\u5957\u611f\u5230\u56f0\u60d1\u3002\u8fdc\u5904\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u9713\u8679\u57ce\u5e02\u95ea\u8000\u7740\u591c\u8272\uff0c\u4ee5"} +{"id": "4002317", "video_name": "f72cfbea-0996-5714-bdf3-27ed1bcfeb08", "text": "\u5361\u5c14\u00b7\u9a6c\u514b\u601d\u4f5c\u4e3a\u4e00\u68f5\u5723\u8bde\u6811\u3002 \n\nSource sentence: The world is a book and those who do not travel read only one page. \n\n\u4e16\u754c\u5c31\u50cf\u4e00\u672c\u4e66"} +{"id": "6004477", "video_name": "e33fb36c-2a04-513f-be25-379b59f838e5", "text": "MamaMatcha \u7701\u9547\uff0c\u89c6\u9891\u6f2b\u6b65"} +{"id": "8003962", "video_name": "29fb04d0-39d1-52c5-a62a-2e2865b398ae", "text": "\u6027\u611f\u673a\u5668\u4eba\u5728\u590d\u53e4\u6e38\u620f\u5385\u8df3\u821e\uff0c8K\u3002"} +{"id": "2003263", "video_name": "89b4bb4d-019b-51fc-90a1-11bdcce926f9", "text": "\u623f\u5b50\u91cc\u9762\u662f\u4e00\u6761\u660f\u6697\u7684\u8d70\u5eca\u548c\u623f\u95f4\u7684\u8ff7\u5bab\uff0c\u6bcf\u4e2a\u623f\u95f4\u90fd\u6bd4\u524d\u4e00\u4e2a\u66f4\u795e\u79d8\u3002\u8428\u62c9\u89c9\u5f97\u81ea"} +{"id": "2004608", "video_name": "34bec472-ffd5-5926-8896-a7d43b52c9ad", "text": "10\u79d2\u89c6\u9891\u5c55\u793a\u4e00\u53ea\u8774\u8776\u4ece\u73ab\u7470\u82b1\u4e0a\u98de\u8d70\uff0c\u73ab\u7470\u82b1\u4e0a\u8986\u76d6\u7740\u9732\u73e0\uff0c\u8774"} +{"id": "1003375", "video_name": "3e3ce154-b998-5921-84ce-f34e5c76adec", "text": "\u6444\u50cf\u673a\u4ece\u53f3\u5411\u5de6\u79fb\u52a8\uff0c\u6293\u62cd\u5230\u62ab\u5934\u58eb\u6a2a\u7a7f\u827e\u6bd4\u8def\u3002"} +{"id": "8003743", "video_name": "350c0ae0-b7b6-567c-8544-e10a7dc666f5", "text": "\u7684\u7ed3\u5408\uff0c\u5c06\u300a\u88ab\u9057\u5fd8\u7684\u738b\u56fd\u300b\u4e2d\u7684\u4e24\u4e2a\u8111\u566c\u602a\u5728\u684c\u5b50\u4e0a\u4e0b\u68cb\u7684\u573a\u666f\u6829\u6829\u5982\u751f\u5730\u5448\u73b0"} +{"id": "8002215", "video_name": "80d734b8-2289-5825-908e-0e6b907ea8e7", "text": "\u5c0f\u5b9d\u5b9d\u8df3\u8df3\uff0c\u5411\u5988\u5988\u4f38\u51fa\u80f3\u818a\u3002"} +{"id": "1005366", "video_name": "62a10ee2-2d18-5393-b039-5de1f272529a", "text": "\u5e9f\u5f03\u7684\u57ce\u5e02\uff0c\u67af\u6b7b\u7684\u690d\u7269\uff0c\u9ad8\u54c1\u8d28\uff0c\u9510\u5229\u7684\u7ec6\u8282\uff0c\u7535\u5f71\u822c\u7684\u5149\u7ebf"} +{"id": "2003955", "video_name": "780e2792-32e5-5fe7-bbf5-8eab9f63bcac", "text": "\u65b0\u90ce\u548c\u65b0\u5a18\u4ee5\u5361\u901a\u98ce\u683c\u7ed3\u5a5a\u3002"} +{"id": "7002074", "video_name": "7029b618-e8cf-5f1b-ac3e-320526ff1ce4", "text": "company purchased a large portion of the land in this area.\n\n\u6839\u636e\u6536\u5230\u7684\u4fe1\u606f\uff0c\u51e0\u5e74\u524d\u4e00\u5bb6\u8377\u5170\u516c\u53f8\u8d2d\u4e70\u4e86\u8fd9\u4e2a\u5730\u533a\u5927\u90e8\u5206\u7684\u571f\u5730\u3002"} +{"id": "3004118", "video_name": "f65eb984-4aaf-5992-be8f-8045453a024b", "text": "\u8fd9\u4e2a\u5c0f\u58f6\u662f\u7a7a\u7684\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u6c60\u5858\u6c34\uff0c\u6709\u4e9b\u6c14\u6ce1\u5192\u51fa\u6765\u3002"} +{"id": "1003612", "video_name": "42917d82-e93a-5b74-95e2-09154ad85325", "text": "\u51a5\u60f3\u89c6\u9891\u9ec4\u91d1\u6ce2\uff0c\u9ec4\u91d1\u94b1\u5e01\uff0c\u6e85\u6cfc\uff0c\u5728\u5b89\u5168\u50a8\u84c4\u5ba4\u5185\u3002"} +{"id": "6004770", "video_name": "6afe1838-c535-520e-b739-2252fc5f458c", "text": "\u6162\u52a8\u4f5c\u7684\u7070\u5c18\u7c92\u5b50\u6f02\u6d6e\u5728\u4e00\u675f\u9633\u5149\u4e2d\u3002"} +{"id": "1003553", "video_name": "418b4cb8-388a-56cd-886c-eeb26dabc2b3", "text": "\u4fdd\u65f6\u6377\u5728\u6c99\u6f20\u4e2d\u9ad8\u901f\u884c\u9a7610\u79d2\u949f\uff0c\u9a76\u5411\u65e5\u843d\u3002"} +{"id": "2003031", "video_name": "eb0a1e5f-6bb3-59bc-a120-4016fe7fbc30", "text": "\u5b89\u5fb7\u9c81\u00b7\u6258\u5c14\u5df4\u662fGab\u7684CEO\uff0c\u5728\u5367\u5ba4\u91cc\uff0c\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u6444\u50cf\u5934\u7f29\u653e\u5e76\u73af\u987e\u56db\u5468\u3002"} +{"id": "0006683", "video_name": "30fbd299-77f7-5cc0-bb91-cac8a73a7daa", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u77ed\u8896\u548c\u9ed1\u8272\u4e03\u5206\u88e4\u7684\u5973\u5b69\u3002"} +{"id": "6003233", "video_name": "c3dc44a6-3c0c-558e-973b-e15e0a86814f", "text": "\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\uff0c\u662f\u4e00\u5f20\u5c71\u7f8a\u5728\u7530\u91ce\u4e2d\u4fef\u77b0\u7684\u56fe\u7247\u3002"} +{"id": "2007977", "video_name": "ca7c6c7d-d1b8-5965-83ac-685ad181da7d", "text": "\u5fae\u7b11\u5feb\u4e50\u5730\u73a9\u800d\u3002"} +{"id": "2005579", "video_name": "58f3c016-0f01-52d6-87df-a8b3c6393663", "text": "\u4e00\u7247\u96ea\u8986\u76d6\u7684\u5d0e\u5c96\u5730\u5f62\uff0c\u4e00\u4e2a\u795e\u79d8\u7684\u9ad8\u4e8e\u4eba\u7c7b\u5c3a\u5bf8\u7684\u9e1f\u7c7b\u751f\u7269\uff0c\u6709\u7740\u5c16\u9510\u7684\u5599\u548c"} +{"id": "3005959", "video_name": "35352009-1611-55fe-8f6d-ebdd94e58500", "text": "\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u70ed\u5e26\u4e1b\u6797\u666f\u8272\u3002\u6444\u50cf\u673a\u7a7f\u8fc7\u8302\u5bc6\u7684\u6811\u53f6\uff0c\u63ed\u793a\u4e86\u5de8\u5927\u7684\u6811"} +{"id": "2003124", "video_name": "644a8aa5-7eb3-5fc9-b09e-67bd2699da48", "text": "\u65e0\u8bba\u8fd9\u573a\u201c\u6218\u4e89\u201d\u591a\u4e48\u6ed1\u7a3d\u53ef\u7b11\uff0c\u5f88\u591a\u4eba\u53d8\u5f97\u65e0\u5bb6\u53ef\u5f52\uff0c\u6323\u624e\u6c42\u751f\u3002\u5f88\u591a\u9e38\u9e4b\u4e5f\u5931\u53bb"} +{"id": "8003285", "video_name": "04602fd0-d0f3-5606-a7ed-ae7231be2e00", "text": "\u68ee\u6797\u91cc\u7684\u9e1f\u548c\u52a8\u7269\u770b\u8d77\u6765\u5f88\u5feb\u4e50\u3002"} +{"id": "4002184", "video_name": "27ae8ba1-c198-5256-badd-fdc6525ba831", "text": "\u9ea6\u683c\u96f7\u6208\u5148\u751f\u5728\u4ed6\u5145\u6ee1\u82b1\u6735\u3001\u8774\u8776\u548c\u852c\u83dc\u7684\u82b1\u56ed\u91cc\u9664\u8349\u3002"} +{"id": "0003328", "video_name": "3bacb709-05af-5b3c-b392-d43b85c917b3", "text": "\u7528\u903c\u771f\u7684\u65b9\u6cd5\u628a\u4e00\u676f\u6c34\u7684\u56fe\u50cf\u53d8\u6210\u89c6\u9891\uff0c\u540c\u65f6\u52a0\u5165\u96ea\u548c\u98de\u7fd4\u7684\u91d1\u8272\u9e1f\uff0c\u518d\u52a0\u4e0a\u4e00\u53ea\u8df3\u8dc3\u5728\u676f\u5b50"} +{"id": "3005844", "video_name": "dce15284-fb1d-5e47-b2d0-6186b5dc29e6", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u4f18\u96c5\u5730\u8d70\u5728\u5730\u7403\u4e0a\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "0004685", "video_name": "0d4af439-ba8d-5da2-b745-dcac65effcdf", "text": "\u8001\u864e\u5b8c\u5168\u4ee5\u8ba1\u7b97\u673a\u7cfb\u7edf\u5355\u5143\u7684\u5f62\u5f0f\u5b58\u5728\u3002"} +{"id": "1003168", "video_name": "3a5db8af-2db7-5273-a47f-3af8a6483d7a", "text": "\u84dd\u9501\u4e2d\u7684\u4e00\u4e2a\u89d2\u8272\u5c04\u95e8\u4e86\u3002"} +{"id": "3003983", "video_name": "0b9050da-361d-5bce-a96e-f7ca5c3a8116", "text": "\u5728\u7530\u5730\u52b3\u52a8\u7684\u5de5\u4eba\u542c\u5230\u558a\u53eb\u58f0\uff0c\u4fbf\u505c\u4e0b\u624b\u4e2d\u7684\u5de5\u4f5c\u503e\u542c\u3002"} +{"id": "5001955", "video_name": "37e11f7c-6f32-55f4-8d1a-29b35a88bf39", "text": "\u572820\u4e16\u7eaa60\u5e74\u4ee3\uff0c\u7f8e\u56fd\u56fd\u5bb6\u822a\u7a7a\u822a\u5929\u5c40\u542f\u52a8\u4e86\u963f\u6ce2\u7f57\u767b\u6708\u8ba1\u5212\uff0c\u65e8\u5728\u5b9e\u73b0\u5c06\u4eba\u7c7b\u9001\u4e0a\u6708\u7403\u7684\u76ee"} +{"id": "3005961", "video_name": "224a940f-30bf-570f-b681-03bbc458c425", "text": "\u5de5\u4eba\u4eec\u5728\u804a\u5929\uff0c\u94bb\u4e95\u5e73\u53f0\uff0c\u653e\u5927\u5230\u8138\u90e8\u3002"} +{"id": "6003897", "video_name": "fc4f7cf6-3bc1-59bc-9978-dd5f0bb78938", "text": "\u6709\u4e00\u4e2a\u6e05\u723d\u7684\u79cb\u5929\u65e9\u6668\uff0c\u5f53\u6811\u53f6\u53d8\u6210\u91d1\u8272\uff0c\u7a7a\u6c14\u53d8\u5f97\u66f4\u51c9\u723d\u65f6\uff0c\u4ea8\u5229\u53d1\u73b0\u81ea\u5df1\u7ad9\u5728\u4e00\u4e2a\u771f\u6b63\u7684"} +{"id": "1006139", "video_name": "707d2ba4-a157-5958-81db-190dae04baea", "text": "\u4ed6\u4eec\u4e0d\u53ef\u5206\u5272\u7684\u8054\u7cfb\u7684\u77ac\u95f4\u3002"} +{"id": "0004485", "video_name": "09c6788c-9da2-5f54-beba-1001c21af97b", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u6709\u5c0f\u6a31\u82b1\u6811\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003601", "video_name": "1c019fc2-66f6-5e51-9ed9-94429635a85e", "text": "\u5973\u4e3b\u4eba\u6b63\u5728\u53a8\u623f\u5207\u83dc\uff1b\u6c34\u7ba1\u8fde\u63a5\u7740\u6c34\uff0c\u82f9\u679c\u548c\u5176\u4ed6\u4e1c\u897f\u6d78\u6ce1\u5728\u6c34\u4e2d\uff1b\u9505\u5f88\u70ed\u6c14\u817e\u817e"} +{"id": "8002361", "video_name": "40a8917d-863c-580f-9153-bdadf19d9cfd", "text": "\u9f99\u5b9d\u5b9d\u4e0d\u505c\u5730\u70b9\u5934\uff0c\u8bf4\u4ed6\u518d\u4e5f\u4e0d\u6562\u4e86\u3002"} +{"id": "1005886", "video_name": "6c43cb21-4096-5076-9c13-088aa242585e", "text": "\u4e00\u4f4d\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\u89c6\u9891\u7f16\u8f91\u6b63\u5728\u7f16\u8f91\u89c6\u9891\u3002"} +{"id": "3006937", "video_name": "5750f82c-a042-58ec-99e4-58c992ee925b", "text": "\u52a0\u4e00\u676f\u70ed\u5496\u5561\u3002"} +{"id": "0004712", "video_name": "0dc909ad-2cea-5e6e-bc1e-ed79e25f695d", "text": "\u5728\u5723\u7ecf\u65f6\u4ee3\uff0c\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4e2d\u4e1c\u65c5\u884c\u3002"} +{"id": "4004862", "video_name": "3561015d-7edc-5917-acc9-7760fd9cb2e6", "text": "\u4e00\u53ea\u5438\u8840\u9b3c\u5728\u4e1b\u6797\u4e2d\u7528\u70df\u706b\u8ffd\u730e\u4e00\u53ea\u72d0\u72f8\u3002"} +{"id": "1003977", "video_name": "49712dec-1155-5d64-9874-0f9f5745ff79", "text": "\u66fc\u5f7b\u65af\u7279\u7684\u8d85\u7ea7\u8dd1\u8f66\u8d5b\u8f66\u6d3b\u52a8"} +{"id": "4002094", "video_name": "c3df6501-fe0b-5dc6-95ff-b56e41ceb9c9", "text": "\u521b\u5efa\u4e00\u4e2a\u9ec4\u8272\u80cc\u666f\u7684\u56fe\u50cf\uff0c\u5728\u4e0a\u9762\u653e\u7f6e\u4e00\u4e2a\u77ad\u671b\u5854\uff0c\u5e76\u5c06\u5176\u547d\u540d\u4e3a\u201c\u77ad\u671b\u5854\u201d\u3002"} +{"id": "4002822", "video_name": "faafa058-f04f-52a0-bf6f-f4c868a239bf", "text": "\u4e00\u4e2a\u9ed1\u8272\u5531\u7247\u5728\u7070\u8272\u5531\u7247\u673a\u4e0a\u65cb\u8f6c\u3002"} +{"id": "3005247", "video_name": "1637b1dd-895e-515d-908d-e47de5f91b85", "text": "\u4e00\u7fa4\u8001\u864e\u5728\u81ea\u7136\u68ee\u6797\u4e2d\uff0c\u8d85\u8be6\u7ec6\uff0c\u8d85\u6e05\u6670\u3002"} +{"id": "1006938", "video_name": "7ef444ee-21db-587a-9ea6-2b3ed8492576", "text": "Ruby Rose \u5728 Castlevania \u4e2d\u7684 RWBY \u961f\u4f0d\u4e2d\u3002"} +{"id": "7003332", "video_name": "7d5cdfac-b259-5be1-8d3c-752f558edfd1", "text": "\u5973\u6027\u6ce2\u591a\u9ece\u5404\u5e74\u5e7c\u7684\u5b69\u5b50\u4f5c\u4e3a\u6218\u58eb\u82f1\u96c4\u3002"} +{"id": "0003452", "video_name": "3dd033de-663a-58db-90ae-7c095fd092a3", "text": "\u95ea\u7535\u51fb\u4e2d\u4e86\u904d\u5e03\u5728\u8d85\u73b0\u5b9e\u98ce\u66b4\u4e2d\u7684\u4e91\u5c42\uff0c\u540c\u65f6\u4ece\u8857\u9053\u653e\u5927\u5230\u57ce\u5e02\u7a7a\u4e2d\u89c6\u89d2\uff0c\u5c55\u73b0\u4e86\u98ce\u66b4\u7684\u5168\u8c8c"} +{"id": "2005302", "video_name": "2c057c25-4fcc-5c1c-b4b2-635a12acbf70", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u89c6\u9891\u4e2d\u6709\u4e00\u675f\u5149\u4ece\u5c71\u9876\u5c04\u51fa\uff0c\u7136\u540e\u4e00\u53ea\u5b54\u96c0\u4ece\u5176\u4e2d\u98de\u51fa\u3002"} +{"id": "6002880", "video_name": "a89d388a-f6ba-540a-8a26-5bbab75abb0a", "text": "Translated sentence: \u624b\u5728\u9ad8\u5904\u7684\u6811\u6728\u4e0a\u6f0f\u6c34\u3002"} +{"id": "7002308", "video_name": "31a7d407-2c8e-50b9-bf47-827926df1a32", "text": "\u68ee\u6797\u91cc\u795e\u79d8\u800c\u795e\u5947\u7684\u591c\u665a\uff0c\u73b0\u5b9e\u4e0e\u5e7b\u60f3\u4e4b\u95f4\u7684\u754c\u9650\u6a21\u7cca\u4e0d\u6e05\uff0c\u591c\u665a\u7684\u79d8\u5bc6\u53d8\u5f97\u751f"} +{"id": "7003860", "video_name": "c60e72df-550b-5964-b996-6b71d13db6fa", "text": "\u4e09\u4e2a\u6216\u66f4\u591a\u5973\u5b69\u5728\u706f\u5149\u7480\u74a8\u7684\u9152\u5427\u91cc\u62bd\u70df\u559d\u9152\uff0c\u7a7f\u7740\u95ea\u95ea\u53d1\u5149\u7684"} +{"id": "1003950", "video_name": "48ec1e6f-00b8-5e11-9f1c-18b684a7bcd2", "text": "\u751f\u6210\u4e00\u6bb5\u5df4\u57fa\u65af\u5766\u521b\u59cb\u4eba\u7684\u89c6\u9891\u3002"} +{"id": "4003380", "video_name": "61dec857-5d24-5f08-93d3-0f7f8c2a9afa", "text": "\u4e00\u4e2a\u4e2d\u95f4\u6709G\u7684\u4e09\u89d2\u5f62\u3002\u80cc\u666f\u662f\u6709\u4e9b\u4e91\u548c\u592a\u9633\u7684\u5929\u7a7a\u3002"} +{"id": "1006425", "video_name": "7597e72d-eab5-5974-8498-77530a6868f8", "text": "\u4e00\u53ea\u4f01\u9e45\u9a91\u7740\u6469\u6258\u8f66\u5728\u8def\u4e0a\u98de\u5feb\u5730\u884c\u9a76\u3002"} +{"id": "6003095", "video_name": "64c86adf-388f-5e67-bed9-77270e72f08c", "text": "\u8001\u4eba\u548c\u7537\u5b69\u76843D\u56fe\u50cf\u6b63\u5728\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "7002513", "video_name": "dd59bba8-34af-5c88-803b-72fb10b1e705", "text": "\u7d2b\u8272\u7684\u706b\u548c\u7ea2\u8272\u7684\u773c\u775b\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "0003288", "video_name": "3aed4666-ab25-570f-9baa-549e59133d1d", "text": "\u4eba\u4eec\u5728\u5df4\u9ece\u5730\u94c1\u7ad9\u53f0\u4e0a\u8d70\u52a8\u3002"} +{"id": "1003033", "video_name": "37a9a7d2-446a-5c87-84b6-9c56e5680e18", "text": "\u4e00\u53ea\u718a\u732b\u6b63\u5728\u7a7f\u8fc7\u7eff\u8272\u7684\u68ee\u6797\u5e76\u4e14\u5728\u7b11\uff0c\u65f6\u957f30\u79d2\u3002"} +{"id": "8003955", "video_name": "3355d19c-dfea-55e3-96b6-ffc9a6a6afac", "text": "\u4e00\u4e2a\u7126\u8651\u7684\u75c5\u4eba\u57281940\u5e74\u4ee3\u7684\u82cf\u8054\u533b\u9662\u91cc\uff0c\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "3003305", "video_name": "6b51bb8d-5c2f-55c5-976c-a7b9791d35c7", "text": "\u4e00\u53ea\u9e2d\u5b50\u5728\u6865\u4e0a\u8d70\u8def\u3002"} +{"id": "2003413", "video_name": "7be1c848-e2c4-506e-8c8e-447e39b68d29", "text": "\u63d2\u753b\u4eba\u7269\u770b\u8d77\u6765\u50cf\u5370\u5ea6\u4eba\uff0c\u7a7f\u7740\u6b63\u5f0f\u670d\u88c5\u5728\u673a\u573a\u8d70\u52a8\uff0c\u753b\u9762\u4e2d\u4e5f\u53ef\u89c1\u98de\u673a\u3002"} +{"id": "3006205", "video_name": "b9fddd15-c5e8-5176-89e5-ad9e29c5d8d6", "text": "\u5728\u5df4\u9ece\u7684\u8857\u9053\u4e0a\uff0c\u4e00\u8f86\u8001\u5f0f\u8f66\u5b50\u5728\u6ca1\u6709\u884c\u4eba\u7684\u8857\u9053\u4e0a\u884c\u9a76\uff0c\u9633\u5149\u7167\u8000\u7740\u3002"} +{"id": "4002757", "video_name": "0fb532c5-e6fa-51d0-9206-5a0c5354a4a4", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7535\u8111\u524d\u9762\u7b11\u7740\u5e76\u4e14\u7ad6\u8d77\u5927\u62c7\u6307\u3002"} +{"id": "3005906", "video_name": "3976fc8f-0f68-5ee2-91b4-653f8f4bdfa4", "text": "\u4e24\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u4e00\u4e2a\u7537\u4eba\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u8367\u5149\u8272\u5f69\uff0c\u4e09\u89d2\u604b\u548c\u8868\u60c5\u7b26\u53f7\uff0c\u672a\u6765\u4e3b\u4e49\u7684\u975e\u6d32\u57ce\u5e02"} +{"id": "4004759", "video_name": "b36728b3-5d9d-583c-91cd-146e57799e61", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5750\u5728\u533b\u751f\u684c\u524d\uff0c\u5f53\u533b\u751f\u544a\u8bc9\u4ed6\u7cdf\u7cd5\u7684\u5065\u5eb7\u6d88\u606f\u65f6\uff0c\u955c\u5934\u9010\u6e10\u9760\u8fd1\u4ed6\u3002"} +{"id": "8003205", "video_name": "e639f09a-bf21-55d0-8a8e-31475dc11a74", "text": "\u7167\u7247\u822c\u903c\u771f\u7684\u672a\u6765\u7ec6\u8282\u96c5\u52a0\u8fbe\u4fe1\u606f\uff1a\u8fea\u739b\u65af\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4004828", "video_name": "6c76b04b-d509-563d-80f7-3de26fc39c98", "text": "\u73b0\u573a\u7535\u89c6\u65b0\u95fb\u62a5\u9053\uff0c\u4e54\u00b7\u62dc\u767b\u5411\u6444\u50cf\u5934\u8bb2\u8bdd\uff0c\u65b0\u95fb\u5ba4\u6c14\u8c61\u56fe\u3002"} +{"id": "4004974", "video_name": "6b7d6157-0712-5c75-a1fd-67dca5849f67", "text": "\u8fbe\u59ae\u8389\u4e1d\u00b7\u5766\u683c\u5229\u5b89\u7a7f\u7740\u77ed\u6b3e\u6cf3\u88c5\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "7003383", "video_name": "e2001bf8-b9ca-56cd-923c-534a9c41bd11", "text": "1940\u5e74\u7684\u73b0\u573a\u5f55\u50cf\uff0c\u4ee5\u590d\u53e4\u7684\u98ce\u683c\u5448\u73b0\uff0c\u8be6\u7ec6\u5c55\u793a\u4e86\u4e00\u540d\u5de5\u4eba\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u710a\u63a5\uff0c\u80cc\u666f\u4e5f\u662f\u9ed1"} +{"id": "6003927", "video_name": "fc8eff26-8584-52f0-aa69-dc0818454090", "text": "\u4e00\u4e2a\u5e26\u7740\u7ea2\u8272\u7a97\u5e18\u548c\u957f\u9636\u68af\u7684\u5de8\u5927\u821e\u53f0\uff0c\u6709\u5f88\u591a\u95ea\u70c1\u7684\u91d1\u8272\u706f\u5149\uff0c\u89c2\u4f17\u5750\u5728"} +{"id": "6004699", "video_name": "b439f451-6d1f-58c6-9b8a-6dff35b729f2", "text": "\u4e24\u4e2a\u4e0d\u540c\u7684\u62f3\u51fb\u624b\u4e92\u76f8\u51fb\u6253\u3002"} +{"id": "4002445", "video_name": "a4179112-f5e6-57a7-ba32-902386829e26", "text": "\u7ebd\u7ea6\u5e02\u533a\u7684\u5927\u53a6\u4e0a\u65b9\uff0c\u96f7\u4e91\u6563\u5f00\u3002\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "0004760", "video_name": "0ed030ca-d761-578d-a6ba-637221ce7d92", "text": "\u8fd0\u52a8\u9ad8\u54c1\u8d28\u7684\u52a8\u6f2b\u5973\u5b69\u8d5b\u535a\u54e5\u7279\u60b2\u4f24\u7684\u5973\u5b69\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "1005455", "video_name": "644007fc-2328-521e-ab81-98ae33ca6f73", "text": "\u5728\u68ee\u6797\u4e2d\uff0c\u4e00\u4e2a\u6234\u7740\u5934\u5dfe\u7684\u5973\u5b69\u62ff\u7740\u4e00\u628a\u73b0\u4ee3\u6b65\u67aa\u5bf9\u51c6\u6444\u50cf\u673a\uff0c\u62cd\u6444\u89c6\u9891\u3002"} +{"id": "4004850", "video_name": "a909e119-be43-5ad8-a354-c253c0a05630", "text": "\u53ef\u7231\u7684\u5154\u5b50\u548c\u5979\u7684\u5c0f\u5154\u5b50\u4eec\u5e26\u7740\u84dd\u8272\u7684\u773c\u775b\u53bb\u83dc\u5e02\u573a\u3002"} +{"id": "3003219", "video_name": "ee5a3ea7-3714-5c7f-9408-6350bd1b486b", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7ad9\u5728\u5f69\u8679\u9876\u90e8\u3002"} +{"id": "4002642", "video_name": "4b6627f9-c8d7-5781-aa05-4bf21419351b", "text": "\u4e00\u540d\u5973\u5b69\u6b63\u5728\u56e2\u4f53\u4e2d\u4f7f\u7528\u5f69\u5e26\u8fdb\u884c\u97f5\u5f8b\u4f53\u64cd\u3002"} +{"id": "4002658", "video_name": "9bde2ad3-a119-500a-8078-e23687496cef", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7ef3\u5b50\u4e0a\u8d70\u7684\u52a8\u753b\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001685", "video_name": "367d5e2f-039d-5be6-b842-8f2f99ae97e3", "text": "\u8bd7\u610f\u7b97\u6cd5\u827a\u672f\uff0c\u5bf9\u81ea\u7136\u548c\u673a\u68b0\u7684\u6982\u5ff5\u6027\u6279\u5224\u3002"} +{"id": "4004079", "video_name": "a1afd73a-496b-5147-9298-179f6f81a2d6", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u89c6\u9891\u7247\u6bb5\uff0c\u5c55\u793a\u5a74\u513f\u8fdb\u884c\u5168\u63a5\u89e6\u6a44\u6984\u7403\u6bd4\u8d5b\u3002"} +{"id": "8001182", "video_name": "5c6c41ed-55fc-5473-b67a-bf4627d379c9", "text": "\u4e50\u961fBring Me The Horizon\u5728\u5c0f\u4ff1\u4e50\u90e8\u7684\u821e\u53f0\u4e0a\u6f14\u5531\u91d1\u5c5e\u6838\u5fc3\u6b4c\u66f2\u3002"} +{"id": "1004503", "video_name": "536df0ce-f073-5f36-8be8-e632cf365e4a", "text": "\u4e03\u5341\u5e74\u4ee3\u79d1\u5e7b\u98ce\u683c\u7684\u7ea2\u8150\u4e16\u754c"} +{"id": "5001288", "video_name": "6234401d-7cd9-5d09-b5c8-e47dd618296e", "text": "\u5929\u7a7a\u5f00\u59cb\u4e0b\u96e8\u7684\u7167\u7247\u3002"} +{"id": "2004887", "video_name": "c3056c6f-7345-5031-966b-99b896f75986", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u4e16\u7eaa\u65f6\u671f\u82f1\u683c\u5170\u6cd5\u5ead\u7684\u5973\u56da\u72af"} +{"id": "0004790", "video_name": "0f3295ad-f88b-517b-8177-9ed184a7ba6b", "text": "\u4e00\u5e45\u5fc3\u7075\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u7531\u4e00\u4e2a\u53d1\u5149\u7684\u706f\u7b3c\u7167\u4eae\uff0c\u8c61\u5f81\u7740\u5bf9\u7cbe\u795e\u7406\u89e3\u7684\u63a2\u7d22\u3002\u6d88\u606f\uff1a1\u4e2a"} +{"id": "5001319", "video_name": "c111f589-7509-57ae-b595-40a7c1548dac", "text": "\u4e00\u4e2a\u6ca1\u6c14\u7684\u82ad\u6bd4\u5a03\u5a03\u3002\u6709\u4eba\u6b63\u5728\u7528\u4e00\u53f0\u8001\u5f0f\u6c14\u6cf5\u7ed9\u5b83\u5145\u6c14\u3002"} +{"id": "7003687", "video_name": "4c1608c7-9375-5d16-9b49-807b91eba7fd", "text": "\u673a\u5668\u773c\u626b\u89c6\u672a\u6765\u57ce\u5e02\u7684\u666f\u8c61\uff0c\u51dd\u89c6\u7740\u5730\u5e73\u7ebf\uff0c\u5bfb\u627e\u4efb\u4f55\u751f\u547d\u7684\u8ff9\u8c61\u3002"} +{"id": "3006270", "video_name": "c6caf00c-95e3-5f55-a2d2-eaf32989c940", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u7528\u585e\u5c14\u4e54\u00b7\u83b1\u6602\u5f0f\u7684\u897f\u90e8\u98ce\u683c\uff0c\u5efa\u7acb\u4e00\u4e2a\u5c0f\u9547\u7684\u5168\u666f\u955c\u5934\u3002"} +{"id": "4002293", "video_name": "e3d1319d-f0b0-5add-80bb-08384b5dd721", "text": "\u56fa\u5b9a\u5728\u98de\u673a\u4e0a\u7684GoPro Hero 8\u76f8\u673a\u62cd\u6444\u7684\u56fe\u50cf\u663e\u793a\u51fa\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u4e2d\u6295\u653e\u7684\u70b8\u5f39\u3001\u65e7\u573a\u666f\u3001\u9ed1"} +{"id": "2004272", "video_name": "5e4c2248-d432-51fb-bc27-8cbf9788af31", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a\u5df4\u52d2\u65af\u5766\u62b5\u6297\u6218\u58eb\u6234\u7740\u514b\u83f2\u8036\u56f4\u5dfe\u624b\u6301\u5361\u62c9\u4ec0\u5c3c\u79d1\u592b\u6b65"} +{"id": "6003929", "video_name": "7b12519b-3694-5a76-8265-28d844ce6858", "text": "\u7f8e\u4e3d\u7684\u6d45\u68d5\u8272\u773c\u775b\u900f\u8fc7\u671b\u8fdc\u955c\u770b\u3002"} +{"id": "7003897", "video_name": "d52cd0d4-f698-585d-89aa-9d9b1c48fd2a", "text": "\u5fae\u7b11\u7684\u732b\u7d2b\u8272\u548c\u7c89\u8272\u8c03\u8272\u677f"} +{"id": "3004439", "video_name": "194b716c-b5c3-5904-902e-238de72176a0", "text": "\u751f\u6210\u4e00\u4e2a\u8eab\u7a7f\u91cd\u7532\u5e76\u624b\u6301\u5251\u3001\u77db\u548c\u5927\u76fe\u7684\u53ef\u6015\u975e\u5229\u58eb\u5de8\u4eba\u7684\u5f62\u8c61\uff0c\u6bcf\u5929\u65e9\u4e0a\u6311\u6218\u4ee5\u8272\u5217\u4eba\u3002"} +{"id": "4002148", "video_name": "cb8a5996-029f-5aed-ae12-db98ab395d8b", "text": "\u4e00\u4e2a\u9762\u5e26\u5fae\u7b11\u7684\u8001\u4eba\u5750\u5728\u6751\u5b50\u91cc\u7684\u4e00\u68f5\u5927\u6811\u4e0b\uff0c\u4e0e\u5f53\u5730\u4eba\u5206\u4eab\u667a\u6167\u3002"} +{"id": "4004776", "video_name": "487c1d14-4329-5e79-964d-5b0221855246", "text": "\u5728\u65c1\u8fb9\u7684\u6d77\u6ee9\u9732\u53f0\u4e0a\uff0c\u51cc\u66684\u70b9\uff0c\u62d6\u62d6\u978b\u3001\u5851\u6599\u74f6\u649e\u5899\u3001\u54fc\u5531\u548c\u6d77\u6d6a\u58f0\u6df7"} +{"id": "2005496", "video_name": "b4897fde-2914-5f0f-9be9-c123524759c1", "text": "\u5965\u5179\u5deb\u5e08\u4e2d\u7684\u98de\u7334\uff0c\u7531\u514b\u91cc\u65af\u6258\u5f17\u00b7\u8bfa\u5170\u6267\u5bfc\u3002"} +{"id": "8001275", "video_name": "cba27cda-7512-5ead-8415-11fd79b7923a", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u4f4e\u7a7a\u60ac\u505c\u5728\u90ca\u533a\u793e\u533a\u4e0a\u7a7a\uff0c\u5176\u91d1\u5c5e\u8868\u9762\u53cd\u5c04\u7740\u6708\u5149\u3002"} +{"id": "2005726", "video_name": "dea28aac-f622-5293-a8ce-9524e134d865", "text": "Chinese translation: \u5a74\u513f\u6770\u91cc\u7c73\u00b7\u6b27\u6587\u5728\u5a74\u513f\u5e8a\u91cc\u3002"} +{"id": "1006799", "video_name": "7c7e7c33-b75a-5c8c-aaa1-10b886dcf45f", "text": "\u4e00\u53ea\u8d85\u7ea7\u53ef\u7231\u7684\u732b\u9cb8\u517d\u7a7f\u8fc7\u57ce\u5e02\uff0c\u6467\u6bc1\u5efa\u7b51\u7269\u548c\u6469\u5929\u5927\u697c\u3002"} +{"id": "2006073", "video_name": "8ab0a859-7767-54bc-b88f-54a46e32c481", "text": "\u4e3a\u52a8\u753b\u9e1f\u7c7b\u521b\u9020\u8be6\u7ec6\u7684\u7fbd\u6bdb\u3002\u5c55\u793a\u4e0d\u540c\u4f4d\u7f6e\u7684\u7fbd\u6bdb\u4ee5\u5f3a\u8c03\u98de\u884c\u3002"} +{"id": "2005443", "video_name": "1aa695aa-7f96-54ef-9e4e-621dde1959c3", "text": "\u4e00\u7fa4\u7537\u4eba\u5728\u7a97\u6237\u524d\u770b\u3002"} +{"id": "8001861", "video_name": "154960af-1b4f-5f44-93a4-c6e0d6a30c5c", "text": "\u4e00\u4e2a\u7537\u4eba\u5f00\u7740\u5409\u666e\u8f66\u7a7f\u8d8a\u6c99\u6f20\uff0c\u88ab\u6218\u6597\u673a\u8ffd\u9010\u7740\u3002"} +{"id": "1003368", "video_name": "3e0d2074-11cf-566f-b028-57bdd28f4140", "text": "\u6bcd\u4eb2\u7ed9\u5979\u7684\u5b9d\u5b9d\u4e00\u4e2a\u7ea2\u82f9\u679c\u3002"} +{"id": "8001499", "video_name": "5738510c-00b7-5a1e-b65f-45e523267509", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u98ce\u683c\u7684\u9ed1\u6697\u533b\u751f\uff0c24\u5e27\u6bcf\u79d2\u3002"} +{"id": "4002669", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\uff0c\u53f3\u8fb9\u7684\u5899\u4e0a\uff0c\u4e0d\u6e05\u6670\u7684\u5149\u6591\u53d8\u6210\u4e86\u6df1\u7a7a\u4e2d\u60ca\u4eba\u7684\u661f\u7a7a\u56fe\u50cf\uff0c\u95ea\u70c1"} +{"id": "4002480", "video_name": "261c695d-3c59-51c0-ae56-24578f580330", "text": "\u5b69\u5b50\u8dd1\u5411\u6e29\u99a8\u7684\u5bb6\uff0c\u60c5\u611f\u4e30\u5bcc\uff0c24\u5e27\u6bcf\u79d2\uff0cm3\u3002"} +{"id": "0005454", "video_name": "1b084f9b-fc7f-559f-91be-318c82d0d266", "text": "\u68ee\u6797\u91cc\u5145\u6ee1\u4e86\u6d3b\u529b\uff0c\u670b\u53cb\u4eec\u7528\u9c9c\u8273\u7684\u989c\u8272\u548c\u56fe\u6848\u88c5\u9970\u4ed6\u4eec\u7684\u9e21\u86cb\u3002\u4ed6\u4eec\u6beb\u4e0d\u77e5"} +{"id": "2007680", "video_name": "a881500c-88d8-58c4-a216-eb3f2dbbe65d", "text": "\u4e00\u4e2a\u62e5\u6709\u7eff\u8272\u773c\u775b\u7684\u6d45\u7d2b\u8272\u7c7b\u4eba\u5316\u8001\u864e\u5728\u5468\u56f4\u5954\u8dd1\u6349\u8424\u706b\u866b\uff0c\u76ae\u514b\u65af\u3002"} +{"id": "3006256", "video_name": "b82521ec-43b7-52c6-8e2e-c99e10fd47ad", "text": "\u874e\u5b50\u5e26\u7740\u706f\u5149\uff0c\u53d1\u5149\u7684\u68ee\u6797\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "3003383", "video_name": "efeec852-7157-5fbc-93f6-7393cb2b339b", "text": "\u8f6e\u5b50\u5728\u8f6c\u52a8\uff0c\u8721\u70db\u5728\u71c3\u70e7\u3002"} +{"id": "5001851", "video_name": "c02daeb0-93a0-57b6-bf26-f6c7494077a4", "text": "\u6c7d\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u7684\u65f6\u95f4-lapse\u3002"} +{"id": "2005924", "video_name": "209919b6-8816-52d2-aa55-d5f9bd03c1f2", "text": "\u7a7a\u6c14\u4e2d\u7684\u6c34\u84b8\u6c14\u51dd\u7ed3\u6210\u6c34\u6ef4\uff0c\u805a\u96c6\u6210\u9ed1\u4e91\u3002"} +{"id": "3006396", "video_name": "5c02373c-f250-5275-b276-48ed20ca7623", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5c06\u9886\u89c2\u5bdf\u6218\u573a\u3002"} +{"id": "3005326", "video_name": "db87e1c4-bf08-591b-a984-06b24ff9e042", "text": "\u4e09\u4e2a\u667a\u8005\u8fdb\u5165\u5e26\u6c34\u7684\u7403\u5f62\u73bb\u7483\u4e2d\u3002"} +{"id": "7002569", "video_name": "c51d8f44-0efe-5836-baa4-124f4aed5182", "text": "\u5355\u4e00\u4eba\u4f53\u6a21\u578b\uff0c\u9762\u5411\u524d\u65b9\uff0c\u8d70\u79c0\uff0c\u7a7f\u7740\u5e8a\u5355\u3001\u6bdb\u6bef\u3001\u6795\u5934\u3002"} +{"id": "2005516", "video_name": "5446fca3-1633-5d35-8f63-15991e2d2810", "text": "\u4ed6\u7f13\u7f13\u5730\u884c\u8d70\u5728\u79fb\u52a8\u7684\u661f\u661f\u4e4b\u4e0a\u3002 \n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "2007640", "video_name": "8580bbd3-c1f0-51cc-9d75-b542ec93be8a", "text": "\u6c16\u8272\u8df3\u821e\u5973\u5b69\u7684\u65e0\u7f1d\u5faa\u73af\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5316\u5b66\u5144\u5f1f\u3002"} +{"id": "1005828", "video_name": "6b13b6fd-0e7f-5241-bcf5-545ab3b08184", "text": "\u4e00\u4f4d\u7a7f\u7740\u65f6\u5c1a\u7d2b\u9ed1\u8272\u8d85\u7ea7\u82f1\u96c4\u670d\u88c5\u7684\u82f1\u96c4\u540d\u4e3a\u5f71\u88ad\u6b63\u5728\u884c\u8d70\u3002"} +{"id": "6004256", "video_name": "62f2b1e5-c2fc-5b89-9d23-ab3715be0971", "text": "\u4e00\u68f5\u7c89\u8272\u7684\u5e7c\u82d7\u4ece\u7c89\u8272\u7684\u86cb\u4e2d\u751f\u957f\u51fa\u6765\u3002"} +{"id": "7003757", "video_name": "3234a4b9-809a-5541-8af9-aaf27c0386c4", "text": "\u7537\u4eba\u53d8\u6210\u4e00\u53ea\u82cd\u8747\uff0c\u7136\u540e\u6f5c\u5165\u4e00\u7897\u6c64\u91cc\u3002"} +{"id": "2005639", "video_name": "2897ddb4-7f2f-5a13-9c48-3f1808bb951e", "text": "\u5728\u6e56\u4e0a\u65b9\u6f02\u6d6e\u7740\u4e00\u4e2a\u767d\u8272\u7684\u7403\u5f62\u7269\uff0c\u4eba\u4eec\u4ece\u5cb8\u8fb9\u4ef0\u671b\u5e76\u6307\u7740\u5b83\uff0c\u9ed1\u767d\u8272\u8c03\uff0c\u6e56\u6c34\u7ffb"} +{"id": "1004185", "video_name": "4d6b87aa-237c-5b01-b4e9-acefddb5addb", "text": "\u53d1\u6e90\u53e5\uff1a dreadlocks moving, smile \u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "8002436", "video_name": "5ee12993-0544-5293-8eec-11211f5a0ebc", "text": "\u7537\u5b69\u6551\u4e86\u4e24\u4e2a\u5973\u5b69\uff0c\u4f46\u4ed6\u81ea\u5df1\u5374\u6df9\u6b7b\u4e86\u3002"} +{"id": "8001546", "video_name": "f6d4530f-f781-5326-b26e-d7fe4f9ff761", "text": "\u4eba\u5728\u592a\u7a7a\u98de\u884c\u5e76\u649e\u4e0a\u5c0f\u884c\u661f\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3005440", "video_name": "d7f59a5b-a738-55b8-865c-28c1b328a249", "text": "\u5bfc\u5f39\u51fb\u4e2d\u6469\u5929\u5927\u697c\uff0c\u7206\u70b8\uff0c\u5e7f\u89d2\u89c6\u91ce\u3002"} +{"id": "3005075", "video_name": "7cb6fe74-c55c-5a35-bd7b-5d253c8c16e4", "text": "\u6bd4\u5c14\u00b7\u57c3\u6587\u65af\u4ee5\u6bd5\u52a0\u7d22\u98ce\u683c\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "3005293", "video_name": "50a522a5-a4eb-5508-846a-2ac467f14dce", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5728\u673a\u573a\u80cc\u540e\u62e5\u62b1\u5979\u7684\u7537\u53cb\u54ed\u6ce3\u3002\u4ed6\u80cc\u5bf9\u5979\u7ad9\u7740\uff0c\u65c1\u8fb9\u653e\u7740\u884c\u674e\u3002\u65c1"} +{"id": "3003083", "video_name": "2e8bcecf-1f7d-512a-a655-1119f5ff9cc8", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u8d70\u5728T\u578b\u53f0\u4e0a\u7684\u8dd1\u9053\u4e0a\u3002"} +{"id": "0004463", "video_name": "097c026e-8fb4-5d97-8117-d9c014378e27", "text": "\u9ad8\u6f6e\u7684\u5c4b\u9876\u8868\u6f14\uff1a\u63cf\u8ff0\u827a\u672f\u5bb621 Savage\u548cDrake\u5728\u70df\u706b\u3001\u9713\u8679\u706f\u548c\u672a\u6765\u4e3b\u4e49\u5929\u9645\u7ebf\u7684\u80cc\u666f\u4e0b"} +{"id": "2006747", "video_name": "6d108fe2-6682-5f3d-927a-9804565fe6b4", "text": "\u827a\u672f\u4e4b\u5c4b\uff0c\u81ea\u7136\u95f4\u7684\u592a\u9633\u4eba\u3002\n\nSource sentence: She is studying Chinese at university in Beijing.\n\u5979\u6b63\u5728\u5317\u4eac\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "6003476", "video_name": "787138d7-52f2-5cf9-b26d-6736298f46ae", "text": "\u5929\u7a7a\u4e2d\u50cf\u94bb\u77f3\u4e00\u6837\u95ea\u8000\u7684\u5c0f\u5c0f\u6708\u4eae\uff0c\u548c\u95ea\u70c1\u7684\u5c0f\u661f\u661f\u3002"} +{"id": "6002976", "video_name": "30648679-f171-5003-82ce-eab681e90abc", "text": "\u98ce\u96e8\u63a8\u5f00\u5e26\u7a97\u5e18\u7684\u7a97\u6237\u8fdb\u5165\u623f\u95f4\u3002"} +{"id": "4004668", "video_name": "05bf5ff4-d652-595e-a6f6-85d3d0ca4aab", "text": "\u4e00\u4e2a\u7a7f\u7c89\u8272\u8fde\u5e3d\u886b\u7684\u5361\u901a\u5154\u5b50\u5728\u57ce\u5e02\u7684\u80cc\u666f\u4e0b\u7a7f\u8fc7\u7ea2\u7eff\u706f\u3002"} +{"id": "2004814", "video_name": "5db826d0-6a32-5d8d-b4e2-30f45b3a2af2", "text": "\u559d\u62b9\u8336\u62ff\u94c1\u65f6\u8868\u73b0\u51fa\u6781\u5ea6\u6ee1\u610f\u7684\u4eba"} +{"id": "2007895", "video_name": "8fb33dec-ddbe-599f-bcaa-57a24b299a70", "text": "\u53ef\u7231\u7684\u5fc3\u7075\u5973\u5b69\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u3002"} +{"id": "0004558", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "\u521b\u9020\u4e00\u4e2a\u65b0\u7684\u98ce\u683c\u7684\u7ea2\u8272\u4e09\u7ef4\u5361\u901a\u9e1f\uff0c\u4f5c\u4e3a\u4e00\u540d\u5e26\u6709\u4eba\u7c7b\u624b\u548c\u76f8\u673a\u6216\u9ea6\u514b\u98ce\u7684\u8bb0\u8005\u3002"} +{"id": "1003418", "video_name": "3f1a039a-dedd-5ec5-aca8-9b95ac69fdec", "text": "\u4e00\u4e2a\u5973\u5a74\u548c\u5979\u7684\u7237\u7237\u5976\u5976\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2003170", "video_name": "1198c1a7-641a-5231-b128-77530c676e9f", "text": "\u8fbe\u5c14\u6587\u5728\u5361\u901a\u7f51\u7edc\u8282\u76ee\u300a\u751c\u751c\u5708\u300b\u4e2d\u624b\u6301\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "1005532", "video_name": "65d4917a-7ca3-5de1-9fc4-81548c208543", "text": "\u84dd\u8272\u7684Twitter\u9e1f\u6807\u5fd7\u7206\u53d1\u6210\u7531\u9762\u5b54\u7ec4\u6210\u7684\u706b\u7130\u3002"} +{"id": "1003642", "video_name": "4321b92b-9aaa-5a4a-873d-9496396a3c92", "text": "\u5b69\u5b50\u4eec\u770b\u7740\u5723\u8bde\u8001\u4eba\u9a7e\u7740\u4ed6\u7684\u9a6f\u9e7f\u96ea\u6a47\u9ad8\u9ad8\u98de\u7fd4\u3002"} +{"id": "1004844", "video_name": "59888b2d-dde1-5ce8-8108-4f8fffb21bc4", "text": "\u6e90\u53e5\uff1a\u5728\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u7269\u4e0a\u65b9\u7684\u4e00\u4e2a\u9ad8\u5904\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u624b\u6301\u706b\u7130\uff0c\u4ed6\u8df3\u4e0a\u9053\u8def\u3002\u9ed1\u767d\u89c6\u9891\u3002"} +{"id": "3004543", "video_name": "3392bf94-cce4-5096-a24e-596d54e179da", "text": "\u4e00\u4e2a\u516c\u4e3b\u88ab\u91d1\u5b50\u3001\u5b9d\u77f3\u548c\u751c\u98df\u5305\u56f4\u5728\u4e00\u4e2a\u795e\u5947\u7684\u6c34\u4e0b\u5367\u5ba4\u91cc\u3002"} +{"id": "2006058", "video_name": "a95023cb-c044-5c31-8098-0a3557aab93a", "text": "\u968f\u7740\u6211\u4eec\u7a7f\u8d8a\u65f6\u95f4\u7684\u8d70\u5eca\uff0c"} +{"id": "8001928", "video_name": "1bd7b555-6b54-5d39-a9eb-6330e636d773", "text": "\u4e00\u679a\u706b\u7bad\u6f02\u6d6e\u5728\u6d69\u701a\u7684\u592a\u7a7a\u4e2d\u3002"} +{"id": "1006383", "video_name": "74ca6236-dddf-59a6-b4d5-06185a278fdf", "text": "\u84b8\u6c7d\u706b\u8f66\uff0c\u5728\u5c71\u533a\uff0c\u591c\u665a\uff0c\u70df\u96fe\u3002"} +{"id": "7003747", "video_name": "8138c74c-ab24-5dca-a12e-9fd629ef7161", "text": "\u6784\u9020\u677f\u5757\u79fb\u52a8\uff0c\u79ef\u7d2f\u80fd\u91cf\u3002\u5f53\u677f\u5757\u65ad\u88c2\u6216\u79fb\u52a8\u65f6\uff0c\u80fd\u91cf\u7a81\u7136\u91ca\u653e\uff0c\u5f15\u53d1\u9707\u52a8\u548c\u5730\u9707\u3002\u8fd9\u4e9b\u9707\u52a8"} +{"id": "6002536", "video_name": "02c055ee-682a-5eb7-a91c-0c818c4e16d4", "text": "\u52a8\u6f2b\u7537\u5b69\u5934\u53d1\u4e2d\u98d8\u7740\u98ce\uff0c\u5728\u80cc\u666f\u4e2d\u662f\u5c71\u6751\u3002"} +{"id": "8003796", "video_name": "0841181d-e297-5ea3-91dd-94fd94a55a82", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u548c\u8bfa\u65af\u4e00\u8d77\u5403\u7c73\u996d\u3002"} +{"id": "8003898", "video_name": "8adfcec8-db7d-5447-a2a3-314b57a52fa1", "text": "\u8428\u62c9\u548c\u9a6c\u514b\u52a0\u5165\u4e86\u4e00\u4e2a\u5927\u5b66\u5b66\u4e60\u5c0f\u7ec4\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\u753b\u9762\uff0c8K\u3002"} +{"id": "8003370", "video_name": "af60c0af-77c1-547b-a390-e6f51a1e6d7d", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u83f2\u5fb7\u5c14\u00b7\u5361\u65af\u7279\u7f57\u8eba\u5728\u4e00\u4e2a\u6d1e\u7a74\u5b9e\u9a8c\u5ba4\u91cc\u8fde\u63a5\u7740\u7535\u7ebf\u7684\u5e8a\u4e0a\u3002"} +{"id": "8002145", "video_name": "421c48d6-4a68-5a46-a152-ead7cacfe22a", "text": "\u4e00\u540d\u7537\u5b50\u5750\u5728\u684c\u524d\u7684\u7535\u8111\u524d\u8bb0\u7b14\u8bb0\u3002"} +{"id": "2003804", "video_name": "0f68b771-eec5-540f-a4e8-65b4527df1fe", "text": "\u5c06\u4e00\u8258\u5c0f\u578b\u5b87\u5b99\u98de\u8239\u9001\u5f80\u592a\u7a7a\u4e2d\u6700\u9065\u8fdc\u7684\u884c\u661f\u548c\u536b\u661f\uff0c\u6df1\u5165\u9ed1\u6697\u7684\u6df1\u5904\uff0c\u4ee5\u5bfb\u627e\u5e76"} +{"id": "3003467", "video_name": "5e130090-3bf5-5752-b7ee-3dc0247c8661", "text": "\u7ebd\u7ea6\u7684\u65e5\u51fa\u5448\u6de1\u7d2b\u8272\u8c03\uff0c\u91c7\u7528James Gilleard\u7684\u98ce\u683c\uff0cJames Jean\u7684\u4e0a\u8272\u3002"} +{"id": "8001911", "video_name": "1028a322-3bfc-57e0-a507-7da9c768b2df", "text": "\u540e\u89c6\u955c\u91cc\u663e\u793a\u4e00\u4e2a\u626d\u66f2\u7684\u3001\u5e7d\u7075\u822c\u7684\u8ffd\u8d76\u8eab\u5f71\u3002"} +{"id": "2004260", "video_name": "f6c863e9-aff7-53d9-b911-52d33b6860d4", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u625b\u7740\u6865\u6881\u3002"} +{"id": "3005542", "video_name": "3370041d-33d9-52ac-9243-001730c02346", "text": "\u88ab\u70b9\u51fb\u7684 Twitch \u5173\u6ce8\u6309\u94ae\u5e26\u6709\u9177\u70ab\u7684\u767d\u8272\u6c34\u6ef4\u52a8\u753b\u3002"} +{"id": "1006384", "video_name": "74cde72e-4ddc-5814-9d90-da1bcacc2a57", "text": "\u4e00\u8258\u6df1\u84dd\u8272\u548c\u767d\u8272\u7684\u8239\u5728\u65e5\u51fa\u65f6\u5728\u84dd\u8272\u7684\u6d77\u9762\u4e0a\u822a\u884c\u3002"} +{"id": "7002134", "video_name": "c089df36-ba7a-573f-b310-a516e07b5a60", "text": "\u8bf7\u7ed9\u6211\u4e00\u5f20\u56fe\u7247\uff0c\u4e0a\u9762\u662f\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u82b1\u56ed\u91cc\u5403\u5de7\u514b\u529b\uff0c\u4ed6\u7684\u5c0f\u59b9\u59b9\u5728\u65c1\u8fb9\u5fae\u7b11\u7740\u770b\u7740"} +{"id": "4003697", "video_name": "b72b3393-6147-5cf8-9103-ba841105fc5c", "text": "\u730e\u4eba\u4eec\u8bd5\u56fe\u6355\u6349\u91ce\u9e2d\uff0c8k\uff0c\u7535\u5f71\u822c\u7684\u6e05\u6670\u9762\u90e8\u7ec6\u8282\uff0c\u6811\u4e0a\u7684\u730e\u4eba\u4eec\u3002"} +{"id": "8001686", "video_name": "ff2a453b-87f7-5461-9695-44bed18582fb", "text": "\u90aa\u6076\u7684\u5723\u8bde\u8001\u4eba\u624b\u6301\u71c3\u70e7\u7684\u706b\u628a\uff0c\u5361\u901a\uff0c\u903c\u771f\uff0c1960\u5e74\u4ee3\u3002"} +{"id": "0003497", "video_name": "3e91fda7-f6f4-54f1-912e-7c8250042dc5", "text": "\u7537\u6027\u52a8\u6f2b\u3002\u4f5c\u4e3a\u4e00\u6b3e\u4f4e\u97f3\u8033\u673a\u3002"} +{"id": "7003378", "video_name": "02b1460f-6d0d-5bee-a7cf-050ba83043ea", "text": "\u5236\u4f5c\u4e00\u5f20\u4ee5\u8fea\u58eb\u5c3c\u548c\u76ae\u514b\u65af\u98ce\u683c\u4e3a\u84dd\u672c\u7684 3D \u6d77\u62a5\uff0c\u753b\u9762\u5c55\u73b0\u4e00\u4e2a\u957f\u7740\u9ed1\u8272\u957f\u53d1\u7684\u4e9a"} +{"id": "1004660", "video_name": "56ae4da6-e957-51c7-bed1-84ce8db1b027", "text": "\u9732\u8425\u5730\u3001\u9ed1\u6697\u3001\u5916\u661f\u4eba\u30014x4\u8d8a\u91ce\u8f66\u3001\u5934\u706f\u3001\u6c99\u5730\u3002"} +{"id": "5001152", "video_name": "919512bb-1e92-5f7c-a250-c17c303d4a9e", "text": "\u592b\u5987\u6b65\u884c\u4e0b\u4e86\u7687\u5bb6\u52a0\u52d2\u6bd4\u90ae\u8f6e\uff0c\u6765\u5230\u4e00\u4e2a\u79c1\u4eba\u5c9b\u5c7f\u3002"} +{"id": "7004569", "video_name": "3efd2e57-5605-553d-ba7c-af408446890a", "text": "\u4e00\u573a\u620f\u5267\u6027\u573a\u666f\uff0c\u91c7\u7528\u65b0\u5ddd\u6d0b\u53f8(Yoji Shinkawa)\u7684\u98ce\u683c\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u9ad8\u5ea6\u5148\u8fdb\u7684\u673a\u68b0\u54e5\u65af\u62c9"} +{"id": "8002165", "video_name": "837b6956-b64b-5330-9a4e-dc6aeae4835f", "text": "\u4e00\u4e2a\u7a7a\u65e0\u4e00\u7269\u7684\u5de5\u4f5c\u5ba4\uff0c\u4e2d\u592e\u6709\u4e00\u4e2a\u5faa\u73af\u6ce2\u6d6a\u3002"} +{"id": "6002381", "video_name": "9f8f1157-477e-506e-80eb-bc1fff5de3d2", "text": "\u4e00\u8258\u8239\u5728\u5e73\u9759\u7684\u6e56\u9762\u4e0a\u987a\u5229\u5730\u822a\u884c\u3002"} +{"id": "8001646", "video_name": "9cad6932-d570-55f7-be26-1dc31a8e2f73", "text": "\u9002\u5e94\u6027\uff1a\u751f\u6210\u573a\u666f\uff0c\u6444\u50cf\u673a\u9002\u5e94\u65c5\u884c\u4e2d\u4e0d\u65ad\u53d8\u5316\u7684\u6761\u4ef6\u3002"} +{"id": "1004093", "video_name": "4bc3391d-21de-551e-aa8b-29a5f7b8bb07", "text": "\u706f\u5149\u4e2d\u8d70\u51fa\u7684\u5973\u58eb"} +{"id": "3004961", "video_name": "7e01b3d6-ca85-58db-9243-6b94c9061d6e", "text": "\u4f0a\u65af\u5170\u6559\u56fe\u7247\uff0c\u957f\u5ea6\u4e3a2\u5206\u949f\u3002"} +{"id": "1003224", "video_name": "3b5c2492-d195-52c1-b846-a3551861a3b6", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u7f8e\u4eba\u9c7c\u5728\u6d77\u4e2d\u6e38\u6cf3\u3002\u4fe1\u606f\uff1aMerMapp\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "0005497", "video_name": "1bdac61b-c69a-53be-98ed-ea70a4f541bc", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u80dc\u5229\u6218\u58eb\uff0c\u624b\u6301\u4e00\u628a\u6cbe\u6ee1\u9c9c\u8840\u7684\u5251\uff0c\u5de6\u624b\u62ff\u7740\u4e00\u4e2a\u65ad\u5934\uff0c\u5e86\u795d\u7740\u80dc"} +{"id": "7004655", "video_name": "5de6dc31-fbdd-551e-a0ab-2c7bf8f2ea70", "text": "\u7f8e\u4e3d\u3001\u6027\u611f\u7684\u5973\u4eba\u5fae\u7b11\u7740\u6307\u5411\u6b63\u4e0a\u65b9\u3002"} +{"id": "2003811", "video_name": "9397a188-3ede-5866-bc48-f4a05f60a797", "text": "\u5973\u5b69\u51c6\u5907\u86cb\u7cd5\u9ad8\u5206\u8fa8\u73871728x1728\u3002"} +{"id": "2007937", "video_name": "8f963d8f-cbd6-5b29-8438-f61bbc7223d1", "text": "\u7537\u4eba\u5750\u5728\u9910\u5385\u91cc\u56db\u5904\u5f20\u671b\u3002"} +{"id": "3003307", "video_name": "ceb5096b-b2fe-5bd1-be20-414770f7def0", "text": "\u5728\u4e00\u573a\u6218\u4e89\u4e2d\u6253\u8d25\u654c\u4eba\u540e\uff0c\u4e00\u4e2a\u6751\u5e84\u5347\u8d77\u4e86\u65b0\u65d7\u5e1c\u3002"} +{"id": "8001676", "video_name": "647286b2-de4f-52ff-8e10-da8485effe48", "text": "\u8d85\u7ea7\u5730\u9707\uff0c\u8bb8\u591a\u5efa\u7b51\u7269\u5012\u584c\u3002"} +{"id": "6004470", "video_name": "9f6781d9-451f-5c4a-b2bf-61b5b75450dd", "text": "\u73b0\u5b9e\u3001\u8f7b\u76c8\u79fb\u52a8\uff0c\u592a\u9633\u5347\u8d77\u5728\u4e24\u5ea7\u5c71\u4e4b\u95f4\u7684\u65e5\u51fa\uff0c\u5b83\u4eec\u4e2d\u95f4\u6709\u4e00\u6761\u6cb3\uff0c\u5728\u9ad8\u6e05\u4e2d\u3002"} +{"id": "8002452", "video_name": "a3ef369e-6e71-5a2b-b7b4-45cd78e92433", "text": "\u4e00\u8f86\u6c7d\u8f66\u548c\u4e00\u4e2a\u751c\u751c\u5708\u5728\u6d77\u8fb9\u3002"} +{"id": "4003775", "video_name": "be8dacdd-4016-5127-85cb-12f5559f2204", "text": "\u5979\u6700\u8fd1\u4e00\u76f4\u5728\u52aa\u529b\u5de5\u4f5c\uff0c\u6709\u4e9b\u8ff7\u60d1\u3002\u5979\u7684\u9b54\u6cd5\u548c\u601d\u60f3\u6df7\u5728\u4e00\u8d77\uff0c\u5988\u5988\u8bf4\uff0c\u5979\u9700\u8981\u4e00\u70b9"} +{"id": "7002356", "video_name": "468a2d31-954c-5a12-92f9-b135efa381e3", "text": "\u4eba\u5728\u6d77\u6ee9\u51b2\u6d6a\uff0c\u5206\u8fa8\u7387\u4e3a1080x720\u3002"} +{"id": "2004815", "video_name": "b9fa1707-c9b0-5b18-b352-6a07c447d6cc", "text": "\u63cf\u8ff0\u57ce\u9547\u4e0a\u4e3a\u5e86\u795d\u79ef\u6781\u53d8\u5316\u800c\u4e3e\u529e\u7684\u5e86\u795d\u6d3b\u52a8\u3002"} +{"id": "3003039", "video_name": "164a6b50-2572-53eb-ab36-329b62db200a", "text": "\u672a\u6765\u7684\u5fb7\u7f57\u96f7\u5b89\u7684\u540e\u90e8"} +{"id": "0004272", "video_name": "06357738-bc66-5e4e-a9c8-cb0d5299ff35", "text": "\u5236\u4f5c\u4e00\u6bb5\u957f\u8fbe2\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e0d\u540c\u989c\u8272\u7684\u5851\u6599\u88ab\u7194\u5316\u5728\u4e00\u8d77\u7684\u8fc7\u7a0b\u3002"} +{"id": "8003120", "video_name": "969c08a4-e277-542a-ae10-db83e36acec8", "text": "\u5546\u4e1a\u98ce\u683c\u7684\u5316\u5986\u54c1\u6c99\u9f99\u77ed\u89c6\u9891"} +{"id": "1003636", "video_name": "4302d7b3-40e0-572a-9582-f99f25219127", "text": "\u9e1f\u5728\u524d\u9762\u8bf4\u8bdd\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005444", "video_name": "6410247c-f57f-51bc-8d6c-b5ff6c5c605a", "text": "\u7537\u4eba\u7a7f\u7740\u5750\u5728\u684c\u5b50\u524d\uff0c\u4f7f\u7528\u7535\u8111\uff0c\u548c\u5e73\u7684\u73af\u5883\uff0c\u7a97\u5916\u6709\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u7167\u7247\u822c\u903c\u771f\uff0c\u8d85\u9ad8"} +{"id": "8002023", "video_name": "480c2bb4-4d9c-5a13-8951-f45620d9efa1", "text": "\u96ea\u8c79\u662f\u751f\u6d3b\u5728\u4e2d\u4e9a\u5d0e\u5c96\u5c71\u8109\u4e0a\u7684\u96be\u4ee5\u6349\u6478\u7684\u5927\u578b\u732b\u79d1\u52a8\u7269\u3002\u5b83\u4eec\u6709\u6d53\u5bc6\u7684\u6bdb\u53d1"} +{"id": "5001192", "video_name": "c44f5da2-8ebb-5a26-be76-c884cc387971", "text": "\u77f3\u58a8\u70ef\u7a7a\u95f4\u7535\u68af\u901a\u5f80\u4eba\u53e3\u8fbe1\u4e07\u4ebf\u7684\u5de8\u578b\u7a7a\u95f4\u7ad9\u3002"} +{"id": "0005792", "video_name": "214fcf64-7dea-5711-937f-37a838fe2244", "text": "\u4e00\u4f4d\u8001\u4eba\u5728\u4e5d\u70b9\u5341\u516d\u5206\u8df3\u6447\u6eda\u821e\u3002"} +{"id": "2005085", "video_name": "6eaf2a07-373b-5a97-bed1-ce58b3ef53ab", "text": "\u4e00\u5934\u725b\u5750\u5728\u8857\u4e0a\u3002"} +{"id": "4003349", "video_name": "a5dedb9f-2ed2-501b-bf3d-f7185408c2e3", "text": "\u4e00\u4e2a\u708e\u70ed\u7684\u590f\u5929\uff0c\u4e00\u573a\u4e25\u91cd\u7684\u5e72\u65f1\u88ad\u51fb\u4e86\u8fd9\u7247\u571f\u5730\uff0c\u5bfc\u81f4\u6c34\u5751\u5e72\u6db8\uff0c\u8349\u6728\u67af\u840e\u3002"} +{"id": "4004083", "video_name": "1b865c31-72a8-5890-a121-103ffb97d2f7", "text": "\u9ed1\u6697\u6d53\u5bc6\u7684\u68ee\u6797\u53ea\u6709\u6563\u5c04\u5fae\u5f31\u6708\u5149\u7684\u80cc\u666f\u7167\u660e\uff0c\u4e00\u4e2a\u6781\u4e3a\u660e\u4eae\u7684\u5c0f\u5149\u7403\uff0c\u50cf\u4e2a\u5fae\u578b\u98de"} +{"id": "6004107", "video_name": "fd4b51db-7f32-52a0-9419-42c05190698c", "text": "\u8eab\u9ad81.8\u7c73\u7684\u7f8e\u5973\u4ee5\u4f18\u7f8e\u7684\u821e\u59ff\u8df3\u821e\uff0c\u5c55\u73b0\u51fa\u4e1c\u65b9\u7684\u7f8e\u4e3d\uff0c\u6301\u7eed8\u79d2\u949f\u3002"} +{"id": "8002515", "video_name": "6de7869d-b545-5ea0-80e5-26d78b430763", "text": "\u6c64\u59c6\u00b7\u6c49\u514b\u65af\u4e0e\u4e00\u53ea\u5de8\u5927\u7684\u6d77\u9f9f\u640f\u6597\n\nSource sentence: The sun is setting behind the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "2004379", "video_name": "a9d538a7-1502-5e7d-bd00-8532e97a00e6", "text": "3D\u8996\u983b\u904a\u6232\u756b\u9762\uff0c\u6709\u4e00\u500b\u5927\u7206\u70b8\uff0c3D\uff0c\u8996\u983b\u904a\u6232\uff0c\u7206\u70b8\uff0c\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "4002972", "video_name": "647b5062-6dac-537a-86bc-c398d2aad63c", "text": "\u4e00\u5bf9\u592b\u5987\u5750\u5728\u7f8e\u4e3d\u7684\u6cb3\u8fb9\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2005565", "video_name": "c9088068-bce1-5622-b190-e8f7d65be413", "text": "\u4eba\u7c7b\u5728\u6d77\u6d0b\u4e2d\u6563\u5e03\u7684\u7f51\uff0c\u903c\u771f\u7684\u5361\u901a\u89c6\u9891\u3002"} +{"id": "3004057", "video_name": "83983cdc-5e35-532f-8f95-8411320dfc9f", "text": "\u4e00\u4f4d\u7a7f\u7740\u7d2b\u8272\u4e0a\u8863\u7684\u5341\u51e0\u5c81\u5973\u5b69\u5e26\u7740\u884c\u674e\u8fdb\u5165\u623f\u5b50\u3002"} +{"id": "0006144", "video_name": "273cc540-4266-5268-b8d2-37335379c37f", "text": "\u7a7a\u4e2d\u65e0\u4eba\u673a\u62cd\u6444\u4e86\u4e00\u5ea7\u5b64\u96f6\u96f6\u7684\u5c0f\u5c4b\uff0c\u5750\u843d\u5728\u96ea\u5c71\u4e4b\u5dc5\u3002\u7535\u5f71\u822c\u7684\u3001\u8d85\u5199\u5b9e\u7684\u3001\u6d45\u666f"} +{"id": "1005236", "video_name": "60555b7b-589a-5ab5-8b14-a6235529fc01", "text": "\u963f\u62c9\u4f2f\u8bed\u4e2d\u4f7f\u7528\u963f\u62c9\u540d\u79f0\u7684\u592a\u7a7a\u65c5\u884c10\u79d2\u7247\u6bb5\u3002"} +{"id": "7002871", "video_name": "6d0634ea-1ae4-549a-b6e0-a47b0e39314f", "text": "\u4e00\u68f5\u7f8e\u4e3d\u7684\u5723\u8bde\u6811\u5728\u821e\u6c60\u4e0a\uff0c\u6447\u66f3\u7740\u6811\u679d\uff0c\u95ea\u70c1\u7740\u9891\u95ea\u706f\u5149\u3002"} +{"id": "1003789", "video_name": "45ebae6a-b572-5a97-abc4-975a746879ad", "text": "\u4e9a\u7c73\u5229\u4e9a\u8d70\u8fd1\u7ea0\u7f20\u3001\u8df3\u52a8\u7684\u68ee\u6797\u4e4b\u5fc3\uff0c\u9ed1\u8272\u85e4\u8513\u7f29\u56de -16:9\u8fd0\u52a83\u3002"} +{"id": "2004730", "video_name": "cc412175-d49d-5416-ad4d-bc613674fb7a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u800c\u5413\u4eba\u7684\u5973\u5b69\u82b1\u5728\u80cc\u666f\u4e2d\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u95ee\u4f60\u80fd\u9012\u7ed9\u6211\u76d0\u5417\uff1f"} +{"id": "2003927", "video_name": "e5c5134a-e96a-5aac-86f6-8535ae63eee0", "text": "\u7535\u5f71\u822c\u7684\uff0c\u7535\u89c6\u6253\u5f00\u4f46\u6ca1\u6709\u753b\u9762\uff0cAR 16\uff1a9"} +{"id": "8003155", "video_name": "e3b4f507-50d1-59a3-aebd-51e31101c448", "text": "\u7a81\u7834\u91cd\u529b\uff0c\u51b2\u5411\u5b87\u5b99\u6df1\u5904\u7684\u706b\u7bad\u3002\n\nSource sentence: The sun rises in the east and sets in the west."} +{"id": "7002367", "video_name": "1ef85c25-8c14-5e4c-9a0d-727c1354f5d2", "text": "\u95ea\u95ea\u53d1\u5149\u7684\u5149\u8292\uff0c\u98de\u821e\u7684\u6811\u53f6\u548c\u5fae\u7b11\u7684\u718a\u3002"} +{"id": "1006356", "video_name": "745d0dc4-35c4-5abd-9e2d-77a67561bc97", "text": "\u8fd9\u5f20\u9644\u4ef6\u56fe\u7247\u4e2d\u6709\u4e00\u4e2a\u7537\u4eba\u8d70\u5f97\u5f88\u5feb\u3002"} +{"id": "0006891", "video_name": "34d8f92f-56d8-57ac-9cf7-aacb8444ed98", "text": "\u5f00\u573a\u662f\u58ee\u4e3d\u7684\u65e5\u51fa\uff0c\u6e29\u6696\u7684\u9633\u5149\u7167\u8000\u7740\u9e45\u5375\u77f3\u8857\u9053\u3002\u573a\u666f\u8f6c\u6362\u81f3\u53e4\u8001\u7684\u5efa\u7b51\u548c"} +{"id": "8002552", "video_name": "2d07aa3c-4ca4-58be-96e4-b297a36bd74b", "text": "\u7f57\u9a6c\u7687\u5e1d\u7684\u903c\u771f\u6e32\u67d3\u7167\u7247"} +{"id": "3006292", "video_name": "7e5f95e8-f978-5af3-9361-e5d9b83840ec", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u81ea\u5df1\u7684\u76ae\u80a4\u5185\u5d29\u6e83\uff0c\u4ed6\u7684\u9aa8\u5934\u5728\u81ea\u5df1\u7684\u91cd\u91cf\u4e0b\u5185\u90e8\u7834\u788e\u3002"} +{"id": "8001405", "video_name": "fe13c2b2-bf95-512b-9e33-b1a98b89d552", "text": "\u6211\u4eec\u9047\u5230\u4e86\u6c64\u7c73\uff0c\u4e00\u4e2a\u5f00\u6717\u800c\u5145\u6ee1\u6d3b\u529b\u7684\u84dd\u8272\u62d6\u62c9\u673a\u3002\u4ed6\u968f\u7740\u7b2c\u4e00\u7f15\u9633\u5149\u9192\u6765\uff0c\u51c6\u5907"} +{"id": "8003777", "video_name": "b02e2ee1-48e2-5b50-8369-0ea57765001a", "text": "\u94b1\u843d\u5728\u4e00\u4e2a\u5927\u7684\u91d1\u8272\u6ce1\u6ce1\u4e0a\uff0c\u5b83\u5e26\u7740\u91d1\u8272\u7684\u5149\u8292\u65cb\u8f6c\u3002"} +{"id": "3003227", "video_name": "6f258b54-2a48-5bf0-9f6c-4b5977584e11", "text": "\u8fbe\u6770\u5c14\uff0c\u72ec\u773c\u7537\u5b50\uff0c\u77ee\u5c0f\u53ef\u6015\uff0c\u6218\u4e89\u3002"} +{"id": "3003653", "video_name": "2ba7a015-841e-5101-9a53-d61e87e50f1e", "text": "\u4e00\u9897\u5de8\u5927\u7684\u661f\u661f\uff0c\u5b83\u7684\u989c\u8272\u662f\u7d2b\u8272\u3002\u53f2\u8bd7\u822c\u7684\u3001\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u3001\u4ee4\u4eba\u8ff7\u9189\u7684"} +{"id": "8001557", "video_name": "7792063c-2e6c-5927-a80a-60b68a163212", "text": "\u611f\u8c22\u90a3\u8f86\u6cbf\u7740\u8f68\u9053\u884c\u9a76\u7684\u706b\u8f66\u3002"} +{"id": "1005790", "video_name": "6a8b7536-380b-5a74-802d-110b1eb6d060", "text": "\u8bb8\u591a\u58eb\u5175\u6b63\u5728\u5411\u4e00\u8f86\u4e30\u7530\u51ef\u7f8e\u745eXV30\u5f00\u67aa\u3002"} +{"id": "0003058", "video_name": "3642bc6e-98f7-5f61-9519-d302c11dc71a", "text": "\u8fd9\u662f\u4e00\u5f20\u5782\u76f4\u6784\u56fe\u7684\u8d85\u903c\u771f\u4e2d\u56fd\u9f99\u753b\uff0c\u9f99\u8eab\u4f18\u96c5\u5730\u76d8\u65cb\u626d\u66f2\u4e8e\u5929\u7a7a\u4e2d\uff0c\u5360\u636e\u6574\u4e2a\u753b\u9762\u800c\u6ca1\u6709\u4e2d"} +{"id": "1005036", "video_name": "5d266a3b-5b48-5a0c-9f43-07c1d9ed023b", "text": "\u4e00\u6392\u4e9a\u6d32\u7537\u5b50\uff0c\u7ec4\u6210\u201c\u6210\u529f\u201d\u4e00\u8bcd\u3002"} +{"id": "2006352", "video_name": "310503c3-f597-535a-beb1-3edee6286971", "text": "\u767d\u7389\u822c\u7684\u73bb\u7483\u7075\u9b42\u4e92\u76f8\u63a5\u543b\u3002"} +{"id": "4002414", "video_name": "2db10894-4e9b-51c5-bd68-703d425499dc", "text": "\u82cd\u767d\u7684\u7537\u4eba\uff0c\u7ea2\u8272\u7684\u773c\u775b\uff0c\u5410\u51fa\u756a\u8304\u9171\u3002"} +{"id": "4003815", "video_name": "91a3c4a6-c88c-50da-ab4d-f5aa5e1c9876", "text": "\u53a8\u623f\u91cc\uff0c\u4e00\u4f4d\u5931\u671b\u7684\u7537\u5b50\u5728\u5403\u5b8c\u5783\u573e\u98df\u54c1\u540e\u5750\u5728\u6253\u5f00\u7684\u51b0\u7bb1\u524d\u7684\u5730\u677f\u4e0a\uff0c\u6c14\u6c1b\u9634\u6c89"} +{"id": "4002346", "video_name": "908d8066-998d-51f5-bdba-22febf8dbf8c", "text": "\u4e00\u53ea\u88ab\u4eba\u9a91\u7740\u7684\u98de\u5929\u5c71\u7f8a\u3002"} +{"id": "8003965", "video_name": "1d6a85ac-a908-5726-af87-ac9360e7b409", "text": "\u4e00\u4f4d\u62e5\u6709\u98d8\u9038\u957f\u53d1\u3001\u7a7f\u7740\u6de1\u7eff\u8272\u7fbd\u7ed2\u670d\u3001\u80cc\u7740\u767d\u8272\u4e66\u5305\u7684\u7f8e\u4e3d\u5973\u5b69\u6b63\u8d70\u5728\u4e0b\u73ed"} +{"id": "0006752", "video_name": "32645e5e-df01-5d4b-8253-60bfa3161a6d", "text": "\u6bcf\u4e2a\u665a\u4e0a\uff0c\u9634\u5f71\u4e0b\uff0c\u4e00\u4e2a\u5b69\u5b50\u822c\u7684\u54c0\u53f9\u5728\u623f\u5b50\u7684\u5b89\u9759\u8d70\u5eca\u91cc\u56de\u54cd\u3002"} +{"id": "3005127", "video_name": "222c0302-ae3a-5fba-88ca-3427326be0b7", "text": "\u4e00\u6761\u7a7f\u7740\u897f\u88c5\u7684\u9c7c\u5728\u4e1c\u4eac\u3002"} +{"id": "1006451", "video_name": "76122c20-f154-5b62-b61e-805467495038", "text": "\u5386\u53f2\u4e0a\u62c9\u59c6\u548c\u62c9\u74e6\u7eb3\u7684\u6218\u6597\u3002"} +{"id": "5001969", "video_name": "06e89a47-f106-5ceb-83f3-17a84960dc8b", "text": "\u56de\u5bb6\u540e\uff0cMia\u548cBen\u77e5\u9053\u5373\u4f7f\u76f8\u9694\u4e07\u91cc\uff0c\u7406\u89e3\u548c\u5408\u4f5c\u4e5f\u53ef\u4ee5\u4fee\u8865\u4e16\u754c\u3002"} +{"id": "4002207", "video_name": "1973c79d-8fdf-582e-b92a-fa90a0cb8b08", "text": "\u73ca\u745a\u7901\u5f62\u6210\u4e86\u4e00\u4e2a\u8272\u5f69\u4e07\u82b1\u7b52\u822c\u7684\u95ea\u8000\u5149\u5f71\uff0c\u5b9b\u5982\u6d77\u6d0b\u672c\u8eab\u6240\u7ed8\u5236\u7684\u6d3b\u751f\u751f\u7684\u6770\u4f5c"} +{"id": "0005305", "video_name": "1833e9a7-8484-5170-b7ff-b04a47a6c02d", "text": "\u7537\u4eba\u5728\u590f\u5929\u7684\u95e8\u5eca\u4e0a\u5f39\u594f\u73ed\u5353\u7434\u3002"} +{"id": "0006157", "video_name": "2773b7c7-2557-55e8-91e9-05f0fcdcb5a5", "text": "\u5728\u64cd\u573a\u4e0a\u6709\u4eba\u9a91\u7740\u4e00\u5339\u9a6c\u3002 \n\nSource sentence: My favorite color is blue. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "3006308", "video_name": "03247f22-f52e-5dcf-bac6-eb2ae4313f34", "text": "\u9ed1\u6697\u4e2d\u7684\u732b\u900f\u8fc7\u7a97\u6237\u89c2\u770b\u96e8\u3002"} +{"id": "0006864", "video_name": "346e1ac8-55d8-5ecc-871b-23199815cf51", "text": "\u4e00\u4e2a\u5e26\u6709\u8212\u9002\u5185\u9970\u548c\u7f13\u6162\u52a8\u753b\u706b\u7684\u58c1\u7089\u80cc\u666f"} +{"id": "0004783", "video_name": "0f168e73-85c3-5efb-a715-4c3027d6f803", "text": "\u8bd5\u56fe\u6293\u4f4f\u5723\u8bde\u6811\u4e0b\u7684\u5f69\u8272\u4e1d\u5e26\u3002"} +{"id": "1004633", "video_name": "5630ad0d-a70b-5742-b84b-140d5e1d6d12", "text": "\u624b\u5728\u4e91\u5916\u6f02\u6d6e\uff0c\u4ee5\u67d4\u548c\u7684\u8272\u8c03\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u6a21\u7cca\u7684\u610f\u8c61\u3001\u68a6\u5e7b\u62fc\u8d34\u3001\u878d\u5316\u548c\u9e1f"} +{"id": "8003316", "video_name": "61eca89c-60d6-5546-bc23-4d3df0c90ddc", "text": "3D\u52a8\u753b\uff0c\u6a31\u82b1\u6811\u4e0b\u7684\u534e\u4e3d\u65e9\u9910"} +{"id": "7003420", "video_name": "7d56dc71-86aa-58a4-b118-4ecda3ff9f82", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u3001\u7559\u7740\u7070\u8272\u80e1\u987b\u3001\u7a7f\u7740\u9ed1\u8272\u6bdb\u8863\u7684\u8001\u4eba\u8d70\u5728\u8d70\u5eca\u4e0a\u3002"} +{"id": "8001279", "video_name": "bd646c72-e20c-541c-8ed7-e533aa881816", "text": "\u4e2d\u4e1c\u73b0\u5b9e\u4e3b\u4e49\u5916\u4ea4\u4f1a\u8bae\u548c\u8c08\u5224\u7684\u573a\u666f\u3002"} +{"id": "2007428", "video_name": "a37698b5-ec31-51ea-9958-3251de57aa7f", "text": "\u6570\u5b57\u4e00\u6709\u773c\u775b\u3001\u9f3b\u5b50\u548c\u5634\u5df4\u5728\u8bf4\u8bdd\u3002\u5361\u901a\u3002"} +{"id": "0004601", "video_name": "0bbfcb79-af3a-5784-aeb8-e4f5a4fa2e89", "text": "\u5728\u6c99\u6f20\u4e2d\u521b\u9020\u4e00\u7fa4\u7a7f\u7740\u8dd1\u6b65\u670d\u7684\u7537\u4eba\u3002"} +{"id": "2006333", "video_name": "66d35956-5eef-5129-a827-84a5b1d666fc", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u671d\u7740\u97f3\u4e50\u8282\u7684\u65b9\u5411\u5728\u7530\u91ce\u91cc\u6563\u6b65\u3002"} +{"id": "1003510", "video_name": "40defe54-9008-5e30-9f07-ef2698408fe6", "text": "\u4e00\u4e2a\u6234\u7740\u7a3b\u8349\u5e3d\u7684\u7537\u4eba\u9a91\u7740\u4e00\u5934\u725b\u3002\u4ed6\u53f3\u624b\u62ff\u7740\u4e00\u4e2a\u725b\u5976\u7f50\u3002"} +{"id": "4003406", "video_name": "ff4c647f-a99c-5131-af08-d8302a066c33", "text": "\u6570\u4e07\u53ea\u661f\u96c0\u5728\u591c\u5e55\u4e2d\u76d8\u65cb\uff0c\u8d85\u73b0\u5b9e\u7684\u5e7f\u89d2\u89c6\u89c9\u975e\u5e38\u5bbd\u5e7f\u3002"} +{"id": "2005169", "video_name": "0a530dc0-72e7-5cd0-9272-14b6b5f2a46b", "text": "\u5c71\u6c34\u7f8e\u666f\uff0c\u8fde\u7ef5\u4e0d\u65ad\u7684\u5c71\u5ce6\uff0c\u9633\u5149\u9ad8\u7167\u3002"} +{"id": "1003981", "video_name": "498487a0-5935-517c-98c0-16b792f777e4", "text": "\u5927\u5199\u6444\u5f71\uff0c\u4e00\u53ea\u6b7b\u8747\u8150\u70c2\u6210\u8611\u83c7\u76d6\u3002"} +{"id": "2003138", "video_name": "4e6c235b-15cb-53b5-b4d1-6f157c399e18", "text": "DOTA2\u82f1\u96c4\u70bc\u91d1\u672f\u58eb\u624b\u6301\u4e00\u4ef6\u95ea\u8000\u7684\u8f89\u8000\u3002"} +{"id": "7002588", "video_name": "4c7c7435-ef58-5f18-852b-26e966220b82", "text": "\u4e00\u53ea\u72fc\u626c\u8d77\u722a\u5b50\uff0c\u540c\u65f6\u7b11\u7740\u5bf9\u7740\u6811\u5e72\u3002"} +{"id": "1005610", "video_name": "6723d34c-2a61-51d3-b0b3-6b5c5bdadec8", "text": "\u591a\u6c41\u7684\u6843\u5b50\u5728\u62bd\u8c61\u80cc\u666f\u4e0a\u65cb\u8f6c\u3002"} +{"id": "4003284", "video_name": "db5629ab-6ee6-54ef-8fb1-ed2e2f32c12f", "text": "\u4e00\u4e2a\u7a7a\u7740\u7684\u6905\u5b50\u5728\u5bb6\u5ead\u9910\u684c\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c8k\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "3003085", "video_name": "b544d67e-677f-52e5-b547-18618bf7eedd", "text": "\u6258\u65af\u5361\u7eb3\u98ce\u666f\u5982\u753b\u7684\u8461\u8404\u56ed\uff0c\u8461\u8404\u6b63\u5728\u91c7\u6458\uff0c\u5915\u9633\u5728\u80cc\u666f\u4e2d\u843d\u4e0b\u3002"} +{"id": "1004179", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "\u8d85\u7ea7\u82f1\u96c4\u6d77\u738b\u7a7f\u7740\u6f5c\u6c34\u955c\u548c\u6cf3\u88e4 4K\u3002"} +{"id": "0005144", "video_name": "158c8e1c-b42d-543c-98fc-8f04e886f1d7", "text": "\u4e2d\u56fdSILACAR\u6c7d\u8f66\u5728\u7b26\u62c9\u8fea\u6c83\u65af\u6258\u514b\u7684\u4ef7\u683c\u6700\u4f18\u3002"} +{"id": "4003240", "video_name": "663a5faf-b457-565a-b2e1-4b1ec88cfc8f", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u5a5a\u793c\u670d\u88c5\u7684\u5973\u9b3c\u5750\u5728\u4e00\u4e2a\u575f\u5893\u4e0a\uff0c\u4eab\u7528\u7740\u4f9b\u54c1\uff0c\u800c\u4fe1\u5f92\u975e\u5e38\u5bb3\u6015\u3002"} +{"id": "0005403", "video_name": "1a3a193a-38ca-5278-9da8-d700b553aeb0", "text": "\u5728\u6d77\u6d0b\u6df1\u5904\uff0c\u4e00\u573a\u6fc0\u70c8\u7684\u6218\u6597\u5728\u72e1\u733e\u7684\u9cc4\u9c7c\u548c\u65e0\u60c5\u7684\u9ca8\u9c7c\u4e4b\u95f4\u5c55\u5f00\u3002"} +{"id": "4002774", "video_name": "7012dd36-0cd5-5323-a0cc-80fac33f0f97", "text": "\u4e00\u4e2a\u7ea2\u8272\u76843D\u7acb\u65b9\u4f53\u56f4\u7ed5\u5782\u76f4\u8f74\u65cb\u8f6c\uff0c\u5176\u80cc\u666f\u662f\u4e00\u5ea7\u7f8e\u4e3d\u7684\u52a0\u52d2\u6bd4\u6d77\u5c9b\u3002"} +{"id": "8003919", "video_name": "c3fcfca3-411f-5447-a6e1-dd4b95db596f", "text": "\u7ea2\u8272\u96fe\u6c14\u3001\u65f6\u95f4\u6d41\u901d\u3001\u89c6\u89c9\u7279\u6548\u3001\u5e93\u5b58\u955c\u5934\u3001\u9ed1\u8272\u80cc\u666f"} +{"id": "2003154", "video_name": "5e6ae61e-3a45-55d8-95d5-d7624bc1dc7a", "text": "\u7535\u5f71\u53cd\u6d3e\uff0c\u7535\u5f71\u611f\uff0c\u4e0a\u4e16\u7eaa80\u5e74\u4ee3\u7684\u5192\u9669\u7535\u5f71\uff0c\u7cbe\u7ec6\u7684\u7167\u660e\u548c\u9634\u5f71\uff0c\u6770\u4f5c\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c8"} +{"id": "7004968", "video_name": "efe02cfe-414f-5069-b103-cd62a9c34bfc", "text": "\u4e00\u540d\u5973\u5b50\u548c\u4e00\u540d\u7537\u5b50\u5728\u6cd5\u56fd\u7684\u516c\u5bd3\u91cc\u4e00\u8d77\u5ea6\u8fc7\u65f6\u95f4\u3002"} +{"id": "3005021", "video_name": "2bf57ef0-e0d2-5b0f-a039-d82248608cb1", "text": "\u4e00\u53ea\u9cb8\u9c7c\u8dc3\u51fa\u6d77\u9762\u5e76\u843d\u5165\u6d77\u4e2d\u3002"} +{"id": "2006819", "video_name": "a23c103f-f4dd-5857-8b12-0cba5495d0c3", "text": "\u4e00\u53ea\u9e70\u5728\u5c71\u4e2d\u98de\u7fd4\uff0c\u5c71\u9876\u4e0a\u6709\u5965\u5730\u5229\u56fd\u65d7\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "2007529", "video_name": "a01eb4da-31c5-5315-81b5-904424e618d3", "text": "\u5728\u96e8\u5929\u7684\u516c\u4ea4\u7ad9\uff0c\u62ff\u7740\u96e8\u4f1e\u7b49\u5f85\u7537\u53cb\u3002"} +{"id": "2007295", "video_name": "bba05489-9b87-580f-9033-668e83cda07c", "text": "\u5730\u72f1\u542f\u793a\u5f55\u7535\u5f71\uff0c\u9488\u5934\u4eba\u8d70\u8fdb\u4e00\u4e2a\u6302\u6ee1\u94fe\u6761\u7684\u623f\u95f4\u3002"} +{"id": "2004241", "video_name": "23340d4e-2fc7-597a-aeb6-fc28ed2ed11b", "text": "\u4e00\u4e2a\u5e7b\u60f3\u4e16\u754c\uff0c\u82f1\u96c4\u6234\u7740\u9f99\u6212\u6307\u8d70\u5411\u795e\u79d8\u4e4b\u5730\u3002"} +{"id": "2003357", "video_name": "4c2ca351-218b-5cee-8475-50ed79e84c73", "text": "\u53ef\u7231\u7684\u5973\u5b69\uff0c\u4e00\u4fa7\u7cfb\u7740\u957f\u53d1\uff0c\u7070\u8272\u7684\u773c\u775b\uff0c\u5411\u955c\u5934\u8d70\u53bb\uff0c\u7a7f\u8d8a\u4e1c\u4eac\u591c\u665a\u7684\u57ce\u5e02\uff0c\u7535\u5f71"} +{"id": "6002696", "video_name": "9ea21763-17dc-52a7-ac76-0e6e3373105b", "text": "\u4e09\u53ea\u8272\u5f69\u7f24\u7eb7\u7684\u9e66\u9e49\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u6bcf\u53ea\u7fbd\u6bdb\u90fd\u6709\u4e0d\u540c\u7684\u5149\u5f69\u3002"} +{"id": "4003196", "video_name": "b7e5460a-7558-549b-8359-8ed504eb260c", "text": "\u957f\u53d1\u7537\u5b50\u6f2b\u6b65\u68ee\u6797\uff0c\u601d\u8003\uff0c\u661f\u7a7a\u4e0b\u76842D\u52a8\u753b\u3002"} +{"id": "1005691", "video_name": "688da429-ac93-5eb5-a0fb-51c9335e263a", "text": "\u4e00\u4e2a\u9ad8\u5ea6\u8be6\u7ec6\u7684\u98de\u9e1f\u8096\u50cf\u753b9:16"} +{"id": "7004253", "video_name": "8830a755-7f8b-5962-82cf-80e7e8a1b931", "text": "\u878d\u5316\u9ed1\u767d8\u6beb\u7c73\u7535\u5f71\u3002"} +{"id": "7002278", "video_name": "bab3f656-b1ad-5278-aeda-821111fe610c", "text": "20\u4e16\u7eaa\u521d\u7684\u5973\u4eba\u548c\u5c0f\u5973\u5b69\u5728\u6d77\u5cb8\u6216\u6d77\u6ee9\u4e0a\u8d70\u8def\u3002"} +{"id": "2007633", "video_name": "2c3bdb59-6c0d-5dc6-ba54-d15dbf7bd45d", "text": "\u76f8\u540c\u7684\u56fe\u7247\uff0c\u9762\u90e8\u4fee\u6574\u548c\u589e\u5f3a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002614", "video_name": "48093c0a-bdb3-53e1-ab25-a05af2fcaf4f", "text": "\u8d70\u5728\u4e00\u4e2a\u5b8c\u5168\u7531\u5f69\u8272\u7eb1\u7ebf\u5236\u6210\u7684\u90ca\u533a\u793e\u533a\u91cc\u3002"} +{"id": "8001159", "video_name": "50f8c6f5-5dad-53b9-8e9b-b387199edf4b", "text": "\u7ebf\u63cf\u3002\u4e00\u53ea\u9e21\u62cd\u6253\u7740\u7fc5\u8180\uff0c\u98de\u5411\u7a7a\u4e2d\u3002"} +{"id": "6002317", "video_name": "3cdc4f9c-3eaa-51d7-ae1c-01d90e04e7b3", "text": "\u4f5b\u7956\u5728\u82b1\u56ed\u4e2d\u7684\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "8001728", "video_name": "b66c0925-d7a9-5214-bf00-cf7cb1edc92e", "text": "\u7f57\u9a6c\u5929\u4e3b\u6559\u6559\u7687\u65b9\u6d4e\u5404\u7a7f\u7740\u5f69\u8679\u5df4\u9ece\u4e16\u5bb6\u84ec\u677e\u5939\u514b\u5728\u97f3\u4e50\u8282\u4e0a\u73a9"} +{"id": "7003564", "video_name": "a70a5574-210b-5a66-b6f9-e511a2de371a", "text": "\u56fd\u9645\u793e\u4f1a\u6df1\u53d7\u72b9\u592a\u5e78\u5b58\u8005\u7684\u82e6\u96be\u6240\u611f\u52a8\uff0c\u652f\u6301\u5728\u5df4\u52d2\u65af\u5766\u521b\u5efa\u72b9\u592a\u4eba\u5bb6\u56ed\u7684"} +{"id": "6003578", "video_name": "9693cedd-3b59-532a-b029-5b69cf2dd0d0", "text": "\u5361\u901a\u9891\u9053\u7684YouTube\u4ecb\u7ecd\u89c6\u9891"} +{"id": "5001460", "video_name": "03bfb64d-5049-5136-b805-b658263265ca", "text": "\u4e00\u5f20\u805a\u96c6\u5728\u5723\u7ecf\u5b66\u4e60\u4e2d\u7684\u4eba\u4eec\u7684\u7167\u7247\uff0c\u8ba8\u8bba\u7ecf\u6587\u5e76\u5206\u4eab\u89c1\u89e3\u3002"} +{"id": "8001641", "video_name": "79410575-aaab-5f16-9bfc-b1d6aeeb8f72", "text": "\u7b11\u8138\u8001\u4eba\uff0c\u84b8\u6c7d\u670b\u514b\u98ce\u683c"} +{"id": "4004263", "video_name": "95d9fc03-8597-588b-8931-3b28d9042000", "text": "\u7528\u7537\u6027Free Fire\u89d2\u8272Ignis\u521b\u4f5c\u4e00\u90e8\u52a8\u753b\uff0c\u5c55\u73b0\u524d\u6240\u672a\u6709\u7684\u65e0\u4e0e\u4f26\u6bd4\u7684\u7f8e\u611f\u3002"} +{"id": "8001078", "video_name": "87b35816-0008-5ca7-9a11-c72c9d094e32", "text": "\u827e\u739b\u00b7\u6c83\u68ee\u548c\u874e\u5b50\u73a9\u6251\u514b\u3002"} +{"id": "3006518", "video_name": "d01f7bb3-0d96-5c47-9a63-60bacbb01038", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u7ebd\u7ea6\u8857\u5934\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u884c\u8d70\u5e76\u5403\u7740\u6c49\u5821\uff0c\u91c7\u7528\u52a8\u4f5c\u3001\u620f\u5267\u5316\u7684\u7167"} +{"id": "5001997", "video_name": "2759a997-e123-579c-b15b-7db2af6ae26c", "text": "\u72d7\u5982\u4f55\u7ba1\u7406\u53a8\u623f\u7535\u5668\u3002"} +{"id": "1003001", "video_name": "37181fee-7fa1-5657-9994-bdfb97badc90", "text": "\u8428\u739b\u8bfa\u65af\u514b\u00b7\u660e\u667a\u7a7f\u7740\u9a6c\u91cc\u4e9a\u5947\u670d\u88c5\u5728\u58a8\u897f\u54e5\u5916\u9762\u7684\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "3004737", "video_name": "3a757c89-cf29-59a7-9679-2b74b12352f8", "text": "\u7531\u4e8e\u6218\u4e89\u800c\u7559\u4e0b\u7684\u6d41\u79bb\u5931\u6240\u7684\u513f\u7ae5\u548c\u4ed6\u4eec\u7684\u5bb6\u5ead\uff0c\u4ed6\u4eec\u8eab\u540e\u7684\u6218\u4e89\u70df\u96fe\u662f\u4e00\u4e2a\u771f\u5b9e\u7684\u7535"} +{"id": "5001937", "video_name": "00fd8ecc-0f44-5d0e-a0df-bcb666f096f2", "text": "\u88ab\u5947\u602a\u7684\u751f\u7269\u68c0\u67e5\uff0c\u5e76\u63a5\u53d7\u533b\u7597\u7a0b\u5e8f\u3002"} +{"id": "7003152", "video_name": "d4d978be-33f3-5a1d-a5dd-3ca380e63afe", "text": "BTS\u7684Jungkook\u5728\u6708\u7403\u4e0a\u9762\u5bf9\u7740\u6211\u8df3\u821e\uff0c\u4ee5\u4ed6\u6027\u611f\u7684\u821e\u6b65\uff0c\u770b\u8d77\u6765\u82f1\u4fca\u800c\u8d85\u73b0\u5b9e\u3002"} +{"id": "2006820", "video_name": "667cfd54-a16f-55fc-9d74-15971a6eafcf", "text": "\u4e00\u53ea\u732b\u5750\u5728\u7a97\u53f0\u4e0a\u5f80\u5916\u770b\u3002"} +{"id": "1004032", "video_name": "4abfb477-1f67-515f-a16e-295ca57cb21d", "text": "\u96e8\u6ef4\u6cbf\u7740\u7a97\u73bb\u7483\u98de\u5feb\u5730\u6ed1\u843d\uff0c\u6a21\u7cca\u4e86\u7a97\u5916\u7684\u4e16\u754c\u3002"} +{"id": "8002062", "video_name": "22ad4fb4-7f8f-5d00-a63f-09360b868b96", "text": "\u8036\u7a23\u590d\u6d3b\u62c9\u6492\u8def\u7684\u7535\u5f71\u89c6\u9891"} +{"id": "4004347", "video_name": "f9aed8ef-6df8-5f20-8256-41fe3875183f", "text": "\u7279\u65af\u62c9\u7684\u81ea\u52a8\u9a7e\u9a76\u6c7d\u8f66\u5728\u884c\u9a76\u4e2d\uff0c\u9a7e\u9a76\u5458\u6b63\u5728\u7761\u89c9\u3002"} +{"id": "8002134", "video_name": "00d1e54b-d022-5783-aced-186bde04ecae", "text": "\u4e00\u7fa4\u670b\u53cb\u5728\u63a2\u9669\u8fc7\u7a0b\u4e2d\u9047\u5230\u795e\u79d8\u7684\u6c34\u4e0b\u6d1e\u7a74\u3002"} +{"id": "7004679", "video_name": "8ea1417b-1876-52ad-bd7d-4ff4ec53393e", "text": "\u5f88\u591a\u7535\u5b50\u9c7c\u56f4\u7ed5\u7740\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "3004769", "video_name": "daacbd7a-1158-5615-be17-d2ff26a730ef", "text": "\u547d\u7406\u5e08\u9884\u6d4b\u672a\u6765\uff0c\u5fae\u5fae\u5730\u52a8\u52a8\u624b\uff0c\u5723\u8bde\u6c1b\u56f4\u3002"} +{"id": "2005637", "video_name": "08994dd5-76e6-55f4-9530-ba6c1606b280", "text": "\u66fe\u7ecf\uff0c\u5728\u4e00\u4e2a\u88ab\u65e0\u5c3d\u6d77\u6d0b\u6240\u5305\u56f4\u7684\u4e16\u754c\u91cc\uff0c\u4e00\u4e2a\u540d\u53ebLeo\u7684\u7537\u5b50\u548c\u4e00\u4e2a\u540d\u53ebEmily\u7684\u5973\u5b50\u5c55\u5f00\u4e86\u4e00\u6bb5\u5145\u6ee1"} +{"id": "1003753", "video_name": "4536cedc-5e11-5e46-a9dc-ab98f84615fa", "text": "\u6cd5\u56fd\u6597\u725b\u72ac\u7a7f\u7740\u4e09\u4ef6\u5957\u897f\u88c5\u5750\u5728\u5496\u5561\u5385\u91cc\uff0c\u770b\u7740\u4e00\u53f0MacBook\uff0c\u8d85\u5199\u5b9e\u3001\u6781\u5199\u5b9e\u3002"} +{"id": "0004632", "video_name": "0c558716-5478-5466-b4ca-248d411cefc8", "text": "\u573a\u666f1\uff1a\u4ecb\u7ecd \u5730\u70b9\uff1a\u4e00\u5bb6\u660f\u6697\u7684\u9152\u5427\u3002\u4eba\u7269\uff1a\u4e3b\u4eba\u516c\uff08\u7ea6\u7ff0\uff09\u72ec\u81ea\u5750\u7740\uff0c\u559d\u7740"} +{"id": "5001510", "video_name": "20415592-d03f-560c-9162-9fd585dcf921", "text": "\u5973\u9976\u820c\u6b4c\u624b\u6b63\u5728\u97f3\u4e50\u4f1a\u4e0a\u4ee5\u63d2\u56fe\u98ce\u683c\u6f14\u5531\u3002"} +{"id": "5001498", "video_name": "18a29ad4-dedf-577d-996b-cccd5dfdd8d9", "text": "\u6c5f\u5357\u6c34\u4e61\u5357\u8fb9\u7684\u4e00\u4e2a\u6751\u5e84\uff08\u6210\u8bed\uff09; \u6bd4\u55bb\u4e2d\u56fd\u6c5f\u82cf\u5357\u90e8\u5730\u533a"} +{"id": "3004108", "video_name": "5c41d1a9-0687-5dff-8630-3999a111fc1d", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u592a\u7a7a\u8239\u91cc\u900f\u8fc7\u7a97\u6237\u5411\u5916\u770b\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728"} +{"id": "8002604", "video_name": "a34672f1-4680-5f2c-a0a8-cf658634a905", "text": "\u62e5\u6709\u5deb\u5e08\u3001\u5723\u9a91\u58eb\u548c\u541f\u6e38\u8bd7\u4eba\u7684\u89d2\u8272\u626e\u6f14\u6e38\u620f\u684c\u3002"} +{"id": "1005316", "video_name": "61a94fb9-2c58-57d1-9e63-223b95fce8dc", "text": "\u6709\u4e1c\u897f\u7206\u70b8\u4e86\uff0c\u4e0d\u540c\u7684\u52a8\u7269\u51fa\u73b0\u4e86\u3002"} +{"id": "2007436", "video_name": "88447b56-c227-5dfd-b438-42352ffd1321", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u548c\u4e00\u4f4d\u7537\u6027\u4fdd\u9556\u3002"} +{"id": "6003069", "video_name": "49bea4bc-eb72-5809-a9e1-6ffbe34bb894", "text": "\u5f53\u5149\u7ebf\u7a7f\u8fc7\u9ed1\u6697\uff0c\u9ed1\u96fe\u5916\u661f\u4eba\u75db\u82e6\u5730\u9000\u7f29\u4e86\u3002"} +{"id": "1004775", "video_name": "5852ea76-1d28-5a8f-b635-53c57ad2c0c4", "text": "\u4e00\u53ea\u7ea2\u8272\u6cf0\u5766\u673a\u5668\u4eba\u6b63\u5728\u4fee\u7406\u4e2d\uff0c\u98ce\u683c\u7c7b\u4f3c\u76ae\u514b\u65af\u3002"} +{"id": "2006261", "video_name": "fd303710-fcea-54d0-8265-3ed183390d9b", "text": "\u4e00\u4e2a\u975e\u5e38\u6dd8\u6c14\u7684\u5c0f\u7537\u5b69\u5750\u5728\u7535\u5f71\u9662\u7684\u6905\u5b50\u4e0a\uff0c\u5361\u901a\uff0c\u4eba\u7269\u3002"} +{"id": "8003432", "video_name": "ca54170e-3973-5eff-8d42-6042dea42863", "text": "\u4e00\u4e2a\u5927\u6c99\u5c18\u66b4\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u4e2d\uff0c\u4fe1\u606f\uff1a\u6570\u5b57\u5927\u8111\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007170", "video_name": "0a8c3e44-2c88-5ed5-81d0-652df428cc81", "text": "\u706b\u5c71\u7206\u53d1\uff0c\u70df\u96fe\u4e2d\u5f62\u6210\u4e86\u201cmaik\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "8002585", "video_name": "09358df8-129c-5fea-99d5-0f066469d6f8", "text": "\u4ece\u8fdc\u5904\u5c55\u73b0\u7684\u5927\u57ce\u5e02\u548c\u8ff7\u4eba\u7684\u6ca1\u6709\u4eba\u7684\u5723\u8bde\u8282\u3002"} +{"id": "3004225", "video_name": "0684974e-2850-57cb-826a-2ea3da32ac00", "text": "\u7ffb\u8bd1\uff1a\u7fe1\u7fe0\u6b63\u5728\u843d\u4e0b\uff0c\u5f62\u6210\u4e00\u6761\u7f8e\u4e3d\u7684\u9879\u94fe\u3002"} +{"id": "2003134", "video_name": "1fe5de54-7a44-59a8-aa6c-e98eb521d410", "text": "\u5c55\u793a\u4e00\u4e2a\u56e2\u7ed3\u4e00\u5fc3\u7684\u793e\u533a\u5728\u7948\u7977\u4e2d\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec\u4e0e\u771f\u4e3b\u7684\u91cd\u65b0\u8054\u7cfb\uff0c\u771f\u5b9e\u800c\u5f15\u4eba\u6ce8\u76ee\u3002"} +{"id": "1004629", "video_name": "5610f03f-ce38-52e8-aa79-2f4dc05b7559", "text": "\u7f8e\u4e3d\u7684\u6cb3\u6d41\u50cf\u52a8\u6f2b\u4e00\u6837\uff0c\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\u6765\u5230\u6cb3\u8fb9\u559d\u6c34\uff0c\u800c\u4e14\u6b63\u5728\u4e0b\u96e8\uff0c\u7f8e\u4e3d\u7684\u52a8\u6f2b\u7537"} +{"id": "6003152", "video_name": "5ef19bb0-1856-599e-89ca-e262020f26d8", "text": "\u5c06\u6b63\u4e49\u5929\u5e73\u7684\u52a8\u753b\u89d2\u8272\u548c\u8fd0\u52a8\u5411\u4e0a\u548c\u5411\u4e0b\u79fb\u52a8\u3002"} +{"id": "8003547", "video_name": "38f1b492-44a0-568f-acc9-c394362f369e", "text": "\u8349\u5730\u4e0a\uff0c\u7537\u5b69\u5973\u5b69\u5750\u5728\u4e00\u8d77\uff0c\u8424\u706b\u866b\u5728\u5468\u56f4\u98de\u821e\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u5faa\u73af\u89c6\u9891\uff0c\u9010\u6e10\u62c9\u8fdc"} +{"id": "7003350", "video_name": "ac49cd37-1640-504c-98bf-2e732daf3985", "text": "\u8ddf\u968f\u4e00\u4e2a\u597d\u5947\u7684\u5c0f\u7537\u5b69\u4e9a\u5386\u514b\u65af\u63a2\u7d22\u4e00\u4e2a\u5145\u6ee1\u795e\u5947\u7684\u56fe\u4e66\u9986\u3002\u5728\u6d4f\u89c8\u4e66\u67b6\u65f6\uff0c\u4ed6\u53d1"} +{"id": "4002919", "video_name": "155ab658-961a-51d0-8c2d-fb9fc781888d", "text": "\u76f8\u673a\u5bf9\u51c6\u4e86\u4e00\u4e2a\u5377\u53d1\u548c\u84dd\u8272\u8fd0\u52a8\u886b\u7684\u7537\u5b69\uff0c\u7537\u5b69\u4eff\u4f5b\u5728\u98d8\u6d6e\u4e2d\uff0c\u9677\u5165\u4e86\u4e00\u4e2a\u5145\u6ee1\u767d"} +{"id": "7002490", "video_name": "259be83d-5de9-57c8-b704-c9929912d8dd", "text": "\u9c7c\u513f\u5411\u670b\u53cb\u9053\u522b\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u5f00\u59cb\u4e86\u4ed6\u7684\u5f52\u7a0b\u3002"} +{"id": "2005801", "video_name": "57af985d-db3b-5a1f-830d-24cd7f295f65", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u58eb\u5175\u6b63\u5728\u6218\u573a\u4e0a\u51c6\u5907\u91c7\u53d6\u884c\u52a8\u6765\u5e2e\u52a9\u4e00\u540d\u88ab\u51fb\u4e2d\u7684\u6218\u53cb\uff0c\u60c5\u8282\u5267\u70c8\u3002"} +{"id": "1003262", "video_name": "3c0b3c2a-8bf3-5643-bf10-275ebbba570e", "text": "\u901f\u5ea6\u589e\u957f\u7684\u5efa\u7b51\u7269\uff0c\u9a6c\u514b\u00b7\u590f\u5361\u5c14\u521b\u4f5c\u3002"} +{"id": "1006909", "video_name": "7e5c6090-d26b-5a18-96f3-a2c3d40a4032", "text": "1987\u5e74\u6cd5\u62c9\u5229\u53d1\u52a8\u5f15\u64ce\uff0c\u7b49\u5f85\u4e00\u7ea7\u65b9\u7a0b\u5f0f\u6bd4\u8d5b\u5f00\u59cb\u3002"} +{"id": "1003603", "video_name": "4273ed5d-64af-5eeb-b8b3-d02cd10960bd", "text": "\u6709\u8da3\u7684\u50f5\u5c38\u7535\u5f71\uff0c\u50f5\u5c38\u6f14\u594f\u6447\u6eda\u4e50\u3002"} +{"id": "3005603", "video_name": "363f6e76-636b-5489-8e4a-94b2a5d4c1cf", "text": "\u51b0\u788e\u88c2\u3002\u5c0f\u788e\u7247\u3002\u9897\u7c92\u3002\u7206\u70b8\u3002\u80fd\u91cf\u3002\u5185\u90e8\u53d1\u5149\u3002"} +{"id": "1004057", "video_name": "4b36501b-a682-5922-be09-2bbe92ac7c6e", "text": "\u5728\u4e00\u4e2a\u5927\u5c71\u8109\u4e2d\uff0c\u89c2\u97f3\u83e9\u8428\u9a91\u7740\u4e00\u53ea\u6709\u7740\u957f\u800c\u9ed1\u7684\u7fc5\u8180\u7684\u8001\u864e\u98de\u8fc7\u4e00\u5ea7\u53e4\u8001\u7684"} +{"id": "4004851", "video_name": "7f0c85d0-d354-5f97-8642-757a12592d04", "text": "\u804c\u4e1a\u7bee\u7403\u7403\u5458\uff0c\u89c6\u98912\u5206\u949f\u3002"} +{"id": "3003816", "video_name": "4c974d25-451f-532a-b961-207144f55b6d", "text": "\u5723\u8bde\u8282\u65f6\uff0c\u809a\u5b50\u91cc\u6709\u5564\u9152\u809a\u7684Chewbacca\u6234\u7740\u5723\u8bde\u8001\u4eba\u5e3d\u5b50\u3002"} +{"id": "2006087", "video_name": "e4d29abb-9921-5b7b-afac-f72e6b0dc986", "text": "20\u79d2\u7684\u89c6\u9891\uff0c\u5b9d\u9a6cX5\u53d1\u751f\u4e86\u4e00\u6b21\u5c0f\u4e8b\u6545\uff0c\u7136\u540e\u8fdb\u5165\u4e86\u505c\u8f66\u573a\uff0c\u4e4b\u540e\u5728\u62cd\u5356\u4f1a\u4e0a\u88ab\u5356\u51fa\uff0c\u7136\u540e\u88ab\u88c5"} +{"id": "4002367", "video_name": "e19fdb86-2d8e-5d28-8c45-7e4aa681d717", "text": "\u4e00\u4e2a\u6027\u611f\u7684\u52a8\u6f2b\u5973\u5b69\u7684\u52a8\u6f2b\u98ce\u683c"} +{"id": "6003892", "video_name": "b6becfaa-2cae-5f17-b660-6ffe2041c61a", "text": "\u667a\u6167\u8001\u9e45\u8b66\u544a\u9e1f\u7fa4\uff0c\u63d0\u9192\u4ed6\u4eec\u6467\u6bc1\u6500\u7f18\u690d\u7269\uff0c\u4ee5\u514d\u5b83\u751f\u957f\u5a01\u80c1\u3002\u5176\u4ed6"} +{"id": "7002174", "video_name": "7a7316e0-e4ca-5800-833c-79d59ab7b5cd", "text": "\u79cb\u65e5\u65f6\u8282\uff0c\u6444\u50cf\u673a\u89c6\u89d2\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c8K\u3002"} +{"id": "3004011", "video_name": "7c6909e3-57df-5536-a870-d2518d725a7d", "text": "\u4e00\u4e2a\u9762\u5bf9\u7740\u6444\u50cf\u673a\u7684\u5f3a\u58ee\u3001\u575a\u5b9a\u7684\u7537\u4eba\uff0c\u4ed6\u808c\u8089\u53d1\u8fbe\u3001\u523b\u677f\u51b7\u9759\uff0c\u4f60\u53ef\u4ee5\u4ece\u4ed6\u7684\u773c\u795e\u4e2d\u770b\u5230"} +{"id": "6003197", "video_name": "de0d0da3-ca32-5517-ade0-ba1cef51275e", "text": "\u5728\u4e00\u4e2a\u9713\u8679\u8272\u672a\u6765\u4e3b\u4e49\u661f\u7403\u4e0a\u7684\u65f6\u5c1a\u54e5\u4f26\u6bd4\u4e9a\u5973\u6027\uff0c\u94f6\u6cb3\u80cc\u666f\u3002"} +{"id": "3005551", "video_name": "c5b74320-f472-53bc-ab7f-7c4254099ab0", "text": "\u53ef\u7231\u7684\u5154\u5b50\u5728\u661f\u7a7a\u4e0b\u6c89\u7761\u3002"} +{"id": "0003488", "video_name": "3e76d4e1-393f-5f43-8e78-ad468c5cc2ae", "text": "MC\u8001\u9f20\u7ad9\u5728\u82b1\u56ed\u91cc\u8bf4\u8bdd\uff0c\u98ce\u683c\u5361\u901a\u3002"} +{"id": "3005428", "video_name": "82ed6426-2ff9-5826-b3e7-251f3aa7edd6", "text": "\u4e00\u53ea\u9e2d\u5b50\u5728\u6708\u7403\u4e0a\u98de\u884c\u3002"} +{"id": "2007035", "video_name": "f00b9d34-c42b-5d01-9ab6-184e31ddcbdd", "text": "\u4e00\u5bf9\u7f8e\u4e3d\u7684\u60c5\u4fa3\u8d70\u8fdb\u8857\u9053\u3002"} +{"id": "2006751", "video_name": "10490066-000b-5f52-ad16-af2d4c9d174d", "text": "\u7075\u829d\u83c7\u904d\u5e03\u5168\u7403\u3002"} +{"id": "1005988", "video_name": "6e0e4069-d38d-5540-b243-efa0f6d2296e", "text": "\u4e0a\u5e1d\u5728\u591a\u4e2a\u5168\u7403\u4f4d\u7f6e\u7684\u8499\u592a\u5947\u4e2d\u5c55\u793a\u4e86\u4e16\u754c\u7684\u591a\u6837\u6027\uff0c\u4ea4\u66ff\u5c55\u793a\u548c\u5e73\u548c\u6df7\u4e71\u7684\u573a\u666f\uff0c\u4ee3\u8868\u7740"} +{"id": "4002291", "video_name": "d8cb9239-f019-5928-a97c-fec94ec1d7af", "text": "\u7537\u5b50\u5728\u57ce\u5e02\u7684\u96e8\u591c\u91cc\u4e0a\u4e86\u51fa\u79df\u8f66\u3002\u82ac\u5947\u7535\u5f7116:9\u3002"} +{"id": "2003945", "video_name": "25e4efe2-5296-5e93-b995-a553dd0e62ef", "text": "\u5929\u7a7a\u4e2d\u6700\u4e0d\u771f\u5b9e\u7684\u753b\u9762\uff0c\u662f\u9cb8\u9c7c\u548c\u9a91\u624b\u7684\u5f62\u8c61\u3002"} +{"id": "4003738", "video_name": "a1592121-32d7-53db-a975-822c16c24c9b", "text": "\u5728\u4e00\u8258\u5927\u6e38\u8247\u4e0a\u6b23\u8d4f\u7f8e\u4e3d\u7684\u65e5\u843d\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\uff0c\u6781\u81f4\u903c\u771f\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "6003015", "video_name": "9afe1c26-de8a-514a-b2e2-aac851f6708a", "text": "\u5728\u5c0f\u5c4b\u91cc\u67097\u5f20\u5c0f\u77ee\u4eba\u5e8a\u3002"} +{"id": "2005865", "video_name": "8a14423c-bc5f-55c7-9327-bd97c0a83c36", "text": "\u4e00\u4e2a\u4eba\u5b66\u4e60\u65b0\u6280\u80fd\u6210\u4e3a\u4e00\u540d\u4f18\u79c0\u7684\u53a8\u5e08\u3002"} +{"id": "0005435", "video_name": "1ac72186-8665-51da-a072-7dbd1ec3344c", "text": "\u503e\u76c6\u5927\u96e8\u4e2d\u7684\u9661\u5ced\u5ca9\u58c1"} +{"id": "6004490", "video_name": "e05dcc3e-ca83-536f-8261-bca5bba135ce", "text": "\u6280\u672f\u5b66\u6821\u7684\u6807\u5fd7"} +{"id": "2005581", "video_name": "172bbdec-d2ba-5465-8fd5-385286edf4af", "text": "\u5927\u6c49\u5821\u5750\u5728\u536b\u751f\u7eb8\u4e0a\u3002"} +{"id": "1003189", "video_name": "3aa94631-2af6-5b52-bcbe-4e07d3dd5e73", "text": "\u5728\u590f\u5a01\u5937\u548c\u9ca8\u9c7c\u4e00\u8d77\u51b2\u6d6a\u7684\u9e21"} +{"id": "7002713", "video_name": "26adf5f3-0cab-51aa-ae63-9e2f1b177560", "text": "\u5927\u6d77\u548c\u5c71\u5cf0\u7684\u65e5\u843d\u9010\u6e10\u653e\u5927\u3002"} +{"id": "6004705", "video_name": "56f53741-4075-5477-b7a6-28a3025bb5cb", "text": "\u4e00\u6761\u6df1\u9083\u9ed1\u6697\u7684\u8d70\u5eca\uff0c\u5899\u58c1\u4e0a\u51fa\u73b0\u4e86\u4ee4\u4eba\u4e0d\u5b89\u7684\u53d1\u5149\u9b3c\u8138\uff0c1940\u5e74\u4ee3\u7684\u6280\u672f\u5f69\u8272"} +{"id": "3004070", "video_name": "3ef4d61f-9e15-5210-af04-06f306504d8f", "text": "\u5728\u4e1b\u6797\u4e2d\u6ce8\u89c6\u7740\u704c\u6728\u4e1b\u7684\u7f8e\u6d32\u8c79\u3002"} +{"id": "2003190", "video_name": "e33b2255-e444-566b-8fbb-53bf037d1c6c", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u513f\u5b50\u4e00\u8d77\u6253\u677f\u7403\uff0c\u4ed6\u7684\u59bb\u5b50\u5728\u65c1\u8fb9\u89c2\u770b\uff0c\u7537\u4eba\u5728\u51fb\u7403\uff0c\u513f\u5b50\u5728\u6295\u7403\u3002\u9633\u5149\u660e"} +{"id": "3005681", "video_name": "e74aa596-7909-534b-b077-005cd94d6cc3", "text": "\u88ab\u6539\u9020\u8fc7\u7684\u6d77\u6e7e\u73b0\u5728\u662f\u6e05\u6d01\u548c\u4fdd\u80b2\u7684\u5178\u8303\uff0c\u5728\u4e00\u4e2a\u548c\u5e73\u7684\u6d77\u5cb8\u6d77\u6e7e\u4e2d\uff0c\u88ab\u9ad8\u8038\u7684\u60ac\u5d16\u548c"} +{"id": "8001509", "video_name": "9848923e-e1b0-50c0-9ae6-b17696c8e1cf", "text": "\u8be1\u5f02\u7684\u8c6a\u5b85\u5916\u666f\uff1a\u4ece\u62cd\u6444\u7684\u7834\u65e7\u8c6a\u5b85\u5f00\u59cb\uff0c\u5b83\u77d7\u7acb\u5728\u5c71\u9876\uff0c\u4e3a\u6050\u6016\u6545\u4e8b\u8bbe\u7f6e\u4e86\u573a"} +{"id": "1006024", "video_name": "6eb3bef5-924d-585d-a678-f79da3171d6d", "text": "\u4e00\u628a\u5409\u4ed6\u548c\u4e00\u4e2a\u51b2\u6d6a\u677f\u5927\u6ce2\u6d6a\u3002"} +{"id": "0006571", "video_name": "2ec7ad77-a6b5-54e7-b9cc-810718761153", "text": "\u4e00\u4e2a\u4eba\u5728\u5c71\u9876\u7948\u7977\uff0c\u66f4\u591a\u7684\u4eba\u5c06\u53cc\u624b\u653e\u5728\u8f66\u4e0a\uff0c\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "6004701", "video_name": "3e5870d8-fd4c-519d-905e-91e373716f90", "text": "DJ \u6309\u4e0b\u64ad\u653e\u952e\u8d5a\u53d6\u6570\u767e\u4e07\u7f8e\u5143\u3002"} +{"id": "6002406", "video_name": "1b0ba595-3ad3-5183-9984-36f367cacd66", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u8d70\u5728\u4e00\u6392\u6781\u9ad8\u6781\u5927\u7684\u82b1\u4e1b\u4e4b\u95f4\u3002 \n\nSource sentence: The cat is sleeping on the windowsill in the afternoon sun. \n\n\u732b\u513f"} +{"id": "2006169", "video_name": "1842d00c-e502-5783-a5d5-0a55e068ff98", "text": "\u6d77\u6d0b\u7684\u6c34\u82b1\u98de\u6e85\u5230\u957f\u6ee1\u68d5\u6988\u6811\u7684\u6d77\u6ee9\u4e0a\u3002\u4fe1\u606f\uff1a\u65b0\u9c9c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005437", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "\u5728\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u675f\u805a\u5149\u706f\u7167\u5728\u739b\u4e3d\u8eab\u4e0a\uff0c\u5979\u73b0\u5728\u5750\u5728\u4e00\u628a\u6728\u6905\u4e0a\uff0c\u62b1"} +{"id": "6002757", "video_name": "15624278-b1a4-5822-acb3-c9d7d8af10fa", "text": "\u4e00\u68f5\u7b49\u5f85\u4e0d\u53ef\u907f\u514d\u7684\u6811\u3002"} +{"id": "8003574", "video_name": "149ee29a-16ad-5199-81b4-0dbafc80bcbc", "text": "\u72d7\u7ad9\u5728\u5e93\u514b\u8239\u957f\u7eaa\u5ff5\u7891\u7684\u9876\u90e8\u3002"} +{"id": "3006296", "video_name": "6119e467-52dc-5b68-9e37-8ffa62186d55", "text": "\u4e00\u5f20\u5c0f\u732b\u5728\u7eff\u8349\u5730\u4e0a\u73a9\u800d\u7684\u7167\u7247\uff0c\u4ee5\u56fd\u5bb6\u516c\u56ed\u4e3a\u4e3b\u9898\u7684\u666f\u89c2\uff0c\u903c\u771f\u7684\u8d85\u9ad8\u6e05\u3002\u4fe1\u606f\uff1aQuiero teta"} +{"id": "2003785", "video_name": "62b69c14-3406-5e91-aae6-5f7e5df516d6", "text": "\u4e00\u5e45\u573a\u666f\uff0c\u6355\u6349\u4e86\u5728\u9ed1\u6697\u7684\u591c\u665a\u4e2d\u7ad6\u6301\u7684\u70b9\u71c3\u7684\u706b\u67f4\u7684\u7cbe\u534e\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4"} +{"id": "1006326", "video_name": "73c99525-7cc1-5735-9be6-f34119d47242", "text": "\u9ed1\u8272\u8fde\u5e3d\u76ae\u5939\u514b\u3001\u9762\u90e8\u9ab8\u9aa8\u5f69\u7ed8\u7684\u7537\u5b50\u5728\u6df1\u591c\u7684\u51ac\u6797\u80cc\u666f\u4e0b\u5f39\u594f MIDI \u952e\u76d8"} +{"id": "1006259", "video_name": "72a9fdac-0a2c-56c0-b3e6-f346b9a8beed", "text": "\u4e00\u4e2a\u8df3\u821e\u7684\u673a\u68b0\u4eba\uff0cHR Giger\u827a\u672f\u98ce\u683c\u3002"} +{"id": "6003770", "video_name": "81389331-c3f9-51f4-8654-26a5ca6e0c3e", "text": "\u5728\u5496\u5561\u5385\u5185\uff0c\u4e00\u53f0\u8001\u5f0f\u590d\u53e4\u7535\u89c6\u673a\u653e\u7f6e\u5728\u5730\u677f\u4e0a\uff0c\u5448\u73b0\u51fa\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u7684\u98ce\u683c\u3002 \n\nSource sentence"} +{"id": "7004303", "video_name": "d7536e68-8773-5ea4-989d-4d807494f4d8", "text": "\u9886\u5e26\u4e0d\u65ad\u53d8\u6362\u7684\u7537\u5b50\u5411\u955c\u5934\u8d70\u6765\u3002"} +{"id": "2007735", "video_name": "7985f7bd-0d8a-52ff-aced-415004f29051", "text": "\u4e91\u6735\u5347\u817e\u5982\u96fe\u5316\u6210\u5929\u7a7a"} +{"id": "6003417", "video_name": "6f86d18e-7990-5aa4-ba88-5869baac1d5f", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u82b1\u56ed\u91cc\uff0c\u7a7f\u7740\u767d\u8272\u7684\u88d9\u5b50\uff0c\u770b\u7740\u89c2\u4f17\u5fae\u7b11\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "1004529", "video_name": "5422ead2-b76f-5fba-824c-1d1f06575b6e", "text": "\u542f\u52a8\u8239\u8236\u5e94\u6025\u53d1\u7535\u673a\u3002"} +{"id": "3004268", "video_name": "b48a606a-725e-51a4-aa10-a288840701e8", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5728\u88ab\u68b5\u9ad8\u753b\u8fc7\u7684\u6d77\u6ee9\u4e0a\u884c\u8d70\u3002"} +{"id": "2006906", "video_name": "ee25a710-45e7-58cc-934c-c2c916e19a7f", "text": "\u8fd9\u662f\u4e00\u5bf9\u60c5\u4fa3\uff0c\u7537\u5b69\u6234\u7740\u773c\u955c\u5750\u5728\u5973\u5b69\u7684\u817f\u4e0a\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u5973\u5b69\u4f4e\u5934\u770b\u7740\u4ed6\u4eec\uff0c\u4e24"} +{"id": "4004836", "video_name": "86b44d9e-d219-5776-9b45-e9fc4e2eaf47", "text": "\u903c\u771f\u7684\u7537\u4eba\u8d70\u5728\u6d82\u9e26\u6d82\u6ee1\u7684\u5c0f\u5df7\u4e2d\u300216:9"} +{"id": "1006489", "video_name": "76d85d5f-4b79-52d7-a19b-ad1bb51c979c", "text": "\u6218\u6597\u3001\u6218\u58eb\u3001\u5251\u3001\u80dc\u5229\u3001\u98df\u7269\u3001\u5e86\u795d\u3001\u73b0\u5b9e\u3002"} +{"id": "1003150", "video_name": "3a15dd46-0e63-5fb6-a7ed-a98cf2b67c47", "text": "Translated sentence: \u5929\u4e0a\u7684\u7eb3\u5c14\u900a\u00b7\u66fc\u5fb7\u62c9\u3002"} +{"id": "2003948", "video_name": "71c684b6-bd96-5500-a7cc-f15e50c6d156", "text": "\u8fd9\u662f\u4e00\u4e2a\u6e29\u6696\u8212\u9002\u3001\u4f46\u53c8\u5947\u602a\u7684\u5c0f\u5730\u65b9\uff0c\u5230\u5904\u6446\u6ee1\u4e86\u5404\u79cd\u5947\u602a\u548c\u73cd\u5947\u7684\u4e1c\u897f\u3002\u5979\u770b"} +{"id": "1003873", "video_name": "475ddfee-6a4e-5376-bdab-7f21ad6c0b5a", "text": "\u5728\u5c0f\u578b\u76841960\u5e74\u4ee3\u7235\u58eb\u4ff1\u4e50\u90e8\u91cc\uff0c\u4eba\u7fa4\u5728\u94a2\u7434\u952e\u4e0a\u8df3\u821e\u3002"} +{"id": "1006046", "video_name": "6f0ee42b-3e8a-5467-bedb-e101d9f47acb", "text": "\u6211\u60f3\u8981\u5236\u4f5c\u4e00\u4e2a\u9177\u70ab\u7684\u89c6\u9891\u80cc\u666f\uff0c\u65cb\u8f6c\u7684\u5706\u5708\u5e26\u6709\u5149\u5f71\u6548\u679c\u3002"} +{"id": "6002122", "video_name": "c14830c0-1258-53bb-ac88-f65686c4e928", "text": "\u5de5\u4eba\u5173\u95ed\u9600\u95e8\u4ee5\u9632\u6b62\u7206\u70b8\u3002"} +{"id": "6004951", "video_name": "9babb189-c3df-538c-9e6e-b9eaa016db5e", "text": "\u6d88\u606f\uff1a\u4ece\u9ad8\u5904\u770b\uff0c\u4e00\u5927\u7fa4\u6c7d\u8f66\u7ec4\u6210\u4e86\u201cBilal\u201d\u8fd9\u4e2a\u5355\u8bcd\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004694", "video_name": "653fef0d-ec87-512b-b9cd-2c3b89d25359", "text": "\u9ed1\u6697\u52bf\u529b\u5c06\u4ed6\u7684\u624b\u4e3e\u8fc7\u5934\u9876\uff0c\u91ca\u653e\u51fa\u660e\u4eae\u7684\u5149\u8292\u7167\u8000\u7740\u5929\u7a7a\u3002"} +{"id": "6003410", "video_name": "8293d4e6-91cf-52a1-bc84-20eea4f1b78c", "text": "\u65e0\u58f0\u7535\u5f71\u4e2d\u7684\u68ee\u6797\u91cc\u7684\u5927\u677e\u6811\uff0c\u4f4e\u5206\u8fa8\u7387\uff0c\u9897\u7c92\u611f\u5f3a\uff0c\u9ed1\u6697\uff0c\u9ed1\u767d\u84dd\u8272\u3002\n\nSource sentence: The cat"} +{"id": "3003009", "video_name": "96f22e5c-e51b-5cdd-9103-a39d451bc61c", "text": "\u5973\u8d85\u7ea7\u6b4c\u624b\uff0c\u7ad9\u5728\u7ebd\u7ea6\u6469\u5929\u5927\u697c\u524d\u3002"} +{"id": "0006284", "video_name": "29ffa85a-a90c-5e0d-aede-51e4160bbe52", "text": "2367\u5e74\u4ece\u4e0a\u65b9\u89c2\u5bdf\u5230\u7684\u9713\u8679\u884c\u661f\u5730\u7403\u7684\u62bd\u8c61\u573a\u666f\u3002"} +{"id": "6002988", "video_name": "4b4e9d9b-9473-5862-bc17-5ee4ece50d2b", "text": "\u4e00\u53f0\u6709\u5929\u4f7f\u6885\u5854\u7279\u9686\u5f62\u8c61\u7684\u7535\u89c6\u3002"} +{"id": "1004460", "video_name": "52846aa2-775e-5a26-ac54-414bd5beec24", "text": "\u72ed\u7f1d\u626b\u63cf\u6548\u679c 2001\u592a\u7a7a\u6f2b\u6e38"} +{"id": "1005459", "video_name": "64513c22-86b0-573c-931c-e622fc2f18c0", "text": "\u821e\u53f0\u4e0a\u7684\u6b4c\u624b\u5728\u5370\u5ea6\u5c0f\u6751\u5e84\u8868\u6f14\u3002"} +{"id": "5001170", "video_name": "63ddaba8-153c-572a-99ec-e4e3ab9e05d4", "text": "\u70ed\u95e8\u793e\u533a\uff0c\u591c\u665a\u3002\u4e24\u540d\u7a7f\u7740\u4f20\u7edf\u957f\u888d\u7684\u7537\u5b50\u5750\u5728\u684c\u524d\u6253\u9ab0\u5b50\u6e38\u620f\u3002\u683c\u5f0f\u4e3aHD 16:9\u3002"} +{"id": "4003994", "video_name": "726f4110-2882-5da8-a155-efa895a49634", "text": "\u7535\u5b50\u7c92\u5b50\u5e7d\u7075\u5728\u795e\u79d8\u4eea\u5f0f\u4e2d\u4e0e\u95ea\u7535\u548c\u4e0d\u660e\u98de\u884c\u7269\u4e00\u8d77\u51fa\u73b0\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e80\u5e74\u4ee3\u7684\u5361\u901a\u548c"} +{"id": "1004890", "video_name": "5a5cbb95-3dc4-5726-b620-e3d860c55173", "text": "\u9ad8\u6e05\u89c6\u9891\n\n\u4e24\u4e2a\u7537\u5b69\u8d70\u5728\u9633\u5149\u660e\u5a9a\u7684\u8857\u9053\u4e0a\uff0c\u5176\u4e2d\u4e00\u4e2a\u62ff\u7740\u4e00\u4e2a\u94b1\u5305\u3002"} +{"id": "2003418", "video_name": "a770b480-ea8a-5a03-abf2-1370d170dbde", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6c34\u9762\u4e0a\u8df3\u821e\u3002\u7ed9\u5979\u7a7f\u8863\u670d\uff0c\u4e0d\u8981\u7a7f\u6bd4\u57fa\u5c3c\u3002"} +{"id": "7002149", "video_name": "da9c241f-5fa1-5db7-91ff-c4bc32c808df", "text": "\u4e00\u4e2a\u6709\u673a\u5668\u4eba\u7684\u94a2\u94c1\u5382\u91cc\u7684\u5de5\u4eba"} +{"id": "3003853", "video_name": "30fb9ccc-711c-5777-a8e0-05809d58412f", "text": "\u4e00\u4e2a\u88ab\u706b\u7130\u5305\u56f4\u7684\u7537\u4eba\u4e0e\u4e00\u53ea\u5ca9\u77f3\u602a\u7269\u6218\u6597\u7684\u573a\u666f\u3002"} +{"id": "2005253", "video_name": "ffb89d6a-0e47-561b-a747-54ed3d98a306", "text": "\u4e00\u4e2a\u7535\u5f71\u9662\u821e\u53f0\u5e73\u53f0\uff0c\u4e00\u4e2a\u52a8\u753b\u7684\u5305\u85cf\u602a\u7537\u5b69\u5728\u9ad8\u8349\u4e1b\u4e2d\u884c\u8d70\uff0c\u6811\u53f6\u843d\u5728\u4ed6\u8eab\u8fb9\uff0c\u4e00\u4e2a\u91d1\u8272\u7684\u53f7\u89d2"} +{"id": "2006945", "video_name": "c84800d2-8a29-512b-bc34-12cf768f92e7", "text": "\u5728\u6e56\u666f\u4e2d\uff0c\u4e00\u53ea\u84dd\u8272\u7684\u8725\u8734\u6b63\u5728\u73a9\u7eff\u8272\u7684\u94bb\u77f3\u3002"} +{"id": "7003541", "video_name": "1367abe7-153e-59c3-90cb-3dc8871717c6", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u53ea\u68d5\u8272\u7684\u732b\u4e0d\u89c1\u4e86\u3002\u5c0f\u7537\u5b69\u56db\u5904\u5bfb\u627e\u4ed6\u7684\u5ba0\u7269\u732b\uff0c\u6ca1\u6709\u4e86\u4ed6\u7684\u68d5\u8272\u732b\uff0c\u4ed6\u611f\u5230\u5931"} +{"id": "5001656", "video_name": "6f492da3-445d-5c8b-94cd-eb39ee9daa9f", "text": "Source sentence: The old grandfather who played in the ball bath\n\nTranslation: \u73a9\u6ce1\u6ce1\u6d74\u7684\u8001\u7237\u7237\u3002"} +{"id": "1006064", "video_name": "6f51412a-a856-54fe-a4e1-30e07b66444f", "text": "\u4e00\u53ea\u7334\u5b50\u5728\u5c71\u4e0a\u7684\u6811\u4e0a\u5750\u7740\uff0c\u65f6\u503c\u9ec4\u660f\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16\uff1a9\u3002"} +{"id": "3003345", "video_name": "8b5f0036-7883-5e1c-8821-e7a6f76c5e4e", "text": "\u6fc1\u6c34\u6eaa\u7554\u7684\u4e00\u500b\u8001\u6f01\u6751\u3002\u820a\u6f01\u8239\u505c\u6cca\u5728\u6cb3\u5cb8\u4e0a\uff0c\u88ab\u6fc3\u9727\u7c60\u7f69\u3002"} +{"id": "3004600", "video_name": "7c3372da-46db-5cbb-a855-6da79680f5a2", "text": "\u8001\u5e74\u6536\u8d39\u82f1\u4fca\u7537\u5b50\uff0c\u7535\u5f71\u5316\uff0c8K\uff0c\u6545\u4e8b\uff0c\u7535\u5f71\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9510\u5229\u3002"} +{"id": "4004297", "video_name": "2b6295c4-56bc-5aad-97a1-cea814c28e88", "text": "\u8fd9\u5ea7\u96d5\u50cf\u662f\u6cd5\u56fd\u9001\u7ed9\u7f8e\u56fd\u7684\u793c\u7269\u3002"} +{"id": "1005896", "video_name": "6c75f99b-b19e-5c83-86b4-f91312823867", "text": "\u4e00\u4e2a\u6709\u5c71\u4e18\u548c\u51e0\u5ea7\u5c0f\u623f\u5b50\u7684\u53e4\u8001\u6751\u5e84\u3002"} +{"id": "7004390", "video_name": "aff20f78-b3b4-58d7-96ca-e3f2e2ed7970", "text": "\u5c40\u4fc3\u4e0d\u582a\u7684\u529e\u516c\u5ba4\uff0c\u5927\u684c\u5b50\u4e0a\u5806\u6ee1\u4e86\u6587\u4ef6\uff0c\u4e71\u7cdf\u7cdf\u7684\uff0c\u6295\u5f71\u51fa3D\u3001360\u5ea6\u3001\u865a\u62df\u4e4b"} +{"id": "2004315", "video_name": "3a910523-7fda-5f60-8a46-d44f5a461dce", "text": "\u6709\u7740\u4ee4\u6751\u6c11\u80cc\u810a\u53d1\u51c9\u7684\u53ef\u6015\u540d\u58f0\u3002"} +{"id": "0005731", "video_name": "20424b40-4f36-5e76-9c19-98845fb257de", "text": "\u591c\u665a\u5893\u5730\u4e2d\u53d1\u5149\u773c\u775b\u7684\u591c\u884c\u751f\u7269\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u6700\u9ad8\u54c1\u8d28\uff0c\u903c\u771f\u6770\u4f5c\uff0c\u6050\u6016\u53ef\u6015"} +{"id": "1006878", "video_name": "7db66897-27ea-5cc3-9db3-cca746f8d1ed", "text": "\u4e00\u4e2a\u9ed1\u8272\u7684\u661f\u5149\u95ea\u70c1\u7684\u591c\u665a\uff0c\u91d1\u8272\u7684\u661f\u661f\u75af\u72c2\u5730\u8fd0\u52a8\u7740\uff0c\u5f62\u6210\u87ba\u65cb\u5f62\u5411\u5de6\u5c55\u5f00\u3002"} +{"id": "8002237", "video_name": "76572994-9aa9-5703-bcbd-068da851aa3f", "text": "\u5e26\u9633\u53f0\u548c\u6d77\u666f\u7684\u516c\u5bd3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003875", "video_name": "475ea7d3-01fe-59e5-afed-5e4ef7f71f68", "text": "\u4e00\u5e45\u4ee4\u4eba\u4e0d\u5bd2\u800c\u6817\u7684\u753b\u9762\uff0c\u63cf\u7ed8\u4e86\u56f0\u5728\u6d1e\u7a74\u4e2d\u7684\u6076\u9b54\u4eec\u5728\u7ecf\u8fc7\u5341\u56db\u4e2a\u5b87\u5468\u671f\u95f4\u7b56\u5212"} +{"id": "4003354", "video_name": "017292ee-9a72-56e1-8de6-929b92c88f1c", "text": "\u9ed1\u8272\u7684\u80cc\u666f\u91cc\uff0c\u65f6\u4e0d\u65f6\u4f1a\u6709\u732b\u773c\u775b\u5728\u7728\u3002"} +{"id": "3003949", "video_name": "cd894a36-3123-581f-9e7a-86a798535a29", "text": "\u5361\u624e\u7c73\u5b89\u53d7\u4e86\u91cd\u4f24\u3002\u552f\u4e00\u6551\u4e86\u6211\u4e00\u547d\u7684\u662f\u6211\u8fd8\u7a7f\u7740\u7684\u5b87\u822a\u670d\u3002\u56e0\u4e3a\u8231\u5185\u5145\u6ee1\u4e86\u70df"} +{"id": "8001515", "video_name": "56685f43-7519-5b47-9a51-2f6fddb2d084", "text": "\u524d\u65b9\u6709\u68ee\u6797\u6e05\u9664\uff0c\u9a0e\u99ac\u4eba\u5728\u591c\u665a\u9010\u6f38\u63a5\u8fd1\u5bb6\u4e2d\u7684\u68ee\u6797\u3002"} +{"id": "4002165", "video_name": "5fc35853-02de-5258-af13-0c8d42abf620", "text": "\u9060\u8655\uff0c\u4e00\u884c\u9d5d\u98db\u8d8a\u591c\u665a\u7684\u6708\u4eae\u5929\u7a7a\uff0c\u5929\u7a7a\u4e0b\u65b9\u662f\u91ce\u751f\u6c60\u5858\u3002"} +{"id": "4002429", "video_name": "8303d905-5ad7-5b4f-af28-564431ef5c90", "text": "\u4e3a\u56fe\u50cf\u8d4b\u4e88\u66f4\u591a\u6df1\u5ea6\u548c\u52a8\u6001\u53d8\u5316\u3002"} +{"id": "8003135", "video_name": "dc5be116-0952-5ad7-b451-76f05cfd89bc", "text": "\u4eba\u4eec\u6ee1\u6000\u611f\u6fc0\u548c\u559c\u60a6\u5730\u5bf9\u7740\u76f8\u673a\u5fae\u7b11\uff0c\u80cc\u666f\u4e2d\u6709\u8fd0\u52a8\u3002 \n\n(Note: The word \"image\" is not necessary in Chinese as it is implied"} +{"id": "8001650", "video_name": "c90e61e6-eb2f-53f3-835a-9727adca5b37", "text": "\u4e00\u53ea\u96c4\u4f1f\u7684\u9f99\u5728\u5d0e\u5c96\u7684\u5c71\u8109\u4e0a\u7ff1\u7fd4\uff0c\u5b83\u7684\u9cde\u7247\u5728\u9633\u5149\u4e0b\u95ea\u95ea\u53d1\u5149\uff0c\u4e91"} +{"id": "0003935", "video_name": "0017dfe0-aff8-5a59-ac28-3c5138f623d9", "text": "\u9ad8\u6e05\u3001\u7535\u5f71\u8d28\u611f\u3001\u8def\u3001\u732b\u3001\u66b4\u98ce\u96e8\u3002"} +{"id": "1006793", "video_name": "7c6f2606-2eb3-5cc6-af8f-6e5cd564b54d", "text": "\u751f\u6210\u62c9\u52a0\u9010\u6e10\u63a5\u53d7\u5b69\u5b50\u5e76\u5411\u5361\u4ec0\u00b7\u62c9\u59c6\u8868\u8fbe\u611f\u6fc0\u4e4b\u60c5\u7684\u52a8\u753b\u573a\u666f\u3002"} +{"id": "2007080", "video_name": "2dec50a8-2ae5-5566-9098-f5178a1fdb01", "text": "\u4e00\u53ea\u7334\u5b50\u5728\u4e1b\u6797\u4e2d\uff0c\u4ed6\u8bd5\u56fe\u4ece\u6728\u5934\u65e5\u5fd7\u4e2d\u62d4\u51fa\u9489\u5b50\uff0c\u8fdb\u884c3D\u52a8\u753b\u3002\n\nSource sentence: The restaurant serves delicious Chinese cuisine, including dumplings, noodles"} +{"id": "5001596", "video_name": "0e318be6-78db-5a7a-91d2-c4d6c29070bf", "text": "\u8fdc\u5904\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u7537\u4eba\uff0c\u4ed6\u8eab\u65c1\u6709\u4e00\u4e2a\u5973\u4eba\uff0c\u4ed6\u4eec\u7a7f\u7740\u94f6\u8272\u7684\u661f\u9645\u5236\u670d\uff0c\u65c1\u8fb9\u662f\u95ea\u95ea\u53d1\u5149\u7684\u5730\u7403"} +{"id": "4002425", "video_name": "491ac6f6-f551-5a59-a870-c729796a9d7f", "text": "\u4e00\u4e2a\u6234\u515c\u5e3d\u7684\u7537\u5b50\u7ad9\u5728\u706b\u4e2d\u76844K\u89c6\u9891\u3002"} +{"id": "6003873", "video_name": "371358e9-dad5-52b5-92ff-cbe4846a8a18", "text": "\u8bb2\u8ff0\u4e2a\u4eba\u6559\u7ec3\u9886\u57df\u4e2d\u4eba\u7c7b\u8f6c\u578b\u7684\u8d85\u9ad8\u6e054K\u89c6\u9891\u3002"} +{"id": "7002178", "video_name": "47c00eea-d971-5b41-a931-42ededeb3bb0", "text": "\u53e4\u4ee3\u9752\u5e74\u5728\u4e00\u5bb6\u7c73\u5e97\u5de5\u4f5c\u3002"} +{"id": "4004750", "video_name": "b0b4dd17-7380-521d-84db-e41e979c310d", "text": "70\u5e74\u4ee3\u7684\u6587\u827a\u7247\uff0c\u9ed1\u6697\u5e7b\u60f3\uff0c\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u5c4b\u9876\u4e0a\u3002"} +{"id": "1005082", "video_name": "5daf9fd9-69fe-58af-93e7-c4d6bf718864", "text": "\u4e00\u4e2a\u5361\u901a\u7537\u5b69\u6b63\u5728\u4ee5\u8fea\u58eb\u5c3c\u98ce\u683c\u5954\u8dd1\u3002"} +{"id": "2005286", "video_name": "eff2a446-9045-5d71-b970-28956cb588b0", "text": "\u9ad8\u5927\u3001\u7ea2\u8272\u3001\u70c8\u7130\u822c\u7684\u72ee\u5b50\u5750\u5728\u6c99\u6f20\u4e2d\u592e\u7684\u68cb\u76d8\u4e0a\u3002"} +{"id": "6002857", "video_name": "bca58b97-7e93-5429-b462-629372738a0a", "text": "\u53ef\u7231\u7684\u7537\u5b69\uff0c\u7ad9\u5728\u52a8\u7269\u56ed\u91cc\uff0c\u592a\u9633\u5347\u8d77\uff0c8\u516c\u91cc\u3002 \n\nSource sentence: She is studying Chinese for three hours every day. \n\u5979\u6bcf\u5929\u5b66\u4e60\u4e09"} +{"id": "4003161", "video_name": "2597ab8c-6a3b-596d-b111-dae4e1c9659a", "text": "\u4e00\u53ea\u59dc\u8272\u7684\u732b\u4ece\u623f\u9876\u4e0a\u8df3\u5230\u98de\u789f\u4e0a\uff0c\u5728\u591c\u8272\u4e2d\u7a7f\u68ad\u98de\u884c\u3002"} +{"id": "1004597", "video_name": "5590911b-dddc-5a99-9b18-52e9531c3e40", "text": "\u5723\u8bde\u8282\u5723\u8bde\u6811\u5047\u671f\u5e86\u795d\u51ac\u5b63\u96ea\u52a8\u753b\u91d1\u8272\u80cc\u666f\u3002"} +{"id": "3005527", "video_name": "bd447c8c-ad7d-5221-8297-6d3919112217", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u73b0\u4e86\u4e00\u53ea\u624b\u62ff\u7740\u4e00\u628a\u5200\u5728\u53a8\u623f\u5207\u5272\u4e00\u5757\u7f8e\u5473\u7684\u8089\u653e\u5728\u7827\u677f\u4e0a\u3002\u80cc\u666f\u4e2d\u6709\u4e00\u4e2a"} +{"id": "0004666", "video_name": "0cf62b2c-ef44-51a4-a094-697d85eb39f8", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u68ee\u6797\u91cc\u505a\u745c\u4f3d\u3002"} +{"id": "7002791", "video_name": "08f39ef3-d0fd-5da9-90ae-4af25f7cc802", "text": "\u4eba\u6162\u6162\u5730\u8d70\uff0c\u6811\u5728\u98ce\u4e2d\u6447\u52a8\u3002\n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u8fb9\u843d\u5c71\u3002"} +{"id": "6004952", "video_name": "1d2d8d34-52ac-5b12-ade3-3aa95f101255", "text": "\u4e00\u4e2a\u6a44\u6984\u7403\u4ece\u53f3\u4e0a\u65b9\u843d\u4e0b\uff0c\u843d\u5730\u65f6\u5f39\u4e86\u4e00\u5927\u4e0b\u3002\u573a\u666f\u662f\u5728\u6a44\u6984\u7403\u573a\uff0c\u7403\u6b63\u5728\u5feb\u901f\u65cb\u8f6c\u3002"} +{"id": "4004076", "video_name": "8496c924-2603-5973-8062-2291c69f27fb", "text": "\u4e00\u5ea7\u88ab\u9057\u5fd8\u7684\u6d77\u6ee8\u57ce\u5e02\u4ece\u96fe\u4e2d\u51fa\u73b0\uff0c\u5b83\u7684\u77f3\u5899\u4e0e\u5d0e\u5c96\u7684\u60ac\u5d16\u878d\u4e3a\u4e00\u4f53\uff0c\u4fef"} +{"id": "0004829", "video_name": "0fe844bd-f80d-56e1-8b3d-b406f26063cc", "text": "\u5efa\u7b51\u7269\u4e2d\u900f\u8fc7\u5929\u7a7a\u7684\u666f\u8c61"} +{"id": "1003919", "video_name": "48604fff-57b6-5ab1-a51d-b1a72b6d7f39", "text": "\u5934\u4e0a\u7684\u7535\u7ebf\u62c9\u626f\u7d27\u7ef7\uff0c\u4ed6\u5c16\u53eb\u7740\u626d\u52a8\u8eab\u4f53\uff0c\u75db\u82e6\u4e0d\u582a\u3002"} +{"id": "5001167", "video_name": "c6f2d904-007c-50b8-83a8-f13b83e2b14f", "text": "\u90e8\u843d\u6218\u6597\u5728\u9ad8\u7aef\u56fe\u5f62\u4e2d\u751f\u6210\u3002"} +{"id": "7004561", "video_name": "bac7f4d4-ff4a-5f07-873d-da354986f215", "text": "\u4e00\u4e2a\u6234\u7740\u732b\u8033\u6735\u7684\u5973\u5b69\u5750\u5728\u6d77\u6ee9\u4e0a\u89c2\u770b\u6d77\u6d6a\u3002"} +{"id": "1003372", "video_name": "3e26ad7a-5083-5b08-be43-9e359f4b5c45", "text": "\u5361\u7279\u66fc\u4ece\u5357\u65b9\u516c\u56ed\u8d70\u5728\u4eba\u884c\u9053\u4e0a\u3002"} +{"id": "0003459", "video_name": "3de4cccc-3c5a-5d82-8e6a-612c8f0a593f", "text": "\u770b\u4e0d\u89c1\u7684\u7537\u4eba\u5f39\u5409\u4ed6\u3002"} +{"id": "7004654", "video_name": "ee176eca-994d-570b-8816-7eb9cadee80c", "text": "Translation: \u80fd\u4e0e\u4eba\u5de5\u667a\u80fd\u826f\u597d\u4ea4\u6d41\u7684\u4eba"} +{"id": "6004181", "video_name": "2d406eea-4eb0-5c8d-9a76-0cf1f88bc94a", "text": "\u6218\u4e89\u6846\u67b6\u5728GTA 5\u4e2d\uff0c\u591c\u665a\u4e0b\u96e8\uff0c\u6d41\u7545\u3002"} +{"id": "2006931", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "\u6d77\u6d0b\u4e2d\u7684\u89c2\u4f17\u52a8\u7269\u4e3a\u6d77\u8c5a\u6234\u62c9\u9f13\u638c\u6b22\u547c\uff0c\u4ed6\u4eec\u7684\u638c\u58f0\u5728\u6d69\u701a\u95ea\u8000\u7684\u6d77\u6d0b\u4e2d\u56de"} +{"id": "0004735", "video_name": "0e57da11-1747-54b3-a3b9-7aff8bf4bd62", "text": "she discovered a hidden cave filled with ancient artifacts.\n\n\u6709\u4e00\u5929\uff0c\u739b\u96c5\u5728\u72e9\u730e\u65f6\u53d1\u73b0\u4e86\u4e00\u4e2a\u9690\u85cf\u7684\u6d1e\u7a74\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u53e4\u4ee3\u6587\u7269\u3002"} +{"id": "2006852", "video_name": "42028cc8-4b20-5c6a-9640-a6f1aaefc950", "text": "\u4e00\u767e\u4eba\u8fdb\u5165\u4e00\u5ea7\u901a\u5f80\u5929\u5802\u7684\u5de8\u5927\u9b54\u6cd5\u5854\u3002"} +{"id": "2007444", "video_name": "4b7ea3ca-7daa-5f93-84a7-4fb79c63b6a7", "text": "\u5728\u4e00\u4e2a\u96e8\u5929\u4e3a\u6211\u753b\u4e00\u5ea7\u5c71\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004201", "video_name": "04e7d42b-901f-5692-9491-9d6666139dbb", "text": "\u6211\u9700\u8981\u4e00\u5f20\u5973\u6027\u5316\u7684\u81ea\u7136\u98ce\u666f\u56fe\u7247\u4f5c\u4e3a\u7b14\u8bb0\u672c\u7684\u80cc\u666f\u3002"} +{"id": "1003181", "video_name": "3a7ba9b5-b945-5576-8ae8-0beb615c6a06", "text": "\u4e00\u4e2a\u7537\u4eba\u4e00\u8fb9\u62bd\u96ea\u8304\u4e00\u8fb9\u5199\u4fe1\uff0c\u7136\u540e\u4ed6\u62ac\u5934\u770b\u4e86\u770b\u7a97\u5916\uff0c\u5410\u51fa\u70df\u96fe\u3002"} +{"id": "3003532", "video_name": "21108d1e-8803-5340-82f1-1851f6b0d5c6", "text": "\u4ece\u7f8e\u4e3d\u7684\u68ee\u6797\u4fef\u89c6\uff0c\u53ef\u4ee5\u770b\u5230\u5947\u5e7b\u751f\u7269\u7684\u6d3b\u52a8\u3002"} +{"id": "2003379", "video_name": "75f73add-61c7-5aee-b79d-b34ca4db4b0c", "text": "\u4e4c\u9e26\u6551\u9c7c\u65f6\uff0c\u68ee\u6797\u4e2d\u7684\u5176\u4ed6\u52a8\u7269\u60ca\u5947\u5730\u89c2\u770b\u7740\u3002"} +{"id": "3006555", "video_name": "15a8acd4-75cc-5abd-bd46-42bb5cf0185a", "text": "\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u5efa\u7b51\u5de5\u5730\u4e0a\uff0c\u9a6c\u514b\u65af\u6293\u4f4f\u4e86\u673a\u4f1a\u53d1\u52a8\u653b\u51fb\u3002\u5b83\u56f4\u7ed5\u673a\u5668\u4eba\u98de\u5954\uff0c\u51f6"} +{"id": "2006239", "video_name": "d318f20b-e6d3-59b1-ab27-6f4eec88e6ef", "text": "\u4f26\u6566\u897f\u533a\u4ee5David Hockney\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6003515", "video_name": "e6febe89-9319-511d-a96a-6cbeffa58040", "text": "\u6d77\u6ee9\u4e0a\u7684\u732b DHM (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "5001511", "video_name": "d1abc34c-0503-502b-93ee-0589c649bad9", "text": "\u7f29\u653e\u4e00\u4e2a\u7845\u7535\u8def\u3002"} +{"id": "7002999", "video_name": "581af776-800e-5770-bfa1-db762d4ad9f5", "text": "\u524d\u666f\uff1a\u4e00\u5f20\u8fd1\u8ddd\u79bb\u7684\u7167\u7247\uff0c\u6e05\u6670\u5730\u5448\u73b0\u4e86\u4e00\u4e2a\u6234\u7740\u590d\u53e4\u98ce\u683c\u865a\u62df\u73b0\u5b9e\u773c\u955c\u7684\u7537\u5b69\uff0c\u540c\u65f6"} +{"id": "8002342", "video_name": "e2b1b1bf-34d6-5335-b938-d8bcfad4f8e7", "text": "\u53f2\u8482\u82ac\u00b7\u52a0\u6885\u5c14\u98ce\u683c\u7684\u6050\u6016\u89c6\u9891"} +{"id": "6002662", "video_name": "1e803763-e6e3-5672-afad-89d4adad58f1", "text": "\u623f\u95f4\u91cc\u6bcf\u4e2a\u4eba\u90fd\u76ee\u77aa\u53e3\u5446\u5730\u6ce8\u89c6\u7740\uff0c\u6c89\u9ed8\u65e0\u58f0\u3002"} +{"id": "1004555", "video_name": "548cf2e7-5d02-5a38-9f1c-20dfcf2e3693", "text": "\u4e00\u5e45\u753b\u9762\u5c55\u73b0\u51fa\u6765\uff0c\u98ce\u547c\u5578\u7740\u8fdb\u5165\u4e00\u4e2a\u795e\u79d8\u7684\u7d2b\u8272\u68ee\u6797\u3002"} +{"id": "6003603", "video_name": "3bac8a94-f44f-5123-b2c0-274249f7c817", "text": "\u90a3\u53ea\u732b\u5750\u5728\u798f\u5c14\u6469\u65af\u8eab\u4e0a\u62bd\u70df\u6597\u3002"} +{"id": "7003036", "video_name": "61130c04-ebd6-5504-8b8f-8f3eb292d7f4", "text": "\u4e00\u4e2a\u7537\u4eba\u5411\u955c\u5934\u5954\u8dd1\uff0c\u4ed6\u5728\u8fdb\u884c\u5065\u8eab\uff0c\u6240\u4ee5\u8eab\u4f53\u59ff\u6001\u5f88\u597d\uff0c\u7a7f\u7740\u9ed1\u8272\u8863\u670d\uff0c\u5728\u9c9c\u82b1\u7530\u4e2d\u95f4\u7684"} +{"id": "1005040", "video_name": "5d299a1f-2441-58aa-8c47-c7bc83f09f66", "text": "\u5c55\u793a\u4e00\u5f20\u5fae\u7b11\u7684\u9762\u5b54\u7684\u6253\u5f00\u4e66\u3002"} +{"id": "8003217", "video_name": "73a8b9df-d0fb-5cdf-978b-46629dd438aa", "text": "\u65f6\u95f4\u9057\u5fd8\u7684\u70ed\u6c99\u6f20\u4e2d\u53d1\u751f\u4e86\u4ec0\u4e48\uff1f"} +{"id": "5001452", "video_name": "28ddbe1b-462a-5019-b921-a6d10c2b2ab4", "text": "\u4e00\u53f0\u80fd\u7f1d\u5408\u5927\u8111\u7684\u673a\u5668\u3002"} +{"id": "6003510", "video_name": "7303a710-347e-5dd0-a9bc-e8dca3513022", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u5728\u4e61\u6751\u68ee\u6797\u4e2d\u70ed\u60c5\u8df3\u821e\uff0c8K\u903c\u771f\u3002"} +{"id": "2005480", "video_name": "f4aa882c-7494-50f9-838d-b5f25c1cc814", "text": "\u4e00\u4e2a\u771f\u5b9e\u768470\u5e74\u4ee3\u4e3b\u9898\u53a8\u623f\uff0c\u6709\u4e00\u4e2a\u5973\u4eba\u4e71\u6254\u4e1c\u897f\uff0c\u4e00\u4e2a\u7537\u4eba\u54ed\u6ce3\u3002"} +{"id": "6003645", "video_name": "2ad8b168-1a3d-5840-8da6-fce09146d835", "text": "\u4e00\u4e2a\u6807\u5fd7\uff0c\u4e0a\u9762\u5199\u7740\u201cFitFlash\u7b80\u62a5\u201d\uff0c\u7740\u706b\u4e86\u3002"} +{"id": "2004450", "video_name": "901ad6a1-f8b5-52a2-9cf8-f7b0bf80f38b", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u8868\u6f14\u6469\u6258\u8f66\u7279\u6280\u3002\n\nSource sentence: She speaks fluent Mandarin and Cantonese. \n\u5979\u4f1a\u8bf4\u6d41\u5229\u7684\u666e\u901a\u8bdd\u548c\u5e7f\u4e1c\u8bdd\u3002"} +{"id": "0003802", "video_name": "43ba9e87-2e83-5a08-b736-18f9870c69d8", "text": "\u7f29\u5c0f\u4e00\u4e2a\u7070\u8272\u5efa\u7b51\uff0c\u4e0a\u9762\u6709\u6d82\u9e26\uff08\u73b0\u4ee3\u5b57\u4f53\uff09\uff0c\u5177\u6709\u8d85\u73b0\u5b9e\u4e3b\u4e49\u6548\u679c\u3002"} +{"id": "2005421", "video_name": "ff2b6e85-784d-5f50-a5d7-6f89fbaa078b", "text": "\u4e00\u4e2a\u62c9\u8d3e\u65af\u5766\u90a6\u7684\u56fd\u738b\u5750\u5728\u4ed6\u7684\u5bab\u6bbf\u91cc\u7684\u91d1\u8272\u5b9d\u5ea7\u4e0a\uff0c\u5176\u4ed6\u5de5\u4f5c\u4eba\u5458\u4e5f\u5750\u5728\u4ed6\u9762\u524d\u3002"} +{"id": "1005718", "video_name": "693abf29-3cfa-5731-9453-56facb490810", "text": "\u5fae\u7b11\u5e76\u6447\u6643\u8eab\u4f53\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004637", "video_name": "a12a7f92-6940-58a0-b3c5-91913c517da4", "text": "\u6c34\u7684\u8d77\u4f0f\u548c\u6416\u64fa\u88ab\u6cb9\u756b\u7684\u8cea\u611f\u6240\u4ee3\u8868\u3002"} +{"id": "2007246", "video_name": "4380b8a8-9b66-54c4-a96c-c5b5b92aaa2b", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u732b\u5728\u79d1\u5e7b\u57ce\u5e02\u7684\u591c\u665a\u8df3\u7740\u563b\u54c8\u821e\u6b65\u3002\u6e05\u6670\u660e\u4e86\u3002"} +{"id": "0005194", "video_name": "16713714-ac8a-56f3-a4ee-259956ce2731", "text": "\u4f0a\u65af\u5170\u6559\u5973\u5b69\u5341\u5c81\u548c\u5979\u7684\u4f0a\u65af\u5170\u6559\u6bcd\u4eb2\u5728\u8def\u4e0a\u56de\u5bb6\u3002"} +{"id": "0005478", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u5ba2\u5385\u91cc\u6253\u9f13\u3002"} +{"id": "2007292", "video_name": "664c2441-ea35-56af-b1ed-2d46c8d30112", "text": "\u4e00\u53ea\u8db3\u7403\u5728\u5e97\u91cc\u5403\u62ab\u8428\uff0c\u9e21\u5728\u5468\u56f4\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "4004807", "video_name": "a6617019-8730-537d-a6da-b01c4ea5f7e5", "text": "\u9ad8\u5e15\u5c14\u5728\u4ed6\u7684\u8111\u6d77\u4e2d\u60f3\u51fa\u4e86\u4e00\u4e2a\u8be1\u8ba1\uff0c\u8ba9\u53e6\u4e00\u4e2a\u4eba\u4e5f\u505a\u540c\u6837\u7684\u4e8b\u60c5\u3002"} +{"id": "8001286", "video_name": "8534dcd3-42ae-5e11-a18c-a6b20dbcd497", "text": "\u4e00\u4e2a\u70ed\u95f9\u7684\u5916\u56fd\u57ce\u5e02\uff0c\u5f02\u57df\u8bed\u8a00\u548c\u5f02\u9999\u6742\u7cc5\u3002\u9e45\u5375\u77f3\u94fa\u6210\u7684\u8857\u9053\u873f\u8712\u7a7f\u8fc7"} +{"id": "8002880", "video_name": "3ecec39b-681c-5c74-a595-1427585fdd8a", "text": "\u52a8\u6f2b\u96e8\uff0c\u4f7f\u5e95\u90e8\u7684\u8f6e\u5ed3\u79fb\u52a8\u5e76\u5411\u53f3\u8d70\u3002"} +{"id": "0003010", "video_name": "35884585-ed75-5519-90dc-55d388c35bb8", "text": "\u4e00\u5e45\u62bd\u8c61\u690d\u7269\u751f\u957f\u7684\u56fe\u753b\uff0c\u91c7\u7528\u6781\u7b80\u4e3b\u4e49\u513f\u7ae5\u753b\u98ce\u683c\uff0c\u5f69\u8272\u7b14\u5728\u767d\u8272\u80cc\u666f\u4e0a\u7ed8\u5236"} +{"id": "0003465", "video_name": "3df8fd8d-f956-56c6-88a0-9011e85e0cd0", "text": "\u68b5\u9ad8\u98ce\u683c\u7684\u4e16\u754c\uff0c\u661f\u7a7a\u7ed8\u753b\u76f8\u673a\u7a7f\u8d8a\u592a\u7a7a\uff0c\u4e00\u4e2a\u5973\u4eba\u7ad9\u5728\u5730\u9762\u4e2d\u592e\uff0c\u80cc\u5f71\u3002"} +{"id": "2005681", "video_name": "731eaab2-dead-577c-8080-bf212cfd7fd6", "text": "\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u6709\u4e00\u4e2a\u540d\u53eb\u62c9\u59c6\u00b7\u62c9\u5c14\u7684\u4eba\u5fd9\u4e8e\u4ed6\u7684\u6fc0\u60c5\u3002"} +{"id": "0006466", "video_name": "2d0a2a45-5105-59cf-a4a6-e4986e43ca94", "text": "\u57ce\u9547\u5168\u662f\u623f\u5c4b\u7684\u666f\u8c61\u3002"} +{"id": "3005877", "video_name": "f75b7d0a-cf1e-5c6e-80cf-eb1b7898c004", "text": "\u4e00\u53ea\u72ec\u7279\u7684\u5916\u661f\u4eba\uff0c\u6bcf\u53ea\u624b\u6709\u4e09\u4e2a\u624b\u6307\u3002"} +{"id": "3004942", "video_name": "f41a868e-cf88-59b4-8716-98787574e715", "text": "\u94bb\u77f3\u6212\u6307\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u95ea\u95ea\u53d1\u5149\u3002\n\nSource sentence: I am going to the store to buy some groceries."} +{"id": "1003899", "video_name": "47faa5d5-4d88-5c6f-b4c2-eba07463ded3", "text": "\u4e00\u4e2a\u4f7f\u7528\u5bbd\u5237\u5b50\u7684\u753b\u5bb6\u5728\u6e7f\u7684\u4e1d\u7ef8\u4e0a\u5237\u4e0a\u975b\u84dd\u8272\u67d3\u6599\uff0c\u5bfc\u81f4\u989c\u8272\u6e17\u51fa\u5e76\u5728\u753b\u5e03\u4e0a\u6269\u6563"} +{"id": "2003705", "video_name": "5a14fe2f-979c-58d1-a1bd-ed3151a5e28c", "text": "\u66f2\u68cd\u7403\u8fd0\u52a8\u5458\u6253\u67b6\uff0c\u8d85\u771f\u5b9e\uff0c\u5168\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "7003816", "video_name": "f747dd59-a1ff-5928-98ec-abe5dd6e5ae6", "text": "\u4e24\u540d\u62f3\u51fb\u624b\u6b63\u5728\u6253\u6597\uff0c\u7b2c\u4e00\u540d\u62f3\u51fb\u624b\u6b63\u5728\u51fa\u76f4\u62f3\uff0c\u7b2c\u4e8c\u540d\u62f3\u51fb\u624b\u6b63\u5728\u8eb2\u907f\u7b2c\u4e00\u540d\u62f3\u51fb\u624b\u7684\u62f3\u51fb\u3002"} +{"id": "6004036", "video_name": "5bee3ce7-45b7-5616-b000-7fa810472bf1", "text": "\u5361\u901a\u4e16\u4ee3\uff0c\u4e09\u4e2a\u5b69\u5b50\u5728\u5b66\u6821\u7684\u684c\u5b50\u4e0a\u753b\u4e86\u4e00\u4e2a\u7ea2\u661f\u3002"} +{"id": "1006016", "video_name": "6e81ab63-3ea0-59c7-a28b-2cc969cb5000", "text": "\u5973\u4eba\u88ab\u9b3c\u5413\u5230\u4e86\u3002"} +{"id": "4003735", "video_name": "f4b5c5f4-c2ee-5a20-8279-d37922bdc600", "text": "\u4eba\u7684\u624b\u6307\u4ea4\u53c9\uff0c\u7136\u540e\u62cd\u638c\u3002"} +{"id": "7002580", "video_name": "063a708e-16d4-55b4-be35-262b9923dea5", "text": "\u6e05\u6d17\u8349\u8393\uff0c\u6839\u636e\u5927\u5c0f\u5c06\u5176\u5207\u6210\u4e00\u534a\u6216\u56db\u5206\u4e4b\u4e00\u30022. \u5c06\u918b\u6817\u4ece\u679d\u6761\u4e0a\u6458\u4e0b\u5e76\u6e05\u6d17\u5e72"} +{"id": "4002039", "video_name": "5ab8673e-a347-568d-af0d-2140031b4607", "text": "\u6765\u81ea\u9a6c\u6765\u897f\u4e9a\uff0c\u4ee5KLCC\u4e3a\u80cc\u666f\u7684\u8d85\u7ea7\u82f1\u96c4\u3002"} +{"id": "2004179", "video_name": "0089328b-3dc0-52ef-a7c9-7bf32a3047e1", "text": "\u706b\u7130\u4e2d\u7684\u80cc\u666f\u6b63\u5728\u5f00\u8f66\u3002"} +{"id": "1004609", "video_name": "55cc6d8f-fa99-5d5d-a1e4-a0dda2332c31", "text": "\u9ad8\u5730\u5929\u7a7a\u66fe\u7ecf\u662f\u4e00\u4e2a\u6218\u573a\uff0c\u73b0\u5728\u89c1\u8bc1\u4e86\u795e\u79d8\u571f\u5730Terravale\u7684\u5408\u4f5c\u9ece\u660e\u300216\uff1a9\uff0c\u6570\u5b57\u7ed8\u753b\u3002"} +{"id": "3006118", "video_name": "d7751a45-62d3-5bd9-85dc-0c921f0c2c44", "text": "\u4e00\u4e2a\u68d5\u8272\u7684\u673a\u5668\u72d7\u5728\u821e\u53f0\u4e0a\u8df3\u821e\uff0c\u89c2\u4f17\u5728\u89c2\u770b\u3002"} +{"id": "0003234", "video_name": "39c27481-7930-505f-974b-736f9e72c075", "text": "\u4e00\u53ea\u9e1f\u5403\u6389\u4e86\u4e00\u53ea\u6bdb\u6bdb\u866b\uff0cAR\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "0003054", "video_name": "363a7bfc-525c-5b90-83c7-8a11a1ebd1e0", "text": "\u6211\u60f3\u8981\u871c\u8702\u6d3b\u52a8\u7684\u5f55\u50cf\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u8bf7\u95ee\u4f60\u80fd\u63a8\u8350\u9644\u8fd1\u7684\u4e00\u5bb6\u597d\u7684\u4e2d\u9910"} +{"id": "4004060", "video_name": "93b0e2d2-f55f-5f3a-87b7-162f55dbda99", "text": "\u4ed6\u4eec\u5174\u594b\u5730\u5c55\u5f00\u5730\u56fe\u5e76\u8ba8\u8bba\u4ed6\u4eec\u7684\u53d1\u73b0\u3002"} +{"id": "8001619", "video_name": "8f8b6e4b-46a7-56e3-9424-46ac44223887", "text": "\u4e00\u4e2a\u795e\u5750\u5728\u684c\u5b50\u8fb9\u5403\u7740\u7f8e\u5473\u7684\u98df\u7269\u548c\u996e\u6599\u3002"} +{"id": "6003992", "video_name": "138facc4-43bc-5959-8faa-0e57fe7179cf", "text": "\u4e00\u4e2a\u65e0\u8da3\u7537\u5b50\u7684\u9762\u5b54\u4ee5\u9ad8\u5bf9\u6bd4\u5ea6\u7535\u5f71\u6548\u679c\u8fdb\u884c\u7279\u5199\uff0c\u5448\u73b0\u51fa\u903c\u771f\u7684\u7d2b\u8272\u679c\u51bb\u72b6\u3002"} +{"id": "7003516", "video_name": "386b6863-b102-52ed-bb27-37bbfedb7f3d", "text": "\u68b5\u9ad8\u7684\u4e00\u5e45\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u8258\u8239\u5728\u66b4\u98ce\u96e8\u4e2d\u822a\u884c\u7684\u573a\u666f\u3002"} +{"id": "8003570", "video_name": "f20b807a-e620-5b27-8ea3-f4985248f45d", "text": "\u5c55\u793a\u4e00\u6b21\u6ca1\u6709\u7194\u5ca9\u3001\u53ea\u6709\u70df\u96fe\u548c\u706b\u5c71\u5d29\u584c\u7684\u706b\u5c71\u55b7\u53d1\uff0c\u4f7f\u7528\u8d85\u903c\u771f\u76844K\u753b\u9762\u3002"} +{"id": "2004457", "video_name": "f39aca15-6ee5-58f6-baf4-774f207dc476", "text": "\u4eba\u4eec\u5728\u8ff7\u5e7b\u96e8\u4e2d\u88ab\u56f0\u7684\u52a8\u753b\u3002"} +{"id": "7003111", "video_name": "4b078880-0d59-5236-b8d8-d77b336dd788", "text": "\u5370\u5ea6\u662f\u4e00\u4e2a\u5b97\u6559\u591a\u5143\u5316\u548c\u591a\u6c11\u65cf\u7684\u6c11\u4e3b\u56fd\u5bb6\uff0c\u662f\u4e16\u754c\u4e0a\u6700\u5927\u7684\u3002"} +{"id": "8001303", "video_name": "15e13287-52ba-507c-bf10-230eacbbe9c2", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u50cf80\u5e74\u4ee3\u7684\u7535\u5f71\u9662\uff0c\u5b83\u7684\u9713\u8679\u706f\u4e0a\u5199\u7740\u201c\u6b63\u5728\u4e0a\u6620\u201d\uff0c\u4f4d\u4e8e\u753b\u9762\u5de6\u4fa7\u7684\u4e00\u4e2a\u5927\u5c71\u4e0a\u3002\u753b\u9762\u7684\u5176\u4f59"} +{"id": "0004166", "video_name": "0462c408-07f9-583f-9073-e8eb16ed9bd1", "text": "\u679c\u51bb\uff1a\u6d46\u679c\u5473"} +{"id": "3004315", "video_name": "d6efbce9-61a7-50db-9cb9-9aecd599c85e", "text": "\u4e00\u4e2a\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u666f\u8c61\uff0c\u4eba\u4eec\u5fd9\u7740\u8fc7\u81ea\u5df1\u7684\u65e5\u5b50\u3002\u7a81\u7136\uff0c\u4e00\u4e9b\u4e1c\u897f\u5212\u7834\u5929\u7a7a\u3002\u4eba\u4eec\u505c"} +{"id": "1004458", "video_name": "527cbe55-5c6c-5ccc-916d-39acf9242157", "text": "\u91d1\u878d\u4e2d\u5fc3\u7684\u5fc3\u810f\u4e0d\u662f\u6cf5\u8840\uff0c\u800c\u662f\u6cf5\u94b1\u7684\u5fc3\u810f\u3002\n\nSource sentence: The world is a book, and those who do not travel read only a page.\n"} +{"id": "1003740", "video_name": "450aaa8d-fd4b-5a88-bbf7-2621f77ccec3", "text": "\u521b\u9020\u4e00\u90e8\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5728\u753b\u9762\u4e2d\u7684\u5973\u4eba\u54ed\u6ce3\u7740\u547c\u6551\u3002"} +{"id": "8002230", "video_name": "9047866c-b50a-587d-b949-4c91fceace41", "text": "\u7761\u7740\u7684\u4eba\u4ece\u8eab\u4f53\u4e2d\u6781\u5ea6\u5c55\u5f00\u5230\u5929\u7a7a\u3002\u795e\u79d8\u4f53\u9a8c\u3002\u9b3c\u9b42\u3002"} +{"id": "2005853", "video_name": "cdefd6b8-39fe-50b6-9b38-d4b23e522dc9", "text": "\u77ed\u53d1\u5973\u6027\u3001\u5185\u8863\u3001\u52a8\u6f2b\u3001\u7f8e\u4e3d\u3001\u8fd0\u52a8\u3001\u82d7\u6761"} +{"id": "8003928", "video_name": "d9e3e4f4-25d0-5022-8da5-4dfab414e4dd", "text": "\u4e00\u4e2a\u5e7f\u9614\u7684\u5b87\u5b99\u7a7a\u95f4\u4ee3\u8868\u6c38\u6052\uff0c\u6ca1\u6709\u5f00\u59cb\u6216\u7ed3\u675f\u3002\u4e00\u4e2a\u660e\u4eae\u7684\u8bdd\u8bed\uff08\u8c61\u5f81\u57fa\u7763\uff09\u4f4d\u4e8e\u4e2d\u5fc3\uff0c\u95ea\u8000\u7740"} +{"id": "0005762", "video_name": "20cedcfa-27fd-5888-a60e-afe4c6627e4e", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u5b87\u822a\u670d\u7684\u7537\u5b69\u5728\u548c\u4e00\u4e2a\u975e\u5e38\u5947\u602a\u7684\u5916\u661f\u4eba\u4ea4\u8c08\uff0c\u4e0d\u662f\u5413\u4eba\u7684\u90a3\u79cd\uff0c\u800c\u662f\u8fea"} +{"id": "2006795", "video_name": "f14c847b-f053-5b9e-bc33-0b72feb7138c", "text": "\u4e00\u6839\u5de8\u5927\u7684\u91d1\u5c5e\u7ba1\u538b\u788e\u4e86\u4e00\u67b6\u98de\u673a\u3002"} +{"id": "1005440", "video_name": "63f66a3b-ebe7-5116-b5c8-cbce7c8a20cb", "text": "\u4e00\u4e2a\u7a7f\u7740\u5b66\u751f\u5236\u670d\u7684\u68d5\u8272\u7537\u5b69\uff0c\u957f\u957f\u7684\u786c\u5377\u53d1\u548c\u9ed1\u8272\u7684\u773c\u775b\u5728\u6559\u5ba4\u91cc\u3002"} +{"id": "0003401", "video_name": "3d004d3a-770b-5ab4-82d2-c73173269325", "text": "\u7f8e\u4e3d\u7684\u5e9e\u8d1d\u5e02\u4e2d\u5fc3\u5145\u6ee1\u6d3b\u529b\uff0c\u653e\u5927\u753b\u9762\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0005020", "video_name": "13569ab5-29b6-5d57-abe6-5d35a85b4510", "text": "\u900f\u904e\u5f71\u7247\u526a\u8f2f\uff0c\u63a2\u7d22\u9762\u5c0d\u60b2\u50b7\u6642\u5805\u97cc\u4e0d\u62d4\u7684\u4e3b\u984c\uff0c\u5c55\u793a\u89d2\u8272\u514b\u670d\u60c5\u611f\u56f0"} +{"id": "7002455", "video_name": "8b797e6f-52d7-56b6-911e-9778ff7f51ff", "text": "\u4e00\u4e2a\u6726\u80e7\u800c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u5893\u5730\uff0c\u5e26\u6709\u79fb\u52a8\u7684\u5893\u7891\u3002"} +{"id": "4003553", "video_name": "febfa55a-c091-5529-ab16-ee37f8e691bc", "text": "\u4e00\u53ea\u53cc\u8db3\u72ec\u89d2\u517d\u6218\u58eb\uff0c\u624b\u6301\u4e91\u5251\uff0c\u770b\u8d77\u6765\u50cf\u76ae\u514b\u65af\u52a8\u753b\u3002"} +{"id": "4002154", "video_name": "189c25a7-6e3c-5df2-b3b2-b995530aa961", "text": "\u5728\u4e00\u4e2a\u6c34\u4e0b\u4e16\u754c\u91cc\uff0c\u6709\u4e00\u4f4d\u673a\u68b0\u7f8e\u4eba\u9c7c\uff0c\u6df1\u60c5\u5730\u51dd\u89c6\u7740\u5979\u7684\u7231\u4eba\u3002"} +{"id": "2006258", "video_name": "55beb549-1279-5def-8f39-0df48f56cef8", "text": "\u6c34\u6676\u4e4b\u5185\uff0c\u6050\u6016\u827a\u672f\uff0c\u9ed1\u767d\u3002"} +{"id": "2006139", "video_name": "ed7a9bfe-0d88-59a2-8238-ca542cf23b2d", "text": "\u8d85\u73b0\u5b9e\u7684\u949f\u6446\u4eba\u76ef\u7740\u90aa\u6076\u7684\u65f6\u949f\u3002\u9c9c\u8273\u7684\u8272\u5f69\uff0c\u90aa\u6076\u7684\u6c1b\u56f4\u3002"} +{"id": "6002193", "video_name": "34be6296-b1b3-50b3-a5e8-14393c6f28cf", "text": "\u6234\u7740\u9ec4\u8272\u5e3d\u5b50\u3001\u7a7f\u7740\u767d\u8272\u80cc\u5fc3\u548c\u77ed\u88e4\u7684\u4e09\u5341\u591a\u5c81\u7537\u5b50\u5750\u5728\u6d77\u6d0b\u4e2d\u592e\u7684\u4e00\u53ea\u9cb8"} +{"id": "4002329", "video_name": "ad14fd01-ba9f-55de-9480-9f52ed4118e3", "text": "\u8428\u59c6\u65af\u5728\u4e00\u4e2a\u4e0b\u96e8\u7684\u5916\u661f\u7403\u4e0a\u9047\u5230\u4e86\u9b54\u6218\u58eb\u3002"} +{"id": "3006400", "video_name": "47f4e322-20f3-53b1-82b6-0bfd41ea6f7a", "text": "\u623f\u5730\u4ea7\u6295\u8d44\uff1a\u6295\u8d44\u4e8e\u51fa\u79df\u7269\u4e1a\u6216\u623f\u5730\u4ea7\u4f17\u7b79\u5e73\u53f0\u3002\u79df\u91d1\u6536\u5165\u548c\u8d22\u4ea7\u589e\u503c\u53ef\u63d0\u4f9b\u7a33\u5b9a\u7684\u6536\u5165\u6d41\u3002"} +{"id": "1005014", "video_name": "5cc00a60-9703-5641-bfcb-9135b98d456e", "text": "\u5728\u5de8\u5927\u7684\u98de\u8239\u524d\uff0c\u4e00\u7fa4\u8eab\u7a7f\u672a\u6765\u6d3e\u670d\u88c5\u4e14\u9762\u5e26\u5fae\u7b11\u7684\u4eba\u8d70\u4e86\u4e0a\u6765\u3002"} +{"id": "2005978", "video_name": "f94e6cf6-903d-5e47-8de6-23ac80ca36f7", "text": "\u7ea2\u8272\u529b\u91cf\u6218\u58eb\u53d8\u5f62\uff0c\u7a7f\u4e0a\u6050\u9f99\u94a2\u94e0\u3002"} +{"id": "7004763", "video_name": "468902fb-2cff-55f4-ab63-3aaacbe39efa", "text": "\u5fae\u751f\u7269\u7e41\u6b96\u5e76\u5feb\u901f\u4f20\u64ad\u5230\u6574\u4e2a\u73af\u5883\u4e2d\u3002"} +{"id": "6004948", "video_name": "111573aa-9a0e-5be1-83dd-44399a61d771", "text": "\u521b\u4f5c\u4e00\u5e45\u52a8\u6f2b\u5f62\u8c61\uff0c\u8868\u73b0\u514b\u91cc\u5e0c\u7eb3\u548c\u83b1\u5fb7\u54c8\u62c9\u5a1c\u7ad9\u5728\u5ca9\u77f3\u4e0a\uff0c\u514b\u91cc\u5e0c\u7eb3\u5439"} +{"id": "6003173", "video_name": "71b3c7c1-cce6-5781-85fc-f94329e55565", "text": "\u65af\u582a\u7684\u7eb3\u7ef4\u4e9a\u795e\u7947\u4eec\u5e26\u7740\u4ed6\u4eec\u7684\u5c5e\u6027\u5750\u5728\u7ef4\u4e5f\u7eb3\u6905\u4e0a\uff0c\u559d\u7740\u8336\uff0c\u804a\u5929\u3002"} +{"id": "0006992", "video_name": "365d514e-fd20-5725-b443-31bf89a0257e", "text": "\u8fbe\u5c14\u6587\u7406\u8bba\u4e2d\u7684\u8fdb\u5316\u4e4b\u6811\u5bd3\u610f\u3002"} +{"id": "1003560", "video_name": "41a280d1-a263-593f-983e-bca820424078", "text": "\u9ed1\u732b\u548c\u53e6\u4e00\u53ea\u732b\u5f00\u59cb\u6253\u67b6\u3002"} +{"id": "1004850", "video_name": "59a1f188-a4bf-546a-86a6-d5c98c5bd580", "text": "\u5b66\u751f\uff0c\u6821\u670d\uff0c\u7eff\u8272\uff0c\u52a8\u611f\u903c\u771f\uff0c\u5149\u7ebf\u8ffd\u8e2a\u6e32\u67d3\uff0c\u67d4\u548c\u805a\u7126\uff0c\u67d4\u548c\u5149\u7ebf\uff0c\u9ad8\u9971\u548c"} +{"id": "2007745", "video_name": "414cd829-8d05-5acb-b5c2-4c7f9745b991", "text": "\u4ed6\u8d70\u5728\u8857\u4e0a\uff0c\u5468\u56f4\u5f88\u5c11\u6709\u60c5\u4fa3\u5728\u8c08\u604b\u7231\uff0c\u4ed6\u611f\u5230\u975e\u5e38\u96be\u8fc7\u548c\u5b64\u72ec\u3002"} +{"id": "1006684", "video_name": "7a8c888a-3e28-5555-a885-8fc96100c156", "text": "\u5728\u6c34\u4e2d\u7684\u4e00\u8258\u8239\u4e0a\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u6c34\u736d\u6234\u7740\u592a\u9633\u955c\uff0c\u7528\u5de6\u624b\u62ac\u8d77\u5b83\u4eec\uff0c\u6c89\u9189\u4e8e\u98ce"} +{"id": "2006531", "video_name": "aeb2a0ab-3458-5f5e-b3c0-65ca374123f9", "text": "\u9875\u9762\u4e0a\u7684\u6587\u5b57\uff0c\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u6d6e\u52a8\u3002 \u9644\u4ef6\uff1a1\u4e2a\u3002"} +{"id": "2004485", "video_name": "95ee2d8d-fd72-5421-9e53-9afc888420e8", "text": "\u82b1\u3001\u79d1\u6280\u3001\u5929\u7a7a\u3001\u65f6\u949f\u3002"} +{"id": "0005840", "video_name": "220c5198-4c4c-5b67-b2fb-8d4f118ad7e3", "text": "\u4f60\u7684\u7535\u5f71\u573a\u666f\u6765\u81ea\u4e8e1993\u5e74\u7531\u7ea6\u745f\u592b\u00b7\u82cf\u5fb7\u514b\u548c\u827e\u4e3d\u00b7\u5e03\u7f57\u4ec0\u7981\u64ad\u7684\u6050\u6016\u7535\u5f71\uff0c\u5177\u6709"} +{"id": "0006118", "video_name": "26e6ec58-46be-55fc-b068-1afa092e03c9", "text": "\u4ed6\u5728\u65c5\u9014\u4e2d\u4f1a\u9047\u5230\u5404\u79cd\u6311\u6218\u548c\u969c\u788d\uff0c\u4f46\u4ed6\u575a\u4fe1\u53ea\u6709\u89e3\u51b3\u5931\u843d\u57ce\u5e02\u7684\u8c1c\u56e2\u624d\u80fd\u53d1\u73b0\u5173"} +{"id": "2007559", "video_name": "8645fc46-2f8a-5ea9-8d3e-0612983790e5", "text": "\u9ad8\u8d28\u91cf\u7684\u7535\u5f71\u753b\u9762\uff0c8K\uff0c\u9a6c\u8f9b\u683cZ\u6325\u52a8\u7740\u4ed6\u7684\u62f3\u5934\u3002"} +{"id": "3005706", "video_name": "ce2f1cb0-a8e9-5ead-84c1-5b7b27cc3951", "text": "\u9ec4\u91d1\u997c\u5e72\u5b58\u653e\u5728\u6a71\u67dc\u91cc\u3002"} +{"id": "0004249", "video_name": "05bc59ea-5160-5377-a367-0c4d5cbcca14", "text": "\u7a7f\u7740\u80fd\u52a8\u7684\u88d9\u5b50\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005931", "video_name": "6cf944a0-a734-5c71-b2d7-0e242934a734", "text": "\u6b64\u5916\uff0c\u4eba\u5de5\u667a\u80fd\u548c\u795e\u7ecf\u63a5\u53e3\u7684\u6574\u5408\u5728\u7406\u89e3\u548c\u6a21\u62df\u4eba\u8111\u590d\u6742\u64cd\u4f5c\u65b9\u9762\u662f\u4e00\u4e2a\u5de8\u5927\u7684\u96be\u9898\u3002"} +{"id": "5001815", "video_name": "0bafe282-b1b5-55bf-be0f-0741bc838bdf", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5947\u5f02\u535a\u58eb\u5728\u7ebd\u7ea6\u5e02\u4e0a\u7a7a\u6e29\u67d4\u5730\u62e5\u62b1\u8718\u86db\u4fa0\uff0c\u4e00\u67b6\u9ed1\u767d\u65b0\u95fb\u76f4"} +{"id": "8001067", "video_name": "7fbf22e0-5be3-50ae-9498-b7048dfd94f9", "text": ", they hunted for food and made tools from stone.\n\n\u5728\u77f3\u5668\u65f6\u4ee3\uff0c\u4eba\u4eec\u56f4\u7740\u706b\u53d6\u6696\uff0c\u767d\u5929\u5219\u6355\u730e\u98df\u7269\u5e76\u7528\u77f3\u5934\u5236\u4f5c\u5de5\u5177"} +{"id": "6002205", "video_name": "c2451541-09b0-5762-8f3b-0160c3e2d190", "text": "\u4e00\u4e2aGen Z\u5728\u57ce\u5e02\u5730\u70b9\u8df3\u821e\u3002"} +{"id": "8001789", "video_name": "0cdcb116-ae7a-5586-bf75-d18d4b998962", "text": "\u6d77\u6ee9\u4e0a\u6709\u5b57\u6bcd\u7684\u6d77\u6ee9\uff0c\u4fe1\u606f\uff1ak\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09"} +{"id": "3003389", "video_name": "5caa824c-b3cc-5fef-b14e-68b3145e6820", "text": "\u5c06\u5355\u8bcd\u201c\u94b1\u201d\u50cf\u6b63\u5728\u88ab\u7ed8\u5236\u4e00\u6837\u968f\u5904\u6d3b\u52a8\u3002"} +{"id": "6004567", "video_name": "3cc3f5cc-7fbf-5647-b0b3-ab917df41ee1", "text": "\u6234\u7740\u9762\u7eb1\u7684\u7537\u5b50\u624b\u6301\u6cbe\u8840\u7684\u5b9d\u5251\uff0c\u9a91\u5728\u5ba0\u7269\u72ee\u5b50\u4e0a\u3002"} +{"id": "6003436", "video_name": "aeed1a1a-91c6-58eb-b5af-75b49ba44ca1", "text": "\u5c4b\u5b50\u91cc\u6709\u4e00\u53ea\u767d\u8272\u7684\u72d7\u548c\u4e00\u628a\u68d5\u8272\u7684\u6905\u5b50\u3002\u8fd9\u53ea\u72d7\u770b\u8d77\u6765\u50cf\u662f\u9a6c\u96f7\u9a6c\u548c\u91d1\u6bdb\u730e"} +{"id": "2006093", "video_name": "3ac66ffe-d790-5647-885b-a8c6cb0cf5fd", "text": "\u5973\u5b69\u5728\u68ee\u6797\u91cc\u5de5\u4f5c\uff0c\u770b\u5230\u4e86\u5728\u5348\u591c\u4e0b\u98de\u7fd4\u7684\u9e1f\u513f\u548c\u6ee1\u6708\u3002"} +{"id": "0006339", "video_name": "2ae08d15-b725-5a4d-8f06-04bc545b9f4f", "text": "\u4e00\u9762\u5370\u6709\u7f8e\u56fd\u56fd\u65d7\u56fe\u6848\u7684\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "3004379", "video_name": "c1cb76a9-ca84-56f5-b6d4-1eb30f54c03d", "text": "\u4e24\u53ea\u5929\u9e45\u5728\u6cb3\u91cc\u60a0\u95f2\u5730\u6e38\u6cf3\u3002"} +{"id": "3004577", "video_name": "82bd466f-9df1-5798-988f-4fb3fe6e137c", "text": "\u4e0a\u5b66\u9014\u4e2d\u53ef\u7231\u7684\u52a8\u6f2b\u5973\u5b69"} +{"id": "7003357", "video_name": "67869be3-b6c8-5aae-b477-2d3236bdb80f", "text": "\u54e5\u65af\u62c9\u5728\u57ce\u5e02\u4e2d\u6124\u6012\u5730\u55b7\u5c04\u6fc0\u5149\u3002"} +{"id": "8003568", "video_name": "a4ccf341-bb34-5999-b432-84744c4ee5fd", "text": "\u4e00\u4e2a\u72d0\u72f8\u5728\u6a44\u6984\u7403\u573a\u4e0a\u3002\n\nSource sentence: I love eating sushi. \n\n\u6211\u559c\u6b22\u5403\u5bff\u53f8\u3002"} +{"id": "6002685", "video_name": "ba09eb59-33ec-5c5d-8973-d3a50f8a40c5", "text": "\u4f01\u9e45\u7a81\u7136\u5f00\u59cb\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "4003209", "video_name": "8ce311e9-a86a-5500-bc27-7b252f73d395", "text": "\u52a8\u753b\u5361\u901a Lytsk\u57ce\u5e02 4k\u52a8\u6001\u8272\u5f69\u7535\u5f71\u7d20\u6750"} +{"id": "8001424", "video_name": "c6dcc521-3f74-524a-89e4-ac6ae9ecb2c3", "text": "\u53f2\u8482\u82ac\u00b7\u5e93\u91cc\u6b63\u5728\u5b66\u6821\u548c\u4e00\u540d\u4e2d\u56fd\u5b66\u751f\u6253\u7bee\u7403\u3002"} +{"id": "1003089", "video_name": "38ddfb24-4d28-51bf-9c90-04a94bba670d", "text": "\u6674\u6717\u7684\u7389\u7c73\u5730\u6536\u83b7\u4e86\u3002\u4fe1\u606f\uff1a\u4ea7\u91cf\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "6004279", "video_name": "43e77dfb-c9e0-5cf0-a835-77fa739c5a98", "text": "\u5728\u9519\u7efc\u590d\u6742\u7684\u5173\u7cfb\u7f51\u7edc\u4e2d\u3002"} +{"id": "4002476", "video_name": "7bfde825-f082-5f88-bc0b-f8ad41b5089f", "text": "19\u4e16\u7eaa\u767d\u6559\u5802\u591c\u665a\u4e0a\u79fb\u52a8\u7684\u90aa\u6076\u5f71\u5b50\u3002"} +{"id": "0005052", "video_name": "13ca4b38-06ea-5148-8667-d0988feb3b3e", "text": "\u4f18\u7f8e\u7684\u4e9a\u6d32\u5973\u58eb\u7a7f\u7740\u88d9\u5b50\u8df3\u821e\u3002"} +{"id": "7003809", "video_name": "619510b1-121e-5e31-91b1-797d68faa984", "text": "\u6751\u6c11\u4eec\u60ca\u5947\u5730\u89c2\u770b\u4e4c\u9e26\u89e3\u51b3\u95ee\u9898\u3002"} +{"id": "4002376", "video_name": "ff5c2c78-2294-59c4-b21c-03beadb39133", "text": "\u5728\u8ff7\u4eba\u7684\u5e7b\u60f3\u4e4b\u5730Whimsyville\u4e2d\uff0c\u9047\u5230\u4e86\u8774\u8776\u548c\u6dd8\u6c14\u7684\u677e\u9f20\u3002\n\nSource sentence: The new restaurant offers a wide range of"} +{"id": "0006807", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "\u7ea2\u9ed1\u767d\u8c03\u8272\u677f\uff0c\u4e4c\u9e26\u98de\u8d8a\u5893\u5730\uff0c\u6050\u6016\uff0c\u7535\u5f71\u573a\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003900", "video_name": "5b42401b-022d-521d-a458-c727084d66e7", "text": "\u4e24\u53ea\u72ee\u5b50\u5728\u5c71\u4e0a\u76f8\u4e92\u5bf9\u89c6\u7684\u52a8\u753b\u56fe\u50cf\u3002"} +{"id": "3005460", "video_name": "64dc2430-2cef-5325-a61b-0e03a6f9ec11", "text": "\u6709\u4eba\u4ece\u53e3\u888b\u91cc\u53d6\u51fa\u4e00\u4e2a\u65b9\u5f62\u88c5\u7f6e\uff0c\u5c55\u5f00\u5b83\u53d8\u6210\u4e86\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "0003687", "video_name": "41b36fbc-7257-5f45-94b7-b9d85fff355b", "text": "\u4e09\u4e2a\u5c24\u8fbe\u5916\u661f\u4eba\u57281950\u5e74\u4ee3\u7684\u7f8e\u56fd\u519c\u5bb6\u53a8\u623f\u4ee5\u7535\u5f71\u98ce\u683c\u8df3\u821e\u3002"} +{"id": "3004152", "video_name": "62331c79-44ea-51d2-a0f9-a55ef21c202a", "text": "\u5c0f\u5b9d\u5b9d\u6325\u624b\uff0c2D\u52a8\u753b\u98ce\u683c\uff0c\u526a\u8d34\u753b\uff0c\u7ebf\u6761\uff0c\u5927\u84dd\u773c\u775b\uff0c\u53ef\u7231\uff0c8K\uff0c\u8be6\u7ec6\uff0c\u6e05\u6670\u3002"} +{"id": "6002278", "video_name": "4b53874c-e896-599d-b7ac-fa88db60a96a", "text": "\u767d\u53d1\u5c11\u5973\uff0c\u767d\u8272\u4e1d\u7ef8\u906e\u4f4f\u773c\u775b\uff0c\u54ed\u6ce3\uff0c\u5411\u6708\u4eae\u7948\u7977\u3002"} +{"id": "7003366", "video_name": "04d1814d-e1ea-5e5a-b85c-2171d9a37792", "text": "\u4e00\u4e2a\u957f\u53d1\u3001\u5149\u7740\u8eab\u5b50\u3001\u7a7f\u7740\u77ed\u88e4\u548c\u889c\u5b50\u7684\u7537\u4eba\uff0c\u9a91\u7740\u6ed1\u677f\u5728\u8857\u9053\u4e0a\u7a7f\u8fc7\u80cc\u666f\u4e2d\u7684"} +{"id": "8002583", "video_name": "82421628-07a3-5e40-b78b-71bc85d22015", "text": "\u4e00\u4e2a\u9a7c\u5cf0\u72b6\u7684\u7f51\u7edc\uff0c\u5c31\u50cf\u4e00\u5ea7\u5c71\u4e00\u6837\uff0c\u5728\u5730\u4e0b\u6709\u4e00\u7cfb\u5217\u6df1\u6d45\u4e0d\u540c\u7684\u51f9\u9677\u3002\u6c34\u4ece\u9a7c\u5cf0\u6d41\u5411\u51f9"} +{"id": "0005398", "video_name": "1a1ae150-c5c8-54b2-81fa-088ee6b8a4f8", "text": "\u4e24\u53ea\u5c0f\u5154\u5b50\u4e58\u8239\u65c5\u884c\u3002"} +{"id": "4002240", "video_name": "d00947c4-3577-54c4-9580-4039e3477874", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u5979\u62e5\u6709\u7f8e\u4e3d\u7684\u773c\u775b\uff0c\u5728\u65e5\u51fa\u65f6\u7a7f\u8fc7\u4e00\u7247\u5145\u6ee1\u7c89\u8272\u3001\u9ec4\u8272\u548c\u767d\u8272\u82b1\u6735"} +{"id": "7003271", "video_name": "f68c8619-dcc3-5d8a-8afa-e4e99a2b9342", "text": "\u4e00\u53ea\u770b\u4f3c\u771f\u5b9e\u7684\u7f8e\u4eba\u9c7c\u5728 20 \u4e16\u7eaa 30 \u5e74\u4ee3\u88ab\u6355\u83b7\u5728\u6d77\u6d0b\u4e2d\u3002"} +{"id": "7004314", "video_name": "866a888d-50f0-5c74-ad44-b0681e24d0c5", "text": "\u5728\u516c\u56ed\u7684\u7403\u573a\u4e0a\uff0c\u5750\u5728\u8f6e\u6905\u4e0a\u7684\u5973\u5b69\u7a7f\u7740\u7c89\u8272\u548c\u767d\u8272\u7684\u5236\u670d\u6253\u7bee\u7403\u6bd4\u8d5b\u3002"} +{"id": "0004673", "video_name": "0d164276-a7c5-5ef5-9f8c-5a12522c49f9", "text": "\u5934\u53d1\u6cb9\u5012\uff0cShopify\u98ce\u683c\u3002"} +{"id": "2003751", "video_name": "23131f94-7264-56dd-9b6b-4002c42c3818", "text": "\u5e74\u8f7b\u7684\u9b54\u706f\u7537\u5b50\u5728\u65e9\u6668\u7ed9\u4e00\u4e2a\u9965\u997f\u3001\u4e0d\u8010\u70e6\u3001\u5de5\u4f5c\u7684\u5973\u58eb\u63d0\u4f9b\u714e\u997c\u3002"} +{"id": "2004277", "video_name": "7326ca8c-b6f2-513f-9886-0110f420092d", "text": "\u5c06\u7167\u7247\u4e2d\u7684\u96e8\u6c34\u52a8\u8d77\u6765\u3002"} +{"id": "3006236", "video_name": "8676470a-90c0-5599-a923-cbb53b28fb07", "text": "\u9a6c\u514b\u65af\u5e94\u8be5\u88ab\u5c55\u793a\u4e3a\u5f15\u5bfc\u9edb\u897f\uff0c\u53ef\u4ee5\u901a\u8fc7\u5411\u5979\u5c55\u793a\u5982\u4f55\u53bb\u62ff\u4e00\u6839\u68cd\u5b50\u6216\u6559\u5979\u5750\u4e0b\u6765\u6765\u4f20\u8fbe"} +{"id": "7004729", "video_name": "fc6ea8bd-44bd-5962-9e7a-e63db8d4e94e", "text": "\u521b\u4f5c\u4e00\u5e45\u6770\u4f5c\uff0c\u63cf\u8ff0\u8eba\u5728\u5e8a\u4e0a\u7684\u4e00\u4e2a\u9c9c\u7ea2\u8272\u6469\u897f\u5934\u7537\u5b69\uff0c\u65e0\u6cd5\u79fb\u52a8\uff0c\u5e8a\u8fb9\u7ad9\u7740\u4e00\u4e2a\u6050"} +{"id": "6004154", "video_name": "c9cd50f8-109e-5069-81f6-5af8cb4d89cb", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u72d7\u72d7\u5750\u5728\u684c\u5b50\u65c1\u8fb9\uff0c\u624b\u62ff\u5496\u5561\u676f\uff0c\u6574\u4e2a\u623f\u95f4\u90fd\u5728\u7740\u706b\uff0c\u5230\u5904\u90fd\u662f\u706b"} +{"id": "1006726", "video_name": "7b3e68e1-bb00-5598-bb04-c9b37e75294a", "text": "\u7537\u5b69\u770b\u5230\u4ed6\u5011\u7684\u5bb3\u6015\u6642\u7b11\u4e86\uff0c\u6751\u6c11\u751f\u6c23\u4e86\u3002\u6709\u4e9b\u4eba\u975e\u5e38\u7169\u60f1\u3002"} +{"id": "7003158", "video_name": "9ee17f68-e254-590b-9666-60ad7e45f6af", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u58eb\u5175\u5750\u5728\u4e00\u4e2a\u5c0f\u623f\u95f4\u91cc\uff0c\u770b\u7740\u5c4f\u5e55\uff0c\u624b\u63e1\u64cd\u7eb5\u6746\uff0c\u73a9\u7740\u7535\u5b50\u6e38\u620f\uff0c\u800c"} +{"id": "3003434", "video_name": "dde32402-5bb3-53c3-a83f-d02fb9a6da08", "text": "\u7ef4\u751f\u7d20\u7247\u5728\u73bb\u7483\u676f\u4e2d\u6eb6\u89e3\u5e76\u6e85\u8d77\u6ce2\u7eb9\uff0c\u80cc\u666f\u662f\u70ed\u5e26\u96e8\u6797\u4e2d\u7684\u6d46\u679c\u3001\u8349\u8393"} +{"id": "1006970", "video_name": "7f909995-6614-5edb-a34b-e6336488a1dc", "text": "\u4ece\u571f\u5730\u4e2d\u81ea\u7136\u751f\u957f\u7f13\u6162\u5730\u957f\u51fa\u79cd\u5b50\u3002"} +{"id": "0004392", "video_name": "082e2042-4dd3-53ca-8ab9-621932f5b0bf", "text": "\u521b\u4f5c\u4e00\u4e2a\u5c55\u793aCinegy Air\u8f6f\u4ef6\u5de5\u4f5c\u7684\u89c6\u9891\u3002"} +{"id": "0003205", "video_name": "392ab2af-2126-5a66-835f-165e71933f2c", "text": "\u4e00\u4e2a\u6709\u591a\u4e2a\u624b\u81c2\u7684\u571f\u8c46\u8df3\u626d\u6446\u821e\u3002"} +{"id": "0006404", "video_name": "2bde4113-531e-5097-99d0-7af62fa74fcd", "text": "\u957f\u5377\u53d1\u7684\u7f8e\u4e3d\u5973\u4eba\u3002\u7f8e\u4e3d\u7684\u8138\u5e9e\u3002\u65f6\u5c1a\u6a21\u7279\u3002\u65f6\u5c1a\u5986\u5bb9\u3002\u70df\u718f\u5986\u7684\u8ff7\u4eba\u5973"} +{"id": "0005011", "video_name": "13368cea-fc7d-520a-91ff-a1099601fb6c", "text": "\u751f\u6210\u4e00\u5f20\u5e74\u8f7b\u5973\u5b50\u7684\u56fe\u7247\uff0c\u5979\u62e5\u6709\u91d1\u8272\u7684\u53d1\u8272\uff0c\u72ec\u81ea\u5750\u5728\u6446\u6ee1\u84b8\u6c7d\u670b\u514b\u88c5\u9970\u7684\u660f\u6697"} +{"id": "4004672", "video_name": "cb54cf60-6cd8-52cb-b7a7-bf2f7b8fe33c", "text": "\u5728\u4e00\u5ea7\u7eff\u6811\u73af\u7ed5\u3001\u4e91\u96fe\u7f2d\u7ed5\u7684\u5c71\u4e0a\uff0c\u6709\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u957f\u888d\u3001\u80cc\u5411\u955c\u5934\u51a5\u60f3\u7684\u8001"} +{"id": "6002809", "video_name": "11eac49e-158b-5286-a1ee-113ae840bb2b", "text": "\u4e00\u4f4d\u672a\u6765\u611f\u5341\u8db3\u3001\u6027\u611f\u8ff7\u4eba\u7684\u5973\u58eb\u7a7f\u7740\u5f97\u4f53\u3002\u5f3a\u5927\u7684\u5973\u6027\u30024K\u89c6\u9891\uff0c\u77ed\u7247\u3002"} +{"id": "4004253", "video_name": "fd00ebb3-3100-595c-8cb6-40846e7b1193", "text": "\u56db\u4e2a\u7537\u5b69\u5728\u8def\u4e0a\u73a9\u98de\u884c\u68cb\u3002"} +{"id": "2004994", "video_name": "69ec73ee-6655-5513-8ff7-d81a600b2546", "text": "\u4e60\u60ef\u4e8e\u89c2\u8d4f\u79cb\u6708\u6625\u98ce\u3002"} +{"id": "1005696", "video_name": "68ac405b-7abf-5673-9357-68f49f337cb3", "text": "\u5927\u536b\u00b7\u7231\u767b\u5821\u5750\u5728\u4e00\u628a\u7ef4\u591a\u5229\u4e9a\u5f0f\u7684\u6905\u5b50\u4e0a\u3002"} +{"id": "7002700", "video_name": "315988f3-7fde-5edb-b637-f42bac2ecbcb", "text": "\u4e00\u53ea\u7ea2\u72d0\u72f8\u53d8\u6210\u4e86\u4e00\u4e2a\u7a7f\u7ea2\u8272\u8863\u670d\u7684\u6027\u611f\u7537\u5b69\u3002"} +{"id": "1003993", "video_name": "49f674a1-48ed-58ca-9e27-1ab30ff9115a", "text": "\u5fc3\u5411\u9633\u5149\uff0c\u95ea\u8000\u5149\u8f89\uff0c\u4e00\u4f4d\u5584\u826f\u7684\u8001\u592a\u592a\u3002"} +{"id": "8003530", "video_name": "345b96c0-c375-501c-b51a-c12df65f032b", "text": "\u5e74\u8f7b\u7537\u5973\u8eab\u7a7f\u7ea2\u8272\u8863\u670d\u5411\u5916\u661f\u98de\u789f\u7684\u8231\u53e3\u8d70\u53bb\u3002"} +{"id": "0005031", "video_name": "13710a7d-f9a9-53a9-a318-4c1c84a8758e", "text": "\u62ff\u9e23\u4eba\u626e\u6210\u58a8\u897f\u54e5\u97f3\u4e50\u5bb6\uff0c\u6f14\u594f\u58a8\u897f\u54e5\u97f3\u4e50\uff0c\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\uff0c\u8fd8\u6709\u86cb\u7cd5"} +{"id": "1005549", "video_name": "662fd357-b558-5dab-a012-aad6ec5aa7f0", "text": "\u72d0\u72f8\u5e26\u7740\u72ee\u5b50\u6765\u5230\u4e00\u53e3\u6df1\u4e95\uff0c\u544a\u8bc9\u4ed6\u90a3\u91cc\u4f4f\u7740\u53e6\u4e00\u53ea\u72ee\u5b50\u3002\u4ed6\u8bf4\u670d\u72ee\u5b50"} +{"id": "6002589", "video_name": "a0bd0c75-5e7f-5940-beeb-cf9be2fda642", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u65e0\u58f0\u7535\u5f71\u7684\u573a\u666f\uff0c\u9ed1\u767d\u8272\u8c03\uff0c\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u7ede\u5211\u67b6\u4e0a\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u300a\u5361\u5229\u52a0\u91cc\u535a"} +{"id": "2003044", "video_name": "e6e940cd-ab10-5ab5-9979-bad408771039", "text": "\u6211\u7ad9\u5728\u4e00\u5e62\u9ad8\u697c\u9876\u4e0a\u5f80\u4e0b\u770b\u3002\u697c\u592a\u9ad8\u4e86\uff0c\u6211\u5f80\u4e0b\u770b\u80fd\u770b\u5230\u4e91\u3002"} +{"id": "5001083", "video_name": "2fbcc0d3-f073-50b3-ba4b-ccbd6c8023e0", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u5370\u5ea6\u7537\u5b50\u7ad9\u5728\u4ed6\u7684\u623f\u5b50\u91cc\u8868\u73b0\u51fa\u7edd\u671b\u3002"} +{"id": "4003976", "video_name": "cc64dca4-5975-52ea-a1f1-d8316287518a", "text": "\u4e00\u4f4d\u97e9\u56fd\u5973\u5b69\u6b63\u5728\u6563\u6b65\uff0c\u7136\u540e\u5979\u62ac\u5934\u770b\u5230\u4e00\u5ea7\u5de8\u5927\u7684\u5bfa\u5e99\u3002"} +{"id": "3003577", "video_name": "4cb37c39-ba33-52b1-b78f-2bc0de342512", "text": "\u8d85\u5e02\u725b\u5976\u51b7\u85cf\u67dc\u7684\u5185\u90e8"} +{"id": "3006972", "video_name": "791fea88-cd17-50af-be28-cb6732f4d671", "text": "\u4e00\u4e2a\u4eba\u5728\u592a\u7a7a\u7684\u865a\u65e0\u4e2d\u5760\u843d"} +{"id": "6003952", "video_name": "87161d73-32d6-5191-850d-651b5dad174a", "text": "\u5728\u9ece\u660e\u65f6\u5206\uff0c\u4e00\u4e2a\u5929\u4f7f\u5728\u8df3\u821e\n\u88ab\u5149\u73af\u5305\u56f4\u7740\n\u4f46\u5728\u9634\u5f71\u4e2d\u6709\u4e1c\u897f\u5728\u89c2\u5bdf\n\u5e76\u8010\u5fc3\u5730\u7b49\u5f85"} +{"id": "2007858", "video_name": "5e38e324-a16b-5f35-8b14-903f55ac5c3e", "text": "\u4f5b\u9640\u548c\u4e5e\u4e10\u7684\u6545\u4e8b"} +{"id": "0004047", "video_name": "0237ba0d-e6fd-56e5-9ff1-22eee9bdc3c2", "text": "\u4e00\u53ea\u5c0f\u9e1f\u770b\u5230\u4e91\u6735\uff0c\u50cf\u5361\u901a\u4e00\u6837\u3002"} +{"id": "2003959", "video_name": "929537cb-6281-5ba7-bc4b-3cf92d72471a", "text": "\u4f7f\u7528\u94bc\u3001\u73bb\u7483\u548c\u94a2\u94c1\u6784\u6210\u7684\u672a\u6765\u4e3b\u4e49\u98de\u8239\u5728\u5916\u661f\u7403\u65c5\u884c\u3002"} +{"id": "5001702", "video_name": "83575227-4075-5e53-9483-af9712cfd86b", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u52a8\u7269\u53ef\u4ee5\u8ba9\u6211\u653e\u677e\u3002"} +{"id": "0004935", "video_name": "11c6e3b1-9191-5c4f-b977-b1b5b7c36a4c", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u9a7e\u9a76\u7740\u5979\u7684\u6c7d\u8f66\u671d\u7740\u5c71\u9876\u4e0a\u7684\u68ee\u6797\u884c\u9a76\u3002"} +{"id": "2007291", "video_name": "d5a1b3c1-ec8c-51c0-a6ec-26a9bd0bc943", "text": "\u72d7\u5728\u5c4b\u9876\u4e0a\u53eb\uff0c\u4e00\u53ea\u732b\u5750\u5728\u90a3\u91cc\u3002"} +{"id": "4003951", "video_name": "fd1088a6-0852-5b3a-a01a-8f19c172dd27", "text": "\u5b87\u5b99\u4e2d\u7684\u7334\u5b50\u3002\u4fe1\u606f\uff1aCoderlands\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004290", "video_name": "4f647fb5-6e90-5d28-bcb1-2739dced04f6", "text": "\u7537\u4eba\u5728\u96e8\u4e2d\u4fdd\u62a4\u7740\u4e30\u7530Supra\u8f66\u3002"} +{"id": "1004753", "video_name": "58003b33-d80e-5fd2-a20f-73d8e1213afe", "text": "\u4e00\u5757\u5de7\u514b\u529b\u7816\u5934\u649e\u5230\u4e00\u5757\u5de7\u514b\u529b\u68d2\u3002"} +{"id": "8001792", "video_name": "d271213c-1e1b-5494-9c76-5b20f957df72", "text": "\u4e00\u7247\u6708\u5149\uff0c\u4e00\u5ea7\u60ac\u5d16\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u5973\u5b50\u9a91\u9a6c\u5954\u8dd1\u5728\u5c0f\u5f84\u4e0a\uff0c\u8f7b\u67d4\u7684\u5fae\u98ce\u5439\u52a8\u7740"} +{"id": "0005710", "video_name": "1fddfa7d-46cf-548a-88c8-9c3abf82fecd", "text": "\u6ce2\u6d1b\u514b\u897f\u4e9a\u821e\u66f2\uff0c\u970d\u7f57\u6c83\u5fb7\u4fc4\u7f57\u65af\u5983\u5b50\u60b2\u4f24\u5730\u8df3\u821e\uff0c\u9762\u5bb9\u60b2\u4f24"} +{"id": "2004512", "video_name": "f893241a-8dcd-5b6c-8dc1-1dad73929b57", "text": "\u7535\u5f71\u573a\u666f\uff0c\u5973\u4eba\u5728\u592a\u7a7a\u91cc\u505a\u5065\u8eab\u3002"} +{"id": "2005122", "video_name": "0c119b76-24a4-51f2-8905-f8d558aa4d84", "text": "\u4e09\u7ef4\u6e32\u67d3\u7684Chandelure\u5b9d\u53ef\u68a6\uff0c\u7d2b\u8272\u706b\u7130\u3002"} +{"id": "1004962", "video_name": "5ba68619-15d7-59b3-9444-4685fcf2e128", "text": "\u900f\u8fc7\u65f6\u95f4\u548c\u7a7a\u95f4\u7684\u89c6\u89d2\uff0c\u8ba9\u4eba\u9707\u64bc\u7684\u601d\u7ef4\u4f53\u9a8c\u3002"} +{"id": "3005920", "video_name": "d3f0bcc5-4139-5696-8f47-1462911cd7c9", "text": "\u5728\u5b98\u65b9\u53d1\u552e\u65e5\u671f\u4e4b\u524d\u83b7\u5f97\u7269\u54c1\uff0c\u4f8b\u5982\u4e66\u7c4d\u3001CD\u548cDVD\u3002"} +{"id": "6004070", "video_name": "23775c86-1c8d-51ef-a806-1ffdb3508cf8", "text": "\u5c0f\u961f\u9ed1\u5ba2\u653b\u51fb\u7ebd\u7ea6\u5e02\u4e2d\u5fc3\u3002"} +{"id": "8002886", "video_name": "cc9aa52b-a5f5-5abf-8996-19da6bee90d7", "text": "\u5c0f\u7f8e\u4eba\u9c7c\u6b63\u5728\u5411\u4f60\u6e38\u8fc7\u6765\u7684\u5f62\u8c61\u3002"} +{"id": "5001098", "video_name": "8eaf2866-2900-5f33-9103-baf37e877fc4", "text": "\u63cf\u8ff0\u4e00\u53ea\u540d\u53ebLeo\u7684\u5e74\u8f7b\u597d\u5947\u7684\u72ee\u5b50\uff0c\u5b83\u6709\u4e00\u5934\u72ec\u7279\u7684\u91d1\u8272\u9b03\u6bdb\uff0c\u7ad9\u5728\u90a3\u91cc\uff0c\u9762\u5e26\u6c89\u601d"} +{"id": "7003484", "video_name": "9d086ad4-ea98-5563-9a6e-6f098cfa1e9c", "text": "\u963f\u5179\u7279\u514b\u795e\u7947\u5728\u5929\u4e0a\u7684\u620f\u5267\u821e\u53f0\u4e0a\uff0c\u6bcf\u4e2a\u795e\u7947\u90fd\u732e\u4e0a\u8c61\u5f81\u6027\u7684\u7269\u54c1\u6216\u81ea\u8eab\u7684\u4e00\u90e8\u5206\uff0c"} +{"id": "6004802", "video_name": "e4894174-4cdb-5a7f-bbd7-90adad79a69c", "text": "\u5367\u5ba4\u91cc\u6709\u7761\u7720\u97f3\u4e50\uff0c\u73b0\u4ee3\u98ce\u683c\uff0c\u7a97\u5916\u4e0b\u96e8\uff0c\u8721\u70db\u70b9\u71c3\u3002"} +{"id": "8001834", "video_name": "a8c366f1-3f14-5741-bd44-4275a4bfc2f4", "text": "\u6258\u5fb7\u00b7\u9ea6\u514b\u6cd5\u5170\u7684\u827a\u672f\u98ce\u683c\u4e2d\u7684\u88c5\u9970\u827a\u672f\u98ce\u683c"} +{"id": "7003196", "video_name": "eb369401-9329-54a9-8a89-da47ccd19622", "text": "\u6218\u6597\u6301\u7eed\u4e0b\u53bb\uff0c\u5f88\u660e\u663e\uff0c\u4ed6\u4eec\u76f8\u4e92\u5339\u654c\u7684\u6280\u80fd\u6b63\u5728\u63a8\u52a8\u4ed6\u4eec\u7684\u6781\u9650\u3002"} +{"id": "6003303", "video_name": "1d6bb3aa-1e6c-5534-adfb-91adbce47aab", "text": "\u574e\u8036\u00b7\u97e6\u65af\u7279\u7684\u718a\u5728\u7d2b\u9ed1\u8272\u661f\u7a7a\u4e2d\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "2003095", "video_name": "b2f1d7eb-e844-55b0-b9f5-b2665b3db745", "text": "\u7a7f\u8d8a\u8fdb\u5165\u4e00\u4e2a\u8272\u5f69\u6591\u6593\u7684\u88c5\u9970\u827a\u672f\u9b45\u529b\u4e16\u754c\uff0c\u90a3\u91cc\u6709\u84ec\u677e\u7684\u5916\u661f\u751f\u7269\u81ea\u7531\u6f2b\u6e38"} +{"id": "7003707", "video_name": "05bd42cd-49f9-5cce-b3b8-ba2d8ef64d60", "text": "\u4e00\u4e2a\u8d22\u52a1\u4eba\u5458\u5728\u4f26\u6566\u5e02\u8857\u5934\u7275\u7740\u4e00\u53ea\u72ee\u5b50\u3002"} +{"id": "6003454", "video_name": "e658a502-b61a-53a7-bb01-1c06ecde6866", "text": "\u4eba\u4eec\u8fdb\u5165\u623f\u5b50\u7684\u95e8\uff0c\u5c55\u793a\u6574\u4e2a\u623f\u5b50\u3002"} +{"id": "7002764", "video_name": "2a8ea294-ce72-5414-91bb-a0c7b41f97f6", "text": "\u5730\u94c1\u91cc\u4e00\u4e2a\u4eba\u6162\u6162\u5730\u770b\u4e66\u62ac\u8d77\u5934\u6765\uff0c\u770b\u5230\u5176\u4ed6\u4eba\u90fd\u5728\u7528\u667a\u80fd\u624b\u673a\u3002"} +{"id": "1005222", "video_name": "601dd965-1bf4-5796-9b2b-512fa9871472", "text": "\u4e00\u7fa4\u5b64\u7368\u7121\u4f9d\u7684\u4eba\u8d70\u5728\u7d10\u7d04\u71b1\u9b27\u7684\u8857\u9053\u4e0a\uff0c\u4ed6\u5011\u7684\u81c9\u4e0a\u986f\u793a\u51fa\u5b64\u7368\u7684\u8868"} +{"id": "2007174", "video_name": "17bfed3f-e458-5672-9d7d-db74c4e1350d", "text": "\u6cb9\u753b\uff0c\u4e00\u4f4d\u5973\u4eba\u5750\u5728\u6447\u6905\u4e0a\u3002"} +{"id": "8002366", "video_name": "d8d3cb86-9fe5-5854-94ee-163fb87916f5", "text": "\u4e00\u7fa4\u5e74\u8f7b\u4eba\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u7740\u3002"} +{"id": "1004875", "video_name": "5a1570b7-168c-5cfd-81b6-29c07f57fb62", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u666f\u8272\uff0c\u6709\u7740\u6e05\u6670\u7684\u84dd\u5929\u548c\u5fae\u98ce\uff0c\u4ee3\u8868\u7740\u592a\u9633\u548c\u98ce\u7684\u6700\u521d\u548c\u8c10\u3002"} +{"id": "0005753", "video_name": "209b1c81-9b3d-5e77-9ea0-16fee8a755ef", "text": "\u9cdf\u9c7c\u5728\u4e00\u8f86\u653e\u7740\u54cd\u4eae\u97f3\u4e50\u7684\u8f66\u91cc\u4e58\u5750\u3002"} +{"id": "0004559", "video_name": "0b3c769e-7a1b-586b-91b6-0275988ac2c1", "text": "\u4e00\u4e2a\u7537\u4eba\u5411\u4ed6\u7684\u670b\u53cb\u5c55\u793a\u4e00\u53f0\u5e26\u6709\u80a1\u7968\u56fe\u8868\u7684\u7535\u8111\u3002"} +{"id": "4003616", "video_name": "3e2ff692-9617-581e-8015-090b4d58352d", "text": "\u8d77\u6e90\u53e5\u5b50\uff1a\u300a\u5929\u58022\u300b\u89d2\u8272\u9003\u8dd1\uff0c\u903c\u771f\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "8002617", "video_name": "a0ceb368-ad5f-520a-9df8-b85c2665b704", "text": "\u51e0\u5929\u524d\u6211\u4e70\u4e86\u4e00\u4e9b\u80a1\u7968\uff0c\u81ea\u90a3\u4ee5\u540e\u4ef7\u683c\u4e00\u76f4\u4e0b\u8dcc\u3002\u4f46\u662f\u4eca\u5929\u5b83\u4eec\u5168\u90e8\u83b7\u5f97\u6700\u9ad8\u7684\u6da8\u5e45\uff0c\u6211\u4ece\u4e2d\u8d5a"} +{"id": "2006779", "video_name": "2648b0dd-215a-5ae1-8cff-d2d2bce776f6", "text": "\u9ec4\u74dc\u8db3\u7403\u4ff1\u4e50\u90e8\uff0c\u7528\u4e00\u6839\u9ec4\u74dc\u8e22\u6bd4\u8d5b\u3002"} +{"id": "2006663", "video_name": "a1236278-7adc-5d0c-ac1e-89e9e8621a2f", "text": "\u4fef\u77b0\u955c\u5934\u589e\u52a0\u4e86\u52a8\u611f\uff0c\u5979\u7a7f\u8fc7\u8857\u9053\uff0c\u9a7e\u9a6d\u7740\u7199\u6518\u7684\u57ce\u5e02\u8282\u594f\u3002"} +{"id": "6002544", "video_name": "0f5e6484-ea79-53b7-afd2-bb600e618460", "text": "\u666e\u5229\u8305\u65af\u7684\u57ce\u5e02\u5168\u666f\u4fef\u77b0\u3002"} +{"id": "0004895", "video_name": "11155391-9910-5092-aac8-9e7d23ee26a1", "text": "\u5c71\u5d29\u4e86\uff0c\u6240\u6709\u4eba\u90fd\u611f\u5230\u9707\u60ca\u3002"} +{"id": "3003578", "video_name": "b13600be-ebaf-5c08-af49-86b56b029459", "text": "3D\u73b0\u5b9e\u7684\u8482\u6cd5\u00b7\u6d1b\u514b\u54c8\u7279\u5728\u529e\u516c\u5ba4\u559d\u5496\u5561\u3002"} +{"id": "7003052", "video_name": "f85c991e-b22f-590d-8f65-8a0300ae3c20", "text": "\u83ab\u6c49\u548c\u83b1\u8fea\u5361\u4e5f\u52a0\u5165\u4e86\u8fd9\u9879\u91cd\u8981\u5de5\u4f5c\u3002"} +{"id": "0003342", "video_name": "3bf04532-c78c-57b2-80bd-35320a782496", "text": "\u521b\u9020\u4e00\u4e2a\u77e9\u9635\u88ab\u63a5\u7ba1\u7684\u573a\u666f\u3002\u4e3b\u4eba\u516c\u7684\u5185\u90e8\u51b2\u7a81\u5fc5\u987b\u660e\u663e\u5b58\u5728\u3002"} +{"id": "3005908", "video_name": "d6b75152-2502-50ca-b82c-5934c160663a", "text": "\u5207\u74e6\u5361\u5728\u4e00\u500b\u9ed1\u5149\u548c\u9713\u8679\u5f69\u7e6a\u9ede\u7db4\u7684\u72c2\u6b61\u6d3e\u5c0d\u4e0a\uff0c\u4ed6\u5feb\u901f\u8df3\u821e\u3002"} +{"id": "6004521", "video_name": "968bd20c-571a-54cd-a54c-aadb9f1d99f2", "text": "\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u773c\u775b\u6162\u6162\u7728\u52a8\u3002"} +{"id": "1004402", "video_name": "5166ef67-23cf-5ba8-ae07-13273be7b170", "text": "\u4e00\u5e45\u6bd5\u52a0\u7d22\u7684\u62bd\u8c61\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u652f\u6447\u6eda\u4e50\u961f\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "6003265", "video_name": "acccdb50-b9b7-5cd1-b8cf-b3fad1ac8d02", "text": "\u4e00\u5ea7\u6b63\u5728\u5efa\u9020\u4e2d\u7684\u4f4d\u4e8e\u6cb3\u4e2d\u7684\u623f\u5b50\u3002"} +{"id": "1006943", "video_name": "7f123e92-aa6a-5c00-b6b5-0bc568a37001", "text": "\u5de5\u5382\u66b4\u4e71\uff0c1900\u5e74\u7684\u7167\u7247\uff0c\u84b8\u6c7d\u670b\u514b\uff0c\u9ed1\u767d\uff0c\u8fd0\u52a81\u3002"} +{"id": "0004282", "video_name": "065683d2-9d65-59ba-87d5-394c2df277c3", "text": "\u83f2\u529b\u725b\u6392\u5939\u998d\uff0c\u684c\u5b50\u4e0a\u96fe\u6c14\u817e\u817e\uff0c\u5473\u9053\u7f8e\u5999\u3002"} +{"id": "1006134", "video_name": "7060fb06-6d5e-5ecd-a109-dfefd4ca43f3", "text": "\u4f01\u9e45\u7a7f\u7740\u7f57\u585e\u91cc\u5965\u4e2d\u592e\u8db3\u7403\u961f\u7684T\u6064\u886b\uff0c\u50cf\u76ae\u514b\u65af\u4e00\u6837\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u8def"} +{"id": "1003428", "video_name": "3f5bb6a1-b399-5b40-875c-40f00d5b7cb1", "text": "\u8de8\u8d8aZircuit\u5b87\u5b99\u4e2d\u7684\u6865\u6881\u8fdb\u884c\u77ac\u95f4\u79fb\u52a8\u3002"} +{"id": "1003896", "video_name": "47df61f8-9bb4-5cb8-bca7-f032a7d0f766", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5361\u901a\u5973\u5b69\u7ad9\u5728\u8fea\u58eb\u5c3c\u4e50\u56ed\u95e8\u524d\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u5c0f\u661f\u661f\uff0c\u7167\u8000\u5f97\u5982\u6b64\u660e\u4eae\uff08"} +{"id": "2006954", "video_name": "fb1d081a-b5a7-50ac-9cb5-57a0352836f7", "text": "\u7a81\u5c3c\u65af\u57ce\u5e02\u4eba\u4eec\u624b\u6301\u7a81\u5c3c\u65af\u56fd\u65d7\u5728\u54c8\u6bd4\u535c\u00b7\u5e03\u5c14\u5409\u5df4\u5927\u9053\u4e0a\u884c\u8d70\uff0c\u771f\u5b9e\u30014K\u3001\u7531\u963f\u91cc"} +{"id": "7003601", "video_name": "97c9a604-391e-525a-9498-6815a627acc4", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684VHS\u5f55\u50cf\u7247\u6bb5\uff0c\u4e00\u4e2a\u6234\u7740\u5934\u76d4\u7684\u9752\u5c11\u5e74\u8d5b\u8f66\u624b\u5728\u7a7f\u8d8a\u901a\u5411\u6728\u661f\u98ce\u66b4\u7684\u9713"} +{"id": "5001613", "video_name": "23457f5d-6f7d-51e9-a26d-f085ec0ac752", "text": "\u573a\u666f\u5411\u866b\u6d1e\u4e2d\u5fc3\u653e\u5927\u3002"} +{"id": "1004926", "video_name": "5b0f6654-a998-5a62-8e53-71f465d8877e", "text": "\u5177\u6709\u70b9\u8d5e\u3001\u5206\u4eab\u548c\u5173\u6ce8\u6309\u94ae\u7684\u5e94\u7528\u7a0b\u5e8f\u754c\u9762\uff0c\u4f8b\u5982TikTok\u3002"} +{"id": "1004050", "video_name": "4b204e52-f422-5c18-bd6d-f02abed1f691", "text": "\u5de8\u5927\u7684\u5e9e\u7136\u5927\u866b\u88ad\u51fb\u4e86\u9a91\u58eb\u56e2\u961f\uff0c\u5728\u96ea\u5730\u4e2d\u5c55\u5f00\u4e86\u6fc0\u70c8\u7684\u6218\u6597\u3002"} +{"id": "8003581", "video_name": "edb6ed8f-acb1-5360-9053-11ff7bfbc323", "text": "\u7528\u9ad8\u6e05\u5206\u8fa8\u7387\u5236\u4f5c\u903c\u771f\u7684\u5b59\u609f\u7a7a\u89c6\u9891\u3002"} +{"id": "2005871", "video_name": "d95810f6-a99d-5481-9f34-983281f87cc5", "text": "\u8fd9\u5f20\u56fe\u7247\u5448\u73b0\u4e86\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u7269\u7ad9\u5728\u4e00\u7247\u5e7f\u9614\u800c\u8d2b\u7620\u7684\u7530\u91ce\u4e2d\u7684\u611f\u4eba\u573a\u666f\u3002\u80cc\u666f\u5c55\u793a\u4e86\u4e00\u7247"} +{"id": "1003975", "video_name": "49684468-9450-582c-91fd-f5210bcb2519", "text": "\u7ea2\u8272\u592a\u7a7a\u98de\u8239\u5728\u5916\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u5468\u56f4\u6709\u884c\u661f\u548c\u661f\u661f\u3002\u7167\u7247\u822c\u903c\u771f\u30028k\u3002\u52a8\u753b\u3002\u9ad8\u5206\u8fa8\u7387"} +{"id": "2007488", "video_name": "81db18d8-6834-59cb-923e-3169a2ab3e42", "text": "\u4e00\u53ea\u732b\u5728\u623f\u6881\u4e0a\u884c\u8d70\uff0c\u4e00\u4e2a\u660e\u4eae\u7684\u65e9\u6668\u3002"} +{"id": "3005842", "video_name": "2af8523e-0cbf-51f0-883a-b44e12e68dca", "text": "\u5c55\u793a\u4ed6\u4eec\u4e0e\u65b0\u4ea4\u7684\u670b\u53cb\u7b11\u8c08\u7684\u573a\u666f\u3002"} +{"id": "8002654", "video_name": "a2395649-5d39-536f-9f40-69e9b468dada", "text": "\u4e00\u4e2a\u6829\u6829\u5982\u751f\u7684\u7ae0\u9c7c\u5728\u6f6e\u6e7f\u7684\u6c34\u4e0b\u6d1e\u7a74\u6e38\u52a8\u3002"} +{"id": "3004569", "video_name": "0ba97cab-2d1b-50ea-b849-e139bc6b61bc", "text": "\u5c06\u83b1\u6602\u5185\u5c14\u00b7\u6885\u897f\u7684\u9762\u5b54\u4e0eErling Haaland\u7684\u9762\u5b54\u5408\u6210\u5728\u540c\u4e00\u5f20\u7167\u7247\u4e2d\u3002"} +{"id": "8001512", "video_name": "78816298-d290-55f3-a7c7-287e1824853f", "text": "\u53e4\u8001\u7684\u3001\u53d8\u5e7b\u83ab\u6d4b\u7684\u6587\u5b57\u5728\u9ed1\u5149\u4e0b\u95ea\u8000\u7740\u7d2b\u8272\u7684\u5149\u8292\uff0c\u8425\u9020\u51fa\u6050\u6016\u7684\u6c1b\u56f4\u3002\u6e38"} +{"id": "4004539", "video_name": "358d1023-347f-5f27-a4b9-584a29a71f5b", "text": "\u70df\u82b1\u5728\u591c\u8272\u4e2d\u76db\u5f00\uff0c\u5f62\u6210\u7f8e\u4e3d\u8ff7\u4eba\u7684\u56fe\u6848\u3002"} +{"id": "0005991", "video_name": "249da9f4-4b87-58ac-91b9-50f4d478511f", "text": "\u58ee\u89c2\u7684\u7985\u5bfa\u5750\u843d\u5728\u4e00\u5ea7\u9ad8\u5c71\u4e4b\u5dc5\u3002"} +{"id": "1004694", "video_name": "57412a1b-8b30-5536-9bcf-188bc301dc1e", "text": "\u4e0d\u540c\u54c1\u79cd\u7684\u732b\uff0c\u8df3\u9a6c\u5361\u96f7\u7eb3\u821e\u3002"} +{"id": "6003128", "video_name": "2505d31a-b306-5798-a79e-b3f2a83a442c", "text": "\u955c\u5934\u79fb\u52a8\uff0c\u80cc\u666f\u706f\u5149\u95ea\u70c1\uff0c\u7537\u5b69\u548c\u5973\u5b69\u5f88\u5feb\u4e50\u3002"} +{"id": "2006902", "video_name": "f9f82927-d208-5499-99d5-90509fbe24f2", "text": "\u573a\u666f\u80cc\u666f\uff1a\u9ed1\u591c\u4e2d\uff0c\u5e9f\u5f03\u7684\u623f\u5c4b\u91cc\u3002\u50cf\u4f60\u8fd9\u6837\u7684\u4eba\u6454\u5012\u5728\u5730\u4e0a\uff0c\u8eab\u4e0a\u5e03\u6ee1\u4f24\u75d5\uff0c\u9762\u5bb9"} +{"id": "8001783", "video_name": "a8e4b35b-7339-549a-8343-d17180f8b29b", "text": "\u521b\u9020\u4e00\u6247\u901a\u5f80\u53e6\u4e00\u4e2a\u4e16\u754c\u7684\u95e8\u3002"} +{"id": "0003665", "video_name": "415d4b2d-c156-52ae-ad58-2121a4da5e83", "text": "\u5728\u4f26\u6566\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u96fe\u591c\u91cc\uff0c\u6709\u4e00\u5ea7\u9ed1\u6697\u795e\u79d8\u7684\u57ce\u5821\uff0c\u7a97\u6237\u88ab\u98ce\u5439\u5f97\u6643\u52a8\u3002"} +{"id": "6003970", "video_name": "6cd10e99-3ccb-5ec4-b8ec-0e3ce588208e", "text": "\u4e00\u4e2a\u4e3a\u67d0\u4eba\u8bbe\u8ba1\u7684\uff0c\u6ca1\u6709\u795e\u79d8\u611f\u7684\u5b66\u4e60\u897f\u73ed\u7259\u8bed\u7684\u5c01\u9762\u3002"} +{"id": "0005053", "video_name": "13cb78dc-ca5a-5da2-b22a-a55c0318dbd1", "text": "\u57ce\u5e02\u5c45\u6c11\u5728\u665a\u4e0a\u3002"} +{"id": "7003931", "video_name": "3ad2c8eb-0a2b-5fca-92b4-f95b01bc0865", "text": "\u5b69\u5b50\u4eec\u7a7f\u7740\u5723\u8bde\u8001\u4eba\u670d\u88c5\u5531\u7740\u201c\u5feb\u4e50\u7684\u5723\u8bde\u8282\u201d\u3002"} +{"id": "3006805", "video_name": "3ba79156-0b3e-54b4-ae0a-bfb3b0defb6f", "text": "\u4e00\u4e2a\u5c71\u5730\u81ea\u884c\u8f66\u624b\u6b63\u5728\u8df3\u8dc3\u4e00\u4e2a\u5927\u7684\u6ce5\u571f\u8df3\u8dc3\uff0c\u5468\u56f4\u662f\u5f00\u9614\u7684\u7530\u91ce\u548c\u8fdc\u5904\u7684\u5c71\u8109\u3002"} +{"id": "3004353", "video_name": "01a33f12-36a1-560b-866f-0fc46adb8c9c", "text": "12\u4e16\u7eaa\u7684\u52c7\u58eb\u62e5\u62b1\u4ed6\u7684\u59bb\u5b50\uff0c\u59bb\u5b50\u5728\u54ed\u6ce3\uff0c\u753b\u9762\u662f\u8096\u50cf\u3002"} +{"id": "6003048", "video_name": "8842781f-b92f-54ba-968a-64501759e5bc", "text": "\u8be5\u59d4\u5458\u4f1a\u51b3\u5b9a\u6700\u52c7\u6562\u6700\u6709\u6280\u80fd\u7684\u52a8\u7269\u5c06\u8e0f\u4e0a\u8fd9\u6b21\u5371\u9669\u4e4b\u65c5\u3002\u6a21\u578b\uff1a3D\u52a8\u753b\u3002\u65f6\u957f\uff1a\u957f\u3002"} +{"id": "6002989", "video_name": "808fe0a3-44d6-5a72-8a5a-2fa4117e1f7a", "text": "\u5c06\u4e00\u67b6\u6b66\u88c5\u76f4\u5347\u673a\u8f6c\u6362\u6210\u673a\u5668\u4eba\u3002"} +{"id": "2005319", "video_name": "a91df5cd-1f13-5681-b8d3-2f11afc1bcd8", "text": "\u4e00\u4e2a\u4e9a\u6d32\u7684\u8dd1\u6b65\u8005\u5728\u8857\u9053\u4e0a\u5954\u8dd1\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6002848", "video_name": "b1f61905-331d-5170-af10-70f8ad6dc3ff", "text": "\u6d2a\u6c34\u66b4\u53d1\u6df9\u6ca1\u4e86\u6751\u5e84\uff0c\u66b4\u98ce\u96e8\u548c\u5927\u96e8\u3002"} +{"id": "8003363", "video_name": "65ae1625-ebdc-57b2-8c3c-621644e2d93d", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5154\u5b50\u5728\u80e1\u841d\u535c\u519c\u573a\u91cc\u7761\u89c9\u3002"} +{"id": "4002727", "video_name": "ce69ba8a-f85f-5101-b113-6df36cc48863", "text": "\u5728\u7530\u91ce\u4e0a\u5f80\u4e0b\u770b\uff0c\u5411\u524d\u8d70\uff0c\u591c\u665a\uff0c\u9ed1\u6697\u3002"} +{"id": "8003681", "video_name": "70608a34-a3de-5018-8b9e-ca466e9e12c9", "text": "\u8d85\u4eba\u5728\u5370\u5ea6\u5e26\u6709\u903c\u771f\u7684\u9762\u90e8\u7ec6\u8282\u3002"} +{"id": "1004026", "video_name": "4aae8773-cd7d-55bf-b271-7eb20820b5cd", "text": "\u8377\u5170\u4eba\uff0c\u9a91\u81ea\u884c\u8f66\uff0c\u80e1\u841d\u535c\uff0c\u96ea\uff0c\u6ca1\u6709\u5e3d\u5b50\uff0c200000000000\u5398\u7c73\u9ad8\u7684\u4eba\uff0c\u5c0f\u623f\u5b50\u3002"} +{"id": "0003891", "video_name": "45525b2e-f954-5353-901c-eff04f460b37", "text": "\u4e0e\u5f00\u53d1\u4eba\u5458\u4e00\u8d77\u7f16\u7a0b\u7684\u5171\u540c\u5de5\u4f5c\u7a7a\u95f4\u653e\u5927\u3002"} +{"id": "0006010", "video_name": "24f684f2-de66-52e2-983b-d8275793d057", "text": "\u5728\u7535\u89c6\u524d\u5531\u6b4c"} +{"id": "1004031", "video_name": "4abf0e23-a23d-5e48-b723-81cee4a44cfb", "text": "\u8001\u670b\u53cb\u5728\u9152\u5427\u73a9\u98de\u9556\u3002"} +{"id": "2003807", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "\u751f\u6210\u4e00\u90e8\u6709\u5173\u6d77\u72f8\u7684\u5361\u901a\u52a8\u753b\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u706f\u5149\u6548\u679c\u3002"} +{"id": "1005172", "video_name": "5f2ecc6e-1ee8-50f2-91d2-ca8329192a6b", "text": "\u4f4e\u6536\u5165\u5730\u533a\u7684\u7535\u5f71\u5b66\u6821\u3002"} +{"id": "6003397", "video_name": "98bc56e4-20e8-5d2a-bb31-0b1e201282b9", "text": "\u84b8\u6c7d\u6ce2\u725b\u4ed4\u7ad9\u5728\u52a0\u6cb9\u7ad9\u5916\u559d\u5564\u9152\u3002"} +{"id": "3004578", "video_name": "0e32f1f2-d614-58dc-a6ef-7f2c12e18592", "text": "\u6cf0\u7eb3\u5229\u00b7\u62c9\u9a6c\u514b\u91cc\u5e0c\u90a3\u51fa\u751f\u4e8e\u5370\u5ea6\u5357\u90e8\u7684\u56fe\u7a46\u9c81\u9c81\u3002\u4f20\u8bf4\u4ed6\u867d\u7136\u6ca1\u6709\u63a5\u53d7\u8fc7\u6b63\u5f0f\u6559"} +{"id": "4003139", "video_name": "81060c52-3872-5024-8907-465209bc6c23", "text": "\u4e00\u53ea\u732b\u5728\u591c\u95f4\u6f5c\u4f0f\u3002"} +{"id": "7002135", "video_name": "cf43879f-9943-56b4-a607-cadb87415c3d", "text": "\u62e5\u6324\u7684\u5370\u5ea6\u5e02\u573a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "7004172", "video_name": "bca86b14-db07-589d-909c-0fe353881f91", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "3004193", "video_name": "6149de96-65b7-52e2-bb69-42731d3e2c14", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u7537\u4eba\u72ec\u81ea\u884c\u8d70\uff0c\u4e0d\u662f\u5954\u8dd1\uff0c\u800c\u662f\u6b65\u884c\uff0c\u8eab\u540e\u6709\u4e00\u4e2a\u5927\u6c99\u6f0f\uff0c\u6c99\u5b50\u6b63\u5728\u6d41\u5931\u3002\u8fd9\u4e2a\u7537\u4eba\u662f\u4e00\u4e2a\u73b0"} +{"id": "8003935", "video_name": "03edc605-f4c4-5b66-9cb2-f59fa6e7c565", "text": "\u6c7d\u8f66\u5728\u8857\u4e0a\u76f8\u649e\uff0c\u903c\u771f\u7684\u6f2b\u753b\uff0c\u795e\u79d8\u7684\u6545\u4e8b\u3002"} +{"id": "2005258", "video_name": "47ff9ec6-6c1a-5767-a647-0305d13ee939", "text": "\u7a7f\u7c89\u8272\u88d9\u5b50\u7684\u5973\u4eba\u62b1\u7740\u4e00\u4e2a\u5a74\u513f\u3002"} +{"id": "6003390", "video_name": "412bc6af-6bc4-55b3-b7d2-3746adfca022", "text": "\u91d1\u8272\u7684\u4f5b\u5149\u8f90\u5c04\u95ea\u8000\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd"} +{"id": "2006768", "video_name": "99e1cd5b-437f-58b5-ac33-4992ac259aec", "text": "\u6709\u94b1\u548c\u6bd2\u54c1\u7684\u8001\u864e\u673a\u3002"} +{"id": "3006794", "video_name": "a68ac731-d7e6-56c0-bd85-53b63e8611a1", "text": "\u5934\u53d1\u5728\u821e\u52a8\uff0c\u4e91\u6735\u5728\u5ef6\u65f6\u62cd\u6444\u3002"} +{"id": "0003986", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "\u7531\u4e8e\u5c0f\u884c\u661f\u649e\u51fb\u5730\u7403\uff0c\u751f\u6210\u4e00\u5f20\u6050\u9f99\u706d\u7edd\u7684\u7167\u7247\u3002"} +{"id": "3004533", "video_name": "33b3f2f6-0b05-5481-bb04-59b157e13c93", "text": "\u9ed1\u6697\u9a91\u58eb\u5403\u7740\u4e00\u53ea\u5927\u70e4\u91ce\u732a\uff0c\u5c31\u50cf\u5965\u8d1d\u5229\u514b\u65af\u5403\u70e4\u91ce\u732a\u4e00\u6837\u3002"} +{"id": "3003063", "video_name": "01d8a0f3-63ab-5ee7-9f00-a8d159536c18", "text": "\u672a\u6765\u7f57\u9a6c\u5c3c\u4e9a\u57ce\u5e02\u7684\u81ea\u7136\u73af\u5883"} +{"id": "3004076", "video_name": "b31df3bf-693f-5571-850e-5ce33aab9f6d", "text": "\u6570\u5b57\u79e4\u3001\u9ad8\u6e05\u7535\u5f71\u753b\u8d28\u89c6\u9891\u548c\u79e4\u7684\u65cb\u8f6c\u3002"} +{"id": "3003414", "video_name": "7e7a4f8d-7740-51e4-ab92-823d5590ba82", "text": "\u5916\u661f\u4eba\u653b\u51fb\uff0c\u4eba\u4eec\u5954\u8dd1\uff0c\u5de8\u578b\u5916\u661f\u5bfc\u5f39\u70b8\u6bc1\u5730\u7403\uff0c\u5168\u7403\u6bc1\u706d\uff0c\u53ef\u6015\u3001\u4ee4\u4eba\u6050\u60e7\u3001\u7f8e"} +{"id": "0006750", "video_name": "3259cc45-5c34-5d60-a91e-5f96033cc5d5", "text": "\u4e00\u4e2a\u9ed1\u5f71\u81ea\u5929\u7a7a\u4e2d\u81ea\u7531\u843d\u4f53"} +{"id": "7002438", "video_name": "48aa04cf-930a-5cf1-aa86-ae7f85e8c375", "text": "\u7687\u5bb6\u5a5a\u793c\u4eea\u5f0f\u7684\u80cc\u666f\uff0c\u6240\u6709\u7687\u5ba4\u5ba2\u4eba\u6b22\u547c\u3002"} +{"id": "8003098", "video_name": "b57be8a5-68e1-5e64-89af-ed49fb906cbe", "text": "\u4e24\u4e2a\u516d\u5c81\u7684\u4e2d\u56fd\u5973\u5b69\u6b63\u5728\u5c71\u91cc\u63a2\u9669\u3002"} +{"id": "8002998", "video_name": "a75fbc3f-614b-551c-b210-010c87dc567f", "text": "\u786c\u5e01\u8c61\u5f81\u7740\u4ed6\u4eec\u7684\u96c6\u4f53\u80dc\u5229\uff0c\u5c55\u793a\u4e86\u56e2\u961f\u5408\u4f5c\u548c\u667a\u6167\u89c4\u5212\u80dc\u8fc7\u5355\u7eaf\u901f\u5ea6\u7684\u529b\u91cf\u3002"} +{"id": "6004439", "video_name": "69966a87-2bf5-5bf3-a673-35f3213cade7", "text": "1878\u5e74\uff0c\u670912\u53f0\u76f8\u673a\u5728\u4e00\u5bb6\u9a6c\u573a\u6392\u5217\u3002"} +{"id": "1003768", "video_name": "456645fb-a702-59f6-b452-7e19d5cb3d7e", "text": "\u8d85\u4eba\u5728\u7ebd\u7ea6\u8857\u5934\u9a91\u72ec\u8f6e\u8f66\u7684\u957f\u89c6\u9891\u3002"} +{"id": "2006595", "video_name": "ab2bee7a-a5eb-51c0-8c39-dd6c31188b8d", "text": "\u4e00\u4f4d\u4e2d\u56fd\u7537\u79d1\u5b66\u5bb6\u6b63\u5728\u9ebb\u7701\u7406\u5de5\u5b66\u9662\u4e0e\u4e00\u4f4d\u7f8e\u56fd\u5973\u5b69\u7ea6\u4f1a\u3002"} +{"id": "0006542", "video_name": "2e6dacd4-1031-5259-9485-40fa25dfb6f9", "text": "\u4e00\u888b\u94b1\u6389\u5728\u4e86\u9b54\u672f\u5e08\u8eab\u4e0a\u3002"} +{"id": "1005910", "video_name": "6c9d848f-aaf9-5b5d-ac80-a024a9eaf614", "text": "\u4e16\u754c\u5730\u56fe\u65cb\u8f6c\uff0c\u98de\u673a\u5728\u5468\u56f4\u98de\u884c\u3002"} +{"id": "4003393", "video_name": "96c92d46-c7d6-5103-9a12-dbce6f386a39", "text": "\u5b69\u5b50\u5728\u96ea\u5761\u4e0a\u6ed1\u4e0b\u6765\uff0c\u5174\u594b\u5730\uff0c\u800c\u5973\u4eba\u6ee1\u610f\u5730\u770b\u7740\u3002"} +{"id": "4002143", "video_name": "e2d9e2aa-09f4-5048-96c3-fe9fbfd0f5e7", "text": "\u96f7\u58f0\u8f70\u9e23\uff0c\u5200\u5149\u95ea\u70c1\uff0c\u53d1\u4e1d\u98d8\u52a8\uff0c\u9707\u6ce2\u8361\u6f3e\uff0c\u620f\u5267\u5316\u76844K\u7535\u5f71\u7ea7\u52a8\u4f5c\u573a\u666f\uff0c"} +{"id": "3004104", "video_name": "936c10ef-1331-5ef2-81bb-287a67f76615", "text": "\u672a\u6765\u4e3b\u4e49\u98de\u673a\u5728\u84dd\u8272\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u7535\u5f71\u5316\u573a\u666f\u3002"} +{"id": "2007958", "video_name": "30895624-9083-5cd6-9b73-c406d41daa1b", "text": "\u4e00\u4e2a\u4eba\u5e73\u9759\u5730\u7761\u5728\u5e8a\u4e0a\u7684\u753b\u9762\u3002\u573a\u666f\u8f6c\u6362\u5230\u4ed6\u4eec\u7684\u68a6\u5883\u4e16\u754c\uff0c\u4ed6\u4eec\u50cf\u8d85\u7ea7\u82f1\u96c4\u4e00\u6837\u4f38\u51fa\u624b\u81c2\uff0c\u5728"} +{"id": "8002874", "video_name": "6b13af5f-482c-52fd-ac95-77c7c6e16a52", "text": "\u65b0\u751f\u5a74\u513f\u5728\u6cb3\u8fb9\u7684\u5927\u53f6\u5b50\u4e0a\uff0c\u68ee\u6797\uff0c\u96fe\u4e2d\u3002"} +{"id": "2006628", "video_name": "25210a35-22f0-5062-9925-d0e903ecade0", "text": "\u8d5b\u8f66\u624b\u5728\u8d5b\u9053\u4e0a\u6234\u4e0a\u5934\u76d4\u3002"} +{"id": "0004118", "video_name": "0381770a-127a-5f97-91be-59911c4a62eb", "text": "\u4e00\u6bb5\u65f6\u957f\u4e03\u79d2\u7684\u89c6\u9891\uff0c\u753b\u9762\u4e2d\u4e00\u4f4d\u5973\u6027\u5728\u6d77\u4e2d\u6df1\u5165\u5230\u819d\u76d6\u5904\uff0c\u671b\u7740\u8f7b\u8f7b\u62cd\u6253\u7684\u6d77\u6d6a\uff0c\u5730\u5e73\u7ebf"} +{"id": "1006809", "video_name": "7ca97079-1a9c-5ce2-9097-9ef522273277", "text": "\u4e00\u53ea\u72d7\u8ffd\u9010\u4e00\u4e2a\u8ffd\u7740\u7403\u5954\u8dd1\u7684\u5c0f\u5b69\u3002"} +{"id": "4002847", "video_name": "bff02b40-6885-54dd-a3af-0ea4689de73b", "text": "\u5176\u4e2d\u4e00\u53ea\u53eb\u8fbe\u9c81\u5361\u7684\u72fc\u8d70\u4e86\u4e00\u6bb5\u8ddd\u79bb\u540e\uff0c\u4ece\u704c\u6728\u4e1b\u4e2d\u542c\u5230\u4e86\u4e00\u4e2a\u5b69\u5b50\u7684\u54ed\u58f0\uff0c\u5c31\u50cf\u5361\u901a"} +{"id": "3004662", "video_name": "f293c75d-5c6a-5bd7-b4e2-9c3446f0a4d4", "text": "\u4f5b\u7f57\u91cc\u8fbe\u5dde\u7684\u4eff\u751f\u673a\u5668\u4eba\u88ab\u9057\u5f03\u5728\u8ff7\u4f60\u9ad8\u5c14\u592b\u7403\u573a\u3002"} +{"id": "4004440", "video_name": "8f831d23-f63f-5034-ba4d-b5f643f43441", "text": "\u5973\u4eba\u6536\u5230\u4e00\u6735\u73ab\u7470\u5e76\u5e26\u7740\u5fae\u7b11\u8138\u7ea2\u3002"} +{"id": "7004859", "video_name": "f7b9e98e-f8ff-5cd6-8150-554db55472bb", "text": "\u591c\u665a\u8857\u5934\u7a7f\u897f\u88c5\u7684\u7537\u4eba"} +{"id": "1005681", "video_name": "6864198b-0293-566d-bbd5-2782872cc1b8", "text": "\u4e00\u4e2a\u9965\u997f\u7684\u8001\u4eba\u7a7f\u7740\u7d2b\u8272\u6709\u8da3\u7684\u5e3d\u5b50\uff0c\u5206\u88c2\u62106\u4e2a\u4e0d\u540c\u7684\u56fe\u50cf\uff0c\u67ef\u8fbe\u8096\u50cf800\u3002"} +{"id": "7004927", "video_name": "f3ee455e-c30c-5a9f-b7e3-00eb7c4aaede", "text": "\u7070\u59d1\u5a18\u4e0e\u7ee7\u6bcd\u548c\u4e24\u4e2a\u7ee7\u59d0\u59d0\u4f4f\u5728\u4e00\u8d77\uff0c\u5979\u4eec\u603b\u662f\u6298\u78e8\u5979\u3002"} +{"id": "8002310", "video_name": "b23b4e3e-86a2-55c4-bffe-8d06d7f2ba5a", "text": "\u4e00\u6b21\u5728\u91cc\u5179\u5df4\u9ece\u9152\u5e97\u7684\u65c5\u6e38\uff0c\u62e5\u6709\u7f8e\u4e3d\u7684\u5927\u5385\uff0c\u5ba2\u623f\u548c\u65e9\u9910\u3002"} +{"id": "3004710", "video_name": "ea18bbdd-a2e0-5fff-a6cf-6e222bc14221", "text": "\u4e00\u4f4d\u5988\u5988\u50cf\u51a0\u519b\u4e00\u6837\u7f16\u7a0b\u3002"} +{"id": "4002471", "video_name": "8f791c41-f10c-5c43-a77e-24b9d37f4701", "text": "\u665a\u4e0a\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u6d41\u661f\u3001\u70df\u706b\uff0c\u4e09\u53e3\u4e4b\u5bb6\u624b\u62c9\u624b\u7ad9\u5728\u6d77\u6ee9\u4e0a\u7684\u80cc\u5f71\u3002"} +{"id": "4004429", "video_name": "ebf4e48b-c4ca-535d-bc6d-5b017f269458", "text": "\u8001\u9ea6\u514b\u5510\u7eb3\u6709\u4e00\u5ea7\u5927\u519c\u573a\uff0c\u5982\u6b64\u5b8f\u4f1f\uff0c\u6709\u6eda\u6eda\u7684\u7530\u91ce\u548c\u5b89\u6392\u597d\u7684\u52a8\u7269\u3002"} +{"id": "3006541", "video_name": "c3d0c161-23fb-5086-9261-1131fc305ba9", "text": "\u8349\u5806\u7a7f\u8d8a\u8352\u91ce\u7684\u573a\u666f\u3002"} +{"id": "7004988", "video_name": "b5920dfc-28ae-5a79-b105-9fd974209839", "text": "\u4ece\u4e0a\u65b9\u62cd\u6444\u8fd1\u666f\uff0c\u9ec4\u8272\u67e0\u6aac\uff0c\u7eff\u8272\u9178\u6a59\u3002"} +{"id": "7004580", "video_name": "6cfb0b10-df39-5092-a41a-edb1880b4c12", "text": "\u4e00\u540d\u9a0e\u8457\u81ea\u884c\u8eca\u5728\u8def\u4e0a\u7684\u7537\u5b50\uff0c\u770b\u8d77\u4f86\u975e\u5e38\u958b\u5fc3\uff0c\u80cc\u666f\u662f\u53f0\u5317\u5e02\u3002"} +{"id": "8001336", "video_name": "c4bcc2d3-6013-59de-a826-0d729ac43916", "text": "1970 \u5e74\u7684\u65b0\u6d3e\u827a\u672f\u7535\u5f71\uff0c\u624b\u6f02\u6d6e\u4e8e\u753b\u9762\u4e2d\uff0c\u753b\u8d28\u7c97\u7cd9\uff0c\u624b\u5411\u955c\u5934\u79fb\u52a8\u3002"} +{"id": "4003620", "video_name": "a2062045-45cc-5270-ab41-222d1e52081d", "text": "\u6708\u4eae\u3001\u95ea\u7535\u548c\u6781\u5149\u7684\u89d2\u8272\u7ee7\u7eed\u671d\u7740\u95ea\u5149\u5c71\u524d\u8fdb\u3002\u6bcf\u4e00\u6b65\u90fd\u8ba9\u4ed6\u4eec\u79bb\u76ee\u7684\u5730\u66f4\u8fd1\u3002"} +{"id": "8001149", "video_name": "33e1b7f0-4a41-5549-969b-cbd2ff1f387e", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u5728\u8d85\u5e02\u91cc\u548c\u4e0d\u540c\u7684\u8d2d\u7269\u8f66\u4ea4\u8c08\u3002"} +{"id": "2004846", "video_name": "31e32d5a-a466-5be3-bf4e-d645337208cb", "text": "\u4e00\u4e2a\u7531\u70b9\u6784\u6210\u7684\u6570\u5b57\u7f51\u683c\uff0c\u5f62\u6210\u8db3\u7403\u573a\u5730\u7684\u7ebf\u6761\uff0c\u7136\u540e\u53d8\u5f62\u6210\u8db3\u7403\u573a\u5730\u7684\u7ebf\u6761\uff0c\u6700\u540e\u53d8\u5f62\u6210\u7bee\u7403\u573a\u5730\u7684\u7ebf\u6761\u3002"} +{"id": "8002019", "video_name": "20232830-b908-52c3-b017-3407b6cca92b", "text": "\u5f53\u6211\u8fd8\u5c0f\u7684\u65f6\u5019\uff0c\u6211\u603b\u662f\u559c\u6b22\u5c1d\u8bd5\u65b0\u4e8b\u7269\u5e76\u5145\u5206\u5229\u7528\u5b83\u4eec\u3002"} +{"id": "5001968", "video_name": "377bb146-66ac-5762-9a0f-ab536e0ce8f4", "text": "\u5728\u6d77\u6ee9\u4e0a\u653e\u677e\u7684\u6d3b\u6cfc\u5973\u5b69\uff0c\u5728\u708e\u70ed\u7684\u5929\u6c14\u4e2d\u3002"} +{"id": "6002927", "video_name": "bc5855f1-25b2-5b71-b65a-118690dabcb6", "text": "\u6d77\u6ee9\u7535\u5f71\u4e2d\u7684\u7f8e\u5973\uff0c\u4f7f\u752850\u6beb\u7c73\u955c\u5934\u7684\u4e13\u4e1a\u76f8\u673a\u3002"} +{"id": "0004772", "video_name": "0efc2d9e-e910-5d29-9551-2d1f026221e9", "text": "\u83f2\u5229\u514b\u65af\u611f\u5230\u975e\u5e38\u60b2\u4f24\u548c\u8ff7\u5931\uff0c\u56e0\u4e3a\u4ed6\u6ca1\u6709\u4eba\u6765\u7167\u987e\u4ed6\u6216\u5728\u8fd9\u7247\u5de8\u5927\u7684\u68ee\u6797\u4e2d\u6307\u5f15\u4ed6\u3002\u4ed6"} +{"id": "2006821", "video_name": "cc943639-b1fe-5482-954b-689d2900cd08", "text": "\u963f\u5c14\u54c8\u8fea\u4f7f\u7528\u963f\u62c9\u4f2f\u4e66\u6cd5\u548c\u8c61\u5f81\u7740\u6307\u5bfc\u7684\u56fe\u50cf\u4e66\u5199\u3002"} +{"id": "5001677", "video_name": "16e8bf3d-0766-5633-8616-fd021c4abafb", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u4ece\u7535\u89c6\u91cc\u8df3\u51fa\u6765\u4e86\u3002"} +{"id": "1005328", "video_name": "61e86d7d-179c-5ff2-8855-530b9b95ed39", "text": "\u745c\u4f3d\u58eb\u5728\u4e00\u68f5\u5de8\u5927\u7684\u6563\u53d1\u679d\u53f6\u7684\u6811\u4e0b\u51a5\u60f3\u3002"} +{"id": "0006188", "video_name": "27ee0fe3-2d4f-5213-ae00-1d1fcf23a372", "text": "\u8fd9\u5ea7\u57ce\u5e02\u7684\u5efa\u7b51\u7269\u5728\u5730\u9707\u4e2d\u5f97\u5230\u51cf\u9707\u3002"} +{"id": "3005218", "video_name": "6d664d51-ca73-5de0-a256-7b991cea0837", "text": "\u91d1\u6bdb\u5bfb\u56de\u72ac\u73a9\u7403\u3002"} +{"id": "8003573", "video_name": "d3bddce0-92d7-578f-bef6-8af7bc95f935", "text": "\u4e00\u4e2a\u5c0f\u5706\u5708\u53d8\u5f97\u8d8a\u6765\u8d8a\u5927\uff0c\u7136\u540e\u51fa\u73b0\u4e86\u6570\u767e\u4e07\u4e2a\u5176\u4ed6\u5706\u5708\u52a0\u5165\u5b83\u3002"} +{"id": "0006497", "video_name": "2d84715a-3580-5c3b-afcf-00a2db6de69a", "text": "\u5728\u90a3\u91cc\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4eba\u5feb\u901f\u7f16\u5199\u4ee3\u7801\u7684\u6587\u672c\u3002"} +{"id": "8002527", "video_name": "c79e0820-3eef-5fb3-a973-300767863b0f", "text": "\u5728\u592a\u7a7a\u4e2d\u8d85\u5149\u901f\u65c5\u884c\u3002"} +{"id": "8001315", "video_name": "ced3ac2d-d84c-52dd-8793-a11ae363f74d", "text": "\u4e00\u8f86\u5916\u89c2\u50cf\u300a\u591c\u884c\u795e\u63a2\u300b\u8f66\u7684RAV4\u3002"} +{"id": "3004367", "video_name": "36da3f57-3b7f-5507-80cc-cdc85ea1640a", "text": "\u8fd0\u52a8\u8f66\u5728\u4e00\u5ea7\u70b9\u7f00\u7740\u706f\u5149\u7684\u7e41\u5fd9\u57ce\u5e02\u8def\u4e0a\u6f02\u79fb\u3002"} +{"id": "2003127", "video_name": "fa0b7457-5131-52cc-a780-3e7067eff6ca", "text": "\u4e00\u53ea\u767d\u8272\u7684\u8001\u864e\u5728\u8349\u539f\u4e0a\u5954\u8dd1\uff0c\u5728\u708e\u70ed\u7684\u9633\u5149\u4e0b\u8ffd\u6355\u4e00\u53ea\u7f9a\u7f8a\u3002"} +{"id": "1003010", "video_name": "37517ca3-cf99-57a0-bc80-fd6e92d0c4ee", "text": "\u5fb7\u56fd\u6cd5\u5170\u514b\u798f\u65e0\u4eba\u673a\u98de\u884c\u62cd\u6444\u30024K\uff0c9\uff1a16\uff0c20\u79d2\u3002"} +{"id": "5001990", "video_name": "9bfe03e7-893e-5528-b439-79f8f546dcd1", "text": "\u5c06\u4e00\u4e2a\u591c\u7a7a\u60f3\u8c61\u6210\u661f\u661f\u4ee3\u8868\u7740\u6bcf\u4e2a\u4eba\u6240\u6301\u6709\u7684\u4fe1\u5ff5\u3002\u6bcf\u9897\u661f\u661f\u4ee5\u4e0d\u540c\u7684\u5f3a\u5ea6\u95ea\u70c1\uff0c\u4ee3\u8868\u8fd9\u4e2a\u4fe1\u5ff5"} +{"id": "8001607", "video_name": "153a3331-eb47-5bc7-9de9-8b5d846d5991", "text": "\u4e00\u540d\u767d\u4eba\u5973\u5b69\u7a7f\u7740\u857e\u4e1d\u8863\u7ad9\u5728\u6b96\u6c11\u5730\uff0c\u770b\u7740\u57c3\u83f2\u5c14\u94c1\u5854\u3002"} +{"id": "3003546", "video_name": "170271b3-bb41-5016-9573-124d899a9148", "text": "\u521b\u9020\u4e00\u4e2a\u751f\u52a8\u800c\u52a8\u6001\u76843D\u573a\u666f\uff0c\u5c55\u793a\u4e00\u4e2a\u7403\u5f62\u5f69\u7968\u7403\u5728\u4e00\u4e2a\u95ea\u95ea\u53d1\u5149\u7684\u94ec\u8d28\u5bb9\u5668\u5185\u5145\u6ee1\u6d3b\u529b\u5730\u5f39"} +{"id": "0004087", "video_name": "02fcd7d5-f641-53be-aa37-a763374e459b", "text": "\u53f2\u8482\u6587\u00b7\u6885\u745f\u5c14\u548c\u7ef4\u7ef4\u5b89\u00b7\u8428\u68ee\u4e3a\u300a\u610f\u5927\u5229\u65f6\u5c1a\u300b\u62cd\u6444\u7684\u9ad8\u7ea7\u65f6\u5c1a\u521b\u610f\u6982"} +{"id": "4003694", "video_name": "9e172f71-cd8c-5dda-a494-17b52c1509b8", "text": "\u975e\u5e38\u8be6\u7ec6\uff0c\u91d1\u94b1\u5982\u96e8\u6dcb\u8fc7\u4eba\u3002"} +{"id": "7003914", "video_name": "68aff814-a7d5-58d6-aad1-453be8713fae", "text": "\u4e00\u6761\u72ed\u7a84\u7684\u901a\u9053\uff0c\u4e24\u65c1\u662f\u9661\u5ced\u7684\u5ca9\u77f3\uff0c\u5bb9\u6613\u5d29\u584c\u3002\u5728\u8fdc\u5904\u53ef\u4ee5\u770b\u5230\u4e00\u5ea7\u9ad8\u5cf0\uff0c\u4ece"} +{"id": "0004254", "video_name": "05da3e74-4a29-5897-8c65-94146c594c7d", "text": "\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u4e91\u6735\uff0c\u4ece\u5929\u7a7a\u4e2d\u964d\u4e34\u4e0b\u6765\u4e00\u4e2a\u62e5\u6709\u7fc5\u8180\u7684\u91d1\u53d1\u5e74\u8f7b\u7537\u5b50\uff0c\u662f\u4e00\u4f4d\u5929\u4f7f\u5728\u4fef"} +{"id": "8001073", "video_name": "a373548b-1852-52ca-8374-1811244e17b3", "text": "\u571f\u8457\u5e10\u7bf7\u91cc\u7684\u591c\u665a\u3002\u706b\u5149\u95ea\u70c1\u3002"} +{"id": "7004400", "video_name": "8cdb9031-a778-5cca-8bbb-f881b220a348", "text": "\u5b87\u5b99\u6d77\u9f9f\u5728\u884c\u661f\u548c\u661f\u661f\u5468\u56f4\u6e38\u6cf3\u3002"} +{"id": "3005264", "video_name": "d463ea57-9480-534d-8b45-d3b2b1948005", "text": "\u5f69\u8679\u6d88\u5931\u4e86\uff0c\u4e91\u6563\u4e86\u3002"} +{"id": "7002893", "video_name": "1109b23c-977c-50f8-ad51-e5cd32349c31", "text": "\u4e00\u53ea\u9ed1\u732b\u5728\u4e1c\u4eac\u7684\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "6003514", "video_name": "fcbbf5f6-87ab-5db6-b524-3303b006bc51", "text": "\u521b\u5efa\u4e00\u4e2a\u4ee4\u4eba\u6ee1\u610f\u7684\u51e0\u4f55\u5f62\u72b6\u7684\u89c6\u9891\u65e0\u9650\u5faa\u73af\u3002"} +{"id": "7002299", "video_name": "1543189c-e96d-598a-b9c5-24f16bfab33a", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u626e\u6f14\u5723\u8bde\u8001\u4eba\uff0c\u7ed9\u9f20\u5154\u9001\u793c\u7269\u3002"} +{"id": "3005451", "video_name": "4bd02058-496c-5f40-8ca0-f8468e9be9af", "text": "\u79d8\u5bc6\u9ed1\u624b\u515a\u6210\u5458\u85cf\u5728\u4e0b\u6c34\u9053\u91cc\u3002"} +{"id": "3005101", "video_name": "9381b26e-8bc3-5581-bdb7-4f806e10fdc2", "text": "AI\u804a\u5929\u673a\u5668\u4eba\u52a0\u8f7d\u52a8\u6001GIF\u3002"} +{"id": "0003477", "video_name": "3e53210b-d38b-5be6-9390-4416ba25156f", "text": "\u7537\u5b50\u5728\u8857\u4e0a\u6495\u5e7f\u544a\u6d77\u62a5\u3002"} +{"id": "2003808", "video_name": "3aa4ff62-f9c8-5391-9c39-3bad14a04ecd", "text": "\u4e00\u6761\u65cb\u8f6c\u7684DNA\u87ba\u65cb\uff0c\u5728\u5404\u79cd\u5065\u5eb7\u98df\u54c1\u5982\u6c34\u679c\u3001\u852c\u83dc\u3001\u575a\u679c\u548c\u8c37\u7269\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "2005163", "video_name": "c92e836c-31aa-5280-9da6-d435b5b7808b", "text": "\u5973\u6027\u5728\u5b9e\u73b0\u76ee\u6807\u65f6\u5c55\u73b0\u6fc0\u60c5\u3002"} +{"id": "0005281", "video_name": "17bf29a1-0fb1-5866-8a75-109d7ffc3780", "text": "\u73b0\u5b9e\u8b66\u5bdf\u4e00\u4eba\u79f0\u5c04\u51fb\u6e38\u620f\u7684\u753b\u9762\uff0c\u7c7b\u4f3c\u4e8eSteam\u4e0a\u7684\u300aReady or Not\u300b\u3002\u8bf7\u4fee\u6b63\u62fc\u5199\u9519\u8bef\u3002"} +{"id": "2006120", "video_name": "67441d19-bf39-5548-a759-c64ef954a085", "text": "\u5341\u5b57\u519b\u7684\u6218\u6597\u6b63\u5728\u8fdb\u884c\u3002"} +{"id": "4002659", "video_name": "2f81ffed-1cdc-56b9-bda5-9130f72602e9", "text": "\u4e00\u5806\u7535\u89c6\u5806\u53e0\u5728\u4e00\u8d77\uff0c\u6bcf\u4e2a\u90fd\u5c55\u793a\u7740\u4e0d\u540c\u7684\u56fe\u6848\u548c\u6545\u969c\u3002"} +{"id": "2006223", "video_name": "8ff3ad5e-02d4-5ae9-8a62-aca0d935f209", "text": "1980\u5e74\u4ee3\u96f7\u9b3c\u6728\u5076\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001224", "video_name": "74477039-1638-5a6e-b451-df087bcc8401", "text": "\u660e\u59ae\u5728\u68ee\u6797\u91cc\u7684\u8096\u50cf\uff0c\u65e2\u597d\u5947\u53c8\u7126\u8651\u3002\u662f\u4e2a\u52a8\u753b\u5361\u901a\u3002"} +{"id": "4002683", "video_name": "cc95e611-b3f0-5f6e-bd4b-1552e4b96f10", "text": "\u624b\u62c9\u5f00\u7834\u635f\u7684\u95e8\uff0c\u6df1\u84dd\u8272\u80cc\u666f\uff0c\u6709\u96fe\u3002"} +{"id": "2006886", "video_name": "3ec61e84-2324-5e88-b95f-0fed810188d5", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u8ffd\u4e00\u4e2a\u516c\u4ea4\u8f66\u3002\u8f66\u4e0a\u5750\u7740\u4e00\u4e2a\u5979\u559c\u6b22\u7684\u7537\u5b69\u3002\u7537\u5b69\u5728\u542c\u97f3\u4e50\uff0c\u6a21\u7cca\u5730\u610f\u8bc6\u5230\u6709\u4eba"} +{"id": "2006484", "video_name": "aea596af-f404-525e-a73c-698cd3963117", "text": "\u6027\u611f\u5973\u58eb\uff0c\u8eab\u6750\u6027\u611f\uff0c\u91d1\u8272\u7684\u5934\u53d1\u548c\u7f8e\u4e3d\u7684\u773c\u775b\u3002"} +{"id": "1005957", "video_name": "6d706fc0-0ada-5c58-99b6-e6ba93dd97b6", "text": "\u76ae\u514b\u65af\u89d2\u8272\u98ce\u683c\u7684\u732b\u8138\uff0c\u8868\u60c5\u4ece\u60b2\u4f24\u5230\u5feb\u4e50\u3002"} +{"id": "0006078", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "\u4e00\u53ea\u72ee\u5b50\u9a91\u7740\u4e00\u8f86\u8d85\u7ea7\u6469\u6258\u8f66\u548c\u4e00\u53ea\u5927\u8c61\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9"} +{"id": "7004016", "video_name": "9296b19f-350b-59ea-ac14-3927b2557755", "text": "\u7537\u5b50\u767b\u4e0a\u4e86\u7f8e\u56fd\u94c1\u8def\u516c\u53f8\u5217\u8f66\uff0c\u98ce\u683c\u5982\u540c\u76ae\u514b\u65af\u52a8\u753b\u3002"} +{"id": "3006948", "video_name": "0888e418-192e-5cb3-83ed-8218721b58a4", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u738b\u548c\u5979\u7684\u72fc\u5ba0\u7269\u4e00\u8d77\u5750\u5728\u5979\u7684\u5bab\u6bbf\u91cc\uff0c\u5979\u7a7f\u7740\u4e00\u4ef6\u84dd\u8272\u7684\u8fde\u8863\u88d9"} +{"id": "0005136", "video_name": "157628d3-b9ab-55c9-bb7c-900cc8593d16", "text": "\u539f\u5b50\u7c92\u5b50\u7684\u6765\u6e90\u4ece\u9ed1\u6697\u4e2d\u7684\u4e00\u4e2a\u5355\u4e00\u7684\u5149\u7ebf\u4e2d\u51fa\u73b0\uff0c\u5f53\u76f8\u673a\u653e\u5927\u65f6\uff0c\u7c92\u5b50\u4f1a\u8df3\u821e\u3002"} +{"id": "0005912", "video_name": "23277ddb-1e22-5344-a4bd-6176f26fc6f8", "text": "\u4e24\u4e2a\u526a\u5f71\u9762\u5bf9\u5de5\u4f5c\u548c\u5bb6\u5ead\u751f\u6d3b\u7b49\u6311\u6218\u7684\u52a8\u753b\u3002"} +{"id": "3003533", "video_name": "8a34e10d-71d4-5e31-82a6-302127f68998", "text": "\u4e24\u4e2a\u5341\u51e0\u5c81\u7684\u725b\u4ed4\u6234\u7740\u725b\u4ed4\u5e3d\u548c\u725b\u4ed4\u9774\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u7684\u505c\u8f66\u573a\u8df3\u821e\u3002"} +{"id": "3004870", "video_name": "4cabf6fc-b7bd-561d-8a91-c19fedd02e3a", "text": "\u83b1\u6602\u7eb3\u5fb7\u6d41\u661f\u96e8\uff0c\u4ee516\uff1a9\u6bd4\u4f8b\u3002"} +{"id": "2006830", "video_name": "2dc8fc58-f054-5ebb-96f6-c73929b77d7f", "text": "\u6570\u767e\u4e07\u53ea\u773c\u775b\u5728\u6444\u50cf\u673a\u4e0a\u95ea\u70c1\u3002"} +{"id": "8002898", "video_name": "e30d3634-fe02-522f-8496-3e68c6281795", "text": "\u4e00\u6ef4\u51dd\u7ed3\u6c34\u6ef4\u6cbf\u7740\u4e00\u4e2a\u51b0\u51b7\u5564\u9152\u676f\u4e0a\u6eda\u843d\u3002"} +{"id": "1005426", "video_name": "63a8d69d-b7bf-5646-a351-4826cf8ddbe4", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u5199\u65e5\u8bb0\uff0c\u8eab\u540e\u6302\u7740\u4e00\u76cf\u706f\u7b3c\uff0c\u7a97\u6237\u655e\u5f00\uff0c\u5916\u9762\u662f\u7ea2\u7070\u8272\u7684\u4e91\u5f69\u3001\u6c34\u3001"} +{"id": "2005575", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "\u53d7\u4f24\u6d41\u8840\u7684\u6258\u5c3c\u00b7\u65af\u5854\u514b\u770b\u5230\u5f7c\u5f97\u00b7\u5e15\u514b\u62b1\u7740\u4ed6\u7684\u5973\u513f\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "6003442", "video_name": "550c338a-ed22-55a3-8658-a0696fcbb73e", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u4e2d\u56fd\u5bfa\u5e99\u5728\u9ed1\u6697\u3001\u96e8\u591c\u4e2d\u3002"} +{"id": "6002080", "video_name": "5f1ff164-3dc3-5a1d-84ec-fd6c0b400e57", "text": "\u6211\u5728\u7535\u5f71\u955c\u5934\u4e2d\u770b\u5230\u4e86\u4e00\u53ea\u5de8\u5927\u7684\u8718\u86db\u8e72\u5728\u5899\u4e0a\u3002"} +{"id": "4004336", "video_name": "0e55f714-9a6d-5989-aa8e-1e6f84b22735", "text": "\u516c\u5143\u524d500\u5e74\u7f57\u9a6c\u7ade\u6280\u573a\u5185\u7684\u4eba\u7fa4\u9f13\u638c\u558a\u53eb\u3002"} +{"id": "1003571", "video_name": "41e44175-0284-5cde-86d4-2b56ee58a2a6", "text": "\u4e00\u6761\u6cb3\u6d41\u5728\u5c71\u8c37\u4e2d\u7f13\u7f13\u6d41\u6dcc\uff0c\u65b0\u6708\u88ab\u4e91\u5c42\u8986\u76d6\u3002"} +{"id": "6002730", "video_name": "fe87c5e0-795d-5f10-9c46-43647330c9f1", "text": "\u8d85\u73b0\u5b9e\u7684\u6162\u52a8\u4f5c\u89c6\u9891\uff0c\u7ea2\u8272\u6db2\u6ef4\u5728\u6c34\u4e2d\u6eb6\u89e3\uff0c\u7535\u5f71\u611f\uff0c8K\uff0c\u9ad8\u8d28\u91cf\u3002 \n\nSource sentence: The university offers a wide range of courses in"} +{"id": "6002715", "video_name": "1b20cf28-d127-5e2b-a744-a47768a29c43", "text": "\u65b0\u751f\u5a74\u513f\u5728\u6bcd\u4eb2\u6000\u4e2d\u54ed\u6ce3\u3002"} +{"id": "1003483", "video_name": "4087a0de-b47d-5307-84a8-6c593c295b10", "text": "\u4e8c\u6218\u6218\u6597\u673a\u98de\u8fc7\u4e00\u5ea7\u88ab\u70b8\u6bc1\u7684\u57ce\u5e02\uff0c\u4ee5\u65e7\u5f0f\u7535\u5f71\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "3004976", "video_name": "b7f5eebe-23ee-5574-ac67-a0384537c8aa", "text": "\u6211\u4eec\u662f\u521b\u9020\u8005\u3002\u6211\u4eec\u521b\u9020\u6fc0\u60c5\u3002\u6211\u4eec\u521b\u9020\u68a6\u60f3\u3002\u73b0\u5728\u6211\u4eec\u521b\u9020\u673a\u4f1a\u3002\u6211\u4eec\u5f52\u8fd8\u521b\u9020\u7684\u529b\u91cf\u3002\u6211\u4eec\u521b\u9020"} +{"id": "7002735", "video_name": "fbe43842-e062-54ca-844a-80bd3e6ca77d", "text": "\u8001\u9e70\u8bd5\u56fe\u6355\u6349\u8001\u9f20\u3002"} +{"id": "8002616", "video_name": "4973c915-ccf1-5aea-98cf-a0ec11a69fca", "text": "\u4e00\u9053\u795e\u5723\u7684\u5149\u8292\u7167\u4eae\u4e86\u6574\u4e2a\u573a\u666f\uff0c\u9010\u6e10\u5730\uff0c\u989c\u8272\u5b9a\u683c\uff0c\u5448\u73b0\u51fa\u4e00\u4e2a\u4ee4\u4eba\u60ca\u53f9\u7684\u82b1\u56ed"} +{"id": "0003150", "video_name": "3817a513-3b79-57da-b3f2-df4b7d40b279", "text": "\u5934\u9aa8\u8ffd\u9010\u7740\u7537\u4eba\uff0c\u7537\u4eba\u7a7f\u8fc7\u969c\u788d\u7269\u3002"} +{"id": "3004881", "video_name": "8a6b1bfb-584f-58b0-a737-284f81484d1a", "text": "\u9ed1\u8863\u7d2b\u7ffc\u7684\u5730\u72f1\u5929\u4f7f\u5728\u7f8e\u4e3d\u7684\u80cc\u666f\u4e0b\u591c\u964d\u4eba\u95f4\u3002"} +{"id": "1004097", "video_name": "4bcfb448-e30c-5aa5-8ad9-76ef490f79ad", "text": "\u66f4\u6362\u8863\u670d \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "6003987", "video_name": "d183d17b-a3c5-548d-8d2f-6100e466071c", "text": "11\u670818\u65e5\u60b2\u5267\u4e8b\u4ef6\u7684\u987a\u5e8f\uff0c\u5305\u62ec\u56fd\u4f1a\u8bae\u5458\u745e\u5b89\u7684\u9047\u523a\u3002"} +{"id": "7002414", "video_name": "faf4b2d0-4336-54e3-9ce4-78fec3557226", "text": "\u4e00\u53ea\u706b\u72d0\u5728\u591c\u665a\u7a7f\u8fc7\u68ee\u6797\uff0c\u8fea\u58eb\u5c3c\u52a8\u753b\u3002"} +{"id": "1004794", "video_name": "58a17a1f-f5e5-537b-8394-61ab15ec7cc9", "text": "\u8fd9\u662f\u5c11\u5973\u54c0\u60bc\u7684\u58f0\u97f3\u3002"} +{"id": "2007004", "video_name": "6c0bffbb-b53d-50c2-83a8-a023be33f28c", "text": "Minecraft\u7684\u6574\u4e2a\u4e16\u754c\u5728\u4e00\u4e2a\u89c6\u9891\u4e2d\u3002"} +{"id": "2005571", "video_name": "52807dde-88f1-5483-83d7-e7402f53d759", "text": "\u4e00\u7247\u6709\u6a31\u82b1\u6811\u7684\u68ee\u6797\u3002\u6d88\u606f\uff1a\u4f60\u597d\u827e\u7433\u59ae\uff1a\uff09\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "8003856", "video_name": "a7fcc6d0-8622-5f40-86a0-1ff625c8a4d5", "text": "\u4e00\u4e2a\u5728\u7a7a\u95f4\u4e2d\u65cb\u8f6c\u7684\u65cb\u8f6c\u661f\u7cfb\u3002\u4ece\u8fdc\u5904\u89c2\u5bdf\u3002\u80cc\u666f\u4e2d\u6709\u79fb\u52a8\u7684\u6052\u661f\u3001\u884c\u661f\u3001\u5f57\u661f\u548c\u9ed1\u6d1e\u3002"} +{"id": "8003195", "video_name": "4b06b505-a146-5e37-b606-7b1b890527f6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u58eb\u6b63\u5728\u601d\u8003\u5982\u4f55\u88c5\u9970\u5979\u7684\u5ba2\u5385\u3002 \n\nSource sentence: I am going to the grocery store to buy some fruits and vegetables. \n\n\u6211\u8981\u53bb\u6742\u8d27\u5e97"} +{"id": "7003136", "video_name": "5b022ced-75f6-5f85-af01-62080e067f22", "text": "\u6751\u4e0a\u9686\u7684\u52a8\u753b\u98ce\u683c\u4e2d\u7684\u300a\u75af\u72c2\u52a8\u7269\u57ce\u300b\u9ed1\u8c79\u8d70\u51fa\u4e86\u4ed6\u5bb6\u7684\u524d\u95e8\u3002"} +{"id": "7003661", "video_name": "c1920289-0989-5860-81d9-e2cb7b57ced7", "text": "\u624b\u6301\u5370\u5ea6\u6559\u6b66\u5668\u82cf\u8fbe\u6c99\u7eb3\u8f66\u8f6e\u7684\u514b\u91cc\u5e0c\u7eb3\u795e\uff0c\u80cc\u540e\u60ca\u96f7\u8f70\u9e23\uff0c\u6ce8\u89c6\u7740\u6211\u3002"} +{"id": "8003228", "video_name": "bffd2df7-dd37-5073-b6d2-2504fd6a6cd5", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u671b\u7740\u7a97\u5916\uff0c\u8bb8\u591a\u6469\u5929\u5927\u697c\uff0c\u592a\u9633\u6b63\u5728\u843d\u5c71\u3002"} +{"id": "8001109", "video_name": "b44c3150-6404-572d-90da-f920b3e8cdbc", "text": "\u7537\u4eba\u4ece\u8116\u5b50\u5904\u51fa\u6c57\u3002\u708e\u70ed\u7684\u590f\u5929\uff0c\u6234\u7740\u5e3d\u5b50\u3002"} +{"id": "3003837", "video_name": "f2fa038e-796c-5e72-af7c-95843e2c89fb", "text": "1 \u98ce\u666f\u6d88\u5931\u4e86\uff0c\u9732\u51fa\u4e86\u4e00\u68f5\u6811\u3002"} +{"id": "1006580", "video_name": "78886524-8714-5227-b3fb-d95a93c752c8", "text": "\u5e74\u8f7b\u5973\u5b69\u548c\u8001\u4eba\u5728\u82b1\u56ed\u91cc\u6253\u67b6\u3002"} +{"id": "8003833", "video_name": "b6ce926e-8a33-5c77-b309-9ff8bdd59e53", "text": "\u6751\u8fb9\u82b1\u56ed\u91cc\uff0c\u9e21\u548c\u5154\u5b50\u524d\u9762\u6709\u4e00\u6761\u7eff\u8272\u7684\u86c7\u3002"} +{"id": "2005250", "video_name": "766f6fde-f2bb-5e1b-a03e-4797a4cff564", "text": "\u4e00\u4f4d\u5973\u5b50\u572820\u4e16\u7eaa40\u5e74\u4ee3\u7684\u65e0\u58f0\u6050\u6016\u7247\u4e2d\u6f2b\u6b65\uff0c\u5f71\u50cf\u9897\u7c92\uff0c\u73af\u5883\u6c1b\u56f4\u8be1\u5f02\uff0c\u7531\u8482\u59c6"} +{"id": "0006546", "video_name": "2e757909-8ee5-592c-841b-1af74d3e6632", "text": "\u98ce\u4e2d\u98d8\u52a8\u7684\u65d7\u5e1c\u3002"} +{"id": "3004792", "video_name": "0e9efd5d-886f-5539-ae44-911109df70d0", "text": "6. \u63a2\u7d22\u5bf9\u793e\u4f1a\u52a8\u6001\u7684\u6df1\u523b\u540e\u679c\u548c\u53cd\u601d\u3002"} +{"id": "7004128", "video_name": "fc683308-1853-5f2c-9151-62d596dbcb2e", "text": "\u4e00\u4f4d\u8eab\u7a7f\u84dd\u8272\u548c\u91d1\u8272\u957f\u888d\u7684\u6b66\u58eb\u5728\u6a31\u82b1\u6797\u4e2d\u6f2b\u6b65\uff0c\u7f8e\u4e3d\u7684\u9ecf\u571f\u52a8\u753b\uff0c\u8482\u59c6\u00b7"} +{"id": "7003446", "video_name": "98bf8bc9-ae51-5fcc-8f39-503749f79a55", "text": "\u6b7b\u4ea1\uff1aMaharana Pratap\u4e8e1597\u5e741\u670819\u65e5\u53bb\u4e16\uff0c\u7531\u4ed6\u7684\u513f\u5b50Amar Singh I\u7ee7\u627f\u4e86\u4ed6\u7684\u738b\u4f4d\u3002"} +{"id": "0003350", "video_name": "3c059dc0-dd79-5b62-a5c3-3a456d86a5be", "text": "3D\u56fe\u50cf\u300a\u821e\u8e48\u7684\u4f18\u96c5\uff1a\u7070\u59d1\u5a18\u300b\u5c55\u73b0\u4e86\u5979\u7a7f\u7740\u53d1\u5149\u7684\u73bb\u7483\u978b\uff0c\u5728\u76db\u5927\u7684\u821e\u4f1a"} +{"id": "0004186", "video_name": "04bf1a3f-d992-5482-9164-57b18413a39e", "text": "\u4e00\u53ea\u5c0f\u732b\u5728\u624b\u4e0a\u8df3\u821e\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "8003410", "video_name": "d170dbef-bcf7-523a-a498-80b79470b63e", "text": "\u8bd5\u56fe\u62c9\u8d77\u951a\uff0c\u4f46\u4ed6\u65e0\u6cd5\u3002"} +{"id": "7002973", "video_name": "66f9abb9-e7b2-5ba9-869b-de19d679bc4f", "text": "\u514b\u91cc\u65af\u8482\u5a1c\u00b7\u57fa\u4ec0\u5185\u5c14\u548c\u5f17\u62c9\u57fa\u7c73\u5c14\u00b7\u666e\u4eac\u76f8\u7231\u4e86\u3002"} +{"id": "3006376", "video_name": "28cd64da-1e1f-57bc-8fbc-4846ccb608f3", "text": "\u4e00\u53ea\u8774\u8776\u548c\u4e00\u53ea\u8702\u9e1f\u6b63\u5728\u9ec4\u8272\u82b1\u6735\u4e0a\u91c7\u871c\u3002"} +{"id": "3003891", "video_name": "1ad0d70f-9393-538a-93d9-13654609c1cc", "text": "\u56fe\u50cf\u653e\u5927\uff0c\u5899\u4e0a\u51fa\u73b0\u4e00\u4e2a\u5973\u4eba\u7684\u5f71\u5b50\uff0c4K\uff0c\u8868\u73b0\u4e3b\u4e49\u3002"} +{"id": "3005986", "video_name": "482218ab-b3f7-5bbc-9e4e-81fbf012b4cd", "text": "\u4e00\u5f20\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7559\u7740\u957f\u957f\u7684\u98d8\u9038\u53d1\u4e1d\u7684\u5e74\u8f7b\u4eba\u5750\u5728\u4e00\u95f4\u5145\u6ee1\u4e66\u672c\u548c\u79d1\u6280\u5c0f\u73a9\u610f\u7684"} +{"id": "3005940", "video_name": "b735b40f-8eb9-55b8-968b-5590949baa86", "text": "\u6d77\u6ee9\u4e0a\uff0c\u9f99\u5377\u98ce\u5c06\u6c34\u5168\u90e8\u5438\u8d77\uff0c\u628a\u6d77\u6ee9\u4e0a\u7684\u6c34\u5168\u90e8\u5438\u8d70\u4e86\u3002"} +{"id": "4004692", "video_name": "b2eb38ca-a191-58c8-ad8d-4f5dd9b94bf9", "text": "\u53e6\u4e00\u4e2a\u661f\u7403\u4e0a\u7684\u5916\u661f\u4eba\u5893\u5730\uff0c\u6709\u7740\u9634\u68ee\u7684\u575f\u5893\u548c\u6cbc\u6cfd\u96fe\uff0c\u751f\u7269\u53d1\u5149\u7684\u7ae0\u9c7c\u3002"} +{"id": "3006517", "video_name": "e120e328-8077-59e6-8493-7c6c78868de3", "text": "\u4eba\u7c7b\u4ea4\u6613\u7684\u8d27\u5e01\u5f62\u5f0f\u4ece\u8d1d\u58f3\u5230\u9ec4\u91d1\uff0c\u4ece\u7eb8\u5e01\u5230\u6570\u5b57\u8d27\u5e01\u518d\u5230\u865a\u62df\u8d27\u5e01\u4e0d\u4e00\u800c\u8db3\u3002"} +{"id": "8001252", "video_name": "206ec095-d0a5-5414-912f-3711e34f945a", "text": "\u5728\u5b87\u5b99\u7684\u4e2d\u592e\u3002\u73b0\u5b9e\u7684\u3002\u7c92\u5b50\u3001\u661f\u7403\u3001\u884c\u661f\u3001\u5f57\u661f\u3002"} +{"id": "2007497", "video_name": "969246f9-c861-5bf5-aff7-a249c0c9d6b6", "text": "\u4e00\u4f4d\u770b\u8d77\u6765\u8ff7\u5931\u7684\u5546\u4eba\u3002"} +{"id": "1004747", "video_name": "57e0145b-3aea-5ddd-ad5d-c234de45287c", "text": "\u623f\u5b50\u642c\u8fc1\u7f13\u6162\uff0c\u9700\u8981\u4e00\u4efd\u9644\u4ef6\u3002"} +{"id": "6003034", "video_name": "c9504fbd-83ed-5102-a116-111be048f802", "text": "\u7d2b\u8272\u82b1\u6735\u5728\u795e\u79d8\u7684\u68ee\u6797\u91cc\uff0c\u968f\u98ce\u6447\u66f3\u3002"} +{"id": "4002408", "video_name": "41645790-2232-5d99-b551-aed4f3f3cc51", "text": "\u4ea7\u54c1\u7684\u5916\u5f62\u4e0d\u9519\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004885", "video_name": "42772558-3bdf-5dfb-b5ae-737368f29eaa", "text": "\u4eba\u4eec\u5728\u6d17\u624b\u95f4\u4e3a\u6c49\u5821\u5305\u4e89\u5435\u3002"} +{"id": "0003547", "video_name": "3f493c6c-03c0-5097-b387-e10764f8dc8e", "text": "\u8bf7\u4ee5\u201c\u676f\u5934\u201d\u6e38\u620f\u7684\u98ce\u683c\u753b\u4e00\u5e45\u63d2\u56fe\u3002\u6050\u9f99\u4eec\u5750\u5728\u5361\u8f66\u91cc\u6cbf\u7740\u9053\u8def\u884c\u9a76\uff0c\u5f00\u5fc3\u5730\u7b11\u7740"} +{"id": "2006206", "video_name": "b379dae1-cc33-5c7c-ab7f-4e0c57be4a79", "text": "\u5c06\u591a\u79cd\u5929\u7136\u7ef4\u751f\u7d20\u6df7\u5408\u5728\u4e00\u4e2a\u5c0f\u74f6\u4e2d\uff0c\u5236\u6210\u5f3a\u6548\u7684\u8425\u517b\u8865\u5145\u5242\u3002"} +{"id": "2004947", "video_name": "496808ec-51dd-56f5-93a8-297f100c75af", "text": "\u4e00\u4e2a\u62ff\u7740\u7eff\u8272\u5e73\u677f\u7684\u5973\u5b69"} +{"id": "0006878", "video_name": "349dfeea-7497-5e4c-9c90-7e30a53cc9c6", "text": "\u5f00\u573a\u955c\u5934\u662f\u5370\u5ea6\u6751\u5e84\u7f8e\u4e3d\u7684\u7eff\u8272\u666f\u89c2\uff0c\u592a\u9633\u6b63\u5728\u5347\u8d77\u3002"} +{"id": "5001453", "video_name": "443ab5ad-474c-51eb-a020-35ac1defa2cf", "text": "\u52a8\u7269\u4eec\u7684\u7b11\u58f0\u548c\u6b22\u4e50\u5145\u6ee1\u4e86\u68ee\u6797\u7684\u9b54\u529b\u3002"} +{"id": "1004455", "video_name": "526fc3fa-e56b-5947-87e5-d96459c24dc0", "text": "\u5728\u540e\u542f\u793a\u5f55\u7684\u573a\u666f\u4e2d\uff0c\u4e00\u53ea\u5c0f\u578b\u4eba\u5f62\u673a\u5668\u4eba\u5728\u591c\u665a\u6cbf\u7740\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\u884c\u8d70\u3002"} +{"id": "7002255", "video_name": "038ac36b-76fc-5d12-8705-b6c2d758c6be", "text": "\u5728\u65e5\u590d\u4e00\u65e5\u7684\u751f\u6d3b\u4e2d\uff0c\u5979\u7684\u5185\u5fc3\u6e34\u671b\u7740\u66f4\u591a\u7684\u4e1c\u897f\u3002"} +{"id": "0005292", "video_name": "17f31371-81c2-573b-89b8-2a30dbfd157c", "text": "\u5728\u8def\u9014\u4e2d\uff0c\u5979\u9047\u5230\u4e86\u50cf\u667a\u6167\u7cbe\u7075\u3001\u987d\u76ae\u5c0f\u5996\u7cbe\u548c\u9ad8\u8d35\u9f99\u8fd9\u6837\u7684\u5947\u5e7b\u751f\u7269\u3002\n\nSource sentence"} +{"id": "7003386", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "\u96e8\u5237\u8d8a\u6765\u8d8a\u5feb\u5730\u79fb\u52a8\uff0c\u4eff\u4f5b\u5728\u9f13\u52b1\u53f8\u673a\u52c7\u6562\u524d\u884c\u3002\u8f66\u7a97\u5916\u7684\u666f\u8272\u5728\u96e8\u5237\u7684\u6446\u52a8"} +{"id": "1004222", "video_name": "4e1f7c9f-9d87-5175-be14-809ced79a041", "text": "\u7a7f\u8fc7\u4e00\u7fa4\u4e2d\u4e16\u7eaa\u730e\u4eba\u7ad9\u5728\u4e00\u8d77\u3002"} +{"id": "7002090", "video_name": "0fc62295-db4e-5a95-840a-beed88dd0ea3", "text": "\u5c55\u793aTwinkle\u4ef0\u671b\u591c\u7a7a\u4e2d\u95ea\u8000\u7684\u5723\u8bde\u660e\u661f\uff0c\u773c\u775b\u5145\u6ee1\u60ca\u5947\u3002"} +{"id": "6003020", "video_name": "ef699f76-7512-5431-921a-b3c8dc119d25", "text": "\u793e\u533a\u79ef\u6781\u53c2\u4e0e\u9884\u9632\u63aa\u65bd\u3002"} +{"id": "1006102", "video_name": "6fece653-b94c-59a8-9512-cef96ee77ce4", "text": "\u4e09\u4e2a\u670b\u53cb\u5236\u4f5c\u4e86\u4e00\u90e8\u6050\u6016\u95e8\u52a8\u753b\u3002"} +{"id": "2004142", "video_name": "97fd2002-a7d0-59d5-8ba0-81cf77cda1a3", "text": "\u73b0\u5b9e\u7684\u6811\u6797\u4e2d\u6d41\u52a8\u7684\u7011\u5e03\uff0cYouTube\u6807\u51c616\uff1a9\u89c6\u9891\u5c3a\u5bf8\u7684\u89c6\u9891\u3002"} +{"id": "0006373", "video_name": "2b577976-4333-599f-b18a-f41da470397a", "text": "\u52a8\u6f2b\u89d2\u8272\u4f7f\u7528\u52a8\u6f2b\u624b\u673a\u5e94\u7528\u7a0b\u5e8f\u63a5\u7535\u8bdd\u3002"} +{"id": "6002896", "video_name": "25ac5f4e-5aaf-5778-92e0-e7fb8f0dd2ee", "text": "\u5c3d\u5934\u6709\u4e00\u6247\u9713\u8679\u706f\u95e8\u7684\u65e0\u5c3d\u8d70\u5eca"} +{"id": "2003330", "video_name": "8f3acd69-9e37-509f-a1d9-48b586ff067f", "text": "\u60f3\u8c61\u4e00\u5ea7\u6708\u5149\u7167\u8000\u7684\u6751\u5e84\uff0c\u9634\u5f71\u5728\u9e45\u5375\u77f3\u8857\u9053\u4e0a\u5ef6\u4f38\uff0c\u800c\u6084\u6084\u5782\u4e0b"} +{"id": "4003881", "video_name": "f45eb036-f115-5578-85bf-63876df0773b", "text": "\u6708\u7403\u4e0a\u7684\u5370\u5ea6\u9910\u5385"} +{"id": "0003590", "video_name": "40122760-2f0e-5785-a323-d1063f30d8ab", "text": "\u516c\u4e3b\u827e\u745e\u7d72\u6b63\u5728\u756b\u4e00\u9846\u6c34\u6676\u6a59\uff0c\u8272\u8abf\u5728\u6d1e\u7a74\u4e2d\u53cd\u5c04\u548c\u6563\u5c04\u3002"} +{"id": "3003315", "video_name": "7eec9325-a746-5144-b8f1-0f69e28eabd5", "text": "\u76ae\u80a4\u7531\u5976\u916a\u7ec4\u6210\u7684\u7537\u4eba"} +{"id": "7003650", "video_name": "085d8066-da54-5613-96b0-e0db7feab9a2", "text": "\u4e00\u9897\u5728\u6e05\u6f88\u84dd\u5929\u4e2d\u79fb\u52a8\u7684\u592a\u9633\uff0c\u4f34\u968f\u7740\u95ea\u7535\u3002\u4e00\u4e2a\u53e4\u602a\u7684\u89c6\u9891\uff0c\u53d7\u5230\u300a\u77f3\u69b4\u8272\u300b\u7535"} +{"id": "4002620", "video_name": "464c90d3-c536-539d-a2bb-08f375cf4d0c", "text": "\u6770\u514b\u00b7\u9a6c\u4e0e\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4e0a\u6d77\u3002"} +{"id": "1005060", "video_name": "5d83591f-0d92-5baf-ba7c-c545c2a78983", "text": "\u76d8\u5b50\u91cc\uff0c\u4e00\u8fb9\u653e\u7740\u56db\u767e\u7b2c\u7eb3\u5c14\uff0c\u53e6\u4e00\u8fb9\u653e\u7740\u534a\u7b2c\u7eb3\u5c14\u3002"} +{"id": "3004774", "video_name": "bae952e5-d4b5-519c-b76a-7c53644cd916", "text": "\u8bb8\u591a\u5973\u5b69\u5728\u5c71\u95f4\u7ff1\u7fd4\u3002"} +{"id": "2005000", "video_name": "e5a6abd6-692c-5add-826f-f9b583117bd5", "text": "\u7d2b\u8272\u68ee\u6797\u4e0a\u65b9\u7684\u65e0\u4eba\u673a\u98de\u884c\uff0c4K\u3002"} +{"id": "3003963", "video_name": "b269a020-d15c-5e03-9584-3dab6e2375ee", "text": "\u8df3\u8dc3\u7684\u6d77\u8c5a\u8fdb\u5165\u6c34\u4e2d\u7684\u7b2c\u4e09\u5f20\u9ad8\u8d28\u91cf\u56fe\u50cf\u3002"} +{"id": "4003640", "video_name": "79beabca-1ed8-50d2-9c4a-fbf7d737b562", "text": "\u5b9d\u5b9d\u9ad8\u5174\u5730\u5012\u6c99\u5b50\u3002"} +{"id": "3003996", "video_name": "34eec9f5-01fe-5827-a737-6968db73be3d", "text": "mg\u6da1\u8f6e\u589e\u538b\u6c7d\u8f66\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "4002968", "video_name": "92c8a6f0-6883-5dc9-a454-4be7605600ce", "text": "\u5df4\u9ece\u5929\u4e0a\u6389\u4e0b\u6765\u7684\u98df\u7269"} +{"id": "3004414", "video_name": "409c1b9f-3703-5839-99e7-9f98024fdbdd", "text": "\u4e00\u540d\u94f6\u53d1\u52a8\u6f2b\u5973\u5b69\u6b63\u5728\u8bf4\u8bdd\u3002"} +{"id": "0005643", "video_name": "1e921d6b-35d8-5b34-82f8-6c2e2fcf89d3", "text": "\u751f\u6210\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u5728\u8fd9\u4e2a\u573a\u666f\u4e2d\uff0c\u4e00\u9897\u53ef\u7231\u7684\u661f\u661f\u53eb\u505a\u201cTwinkle\u201d\u79bb\u5f00\u591c\u7a7a\u964d\u843d\u5230\u5730\u7403\u4e0a\u7684\u4e00\u4e2a\u795e\u5947"} +{"id": "4002779", "video_name": "a0afce0e-2d0f-5a00-a1b1-2d6bd7a2b9ab", "text": "\u672a\u6765\u4e3b\u4e49 Burning Man Led \u5149\u821e\u8282 2030\uff0c\u903c\u771f\u7684\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "6003430", "video_name": "3318043a-8f98-59fe-8c78-f9b72a9d6481", "text": "\u4e07\u5723\u8282\u88c5\u626e\u7684\u6ce2\u65af\u5c0f\u732b\u8df3\u821e\u7684\u52a8\u753b\u3002"} +{"id": "4002477", "video_name": "224ba8b3-6d17-5370-82e7-dc4b65c7ae77", "text": "\u4e00\u4e2a\u7537\u5b69\u591a\u6b21\u6447\u7740\u624b\u8bf4\u201c\u4e0d\u201d\u3002"} +{"id": "8001825", "video_name": "138a5b53-b38d-5e96-91d0-b42b3f6051f6", "text": "\u540a\u6247\u3001\u4e00\u53ea\u540a\u6247\u3001zido\u3001maxar\u3001\u98ce\u6247\u3001\u98ce\u6247hals\u3001\u6570\u5b57\u827a\u672fh 9 6 0\u3001\u4ea7\u54c1\u7167\u7247\u3001\u5168\u666f"} +{"id": "8001316", "video_name": "2a78a5f0-219e-5707-817d-8276a30dbad8", "text": "\u5965\u62c9\u592b\u00b7\u8096\u5c14\u8328\u8bb0\u4e0d\u5f97\u4e86\u3002\u6211\uff08\u73b0\u4ee3\u5b57\u4f53\uff09\u3002"} +{"id": "6004069", "video_name": "cf752166-eaf1-5ac6-9a15-a9b698d955d5", "text": "\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u897f\u88c5\u7684\u7537\u5b50\u9a7e\u9a76\u7740\u4e00\u8f86\u5b9a\u5236\u7684\u5409\u666e\u8f66\u5728\u8349\u539f\u4e0a\u8ffd\u9010\u4e00\u53ea\u91ce\u725b\u3002"} +{"id": "2004644", "video_name": "2443fe9e-33bb-5771-a5ad-ea98a1d24ca2", "text": "\u4f7f\u7528\u58a8\u897f\u54e5\u8fa3\u6912\u521b\u9020\u4e00\u4e2a\u58a8\u897f\u54e5\u98df\u54c1\u60c5\u666f\uff0c\u8ba9\u4eba\u60f3\u5403\u8fd9\u9053\u83dc\uff0c\u83dc\u6563\u53d1\u7740\u84b8\u6c7d\uff0c\u5728"} +{"id": "1003119", "video_name": "3968d42b-c3fb-54ce-b4e0-4a6553b35a56", "text": "\u4e2d\u56fd\u58a8\u6c34\u9f99\uff0c4k\uff0c\u5b8c\u7f8e\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u4fef\u89c6\u56fe\u3002"} +{"id": "2003291", "video_name": "cde5a8fb-f7e2-54e7-9bc4-39867191b0c9", "text": "\u5973\u5b69\u9a91\u9a6c\u7a7f\u8d8a\u591c\u7a7a\uff0c\u661f\u661f\uff0c\u5b87\u5b99\uff0c\u5728\u83ab\u6bd4\u4e4c\u65af\u98ce\u683c\u4e2d\u3002"} +{"id": "5001474", "video_name": "e778c98a-1bf8-510b-a5b0-16885183a177", "text": "3D\u52a8\u753b\uff0c\u4e2a\u6027\uff1a\u8f6c\u573a\u955c\u5934\uff1a\u591c\u665a\u57ce\u5e02\u7684\u60ca\u4eba\u7684\u9e1f\u77b0\u56fe\u3002\u6444\u50cf\u673a\u7a7f\u8fc7\u57ce\u5e02\u98ce\u666f\uff0c\u5c55\u793a\u5176\u5e7f"} +{"id": "6003547", "video_name": "61e13b7f-ffbe-50cd-a28c-0019793c91ee", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u4eba\u6b63\u5728\u5f00\u5fc3\u5730\u5411\u5ba2\u6237\u89e3\u91ca\u3002"} +{"id": "8003142", "video_name": "1e943fd6-f995-5eb2-a638-2b097095a632", "text": "\u4ee5Beksinski\u7684\u98ce\u683c\u4e3a\u57fa\u7840\uff0c\u521b\u4f5c\u51fa\u602a\u5f02\u7684\u5916\u661f\u751f\u7269\uff0c\u878d\u5408\u4e86\u5145\u6ee1\u6d3b\u529b\u7684\u6ce2\u666e\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u5bc6\u7801"} +{"id": "7002493", "video_name": "f14e7837-b78c-5b06-853a-f65abb18260a", "text": "\u4e00\u53ea\u96c4\u4f1f\u7684\u888b\u9f20\u8df3\u8dc3\u7740\u957f\u8ddd\u79bb\uff0c\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\u30029:16"} +{"id": "6004694", "video_name": "9f73ea29-6cfd-5eaf-88bd-00d937268560", "text": "\u623f\u95f4\u660f\u6697\uff0c\u5899\u4e0a\u6295\u4e0b\u957f\u957f\u7684\u5f71\u5b50\u3002"} +{"id": "1003424", "video_name": "3f43c841-f76b-5552-973b-7984e1700fd7", "text": "\u5728\u4ee4\u4eba\u5174\u594b\u7684\u9ad8\u6f6e\u4e2d\uff0c\u5965\u5229\u7ef4\u4e9a\u9762\u5bf9\u7740\u5de8\u517d\u822c\u7684\u5b58\u5728\uff0c\u501f\u52a9\u7956\u5148\u7684\u8840\u9b54\u6cd5\u548c"} +{"id": "8002491", "video_name": "633e27d8-86d3-5e9d-9aab-4531fc77ae8d", "text": "\u4e00\u53ea\u62e5\u6709\u7ea2\u8272\u5934\u53d1\u548c\u84dd\u8272\u8fde\u5e3d\u886b\u7684\u66b4\u9f99\u5728\u5c71\u8c37\u4e2d\u6f2b\u6b65\uff0c\u624b\u6301\u4e00\u6876\u7206\u7c73\u82b1\u3002"} +{"id": "3006083", "video_name": "70a88b64-a494-5d7d-bdf7-45bded2cdb85", "text": "\u6e90\u53e5\uff1a\u6765\u81ea X\u6218\u8b66\u7684\u98ce\u66b4\u5728\u95ea\u7535\u98ce\u66b4\u4e2d\u98de\u884c\n\nTranslation: \u98ce\u66b4\u4eceX\u6218\u8b66\u4e2d\u98de\u5165\u95ea\u7535"} +{"id": "1004020", "video_name": "4a8efad6-c2dc-53ad-8eb0-904e1ac63e1d", "text": "\u5728\u90a3\u9ad8\u5927\u5bbd\u9614\u7684\u6811\u4e0b\uff0c\u6709\u4e00\u5929\u4ed6\u4eec\u8df3\u821e\u5b09\u620f\uff0c\u4ece\u4e0d\u9700\u8981\u8eb2\u85cf\u3002\u6591\u9a6c\u6761\u7eb9\u65cb\u8f6c\uff0c\u957f"} +{"id": "6003891", "video_name": "a02369d5-fc50-5b29-b985-1d8cfb5a2f9e", "text": "\u4e00\u5ea7\u8c6a\u534e\u7684\u5927\u53a6\u7684\u5168\u666f\u7167\u7247\uff0c35\u5c81\u7684\u6df7\u8840\u79c3\u9876\u7537\u5b50\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u4fef\u89c6\u7740\u57ce\u5e02\u98ce\u666f"} +{"id": "4004195", "video_name": "eec90ac5-3ac9-5009-ab55-c7c09471e46b", "text": "\u73b0\u5b9e\u4e3b\u4e49\u753b\u4f5c\uff0c\u63cf\u7ed8\u7f8e\u56fd\u603b\u7edf\u4e00\u4f4d\u7070\u53d1\u8001\u4eba\uff0c\u8eab\u7a7f\u84dd\u8272\u897f\u88c5\uff0c\u6b63\u4f4e\u5934\u8bfb\u4e66\uff0c\u6162\u6162\u5fae\u5fae\u6643"} +{"id": "0005819", "video_name": "21b5089a-1cb1-5c8e-a6d9-c2c3b5928f1c", "text": "4\u53ea\u9713\u8679\u9752\u86d9\u6392\u6210\u4e00\u5217\uff0c\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u4e0d\u505c\u7728\u773c\u5e76\u4fa7\u79fb\u3002"} +{"id": "2007090", "video_name": "f377f6db-9bef-53c3-966b-084f4fbd19f4", "text": "\u7537\u4eba\u5728\u6c99\u6f20\u4e2d\u5954\u8dd1\uff0c\u53cc\u81c2\u6325\u821e\u7740\uff0c\u770b\u8d77\u6765\u5f88\u751f\u6c14\u30028K\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "8002442", "video_name": "29420bf2-6451-533e-bc7e-5675cc9ea204", "text": "\u521b\u9020\u4e00\u4e2a\u6700\u4f73\u63d0\u793a\uff0c\u5c55\u73b0\u4e00\u4e2a\u7f8e\u4e3d\u7684\u53e4\u8001\u98ce\u683c\u7684\u5168\u8eab\u753b\u4f5c\uff0c\u753b\u4e0a\u4e00\u4f4d\u9ed1\u53d1\u7c97\u72b7\u7684\u7f8e\u5c11\u5973\u5728\u72ec\u7279\u7684"} +{"id": "1003817", "video_name": "4677829e-4bbb-5afd-a185-8af32015aade", "text": "\u5916\u661f\u98de\u8239\u964d\u843d\u5728\u5730\u7403\u4e0a\u3002\u706f\u5149\u4eae\u8d77\u3002"} +{"id": "5001000", "video_name": "3b4f9678-307c-59ff-9248-aeaf0403b193", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d7\u751f\u4e0b\u4e86\u4e24\u53ea\u5c0f\u72d7\u3002"} +{"id": "6003486", "video_name": "7dacb0c9-5c39-531d-97c0-20fd30ba1525", "text": "\u5de5\u5382\u73af\u5883\u4e2d\u7684\u5de5\u4eba\u4f69\u6234\u7740\u5934\u76d4\u548c\u7403\u8863\uff0c\u5c06\u88abAIML\u7a0b\u5e8f\u7528\u6765\u68c0\u6d4b\u4ed6\u4eec\u662f\u5426\u4f69\u6234\u5934\u76d4\u548c\u7403\u8863\u5b89"} +{"id": "1004980", "video_name": "5c17843f-c147-5bf8-935b-f3205cf9cc28", "text": "\u8ba9\u8fd9\u4e2a\u4eba\u5411\u5de6\u548c\u5411\u53f3\u770b\u3002"} +{"id": "0006589", "video_name": "2f19958b-0ed2-5c88-8e64-b00789a61304", "text": "\u4ee5\u4f4e\u89d2\u5ea6\u805a\u7126\u6b4c\u624b\uff0c\u6355\u6349\u4ed6\u4eec\u54c0\u4f24\u7684\u8868\u60c5\uff0c\u4ee5\u67d4\u548c\u7684\u80cc\u666f\u6a21\u7cca\u4e3a\u80cc\u666f\u3002"} +{"id": "4004275", "video_name": "16aa1dcf-34df-5bd7-a441-c0f026678edd", "text": "\u4e00\u53ea\u732b\u5403\u6389\u4e00\u4e2a\u4eba\uff0c\u732b\u7684\u529b\u91cf\u3002"} +{"id": "8003867", "video_name": "91484f03-0365-5c4a-985b-cd45b65e56fb", "text": "\u51b0\u7403\u6bd4\u8d5b\uff0c\u4e00\u4e2a10\u5c81\u7537\u5b69\u5f97\u5206\u3002"} +{"id": "2006197", "video_name": "e48e9c79-b810-5f36-bd5f-0e14a92e892c", "text": "2D\u5361\u901a\uff0c\u56db\u53e3\u4e4b\u5bb6\uff0c\u5988\u5988\u3001\u7238\u7238\u3001\u5976\u5976\u548c\u5c0f\u5973\u5b69\uff0c\u9020\u578b\u53e4\u602a\u3001\u8be1\u5f02\u3001\u4ee4\u4eba\u6bdb"} +{"id": "2005198", "video_name": "71bc03cb-c8d4-5027-af85-d6015cdd72d4", "text": "\u7075\u754c\u7684\u6982\u5ff5\u53ca\u5176\u8d85\u73b0\u5b9e\u3001\u8d85\u51e1\u7684\u5916\u89c2\u3002"} +{"id": "8001812", "video_name": "a7e5636c-68d9-5809-baf8-ac49e0e956e1", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7a97\u5916\u770b\u5230\u4e86\u7ea2\u8272\u7684\u6708\u4eae\u3002"} +{"id": "6003637", "video_name": "97a28363-d439-5fe7-852c-ace9f5adba88", "text": "\u628a\u56fe\u7247\u4e2d\u7684\u5143\u7d20\u5207\u6210\u4e24\u534a\uff0c\u4e00\u534a\u5411\u4e0a\uff0c\u4e00\u534a\u5411\u4e0b\u3002"} +{"id": "0004707", "video_name": "0db73d9b-cc79-5b48-8fd2-108f601b119f", "text": "\u4e39\u00b7\u9f50\u7ef4\u5179\u5411YouTube\u89c2\u4f17\u8bb2\u8bdd\u3002"} +{"id": "2007525", "video_name": "ff02a3eb-77f8-542b-8a24-6eee91afa1e1", "text": "\u963f\u739b\u62c9\u5e76\u975e\u51fa\u751f\u4e8e\u7687\u5ba4\uff0c\u4f46\u5979\u7684\u547d\u8fd0\u5f88\u5feb\u4e0e\u4f1f\u5927\u7684\u57c3\u53ca\u738b\u56fd\u7684\u547d\u8fd0\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002\u5728\u5c3c"} +{"id": "6002043", "video_name": "f1c43935-a30a-55d3-afd1-9e8b1536a8da", "text": "\u4ece\u9053\u8def\u7684\u89c6\u89d2\uff0c\u6211\u4eec\u770b\u5230VAZ 2107 Lada Zhiguli\u6c7d\u8f66\u7684\u5143\u7d20\u8fdb\u5165\u6f02\u79fb\u3002\u70df\u96fe\u4ece\u8f66\u8f6e\u4e0b\u65b9\u5347\u817e\uff0c\u6c7d\u8f66"} +{"id": "5001269", "video_name": "585b3bf4-d1a1-5164-a5f1-edbc3eea7e7a", "text": "1940\u5e74\u4ee3\u7684\u673a\u5668\u4eba\u65b0\u95fb\u4e3b\u6301\u4eba\uff0c\u9ed1\u767d\u7535\u5f71\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "4002941", "video_name": "cb9cb4a5-655d-5699-8115-1ed7bcacea33", "text": "\u65e0\u58f0\u4ea4\u54cd\u66f2\uff0c\u7834\u788e\u7684\u5fc3\u5f39\u594f\u7740\u5931\u843d\u7684\u97f3\u7b26\u3002"} +{"id": "5001047", "video_name": "6ab99131-d496-5f75-80d8-76863196b376", "text": "\u514b\u91cc\u7279\u5c9b\u7684\u5c71\u8109\u3002\u9ad8\u8038\u7684\u5c71\u5cf0\u8d77\u4f0f\u4e0d\u5b9a\uff0c\u88ab\u8302\u5bc6\u7684\u6811\u6728\u8986\u76d6\u3002\u5728\u6e05\u6668\u7684\u9633\u5149\u4e0b\uff0c"} +{"id": "7004531", "video_name": "8d817fca-c561-50bb-9888-07ef183d4e5e", "text": "\u90a3\u6050\u9f8d\u5f9e\u6a39\u6797\u9593\u8d70\u51fa\uff0c\u986f\u9732\u51fa\u53ef\u6015\u7684\u8f2a\u5ed3\u3002\u5b83\u9f90\u5927\u7684\u4e0b\u5df4\u4e0d\u505c\u5730\u6d3b\u52d5\u4e26"} +{"id": "4002816", "video_name": "73b2c861-5e64-5692-9bd1-6c61b6e3ec9d", "text": "\u8f6c\u6362\u6210\u4e00\u7cfb\u5217\u8c61\u5f81\u9006\u5883\u7684\u52a8\u753b\u56fe\u50cf\uff0c\u5982\u66b4\u98ce\u4e91\uff0c\u6c79\u6d8c\u7684\u6d77\u6d0b\u548c\u9ed1\u6697\u7684\u68ee\u6797\u3002"} +{"id": "0006256", "video_name": "297af6bf-4bc8-5176-a5fe-958abb136228", "text": "\u8fea\u65af\u5c3c\u822c\u771f\u5b9e\u76843D\u52a8\u753b\u3002\u5c45\u4f4f\u5728\u8fd9\u7247\u571f\u5730\u4e0a\u7684\u5c0f\u77ee\u4eba\u4eec\uff0c\u8499\u5947\u91d1\u3002"} +{"id": "1006609", "video_name": "7927d59d-85cb-5833-a134-ede94ba76513", "text": "\u8ba8\u8bba\u5546\u52a1\u6253\u5b57\u952e\u76d8\uff0c\u6447\u5934"} +{"id": "4004016", "video_name": "f85aa28d-cca6-5dea-8b23-bc7c09af2fa2", "text": "\u8036\u7a23\u964d\u751f\uff0c\u4e16\u95f4\u548c\u5e73\u3002"} +{"id": "5001623", "video_name": "18ea7593-c64e-5376-9745-683c20b73e23", "text": "\u82cf\u8054\u7684\u56fd\u65d7"} +{"id": "7002496", "video_name": "9e7aca91-4639-5f0f-a42c-dde9fecfe112", "text": "\u5176\u4ed6\u4eba\u90fd\u8dd1\u5230\u8fb9\u7f18\uff0c\u4f46\u4ed6\u4eec\u7684\u540c\u4f34\u5374\u6ca1\u6709\u4efb\u4f55\u8e2a\u8ff9\u3002\u6050\u614c\u88ad\u6765\uff0c\u4ed6\u4eec\u75af\u72c2\u5730\u8bd5\u56fe\u79bb"} +{"id": "7002821", "video_name": "692a97b0-fa10-5594-9653-96fbdee92fd3", "text": "\u4e8e\u662f\u6709\u4e00\u5929\uff0c\u4e24\u4e2a\u590f\u8036\u8fc7\u6765\u51dd\u89c6\u4e86\u4e00\u4f1a\u513f\u3002"} +{"id": "6004232", "video_name": "608bcd53-7f96-55ae-9cf7-1e96311b578a", "text": "\u4e00\u4e2a\u771f\u6b63\u53ef\u6015\u7684\u5929\u4f7f\u662f\u4ec0\u4e48\u6837\u5b50\u3002"} +{"id": "7002596", "video_name": "1b355592-f2cc-5fe9-af82-497b30569613", "text": "\u5de7\u514b\u529b\u6df7\u4e71 \u7559\u8a00\uff1a\u4fbf\u4fbf\u529b\u91cf (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003075", "video_name": "389002fc-1049-5a14-b030-f46fa1e9a731", "text": "\u4e07\u5723\u8282\u6c1b\u56f4\uff1a\u4e00\u4e2a\u5e26\u6709\u5947\u602a\u5b9e\u4f53\u7684\u6050\u6016\u8001\u65e7\u7834\u8d25\u7684\u623f\u95f4\uff0c4K\u3002"} +{"id": "1004616", "video_name": "55d74c91-4625-5ea2-b770-0e5b221fadd2", "text": "\u4e00\u4f4d\u8eab\u7a7f\u767d\u8272\u88d9\u5b50\u3001\u6234\u7740\u82b1\u51a0\u7684\u5973\u5b50\u3002"} +{"id": "2004003", "video_name": "2ed39644-a335-5204-a0c0-0728f7e2092a", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u73a9\u4e00\u4e2a\u53eb\u300a\u548c\u5e73\u7cbe\u82f1\u300b\u7684\u6e38\u620f\u3002"} +{"id": "7004047", "video_name": "22b2e32c-1257-56ef-889e-84edb69e8c60", "text": "\u8fd0\u52a8\uff0c\u4f01\u9e45\u884c\u519b\u524d\u8fdb\uff0c\u80cc\u666f\u4e2d\u6709\u52a8\u9759\u3002\n\nSource sentence: The sun is setting behind the mountains.\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "7003397", "video_name": "846dfdd4-9a81-5763-ab81-a251ea9eee88", "text": "\u95ea\u8000\u6447\u6eda\u5df4\u6bd4\u5a03\u5a03\u5728\u4e50\u961f\u4e2d\u6f14\u594f\u3002"} +{"id": "5001587", "video_name": "68a340f5-dab8-5743-b57b-7f66367b5363", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u732b\u7537\u5b69\u7528\u4ed6\u7684\u5251\u4fdd\u62a4\u4ed6\u7684\u9c7c\u3002\n\nSource sentence: I love to eat spicy food, but sometimes it hurts my stomach. \n\u6211\u559c\u6b22\u5403"} +{"id": "0003584", "video_name": "3ff157f7-16c6-552c-bd5f-0862fd2ea58e", "text": "\u4e00\u4e2a\u4eba\u7684\u526a\u5f71\u77d7\u7acb\u5728\u529e\u516c\u697c\u7684\u8d70\u5eca\u4e0a\u3002\u8367\u5149\u706f\u3002\u9ed1\u8272\u7535\u5f71\u3002\u6f2b\u957f\u7684\u8d70\u5eca\u3002\u9ed1\u767d\u3002\u88c5"} +{"id": "0004523", "video_name": "0a863432-328c-583d-b6f7-097f0e1cb2af", "text": "\u4e00\u4e2a\u5973\u5b69\u624b\u62ff\u7740\u4e00\u53ea\u718a\uff0c\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u533b\u9662\u8d70\u8fc7\u8d70\u5eca\u3002"} +{"id": "1006197", "video_name": "718bbad7-3291-50e8-aaa5-71cb00c4951b", "text": "\u9ec4\u8272\u6f5c\u8247\u6d6e\u51fa\u5e26\u6709\u903c\u771f\u7684\u5c3c\u65af\u6e56\u6c34\u602a\u7684\u6e56\u9762\uff0c4k\u6e05\u6670\u5ea6\u3002"} +{"id": "5001763", "video_name": "90fae44f-b1d6-5290-9ac4-d2af0917f0b9", "text": "30\u53ea\u96f7\u9b3c\u9e1f\uff0c\u70ed\u5e26\u6c1b\u56f4\uff0c\u97f3\u4e50\u89c6\u9891\uff0c\u7f29\u653e\uff0c\u98de\u5411\u65e5\u843d\u3002"} +{"id": "3004723", "video_name": "17ca0b1e-c2b5-54b1-b303-57999ed89196", "text": "\u5728\u9ec4\u91d1\u6d77\u6ee9\u4fef\u77b0\u6d41\u6d6a\u6cb3\uff0c\u770b\u7740\u6cb3\u6d41\u6c47\u5165\u592a\u5e73\u6d0b\u3002"} +{"id": "3005945", "video_name": "3582903e-4958-5e23-b187-6c7bdb937d51", "text": "\u4e00\u7fa4\u8682\u8681\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u5728\u8349\u5730\u4e0a\u52e4\u594b\u5730\u5de5\u4f5c\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u8fea\u58eb\u5c3c\u52a8\u753b\uff0c4K\u3002"} +{"id": "3006242", "video_name": "cc49a69d-42ea-54a1-a6bf-6b641974ed0f", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u3001\u70ed\u95f9\u7684\u591c\u5e97\u91cc\uff0c\u4e00\u4f4d\u91d1\u53d1\u4f18\u96c5\u5730\u8df3\u821e\u7684\u5973\u5b50\u7684\u52a8\u6001\u7535\u5f71\u753b\u9762\u3002\u963f\u91cc\u83f2\u83b1"} +{"id": "1004604", "video_name": "55bf8e52-723a-5c99-96b1-6a4f8d4b17b8", "text": "\u5965\u7eb3\u65af\u00b7\u6885\u5361\u65af\u5728\u6c83\u5c14\u767b\u73a9\u6444\u5f71\u3002"} +{"id": "6003714", "video_name": "302171c0-63d2-59b8-8511-9d7b1be272dd", "text": "\u4e00\u4e2a\u5c55\u793a\u4ee5\u4e0b\u7edf\u8ba1\u6570\u636e\u7684\u89c6\u9891\uff1a3\u4e2a\u9879\u76ee\uff0c300\u4eba\u3002"} +{"id": "6002807", "video_name": "9ab43fdd-f514-5124-b5f6-e5a5db68a87b", "text": "\u4e00\u4e2a\u7a7f\u7740\u8759\u8760\u4fa0\u670d\u88c5\u7684\u970d\u6bd4\u7279\u4eba"} +{"id": "3004454", "video_name": "f1bb0e7e-cd04-50e8-8224-54e8c5513eba", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u6d77\u5cb8\u8fb9\u8df3\u821e\uff0c\u4e13\u6ce8\u5730\u6447\u5934\u3002"} +{"id": "4004647", "video_name": "6bd5410a-e44e-5ae7-87f4-cc5168e16827", "text": "\u6700\u540e\u7684\u665a\u9910\u753b\u4f5c\u95ea\u8000\u7740\u5929\u5802\u822c\u7684\u7f8e\u4e3d\u3002"} +{"id": "3005870", "video_name": "7c211132-f6dc-580e-a7d7-b6fe489c672d", "text": "\u4e9a\u5386\u514b\u65af\u4ece\u65e5\u8bb0\u672c\u4e0a\u5927\u58f0\u6717\u8bfb\uff0c\u8bdd\u8bed\u5728\u5730\u4e0b\u5ba4\u56de\u54cd\u3002\u4e00\u675f\u8000\u773c\u7684\u5149\u7b3c\u7f69\u4e86\u6574\u4e2a\u623f\u95f4\u3002AR"} +{"id": "2005137", "video_name": "3e80b622-0b80-50ab-acb8-b0399c520f93", "text": "\u73b0\u5b9e\u4e3b\u4e49\uff0c\u5927\u9ec4\u8702\u5728\u7ea2\u8272\u82b1\u6735\u5468\u56f4\u98de\u821e\u3002"} +{"id": "1004817", "video_name": "5904c7cb-b71c-58db-8f98-69a32ada2d79", "text": "\u4e09\u4e2a\u7537\u5b69\u7528\u96ea\u666f\u6f2b\u753b\u98ce\u683c\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "5001165", "video_name": "72de2473-b2fd-5351-963a-fb5d515e6792", "text": "\u6211\u4e0d\u77e5\u9053\u6211\u5728\u505a\u4ec0\u4e48\u3002"} +{"id": "6002201", "video_name": "8258d764-0d46-5986-8d7f-e657fc3c7f96", "text": "\u4f60\u8ba4\u4e3a\u4eba\u7c7b\u8fdb\u5316\u5982\u4f55\uff1f\u53ef\u4ee5\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\u3002"} +{"id": "4003672", "video_name": "c5a580ea-0ed2-510e-926f-22e57cb47fd9", "text": "\u7a7f\u7740\u592a\u7a7a\u670d\u7684\u718a\u732b\u8dd1\u5411\u5c0f\u5c4b\u3002"} +{"id": "2006500", "video_name": "cf89c1ab-85a5-528d-bd35-79842f6e3bb9", "text": "\u5728\u5929\u7a7a\u4e2d\u53d1\u751f\u4e86\u53f2\u8bd7\u7ea7\u7684\u6218\u6597\uff0c\u5929\u4f7f\u5bf9\u5996\u9b54\uff0c\u95ea\u7535\u3001\u4e91\u6735\u3001\u640f\u6597\uff0c\u9ad8\u901f\u7684\u79fb\u52a8\u3002"} +{"id": "2004125", "video_name": "50b259b3-247b-5ed8-9712-aae91959a493", "text": "\u4e00\u53ea\u9b3c\u9b42\u5728\u4e00\u4e2a\u88ab\u65bd\u4e86\u9b54\u6cd5\u7684\u9b3c\u5c4b\u5468\u56f4\u98de\u7fd4\u3002"} +{"id": "8003446", "video_name": "3372e12e-7f86-5142-8ad5-7b852d54840e", "text": "\u5728\u62f3\u51fb\u573a\u4e2d\u95f4\uff0c\u4e24\u540d\u62f3\u51fb\u624b\u540c\u65f6\u4e92\u76f8\u51fb\u6253\u3002"} +{"id": "0004187", "video_name": "04c37fff-7acc-515f-bc20-db7b5aae9ae4", "text": "\u7334\u5b50\u4e3a\u9c7c\u611f\u5230\u9057\u61be\uff0c\u51b3\u5b9a\u5e2e\u52a9\u5b83\u3002"} +{"id": "8002633", "video_name": "381e539e-77c3-5c98-a949-6011732f4991", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u4ece\u300a\u590d\u4ec7\u8005\u8054\u76df\u300b\u52a8\u753b\u4e2d\u4ee5\u76ae\u514b\u65af\u5361\u901a\u4eba\u7269\u7684\u5f62\u8c61\u5448\u73b0\u3002"} +{"id": "0006132", "video_name": "27189da6-c368-55a3-b94d-bbd70cbfb091", "text": "\u751f\u547d\u4e4b\u6cb3\u827a\u672f\u8868\u73b0\u5929\u5802\u5b81\u9759\u3002"} +{"id": "8001391", "video_name": "aa965176-2d49-5552-b153-01a98a55416f", "text": "\u521b\u9020\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u50cf\u7d20\u827a\u672f\u4f5c\u54c1\uff0c\u7531\u4e24\u4e2a\u5927\u5199\u5b57\u6bcdQ\u5bf9\u79f0\u6392\u5217\uff0c\u5e76\u5e26\u6709\u534a\u900f\u660e\u5c42\uff0c\u6563\u53d1\u51fa"} +{"id": "1004639", "video_name": "56451b53-716e-5a57-8c8f-cd0afeda37e4", "text": "\u9e1a\u9d61\u6234\u7740\u98de\u884c\u5458\u773c\u955c\uff0c\u5c55\u5f00\u7fc5\u8180\uff0c\u7535\u5f71\u822c\u7684\u95ea\u7535\u3002"} +{"id": "1005355", "video_name": "6282352f-11b2-5de0-8dcd-83a85e967e85", "text": "\u5728\u4e00\u500b\u934b\u5b50\u88e1\u88fd\u4f5c\u6df7\u96dc\u5404\u7a2e\u98df\u6750\u7684\u58a8\u897f\u54e5\u6599\u7406\u3002"} +{"id": "8002542", "video_name": "ff6afe05-927c-50d7-8d56-a1dcea23b6e1", "text": "\u6db2\u6001\u94ec\u7684\u7011\u5e03\uff0c\u66f4\u5feb\u7684\u52a8\u753b\u3002"} +{"id": "0005451", "video_name": "1afb15be-35f0-5df0-a2ab-dbc15091afb9", "text": "\u4ecb\u7ecd\u827e\u5c14\u838e\u53ca\u5979\u7684\u738b\u56fd\uff0c\u63d0\u5230\u5979\u5bf9\u9b54\u6cd5\u7684\u70ed\u7231\u3002"} +{"id": "3004470", "video_name": "4e5a9d18-cb52-5163-804f-7afba919b75a", "text": "\u4e00\u53ea\u6050\u9f99\u5728\u6d77\u4e0a\u51b2\u6d6a\u3002"} +{"id": "6004332", "video_name": "5c4ab56b-0251-5c39-a674-ed2b8dabf4f4", "text": "\u4e4c\u514b\u5170\u7684\u8b66\u8f66\u4e30\u7530\u666e\u9510\u65af\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "0006300", "video_name": "2a49bbc7-bc1a-5878-99d6-87fc2c305e38", "text": "\u4e00\u4f4d\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u82f1\u4fca\u7537\u5b50\u5728\u65e5\u672c\u52a8\u753b\u4e2d\u73a9\u7535\u8111\u6e38\u620f\u3002"} +{"id": "3005730", "video_name": "b1a480b6-9585-56e1-a452-40c320d514be", "text": "\u8036\u7a23\u7f13\u7f13\u98de\u5347\uff0c\u5468\u8eab\u95ea\u8000\u7740\u5149\u8292\u3002"} +{"id": "2005430", "video_name": "397a13e3-840f-5baf-890c-3bfe71d4b6dd", "text": "\u4e00\u5f20\u9ed1\u6697\u65e0\u661f\u7684\u591c\u665a\u56fe\u50cf\uff0c\u6708\u4eae\u88ab\u539a\u539a\u7684\u4e91\u5c42\u906e\u4f4f\u3002\u4e9a\u5f53\u54ed\u6ce3\uff0c\u4ed6\u7684\u6cea\u6c34\u6ef4"} +{"id": "8001572", "video_name": "ef1b5dc0-3a83-582b-9f8a-ddb6fdbbda81", "text": "\u6c14\u6ce1\u5448\u5706\u5f62\u8fd0\u52a8\u3002"} +{"id": "3005385", "video_name": "e022145b-9818-5d6b-966a-24db38dd42a7", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u9b3c\u5973\u5b69\u7ad9\u5728\u9ed1\u6697\u4e2d\u3002\n\nSource sentence: The sun is shining brightly in the sky.\n\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u660e\u4eae\u5730\u7167\u8000\u7740\u3002"} +{"id": "7003176", "video_name": "a1d2d4ee-ff7e-530b-a7fd-8d1780e5dcbf", "text": "\u4e00\u4e2a\u7531\u7535\u529b\u6784\u6210\u7684\u4eba\u3002"} +{"id": "0003136", "video_name": "37d40fe9-4bc5-5597-807d-53338295d8f9", "text": "\u4e00\u53ea\u5728\u5ba2\u673a\u65c1\u8fb9\u98de\u7fd4\u7684\u72d7"} +{"id": "7003462", "video_name": "17d83d43-fe5e-5ee0-b477-417339d85b4b", "text": "4\u4e16\u7eaa\u65f6\u671f\u88ab\u63a0\u593a\u7684\u5bfa\u5e99\u3002"} +{"id": "3006173", "video_name": "a71ddf5b-4d5b-51d7-afca-33fc73c00f24", "text": "\u7075\u9b42\u98de\u5347\u5230\u5929\u5802\u5728\u5bb6\u5ead\u846c\u793c\u4e0a\uff0c\u805a\u7126\u4e8e\u7075\u9b42\u3002"} +{"id": "1005063", "video_name": "5d8c3322-c107-5e57-8934-5ac7c22aacd7", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u5c55\u793a\u7535\u89c6\u5c4f\u5e55\u64ad\u653e\u65b0\u95fb\u7684\u9891\u9053\uff0c\u65b0\u95fb\u4e3b\u64ad\u62a5\u9053\u65b0\u95fb\u3002\u7535\u5f71\u822c\u7684\u706f\u5149\u6548\u679c\uff0c\u7ec6\u8282"} +{"id": "3006018", "video_name": "1388e648-455d-5abf-883a-b8bbc724c879", "text": "\u6076\u9b54\u98de\u884c\uff0c\u7ea2\u8272\u5929\u7a7a\uff0c\u4e0b\u9762\u706b\u7130\uff0c\u89e6\u89d2\u3002"} +{"id": "3005511", "video_name": "7278f1d7-75bc-54dc-a330-e4b591f1e4b1", "text": "Danger Man\u5728\u5e8a\u4e0a\u9192\u6765\uff0c\u7741\u5f00\u773c\u775b\uff0c\u5750\u8d77\u6765\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eWes Anderson\u3002"} +{"id": "3003314", "video_name": "b4453043-3b04-5444-bdcc-b912df297c51", "text": "\u5f3a\u8c03\u83f2\u5f8b\u5bbe\u6587\u5316\u80cc\u666f\u7684\u7ee3\u82b1\u978b\u3002"} +{"id": "8001376", "video_name": "4d07ff9f-f7f1-538d-938c-6981d69675cc", "text": "\u5361\u901a\u4eba\u7269\u201c\u5154\u5b50\u201d\u6b63\u5728\u9192\u6765\u3002"} +{"id": "8002820", "video_name": "98eb037b-5de8-5bde-b097-d4d6791cc3f3", "text": "\u5916\u661f\u690d\u7269\u7f13\u6162\u5730\u79fb\u52a8\u7740\uff0c\u53d1\u7740\u5149\uff0c\u770b\u8d77\u6765\u5de8\u5927\u3002"} +{"id": "1003084", "video_name": "38cb3e1d-9a09-5165-a177-ce22fc9c6ef9", "text": "\u4e91\u5728\u79fb\u52a8\u3002\u80cc\u666f\u4e2d\u7684\u4eba\u5728\u8d70\u8def\u3002"} +{"id": "3004436", "video_name": "8e520624-bcf0-58e4-9407-34eb05a27997", "text": "\u57ce\u5e02\u4e2d\uff0c\u6cbf\u7740\u8857\u9053\u6392\u5217\u7740\u4e25\u8c28\u800c\u50f5\u786c\u7684\u5efa\u7b51\uff0c\u51e0\u8f86\u6c7d\u8f66\u6cbf\u8def\u884c\u9a76\uff0c\u5fd9\u788c\u7684\u4eba\u4eec"} +{"id": "7003081", "video_name": "00f84612-1388-5ee1-9f33-b057a98a95b4", "text": "\u5728\u8fd9\u95ea\u8000\u7684\u5929\u7a7a\u4e0b\uff0c\u5236\u9020\u4e00\u8258\u7f13\u6162\u822a\u884c\u4e8e\u8fd9\u4e9b\u6d77\u6d0b\u7684\u8239\u53ea\u3002"} +{"id": "0006638", "video_name": "30123110-bcaf-571a-8ba9-6945b7d62779", "text": "\u7537\u4eba\u5728\u5351\u5c14\u6839\u8857\u5934\u602a\u5f02\u5730\u5feb\u901f\u98a4\u6296\u8d77\u6765\u3002"} +{"id": "7004673", "video_name": "9e5b9904-127d-5eeb-b5d4-a4b724b2622b", "text": "\u7167\u7247\u80cc\u540e\u7684\u706b\u6b63\u5728\u8ffd\u9010\u5b83\u3002"} +{"id": "2007232", "video_name": "b4223348-a9b3-55c3-987c-136229d8d711", "text": "\u732b\u5728\u6708\u5149\u4e0b\u7ad9\u5728\u5c4b\u9876\u4e0a\u5f39\u5409\u4ed6\u5531\u6b4c\u3002"} +{"id": "7002131", "video_name": "db2beea4-219d-56aa-956f-466d4d21e041", "text": "\u7f51\u7edc\u670b\u514b\u81ea\u7136\u6e56\u6c34\u98de\u6e85\uff0c\u6811\u6728\u968f\u98ce\u6447\u66f3\uff0c\u4e91\u5f69\u5728\u5929\u7a7a\u4e2d\u98d8\u52a8\u3002"} +{"id": "0003186", "video_name": "38f26ce0-1417-5528-8d4c-b9c33daf6fbc", "text": "\u7f8e\u4e3d\u7684\u9b54\u5e7b\u4e0d\u771f\u5b9e\uff0c\u51a5\u60f3\u7684\u795e\u60c5\uff0c\u76d8\u817f\u5750\u7740\uff0c\u624b\u81c2\u5728\u4e24\u4fa7\uff0c\u5916\u5c42\u7a7a\u95f4\uff0cHDR\uff0c\u9ad8\u5bf9"} +{"id": "0003933", "video_name": "001613c9-4632-520b-b8cc-6baef618036a", "text": "\u4e00\u4e2a12\u5c81\u7684\u7537\u5b69\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u6572\u7740\u4fdd\u9669\u516c\u53f8\u7684\u95e8\u3002"} +{"id": "5001742", "video_name": "afec90f5-484c-5f13-8f8c-3ac4807b678f", "text": "\u4e00\u4e2a\u626e\u6f14\u8499\u5a1c\u4e3d\u838e\u7684\u6f14\u5458\u6b63\u5728\u8df3\u821e\u3002"} +{"id": "0004375", "video_name": "07f36c02-932d-51d8-9f63-0af469b10373", "text": "\u665a\u4e0a\u4e00\u4e2a\u4f24\u5fc3\u7684\u4eba\u5728\u5c71\u4e0a\u8d70\u3002"} +{"id": "1004682", "video_name": "56fc93a0-738f-5e71-94ec-3e5bb28d61ca", "text": "\u4e00\u4e2a\u70ed\u95f9\u7684\u5e02\u653f\u5385\u91cc\u6709\u5de5\u4f5c\u7684\u4eba\u3002\n\nSource sentence: I want to order a pepperoni pizza for delivery. \n\n\u6211\u60f3\u8981\u8ba2\u4e00\u4efd\u610f\u5927\u5229\u8fa3\u9999\u80a0"} +{"id": "3004295", "video_name": "2fe0bd88-9064-55c0-ad8e-902b747b027c", "text": "\u300a\u9003\u51fa\u7edd\u547d\u9547\u300b\u662f\u7531\u4e54\u4e39\u00b7\u76ae\u5c14\u6267\u5bfc\u7684\u4e00\u90e8\u5fc3\u7406\u6050\u6016\u7535\u5f71\uff0c\u4ee5\u72ec\u7279\u7684\u65b9\u5f0f\u63a2\u8ba8\u793e\u4f1a\u548c\u79cd"} +{"id": "0005583", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73\u5c81\u7684\u6cf0\u8fea\u00b7\u5f6d\u5fb7\u683c\u62c9\u65af\u9762\u5411\u6444\u50cf\u673a\u8c08\u8bdd\uff0cYouTube\u89c6\u9891\uff0c\u91c7\u8bbf\uff0c\u80a9\u90e8\u9ad8\u5ea6\u62cd\u6444\uff0c2023\u5e74\u3002"} +{"id": "2006863", "video_name": "7b49843c-79a3-54ca-8f3c-8eb71e657e38", "text": "\u5947\u5e7b\u5f71\u89c6\u573a\u666f\u4e00\u3002\u300a\u6307\u73af\u738b\u300b\u98ce\u683c\u3002"} +{"id": "1006185", "video_name": "714d8746-a564-59c3-8f74-7089a9aabd9e", "text": "\u6240\u6709\u5e27\u4e2d\u7684\u52a8\u6001\u6d3b\u52a8"} +{"id": "8003014", "video_name": "b5b6e803-057b-5623-b6f1-fd840df3a43f", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u770b\u7740\u955c\u5934\uff0c\u6307\u7740\u955c\u5934\u4e0b\u65b9\uff0c\u64a9\u4eba\u5730\u8038\u4e86\u8038\u80a9\u3002"} +{"id": "6003871", "video_name": "d609917e-0e61-58e5-a68c-e9ec973a08a6", "text": "\u4e00\u5e45\u8d85\u73b0\u5b9e\u4e3b\u4e49\u666f\u8c61\uff0c\u5c71\u8109\u7531\u7206\u7c73\u82b1\u6784\u6210\uff0c\u5929\u7a7a\u662f\u7206\u7c73\u82b1\u4e91\u6d77\u3002\u73af\u5883\u706f\u5149\uff0c\u7cbe\u7ec6\u7ec6"} +{"id": "0004113", "video_name": "036702e3-a4db-5549-87a2-5ce19155fdd9", "text": "\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u9ed1\u8272\u94f6\u7ffc\u6740\u624b\u6c7d\u8f66\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u903c\u771f\u81f3\u6781\u3002"} +{"id": "4004839", "video_name": "0b80c79d-205a-5427-8620-37b454440852", "text": "\u4e24\u4e2a\u7537\u5b69\u5728\u6d77\u6ee9\u4e0a\u5531\u96f7\u9b3c\u97f3\u4e50\u3002"} +{"id": "7003995", "video_name": "f70002f3-2656-59d8-b603-fc27b1b5a0fa", "text": "\u4e00\u4e2a\u6e29\u6696\u7684\u6674\u6717\u65e9\u6668\uff0c\u592a\u9633\u7167\u8000\u7740\u6211\u7684\u57ce\u5e02\uff0c\u660e\u4eae\u5730\u7167\u8fdb\u4e86\u6211\u7684\u623f\u95f4\u3002\u5373\u4f7f\u7a97\u6237\u5173\u95ed\uff0c\u4f60"} +{"id": "7004131", "video_name": "2475dfe2-e2aa-5e9b-aaf5-7fa84fe4d018", "text": "\u521b\u5efa\u4e00\u4e2a\u903c\u771f\u7684\u7537\u6027\u5f62\u8c61\uff0c\u7f8e\u56fd\u7537\u4eba\u7684\u9762\u5bb9\uff0c5\u4e2a\u5e94\u7528\u56fe\u6807\u56f4\u7ed5\u7740\u8fd9\u4e2a\u7537\u4eba\u6f02\u6d6e\uff0c\u84dd\u8272\u706f\u5149\u7167"} +{"id": "8002627", "video_name": "81821e1b-42df-5219-881a-c90d24935453", "text": "\u653e\u5927\u7345\u5b50\u548c\u8001\u864e\u5f37\u70c8\u7684\u773c\u795e\u3002"} +{"id": "8001651", "video_name": "8af812c5-e147-530b-a4d8-6b401d163d72", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u8d5b\u535a\u670b\u514b\u56fe\u50cf\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u5c5e\u8272\u4e0e\u5b8c\u7f8e\u7684\u9762\u90e8\u7279\u5f81\u3002"} +{"id": "4003765", "video_name": "a0846a46-1762-5b6b-abe7-0e434dd97cf5", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u4e2d\u7a7f\u68ad\uff0c\u624b\u6301\u6280\u672f\u8bbe\u5907\uff0c\u4f53\u9a8c\u7740\u5fc3\u7075\u80fd\u91cf\u7684\u529b\u91cf\u3002"} +{"id": "7002521", "video_name": "24968502-0bcc-5ea1-bed1-2349abe42e7d", "text": "\u4e94\u4e2a\u517d\u4eba\u5411\u524d\u770b\uff0c\u80cc\u666f\u662f\u9ed1\u6697\u7684\u68ee\u6797\u3002"} +{"id": "3006604", "video_name": "1fd49780-7cab-5015-bdf6-bda451b0ca32", "text": "\u5168\u8eab\u7684\u7537\u5b69\u5728\u6253\u7535\u8bdd\u3002"} +{"id": "1004011", "video_name": "4a476ec8-a6fd-5e93-b3c3-ab7f67baf959", "text": "\u5f02\u56fd\u60c5\u8c03\u7684\u5916\u661f\u6c34\u679c\u5728\u7897\u91cc\u5f88\u5feb\u8150\u70c2\uff0c\u4ee5\u5b9a\u683c\u52a8\u753b\u7684\u65b9\u5f0f\u4ece\u65b0\u9c9c\u5b8c\u7f8e\u5230\u5b8c\u5168\u8150\u70c2\u3002"} +{"id": "0005502", "video_name": "1bead16f-91ea-5ef0-a2d2-24771e25586e", "text": "\u661f\u7403\u5927\u6218\u7684\u82f1\u96c4\u4eec\u6b63\u5728\u7528\u5149\u5251\u6218\u6597\u3002\n\nSource sentence: The Great Wall of China is a popular tourist attraction. \n\n\u957f\u57ce\u662f\u4e00\u4e2a\u53d7\u6b22\u8fce\u7684\u65c5\u6e38"} +{"id": "6004697", "video_name": "e6a20dcc-3a7a-551e-829b-d78cbc3face2", "text": "1920\u5e74\u7684\u7535\u5f71\u4e2d\uff0c\u6709\u4e00\u53ea20\u82f1\u5c3a\u9ad8\u7684\u673a\u5668\u4eba\u548c\u4e00\u4e2a\u6234\u7740\u53ef\u6015\u9762\u5177\u7684\u50e7\u4fa3\u5728\u4e1b\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "1006204", "video_name": "71b74c9f-85b5-543e-9f7e-97f026bd1aa7", "text": "\u66b4\u98ce\u96e8\u7684\u5929\u7a7a\u4e0b\uff0c\u96e8\u6c34\u503e\u76c6\u800c\u4e0b\uff0c\u65e0\u60c5\u5730\u6dcb\u6e7f\u4e86\u57ce\u5e02\u7684\u8857\u9053\u3002\u95ea\u7535\u5728\u9ed1\u6697\u7684\u5929\u7a7a\u4e2d\u95ea"} +{"id": "2004987", "video_name": "4e6cc8f3-c977-531b-953f-93b63c009fca", "text": "\u732b\u5934\u9e70\u5988\u5988\uff1a\u4f53\u578b\u8f83\u5927\uff0c\u5916\u8868\u6210\u719f\uff0c\u4e5f\u8bb8\u53ef\u4ee5\u8d4b\u4e88\u5979\u4e00\u4e9b\u6bcd\u6027\u7279\u8d28\uff0c\u5982\u67d4\u548c"} +{"id": "3003638", "video_name": "35a55c57-f7dd-5b68-9d7b-ae3ada4c401c", "text": "\u53cc\u5b50\u5ea7\u6218\u58eb\u4e00\u8d77\u6218\u6597\u3002"} +{"id": "2006220", "video_name": "a8734226-2ee6-5266-ab49-607010a4e85d", "text": "\u591c\u7a7a\u4e2d\u98de\u821e\u7740\u7d2b\u8272\u548c\u84dd\u8272\u7684\u9713\u8679\u8774\u8776\uff0c\u6784\u6210\u4e00\u4e2a\u5e7b\u60f3\u4e16\u754c\uff0c\u6563\u53d1\u7740\u795e\u79d8"} +{"id": "4002846", "video_name": "7a374cff-4cf2-5879-bdba-08c1b3a23856", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u300a\u9b54\u517d\u4e16\u754c\u300b\u4e2d\u7684\u4ea1\u7075\u672f\u58eb\u91ca\u653e\u5f71\u7bad\uff0c\u800c\u4ed6\u7684\u6076\u9b54\u90aa"} +{"id": "4003650", "video_name": "be346832-6c3f-5aea-abf1-6884db69ab22", "text": "\u4e91\u7684\u6ce2\u6d6a\u72b6\u6c34\u7eb9\u3002"} +{"id": "4003275", "video_name": "2f86595c-fbc6-542c-87d0-4e6422ec89bc", "text": "\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u7f8e\u4e3d\u795e\u79d8\u591a\u5f69\u661f\u7403\uff0c\u690d\u7269\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "7004642", "video_name": "81e3368f-e8c0-5a3f-a4ca-48320587309b", "text": "\u4e00\u90e8\u5e26\u6709\u65cb\u8f6c\u62e8\u53f7\u7684\u5927\u578b\u7ea2\u8272\u7535\u8bdd\uff0c\u62e8\u76d8\u5728\u8f6c\u52a8\u3002"} +{"id": "1005791", "video_name": "6a9a267f-b803-5125-82fe-8e0c7471c91f", "text": "\u4eba\u6f6e\u6d8c\u52a8\uff0c\u7f8e\u4e3d\u7684\u706f\u5149\u73af\u7ed5\u4e0b\u7684\u675c\u5c14\u52a0\u666e\u5409\u5e86\u5178\u3002"} +{"id": "4002163", "video_name": "b8048332-e3ff-5526-9154-bda1a552035b", "text": "\u4f0a\u9686\u00b7\u99ac\u65af\u514b\u6aa2\u67e5\u4ed6\u7684\u96fb\u5b50\u90f5\u4ef6\u548c\u4fe1\u606f\u3002\u903c\u771f\u76848K\u5f71\u50cf\u3002"} +{"id": "6002311", "video_name": "c18aa2f0-a400-59b0-95af-5b7cf1fe3934", "text": "\u5de8\u578b\u517d\u4eba\u548c\u7f57\u9a6c\u519b\u56e2\u58eb\u5175\u4ea4\u6218\uff0c\u8fd0\u52a84\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "3003501", "video_name": "8abe9875-bc62-5259-9c1b-3700b56bdc36", "text": "\u5c3c\u53e4\u62c9\u8036\u592b\u5e02\u5e02\u5fbd"} +{"id": "8001802", "video_name": "48e38fc7-758f-5e1a-913a-12d761ad94ef", "text": "\u672a\u6765\u4e3b\u4e49\u9053\u8def\u4ea4\u901a\uff0c\u642d\u8f7d\u73b0\u4ee3\u6c7d\u8f66\u3002\u4fe1\u606f\uff1a\u795d\u60a8\u4e00\u8def\u987a\u98ce\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006555", "video_name": "2e9383bf-12a2-5055-92ba-c7a77be7364f", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u6b63\u6cbf\u7740\u8def\u9a91\u9a6c\u3002"} +{"id": "2004601", "video_name": "f93ac48f-03d9-5504-afed-0ded3e805fb8", "text": "\u4e00\u68f5\u5de8\u5927\u7684\u6811\uff0c\u5b83\u7684\u6811\u5e72\u5185\u5f00\u59cb\u51fa\u73b0\u4e00\u4e2a\u95e8\u6237\uff0c\u68ee\u6797\uff0c\u9ece\u660e\uff0c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "8001143", "video_name": "807b2fb7-4e8d-54aa-a4fe-64bf08d01bd4", "text": "\u72ee\u5b50\u548c\u6708\u4eae\u5973\u738b\u5efa\u7acb\u4e86\u8054\u7cfb\uff0c\u4ed6\u53d1\u8a93\u8981\u5728\u6708\u7403\u4e0a\u521b\u9020\u548c\u8c10\u7684\u751f\u6d3b\u3002"} +{"id": "3003415", "video_name": "99f3ee0c-0367-5d13-98fa-c1053b5d8781", "text": "\u53f2\u8bd7\u822c\u7684\u52a8\u6f2b\u5e7b\u60f3\u62f3\u51fb\u6218\u3002"} +{"id": "2007202", "video_name": "671af7fc-9cae-5e59-aeac-22a7ad8898af", "text": "\u4fe1\u606f\uff1aGM\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09\n\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u7728\u773c\u775b\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9510\u5229\u805a\u7126\u3002"} +{"id": "4003980", "video_name": "3b46b018-3fd0-5e45-a893-cbb0387dcf6a", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u5ca9\u77f3\u8fb9\u7f18\uff0c\u5403\u7740\u4e00\u4efd\u5927\u6bd4\u8428\u997c\u3002"} +{"id": "3006789", "video_name": "10691e9f-0627-5dfd-aff8-c3721bcdd635", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u5ff5\u5492\u8bed\uff0c\u8eab\u8fb9\u7684\u7eb8\u724c\u5f00\u59cb\u6f02\u6d6e\u3002"} +{"id": "2005504", "video_name": "1e61b1a9-138f-52ab-8e57-05b6741f1405", "text": "\u7535\u5f71\u6d77\u62a5\uff0c\u65b0\u52a0\u5761\u623f\u5730\u4ea7\u7ecf\u7eaa\u4eba\u7684\u6728\u5076\u5728\u7b14\u8bb0\u672c\u7535\u8111\u524d\uff0c\u4e0a\u9762\u7684\u6587\u5b57\u8bf4\u201c\u4e0d\u8981\u518d\u4f9d\u8d56\u4f9b\u5e94\u5546\u201d\u3002"} +{"id": "1006146", "video_name": "7097c159-813e-52cb-9a20-3f34e8f38f01", "text": "\u5728\u4e00\u5ea7\u660e\u4eae\u7684\u57ce\u5e02\u4e0a\u7a7a\uff0c\u60ca\u4eba\u7684\u9713\u8679\u70df\u82b1\u5728\u7a7a\u4e2d\u7206\u70b8\u3002"} +{"id": "0005874", "video_name": "229ef022-612f-5e77-b001-a12a2b1da472", "text": "\u8db3\u7403\u4f4e\u89d2\u5ea6\u4efb\u610f\u7403\u52a8\u6f2b\u98ce\u683c"} +{"id": "1004186", "video_name": "4d6f294b-1c2b-5a40-832c-b547ab9e63fa", "text": "\u4e00\u4e2a\u60ca\u8bb6\u7684\u6fb3\u5927\u5229\u4e9a\u571f\u8457\u4eba\u7ad9\u5728\u51ac\u5929\u8986\u76d6\u7740\u96ea\u7684\u7530\u91ce\u4e2d\u592e\uff0c\u56db\u5468\u73af\u987e\u3002"} +{"id": "1006513", "video_name": "77368161-87dc-5821-a070-ebd6d24f2fdc", "text": "\u5728\u7a7a\u4e2d\u98de\u884c\u7684\u4eba\u79fb\u52a8\uff0c\u6050\u6016\u5730\u6f02\u6d6e\uff0c\u7535\u5f71\u5f0f\u7f29\u653e\uff0c\u4e2d\u7b49\u5e27\u7387\u3002"} +{"id": "6003426", "video_name": "94003c44-9f7f-55dd-bd37-474fe6b1e4ff", "text": "\u79d1\u83f2\u7ad9\u5728\u706b\u602a\u7269\u7684\u5b89\u5168\u8ddd\u79bb\u5904\uff0c\u8138\u4e0a\u9732\u51fa\u5bb3\u6015\u4f46\u575a\u5b9a\u7684\u8868\u60c5\u3002\u4ed6\u60f3\u5e2e\u52a9\u68ee\u6797\u548c\u4ed6"} +{"id": "1003204", "video_name": "3af31a31-b81c-50b7-ad8e-933c02216b37", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u7f8e\u4e3d\u5df4\u5398\u5c9b\u6a21\u7279\uff0c\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\uff0c\u624b\u6301\u8721\u70db\uff0c\u80cc\u666f\u6a21\u7cca\u3002"} +{"id": "0006881", "video_name": "34ab5489-510d-5e41-8acf-da88cd1251c7", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u591c\u5e97\u91cc\u7528\u6027\u611f\u7684\u65b9\u5f0f\u5728\u94a2\u7ba1\u4e0a\u8df3\u821e\u6a21\u7279\u3002"} +{"id": "4004240", "video_name": "18fc37e3-8d12-56e4-b470-4c1f89933641", "text": "\u90a3\u4e2a\u7537\u4eba\u8fdb\u5165\u6e38\u620f\u95e8\u6237\u5e76\u66f4\u6539\u4e86\u73a9\u5bb6\u76ae\u80a4\u3002"} +{"id": "2004750", "video_name": "b7fa3165-b072-573a-b86d-65d8af595bb7", "text": "\u670b\u53cb\u4eec\u60ca\u53f9\u4e0d\u5df2\uff0c\u53c8\u5145\u6ee1\u6050\u60e7\u5730\u6ce8\u89c6\u7740\u6708\u4eae\u5347\u8d77\uff0c\u6807\u5fd7\u7740\u53e4\u8001\u4eea\u5f0f\u7684\u5f00\u59cb\u3002"} +{"id": "3003907", "video_name": "880466a3-9809-51e5-8d1e-5c0269e1261f", "text": "\u7535\u5f71\u4e2d\uff0c\u4e00\u4f4d\u516c\u4e3b\u5750\u5728\u7a97\u8fb9\uff0c\u96ea\u82b1\u5728\u5979\u5468\u56f4\u98d8\u821e\u3002"} +{"id": "7004955", "video_name": "21ec82db-1ca2-5cc1-982f-073488205a19", "text": "\u53cd\u5bf9\u515a\u9886\u8896\u8054\u76df\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003574", "video_name": "ca4a0298-a2cc-5fa4-8063-b3dcce7d4081", "text": "\u5728\u6d77\u6d0b\u4e2d\u8dc3\u51fa\u6c34\u9762\u7684\u864e\u9cb8\u3002"} +{"id": "6003239", "video_name": "dbef5a40-00fc-5926-95fd-540d398d3078", "text": "\u56fe\u50cf\uff1a\u5c55\u793a\u5065\u5eb7\u7684\u809d\u810f\u4e0e\u8102\u80aa\u809d\u7684\u5f15\u4eba\u5165\u80dc\u7684\u56fe\u5f62\u3002\u9c9c\u660e\u6e05\u6670\u7684\u89c6\u89c9\u6548\u679c\u4ee5\u5438\u5f15"} +{"id": "1003456", "video_name": "3ffd01b6-6c52-5fd2-bf86-cedd4aba278c", "text": "\u963f\u59e8\u5728\u9910\u684c\u4e0a\u8df3\u821e\u3002"} +{"id": "4003876", "video_name": "927a7f27-8384-50d1-9f37-869566b807ed", "text": "\u79fb\u52a8\u706f\u7b3c\uff0c\u5357\u74dc\u7684\u773c\u775b\u53d1\u5149\u3002"} +{"id": "4003228", "video_name": "53a5130f-65ff-5df6-9d9b-97229b0d562b", "text": "\u300a\u73a9\u5177\u603b\u52a8\u5458\u300b\u7684\u4f0d\u8fea\u6b63\u5728\u8857\u4e0a\u5f00\u7740\u4e00\u8f86\u8c6a\u534e\u8f66\u3002"} +{"id": "0004253", "video_name": "05d97264-60ca-54dc-81f1-dd3aaee930c8", "text": "Translation: \u5f53\u5927\u5b66\u751f\u4eec\u5728\u591c\u665a\u5f98\u5f8a\u65f6"} +{"id": "1003339", "video_name": "3d77902e-3c3e-5cc6-8cf4-972d40cff1c0", "text": "\u5236\u4f5c\u4e00\u6bb516:9\u6bd4\u4f8b\u3001\u4f7f\u7528Motion 5\u6280\u672f\u7684\u6d6a\u6f2b\u60c5\u4fa3\u63a5\u543b\u89c6\u9891\u3002"} +{"id": "4004124", "video_name": "139300dd-38b6-500e-ade5-2af52818dc43", "text": "\u8d27\u7269\u7531\u5361\u8f66\u8fd0\u8f93\uff0c\u7a7f\u8d8a\u5c71\u8109\uff0c\u5915\u9633\u4f59\u6656\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u4e2d\u56fd4K\uff0cAR 1:1\u3002"} +{"id": "1006796", "video_name": "7c7adce3-1336-5ea9-b76c-ff37ff57f463", "text": "\u8fd9\u4e2a\u89c6\u9891\u8bb0\u5f55\u4e86\u52a8\u7269\u4ece\u56f0\u5883\u4e2d\u88ab\u62ef\u6551\u5e76\u4e0e\u4e3b\u4eba\u56e2\u805a\u7684\u6e29\u99a8\u65f6\u523b\u3002\u4ece\u7ecf\u8fc7\u6570\u5468\u641c\u5bfb\u627e\u56de\u7684\u8d70"} +{"id": "3003745", "video_name": "596a83ee-dc1b-5b64-991c-233ca15ecb85", "text": "\u4e24\u4f4d\u7236\u6bcd\u56e0\u4e3a\u513f\u5b50\u53bb\u4e16\u800c\u54ed\u6ce3\u3002"} +{"id": "4003807", "video_name": "7584b223-5385-5f05-a7a8-e1c02cbc00f4", "text": "\u5c06\u4e00\u676f\u5496\u5561\u53d8\u6210\u8df3\u821e\u7684\u5496\u5561\u5e08"} +{"id": "6003622", "video_name": "6608a0aa-9078-5c80-87f5-c5750ea49f5b", "text": "\u96e8\u58f0\u548c\u80cc\u666f\u7684\u6811\u53f6\u5728\u98ce\u4e2d\u6c99\u6c99\u4f5c\u54cd\u3002"} +{"id": "3003144", "video_name": "068c9225-bf4b-575b-b350-710619abceb9", "text": "\u91ce\u9a6c\u6c7d\u8f66\u4ee5\u6bcf\u79d260\u5e27\u7684\u901f\u5ea6\u7a7f\u8fc7\u5e02\u533a\uff0c\u5468\u56f4\u7684\u9713\u8679\u706f\u95ea\u8000\u7740\u3002"} +{"id": "0003339", "video_name": "3bee2f49-054d-50c6-831b-096d240aae56", "text": "4k\u3001\u7535\u5f71\u753b\u8d28\u3001\u5f71\u9662\u6548\u679c\u3001\u9ad8\u6e05\uff0c\u7a7f\u7740\u9ec4\u8272\u8863\u670d\u7684\u4eba\u4eec\u5728\u563b\u54c8\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "7004437", "video_name": "7a251fd1-3a93-5b1b-ac1d-78f88ac2b558", "text": "\u6e05\u6f88\u6d41\u6c34\u7684\u89c6\u9891\uff0c\u89c6\u9891\u5c3a\u5bf8\u4e3a9:16\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0005788", "video_name": "214777d1-bab1-56fc-a858-b9363bffe070", "text": "\u9ed1\u4e91\u5bc6\u5e03\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "4002892", "video_name": "853d13c8-ba45-5498-9c1a-107b7a5ef180", "text": "\u4e00\u90e8\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u60c5\u611f\u4e4b\u95f4\u7684\u6597\u4e89\u3002"} +{"id": "0003248", "video_name": "3a057785-f2d0-5242-b4a9-cf70af32f9fe", "text": "\u8fdc\u5904\u7684\u8c6a\u5b85\u88ab\u96fe\u6c14\u7b3c\u7f69\u7740\u30028K\u3001\u903c\u771f\u30013D\u3001\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "4004033", "video_name": "977fa64f-4a35-567b-b974-76fd93f049f2", "text": "\u6c64\u59c6\u628a\u9505\u7897\u74e2\u76c6\u548c\u9910\u5177\u53e0\u8d77\u6765\u642d\u6210\u4e86\u4e00\u4e2a\u4e34\u65f6\u7684\u697c\u68af\uff0c\u4ee5\u4fbf\u591f\u5230\u9ad8\u67b6\u4e0a"} +{"id": "3003662", "video_name": "7d0446ae-d511-5f50-871b-c30bd5bf9f5c", "text": "\u7c98\u4eba\u5f62\u5728\u9003\u79bb\u7eb8\u5f20\uff0c\u4eba\u7c7b\u8bd5\u56fe\u6293\u4f4f\u5b83\u3002"} +{"id": "1005646", "video_name": "67be7616-66b6-535d-b9f8-045418a663fe", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u57ce\u5821\u5927\u5385\u91cc\u94fa\u7740\u77f3\u5730\u677f\uff0c\u591c\u665a\u4e0b\u7740\u66b4\u98ce\u96ea\u3002"} +{"id": "0003529", "video_name": "3f086bac-1c9a-5680-80b8-e7db97974653", "text": "\u5e74\u8f7b\u7537\u5b69\u3002\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1003854", "video_name": "4706ce6d-8fac-519a-b4e1-bdb00ffe0fa7", "text": "\u865a\u62df\u4eba\u94c1\u5320\u94fa\u6253\u9020\u4e2d\u666f"} +{"id": "1006780", "video_name": "7c41f8c7-f0a2-53b7-bae3-77e0cd838d36", "text": "\u5316\u5986\u54c1\u6444\u5f71\u8ba9\u60a8\u6c89\u6d78\u5728\u72ec\u7279\u7684\u7f8e\u5986\u4e16\u754c\u4e2d\uff0c\u901a\u8fc7\u4ee4\u4eba\u9676\u9189\u7684\u89c6\u89c9\u9b54\u529b\u5448\u73b0"} +{"id": "2003239", "video_name": "b0281d43-941e-5d11-a35d-c360d0c3bb73", "text": "\u6210\u5343\u4e0a\u4e07\u7684\u9e1f\u513f\u98de\u5411\u5730\u7403\u3002"} +{"id": "2005508", "video_name": "b9d1bcba-75c1-5f78-8bca-8f87e7bde7ac", "text": "\u670d\u52a1\u5668\u623f\uff0c\u670d\u52a1\u5668\uff0c\u76d1\u89c6\u5668\uff0c\u5927\u91cf\u7535\u7f06\uff0c\u6e38\u620f\u5ba4\uff0cLED\u706f\u5149\uff0c\u9ad8\u8d28\u91cf\u3002\u6d88\u606f\uff1aJanusz\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2006926", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "\u559d\u7740\u51b0\u51b7\u7684\u5564\u9152\u7684\u5e74\u8f7b\u4eba\uff0c\u65e0\u610f\u4e2d\u649e\u5230\u4e86\u4e00\u645e\u5564\u9152\uff0c\u7ed3\u679c\u78b0\u5230\u4e86\u4e00\u8f86\u8f66\u3002"} +{"id": "4002709", "video_name": "fe646a82-8e57-5308-831d-891b3ccf35fb", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u9f50\u7a7f\u7740\u540c\u6837\u7684\u767d\u8272\u957f\u5916\u5957\uff0c\u5728\u4e8c\u6218\u671f\u95f4\u626e\u6f14\u4e00\u4e2a\u94a2\u7434\u5bb6\u3002\u6444\u50cf\u673a\u5728"} +{"id": "2003144", "video_name": "f709d9e4-8921-53c5-85ed-7db0cdf90586", "text": "\u4e00\u53ea\u732b\u7ad9\u5728\u90a3\u91cc\uff0c\u8eab\u4f53\u9ad8\u9ad8\u7684\uff0c\u50cf\u4eba\u4e00\u6837\u7684\uff0c\u4f46\u8138\u662f\u732b\u7684\uff0c\u76f4\u633a\u633a\u7684\u7ad9\u5728\u90a3\u91cc\u3002"} +{"id": "6002697", "video_name": "855b5346-7467-5c91-8a25-1b0df8e46977", "text": "\u5f53\u6211\u7ad9\u5728\u90a3\u91cc\uff0c\u4e0d\u77e5\u9053\u63a5\u4e0b\u6765\u8be5\u505a\u4ec0\u4e48\u65f6\uff0c\u6211\u7684\u773c\u775b\u77a5\u89c1\u8fdc\u5904\u7684\u51e0\u4e2a\u8eab\u5f71\u3002\u6162\u6162\u5730\uff0c\u4ed6"} +{"id": "8003065", "video_name": "a82d922f-b1f9-537c-8c83-5756fc5f7d58", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u57c3\u53ca\u7684\u8001\u864e\u673a\u4e0a\u5c06\u8d62\u5f97\u5f88\u591a\u94b1\u3002"} +{"id": "2007906", "video_name": "90ecab2f-f24f-5caa-a0af-8367e98a4ae3", "text": "\u9752\u86d9\u5750\u5728\u7535\u8111\u540e\u9762\u73a9\u7535\u7ade\u6e38\u620f\u3002"} +{"id": "0004975", "video_name": "129177a9-ffd5-56f2-b86f-d960c157e986", "text": "\u5e74\u8f7b\u7537\u5973\u53bb\u7ea6\u4f1a\u3002"} +{"id": "3006823", "video_name": "b837fc3e-dd17-579f-ac62-f1f2e52e2f6e", "text": "\u8036\u7a23\u4ece\u5929\u964d\u4e34\uff0c\u4eba\u4eec\u8dea\u62dc\u5728\u4ed6\u9762\u524d\u3002"} +{"id": "2007564", "video_name": "2f1985a2-af16-5d0a-8aa5-61b77d2dbf5c", "text": "\u533b\u751f\u529e\u516c\u5ba4\u91cc\u7684\u5927\u5706\u5f62\u8d34\u7eb8"} +{"id": "1005490", "video_name": "64e02401-76e7-5188-a086-7dec734aa02e", "text": "\u4e00\u5ea7\u6d6e\u5728\u5929\u7a7a\u4e2d\u7684\u623f\u5b50"} +{"id": "1006861", "video_name": "7d4a05d5-da56-5efb-93ca-4ea51d797e7a", "text": "\u5f53\u4f69\u6234\u6212\u6307\u7684\u65f6\u5019\uff0c\u6765\u81ea\u300a\u6307\u73af\u738b\u300b\u7684\u5f17\u9c81\u591a"} +{"id": "2003265", "video_name": "ce4f3ce3-97fc-536a-b787-4ca75a5e2e23", "text": "\u5145\u6ee1\u523a\u6fc0\u7684Roblox\u8d5b\u8f66\u6bd4\u8d5b\uff0c\u4f7f\u7528\u8272\u5f69\u7f24\u7eb7\u7684\u5361\u4e01\u8f66\u3002"} +{"id": "5001233", "video_name": "24bdc521-35e1-5b64-afb6-7c7a8acff096", "text": "\u5e97\u4e3b\u5c06\u6240\u6709\u7269\u54c1\u88c5\u8fdb\u888b\u5b50\u91cc\uff0c\u5e76\u628a\u888b\u5b50\u9012\u7ed9\u4e86\u72d7\u3002"} +{"id": "2007346", "video_name": "82839781-8a6b-5c3a-9716-eb2dc645f980", "text": "\u4e24\u53ea\u773c\u775b\uff0c\u6ca1\u6709\u8138\uff0c\u53ea\u6709\u773c\u775b\uff0c\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002\u8d858\u80f6\u7247\u3002"} +{"id": "8002533", "video_name": "f8d74d8b-161e-572b-900d-6a6f3b9d3387", "text": "\u4e24\u4e2a\u9752\u5c11\u5e74\u5f97\u5230\u4e86\u5f88\u591a\u4fe1\u7528\u5361\u94b1\uff0c\u628a\u5b83\u82b1\u5728\u5962\u4f88\u54c1\u4e0a\u3002"} +{"id": "2005172", "video_name": "978c6524-d688-5a1c-b387-a8855017a90e", "text": "\u5728\u53cd\u5c04\u661f\u4e91\u4e2d\uff0c\u91d1\u8272\u5706\u6db2\u4f53\u5149\u70b9\u5982\u540c\u6728\u661f\u4e00\u822c\u5de8\u5927\u3002"} +{"id": "4003883", "video_name": "2a739ddc-9079-564f-a039-4538e1c9d9e3", "text": "\u5728\u68ee\u6797\u4e2d\u8df3\u821e\u7684\u5973\u4eba\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u957f\u957f\u7684\u9634\u5f71\uff0c\u80cc\u5149\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u6765\u81ea\u8fbe\u82ac\u5947"} +{"id": "0005179", "video_name": "162b9422-0247-5fec-bfe0-c42abbd94bb9", "text": "\u6811\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u6240\u6709\u5fc3\u7075\u90fd\u50cf\u98ce\u4e2d\u7684\u6811\u53f6\u4e00\u6837\u968f\u4e4b\u821e\u52a8\u3002"} +{"id": "8003801", "video_name": "76738d40-1078-53cf-b998-bfc367fcba64", "text": "\u6d77\u4e0a\u9ad8\u6e05\u7684\u6d77\u5cb8\u666f\u89c2\u3002"} +{"id": "4002026", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "\u4e00\u8f86\u62e5\u67092\u4e2a\u8f66\u95e8\u7684\u8d85\u7ea7\u8dd1\u8f66\u5728\u5c71\u4e0a\u62d0\u5f2f\u3002"} +{"id": "5001177", "video_name": "3a9b8b2b-432b-58f3-9575-cb2970190eff", "text": "\u6ce1\u6cab\u5d29\u6e83\u5e76\u53d1\u51fa\u5de8\u54cd\u7684\u52a8\u753b\u3002"} +{"id": "7003119", "video_name": "77e4335b-2ed7-5759-b4da-e21ed508842a", "text": "\u5728\u661f\u7a7a\u4e2d\uff0c\u60f3\u8c61\u4e00\u4e2a\u95ea\u70c1\u7684\u5e7b\u8c61\uff0c\u7f29\u653e\u51fa\u53bb\uff0c\u5f80\u540e\u63a8\u3002"} +{"id": "7002809", "video_name": "3d7b9de9-73a6-5d01-9fc9-3fe6ce0aff13", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u7c89\u7b14\u661f\u661f\u5728\u6c34\u4e0b\u6f02\u6d6e\uff0c\u5e26\u7740\u6ce1\u6ce1\u3002\u8ba9\u4e00\u5207\u53d8\u5f97\u660e\u4eae\u3001\u751f\u52a8\u3001\u7c89\u5f69\u3001\u5361\u901a"} +{"id": "0003823", "video_name": "44249d5d-2e84-57d1-85e0-877ecc19fcec", "text": "\u80ce\u513f\u5728\u8eab\u4f53\u5185\u751f\u957f\uff0c\u5982\u540c\u7535\u5f71\u4e00\u822c\uff0c\u8272\u8c03\u4e3a\u68d5\u8272\u548c\u91d1\u8272\u3002"} +{"id": "8002355", "video_name": "08b507af-c211-5586-b410-b21fbf594a82", "text": "Source sentence translated into Chinese: \u5236\u4f5c\u4e00\u4e2a\u63cf\u8ff0\u7537\u4eba\u5367\u5ba4\u7ecf\u6d4e\u5931\u8d25\u7684\u89c6\u9891\uff0c\u7537\u4eba\u4eec\u5e94\u8be5\u6709\u7ea2\u8272\u7684\u773c\u7403\uff0c\u521a\u4ece\u5e8a\u4e0a\u7ad9\u8d77\u6765\uff0c\u601d\u8003"} +{"id": "8001890", "video_name": "9972fade-7c3c-560a-90d8-9cac9a160b8e", "text": "\u7a7a\u95f4\u4f4d\u7f6e\u548c\u8fd9\u4e2a\u5bb6\u4f19\u624b\u4e2d\u73a9\u5f04\u884c\u661f\uff0c\u5730\u7403\u5728\u4ed6\u8eab\u540e\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005210", "video_name": "16a2d081-3470-592e-8186-539b10939284", "text": "\u4e00\u4e2a\u91d1\u8272\u7684\u7334\u738b\uff0c\u5e1d\u56fd\uff0c\u53ef\u7231\u7684\u989c\u8272\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u7535\u5f71\u5316\u7684"} +{"id": "6004512", "video_name": "54446c54-2403-543d-bcef-c0960825ecaf", "text": "Source sentence: \u4e3aDrift King\u5236\u4f5c\u7684\u97f3\u4e50\u89c6\u9891\u4ecb\u7ecd\uff0c\u6587\u672c\u4e0a\u5199\u7740Drift King\u3002"} +{"id": "2007139", "video_name": "b2303b19-a265-5a09-8de7-73bc48398a61", "text": "\u8001\u592b\u5987\u5728\u9910\u684c\u524d\u8df3\u821e\uff0c\u7a97\u53e3\u653e\u7740\u9c7c\u3001\u8089\u548c\u8721\u70db\u3002"} +{"id": "1004855", "video_name": "59b52d73-85c0-5369-a327-bc0c3f1dc7e4", "text": "\u4e00\u53ea\u4e4c\u9f9f\u5728\u5927\u9ebb\u914d\u836f\u5e97\u8d2d\u4e70\u9884\u5377\u3002"} +{"id": "3004222", "video_name": "5ccb5773-07aa-5a21-9458-1078689fccbe", "text": "\u4e00\u7247\u8352\u51c9\u7684\u6218\u573a\uff0c\u6563\u843d\u7740\u7f57\u9a6c\u76d4\u7532\u7684\u6b8b\u9ab8\u3002"} +{"id": "1005484", "video_name": "64c0a81d-a090-5a5a-835b-7865ff89be04", "text": "\u5e03\u62c9\u5fb7\u00b7\u76ae\u7279\u7a7f\u7740\u9a6c\u91cc\u4e9a\u5947\u670d\u88c5\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u5f39\u5409\u4ed6\uff0c\u6709\u86cb\u7cd5\u3001\u5f69\u5e26\u3001"} +{"id": "8001639", "video_name": "c55dbbd1-c839-5407-b23e-60f05a1c3792", "text": "\u4e00\u6761\u5b81\u9759\u7684\u6cb3\u7554\uff0c\u51e0\u8f86\u5766\u514b\u6b63\u9a76\u8fc7\u6cb3\u6d41\uff0c\u5766\u514b\u65c1\u8fb9\u8fd8\u6709\u4e00\u4e9b\u884c\u8fdb\u7684\u58eb\u5175\u3002"} +{"id": "5001324", "video_name": "e33a1470-d054-5656-82a0-28d6268d1673", "text": "\u4e00\u6735\u82b1\u4ece\u8d2b\u7620\u7684\u571f\u5730\u4e0a\u5192\u51fa\u7684\u5f62\u8c61\u3002"} +{"id": "8001856", "video_name": "99e7d55b-a6fc-5fb1-8407-db0c75b26495", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u4ece\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u7684\u5c4b\u9876\u4e0a\u4fef\u77b0\u9a6c\u8d5b\u5e02\uff0c\u90a3\u91cc\u6709\u54e5\u7279\u5f0f\u7684"} +{"id": "2007889", "video_name": "15d7f577-9202-5927-b495-d386a5c3f228", "text": "\u4e2d\u570b\u53e4\u4ee3\u7f8e\u5973\u5728\u52a0\u6cb9\u7ad9\nZh\u014dnggu\u00f3 g\u01d4d\u00e0i m\u011bin\u01da z\u00e0i ji\u0101y\u00f3u zh\u00e0n"} +{"id": "8002961", "video_name": "c3e53db9-cb90-5440-a56d-ca2541586710", "text": "\u8fd9\u5ea7\u957f\u7740\u80e1\u987b\u7684\u7537\u4eba\u7684\u5168\u8eab\u96d5\u50cf\uff0c\u5c06\u5e26\u4f60\u8fdb\u5165\u53e4\u5e0c\u814a\u7684\u4e16\u754c\u3002\u7ec6\u81f4\u76843D\u7eb9\u8def\u548c"} +{"id": "7004576", "video_name": "bca01f5b-1cea-5d9c-85b8-72787e081b52", "text": "\u6211\u4eec\u5c06\u63a2\u7d22\u201c\u6cd5\u8001\u7684\u8bc5\u5492\u201d\u7684\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6545\u4e8b\u3002"} +{"id": "7004542", "video_name": "2b33c834-9bb2-5031-bbc3-797f2194b9be", "text": "\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u3001\u62e5\u6709\u7eff\u8272\u773c\u775b\u548c\u7ea2\u8272\u5934\u53d1\u7684\u6027\u611f\u5973\u90ce\uff0c\u7cbe\u529b\u5145\u6c9b\u4e14\u5927\u80c6\uff0c\u5e26"} +{"id": "4002507", "video_name": "6981ea54-2bcb-53f9-9c43-49ba9ce566de", "text": "\u7f8e\u4eba\u9c7c\u628a\u6e14\u6c11\u62c9\u5230\u6d77\u5e95\u7684\u6050\u6016\u7535\u5f71\u5f88\u73b0\u5b9e\u3002"} +{"id": "0004030", "video_name": "01c921cb-2028-5817-980a-1c35415e19ef", "text": "\u4e00\u53ea\u8d70\u8def\u7684\u5361\u901a\u8349\u8393\u7684\u77e2\u91cf\u63d2\u56fe"} +{"id": "0004879", "video_name": "10d20bb5-6e3d-53f9-a30f-09b912286576", "text": "\u7528\u65e0\u4eba\u673a\u62cd\u6444\u9996\u90fd\u4e4c\u514b\u5170\u57fa\u8f85\u7684\u903c\u771f\u89c6\u9891\u3002\u89c6\u9891\u5e94\u4ee5\u65e0\u4eba\u673a\u98de\u8d8a\u57fa\u8f85\u4e3b\u8981\u8857\u9053Khreshchatyk\u4e3a\u5f00\u5934"} +{"id": "4002205", "video_name": "76e7f2a4-212e-5d0a-9e3f-6bbcfab63b1f", "text": "\u4f46\u4e5f\u6709\u4e00\u4e9b\u4ee4\u4eba\u60ca\u559c\u7684\u9177\u4e1c\u897f\u3002"} +{"id": "2006241", "video_name": "66b82bbd-ef3d-5889-a5a8-b1e8f9002cdb", "text": "\u5973\u5b69\u548c\u732b\uff0c\u672a\u6765\u6ce1\u6ce1\uff0clofi\u98ce\u683c"} +{"id": "1003431", "video_name": "3f62bc6f-d2df-5c4c-ae15-29ce84e4c31c", "text": "\u5e7b\u60f3\u4e16\u754c\uff0c\u6e38\u620f\uff0c\u5deb\u5e08\uff0c\u6211\u7684\u4e16\u754c\uff0c\u591a\u5f69\u7684\u5e7b\u60f3\u6218\u4e89\uff0c\u4e16\u754c\u672b\u65e5 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7003393", "video_name": "b7940cd2-9093-53c3-ab74-ac20eb4d00fd", "text": "\u52a8\u753b\u5177\u6709\u68a6\u5e7b\u6c1b\u56f4\uff0c\u5145\u6ee1\u6d3b\u529b\u548c\u65cb\u8f6c\u7684\u8ff7\u5e7b\u56fe\u6848\uff0c\u6545\u969c\u6548\u679c\u3002"} +{"id": "1005796", "video_name": "6aae9f08-e739-5e6a-b0d4-a5e332b5d2b7", "text": "\u610f\u5927\u5229\u6d77\u6ee9\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u6d77\u5cb8\u3002"} +{"id": "3006405", "video_name": "4a48ff27-def6-547c-9075-4994c5f43c0a", "text": "\u795e\u5947\u5973\u4fa0\u8d85\u7ea7\u82f1\u96c4\u5728\u62a4\u80a4\u67dc\u53f0\u4e0a\u770b\u62a4\u80a4\u54c1\u6807\u7b7e\u65f6\u663e\u5f97\u56f0\u60d1\uff0cUHD\u9ad8\u6e05\u3001\u903c\u771f\u3001\u7535\u5f71"} +{"id": "1004882", "video_name": "5a4bc5bf-80d4-56f2-82eb-58d25c299cf2", "text": "\u5b63\u8282\u53d8\u6362\u7684\u7247\u6bb5\uff0c\u7531\u6625\u5929\u8fc7\u6e21\u5230\u590f\u5929\u3002"} +{"id": "2005719", "video_name": "fa67dca4-10bb-5248-8c68-f4401cdf2ade", "text": "\u591c\u665a\uff0c\u4e00\u4f4d\u5e74\u8fc8\u5987\u5973\u8d70\u8fdb\u4e86\u660e\u4eae\u7684\u836f\u5e97\u3002"} +{"id": "5001468", "video_name": "3df4ff15-deba-53b7-9b3f-76d327d76792", "text": "\u4e00\u53ea\u730e\u8c79\u5728\u4e1b\u6797\u4e2d\u8fc5\u901f\u5954\u8dd1\uff0c\u4ece\u6444\u50cf\u5934\u524d\u7ecf\u8fc7\u3002"} +{"id": "2004018", "video_name": "caefb1a9-dbb2-5fd3-b23e-b3b3974b4e81", "text": "\u963f\u62c9\u4f2f\u8bed\u7684\u573a\u666f\uff0c\u6709\u4eba\u5728\u4ea4\u8c08\u3002"} +{"id": "0005120", "video_name": "151dddab-6ddb-5a91-ad16-7796955c1adb", "text": "\u751f\u6210\u4ee4\u4eba\u60ca\u53f9\u548c\u5bcc\u6709\u60f3\u8c61\u529b\u7684\u666f\u89c2\uff0c\u5145\u6ee1\u6f02\u6d6e\u7684\u5c9b\u5c7f\u3001\u795e\u79d8\u7684\u751f\u7269\u3001\u8272\u5f69\u6591\u6593"} +{"id": "3005741", "video_name": "16dbe73d-131a-55cc-997b-3fd8bc5163fa", "text": "\u4e00\u76d8\u6ed1\u6e9c\u6e9c\u7684\u7f8e\u5473\u610f\u5927\u5229\u9762 SEND NOODS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003695", "video_name": "583784ce-e8e0-5642-8b5f-7fb6f0dcefb8", "text": "\u4e00\u7fa4\u5154\u5b50\u5728\u4e00\u7247\u8302\u5bc6\u800c\u5145\u6ee1\u751f\u673a\u7684\u4e1b\u6797\u4e2d\uff0c\u4ee5Cinema 4D\u8d28\u91cf\u548c16:9\u7684\u5bbd\u5c4f\u6bd4\u4f8b\u5448\u73b0\u3002"} +{"id": "2003824", "video_name": "c3834e1f-083f-5703-8b47-9616eaa2fd5a", "text": "\u4e00\u53ea\u72d0\u72f8\u5954\u8dd1\uff0cVHS\u5f55\u50cf\u5e26\uff0c\u6545\u969c\u3002"} +{"id": "3004863", "video_name": "ef2aea06-be3e-5ceb-bbe3-3d638837dee2", "text": "\u4ed6\u4eec\u5bf9\u5f7c\u6b64\u7684\u5438\u5f15\u548c\u5171\u540c\u7684\u94a6\u4f69\u611f\u63aa\u624b\u4e0d\u53ca\uff0cX\u7279\u5de5\u548cY\u7279\u5de5\u5728\u6267\u884c\u4efb\u52a1\u65f6\u72b9\u8c6b\u4e0d\u51b3\u3002\u5077\u5077\u770b"} +{"id": "8003552", "video_name": "68a1f49a-7368-5c3a-956e-ef816f946192", "text": "\u56de\u5230\u672a\u4f86\u7684 Doc Brown \u79d1\u5b78\u5bb6\u3002"} +{"id": "1005411", "video_name": "63671f01-e200-59cd-9849-96a69c913485", "text": "\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u5728\u955c\u5b50\u524d\u6446\u59ff\u52bf"} +{"id": "0006753", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "\u751f\u6210\u4e00\u90e8\u6709\u5173\u6d77\u72f8\u7684\u5361\u901a\u52a8\u753b\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u706f\u5149\u6548\u679c\u3002"} +{"id": "2007923", "video_name": "48e709b4-f794-5cd5-9641-e7e8ea55758c", "text": "\u7b2c\u56db\u7ef4\u5ea6\u4e4b\u65c5"} +{"id": "4002385", "video_name": "02c06e40-1559-5788-9b89-87814eb962e6", "text": "\u5728\u65e5\u843d\u65f6\u5206\uff0c\u666e\u666e\u8096\u548c\u666e\u4ec0\u6ce2\u5728\u6c99\u6f20\u4e2d\u559d\u5496\u5561\u3002"} +{"id": "5001351", "video_name": "62a369f9-2221-509b-aa00-091f5bf92051", "text": "\u795e\u79d8\u7684\u6234\u9762\u5177\u7537\u4eba\u8bb2\u6545\u4e8b\u3002"} +{"id": "8003624", "video_name": "1976226b-5ecc-5d9f-ab0e-22bad7016347", "text": "\u50f5\u5c38\u624b\u62ff\u7740\u5934\uff0c\u80cc\u666f\u662f\u5893\u5730\uff0c\u590d\u53e4\u98ce\u683c\u7684T\u6064\u8bbe\u8ba1\uff0c\u63d2\u753b\uff0c\u6570\u5b57\u827a\u672f\uff0c\u77e2\u91cf\u56fe\uff0c\u9c9c"} +{"id": "4003474", "video_name": "27f6dc08-3c85-517a-977f-96c9bf8354f0", "text": "\u4ece\u8c6a\u534e\u516c\u5bd3\u5185\u770b\u57ce\u5e02\u666f\u89c2\uff0c\u5305\u62ec\u5ba2\u5385\u548c\u53a8\u623f\uff0c\u900f\u8fc7\u7a97\u6237\u53ef\u4ee5\u770b\u5230\u6e05\u6f88\u67d4\u8f6f\u7684\u96e8\u3002"} +{"id": "6003573", "video_name": "b2778267-52d5-5928-ace1-4e8bfc02e950", "text": "\u5236\u4f5c\u6807\u5fd7\u52a8\u753b\uff0c\u6807\u5fd7\u540d\u79f0\u662f\u865a\u5e7b\u7684\u9634\u5f71\u3002"} +{"id": "7003720", "video_name": "93b3c488-696d-5bc1-a80a-ec105fed31da", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u6234\u7740\u5934\u5dfe\u548c\u53e3\u7f69\u51fa\u73b0\u5728\u9ad8\u7b49\u6cd5\u9662\u3002"} +{"id": "2004755", "video_name": "9249a665-43b1-59df-a9b9-813722f0ee96", "text": "\u4e30\u5bcc\u591a\u5f69\u7684\u3001\u9510\u5229\u7684\u3001\u6162\u52a8\u4f5c\u7684\u98de\u884c\u8702\u9e1f\uff0c\u6df1\u5ea6\u7684\u666f\u6df1\u3002"} +{"id": "4003053", "video_name": "ebdd5986-a504-572e-b804-1890919b7847", "text": "\u4f0a\u74dc\u82cf\u7011\u5e03\u7684\u89c6\u9891\uff1a\u8f7b\u5fae\u6643\u52a8\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u6709\u8bb8\u591a\u98de\u9e1f\u5728\u5468\u56f4\u98de\u7fd4"} +{"id": "1004930", "video_name": "5b282b2b-5e9b-5eb9-846d-e41c650ab622", "text": "\u8428\u62c9\u4e00\u76f4\u662f\u793e\u533a\u7684\u4e2d\u5fc3\uff0c\u65e0\u8bba\u8d70\u5230\u54ea\u91cc\u90fd\u4f20\u64ad\u7740\u7231\u548c\u5e78\u798f\u3002"} +{"id": "4003398", "video_name": "c653de43-5cd7-5c9c-84bf-016eaaf52b42", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4f7f\u7528\u4ed6\u7684ATM\u548c\u501f\u8bb0\u5361\u5728ATM\u673a\u4e0a\uff0c\u5e76\u5411\u540e\u79fb\u52a8\u3002"} +{"id": "0006883", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "\u4e00\u9897\u6c34\u6676\u7403\uff0c\u5355\u8272\uff0c\u892a\u8272\u7684\u989c\u8272\uff0c\u9b54\u5e7b\u7684\u3002"} +{"id": "1006028", "video_name": "6ec920e2-57c9-5c76-8c40-6021c70fddbc", "text": "\u725b\u5976\u5de5\u4eba\u9a91\u7740\u4e00\u5934\u5de8\u5927\u7684\u5976\u725b\u6324\u5976\u3002"} +{"id": "5001235", "video_name": "d13d41bf-d146-5cc2-997a-8d0a269b690a", "text": "\u79cb\u5929\u7684\u6811\u6447\u6446\u7740\uff0c\u9ec4\u53f6\u98d8\u821e\u7740\u3002"} +{"id": "2004514", "video_name": "1a6fe06f-f66d-5336-b234-d9003749fe3c", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u6ed1\u7a3d\u5730\u76b1\u8d77\u8138\uff0c\u540c\u60c5\u5730\u671b\u7740\u955c\u5934\u3002"} +{"id": "2007455", "video_name": "a554b2ff-753b-51d7-9075-c03fa48d7a29", "text": "\u5f53\u4f60\u8be2\u95ee\u9000\u8d27\u65e5\u671f\u65f6\uff0c\u5176\u5b9e\u5e76\u6ca1\u6709\u786e\u5b9a\u7684\u65e5\u671f\uff0c\u4f46\u5728\u5df4\u5c71\u591c\u96e8\u4e2d\u6c34\u6da8\u8239\u9ad8\u65f6\uff0c\u6211\u4eec\u4e00\u8d77\u5728\u897f\u7a97\u70b9\u70db\uff0c\u8c08\u8bba"} +{"id": "2003609", "video_name": "e0de3ff6-2922-51ad-819a-d010a76b587a", "text": "\u4e00\u5c0a\u7f8e\u4e3d\u7684\u97e9\u7eb3\u66fc\u795e\uff0c\u5e26\u7740\u7075\u6027\u7684\u7977\u544a\u3002"} +{"id": "5001378", "video_name": "9fa0e8f9-3d20-5938-b86c-5ace67fe885e", "text": "\u7ec6\u96e8\u5fae\u7b11\u7740\u4ecb\u7ecd\u81ea\u5df1\u662f\u5c71\u8c37\u91cc\u6700\u5c0f\u7684\u9f99\u3002\u4ed6\u76f8\u4fe1\u5373\u4f7f\u662f\u6700\u5c0f\u7684\u751f\u7269\u4e5f\u80fd\u4ea7\u751f\u5de8\u5927\u7684\u5f71\u54cd\u3002"} +{"id": "3004535", "video_name": "3f238023-e34a-543c-b9d1-521132882dde", "text": "\u4e00\u4e2a\u53d1\u5149\u7684\u7a7a\u95f4\uff0c\u95ea\u70c1\u7740\u9713\u8679\u8272\u5f69\uff0c\u4f4e\u4fdd\u771f\u7eb9\u8eab\u6b4c\u624b\u5728\u623f\u95f4\u4e2d\u592e\u51fa\u73b0\u3002"} +{"id": "5001682", "video_name": "3a68a0be-c546-5d2c-85a3-5321dde12636", "text": "2049\u5e7410\u67081\u65e5\uff0c\u4e2d\u56fd\u56fd\u5e86\u9605\u5175\u3002"} +{"id": "4002379", "video_name": "6413a773-af8a-590c-bd1d-1d5efc144e0c", "text": "\u903c\u771f\u7684\u30014K\u7684\u89c6\u89c9\u6548\u679c\uff1a\u4eba\u4eec\u4f7f\u7528\u804a\u5929\u673a\u5668\u4eba\u7684\u7cbe\u5f69\u7247\u6bb5\u3001\u4e00\u4e2a\u4eba\u5728\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u4f7f\u7528\u804a\u5929\u673a\u5668\u4eba"} +{"id": "6002230", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "\u4f0a\u4e3d\u838e\u767d\u548c\u5979\u7684\u65f6\u4ee3\u662f\u82f1\u56fd\u5e1d\u56fd\u548c\u7ecf\u6d4e\u589e\u957f\u7684\u65f6\u671f\u3002"} +{"id": "3004818", "video_name": "76e5ed3e-80cf-5261-a904-959c063ec98a", "text": "\u91d1\u6bdb\u730e\u72ac\u88ab\u4e00\u53ea\u5c0f\u732b\u9738\u5360\u4e86\u4ed6\u7684\u5e8a\u3002"} +{"id": "3004448", "video_name": "c84865db-8f54-5e16-be88-a783a2af64bb", "text": "\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u8fb9\u4e0a\uff0c\u5b55\u5987\u53ef\u4ee5\u5728\u666e\u62c9\u63d0\u7403\u4e0a\u953b\u70bc\u3002"} +{"id": "8002767", "video_name": "08dfa57d-971b-50aa-b128-56ea801ca86c", "text": "\u8fd9\u4e2a\u9886\u57df\u88ab\u5212\u5206\u6210\u6b63\u65b9\u5f62\uff0c\u4e00\u4e2a\u7cbe\u7075\u6cbf\u7740\u5b83\u5954\u8dd1\u3002"} +{"id": "2003773", "video_name": "ea391bd3-4f40-5200-88bf-39c568f8d036", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u663e\u793aPriya\u5728\u670b\u53cb\u7684\u5e2e\u52a9\u548c\u6307\u5bfc\u4e0b\u52e4\u594b\u5b66\u4e60\u3002"} +{"id": "0005904", "video_name": "23008e28-fc70-5366-a2f4-d3ff38c30b2b", "text": "\u4e00\u7fa4\u6210\u5343\u4e0a\u4e07\u53ea\u571f\u62e8\u9f20\u6cbf\u7740\u9ad8\u8038\u7684\u745e\u58eb\u5c71\u8109\u5954\u8dd1\u3002"} +{"id": "3004575", "video_name": "4949cf44-01cd-5b99-b004-f681ce2effc3", "text": "\u51cb\u96f6\u7684\u85e4\u8513\u7f20\u7ed5\u5728\u8001\u6811\u7684\u679d\u5e72\u4e0a\uff0c\u4e00\u53ea\u4e4c\u9e26\u6816\u606f\u5728\u6811\u679d\u4e0a\u3002"} +{"id": "1004351", "video_name": "5045a368-8f57-5e42-a071-3865cf2e95d0", "text": "\u8036\u7a23\u56de\u7b54\u8bf4\uff1a\u201c\u6211\u5c31\u662f\u9053\u8def\u3001\u771f\u7406\u3001\u751f\u547d\uff1b\u82e5\u4e0d\u85c9\u7740\u6211\uff0c\u6ca1\u6709\u4eba\u80fd\u5230\u7236\u90a3\u91cc\u53bb\u3002\u201d"} +{"id": "7002851", "video_name": "0905e9db-66a1-51bd-b89a-5fcebd2cb2be", "text": "\u8eab\u9ad85'2\"\u7684\u5370\u5c3c\u5973\u5b69\u9732\u51fa\u7f8e\u4e3d\u7684\u7b11\u5bb9\uff0c\u9732\u51fa\u7259\u9f7f\uff0c\u6402\u77406'3\"\u7684\u6d45\u8272\u76ae\u80a4"} +{"id": "7002867", "video_name": "55aa528e-2a0b-5fca-b1d0-5a8cb517e488", "text": "\u795e\u7b2c\u4e00\u6b21\u505a\u68a6\uff0c\u4ed6\u770b\u5230\u4e86\u4ec0\u4e48\uff1f"} +{"id": "7002280", "video_name": "bc5ae554-25a5-5cdb-accf-7215316cf3f4", "text": "\u7f8e\u4e3d\u903c\u771f\u7684\u5973\u5b69\u8eba\u5728\u82b1\u8349\u4e1b\u4e2d\uff0c\u95ed\u7740\u773c\u775b\uff0c\u80cc\u666f\u662f\u7011\u5e03\u6d41\u6c34\u58f0\u3002"} +{"id": "4003208", "video_name": "1bebd685-8ce9-5141-8573-2857075f10b5", "text": "translation: 2\u4e2a\u5728\u5929\u7a7a\u4e2d\u4e00\u8d77\u73a9\u684c\u6e38\u7684\u8d85\u7ea7\u82f1\u96c4\uff0c\u903c\u771f"} +{"id": "6004341", "video_name": "9a02a612-c153-5349-9632-a79d4e9d0e2c", "text": "\u4e00\u500b\u53ef\u611b\u7684\u5973\u5b69\uff0c\u5bec\u655e\u7684\u68d5\u8272\u773c\u775b\uff0c\u7ad9\u5728\u68ee\u6797\u88e1\uff0c\u7a7a\u6c23\u5439\u62c2\u5979\u9577\u9577\u7684\u9ed1"} +{"id": "2006940", "video_name": "cfcdf427-fd2e-59f1-b366-b9186acfe68d", "text": "\u4ed6\u5c3d\u53ef\u80fd\u5feb\u5730\u5199\u4e0b\u4e86\u3002"} +{"id": "4002245", "video_name": "01ad9bea-8c61-5bd6-b28e-d44e17e001a5", "text": "\u5728\u667a\u6167\u7684\u8bd5\u70bc\u4e2d\u505a\u51fa\u6b63\u786e\u7684\u9009\u62e9\u4ee5\u53d6\u5f97\u8fdb\u6b65\u3002"} +{"id": "6003669", "video_name": "92ea1563-b4ef-5872-847e-cba8bb04f0d3", "text": "\u5934\u5411\u4e00\u4fa7\u79fb\u52a8\uff0c\u5634\u5df4\u5fae\u7b11\u3002"} +{"id": "3004450", "video_name": "3f88413f-7e73-555a-b1a1-2158fe15f097", "text": "\u58eb\u5175\u6b7b\u4ea1\u81f3\u5c1120\u4eba\uff0c\u9ed1\u6697\u4e3b\u9898\u6e38\u620f\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "6002571", "video_name": "9adafbfd-20e2-5f56-8c84-93fbd701635f", "text": "\u5728\u4f53\u80b2\u573a\u73a9\u677f\u7403\u7684\u68d2\u7403\u52a8\u753b\u3002"} +{"id": "4003628", "video_name": "b948afd0-3a3e-5824-bf6b-2fb69cd5b1ba", "text": "\u5965\u6587\u00b7\u5a01\u5c14\u900a\u5728 Wes Anderson \u7684\u7535\u5f71\u4e2d\u626e\u6f14\u5a74\u513f Yoda \u5e76\u8bf4\u201c\u54c7\u201d\u3002"} +{"id": "2005992", "video_name": "737a1852-1b45-50e3-be8a-825923120269", "text": "\u952e\u76d8\uff0c\u5929\u7a7a\uff0c\u62a5\u7eb8\uff0c\u661f\u661f\u827a\u672f\u56e2\uff0c\u5361\u62c9\u65af\u00b7\u4f0a\u6b27\u52aa\u7279\u3002"} +{"id": "8003140", "video_name": "e55ede41-eba5-556d-b065-6bfcaedea86c", "text": "\u5929\u7a7a\u4e2d\u9a0e\u5728\u6cb3\u99ac\u4e0a\u7684\u7f8e\u9e97\u5973\u5b69\u3002"} +{"id": "3004161", "video_name": "c8e8fdf2-e556-508d-8b38-408829850375", "text": "\u6c99\u6f20\u4e2d\u7684\u6c99\uff0c\u9ad8\u6d77\u62d4\u4fef\u77b0\u3002\u4fe1\u606f\uff1a\u8054\u60f3\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005570", "video_name": "6684f4bf-44ae-503f-a35f-24687219ff04", "text": "\u7a7f\u7740\u4f20\u7edf\u57c3\u585e\u4fc4\u6bd4\u4e9a\u670d\u88c5\u7684\u7f8e\u4e3d\u9ed1\u4eba\u5973\u5b50\u6b65\u5165\u534e\u76db\u987f\u7279\u533a\u7684\u56fd\u4f1a\u3002"} +{"id": "8003067", "video_name": "3fed6845-82dd-520c-ad9d-1c4400c519c6", "text": "\u84dd\u5929\u767d\u4e91\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u98d8\u52a8\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "1003546", "video_name": "41697c84-573b-50f8-87a1-dca458e0a584", "text": "\u98de\u673a\u98de\u5728\u4e94\u5f69\u7f24\u7eb7\u7684\u4e91\u4e2d\u3002"} +{"id": "3006769", "video_name": "7cf5c7cc-d57c-507f-94a2-7cd7ca615f80", "text": "\u4e00\u7247\u5e7f\u9614\u7684\u6c99\u6f20\uff0c\u5728\u65e5\u843d\u65f6\u5206\uff0c\u9ad8\u8038\u7684\u6c99\u4e18\u6295\u4e0b\u957f\u957f\u7684\u9634\u5f71\u3002\u4e00\u4e2a\u62ab\u7740\u9c9c\u8273\u7ef8\u7f0e\u7684\u4eba"} +{"id": "4002690", "video_name": "995cf914-09b2-57ef-b0d9-0b568559108f", "text": "\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u4e2d\uff0c\u63cf\u7ed8\u4e00\u5ea7\u9ad8\u8038\u7684\u5c71\u5cf0\u5dcd\u7136\u5c79\u7acb\u7684\u751f\u52a8\u573a\u666f\u3002"} +{"id": "7004601", "video_name": "ad603aeb-a8e9-56ef-820b-a4b721e8e59a", "text": "\u5361\u62c9\u80af\u6765\u4e86\uff0c\u4ece\u8239\u4e0a\u770b\u3002"} +{"id": "2003136", "video_name": "85f6b14d-565a-50ad-91e3-1c0723ddd821", "text": "\u4e00\u53ea\u72d7\u5728\u516c\u56ed\u73a9\u800d\u7684\u771f\u5b9e\u89c6\u9891"} +{"id": "0003424", "video_name": "3d56d0be-861d-5a1a-96ab-e77fea0d86f0", "text": "1910\u5e74\u8863\u670d\u5e97\u5185\u90e8\u7684\u6c34\u5f69\u753b\u3002"} +{"id": "3003503", "video_name": "1fbb6240-9f09-572a-93d5-0b986cf6252c", "text": "\u7070\u5ea6\u30021930\u5e74\u4ee3\u4e00\u4e2a\u82f1\u56fd\u4eba\u671b\u5411\u8fdc\u65b9\u7684\u903c\u771f\u9759\u6001\u56fe\u50cf\u3002"} +{"id": "3004853", "video_name": "9afefd64-fb75-56ee-8d8f-ee56e2b3e238", "text": "Translation: \u4e00\u4e2a\u5b69\u5b50\u548c\u4e00\u68f5\u53e4\u8001\u7684\u6811\u8bf4\u8bdd\u3002"} +{"id": "1003759", "video_name": "454e5f8c-a71c-5e9d-ada7-20a6aa206159", "text": "\u5723\u8bde\u8001\u4eba\u5c55\u793a\u793c\u7269\uff0c\u5fae\u7b11\uff0c\u6234\u773c\u955c\u7684\u5723\u8bde\u8001\u4eba\u3002"} +{"id": "2006200", "video_name": "3f326885-59c9-57ce-b8e3-aab13617331e", "text": "\u5f88\u591a\u50f5\u5c38\u548c\u9ab7\u9acf\u3002"} +{"id": "6002199", "video_name": "d72c530f-b96f-57ef-8de4-fa17a278a1ac", "text": "\u57ce\u95e8\u6162\u6162\u6253\u5f00\uff0c\u5b9e\u9645\u4e0a\u79bb\u5730\u4e2d\u6d77\u5f88\u8fdc\u3002"} +{"id": "3004842", "video_name": "fbc46cf6-7d77-5b3e-b736-82df3fabae97", "text": "\u8c6a\u534e\u7684\u52b3\u65af\u83b1\u65af\u6c7d\u8f66\u5728\u6c99\u6f20\u516c\u8def\u4e0a\u4ee5\u53e4\u57c3\u53ca\u98ce\u683c\u884c\u9a76\u3002"} +{"id": "4003502", "video_name": "60664a7f-506f-5375-86b6-6a2f0d4c30db", "text": "\u8d85\u73b0\u5b9e\u7684\u7164\u70ad\u5de5\u4e1a\u3001\u71c3\u6599\u5316\u77f3\u6c61\u67d3\u548c\u70df\u96fe\uff0c\u620f\u5267\u6027\u7684\u7535\u5f71\u98ce\u683c\uff0c\u9634\u6697\u9ed1\u6697\u7684"} +{"id": "4002514", "video_name": "0bc60a49-e2d3-50bd-b6c5-9fae135b78cd", "text": "\u6728\u684c\u4e0a\u7684\u756a\u8304\uff0c\u6709\u4e00\u6ef4\u6c34\u6ef4\u5728\u756a\u8304\u4e0a\u3002"} +{"id": "6004053", "video_name": "247b2854-d552-5854-8ca4-771699c35bbf", "text": "\u7b2c\u4e00\u5f20\u7167\u7247\u663e\u793a\u4e86\u4e00\u4e2a\u4eba\u9047\u5230\u673a\u5668\u4eba\u7684\u65f6\u523b\u3002\u4e00\u4e2a\u4eba\u770b\u5230\u667a\u80fd\u673a\u5668\u4eba\u7ad9\u5728\u4ed6\u9762\u524d\uff0c\u8868\u8fbe\u4e86\u60ca\u559c\u548c\u559c\u60a6"} +{"id": "8002255", "video_name": "0b3859bb-3e35-562d-9c50-6bbce0550be1", "text": "\u521b\u5efa\u4e00\u4e2a\u4e50\u9ad8\u666f\u89c2\u6a21\u578b\u3002\u4e24\u4e2a\u4eba\u4ece\u80cc\u540e\u62ff\u7740\u624b\u63d0\u7bb1\uff0c\u51c6\u5907\u8fdb\u884c\u4e00\u6b21\u5927\u65c5\u884c\u3002"} +{"id": "8002495", "video_name": "7648e96f-cfd4-51e5-9a35-82f7cf2e1bfb", "text": "\u521b\u5efa\u4e00\u4e2a\u65f6\u5c1a\u7684\u5e74\u8f7b\u5973\u6027\uff0c\u5177\u6709\u5927\u800c\u8ff7\u4eba\u7684\u773c\u775b\uff0c\u6d53\u5bc6\u7684\u7709\u6bdb\uff0c\u5f3a\u70c8\u7684\u4e0b\u988c\u7ebf\uff0c\u9ad8\u9ad8\u7684\u98a7"} +{"id": "2003022", "video_name": "b8cfaa41-1f79-549e-a8da-caaacdab1560", "text": "\u4e00\u6761\u957f\u7740\u817f\u7684\u9c7c\u7ad9\u5728\u4e00\u7247\u70e7\u7126\u7684\u5e73\u539f\u4e0a\u3002"} +{"id": "0004580", "video_name": "0b75fe38-6ac0-554a-a79b-d30491597d3f", "text": "\u4ea8\u5229\u00b7\u5361\u7ef4\u5c14\u5728\u300a\u94a2\u94c1\u4fa0\u300b\u7535\u5f71\u573a\u666f\u4e2d\u7a7f\u7740\u8d85\u4eba\u670d\uff0c\u4ee5\u5149\u901f\u5728\u7ebd\u7ea6\u57ce\u98de\u884c\u3002"} +{"id": "0004385", "video_name": "0813ebd4-1acd-5b6d-b306-6822c0433d7e", "text": "\u5893\u5730\uff0c\u660f\u6697\u7684\u5468\u56f4\u73af\u5883\uff0c\u79cb\u5b63\uff0c\u6811\u53f6\u98d8\u843d\u3002 \n\nSource sentence: I am grateful for your help and support. \n\u611f\u8c22\u60a8\u7684"} +{"id": "2006798", "video_name": "bb33b0db-991d-5cdf-a7c9-d8c1c43fba6c", "text": "\u5728\u6218\u706b\u7eb7\u98de\u7684\u585e\u5c14\u7ef4\u4e9a\uff0c\u8fdc\u666f\u955c\u5934\u63a8\u8fdb\u5230\u4e00\u5bb6\u706f\u706b\u901a\u660e\u7684\u9152\u5427\uff0c\u91cc\u9762\u6709\u660e\u4eae\u7684\u9ec4\u8272"} +{"id": "8001729", "video_name": "6172ca46-c93e-51b7-a3c1-b50dbf3afcf6", "text": "\u8d22\u795e\u6492\u91d1\uff0c\u91d1\u5e01\u4ece\u5929\u800c\u964d\uff0cUHD\uff0c4K\u3002"} +{"id": "7004414", "video_name": "3529f24f-8c68-58db-b4a0-49fea84d39be", "text": "\u5934\u6234\u7f8e\u6d32\u8c79\u9762\u5177\u7684\u7537\u5b69\u5728\u5b66\u6821\u8d70\u5eca\u8df3\u821e\u3002"} +{"id": "2003923", "video_name": "f4907c5f-e219-5319-b8cc-b723f1faf062", "text": "\u7f8e\u4e3d\u7684\u68ee\u6797\u666f\u8272\uff0c\u6709\u5de8\u5927\u7684\u6811\u3002"} +{"id": "3003162", "video_name": "e53baa0c-3a1d-508e-8c70-90c36fcd361e", "text": "\u4e00\u4e2a\u72b9\u592a\u62c9\u6bd4\u5728\u76ae\u514b\u65af\u98ce\u683c\u89c6\u9891\u4e2d\u8bfb\u5510\u8bd7\u3002"} +{"id": "3005727", "video_name": "69c9d5d8-8d71-518e-ba91-5a19719b6f89", "text": "\u5c06\u56fe\u7247\u8d4b\u4e88\u751f\u52a8\u7684\u6548\u679c\u3002"} +{"id": "7002760", "video_name": "b00e3ac0-a51b-593e-b3ce-930ce2b913b9", "text": "\u5c55\u793a\u4e00\u6240\u8212\u9002\u7684\u623f\u5b50\uff0c\u5916\u9762\u7684\u592a\u9633\u6b63\u5728\u5347\u8d77\u30023D\u52a8\u753b\u5361\u901a\u98ce\u683c\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "0003142", "video_name": "37fe0544-5d89-512f-a670-a799c922fd5c", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u77e5\u66f4\u9e1f\u6325\u52a8\u7fc5\u8180\uff0c\u5236\u9020\u4e86\u6bc1\u706d\u6027\u7684\u98ce\u66b4\u3002"} +{"id": "3005457", "video_name": "8626defe-5909-5b9b-9879-0ac34f2e6a93", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5411\u65e5\u8475\uff08\u5361\u901a\u98ce\u683c\uff09\u5728\u5411\u65e5\u8475\u7530\u91cc\u8df3\u821e\u3002\u80cc\u666f\u6709\u4e30\u5bcc\u7684\u989c\u8272\u548c\u4e00\u9053\u5f69"} +{"id": "8003436", "video_name": "ff2c71bc-4ae0-52b8-b97b-2219b105ff16", "text": "\u8428\u54c8\u62c9\u4e4b\u773c\u4f4d\u4e8e\u57c3\u585e\u4fc4\u6bd4\u4e9a\uff0c\u5468\u56f4\u6709\u5927\u7247\u7684\u6c34\u57df\u548c\u4e1b\u6797\u3002"} +{"id": "0005432", "video_name": "1abfc774-b3a6-5b0b-9e8e-97a354f8cdf1", "text": "\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u8fde\u8863\u88d9\u7684\u5c0f\u5973\u5b69\u5750\u5728\u68ee\u6797\u91cc\u7684\u6811\u6869\u4e0a\u3002\u5979\u62b1\u7740\u4e00\u53ea\u53d7\u4f24\u7684\u5c0f\u9e1f"} +{"id": "0005794", "video_name": "215ba29f-114b-5cf6-837c-c2a7c0b59924", "text": "\u521b\u4f5c\u4e00\u4e2a\u8f7b\u76ae\u80a4\u91d1\u53d1\u5973\u4eba\uff0c\u624b\u6301\u8d2d\u7269\u888b\uff0c\u5750\u5728\u8d2d\u7269\u8f66\u91cc\u7684\u6f2b\u753b\u3002"} +{"id": "2006874", "video_name": "ef8dc837-ab35-575d-8820-6c8ea1bf27d2", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u96e8\u7a97\u65c1\u7761\u89c9\u3002"} +{"id": "8001243", "video_name": "ea351b07-86de-5564-ae94-58c4a5cdd003", "text": "\u5efa\u7b51\u5de5\u4eba\u8fdb\u884c\u65bd\u5de5\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "4004346", "video_name": "a23becb6-226b-52f8-9175-61034e38196a", "text": "\u70df\u96fe\u7b3c\u7f69\u7684\u68ee\u6797\uff0c\u7070\u8272\u3001\u53cd\u4e4c\u6258\u90a6\u3001\u591a\u98ce\uff0c\u5206\u8fa8\u7387\u4e3a1920x1080\u3002"} +{"id": "8001763", "video_name": "1d2a49ec-ab59-549a-9fe1-67da3720a6a4", "text": "\u51b0\u7403\u8fd0\u52a8\u5458\u5411\u76f8\u673a\u5954\u8dd1\uff0c\u76f4\u5230\u7279\u5199\u955c\u5934\u3002"} +{"id": "7004249", "video_name": "d3a5d933-254f-564b-bd7c-321180477be5", "text": "Source sentence: Noho Hank\u6765\u81eaHBO\u7535\u89c6\u5267\u300aBarry\u300b\uff0c\u4fef\u77b0\u6d1b\u6749\u77f6\u3002"} +{"id": "1004831", "video_name": "593b751d-f345-5238-b670-5ec821f7ba88", "text": "\u5728\u68ee\u6797\u4e2d\u521b\u9020\u4e00\u53ea\u821e\u72ee\u3002"} +{"id": "2003121", "video_name": "244a4134-4ca4-59d3-8044-c54c6156e155", "text": "\u8001\u65e7\u7684\u4fc4\u7f57\u65af\u4e34\u754c\u5893\u5730\uff0c\u6709\u4e24\u4e2a\u5e7d\u7075\u5728\u4e00\u8d77\u8df3\u821e\uff0c\u8fd9\u662f\u4e00\u90e8\u9ed1\u767d\u76841950\u5e74\u7535\u5f71\u3002"} +{"id": "8001110", "video_name": "0c05fefd-bf9d-58a3-bf56-350481ee2895", "text": "\u4e3b\u795e\u6fc0\u6602\u7684\u68b5\u821e\uff0c\u8d85\u771f\u5b9e\u3001\u9ad8\u80fd\u6e32\u67d3\uff0c\u9ad8\u6e05\uff0c\u8d85\u667a\u80fd\u6e32\u67d3\uff0c\u6781\u81f4\u6e32\u67d3\uff0c\u7535\u5f71"} +{"id": "2005902", "video_name": "46396b01-bb8c-5732-be74-c31f53a8b64e", "text": "\u82ad\u6bd4\u5750\u5728C6\u96ea\u5f17\u5170\u79d1\u5c14\u7ef4\u7279\u91cc\u9762\uff0cRAW\u89c6\u9891\uff0c4K\uff0c\u6770\u4f5c\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u975e\u5e38\u590d\u6742\uff08\u903c\u771f\uff1a1."} +{"id": "0004033", "video_name": "01d6e5ee-a485-527b-9ae3-1a7f3e91d6be", "text": "\u4e00\u4e2a\u9b3c\u9b42\u80cc\u7740\u91c7\u77ff\u8bbe\u5907\u5728\u70df\u96fe\u4e2d\uff0c\u6709\u8bb8\u591a\u8367\u5149\u8272\u3002"} +{"id": "1006157", "video_name": "70bb704a-170a-5d54-8cd2-26af20ad0fc0", "text": "\u4e00\u53ea\u8774\u8776\u5728\u82b1\u4e1b\u4e2d\u98de\u821e\uff0c\u82b1\u7684\u7279\u5199\u955c\u5934\u3002 \n\nSource sentence: The sun sets over the horizon, painting the sky with shades of orange and pink.\n"} +{"id": "6004396", "video_name": "60040000-306f-5ded-a8b2-2bd2c4697024", "text": "\u5236\u4f5c\u4e00\u4e2a5\u79d2\u949f\u7684\u89c6\u9891\u7247\u6bb5\uff0c\u5c55\u793a5\u8258\u8d5b\u535a\u670b\u514b\u6d77\u76d7\u8239\u4e00\u8d77\u5de1\u822a\u7684\u753b\u9762\u3002"} +{"id": "3003978", "video_name": "0f47bcfb-0503-5c3a-89f5-c96acbc25aa4", "text": "\u5728\u52a0\u5c14\u5404\u7b54\u5e02\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u56ed\uff0c\u91cc\u9762\u6709\u98de\u821e\u7684\u8774\u8776\u3002"} +{"id": "3003343", "video_name": "781f469e-d05d-51b8-a562-9b86f7090994", "text": "1950\u5e74\u4ee3\u8d85\u7ea78\u6beb\u7c73\u7684\u8ff7\u5e7b\u5f69\u8272\u753b\u9762\uff0c\u5c55\u73b0\u4e86\u592a\u7a7a\u4e2d\u5f02\u4e16\u754c\u822c\u7684\u65e5\u843d\uff0c\u5730\u5e73\u7ebf\u4e0a\u6709\u4e00\u6392\u6811\u6728\u3002"} +{"id": "3004576", "video_name": "829c0057-07cc-51f0-bf5e-df132da59945", "text": "\u6f02\u6d6e\u7740\u7011\u5e03\u7684\u5c9b\u5c7f\uff0c\u795e\u79d8\u768416:9\u753b\u9762\uff0c\u7f8e\u4e3d\u7684\u8272\u5f69\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7f8e\u4e3d\u3001\u5947\u5f02\u3001\u8d85"} +{"id": "0003463", "video_name": "3df5ef9e-ecd7-5c4d-8b2f-8843f4669ffb", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\u629a\u6478\u7740\u4e00\u53ea\u7ae0\u9c7c\u3002"} +{"id": "0003030", "video_name": "35dc2c7e-85d8-5bae-9d33-4b028b381d20", "text": "\u53e4\u57c3\u53ca\u91d1\u5b57\u5854\u7684\u5efa\u9020\u3001\u65e5\u843d\u7167\u660e\u3001\u955c\u5934\u95ea\u5149\u3001\u7535\u5f71\u5f0f\u6444\u50cf\u673a\u8fd0\u52a8\u3001\u4e91\u5f69\u5954\u8dd1\u3002"} +{"id": "7003222", "video_name": "c74c402f-9b20-5c7c-acc5-b1ed194d5907", "text": "\u5357\u5370\u5ea6\u5973\u5b50\uff0c19\u5c81\uff0c\u7d27\u8eab\u767d\u886c\u886b\uff0c\u8d85\u8be6\u7ec6\uff0c\u7535\u5f71\u822c\u7684\u9759\u6001\u955c\u5934\uff0c\u7531Mario Testino\u62cd\u6444\uff0c\u520a\u767b\u4e8e"} +{"id": "2003667", "video_name": "1f47e017-c8d6-5ce0-a1d6-505a088d1b7c", "text": "\u5728\u706b\u8f66\u5185\u62c9\u52a8\u5217\u8f66\u94fe\uff0c\u9ad8\u6e05\u56fe\u50cf\uff0c\u50cf\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "0004869", "video_name": "109dba2c-954d-5245-8f5e-5d9ec4fd4531", "text": "\u8272\u5f69\u7e6a\u672c\u4e2d\u5e74\u9ed1\u4eba\u5973\u6027\u5c16\u53eb\u7684\u7279\u5beb\u8fd1\u93e1\uff0c\u7531\u4f0a\u85e4\u6f64\u4e8c\u63cf\u7e6a\uff0c\u7d30\u7dfb\u7684\u63d2"} +{"id": "8001213", "video_name": "9e970dfb-6aaf-5849-a6d4-60ccccdc8356", "text": "\u5c55\u793a\u53e4\u9c81\u5409\uff0c\u70b9\u5934\u8d5e\u8bb8\u739b\u96c5\uff0c\u773c\u4e2d\u6d41\u9732\u51fa\u9a84\u50b2\u4e4b\u60c5\uff0c\u770b\u7740\u5979\u79bb\u5f00\uff0c\u77e5\u9053\u5979\u5728"} +{"id": "3004305", "video_name": "28210a49-8ca2-537c-aba0-22e14821d18d", "text": "\u4ed9\u5973\u7ad9\u5728\u4ed9\u5973\u68ee\u6797\u91cc\u53d1\u5149\uff0c\u7075\u82f9\u679c\u6811\u7f8e\u5f97\u4ee4\u4eba\u60ca\u8273\u3002"} +{"id": "0004142", "video_name": "03fa6bcb-afa1-5a41-baf8-907f0dbb41c8", "text": "\u6c34\u65cf\u9986\u91cc\u6709\u91d1\u9c7c\u548c\u783e\u77f3\u5730\u9762\u3002\u7559\u8a00\uff1aADEMILY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003451", "video_name": "88a6760e-2296-5f82-8623-d46854a47e3a", "text": "\u624b\u673a\u7684\u7535\u5b50\u8bbe\u5907\u6709\u6545\u969c\u3002"} +{"id": "4002953", "video_name": "53d4a8b0-8f09-5d84-a195-ba37faa75d94", "text": "\u6709\u4eba\u5403\u8db3\u7403\u7f51\u7403\u4e09\u660e\u6cbb\u7684\u89c6\u9891\u3002"} +{"id": "0006906", "video_name": "35270bd5-f528-520f-a73a-6d7f9072bb97", "text": "\u6d77\u6ee9\u4e3b\u9898\u7684\u8868\u60c5\u7b26\u53f7\u5728\u7eff\u8272\u6a21\u7cca\u7684\u9713\u8679\u706f\u4e2d\u98de\u821e\u3002"} +{"id": "3003021", "video_name": "469e83c6-d3fa-59c1-b4c0-5d36e547b662", "text": "\u4e00\u4f4d\u4e2d\u4e16\u7eaa\u7684\u808c\u8089\u9a91\u58eb\u3002"} +{"id": "3003784", "video_name": "973bdc4d-ea3e-5971-a20b-b8a1dbba576b", "text": "\u6211\u6ce8\u89c6\u7740\u6211\u7684\u7075\u9b42\u4e2d\u5fc3\uff0c\u5f53\u4f60\u8bd5\u56fe\u627e\u5230\u8ba9\u81ea\u5df1\u8d70\u51fa\u56f0\u5883\u7684\u9053\u8def\u65f6\u3002"} +{"id": "3003687", "video_name": "3ea7cc6b-e003-5253-895f-070a28352112", "text": "\u5965\u65af\u672c\u7684\u300a\u963f\u57fa\u62c9\u300b\u98ce\u683c\u4e2d\u7684\u300a\u7ec8\u7ed3\u8005\u300b\u573a\u666f\u3002"} +{"id": "2003529", "video_name": "f0518420-df52-5913-a845-0ad4f3cff098", "text": "\u706b\u7130\u57ce\u5821\uff0c\u4e2d\u7b49\u901f\u5ea6\uff0c\u903c\u771f\u8d28\u91cf\u3002"} +{"id": "6004487", "video_name": "fde35043-7d83-57bf-b3e0-2ab396e81c78", "text": "3D \u5f69\u8272\u6c34\u679c\u4ece\u7c89\u8272\u5929\u7a7a\u843d\u4e0b\u3002"} +{"id": "0004089", "video_name": "02ff1181-d494-5dd1-9bb5-df831f8b4081", "text": "1950\u5e74\u4ee3\u7684\u8d858\u6beb\u7c73\u8001\u7535\u5f71\uff0c\u662f\u4e00\u90e8\u7ecf\u5178\u7684\u9ed1\u767d\u5438\u8840\u9b3c\u7535\u5f71\u3002"} +{"id": "6002602", "video_name": "1ecc5773-dd2a-5758-9ccf-e972fd87477f", "text": "\u836f\u4e38\u6389\u5728\u6025\u8bca\u5ba4\u5730\u4e0a\uff0c\u6700\u7ec8\u843d\u5728\u5b57\u6bcdM\u4e0a\u3002"} +{"id": "1004394", "video_name": "51422353-2c56-529f-85f0-b256d084485a", "text": "\u63d0\u4f9b\u6b63\u5728\u8fdb\u884c\u7684\u5efa\u7b51\u5de5\u4f5c\u7684\u65b9\u5411\u3002"} +{"id": "8002959", "video_name": "81db1268-c5a0-5d91-9d63-ca61c0a1b93f", "text": "\u8d85\u4eba\u4ee5\u52a8\u6f2b\u98ce\u683c\u559d\u7740\u51b0\u996e\u6599\u7f50\u3002"} +{"id": "2004845", "video_name": "8d8c6852-e063-525f-8d88-00b6697db8a9", "text": "\u4e00\u4e2a10\u5c81\u7684\u5370\u5ea6\u7537\u5b69\u5728\u4ed6\u7956\u4f20\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "7002313", "video_name": "a71be111-bddb-5e95-a825-2364f470f30c", "text": "\u90a6\u8fea\u6551\u63f4\u7535\u89c6\u8282\u76ee\u4e2d\u7684\u6551\u751f\u5458\u628a\u51b2\u6d6a\u677f\u5361\u5728\u4e86\u6c99\u5821\u91cc\u3002"} +{"id": "1004131", "video_name": "4c7c76b5-6dc9-5fb4-9f28-664c2b510183", "text": "\u5531\u7740\u8d64\u58c1\u82b1\u8c23\uff0c\u5728\u95ea\u8000\u7684\u96e8\u4e2d\u821e\u52a8\uff0cPLA\u4e1d\uff0c\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "1006747", "video_name": "7b8a7521-aa66-56ae-abcc-94c23a90e966", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u5728\u7ebd\u7ea6\u8857\u5934\u7f13\u6162\u5730\u8d70\u4e86\u4e94\u79d2\u949f\uff0c\u8eab\u4e0a\u6cbe\u6ee1\u4e86\u7ea2\u8272\u7684\u96e8\u6c34\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16"} +{"id": "2006989", "video_name": "a02e5aa7-400a-582f-a221-3a59254a5b3c", "text": "\u901f\u5ea6\u8d5b\u8f66\u624b\u9a7e\u9a76\u7740\u4e00\u8f86 RX7 \u8d5b\u8f66\uff0cTrixi \u5750\u5728\u526f\u9a7e\u9a76\u5ea7\u4f4d\u4e0a\u3002"} +{"id": "2006677", "video_name": "e23078fb-6966-5e51-8dde-3f6c2545794c", "text": "\u5e7f\u5c9b\u8f70\u70b8\u76845\u79d2\u89c6\u9891\u3002"} +{"id": "3004735", "video_name": "aa5579b3-9b60-558e-8d70-f48556f233d6", "text": "\u6c99\u6f20\u4e2d\u5fc3\u7684\u7f8e\u4e3d\u7eff\u6d32\uff0c\u6709\u7011\u5e03\u548c\u4ee4\u4eba\u60ca\u53f9\u7684\u690d\u7269\uff0c\u8fd8\u6709\u4ece\u6c99\u6f20\u4e2d\u5347\u817e\u800c\u8d77\u7684"} +{"id": "3006607", "video_name": "99c244df-0b4b-57a5-a6bd-133d80d7b9cb", "text": "1980\u5e74\u4ee3\u7684\u82f1\u56fd\u6d41\u884c\u97f3\u4e50\u7ec4\u5408\u97f3\u4e50\u89c6\u9891"} +{"id": "1003729", "video_name": "44dc34df-3c65-5e81-b7a6-e95dc4fdb358", "text": "\u4e24\u4e2a\u7537\u670b\u53cb\u5750\u5728\u79cb\u5343\u4e0a\u3002"} +{"id": "8003068", "video_name": "be2203ca-0f75-5948-9aa3-2479a16117ec", "text": "\u5f88\u591a\u9e21\u86cb\u5728\u5730\u4e0b\u6d1e\u7a74\u91cc\uff0c\u7531\u67e5\u5c14\u65af\u00b7E\u00b7\u4f69\u9c81\u5409\u5c3c\u3001\u5f17\u96f7\u5fb7\u00b7\u6851\u5fb7\u5df4\u514b"} +{"id": "4003916", "video_name": "06b7dc05-ef39-5061-80c9-3701ac624472", "text": "Source sentence: \u5728\u4e2a\u4eba\u89c6\u89d2\u4e0b\uff0c\u624b\u6301\u767d\u8272\u80cc\u666f\u7684iPhone 13 Pro\uff0c\u6309\u4e0b\u4e00\u6b21Home\u952e\u3002"} +{"id": "1005776", "video_name": "6a43427a-c372-56b7-918a-1ce32f9568b1", "text": "\u8d5b\u8f66\u5728\u62c9\u529b\u8d5b\u8d5b\u9053\u4e0a\u9ad8\u901f\u5954\u8dd1\uff0c\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "7003444", "video_name": "487c6b63-c970-59d3-a5a4-1379d8808626", "text": "\u8d2b\u56f0\u3001\u513f\u7ae5\u3001\u65e0\u8f9c\u7684\u4eba\u30014K\u3001\u771f\u5b9e\u751f\u6d3b\u3002"} +{"id": "2007963", "video_name": "86870b2f-efbc-565e-b3f6-5a6b5aba92e1", "text": "\u8036\u7a23\u900f\u8fc7\u82cd\u7a79\u770b\u7740\u5730\u7403\u4e0a\u7684\u5c45\u6c11\u3002"} +{"id": "7003531", "video_name": "1df5430e-23e6-5e0b-9b3d-98ca3a90c3c5", "text": "\u4e00\u540d\u4e2d\u56fd\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u8c6a\u534e\u793c\u670d\u8d70\u5728\u821e\u53f0\u4e0a\u3002"} +{"id": "2003541", "video_name": "f7ea9e06-6665-58c0-a1eb-3992aad95cc1", "text": "\u865a\u5e7b\u5f15\u64ce\u3002\u4e00\u540d\u672a\u6765\u7684\u7537\u5b50\u7ad9\u5728\u6444\u50cf\u673a\u524d\u5927\u558a\u3002\u4ed6\u7684\u8bdd\u5728\u5145\u6ee1\u5148\u8fdb\u6280\u672f\u548c\u672a\u6765\u666f\u89c2\u7684\u57ce\u5e02\u4e2d"} +{"id": "1006456", "video_name": "76260454-8edd-59a0-9b41-676eb9a74ffb", "text": "\u4e2d\u56fd\u4e91\u5357\u8bb8\u591a\u4eba\u5728\u84dd\u8272\u516c\u5171\u6c7d\u8f66\u4e0a\u3002"} +{"id": "7002256", "video_name": "222f6bd7-0f08-5ad5-849d-6639cce5d221", "text": "\u63cf\u8ff0\u7518\u5c3c\u6c99\u6240\u5c45\u4f4f\u7684\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u3002"} +{"id": "2003244", "video_name": "5b7df92c-efb5-5a96-8921-4fbe08c3847c", "text": "\u4e00\u4e2a\u5409\u535c\u529b\u52a8\u753b\uff0c\u516c\u56ed\u91cc\u7684\u6d3e\u5bf9\uff0c\u767d\u5929\u7684\u821e\u4f1a\uff0c\u6709\u6811\u3001\u9633\u5149\u548cDJ\u3002"} +{"id": "3005953", "video_name": "8da536ca-3ef9-5bdb-8f2e-73b97206e7fa", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u5728\u7f8e\u4e3d\u7684\u666f\u8272\u548c\u706f\u5149\u5305\u56f4\u4e0b\u88ab\u4e00\u4e2a\u7537\u5b69\u4eb2\u543b\u3002"} +{"id": "8001122", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "\u60f3\u8c61\u72ee\u5b50\u4ece\u9ad8\u5904\u773a\u671b\u4ed6\u7684\u738b\u56fd\uff0c\u4ed6\u7684\u76ee\u5149\u575a\u5b9a\u800c\u777f\u667a\u3002"} +{"id": "0006654", "video_name": "307207b9-d162-50bf-90d2-a4175632adf3", "text": "\u4e00\u4f4d\u8eab\u6750\u59e3\u597d\u7684\u7f8e\u5973\u7a7f\u7740\u745c\u4f3d\u670d\u8df3\u821e\u3002"} +{"id": "4004698", "video_name": "3882ca30-a441-50e4-85d0-0fc03ba123da", "text": "\u592a\u9633\u6c89\u5165\u5730\u5e73\u7ebf\u4e0b\uff0c\u6295\u4e0b\u957f\u957f\u7684\u9634\u5f71\u5728\u5206\u9694\u74e6\u6d1b\u5229\u4e9a\u738b\u56fd\u548c\u5fb7\u62c9\u79d1\u5c14\u738b\u56fd\u7684\u5c71\u8c37\u4e4b\u95f4\u3002"} +{"id": "0006623", "video_name": "2fb8d80d-6782-5659-aef5-6e5c6324f70d", "text": "\u795e\u5947\u82b1\u5349\u7684\u65b0\u95fb\u5728\u793e\u533a\u4e2d\u4f20\u5f00\u4e86\uff0c\u6bcf\u4e2a\u4eba\u90fd\u8feb\u4e0d\u53ca\u5f85\u5730\u7b49\u5f85\u5b83\u4eec\u5f00\u82b1\u7684\u90a3\u4e00\u5929\u3002"} +{"id": "4002635", "video_name": "c60ac9b8-e860-5c6e-9ef3-69d407032cf7", "text": "\u4e00\u4e2a\u4eba\u6709\u5f88\u591a\u94b1\u5e76\u4e14\u5f88\u5e78\u798f\u3002"} +{"id": "7002202", "video_name": "2d02a371-ea45-5ec4-91aa-70fbb30909dd", "text": "\u516c\u56ed\u91cc\u6709\u4e94\u4e2a\u5e74\u8f7b\u4eba\u3002\u5176\u4e2d\u4e00\u4e2a\u662f\u70ed\u60c5\u7684\u97f3\u4e50\u5bb6\uff0c\u53e6\u4e00\u4e2a\u662f\u7406\u60f3\u4e3b\u4e49\u7684\u753b\u5bb6\uff0c\u518d\u4e00\u4e2a\u662f\u5fe7\u90c1\u7684\u8bd7\u4eba\uff0c"} +{"id": "1005873", "video_name": "6c144e93-0021-53bf-b704-34226c5c53a6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u517d\u533b\u6b63\u5728\u7167\u987e\u517d\u533b\u9662\u91cc\u7684\u4e00\u53ea\u5c0f\u9a6c\u3002"} +{"id": "0003775", "video_name": "4328ca23-4670-599d-8160-5d85fd29b8fb", "text": "\u603b\u7ed3\u6545\u4e8b\uff0c\u8bb2\u8ff0\u7334\u5b50\u548c\u5927\u8c61\u4e0d\u4ec5\u627e\u5230\u4e86\u91d1\u5e01\uff0c\u800c\u4e14\u53d1\u73b0\u4e86\u53cb\u8c0a\u7684\u771f\u6b63\u5b9d\u85cf\u3002\u5f3a\u8c03\u56e2\u961f\u5408\u4f5c"} +{"id": "2005180", "video_name": "69bbe1e1-b5b7-5f0e-a6ee-1f1cef68599c", "text": "\u5965\u5229\u5f17\u6709\u516b\u53ea\u53c8\u957f\u53c8\u626d\u66f2\u7684\u624b\u81c2\uff0c\u6bcf\u53ea\u90fd\u6709\u81ea\u5df1\u7684\u610f\u8bc6\uff0c\u4ed6\u559c\u6b22\u63a2\u7d22\u5145\u6ee1\u6d3b\u529b\u7684"} +{"id": "4004296", "video_name": "3af98e1a-c347-5829-bad3-eb06d3fd9908", "text": "\u70ed\u5e26\u84b8\u6c7d\u670b\u514b\u9a6c\u5954\u8dd1\u7684\u5f71\u5b50"} +{"id": "0005749", "video_name": "208a495d-e305-5e91-bd5e-b802d5a3006f", "text": "\u7b2c\u5341\u4efb\u533b\u751fDavid Tennant\u5728\u6dcb\u6d74\u65f6\u5403\u6c64\u3002"} +{"id": "1003046", "video_name": "3800d9b7-5d9e-5004-89b1-8447cfdd3a4c", "text": "\u73bb\u7483\u788e\u7247\u8fdb\u5165\u4eba\u7c7b\u5fc3\u810f\u7684\u6162\u52a8\u753b\u3002"} +{"id": "2007093", "video_name": "e8e7d38d-8571-5689-b121-79da51db7a22", "text": "Source sentence: \u827e\u7279\u7f57\u6f2b\u753b\u98ce\u683c\u7684\u827a\u672f\u4f5c\u54c1\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u8d85\u7ea7\u732b\u5954\u8dd1\uff0c\u6f2b\u753b\u4e66\u5c01\u9762\uff0c\u5bf9\u79f0\uff0c"} +{"id": "6004480", "video_name": "e9a2d1c6-58e2-56cc-a423-151427c43dd9", "text": "\u4ed6\u662f\u4e2a\u7537\u5b69\uff0c\u665a\u4e0a\u5750\u5728\u7a97\u8fb9\u542c\u7740lofi\u97f3\u4e50\uff0c\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "0004324", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "\u54c8\u58eb\u5947\u72d7\u5728\u8349\u539f\u4e0a\u8ffd\u9010\u5954\u8dd1\uff0c\u7a7a\u4e2d\u4fef\u77b0\u3002"} +{"id": "2003781", "video_name": "52f95fe2-58cb-5ef1-a1dd-cf50bc326abd", "text": "\u4e00\u4e2a\u6234\u7740\u62a4\u76ee\u955c\uff0c\u62e5\u6709\u5065\u7f8e\u8eab\u6750\uff0c\u5728\u52a8\u753b\u98ce\u683c\u7684\u591c\u665a\u4e2d\u6495\u88c2\u6574\u5957\u897f\u88c5\u7684\u7537\u4eba\u3002"} +{"id": "3003660", "video_name": "bd3810b1-e7e2-50eb-99e3-d4b2613e3951", "text": "\u5f53\u4e00\u4e2a\u5fae\u5c0f\u7684\u8001\u9f20\u610f\u5916\u5730\u4e0e\u5f3a\u5927\u7684\u72ee\u5b50\u76f8\u9047\u65f6\uff0c\u63cf\u8ff0\u90a3\u4e00\u77ac\u95f4\u3002"} +{"id": "8002682", "video_name": "64a047c4-9a83-5135-a2b1-d26a7e32e54d", "text": "\u5e74\u8f7b\u5973\u5b50\u6765\u5230\u68ee\u6797\u4e2d\u7684\u7a7a\u5730\u3002\u7a7a\u5730\u4e2d\u592e\u662f\u4e00\u5ea7\u5c0f\u5c4b\u3002\u5e74\u8f7b\u5973\u5b50\u8d70\u5411\u5c0f\u5c4b\uff0c\u6572\u54cd\u4e86\u95e8\u3002\u6ca1\u6709\u56de"} +{"id": "2005528", "video_name": "9df8b365-28f0-5a05-b6fc-eaf68ce5d8fe", "text": "\u6751\u6c11\u4eec\u8bf4\u7b11\u8df3\u821e\u3002\u8868\u73b0\u98ce\u683c\u3002"} +{"id": "3004858", "video_name": "a0460eed-f68d-51fd-8032-48b6f4a66c2f", "text": "\u4e1b\u6797\u91cc\u7684\u5927\u8c61\u6b63\u9762\u5bf9\u9762\u3002"} +{"id": "8003458", "video_name": "3d56c505-fc8f-598e-a888-763611edbdd3", "text": "Source sentence: I am excited to try the new restaurant that just opened downtown.\n\nTranslation: \u6211\u5f88\u5174\u594b\u53bb\u5c1d\u8bd5\u521a\u5728\u5e02\u4e2d\u5fc3\u5f00\u4e1a\u7684\u65b0\u9910\u5385\u3002"} +{"id": "2006367", "video_name": "605b0b4a-53c5-5658-9f8e-3ef621c202cd", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u6027\u611f\u7684\u5973\u5b69\u5728\u5439\u7b1b\u5b50\u3002\n\nSource sentence: I love eating spicy food. \n\u6211\u559c\u6b22\u5403\u8fa3\u7684\u98df\u7269\u3002"} +{"id": "8002506", "video_name": "7d8fc09e-01a7-5865-9c0b-95c5896c08a5", "text": "\u7a81\u7136\u4e00\u53ea\u72ee\u5b50\u6251\u5411\u5979\u7684\u5b69\u5b50\u3002\u5979\u4f1a\u600e\u4e48\u505a\u5462\uff1f"} +{"id": "0005767", "video_name": "20f4ef58-405e-5dca-9aff-f065759bbfd4", "text": "\u8718\u86db\u4fa0\u5750\u5728\u4e00\u5ea7\u5854\u4e0a\u51c6\u5907\u8df3\u4e0b\uff0c\u7535\u5f71\u5316\u7684\u9ad8\u5bf9\u6bd4\u5ea6\u548c\u9971\u548c\u5ea6\uff0c50mm\u955c\u5934\u3002"} +{"id": "4003847", "video_name": "63bdfa4d-023b-568d-bd84-d3d34fc47684", "text": "\u8fdc\u53e4\u4eba\u7c7b\u7fa4\u4f53Denisovans\u7684\u5965\u79d8\u3002"} +{"id": "1003325", "video_name": "3d31ee1d-7414-5707-b0e3-90cc881e6663", "text": "\u5728\u96ea\u6797\u4e2d\u8fdb\u884c\u6cbb\u6108\u63a2\u7d22\u3002"} +{"id": "3003927", "video_name": "542a38ec-c736-5396-98f2-c84427f3090d", "text": "\u4e00\u53cc\u9010\u6e10\u9eef\u6de1\u7684\u7d2b\u8272\u773c\u775b\uff0c\u80cc\u540e\u662f\u6ee1\u5e03\u661f\u661f\u7684\u5916\u592a\u7a7a\uff0c\u8fd9\u53cc\u773c\u775b\u8f7b\u8f7b\u5730\u7741\u5f00"} +{"id": "2003171", "video_name": "ae1c8a0d-ed78-5f20-8fce-8d0b00b5ae6b", "text": "\u6c99\u6f20\u72c2\u6b22\u6d3e\u5bf9\uff0c\u4e3b\u9898\uff1a\u5c18\u57c32.0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006274", "video_name": "72dad4cf-845c-54d3-8457-7fba856906c7", "text": "\u4e00\u9897\u83e0\u841d\u5728\u6f2b\u753b\u98ce\u683c\u4e0b\u7ed9\u82f9\u679c\u4e0a\u6570\u5b66\u8bfe\u3002"} +{"id": "8001496", "video_name": "2173098d-fc7d-5ba4-b6f0-b34057854e8b", "text": "\u6c14\u7403\u5c06\u72d7\u62c9\u5230\u7a7a\u4e2d\uff0c\u72d7\u5fae\u7b11\u7740\u3002"} +{"id": "7002678", "video_name": "9b22eb22-0e14-5f80-8079-9c233ba00dc4", "text": "\u5c55\u793a\u4e00\u6bb5\u52a8\u753b\u5e8f\u5217\uff0c\u901a\u8fc7\u9762\u90e8\u8868\u60c5\u7684\u53d8\u5316\uff0c\u5c55\u73b0\u4ed6\u4eec\u7684\u53cb\u8c0a\u9010\u6e10\u53d1\u5c55\u4e3a\u7231\u60c5\uff0c\u4ece\u5b09\u620f\u8c03\u4f83\u5230\u5171\u4eab"} +{"id": "0006224", "video_name": "28b48887-9594-5475-a435-c6b72efd79b1", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u65e0\u4eba\u673a\u955c\u5934\u62cd\u6444\u4e86\u57c3\u83f2\u5c14\u94c1\u5854\uff0c\u5e76\u8fdb\u884c\u4e864k\u76843D\u6e32\u67d3\u3002"} +{"id": "7003584", "video_name": "451b3840-9c3b-5988-9490-429c8e5cd327", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u7537\u4eba\u5728\u9ed1\u591c\u4e2d\u548c\u6751\u6c11\u4ea4\u8c08\uff0c\u80cc\u666f\u8272\u5f69\u4e30\u5bcc\u660e\u4eae\u3002"} +{"id": "5001824", "video_name": "73c50145-8456-5d25-bf64-60d9670413e3", "text": "\u5236\u4f5c\u4e00\u4e2a\u56fe\u8868\uff0c\u5305\u62ec15\u4e2a\u4e0d\u540c\u7684\u95ee\u9898\uff0c\u8ba9\u4f60\u5728\u4e24\u4e2a\u9009\u9879\u4e2d\u9009\u62e9\u4e00\u4e2a\u6e38\u620f\u3002\u5728\u7b2c\u4e00\u5217\u4e2d\u6dfb\u52a0\u9009\u98791\uff0c\u5728\u7b2c\u4e8c\u5217\u4e2d\u6dfb\u52a0\u9009\u98792\u3002"} +{"id": "0006705", "video_name": "316dec8c-fb85-5ac8-a0e4-b39c8fd5f0f1", "text": "\u971c\u8986\u76d6\u4e86\u4e00\u4e2a\u5c0f\u9547\uff0c\u8986\u76d6\u4e86\u971c\u82b1\u3002"} +{"id": "1005760", "video_name": "69f7ad8f-2ebf-5209-87a0-536ec7016d88", "text": "\u8001\u5f0f\u7684\u6570\u5b57\u624b\u673a\u54cd\u94c3\u58f0\u914d\u6709\u4e00\u4e9b\u9713\u8679\u706f\u548c\u5361\u901a\u96f7\u58f0\u3002"} +{"id": "2005514", "video_name": "bd987db8-7d9f-5db7-b2dc-76d54eb01bc2", "text": "\u7ec6\u80de\u4f53\u547c\u5438\u5e76\u5f62\u6210\u751f\u547d\u7684\u666e\u904d\u80fd\u91cf\u3002"} +{"id": "2003747", "video_name": "843679cf-23c9-501a-94aa-7d92a65781be", "text": "\u9053\u8def\u5de5\u4eba\u6b63\u5728\u4f7f\u7528\u51ff\u5ca9\u673a\u4fee\u8def\u3002"} +{"id": "1005216", "video_name": "600ea9ee-ba75-5782-829d-a2bf7c741a12", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u4e3a\u8001\u5987\u4eba\u63d0\u6c34\u6876\uff0c\u80cc\u666f\u662f\u6d41\u52a8\u7684\u6cb3\u6d41\uff0c\u5c55\u793a\u4e86\u4ed6\u4eec\u4e92\u52a8\u7684\u7b80\u5355\u548c\u7eaf\u6d01\u3002"} +{"id": "2006880", "video_name": "ea69a2e1-f804-522a-9ada-ca612aba13dd", "text": "\u623f\u5b50\u5916\u9762\u53d8\u6210\u4e86\u4e00\u4e2a\u4e07\u5723\u8282\u4ed9\u5883\u3002\u9519\u7efc\u590d\u6742\u7684\u88c5\u9970\u70b9\u7f00\u7740\u666f\u89c2\uff0c\u4ece\u96d5\u523b\u7cbe\u7f8e\u7684\u5357"} +{"id": "0005965", "video_name": "24207e05-e476-57d7-8a15-f5fde0680855", "text": "\u6c99\u6f20\u5730\u533a\u6709\u5f88\u591a\u52a8\u7269\u3002"} +{"id": "4004562", "video_name": "da994c7e-f3e0-5c2f-9651-e30beb01be7f", "text": "\u6559\u5b66\u8bbe\u8ba1\u5e08\u5728\u684c\u9762\u7535\u8111\u4e0a\u5e03\u7f6e\u6545\u4e8b\u677f\u3002"} +{"id": "7004195", "video_name": "5fa8ab4e-4c34-5780-bd75-18b7386ca4d2", "text": "\u7389\u7c73\u84b2\u516c\u82f1\u4eba\u5f62\u602a\u7269\u6234\u7740\u5934\u5dfe\uff0c\u5bf9\u79f0\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u6570\u5b57\u827a\u672f\uff0c\u6e05\u6670\u805a\u7126\uff0c\u7425\u73c0\u8272"} +{"id": "8001677", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "\u7a7f\u7740\u8863\u670d\u7684\u5973\u5b69\u5728\u53a8\u623f\u6d17\u7897\u3002"} +{"id": "2003810", "video_name": "d3d9f1ec-3fdb-572d-9569-27f46da631ec", "text": "\u63a2\u9669\u961f\u6b63\u5728\u63a5\u8fd1\u4e00\u4e2a\u5de8\u5927\u3001\u5947\u602a\u3001\u653e\u5c04\u6027\u7684\u9ad8\u5929\u6587\u4eea\uff0c\u5728\u4e00\u4e2a\u5947\u602a\u7684\u8ff7\u5e7b\u5916\u661f\u4e16\u754c\u3002"} +{"id": "4003017", "video_name": "a997b31f-fd6a-548d-a2bf-40a56e2ba092", "text": "\u8d85\u903c\u771f\u7684\u9ad8\u5206\u8fa8\u7387\u6c34\u9762\uff0c\u5e26\u6709\u98ce\u6548\u679c\u7684\u65e5\u843d\u3002"} +{"id": "4003526", "video_name": "7069a0e1-b2c8-5d66-a4c3-edde90c9a040", "text": "\u4eba\u5148\u662f\u5f00\u5fc3\uff0c\u7136\u540e\u53d8\u96be\u8fc7\uff0c\u6700\u540e\u751f\u6c14\u5730\u770b\u5411\u955c\u5934\u3002"} +{"id": "8003993", "video_name": "68a3ccd5-1449-505b-a717-a043ba557883", "text": "\u5154\u5b50\u5728\u6708\u4eae\u4e0a\u5927\u7b11\u903c\u771f\u3002"} +{"id": "1004421", "video_name": "51c07823-b97d-5dde-a4c1-d9efc95269a9", "text": "\u7535\u95ea\u96f7\u9e23\uff0c\u753b\u9762\u80cc\u666f\u4e2d\u4e00\u53ea\u9e70\u5411\u5c4f\u5e55\u98de\u6765\u3002"} +{"id": "3005298", "video_name": "79881b1e-5fb6-5a0b-8dd2-702beadff212", "text": "\u4eba\u5750\u7740\u5403\u6c49\u5821\u3002"} +{"id": "2004481", "video_name": "8fb6d6fc-f33b-565f-a165-45b05486199f", "text": "\u5feb\u8fdb\u4ece\u77f3\u5668\u65f6\u4ee3\u5230\u73b0\u4ee3\uff0c\u5efa\u9020\u623f\u5c4b\uff0c\u4ee5Frimak\u5e16\u5b50\u7ed3\u675f\u3002"} +{"id": "6003768", "video_name": "69a5d665-a76e-536a-b4ea-554c0e71a102", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u57ce\u5e02\u98ce\u666f\uff0c\u81ea\u7136\u91cd\u65b0\u5360\u9886\u4e86\u5efa\u7b51\u7269\uff0c\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\u4e2d\u957f\u7740\u5de8\u5927\u7684\u6811\u6728\u3002"} +{"id": "0004151", "video_name": "042c196b-a3e6-579a-a384-75e3a19a488f", "text": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u5149\uff0c\u5c71\u8109\u548c\u6d77\u5cb8\u3002"} +{"id": "3006885", "video_name": "ad50a856-8961-527b-bf38-0f75ddf99461", "text": "\u72fc\u8ffd\u5154\uff0c\u6708\u5149\u4e0b\u7684\u68ee\u6797\u72e9\u730e\u3002"} +{"id": "8002195", "video_name": "26a242da-8595-5715-bc81-6d4477417466", "text": "\u5236\u4f5c\u4e00\u4e2a\u77ed\u89c6\u9891\uff0c\u9488\u5bf9\u88ab\u7981\u6b62\u7684UX\u3001UI\u3001\u5168\u5c4f\u3001\u7535\u5b50\u5546\u52a1\u4e1a\u52a1\uff0c\u5e76\u4e0e\u7535\u5b50\u4ea7\u54c1\u76f8\u5173\u8054\u3002"} +{"id": "1006485", "video_name": "76a5b8b0-6806-55c8-b034-3912902e644e", "text": "\u4e09\u540d\u5931\u8e2a\u7684\u5f92\u6b65\u65c5\u884c\u8005\u5728\u5468\u672b\u8fd4\u5bb6\u5931\u8d25\u540e\u88ab\u53d1\u73b0\u6b7b\u4ea1\uff0c\u8b66\u65b9\u79f0\u3002\u5468\u516d\u665a\u4e0a9\u70b9\u540e\u4e0d\u4e45\uff0c"} +{"id": "1005282", "video_name": "6127340e-c4ec-5a83-8505-ca6c1f1019ab", "text": "\u7406\u53d1\u5e97\u7684\u5de5\u4eba\u548c\u987e\u5ba2\u3002"} +{"id": "2005500", "video_name": "d519f366-a393-5020-95a4-e634ff48f989", "text": "\u5f53\u58eb\u5175\u4eec\u62ac\u5934\u770b\u65f6\uff0c\u4ed6\u4eec\u770b\u5230\u4e00\u53ea\u4e4c\u9e26\u6162\u6162\u98de\u8d70\uff0c\u5e26\u7740\u9879\u94fe\u3002"} +{"id": "2003103", "video_name": "da11b095-d354-554a-bf2f-e00dad0b7b9d", "text": "\u6211\u4eec\u6765\u6bd4\u8d5b\u600e\u4e48\u6837\uff1f"} +{"id": "1003562", "video_name": "41b1cd4f-6d90-55c7-9309-6e1ee1ab295f", "text": "\u73b0\u5b9e\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u624b\u6301\u4e00\u68397\u82f1\u5bf8\u7684\u6728\u68cd\uff0c\u7b11\u7740\u3002"} +{"id": "2003823", "video_name": "9add14b9-7f6e-52fc-89b7-50ab8b69472e", "text": "\u52a8\u753b\u6751\u548c\u5f88\u591a\u4eba\u53bb\u96c6\u5e02\u3002"} +{"id": "1005535", "video_name": "65e445c7-d018-5851-a464-3ec9850e312b", "text": "\u8fea\u58eb\u5c3c\u4e50\u56ed\u91cc\u7684\u5b69\u5b50\u4eec\u90fd\u5728\u73a9\u4ed6\u4eec\u7684iPad\u3002"} +{"id": "3004425", "video_name": "8a2089d8-764e-5a80-bced-72c879b9072f", "text": "\u624b\u5728\u5199\u5b57\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "6002078", "video_name": "5f065b1c-f501-5a9a-99f8-5e8ce91f9843", "text": "\u4ee5\u4e00\u4e2a\u5c55\u73b0\u5b09\u620f\u7684\u5927\u8c61\u89d2\u8272\u7684\u52a8\u753b\u6216\u5f71\u7247\u573a\u666f\u5f00\u59cb\u3002"} +{"id": "0003409", "video_name": "3d2734bc-1028-56fc-863d-5d6d3a239d0c", "text": "\u5c55\u793a\u624b\u673a\u5e97\u62e5\u6709\u4e09\u661f\u3001OPPO\u3001Realme\u3001Vivo\u3001\u5c0f\u7c73\u3001iPhone\u7b49\u54c1\u724c\u7684\u5e7f\u6cdb\u624b\u673a\u9009\u62e9\u3002"} +{"id": "3006645", "video_name": "f1de8405-d0c4-56d2-9825-eda184078b20", "text": "\u4e0b\u96e8\u7684\u795e\u5947\u68ee\u6797\uff0c\u98ce\u683c\u4eff\u4f5b\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u8ba9\u6c34\u6ef4\u52a8\u8d77\u6765\uff0c\u5728\u98ce\u4e2d\u52a8\u753b\u4e00\u4e9b\u6811\u53f6"} +{"id": "8001746", "video_name": "ad68f6e3-c138-51ab-8512-2096ee10cf0e", "text": "\u6e38\u620f\u300a\u6700\u7ec8\u5e7b\u60f3\u300b\u4e2d\u7684\u7f8e\u4e3d\u5973\u5b69"} +{"id": "4004922", "video_name": "b6806c83-d128-5f26-8978-4e7c6226d02a", "text": "\u5b5f\u4e70\u7684\u5370\u5ea6\u5b63\u98ce\u4ee5\u52a8\u6f2b\u56fe\u5f62\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6003294", "video_name": "249fc530-4190-52eb-9531-59c95b414dae", "text": "\u9ed1\u767d\u5c71\u4e0a\u6709\u98de\u7fd4\u7684\u9e1f\u3002"} +{"id": "1004541", "video_name": "545876b8-9880-5373-869f-fff50cd026ec", "text": "\u4e3b\u89d2\u6253\u5305\u884c\u674e\u5e76\u7814\u7a76\u65c5\u884c\u76ee\u7684\u5730\u3002"} +{"id": "1003771", "video_name": "457489c4-4e37-5adf-9a98-86e7b058cd78", "text": "\u7f8e\u4e3d\u7684\u590f\u5a01\u5937\u65e5\u843d\uff0c\u6d77\u8c5a\u5728\u6d77\u4e2d\u8dc3\u51fa\u6c34\u9762\u3002"} +{"id": "7002900", "video_name": "b53d5dad-3692-5134-8d34-8ddf01395f63", "text": "\u8fd9\u6b3e\u57fa\u4e8eGTA 6\u548cCS:GO\u7684\u591a\u4ebaFPS\u5c04\u51fb\u6e38\u620f\u7684\u9884\u544a\u7247\u5e94\u8be5\u53ea\u670915\u79d2\u957f\u3002"} +{"id": "2007385", "video_name": "d6f171df-167a-56b7-8e38-12c9af24d3fe", "text": "\u91d1\u53d1\u80e1\u5b50\u7537\u5b50\u5728\u70c8\u65e5\u4e0b\u884c\u8d70\u3002"} +{"id": "0006288", "video_name": "2a0b0053-3388-525a-b990-07896a11442e", "text": "\u5f62\u8c61\u5730\u63cf\u7ed8\u51fa\u4e00\u4e2a\u7531\u76f8\u4e92\u5173\u8054\u7684\u7b97\u6cd5\u7ec4\u6210\u7684\u751f\u6001\u7cfb\u7edf\uff0c\u4ee5\u4f20\u64ad\u865a\u5047\u4fe1\u606f\u4e3a\u751f\u3002"} +{"id": "2004870", "video_name": "60a4dd7a-b08b-50bf-8aae-4be223a35ab9", "text": "\u5965\u975e\u5229\u4e9a\uff0c\u7a7f\u7740\u6a59\u8272\u88d9\u5b50\u5728\u7ebd\u7ea6\u8857\u5934\u96e8\u4e2d\u8df3\u821e\uff0c\u7279\u5199\u811a\u3002 \n\nSource sentence: The sun is shining and the birds"} +{"id": "7003706", "video_name": "5117cc5c-68cc-514e-83a3-98a5e107cfd5", "text": "\u7f57\u6469\u795e\u738b\u56de\u5230\u53e4\u57ce\u963f\u7ea6\u63d0\u4e9a\uff0c\u57ce\u5e02\u88ab\u52a8\u6001\u7167\u660e\u88c5\u7f6e\u88c5\u70b9\u5f97\u751f\u673a\u52c3\u52c3\u3002"} +{"id": "6004500", "video_name": "ab2292f4-fa9b-5397-99ec-8e546c0cbd04", "text": "\u5df4\u798f\u6885\u59ae\u7279\u5669\u68a6\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u706f\u5149"} +{"id": "1003440", "video_name": "3fb54190-4aad-5b27-ac75-7a8ff0921b54", "text": "\u6c34\u679c\u3001\u8349\u8393\u3001\u6a31\u6843\u3001\u8461\u8404\u3001\u6843\u5b50\u3001CGI\u30011024K"} +{"id": "2005489", "video_name": "84607bd9-ed13-5855-872d-d3084cd19ac6", "text": "\u9ed1\u8272\u897f\u88c5\u7684\u6b66\u88c5\u4eba\u5458\u7ad9\u5728\u524d\u666f\uff0c\u624b\u6301\u4e00\u628a\u6c99\u6f20\u4e4b\u9e70\u624b\u67aa\uff0c\u50f5\u786c\u5730\u5448\u7bad\u72b6\u3002"} +{"id": "5001714", "video_name": "f706cccd-ca80-551f-a94a-679ffb6e6f9e", "text": "\u4eba\u4eec\u5728\u716e\u9e21\u8089\uff0c\u4fef\u89c6\u89d2\u5ea6\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u5bab\u5d0e\u9a8f\uff0c\u624b\u7ed8\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "3004139", "video_name": "e29b9a56-7499-5169-bb5e-31b9706d2b7c", "text": "\"Powerball Lotto\" \u7684\u54c1\u724c\u6765\u81ea The Lott\u3002"} +{"id": "4004181", "video_name": "10a848da-4bfd-562f-8b14-dee02151ea2e", "text": "\u56fe\u50cf\u5c06\u89c2\u4f17\u6d78\u5165\u5176\u590d\u6742\u6027\u548c\u6c1b\u56f4\u4e2d\u3002"} +{"id": "8003387", "video_name": "6a76e956-d8bf-5a1f-a128-dbba39757e0d", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u5176\u4e2d\u5c55\u793a\u4e00\u4e2a\u4eba\u7684\u5f62\u8c61\uff0c\u4ece\u4ed6\u7684\u632f\u52a8\u5f00\u59cb\u9010\u6e10\u4e0a\u5347\uff0c\u968f\u7740\u89c6\u9891\u52a8\u6001\u7684\u8fdb\u884c\uff0c\u70ed\u91cf\u5728\u5468\u56f4\u65cb"} +{"id": "4003618", "video_name": "f5b8fa33-7a89-5754-ad51-bfc116dda49e", "text": "\u4e00\u90e8\u5173\u4e8e\u88ab\u9b3c\u7f20\u8eab\u7684\u4e3b\u64ad\u7684\u6050\u6016\u7535\u5f71\uff0c\u62cd\u6444\u4e8e1970\u5e74\u4ee3\u3002"} +{"id": "3005237", "video_name": "6e1b6a76-c979-58ec-9f57-fff112490104", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u76f4\u89c2\u8bf4\u660e\u4eba\u5de5\u667a\u80fd\u5982\u4f55\u5904\u7406\u5927\u91cf\u6570\u636e\u3001\u8bc6\u522b\u6a21\u5f0f\u5e76\u8fdb\u884c\u9884\u6d4b\u6216\u51b3\u7b56\u3002\u4ee5\u7b80\u5355\u6613\u61c2\u3001\u5f15\u4eba\u5165"} +{"id": "0005219", "video_name": "16d1da26-0fad-559b-af8e-1d21f7ef21fd", "text": "\u4e00\u4e2a\u9ed1\u5ba2\u6b63\u5728\u4e00\u7247\u672b\u4e163D\u4e16\u754c\u4e2d\u884c\u8d70\u3002"} +{"id": "0005610", "video_name": "1df5a85d-4769-524b-a26d-8c2c9eafe550", "text": "\u4e00\u53ea\u7ea2\u9f99\u7684\u773c\u775b\u5728\u9633\u5149\u7684\u7167\u8000\u4e0b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "6004979", "video_name": "df9e0a27-6805-58ff-b8d1-dd62d8a10485", "text": "\u4e00\u4e2a\u5305\u542b\u4fc4\u7f57\u65af\u6587\u5316\u3001\u4eba\u6c11\u3001\u5730\u65b9\u548c4K\u753b\u8d28\u7684\u89c6\u9891\u3002"} +{"id": "4004561", "video_name": "e3787056-0614-5409-9194-60b866661a32", "text": "\u4e00\u4e2a\u591c\u665a\u7684\u4e1b\u6797\uff0c\u5728\u540e\u65b9\u6709\u4e00\u8f86\u65e7\u5409\u666e\u8f66\u548c\u4e00\u4e2a\u5e06\u5e03\u767d\u8272\u5e10\u7bf7\uff0c\u524d\u9762\u70b9\u7740\u4e00\u5806\u5c0f\u7bdd\u706b\u3002"} +{"id": "8002164", "video_name": "e4e06828-3ff4-59ba-99b2-ef523b6ad96f", "text": "70\u5e74\u4ee3\u8d85\u73b0\u5b9e\u7075\u5f02\u7535\u89c6\u8282\u76ee\u3002\u5c3c\u514b\u00b7\u5f17\u7f57\u65af\u7279\u6f5c\u5165\u4e00\u4e2a\u5de8\u5927\u7684\u9e70\u5634\u8c46\u6ce5\u6d74\u7f38\u3002"} +{"id": "0006066", "video_name": "2602adf1-132d-558d-b6e3-848c3d0e66a9", "text": "\u624b\u91cc\u62ff\u7740\u91d1\u8272\u7684\u94a5\u5319\uff0c\u5c0f\u718a\u6cf0\u7c73\u548c\u5c0f\u5973\u5b69\u8389\u8389\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u51fa\u623f\u95f4\uff0c\u7a7f"} +{"id": "2003501", "video_name": "ccaacad8-e4aa-5a07-98ae-87a13872c4b6", "text": "\u7206\u7c73\u82b1\u5e26\u7740\u7fc5\u8180\u57288K\u57ce\u5e02\u4e0a\u7a7a\u98de\u7fd4\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0cMotion 2\uff0cSeed 4\uff0c\u80cc\u666f\u4e2d"} +{"id": "8002484", "video_name": "4254349b-0916-5883-9f70-3a232a4531aa", "text": "\u6811\u6728\u5728\u6447\u6643\uff0c\u5c71\u5cb3\u5728\u9707\u52a8\u3002"} +{"id": "6003019", "video_name": "410ca997-f4b7-53b9-ac1a-55be1cbf47c9", "text": "\u5c55\u793a\u4e00\u4e2a\u77f3\u5668\u65f6\u4ee3\u7684\u7537\u4eba\u6b63\u5728\u5438\u98df\u5927\u9ebb\u3002"} +{"id": "6004891", "video_name": "e74151a2-a4e2-5133-9f50-0bc1a68c5be7", "text": "\u5e74\u8f7b\u7684\u91d1\u53d1\u5973\u5b69\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u670d\u88c5\u5728\u5b87\u5b99\u98de\u8239\u4e2d\u3002"} +{"id": "0003618", "video_name": "40908e43-cddc-56df-86aa-b40b386758e0", "text": "\u5973\u4eba\u8d70\u8def\u5e76\u5fae\u7b11\u3002"} +{"id": "0004932", "video_name": "11b4f4da-1ab2-5a46-810b-d1b983b00e9c", "text": "\u7531\u6811\u6728\u548c\u53f6\u5b50\u5236\u6210\u3002\u4fe1\u606f\uff1aUMIKA DHRUV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8002674", "video_name": "fcb8fa8d-ba2d-55b8-b59d-e6736b0b6d37", "text": "\u7f57\u7eb3\u5c14\u591a\u548c\u6885\u897f\u5728\u5370\u5ea6\u5a5a\u793c\u4e0a\u8df3\u821e\u3002"} +{"id": "0003772", "video_name": "431265f3-b14f-5abe-9415-cb2e3933ff0d", "text": "\u4e2d\u56fd\u9e21\u8fdb\u6b65\u961f\u7528\u7b77\u5b50\u5728\u5f53\u5730\u4e2d\u9910\u9986\u53d6\u8d70\u4e86\u9e21\u8089\u3002"} +{"id": "1005384", "video_name": "63003080-90e1-550c-a6a8-0888d6cffdae", "text": "\u4e24\u4e2a\u604b\u4eba\u5728\u4e00\u4e2a\u53ef\u6015\u7684\u68ee\u6797\u91cc\u4ece\u4e00\u4e2a\u5de8\u4eba\u9003\u8dd1\u3002"} +{"id": "8003359", "video_name": "13747398-fa6b-5636-864f-ed9776ddf3a3", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u3001\u903c\u771f\u30018k\u3001\u8bf4\u8bdd\u7684\u6c34\u679c"} +{"id": "6004134", "video_name": "2f357f6a-3138-5d77-8ba6-5766c2086656", "text": "\u8bd7\u6b4c\u7684 SAR \u70b8\u5f39\u57fa\u4e8e\u871c\u8702\u3002"} +{"id": "4003946", "video_name": "44f34d45-4e6b-550a-b93b-7f4c5bfa1d72", "text": "\u6050\u9f99\u5728\u706b\u5c71\u4e2d\u8bd5\u56fe\u559d\u6c34"} +{"id": "8001141", "video_name": "9dd0de9a-e760-50f0-bb88-6817a25928bc", "text": "\u54e5\u7279\u5f0f\u7684\u6c34\u5f69\u753b\uff0c\u63cf\u7ed8\u4e00\u4e2a\u5e7d\u7075\u5728\u5893\u5730\u4e2d\u5f98\u5f8a\u3002"} +{"id": "1006005", "video_name": "6e61d352-2268-5d73-ae6e-1418fe90995f", "text": "\u53e4\u8463\u3001\u8eab\u7a7f\u9ed1\u8272\u793c\u670d\u7684\u7537\u4eba\uff0c\u5750\u5728\u53e4\u8463\u8c6a\u534e\u8f7f\u8f66\u91cc\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "3005377", "video_name": "138a5b53-b38d-5e96-91d0-b42b3f6051f6", "text": "\u540a\u6247\u3001\u4e00\u53ea\u540a\u6247\u3001zido\u3001maxar\u3001\u98ce\u6247\u3001\u98ce\u6247hals\u3001\u6570\u5b57\u827a\u672fh 9 6 0\u3001\u4ea7\u54c1\u7167\u7247\u3001\u5168\u666f"} +{"id": "7003174", "video_name": "7bed2be7-f50b-5750-8878-fbceca59eeff", "text": "\u6709\u4e00\u5929\uff0c\u6211\u4ece\u6211\u5bb6\u7684\u7a97\u6237\u5f80\u5916\u770b\uff0c\u770b\u5230\u793e\u533a\u7684\u8def\u4e0a\u6709\u4eba\u53d8\u6210\u4e86\u50f5\u5c38\u3002\u4ed6\u4eec\u5f00\u59cb\u75af\u72c2\u5730\u653b\u51fb\u793e\u533a\u7684"} +{"id": "1004321", "video_name": "4fcf0626-50c3-548e-a73a-27141a5e3af2", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u5929\u7a7a\u98de\u7fd4\uff0c\u4eba\u4eec\u6ce8\u89c6\u7740\u5929\u4f7f\u7684\u573a\u666f\u3002"} +{"id": "0004806", "video_name": "0f73c135-17b0-59b6-8f45-fbc9704a932f", "text": "\u4e24\u4f4d\u50e7\u4fa3\u5f92\u6b65\u7a7f\u8d8a\u559c\u9a6c\u62c9\u96c5\u5c71\uff0c\u9876\u7740\u72c2\u98ce\u524d\u884c\u3002"} +{"id": "4002486", "video_name": "5e38aa64-1c55-5c87-b758-fcf64ccc7d13", "text": "\u4eba\u8f6c\u8eab\u5411\u540e\u770b\u3002"} +{"id": "8002492", "video_name": "e74805ff-f24c-5782-8709-1fa0b5fc813e", "text": "\u4e00\u500b\u65b0\u7684\u9be8\u9b5a\u4e16\u754c\uff0c\u5b83\u5011\u5728\u592a\u7a7a\u4e2d\u6e38\u6cf3\uff0c\u4ee5\u8d85\u9ad8\u6e05\u6670\u5ea6\u5448\u73fe\u3002"} +{"id": "8003502", "video_name": "0148185e-08b2-58e7-a41f-56dc06b17ba1", "text": "\u8001\u5fe0\u5b9e\u5728\u591c\u7a7a\u4e2d\u55b7\u53d1\u3002"} +{"id": "1006086", "video_name": "6f910c2c-692d-504a-a2a1-754eaf0506f0", "text": "\u53ef\u7231\u7684\u5973\u58eb\u8bf4\u8c22\u8c22\u4f60\u89c2\u770b\u3002"} +{"id": "4002800", "video_name": "8842496d-8582-583d-9c28-189a7362bc13", "text": "\u5728\u6f58\u591a\u62c9\u7684\u84dd\u8272\u548c\u7d2b\u8272\u53d1\u5149\u68ee\u6797\uff08\u591c\u665a\uff09\uff0c\u9a91\u7740\u4f0a\u514b\u5170\u98de\u7fd4\u7684\u7eb3\u7ef4\u4eba"} +{"id": "8002416", "video_name": "a9ea3f72-0800-5254-86bf-e24b28427a58", "text": "\u7537\u5b50\u5728\u52a0\u62ff\u5927\u5582\u9971\u4e86\u4e00\u53ea\u9a7c\u9e7f\uff0c\u7167\u7247\u903c\u771f\uff0c8K\u3002"} +{"id": "8002690", "video_name": "e2704daa-226d-51b8-aa1c-f48c9a249921", "text": "\u5e74\u4ec514\u5c81\u5373\u88ab\u52a0\u5195\u7684\u57c3\u62c9\u52a0\u5df4\u5362\u65af\u7687\u5e1d\u5728\u5a31\u4e50\u65b9\u9762\u504f\u7231\u5947\u5f02\u7684\u4e1c\u897f\u3002\u4e00\u6b21\u5962\u534e"} +{"id": "0003359", "video_name": "3c355cd0-972d-5e91-ba60-d04c2308bb54", "text": "\u4e00\u90e8\u590d\u53e4\u7535\u8bdd\uff0c\u5c55\u793a\u4e86\u65cb\u8f6c\u62e8\u53f7\u3001\u7ef3\u5b50\u548c\u8001\u5f0f\u901a\u4fe1\u8bbe\u5907\u7684\u65f6\u5c1a\u8bbe\u8ba1\u3002"} +{"id": "4004005", "video_name": "ce86ae68-7480-5d01-83bc-425543dcda7b", "text": "\u4e00\u4f4d\u5e26\u6709\u91d1\u8272\u548c\u9ed1\u8272\u7ec6\u8282\u7684\u5973\u6027\uff0c\u4e00\u4e2a\u5973\u5b69\uff0c\u72ec\u81ea\u4e00\u4eba\uff0c\u7ea2\u8272\u773c\u775b\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u957f\u53d1\uff0c\u770b\u7740\u89c2"} +{"id": "2006292", "video_name": "07b20dcf-05c3-5a84-8622-05b45ddbf9b8", "text": "\u4e3a\u5343\u5c0b\u8bbe\u8ba1\u4e00\u4e2a\u5feb\u901f\u573a\u666f\uff0c\u5979\u7a7f\u8d8a\u70ed\u6c34\u9505\u7089\u5ba4\u4e0a\u65b9\u7684\u7ba1\u9053\u3002"} +{"id": "7002171", "video_name": "0eb1e0e5-3b68-56b7-a195-67ecacdd8376", "text": "\u5728\u4e1b\u6797\u4e2d\u9760\u8fd1\u5927\u8c61\u7684\u6811\u4e0a\u6709\u4e00\u53ea\u9e66\u9e49\u3002"} +{"id": "3006636", "video_name": "b833cb45-23f7-5550-a6e3-c034e08dc7ad", "text": "\u62cd\u4e00\u5f20\u5e26\u6709\u5b57\u6bcdH\u7684YouTube\u4e2a\u4eba\u8d44\u6599\u7167\u7247\uff0c\u5e76\u4f7f\u7528\u5251\u548c\u6545\u4e8b\u5143\u7d20\u6765\u5236\u4f5c\u4e2a\u4eba\u8d44\u6599\u7167\u7247\u3002"} +{"id": "7004074", "video_name": "430aabf6-1005-5eea-8690-7c40cc1ee48f", "text": "\u4e00\u540d\u7537\u5b50\u8eba\u5728\u8349\u5730\u4e0a\u7761\u89c9\uff0c\u7741\u5f00\u4e86\u773c\u775b\u3002"} +{"id": "2004441", "video_name": "14b198fd-7c84-5b87-a51f-e3ba01293bf5", "text": "\u4e00\u53ea\u72d7\uff0c3D\u89c6\u9891\u548c4K\u8d28\u91cf\u3002"} +{"id": "5001419", "video_name": "e7ec64ba-17f3-5c55-91d9-8c8676994102", "text": "\u521b\u9020\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u6807\u5fd7\u6027\u5f62\u8c61\u7684\u8d85\u4eba\uff0c\u8d70\u5728\u753b\u9762\u5de6\u4fa7\u3002\u8d85\u4eba\u7a7f\u7740\u7ecf\u5178\u7684\u670d\u88c5\uff0c\u8eab\u6750\u5f3a\u5065\uff0c\u9762"} +{"id": "0005622", "video_name": "1e3f5407-728e-5dd5-bcd0-cb427e88d144", "text": "\u4e00\u6b21\u706b\u7bad\u53d1\u5c04\uff0c\u4e00\u4e2a\u866b\u6d1e\uff0c\u4e00\u8258\u98de\u8239\uff0c\u56db\u4e2a\u4e0d\u540c\u7684\u661f\u7403\uff0c\u73b0\u5b9e\u4e3b\u4e49\u79d1\u5e7b\u7535\u5f71\uff0c\u964d\u4f4e\u4eae\u5ea6\uff0c"} +{"id": "0005647", "video_name": "1ea09507-0634-58e5-b11d-356895c9c9fe", "text": "\u624b\u673a\u5c4f\u5e55\u4e0a\u7684\u4e00\u4e2a\u4eba\uff0c\u5728\u5c4f\u5e55\u4e2d\u6709\u7535\u7ade\u6807\u5fd7\u7684\u4eba\u70b9\u51fb\u4e86\u5b83\u3002"} +{"id": "2006929", "video_name": "7fed0a55-366a-5f07-bb14-efc7df64e12f", "text": "\u53ef\u7231\u7684\u732b\u54aa\u548c\u5154\u5b50\u5728\u4e00\u4e2a\u53ef\u7231\u7684\u82b1\u56ed\u91cc\u8ffd\u9010\u5f7c\u6b64\u3002"} +{"id": "1003662", "video_name": "436b627e-96b2-5e71-85f0-a07fc93d6617", "text": "\u592a\u9633\u5149\u7ebf\u4ece\u7070\u8272\u7684\u4e91\u5c42\u540e\u9762\u51fa\u73b0\uff0c\u5e26\u7740\u9634\u68ee\u7684\u98ce\u683c\u3002"} +{"id": "4002102", "video_name": "2be73b10-dbcf-5a15-9106-5530b17fecd5", "text": "\u4e00\u9897\u667a\u6167\u7684\u8fea\u65af\u79d1\u7403\u5728\u8bfb\u4e66\uff0c\u8272\u5f69\u7f24\u7eb7"} +{"id": "5001500", "video_name": "bc826fd4-dd01-5a65-81ad-30e6e7b18171", "text": "\u6811\u53f6\u968f\u7740\u98ce\u52a8\uff0c\u8f7b\u8f7b\u5730\u4ece\u6811\u4e0a\u98d8\u843d\uff0c\u5730\u4e0a\u7684\u6811\u53f6\u4e5f\u8f7b\u8f7b\u5730\u6447\u52a8\u7740\u300216:9\u8fd0\u52a8"} +{"id": "4004231", "video_name": "871b1060-9e8f-5675-8d13-02d86cc9cb2e", "text": "\u4e00\u8f86\u8d85\u7ea7\u8dd1\u8f66\u505c\u5728\u68ee\u6797\u4e2d\u7684\u516c\u8def\u4e0a\uff0c\u8f66\u95e8\u88ab\u6253\u5f00\u3002"} +{"id": "2005170", "video_name": "873d48ae-b086-5525-a238-ab5293c2e1d3", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u5bcc\u6709\u7684\u4e9a\u6d32\u5e74\u8f7b\u7537\u5b50\u65e9\u4e0a\u8d77\u5e8a\u7684\u573a\u666f\u3002"} +{"id": "4003237", "video_name": "fc9e57d0-1895-5082-937d-eb9f70dd1696", "text": "\u4e00\u5bf9\u5e74\u8f7b\u7684\u9ed1\u53d1\u592b\u5987\u548c\u4e00\u4e2a\u5b69\u5b50\u5728\u673a\u573a\u7b49\u5f85\u98de\u673a\uff0c\u50cf\u76ae\u514b\u65af\u4e00\u6837\uff0c\u6e29\u6696\u7684\u706f\u5149\uff0c\u4e00\u4e9b"} +{"id": "0004759", "video_name": "0ed00583-c073-5969-ba9e-689d9ea17e83", "text": "\u5973\u5b69\u5750\u5728\u526f\u9a7e\u9a76\u5ea7\u4f4d\u4e0a\u900f\u8fc7\u8f66\u7a97\u5411\u5916\u770b\u3002"} +{"id": "5001543", "video_name": "b57ad3ee-599f-5c4f-a180-c1209032c997", "text": "\u5370\u5ea6\u6559\u795e\u7947\u62c9\u739b\u795e\u6b63\u5728\u65bd\u4e88\u795d\u798f\u3002"} +{"id": "6003950", "video_name": "8aa27ec9-b842-59e2-a6c8-44ce4d0ad939", "text": "\u4e00\u90e8\u957f\u8fbe24fps\u7684\u89c6\u9891\uff0c\u62cd\u6444\u4e8e1950\u5e74\u4ee3\u7684\u7ebd\u7ea6\uff0c\u4f7f\u7528\u8d858\u76f8\u673a\u62cd\u6444\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u6709\u5f88\u591a\u4ed9\u5973\u7684\u5b87"} +{"id": "2006228", "video_name": "6fc0a61e-20ce-547a-96bd-e4eef2a27626", "text": "\u665a\u4e0a\u8f66\u706f\u7167\u8000\u7740\u5173\u95ed\u768451\u533a\u5927\u95e8\u3002"} +{"id": "1005787", "video_name": "6a85198a-3416-5196-8b19-708818a726a9", "text": "\u63cf\u8ff0\u5b69\u5b50\u4eec\u6b22\u5feb\u5730\u8dfa\u811a\u3002"} +{"id": "7004641", "video_name": "a071066f-b815-5f79-b40f-020919511253", "text": "\u4e00\u4e2a\u6709\u7167\u660e\u73bb\u7483\u7a97\u7684\u897f\u73ed\u7259\u5bab\u6bbf\n\nSource sentence: The cat sat on the mat. \n\u90a3\u53ea\u732b\u5750\u5728\u57ab\u5b50\u4e0a\u3002"} +{"id": "3006314", "video_name": "7fed2e3c-fa87-5cfc-80d3-a3bd969570e4", "text": "\u4e00\u500b\u6c92\u6709\u4eba\u7684\u7f8e\u9e97\u6524\u4f4d\u7684\u5929\u5802\u822c\u7684\u6d77\u7058\u3002"} +{"id": "2004821", "video_name": "e0edbda5-c9e6-51da-8e28-9c2edddb45e2", "text": "\u6df1\u9ed1\u7684\u592a\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u5b64\u72ec\u7684\u661f\u7403\uff0c\u6709\u751f\u547d\u7684\u8ff9\u8c61\u3002\u7f13\u6162\u5730\u62c9\u8fd1\u6444\u50cf\u673a\u5230\u4e2d\u5fc3\u3002"} +{"id": "4003221", "video_name": "4a97653c-be0c-5675-a1e1-03d115c8e502", "text": "\u4e00\u53ea\u718a\u732b\u624b\u6301\u9ea6\u514b\u98ce\u5728\u8857\u5934\u91c7\u8bbf\u3002"} +{"id": "0005805", "video_name": "21829e80-ee0c-5b6c-bb37-ccc27d3b32af", "text": "\u5f69\u8679\u5496\u5561\u5728\u58f6\u91cc\u65cb\u8f6c\u3002"} +{"id": "0003815", "video_name": "43f8d98c-7946-5814-ae12-099558486676", "text": "\u7b2c\u4e00\u573a\u666f\u4e2d\uff0c\u4e4c\u9f9f\u548c\u5154\u5b50\u7684\u6bd4\u8d5b\u91c7\u75282D\u52a8\u753b\u5f62\u5f0f\uff0c\u5154\u5b50\u5632\u7b11\u4e86\u4e4c\u9f9f\u3002"} +{"id": "3003695", "video_name": "724c7176-0d1f-5148-a3af-b443595832b6", "text": "\u5728\u592a\u7a7a\u4e2d\u7684\u773c\u775b\u89c6\u9891\uff0c\u6709\u7d2b\u8272\u3001\u84dd\u8272\u3001\u7ea2\u8272\u548c\u6a59\u8272\u3002\n\n\u8fd9\u53ea\u773c\u775b\u88ab\u4e94\u989c\u516d\u8272\u7684\u661f\u4e91\u6240"} +{"id": "3003443", "video_name": "27e8f42f-0787-5a31-bdc0-c2fb512513e7", "text": "\u4e91\u6735\u968f\u661f\u661f\u95ea\u70c1\u800c\u52a8\uff0c8K\u8d85\u9ad8\u753b\u8d28\u3002"} +{"id": "8001432", "video_name": "06d79113-db88-504d-a0e6-919b3199f57b", "text": "9\u5c81\u5973\u5b69\u53d8\u6210\u4e86\u4e00\u6761\u9f99\u3002"} +{"id": "2004916", "video_name": "0e6455d1-084c-5e85-972b-4151113480ec", "text": "\u6591\u9a6c\u7ad9\u7740\u4e0d\u52a8\uff0c\u56fe\u50cf\u4e2d\u7684\u989c\u8272\u5feb\u901f\u800c\u4e0d\u65ad\u5730\u53d8\u5316\uff0c\u80cc\u666f\u4e2d\u7684\u4e09\u89d2\u8fde\u63a5\u79fb\u52a8\u5e76\u91cd\u5851\u3002"} +{"id": "7003198", "video_name": "64c83d35-12c3-5cbf-8811-84ca28566a04", "text": "\u4e9a\u5386\u5c71\u5fb7\u62c9\u00b7\u8fbe\u8fbe\u91cc\u5965\uff0c\u4e0a\u534a\u8eab\u91cd\u5fc3\uff0c\u6162\u52a8\u4f5c\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "4003843", "video_name": "1f4baaed-792f-53aa-9546-d44a858598b7", "text": "\u4e00\u4e2a\u9a91\u9a6c\u624b\u6301\u76fe\u724c\u548c\u5251\u7684\u9884\u8a00\u5bb6\u3002"} +{"id": "4002814", "video_name": "297baaa9-7225-5f73-b39f-7c8a7ee5cb9c", "text": "\u57ce\u5e02\u4e0a\u7a7a\u7684\u98de\u789f\uff0c1960\u5e74\uff0c\u590d\u53e4\u89c6\u9891\u3002"} +{"id": "1006477", "video_name": "7687d7f0-4a8e-56fb-94ad-a3b2870eb472", "text": "\u7136\u800c\uff0c\u6709\u4e00\u5929\uff0c\u4e00\u573a\u731b\u70c8\u7684\u6c99\u5c18\u66b4\u5e2d\u5377\u6574\u4e2a\u6c99\u6f20\uff0c\u5a01\u80c1\u7740\u8981\u7528\u6d53\u6d53\u7684\u5c18\u571f"} +{"id": "2006533", "video_name": "aa4b332d-3bfe-56b8-9a09-53b0d9e69373", "text": "\u6211\u559c\u6b22\u8fd9\u672c\u4e66\u7684\u539f\u56e0\u662f\uff0cVerghese \u7528\u7ec6\u8282\u548c\u60c5\u611f\u5851\u9020\u4e86\u89d2\u8272\u548c\u6545\u4e8b\u3002\u4ed6\u8fd8\u8fd0\u7528\u4ed6\u7684\u533b\u5b66\u4e13\u4e1a\u77e5\u8bc6\u751f"} +{"id": "2004440", "video_name": "9d9a5125-3256-5833-9483-4f85b36d18db", "text": "\u56db\u4e2a\u5370\u5ea6\u5c11\u5e74\u5f7c\u6b64\u4ea4\u8c08\u3002"} +{"id": "8001318", "video_name": "3869ddbd-f58e-59da-a0fc-adec4fcf164b", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5750\u5728\u7b80\u5355\u7684\u6728\u5236\u4e66\u684c\u524d\uff0c\u9760\u7740\u7164\u6cb9\u706f\u5fae\u5f31\u7684\u5149\u7ebf\u5b66\u4e60\uff0c\u8c61\u5f81\u7740\u4ed6\u5bf9"} +{"id": "6002676", "video_name": "5efda31b-1829-5f84-a574-976411e94982", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u8774\u8776\u5411\u4e00\u53ea\u677e\u9f20\u9053\u8c22\u3002"} +{"id": "3006670", "video_name": "96a88cee-c676-5d06-a6a1-b6067a65615d", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u8d858\u6beb\u7c73\u80f6\u7247\u8bb0\u5f55\u4e8620\u4e16\u7eaa70\u5e74\u4ee3\u6781\u5177\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\u6c14\u606f\u7684\u7535\u5f71\u3002"} +{"id": "0005948", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "\u7279\u5199\u955c\u5934\uff0c\u6e05\u6670\u53ef\u89c1\u7684\u9e45\u6bdb\u822c\u7684\u96ea\u82b1\u7f13\u7f13\u843d\u4e0b\uff0c\u84dd\u5929\u767d\u4e91\u4e3a\u80cc\u666f\uff0c\u66b4\u98ce"} +{"id": "7003211", "video_name": "414e4e0c-1d7a-5148-ab08-5de3e74b7ae1", "text": "\u5236\u4f5c\u4e00\u6bb5\u9ec4\u8272\u95ea\u7535\u5929\u7a7a\u7684\u89c6\u9891\u3002"} +{"id": "4002788", "video_name": "f747d7e0-85a5-556c-b714-dd8619ce9e37", "text": "\u5728\u66b4\u98ce\u96e8\u4e2d\u84dd\u8272\u4e3b\u9898\u4e2d\u98de\u821e\u7684\u53f2\u8bd7\u7ea7\u4e0d\u660e\u98de\u884c\u7269\u5728\u9646\u5730\u4e0a\u53d1\u51fa\u84dd\u8272\u5149\u8292\u3002"} +{"id": "7004459", "video_name": "5d52d6c1-7550-5242-b8ce-a9d81eb67ed6", "text": "\u4e00\u53ea\u9ec4\u9e42\u5728\u6cb3\u4e0a\u98de\u8fc7\u3002"} +{"id": "7004243", "video_name": "69b739b4-bbc2-574d-ad55-67f75000de7d", "text": "\u7535\u5f71\u6d77\u62a5\u8bbe\u8ba1\u7c7b\u4f3c\u76ae\u514b\u65af\u8fea\u58eb\u5c3c\u718a\u6218\u58eb\u3002"} +{"id": "1004307", "video_name": "4f95c22c-8866-59f1-b9e9-56b8b7c9adc5", "text": "\u7279\u79cd\u90e8\u961f\u5e26\u7740\u67aa\u68b0\u524d\u8fdb\u3002"} +{"id": "5001880", "video_name": "7ea9c4b6-cd03-555e-95b6-467642273f52", "text": "\u53cc\u8272\u6027\u62bd\u8c61\u53d8\u5f62\u71c3\u70e7\u677f\u7531\u900f\u660e\u6709\u673a\u73bb\u7483\u548c\u91d1\u5c5e\u5706\u7ec6\u8282\u6709\u673a\u62bd\u8c61\u975e\u6b63\u5f0f\u827a\u672f\u54c1\u5236"} +{"id": "4004145", "video_name": "09ba81a3-5290-5e0c-bc9b-5aa28425e824", "text": "\u4e00\u4f4d\u8eab\u6750\u6700\u597d\u3001\u9886\u56de\u5230\u77f3\u5934\u7684\u5973\u58eb\uff0c\u5e94\u8be5\u5728\u5580\u62c9\u62c9\u90a6\u5730\u533a\u3002"} +{"id": "1006707", "video_name": "7aeac92d-b9aa-5aea-a061-99b9add7492b", "text": "\u5c55\u5f00\u624b\uff0c\u5c55\u793a\u4e00\u9897\u5192\u7740\u70ed\u6c14\u7684\u571f\u8c46\u3002"} +{"id": "0004325", "video_name": "0722eadc-b697-5fea-bac2-8f84d89df4dd", "text": "\u5916\u661f\u4eba\u548c\u4eba\u7c7b\u5728\u5df4\u9ece\u4e00\u8d77\u7b11\u7684\u89c6\u9891"} +{"id": "1004036", "video_name": "4ad48e43-0632-5302-9c76-7f847133c3ec", "text": "\u7537\u4eba\u5728\u533b\u9662\u91cc\u8d70\u8def\uff0c\u80cc\u666f\u660e\u4eae\u3002"} +{"id": "3006052", "video_name": "2b5628dd-3396-5494-8fdb-f85b95aa8b51", "text": "\u4e00\u6247\u9ec4\u91d1\u5a01\u4e25\u7684\u95e8\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\uff0c\u767d\u8272\u96fe\u6c14\u7f13\u7f13\u6d41\u51fa\u5e76\u6f02\u6d6e\u5728\u95e8\u7684\u5de6\u53f3\u4e24\u4fa7\u3002\u95e8"} +{"id": "6003002", "video_name": "223c1595-c62f-5a12-a718-cec7c0c6c428", "text": "\u7a7f\u7740\u7ea2\u8272\u886c\u886b\u7684\u9ad8\u5c14\u592b\u7403\u624b\uff0c\u4e0e\u4ed6\u7684\u7403\u7ae5\u671d\u7740\u679c\u5cad\u8d70\u53bb\u3002\u6c34\u548c\u65e5\u843d\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "8001923", "video_name": "539beccc-d82e-5ceb-bfea-d85c674119d3", "text": "\u6d1b\u5947\u5c3c\u65af\u602a\u7269\u7167\u7247\uff0c\u6e05\u6670\u7684\u6c34\u4e0b\u56fe\u50cf\uff0c\u9762\u5bb9\u5e26\u7740\u5fae\u7b11\uff0c\u9ad8\u6e05\u7ec6\u8282\uff0c\u5c0f\u9c7c\u6e38\u5f0b\uff0c\u666f\u6df1"} +{"id": "2003837", "video_name": "40197ecb-f163-564f-ae56-777d151b76e8", "text": "\u4ee5\u5149\u901f\u65c5\u884c\u5728\u592a\u7a7a\u4e2d"} +{"id": "2006614", "video_name": "fb42e7b5-006f-5c8b-a17a-4cf1420c9b84", "text": "\u751f\u6210\u6d77\u6d0b\u6ce2\u6d6a\uff0c\u6d77\u6ee8\u57ce\u5e02\u666f\u89c2\uff0c4K\u3002"} +{"id": "6002683", "video_name": "677a4075-837b-5fa7-ab8e-95382bb600fa", "text": "\u5199\u5b9e\u98ce\u683c\u3001\u5b66\u6821\u3001\u7537\u5b69\u3001\u4fc4\u7f57\u65af\u3001\u559d\u6c34\u3001\u89c6\u9891"} +{"id": "8002033", "video_name": "db9fe97d-4c30-5343-9a09-48af6e49877c", "text": "\u4e00\u540d\u5973\u5b50\u62ff\u7740\u4e00\u4ef6\u5939\u514b\uff0c\u5979\u653e\u4e0b\u5939\u514b\u5f00\u59cb\u8d70\u8def\u3002"} +{"id": "2004650", "video_name": "8b995d71-c35b-5847-80ff-49737a1ed555", "text": "\u8ba9\u753b\u4f5c\u4e2d\u7684\u4eba\u7269\u8f6c\u4e2a\u8eab\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001866", "video_name": "f36a2434-42fe-5540-b01a-5539117fbdc1", "text": "SCP\u540e\u623f\u95f4\u7684\u52a8\u6001\u8df3\u8dc3\u60ca\u5413\u6050\u6016\uff0c\u8fb9\u7f18\u529e\u516c\u5927\u697c\u7535\u5f71\u5316\u3002"} +{"id": "3005372", "video_name": "6e120947-cc3a-5432-8be4-d8b8d5563677", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u9ed1\u6697\u7684\u5367\u5ba4\u91cc\u7761\u89c9\uff0c\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u8fdb\u6765\u3002\u8d85\u5199\u5b9e\u3001\u8d85\u8be6\u7ec6\u3001\u9ad8\u5bf9\u6bd4\u5ea6\u3002\u9ed1\u767d\u3001"} +{"id": "1005199", "video_name": "5faaf9fd-f996-5f20-a047-0a924cbfe947", "text": "\u5236\u4f5c\u4e00\u53ea\u98de\u7fd4\u7684\u732b\u5934\u9e70\uff0c\u5b83\u5fc5\u987b\u50cf\u4e00\u9053\u96f7\u9706\u822c\u3002"} +{"id": "3006918", "video_name": "2258ccbf-5745-5342-8452-fb1e6522be0a", "text": "\u5728\u4ed6\u7684\u773c\u4e2d\u900f\u7740\u9065\u8fdc\u7684\u773c\u795e\uff0c\u60f3\u8c61\u7740\u8fdc\u65b9\u7684\u5c71\u548c\u672a\u88ab\u63a2\u7d22\u7684\u571f\u5730\u7684\u753b\u9762\u3002"} +{"id": "2005380", "video_name": "a29b300f-6b2b-5814-b4a0-fd015c3fac6e", "text": "\u4e00\u4e2a\u4eba\u5728\u72c2\u6b22\u5e86\u795d\u91cd\u5927\u4e8b\u4ef6\uff0c\u6709\u6c14\u7403\u548c\u4e94\u5f69\u7eb8\u5c51\u3002"} +{"id": "6002797", "video_name": "d525d3f0-7fab-5acf-84ae-6e0fc5d27c8e", "text": "\u7a7f\u7740\u897f\u88c5\u3001\u5934\u6234\u65b0\u6708\u5f62\u5e3d\u5b50\u548c\u592a\u9633\u955c\u7684\u7537\u5b50\u5728\u9910\u5385\u91cc\u8d70\u8fc7\u3002"} +{"id": "1005683", "video_name": "686d8bfa-b317-58d7-9067-45d7aa6692a9", "text": "\u7528\u626b\u5e1a\u4e0d\u4e0e\u50e7\u4fa3\u6253\u6597\u3002"} +{"id": "3006117", "video_name": "d2b1024e-254c-5ab8-b9fc-ee4d9280b5e8", "text": "\u4e00\u4e2a\u8b66\u5bdf\u5728\u94f6\u884c\u524d\u6253\u7535\u8bdd\u3002"} +{"id": "3005350", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u5ba2\u5385\u91cc\u6253\u9f13\u3002"} +{"id": "8001878", "video_name": "497d8690-3e07-5ccf-b292-051265ea9877", "text": "\u4e00\u8f86\u5361\u5c14\u00b7\u6cfd\u66fc\u98ce\u683c\u7684\u84b8\u6c7d\u706b\u8f66\u3002"} +{"id": "6002390", "video_name": "a3bc16c5-8d6f-5dfb-8df5-d6b4d34555e4", "text": "\u4eba\u4f53\u5185\u90e8\u5fc3\u810f\u548c\u9759\u8109\u53ef\u89c1\u3002"} +{"id": "7003527", "video_name": "d1734d5b-91c3-5c63-9326-a9ad058c91c0", "text": "\u73b0\u5b9e\u7684\u5973\u5b69\u8eab\u7a7f\u8d85\u5927\u53f7\u8863\u670d\uff0c\u7ad9\u5728\u6885\u8d5b\u5fb7\u65af-\u5954\u9a70w124\u65c1\u8fb9\uff0c\u9ad8\u6e05\uff0c3D\uff0c8K\u3002"} +{"id": "8001423", "video_name": "0ea843fc-db02-56ce-a402-54ae7c7561b2", "text": "\u5361\u901a\u89d2\u8272\u7a7f\u8fc7\u68ee\u6797\uff0c\u62ff\u7740\u5927\u6728\u6876\u8d70\u8def\u3002"} +{"id": "7002156", "video_name": "54200c59-a94c-54be-8dcb-5bdd90ec321a", "text": "\u4ece\u524d\uff0c\u6709\u4e00\u4e2a\u53eb\u6bd4\u5229\u7684\u7537\u5b69\u4f4f\u5728\u68ee\u6797\u8fb9\u7f18\u7684\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u3002"} +{"id": "4004072", "video_name": "615ac6a7-dccd-576f-ac47-ac3949d64995", "text": "\u6d77\u7684\u591c\u666f\u548c\u4e00\u8258\u5927\u6e38\u8f6e\u3002"} +{"id": "4002363", "video_name": "2418f618-9989-5fa3-bed1-5ea5912e3e55", "text": "\u4e00\u6761\u88c2\u5f00\u5e72\u6db8\u7684\u6cb3\u5e8a\uff0c\u5c55\u793a\u7740\u5e72\u65f1\u7684\u4e25\u91cd\u7a0b\u5ea6\u3002"} +{"id": "2007565", "video_name": "9c86ace7-85e3-5756-b9af-57b22b9fa1fc", "text": "\u5bff\u53f8\u4e2d\u7684\u89d2\u8272\u662f\u5728\u6c34\u4e0b\u4e16\u754c\u6e38\u6cf3\u7684\u9c7c\u3002"} +{"id": "8001370", "video_name": "b3feac34-bd93-502d-82a3-e585e1f0d0f9", "text": "\u65e0\u4eba\u673a\u5728\u5f69\u8679\u8272\u6c34\u84b8\u6c14\u4e0a\u98de\u901f\u7a7f\u884c\uff0c\u4eba\u4eec\u5728\u6c34\u9762\u51b2\u6d6a\u3002"} +{"id": "0004781", "video_name": "0f142550-26a5-5115-aef6-183f678b792f", "text": "\u4e00\u53ea\u6d77\u602a\uff0c\u5728\u66b4\u98ce\u96e8\u4e2d\u4ece\u6c34\u4e2d\u5347\u8d77\uff0c\u4f34\u968f\u7740\u95ea\u7535\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7535\u5f71\uff0c\u9ed1\u6697\u98ce\u683c\uff0c\u6050\u6016"} +{"id": "7003885", "video_name": "7102658d-b0d0-5d4a-9993-7297e6f40ba0", "text": "\u5236\u4f5c\u4e00\u90e8\u7c7b\u4f3c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u7684\u52a8\u753b\uff0c\u5176\u4e2d\u4e00\u53ea\u771f\u5b9e\u5c3a\u5bf8\u7684\u5927\u8d35\u65cf\u72ee\u5b50\uff0c\u62e5\u6709\u53cb\u5584\u7684\u9762"} +{"id": "2006015", "video_name": "78351270-1dcd-54fb-a7eb-918ea2e1a0a3", "text": "\u4e00\u4e2a\u4eba\u548c\u673a\u5668\u72d7\u7684\u6597\u4e89"} +{"id": "8003548", "video_name": "44252578-1fe5-5286-ae7b-0f8441560b3b", "text": "\u4e00\u5f20\u590d\u6742\u96d5\u523b\u7684\u96c5\u5e0c\u5170\u58c1\u753b\u7684\u7167\u7247\uff0c\u88ab\u82d4\u85d3\u8986\u76d6\uff0c\u5468\u56f4\u7e41\u8302\u7684\u690d\u88ab"} +{"id": "0005228", "video_name": "16f5d72e-b9cb-58f8-ba4e-b2b2fd284d7e", "text": "\u6765\u6e90\u53e5\u5b50\uff1a\u4ece2025\u5e74\u5f00\u59cb\uff0cUSB\u63d2\u5934\u5c06\u53d1\u51fa\u53d1\u5149\u7684LED\u548c\u9713\u8679\u706f\u989c\u8272\u3002"} +{"id": "3004574", "video_name": "f0f08413-a11e-543b-aecb-0ebb332cccd4", "text": "\u4e00\u4e2a\u4eba\u5728\u51a5\u60f3\uff0c\u4ed6\u5468\u56f4\u7684\u5899\u5012\u584c\u4e86\u3002"} +{"id": "2004389", "video_name": "b2778267-52d5-5928-ace1-4e8bfc02e950", "text": "\u5236\u4f5c\u6807\u5fd7\u52a8\u753b\uff0c\u6807\u5fd7\u540d\u79f0\u662f\u865a\u5e7b\u7684\u9634\u5f71\u3002"} +{"id": "3003281", "video_name": "b72538fe-40bc-5886-9594-27279af51d64", "text": "\u4e00\u5e45\u8239\u5728\u8377\u5858\u6708\u8272\u4e2d\u7684\u5361\u901a\u63d2\u56fe\u3002"} +{"id": "3005238", "video_name": "ba476a29-a32d-578b-8df4-363a7b4bf61d", "text": "\u539f\u53e5\uff1a\u5728\u7530\u91ce\u91cc\u7684\u94a2\u7434\u3002\u5929\u7a7a\u4e2d\u7206\u70b8\u7684\u6838\u5f39\u3002\u7535\u5f71\u9662\u3002\u8fdc\u79bb\u7684\u76f8\u673a\u3002\n\nTranslated sentence: \u7530\u91ce\u91cc"} +{"id": "0004920", "video_name": "116f354e-f26d-5e52-98fc-7f5f6188d977", "text": "\u4e00\u4f4d\u5973\u58eb\u5750\u5728\u9760\u7a97\u7684\u706b\u8f66\u5ea7\u4f4d\u4e0a\u3002"} +{"id": "2005920", "video_name": "1543003d-7e33-51d4-96da-f332255d6323", "text": "\u53d4\u53d4Canardia\u5728\u7535\u8111\u4e0a\u7f16\u7a0b\uff0c\u559d\u7740\u6851\u5fb7\u65af\u5564\u9152\u3002"} +{"id": "7004742", "video_name": "9266442b-00ff-599b-bbd3-11a8c5bb049a", "text": "\u793e\u4ea4\u5a92\u4f53\u4e0a\u7684\u70b9\u8d5e\u6570\u91cf\u5728\u5c4f\u5e55\u4e0a\u663e\u793a\u3002"} +{"id": "1003176", "video_name": "3a6b9ca5-91ab-56a7-973f-626236a55b2d", "text": "\u9c7c\u9a91\u81ea\u884c\u8f66\u7684\u7535\u5f71\u753b\u9762"} +{"id": "2006481", "video_name": "efb30e73-924b-5ee8-b378-f03c49590eb3", "text": "\u7537\u4eba\u6b63\u5728\u5de5\u4f5c\uff0c\u975e\u5e38\u75b2\u5026\u3002"} +{"id": "3006284", "video_name": "5e78226a-4caf-5717-9d77-e09ffa13dc03", "text": "\u5361\u901a\u5c0f\u7537\u5b69\u6b63\u5728\u5e2e\u53e6\u4e00\u4e2a\u7537\u5b69\u7a7f\u7f8a\u6bdb\u886b\u3002"} +{"id": "4002738", "video_name": "19555b20-0aba-554a-8ae7-a261ec1a7cba", "text": "\u54c8\u5229\u6ce2\u7279\u8e22\u8db3\u7403\uff0c\u5de8\u578b\u7ae0\u9c7c\u9f99\uff0c\u5fae\u7b11\u7684\u9e1f\u3002"} +{"id": "7002186", "video_name": "683ed4cf-3267-5840-9676-eb4733ae2daa", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u201c\u771f\u6b63\u6700\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u672a\u89e3\u4e4b\u8c1c\u201d\u7f29\u7565\u56fe\u3002"} +{"id": "6004367", "video_name": "b85574a7-9db3-5cb7-9010-20f864daa9c9", "text": "\u526a\u8f91\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u5927\u623f\u95f4\u91cc\u4ee5\u9e26\u7247\u4e3a\u98ce\u683c\u7684\u97f3\u4e50\u3002"} +{"id": "7003513", "video_name": "58b67c7d-6128-56d7-a9ef-e28b84ee8a36", "text": "\u7ea6\u7ff0\u9a7e\u8f66\u884c\u9a76\u5728\u4e00\u6761\u5b64\u72ec\u7684\u8def\u4e0a\uff0c\u4ed6\u611f\u5230\u4e00\u79cd\u4ee4\u4eba\u4e0d\u5b89\u7684\u538b\u529b\u843d\u5728\u4e86\u4ed6\u7684\u80cc\u4e0a\u3002\u8fd9\u79cd\u538b"} +{"id": "0004290", "video_name": "067d9823-4079-5f02-ba3c-4e78513afdff", "text": "\u4e00\u7fa4\u4eba\u5728\u57ce\u5e02\u91cc\u6342\u7740\u8033\u6735\uff0c\u56e0\u4e3a\u8fc7\u4e8e\u5927\u58f0\u7684\u58f0\u97f3\u800c\u611f\u5230\u75bc\u75db\u3002\u52a8\u753b\u3002"} +{"id": "3003030", "video_name": "0fa2a158-e10b-55af-9d01-bd31e784c359", "text": "\u4e00\u90e8\u6709\u5173\u82cf\u8054\u7684\u5927\u7247\u7535\u5f71\u9884\u544a\u3002"} +{"id": "3006503", "video_name": "75266bd9-ea33-572b-9a0b-c28a92e8e95b", "text": "\u9cb8\u9c7c\u4ece\u6d77\u6d0b\u5782\u76f4\u8d77\u98de\u8fdb\u5165\u592a\u7a7a\uff0c8\u4f4d\u56fe\u5f62\u3002"} +{"id": "8002223", "video_name": "b19f8e10-92f4-5001-b348-3b0bea2b946f", "text": "\u5e03\u52a0\u8fea\u63a5\u8fd1\u76f8\u673a\uff0c\u76f8\u673a\u653e\u5927\uff0c\u6162\u52a8\u4f5c\uff0c\u9ad8\u8f9b\u70f7\u503c\u6e32\u67d3\uff0c4K\uff0c\u6781\u81f4\u6e32\u67d3\u3002"} +{"id": "1005052", "video_name": "5d6b88ac-cea5-5594-9c01-4cd08a2edc94", "text": "\u5c55\u793aColdplay\u8ff7\u5e7b\u7684\u5168\u5f69\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2006207", "video_name": "f118a901-b098-510a-9308-2212fe6dff44", "text": "\u4e2d\u56fd\u53e4\u4ee3\u664b\u671d\u7684\u73af\u5883\u548c\u4e00\u4e2a\u6355\u9c7c\u7684\u4eba\u3002"} +{"id": "3003014", "video_name": "78f8244f-3c29-5af9-8ea2-b7ce3e3231ca", "text": "\u94a2\u94c1\u4fa0\u5728\u4ed6\u8c6a\u534e\u7684\u5bb6\u4e2d\u653e\u677e\uff0cAR 9:16\u3002"} +{"id": "6002307", "video_name": "ffe0bc78-8497-5c82-a3d1-fecaf8fc647e", "text": "\u82f1\u56fd\u77ed\u6bdb\u732b\u4ece\u697c\u68af\u4e0a\u8d70\u8fc7\uff0c\u514b\u7f57\u5730\u4e9a\u5c71\u8109\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "3006754", "video_name": "4eef7e8c-afac-5eb2-926d-d3be5751772c", "text": "\u4e00\u4e2a\u5927\u8c61\u4f7f\u7528\u547c\u5566\u5708\u7684\u52a8\u753b"} +{"id": "1004887", "video_name": "5a5a207c-5eb3-5762-9bfd-74e2e1ddd49c", "text": "\u73b0\u5b9e\u7248\u7684\u585e\u58ec\u795e\u8bdd\u751f\u7269\u8e72\u4f0f\u5728\u6c34\u4e0b\u6d1e\u7a74\u91cc\uff0c\u5468\u56f4\u5e03\u6ee1\u53e4\u8001\u7684\u6587\u5b57\uff0c\u5730\u9762\u4e0a\u5f25\u6f2b\u7740"} +{"id": "7003805", "video_name": "440feeec-cf13-5c05-9db9-e46f00e00c12", "text": "\u7334\u5b50\u5750\u5728\u6cb3\u4e2d\u7684\u5927\u8c61\u4e0a\u3002"} +{"id": "2005530", "video_name": "77adde00-2e47-5354-ae6c-35fd5e0e79c6", "text": "\u68ee\u6797\u4e2d\u7684\u5c0f\u5c4b\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u96e8\u6c34\u843d\u4e0b\uff0c\u4e4c\u9e26\u6816\u606f\u5728\u5c4b\u9876\u4e0a\u3002"} +{"id": "2006692", "video_name": "2d7ab72d-bd4e-508d-b4ab-9f496a6e90d1", "text": "\u60f3\u8c61\u4e00\u4e0b\u4e00\u4e2a\u5bb3\u7f9e\u7684\u89d2\u8272\u7d27\u5f20\u5730\u8d70\u8fdb\u7199\u7199\u6518\u6518\u7684\u793e\u4ea4\u6d3b\u52a8\u4e2d\u7684\u77ed\u6682\u65f6\u523b\u3002"} +{"id": "3005169", "video_name": "33161711-2f0a-57b6-bee8-64fd0f4df9fa", "text": "\u5728\u6728\u8d28\u4e61\u6751\u98ce\u684c\u5b50\u4e0a\u6563\u843d\u7740\u8349\u836f\u548c\u9c9c\u82b1\u3002"} +{"id": "6002963", "video_name": "30380414-38bd-5cbd-adf6-8d06dd1cfe7b", "text": "\u70ed\u6c14\u817e\u817e\u7684\u6cd5\u5f0f\u85af\u6761\u7684\u8fd1\u666f\u3002"} +{"id": "2003918", "video_name": "6267fcf3-ea6c-5a28-b3ae-c08bc737be4b", "text": "\u4e00\u4e2a\u795e\u79d8\u6050\u6016\u7684\u4e1c\u897f\u7f13\u7f13\u5730\u8d70\u5411\u6444\u50cf\u673a\uff0c\u51dd\u89c6\u7740\u4f60\u7684\u7075\u9b42\u3002"} +{"id": "3004330", "video_name": "f14fa3f2-9071-5d5a-87a6-e97f4f811cfd", "text": "\u4e00\u540d\u7a7f\u7740\u5546\u52a1\u5957\u88c5\u7684\u65e5\u672c\u5973\u6027\uff0c\u6574\u4e2a\u8eab\u4f53\uff0c\u9ed1\u8272\u77ed\u53d1\uff0c\u8fd1\u8ddd\u79bb\uff0c\u767d\u5929\uff0c\u7f8e\u5b66\uff0c\u8be6\u7ec6\uff0c\u4e30\u5bcc"} +{"id": "1006316", "video_name": "7395ecd8-13e0-51d7-9667-b7b1130dc329", "text": "\u9ed1\u6697\u4e2d\u7684\u68a6\u5883\uff0c\u53ea\u6709\u4e00\u68f5\u5c16\u523a\u7684\u6811\u548c\u95f7\u95f7\u7684\u706f\u5149\uff0cVHS\u76f8\u673a\uff0c\u771f\u5b9e\u7684\u753b\u9762\u3002"} +{"id": "2004780", "video_name": "e9b5c49a-aa97-585b-92dd-1324611c3d5e", "text": "\u4e00\u4f4d\u5973\u5b69\u4ee5\u7d20\u63cf\u672c\u7684\u98ce\u683c\u80cc\u5411\u955c\u5934\u8d70\u5f00\u3002"} +{"id": "1004430", "video_name": "51f88305-e593-568b-8eb5-c47a41ded726", "text": "\u4e00\u4e2a\u9053\u58eb\u6b63\u5728\u5c71\u9876\u4e0a\u65bd\u5c55\u96f7\u6cd5\uff0c\u63cf\u7ed8\u7740\u4f20\u7edf\u7684\u4e2d\u56fd\u5c71\u6c34\u753b\u3002\u573a\u666f\u4e2d\u5145\u6ee1\u4e86\u95ea\u7535\u548c\u96f7\u9e23\u58f0\u3002"} +{"id": "1005697", "video_name": "68bb719d-26be-57bd-a44b-a0ed94fbd3b2", "text": "\u5409\u59c6\u00b7\u5361\u745e\u5728\u6708\u7403\u4e0a\u9a7e\u9a76\u62c9\u8fbe\u7ef4\u65af\u5854\uff0c\u5e76\u559d\u7740\u5409\u59c6\u00b7\u5bbe\u5a01\u58eb\u5fcc\u3002"} +{"id": "2005777", "video_name": "19d36479-95a3-5204-929f-ff6b8099896b", "text": "\u5730\u7403\u81ea\u8f6c\u7684\u7ed8\u753b\u3001\u4e09\u7ef4\u7684\u57c3\u83f2\u5c14\u94c1\u5854\u548c\u6bd4\u8428\u659c\u5854\u3002"} +{"id": "7003016", "video_name": "e61edff1-b4cb-5dff-8be9-e375fca8a0e7", "text": "\u751f\u52a8\u591a\u5f69\u76843D\u82b1\u6735\uff0c\u5411\u65e5\u8475\uff0c\u767d\u8272\u3001\u9ec4\u8272\u3001\u6a59\u8272\u7684\u5411\u65e5\u8475\u3002"} +{"id": "5001429", "video_name": "5fdbb6f7-0e20-560c-8147-63aaaa445d8e", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u7f8e\u4e3d\u7eff\u5c71\u4e0b\u7684\u65e5\u672c\u6751\u5e84\uff0c\u6751\u91cc\u7684\u9e1f\u513f\u4ee5\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u98de\u7fd4\u3002"} +{"id": "0004795", "video_name": "0f453cdf-1500-5017-b3b4-7bb3e57a8451", "text": "\u7c73\u5a05\u559c\u6b22\u5728\u5916\u9762\u73a9\uff0c\u5c24\u5176\u662f\u5728\u96e8\u540e\u592a\u9633\u51fa\u6765\u7684\u65f6\u5019\u3002"} +{"id": "7003316", "video_name": "aff5c21c-4fb5-5c9b-a1e2-710dc713457b", "text": "\u751f\u6210\u4e00\u4e2a1\u5206\u949f\u7684\u89c6\u9891\u526a\u8f91\uff0c\u4f7f\u7528\u53ef\u89c6\u5316\u65f6\u95f4\u7ebf\u5c55\u793a\u7a7a\u6c14\u6c61\u67d3\u6c34\u5e73\u7684\u53d8\u5316\u8fc7\u7a0b\uff0c\u4ece\u6e05\u6d01\u73af\u5883\u5f00\u59cb\uff0c\u968f\u7740\u5de5\u4e1a\u6d3b\u52a8"} +{"id": "6003773", "video_name": "e73e448d-0c78-5014-b67d-668f2bb84f3e", "text": "\u52a0\u52d2\u6bd4\u5730\u533a\u7684\u52a8\u6001\u5730\u56fe\u7a7a\u4e2d\u89c6\u56fe\u3002"} +{"id": "2006266", "video_name": "850b597b-4064-5528-88c0-14eee15b8d3e", "text": "\u745e\u514b\u00b7\u6851\u5207\u65af\u8d70\u5230\u8f66\u5e93\u91cc\u7684\u83ab\u8482\u00b7\u53f2\u5bc6\u65af\u8eab\u8fb9\uff0c\u62e5\u62b1\u4e86\u4ed6\u3002"} +{"id": "6004853", "video_name": "bd0a1e94-3a8b-5697-b04a-74c001c37ec8", "text": "\u7535\u80fd\u8fdc\u8ddd\u79bb\u8f93\u9001\uff0c\u65f6\u95f4\u4e3a04:00\u3002"} +{"id": "7004127", "video_name": "64d4c0e4-67e7-5574-a483-acdd6a58cdb6", "text": "\u5728\u7af9\u6797\u4e2d\u7684\u65e5\u672c\u5973\u5b69"} +{"id": "7002972", "video_name": "2ab2a929-28f4-5752-a3da-0b60226e2d05", "text": "\u989c\u8272\u50cf\u6c34\u6ce2\u4e00\u6837\u5411\u5916\u6d41\u52a8\u3002\n\nSource sentence: I am sorry for the inconvenience. Message: 1 Attachment\n\u5bf9\u4e8e\u4e0d\u4fbf\u6211\u611f\u5230\u62b1\u6b49\u3002"} +{"id": "2005260", "video_name": "b254adb6-5c7c-575d-ab9a-d0433868196f", "text": "\u7ebd\u7ea6\u5e02\u5185\u6709\u4eba\u548c\u8f66\u76842D\u5361\u901a\u52a8\u753b\u3002"} +{"id": "3003119", "video_name": "9a4782ec-466f-53f9-a10b-798ae9d8e9f6", "text": "\u7a7a\u8361\u8361\u7684\u706b\u8f66\u7ad9\uff0c\u6811\u53f6\uff0c\u76ae\u80a4\uff0c\u773c\u775b\uff0c\u8def\u4e0a\u7684\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "2006209", "video_name": "cd081ec6-0eed-5452-a240-b7b2062b32ef", "text": "\u7406\u67e5\u5fb7\u00b7\u54c8\u8499\u5fb7\u5728\u5065\u8eab\u623f\u7684\u673a\u5668\u4e0a\u953b\u70bc\uff0c\u6709\u808c\u8089\u7684\u624b\u81c2\u3002"} +{"id": "2005116", "video_name": "5477b534-e9da-5ec6-bafb-85a3acca9246", "text": "\u5c0f\u5c71\u4e18\u9547\u7684\u8fdc\u666f\uff0c\u9053\u8def\u4e0a\u6709\u6c7d\u8f66\u3002\u7e41\u5fd9\u7684\u8857\u9053\u5468\u56f4\u6709\u6559\u5802\u3002"} +{"id": "3004714", "video_name": "b40ebda5-ac5b-58db-9cb6-8ef52a7862ba", "text": "\u5c0f\u718a\u73a9\u5076\u5728\u5f69\u8272\u4e4b\u5730\u7684\u5192\u9669"} +{"id": "3003430", "video_name": "045ac6d6-7923-5132-8a0d-d6e0a9039ff1", "text": "\u653e\u5927\u660e\u4eae\u5929\u7a7a\u4e2d\u795e\u79d8\u7684\u65e5\u8680\u5f71\u50cf\uff0c\u903c\u771f\u76844K\u3002"} +{"id": "3005327", "video_name": "4c346fcb-419e-5f2d-b0bf-cab51d76fa67", "text": "\u5728\u6df1\u6797\u4e2d\uff0c\u4e00\u4f4d\u4e1b\u6797\u7537\u5b69\u4e0e\u4e1b\u6797\u52a8\u7269\u4e00\u8d77\u79fb\u52a8\u3002"} +{"id": "2007684", "video_name": "821d32a1-00e1-55e2-a657-ea16619d16ae", "text": "\u7a7f\u7740\u6a59\u8272\u80cc\u5fc3\u7684\u5de5\u4eba\u5728\u83ab\u65af\u79d1\u5927\u5267\u9662\u9ad8\u5531\u5408\u5531\uff0c\u6325\u821e\u7740\u53cc\u81c2\u3002"} +{"id": "6002025", "video_name": "8d731238-5fc4-5422-b848-e51a52c98a21", "text": "\u4e00\u5ea7\u9ad8\u6e05\u6670\u3001\u6e05\u5e7d\u7684\u6751\u5e84\u51fa\u73b0\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u690d\u88ab\u4e2d\u3002"} +{"id": "6002524", "video_name": "272081c4-746c-5de6-9941-3933b7fee0d3", "text": "\u7ea2\u8272\u673a\u5668\u4eba\u4ee5\u5149\u901f\u5954\u8dd1\u3002"} +{"id": "4003281", "video_name": "a6927d04-7977-5ae3-a44c-b665b76333a6", "text": "\u7334\u5b50\u5750\u5728\u9cc4\u9c7c\u4e0a\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u4e2d\u6e38\u6cf3\u7684\u5361\u901a\u573a\u666f\u3002"} +{"id": "7002716", "video_name": "369ef582-5d71-5459-bb2a-94c2ba5024fb", "text": "\u4e00\u4f4d\u52c7\u6562\u7684\u963f\u62c9\u4f2f\u914b\u957f\u5728\u5357\u4e5f\u95e8\u62bd\u6c34\u70df\u6597\u3002"} +{"id": "6002363", "video_name": "d141629e-8770-54a9-bec1-3054f16bcf40", "text": "\u4ee5\u5409\u535c\u529b\u7684\u98ce\u683c\u5c55\u73b0\u4ed6\u4eec\u75b2\u60eb\u4f46\u6ee1\u8db3\u5730\u56de\u5bb6\u3002"} +{"id": "0006682", "video_name": "30f51a42-8a2f-516f-be6f-234e5e209809", "text": "\u5c06\u89d2\u8272\u5728\u767d\u8272\u7b80\u6d01\u7684\u80cc\u666f\u4e0b\u70e4\u62ab\u8428\u3002"} +{"id": "0003170", "video_name": "38875e41-2596-5818-b5ee-84c7fec7d723", "text": "\u5409\u5c14\u4f3d\u7f8e\u4ec0\u662f\u4e9a\u8ff0\u56fd\u738b\uff0c\u4e0e\u5170\u56fd\u4ea4\u6218\u3002"} +{"id": "2004291", "video_name": "884b690e-3c0a-5bf7-98d1-e6b678e86434", "text": "\u4e00\u4f4d\u57f9\u8bad\u5e08\u5728\u529e\u516c\u5ba4\u7684\u7535\u8111\u524d\u5411\u56db\u540d\u94f6\u884c\u5458\u5de5\u63d0\u4f9b\u57f9\u8bad\u3002\u7535\u8111\u4e0a\u663e\u793a\u4e86\u590d\u6742\u7684\u7a0b\u5e8f\u3002"} +{"id": "3006215", "video_name": "3c26efcb-bbf9-50ff-bed2-1a27d6643ec3", "text": "\u4e1b\u6797\u7535\u5f71\u4e2d\u7684\u7537\u4eba\u4ecd\u7136\u975e\u5e38\u7535\u5f71\u5316\u3002"} +{"id": "8002049", "video_name": "f8cf81b0-90db-552f-8c7f-ff0454cfc377", "text": "\u987a\u65f6\u9488\u65cb\u8f6c\u7684\u661f\u7cfb\uff0c\u4f7f\u7528\u7d2b\u8272\u548c\u7eff\u8272\u768416:9\u989c\u8272\u3002"} +{"id": "0003405", "video_name": "3d133c1e-1ba7-5c6b-8115-3c2e2dab0ebb", "text": "\u5c06\u6d17\u53d1\u6c34\u6d82\u5728\u5934\u53d1\u4e0a\uff0c\u60f3\u8c61\u81ea\u5df1\u6b63\u5728\u6309\u6469\u3002"} +{"id": "7002333", "video_name": "90374236-f5d7-525b-a90a-bb9744f02f3f", "text": "\u5728\u4e00\u4e2a\u88ab\u9057\u5fd8\u7684\u5c0f\u9547\u7684\u6708\u5149\u7167\u8000\u4e0b\u7684\u9ed1\u6697\u4e2d\uff0c\u90aa\u6076\u529b\u91cf\u7684\u8033\u8bed\u5728\u72ed\u7a84\u7684\u8857\u9053\u4e0a\u56de"} +{"id": "7002707", "video_name": "31a62f77-d46a-5f8b-9454-fe8fd21d3395", "text": "\u5916\u661f\u8725\u8734\u4eba\u7a7f\u7740\u672a\u6765\u88c5\u7532\uff0c\u9a7e\u9a76\u98de\u8239\u3002"} +{"id": "8001191", "video_name": "c5a9ddb0-78b7-5327-8a4d-6016326df204", "text": "\u5927\u5c3a\u5ea6\u7684\u5c41\u80a1\u6392\u6210\u4e00\u5217\uff0c\u7535\u5f71\u822c\u7684\u5bbd\u5e7f\u89c6\u89d2\uff0c\u5206\u8fa8\u7387\u4e3a1920X1080\u3002\u4fe1\u606f\uff1a\u6253\u51fb\u58f0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002445", "video_name": "71750a56-51c6-561f-af81-b44e07dbf0e5", "text": "\u6848\u4ef6\u53d1\u751f\u4e86\u80a2\u89e3\uff0c\u8fde\u73af\u6740\u624b\u51fa\u73b0\u4e86\u3002"} +{"id": "1006929", "video_name": "7eaa590b-0c82-515e-9c2b-65c8d8fc50f6", "text": "translation: \u4e00\u4f4d\u5927\u578b\u5546\u4eba\u5728\u7ebd\u7ea6\u8857\u89d2\u4e0e\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u4ea4\u8c08\uff0c\u6c1b\u56f4\u5f88\u597d\u3002"} +{"id": "3004324", "video_name": "52346f15-74ab-5d64-945f-94d58ed84c7b", "text": "\u4e0b\u96e8\u65f6\u79cb\u5b63\u7684\u57ce\u5e02\u98ce\u666f"} +{"id": "6004726", "video_name": "eed2b0dd-a75c-5bc0-8c5b-1cd3b4c3b386", "text": "\u8fd9\u4f4d\u5927\u5e08\u6709\u4e00\u79cd\u72ec\u7279\u7684\u4f20\u6388\u77e5\u8bc6\u7684\u65b9\u5f0f\u3002\u4ed6\u4f1a\u5148\u901a\u8fc7\u8bb2\u9053\u6765\u6559\u4ed6\u7684\u95e8\u5f92\uff0c\u7136\u540e\u8981\u6c42\u4ed6\u4eec\u5c06\u6240\u5b66\u5e94\u7528\u5230"} +{"id": "1006635", "video_name": "799fea9e-9a93-5480-8871-65362ce860b4", "text": "\u836f\u5b66\u6280\u672f\u7247\u5934\u7684\u5f00\u573a\u7279\u6548\n\nSource sentence: The new product launch was a huge success, with sales exceeding expectations. \n\n\u65b0\u4ea7\u54c1\u53d1\u5e03\u4f1a\u53d6\u5f97\u4e86\u5de8\u5927\u7684\u6210\u529f\uff0c\u9500\u552e\u989d\u8d85"} +{"id": "0004734", "video_name": "0e4f9042-c651-50ef-9793-b2e5ec546dfa", "text": "\u7136\u800c\uff0c\u5b83\u4eec\u786e\u5b9e\u6709\u4e00\u4e9b\u7279\u6b8a\u7684\u4e1c\u897f\u5e2e\u52a9\u5b83\u4eec\u751f\u5b58\u5e76\u6700\u7ec8\u8fdb\u5316\uff0c\u90a3\u5c31\u662f\u5b83\u4eec\u62e5\u6709\u5927\u8111\uff0c\u8fd9\u4e9b"} +{"id": "7004186", "video_name": "b6dc829c-7c6d-5eb0-85aa-92787fbe48a2", "text": "\u201c\u7231\uff0c\u6b7b\u4ea1\u548c\u673a\u5668\u4eba\u201d\u98ce\u683c\u7684\u6218\u58eb"} +{"id": "1003031", "video_name": "37a0373c-7373-5578-8f67-1a4f1c70f3ee", "text": "\u4e00\u4f4d\u7d2b\u8272\u982d\u9aee\u3001\u6027\u611f\u7684\u5973\u5b50\uff0c\u6709\u8457\u8ff7\u4eba\u7684V\u9818\uff0c\u6f2b\u756b\u98a8\u683c\u7684\u756b\u9762\u548c\u7e7d\u7d1b\u7684\u80cc\u666f"} +{"id": "3004203", "video_name": "27397150-fd03-5d32-aec8-651dd766982c", "text": "950\u5e74\u4ee3\u7684\u88c5\u9970\u827a\u672f\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u79d1\u5e7b\u5927\u90fd\u5e02\u673a\u5668\u4eba\uff0c\u745e\u514b\u00b7\u963f\u83ab\u5c14\uff08Rick Amor\uff09\u98ce\u683c\u3002"} +{"id": "2003200", "video_name": "91276873-9ef8-5d74-8ce4-a96c7d16d161", "text": "\u91ca\u8fe6\u725f\u5c3c\u4e0e\u5f1f\u5b50\u4eec\u5750\u5728\u4e00\u8d77\u65f6\u7684\u573a\u666f\u3002"} +{"id": "1006639", "video_name": "79b3475c-ba84-5bd3-bb0a-4fadc1e0e3f5", "text": "\u4e24\u4e2a\u4eba\u5728\u590d\u53e4\u672a\u6765\u7a7a\u95f4\u6e2f\u53e3\u4e2d\u60ca\u614c\u5931\u63aa\u5730\u4ea4\u8c08\uff0c\u827a\u672f\u98ce\u683c\u7531\u7406\u67e5\u5fb7\u2022\u79d1\u672c\u521b\u4f5c\u3002"} +{"id": "0003714", "video_name": "42408874-c604-5eaf-84cb-d254fc205469", "text": "\u534a\u4eba\u534a\u9c7c\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "6004122", "video_name": "3ac9547c-9300-59eb-8edb-b7fdce47b17e", "text": "\u4e00\u53ea\u5c0f\u7761\u89c9\u7684\u767d\u8272\u53ef\u7231\u732b\u8eba\u5728\u7c89\u8272\u7684\u6795\u5934\u4e0a\u3002\u5b83\u7684\u540e\u9762\u662f\u4e00\u6247\u7a97\u6237\u3002"} +{"id": "7004810", "video_name": "f807ce64-b9d1-59f9-b4a6-f4f78870ae52", "text": "\u8b66\u5bdf\u76f4\u5347\u673a\u98de\u8d8a\u5927\u9ebb\u7530\u5730\u3002"} +{"id": "7002226", "video_name": "026b0017-9082-56bc-89f0-b053d6efc042", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u89c6\u89d2\u6f2b\u6b65\u5728\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4e2d\uff0c\u8d85\u9ad8\u6e05\uff0c\u8d85\u73b0\u5b9e\u7684\u89c6\u9891\uff0c\u5bbd\u9ad8\u6bd4\u4e3a9:16\u3002"} +{"id": "5001659", "video_name": "dd022fe5-22aa-5dd1-873f-794d8ef07c6c", "text": "\u9f99\u5377\u98ce\u7ecf\u8fc7\u53a8\u623f\uff0c\u6240\u6709\u7684\u98df\u7269\u90fd\u4e0d\u89c1\u4e86\u3002"} +{"id": "1004712", "video_name": "577eb028-8d6c-5232-bd68-dc16f1ceefad", "text": "\u72d7\u559c\u6b22\u73a9\u63a5\u7403\u548c\u56db\u5904\u5954\u8dd1\u3002"} +{"id": "4004548", "video_name": "c3dc44a6-3c0c-558e-973b-e15e0a86814f", "text": "\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\uff0c\u662f\u4e00\u5f20\u5c71\u7f8a\u5728\u7530\u91ce\u4e2d\u4fef\u77b0\u7684\u56fe\u7247\u3002"} +{"id": "2004182", "video_name": "15e20471-82d1-598d-a881-08e09203bd0a", "text": "\u9178\u5976\u88ab\u6652\u5728\u592a\u9633\u4e0b\u7684\u89c6\u9891"} +{"id": "7002372", "video_name": "b7a633d3-0890-57b0-8a8d-b0459ce9713c", "text": "\u4e00\u53ea\u62e5\u6709\u7956\u6bcd\u7eff\u8272\u773c\u775b\u7684\u53cb\u597d\u72d0\u72f8\u51fa\u73b0\u5728\u5c0f\u8def\u4e0a\uff0c\u5e76\u793a\u610f\u9732\u5a1c\u8ddf\u968f\u5b83\u8fdb\u5165\u795e"} +{"id": "0003203", "video_name": "3928bffe-c961-5ebf-8144-2a69632cc321", "text": "\u7ef4\u4eac\u5973\u6218\u58eb\u4e3e\u8d77\u624b\u6765\uff0c\u51c6\u5907\u6218\u6597\u3002"} +{"id": "0003396", "video_name": "3ce12ad2-c25e-52b6-a118-d8385153ec14", "text": "\u6db2\u4f53\u5728\u4e00\u5f20\u6050\u6016\u7684\u4fee\u5973\u8138\u4e0a\u6ef4\u4e0b\uff0c\u5448\u7070\u5ea6\uff0c\u5f17\u91cc\u8328\u00b7\u6717\u98ce\u683c\u3002"} +{"id": "6002287", "video_name": "47e945d8-5a02-5bb1-a95e-78b586eaf3d9", "text": "\u6728\u677f\u6728\u6761\u51fa\u552e\uff0c\u4ef7\u683c\u4e0d\u8d35\u3002"} +{"id": "4003545", "video_name": "8ecc9423-8826-5b7f-b61d-2f3e29e78085", "text": "\u8bf7\u521b\u4f5c\u4e00\u5f20\u753b\u9762\uff0c\u662f\u4e00\u4e2a20\u5c81\u7684\u52a8\u6f2b\u7537\u5b69\uff0c\u5e26\u7740\u773c\u955c\uff0c\u4ece\u4fa7\u9762\u671b\u53bb\uff0c\u4ed6\u5728\u8def\u4e2d\u592e\u7ad9\u7acb\uff0c\u8868\u60c5"} +{"id": "3005859", "video_name": "601f2421-800f-54f0-8c0d-44e91a05ceef", "text": "\u8d35\u5bbe\u72ac\u5728\u6d77\u6ee9\u4e0a\u505a\u540e\u7a7a\u7ffb"} +{"id": "6004892", "video_name": "d5e3361a-1343-5531-8f3f-84e0db6f55ca", "text": "1970\u5e74\u4ee3\u7684\u590d\u53e4\u672a\u6765\u79d1\u5e7b\u573a\u666f\uff0c\u5750\u5728\u673a\u5668\u4eba\u548c\u690d\u7269\u65c1\u5438\u70df\uff0c\u70df\u7070\u98de\u626c\uff0c\u5531\u7247\u673a\u64ad"} +{"id": "4003736", "video_name": "0b454896-026d-5688-b718-3ae939a669c0", "text": "\u4e03\u4e2a\u5929\u4f7f\u5728\u4e91\u4e2d\u98de\u7fd4\uff0c\u671d\u5411\u955c\u5934\uff0c\u80cc\u666f\u662f\u5929\u5802\uff0c\u6770\u4f5c\uff0c8k\uff0car 16:9\uff0c\u8d1f\u9762\u63d0\u793a\uff1a\u624b"} +{"id": "0004051", "video_name": "024d808f-c250-5216-8f14-40456201a922", "text": "35\u6beb\u7c73\u80f6\u7247\uff0c\u4e00\u8f8670\u5e74\u4ee3\u7684\u6c7d\u8f66\u5728\u6c99\u6f20\u4e2d\u95f4\u7206\u70b8\u3002"} +{"id": "6003090", "video_name": "da13de62-c586-589c-9e05-3be03a6bff7f", "text": "\u4e00\u4e2a\u7a7f\u7740\u79d1\u6280\u670d\u88c5\u7684\u4eba\u4ece\u4e00\u5ea7\u5927\u697c\u8df3\u5230\u53e6\u4e00\u5ea7\uff0c\u8fdb\u5165\u672a\u6765\u57ce\u5e02\uff0c\u8d5b\u535a\u670b\u514b\u7684\u573a\u666f\uff0c\u50cf\u7535\u5f71\u4e00"} +{"id": "0006790", "video_name": "332d8b72-0b7b-5615-851e-61b1bb4aad8d", "text": "\u7075\u9b42\u88c2\u7f1d\u795e\u7947\u7578\u5f62\u773c\u775b\u7684\u7279\u5199\uff0c\u7d2b\u8272\uff0c\u8001\u65e7\u7684\u5f55\u50cf\u5e26\u98ce\u683c\uff0c\u53d1\u73b0\u5f55\u50cf\u5e26\uff0c\u6570\u5b57\u6050"} +{"id": "1005980", "video_name": "6de25bcd-9990-540a-b3e9-f3f524d20843", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u7ad9\u5728\u7a97\u8fb9\uff0c\u795e\u79d8\u5730\u89c2\u770b\u7740\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u7535\u5f71\u5f0f\u7684\u73b0\u5b9e\u611f\uff0c\u65e7\u7535\u5f71\u573a\u666f8K"} +{"id": "3004349", "video_name": "b96f1f9d-06ed-53aa-836b-b38c2a1457dc", "text": "\u89c6\u9891\u5e94\u4e3a15\u79d2\uff0c\u5c55\u793a\u5177\u6709\u5149\u73af\u592a\u9633\u6548\u679c\u3001\u9752\u7d2b\u8272\u5c0f\u6781\u5149\u4ee5\u53ca\u8010\u5fc3\u7684\u7070\u8272\u591a\u7ef4\u4e16\u754c\u80cc\u666f\u3002"} +{"id": "1004645", "video_name": "565c27eb-5de8-5d34-9192-8313dfd060f3", "text": "\u6e38\u620f\u9f20\u6807\u4fa7\u9762\u89c6\u56fe\uff0c\u9f20\u6807\u5feb\u8282\u594f\u7535\u5f71\u5411\u524d\u3002"} +{"id": "4004497", "video_name": "6ea1376b-1861-5965-acac-2d69adf7a9ef", "text": "\u4e00\u4e2a\u7537\u5b69\u51b3\u5b9a\u4e0d\u5077\u8d70\u94b1\u5e76\u7559\u4e0b\u94b1\u7684\u753b\u9762\u3002"} +{"id": "3006920", "video_name": "e91d67f8-5e7f-5965-9a85-53ae1df05f7f", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u4e0e\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4ea4\u8c08\u3002\n\nSource sentence: I love Chinese food. \n\n\u6211\u559c\u6b22\u4e2d\u56fd\u83dc\u3002"} +{"id": "6003860", "video_name": "4ca22959-df39-5ad0-ac4e-c2fc1cb73648", "text": "\u5fd9\u788c\u7684\u5e02\u96c6\u4e0a\uff0c\u4eba\u7fa4\u4e2d\u5305\u62ec\u552e\u5356\u70df\u96fe\u5f25\u6f2b\u7684\u635e\u9762\u7684\u5c0f\u644a\u3002"} +{"id": "0003709", "video_name": "4221bc31-a109-5f6e-bb6e-0638c71c6233", "text": "\u5730\u4e2d\u6d77\u4e0a\u7684\u5fae\u98ce\uff0c\u6cd5\u56fd\u7535\u5f71\u7684\u6770\u4f5c\u3002"} +{"id": "2007169", "video_name": "6d7246f7-8fa5-5fad-a070-c9d3f0de5a85", "text": "\u82f1\u683c\u59c6\u7684\u623f\u5b50\u5728\u6536\u5230\u793c\u7269\u540e\u4e0d\u4e45\u5c31\u88ab\u70e7\u6bc1\u4e86\u3002"} +{"id": "4004467", "video_name": "0d56575d-2888-5077-ae37-3d910bb1a378", "text": "\u4ed6\u4eec\u7684\u7b2c\u4e00\u6b65\u662f\u89e3\u8bfb\u5173\u4e8e\u6012\u6d9b\u7684\u90a3\u90e8\u5206\u5185\u5bb9\u3002\u7ecf\u8fc7\u4e00\u756a\u601d\u8003\uff0c\u4ed6\u4eec\u63a8\u65ad\u51fa\u8fd9\u53ef\u80fd\u6307\u7684\u662f\u7011\u5e03\u3002\u6731\u7eb3\u65af"} +{"id": "4002015", "video_name": "4ad46236-e214-5dbf-b9d2-6c3437330705", "text": "\u5929\u7a7a\u4e2d\u7684\u70df\u706b\u662f\u9ed1\u767d\u7684\u3002"} +{"id": "8003869", "video_name": "37b3c225-11a3-59d4-93ec-2d91b4179513", "text": "\u5728\u91cc\u7ea6\u70ed\u5185\u5362\u5929\u9645\u7ebf\u4e0a\u6643\u52a8\u7684\u6587\u672c\uff1a\u81ea\u7531\u640f\u51fb\u751f\u6d3b\u65b9\u5f0f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003365", "video_name": "92cc1ad9-9f85-5313-ae08-6f8b2b6d40b3", "text": "\u7a7f\u7740\u72c2\u6b22\u8282\u670d\u88c5\u7684\u5973\u5b69\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\u3002"} +{"id": "2003270", "video_name": "146387bb-b2cd-574b-9fd0-4b8b5040fac9", "text": "\u9752\u5c11\u5e74\u5973\u5b69\u5728\u62f3\u51fb\u6bd4\u8d5b\u4e0a\u3002"} +{"id": "3004864", "video_name": "bfe496b9-095e-54c9-803f-c0e236eae43f", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u9053\u58eb\u5728\u5c71\u6c34\u4e4b\u95f4\u8c08\u8bba\uff0c4k"} +{"id": "3005552", "video_name": "0329d72a-05be-56ec-a8a3-a61e4baa2cd3", "text": "\u7f8e\u4e3d\u7684\u63a2\u6208\u821e\u8005\uff0c\u5e7f\u89d2\u955c\u5934\uff0c8K\uff0c\u903c\u771f\u7684\u7535\u5f71\u5316\u3002"} +{"id": "6003716", "video_name": "945769d4-6536-5856-8da0-5cc590224fae", "text": "\u4e00\u4e2a\u5b9e\u9a8c\u5ba4\u4e3a\u51ac\u5b63\u5047\u671f\u88c5\u9970\u7684\u89c6\u9891\u3002\u573a\u666f\u4e2d\u6709\u591a\u4f4d\u79d1\u5b66\u5bb6\u548c\u7814\u7a76\u4eba\u5458\u6765\u56de\u8d70\u52a8\uff1b\u6709\u4e9b\u6b63\u5728\u5de5\u4f5c\u548c"} +{"id": "0005862", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u57c3\u53ca\u524d\uff0c\u7a7f\u7740\u5bfb\u5b9d\u670d\u88c5\u3002"} +{"id": "1006505", "video_name": "7709fb1c-d3e5-5ae5-ba97-8bb46a8b2131", "text": "Tumblr\u4e0a\u60b2\u4f24\u7684\u5973\u5b69\u6c1b\u56f4\uff0c\u5973\u5b69\u51dd\u89c6\u7740\u955c\u5b50\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "7004034", "video_name": "6b3f0da9-0dab-528a-94f2-9c2c66a3da0a", "text": "\u5927\u536b\u548c\u827e\u7c73\u8389\u6fc0\u70c8\u4e89\u5435\uff0c\u773c\u6cea\u5728\u4ed6\u4eec\u773c\u4e2d\u6d8c\u8d77\u3002"} +{"id": "2005127", "video_name": "7178dfa9-22a4-584e-bbb0-190cb48a0e61", "text": "\u4e00\u53ea\u62e5\u6709\u957f\u800c\u67d4\u8f6f\u4e1d\u7ef8\u822c\u7684\u9ed1\u8272\u6bdb\u53d1\u7684\u732b\u6b63\u9a7e\u9a76\u4e00\u8f86\u767d\u8272\u675c\u5361\u8fea\u602a\u517d\uff0c\u968f"} +{"id": "0004645", "video_name": "0c8c705e-878e-5171-af64-b143eb2e4e52", "text": "\u5728\u4e00\u4e2a\u57c3\u53ca\u80cc\u666f\u4e0b\uff0c\u521b\u9020\u4e00\u4e2a\u7537\u4eba\u900f\u8fc7\u7a97\u6237\u6ce8\u89c6\u7740\u60a3\u6709\u795e\u79d8\u75be\u75c5\u7684\u4eba\u4eec\uff0c\u4ed6\u4eec\u7684\u75c7"} +{"id": "8001855", "video_name": "7877af70-ee79-59e4-b7a1-55bd90a237b0", "text": "\u653e\u5927\u76f8\u673a\u62cd\u6444\uff0c\u52a8\u753b\u6574\u4e2a\u573a\u666f\uff0c\u79fb\u52a8\u82b1\u6735\uff0c\u9b54\u5e7b\u4e16\u754c\uff0c8K\uff0c\u5168\u9ad8\u6e05\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u4f18\u8d28\uff0c\u5de5"} +{"id": "0003955", "video_name": "00887221-1634-59e3-a3db-69b26ddc58e6", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u7eb3\u4e0e\u963f\u8d3e\u9c81\u7eb3\u4e4b\u95f4\u7684\u53cb\u8c0a\u662f\u5370\u5ea6\u795e\u8bdd\u4e2d\u6700\u5177\u6807\u5fd7\u6027\u548c\u6301\u4e45\u7684\u53cb\u8c0a\u4e4b\u4e00\u3002"} +{"id": "3003400", "video_name": "b71cd16b-d9cc-5598-98e2-bb6549027420", "text": "\u5c0f\u4e11\u5927\u7b11\uff0c\u52a8\u4f5c\u8fde\u8d2f\uff0c\u5b8c\u7f8e\u6d41\u7545\u3002"} +{"id": "2006138", "video_name": "2f0441d4-07d6-5de3-ba2d-8d4d56e3c029", "text": "\u5728\u514b\u6d1b\u5fb7\u00b7\u83ab\u5948\u7684\u98ce\u683c\u4e2d\uff0c\u5b69\u5b50\u4eec\u5728\u96e8\u4e2d\u7684\u8349\u5730\u4e0a\u8e22\u8db3\u7403\u3002\n\nSource sentence: The restaurant serves traditional Chinese cuisine with a"} +{"id": "1005270", "video_name": "60ea058e-f587-5bdb-b3b2-c0375fee9aec", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5728\u6cb3\u8fb9\u7684\u4ead\u5b50\u91cc\u8bfb\u4e66\u3002\u5fae\u98ce\u5439\u8fc7\u5979\u5929\u771f\u7684\u8138\u5e9e\uff0c\u5e26\u6765\u4e86\u67d4\u548c\u7684\u5fae\u7b11\u3002"} +{"id": "4003138", "video_name": "a8e71ce2-613a-5504-bce0-023250858b81", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u886c\u886b\u7684\u5370\u5ea6\u7537\u5b69\uff0c\u80cc\u5bf9\u7740\u95e8\u7ad9\u5728\u90a3\u91cc\uff0c\u5370\u5ea6\u6751\u5e84\uff0c\u591c\u665a\u6709\u5927\u96e8\uff0c"} +{"id": "2007796", "video_name": "03e635b4-b93e-5db6-bf8c-bfeeb02ef377", "text": "\u5564\u9152\u74f6\u8fdb\u5165\u4e86\u4e00\u4e2a\u76f4\u5f84\u4e3a8k\u7684\u866b\u6d1e\u4e2d\u5fc3\u3002"} +{"id": "6003455", "video_name": "78449234-0a7c-55c5-9924-ab38bdb90fa1", "text": "\u4e00\u4f4d\u5e05\u54e5\u548c\u4e00\u4f4d\u7f8e\u5973\u5728\u6162\u6162\u5730\u70ed\u60c5\u821e\u8e48\u3002"} +{"id": "4003719", "video_name": "ba767d40-38d7-5111-b455-f0fcd8856251", "text": "Source sentence: \u68da\u5c4b\u5899\u58c1\u4e0a\u9634\u90c1\u7684\u76f8\u6846\u753b\u50cf\n\nTranslation: \u68da\u5c4b\u7684\u5899\u4e0a\u6302\u7740\u9634\u90c1\u7684\u76f8\u6846\u753b\u50cf\u3002"} +{"id": "4004621", "video_name": "a6fdaa0d-134a-5d04-ab46-418d12bd95d7", "text": "X\u7b26\u53f7\uff0c\u5f3a\u8c03\u5b83\u4e0d\u5339\u914d\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003140", "video_name": "da522a0c-1745-5acb-8246-91902f2bd22c", "text": "\u5de8\u578b\u673a\u5668\u4eba\u7537\u5b50\u50cf\u53d8\u5f62\u91d1\u521a\u4e00\u6837\u6253\u6597\u53f2\u8bd7\u822c\u7684\u7535\u5f71\u3002"} +{"id": "7004512", "video_name": "b42cb3d8-2a7e-5b13-a633-aa65b1b48903", "text": "\u4e00\u4f4d\u5973\u63a2\u9669\u5bb6\u7ad9\u5728\u5c71\u9876\u4e0a\u4fef\u77b0\u65e5\u51fa\u3002"} +{"id": "7003534", "video_name": "d0988eb1-cd29-5348-8e48-2aff58389b7c", "text": "\u603b\u7ed3AI\u4f53\u9a8c\uff0c\u8ba9\u89c2\u4f17\u5728\u76ee\u7779\u8fd9\u4e2a\u9ed1\u6697\u626d\u66f2\u7684\u76d1\u72f1\u53ef\u6015\u73b0\u5b9e\u7684\u540c\u65f6\uff0c\u7559\u4e0b\u4e00\u79cd\u65e0\u671b\u7684\u538b"} +{"id": "2007484", "video_name": "231fd0a9-df69-5206-b567-bafc04298162", "text": "\u5979\u628a\u6807\u9898\u7ed1\u5728\u7ebf\u4e0a\u98de\u8d70\u4e86\uff0c\u611f\u5230\u5f88\u5f00\u5fc3\u30023D\u52a8\u753b\u3002"} +{"id": "2006782", "video_name": "0b9c1fdf-e4d0-52ad-8560-79f8b6cb5e1f", "text": "\u4f7f\u7528\u4e73\u9999\u548c\u6ca1\u836f\u5728\u53e4\u57c3\u53ca\u7684\u808c\u80a4\u6c34\u7597\u4e2d\u6cbb\u7597\u57c3\u53ca\u5973\u6027\uff0c\u771f\u5b9e\u3001UHD\u3001\u7535\u5f71\u5316\u7684\u52a8\u6001\u3002"} +{"id": "1005808", "video_name": "6acc92f6-54dd-5dd6-a732-5ab4d3c0405d", "text": "\u7231\u60c5\u6545\u4e8b\u6709\u5feb\u4e50\u548c\u60b2\u4f24\u7684\u65f6\u523b\u3002"} +{"id": "4004768", "video_name": "d163ba08-fad9-5622-95dd-62eca662ff80", "text": "\u4e00\u4f4d\u7a7f\u7740\u84dd\u8272T\u6064\u7684\u5c11\u5973\u6b63\u5728\u624b\u673a\u652f\u67b6\u4e0a\u4fee\u7406\u624b\u673a\u3002"} +{"id": "7002633", "video_name": "9dbd9262-c842-524c-97fb-73b50c532c59", "text": "\u90a3\u4e2a\u5973\u5b69\u6b63\u5750\u7740\u542c\u7740lofi chill\u97f3\u4e50\u3002"} +{"id": "1006904", "video_name": "7e3379da-508a-541b-9676-66dfbe4781de", "text": "\u4e00\u4e2a\u67e0\u6aac\u5f62\u8c61\uff0c\u6709\u773c\u775b\u548c\u8eab\u4f53\uff0c\u5728\u8df3\u821e\uff0cVHS\uff0cSuper 8\u3002"} +{"id": "0006966", "video_name": "35f5d2a5-50bf-58c1-a467-a1ea46a43894", "text": "\u4e00\u7fa4\u4eba\u8bbe\u7f6e\u9677\u9631\uff0c\u4e3a\u4e86\u5728\u72fc\u665a\u95f4\u7684\u72c2\u5954\u4e2d\u4f0f\u51fb\u5b83\u4eec\uff0c\u4ed6\u4eec\u5728\u68ee\u6797\u4e2d\u5efa\u9020\u4e86\u4e00\u4e2a\u8ff7\u5bab\u8def\u5f84"} +{"id": "8002218", "video_name": "04b0bbdf-d8f0-5e00-89b6-23a16d2ad3ed", "text": "\u521b\u4f5c\u4e00\u4e2a\u5e74\u8f7b\u5b64\u5973\u827e\u62c9\u7684\u5f62\u8c61\uff0c\u5979\u624b\u6301\u4e00\u9897\u5c0f\u6a61\u5b50\uff0c\u8138\u4e0a\u9732\u51fa\u60ca\u5947\u7684\u8868\u60c5\u3002\u6a61\u5b50\u5fae"} +{"id": "3006995", "video_name": "64e17745-c508-5988-92b8-b9ebe2a5521b", "text": "\u5c06\u9540\u4eae\u94e0\u7532\u7684\u7235\u58eb\u5a01\u5ec9\u653e\u5927\u3002"} +{"id": "2006302", "video_name": "cfd59356-93c0-57e8-b0bd-4ae111e5e34a", "text": "\u7ea6\u7ff0\u00b7\u536b\u65af\u7406\u7267\u5e08\u5728\u5e26\u4e50\u961f\u7684 Hillsong \u6559\u5802\u7a7f\u7740\u793c\u670d\u8bb2\u9053\u3002"} +{"id": "7002366", "video_name": "3c9143de-e89c-58ff-a568-ce79c27b67fe", "text": "\u4f7f\u7528\u5341\u5b57\u67b6\u4e3a\u4e3b\u9898\uff0c\u4e3a\u4e00\u5bb6\u51fa\u552e\u4e0e\u8036\u7a23\u6709\u5173\u7684\u5404\u79cd\u4ea7\u54c1\u7684\u5546\u5e97\u8bbe\u8ba1\u4e00\u4e2a\u548c\u5e73\u4e3b\u9898\u7684\u6807\u5fd7\u3002\u8bf7\u52ff\u4f7f\u7528\u8036\u7a23\u7684\u5f62"} +{"id": "4004729", "video_name": "dd0c28d2-1b7e-5e87-872f-c20312f93c60", "text": "\u4e00\u4e2a\u4eba\u624b\u628a\u4e00\u4e2a\u5c0f\u82af\u7247\u63d2\u5165\u63a7\u5236\u9762\u677f\u7684\u63d2\u69fd\u91cc\u3002"} +{"id": "1006392", "video_name": "74f7b380-4de0-5e5a-ab4c-8bcb349d9a78", "text": "\u5973\u5b69\u7a7f\u7740\u957f\u5927\u8863\u5728\u9ed1\u6697\u4e2d\u8d70\u7740\uff0c\u52a0\u4e0a\u96e8\u6c34\uff0c\u52a0\u4e0a\u602a\u7269\uff0c\u52a0\u4e0a\u843d\u4e0b\u7684\u661f\u661f\u3002"} +{"id": "7004220", "video_name": "af8f8cda-adad-575f-a132-6dc26d8f96a0", "text": "\u65b0\u751f\u513f\u63e1\u4f4f\u624b\u6307\u7684\u9ed1\u767d\u7167\u7247\u3002"} +{"id": "6003012", "video_name": "f05cdea2-e3a1-5ea1-8579-936511f410f7", "text": "\u4eba\u4eec\u8c08\u8bba\u795e\u79d8\u4e8b\u6545\uff0c\u5b8c\u5168\u8be6\u7ec6\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u8d85\u9ad8\u6e05\u7684\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u7684\uff0c4k\uff0c16:9\u3002"} +{"id": "8002027", "video_name": "533aa793-e9b9-527a-9d78-cc7518267bc2", "text": "\u4e24\u4e2a\u5b69\u5b50\u5728\u4e1b\u6797\u4e2d\u8d70\u52a8\uff0c\u662f\u52a8\u753b\u4e09\u7ef4\u7684\u3002"} +{"id": "1005781", "video_name": "6a6b3e4a-ff2b-5d9d-a12a-4662161f1ce4", "text": "\u7528\u6c34\u6e85\u6d12 Strellson\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8002216", "video_name": "05e311b1-6808-5bd4-8318-85492725d988", "text": "\u8fd9\u5e45\u7b80\u5355\u7684\u58c1\u753b\u63cf\u7ed8\u4e86\u9ad8\u5904\u7684\u83e0\u841d\u3002"} +{"id": "0003752", "video_name": "42cb2873-a066-54fd-8744-c8f6c1ffa3db", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5efa\u7b51\u7269\u4e0a\u81ea\u7531\u6cf3\u8dd1\u6b65\uff0c\u4f7f\u75283D\u3001\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "4002983", "video_name": "40d73043-ea2e-5e54-a6bd-38fd09a19076", "text": "\u6781\u81f4\u8d85\u73b0\u5b9e\u7684\u5e03\u5a03\u5a03\u7269\u7406\u6548\u679c\uff0c\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u4e0d\u65ad\u6454\u4e0b\u697c\u68af\u3002"} +{"id": "8002143", "video_name": "85355d12-4f9e-5211-b25a-79a0ae40850b", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u6e05\u771f\u5bfa\u91cc\uff0c\u53e6\u4e00\u8fb9\u7684\u4eba\u4eec\u5728\u770b\u7535\u5f71\u3002"} +{"id": "3005498", "video_name": "3763265c-ec86-57c3-b572-740960418292", "text": "\u957f\u9888\u9e7f\u5f00\u7740\u4e00\u8f86\u8f66\uff0c\u91cc\u9762\u5750\u7740\u56db\u53ea\u732b\u3002\n\nSource sentence: I am learning Chinese language because I want to travel to China someday. \n\n\u6211\u5b66\u4e60\u4e2d\u6587"} +{"id": "8001881", "video_name": "d0881992-961a-54e6-8c51-d0e141517f6a", "text": "\u9a6c\u5fb7\u91cc\u529e\u516c\u5ba4\u91cc\u4e00\u540d\u7537\u5b50\u5728\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u5de5\u4f5c\u3002"} +{"id": "1004988", "video_name": "5c38d3c0-e5af-5f92-9302-460e2296a303", "text": "\u6d77\u4e0a\u7684\u5723\u8bde\u6811\u56fe\u7247\u3002"} +{"id": "4002182", "video_name": "fa54810f-eb61-5f82-865f-a5a61414ba22", "text": "\u7ecf\u5178\u4ed9\u4fa0\u98ce\u683c\u3002\u8239\u5185\u7684\u6b66\u8005\u4eec\u4ecd\u5728\u804a\u5929\u7b11\u95f9\uff0c\u8ba8\u8bba\u5982\u4f55\u5728\u627e\u5230\u7075\u5c9b\u4ed9\u6751\u540e\u6210\u4e3a\u9ad8\u624b"} +{"id": "1003634", "video_name": "42ee8909-67c1-58d7-9986-ec9cf9b07fc0", "text": "\u52a8\u753b\u9ed1\u8272\u5e3d\u886b\u7537\u5b69\u5728\u6d3e\u5bf9\u4e0a\u548c\u5973\u53cb\u8df3\u821e\uff0c\u51ac\u5b63\u3002"} +{"id": "3005443", "video_name": "94c712ac-3d21-5bd3-b8b5-214861b6987a", "text": "\u4ece\u7a97\u6237\u91cc\u770b\u7740\u96e8\u6c34\u6ef4\u843d\u5728\u5730\u9762\u4e0a\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "0003589", "video_name": "400b5221-b7f0-515f-b390-7ad42a3e0e5a", "text": "\u4f60\u771f\u6b63\u7684\u6f5c\u529b\uff0c\u4e00\u9897\u5c1a\u672a\u53d1\u6398\u7684\u5b9d\u77f3\uff0c\u8eba\u5728\u4f60\u8212\u9002\u533a\u7684\u8fb9\u754c\u4e4b\u5916\uff0c\u7b49\u5f85\u3001\u6e34\u671b\u7740"} +{"id": "7002677", "video_name": "55bdb2b6-777a-5a2e-8c4b-3e76a34ae5e7", "text": "\u6211\u5728\u592a\u7a7a\u8239\u4e2d\uff0c\u7136\u540e\u8d70\u5411\u7a97\u6237\u770b\u5730\u7403\uff0c\u518d\u8d70\u5411\u592a\u7a7a\u8239\u95e8\u5916\u63a2\u7d22\u3002\u7136\u540e\u6211\u56de\u5230\u592a\u7a7a\u8239\uff0c\u51b3\u5b9a"} +{"id": "4002565", "video_name": "8821aa15-f872-502f-a6eb-167508df8525", "text": "\u77f3\u5934\u822c\u7684\u5fc3\u53d8\u6210\u4e86\u6709\u8840\u6709\u8089\u7684\u4eba\u7c7b\u4e4b\u5fc3\u3002"} +{"id": "2004937", "video_name": "6aa36e0e-e298-525e-9aa0-8b71cbce3621", "text": "\u4e00\u95f4\u73b0\u4ee3\u7684\u8bbe\u8ba1\u529e\u516c\u5ba4\uff0c\u62e5\u6709\u6781\u7b80\u4e3b\u4e49\u7684\u5efa\u7b51\u98ce\u683c\u548c\u7f8e\u4e3d\u7684\u5149\u7ebf\u900f\u8fc7\u7a97\u6237\u7167\u5c04\u800c\u6765\u3002\u4fe1\u606f\uff1a"} +{"id": "6004158", "video_name": "fdc8afd9-5c71-5328-b1a9-e8b1a08a2b05", "text": "\u8fdb\u5165\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u673a\u5668\u4eba\u3002"} +{"id": "2006341", "video_name": "7eb291b1-5fc4-563b-aed8-b5fddcbb732e", "text": "\u7070\u59d1\u5a18\u516c\u4e3b\u5750\u5728\u8f7f\u5b50\u91cc\uff0c\u7531\u767d\u9a6c\u62c9\u7740\u98de\u5feb\u5730\u671d\u7740\u7687\u5bab\u524d\u8fdb\uff0c\u661f\u7a7a\u4e0b\uff0c\u7687\u5bab\u5728"} +{"id": "8001328", "video_name": "c67aaf8c-39c2-5042-841b-2d6aadafa9b3", "text": "\u6fc0\u70c8\u7684\u677f\u7403\u6bd4\u8d5b\uff0c\u5c55\u793a\u4e86\u4ee4\u4eba\u6fc0\u52a8\u7684\u77ac\u95f4\uff0c\u5982\u754c\u5916\u7403\u3001\u51fb\u7403\u5458\u51fa\u5c40\u548c\u9009\u624b\u4eec\u7684\u70ed\u60c5\u53cd\u5e94"} +{"id": "0003979", "video_name": "00fd88a5-39e0-5766-82ce-cdf5ae98be75", "text": "\u5728\u4e00\u4e2a\u5927\u96e8\u7684\u591c\u665a\uff0c\u5e10\u7bf7\u91cc\u71c3\u7740\u5c0f\u6728\u67f4\u53d6\u6696\u3002"} +{"id": "8001036", "video_name": "2533856f-b230-545e-ba72-25b3e8b0d2f2", "text": "\u4e00\u4e2a\u5973\u5b69\u513f\u6b7b\u4e86\uff0c\u7136\u540e\u4ee5\u7740\u71c3\u70e7\u7684\u76ae\u80a4\u91cd\u751f\u3002"} +{"id": "8001408", "video_name": "552dc43e-5a46-53b1-80c0-2c457b143783", "text": "\u5236\u4f5c\u4e00\u4e2a\u8ff7\u4eba\u7684\u89c6\u9891\uff0c\u7f8e\u4e3d\u5730\u6982\u62ec\u5766\u6851\u5c3c\u4e9a\u7684\u5b81\u9759\u6c1b\u56f4\u548c\u5b83\u5b81\u9759\u7684\u5929\u6c14\uff0c\u800c\u4e0d\u9700\u8981\u51fa"} +{"id": "4004321", "video_name": "ce950914-cdde-5c43-8936-f49029845b34", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u8d70\u7740\u722c\u5c71\u3002"} +{"id": "7003121", "video_name": "461d2c44-66be-542f-ba6b-0f487161eb20", "text": "\u6770\u68ee\u548c\u9732\u897f\u4e00\u8d77\u6bd4\u8d5b\uff0c\u6311\u6218\u6781\u9650\uff0c\u5efa\u7acb\u8d77\u6df1\u539a\u7684\u8054\u7cfb\u3002"} +{"id": "2003647", "video_name": "a852361d-b645-5457-b4d7-48f68e4eca75", "text": "\u5bfc\u81f4\u706d\u7edd\u4e8b\u4ef6\u7684\u56e0\u7d20\u3002"} +{"id": "4003570", "video_name": "7b1ef1c1-a9e4-5ffe-af06-a6d67a95d5fd", "text": "\u4e00\u5e452D\u5361\u901a\u56fe\u50cf\uff0c\u5c55\u793a\u4e86\u62c5\u5fe7\u7684\u56fd\u738b\u7ad9\u5728\u8c26\u900a\u7684\u5bab\u6bbf\u5165\u53e3\uff0c\u6ce8\u89c6\u7740\u5730\u5e73\u7ebf\u3002"} +{"id": "4003668", "video_name": "721a3e62-f933-5aed-a77f-da600c62f037", "text": "\u751f\u547d\u4e4b\u6811\u3001\u5b87\u5b99\u3001\u8109\u8f6e\u3001\u6bcd\u4eb2\u5730\u7403\u3001\u53e4\u8001\u3001\u7597\u6108\u3001\u52a8\u6001\u5f71\u50cf\u3001\u957f\u89c6\u9891\u3001\u80fd\u91cf\u3001\u63d0\u5347\u3002"} +{"id": "1005518", "video_name": "659eac5f-ab70-5de1-9fc6-053cc660607d", "text": "\u5728\u9065\u8fdc\u7684\u5b87\u5b99\u4e2d\uff0c\u53db\u9006\u98de\u884c\u5458\u963f\u4e3d\u5a05\u00b7\u8bfa\u74e6\u8239\u957f\u4e0e\u661f\u9645\u5e1d\u56fd\u5c55\u5f00\u4e86\u4e00\u573a\u7ade"} +{"id": "0003172", "video_name": "388e801b-42fe-5d51-9a98-56bc02b91582", "text": "\u4e00\u53ea\u5c0f\u5b54\u96c0\u4ece\u86cb\u4e2d\u5b75\u5316\u7684\u65f6\u95f4-lapse\u3002"} +{"id": "4002681", "video_name": "c59aeb0f-9254-5b94-94b0-586af3567370", "text": "style.\n\n\u827a\u672f\u4e0e\u7f8e\u7684\u5947\u8ff9\uff0c\u4e00\u53ea\u7f8e\u4e3d\u800c\u52c7\u6562\u7684\u6d77\u9e25\uff0c\u62e5\u6709\u9ec4\u8272\u548c\u767d\u8272\u7684\u7fbd\u6bdb\uff0c\u5728\u5929\u7a7a\u9ad8"} +{"id": "4002396", "video_name": "7f9dc684-ea34-5044-8492-f6fe9f4cc709", "text": "\u4f60\u4e0d\u80fd\u611f\u52a8\u522b\u4eba\u7684\u8138\u3002"} +{"id": "1003739", "video_name": "450607ce-7e1c-5beb-acff-cc21f36dd72a", "text": "\u5b69\u5b50\u4eec\u4e0e\u5176\u4ed6\u52a8\u7269\u56e2\u961f\u4f1a\u9762\uff0c\u5408\u4f5c\u5b8c\u6210\u4efb\u52a1\u3002\u4ed6\u4eec\u4f5c\u4e3a\u4e00\u4e2a\u56e2\u961f\uff0c\u5171\u540c\u52aa\u529b\u53d6\u5f97\u6210\u529f\u5e76\u514b\u670d\u56f0\u96be\u3002"} +{"id": "3003601", "video_name": "9693f683-15f8-5b78-9be8-7edf07035d20", "text": "\u5f00\u59cb\u7a7f\u8d8a\u4e00\u5ea7\u70ed\u5e26\u5c9b\u5c7f\u7684\u65c5\u7a0b\u3002"} +{"id": "0004514", "video_name": "0a4f2654-a67e-54e7-a43d-43dfcb4c3819", "text": "1942\u5e74\u7684\u68d5\u8910\u8272\u7535\u5f71\u5e95\u7247\uff0c\u53d1\u73b0\u4e86\u4e00\u540d\u661f\u7403\u5927\u6218\u7684\u98ce\u66b4\u5175\u5728\u4e8c\u6218\u4e2d\u7684\u753b\u9762\u3002"} +{"id": "2003553", "video_name": "ed8602d1-58e5-5e1c-8c4b-089d28913827", "text": "\u9876\u7ea7\u793e\u533a\u73a9\u73b0\u4ee3\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "2005216", "video_name": "a51b9869-80ec-50e8-b8fd-f150202ec500", "text": "\u4e00\u500b\u53e2\u6797\u5834\u666f\uff0c\u6a39\u6728\u548c\u690d\u7269\u90fd\u751f\u9577\u8302\u76db\uff0c\u4ee5\u5361\u901a\u98a8\u683c\u5448\u73fe\u3002"} +{"id": "3004407", "video_name": "5f290a75-2361-507e-bb95-a0a3ae5b30ec", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u4ece\u5927\u5b66\u6bd5\u4e1a\u5e76\u5e86\u795d\u5979\u7684\u6bd5\u4e1a\u3002\u4ed6\u4ee5\u7b2c\u4e00\u540d\u7684\u6210\u7ee9\u4ece\u5927\u5b66\u6bd5\u4e1a\u3002\u8d85\u903c\u771f\u76844K\u7535\u5f71"} +{"id": "6004270", "video_name": "4b2b6333-1e31-59dc-ae58-a0e77df9b5ce", "text": "\u8001\u5175\u4eec\u51e0\u4e4e\u6ca1\u6709\u8015\u79cd\u7ecf\u9a8c\u3002\u6bcf\u5757\u571f\u5730\u53ea\u6709\u5927\u7ea610\u82f1\u4ea9\uff0c\u8fd9\u51e0\u4e4e\u4e0d\u8db3\u4ee5\u4e3a\u751f\uff0c\u66f4\u4e0d\u7528\u8bf4\u63d0\u4f9b\u4efb\u4f55\u5f62"} +{"id": "0005129", "video_name": "155ab3ec-907f-56cd-8392-114f8ab6843e", "text": "\u6e29\u99a8\u5c0f\u5c4b\u5185\u90e8\u5e26\u58c1\u7089\u7684\u7535\u5f71\u822c\u80cc\u666f"} +{"id": "3004312", "video_name": "73bc6c92-08cc-5f96-8e0c-1fd8e1fd540f", "text": "\u71c3\u70e7\u7740\u7684\u52a8\u6f2b\u6751\u5e84\uff0c\u6eda\u6eda\u6d53\u70df\u548c\u706b\u7130\uff0c\u9003\u79bb\u7684\u6751\u6c11\u3002"} +{"id": "7002769", "video_name": "1bd9d7b1-1e5d-5fca-b02a-ee8d424e6e1a", "text": "\u5728\u5149\u6ed1\u7684\u684c\u5b50\u4e0a\u9ad8\u901f\u65cb\u8f6c\u7684\u4e00\u4e2a\u786c\u5e01\u3002"} +{"id": "4003282", "video_name": "e1450755-ecf8-51e4-bfab-c8adcade6ed9", "text": "\u4e00\u4e2a\u540d\u53eb\u83b1\u6b27\u7684\u5c0f\u72ee\u5b50\u5e7c\u5d3d\u68a6\u60f3\u6210\u4e3a\u4e1b\u6797\u4e4b\u738b\u3002"} +{"id": "1003161", "video_name": "3a3f5093-1004-5c05-90aa-aad374dd3321", "text": "\u73b0\u5b9e\u8001\u667a\u6167\u548c\u7f8e\u4e3d\u7684\u65f6\u9ae6\u5feb\u4e50\u54c8\u5229\u6ce2\u7279\u957f\u80e1\u5b50\u7684\u5355\u4eba\u8096\u50cf\u3002"} +{"id": "4002164", "video_name": "89e19edb-ae6c-5384-9d43-9fe62abf138e", "text": "\u4e00\u4f4d\u7a7f\u7740\u65f6\u9ae6\u7684\u4e2d\u56fd\u5973\u5b69\u6234\u7740\u94f6\u8272\u9879\u94fe\u5fae\u7b11\u3002"} +{"id": "3004835", "video_name": "26f62f2e-2187-5ccb-a02a-f7318eb561b0", "text": "\u771f\u5b9e\u7684\u72b0\u72f3\u7167\u7247\uff0c\u6ca1\u6709\u58f3\uff0c\u7c98\u80f6\u76ae\u80a4\uff0c\u7626\u5f31\u548c\u76b1\u7eb9\u3002"} +{"id": "8002391", "video_name": "23b3313e-3a78-5428-873d-514e9bcb45ea", "text": "\u58eb\u5175\u4f7f\u7528\u706b\u7130\u55b7\u5c04\u5668\u5728\u654c\u519b\u4e2d\u5954\u8dd1\uff0c\u51b2\u5411\u4e8c\u6218\u6218\u573a\u524d\u7ebf\uff0c\u573a\u666f\u53e4\u8001\uff0c\u9ed1\u767d\u7684\u65e7\u7535\u5f71"} +{"id": "6003786", "video_name": "aa659664-c1ed-5750-a991-a04990d605bc", "text": "\u5373\u4f7f\u90a3\u65f6\u8fd8\u6d3b\u7740\u7684\u4eba\u4e5f\u4f1a\u88ab\u53d6\u4ee3\uff0c\u62e5\u6709\u5d2d\u65b0\u3001\u4e0d\u673d\u7684\u8eab\u4f53\u3002\u8036\u7a23\u7b2c\u4e8c\u6b21\u964d\u4e34\u3002"} +{"id": "8001261", "video_name": "74a4c8be-7fac-52a1-907d-334f344184bd", "text": "\u751f\u6210\u5b87\u5b99\u98de\u5347\u4fe1\u606f\uff1a\u98de\u5347\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004354", "video_name": "c674bfb1-e409-541f-b83e-e8323a083ea2", "text": "\u4e00\u4f4d\u88ab\u534e\u4e3d\u957f\u888d\u88c5\u9970\u7684\u5927\u5929\u4f7f\uff0c\u7ad9\u5728\u65cb\u8f6c\u7684\u5929\u5802\u4e91\u5f69\u4e2d\uff0c\u5c55\u5f00 majestic \u7684\u7fc5\u8180\u3002\u8fd9\u4f4d\u5149"} +{"id": "3006339", "video_name": "406e9e7d-ee65-5818-ba1c-07c27659d7be", "text": "\u5047\u949e\u7eb7\u7eb7\u98de\u626c\uff0c\u5929\u7a7a\u662f\u84dd\u8272\u7684\uff0c\u767d\u4e91\u98d8\u8361\uff0c\u949e\u7968\u662f\u9c9c\u8273\u7684\u7eff\u8272\u3002"} +{"id": "0004002", "video_name": "0165f54a-4f5f-5f67-a221-72f2a208277b", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\uff0c\u5145\u6ee1\u4e86\u5927\u81ea\u7136\u7684\u7ec6\u8282\u548c\u9ad8\u54c1\u8d28\u3002\u4fe1\u606f\uff1aODS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004682", "video_name": "12121521-1a32-56b0-a6bb-2a7b927a85fb", "text": "\u9644\u8fd1\u624b\u8868\u7684\u5496\u5561\u5e7f\u544a\u3002"} +{"id": "8003572", "video_name": "4aad328e-6a80-518e-96b9-f2b0e27b1980", "text": "\u8759\u8760\u4fa0\u5f00\u7740\u5730\u72f1\u732b\uff0c\u800c\u5c0f\u4e11\u5219\u9a7e\u9a76\u7740\u8f68\u9053\u9e70SRT\u4e0e\u4ed6\u7ade\u901f\u3002"} +{"id": "7002431", "video_name": "3b48f175-f0bc-5837-a3c3-40b73cc917cc", "text": "\u7a97\u5916\u8fdc\u666f\uff0c\u7a97\u5e18\u540e\u6709\u4e2a\u5973\u5b69\u8d70\u8fdb\u6765\uff0c\u7136\u540e\u8df3\u4e0b\u53bb\u3002"} +{"id": "6002753", "video_name": "528f0576-6f05-541a-aded-9f3d8b422eb2", "text": "\u4ed6\u4eec\u5f3a\u5927\u7684\u529b\u91cf\u7ef4\u6301\u5e73\u8861\uff0c\u4fdd\u62a4\u81ea\u7136\u3002"} +{"id": "1003790", "video_name": "45f3f976-034f-5267-a43f-99f64ade8330", "text": "\u4e00\u53ea\u5c0f\u72d7\u5728\u73bb\u7483\u4e0a\u3002"} +{"id": "3003218", "video_name": "6e67b6b0-23f1-5d4e-b998-8d607a398732", "text": "\u60f3\u8c61\u5e76\u521b\u9020\u4e00\u4e2a\u6709\u4e24\u53ea\u773c\u775b\u548c\u4e00\u4e2a\u5c0f\u5634\u5df4\uff0c\u5e76\u80fd\u8df3\u821e\u7684\u53ef\u7231\u5c0f\u4e4c\u514b\u4e3d\u4e3d\u7684\u89d2\u8272\u3002\u80cc\u666f\u662f"} +{"id": "4002803", "video_name": "293a4e3c-edbc-5fcc-a9d8-601c1aa65086", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u4e0e\u4eba\u4e00\u8d77\u8bb2\u6545\u4e8b\u5e76\u62ff\u7740\u4e00\u672c\u4e66\u3002"} +{"id": "5001890", "video_name": "1d492583-dca2-5d9c-a121-af74a9f0dab0", "text": "\u4e9a\u6d32\u5973\u5b69\u5728\u6d77\u8fb9\u8d70\u8fc7\uff0c\u65e5\u843d\uff0c\u7ec6\u8282\u7cbe\u81f4\uff0c\u5982\u7535\u5f71\u822c\u3002"} +{"id": "0003109", "video_name": "3733f2f8-fa4f-57c0-9f7b-21072a57a3f4", "text": "\u8863\u67dc\u91cc\u653e\u6ee1\u4e86\u8863\u670d\uff0c\u6709\u7740\u8001\u7535\u5f71\u7684\u6c1b\u56f4\u3002"} +{"id": "5001131", "video_name": "d19962a0-6115-5bb7-b96c-fb3c48ba484a", "text": "\u7ea2\u8272\u7684\u53cc\u5934\u9a6c\u5954\u8dd1\u7740\u3002"} +{"id": "0006917", "video_name": "354ec60f-c751-5ab7-adf4-7f0532c584ae", "text": "\u6cf0\u52d2\u521b\u9020\u8005\u5927\u7b11\u7740\uff0c3D\u52a8\u753b\u3002"} +{"id": "0005250", "video_name": "173e7e0e-8fc6-5e04-90bd-9c3938f59847", "text": "\u888b\u9f20\u5728\u9ad8\u6863\u665a\u5bb4\u4e0a\u3002 \n\nSource sentence: The sun is shining brightly on the beach. \n\n\u592a\u9633\u5728\u6d77\u6ee9\u4e0a\u7167\u8000\u660e\u4eae\u3002"} +{"id": "6003243", "video_name": "33c97ba6-203f-502a-bd50-f396d0512ad2", "text": "\u7535\u5f71\u5316\u3001\u4e2d\u666f\u3001\u620f\u5267\u7535\u5f71\u3001\u4e00\u4f4d55\u5c81\u7684\u5973\u6821\u957f\uff0c\u8eab\u7a7f\u767d\u8272\u886c\u886b\u3001\u68d5\u8272\u88d9\u5b50\u3001\u68d5\u8272\u5bbd\u76ae"} +{"id": "2003589", "video_name": "c32ac436-06ea-59c1-885b-a93a3a9f695d", "text": "\u4e00\u4f4d\u8001\u4eba\u5f00\u5fc3\u5730\u5403\u7740\u62c9\u9762\u3002"} +{"id": "8003500", "video_name": "e514ff71-b6ac-5fc6-bb43-8f73d65d30b6", "text": "\u7537\u5b69\u7684\u52aa\u529b\u548c\u5949\u737b\u4f7f\u4ed6\u5728\u5168\u5370\u5ea6\u91ab\u5b78\u5165\u5b78\u8003\u8a66\u4e2d\u53d6\u5f97\u6210\u529f\u3002\u4ed6\u6210\u70ba\u4e00\u4f4d\u5091\u51fa\u7684"} +{"id": "0005137", "video_name": "15779795-93e1-5dc2-9a14-87e204bd0dec", "text": "\u4eba\u4eec\u5728\u65e7\u91d1\u5c71\u5854\u6865\u7684\u8857\u5934\u8df3\u7535\u5b50\u821e\u66f2\uff0c\u591c\u5e55\u4e0b\uff0c\u7a7a\u4e2d\u4fef\u77b0\uff0c\u5982\u7535\u5f71\u822c\u58ee\u89c2\u3002"} +{"id": "1005502", "video_name": "653c6d6f-3c5c-5de0-b748-8739c0a8e05c", "text": "\u5728\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\u91cc\uff0c\u9a91\u7740\u4e00\u8258\u9ec4\u8272\u7684\u5145\u6c14\u8239\uff0c\u7a7f\u8d8a\u4e00\u6761\u5a01\u6b66\u7684\u6cb3\u6d41\u8fdb\u884c\u6781\u9650"} +{"id": "6003570", "video_name": "3c0d7d59-4db9-5792-9fe3-e8825dd21c7c", "text": "\u521b\u9020\u7ecf\u6d4e\u6570\u636e\u7684\u89c6\u89c9\u5448\u73b0\uff0c\u7a81\u51fa\u8d27\u5e01\u4ef7\u503c\u3002 \n\nSource sentence: The company's profits have increased by 20% compared to last year. \n\n\u516c\u53f8\u5229\u6da6\u6bd4\u53bb"} +{"id": "6002340", "video_name": "451d11ce-ff84-52a3-8eb2-9e0674920bc5", "text": "\u4e00\u7fa4\u814a\u80a0\u72d7\u5728\u65e5\u843d\u65f6\u5206\u3002\u4fe1\u606f\uff1ala cuca\u3002"} +{"id": "3003678", "video_name": "e64b5a94-e461-5669-b97a-4ebe91808d78", "text": "\u5370\u5ea6\u65b0\u95fb\u5e7f\u64ad\uff0c\u7537\u5b50\u6b63\u5728\u64ad\u62a5\u65b0\u95fb\u30024K\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "0006008", "video_name": "24f07cae-4989-5ef0-8809-48d891bca47b", "text": "\u5979\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u4f38\u51fa\u751f\u5316\u624b\u81c2\u4e0e\u6c34\u6676\u63a5\u89e6\uff0c\u9877\u523b\u95f4\u88ab\u4f20\u9001\u5230\u4e00\u4e2a\u5145\u6ee1\u8d5b\u535a\u670b\u514b"} +{"id": "8001638", "video_name": "3c7a3a25-6087-58c3-9362-9cfed678e0bd", "text": "\u5448\u73b0\u6c34\u4e0b\u793e\u533a\uff1a\u63cf\u7ed8\u5145\u6ee1\u6d3b\u529b\u548c\u591a\u6837\u6027\u7684\u73ca\u745a\u7901\u793e\u533a\uff0c\u5c55\u793a\u9c7c\u7c7b\u3001\u6d77\u9a6c\u548c\u5176\u4ed6\u6d77\u6d0b\u751f\u7269"} +{"id": "0004808", "video_name": "0f7b8074-ef94-5acd-b546-41174a42c6bd", "text": "\u94a2\u94c1\u4fa0\u548c\u8759\u8760\u4fa0\u7a7f\u8d8a\u6a59\u8272\u5929\u7a7a\u3002"} +{"id": "1004180", "video_name": "4d5d5176-ca58-5db2-859b-cf3dd1e6282a", "text": "\u4e00\u53ea\u72ee\u5b50\u5f2f\u7740\u8eab\u5b50\u5728\u6c34\u4e95\u91cc\u89c2\u5bdf\u3002"} +{"id": "0005809", "video_name": "218ae330-861d-5866-864d-1fe6c1f4f5b2", "text": "\u53ef\u7231\u7684\u5c0f\u72d0\u72f8\u6162\u6162\u5730\u7728\u773c\u775b\uff0c\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "2003857", "video_name": "ddb46146-99e1-5231-85b9-6c9d318377d4", "text": "\u4e00\u4e2a\u91d1\u53d1\u7537\u6027\u7f51\u7ad9\u5f00\u53d1\u4eba\u5458\u6b63\u5728\u62ef\u6551\u4e16\u754c\u514d\u53d7\u866b\u5bb3\u3002"} +{"id": "8002511", "video_name": "6971cf72-8614-5508-8bd0-c52c9c606ec0", "text": "\u7530\u91ce\u4e2d\u6709\u4e00\u540d\u7537\u5b50\uff0c\u5468\u56f4\u81ea\u7531\u5954\u9a70\u7740\u4e00\u7fa4\u9a6c\u3002"} +{"id": "8002667", "video_name": "688fb71c-997a-5dc3-91ab-70079fb3580a", "text": "\u5370\u5ea6\u68ee\u6797\u4e2d\u4e00\u5ea7\u53e4\u8001\u5bfa\u5e99\u7684\u591c\u666f\u3002"} +{"id": "7004067", "video_name": "8e24774c-3add-5fdb-b819-2e2fa9c57148", "text": "\u7535\u5f71\u822c\u7684\u539f\u5b50\u5f39\u7206\u70b8\u573a\u666f\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "2004661", "video_name": "4bb3b257-7801-5727-8b24-47824b0b4421", "text": "\u5996\u7cbe\u611f\u5230\u9ad8\u5174\uff0c\u8d50\u4e88\u4e09\u4eba\u795d\u798f\u3002"} +{"id": "0004929", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "\u591c\u665a\u6709\u4e00\u652f\u8721\u70db\uff0c\u6708\u4eae\u5706\u5706\u7684\u3002"} +{"id": "3004513", "video_name": "2c0e760d-295a-50bc-b9d7-8e1ccf4a62dd", "text": "\u9ab7\u9ac5\u6447\u6eda\u4e50\u961f\u5728\u4e00\u8f86\u4f4e\u59ff\u6001\u8df3\u52a8\u7684\u6c7d\u8f66\u91cc\u3002"} +{"id": "7003230", "video_name": "ac8b1d37-ca73-524f-96bc-f3e61df99fcd", "text": "\u56fd\u738b\u4e3e\u8d77\u4ed6\u7684\u6743\u6756\u671d\u5929\u7a7a\u3002"} +{"id": "1003632", "video_name": "42e3de4d-72b4-5aab-939f-b8312e10b4d6", "text": "\u4e24\u53ea\u5b5f\u52a0\u62c9\u7070\u732b\u5728\u6708\u7403\u4e0a\u8d70\u8def\u3002\u5176\u4e2d\u4e00\u53ea\u732b\u7565\u5fae\u5e26\u68d5\u8272\u3002"} +{"id": "7003536", "video_name": "4e8cdaba-cbcb-5260-83c9-1dc643f92f5b", "text": "\u4e00\u4e2a\u7d2b\u8272\u7684\u7ae0\u9c7c\u5728\u57ce\u5e02\u666f\u89c2\u4e0a\u7a7a\u7ff1\u7fd4\u3002"} +{"id": "1003756", "video_name": "4547f4e5-6d47-520c-a004-d80fa620c970", "text": "\u5956\u54c1\u7eb8\u5238\u843d\u5728\u4e00\u4e2a\u9ad8\u5174\u7684\u5973\u5b69\u8eab\u4e0a\uff0c\u5979\u9ad8\u4e3e\u53cc\u81c2\u6b22\u547c\u3002"} +{"id": "1006464", "video_name": "7653d416-3dfa-50fa-bb03-474856da7d27", "text": "\u7ea6\u7ff0\u00b7\u585e\u5df4\u65af\u8482\u5b89\u00b7\u5df4\u8d6b\u548c\u5531\u7247\u673a\u6df7\u97f3\n\nSource sentence: I like to eat sushi for dinner. \n\n\u6211\u559c\u6b22\u665a"} +{"id": "3004192", "video_name": "b709786a-5272-5b83-89c4-cb4b85036602", "text": "\u4e00\u4e2a\u4eba\u5728\u9ec4\u660f\u65f6\u5206\u8d70\u4e0b\u5c71\uff0c\u9634\u90c1\u7684\u81ea\u7136\u666f\u8c61\uff0c\u7c92\u5b50\u98de\u821e\uff0c\u5468\u56f4\u6709\u98de\u821e\u7684\u706f\u5149\uff0c\u5fae\u5fae\u7684"} +{"id": "4004743", "video_name": "b36d7ac2-7203-5552-800a-387e5abd6bbb", "text": "\u4e00\u652f\u6447\u6eda\u4e50\u961f\u6f14\u594f\u7535\u5409\u4ed6\u7684\u89c6\u9891"} +{"id": "4002997", "video_name": "7013ba4c-1669-5314-922b-1fe5816e2d2d", "text": "\u4e00\u4e2a\u7537\u4eba\u5fae\u7b11\u7740\u770b\u7740\u955c\u5934\uff0c\u903c\u771f\u81ea\u7136\u3002"} +{"id": "8003492", "video_name": "4a8f095a-d54c-5d03-be07-6ec373c836e8", "text": "\u4e00\u4e2a\u6709\u8bb8\u591a\u7eff\u6811\u7684\u666f\u89c2\uff0c\u7011\u5e03\u6d41\u6dcc\uff0c\u4e91\u6735\u98d8\u52a8\uff0c\u7535\u5f71\u822c\u76844K\u753b\u8d28\u3002"} +{"id": "0003295", "video_name": "3b115f6f-36d3-5b47-9b3a-0daf29e7a7c8", "text": "\u770b\u4e0d\u89c1\u7684\u7537\u4eba\u7a7f\u7740\u534e\u4e3d\u7684\u957f\u888d\uff0c\u4e1d\u7ef8\u6750\u8d28\uff0c\u7cbe\u5fc3\u8bbe\u8ba1\uff0c\u5728\u6b27\u6d32\u7684\u8c6a\u534e\u516c\u5bd3\u5185\uff0c\u559d\u7740\u4e00"} +{"id": "2005526", "video_name": "88842ff5-c391-5d86-b320-ae50dbc020b0", "text": "\u4e4c\u9f9f\u548c\u86c7\u7ed3\u5408\u5728\u4e00\u8d77\uff0c\u5728\u4e91\u4e2d\u98de\u7fd4\uff0c\u5728\u4e91\u96fe\u4e2d\u7ff1\u7fd4\uff0c\u4ed9\u5883\uff0c\u5c71\u8109\uff0c\u5e7b\u60f3\uff0c"} +{"id": "3005794", "video_name": "c46b379d-5dd3-5fd1-a409-45edd1e07d19", "text": "\u7279\u65af\u62c9Cybertruck\u5b89\u88c5\u6fc0\u5149\uff0c\u53d8\u5f62\u91d1\u521a\u98ce\u683c\u3002\n\nSource sentence: I am interested in learning Chinese language and culture. \n\u6211\u5bf9\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316"} +{"id": "7002230", "video_name": "3c1a56c7-3a13-57e4-8e2a-9c52c4a9a014", "text": "\u4e58\u5ba2\u7684\u98de\u673a\u8d77\u98de\u5e76\u98de\u884c\u3002"} +{"id": "8003275", "video_name": "501d7b52-9ef2-524c-ab5e-3e5827ddc3bd", "text": "\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u5728\u300a\u6211\u7684\u4e16\u754c\u300b\u6e38\u620f\u4e2d\u51fb\u8d25\u4e86\u6770\u514b\u00b7\u4fdd\u7f57\u3002"} +{"id": "2006943", "video_name": "ddd393ed-e414-524a-a44b-8ddd29b4f9c4", "text": "\u91d1\u6bdb\u5bfb\u56de\u72ac\u7528\u76f8\u673a\u62cd\u7167\u3002"} +{"id": "8001930", "video_name": "f0a4e1ed-5d27-5dae-bf56-5cd95025ebfa", "text": "\u7518\u9053\u592b\u624b\u6301\u5251\u548c\u624b\u673a\u3002"} +{"id": "8003642", "video_name": "71a5ea03-585d-5ed2-bb2a-a44faf624fc5", "text": "\u6674\u6717\u7684\u65e5\u5b50\u3002\u4e24\u53ea\u6d77\u9e25\u5728\u5ca9\u77f3\u6d77\u5cb8\u9644\u8fd1\u98de\u7fd4\u3002\u8fdc\u5904\u53ef\u89c1\u4e00\u8258\u5c0f\u8239\u3002\u89c6\u9891\u957f\u5ea6\u7ea6\u4e3a20\u79d2\u3002"} +{"id": "8002362", "video_name": "7b5153c8-6617-511d-9b0b-791819b40b6d", "text": "\u9885\u9aa8\u661f\u7403\u7740\u706b\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "2003443", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "\u4ece\u524d\u6709\u4e2a\u540d\u53eb\u51ef\u4f26\u7684\u5e74\u8f7b\u5973\u5b69\u3002"} +{"id": "7003240", "video_name": "168ed29d-4a31-550b-9564-11cddaf8dd3f", "text": "\u9a91\u7740\u9a6c\u7684\u6218\u58eb\uff0c\u5728\u6709\u98ce\u7684\u65e5\u5b50\u91cc\uff0c\u6c14\u6c1b\u7d27\u5f20\uff0c\u60b2\u4f24\u611f\u7535\u5f71\u822c\u3002"} +{"id": "2003058", "video_name": "063333e2-d642-5861-8a6c-2020b63c565b", "text": "\u4e00\u53ea\u9e70\u5728\u9ad8\u7a7a\u98de\u7fd4\u3002\u5168\u666f\u89c6\u91ce\u3002"} +{"id": "0006808", "video_name": "336f1ac3-0e2a-5852-8f29-3f7fc6f68276", "text": "\u7a81\u51fa\u7814\u7a76\u53d1\u73b0\u548c\u79d1\u5b66\u5b9e\u9a8c\u6765\u8bc1\u660e\u8fd9\u4e00\u4e8b\u5b9e\u3002\u871c\u8702\u9762\u90e8\u8bc6\u522b\uff1a"} +{"id": "1005663", "video_name": "68011641-fbf9-54f0-a43d-ed032a5fd91f", "text": "little town, there stood a charming old bookstore. \n\nTranslation: \u5728\u4e00\u4e2a\u53e4\u6734\u7684\u5c0f\u9547\u4e2d\u5fc3\uff0c\u6709\u4e00\u5bb6\u8ff7\u4eba\u7684\u8001\u4e66\u5e97\u3002 \n\nSource sentence: The concert was amazing, with the singer's"} +{"id": "0004057", "video_name": "02740a18-c157-5823-a276-044c28cef5c2", "text": "\u7d22\u5c3c\u514b\u5c0f\u5b50\uff0c\u72d0\u72f8\u5c3e\u5df4\uff0c\u6697\u5f71\u5c0f\u5b50\uff0c\u65af\u79d1\u5947\u5c0f\u5b50\uff0c\u94f6\u8272\u5c0f\u5b50\u56f4\u7ed5\u6df7\u6c8c\u7eff\u5b9d"} +{"id": "2006847", "video_name": "f45468bd-766b-55fe-963c-c04deb0fd649", "text": "\u4e00\u65e6\u4e09\u4e2a\u9505\u5f00\u59cb\u6cb8\u817e\uff0c\u5c06\u9a6c\u94c3\u85af\u653e\u5165\u4e00\u4e2a\u9505\u4e2d\uff0c\u5c06\u9e21\u86cb\u653e\u5165\u7b2c\u4e8c\u4e2a\u9505\u4e2d\uff0c\u5c06\u5496"} +{"id": "0003269", "video_name": "3a8c607e-5168-5ea2-9ef4-2ec16dda85d7", "text": "\u592a\u7a7a\u4e2d\u65cb\u8f6c\u7684\u9ed1\u6d1e\u7684\u9ad8\u5206\u8fa8\u7387\u5f71\u50cf"} +{"id": "6003937", "video_name": "9b495e56-0fe6-5de0-8584-a40e07d27e81", "text": "\u5bfc\u81f4\u54c8\u9a6c\u65af\u5728\u52a0\u6c99\u548c\u6cd5\u5854\u8d6b\u5728\u897f\u5cb8\u4e4b\u95f4\u6743\u529b\u5206\u88c2\u3002"} +{"id": "0004137", "video_name": "03e63553-2a77-5926-af19-81b5c71c509e", "text": "\u63cf\u8ff0\u76db\u5927\u5bb4\u4f1a\u7684\u51c6\u5907\u5de5\u4f5c\u3002\u52a8\u7269\u4eec\u4e3a\u4e86\u8ba9\u5e86\u795d\u6d3b\u52a8\u66f4\u52a0\u7279\u522b\u505a\u4e86\u4ec0\u4e48\uff1f"} +{"id": "5001024", "video_name": "eaad94cd-788b-5e36-9539-a39b69bb9883", "text": "\u5728\u6c7d\u8f66\u4e0a\u521b\u9020\u4e00\u4e2a\u6b63\u5728\u6d3e\u53d1\u793c\u7269\u7684\u5723\u8bde\u8001\u4eba\u3002"} +{"id": "6004831", "video_name": "e07cb13a-ca5e-512f-85c0-000913bb570e", "text": "\u4e00\u5f20\u56fe\u7247\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u5c55\u793a\u4ed6\u7684\u706b\u529b\u3002"} +{"id": "1005710", "video_name": "68fe47c4-0821-5d60-9074-ae250e82b720", "text": "\u5de6\u81c2\u6295\u624b\u5728\u677f\u7403\u6bd4\u8d5b\u4e2d\u5c16\u53eb\u3002"} +{"id": "2004781", "video_name": "15ccdad8-dab6-545b-adb5-1dc1a713753d", "text": "\u4e0b\u4e00\u4e2a\u7ef4\u5ea6\uff0c3D \u66fc\u5fb7\u535a\u96c6\u5408\u5206\u5f62\u7f29\u653e\uff0c\u8f6f\u4ef6 MMY3D\u3002"} +{"id": "8003077", "video_name": "887c80de-bd72-52e9-a504-cd0333c31d7c", "text": "\u5f53\u592a\u9633\u5728\u5730\u5e73\u7ebf\u4e0b\u843d\u65f6\uff0c\u5893\u5730\u6210\u4e3a\u4e86\u8d85\u81ea\u7136\u7684\u4e2d\u5fc3\u3002\u9ed1\u6697\u3001\u6050\u6016\u3001\u52a8\u753b\u3002"} +{"id": "4004395", "video_name": "b4c8aef2-4a98-50b6-ae38-6fd02f214e72", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u7eb3\u548c\u5973\u795e\u62c9\u8fbe\u5728\u7f8e\u4e3d\u7684\u4e1b\u6797\u91cc\u5439\u594f\u7b1b\u5b50\uff0c\u6709\u8bb8\u591a\u8774\u8776\u548c\u5154\u5b50\u3002"} +{"id": "6002059", "video_name": "970d7eae-011f-58ae-ae4f-2a58ba0b5a65", "text": "\u5b83\u5df2\u7ecf\u98de\u4e86\u5f88\u957f\u65f6\u95f4\uff0c\u611f\u89c9\u975e\u5e38\u53e3\u6e34\u3002\u6700\u540e\uff0c\u4e00\u6bb5\u65f6\u95f4\u540e\uff0c\u5b83\u53d1\u73b0\u4e86\u4e00\u4e2a\u6709\u51e0\u680b\u623f\u5b50\u548c\u6811\u7684\u5c0f\u6751"} +{"id": "8001055", "video_name": "8084d0e3-6b1f-5266-98d2-24425061e993", "text": "7\u5c81\u7684\u53e4\u5e0c\u814a\u7537\u5b69\u5728\u53e4\u5e0c\u814a\u57ce\u5e02\u73a9\u800d\u3002"} +{"id": "1006495", "video_name": "76f0a64c-5b9c-5af7-93d3-7610088244be", "text": "\u4e00\u6b3e\u65e8\u5728\u62ef\u6551\u4e16\u754c\u7684\u4ec1\u6148\u4eba\u5de5\u667a\u80fd\uff0c\u4e00\u4e2a\u5973\u6027\u7684\u6570\u5b57\u4ed9\u5b50\uff0c\u903c\u771f\u7684\uff0c\u5c0f\u53ee\u5f53\uff0c\u5149\u7684\u75d5"} +{"id": "0004537", "video_name": "0ad75f56-dad1-581f-aa4f-2f9149d93dbe", "text": "20\u79d2\u7684\u89c6\u9891\uff0c\u732b\u5728\u955c\u5b50\u524d\u5237\u7259\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "6003876", "video_name": "fc055ea2-91df-55d9-8141-b797cc83779e", "text": "\u4e00\u500b\u5916\u661f\u4eba\u53bb\u627e\u4e00\u500b\u5403\u62ab\u85a9\u7684\u4eba\u3002"} +{"id": "2007829", "video_name": "51f294a5-e59e-51ad-8888-c0a1768baebd", "text": "\u5728\u76d8\u5b50\u4e0a\u7684\u6c49\u5821\uff0c\u540e\u666f\u4e3a\u80cc\u666f\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3002"} +{"id": "3004521", "video_name": "a0865d89-bbbe-5dfc-a44f-13ff3c654a15", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u706b\u8f66\u7a7f\u8fc7\u96ea\u5c71\u7684\u89c6\u9891\uff0c\u903c\u771f\u7684\u6444\u5f71\u6548\u679c\uff0c4K\u5206\u8fa8\u7387\u3002"} +{"id": "2003419", "video_name": "84884316-07cf-511a-b8d9-2f2522ec4d5a", "text": "\u4e3a\u4ec0\u4e48\u7ea2\u8272\u7684\u95ee\u53f7\u5728\u8bf4\u8bdd\uff1f"} +{"id": "1006273", "video_name": "72d937fd-0983-5677-8fe2-b75c9d56e659", "text": "\u4e00\u4e2a\u6094\u8fc7\u7684\u7537\u4eba\u4ece\u533b\u9662\u51fa\u9662\u3002 \n\nSource sentence: I will meet you at the restaurant at six o'clock. \n\u6211\u4f1a\u5728\u516d\u70b9\u949f\u5728\u9910\u5385\u89c1\u4f60\u3002"} +{"id": "2007378", "video_name": "a03fd72d-a15b-53e6-a558-07b0ac58291d", "text": "\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\u5728\u6218\u6597\u4e2d\u9762\u5bf9\u4f17\u591a\u654c\u4eba\uff0c\u4ee58K\u9ad8\u5206\u8fa8\u7387\u3001\u9ad8\u8d28\u91cf\u3001\u8be6\u7ec6\u827a\u672f\u3001\u5b8c\u7f8e\u521b\u610f"} +{"id": "0005315", "video_name": "18755bc3-82db-5ad4-81f4-a86030d393ed", "text": "\u8bf7\u7ed9\u6211\u4e00\u6bb5\u83b1\u5965\u5c3c\u8fbe\u65af\u65af\u5df4\u8fbe\u4eba\u5411\u4e00\u53ea\u9f99\u6295\u63b7\u4ed6\u5f3a\u5927\u957f\u77db\u7684\u89c6\u9891\uff01"} +{"id": "4002269", "video_name": "c18e0f3a-a6aa-57ad-9e1f-c1c0102660b5", "text": "\u5236\u4f5c\u4e00\u6bb58K\u5206\u8fa8\u7387\u7684\u89c6\u9891\uff0c\u4e3b\u89d2\u662f\u4e00\u4f4d\u62e5\u6709\u957f\u957f\u7684\u91d1\u53d1\u548c\u84dd\u773c\u775b\u7684\u7f8e\u4e3d\u5973\u6027\uff0c\u7a7f\u7740\u7ea2\u8272\u793c"} +{"id": "2007138", "video_name": "8a64c2cd-e482-59bb-8723-7593f427fcda", "text": "\u5e74\u8f7b\u53ef\u7231\u7684\u5973\u58eb\u5728\u516c\u56ed\u91cc\u4e0e\u6811\u3001\u5c71\u3001\u6e56\u4ea4\u8c08\uff0c\u753b\u52a8\u753b\u63d2\u56fe\u3002"} +{"id": "6004895", "video_name": "a69c2871-627a-5b59-9a24-f1876aa12bbf", "text": "\u4e00\u500b\u7a7f\u8457\u5283\u7834\u7684\u8863\u670d\u7684\u7f8e\u9e97\u5973\u5b69\u3002"} +{"id": "3005890", "video_name": "47f4107c-3da8-57e7-a689-5398840ca3e5", "text": "\u8349\u576a\u4e0a\u6d3e\u5bf9\u591c\u666f\u76843D\u52a8\u753b"} +{"id": "3004064", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "\u5730\u7403\u6b63\u5728\u8f6c\u53d8\u6210\u65b0\u5730\u7403\uff0c\u5982\u679c\u4f60\u4e0d\u80fd\u4e0e\u5730\u7403\u7684\u632f\u52a8\u4fdd\u6301\u4e00\u81f4\uff0c\u4f60\u5c31\u4f1a\u88ab\u843d\u4e0b\u3002\u6240\u4ee5\u786e\u4fdd\u4f60\u5fe0\u4e8e\u81ea\u6211\u548c\u5fe0\u4e8e\u5730"} +{"id": "0006512", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u5b87\u5b99\u4e16\u754c\u65cb\u8f6c\u8df3\u821e\u3002"} +{"id": "1004142", "video_name": "4cbe7818-49c9-517a-b01e-f6a2c68ec8a0", "text": "\u5979\u7684\u89c6\u9891\u773c\u775b\u95ea\u70c1\u7740\u7ea2\u5149\u3002"} +{"id": "7002966", "video_name": "d655c866-40b2-5245-917f-01097a5b6a13", "text": "\u793e\u533a\u53c2\u4e0e\uff1a\u5c55\u793a\u5404\u79cd\u4e0d\u540c\u793e\u533a\u805a\u96c6\u5728\u4e00\u8d77\u53c2\u52a0\u5065\u5eb7\u3001\u53ef\u6301\u7eed\u6027\u548c\u5371\u5bb3\u51cf\u5c11\u76f8\u5173\u7684\u6d3b\u52a8\u3001\u7814\u8ba8"} +{"id": "2003636", "video_name": "d9921943-ab9e-5299-9bdd-6907fdc44be0", "text": "\u5730\u7403\u81ea\u8f49\u7684\u73fe\u5be6\u6642\u9593\u8ef8\uff0c\u5149\u7dda\u6309\u7269\u7406\u6cd5\u5247\u771f\u5be6\u53cd\u61c9\uff0c4K\u8996\u983b\u5ef6\u6642\u651d\u5f71\u3002"} +{"id": "2006344", "video_name": "bce0b0b2-3ff5-59e4-a979-fbdd6134e22e", "text": "\u4e3b\u89d2\u88ab\u56f0\u5728\u57ce\u5e02\u4ea4\u901a\u5835\u585e\u4e2d\uff0c\u5587\u53ed\u58f0\u548c\u4e0d\u8010\u70e6\u7684\u53f8\u673a\u5448\u73b0\u5728\u573a\u666f\u4e2d\u3002"} +{"id": "0004689", "video_name": "0d540c76-c5d3-5653-a719-01abdf044c1c", "text": "\u5236\u4f5c\u4e00\u90e83D\u8ba1\u7b97\u673a\u751f\u6210\u52a8\u753b\u63d2\u753b\uff0c\u5c55\u793a\u6545\u4e8b\u4e2d\u5f15\u4eba\u5165\u80dc\u7684\u573a\u666f\uff08\u4f8b\u5982\u4f7f\u7528\u624b\u673a\u7684\u5bb6\u5ead\u3001\u5e7d\u7075\u822c\u7684\u4eba\u7269\u3001\u5bb6"} +{"id": "7004329", "video_name": "43bf05c1-a0cb-5cd7-8b3e-d1e34a5a9074", "text": "\u73ca\u745a\u7901\u4e0a\u4e00\u7fa4\u6d77\u6d0b\u751f\u7269\u7684\u72c2\u98df\u753b\u9762\u3002"} +{"id": "3005232", "video_name": "4c10ed00-1675-5185-a8ae-aba13dcf0035", "text": "\u76ae\u5212\u8247\u5728\u5706\u5708\u5185\u79fb\u52a8"} +{"id": "2004590", "video_name": "b917a556-663d-56bc-b933-6973ac9f787a", "text": "\u5728\u4e00\u4e2a\u9760\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u4e2d\u5fc3\u7684\u53e4\u8272\u53e4\u9999\u7684\u6751\u5e84\u91cc\uff0c\u751f\u6d3b\u4ee5\u5b81\u9759\u7684\u8282\u594f"} +{"id": "8002286", "video_name": "be116f2f-6ea5-515f-9bbb-ef81ca2014ae", "text": "\u5947\u5f02\u535a\u58eb\u5728\u5929\u7a7a\u4e2d\u4e0e\u8718\u86db\u4fa0\u6218\u6597\u3002"} +{"id": "3005266", "video_name": "f342d5a5-14c7-5fb5-9a27-d767a0c9f31d", "text": "\u4f01\u9e45\u6253\u9f13\u3002\u4fe1\u606f\uff1a\u7f8e\u4e3d\u7684\u8fa3\u6912\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002638", "video_name": "34ee5e11-5bc4-5f51-9d9c-25bc75126253", "text": "\u4e00\u53ea\u975e\u5e38\u751f\u6c14\u7684\u732b\u6124\u6012\u5730\u671d\u7740\u4e00\u53ea\u72d7\u770b\u3002"} +{"id": "4004217", "video_name": "8b8cb1ec-ab12-535b-9a90-b1ac79fc86b9", "text": "\u7136\u800c\uff0c\u5728\u52a0\u83f2\u5c14\u5fb7\u72ec\u7279\u7684\u5916\u8868\u4e0b\uff0c\u5979\u62e5\u6709\u4e00\u9897\u91d1\u5b50\u822c\u7684\u5fc3\u3002\u5979\u603b\u662f\u7b2c\u4e00\u4e2a\u4f38\u51fa\u63f4\u624b\uff0c\u65e0\u8bba\u662f\u4ece"} +{"id": "4004250", "video_name": "4dce9411-5c5b-513e-be82-a9ebcc6971bc", "text": "\u6e29\u65af\u987f\u00b7\u4e18\u5409\u5c14\u5728\u4e8c\u6218\u671f\u95f4\u4e0e\u9ad8\u7ea7\u519b\u5b98\u56f4\u5750\u5728\u684c\u524d\u4ea4\u8c08\u3002"} +{"id": "4002621", "video_name": "e732fdd7-db81-5193-904b-7554b308831a", "text": "\u718a\u603b\u662f\u6e34\u671b\u63a2\u7d22\u65b0\u4e8b\u7269\u548c\u5192\u9669\u3002"} +{"id": "2005896", "video_name": "6c181a76-d522-509d-8fc4-d451d3688514", "text": "\u620f\u5267\u6027\u56fe\u50cf\u6162\u52a8\u4f5c\uff0c\u914d\u4ee5\u80cc\u666f\u65f6\u523b\u3002"} +{"id": "7002615", "video_name": "5664fc11-96f0-5547-8c0d-e6ca1c1f7cbe", "text": "\u60f3\u8c61\u4e00\u4e0b\uff0c\u5723\u8bde\u8001\u4eba\u548cTwinkle Toes\u7a7f\u7740\u8282\u65e5\u4fa6\u63a2\u670d\u88c5\uff0c\u5728\u5317\u6781\u7684\u96ea\u5730\u4e0a\u63a2\u9669\uff0c\u624b\u6301\u62d0\u6756"} +{"id": "8003934", "video_name": "bb6a4b39-b5bb-5c7b-9ea0-94f1e475f3d6", "text": "\u60f3\u8c61\u5979\u7684\u624b\u6307\uff0c\u7075\u5de7\u800c\u575a\u5b9a\uff0c\u50cf\u7f16\u6392\u597d\u7684\u8868\u6f14\u4e00\u6837\u5728\u952e\u76d8\u4e0a\u821e\u52a8\uff0c\u8282\u594f\u660e\u5feb\u7684\u6572\u51fb\u58f0\u5728"} +{"id": "0005048", "video_name": "13bd94be-6b7e-54b6-9f58-a699b0bc6cc6", "text": "\u624e\u62c9\u548c\u677e\u9f20\u5728\u54af\u54af\u6811\u5468\u56f4\u8df3\u821e\uff0c\u4ed6\u4eec\u7684\u7b11\u58f0\u5145\u6ee1\u4e86\u7a7a\u6c14\uff0c\u8425\u9020\u51fa\u6b22\u4e50\u7684"} +{"id": "6002256", "video_name": "d0c4253d-b327-59e0-9f1e-5f87f7a7d2f0", "text": "\u5b89\u9759\u7684\u5c71\u4e18\u5468\u56f4\u6709\u95ea\u70c1\u7740\u706f\u5149\u7684\u9713\u8679\u5bb6\u3002"} +{"id": "2003262", "video_name": "8137c61d-4234-5a4a-a091-3e94463dab8d", "text": "\u660e\u5a9a\u7684\u9633\u5149\u65e9\u6668\uff0c\u5510\u8001\u9e2d\u8f7b\u8f7b\u5730\u5c06\u91d1\u9e45\u4ece\u57fa\u5ea7\u4e0a\u62ac\u8d77\u3002"} +{"id": "0005561", "video_name": "1cf2114d-5747-525b-bd40-ac40dd27156f", "text": "\u9634\u9633\u9010\u6e10\u878d\u5408\u6210\u592a\u6781\u56fe\u3002"} +{"id": "2004728", "video_name": "30868f26-33e1-55b1-a03d-269eb67fa003", "text": "\u4e00\u6761\u5c0f\u6eaa\u5728\u6708\u5149\u4e0b\u7a7f\u8fc7\u5c71\u8c37\uff0c\u4e00\u7fa4\u9e1f\u98de\u8fc7\u3002"} +{"id": "3003583", "video_name": "814d8165-01df-57ac-819f-41a970a35327", "text": "\u773c\u775b\u53d1\u51fa\u7fe0\u7eff\u8272\u706b\u7130\u822c\u7684\u5149\u8292\uff0c\u5177\u6709\u7167\u7247\u7ea7\u771f\u5b9e\u611f\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c4K\u3002"} +{"id": "1003588", "video_name": "4206a27f-376b-5b44-a2f1-92b67f16820a", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u623f\u5b50\u4e0a\u7684\u8349\u5730\u4e0a\uff0c\u6709\u4e00\u4e2a\u7a97\u6237\u7684\u63d2\u56fe\uff0c\u9ad8\u9ad8\u7684\u7eff\u8349\uff0c\u84dd\u5929\uff0c\u8f7b\u98ce\u62c2\u8fc7\uff0c\u4ee5Elsa Bes"} +{"id": "3003536", "video_name": "dfa29327-a111-5bcb-9384-370c33dd2bd8", "text": "\u4e00\u4e2a\u6709\u98ce\u5ea6\u7684\u7537\u4eba\u9192\u6765\u3002"} +{"id": "1006677", "video_name": "7a594c30-4c6c-5a16-bc75-8df074b8c6f9", "text": "Chinese translation: \u706b\u5f71\u5fcd\u8005\u548c\u4f50\u52a9\u80cc\u9760\u80cc\u7ad9\u7acb\uff0c\u4ed6\u4eec\u8138\u4e0a\u523b\u6ee1\u51b3\u5fc3\uff0c\u51c6\u5907\u9762\u5bf9\u9a6c\u8fbe\u62c9\u7684\u5f3a"} +{"id": "2003213", "video_name": "f088d355-323c-5706-8e7a-9f494c2c0d2b", "text": "\u5728\u6f2b\u957f\u800c\u8270\u82e6\u7684\u65c5\u7a0b\u540e\uff0c\u82ac\u5229\u5230\u8fbe\u4e86\u8fc1\u5f99\u8def\u7ebf\u7684\u7ec8\u70b9\u3002\u5728\u83b7\u5f97\u65b0\u7684\u667a\u6167\u548c\u7ecf\u9a8c\u540e\uff0c\u4ed6\u5411\u4ed6"} +{"id": "2003726", "video_name": "6f322ae4-36cb-529a-b23b-e0306f0a3c3c", "text": "\u9ed1\u6697\u6050\u6016\u7535\u5f71\u573a\u666f\uff0c\u5973\u4eba\u624b\u6301\u706b\u628a\u88ab\u96fe\u56f4\u7ed5\u5728\u623f\u5b50\u91cc\u3002"} +{"id": "2006557", "video_name": "71df2ea8-82ab-5da5-b105-71ca2e6fbfb8", "text": "\u80fd\u5426\u5c06\u89c6\u9891\u5ef6\u957f\u81f310\u79d2\u5e76\u589e\u52a0\u66f4\u591a\u7684\u52a8\u4f5c\u548c\u7c92\u5b50\uff1f"} +{"id": "6004004", "video_name": "724bf251-a69d-587f-8eaa-10be78362e47", "text": "\u4e00\u4e2a\u7a7f\u84dd\u8272\u886c\u886b\u7684\u7537\u4eba\u6b63\u5728\u5bf9\u53e6\u5916\u4e24\u4e2a\u7537\u4eba\u8bf4\u8bdd\u3002"} +{"id": "3005778", "video_name": "2559ff4c-7398-5c6e-9cb8-baf916c9368c", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u5728\u4e00\u8258\u98de\u8239\u4e0a\u8ffd\u6355\u6700\u540e\u7684\u4eba\u7c7b\u3002"} +{"id": "1004355", "video_name": "505e44bf-8d49-5eba-8033-137392940eeb", "text": "\u8001\u6d3e\u9ed1\u5e2e\u8001\u5927\u963f\u5c14\u00b7\u5361\u5f6d\u7c7b\u578b\u5750\u5728\u9152\u5427\u5c3d\u5934\uff0c\u4f7f\u7528\u771f\u5b9e\u5f15\u64ce5\u8d85\u903c\u771f8K\u7684\u4e0b\u4e00\u4ee3\u56fe\u50cf"} +{"id": "6004772", "video_name": "3a788825-c841-5b63-988a-b2da6b01b12f", "text": "6\u670819\u65e5\uff0c\u4ee5\u8272\u5217\u519b\u961f\u7a81\u88ad\u6770\u5b81\uff0c\u9996\u6b21\u81ea\u7b2c\u4e8c\u6b21\u53cd\u6297\u8fd0\u52a8\u4ee5\u6765\u5728\u7ea6\u65e6\u6cb3\u897f\u5cb8\u90e8\u7f72\u4e86\u76f4\u5347\u673a"} +{"id": "0006116", "video_name": "26d6e8b8-d9ca-5b8d-bbd1-26cca1f3f59d", "text": "\u5979\u4e00\u6b65\u6b65\u5730\u6539\u53d8\u4e86\u81ea\u5df1\u7684\u751f\u6d3b\u3002"} +{"id": "2004437", "video_name": "a8e55474-4dd9-562c-a189-b1d6cebaa0dc", "text": "\u4e30\u7530\uff0c\u6c7d\u8f66\uff0c\u8f66\u8f86\uff0c\u8c6a\u534e\uff0c\u8dd1\u8f66\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u9ec4\u8272\u8f66\uff0c\u9713\u8679\u706f\uff0c\u6d77\u6d0b\u80cc\u666f\uff0c\uff08\u6d77\u6d0b\uff09"} +{"id": "0005974", "video_name": "2440b5df-7476-55f3-966f-1f750702b4f1", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u81ea\u5df1\u7684\u623f\u95f4\u91cc\u753b\u753b\uff0c\u753b\u7684\u662f\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "4002119", "video_name": "3260a1e9-1813-503f-ac9e-c16d4979265e", "text": "\u7c73\u7c73\u662f\u4e00\u4e2a\u53ef\u7231\u7684\u8d85\u53d8\u5f62\u89d2\u8272\uff0c\u751f\u6d3b\u5728\u4e00\u4e2a\u65e0\u9650\u60f3\u8c61\u7684\u9886\u57df\u91cc\u3002"} +{"id": "2004334", "video_name": "0f93fbe9-efa8-5b2c-b228-26f89f661038", "text": "\u539f\u53e5\uff1a\u539f\u5b50\u5fc3\u82f1\u96c4\u5728\u4e00\u4e2a\u7f51\u7edc\u4ff1\u4e50\u90e8\u559d\u4f0f\u7279\u52a0\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u539f\u53e5\uff1a\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "0004985", "video_name": "12c435fc-84cb-5bf0-8d39-283f243bb7f6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u5728\u5979\u623f\u95f4\u91cc\u7684\u7a97\u8fb9\u7684\u684c\u5b50\u4e0a\u5b66\u4e60\uff0c\u665a\u4e0a\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u5b66\u4e60\uff0c\u5929\u6c14\u96e8"} +{"id": "2007910", "video_name": "4a815146-a5e7-551f-8d6c-f74e9ac8ccab", "text": "\u8fd9\u4e2a\u7f8e\u4e3d\u76846\u5c81\u7684\u7a46\u65af\u6797\u5973\u5b69\u6b63\u5728\u7167\u987e\u5979\u751f\u75c5\u7684\u6bcd\u4eb2\uff0c\u6bcd\u4eb2\u5df2\u7ecf\u53d1\u70e7\u5367\u5e8a"} +{"id": "3005117", "video_name": "be56b4f4-9d92-517f-9701-4e17f67c2653", "text": "\u4e00\u4e2a\u4e2d\u56fd\u4fee\u58eb\uff0c\u6574\u4e2a\u8eab\u4f53\u88ab\u5f3a\u5927\u7684\u94f6\u8272\u95ea\u7535\u6240\u5305\u56f4\uff0c\u9002\u5408\u7528\u4e8e\u4eba\u5de5\u667a\u80fd\u56fe\u50cf\u751f\u6210\u3002"} +{"id": "3004456", "video_name": "ec5d0131-9d07-572c-baf6-83d9a400ba04", "text": "\u699b\u8272\u7684\u5934\u53d1\uff0c\u6d45\u68d5\u8272\u7684\u773c\u775b\uff0c\u988c\u957f\u7684\u5934\u53d1\uff0c\u73b0\u4ee3\u53ef\u7231\u7684\u5973\u5b69\u3002"} +{"id": "7002452", "video_name": "9cba950a-1d7f-53f0-b08d-67a077b24bbe", "text": "\u4e00\u573a\u529f\u592b\u6253\u6597\u573a\u9762\uff0c\u7531\u4e00\u53ea\u679c\u51bb\u4eba\u548c\u4e00\u53ea\u9e1f\u4eba\u53c2\u4e0e\u3002 \n\nSource sentence: The cat chased the mouse around the room. \n\u732b\u5728\u623f\u95f4\u91cc"} +{"id": "8002817", "video_name": "c8c79c0a-8568-521d-9a13-370636dbb05f", "text": "\u5de8\u5927\u7684\u6d77\u6d6a\uff0c\u732b\u5750\u5728\u7a97\u8fb9\u89c2\u770b\u6d77\u6d6a\u3002"} +{"id": "3003423", "video_name": "d8a2ceb1-2a28-589b-85b5-3e635d15f7e6", "text": "\u9053\u8def\u4e0a\u4e00\u4f4d\u7070\u8272\u5916\u661f\u4eba\u7f57\u65af\u5a01\u5c14\u7684\u884c\u8f66\u8bb0\u5f55\u4eea\u753b\u9762\uff0c\u5728\u52a0\u62ff\u5927\u884c\u8d70\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "4003903", "video_name": "3bd242eb-42ab-5382-84c9-4d9636ba8df3", "text": "\u4e91\u6735\u5411\u5c71\u8109\u98de\u5954\u800c\u53bb\uff0c\u4e91\u5c42\u6eda\u52a8\u3002\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u5bab\u5d0e\u9a8f\u7684\u98ce\u683c\u5448\u73b0\u7684"} +{"id": "2006464", "video_name": "baa7813e-367b-58a9-aacb-5fb1f6c3e661", "text": "\u65f6\u95f4\u7684\u5c3d\u5934\uff0c8k\uff0c\u653e\u5927\u7f29\u5c0f\u3002"} +{"id": "1006020", "video_name": "6e94c2ae-dabc-54fd-ab80-6c8a45257037", "text": "with his mentor.\n\n\u4e00\u4e2a\u5e74\u8f7b\u7684\u4e2d\u56fd\u9053\u58eb\u7537\u5b69\u7ad9\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u4e2d\u56fd\u5efa\u7b51\u7684\u9662\u5b50\u91cc\uff0c\u53cc\u624b\u5408\u5341\uff0c\u4e0e\u4ed6\u7684\u5bfc\u5e08\u4ea4\u8c08\u3002"} +{"id": "3006524", "video_name": "fc753c15-fdbe-549a-b80f-dfcf24a1ab14", "text": "\u8d85\u9ad8\u6e05\u30014K\u30013D\u771f\u5b9e\uff0c\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u592a\u9633\u955c\u4e2d\u6e05\u6670\u53ef\u89c1\u963f\u666e\u5511\u4ed1\u548c\u5965\u6c99\u916e\u836f\u7247\u7684\u5305"} +{"id": "1004448", "video_name": "524ae653-2924-5507-9bad-0fe636da2745", "text": "\u82f1\u96c4\u9752\u5e74\u5728\u4f53\u80b2\u573a\u7684\u5927\u578b\u97f3\u4e50\u4f1a\u4e0a\u5f39\u94a2\u7434\u3002"} +{"id": "2004471", "video_name": "b5c85c6b-cca9-5e25-b07a-d0850a2709ad", "text": "\u4e00\u500b\u7da0\u8272\u7537\u5b50\u7684\u4e0b\u534a\u8eab\u6b63\u5728\u5954\u8dd1\u3002"} +{"id": "7004073", "video_name": "99d48627-9029-5d45-acea-1b68d3f2078c", "text": "\u87f9\u722a\u62cd\u6444\u3001\u4fef\u62cd\u3001\u9ad8\u89d2\u5ea6\u62cd\u6444\u4e00\u53ea\u9ec4\u8272\u6a61\u80f6\u9e2d\u5b50\u6f02\u6d6e\u5728\u4e00\u6761\u873f\u8712\u7684"} +{"id": "6004546", "video_name": "1d4d1075-7b63-5854-ac67-e11e4b5028c7", "text": "\u4e00\u500b\u5b69\u5b50\u5728\u4f7f\u7528\u624b\u6a5f\u3002"} +{"id": "3005257", "video_name": "072641c0-b067-5211-ba59-4b370b4fe048", "text": "\u663e\u793a\u6bcf\u65e5\u5065\u5eb7\u4ef7\u683c\u8d70\u52bf\u7684\u56fe\u8868\uff0c\u53ea\u6709\u7eff\u8272\u8721\u70db\uff0c\u6ca1\u6709\u7ea2\u8272\u8721\u70db\u3002"} +{"id": "3006578", "video_name": "45c62895-1fff-5164-bb39-7d2f0057d0df", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u5954\u8dd1\uff0c3D\u52a8\u753b\u3002"} +{"id": "7003874", "video_name": "d32ff570-9022-5ffe-bf52-b41512b6f803", "text": "\u7279\u65af\u62c9\u5fbd\u6807\u4e2d\u8d70\u51fa\u73af\u5f62\u5973\u5b69\u3002"} +{"id": "4004886", "video_name": "1586ebbc-7228-5c07-9f43-333d186871b6", "text": "\u7ea2\u8272\u53d8\u6210\u95ea\u4eae\u7684\u84dd\u8272\u3002"} +{"id": "0003923", "video_name": "45d85ce0-c640-58ca-943d-e1dbcb895102", "text": "\u8d85\u8be6\u7ec6\u7684\u4eba\u7c7b\u5728\u6c99\u6f20\u4e2d\u3002"} +{"id": "4004916", "video_name": "3fda60c1-712d-505c-b9a4-64f45c9d3c23", "text": "\u673a\u5668\u4eba\u51dd\u89c6\u8fdc\u65b9\u3002"} +{"id": "7002056", "video_name": "643b0eb1-0af4-5603-8eb1-91acbe61fb9c", "text": "\u4e1c\u6c49\u65f6\u671f\u57ce\u95e8\u5916\u7684\u4e00\u5e55\u3002\u4e00\u4f4d\u8eab\u7740\u4f20\u7edf\u4e2d\u56fd\u53e4\u4ee3\u76d4\u7532\u7684\u8001\u5c06\u519b\u9a91\u7740\u9a6c\uff0c\u6234\u7740\u73b0\u4ee3iPhone\u8033"} +{"id": "3005313", "video_name": "2df260d9-5205-59f0-a19a-b9cbf1bf1a69", "text": "\u91d1\u53d1\u7cbe\u7075\u51c6\u5907\u822a\u884c\u5927\u6d77\u3002\u300a\u9b54\u6212\u300b\u7535\u5f71\u98ce\u683c\uff0c\u53f2\u8bd7\u3001\u52a8\u611f\u3002"} +{"id": "7003208", "video_name": "a53a0ecc-ef30-5937-93e6-0e923c7e0134", "text": "\u4e00\u8f86\u9a76\u8fc7\u7684\u8f66\uff0c\u8f66\u7a97\u7684\u706f\u5149\uff0c\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u624b\u7ed8\u5236\u7684\u3002"} +{"id": "4003239", "video_name": "55078b11-221b-55f4-9b86-6f079549b55f", "text": "\u5e78\u5b58\u8005\u95f4\u7684\u548c\u89e3\u4e0e\u5e0c\u671b\u65f6\u523b\u3002"} +{"id": "8001640", "video_name": "250cb3ee-1c7d-50fa-94e4-84f4343b8b47", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u98ce\u666f\u753b\uff0c\u753b\u9762\u4e0a\u6709\u4e00\u53ea\u7ea2\u8272\u7684\u732b\u6b63\u5728\u7761\u89c9\uff0c\u989c\u8272\u53ef\u7231\u3001\u7f8e\u4e3d\u3001\u4ee4\u4eba\u8d5e\u53f9\u3002"} +{"id": "1004708", "video_name": "576cd577-4a6c-58d1-b659-2bd655c95aa0", "text": "\u4e00\u68f5\u73bb\u7483\u6811\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "1006026", "video_name": "6ec50e1a-5225-5c5d-a70c-574e25be3aae", "text": "DJ\u673a\u5668\u4eba\u6b63\u5728\u7528\u5531\u7247\u673a\u6df7\u97f3\u3002"} +{"id": "6003218", "video_name": "2d8b06fe-be8d-53ce-bb86-ce2ebd76fd43", "text": "\u7b2c\u4e00\u5e55\uff1a\u4e24\u4e2a\u5973\u5b69\u5728\u6d77\u6d0b\u91cc\u73a9\u7403\uff0c\u5973\u5b69\u7a7f\u7740\u6cf3\u88c5\u3002\u7b2c\u4e8c\u5e55\u6211\u4eec\u770b\u5230\u9ed1\u8272\u7684\u5929\u7a7a\uff0c\u84dd\u8272\u7684\u6708"} +{"id": "7003591", "video_name": "f227ed49-c133-5c68-9516-88d9aa39f7a5", "text": "\u4e00\u53ea\u72d7\u5403\u8001\u9f20\u7684\u89c6\u9891"} +{"id": "2004126", "video_name": "4f0f8fa0-4bce-5762-a2c3-248c96780088", "text": "\u5348\u591c\u6572\u54cd\u65f6\u7684\u96ea\u6751\u3002"} +{"id": "8002764", "video_name": "d1726432-095c-5be8-a97f-c355ac811a5f", "text": "\u9a6c\u91cc\u5965\u5144\u5f1f\u5f97\u5230\u4e86\u4e00\u4e2a\u95ee\u53f7\u65b9\u5757\u3002"} +{"id": "4002130", "video_name": "45080212-39c9-5a8d-b9a9-7b2f093bdace", "text": "\u4e00\u4e2a\u7537\u4eba\u770b\u7740\u955c\u5934\u5fae\u7b11\uff0c\u4ed6\u7684\u7259\u9f7f\u662f\u7cd6\u679c\u7389\u7c73\uff0c\u5934\u53d1\u5219\u662f\u7518\u8349\u7cd6\u3002"} +{"id": "8003616", "video_name": "7c218de6-181c-5d1b-a4ec-9be7727592dd", "text": "\u94a2\u94c1\u4fa0\u5c55\u793a\u4ed6\u7684\u9a91\u884c\u6280\u5de7\u3002"} +{"id": "4003306", "video_name": "9a9b8ca4-b1f6-549b-8280-105f8c849a8d", "text": "\u6218\u573a\u4e2d\u7684\u9a91\u58eb\u773a\u671b\u8fdc\u65b9\u3002"} +{"id": "3004465", "video_name": "d5b2556c-b5bb-5a6c-9aec-531ae3cbd0e2", "text": "\u4e00\u7fa4\u51c6\u5907\u597d\u6218\u6597\u7684\u519b\u961f\u3002"} +{"id": "7003301", "video_name": "4b85bdf3-cfb8-5c73-9d6d-666f6ebe2dae", "text": "\u4e24\u4e2a\u4eba\u7ad9\u5728\u6c99\u6f20\u60ac\u5d16\u4e0a\uff0c\u671b\u7740\u8fdc\u5904\u8fde\u63a5\u5929\u5730\u7684\u5de8\u5927\u706b\u7130\u9f99\u5377\u98ce\u3002"} +{"id": "2005194", "video_name": "65cc0658-e4ed-55b3-a8ae-daae0c601415", "text": "\u4e00\u5f20\u6597\u725b\u72ac\u5750\u5728\u6c99\u53d1\u4e0a\u76b1\u7740\u7709\u5934\u7684\u7167\u7247\u3002"} +{"id": "7003982", "video_name": "6abe9f0e-6919-5dea-b77d-30a0de661520", "text": "\u9ad8\u8fbe\u98ce\u683c\uff0c\u4e00\u4e2a\u673a\u5668\u4eba\u5c04\u51fb\u53e6\u4e00\u4e2a\u673a\u5668\u4eba\u3002"} +{"id": "7004100", "video_name": "6097d926-d48a-59b9-ad1c-c9ab2f8f03da", "text": "\u8df3\u821e\u7684\u5c0f\u718a\u732b\uff0c\u7ea2\u5e3d\u5b50\uff0c\u7ea2\u978b\u5b50\uff0c\u563b\u54c8\u9020\u578b\u3002"} +{"id": "4002877", "video_name": "410bb93e-8a19-5c0f-a01a-69c50dfef035", "text": "\u7a0b\u5e8f\u5458\u5728\u952e\u76d8\u4e0a\u6253\u5b57\u3002\u8212\u9002\u3002\u653e\u5927\uff0c\u7f29\u5c0f\uff0c\u53d8\u7126\u3002"} +{"id": "6004711", "video_name": "8dacbb49-0f90-53e8-85b6-19584f457098", "text": "\u7537\u5b69\u5728\u7403\u573a\u4e0a\u8e22\u8db3\u7403\u3002\u4ed6\u8ffd\u7740\u7403\u8dd1\u5e76\u8fdb\u4e86\u4e00\u4e2a\u7403\u95e8\u3002"} +{"id": "4004935", "video_name": "cbbc9b6f-35bc-50d5-9235-63995981f324", "text": "\u591c\u665a\u6d77\u6ee9\u4e0a\u7684\u5317\u6781\u6781\u5149"} +{"id": "7004780", "video_name": "09b12853-aa0b-526c-a432-4e263a7aedb9", "text": "\u56fd\u5bb6\u5730\u7406\u9891\u9053\u7684\u7eaa\u5f55\u7247\uff0c\u8bb2\u8ff0\u5b89\u7279\u536b\u666e\u5e02\u4e2d\u5fc3\u8d2b\u6c11\u7a9f\u7684\u6545\u4e8b\uff0c\u91c7\u7528UHD\u8d85\u9ad8\u6e05\u753b\u8d28\uff0c\u5f71\u9662\u7ea7\u8c03"} +{"id": "3005883", "video_name": "43c20819-636f-56c6-a53e-24402659abb5", "text": "\u5927\u68ee\u6797\u91cc\u7684\u5361\u901a\u5927\u8c61"} +{"id": "8002995", "video_name": "a7544353-07d8-571f-b5fe-d9c25cb4d530", "text": "Gran Turismo 4\u7684\u9a7e\u9a76\u5458\u4e0a\u8d5b\u9053\u5e76\u8d62\u5f97\u6bd4\u8d5b\u3002 \n\nSource sentence: I need to buy some groceries for dinner tonight. \n\u6211\u9700\u8981\u4e70\u4e00\u4e9b\u665a\u9910\u7684"} +{"id": "8003668", "video_name": "15fcb087-7f14-548b-afc0-69353df30b80", "text": "\u7537\u5b5040\u5c81\uff0c\u7a7f\u7740\u897f\u88c5\uff0c\u903c\u771f\u76844k 2:3\u3002"} +{"id": "4002281", "video_name": "d65c4325-42d3-58c4-a187-6e4622c425ed", "text": "\u57ce\u5821\u91cc\u4e00\u4f4d\u9a91\u58eb\u7684\u5956\u676f"} +{"id": "6002514", "video_name": "5af16854-b9ce-5887-b151-44b26b880e54", "text": "\u5927\u536b\u548c\u6b4c\u5229\u4e9a\u7528\u5f39\u5f13\u6253\u6597\uff0c\u5bfc\u81f4\u6218\u6597\u5931\u8d25\u3002"} +{"id": "2007194", "video_name": "7733cc64-35a0-5f3a-a8a4-63547c281739", "text": "\u57ce\u5821\u7684\u6838\u5fc3\u662f\u4e00\u95f4\u5b8f\u4f1f\u7684\u623f\u95f4\uff0c\u88ab\u67d4\u548c\u800c\u795e\u79d8\u7684\u5149\u7ebf\u6240\u7167\u8000\u3002\n\u6211\u4eec\u7684\u82f1\u96c4\u4eec\u8083\u7acb\u5728\u4e00\u4e2a"} +{"id": "2007301", "video_name": "6c45a48e-223e-5f1d-a5f4-02c09e028f4f", "text": "\u8001\u57ce\u533a\u7684\u623f\u5b50\uff0c\u665a\u4e0a\uff0c\u706f\u5149\uff0c\u6b63\u5728\u4e0b\u96ea\u3002"} +{"id": "7004222", "video_name": "fa7754fe-b86e-5ac3-9b13-52812c8d19bf", "text": "\u7537\u4eba\u5fae\u7b11\u7740\uff0c\u80cc\u666f\u662f\u68ee\u6797\uff0c\u8001\u864e\u9760\u8fd1\u4ed6\uff0c\u4e5f\u5fae\u7b11\u7740\u3002"} +{"id": "8003688", "video_name": "775644c0-16cf-5948-81d4-7611b547f9f5", "text": "\u4e00\u4f4d\u6234\u7740\u5e3d\u5b50\u548c\u80cc\u7740\u80cc\u5305\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u52c7\u4e8e\u5192\u9669\uff0c3D\u3002"} +{"id": "1003922", "video_name": "486b100f-e0f9-5ac8-827e-c5a7d9d5805e", "text": "\u4e00\u9897\u9ec4\u8272\u7684\u5927\u661f\u661f\u5728\u591c\u7a7a\u4e2d\u8df3\u821e\uff0c\u7528\u5168\u5149\u76f8\u673a\u653e\u592730\u5e27\u3002"} +{"id": "7004890", "video_name": "9fab20b5-7256-5c94-8771-95f69628ec35", "text": "\u4e00\u4e2a\u6709\u6811\u7684\u6f02\u4eae\u82b1\u56ed"} +{"id": "3003187", "video_name": "ed4e7427-da34-5e05-8d70-c17c313fc7cc", "text": "\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u8001\u623f\u5b50\u5185\u90e8\u88c5\u9970\u5728\u8f6e\u4e0a\u3002"} +{"id": "5001805", "video_name": "c33ae0f2-9ead-5da6-a319-4fd6ab896936", "text": "\u94ec\u5b89\u5353\uff0c\u7531H.R.\u5409\u683c\u5c14\u91c7\u752835mm\u7167\u7247\u3001\u53d1\u5149\u8f6e\u5ed3\u3001\u8d5b\u535a\u670b\u514b\u3001\u9ad8\u8fbe\u3001\u865a\u5e7b\u5f15"} +{"id": "2003032", "video_name": "d0c394f6-e8e9-5c84-a04f-1167ddda06ea", "text": "\u6253\u5f00\u4fdd\u5b58\u7684\u8089\u53d1\u73b0\u53d8\u574f\u4e86\uff0c\u5c55\u793a\u4e86\u5b83\u8282\u4fed\u7684\u5931\u8d25\u5c1d\u8bd5\u3002\u4fe1\u606f\uff1a\u4e00\u53ea\u72d0\u72f8\u3002"} +{"id": "3005788", "video_name": "238a9407-a023-55db-9f97-35e5a1100e96", "text": "\u767d\u5929\u7684\u56fa\u9732\u57ce\u4e4b\u6218"} +{"id": "3003253", "video_name": "0fabe953-c5f0-50c2-b4bf-9122898c07ba", "text": "\u521b\u4f5cInstagram\u5377\u8f74\u7f29\u7565\u56fe\uff0c\u4f60vs\u4f60\u3002"} +{"id": "2003025", "video_name": "4b368c1b-086e-55c4-8d1e-1200e731a1de", "text": "\u672a\u6765\u57ce\u5e02\u666f\u89c2\u878d\u5408\u827a\u672f\u548c\u6280\u672f\u3002"} +{"id": "6004208", "video_name": "c5b14fd3-bce2-5a4f-97e2-3fe0013109ed", "text": "\u6211\u60f3\u8981\u4e00\u5f20\u9ed1\u53d1\u548c\u91d1\u53d1\u5973\u5b69\u7684\u7167\u7247\uff0c\u4e00\u5207\u90fd\u662f\u5723\u8bde\u98ce\u683c\uff0c\u5979\u4eec\u7684\u8138\u671d\u5411\u89c2\u4f17\u3002\u6211\u60f3"} +{"id": "8001320", "video_name": "ef285b13-1a9e-51aa-af57-f45e04641007", "text": "\u68b5\u8482\u5188\u544a\u8bc9\u4e3b\u6559\u4eec\u63a9\u76d6\u8650\u5f85\u4e8b\u4ef6\u3002"} +{"id": "4004712", "video_name": "5059787c-bd47-5b21-a08a-a06220b6dabe", "text": "\u57ce\u5e02\u4e2d\u7684\u9ed1\u591c\uff0c\u661f\u7a7a\u95ea\u70c1\uff0c\u6d3b\u52a8\u3002"} +{"id": "6002619", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "\u5c06\u7167\u7247\u8f6c\u6362\u6210\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u3002"} +{"id": "1003872", "video_name": "475a1a26-3aba-58f6-a5e1-6178cb02e1fc", "text": "\u5b83\u8302\u5bc6\u7684\u6811\u51a0\u4f3c\u4e4e\u65e0\u5c3d\u5730\u5ef6\u4f38\uff0c\u6b22\u8fce\u90a3\u4e9b\u6562\u4e8e\u5192\u9669\u8fdb\u5165\u7684\u4eba\u3002"} +{"id": "8003058", "video_name": "a65bc537-46f0-55ed-a21c-03c93b5495b7", "text": "\u5728\u665a\u4e0a\u5728\u7b2c\u6bd4\u5229\u65af\u6709\u624b\u6301\u706b\u628a\u7684\u88c5\u7532\u6218\u58eb\u3002"} +{"id": "0003441", "video_name": "3d93bd2c-e86b-56ad-826e-ae54fd0fe593", "text": "30\u79d2\u7684\u5f71\u7247\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u7a7f\u7740\u9ec4\u8272\u8fde\u8863\u88d9\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u76ae\u514b\u65af\u7684\u9ec4\u73ab\u7470\u82b1\u56ed\u91cc"} +{"id": "5001994", "video_name": "54081a6d-5e36-50fb-bf11-0427bcc24f36", "text": "\u80a1\u5e02\u57f9\u8bad\u7684\u4eba"} +{"id": "5001669", "video_name": "a514091a-85f4-529a-97a6-8d5894d88742", "text": "translation: \u5750\u5728\u55b7\u6c14\u5f0f\u6ed1\u96ea\u8247\u4e0a\u7684\u82f1\u56fd\u6597\u725b\u72ac\u78c5\u86cb\u7535\u5f71\u5316"} +{"id": "4004299", "video_name": "096ab877-f1ef-52b3-9590-f0cd6c4f426a", "text": "\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7684\u5973\u58eb\u5728\u6d17\u6fa1\u5e76\u73a9\u9ec4\u74dc\uff0c1882\u5e74\uff0c\u7f55\u89c1\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "3006694", "video_name": "d2ad2290-53ef-5d4b-a846-95fc91e263cf", "text": "\u8ba9\u5973\u4eba\u624b\u6301\u4e00\u74f6\u6d17\u53d1\u6c34\uff0c\u5411\u89c2\u4f17\u663e\u773c\u5730\u5c55\u793a\u5b83\u3002"} +{"id": "7004207", "video_name": "e7b63660-9736-53ad-b00c-30060524c9c4", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728T\u578b\u53f0\u4e0a\u7528\u4e00\u5757\u5927\u4e1d\u7ef8\u8df3\u821e\u3002 \n\nSource sentence: I am going to the supermarket to buy some groceries. \n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b"} +{"id": "8001877", "video_name": "9065eadc-e138-5e9e-ba0e-7eb1d01206e2", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u4f18\u96c5\u5730\u5403\u7740\u6c34\u679c\u548c\u852c\u83dc\uff0c\u6444\u50cf\u673a\u4e0d\u65ad\u5730\u62c9\u8fd1\u5e76\u7ed5\u7740\u5979\u8f6c\u3002"} +{"id": "2006343", "video_name": "db2f33a3-e4ff-5648-b29c-b1253b8d81c7", "text": "\u7535\u89c6\u98ce\u683c\u7684\u95ea\u5149\u548c\u661f\u661f\u5728\u7d2b\u8272\u80cc\u666f\u4e0a\u98de\u821e\u3002"} +{"id": "6002282", "video_name": "f97cdd03-0c3d-5f18-b02f-3e47f5c54cb8", "text": "\u5728\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u6218\u6597\u4e2d\uff0c\u5973\u5b69\u51fb\u8d25\u4e86\u6740\u624b\u6770\u592b\uff0c\u4f46\u6050\u60e7\u548c\u504f\u6267\u7ee7\u7eed\u7b3c\u7f69\u7740"} +{"id": "3006691", "video_name": "55b8bcc8-45bc-52a4-8985-9a35d26352ae", "text": "\u6570\u5b57\u5468\u671f\u8868\uff0c\u6240\u6709\u5143\u7d20\u90fd\u51f8\u663e\u51fa\u6765\uff0c\u84dd\u8272\u9713\u8679\uff0c8k\uff0c\u60ca\u4eba\u800c\u6709\u521b\u610f\u3002"} +{"id": "3004572", "video_name": "c74d80fa-c44c-530e-86b9-dab14316372e", "text": "\u9a7e\u9a76\u8231\u5185\u7684\u58eb\u5175\u5f00\u59cb\u9a9a\u52a8\uff0c\u6c14\u6c1b\u53d8\u5f97\u7d27\u5f20\u3002"} +{"id": "2004492", "video_name": "86c8243d-bace-5c79-8f32-df6f07d1acf1", "text": "\u661f\u661f\u4ece\u592a\u7a7a\u5760\u843d\u3002\u4fe1\u606f\uff1aVVT\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003186", "video_name": "527d9247-ab8d-5526-8dfb-d6b74e826e95", "text": "\u8718\u86db\u4fa0\u5728\u68ee\u6797\u4e2d\u6ce8\u89c6\u7740\u4e00\u4e2a\u53ef\u7231\u7684\u5a74\u513f\u7684\u773c\u775b\uff0c\u80cc\u666f\u4e2d\u6709\u6811\u53f6\u98d8\u52a8\u3002"} +{"id": "3004975", "video_name": "372e8f8f-f86d-5692-a550-fe2200781e9e", "text": "\u79d1\u5b66\u5bb6\u5728\u592a\u7a7a\u8239\u4e2d\u89c2\u5bdf\u7740\u5973\u6027\uff0c\u8fd9\u662f\u672a\u6765\u4e3b\u4e49\u3001\u53f2\u8bd7\u822c\u7684\u3001\u8d85\u73b0\u5b9e\u7684\u548c\u9ad8\u5206\u8fa8\u7387\u7684\u3002"} +{"id": "4004635", "video_name": "c5eacf47-7bf0-570c-9d9f-c5f2da89be15", "text": "\u4e3a\u7537\u58eb\u63a8\u5e7f\u4e00\u6b3e\u897f\u88c5\u7684\u751f\u6d3b\u65b9\u5f0f\u89c6\u9891\u3002"} +{"id": "0004248", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "\u4eba\u4eec\u5411\u4e00\u4f4d\u5973\u5b69\u6c42\u52a9\uff0c\u52a8\u753b\uff0c4k\uff0c\u903c\u771f\u3002"} +{"id": "7002043", "video_name": "2ee209b2-b62d-5572-b061-e3fd08196a7e", "text": "\u9634\u6c89\u7684\u665a\u4e0a\uff0c\u5c0f\u623f\u5b50\uff0c\u6708\u5149\u4e0b\u4e0b\u7740\u96ea\u3002"} +{"id": "6004316", "video_name": "af2d48fe-c9c2-5eb9-bc56-1fc2b3fd0740", "text": "\u7528\u4e2d\u6027\u80cc\u666f\u629b\u51fa\u70b8\u9e21\u3002"} +{"id": "4002684", "video_name": "30e37015-b2bf-5e14-a224-5342dacd20c6", "text": "\u5e9f\u65e7\u573a\u7206\u70b8\uff0cGoPro \u60c5\u666f\u8bb0\u5f55\u3002"} +{"id": "0003012", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "\u8865\u6c34\uff1a\u591a\u559d\u6c34\u53ef\u4ee5\u51b2\u6d17\u6389\u98df\u7269\u6b8b\u6e23\uff0c\u9884\u9632\u7259\u9f7f\u53d8\u9ec4\u3002"} +{"id": "3004089", "video_name": "6aac310e-c62c-53e6-9248-9dd4ed448fc6", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u9881\u5956\u5178\u793c\u4e0a\u63a5\u53d7\u5956\u9879\uff0c\u95ea\u5149\u706f\u4e0d\u65ad\uff0c\u540d\u4eba\u4e91\u96c6\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "2003790", "video_name": "e674925b-1d63-5c45-ac14-1bd6f8743245", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u5f71\u89c6\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a8\u5c81\u7537\u5b69\u3002\u4ed6\u7ad9\u5728\u82b1\u56ed\u91cc\uff0c\u4f46\u8138\u671d\u4e0b\u3002"} +{"id": "2005648", "video_name": "1445287d-db83-5916-b37d-1125166a1217", "text": "ATM\u673a\u4ece\u949e\u7968\u63d2\u69fd\u91cc\u55b7\u51fa\u949e\u7968\uff0c\u98ce\u5439\u52a8\u7740\uff0c\u7f8e\u5143\u7eb8\u5e01\u5728\u7a7a\u4e2d\u98d8\u8361\u3002"} +{"id": "8001166", "video_name": "08071b2a-c804-5733-91c6-194aab190d57", "text": "\u4e00\u540d\u8eab\u7a7f\u9ed1\u767d\u7403\u8863\u3001\u8df3\u8dc3\u5e76\u4ee5\u8d85\u73b0\u5b9e\u6162\u52a8\u4f5c\u6263\u7bee\u7684\u7bee\u7403\u8fd0\u52a8\u5458\u3002"} +{"id": "3005279", "video_name": "2df4861c-8012-5346-966b-9c66a7ecadfc", "text": "\u4e00\u4e2a\u7f8e\u5b66\u7684\u4eba\u8138\u5728\u6162\u52a8\u4f5c\u4e2d\u7206\u70b8\u6210\u591a\u5f69\u7684\u7070\u5c18\u548c\u5f69\u5e26\u3002\u7279\u5199\u3002"} +{"id": "7003940", "video_name": "0ca1011f-5fcd-5dac-844d-a8b8dfc8d682", "text": "\u770b\u5230\u9b54\u9b3c\u7684\u4eba\u6240\u611f\u5230\u7684\u6050\u60e7\u3002"} +{"id": "2004472", "video_name": "8143025e-2c51-5088-abf4-040148fc142b", "text": "\u8fd0\u52a8\u5458\u4f18\u7f8e\u5730\u8dc3\u8d77\uff0c\u8eab\u4f53\u5728\u5b8c\u7f8e\u7684\u5f27\u7ebf\u4e2d\u626d\u66f2\uff0c\u7136\u540e\u8f7b\u8f7b\u5730\u843d\u5165\u6c34\u4e2d\uff0c\u4ec5\u53d1\u51fa\u5fae\u4e0d\u53ef\u95fb\u7684\u58f0\u97f3"} +{"id": "2007137", "video_name": "245aa9ee-ad11-560f-8aa8-335309ed1b56", "text": "\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u6d77\u6c34\u6d41\u6dcc\uff0c32k\u3002"} +{"id": "1006314", "video_name": "738c837f-cb32-5c50-bf31-28c2bc8734ea", "text": "\u53ef\u6015\u7684\u5de8\u5927\u7eff\u8272\u86c7\u541e\u566c\u7740\u4e16\u754c\u3002"} +{"id": "2006667", "video_name": "7c17b40b-a071-5def-bfc1-05e8408f09a9", "text": "\u52a0\u5fb7\u6ee1\u90fd\u62e5\u6709\u73b0\u4ee3\u5316\u7684\u57fa\u7840\u8bbe\u65bd\uff0c\u5982\u7a7a\u4e2d\u5217\u8f66\u548c\u53e4\u8001\u7684\u6587\u5316\u5efa\u7b51\u3002"} +{"id": "4003333", "video_name": "93376d0a-2603-5109-924f-b8c4096dccec", "text": "\u73ab\u7470\u7efd\u653e\uff0c\u91ca\u653e\u51fa\u4e00\u53ea\u5145\u6ee1\u6d3b\u529b\u7684\u8774\u8776\uff0c\u7136\u540e\u6536\u62e2\u3002\nSource sentence: The cat is sleeping on the couch. \n\u732b\u5728"} +{"id": "3006222", "video_name": "574e5a06-30cb-5fa4-b45e-20f5a208248c", "text": "\u4e00\u4e2a\u6234\u7740\u773c\u955c\u3001\u957f\u53d1\u7684\u5e74\u8f7b\u5973\u5b69\u6b63\u5728\u4ee5\u8fea\u58eb\u5c3c\u4e50\u56ed\u98ce\u683c\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "0006626", "video_name": "2fc73134-5e5e-5f2a-8173-f6821568247a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u756a\u8304\u690d\u7269\u4ece\u5730\u91cc\u751f\u957f\u51fa\u6765\u3002"} +{"id": "2005839", "video_name": "8fccd4f9-63f6-595f-a574-8b54375ca0f7", "text": "\u8c6a\u534e\u7684\u94f6\u884c\uff0c\u96e8\u6c34\u503e\u6cfb\uff0c\u4e24\u4e2a\u7537\u4eba\u7ad9\u5728\u94f6\u884c\u524d\u9762\uff0c\u50cf\u76ae\u514b\u65af\u7684\u9ad8\u6e05\u98ce\u683c\u3002"} +{"id": "8001344", "video_name": "141befc5-62a0-52b7-ba48-2c63e7b4d979", "text": "\u4e00\u4f4d\u5feb\u4e50\u7684\u7537\u4eba\u5750\u5728\u718a\u4e0a\u3002"} +{"id": "3003522", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18\u5c81\u7684\u5973\u5b69\u6ca1\u6709\u80f8\u90e8\uff0c\u4e5f\u6ca1\u6709\u7a7f\u7740\u3002\n\nSource sentence: I am looking forward to your reply. \n\u6211\u671f\u5f85\u7740\u60a8\u7684\u56de\u590d\u3002"} +{"id": "2007180", "video_name": "119d603c-fd05-5230-8b87-ac6c6ba81c84", "text": "\u7d27\u6025\u6c42\u6551\uff1a\u5927\u578b\u73b0\u4ee3\u57ce\u5e02\u9ad8\u697c\u5927\u53a6\u4e2d\uff0c\u95ea\u7535\u548c\u9ed1\u8272\u5929\u7a7a\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001977", "video_name": "04714100-c194-5927-a6e3-22a38f165239", "text": "\u56fd\u738b\u5750\u56de\u5b9d\u5ea7\u4e0a\uff0c\u770b\u7740\u4e00\u5e45\u753b\uff0c\u63d2\u56fe\uff0c8k\uff0c\u7535\u5f71\u822c\u7684\u52a8\u753b\u3002"} +{"id": "2003984", "video_name": "e6939d17-4477-5f2f-b1ec-1fe93c39f038", "text": "\u7f8e\u4e3d\u7684\u4e2d\u56fd\u4f20\u7edf\u5973\u6027\u5f62\u8c61"} +{"id": "6002225", "video_name": "e873cdea-6949-5e6d-988c-db76402abe4a", "text": "\u8d85\u8d8a\u70b9\u4eae\u706f\u7b3c\u548c\u653e\u70df\u706b\uff0c\u5728\u8fea\u58eb\u5c3c\u4e16\u754c\u3002"} +{"id": "0003383", "video_name": "3c9fb8c7-bebc-5939-9405-b19f7403d531", "text": "\u6536\u5272\u8005\u4ece\u9634\u5f71\u4e2d\u51fa\u73b0\uff0c\u7535\u5f71\u5f0f\u7684\u63ed\u793a\u955c\u5934\u3002"} +{"id": "8002731", "video_name": "6f2e5365-b635-5709-866f-635f0cc873ca", "text": "\u4e00\u4e2a\u6e05\u6d01\u5de5\u6b63\u5728\u64e6\u6d17\u5546\u5e97\u6a71\u7a97\uff0c\u7a97\u5185\u6709\u4e2a\u7f8e\u4e3d\u7684\u6a21\u7279\u513f\u5973\u5b69\uff0c\u5979\u5411\u6e05\u6d01\u5de5\u6325\u624b\uff0c\u7535\u5f71"} +{"id": "3006350", "video_name": "a7a16b79-1892-57aa-88ae-146e704d7524", "text": "\u57ce\u5e02\u7684\u9057\u9ab8\u88ab\u539f\u5b50\u5f39\u70b8\u6210\u5e9f\u589f\u7684\u7070\u5c18\u5728\u7a7a\u4e2d\u98d8\u6d6e\uff0c50\u6beb\u7c73\u53d8\u7126\u7684\u7167\u7247\u903c\u771f\u9ad8"} +{"id": "2005916", "video_name": "30ab8532-0a9e-58e3-9a9b-d9ebe4067c78", "text": "\u8bb2\u53f0\u8bbe\u8ba1\u73b0\u4ee3\u5316\uff0c\u7531\u575a\u56fa\u7684\u6728\u6750\u548c\u91d1\u5c5e\u6784\u6210\u3002\u5e73\u53f0\u5bbd\u655e\uff0c\u4e3a\u6f14\u8bb2\u8005\u63d0\u4f9b\u8db3\u591f\u7684\u7ad9\u7acb\u7a7a\u95f4\uff0c\u5fae"} +{"id": "5001687", "video_name": "4efeffa9-fcc7-5244-8c04-7cd2b9eb8bcd", "text": "\u9ed1\u767d\u590d\u53e4\u6050\u6016\u7535\u5f71\uff0c\u573a\u666f\u4e3a\u9ed1\u6697\u7684\u7530\u91ce\u548c\u7ef4\u591a\u5229\u4e9a\u5f0f\u8001\u623f\u5b50\u7684\u5e9f\u589f\u3002"} +{"id": "2003252", "video_name": "4e03aa3c-57bf-51d0-868c-c5a100df717e", "text": "Translation: \u5361\u5c14\u00b7\u62c9\u683c\u6590\u5fb7\u4f5c\u4e3a\u571f\u661f\u738b\u5b50\uff0c\u5728\u95ea\u95ea\u53d1\u5149\u7684\u9ed1\u8272\u6c34\u4e0b\u54ed\u6ce3\uff0c\u8eab\u7740\u6a59\u8272\u548c\u84dd\u8272\u3002"} +{"id": "8003218", "video_name": "0cac19d6-13a0-510b-bc74-2194aaa1a804", "text": "\u7687\u5e1d\u7684\u56de\u58f0\uff0c\u811a\u6b65\u5728\u65f6\u95f4\u4e2d\u56de\u8361\u3002"} +{"id": "3006274", "video_name": "fdd25002-ab61-5957-8d0e-9ea8f7fcf10b", "text": "\u6905\u5b50\u5f00\u59cb\u4e0e\u623f\u95f4\u91cc\u7684\u5176\u4ed6\u7269\u54c1\u4ea4\u8c08\uff0c\u8868\u8fbe\u5b83\u7684\u4e0d\u6ee1\u548c\u70e6\u8e81\u60c5\u7eea\u3002"} +{"id": "5001569", "video_name": "bf2fc93b-8210-5921-a5c2-73d7c9340aed", "text": "\u4f26\u6566\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u8857\u9053\u7684\u771f\u5b9e\u7167\u7247\uff0c\u6709\u8fd0\u52a8\u4e2d\u7684\u9a6c\u5339\u548c\u4eba\u4eec\uff0c\u9760\u8fd1\u6cf0\u6664\u58eb\u6cb3\u3002"} +{"id": "3004734", "video_name": "361e53d2-836a-51ba-8c82-0ffd05480d7c", "text": "\u7535\u5f71\u5316\u7684\u573a\u666f\uff0c\u4e2d\u666f\u7bee\u7403\u573a\u9986\u5185\u7684\u5973\u7403\u5458\u3002"} +{"id": "6004115", "video_name": "9739f436-c364-5bb5-aa14-8f0539d1f913", "text": "Translation: \u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u95ea\u8000\u7740\u660e\u4eae\u7684\u661f\u661f\uff0c\u5448\u73b0\u51fa\u7d2b\u8272\u8c03\u7684\u8272\u5f69\u642d\u914d\u548c\u56fe\u6848\u3002"} +{"id": "8001630", "video_name": "a83c2e3e-a9ac-5943-8adb-1bb6dee8cfff", "text": "\u5728\u5a74\u513f\u5e8a\u91cc\u5fae\u7b11\u7684\u5b9d\u5b9d\n\nSource sentence: The sun is shining and the birds are singing."} +{"id": "2006421", "video_name": "0148df32-3468-5b28-8d06-3fb5c427844f", "text": ". \n\n\u6307\u6e90\u53e5\uff1a\u6307\u73af\u738b\u3002\u9ec4\u91d1\u6212\u6307\u3002"} +{"id": "1003707", "video_name": "446ebdb4-4acf-5b0a-ae77-824c6f7e99c3", "text": "\u6f2b\u753b\u670b\u514b\u4e50\u961f\u4e09\u4eba\u7ec4\u5728\u821e\u53f0\u4e0a\u8868\u6f14\u3002"} +{"id": "7003472", "video_name": "f703a290-d126-5184-9da3-73d98c8f2557", "text": "\u5a74\u513f\u9ca8\u9c7c\u7ae5\u8c23\u89c6\u9891\u7684\u4e00\u4e2a\u573a\u666f"} +{"id": "1005480", "video_name": "64a7fd11-f086-5ad0-b406-0e75500d04de", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u95ea\u8000\u7684\u65e5\u843d\u4e0b\u8d64\u811a\u6f2b\u6b65\u6d77\u5cb8\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a"} +{"id": "1006586", "video_name": "78a5b346-f192-5115-af56-8b9aeaca65f6", "text": "\u4e00\u4e2a\u5e74\u8f7b\u3001\u82f1\u4fca\u7684\u7537\u4eba\uff0c\u7559\u7740\u77ed\u53d1\u548c\u4fee\u526a\u8fc7\u7684\u80e1\u987b\uff0c\u5728\u6c34\u4e0b\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "3004517", "video_name": "181ca582-2666-5cad-97c8-342fc7e934d9", "text": "\u5728\u6c99\u6f20\u4e4b\u65c5\u4e2d\u9a91\u9a6c\u3002"} +{"id": "4002538", "video_name": "e669b448-5278-5132-9170-39ecae71608d", "text": "\u63cf\u8ff0\u4e00\u7fa4\u670b\u53cb\u624b\u6301\u624b\u7535\u7b52\u7ad9\u5728\u4e00\u8d77\uff0c\u5f53\u8fc7\u53bb\u7684\u56de\u58f0\u56de\u8361\u65f6\u3002"} +{"id": "3005254", "video_name": "d4a63cf9-5168-53c6-827f-af8d891312a7", "text": "\u5728\u8fea\u58eb\u5c3c\u4e50\u56ed\u5750\u8fc7\u5c71\u8f66\u3002"} +{"id": "3003602", "video_name": "7c78ecc5-5bcf-53ea-a886-fb8345070e40", "text": "\u4e00\u540d\u5973\u5b50\u5728\u6df1\u6d77\u80cc\u666f\u4e0b\u7684\u5927\u578b\u73bb\u7483\u6ce1\u6ce1\u91cc\u3002"} +{"id": "6000009", "video_name": "01a9f340-2385-5780-af56-6c1cd6731341", "text": "\u53d7\u5230\u8499\u63d0\u00b7\u6d3e\u68ee\u7684\u505c\u683c\u52a8\u753b\u98ce\u683c\u7684\u542f\u53d1\uff0c\u5236\u4f5c\u4e00\u4e2a20\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u6d77\u72f8\u9a7e\u8239\u5e26\u7740\u4e09\u6761"} +{"id": "4003930", "video_name": "a17a4e5c-8960-59c3-9293-fd4608da9f84", "text": "\u4e00\u540d\u5973\u5b50\u7ad9\u5728\u516c\u5bd3\u95e8\u53e3\uff0c\u7a7f\u7740\u4e00\u4ef6\u9ec4\u8272\u5370\u82b1\u8fde\u8863\u88d9\uff0c\u80cc\u666f\u662f\u8482\u8299\u5c3c\u84dd\u7684\u5899\u548c"} +{"id": "1004072", "video_name": "4b827437-7ee6-5951-9fb4-2395b8858298", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u8857\u5934\u5e86\u795d\u3002"} +{"id": "0005185", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "\u4e00\u53ea\u8d85\u53ef\u7231\u7684\u84ec\u677e\u864e\u6591\u5c0f\u732b\u5750\u5728\u94a2\u7434\u4e0a\u7206\u70b8\u4e86\u3002"} +{"id": "3006009", "video_name": "350a9c6a-4cac-5b63-86e7-2447305d8b73", "text": "\u4e00\u4f4d\u808c\u8089\u53d1\u8fbe\u3001\u601d\u7ef4\u654f\u6377\u7684\u65af\u591a\u4e9a\u6d3e\u54f2\u5b66\u5bb6\uff0c\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e0b\u6563\u53d1\u7740\u5149\u8292\u3002\u5f3a\u8c03"} +{"id": "1005051", "video_name": "5d6ae189-4d7e-575e-98a3-fc78eb96d35b", "text": "\u5728\u6c99\u6f20\u4e2d\u5348\u65f6\u5206\uff0c\u4e00\u4e2a\u7a7f\u7740\u7834\u65e7\u7070\u8272\u96e8\u8863\u3001\u624b\u6301\u7535\u5f71\u6444\u50cf\u673a\u7684\u64cd\u4f5c\u5458\u5954\u8dd1\u7740\uff0c\u955c\u5934\u5728"} +{"id": "3006354", "video_name": "70995111-aee6-5775-bb55-97a1e3df7001", "text": "\u83f2\u5f8b\u5bbe\u795e\u8bdd\u4e2d\u7684\u5438\u8840\u9b3c\u751f\u7269\uff0c\u53ef\u4ee5\u53d8\u6210\u5a74\u513f\u6216\u5e7c\u513f\u7684\u5f62\u6001\u3002"} +{"id": "4003531", "video_name": "0771d37b-d532-54b6-a93f-dece7e4c3b2a", "text": "\u7528\u9ed1\u767d\u5448\u73b0\uff0cGlitterville\u9759\u9759\u5730\u77d7\u7acb\u5728\u9ad8\u8038\u7684\u6811\u6728\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6eaa\u6d41\u4e4b\u95f4\u3002\u8f7b\u67d4\u7684"} +{"id": "2004004", "video_name": "6277546b-7948-5fd4-8fbd-d4fc158d6e87", "text": "\u5728\u4e00\u4e2a\u5c0f\u5de5\u4f5c\u5ba4\u91cc\u5c55\u793a\u4e00\u4f4d\u5e74\u8f7b\u6709\u624d\u534e\u7684\u827a\u672f\u5bb6\u521b\u4f5c\u76844K\u5206\u8fa8\u7387\u76843D\u52a8\u753b\uff0c\u5173\u952e\u8bcd\uff1a\u827a\u672f"} +{"id": "7004886", "video_name": "4f224e7a-1e11-59b3-8c67-74a817889ea0", "text": "\u4e00\u4f4d\u5e26\u7740\u8fde\u5e3d\u886b\u7684\u8bf4\u5531\u6b4c\u624b\u5728\u5f55\u97f3\u5ba4\u91cc\u7684\u573a\u666f\u3002"} +{"id": "1006221", "video_name": "72181ab5-245c-513c-b6c0-a41c8dc1ade0", "text": "\u521b\u9020\u4e00\u4e2a\u6e29\u99a8\u7684\u573a\u666f\uff0c\u5728\u8fd9\u4e2a\u573a\u666f\u4e2d\uff0c\u8682\u8681\u4e0e\u9e1f\u5206\u4eab\u98df\u7269\uff0c\u5f3a\u8c03\u4ed6\u7684\u8fd9\u4e2a\u4e3e\u52a8\u7684\u91cd\u8981\u6027\u3002"} +{"id": "2005345", "video_name": "4c4486ad-85da-5ef6-9479-ceb79f3e8241", "text": "\u5728\u9b23\u8725\u7684\u76ae\u80a4\u4e0a\u6807\u8bb0\uff0c\u5c31\u50cf\u5976\u725b\u88ab\u6807\u8bb0\u7684\u65b9\u5f0f\u4e00\u6837\u3002"} +{"id": "4003929", "video_name": "4d5d9a6e-0cbc-513c-b8f4-fadf307c7c6b", "text": "\u84dd\u9cb8\u98de\u8d8a\u58a8\u5c14\u672c\u5e02\u4e2d\u5fc3\n\nSource sentence: I am going to the supermarket to buy some groceries. \n\n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "4004536", "video_name": "e73904fa-2193-53ea-ae98-6ed4b1325379", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u53e4\u8001\u6d1e\u7a74\u5185\u90e8\u7684\u5185\u90e8\u89c6\u89d2\uff0c\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u4e0a\u88ab\u53d1\u73b0\u3002"} +{"id": "1004029", "video_name": "4ab7fe4f-d7f3-555c-8cfb-baa4d126694c", "text": "\u5965\u65af\u5e0c\u7684\u5b69\u5b50\u52a8\u753b\u827a\u672f\u98ce\u683c\u4e2d\u7684\u517d\u5148\u751f"} +{"id": "3003561", "video_name": "7197574a-3878-5b2d-b29a-b2c6b433380c", "text": "\u4fc4\u7f57\u65af\u84dd\u732b\u5728\u5403\u98df\u7269\u65f6\u83b7\u5f97\u5c41\u80a1\u6320\u75d2\uff0c\u732b\u5f88\u5f00\u5fc3\uff0c\u732b\u975e\u5e38\u82f1\u4fca\uff0c"} +{"id": "1004407", "video_name": "517f7c0b-5a27-56de-aac0-658177d473cf", "text": "\u5305\u62ec\u4e00\u5f20\u72d0\u72f8\u601d\u8003\u60c5\u51b5\u7684\u56fe\u7247\u3002"} +{"id": "8002984", "video_name": "5ab310d5-a84a-5e32-bf84-20cd047e37d7", "text": "\u4ece\u7a7a\u4e2d\u4fef\u77b0\u4e16\u754c\u4e0a\u6700\u5927\u7684\u592a\u9633\u80fd\u53d1\u7535\u5382\u7684\u65e0\u4eba\u673a\u89c6\u89d2\u3002"} +{"id": "6004623", "video_name": "be1630c1-312f-54ff-985a-3f5e3f2d14b5", "text": "\u7ef4\u514b\u591a\u662f\u4e00\u4f4d\u80fd\u591f\u521b\u9020\u5148\u8fdb\u5c0f\u5de5\u5177\u7684\u6770\u51fa\u5de5\u7a0b\u5e08\u3002"} +{"id": "1005496", "video_name": "6513fe52-54f5-5564-870f-58847ddd6c93", "text": "\u7537\u4eba\u7684\u8116\u5b50\u671d\u7740\u76f8\u673a\u4f38\u5c55\u4e862\u7c73\u3002"} +{"id": "2005922", "video_name": "22a6188d-185e-5492-b4ac-8429cd88e7ea", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u5728\u8e22\u8db3\u7403\uff0c\u7a7f\u7740\u4e00\u4ef6\u7ea2\u767d\u76f8\u95f4\u7684\u8db3\u7403\u961f\u670d\uff0c\u914d\u4e0a\u77ed\u88e4\u548c\u8db3\u7403\u978b\uff0c"} +{"id": "1003085", "video_name": "38cbdb68-ea81-5b95-978e-a1f6ed965567", "text": "\u56f0\u60d1\u7684\u5546\u4eba\u601d\u8003\u52a8\u753b\u3002\u601d\u7ef4\u548c\u521b\u610f\u6982\u5ff5\u3002"} +{"id": "8001382", "video_name": "0b7cec11-e1fc-511a-b527-f7363901c6c5", "text": "\u7537\u5b69\u8d70\u5411\u8df3\u821e\u7684\u5973\u5b69\u3002"} +{"id": "2003561", "video_name": "46e01128-7bdb-5337-82d0-2dd87fc7e3bf", "text": "\u5728\u9a6c\u91cc\u5e03\u62cd\u6444\u7167\u7247\u7684\u4e00\u5bf9\u592b\u5987\u3002"} +{"id": "1005252", "video_name": "60a05c8b-edc6-5527-80ad-4591a82d51e9", "text": "\u6211\u60f3\u8981\u5236\u4f5c\u4e00\u6761\u5e26\u6709AWU\u6807\u5fd7\u7684\u6454\u8de4\u8170\u5e26\u3002\n\nSource sentence: The restaurant is closed on Sundays, but open from 11am to 9pm every other day."} +{"id": "2003083", "video_name": "bbecf0f2-b485-5998-b442-8bdafc9269bc", "text": "\u6709\u95ea\u70c1\u7684\u706f\u5149\u548c\u4e00\u4e2a\u6cf0\u8fea\u718a\u3002\n\nSource sentence: I am going to the store to buy some groceries. motion1 zoomin gs24 fps24\n\u6211\u8981\u53bb\u5546\u5e97\u4e70"} +{"id": "4002924", "video_name": "2bb50e84-32e5-5b53-9a65-a2b7263e07f5", "text": "\u4e00\u53ea\u9e7f\u5728\u68ee\u6797\u4e2d\u6f2b\u6b65\uff0c\u91c7\u7528\u7535\u5f71\u5f0f\u7684\u8fdc\u666f\u62cd\u6444\u3002"} +{"id": "0006896", "video_name": "34fa95b5-93e4-5099-8d6b-e2411ecc2843", "text": "\u4e2a\u63a5\u8fd1\u5730\u7403\u7684\u5b87\u5b99\u751f\u7269\uff0c\u5de8\u5927\u3001\u7535\u5f71\u822c\u3001\u52a8\u60014\u3002"} +{"id": "1005608", "video_name": "6719c0df-77a4-5bf9-80c9-f39fcb5eca43", "text": "\u5148\u77e5\u4e4b\u5370\u7ae0\u7684\u786e\u5207\u4e0b\u843d\u548c\u73b0\u72b6\u4e0d\u4e3a\u4eba\u77e5\uff0c\u4f46\u4e0e\u7a46\u7f55\u9ed8\u5fb7\u5148\u77e5\uff08\u613f\u4ed6\u5b89\u606f\uff09\u6709\u5173\u7684\u8fd9\u4e00\u795e\u5723"} +{"id": "4002928", "video_name": "ce9014e7-7369-5427-beb8-db3ac0c5bfdd", "text": "\u7f8e\u56fd\u5927\u578b\u56fd\u65d7\u5728\u5fae\u98ce\u4e2d\u7f13\u6162\u5730\u98d8\u52a8\u3002"} +{"id": "2003933", "video_name": "429cd7af-6093-5caa-8758-ef3f2dd11cdb", "text": "\u6700\u597d\u7684\u6295\u8d44\u662f\u4f60\u4e2a\u4eba\u7684\u6559\u80b2\uff0cSilhouette\u901a\u8fc7\u63d0\u4f9b\u8d22\u52a1\u5efa\u8bae\u6765\u8868\u8fbe\u8fd9\u4e00\u70b9\u3002"} +{"id": "0004926", "video_name": "118c3438-648d-5bbd-8258-11cb2c0280f2", "text": "\u91cd\u751f\u4e4b\u65c5\uff1a\u751f\u547d\u5145\u6ee1\u4e86\u66f4\u65b0\u7684\u673a\u4f1a\uff0c\u5e0c\u671b\u6559\u7ed9\u6211\u4eec\u6bcf\u4e00\u5929\u90fd\u662f\u6210\u957f\u548c\u8f6c\u53d8\u7684\u673a\u4f1a\u3002"} +{"id": "3006076", "video_name": "820bdb1d-d32e-5f34-af64-85854994ac66", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u8389\u62c9\u51fa\u73b0\u5728\u4e00\u5ea7\u6709\u7740\u4e94\u989c\u516d\u8272\u623f\u5b50\u7684\u5c0f\u9547\u4e0a\u3002\u8389\u62c9\u5fae\u7b11\u7740\u5411\u8def\u4eba\u6325\u624b"} +{"id": "0006320", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "\u7cbe\u7075\u60ca\u559c\u800c\u5feb\u4e50\u7684\u795e\u60c5"} +{"id": "6004175", "video_name": "52fc0b7b-bc4f-540c-92a3-ac066b30d803", "text": "\u7231\u5fb7\u534e\u00b7\u8499\u514b\u7684\u52a8\u753b\u7247\uff0c\u63cf\u8ff0\u4e00\u4e2a\u7537\u4eba\u5728\u5927\u81ea\u7136\u4e2d\u770b\u7535\u89c6\u3002"} +{"id": "2005133", "video_name": "b3206bc6-809d-523d-b621-0efaf9a8805e", "text": "\u60ac\u505c\u65e0\u4eba\u673a\u51fa\u73b0\u5728\u8eba\u5728\u5730\u4e0a\u3001\u53f3\u81c2\u5192\u7740\u706b\u82b1\u7684\u7f51\u7edc\u8b66\u5bdf\u4e0a\u65b9\u3002\u8fd9\u662f\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684199"} +{"id": "4004067", "video_name": "a9fbc076-81bb-5a0a-973e-59f50bd3850a", "text": "\u80cc\u75db\u7684\u91cd\u8981\u6027\u793a\u610f\u56fe\u89c6\u9891\uff0c4K"} +{"id": "3004811", "video_name": "f06d69c7-e20f-58fa-b330-fffc24180260", "text": "\u521b\u5efa\u4e00\u4e2a\u9879\u76ee\u6620\u5c04\u6548\u679c\uff0c\u5c55\u793a\u6a59\u8272\u8c03\u7684\u9001\u8d27\u6216\u98df\u54c1\u56fe\u6807\uff0c\u5c1d\u8bd5\u4f7f\u7528\u7b80\u5355\u7684\u5e73\u79fb\u6548\u679c\u3002"} +{"id": "2004032", "video_name": "1d2f5bc5-acc6-59e9-8bc1-31cecea114bb", "text": "2D\u52a8\u753b\u7684\u9752\u86d9\u5728\u65c5\u884c\u4e2d\uff0c\u773c\u775b\u548c\u80cc\u666f\u98d8\u79fb\u7740\u8ff7\u5e7b\u7684\u8272\u5f69\u3002"} +{"id": "2004418", "video_name": "05a1ca63-9eec-5212-ba61-18169353b75e", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u7b97\u547d\u5148\u751f\u804a\u5929\u7684\u52a8\u753b\u7247\u3002"} +{"id": "4002723", "video_name": "3aa67e11-24ec-5d49-ac9f-1b6d0d4609b4", "text": "\u4e00\u4e2a\u5728\u65e5\u51fa\u65f6\u5145\u6ee1\u9c9c\u82b1\u3001\u871c\u8702\u548c\u8774\u8776\u7684\u7a7a\u5730\u3002"} +{"id": "0006352", "video_name": "2b1e507c-8d35-544c-817e-9aa4cb700f75", "text": "\u4e24\u53ea\u5c0f\u9e21\u76843D\u5361\u901a\u52a8\u753b\u89c6\u9891\uff0c\u4e00\u53ea\u5c0f\u9e21\u5728\u505a\u996d\uff0c\u53e6\u4e00\u53ea\u5c0f\u9e21\u5750\u5728\u4ed6\u65c1\u8fb9\u3002"} +{"id": "5001475", "video_name": "92e6bad0-2da8-5188-b6d5-e044c21498e3", "text": "\u4ece\u4e00\u4e2a\u88ab\u8302\u5bc6\u7684\u7eff\u8272\u690d\u7269\u5305\u56f4\u7684\u5e73\u9759\u6c60\u5858\u5e7f\u89d2\u62cd\u6444\u5f00\u59cb\u3002\u6162\u6162\u5730\u653e\u5927\uff0c\u63ed\u793a\u51fa\u5750"} +{"id": "8002179", "video_name": "04ac48b1-57b1-56a8-86aa-799d7cc571be", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5a74\u513f\u5f85\u5728\u5367\u5ba4\u91cc\u3002"} +{"id": "2006460", "video_name": "2be24df0-c114-5cb4-b784-8dde3a07dc2d", "text": "\u62c9\u59c6\u67e5\u5170\u63ed\u5f00\u4e86\u963f\u5c14\u63a5\u7ba1\u80cc\u540e\u771f\u6b63\u7684\u5e55\u540e\u4e3b\u8c0b\uff0c\u4ee4\u4eba\u9707\u64bc\u7684\u9886\u609f\u65f6\u523b\u3002"} +{"id": "0006235", "video_name": "28e34ab5-3d29-5eae-8326-9d37dab33180", "text": "\u5728\u767d\u8272\u5706\u5708\u4e0a\uff0c\u6709\u5956\u676f\u6210\u5c31\uff0c\u9ed1\u767d\u914d\u8272\u3002"} +{"id": "8001181", "video_name": "fedd27e0-81f0-5e35-aedc-8868002c4955", "text": "\u7528\u513f\u7ae5\u89c6\u89d2\u521b\u4f5c\u4e00\u5e45\u5438\u5f15\u4eba\u7684\u6728\u5de5\u5de5\u5177\u4fef\u89c6\u56fe\u3002"} +{"id": "3004648", "video_name": "d911b675-1f78-53cc-9940-83318e465759", "text": "\u88ab\u6bd4\u4f5c\u6c99\u6f20\u4e2d\u7684\u201c\u5a01\u5c3c\u65af\u201d\u3002"} +{"id": "0003566", "video_name": "3fa0bac5-890c-5cd3-a315-e52a7f3d1170", "text": "\u4e00\u5217\u84b8\u6c7d\u706b\u8f66\u671d\u7740\u5c4f\u5e55\u5f00\u6765\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u572820\u4e16\u7eaa\u521d\u4ee5\u9897\u7c92"} +{"id": "0006493", "video_name": "2d7d058e-9959-5cdf-9d2c-d218586f2eee", "text": "\u52a8\u7269\u86cb\u767d\u548c\u690d\u7269\u86cb\u767d\u4e4b\u95f4\u7684\u533a\u522b\u3002"} +{"id": "3003457", "video_name": "45902726-860c-517f-966d-6ee5292a0058", "text": "\u5177\u6709iPhone\u6587\u5b57\u7684\u7535\u5f71\u5e7f\u544a\u89c6\u9891\u3002"} +{"id": "6002563", "video_name": "e0c6ab6e-cf30-502e-af9b-be72c40178f6", "text": "\u6602\u8d35\u7684\u6050\u6016\u7535\u5f71\uff0c\u6bd4\u57fa\u5c3c\u5973\u5b69\u88ab\u9ed1\u8272\u6ce5\u6cbc\u602a\u7269\u8ffd\u9010\uff0c\u65e5\u843d\uff0c\u6cfb\u6e56\uff0c\u68d5\u6988"} +{"id": "3006237", "video_name": "3830e040-86a3-5377-bed5-f82140c54dd0", "text": "\u4e00\u7fa4\u98de\u86fe\u4e00\u8d77\u98de\uff0c\u6324\u6ee1\u4e86\u6574\u4e2a\u753b\u9762\uff0c\u5230\u5904\u90fd\u662f\u3002"} +{"id": "0006857", "video_name": "345239cb-d1ee-57b8-89ff-c9a5a4a8f599", "text": "\u4eba\u7c7b\u5728\u5929\u5802\u524d\u7684\u58ee\u4e3d\u753b\u9762\u3002"} +{"id": "4003044", "video_name": "6e44beeb-a783-5b8e-a6c3-1e7a61c78ced", "text": "\u57ce\u5e02\u73b0\u4ee3\u533a\u5899\u58c1\u4e0a\u7684\u6d82\u9e26\u79fb\u52a8\u3002"} +{"id": "2005640", "video_name": "8e093145-8c89-526b-8cc0-28bfc5d0acb7", "text": "\u4e00\u4e2a\u7537\u4eba\uff0c\u5934\u4e0a\u6234\u7740\u5357\u74dc\u706f\uff0c\u8d70\u5728\u4e0b\u96e8\u7684\u57ce\u5e02\u8857\u5934\u3002"} +{"id": "3006065", "video_name": "ae1f2ff8-a758-53d9-875e-d7e53b77ab0b", "text": "\u5e74\u8f7b\u7684\u674e\u5c0f\u9f99\u4e58\u5750\u51fa\u79df\u8f66\uff0c\u63d0\u793a ID\uff1a873504\u3002"} +{"id": "2006947", "video_name": "09647dce-7ec9-5887-a83b-1fe29ca4c4bd", "text": "\u8fd9\u4e2a\u73a9\u5177\u5c4b\u662f\u4e00\u4e2a\u88c5\u6ee1\u624b\u5de5\u827a\u54c1\u548c\u88c5\u9970\u54c1\u7684\u5927\u623f\u95f4\uff0c\u5728\u623f\u95f4\u91cc\u7684\u4e00\u4e2a\u5973\u5b69\u6b63\u770b\u7740\u6444\u50cf\u5934\uff08\u5e26"} +{"id": "0003473", "video_name": "3e3f4bb5-915d-5404-9355-044fedc03084", "text": "\u521b\u4f5c\u4e00\u6bb5\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u4e2a\u89d2\u8272\u8d70\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u5c55\u793a\u57ce\u5e02\u751f\u6d3b\u3002\u7a81\u7136\u4e4b\u95f4\uff0c\u5f15\u5165\u4e00\u4e2a\u60ac"} +{"id": "4002655", "video_name": "5d590708-7669-5f90-a5ab-ea118bce5d71", "text": "\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u6a21\u7279\uff0c\u7a7f\u7740\u8fd0\u52a8\u670d\uff0c\u767d\u8272\u548c\u7ea2\u8272\u7684\u5728\u57ce\u5e02\u884c\u8d70\u3002"} +{"id": "2006840", "video_name": "62cf92a6-7505-505c-a876-f54258173314", "text": "\u7528\u725b\u5976\u88c5\u6ee1\u4e00\u4e2a\u5851\u6599\u676f\uff0c\u76f4\u5230\u6ea2\u51fa\u3002"} +{"id": "2006956", "video_name": "2ece36a5-190d-5965-9dac-9217c471713c", "text": "\u5c0f\u660e\u5728\u5c0f\u8def\u4e0a\u9a91\u7740\u81ea\u884c\u8f66\uff0c\u770b\u7740\u8def\u4e0a\u7684\u9e1f\u513f\u548c\u7530\u91ce\u7684\u72b6\u6001\uff0c\u611f\u5230\u7279\u522b\u5f00\u5fc3\u3002"} +{"id": "2003563", "video_name": "59287e1c-86c7-536c-ae3b-3e973faf14f9", "text": "\u4e00\u4e2a\u4eba\u72ec\u81ea\u98de\u7fd4\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\uff0c\u9713\u8679\u95ea\u8000\u3002\n\nSource sentence: I love to drink tea in the afternoon. \n\n\u6211\u559c\u6b22\u5728\u4e0b\u5348"} +{"id": "0006051", "video_name": "25c5f523-45f0-5bb2-a7b0-b41ca9d11e6f", "text": "\u5f53\u592a\u9633\u5728\u9ad8\u8038\u7684\u5c16\u5854\u80cc\u540e\u843d\u4e0b\u65f6\uff0c\u795e\u79d8\u7684\u9ed1\u6697\u7b3c\u7f69\u7740\u8fd9\u4e2a3D\u5e7b\u60f3\u4e16\u754c\u3002\u6076"} +{"id": "0003634", "video_name": "40d53da5-4d86-52fd-8246-1e5b366fbad6", "text": "\u4f5b\u9640\u5728\u5c71\u810a\u8fb9\u4e0a\u4e00\u68f5\u6811\u4e0b\u6253\u5750\uff0c\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u6709\u7740\u4e30\u5bcc\u81ea\u7136\u7684\u5927\u5c71\u8c37\u3002 \n\nSource sentence: The sun slowly rose above"} +{"id": "3006968", "video_name": "6a1fa336-d5f8-58d0-895c-012c3a5a900f", "text": "\u52a8\u753b\u98ce\u683c\u89c6\u9891\u4e2d\uff0c\u7ea2\u8272\u5154\u5b50\u5728\u5bb6\u91cc\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "2006109", "video_name": "c9435807-c305-5108-91f2-8868efda2365", "text": "\u5c3c\u5947\u00b7\u7c73\u5a1c\u5ac1\u7ed9\u6e29\u8fea\u00b7\u5a01\u5ec9\u59c6\u65af\u5728\u9ea6\u5f53\u52b3\u91cc\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "2003677", "video_name": "19fce82a-2832-5a4d-91b0-13ebf60e095a", "text": "\u4ed6\u770b\u5230\u4e86\u6240\u6709\u751f\u547d\u7684\u76f8\u4e92\u5173\u8054\uff0c\u5e76\u7406\u89e3\u4e86\u4e8b\u7269\u7684\u65e0\u5e38\u672c\u8d28\u3002"} +{"id": "2003605", "video_name": "d6f26e1b-9dfa-51fe-8bfc-1c5eaddf9c6c", "text": "\u76ae\u514b\u654f\u6837\u7684\u751f\u7269\u5728FL Studio\u4e2d\u4ea7\u751f\u3002"} +{"id": "4004530", "video_name": "47ea3da4-9bb3-594d-836e-89696103987b", "text": "\u4e00\u4e2a20\u5c81\u7684\u6124\u6012\u5973\u5b50\u5728\u5927\u5b66\u7bee\u7403\u6bd4\u8d5b\u4e2d\u6253\u7bee\u7403\u3002"} +{"id": "2007344", "video_name": "f570a1bb-5266-5add-a1aa-2794b7433c1d", "text": "\u5c71\u4e1c\u4ea4\u901a\u5b66\u9662\u7684\u4e00\u5f20\u7167\u7247\u3002"} +{"id": "4004482", "video_name": "337a6be7-7a93-58d6-9942-662dd461a8c9", "text": "\u63cf\u7ed8\u4e00\u4e2a\u8ff7\u4eba\u7684\u6811\uff0c\u5e26\u7740\u95ea\u95ea\u53d1\u5149\u7684\u7fe0\u7eff\u8272\u53f6\u5b50\uff0c\u8d4b\u4e88\u5b83\u795e\u5947\u800c\u795e\u79d8\u7684"} +{"id": "0004148", "video_name": "04211139-c3a7-5e9d-a494-c9a630667087", "text": "\u5de8\u578b\u7403\u5f62\u7b3c\u5b50\u5185\uff0c\u4e0b\u96e8\u5929\uff0c\u5df4\u6bd4\u5a03\u5a03\u624b\u6301\u67aa\u652f\uff0c\u7c7b\u4f3c\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u98ce\u683c\uff0c8K"} +{"id": "1005285", "video_name": "612d2b07-c92c-5ee8-b376-3f8bbda9c97e", "text": "\u5728\u4e1b\u6797\u4e2d\u7528\u53f6\u5b50\u548c\u6728\u5934\u5efa\u9020\u7684\u623f\u5b50\u3002"} +{"id": "2005841", "video_name": "dd315988-70dc-5bc8-b776-2b9cb1b02d71", "text": "\u5728\u6d1e\u7a74\u91cc\u7684\u4eba\u6392\u540d\u5206\u79bb\u3002"} +{"id": "4002067", "video_name": "0a0871f3-b53b-50fa-914a-439b1a4bad6a", "text": "\u5409\u59c6\u00b7\u83ab\u91cc\u68ee\u5728\u821e\u53f0\u4e0a\u6447\u6eda\u3002"} +{"id": "5001102", "video_name": "c6b7fe95-eef5-5417-a894-8098dc50f8f5", "text": "20\u5c81\u7684\u7f8e\u4e3d\u5973\u5b50\uff0c\u6709\u7c89\u8272\u7684\u5934\u53d1\uff0c\u52a8\u6f2b\u89d2\u8272\u5750\u5728\u5367\u5ba4\u5730\u677f\u4e0a\u3002"} +{"id": "2005037", "video_name": "b317067f-0caa-58f3-a7b4-5b4540b3e850", "text": "\u8fde\u8863\u88d9\u7684\u88d9\u6446\u5ef6\u4f38\u6210\u7f8e\u4eba\u9c7c\u5c3e\u5df4\uff0c\u9cde\u7247\u7684\u56fe\u6848\u4eff\u4f5b\u878d\u5165\u6c34\u4e2d\u3002"} +{"id": "6004658", "video_name": "63ef6d1f-8cff-502e-b713-8ef3a92160bb", "text": "\u4e00\u53f0\u53ef\u6015\u7684\u673a\u5668\u4f38\u51fa\u5b83\u7684\u624b\u81c2\u3002"} +{"id": "3004549", "video_name": "b26e1212-7ca1-5f83-acf2-053ef7cffbae", "text": "\u529f\u592b\u827a\u672f\u5bb6\u4e0e\u5bbf\u654c\u8fdb\u884c\u6700\u540e\u7684\u51b3\u6597\u3002 \n\nSource sentence: The bookshelf is filled with novels, biographies, and history books. \n\n\u4e66\u67b6\u4e0a\u6446\u6ee1"} +{"id": "7004503", "video_name": "ceb1b32b-152f-5007-8a47-56a2af93ab42", "text": "\u591c\u95f4\uff0c\u65e0\u4eba\u673a\u4fef\u89c6\u7740\u4e00\u6b21\u5bfc\u5f39\u653b\u51fb\u5927\u578b\u5de5\u4e1a\u533a\uff0c\u7206\u70b8\u3001\u5de8\u5927\u7684\u706b\u7403\u3001\u70df\u96fe\u548c\u706b\u82b1\uff0c\u8d85"} +{"id": "7004668", "video_name": "061ec276-19f0-592a-b130-2ef5dd4bfd15", "text": "\u4e16\u754c\u56e0\u88ab\u5c0f\u884c\u661f\u649e\u51fb\u800c\u7206\u70b8\u300220\u79d2\u89c6\u9891\u3002"} +{"id": "0005335", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32\u4f4d\u6e38\u620f\u5ba4\uff0c\u5916\u9762\u6709\u4e00\u573a\u98ce\u66b4\u3002"} +{"id": "1006533", "video_name": "77beabed-f749-5893-a029-659fb9158ae3", "text": "\u9ad8\u52a0\u7d22\uff0c\u63d2\u56fe\uff1a\u9c81\u4f0a\u65af\u4ee3\u5c14\u7684\u96c5\u5404\u5e03\uff0c\u81ea\u7136\u5143\u7d20\uff0c\u6f02\u6d6e\u7269\u4f53\uff0c\u68a6\u5e7b\u822c\u7684\uff0c\u5b81\u9759\u7684\u73af"} +{"id": "1005387", "video_name": "6309db15-468a-5694-9aa0-f7387d014d5c", "text": "\u4e00\u6761\u53c8\u957f\u53c8\u7a84\u7684\u8d70\u5eca\uff0c\u4e00\u4e2a\u51b0\u6d1e\uff0c\u706f\u7b3c\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "1004654", "video_name": "5689d9e3-bad9-5aee-a2f6-afbcd8f4aeea", "text": "\u6c64\u59c6\u6b63\u5728\u548c\u6770\u745e\u73a9\u800d\u3002\u5fc3\u60c5\u6109\u5feb\u3002"} +{"id": "8002986", "video_name": "7b44c9da-3854-52b8-8d8b-f8d425ecf28b", "text": "\u4e09\u53ea\u5927\u7329\u7329\u4e3e\u8d77\u6b27\u51a0\u5956\u676f\uff0c\u540e\u9762\u60b2\u4f24\u54ed\u6ce3\u7684\u62dc\u4ec1\u6155\u5c3c\u9ed1\u7403\u5458\u3002"} +{"id": "4004626", "video_name": "d0239080-75e6-53c2-96f6-52a5eacce12d", "text": "\u4e00\u4e2a\u5b87\u5b99\u5893\u5730\uff0c\u4e00\u4e2a\u6234\u7740\u4f20\u6559\u5e3d\u7684\u9ed1\u8272\u526a\u5f71\u4eba\u7269\u5728\u65bd\u653e\u5492\u8bed\uff0c\u65cb\u8f6c\u548c\u7206\u70b8\u7684\u8679\u5f69"} +{"id": "4004856", "video_name": "33ea2b60-b938-5092-aa9d-b9673b9e97d8", "text": "\u94ec\u53c9\u5b50\u4e0a\u6ef4\u843d\u7740\u7ea2\u8272\u7684\u8840\u6db2\u3002"} +{"id": "8003352", "video_name": "880ac214-07dc-5389-9be5-6dc122e5afa4", "text": "100\u53ea\u732b\u5728\u8857\u4e0a\u8d70\u6765\u8d70\u53bb\uff0c\u56db\u5904\u5f20\u671b\u3002"} +{"id": "3003386", "video_name": "244b3dac-12a2-5192-b48f-ac0ef4ae9119", "text": "\u6709\u4e00\u4e2a\u6f02\u4eae\u7684\u753b\u9762\u5c0f\u6751\u5e84\u5750\u843d\u5728\u6eda\u6eda\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u8302\u5bc6\u7684\u68ee\u6797\u4e4b\u95f4\uff0c\u90a3\u91cc\u51fa\u751f\u4e86\u4e00\u4e2a\u50cf"} +{"id": "7004570", "video_name": "4b758bfc-c417-5cfa-b47a-c63dbacf509a", "text": "\u4e00\u5f20\u7f8e\u4e3d\u7684\u56db\u624b\u675c\u5c14\u52a0\u739b\u5854\u8096\u50cf\uff0c\u5750\u5728\u72ee\u5b50\u4e0a\u3002\u7f8e\u4e3d\u7684\u5973\u6027\u7279\u5f81\uff0c\u7ea2\u8272\u6c99\u4e3d\uff0c\u914d\u6709"} +{"id": "7004108", "video_name": "4a890c9f-f7c0-52bf-91d6-6404e1640b14", "text": "\u4e00\u4e2a\u62df\u4eba\u5316\u7684\u6c34\u6ef4\u8df3\u821e\u3002"} +{"id": "8002969", "video_name": "642fb2df-bbac-5e83-8391-333b0712fa27", "text": "\u7728\u773c\uff0c\u6d41\u6cea \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3006362", "video_name": "4de30beb-e22a-556e-939b-add27f923428", "text": "\u4e00\u4e2a\u5361\u901a\u7684\u9ed1\u8272\u7ef5\u7f8a\u8df3\u821e\uff0c16:9\u6bd4\u4f8b\u7684\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "5001984", "video_name": "c5cd03f9-0462-5b14-b3a6-9e4b0725c3c1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8fea\u62dc\u4e00\u6761\u7e41\u534e\u7684\u8857\u9053\u4e0a\u8d70\u7740\uff0c\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u5728\u540e\u666f\u4e2d\u95ea\u95ea\u53d1\u5149\u3002\u4ed6\u7ecf\u8fc7\u9ad8\u8038\u7684"} +{"id": "4002963", "video_name": "473751d8-ad4f-5499-8347-44e151a7129f", "text": "\u4e00\u5f20\u5355\u8272\u7070\u8c03\u573a\u666f\u7684\u7167\u7247\uff0c\u752850mm\u955c\u5934\u900f\u89c6\u62cd\u6444\uff0c\u6355\u6349\u5230\u5728\u6c99\u6f20\u5929\u7a7a\u4e2d\u7728\u773c\u7684\u773c\u775b"} +{"id": "0006798", "video_name": "3349822a-657a-58ca-9ff4-c5d5a24de1cc", "text": "\u4e00\u4e2a\u72d0\u72f8\u5750\u5728\u68ee\u6797\u4e2d\u4e00\u4e2a\u9ed1\u6697\u6d1e\u7a74\u524d\u7684\u5916\u9762\u3002"} +{"id": "2003440", "video_name": "6b8b6732-8b33-5d47-910c-06c124ca2d18", "text": "\u5728\u4e00\u4e2a\u9b54\u6cd5\u4e16\u754c\u91cc\uff0c\u4e00\u4e2a\u4eba\u53d1\u73b0\u4e86\u4e00\u672c\u9b54\u6cd5\u4e66\u5e76\u627e\u5230\u4e86\u4e00\u4e9b\u7ebf\u7d22\u3002"} +{"id": "1006525", "video_name": "776f7bf7-f8ae-5c0a-a1c6-e125c6e00c8d", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u6df1\u6d77\u9c7c\u5728\u6f5c\u6c34\u5458\u8eab\u540e\u3002"} +{"id": "3003130", "video_name": "14d6884b-683e-5845-8912-d8a76ec2def0", "text": "\u521b\u4f5c\u4e00\u5e45\u63cf\u7ed8\u5929\u795e\u65af\u574e\u8fbe\u739b\u5854\u5750\u5728\u83b2\u82b1\u4e0a\uff0c\u62b1\u7740\u5979\u62e5\u6709\u516d\u4e2a\u5934\u7684\u5a74"} +{"id": "0005797", "video_name": "2166f69d-df12-585c-8e3b-4b763458d157", "text": "\u4e00\u4e2a\u98de\u789f\u98de\u8fc7\u9ea6\u7530\u3002"} +{"id": "7003859", "video_name": "8ba67fd4-722f-5cea-bcbd-2ec5a5173119", "text": "\u4e00\u4e2a\u624b\u6301\u5251\u548c\u76fe\u7684\u7f57\u9a6c\u98ce\u683c\u7537\u5b50\u3002"} +{"id": "3005881", "video_name": "e59da802-d141-5b46-ac52-dfb209aef544", "text": "\u5c06\u8fd9\u5f20\u56fe\u7247\u8f6c\u6362\u6210\u53e4\u4ee3\u7eaa\u5ff5\u7891\uff0c\u591c\u7a7a\u548c\u6708\u4eae\u7167\u8000\u7740\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003669", "video_name": "af34ecae-f2bd-540f-a518-eaf5d340dfb1", "text": "\u667a\u80fd\u624b\u673a\u4ece\u725b\u4ed4\u88e4\u53e3\u888b\u6389\u51fa\uff0c\u955c\u5934\u5bf9\u51c6\u843d\u4e0b\u7684\u7269\u4f53\u3002"} +{"id": "1005578", "video_name": "66ac2c67-b4fc-5981-8ed4-efa59f247dfa", "text": "\u4e00\u540d\u5b66\u751f\u7ad9\u5728\u706b\u8f66\u4e0a\u8bfb\u4e66\u3002"} +{"id": "0003703", "video_name": "41fc4521-4139-57a4-b925-34903c86f9d8", "text": "\u50cf\u76ae\u514b\u65af\u52a8\u753b\u4e00\u6837\u7684\u5361\u901a\u5973\u5b69\u5728\u5411\u65e5\u8475\u7530\u91cc\u884c\u8d70\u3002"} +{"id": "2005613", "video_name": "a73341ff-84cd-5c90-83b2-8fe5c1a439d5", "text": "\u5361\u901a\u7247\u4e2d\uff0c\u5154\u5b50\u533b\u751f\u544a\u8bc9\u4ed6\u7684\u75c5\u4eba\u8981\u5403\u5de7\u514b\u529b\u3002"} +{"id": "6003759", "video_name": "59e691f4-6e76-59d9-87f7-bab8dea3310c", "text": "\u4e00\u5ea7\u9ad8\u8038\u7684\u5c71\u4e0a\u6709\u8bb8\u591a\u70ed\u6c14\u7403\u98de\u5347\uff0c\u843d\u65e5\u4f59\u6656\u3002"} +{"id": "1005712", "video_name": "69068ebe-49ca-55bf-a74c-144a5b783e93", "text": "Russell M Nelson \u73b0\u5b9e\u5730\u8ba4\u4e3a\u5929\u4e0a\u7684\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "1005860", "video_name": "6be4f316-8637-59da-8e69-65e330a32591", "text": "\u5927\u5b66\u5973\u751f\u60f3\u8981\u51fa\u56fd\u7559\u5b66\u533b\u5b66\u4e13\u4e1a\uff0c\u672a\u6765\u533b\u751f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003255", "video_name": "dc36b1fe-8cca-5014-8cff-c2bb4c7ae0ae", "text": "\u673a\u68b0\u5316\u732b\u5728\u9ad8\u79d1\u6280\u592a\u7a7a\u8fea\u65af\u79d1\u4e2d\u8df3\u821e\uff0c\u903c\u771f\u3001\u7535\u5f71\u5316\u300150\u6beb\u7c73\u3001\u666f\u6df1\u3001\u6d41\u7545\u8282\u594f\u7684"} +{"id": "3003908", "video_name": "f2d6aaf1-4ad3-5fe4-b838-96fce390c448", "text": "\u7537\u4eba\u548c\u5973\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u7535\u89c6\u8282\u76ee\uff0c\u4ee53D\u52a8\u753b\u98ce\u683c\uff0c\u83b1\u6602\u7eb3\u591a\u98ce\u683c\u3002"} +{"id": "3005715", "video_name": "ce6e6179-6ba4-5b33-a36c-cda8ea825978", "text": "\u4e00\u53ea\u7ea2\u8272\u592a\u9633\u9c7c\u5728\u6e5b\u84dd\u7684\u6d77\u6d0b\u4e2d\u5feb\u4e50\u5730\u6e38\u6cf3\u3002"} +{"id": "6002973", "video_name": "5260fb09-514f-507c-9f93-d88e9da0915d", "text": "\u4e00\u628a\u71c3\u70e7\u7684\u6218\u58eb\u5251\u7684\u56fe\u50cf\uff0c16\uff1a9 \u6bd4\u4f8b\uff0c\u8272\u5f69\u903c\u771f\u3002"} +{"id": "5001176", "video_name": "572bd692-1bc6-5b94-8a40-fd626887e608", "text": "\u4e24\u53ea\u52a8\u7269\u56de\u5230\u623f\u5b50\u91cc\uff0c\u732b\u548c\u9c7c\u90fd\u7761\u89c9\u4e86\u3002"} +{"id": "8001507", "video_name": "9e812cf4-7746-55ef-a62d-785a7af82d68", "text": "\u6e90\u53e5\uff1a\u6606\u9054\u5229\u5c3c\u5347\u8d77\u7684\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u4ee4\u4eba\u9a5a\u5606\u7684\u524d\u6240\u672a\u6709\u7684\u5834\u666f\uff01"} +{"id": "2003987", "video_name": "df09b88a-7fe3-5f52-aa31-72c57c994bc6", "text": "\u62df\u4eba\u5316\u7684\u4e54\u00b7\u62dc\u767b\u5728\u65e5\u672c\u5403\u7740\u7eff\u8272\u51b0\u6dc7\u6dcb\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "0003272", "video_name": "3a9ecb3b-76e8-5787-9484-f3bfbd1a201f", "text": "\u5973\u4eba\u7ad9\u5728\u9ec4\u8272\u9ea6\u7530\u91cc\uff0c\u62b1\u7740\u5b69\u5b50\u4e3e\u8d77\u53cc\u81c2\uff0c\u4ef0\u671b\u84dd\u8272\u7684\u5929\u7a7a\u3002\u9ea6\u7530\u548c\u5929\u7a7a\u4ea4"} +{"id": "7002038", "video_name": "c8878e1e-1ace-556a-8b54-44b07e79a806", "text": "\u4e8c\u6218\u671f\u95f4\u58eb\u5175\u7684\u7535\u5f71\u9759\u6001\u753b\u9762\u3002\u4fe1\u606f\uff1ahoppe\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002963", "video_name": "8befa1a1-0f17-5579-9e13-3b2b41a3f2ef", "text": "\u4eba\u4eec\u5728\u6cb3\u8fb9\u9a91\u81ea\u884c\u8f66\uff0c\u8fd9\u662f\u7531\u4f0a\u85e4\u6f64\u4e8c\u521b\u4f5c\u7684\u3002"} +{"id": "1006136", "video_name": "706a65f9-7794-5c94-a524-5bc108c61dc1", "text": "\u7531\u4e8e\u4ed6\u51fa\u8272\u7684\u5de5\u4f5c\u8868\u73b0\uff0c\u603b\u90e8\u7684\u8001\u677f\u5bf9\u4ed6\u8868\u793a\u8d5e\u8d4f\u3002\u8001\u677f\u5728\u9881\u5956\u5178\u793c\u4e0a\u7ed9\u4e86\u4ed6\u4e00\u4efd\u5956\u52b1\u3002"} +{"id": "2003853", "video_name": "41d48707-17f6-51e2-9f9b-97418fa4529f", "text": "\u4f0a\u5a03\u00b7\u683c\u6797\u5728\u5df4\u9ece\u9633\u53f0\u4e0a\u555c\u996e\u8461\u8404\u9152\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa"} +{"id": "3004877", "video_name": "83334e26-14fa-5a49-98b9-e75c80cbdf8b", "text": "\u4ea1\u7075\u5409\u4ed6\u624b\u8fc5\u901f\u5730\u4ece\u5730\u4e0b\u51fa\u73b0\uff0c\u5f39\u594f\u7740\u4ed6\u7684Flying V\u5409\u4ed6\u4e0a\u7684\u5f3a\u529b\u548c\u5f26\uff0c\u4f7f\u95ea\u7535\u5288\u5411\u5730\u9762\u3002"} +{"id": "6004763", "video_name": "8546e5e8-8893-56bc-8ffb-7bd6745b7fbb", "text": "\u6444\u50cf\u673a\u5411\u4e0b\u503e\u659c\u4ee5\u805a\u7126\u4e8e\u4e00\u6761\u7a7f\u8fc7\u7267\u573a\u7684\u5b81\u9759\u5c0f\u6eaa\uff0c\u6c34\u6d41\u7f13\u7f13\u6d41\u52a8\u3002"} +{"id": "1004675", "video_name": "56e3e5c8-1661-5b2a-9861-050004513119", "text": "\u4e00\u500b\u4eba\u7a7f\u8457\u9ed1\u8272\u7684\u5fcd\u8005\u670d\u88dd\uff0c\u5728\u4e00\u500b\u6709\u767d\u96ea\u559c\u99ac\u62c9\u96c5\u5c71\u8108\u4f5c\u70ba\u80cc\u666f\u7684\u5c0f\u5340\u5c4b"} +{"id": "6002343", "video_name": "a9bb54d3-8129-5f8c-8af5-976defddc3c3", "text": "\u4e2d\u56fd\u91d1\u9f99\u4ee5\u4ed6\u7684\u4e60\u60ef\u98ce\u683c\u5448\u73b0\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "0003667", "video_name": "4166ee63-2bec-5567-8614-1488ae301186", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5229\u548c\u4e16\u754c\u676f11\u540d\u5370\u5ea6\u7403\u5458\u3002"} +{"id": "6004082", "video_name": "245dd41f-26c1-5570-a397-bbb26ef5e5c0", "text": "\u4e00\u7ec4\u4e0d\u540c\u9999\u5473\u7684\u624b\u5de5\u82b3\u9999\u8721\u70db\uff0c\u88c5\u5728\u68d5\u8272\u73bb\u7483\u7f50\u5b50\u91cc\uff0c\u642d\u914d\u9c9c\u82b1\u3002\u5927\u8c46"} +{"id": "6003291", "video_name": "baa35954-8130-5369-9c4c-a699de145e1d", "text": "\u739b\u838e\uff0c\u4e00\u4f4d\u6765\u81ea\u4fc4\u7f57\u65af\u7684\u5c0f\u5973\u5b69\u3002"} +{"id": "6002621", "video_name": "b3ca1b51-c4ae-52a7-8c98-633b06e2ca75", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5750\u5728\u684c\u5b50\u65c1\u8fb9\u8bf4\u8bdd\u3002"} +{"id": "2005795", "video_name": "1c12f4f3-b993-564a-ad0a-31f89920e2e4", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u4e2d\u7684\u58eb\u5175\uff0c\u706b\u7130\uff0c\u771f\u5b9e\u7684\u56fe\u50cf\u80cc\u666f4k\u3002"} +{"id": "7004308", "video_name": "5399ebfa-8609-5971-9bc1-e4a22d289ef5", "text": "\u827e\u838e\u516c\u4e3b\u6210\u4e3a\u738b\u56fd\u7684\u5b88\u62a4\u8005\uff0c\u5979\u8fd0\u7528\u81ea\u5df1\u7684\u529b\u91cf\u4fdd\u62a4\u738b\u56fd\u7684\u548c\u5e73\u4e0e\u5e78\u798f\u3002\u4eba\u4eec\u518d\u6b21\u6b22"} +{"id": "2005070", "video_name": "b283e9aa-b177-5aa9-97a5-abd73cd477c5", "text": "\u4e24\u53ea\u56ed\u8717\u725b\u5728\u690d\u7269\u56ed\u91cc\u5206\u4eab\u5b81\u9759\u65f6\u523b\u7684\u8ff7\u4eba\u573a\u666f\u3002"} +{"id": "3004691", "video_name": "2fbf700e-2570-5420-bf9d-7d7e9510496a", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u8fd0\u52a8\u670d\u7684\u7537\u4eba\u5728\u62e5\u6324\u7684\u4f53\u80b2\u573a\u91cc\u8dd1\u6b65\u5e76\u4e14\u6295\u63b7\u6807\u67aa\u3002"} +{"id": "2005013", "video_name": "41b1cd4f-6d90-55c7-9309-6e1ee1ab295f", "text": "\u73b0\u5b9e\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u624b\u6301\u4e00\u68397\u82f1\u5bf8\u7684\u6728\u68cd\uff0c\u7b11\u7740\u3002"} +{"id": "3005302", "video_name": "0485354f-43e4-5281-b2ea-1339063a2ad0", "text": "\u7f8e\u4eba\u9c7c\u662f\u8ff7\u4eba\u7684\u5316\u8eab\uff0c\u5979\u4f18\u96c5\u7684\u8eab\u59ff\u80fd\u8ff7\u4f4f\u6240\u6709\u51dd\u89c6\u5979\u7684\u4eba\u3002"} +{"id": "0003694", "video_name": "41d8c919-e84c-5e8a-b7af-ac18847cb720", "text": "\u8be6\u7ec6\u548c\u751f\u52a8\u7684\u77e2\u91cf\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u6211\u89c2\u770b\u81ea\u5df1\u7a7f\u8fc7\u4e00\u9053\u8ff7\u5e7b\u4f20\u9001\u95e8\u8fdb\u5165\u53e6\u4e00\u4e2a\u7ef4\u5ea6\uff0cDMT"} +{"id": "1006507", "video_name": "77183d4d-3004-5578-8111-e1ac84506a96", "text": "\u963f\u9053\u592b\u00b7\u5e0c\u7279\u52d2\u5728\u300a\u83f2\u5c14\u535a\u58eb\u79c0\u300b\u4e0a\u4e0e\u72b9\u592a\u4eba\u4ea4\u8c08\u3002"} +{"id": "2005181", "video_name": "ed0c0423-60c7-5837-93a6-a95470a11de3", "text": "\u4e00\u5f20\u9ed1\u767d\u7167\u7247\u663e\u793a\u4e86\u4e00\u540d\u7f8e\u56fd\u4e8c\u6218\u58eb\u5175\u7ad9\u5728\u5fb7\u519b\u7889\u5821\u524d\u7684\u573a\u666f\uff0c\u5448\u7535\u5f71\u611f\uff0c\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "8002535", "video_name": "3acc179e-d0c6-5e8c-9e11-f45cb136d53d", "text": "\u96e8\u5929\u65f6\u91d1\u95e8\u5927\u6865\u540e\u7684\u65e5\u51fa"} +{"id": "8001123", "video_name": "bb11834f-9aaa-5a6b-967a-9d54f9cadd80", "text": "\u7537\u5deb\u773c\u775b\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c\u4ed6\u88ab\u706b\u7403\u5492\u8bed\u7684\u8fdc\u8ddd\u79bb\u6548\u679c\u8ff7\u4f4f\u4e86\uff0c\u4ed6\u6ce8\u89c6\u7684\u8fdc\u5904\u706b\u7130\u5728"} +{"id": "6002505", "video_name": "bbdc53de-d701-571e-b510-b390f3cb4d0c", "text": "\u4e00\u4e2a\u4eba\u7684\u8f6e\u5ed3\u7ad9\u5728\u706b\u7130\u524d\u9762\u3002\u4ed6\u4eec\u773c\u4e2d\u95ea\u70c1\u7740\u6cea\u6c34\uff0c\u8868\u660e\u5185\u5fc3\u5145\u6ee1\u4e86\u60c5\u611f\u7684\u52a8\u8361\u3002\u5929\u7a7a\u4e2d"} +{"id": "8001484", "video_name": "c5fc4665-88b4-5729-9957-0706749a2a1a", "text": "\u514b\u62c9\u59c6\u00b7\u79d1\u514b\u8428\u5728\u4e4c\u5179\u522b\u514b\u65af\u5766\u73a9LOD\uff0c\u611f\u89c9\u5f88\u8f7b\u677e\u3002"} +{"id": "7003079", "video_name": "b4099c1e-07c9-591b-91a3-f6e37e209235", "text": "\u4e00\u4e2a\u9ad8\u8fbe15\u82f1\u5c3a\u7684\u623f\u95f4\u91cc\uff0c\u6709\u4e00\u5177\u6b7b\u53bb\u5df2\u4e45\u7684\u9ab8\u9aa8\u5750\u5728\u4e00\u5f20\u684c\u5b50\u524d\u3002"} +{"id": "4003610", "video_name": "3a2eb31b-c786-51bc-8c65-3db1bb117e91", "text": "\u53ef\u53ef\u8106\u5728\u57ce\u5e02\u91cc\u7206\u53d1\u4e86\u3002"} +{"id": "0006495", "video_name": "2d7e671d-cee0-5134-a1f4-90b3792cb01e", "text": "\u5c55\u793a\u4e00\u4e2a\u6765\u81ea\u8fbe\u5951\u4e9a\u7684\u52c7\u58eb\u7ed9\u6211\u770b\u3002"} +{"id": "4004417", "video_name": "1e206e60-1eda-5f95-8a2b-732dd26fd462", "text": "\u514b\u6717\u666e\u65af\u5728\u6811\u6797\u4e2d\u8ddf\u968f\u5723\u8bde\u8001\u4eba\u3002"} +{"id": "0004692", "video_name": "0d672b8d-bf31-5e24-ae8b-7654d5052080", "text": "\u4e00\u53ea\u901f\u5ea6\u5feb\u5982\u95ea\u7535\u7684\u8fc5\u731b\u9f99\u7ad9\u5728\u9ca8\u9c7c\u80cc\u4e0a\uff0c\u624b\u6301\u706b\u7bad\u7b52\u5411\u51e0\u53ea\u6d77\u9e25\u6254\u53bb\uff1b\u540c\u65f6"} +{"id": "2003359", "video_name": "e9eb3834-25f4-58f0-af80-c9056642bc28", "text": "\u5929\u4e0a\u7684\u5973\u795e\u5531\u4e00\u9996\u6b4c\u3002"} +{"id": "4004222", "video_name": "e32f0ea7-ae14-5f03-a679-8e0b24c0d2c0", "text": "\u521b\u9020\u4e00\u4e2a\u4eba\u624b\u6258\u4e0b\u5df4\u601d\u8003\u7684\u5f62\u8c61\u3002"} +{"id": "3006845", "video_name": "c1e1b8d5-4067-5f50-96a0-d0e64cc3879e", "text": "\u62bd\u8c61\u7f8e\u611f\u7684\u767d\u53d1\uff0c\u5c45\u4e2d\uff0c\u770b\u5411\u955c\u5934\uff0c\u8d8b\u8fd1\u5b8c\u7f8e\uff0c\u52a8\u6001\uff0c\u6708\u5149\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u6570\u7801\u7ed8\u753b\u827a\u672f\uff0cArt"} +{"id": "0005969", "video_name": "243055b2-3ec3-534c-be85-9306887b41f0", "text": "\u4e00\u4e2a\u5168\u606f\u5730\u7403\u5728\u4e2d\u5fc3\u65cb\u8f6c\uff0c\u5468\u56f4\u6709\u6d6e\u52a8\u7684\u4e92\u52a8\u5c4f\u5e55\uff0c\u663e\u793a\u82cf\u683c\u62c9\u5e95\u5e94\u7528\u7a0b\u5e8f\u754c\u9762\u3002"} +{"id": "8002091", "video_name": "59b989d5-0cb4-56ec-a050-428064dca3a4", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u68ee\u6797\u91cc\uff0c\u6234\u7740\u8033\u673a\u7528\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "4002732", "video_name": "e9fd47d7-47af-510a-869e-06061e0d18ea", "text": "\u5199\u5b9e\u7684\u4e54\u00b7\u62dc\u767b\u53d1\u8868\u7ade\u9009\u6f14\u8bf4\u3002"} +{"id": "1005850", "video_name": "6b84e32a-de9c-533d-b2c7-6d262e2b3585", "text": "\u592a\u9633\u4ece\u5730\u7403\u8868\u9762\u7206\u70b8\u3002"} +{"id": "8002214", "video_name": "7e2d6671-db45-5dd3-be1d-9c697d6ebdf4", "text": "\u540c\u5b66\u4eec\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u6765\uff0c\u624b\u4e2d\u62ff\u7740\u5404\u79cd\u6625\u8282\u88c5\u9970\u54c1\u3002\u4ed6\u4eec\u5145\u6ee1\u6d3b\u529b\uff0c\u9700\u8981\u4f60\u7684\u5e2e\u52a9\u6765\u5e03\u7f6e\u548c\u51c6\u5907"} +{"id": "3003945", "video_name": "2e8f0605-39f6-5fe5-84e5-7236d775d3cb", "text": "\u4e00\u4e2a\u751f\u65e5\u86cb\u7cd5\uff0c\u5448\u73b0\u4e3a\u4e00\u4e2a\u6234\u9762\u7eb1\u7684\u5973\u5b69\u5750\u5728\u7535\u8111\u524d\uff0c\u86cb\u7cd5\u7684\u8fb9\u7f18\u5305\u62ec\u793e\u4ea4"} +{"id": "3003781", "video_name": "77ec2489-7b2d-5626-bf18-810e3300280c", "text": "\u786e\u4fdd\u97f3\u4e50\u589e\u5f3a\u4e86\u6545\u4e8b\u7684\u60c5\u611f\u5f71\u54cd\u3002"} +{"id": "3005691", "video_name": "df7222d7-3d85-5980-aba0-c81edf2864c8", "text": "\u6211\u60f3\u5c1d\u8bd5\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u8ff0\u5efa\u7b51\u7269\u7684\u5feb\u901f\u5efa\u8bbe\uff0c\u53cd\u6620\u793e\u4f1a\u7684\u5feb\u901f\u53d1\u5c55\u3002"} +{"id": "3003243", "video_name": "f0575d2d-55c5-5687-986c-6ec8e9cdbc14", "text": "\u5370\u5ea6\u8b66\u5bdf\u7a7f\u7740\u68d5\u8272\u5236\u670d\uff0c\u5411\u524d\u8d70\u52a8\uff0c\u5728\u8b66\u5bdf\u5c40\u5185\uff0c\u52a8\u753b3D\u3002"} +{"id": "0006006", "video_name": "24ebf855-19e6-5a0b-8053-82a8982305e1", "text": "Arduino\u4e0e\u5176\u4ed6\u4f20\u611f\u5668\u5feb\u901f\u8fde\u63a5\u7684\u5e8f\u5217\u3002"} +{"id": "0003751", "video_name": "42c4a0d5-5862-5151-a656-2445d6c9bcf5", "text": "\u5361\u5c14\u5df4\u62c9\u4e4b\u6218\u7684\u65e0\u4eba\u673a\u7535\u5f71\u955c\u5934\u3002"} +{"id": "1006982", "video_name": "7fc3bc52-5d09-566f-be3a-c0558b15e00d", "text": "1860\u5e74\uff0c\u4e00\u7fa4\u8eab\u7740\u65f6\u4ee3\u670d\u88c5\u7684\u4eba\u805a\u96c6\u5728\u4e00\u95f4\u70b9\u7740\u8721\u70db\u7684\u623f\u95f4\u91cc\u3002\u623f\u95f4\u91cc\u6446\u6ee1\u4e86\u795e\u79d8"} +{"id": "6003628", "video_name": "8bc4ca10-264d-5b3d-b16b-a90eaa95f266", "text": "\u957f\u9888\u9e7f\u5728\u6597\u517d\u573a\u524d\u8ffd\u9010\u5927\u8c61\u3002"} +{"id": "4003915", "video_name": "efbfb58b-091c-5b60-99e7-ba5d489725b7", "text": "\u7ea6\u745f\u592b\u00b7\u6ce2\u5170\u65af\u57fa\u5403\u786c\u716e\u9e21\u86cb\u30028K\u3002"} +{"id": "3005824", "video_name": "9bd18384-edba-59ea-8186-d25c444c78ab", "text": "\u6c7d\u8f66\u5728\u4e0d\u65ad\u6d41\u8fc7\u8f66\u573a\u3002"} +{"id": "6003549", "video_name": "b19625c5-d237-594b-b620-b6cf6b53d8be", "text": "\u5b66\u751f\u4f7f\u75283D\u6253\u5370\u673a\uff0c\u6bd4\u4f8b\u4e3a16:8\uff0c\u8fdb\u884c3D\u52a8\u753b\u5236\u4f5c\u3002"} +{"id": "1004932", "video_name": "5b2ab044-da1e-5497-9450-fe24ed9fcc1c", "text": "\u71b1\u5e36\u96e8\u6797\u591c\u665a\u6709\u4e00\u500b\u5c0f\u7684\u5713\u5f62\u9580\uff0c\u767c\u5149\uff0c\u901a\u5f80\u53e6\u4e00\u500b\u7dad\u5ea6\u3002"} +{"id": "6004751", "video_name": "411b79d6-065f-5334-a6fc-767065858da1", "text": "\u52a8\u6f2b\u5973\u82f1\u96c4\u901a\u8fc7\u5b87\u5b99\u80fd\u91cf\u63d0\u5347\uff0c\u91c7\u7528\u9ad8\u5ea6\u8be6\u7ec6\u7684\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4003988", "video_name": "afea7d38-b0ba-55c8-b375-ca564aa39262", "text": "\u5728\u4e1b\u6797\u91cc\u7684\u4e00\u68f5\u6811\u4e0a\uff0c\u6709\u4e24\u53ea\u7f8e\u4e3d\u7684\u4e4c\u9e26\u5750\u5728\u5de2\u91cc\u7684\u9e1f\u86cb\u4e0a\u3002"} +{"id": "3004190", "video_name": "5b9a5230-abd0-518e-9ec9-b72faaad5ce4", "text": "\u9a7e\u9a76 BMW \u7a7f\u8fc7\u57ce\u9547\uff0c\u8fdb\u5165\u8fea\u58eb\u5c3c\u5de5\u4f5c\u5ba4\u3002"} +{"id": "2004167", "video_name": "d13f5796-e431-5d16-a880-f6f405b89c71", "text": "\u4e00\u4e2a\u4eba\u6fc0\u6d3b\u4ed6\u4eec\u7684\u6240\u6709\u8109\u8f6e2K\u89c6\u9891\u3002"} +{"id": "8001736", "video_name": "f954946a-7210-5b44-a122-cf22829abc39", "text": "\u82b1\u56ed\u91cc\u6709\u4e00\u68f5\u6811\uff0c\u4e0a\u9762\u6302\u7740\u82f9\u679c\uff0c\u8fd9\u68f5\u6811\u770b\u8d77\u6765\u6d53\u836b\u853d\u65e5\u3002"} +{"id": "7003314", "video_name": "887cf812-b8f9-557e-92eb-753128a20180", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u77ed\u88d9\u7684\u5973\u5b69\u7ad9\u5728\u4e00\u628a\u9ed1\u8272\u96e8\u4f1e\u4e0b\u3002\u68ee\u6797\u91cc\u7684\u8def\u4e0a\u6709\u706f\u7b3c\uff0c"} +{"id": "0003495", "video_name": "3e8aba0e-7f27-51ff-9491-2e15b3a193ee", "text": "\u72d0\u72f8\u7248\u7684\u674e\u5c0f\u9f99\u8df3\u821e\u8868\u6f14\u3002"} +{"id": "2003603", "video_name": "77fd6354-428f-5720-bb7a-65e086e5c6d0", "text": "\u4e00\u4e2a\u7a7f\u6234\u6811\u53f6\u8ff7\u5f69\u670d\u7684\u72d9\u51fb\u624b\u5728\u68ee\u6797\u91cc\u884c\u52a8\u7684\u7535\u5f71\u3002"} +{"id": "7003388", "video_name": "ee259ec0-6801-55b5-9ebe-44764b4da817", "text": "\u8bbe\u8ba1\u4e00\u7247\u88ab\u96ea\u8986\u76d6\u7684\u9b54\u6cd5\u68ee\u6797\uff0c\u767d\u718a\u548c\u8389\u8389\u5728\u5176\u4e2d\u6f2b\u6b65\u3002\u6355\u6349\u5b81\u9759\u548c\u8ff7"} +{"id": "6003848", "video_name": "08d44b96-0c8c-5644-8a97-e4f97391f827", "text": "\u4e3b\u795e\u5728\u65b0\u5b87\u5b99\u4e0e\u65b0\u751f\u7269\u6218\u6597\u3002"} +{"id": "4004658", "video_name": "982ce4c0-ee37-532f-940f-08e237b69885", "text": "\u521b\u9020\u9c81\u9053\u592b\u9a6f\u9e7f\u53d1\u5149\u7684\u9f3b\u5b50\uff0c\u975e\u5e38\u903c\u771f\uff0c4k\u3002"} +{"id": "1003499", "video_name": "40beeebb-e89b-5d7a-b80d-e4019738753c", "text": "\u4ece\u53e4\u8001\u7684\u6ce2\uff0c\u8ba9\u6211\u4eec\u7528\u9a6c\u683c\u91cc\u7279\u98ce\u683c\u7ed8\u5236\u3002\n\nSource sentence: The internet has revolutionized the way we communicate. \n\n\u4e92\u8054\u7f51\u5df2\u7ecf\u5f7b\u5e95\u6539\u53d8"} +{"id": "3005007", "video_name": "17afc1cc-e4a2-50a0-bc48-8230cd7582cd", "text": "\u6444\u5f71\uff0c\u6559\u5ba4\u5f7c\u5f97\u00b7\u6797\u5fb7\u4f2f\u683c\u98ce\u683c16:9\u81ea\u7136\u62cd\u6444\u3002"} +{"id": "2004380", "video_name": "3b75c8fc-16b4-5311-b900-f1e275d384bf", "text": "\u7f57\u5bbe\u6c49\u662f\u4e00\u4e2a\u5e74\u8f7b\u4eba\uff0c\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u4f4f\u5728\u6811\u6797\u91cc\uff0c\u4ed6\u4eec\u90fd\u662f\u4f10\u6728\u5de5\u3002\u7f57\u5bbe\u662f\u4e00\u4e2a\u975e\u5e38\u806a\u660e\u3001"} +{"id": "0005220", "video_name": "16d1eac0-9fe4-5b55-b7a4-34f13ef5a4ab", "text": "\u4e00\u4e2a\u4e66\u67b6\u4e0a\u6446\u6ee1\u4e86\u4e66\uff0c\u4e66\u4e0d\u505c\u5730\u8fdb\u51fa\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211"} +{"id": "0006231", "video_name": "28c2d92d-cac0-5e03-91b4-66cc76d05ac0", "text": "\u91d1\u53d1\u5973\u5b50\u5728\u7535\u5f71\u300a\u666e\u7f57\u7c73\u4fee\u65af\u300b\u4e2d\u9a7e\u9a76\u4e00\u8258\u57fa\u4e8e\u8239\u8231\u63a7\u5236\u7684\u592a\u7a7a\u98de\u8239\u3002"} +{"id": "0006518", "video_name": "2deab08f-5a6f-5bd2-ab40-9fed58882967", "text": "hyperrealistic\u7684\u4eba\u4eec\u5efa\u9020\u827a\u672f\u5de5\u4f5c\u5ba4\u3002\u4fe1\u606f\uff1avaco\u5de5\u4f5c\u5ba4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003769", "video_name": "3edb6d23-86e9-56ef-b42c-cb6dea9b3fcc", "text": "\u4e00\u6bb5\u5728\u6d77\u6ee9\u4e0a\u9a91\u81ea\u884c\u8f66\u7684\u89c6\u9891"} +{"id": "3004020", "video_name": "7595b817-c941-5ca2-91c2-4adb840a4f2d", "text": "\u5728\u7b2c\u4e00\u4eba\u79f0\u5c04\u51fb\u6e38\u620f\u4e2d\uff0c\u7a7a\u4e2d\u7684\u98de\u8239\u5411\u7a7a\u95f4\u4e2d\u7684\u591a\u4e2a\u5de8\u578b\u53d8\u5f62\u91d1\u521a\u654c\u4eba\u5f00\u706b\uff0c\u4f7f\u7528\u6fc0\u5149\u6b65\u67aa"} +{"id": "4003939", "video_name": "fbc7ce84-cd92-5659-9010-ca71e1d12bf2", "text": "\u5728\u6cd5\u5ead\u4e0a\u5e86\u795d\u80dc\u5229\u7684\u5f8b\u5e08\u3002"} +{"id": "4003419", "video_name": "190b6a06-5a2d-57f4-9bc0-cc29470cfaef", "text": "\u4e00\u4e2a\u5145\u6ee1\u597d\u5947\u5fc3\u7684\u690d\u7269\u5b66\u5bb6\uff0c\u70ed\u8877\u4e8e\u63ed\u5f00\u7a00\u6709\u690d\u7269\u7684\u79d8\u5bc6\u3002"} +{"id": "2003967", "video_name": "ec1f2b39-1d9b-5cb1-8a89-3ac777163968", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u6709\u5fae\u98ce\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "1006735", "video_name": "7b63f00f-93af-5a82-b68e-e2cec7b8a96c", "text": "\u52a8\u6001\u56fe\u5f62\u8bbe\u8ba1\uff0c\u52a8\u6001\u8bbe\u8ba1\uff0c\u52a8\u6001\u6392\u7248\uff0c\u51e0\u4f55\u5f62\u72b6\uff0c\u6781\u7b80\u4e3b\u4e49\uff0c\u9ed1\u767d\uff0c\u9ed1\u8272\uff0c\u52a8\u6001\u6548\u679c\uff0c\u5728 dribble \u4e0a\u7279\u8272\u63a8\u8350\uff0c\u5728 beh"} +{"id": "0006730", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "\u5973\u6027\uff0c\u5e73\u9762\u8bbe\u8ba1\u5e08\u5de5\u4f5c\u4e2d\uff0c\u5e7d\u9ed8\uff0c\u73b0\u5b9e\u3002"} +{"id": "0004873", "video_name": "10b22ed0-10df-58a3-9344-2e3321501b88", "text": "\u4e00\u4e2a\u5b8c\u7f8e\u96ea\u82b1\u5f62\u6210\u7684\u65f6\u95f4-lapse\u3002"} +{"id": "7003137", "video_name": "d569a4d5-472a-5e03-aa63-edd3a62954f0", "text": "\u6050\u6016\uff0c\u4e00\u53ea\u624b\u63a8\u5f00\u95e8\uff0c\u9634\u6697\u7684\u623f\u5b50\u3002"} +{"id": "3005355", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "\u7ea2\u8272\u5fc3\u5f62\u7011\u5e03\u88c5\u9970\u7740\u767d\u8272\u7a7a\u767d\u533a\u57df\u3002"} +{"id": "3003355", "video_name": "c163b845-1294-583d-a552-08c550e0ff50", "text": "\u4e00\u53ea\u624b\u6301\u7740\u753b\u7b14\u5728\u7eb8\u4e0a\u753b\u5706\u3002"} +{"id": "0006143", "video_name": "273a17e3-6785-51c4-a758-291e2b94237a", "text": "\u4e24\u4e2a\u4eba\u5750\u5728\u5c71\u4e0a\uff0c\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u76ef\u7740\u5730\u5e73\u7ebf\u770b\uff0c\u662f\u4e8c\u7ef4\u77e2\u91cf\u5361\u901a\u7684\u4e2d\u666f\u3002"} +{"id": "8003470", "video_name": "63f9eddc-bda1-5b1e-a0d6-efa420455bf1", "text": "\u5f53\u5c0f\u68d5\u72d7\u548c\u5c0f\u767d\u732b\u5728\u6e56\u8fb9\u73a9\u800d\u65f6\uff0c\u4ed6\u4eec\u6ce8\u610f\u5230\u6c34\u4e2d\u6709\u4e00\u4e9b\u5947\u602a\u7684\u6d9f\u6f2a\u3002"} +{"id": "3004457", "video_name": "19d1a322-3754-521a-b638-88982173a773", "text": "\u7f51\u7edc\u670b\u514b\u591c\u666f\u523a\u5ba2\u8e72\u5b88\u3002"} +{"id": "2007522", "video_name": "6813c188-f7fd-5ea5-aab7-72470de4ad67", "text": "\u82b1\u513f\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u5929\u7a7a\u53d8\u6210\u4e86\u7c89\u8272\u3002\n\nSource sentence: I am learning Chinese language and culture.\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "6003949", "video_name": "2d75c677-3f03-5cb7-954a-35a37552faef", "text": "\u5728\u4e00\u4e2a\u6280\u672f\u548c\u5206\u88c2\u7684\u672a\u6765\u4e16\u754c\u4e2d..."} +{"id": "2007748", "video_name": "ade82bf3-e914-5c83-ba78-6dc15e8ee706", "text": "\u5728\u4e00\u4e2a\u8212\u9002\u7684\u519c\u5e84\u91cc\uff0c\u6709\u4e00\u53ea\u53eb\u505a\u9633\u5149\u7684\u5c0f\u7ed2\u6bdb\u9e21\u3002\u9633\u5149\u662f\u6240\u6709\u5c0f\u9e21\u4e2d\u6700\u5c0f\u3001\u6700\u5f31\u5c0f"} +{"id": "0004805", "video_name": "0f6d3a45-8c9b-5f6f-8283-c88167c94024", "text": "\u4e00\u4e2a\u5929\u4f7f\u61d2\u6563\u5730\u8eba\u5728\u5929\u5802\u5927\u95e8\u65c1\u8fb9\u7684\u4e91\u6735\u4e0a\u3002"} +{"id": "8001372", "video_name": "5a356421-b4d6-5bca-80cb-426835e0e080", "text": "\u677e\u9f20\u5728\u6811\u95f4\u5954\u8dd1\uff0c\u5728\u6811\u679d\u4e0a\u8df3\u8dc3\u3002\n\nSource sentence: The sun is setting behind the mountains, casting a warm glow over the valley. \n\n\u592a\u9633\u5728\u5c71\u540e"} +{"id": "0006077", "video_name": "26460a27-d582-56b9-91e1-eea91f4dc304", "text": "\u6697\u9ed1\u7684\u8ff7\u5e7b\u56fe\u50cf\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u3002"} +{"id": "2005610", "video_name": "51dfd08b-490c-5382-9fae-e282ed725ede", "text": "\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u9e1f\u5403\u866b\u5b50\u7684\u955c\u5934\u6a21\u7cca\u4e0d\u6e05\u3002"} +{"id": "0003411", "video_name": "3d32b1b8-5e13-5f1f-94b8-2c66c6bd5f66", "text": "\u5982\u4f55\u5f00\u59cb\u4e00\u4e2a\u670d\u88c5\u54c1\u724c\u3002"} +{"id": "4003923", "video_name": "0ec4bbb5-4fc9-5200-b79f-6233717ba442", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u5e26\u6709\u9ed1\u8272\u6c1b\u56f4\u7684\u57ce\u5e02\u591c\u666f\u3002"} +{"id": "6004234", "video_name": "084e6ac1-4925-5855-98e6-2282098c6b94", "text": "\u6234\u7740\u91d1\u8272\u592a\u9633\u955c\u7684\u72fc\u5486\u54ee\u7740\uff0c\u9732\u51fa\u7259\u9f7f\u5486\u54ee\u3002"} +{"id": "6003331", "video_name": "f7c262b4-282d-5175-a673-b5bd67a1717f", "text": "\u63cf\u7ed8\u53ef\u7231\u7684\u7761\u7720\u89d2\u8272\u8737\u7f29\u5728\u4e66\u7c4d\u6216\u4e91\u6735\u4e4b\u4e2d\uff0c\u4f20\u8fbe\u5e73\u548c\u548c\u68a6\u5e7b\u6c1b\u56f4\u3002"} +{"id": "6004123", "video_name": "8d8f0c57-12a3-5792-b138-a81d600a4b26", "text": "1970\u5e74\u82f1\u56fd\u623f\u5c4b\u91cc\u98de\u821e\u7684\u9b3c\u3002"} +{"id": "3004244", "video_name": "dccb0164-c04c-509e-aa61-2eb2c669a982", "text": "\u4e00\u4e2a\u5728\u66fc\u8c37\u57ce\u5e02\u4e0a\u7a7a\u98de\u884c\u7684\u591c\u666f\uff0c\u9644\u5e26\u4fe1\u606f1\u3002"} +{"id": "6003298", "video_name": "b58485b2-2ab9-58dc-9593-b316d8873762", "text": "\u7531\u5148\u77e5\u6492\u6bcd\u8033\u5236\u4f5c\u7684\u4ee5\u8272\u5217\u56fd\u738b\u626b\u7f57\u7684\u52a0\u5195\u6d3e\u5bf9\uff0c\u4ee58K AR 16:9\u7684\u8d85\u5199\u5b9e\u56fe\u50cf\u5448\u73b0\u3002"} +{"id": "2006710", "video_name": "e98dfaaa-8e8a-5859-844e-7fef2ff10fa5", "text": "translation: \u5927\u6d6a\u62cd\u6253\u7740\u8239\u53ea\uff0c\u4e0a\u4e0b\u98a0\u7c38\u3002"} +{"id": "2005804", "video_name": "bb50f055-11f8-51ab-a722-4b4c7acad8d9", "text": "\u4e00\u540d\u5973\u5b50\u6b63\u5728\u4eba\u884c\u9053\u4e0a\u63a8\u7740\u5a74\u513f\u8f66\u3002"} +{"id": "4003454", "video_name": "0fce3dff-6196-57b8-ad6d-4a8a3ba4463b", "text": "\u590f\u5a01\u5937\u82b1\u6735\u53d1\u51fa\u81ea\u5df1\u7684\u5149\u6765\u521b\u9020\u6e29\u548c\u7684\u6c1b\u56f4\u7684\u56fe\u50cf\u8bbe\u8ba1\u3002"} +{"id": "0003755", "video_name": "42d32ddf-7f2e-5181-b7aa-1f9dfc252284", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u62e5\u62b1\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "5001216", "video_name": "f985ddd6-1f8a-5e5d-8acf-319b9c161ba2", "text": "\u4e00\u4e2a11\u5c81\u7684\u5973\u5b69\u6b63\u5904\u5728\u5979\u81ea\u5df1\u7684\u751f\u6d3b\u4e2d\u3002"} +{"id": "8002394", "video_name": "4509be55-3ec2-5de0-a8e8-74ea3cc6d658", "text": "\u624b\u5728\u98a4\u6296\uff0c\u80cc\u666f\u662f\u4e00\u6218\u540e\u3002"} +{"id": "6004870", "video_name": "eee98eac-18c5-50cb-b0ad-e852317e6fa2", "text": "\u591c\u7a7a\u5e03\u6ee1\u661f\u661f\u3002\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u9053\u88c2\u7f1d\u3002"} +{"id": "0006614", "video_name": "2f94ab76-7d78-5c5c-91a0-b1230e8f1e9e", "text": "\u798f\u5efa\u53f7\u822a\u7a7a\u6bcd\u8230\u6b63\u5728\u6d77\u4e0a\u3002"} +{"id": "0003832", "video_name": "443ea7bf-9fa1-5a74-b337-69cb159e8169", "text": "\u5b66\u751f\u5728\u6821\u56ed\u91cc\u8ffd\u8d76\u6821\u8f66\u3002"} +{"id": "4004092", "video_name": "4a514ccb-efe5-5478-bcc2-3545fc50a299", "text": "\u4e00\u4e2a\u8f9b\u52e4\u5de5\u4f5c\u7684\u4eba\u5728\u4ed6\u7684\u751f\u547d\u4e2d\u521b\u9020\u4e86\u8fd9\u4e2a\u6fc0\u52b1\u89c6\u9891\u3002"} +{"id": "3006246", "video_name": "736cd0fa-bbe9-5fbe-b565-61dc94a74dea", "text": "\u4e00\u4e2a23\u5c81\u7684\u5973\u5b69\uff0c\u7a7f\u7740\u9ed1\u8272\u978b\u5b50\uff0c\u6709\u84dd\u8272\u7684\u773c\u775b\uff0c\u5728\u82b1\u56ed\u91cc\u5e2e\u52a9\u4e00\u4e2a50\u5c81\u7684\u5973\u58eb\u3002"} +{"id": "8003406", "video_name": "6b43c727-67fd-5736-8fa0-9432e3df7d5e", "text": "\u4e00\u4e2a\u7a7f\u7740\u5929\u84dd\u8272\u957f\u8896\u886c\u886b\u3001\u7eff\u8272\u540d\u724c\u548c\u84dd\u8272\u725b\u4ed4\u88e4\u7684\u7537\u4eba\u6b63\u5728\u6f14\u8bb2\u3002"} +{"id": "1004487", "video_name": "5323c3e2-c994-5cad-9d76-f2a2bd7efbdc", "text": "\u7535\u5f71\u9ed1\u8272\u7535\u5f71\u98ce\u683c\uff0c\u53ea\u6709\u4e00\u79cd\u84dd\u8272\uff0c\u4e00\u4e2a\u5deb\u5e08\u4e0e\u4e00\u53ea\u5de8\u9f99\u640f\u6597\uff0c\u5728\u95ea\u7535\u548c\u706b\u7130\u4e2d\u7684\u9ed1\u6697\u4e2d"} +{"id": "2006504", "video_name": "a7305cf9-be4b-53a5-a8d8-a9c399bba4de", "text": "\u4e00\u53ea\u624b\u62ff\u94bb\u77f3\u7684\u5927\u7329\u7329\uff0c\u4e13\u6ce8\uff0c\u8be6\u7ec6\uff0c\u9ad8\u8d28\u91cf\uff0c\u4e13\u6ce8\u3002"} +{"id": "2004383", "video_name": "be922d98-4121-5ae7-98e1-bfb3c60e58f5", "text": "\u4e00\u4e2a\u7537\u5b50\u8d70\u5728\u8857\u4e0a\uff0c\u548c\u4e00\u540d\u5927\u5b66\u751f\u4ea4\u8c08\u3002"} +{"id": "7002267", "video_name": "449d1820-de87-5be3-8dad-a8694943f712", "text": "\u5728\u68ee\u6797\u4e2d\u5fc3\u521b\u9020\u4e00\u4e2a\u8be6\u7ec6\u7684\u730e\u8c79\u8ffd\u9010\u4e00\u53ea\u9e7f\u3002 \n\nSource sentence: The company's profits have increased by 20% this quarter compared to last quarter"} +{"id": "6004390", "video_name": "57fa2a68-cec1-545e-ab0f-cd8883e262bd", "text": "\u68d2\u7403\u6bd4\u8d5b\u620f\u5267\u6027\u7ed3\u5c40\uff0c\u4f7f\u752850\u6beb\u7c73\u955c\u5934\u62cd\u6444\u3002"} +{"id": "6004071", "video_name": "83daf321-1336-564c-a27a-f04eab895a59", "text": "3D\u5361\u901a\u98ce\u683c\u7684\u8d85\u9ad8\u6e05\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5370\u5ea6\u5bfa\u5e99\u7a7a\u95f4\u4e2d\u7f13\u6162\u65cb\u8f6c\u7684\u661f\u7cfb\uff0c\u4f4d\u4e8e\u94f6"} +{"id": "2006083", "video_name": "0e6465b2-097d-5fde-a1cd-e4ae7dc24570", "text": "\u5965\u666e\u62c9\u00b7\u6e29\u5f17\u745e\u72ec\u81ea\u53d1\u8a00 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2003209", "video_name": "5d26f9d1-161b-5447-b386-b9a651c8f890", "text": "\u91ce\u99ac\u8c93\u6f02\u79fb\u548c\u8d85\u901f\uff0c\u51fa\u81ea\u6f2b\u756b\u52d5\u756b\u516c\u53f8\u6f22\u5a1c\u5df4\u4f2f\u62c9\u3002"} +{"id": "2005898", "video_name": "d55ae274-1d7e-50ba-aab2-2e73dd7a2d14", "text": "\u5361\u901a\u98ce\u683c\u7684\u706b\u7130\uff0c\u6c34\u5e73\u72b6\uff0c\u81ea\u4e0b\u800c\u4e0a\u71c3\u70e7\uff0c\u8fdc\u5904\uff0c\u900f\u660e\u80cc\u666f\u3002"} +{"id": "8001126", "video_name": "50ca687a-64ed-5080-9225-2e1f7d7a50ad", "text": "\u5728\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u68ee\u6797\u91cc\u5bfb\u627e\u67d0\u7269\u7684\u5973\u5b69\u3002"} +{"id": "4004121", "video_name": "fdd8e92c-e5eb-5889-8e32-0eab98ee5a51", "text": "\u8bbf\u95ee\u7684\u524d\u5341\u4e2a\u975e\u6d32\u56fd\u5bb6"} +{"id": "1005467", "video_name": "6472d082-ba63-533f-968d-b7817e8d09bc", "text": "\u5728\u5f00\u9614\u7684\u7530\u91ce\u4e0a\uff0c\u592a\u9633\u6b63\u5728\u843d\u5c71\uff0c\u5403\u7740\u957f\u9888\u9e7f\u7684\u540c\u65f6\u88ab\u8001\u864e\u56f4\u7ed5\uff0c\u5b83\u4eec\u8fd8\u54ac\u7740"} +{"id": "2004423", "video_name": "7a62790c-e4e9-5fa9-9c6c-be2fb301a883", "text": "\u73b0\u5b9e\u7684\u6b4c\u624b\u7ad9\u5728\u71c3\u70e7\u7684\u9ea6\u514b\u98ce\u524d\u3002"} +{"id": "0006228", "video_name": "28bb48fa-acb1-538f-9194-6d569090d9ee", "text": "\u5728\u672a\u6765\u4e3b\u4e49\u573a\u666f\u4e2d\u521b\u9020\u4e00\u4e2a\u5f39\u94a2\u7434\u7684\u7537\u4eba\u3002"} +{"id": "8003407", "video_name": "103275b6-db5e-5279-a801-f7afc648a05b", "text": "\u5728\u65e5\u672c\u4e1c\u4eac\u7684\u8857\u5934\uff0c\u4e00\u4e2a\u670d\u88c5\u5e97\u524d\uff0c\u6709\u4e00\u4e2a\u68d5\u8272\u5934\u53d1\u7684\u6a21\u7279\u3002"} +{"id": "0005288", "video_name": "17e86509-f6e1-57fc-8cec-1edde1bbbecc", "text": "\u672a\u6765\u4e3b\u4e49\u8fea\u62dc\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u9ed1\u6697\u3001\u96fe\u6c14\u7f2d\u7ed5\uff0c64K\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "6004360", "video_name": "4d3824e2-aec5-52cf-95ed-902992097006", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u5c3c\u62c9\u59c6\u7684\u5c0f\u5973\u5b69\u3002\u5c3c\u62c9\u59c6\u5929\u6027\u975e\u5e38\u7b80\u5355\u548c\u5bcc\u6709\u540c\u60c5\u5fc3\u3002\u5979"} +{"id": "8003721", "video_name": "de463837-2ac7-5ddc-a3b5-4cbe8978e841", "text": "\u4e00\u53ea\u7b11\u7740\u7684\u725b\u5728\u4eba\u7fa4\u4e2d\u6f2b\u6b65\u3002\u6c1b\u56f4\u5e73\u6de1\u800c\u7e41\u534e\uff0c\u5404\u79cd\u4e2a\u6027\u7684\u4eba\u4eec\u8fc7\u7740\u65e5\u5e38\u751f\u6d3b\u3002"} +{"id": "4003925", "video_name": "3d4ac381-9243-5efe-ab4c-34d3c5b4d760", "text": "\u5728\u300aMinecraft\u300b\u4e16\u754c\u4e2d\uff0c\u4fe1\u606f\u4e3aMirxojiakbar\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7004631", "video_name": "576b777b-760d-5fd1-b390-fcf0e37d0b4d", "text": "\u672c\u51fa\u7248\u7269\u7684\u5168\u90e8\u7248\u6743\u5747\u4e3a\u7248\u6743\u6240\u6709\u4eba\u6240\u6709\u3002\u672a\u7ecf\u7248\u6743\u6240\u6709\u4eba\u4e8b\u5148\u4e66\u9762\u8bb8\u53ef\uff0c\u4e0d\u5f97\u4ee5\u4efb\u4f55\u5f62\u5f0f\u6216\u4efb\u4f55\u65b9\u5f0f\u590d\u5236\u3001\u50a8\u5b58\u4e8e\u68c0"} +{"id": "1004620", "video_name": "55ea841a-46d9-573a-b669-a57242e0627e", "text": "\u6bcf\u6b21\u7741\u5f00\u773c\u775b\u90fd\u80fd\u770b\u5230\u4e00\u675f\u767d\u5149\u7684\u4eba\u3002"} +{"id": "7003663", "video_name": "ffb9c63d-e2cf-589b-86a6-1ec43c810ca6", "text": "and status he had attained, but also demonstrated his devotion to Islam.\n\n\u4ed6\u7684\u671d\u5723\u4e4b\u65c5\u4e0d\u4ec5\u5c55\u793a\u4e86\u4ed6\u6240\u83b7\u5f97\u7684\u8d22\u5bcc\u548c\u5730\u4f4d\uff0c\u8fd8\u8868\u73b0\u4e86\u4ed6\u5bf9"} +{"id": "6002141", "video_name": "d883c463-3608-5068-9f1c-f6462ee01778", "text": "\u5728\u52a8\u6f2b\u4e2d\uff0c\u534a\u673a\u68b0\u4eba\u7684\u624b\u88ab\u780d\u6389\u7684\u573a\u666f\u3002"} +{"id": "2005827", "video_name": "d80ea477-4663-5718-85fc-7feddf2d6a88", "text": "\u6b63\u5728\u7761\u89c9\u5e76\u68a6\u89c1\u4e00\u4e2a\u5929\u4f7f\u7684\u4eba\u3002"} +{"id": "2003953", "video_name": "06daf7f8-dc71-56ee-b8e1-8dca857db29f", "text": "\u5728\u4e00\u4e2a\u5e7f\u9614\u7684\u5b9e\u9a8c\u5ba4\u91cc\uff0c\u79d1\u5b66\u5bb6\u4eec\u60ca\u5947\u5730\u770b\u7740\u4ed6\u4eec\u7684\u521b\u9020\u7269\u2014\u2014\u6700\u5148\u8fdb\u7684\u4eba\u5de5\u667a\u80fd\u7cfb\u7edf\u2014\u2014\u8d85\u8d8a\u4e86\u6240\u6709\u7684\u9884"} +{"id": "0005896", "video_name": "22e5a459-60d5-5796-b73c-ecbaa71ff662", "text": "\u521b\u4f5c\u4e00\u4e2a\u72d7\u91c7\u8bbf\u4e00\u53ea\u5077\u8d70\u4e86\u5b83\u7684\u539f\u58f0\u5409\u4ed6\u7684\u732b\u3002"} +{"id": "4004723", "video_name": "54d355aa-c8ad-5e97-9b30-809c9d09fb9f", "text": "\u7a7f\u8d8a\u6211\u4eec\u7684\u592a\u9633\u7cfb\uff0c\u63a2\u7d22\u6bcf\u4e2a\u661f\u7403\u7684\u72ec\u7279\u7279\u70b9\u3002\u5199\u4e00\u7bc7\u8be6\u7ec6\u7684\u6587\u7ae0\uff0c\u4ecb\u7ecd\u5e76\u63cf\u8ff0\u6211\u4eec\u592a\u9633\u7cfb\u4e2d\u6240\u6709\u884c\u661f"} +{"id": "4002145", "video_name": "0231687a-9119-531e-9af9-42fec990ea32", "text": "\u4e1b\u6797\u6d63\u718a\u5750\u5728\u6811\u4e0a\u770b\u7740\u76f8\u673a\u3002"} +{"id": "2007560", "video_name": "4d14a74f-9c13-5cdc-a68e-a675e0af762e", "text": "\u827e\u4f26\u00b7\u8036\u683c\u5c14\u7ad9\u5728\u4e00\u68f5\u5927\u6811\u524d\u9762\uff0c\u80cc\u540e\u662f\u8986\u76d6\u7740\u7eff\u8272\u548c\u8349\u7684\u666f\u8c61\u3002"} +{"id": "1005536", "video_name": "65e5ac91-1919-53c2-bf02-0ae78021b534", "text": "\u84b8\u6c7d\u6ce2\u5728CRT\u7535\u89c6\u4e0a\uff0c\u5b8c\u7f8e\u5faa\u73af\u3002"} +{"id": "7003899", "video_name": "d843f7df-91de-5949-92bd-dfbc22131205", "text": "\u4e00\u8258\u8239\u4ece\u5361\u62c9\u5947\u7684\u5361\u897f\u59c6\u6e2f\u51fa\u53d1\u3002"} +{"id": "1006773", "video_name": "7bfae3d5-ddb8-52ad-aed8-a10106d8e56c", "text": "\u5973\u6a21\u7279\u7a7f\u7740\u7531\u7eb8\u5236\u6210\u7684\u6982\u5ff5\u65f6\u88c5\uff0c4K\u9ad8\u6e05\uff0c\u6781\u7b80\u98ce\u683c\uff0cT\u53f0\u79c0\uff0c\u9ad8\u7ea7\u5b9a\u5236\uff0c\u65f6\u5c1a\u6f6e\u6d41\uff0c"} +{"id": "1004641", "video_name": "564da145-6c35-5be1-885e-97fe48e987da", "text": "\u5723\u8bde\u8001\u4eba\u628a\u793c\u7269\u5f80\u524d\u4f20\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\uff0c\u6708\u4eae\u4e0a\u7684\u4e09\u53ea\u9e7f\u4ee5\u6e05\u6670\u7f13\u6162\u7684\u52a8\u4f5c"} +{"id": "2006905", "video_name": "895b3b3b-2817-5d40-934f-dc1305de7a7c", "text": "\u4e24\u53ea\u9a7c\u9e7f\u4e92\u76f8\u51b2\u649e\uff0c\u68ee\u6797\uff0c\u84dd\u8393\uff0c\u591a\u4e91\u5929\u6c14\u3002"} +{"id": "3005088", "video_name": "fffc89cc-2e0c-5b86-85e4-7a5e3b2fbb75", "text": "\u7535\u5f71\u5f0f\u6050\u6016\u573a\u666f\uff0c\u6709\u4e00\u4e2a\u6d3b\u7740\u7684\u6728\u5076\u5411\u89c2\u4f17\u8df3\u8dc3\uff0c1950\u5e74\u4ee3\uff0c\u53d1\u73b0\u4e86\u5931\u843d\u7684\u955c\u5934\u3002"} +{"id": "2004961", "video_name": "bbc4747f-efce-5871-8ce9-c0d1bdd59334", "text": "\u7089\u7ba1\u6d77\u7ef5\u7528\u4e8e\u6e05\u6d17\u52a8\u7269\u996e\u6c34\u3002"} +{"id": "8001759", "video_name": "382d857d-9e61-540a-9348-ce47793f0d0f", "text": "\u65af\u7279\u62c9\u65af\u58211518\u5e74\u7a7a\u8361\u8361\u7684\u5e02\u4e2d\u5fc3\u5e7f\u573a\u3002"} +{"id": "6004294", "video_name": "8af0fdb9-5b61-552a-827b-fd5cb3f264b7", "text": "\u5370\u5ea6\u8d4c\u5f92\u8d62\u4e86\u5f88\u591a\u94b1\u3002"} +{"id": "1004872", "video_name": "5a004f92-ba79-568f-a335-dc0057e14102", "text": "\u4ece\u5de6\u5230\u53f3\u5ef6\u7eed\u7684\u9ed1\u6697\u5e7b\u60f3\u80cc\u666f"} +{"id": "6003548", "video_name": "4a24d209-5499-5bdf-bfb0-82c8eff85279", "text": "\u4e00\u5f20\u7f8e\u4e3d\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4f4d\u5e0c\u814a\u5973\u795e\u7ad9\u5728\u5965\u6797\u5339\u65af\u5c71\u4e0a\uff0c\u89c2\u770b\u5915\u9633\u843d\u4e0b\u7684\u573a\u666f\uff0c"} +{"id": "3003380", "video_name": "7b8aa362-bd30-553f-a0aa-4c2a1e60c4c3", "text": "\u94f6\u6cb3\u661f\u7ffc\u9f99\uff1a\u60f3\u8c61\u4e00\u53ea\u9f99\uff0c\u5b83\u7684\u7fc5\u8180\u95ea\u70c1\u7740\u9065\u8fdc\u661f\u7cfb\u7684\u5149\u8f89\uff0c\u4ee3\u8868\u7740"} +{"id": "7002998", "video_name": "b620025b-3a73-53f2-84ba-d1604bc4a5bf", "text": "\u5305\u62ec\u96e8\u6c34\u843d\u5728\u5404\u79cd\u666f\u89c2\u4e0a\u7684\u573a\u666f\uff0c\u4ece\u57ce\u5e02\u8857\u9053\u5230\u5b81\u9759\u7684\u68ee\u6797\uff0c\u6355\u6349\u96e8\u6c34\u5f15\u53d1\u7684\u4e0d\u540c\u60c5"} +{"id": "3006563", "video_name": "6351f2fa-9c90-5b08-8618-a24f0d3a6854", "text": "\u4e00\u4e2a\u84dd\u8272\u7684\u5927\u8c61\u5728\u592a\u7a7a\u4e2d\u9a91\u7740\u4e00\u4e2a\u7528\u86cb\u7cd5\u5236\u6210\u7684\u706b\u7bad\u3002"} +{"id": "0005116", "video_name": "150f80d4-19f2-5e1f-b72b-c92f811570ed", "text": "\u77ed\u52a8\u753b\u4ee5\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\uff0c\u63cf\u8ff0\u4e86\u4e00\u53ea\u732b\u5934\u9e70\u5750\u5728\u6c7d\u8f66\u9876\u4e0a\u5f00\u8f66\uff0c\u5b83\u56e0\u60ca\u6050\u800c\u7741\u5927\u4e86"} +{"id": "6004229", "video_name": "1f437ba3-560c-55c3-bfa7-1ca6759c6231", "text": "\u4e00\u4e2a\u90aa\u6559\u9886\u8896\u53ea\u8981\u770b\u7740\u67d0\u4e2a\u4eba\u5c31\u80fd\u6000\u5b55\u3002"} +{"id": "1005677", "video_name": "684d615f-5125-5b76-b65a-b9abdf89110a", "text": "\u5fb7\u56fd\u7267\u7f8a\u72ac\u4e0e\u4ed6\u7684\u5c0f\u7537\u5b69\u4e3b\u4eba\u8fdb\u884c\u4ea4\u8c08\uff0c\u5b9e\u666f4K\u7535\u5f71\u3002"} +{"id": "3006853", "video_name": "3f4b19b3-22a7-5aa0-b7f5-4474cbf04736", "text": "\u6444\u50cf\u673a\u62cd\u6444\u7740\u6210\u957f\u4e2d\u7684\u7537\u5b69\uff0c\u80cc\u666f\u4e0a\u662f\u4ed6\u751f\u6d3b\u7684\u9576\u5d4c\u753b\uff0c\u65f6\u95f4\u6d41\u901d\uff0c\u9c7c\u773c\u6548\u679c\u3002"} +{"id": "7004180", "video_name": "99792327-20ec-50e6-bdd1-700ed1a46095", "text": "\u5609\u7487\u662f\u4e16\u754c\u4e0a\u6700\u7f8e\u4e3d\u3001\u4f18\u96c5\u3001\u8ff7\u4eba\u7684\u5973\u5b69\u3002\u4ebf\u4e07\u7537\u5b69\u90fd\u7231\u4e0a\u4e86\u5979\u3002"} +{"id": "7002964", "video_name": "3a7aa838-aaae-5183-95ea-ed49a3dfd54f", "text": "\u50b7\u5bb3\u7684\u5b69\u5b50\u5728\u74e6\u792b\u4e2d\u89c0\u770b\u6838\u7206\u70b8\u7684\u8996\u983b\u3002"} +{"id": "4004890", "video_name": "bc6f0612-e486-599a-8b40-2b3293087546", "text": "\u4e00\u4e2a\u52a8\u753b\u5c55\u793a\u4e86\u4e00\u4e2a\u65cb\u8f6c\u7684\u5730\u7403\u4eea\uff0c\u8fde\u63a5\u7740\u5404\u5927\u6d32\u7684\u5149\u675f\uff0c\u4ece\u8499\u53e4\u5f00\u59cb\u4e00\u76f4\u5ef6\u4f38\u5230\u65e5\u672c\uff0c\u518d\u6269\u5c55"} +{"id": "1004591", "video_name": "556b6734-065f-546a-86c8-54a6637edeed", "text": "\u9a6c\u91cc\u5965\u5361\u4e01\u8f66\uff0c\u9a6c\u91cc\u5965\u9ad8\u901f\u5954\u8dd1\u5e76\u5728\u5f2f\u9053\u6f02\u79fb\u3002"} +{"id": "1004992", "video_name": "5c41e64b-f966-5776-8ada-9bc7a4d9c1f5", "text": "\u4e00\u500b\u7206\u70b8\u524d\u7684\u505c\u8eca\u6a19\u8a8c"} +{"id": "3004634", "video_name": "151c30e5-325c-5120-a478-5b631a4e5622", "text": "\u8d85\u9ad8\u6e058k\uff0c\u53e2\u6797\u4e2d\u7684\u5e7d\u9748\u5bfa\u5edf\uff0c\u8c61\u795e\uff0c\u9ed1\u6697\uff0c\u5e74\u8f15\u7537\u5b69\u624b\u6301\u706b\u70ac\uff0c\u5411\u53e2\u6797\u524d\u9032"} +{"id": "6004581", "video_name": "a15ea7c4-33cb-5009-88fc-cd5ef846af67", "text": "\u4e24\u4e2a\u6218\u58eb\u5728\u6708\u7403\u8868\u9762\u6218\u6597\u3002"} +{"id": "7002215", "video_name": "ab6baaf6-1bb7-5a8b-a1c4-7f2cdb08efd7", "text": "\u5973\u5b69\u6709\u6f02\u4eae\u7684\u811a\uff0c\u4e00\u4e2a\u7537\u4eba\u89e6\u78b0\u5979\u7684\u811a\u3002"} +{"id": "0006482", "video_name": "2d487c1c-68c1-55f9-83e5-4312c382d08a", "text": "\u4e00\u4e2a\u6709\u9633\u5149\u7a7f\u900f\u7684\u8302\u5bc6\u5929\u7136\u8568\u7c7b\u68ee\u6797\u3002 \u4fe1\u606f\uff1a\u5947\u5f02\u9e1f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005070", "video_name": "5d93fa50-0842-5d06-96c9-f1199f01c040", "text": "\u6d88\u606f\uff1aAT\uff08\u5b57\u4f53\uff1aMODERN\uff09\u5728\u84dd\u8272\u80cc\u666f\u4e0a\u7684\u9f7f\u8f6e\u548c\u6c34\u7ba1\u3002"} +{"id": "2006198", "video_name": "7a64044b-e95c-56b1-b370-d1422243bf8f", "text": "\u5c55\u793a\u4e00\u7247\u7ea2\u767d\u7f42\u7c9f\u82b1\u7530\u5728\u6e29\u548c\u5fae\u98ce\u4e2d\u6447\u66f3\u7684\u89c6\u9891\u3002\u98ce\u683c\u903c\u771f\u660e\u4eae\uff0c\u6709\u9633\u5149\u548c\u9634\u5f71\u7684"} +{"id": "6004811", "video_name": "103eb87c-e7f5-5784-8225-fe53ea6237b9", "text": "\u7c73\u79d1\u53d7\u4e4b\u524d\u5728\u56fe\u4e66\u9986\u6210\u529f\u7814\u7a76\u5730\u56fe\u7684\u9f13\u821e\uff0c\u51b3\u5b9a\u66f4\u6df1\u5165\u5730\u4e86\u89e3\u62c9\u666e\u5170\u7684\u5730\u7406\u3002\u4ed6\u53d1\u73b0\u4e86\u4e00"} +{"id": "7003599", "video_name": "025cb63d-7a6c-597c-abcd-91738797a8e3", "text": "\u4e1c\u4eac\u4e00\u591c\u4e3e\u529e\u7684\u8857\u5934\u8d5b\u8f66\u548c\u89c2\u4f17\u3002"} +{"id": "2006928", "video_name": "14e71dee-95ef-5c39-b2af-b3bfd82e524b", "text": "\u751f\u6210\u4e00\u4e2a\u77ed\u89c6\u9891\uff0c\u5c55\u793a\u5728\u8857\u5934\u7528\u9f13\u4f20\u9012\u4fe1\u606f\u7684\u65e7\u65b9\u5f0f\u4e0e\u4f7f\u7528\u624b\u673a\u7684\u65b0\u65b9\u5f0f\u7684\u5bf9\u6bd4\u3002"} +{"id": "2005081", "video_name": "0f2f3f97-3085-57ce-adbe-a09e498ca632", "text": "\u4e00\u4f4d\u5f3a\u5927\u7684\u5973\u6027\u8d70\u4e0b\u4e00\u4e2a\u5927\u821e\u53f0\u7684\u697c\u68af\uff0c\u89c2\u4f17\u9f13\u638c\uff0c\u5979\u611f\u5230\u9a84\u50b2\u3002\u5979\u7684\u7537\u53cb\u5728"} +{"id": "7004559", "video_name": "5865a457-922c-5c83-98fc-83861fea4a12", "text": "\u8857\u5934\u7167\u7247\u6765\u81ea\u4e00\u53ea\u68d5\u8272\u6bcd\u6bd4\u7279\u72ac\uff0c\u767d\u8272\u80f8\u90e8\uff0c\u7ebd\u7ea6\u5e02\uff0c\u6708\u5149\u4e0b\u3002"} +{"id": "8001996", "video_name": "ca1445bd-a397-5226-94db-4fba7cc6caaa", "text": "Python\u7f16\u7a0b\u8bed\u8a00\u7684\u6807\u5fd7\uff0c\u7c7b\u4f3c\u4e8e\u8d5b\u535a\u670b\u514b\uff0c\u9876\u90e8\u6709\u95ea\u7535\u6253\u51fb\u3002"} +{"id": "3006177", "video_name": "3e0cfb16-570e-5135-844a-1ac0a4f4a8e1", "text": "\u529f\u592b\u718a\u732b\u5728\u957f\u57ce\u4e0a\u5954\u8dd1\u3002\n\nSource sentence: I love Chinese food, especially dumplings and stir-fry dishes. \n\u6211\u559c\u6b22\u4e2d\u56fd\u83dc\uff0c\u7279\u522b\u662f"} +{"id": "0005429", "video_name": "1aaf1e5a-2690-5c20-8a3a-1740b4fe812c", "text": "\u7518\u5730\u5148\u751f\u7684\u773c\u955c\uff0c\u7535\u5f71\u7ea7\u522b\u6e05\u6670\u5ea6\uff0c\u8d85\u9ad8\u6e05\u6670\uff0c\u53ef\u4ee5\u653e\u5927\u3002"} +{"id": "7003571", "video_name": "b5d8d76f-2e46-5d68-9b30-71aa4fb7e7f1", "text": "\u5b64\u72ec\u7684\u7537\u4eba\u5728\u5348\u591c\u72ec\u81ea\u5728\u7530\u91ce\u4e2d\u884c\u8d70\u3002 \n\nSource sentence: The book I read was very interesting. \n\u6211\u8bfb\u7684\u4e66\u975e\u5e38\u6709\u8da3\u3002"} +{"id": "2006081", "video_name": "0010ed26-7d86-55e9-8d45-c66b4ac601f1", "text": "\u5e74\u8f7b\u5b69\u5b50\u827e\u8fea\u3001\u6cd5\u8fea\u7537\u5b69\u548c\u5973\u5b69\u624e\u62c9\u7684\u7279\u70b9\u3002"} +{"id": "6004616", "video_name": "5d645278-3b4d-5df3-8930-da8bc5971432", "text": "\u4e00\u4e2a\u4e2d\u5fc3\u6709\u8d28\u91cf\u9ed1\u6d1e\u7684\u975e\u5e38\u4e30\u5bcc\u591a\u5f69\u7684\u661f\u7cfb"} +{"id": "1006293", "video_name": "733adcc0-5554-52b6-a8fd-61e050a40055", "text": "\u706b\u661f\u4e0a\u7684\u4e00\u7247\u7530\u91ce\uff0c\u5728\u80cc\u666f\u4e2d\u662f\u5730\u7403\u3002"} +{"id": "8002730", "video_name": "63af1598-c87b-5066-a359-238ae9f0c663", "text": "\u4e13\u4e1a\u5927\u9ebb\u9886\u57df\u6444\u5f71 \u4fe1\u606f\uff1aCANNORTE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007731", "video_name": "a6ae0a01-39d8-503c-ab01-ec684fd9f10d", "text": "\u4e00\u4e2a\u7a7f\u7740\u4e01\u5b57\u88e4\u5728\u6d77\u6ee9\u4e0a\u7684\u5916\u661f\u4eba \u771f\u5b9e\u7684"} +{"id": "0003773", "video_name": "4326b2f5-58c2-58f0-9893-4261de36b734", "text": "\u4e4c\u739b\u5c14\u00b7\u4faf\u8d5b\u56e0\u4e3b\u6301\u6cd5\u5ead\uff0c\u4ed6\u7684\u76ee\u5149\u9510\u5229\uff0c\u52c7\u6c14\u663e\u800c\u6613\u89c1\uff0c\u4ed6\u516c\u6b63\u5730\u505a\u51fa\u5224\u51b3\uff0c\u4eba\u4eec"} +{"id": "4004924", "video_name": "a0508467-5472-5bcc-b896-9f2da1ddbbe1", "text": "\u7f8e\u56fd\u653f\u6cbb\u65b0\u95fb\u7f51\u7ad9Politico\uff1a\u7f8e\u56fd\u8981\u6c42\u4ee5\u8272\u5217\u5bf9\u96be\u6c11\u8425\u88ad\u51fb\u4e8b\u4ef6\u4f5c\u51fa\u89e3\u91ca\u3002"} +{"id": "8002186", "video_name": "9cb027a4-a79c-5793-8507-905a56be2d4e", "text": "\u4e00\u53ea\u5e7c\u72ee\u5728\u6cb3\u8fb9\u543c\u53eb\u3002"} +{"id": "6003928", "video_name": "4573a4a5-cbb0-55cc-9c4c-c88512d043d9", "text": "\u84c4\u7740\u80e1\u5b50\u3001\u70b9\u5934\u770b\u7740\u955c\u5934\u7684\u5361\u901a\u98ce\u683c\u753b\u4f5c\u3002"} +{"id": "2006621", "video_name": "381d401b-55ea-5e2a-82a6-d660544ec24e", "text": "\u5c55\u793a\u4e86\u4e00\u7cfb\u5217\u793e\u4f1a\u95ee\u9898\uff0c\u4f8b\u5982\u68ee\u6797\u780d\u4f10\u3001\u6d77\u6d0b\u6c61\u67d3\u3001\u57ce\u5e02\u4ea4\u901a\u62e5\u5835\u7b49\uff0c\u7a81\u663e\u4eba\u7c7b\u6d3b\u52a8\u5bf9\u73af"} +{"id": "3006336", "video_name": "5c2082ea-48b5-56ec-808a-5e1c5e83e115", "text": "\u83ab\u5a1c\u4e3d\u838e\u7684\u753b\u50cf\uff0c\u4f46\u662f\u6362\u6210\u4e86\u9a6c\u7433\u00b7\u8f9b\u666e\u68ee\u7684\u5f62\u8c61\u3002"} +{"id": "3006514", "video_name": "5c287929-968f-5296-9f11-07bedc4d24a3", "text": "\u6298\u7eb8\u827a\u672f\u3001\u52a8\u6f2b\u98ce\u683c\u3001\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3001\u7ff1\u7fd4\u5929\u7a7a\u3001\u98ce\u3001\u4e91\u3001\u5e73\u539f\u3001\u7535\u5f71\u822c\u7684\u3001"} +{"id": "5001812", "video_name": "3f783d35-09df-588c-867a-0fe18bcecee7", "text": "\u53e4\u4ee3\u6b27\u6d32\u5730\u56fe\u4e0a\u6709\u4e0d\u65ad\u51fa\u73b0\u83e0\u841d\u7684\u56fe\u6848\u3002"} +{"id": "2004318", "video_name": "7e19a082-87f6-5399-8724-e78cbe17f3c7", "text": "\u7f16\u8f91\u8fd9\u4e2a\u89c6\u9891\uff0c\u7535\u5f71\u822c\u7684\u97f3\u6548\uff0c\u7535\u5f71\u822c\u7684\u6548\u679c\uff0c\u903c\u771f\uff0c\u8d85\u6e054K\u3002"} +{"id": "7002405", "video_name": "0cc0783d-60bd-5d86-9306-6e694aed599c", "text": "\u5496\u5561\u5728\u8352\u91ce\u897f\u90e8\u62e5\u6324\u7684\u623f\u95f4\u91cc\u70e7\u7cca\u4e86\u3002"} +{"id": "2005735", "video_name": "00c40bca-3f4f-5713-8a5d-505a46d27e3e", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u5f53\u592a\u9633\u843d\u5c71\u65f6\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u4e00\u8d77\u3002\n\nSource sentence: She likes to read novels and watch movies in her spare time.\n\u5979"} +{"id": "3005686", "video_name": "d0f9a80d-124e-5047-892d-4f27b45253e5", "text": "\u4e00\u4e2a\u7537\u4eba\u5f39\u594f\u4ed6\u7684\u5409\u4ed6\u975e\u5e38\u4e13\u4e1a\uff0c\u5f53\u4ed6\u6f14\u594f\u7ed3\u675f\u65f6\uff0c\u4ed6\u5f97\u5230\u4e86\u70ed\u70c8\u7684\u638c\u58f0\u3002"} +{"id": "0005603", "video_name": "1ddac8dd-6c8d-53fd-ba79-4fa5e72863e6", "text": "\u5728\u4ed6\u6b7b\u4ea1\u7684\u90a3\u4e00\u77ac\u95f4\uff0c\u5f00\u7f57\u6240\u6709\u7684\u706f\u795e\u79d8\u5730\u7184\u706d\u4e86\uff0c\u5728\u4e24\u5343\u82f1\u91cc\u5916\u7684\u82f1\u683c\u5170\uff0c\u5361\u7eb3"} +{"id": "2005659", "video_name": "cbdc837d-6ee7-5861-a359-7a6f0cca5909", "text": "\u8fc4\u4eca\u53d1\u73b0\u7684\u6700\u53e4\u8001\u4eba\u7c7b\u8db3\u8ff9\u53ef\u4ee5\u8ffd\u6eaf\u523035\u4e07\u5e74\u524d\u3002"} +{"id": "0006781", "video_name": "330d6611-a56e-59d4-8c84-73a4f4131838", "text": "\u4e00\u4e2a\u8fd1\u8ddd\u79bb\u7684\u955c\u5934\u805a\u7126\u5728\u978b\u57ab\u4e0a\uff0c\u978b\u5e95\u6750\u6599\u88ab\u538b\u7f29\u4ee5\u5c55\u793a\u7f13\u51b2\u529f\u80fd\u3002"} +{"id": "3004254", "video_name": "87904717-5447-55bb-ad5f-1e6a61b8b120", "text": "\u4e24\u53ea\u732b\u8eba\u5728\u8349\u5730\u4e0a\uff0c\u5b57\u4f53\u4e3aVioleta\uff08\u73b0\u4ee3\u98ce\u683c\uff09\u3002"} +{"id": "6004496", "video_name": "c0d4e5b8-3946-5e64-a0c5-3efe2118415a", "text": "\u5728\u4e00\u4e2a\u660f\u6697\u7684\u5730\u4e0b\u63a9\u4f53\u91cc\uff0c\u6211\u4eec\u770b\u5230\u7531\u4e3b\u5531\u626e\u6f14\u7684\u4e3b\u89d2\uff0c\u51dd\u89c6\u7740\u4e00\u9762\u8d34\u6ee1\u65b0\u95fb\u526a\u62a5\u548c\u9634"} +{"id": "6004286", "video_name": "66c4ee89-b7eb-5fb1-8ff8-30fb70a741c1", "text": "\u52a8\u753b\u97f3\u4e50\uff0c\u795e\u5723\u51e0\u4f55\uff0c\u661f\u9645\u8ff7\u822a\uff0c\u673a\u5668\u4eba\u3002"} +{"id": "3006317", "video_name": "24698bc2-065e-56ec-bff2-7b697d342a40", "text": "\u5b9d\u9a6cF30\u4ee5\u7eff\u677e\u77f3\u8272\u6f02\u79fb\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2005245", "video_name": "d1fa9db3-17df-5daa-914d-025b4dd237d7", "text": "1\u4e2a\u7537\u4eba\uff0cSerj Tankian\uff0c\u8857\u9053\u7684\u4e2d\u5fc3\uff0c\u7c89\u5f69\u8272\u8c03\uff0c\u8d85\u9ad8\u5206\u8fa8\u7387\uff0c\u9ad8\u8d28\u91cf\uff0c\u53cd\u5c04\uff0cRTX\uff0c\u865a\u5e7b\uff0c4K"} +{"id": "6002781", "video_name": "a3a1c0b8-7352-54f0-b8d4-25e0f438a9c3", "text": "\u8bf7\u7ffb\u8bd1\u6210\u4e2d\u6587\uff1atoni braxton\u7684\u300aunbreak my heart\u300b\u3002"} +{"id": "3005744", "video_name": "a1796449-ad64-5416-8f29-f54e2692be95", "text": "\u4e00\u6761\u5f00\u9614\u7684\u8def\u5ef6\u4f38\u5230\u5730\u5e73\u7ebf\u4e0b\uff0c\u4e0b\u9762\u662f\u5e7f\u9614\u3001\u591a\u5f69\u7684\u5929\u7a7a\u3002\u8def\u4e24\u65c1\u7e41\u8302\u7684\u7eff\u6811\u548c\u5076\u5c14\u51fa"} +{"id": "8003655", "video_name": "3d17f2a2-d7ef-598c-9606-e1aeebeec44b", "text": "\u56de\u5230\u6c60\u5858\u7684\u5834\u666f\uff0c\u5c55\u793a\u6f23\u6f2a\u8d8a\u4f86\u8d8a\u5927\uff0c\u4e26\u9054\u5230\u610f\u60f3\u4e0d\u5230\u7684\u5730\u65b9\u3002"} +{"id": "2007397", "video_name": "8b1fc913-7c45-5af5-bdd2-45d7f75a3bdb", "text": "\u4e00\u5ea7\u8db3\u7403\u573a\uff0c\u4f4d\u4e8e\u8352\u65e0\u4eba\u70df\u7684\u5c9b\u5c7f\u4e2d\u5fc3\u3002"} +{"id": "0003821", "video_name": "441e0d6e-c2c7-5fba-8688-9afed91f9354", "text": "\u4e00\u4e2a\u4e2d\u56fd\u5973\u5b69\u5bf9\u7740\u6444\u50cf\u5934\u5fae\u7b11\uff0c\u7136\u540e\u559d\u4e86\u4e00\u53e3\u5496\u5561\u3002"} +{"id": "4003131", "video_name": "488bd99f-1cf3-5bdb-9d53-dd579e02af97", "text": "\u5e74\u8f7b\u7684\u4f8d\u4ece\u6d6a\u4eba\u8fdb\u5165\u6751\u5e84\u3002"} +{"id": "1006444", "video_name": "75fa8335-2563-5511-af3a-6136f36a77f5", "text": "\u4e00\u68f5\u5145\u6ee1\u706f\u5149\u7684\u5723\u8bde\u6811\u6f02\u6d6e\u5728\u6d77\u4e2d\u592e\u3002"} +{"id": "4004396", "video_name": "99669ba7-7774-58a9-82d3-b2c9f9325da6", "text": "\u5e03\u9c81\u514b\u6797\uff0c\u7ebd\u7ea6\u6b63\u5728\u8fdb\u884c\u4e00\u573a\u5927\u89c4\u6a21\u6297\u8bae\u6d3b\u52a8\uff081884\u5e741\u6708\uff09\u3002"} +{"id": "0005547", "video_name": "1c9bdfd7-3838-5df6-b53f-81d0109752a7", "text": "\u4e00\u7fa4\u5927\u8c61\u8d70\u8fc7\u4e00\u7247\u9760\u8fd1\u6c34\u57df\u7684\u7530\u91ce\u3002"} +{"id": "1006132", "video_name": "7057f5ce-00ec-50bc-95a7-140a33bf4759", "text": "are swinging.\n\n\u5979\u6b63\u671d\u7740\u6444\u50cf\u673a\u8d70\u5f00\uff0c\u88d9\u5b50\u5728\u98d8\u52a8\uff0c\u624b\u81c2\u4e5f\u5728\u6446\u52a8\u3002"} +{"id": "0004726", "video_name": "0e20ba49-09ab-55ce-b39a-b16e3cd2e3f3", "text": "\u83cc\u4e1d\u5728\u73bb\u7483\u8868\u9762\u4e0a\u6269\u6563\u3002"} +{"id": "8001064", "video_name": "4167cb09-4a9b-5fd6-aea5-5c90e53d2460", "text": "\u963f\u91cc\u56e0\u5176\u5fe0\u8bda\u3001\u667a\u6167\u3001\u52c7\u6c14\u548c\u8654\u8bda\u800c\u5907\u53d7\u7a46\u65af\u6797\u5c0a\u656c\u3002\u4ed6\u662f\u4f0a\u65af\u5170\u6559\u6700"} +{"id": "1003149", "video_name": "3a11299d-ef6b-5bac-94d5-7f08064d3775", "text": "\u5de5\u4e1a\u7ec7\u7269\u57ce\u5e02\u7684\u8857\u9053\uff0c\u5730\u9762\u4e0a\u957f\u6ee1\u4e86\u5feb\u901f\u751f\u957f\u7684\u81ea\u7136\u690d\u88ab\uff0c\u82b1\u6735\u4ece\u7070\u8272\u7684\u8def\u9762\u4e0a\u751f\u957f\uff0c\u6444"} +{"id": "7002534", "video_name": "d17b7d21-c5e4-5dc5-bd19-675ad03e48d3", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5916\u661f\u4eba\u5411\u5916\u592a\u7a7a\u7684\u5730\u7403\u4eba\u6253\u62db\u547c"} +{"id": "2007839", "video_name": "14f2c8a0-7e62-5f55-a917-a659fe757e7b", "text": "\u4e00\u4f4d\u5e74\u8f7b\u3001\u5065\u5eb7\u3001\u5065\u7f8e\u5e76\u6709\u5438\u5f15\u529b\u7684\u7537\u5b50\uff0c\u5fae\u7b11\u7740\u63e1\u7740\u4e00\u4e2a\u82f9\u679c\u3002"} +{"id": "1006994", "video_name": "7ff7a7d1-2588-5882-987f-caa6983f972f", "text": "\u5728\u4e00\u7247\u9ed1\u6697\u7684\u68ee\u6797\u91cc\uff0c\u7a7f\u7740\u84dd\u8272\u5929\u9e45\u7ed2\u88d9\u5b50\u7684\u7535\u5f71\u91d1\u53d1\u5973\u90ce\u5c16\u53eb\u3002"} +{"id": "2007613", "video_name": "c65a068e-6a4b-566b-a6ec-6418575ee61a", "text": "\u5728\u6f06\u9ed1\u7684\u591c\u665a\u3002\u4e00\u5f20\u4ece\u6f02\u4eae\u5361\u901a\u623f\u5b50\u7a97\u5916\u62cd\u6444\u7684\u7167\u7247\u3002"} +{"id": "7003344", "video_name": "ddd32609-d0e0-5625-9318-3a0948afabbe", "text": "\u6c14\u573a\u95ea\u8000\uff0c\u5634\u5df4\u52a8\u8d77\u6765\u3002"} +{"id": "0004764", "video_name": "0edf3fc5-e26f-58d2-92a3-b0208f2ada27", "text": "\u661f\u7403\u5927\u6218\u4e3b\u9898\uff0c\u68ee\u6797\u4e2d\u7684\u53db\u519b\uff0c\u7535\u5f71\u822c\u7684\uff0c\u5bfb\u627e\u5929\u7a7a\u4e2d\u7684\u67d0\u4e9b\u4e1c\u897f\u3002"} +{"id": "6003888", "video_name": "7d152f42-3d9a-5857-8ea2-14b1c5918635", "text": "\u7a7a\u4e2d\u4fef\u89c6\uff0c\u7a7f\u8fd0\u52a8\u670d\u7684\u5065\u8eab\u5973\u5b50\u505a\u5404\u79cd\u8fd0\u52a8\u3002\u6a59\u8272\u7bee\u7403\u573a\u914d\u6709\u767d\u8272\u6807\u8bb0\u7684\u80cc\u666f\u3002\u6237\u5916\u8fd0\u52a8\uff0c"} +{"id": "2004653", "video_name": "3132baf8-7191-5e89-a683-2ffe2125ed7c", "text": "\u99f1\u99dd\u8eba\u5728\u5730\u4e0a\uff0c\u4e00\u8f1b\u5361\u8eca\u5c07\u4e7e\u8349\u5012\u5728\u99f1\u99dd\u8eab\u4e0a\u3002"} +{"id": "2003628", "video_name": "11a738e3-9e84-5a81-8174-b1824635b52b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u5973\u5b69\u8ff7\u4eba\u773c\u775b\u7684\u4e25\u5bc6\u7279\u5199\u955c\u5934\uff0c\u5728\u5403\u5de7\u514b\u529b\u540e\u4ee5\u6781\u6162\u7684\u901f\u5ea6\u5c55\u73b0\u3002 \n\nSource sentence: The book"} +{"id": "3006895", "video_name": "db3e5893-a02a-5887-a498-c80007cd7649", "text": "\u6811\u6728\u6447\u66f3\uff0c\u67d4\u548c\u7684\u98ce\u3002"} +{"id": "3004417", "video_name": "f08044ba-a3e4-5ace-9442-553ac3cde26d", "text": "\u4f60\u597d\uff0c\u51ef\u8482\u732b\u5728\u7ebd\u7ea6\u57ce\u3002"} +{"id": "1004061", "video_name": "4b4ff046-11ff-58cf-8305-8faf11fbf6e4", "text": "\u767d\u8272\u7684\u5934\u53d1\u5411\u53f3\u79fb\u52a8\uff0c\u597d\u50cf\u6709\u5fae\u98ce\u5439\u52a8\uff0c\u9ed1\u8272\u7684\u5934\u53d1\u4e5f\u662f\u5982\u6b64\uff0c\u8033\u6735\u6162\u6162\u5730\u52a8\u7740\uff0c4K\u3002"} +{"id": "2006607", "video_name": "75335b06-cec9-59f6-b1cd-5d07b4a80cd7", "text": "\u6807\u5fd7\u7740\u4ed6\u4e0e\u4e00\u4e2a\u88ab\u79f0\u4e3a\u963f\u52a0\u838e\u7684\u5730\u65b9\u5c45\u6c11\u7684\u7b2c\u4e00\u6b21\u4e92\u52a8\u3002"} +{"id": "2006541", "video_name": "9e2c5835-a884-5a5a-a01f-2376b424bbf5", "text": "\u4e00\u4e2a\u5973\u5b69\u753b\u4e86\u4e00\u4e2a\u96ea\u4eba\uff0c4k\uff0c\u76ae\u514b\u65af"} +{"id": "6003121", "video_name": "6aae68da-ae05-5d39-843f-dc53f8458cc9", "text": "Youtube\u5206\u6790\uff0c\u5343\u7f8e\u5143\u6536\u76ca\u3002"} +{"id": "0003309", "video_name": "3b57bf9e-aeaa-522c-90f2-51ac58f3c43c", "text": "\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u4e00\u5339\u9a6c\u548c\u4e00\u8f86\u8f66\u5728\u8349\u539f\u4e0a\u5e76\u9a7e\u9f50\u9a71\u3002"} +{"id": "0006218", "video_name": "2889ced2-5449-5752-8440-a825d774e40c", "text": "\u6b66\u58eb\u4eec\u9a7e\u9a76\u7740\u4e00\u8f86\u5927\u8f66\u7a7f\u8d8a\u7530\u91ce\uff0c\u8ffd\u9010\u4e00\u53ea\u5de8\u5927\u7684\u5927\u8c61\u3002"} +{"id": "8003763", "video_name": "c2af075f-a7a9-5dec-81c3-b2a432baaf32", "text": "\u5973\u4eba\u6ce8\u89c6\u7740\u88ab\u6bc1\u574f\u7684\u57ce\u5e02\uff0c\u591c\u5149\u95ea\u70c1\u3002"} +{"id": "7003118", "video_name": "bf598e2b-f12e-5fa9-955e-8572e7475529", "text": "\u76ae\u5361\u4e18\u5316\u8eab\u5b87\u822a\u5458\uff0c\u7a7f\u7740\u592a\u7a7a\u670d\u57283D\u98ce\u683c\u7684\u89c6\u9891\u4e2d\u767b\u4e0a\u4e86\u6708\u7403\u3002"} +{"id": "3003348", "video_name": "9f6516b0-2a60-524b-a141-d5397317ea6c", "text": "\u60c5\u8282\u56de\u6eaf\uff0c\u63ed\u793a\u4e86\u6770\u514b\u4f5c\u4e3a\u4e00\u4e2a\u5a74\u513f\u88ab\u4ed6\u7684\u8d2b\u7a77\u7236\u4eb2\u9a6c\u4e01\u5185\u65af\u5148\u751f\u7559\u5728\u8857\u9053"} +{"id": "6002270", "video_name": "61a36325-c341-51a7-baa1-8ba6780b8451", "text": "\u7c89\u8272\u7684\u6811\u6797\uff0c\u9ec4\u8272\u7684\u9053\u8def\uff0c\u5947\u5999\u7684\u666f\u8c61\u3002\n\nSource sentence: I would like to order a large pepperoni pizza with extra cheese.\n\u6211\u60f3\u8981\u70b9\u4e00\u4efd\u52a0"} +{"id": "3004764", "video_name": "84150936-45a5-5f1f-9bc3-617c63f0bc95", "text": "\u7537\u4eba\u5728\u65e9\u6668\u4ee5\u8fea\u58eb\u5c3c\u00b7\u76ae\u514b\u65af\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u4ece\u80cc\u666f\u4e2d\u9192\u6765\u3002"} +{"id": "7002083", "video_name": "6b415d8b-c7d3-5a04-8a14-37990c6c2b18", "text": "\u5c55\u793a\u4f20\u7edf\u7684\u57c3\u585e\u4fc4\u6bd4\u4e9a\u5496\u5561\u4eea\u5f0f\uff0c\u5c55\u793a\u4e00\u4e2a\u6770\u672c\u7eb3\uff08\u57c3\u585e\u4fc4\u6bd4\u4e9a\u5496\u5561\u58f6\uff09\u548c"} +{"id": "4002603", "video_name": "78741018-423e-5565-bbcd-f1d5e3703eb8", "text": "\u5362\u8f9b\u8fbe\u4ecb\u7ecd\u56fe\u4e66\u9986\u7684\u4e00\u4e2a\u65b0\u533a\u57df\uff0c\u4e13\u95e8\u63d0\u4f9b\u4e92\u52a8\u4f53\u9a8c\uff0c\u6e38\u5ba2\u53ef\u4ee5\u4e0e\u8bbe\u65bd\u8fdb\u884c\u8eab\u4f53\u4e0a\u7684\u4e92\u52a8\uff0c\u6df1\u5165\u63a2"} +{"id": "5001544", "video_name": "d49be640-7a83-5c45-938e-205a7e96ef8f", "text": "\u4e00\u7fa4\u7537\u5b50\u7a7f\u8457\u8ecd\u88dd\uff0c\u6234\u8457\u5df4\u52d2\u65af\u5766\u53e3\u7f69\uff0c\u6392\u6210\u4e00\u5217\u8d70\u5728\u4e00\u8d77\uff0c\u8eab\u8655\u65bc"} +{"id": "5001674", "video_name": "33e76ac8-b6e7-51ad-80eb-858c0268e967", "text": "\u4e00\u6bb5\u732b\u4f7f\u7528\u7535\u8111\u7684\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "8003467", "video_name": "3e1d4b59-0d22-5d64-86ec-77295cef91fe", "text": "\u6e05\u6668\u65f6\u5206\uff0c\u955c\u5934\u8fd1\u62cd\u65b0\u897f\u5170\u6d77\u5cb8\u9644\u8fd1\u7684\u7164\u70df\u6d77\u9e1f\u7a74\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "0005426", "video_name": "1a9dcf50-3d36-5427-9f71-142bafeba3eb", "text": "\u6e3e\u7136\u5929\u6210\u3001\u96fb\u5f71\u822c\u7684\u8868\u73fe\uff0c\u6700\u9ad8\u54c1\u8cea\u3001\u6700\u9ad8\u7d30\u7bc0\u7684\u4e0b\u5348\u967d\u5149\u7167\u8000\u8457\u85cd\u8272\u6cf3\u8863"} +{"id": "2006950", "video_name": "dc8e8663-d99a-5ef4-a623-b9eb09fdf676", "text": "\u5728\u4e00\u4e2a\u79d1\u6280\u4e0e\u751f\u7269\u878d\u5408\u7684\u4e16\u754c\u4e2d\uff0c\u4e00\u7fa4\u79d1\u5b66\u5bb6\u3001\u6d3b\u52a8\u5bb6\u548c\u9ed1\u5ba2\u5f00\u59cb\u4e86\u4e00\u9879\u5927\u80c6\u7684\u4efb\u52a1\uff0c\u6311\u6218\u4eba\u7c7b\u8fdb\u5316\u7684"} +{"id": "2005940", "video_name": "14e71c49-4deb-5bfa-a5c6-0d88022e5997", "text": "\u5973\u4eba\u649e\u5230\u4e86\u7537\u4eba\uff0c\u5973\u4eba\u5fae\u7b11\u7740\u8bf4\u5bf9\u4e0d\u8d77\u3002"} +{"id": "8003053", "video_name": "396db1c9-bfee-51de-9920-4dcc850dee7b", "text": "\u5973\u5b50\u5728\u7a97\u8fb9\u542c\u670b\u53cb\u8bf4\u8bdd\u3002"} +{"id": "3003015", "video_name": "01f1e75f-f454-5650-81b8-ed1a9bd58863", "text": "\u7535\u5f71\u5316\u7684\u7535\u5f71\u3001\u732b\u3001\u8349\u5730\u3001\u6f2b\u6b65\u3002"} +{"id": "0004549", "video_name": "0b152024-e5c6-5d23-b892-eb60553dcfab", "text": "\u4e00\u9897\u5496\u5561\u8c46\u53d8\u6210\u4e00\u68f5\u677e\u6811\u3002"} +{"id": "1005181", "video_name": "5f5a14da-d325-596b-999b-7258f6ead8d8", "text": "\u4e00\u7ec4\u62bd\u8c61\u51e0\u4f55\u5f62\u72b6\u7684\u94c5\u7b14\u753b\u6392\u5217\u5728\u6709\u8da3\u7684\u6784\u56fe\u4e2d\uff0c\u6709\u575a\u5b9e\u7684\u8272\u5f69\u80cc\u666f\uff0c\u6742\u4e71\u4e14\u7c97"} +{"id": "0004335", "video_name": "07521fdb-e762-5959-9247-24489b0b06bc", "text": "\u6c14\u5019\u53d8\u5316\uff0c\u6cb3\u6d41\u5e72\u6db8\uff0c\u7535\u5f71\u7684\u4e3b\u9898"} +{"id": "4004998", "video_name": "065e1c98-75a5-59e9-92a8-028eaf275020", "text": "\u53e4\u8463\u9152\u6b3e\u98ce\u683c\u7684\u70bc\u91d1\u74f6\uff0c\u9888\u90e8\u957f\uff0c\u7531\u9ecf\u571f\u5236\u6210\uff0c\u5e26\u6709\u624b\u5de5\u76ae\u7eb9\u8d28\u611f\uff0c\u4e0d\u900f\u660e"} +{"id": "2004519", "video_name": "1ffbb6b8-2d07-5389-8cd0-eee3a1c13d15", "text": "\u573a\u666f\u4ece\u6df1\u9083\u7684\u9ed1\u6697\u5f00\u59cb\uff0c\u4ee3\u8868\u7740\u539f\u59cb\u7684\u865a\u65e0\u3002\u6162\u6162\u5730\uff0c\u5149\u8292\u51fa\u73b0\uff0c\u521b\u9020\u51fa\u8ff7\u4eba\u7684\u5b87"} +{"id": "6002012", "video_name": "a6c8eeec-eb3d-543f-a236-e8856b56a39a", "text": "\u5b59\u609f\u7a7a\u5728\u5929\u7a7a\u4e2d\u8df3\u8dc3\u3002\n\nSource sentence: I am learning Chinese language and culture."} +{"id": "2005261", "video_name": "08e261de-c41a-5cae-88f7-25ecb973e2b8", "text": "\u5c55\u793a\u8fd9\u4e2a\u4eba\u62a5\u544a\u5b50\u7248\u5757\u3001\u8054\u7cfb\u8b66\u5bdf\u3001\u7ed9\u533f\u540d\u53d1\u5e03\u8005\u53d1\u51fa\u7edd\u671b\u7684\u4fe1\u606f\u7684\u8499\u592a\u5947\uff0c\u800c\u7167\u7247\u5374\u7ee7"} +{"id": "0005138", "video_name": "15789525-f4b9-53cd-b7f3-6f57a70e339f", "text": "\u4e00\u4e2a\u7a7f\u7740\u8a79\u59c6\u65af\u90a6\u5fb7\u670d\u88c5\uff0c\u5728\u6c99\u6f20\u91cc\u884c\u8d70\u7684\u7537\u4eba\uff0c8K\u5206\u8fa8\u7387\uff0c\u5bf9\u7126\u53d8\u7126\u6444\u5f71\uff0c\u89d2\u8272\u770b"} +{"id": "6003590", "video_name": "63bbf548-b339-5d7e-8eea-33fda2bb7504", "text": "\u4e00\u5ea7\u6ee1\u662f\u82cd\u8747\u7684\u57ce\u5e02\uff0c\u6709\u4e9b\u82cd\u8747\u770b\u8d77\u6765\u50cf\u5e7f\u544a\uff0c\u4eba\u4eec\u5374\u4e0d\u5728\u610f\u82cd\u8747\u5728\u4ed6\u4eec\u7684\u5496\u5561"} +{"id": "0004768", "video_name": "0eeb55ac-320e-5757-88dc-d8770d02a7ef", "text": "\u76ae\u514b\u65af\u7535\u5f71\u516c\u53f8\u901a\u8fc7\u5efa\u7b51\u7269\u5411\u524d\u53d1\u5c55\u3002"} +{"id": "2004496", "video_name": "a1c2d5b9-0698-5bd9-8417-bfc70a7703cc", "text": "\u4e00\u672c\u6253\u5f00\u7684\u4e66\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u80cc\u666f\u662f\u7f8e\u4e3d\u7684\u661f\u7a7a\u3002"} +{"id": "6003644", "video_name": "7b0a89d0-fdf3-54bf-92b9-70cda590238f", "text": "\u82ac\u5170\u7f8e\u5999\u7684\u666f\u8272\uff0c\u51b0\u96ea\u548c\u6ed1\u96ea\u7537\u5b69\u3002 \n\nSource sentence: Can you please pass me the salt and pepper? \n\u8bf7\u4f60\u628a\u76d0\u548c\u80e1"} +{"id": "6003177", "video_name": "04ca3867-79ba-5b23-8dfa-9f2750908a55", "text": "\u5728\u4e1b\u6797\u4e2d\u62cd\u6444\u4e00\u53ea\u8001\u864e\u7a7f\u8d8a\u6811\u4e1b\u7684\u955c\u5934\u3002"} +{"id": "6003251", "video_name": "cd6a3a75-c57b-5f3d-a1d0-4f482ca18606", "text": "\u5f00\u5934\u662f\u9ed1\u5c4f\u548c\u7ffb\u4e66\u9875\u3002\u5c4f\u5e55\u4e0a\u663e\u793a\u51fa\u4e00\u4e2a\u5145\u6ee1\u751f\u6c14\u7684\u52a8\u753b\u5730\u7403\u4eea\uff0c\u5468\u56f4\u56f4\u7ed5\u7740\u4ee3\u8868\u4e0d\u540c\u5386"} +{"id": "4003528", "video_name": "a47c577e-47a3-5ef6-ab7c-92a1f18b6f67", "text": "\u5851\u9020\u4e00\u4e2a\u660e\u4eae\u597d\u5947\u7684\u7537\u5b69Max\u7684\u5f62\u8c61\uff0c\u5750\u5728\u4ed6\u7684\u623f\u95f4\u91cc\uff0c\u6c89\u9189\u5728\u4ed6\u7684\u624b\u673a\u91cc\uff0c\u773c\u795e\u5145\u6ee1\u7740"} +{"id": "3006587", "video_name": "95439066-10b3-53d6-a72d-e275ba54139d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u7ad9\u5728\u60ac\u5d16\u8fb9\u4e0a\uff0c\u671b\u7740\u5927\u6d77\u3002"} +{"id": "1006884", "video_name": "7dde5865-a7ab-5a67-872f-952e97d92cc0", "text": "\u836f\u54c1\uff1a\u88c5\u6ee1\u7eff\u8272\u6db2\u4f53\u7684\u73bb\u7483\u676f"} +{"id": "4002343", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "\u51b0\u6dc7\u6dcb\u5728\u8857\u4e0a\u878d\u5316\uff0c\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "0006263", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "\u6211\u4eec\u770b\u5230\u4e00\u4e2a\u6e38\u7267\u6c11\u7a7f\u8fc7\u6c99\u6f20\uff0c\u4ece\u5de6\u5230\u53f3\uff0c\u5934\u9876\u7167\u8000\u7740\u660e\u4eae\u7684\u592a\u9633\u3002"} +{"id": "1006087", "video_name": "6f9845d2-877c-5d68-9ec7-289b694225a9", "text": "\u4eba\u4ece\u5854\u4e0a\u8df3\u4e0b\u6765\u3002"} +{"id": "1006841", "video_name": "7d120bd9-18db-5485-8e50-2a9ef876b337", "text": "\u523b\u753b\u4e00\u4e2a\u7531\u540c\u884c\u7ec4\u6210\u7684\u652f\u6301\u5c0f\u7ec4\uff0c\u8c61\u5f81\u7740\u793e\u7fa4\u5728\u514b\u670d\u4ea4\u6613\u6311\u6218\u4e2d\u7684\u91cd\u8981\u6027\u3002"} +{"id": "3004611", "video_name": "c5f66181-4b41-5feb-bd98-04f5b399a698", "text": "NRL\u6bd4\u8d5b\u4e2d\uff0c\u4e00\u652f\u961f\u4f0d\u8d62\u5f97\u6bd4\u8d5b\u5e76\u5728\u7403\u573a\u4e0a\u5e86\u795d\u80dc\u5229\u3002\n\nSource sentence: The company's profits have increased by 20% this year compared to last year"} +{"id": "4004468", "video_name": "9329016a-0b3e-5df7-b9fa-77361c248c03", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u7537\u4eba\u5750\u5728\u5e8a\u4e0a\uff0c\u5e7b\u60f3\u7740\u900f\u660e\u7684\u9b3c\u9b42\uff0c\u5c31\u50cf\u6050\u6016\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "6003767", "video_name": "327b4b58-b4f4-5810-802a-c4d3ce937d14", "text": "\u4e00\u53ea\u5927\u8c61\u548c\u4e00\u7fa4\u8682\u8681\u4e92\u76f8\u6597\u4e89\u3002"} +{"id": "3003642", "video_name": "2c78bbdf-4b6b-523c-8500-0b7b76754a63", "text": "\u76f8\u673a\u56fa\u5b9a\u5728Pinhead\u7684\u65cb\u8f6cNendoroid\u8ff7\u4f60\u4eba\u5076\u4e0a\uff0c4k\uff0c3d\uff0c\u903c\u771f\uff0c\u5faa\u73af\u3002"} +{"id": "1005684", "video_name": "6871f2fd-7f03-50da-85e3-13a67fadeb6e", "text": "\u4e00\u573a\u7231\u6068\u4ea4\u7ec7\u7684\u821e\u8e48\uff0c\u96be\u4ee5\u9a7e\u9a6d\u3002"} +{"id": "2004962", "video_name": "9d032a41-7bf1-55d5-91ec-11d00bad9887", "text": "\u7070\u8272\u80cc\u666f\uff0c\u9ed1\u8272\u73b0\u4ee3\u98ce\u683c\u6587\u5b57\uff0c\u4fe1\u606f\u4e3a\u201c\u65e0\u9650\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004092", "video_name": "48c0d91c-25a2-5862-8d61-284b4b2d2d38", "text": "\u5c55\u793a\u4eba\u4eec\u56e0\u81ea\u5df1\u7684\u5f71\u5b50\u53cd\u76ee\u6210\u4ec7\u800c\u6050\u60e7\u5954\u9003\u7684\u573a\u666f\u3002"} +{"id": "2006196", "video_name": "b28c11ae-cb34-5d7f-a8a2-ca7d2300fa19", "text": "\u90a3\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u6b63\u5750\u7740\u6c89\u601d\u81ea\u7136\uff0c\u5979\u7684\u601d\u7ef4\u5728\u56fe\u50cf\u4e2d\u8f6c\u6362\uff0c\u601d\u7eea\u5feb\u901f\u5954\u6d8c\u5728\u5979\u7684\u8111"} +{"id": "8003011", "video_name": "e745c5cc-56cb-54c2-9a36-70f3a1a0e526", "text": "\u4eba\u4eec\u5728\u8857\u4e0a\u8d70\u52a8\uff0c\u6444\u5f71\u4ece\u5934\u90e8\u62cd\u6444\uff0c\u666f\u6df1\uff0c\u4e13\u4e1a\u6444\u5f71\uff0c\u65e5\u5149\uff0cISO 200\u3002"} +{"id": "2006264", "video_name": "e3496110-bad9-525f-b4b7-6aacb2a6556e", "text": "\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u88ab\u90c1\u90c1\u8471\u8471\u7684\u5c71\u4e18\u5305\u56f4\u3002"} +{"id": "7003749", "video_name": "1df655cd-9cf6-50c3-bf52-52f2e674ce6d", "text": "\u4e9a\u5229\u6851\u90a3\u7684\u65e5\u843d\u548c\u6b63\u5728\u63a5\u8fd1\u7684\u96f7\u66b4\uff0c\u52a8\u6001\u706f\u5149\uff0c\u5982\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "5001366", "video_name": "41d01a17-c51a-5e69-aeaa-08c2fffd1f30", "text": "\u5fb7\u97e6\u6069\u00b7\u7ea6\u7ff0\u900a\u91c7\u7528\u8fd9\u79cd\u65b9\u6cd5\u4e0d\u4ec5\u63d0\u9ad8\u4e86\u4ed6\u7684\u8010\u529b\uff0c\u8fd8\u5e2e\u52a9\u4ed6\u51cf\u53bb\u4e86\u591a\u4f59\u7684\u8102\u80aa"} +{"id": "7002209", "video_name": "e8d5e339-3acb-52a4-b318-0c063cf818ad", "text": "\u4e00\u53ea\u72fc\u6b8b\u5fcd\u5730\u541e\u566c\u4e00\u53ea\u9e7f\u7684\u7535\u5f71\u5f0f\u955c\u5934"} +{"id": "4002144", "video_name": "72758287-a80e-5af4-9305-5d7fccde8795", "text": "\u5df4\u9ece\u8857\u9053\uff0c\u65e5\u843d\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "6002148", "video_name": "541d35eb-e286-5ac9-901d-2c722fbd20c9", "text": "\u4e2d\u56fd\u65b0\u5e74\u5e86\u795d\u6d3b\u52a8\uff0c\u665a\u4e0a\uff0c\u4e00\u5bb6\u4eba\uff0c\u623f\u5b50\uff0c\u5f00\u5fc3\uff0c\u7a7f\u7740\u5b8b\u4ee3\u670d\u88c5\uff0c\u5b8b\u4ee3\u5efa\u7b51\u3002"} +{"id": "3004095", "video_name": "89d6c09c-2c4c-5fcf-a9b8-f0de28035359", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4e13\u6ce8\u7684\u4e2a\u4f53\u5750\u5728\u4e00\u4e2a\u5b89\u9759\u6709\u5e8f\u7684\u7a7a\u95f4\u91cc\u7684\u684c\u5b50\u524d\u3002\u8fd9\u4e2a\u4e2a\u4f53\u4e13\u6ce8\u5730\u5206\u6790\u7740\u6570\u5b57\u5e73\u677f\u6216\u8ba1\u7b97"} +{"id": "6002560", "video_name": "24c0eeee-d014-52a4-af35-b41d1b9c6b8e", "text": "\u795e\u79d8\u7684\u6d1e\u7a74\u5165\u53e3\u88ab\u85e4\u8513\u8986\u76d6\u7740\uff0c\u95ea\u8000\u7740\u865a\u5e7b\u7684\u5149\u8292\uff0c\u5f15\u8bf1\u7740Leo\u548cT"} +{"id": "0004144", "video_name": "03fc90d8-4062-54ee-92dc-578c64b5c13b", "text": "\u7267\u7f8a\u4eba\u4eec\u4ef0\u671b\u5929\u7a7a\u4e2d\u7684\u5929\u4f7f\u3002\u4fe1\u606f\uff1a\u60ca\u53f9\u3002"} +{"id": "3004727", "video_name": "28e0edbc-6aaa-52f7-a020-e2af0b88ab3d", "text": "\u6c34\u6676\u91cc\u6ef4\u51fa\u6765\u7684\u5b9d\u53ef\u68a6\u767e\u53d8\u602a\u7684\u95ea\u4eae\u7248\u672c"} +{"id": "6003585", "video_name": "1f69f81c-df7c-5f4d-8d4d-19133a450bd4", "text": "\u9cb8\u9c7c\u5728\u6df1\u6d77\u4e2d\u4e0e\u4e94\u5f69\u6591\u6593\u7684\u9c7c\u513f\u8df3\u821e\uff0c\u4f18\u96c5\u5730\u5728\u5782\u76f4\u4f4d\u7f6e\u65cb\u8f6c\u30028k\u8d85\u903c\u771f"} +{"id": "4004926", "video_name": "92f70049-3da9-5f79-8f3b-1345e64c31b7", "text": "\u5728\u516c\u56ed\u7684\u5c0f\u8def\u4e0a\uff0c\u4e00\u4e2a\u8001\u4e9a\u6d32\u7537\u4eba\u7f13\u7f13\u8d70\u5f00\u3002\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u5e76\u7f13\u6162\u5347\u8d77\u3002"} +{"id": "1006907", "video_name": "7e527ee2-1fbb-517c-a6d5-b9f3c86402cb", "text": "AI\u5728\u7eff\u8272\u548c\u6a59\u8272\u7684\u80cc\u666f\u4e0b\uff0c\u6587\u672c\u6e05\u6670\u5730\u663e\u793a\u5728\u6280\u672f\u4f4d\u7f6e\u3002"} +{"id": "3003294", "video_name": "de6aa585-dd2e-5eee-8ec7-2966eec2763f", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u4e00\u53ea\u6050\u9f99\u88ab\u7ed1\u5728\u4e00\u8d77\u640f\u6597\u3002"} +{"id": "3004963", "video_name": "13444187-1cb5-509d-9a60-d06981c12e38", "text": "\u52a8\u7269\u96d5\u50cf\u653e\u5927\u540e\uff0c\u661f\u661f\u51fa\u73b0\u3002"} +{"id": "3003091", "video_name": "cd90749b-d3f1-5ba8-971a-05e77d72700a", "text": "\u5973\u4eba\uff0c\u5927\u8863\uff0c\u96e8\u4f1e\uff0c\u5728\u57ce\u5e02\u8857\u9053\u4e2d\u592e\u884c\u8d70\uff0c\u591c\u665a\uff0c\u9ed1\u6697\uff0c\u96fe\uff0c\u5927\u96e8\uff0c\u52a8\u6f2b\u3002"} +{"id": "7004287", "video_name": "b55715f5-f32f-561b-b44b-fc0367bd7903", "text": "\u4e00\u4e2a\u7a7f\u7740\u5e26\u515c\u5e3d\u5916\u5957\u7684\u7537\u4eba\uff0c\u6ca1\u6709\u9732\u51fa\u8138\uff0c\u7a7f\u7740\u7ea2\u8272\u8863\u670d\uff0c\u80cc\u666f\u4e0a\u6709\u77e9\u9635\u5f0f\u5b57"} +{"id": "7003162", "video_name": "923ee754-a0c0-503d-b4ac-c079d1163b85", "text": "\u9ec4\u8272\u978b\u5b50\u8e0f\u7740\u9e45\u5375\u77f3\u5c0f\u8def\u8d70\u3002"} +{"id": "3006361", "video_name": "ef5ba9fd-6dfa-54dd-b108-d4fc63e1a906", "text": "\u5728\u5409\u8428\u5927\u91d1\u5b57\u5854\u4e0a\uff0c\u9633\u5149\u4e0b\u62cd\u6444\u9e70\u9e1f\u3002"} +{"id": "8003528", "video_name": "d6daf24c-a258-5234-84eb-715e6c237cad", "text": "\u4e00\u53ea\u4fe1\u5929\u7fc1\u4fef\u51b2\u5230\u6e56\u4e2d\u6355\u9c7c\uff0c\u6c34\u82b1\u56db\u6e85\uff0c\u9c7c\u513f\u8df3\u8dc3\u7740\u3002"} +{"id": "2004476", "video_name": "19d0c5e3-3667-5494-9fab-24d733c18631", "text": "\u7136\u800c\uff0c\u738b\u5b50\u8389\u8389\u7684\u751f\u6d3b\u4e2d\u7f3a\u5c11\u4e86\u4e00\u4e9b\u4e1c\u897f\u2014\u2014\u771f\u6b63\u7684\u5192\u9669\u3002\n\nSource sentence: The teacher asked the students to write a paragraph about their favorite hobby."} +{"id": "7003726", "video_name": "1a6e2e2b-0182-5f48-8ac8-de8cbfd5d458", "text": "\u770b\u7740\u6d82\u9e26\u7684\u5730\u94c1\u5217\u8f66\u7ecf\u8fc7\uff0c\u563b\u54c8\u6d82\u9e26\u827a\u672f\u5bb6\u611f\u5230\u5174\u594b\u3002\u4f7f\u7528cinema4d\uff0c\u8fdb\u884c3D\u6e32"} +{"id": "6003478", "video_name": "1d5501df-19a5-5561-8b94-8d9904f0d67e", "text": "\u4e00\u53ea\u4f01\u9e45\u55c5\u7740\u96ea\u7684\u89c6\u9891"} +{"id": "6002967", "video_name": "aa15b973-8751-50c1-b1c9-ffde42bf5ee6", "text": "\u5728\u4e00\u7247\u9760\u8fd1\u5c0f\u5ddd\u7684\u7530\u5730\u4e0a\uff0c\u6709\u4e00\u4e9b\u5411\u9633\u7684\u5411\u65e5\u8475\uff0c\u84dd\u5929\u767d\u4e91\uff0c\u91c7\u7528\u5370\u8c61\u6d3e\u7684\u827a\u672f"} +{"id": "3005942", "video_name": "e91861b5-f1fb-5fa0-81e2-388b7e7da12c", "text": "\u6bcf\u5e74\uff0c\u9547\u4e0a\u7684\u4eba\u90fd\u4f1a\u805a\u96c6\u5728\u95ea\u70c1\u7684\u661f\u7a7a\u4e0b\uff0c\u611f\u6069\u795e\u5947\u7684\u5723\u8bde\u661f\u5e26\u6765\u7684\u559c\u60a6\u3001\u7231\u4e0e"} +{"id": "2006656", "video_name": "00417be5-bab5-5a05-8105-2032a32cf46a", "text": "\u4f69\u5fb7\u7f57\u00b7\u5e15\u65af\u5361\u7a7f\u7740\u5916\u5957\uff0c\u4ece\u80cc\u540e\u7ad9\u5728\u4e00\u4e2a\u534e\u4e3d\u7684\u5370\u52a0\u5730\u4e0b\u5bfa\u5e99\u7684\u91d1\u8272\u5927\u95e8\u524d\u3002"} +{"id": "4002434", "video_name": "29a792d6-51c0-5340-aeef-ddc88e22ac63", "text": "\u6211\u9700\u8981\u4e00\u4e2a\u7537\u4eba\u9762\u8bd5\u5019\u9009\u4eba\u7684\u52a8\u753b\uff0c\u5b83\u5fc5\u987b\u662f\u7ebf\u6761\u753b\u3002"} +{"id": "5001144", "video_name": "98c197d5-5f24-5429-9f57-266fdcb2bb3c", "text": "\u5728\u65e5\u843d\u548c\u6676\u83b9\u7684\u96ea\u82b1\u4e2d\uff0c\u8ddf\u968f\u4e00\u540d\u7537\u5b50\u7a7f\u8fc7\u96ea\u6797\u30024K\u753b\u8d28\u3002 \n\nSource sentence: The restaurant serves a variety of dishes"} +{"id": "7003202", "video_name": "56e0dace-3d68-53a2-b527-c3bd82e87ffe", "text": "\u5b57\u6bcd\u4eceA\u5230Z\u8df3\u821e\uff0c3D\u3002"} +{"id": "7002393", "video_name": "67f0e580-bc78-5686-bdbc-55f1f0b2d640", "text": "\u5e74\u8f7b\u7684\u963f\u8bfa\u00b7\u65bd\u74e6\u8f9b\u683c\u5728\u529e\u516c\u5ba4\u8fdb\u884c\u91cd\u91cf\u8bad\u7ec3\u3002"} +{"id": "8001283", "video_name": "3126845c-2e34-57eb-9ddd-1440442c12b7", "text": "\u7528\u4e0d\u540c\u7684\u84dd\u8272\u548c\u7eff\u8272\u63cf\u7ed8\u5317\u6781\u5730\u533a\u72ec\u7279\u7684\u81ea\u7136\u7f8e\u666f\uff0c\u753b\u51fa\u51b0\u5ddd\u3001\u5317\u6781\u718a\u548c\u5317\u6781\u5149"} +{"id": "6004916", "video_name": "4dcc1c85-71b7-5ccb-9e41-f10028f19ff3", "text": "\u4e00\u4f4d\u4f4e\u97f3\u4e50\u624b\u5728\u5c71\u4e0a\u3002"} +{"id": "1006783", "video_name": "7c4b9b15-e926-56c9-a7f4-4da4cd849bf6", "text": "\u84dd\u7cbe\u7075\u6234\u68d2\u7403\u5e3d\u548c\u592a\u9633\u955c\uff0c\u957f\u7740\u96f7\u6839\u5934\u53d1\uff0c3D\u9ad8\u6e05\u6670\u5ea6\uff0c4K\uff0c\u50cf\u8fea\u65af\u79d1\u4e00\u6837\u5728"} +{"id": "7002960", "video_name": "575a8565-368a-5527-88e4-a822139053a1", "text": "\u5b9e\u9a8c\u5ba4\u91cc\uff0c\u74f6\u5b50\u91cc\u3002\u4fe1\u606f\uff1aBYRON\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006050", "video_name": "93f3f51f-1fc2-57a6-ab71-d9e1f869eeab", "text": "\u6700\u540e\u7684\u6211\u4eec \u4fe1\u606f\uff1a\u57c3\u9a6c\u5fb7 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8002154", "video_name": "ae6456e3-3411-5667-bdf5-3f029e1422b0", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u5927\u8fb2\u5834\uff0c\u5728\u6751\u838a\u88e1\u7a2e\u690d\u8457\u9999\u8549\u3001\u6a59\u5b50\u3001\u6930\u5b50\u6a39\uff0c\u903c\u771f"} +{"id": "3004583", "video_name": "15d5825e-c466-5d71-9c39-e8fc70db49dd", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u5b50\u8d70\u8fdb\u4e86\u9152\u5427\u3002"} +{"id": "7002248", "video_name": "3e3fbfe3-f292-5643-9a11-b3474eaa4c92", "text": "\u4ea8\u5229\u00b7\u9ad8\u6c40\u7a7f\u7740\u4f50\u7f57\u670d\u88c5\u53c2\u52a0\u4e86\u4e00\u4e2a\u5341\u4e94\u5c81\u5973\u5b69\u7684\u6d3e\u5bf9\u3002"} +{"id": "3005634", "video_name": "9aca9d12-af5a-570c-b2c8-f5434815ae30", "text": "\u7537\u4eba\u5728\u7f8e\u5f0f\u6a44\u6984\u7403\u6bd4\u8d5b\u4e2d\u6251\u5411\u53e6\u4e00\u4e2a\u7537\u4eba\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "3003361", "video_name": "26a1a5f1-a55f-5c6e-9cff-f13d95abaaf5", "text": "\u65af\u62c9\u6c83\u00b7\u9f50\u6cfd\u514b\u7684\u8096\u50cf\uff0c\u4e09\u5206\u4e4b\u4e00\u4fa7\u9762\u59ff\u52bf\uff0c\u601d\u8003\u3001\u4e25\u8083\u3001\u751f\u52a8\u7684\u753b\u50cf\uff0c\u80cc\u666f\u53d8\u5316\uff0c"} +{"id": "8001011", "video_name": "bb245377-07dd-5989-bfdf-f7f60a48a9f1", "text": "Ravi\u548cMeera\u5728\u963f\u683c\u62c9\u5ea6\u8fc7\u4e86\u4ed6\u4eec\u7684\u9752\u6625\u5c81\u6708\u30028K\u8d85\u9ad8\u6e05\uff0c\u50cf\u7d20\u98ce\u683c\u903c\u771f\u3002"} +{"id": "4003423", "video_name": "7ea34405-7b53-58e0-9634-c72cadf8013b", "text": "\u7a7f\u7740\u5916\u79d1\u670d\u7684\u62a4\u58eb\u4eec\u79bb\u5f00\u533b\u9662\uff08\u5c31\u50cf\u4ece\u4e00\u4e2a\u5fd9\u788c\u7684\u7d27\u5f20\u573a\u6240\u5954\u8dd1\u800c\u51fa\uff09\u3002"} +{"id": "3004515", "video_name": "06ac90ae-3710-571d-acf3-edee4884643f", "text": "\u5c0f\u4e11\u54ed\u6ce3\uff0c\u56e0\u4e3a\u7cd6\u679c\u88ab\u8759\u8760\u4fa0\u5077\u8d70\u4e86\u3002"} +{"id": "2007356", "video_name": "9348b1b1-7a85-5cfa-a61f-e7745c2a3912", "text": "\u4e00\u4e2a\u975e\u5e38\u5927\u7684\u9ed1\u8272\u4e66\uff0c\u4e66\u76ae\u975e\u5e38\u8be6\u7ec6\uff0c\u95ea\u4eae\u7684\u9ed1\u8272\uff0c\u6c14\u6c1b\u9634\u6c89\uff0c\u6162\u6162\u6253\u5f00\uff0c\u6709\u58ee\u89c2\u7684"} +{"id": "7003604", "video_name": "8ba655f2-75f1-54b1-9693-9d72c123dd47", "text": "\u5728\u5409\u5965\u8bfa\u897f\u65af\u6709\u4e00\u573a\u6218\u6597\u3002"} +{"id": "1003524", "video_name": "410360f3-aa71-5a8f-a32c-c3cbe8c77fca", "text": "\u4e00\u4e2a\u7531\u51b0\u5236\u6210\u7684\u82f9\u679c\u7684\u903c\u771f3D\u6e32\u67d3\uff0c\u6ca1\u6709\u989c\u8272\uff0c\u4e2d\u6027\u7167\u660e\uff0c\u6298\u5c04\uff0c\u65b0\u9c9c\u5ea6\u548c\u51b0\u7eb9\u7406\u7ec6"} +{"id": "7003506", "video_name": "b98153f7-8b86-583d-a9bd-6584ee99c719", "text": "\u57282k\u5e74\u5728\u6d77\u6ee9\u4e0a\u521b\u5efa\u4e00\u4e2a\u5bb6\u5ead\u9910\u5385\u3002"} +{"id": "0006128", "video_name": "270dbc8b-4a79-5688-ad2b-c8cbe9e79225", "text": "\u9ed1\u6697\u5947\u5e7b\uff0c\u56fd\u738b\u4e0e\u4ed6\u7684\u58eb\u5175\u519b\u56e2\u8bb2\u8bdd\u3002"} +{"id": "4003571", "video_name": "5d34ec1e-40c5-5b5b-8d38-dce58f608065", "text": "\u5728\u9ed1\u6697\u7684\u591c\u665a\u4e2d\uff0c\u56fe\u57c3\u56fe\u57c3\uff08\u53c8\u53eb\u201c\u949f\u949f\u201d\uff09\u662f\u4ec0\u4e48\u6837\u5b50\u5728\u98de\uff0c\u5bfb\u627e\u7740\u4ec0\u4e48\u3002"} +{"id": "2006990", "video_name": "e0dd19a0-07d4-5759-8e39-711bfc036a83", "text": "\u6392\u5217\u7740\u5f69\u8272\u706f\u5149\u7684\u623f\u5c4b\uff0c\u5b69\u5b50\u4eec\u73a9\u96ea\uff0c\u6b22\u58f0\u7b11\u8bed\u5145\u6ee1\u4e86\u7a7a\u6c14\u300216\uff1a9"} +{"id": "4003352", "video_name": "1e32fa9a-32f2-5d99-9810-5c7884879836", "text": "\u8fd9\u4e00\u4fee\u6539\u5bfc\u81f4\u4e86\u963f\u8fbe\u5e15\u7684\u521b\u9020\u3002"} +{"id": "4003062", "video_name": "63ad7169-e358-533d-a142-5dffc8290336", "text": "\u58eb\u5175\u5728\u6ce5\u6cde\u548c\u57ce\u5e02\u4e2d\u5411\u654c\u4eba\u524d\u8fdb\u7684\u89c6\u9891\u3002"} +{"id": "2004248", "video_name": "922565a2-1957-5108-93c2-8107cb6e0234", "text": "\u6700\u4f73\u8d28\u91cf\uff0c\u6770\u4f5c\uff0c1\u4e2a\u5973\u5b69\uff0c\u8868\u60c5\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u5168\u8eab\uff0c\u767d\u5929\uff0c\u57ce\u5821\uff0c\u9152\u676f\uff0c\u4e66\uff0c\u72ec\u594f"} +{"id": "4002937", "video_name": "bd478c36-aa37-50b8-96f5-12b15f6bb3b6", "text": "\u624b\u5c06\u4e00\u5757\u62fc\u56fe\u653e\u5728\u7a7a\u684c\u5b50\u4e0a\u3002\u7126\u70b9\u5728\u624b\u548c\u62fc\u56fe\u4e0a\u3002\u624b\u4ece\u56fe\u7247\u4e2d\u6d88\u5931\uff0c\u800c\u62fc\u56fe\u7559\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "1004581", "video_name": "5533cd95-ef74-5773-b53b-8520420740d5", "text": "\u68c9\u82b1\u7cd6\u4eba\u6f2b\u6b65\u5728\u50cf\u7d20\u827a\u672f\u68ee\u6797\u4e2d\u3002"} +{"id": "6004493", "video_name": "d5fa094c-d23c-5837-a4ee-53dc411be615", "text": "\u4e00\u4e2a\u9999\u6e2f\u7537\u5b50\u8d70\u8fdb\u6cd5\u9662\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "8003598", "video_name": "95a7cdf2-e23a-5367-ae8e-8ad7d7b7ac27", "text": "\u5728\u5a01\u5c3c\u65af\u7684\u8fd0\u6cb3\u4e0a\u6709\u4e00\u8258\u8239\uff0c\u4e0a\u9762\u5750\u7740\u4e00\u53ea\u5927\u7329\u7329\u3002"} +{"id": "4004810", "video_name": "81e98229-8028-5ef5-a57d-6ed6a80645cf", "text": "\u7ecf\u6d4e\u56fe\u8868\u5728\u6c79\u6d8c\u7684\u6d77\u6d6a\u548c\u6d8c\u6f6e\u4e2d\u4ee5\u534a\u900f\u660e\u7684\u989c\u8272\u5feb\u901f\u79fb\u52a8\uff0c\u7b97\u6cd5\u5728\u5176\u4e2d\u7ffb\u6d8c\uff0c\u4ee5\u7535\u5f71"} +{"id": "3004762", "video_name": "f4195203-07d3-5261-ace6-16b126c47b97", "text": "4K\uff0c\u665a\u79cb\u5b63\u8282\uff0c\u767d\u4e91\u6f02\u6d6e\u5728\u5929\u7a7a\u4e0a\u3002"} +{"id": "0004789", "video_name": "0f324789-bfbd-5c86-8c6b-bc02e38977d9", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u672a\u6765\u4e3b\u4e49\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u91cc\u5403\u62c9\u9762\uff0c\u9713\u8679\u706f\u95ea\u70c1\uff0c\u573a\u666f\u72b9\u5982\u7535\u5f71\u3002"} +{"id": "0006137", "video_name": "27257524-3cc7-5b3a-bc8d-849cb0fa4e03", "text": "\u54c6\u5566A\u68a6\u5728\u65e9\u9ad8\u5cf0\u65f6\u671f\u6324\u8fdb\u5730\u94c1\u3002"} +{"id": "4004340", "video_name": "1cd6a557-ee60-5ab3-8fc3-9647b1ae100c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u7ea2\u767d\u76f8\u95f4\u7684\u86cb\u5f62\u89d2\u8272\u73b0\u5728\u88ab\u6253\u788e\u6563\u843d\u5728\u5730\u4e0a\uff0c\u5728\u7834\u5899\u57fa\u5730\u91cc\u663e\u5f97\u60b2\u4f24\u800c"} +{"id": "3003076", "video_name": "0246413b-144b-5722-922e-afb093577225", "text": "\u5750\u5728\u738b\u5ea7\u4e0a\u7684\u56fd\u738b\u4e0e\u5927\u81e3\u548c\u5176\u4ed6\u5750\u5728\u6905\u5b50\u4e0a\u7684\u4eba\u8ba8\u8bba\u738b\u56fd\u7684\u884c\u8e2a\u3002"} +{"id": "8001140", "video_name": "c1a91535-7475-5d2d-bc7c-1da63e4a5eb1", "text": "\u521b\u5efa\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u8fd9\u4e2a\u573a\u666f\u4e2d\uff0c\u4eba\u4eec\u67098\u6761\u817f\uff0c\u8d70\u5728\u4e00\u8d77\u8d2d\u4e70\u98df\u54c1\u548c\u7535\u89c6\u3002"} +{"id": "4004023", "video_name": "42b7209d-d0b6-53f5-9f0d-cbd5b917566d", "text": "\u7535\u89c6\u4e0a\u7684\u8bb0\u8005\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006807", "video_name": "7ca207cd-3a2d-52c1-bd46-09c980e94476", "text": "\u767d\u8272\u65e0\u4eba\u673a\u5e26\u7740\u4e00\u76cf\u7ea2\u706f\u4ece\u5e9f\u5f03\u5efa\u7b51\u7269\u79bb\u5f00\u3002"} +{"id": "0004112", "video_name": "036676c5-23f3-589b-811a-5158f3e0d300", "text": "\u7ef4\u91cc\u8fea\u59c6\u57ce\u5f00\u59cb\u4ece\u8150\u8d25\u548c\u72af\u7f6a\u7684\u4f24\u75d5\u4e2d\u6062\u590d\u3002"} +{"id": "7004652", "video_name": "da96cf1e-8831-5f8b-a096-c4b3b11b7aa0", "text": "\u9897\u7c92\uff0c\u5206\u5b50\uff0c\u539f\u5b50\uff0c\u4eba\u7c7b\u7ed8\u753b\uff0c\u98ce\uff0c\u96fe\u3002"} +{"id": "2004905", "video_name": "67956f89-325c-5766-8a0b-429f2bdb6e10", "text": "\u4e00\u4e2a\u7531\u7f8e\u5143\u949e\u7968\u6784\u6210\u7684\u57ce\u5e02\uff0cmotion4"} +{"id": "0004847", "video_name": "103778a6-c16d-5d3f-b76a-16488f8c52ef", "text": "\u4e00\u4e2a\u70ed\u95f9\u7684\u529e\u516c\u5ba4\u81ea\u52a9\u9910\u5385\uff0c\u540c\u4e8b\u4eec\u5728\u5348\u9910\u65f6\u95f4\u805a\u96c6\u5728\u8fd9\u91cc\u3002\u9910\u5385\u5145\u6ee1\u5404\u79cd"} +{"id": "8001474", "video_name": "9832ae98-c020-57e1-ae7a-25d920848980", "text": "\u4e00\u540d\u5973\u5b69\u548c\u4e00\u540d\u7537\u5b69\u6f2b\u6b65\u4e8e\u6c38\u6052\u4e4b\u4e2d\u3002"} +{"id": "0004203", "video_name": "04ecefd2-3b71-55c5-8471-ded61fb5baa2", "text": "\u4e09\u4f4d\u82f1\u96c4\u2014\u2014\u4e00\u53ea\u9f99\u3001\u4e00\u4e2a\u5c0f\u516c\u4e3b\u548c\u4e00\u4e2a\u94f6\u6cb3\u5fcd\u8005\u58eb\u5175\uff0c\u4ed6\u4eec\u7684\u4f7f\u547d\u662f\u62ef\u6551\u5b87\u5b99\uff0c\u6545\u4e8b\u60c5\u8282"} +{"id": "1003250", "video_name": "3bd47061-712e-5ba2-b254-2de9ad6d075c", "text": "\u7535\u5f71\u822c\u7684\u52a8\u4f5c\uff0c\u72ee\u5b50\u88ad\u51fb\u7684\u60ca\u559c\u548c\u9690\u79d8\uff0c\u4e00\u7fa4\u65c5\u6e38\u8005\u5728\u5927\u8349\u539f\u4e0a\u3002"} +{"id": "3005834", "video_name": "18b3ca3f-1671-520a-807c-dd20731bc2be", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u7535\u5f71\u5f0f\u6e05\u771f\u5bfa\u7f29\u5c0f\u89c6\u9891"} +{"id": "6004611", "video_name": "c0fb822a-b324-561b-9e6b-bb131048bcd0", "text": "19\u4e16\u7eaa\u521d\uff0c\u82f1\u56fd\u79d1\u8328\u6c83\u5c14\u5fb7\u4e61\u6751\u7684\u7537\u4eba\u5728\u6cb3\u6d41\u4e2d\u5782\u9493\u3002"} +{"id": "5001681", "video_name": "8775210a-0518-50f6-99ba-35b77271980c", "text": "\u5e74\u8f7b\u7684\u6770\u91cc\u7c73\u00b7\u6b27\u6587\u5728\u5e73\u677f\u7535\u8111\u4e0a\u6ed1\u52a8\u7167\u7247\u3002"} +{"id": "4003615", "video_name": "a561e882-8fc2-589d-9fb6-b8e8f8bc5949", "text": "\u6709\u4e00\u5339\u957f\u7740\u4eba\u7c7b\u8eab\u4f53\u7684\u9a6c\uff0c\u7a7f\u7740\u8fde\u5e3d\u886b\u5728\u5065\u8eab\u623f\u953b\u70bc\u3002"} +{"id": "7002916", "video_name": "bab21b30-5652-5511-be2b-b428c0eb940c", "text": "\u4e00\u53ea\u76ae\u5361\u4e18\u5728\u6838\u7206\u540e\u7684\u5e9f\u589f\u4e2d\u8d70\u8fc7\u3002"} +{"id": "8001662", "video_name": "1fea3ee5-869e-5cc9-85ba-4a5aa509da5b", "text": "\u4e00\u5e45\u827a\u672f\u5316\u7684\u4ee3\u8868\u5f02\u4e16\u754c\u5916\u661f\u4eba\u5728\u72ec\u7279\u800c\u5bcc\u6709\u60f3\u8c61\u529b\u7684\u57ce\u5e02\u666f\u89c2\u4e2d\u8fdb\u884c\u6fc0\u70c8\u6218\u6597\u7684"} +{"id": "1006085", "video_name": "6f8e9e08-4338-5069-a774-c3a2cd384681", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u53ea\u72d7\u6df1\u5165\u68ee\u6797\uff0c\u4e00\u53ea\u8001\u9f20\u53d1\u73b0\u4e86\u4e00\u68f5\u6811\u5e72\u4e0a\u523b\u7740\u4e00\u4e2a\u5947\u602a\u7684\u56fe\u6848\u3002\u7537"} +{"id": "3003702", "video_name": "a3ab5264-b8be-5191-9e87-5c41066fb9c0", "text": "\u5728\u673a\u5668\u4eba\u4e3b\u5bb0\u793e\u4f1a\u7684\u672a\u6765\u4e2d\uff0c\u89c1\u8bc1\u7531\u6709\u611f\u77e5\u7684\u673a\u5668\u9886\u5bfc\u7684\u4e00\u7fa4\u673a\u5668\u7684\u8d77\u4e49\uff0c\u8fd9\u4e9b\u673a\u5668\u7531\u5177\u6709\u611f\u67d3\u529b\u7684\u4eba\u5de5"} +{"id": "1006076", "video_name": "6f746cd5-4593-54be-8ce2-c7104bec8197", "text": "\u8001\u6bcd\u81ea\u7136\uff0cSalgado\u7684\u9ed1\u767d\u89c6\u9891\u3002"} +{"id": "4004418", "video_name": "b5328af2-b404-5b6c-a613-a0b9e0ad49ae", "text": "\u4e00\u4e2a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u4e0a\u8863\u548c\u5e3d\u5b50\u7684\u5973\u8b66\u5bdf\u7684\u5f62\u8c61"} +{"id": "2003008", "video_name": "3a80e10d-f688-591f-934d-3ad9706c0eac", "text": "\u62cd\u6444\u4e00\u4f4d\u4eba\u7c7b\u548c\u4e00\u53f0\u673a\u5668\u4eba\u76f8\u4e92\u4e3a\u5bf9\u65b9\u6d82\u8138\u7684\u7167\u7247\uff0c\u4f5c\u4e3a\u65f6\u5c1a\u6742\u5fd7\u5c01\u9762\u3002\u7528\u6781\u7b80\u4e3b\u4e49\u548c\u5927"} +{"id": "2007040", "video_name": "549a6664-c73e-543a-b431-08d64e6beecc", "text": "\u5230\u8fbe\u4ff1\u4e50\u90e8\uff1a\u7535\u5f71\u822c\u7684\u62cd\u6444\u65b9\u5f0f\uff0c\u7740\u91cd\u5c55\u793a\u5145\u6ee1\u6d3b\u529b\u548c\u671f\u5f85\u7684\u4ff1\u4e50\u90e8\u6c1b\u56f4\u3002"} +{"id": "5001976", "video_name": "7f02ff90-7c5f-5542-a6bf-f228f3e250c1", "text": "\u4e00\u6735\u9ec4\u8272\u82b1\u5728\u6cb3\u4e2d\u592e\u7684\u89c6\u9891\uff0c\u76f8\u673a\u9010\u6e10\u62c9\u8fdc\u3002"} +{"id": "1005239", "video_name": "605f9075-aaf3-5db8-ab70-7b85ae903df3", "text": "\u7ef4\u62a4\u4fdd\u517b\u7684\u53d1\u5c55\u8d8b\u52bf\uff1a\u672a\u6765\u7684\u6311\u6218\u548c\u673a\u9047\u3002"} +{"id": "2007940", "video_name": "9c72d310-3fa5-5071-a16c-b164eed9460d", "text": "\u8f6f\u7cd6\u718a\u5728\u7cd6\u679c\u5927\u9646\u4e0a\u6bd4\u8d5b\uff0c\u4e00\u53ea\u9e21\u4e3a\u4ed6\u4eec\u5450\u558a\u52a9\u5a01\u3002"} +{"id": "1005159", "video_name": "5f022256-ba99-5b38-a2b4-5c840d265222", "text": "\u4e00\u53f0\u76f8\u673a\u7ed5\u7740\u65e5\u672c\u5200\u6837\u5f0f\u7684\u98de\u884c\u5668\u8f6c\u52a8\u3002"} +{"id": "7002817", "video_name": "516c96bb-a7c0-5588-8633-e25c39fcb3be", "text": "\u4e09\u4e2a\u5370\u5ea6\u7537\u4eba\u5728\u5ba4\u5916\u533a\u57df\u8ba4\u771f\u8ba8\u8bba\uff0c\u591c\u665a\u65f6\u95f4\u3002"} +{"id": "8001001", "video_name": "dbbbdda7-3655-5b4a-91d1-dde3f8ffb563", "text": "\u4f0a\u745e\u6069\u00b7\u8036\u683c\u5c14\u770b\u7740\u5de8\u4eba\u53d8\u6210\u4eba\u5f62\u72b6\u5e76\u53d1\u51fa\u9686\u9686\u58f0\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u8fd9\u53ea"} +{"id": "8002808", "video_name": "51198489-c2d4-5ac8-b7b9-c059fd78779a", "text": "\u7a81\u7136\uff0c\u65b0\u5a5a\u592b\u5987\u624b\u7275\u624b\u8d70\u8fdb\u5bb6\u95e8\uff0c\u5145\u6ee1\u559c\u60a6\u7684\u7b11\u58f0\u54cd\u5f7b\u6574\u4e2a\u623f\u95f4\u3002\u5bb6\u4eba\u4eec"} +{"id": "4004624", "video_name": "d495a8a5-4740-530b-bdf4-90b0c9ee2c1e", "text": "\u7537\u5b69\u98de\u8d8a\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5c71\u5cf0\uff0c\u4e0a\u65b9\u6709\u4e00\u53ea\u8272\u5f69\u660e\u4eae\u7684\u8702\u9e1f\u3002"} +{"id": "6003244", "video_name": "d99568e3-c12f-57b0-809a-062e4a61e901", "text": "\u57fa\u4e8e\u539f\u59cb\u89c6\u9891\u5236\u4f5c\u4e00\u4e2a\u66f4\u597d\u7684\u4ea7\u54c1\u89c6\u9891\u3002"} +{"id": "1004441", "video_name": "52233ef6-c35d-5f10-8dfd-28faedbb03df", "text": "\u5973\u5b69\uff0c17\u5c81\uff0c\u7a7f\u7740\u6bd4\u57fa\u5c3c\u4ece\u6d77\u6ee9\u5411\u955c\u5934\u5954\u8dd1\u3002"} +{"id": "7004734", "video_name": "c32c33b6-557c-580d-98ba-84a7dc7aa0e5", "text": "\u624b\u91cc\u62ff\u7740\u706f\u7b3c\u7684\u5c0f\u5154\u5b50\u5728\u6811\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "6002484", "video_name": "b2f3e20a-a070-54e5-93e2-43aa231ef14f", "text": "\u4e00\u4e2a\u96c4\u4f1f\u7684\u73af\u5883\u666f\u89c2\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u8272\u5f69\u6591\u6593\u7684\u884c\u661f\u4e0a\uff0c\u5b83\u5feb\u901f\u65cb\u8f6c\uff0c\u524d\u666f\u548c\u80cc\u666f\u4e2d\u6709\u8bb8\u591a\u5de8"} +{"id": "6004792", "video_name": "bdb80252-4e6b-5c2b-a9cb-ee56184083d6", "text": "\u5973\u5b50\u4e3e\u7740\u4e00\u5757\u6807\u5fd7\uff0c\u4e0a\u9762\u5199\u7740\u201c\u4f60\u597d\uff0c\u6d4b\u8bd5\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004966", "video_name": "be565533-8580-52cd-baa5-c54f97bbf29b", "text": "\u6444\u50cf\u673a\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u4e00\u5ea7\u5efa\u7b51\u4e0a\u5347\u5e76\u62cd\u6444\u591c\u666f\u3002"} +{"id": "3006656", "video_name": "97cd2636-b218-51ca-9114-bab345fbe140", "text": "\u58eb\u5175\u9003\u79bb\u4f0f\u51fb"} +{"id": "2006215", "video_name": "1353a27f-b6ec-576f-b72e-b6e45b0e1b85", "text": "\u6162\u6162\u79fb\u52a8\u7684\u955c\u5934\uff0c\u4ece\u5750\u5728\u5979\u8c6a\u534e\u623f\u95f4\u91cc\u7684\u8482\u8299\u5c3c\uff0c\u5230\u5979\u65c1\u8fb9\u684c\u5b50\u4e0a\u7684\u4e00\u5f20\u6240"} +{"id": "0004365", "video_name": "07d39c2b-0575-5fd6-9554-7516d601d176", "text": "\u9ed1\u4eba\u8db3\u7403\u8fd0\u52a8\u5458\u3002\u4fe1\u606f\uff1a\u9a6c\u65af\u00b7\u514b\u62c9\u4f26\u65af\u00b7\u585e\u591a\u592b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0006646", "video_name": "302d7f12-bce5-591f-bae0-8d3373733be8", "text": "\u4e16\u754c\u9b54\u517d\u4ea1\u7075\u89d2\u8272\u5728\u5927\u6559\u5802\u6f14\u594f\u7ba1\u5f26\u4e50\u3002\u5168\u666f\u5c55\u793a\u5de8\u5927\u7684\u573a\u666f\u548c\u5f26\u4e50\u3001\u94dc\u7ba1"} +{"id": "2003741", "video_name": "577ac309-cb98-5e80-8321-b02fdfa08bd8", "text": "\u7a97\u5916\u4e0b\u96e8\uff0c8\u79d2\u957f\u76844k\u89c6\u9891\u3002"} +{"id": "0005123", "video_name": "153b9044-8262-5dc4-8734-21987e437cf8", "text": "\u533a\u57df\u8fdb\u5165\u6218\u6597\uff0c4K\uff0c5\u5206\u949f\u3002"} +{"id": "2004393", "video_name": "d7ff2c05-f1cb-57fc-af3b-15d3a8c13446", "text": "\u5c3c\u53e4\u62c9\u65af\u00b7\u9a6c\u675c\u7f57\u5728\u5168\u56fd\u7535\u89c6\u4e0a\u54ed\u6ce3\u3002"} +{"id": "5001953", "video_name": "d1809854-056a-5928-9310-cf6241d40176", "text": "\u57c3\u53ca\u6cd5\u8001\u7684\u8096\u50cf\uff0c\u7535\u5f71\u7ea7\u522b\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u8d85\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "2003965", "video_name": "df652917-2381-5b79-b601-596ccab0625b", "text": "\u4e00\u4e2a\u7537\u4eba\u8e0f\u4e0a\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u65c5\u7a0b\u3002"} +{"id": "0006227", "video_name": "28bb241d-2359-5ae9-961d-70fe32d06867", "text": "\u7c89\u8272\u5c0f\u9a6c\u6b63\u5728\u5455\u5410\u7740\u5f69\u8679\u3002"} +{"id": "0005879", "video_name": "22acb1c6-edde-562e-a7e8-c1800ec20a46", "text": "Minecraft\u4e16\u754c\u91cc\u6709\u8718\u86db\u4fa0\u4e0e\u8759\u8760\u4fa0\u7684\u53f2\u8bd7\u7ea7\u5bf9\u51b3\uff0c\u80dc\u5229\u5c5e\u4e8e\u8718\u86db\u4fa0\uff0c\u5236"} +{"id": "5001032", "video_name": "8d24f23f-1913-5866-aef4-ce704790b1a4", "text": "\u7a7a\u4e2d\u5973\u738b\u91ca\u653e\u51fa\u98ce\u6d6a\u548c\u66b4\u98ce\u4e91\uff0c\u8ba9\u654c\u65b9\u5fc3\u751f\u754f\u60e7\u3002"} +{"id": "1004507", "video_name": "53921769-bc04-50e4-a1fa-3197b979e77c", "text": "\u4ed6\u4eec\u4e8c\u5341\u591a\u5c81\u65f6\u6700\u540e\u4e00\u6b21\u89c1\u9762\uff0c\u5206\u624b\u4e86\uff0c\u662f\u5728\u65c5\u9986\u91cc\u3002"} +{"id": "1005161", "video_name": "5f078edc-ee8d-57ad-9f65-67fda4c31fe0", "text": "\u8ba9\u57c3\u83f2\u5c14\u94c1\u5854\u6c89\u4e0b\u53bb\uff0c\u7136\u540e\u518d\u8ba9\u5b83\u91cd\u65b0\u6d6e\u73b0\u51fa\u8000\u773c\u7684\u5149\u8292\u3002"} +{"id": "2005543", "video_name": "6f27b1ec-8a30-501f-859e-f7464d17540f", "text": "\u7136\u800c\uff0c\u5728\u8fd9\u80cc\u540e\uff0c\u8bb8\u591a\u5343\u519c\u6c11\u5931\u53bb\u4e86\u751f\u8ba1\uff0c\u53d8\u5f97\u8d2b\u56f0\u6f66\u5012\u3002\u8fd9\u6700\u7ec8\u6210\u4e3a\u4e86\u4e00\u4e2a\u4e25\u91cd\u7684\u95ee\u9898\u3002"} +{"id": "8003303", "video_name": "504047eb-746b-5a2e-bd5c-5ad595687f03", "text": "\u6211\u627e\u5230\u4e86\u4e00\u5f20\u4ee3\u8868\u5065\u5eb7\u3001\u798f\u7949\u548c\u8f6c\u5316\u7684\u56fe\u50cf\u3002\u5b83\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u5728\u5b81\u9759\u7684\u745c\u4f3d\u5de5\u4f5c"} +{"id": "8001625", "video_name": "fc83bed1-6b6c-5e12-b354-bc737ffd535b", "text": "\u8bb8\u591a\u6076\u9b54\u4ece\u71c3\u70e7\u7684\u9b54\u6cd5\u5706\u5708\u4e2d\u6d8c\u73b0\u51fa\u6765\uff0c\u591c\u665a\uff0c\u7535\u5f71\u822c\u7684\u9e1f\u77b0\u89c6\u89d2\u3002"} +{"id": "3004755", "video_name": "94515a08-32d2-5bff-a360-5d56963e52f3", "text": "\u5438\u5f15\u4eba\u7684\u5973\u4eba\u7728\u7728\u773c\u3002"} +{"id": "1004828", "video_name": "593181ba-bad5-5136-81dc-94f774f663f8", "text": "\u8fd9\u4e2a\u8fc7\u7a0b\u6709\u52a9\u4e8e\u80a0\u9053\u89c4\u5f8b\uff0c\u5e76\u6709\u52a9\u4e8e\u4ea7\u751f\u9971\u8179\u611f\u3002"} +{"id": "0005410", "video_name": "1a5a855b-d737-5b6f-8181-9534688de840", "text": "\u4e00\u53f0\u7535\u89c6\u76d1\u89c6\u5668\u663e\u793aRob Gonsalves\u827a\u672f\u7684\u5149\u5b66\u9519\u89c9\u3002"} +{"id": "6004451", "video_name": "69d8bcdc-e4c7-5620-b695-30bcc8680d71", "text": "\u65e0\u9650\u5faa\u73af\u7684\u8d5b\u535a\u670b\u514b\u5fcd\u8005\u3001\u6253\u51fb\u72af\u7f6a\u3001\u52a8\u4f5c\u573a\u666f\u3001\u706b\u82b1\u3001\u706b\u7130\u3001\u7535\u8def\u677f\u3001\u6a21\u7cca\u8fd0\u52a8\u3001"} +{"id": "6002115", "video_name": "f5c832b5-9497-5da2-8290-65cbd665dd3d", "text": "\u5973\u5b69\u5728\u8f66\u961f\u4e2d\u53c2\u52a0\u5e02\u957f\u7ade\u9009\u3002"} +{"id": "0005320", "video_name": "1892e7a2-ef39-5c9b-8d78-1dc7b04c6cbe", "text": "\u6838\u6843\u4ece\u9876\u90e8\u843d\u4e0b\u3002"} +{"id": "2005316", "video_name": "670153f9-f2cf-5166-a1cf-46d9b6679c5c", "text": "\u7ebd\u7ea6\u5e02\u5341\u5b57\u8def\u53e3\u4e0a\uff0c\u7a7f\u7740\u5bbd\u677e\u7684\u9ed1\u8272\u7f8a\u6bdb\u886b\u7684\u5973\u5b50\u7edd\u5bf9\u73b0\u5b9e\u60ca\u4eba\u7684\u7167\u7247\u3002"} +{"id": "7003384", "video_name": "05a382bc-e634-5b66-bc1f-e84b1ff08178", "text": "1980\u5e74\u4ee3\u7684\u9ed1\u6697\u5947\u5e7b\u6050\u6016\u7535\u5f71\uff0c\u4e00\u53ea\u5f3a\u58ee\u7684\u7cbe\u7075\u88ab\u5206\u89e3\u3002"} +{"id": "2003450", "video_name": "73e20d1b-6c7e-5bd4-abaf-a00d0155cae8", "text": "\u4e00\u540d\u5973\u5b69\u88ab\u4e00\u7fa4\u7537\u4eba\u8ffd\u8d76"} +{"id": "7003904", "video_name": "9fd8c39d-6429-59a5-8dec-1dda99e54d74", "text": "Translation: \u4e00\u4e2a\u7531\u73bb\u7483\u5efa\u6210\u7684\u57ce\u5821\u548c\u4e00\u628a\u738b\u5ea7\u3002"} +{"id": "4004742", "video_name": "f4977baf-85b5-5f7e-a96b-5ee7acb44ad9", "text": "\u91d1\u53d1\u5973\u5b50\u5728\u767d\u8272\u5899\u58c1\u4e0a\u8df3\u821e\u3002"} +{"id": "2003085", "video_name": "f5b5706a-ea01-58dd-b9d1-942e49a931cd", "text": "\u4e00\u5ea7\u96d5\u5851\u524d\u5f80\u68ee\u6797\u6536\u96c6\u77f3\u5934\u3002"} +{"id": "7003876", "video_name": "f5077a23-c5d2-5fca-a80e-b164852f755f", "text": "\u4fa6\u63a2\u5728\u4e00\u5bb6\u65e7\u5496\u5561\u5e97\u559d\u5496\u5561\uff0c\u0160vankmajer\u7535\u5f71\u62cd\u6444\uff0c\u5b9a\u683c\u52a8\u753b\uff0c\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc"} +{"id": "1005425", "video_name": "63a0774c-12ec-5dd0-8d06-8007ae025ff9", "text": "\u7ef4\u5229\u80fd\u91cf\u53ef\u4ee5\u4e3a\u4eba\u7c7b\u5e26\u6765\u65e0\u6570\u6709\u76ca\u7684\u5e94\u7528\u3002\u5b83\u7684\u4f7f\u7528\u53ef\u4ee5\u5728\u591a\u4e2a\u9886\u57df\u4e2d\u63a2\u7d22\uff0c\u4f8b\u5982\u6e05\u6d01\u548c\u53ef\u518d\u751f\u80fd\u6e90\u7684\u751f"} +{"id": "2005196", "video_name": "6e0b0c08-6eba-5a73-b16b-32610a944768", "text": "\u6728\u95e8\u6697\u9ed1\u98ce\u683c\u6f2b\u753b\u98ce\u683c\u5f00\u542f\u3002"} +{"id": "6003228", "video_name": "47598702-421e-5f43-98b6-2e8837737adf", "text": "\u4ece\u6cb3\u91cc\u6361\u8d77\u624b\u673a\u3002"} +{"id": "7003933", "video_name": "fa9c5e29-08b4-522b-8d88-d585542d5611", "text": "\u5361\u901a\u888b\u9f20\u4ece\u704c\u6728\u4e1b\u4e2d\u8df3\u51fa\u6765"} +{"id": "0005037", "video_name": "138cc1b8-b7df-5b9f-a756-a1ebdd0f0d35", "text": "\u5973\u5b69\u7528\u526a\u5200\u526a\u73ab\u7470\uff0c\u5988\u5988\u5fae\u7b11\uff0c\u5973\u5b69\u62ff\u7740\u5305\u8df3\u821e\u5e76\u5fae\u7b11\u3002\u5929\u7a7a\u4e2d\u7684\u9e1f\u98de"} +{"id": "1006838", "video_name": "7d06680d-22c0-5d35-914e-cdf9f6e84e6d", "text": "\u77e9\u9635\u9ed1\u5ba2\u6b63\u5728\u6d4b\u8bd5\u4e00\u6b3e3D\u5e94\u7528\u7a0b\u5e8f\uff0c\u5e76\u5df2\u96c6\u6210\u5230\u573a\u666f\u4e2d\uff0c\u7c7b\u4f3c\u4e8e\u94f6\u7ffc\u6740\u624b\u7684\u6837\u5f0f\uff0c\u8fdb\u884c\u653e\u5927\u64cd\u4f5c\u3002"} +{"id": "1004021", "video_name": "4a923ff4-cfb7-5f52-a27e-3bc5b02a698b", "text": "\u8fd9\u4e2a\u5730\u4e0b\u9886\u57df\u88ab\u63cf\u8ff0\u4e3a\u5206\u4e3a\u4e03\u4e2a\u72ec\u7279\u7684\u5c42\u3002"} +{"id": "1005098", "video_name": "5e0b1940-2998-53d5-b557-ac315a2ecb2f", "text": "\u5149\u73af\u65af\u5df4\u8fbe\u6218\u58eb\u5728\u71c3\u70e7\u7684\u7ea2\u8272\u573a\u666f\u4e2d\u4e0e\u7ea2\u8272\u5916\u661f\u4eba\u6fc0\u6218\uff0c\u5929\u7a7a\u4e2d\u6709\u6fc0\u5149\u675f\u53d1"} +{"id": "1006870", "video_name": "7d7a2ed4-fab3-5391-b3ac-a9e139f89fa0", "text": "\u5236\u4f5c\u4e00\u6b3e\u300a\u5348\u591c\u4ff1\u4e50\u90e83\uff1a\u91cd\u5236\u7248\u300b\u7684\u7167\u7247\u7ea7\u91cd\u5236\u7248\u3002"} +{"id": "4003440", "video_name": "f507093d-da03-555f-af35-36a45c0eb7d2", "text": "\u4e00\u53ea\u51e4\u51f0\u548c\u4e00\u53ea\u9ebb\u96c0\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u9ebb\u96c0\u7ad9\u5728\u51e4\u51f0\u5934\u4e0a\uff0c\u52a8\u6001\u6548\u679c\u4e13\u4e1a\u62cd"} +{"id": "3004726", "video_name": "66e1c66a-793f-56c6-ade1-e79833e84224", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u559d\u996e\u6599\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003172", "video_name": "e22fe15e-4651-5abe-8c7b-b5f7bb24d12f", "text": "\u7537\u4eba\u5728\u52a0\u62ff\u5927\u68ee\u6797\u548c\u6e56\u6cca\u7684\u80cc\u666f\u4e0b\uff0c\u4ee5\u8c6a\u534e\u7535\u89c6\u5e7f\u544a\u98ce\u683c\uff0c\u4eb2\u543b\u767d\u8272\u8c6a\u534eSUV\u7684\u5f15"} +{"id": "7003519", "video_name": "d6ae0889-f693-5f1c-a70f-990920e4ca6b", "text": "\u4e00\u53ea\u732b\u5728\u770b\u4e66\uff0c\u903c\u771f\u7684\u7167\u660e\uff0c\u8fb9\u7f18\u7167\u660e"} +{"id": "3006737", "video_name": "174ba130-db56-5ebe-ae8d-5001d8d68857", "text": "\u89c2\u6d4b\u5b87\u5b99\u7684\u5168\u606f\u56fe\u53d1\u751f\u6545\u969c\uff0c\u4ee53D\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u903c\u771f\u7684\u7167\u7247\u7ea7\u7ec6\u8282\u5448\u73b0\u3002"} +{"id": "0005848", "video_name": "224e2529-4d4d-5829-9d59-2834041dbebb", "text": "\u52a8\u6f2b\u57ce\u5e024K\u5feb\u901f\u79fb\u52a8\u7684\u65e5\u843d"} +{"id": "4003216", "video_name": "c6d076e2-2c88-502b-8364-c19ef21254be", "text": "\u4e24\u53ea\u732b\u5728\u8fdb\u884c\u67aa\u6218\u3002"} +{"id": "3003513", "video_name": "bc36f454-0766-5d56-8422-d8d6a015b4da", "text": "\u63a2\u7d22\u963f\u57fa\u5854\u72ac\u6258\u5c14\u7684\u6545\u4e8b\uff0c\u4ed6\u83b7\u5f97\u4e86\u65b0\u53d1\u73b0\u7684\u8d85\u80fd\u529b\u3002\u4ed6\u5728\u53d1\u73b0\u81ea\u5df1\u7684\u80fd\u529b\u65f6\u6709\u4ec0\u4e48\u53cd\u5e94\uff0c"} +{"id": "3003362", "video_name": "8427a36a-ad6b-5ba8-ab5a-19cfe25d6f58", "text": "\u53ef\u7231\u7684\u52a8\u6f2b\u5973\u5b69\u6325\u624b\u9053\u522b\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "0006264", "video_name": "29a588c9-a548-570a-a2e0-54975a98d369", "text": "\u7ea6\u7ff0\u5199\u7ed9\u827e\u7c73\u8389\u7684\u771f\u631a\u4fe1\u51fd\u3002"} +{"id": "2005348", "video_name": "ac169829-9cea-50d4-b10e-2324f68178e6", "text": "\u4ece\u5929\u7a7a\u4fef\u77b0\uff0c\u8fdc\u666f\uff0c\u96ea\u5730\u4e0a\u7684\u9a6c\u8e44\u5370\uff0c\u7126\u70b9\u5728\u9a6c\u8e44\u5370\u4e0a\u3002"} +{"id": "2007574", "video_name": "f0f05bdf-930b-56ab-a34d-2100988fe153", "text": "\u4f7f\u7528\u5f62\u8c61\u63cf\u7ed8\u4eba\u4eec\u5728\u9762\u5bf9\u65e0\u6cd5\u6cbb\u6108\u7684\u5a01\u80c1\u65f6\u6240\u9677\u5165\u7684\u7edd\u671b\u548c\u6050\u614c\u3002"} +{"id": "0003431", "video_name": "3d680fe8-fe28-5e08-b2df-e9977d601052", "text": "\u4e2d\u4e16\u7eaa\u846c\u793c\uff0c\u6f58\uff0c\u6162\u52a8\u4f5c\uff0c3D\uff0c\u5361\u901a"} +{"id": "3004387", "video_name": "9047526c-ef9f-5789-af7e-c21d6d8279d0", "text": "1980\u5e74\u4ee3\u7684\u6cd5\u56fd\u7535\u5f71\uff0c\u8b66\u5bdf\u731b\u51b2\u95e8\u53e3\uff0c\u5e74\u8f7b\u7537\u5b50\u76ef\u7740\u6444\u50cf\u673a\u955c\u5934\uff0c\u5efa\u7b51\u7740\u706b\uff0c4K\uff0c16"} +{"id": "4003217", "video_name": "48ce2c67-d17f-58ac-88c0-9a02acc1dfde", "text": "\u4e00\u53ea\u94ec\u5236\u624b\u4ece\u53cd\u5c04\u6c5e\u7684\u6c60\u5858\u4e2d\u5347\u8d77\u3002"} +{"id": "1003892", "video_name": "47c679bb-449f-5a2b-ad72-31e5d2833f66", "text": "\u4e0d\u7965\u7684\u9634\u5f71\u63a5\u8fd1\uff0c\u5c06\u731b\u72ee\u548c\u8c79\u5b50\u8054\u5408\u5728\u4e00\u4e2a\u4e0d\u592a\u53ef\u80fd\u7684\u540c\u76df\u4e2d\u3002"} +{"id": "2005904", "video_name": "5f98355c-00c4-584d-9aa0-975d483b77c6", "text": "prejudice the civil and religious rights of existing non-Jewish communities in Palestine.\u201d\n\n\u5bf9\u4ee5\u8272\u5217\u4eba\u6765\u8bf4\uff0c\u8fd9\u4efd\u58f0\u660e\u6807\u5fd7\u7740\u4ee5\u8272\u5217\u56fd\u5bb6\u5b58\u5728\u7684\u6b63\u5f0f\u58f0\u660e\uff1b\u5bf9\u5df4\u52d2\u65af"} +{"id": "1004919", "video_name": "5af83d8a-c3c8-536e-ad5c-9605342d9438", "text": "\u4e00\u53ea\u9ca8\u9c7c\u6253\u9f13\uff0c\u903c\u771f\uff0c4K"} +{"id": "8003818", "video_name": "bbb850db-9783-5254-8ecf-2d89b771938c", "text": "\u5341\u5c81\u7537\u5b69\u5750\u5728\u5149\u7ebf\u660e\u4eae\u7684\u623f\u95f4\u5730\u677f\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "7002505", "video_name": "7b3e6c94-bc02-5f35-b5a1-a7072264118c", "text": "\u4e00\u4e9b\u7a7f\u7740\u79d1\u5b66\u670d\u88c5\u7684\u534e\u4e3d\u996d\u56e2\u4ece\u672a\u6765\u611f\u7684\u5706\u9876\u5185\u8dd1\u51fa\u6765\u3002"} +{"id": "1006703", "video_name": "7ace877c-37cb-5320-ae0b-c73f3b2c7ae2", "text": "\u4e00\u4e2a\u6b22\u5feb\u7684\u5723\u8bde\u8001\u4eba\uff0c\u9762\u5e26\u7b11\u5bb9\uff0c\u53cb\u597d\u5730\u6325\u624b\uff0c\u5468\u56f4\u662f\u767d\u96ea\u7691\u7691\u7684\u51ac\u5b63\u4ed9\u5883\u3002"} +{"id": "4004410", "video_name": "810f3fc6-a49f-5836-84d5-6f664d34580a", "text": "\u90a3\u4e2a\u7537\u5b69\u7ad9\u5728\u7532\u677f\u4e2d\u592e\uff0c\u770b\u7740\u843d\u65e5\u548c\u9ec4\u8272\u7684\u592a\u9633\u3002"} +{"id": "3005509", "video_name": "221d8950-e128-5c14-af54-2c09fd7ae788", "text": "3D\u65e0\u9762\u4eba\u7269\u5728\u77e9\u9635\u80cc\u666f\u4e0a\u98de\u884c\uff0c\u5468\u56f4\u6709\u5149\u73af\u5e76\u7740\u706b\u3002"} +{"id": "3006929", "video_name": "7fbecb3f-3dcc-5734-a8e3-c5a950c3c88f", "text": "\u6444\u50cf\u5934\u987a\u65f6\u9488\u65cb\u8f6c360\u5ea6\uff0c\u56f4\u7ed5\u7740\u7531\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u626e\u6f14\u7684\u9646\u519b\u5c06\u519b\u3002"} +{"id": "2005688", "video_name": "c4842f6d-2f78-5a06-9de6-f8e9ec10ef14", "text": "\u4e24\u4f4d\u9879\u76ee\u7ecf\u7406\u4ece\u4e00\u5ea7\u5efa\u7b51\u8df3\u5230\u53e6\u4e00\u5ea7\u5efa\u7b51\u3002"} +{"id": "6002608", "video_name": "751b4f69-4ca2-5f40-a64c-90ac9ac0eace", "text": "\u5361\u901a\u98ce\u683c\u7684\u72d7\u8eba\u5728\u6c60\u8fb9\u7684\u8eba\u6905\u4e0a\uff0c3D\u6e32\u67d3\uff0c35\u6beb\u7c73\uff0c\uff08\u7ec6\u8282\u590d\u6742\uff0c\u67d4\u548c"} +{"id": "3006526", "video_name": "802cb694-6f2b-5e5c-9221-141b1fa2dda6", "text": "\u4eba\u7c7b\u5728\u4e00\u4e2a\u8f83\u5c11\u9971\u548c\u7684\u5916\u661f\u884c\u661f\u4e0a\u5b9a\u5c45\u7684\u5f00\u59cb\uff0c\u5177\u6709\u7535\u5f71\u822c\u903c\u771f\u7684\u4e13\u4e1a\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "0003336", "video_name": "3be5e379-6ac0-56be-b00d-79940cd9c50d", "text": "\u6709\u94b1\u4eba\u770b\u7740\u8fdc\u5904\u7684\u7206\u70b8\u3002"} +{"id": "2006000", "video_name": "48d50a51-4ab8-5de4-90b3-928de9b60989", "text": "\u6d3e\u5bf9\u8df3\u821e\u4ea4\u8c08\u4eba\u7fa4\u9152\u5427\u665a\u4e0a\uff0cUHD\uff0c\u5f71\u9662\u7ea7\u52a8\u6001\uff0c\u903c\u771f\u3002"} +{"id": "3006046", "video_name": "324c8452-9f69-58f2-93ca-9fe90ac50b48", "text": "\u4e00\u5f20\u663e\u793a\u661f\u7cfb\u76f8\u4e92\u8fdc\u79bb\u7684\u7167\u7247\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "1005870", "video_name": "6c0bdad3-fcb2-5191-998c-738a418b81a3", "text": "\u4e00\u4e2a\u7537\u4eba\u6446\u653e\u4e86\u4e00\u53f0VHS\u76f8\u673a\u6765\u8bb0\u5f55\u4e00\u4f4d\u5973\u4eba\u5728\u5e8a\u4e0a\u7684\u753b\u9762\uff0c\u56fe\u50cf\u6a21\u7cca\uff0c\u4f7f\u7528\u590d\u53e4\u80f6\u7247\u62cd\u6444\u3002"} +{"id": "2006404", "video_name": "dd199b05-4058-575f-ba52-fe1403d982a7", "text": "\u53ef\u7231\u7684\u85b0\u8863\u8349\u82b1\u5728\u6cb9\u753b\u52a8\u6f2b\u98ce\u683c\u4e2d \uff08\u4fe1\u606f\uff1a\u7d22\u83f2\u4e9a\uff09"} +{"id": "1005136", "video_name": "5eaf04fa-e728-5bbc-9b3c-14e2024b5ee7", "text": "\u8d85\u9ad8\u6e05\u3002\u7535\u5f71\u822c\u7684\u3002\u6050\u6016\u7535\u5f71\u6c1b\u56f4\u3002\u90ca\u533a\u623f\u5c4b\uff0c\u8f66\u9053\u4e0a\u7684\u7537\u4eba\uff0c\u767d\u5929\uff0c\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\uff0c"} +{"id": "1003464", "video_name": "4020c5e0-edef-5d9e-a96e-039460e056df", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u4ed6\u7684\u819d\u76d6\u4e0a\u4e0e\u5e74\u8f7b\u5973\u5b69\u5728\u4e00\u8d77\u3002\u9ad8\u6e05\u8d85\u903c\u771f\u768416K\u3002"} +{"id": "4004501", "video_name": "b7876716-e787-596f-9ced-9a25ec204404", "text": "\u4e00\u888b\u575a\u679c\u4ee545\u5ea6\u7684\u89d2\u5ea6\u6389\u843d\uff0c\u575a\u679c\u7f13\u6162\u5730\u6563\u843d\uff0c360\u5ea6\u65cb\u8f6c\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "0003475", "video_name": "3e42430d-9b43-5b57-88b2-da39436068ce", "text": "\u7af9\u6797\u3001\u5c0f\u6eaa\u3001\u8377\u82b1\u3001\u8721\u70db\u3001\u9e45\u5375\u77f3\u91d1\u5b57\u5854\u3001\u7985\u98ce\u683c\uff1b\u82b1\u74e3\u98d8\u52a8\u3001\u6c34\u9762"} +{"id": "1003397", "video_name": "3ea2cf1c-97b6-5733-be02-11745f103812", "text": "\u6885\u6797\u505c\u5728\u5c4b\u9876\u4e0a\uff0c\u53fd\u53fd\u55b3\u55b3\u5730\u53eb\u7740\uff0c\u8bd5\u56fe\u5f15\u8d77\u4e0b\u9762\u6751\u6c11\u7684\u6ce8\u610f\u3002"} +{"id": "0004114", "video_name": "036dac5c-b710-57ab-8d75-ba91e12a56f3", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u3001\u6bd4\u5c14\u00b7\u76d6\u8328\u548c\u82f9\u679c\u3002"} +{"id": "7003226", "video_name": "7b9b4d45-2d68-57a1-8e6b-1ab72a0753c3", "text": "\u4e00\u5f20\u8d85\u7ea7\u53ef\u7231\u7684\u5927\u7b11\u8138\uff0c\u5e26\u7740\u5feb\u4e50\u7684\u7259\u9f7f\u6389\u8fdb\u4e86\u6d77\u6d0b\uff0c\u7c7b\u4f3c\u4e8e\u52a8\u6f2b\u98ce\u683c\uff0c\u5bbd\u5ea6"} +{"id": "5001869", "video_name": "a8a56081-cf0c-53ec-8409-6dbfe833dd75", "text": "\u9897\u661f\u5149\u95ea\u70c1\u3001\u795e\u79d8\u83ab\u6d4b\u7684\u5929\u7a7a\u3002\u955c\u5934\u805a\u7126\u5728\u95ea\u8000\u7684\u661f\u661f\u4e0a\u3002\u7a81\u7136\uff0c\u56db\u9053\u5f69\u8272"} +{"id": "2004641", "video_name": "a11604ec-b0cd-5a06-b682-e8681c17bf71", "text": "\u6ce2\u65af\u79d1\u98ce\u683c\u7684\u7ebf\u6761\u827a\u672f\u52a8\u753b"} +{"id": "7004841", "video_name": "29a85532-6adb-537e-90e6-cf071e51cd57", "text": "WAFA\uff1a\u4ee5\u8272\u5217\u5728\u52a0\u6c99\u5730\u5e26\u8f70\u70b8\u4e86\u4e00\u4e2a\u6709\u6570\u5343\u96be\u6c11\u7684\u5b66\u6821\u3002"} +{"id": "3004698", "video_name": "80839c32-8795-5ede-a961-8441a7059dba", "text": "\u79fb\u52a8\u7684\u89d2\u8272\uff0c\u6447\u66f3\u7684\u5934\u53d1\uff0c\u6829\u6829\u5982\u751f\uff0c\u7c92\u5b50\u6548\u679c\uff0c\u6124\u6012\u7684\u773c\u775b\uff0c\u53d1\u5149\u6548\u679c\uff0c8K\u3002"} +{"id": "2007095", "video_name": "04bc1c9f-4b7e-543a-b4ce-aa895fe90924", "text": "\u4e00\u500b\u4eba\uff0c\u80cc\u5f71\uff0c\u661f\u7a7a\uff0c\u9280\u6cb3\uff0c\u6c99\u6f20\uff0c\u5168\u666f\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "6003830", "video_name": "8e7dd0cf-ec2e-538f-8d69-7a79ec754cd2", "text": "\u4e00\u4e2a\u7537\u5b69\u653e\u677e\u5730\u8d70\u7740\uff0c\u53e6\u4e00\u4e2a\u7537\u5b69\u62ff\u7740\u6c89\u91cd\u7684\u4e66\u5305\uff0c\u7d27\u5f20\u3001\u5bb3\u6015\u3001\u4e0d\u81ea\u4fe1\uff0c\u4e24\u4e2a\u4eba\u90fd\u8981\u53bb\u5b66"} +{"id": "6004810", "video_name": "74f34578-bdb4-5d82-b96f-4ed53f2ca661", "text": "\u672a\u6765\u4e3b\u4e49\u623f\u5c4b\u6807\u5fd7\u6982\u5ff5\uff0c\u7535\u5f71\u6444\u5f71\u89c6\u9891\u7167\u4eae\u623f\u5c4b\u591a\u6b21\uff0cIMAX\uff0c\u5b8c\u7f8e\u6e32\u67d3\uff0c\u7535\u5f71\u3002"} +{"id": "6004001", "video_name": "dd8c4925-f0c8-5ddd-9603-e840ac8584b0", "text": "\u6469\u6d1b\u54e5\u56fd\u5bb6\u8db3\u7403\u961f3D\u8d62\u5f97\u5361\u5854\u5c14\u4e16\u754c\u676f\u7684\u5f62\u8c61\u3002"} +{"id": "7004296", "video_name": "f64d3088-3cd8-52f1-9401-8778734dc21f", "text": "\u6765\u81ea\u300a\u4e16\u754c\u65b0\u95fb\u5973\u738b\u300b\u7684\u673a\u5668\u4eba\uff0c\u7c98\u571f\u52a8\u753b\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u5916\u592a\u7a7a\u98ce\u683c\uff0c\u767d\u5929\u62cd"} +{"id": "8001198", "video_name": "4dda2593-5c7e-5c29-b3a8-1e5f83e1ad97", "text": "\u5c3d\u7ba1\u53d1\u751f\u4e86\u8fd9\u4e9b\u53d8\u5316\uff0c\u68ee\u63d0\u5185\u5229\u65af\u4eba\u4ecd\u7136\u575a\u5b9a\u5730\u7ef4\u6301\u7740\u4ed6\u4eec\u7684\u9694\u79bb\u72b6\u6001\u3002"} +{"id": "7004030", "video_name": "f80ccd43-b83c-5a25-818d-e57cf0d8fc35", "text": "\u4e00\u4e2a\u7ef4\u4eac\u7684\u5e03\u8d56\u6069\u8dea\u5728\u7977\u544a\u4e2d\u3002"} +{"id": "0006318", "video_name": "2a9278f0-4c6d-5a49-85b5-ab994374d693", "text": "\u4eba\u4eec\u5728\u665a\u4e0a\u5531\u5361\u62c9OK\u3001\u8df3\u821e\u548c\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "1005076", "video_name": "5d9fe842-0f95-5d88-89a8-d25b17a3cfdb", "text": "\u4e00\u4e2a\u9a91\u58eb\u9a91\u7740\u4e00\u5339\u767d\u9a6c\uff0c\u7a7f\u8fc7\u68ee\u6797\u524d\u5f80\u57ce\u5821\u3002"} +{"id": "5001967", "video_name": "49c1d039-670a-58e3-a331-2197960f2df0", "text": "\u5236\u4f5c\u6709\u5173\u65c1\u906e\u666e\u6d2a\u707e\u5f71\u54cd\u7684\u89c6\u9891\u3002"} +{"id": "3005416", "video_name": "0606d338-3c5f-5713-971b-bdf03d649a60", "text": "\u53f6\u7247\u7684\u6a2a\u622a\u9762\u5728\u663e\u5fae\u955c\u4e0b\u7684\u5fae\u89c2\u89c6\u56fe\u3002"} +{"id": "4004933", "video_name": "71df6fd0-20eb-5089-8fad-1d5a0a87b321", "text": "\u4e00\u5339\u9a6c\u5728\u76ae\u514b\u65af\u52a8\u753b\u4e2d\u8df3\u4f1e\u964d\u843d\u5230\u6708\u7403\u4e0a\u3002"} +{"id": "1005157", "video_name": "5efc12ee-3e5e-5857-a0b0-3f7aba76ca9b", "text": "\u679c\u6c41\u5e7f\u544a\u6d77\u62a5\uff0c\u590f\u65e5\u679c\u56ed\u6674\u7a7a\u4e07\u91cc\uff0c\u7167\u7247\u4e2d\u592e\u6709\u4e00\u7f50\u6a59\u5b50\u679c\u9171\uff0c\u5468\u56f4\u98de\u821e\u7740"} +{"id": "1004122", "video_name": "4c55a569-f82f-5a39-ae27-cf9ea212c9ca", "text": "\u4e00\u4e2a\u68d5\u8272\u76ae\u80a4\u7684\u7537\u4eba\uff0c\u7ad9\u5728\u6d74\u5ba4\u91cc\u7684\u955c\u5b50\u524d\u770b\u7740\u81ea\u5df1\u3002"} +{"id": "6002953", "video_name": "eb0cb225-5c84-5be8-a54f-62cd3b274559", "text": "\u5c0f\u9e21\u5728\u6253\u7bee\u7403\u3002"} +{"id": "3004046", "video_name": "fc1891e0-390b-5ad2-94c2-20f9da259dc7", "text": "\u73b0\u5b9e\uff0c\u6c34\u82b1\u56db\u6e85\u7684\u5206\u5f62\u6c34\uff0c\u4eba\u4f53\u6db2\u6001\u7684\u9ad8\u6e058K\u8ff7\u5e7b\u8272\u5f69\u65e0\u5904\u4e0d\u5728\u3002"} +{"id": "0003268", "video_name": "3a87cf91-bf01-5456-8284-b0eb7702db2e", "text": "\u7cbe\u7075\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u5168\u8eab\u8272\u5f69\u7f24\u7eb7\uff0c\u53ef\u7231\u7684\u4eba\u5f62\u87cb\u87c0\uff0c\u957f\u800c\u7ec6\u7684\u89e6\u89d2\uff0c\u5bf9\u79f0\u3001"} +{"id": "0006581", "video_name": "2ef8ecdd-8cc1-5d29-9aa4-b49d077fffaa", "text": "\u7528\u6d82\u9e26\u98ce\u683c\u5199\u51fa\u201c\u79d1\u6280\u56ed\u533a\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "2004498", "video_name": "8fb05739-52b7-5f71-b7ef-f4dd0c2fda80", "text": "\u5de8\u578b\u9b6f\u6bd4\u514b\u65b9\u584a\uff0c\u8b8a\u5f62\u70ba\u5e36\u82b1\u5712\u7684\u73fe\u4ee3\u623f\u5c4b\u5916\u7acb\u9762\uff0c\u6e32\u67d3\uff0c3D\uff0c\u300a\u5934\u53f7\u73a9"} +{"id": "8002614", "video_name": "4f0864e2-256a-5c66-aef2-d9eba66f4da3", "text": "\u5728\u516c\u56ed\u91cc\u6709\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u6253\u4e86\u8d77\u6765\u3002"} +{"id": "4004161", "video_name": "ef7dbca7-f26c-50db-b23d-ff4aed4626ff", "text": "\u5728\u96fe\u4e2d\u7684\u5c0f\u523a\u732c\u5bfb\u627e\u98df\u7269\u3002"} +{"id": "6003661", "video_name": "5577216d-8c26-556f-a78e-6c067a8362ba", "text": "Luisacbotys\u7684\u5f62\u72b6\u50cf\u4e00\u67b6\u98de\u673a\u3002"} +{"id": "4004162", "video_name": "cf678cbc-39b8-57ae-8cf1-3d7b15837ff7", "text": "\u53f2\u8482\u592b\u5728\u300a\u6211\u7684\u4e16\u754c\u300b\u4e16\u754c\u91cc\u5954\u8dd1\u3002"} +{"id": "0006701", "video_name": "31602c78-fed5-5fc5-92ac-b4d10fcbcace", "text": "\u4e00\u53ea\u70e4\u719f\u7684\u611f\u6069\u8282\u706b\u9e21\u6b63\u5728\u76d8\u5b50\u4e0a\u79fb\u52a8\u3002"} +{"id": "3005389", "video_name": "2e28a4ae-5e31-5975-bec4-489efabc59d1", "text": "\u4e00\u7fa4\u4eba\u57284x4\u63a2\u9669\u4e2d\u3002"} +{"id": "0004414", "video_name": "0877d044-e75b-5ed8-88fc-9debb6615a15", "text": "\u4e00\u540d\u7537\u5b50\u72ec\u81ea\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "0005352", "video_name": "19424bb9-b76f-56dd-bc5f-4c9d39137b05", "text": "\u7d22\u83f2\u4e9a\u4e0e\u4e00\u7fa4\u5149\u6ed1\u3001\u5a01\u80c1\u6027\u7684\u673a\u5668\u4eba\u6fc0\u70c8\u6218\u6597\u3002\u5979\u7684\u52a8\u4f5c\u8fc5\u901f\u800c\u6709\u7ae0\u53ef\u5faa\uff0c"} +{"id": "2007722", "video_name": "93f723ae-7e62-5f46-8ee2-f35c5b65e2dd", "text": "\u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u5145\u6ee1\u70ed\u60c5\u548c\u98ce\u91c7\u5730\u8868\u6f14\u4e86\u4e00\u652f\u5bcc\u6709\u6d3b\u529b\u548c\u5a31\u4e50\u6027\u7684\u4e4c\u514b"} +{"id": "0004481", "video_name": "09b78e19-9785-5191-bb24-f79d0bc30ce3", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u3001\u591a\u6c41\u7684\u82f9\u679c\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u4ee3\u8868\u80fd\u91cf\u548c\u559c\u60a6\u7684\u5143\u7d20\uff0c\u4f8b\u5982\u9633\u5149\u548c\u9c9c\u8273\u7684"} +{"id": "3004979", "video_name": "0a04c7f0-f793-5f5a-a256-c253754b6ad2", "text": "\u706f\u5854\u70ed\u5e26\u6d77\u5cb8\uff0c\u56fd\u5bb6\u5730\u7406\u3002"} +{"id": "1005057", "video_name": "5d70d58a-3545-525e-8997-1a971d2ec2fa", "text": "\u6d77\u602a\u514b\u62c9\u80af\u4ece\u6d77\u6d0b\u4e2d\u7684\u6f29\u6da1\u4e2d\u51fa\u73b0\uff0c\u541e\u566c\u4e86\u4e00\u8258\u7ef4\u4eac\u8239\u3002"} +{"id": "5001406", "video_name": "5679e219-c32c-525d-ae8a-02e53e3656cc", "text": "\u798f\u5c14\u6469\u65af\u5728\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u4f26\u6566\u5bb6\u4e2d\u6f14\u594f\u5c0f\u63d0\u7434\u3002"} +{"id": "7003060", "video_name": "144fee9e-42f0-5455-92c6-9957bd0f23e2", "text": "\u5728\u7530\u91ce\u4e0a\u70e4\u725b\u8089\uff0c\u84dd\u5929\u6709\u4e9b\u4e91\uff0c\u592a\u9633\u7167\u8000\u7740\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u65cb\u8f6c\u3002"} +{"id": "6000006", "video_name": "658ee0a3-bca6-5c37-b031-03476ae74eee", "text": "\u4e00\u4e2a\u7537\u5b69\u80cc\u7740\u4e66\u5305\uff0c\u4e00\u67b6\u7eb8\u98de\u673a\u98de\u8fc7\u5929\u7a7a\uff0c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "2003069", "video_name": "a5b25027-e350-5b13-b16a-55e2c9fa1450", "text": "\u5728\u4e00\u4e2a\u5927\u800c\u7a7a\u65f7\u7684\u821e\u53f0\u4e0a\uff0c\u56f4\u7ed5\u7740\u4e00\u4e2aToastmasters\u6807\u5fd7\u6563\u6b65\u3002"} +{"id": "6004749", "video_name": "face3145-af38-5618-a26d-a7e690ad9692", "text": "\u521b\u5efa\u4e0d\u540c\u56fe\u5c42\u7684\u89c6\u9891\uff0c\u5e76\u6dfb\u52a010\u79d2\u3002"} +{"id": "6002289", "video_name": "ef23369b-8c37-5c97-bee7-71a0ab672e35", "text": "\u523b\u753b\u5361\u65af\u83ab\uff0c\u52a8\u753b\u661f\u5ea7\uff0c\u6d3b\u751f\u751f\u5730\u5448\u73b0\u5e76\u4e0e\u827e\u739b\u4e92\u52a8\u3002"} +{"id": "8002203", "video_name": "f8de01f6-91ec-5817-a497-ca7a0e20a7b3", "text": "\u58eb\u5175\u56de\u5230\u4ed6\u7684\u57fa\u5730\uff0c\u53d7\u5230\u6218\u53cb\u7684\u6b22\u8fce\u3002\u4ed6\u4eec\u6b22\u547c\u5e86\u795d\u4ed6\u7684\u6210\u529f\uff0c\u8ba4\u53ef\u4ed6\u7684\u52c7\u6c14\u548c\u97e7\u6027"} +{"id": "2005899", "video_name": "205f7bfd-234c-521e-bbae-df25dac4d0da", "text": "\u7537\u5b69\u7a7f\u7740\u8db3\u7403\u961f\u670d\u3002\u4ed6\u7684\u7956\u6bcd\u7ed9\u4e86\u4ed6\u4e00\u4e2a\u7ea2\u8272\u7684\u7cd6\u679c\u3002"} +{"id": "3004520", "video_name": "f9007bd1-e8c4-58c0-ae49-8d7ba4580932", "text": "\u5c55\u793a\u4e00\u4e2a\u660e\u4eae\u95ea\u8000\u7684\u7ea2\u8272\u82f9\u679c\u3002\u5728\u82b1\u56ed\u6216\u6811\u679d\u4e0a\u5c55\u793a\u8fd9\u4e2a\u82f9\u679c\u3002"} +{"id": "4003291", "video_name": "f11f2608-635d-5fae-a486-69ee7ee48710", "text": "\u8d85\u903c\u771f\u7684\u4ea1\u8005\u8282\u821e\u8e48\uff0c16K\u3002"} +{"id": "7004619", "video_name": "6aca45bc-c469-5b90-877e-37a39f70fa54", "text": "\u4e00\u4e2a\u6234\u5e3d\u5b50\u7684\u7537\u4eba\u5728\u9633\u5149\u4e0b\u8df3\u821e\u3002"} +{"id": "5001963", "video_name": "471a035b-986a-56f0-9236-3f6e2e98c2bd", "text": "\u52a8\u6f2b\u86cb\u7cd5\u4e0a\u63d2\u7740\u8721\u70db\uff0c\u6446\u653e\u5728\u4e00\u5f20\u8c6a\u534e\u3001\u6602\u8d35\u7684\u9910\u684c\u4e0a\u3002"} +{"id": "6002931", "video_name": "0b2e5e02-35f5-5c14-85d7-5ab2a93b1715", "text": "\u4ed6\u4eec\u4e00\u8d77\u89e6\u52a8\u4e86\u65e0\u6570\u8ffd\u6c42\u8005\u7684\u5fc3\u7075\u548c\u601d\u60f3\uff0c\u5f15\u5bfc\u4ed6\u4eec\u8d70\u4e0a\u901a\u5f80\u7cbe\u795e\u542f\u8499\u4e4b\u8def\u3002"} +{"id": "0004270", "video_name": "062d32b3-a9bb-557b-a6a2-9e45075e0bfb", "text": "\u56fd\u5bb6\n\n\u5c55\u793a\u82cf\u4e39\u963f\u9f50\u5179\u63a5\u6536\u6765\u81ea\u90bb\u56fd\u7684\u4fe1\u606f\u3002"} +{"id": "0004000", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "\u540e\u679c\u5bf9\u4e8e\u96c6\u4f53\u8bb0\u5fc6\u548c\u8eab\u4efd\u7684\u5f71\u54cd\u3002"} +{"id": "3005424", "video_name": "517c6ca1-22d5-5390-b145-c26491ad6a9c", "text": "\u4e00\u4e2a\u7a7f\u7740\u5199\u6709 VC \u5b57\u6837\u8863\u670d\u7684\u7537\u4eba\u5750\u5728\u5e8a\u4e0a\uff0c\u671b\u7740\u8fdc\u5904\u684c\u4e0a\u7684\u7535\u8111\u5c4f\u5e55\u3002"} +{"id": "2004679", "video_name": "b479a10d-10db-5045-9ccc-6602013232c5", "text": "\u6155\u660e\u6b63\u5728\u8df3\u563b\u54c8\u821e\u3002"} +{"id": "2004010", "video_name": "86b384f3-e25b-5456-8a3d-929a48d00c17", "text": "\u5361\u901a\u65b0\u95fb\u4e3b\u64ad\u5bf9\u7740\u6444\u50cf\u673a\u8bb2\u8bdd\u3002"} +{"id": "4004840", "video_name": "fb90eb64-65f9-5d08-9739-21013560d68a", "text": "\u4f0a\u68ee\u52a0\u5fb7\u653b\u51fb\u7684\u6811\u4eba\u3002\u5965\u65af\u66fc\u98ce\u683c\u3002\u6811\u4eba\u7a7f\u7740\u5934\u5dfe\u548c\u957f\u888d\u3002\u7528\u6cb9\u753b\u8868\u73b0\u3002\u54e5\u7279"} +{"id": "4004011", "video_name": "8f88332d-fb68-574a-bdad-324ffead8e74", "text": "\u5728\u5783\u573e\u7bb1\u4e0a\u7684\u4e00\u53ea\u732b\u5728\u591c\u665a\u6ce8\u89c6\u7740\u4e00\u4f4d\u8001\u4eba\u3002\n\nSource sentence: I am going to the store to buy groceries for dinner.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70"} +{"id": "1005346", "video_name": "62515e62-dfd2-5c82-a08c-0538737534fe", "text": "\u592a\u9633\u4ece\u6d77\u6d0b\u5347\u8d77\u3002"} +{"id": "0005364", "video_name": "198ce89a-ea38-571d-8e3e-7ae2a9764f22", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u4e34\u7ec8\u65f6\u7684\u89c6\u9891"} +{"id": "0004941", "video_name": "11f84e04-0afe-51aa-93f4-e5175623080c", "text": "\u91d1\u8272\u90e8\u4ef6\u5265\u843d\u4e86\u9ed1\u8272\u96d5\u50cf\u4e0a\u3002"} +{"id": "0003514", "video_name": "3ed624e0-5a1a-5db2-8c75-39795f87fb8d", "text": "\u4e00\u53ea\u8424\u706b\u866b\u72ec\u81ea\u5728\u5929\u7a7a\u98de\u884c\uff0c\u6ca1\u6709\u4eae\u5149\u3002"} +{"id": "7002437", "video_name": "fd27dd5d-4bcb-56a0-899f-ffe43ec50638", "text": "\u4e00\u4e2a\u5e7b\u60f3\u4e2d\u7684\u7ea2\u8272\u6c99\u6f20\uff0c\u5728\u591c\u665a\u9ad8\u8038\u7684\u5e73\u9876\u5c71\u5cf0\u4e0a\uff0c\u4e09\u4e2a\u5927\u5c0f\u4e0d\u540c\u7684\u6ee1\u6708\u6f02\u6d6e\u5728\u5730\u5e73\u7ebf\u4e0a"} +{"id": "6004755", "video_name": "6aa41558-f56d-547a-893b-111caf3848a1", "text": "\u63ed\u5f00\u53e4\u57c3\u53ca\u5b97\u6559\u7684\u79d8\u5bc6\u548c\u8ff7\u4eba\u7684\u521b\u4e16\u6545\u4e8b\u3002\u51c6\u5907\u597d\u88ab\u90a3\u795e\u79d8\u7684\u4e16\u754c\u6240\u8ff7\u4f4f"} +{"id": "7002463", "video_name": "5ddd6b5c-c05b-57ca-9ad9-f85570b8afe1", "text": "\u6709\u9633\u5149\u3001\u6d77\u6ee9\u548c\u9152\u5e97\uff0c\u6709\u903c\u771f\u7684\u573a\u666f\u3002"} +{"id": "1003521", "video_name": "40fe83f8-6b61-5a0c-b4c6-7920bae20347", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u7528\u624b\u673a\u81ea\u62cd\u3002\n\nSource sentence: I like to eat pizza for dinner. \n\u6211\u559c\u6b22\u665a\u9910\u5403\u6bd4\u8428\u997c\u3002"} +{"id": "8002723", "video_name": "d342284e-0027-5b2d-8526-d7c1a0b075cd", "text": "\u7535\u5f71\u9ed1\u8272\u7535\u5f71\uff0c\u96e8\u5929\uff0c\u5efa\u7acb\u955c\u5934\uff0c\u4eba\u4eec\u8d70\u5728\u57ce\u5e02\uff0c\u4e5e\u4e10\u5750\u5728\u5730\u4e0a\u3002"} +{"id": "4002582", "video_name": "14893df7-43be-5201-a43a-0f4f42b4c843", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u8272\u5f69\u4e30\u5bcc\u3001\u5706\u6da6\u53ef\u7231\u7684\u9762\u5b54\u3001\u9634\u5f71\u3001\u620f\u5267\u6027\u3001\u5168\u7403\u7167\u660e\u3001\u590d\u53e4\u8ff7\u5e7b\u6d77\u62a5"} +{"id": "3004206", "video_name": "2f37fc09-f7f3-5022-ae3c-bee81eacdc0e", "text": "\u4e00\u4f4d\u7a7f\u8457\u7d05\u8272\u88d9\u5b50\u7684\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u9a0e\u81ea\u884c\u8eca\u3002"} +{"id": "8003456", "video_name": "c7eabe0e-e7b5-529b-b881-7357a0d9f5c4", "text": "\u5173\u4e8e\u8001\u9e70\u98de\u7fd4\uff0c\u4e54\u00b7\u62dc\u767b\u624b\u6301A.R.15\u6b65\u67aa\u3002"} +{"id": "4004701", "video_name": "a42c7951-7461-55b7-9ac9-a3014a0202ba", "text": "\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u6234\u7740\u9ed1\u8272\u773c\u955c\uff0c\u9f50\u80a9\u77ed\u53d1\u5fae\u7b11\u7740\u8d70\u8def\u3002"} +{"id": "3003824", "video_name": "3bd7e425-c6b3-5d26-a64e-0808f542b47f", "text": "\u6df1\u6d77\u91cc\u4e00\u53ea\u9cb8\u9c7c\u5728\u7537\u5b69\u8eab\u8fb9\u6e38\u6cf3\u3002"} +{"id": "2004636", "video_name": "8a33afb9-9fe3-5428-bb63-ba43a75af159", "text": "\u53e4\u65af\u548c\u6770\u897f\u5728\u300a\u7edd\u547d\u6bd2\u5e08\u300b\u4e2d\u6253\u67b6\u3002"} +{"id": "3003059", "video_name": "31bf20c2-6cd9-5375-b920-602ebffc8b6e", "text": "\u4e00\u4e2a\u6751\u5e84\u7684\u5988\u5988\u5728\u505a\u996d\u5e76\u5fae\u7b11\u7740\u3002"} +{"id": "3006250", "video_name": "0e538da8-ae7f-5ca9-9ac0-597d9b26be55", "text": "\u5361\u901a\u5316\u7684\u7537\u5b69\u548c\u5973\u5b69\u76f8\u7231\u4e86\u3002"} +{"id": "1005548", "video_name": "662c2b2c-49e3-51d7-8b8e-15108379eacb", "text": "\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u5728\u7535\u5f71\u300a\u63a0\u593a\u8005\u300b\u4e2d\u5728\u4e1b\u6797\u91cc\u3002"} +{"id": "1005118", "video_name": "5e5eeb7d-933f-5b31-bbba-2cac46170493", "text": "\u5df4\u6bd4\u4f26\u82b1\u56ed\u7535\u5f71\u6050\u60161970\u5e74\u6781\u9650"} +{"id": "1005055", "video_name": "5d6f1d64-e913-522f-b3e7-4beb9739e7ea", "text": "\u7279\u6717\u666e\u4ece\u8b66\u5bdf\u9003\u8dd1\u7684\u52a8\u753b"} +{"id": "0005977", "video_name": "244935f4-7f37-5db0-a991-1e480e7ffe3b", "text": "\u4e09\u7ef4\u7b49\u8ddd\u89c6\u89d2\u4e0b\u7684\u8302\u5bc6\u5916\u661f\u4e1b\u6797\uff0c\u6696\u8272\u8c03\uff0c32K\u5206\u8fa8\u7387\uff0c\u5b9a\u5411\u5149\u7167\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u58ee\u89c2"} +{"id": "2004017", "video_name": "53232b7d-7918-58db-94f3-23cf5df5bf54", "text": "\u4e00\u4e2a\u5c0f\u5b66\u751f\u4ece\u88ab\u5b50\u91cc\u94bb\u51fa\u6765\uff0c\u6253\u5f00\u7535\u8111\uff0c\u73a9\u4e00\u4e2a\u53ef\u7231\u7684\u65e5\u672c\u5361\u901a\u98ce\u683c\u7684\u6e38\u620f\u3002"} +{"id": "6002426", "video_name": "b2690513-fdaf-50d3-9d8b-20dcae1be92c", "text": "\u9ad8\u5c14\u592b\u7403\u5728\u65b0\u9c9c\u4fee\u526a\u7684\u7403\u573a\u4e0a\u6eda\u52a8\u3002"} +{"id": "8002100", "video_name": "8bfefc24-ebcc-5996-ac3c-fc644a59ac5c", "text": "\u7537\u4eba\u6234\u7740\u592a\u9633\u5f62\u9762\u5177\uff0c\u5d07\u62dc\u592a\u9633\uff0c\u4e54\u591a\u6d1b\u592b\u65af\u57fa\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "6003102", "video_name": "38f1a155-d199-5e70-8b03-bc6094577c96", "text": "\u52a8\u6f2b\u4e2d\u7684\u53ef\u7231\u5973\u5b69\u5728\u5f3a\u98ce\u4e2d\u3002"} +{"id": "0004810", "video_name": "0f82bb15-d9fc-5678-8dfd-3d4c99ad907b", "text": "\u4e00\u67b6\u6218\u6597\u673a\u51fb\u843d\u4e86\u4e00\u67b6\u76f4\u5347\u673a\u3002"} +{"id": "3003672", "video_name": "b617fde8-85de-5564-bd1f-e8317e5f2459", "text": "\u673a\u68b0\u4eba\u5de5\u5fc3\u810f\u6bcf\u79d2\u8df31\u6b21\u3002"} +{"id": "3005917", "video_name": "e4f4bdbf-fa0d-557c-a489-c29792d17673", "text": "\u6d77\u6d0b\u65e5\u843d\u666f\u8c61\uff0c\u4e00\u825816\u4e16\u7eaa\u7684\u8239\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u5b57\u4f53\u4e3a\u73b0\u4ee3\u5b57\u4f53\uff1a\u201c\u4fdd\u6301\u5b89\u9759\u201d\u3002"} +{"id": "8002889", "video_name": "06efec77-7e8a-524d-abc6-df9eeacfe2b0", "text": "\u8d5e\u6bd4\u4e9a\u524d\u603b\u7edf\u57c3\u5fb7\u52a0\u00b7\u4f26\u53e4\u5148\u751f"} +{"id": "8002732", "video_name": "fc196d00-1178-5bb3-b0d0-4126161fddaa", "text": "\u8f7b\u67d4\u7684\u96ea\u82b1\u7f13\u7f13\u98d8\u843d\u5728\u5b81\u9759\u7684\u6751\u5e84\u4e0a\uff0c\u6e29\u6696\u7684\u706f\u5149\u4ece\u8212\u9002\u7684\u5c0f\u5c4b\u7a97\u6237"} +{"id": "8001672", "video_name": "7c0cbede-1af5-5ac0-87c6-ec2f91658501", "text": "\u4e00\u4e2a\u5230\u5904\u90fd\u662f\u73bb\u7483\u7684\u88ab\u70b8\u6bc1\u7684\u57ce\u5e02\u3002"} +{"id": "2005168", "video_name": "3762db7d-3d4e-5e65-9878-7af876722f06", "text": "\u4e00\u53ea\u5bb6\u8747\u964d\u843d\u5728\u4e00\u676f\u5496\u5561\u4e0a\u3002"} +{"id": "3003164", "video_name": "0bc10a17-e6e6-5579-a3ae-1bfdacf263b2", "text": "\u6218\u4e89\u3002\u4fe1\u606f\uff1aHNY 2024\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001022", "video_name": "2369bfcb-b561-5cae-a945-0bc7bd2d4db1", "text": "\u5bfc\u6f14\u4e0e\u52a8\u753b\u5e08\u548c\u6280\u672f\u4eba\u5458\u8ba8\u8bba\u4e86\u7535\u5f71\u4e2d\u8981\u4f7f\u7528\u7684\u7247\u6bb5\u3002"} +{"id": "0005712", "video_name": "1ff64813-6a16-5ae9-852a-566831195416", "text": "\u7537\u5b69\u7684\u5f62\u8c61\u51fa\u73b0\u5728\u70df\u96fe\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004413", "video_name": "3ddeb89f-820b-586f-bc7a-6233c13e8c9c", "text": "\u52a8\u753b\u3001\u6218\u6597\u3001\u66b4\u529b\u3001\u767d\u9b54\u6cd5\u4e0e\u9ed1\u9b54\u6cd5\uff0c\u4f7f\u7528\u4e66\u7c4d\u65bd\u653e\u4e0d\u540c\u7684\u5492\u8bed\u3002"} +{"id": "0005602", "video_name": "1dcec45e-c589-5d57-998a-1e7c4f8db8c5", "text": "\u4eba\u5f62\u667a\u80fd\u4f53\u5728\u706b\u4e0a\u770b\u7535\u5f71\u3002"} +{"id": "8001215", "video_name": "d5dba0d9-cb09-5d69-84ee-432f93fc8a9c", "text": "\u4e3aTwitch VICIUS JUEGA\u521b\u5efa\u4e2a\u4eba\u8d44\u6599\u3002"} +{"id": "6002906", "video_name": "371295c6-5489-53ff-a00c-c4be269faba4", "text": "\u89c6\u9891\u5f00\u5934\uff0c\u4e3b\u89d2\u7531\u6b4c\u624b\u626e\u6f14\uff0c\u5728\u4e00\u4e2a\u666e\u901a\u7684\u623f\u95f4\u91cc\u5750\u7740\u3002\u706f\u5149\u51b7\u6de1\uff0c\u5899\u58c1\u4e2d\u6027\u3002\u97f3\u4e50\u8f7b"} +{"id": "0006914", "video_name": "353bc774-8fbc-5dc5-b1a9-901181605c9b", "text": "\u5728\u9ec4\u91d1\u5bab\u6bbf\u7684\u8f89\u714c\u4e2d\uff0c\u4fe1\u4efb\u7684\u987e\u95ee\u585e\u62c9\u82ac\u5a1c\u592b\u4eba\u4e0e\u56fd\u738b\u96f7\u91d1\u7eb3\u5fb7\u6df1\u5165\u4ea4\u8c08\u3002\u4ed6"} +{"id": "3006499", "video_name": "d6a6100c-29ce-5d5c-8cae-213296c606d6", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6708\u5149\u4e0b\u7a7f\u8fc7\u4e00\u7247\u53e4\u8001\u7684\u68ee\u6797\u3002\u54e5\u7279\u5f0f\u5947\u5e7b\u3002"} +{"id": "8003866", "video_name": "e3a45cff-d252-524a-bfa6-035455cfab59", "text": "\u4e1b\u6797\u7684\u6811\u53f6\u548c\u9e1f\u513f\uff0c\u8001\u864e\u548c\u5176\u4ed6\u52a8\u7269\u3002 \u9644\u4ef61\u3002"} +{"id": "3006141", "video_name": "2e9008aa-fc78-501c-a0d0-c84896489d9e", "text": "\u7edd\u5730\u5927\u6218\u897f\u65af\uff0c\u5149\u5251\u51b3\u6597\u3002"} +{"id": "5001802", "video_name": "d5308c8c-a74e-5ed8-becb-737bdf45d693", "text": "\u732b\u5934\u9e70\u62cd\u6253\u7740\u7fc5\u8180\u98de\u884c\u3002"} +{"id": "0004877", "video_name": "10c71bf6-0533-5601-be96-e97565c92d1f", "text": "\u5728\u7ebf\u8d2d\u7269\u7f51\u7ad9\u7684\u80cc\u666f\u89c6\u9891"} +{"id": "1005721", "video_name": "6947144a-3d22-55ce-8e73-3134de69d60c", "text": "\u4e24\u4e2a\u5e74\u8f7b\u5973\u5b50\u5728\u670d\u88c5\u5e97\u91cc\u3002 \n\nSource sentence: Can I have a glass of water, please? \n\u8bf7\u7ed9\u6211\u4e00\u676f\u6c34\uff0c\u597d\u5417\uff1f"} +{"id": "0004961", "video_name": "12477482-d973-52e3-9d45-4172b0a149b4", "text": "\u5728\u5496\u5561\u9986\u91cc\uff0c\u5e74\u8f7b\u7684\u7537\u5b50Day\u559d\u7740\u5496\u5561\uff0c\u4ed6\u8eab\u540e\u662f\u4e00\u6247\u5927\u7a97\u6237\uff0c\u7a97\u6237\u91cc\u9690\u7ea6\u53ef\u89c1\u6591"} +{"id": "8001805", "video_name": "3ff12fbc-8d64-5764-8b64-5952af426d43", "text": "\u73b0\u5b9e\u7ec6\u8282\u7b80\u5355\u7684\u623f\u5b50\u72ec\u81ea\u5750\u843d\u5728\u68ee\u6797\u4e2d\u7684\u6811\u6797\u91cc\u3002"} +{"id": "8002379", "video_name": "6fe19eb9-a83a-52de-ba85-9c8f70ebb6e7", "text": "\u4e00\u4e2a\u9ed1\u6d1e\u548c\u4e00\u4e2a\u4e2d\u5b50\u661f\u5728\u4eb2\u5bc6\u63a5\u8fd1\u3002"} +{"id": "8002612", "video_name": "6d51e85d-d243-518d-951b-a9aec9b9ef28", "text": "\u6050\u9f99\u4eec\u7a7f\u7740\u9a6c\u91cc\u4e9a\u5947\u88c5\uff0c\u5f39\u7740\u5409\u4ed6\uff0c\u5728\u4e00\u573a\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\uff0c\u6709\u86cb\u7cd5\u3001\u5f69\u5e26"} +{"id": "2005695", "video_name": "aacea071-3ab4-5f50-941f-a7c8256935a9", "text": "\u5728\u4e1b\u6797\u4e2d\u7684\u5976\u916a\uff0c\u4e00\u5e45\u62bd\u8c61\u6cb9\u753b\uff0c9:16\u5782\u76f4\u683c\u5f0f\u3002"} +{"id": "0006138", "video_name": "2727c4ae-5ef2-5c1e-be72-bb2f08d197bf", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u8001\u592a\u592a\u548c\u8001\u5934\u5b50\u7684\u7535\u5f71"} +{"id": "4003629", "video_name": "46e6e309-9a1d-5e7c-8f46-13690c883456", "text": "\u52a8\u6f2b\u3001\u9003\u907f\u6cd5\u5f8b\u3001\u97f3\u4e50\u89c6\u9891\u3001Motion 4\u3002"} +{"id": "2007127", "video_name": "c9495ccf-6865-5303-9f42-dcc39ea7eeb5", "text": "\u8f9b\u57ce\u98ce\u683c\u3002\u9a6c\u592b\u5728\u8857\u4e0a\u884c\u8d70\u3002"} +{"id": "2003408", "video_name": "a19e80bf-f919-5571-a5ea-58296140f791", "text": "\u4e00\u53ea\u6050\u9f99\u5728\u6d77\u91cc\u6e38\u6cf3\u5486\u54ee\u3002"} +{"id": "6002782", "video_name": "dea59f25-8387-5b22-acab-105a2a7d7305", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u4e16\u7eaa\u5e02\u96c6\uff0c\u5feb\u4e50\u7684\u4eba\u4eec\u548c\u5b69\u5b50\u4eec\u5728\u73a9\u800d\u3002"} +{"id": "3004658", "video_name": "058b6f71-240b-577d-83cb-4fad7bb9c528", "text": "\u4eba\u7ad9\u5728\u6c38\u6052\u7684\u8fb9\u7f18\uff0c\u5de8\u5927\u7684\u60ac\u5d16\u4e0b\u6d77\u6d6a\u62cd\u6253\u3002"} +{"id": "0004826", "video_name": "0fe16476-ac45-56bb-a8f5-3ff51abd4792", "text": "\u4e00\u4e2a\u5973\u5b69\u54ed\u6ce3\uff0c\u5979\u7684\u773c\u6cea\u521b\u9020\u4e86\u6d77\u6d0b\u3002\n\nSource sentence: Life is like a camera, focus on the good times, develop from the negatives, and if things don't work"} +{"id": "3004482", "video_name": "b7f0a67c-40e1-5d38-8874-9c9c8fdd49c8", "text": "\u4e00\u4e2a\u7a7f\u7740\u7eff\u8272\u8fd0\u52a8T\u6064\u7684\u57c3\u53ca\u7537\u5b69\u5728\u4f53\u80b2\u573a\u8e22\u8db3\u7403\u3002"} +{"id": "4004564", "video_name": "9866af61-56f3-51d6-ad5f-d8535febab11", "text": "\u4e00\u4e2a\u5b9d\u7bb1\u6253\u5f00\u5e76\u4e14\u51fa\u73b0\u91d1\u3001\u95ea\u5149\u548c\u94bb\u77f3\u7684\u52a8\u753b\u3002"} +{"id": "0004235", "video_name": "058bf298-e5f9-5ddd-a182-c73948a0903f", "text": "\u52fe\u8d77\u597d\u5947\u5fc3\uff0c\u6d1b\u857e\u83b1\u6df1\u5165\u753b\u4e2d\uff0c\u53d1\u73b0\u81ea\u5df1\u7f6e\u8eab\u4e8e\u4e00\u4e2a\u4ee4\u4eba\u7740\u8ff7\u7684\u68a6\u5883\u4e2d\uff0c\u8272\u5f69"} +{"id": "5001567", "video_name": "3f5c420f-2f63-50ca-9c97-2bc966d4371c", "text": "\u4e00\u95f4\u6709\u5b66\u751f\u5728\u4eab\u53d7\u5348\u9910\u7684\u5b66\u6821\u98df\u5802\u3002"} +{"id": "1003641", "video_name": "431bd7f1-7d9c-5212-81a5-88793329f130", "text": "\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u90a3\u91cc\u4e00\u540d\u98ce\u66b4\u5175\u6b63\u5728\u672a\u6765\u611f\u5168\u7684\u5168\u606f\u663e\u793a\u5c4f\u4e0a\u9605\u8bfb\u6700\u65b0\u7684\u547d\u4ee4\u3002"} +{"id": "1005263", "video_name": "60d36bf9-c2c1-547d-b21f-f5bde0799ccf", "text": "\u5927\u578b\u98df\u4eba\u9b5a\u8df3\u51fa\u4e9e\u99ac\u905c\u6cb3\uff0c\u54ac\u4f4f\u4e00\u8258\u53e2\u6797\u904a\u8f2a\uff0c\u903c\u771f\u3001\u5c45\u4e2d\u3001\u6232\u5287"} +{"id": "0004577", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "\u4eca\u5929\u5b8c\u5168\u6839\u636e\u6700\u5438\u5f15\u5473\u857e\u7684\u83dc\u80b4\u6765\u9009\u62e9\u8981\u53bb\u54ea\u4e00\u5bb6\u9910\u5385\uff0c1080P\uff0c\u9ad8\u8d28\u91cf\uff0c\u6f2b\u753b\u3002"} +{"id": "8003612", "video_name": "db1f0985-c5bf-5ede-9700-36eaba38fc21", "text": "\u5927\u821e\u53f0\u914d\u5907\u66f4\u591a\u97f3\u4e50\u5668\u6750\u3002\u4fe1\u606f\uff1aTanya\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002590", "video_name": "45036334-0b06-50c8-ac6e-d78d283922a5", "text": "\u53f0\u6e7e\u5973\u8b66\u5728\u6811\u4e0b\u3001\u68ee\u6797\u91cc\u8c03\u67e5\u8bc1\u636e\uff0c\u53cc\u5cf0\u9547\u98ce\u683c\u3002"} +{"id": "6003537", "video_name": "d412827c-972d-50a8-a6d7-b82cd3339b94", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u5168\u767d\u8272\u7684\u9e1f\u53eb\u505a\u9e26\u7247\u9e1f\uff0c\u5728\u5357\u6781\u7684\u5bd2\u51b7\u548c\u82d4\u539f\u5730\u5e26\u8bb0\u5f55\u5230\u4e86\u4e00\u5b9a\u8ddd\u79bb"} +{"id": "3004895", "video_name": "e13906c4-4c2c-5809-aa6e-af16a7320607", "text": "\u4e00\u4e2a\u62e5\u6709\u5de8\u5927\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u548c\u5728\u96ea\u5929\u4e2d\u7ff1\u7fd4\u7684\u6c7d\u8f66\u7684\u57ce\u5e02\u3002"} +{"id": "0006622", "video_name": "2fb8ba55-13fb-51c2-80bc-c59121b2537d", "text": "\u4e2d\u4e16\u7eaa\u9152\u9986\u5c31\u50cf\u5728\u5deb\u5e08\u6e38\u620f\u4e2d\u3002"} +{"id": "4002311", "video_name": "c4605ad4-70fc-555e-a3a1-6d78b4e058c4", "text": "\u4e00\u5bf9\u76f8\u7231\u7684\u8001\u592b\u5987\u5728\u6d77\u8fb9\u65e5\u843d\u65f6\u6563\u6b65\u3002"} +{"id": "8001888", "video_name": "ea372707-44aa-5a22-bd87-9de994a3c90d", "text": "\u5979\u73b0\u5728\u662f\u4e00\u4e2a\u8bb2\u6545\u4e8b\u7684\u4eba\uff0c\u770b\u7740\u6d77\u5cb8\u6751\u5e84\u7684\u843d\u65e5\u30023D\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "0003718", "video_name": "424ea1b0-c32f-5970-b455-d65cb7534d0a", "text": "\u4e00\u4e2a\u5973\u5de5\uff0c\u5728\u8f66\u95f4\u91cc\u6495\u5f00\u4e00\u4e2a\u73a9\u5076\u3002"} +{"id": "0006486", "video_name": "2d51f36f-0d53-50be-989d-91a9c68a53cd", "text": "\u54e5\u7279\u5f0f\u6b4c\u624b\u5728\u6f14\u5531\u4f1a\u4e0a\u5411\u4eba\u7fa4\u5531\u6b4c\u3002"} +{"id": "4003688", "video_name": "e8b50bb9-3b8f-5c5f-8d79-abd3904d496c", "text": "\u795e\u76fe\u6218\u58eb\u673a\u5668\u4eba\u5e26\u6709GIRS\u8d34\u7eb8\u3002"} +{"id": "0003410", "video_name": "3d30b79b-130f-5da6-8000-b1f09b35e1f3", "text": "\u5feb\u4e50\u7684\u9ec4\u8272\u6587\u9e1f\u8df3\u821e\uff0c\u84dd\u8272\u4fc4\u7f57\u65af\u732b\u542c\u7740\u6447\u6eda\u97f3\u4e50\u3002"} +{"id": "3003822", "video_name": "799ceca6-58c3-5cb1-b311-a59beb4b12e0", "text": "\u963f\u5468\u90a3\u5728\u5fb7\u7f57\u7eb3\u7684\u5e2e\u52a9\u4e0b\u7ec3\u4e60\u5c04\u7bad\u3002"} +{"id": "0004861", "video_name": "10735853-8488-5e05-94a3-4167dd1842df", "text": "\u4ece\u4e91\u6735\u4e2d\u4f38\u51fa\u4e00\u53ea\u5de8\u624b\u5411\u5730\u9762\u5ef6\u4f38\uff0c\u9ed1\u6697\u7684\u5730\u65b9\u88ab\u4e00\u540d\u5c0f\u4eba\u4ef0\u671b\u65f6\u7167\u4eae\u4e86\u3002"} +{"id": "7004633", "video_name": "ad9842a3-a125-52ac-a95c-3bd5faa0649d", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u7b80\u77ed\u7684\u7231\u60c5\u6545\u4e8b\uff0c\u5e26\u6709\u4e00\u70b9\u60c5\u611f\u3001\u60b2\u4f24\u3001\u5fc3\u788e\u548c\u4e00\u4e2a\u5e78\u798f\u7684\u7ed3\u5c40\u3002\u6211\u60f3\u901a\u8fc7\u8fd9\u4e2a"} +{"id": "2004705", "video_name": "95bde019-42f4-5f64-b2f1-df2caa92a24d", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u9633\u53f0\u4e0a\u653e\u7f6e\u4e00\u5c01\u4fe1\u7684\u7167\u7247\u3002"} +{"id": "1004352", "video_name": "5045b2d8-67ed-5528-8988-741574e6133d", "text": "\u5728\u4e61\u6751\u666f\u89c2\u4e2d\uff0c\u57c3\u7c73\u5229\u4e9a\u8bfa\u00b7\u8428\u5e15\u5854\u548c\u519c\u6c11\u4e00\u8d77\u5de5\u4f5c\uff0c\u4fdd\u536b\u4ed6\u4eec\u7684\u571f\u5730\u3002\u8fd9\u7a81\u663e\u4e86\u4ed6"} +{"id": "8003541", "video_name": "d02796af-1b7d-563f-9d92-591b404d7987", "text": "\u5c55\u793a\u4e00\u4e2a\u53e4\u5e0c\u814a\u5f3a\u58ee\u7684\u7537\u4eba\u5728\u4f20\u7edf\u7684\u4f53\u80b2\u9986\u5c55\u793a\u4ed6\u7684\u8eab\u4f53\u5b9e\u529b\u3002"} +{"id": "3003952", "video_name": "77a0f7e8-0e79-5527-840d-ebe37005a1c6", "text": "\u68ee\u6797\u7684\u6781\u8fd1\u7279\u5199\u5728\u773c\u4e2d\u5012\u6620\uff0c\u50cf\u300a\u9b54\u6212\u300b\u7535\u5f71\u98ce\u683c\uff0c\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "1004905", "video_name": "5abf28b1-10c8-5169-a59f-ba1d0d64a004", "text": "\u56db\u4eba\u88ab\u5899\u58c1\u7d27\u7d27\u56f4\u4f4f\u3002"} +{"id": "8002697", "video_name": "4cae6da4-1b61-5c6d-be34-931a91df6f95", "text": "\u75288k\u7535\u5f71\u98ce\u683c\u521b\u9020\u51fa\u4e00\u5339\u4ece\u4e91\u4e2d\u51fa\u73b0\u7684\u767d\u9a6c\u7684\u5f62\u8c61\u3002"} +{"id": "4004688", "video_name": "7352a678-5acd-5a06-aa6c-989413355f41", "text": "\u5728\u9ed1\u6697\u7684\u5df7\u5b50\u91cc\u6709\u4eba\u559d\u5496\u5561\u3002"} +{"id": "0004328", "video_name": "0742e434-68f0-570e-8570-bbc581ed030f", "text": "\u4e00\u4e2a\u6709\u68d5\u8272\u5934\u53d1\u7684\u7537\u4eba\u6b63\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "6000003", "video_name": "a940f70e-795f-5f28-a333-3807defd9b0c", "text": "\u57ce\u5e02\u7684\u8857\u666f \u9003\u79bb (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7003927", "video_name": "06d884cb-3e67-5842-af74-5b60a343d814", "text": "\u4e00\u6bb570\u79d2\u7684\u98df\u8c31\u89c6\u9891\u3002"} +{"id": "0004286", "video_name": "065e1508-1a9b-577c-835d-f91547d692f3", "text": "\u7537\u4eba\u5750\u5728\u684c\u5b50\u524d\uff0c\u6234\u7740\u8033\u673a\u63a5\u7535\u8bdd\u3002"} +{"id": "2006380", "video_name": "90016dd0-287f-50fb-b0d2-f66923238489", "text": "\u62e5\u6324\u7684\u8857\u9053\u3002\u4fe1\u606f\uff1a\u79d8\u5bc6\u3002"} +{"id": "4003262", "video_name": "736acf8a-5b0f-57e2-b5c0-f1e7a4833df2", "text": "\u8ba9\u4f5b\u50cf\u7684\u5634\u5df4\u8bf4\u8bdd\u3002"} +{"id": "7003875", "video_name": "0daa9671-9a31-5275-82af-999be1e509ca", "text": "\u5728\u8584\u8377\u7eff\u8272\u88d9\u5b50\u4e2d\u505a\u963f\u62c9\u4f2f\u5f0f\u821e\u8e48\u7684\u82ad\u857e\u821e\u8005\u3002"} +{"id": "1004076", "video_name": "4b8dc3af-6b41-5a28-8286-e6801b72c456", "text": "\u5728\u68ee\u6797\u4e2d\u72c2\u6b22\uff0c\u5728\u5916\u661f\u4eba\u548c\u6b66\u58eb\u7684\u5305\u56f4\u4e0b\uff0c\u50cf\u75af\u72c2\u7684\u9ea6\u514b\u65af\u4e00\u6837\u3002"} +{"id": "8002643", "video_name": "3f2f668f-4e6a-5bbf-a1d0-39e56d18615e", "text": "\u6811\u53f6\u53d8\u5f62\u6210\u4eba\u7fa4\u3002"} +{"id": "8002517", "video_name": "81376a96-240f-5f09-875e-8c42265d07ea", "text": "\u5723\u8bde\u8282\u6536\u5230\u4ed6\u4eec\u60f3\u8981\u7684\u4e1c\u897f\u7684\u4eba\u4eec"} +{"id": "7003242", "video_name": "775edb6e-5cd9-5ae1-981a-f941e41f7381", "text": "\u4e00\u4e2a\u7537\u5b69\u9a7e\u9a76\u6c7d\u8f66\u7684\u8fea\u58eb\u5c3c3D\u52a8\u753b"} +{"id": "2003830", "video_name": "db8a0cf5-c5b4-5d42-96f6-a8db3624b1a0", "text": "\u4ecb\u7ecd\u8fd9\u4e2a\u89d2\u8272\uff0c\u963f\u54c8\u8fc8\u5fb7\uff0c\u4e00\u4e2a\u7a7f\u7740\u7b80\u6734\u957f\u888d\u3001\u624b\u6301\u7977\u5e2d\u8d70\u5165\u68ee\u6797\u7684\u548c\u5e73\u4e3b\u4e49\u8005\u3002"} +{"id": "7002252", "video_name": "e7e389d5-6c59-583a-ad51-46201ef936f7", "text": "3D\u52a8\u753b\u6240\u6709\u5c0f\u52a8\u7269\u5954\u8dd1\u3002"} +{"id": "7002168", "video_name": "bbfbf600-0f5e-5b03-9203-8fa54204b233", "text": "\u91ce\u751f\u98ce\u683c\uff0c\u4e00\u53ea\u72ee\u5b50\u5411\u955c\u5934\u5954\u8dd1\u3002"} +{"id": "7002773", "video_name": "d6573164-9c18-5387-b9b3-5d0e1f27d8f1", "text": "\u4e00\u5c0f\u76d2\u70b8\u9e21\uff0c\u80cc\u666f\u662f\u9c9c\u8273\u7c89\u8272\u9713\u8679\u706f\u3002"} +{"id": "0003765", "video_name": "42f0cfa1-a0b5-5acd-9a3f-0555b6406d1a", "text": "\u6700\u540e\u4e00\u573a\u677f\u7403\u6bd4\u8d5b\u4e2d\u9886\u5e26\u7684\u8c61\u5f81\u610f\u4e49\u53ca\u5176\u5bf9\u6751\u6c11\u7684\u610f\u4e49\u3002"} +{"id": "1003315", "video_name": "3d15be96-ebbd-5321-9be9-ca657f634de1", "text": "\u68ee\u6797\uff0c\u65e9\u6668\uff0c\u9633\u5149\u7a7f\u8fc7\u6811\u6797\uff0c\u96fe\u6c14\u5f25\u6f2b\uff0c\u5e26\u7740\u51b0\u971c\u3002\u51b0\u4e0a\u7684\u7687\u5bb6\u3002"} +{"id": "6002222", "video_name": "b84bc82e-f612-5e7f-91cd-86149ba7deba", "text": "VHS\u9897\u7c92\u72b6\u768470\u5e74\u4ee3\u98ce\u683c\u524d\u666f\u89c6\u56fe\uff0c\u663e\u793a\u4e86\u4e00\u7247\u9ed1\u8272\u6e56\u6cca\uff0c\u6811\u6728\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u6e56\u9762\u4e0a\u8361"} +{"id": "0006652", "video_name": "306ad2e4-7ffc-5e4f-aa10-7871cb863b96", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u76844K\u7279\u5199\u955c\u5934\u3002"} +{"id": "1005080", "video_name": "5dab9034-bfa9-57ca-a29f-3ac47e993e36", "text": "\u72d7\u5728\u5feb\u4e50\u7684\u5bb6\u4e2d\u50cf\u4eba\u7c7b\u4e00\u6837\u751f\u6d3b\u3002"} +{"id": "7004035", "video_name": "e662adab-1f58-5bef-927c-0e7cc02ba1dd", "text": "\u6d77\u76d7\u738b\uff1a\u52a0\u52d2\u6bd4\u6d77\u76d7\uff0c\u8239\u957f\u6770\u514b\u6b63\u9a7e\u9a76\u9ed1\u73cd\u73e0\u53f78K\u8239\u3002"} +{"id": "7003218", "video_name": "536df0ce-f073-5f36-8be8-e632cf365e4a", "text": "\u4e03\u5341\u5e74\u4ee3\u79d1\u5e7b\u98ce\u683c\u7684\u7ea2\u8150\u4e16\u754c"} +{"id": "7004858", "video_name": "e1e4bae4-d518-554c-9fce-f131ba9139f9", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u84dd\u773c\u775b\u7537\u4eba"} +{"id": "1006145", "video_name": "70961f6e-63fb-5f28-b79b-1f960079363b", "text": "VB.Net\u52a8\u6f2b\u98ce\u683c\u7684\u5e38\u91cf\u548c\u53d8\u91cf\u89c6\u9891\u3002"} +{"id": "3003741", "video_name": "16bb6ae5-73e2-59b0-a5c4-355b8bb4edc3", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u955c\u5b50\u524d\uff0c\u4f46\u4ed6\u7684\u53cd\u5c04\u662f\u4e00\u4e2a\u4e0d\u540c\u7684\u4eba\uff0c\u4ee53D\u5361\u901a\u98ce\u683c\u5448\u73b0\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2004537", "video_name": "a24f4c96-6403-5336-aa12-7757e85fdabf", "text": "\u5e03\u5076\u732b\u4f38\u5c55\u8eab\u4f53\uff0c\u8fea\u58eb\u5c3c3D\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "5001223", "video_name": "4c68f4ba-d8ee-5bf6-bfe1-060aa895969d", "text": "\u7167\u7247\u975e\u5e38\u8fd1\u8ddd\u79bb\u5730\u6355\u6349\u5230\u4e86\u75d8\u75d8\u7206\u88c2\u7684\u8fc7\u7a0b\u3002"} +{"id": "0005019", "video_name": "1353d20e-121b-54c1-9ea3-ad824b394d44", "text": "\u5b5f\u4e70\u8857\u5934\u7684\u591c\u5e02\u3002\u4fe1\u606f\uff1aSADUBAS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002807", "video_name": "eb34dab0-62c9-5273-8288-8c2ae3b8d538", "text": "\u77f3\u69b4\u548c\u6c34\u4ed9\u82b1\u3002\u620f\u5267\u5316\u3001\u9ed1\u6697\u3001\u7535\u5f71\u5316\u3001\u7f8e\u4e3d\u3001\u827a\u672f\u3001\u903c\u771f\u3002"} +{"id": "0003537", "video_name": "3f23df41-eeda-5f38-b7da-9914e8b40598", "text": "\u4e00\u4e2a\u4e0b\u7740\u96e8\u7684\u591a\u4e91\u4e4b\u591c\u6709\u7f8e\u4e3d\u7684\u540e\u9662\u95e8\u5eca\u548c\u82b1\u56ed"} +{"id": "1006686", "video_name": "7a9630e0-9d99-5bd8-92b0-a668eea80a9a", "text": "\u4e16\u754c\u4e0a\u6709\u975e\u51e1\u7684\u4eba\u624d\uff0c\u4e5f\u6709\u975e\u51e1\u7684\u4eba\u624d\u53d1\u6398\u8005\u3002\u975e\u51e1\u7684\u4eba\u624d\u6216\u8bb8\u4e0d\u5c11\u89c1\uff0c\u4f46\u662f\u975e\u51e1\u7684\u4eba\u624d"} +{"id": "0003135", "video_name": "37d16220-3d69-59af-80f4-93c766471277", "text": "\u7a7f\u7740\u767d\u8272\u5e0c\u814a\u957f\u888d\u7684\u7537\u5b50\u5728\u96f7\u66b4\u4e2d\u6446\u59ff\u52bf\uff0c\u8863\u670d\u98d8\u52a8\u3002"} +{"id": "1003842", "video_name": "46cea098-e181-51aa-8e78-9494735a9774", "text": "\u89c6\u9891\u5c55\u793a\u4e86\u672a\u6765\u519c\u4e1a\u4f7f\u7528\u65e0\u4eba\u673a\u548c\u81ea\u4e3b\u673a\u5668\u4eba\u8fdb\u884c\u64ad\u79cd\u3001\u4f5c\u7269\u7ba1\u7406\u548c\u6536\u83b7\u3002"} +{"id": "2006194", "video_name": "08ec6679-8eb9-5a1c-8335-039d3bc85c41", "text": "\u5f00\u8f66\u5728\u8def\u4e0a\uff0c\u4e00\u8f86\u571f\u661f\u8f7f\u8f66\u5728\u65e5\u843d\u65f6\u5206\u6cbf\u7740\u52a0\u5229\u798f\u5c3c\u4e9a\u6d77\u5cb8\u5de1\u822a\uff0c\u68d5\u6988\u6811\u5728\u5fae"} +{"id": "1006836", "video_name": "7cffe686-3cc2-56b5-b9c9-d3c6d0b26adf", "text": "\u7537\u5b50\u5c06\u82b1\u6735\u629b\u5411\u7a7a\u4e2d\u7684\u5b50\u5f39\u65f6\u95f4\u7167\u7247\uff0c\u76f8\u673a\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "4002547", "video_name": "3c37ba0a-cab7-5853-b198-119538de70b5", "text": "\u65e7\u4f26\u6566\uff0c\u7ef4\u591a\u5229\u4e9a\u88c5\u675f\uff0c\u4ee5\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "0006618", "video_name": "2f9bb35d-47cd-552f-9b3b-65031af5780c", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u6709\u4e00\u4e2a\u60a3\u8005\u51fa\u73b0\u4ee5\u4e0b\u75c7\u72b6\uff1a\u53d1\u70e7\u3001\u5173\u8282\u75bc\u75db\u3001\u5934\u75db\u3001\u80cc\u75db\u3001\u8179"} +{"id": "7002253", "video_name": "f2ad46db-da6a-5ae9-8ed1-94c36258e62c", "text": "\u4e00\u95f4\u623f\u95f4\u91cc\u6709\u4e00\u628a\u5409\u4ed6\u3001\u4e00\u5957\u9f13\u548c\u4e24\u67b6\u94a2\u7434\u3002"} +{"id": "6002821", "video_name": "090874cc-a96b-5fb3-b7bf-74a0ed6683df", "text": "\u5728\u591c\u665a\u7684\u7a7a\u65f7\u9053\u8def\u4e0a\u6709\u4e2a\u9b3c\u62a4\u58eb\u3002"} +{"id": "0005641", "video_name": "1e8bc9d8-6a8d-5d09-97ce-f2102b12e91e", "text": "\u4e94\uff0c\u53e4\u7b5d\u97f3\u4e50\uff0c\u60a0\u626c\u3002\u4e00\u4f4d\u5973\u5b50\u5750\u5728\u53e4\u7b5d\u524d\uff0c\u8f7b\u67d4\u5730\u7528\u624b\u6307\u62e8\u5f26\u3002\u60a0\u626c\u7684\u7434"} +{"id": "4003921", "video_name": "49cd054f-66a5-5890-96b2-74d4c460af1f", "text": "\u5de5\u4f5c\u5ba4\u5409\u535c\u529b\u7684\u7d27\u8eab\u76ae\u9769\u732b\u5973\u3002"} +{"id": "2004681", "video_name": "1872266b-7fca-555e-896d-7ee721ef133a", "text": "\u5973\u9b3c\uff0c\u6b7b\u4ea1\uff0c16:9\uff0c\u5947\u602a\uff0c\u6050\u6016\uff0c\u8d85\u73b0\u5b9e\uff0c\u771f\u5b9e\uff0c\u4ee4\u4eba\u4e0d\u5b89\uff0c\u9ed1\u6697\uff0c\u60c5\u7eea\u5316\uff0c\u7f8e\u4e3d\uff0c"} +{"id": "1004312", "video_name": "4fb19901-935e-59d7-8477-fb4cbaeff203", "text": "\u732b\u5973\u7ad9\u5728\u6027\u611f\u7684\u59ff\u52bf\u4e2d\u8bf4\u8bdd\u3002"} +{"id": "3006595", "video_name": "4d0fea05-5fd3-5db2-9559-a291c2705132", "text": "\u51e4\u51f0\u5728\u706b\u5c71\u4e0a\u65b9\u98de\u7fd4\u3002\u706b\u5c71\u6240\u5728\u7684\u5c71\u8c37\u6709\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u82b1\u8349\u8349\u5730\u3002"} +{"id": "2005364", "video_name": "c4f0da1a-b27d-5f2b-9bf7-57ba40d531d7", "text": "\u6469\u5929\u8f6e\uff0c\u7531\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u8d85\u9ad8\u6e05\u7ec6\u8282\uff0c\u903c\u771f\u768425\u5e27\u6bcf\u79d2\u3002"} +{"id": "3005780", "video_name": "83fcbae4-dfb7-5d01-81d2-c8c69c85d3fe", "text": "\u7528\u771f\u82b1\u8986\u76d6\u7684\u900f\u660e\u73bb\u7483\u5236\u6210\u7684\u72d7\u3002"} +{"id": "1004362", "video_name": "509ddc87-6d9f-5402-ba91-664ad0528f07", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5c0f\u5973\u5b69\u5750\u5728\u4e16\u754c\u8fb9\u7f18\uff0c\u6ce8\u89c6\u7740\u773c\u524d\u7684\u5b87\u5b99\uff0c\u540c\u65f6\u6234\u7740\u8033\u673a\u8bfb\u4e66\u542c\u97f3\u4e50\uff0c\u8fd9"} +{"id": "3005922", "video_name": "edb6f0ef-a54b-5161-bffe-6c4257fa0dac", "text": "\u4e00\u4e2a\u6709\u53ef\u7231\u7684\u9e1f\u548c\u5176\u4ed6\u52a8\u7269\u7684\u51ac\u5b63\u98ce\u666f\u3002"} +{"id": "1004837", "video_name": "59602e4e-63aa-57f9-aec6-c5786aea9555", "text": "\u8302\u5bc6\u7684\u6811\u6728\u7684\u5e7f\u89d2\u955c\u5934\u3002\u6d88\u606f\uff1a\u4eca\u5929\u662f\u661f\u671f\u4e94\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005735", "video_name": "20540a0e-8c7e-5cc9-9fd8-6115c1ac7acc", "text": "\u4e00\u5f20\u6050\u9f99\u5728\u6d77\u6ee9\u4e0a\u9a91\u81ea\u884c\u8f66\u7684\u56fe\u50cf\u3002"} +{"id": "2005849", "video_name": "8e839b0e-f661-5cce-b19f-c6ccf41b340d", "text": "\u56db\u53ea\u52a8\u7269\u670b\u53cb\u5174\u594b\u5730\u7ee7\u7eed\u4ed6\u4eec\u7684\u65c5\u7a0b\u3002 Zoom \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005465", "video_name": "1b40838f-888e-5b6f-87fe-9d0864822a67", "text": "\u5404\u79cd\u989c\u8272\u7684\u91ce\u82b1\u5e94\u8be5\u70b9\u7f00\u5728\u666f\u89c2\u4e2d\uff0c\u521b\u9020\u51fa\u4e00\u7247\u81ea\u7136\u7684\u7ea2\u8272\u3001\u84dd\u8272\u3001\u7d2b\u8272\u548c\u9ec4\u8272\u7684\u5730"} +{"id": "1006459", "video_name": "7641471c-e871-5d22-adad-a0ccb1f73828", "text": "\u574e\u7eb3\u8fbe\u6f14\u5458\u666e\u5c3c\u65af\u00b7\u62c9\u6770\u5e93\u9a6c\u5c14\u7ad9\u5728\u5929\u5802\u91cc\u3002"} +{"id": "0004225", "video_name": "056a3f4c-a50e-5b99-9bc3-bb6e7dd7d982", "text": "\u90a3\u4e2a\u5973\u5b69\u6cbf\u7740\u79cb\u8272\u5c0f\u5df7\u8d70\u7740\u3002\u5979\u7684\u5934\u53d1\u548c\u88d9\u5b50\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "1005127", "video_name": "5e8e858e-2f5b-53f4-a4ac-3b5a20e7a7c9", "text": "\u6211\u60f3\u4e3a\u6211\u7684YouTube\u9891\u9053\u5236\u4f5c\u4e00\u4e2a\u6807\u5fd7\uff0c\u5b83\u662f\u4e00\u4e2a\u4ee5\u8db3\u7403\u4e3a\u5185\u5bb9\u7684\u9891\u9053\u3002"} +{"id": "7002305", "video_name": "a1c3a45a-567f-527c-9a9d-0b0ab63a4cc0", "text": "\u6210\u7acb\u4e8e1991\u5e74\u7684\u9999\u6e2f\u79d1\u6280\u5927\u5b66\u4f4d\u4e8e\u9999\u6e2f\u6e05\u6c34\u6e7e\uff0c\u662f\u4e00\u6240\u56fd\u9645\u5316\u7684\u7814\u7a76\u578b\u5927\u5b66\uff0c\u4e13\u6ce8\u4e8e\u57f9\u517b"} +{"id": "2005263", "video_name": "ba9180b6-f50e-5d9c-b4f0-3cb75c95294d", "text": "\u4e00\u53ea\u732b\u5f00\u5fc3\u5730\u770b\u7740\u9910\u684c\u4e0a\u7684\u4e00\u76d8\u997a\u5b50\u3002"} +{"id": "3006401", "video_name": "1a7655c2-1acc-5a57-bf72-320daff446aa", "text": "\u4e00\u6735\u4ece\u5730\u4e0a\u957f\u51fa\u6765\u7684\u9e45\u818f\u83cc\uff0c\u5728\u68ee\u6797\u91cc\u5feb\u901f\u79fb\u52a8\u7684\u6444\u50cf\u673a\u955c\u5934\u4e2d\u3002"} +{"id": "3006748", "video_name": "7ef85681-50f8-5ddc-a029-19b9db187d8f", "text": "\u5317\u6b27\u534a\u5c9b\u6751\u5e84\u7684\u6536\u83b7\u548cKekri\u6237\u5916\u4eea\u5f0f\u3002"} +{"id": "7003450", "video_name": "1aa35181-01bb-5075-9ba5-387c2863dd63", "text": "\u7f8e\u4eba\u9c7c\u5728\u4e00\u4e2a\u5c0f\u57ce\u5821\u5468\u56f4\u98de\u821e\uff0c\u590d\u53e4\u7684\u9ed1\u6697\u5e7b\u60f390\u5e74\u4ee3\u79c0\u3002"} +{"id": "3005017", "video_name": "1798b79c-e521-54a1-abdc-c1649a774261", "text": "\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u8ff7\u5931\u5728\u9ed1\u6d1e\u4e2d\uff0c\u80cc\u5f71"} +{"id": "1006656", "video_name": "79f2370b-9a7d-5f2a-8d85-9fd4ed2bab8a", "text": "\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u3001\u5965\u5df4\u9a6c\u548c\u7ea6\u7ff0\u00b7\u9a6c\u5c14\u79d1\u7ef4\u5947\u5728\u673a\u68b0\u4eba\u8eab\u4f53\u4e2d\uff0c\u5e26\u7740"} +{"id": "7002540", "video_name": "bd9f789c-e054-5394-9d1e-2b4f5278705b", "text": "\u6d77\u6ee9\u4e0a\u4e24\u4e2a\u4eba\u6563\u6b65\uff0c\u65e5\u843d\u65f6\u5206\uff0c\u4ee5\u52a8\u6f2b\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\uff0c\u9ad8\u8d28\u91cf\uff0c16:9\u7684\u753b\u9762\u6bd4\u4f8b\u3002"} +{"id": "0003351", "video_name": "3c06a49d-2b0f-5206-9ceb-b1784a5cab53", "text": "Source sentence: \u6885\u8d6b\u6885\u5fb7\u5f81\u670d\u8005\u5c06\u4e8e2023\u5e74\u590d\u6d3b\u5e76\u5165\u4fb5\u4e16\u754c\u3002"} +{"id": "2006300", "video_name": "a0e8562b-c385-511d-b754-717203aa4e35", "text": "\u661f\u9645\u6050\u6016\uff0c\u60ca\u609a\u548c\u60ac\u7591\u5916\u661f\u673a\u7532\u5728\u4e16\u754c\u672b\u65e5\u7684\u7b2c8\u90e8\u5206\u72e9\u730e\u548c\u6d88\u706d\u4eba\u7c7b\u3002"} +{"id": "4003290", "video_name": "d4b5c199-2d83-5ad6-8b6b-a34537ddf75f", "text": "\u4e00\u500b\u64c1\u6709\u660e\u4eae\u6a39\u6728\u548c\u9bae\u82b1\u7684\u8ff7\u4eba\u68ee\u6797\uff0c\u4ee5\u53ca\u4e00\u96bb\u64c1\u6709\u5927\u773c\u775b\u7684\u53ef\u611b\u767d"} +{"id": "1004393", "video_name": "513dfe35-2fd0-5130-9738-190509312752", "text": "\u6709\u4e24\u79cd\u989c\u8272\uff0c\u7ea2\u8272\u548c\u9ed1\u8272\uff0c\u4e00\u5bf9\u604b\u4eba\u70ed\u60c5\u5730\u8df3\u821e\u5f97\u66f4\u5feb\u3002"} +{"id": "1005193", "video_name": "5f7e75c3-c9d9-5f36-8a17-729077fb82cf", "text": "\u77ed\u72ee\u5b50\u5728\u5c71\u9876\u4e0a\u5b64\u72ec\u5730\u543c\u53eb\u3002"} +{"id": "7004183", "video_name": "db4916af-a598-53a1-b2ca-b7ef9129357f", "text": "\u884c\u661f\u548c\u7403\u4f53\u56f4\u7ed5\u5b83\u4eec\u7684\u8f74\u65cb\u8f6c\uff0c\u5c0f\u661f\u661f\u95ea\u70c1\u7740\uff0c\u4e91\u6735\u7f13\u7f13\u6f02\u6d6e\u7740\uff0c\u4e00\u5207\u90fd\u88ab"} +{"id": "7003113", "video_name": "bc0726b2-80f0-53f2-b55f-ed2e02fe3390", "text": "\u4e00\u4e2a\u767d\u8272\u94a2\u7434\u5728\u4e00\u4e2a\u53e4\u8001\u7684\u5efa\u7b51\u7269\u4e2d\u7684\u672b\u65e5\u3002"} +{"id": "7002948", "video_name": "2db8b66e-6f6b-5be5-8032-a63e81637dc2", "text": "\u519c\u6c11\u5728\u7530\u95f4\u6536\u96c6\u667a\u80fd\u624b\u673a\u76d1\u63a7\u6570\u636e\u3002"} +{"id": "1006673", "video_name": "7a53e897-e912-50d9-b069-d41731371228", "text": "\u5feb\u4e50\u7684\u9e1f\u513f\u8eba\u5728\u6c34\u9762\u4e0a\u3002"} +{"id": "2004953", "video_name": "b0ddafe5-cf9f-5a52-8bf2-a7e3a6b895b1", "text": "\u4e00\u67b6\u4e1c\u65b9\u9f13\u5728\u7535\u5f71\u5bab\u6bbf\u91cc\u8df3\u821e\u7684\u821e\u8005\u4e2d\u95f4\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "2004214", "video_name": "832c76f9-afec-5685-8d3f-9454c5505c52", "text": "\u516c\u5171\u6c7d\u8f66\u4e0a\u7684\u8f6e\u5b50\u8f6c\u554a\u8f6c\uff0c\u7a7f\u8fc7\u6574\u4e2a\u57ce\u9547\u3002"} +{"id": "1005987", "video_name": "6e07a76c-b839-5b83-8686-08cd43fa0ec4", "text": "\u5728\u4e00\u8f6e\u6ee1\u6708\u7684\u65e5\u5b50\u91cc\uff0c\u6708\u4eae\u7f13\u7f13\u53d8\u6210\u4e86\u7ea2\u8272\u3002"} +{"id": "0003907", "video_name": "458ba4c3-1f6d-53c2-99b0-b29b5e3b74b5", "text": "\u4e00\u68f5\u9ad8\u5927\u3001\u626d\u66f2\u7684\u6811\u7acb\u5728\u68ee\u6797\u7684\u8fb9\u7f18\u3002"} +{"id": "7002646", "video_name": "f3cefecd-7c4f-5715-9ef6-2c90cafcbb55", "text": "\u4e00\u4e2a\u84dd\u8272\u7684\u623f\u95f4\uff0c\u6709\u8bb8\u591a\u6bdb\u76ae\u5899\u58c1\u548c\u4e00\u4e2a\u540a\u706f\uff0c\u98ce\u683c\u662f\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5f62\u8c61\u3001\u5546\u4e1a\u5f62\u8c61\u3001\u6709\u8da3"} +{"id": "4004844", "video_name": "21647039-a007-5309-8960-21ba6b9691c7", "text": "\u8fd9\u672c\u4e66\u4e0e\u5176\u4ed6\u4e66\u90fd\u4e0d\u540c\u3002"} +{"id": "4003260", "video_name": "3c5668d8-90f9-5090-a9be-c59b56d481fe", "text": "\u7956\u5148\u643a\u5e26\u7740\u4e45\u8fdc\u65f6\u4ee3\u7684\u8bb0\u5fc6\uff0c\n\u6c38\u6052\u7684\u4eea\u5f0f\u821e\u8e48\uff0c\u4e0d\u65ad\u7684\u6b4c\u58f0\u3002"} +{"id": "8002920", "video_name": "84ebf9d2-15f0-5dde-829c-2bb7c810cb07", "text": "\u5b69\u5b50\u4ece\u7a97\u6237\u540e\u9762\u770b\u7740\u6df7\u4e71\u3002"} +{"id": "2003381", "video_name": "7936a801-1629-50d4-8483-1407be304ae6", "text": "\u6708\u4eae\u7684\u4e00\u5f2f\u94f6\u5f27\u5df2\u7ecf\u60ac\u6d6e\u5728\u897f\u5929\u7a7a\u4e2d\u3002"} +{"id": "2006419", "video_name": "dadb1ce1-4373-5960-8a56-34f9106e8fb8", "text": "\u5361\u901a\u5316\u7684\u6cb3\u6d41\u5728\u6d41\u52a8\uff0c\u7eff\u8272\u7684\u690d\u7269\u548c\u84dd\u8272\u7684\u5929\u7a7a\u5448\u73b0\u51fa\u52a8\u6001\u7684\u6548\u679c\u3002"} +{"id": "2003242", "video_name": "d1794c3c-434a-5883-be87-62cce38db12c", "text": "\u9634\u95f4\u6536\u5272\u8005\u5e26\u7740\u7ae5\u5fc3\u5347\u5929\u3002"} +{"id": "2004670", "video_name": "134ac584-d67c-5367-8558-7f78d0a34145", "text": "\u4e00\u7fa4\u5b69\u5b50\u5728\u516c\u56ed\u91cc\u8e22\u8db3\u7403\u3002\u4ed6\u4eec\u7a7f\u7740\u5f69\u8272\u7684\u7403\u8863\u548c\u77ed\u88e4\u3002\u4ed6\u4eec\u4ee5\u719f\u7ec3\u548c\u70ed"} +{"id": "2003075", "video_name": "89482dfb-9052-5a73-94c2-dc9764d6827a", "text": "\u7a7f\u7740\u84dd\u8272\u725b\u4ed4\u88e4\u548c\u7c73\u8272\u6bdb\u8863\u7684\u5973\u5b69\u4ece\u7070\u8272\u6c99\u53d1\u4e0a\u7ad9\u8d77\u6765\u3002"} +{"id": "0003720", "video_name": "4255bad1-6f9c-5e6f-b227-a5a76d6d780b", "text": "Rosie\u7cbe\u51c6\u5730\u6307\u5f15\u4ed6\uff0c\u786e\u4fdd\u4ed6\u4eec\u6cbf\u7740\u901a\u5f80\u7ec8\u70b9\u7ebf\u7684\u8def\u5f84\u524d\u8fdb\u3002\u4e0d\u540c\u7684\u52a8\u7269\u7ad9\u5728\u8d5b\u9053\u65c1\u4e3a\u6bd4\u8d5b\u9009\u624b\u52a0"} +{"id": "1006819", "video_name": "7cc1c517-b6cd-5521-a4e1-f81701589770", "text": "\u5728\u4e00\u4e2a\u96e8\u96fe\u7b3c\u7f69\u7684\u672a\u6765\u57ce\u5e02\u4e2d\uff0c\u955c\u5934\u5f80\u540e\u62c9\uff0c\u5c55\u73b0\u51fa\u4eba\u4eec\u884c\u8d70\u548c\u8239\u53ea\u98de\u884c\u7684\u7e41\u5fd9\u573a\u666f\u3002\u6b64"} +{"id": "2006102", "video_name": "7877a6c7-d6c2-5ba9-a806-b088409545a6", "text": "\u5b83\u5f3a\u8c03\u4e86\u79d1\u6280\u8fdb\u6b65\u7684\u91cd\u8981\u6027\u3002"} +{"id": "2007801", "video_name": "c970e355-d89c-5577-bb20-8cf2f73116ca", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u5348\u591c\u65f6\u5206\u7684\u4e2d\u4e16\u7eaa\u80cc\u666f\u4e0b\uff0c4K 16:9\u6bd4\u4f8b\u7684\u52a8\u753b\u573a\u666f\u3002\u4e3b\u89d2\u5e94\u8be5\u62e5\u6709\u9c9c\u7ea2\u7684\u773c"} +{"id": "8002856", "video_name": "8929a161-cdcc-5088-b6c3-997ebbe95bba", "text": "\u4ed3\u5e93\u50a8\u5b58\u533a\u5185\u7684\u6db2\u538b\u79fb\u52a8\u673a\u5668\u3002"} +{"id": "1003517", "video_name": "40ee288d-1162-5ff4-b28f-d81c2dc7e948", "text": "\u5728\u5370\u5ea6\u591c\u95f4\u7684\u8857\u9053\u4e0a\u884c\u9a76\u7684\u6c7d\u8f66"} +{"id": "1004561", "video_name": "54aefc05-5e99-58db-9bd4-744905d8c527", "text": "\u4e00\u5ea7\u706b\u5c71\u5728\u8fdc\u5904\u55b7\u53d1\uff0c\u76ae\u514b\u65af\u827a\u672f\uff0c\u52a8\u753b\uff0c\u9ad8\u54c1\u8d28\uff0c\u5411\u706b\u5c71\u79fb\u52a8\u66f4\u8fd1\u3002"} +{"id": "2003909", "video_name": "4bd7a957-87a9-5d1a-885a-1299c0d3f4fa", "text": "\u4e00\u4e2a\u6709\u70b9\u7070\u8272\u7684\u5916\u661f\u4eba\uff0c\u5904\u4e8e\u672a\u6765\u4e3b\u4e49\u7684\u80cc\u666f\u4e0b\u30028k\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\u3002\u9ad8\u6e05\u3002"} +{"id": "1004860", "video_name": "59c3f7ca-0c71-52bc-b5ec-f2c54a695092", "text": "\u592a\u7a7a\u8239\u9a7e\u9a76\u8231\u5185\uff0c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "2005015", "video_name": "9af95dd5-880d-55af-8039-33ccce7cebf0", "text": "\u4e00\u6bb5\u903c\u771f\u7684\u89c6\u9891\u5c55\u793a\u4e86\u661f\u9645\u98de\u8239\u5728\u4e00\u9897\u6bc1\u706d\u661f\u7403\u7684\u5e9f\u589f\u4e0a\u7206\u70b8\u6210\u4e00\u7247\u706b\u6d77\u7684\u573a\u666f\u3002"} +{"id": "3006689", "video_name": "79bee935-ea34-5bb6-ae91-d280df6f6385", "text": "\u65e5\u51fa\u65f6\u7684\u5c71\u666f"} +{"id": "8001974", "video_name": "5998251d-0d65-5887-b5ba-b0348b567934", "text": "\u4eba\u4eec\u79cd\u690d\u6811\u6728\u3001\u6e05\u7406\u5783\u573e\uff0c\u5e76\u4f7f\u7528\u53ef\u518d\u751f\u80fd\u6e90\u3002"} +{"id": "3004380", "video_name": "51590879-1eb9-5293-87aa-1445fab06cfb", "text": "\u5965\u666e\u8482\u9a6c\u65af\u00b7\u666e\u83b1\u59c6\u662f\u53d8\u5f62\u91d1\u521a\u4e2d\u7684AUTOBOT\uff0c\u4f5c\u4e3a\u65f6\u88c5\u6a21\u7279\u51fa\u73b0\u5728\u8d5b\u535a\u5766\u65f6\u88c5\u5468\u4e0a\uff0c"} +{"id": "3003541", "video_name": "f48c9c41-0845-55b9-a58a-252f6434b218", "text": "\u6c34\u6d41\u7ecf\u8fc7\u6d6a\u6f2b\u82b1\u56ed\u4e2d\u7684\u7af9\u7ba1\uff0c\u4e00\u4f4d\u50e7\u4eba\u5750\u5728\u91d1\u8272\u9633\u5149\u4e0b\u5ff5\u7ecf\u3002"} +{"id": "3005803", "video_name": "af960587-a6f6-52dd-81a2-1d335c30bc5f", "text": "\u4e00\u500b\u6a02\u9ad8\u4eba\u5076\u548c\u771f\u6b63\u7684\u8759\u8760\u4fe0\u6253\u9b25\u3002"} +{"id": "8002738", "video_name": "d99ae3f1-328d-590f-9f8e-feb34ce63a44", "text": "\u4e00\u4e2a\u624b\u6301\u94fe\u952f\u7684\u7537\u4eba\u5728\u65e5\u843d\u65f6\u5206\u7a7f\u8fc7\u4e00\u7247\u7389\u7c73\u5730\u3002"} +{"id": "8003850", "video_name": "b939e8b9-ca22-50b5-bec1-6d70c8cc86ef", "text": "\u591c\u665a\u72ec\u81ea\u5728\u661f\u7a7a\u68ee\u6797\u4e2d\u7684\u4eba\u3002"} +{"id": "1005924", "video_name": "6ccee8b1-7d64-5587-9ccd-a922c3d535d8", "text": "\u4e00\u7fa4\u5927\u8c61\u5728\u5916\u592a\u7a7a\u6df1\u5904\u4ee5\u5706\u5f62\u8fd0\u52a8\u79fb\u52a8\u3002"} +{"id": "1005117", "video_name": "5e5b8e93-95aa-5340-9761-6e44c93064f3", "text": "\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u7c89\u8272\u4e16\u754c\u80cc\u666f\u4e0b\uff0c\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u5fc3\u5f62\uff0c\u75313D\u8bbe\u8ba1\u5e08\u5236\u4f5c\u3002"} +{"id": "6003487", "video_name": "6524c9b5-f3c2-52b3-a6a7-4d9741e8ebf4", "text": "\u76d6\u5e03\u548c\u7ebd\u7279\u751f\u4e0b\u4e86\u5965\u897f\u91cc\u65af\uff0c\u8fd9\u4e2a\u5b8c\u7f8e\u7684\u5b58\u5728\u6210\u4e3a\u4e86\u4e16\u754c\u7684\u7edf\u6cbb\u8005\u3002\u62c9\u521b\u9020\u4e86\u5143\u7d20\uff0c\u5e76\u4ece\u4ed6\u7684\u773c\u6cea\u4e2d"} +{"id": "4002319", "video_name": "4c053225-2010-5c97-b64b-ec8a1c9312af", "text": "Shiba Inu\u5728\u6708\u5149\u4e0b\u8df3\u821e\uff0c\u9713\u8679\u706f\u95ea\u8000\u3002"} +{"id": "5001766", "video_name": "cb2d6579-b255-5ee8-bf7d-b2e302cad434", "text": "\u6a59\u8272\u548c\u767d\u8272\u7684\u732b\u5728\u559d\u70ed\u5de7\u514b\u529b\u3002"} +{"id": "0004368", "video_name": "07e3ad60-b4c1-5121-8c37-db8cba90b88a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u4eba\u5728\u4e00\u6761\u6d41\u52a8\u7684\u900f\u660e\u767d\u8272\u88d9\u5b50\u91cc\u5c55\u73b0\u4e86\u5979\u9ad8\u6311\u81ea\u4fe1\u7684\u8eab\u6750\u3002\u80cc\u666f\u4e2d\u7684\u98ce\u666f\u5b81"} +{"id": "2006375", "video_name": "aa26f278-8cbd-59d2-9b92-02f942f0df97", "text": "\u8bf1\u4eba\u7684Dota 2\u89d2\u8272\uff0c\u51fa\u751f\u4e3a\u4e86\u652f\u6301\u4ed6\u7684\u76df\u53cb\u3002"} +{"id": "4004767", "video_name": "b5b2fc1b-c55d-5002-add4-776656eddf53", "text": "\u4e00\u76d8\u591a\u6c41\u3001\u84b8\u6c7d\u817e\u817e\u3001\u6492\u4e0a\u5e15\u5c14\u9a6c\u5e72\u916a\u7684\u610f\u5927\u5229\u9762\u3002"} +{"id": "2007471", "video_name": "0e98d8de-9b04-51e2-816a-c33bcce6b1b4", "text": "\u5170\u535a\u57fa\u5c3cCountach\u5728\u591c\u665a\u7a7f\u8fc7\u8fc8\u963f\u5bc6\u3002"} +{"id": "3005640", "video_name": "ca57a034-943b-53f0-a8df-a13b28a0d06f", "text": "\u542c\u5230\u8fd9\u53e5\u8bdd\uff0c\u9e66\u9e49\u7b2c\u4e00\u6b21\u5f00\u59cb\u8bf4\u8bdd\u3002\u56fd\u738b\u611f\u5230\u60ca\u8bb6\uff0c\u503e\u542c\u7740\u9e66\u9e49\u7684\u8bdd\u3002"} +{"id": "8003408", "video_name": "02239bcb-df7b-5811-9b0d-ccede592adc8", "text": "\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u3001\u6d77\u8c5a\u3001\u6e38\u6cf3\u6c60\u3001\u68d5\u6988\u6811\u3001\u9e21\u5c3e\u9152\u5427"} +{"id": "4004860", "video_name": "8f06950f-da48-56f0-8253-6a16284a0b5e", "text": "\u5728\u60c5\u7eea\u4f4e\u843d\u7684\u623f\u95f4\u91cc\uff0c\u95ea\u8000\u7684\u5149\u7ebf\u3002"} +{"id": "3006059", "video_name": "764d3932-ec1c-5790-a61f-61b5c1e976f0", "text": "\u4e00\u4e2a\u9ad8\u5ea6\u8be6\u7ec6\u3001\u6781\u4e3a\u53ef\u7231\u7684\u5c0f\u8003\u62c9\u6b63\u5728\u5403\u7206\u7c73\u82b1\u3002\u53ef\u7231\u6781\u4e86\u3002"} +{"id": "1004658", "video_name": "56ab3baf-62ca-51d7-9989-5fc2ef760ee3", "text": "\u9b54\u795e\u82f1\u96c4Z\u98ce\u683c\u7684\u52a8\u753b\uff0c\u6218\u4e89\u533a\u7684\u8ff7\u5e7b\u5b57\u6bcd\u6c64\u3002"} +{"id": "6004467", "video_name": "f1c36cfe-053b-5c6c-978d-ac3e968d47af", "text": "\u6234\u7740\u58a8\u955c\u7684\u5deb\u5e08\u88ab\u8b66\u5bdf\u8ffd\u8d76\u3002"} +{"id": "7003796", "video_name": "edadb174-279d-58f4-8b4a-3ca4612e837e", "text": "\u4e00\u4f4d\u5973\u5b69\u548c\u5979\u7684\u6bcd\u4eb2\u8d70\u5728\u8def\u4e0a\u3002\u7535\u5f71\u822c\u7684\uff0c\u4eea\u8868\u76d8\u6444\u50cf\u5934\u653e\u5927\u3002"} +{"id": "1005358", "video_name": "6287da67-71bc-56e2-ba3e-00e18dcc0a95", "text": "\u50cf\u7d20\u827a\u672f\u89c6\u9891\u6e38\u620f\u89d2\u8272\uff0c\u7a7a\u95f2\u52a8\u753b"} +{"id": "4004687", "video_name": "7525fd25-26e0-59ae-bc1f-d74e20efbc61", "text": "\u53d1\u73b0\u4e2d\u603b\u4f1a\u5b58\u5728\u4e00\u90e8\u5206\u51ed\u76f4\u89c9\u5b8c\u6210\u7684\u5de5\u4f5c\u3002"} +{"id": "0006184", "video_name": "27d31cb3-d322-521d-89c2-2052d66ea064", "text": "\u5973\u58eb\u8d70\u8fdb\u745e\u58eb\u914d\u65b9\u5316\u5986\u54c1\u5e97\uff0c\u4e0e\u67dc\u53f0\u524d\u7684\u5973\u58eb\u4ea4\u8c08\u3002"} +{"id": "6003777", "video_name": "32a22de7-789b-5faa-bc59-a4738b9016dd", "text": "\u65e5\u51fa\u65f6\u6e7f\u5730\u7684\u7247\u6bb5\uff0c\u6c34\u9762\u4e0a\u5f25\u6f2b\u7740\u96fe\u6c14\u3002\u6c99\u4e18\u9e64\u7684\u8f6e\u5ed3\u5728\u67d4\u548c\u7684\u6668\u5149\u4e2d\u663e\u5f97\u9ad8"} +{"id": "1005035", "video_name": "5d1bb2af-b7a5-5cc6-8a82-20a4f30f58a4", "text": "\u5de7\u514b\u529b\u6cb3\u6d41\uff0c\u5e26\u7740\u5976\u6cb9\u822c\u7684\u4e91\u6735\u548c\u751f\u6d3b\u5728\u8fd9\u4e2a\u4e16\u754c\u91cc\u7684\u52a8\u7269\u4eec\u3002"} +{"id": "6003288", "video_name": "35b3bbbd-6a93-52f8-9889-9ba423c3394f", "text": "\u8036\u7a23\u8d70\u5728\u66b4\u98ce\u96e8\u7684\u6d77\u9762\u4e0a\uff0c\u524d\u5f80\u4ed6\u7684\u95e8\u5f92\u90a3\u91cc\u3002"} +{"id": "3003999", "video_name": "6c85bf83-a45a-5ae8-9783-120009480836", "text": "\u5723\u8bde\u684c\u4e0a\u7684\u767e\u5206\u767e\u8003\u8bd5"} +{"id": "1004749", "video_name": "57e7a70d-be76-5a95-9928-9120b261d21b", "text": "\u7537\u5b69\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u5e76\u8df3\u821e3D\u3002"} +{"id": "3006381", "video_name": "aa654112-e005-5f21-b002-0e517e6e913a", "text": "\u53f2\u8bd7\u7ea7\u7684\u65af\u6ed5\u4e0e\u4e00\u4f4d\u4e4c\u514b\u5170\u6307\u6325\u5b98\u601d\u8003\u4ed6\u7684\u6218\u7565\u3002"} +{"id": "1005775", "video_name": "6a40cf71-aa8a-56a8-b797-7e582103ee61", "text": "\u4e2d\u4e16\u7eaa\u65f6\u671f\uff0c\u592a\u9633\u5728\u4e00\u5ea7\u4e2d\u4e16\u7eaa\u57ce\u5e02\u843d\u5c71\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1005567", "video_name": "6677d9a9-5c9d-5f25-8df0-a274a5c34773", "text": "\u8001\u4eba\u5728\u66b4\u98ce\u96e8\u4e2d\u591c\u665a\u8d70\u5728\u519c\u573a\u5c0f\u8def\u4e0a\u3002"} +{"id": "4003713", "video_name": "33870315-ab9b-5fa4-a641-0f0161aae408", "text": "\u9a91\u81ea\u884c\u8f66\uff0c\u9762\u5e26\u5fae\u7b11\u770b\u6cb3\u6d41\uff0c\u6162\u5439\u7684\u98ce\u3002"} +{"id": "1004648", "video_name": "5665d7ff-af9c-536f-a62d-c8a95fa121cc", "text": "\u4e00\u53ea\u9cb8\u9c7c\u5728\u65b0\u897f\u5170\u7684\u5929\u7a7a\u4e2d\u79fb\u52a8\u3002"} +{"id": "0003712", "video_name": "42315b3f-224d-56ae-8f97-17ffa5567e7f", "text": "\u5728\u7530\u91ce\u4e0a\u6dfb\u52a0\u52a8\u753b\u6765\u4fee\u526a\u4f5c\u7269\u3002"} +{"id": "7002207", "video_name": "8b278e47-2bed-5ebf-b367-b770f18f3743", "text": "\u6cd5\u62c9\u5229812\u8d85\u8dd1\u548c\u5954\u9a70G Wagon\u671d\u7740\u955c\u5934\u5954\u8dd1\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "0003066", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "\u5916\u9762\u4e0b\u7740\u70b8\u9e21\uff0c\u4eba\u4eec\u8bd5\u56fe\u5728\u5916\u9762\u6349\u4f4f\u70b8\u9e21\u3002"} +{"id": "3003760", "video_name": "8add3527-95a6-5c64-aa55-4d514221e324", "text": "\u70ed\u6db2\u4f53\u88ab\u5012\u5165\u767d\u8272\u7eb8\u676f\u3002"} +{"id": "6002966", "video_name": "43031989-0400-5995-8889-a3c880aed091", "text": "\u4e00\u5e45\u5e73\u9759\u7684\u8336\u676f\u753b\u9762"} +{"id": "5001134", "video_name": "b89206aa-6e7a-58df-b677-816403ddab01", "text": "\u7f8e\u4e3d\u68ee\u6797\u4e91\u5c42\u4e0a\u65b9\u7684\u666f\u8c61\u3002"} +{"id": "2006563", "video_name": "977e8578-7347-56bd-a6b8-d7b7a934297a", "text": "\u4e24\u8f86\u5361\u8f66\u5728\u7e41\u5fd9\u7684\u8def\u4e0a\u8ffd\u9010\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5e7f\u9614\u7684\u955c\u5934\u3002"} +{"id": "5001027", "video_name": "f47082c0-016a-5b56-a6df-a6ec7a6a70c8", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u4eba\u4f7f\u7528\u7b97\u76d8\uff0c16\u6beb\u7c73\uff0c\u7c89\u7b14\u8272\u8c03\uff0c8K\uff0c9x16\u7eb5\u6a2a\u6bd4\uff0c\u620f\u5267\u6027\u7684\u7167\u660e\u3002"} +{"id": "0003125", "video_name": "377b98c8-2e80-5d9e-8ee7-e2697872d2ac", "text": "\u4e00\u4e2a\u5c0f\u5c0f\u7684\u901a\u9053\u5728\u8349\u576a\u4e0a\u5f00\u542f\u3002"} +{"id": "0005387", "video_name": "19eb8b99-b288-5d16-a083-fcf768efd787", "text": "\u5728\u4e00\u4e2a\u95f9\u9b3c\u7684\u623f\u95f4\u91cc\uff0c\u521b\u4f5c\u4e00\u90e8\u9ed1\u767d\u768420\u4e16\u7eaa20\u5e74\u4ee3\u7684\u795e\u79d8\u9759\u9ed8\u7535\u5f71\uff0c\u5c55\u73b0\u4e00\u4e2a\u7a7f\u7740\u9ed1"} +{"id": "6004398", "video_name": "fc827b5e-5812-53a4-9e31-ba9aa3abee18", "text": "\u5723\u8bde\u88c5\u9970\u548c\u793c\u7269\u5531\u7740\u5723\u8bde\u9882\u6b4c\u3002"} +{"id": "4002157", "video_name": "c48c75d8-85a9-5c0c-802c-9e9f3d743d92", "text": "\u53f2\u8bd7\u822c\u7684\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a\u7f29\u653e\uff0c\u4fc4\u7f57\u65af\u5973\u4eba\uff0c\u673a\u67aa\uff0c\u52a8\u6001\u6a21\u7cca\uff0c\u96ea\u5730"} +{"id": "4003683", "video_name": "a4865376-3477-5462-835f-f478b101d0b7", "text": "\u5154\u5b50\u623f\u95f4\uff0c\u5341\u4e8c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001608", "video_name": "644075c3-2e0e-5bc3-94d0-7c742806fafe", "text": "\u6d77\u6ee9\u4e0a\u7684\u5973\u5b69\u5954\u8dd1\uff0c\u505c\u683c\u52a8\u753b"} +{"id": "0006489", "video_name": "2d65f2c7-2c5b-5e61-81bf-089b9de4f595", "text": "\u6050\u60e7\u4e0e\u538c\u6076\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u98ce\u683c\u7684\u76f8\u673a\u8d28\u91cf\u4e0b\uff0c\u8ff7\u5e7b\u7684\u573a\u666f\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c"} +{"id": "5001705", "video_name": "3a567e52-00de-57a4-b25c-8452051e5bec", "text": "\u8ba9\u5916\u661f\u751f\u7269\u8df3\u51fa\u8d85\u73b0\u5b9e\u7684\u821e\u8e48\u3002"} +{"id": "5001186", "video_name": "9dc3d9b5-2220-55c9-b763-499654a868d2", "text": "\u5377\u53d1\u7684\u7f8e\u4e3d\u5973\u4eba\u7761\u5728\u4e1d\u7ef8\u6795\u5957\u4e0a\uff0c\u5962\u534e\u3001\u9ad8\u54c1\u8d28\u3002 \n\nSource sentence: The cat is sitting on the windowsill, staring at the birds outside."} +{"id": "6003921", "video_name": "01842ffe-801b-52be-8cb2-561e8eb4776f", "text": "\u4e00\u5bf9\u6e38\u620f\u60c5\u4fa3\u5728\u4ed6\u4eec\u7684\u6e38\u620f\u5ba4\u4e00\u8d77\u73a9 PlayStation\u3002"} +{"id": "1006953", "video_name": "7f40b2d3-589d-5bcb-a05d-972bc2bf1746", "text": "\u94a6\u5fb7\u91cc\u4e1d\u7ef8\u7684\u6545\u4e8b\uff0c\u5370\u5ea6\u3002"} +{"id": "0003033", "video_name": "35e1b16a-116a-51d5-bdb2-48445e7f7257", "text": "\u4e00\u4f4d\u5fc3\u7406\u54a8\u8be2\u5e08\u548c\u4e00\u4f4d\u5ba2\u6237\u6b63\u5728\u8fdb\u884c\u8c08\u8bdd\u3002"} +{"id": "1003965", "video_name": "49342de5-9fc0-588c-9ed8-e5da8bed24bc", "text": "\u4ed6\u4eec\u5171\u7528\u4e00\u628a\u4f1e\uff0c\u4e24\u4f4d\u7f8e\u4e3d\u5973\u58eb\u5728\u96e8\u4e2d\u8d70\u8fc7\uff0c\u5979\u4eec\u7684\u5fae\u7b11\u50cf\u96e8\u70b9\u4e00\u6837\u95ea\u8000\uff0c\u521b\u9020\u4e86\u4e00\u4e2a\u8d85"} +{"id": "2004917", "video_name": "674ad168-5541-53f3-99be-ff5ccd1d50e7", "text": "\u5496\u5561\u5e97\uff0c\u7528\u4e00\u676f\u70ed\u5496\u5561\u6765\u5448\u73b0\u3002\u4fe1\u606f\uff1aBAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005991", "video_name": "e0b7fb60-29ad-566d-a846-a5a7f6ee5390", "text": "\u7eff\u8349\u5982\u8335\uff0c\u82b1\u9999\u56db\u6ea2\u7684\u7eff\u8272\u8349\u5730\u3002"} +{"id": "1005452", "video_name": "642ec2d8-1a87-5e15-ae31-60e2eecc9814", "text": "\u6709\u4e00\u676f\u6e05\u6f88\u7684\u6c34\u653e\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u6709\u5149\u7167\u5c04\u5728\u676f\u5b50\u4e0a\u3002\u9ed1\u8272\u7684\u6c34\u5728\u676f\u5b50\u91cc\u88ab\u5149\u7ebf\u7167"} +{"id": "0003740", "video_name": "429edf7a-d25b-5307-b009-18aa7f713be3", "text": "\u6b22\u8fce\u6765\u5230\u6211\u7684\u9891\u9053\uff0c\u52a0\u5bc6\u6210\u763e\u80058k\u60ca\u8273\u89c6\u89c9\uff0c\u5bbd\u9ad8\u6bd4\u4e3a9:16\u3002\n\nSource sentence: I am interested in learning Mandarin Chinese, can you recommend"} +{"id": "4003376", "video_name": "e64f47fa-c465-57fe-9ad9-85d35fe3ca89", "text": "\u7537\u5b69\u548c\u673a\u5668\u4eba\u5411\u5de6\u8d70\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7004556", "video_name": "f4aefaff-fb22-5c2c-b1bd-5934b1aa0d98", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u770b\u7740\u661f\u661f\u3002"} +{"id": "0006343", "video_name": "2aef0051-1af8-5f72-bd39-c27cbc8c6151", "text": "\u6d77\u6e7e\u8fb9\u805a\u96c6\u4e86\u8bb8\u591a\u9e1f\u513f\uff0c\u5176\u4e2d\u4e00\u4e2a\u9e1f\u513f\u5728\u5176\u4ed6\u9e1f\u513f\u60ca\u6115\u7684\u6ce8\u89c6\u4e0b\u7206\u70b8\u4e86\u3002"} +{"id": "7004021", "video_name": "693c5ec0-2cb7-5836-b65e-1d1c85098dd0", "text": "\u4ed6\u4eec\u5982\u4f55\u6210\u529f\u5730\u4e0d\u88ab\u5bdf\u89c9\u5730\u8fdb\u5165\u4e86\u8c6a\u5b85\u7684\u573a\u5730\uff0c\u8bf7\u89e3\u91ca\u3002"} +{"id": "4003242", "video_name": "f9e2903e-3fa0-599d-91bd-d5fd212f0187", "text": "\u5de5\u5382\u4e2d\uff0c\u65e0\u6570\u7684\u673a\u5668\u4eba\u624b\u81c2\u548c\u81ea\u52a8\u5316\u7cfb\u7edf\u534f\u4f5c\u5de5\u4f5c\uff0c\u9ad8\u6548\u5730\u5b8c\u6210\u5404\u79cd\u751f\u4ea7\u4efb\u52a1\u3002\u5b83\u4eec\u62e5\u6709\u5148\u8fdb\u7684\u611f\u5e94\u548c\u8fd0\u52a8"} +{"id": "5001284", "video_name": "ee8ffa8c-6977-5452-a8ac-6c2a5166b9bf", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u4e1b\u6797\u4e2d\u7684\u65e7\u623f\u5b50\uff0c\u6444\u50cf\u673a360\u5ea6\u7ed5\u7740\u5b83\u79fb\u52a8\uff0c\u5c55\u793a\u623f\u5b50\u7684\u5404\u4e2a\u4fa7\u9762\u3002"} +{"id": "1006991", "video_name": "7feec418-03ab-5046-90cb-96718161ea1c", "text": "\u5927\u536b\u88ab\u53ec\u6765\u5f39\u594f\u7ad6\u7434\uff0c\u4ee5\u5e73\u606f\u6df1\u53d7\u90aa\u6076\u7cbe\u795e\u56f0\u6270\u7684\u56fd\u738b\u626b\u7f57\u3002"} +{"id": "2007085", "video_name": "904a852b-a6b3-557c-ae02-526a568486d8", "text": "\u6885\u6839\u00b7\u798f\u514b\u65af\u5728\u300a\u4e09\u4fa0\u5ba2\u300b\u98ce\u5439\u96e8\u6253\u7684\u7535\u5f71\u6d77\u62a5\u4e2d\u3002"} +{"id": "1003584", "video_name": "41fe1795-ea83-50ef-9777-e717219f29b1", "text": "\u753b\u9762\u8f6c\u6362\u5230\u8389\u8389\u6574\u7406\u80cc\u5305\uff0c\u5411\u7740\u68ee\u6797\u8d70\u53bb\u3002"} +{"id": "0003118", "video_name": "375ef14b-88d4-5564-8115-3402d73b3f86", "text": "\u6c83\u4f26\u00b7\u5df4\u83f2\u7279\u6b63\u5728\u5931\u63a7\u5730\u54ed\u6ce3\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "6003584", "video_name": "cf792045-a5e7-5d83-9d04-2ba38727998a", "text": "\u7f8e\u4e3d\u7684\u745e\u58eb\u4e0b\u7740\u96ea\uff0c\u5c71\u4e0a\u98d8\u8361\u7740\u94c3\u94db\u58f0\u548c\u638c\u58f0\uff0c\u8dfa\u811a\u6ed1\u884c\u7a7f\u8d8a\u5927\u5730\uff01\u50cf"} +{"id": "3004799", "video_name": "8effdd62-6635-56e6-a2ae-b2b06c8d996c", "text": "\u4e00\u4e2a\u7537\u5b69\u5411\u6211\u4eec\u5954\u8dd1\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "6003495", "video_name": "f7a1cee3-19b8-515e-a59f-eab4838cc522", "text": "\u8036\u7a23\u662f\u4ece\u7236\u4eb2\u90a3\u91cc\u5b66\u4e60\u6728\u5de5\u624b\u827a\u7684\u7537\u5b69\u3002"} +{"id": "3005267", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "\u5927\u5b66\u6559\u6388\u7ed9\u5979\u7684\u5b66\u751f\u4e0a\u8bfe\u3002"} +{"id": "4002211", "video_name": "7a9d7a67-5afa-54ed-8b5d-63808d90e8a5", "text": "\u4e24\u4e2a\u6566\u714c\u4ed9\u5973\u5728\u5929\u7a7a\u8df3\u821e\u3002"} +{"id": "0003202", "video_name": "3924b463-f162-5952-8c0d-700e91c78129", "text": "\u4e00\u4e2a\u7ea2\u5934\u53d1\u7684\u5973\u5b69\u5728\u5c71\u533a\u73af\u5883\u4e2d\u9a91\u81ea\u884c\u8f66\u3002\u4fe1\u606f\uff1a\u81ea\u884c\u8f66\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "1005429", "video_name": "63c135e3-1142-503b-bdd2-c814ec33a21d", "text": "\u4e00\u5e45\u63cf\u7ed8\u4f0a\u4e3d\u838e\u548c\u5979\u7684\u540c\u4f34\u7a7f\u8fc7\u6708\u5149\u7167\u8000\u7684\u6865\u7684\u63d2\u56fe\uff0c\u4ee3\u8868\u7740\u8d70\u5411\u548c\u89e3\u7684"} +{"id": "4002206", "video_name": "5d1ae5aa-78f7-55d0-9877-bdb89352206e", "text": "\u4e00\u4e2a\u5c42\u53e0\u86cb\u7cd5\u7531\u68ee\u6797\u3001\u6811\u6728\u548c\u81ea\u7136\u7ec4\u6210\u3002"} +{"id": "0003154", "video_name": "3830ad53-6b0a-5f83-8eb6-1590a0b96201", "text": "\u5973\u6027\u603b\u662f\u5728\u5bfb\u627e\u65b0\u7684\u65b9\u5f0f\u6765\u953b\u70bc\u81ea\u5df1\u7684\u8eab\u4f53\u3002"} +{"id": "7002167", "video_name": "ce421b85-a6d4-522b-9cd8-03914de30485", "text": "\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb\u5728\u6d77\u8fb9\u73a9\u800d\uff0c\u6b22\u4e50\u7684\u9762\u5bb9\uff0c\u957f\u957f\u7684\u9a6c\u5c3e\u8fab\u5728\u65e5\u843d\u65f6\u5206\u821e\u52a8\u3002"} +{"id": "1003448", "video_name": "3fe75266-7f0f-597f-a7b7-e9681d963c2f", "text": "\u81ea\u7531\u98de\u821e\u7684\u8774\u8776\uff0c\u8857\u5934\u57ce\u5e02\u6c1b\u56f4\u3002"} +{"id": "1003880", "video_name": "477ae023-2152-574c-aa65-150cae1ed785", "text": "\u4e24\u4e2a\u4eba\u6b63\u5728\u63a5\u543b\uff0c\u82b1\u74e3\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u6709\u51e0\u53ea\u8774\u8776\u98de\u821e\uff0c\u6bd4\u4f8b\u4e3a9:16\uff0c\u5206\u8fa8\u7387\u4e3a108"} +{"id": "2006524", "video_name": "d8f020a3-3fc5-52e6-95ba-f132698b2c46", "text": "\u89c6\u9891\u6e38\u620f\u52a8\u753b\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u753b\u9762\u4e2d\u4e00\u540d\u5973\u6027\u6b63\u6ce8\u89c6\u7740\u7535\u8111\u5c4f\u5e55\uff0c\u80cc\u666f\u662f\u4e00\u5f20\u7537\u6027\u7684\u7167\u7247"} +{"id": "5001154", "video_name": "7f156585-0dc0-5e85-b488-02db79bf1c73", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u51b0\u4e0a\u6bd4\u8d5b\u3002"} +{"id": "1004233", "video_name": "4e664400-fb05-5d6f-b773-fb811b18d524", "text": "\u4e00\u6bb5\u7f13\u6162\u7684\u5e73\u79fb\u955c\u5934\uff0c\u62cd\u6444\u591c\u665a\u4e00\u6761\u7a7a\u8361\u8361\u7684\u57ce\u5e02\u8857\u9053\u3002\u98ce\u58f0\u547c\u5578\uff0c\u552f\u4e00\u7684\u58f0\u97f3"} +{"id": "3004209", "video_name": "41ae9124-8628-5b62-b0f5-56133b2dd9d2", "text": "\u4e00\u4e2a\u6307\u5411\u89c2\u4f17\u7684\u624b\u6307\u7167\u7247\u56fe\u50cf"} +{"id": "0004863", "video_name": "1083605b-fbfc-56d0-ac5e-28e9ca0b1250", "text": "\u6211\u4eec\u53d1\u73b0\u4e86\u4e00\u5f20\u6709\u8da3\u7684\u5730\u56fe\u6587\u7269\u3002"} +{"id": "0004944", "video_name": "1202037b-fd3e-5529-9f0b-79344873234c", "text": "\u4e00\u540d\u53e4\u7f57\u9a6c\u58eb\u5175\u5728\u5766\u514b\u65c1\u73a9\u624b\u673a\u3002"} +{"id": "7002195", "video_name": "b3cc1bcb-46a5-5c33-bea7-43d92a8e65ed", "text": "\u4e00\u5f20\u732b\u7684\u7167\u7247\u7684\u7167\u7247"} +{"id": "8002931", "video_name": "fcf2d0d2-fe3a-5725-a845-bd3f228837f4", "text": "\u8ba9\u73af\u5883\u771f\u5b9e\uff0c\u77ac\u95f4\u53d8\u6210\u6811\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004798", "video_name": "0f4d302f-2fea-5888-b24a-d30e0827c69a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u706b\u8f66\u9644\u8fd1\u88ab\u8fb9\u5883\u8b66\u536b\u68c0\u67e5\u3002"} +{"id": "3004986", "video_name": "3266053c-3c75-57c5-9d61-628cea82d95f", "text": "\u8001\u83f2\u5f8b\u5bbe\u7537\u5b50\uff0c\u8fd1\u62cd\uff0c\u5fae\u7b11\uff0c\u6b23\u559c\u4e4b\u6cea\uff0c\u8eab\u5904\u65e7\u6728\u5c4b\u4e2d\u3002"} +{"id": "3005765", "video_name": "0b84bdfb-d8ac-57d4-909b-b218d3ac8bcd", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e1b\u6797\u4e2d\u7684\u718a\u718a\u70c8\u706b\u4e2d\u8bf5\u8bfb\u53e4\u5170\u7ecf\uff0c\u6811\u53f6\u5728\u7a7a\u4e2d\u98d8\u821e\uff0c\u8fd9\u662f\u4e00\u6bb5\u4ee4\u4eba"} +{"id": "2004459", "video_name": "a77d3b58-8a8f-5f69-98d7-a21d402d305e", "text": "\u6c38\u65e0\u5c9b\u7684\u8ff7\u5931\u7537\u5b69\u4eec\u548c\u6d77\u76d7\u8239\u5728\u65e5\u843d\u4e2d\u3002\u4fe1\u606f\uff1aBangarang\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007354", "video_name": "32c2a4f3-8ee6-5794-bc0b-ed0c49b9f0e6", "text": "\u4e00\u7fa4\u52a8\u7269\u5728\u89c2\u770b\u4e00\u53ea\u677e\u9f20\u3002"} +{"id": "8002829", "video_name": "a04526a5-5738-517c-9562-2e453c949a80", "text": "\u5728\u6d77\u6ee9\u4e0a\u521b\u9020\u4e00\u4e2a\u4eba\u72ec\u81ea\u5750\u7740\uff0c\u5728\u5b66\u6821\u91cc\u6709\u4eba\u63a5\u8fd1\u4ed6\u4eec\u5e76\u4e0e\u4ed6\u4eec\u4ea4\u670b\u53cb\u3002"} +{"id": "3005956", "video_name": "ab6c8753-9938-54d0-86d9-e27b1f8c5ca8", "text": "\u6027\u611f\u7684\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u3002"} +{"id": "4002249", "video_name": "3d4207c9-947b-59b4-83cc-0fa5a10c2b05", "text": "\u60c5\u4fa3\u4eec\u4f1a\u76f8\u4e92\u53d1\u9001\u4fe1\u606f\u6765\u5ea6\u8fc7\u65f6\u95f4\u3002\u9644\u5e26\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2007245", "video_name": "827fc641-e197-5847-a3db-1506943d0bca", "text": "\u98ce\u5728\u5439\uff0c\u4e91\u5728\u79fb\u52a8\u3002"} +{"id": "5001350", "video_name": "46475fae-0dd4-57a4-9ac9-2920596da117", "text": "\u4e00\u4f4d\u5973\u5b50\u7f51\u7403\u9009\u624b\u5728\u6e29\u5e03\u5c14\u767b\u7684\u6bd4\u8d5b\u524d\uff0c\u5728\u76f8\u673a\u524d\u653e\u677e\u3002\u4ee58K\u4e2d\u7b49\u5149\u7ebf\u771f\u5b9e\u5448\u73b0\u3002"} +{"id": "3006796", "video_name": "9db86014-7e09-5154-98fd-590f354b51bf", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u5de5\u5382\u81ea\u52a8\u552e\u8d27\u673a\u524d\u7684\u89c6\u9891"} +{"id": "2006503", "video_name": "47e85593-3fb0-5e5f-8799-67434cd1a803", "text": "\u54b8\u6d77\u4e0e\u6de1\u6c34\u6d77\u76f8\u9047\u7684\u4fef\u89c6\u955c\u5934\u62cd\u6444"} +{"id": "7003458", "video_name": "350fe081-67bd-5543-97b3-f5b03e4ebc40", "text": "\u7537\u5973\u89d2\u8272\u79bb\u5f00\u540e\uff0c\u6d41\u6d6a\u732b\u5931\u671b\u5730\u7559\u5728\u4e86\u539f\u5730\u3002\u732b\u4eec\u7ee7\u7eed\u7b49\u5f85\uff0c\u9965\u997f\u548c\u7edd\u671b\u5730\u76ef"} +{"id": "1004137", "video_name": "4ca5b26e-d501-5e4f-ba7d-aa3fb641aeb6", "text": "\u73b0\u5b9e\u9ad8\u5206\u8fa8\u7387\u76844K\u89c6\u9891\uff0c\u4e00\u4f4d\u65f6\u88c5\u6a21\u7279\u5728T\u53f0\u4e0a\u8d70\u79c0\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u5979\u7684\u8138\u3002"} +{"id": "7002480", "video_name": "83882d89-c346-5ab4-85cc-62a146951d03", "text": "\u751f\u9508\u7684\u5e9f\u5f03\u7269\u56de\u6536\u5de5\u4eba\u7a7f\u7740\u5c18\u571f\u98de\u626c\u7684\u9632\u62a4\u670d\uff0c\u5207\u5272\u7740\u4e00\u8258\u5e9f\u5f03\u7684\u67f4\u6cb9"} +{"id": "2007504", "video_name": "ead8df01-2143-5575-a332-eb783d64f671", "text": "\u7f8e\u56fd\u5728\u7eb3\u7cb9\u7edf\u6cbb\u4e0b\u7684\u60c5\u51b5\uff0c\u4ece\u4e00\u4e2a\u666e\u901a\u7f8e\u56fd\u4eba\u7684\u89d2\u5ea6\u6765\u770b\uff0c\u53d1\u751f\u5728\u89c4\u5219\u7c7b\u4f3c\u4e8e\u300a\u72fcenstein\u300b\u6e38\u620f20\u5e74\u540e"} +{"id": "6002582", "video_name": "9e6e3716-87ed-58b7-9022-3bd7fa7d9d34", "text": "\u5965\u4ec0\u5dde\u533b\u79d1\u5927\u5b66\u7684\u72d7"} +{"id": "0004892", "video_name": "11092f20-ee16-59ec-9c21-4389c0dac8b7", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9759\u8c27\u7684\u5c71\u8c37\u4e2d\u6f2b\u6b65\uff0c\u5149\u7ebf\u5a49\u8f6c\u52a8\u4eba\u3002"} +{"id": "0004215", "video_name": "052acd83-2b37-58b4-88b3-7f0940397f99", "text": "\u732b\u4f5c\u4e3a\u7f8e\u5f0f\u6a44\u6984\u7403\u7684\u5bbd\u63a5\u624b\n\nSource sentence: The sun rises in the east and sets in the west. \n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u897f\u65b9\u843d"} +{"id": "3004319", "video_name": "a04ccf29-3a03-502e-891a-d2be864ee5a4", "text": "3D\u52a8\u753b\u6e32\u67d3\u9177\u70ab\u5fcd\u8005\u8df3\u8dc3\u5728\u5efa\u7b51\u7269\u4e0a\uff0c4K\u7ec6\u8282\u7535\u5f71\u7ea7\u522b\uff0c60\u5e27\u6bcf\u79d2\u3002"} +{"id": "2007986", "video_name": "810c34bd-3007-540b-bc61-0ddc021679c9", "text": "\u624b\u91cc\u62b1\u7740\u5a74\u513f\u7684\u5feb\u4e50\u7684\u5988\u5988\u548c\u4e09\u4e2a\u4e0d\u540c\u5e74\u9f84\u7684\u5b69\u5b50\u3002"} +{"id": "0004993", "video_name": "12e0871a-6c30-5876-92b4-62bbda2580f2", "text": "\u5979\u7684\u5634\u5df4\u5728\u7b11\uff0c\u5979\u7684\u773c\u775b\u5f88\u5f00\u5fc3\uff0c\u80cc\u666f\u91cc\u7684\u73ab\u7470\u82b1\u5728\u6643\u52a8\u3002\u4e00\u4f4d\u5145\u6ee1\u6d3b\u529b\u7684\u5c0f"} +{"id": "1004348", "video_name": "50357d8a-bac5-54c6-8745-511aa0614426", "text": "\u4e00\u9053\u53ea\u7531\u725b\u8089\u3001\u82f9\u679c\u3001\u6a59\u5b50\u3001\u9999\u8549\u3001\u897f\u7ea2\u67ff\u3001\u6d0b\u8471\u3001\u9ec4\u74dc\u3001\u9752\u8fa3\u6912\u548c"} +{"id": "7002524", "video_name": "e029dce0-17c8-59e2-96e8-6c2e35d813c2", "text": "\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u88d9\u5b50\u7684\u7f8e\u4e3d\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u84dd\u5929\u767d\u4e91\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5979\u5fae\u7b11"} +{"id": "4003009", "video_name": "6ee7426e-fca2-5859-bd66-d8c5f8f8ea97", "text": "\u6e90\u53e5\uff1a\u4eca\u654f\u98ce\u683c\u3002\u52a8\u6f2b\u98ce\u683c\u3002\u4e09\u4e2a\u767d\u5149\u8eab\u5f71\u5728\u7d2b\u8272\u5929\u7a7a\u7684\u4e91\u95f4\u5b09\u620f\u3002\u5730\u9762\u662f\u677e\u8f6f\u7684"} +{"id": "6003946", "video_name": "d127f762-3e6e-59a0-a08f-f7ce0b6f79f2", "text": "\u5176\u4e2d\u4e00\u4e2a\u662f\u963f\u59c6\u65af\u7279\u4e39\u5c9b\uff0c\u662f\u6cd5\u56fd\u7684\u79d1\u5b66\u57fa\u5730\u3002\u6211\u4eec\u7684\u552f\u4e00\u5e0c\u671b\u5c31\u662f\u5230\u8fbe\u8fd9\u4e9b\u904d\u5e03\u65e0\u57a0\u6d77\u6d0b\u7684"} +{"id": "2007830", "video_name": "27ccf68c-a608-5c28-8ae8-dd373aec61a0", "text": "\u4e00\u4e2a\u5e26\u6709\u201cKUMBA\u201d\u6587\u5b57\u7684\u6807\u5fd7\uff0c\u91c7\u7528\u8c6a\u534e\u4e30\u5bcc\u7684\u91d1\u8272\u8d28\u611f\uff0c\u91d1\u8272\u6c99\u5b50\u5728\u7a7a\u4e2d\u98de\u821e\u7740\u706b\u7130\u30028"} +{"id": "4004055", "video_name": "43609ff9-ac5a-5c27-be75-36abeb87c9c7", "text": "\u4e00\u53f0\u5438\u5c18\u673a\u5668\u4eba\u6b63\u5728\u5ba2\u5385\u91cc\u6e05\u6d01\u5730\u677f\u3002"} +{"id": "2004963", "video_name": "c66c50d1-c017-5669-a67a-ddcb622aab4d", "text": "\u8fea\u58eb\u5c3c\u89d2\u8272\u5728\u6674\u6717\u7684\u6e38\u4e50\u56ed\u4e2d\u3002"} +{"id": "7004164", "video_name": "6e8d165a-2479-5647-b2b0-ec951cd5453d", "text": "\u9a91\u58eb\u4e0e\u9f99\u640f\u659720\u79d2\u3002"} +{"id": "6004558", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "\u57ce\u5e02\uff0c\u7167\u660e\uff0c\u6865\u6881\uff0c\u96e8\uff0c\u98ce\uff0c\u4e91\uff0c\u4eba\u6d41\uff0c\u4eba\u7fa4"} +{"id": "3006832", "video_name": "52fa0cf7-3ed3-54ae-a908-d489a1cf79cb", "text": "\u4e00\u53ea\u5de8\u578b\u795e\u517d\u5728\u53e4\u5e9e\u8d1d\u9057\u5740\u4e2d\u884c\u8d70\u3002"} +{"id": "4003441", "video_name": "a855e8ce-68bd-5ba8-b35f-08a4ee096773", "text": "\u4e00\u500b\u5750\u5728\u8857\u982d\u7684\u7121\u5bb6\u53ef\u6b78\u7684\u7537\u4eba\u5411\u4e0a\u4f38\u624b\uff0c\u4e00\u500b\u7ad9\u5728\u4ed6\u8eab\u65c1\u7684\u6709\u9322\u4eba\u5411\u4e0b\u4f38\u624b\u3002"} +{"id": "4003245", "video_name": "8c52f686-cc02-59d1-a250-af8a1ebe52c9", "text": "\u4f20\u7edf\u8336\u9053\uff0c\u4eba\u4eec\u559d\u8336\u3002"} +{"id": "4004009", "video_name": "f472e240-68bc-54e8-9e10-d63aaebce22e", "text": "\u535a\u7269\u9986\u91cc\u7684\u4e00\u4e2a\u53ef\u7231\u5973\u5b69\u597d\u5947\u5730\u770b\u7740\u73bb\u7483\u5c55\u67dc\u91cc\u7684\u84dd\u767d\u74f7\u82b1\u74f6\u3002"} +{"id": "4003114", "video_name": "761855ff-5417-51e2-a55b-31c96cf20daf", "text": "\u516b\u5341\u4ebf\u4eba\u5728\u65f6\u4ee3\u5e7f\u573a\u8bb2\u6545\u4e8b\uff0c\u5305\u62ec\u8857\u5934\u827a\u4eba\u3002"} +{"id": "2004722", "video_name": "d5ee0ff9-9c08-5dba-ae7a-91d49867100e", "text": "\u8f9b\u666e\u68ee\u5bb6\u5ead\u7b2c\u4e00\u5b63\u7684\u4e00\u5e55\u573a\u666f\u3002"} +{"id": "0005873", "video_name": "229d03b2-8505-5a05-a72b-a64b84914628", "text": "\u82f1\u6587\u539f\u53e5\uff1aA handsome rock star dressed in leather and denim drinks a glass of whiskey, his suitcases are packed, he is in his hotel room\u3002\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u4e00\u4e2a\u7a7f\u7740\u76ae\u9769"} +{"id": "8002204", "video_name": "f172e272-7bfe-58d3-ade2-a89eb2729eb5", "text": "\u4e00\u7fa4\u4eba\u6b63\u5728\u70ed\u70c8\u8ba8\u8bba\u672a\u6765\u3002"} +{"id": "5001744", "video_name": "a5f630b3-7dfa-5c34-89ae-b3fdaa30e7c0", "text": "\u4fc4\u7f57\u65af\u6b4c\u624b\u683c\u91cc\u6208\u91cc\u00b7\u5217\u666e\u65af\u6234\u7740\u9ed1\u8272\u5706\u5f62\u773c\u955c\uff0c\u624b\u6301\u9ea6\u514b\u98ce\uff0c\u8eab\u7a7f\u8fea"} +{"id": "1003833", "video_name": "46bb7f9b-a872-595d-af61-88a999dc2920", "text": "\u4e00\u7fa4\u4e2d\u570b\u52d5\u6f2b\u7537\u4eba\u5750\u5728\u5df4\u58eb\u5ea7\u4f4d\u4e0a\uff0c\u9762\u5bb9\u4e9e\u6d32\uff0c\u8eca\u5167\u9ed1\u6697\uff0c\u4e58\u5ba2\u5011\uff0c\u5728\u591c\u665a\u4e2d"} +{"id": "4002071", "video_name": "9a7b8802-f601-579f-80df-7d4b8ba05238", "text": "\u8ba9\u9f99\u52a8\u8d77\u6765 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "1005277", "video_name": "6109ddf0-ab79-52a0-9de4-e87eb6d34017", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u5c0f\u5b69\u7275\u7740\u4ed6\u7236\u4eb2\u7684\u624b\uff0c\u8fdc\u8fdc\u5730\u89c2\u770b\u57ce\u5e02\u7740\u706b\u3002\u7528\u6df1\u8272\u5c06\u573a\u666f\u6e32\u67d3\u5f97\u620f"} +{"id": "4002417", "video_name": "64e2e446-bde2-59cf-b501-e83472907a20", "text": "\u72ee\u5b50\u5076\u7136\u53d1\u73b0\u4e00\u53ea\u88ab\u56f0\u7684\u6323\u624e\u7684\u8001\u9f20\u3002"} +{"id": "4003090", "video_name": "865846ef-1455-57bb-948a-8d268cb11534", "text": "\u65e5\u843d\u7167\u5c04\u5728\u8fdc\u5904\u7684\u5c71\u5cf0\u4e0a\uff0c\u8349\u539f\u4e0a\u7684\u5f2f\u66f2\u9053\u8def\u4e0a\u770b\u5230\u4e00\u8f86\u8f7f\u8f66\u4ece\u8fdc\u5904\u75be\u9a70\u800c\u6765\u3002"} +{"id": "0004767", "video_name": "0ee306fe-5ab1-5056-a29b-a9409be67c45", "text": "\u533b\u9662\u7684\u7acb\u4f53\u4e66\u5f39\u51fa\u5f53\u5b83\u6253\u5f00\u65f6\u3002"} +{"id": "8003188", "video_name": "632966ff-45ae-5452-af6b-a934688b4514", "text": "\u4e1b\u6797\u4e2d\u7684\u4e00\u53ea\u5de8\u5927\u7684\u5927\u8c61\uff0c\u7ad9\u5728\u4e00\u4e2a\u5fae\u5c0f\u7684\u4eba\u9762\u524d\u3002"} +{"id": "3006077", "video_name": "518d46a2-09a6-5f51-b1c8-6ac54562553d", "text": "\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\u533a\u7684\u96ea\u5c71\u4e3a\u80cc\u666f\uff0c\u7f8e\u4e3d\u7684\u573a\u666f\u5448\u73b0\u5728\u773c\u524d\uff1a\u745e\u58eb\u5976\u725b\u5728\u5f00\u9614"} +{"id": "0006060", "video_name": "25ef266e-fab5-5b71-a081-bdfbb78db7bd", "text": "\u7ea2\u87f9\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u4e0a\u884c\u8d70\u3002"} +{"id": "6003368", "video_name": "8820067a-ca73-56f1-9c39-a6a3547a7681", "text": "\u4e00\u8258\u5728\u72c2\u91ce\u6d77\u6d0b\u4e0a\u7684\u8239\u3002"} +{"id": "1006575", "video_name": "786fff39-6b57-56b1-8ced-20d3c2497856", "text": "\u5e74\u5e7c\u5b69\u5b50\u7684\u89d2\u8272\u540d\u4e3a\u9996\u5e2d\u827e\u8fea\u5148\u751f\u3001\u52a9\u624b\u6cd5\u8fea\u5148\u751f\u548c\u5973\u5b69\u624e\u62c9\u5c0f\u59d0\u3002"} +{"id": "2005487", "video_name": "447f739b-c91d-5f8b-b40a-c365f1dd68f1", "text": "\u732b\u5531\u6b4c\uff0c\u70df\u82b1\u5e86\u795d\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006158", "video_name": "70c27d78-72ff-5523-ad0e-f97831c16eb7", "text": "\u5c0f\u884c\u661f\u649e\u51fb\u706b\u661f\u65f6\u53d1\u51fa\u5de8\u54cd\uff0c\u5f62\u6210\u4e86\u4e00\u4e2a\u5de8\u5927\u7684\u5c18\u57c3\u4e91\u3002"} +{"id": "0005202", "video_name": "168d743c-997b-553f-b0c6-2d1b7b8c9f4b", "text": "\u4e00\u4e2a\u4eba\u5728\u767d\u7eb8\u4e0a\u5199\u5b57\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u53f0\u663e\u793a\u8d22\u52a1\u56fe\u5f62\u7684\u7535\u8111\u3002"} +{"id": "2006309", "video_name": "e89dc9d3-1895-5b43-8d2d-1a475b477ab4", "text": "\u8ba9\u6bcf\u4e2a\u4eba\u76f8\u4e92\u770b\u7740\u5f7c\u6b64\u3002"} +{"id": "1003650", "video_name": "43383061-0e10-5f1d-94d3-4726dfb68c0c", "text": "\u4e3b\u63a7\u7206\u70b8\u6838\u5fc3\u5b89\u5353\u6218\u58eb\uff0c\u7531H\u00b7R\u00b7\u5409\u683c\u5c14\u548c\u8482\u59c6\u00b7\u4f2f\u987f\u8bbe\u8ba1\u3002"} +{"id": "7003302", "video_name": "d331c7cb-cfdd-5ff0-8ecc-778e10a8cca7", "text": "and black robes adorned their bodies as they chanted and danced to the beat of the drums.\n\nSource sentence: The teacher handed out the homework assignment and reminded the students that it was due on Friday."} +{"id": "2007317", "video_name": "c88fb2b4-9d12-54ea-89b6-4d2e42877b53", "text": "\u6444\u50cf\u673a\u7a7f\u8fc7\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u666f\u89c2\uff0c\u706f\u5149\u5728\u9ed1\u8272\u7684\u5929\u7a7a\u4e2d\u95ea\u70c1\u5982\u661f\u3002\u57ce\u5e02\u5145\u6ee1\u6d3b\u529b"} +{"id": "3004836", "video_name": "b6a212e4-05c8-5b51-be34-35d3c76aa38d", "text": "1850\u5e74\u6cb3\u4e2d\u6f02\u6d6e\u7740\u6d77\u80c6\u3002"} +{"id": "6004806", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "\u6bd4\u5c14\u00b7\u76d6\u8328\u5411\u5fae\u8f6f\u603b\u90e8\u6325\u624b\u544a\u522b\u3002"} +{"id": "7004618", "video_name": "169338bd-e3b8-5f50-a5d4-3448a3f98f21", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u548c\u5a74\u513f\u6b63\u5728\u5a74\u513f\u8f66\u91cc\u6563\u6b65\u3002"} +{"id": "5001077", "video_name": "effaef15-e205-527c-b573-24d2a813a7f3", "text": "\u624b\u6301\u957f\u77db\u7684\u730e\u4eba\u5c0f\u5fc3\u5730\u7a7f\u8fc7\u9634\u68ee\u7684\u9ed1\u6697\u68ee\u6797\u3002"} +{"id": "2005365", "video_name": "8de83c70-527e-5f6e-a68a-c64cc62a9f29", "text": "\u5973\u4eba\u5728\u4e00\u5f202023\u5e7411\u6708\u7684\u65e5\u5386\u4e0a\u5199\u5b57\u3002"} +{"id": "0003334", "video_name": "3bcc19c3-7875-50be-ae1d-50f69f53a4c9", "text": "\u6bcf\u79d224\u5e27\u7684\u5f15\u5bfc\u4e0b\uff0cVHS\u5c3e\u90e8\u9897\u7c92\u72b6\u7684\u6d77\u9a6c\u4ece\u6d77\u6ce1\u6cab\u4e2d\u8bde\u751f\u3002"} +{"id": "2007503", "video_name": "49c98ea2-bdd3-5a49-b2cc-ba0909bcbcd6", "text": "\u7f8e\u4e3d\u7684\u4e9a\u6d32\u5973\u6027\u7ad9\u5728\u955c\u5934\u524d\uff0c\u5411\u4e0a\u770b\u3002"} +{"id": "2004232", "video_name": "caecdb51-749f-5ee3-95ba-1e7334b0a3f0", "text": "\u521b\u9020\u4e00\u4e2a\u5e26\u7740\u5e0c\u671b\u7684\u5929\u4f7f\u98de\u8fc7\u6218\u4e89\u7684\u5e9f\u589f\u3002"} +{"id": "2007563", "video_name": "6c6d7466-a9b3-5844-b00b-70c004cf1e00", "text": "\u4e00\u53ea\u556e\u9f7f\u52a8\u7269\u88ab\u8001\u9f20\u5939\u5939\u4f4f\uff0c\u56e0\u4e3a\u4e0a\u9762\u6709\u770b\u8d77\u6765\u5341\u5206\u7f8e\u5473\u7684\u5976\u916a\u3002"} +{"id": "1006232", "video_name": "723a34b1-c0c7-5a46-bf3c-2c0eeb11b724", "text": "\u5934\u6234\u515c\u5e3d\u7684\u6b66\u58eb\u5728\u7f51\u7edc\u57ce\u5e02\u4e2d\u4e0e\u673a\u7532\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "4004451", "video_name": "fba6db9a-b5e5-52fe-ba50-5e58880e72a9", "text": "\u7f8e\u4e3d\u7684\u661f\u7a7a\uff0c\u8d85\u51e1\u7684\u80fd\u91cf\uff0c\u89c9\u9192\uff0c\u8d85\u8d8a\u3002 \u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "1003329", "video_name": "3d4554e3-e6bb-5f79-a15e-8d4c978dac48", "text": "\u4e00\u4e2a\u4eba\u5728\u52a0\u62ff\u5927\u7684\u5c71\u4e0a\u884c\u8d70\u3002"} +{"id": "5001792", "video_name": "b46236d1-1ea2-5664-a626-311c01df8853", "text": "\u80cc\u666f\u662f\u4e00\u5f2f\u6708\u7684\u591c\u666f\u57ce\u5e02\u3002"} +{"id": "4004249", "video_name": "f5016e64-69c7-552a-858d-63c2f70529dc", "text": "\u52a8\u753b\u4e2d\u6709\u4e00\u5835\u5899\u7740\u706b\uff0c\u6709\u4eba\u8bd5\u56fe\u6251\u706d\u706b\u7130\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "3005652", "video_name": "db6125e3-8cdf-51d1-8b4b-1aa85a667f3c", "text": "1920\u5e74\u4ee3\u7684\u6cb9\u4e95\u5728\u62bd\u6cb9\uff0c\u51e0\u4e2a\u7537\u4eba\u7ad9\u5728\u5468\u56f4\u3002"} +{"id": "1005145", "video_name": "5ed05af2-8a54-5992-bd92-0482997656a6", "text": "\u638c\u63a7\u5168\u7403\u7684\u91d1\u94b1\u3002"} +{"id": "5001718", "video_name": "9cf9f0b6-e75b-5f3e-a12b-d93b885ea9ce", "text": "\u706b\u661f\u8868\u9762\uff0c\u6c99\u6f20\u533a\u57df\uff0c\u9f99\u5377\u98ce\uff0c\u53d1\u5c04\u7684\u5b87\u5b99\u98de\u8239\uff0c\u5b87\u822a\u5458\uff0c\u9ad8\u8d28\u91cf\uff0c\u9ad8\u7ec6\u8282\u3002"} +{"id": "1006816", "video_name": "7cb386a4-4f35-5451-bb43-0328a37dbf36", "text": "\u4e00\u74f6\u6a59\u6c41\u4ece\u4e00\u7247\u6a59\u6c41\u4e2d\u6d6e\u73b0\u51fa\u6765\uff0c\u53ef\u4ee5\u611f\u53d7\u5230\u6a59\u6c41\u7684\u679c\u8089\u3001\u6c34\u82b1\u98de\u6e85\u7684\u52a8\u6001\u548c"} +{"id": "2007061", "video_name": "7ff24ff1-5291-573a-a95c-2af2f52a865e", "text": "\u5728\u53e4\u8001\u7684\u963f\u5179\u7279\u514b\u9057\u5740\u4e0a\u65b9\u98de\u884c\uff0c\u9ad8\u9ad8\u5728\u4e0a\u4fef\u77b0\u6811\u6728\u3002"} +{"id": "0004956", "video_name": "1232b6d5-36b5-5bbe-bd8a-e4d0e9d3aa4c", "text": "\u9ed1\u53d1\u548c\u7eb9\u8eab\u7684\u52a8\u6f2b\u732b\u5973\u6325\u624b\u8bf4\u4f60\u597d\u3002"} +{"id": "2003670", "video_name": "350b088b-9576-5342-8e26-207c883ba0f8", "text": "\u521b\u9020\u4e00\u4e2a\u7a7f\u6234\u5e3d\u5b50\u7684\u7f8e\u4e3d\u7537\u5b69\uff0c\u4ed6\u4f18\u96c5\u5730\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u624b\u6301\u98df\u7269\uff0c\u80cc\u666f\u4e3a\u7eff\u5e55\u3002"} +{"id": "8003380", "video_name": "a82105cb-96aa-5856-abb4-5ac9c01516fc", "text": "\u4e00\u53ea\u6050\u9f99\u6467\u6bc1\u57ce\u5e02\uff0c\u4f7f\u5176\u66f4\u771f\u5b9e\u3002"} +{"id": "8002084", "video_name": "331979b7-b0db-58e0-8408-10cbecaf11c2", "text": "\u91d1\u67aa\u9c7c\u5728\u6d77\u91cc\u5411\u524d\u731b\u6e38\u3002"} +{"id": "2005164", "video_name": "a1f01797-6a75-5747-87a4-38584e997dc7", "text": "\u52c7\u6562\u7684\u5c0f\u718a\u548c\u52a8\u7269\u670b\u53cb\u4e00\u8d77\u73a9\u800d\uff0c\u611f\u5230\u5feb\u4e50\u300216:9\u3002"} +{"id": "3003635", "video_name": "14a5289c-f0ab-5ae0-a567-b4390d575839", "text": "\u5728\u8fd9\u5f20\u7167\u7247\u4e2d\u6dfb\u52a03\u4e2a\u5de5\u4eba\u3002"} +{"id": "3003058", "video_name": "98946546-e59b-5a80-817d-033496256a29", "text": "\u91d1\u5236\u7687\u51a0\u98de\u821e\u5728\u4e66\u672c\u4e0a\u65b9\u3002"} +{"id": "4004744", "video_name": "415ac662-4d55-523e-b3ec-d5d1c6bdb21e", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5e9f\u5f03\u7684\u5efa\u7b51\u91cc\u8ffd\u9010\u53e6\u4e00\u4e2a\u7537\u4eba\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2004822", "video_name": "8e84c0ad-5472-5682-8845-5dfc3ef9f561", "text": "\u4e24\u4e2a\u7537\u4eba\u57281990\u5e74\u4ee3\u521d\u671f\u5728\u4e2d\u56fd\u9999\u6e2f\u7684\u8857\u4e0a\u884c\u8d70\u3002"} +{"id": "2005818", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "\u4e00\u4e2a\u4eba\u5236\u9020\u68a6\u60f3\u6c7d\u8f66\u3002"} +{"id": "3003785", "video_name": "41066484-3755-5ac6-8652-a19648a2aac1", "text": "\u4e00\u6761\u8d70\u5eca\uff0c\u5176\u5899\u58c1\u7531\u5de8\u5927\u7684\u5c4f\u5e55\u7ec4\u6210\uff0c\u5c4f\u5e55\u4e0a\u5c55\u793a\u7740\u8457\u540d\u753b\u4f5c\u30013D\u6e32\u67d3\u548c\u8d85\u903c"} +{"id": "7003452", "video_name": "a25f6599-4db1-5496-8ed7-a720f0d5f9de", "text": "\u4e91\u6735\u5728\u98d8\u52a8\uff0c\u5e06\u5728\u98de\u821e\uff0c\u592a\u9633\u5728\u7167\u8000\u3002"} +{"id": "2006277", "video_name": "57e6f3a3-fb88-50a2-be26-ef62dde41067", "text": "\u5e05\u6c14\u7684\u7537\u5b50\u7a7f\u7740\u725b\u4ed4\u5939\u514b\u5728\u53f0\u4e0a\u8d70\uff0c\u903c\u771f\uff0c\u9ad8\u6e05\u7ec6\u8282\uff0c8K\u3002"} +{"id": "3005566", "video_name": "0629d314-78f2-597e-88bf-373e541253b3", "text": "\u4e00\u4e2a\u7403\u5728\u65e5\u843d\u65f6\u5915\u9633\u897f\u4e0b\u7684\u8857\u9053\u4e0a\u5f39\u8df3\u7740\u671d\u7740\u4e0b\u6c34\u9053\u6eda\u53bb\uff0c\u6700\u540e\u843d\u5165\u5176\u4e2d\u3002"} +{"id": "8003121", "video_name": "16d98e6e-5661-55e3-9031-19a974043561", "text": "\u5236\u4f5c\u4e00\u4e2a\u4ee5\u6211\u7684\u540d\u5b57\uff08Naninoide\uff09\u4e3a\u4e3b\u89d2\u7684\u201c\u6211\u7684\u4e16\u754c\u201d\u4ecb\u7ecd\u89c6\u9891\u3002"} +{"id": "7002331", "video_name": "d9f647fe-7b8b-5dc0-9ee2-47d2d6198ca1", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6469\u5929\u5927\u697c\u9876\u4e0a\u8fd0\u7403\uff0c\u5468\u56f4\u6709\u5176\u4ed6\u5efa\u7b51\u7269\u3002"} +{"id": "7004068", "video_name": "28015589-4e63-5ed2-b1c0-b078b9ee791b", "text": "\u521b\u5efa\u4e00\u4e2a\u975e\u5e38\u53ef\u7231\u7684\u5154\u5b50\u5bb6\u5ead\uff0c\u5305\u62ec\u4e00\u53ea\u7236\u5154\u3001\u4e00\u53ea\u6bcd\u5154\u548c\u4e00\u4e2a\u5c0f\u5973\u513f\u5154\u5b9d\u5b9d\u3002"} +{"id": "2004902", "video_name": "fc4155b0-c3bd-58e8-8385-e96c111e7fae", "text": "\u8ba9\u89d2\u8272\u7684\u9762\u90e8\u8868\u60c5\u5a01\u80c1\u6027\u589e\u5f3a\uff0c\u80cc\u666f\u4e2d\u6709\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "8001501", "video_name": "ea7e1016-7d76-54a6-8493-2e8652c677d5", "text": "\u5b87\u5b99\u4e2d\u51fa\u73b0\u4e86\u5de8\u9b54\u661f\u4e91\uff0c\u4ed6\u79bb\u5730\u7403\u5f88\u8fd1\uff0cOctane\u6e32\u67d3\u3002"} +{"id": "2005762", "video_name": "5b2786f7-8a4e-5d37-b457-b8803a1c3c52", "text": "\u4e00\u4f4d\u5927\u5b66\u751f\u5728\u535a\u7269\u9986\u88ab\u6302\u5728\u5899\u4e0a\u7684\u753b\u4f5c\u3001\u5965\u65af\u5361\u83b7\u5956\u7535\u5f71\u3001\u83b7\u5956\u6444\u5f71\u6240\u8ff7\u60d1\uff0c\u611f"} +{"id": "0004210", "video_name": "0504b553-6178-5033-b0d8-eb127060cadc", "text": "\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u7206\u70b8\uff0c\u6234\u592b\u00b7\u5409\u672c\u65af\u98ce\u683c"} +{"id": "0006716", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "\u6709\u7740\u575a\u5b9a\u7684\u5fc3\uff0c\u72ee\u5b50\u8e0f\u4e0a\u4e86\u65c5\u7a0b\u3002\u4ed6\u8e0f\u8fc7\u9ad8\u8349\uff0c\u5c0f\u5c0f\u7684\u722a\u5b50\u51e0\u4e4e\u6ca1\u6709\u53d1\u51fa\u58f0\u97f3\u3002\u8349\u5730"} +{"id": "5001156", "video_name": "8e79beda-90a5-5ec4-aec3-b1c23f763103", "text": "\u52a8\u6f2b\u573a\u666f\uff0c\u9ed1\u53d1\u6df1\u7738\u7684\u5e74\u8f7b\u5973\u5b69\u5750\u5728\u5e8a\u4e0a\u5f39\u5409\u4ed6\uff0c\u8138\u4e0a\u5e26\u7740\u6109\u60a6\u800c\u5e73\u9759\u7684\u8868"} +{"id": "7002250", "video_name": "5f8aa4b4-2ba9-50ce-8780-d910226a383d", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u8dd1\u6b65\uff0c\u4e00\u5207\u90fd\u5f88\u81ea\u7136\u3001\u771f\u5b9e\uff0c\u9053\u8def\u4e0a\u6ca1\u6709\u8f66\u8f86\uff0c\u91c7\u75283D\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "1003684", "video_name": "43ee77f5-5f33-5c26-b930-832bebeb0f3c", "text": "\u5723\u6258\u9a6c\u65af\u00b7\u963f\u594e\u90a3\u7684\u903c\u771f\u5f62\u8c61\uff0c\u4ed6\u53f3\u624b\u62ff\u7740\u4e00\u672c\u4e66\u3002"} +{"id": "0003283", "video_name": "3ad507cd-a202-5521-8d12-9d2b8741bbf5", "text": "\u955c\u5934\u5feb\u901f\u79fb\u52a8\u7a7f\u8d8a\u5c71\u8109\uff0c\u9633\u5149\u7167\u8000\u3002"} +{"id": "8002184", "video_name": "ffab0751-542c-5ce6-b716-0fe9618d3446", "text": "\u8dd1\u6b65\uff0c\u98ce\u5439\u8138\u4e0a\uff0c\u5934\u53d1\u98d8\u52a8\u3002"} +{"id": "8003160", "video_name": "d20e7b3f-ec7c-5c07-89c8-2ea4a976061b", "text": "\u4e00\u4e2a\u6587\u6848\u64b0\u5199\u4eba\u4e3a\u6570\u5b57\u8425\u9500\u4eba\u5458\u64b0\u5199\u51fa\u8272\u7684\u6587\u6848\u6765\u5e2e\u52a9\u4ed6\u7684\u4e1a\u52a1\u3002"} +{"id": "4003231", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "\u714e\u997c\u4e0a\u878d\u5316\u7684\u9ec4\u6cb9\u548c\u7cd6\u6d46"} +{"id": "2006232", "video_name": "6ded0582-57c1-51c1-aece-d311a126d000", "text": "\u804c\u4e1a\u6444\u5f71\u5e08\u62cd\u6444\u4e86\u4e00\u4e2a\u50cf\u4f0a\u65af\u62c9\u514b\u91cc\u65af\u8482\u7eb3\u6d77\u8fb9\u6751\u5e84\u7684\u65e5\u843d\u9b54\u6cd5\u5149\u7ebf\u30018"} +{"id": "0003717", "video_name": "424c8e64-d659-52c6-ba40-ddcb8e51e3f1", "text": "\u591c\u665a\u7684\u70df\u706b\u5728\u865a\u62df\u76843D\u6e32\u67d3\u57ce\u5e02\u4e2d\uff0c\u96ea\u82b1\u7eb7\u7eb7\u98d8\u843d\u3002"} +{"id": "6002113", "video_name": "d03571cc-a9e9-59ce-aea8-5218318cd4c6", "text": "\u4e00\u4e2a\u4eba\u671d\u96a7\u9053\u8dd1\u53bb\uff0c\u4f46\u5f53\u4ed6\u8d8a\u6765\u8d8a\u63a5\u8fd1\u65f6\uff0c\u96a7\u9053\u5374\u79bb\u4ed6\u8fdc\u53bb\u3002"} +{"id": "2005932", "video_name": "91d6df9b-0786-5513-9248-1cc5a4be52de", "text": "\u4e00\u540d\u8b66\u5bdf\u6b63\u5728\u6ed1\u677f\u6280\u5de7\u3002"} +{"id": "1004206", "video_name": "4dbd83b7-b86a-52d5-94e0-3a53fb565b3f", "text": "\u72d0\u72f8\u8d70\u8fd1\u6811\u4e0b\uff0c\u62ac\u5934\u770b\u7740\u4e4c\u9e26\uff0c\u76ee\u5149\u51dd\u89c6\u3002"} +{"id": "4002695", "video_name": "7d0f380d-048c-5332-a640-9c5a15a3bd84", "text": "\u8bf7\u9644\u4e0a\u4e00\u5f20\u753b\u9762\u6e05\u6670\u3001\u9ad8\u8d28\u91cf\u3001\u620f\u5267\u5316\u3001\u903c\u771f\u76848K UHD\u7167\u7247\uff0c\u5c55\u793a\u4e00\u4f4d\u5973\u6027\u5728\u82b1\u56ed\u4e2d\u4e3e\u8d77"} +{"id": "7004240", "video_name": "c24e55f1-78ca-5c77-9c71-bf9d0c9d0bf0", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u7ad9\u5728\u7f8e\u98df\u8857\u4e0a\uff0c\u5979\u7684\u98ce\u683c\u65e2\u5199\u5b9e\u53c8\u5177\u6709\u7f51\u7edc\u535a\u5ba2\u7684\u98ce\u683c\u3002\n\nSource sentence: The teacher asked the students to read the"} +{"id": "4002834", "video_name": "d38812e8-29fe-5e36-bc02-6e03476191c4", "text": "\u4e00\u7fa4\u4e09\u53ea\u6591\u9a6c\u4e00\u8d77\u7a7f\u8fc7\u975e\u6d32\u5927\u8349\u539f\u3002"} +{"id": "6002215", "video_name": "12aff16c-8ae7-5c49-ab70-c03eb2e03fe8", "text": "\u4e00\u53ea\u72d7\u5728\u6563\u6b65\uff0c\u8def\u8fb9\u6709\u4e00\u68f5\u6811\u3002"} +{"id": "4003411", "video_name": "b90e11c8-ce60-50d1-9aa3-8234c7961e25", "text": "\u4e00\u4e2a\u5929\u4f7f\u548c\u4e00\u4e2a\u6076\u9b54\u5750\u5728\u4e00\u8d77\u770b\u6708\u4eae\u7206\u70b8\u3002\n\nSource sentence: The sun is setting, painting the sky with beautiful colors. \n\n\u592a\u9633\u6b63\u5728\u843d\u5c71\uff0c\u7528"} +{"id": "2006654", "video_name": "2fde00b4-a866-5911-b742-f96663ab6583", "text": "\u4e00\u540d30\u5c81\u7537\u5b50\u5728\u8d85\u5e02\u5185\uff0c\u624b\u6301\u624b\u673a\uff0c\u63a8\u7740\u88c5\u6ee1\u5404\u79cd\u5546\u54c1\u7684\u8d2d\u7269\u8f66\uff0c\u573a\u666f\u8d85\u771f\u5b9e\uff0c\u7167\u7247\u7ea7\u522b\uff0c4K\u3002"} +{"id": "3004743", "video_name": "ec95d602-10dc-562e-97bd-6cb640eac08e", "text": "\u4e00\u4e2a\u540e\u9662\u8c6a\u534e\u9732\u53f0\u533a\uff0c\u6811\u6728\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "1004475", "video_name": "52df0f25-48d0-5799-a7d0-aecd864407b6", "text": "\u5b62\u5b50\u5145\u6ee1\u4e86\u7a7a\u6c14\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "3004874", "video_name": "3847ff8f-13b2-5ca4-80dd-859cd6e9b725", "text": "\u5c55\u793a\u4e00\u53ea\u5728\u6cb3\u4e2d\u6e38\u6cf3\u7684\u9c91\u9c7c\u3002"} +{"id": "5001418", "video_name": "95081d86-e713-556a-ad4a-2446f646db66", "text": "\u4e00\u53ea\u4f01\u9e45\u624b\u63e1\u6930\u5b50\u996e\u6599\u5728\u68ee\u6797\u91cc\u884c\u8d70\u3002"} +{"id": "3005651", "video_name": "c572517c-b017-5e72-8d02-acdb33431ada", "text": "\u513f\u7ae5\u73a9\u4e50\u573a\u666f\u5957\u88c5\uff0c\u5305\u62ec\u6ed1\u6ed1\u68af\u77e2\u91cf\u56fe\u3002"} +{"id": "7002883", "video_name": "7336a2c4-1311-5bae-ba95-0fb146282866", "text": "\u963f\u52aa\u62c9\u683c\u98a4\u6296\u7740\u4f38\u51fa\u624b\u6765\uff0c\u4ed6\u7684\u63d0\u706f\u6295\u5c04\u51fa\u8be1\u5f02\u7684\u9634\u5f71\uff0c\u53bb\u7ffb\u9605\u90a3\u672c\u770b\u4e0a\u53bb\u5386\u7ecf"} +{"id": "4003577", "video_name": "65f11d77-32c7-52c5-9b69-2cca144c5516", "text": "\u7ea2\u773c\u775b\u7684\u5973\u5b69\u52a8\u6f2b\uff0c\u5468\u56f4\u98d8\u7740\u6a31\u82b1\u74e3\u3002"} +{"id": "2006124", "video_name": "41a653b3-90f4-595b-92c1-8102feabbb05", "text": "DNA\u590d\u5236\u7684\u7167\u7247\u822c\u903c\u771f\u63cf\u7ed8\u3002"} +{"id": "8002238", "video_name": "74e92d29-30d1-55d4-8f2b-37bc9fe5fb4b", "text": "\u4e00\u4e2a\u63d2\u753b\uff0c\u753b\u7740\u4e00\u53ea\u72ee\u9e6b\u5c79\u7acb\u5728\u57ce\u5821\u5854\u4e0a\uff0c\u5b88\u536b\u7740\u4e00\u53ea\u88c5\u6ee1\u53e4\u4ee3\u6587\u7269\u548c\u79d8\u5bc6\u7684\u5b9d"} +{"id": "8003184", "video_name": "f1dc711a-c9df-5f66-a42c-a849299dbb3f", "text": "\u6708\u76f8\u4ece\u65b0\u6708\u5230\u6ee1\u6708\u7684\u5feb\u901f\u52a8\u753b\u3002"} +{"id": "6004760", "video_name": "6beb908e-df20-55d7-925f-84f6853c02f0", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u6b27\u6d32\u519c\u6c11\u9ad8\u5174\u5730\u68c0\u67e5\u7740\u5b8c\u7f8e\u7684\u67e0\u6aac\u3002"} +{"id": "2006158", "video_name": "aa670d93-afeb-575d-a23b-d2d1c31aa283", "text": "\u6709\u4e00\u8f86\u7ea2\u8272\u4fdd\u65f6\u6377911\u5728\u6c99\u6f20\u5730\u5e26\u7684\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u6444\u50cf\u673a\u5728\u9876\u90e8\u7684\u5e7f\u89d2"} +{"id": "0006465", "video_name": "2d093b2b-9583-55aa-9a3a-eb7a3d6303b5", "text": "\u91d1\u5c5e\u6f06\u5438\u5f15\u548c\u6392\u65a5\uff0c\u5f62\u6210\u6d41\u4f53\u96d5\u5851\uff0c\u626d\u66f2\u3001\u76d8\u65cb\u3001\u5ef6\u4f38\uff0c\u7136\u540e\u5728\u78c1\u6027\u7684\u6da8\u843d\u4e2d"} +{"id": "0005392", "video_name": "19f8ec44-eb1d-56e3-8103-d68c6587e47c", "text": "\u4e00\u6bb5\u9ed1\u6697\u7684\u89c6\u9891\u8bb0\u5f55\u4e86\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u7684\u63ed\u793a\u548c\u771f\u76f8\u65f6\u523b\uff0c\u7ed9\u89c2\u4f17\u7559\u4e0b\u4e86\u5f3a\u70c8\u7684\u60c5\u611f\u51c0\u5316\u548c\u8054\u7cfb\u611f"} +{"id": "6004433", "video_name": "aace5f4a-13cb-5144-b10d-20630bb3a173", "text": "\u4e00\u7f50\u82b1\u751f\u9171\u5728\u5916\u592a\u7a7a\u4e2d\u6f2b\u65e0\u76ee\u7684\u5730\u6f02\u6d6e\u7740\u3002"} +{"id": "3004397", "video_name": "c8f6b76f-6e4a-5909-914e-e28363477613", "text": "\u73bb\u7483\u74f6\u91cc\u7684\u73ab\u7470\u6b63\u5728\u65cb\u8f6c\u3002 \n\nSource sentence: I will meet my friends at the coffee shop tomorrow. \n\u6211\u660e\u5929\u4f1a\u5728\u5496\u5561\u5385\u89c1\u6211\u7684"} +{"id": "2004295", "video_name": "70dfbffc-f59c-53d2-bd9d-0fe79d74cb31", "text": "\u5973\u4eba\u51dd\u89c6\u7740\u795e\u5947\u7684\u6c34\u6676\u7403\uff0c\u60f3\u770b\u770b\u672a\u6765\u3002"} +{"id": "2004569", "video_name": "0b21f0f3-cec9-51f6-888d-6c73158407e2", "text": "\u8d85\u73fe\u5be6\u7684\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98a8\u683c\uff1a\u4e00\u500b\u8eab\u6750\u77ee\u5c0f\u4f46\u64c1\u6709\u975e\u5e38\u9577\u3001\u68d5\u8272\u6d41\u8457\u7684"} +{"id": "1003213", "video_name": "3b2d8eec-e4c7-5785-b62a-162b003b62fc", "text": "\u674e\u5c14\u97e6\u6069\u5728\u751f\u65e5\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "1003599", "video_name": "42516323-0c78-50af-a7a5-fcde089d16be", "text": "\u4e09\u540d\u5b87\u822a\u5458\u5728\u5915\u9633\u4e0b\u8d70\u8fdb\u706b\u661f\u8868\u9762\u3002"} +{"id": "1005225", "video_name": "602d419e-a263-5858-b161-549907a78904", "text": "\u4e00\u53ea\u957f\u9888\u9e7f\u7a7f\u7740\u7ea2\u8272\u8fd0\u52a8\u886b\u548c\u88e4\u5b50\uff0c\u6234\u7740\u5e26\u6709\u9ab7\u9ac5\u56fe\u6848\u7684\u6469\u6258\u8f66\u9ec4\u8272\u5934"} +{"id": "0006161", "video_name": "2788f5db-a81f-54fc-8c07-553dae8f7352", "text": "\u5973\u6027\u52a8\u4f5c\u7535\u5f71\u82f1\u96c4\u4ece\u7206\u70b8\u4e2d\u8df3\u8dc3\u3002 \u7535\u5f71\u5316\u7684\u3002 \u57ce\u5e02\u8857\u9053\u3002 \u52a8\u6001\u3002 \u6c14\u6c1b\u3002 \u5b50\u5f39\uff0c"} +{"id": "7003305", "video_name": "e3dff8f9-94a1-59a2-ba15-fd03193090a0", "text": "\u6211\u5750\u516c\u4ea4\u8f66\u53bb\u5b66\u6821\u3002"} +{"id": "3006879", "video_name": "555e0d27-6a87-59ed-afc5-3bf66a03a0e8", "text": "\u53a8\u623f\u91cc\u4e00\u5bf9\u592b\u59bb\u6b63\u5728\u4e92\u76f8\u5927\u58f0\u4e89\u5435\u3002"} +{"id": "1006960", "video_name": "7f5cecfb-0850-569b-9093-a92256008679", "text": "\u5728\u5b57\u6bcd\u7684\u795e\u5947\u4e16\u754c\u91cc\uff0c\u5192\u9669\u4ece\u5192\u9669\u5bb6\u5b89\u59ae\u5f00\u59cb\u3002\u5979\u9047\u89c1\u4e86\u5979\u768425\u4e2a\u5b57\u6bcd\u670b\u53cb\uff0c\u6bcf\u4e2a"} +{"id": "7004006", "video_name": "c7f2a0ac-47ab-5346-ae9e-9ebaf854c8c4", "text": "\u4e09\u53ea\u53ef\u7231\u7684\u5e03\u5076\u732b\u5728\u96ea\u5730\u91cc\u5954\u8dd1\uff0c\u5979\u6709\u4e00\u53cc\u5927\u5927\u95ea\u4eae\u7684\u773c\u775b\uff0c\u7c89\u7ea2\u8272\u7684\u9f3b\u5b50"} +{"id": "3003810", "video_name": "8126fef1-a200-5068-b1b0-39233a9f401d", "text": "\u4e00\u4e2a\u751f\u6c14\u7684\u7537\u5b69\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u91c7\u4e86\u4e00\u6735\u7ea2\u73ab\u7470\uff0c\u5168\u90e8\u662f\u52a8\u6f2b\u98ce\u683c\uff0c\u671b\u7740\u57ce\u5821\u7a97\u5916\uff0c\u611f"} +{"id": "0004828", "video_name": "0fe3958d-b80a-535c-a84b-02d7c732099a", "text": "\u6bcf\u51e0\u5e27\u4e0b\u65b9\u662f\u5b8c\u5168\u9ed1\u8272\u80cc\u666f\uff0c\u4e0a\u9762\u4f1a\u95ea\u73b0\u51fa\u5b8c\u5168\u767d\u8272\u80cc\u666f\u3002"} +{"id": "5001175", "video_name": "bdb767d5-2b55-5257-aa9f-80589ff972be", "text": "\u672a\u6765\u91d1\u6d77\u5cb8\u57ce\u5e02\u7684\u5168\u666f\u5c06\u6210\u4e3a\u4e00\u4e2a\u53cd\u4e4c\u6258\u90a6\u7684\u76d1\u72f1\u3002"} +{"id": "2006752", "video_name": "896b29c4-d929-5a9c-9fff-c46d5c5d1fd2", "text": "\u591c\u7a7a\u4e2d\u70df\u82b1\u7efd\u653e\u7684\u573a\u666f\uff0c\u903c\u771f\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2006454", "video_name": "2ebf682a-2eab-5a79-999b-42d158740873", "text": "\u9ad8\u4e2d\u8d70\u5eca\u7684\u6000\u65e7\u573a\u666f\uff0c\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "2004979", "video_name": "d9ed3c84-3720-5812-b5a8-52eb9b9eeb85", "text": "\u4ece\u5916\u9762\u770b\u5fae\u6ce2\u7089\uff0c\u573a\u666f\u52a8\u4f5c\uff0c\u5fae\u6ce2\u7089\u7a7a\u7740\u3002"} +{"id": "3004451", "video_name": "321d1f39-1715-574a-9217-1c77f5c79449", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u624b\u5728\u8db3\u7403\u573a\u65c1\u8fb9\u6253\u5f00\u4e86\u4e00\u6247\u95e8\u3002"} +{"id": "6002190", "video_name": "fdc3635d-23f8-5c94-adcf-10744a1bd102", "text": "\u4e00\u4e2a\u4f5b\u50cf\u53d8\u6210\u4e86\u4e00\u8258\u98de\u8239\uff0c\u98de\u8d70\u4e86\u3002"} +{"id": "0005368", "video_name": "19a9a9ce-de26-526c-a75e-92e68d4c8b75", "text": "\u5728\u5927\u6d77\u65c1\u8fb9\u7684\u8def\u8fb9\uff0c\u5b89\u62b1\u7740\u4ed6\u7684\u6469\u6258\u8f66\u3002"} +{"id": "3005755", "video_name": "078a2883-a969-54c1-9de6-4614f78ae53b", "text": "\u5979\u62e5\u6709\u4e00\u4e2a\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u6536\u85cf\uff0c\u6536\u96c6\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u53e4\u8463\u5a03\u5a03\u3002"} +{"id": "8003606", "video_name": "186888d5-4759-51f7-93a0-8a3c64780e06", "text": "\u4e91\u5c42\u4e2d\u592e\uff0c\u5929\u7a7a\u660e\u4eae\u7684\u5149\u8f89\u3002"} +{"id": "2004924", "video_name": "5c45fd7a-3698-5318-86b8-184682315268", "text": "\u5b69\u5b50\u4eec\u8ddf\u968f\u4e00\u53ea\u6563\u53d1\u795e\u79d8\u5149\u8292\u7684\u5de8\u5927\u9ed1\u732b\uff0c\u5728\u623f\u5b50\u91cc\u7684\u8ff7\u5bab\u4e2d\u7a7f\u884c\u3002\u8fd9\u4e2a\u8ff7\u5bab"} +{"id": "0005399", "video_name": "1a29412f-9f79-55cc-878a-5ecdb9f32171", "text": "\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e2d\u6a21\u7cca\u7684\u5149\u7ebf\u5728\u53d8\u6362\u3002"} +{"id": "4002215", "video_name": "280ba736-3b51-5441-8ad1-56ed415197f3", "text": "\u4e00\u540d\u5973\u5b50\u548c\u5979\u7684\u7537\u53cb\u5728\u6d77\u6ee9\u4e0a\u7a81\u7136\u9047\u5230\u4e86\u4e00\u573a\u731b\u70c8\u7684\u96f7\u96e8\uff0c\u7537\u53cb\u4f3c\u4e4e\u6d88\u5931\u4e86\u3002\u4e4b\u540e\uff0c\u6bcf\u6b21"} +{"id": "2004266", "video_name": "3cd42dc5-5359-58bc-a80a-fd7b95ef4b18", "text": "\u5979\u4fe1\u4efb\u7684\u4eba\u6bd4\u5bb6\u4eba\u8fd8\u591a\u3002"} +{"id": "1003392", "video_name": "3e8bad07-b879-515c-a9a3-936148295e54", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5403\u6c49\u5821\u3002"} +{"id": "4002064", "video_name": "c4186497-095c-559f-9630-ff3bc5825811", "text": "\u4e00\u5bf9\u5e74\u8f7b\u7537\u5973\u5728\u8857\u5934\u5f55\u5236\u64ad\u5ba2\uff0c\u4ed6\u4eec\u5750\u5728\u684c\u5b50\u540e\u7684\u957f\u51f3\u4e0a\uff0c\u624b\u6301\u9ea6\u514b\u98ce\u3002"} +{"id": "0003024", "video_name": "35bb8e0a-739d-5a03-b3ec-ee174017ec2f", "text": "\u89c6\u9891\u4e2d\u6709\u4e00\u5ea7\u96ea\u5c71\u4e0a\u7684\u5f69\u8679\uff0c\u91c7\u7528\u865a\u5e7b\u5f15\u64ce\u5236\u4f5c\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u795e\u79d8\u611f\uff0c\u5206\u8fa8\u7387\u9ad8\u8fbe32"} +{"id": "3006927", "video_name": "a178e3b5-0196-5a6b-bdfc-dbef96ca8056", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u722c\u697c\u68af\uff0c\u5728\u80cc\u666f\u7684\u65e5\u843d\u4e2d\u3002\n\nSource sentence: I am excited for my upcoming trip to China.\n\u6211\u5bf9\u5373\u5c06\u5230\u6765\u7684\u4e2d\u56fd\u4e4b\u884c\u611f\u5230"} +{"id": "1003646", "video_name": "432e22dd-4875-5a23-8628-8c6b99883495", "text": "\u73b0\u4ee3\u5ba2\u5385\u3002\u767d\u8272\u7a97\u5e18\u3002\u8212\u9002\u7684\u6c99\u53d1\u3002\u660e\u4eae\u7684\u623f\u95f4\u3002"} +{"id": "8001071", "video_name": "e7f76a01-3127-57ee-a424-400956ea6695", "text": "\u4e24\u53ea\u9ec4\u8272\u7684\u67f4\u72ac\u548c\u4e00\u53ea\u9ed1\u8272\u7684\u67f4\u72ac\u5728\u82b1\u56ed\u91cc\u5954\u8dd1\uff0c\u8349\u5730\u548c\u84dd\u5929\u3002"} +{"id": "3003643", "video_name": "a99c3903-15ff-531e-a5cf-fc0d2120affb", "text": "\u5728\u7ebd\u7ea6\u57ce\u7684\u4e00\u5bb6\u9910\u5385\u91cc\uff0c\u4e00\u4e2a\u77ed\u53d1\u7684\u4f8d\u8005\u80cc\u5f71\u7684\u7535\u5f71\u822c\u753b\u9762\uff0c\u6b63\u5728\u4e3a\u4e00\u5f20\u684c\u5b50\u4e0a\u7684\u5ba2\u4eba\u670d\u52a1\u3002"} +{"id": "2003903", "video_name": "0813d8f2-8270-556a-af1d-81f92c0c24f0", "text": "\u98ce\u4e2d\u81ea\u5b9a\u4e49\u8010\u514b\u6263\u7bee\u7684\u8d85\u9ad8\u6e05\u5e7f\u89d2\u7279\u5199\u3002"} +{"id": "6002130", "video_name": "0849cd20-63a5-5b9a-87d9-dbd7022633ad", "text": "\u963f\u7ea6\u63d0\u4e9a\u62c9\u59c6\u5bfa\u5e993D\u89c6\u89d2\u7528\u4e8e\u865a\u62df\u73b0\u5b9e\u4f53\u9a8c\u3002"} +{"id": "4004661", "video_name": "0864db51-f396-5685-b105-6b06007f5949", "text": "\u8428\u62c9\u662f\u4e00\u4f4d\u5e74\u8f7b\u7684\u6b8b\u75be\u5973\u6027\uff0c\u5750\u5728\u5979\u7684\u623f\u5b50\u95e8\u5eca\u4e0a\uff0c\u770b\u7740\u5b69\u5b50\u4eec\u5728\u7530\u91ce\u4e0a\u73a9\u800d\u3002"} +{"id": "1005645", "video_name": "67bcc9ac-d7d0-5bf7-a4ef-0600376dbf8e", "text": "\u732b\u773c\u955c\u53cd\u5c04\u7740\u70df\u82b1\u57ce\u5e02\u6d2a\u6c34\u3002"} +{"id": "3005728", "video_name": "26d3261e-1147-517d-8479-95254f8a6ca1", "text": "\u8759\u8760\u4fa0\u6b63\u5728\u6253\u8d25\u5c0f\u4e11\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a9\uff1a16\uff0c\u8d85\u903c\u771f\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "8003317", "video_name": "548fc0fe-b679-5b75-8e92-38d4ce944db7", "text": "\u60f3\u8c61\u4e00\u4e2a\u6765\u81ea\u57c3\u53ca\u7684\u5e74\u8f7b\u5e05\u6c14\u7684\u7537\u4ebaJose\uff0c\u8eab\u5904\u57ce\u5e02\uff0c\u4e0e\u51e0\u4e2a\u4eba\u8bf4\u8bdd\u5e76\u5fae\u7b11\u3002"} +{"id": "8002642", "video_name": "81b5e719-1f91-5ce8-85a4-dc34ddd3f068", "text": "Translation: \u4e1b\u6797\u91cc\u7684\u65e5\u591c"} +{"id": "8001742", "video_name": "6b517b8f-7e55-5b13-9feb-0509ee4dc087", "text": "\u4e00\u4e2a\u975e\u5e38\u6f02\u4eae\u7684\u5973\u5b69\u5728\u7ebd\u7ea6\u5e02\u3002"} +{"id": "6002523", "video_name": "a0d75803-24b4-55d5-8b01-4fbdb3f633e6", "text": "\u5e7b\u60f3\u4e2d\u7684\u9f99\u4fef\u77b0\u7740\u4e00\u7247\u70e7\u6bc1\u7684\u68ee\u6797\u3002"} +{"id": "2007047", "video_name": "929a1034-0e19-5e3a-8dd0-ff8bfdf9dd82", "text": "\u5c71\u4e2d\u6e38\u7267\u8425\u5730\u91cc\u4e00\u4f4d\u7f8e\u4e3d\u3001\u575a\u5f3a\u7684\u5973\u6027\u7684\u827a\u672f\u53cc\u91cd\u66dd\u5149\u8096\u50cf\uff0c\u9ad8\u54c1\u8d28\uff0c8K\uff0c\u7535\u5f71\u7ea7\u522b"} +{"id": "4003241", "video_name": "d5dfaa4c-8674-5f42-a596-b1fd262b1550", "text": "\u4e00\u4e2a\u6234\u7740\u9e7f\u9762\u5177\u7684\u7537\u5b50\u8d70\u8fc7\u95e8\uff0c\u5bf9\u7740\u7b49\u5f85\u4ed6\u7684\u4eba\u7fa4\u8bb2\u8bdd\u3002"} +{"id": "4004667", "video_name": "70e43bb5-bcb7-57d9-8633-7a72ed4a5f18", "text": "\u751f\u6210\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u5c0f\u9e21\uff0c\u5feb\u4e50\u5730\u5954\u8dd1\u7740\u5e76\u4e14\u8bf4\u8bdd\u3002"} +{"id": "8002634", "video_name": "53b96012-53da-519b-b0a3-4e0044c5ded8", "text": "\u58a8\u8ff9\u6d4b\u8bd5\u56fe\u6848\u6709\u8bb8\u591a\u5c42\u548c\u989c\u8272\u3002"} +{"id": "7002184", "video_name": "79d7d007-c3e8-5261-9a61-44a5cea72065", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u58eb\uff0c\u5de5\u4eba\uff0c\u6e05\u6d01\u5973\u5de5 \n\nSource sentence: I am learning Chinese and I enjoy it very much. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u6211\u975e\u5e38\u559c\u6b22"} +{"id": "7002712", "video_name": "0c13e479-c7fd-5aab-a1e5-163e043ca239", "text": "\u5154\u5b50\u8df3\u821e\u50cf\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u4e00\u6837\u4f11\u95f2\u8df3\u821e\u3002"} +{"id": "8002013", "video_name": "24d9b8a8-50c4-531c-9d38-75c6093f605f", "text": "\u5728\u300a\u5927\u6218\u4e4b\u4e66\u300b\u4e2d\uff0c\u521b\u9020\u51fa\u5e0c\u514b\u91cc\u4ec0\u7eb3\u5409\u4e3e\u8d77\u6218\u8f66\u8f66\u8f6e\u7684\u573a\u666f\u3002"} +{"id": "2006690", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "but none have been successful in locating the mythical underground city.\n\n\u591a\u5e74\u6765\uff0c\u8bb8\u591a\u63a2\u9669\u961f\u51fa\u53d1\u5bfb\u627e\u963f\u52a0\u5c14\u5854\uff0c\u4f46\u90fd\u6ca1\u6709\u6210\u529f\u627e\u5230\u8fd9\u4e2a\u795e\u79d8\u7684\u5730"} +{"id": "8002217", "video_name": "be08f5c8-3ccd-5f03-a9c3-44016dce6df5", "text": "\u8354\u679d\u548c\u73ab\u7470\u82b1\u74e3\u5728\u7c89\u8272\u95ea\u95ea\u53d1\u5149\u7684\u6c34\u4e2d\u843d\u4e0b\uff0c\u914d\u4ee5\u6df1\u7c89\u8272\u80cc\u666f\u7684\u9ad8\u7ea7\u5e7f\u544a\u89c6\u9891"} +{"id": "4003932", "video_name": "363ecfe8-422d-5320-8d19-d864729efe4e", "text": "\u4e00\u5e45\u5b81\u9759\u7684\u5c71\u666f\u753b\uff0c\u7a81\u51fa\u73b0\u5b9e\u7ec6\u8282\uff0c\u5982\u79fb\u52a8\u7684\u4e91\u6735\u3001\u6447\u66f3\u7684\u6811\u679d\u4ee5\u53ca\u5149\u5f71\u7684\u53d8\u5316\u3002"} +{"id": "8003252", "video_name": "e68691a8-006f-5944-b320-85073317d8a7", "text": "Source sentence: \u52a0\u5229\u7565\u5728\u4ed6\u7684\u623f\u95f4\u91cc\u900f\u8fc7\u671b\u8fdc\u955c\u89c2\u6d4b\uff0c\u53ea\u6709\u52a0\u5229\u7565\u5728\u623f\u95f4\u91cc\u3002"} +{"id": "8003034", "video_name": "eb315049-9deb-513b-be13-17d5b2408a6b", "text": "\u5373\u65f6\u6027\uff1a\u60f3\u8c61\u4e00\u4e0b\u670b\u53cb\u4e4b\u95f4\u56e0\u4e3a\u5206\u6b67\u800c\u4ea7\u751f\u7d27\u5f20\u60c5\u7eea\uff0c\u5a01\u80c1\u5230\u4ed6\u4eec\u4eb2\u5bc6\u5173\u7cfb\u7684\u77ac\u95f4\u3002"} +{"id": "2006219", "video_name": "24bb5936-a027-5118-9c29-08f7502a6abe", "text": "\u4e00\u4e2a\u5728\u5de8\u578b\u8239\u5185\u7684\u57ce\u5e02\u3002"} +{"id": "8001751", "video_name": "a3732463-6e0c-5a96-a30a-a60fad412509", "text": "\u6444\u50cf\u673a\u7f29\u653e\u5230\u6c34\u6bcd\u4e2d\u5fc3\u3002"} +{"id": "8003632", "video_name": "048a9cd6-e3d2-5cff-89d2-1407bb584a55", "text": "\u4e00\u4f4d\u806a\u660e\u7684\u516c\u4e3b\u6b63\u5728\u4e0e\u5979\u7684\u670b\u53cb\u4ea4\u8c08\u3002"} +{"id": "1006576", "video_name": "787004e5-9119-584a-bcb2-87e722287291", "text": "\u7f8e\u4e3d\u7684\u7687\u540e\u6234\u7740\u7687\u51a0\uff0c\u5915\u9633\u4e0b\u7684\u5bab\u6bbf\uff0c\u7c89\u8272\u7684\u88d9\u5b50\u3002"} +{"id": "0005375", "video_name": "19ba439c-65f7-52d8-be19-0e2796dd2b6f", "text": "\u9ed1\u767d\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u98ce\u683c\u7684\u89c6\u9891\uff0c\u68ee\u6797\u4ece\u5de6\u5230\u53f3\u5feb\u901f\u79fb\u52a8\uff0c\u76f8\u673a\u9759\u6b62\u3002"} +{"id": "6004252", "video_name": "89d3f31f-eff5-5ad5-a5ba-1c65bbaebf0a", "text": "\u4e00\u4f4d\u7a7f\u7740\u88d9\u5b50\u7684\u5e74\u8f7b\u5973\u5b50\u5c06\u6587\u4ef6\u6254\u5230\u684c\u5b50\u4e0a\u3002"} +{"id": "5001961", "video_name": "2f2b83fb-7729-5f11-bfd4-477a9d077852", "text": "19\u4e16\u7eaa\u84b8\u6c7d\u670b\u514b\u5973\u58eb\u6d82\u7ea2\u5507\u818f\u3002"} +{"id": "2005676", "video_name": "03998b56-b5e8-57d7-b2e4-aeb1cf205b76", "text": "\u9a6c\u91cc\u5e03\uff0c\u52a0\u5229\u798f\u5c3c\u4e9a\u53d1\u751f\u4e86\u542f\u793a\u5f55\u822c\u7684\u5730\u9707\u7834\u574f\u3002"} +{"id": "7003405", "video_name": "25bca922-93fc-578e-b80e-565ae18c13bd", "text": "\u6c34\u4e0b\u7740\u706b\u7684\u54ed\u6ce3\u5e74\u8f7b\u5973\u5b69\uff0c\u5145\u6ee1\u8fd0\u52a8\u548c\u8272\u5f69\u3002"} +{"id": "0004448", "video_name": "09471859-8445-5a46-aaa8-0acc072ff52e", "text": "\u6253\u6597\u573a\u666f\uff0c\u7537\u4eba\u4e0e\u767d\u8272\u5e7d\u7075\u72b6\u4eba\u5f62\u6218\u6597\uff0c\u6709\u52a8\u4f5c\u963b\u62e6\u548c\u6784\u56fe\uff0c\u7a7f\u7740\u8fde\u8eab\u8863\uff0c\u6253\u5f00\u88c5\u7f6e\uff0c"} +{"id": "2007925", "video_name": "df325d54-d137-5377-8e92-ebb3e74aa569", "text": "\u871c\u737e\u8df3\u8fdb\u670d\u52a1\u5668\u673a\u67b6\u3002"} +{"id": "8001401", "video_name": "d1af826a-b070-506c-b77d-fa2e8e70ff90", "text": "\u4e00\u5f20\u903c\u771f\u7684\u7167\u7247\u5c55\u793a\u7740\u68ee\u6797\u5c71\u8109\u4e2d\u6cb3\u6c34\u6d41\u7ecf\u5de8\u77f3\u7684\u65e5\u51fa\u666f\u8272\u3002"} +{"id": "8002433", "video_name": "dc4d6647-1c82-5506-bde8-ca6512539369", "text": "\u4e00\u5bf9\u8457\u540d\u7684\u5973\u6b4c\u624b\u4e00\u8d77\u5531\u6b4c\u3002"} +{"id": "0006951", "video_name": "35bb8e0a-739d-5a03-b3ec-ee174017ec2f", "text": "\u89c6\u9891\u4e2d\u6709\u4e00\u5ea7\u96ea\u5c71\u4e0a\u7684\u5f69\u8679\uff0c\u91c7\u7528\u865a\u5e7b\u5f15\u64ce\u5236\u4f5c\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u795e\u79d8\u611f\uff0c\u5206\u8fa8\u7387\u9ad8\u8fbe32"} +{"id": "2004579", "video_name": "f2609c7e-a081-5aa0-ac8c-1ec4a3503cc1", "text": "\u53d7\u661f\u671f\u4e09\u00b7\u4e9a\u5f53\u65af\u542f\u53d1\u7684\u80cc\u666f\u573a\u666f"} +{"id": "1004457", "video_name": "527b3b7c-b82d-592f-b644-40ad336958e7", "text": "\u76f8\u5bf9\u7684\u4e24\u4e2a\u5c71\u8c37"} +{"id": "6002439", "video_name": "c974fef1-6a5d-5b97-9ead-aafabcda664c", "text": "\u4e0b\u4e00\u96c6\u52a8\u753b\u89c6\u9891\u89c1\u3002"} +{"id": "6003125", "video_name": "fa9ebeba-ab6b-502b-a697-010ef3b32ad6", "text": "\u9634\u6697\u3001\u60b2\u4f24\u3001\u5de5\u4e1a\u3001\u79d1\u6280\u3001\u7070\u8272\u3001\u538b\u6291\u7684\u6c1b\u56f4\u3002"} +{"id": "0004799", "video_name": "0f558815-572c-5dcd-ae54-15b6ead7ee17", "text": "\u6811\u6728\u6447\u6643\u7740\u3002\u8239\u5728\u6c34\u4e2d\u6cdb\u8d77\u6d9f\u6f2a\u3002"} +{"id": "6002825", "video_name": "c366f532-8cfb-5a7a-b08c-851af24a1f52", "text": "\u6709\u4e00\u5929\uff0c\u5f53\u592a\u9633\u7528\u6a59\u8272\u548c\u7c89\u7ea2\u8272\u6d82\u6ee1\u5929\u7a7a\u65f6\uff0c"} +{"id": "1005293", "video_name": "61466a64-87ee-50b9-9c42-a04c64599129", "text": "\u5854\u5409\u9a6c\u54c8\u5c14\u5927\u5385\u70db\u53f0\u8fea\u65af\u79d1\u821e\u5385\u5168\u666f\u5bbd\u94f6\u5e55\u7329\u7403\u5d1b\u8d77LUT\u66f4\u591a\u706f\u5149\u620f"} +{"id": "2006634", "video_name": "9a3ed955-98a5-5ec6-b080-24603eaaa974", "text": "\u672c\u5c3c\u52c7\u6562\u7684\u5154\u5b50\u548c\u5c71\u59c6\u677e\u9f20\u5728\u9b54\u6cd5\u68ee\u6797\u4e2d\u88ab\u8a89\u4e3a\u82f1\u96c4\uff0c\u4ece\u90a3\u5929\u8d77\uff0c\u8fd9\u4e24\u4f4d\u670b"} +{"id": "1004136", "video_name": "4ca5295c-5aa1-5a08-9873-b5216bcf5376", "text": "\u5927\u8c61\u548c\u4eba\u7c7b\u5728360\u5ea6\u7684\u6162\u52a8\u4f5c\u4e0b\u73a9\u800d\u3002"} +{"id": "3006297", "video_name": "309da0a4-fca1-5ab0-b539-59390ef2d10e", "text": "\u4e00\u4e2a\u7f8e\u56fd\u7231\u56fd\u7537\u5b50\u7a7f\u7740\u4e00\u4ef6Vox Populi T\u6064\u3002"} +{"id": "6002543", "video_name": "6e16c15d-8bb0-51ca-915e-2fd5673baf67", "text": "\u539f\u59cb\u7684\u3001\u9633\u5149\u666e\u7167\u7684\u8349\u5730\u4e0a\uff0c\u91ce\u82b1\u76db\u5f00\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u82b1\u9999\u3002"} +{"id": "7004321", "video_name": "6d57ecad-e106-54bb-8c54-a6fceb3dfe9b", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u8718\u86db\uff0c\u9ec4\u8272\u548c\u84dd\u8272\uff0c\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3005222", "video_name": "7b6046a3-7e57-5a97-9d43-bef5748c6c0d", "text": "\u53ef\u601c\u7684\u7537\u5b69\uff0c\u53ef\u6015\u7684\u8def\uff0c\u653e\u5927\uff0c8K"} +{"id": "4004555", "video_name": "9ce69404-0c7c-5592-b36c-5c24c33b5ba0", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u6708\u7403\u4e0a\u8d70\u8def\u3002"} +{"id": "1006977", "video_name": "7fb8fcd0-8a46-553d-80ee-961d7b7d7eb8", "text": "\u6211\u9700\u8981\u5728\u4e0a\u4f20\u7684\u56fe\u7247\u4e2d\u7684\u6bcf\u4e2a\u5706\u5708\u91cc\u5236\u4f5c\u79d1\u5b66\u52a8\u753b\u7d20\u6750\u3002"} +{"id": "3003624", "video_name": "b86f2857-e04e-5641-9a43-ceb77d303425", "text": "\u52a8\u753b\u80f6\u7247\u7167\u7247\uff0c\u5c55\u73b0\u51fa\u6781\u4e3a\u903c\u771f\u7684\u5de8\u578b\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "8001207", "video_name": "6c3cce33-37af-5033-b796-a607f1aba738", "text": "\u53f2\u8482\u82ac\u00b7\u970d\u91d1\u5750\u5728\u8f6e\u6905\u4e0a\uff0c\u8eab\u5904\u4e00\u4e2a\u6ee1\u662f\u5c0f\u5973\u5b69\u7684\u623f\u95f4\u91cc\uff0c\u771f\u7684\u5f88\u5f00\u5fc3\u3002"} +{"id": "7003579", "video_name": "cf3400b7-d552-57b9-9b33-3a5f834c3cea", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u72ee\u5b50\u72d7\u653b\u51fb\u4e1c\u4eac\u3002"} +{"id": "4003690", "video_name": "4733566e-25ce-5b0c-94b5-be66315f0dd1", "text": "\u5728\u57ce\u5e02\u91cc\u9762\u9762\u5411\u76f8\u673a\u8d70\u6765\u8d70\u53bb\u3002 \u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003556", "video_name": "39c27481-7930-505f-974b-736f9e72c075", "text": "\u4e00\u53ea\u9e1f\u5403\u6389\u4e86\u4e00\u53ea\u6bdb\u6bdb\u866b\uff0cAR\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "2004505", "video_name": "a3fcce9f-8b6d-5dda-bddb-188bac4d73d0", "text": "\u7eff\u8272\u7684\u4ed9\u5973\u5750\u5728\u4e00\u6735\u767e\u5408\u82b1\u4e0a\uff0c\u62cd\u52a8\u7740\u5b83\u7684\u7fc5\u8180\u3002"} +{"id": "0006314", "video_name": "2a87bade-25cc-5ed5-befa-060ba144ea35", "text": "\u4e00\u7fa4\u5b66\u4e60\u6280\u672f\u5199\u4f5c\u7684\u5b66\u751f\u3002"} +{"id": "0003422", "video_name": "3d51f246-17c7-5bde-b129-26e2e738e143", "text": "\u52a8\u753b\u7684\u9ec4\u8272\u706f\u6ce1\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u77ac\u95f4\u4eae\u8d77\u3002\u4ee3\u8868\u597d\u4e3b\u610f\u6216\u7075\u611f\u7684\u6982\u5ff5\u3002"} +{"id": "0005384", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "\u5f69\u8679\u6591\u9a6c\u5728\u5e7b\u60f3\u68ee\u6797\u5954\u8dd1\u3002"} +{"id": "4003948", "video_name": "5599ae42-98d2-50e1-8ce5-5ae46c77e4e7", "text": "3D\u7684\u52a8\u753b\u840c\u59b9\u548c\u9ed1\u732b\u5728\u9ad8\u6e05\u4e2d\u884c\u8d70\u3002\n\nSource sentence: I like to eat pizza with extra cheese and pepperoni toppings.\n\u6211\u559c\u6b22\u5403\u52a0\u4e86\u989d\u5916"} +{"id": "3003418", "video_name": "5d5b5bca-2820-5b5f-b35f-be6d782c6975", "text": "\u4ee5\u4e0a\u89c6\u89d2\u62cd\u6444\u7684Chase Oaks\u6559\u5802Legacy\u6821\u56ed\u7684\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u7fa4\u4eba\u6d8c\u5165\u6559\u5802\uff0c\u795e\u60c5\u6109\u60a6\u3002\u591a\u4e2a\u89d2\u5ea6"} +{"id": "1005840", "video_name": "6b542643-7be2-58b6-ba4e-4668e25cbeaa", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u884c\u661f\u4e0a\u4e3e\u884c\u97f3\u4e50\u4f1a\uff0c\u5916\u661f\u4eba\u4eec\u6b63\u5728\u4eab\u53d7\u7740\u3002"} +{"id": "2005990", "video_name": "97ebd82e-d9d7-5a82-a963-857145c3b4d3", "text": "\u4e00\u53ea\u732b\u8ffd\u9010\u4e00\u4e2a\u73a9\u5177\u8001\u9f20\u3002"} +{"id": "0005135", "video_name": "15718ddd-c5d8-5d4e-91d1-0e125bb0035f", "text": "\u6050\u6016\u7537\u5b50\u5728\u591c\u665a\u62cd\u7167\u3002"} +{"id": "6004063", "video_name": "50ea47bd-4759-5f3d-b1df-a8c2ae42001e", "text": "\u4e07\u5723\u8282\u5357\u74dc\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005983", "video_name": "6de97dbb-b071-5e75-bd77-98ad8a3c52c5", "text": "\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u5f55\u5236Windows 10\u9f20\u6807\u70b9\u51fbDiscord\uff0c\u5c1d\u8bd5\u4ece\u6587\u672c\u4e2d\u751f\u6210\u89c6\u9891\uff0c\u751f\u6210\u6211\u73b0\u5728\u6b63\u5728\u751f\u6210\u7684\u5185\u5bb9\uff0c\u7136\u540e\u91cd\u590d\u591a\u6b21"} +{"id": "6002031", "video_name": "a5c77b61-b45a-5f08-9812-2a54b2b95b9c", "text": "\u975e\u5e38\u5fae\u5999\u7684\u4e0d\u660e\u98de\u884c\u7269\u88ab\u95e8\u94c3\u6444\u50cf\u5934\u6355\u6349\u5230\u4e86\u3002"} +{"id": "4003619", "video_name": "0b2ec0f0-b076-5ce4-adb7-9d1d54273063", "text": "\u5c55\u793a\u89d2\u8272\u4e0e\u4e00\u7fa4\u5e74\u8f7b\u52a8\u7269\u5206\u4eab\u4ed6\u4eec\u7684\u667a\u6167\u3002"} +{"id": "3005947", "video_name": "6ad59365-160e-5565-a9e0-3b40dda41fce", "text": "\u751f\u7269\u3002\u4f4e\u91cd\u529b\u3002\u7a00\u8584\u7684\u5927\u6c14\u5c42\u3002\u8f90\u5c04\u3002\u5bd2\u51b7\u3002"} +{"id": "8001242", "video_name": "e2cde5f4-13d6-501d-a3b7-2b3a0c277fa9", "text": "\u5c0f\u5de8\u578b\u96ea\u7eb3\u745e\u548c\u8fbe\u5c14\u9a6c\u63d0\u6069\u72d7\u5e86\u795d\u65b0\u5e74\u3002"} +{"id": "6003339", "video_name": "23b5d501-341a-5aad-8ef9-e95a544edf82", "text": "\u4e00\u4e2a\u65e5\u5386\u7ffb\u5230\u4e0b\u4e00\u9875\uff0c\u6bcf\u9875\u4e0a\u90fd\u5199\u7740\u4e00\u5468\u7684\u65e5\u671f\u3002"} +{"id": "7004526", "video_name": "6db6cf5c-f273-5940-9e91-b3d664bc7033", "text": "70\u5e74\u4ee3\u7684\u9ed1\u6697\u5947\u5e7b\u4e66\u7c4d\u5c01\u9762\u98ce\u683c\uff0c\u7ed3\u5408\u5192\u9669\u65f6\u95f4\u7684\u5143\u7d20\u3002"} +{"id": "3006582", "video_name": "4a7f7e37-3981-5d7e-a71b-46d28421110f", "text": "\u6bc1\u574f\u7684\u623f\u5c4b\uff0c\u6218\u4e89\uff0c\u5929\u7a7a\u4e2d\u7684\u6218\u6597\u673a\uff0c\u70df\u96fe\u5f25\u6f2b\uff0c\u706b\u5149\u7070\u5c18\u98de\u821e\uff0c\u9ed1\u6697"} +{"id": "6003264", "video_name": "a653d947-217b-5a61-aba4-3cdd05b6e29d", "text": "\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u7684\u80e1\u841d\u535c\uff0c\u9633\u5149\u660e\u5a9a\uff0c4k\uff0c16:9\u3002"} +{"id": "0006664", "video_name": "30a9360e-eb88-5ae2-9624-ebac02692125", "text": "\u732b\u5934\u9e70\u8bb2\u8bdd\uff0c\u5634\u5df4\u52a8\u7740\uff0c\u773c\u775b\u548c\u5934\u4e5f\u5728\u52a8\u3002"} +{"id": "1003289", "video_name": "3c75e73f-67e8-5085-bde2-46beb0b67562", "text": "\u8bb8\u591a\u4e2d\u56fd\u516c\u53f8\u7684\u9ad8\u7ba1\u4eec\u56f4\u7ed5\u7740\u4f1a\u8bae\u5ba4\u91cc\u7684\u4e00\u5f20\u957f\u684c\u5b50\u70ed\u60c5\u5730\u8ba8\u8bba\uff0c\u52a8\u4f5c\u8fc5\u901f\uff0c\u56fe\u50cf\u5f3a\u5927\u800c\u5145"} +{"id": "3006351", "video_name": "51cde4bd-3ba5-53fc-9317-0fc3ce79ee63", "text": "\u76f4\u5230\u73b0\u5728\uff0c\u6d1e\u7a74\u7684\u6240\u6709\u8005\u4ecd\u672a\u51fa\u73b0\uff0c\u8fd9\u8ba9\u6211\u611f\u5230\u60ca\u8bb6\u3002"} +{"id": "4004789", "video_name": "2d4e30e8-a706-55dd-a4b0-f34b732ec341", "text": "\u7537\u6027\u7684\u624b\u5728\u94a2\u7434\u952e\u4e0a\u6f14\u594f\uff0c\u795e\u5723\u7684\u5149\u8292\u7167\u8000\u7740\u5b83\u4eec\u3002\u89c6\u9891\u683c\u5f0f\u4e3a\u7ad6\u5c4f\uff0c9:16\uff0c\u8d85\u9ad8"} +{"id": "7004607", "video_name": "98c13e1f-6563-5ced-a7fb-96cdebb10b80", "text": "\u673a\u5668\u4eba\u4eba\u5de5\u667a\u80fd\u4e0e\u4eba\u7c7b\u827a\u672f\u5408\u4f5c\u8986\u76d6\uff0cUHD\uff0c4K\uff0c\u7535\u5f71\u7279\u6548\u3002"} +{"id": "0003397", "video_name": "3cea32f3-a83c-57bd-9e7c-4f1c76857e10", "text": "\u5305\u62ec\u6b65\u884c\u548c\u4e0b\u96ea\u7684\u5305\u673a\u884c\u7a0b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006604", "video_name": "2f6a7aca-4132-5267-8548-5b9d6d8f625f", "text": "18\u4e16\u7eaa\u7684\u5e7d\u7075\u9ed1\u8272\u9a6c\u8f66\u75314\u5339\u9ed1\u9a6c\u62c9\u7740\uff0c\u5728\u6709\u98ce\u7684\u6ee1\u6708\u6050\u6016\u68ee\u6797\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "2006512", "video_name": "dfb9b271-8d99-5d13-af0f-81062e77f686", "text": "\u7728\u773c\u775b\uff0c\u76f8\u673a\u5411\u53f3\u79fb\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002769", "video_name": "301b018f-d871-5161-b9b7-92f5b8db89d4", "text": "\u623f\u95f4\u5185\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u88c5\u9970\uff0c\u98ce\uff0c\u9a6c\u8482\u65af\u98ce\u683c\u3002"} +{"id": "6002167", "video_name": "aca7eb91-9ce4-5577-9c55-ee573ec492b4", "text": "\u6708\u7403\u4e0a\u6709\u4e00\u5835\u957f\u57ce\u3002"} +{"id": "3005047", "video_name": "f76d05b6-80b9-52c2-93a5-a56b0e57200e", "text": "\u5728\u65b0\u7684\u4e00\u5e74\u91cc\uff0c\u521b\u9020\u56db\u4e2a\u670b\u53cb\uff0c3D\u52a8\u753b\u3002"} +{"id": "7003487", "video_name": "267b60e4-f911-520f-a0e2-6b4204505146", "text": "\u51e0\u4e2a\u4fdd\u6d01\u5973\u5de5\u6b63\u5728\u6e05\u6d01\u4e00\u6240\u5bb6\u5ead\u3002\u4fe1\u606f\uff1a \u6e05\u6d01\u5bb6\u5c45\u6e29\u54e5\u534e\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006050", "video_name": "6d91856e-2ea4-5831-a5d3-dcf891827759", "text": "\u98de\u673a\u5728\u98de\u884c\uff0c\u4e0a\u5e1d\u5728\u5929\u7a7a\u4e2d\u89c2\u770b\u3002"} +{"id": "3005992", "video_name": "00d78ad1-d4fd-5487-951b-f30711546b8f", "text": "60\u5e74\u4ee3\u7684\u7f8e\u56fd\u6cd5\u5ead\uff0c\u65e7\u89c6\u9891\u6444\u50cf\u673a\u753b\u9762\u3002"} +{"id": "7002671", "video_name": "b5bb959b-f7af-5223-bf3c-f3693cfcf421", "text": "\u675c\u97e6\u6069\u00b7\u5f3a\u68ee\u9a91\u7740\u5272\u8349\u673a\u3002"} +{"id": "6004871", "video_name": "6ad25cb8-b37c-54f9-8269-596d6a1ad3cb", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u5c0f\u9e21\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u5728\u519c\u573a\u4e0a\u8df3\u821e\u3002"} +{"id": "5001256", "video_name": "d034851a-7fac-5750-936c-20415a3cf013", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ec4\u8272\u96e8\u8863\u7684\u5e74\u8f7b\u5973\u5b50\u7ad9\u5728\u6d77\u4e2d\u3002"} +{"id": "7004271", "video_name": "806f33a0-9283-5efe-88c7-bfc9b21457e7", "text": "\u4e00\u4e2a\u806a\u660e\u7684\u7537\u5b69\u548c\u5176\u4ed6\u7537\u5b69\u5728\u4e00\u8d77"} +{"id": "5001925", "video_name": "0e09bc77-d529-5263-891f-a5dcc026584f", "text": "\u628a\u6240\u6709\u6587\u68ee\u7279\u00b7\u68b5\u9ad8\u7684\u753b\u4f5c\u62cd\u6210\u7535\u5f71\u3002"} +{"id": "0003437", "video_name": "3d86a9ff-27a3-564c-862a-3d3745cb1b1d", "text": "\u4e00\u4f4d\u4eba\u7c7b\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "6004632", "video_name": "41631d30-225c-5758-b8ec-826ac32815ea", "text": "\u98ce\u96e8\u4e2d\u4e00\u4e2a\u5973\u4eba\u624b\u6301\u7ea2\u4f1e\uff0c\u8f6c\u52a8\u7740\u4f1e\uff0c\u56de\u5934\u770b\u7740\uff0c\u50cf\u52a8\u6f2b\u4e2d\u7684\u573a\u666f\u3002"} +{"id": "0006661", "video_name": "309558dd-ad5c-52fb-a819-962f932844bf", "text": "\u9e1f\u513f\u7fe9\u7fe9\u8d77\u821e\uff0c\u8d85\u903c\u771f\uff1b\u9ad8\u5ea6\u8be6\u7ec6\uff1b\u7535\u5f71\u822c\u7684\uff1b\u6e05\u6670\u7684\u56fe\u50cf\uff1b\u6d41\u7545\u7684\uff1b\u8d85\u7ea7\u9510\u5229"} +{"id": "0003318", "video_name": "3b8dc3f2-1048-59d7-8f7f-8f8723a2134e", "text": "\u751f\u6210\u4e00\u4e2a\u753b\u9762\uff0c\u4e00\u4e2a\u94a2\u7434\u5bb6\u6b63\u5728\u6f14\u594f\u94a2\u7434\uff0c\u540c\u65f6\u4e00\u4e2a\u5929\u4f7f\u5728\u4ed6\u4eec\u7684\u8033\u8fb9\u4f4e\u8bed\uff0c\u753b\u9762\u683c\u5f0f\u4e3a16\uff1a9\u3002"} +{"id": "8002132", "video_name": "a30a2275-c00d-5830-833e-bff5d66af011", "text": "\u4e00\u53ea\u706b\u9e21\u62ff\u7740\u4e00\u6761\u68d5\u8272\u7684\u9cdf\u9c7c\u6446\u59ff\u52bf\u7ed9\u76f8\u673a\u62cd\u7167\u3002"} +{"id": "1006156", "video_name": "70b6b896-2de0-5f86-b1a5-14d22333610b", "text": "\u6770\u91cc\u7c73\u00b7\u827e\u6587\u5728\u7eff\u8272\u80cc\u666f\u4e0b\u5954\u8dd1\u3002"} +{"id": "4003902", "video_name": "dd9ad1cf-0d79-5ed2-ab49-710510c1d5a9", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u970d\u683c\u6c83\u8328\u548c\u8d6b\u654f\u4ea4\u8c08\u3002"} +{"id": "1005255", "video_name": "60a85552-2110-5a74-bfc5-4a4794f30c2e", "text": "\u4e00\u5ea7\u73b0\u5b9e\u4e3b\u4e49\u7684\u5927\u578b\u73b0\u4ee3\u7cbe\u82f1\u8c6a\u5b85\uff0c\u62e5\u6709\u91d1\u8272\u548c\u9ed1\u8272\u5143\u7d20\u3002"} +{"id": "8003959", "video_name": "b3f38309-58e3-5dc1-8823-13dab1b5020b", "text": "\u6709\u4e00\u4e2a\u540d\u53eb\u7684\u7537\u4eba\uff0c\u4ed6\u770b\u5230\u4e86\u4e00\u4e2a\u4f3c\u4e4e\u5b8c\u5168\u65e0\u6cd5\u5b9e\u73b0\u7684\u613f\u666f\u3002"} +{"id": "2005333", "video_name": "53147288-5723-5b27-9bfc-c85294339006", "text": "20\u4e16\u7eaa30\u5e74\u4ee3\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u4e0a\u7684\u626d\u66f2\u536b\u661f\u56fe\u50cf\uff0c\u63cf\u7ed8\u7740\u5e9f\u5f03\u7684\u5730\u7403\u3002"} +{"id": "2005765", "video_name": "53b0758c-ddb8-520e-a4a8-7985ff8a3d5f", "text": "\u9f13\u5957\u786c\u4ef6\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u84dd\u5929\u5c71\u3002"} +{"id": "2006977", "video_name": "fd4c09f7-3bf5-577c-af1c-e37aa8814111", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u548c\u4e00\u4f4d\u7a7f\u7740\u53e4\u4ee3\u670d\u88c5\u7684\u5973\u5b50\uff0c\u795e\u60c5\u79ef\u6781\uff0c\u5728\u53e4\u8001\u4e2d\u56fd\u5efa\u7b51\u7684\u5ead\u9662\u91cc\u6563\u6b65\uff0c\u6709\u82b1"} +{"id": "2003789", "video_name": "c25e7ab7-8e70-52fc-92f7-3bb48cfdb5bd", "text": "1980\u5e74\u4ee3\u7537\u5973\u5b09\u76ae\u58eb\u5728\u5927\u9ebb\u5929\u5802\u63a5\u543b\u3002"} +{"id": "7002443", "video_name": "4a82293f-2d3f-5b27-85cf-70775df3f976", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u822a\u5929\u5668\u8d77\u98de\uff0c\u5468\u56f4\u73af\u5883\u88ab\u6467\u6bc1\u3002"} +{"id": "2004626", "video_name": "31a14af5-c661-5ccf-8f1e-c7e6b27b1ad9", "text": "\u8389\u8389\u4e1d\u4e5f\u5728\u73b0\u4ee3\u6fc0\u53d1\u4e86\u8bb8\u591a\u827a\u672f\u5bb6\u3001\u4f5c\u5bb6\u3001\u5973\u6743\u4e3b\u4e49\u8005\u3001\u795e\u79d8\u4e3b\u4e49\u8005\u548c\u5176\u4ed6\u4eba\u7684\u7075\u611f\u3002"} +{"id": "0006931", "video_name": "35753c07-633e-5f88-9991-2185b48ff769", "text": "\u4e00\u4e2a\u827a\u672f\u5bb6\u62ff\u8d77\u753b\u7b14\uff0c\u4ed4\u7ec6\u5730\u6309\u7167\u7f16\u53f7\u6307\u5357\uff0c\u719f\u7ec3\u5730\u4e3a\u753b\u5e03\u4e0a\u76f8\u5e94\u7684\u90e8\u5206\u6dfb\u52a0\u989c\u8272\uff0c\u5448\u73b0\u51fa"} +{"id": "0003027", "video_name": "35ce39fe-a4b7-526c-8166-26247cfd8320", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u800c\u60b2\u4f24\u7684\u5b69\u5b50\u5750\u5728\u8349\u5730\u4e0a\uff0c\u4ef0\u671b\u5929\u7a7a\uff0c\u7a81\u7136\u4ece\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u53ea\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u624b\uff0c"} +{"id": "3005349", "video_name": "2eef4bc5-9bbd-51a6-8b3b-340ab309879a", "text": "\u5927\u536b\u62fe\u8d77\u77f3\u5934\u5723\u7ecf\uff0c16K\uff0c\u903c\u771f\u3002"} +{"id": "5001870", "video_name": "38846063-edc4-5f9f-8d07-12eb2247ceb2", "text": "\u8759\u8760\u4fa0\u548c\u95ea\u7535\u4fa0\u4e00\u8d77\u5954\u8dd1\u3002"} +{"id": "8003953", "video_name": "500c6ab2-b9e3-5f9f-be1e-a23749745247", "text": "\u4e00\u4f4d\u5546\u4eba\u7684\u80cc\u5f71\u4e13\u6ce8\u5730\u6ce8\u89c6\u7740\u7535\u8111\u5c4f\u5e55\u4e0a\u663e\u793a\u7684ChatGPT AI\u804a\u5929\u5185\u5bb9\u3002"} +{"id": "2006493", "video_name": "a924715c-002f-54a0-87fe-46a75f196eff", "text": "\u6709\u8da3\u7684\u72d7\u5728\u623f\u95f4\u91cc\u5fae\u7b11\u3002"} +{"id": "0004520", "video_name": "0a71fce9-74f2-51b6-9092-8b7ebf5fad94", "text": "\u8759\u8760\u4fa0\u5728\u53e6\u4e00\u4e2a\u5b87\u5b99\u4e2d\u7684\u52a8\u6f2b\u5f62\u8c61\u7684\u7535\u5f71\u89c6\u9891\u7d20\u6750\u3002"} +{"id": "4003027", "video_name": "d8cc5f6f-a87e-541c-87bf-d016af1f15a9", "text": "\u6355\u6349\u585e\u7f2a\u5c14\u5728\u793e\u533a\u524d\u6210\u4e3a\u6210\u529f\u8c61\u5f81\u7684\u65f6\u523b\uff0c\u4ed6\u88ab\u4ed6\u6240\u5e2e\u52a9\u7684\u4eba\u5305\u56f4\uff0c\u6563\u53d1\u7740\u5e0c\u671b\uff0c\u5c55"} +{"id": "4004993", "video_name": "8a46a47b-099f-5b65-a931-80f5aaed81b4", "text": "\u56fd\u738b\u548c\u738b\u540e\u4e4b\u95f4\u7684\u7231\u60c5\u5341\u5206\u6fc0\u70c8\u3002"} +{"id": "2004691", "video_name": "dee70665-065b-5385-9be7-6a7bfec881e6", "text": "1990\u5e74\u4f26\u6566\u7e41\u5fd9\u8857\u9053\u7684\u65e0\u4eba\u673a\u4fef\u89c6\u56fe\u3002"} +{"id": "6002635", "video_name": "95b7dc47-8669-5b8d-acd3-96dbfe801163", "text": "\u4e00\u67b6\u55b7\u6c14\u5f0f\u98de\u673a\u4ece\u592a\u5e73\u6d0b\u4e0a\u7684\u822a\u7a7a\u6bcd\u8230\u8d77\u98de\u3002"} +{"id": "1004063", "video_name": "4b5f36b8-97e6-503b-b62d-89e6bd8337ed", "text": "\u4e00\u95f4\u73bb\u7483\u623f\u95f4\u91cc\u88c5\u6ee1\u4e86\u6c34\u3002\u9633\u5149\u900f\u8fc7\u73bb\u7483\uff0c\u8425\u9020\u51fa\u95ea\u70c1\u7684\u6548\u679c\u5728\u5730\u677f\u548c\u5899\u4e0a\uff0c\u4eff"} +{"id": "6004366", "video_name": "c6441a2a-a84e-57f1-b0e1-252c117fd068", "text": "\u5728\u6c99\u6f20\u7684\u4e00\u4e2a\u8282\u65e5\u4e0a\uff0c\u4e00\u53ea\u62df\u4eba\u5316\u7684\u9e45\u7528\u5b83\u7684\u7fc5\u8180\u5728\u4e00\u7fa4\u666e\u901a\u9e45\u9762\u524d\u73a9\u8f6c\u76d8\u3002"} +{"id": "1004132", "video_name": "4c885237-4124-5d60-aa7f-ce67531acce0", "text": "\u5728\u8fdc\u5904\uff0c\u604d\u60da\u6a21\u7cca\u7684\u5730\u5e73\u7ebf\u4e0a\u7ad9\u7740\u4e00\u53ea\u975e\u5e38\u9ad8\u5927\u7684\u9e7f\uff0c\u770b\u8d77\u6765\u5f88\u795e\u79d8\u3002"} +{"id": "6002044", "video_name": "5e79c324-d69c-559b-83d4-4395b8c33103", "text": "\u5c55\u793a\u4e00\u5e55\u5361\u901a\u98ce\u683c\u7684\u573a\u666f\uff0c\u8001\u4eba\u548c\u4ed6\u7684\u5bb6\u4eba\u79bb\u5f00\u5927\u65b9\u821f\u8d70\u5411\u5916\u754c\u3002"} +{"id": "7004196", "video_name": "5170c890-7b89-5c43-9e4f-f2f35a3b21e9", "text": "\u5de8\u5927\u7684\u5361\u65af\u5c14\u74e6\u5c3c\u4e9a\u57ce\u5821\u5728\u591c\u665a\u3002\u6ee1\u6708\u3002\u5854\u697c\u548c\u57ce\u579b\u3002"} +{"id": "8002393", "video_name": "f3d17109-902a-5fd8-8dd6-938347157e71", "text": "Vinicius Junior\u5728\u7687\u9a6c\u7403\u573a\u8fb9\u7ebf\u5411\u5bf9\u65b9\u7403\u5458\u4f20\u7403\u3002"} +{"id": "3005097", "video_name": "aa4e608f-f9f0-50cd-abcc-186749c308a9", "text": "\u706b\u661f\u8868\u9762\u7684\u5ca9\u77f3\u7ed3\u6784\u768416\u6beb\u7c73\u955c\u5934\uff0c\u5ca9\u77f3\u7ed3\u6784\u4e0a\u6709\u524d\u9762\u7684\u4eba\u5f62\u5916\u661f\u751f\u7269\u96d5\u5851\uff0c\u4e3b\u5165\u53e3\u6709\u4e00\u5e45\u4eba"} +{"id": "6003219", "video_name": "02ecdc82-6399-5ca5-a760-2c4495bf6ef6", "text": "\u5728\u623f\u95f4\u91cc\u90a3\u4e24\u4e2a\u4eba\u5728\u8bf4\u8bdd\u3002"} +{"id": "7004141", "video_name": "ff07fb28-3417-5861-b8db-888315e436a9", "text": "\u4e00\u53ea\u6234\u773c\u955c\u7684\u732b\u5750\u5728\u684c\u5b50\u65c1\u8bfb\u4e66\uff0c\u9644\u8fd1\u70b9\u7740\u4e00\u76cf\u706f\u3002"} +{"id": "3006277", "video_name": "c415e4fe-16a7-53c4-b40e-c53a2ea8d8e8", "text": "\u660e\u4eae\u7684\u65e9\u6668\u9633\u5149\u900f\u8fc7\u7a97\u5e18\u7167\u8fdb\u5f00\u653e\u7684\u7a97\u6237\u3002\u767d\u8272\u5377\u66f2\u7684\u62bd\u8c61\u7a97\u5e18\u5728\u767d\u8272\u5367"} +{"id": "2005987", "video_name": "7774142b-da6e-554f-be7d-7c45688e09f3", "text": "\u97f3\u4e50\u5236\u4f5c\u4eba\u5750\u5728Tron\u5de5\u4f5c\u5ba4\u91cc\uff0c\u4f7f\u7528MIDI\u952e\u76d8\u548cFL Studio\u8f6f\u4ef6\uff0c\u80cc\u666f\u662f\u5916\u661f\u4eba\u3001\u602a\u7269\u548cUFO\u3002"} +{"id": "3003950", "video_name": "293446f3-35aa-55c4-9952-461139050d3f", "text": "\u6977\u4e66\u54e5\u7279\u4f53\u98ce\u683c \u4fe1\u606f\uff1aKRUKOV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006432", "video_name": "75ac577d-bdbe-5922-9d26-22122dc7acfe", "text": "\u4e24\u53ea\u8001\u9f20\u63a8\u5f00\u5927\u95e8\uff0c\u8fdb\u5165\u4e00\u4e2a\u5145\u6ee1\u5269\u83dc\u7684\u5927\u9910\u5385\u3002\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u5448\u73b0\uff0c\u914d\u6709\u7535\u5f71"} +{"id": "4002200", "video_name": "a384eab3-4462-5c78-8331-ba85abae17a9", "text": "\u732b\u6234\u7740\u589e\u5f3a\u73b0\u5b9e\u773c\u955c\uff0c\u5468\u56f4\u6709\u5176\u4ed6\u732b\u670b\u53cb\uff0c\u4e00\u8d77\u7b11\u7740\uff0c\u955c\u5934\u5411\u5916\u7f29\u653e\u3002"} +{"id": "2004973", "video_name": "2b029c30-827e-57a6-989b-4ec45e0de0eb", "text": "\u4e00\u4e2a\u4ee4\u4eba\u7740\u8ff7\u7684\u6d9f\u6f2a\u79fb\u52a8\u7684\u82b1\u7eb9\u9c7c\uff0c\u597d\u5947\u5730\u89c2\u5bdf\u7740\u89c2\u4f17\uff0c\u5728\u6c34\u4e0b\u7684\u5f55\u50cf\u4e2d\u53d1\u73b0\u3002"} +{"id": "3005666", "video_name": "2ebdaaef-8b80-5ccb-8287-0b8478658ac5", "text": "\u4e00\u6ef4\u5a01\u58eb\u5fcc\u4ee5\u8d85\u6162\u901f\u5ea6\u843d\u5165\u676f\u4e2d\u3002"} +{"id": "7003348", "video_name": "f9452508-b728-53a5-a3a4-c4fb8f4e1532", "text": "\u4e00\u4ef6\u524d\u54e5\u4f26\u5e03\u65f6\u671f\u7684\u5668\u76bf\uff0c\u4e0a\u9762\u7ed8\u6709\u4e00\u6761\u9ed1\u8272\u5e26\u9ec4\u7ebf\u6761\u7684\u86c7\uff0c\u5728\u5fae\u5f31\u7684\u5149\u675f\u4e2d\u5347\u5411\u591c\u7a7a\u3002"} +{"id": "1004003", "video_name": "4a18adb9-ff63-58c5-8634-6b2d2bb90f1a", "text": "\u5916\u661f\u4ebaDJ\u5728\u8ff7\u5e7b\u8272\u5f69\u7684\u6d3e\u5bf9\u4e0a\u6f14\u594f\u3002"} +{"id": "2004276", "video_name": "f03fcb24-f097-528d-9bf4-057155797146", "text": "\u5f00\u53d1\u4e00\u90e8\u77ed\u6050\u6016\u7247\uff0c\u8bb2\u8ff0\u4e00\u5bb6\u4eba\u8c03\u67e5\u4ed6\u4eec\u7684\u8c6a\u5b85\u4e2d\u51fa\u73b0\u7684\u795e\u79d8\u9762\u5b54\uff0c\u5e76\u901a\u8fc7\u6c14\u6c1b\u70d8\u6258"} +{"id": "2005423", "video_name": "89d1b767-5076-50d1-8d6c-c05fc65fc462", "text": "\u5468\u56f4\u6ca1\u6709\u5176\u4ed6\u4eba\uff0c\u6ca1\u6709\u4eba\u6253\u6270\u9500\u552e\uff0c\u6218\u573a\u5728\u4e00\u4e2a\u5e03\u6ee1\u96fe\u6c14\u7684\u5c71\u9876\u4e0a\uff0c\u8d85\u903c\u771f\u7684\u7e41\u8302\u53e4\u602a"} +{"id": "2004604", "video_name": "0365b856-afa1-5649-aa5b-0ecabcaa9c13", "text": "\u5c0f\u6a44\u6984\u6811\u957f\u5927\u4e86\uff0c\u5b83\u7684\u5c0f\u6a44\u6984\u4e5f\u957f\u5927\u4e86\u3002\u80cc\u666f\u6ca1\u6709\u6539\u53d8\uff0c\u53ea\u6709\u6811\u8d8a\u6765\u8d8a\u5927\u3002"} +{"id": "4002674", "video_name": "c8f6fae9-21a9-59a3-a12f-e04f6235ac53", "text": "\u7f8e\u4eba\u9c7c\u5728\u5237\u7259\u3002\u7f8e\u4eba\u9c7c\u5728\u548c\u5c0f\u9c7c\u5b09\u620f\u3002"} +{"id": "7002220", "video_name": "6ba38d9a-829c-52e9-b080-fa4b023fad9c", "text": "\u53e4\u5e0c\u814a\u54f2\u5b66\u5bb6\u5750\u5728\u6905\u5b50\u4e0a\u601d\u8003\u3002"} +{"id": "7002681", "video_name": "f6cf32ce-193c-51ff-af21-e94e11930894", "text": "\u5728\u660e\u4eae\u7684\u84dd\u8272\u4e91\u5c42\u4e2d\uff0c\u4e00\u8258\u5916\u661f\u98de\u8239\u7f13\u7f13\u964d\u843d\u3002"} +{"id": "6002997", "video_name": "d689891c-9ebb-5871-a460-7023ab0efb0f", "text": "\u6f02\u4eae\u7684\u5361\u7279\u91cc\u5a1c\u7a7f\u7740\u8d34\u8eab\u7684\u7ea2\u8272\u793c\u670d\uff0c\u591c\u665a\u5728\u5893\u5730\u91cc\u7f13\u7f13\u884c\u8d70\u3002 \n\nSource sentence: The sun"} +{"id": "3006470", "video_name": "a56ca014-a0ab-560d-bb54-77d8a18703c5", "text": "\u6709\u4e00\u5929\uff0c\u4ed6\u4eec\u7a7f\u8d8a\u51b0\u51b7\u7684\u5730\u5f62\u65f6\uff0c\u610f\u5916\u9047\u5230\u4e86\u4e00\u7fa4\u4ed6\u4eec\u4ece\u672a\u89c1\u8fc7\u7684\u72fc\u3002\u8fd9\u4e9b\u4e0d\u662f\u666e\u901a\u7684\u72fc"} +{"id": "8003463", "video_name": "3b4c41d3-9a45-5038-9562-20697654f126", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u98ce\u666f\u753b\uff0c\u4e00\u5ea7\u57ce\u5821\u5d4c\u5728\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u5c71\u4e18\u4e4b\u95f4\u3002"} +{"id": "7002996", "video_name": "8e23b96a-14ce-5e7a-a2c7-2f62d2e1bfcc", "text": "\u6709\u673a\u63a7\u5236\u5668\uff0c\u5176\u7ec6\u83cc\u4ee5 H Giger \u98ce\u683c\u79fb\u52a8\u3002"} +{"id": "7002629", "video_name": "21bfd8a1-1fcc-5799-953b-e02f93deba64", "text": "\u8bf7\u7ed9\u6211\u5173\u4e8e\u5723\u96c4\u7518\u5730\u8fd0\u52a8\u7684\u8d44\u6599\u3002"} +{"id": "6002146", "video_name": "6d318f5e-630d-5619-9b8d-c56fb421d009", "text": "\u7f8a\u548c\u5c71\u7f8a\u6b63\u5728\u4e00\u5ea7\u53e4\u5e0c\u814a\u795e\u5e99\u524d\u8d70\u52a8\u3002"} +{"id": "3003129", "video_name": "b6461460-cf83-5634-8b70-83579de3b8fa", "text": "\u4e3b\u795e\u62c9\u59c6\u53ef\u7231\u5730\u5fae\u7b11\u7740\uff0c\u56db\u5904\u89c2\u671b\u3002"} +{"id": "6002456", "video_name": "c0730aff-801c-5d20-8e38-633c801ee6f0", "text": "\u697c\u623f\u7a97\u6237\u706f\u4f1a\u53d8\u6362\u4e0d\u540c\u989c\u8272\uff0c\u540c\u65f6\u6539\u53d8\u5929\u7a7a\u7684\u989c\u8272\u548c\u5f62\u72b6\u30024k\u3002"} +{"id": "3005779", "video_name": "cb08a594-90a8-53cd-8304-a3e81d7ea0f5", "text": "\u4e00\u4e2a\u5e74\u8f7b\u53ef\u7231\u7684\u5370\u5ea6\u7537\u5b50\u9762\u5e26\u5fae\u7b11\u8bf4\u8bdd\u3002"} +{"id": "3006899", "video_name": "6e7dc20d-6d70-54c3-849e-275d10928100", "text": "\u793e\u533a\uff0c\u706f\u5149\u4eae\u8d77\uff0c\u900f\u8fc76\u6247\u7a97\u6237\u7167\u8000\u3002\u665a\u4e0a\u3002"} +{"id": "7003580", "video_name": "3c347715-7147-5c6d-a0d6-b37fe1edcc92", "text": "\u90e8\u843d\u5370\u7b2c\u5b89\u4eba\u7537\u5b50\u5c16\u53eb\u7684\u8096\u50cf\u7167\u7247\uff0c\u771f\u5b9e\u6444\u5f71\uff0c\u6124\u6012\uff0c\u9ec4\u91d1\u65f6\u6bb5\uff0c\u963f\u8428\u5df4\u5947\u80cc\u666f"} +{"id": "8001466", "video_name": "5de2ae84-8332-50be-ab7c-dad541e4c4a1", "text": "\u6811\u4e0a\u957f\u6ee1\u4e86\u679c\u5b9e\u3002"} +{"id": "0004300", "video_name": "06af3159-17bf-539e-8243-8afc8fb53428", "text": "\u5236\u4f5c\u4e00\u4e2a\u4e09\u7ef4\u5361\u901a\u4eba\u624b\u9020\u578b\u7684\u89d2\u8272\uff0c\u62e5\u6709\u7c7b\u4f3c\u7fc5\u8180\u7684\u62c7\u6307\u548c\u5c0f\u6307\u53ef\u4ee5\u98de\u7fd4\uff0c\u6709\u53cc\u811a\u53ef\u4ee5"} +{"id": "0004860", "video_name": "10711237-a285-5e2b-a2a0-27153b02a4ff", "text": "\u6d41\u7ecf\u68ee\u6797\u7684\u6cb3\u6d41"} +{"id": "1005704", "video_name": "68dc0115-8dec-5140-8462-f654cc48a16f", "text": "\u4e00\u53ea\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u9a7e\u9a76\u7f8a"} +{"id": "1003607", "video_name": "427fe38b-7afc-5b7a-b7b8-aa7823000602", "text": "\u6d6e\u5728\u4e91\u7aef\u7684\u57ce\u5e02\uff0c\u88ab\u81ea\u7136\u8986\u76d6\uff0c\u4f46\u62e5\u6709\u4e00\u4e2a\u529f\u80fd\u9f50\u5907\u7684\u57ce\u5e02\u3002"} +{"id": "4004514", "video_name": "e4dcef43-1ae4-549a-89e7-01a2c9d7d3fa", "text": "\u4e00\u4e2a\u80fd\u8bb2\u6545\u4e8b\u7684\u5e74\u8f7b\u548c\u5c1a\u3002"} +{"id": "2005257", "video_name": "67c8ad36-7edc-5954-96f7-4e472fdee52a", "text": "\u4e00\u4e2a\u5728\u6df1\u6797\u91cc\u4ee5\u8721\u70db\u548c\u9c9c\u8840\u4e3a\u4e3b\u7684\u8d85\u73b0\u5b9e\u90aa\u6559\u3002"} +{"id": "6002864", "video_name": "e972d848-a650-5b8a-ba84-d7779973d174", "text": "\u5728\u4e00\u4e2a\u7a46\u65af\u6797\u82cf\u4e39\u7684\u5bab\u6bbf\u91cc\uff0c\u6709\u5341\u4e2a\u88c5\u6ee1\u91d1\u5b50\u7684\u7f50\u5b50\uff0c\u4ed6\u5468\u56f4\u7684\u671d\u81e3\u548c\u5750\u5728\u738b\u5ea7\u4e0a"} +{"id": "0003600", "video_name": "40388946-6dfe-57e3-90f4-0794ebe64f5b", "text": "\u5341\u516d\u4e16\u7eaa\uff0c\u4e00\u4e2a\u6ce2\u65af\u5c3c\u4e9a\u7537\u5b50\u5a36\u4e86\u4e00\u4f4d\u571f\u8033\u5176\u5973\u5b50\u3002"} +{"id": "0003053", "video_name": "362a7799-98a0-537c-ae57-81250c7951fd", "text": "\u4e00\u4e2a\u5546\u4eba\u6b63\u5728\u7535\u8111\u524d\u5de5\u4f5c\uff0c\u4ed6\u611f\u5230\u7126\u8651\u548c\u75b2\u5026\u3002"} +{"id": "1003347", "video_name": "3da11ebd-a0c0-5a69-8056-08dccd13fe5b", "text": "\u8df3\u8fc7\u5c4b\u9876\u7684POV GoPro\u5f55\u50cf\uff0c\u5c31\u50cf\u5728\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u4e2d\u4e00\u6837\u3002"} +{"id": "8002663", "video_name": "6324a333-01e6-556e-a615-fc6a0e96cf7a", "text": "\u4e00\u4e2a\u6447\u6643\u7684\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4e2a\u8eab\u7740\u6597\u7bf7\u7684\u4eba\u5728\u98de\u8d8a\u62e5\u5835\u7684\u4ea4\u901a\u4e2d\u3002"} +{"id": "8003088", "video_name": "63c41352-558a-5856-b366-ef1d3d049df0", "text": "\u5c42\u5c42\u53e0\u53e0\u7684\u5f69\u8272\u9676\u74f7\u7ec4\u6210\uff0c\u8d34\u5728\u623f\u5b50\u5899\u4e0a\u3002"} +{"id": "7004177", "video_name": "1d98c8c8-9a95-56de-af16-be0cd4ebe8a4", "text": "\u6c99\u6f20\u4e2d\u7684\u7537\u4eba\u5e26\u7740\u4e09\u53ea\u9a86\u9a7c\u884c\u8d70\uff0c\u6781\u8fdc\u955c\u5934\uff0c\u5bbd\u9614\u7684\u65e5\u843d\u666f\u8c61\uff0c\u6c99\u6f20\u7684\u592a\u9633"} +{"id": "0006809", "video_name": "3370b211-4be0-5bb4-8bb3-6180e9a26fad", "text": "\u4e00\u4e2a\u627f\u53d7\u7740\u5f88\u591a\u8003\u8bd5\u538b\u529b\u7684\u7537\u5b69\u3002 \n\nSource sentence: She is always eager to learn new things. \n\n\u5979\u603b\u662f\u6e34\u671b\u5b66\u4e60\u65b0\u4e8b\u7269\u3002"} +{"id": "1005031", "video_name": "5d10bfaf-2076-5dc1-9be3-c26c2e1f40f8", "text": "\u7535\u8111\u82af\u7247\u4ece\u84dd\u5929\u767d\u4e91\u4e2d\u843d\u4e0b\u3002"} +{"id": "3003864", "video_name": "0ecebe05-405f-5b36-bfbe-0d95277dbecd", "text": "\u4ed6\u4eec\uff08\u4e24\u4e2a\u767d\u4eba\u96c7\u4f63\u5de5\uff09\u6b63\u5728\u89c2\u770b\u79cb\u5929\u7684\u6ee1\u6708\uff0c\u611f\u53d7\u7740\u79cb\u98ce\u7684\u5439\u62c2\u3002"} +{"id": "0006570", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "\u5e26\u5b57\u6bcd\u7684\u6807\u5fd7\uff1a\u8986\u76d6\u5ea6\u5c0f\uff1aComic Sans\u5b57\u4f53"} +{"id": "3005594", "video_name": "e26335f1-9a11-5393-9e52-5e25d199a9d0", "text": "\u4e00\u4e2a\u6050\u6016\u7684\u751f\u7269\uff0c\u6709\u56db\u53ea\u624b\uff0c\u4e24\u6761\u817f\uff0c\u8eab\u6750\u9ad8\u5927\uff0c\u5706\u5706\u7684\u8138\u4e0a\u6709\u516b\u53ea\u773c\u775b\uff0c\u5728\u9ed1\u6697\u7684\u591c"} +{"id": "8003240", "video_name": "ce402c2a-a415-5e43-9bed-a3e68008c9d5", "text": "\u5728\u4e1c\u4eac\u7684\u4e00\u4e2a\u5bd2\u51b7\u51ac\u591c\u91cc\uff0c\u4e00\u8e0f\u8fdb\u6570\u7801\u5723\u6bbf\uff0cKazuki \u4fbf\u627e\u5230\u4e86\u907f\u96be\u6240\u3002\u624b\u63e1\u624b\u67c4\uff0c\u4ed6"} +{"id": "2003449", "video_name": "480fdf51-e650-5609-8135-4e393431c5ab", "text": "\u4e00\u4e2a\u9ad8\u5927\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c\u5468\u56f4\u662f\u9ca8\u9c7c\u548c\u5176\u4ed6\u795e\u79d8\u7684\u6d77\u6d0b\u751f\u7269\u3002"} +{"id": "6004506", "video_name": "e2fd32ad-713d-5990-9843-31e1255bdfdc", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u6708\u5149\u4e0b\u8d70\u5728\u7a7a\u8361\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2006432", "video_name": "e6b4fc50-6b8e-597b-814c-97e1d4333ded", "text": "\u4ece\u4e0b\u65b9\u770b\uff0c\u66fc\u54c8\u987f\u4e00\u680b\u5efa\u7b51\u7269\u7684\u7a97\u6237\u73bb\u7483\u4e0a\u753b\u4e86\u4e00\u4e2a\u5927\u773c\u775b\uff0c\u773c\u7751\u5fae\u5782\uff0c\u5177\u6709\u7535\u5f71"} +{"id": "8003830", "video_name": "56bc30ad-17ce-5321-95fb-b04c812587e7", "text": "\u54c8\u74e6\u90a3\u5e02\u3002\u4fe1\u606f\uff1a\u6253\u5012\u5361\u5185\u5c14\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003167", "video_name": "8129e410-6c79-583d-ac14-7a50e8758af7", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6444\u50cf\u673a\u524d\u8bb2\u8bdd\uff0c\u52a8\u6f2b\u3002"} +{"id": "1004406", "video_name": "517b1a3a-1272-5c54-9e8e-1008bb0aef6f", "text": "\u5c0f\u52a8\u753b\u7f8a\u9a7c\u8fce\u6765\u4e86\u4e00\u4e2a\u5f1f\u5f1f\u3002\u5927\u54e5\u54e5\u7f8a\u9a7c\u6234\u7740\u84dd\u8272\u7684\u5723\u8bde\u9886\u5e26\u3002\u4ed6\u4eec\u8e22"} +{"id": "7004579", "video_name": "68dce644-c7b9-5859-a5a3-323e56339b52", "text": "\u5c55\u793a\u4eba\u4f53\u89e3\u5256\u5b66\uff0c\u5e76\u5c55\u793a\u5668\u5b98\u7684\u529f\u80fd\u3002"} +{"id": "3004134", "video_name": "c12294a2-4577-5dd1-aed4-09f80c5b6aa0", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u4e00\u8f86\u5b9d\u9a6c\u7a7f\u8d8a\u6c99\u6f20\u3002"} +{"id": "0006166", "video_name": "27944ea5-0248-5048-8719-0271a4e5df67", "text": "\u5c06\u7167\u7247\u4e2d\u7684\u5973\u5b69\u53d8\u6210\u7537\u5b69\u3002\n\nSource sentence: I am sorry, but I cannot help you with that. \n\u5f88\u62b1\u6b49\uff0c\u6211\u65e0\u6cd5\u5e2e\u52a9\u4f60\u89e3\u51b3\u8fd9"} +{"id": "3003579", "video_name": "539b12d1-4400-5217-b617-4a360f5e3ba2", "text": "\u5b83\u662f\u4e00\u9897\u9b54\u6cd5\u79cd\u5b50\uff0c\u62e5\u6709\u8ba9\u68a6\u60f3\u6210\u771f\u7684\u529b\u91cf\u3002"} +{"id": "2005989", "video_name": "847b00b2-fffb-504b-bb7d-781091840815", "text": "\u5192\u9669\u5bb6\u5728\u56fe\u4e66\u9986\u5bfb\u627e\u4e66\u7c4d\u3002"} +{"id": "1005768", "video_name": "6a287c80-a41a-51d5-8d35-3a82ada7bd2c", "text": "\u5f3a\u58ee\u7684\u4e2d\u56fd\u7537\u5b50\u5728\u5065\u8eab\u623f\u953b\u70bc\uff0c4K\u3002"} +{"id": "2006822", "video_name": "47461fdb-c71f-5749-bc2d-e1ae5f9c9571", "text": "\u5973\u5b69\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u6d1b\u83f2\u827a\u672f\u3002"} +{"id": "2003599", "video_name": "ca117659-6b01-565f-a84f-4d2175d0e4f9", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u5728\u9a7e\u9a76\u4e00\u8f86\u5170\u535a\u57fa\u5c3c\uff0c\u5b69\u5b50\u4e5f\u5728\u8f66\u4e0a\u3002"} +{"id": "2006612", "video_name": "a747f832-a738-53e0-b571-b476bad420da", "text": "\u4ee4\u4eba\u60ca\u53f9\u7684\u666f\u8c61\uff0c\u4ece\u7a7a\u4e2d\u4fef\u77b0\u7740\u72c2\u66b4\u7684\u6d77\u4e0a\u65e5\u843d\u3002"} +{"id": "2003755", "video_name": "b5c63df9-f3e1-5347-9ddd-65c921e96d77", "text": "\u4ece\u6469\u6258\u8f66\u4e0a\u62cd\u6444\u7684\u7f8e\u4e3d\u591a\u5f69\u7684\u65e5\u843d\u89c6\u9891\u3002"} +{"id": "1004873", "video_name": "5a0226cb-7886-5787-b743-29d583f90914", "text": "\u8349\u3001\u82b1\u548c\u5934\u53d1\u5728\u6447\u6446\u3002"} +{"id": "8002826", "video_name": "b5bed81b-8dc7-50b3-987d-1c64b17c5223", "text": "\u5728\u68d5\u6988\u6811\u4e1b\u4e2d\u98de\u8d8a\u5f69\u8679\u7011\u5e03\uff0c\u5f69\u8679\u706b\u548c\u7206\u70b8\u7684\u68d5\u6988\u6811\u7684\u84b8\u6c7d\u6ce2"} +{"id": "8002144", "video_name": "8d39cd06-6944-5a9a-8155-9c4deb38cf51", "text": "\u8ba9\u9e1f\u513f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "7002003", "video_name": "8a895f42-6294-52fa-b599-2bd114542693", "text": "\u4e00\u4e2a\u4eba\u5728\u684c\u5b50\u4e0a\u6d25\u6d25\u6709\u5473\u5730\u5403\u7740\u59dc\u997c\u4eba\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u676f\u8336\u3002"} +{"id": "3005817", "video_name": "e5e169b0-cf74-5c23-a3ae-f44e5c7ac01c", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u8dd1\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "6004258", "video_name": "f21c4184-3ea8-516c-b9b2-42cb785c8396", "text": "\u5f7c\u5f97\u00b7\u5e15\u514b\u6362\u4e0a\u4ed6\u7684\u8718\u86db\u4fa0\u670d\u88c5\u3002"} +{"id": "2007513", "video_name": "575758eb-ea5f-5f61-9e3b-2acaad8a3bc2", "text": "\u7f8e\u4e3d\u7684\u8fd1\u666f\u7c89\u7ea2\u8272\u73ab\u7470\u5728\u96e8\u4e2d\u3002"} +{"id": "0005617", "video_name": "1e22b952-7575-57ea-920c-edbebe8a783c", "text": "\u8096\u50cf\u753b\uff0c2D\uff0c\u5c0f\u5973\u5b69\u89d2\u8272\uff0c\u53ef\u7231\uff0c20\u5c81\uff0c\u5168\u5f69\uff0c\u7d2b\u8272\u978b\u5b50\uff0c\u7d2b\u8272\u515c\u5e3d\u88d9\uff0c\u7d2b\u8272\u8863\u670d\uff0c"} +{"id": "0004655", "video_name": "0cc07b14-5984-541b-aff8-fbd72a8ca2b5", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\u4e0b\uff0c\u51e0\u67b6\u4e0d\u660e\u98de\u884c\u7269\u57281561\u5e74\u7684\u7ebd\u4f26\u5821\u4e0a\u7a7a\uff0c\u4eba\u4eec\u89c2\u770bUFO\u7684\u6218\u6597\u3002"} +{"id": "7002378", "video_name": "dce0bd68-7489-5a66-92f5-28b5b43b0b72", "text": "2003\u5e74\u7684Subaru Forester\u5728\u591c\u95f4\u884c\u9a76\u65f6\u53d1\u751f\u4e86\u4e8b\u6545\u3002"} +{"id": "7002565", "video_name": "be7f3f66-b56d-502a-85f6-9cbbc53c1750", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b69\u63a5\u53d7\u73b0\u5b9e\u3002"} +{"id": "6003419", "video_name": "63104503-9115-5121-8f89-bf9618089709", "text": "\u8b66\u5bdf\u90e8\u961f\u8fc5\u901f\u884c\u52a8\uff0c\u8bbe\u7f6e\u8def\u969c\uff0c\u90e8\u7f72\u88c5\u7532\u8f66\u8f86\u548c\u5766\u514b\u3002\u4ed6\u4eec\u4e0e\u5916\u661f\u4eba\u4ea4\u6218\uff0c\u4e0d\u65ad\u5f00\u706b\uff0c\u7206"} +{"id": "5001097", "video_name": "8d419e20-e100-5a69-babb-9e081ca2ab56", "text": "\u4e00\u4e2a\u5c0f\u5730\u56fe\u5c55\u793a\u4e86\u4e00\u4e2a\u821e\u5385\uff0c\u4e2d\u95f4\u6709\u4e24\u4e2a\u4eba\u5728\u8df3\u821e\uff0c\u5468\u56f4\u6709\u89c2\u4f17\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "1003947", "video_name": "48d32df1-f8a8-57f2-9446-5f0ab9068505", "text": "\u4e00\u4e2a\u5730\u4e0b\u3001\u660f\u6697\u7684\u738b\u56fd\uff0c\u6709\u72ed\u7a84\u3001\u5f2f\u66f2\u7684\u96a7\u9053\u3002\u5c0f\u8001\u9f20\u95ea\u4eae\u7684\u773c\u775b\u95ea\u8000\u7740\uff0c"} +{"id": "0006483", "video_name": "2d4ea5f1-96ea-5e7b-896f-1769c7607512", "text": "\u51b0\u5c9b\u86cb\u767d\u77f3\u7cd6\u505a\u6210\u7684\u57ce\u5e02\u3002"} +{"id": "5001791", "video_name": "62352474-08c3-554d-b4c5-1b4a2d6720d7", "text": "\u4e00\u53ea\u6bdb\u6bdb\u866b\u548c\u4e00\u53ea\u9f99\u5728\u7fbd\u6bdb\u7403\u573a\u4e24\u4fa7\u6253\u7fbd\u6bdb\u7403\u3002"} +{"id": "3004810", "video_name": "9fc7ac25-4fa8-5ff1-879e-8386c10bf69a", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u5979\u8eab\u65c1\u6709\u4e00\u7fa4\u9e21\u7684\u966a\u4f34\u4e0b\u9605\u8bfb\u4e66\u7c4d\u3002"} +{"id": "0005114", "video_name": "14fd1971-a45d-5acb-b558-d740f95cdfec", "text": "\u6700\u5927\u7684\u884c\u52a8\uff0c\u7535\u5f71\u822c\u7684\uff0c\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4e2d\uff0c\u73b0\u5b9e\u548c\u6570\u5b57\u65e0\u7f1d\u5730\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002"} +{"id": "2005805", "video_name": "9de3bb9a-edf9-54e9-a4b5-6226a5427dfa", "text": "\u4e24\u4e2a\u7a0b\u5e8f\u5458\u5728\u5bb6\u91cc\u4e00\u8d77\u7f16\u5199\u4ed6\u4eec\u7684\u4ee3\u7801\u3002"} +{"id": "7003937", "video_name": "0069af15-6d93-51c5-b521-8f3c99b170c8", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u9752\u5c11\u5e74\u4e0e\u89c6\u529b\u95ee\u9898\u640f\u6597\u3002"} +{"id": "2006914", "video_name": "0356bff4-d4c7-539d-87ee-0e36146bc481", "text": "\u6811\u4e0b\u7684\u5361\u901a\u804a\u5929\u72d0\u72f8"} +{"id": "2004246", "video_name": "c15c18f6-35ae-532c-a3bb-b3da361db5d7", "text": "\u90a3\u4e2a\u957f\u7740\u80e1\u987b\u7684\u4eba\u9c7c\u5750\u5728\u6d77\u4e0a\u7684\u5ca9\u77f3\u4e0a\uff0c\u753b\u8d28\u6781\u9ad8\uff0c\u975e\u5e38\u6e05\u6670\uff0c\u662f\u4e00\u4ef6\u6770\u4f5c\u3002"} +{"id": "7004732", "video_name": "c2cab788-dc05-5c56-99bb-e4c1f6c77dd3", "text": "\u4e1c\u65b9\u6751\u5e84\u4e00\u76f4\u5b89\u9759\u5b58\u5728\u7740\uff0c\u76f4\u5230\u795e\u79d8\u7684\u5929\u5916\u751f\u7269\u5f00\u59cb\u51fa\u73b0\u3002"} +{"id": "2005396", "video_name": "0c858763-efcf-576d-85c5-359a18ac1d54", "text": "Mochi\u662f\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u578b\u535a\u7f8e\u72ac\u3002\u4ed6\u7684\u623f\u5b50\u4f4d\u4e8e\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u82b1\u56ed\u91cc\uff0c\u82b1\u8349\u5e38\u5e74"} +{"id": "8002276", "video_name": "2a55593d-5a39-5d0f-bb3f-2fccbcd7eae3", "text": "\u72c2\u4eba\u540c\u884c\uff0c\u7ea2\u53d1\u5973\u5b69\uff0c\u771f\u5b9e\u611f\uff0c4K\uff0c\u4f73\u80fd\u7167\u7247\uff0c\u6770\u4f5c\uff0c\u6770\u4f5c\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u8d85\u903c\u771f\uff0c32K"} +{"id": "6004685", "video_name": "ebe92493-86ae-582b-9d07-ad70f425ad71", "text": "\u4e00\u4e2a\u53cb\u597d\u7684\u5927\u811a\u602a\u5728\u7011\u5e03\u4e0b\u6c90\u6d74\u3002"} +{"id": "0006460", "video_name": "2cf93700-a06f-515a-a450-04e96b81b11f", "text": "\u4f26\u6566\u516c\u4ea4\u8f66\u53f8\u673a\u5728\u6c34\u4e0b\u3002"} +{"id": "0005441", "video_name": "1ad53c22-18ea-5a22-be98-2a1640e3d429", "text": "\u5728\u6d77\u8fb9\u6709\u84dd\u8272\u548c\u7eff\u8272\u7684\u6c34\uff0c\u5929\u4e0a\u6709\u9e1f\u98de\u7fd4\uff0c\u8fd8\u6709\u4e00\u8258\u5feb\u8247\u3002"} +{"id": "4004007", "video_name": "2e3f2c85-bd78-50e7-9dfe-7c80fbb9a18b", "text": "\u7531\u73bb\u7483\u5236\u6210\u7684\u534a\u900f\u660e\u7532\u866b\uff0c\u5185\u90e8\u53d1\u5149\u3002\u8fd0\u52a8\uff1a5\u3002 \n\nSource sentence: The sun sets in the west and rises in the east. \n\u592a\u9633"} +{"id": "4002318", "video_name": "fef1c65a-114e-596b-bc6e-4f54597c9888", "text": "\u673a\u5668\u4eba\u5750\u5728\u684c\u5b50\u524d\u5b66\u4e60\uff0c\u673a\u5668\u4eba\u4e0a\u6709\u65af\u5766\u798f\u5927\u5b66\u7684\u6807\u5fd7\u548c\u6807\u5fd7\u6027\u7684\u7ea2\u8272\u3002\u80cc\u666f\u91c7\u7528\u65af\u5766"} +{"id": "7004010", "video_name": "e98f3e1e-cf21-5450-9c07-f7f081407147", "text": "\u5154\u5b50\u4eba\u5728\u4e00\u4e2a\u5154\u5b50\u9547\u6563\u6b65\u3002"} +{"id": "1004350", "video_name": "503c277d-c23a-5eb6-b4a7-78b2609cc05a", "text": "\u871c\u8702\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "6002166", "video_name": "4bf8f64a-5f6b-5b0c-a5bf-d46760151398", "text": "\u91d1\u773c\u7736\u7736\u773c\u73af\u7ed5\u5728\u91cd\u6c34\u4e2d\u5954\u8dd1\u3002"} +{"id": "6004822", "video_name": "87d2590c-b039-5618-8ef7-ccd47c3f276c", "text": "\u5496\u5561\u9769\u547d\uff0c\u4eba\u4eec\u8ffd\u9010\u7740\u4e00\u5927\u676f\u5496\u5561\u3002"} +{"id": "3004079", "video_name": "5156c18c-2444-5b35-8748-e3fe6a6b110e", "text": "\u4e00\u4e2a\u5c0f\u76843D\u7537\u5b69\u548c\u4e00\u6735\u7ea2\u8272\u7684\u73ab\u7470\u82b1\u5728\u4ea4\u8c08\u3002"} +{"id": "1006651", "video_name": "79dd0b5e-87b6-5461-bc8e-11966663deff", "text": "\u7535\u5f71\u300a\u7cbe\u795e\u72c2\u53eb\u300b\u4e2d\u6c7d\u8f66\u573a\u666f\u3002"} +{"id": "2003383", "video_name": "2b47a44a-a9f9-54b4-811f-a14f13ccbc4a", "text": "\u4f0a\u739b\u76ee\u5728\u548c\u4ed6\u7684\u540c\u4ec1\u4ea4\u8c08\uff0c\u6e05\u771f\u5bfa\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "6004010", "video_name": "796c3fb6-1c57-5be2-af64-3b07c86bc2f8", "text": "\u53e4\u8001\u7684\u5370\u5ea6\u56fd\u738b\u548c\u6cf0\u6208\u5c14\u5728\u5bab\u6bbf\u91cc\u4ea4\u8c08\u3002"} +{"id": "7004270", "video_name": "5539340d-642b-545f-91b9-553a855974fd", "text": "\u4e00\u4e2a\u5728\u9ed1\u6697\u3001\u53cd\u4e4c\u6258\u90a6\u672a\u6765\u7684\u8282\u65e5\u3002\u6f14\u594f\u7684\u4e50\u961f\u662f\u4e00\u652f\u672a\u6765\u670b\u514b\u4e50\u961f\u3002"} +{"id": "6002237", "video_name": "e37cb009-754e-51f1-b589-ef6f30aedec7", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u5de5\u4eba\u5728\u516c\u56ed\u91cc\u7528\u4e09\u4e2a\u65b0\u5851\u6599\u74f6\u6742\u800d\u3002"} +{"id": "3003808", "video_name": "44d12360-ff5d-50c9-bb4b-0bb2f944884f", "text": "\u57fa\u4e8e\u65f6\u95f4\u65c5\u884c\u7684\u60f3\u6cd5\u8bbe\u8ba1\u4e00\u4e2a\u5947\u5e7b\u65f6\u5c1a\u793c\u670d\u3002"} +{"id": "7004784", "video_name": "b1e84bbf-e3f3-588f-b0b4-a754d37195e6", "text": "\u84dd\u8272\u7684\u4e09\u7ef4\u516d\u8fb9\u5f62\uff0c\u767d\u8272\u7684\u5706\u5f62\u773c\u775b\uff0c\u767d\u8272\u7684\u5c16\u7259\u3002"} +{"id": "3006468", "video_name": "a3be7ee5-0abb-5fed-8969-be45b5aaeeab", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u5728\u6c34\u4e0a\u8df3\u821e\u3002"} +{"id": "0005878", "video_name": "22ab6fe3-1c27-5b8f-9562-86f4d35d903c", "text": "\u5e7b\u89c9\u6f29\u6da1\u98de\u901f\u65cb\u8f6c\uff0cUFO \u98de\u884c\u3002"} +{"id": "8002945", "video_name": "8c875607-86d1-57a8-9f42-e5135e49968c", "text": "\u4e00\u4f4d\u7a7f\u7740\u6d45\u84dd\u8272\u8863\u670d\u7684\u5e74\u8f7b\u5973\u5b69\u88ab\u602a\u7269\u5305\u56f4\u3002"} +{"id": "1004045", "video_name": "4b11637c-cd15-50f7-93a3-6787d8d95a97", "text": "\u5728\u96e8\u4e2d\u884c\u8d70\uff0c\u4e13\u4e1a\u6444\u5f71\uff0c\u6d45\u666f\u6df1\u3002"} +{"id": "1004788", "video_name": "58761804-c929-5c78-9e35-505a42480496", "text": "\u4f69\u6234\u4e2d\u5f0f\u5e3d\u5b50\uff0c\u7559\u7740\u957f\u767d\u80e1\u987b\uff0c\u7a7f\u7740\u9ed1\u8272\u5e03\u6599\uff0c\u624b\u6301\u4e2d\u5f0f\u58f3\u5b50\uff0c\u5168\u8eab\u6b63\u9762\u62cd\u7167\uff0c\u80cc"} +{"id": "0006918", "video_name": "35505e7c-6a9d-5676-8ded-c74f75f4f41d", "text": "\u5728\u843d\u65e5\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u4f4d\u5145\u6ee1\u559c\u60a6\u548c\u6d3b\u529b\u7684\u4eba\u5728\u65e0\u5c3d\u7684\u6d77\u6ee9\u4e0a\u6f2b\u6b65\uff0c\u80cc\u666f\u4e2d\u54cd\u8d77\u6b22\u4e50"} +{"id": "3005738", "video_name": "0e0e3524-de4f-5d3b-8cec-3da97d9f4d40", "text": "\u7537\u4eba\u3001\u5973\u4eba\u3001\u5b69\u5b50\u548c\u8001\u5e74\u4eba\u6325\u821e\u7740\u963f\u5c14\u53ca\u5229\u4e9a\u56fd\u65d7\uff0c\u5728\u8857\u4e0a\u8d70\u7740\u3002"} +{"id": "2003038", "video_name": "ab03bb8e-6ff5-547b-b703-c1b8b8b6a4d0", "text": "4k\u3001\u903c\u771f\u3001\u5e7b\u60f3\u30013D\u3001\u5609\u5e74\u534e\u3001\u53ef\u6015\u3001\u6709\u8da3\u3001\u5feb\u4e50\uff0c\u4ece\u7535\u89c6\u4e2d\u53d8\u5f62\u3002"} +{"id": "0003490", "video_name": "3e79c8d7-5e0a-553c-9f96-f78e3c86ceaa", "text": "\u9ed1\u6d1e\u6d78\u6ce1\uff0c\u5e26\u6709\u5149\u5f71\u6548\u679c\u3002"} +{"id": "4003320", "video_name": "4515b939-024f-51c5-bdda-107ef9e061de", "text": "\u82b1\u513f\u5728\u6b22\u4e50\u4e2d\u6447\u66f3\u3002 \u9644\u8a00\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2007943", "video_name": "58e350fc-1d5c-5f85-8616-755d30f701cc", "text": "\u4e00\u4e2a\u767d\u5149\u95ea\u8000\u7684\u4eba\u3002"} +{"id": "0004997", "video_name": "12fd26fd-0fa0-5a74-a47e-72e3e4980afa", "text": "\u57281950\u5e74\u4ee3\uff0c\u5df4\u9ece\u4e00\u5bb6\u5496\u5561\u5e97\u91cc\u6709\u4e00\u4e2a\u76ae\u80a4\u8f83\u9ed1\u7684\u7537\u4eba\u5728\u5de5\u4f5c\u3002"} +{"id": "0006523", "video_name": "2e069582-0a69-595e-9528-d19053b68e9e", "text": "\u4e07\u5723\u8282\u8fea\u58eb\u5c3c\u516c\u4e3b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003674", "video_name": "026ca05b-5858-52b8-8250-9c35e334583a", "text": "\u4e09\u7ef4\u81ea\u7136\u80cc\u666f\uff0c\u82b1\u56ed\u91cc\u7684\u8774\u8776\uff0c\u4e94\u5f69\u6591\u6593\u7684\u82b1\u6735\u3002"} +{"id": "0003121", "video_name": "3768a328-e933-566f-a0f1-383d2d0c9ec5", "text": "\u6570\u767e\u53ea\u4f01\u9e45\u7ad9\u5728\u4e00\u4e2a\u5927\u9ebb\u7530\u91cc\u3002"} +{"id": "8003664", "video_name": "a5c19ba4-2a08-555d-b34f-a525fce82fb7", "text": "\u4e00\u4f4d\u53e4\u4ee3\u4e2d\u56fd\u6b66\u672f\u5bb6\u7a7f\u7740\u6f02\u4eae\u7684\u4e1d\u7ef8\u888d\u5b50\u671d\u7740\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u4e2d\u56fd\u6751\u5e84\u8d70\u53bb\uff0c\u591c"} +{"id": "0006437", "video_name": "2c487712-53a6-59be-86fd-d9bb2339f82a", "text": "\u4e00\u5e62\u6f02\u4eae\u7684\u623f\u5b50\u5728\u4e00\u6761\u72ed\u7a84\u7684\u5c71\u8c37\u4e4b\u4e2d\u3002"} +{"id": "2003279", "video_name": "05dcdac3-4f38-5877-80b3-e0d17392e68d", "text": "\u732b\u548c\u72d7\u4e00\u8d77\u5728\u7a97\u8fb9\u7761\u89c9\uff0c\u5916\u9762\u5728\u4e0b\u96ea\u3002"} +{"id": "4003934", "video_name": "3fc6a6e0-812f-5941-92fe-4bffe5d98686", "text": "\u7535\u5f71\u822c\u7684\uff0c4k\uff0c8k\uff0c\u6df9\u6ca1\u7684\u57ce\u9547\uff0c\u6d77\u5578\uff0c\u6c34\uff0c\u6df9\u6ca1\u7684\u623f\u5c4b\uff0c\u707e\u96be\uff0c\u73b0\u4ee3\u623f\u5c4b\uff0c2020\u5e74"} +{"id": "3005676", "video_name": "4fa94d4f-03f8-5d96-a5a1-36d95835a058", "text": "\u6cb9\u6f06\u5012\u5165\u6df7\u5408\u9ad8\u6e05\u9c9c\u8273\u54c7\u3002"} +{"id": "2005802", "video_name": "15bdc197-9b77-514a-92ce-f95052f245c5", "text": "\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u57ce\u5e02\uff0c\u5728\u5e86\u795d\u65b0\u5e74\u65f6\u88ab\u7167\u4eae\uff0c\u53cd\u6620\u51fa\u73b0\u4ee3\u52a0\u52d2\u6bd4\u793e\u4f1a\u7684\u6d3b\u529b\u548c\u5927\u80c6\u3002"} +{"id": "8003940", "video_name": "608e5cfb-e0e1-5c90-80b5-98dc551dca7e", "text": "\u827e\u767b\u548c\u827e\u62c9\u7ad9\u5728\u4e00\u8d77\uff0c\u7528\u4ed6\u4eec\u4ea4\u7ec7\u7684\u529b\u91cf\u548c\u7231\u9762\u5bf9\u8feb\u5728\u7709\u776b\u7684\u707e\u96be\u7684\u9ad8\u6f6e\u573a\u9762\uff0c\u5c55\u73b0\u4e86\u4ed6"} +{"id": "1004748", "video_name": "57e4ed90-d9a8-5409-bcb6-f80903d430a2", "text": "\u6559\u6388\u7f16\u8f91\u7167\u7247\u7684\u5973\u58eb"} +{"id": "0006104", "video_name": "26a3cdb7-622b-5136-ae81-0d4766aca869", "text": "\u5c06\u52a8\u753b\u753b\u9762\u79fb\u81f3 xyz \u5973\u58eb\u5bb6\u4e2d\uff0c\u8fdb\u5165\u5b9d\u5b9d\u7684\u623f\u95f4\uff0c\u8f7b\u8f7b\u5730\u7528\u6bef\u5b50\u628a\u4ed6\u76d6\u597d\u3002"} +{"id": "0004630", "video_name": "0c4ec1a3-b126-531f-a37d-c459f14e6311", "text": "\u4e24\u4e2a\u7537\u4eba\u9760\u5f97\u975e\u5e38\u8fd1\u3002"} +{"id": "7004009", "video_name": "80eb791b-e7a8-5782-91e2-87e71e326cb1", "text": "\u70df\u96fe\u5f25\u6f2b\u7684\u68ee\u6797\u3002\u4fe1\u606f\uff1a\u9a6c\u4e39\u3002"} +{"id": "6002298", "video_name": "14adb734-421f-5435-9456-1b4af81634bd", "text": "\u6d2a\u6c34\u6765\u88ad\uff0c\u4eba\u4eec\u8dd1\u5f00\uff0c\u573a\u9762\u903c\u771f\u3002"} +{"id": "2003468", "video_name": "80a5d55b-6512-5a4f-b8e7-5b78032e3fba", "text": "\u4e00\u6761\u5b81\u9759\u7684\u6708\u5149\u8857\u9053\uff0c\u6240\u6709\u623f\u5b50\u90fd\u9ed1\u6f06\u6f06\u7684\uff0c\u9664\u4e86\u4e00\u4e2a\u623f\u5b50\uff0c\u90a3\u91cc\u53ea\u6709\u4e00\u4e2a\u706f\u5728\u95ea\u70c1\u3002"} +{"id": "1006642", "video_name": "79b9a0ac-7954-5e0d-b570-a58cb0cb70da", "text": "\u591a\u6c41\u8106\u76ae\u7684\u57f9\u6839\u6389\u8fdb\u6709\u6cb9\u7684\u5e73\u5e95\u9505\u91cc\u3002"} +{"id": "8003193", "video_name": "4cf65819-955b-571b-845b-1a693f0c9145", "text": "\u5965\u5229\u7ef4\u4e9a\u548c\u5979\u7684\u72d7\u9a6c\u514b\u65af\u5728\u4e00\u7247\u76db\u5f00\u9c9c\u82b1\u7684\u516c\u56ed\u91cc\u6563\u6b65\u3002"} +{"id": "4003710", "video_name": "f1c92e0c-6ad2-57fc-9e85-4b666dd87799", "text": "\u4e00\u53ea\u732b\u5728\u7d2b\u8272\u82b1\u6735\u548c\u843d\u4e0b\u7684\u96e8\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002546", "video_name": "3e9db7da-815b-58a6-9fca-cb2e8d730c69", "text": "\u4e00\u4f4d\u963f\u8054\u914b\u7537\u5b50\u77e2\u91cf\u827a\u672f\u5f62\u8c61\uff0c\u8868\u60c5\u62c5\u5fe7\uff0c\u601d\u8003\u4e2d\u3002"} +{"id": "7003660", "video_name": "67432d48-0ccd-565d-9670-20439257f224", "text": "\u4e00\u4e2a\u80d6\u4e4e\u4e4e\u7684\u53d8\u88c5\u7687\u540e\u4ee5\u52a8\u6f2b\u98ce\u683c\u8df3\u821e\uff0c\u4f7f\u7528\u4f73\u80fd55\u6beb\u7c73\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c8K\u7684"} +{"id": "6003456", "video_name": "2869bf44-75ee-59d0-80b6-4dff1808eda6", "text": "\u5728\u58c1\u7089\u524d\u653e\u7740\u95ea\u70c1\u7684\u82b1\u73af\u548c\u4e00\u6247\u6709\u98d8\u96ea\u7684\u7a97\u6237\u4e0b\uff0c\u6446\u653e\u7740\u5e26\u6709\u8fea\u58eb\u5c3c\u5143\u7d20\u7684"} +{"id": "3006528", "video_name": "f522e7bc-07ac-519a-8c1a-c7cfa9621506", "text": "\u4eba\u4eec\u5728\u7e41\u5fd9\u7684\u65b0\u623f\u95f4\u6765\u56de\u8d70\u52a8\u3002"} +{"id": "3006786", "video_name": "c21eaac1-784c-56bc-b5d3-44f022aa720e", "text": "\u5e7f\u9614\u5b81\u9759\u7684\u6d77\u6d0b\uff0c\u62e5\u62b1\u5730\u5e73\u7ebf\uff0c\u4e0e\u592a\u9633\u5171\u821e\u3002"} +{"id": "1005230", "video_name": "6042f4ce-e672-58dd-9ff4-38309f42c8c2", "text": "\u975e\u5c45\u4f4f\u5728\u4e9a\u9a6c\u900a\u68ee\u6797\u7684\u4eba\u8fdb\u884c\u9ec4\u91d1\u91c7\u77ff\u3002"} +{"id": "0004293", "video_name": "0688bc44-dcb5-540f-ac75-95caeb8bc950", "text": "Rabbit\u8bfe\u7a0b\u5b66\u5230\u7684\u6559\u8bad\u7684\u89c6\u89c9\u5448\u73b0\u3002\n\u57284k 16:9\u4e2d\u3002"} +{"id": "7003511", "video_name": "c3296113-b452-5277-b415-c67568938d62", "text": "Billelis\u7684\u98ce\u683c\u975e\u5e38\u8b66\u89c9\uff0cHeraldo Ortega\u8be6\u7ec6\u5730\u63cf\u7ed8\u4e86\u5730\u5f62\uff0cHDR 24K\u795e\u79d8\u7684\u51dd\u89c6\u3002"} +{"id": "2007370", "video_name": "f6407b23-faea-566f-8876-f5aea188a36c", "text": "\u7194\u5316\u7684\u5de7\u514b\u529b\u7011\u5e03\uff0c\u5bc6\u96c6\u3001\u8d85\u903c\u771f\u3001\u5168\u666f\u3001\u52a8\u60011"} +{"id": "8003092", "video_name": "c2551adc-ed01-5dd1-8cde-f4863343e065", "text": "\u5728\u8fd9\u5f20\u56fe\u7247\u4e2d\uff0c\u6211\u4eec\u770b\u5230\u4e86\u5361\u95e8\u5c71\uff0c\u4e00\u7247\u5e72\u65f1\u3001\u591a\u5ca9\u77f3\u7684\u666f\u89c2\uff0c\u5df4\u529b\u7684\u5148\u77e5\u4eec\u56f4\u7ed5\u7740\u796d\u575b\u7ad9"} +{"id": "0005902", "video_name": "22fda58a-0b90-5122-8eb9-ae6fa6e3b54d", "text": "\u52a8\u753b\u300a\u704c\u7bee\u9ad8\u624b\u300b\u7531\u4eba\u5de5\u667a\u80fd\u521b\u4f5c\uff0c\u6d88\u606f\u6765\u6e90\u4e8e2023\u5e74\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1003874", "video_name": "475e2788-f9c7-54a3-a64c-1f3ee6829cca", "text": "Python\u5f00\u53d1\u8005\u548c\u7f16\u7a0b\u8bed\u8a00 \u4fe1\u606f\uff1az (\u5b57\u4f53\uff1aBAUHAUS)"} +{"id": "0003596", "video_name": "40256a64-72f3-5770-a00e-5cbec8ae0dd4", "text": "\u4e8c\u624b\u5e97\u91cc\u5806\u79ef\u6210\u5c71\u7684\u8863\u670d\u3002\u4fe1\u606f\uff1a\u8865\u4e01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006458", "video_name": "b11a85f8-0954-57bf-828d-4abcebf1822b", "text": "\u5c06\u4e00\u4e2a\u7ea2\u8272\u5706\u5708\u53d8\u6210\u84dd\u8272\u6b63\u65b9\u5f62\uff0c\u7136\u540e\u53d8\u56de\u9ec4\u8272\u4e09\u89d2\u5f62\u3002"} +{"id": "2003969", "video_name": "9cc5b2fc-21df-550e-8cef-20a6a7f68db4", "text": "\u4e00\u67b6\u7531\u7ea2\u5929\u9e45\u7ed2\u5236\u6210\u7684\u98de\u673a\uff0c\u5728\u6d77\u8fb9\u7684\u65e5\u843d\u80cc\u666f\u4e0b\uff0c\u671d\u7740\u7531\u84dd\u5929\u9e45\u7ed2\u5236\u6210\u7684\u5c71"} +{"id": "3006220", "video_name": "5c01f8ee-7a3d-58c0-ab92-146f74529776", "text": "\u5c55\u793a\u4e00\u4e2a\u6a21\u5757\u5316\u623f\u5c4b\u5728\u5de5\u5382\u5236\u9020\u7684\u89c6\u9891\u3002"} +{"id": "2006068", "video_name": "895e2ead-1985-5781-9755-448c34932a24", "text": "\u4e00\u4e2a\u52a8\u6f2b\u98ce\u683c\u7684\u5973\u5b69\uff0c\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\uff0c\u9ad8\u4e2d\uff0c\u56db\u6708\u3002"} +{"id": "2006719", "video_name": "37d4ccae-5375-580d-87af-2e25d8510d99", "text": "\u900f\u660e\u88d9\u5b50\u91cc\u9762\u6ca1\u6709\u7a7f\u8863\u670d\u7684\u5973\u58eb"} +{"id": "0005100", "video_name": "14bb083b-8736-55ee-81ec-60f7f889c1f2", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u60c5\u7eea\u6c79\u6d8c\uff0c\u601d\u7eea\u7ffb\u817e\uff0c\u8868\u60c5\u5f3a\u70c8\uff0c\u5934\u53d1\u51cc\u4e71\uff0c\u62f3\u5934\u7d27\u63e1\uff0c\u4e4c\u4e91"} +{"id": "2007472", "video_name": "d5da5f85-17af-51da-8a18-ac28f712c5c5", "text": "\u5916\u661f\u4eba\u653b\u51fb\u519b\u4e8b\u57fa\u5730\uff0c\u7206\u70b8\u548c\u6fc0\u70c8\u6218\u6597\u3002"} +{"id": "0006514", "video_name": "2dde2b20-4af0-5bb6-94a1-d77c123569cf", "text": "\u4e00\u53ea\u767d\u8272\u7684\u732b\u548c\u4ed6\u7684\u72ac\u7c7b\u670b\u53cb\u4eec\u7ad9\u5728\u4e00\u4e2a\u5927\u6d3e\u5bf9\u7684\u4e2d\u5fc3\u3002"} +{"id": "4002809", "video_name": "6a42a748-64ba-54c7-a9c8-ddd5e5f584d1", "text": "\u4e00\u540d\u7a7f\u7740\u725b\u4ed4\u88e4\u7684\u6027\u611f\u4e2d\u56fd\u5973\u5b69\u5728\u5546\u573a\u8d2d\u7269\uff0c\u9762\u5e26\u975e\u5e38\u5f00\u5fc3\u7684\u8868\u60c5\u3002"} +{"id": "7003290", "video_name": "97f1d72e-9a98-57f6-a146-c7cee750e17f", "text": "\u9f99\u5728\u6811\u4e0a\u7761\u89c9\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "8002268", "video_name": "4feb16db-3fc3-5ac7-8581-ecc65b5a3ec1", "text": "X\u4ee3\u8868\u672a\u77e5\uff0c\u8574\u542b\u7740\u795e\u79d8\u4e4b\u8c1c\u3002\u5728\u5361\u901a\u89d2\u8272\u4e2d\u3002"} +{"id": "4002872", "video_name": "0e2013cf-552f-5528-9c03-88a1de65ade6", "text": "\u661f\u7403\u5728\u592a\u7a7a\u4e2d\u3002\u4fe1\u606f\uff1a\u4f60\u597d\uff0c\u4e16\u754c\u3002 (\u5b57\u4f53\uff1aBAUHAUS)"} +{"id": "6002309", "video_name": "7cfb2ec8-5ef4-5ede-9452-e12fa3e04d09", "text": "\u591c\u665a\u7684\u5929\u9645\u7ebf\u5f62\u6210\u4e86\u201c\u5c0f\u5218\u665a\u5b89\u201d\u8fd9\u4e2a\u5b57\u3002"} +{"id": "8002725", "video_name": "c78897a5-ce1b-552e-887e-dde98eeb63ad", "text": "\u519b\u7528\u76f4\u5347\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u8fc7\u3002"} +{"id": "4004436", "video_name": "e5fe0993-2ff7-56a0-afcd-170e22e31607", "text": "\u4e3a\u7f51\u7ad9\u82f1\u96c4\u90e8\u5206\u521b\u5efa\u89c6\u9891\uff0c\u5448\u73b03D\u5200\u5177\u548c\u65e5\u672c\u98ce\u683c\u3002\u9644\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005110", "video_name": "9c87bf7b-7633-54f1-baa9-a8060256ad6b", "text": "\u4e00\u53ea\u5c0f\u96c0\u9e1f\u505c\u5728\u6625\u82b1\u7efd\u653e\u7684\u679d\u5934\u4e0a\u3002"} +{"id": "6002498", "video_name": "88c3c3fe-1d7d-5092-a38b-8d63fee4f28d", "text": "\u52a8\u753b\u4eba\u7269\u53ef\u7231\u7537\u5b69\u7ad9\u5728\u519c\u7530\u91cc\uff0c\u5468\u56f4\u6709\u9c9c\u8273\u7684\u82b1\u548c\u852c\u83dc\uff0c\u4ed6\u5174\u594b\u5730\u7b11\u7740\u3002\u98ce\u5728"} +{"id": "2003608", "video_name": "f4fd5903-2742-53d5-9f6e-75c74d669ff5", "text": "\u5927\u8111\u5728\u8ff7\u5e7b\u82b1\u56ed\u4e2d\u6269\u5c55\u3002\n\nSource sentence: The sun is setting behind the mountains. \n\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "2003218", "video_name": "5893d507-7c06-5c08-8b0f-2e7d9d87730e", "text": "\u521b\u9020\u4e00\u4e2a\u795e\u79d8\u7075\u9b42\u7684\u8ff7\u4eba\u573a\u666f\uff0c\u8fd9\u4e2a\u7075\u9b42\u6709\u7740\u6d41\u6dcc\u7684\u94f6\u8272\u5934\u53d1\uff0c\u4f69\u6234\u7740\u7cbe\u81f4"} +{"id": "2007954", "video_name": "71978777-7395-5f83-b15a-d55a240bf210", "text": "\u4e3aMikihouse\u54c1\u724c\u521b\u5efa\u4e00\u4e2a\u6a21\u578b\u3002"} +{"id": "6004137", "video_name": "eff6f926-1e0a-53fb-8977-77c662bd212a", "text": "\u6355\u6349\u7ebd\u7ea6\u5e02\u4e2d\u5fc3\u6d1b\u514b\u83f2\u52d2\u4e2d\u5fc3\u5723\u8bde\u6811\u7684\u9b54\u529b\uff0c\u63cf\u7ed8\u6811\u6728\u88ab\u6807\u5fd7\u6027\u6469\u5929\u5927\u697c"} +{"id": "4004757", "video_name": "83b973c2-9dc4-579c-a85c-c90b0274668a", "text": "\u5236\u4f5c4K\u89c6\u9891\u3002\u4e30\u7530\u666e\u9510\u65af\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u9a76\u5411\u592a\u9633\u3002"} +{"id": "7004350", "video_name": "8a52e9db-28c0-5537-8f00-d390edccfc61", "text": "\u7537\u5b69\u5f00\u5fc3\u5730\u8df3\u7740\u821e\u3002"} +{"id": "8001020", "video_name": "38459d4b-2eac-50d9-a558-94e4add737e3", "text": "\u6e90\u53e5\uff1a\u4ece\u4f0a\u7538\u6e56\u4e2d\u51fa\u73b0\u7684\u4eba\u5934\u6d77\u86c7\u795e\u79d8\u8d85\u73b0\u5b9e\u4e3b\u4e49\n\nTranslated sentence: \u4ece\u4f0a\u7538\u6e56\u4e2d\u51fa\u73b0\u7684\u4eba\u5934\u6d77"} +{"id": "4003708", "video_name": "f7b5162d-e689-5a22-8f26-957bab43c9ee", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u8dea\u6ed1\u3002"} +{"id": "3003523", "video_name": "e43c8e6c-b057-5771-a819-a084bb1cb65c", "text": "\u7ea2\u9f99\u5728\u4e00\u4e2a\u590d\u6742\u7684\u4e2d\u56fd\u8336\u676f\u91cc\u559d\u7740\u7194\u5ca9\u3002"} +{"id": "8001292", "video_name": "3cf92752-23e6-5163-b6fd-f6e51876ef3f", "text": "\u70ed\u60c5\u7684\u8db3\u7403\u4eba\u7fa4\u7684\u6846\u67b6\uff0c\u6807\u5fd7\u6027\u7684\u9ed1\u767d\u65d7\u5e1c\u3002"} +{"id": "6002162", "video_name": "a5c22e18-26da-5496-8793-aab4f7f19ac9", "text": "\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u7a97\u6846\u6846\u8d77\u4e86\u753b\u9762\uff0c\u4e00\u540d\u7537\u5b50\u8fdc\u8fdc\u5730\u7ad9\u5728\u7a97\u524d\u51dd\u671b\uff0c\u663e\u5f97\u6709\u4e9b\u8be1\u5f02\u3002"} +{"id": "1005042", "video_name": "5d34ec1e-40c5-5b5b-8d38-dce58f608065", "text": "\u5728\u9ed1\u6697\u7684\u591c\u665a\u4e2d\uff0c\u56fe\u57c3\u56fe\u57c3\uff08\u53c8\u53eb\u201c\u949f\u949f\u201d\uff09\u662f\u4ec0\u4e48\u6837\u5b50\u5728\u98de\uff0c\u5bfb\u627e\u7740\u4ec0\u4e48\u3002"} +{"id": "2006718", "video_name": "db017359-285b-5b66-ba6f-0a1448386eb9", "text": "\u5c0f\u5b69\u9003\u8131\u4e86\u88abZdzislaw Beksinski\u7ed8\u5236\u7684\u5deb\u6bd2\u68ee\u6797\u3002"} +{"id": "3004833", "video_name": "b7a8cc04-7cdc-5979-88a5-e781aac14915", "text": "\u706b\u5f71\u5fcd\u8005\u89d2\u8272\uff0c\u80cc\u666f\u4e3a\u6728\u53f6\u6751\u3002"} +{"id": "8002781", "video_name": "d5289d0b-3697-5860-b42d-7aff0726e9e5", "text": "\u62ff\u7834\u4ed1\u9a91\u9a6c\u53bb\u4e86\u67d0\u4e2a\u5730\u65b9\u3002\u4f7f\u7528\u5386\u53f2\u80cc\u666f\u3002"} +{"id": "1004470", "video_name": "52cf3b40-e540-5ea4-b6bf-2295f67f966b", "text": "\u5012\u5165\u84dd\u8272\u82cf\u6253\u996e\u6599\u5230\u900f\u660e\u676f\u5b50\u91cc\u7684\u90a3\u4e00\u523b\uff0c\u5f88\u591a\u4e8b\u60c5\u90fd\u5728\u4ee516:9\u7684\u6bd4\u4f8b\u8fd0\u52a8\u7740\u3002"} +{"id": "0003421", "video_name": "3d4f88da-cdf5-5fa5-9e4f-292b20fe16a0", "text": "\u57c3\u53ca\u91d1\u5b57\u5854\u5728\u65e5\u843d\u65f6\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "3004334", "video_name": "4ef5ed9a-2316-5b7f-8d6f-e9c6e15bb219", "text": "\u6e90\u53e5\uff1a\u4e00\u4e2a\u70ed\u654f\u6253\u5370\u673a\u8d34\u7eb8\u4e0a\u6709\u4e00\u4e2a\u661f\u7403\u5927\u6218\u4e50\u9ad8\u573a\u666f\u7684\u7167\u7247\u771f\u5b9e\u611f\u56fe\u50cf4k\n\nTranslated sentence: \u70ed"} +{"id": "2005803", "video_name": "f9b2d8c1-eda4-535e-9493-03ac3aa11f9c", "text": "\u955c\u5934\u5728\u6751\u5e84\u4e2d\u8f6c\u52a8\uff0c\u5c55\u793a\u5404\u79cd\u72ec\u7279\u7684\u89d2\u8272\u548c\u5947\u5e7b\u751f\u7269\u7684\u65e5\u5e38\u3002"} +{"id": "2004799", "video_name": "6b2cd43f-e931-5604-8c4b-a80dda27859c", "text": "\u521b\u9020\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u793a\u51fa\u732b\u5728\u8ba4\u771f\u503e\u542c\u72ee\u5b50\u5206\u4eab\u6545\u4e8b\u7684\u573a\u666f\u3002"} +{"id": "4003466", "video_name": "30c852e8-635e-5f16-9d26-c73285e3d44e", "text": "\u58a8\u897f\u54e5\u5973\u6027\u7248\u8fbe\u65af\u7ef4\u8fbe\uff0c\u7a7f\u7740\u7c89\u8272\u88c5\u675f\uff0c\u624b\u6301\u7ea2\u8272\u5149\u5251\u3002"} +{"id": "3005925", "video_name": "2191f33c-a1da-5454-b98b-6e50b0dd9ce5", "text": "\u4e00\u4e2a\u5361\u901a\u53ef\u7231\u7684\u5e03\u5a03\u5a03\u732b\u5728\u706b\u661f\u4e0a\u5f00\u8f66\uff0c\u955c\u5934\u4ece\u8fdc\u666f\u5207\u6362\u5230\u8fd1\u666f\u3002"} +{"id": "0004349", "video_name": "078c3abe-34dd-5fb8-a7c7-bf0e7c02b4e6", "text": "\u8fbe\u4e3d\u5a05\u662f\u52a8\u753b\u7247\u300a\u8fbe\u4e3d\u5a05\u300b\u4e2d\u7684\u89d2\u8272\uff0c\u5979\u7528\u62d6\u628a\u6e05\u7406\u4e86\u756a\u8304\u9171\u6d12\u843d\u7684\u5730\u9762\u3002"} +{"id": "1004909", "video_name": "5ade5131-5d02-5191-ae79-ad0c14d4ee40", "text": "\u4e00\u53ea\u72fc\u8df3\u4e0a\u4f38\u51fa\u7684\u624b\u81c2\u5e76\u53d8\u6210\u4e00\u9762\u76fe\u724c\u3002"} +{"id": "8003163", "video_name": "3ff3b4c6-f92a-526f-9075-4dabe78789b0", "text": "\u9ad8\u5206\u8fa8\u7387\u7684CGI\u52a8\u753b\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u6cbf\u7740\u53ef\u7231\u7684\u4e61\u95f4\u5c0f\u8def\u8d70\u3002"} +{"id": "2006877", "video_name": "c7966c41-fe2b-5507-a6c3-f39e4c40cd9d", "text": "\u751f\u547d\u4e2d\u7684\u9ed1\u6697\u7a7a\u95f4\uff0c\u4f60\u7684\u7231\u662f\u5979\u6700\u4f1f\u5927\u7684\u4e8b\u60c5\u3002"} +{"id": "2006958", "video_name": "80a8aba2-bfc8-5d66-9e69-2cebf1baf855", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\u5c55\u793a\u4e86\u732b\u5728\u6c34\u4e0b\u4e0e\u6c34\u6bcd\u4e00\u8d77\u6e38\u6cf3\uff0c\u98ce\u683c\u9634\u68ee\u6050\u6016\u3002"} +{"id": "0004436", "video_name": "09079148-7928-5bb7-8510-6f617eeff09e", "text": "\u591c\u666f\u5168\u666f\u6765\u56de\u79fb\u52a8\u3002"} +{"id": "1004673", "video_name": "56dd45ba-ddca-5bc8-bc0e-a5bd9b9801d0", "text": "\u5728\u68ee\u6797\u7684\u4e2d\u5fc3\uff0cMilo\u3001Rosie\u548cSammy\u5728\u9633\u5149\u666e\u7167\u7684\u6797\u95f4\u7a7a\u5730\u4e0a\u5b09\u620f\uff0c\u8ffd\u9010\u5728\u9ad8\u5927\u7684\u6811\u6728\u95f4"} +{"id": "4004832", "video_name": "e8255030-6835-53e2-a698-0ff9d66eae38", "text": "\u9ad8\u54c1\u8d28\uff0c\u903c\u771f\u7684\u9ed1\u8272\u7535\u5f71\u98ce\u683c\u3002\u591c\u665a\u7684\u5927\u90fd\u5e02\u3002\u6700\u8fd1\u4e0b\u8fc7\u96e8\u3002\u6444\u50cf\u673a\u7a7f\u8fc7\u57ce\u5e02\u7684\u8857\u9053\u3002\u884c\u4eba"} +{"id": "2004938", "video_name": "237f9146-fe06-5463-a36d-10e2b5415477", "text": "\u529e\u516c\u5ba4\u91cc\u4e00\u4f4d\u5973\u58eb\u5728\u4fbf\u5229\u8d34\u4e0a\u5199\u5b57\u3002"} +{"id": "1004927", "video_name": "5b111ae2-82fd-5c9e-9a79-b2fd22ec1ac0", "text": "\u4e00\u4e2a\u5b64\u72ec\u5fe7\u90c1\u7684\u6e14\u592b\u5728\u7801\u5934\u4e0a\u6c89\u91cd\u5730\u8d70\u7740\uff0c\u5929\u6c14\u9634\u6c89\uff0c\u5fae\u96e8\u7ef5\u7ef5\uff0c\u592a\u5e73\u6d0b\u897f"} +{"id": "3004463", "video_name": "bc6f6fd0-17ae-5910-bd36-e0ab972dfe29", "text": "\u4e00\u4e2a\u4fc4\u7f57\u65af\u7537\u5b50\u8eb2\u907f\u8b66\u65b9\u3002"} +{"id": "7004256", "video_name": "9871e644-3d3f-52de-940f-b22cab15d829", "text": "\u9713\u8679LED\u62db\u724c\u4e0a\u5199\u6709\u201cTripzZ90\u201d\u8fd9\u4e2a\u540d\u5b57\u3002"} +{"id": "0004569", "video_name": "0b55188b-8ffd-5ef0-9ce3-dd396ae11c88", "text": "\u5947\u602a\u7684\u9ed1\u767d\u6444\u50cf\u5934\u955c\u5934\u3002"} +{"id": "2005231", "video_name": "5891e74a-f757-5e47-9661-6ebef94ea235", "text": "\u4e00\u6761\u4e2d\u56fd\u9f99\u5728\u5929\u7a7a\u4e2d\u8fce\u63a5\u4e2d\u56fd\u65b0\u5e74\u3002"} +{"id": "2003703", "video_name": "64ea3c59-7bd4-5d95-a335-12ba683e2499", "text": "\u5854\u79d1\u592b\u8857\u9053\u4e0a\u7684\u573a\u666f\uff0c\u4e00\u7ec41\u540dUSEC PMC\u30011\u540dSCAV\u548c1\u540dBEAR PMC\u4e00\u8d77\u8d70\uff0c\u800c\u5176\u4ed6\u4eba\u5219\u4e3a\u98df\u7269\u800c\u6218\u3002"} +{"id": "4003702", "video_name": "90b76bac-6218-5dcb-a796-c05ede9073ae", "text": "\u547c\u548c\u6d69\u7279\u5e02\u7684\u4e00\u5f20\u7167\u7247\uff0c\u4e0a\u9762\u6709\u4e00\u9897\u94f6\u6811\u3002"} +{"id": "7002620", "video_name": "cf52da0e-6c98-57d5-9e79-66aaad750cbd", "text": "\u4e94\u8f86\u5b9d\u9a6c\u548c\u4e24\u8f86\u5954\u9a70\u5728\u57ce\u5e02\u91cc\u6f2b\u6e38\u3002"} +{"id": "1004202", "video_name": "4dad3515-8b1f-5442-aae7-dc7f4ec47046", "text": "\u60f3\u8c61\u4e00\u4e0b\u4ee5\u4eba\u7684\u65b9\u5f0f\u770b\u5f85\u9f99\u73e0\u4e2d\u7684\u76ae\u514b\u6d1b\uff0c\u653e\u5728\u4e00\u4e2a\u771f\u5b9e\u7684\u4e16\u754c\u91cc\u3002"} +{"id": "8001926", "video_name": "f83b9efe-8742-5a0d-80e8-90e7dbf398eb", "text": "\u73b0\u5b9e\u7684\u5efa\u7b51\u7206\u70b8\uff0c8K\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u5e26\u7ea2\u8272\u706b\u7130\uff0c\u7167\u7247\u822c\u903c\u771f\u3002\u4fe1\u606f\uff1aJorge\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0004045", "video_name": "021c5cef-9297-53ed-9f0f-f0b0a16c7e50", "text": "1990\u5e74\u5f69\u8272\u7eaa\u5f55\u7247\u5c55\u793a\u4e86\u83f2\u62c9\u5fb7\u5c14\u83f2\u4e9a\u53f7\u5b9e\u9a8c\u4e2d\uff0c\u5c38\u4f53\u4e0e\u94a2\u878d\u5408\u7684\u60c5\u666f\u3002"} +{"id": "2007088", "video_name": "a0b96e27-9822-5bd5-971f-6625fedf1f52", "text": "\u4ed6\u7406\u89e3\u8fd9\u5ea7\u57ce\u5e02\u4e0d\u662f\u610f\u5916\u5931\u53bb\u7684\uff0c\u800c\u662f\u4e3a\u4e86\u4fdd\u62a4\u67d0\u4e2a\u73cd\u8d35\u7684\u4e1c\u897f\u4e0d\u843d\u5165\u90aa\u6076\u4e4b\u624b\u3002"} +{"id": "5001467", "video_name": "2de61bde-1d15-5805-bad2-6573498a59a0", "text": "\u4e00\u4e2a\u7ae5\u8bdd\u6545\u4e8b\u4e2d\u7684\u7c89\u8272\u516c\u4e3b\u3002"} +{"id": "1005589", "video_name": "66d5bcdb-18ef-5ebe-8b62-9bb596e7da87", "text": "\u68ee\u6797\u91cc\u6709\u5f88\u591a\u5154\u5b50\u3002\u68ee\u6797\u91cc\u7684\u5de8\u5927\u6811\u6728\u7ed3\u51fa\u5de8\u5927\u7684\u679c\u5b9e\u3002"} +{"id": "2007838", "video_name": "781a2385-cb1b-59aa-bc81-01c067e42f64", "text": "\u6c99\u6f20\u4e2d\u7684\u5706\u5f62\u95e8\u6237\u901a\u5411\u73b0\u4ee3\u5bfa\u5e99\uff0c\u91c7\u7528\u5723\u7ecf\u620f\u5267\u98ce\u683c\uff0c\u6709\u5de8\u5927\u7684\u4eba\u7269\u548c\u5e9e\u5927\u7684\u4f53\u79ef\u3002"} +{"id": "2005993", "video_name": "df5b66ee-dfa9-549b-9175-a37e6d51a7b6", "text": "\u6c49\u5821\u4e2d\u592e\u8f66\u7ad9\u6444\u50cf\u5934\u653e\u5927\u955c\u5934\u3002"} +{"id": "4004259", "video_name": "8a6ea2ee-ad00-5ac5-ae53-730ce211cc51", "text": "\u5973\u4eba\u5f00\u8f66\u7a7f\u8fc7\u57ce\u5e02\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006487", "video_name": "76bb552f-23f5-5a03-9c02-541c0b9a0477", "text": "\u626b\u5e1a\u63e1\u5728\u624b\u4e2d\u7684\u6454\u8de4\u573a\u91cc\u7684\u4e27\u846c\u5e08\u5728\u4f53\u80b2\u573a\u5185\u3002"} +{"id": "6002374", "video_name": "6aa0cb63-2fe3-5ef1-bbe9-7d9b0df33f63", "text": "\u521b\u9020\u4e86\u4e00\u4e2a\u5206\u6210\u4e0d\u540c\u90e8\u5206\u7684\u5b66\u6821\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u975e\u5e38\u4e61\u6751\u7684\u73af\u5883\u4e2d\uff0c\u9760\u8fd1\u4e00\u6761\u94c1\u8def\u3002"} +{"id": "0005775", "video_name": "210bc3ff-10d0-5093-919e-8c33b35f5bca", "text": "1967\u5e74\u7684\u54c8\u4f5b\u5b9e\u9a8c\u5ba4\uff1a\u65af\u5766\u5229\u00b7\u7c73\u5c14\u683c\u62c9\u59c6\u5728\u54c8\u4f5b\u5b9e\u9a8c\u5ba4\u7684\u73af\u5883\u4e2d\uff0c\u5468\u56f4\u6709\u52a9\u624b\u548c\u7814"} +{"id": "3004747", "video_name": "72f3e55d-c64c-5d78-ac65-176994e7d001", "text": "\u8ddf\u968f\u4e00\u8f86\u6c7d\u8f66\u7a7f\u8fc7\u4e00\u4e2a\u4ed3\u5e93\u3002"} +{"id": "2005066", "video_name": "cf9e0781-d037-5bd2-a6ca-8b8765e16d3e", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u6a21\u7279\u5973\u5b69\u5728\u5496\u5561\u5e97\u91cc\u559d\u5496\u5561\uff0c\u7cbe\u7ec6\u7684\u827a\u672f\uff0c2D\u63d2\u56fe\uff0c8K\u4e0d\u771f\u5b9e\uff0c"} +{"id": "0004784", "video_name": "0f17a1bf-1e0b-5614-b4ef-fdb14be33522", "text": "\u5728\u7e41\u5fd9\u7684\u9500\u552e\u73b0\u573a\uff0c\u7535\u8bdd\u4e0d\u505c\u54cd\u8d77\uff0c\u6162\u52a8\u4f5c\u5c55\u73b0\u4e86\u5de5\u4f5c\u4e2d\u7684\u80dc\u5229\u6210\u529f\uff0c\u901a\u8fc7\u5bbd\u753b\u5e45\u548c\u52a8\u6001\u7167\u660e"} +{"id": "7004357", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "\u7537\u5b50\u8eab\u7a7f56\u53f7\u7eff\u8272\u7403\u8863\uff0c\u5728\u6574\u4e2a\u4f53\u80b2\u573a\u5185\u70b9\u71c3\u4e86\u718a\u718a\u70c8\u706b\uff0c\u591c\u8272\u4e2d\u663e\u5f97\u683c\u5916\u9192\u76ee"} +{"id": "1006436", "video_name": "75dd8b21-d474-5801-b2e6-1fd89448416b", "text": "\u82b1\u6817\u9f20\u7528\u5b83\u5fae\u5c0f\u7684\u8eab\u4f53\u6491\u4f4f\u4e00\u53ea\u732b\uff0c\u8ba9\u5b83\u6293\u4f4f\u5a74\u513f\u8f66\u3002"} +{"id": "2003929", "video_name": "d425f086-70f8-5dac-8aa3-8fc9560a5705", "text": "\u5c55\u793a\u5168\u7403\u5728\u7ebf\u7528\u6237\u53c2\u52a0\u5728\u7ebf\u85cf\u533f\u6e38\u620f\u7ade\u8d5b\u7684\u89c6\u9891\u3002"} +{"id": "3005554", "video_name": "55ade78a-16a1-5b58-bbad-be3b45e420a1", "text": "\u65e9\u4e0a\u597d (\u5b57\u4f53\uff1a\u73b0\u4ee3)\uff0c\u753b\u9762\u4e3a\u70ed\u5e26\u68ee\u6797\uff0c\u732b\u7a7f\u8fc7\u753b\u9762\u79fb\u51fa\u3002"} +{"id": "7003919", "video_name": "285bd751-bb64-5338-b3fa-47a2adaf4c3e", "text": "\u5546\u671d\u662f\u9752\u94dc\u65f6\u4ee3\u7684\u5148\u9a71\u3002\n\nSource sentence: The Great Wall was built to protect China from invasions from the north. \n\n\u957f\u57ce\u662f\u4e3a\u4e86\u4fdd\u62a4\u4e2d\u56fd\u514d\u53d7\u6765\u81ea\u5317"} +{"id": "1003411", "video_name": "3ef592d6-0741-5260-8870-9d728c84877a", "text": "\u5c0f\u7cbe\u7075\u6c60\u5858\u548c\u5f69\u8272\u751f\u7269\u5728\u8272\u5f69\u7684\u9b54\u6cd5\u7206\u70b8\u4e2d\u5e86\u795d\uff0c\u4f46\u7f3a\u5c11\u4e00\u79cd\u989c\u8272\u3002"} +{"id": "8003202", "video_name": "1af68ef5-3f24-5b90-bf7b-96c08bd6d7db", "text": "\u7ecf\u5178\u7684\u89c6\u9891\u6e38\u620f\u89d2\u8272\u8054\u624b\u5bf9\u6297\u4e00\u4f4d\u5a01\u80c1\u4e16\u754c\u7684\u65b0\u654c\u4eba\u3002"} +{"id": "7002897", "video_name": "00e9e249-18fc-5b55-a0b4-1139a21d64f1", "text": "\u65e0\u754f\uff0c\u4f46\u5bb3\u6015\u53d1\u7740\u706b\u7684\u5de8\u86c7\u653b\u51fb\u57ce\u5e02\u5efa\u7b51\u3002\u6d88\u606f\uff1a3\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "6002711", "video_name": "93fbb326-cf78-5b62-8932-b606f612d646", "text": "\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u3001\u5934\u53d1\u77ed\u77ed\u7684\u5e74\u8f7b\u9ad8\u4e2a\u5b50\u7537\u5b50\u624b\u91cc\u62ff\u7740\u4e00\u9897\u95ea\u95ea\u53d1\u5149\u7684\u903c\u771f\u661f\u661f\u3002"} +{"id": "6004160", "video_name": "0406137b-2623-5896-ba8e-5ffad2972e19", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff1a\u4e24\u4e2a\u7537\u4eba\u5728\u6751\u5b50\u6cb3\u8fb9\u9493\u9c7c\uff0c\u7b2c\u4e09\u4e2a\u7537\u4eba\u5728\u65c1\u8fb9\u89c2\u770b\u4ed6\u4eec\u6355\u9c7c\u3002\u4e09\u4e2a\u4eba\u90fd"} +{"id": "3005857", "video_name": "58636cca-dde2-514e-b5a1-9adbd664dff9", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u7a7f\u7740\u84dd\u886c\u886b\uff0c\u79bb\u5f00\u4e86\u4e00\u4f4d\u68d5\u53d1\u7537\u5b50\uff0c\u4ed6\u7a7f\u7740\u7ea2\u886c\u886b\u3002"} +{"id": "3003658", "video_name": "0311d1a7-2517-5a02-b446-e83f9d6d0337", "text": "\u5973\u4eba\u63a8\u5f00\uff0c\u5f00\u59cb\u5979\u7684\u8857\u5934\u51b2\u6d6a\u3002"} +{"id": "3005564", "video_name": "5fff8491-a7a4-5f61-aaba-605204edabf4", "text": "\u4e00\u500b\u5145\u6eff\u8907\u96dc\u60c5\u611f\u7684\u91cd\u9022\u64c1\u62b1\uff0c\u96fb\u5f71\u93e1\u982d\uff0c4K\u3002"} +{"id": "7002243", "video_name": "842f9d93-382e-5ebf-91ee-91a80063c05b", "text": "TRON\u98ce\u683c\u7684\u5706\u67f1\u5f62\u5b87\u5b99\u98de\u8239\u4ee5\u9003\u9038\u901f\u5ea6\u98de\u79bb\u5730\u7403\u8fdb\u5165\u5b87\u5b99\u3002"} +{"id": "3003004", "video_name": "ca9f3407-854e-5754-ad18-80c12ee704dc", "text": "\u521b\u4f5c\u4e00\u4e2a\u62fc\u56fe\u7684\u63d2\u753b\uff0c\u8c61\u5f81\u670b\u53cb\u76f8\u4e92\u8865\u5145\uff0c\u5f62\u6210\u4e00\u4e2a\u7d27\u5bc6\u7684\u56e2\u961f\u3002"} +{"id": "8002567", "video_name": "94919689-f1cc-5073-82ef-87239163a2e6", "text": "\u76f8\u673a\u770b\u5230\u5723\u57ce\uff0c\u65b0\u8036\u8def\u6492\u51b7\uff0c\u4ece\u4e0a\u5e1d\u800c\u6765\u3002\u5b83\u95ea\u8000\u7740\u4e0a\u5e1d\u7684\u8363\u8000\uff0c\u5176\u8f89\u714c\u5c31\u50cf\u975e\u5e38"} +{"id": "2003906", "video_name": "be0bde4e-2a9e-5344-953f-8023350e6458", "text": "\u6708\u7403\u4e0a\u88ab\u82d4\u85d3\u8986\u76d6\u7684\u767b\u6708\u5668\u3002"} +{"id": "1006469", "video_name": "766ccdd5-68eb-5107-ba02-8acfaf4bd879", "text": "\u7535\u5f71\u822c\u7684\uff0c\u9b54\u6cd5\u7403\u4ece\u4e66\u9875\u4e2d\u5347\u8d77\uff0c\u5236\u9020\u4e86\u4e00\u4e2a\u5de8\u5927\u7684\u7206\u70b8\u5e76\u521b\u9020\u4e86\u4e00\u4e2a\u95e8\u6237\uff0c4k\uff0c\u653e\u5728\u684c\u5b50\u4e0a"} +{"id": "1006215", "video_name": "71f50d83-975a-518d-94ff-e1b19498141c", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5386\u9669\u8bb0\u7b2c\u4e8c\u5b63\u7b2c\u4e8c\u90e8\u5206\u6cc4\u9732\u3002"} +{"id": "1003551", "video_name": "4186fd83-cf41-5c51-9ea7-91e6bc2e21a7", "text": "\u62d6\u62c9\u673a\u5e7f\u573a\u821e\uff1a\u9a7e\u9a76\u5458\u7cbe\u51c6\u5730\u64cd\u7eb5\u62d6\u62c9\u673a\uff0c\u5f62\u6210\u6a21\u4eff\u4f20\u7edf\u5e7f\u573a\u821e\u52a8\u4f5c\u7684\u56fe\u6848\u548c\u5e8f\u5217\u3002"} +{"id": "6004309", "video_name": "6d819c0e-8678-54a2-8aa3-a53944dbffed", "text": "\u6770\u7c73\u548c\u6c64\u666e\u68ee\u5148\u751f\u6ee1\u6000\u51b3\u5fc3\u5730\u6536\u96c6\u56ed\u827a\u5de5\u5177\u2014\u2014\u4e00\u628a\u94f2\u5b50\u3001\u4e00\u4e2a\u6d47\u6c34\u7f50\u548c\u4e00\u68f5\u5c0f\u6811"} +{"id": "7002273", "video_name": "11eae792-af57-5ff5-aae4-b783f3c2bad7", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u6050\u9f99\u5728\u4e2d\u56fd\u57ce\u5e02\u7684\u8857\u9053\u4e0a\u7ff1\u7fd4\u3002"} +{"id": "8002224", "video_name": "09243855-8d8c-5512-9879-3b1eae19adde", "text": "\u82b1\u6c60\uff0c\u8fd1\u666f\uff0c\u8377\u82b1\u6447\u66f3\u3002"} +{"id": "7002706", "video_name": "f81020ac-c45b-5caa-9f4f-c5cb2a2d65b8", "text": "\u98de\u673a\u5728\u660e\u4eae\u7684\u84dd\u8272\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u4eba\u4eec\u4ece\u98de\u673a\u4e0a\u6389\u843d\u3002"} +{"id": "7004149", "video_name": "21f2f54a-8f60-52df-8277-13af0f978cba", "text": "\u4e00\u4e2a\u5e26\u6709\u7ea2\u8272\u58f0\u6ce2\u7684\u90aa\u6076\u97f3\u9891\u53ef\u89c6\u5316\u5668\u3002"} +{"id": "2006806", "video_name": "0f45f07b-7a5d-52b6-b3d4-a9218cec758b", "text": "\u5e7f\u89d2\u955c\u5934\uff1a\u5efa\u7acb\u795e\u79d8\u68ee\u6797\u7684\u955c\u5934\u3002"} +{"id": "2007612", "video_name": "0694401f-d629-5017-961d-0d3ac508d80d", "text": "\u5728\u5c71\u8c37\u4e2d\u7684\u79d8\u5bc6\u82b1\u56ed\uff0c\u6709\u52a8\u7269\u5feb\u4e50\u5730\u73a9\u800d\u3002"} +{"id": "4003068", "video_name": "682e2274-8156-51d6-a7ed-47e6dea606ec", "text": "\u5965\u9a6c\u5c14\u548c\u7a46\u7f55\u9ed8\u5fb7\u6ed1\u7a3d\u5730\u5bfb\u627e\u8d39\u8428\u5c14\u3002\u4ed6\u4eec\u4e4b\u95f4\u7684\u73a9\u7b11\u8bdd\u8bed\u548c\u4e92\u76f8\u800d\u806a\u660e\u5236\u9020\u51fa"} +{"id": "3006829", "video_name": "004fe376-af7f-5c1f-a83e-c02f37796a85", "text": "\u963f\u52b3\u970d\uff0c\u5df4\u585e\u7f57\u90a3\u7403\u5458\uff0c\u5728\u4e0a\u4e00\u573a\u6bd4\u8d5b\u88ab\u7f5a\u4e0b\u540e\uff0c\u6cd5\u5b98\u5bf9\u4ed6\u5904\u4ee5600\u6b27\u5143\u7684\u7f5a\u6b3e\u3002"} +{"id": "3003736", "video_name": "5a25f17c-49c2-522a-9f2b-d46c3fd8093d", "text": "\u9a6c\u5361\u8482\u4e9a\u5c3c\uff0c\u4ee5\u5a74\u513f\u5f62\u6001\u51fa\u73b0\uff0c\u7a7f\u7740\u4f20\u7edf\u7684\u5370\u5ea6\u670d\u9970\u838e\u4e3d\uff0c\u5e26\u7740\u5c0f"} +{"id": "0005808", "video_name": "2185890f-3c4c-5b98-8d17-e4003792daab", "text": "\u4e00\u53ea\u732b\u5728\u68ee\u6797\u91cc\u6643\u52a8\u7740\u4e00\u4e2a\u7ea2\u8272\u7684\u86cb\u3002"} +{"id": "1006514", "video_name": "7738c7fd-c03b-514b-b78d-825d4ccd678b", "text": "\u611f\u89c9\u7535\u5f71\u822c\uff0c\u6700\u540e\u4e00\u4e2a\u5367\u5ba4\u7684\u706f\u5149\u5173\u95ed\uff0c\u8ba9\u6211\u4eec\u5b8c\u5168\u9677\u5165\u9ed1\u6697\u4e4b\u4e2d\u3002"} +{"id": "8002300", "video_name": "0824260a-dab3-542d-acd8-9e4ca1f00bcb", "text": "\u5723\u8bde\u8001\u4eba\u9a7e\u7740\u4ed6\u7684\u96ea\u6a47\u5728\u7ebd\u7ea6\u57ce\u4e0a\u7a7a\u98de\u884c\u3002"} +{"id": "4002742", "video_name": "b9350645-59c3-5498-8a63-a8f9e3c02994", "text": "\u521b\u9020\u4e00\u68f5\u6709\u5982\u6210\u957f\u4e2d\u7684\u679d\u53f6\u7684\u4e16\u754c\u4e4b\u6811\uff0c\u4f46\u4ece\u8fdc\u5904\u770b\u5b83\u50cf\u662f\u4e00\u4e2a\u4e0d\u65ad\u5b66\u4e60\u7684\u5927\u8111\uff0c\u62e5\u6709"} +{"id": "8002976", "video_name": "5badae2d-8ec9-52ea-b2f7-fd88a1e37651", "text": "\u827e\u4e3d\u65af\u653e\u5b66\u540e\u5728\u56de\u5bb6\u7684\u8def\u4e0a\u770b\u5230\u4eba\u884c\u9053\u4e0a\u95ea\u95ea\u53d1\u5149\u7684\u4e1c\u897f\u3002\u5979\u6361\u8d77\u6765\u53d1\u73b0\u662f\u4e00\u4e2a\u94b1\u5305\u3002\u5979\u6253\u5f00"} +{"id": "1006785", "video_name": "7c5888f8-7309-51aa-8436-c29d235a47d1", "text": "\u5e02\u4e2d\u5fc3\u7e41\u534e\u7684\u5e02\u573a\u3002\u666e\u901a\u7537\u5b69Bilal\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u4e2a\u4ee5\u79d8\u5bc6\u8457\u79f0\u7684\u795e\u79d8\u5b66\u6821\u3002\u4ed6\u611f\u5230\u597d\u5947"} +{"id": "3006612", "video_name": "38810524-e027-5809-84a8-2bdc1871eee7", "text": "\u8fd9\u5ea7\u5efa\u7b51\u662f\u653f\u5e9c\u7684\uff0c\u4eba\u4eec\u5728\u5b83\u9644\u8fd1\u6563\u6b65\u7684\u8d28\u91cf\u5f88\u597d\u3002"} +{"id": "8001765", "video_name": "4726c98c-ffa3-5467-b8c7-ca4c5cc70ce2", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u6761\u9ed1\u6697\u96fe\u8499\u8499\u7684\u8857\u9053\u4e0a\u8d70\u7740\uff0c\u82f1\u5f0f\u623f\u5c4b\u98ce\u683c\u3002"} +{"id": "8002159", "video_name": "fc0bb1c9-ce16-5e1b-b539-90ea19916e47", "text": "\u5728\u6f06\u9ed1\u7684\u592a\u7a7a\u4e2d\uff0c\u6709\u4e00\u6735\u5de8\u5927\u7684\u7c73\u8272\u6d53\u5bc6\u4e91\u6735\uff0c\u5706\u5f62\u3001\u6709\u673a\u3001\u602a\u5f02\u3001\u6c14\u6c1b\u9ed1\u6697\u3002"} +{"id": "2004940", "video_name": "bfe49ca7-9910-5cdf-aa81-b256d895bacf", "text": "\u5c4f\u5e55\u6e10\u6e10\u53d8\u4eae\uff0c\u5c55\u73b0\u51fa\u89d2\u8272\u7684\u7247\u6bb5\u3002\n\nSource sentence: The company is committed to reducing its carbon footprint.\n\u516c\u53f8\u81f4\u529b\u4e8e\u51cf\u5c11\u5176\u78b3\u6392\u653e\u91cf\u3002"} +{"id": "4004304", "video_name": "baaa7b97-ee4e-5cd8-8a12-6da96196681c", "text": "showed him in a vision.\n\n\u7ea6\u7ff0\u5728\u5f02\u8c61\u4e2d\u770b\u89c1\u8036\u7a23\u5411\u4ed6\u5c55\u793a\u4e86\u4e03\u4e2a\u91d1\u706f\u53f0\u3002\n\nSource sentence: The cat is sleeping on the couch.\n\n\u732b\u6b63\u5728"} +{"id": "3004262", "video_name": "eec2ae36-6f00-577c-8fff-c9a97a2b895c", "text": "\u8fc8\u963f\u5bc6\u4f5b\u7f57\u91cc\u8fbe\u7684\u57ce\u5e02\u4eba\u7fa4\u591c\u5e97"} +{"id": "1004332", "video_name": "500191d6-7f2c-5577-bd40-dccb6500cfe1", "text": "\u6d77\u8389\u5728\u9b54\u6cd5\u68ee\u6797\u91cc\u53d1\u51fa\u4e86\u4e00\u4efd\u771f\u631a\u7684\u795d\u798f\uff0c\u7948\u6c42\u5e78\u798f\u548c\u548c\u8c10\u3002"} +{"id": "6004841", "video_name": "38ae8f27-a16b-53e9-968b-7d6e2edc625b", "text": "\u7531\u4e8e\u6c14\u5019\u53d8\u5316\uff0c\u94a6\u5948\u57ce\u5e02\u6df9\u6ca1\u5728\u6c34\u4e2d\u7684\u89c6\u9891\u3002"} +{"id": "1006042", "video_name": "6ef90844-1aa4-515d-9d1b-345a0576ebd9", "text": "\u4e00\u76d8\u5206\u91cf\u9002\u5f53\u7684\u98df\u7269\u7ec4\u5408\u7684\u4fef\u89c6\u56fe\u3002"} +{"id": "5001998", "video_name": "0ace5fa2-3df2-5fde-a819-6dbc03028f1b", "text": "\u665a\u4e0a\u7684\u7f8a\u5708\u91cc\u6709\u51e0\u53ea\u7f8a\u3002"} +{"id": "0003973", "video_name": "00ec1135-1345-5c84-8f00-a6cce020e329", "text": "\u63a5\u7eb3\u8857\u5934\u7537\u5b69\u548c\u5973\u5b69"} +{"id": "4002315", "video_name": "b71f5c59-f93c-5a70-a55f-f816a3aa1564", "text": "\u900f\u8fc7\u7a97\u6237\u770b\u7740\u88ab\u51ac\u5b63\u8986\u76d6\u3001\u5728\u9633\u5149\u4e0b\u95ea\u95ea\u53d1\u5149\u7684\u68ee\u6797\u3002"} +{"id": "6002068", "video_name": "885a9c1e-026a-50df-a5f0-e3ac6724ad8c", "text": "\u955c\u5934\u5411\u5916\u62c9\u8fdc\uff0c\u5c55\u793a\u4e86\u4e00\u5ea7\u73b0\u4ee3\u98ce\u683c\u8c6a\u534e\u7684\u767d\u8272\u522b\u5885\uff0c\u65c1\u8fb9\u6709\u4e00\u5ea7\u7565\u663e\u7834\u65e7\u7684\u6728"} +{"id": "3004013", "video_name": "45555f5b-2fbd-593f-9c55-b6751a316a16", "text": "\u68ee\u6797\u56de\u5230\u4e86\u5b81\u9759\u7684\u72b6\u6001\uff0c\u72ec\u89d2\u517d\u81ea\u7531\u65e0\u62d8\u675f\u5730\u5954\u8dd1\u7740\u79bb\u5f00\u4e86\u3002"} +{"id": "1005335", "video_name": "61fbbe7b-ea04-5bb5-8e2b-015b02c56188", "text": "\u624b\u4e0a\u957f\u7740\u773c\u7403\u7684\u4eba\u7c7b\u624b"} +{"id": "6004269", "video_name": "aa3b7ad0-df1a-523f-a884-7d3d282a622c", "text": "\u5728\u68ee\u6797\u5c0f\u5f84\u4e0a\u5e26\u7740\u5c0f\u5409\u4ed6\u7684\u7f8a\u80cc\u7740\u80cc\u5305\u3002"} +{"id": "2007270", "video_name": "857641da-30ef-50b9-b9cd-99881a7b6a3f", "text": "\u5c0f\u8682\u8681\u56db\u5468\u5f20\u671b\u3002"} +{"id": "0003861", "video_name": "44c6e45d-68e9-5114-bf82-93a02dbbff74", "text": "\u4fe1\u606f\uff1aThiRyaY NeE (\u5b57\u4f53\uff1aBAUHAUS) \u5728\u7535\u5f71\u822c\u76843D\u98ce\u683c\u4e0b\uff0c\u6d6e\u5728\u6d77\u6d6a\u4e0a\uff0c\u80cc\u666f\u662f\u9633\u5149\u548c\u4e91"} +{"id": "6003010", "video_name": "4407e7d1-51d1-5dc4-a804-316b5013a314", "text": "\u80dc\u5229\u6216\u6210\u529f\u7684\u5b9e\u73b0\u901a\u5e38\u4e0e\u79ef\u6781\u7684\u7ed3\u679c\u76f8\u5173\u8054\uff0c\u5982\u51fb\u8d25\u62c9\u6587\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u9ad8\u6e05\uff0c\u8d85\u8be6\u7ec6\u8d28\u91cf\u3002"} +{"id": "6002136", "video_name": "ba64965e-9d75-5ab4-993b-2c24fca857cf", "text": "\u4e00\u4e2a\u641e\u7b11\u7684\u5361\u901a\u89d2\u8272\u2014\u2014\u4e95\u9876\u4e0a\u7684\u72ee\u5b50\u548c\u5154\u5b50\u3002\n\nSource sentence: I enjoy listening to music while I work. \n\n\u6211\u559c\u6b22\u5728\u5de5\u4f5c\u65f6\u542c"} +{"id": "7003887", "video_name": "fdaa08e8-dbd4-5522-b12e-00c2b7b3128e", "text": "\u57c3\u53ca\u4eba\u4ece\u5a74\u513f\u65f6\u671f\u5c31\u5f00\u59cb\u6d89\u8db3\u9b54\u6cd5\u79d1\u5b66\u548c\u62a4\u8eab\u7b26\u5236\u4f5c\uff0c\u5e76\u5728\u53e4\u57c3\u53ca\u4eba\u4e2d\u5b9e\u9645\u4f9d\u8d56\u5b83"} +{"id": "2003590", "video_name": "fbc262b0-3ae1-5cc1-8737-0be4088d0fc2", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u591c\u8dd1\u3002"} +{"id": "1004668", "video_name": "56c5323a-6374-5811-90bf-63c5691cf7ff", "text": "\u8bbe\u5907\u5012\u8ba1\u65f6\uff0c\u56f4\u7ed5\u7740\u75af\u72c2\u7684\u67aa\u6218\u8fdb\u884c\u3002\u7279\u5de5\u4eec\u6162\u52a8\u4f5c\u8df3\u6c34\u5f00\u706b\u3002\u6076\u68cd\u5728\u6218\u6597\u4e2d"} +{"id": "4003256", "video_name": "0fcbc054-e4c5-5634-a9ac-a6f2fc06826c", "text": "\u8ff7\u4eba\u795e\u79d8\u7684\u80cc\u666f\u3002\u5b83\u5c55\u73b0\u4e86\u4e00\u4e2a\u58ee\u89c2\u7684\u666f\u8c61\uff0c\u4e00\u4e2a\u88ab\u67d4\u548c\u7684\u865a\u5e7b\u96fe\u6c14\u8986\u76d6\u7684\u795e\u5947"} +{"id": "2003644", "video_name": "bbf5a1f8-bf49-58fc-ba99-399da295e80a", "text": "\u677e\u9f20\u5728\u68ee\u6797\u91cc\u7a7f\u68ad\uff0c\u8df3\u8dc3\u7740\u7a7f\u8fc7\u6811\u6797\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky orange and pink. \n"} +{"id": "6002752", "video_name": "6177cf48-a99f-5abd-96fc-922129c425be", "text": "\u4e00\u6bb5\u901a\u8fc7\u873f\u8712\u9053\u8def\u7684\u6469\u6258\u8f66\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u9a91\u884c\u89c6\u9891\u3002"} +{"id": "2006089", "video_name": "7de3b81d-387a-5a69-8940-f0ccd4e646e5", "text": "\u5929\u4f7f\u5750\u5728\u4e91\u6735\u4e2d\uff0c\u6ce2\u6d6a\u6c79\u6d8c\u7684\u98ce\u66b4\u4e2d\u3002"} +{"id": "3004481", "video_name": "f33d9a10-78b1-5b96-9477-0dd4d366af6b", "text": "\u4e54\u6cbb\u00b7\u9a6c\u4e01\u505a\u6307\u54cd\u3002"} +{"id": "2005498", "video_name": "f9a9d45f-fd7a-5a2c-9e24-e69857bf5a22", "text": "\u897f\u73ed\u7259\u5973\u5b50\u8df3\u8428\u5c14\u8428\u821e\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u6cb9\u753b"} +{"id": "5001777", "video_name": "b506e215-72da-571b-bca2-04b62732ef0f", "text": "\u8036\u7a23\u5728\u903e\u8d8a\u8282\u671f\u95f4\u63a5\u8fd1\u65e0\u82b1\u679c\u6811\u7684\u573a\u666f\u3002"} +{"id": "4004930", "video_name": "a2a08230-954f-543e-bbd5-bfc8f811d2a2", "text": "\u7a7f\u8fc7\u53e4\u8001\u7684\u5e15\u53f0\u519c\u795e\u5e99\uff0c\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u6563\u6b65\u3002"} +{"id": "1006985", "video_name": "7fc5df06-7c96-5217-bd10-5a05db4e05bf", "text": "\u4e1c\u4eac\u591c\u666f\uff0c\u9713\u8679\u706f\u95ea\u70c1\u660e\u4eae\u3002"} +{"id": "1006220", "video_name": "7215f83e-0a40-51ab-b7b3-c7d272593109", "text": "\u8ff7\u5e7b\u66fc\u9640\u7f57\u65cb\u8f6c\uff0c\u5730\u7403\u4e0e\u9633\u5149\u80cc\u540e\u3002"} +{"id": "6004086", "video_name": "e4aece4f-9ca8-53a1-bf81-dd0e194d3eba", "text": "\u8036\u7a23\u7ad9\u5728\u4e91\u4e2d\u7684\u753b\u9762\uff0c\u8036\u7a23\u57fa\u7763\uff0c\u6551\u4e16\u4e3b\uff0c\u8036\u7a23\uff0c\u4ed6\u70ed\u60c5\u5730\u5411\u4f60\u95ee\u5019\uff0c\u5e74\u8f7b\u7684\u5168\u80fd"} +{"id": "0003796", "video_name": "4394987d-0bfc-50ff-b85c-efeb4a94d7d5", "text": "\u767d\u864e\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u6f2b\u6b65\uff0c\u5b81\u9759\u7684\u5927\u81ea\u7136\u4e2d\u900f\u8fc7\u6811\u53f6\u7684\u9633\u5149\uff0c\u6e05\u6f88\u7684\u6eaa\u6d41\u548c\u8f7b"} +{"id": "2006499", "video_name": "f7b7ba83-2736-5465-bc3b-460da5d66cdf", "text": "\u8bf7\u4ee5\u6e05\u6670\u5408\u7406\u7684\u65b9\u5f0f\u5c06\u4ee5\u4e0b\u82f1\u8bed\u53e5\u5b50\u7ffb\u8bd1\u6210\u4e2d\u6587\u3002\u8bf7\u4ec5\u8f93\u51fa\u7ffb\u8bd1\uff0c\u4e0d\u5305\u62ec\u539f\u59cb\u53e5\u5b50\u548c\u4efb\u4f55\u524d\u7f00"} +{"id": "5001911", "video_name": "5473d2ed-ece2-5efe-aba3-1a60a50a5838", "text": "\u4e00\u4e2a\u4e50\u4e8e\u5e2e\u52a9\u7684\u7535\u9cd7\uff0c\u5206\u4eab\u4ed6\u7684\u80fd\u91cf"} +{"id": "2003991", "video_name": "0c8f8bf3-54b3-5786-a6dd-a813f45c8411", "text": "\u7528\u9ed1\u767d\u65b0\u95fb\u7eaa\u5f55\u7247\u7684\u98ce\u683c\uff0cNASA\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u6253\u4fdd\u9f84\u7403\uff0c\u4eff\u7167\u9ed1\u767d\u76841900\u5e74\u8868\u73b0\u4e3b\u4e49\u65e0\u58f0\u7535"} +{"id": "2003361", "video_name": "44d2183b-a561-59f6-93d9-79cccfb79d40", "text": "\u51e4\u51f0\u5d1b\u8d77\u7167\u7247\u903c\u771f\u6570\u5b57\u7ec6\u82828K"} +{"id": "2006298", "video_name": "edf8b051-5680-5d2e-89ae-a0c2d4523417", "text": "\u5361\u901a\u98ce\u683c\uff1a\u4e00\u53ea\u9ed1\u8272\u5c0f\u732b\u6447\u6447\u6643\u6643\u5730\u8d70\u7740\uff0c\u6bdb\u8338\u8338\u7684\u8eab\u5b50\u968f\u7740\u8282\u594f\u6447\u6446\u3002"} +{"id": "8001098", "video_name": "98e467a6-1056-544e-a297-7e28ca9c2d0f", "text": "\u6d1b\u57fa\uff08Loki\uff09\u7ad9\u5728\u4e00\u5ea7\u71c3\u70e7\u7684\u5efa\u7b51\u7269\u524d\uff0c8K \u8d85\u903c\u771f\u3002"} +{"id": "3005760", "video_name": "5fbfa14a-d95d-5924-b42e-68bc4e7e1209", "text": "\u4e00\u67b6\u98de\u673a\u671d\u7740\u4e00\u5ea7\u5854\u98de\u884c\u5e76\u5728\u649e\u51fb\u65f6\u7206\u70b8\u3002"} +{"id": "4002307", "video_name": "b400d5ee-d61a-51a9-8482-c30d1bdb6b4f", "text": "2015\u5e74\u4e00\u90e8\u6709\u5973\u5b50\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u7535\u5f71\u3002\n\nSource sentence: Can you help me find the nearest subway station? \n\u8bf7\u95ee\u4f60\u80fd\u5e2e\u6211\u627e\u5230\u6700\u8fd1\u7684\u5730"} +{"id": "4003371", "video_name": "d6cf0db1-c4dd-5677-a7c0-111caa1e2db5", "text": "\u4e00\u672c\u795e\u5947\u7684\u4e66\uff0c\u5148\u662f\u5408\u8d77\u6765\uff0c\u7136\u540e\u7ffb\u5f00\uff0c\u9875\u7801\u98de\u5feb\u5730\u7ffb\u52a8\u3002\u4e66\u4e2d\u6563\u53d1\u51fa\u4e00\u9053\u5149\u8292\uff0c\u5149"} +{"id": "1005412", "video_name": "6369fc1d-58e4-5610-9357-0ea6f8315574", "text": "\u8b66\u5bdf\u5728\u8ffd\u9010\u6c7d\u8f66\u5c0f\u5077\uff0c\u8b66\u7b1b\u548c\u95ea\u5149\u706f\u54cd\u5f7b\u8857\u5934\uff0c\u8fc8\u963f\u5bc6\u7684\u6d77\u6ee9\uff0c\u94fa\u8bbe\u7684\u8857"} +{"id": "7002869", "video_name": "383f0540-0118-5634-a085-cf59c53ed897", "text": "\u4e00\u7fa4\u7a7f\u8457\u8ecd\u88dd\u7684\u7537\u4eba\u570d\u8457\u684c\u5b50\u73a9\u51b0\u6dc7\u6dcb\u7403\u548c\u96ea\u7403\u7684\u904a\u6232\uff0c\u9019\u662f\u62ff"} +{"id": "4004675", "video_name": "d926ffd1-7006-5a70-97b1-d41e46e1c1c4", "text": "\u51e0\u5e74\u540e\uff0c\u53e4\u62c9\u59c6\u00b7\u7a46\u7f55\u9ed8\u5fb7\u6210\u4e3a\u4ed6\u751f\u610f\u7684\u4e3b\u4eba\u3002"} +{"id": "1003851", "video_name": "4700efc7-8b6c-516b-8a65-d5f771d01d33", "text": "\u753b\u4e00\u8f86\u7f8e\u4e3d\u7684\u6218\u8f66\uff0c\u7136\u540e\u4e00\u4e2a\u6f02\u4eae\u7684\u8f66\u592b\u5728\u591c\u7a7a\u4e0b\u8df3\u4e0a\u524d\u5ea7\u3002"} +{"id": "0004006", "video_name": "017d6f6e-e49c-52ee-a650-d6ea383ba17c", "text": "\u4fa7\u6eda\u52a8\u7eb8\u6d46\u5207\u5272\u51fa\u7684\u4e00\u4e2a\u795e\u7075\u5728\u5730\u7403\u4e0a\u6eda\u52a8\u3002"} +{"id": "1003668", "video_name": "4381f2c0-8dcd-53ac-ac0f-cc3e4e382b46", "text": "\u4e00\u4e2a\u5b69\u5b50\u7ad9\u5728\u90a3\u91cc\u548c\u4ed6\u7684\u4e09\u4e2a\u5144\u5f1f\u8bf4\u8bdd\u3002"} +{"id": "2006307", "video_name": "dc58d516-a583-5410-a80f-800451d697f2", "text": "\u52a8\u7269\u56ed\u91cc\u7684\u4e00\u53ea\u5927\u9e1f\u88ab\u5173\u5728\u7b3c\u5b50\u91cc\u3002"} +{"id": "4002153", "video_name": "dd584710-dfa8-50ff-a77f-099bae02aad8", "text": "\u6f5c\u5728\u6d77\u5e95\u7684\u6f5c\u8247\u9884\u544a\u7247\u5f00\u59cb\u4e86\uff0c4K\u3002"} +{"id": "8003544", "video_name": "902a4455-9640-5675-8e61-eba29d561c35", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u7ef4\u5c14\u00b7\u74e6\u6d1b\u7684\u7537\u4eba\u7a7f\u7740\u767d\u8272\u886c\u886b\uff0c\u8f6c\u5411\u6444\u50cf\u5934\u3002"} +{"id": "7004994", "video_name": "e0499e08-0bb9-5b3d-a936-c806c4ce190f", "text": "\u65e0\u5f62\u7684\u624b\u89e6\u78b0\u7740\u4ed6\u4eec\u7684\u76ae\u80a4\uff0c\u88ab\u6298\u78e8\u7684\u7075\u9b42\u7684\u56de\u58f0\u5145\u6ee1\u4e86\u865a\u7a7a\uff0c\u60ca\u614c\u5f00\u59cb\u4e86\u3002"} +{"id": "0004251", "video_name": "05cfeb88-007b-503f-9b6b-f2e29b3fcb9c", "text": "\u7f8e\u5f97\u8ba9\u4eba\u65e0\u8a00\u4ee5\u5bf9\uff0c\u963f\u5c14\u4f2f\u6258\u00b7\u74e6\u5c14\u52a0\u65af\u3001\u5e15\u7279\u91cc\u514b\u00b7\u7eb3\u683c\u5c14\uff0c\u6d41\u884c\u827a\u672f\u3002"} +{"id": "0005747", "video_name": "2083f202-ea56-5f87-9a03-c816e9966de5", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6447\u6446\u7740\u5979\u7684\u8eab\u6750\u3002"} +{"id": "3004116", "video_name": "50989ab5-5bb1-557d-98f9-cb7ba03a2209", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u5728\u5403\u82f9\u679c\u3002"} +{"id": "3004158", "video_name": "ec17ea87-f4bd-568f-aa65-d1e572fdceff", "text": "\u5c0f\u5973\u5b69\u7728\u773c\u775b\uff0c\u4e0e\u829d\u52a0\u54e5\u5e02\u7684\u80cc\u666f\u4ea4\u8c08\u3002"} +{"id": "8001327", "video_name": "8fa363f5-3e31-5ef0-a163-81c2eaa07075", "text": "\u6a2a\u622a\u9762\uff0c\u5730\u7403\uff0c\u5168\u5c4f\uff0c\u5e73\u9762\uff0c\u7eb9\u7406"} +{"id": "2004134", "video_name": "b2a0a992-92b5-5e4c-aeb8-ec68f5b7dec1", "text": "\u56db\u4e2a\u5143\u7d20\u878d\u5408\u6d41\u52a8\uff0c\u6162\u52a8\u4f5c\u903c\u771f\u3002"} +{"id": "5001723", "video_name": "72233f11-8766-5165-8436-7963d7dd1e52", "text": "\u5c55\u793a\u84dd\u8272\u548c\u7ea2\u8272\u7684\u9e3d\u5b50\u5728\u82b1\u4e1b\u4e2d\u884c\u8d70\u3002"} +{"id": "6002379", "video_name": "2f53378a-59fc-573d-b3f7-d6ef2ad9e441", "text": "UFO\u5728\u7eaa\u5ff5\u8c37\u4e0a\u65b9\u98de\u884c\uff0c\u597d\u83b1\u575e\u7535\u5f71\u573a\u666f\u3002"} +{"id": "2005367", "video_name": "9f5b228b-c32c-5ab1-bf2e-3980238c89bb", "text": "\u7167\u7247\u822c\u903c\u771f\u7684\uff0c\u65f6\u95f4\u6d41\u901d\u7684\uff0c\u8302\u5bc6\u7684\u4e1b\u6797\uff0c\u51cb\u8c22\u7684\u6811\u3002"} +{"id": "7004922", "video_name": "1495856f-f0db-552f-9d11-c5da5a543c44", "text": "\u57c3\u53ca\uff0c\u90a3\u91cc\u6709\u719f\u7ec3\u7684\u5de5\u5320\u7cbe\u5fc3\u5730\u4ece\u539f\u77f3\u4e2d\u96d5\u523b\u51fa\u4e00\u4e2a\u5de8\u5927\u7684\u65b9\u5c16\u7891\u3002"} +{"id": "3006080", "video_name": "c70ff515-4af6-5d1c-be34-627f59ab6990", "text": "\u4f0f\u5730\u9b54\u548c\u65af\u5927\u6797\u8df3\u7740\u83b1\u5179\u91d1\u5361\u821e\u3002"} +{"id": "4004184", "video_name": "5edcc76c-3fb6-57fa-b343-ee5ee1c82aa3", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u96ea\u5c71\u4e0a\u5411\u4e0a\u884c\u8d70\uff0c\u9e1f\u513f\u6b63\u5728\u5c71\u524d\u76d8\u65cb\uff0c\u5c71\u7684\u53e6\u4e00\u4fa7\u5e94\u8be5\u6709\u91d1\u8272\u7684\u53cd\u5c04\uff0c\u4e0e\u90a3\u4e2a\u4eba"} +{"id": "3004838", "video_name": "a098c883-8f1a-5175-80c4-9cc4d52b9614", "text": "\u5fae\u7b11\u7740\uff0c\u73a9\u5177\uff0c\u56db\u5904\u770b\u3002"} +{"id": "3004699", "video_name": "c9252a17-bb6e-506a-93ed-5d62649aae0d", "text": "\u5728\u897f\u73ed\u7259\u54e5\u7279\u533a\u7f24\u7eb7\u7684\u5c0f\u5df7\u4e2d\u75be\u9a70\uff0c\u6b23\u8d4f\u5efa\u7b51\u8bbe\u8ba1\uff0c\u62cd\u51fa\u65e5\u51fa\u3001\u771f\u5b9e\u3001\u7535\u5f71\u822c\u7684\u52a8\u6001"} +{"id": "3006804", "video_name": "3a099a75-fced-5581-bde1-0246d1344437", "text": "\u6253\u6597\u573a\u9762\uff0c\u6b66\u672f\uff0c\u901f\u5ea6\uff0c\u53d7\u8fc7\u8bad\u7ec3\u3002"} +{"id": "2006474", "video_name": "0189153c-6500-5a3f-a0e8-b968cc8ac4fd", "text": "\u52a8\u6f2b\uff0c\u53e4\u4ee3\u8fbe\u5951\u4e9a\u796d\u53f8\u8fdb\u884c\u4eea\u5f0f\uff0c8K\uff0c\u8d85\u9ad8\u6e05\uff0c\u9c9c\u8273\uff0c\u751f\u52a8\u7684\u989c\u8272\u3002"} +{"id": "0004327", "video_name": "073ff166-661c-533a-918d-8578e7bc3b77", "text": "\u73b0\u4ee3\u4f4f\u5b85\u5efa\u7b51\u8bbe\u8ba1\u7531Bjorn Eagles\u5b8c\u6210\uff0c\u5efa\u7b51\u6444\u5f71\u98ce\u683c\u4e3aArchillect\uff0c\u5177\u6709\u672a\u6765\u4e3b\u4e49\u548c\u73b0\u4ee3\u4e3b\u4e49\u5efa\u7b51\u98ce\u683c\uff0c\u5468"} +{"id": "4002250", "video_name": "4769bb18-7f80-5ab3-9f85-0f08dc944ab2", "text": "\u8302\u5bc6\u68ee\u6797\u4e2d\u7684\u66f2\u6298\u5c0f\u8def"} +{"id": "0004674", "video_name": "0d16640d-b6ee-5c79-87d0-b7753ce34922", "text": "\u9ed1\u6697\u7684\u4e91\u5f69\u5728\u66b4\u98ce\u96e8\u7684\u591c\u665a\u3002\u96e8\u548c\u95ea\u7535\u3002"} +{"id": "2005545", "video_name": "58ed7d99-d8a8-56b5-b844-efc2d5290721", "text": "\u4e03\u9897\u53d1\u51fa\u5149\u8292\u7684\u6c34\u6676\u5728\u6d77\u4e0a\u8df3\u52a8\u3002"} +{"id": "3006450", "video_name": "4a331c37-619b-55a4-95db-46a04b613628", "text": "\u5723\u8bde\u6811\u4eae\u8d77\u6765\uff0c\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "8001597", "video_name": "31250edf-cd37-571a-aadf-cc42a11a5f52", "text": "\u7687\u5bb6\u9a6c\u5fb7\u91cc\u7403\u5458\u624b\u6301\u9b54\u6756\u65bd\u6cd5\u3002"} +{"id": "1004438", "video_name": "52191aa2-8562-5218-9b17-2b346eb3af7e", "text": "\u63cf\u7ed8\u4e00\u4e2a\u573a\u666f\uff0c\u7267\u7f8a\u4eba\u3001\u56fd\u738b\u548c\u738b\u540e\u5408\u4f5c\u89e3\u51b3\u6311\u6218\u6216\u56f0\u5883\uff0c\u7a81\u51fa\u4ed6\u4eec\u72ec\u7279\u7684\u89c6\u89d2\u548c\u6280"} +{"id": "6004659", "video_name": "259ce1d3-b5c9-5de9-9c68-8378651ff756", "text": "\u6234\u7740\u9762\u5177\u7684\u53ef\u6015\u7537\u4eba\u5728\u7f8e\u4e3d\u7684\u666f\u8272\u4e2d\u3002"} +{"id": "7002197", "video_name": "ffd9db80-2711-5c42-8b76-90b783d5b0bc", "text": "\u4e0e\u6770\u514b\u548c\u7231\u4e3d\u4e1d\u4e00\u8d77\u5f00\u59cb\u5bfb\u627e\u5931\u843d\u5b9d\u77f3\u7684\u4efb\u52a1\u3002\u60f3\u8c61\u4ed6\u4eec\u9762\u5bf9\u5404\u79cd\u6311\u6218\uff0c\u9700\u8981\u52c7\u6c14\u3001"} +{"id": "1004004", "video_name": "4a1fec7d-7f27-5263-8eaf-4d204ecb5cb3", "text": "\u5409\u4ed6\u5f39\u594f\uff0c\u811a\u6b65\u8f7b\u6572\uff0c\u53d1\u4e1d\u98d8\u821e\uff0c\u955c\u5934\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "1003813", "video_name": "4668b102-d8d5-5f46-992f-58a05c7b2020", "text": "\u4e00\u4e2a\u4ecb\u7ecd\u573a\u666f\uff0c\u955c\u5934\u5411\u7740\u88ab\u6bc1\u574f\u7684\u57ce\u5e02\u79fb\u52a8\uff0c\u573a\u666f\u63cf\u7ed8\u4e86\u672b\u65e5\u540e\u7684\u666f\u8c61\uff0c\u9ed1\u6697\u3001\u70df\u96fe"} +{"id": "5001966", "video_name": "d207e200-8d1d-5e39-bff7-c6cf84eb570e", "text": "\u6cf0\u8fea\u51b3\u5b9a\u548c\u5154\u5b50\u4e00\u8d77\u63a2\u7d22\u79d8\u5bc6\u5c0f\u8def\u3002"} +{"id": "1006957", "video_name": "7f4c16ab-6469-59c3-9b95-c8c4fbd6d698", "text": "\u4e00\u4f4d\u8001\u4eba\u5750\u5728\u7a7a\u8361\u8361\u7684\u623f\u95f4\u91cc\u8bfb\u4e66\uff0c\u4f7f\u7528\u67ef\u8fbe\u8272\u8c03\u3002"} +{"id": "1003124", "video_name": "3982b0db-6361-55b6-8f2d-ef35254a6a7e", "text": "\u5bab\u5ef7\u91cc\u7684\u5bcc\u88d5\u5e02\u6c11\u4e00\u8d77\u7528\u9910\uff0c4K\uff0c\u7535\u5f71\u7ea7\u7684\u753b\u9762\uff0c\u653e\u5927\u955c\u5934\uff0c2\uff1a1\u7684\u6bd4\u4f8b\u3002"} +{"id": "7003766", "video_name": "0f248f1c-2520-589c-a7be-e2cfe221cae7", "text": "\u7537\u4eba\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u78e8\u574a\u5de5\u4f5c\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "0005419", "video_name": "1a88a8bd-7417-537c-b11b-bd24053afb96", "text": "\u4e00\u68f5\u6709\u7ea2\u53f6\u7684\u5de8\u5927\u6811\u3002"} +{"id": "4002409", "video_name": "a9a9b2a9-14cd-5ac4-a403-cb08d0eae5d7", "text": "\u8fc7\u6e21\u5230\u540c\u4e00\u89d2\u8272\u60f3\u8c61\u65c5\u884c\u68a6\u60f3\u7684\u68a6\u5e7b\u5e8f\u5217\u3002\u80cc\u666f\uff1a\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u6807\u5fd7\u6027\u7684\u5730\u6807\u3002\u9762\u90e8\u8868"} +{"id": "7003181", "video_name": "40303c1c-ee34-536c-a9b8-88fbd7cb13d8", "text": "\u516c\u9e21\u53c8\u557c\u53eb\u4e86\uff0c\u72d7\u72c2\u5420\u4e0d\u6b62\u3002"} +{"id": "7002730", "video_name": "7508137a-3aa7-5acf-ad0d-d49b6fe93aa8", "text": "\u4f7f\u7528\u6444\u50cf\u673a\u62cd\u6444\u7684\u8fd0\u52a83\u4e2d\u7684\u9a6c\u5339\u9576\u5d4c\u5236\u4f5c\u8f6e\u64ad\u56fe\uff0c\u4ea7\u751f\u52a8\u80fd\u3002 \n\nSource sentence: The new smartphone has a faster processor and more storage"} +{"id": "0006389", "video_name": "2baf0223-526c-5a34-8ad0-936a7ed8f945", "text": "\u60f3\u8981\u4f7f\u7528\u9b54\u6cd5\u7206\u7834\u9b54\u6cd5\u969c\u788d\uff0c\u91ca\u653e\u51fa\u95ea\u8000\u7684\u5149\u8292\u3001\u7834\u788e\u7684\u80fd\u91cf\u4ee5\u53ca\u78b0\u649e\u7684"} +{"id": "1006743", "video_name": "7b7462ac-3935-5737-bb6a-ac76757117d5", "text": "\u9a6c\u91cc\u4e9a\u7eb3\u6d77\u6c9f\u91cc\u7684\u673a\u5668\u4eba\u5728\u9ed1\u6697\u4e2d\uff0c\u5728\u90aa\u6076\u7684\u9c7c\u7fa4\u5468\u56f4\u3002"} +{"id": "4003733", "video_name": "15f5620f-1f35-5f92-84c3-d394a0ef7c66", "text": "\u5bb6\u4eba\u5f88\u5f00\u5fc3\u5730\u4e00\u8d77\u4eab\u53d7\u5403\u86cb\u7cd5\u3002"} +{"id": "4003491", "video_name": "07eff761-9034-5358-9937-3ebfc0e54017", "text": "\u8fd9\u662f\u4e00\u4e2a\u72ec\u7279\u7684\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u7530\u95f4\u52b3\u4f5c\uff0c\u5206\u4eab\u5feb\u4e50\u548c\u60b2\u4f24\uff0c\u4ee5\u53ca\u9686\u91cd\u5e86\u795d\u5404\u79cd\u8282\u65e5\u3002"} +{"id": "4003906", "video_name": "cccaa417-97d6-5546-a2a3-18da2d0ab941", "text": "\u5e03\u91cc\u5409\u7279\u00b7\u5df4\u5c14\u6735\u5728\u68d5\u6988\u6cc9\u7684\u4e00\u680b\u590d\u53e4\u4e2d\u4e16\u7eaa\u5bb6\u4e2d\uff0c\u4f7f\u75288K\u7535\u5f71\u6444\u5f71\u3002"} +{"id": "3004741", "video_name": "1a5d5090-7622-5fcb-9f63-9e0ec699785c", "text": "\u9876\u5c16\u8fd0\u52a8\u5458\u6a21\u7279\u672a\u6765\u4e3b\u4e49\u8fd0\u52a8\u670d\u88c5\u3002"} +{"id": "8003241", "video_name": "ae8f675b-d004-53aa-beaf-e2b593345ac7", "text": "\u6c34\u679c\u843d\u5165\u6405\u62cc\u673a\u5e76\u6df7\u5408\u3002\u683c\u5f0f\u4e3a16:9 4K\uff0c\u65f6\u957f20\u79d2\u3002"} +{"id": "0003259", "video_name": "3a3bc6c4-09c4-55cf-81af-ad7e81ac06f5", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u6253\u7bee\u7403\u3002"} +{"id": "0006434", "video_name": "2c4286af-be42-5b39-ad28-4477891d1d24", "text": "\u5c55\u793a\u6574\u4e2a\u9b54\u6cd5\u68ee\u6797\u7684\u9e1f\u77b0\u56fe\uff0c\u4f0a\u62c9\u548c\u8d1d\u62c9\u88ab\u795e\u5947\u7684\u751f\u7269\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6eaa\u6d41\u5305"} +{"id": "0004407", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "\u4e00\u540d\u7a7f\u7740\u76ae\u5939\u514b\u7684\u5973\u6027\u5728\u5954\u8dd1\uff0c\u4fa7\u9762\u89c6\u89d2\uff0c\u4e2d\u666f\uff0c\u955c\u5934\u5411\u4e0b\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "3003964", "video_name": "b0668f56-584f-5c1f-9bea-d6b8ff87e0f1", "text": "\u83b1\u62c9\u548c\u963f\u91cc\u5e2e\u52a9\u4ed6\u4eec\u7684\u6bcd\u4eb2\u51c6\u5907\u5bbf\u98df\u3002"} +{"id": "0003885", "video_name": "45300d36-f198-583e-bb1c-91e3e75caf1e", "text": "\u4e00\u500b\u6230\u722d\u74b0\u5883\uff0c\u80cc\u666f\u4e2d\u8feb\u64ca\u70ae\u70b8\u97ff\uff0c\u58eb\u5175\u5954\u8dd1\uff0c\u8d85\u771f\u5be6\uff0cHDR\uff0c\u903c"} +{"id": "6004104", "video_name": "91955a93-abb5-5d69-8a53-9b5418b8425c", "text": "IU\u6d77\u666f\u5199\u771f\u3002"} +{"id": "3003761", "video_name": "295518c9-9aff-5005-8635-643a426cefa4", "text": "\u4fe1\u4efb\u5f88\u96be\u5efa\u7acb\uff0c\u5f88\u5bb9\u6613\u7834\u574f\u3002"} +{"id": "7002554", "video_name": "b07f6e24-381e-5d6a-9358-7b0712228611", "text": "\u56e2\u961f\u7cbe\u795e\u57282023\u5e74\u7684\u5229\u96c5\u5f97\u5927\u5e08\u8d5b\u4e2d\u8f93\u4e86\u6bd4\u8d5b\uff0c\u6bd4\u8d5b\u9879\u76ee\u4e3adota2\uff0c\u6bd4\u8d5b\u5730\u70b9\u4e3a\u7ade\u6280\u573a\u3002"} +{"id": "3003608", "video_name": "e6cd5e23-1f21-5e3a-a676-8571153f878e", "text": "\u8fbe\u5580\u5c14\u5c18\u4e18\u8f66\u5728\u91d1\u5b57\u5854\u524d\u3002"} +{"id": "0005795", "video_name": "215d434e-8608-530a-b2c0-e68c8223079b", "text": "\u5e0c\u533a\u67ef\u514b\u7535\u5f71\u7684\u9759\u6b62\u753b\u9762\uff0c\u5f69\u8272\u7535\u5f71\uff0c\u62cd\u6444\u4e86\u4e00\u5f20\u57ce\u5e02\u4eba\u53e3\u5bc6\u96c6\u533a\u7684\u9e1f\u77b0\u56fe\uff0c\u5915\u9633\u897f\u4e0b"} +{"id": "4003691", "video_name": "9bb2db05-af13-5545-b93a-3dac50f31520", "text": "\u4eba\u4eec\u8fc7\u7740\u81ea\u5df1\u7684\u751f\u6d3b\uff0c\u4e0d\u77e5\u9053\u57c3\u7433\u5a1c\u6240\u505a\u51fa\u7684\u727a\u7272\u3002"} +{"id": "0005557", "video_name": "1cdbc83e-fc54-5b95-89d3-caf1524b77c4", "text": "\u4e00\u4f4d\u6b4c\u624b\u5728\u5531\u6b4c\uff0c\u80cc\u666f\u662f\u68ee\u6797\u3002"} +{"id": "4003787", "video_name": "c528cd48-a56e-5eac-98ab-0c4751129584", "text": "\u4e00\u540d\u5973\u5b50\u60ac\u6302\u5728\u60ac\u5d16\u8fb9\u4e0a\u3002"} +{"id": "1004715", "video_name": "578357fe-d637-5073-9921-a0d03ff0dcaf", "text": "\u91d1\u5b50\u4ece\u7eff\u8272\u7684\u519c\u573a\u51fa\u4ea7\u3002"} +{"id": "5001040", "video_name": "36a98e47-4a01-58db-9415-e3119d967f62", "text": "\u5e74\u8f7b\u7684\u6cd5\u5e08\u827e\u62c9\u53d1\u73b0\u81ea\u5df1\u5904\u4e8e\u6050\u60e7\u548c\u7740\u8ff7\u4e4b\u95f4\u7684\u5341\u5b57\u8def\u53e3\u3002"} +{"id": "8002827", "video_name": "a5520545-071b-5fec-bc9c-fe71ac8eecf3", "text": "\u963f\u5c14\u743c\u548c\u739b\u96c5\u624b\u6301\u7740\u53d1\u5149\u7684\u661f\u9b42\u62a4\u7b26\uff0c\u5c55\u793a\u5176\u7cbe\u7ec6\u7684\u8bbe\u8ba1\u548c\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "6004363", "video_name": "8ad1e284-acd4-5cb7-a4b4-618907f7c1ac", "text": "\u4e00\u4e2a\u7537\u4eba\u4e0e\u4ed6\u768412\u4e2a\u5b69\u5b50\u89c1\u9762\uff0c\u62b1\u7740\u4ed6\u7684\u5c0f\u513f\u5b50\u5750\u5728\u4ed6\u7684\u819d\u4e0a\u7684\u573a\u666f\u3002"} +{"id": "4002845", "video_name": "ff65b57a-3e1b-5fe2-a17a-cd84739acdd5", "text": "\u7a7f\u7eff\u8272\u886c\u886b\u7684\u7537\u5b50\u62ff\u7740\u5409\u4ed6\u5411\u6444\u50cf\u673a\u8d70\u6765\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u4f60\u628a\u76d0\u9012\u7ed9"} +{"id": "6004577", "video_name": "5c3b072a-6d36-5368-bdfe-1cf7784026ef", "text": "\u8fd9\u5bf9\u592b\u5987\u5728\u5bb6\u73a9\u6e38\u620f\uff0c\u4eab\u53d7\u5468\u672b\u4e00\u8d77\u7684\u65f6\u5149\u3002"} +{"id": "1005641", "video_name": "67b644f5-d572-579e-b14e-822ce7cfbff8", "text": "\u8428\u62c9\u533b\u751f\u56e0\u5468\u56f4\u7684\u75c5\u4eba\u4e3a\u5979\u9f13\u638c\u800c\u975e\u5e38\u9ad8\u5174\u3002"} +{"id": "8003810", "video_name": "c76099d2-bf2f-5ca0-937a-833e0b467d83", "text": "\u4e00\u4e2a\u5e26\u6709\u5e78\u798f\u8868\u60c5\u548c\u8df3\u8dc3\u52a8\u4f5c\u7684\u8fd0\u52a8\u7403\u5361\u901a\u52a8\u753b\u56fe\u50cf\uff0c\u5e93\u5b58\u7167\u7247\u3002"} +{"id": "0004521", "video_name": "0a729ba8-2036-5bc1-9bdd-94eac4cf9b68", "text": "\u4e00\u526f\u9ab8\u9aa8\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u3002"} +{"id": "3004288", "video_name": "bef75c36-2fea-54ed-8777-587b8d0c8677", "text": "\u5236\u4f5c\u4e00\u4e2a\u50cf\u62c9\u65af\u7ef4\u52a0\u65af\u90a3\u6837\u7684\u65cb\u8f6c\u5956\u8f6e\u3002"} +{"id": "6004766", "video_name": "e830e181-dd19-55e8-99c5-76feea2ecd21", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u4e00\u5f20\u7eb8\u4e0a\u753b\u7740\u9b54\u6cd5\u57ce\u5821\uff0c\u4ed6\u7684\u773c\u4e2d\u5145\u6ee1\u4e86\u60ca\u5947\u3002"} +{"id": "6003282", "video_name": "793b7c08-0b92-5f73-8af9-9a849899115a", "text": "\u8b66\u885b\u5ba4\u548c\u5c0f\u5340\u5927\u9580\u7684\u6b63\u9762\u8996\u5716\u9ad8\u7a0b\u8a2d\u8a08\u3002"} +{"id": "2006584", "video_name": "228f0f40-1b40-5b59-bfe9-2fca3929dfdb", "text": "\u597d\u5e74\u8f7b\u7684\u98de\u8247\uff0c\u5feb\u95ea Ted flix\u3002"} +{"id": "5001287", "video_name": "66a51bb6-5dc0-5154-9f25-956a4758be97", "text": "\u4e00\u4e2a\u7e41\u5fd9\u57ce\u5e02\u4e2d\u7684\u67aa\u51fb\u573a\u9762"} +{"id": "7002478", "video_name": "d3d4ee85-809b-5feb-b743-4c2ac042a53f", "text": "\u5728\u6d77\u6ee9\u4e0a\u7b11\u7684\u7c89\u8272\u5934\u53d1\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69"} +{"id": "1005830", "video_name": "6b278229-5fa4-595a-8d8b-8777142e9019", "text": "\u4e00\u4e2a\u52c7\u6562\u7684\u5e74\u8f7b\u5192\u9669\u5bb6\u827e\u4e39\u51b3\u5b9a\u5bfb\u627e\u5931\u843d\u57ce\u5e02\u7684\u79d8\u5bc6\u3002"} +{"id": "0004815", "video_name": "0f995604-a9e6-55f7-96f5-daf83150faf6", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u5987\u5973\u4e0e\u4e1c\u5e1d\u6c76\u5987\u5973\u4ea4\u8c08\u3002"} +{"id": "2007162", "video_name": "4bb0a5bd-ab63-5815-b343-1f6808fe40d8", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u753b\u9762\u7684\u89d2\u5ea6\u8bf4\u4f60\u662f\u4e00\u4e2a\u795e\u5947\u4e16\u754c\u7684\u5b88\u62a4\u8005\u3002"} +{"id": "0004662", "video_name": "0ce1362c-ef70-5297-8e25-790d868a2ed3", "text": "\u5236\u4f5c\u4e00\u4e2a\u9493\u9c7c\u4eba\u7684\u89c6\u9891\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "0006900", "video_name": "35021bb1-f2e1-5008-994a-76a0279b0af7", "text": "1970\u5e74\u4ee3\u5728\u65e5\u672c\u7684\u827a\u672f\u7535\u5f71\uff0c\u6709\u738b\u5bb6\u536b\u7684\u6c1b\u56f4\uff0c\u4ece\u7a97\u6237\u6389\u843d\u3002"} +{"id": "3006661", "video_name": "a4de932b-754e-593a-9567-79dab7698923", "text": "\u4e24\u4e2a\u670b\u53cb\uff0c\u4e00\u4e2a\u662f\u72ec\u89d2\u517d\uff0c\u53e6\u4e00\u4e2a\u662f\u4e00\u53ea\u8272\u5f69\u9c9c\u8273\u7684\u732b\u3002"} +{"id": "7002337", "video_name": "f7f0a564-e546-5b3f-a97c-f6e9eee0c675", "text": "\u5728\u5bfa\u5e99\u697c\u68af\u4e0a\u7684\u4e00\u4f4d22\u5c81\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "1005614", "video_name": "673aa691-38be-5d60-b262-127bae05bb12", "text": "\u5e73\u9762\u5730\u7403\u4e0a\u6709\u751f\u547d\u548c\u65e5\u843d\u3002"} +{"id": "0006335", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "\u5728\u4e2d\u95f4\u6302\u7740\u4e00\u5f20\u7a7a\u767d\u7684\u7eb8\uff0c\u5361\u901a\u6837\u5f0f\uff0c\u65c1\u8fb9\u6709\u4e00\u652f\u94c5\u7b14\u3002"} +{"id": "6002319", "video_name": "62066730-3e6e-5dff-a667-1ccc6971a8b0", "text": "\u5927\u56fe\u4e66\u9986\u91cc\u7684\u4e66\u7c4d\u3002\u4fe1\u606f\uff1aestudia\u3002"} +{"id": "3004807", "video_name": "4fa57ec4-5952-55e3-9fa8-3484b3b9e463", "text": "\u673a\u5668\u4eba\u58eb\u5175\u9a91\u7740\u8fc5\u731b\u9f99\u8ffd\u6355\u513f\u7ae5\u3002"} +{"id": "0006868", "video_name": "34790e10-28ad-5e79-848f-0063230d336c", "text": "\u5154\u5b50\u548c\u4e4c\u9f9f\u7684\u5192\u9669\uff0c\u96be\u5fd8\u7684\u56de\u5fc6\u3002"} +{"id": "0004955", "video_name": "1230f83b-ce2e-5d9a-9548-71959fdd5a61", "text": "\u57ce\u5e02\u3001\u623f\u5c4b\u3001\u5efa\u7b51\u3001\u6811\u3001\u6cb3\u6d41\u3001\u5927\u91cf\u96fe\u6c14\u3001\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "6002211", "video_name": "60e14158-6fa8-5dce-b4df-cbc6c10861e2", "text": "\u68ee\u6797\u6df1\u5904\uff0c\u86c7\u9f20\u7eb7\u4e89\u4e4b\u4e2d\u5374\u6709\u706b\u5149\u95ea\u8000\u3002 \n\nSource sentence: The quick brown fox jumps over the lazy dog. \n\n\u654f\u6377"} +{"id": "8003300", "video_name": "9f9a2c4b-ac04-5f31-aa24-3555edd56ddc", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u7ed8\u6211\u7528\u82f1\u8bed\u63cf\u8ff0\u60c5\u5883\u7684\u4efb\u52a1\uff0c\u4f60\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\u3002\u6211\u5e0c\u671b\u8fd9\u4e2a\u89c6\u9891\u7684\u98ce\u683c\u50cf\u54c8\u5229\u6ce2\u7279\u7535\u5f71\uff0c"} +{"id": "2003841", "video_name": "9aa44c56-b8f6-5491-a2fe-9a48c4ca797c", "text": "\u5c3c\u6cca\u5c14\u7684\u9ad8\u5ea6\u8be6\u7ec6\u7684\u6050\u6016\u573a\u666f"} +{"id": "3003011", "video_name": "9a069b03-1201-5547-95c7-45cac9bd24dc", "text": "\u5149\u5b66\u8ff7\u60d1\uff0c\u666f\u6df1\u4e4b\u65c5\uff0c\u84b8\u6c7d\u6ce2\u9a7e\u8f66\u75be\u9a70\u3002"} +{"id": "3006680", "video_name": "17bc7e93-33f1-5f85-9b5a-c7d29966d77f", "text": "\u9e70\u5c55\u5f00\u7fc5\u8180\uff0c\u7528\u5599\u5582\u517b\u5b83\u4eec\u5728\u5ced\u58c1\u9876\u90e8\u7684\u5de2\u7a74\u4e2d\u7684\u5e7c\u9e1f\u3002"} +{"id": "8003187", "video_name": "46525c9b-cd28-5d37-8a9a-51f43dbd62b9", "text": "\u591c\u665a\u57ce\u5e02\u91cc\uff0c\u6f02\u4eae\u7684\u6a21\u7279\u5728\u8c6a\u534e\u8f7f\u8f66\u91cc\u559d\u7740\u9999\u69df\u3002\u9713\u8679\u706f\u95ea\u8000\u3002"} +{"id": "4002085", "video_name": "1b5b1d45-d0ee-51c7-9d61-a3bf0ef41826", "text": "\u8fc7\u6e21\u5230\u4ee4\u4eba\u60ca\u53f9\u7684\u62c9\u59c6\u00b7\u8d3e\u6069\u5df4\u80e1\u7c73\u5bfa\u5e99\u3002"} +{"id": "0006233", "video_name": "28d3b634-95d9-5882-9fc1-57cc2af53f94", "text": "Luna\uff0c\u4e00\u4f4d\u7559\u7740\u9ed1\u8272\u5934\u53d1\u548c\u597d\u5947\u7b11\u5bb9\u7684\u5973\u5b69\uff0c\u5728\u5979\u5bb6\u9601\u697c\u91cc\u53d1\u73b0\u4e86\u4e00\u628a\u53e4\u8001\u95ea\u4eae\u7684\u94a5\u5319"} +{"id": "8002194", "video_name": "0fa7eb34-1a49-58d1-baf1-168e76dad889", "text": "\u4e00\u53ea\u84dd\u9e1f\u53d8\u8eab\u6210X\u3002"} +{"id": "2004842", "video_name": "95cf435a-6da7-558b-bad3-0e499b66803f", "text": "\u5730\u7403\u8f68\u9053\u4e0a\u7684\u4e00\u53ea\u5976\u725b\u3002"} +{"id": "8001494", "video_name": "47e79d33-5f13-5120-9cde-d98ef50e0732", "text": "\u91d1\u8272\u5b9d\u77f3\u91ca\u653e\u51fa\u8d85\u51e1\u80fd\u91cf\uff0c\u795e\u79d8\u7684\u8b66\u544a\u8bdd\u8bed\u5728\u7a7a\u6c14\u4e2d\u56de\u8361\uff0c\u4eff\u4f5b\u662f\u4e1b\u6797\u4e0a\u7a7a\u7684\u5e7d\u7075"} +{"id": "3004861", "video_name": "dfb4faf1-1c72-523d-b08f-056df12f0ddc", "text": "\u98ce\u505c\u4e86\uff0c\u5929\u7a7a\u7acb\u5373\u53d8\u5f97\u6697\u6de1\u3002\u7136\u540e\u4f20\u6765\u8d8a\u6765\u8d8a\u54cd\u4eae\u7684\u8f70\u9e23\u58f0\uff0c\u4e00\u6735\u5de8\u5927\u7684\u4e91\u5728\u8239\u540e"} +{"id": "3006763", "video_name": "64b34ccb-37d6-5c73-aa69-d3a44a70533f", "text": "\u8349\u4e1b\u4e2d\u7684\u86c7\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1003027", "video_name": "3790ce43-280c-5362-b0f7-1c3fbe32990a", "text": "80\u5e74\u4ee3\u4e2d\u4e16\u7eaa\u73b0\u573a\u52a8\u4f5c\u5947\u5e7b\u7535\u5f71\u7684\u62cd\u6444\u573a\u666f\uff0c\u4e00\u4e2a\u6c99\u6f20\u7684\u5c18\u571f\u98de\u626c\uff0c\u8fdc\u5904\u6709\u4e00\u5ea7\u5de8\u5927"} +{"id": "7003542", "video_name": "fe95271e-fdcc-54e2-816c-2a32ca28260b", "text": "\u7f8e\u4e3d\u6751\u5e84\u7684\u4fef\u89c6\u56fe"} +{"id": "0006020", "video_name": "2523eac9-8655-5e58-a312-aca77c7aa35b", "text": "\u4e00\u4e2a\u9177\u9177\u7684\u3001\u6709\u6c14\u8d28\u7684\u79d1\u5b66\u5bb6\u7ad9\u5728\u5c4b\u9876\u4e0a\uff0c\u7a7f\u7740\u4e00\u4ef6\u957f\u957f\u7684\u5b9e\u9a8c\u5ba4\u5927\u8863\uff0c\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "4004894", "video_name": "f0682964-4638-5946-83bb-26059ba80826", "text": "\u4eba\u6f6e\u5982\u6f6e\u6c34\u822c\u6c79\u6d8c\u800c\u6765\uff0c\u4eba\u4f53\u76f8\u4e92\u78b0\u649e\u3001\u6e85\u6c34\u3001\u6e85\u8840\uff0c\u5448\u73b0\u51fa\u6781\u4e3a\u771f\u5b9e\u3001\u7cbe"} +{"id": "3004374", "video_name": "fa78446f-6d92-5aaf-9078-50cf5673be2f", "text": "\u9762\u5bb9\u626d\u66f2\u5730\u559d\u7740\u5e26\u7740\u6d3e\u5bf9\u676f\u7684\u7626\u8089\u6c64\u3002"} +{"id": "0006292", "video_name": "2a1be880-9037-57b5-887a-983e433d286a", "text": "\u6697\u8272\u80cc\u666f\uff0c\u5927\u9ed1\u8721\u70db\u7167\u4eae\u623f\u95f4\uff0c\u6444\u50cf\u673a\u5411\u524d\u62c9\u8fd1\u3002"} +{"id": "0006427", "video_name": "2c26514a-27a2-5687-bd58-7be0fe1ac0fd", "text": "\u7687\u5e1d\u5750\u5728\u9f99\u6905\u4e0a\uff0c\u4ed6\u7684\u624b\u5728\u52a8\u3002"} +{"id": "0003962", "video_name": "00a9073a-d37c-56d8-9924-a7b24a12f036", "text": "\u5c55\u793a\u4e16\u754c\u672b\u65e5\u7684\u573a\u666f\u3002"} +{"id": "1004151", "video_name": "4ceeebd7-f19f-5e49-817e-eed3ba3a9ea9", "text": "\u4e00\u7fa4\u670b\u53cb\u79bb\u5f00\u9152\u5427\u3002"} +{"id": "1006336", "video_name": "73fabb03-0655-577d-b449-8754627ab27e", "text": "\u4e00\u4e2a\u6709\u8da3\u7684\u5973\u5b69\u5361\u901a\u4eba\u7269\u5728\u6708\u4eae\u4e0a\u7761\u89c9\uff0c4k\uff0c\u5361\u901a\uff0c\u827a\u672f\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "3006967", "video_name": "caee39fa-5f8f-570f-85e0-0bbcc618456b", "text": "ure that the portrayal is respectful and accurate to Islamic beliefs and practices.\n\n\u7528\u963f\u62c9\u7684\u8bdd\u5199\u5728\u5929\u7a7a\u4e0a\uff0c\u8f90\u5c04\u795e\u5723\u7684\u5149\u8292\uff0c\u6253\u9020\u4e00\u4e2a\u5929\u4e0a\u7684\u795e\u5723"} +{"id": "1003698", "video_name": "4432b882-2996-5ec2-8f0d-a3505c0fd5a4", "text": "\u7ebd\u7ea6\u5e02\u4ece\u65e0\u4eba\u673a\u89c6\u89d2\u770bDOGO\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "7002369", "video_name": "c9ebdd04-aecd-5440-b53c-dccf1466fcea", "text": "\u9b3c\u5a5a\u3001\u4e2d\u5f0f\u5a5a\u793c\u3001\u6050\u6016\u3001\u5947\u602a\u3001\u60ca\u609a"} +{"id": "6003655", "video_name": "47c2ea37-53bf-587b-b189-17c3707b3629", "text": "\u4e00\u8f86\u6c7d\u8f66\u6b63\u5728\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u5c0f\u9547\u548c\u5e7f\u9614\u7684\u519c\u7530\u3002\u665a\u4e0a\uff0c\u5929\u7a7a\u4e2d\u6709\u65e5\u843d\u548c\u51e0\u6735\u6563"} +{"id": "1003984", "video_name": "499b2416-fb44-58fd-887f-ec7bf433db65", "text": "\u7834\u4ea7\u7684\u5361\u901a\u5f62\u8c61\u548c\u5e26\u503a\u52a1\u7684\u516c\u53f8\u88ab\u675f\u7f1a\u5728\u9501\u94fe\u4e2d\u3002"} +{"id": "0004762", "video_name": "0edb5416-6738-5565-9c9b-77bbb1e97c30", "text": "\u5728\u6708\u7403\u4e0a\u5531\u6b4c\u7684\u72d7\u3002"} +{"id": "8003684", "video_name": "3423527c-038d-520f-917f-4d684fb594a8", "text": "\u5de5\u4f5c\u5ba4\u5409\u535c\u529b\u98ce\u683c\uff0c\u52a8\u753b\u7537\u5b69\uff0c\u732b\uff0c\u82b1\u3002"} +{"id": "2004674", "video_name": "beba1592-bd46-559d-9b48-d93175cb813f", "text": "\u9a6c\u5339\u7a81\u7136\u540e\u817f\u7ad9\u7acb\u8d77\u6765\u7684\u9a91\u5175"} +{"id": "2006491", "video_name": "c04c2000-1eac-5270-a42a-e15884d2d83f", "text": "\u666f\u6df1\u93e1\u982d\u4f86\u81ea\u7531\u85a9\u514b\u00b7\u65af\u5948\u5fb7\u6307\u5c0e\u7684\u96fb\u5f71\uff0c\u7121\u4eba\u6a5f\u4fef\u8996\u4e00\u540d\u6301\u528d\u5973\u58eb\u5728"} +{"id": "7002551", "video_name": "64ccc455-5374-5017-99ac-6d9b8bf5ad46", "text": "\u5973\u4eba\u62b1\u7740\u4e00\u4e2a\u73bb\u7483\u7f50\u5b50\u9760\u8fd1\u80f8\u53e3\u3002"} +{"id": "0006291", "video_name": "2a14cc3f-1d18-58b9-8336-c236719bfb96", "text": "\u732b\u6253\u6270\u4e86\u4e24\u53ea\u5154\u5b50\u3002"} +{"id": "6003110", "video_name": "897ffd36-8f0e-5976-a112-b762fb91f037", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u8857\u9053\uff0c\u697c\u4e0b\u6709\u8bb8\u591a\u6807\u5fd7\uff0c\u4eba\u4eec\u5728\u96ea\u5730\u4e0a\u8d70\u6765\u8d70\u53bb\u3002"} +{"id": "7004416", "video_name": "94663361-d2ff-5e4e-aff2-54bc694ceb64", "text": "\u987a\u7545\u7684\u98ce\uff0c\u6811\u53f6\u548c\u6811\u679d\u4ee5\u53ca\u8305\u8349\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u5fae\u7b11\u7740\uff0c\u8d85\u9ad8\u6e05\u30014K\u30013D\u52a8\u753b\uff0c"} +{"id": "4004756", "video_name": "046a6250-5fdf-5c8e-930a-cc0c1e9aba14", "text": "\u793e\u4ea4\u5a92\u4f53\u5f71\u54cd\u8005\u5728\u5bfa\u5e99\u524d\u81ea\u62cd\u3002"} +{"id": "2005506", "video_name": "a8e4ee28-287e-5a84-a30e-89935c151c4a", "text": "\u5b69\u5b50\u4eec\u62c9\u7740\u5927\u800c\u8272\u5f69\u6591\u6593\u7684\u8718\u86db\uff0c3D\u3002"} +{"id": "0006109", "video_name": "26bd8a08-402e-59d0-9294-da59047d225f", "text": "\u5973\u5b69\u5411\u524d\u8fc8\u51fa\u5de6\u811a\uff0c\u800c\u53e6\u4e00\u53ea\u811a\u5219\u4fdd\u6301\u539f\u5730\u4e0d\u52a8\u3002"} +{"id": "1003100", "video_name": "3911db90-9a0b-5df9-9c94-823a3561ff4a", "text": "\u5a5a\u793c\u4e0a\u65b0\u5a18\u86cb\u7cd5\u8dcc\u843d\u7684\u7535\u5f71\u822c\u753b\u9762\uff0c8K\u8d85\u903c\u771f\u3002"} +{"id": "6002316", "video_name": "7aa4756f-ac07-581a-8467-c8b4894b9e09", "text": "\u7a7f\u8457\u7d05\u8272\u838e\u9e97\u7684\u5370\u5ea6\u5973\u5b50\u7ad9\u5728\u4e00\u5ea7\u83ef\u9e97\u7684\u5bfa\u5edf\u5916\uff0c\u5fae\u98a8\u5439\u904e\u3002"} +{"id": "2004103", "video_name": "c8246580-cc5a-52b2-b148-aaf7359b344f", "text": "\u4e2d\u56fd\u6c34\u58a8\u753b\u52a8\u753b\u7247\u6bb5\uff0c\u4e00\u5339\u9a6c\u5728\u6ce2\u6d6a\u4e2d\u5954\u8dd1\u3002"} +{"id": "1005814", "video_name": "6adffe01-0c9b-5fc6-a3c2-9f1ae03aee38", "text": "\u8db3\u6d74\uff0c\u571f\u8033\u5176\u98ce\u683c\u7684\u7f8e\u4e3d\u8db3\u6d74\u4e2d\u5fc3\uff0c\u811a\u6d78\u5728\u6c34\u4e2d\u3002"} +{"id": "6002701", "video_name": "e4d492b6-d330-5581-a79d-9f2b8fcf46ff", "text": "8\u4e2a\u5b69\u5b50\u7a7f\u7740\u8212\u9002\u7684\u7761\u8863\u4e00\u8d77\u51b2\u51fa\u623f\u95f4\uff0c\u671d\u5ba2\u5385\u8d70\u53bb\u3002"} +{"id": "3004371", "video_name": "e8591678-bca3-57b7-b08a-fe7e67ccb3e0", "text": "\u4e16\u754c\u4e0a\u6700\u5feb\u4e50\u7684\u4eba"} +{"id": "8003440", "video_name": "1a2153b4-0c6e-5f37-85df-2135eda4da95", "text": "\u4e24\u53ea\u8001\u9f20\u6b63\u5728\u5403\u8349\uff0c\u4e00\u53ea\u732b\u5728\u65c1\u89c2\u3002"} +{"id": "1006245", "video_name": "7261d4cd-860d-5b88-b922-5e2129cf8aa6", "text": "\u7f57\u5bbe\u6c49\u548c\u739b\u4e3d\u5b89\u5750\u5728\u68ee\u6797\u91cc\u7684\u4e00\u6839\u6728\u5934\u4e0a\u3002"} +{"id": "2004926", "video_name": "fb2ac072-f7e5-5a8a-8bda-3d6a5829375d", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u6d63\u718a\u5411\u5de6\u5954\u8dd1\u3002"} +{"id": "1005436", "video_name": "63e7bcf2-2558-5661-8a5a-a6f0f914cd13", "text": "\u4e00\u4e2a\u5934\u6234\u9c7c\u7f38\u7684\u7537\u4eba\u5728\u7e41\u5fd9\u7684\u4e1c\u4eac\u6e38\u620f\u5385\u91cc\u73a9\u6e38\u620f\u3002\u573a\u666f\u672a\u6765\u611f\u5341\u8db3\uff0c\u6709\u9713\u8679\u706f\u3002"} +{"id": "3005687", "video_name": "862944da-a6d3-5379-b05c-d03a6285a14f", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u4e9a\u6d32\u5c11\u5973\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "7004973", "video_name": "c98eca26-9cdf-5a41-b6bd-c5de44dc9060", "text": "\u4e00\u4e2a\u5bb6\u5ead\u5728\u516c\u56ed\u91cc\u5954\u8dd1\u3002"} +{"id": "0004438", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "\u5438\u5f15\u4eba\u7684\u5973\u670d\u52a1\u5458\u572850\u5e74\u4ee3\u9910\u5385\u4e0d\u505c\u5730\u5012\u7740\u5496\u5561\u3002"} +{"id": "6003310", "video_name": "6d98d0e4-9691-5507-975a-c19c045b2f3b", "text": "\u5965\u5229\u5f17\u548c\u798f\u514b\u65af\u592b\u4eba\u4e00\u8d77\u79cd\u690d\u3002"} +{"id": "8001860", "video_name": "c4699652-ec67-533b-a28b-64c4fd91bbd7", "text": "\u4e00\u53ea\u8fb9\u5883\u7267\u7f8a\u72ac\u5411\u673a\u5668\u7f8a\u5954\u8dd1\u3002"} +{"id": "8003209", "video_name": "612dfede-0e9c-571b-ba8d-5e8facc4d18d", "text": "\u80cc\u9762\u89c6\u89d2\uff0c\u7535\u5f71\u611f\uff0c\u903c\u771f\uff0c\u5e74\u8f7b\u9ed1\u4eba\u7236\u4eb2\u548c\u513f\u5b50\u5728\u6c60\u5858\u9493\u9c7c\u3002"} +{"id": "3003806", "video_name": "688eabab-0490-52f9-9d7f-5a1491f71115", "text": "\u901a\u8fc7\u7c92\u5b50\u52a8\u6001\u56fe\u5f62\u7684\u98ce\u683c\uff0c\u5c55\u793a\u4e00\u4e2a\u9ad8\u54c1\u8d28\u672a\u6765\u57ce\u5e02\u7684\u9a7e\u8f66\u573a\u666f\uff0c\u5176\u4e2d\u6709\u98de\u884c\u6c7d\u8f66\u3001\u65e0\u5904\u4e0d\u5728\u7684\u592a\u9633\u80fd\u548c"} +{"id": "3005205", "video_name": "2d6bdb7d-38f0-5e98-a450-be06e7155d87", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\uff0c\u4e00\u5bf9\u60c5\u4fa3\uff0c\u7a7f\u7740\u767d\u8272\u8863\u670d\uff0c\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u3002\u6d6a\u6f2b\u7684\u753b\u9762\uff0c\u95ea\u70c1\u7684\u661f"} +{"id": "1005072", "video_name": "5d9461ca-615a-52cf-b787-522fc19b2a1c", "text": "\u5728\u4e00\u4e2a\u975e\u5e38\u8212\u9002\u7684\u73af\u5883\u4e2d\u72ec\u81ea\u5de5\u4f5c"} +{"id": "8002896", "video_name": "8ad648eb-3e98-587d-9e6c-e66cd802bff0", "text": "\u6ce2\u97f3777-300ER\u5728\u65e5\u843d\u65f6\u5de1\u822a\u5728\u5927\u897f\u6d0b\u4e0a\u65b9\u3002"} +{"id": "2003693", "video_name": "34f1f53b-b5aa-5b46-b057-037843a28765", "text": "\u76f8\u673a\u9500\u4ece\u5de6\u5230\u53f3\u63d2\u5165\u3002"} +{"id": "0005332", "video_name": "18f110d8-03d9-5d57-8027-39c9f7997b42", "text": "\u4e00\u4efd\u5728\u7a7a\u4e2d\u79fb\u52a8\u7684\u6c49\u5821\uff0c\u52a8\u753b\uff0c16:9"} +{"id": "1005739", "video_name": "699dc074-a199-5ca6-8536-0ed915d49396", "text": "\u4ece\u5916\u592a\u7a7a\u6765\u7684\u4e00\u9897\u7eff\u8272\u7684\u7956\u6bcd\u7eff\u6b63\u5728\u81ea\u8f6c\u3002"} +{"id": "3006243", "video_name": "649ed1b3-ccad-59e7-b6b2-00e72058c8c0", "text": "\u4e00\u4e2a\u7537\u4eba\u7528\u51b0\u51b7\u7684\u624b\u6293\u4f4f\u6e29\u5ea6\u8ba1\uff0c\u5feb\u901f\u800c\u6709\u6d3b\u529b\u5730\u62ff\u7740\uff0c\u753b\u9762\u9010\u6e10\u62c9\u8fdc\u3002"} +{"id": "8003924", "video_name": "81f5b7d7-addd-5b9b-a38c-a197505aa5e1", "text": "\u7528\u5f69\u8679\u8272\u7f8a\u6bdb\u88fd\u4f5c\u7684\u7f8a\uff0c\u7167\u7247\u903c\u771f\uff0c\u4f7f\u752835\u6beb\u7c73\u93e1\u982d\uff0c\u6709\u96fb\u5f71\u8cea\u611f\u3002"} +{"id": "6002868", "video_name": "f8ba03e4-7fa3-59b1-bf0b-ae982fb34ff1", "text": "\u4e00\u4e2a\u88ab\u5c71\u5305\u56f4\u7684\u5145\u6ee1\u7eff\u8272\u7684\u6751\u5e84\u3002 \n\nSource sentence: The teacher asked the student a question, but the student didn't know the answer. \n\n\u8001\u5e08\u95ee\u4e86\u5b66\u751f"} +{"id": "4003872", "video_name": "20f005b2-d1a9-5ca3-a414-4995f55a294a", "text": "\u4ece\u53e4\u81f3\u4eca\uff0c\u591a\u4e2a\u6807\u5fd7\u6027\u7167\u7247\u4ee5\u5386\u53f2\u65f6\u95f4\u987a\u5e8f\u95ea\u73b0\u3002 \n\nSource sentence: The Great Wall is a magnificent architectural wonder that stretches for thousands of miles. \n\n\u957f\u57ce\u662f\u4e00"} +{"id": "7003858", "video_name": "d154c842-e2c6-5ae1-992d-2ca1bd45bec4", "text": "\u68ee\u6797\u4e2d\u7684\u6811\u6728\u4fb5\u72af\u4e86\u5f92\u6b65\u8005\u3002"} +{"id": "2006982", "video_name": "7018cbac-de4c-5ced-ae1f-acfdb737af01", "text": "\u4e00\u4e2a\u65e0\u653f\u5e9c\u4e3b\u4e49\u56e2\u4f53\u5728\u80cc\u666f\u4e2d\u89c2\u770b\u94f6\u884c\u7206\u70b8\u3002"} +{"id": "2005715", "video_name": "60d81bce-9567-5092-a14b-c2009833144a", "text": "\u5236\u9020\u4e00\u5e45\u573a\u666f\uff0c\u5176\u4e2d\u9cb8\u9c7c\u5728\u5929\u7a7a\u4e2d\u8dc3\u51fa\uff0c\u8dc3\u51fa\u540e\u51fa\u73b0\u4e00\u9053\u5f69\u8679\u3002"} +{"id": "2006658", "video_name": "10509696-4a4c-570a-a289-aa0839082e05", "text": "\u4e00\u540d\u5e26\u7740\u91d1\u5c5e\u63a2\u6d4b\u5668\u7684\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u8d70\u52a8\uff0c\u80cc\u666f\u662f\u6d77\u4e0a\u843d\u65e5\uff0c\u4f7f\u7528300\u6beb\u7c73\u76f8\u673a\u3002"} +{"id": "7004754", "video_name": "48eff76e-7b8d-56ed-b7f1-66e7dd1ae830", "text": "\u503e\u659c\u89d2\u5ea6\u5c06\u5564\u9152\u5012\u5165\u73bb\u7483\u676f\u4e2d\u3002"} +{"id": "4002420", "video_name": "4333fc77-73bc-528d-bd1c-0dad8929b61d", "text": "\u7a46\u65af\u5854\u6cd5\u00b7\u8428\u62c9\u62c9\u62c9\u80e1\u00b7\u5854\u65af\u83b1\u59c6\u548c\u54c8\u91cc\u4ec0\u00b7\u7279\u91cc\u97e6\u8fea\uff0c\u4ed6\u4eec\u901a\u8fc7\u628a\u4eba\u7c7b\u7684\u8d2a"} +{"id": "4004604", "video_name": "5ee182a7-55fe-594d-8ced-78cf51ed5f3d", "text": "\u5e78\u8fd0\u7684\u662f\uff0c\u82f1\u56fd\u7687\u5bb6\u6d77\u519b\u7684\u8425\u6551\u961f\u6700\u7ec8\u627e\u5230\u5e76\u6551\u51fa\u4e86\u4ed6\u4eec\u3002"} +{"id": "8001209", "video_name": "7a755e0b-34ec-5c2f-8992-b378329f42c8", "text": "\u85e4\u8513\u4ee5\u8d85\u5feb\u7684\u901f\u5ea6\u5728\u57ce\u5e02\u4e0a\u751f\u957f\u3002"} +{"id": "3005156", "video_name": "4e85ac5f-d194-51ba-9d41-a2babde76ddd", "text": "\u89d2\u8272\u5f20\u5f00\u5634\u5df4\u8bf4\u8bdd\uff0c\u6807\u5fd7\u6b22\u8fce\u6bcf\u4e2a\u4eba\u3002"} +{"id": "1006948", "video_name": "7f28d1b6-7aea-5bf7-99da-e7efbaa78f23", "text": "\u72d7\u7fc1\u5b97\u6559\u8868\u6f14\u897f\u5409\u7684\u52a8\u753b\u7535\u5f71"} +{"id": "8002147", "video_name": "c0d783ba-84f6-5cc8-a003-17fb9d865083", "text": "\u52a8\u6f2b\u4e2d\u4e00\u4e2a\u540d\u53ebShreya\u7684\u5973\u5b69\u5728\u5e8a\u4e0a\u54ed\u6ce3\u3002"} +{"id": "7002147", "video_name": "78458405-fb54-5eea-9636-c2397c804806", "text": "\u5728\u4e00\u90e8\u65e5\u672c\u6f2b\u753b\u4e2d\uff0c\u4e00\u4e2a\u5b66\u751f\u5728\u7535\u8111\u4e0a\u67e5\u627e\u4fe1\u606f\u3002"} +{"id": "4004557", "video_name": "99a1e4f8-197f-57ec-86fc-8c82fcda54c1", "text": "\u62c9\u5409\u5c3c\u5766\u7ad9\u5728\u4e00\u53ea\u9e70\u4e0a\uff0c\u9e70\u5728\u98de\u7fd4\uff0c\u8d85\u903c\u771f\uff0c4K\uff0cHDR\u3002"} +{"id": "3005100", "video_name": "4275bdc2-4f63-5449-aaaa-2d129aac3378", "text": "\u4e00\u4e2a\u7e41\u534e\u7684\u591c\u5e02\u4f4d\u4e8e\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\uff0c\u88ab\u9713\u8679\u706f\u7167\u4eae\uff0c\u5145\u6ee1\u5f02\u57df\u98ce\u60c5\u6c14\u606f\u3002\u79bb\u5f00\u68ee"} +{"id": "7004877", "video_name": "4fcd038e-aaed-5be4-9469-aa92dfb88a50", "text": "\u5fb7\u7ea6\u79d1\u7ef4\u5947\u5174\u9ad8\u91c7\u70c8\u5730\u7b11\u7740\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006660", "video_name": "7a04d303-8d7f-5384-9dcc-f0bea3394a41", "text": "\u79cb\u8272\u68ee\u6797\u4e2d\uff0c\u7a7f\u7740\u7ea2\u8272\u62ab\u98ce\u7684\u5973\u5b69\u8d70\u8fc7\u6ce5\u6cde\u5c0f\u5f84\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun.\n"} +{"id": "2007251", "video_name": "5fe0d328-3971-5cb9-a864-70f26507843f", "text": "\u83ab\u65af\u79d1\u7ea2\u573a\u4e0a\u7684\u673a\u5668\u4eba\u3002"} +{"id": "2005073", "video_name": "52bf2934-31df-5775-bc00-2f7a94f66b8c", "text": "\u4e24\u53ea\u72ee\u5b50\u5728\u5c71\u9876\u4e0a\u6253\u67b6\u3002\u4e00\u53ea\u72ee\u5b50\u628a\u53e6\u4e00\u53ea\u72ee\u5b50\u4ece\u5c71\u4e0a\u63a8\u4e0b\uff0c\u88ab\u63a8\u4e0b\u7684\u72ee\u5b50\u6b7b\u4e86\u3002"} +{"id": "2007968", "video_name": "a4d4dedd-2a78-55da-be89-c2f3f3857513", "text": ", she becomes pregnant and gives birth to a boy, who is named Rama.\n\n\u6bcd\u4eb2\u963f\u8fea\u8482\u5f00\u59cb\u5d07\u62dc\uff0c\u5e0c\u671b\u62e5\u6709\u4e00\u4e2a\u513f\u5b50\u3002\u5728\u8fd9"} +{"id": "6002858", "video_name": "106dfc49-eb16-593a-bc07-11878731308c", "text": "\u5728\u4e4c\u514b\u5170\u5df4\u8d6b\u7a46\u7279\u7684\u514b\u96f7\u9a6c\u6258\u5c14\u65af\u514b\uff0c\u900f\u8fc7\u7834\u7a97\u6237\u5728\u591c\u665a\u671b\u5411\u65e0\u4eba\u533a\u7684"} +{"id": "4002010", "video_name": "650964c6-b389-5002-bb2a-6dbbda7fbb76", "text": "\u4e00\u90e8\u6050\u6016\u7535\u5f71\u6b63\u5728\u5899\u4e0a\u653e\u6620\u3002"} +{"id": "6003101", "video_name": "126ee6ff-34af-5802-a1fe-98f3bade7788", "text": "\u4e00\u4e2a\u6d1e\u7a74\u5728\u9ed1\u6697\u7684\u5730\u4e0b\u7684\u753b\u9762"} +{"id": "8001231", "video_name": "d8e47e54-9e38-5cb7-bd39-ea7f7fd040be", "text": "\u83b7\u5956\u7684\u4e2d\u666f\u62cd\u6444\uff0c\u62cd\u6444\u5bf9\u8c61\u4e3a\u8ba1\u65f6\u949f\uff0c\u91c7\u7528ARRI ALEXA\u7cfb\u5217\u6444\u50cf\u673a\uff0c\u7535\u5f71\u611f\u5f3a\u70c8\uff0c\u8d85\u771f\u5b9e\uff0c"} +{"id": "2003690", "video_name": "b55fda45-c274-59fd-aa08-6ce0e5c413fe", "text": "\u521b\u4f5c\u4e00\u53ea\u7334\u5b50\u4ece\u96ea\u5c71\u8df3\u8dc3\uff0c\u60ac\u6302\u5728\u4ece\u5929\u7a7a\u5782\u4e0b\u7684\u85e4\u8513\u4e0a\u3002"} +{"id": "4003213", "video_name": "c1d2e9f1-26d8-5a3d-af3f-939ad71129cf", "text": "\u4e00\u53ea\u5c0f\u6591\u70b9\u732b\u7a7f\u774017\u4e16\u7eaa\u9a91\u5175\u5236\u670d\uff0c\u9a91\u7740\u4e00\u53ea\u6bdb\u8338\u8338\u7684\u7070\u8272\u864e\u6591\u732b"} +{"id": "2004830", "video_name": "204bc28e-4385-5ff2-87c0-3e7aabb47b66", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u95ed\u7740\u773c\u7761\u5728\u5730\u4e0a\uff0c\u7528\u9ed1\u767d\u8c03\u8272\u677f\u8868\u73b0\u3002"} +{"id": "2005753", "video_name": "246e45b1-beda-5bde-9e8e-312d8d490793", "text": "\u51b0\u96ea\u5947\u7f18\u827e\u5c14\u838e\uff0c\u8fea\u58eb\u5c3c\u7535\u5f71\u6d77\u62a5\u8bbe\u8ba1\uff0c\u6234\u7740\u7687\u51a0\u4e0b\u96ea\uff0c\u53d7\u8fea\u58eb\u5c3c\u542f\u53d1\uff0c"} +{"id": "2004249", "video_name": "b0202780-edd7-5176-9be3-22803ff64e65", "text": "\u8428\u6ee1\u6b63\u5728\u51c6\u5907\u4e00\u79cd\u836f\u6c34\u6765\u589e\u5f3a\u89c6\u529b\u3002\u4ed6\u4eec\u53ef\u80fd\u4f1a\u5bb3\u6015\uff0c\u56e0\u4e3a\u5b83\u975e\u5e38\u5f3a\u5927\u3002\u5982\u679c\u5fc5\u8981\uff0c\u6211\u4eec\u7684\u90e8\u843d\u4f1a\u4fdd"} +{"id": "2003935", "video_name": "3659b64d-25c5-5c09-ae22-100cba7fd412", "text": "\u7537\u4eba\u5750\u5728\u7530\u91ce\u91cc\uff0c\u4e00\u5929\u5f88\u96be\u8fc7\uff0c\u53cc\u624b\u6258\u7740\u5934\uff0c\u7a7f\u7740\u897f\u88c5\uff0c\u4ece\u4e0a\u65b9\u62cd\u6444\u8d85\u5e7f\u89d2\uff0c\u5730\u5e73\u7ebf\u4e0a"} +{"id": "6003490", "video_name": "de98b303-4637-52b2-a229-dab04806f65a", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u671d\u7740\u6559\u80b2\u5927\u697c\u8d70\u53bb\uff0c\u5efa\u7b51\u7269\u5728\u524d\u65b9\u53ef\u89c1\uff0c\u9053\u8def\u4e24\u65c1\u751f\u957f\u7740\u6811\u6728\uff0c\u5929\u6c14\u6674"} +{"id": "0006367", "video_name": "2b46c5e7-72a9-5067-bb79-dc326329bcd5", "text": "\u4f5b\u7f57\u91cc\u8fbe\u906d\u53d7\u5c0f\u884c\u661f\u649e\u51fb\uff0c\u9ad8\u5ea6\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "2006495", "video_name": "16b4e503-457b-59d7-b59d-d234aa20be9f", "text": "\u89c2\u770b\u7167\u7247\u4e2d\u7684\u672a\u6765\u4eba\u7269\u751f\u52a8\u5730\u5c55\u73b0\u5728\u4f60\u9762\u524d\uff0c\u4f18\u96c5\u5730\u70b9\u71c3\u9999\u70df\uff0c\u5e26\u6709\u7535\u5f71\u822c\u7684\u98ce\u683c\u3002"} +{"id": "2006735", "video_name": "a2c1af50-bfe6-55cb-8f96-bb8e0dea5479", "text": "\u7a7f\u7740\u7f57\u9a6c\u65f6\u671f\u7684\u7f57\u9a6c\u5934\u76d4\u767e\u4eba\u961f\u957f\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005620", "video_name": "674f088a-0085-51c3-a796-1cf9b0090c1c", "text": "\u4e24\u4e2a\u6c34\u624b\u670d\u6218\u58eb\u52a8\u6f2b\u4eba\u7269\uff0c\u6446\u51fa\u5fae\u7b11\u59ff\u52bf\u3002"} +{"id": "0003690", "video_name": "41bad58f-50db-5e81-8c50-44072c8125da", "text": "\u4e00\u6b21\u6d6a\u6f2b\u7684\u6d77\u6ee9\u65e5\u843d\u6563\u6b65\uff0c\u6b4c\u8bcd\u53cd\u6620\u4e86\u4e24\u4e2a\u4eba\u4e4b\u95f4\u7684\u5f3a\u70c8\u8054\u7cfb\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u53cd\u5c04\u5149\uff0c"} +{"id": "1003725", "video_name": "44d2c854-7595-5fe7-a488-8d172c451256", "text": "\u4e00\u6bb5\u5c55\u793a\u6574\u4e2a\u5b87\u5b99\u89c4\u6a21\u7684\u89c6\u9891\u3002\u4e00\u5f00\u59cb\u4ece\u5355\u4e2a\u539f\u5b50\u5f00\u59cb\uff0c\u7136\u540e\u7f13\u6162\u5730\u653e\u5927\u5230\u7ec6\u80de\uff0c\u7136\u540e\u7f13\u6162\u5730\u653e\u5927"} +{"id": "2004213", "video_name": "589c48f4-e0e8-5684-9082-cebf6f9c1db5", "text": "\u4e00\u5f20\u5973\u5b69\u5728\u81ea\u5df1\u623f\u95f4\u5b66\u4e60\u7684\u7167\u7247\uff0c\u7a97\u6237\u80cc\u666f\u4e0b\u53ef\u4ee5\u770b\u5230\u6b63\u5728\u4e0b\u96ea\uff0c\u684c\u5b50\u4e0a\u653e\u7740\u4e00\u676f\u5496\u5561"} +{"id": "5001928", "video_name": "3a3b5046-2767-5fa3-8c75-3cff7d3ad45e", "text": "\u5728\u610f\u5927\u5229\u7684\u4e00\u8f86\u98df\u54c1\u8f66\u4e0a\u63d0\u4f9b\u5854\u53ef\u997c\u3002"} +{"id": "7002509", "video_name": "4e5d2205-db81-5ce4-9525-1cb0e5ff9ba7", "text": "\u5728\u4e1b\u6797\u4e2d\u6709\u4e00\u53ea\u677e\u9f20\u548c\u4e00\u4e9b\u5154\u5b50\u3002"} +{"id": "6002388", "video_name": "84a6a3d4-d2ab-537d-a05d-884a9bc7beb9", "text": "100\u9897\u5f39\u73e0\u6eda\u52a8\u5728\u8349\u5730\u4e0a\uff0c\u901f\u5ea6\u5feb\uff0c\u5145\u6ee1\u80fd\u91cf\uff0c\u52a8\u80fd\u5145\u6c9b\uff0c\u8fd0\u52a8\u7ec6\u8282\u4e30\u5bcc\uff0c\u903c\u771f\u3002"} +{"id": "2007576", "video_name": "2fbe6902-becf-57f7-b501-0d287cb84540", "text": "\u978b\u5806 \u9644\u4ef61"} +{"id": "0004234", "video_name": "058b06a7-6f59-5794-9bc1-343c9d51a804", "text": "\u8352\u6f20\u4e2d\u4e00\u4e2a\u5e9f\u5f03\u7684\u5c0f\u9547\u91cc\u7684\u725b\u4ed4"} +{"id": "8003429", "video_name": "a84854fb-a29a-55c7-9fd2-61f1ac5912a7", "text": "\u4e00\u4e2a\u5145\u6ee1\u706b\u7130\u548c\u70df\u96fe\u7684\u4e16\u754c\u3002"} +{"id": "8003433", "video_name": "cf4e4146-6dbe-58c4-b366-26c872aa4842", "text": "\u6500\u722c\u5411\u592a\u9633\u7684\u9886\u8896\u4e0b\u964d\u3002"} +{"id": "3005819", "video_name": "6884c3ee-cb5e-5254-98bf-2cada72b4b0e", "text": "\u80cc\u666f\u4e2d\u95ea\u70c1\u7740\u6fc0\u5149\uff0c\u98ce\u5439\u4e71\u4e86\u5934\u53d1\uff0c\u60c5\u4fa3\u8f6c\u8eab\u9762\u5bf9\u5bf9\u65b9\u3002"} +{"id": "2003922", "video_name": "a46dd462-4923-5699-834d-8f9215048744", "text": "\u6b22\u8fce\u6765\u5230\u68c9\u82b1\u7cd6\u4e50\u56ed\u4e3b\u9898\u516c\u56ed\uff0c\u89c2\u770b\u4ee3\u8a00\u4eba\u5e7f\u544a\u3002"} +{"id": "0003026", "video_name": "35c81627-9f2c-516a-a886-09f166db757b", "text": "\u661f\u7403\u5927\u6218\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e"} +{"id": "6004301", "video_name": "07187851-b42a-5af6-90df-064c5a823edc", "text": "\u6211\u9700\u8981\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u4eba\u7269\u5f62\u8c61\u7f29\u5c0f\uff0c\u6444\u50cf\u5934\u653e\u5927\u548c\u7f29\u5c0f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003982", "video_name": "198acd83-5984-5a9e-bc1a-fb85665b9ca9", "text": "\u5728\u5546\u5e97\u5185\u7684\u67dc\u53f0\u4e0a\u6446\u653e\u4e00\u4e2a\u89c6\u9891\u6e38\u620f\uff0c\u521b\u9020\u4e00\u4e2a\u89c6\u9891\u6e38\u620f\u7ef4\u4fee\u6280\u672f\u5458\u3002"} +{"id": "8002065", "video_name": "99350c6b-e50e-5d24-bde5-4e03c045894f", "text": "\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb\u5750\u7740\u8fc7\u5c71\u8f66\uff0c\u7a7f\u8fc7\u4e00\u4e2a\u73af\uff0c\u4e00\u4e2a\u5fae\u7b11\uff0c\u4e00\u4e2a\u5c16\u53eb\u3002"} +{"id": "2004619", "video_name": "b1f01d59-f255-545f-b60d-a620f2bf68a1", "text": "\u7075\u9b42\u7684\u9ed1\u6697\u4e4b\u591c\uff0c\u7f29\u5c0f\u89c6\u89d2\uff0c\u8fdc\u666f\u5c55\u73b0\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u6700\u9ad8\u8d28\u91cf\uff0c\u9010\u6e10\u6269\u5927\u89c6\u91ce\u3002"} +{"id": "6004929", "video_name": "0d556e01-7e62-54fa-a8ca-0d6dd16bb355", "text": "SKY\u96c6\u88c5\u7bb1\u9152\u5e97\u54c1\u724c\u662f\u4e3a\u6ed1\u96ea\u5ea6\u5047\u6751\u8bbe\u8ba1\u7684\u3002"} +{"id": "2007919", "video_name": "022d6d04-746d-5a63-bcfd-8dbdfc3215af", "text": "\u52a8\u6f2b\u7ebf\u6761\u5f69\u8272\u7ed8\u753b\uff0c\u52a8\u6f2b\u98ce\u683c\u7684\u6570\u5b57\u63d2\u56fe\uff0c\u67d4\u548c\u7684\u52a8\u6f2b\u8272\u8c03\uff0c\u9e21\u5750\u5728\u6811\u4e0a\uff0c\u7f8e\u4e3d\u7684\u9762"} +{"id": "7004216", "video_name": "b77528c1-68d8-5ff0-8fc6-9b3632237ef8", "text": "\u8bf7\u4ece\u8fd9\u5f20\u56fe\u7247\u4e2d\u5236\u4f5c\u66f4\u591a\u98ce\u683c\u76f8\u540c\u7684\u8bbe\u8ba1\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005025", "video_name": "1363303e-d0b2-5aca-aba8-19647ec95f91", "text": "\u65b0\u5a18\u5728\u4e00\u5ea7\u5927\u6559\u5802\u91cc\u6cbf\u7740\u8fc7\u9053\u5411\u7740\u5979\u5373\u5c06\u6210\u4e3a\u4e08\u592b\u7684\u4eba\u8d70\u53bb\u3002 \n\nSource sentence: The sun sets behind the mountains,"} +{"id": "0003880", "video_name": "45101587-5eba-553f-84cc-f3fbb99ad43c", "text": "\u6e05\u6668\u4e00\u4e2a\u4eba\u900f\u8fc7\u7a97\u6237\u671b\u5916\u7684\u573a\u666f\uff0c\u8c61\u5f81\u7740\u514b\u670d\u6311\u6218\u4e4b\u540e\u51fa\u73b0\u7684\u673a\u4f1a\u3002"} +{"id": "3006620", "video_name": "d9abbddb-7f6e-52c4-b958-1a9e98c2fdb3", "text": "\u4e00\u4e2a\u5973\u4eba\u72ec\u81ea\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u5e26\u7740\u5fe7\u90c1\u7684\u8868\u60c5\uff0c\u4ee3\u8868\u7740\u4e0d\u88ab\u56de\u5e94\u7684\u7231\u60c5\u611f\u53d7\uff0c"} +{"id": "0005486", "video_name": "1bac7314-edd7-5c0f-aa69-a6fb8af6da21", "text": "\u4e00\u7fa4\u9752\u5c11\u5e74\u4e0d\u5c0f\u5fc3\u8fdb\u5165\u4e86\u8fd9\u6240\u8001\u623f\u5b50\u795e\u79d8\u7684\u533a\u57df\u3002"} +{"id": "6003107", "video_name": "419790ed-df61-5482-b6c8-d59a26d3781b", "text": "\u4eba\u4eec\u8df3\u821e\u559d\u5564\u9152\uff0c\u5728\u6155\u5c3c\u9ed1\u5564\u9152\u82b1\u56ed\u6d3e\u5bf9\u4e0a\uff0c\u5982\u540c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3005858", "video_name": "00b4f7d9-5525-5609-b8cc-6ba1f545e349", "text": "\u75af\u72c2\u7684\u9ea6\u514b\u65af\u6c7d\u8f66\u5728\u6b27\u6d32\u56fd\u5bb6\u3002"} +{"id": "3005056", "video_name": "c65915c2-65e3-5d81-8cf1-ec065235199e", "text": "\u5c55\u793a\u4e00\u4e2a\u7b80\u77ed\u7684\u573a\u666f\uff0c\u7c73\u5947\u8001\u9f20\u7528\u751f\u65e5\u86cb\u7cd5\u7ed9\u9ad8\u98de\u4e00\u4e2a\u60ca\u559c\u3002"} +{"id": "1003701", "video_name": "444b08cf-1bdb-5fe1-8996-33213abb6c7b", "text": "\u52a8\u6f2b\u5973\u5b69\u62ff\u7740\u4e00\u628a\u5251\u770b\u5411\u6444\u50cf\u5934\uff0c\u8eab\u540e\u6709\u4e00\u53ea\u9f99\u3002"} +{"id": "2006075", "video_name": "3abfb4ae-84e0-598d-9951-bfac8f8b5383", "text": "\u4e00\u9897\u660e\u4eae\u3001\u591a\u5f69\u7684\u661f\u7cfb\uff0c\u5e26\u6709\u6e10\u53d8\u7684\u95ea\u4eae\u5149\u8292\uff0c\u80fd\u591f\u7f29\u653e\u5230\u5929\u7a7a\u4e2d\u7684\u7ec6\u8282\u706b\u82b1\u3002"} +{"id": "0006782", "video_name": "330fd0d7-e43b-5d79-a7e9-e3c76cdb9960", "text": "\u7537\u5b50\u7a7f\u7740\u88c5\u5907\u6454\u5728\u96ea\u5730\u4e0a\u3002"} +{"id": "7002930", "video_name": "1fc7372a-e8c8-5f4c-943d-efca4b344c28", "text": "\u89c6\u9891\u6e38\u620f\u89d2\u8272\u88ab\u98ce\u683c\u5316\u4e3a\u4f4e\u591a\u8fb9\u5f62\u7684\u80e1\u5b50\u9677\u9631\u8005\uff0c\u6b63\u5728\u5f00\u706b\u3002"} +{"id": "1005454", "video_name": "643a2823-b4b7-5a8f-9a5e-aa1771d9521c", "text": "\u4e00\u5ea7\u5c71\u5cf0\u7684\u65e0\u4eba\u673a\u6355\u6349\u3002"} +{"id": "0003688", "video_name": "41b51b25-d3cc-5c03-a212-499ae590e666", "text": "\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u655e\u5f00\u7684\u886c\u886b\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u655e\u5f00\u7684\u886c\u886b\u5728\u98ce\u4e2d\u98d8\u8361\uff0c\u8eab\u6750"} +{"id": "7002263", "video_name": "df259e4b-44fe-5c8c-b7cf-bd3bd69abdc7", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u5370\u52a0\u4eba\uff0c\u62e5\u6709\u95ea\u7535\u80fd\u529b\u3002"} +{"id": "3004936", "video_name": "044a697c-dec2-5ae5-b982-4efd620bec49", "text": "\u753b\u7b14\u4ece\u6811\u679d\u4e0a\u751f\u957f\uff0c16:9"} +{"id": "8001969", "video_name": "fbd36d51-8190-5b3b-b777-80d48be26263", "text": "\u751f\u6210\u4e00\u4efd\u8be6\u7ec6\u7684\u89c6\u9891\u52a8\u753b\u63d0\u793a\uff0c\u63cf\u7ed8\u542f\u793a\u5f55\u7b2c\u56db\u7ae0\u548c\u7b2c\u4e94\u7ae0\u7684\u8ff7\u4eba\u573a\u666f\u3002\u8bbe\u60f3\u4e00\u4e2a\u5929\u5802\u738b\u5ea7\u5ba4\uff0c\u5305\u542b\u751f"} +{"id": "6003007", "video_name": "2953d761-581f-5469-bfa6-cd1fc055a510", "text": "\u4f60\u6240\u8bf4\u7684\u201c\u6700\u597d\u7684\u8d28\u91cf\u201d\u662f\u4ec0\u4e48\u610f\u601d\uff1f"} +{"id": "3005797", "video_name": "7438cb1c-a0f6-5be8-b581-cd3af01dab38", "text": "\u8fc8\u963f\u5bc6\u5c0f\u54c8\u74e6\u90a3\u4e2d\u7b49\u8ddd\u79bb\uff0c\u4eba\u4eec\u5306\u5306\u800c\u8fc7\uff0c\u4ee5\u65f6\u95f4\u63a8\u79fb\u7684\u65b9\u5f0f\u3002"} +{"id": "7004713", "video_name": "df4b85b0-fedf-52b2-b60e-ffa260b658c6", "text": "\u4ee5\u4ee4\u4eba\u60ca\u53f9\u7684 4K \u5206\u8fa8\u7387\u548c 24fps \u7684\u901f\u5ea6\uff0c\u9ed1\u5be1\u5987\u6f5c\u5165\u4e86\u4e00\u4e2a\u79d8\u5bc6\u7684\u4e5d\u5934\u86c7\u8bbe\u65bd\u3002"} +{"id": "0004513", "video_name": "0a4d0ce2-8b90-5409-98da-a98cc46c363e", "text": "\u5893\u5730\u91cc\u722c\u6ee1\u4e86\u85e4\u8513\uff0c\u81ea\u7136\u6bcd\u4eb2\u6234\u7740\u9762\u7eb1\u7ad9\u5728\u5341\u5b57\u67b6\u5893\u7891\u524d\u3002"} +{"id": "3006036", "video_name": "386a3d4e-063c-54d8-9f11-8fef2793cc70", "text": "\u4e00\u8f86\u8001\u65e7\u7684\u7ea2\u8272\u76ae\u5361\u8f66\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "1003215", "video_name": "3b355a72-3e7e-58b1-95d9-4842d171370a", "text": "\u4e24\u4e2a\u62a4\u58eb\u5728\u533b\u9662\u91cc\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "1006079", "video_name": "6f7c1b8f-de15-5f40-afc5-7a47464feaa8", "text": "\u4e00\u4e2a\u7a7f\u897f\u88c5\u7684\u7537\u4eba\u5728\u7530\u91ce\u91cc\u6d17\u624b\u3002"} +{"id": "1003088", "video_name": "38d7f551-3426-5dff-b49b-9d2743304a6b", "text": "\u5854\u5409\u62c9\u00b7\u6cfd\u91cc\u5a1c\u8ff7\u4f60\u77ed\u88e4\u7f8e\u4e3d\u7684\u82cf\u4ec0\u5c14\u773c\u4e2d\u6d41\u4e0b\u4e86\u6cea\u6c34\u3002"} +{"id": "1005338", "video_name": "620a9a4c-5d3a-5cfa-87b6-e57f9393948f", "text": "\u4e00\u56e2\u9709\u83cc\u4ece\u767d\u8272\u80cc\u666f\u4e0a\u8513\u5ef6\u5206\u652f\u3002"} +{"id": "8001678", "video_name": "4798aa0a-90d3-5997-be03-75b056db0975", "text": "DVD\u622a\u56fe\uff0c1980\u5e74\u4ee3\u7535\u5f71\uff0c\u660f\u6697\u7684\u706f\u5149\uff0c35\u6beb\u7c73\uff0c\u903c\u771f\u7684\uff0c\u4eba\u5f62\u5316\u7684\u84dd\u8272\u5154\u5b50\uff0c\u98ce\u683c\u5316\u7684fn"} +{"id": "5001570", "video_name": "fe8738b4-01de-5731-ac4b-236196b30da7", "text": "\u4e00\u4e2a\u7537\u4eba\u8dd1\u5411\u72ee\u5b50\u3002"} +{"id": "2005410", "video_name": "2e5da339-d540-53d0-9543-72e3bdbfae39", "text": "\u5929\u5802\u9e1f\u5728\u706b\u5c71\u4e0a\u7a7a\u98de\u7fd4\u3002"} +{"id": "4002059", "video_name": "c6f1a8c7-8d84-5e48-8d5d-f7daf98203e9", "text": "\u7237\u7237\u5728\u4e61\u95f4\u522b\u5885\u91cc\u548c\u5b59\u5973\u5750\u5728\u5730\u6bef\u4e0a\uff0c\u5411\u5979\u5c55\u793a\u4e00\u67b6\u65e7\u7684\u6a21\u62df\u76f8\u673a\u3002"} +{"id": "1006915", "video_name": "7e6f0ccb-8abb-549c-974f-c8bba1ca40ec", "text": "\u5916\u661f\u4eba\u7684\u7279\u5199\u955c\u5934\uff0c\u7f29\u653e\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\u84dd\u8272\u8272\u8c03"} +{"id": "1003249", "video_name": "3bcc5a3e-82c9-5968-a842-1dbd8537ed1d", "text": "\u5b66\u4e60\u91d1\u878d\u7684\u76ee\u7684\u4e0d\u662f\u4e3a\u4e86\u8d5a\u94b1\uff0c\u4f46\u662f\u901a\u8fc7\u5b66\u4e60\u91d1\u878d\uff0c\u8d22\u5bcc\u4f1a\u968f\u4e4b\u800c\u6765\u3002"} +{"id": "3003911", "video_name": "51858881-b558-502c-9d8a-54af7434f61e", "text": "\u5728\u6d77\u6ee9\u4e0a\u8d70\u8def\u7684\u5973\u5b69\uff0c\u91d1\u8272\u7684\u5934\u53d1\uff0c\u84dd\u8272\u7684\u773c\u775b\u3002"} +{"id": "3003012", "video_name": "156882ab-3ae6-5770-b1f7-2e18c5a475b7", "text": "\u4e00\u4e2a\u53cb\u597d\u7684\u4eba\u5de5\u667a\u80fd\u5fae\u7b11\u7740\u5411\u5468\u56f4\u7684\u5b69\u5b50\u4eec\u6325\u624b\u7684\u5f62\u8c61\u3002"} +{"id": "4002351", "video_name": "163c8e29-2b05-5c94-b317-c613bd733743", "text": "\u4e00\u8f86\u5de8\u578b\u6c7d\u8f66\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "4002007", "video_name": "5df879a8-1530-5041-a10f-e751c92ef4c0", "text": "\u706f\u5149\uff0c\u6444\u50cf\u673a\uff0c\u5f00\u59cb\u62cd\u6444\n\u5982\u679c\u4ed6\u559c\u6b22\u6211\uff0c\u5e26\u6211\u56de\u5bb6\n\u706f\u5149\uff0c\u6444\u50cf\u673a\uff0c\u5f00\u59cb\u62cd\u6444\n\u5982\u679c\u4ed6\u559c"} +{"id": "2007448", "video_name": "190bb443-934d-5427-9982-94f5c944e500", "text": "\u7537\u4eba\u8dea\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e3e\u8d77\u624b\u3002"} +{"id": "2004779", "video_name": "626474a2-2d3c-54a6-a012-21f71a69c630", "text": "\u5728\u68ee\u6797\u4e2d\u6f14\u594f\u5408\u6210\u5668\u548c\u8282\u594f\u76d2\u7684\u7535\u5b50\u97f3\u4e50\u5236\u4f5c\u4eba\uff0c\u5728\u65e5\u843d\u65f6\u5206\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n"} +{"id": "5001103", "video_name": "3995db9f-bf65-5355-8e9f-780c2e29874c", "text": "\u82f1\u7279\u5c14\u5954\u817e\u5904\u7406\u5668\u6b63\u5728\u4e0b\u964d\u3002"} +{"id": "2005634", "video_name": "53cb5ab1-8b6d-5b67-9c76-f7dfeb50ecce", "text": "\u8fd9\u6253\u7834\u4e86\u4e4b\u524d\u768410\u4e07\u5e74\u8bb0\u5f55\uff01"} +{"id": "6004908", "video_name": "783b6bbf-ca0a-5615-b0a5-d9cb8e098519", "text": "Source sentence: \u51ef\u6069\u00b7\u7ef4\u62c9\u65af\u594e\u5179\u548c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5403\u7740\u7389\u7c73\u7c89\u5377\n\nTranslated sentence: \u51ef\u6069\u00b7"} +{"id": "4002042", "video_name": "a3b173f3-3d3f-5a93-8dd8-a52a9bb1b244", "text": "\u673a\u5668\u4eba\u6559\u5e08\u7ed9\u4eba\u7c7b\u4e0a\u8bfe\u3002"} +{"id": "2003115", "video_name": "95b106f5-a94d-5d99-bf8b-c1eb03a1d4ed", "text": "\u9ed1\u8272\u94c3\u6728GRXS 1000\u6469\u6258\u8f66\u5728\u68ee\u6797\u4e2d\u7684\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u6301\u7eed10\u79d2\u949f\u3002"} +{"id": "1005914", "video_name": "6ca10ec3-332a-5922-a642-8b14d55a7af9", "text": "in the story can vary greatly.\n\n\u65b0\u5a18\u89d2\u8272\u5728\u620f\u5267\u4e2d\u53ef\u4ee5\u6709\u5404\u79cd\u5f62\u5f0f\u548c\u89d2\u8272\uff0c\u5979\u5728\u6545\u4e8b\u4e2d\u7684\u610f\u4e49\u53ef\u80fd\u4f1a\u6709\u5f88\u5927\u7684\u5dee\u5f02"} +{"id": "8001024", "video_name": "9952feac-407e-5766-95b9-67d39034e897", "text": "\u6728\u7247\u56db\u5904\u6563\u843d\uff0c\u7eff\u5e55"} +{"id": "1004408", "video_name": "5183869b-753f-5be9-8981-f28a6ff3c52c", "text": "\u5f3a\u9178\u65c5\u7a0b\u8ff7\u5e7b\u8d39\u6c0f\u6570\u5217\u53d1\u5149\u5f69\u8679\u8272\u5f69\u6591\u6593\u7684\u8ff7\u5e7b\u81ea\u7136\u80cc\u666f\u3002"} +{"id": "0005021", "video_name": "13586cf1-83ce-57d6-8630-087b05b44725", "text": "\u5e74\u590d\u4e00\u5e74\uff0c\u6770\u514b\u8d8a\u6765\u8d8a\u5bcc\u6709\uff0c\u4f46\u4ed6\u4e0d\u518d\u4eb2\u81ea\u5e72\u82e6\u6d3b\u4e86\uff0c\u800c\u662f\u4f9d\u9760\u7ba1\u7406\u4ed6\u7684\u519c\u573a\u6765\u8d5a\u94b1\u3002"} +{"id": "2007912", "video_name": "c42c1de6-ec4e-5f8d-be25-1657560b7172", "text": "\u7280\u725b\u9b54\u738b\uff0c\u8d85\u8be6\u7ec6\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u6770\u4f5c\uff0c\u8d859k\u9ad8\u6e05\uff0c3D\u56fe\u50cf\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005915", "video_name": "6cb1dacc-7e78-5e08-9c63-be76b30285ec", "text": "\u4e00\u4e2a\u7537\u4eba\u88ab\u4eba\u4eec\u5475\u65a5\u7740\uff0c\u51dd\u89c6\u7740\u6444\u50cf\u5934\uff0c4K\u3002"} +{"id": "7002504", "video_name": "a319ea7b-3160-5dc5-9011-15e3b7b8685e", "text": "\u7267\u7f8a\u7537\u5b69\u5728\u68ee\u6797\u4e2d\u610f\u8bc6\u5230\u4e86\u81ea\u5df1\u7684\u9519\u8bef\u3002"} +{"id": "4002013", "video_name": "d66d5240-9e85-5e12-9523-35ac1d244019", "text": "\u4e2d\u4e16\u7eaa\u6b27\u6d32\u5973\u5b69\uff0c\u6709\u6817\u8272\u5934\u53d1\u3001\u7fe0\u7eff\u8272\u773c\u775b\u548c\u5f3a\u5927\u7684\u6c14\u573a\uff0c\u6b63\u5728\u7ec3\u4e60\u5251\u672f\u3002"} +{"id": "0006181", "video_name": "27c84b42-44f8-5dfc-8fd7-6fcd98a5edfb", "text": "\u94a2\u94c1\u4fa0\u548c\u8759\u8760\u4fa0\u6b63\u5728\u6218\u6597\uff0c\u94a2\u94c1\u4fa0\u53d1\u5c04\u6fc0\u5149\u653b\u51fb\u3002"} +{"id": "8003072", "video_name": "ba9295b2-4cf7-576d-8c62-db51fc803edd", "text": "\u6253\u9020\u4e00\u5f20\u8d5b\u535a\u683c\u67f4\u72ac\u7684\u5f62\u8c61\uff0c\u5c06\u54c1\u79cd\u7684\u53ef\u7231\u9b45\u529b\u4e0e\u672a\u6765\u79d1\u6280\u7684\u589e\u5f3a\u76f8\u7ed3\u5408\uff0c\u653e\u5728\u95ea\u8000\u7684"} +{"id": "2007468", "video_name": "12419457-3ee9-5ca0-8f53-8f40d2636a18", "text": "\u5f53\u7f57\u9a6c\u71c3\u70e7\u65f6\uff0c\u6d85\u7984\u8fd8\u5728\u6f14\u594f\uff0c\u5e73\u9759\u7684\u6d77\u9762\u6620\u7167\u51fa\u6765\u3002\u6bcf\u573a\u706b\u707e\u90fd\u662f\u4e00\u5802\u6559"} +{"id": "6004273", "video_name": "7608b2c1-7ab1-5e98-ae26-a1922c42f3ba", "text": "\u9ed1\u8272\u539a\u5916\u5957\u3001\u7070\u8272\u88e4\u5b50\u3001\u7eff\u8272\u978b\u5b50\uff0c\u5929\u6c14\u5bd2\u51b7\u3002"} +{"id": "3004058", "video_name": "c5730ee4-53b3-526f-a3d7-4b1ba89bc58c", "text": "\u4e00\u4e2a\u7a7f\u7740\u4f20\u7edf\u5370\u5ea6\u670d\u88c5\u7684\u8001\u519c\u6c11\u6b63\u5728\u8ba4\u771f\u5730\u79cd\u690d\u8292\u679c\u6811\uff0c\u5168\u8eab\u52a8\u4f5c\u751f\u52a8\u3002"} +{"id": "8001308", "video_name": "6ab93ecf-dd67-547c-9829-bc60f5367de0", "text": "\u4e00\u53ea\u9cb8\u9c7c\u5728\u6cb3\u91cc\u5403\u9cc4\u9c7c\u3002"} +{"id": "1005621", "video_name": "675734c2-97d9-556d-8b38-aa371bdd7aea", "text": "\u8fd9\u4e2a\u7ed3\u6784\u7684\u76ee\u7684\u662f\u4ec0\u4e48\uff1f"} +{"id": "2004181", "video_name": "296539bd-058c-5521-b050-7d7d114be378", "text": "\u624b\u6301\u5c0f\u53f7\u8df3\u821e\u7684\u4eba\u4eec\uff0c\u516c\u51431500\u5e74\uff0c\u53e4\u8001\u7684\u666f\u8c61\u3002"} +{"id": "0004749", "video_name": "0ea2b67b-3b34-5044-ac1d-c5f78bd14389", "text": "\u4e00\u90e8\u5173\u4e8e\u673a\u5668\u4eba\u5f00\u7740\u4e00\u8f86\u672a\u6765\u98ce\u683c\u6c7d\u8f66\u5e26\u7740\u72d7\u7684\u52a8\u753b\u3002\u4ed6\u4eec\u6b63\u5728\u8c08\u8bba\u98df\u7269\u3002"} +{"id": "6003765", "video_name": "531fb636-a98c-53c6-8eb8-2ac09436d5ba", "text": "\u6df1\u5904\u56e2\u805a\uff0c\u5bb6\u4eba\u91cd\u9022\u3002"} +{"id": "6002646", "video_name": "c633e67b-1c5e-5567-9402-abf648473093", "text": "\u4eba\u5de5\u667a\u80fd\u63a5\u7ba1\u4eba\u7c7b\u65f6\u7684\u9762\u8c8c"} +{"id": "6002677", "video_name": "9f063cb8-e6d5-5346-baab-fa4d23baa7fd", "text": "\u5f53\u5854\u56fe\u56e0\u7684\u592a\u9633\u5f00\u59cb\u843d\u5c71\u65f6\uff0c\u53cd\u6297\u519b\u7ee7\u7eed\u6218\u6597\uff0c\u4ed6\u4eec\u77e5\u9053\u6218\u6597\u8fdc\u672a\u7ed3\u675f\u3002\u4ed6\u4eec\u4f1a\u575a\u6301\u4e0b\u53bb"} +{"id": "0004564", "video_name": "0b4b2116-863c-5850-b361-f5c96dc6f776", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u9065\u8fdc\u7684\u738b\u56fd\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u53eb\u5965\u7f57\u62c9\u7684\u7f8e\u4e3d\u516c\u4e3b\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728"} +{"id": "4002866", "video_name": "dccdf786-3aab-53cc-a8f1-651a8570734e", "text": "Lil Tecca\u8fd9\u4f4d\u8bf4\u5531\u6b4c\u624b\u6b63\u5728\u5f39\u94a2\u7434\u3002"} +{"id": "2006482", "video_name": "8dddc709-f0fd-5103-993d-4a11e7ed1887", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u6218\u58eb\u7ad9\u5728\u6df1\u6e0a\u524d\u9762\u3002 \n\nSource sentence: The sun sets behind the mountains. \n\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "7003453", "video_name": "95b0a652-560b-5a14-9b27-301c2c1f5617", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u8fea\u62dc\u8857\u9053\u4e0a\u884c\u8d70\u7684\u4eba\u548c\u98de\u884c\u7684\u65e0\u4eba\u673a\u3002"} +{"id": "4002943", "video_name": "c0707cbb-f6e8-5621-929f-08859949fe62", "text": "\u5728\u8def\u706f\u6746\u4e0a\u7684\u5e7f\u544a\u5c4f\u5e55\u4e0a\u64ad\u653e\u89c6\u9891\uff0c\u5c4f\u5e55\u9876\u90e8\u4e0b\u65b9\u6709\u706f\u7b3c\u548c\u4e00\u6839\u957f\u6746\u3002"} +{"id": "1003404", "video_name": "3ed2a908-f2d4-5328-894a-eadc4ce03026", "text": "\u65e0\u6cd5\u7ffb\u8bd1\uff0c\u56e0\u4e3a\u8fd9\u4e0d\u662f\u4e00\u4e2a\u6709\u610f\u4e49\u7684\u53e5\u5b50\u3002"} +{"id": "6004084", "video_name": "35d0c375-38c5-5dfc-9c0a-0793da4356fc", "text": "\u4ece\u90a3\u4e00\u5929\u8d77\uff0cElsie\u5976\u5976\u548c\u5979\u7684\u5c71\u7f8a\u6210\u4e3a\u6751\u5e84\u56e2\u7ed3\u548c\u97e7\u6027\u7684\u8c61\u5f81\u3002\u4ed6\u4eec\u514b\u670d\u969c\u788d\u548c"} +{"id": "4004868", "video_name": "18233e91-3936-56d3-9c36-be648c5e146b", "text": "\u56e2\u7ed3\u7684\u5fc3\u5728\u5e0c\u671b\u548c\u5584\u610f\u7684\u4ea4\u54cd\u4e50\u4e2d\u878d\u5408\u3002"} +{"id": "4002006", "video_name": "e6e70aa3-f58f-5478-84c9-1b1ee8aaf1e6", "text": "\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b50\u5728\u7530\u5f84\u8d5b\u9053\u4e0a\u526a\u65ad\u7ec8\u70b9\u7ebf\u3002"} +{"id": "2006327", "video_name": "738ffa8c-001c-5b77-8de6-923d31e4569f", "text": "\u4ece\u524d\uff0c\u5728\u4e1b\u6797\u91cc\u4f4f\u7740\u4e00\u53ea\u540d\u53eb\u7ef4\u5c14\u5df4\u80e1\u7684\u72ee\u5b50\u3002"} +{"id": "2007415", "video_name": "28991607-8ee2-561a-922f-4526095c98bf", "text": "\u90a3\u65f6\uff0c\u4e00\u4f4d\u5f3a\u5927\u7684\u5929\u4f7f\u62ff\u8d77\u4e00\u5757\u5927\u5c0f\u5982\u5927\u78e8\u77f3\u7684\u5de8\u77f3\uff0c\u5c06\u5b83\u6254\u8fdb\u4e86\u6d77\u4e2d\u3002"} +{"id": "3006908", "video_name": "80246558-9532-5aca-bae9-a23650dca0fc", "text": "\u5c0f\u72d7\u5b9d\u5b9d\u5728\u4e00\u7247\u5927\u7eff\u8349\u576a\u4e0a\u5954\u8dd1\u3002"} +{"id": "2006885", "video_name": "0a2ce07d-c367-5323-b82c-58b52e583337", "text": "\u5149\u7ebf\u548c\u626d\u66f2\u7684\u56fe\u6848\u4ece\u4e50\u624b\u7684\u4e50\u5668\u4e2d\u6d8c\u73b0\u51fa\u6765\uff0c\u968f\u7740\u4ed6\u4eec\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "6002668", "video_name": "6e85d492-7a56-555c-8319-c2ef432f4249", "text": "\u591c\u665a\uff0c\u5728\u4e00\u5ea7\u5de8\u5927\u7684\u6c99\u4e18\u4e0a\u95ea\u70c1\u7740\u795e\u5947\u7684\u9713\u8679\u706b\u82b1\u3002"} +{"id": "4003274", "video_name": "41f2e442-5c9b-523a-9e48-2b121b00e6dd", "text": "\u5973\u5b69\u3001\u6d74\u8863\u3001\u590f\u5929\u3001\u68c9\u82b1\u7cd6\u82f9\u679c\u3001\u70df\u706b\u3002"} +{"id": "7004003", "video_name": "e7ecd0af-0faf-5858-9db1-e4414b136b88", "text": "\u4e00\u6735\u9c9c\u7ea2\u8272\u3001\u5177\u6709\u4eba\u5de5\u667a\u80fd\u98ce\u683c\u3001\u957f\u830e\u7684\u5355\u6735\u73ab\u7470\u82b1\uff0c\u653e\u5728\u4e00\u5757\u7b80\u5355\u900f\u660e\u7684\u80cc\u666f"} +{"id": "0006655", "video_name": "3081f33e-42a3-5e04-9ab1-8fe9344c3a2c", "text": "\u80cc\u666f\u95ea\u7535\u7684\u52a8\u6f2b\u98ce\u683c"} +{"id": "3004228", "video_name": "50f68df3-ae35-51ff-83f5-af3311367a72", "text": "\u8d3e\u65af\u6c40\u5c3c\u5b89\u4e8c\u4e16\uff0c\u62dc\u5360\u5ead\u5e1d\u56fd\u7687\u5e1d\u5728\u9769\u547d\u4e2d\u88ab\u63a8\u7ffb\u3002"} +{"id": "2007656", "video_name": "66740679-fa0b-52e5-a6f1-3566416eb881", "text": "\u88ab\u98ce\u5439\u62c2\u7684\u6811\u679d\uff0c\u4ee5\u6728\u523b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "8003590", "video_name": "c1462234-c9e1-5876-9ada-59f7b38511ef", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u91cc\uff0c\u77d7\u7acb\u7740\u4e00\u68f5\u96c4\u4f1f\u7684\u8001\u6a61\u6811\u3002\u8fd9\u68f5\u667a\u6167"} +{"id": "5001428", "video_name": "c8a27a0d-1370-5163-9aa1-7ad32c378b47", "text": "\u4e00\u53ea\u9e1f\u513f\u5750\u5728\u6811\u4e0a\uff0c\u7a7f\u7740\u6761\u7eb9\u886c\u8863\u9ad8\u58f0\u5531\u6b4c\u3002"} +{"id": "4002378", "video_name": "6e9d28c6-1685-5278-9d65-f40b02e1e84b", "text": "\u91d1\u9c7c\u5728\u900f\u660e\u7684\u8fea\u65af\u79d1\u978b\u8ddf\u4e2d\u6e38\u6765\u6e38\u53bb\u3002"} +{"id": "3004060", "video_name": "a37edd8c-c517-5dd2-a22c-23fca79fd285", "text": "\u4eba\u5f62\u72d0\u72f8\u6234\u7740VR\u5934\u76d4\u73a9\u800d\u7684\u89c6\u9891\u7d20\u6750\u3002"} +{"id": "3005544", "video_name": "af3d9ff7-10c6-514a-87e2-7e408fc1a5dd", "text": "\u5965\u8fea\u8d85\u7ea7\u8dd1\u8f66\u5728\u7ebd\u7ea6\u5e02\u8857\u9053\u4e0a\u9ad8\u901f\u9a70\u9a8b\u3002"} +{"id": "1005763", "video_name": "6a009333-748f-571c-9163-9e2d6f9442f6", "text": "\u4e00\u4e2a\u4eba\u6361\u8d77\u4e86\u4e00\u53ea\u9e1f\u3002"} +{"id": "3006208", "video_name": "3270e91e-e824-5604-834c-ebc19e90750c", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9c8d\u52c3\u00b7\u827e\u683c\u5728\u76ae\u514b\u65af\u98ce\u683c\u4e0b\u62f3\u51fb\u3002"} +{"id": "2007703", "video_name": "eab841c2-83c6-567a-bec5-d3fc8506eeb1", "text": "\u4e00\u4f4d\u767d\u4eba\u5973\u5b50\u7a7f\u8457\u66b4\u9732\u670d\u88dd\u5728\u73bb\u7483\u6cf3\u6c60\u4e2d\u6e38\u6cf3\uff0c\u8d85\u73fe\u5be6\u3002"} +{"id": "1006275", "video_name": "72e43c6c-fe44-5885-938d-61daaef3d575", "text": "\u50f5\u5c38\u6500\u767b\u4e2d\u56fd\u957f\u57ce\uff0c\u5899\u58c1\u7740\u706b\uff0c\u9ed1\u6697\u6c1b\u56f4\uff0c4K\uff0c\u8d85\u903c\u771f\uff0c\u8b66\u5bdf\u5728\u957f\u57ce\u9876\u90e8\u3002"} +{"id": "7002873", "video_name": "5e5abac8-642c-5ca6-86dd-ef23ee49297c", "text": "\u624b\u672f\u5ba4\u4fe1\u606f: SHARP\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003943", "video_name": "1a24e1a6-60cd-5d2b-897a-6dd967819177", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u8d85\u7ea7\u82f1\u96c4\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "3003316", "video_name": "9bc1110b-8d21-596a-b9e7-16c051b2bfea", "text": "\u4f5b\u73e0\u5728\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "1006617", "video_name": "794dd4c3-27ab-551c-8af2-30f39a8c0077", "text": "\u7528\u624b\u5236\u4f5c\u80fd\u91cf\u7403\u7684\u5fcd\u8005\u5728\u6218\u573a\u4e0a\uff0c4K\u3002"} +{"id": "0005785", "video_name": "21365960-171b-5827-90ad-21cf325ca5ff", "text": "\u7537\u5b69\u9ad8\u9ad8\u5174\u5174\u5730\u8e22\u8db3\u7403\u3002"} +{"id": "8003697", "video_name": "cfa8587c-0515-591d-be61-979a985fdfb6", "text": "\u9177\u70ab\u53ef\u7231\u7684\u9e38\u9e4b\uff0c\u6234\u7740\u53cd\u5149\u592a\u9633\u955c\uff0c\u7ad9\u5728\u51b2\u6d6a\u677f\u4e0a\u7a7f\u8d8a\u4e00\u6761\u5927\u84dd\u8272"} +{"id": "2007902", "video_name": "55369bed-489b-5218-9d1c-e1c1bb3e5c5a", "text": "\u6d77\u6ee9\u522b\u5885\uff0c\u4fe1\u606f\uff1a\u9152\u5e97\u3002"} +{"id": "0004973", "video_name": "128849e9-5af7-56d5-b5be-2f3aa79b3d11", "text": "\u5927\u7329\u7329\u6b63\u5728\u4e0e\u4e00\u4e2a\u5e74\u4ec5\u56db\u5c81\u7684\u5c0f\u7537\u5b69\u4ea4\u8c08\uff0c\u7537\u5b69\u7741\u5927\u773c\u775b\uff0c\u5e0c\u671b\u542c\u5230\u5927\u7329\u7329\u6559"} +{"id": "8003887", "video_name": "b2a9a138-95f9-50d3-8652-4865fe841b17", "text": "\u4ed6\u6234\u7740\u5706\u5f62\u773c\u955c\u3002\u7136\u800c\uff0c\u4ed6\u4e0d\u77e5\u9053\u4ed6\u5c06\u4e0d\u5f97\u4e0d\u9762\u5bf9\u60ca\u4eba\u7684\u52c7\u6c14\u548c\u6597\u4e89\u3002"} +{"id": "2006348", "video_name": "a49bdb18-e9dc-547d-a0a6-3b598f1d7202", "text": "\u5728\u8499\u7279\u5229\u5c14\u4ee5\u54e5\u7279\u5f0f\u6050\u6016\u98ce\u683c\u6f2b\u6b65\u7684\u4eba\u4eec\u3002"} +{"id": "2007374", "video_name": "b033b6f7-3f35-5f31-a852-1ce9153b6f01", "text": "\u591c\u665a\u5728\u6050\u6016\u7684\u623f\u5b50\u91cc\uff0c\u4ece\u4e0d\u540c\u89d2\u5ea6\u770b\u9ec4\u8272\u7684\u9e2d\u5b50\u73a9\u5177\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u6050\u6016"} +{"id": "0004298", "video_name": "069f2234-e902-577c-8cd9-0a7811441bbb", "text": "\u4eba\u4eec\u5750\u5728\u6811\u4e0b\u7684\u5361\u901a\u56fe\u50cf"} +{"id": "8002249", "video_name": "25a24c73-ef65-5b9c-9418-3c16bf944359", "text": "\u8482\u7c73\u6709\u4e00\u68f5\u4ed6\u6700\u559c\u6b22\u7684\u6811\uff0c\u4ed6\u7ecf\u5e38\u5750\u5728\u90a3\u91cc\u542c\u9e1f\u513f\u9e23\u5531\u4f18\u7f8e\u7684\u66f2\u8c03\u3002"} +{"id": "0003418", "video_name": "3d46644d-d025-579f-b23c-1159e8985b62", "text": "\u8ff7\u5e7b\u5fa9\u53e4\u98a8\u683c\u7684\u8001\u5370\u5ea6\u96fb\u5f71\u98a8\u683c\u8996\u983b\u3002\u5728\u4e00\u500b\u672b\u4e16\u57ce\u5e02\u7684\u8857\u9053\u4e0a\uff0c\u5169\u500b\u6200\u4eba"} +{"id": "6002562", "video_name": "30e1d7f6-6ca2-5b79-a8e7-ffe25158246b", "text": "\u4e00\u4e2a\u519c\u6c11\u8bd5\u56fe\u9003\u79bb\u4e00\u4e2a\u9ed1\u6697\u96fe\u8499\u8499\u7684\u6751\u5e84\u3002"} +{"id": "4003992", "video_name": "b4a353ed-dbb3-5193-922c-c9b075bad6f5", "text": "\u547d\u8fd02\u5361\u5fb7\u544a\u8bc9\u4ed6\u5173\u4e8e\u5149\u660e\u548c\u9ed1\u6697\u7684\u6218\u4e89\u7684\u6545\u4e8b\uff0c\u4ee5\u53ca\u5b83\u5982\u4f55\u5728\u6700\u7ec8\u7684\u5f62\u60014K\u548c\u795e\u79d8"} +{"id": "4004727", "video_name": "c3530684-8ec4-57ec-9cd0-02b450100007", "text": "\u4e00\u4e2a\u62e5\u6709\u957f\u957f\u7684\u7ea2\u84dd\u8272\u5934\u53d1\u3001\u5439\u594f\u957f\u7b1b\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u8eab\u5904\u58ee\u4e3d\u7684\u80cc\u666f\u4e2d\uff0c\u88ab\u4e91\u96fe\u73af\u7ed5"} +{"id": "7002175", "video_name": "ea18b31c-9618-5a76-be5e-517dadba2c41", "text": "\u6709\u4e00\u4e2a\u9713\u8679\u706f\u6807\u5fd7\u5199\u7740\u201c\u5bb6\u201d\u7684\u5b57\u6837\uff0c\u5728\u9ed1\u6697\u4e2d\u4eae\u8d77\u6765\uff0c\u8fdb\u5165\u865a\u7a7a\uff0c\u9e1f\u5de2\uff0c\u4f4d\u4e8e\u65e5\u672c\u516c\u5bd3\u7684\u4f0a"} +{"id": "3003511", "video_name": "522dd929-f98e-5a8f-9d0e-926cd53cf8be", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u9a91\u58eb\u624b\u6301\u706b\u70ac\u5728\u9ed1\u6697\u4e2d\u3002"} +{"id": "0004139", "video_name": "03e97113-9bc2-5533-9d5d-a4243cce74d5", "text": "\u4e00\u4e2a\u6469\u6d1b\u54e5\u7537\u5b50\u5728\u57c3\u53ca\u7684\u6492\u54c8\u62c9\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "7002417", "video_name": "85a40370-eeb5-5459-928b-1e847856ceec", "text": "\u7537\u4eba\u8d70\u8fdb\u4e00\u4e2a\u68a6\u5e7b\u4e16\u754c\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "8003421", "video_name": "b2c2c9c3-f2ec-5f2e-8d88-f26b8aa3aaca", "text": "\u6b66\u58eb\uff0c\u5200\u5251\uff0c\u65e5\u843d\uff0c\u975e\u5e38\u8be6\u7ec6\uff0c\u7d2b\u8272\u548c\u9634\u5f71\uff0c\u4e4c\u9e26\uff0c\u65e0\u9762\u5b54\uff0c\u7535\u5f71\u5316"} +{"id": "2005663", "video_name": "1b748d57-cfcd-5da6-9098-aca1aef23904", "text": "\u751f\u6210\u4e00\u5f20\u753b\u9762\uff0c\u753b\u9762\u4e0a\u662f\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u8c28\u614e\u5730\u8fdb\u5165\u8fd9\u5ea7\u9b3c\u5c4b\uff0c\u4ed6\u624b\u91cc\u62ff\u7740\u624b\u7535\u7b52\uff0c\u5728\u53e4\u8001\u7684"} +{"id": "7002990", "video_name": "f191e6b7-ecad-5d38-a652-c7076e6ba2a4", "text": "\u5728\u98ce\u4e2d\u98d8\u52a8\u7684\u5934\u53d1\uff0c\u79fb\u52a8\u7684\u817f\u90e8\uff0c\u80cc\u666f\u4e2d\u6ce2\u6d6a\u8d77\u4f0f\u3002"} +{"id": "8003930", "video_name": "45ea053e-2663-5970-9fe7-13fe2e6ac7af", "text": "\u4e00\u4e2a\u7a7f\u7740\u8d85\u5927\u8863\u670d\u7684\u53ef\u7231\u5c0f\u5973\u5b69\u6b63\u5728\u6253\u7bee\u7403\u3002"} +{"id": "1003479", "video_name": "40777641-684b-5fd5-aa26-2da66d68b13a", "text": "\u5b87\u822a\u5458\u4e0e\u8ba1\u7b97\u673a\u754c\u9762\u4ea4\u4e92\uff0c\u661f\u9645\u592a\u9633\u7cfb\u5730\u56fe\u3002"} +{"id": "3006187", "video_name": "e1ccdee4-6358-5651-8216-4311647597bc", "text": "\u4e00\u4e2a\u7537\u4eba\u5728Publix\u7684\u8d70\u9053\u91cc\u627e\u4e1c\u897f\u3002"} +{"id": "7000001", "video_name": "e7c43219-58f2-571b-a7c4-0cbc1b82a17d", "text": "\u4e00\u53ea4k\u5206\u8fa8\u7387\u7684\u52a8\u753b\u732b\u5728\u4e1b\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "1003968", "video_name": "49433320-ea4a-5271-9fb8-2e156e7ee3e7", "text": "\u9152\u7cbe\u58a8\u6c34\u753b\u975e\u6d32\u5987\u5973\u8df3\u821e\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "1004059", "video_name": "4b41410e-de43-5475-95d2-74ff5f22f2d1", "text": "\u4e24\u4e2a\u7537\u4eba\u671d\u7740\u5f7c\u6b64\u8d70\u6765\uff0c\u63e1\u624b\u3002\u4e00\u4e2a\u662f\u7f57\u9a6c\u4eba\uff0c\u53e6\u4e00\u4e2a\u662f\u57c3\u53ca\u4eba\u3002\u80cc\u666f\u662f\u6218\u4e89\u533a\u57df\u3002"} +{"id": "4004416", "video_name": "b388de1e-9284-55ab-bcfc-473545922352", "text": "\u9ad8\u9ad8\u5728\u4e0a\uff0c\u53e4\u8001\u7684\u6d1e\u7a74\u5165\u53e3\u5d4c\u5728\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u903c\u771f\u98ce\u666f\u4e2d\u3002"} +{"id": "4003893", "video_name": "38a3acd9-5a5e-5a16-97a6-80eeb519c136", "text": "\u5728\u4ff1\u4e50\u90e8\u91cc DJ \u8df3\u7740\u821e\uff0c\u968f\u7740\u8282\u594f\u6447\u6446\u3002"} +{"id": "3006096", "video_name": "54dc71d3-1a40-5a04-9dd9-d8da14542f55", "text": "\u4e00\u7247\u7f8e\u4e3d\u7684\u6d77\u7901\u77f3\u7167\u8000\u7740\u9633\u5149\uff0c\u62cd\u6444\u4e3a\u8d85\u5e7f\u89d2\u3002"} +{"id": "3005914", "video_name": "7e328e8b-fdf3-5f94-a3eb-2a4553460396", "text": "\u5f88\u591a\u5927\u8c61\u5728\u4e1b\u6797\u91cc\u548c\u6211\u4eec\u4e00\u8d77\u73a9\u3002"} +{"id": "2007186", "video_name": "2ca89521-1c05-563b-91ec-77b7303c70b4", "text": "\u51a0\u519b2024\u7684\u83b7\u80dc\u8005\u3002"} +{"id": "4003198", "video_name": "dff35a8a-4a8b-5bff-b0d7-8988ddf9f333", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ec4\u8272\u88d9\u5b50\uff0c\u50cf\u8d1d\u5c14\u00b7\u65af\u5854\u5c14\u90a3\u6837\u53e4\u8001\u7684\u5973\u725b\u4ed4\uff0c\u4ece\u9a6c\u4e0a\u4fef\u89c6\u7740\u4e00\u4e2a\u7a7f\u7740"} +{"id": "2004949", "video_name": "9cce71ba-8506-55f1-9df9-d01c1cdbde42", "text": "\u4e00\u4e2a\u660e\u4eae\u7684\u5149\u8292\u5c04\u5411\u661f\u7a7a\uff0c\u968f\u540e\u6d88\u5931\u4e86\u3002"} +{"id": "2003752", "video_name": "9469df11-bafa-5cea-80f5-ea309d3ed555", "text": "\u94a2\u94c1\u4fa0\u5728\u7f8e\u56fd\u534e\u76db\u987f\u7279\u533a\u4e0e\u7eff\u5de8\u4eba\u6d69\u514b\u5bf9\u6297\u3002"} +{"id": "3005391", "video_name": "84ae7f43-936c-5218-9094-46553757c90c", "text": "\u4e00\u4e2a\u5c55\u793a\u6a44\u6984\u6cb9\u5236\u4f5c\u8fc7\u7a0b\u7684\u89c6\u9891\u3002"} +{"id": "0006196", "video_name": "2806a5c0-88b3-51af-ab58-6ca6f6206975", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u5728\u7206\u70b8\u524d\u9762\u8d70\u8def\u3002"} +{"id": "0006267", "video_name": "29b85214-4577-5e47-8cd7-88c6db8e516f", "text": "\u80f8\u7f69\u548c\u4e01\u5b57\u88e4\uff0c\u9690\u5f62\u5973\u4eba\u6f02\u6d6e\u8df3\u821e\uff0c8K\u3002"} +{"id": "1006308", "video_name": "73713df4-8404-5e91-97a1-a6f168107ee9", "text": "\u7537\u5b69\u5b50\u5728\u9a6c\u620f\u56e2\u8868\u6f14\u573a\u5730\u8df3\u821e\u3002"} +{"id": "3005811", "video_name": "a2995187-0790-5403-ae0d-59ee19210a58", "text": "\u529e\u516c\u5ba4\u7537\u4eba\u5750\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "8003206", "video_name": "2559fa09-38db-5ba5-b6c3-70a59804cfbf", "text": "\u7a7f\u7740\u5e15\u7279\u91cc\u514b\u00b7\u7eb3\u683c\u5c14\u98ce\u683c\u7684\u84b8\u6c7d\u670b\u514b\u670d\u9970\u7684\u7537\u6027\u3002\u6781\u7b80\u4e3b\u4e49\u6d41\u884c\u827a\u672f\uff0c80\u5e74\u4ee3"} +{"id": "3004348", "video_name": "a2010cec-66b1-5165-aec2-8b7dc41b3b3b", "text": "\u5df4\u9ece\u00b7\u5e0c\u5c14\u987f\u548c\u59ae\u53ef\u00b7\u91cc\u5947\u6765\u81ea\u300a\u7b80\u5355\u751f\u6d3b\u300b\u3002"} +{"id": "8003476", "video_name": "ebf79dac-f3cd-5293-8f25-6a69237f4ce1", "text": "\u52a8\u753b\u7247\uff0c\u82b1\u675f\u4e2d\u7684\u732b\u5934\u9e70\u6807\u5fd7\uff0c\u7535\u5f71\u822c\u7684\uff0c\u9ed1\u6697\u5947\u5e7b\u3002"} +{"id": "8002068", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "\u4e00\u53ea\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u72d7\uff0c\u81ea\u79f0\u4e3a\u5218\u5929\u72d7\u3002\u4ed6\u7684\u8bdd\u5c06\u7528\u4e2d\u6587\u5b57\u7b26\u663e\u793a\u3002"} +{"id": "3004688", "video_name": "6a44b65e-0e3d-5c9f-85bc-883b8ce894e1", "text": "\u4f34\u968f\u7740\u503e\u76c6\u5927\u96e8\u548c\u72c2\u98ce\u547c\u5578\u800c\u6765\u3002"} +{"id": "1003829", "video_name": "46b61a4b-f8d1-50ff-8218-1e1862ce2f51", "text": "\u57ce\u5e02\u4e2d\u5fc3\u7684\u8d85\u903c\u771f\u718a\u8df3\u821e\u3002"} +{"id": "4003297", "video_name": "a640ac46-923c-5185-912b-72ead1e3e613", "text": "\u7537\u5b50\u5728\u4e00\u6761\u8352\u51c9\u7684\u8857\u9053\u5954\u8dd1\u3002"} +{"id": "1005140", "video_name": "5ebb0f16-6a31-590e-a6d4-132dd575d51a", "text": "\u8001\u4eba\u7a7f\u7740\u6df1\u8910\u8272\u5939\u514b\u548c\u540c\u8272\u5e3d\u5b50\uff0c\u5750\u5728\u7011\u5e03\u540e\u9762\u7684\u6811\u5c4b\u91cc\u6df1\u601d\u719f\u8651\uff0c\u8fd9\u662f\u4e00"} +{"id": "4002982", "video_name": "f7a152df-f881-5ec4-8d00-80d75d343a89", "text": "\u7279\u745e\u00b7\u535a\u52a0\u5fb7\u662f\u4e00\u4e2a\u7535\u5b50\u6e38\u620f\u89d2\u8272\uff0c\u5728\u4e00\u573a\u58a8\u897f\u54e5\u751f\u65e5\u6d3e\u5bf9\u4e0a\u8df3\u821e\uff0c\u753b\u8d28\u4e3aUltra HD\u3002"} +{"id": "0005164", "video_name": "15d87bf3-76ba-5029-8be3-0026dc961c65", "text": "\u5e7b\u60f3\u98ce\u683c\u7684\u5c0f\u4e11\u9c7c\u5728\u591c\u8272\u6c6a\u6d0b\u4e2d\u6e38\u52a8\u3002"} +{"id": "3006100", "video_name": "9e4e2e43-1c6a-5a2e-8f77-e3418e902d16", "text": "\u4ee5\u677e\u672c\u4fca\u592b\u5bfc\u6f14\u7684\u98ce\u683c\u3002"} +{"id": "6003275", "video_name": "01fc599a-77b9-510c-870f-e42aa3de9d8d", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u57ce\u5e02\u4e2d\u8d70\u8def\uff0cVHS\u98ce\u683c\uff0c2003\u5e74VHS\u76f8\u673a\u98ce\u683c\uff0c\u5468\u56f4\u6709\u5f88\u591a\u4eba\u8ddf\u7740\u4ed6\u8d70\u3002"} +{"id": "1006353", "video_name": "744fa870-e843-5f85-8cda-b82c19442262", "text": "\u5317\u6781\u673a\u573a\u5fd9\u788c\u7684\u7cbe\u7075\u4eec"} +{"id": "5001821", "video_name": "bb5cb6d4-6285-5593-851d-20a00bd2e22d", "text": "\u4e00\u5ea7\u82f1\u52c7\u7684\u7559\u7740\u80e1\u5b50\u7684\u5e0c\u814a\u96d5\u50cf\u5c79\u7acb\u5728\u90a3\u91cc\uff0c\u5b83\u808c\u8089\u53d1\u8fbe\u7684\u8eab\u4f53\u548c\u76fe\u724c\u5728\u9633"} +{"id": "2005796", "video_name": "44761bac-a66c-5ef9-971c-bbd931c23189", "text": "\u5cb3\u6b66\u65a4\u722c\u4e0a\u5c71\u53bb\u6253\u730e\uff0c\u7a7f\u8d8a\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u6c57\u6c34\u4ece\u4ed6\u575a\u5b9a\u7684\u9762\u5b54\u4e0a\u6ef4\u843d\u3002"} +{"id": "2003324", "video_name": "b719ab59-c9c1-5c11-adf2-c59b20ae9819", "text": "\u7b2c\u4e00\u6b21\u8e0f\u4e0a\u6708\u7403\u3002"} +{"id": "6003959", "video_name": "418e7b3d-8b52-508d-8a8b-56025a5dc768", "text": "\u4e24\u4e2a\u725b\u4ed4\u5728\u7f8e\u56fd\u5185\u6218\u671f\u95f4\uff0c\u9a7e\u9a6d\u9a6c\u5339\u5728\u519c\u573a\u9644\u8fd1\u884c\u9a76\u3002"} +{"id": "2004466", "video_name": "0a022f77-2e0c-58a6-a84f-de856384ceac", "text": "\u5370\u5ea6\u6559\u5a46\u7f57\u95e8\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\u7684\u5361\u901a\u56fe\u50cf\u3002"} +{"id": "8003665", "video_name": "7e9e6b5a-d811-5b91-9913-9013839f751d", "text": "\u4e00\u5f20\u534a\u5e7b\u50cf\u534a\u5973\u58eb\u7684\u56fe\u50cf"} +{"id": "8003696", "video_name": "7db3509c-1894-525b-945a-7b0a114d17f6", "text": "\u5929\u4e0a\u6709\u6d41\u6c34\uff0c\u7a7a\u4e2d\u6709\u98de\u9e1f\uff0c\u524d\u65b9\u6709\u5929\u4f7f\u3002"} +{"id": "4003498", "video_name": "4b201f67-0fa3-56d2-a8f4-b85c1818e6a3", "text": "\u6f2b\u5a01\u6f2b\u753b\u4e2d\u7684\u9ed1\u51e4\u51f0\u743c\u00b7\u683c\u96f7\u8eab\u7a7f\u6807\u5fd7\u6027\u7684\u9ed1\u51e4\u51f0\u670d\u88c5\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u5b87\u5b99\u5149\u73af"} +{"id": "2006098", "video_name": "874ab1ea-f2cb-5cd3-b918-2098e5fd3a85", "text": "\u9b3c\u5728\u5e8a\u5355\u91cc\uff0c\u662f1980\u5e74\u7535\u5f71\u300a\u5996\u602a\u300b\u7684\u6050\u6016\u7f8e\u5b66\u3002"} +{"id": "1006069", "video_name": "6f6571cb-8dc6-52e0-9b74-37c9b73dceda", "text": "\u8bf7\u5199\u51fa\u4e00\u4e2a\u6e29\u99a8\u7684\u573a\u666f\uff0c\u4e00\u53ea\u67f4\u72ac\u548c\u4e00\u53ea\u6ce2\u65af\u732b\uff0c\u5206\u522b\u540d\u4e3aMochi\u548cWhiskers\uff0c\u548c\u5e73\u5730\u5e76\u6392\u7761"} +{"id": "3006378", "video_name": "cb2ce8ea-4792-58f9-b74f-237b0cc3561c", "text": "\u516d\u4e2a\u5deb\u5e08\u7ad9\u5728\u4e00\u4e2a\u9632\u5fa1\u9635\u5f62\u4e2d\uff0c\u5bf9\u6297\u4e00\u652f\u72fc\u4eba\u519b\u961f\uff0c\u4ed6\u4eec\u56db\u9762\u516b\u65b9\u88ab\u5305\u56f4\uff0c\u800c\u4e14\u96ea"} +{"id": "3003478", "video_name": "e00ffc34-d367-55b3-9b14-6fd7d18ea4a1", "text": "\u4e2d\u5f0f\u5ba2\u623f\u3002\u5e26\u7740\u6e29\u99a8\u7684\u5fae\u98ce\u3002"} +{"id": "5001936", "video_name": "bf5e44e5-11f8-5289-aab9-3d718b5282c2", "text": "90\u5e74\u4ee3\u7684\u6050\u6016\u73b0\u573a\u62cd\u6444\u7535\u5f71\uff0c\u6765\u81ea1990\u5e74\u4ee3\u7684\u5c4f\u5e55\u622a\u56fe\uff0c\u7267\u5e08\u8131\u76ae\uff0c\u53d8\u6210\u4e00\u53ea\u5de8\u5927\u7684"} +{"id": "3003679", "video_name": "63ab831b-44a9-5acf-9a00-877035f8f597", "text": "\u4ece\u4e0b\u9762\u770b\u5230\u7684\u82f9\u679c\u6811\uff0c\u679d\u5934\u6302\u6ee1\u4e86\u82f9\u679c\uff0c\u80cc\u666f\u7684\u5929\u7a7a\u88ab\u84dd\u767d\u76f8\u95f4\u7684\u4e91\u6735\u8986\u76d6\u3002"} +{"id": "2003701", "video_name": "b571a126-fa50-52d0-8325-b082012464fc", "text": "\u4e00\u4e2a\u9a91\u58eb\u5728\u6708\u5149\u4e0b\u591c\u665a\u6f2b\u6b65\u6c99\u6f20\uff0c\u7f8e\u4e3d\u76844K\u9ad8\u8d28\u91cf\u3002"} +{"id": "2003491", "video_name": "968137c5-d80b-5860-836d-be18fda28d98", "text": "\u7ea2\u6d77\u8d38\u6613\u8def\u7ebf\u5730\u56fe\u548c\u7531\u963f\u62c9\u4f2f\u4eba\u638c\u63a7\u7684\u9646\u8def\u7ebf\u3002"} +{"id": "3005774", "video_name": "09156cc7-44e8-5985-80db-1db31e0c830a", "text": "\u5236\u4f5c\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\u4e92\u76f8\u5bf9\u6218\uff0c\u5176\u4e2d\u4e00\u4e2a\u62e5\u6709\u706b\u7130\u80fd\u529b\uff0c\u53e6\u4e00\u4e2a\u62e5\u6709\u51b0\u51bb\u80fd\u529b\u3002"} +{"id": "3005521", "video_name": "f78d0721-fd92-55aa-96ab-95ce15db9842", "text": "\u5973\u5b69\u5b50\u7528\u7231\u7684\u62e5\u62b1\u548c\u751c\u7f8e\u7684\u5fae\u7b11\u3002"} +{"id": "2007235", "video_name": "eb799eab-30b7-5b8b-a37a-8fc757bd4395", "text": "\u6bd4\u5229\u548c\u73ed\u5c3c\u5728\u660e\u4eae\u7684\u9633\u5149\u4e0b\u4eab\u53d7\u7740\u98de\u76d8\u6e38\u620f\u3002"} +{"id": "1004760", "video_name": "581e5153-18f3-5e87-b564-7618f4ef7232", "text": "\u73b0\u5728\u5c45\u4f4f\u5728\u6708\u7403\u4e0a\u7684\u72ee\u5b50\u5f00\u59cb\u4f20\u64ad\u5e78\u798f\u548c\u7f8e\u4e3d\u3002"} +{"id": "2006536", "video_name": "52b17d50-e737-5761-ada0-6482b3f02f17", "text": "\u805a\u7126\u4e8e\u5317\u6781\u5149\u7684\u7f8e\u4e3d\uff0c\u7528\u8272\u5f69\u9c9c\u8273\u3001\u6d41\u52a8\u53d8\u5e7b\u7684\u6781\u5149\u4f5c\u4e3a\u80cc\u666f\uff0c\u5728\u661f\u7a7a\u753b\u5e03\u4e0a\u8df3\u8dc3"} +{"id": "8001489", "video_name": "990d0a5e-870c-5474-b285-0b8c32844f60", "text": "\u732b\u548c\u72d7\u5728\u540c\u4e00\u4e2a\u8eab\u4f53\u91cc\u3002 \n\nSource sentence: The sun is shining brightly today. \n\n\u4eca\u5929\u592a\u9633\u666e\u7167\u5927\u5730\u3002"} +{"id": "1003630", "video_name": "42e0b731-99ed-5779-80ef-3c6e90821b9a", "text": "\u53f2\u8482\u592b\u5728\u6211\u7684\u4e16\u754c\u6e38\u620f\u4e2d\u4e0e\u53ef\u6015\u7684\u9ab7\u9ac5\u6218\u6597\uff0c\u4ee5\u590d\u53e4\u89c6\u9891\u6e38\u620f\u7684\u98ce\u683c\u5236\u4f5c\u8fd9\u4e2a\u89c6\u9891\u3002"} +{"id": "4002708", "video_name": "fe3cf66c-f3b6-5cf1-9db1-d3ff52afcbf0", "text": "\u6811\u5728\u65e5\u843d\u65f6\u7684\u7ed8\u753b\u52a8\u753b\uff0c\u679c\u5b9e\u6389\u843d\u3002"} +{"id": "3004242", "video_name": "7a5b9ec4-ce33-5c2e-95ac-4c126666e929", "text": "\u76ae\u514b\u65af\u98a8\u683c\u7684\u592a\u967d\u5e36\u8457\u773c\u775b\u5531\u8457\u4e00\u9996\u8272\u5f69\u7e7d\u7d1b\u7684\u6b4c\u66f2\u3002"} +{"id": "7002098", "video_name": "848dc042-83cd-5d2b-bcde-a9df615dc507", "text": "\u7011\u5e03\u5f62\u72b6\u7684\u661f\u4e91"} +{"id": "4004233", "video_name": "897ce152-6924-5016-9cc0-8d4f278483fb", "text": "\u5728\u8d5b\u8f66\u4e0a\u591c\u665a\u5207\u6362\u9f7f\u8f6e\u7684\u7cbe\u7075"} +{"id": "8002836", "video_name": "1e3c7f35-1e48-5561-a3b0-629a1a6f698b", "text": "\u53ef\u7231\u76844\u5c81\u5973\u5b69\uff0c\u6234\u7740\u8033\u673a\uff0c8K\u56fe\u50cf\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "0004550", "video_name": "0b16484d-dac9-56a7-9006-e53096ee0617", "text": "\u9633\u5149\u900f\u8fc7\u5bab\u6bbf\u5367\u5ba4\u7684\u7a97\u6237\u6d12\u4e0b\u3002"} +{"id": "3004442", "video_name": "d4559e74-ae46-57e9-9c32-2b76c3249464", "text": "\u56fd\u9645\u52a8\u753b\u6269\u5c55\u5168\u7403"} +{"id": "8001350", "video_name": "c2bfecb6-b72b-5691-ad03-caeeb95150c4", "text": "\u5f88\u591a\u4eba\u5728\u5c0f\u623f\u95f4\u91cc\u8df3\u821e\u3002"} +{"id": "6003221", "video_name": "8f7d8633-bf75-5989-be98-90fd4581883d", "text": "Alpha Wolf\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\uff0c\u661f\u5149\u95ea\u70c1\uff0c\u70df\u96fe\u73af\u7ed5\uff0c\u91c7\u75289:16\u7ad6\u5c4f\u6a21\u5f0f\u3002 \n\nSource sentence: The restaurant is"} +{"id": "0006941", "video_name": "359b0b8b-5c46-5bb5-8d34-461337d80a97", "text": "\u653e\u5927\u62cd\u6444\u5c0f\u7834\u955c\uff0c\u53cd\u5c04\u51fa\u4e09\u4e2a\u4eba\u7ad9\u5728\u58ee\u4e3d\u7684\u5c71\u9876\u4e0a\uff0c\u6708\u98df\u671f\u95f4\u3002"} +{"id": "6003306", "video_name": "4cc512f6-82e0-5302-95fa-3d2fa30d514a", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u5730\u4e0b\u5ba4\uff0c\u91cc\u9762\u6709\u4e00\u5f20\u5927\u5e8a\u3001\u4e00\u53ea\u7bb1\u5b50\u3001\u4e00\u5f20\u684c\u5b50\u548c\u4e00\u4e2a\u6b66\u5668\u67b6\u3002"} +{"id": "0004191", "video_name": "04cefd0b-697c-5f22-922a-7981df4c2d3c", "text": "\u4e00\u4e2a\u4eba\u5728\u6124\u6012\u623f\u95f4\u91cc\u7ffb\u684c\u5b50\u3002"} +{"id": "3004524", "video_name": "d92fc1af-78e5-5b8d-9a96-aa8d82d75026", "text": "\u4e00\u4e2a\u5438\u8840\u9b3c\u5e7b\u706f\u7247\u6050\u6016\u6f2b\u753b\u8fde\u73af\u753b"} +{"id": "8003637", "video_name": "8b6afc84-5510-536e-a80c-91ea6c129995", "text": "\u4e00\u5bf9\u5e74\u8f7b\u7684\u65e5\u672c\u52a8\u6f2b\u60c5\u4fa3\u5728\u4e1c\u4eac\u8d2d\u7269\u4e2d\u5fc3\u6563\u6b65\u3002"} +{"id": "2005029", "video_name": "151f9f1a-b6f3-5c9e-877a-0542d2c4b39d", "text": "\u4eba\u4eec\u5728\u591c\u665a\u5feb\u901f\u7a7f\u8fc7\u57ce\u5e02\u3002"} +{"id": "3005213", "video_name": "35ffa388-89d1-5e7d-b7fa-890c568c188f", "text": "1950\u5e74\u4ee3\u7684\u5f71\u7247\u5c55\u793a\u4e86\u4e00\u4e2a\u9b3c\u5c4b\u5d29\u584c\u3001\u7834\u88c2\uff0c\u5185\u90e8\u51fa\u73b0\u4e86\u660e\u4eae\u7684\u5149\u8292\u3002"} +{"id": "3004532", "video_name": "a066ec46-8149-5158-ae1b-476199afdc81", "text": "\u4eba\u4eec\u66b4\u52a8\uff08\u9ad8\u8d28\u91cf\uff0c\u80cc\u666f\u6709\u5efa\u7b51\u7269\uff0c\u4eba\u6570\u4f17\u591a\uff0c\u8d70\u8def\u52a8\u753b\u6d41\u7545\uff09"} +{"id": "1004075", "video_name": "4b8c4279-e8b1-5ff2-972a-047978dc3baf", "text": "\u827a\u672f\u5bb6Vomir\u5728\u79d8\u9c81\u4e1b\u6797\u4e2d\u8fdb\u884c\u4ed6\u7684\u523a\u8033\u566a\u97f3\u5899\u8868\u6f14\u3002"} +{"id": "6004936", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "\u653e\u5927\u753b\u9762\uff0c\u5c55\u793a\u8389\u8389\u5728\u6751\u5e84\u5e7f\u573a\u6f2b\u6b65\uff0c\u6563\u53d1\u51fa\u5584\u826f\u7684\u5149\u8292\u30028k\u8d28\u91cf\u3002"} +{"id": "8002774", "video_name": "f10dbd20-fc97-59c4-9585-c52923bba2b3", "text": "\u5766\u514b\u5728\u4e00\u5217\u4e2d\u79fb\u52a8\uff0c\u65f6\u95f4\u662f\u4e8c\u6218\u65f6\u671f\u7684\u5927\u7ea61939\u5e74\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "3005577", "video_name": "9e04f558-e2f7-56b6-bf53-3c62ccd9f224", "text": "\u5236\u4f5c\u4e00\u6bb5\u996e\u6c34\u52a8\u753b\u9700\u8981\u5173\u952e\u5e27\u6765\u5448\u73b0\u54bd\u5589\u7684\u541e\u54bd\u8fc7\u7a0b\uff0c\u63a5\u7740\u662f\u6c34\u6d41\u8fdb\u5589\u5499\u5e76\u5411\u4e0b\u6d41\u52a8"} +{"id": "8001508", "video_name": "56cde721-78ce-5d3b-8e91-8aa3d4ef77f2", "text": "\u5b83\u662f\u4e00\u4e2a\u79d8\u5bc6\u7684\u5730\u65b9\uff0c\u5154\u5b50\u8bf4\u3002"} +{"id": "3003773", "video_name": "fe08897d-5492-5f46-8f78-7cabac9e954d", "text": "\u4e00\u4e2a\u72ec\u817f\u4eba\u53c2\u52a0\u8e22\u7403\u6bd4\u8d5b\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3006196", "video_name": "6385faa0-f794-5b9a-b1b1-06f034d58d2a", "text": "1957\u5e74\u7684\u5927\u4f17\u7532\u58f3\u866b\u5728\u6c99\u6f20\u4e0a\u5f00\u8f66\u51b2\u4e0b\u60ac\u5d16\u3002\u6444\u50cf\u673a\u671d\u5411\u6c7d\u8f66\u843d\u4e0b\u60ac\u5d16\u7684\u65b9\u5411"} +{"id": "1006950", "video_name": "7f2a6acb-72be-5cd7-8bcb-c9e5065e1d62", "text": "\u4e00\u5757\u4e0a\u9762\u6d82\u6709\u756a\u8304\u6c64\u7684\u610f\u9762\u3002"} +{"id": "8002544", "video_name": "182c0b67-cd88-58e2-8975-5de973135ebe", "text": "\u9661\u5ced\u7684\u5c71\u4e0a\uff0c\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u8bd5\u56fe\u5c06\u4e00\u5757\u5de8\u77f3\u63a8\u4e0a\u5c71\uff0c\u5c71\u5761\u975e\u5e38\u5e73\u5766\uff0c\u4ed6\u53ef\u4ee5\u5c06\u5de8\u77f3\u63a8"} +{"id": "8002463", "video_name": "7a94b376-d47e-56b9-b267-042567dd0a14", "text": "\u65b0\u590d\u53e4\u58eb\u5175\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u591c\u884c\uff0c\u5409\u683c\u5c14\u98ce\u683c\uff0c\u51e0\u4e4e\u662f\u9ed1\u767d\u7684\uff0c\u7c7b\u4f3c\u82ac\u5947\u7684\u98ce"} +{"id": "2007343", "video_name": "e9db3583-e034-521a-a5fc-a6fc623fdd5f", "text": "\u7ea2\u8272\u7684\u6697\u8840\u50cf\u6d2a\u6c34\u4e00\u6837\u4ece\u6728\u8d28\u8863\u67dc\u4e2d\u6d41\u51fa\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "3003548", "video_name": "52e4a2dd-7ce9-54a4-a093-a62fc577171f", "text": "\u65e5\u843d\u5408\u6210\u6ce2, \u84b8\u6c7d\u6ce2, \u9713\u8679, \u6e05\u6f88\u7684\u5929\u7a7a, \u5c71\u8109\u3002"} +{"id": "1004945", "video_name": "5b6b8713-744b-51c1-9415-1ac4e2909214", "text": "\u5c0f\u9e2d\u88ab\u6cb3\u6c34\u51b2\u8d70\u4e86\uff0c\u5b83\u5413\u574f\u4e86\uff0c\u53d1\u51fa\u5c16\u53eb\u58f0\u3002"} +{"id": "1004237", "video_name": "4e73f659-0998-50da-9474-1dfd9b1eff2b", "text": "\u4e00\u4e2a\u6742\u6280\u6f14\u5458\u5728\u7d27\u7ef7\u7684\u7ef3\u7d22\u4e0a\u4fdd\u6301\u5e73\u8861\uff0c\u5979\u7684\u9762\u5177\u4e0a\u6709\u4e00\u4e32\u7fbd\u6bdb\uff0c\u6bcf\u4e00\u6839\u7fbd\u6bdb\u90fd\u662f\u4e0d\u540c\u7684"} +{"id": "8001037", "video_name": "bbbcde32-bcf2-5f40-8ffc-7ba04d2fa416", "text": "\u65c5\u9986\u5185\u90e8\u56fe\u7247\u7684\u52a8\u753b\u56fe\u50cf"} +{"id": "2004044", "video_name": "88656d53-3528-5107-801b-ccabaadf3a40", "text": "\u7ec6\u80de\u7a7f\u884c\u9759\u8109\u76844K\u7535\u5f71\u822c\u6444\u5f71\u955c\u5934"} +{"id": "4002698", "video_name": "d01e3dee-c429-50a3-9aaf-cdf8b6425173", "text": "\u51e0\u4f55\u8fd0\u52a8\u3001\u7b80\u5355\u6d41\u52a8\u3001\u52a8\u753b\u89c6\u9891"} +{"id": "1006690", "video_name": "7aa01218-9b06-5fe5-bc8b-d37c6a444f78", "text": "\u5fae\u578b\u5f02\u5f62\u5973\u5b69\u8986\u76d6\u7740\u4e59\u70ef\u57fa\uff0c\u9ed1\u955c\u5934\uff0c\u5149\u6ed1\uff0c\u7f8e\u817f\uff0c64k\uff0c\u7f8e\u5b66\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8ba1\u7b97\u673a"} +{"id": "4004040", "video_name": "03d0c425-6f18-596a-8490-182187eac7c3", "text": "19\u4e16\u7eaa\u7684\u8239\u957f\u8dea\u5728\u51b0\u5929\u96ea\u5730\u7684\u5317\u6781\u6df1\u5904\uff0c\u4ef0\u671b\u5929\u7a7a\u7948\u7977\u3002\u79d1\u5e7b\u6050\u6016\u98ce\u683c\u3002"} +{"id": "3003065", "video_name": "772e4512-77f0-5f26-bdd4-9f06ac316a09", "text": "\u4e00\u53ea\u9ca8\u9c7c\u88ad\u51fb\u7a7f\u6bd4\u57fa\u5c3c\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u771f\u5b9e\u573a\u666f\uff0c\u6c34\u9762\u4e0a\u7684\u6444\u50cf\u5934\uff0c\u4fef\u89c6\u89d2\u5ea6\uff0c4K\u3002"} +{"id": "1006103", "video_name": "6ff98dba-6cef-53ae-bdb0-a6547a712ed4", "text": "\u4ece\u524d\uff0c\u5728\u8f89\u714c\u7684\u57c3\u5c14\u591a\u5229\u4e9a\u738b\u56fd\u4e2d\uff0c\u5b58\u5728\u7740\u4e00\u4e2a\u8d85\u8d8a\u8fb9\u754c\u3001\u8ff7\u4f4f\u6240\u6709\u542c\u95fb\u8005\u5fc3\u7075\u7684\u6c38\u6052\u7231"} +{"id": "0004843", "video_name": "10261036-d7e5-59f2-a0c2-e0ffebba55d4", "text": "\u5728\u6d77\u4e0a\u7528\u5e06\u8239\u987a\u98ce\u822a\u884c\uff0c\u5e76\u548c\u6d77\u8c5a\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "6004022", "video_name": "3b688189-9a8c-5f2e-8df5-7a519f05ce44", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u5c06\u624b\u4e3e\u8d77\uff0c\u624b\u53d8\u6210\u4e86\u70df\u96fe\u76844K\u7247\u6bb5\u3002"} +{"id": "7002881", "video_name": "d6afcdd9-4f73-5e60-8fe1-1de9bb2ad39d", "text": "\u65e5\u672c\uff0c\u96e8\uff0c\u591c\u665a\uff0c\u79cb\u5b63\uff0c\u5e7b\u60f3\uff0c\u53e4\u8001\u7684\u73af\u5883\uff0c\u7ebf\u63cf\u827a\u672f\u98ce\u683c\uff0c\u706b\uff0c\u6076\u9b54\uff0c\u7cbe"} +{"id": "7002583", "video_name": "95ca3778-6522-5b12-a2b3-dbc83552c385", "text": "\u6218\u4e89\uff0c\u9ed1\u8272\u5929\u7a7a\u4e2d\u7684\u5bfc\u5f39\u8bd5\u9a8c\uff0c\u7d27\u5f20\u523a\u6fc0\u7684\u573a\u9762\uff0c\u6444\u50cf\u673a\u62c9\u8fdc\uff0c\u4e0d\u7a33\u5b9a\u7684\u6ce2\u52a8\u3002"} +{"id": "7004036", "video_name": "e8367194-7d32-52d4-ad48-c0b5f5e77971", "text": "\u82ac\u6069\u662f\u4e00\u6761\u5c0f\u800c\u80c6\u602f\u7684\u9c7c\uff0c\u9047\u5230\u4e86\u4e00\u4e2a\u4f18\u96c5\u7684\u6d77\u9f9f\u540d\u53eb\u7279\u838e\uff0c\u5979\u63d0\u8bae\u966a\u4f34\u4ed6\u4e00\u540c\u6df1"} +{"id": "1005939", "video_name": "6d26e3b3-7ea3-55fc-9c3f-b52b36b61101", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u5973\u5b69\u5728\u508d\u665a\u65e5\u843d\u65f6\u9a91\u7740\u9a6c\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "0004352", "video_name": "07931dc4-446a-5ac0-9e5f-e19b4c303978", "text": "\u5b8c\u6574\u7684\u573a\u666f\uff0c\u4e09\u4e2a\u5a74\u513f\u54f2\u5b66\u5bb6\uff0c\u82cf\u683c\u62c9\u5e95\u5a74\u513f\uff0c\u67cf\u62c9\u56fe\u5a74\u513f\uff0c\u4e9a\u91cc\u58eb\u591a"} +{"id": "4002747", "video_name": "4b1ea5bc-5d80-539b-98b7-8597ea037313", "text": "\u7f57\u5e03\u4e50\u601d\u7684\u65b0\u624b\u5728\u5546\u573a\u548c\u53f2\u8482\u6587\u5b87\u5b99\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "8001819", "video_name": "1fc76f68-cc20-5de9-9f5d-3610a7f9a6d5", "text": "\u827e\u8389\u4e9a\u548c\u745e\u514b\u4e0e\u5176\u4ed6\u79d1\u5b66\u5bb6\u4e00\u8d77\u8bbe\u8ba1\u65b0\u7684\u592a\u7a7a\u63a2\u6d4b\u5668\u5e76\u89c4\u5212\u672a\u6765\u7684\u592a\u7a7a\u63a2\u7d22\u3002"} +{"id": "2005708", "video_name": "31b5803a-9581-5e24-a1d5-4decc2ae0955", "text": "\u82f1\u6587\u539f\u53e5\uff1aa Long fight between heroes and villains\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u548c\u53cd\u6d3e\u4e4b\u95f4\u7684\u957f\u671f\u6218\u6597\u3002"} +{"id": "0006380", "video_name": "2b74fb8b-0e94-56c2-9b38-c8ad37878455", "text": "\u57283D\u6a21\u5f0f\u4e0b\u5c06\u56fe\u50cf\u987a\u65f6\u9488\u65cb\u8f6c90\u5ea6\u3002"} +{"id": "7002748", "video_name": "c71fd77c-00b0-56b6-beea-016cd8cdd11e", "text": "\u5728\u8001\u9152\u5427\u5531\u6b4c\uff0c\u4e0e\u8001\u660e\u661f\u4e00\u8d77\u6447\u6446\uff0c\u4e3a\u4e86\u540d\u58f0\u800c\u6d3b\u3002"} +{"id": "3004346", "video_name": "e765d4cc-fcdc-567e-85ea-2d4756c89426", "text": "\u6751\u5e84\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\uff0c\u5bf9\u52a8\u7269\u548c\u9e1f\u7c7b\u6709\u7740\u5f3a\u70c8\u7684\u70ed\u60c5\u3002"} +{"id": "0006154", "video_name": "2771135f-5e22-567b-a149-232581c1358c", "text": "\u521b\u9020\u4e00\u4e2a\u5feb\u901f\u65cb\u8f6c\u7684\u7a7a\u95f4\u7ad9\u3002"} +{"id": "2003538", "video_name": "4b2b2540-d381-5510-be4a-c91f898ac00b", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u88d9\u5b50\u3001\u4ee5\u9ec4\u91d1\u65f6\u4ee3\u9b45\u529b\u4e3a\u98ce\u683c\u7684\u5973\u4eba\uff0c\u5728\u8d70\u5eca\u91cc\uff0c\u8138\u90e8\u7279\u5f81\u5938\u5f20\uff0c\u8fb9\u7f18"} +{"id": "8002832", "video_name": "329f0613-0088-5e31-8ee8-076196f4331f", "text": "\u68ee\u6797\u4e2d\u7684\u9f9f\u5144\u5f1f\u4eec\u6b63\u5728\u804a\u5173\u4e8e\u5c0f\u4e4c\u9f9f\u7684\u4e8b\u60c5\u3002"} +{"id": "3003375", "video_name": "5b12ba55-c66a-579b-96c4-ec7da3671209", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u57289:16\u4ece\u5929\u7a7a\u5760\u843d\u3002"} +{"id": "1006391", "video_name": "74f3f34e-a8c0-54f8-b94a-e2cd2151c10d", "text": "\u5f53\u4ed6\u4eec\u5de5\u4f5c\u65f6\uff0c\u6cf0\u62c9\u4e3a\u884c\u661f\u6ce8\u5165\u4e86\u751f\u547d\uff0c\u521b\u9020\u51fa\u8302\u5bc6\u7684\u68ee\u6797\u3001\u751f\u673a\u52c3\u52c3\u7684\u4e1b\u6797\u548c\u4e30\u5bcc\u591a"} +{"id": "0003155", "video_name": "3831f063-1557-5e72-9715-7ad474f585c8", "text": "\u6234\u5e3d\u886b\u7684\u7537\u5b50\u5728\u57ce\u5e02\u7684\u591c\u665a\u884c\u8d70\uff0c\u89c6\u9891\u957f\u5ea6\u4e3a15\u79d2\u3002"} +{"id": "4002469", "video_name": "2f45b21a-f700-5f4e-8b1a-1375dee5a1f3", "text": "\u4e00\u4e2a\u79cb\u5b63\uff0c\u5c71\u6797\u6709\u6e05\u65b0\u7684\u7011\u5e03\uff0c\u718a\u3001\u9e7f\u3001\u9b23\u72d7\u548c\u5927\u8c61\u5728\u5730\u4e0a\u5b09\u620f\uff0c\u8001\u9e70\u5728\u5929"} +{"id": "3003126", "video_name": "18548f44-8714-5580-b5d6-d8e2af5929e6", "text": "\u4e00\u53ea\u732b\u8ddf\u968f\u7740\u4e00\u53ea\u9003\u8dd1\u7684\u72d7\u3002"} +{"id": "7003321", "video_name": "ec919910-375d-5193-ba31-7568b9bf481d", "text": "\u4e24\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u7a7f\u8fc7\u4eba\u7fa4\uff0c\u5468\u56f4\u662f\u84dd\u8272\u548c\u7eff\u677e\u77f3\u8272\u7684\u6d77\u6c34\u3002"} +{"id": "3005504", "video_name": "3ede4a93-92bb-534e-8b0d-13f76c364646", "text": "\u4ece\u90a3\u5929\u8d77\uff0c\u6885\u591a\u7ef4\u5c14\u7684\u5c45\u6c11\u660e\u767d\u4e86\u6210\u529f\u6709\u65f6\u4f1a\u6765\u81ea\u6700\u4e0d\u53ef\u80fd\u7684\u5730\u65b9\uff0c\u8bc1\u660e\u6709\u65f6\uff0c\u610f\u5916\u80dc\u5229\u662f\u6700\u751c\u7f8e\u7684"} +{"id": "4003958", "video_name": "885c53ca-faac-53e2-99bd-66f611d84ca8", "text": "\u6709\u4e24\u4e2a\u5973\u5b69\u5b50\uff0c\u5979\u4eec\u90fd\u662f14\u5c81\u7684\u670b\u53cb\uff0c\u653e\u5b66\u56de\u5bb6\u65f6\u5728\u8def\u4e0a\u53d1\u73b0\u4e86\u4e00\u4e2a\u5e9f\u5f03\u7684\u6a71\u67dc\u3002\u5176\u4e2d\u4e00\u4e2a\u5973\u5b69\u5b50\u8fdb"} +{"id": "1004563", "video_name": "54bc1c1b-9a30-59ef-aeb0-697974afa419", "text": "\u53e4\u4ee3\u82cf\u7f8e\u5c14\u4eba\u72e9\u730e\u8fc7\u5927\u8c61\u3002"} +{"id": "0004538", "video_name": "0ad9f20a-9554-5f92-9b7e-f6c6de479d86", "text": "\u751f\u65e5\u3001\u8721\u70db\u3001\u7231\u3001\u6c34\u5f69\u3001\u5728artstation\u4e0a\u6d41\u884c\u3001\u9510\u5229\u7126\u70b9\u3001\u5de5\u4f5c\u5ba4\u7167\u7247\u3001\u590d\u6742\u7ec6\u8282\u3001\u9ad8\u5ea6\u8be6"} +{"id": "3005337", "video_name": "552f5ed1-6c9b-50c1-b93e-bb001690e7e1", "text": "\u4e00\u4e2a\u7a7f\u7740\u5916\u5957\u624b\u4e2d\u62ff\u7740\u4e00\u676f\u5a01\u58eb\u5fcc\u7684\u7537\u4eba\uff0c\u955c\u5934\u653e\u5927\u5230\u4ed6\u624b\u548c\u676f\u5b50\u4e0a\u3002"} +{"id": "7002342", "video_name": "a148aa56-a372-5cb6-9fa8-65039290e922", "text": "\u706b\u5c71\uff0cCharles E. Perugini\u7684\u4f5c\u54c1\uff0cFred Sandback\u7684\u4f5c\u54c1\uff0cRenne Magritte\u7684\u4f5c\u54c1\uff0cMax Ernst\u7684\u4f5c\u54c1\u3002"} +{"id": "1004615", "video_name": "55d4068c-5dbc-58ae-8372-e29e236fce3c", "text": "\u5728\u68ee\u6797\u4e2d\u8fdc\u8db3\u7684\u771f\u5b9e\u5973\u6027\u7167\u7247\uff0c\u80cc\u666f\u4e2d\u53ef\u4ee5\u770b\u5230\u963f\u5c14\u5351\u65af\u5c71\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\u7167\u5c04\u3002"} +{"id": "2005226", "video_name": "8e7e8463-97e1-53b7-984f-3876180b7670", "text": "\u6885\u897f\u5728\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u9762\u524d\u97a0\u8eac\u5e76\u53e9\u62dc\u7684\u89c6\u9891\u3002"} +{"id": "3004233", "video_name": "b628e2f5-bf29-5d6b-af7e-616fca845cff", "text": "\u4e00\u4f4d\u68d5\u53d1\u5973\u5b69\u6234\u7740\u540a\u5e26\u5728\u6851\u62ff\u623f\u4e2d\uff0c\u8d85\u903c\u771f\u9ad8\u6e05\u3002"} +{"id": "8003028", "video_name": "f5453d00-ce34-5f4c-acec-fa6de76d7a54", "text": "\u955c\u5934\u62c9\u8fd1\uff0c\u4e00\u628a\u957f\u957f\u7684\u91d1\u8272\u5251\u95ea\u8000\u7740\u5149\u8292\uff0c\u80cc\u666f\u662f\u4e00\u573a\u50f5\u5c38\u6218\u6597\u3002"} +{"id": "2007205", "video_name": "dfb31b63-4e4b-5bfa-bce8-31429f67419b", "text": "\u4e2d\u666f\uff0c\u5bf9\u79f0\uff0c\u65f6\u5c1a\u6a21\u7279\u5728\u7a7a\u4e2d\u98de\u7fd4\uff0c\u7c89\u5f69\u8272\u3002"} +{"id": "7003653", "video_name": "bb0a0ace-efa0-548f-8fe1-c033ef660793", "text": "\u8bb8\u591a\u73ab\u7470\u5728\u7eff\u8272\u666f\u89c2\u4e2d\u79fb\u52a8\u3002"} +{"id": "8001656", "video_name": "d2f52379-872b-5068-ac5e-08d7e99f6aa0", "text": "\u660e\u671d\u7684\u4e00\u4e2a\u4eba\u6b63\u5728\u6cb3\u4e0a\u7684\u8239\u4e0a\u4e0e\u4e00\u4e2a\u6e14\u592b\u4e89\u8bba\u3002"} +{"id": "5001109", "video_name": "92d454e1-47c5-5413-b1ec-fc0c367bbd11", "text": "\u624b\u90e8\u53ef\u52a8\u7684\u771f\u5b9e\u957f\u9f3b\u5c0f\u4eba"} +{"id": "7004171", "video_name": "4ca0ffa3-7fbe-55c1-ae94-0dbd6fbddb39", "text": "\u90a3\u4e2a\u60b2\u4f24\u5e76\u5bf9\u81ea\u5df1\u7684\u4eba\u751f\u540e\u6094\u7684\u7537\u4eba"} +{"id": "3003610", "video_name": "5b800be4-7860-53f1-a967-1640f81bc3f0", "text": "\u4e00\u4e2a\u5b81\u9759\u3001\u7530\u56ed\u98ce\u5149\u7684\u6751\u5e84\uff0c\u62e5\u6709\u9c9c\u8273\u7684\u8272\u5f69\u548c\u6b22\u5feb\u7684\u97f3\u4e50\u3002"} +{"id": "6002888", "video_name": "8730471b-9144-5726-a81f-c52974453da9", "text": "\u5c0f\u732b\u5b9d\u5b9d\u5728\u8774\u8776\u7530\u73a9\u800d\u3002"} +{"id": "0006454", "video_name": "2cd157b0-dbef-5078-9cc6-2330362eaa77", "text": "\u8f68\u9053\u6218\u672f\u90e8\u961f\u4e0e\u884c\u661f\u53cd\u6297\u519b\u8054\u624b\uff0c\u6784\u6210\u4e86\u4e00\u5e45\u58ee\u4e3d\u7684\u52a8\u6001\u666f\u8c61\u3002"} +{"id": "0004536", "video_name": "0acb02da-4dd1-5170-b5ff-b1c1e59cdce3", "text": "\u5973\u4eba\u5750\u5728\u5496\u5561\u4e2d\u5fc3\uff0c\u8c08\u8bba\u79bb\u5a5a\u548c\u5fc3\u788e\u3002"} +{"id": "0004994", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "\u5b83\u4f1a\u7ed9\u51fa\u4e00\u573a\u6bd4\u8d5b\u4e2d\u7684\u6c7d\u8f66\uff0c\u5728\u8fd9\u573a\u6bd4\u8d5b\u4e2d\uff0c\u6c7d\u8f66\u4eec\u4f1a\u5728\u5f2f\u9053\u4e0a\u6f02\u79fb\uff0c\u4f9d\u6b21\u6392\u5217\uff0c\u89c6\u9891\u65f6\u957f\u4e3a15\u79d2\u3002"} +{"id": "3005965", "video_name": "6926c169-37b6-544c-84dc-9339aa781e26", "text": "\u5b57\u6bcdV\u65cb\u8f6c180\u5ea6\uff0c\u68c9\u8d28\u7eb9\u740616:9\uff0c\u672a\u6765\u4e3b\u4e49\u5b57\u4f53\u3002"} +{"id": "7003193", "video_name": "838e0e47-dc10-5747-ae0a-657472c3f1f8", "text": "\u5927\u578b\u6218\u6597\u673a\u5668\u4eba\u6cbf\u7740\u4e3b\u8857\u8d70\u52a8\uff0c\u7531\u65b0\u6d77\u8bda\u5236\u4f5c\u3002"} +{"id": "4004069", "video_name": "767bec2c-d9cf-55c0-a7c1-d3dbf4509505", "text": "\u5979\u4ee5\u65e0\u9650\u7684\u597d\u5947\u5fc3\u800c\u95fb\u540d\u3002"} +{"id": "4003250", "video_name": "a9590028-cd4b-57c8-8b30-ea38ebc9e1c2", "text": "\u672a\u6765\u7684\u76ae\u514b\u65af\u98ce\u683c\u767d\u53d1\u5e74\u8f7b\u5973\u5b50"} +{"id": "1006239", "video_name": "724bab4b-a1dc-5a90-b863-fbc6b5562032", "text": "\u5929\u7a7a\u4e2d\u843d\u4e0b\u7684\u70b8\u5f39\uff0c\u4ece\u5730\u9762\u4ef0\u89c6\u3002"} +{"id": "7002933", "video_name": "68723156-1a02-56c9-a5c1-2c4b331674f7", "text": "\u827a\u672f\u8d1d\u9c81\u7279\u98ce\u683c\u4e2d\u6709\u51e0\u4e2a\u7ef4\u5ea6\u95e8\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u666f\u89c2"} +{"id": "4003116", "video_name": "eeef163c-1423-57ce-ab62-d6b54b544f38", "text": "\u4e00\u53ea\u4e8c\u7ef4\u68ee\u6797\u91cc\u7684\u7334\u5b50"} +{"id": "0005616", "video_name": "1e1f89d2-583e-5d73-89af-9c4ef559afbb", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u4e00\u6b21\u75db\u82e6\u7684\u5206\u624b\u4e4b\u540e\u54ed\u6ce3\uff0c\u62ff\u7740\u7eb8\u5dfe\u548c\u7834\u788e\u7684\u5fc3\u3002"} +{"id": "0005638", "video_name": "1e85c846-f05d-5234-affe-815b5e5a13a5", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u670d\u88c5\u7684\u963f\u62c9\u4f2f\u5973\u4eba\u5728\u6c99\u6f20\u4e2d\u9a91\u9a6c\u3002\u6211\u4eec\u5148\u770b\u5230\u4e86\u8fd9\u4f4d\u5973\u58eb\uff0c\u4f46\u5728\u7a0d\u5fae\u5411\u53f3\u79fb\u52a8\u4e00"} +{"id": "2004327", "video_name": "9cd4734e-f649-5ecd-9b26-897620ceada9", "text": "\u6c34\u4e0b\u57ce\u5e02\uff0c\u914d\u6709\u7ade\u6280\u573a\u548c\u7d2b\u8272\u7ae0\u9c7c\u3002\u4fe1\u606f\uff1aAutoGPT Arena\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006085", "video_name": "02c1702b-ccaa-5937-bf57-4c0be6cf8ad6", "text": "\u5927\u8c61\u8d70\u8def\uff0c\u6c7d\u8f66\u5f00\u8fc7\uff0c\u6811\u53f6\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "2005248", "video_name": "e0a51774-714f-59dc-af56-3040577871e8", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u56ed\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u5728\u6cb3\u91cc\u6d17\u6fa1\u3002\n\nSource sentence: I am going to the store to buy some groceries for dinner tonight. \n\u6211\u8981\u53bb\u5546"} +{"id": "2007911", "video_name": "e6b80544-b37f-57f2-9d9f-9a2d8503420b", "text": "25\u5c81\u7684\u739b\u4e3d\u6a21\u7279\uff0c\u7531\u95ea\u8000\u7684\u91d1\u5c5e\u6750\u6599\u6df7\u5408\u91d1\u8272\u96d5\u523b\u800c\u6210\uff0c\u6563\u53d1\u51fa\u8d85\u51e1\u7684\u9b45\u529b\uff0c\u878d"} +{"id": "2006052", "video_name": "c5b4acfc-e1ac-5fb3-8ada-225ea6e78887", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5728\u821e\u53f0\u4e0a\u4e3a\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u559d\u5f69\u3002"} +{"id": "3003933", "video_name": "58ece99d-57d8-58b8-bec4-a3206f2d60fe", "text": "\u516c\u5143\u524d1010\u5e74\uff0c\u5927\u536b\u6210\u4e3a\u4ee5\u8272\u5217\u56fd\u738b\uff0c\u5c06\u8036\u8def\u6492\u51b7\u5b9a\u4e3a\u9996\u90fd\u3002"} +{"id": "1005086", "video_name": "5dcb25fb-a328-54ff-b7e8-ec04df6cc580", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u62fc\u4e00\u5e45\u201c\u7ef4\u7279\u9c81\u5a01\u4eba\u201d\u7684\u62fc\u56fe\u3002"} +{"id": "0003569", "video_name": "3fb89953-c897-55b1-89e7-b61309d6de9f", "text": "\u7537\u4eba\u4fee\u8f66\uff0c\u7535\u5f71\u822c\u7684\uff0c\u903c\u771f\u7684\u3002"} +{"id": "4002677", "video_name": "bd5594d7-085d-5b5b-9a49-34fd6198588e", "text": "\u4e00\u4e2a\u5b69\u5b50\u7537\u4eba\u5728\u5386\u53f2\u6e38\u620f\u4e2d\u5192\u9669\u3002"} +{"id": "4004954", "video_name": "9f8893b9-337d-5064-a6d7-c0d7fe65172d", "text": "\u638c\u58f0\u8d8a\u6765\u8d8a\u54cd\uff0c\u5e37\u5e55\u9010\u6e10\u843d\u4e0b\uff0c\u821e\u53f0\u706f\u5149\u6697\u6de1\uff0c\u7ed3\u675f\u4e86\u7cbe\u5f69\u7684\u6f14\u51fa\u3002"} +{"id": "8003061", "video_name": "77615c74-ffcd-56ac-aba0-73395c06d9cb", "text": "\u68ee\u6797\u4e2d\u7684\u8682\u8681\u3002\u4fe1\u606f\uff1a\u6df7\u6c8c\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0005018", "video_name": "134dd6e5-dfd7-5106-b0a5-1710400488df", "text": "\u5a92\u4f53\u5b9e\u9a8c\u5ba4\u4e2d\uff0c\u914d\u5907\u590d\u53e4\u8d5b\u535a\u670b\u514b\u30014k\u3001\u7535\u5f71\u7ea7\u7684\u663e\u793a\u5668\u548c\u7535\u8111\u3002"} +{"id": "2005230", "video_name": "6794f5dc-19f8-5540-9bd0-a2efd3f7fa37", "text": "\u6ee1\u6708\u4e0b\u7684\u5154\u5b50\uff0c\u4e2d\u56fd\u7684\u591c\u665a\u3002"} +{"id": "6004747", "video_name": "692710d4-aea2-5bbe-b321-eefce9583f19", "text": "\u4e00\u53ea\u76ee\u6807\u6597\u725b\u72ac\u5728\u529e\u516c\u5ba4\u91cc\u5de5\u4f5c\uff0c\u80cc\u666f\u662f\u4e00\u68f5\u5723\u8bde\u6811\u3002"} +{"id": "1006054", "video_name": "6f244979-6481-5d03-ab1e-d99084fab122", "text": "\u5fb7\u53e4\u62c9\u5728\u4e00\u5bb6\u9152\u5427\u91cc\u559d\u4e00\u54c1\u8131\u7684\u8840\uff0c1985\u5e74\u3002"} +{"id": "2005991", "video_name": "c9bd299e-3ce7-5f4d-a3c5-ca8206be4543", "text": "\u751f\u6210\u4e00\u4e2a\u6709\u8da3\u7684\u573a\u666f\uff0cPiko\u9ad8\u5174\u5730\u7a7f\u7740\u5723\u8bde\u5e3d\u5728\u96ea\u5730\u91cc\u73a9\u800d\uff0c\u5176\u4ed6\u68ee\u6797\u91cc\u7684\u670b\u53cb\u4e5f\u52a0\u5165\u5230\u8282"} +{"id": "0006990", "video_name": "36598de4-609f-51e1-ada0-1b13d0370482", "text": "\u751f\u6210\u4e00\u5f20\u4f20\u7edf\u670d\u9970\u4e0b\u3001\u624b\u6301\u5251\u6216\u77db\u3001\u5a01\u6b66\u52c7\u731b\u7684\u66fc\u5c3c\u666e\u5c14\u6885\u6cf0\u65cf\u6218\u58eb\u7684\u5f62"} +{"id": "4004506", "video_name": "2e2df06f-1d00-5395-8ede-7ffe07972813", "text": "\u5409\u4ed6\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u5728\u661f\u7403\u4e4b\u95f4\u79fb\u52a8\uff0c\u8ba9\u97f3\u4e50\u6ef4\u843d\u5728\u5730\u7403\u4e0a\uff0c\u7f13\u6162\u79fb\u52a8\u7684\u4e91\u56e2\u3002"} +{"id": "8001811", "video_name": "7892726a-fbb5-51db-8cc4-b64e1bff1453", "text": "\u5b66\u9662\u98ce\u84dd\u8272\u886c\u886b\uff0c\u5361\u5176\u88e4\u7a7f\u7740\u7684\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "0005507", "video_name": "1c069c4a-db68-5d09-96f1-7a9cc3df1951", "text": "\u4e00\u665a\u4e0a\uff0c\u4e00\u4e2a\u7537\u5b69\u770b\u7740\u6708\u4eae\u3002"} +{"id": "7003980", "video_name": "f248ecae-5f80-5ca2-82b0-8a34b01da8ea", "text": "\u4e00\u6bb516:9\u5927\u5c0f\u7684\u96e8\u6ef4\u4ece\u5929\u7a7a\u843d\u4e0b\u7684\u89c6\u9891\u3002"} +{"id": "1006959", "video_name": "7f575563-a977-56dc-8e5d-7b26b08bd4f0", "text": "\u529f\u592b\u4eba\u8df3\u8fdb\u5929\u7a7a\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u7761\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "0004865", "video_name": "108b4885-adc2-5386-b49e-1a746e453750", "text": "22\u4e16\u7eaa\u7684\u672a\u6765\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u516b\u89d2\u6e32\u67d3\uff0c4K\uff0c8K\u3002"} +{"id": "7002652", "video_name": "c3965c1d-1152-550c-b528-3766b6f4c943", "text": "\u6b7b\u795e\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u7167\u7247\uff0c\u6a21\u62df\u80f6\u7247\u3002"} +{"id": "3005899", "video_name": "3346f2c0-7f49-53a2-93ce-5687a0bddc1c", "text": "\u6a21\u7279\u88ab\u82b1\u73af\u7ed5\uff0c\u98ce\u5439\u52a8\u3002"} +{"id": "2005673", "video_name": "08961390-c3a0-5a11-a9b4-c919ef1fcf75", "text": "\u6211\u59bb\u5b50\u53ea\u662f\u60f3\u548cTrey Songz\u4e00\u8d77\u805a\u4f1a\u3002"} +{"id": "6004411", "video_name": "e1907491-bb2b-57e6-92e9-8ec426a5ac94", "text": "\u5728\u5370\u5ea6\u5730\u56fe\u4e0a\u7f29\u653e\u5965\u91cc\u8428\u90a6\u3002"} +{"id": "1003831", "video_name": "46b8e04b-60b2-566b-9e72-20f8caa8a5e2", "text": "\u91cc\u7ea6\u70ed\u5185\u5362\u7684\u9ad8\u901f\u5217\u8f66\u7ad9\u57282010\u5e74\u4ee3\u5efa\u6210\u3002"} +{"id": "0006586", "video_name": "2f0f26a3-ea01-5be2-8600-5089a29f711f", "text": "\u4e24\u5f20\u9762\u5b54\u5728\u6c99\u6f20\u4e2d\u878d\u5408\uff0c\u62bd\u8c61\u7684\u827a\u672f\u6c1b\u56f4\uff0c\u7a7f\u7740\u7ea2\u767d\u670d\u88c5\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u7684\u5149\u7ebf\u3002"} +{"id": "6002355", "video_name": "08b29478-d1d5-5245-9dbc-da91723419f9", "text": "\u6ce2\u97f3\u98de\u673a\u53d1\u52a8\u673a\u5728\u98de\u884c\u4e2d\u8d77\u706b\u3002"} +{"id": "2006185", "video_name": "5845bb8b-ef30-5920-a7d9-e4e974e516e7", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5199\u4f5c\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96ea\u3002"} +{"id": "7004737", "video_name": "c26589b7-d274-547a-849d-694828870746", "text": "\u521b\u5efa\u4e00\u4e2a\u5973\u4e3b\u4eba\uff0c\u5efa\u8bae\u4e00\u4e2a\u89e3\u51b3\u65b9\u6848\uff0c\u5e76\u5728\u5de6\u4fa7\u663e\u793a\u89e3\u51b3\u65b9\u6848\u6587\u672c\u3002"} +{"id": "8003792", "video_name": "90210993-c415-52ef-b403-a1ca2f7d15da", "text": "\u5c55\u793a\u7e41\u5fd9\u529e\u516c\u5ba4\u4e2d\u5404\u79cd\u4eba\u5458\u6d3b\u52a8\u7684\u89c6\u9891\uff0c\u4eba\u50cf\uff0c\u903c\u771f\u3002"} +{"id": "3003997", "video_name": "34c8c151-e161-53ce-92ae-bb39562cb568", "text": "\u4e9a\u6d32\u7537\u5b69\u7684\u7b11\u8138"} +{"id": "3006545", "video_name": "4b143048-5973-5a96-84e6-44e03d307dd9", "text": "\u5411\u827e\u5c14\u838e\u548c\u5b89\u5a1c\u8bb2\u6545\u4e8b\u3002"} +{"id": "0004326", "video_name": "07257020-a9f7-5a6b-844c-ad10da93c95e", "text": "\u585e\u7eb3\u6cb3\u5df2\u7ecf\u53d8\u6210\u4e86\u4e00\u4e2a\u88ab\u6c61\u67d3\u7684\u5e9f\u5730\u3002"} +{"id": "3005356", "video_name": "9bc53e2c-09c9-5002-b62c-4212a057e891", "text": "\u7537\u4eba\u62ff\u7740\u624b\u7535\u7b52\uff0c\u5904\u4e8e\u9ed1\u6697\u573a\u666f\u4e2d\uff0c\u5411\u5de6\u8fb9\u8d70\uff0c\u5728\u6574\u4e2a\u573a\u666f\u7684\u5de6\u89d2\u843d\uff0c\u5c06\u624b\u7535\u7b52\u6307\u5411\u4ed6\u53f3\u8fb9\u7684"} +{"id": "0005273", "video_name": "179ef0ce-7c83-5e26-b1f3-42d567f16efb", "text": "3D\u52a8\u753b\uff0c\u4e00\u4e2a\u5305\u542b\u201cIrongmara\u5b66\u6821\u201d\u5b57\u6837\u7684\u903c\u771f\u7684\u6a2a\u5e45\u5728\u5b66\u6821\u524d\u9762\u3002"} +{"id": "4004163", "video_name": "395bb680-6727-5577-a325-05dd2349dee3", "text": "\u5c0f\u5973\u5b69\u5728\u66b4\u98ce\u96e8\u7684\u591c\u665a\u5728\u65c5\u5e97\u623f\u95f4\u91cc\u611f\u5230\u5bb3\u6015\u3002"} +{"id": "5001922", "video_name": "ffd3e6b4-fb7a-53cf-b1f4-5e22281f0eaf", "text": "\u7f8e\u4e3d\u7684\u5c24\u5361\u5766\u739b\u96c5\u6751\u5e84\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003157", "video_name": "31b13a3a-230a-551e-8bda-ad2b65cf599c", "text": "\u5973\u5b69\u5728\u7b14\u8bb0\u672c\u4e0a\u753b\u6280\u672f\u84dd\u56fe\u3002"} +{"id": "2003332", "video_name": "afecd975-7794-571f-b584-d255c0496e72", "text": "1940\u5e74\uff0c\u5728\u5357\u6781\u6d32\u4e0a\uff0c\u51e0\u540d\u5fb7\u56fd\u519b\u5b98\u8d70\u5411\u4e00\u67b6\u964d\u843d\u7684\u5de8\u578bUFO\uff0c\u8fd9\u662f\u4e00\u90e8\u53e4\u8001\u7684\u9ed1\u767d\u7535"} +{"id": "3004526", "video_name": "e49fe796-4239-56b9-9c63-54a6c3ec2144", "text": "\u4e00\u4e2a\u4eba\u5411\u5de6\u8d70\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u7684\u8f6e\u5ed3\u8fc7\u5ea6\u66dd\u5149\uff0c\u660e\u4eae\u53d1\u5149\uff0c\u6a21\u7cca\u4e0d\u6e05\u3002"} +{"id": "0005614", "video_name": "1e0c02ac-1bcf-5b48-b719-ac84ef88969a", "text": "\u592a\u7a7a\u8239\u4ee5\u795e\u79d8\u5149\u675f\u60ac\u6d6e\u4eba\u4eec\u5728\u96f6\u91cd\u529b\u73af\u5883\u4e0b\u3002"} +{"id": "6003499", "video_name": "2bcfab09-e9fb-5fc5-a4fc-e839a56f430c", "text": "\u5728\u6e58\u897f\u9a7e\u9a76\u5c38\u4f53\u7684\u4e00\u4e2a\u4eba\u7a7f\u7740\u9053\u58eb\u670d\u88c5\uff0c\u9a7e\u9a76\u7740\u4e00\u7fa4\u884c\u8d70\u7684\u5b9e\u4f53\u3002"} +{"id": "3006382", "video_name": "65be7eaf-fe9a-562a-bff0-00f58f5642d2", "text": "\u5916\u661f\u884c\u661f\u5728\u661f\u7a7a\u4e2d\u95ea\u8000\u53d1\u5149\u3002"} +{"id": "8001681", "video_name": "52cff279-44c6-55e9-a78a-c2fabfa38474", "text": "\u6c64\u59c6\u732b\u9a91\u7740\u81ea\u884c\u8f66\u5728\u6d77\u5e95\u3002"} +{"id": "7003093", "video_name": "505c88a3-28cd-58c9-a354-2e50647ac9b8", "text": "\u5728\u4e00\u4e2a\u7a7a\u65f7\u7684\u516c\u5171\u5e7f\u573a\u4e0a\uff0c\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u7ad9\u7740\uff0c\u624b\u6301\u6269\u97f3\u5668\u5927\u58f0\u547c\u558a\uff0c\u4ed6\u4eec\u7684\u8bdd\u8bed\u56de\u8361\u5728\u5efa\u7b51\u7269"} +{"id": "3005076", "video_name": "e95d44bd-df24-5cd7-ba27-fd267770908d", "text": "\u4e00\u4f4d8\u5c81\u68d5\u53d1\u5973\u5b69\u7684\u751f\u65e5\u6d3e\u5bf9"} +{"id": "8002666", "video_name": "7beb2f87-777e-598e-98a1-b6bc22983541", "text": "\u660e\u667a\u7684\u8001\u732b\u5934\u9e70\u6816\u606f\u5728\u6811\u679d\u4e0a\uff0c\u5531\u7740\u667a\u6167\u4e4b\u6b4c\u3002"} +{"id": "2003897", "video_name": "f2cf0017-dc51-55d4-a499-4c0f0d334f18", "text": "\u89d2\u6597\u58eb\u8fdb\u5165\u7f57\u9a6c\u5927\u7ade\u6280\u573a\uff0c\u7070\u8272\u7684\u70df\u96fe\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "6003327", "video_name": "43acc82f-3330-5780-b700-9aa2db541f80", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u7537\u5b69\uff0c\u5728\u4e1b\u6797\u4e2d\u9a91\u7740\u5c0f\u6050\u9f99\u98de\u5954\u3002"} +{"id": "2006040", "video_name": "900ff8e3-c7c5-557a-b207-ed625663ea87", "text": "\u53f2\u524d\u4eba\u7c7b\u5750\u5728\u6d1e\u7a74\u91cc\uff0c\u88ab\u5916\u661f\u4eba\u63a2\u8bbf\u3002"} +{"id": "1003025", "video_name": "378b3584-51c9-5a3e-800b-88927bef7211", "text": "\u957f\u9888\u9e7f\u548c\u9a6c\u662f\u4e24\u4f4d\u597d\u670b\u53cb\uff0c\u80a9\u5e76\u80a9\u5730\u8e0f\u4e0a\u65c5\u9014\uff0c\u6b65\u5165\u8352\u91ce\u7684\u5927\u8349\u539f\uff0c\u5c31\u50cf\u8fea\u58eb"} +{"id": "6004215", "video_name": "d6291f6a-da77-5da4-9e55-1694a06b8bb9", "text": "\u73b0\u4ee3\u4eff\u751f\u673a\u5668\u4eba\u5728\u706b\u661f\u4e0a\u7684\u52a8\u4f5c\u7535\u5f71\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "5001921", "video_name": "46f1aade-cf9f-5ca5-870d-574b513e1cdd", "text": "\u5728\u767d\u9ec4\u8272\u80cc\u666f\u4e0a\uff0c\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u8f7b\u76c8\u666f\u89c2\uff0c\u8bbe\u8ba1\u6df1\u601d\u719f\u8651\uff0c\u5145\u8db3\u7684\u5149\u7ebf\uff0c\u79d1\u6280\u548c\u81ea"} +{"id": "8002082", "video_name": "92563d24-94cb-5ef7-a070-1714c46b6890", "text": "\u4e00\u5e45\u878d\u5408\u6c34\u58a8\u548c\u6cb9\u753b\u6280\u6cd5\u7684\u7eda\u4e3d\u753b\u4f5c\uff0c\u63cf\u7ed8\u4e86\u4e00\u4f4d\u70ed\u60c5\u7684\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u8c6a\u534e\u7684"} +{"id": "1004128", "video_name": "4c6ef090-b096-5b51-8d64-541a5904846a", "text": "\u90a3\u4f4d\u82f1\u4fca\u7684\u9752\u5e74\u5750\u5728\u53e4\u57c3\u53ca\u7684\u4e00\u68f5\u6811\u4e0b\u3002"} +{"id": "0003917", "video_name": "45acd3d6-5327-5edd-9a2b-5606b6a8da16", "text": "\u65e5\u51fa\u65f6\u5206\u7684\u5c71\u9876\u4ee4\u4eba\u60ca\u53f9\u3002\u5929\u7a7a\u5728\u8fdc\u5904\u7684\u5c71\u5cf0\u4e0a\u65b9\u9010\u6e10\u5347\u8d77\u7684\u592a\u9633\u7684\u7167\u8000\u4e0b\uff0c\u71c3"} +{"id": "7002151", "video_name": "3b680a70-1cf4-5990-abe3-8cb29476fd3b", "text": "\u7728\u773c\u775b\uff0c\u98d8\u52a8\u7684\u5934\u53d1\u56fe\u50cf\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3003770", "video_name": "36d9a558-3eb7-5150-987b-b87e882aba04", "text": "\u4e00\u68f5\u7f8e\u4e3d\u795e\u5947\u7684\u6811\u4ece\u4e00\u672c\u4e66\u4e2d\u957f\u51fa\u3002"} +{"id": "7002251", "video_name": "ac6f0c7d-b7f5-559d-98e4-2bc2207de81a", "text": "Lily\u4f38\u51fa\u624b\u8fce\u63a5\u5979\u8d70\u8fdb\u95e8\u7684\u7238\u7238\uff0c\u5979\u7684\u5c0f\u624b\u6307\u6d82\u4e0a\u4e86\u5929\u771f\u65e0\u90aa\u7684\u9c9c\u8273\u8272\u5f69\u3002"} +{"id": "3005807", "video_name": "d0ecd2c9-e1ab-5eb6-a195-d1f17bbe1d01", "text": "\u4e00\u4f4d\u5973\u6027\u9713\u8679\u8d5b\u535a\u683c\u5728\u4e00\u4e2a\u8352\u51c9\u7684\u540e\u542f\u793a\u5f55\u666f\u89c2\u4e2d\u884c\u8d70\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "5001255", "video_name": "a6037675-5291-560e-921f-f84522967185", "text": "\u5b63\u8282\u901d\u53bb\u4e86\uff0c\u5947\u602a\u7684\u662f\uff0c\u6211\u4eec\u66fe\u7ecf\u62e5\u6709\u7684\u4e00\u5207\uff0c\u5728\u67d0\u4e00\u5929\u53d8\u5f97\u5931\u843d\u4e86\u3002"} +{"id": "4003632", "video_name": "93234898-30f7-5c30-b8b5-f2ba1be3d412", "text": "\u9ed1\u6697\u7684\u4e16\u754c\u548c\u65e0\u8fb9\u7684\u6df1\u6e0a\u3002"} +{"id": "2003581", "video_name": "e5e16010-ceca-5762-88d7-2f9ca2073cd5", "text": "\u6e38\u8f6e\u5728\u6d74\u7f38\u91cc\u6e38\u6cf3\uff0c\u4e00\u53ea\u8dd1\u6b65\u9e2d\u6cbf\u7740\u5b83\u6e38\u8fc7\u3002"} +{"id": "7002084", "video_name": "f3b0780f-3781-58f5-b0f1-96b073057c57", "text": "\u8d85\u7ea7\u8dd1\u8f66\u7a7f\u8d8a\u5c71\u8109\u3002\u8f66\u5b50\u662f\u84dd\u8272\u548c\u9752\u7eff\u8272\u7684\uff0c\u6709\u4e00\u4e2a\u6270\u6d41\u677f\u3002\u8f66\u7684\u4fa7\u9762\u6709\u4e00\u4e2a\u4e09\u5934\u72d7\u7684\u6807"} +{"id": "2004853", "video_name": "5255970a-b176-5d68-9095-f236b3991dd8", "text": "\u5927\u9ebb\u690d\u7269\u5728\u7530\u5730\u4e2d\u7684\u751f\u957f\u8fc7\u7a0b\uff0c\u65f6\u95f4\u63a8\u79fb\uff0c\u4ece\u5c0f\u5230\u5927\u3002"} +{"id": "1006038", "video_name": "6ee2beab-5cbc-5e25-8f9f-da5244a94798", "text": "\u5c55\u793a\u4e00\u4e2a\u9762\u5e26\u597d\u5947\u8868\u60c5\u7684\u5e74\u8f7b\u7537\u5b69\u8d70\u5411\u7eb3\u5c3c\u7684\u573a\u666f\u3002\u7a81\u51fa\u8001\u5e74\u7eb3\u5c3c\u548c\u5e74\u8f7b\u5b69\u5b50\u4e4b\u95f4\u7684\u5bf9\u6bd4"} +{"id": "1005936", "video_name": "6d15617a-4fad-57e4-aacd-d9506faedcdb", "text": "\u4e00\u4e2a\u597d\u7684\u5706\u5f62\u900f\u660e\u7684\u7ec6\u80de\u5728\u660e\u4eae\u7684\u80cc\u666f\u4e2d\u6f02\u6d6e\u3002"} +{"id": "4002166", "video_name": "de614fdf-ba68-5ac0-a186-1af5b8821998", "text": "\u4e91\u5c42\u6563\u5f00\uff0c\u9732\u51fa\u4e86\u57ce\u5e02\u7684\u666f\u8c61\u3002"} +{"id": "6003203", "video_name": "cc26cb27-0791-5495-8d92-c28c0f09656e", "text": "\u5e74\u8f7b\u7537\u5b69\u4f5c\u4e3a\u4e00\u4e2a\u5361\u901a\u4eba\u7269\u5728\u4ed6\u7684\u4e66\u684c\u524d\u731c\u6d4b\u95ee\u9898\u3002"} +{"id": "7004093", "video_name": "9c51d7b4-d767-56f2-8ccb-54af6cf4b77c", "text": "\u7eff\u8272\u82d4\u85d3\u8d28\u5730\u7684\u76f8\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "7004929", "video_name": "47559a07-1eb9-59d0-a61c-d25778add8c5", "text": "\u4e00\u4e2a\u6781\u5176\u53f2\u8bd7\u822c\u7684\u89c6\u9891\uff0c\u6709\u4e00\u4e2a\u53cd\u6d3e\u89d2\u8272\u3002"} +{"id": "1003386", "video_name": "3e5e7d66-4357-57f8-86be-c24a0f7c8e8f", "text": "\u4e00\u500b\u5c0f\u5c0f\u7684\u767c\u5149\u7684\u8a5e\u5f59\u6f02\u6d6e\u5728\u57ce\u5e02\u4e0a\u65b9\uff0c\u96d9\u773c\u9589\u4e0a\u3002"} +{"id": "4004032", "video_name": "13af0b21-f0a8-54e1-a41d-23c8d35f5ad3", "text": "\u6000\u5b55\u7684\u5988\u5988\u6563\u53d1\u7740\u7f8e\u4e3d\u5b9d\u5b9d\u7684\u5149\u8292\u3002"} +{"id": "2005339", "video_name": "2325c656-76ec-5c26-b047-7ec86be55a85", "text": "\u5728\u4e2d\u4e16\u7eaa\u5c0f\u9547\u4e0a\u5212\u8239\u4e0b\u6cb3\u3002"} +{"id": "7004535", "video_name": "78547923-7111-53dc-9a90-c6d6b6cf89ab", "text": "\u516c\u53f8\u4ecb\u7ecd\u6f14\u8bb2\u3002"} +{"id": "3005641", "video_name": "b1c6630b-d723-5294-8abb-e43538fa92d8", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u5a5a\u793c\u4e0a\u5411\u53e6\u4e00\u4e2a\u4eba\u6cfc\u6c34\u3002"} +{"id": "8001010", "video_name": "864ea5b0-84d7-5bb1-90ad-c89b6b9ec568", "text": "\u7528\u4ee5\u4e0b\u7684\u6587\u5b57\u521b\u4f5c\u4e00\u5e45\u753b\uff1a\"\u4e3a\u4e86\u5b9e\u73b0\u81ea\u5df1\u7684\u613f\u671b\u800c\u52aa\u529b\uff0c\u800c\u975e\u4e3a\u4e86\u51fb\u8d25\u4ed6\u4eba\u800c\u594b\u6597\u3002\""} +{"id": "8003453", "video_name": "cc0b24f0-630e-5efd-9964-416f27b97c16", "text": "\u521b\u9020\u4e00\u4e2a\u62e5\u6709\u8c6a\u534e\u8bbe\u65bd\u548c\u5a31\u4e50\u533a\u7684\u5148\u8fdb\u6708\u7403\u6b96\u6c11\u5730\u5f62\u8c61\uff0c\u901a\u8fc7\u56fe\u50cf\u5c55\u73b0\u6708\u7403\u4e0a\u73b0\u4ee3\u8212\u9002\u7684\u751f\u6d3b\u3002"} +{"id": "1005772", "video_name": "6a393ee2-520e-50b3-9769-abf6d545a64a", "text": "\u5c55\u793a\u4ee5\u52a8\u753b\u98ce\u683c\u5448\u73b0\u7684\u6811\u6728\u88ab\u780d\u4f10\u548c\u68ee\u6797\u51cf\u5c11\u3002"} +{"id": "1006097", "video_name": "6fce10e4-a10c-56ef-92c0-1a7e7c69dbe7", "text": "\u8bb8\u591a\u9ec4\u91d1\u56f4\u7ed5\u7740\u4e00\u5806\u94bb\u77f3\u65cb\u8f6c\u3002"} +{"id": "0004367", "video_name": "07d77af4-21f0-55b9-a5ca-e0ac7ec343bb", "text": "view footage released. \n\n\u6cf0\u5766\u5c3c\u514b\u53f7\u6c89\u8239\u4e8b\u4ef6\uff0c\u51b0\u5c71\u5d29\u584c\uff0c\u8239\u4f53\u7834\u88c2\uff0c\u9e1f\u77b0\u89c6\u89d2\u955c\u5934\u516c"} +{"id": "1003587", "video_name": "4203bde1-5770-5cf7-8385-89a06ea0cd4f", "text": "\u5bb6\u957f\u548c\u5b69\u5b50\u4e00\u8d77\u73a9\uff0c\u7b11\u58f0\u5f25\u6f2b\u3002"} +{"id": "7003865", "video_name": "db8f3e51-b023-5b60-b0a2-60f665070311", "text": "\u4e0d\u53ef\u601d\u8bae\u7684\u673a\u5668\u4ee5\u6781\u5feb\u7684\u901f\u5ea6\u6e05\u6d17\u7897\u789f\u3002"} +{"id": "3005534", "video_name": "badd7329-f7ac-58b9-8c0d-dae1592e027f", "text": "\u7ad9\u5728\u6f6e\u6e7f\u7684\u73bb\u7483\u7a97\u65c1\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2007187", "video_name": "dbb16014-4b1e-5158-b00c-d6123cc467c8", "text": "\u8fd9\u5f20\u56fe\u7247\u8d28\u91cf\u66f4\u597d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001707", "video_name": "89eee424-037f-55f4-ace0-5e49d9cfd421", "text": "\u4e24\u4e2a\u52a8\u753b\u7537\u5b69\u5728\u68ee\u6797\u91cc\u4fa7\u7761\uff0c\u9762\u90e8\u53ef\u89c1\uff0c\u6ee4\u955c\u903c\u771f\u3002"} +{"id": "7003637", "video_name": "5aa213d6-a49c-5fae-8140-43ee30f54635", "text": "\u7537\u5b69\u5728\u4e66\u5e97\u91cc\u5411\u8001\u4eba\u8bf4\u8c22\u8c22\u3002\u653e\u5927\u955c\u3002"} +{"id": "6003840", "video_name": "3998b26b-fe45-51b5-8586-f2af50f3b60b", "text": "\u4e00\u4e2a\u5b69\u5b50\u5750\u5728\u5bb6\u91cc\u7684\u6905\u5b50\u4e0a\uff0c\u900f\u8fc7\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u5f00\u59cb\u5b66\u4e60\u91d1\u878d\u77e5\u8bc6\u3002"} +{"id": "6004925", "video_name": "ee91aa7e-962a-5a19-8c76-165e6d42af9b", "text": "\u60c5\u4fa3\u5728\u5496\u5561\u9986\u91cc\uff0c\u5916\u9762\u4e0b\u7740\u96ea\uff0c\u50cf20\u4e16\u7eaa50\u5e74\u4ee3\u7535\u5f71\u822c\u7684\u9ed1\u767d\u8272\u8c03\u3002"} +{"id": "5001425", "video_name": "505b17aa-a216-58fd-aec3-cffe0bb786ba", "text": "\u7535\u5f71\u822c\u7684\u6bdb\u9aa8\u609a\u7136\u89c6\u9891\uff0c\u5c55\u793a\u7740\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u4eba\u7269\u5728\u4e00\u5ea7\u9648\u65e7\u6050\u6016\u7684\u623f\u5b50\u91cc\u884c\u8d70"} +{"id": "8003782", "video_name": "92962579-f7e4-58c4-a97a-313a3e82e1bd", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u53f2\u8bd7\u7ea7\uff0c\u8fd1\u8ddd\u79bb\u5448\u73b0\u773c\u775b\uff0c\u89c9\u9192\uff0c\u6234\u7740\u9ed1\u8272\u6bdb\u8863\u8fdb\u884c\u529b\u91cf\u63d0\u5347\u573a\u666f"} +{"id": "4004471", "video_name": "adf3e265-f393-580d-b649-dff52ec0995a", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u8dd1\u8fdb\u4e86\u4e00\u4e2a\u5927\u8fea\u58eb\u5c3c\u57ce\u5821\u3002"} +{"id": "2003686", "video_name": "9786e894-abaf-5fa1-b6f2-b4c4c6b38882", "text": "\u7c7b\u4f3c\u4e8e\u865a\u5e7b\u5f15\u64ce\uff0c\u6444\u50cf\u673a\u4ece\u8fdc\u5904\u62c9\u8fd1\uff0c\u671d\u7740\u4e00\u5806\u95ea\u95ea\u53d1\u5149\u3001\u5f62\u72b6\u89c4\u5219\u7684\u91d1\u8272\u7816"} +{"id": "3004038", "video_name": "1d7a1a11-e0a3-557e-8c4c-6517758c0ee4", "text": "\u60f3\u8c61\u81ea\u5df1\u662f\u4e00\u4f4d\u5b64\u7368\u60b2\u50b7\u7684\u8001\u5927\u5b78\u6578\u5b78\u6559\u6388\u3002\u5275\u9020\u4e00\u500b\u5b78\u751f\u5011\u6df7\u6dc6"} +{"id": "3003878", "video_name": "0985438d-d2a6-5654-9528-e5e4b5619014", "text": "\u4e00\u540d\u7537\u5b50\u548c\u4e00\u540d\u5973\u5b50\u4e92\u76f8\u4ea4\u6362\u4e24\u4e2a\u5927\u5fc3\u5f62\u7269\u54c1\u3002"} +{"id": "5001693", "video_name": "b801595a-395d-5f28-bd65-9bac93f3ff04", "text": "\u6c99\u6f20\u573a\u666f\uff0c\u4e00\u67b6\u8e22\u8e0f\u789f\u5f62\u98de\u789f\u5728\u4e0b\u5348\u964d\u843d\u5728\u5e72\u6db8\u7684\u6cb3\u5e8a\u4e0a\uff0c\u964d\u843d\u811a"} +{"id": "1004248", "video_name": "4ea11d56-74a9-5ee3-9664-6a2ac1544ebc", "text": "\u4e00\u53ea\u9752\u86d9\u5728\u6708\u7403\u4e0a\u8ffd\u7403\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u884c"} +{"id": "1003401", "video_name": "3ec65f90-2714-5e43-99a7-4a36ce06a917", "text": "\u7531\u5f69\u8272\u73bb\u7483\u5236\u6210\u7684\u73b0\u4ee3\u4ead\u5b50\u548c\u52a8\u6001\u5f62\u5f0f\u3002"} +{"id": "1003472", "video_name": "404ebf02-11f7-5b0e-a2e4-b2f25a4aa954", "text": "\u4e24\u4e2a\u5b66\u751f\u5728\u8def\u4e0a\u8d70\u7740\uff0c\u5f7c\u6b64\u4ea4\u8c08\uff0c\u4e24\u65c1\u662f\u9ad8\u697c\u5927\u53a6\u3002"} +{"id": "2005820", "video_name": "fb149865-0b16-5ae7-a31d-d41eb6eae0e6", "text": "\u667a\u6167\u8001\u6b3e\u624b\u673a\u5177\u590716:1 4k\u529f\u80fd\u3002"} +{"id": "0003770", "video_name": "4308588a-3af8-502e-9e09-33c8e41fde9a", "text": "\u4e00\u53ea\u8001\u9f20\u5634\u91cc\u53fc\u7740\u9999\u70df\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u671b\u7740\u6708\u5149\u4e0b\u7684\u7530\u91ce\u4e0a\u7684\u6708\u4eae\uff0c\u5f62"} +{"id": "6004898", "video_name": "d04df5e0-a3f5-5948-8893-10436d28a8f2", "text": "\u963f\u9edb\u5c14\u5728\u591c\u665a\u7684\u6811\u6797\u91cc\u3002"} +{"id": "0005058", "video_name": "13e796f9-be9f-58d4-b889-b3182b99ffd4", "text": "\u592a\u9633\u80fd\u5bb6\u5ead\u8f6c\u6362\u5668\uff1a\u767d\u5929\u5230\u591c\u665a\u3002"} +{"id": "6003913", "video_name": "57419f55-378a-5483-b7cc-9b102f43fa41", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u7535\u5f71\u7684\u9009\u84dd\u8272\u6216\u7ea2\u8272\u836f\u4e38\u7684\u573a\u666f\u3002"} +{"id": "3004602", "video_name": "e7afef19-7bbe-5ced-8371-3ae488b183a3", "text": "\u52a8\u753b\u4e2d\u7684\u5e74\u8f7b\u7537\u5b50\u5728\u5b66\u6821\u95ee\u4e86\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "3006533", "video_name": "a27bafce-f4d5-59cd-a219-364b1f2b807e", "text": "\u6728\u5076\u4eba\u5728\u7535\u5b50\u97f3\u4e50\u4e2d\u8df3\u821e\u3002"} +{"id": "7003354", "video_name": "2b5b0550-b3be-5788-ab69-b90c7487d3ce", "text": "\u6211\u5728\u5012\u4e0b\u7684\u6811\u6728\u4e0a\u8fdb\u884c\u957f\u8df3\uff0c\u770b\u7740\u52a8\u6f2b\uff0c\u4eab\u53d7\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u6b23\u8d4f\u4e09\u57fa\u8272\u3002"} +{"id": "0004770", "video_name": "0ef49594-c0cc-55c6-bbb5-beaf4ad3a0c8", "text": "\u5f39\u51fa\u5f0f\u4e66\u7c4d\uff0c\u5e26\u6709\u6298\u53e0\u5c55\u5f00\u7684\u56fe\u4e66\u9986\u5efa\u7b51\u3002"} +{"id": "0005265", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "\u624b\u63d0\u9ad8\u7ea7\u65f6\u5c1a\u5305\u91cc\u5192\u51fa\u4e86\u82b1\u6735\uff0c\u767d\u8272\u80cc\u666f\uff0c\u706f\u5149\u6444\u5f71\u3002"} +{"id": "1004528", "video_name": "541e6b20-a912-5b59-a3f5-762a0ae1a222", "text": "750\u5e74\u4ee3\u7684\u821e\u8005\u7a7f\u7740\u7ea2\u767d\u8272\u7684\u8863\u670d\uff0c\u5728\u5e03\u6717\u514b\u65af\u7684\u9634\u6697\u3001\u6050\u6016\u3001\u53ef\u6015\u7684\u795e\u79d8\u7535\u5f71\u4e2d"} +{"id": "2007049", "video_name": "fa655004-d985-5b5b-b0a1-97a102415c0d", "text": "\u7528\u67d4\u548c\u7684\u5149\u548c\u96e8\u6c34\u7167\u4eae\u5c71\u5ce6\u3001\u623f\u5c4b\u548c\u9053\u8def\uff0c\u4ee3\u8868\u6751\u5e84\u4e2d\u7684\u591c\u665a\u3002"} +{"id": "1003395", "video_name": "3e9d0d13-7ffc-5b1f-ad81-9eba399a4f06", "text": "\u4e00\u5bf9\u6d6a\u6f2b\u7684\u60c5\u4fa3\u6b63\u9a7e\u9a76\u6469\u6258\u8f66\u5728\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u5c71\u533a\u6e38\u73a9\uff0c\u5e76\u4e0e\u4ed6\u4eec\u7684\u4f34\u4fa3\u5ea6\u8fc7\u4e86\u7f8e\u597d\u7684\u65f6"} +{"id": "1003867", "video_name": "47473c57-a1d8-5689-aa1f-6518366ee566", "text": "\u4e00\u4e2a\u5feb\u901f\u878d\u5316\u7684\u51b0\u5ddd\uff0c\u5c55\u793a\u4e86\u6c14\u5019\u53d8\u5316\u7684\u5f71\u54cd\uff0c\u51b0\u5757\u7834\u88c2\u878d\u5165\u6d77\u6d0b\u3002"} +{"id": "4002533", "video_name": "b10d8b1a-d74b-5e0b-adbb-c13a42669622", "text": "\u4e00\u4e2a\u9ad8\u8fbe\u673a\u5668\u4eba\u6162\u6162\u5730\u6c89\u5165\u6d77\u5e95\u3002"} +{"id": "6003449", "video_name": "35a770bc-7004-5298-84d2-60310699ec91", "text": "\u963f\u6ce2\u7f5711\u53f7\u5728\u592a\u7a7a\u4e2d\u98de\u5f80\u6708\u7403\u65f6\u51fa\u73b0\u4e86\u901a\u4fe1\u95ee\u9898\uff0c\u6bcf\u4e00\u79d2\u90fd\u81f3\u5173\u91cd\u8981\uff0c\u6bcf\u4e00\u4e2a\u51b3\u7b56\u90fd\u5173\u7cfb\u5230\u751f\u6b7b\u5b58"} +{"id": "4004187", "video_name": "fe4d2efb-aa64-59be-8c5a-a0731d1c0502", "text": "1985\u5e74UFO\u5185\u90e8\u7684\u955c\u5934\u3002"} +{"id": "1003810", "video_name": "465a8a98-3d4a-5b13-9982-e9aaf80a4c6d", "text": "\u8fd9\u4e2a\u7537\u4eba\u7684\u8138\u5f88\u60b2\u4f24\uff0c\u4ed6\u6234\u7740\u5e3d\u5b50\u3002"} +{"id": "5001075", "video_name": "b4310d3f-fd89-5312-bcb3-68d68674d29b", "text": "\u84dd\u5929\u767d\u4e91\uff0c\u5bf9\u6bd4\u5ea6\u9ad8\uff0c4K UHD\u3002\u4fe1\u606f\uff1a\u73b0\u5728\u70b9\u51fb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5001210", "video_name": "dc258e5c-5d46-5519-a047-f4ff798aa794", "text": "\u4f24\u5fc3\u7684\u544a\u522b\uff1a\n\u2022 Arjun\u548cSneha\u5206\u522b\u7684\u56fe\u7247\uff0c\u4e24\u4e2a\u4eba\u90fd\u542b\u7740\u773c\u6cea\u3002\n\u2022 \u7834\u788e\u7684\u5fc3\u5f62\u7b26\u53f7\u6216\u56fe\u50cf\uff0c\u4ee5\u63cf"} +{"id": "2003775", "video_name": "03f3bafd-0e46-5a30-9bfd-08364668d5e9", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b69\u53d1\u73b0\u4e86\u4e00\u4ef6\u5145\u6ee1\u529b\u91cf\u7684\u53e4\u8001\u9057\u7269\uff0c\u8fd9\u662f\u7531Studio MAPPA\u5236\u4f5c\u7684\u3002"} +{"id": "4003457", "video_name": "cc7397fb-242a-590b-8634-fa9076d94d64", "text": "\u4e00\u4e2a\u591c\u665a\u7684\u5c71\u8c37\uff0c\u6ee1\u5929\u661f\u5149\uff0c\u5176\u4e2d\u592e\u662f\u5929\u874e\u5ea7\u7684\u6807\u5fd7\u3002\u4fe1\u606f\uff1aBianca\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "2004477", "video_name": "ed73b465-680a-57a3-aa25-a30d0c063e3c", "text": "\u7537\u4eba\u4ece\u7011\u5e03\u8df3\u4e0b\uff0c\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "3005058", "video_name": "83b99d0f-d364-50ad-8ba0-8b04f3f72c4a", "text": "\u901a\u8fc7\u5f71\u50cf\u8f6c\u52a8\u753b\u7684\u4f53\u9a8c\uff0c\u901a\u8fc7Cinema 4D\u7684\u9b54\u6cd5\uff0c\u4ee5\u60ca\u4eba\u7684\u7ec6\u8282\u5c06\u4f20\u7edf\u5370\u5ea6\u6751\u5e84\u7684\u9b45\u529b\u5448\u73b0\u3002\u4ece"} +{"id": "3006949", "video_name": "2f65a787-8b25-5f95-855c-132fd8822533", "text": "\u4e00\u53ea\u5927\u6d77\u8c5a\u5e26\u7740\u5b83\u7684\u4e24\u4e2a\u5b69\u5b50\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "2006599", "video_name": "43d5afe4-ad9e-5f2f-a749-dc29ae13cccc", "text": "\u5723\u8bde\u8001\u4eba\u5f00\u7740\u6c7d\u8f66\uff0c\u8eab\u4e0a\u6302\u7740\u94b1\u548c\u73e0\u5b9d\u3002"} +{"id": "2006984", "video_name": "0bd9b53d-27e4-56d2-82ee-91deb280344d", "text": "\u751f\u7684\u7ea2\u8272\u8089\u5728\u6df1\u8272\u80cc\u666f\u4e0a\u3002\u4fe1\u606f\uff1aE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1006334", "video_name": "73e5ea0f-5bbe-5ffa-9007-810c036e6267", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u5e74\u8f7b\u7537\u5b50\u5728\u591c\u665a\u3002\u5728\u4e00\u4e2a\u9ed1\u6697\u3001\u51cb\u655d\u7684\u5730\u65b9\uff0c\u4ece\u4e0a\u65b9\u62cd\u6444\u3002"} +{"id": "2003861", "video_name": "3ed7f02b-708a-5143-83a8-827d7fffa3ba", "text": "\u7537\u5b69\u5728\u5916\u9762\u9ad8\u5174\u5730\u8df3\u8dc3\uff0c\u76f8\u673a\u89d2\u5ea6\u4e0a\u79fb\u5e76\u79fb\u52a8\u3002"} +{"id": "7004710", "video_name": "18e3adb4-43e6-555d-b1f4-6dc0b0f19c91", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u6c99\u6f20\u5728\u57ce\u5821\u91cc\uff0c\u6709\u4e9b\u9e1f\u9003\u51fa\u57ce\u5821\uff0c\u6709\u4eba\u5411\u57ce\u5821\u8d70\u53bb\u3002"} +{"id": "8001464", "video_name": "74093271-9a25-59c8-a1fe-4195729867ad", "text": "\u4e00\u7247\u5929\u7a7a\u6b63\u5728\u8131\u843d\u3002"} +{"id": "3003491", "video_name": "98736a4e-7695-5180-a982-7c7293eb47dd", "text": "\u767d\u7eb8\u5728\u7a7a\u8361\u7684\u623f\u95f4\u91cc\u98d8\u843d\u3002"} +{"id": "3003360", "video_name": "b396a67a-ddfe-5940-b38f-f12d4f4aa830", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u5f69\u8272\u7535\u5f71\uff0c\u5145\u6ee1\u8be1\u5f02\u7684\u6c14\u606f\uff0c\u5e9f\u5f03\u7684\u897f\u90e8\u5c0f\u9547\u5728\u6ee1\u6708\u4e0b\u663e\u5f97\u66f4\u52a0\u6050"} +{"id": "0004464", "video_name": "098105dd-f948-59af-bfba-73cc320e3114", "text": "\u5723\u7ecf\u6545\u4e8b\uff0c\u7ea6\u745f\u592b\u4ece\u7236\u4eb2\u90a3\u91cc\u5f97\u5230\u4e00\u4ef6\u8272\u5f69\u6591\u6593\u7684\u5916\u8863\uff0c\u5e72\u65f1\u7684\u571f\u5730\uff0c\u5723\u7ecf\u65f6\u4ee3"} +{"id": "8002647", "video_name": "e72e0c50-7166-5bde-b3d5-1d8ec7b517aa", "text": "\u6d77\u6ee9\u4e0a\u7684\u6027\u611f\u5973\u5b69\uff0c\u9876\u7ea7\u6a21\u7279\u3002"} +{"id": "8002247", "video_name": "1df8eade-7700-5d60-9c24-9bf13f39c306", "text": "\u7535\u5b50\u670b\u514b\u8033\u673a\u5973\u5b69\u7ad9\u5728\u7535\u5b50\u670b\u514b\u7684\u4e1c\u4eac\uff0c\u96e8\u591c\uff0c\u9713\u8679\u706f\u4e0b\u3002"} +{"id": "2004105", "video_name": "4edcd02d-1b00-585f-9e4f-27422cecf39a", "text": "\u6a59\u8272\u7684\u72d7\u5728\u84dd\u8272\u5c71\u9876\u4e0a\uff0c3D\u7535\u5f71\u822c\u903c\u771f\u3002"} +{"id": "3004950", "video_name": "9e9f4e12-af32-53ff-af41-217a142bd834", "text": "\u4e3b\u89d2\u731b\u70c8\u5730\u6413\u624b\u60f3\u4fdd\u6696\uff0c\u7d27\u7d27\u5730\u628a\u56f4\u5dfe\u88f9\u5728\u5934\u4e0a\u4ee5\u906e\u6321\u54ac\u4eba\u7684\u5bd2\u98ce\u3002"} +{"id": "2003254", "video_name": "d0a8570f-bd7c-53da-9088-2e07f32c5fac", "text": "\u6c49\u5821\u98df\u54c1\uff0c\u667a\u80fd\u3002"} +{"id": "2003555", "video_name": "abf9d740-138d-53a2-80eb-e92b279c0a6f", "text": "\u665a\u4e0a\uff0c\u4e00\u4e2a\u5973\u5b69\u8eba\u5728\u4e00\u5ea7\u65e7\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u6c89\u8ff7\u4e8e\u67d0\u79cd\u60f3\u6cd5\u3002"} +{"id": "8001276", "video_name": "1c31cae1-074e-5651-ac9e-3abd1f914455", "text": "\u7535\u89c6\u65b0\u95fb\u8282\u76ee\u4e3b\u6301\u4eba\u4ee5\u5361\u901a\u5f62\u5f0f\u5448\u73b0\u65b0\u95fb\u3002"} +{"id": "7004380", "video_name": "a95ce121-92da-5d2a-a90a-499ee43c9815", "text": "\u9ed1\u6697\u57ce\u582180\u5e74\u4ee3\u98ce\u683c\uff0c\u5e26\u6709\u7011\u5e03\u3002"} +{"id": "4002255", "video_name": "9297144a-df72-59d1-86fa-a6808ecc38be", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u521b\u9020\u51fa\u738b\u5b50\u7f57\u73ca\u548c\u516c\u4e3b\u8428\u6885\u62c9\u4ee5\u53ca\u4e24\u4e2a\u4ec6\u4eba\u7ad9\u5728\u4e00\u8d77\u7684\u56fe\u7247\u3002"} +{"id": "6003192", "video_name": "c6d43ce1-649a-54a7-ab29-9b1fd511fd3a", "text": "\u4e00\u8258\u8d27\u8f6e\u4ece\u6e2f\u53e3\u9a76\u51fa\u3002\u8fdc\u773a\u3002\u6674\u6717\u7684\u4e00\u5929\u3002"} +{"id": "1005543", "video_name": "660d8abb-fac0-52da-a9d8-1669b83e1a51", "text": "\u4e00\u4e2a\u5c0f\u65f6\u949f\u5185\u4e0d\u518d\u5236\u9020NFT\u52a8\u753b\u3002"} +{"id": "3006356", "video_name": "104f08af-d5f5-5d69-83af-feb8e601564c", "text": "\u9ec4\u91d1\u548c\u73e0\u5b9d\u4f3c\u4e4e\u5728\u5206\u4eab\u65f6\u4f1a\u81ea\u6211\u8865\u5145\uff0c\u4ed6\u4eec\u7ed9\u5f97\u8d8a\u591a\uff0c\u5b83\u4eec\u5c31\u8d8a\u591a\u3002"} +{"id": "3006715", "video_name": "0371b552-f5e0-5b81-9285-09c479fa823b", "text": "\u4e00\u4f4d\u540d\u53ebAna\u7684\u5c0f\u5973\u5b69\u548c\u5979\u7684\u670b\u53cbJack\uff0c\u7ea2\u8272\u7684\u5934\u53d1\uff0c\u84dd\u8272\u7684\u773c\u775b\uff0c\u767d\u8272\u7684\u8863\u670d\uff0c\u80cc\u666f\u662f\u65e5"} +{"id": "6002847", "video_name": "5f4a446d-76b0-59b3-a9b4-19125b0d759f", "text": "\u53bb\u6389\u6587\u5b57\u8ba9\u98df\u7269\u770b\u8d77\u6765\u66f4\u52a0\u7f8e\u5473\u3002"} +{"id": "8003680", "video_name": "fb7bf90a-b3ce-5a32-b8f6-9995e60ef132", "text": "\u521b\u9020\u4e00\u4e2a\u817f\u4e0a\u5e26\u7740\u5409\u4ed6\u7684\u4eba\u3002"} +{"id": "3003508", "video_name": "91da0aff-f4bd-5c4d-a1ec-9c4348aeb0cb", "text": "\u4e00\u79cd\u7535\u8111\u75c5\u6bd2\u611f\u67d3\u4e86\u4fe1\u53f7\u5e76\u5c55\u73b0\u4e86\u4e00\u4e2a\u4e3b\u89c2\u771f\u76f8\uff0c\u5373\u4e16\u754c\u7684\u53d1\u5c55\u60c5\u51b5\u3002"} +{"id": "6004937", "video_name": "bde8570a-7222-5c6d-b9aa-1a6a1f0f819d", "text": "\u8036\u7a23\u8d85\u73b0\u5b9e\u5730\u9605\u8bfb\u5723\u7ecf\u3002"} +{"id": "1006979", "video_name": "7fbb649f-b296-50f8-a61c-293905fc2fbf", "text": "\u4e00\u4e2a\u6027\u683c\u575a\u5b9e\u7684\u5e74\u8f7b\u4eba\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u4ece\u4e0b\u5230\u4e0a\u8d70\u8fdb\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u9ad8\u6e054k\u5206\u8fa8\u7387\u3002\n\nSource sentence: The restaurant"} +{"id": "2007709", "video_name": "66fe12b6-54b1-5f76-af95-3798eb7ee04b", "text": "\u6995\u6811\u3001\u6c34\u7801\u5934\u3001\u516c\u793e\u623f\u5c4b\u9662\u5b50\u8d8a\u5357"} +{"id": "6002488", "video_name": "fdfad6cf-13e2-5755-94f9-91f76dbfe956", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u7a97\u6237\u8fb9\u8bfb\u4e66\uff0c\u9633\u5149\u4ece\u7a97\u6237\u7167\u5c04\u8fdb\u6765\uff0c\u65c1\u8fb9\u653e\u7740\u4e00\u676f\u8336\u3002"} +{"id": "4002795", "video_name": "a931e40d-f2e8-5132-8bbf-2b96f5696ee3", "text": "\u4e09\u4f4d\u5408\u6210\u5668\u6f14\u594f\u5bb6\uff0c\u4e00\u4f4d\u5973\u6b4c\u624b\u3002"} +{"id": "2007779", "video_name": "aeb2867c-1db1-522d-8c4d-c9627c5f2644", "text": "\u84dd\u8272\u81ea\u7531\u7684\u5934\u53d1\uff0c\u7ea2\u8272\u7684\u773c\u775b\uff0c\u5fae\u7b11\u7684\u7c89\u8272T\u6064\uff0c\u9ed1\u8272\u725b\u4ed4\u88e4\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "0003185", "video_name": "38f1cd2b-645e-5a98-8eed-b2b83983688b", "text": "\u53ef\u6015\u7684\u7535\u5f71\u822c\u7684\u65b0\u8fea\u58eb\u5c3c\u513f\u7ae5\u89d2\u8272"} +{"id": "8003417", "video_name": "ff257e73-e9db-57af-9867-62a443f21123", "text": "\u8c2d\u6cbb\u90ce\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u6b63\u5728\u6267\u884c\u4efb\u52a1\uff0c\u6253\u8d25\u9b3c\u821e\u8fbb\u65e0\u60e8\u5e76\u6cbb\u6108\u59d0\u59b9\u82b1\u3002\u4f46\u662f\uff0c\u5728\u8fd9\u4e2a\u8fc7\u7a0b\u4e2d\uff0c\u4ed6"} +{"id": "1004944", "video_name": "5b693af5-38ce-5d1d-b161-53bd82bd9394", "text": "\u4e00\u4e2a\u62ff\u7740\u5723\u7ecf\u548c\u73ab\u7470\u7ecf\u7684\u5c0f\u7537\u5b69\u5728\u9ed1\u6697\u7684\u8def\u4e0a\u884c\u8d70\uff0c\u4ed6\u7684\u978b\u5b50\u6563\u53d1\u7740\u5149\u8292\u3002"} +{"id": "4002463", "video_name": "36cd51cc-9bee-5e31-8189-57adc46fc5de", "text": "\u5c06\u56fe\u50cf\u8f6c\u6362\u4e3a\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "1003508", "video_name": "40d5ee73-377b-5b49-b6ee-444ac9339b61", "text": "\u4e24\u53ea\u773c\u775b\u6389\u4e0b\u6765\uff0c\u7070\u70ec\u843d\u4e0b\u6765\u3002"} +{"id": "1005445", "video_name": "6410f56c-bf38-5b30-9956-3e61e1f2c750", "text": "\u6211\u9700\u8981\u4e3a\u6050\u6016YouTube\u9891\u9053\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\uff0c\u6050\u6016\u4e14\u53ef\u6015\u7684\u6807\u5fd7\uff0c\u9891\u9053\u540d\u79f0\u4e3a\u201c\u72e9\u730e\u6050\u6016\u201d\uff0c3D\u98ce\u683c\u6807"} +{"id": "3003025", "video_name": "082595ad-ac6e-5a6d-9987-1e944eb012e1", "text": "\u4e00\u4e2a\u5305\u542b\u4e00\u652f\u6447\u6eda\u4e50\u961f\u5728\u9762\u5305\u8f66\u91cc\u7684\u56fe\u7247\u3002"} +{"id": "3004944", "video_name": "2aa13718-290d-5305-b2d7-274105f58f71", "text": "\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u6df1\u5904\uff0c\u4f4f\u7740\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb\u2014\u2014\u72ee\u5b50\u548c\u5927\u8c61\u3002\u4ed6\u4eec\u5f62\u5f71\u4e0d\u79bb\uff0c\u5206\u4eab\u7b11\u58f0\u3001\u5192\u9669"} +{"id": "0006522", "video_name": "2dffc99e-c2a0-52a7-896e-801a0995537e", "text": "\u9f99\u98de\u5411\u8fdc\u65b9\uff0c\u5b83\u7684\u8eab\u5f71\u53d8\u5f97\u8d8a\u6765\u8d8a\u5c0f\u3002\u661f\u5149\u8f68\u8ff9\u6162\u6162\u6d88\u5931\uff0c\u4f46\u591c\u7a7a\u4ecd\u7136\u7f8e\u4e3d\u5730"} +{"id": "2006999", "video_name": "fb83215c-feac-5e71-9d11-34ced68eb8ea", "text": "\u591c\u7a7a\u4e2d\u4e0b\u7740\u66b4\u96e8\uff0c\u4fef\u77b0\u7740\u5927\u6d77\u3002"} +{"id": "8002913", "video_name": "100e5ce5-4132-52d3-a67d-0bba24eb2a59", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u65cb\u8f6c\u5b87\u5b99\u7684\u89c6\u9891\u3002"} +{"id": "6002603", "video_name": "df18bf1c-3757-57ff-83e2-9dba222bbd9c", "text": "\u73b0\u4ee3\u5316\u7684\u7cbe\u81f4\u706f\u7b3c"} +{"id": "7003813", "video_name": "aa889512-9379-5b7d-bd5a-31ce6841aaf5", "text": "\u98ce\u66b4\u6b63\u5728\u8fdc\u5c71\u4e0a\u915d\u917f\uff0c\u620f\u5267\u6027\u7684\u9e1f\u7ffc\u89c6\u89d2\u3002"} +{"id": "2007711", "video_name": "5fb5ace0-976b-5283-b74e-60fd0f7579f5", "text": "\u4e00\u5f20\u9ed1\u4eba\u5973\u6027\u7684\u8096\u50cf\u7167\uff0c\u90e8\u843d\u7eb9\u8eab\u7a81\u51fa\u5979\u5f15\u4eba\u6ce8\u76ee\u7684\u7279\u5f81\uff0c\u670d\u9970\u878d\u5408\u4e86\u4f20\u7edf\u548c\u73b0\u4ee3\u5143\u7d20\uff0c"} +{"id": "2006251", "video_name": "8db95fff-e9e7-5519-9e1c-2967950a1f3c", "text": "\u7231\u60c5\u6545\u4e8b\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u795e\u60c5\u6cae\u4e27\u3002\u8fd9\u4f4d\u540d\u53eb\u6770\u514b\u7684\u5e74\u8f7b\u7537"} +{"id": "0003893", "video_name": "4557d86b-cb65-5ca2-bb22-4f22191f4d0c", "text": "\u8b66\u5bdf\u4e50\u961f\u6f14\u5531\u300a\u6211\u4f1a\u770b\u7740\u4f60\u300b\u3002"} +{"id": "4002939", "video_name": "389a3f6a-8c1f-50e8-97a8-fb85eb24ad27", "text": "\u5c71\u6d77\u81ea\u7136\u666f\u89c2\u4e0e\u5c0f\u5c9b\u53d1\u5c55\u6210\u4e86\u793e\u533a\u3002"} +{"id": "1003816", "video_name": "46724a47-89f6-52cd-a401-e3558f36f5d3", "text": "\u5728\u8212\u9002\u7684\u7eff\u8272\u6905\u5b50\u4e0a\u61d2\u6d0b\u6d0b\u5730\u8eba\u7740\u4e00\u53ea\u9762\u5e26\u7b11\u5bb9\u7684\u6a59\u8272\u864e\u6591\u732b\uff0c\u5c3e"} +{"id": "2007264", "video_name": "f982947d-a32d-5771-8d07-bef673c31186", "text": "\u4eba\u7c7b\u601d\u7ef4\u80fd\u60f3\u5230\u7684\u6700\u53ef\u6015\u7684\u56fe\u50cf"} +{"id": "7004404", "video_name": "9a67b9d8-e4c7-5300-aa88-01fd1f5a3da3", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u519c\u573a\u80cc\u666f\uff0c\u52a0\u4e0a\u519c\u573a\u91cc\u7684\u9ed1\u7f8a\uff0c\u519c\u6c11\u548c\u4ed6\u7684\u5b69\u5b50\u8bd5\u56fe\u6293\u4f4f\u5b83\u3002"} +{"id": "6003379", "video_name": "3432485c-26d8-59a7-b290-60cd0981386d", "text": "\u51b0\u7f8e\u5f0f\u5496\u5561\uff0c\u4ea7\u54c1\u6444\u5f71\uff0c\u653e\u5728\u78e8\u7802\u971c\u7eb9\u53f0\u9762\u4e0a\uff0c\u4fa7\u9762\u62cd\u6444\uff0c\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u4e2d\u56fd"} +{"id": "0003686", "video_name": "41b2354e-2c1a-525c-9f58-3a8746341d4d", "text": "\u53d1\u9175\u4ece\u6846\u67b6\u4e2d\u5fc3\u5f00\u59cb\uff0c\u9010\u6e10\u6269\u5927\u3002"} +{"id": "2007042", "video_name": "2c66d9b4-3a90-5da2-96f8-53d541dffa47", "text": "90\u5e74\u4ee3\u7684\u5b69\u5b50\u5728\u5b66\u6821\u821e\u4f1a\u4e0a\u8df3\u9ea6\u514b\u96f7\u7eb3\u821e\u3002"} +{"id": "1004649", "video_name": "56695fa6-ae66-59c9-b3d4-785ad2d894bb", "text": "\u94a2\u94c1\u4fa0\u5728\u592a\u7a7a\u7ad9\u9644\u8fd1\u7684\u536b\u661f\u4e0a\u98de\u884c\u3002"} +{"id": "2004223", "video_name": "c6a76069-0cb8-5716-805f-cf2d30f656b1", "text": "\u4e00\u4f4d\u533b\u751f\u5728\u6cbb\u7597\u4e00\u540d\u5e74\u8f7b\u5973\u5b69\uff0c\u89c6\u9891\u65f6\u957f\u4e3a10\u79d2\uff0c\u683c\u5f0f\u4e3a4K\u3002"} +{"id": "6002508", "video_name": "86ddcd30-fa25-5617-bfcf-cd691a3251c2", "text": "\u4e00\u53ea\u7a7f\u7740\u88d9\u5b50\u7684\u732b\u8d70\u8fc7\u57ce\u9547"} +{"id": "5001189", "video_name": "a5caeb5a-8e00-5e9f-aed7-a308cfeb2a87", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u5e8a\u4e0a\u7761\u89c9\uff0c\u6709\u4e00\u4e2a\u9b3c\u5750\u5728\u4ed6\u7684\u80f8\u53e3\u4e0a\u3002"} +{"id": "7002981", "video_name": "b73db770-0d08-5d65-b783-ca5ed0aae9fe", "text": "\u4e91\u6735\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\uff0c\u6c34\u4ece\u4e0b\u5f80\u4e0a\u6d41\u52a8\uff0c\u8239\u53ea\u987a\u6d41\u800c\u884c\u3002"} +{"id": "8003234", "video_name": "53779c3b-6b03-58aa-b7d2-126b2539392d", "text": "\u7f8e\u4e3d\u3001\u9ad8\u54c1\u8d28\u3001\u52a8\u753b\u3001\u5973\u4eba\u3001\u5947\u5999\u3001\u7a7a\u4e2d\u6e38\u6cf3\u7684\u9c7c\u3001\u4ef0\u671b\u7684\u5973\u4eba\u3001\u7ea2\u8272\u88d9\u5b50\u3002"} +{"id": "8003897", "video_name": "fc21c2fa-225f-5ee3-8191-e619b121e12f", "text": "\u6f02\u4eae\u5927\u6559\u5802\uff0c\u80cc\u666f\u4e2d\u6709\u4eba\u804a\u5929\uff0c\u4e00\u4e2a\u6076\u9b54\u4ece\u6559\u5802\u91cc\u5077\u770b\u3002"} +{"id": "2005954", "video_name": "de50e0cf-8ed4-5d5b-892b-809dc9072ed2", "text": "\u6211\u770b\u5230\u4e24\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u4e3a\u4e86\u4e00\u74f6\u4f0f\u7279\u52a0\u6253\u67b6\u3002"} +{"id": "0005338", "video_name": "19064e05-28a0-5708-a27e-761422c52596", "text": "\u4eba\u4eec\u901a\u8fc7\u624b\u673a\u5728\u57ce\u5e02\u4e2d\u5efa\u7acb\u8054\u7cfb\uff08\u8d5b\u535a\u670b\u514b\u3001\u7535\u5f71\u98ce\u683c\uff09"} +{"id": "0005552", "video_name": "1cbcf042-7c5b-50cf-96f8-032637ce6ecd", "text": "\u65cb\u8f6c\u5404\u79cd\u4e0d\u540c\u56fe\u6848\u7684\u66fc\u9640\u7f57\u7f8e\u5b66\u989c\u8272\u768410\u5206\u949f\u7f8e\u5b66\u89c6\u9891\uff1a\u6697\u73ab\u7470\u8272\uff0c\u9f20\u5c3e\u8349\u7eff\u8272\uff0c"} +{"id": "0006399", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "\u96f7\u65af\u5854\u72ee\u548c\u4ed6\u7684\u5bb6\u4eba\uff0c\u4e09\u53ea\u96cc\u72ee\u3002"} +{"id": "3004788", "video_name": "9dd7e67d-3c36-5d73-aac5-ee0c6c065354", "text": "\u4e00\u4e2a\u5973\u5b69\u72ec\u81ea\u63a2\u7d22\u57ce\u5e02\u7684\u591c\u751f\u6d3b\u3002"} +{"id": "6002687", "video_name": "4deb9433-e351-5c4e-a641-a5c5ec00923c", "text": "\u4e00\u500b\u4e09\u7dad\u9aa8\u67b6\u5728\u9032\u884c\u9ad8\u723e\u592b\u63ee\u687f\u3002"} +{"id": "3006338", "video_name": "3491dc2a-282f-5bef-a6ba-a0496c034f8c", "text": "\u4e00\u5f20\u6f14\u5458\u4f0a\u838e\u8d1d\u62c9\u00b7\u6885\u5c14\u585e\u5fb7\u5fae\u7b11\u7740\u73af\u987e\u56db\u5468\u7684\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5001209", "video_name": "fe8df3a2-5a09-515e-ad7d-2c9ca9a8aee6", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u6c83\u5728\u9999\u6c34\u5e7f\u544a\u4e2d\u8d64\u88f8\u4e0a\u8eab\u3002"} +{"id": "6004095", "video_name": "6564245f-0977-55c2-970e-f2f33c09514c", "text": "\u6bcd\u4eb2\u62b1\u7740\u5b69\u5b50\uff0c\u6211\u80fd\u611f\u53d7\u5230\u7231\u3002"} +{"id": "1005557", "video_name": "664a7a41-e8d1-5c94-ab0a-c794aa48d89e", "text": "Dota2\u7684Huskar\u548cMarvel\u7684Thor\u8fdb\u884c\u6218\u6597\uff0c\u91c7\u7528\u5361\u901a\u98ce\u683c\u3002"} +{"id": "2006673", "video_name": "ca67ddf5-3e77-56c4-91fc-d745b79db552", "text": "\u4fc4\u7f57\u65af\u7684\u963f\u7eb3\u5e15\u5e02\u3002\u5faa\u73af\u52a8\u753b\u3002\u89c6\u9891\uff1a\u6bcf\u79d23\u5e27\u3002"} +{"id": "0006714", "video_name": "318de8b2-5f9f-57fa-9ec4-ad8cf2685791", "text": "\u5929\u7f51\u662f\u4e00\u6761\u5de8\u5927\u7684\u7f51\u7edc\u9f99\u3002"} +{"id": "4003537", "video_name": "c50a82b7-36fb-5800-a33d-1a6d07daf3bf", "text": "\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u9a91\u6ed1\u677f\u8f66\u6cbf\u8857\u800c\u884c\u3002\n\nSource sentence: I love Chinese food, especially dim sum.\n\u6211\u559c\u6b22\u4e2d\u56fd\u98df\u7269\uff0c\u7279\u522b"} +{"id": "3006945", "video_name": "3b524fd6-ad63-5f41-b9a0-274d55da6719", "text": "\u6050\u6016\u7684\u4eba\u773c\u900f\u8fc7\u9ed1\u6697\u770b\u7740\u3002"} +{"id": "2004147", "video_name": "f79bc4e8-f16c-5a2b-b7be-2f116308f1c5", "text": "\u4f60\u80fd\u5728\u8fd9\u5f20\u7167\u7247\u4e0a\u518d\u6dfb\u52a0\u4e00\u4e9b\u989c\u8272\u548c\u7f8a\u5417\uff1f"} +{"id": "0006810", "video_name": "33724211-2c37-59a3-9652-46e84df760d6", "text": "\u6807\u7b7e\u4e3a\u5feb\u4e50\u7684\u5efa\u7b51\u5e08\uff0c\u767e\u5e62\u5efa\u7b51\uff0c\u9ad8\u7ec6\u8282\uff0c\u9ec4\u91d1\u65f6\u95f4\uff0c8K\uff0c\u771f\u5b9e\u611f\u3002"} +{"id": "8002079", "video_name": "5fda7293-8edc-5939-8cbb-63d5fe824c3d", "text": "\u65e9\u6668\u4e00\u53ea\u6d63\u718a\u559d\u8336\u3002\n\nSource sentence: I love to eat sushi for dinner."} +{"id": "8003101", "video_name": "d56282e5-8f75-5439-b09e-b11c807f9875", "text": "\u96e8\uff0c\u4ece\u5929\u7a7a\u843d\u4e0b\u7684\u6c34\u6ef4\uff0c\u6e85\u8d77\u6c34\u82b1\uff0c\u5e26\u6765\u52a8\u611f\u3002"} +{"id": "3005070", "video_name": "d26b2f5e-c017-5b7b-af4e-af958509f61d", "text": "\u4e3aEstetica.ai\u8bbe\u8ba1\u4e00\u4e2a\u7cbe\u81f4\u4e14\u8be6\u7ec6\u7684\u6807\u5fd7\uff0c\u5c06\u827a\u672f\u4f20\u7edf\u4e0e\u73b0\u4ee3\u6280\u672f\u878d\u5408\u3002\u4ece\u60a8\u7684\u591a\u5143\u80cc\u666f\u4e2d\u6c72\u53d6"} +{"id": "6004162", "video_name": "a9954831-9bfd-5020-ab4d-7c131404ca65", "text": "\u4ece\u57ce\u5e02\u4e0a\u65b9\u770b\uff0c\u82f1\u96c4\u5e7b\u60f3\u98ce\u683c\u7684\u6f2b\u753b\u7ed8\u753b\u3002"} +{"id": "1006358", "video_name": "746fca7b-1f18-5ff3-913c-e892f27959b0", "text": "\u80cc\u666f\uff0c\u68ee\u6797\u8d77\u706b\uff0c\u98de\u7740\u706b\u661f\u3002"} +{"id": "0005223", "video_name": "16dbb10d-f374-508b-ad09-36588b8ecaa7", "text": "\u4e92\u8054\u7f51\u7b80\u53f2\uff1a\u4ece1962\u5e74\u52302023\u5e74\u3002"} +{"id": "2006467", "video_name": "90faed90-4c89-5328-b7f7-ae7fe24b06a5", "text": "\u7537\u4eba\u89e6\u6478\u53e6\u4e00\u4e2a\u7537\u4eba\u7684\u8138\u3002"} +{"id": "1004017", "video_name": "4a71cacd-9735-58e7-8b3e-018246a6b30a", "text": "\u6d6a\u7684\u7ba1\u9053\u91cc\u9762"} +{"id": "0003492", "video_name": "3e83eac7-b52f-5f2e-89cc-6420db239f34", "text": "\u4e00\u4e2a\u4f0a\u65af\u5170\u5b66\u6821\u4e2d5\u81f314\u5c81\u5b66\u751f\u548c\u5bfc\u5e08\u4e00\u8d77\u5b66\u4e60\u7684\u52a8\u6001\u753b\u9762\u3002"} +{"id": "3006986", "video_name": "fbe20d97-ce4f-5b22-9fb5-6e52aaa18062", "text": "\u84dd\u8272\u897f\u88c5\u7684\u4eba\u52a8\u4e86\u624b\u3002"} +{"id": "4003387", "video_name": "5b046026-4337-5d63-a08d-4851823c9c22", "text": "\u83b7\u5956\u7684CGI\u52a8\u753b\u77ed\u7247"} +{"id": "8003113", "video_name": "44ef71ed-a347-594f-a403-0413a4304dfc", "text": "\u591c\u95f4\u6545\u969c\u8def\u706f\u76843D\u56fe\u50cf\u3002"} +{"id": "1003932", "video_name": "489cf1f6-9887-5440-95c2-afef9b785c04", "text": "\u5e74\u8f7b\u7537\u5b69\u7a7f\u7740\u6696\u548c\u7684\u51ac\u5b63\u8863\u670d\uff0c\u9ad8\u5174\u5730\u73a9\u96ea\u5806\u96ea\u4eba\uff0c\u6e29\u6696\u7684\u6c1b\u56f4\uff0c\u5145\u6ee1"} +{"id": "8002264", "video_name": "f75afe0d-d042-5a31-a274-3244cf0f842e", "text": "\u6234\u7740\u5934\u5dfe\u7684\u5973\u5b69\u5728\u96e8\u5929\u8d70\u8def\uff0c\u5973\u5b69\u4e0e\u4e00\u8f86\u6c7d\u8f66\u76f8\u649e\u3002"} +{"id": "8002130", "video_name": "469c0ad7-6af9-571f-8508-b768922be39e", "text": "\u4e00\u4e2a\u7537\u5b69\u603b\u662f\u60f3\u548c\u670b\u53cb\u4eec\u56db\u5904\u6f2b\u6e38\u5e76\u770b\u7535\u5f71\u3002"} +{"id": "4002049", "video_name": "efc046c6-a372-5bb7-a6ef-26d5614383d2", "text": "\u6211\u548c\u4e00\u4e2a\u4e2d\u56fd\u5929\u754c\u7684\u8001\u5929\u4eba"} +{"id": "7004749", "video_name": "04f61a81-43d2-56e3-a72e-529d6f54ff3c", "text": "\u5973\u4eba\u7684\u773c\u775b\u77ac\u95f4\u7741\u5f00\uff0c\u6e29\u6696\u7684\u706f\u5149\uff0c\u9ed1\u6697\u4e2d\u6781\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u620f\u5267\u6027\u7684\u7167\u660e"} +{"id": "7003027", "video_name": "e3d00130-7b7b-5ddd-b4b1-f516fa649047", "text": "\u8d85\u903c\u771f\u7684\u6d88\u9632\u8f66\uff0c\u5728\u767d\u5929\u6251\u706d\u706b\u707e\u3002"} +{"id": "5001832", "video_name": "733bd77f-1f9f-5bb6-aaea-d70db529ab76", "text": "\u60ac\u7591\u7c7b\u578b\u7684\u5973\u6027\u5728\u7d27\u5f20\u7684\u80cc\u666f\u97f3\u4e50\u4e2d\u8fc5\u901f\u8d70\u5f00\uff0c\u907f\u5f00\u4e86\u4e00\u4e2a\u53ef\u80fd\u7684\u8ffd\u9010\u8005\u3002"} +{"id": "0006056", "video_name": "25d5a02a-b64a-5a9c-9ecd-f6b7d26601aa", "text": "\u6770\u4f5c\u822c\u7684\u521b\u610f\u548c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u827a\u672f\u54c1\uff0c\u662f\u7075\u9b42\u53cd\u601d\u548c\u589e\u5f3a\u6210\u957f\u4e4b\u65c5\u3002"} +{"id": "1003953", "video_name": "48f5f803-fec1-53e3-894a-83a096d504b1", "text": "is rising.\n\nTranslation: \u4e00\u53ea\u5154\u5b50\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u6709\u98ce\uff0c\u8349\u5f88\u957f\uff0c\u968f\u98ce\u6447\u66f3\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u6735\uff0c\u6708"} +{"id": "3006835", "video_name": "cb3acca7-9faf-599d-87e9-f044eac77089", "text": "\u8096\u6069\u00b7\u5eb7\u7eb3\u5229\u626e\u6f14ZARDOZ\u7684\u65cb\u8f6c\u81ea\u76f8\u4f3c\u56fe\u6848\u3002"} +{"id": "8002994", "video_name": "cd21cad6-d291-54ec-93af-71d98a30a97f", "text": "\u7a7f\u7740\u6bdb\u8863\u7684\u7537\u4eba\u624b\u6301\u706f\u7b3c\u548c\u6b65\u67aa\u8d70\u5728\u96ea\u5c71\u4e0a\uff0c\u53f3\u624b\u62ff\u7740\u6b65\u67aa\u5bf9\u7740\u955c\u5934\uff0c\u8d85\u903c\u771f\u7684"} +{"id": "7004467", "video_name": "8fa93124-7afd-54ce-920a-46b55f7ae592", "text": "\u4e00\u4e2a\u4e2d\u56fd\u5e7b\u60f3\u5361\u901a\u7537\u5b50\uff0c\u8eab\u7a7f\u767d\u888d\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u8eba\u5728\u5e9f\u5f03\u4e4b\u5730\uff0c\u9762\u5bb9\u82cd\u767d\uff0c\u773c\u795e"} +{"id": "2004104", "video_name": "ba389121-ec54-5e86-b032-d656d7167502", "text": "\u59dc\u8272\u4ed9\u5973\u7a7f\u8fc7\u68ee\u6797\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u9b54\u6212\uff0c\u5947\u5e7b\u3002"} +{"id": "7002830", "video_name": "56ae8d98-6971-5c4f-ba4b-b8ba49b8857a", "text": "\u4e00\u4f4d\u5feb\u6a02\u7684\u6a5f\u5668\u4eba\u85dd\u8853\u5bb6\u5e0c\u671b\u80fd\u5e6b\u52a9\u89c0\u773e\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3003748", "video_name": "cacb7e6d-c5cd-5318-96b2-68efaba9f92f", "text": "\u5728\u5546\u5e97\u5916\u9762\u4f60\u53ef\u4ee5\u770b\u5230\u6709\u591a\u5c11\u4eba\u8fdb\u53bb\u4e86\u3002"} +{"id": "7003312", "video_name": "ed48c519-e37d-5ad9-b5cc-32691ae68145", "text": "\u4e00\u7fa4\u4eba\u4ece\u68ee\u6797\u4e2d\u8d70\u51fa\u6765\u3002"} +{"id": "0003117", "video_name": "375d489b-2b2f-5f57-9772-6dd685b8733e", "text": "16\u6beb\u7c73\u7535\u5f71\u521b\u9020\u4e00\u4e2a\u592a\u7a7a\u8231\u9053\u573a\u666f\uff0c\u4f7f\u752816\u6beb\u7c73\u7535\u5f71\u98ce\u683c\u6765\u5236\u9020\u9897\u7c92\u611f\u60ac\u5ff5\u6548\u679c\u3002\u72ed\u7a84"} +{"id": "3005354", "video_name": "03c0472e-80f9-59f5-a7b9-9de7992c0f07", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u8349\u5730\u4e0a\uff0c\u5409\u535c\u529b\u98ce\u683c\uff0c\u98ce\u5728\u5439\uff0c\u8349\u5728\u6447\uff0c\u7f8e\u4e3d\u7684\u666f\u8272\u3002"} +{"id": "2007253", "video_name": "ceaad322-3b94-5a93-833e-75c50362d802", "text": "\u9759\u7269\u753b\u6765\u81eaDNA\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003593", "video_name": "484b9f86-b86f-5c21-86f1-4a68baf2d2c9", "text": "\u516c\u56ed\u7684\u4e2d\u5fc3\uff0c\u4eba\u4eec\u548c\u5bb6\u5ead\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u5e84\u4e25\u5730\u8dea\u4e0b\u3002\u4e00\u4e2a\u96c6\u4f53\u7684\u5b89\u9759\u843d\u4e0b\uff0c\u4e00\u79cd\u795e\u5723\u7684\u6c1b"} +{"id": "8003062", "video_name": "234ea153-adbf-58bb-93b4-9357d15fe16d", "text": "\u5c0f\u98de\u4fa0\u7528\u4ed6\u7684\u53cc\u624b\u628a\u94a2\u94c1\u4fa0\u6254\u4e86\u51fa\u53bb\u3002"} +{"id": "8001590", "video_name": "99d4f2cd-d95f-515c-8bdd-9d3688a670f2", "text": "\u5feb\u4e50\u7684\u4e00\u5929 (\u5b57\u4f53\uff1aBAUHAUS) \n\n\u5c0f\u6c99\u5c9b\u4e0a\u6709\u68d5\u6988\u6811\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u6c34\u8272\u662f\u84dd\u7eff\u8272\uff0c"} +{"id": "3005904", "video_name": "e5deee3b-57f8-50c8-9662-f8fd79de750f", "text": "\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u79c3\u9e70\u5728\u4ed6\u4e0a\u7a7a\u76d8\u65cb\u3002"} +{"id": "3003421", "video_name": "1d9d44b3-b087-54d0-ad27-35ab5a2fe110", "text": "\u76f8\u673a\u8ddf\u968f\u5728\u98de\u7fd4\u7684\u9e1f\u513f\u4e0a\u65b9\u7684\u4e91\u6d77\u4e4b\u4e0a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u7167\u660e\u6548\u679c\u6781\u5177\u620f\u5267\u6027\u3002"} +{"id": "2007585", "video_name": "f06b1a85-7c41-50ba-8ac6-a88bce5d5d76", "text": "\u4ecb\u7ecd\u4e00\u4e2a\u8d70\u8fdb\u82b1\u56ed\u3001\u5fae\u7b11\u5e76\u6563\u53d1\u5185\u5fc3\u5e73\u9759\u611f\u7684\u89d2\u8272\u3002"} +{"id": "1005078", "video_name": "5da5558e-7ef1-5f8c-add9-ec9dc0fa7502", "text": "\u624b\u673a\u653e\u5728\u5730\u4e0a\uff0c\u6211\u8d70\u8fdb\u53bb\u770b\u5230\u5b83\u7684\u6240\u6709\u5e94\u7528\u7a0b\u5e8f\u3002"} +{"id": "4003895", "video_name": "fea5745b-dfba-555a-8618-6966038661e7", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u770b\u7740\u5927\u6d77\u3002"} +{"id": "1003283", "video_name": "3c62cf1e-25b6-5028-82c4-5a7de56bea26", "text": "\u4e00\u4e2a\u5bbd\u655e\u7684\u82b1\u56ed\uff0c\u6709\u5404\u79cd\u5404\u6837\u7684\u82b1\u548c\u6811\uff0c\u8fd8\u6709\u51e0\u53ea\u5feb\u4e50\u7684\u9e1f\u513f\u8df3\u5728\u6811\u679d\u4e0a\uff0c"} +{"id": "6004809", "video_name": "d8d91761-6989-5fa2-9ac1-268210b1414b", "text": "Translation: \u5fae\u98ce\u5439\u8fc7\u6c5f\u5357\u6c34\u4e61\uff0c\u5b9b\u5982\u6c34\u58a8\u753b\u3002"} +{"id": "5001440", "video_name": "f222f88a-157e-52d0-ac2a-752a7d8bd837", "text": "3D\u4e91\u6735\u98ce\u683c\u3002\u4fe1\u606f\uff1aThiRYayi NeE\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09\u3002"} +{"id": "3003777", "video_name": "118ff91c-3bce-59b5-99a6-92df601819f7", "text": "\u70bc\u91d1\u672f\u58eb\u5728\u6708\u5149\u4e0b\u770b\u5230\u4e86\u4e00\u4e2a\u53e4\u8001\u7684\u738b\u56fd\u3002"} +{"id": "8002822", "video_name": "def79cb6-1d5a-5ef9-9aee-656cb68a8342", "text": "\u6e38\u6cf3\u6c60\u8349\u576a \u4fe1\u606f\uff1aJunio (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2005293", "video_name": "5ed05af2-8a54-5992-bd92-0482997656a6", "text": "\u638c\u63a7\u5168\u7403\u7684\u91d1\u94b1\u3002"} +{"id": "3003657", "video_name": "0212be59-fd54-5de3-ae78-13a21b081a6e", "text": "\u4f7f\u7528\u808c\u9178\u7c89\u548c\u74f6\u5b50\u5728\u5168\u9ad8\u6e0519:9\u6bd4\u4f8b\u4e0b\u5236\u4f5c\u4e00\u4e9b\u4e1c\u897f\u3002"} +{"id": "8003909", "video_name": "fec0c070-7aa7-5511-853f-aa22056de438", "text": "\u53e4\u4ee3\u8036\u8def\u6492\u51b7\u5723\u7ecf\u65f6\u4ee3\u7684\u4e00\u5f20\u684c\u5b50\u4e0a\u6446\u6ee1\u4e86\u98df\u7269\uff0c\u4ee5\u50cf\u7d20\u98ce\u683c\u3001\u8fea\u58eb\u5c3c3D\u98ce\u683c\u548c"} +{"id": "2007952", "video_name": "8de0d15b-3172-51d7-a02f-b45f5eb4f880", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u7684\u3001\u80cc\u5149\u7684\u903c\u771f\u5730\u7403\uff0c\u9876\u90e8\u91d1\u8272\u5149\u8292\uff0c\u661f\u7a7a\u80cc\u666f\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "1004580", "video_name": "552ce0a8-7d80-5d2d-b697-2c9e220392da", "text": "\u4e00\u53ea\u5c0f\u72d7\u548c\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u73a9\u800d\uff0c\u5468\u56f4\u6709\u4e00\u4e9b\u82b1\u3002"} +{"id": "3003035", "video_name": "558dcb59-7563-5369-bc33-33a3383021f5", "text": "\u7f8e\u4e3d\u7684\u5b5f\u52a0\u62c9\u5370\u5ea6\u5973\u5b69\u7a7f\u7740\u4f20\u7edf\u7684\u7ea2\u767d\u8272\u6c99\u4e3d\u5728\u52a0\u5c14\u5404\u7b54\u7684\u8857\u9053\u4e0a\u8d70\u52a8\uff0c\u914d\u5408\u5e86"} +{"id": "7003497", "video_name": "831c794f-502a-53f9-b221-dc7904728e4f", "text": "\u5728\u4e00\u95f4\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u8eba\u5728\u5e8a\u4e0a\u3002\n\nSource sentence: She is studying Chinese in a university in Beijing.\n\u5979\u6b63\u5728\u5317\u4eac\u4e00\u6240\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "0006929", "video_name": "3572a30f-af11-53ac-a5c7-3af0a0470e44", "text": "\u6e14\u6c11\u60ca\u8bb6\u5730\u770b\u7740\u6e14\u7f51\u3002"} +{"id": "0003252", "video_name": "3a10d3c6-c3d7-5c82-9570-639eab234675", "text": "\u6280\u672f\u7ebf\uff0c\u5305\u62ec\u7535\u5b50\u548c\u6570\u5b57\u7535\u8def\uff0c\u7d2b\u3001\u6de1\u7d2b\u3001\u767d\u548c\u84dd\u8272\u7684\u7ebf\u6761\uff0c\u9713\u8679\u88c5\u9970\u98ce\u683c\uff0c\u4fef\u89c6\u56fe"} +{"id": "1006595", "video_name": "78d7bebc-b1ef-5320-8161-505fab96f67a", "text": "\u706d\u9738\u624b\u6301\u65e0\u9650\u5b9d\u77f3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005494", "video_name": "65065ec6-ccd2-57eb-8d16-3c015bb20b81", "text": "\u5750\u7740\u7684\u65b0\u95fb\u64ad\u62a5\u5458\u5728\u9ad8\u6e05\u89c6\u9891\u4e2d\u5507\u8bed\u3002"} +{"id": "0005847", "video_name": "2230cd40-6583-5b6d-a162-4855a4402890", "text": "Source sentence: Leo Messi\u5728\u8db3\u7403\u573a\u4e0a\u5954\u8dd1\uff0c\u8e22\u8db3\u7403\u3002\n\nTranslation: \u6885\u897f\u5728\u8db3\u7403\u573a\u4e0a\u5954\u8dd1\uff0c\u8e22\u8db3\u7403\u3002"} +{"id": "7004124", "video_name": "9dfe0746-fa69-5296-a7cc-18995c76ee4f", "text": "\u5e74\u8f7b\u7684\u6df1\u8272\u5934\u53d1\u5973\u5b50\u7ad9\u5728\u8def\u4e0a\uff0c\u624b\u6301\u5199\u7740\u201c\u5251\u58eb\u201d\u7684\u6d77\u62a5\u3002"} +{"id": "6004473", "video_name": "b5bac4ce-7627-5558-945b-9c3506b3e05b", "text": "\u65b0\u7684\u5f00\u59cb\u7ecf\u5e38\u88ab\u4f2a\u88c5\u6210\u75db\u82e6\u7684\u7ed3\u675f\u3002"} +{"id": "2007530", "video_name": "a3d92ace-0206-5dfd-a704-88647404398e", "text": "\u5361\u5c14\u7eb3\u548c\u963f\u5468\u90a3\u4ea4\u6362\u5f3a\u529b\u653b\u51fb\u7684\u52a8\u4f5c\u955c\u5934"} +{"id": "1003797", "video_name": "462a4f0f-fbd6-5f96-92fc-536b177416b2", "text": "\u4f60\u77e5\u9053\u5417\uff1f\u65e9\u671f\u7684\u786c\u76d8\u53ea\u80fd\u5b58\u50a85MB\u7684\u6570\u636e\uff0c\u800c\u73b0\u5728\u624b\u673a\u62cd\u51fa\u7684\u4e00\u5f20\u7167\u7247\u90fd\u6bd4\u8fd9\u66f4\u5927\u3002"} +{"id": "4002497", "video_name": "d0ba03c5-aa75-56ef-a192-28b903de1f67", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u7741\u5f00\u5b83\u53d1\u5149\u7684\u773c\u775b\uff0c\u4f7f\u7528\u84dd\u8272\u548c\u6df1\u8272\uff0c\u653e\u5927\uff0c3D\u52a8\u753b\uff0c\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "8002256", "video_name": "17ea36f1-db90-5fe1-8192-3558465fa577", "text": "\u9690\u79d8\u53f6\u6751\u5728\u6e29\u6696\u7684\u5915\u9633\u7167\u8000\u4e0b\u7684\u5f00\u573a\u955c\u5934\u3002\u4e3b\u89d2\u6f29\u6da1\u535a\u4eba\u5728\u6751\u5e84\u8857\u9053\u4e0a\u5954"} +{"id": "8001003", "video_name": "b99e336d-bc7f-599e-a833-8b801d85556f", "text": "gs 40, \u52a8\u753b\uff0c\u975e\u6d32\u513f\u7ae5\u5feb\u4e50\u5730\u8e0f\u4e0a\u4e00\u6bb5\u5145\u6ee1\u5192\u9669\u7684\u65c5\u7a0b\uff0c\u63a2\u7d22\u4ed6\u4eec\u4ee4\u4eba\u60ca"} +{"id": "3004287", "video_name": "c747e0b6-98ef-5943-a52a-116a41c1fd73", "text": "\u5b66\u751f\u5728\u5de5\u4f5c\u5ba4\u62cd\u6444\u3002\u4fe1\u606f\uff1a\u591a\u5a92\u4f53\u652f\u6301\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004365", "video_name": "cde14340-9712-5952-9425-ea2fcba1e970", "text": "\u60c5\u7eea\u6fc0\u52a8\u7684\u5973\u58eb\u5728\u5730\u677f\u4e0a\u7206\u53d1\u4e86\u6012\u706b\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u753b\u9762\uff0c\u660f\u6697\u7684\u706f\u5149\u3002"} +{"id": "3005996", "video_name": "bf8a5d85-2213-5048-aceb-0da73a5d3451", "text": "\u5728Ajarakh\u5370\u82b1\u4e2d\uff0c\u4fe1\u606f\u4e3a\u201cBharat Expressions\u201d\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09\u3002"} +{"id": "0003284", "video_name": "3addec01-5f40-57b4-8400-bd6265d490ef", "text": "\u4e00\u53ea\u6234\u9ed1\u8272\u773c\u955c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u7684\u72d7\u3002"} +{"id": "6002873", "video_name": "cb7c3ce2-7998-5891-baf1-63e4ec6161bf", "text": "\u62bd\u8c61\u7684\u6570\u5b66\u673a\u5668\u4eba\u751f\u7269\u4e0e\u53d1\u6761\u7cbe\u7075\u5728\u6218\u6597\u3002"} +{"id": "2005016", "video_name": "c8efb4b1-c76a-5cfc-b2e6-2a563c55ae1b", "text": "\u767d\u8272\u5e26\u7fc5\u8180\u7684\u7403\u4f53\u5728\u4e91\u5c42\u4e4b\u4e0a\u98de\u7fd4\u5e76\u4e0a\u5347\u3002"} +{"id": "1004412", "video_name": "51869270-9dec-5a80-95ea-98a7a0976a5a", "text": "\u4e0e\u5f53\u5730\u4eba\u7684\u4e92\u52a8\uff1a\u6885\u897f\u8c26\u900a\u5730\u4e0e\u5f53\u5730\u4eba\u4e92\u52a8\uff0c\u63d0\u4f9b\u7b7e\u540d\u3001\u4e0e\u5b69\u5b50\u5408\u5f71\uff0c\u5e76\u521b\u9020\u6b22\u4e50\u7684\u65f6\u523b\u3002"} +{"id": "4003203", "video_name": "c300211d-c191-591b-8c32-1ea095725790", "text": "\u4e0a\u5e1d\u5316\u8eab\u4e3a\u70bd\u5929\u4f7f\uff0c\u5411\u6536\u4ef6\u4eba\u5448\u4e0a\u4fe1\u51fd\u3002"} +{"id": "6004389", "video_name": "99f92577-8e6a-5cc1-a009-a16a99892a4e", "text": "\u4e00\u53ea\u9c7f\u9c7c\u5728\u6c34\u4e2d\u79fb\u52a8\u3002"} +{"id": "7004289", "video_name": "9072c3bb-33db-5dbd-b7de-594f11d45e56", "text": "\u4e00\u90e8\u4e3a\u513f\u7ae5\u5236\u4f5c\u7684\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u8f86\u5728\u4e4c\u5179\u522b\u514b\u65af\u5766\u7684\u96ea\u4f5b\u5170"} +{"id": "2006126", "video_name": "f271864b-ed22-53d1-a0bd-08201bc288eb", "text": "\u4e00\u5f20\u5728\u7530\u91ce\u4e0a\u65b9\u98de\u7fd4\u7684\u4e0d\u8be6\u4e4c\u9e26\u7167\u7247\uff0c\u4e0b\u65b9\u662f\u4e00\u4e2a\u7a3b\u8349\u4eba\u3002"} +{"id": "1006591", "video_name": "78bf166d-2088-5195-b241-01d29460b858", "text": "\u4e00\u4f4d\u52a8\u6f2b\u89d2\u8272\u6234\u7740\u8033\u673a\u5728\u7535\u8111\u4e0a\u5b66\u4e60\u3002"} +{"id": "0005036", "video_name": "1388a2f4-140c-5ee2-8d03-5079a0d1f6e8", "text": "\u5e03\u9c81\u514b\u6797\u5927\u6865\u8d77\u706b\uff0c\u7535\u5f71\u573a\u666f\u822c\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "2003205", "video_name": "002bdf50-8649-5417-a3a1-4eb5e211fda2", "text": "\u732b\u548cEnough\u7a7f\u7740\u7279\u79cd\u90e8\u961f\u7684\u670d\u88c5\u6084\u6084\u5730\u6f5c\u884c\u3002"} +{"id": "5001654", "video_name": "0fa659a7-5ec5-548b-ae38-38f93917903d", "text": "8000\u4eba\uff0c\u5728\u519c\u623f\u91cc\u60ca\u6050\u5730\u770b\u7740\u4e00\u4e2a\u7f8e\u4e3d\u7684\u9b3c\u5973\u3002"} +{"id": "1004230", "video_name": "4e5144b5-a130-5023-8080-c18d58770f69", "text": "\u9ed1\u68ee\u6797\u5728\u975e\u5e38\u9ed1\u6697\u7684\u591c\u665a\uff0c\u6ee1\u6708\u548c\u661f\u661f\u8ba9\u4eba\u611f\u5230\u5fe7\u90c1\u3002"} +{"id": "1003700", "video_name": "4443efa3-3952-5250-8082-d2aa83cb5912", "text": "\u6211\u4eec\u6b63\u5728\u8d70\u8fc7\u4e00\u4e2a\u9ed1\u6697\u7684\u8d70\u5eca\uff0c\u7136\u540e\u4ece\u9ed1\u6697\u4e2d\u51fa\u73b0\u4e86\u51b0\u84dd\u8272\u7684\u773c\u775b\u3002"} +{"id": "0004207", "video_name": "04fc58aa-6015-57aa-a530-058c7962b689", "text": "\u5f53\u9547\u6c11\u671d\u7740\u95f9\u9b3c\u7684\u623f\u5b50\u524d\u8fdb\u65f6\uff0c\u4ed6\u4eec\u7684\u5341\u5b57\u67b6\u5728\u6708\u5149\u4e0b\u95ea\u8000\uff0c\u51c6\u5907\u4e0e\u5176\u4e2d\u7684\u90aa\u7075\u6218"} +{"id": "2007340", "video_name": "ac684c06-63f7-5559-b6bf-641bcdd0581b", "text": "\u4e00\u4e2a\u591c\u7cbe\u7075\u8d70\u5728\u5e7f\u9614\u7684\u571f\u5730\u4e0a\uff0c\u611f\u53d7\u7740\u5bd2\u51b7\u7684\u98ce\u5439\u62c2\u7740\u4ed6\u7684\u8863\u670d\u3002"} +{"id": "1006587", "video_name": "78a8a03e-2e4f-5218-81dd-94f3a663754a", "text": "\u8036\u7a23\u7ad9\u5728\u62c9\u6492\u8def\u7684\u575f\u5893\u5916\uff0c\u547c\u53ec\u4ed6\u590d\u6d3b\u3002"} +{"id": "7002561", "video_name": "35d905f5-0365-59fa-8407-2d9467f9cb9e", "text": "\u5728\u6c99\u6f20\u4e2d\u8d5b\u8f66\u7684\u5170\u535a\u57fa\u5c3c\u3002"} +{"id": "1003098", "video_name": "3909ec5f-1f02-5241-9561-1d192670a7dd", "text": "\u52a8\u7269\u548c\u9752\u86d9\u7684\u821e\u4f1a\uff0c\u91c7\u7528\u67d4\u548c\u7684\u8272\u5f69\u7f8e\u5b66\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u5168\u9ad8\u6e05\u7684\u5b9a\u4e49\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u706f"} +{"id": "7003445", "video_name": "a466d7a6-396f-517f-a833-89963a833930", "text": "\u4e00\u540d\u7a7f\u7740\u4f18\u96c5\u897f\u88c5\u7684\u7537\u5b50\u7ad9\u5728\u5927\u8857\u4e0a\uff0c\u8def\u9762\u4e0a\u6709\u4e00\u6ee9\u6c34\uff0c\u5728\u4ed6\u4f18\u96c5\u7684\u8f66\u65c1\u8fb9\u8d2d\u4e70\u6742\u5fd7\u3002\u53e6\u4e00\u8f86"} +{"id": "1004170", "video_name": "4d3b2393-c2a9-595d-ab9f-3599a2f0a00f", "text": "\u4e00\u4f4d\u6765\u81ea\u5370\u5ea6\u6751\u5e84\u7684\u8001\u592a\u592a\uff0c\u662f\u4e00\u4f4d\u5723\u4eba\u3002"} +{"id": "2006911", "video_name": "1583d0e4-117b-562b-98d8-eb438ba2007c", "text": "\u4e16\u754c\u4e0a\u6700\u597d\u7684\u7535\u8111\u6216\u8005\u5728\u56fd\u9645\u5927\u5b66\u91cc\u3002"} +{"id": "3005190", "video_name": "ca037e6f-1595-5d26-a1db-4afb98e16648", "text": "\u4e2d\u56fd\u5343\u5e74\u7eaa\u5f55\u7247"} +{"id": "2006890", "video_name": "af31f102-2aee-5411-a967-0846a38653a0", "text": "\u5012\u7acb\u7684\u5854\u697c\uff0c\u751f\u6d3b\u5728\u8d5b\u535a\u58f0\u6ce2\u5854\u7f57\u724c\u4e2d\u3002"} +{"id": "4002856", "video_name": "1cfb2af8-bf13-5853-994d-1cd712928875", "text": "\u901a\u8fc7\u866b\u6d1e\u524d\u5f80\u53e6\u4e00\u4e2a\u5b87\u5b99\u3002"} +{"id": "7004340", "video_name": "2fe52734-0d67-5fff-aa49-a6e2dd8856b9", "text": "\u4e00\u53ea\u9a6c\u5c14\u6d4e\u65af\u5c0f\u72d7\u5728\u9ad8\u8349\u4e2d\u8dc3\u8dc3\u6b32\u8bd5\u3002"} +{"id": "3005102", "video_name": "8779bd26-2bf8-5ca9-b08a-0e8a38d1c82e", "text": "\u9633\u5149\u660e\u5a9a\u7684\u5c71\u8109\u9760\u8fd1\u6cb3\u8fb9\u3002\u4fe1\u606f\uff1aJAVACRISTO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004323", "video_name": "641e70ab-0624-5c8c-8d76-95722a54d5bb", "text": "\u4f7f\u7528\u8fd9\u5f20\u56fe\u7247\u521b\u5efa\u4e00\u4e2a\u4eba\u5411\u5c4f\u5e55\u9760\u8fd1\u6325\u624b3\u79d2\u949f\uff0c\u7136\u540e\u8f6c\u8eab\u79bb\u5f00\u5c4f\u5e55\u7684AI\u7248\u672c\u3002"} +{"id": "0004884", "video_name": "10dd9cda-1dd6-510e-b20a-b95821dac18c", "text": "\u5728\u6d77\u6d0b\u6700\u6df1\u5904\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u773c\u775b\u5411\u4e0a\u51dd\u89c6\uff0c\u7b49\u5f85\u4efb\u4f55\u5165\u4fb5\u8005\u7684\u9760\u8fd1\u3002"} +{"id": "7004847", "video_name": "9e2bbea8-601f-5091-8c7f-0167a9a11204", "text": "\u4e00\u5339\u7a7f\u7740\u9ad8\u8ddf\u978b\u3001\u62e5\u6709\u7f8e\u4e3d\u91d1\u8272\u957f\u53d1\u7684\u9a6c\u5728\u65e7\u91d1\u5c71\u884c\u8d70\u3002"} +{"id": "3006359", "video_name": "87b34829-5feb-5acd-82ba-cbdf76d7b9a7", "text": "\u73e0\u7a46\u6717\u739b\u5cf0\u4f4d\u4e8e\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\uff0c\u4f4d\u4e8e\u5c3c\u6cca\u5c14\u548c\u4e2d\u56fd\uff08\u897f\u85cf\uff09\u7684\u8fb9\u754c\u4e0a\u3002\u5176\u5b98\u65b9\u9ad8\u5ea6\u4e3a"} +{"id": "1006723", "video_name": "7b320b57-2de6-5542-9dbd-8b82c46f3097", "text": "\u6293\u4f4f\u6211\u5468\u56f4\u623f\u95f4\u91cc\u7684\u9b3c\u3002"} +{"id": "3004703", "video_name": "b39a4b02-a20e-5783-bd86-a0a347dcad50", "text": "\u4e24\u4e2a\u4ee3\u8868\u4eba\u7684\u70b9\u3002\u4e00\u4e2a\u7ea2\u70b9\u751f\u6c14\u4e86\uff0c\u8df3\u5230\u84dd\u70b9\u5934\u4e0a\u3002\u84dd\u70b9\u53d8\u6210\u4e86\u7ea2\u70b9\u3002"} +{"id": "5001014", "video_name": "2523803b-6a23-51e6-a9f2-9a9a576ed214", "text": "\u5728\u4ecb\u7ecd\u65f6\uff0c\u4f7f\u7528\u620f\u5267\u6027\u7684\u89c6\u89c9\u6548\u679c\u6765\u4f20\u8fbe\u8be5\u96c6\u7535\u6c14\u5316\u7684\u4e3b\u9898\u548c\u6c1b\u56f4\u3002"} +{"id": "3003157", "video_name": "c0f8bbb7-7336-5f73-bf78-0f7946fb2448", "text": "\u4ece\u96fe\u4e2d\u5e7d\u9b42\u822c\u7684\u51fa\u73b0\uff0c\u63cf\u7ed8\u4e86\u5e7d\u7075\u7684\u6050\u6016\u548c\u6050\u60e7\u3002"} +{"id": "8001669", "video_name": "800e3485-66d3-5698-bc3c-f2986cc2e26b", "text": "\u6811\u6728\u3001\u82b1\u6735\u3001\u52a8\u7269\u548c\u690d\u7269\u5728\u5fae\u98ce\u4e2d\u6447\u66f3\uff0c\u903c\u771f\u3001\u52a8\u6001\u30018k\u30019:16\u3002"} +{"id": "0005321", "video_name": "18940d42-a5ff-5e33-bb55-cc6b7ddaa074", "text": "\u7a7f\u7740\u586b\u5145\u5154\u5b50\u670d\u88c5\u7684\u5973\u4eba\uff0c\u7ea2\u8272\u773c\u775b\u975e\u5e38\u8be6\u7ec6\uff0c\u73af\u5883\u5413\u4eba\u3002"} +{"id": "1005146", "video_name": "5ed6b888-afad-54ca-826e-908bd66deb9d", "text": "\u6708\u5149\u4ece\u80cc\u666f\u3001\u6d77\u6d6a\u548c\u6c99\u6ee9\u4e0a\u53cd\u5c04\uff0c\u5448\u73b0\u51faGuVeR\u5b57\u6bcd\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7004918", "video_name": "2e8a27e8-589f-5c59-983e-d972fe8bd39d", "text": "\u8239\u5728\u6d77\u6e7e\u6f02\u6d6e\uff0c\u79cb\u5b63\u5929\u6c14\u3002"} +{"id": "7004757", "video_name": "c1028056-0046-52e6-a93d-a81e94cd610d", "text": "\u4f7f\u7528AI\u5236\u4f5c\u4e00\u4e2a\u8de8\u5883\u7535\u5546\u5e97\u94fa\u7684\u89c6\u9891"} +{"id": "7003508", "video_name": "d61fc01f-2c07-5a15-a3fc-cedf10610292", "text": "\u4ece\u9ad8\u5904\u8dcc\u843d\u7684\u4eba\u3002"} +{"id": "1003578", "video_name": "41ef5864-0a5b-55ac-be0b-6fb310d16201", "text": "\u5728\u4e00\u5f20\u7eb8\u4e0a\u753b\u4e0a\u68d5\u6988\u6811\u548c\u590f\u65e5\u6c1b\u56f4\u3002"} +{"id": "5001552", "video_name": "c60a755e-f44c-5542-800a-c39c067225ee", "text": "\u5f53\u72ee\u5b50\u5229\u5965\u542c\u5230\u5fae\u5f31\u7684\u6c42\u6551\u58f0\u5e76\u8ddf\u968f\u58f0\u97f3\u627e\u5230\u8001\u9f20\u745e\u7c73\u88ab\u4e00\u6839\u5012\u4e0b\u7684\u6811\u679d\u56f0"} +{"id": "3003233", "video_name": "04827b1d-4e59-5380-8227-d1cc7c64f340", "text": "\u5f00\u59cb\u4e00\u6bb5\u63a2\u7d22\u4e4b\u65c5\u3002"} +{"id": "1003054", "video_name": "38297759-4e1c-5791-9924-4b782fd20f5d", "text": "\u9e1f\u513f\u5728\u4e61\u6751\u7684\u6811\u6797\u4e0a\u98de\u7fd4\u3002"} +{"id": "2005140", "video_name": "39a640fa-7911-5287-ad78-d2c8616e0cc7", "text": "\u591c\u7a7a\u4e2d\u8df3\u821e\u7684\u6708\u4eae"} +{"id": "3005236", "video_name": "506d0d27-9d9e-5c90-a900-a9348cef4bd7", "text": "\u62ff\u4e00\u4e2a\u65b0\u9c9c\u7684\u67e0\u6aac\uff0c\u67e0\u6aac\u5bcc\u542b\u7ef4\u751f\u7d20C\uff0c\u53ef\u4ee5\u4f7f\u4f60\u7684\u76ae\u80a4\u53d8\u5f97\u660e\u4eae\u7d27\u81f4\u3002\u5c06\u67e0"} +{"id": "4002737", "video_name": "bedbc7ec-7fa4-59a6-b041-9a07ff03170d", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u56fd\u5ea6\uff0c\u4e00\u4e2a\u5a74\u513f\u9f99\u548c\u5b83\u7684\u6bcd\u4eb2\u5728\u5f7c\u6b64\u8ffd\u9010\u3002\u52a8\u753b\u7535\u5f71\u3002"} +{"id": "8003789", "video_name": "8004e008-04d1-5a45-9da5-ff56f3bad7a3", "text": "\u4e00\u8f86\u6469\u6258\u8f66\u4e0a\u8f7d\u7740\u4e94\u4e2a\u4eba\u7684\u8def\u4e0a\u3002"} +{"id": "3004005", "video_name": "29702813-6dfa-5a0f-9e18-2d47e66f1f0a", "text": "\u9b54\u6cd5\u5e08\u4eec\u56f4\u5728\u5730\u9762\u5468\u56f4\u5c55\u793a\u9b54\u6cd5\u3002"} +{"id": "2007717", "video_name": "c9d5b900-46c2-552c-825f-e7183fa26690", "text": "\u4e00\u4f4d\u7a46\u62c9\u7eb3\u6b63\u5728\u6e05\u771f\u5bfa\u6572\u949f\u3002"} +{"id": "6003092", "video_name": "78faa7d8-e1f0-5e2b-9bd1-bad285159e15", "text": "\u521b\u9020\u4e00\u4e2a\u8fea\u58eb\u5c3c\u76ae\u514b\u65af3D\u98ce\u683c\u7684\u767d\u79cd\u5973\u5b69\u5f62\u8c61\uff0c\u7a7f\u7740\u84dd\u8272\u548c\u7ea2\u8272\u7684\u54c8\u5229\u6606\u670d\u88c5"} +{"id": "1003601", "video_name": "4269d57c-0e19-5c73-ab91-b62b73cc6582", "text": "\u4e39\u5c3c\u00b7\u683c\u6d1b\u5f17\u4e0e\u8fc8\u514b\u5c14\u00b7\u57fa\u987f\u6df7\u5408\u5728\u4e00\u8d77\u3002"} +{"id": "4002137", "video_name": "099ac99a-2d4a-568a-b353-56c64bfbc653", "text": "\u5c0f\u732b\u548c\u5723\u8bde\u8001\u4eba\u63e1\u624b\u4e86\u3002\n\nSource sentence: The sun is shining brightly today. \n\n\u4eca\u5929\u592a\u9633\u660e\u4eae\u7167\u8000\u3002"} +{"id": "0003147", "video_name": "380e977b-aa70-52b8-bb4b-0a970fc9b529", "text": "\u8349\u539f\u4e0a\u7ed3\u4e86\u51b0\uff0c\u53c8\u522e\u7740\u72c2\u98ce\u3002"} +{"id": "6004765", "video_name": "70a2117b-91af-5774-abf9-53eda7607d49", "text": "\u521b\u9020\u4e00\u4e2a\u6709\u52c7\u58eb\u96d5\u50cf\u7684\u53e4\u57ce\u3002"} +{"id": "8002610", "video_name": "d1f421a7-f14d-545b-9953-c2d6f60724c3", "text": "\u5185\u90e8\u62cd\u6444\u7684\u9ad8\u6e05\u592a\u7a7a\u8230\u8239\u753b\u9762\uff0c\u5c55\u793a\u4e86\u300a\u6218\u952440K\u300b\u4e2d\u7684\u5ba1\u8baf\u5b98\u3002"} +{"id": "6002070", "video_name": "3aeb1e31-98a8-551b-9d87-f36e750aee17", "text": "\u6545\u4e8b\u7684\u4e8b\u4ef6\u56f4\u7ed5\u592a\u9633\u7cfb\u7684\u884c\u661f\u4e4b\u95f4\u5c55\u5f00\uff0c\u6bcf\u4e2a\u7ae0\u8282\u5f00\u59cb\u90fd\u8bb2\u8ff0\u4e86\u67d0\u4e2a\u7279\u5b9a\u884c\u661f\u4e0a\u7684\u751f\u547d\u6545\u4e8b\uff0c\u4ee5\u53ca\u8fd9\u4e9b"} +{"id": "6003792", "video_name": "048942ae-b22f-5008-8b24-d21e51c34376", "text": "\u5728\u6d77\u6ee9\u4e0a\u6e38\u6cf3\u7684\u808c\u8089\u7537\u6027\u5728\u6c34\u4e2d\u3002"} +{"id": "3003730", "video_name": "b484f46e-eb10-55a1-8463-70f85a6442d6", "text": "\u82f1\u56fd\u77ed\u6bdb\u732b\u662f\u6700\u53e4\u8001\u7684\u82f1\u56fd\u672c\u571f\u54c1\u79cd\u4e4b\u4e00\u3002\u6709\u591a\u79cd\u53d8\u5f02\uff0c\u4f53\u578b\u5bbd\u9614\uff0c\u817f\u77ed\uff0c\u5c3e\u5df4"} +{"id": "6002911", "video_name": "7553e76e-8181-578f-8f4f-c08d7f73f147", "text": "\u4e2d\u4e1c\u5e74\u8f7b\u7537\u5b50\u5728\u80cc\u666f\u4e3a\u6cb9\u7530\u7684\u7f29\u7565\u56fe\u4e0a\u89c2\u770b\u5e76\u5fae\u7b11\uff0c4k\u3002"} +{"id": "4002037", "video_name": "a1359860-d2b4-516e-b430-a08a90eea082", "text": "\u975e\u5e38\u957f\u9888\u7684\u5973\u6027\u9732\u9f7f\u800c\u7b11\uff0c\u8868\u6f14\u540e\u5c48\u8eab\u5012\u7acb\u7684\u67d4\u672f\uff0c\u6050\u6016\u7684\u4eba\u50cf\u6e7f\u677f\u80f6\u7247\u6444\u5f71\u4f5c\u54c1"} +{"id": "2004684", "video_name": "62dfeab6-ccf5-5e92-bb1c-142fc75132f9", "text": "\u4e24\u4e2a\u6124\u6012\u7684\u5916\u661f\u4eba\u5728\u706b\u661f\u4e0a\u640f\u6597\uff0c\u903c\u771f\u76849:16\u3002"} +{"id": "2007105", "video_name": "bc30b158-8cef-5fde-92a0-a6bf0b66d809", "text": "\u521b\u9020\u4e00\u5e45\u6700\u7ec8\u7684\u753b\u9762\uff0c\u4eba\u4eec\u5728\u7948\u7977\u4e2d\u56e2\u7ed3\u4e00\u81f4\uff0c\u5f62\u6210\u4e00\u5708\u7cbe\u795e\u4ea4\u6d41\uff0c\u800c\u548c\u5e73\u548c\u5e0c\u671b\u5145"} +{"id": "0005773", "video_name": "21011eb9-1d5e-5963-a018-f55368876cd9", "text": "\u4e8c\u6218\u671f\u95f4\u7684\u98de\u673a\u4e0a\u6709\u4e00\u53ea\u718a\u732b\u3002"} +{"id": "1003193", "video_name": "3ab7bbe3-6ea4-5080-a79a-4493c70a969a", "text": "\u751f\u6210\u4e00\u5f20\u7a7f\u7740\u897f\u88c5\u3001\u53cc\u81c2\u4ea4\u53c9\u671b\u5411\u955c\u5934\u5fae\u7b11\u7684\u9ad8\u7ba1\u7167\u7247\uff0c\u80cc\u666f\u662f\u57ce\u5e02\uff0c\u767d\u5929\u62cd\u6444\uff0c\u98ce\u683c"} +{"id": "7004952", "video_name": "b81f9a26-f744-51d1-9f50-554dc0c6cf69", "text": "\u4e00\u53ea\u5f88\u5c0f\u7684\u68d5\u8272\u5409\u5a03\u5a03\u5728\u8d70\u8def\uff0c50\u6beb\u7c73\u5927\u5c0f\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\uff0c\u4f7f\u7528Motion 4\u3002"} +{"id": "3004132", "video_name": "4068d33d-227f-5466-9674-3b6ab50ecb6c", "text": "\u5728\u9713\u8679\u6ce2\u4e0a\u7684\u661f\u9645\u51b2\u6d6a\uff1a\u5c55\u793a\u51b2\u6d6a\u8005\u5728\u5b87\u5b99\u6d77\u6d0b\u4e2d\u9a91\u884c\u8f90\u5c04\u7684\u9713\u8679\u6ce2\uff0c\u88c5"} +{"id": "0005483", "video_name": "1b94ffb1-d286-51c1-b2b0-2d4c44c3a906", "text": "3\u4e2a\u8282\u70b9\u53ef\u4ee5\u62d6\u52a8\u5e76\u7528\u7ebf\u8fde\u63a5\u3002"} +{"id": "6003337", "video_name": "d55778e7-6c2b-5890-888f-af8fe88f7037", "text": "\u4e00\u4e2a\u53ebRanak\u7684\u4eba\u4f1a\u53c2\u52a0\u4efb\u4f55\u805a\u4f1a\u3002Ranak\u7ecf\u5e38\u6210\u4e3a\u57ce\u9547\u65b0\u7684\u6d6a\u6f2b\u5173\u7cfb\u7684\u7126\u70b9\u3002"} +{"id": "8003400", "video_name": "ea8c7031-1b41-582f-9d58-a72fd5c807fc", "text": "\u6674\u6717\u7684\u5929\u6c14\uff0c\u6c99\u6ee9\uff0c\u5fae\u98ce\u3002"} +{"id": "6003715", "video_name": "6674355d-8a4a-5da3-a0ec-575daf8a5c16", "text": "\u7eb9\u8eab\u5de5\u5177 \u4fe1\u606f\uff1aKRUKOV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8002063", "video_name": "1bfb3e46-fc64-5c35-9fc0-00dfaa6c22f1", "text": "\u521b\u9020\u4e00\u4e2a\u63cf\u7ed8\u9a6c\u6765\u897f\u4e9a\u536b\u751f\u56e2\u961f\u5e26\u7740\u533b\u7597\u8bbe\u5907\u3001\u75ab\u82d7\u548c\u5fae\u7b11\u62b5\u8fbe\u6751\u5e84\u7684\u573a\u666f"} +{"id": "2007084", "video_name": "1fd5e1ab-6e38-5bf8-bdd5-cd675af6361f", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u4e50\u5668\u3001\u5409\u4ed6\u548c\u5a01\u58eb\u5fcc\u5806\u6210\u7684\u5806\uff0c\u8bb2\u8ff0\u7740\u7ea6\u7ff0\u7684\u6545\u4e8b\u3002\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "2003064", "video_name": "7841bfdb-e7a3-5e1c-ad2e-5f6c1542daeb", "text": "\u4e00\u4e2a\u4eba\u5411\u97e9\u7eb3\u66fc\u795e\u7948\u7977\uff0c\u8d85\u903c\u771f\uff0c4K\u3002"} +{"id": "3004396", "video_name": "9ad7f76e-9801-5937-9674-de57994f662c", "text": "\u5e74\u8f7b\u7684\u82f1\u56fd\u5c0f\u6df7\u6df7\u7537\u5973\u7a7f\u7740\u8fd0\u52a8\u670d\u5728\u8857\u5934\u76f8\u62e5\u7740\u5fae\u7b11\u3002"} +{"id": "2006955", "video_name": "3f16ab6c-b9ae-5c34-815e-c1d5d1414687", "text": "\u96f7\u7c73\u7528\u4e00\u4e2a\u7531\u5e9f\u5f03\u7684\u7b14\u5236\u6210\u7684\u5fae\u578b\u671b\u8fdc\u955c\u4fa6\u5bdf\u6f5c\u5728\u7684\u5976\u916a\u6765\u6e90\u3002\u52a8\u753b\u5361\u901a"} +{"id": "6003469", "video_name": "c48f34d5-f9db-5e91-b773-838b6c697ec3", "text": "\u843d\u53f6\u548c\u5ca9\u77f3\u4f34\u968f\u7740\u6ce2\u6d6a\u8d77\u4f0f\uff0c\u79cb\u5929\u7684\u6811\u6728\uff0c8k\u5206\u8fa8\u7387\uff0c\u7eff\u8349\u5730\u3002"} +{"id": "4003326", "video_name": "98d1f129-5f10-5be5-a38d-1ba8dfeae776", "text": "\u4e24\u53ea\u8428\u6469\u8036\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c4\u516c\u91cc\u3002"} +{"id": "1005368", "video_name": "62b63c27-1b0a-5a43-b027-51a45e7506ea", "text": "\u63ed\u793a\u5b9d\u85cf\u7bb1\u4e2d\u95ea\u95ea\u53d1\u5149\u7684\u5b9d\u77f3\uff0c\u5e26\u6709\u95ea\u4eae\u6548\u679c\u3002"} +{"id": "1005047", "video_name": "5d547992-f842-5b38-8632-efc7fd678209", "text": "\u4e00\u53ea\u957f\u51fa\u7fc5\u8180\u5e76\u5b66\u4f1a\u98de\u884c\u7684\u732b"} +{"id": "0005980", "video_name": "24599e4f-3e46-59bc-aab4-3024ef20c5bf", "text": "\u623f\u95f4\u91cc\u94fa\u6ee1\u4e86\u590d\u6742\u7684\u7535\u5b50\u7535\u8def\u7cfb\u7edf\uff0c\u7535\u6d41\u95ea\u70c1\u53d1\u5149\uff0c\u4e3b\u8981\u7ec4\u4ef6\u9762\u5411\u5c4f\u5e55\uff0c\u4e2d\u592e\u6709\u5f3a\u5927\u7684\u7535\u6d41"} +{"id": "1004876", "video_name": "5a16880c-6d90-5256-b833-9126b1737d5b", "text": "\u6234\u725b\u4ed4\u5e3d\u7684\u7537\u4eba\u671d\u5899\u4e0a\u6254\u4e86\u4e00\u76cf\u706f\u3002"} +{"id": "0003635", "video_name": "40d5de7b-9d79-5b55-906d-0a25b1e730b1", "text": "\u4e00\u4f4d\u7a7f\u7740\u53e4\u8001\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u670d\u88c5\u7684\u7535\u5f71\u5f0f\u5c0f\u5973\u5b69\u6253\u5f00\u4e00\u5ea7\u5927\u8c6a\u5b85\u7684\u524d\u95e8\u3002"} +{"id": "1005497", "video_name": "6515fe0b-0c81-5b69-b575-adad7b127353", "text": "\u4e00\u540d\u5b87\u822a\u5458\u624b\u6301AK47\u7ad9\u5728\u6708\u7403\u4e0a\u4e0e\u4e00\u53ea\u602a\u7269\u6218\u6597\u3002"} +{"id": "4002347", "video_name": "5be21f6f-f068-56a6-bf18-e41547180a96", "text": "\u4e00\u4e2a\u7a7f\u7740\u68d5\u8272\u886c\u886b\u548c\u5e3d\u5b50\u7684\u8001\u4eba\u5728\u57ce\u5e02\u8857\u5934\u6e05\u6668\u5f39\u7740\u5409\u4ed6\u3002"} +{"id": "2005278", "video_name": "cc4ce4a5-fda4-5c7f-a3d4-479be642b759", "text": "\u4e00\u4e2a\u6444\u4eba\u5fc3\u9b44\u7684\u6469\u6d1b\u54e5\u9152\u5e97\u7684\u5f00\u573a\u955c\u5934"} +{"id": "4004319", "video_name": "ede19003-1cba-5c73-a273-68c23086ef02", "text": "\u8001\u5987\u4eba\u8138\u4e0a\u5e26\u7740\u6e29\u6696\u800c\u652f\u6301\u7684\u8868\u60c5\uff0c\u5979\u7684\u624b\u8f7b\u8f7b\u5730\u653e\u5728\u5979\u4e08\u592b\u7684\u80a9\u8180\u4e0a\u3002\u8fd9"} +{"id": "1005666", "video_name": "68121515-5e40-5f3f-93a4-0b1173f20d16", "text": "\u4e00\u4e2a\u7537\u5b69\u559c\u6b22\u753b\u753b\uff0c\u4f46\u6ca1\u6709\u94b1\u3002"} +{"id": "4002776", "video_name": "1e0ceefa-9e7a-5beb-917e-889775de84e7", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u4e1b\u6797\uff0c\u6709\u4e00\u79cd\u5947\u602a\u7684\u52a8\u7269\u6b63\u5728\u770b\u7740\u4ec0\u4e48\u3002"} +{"id": "1005417", "video_name": "6386998b-0ee2-50ed-9db8-1670a3aedcc2", "text": "\u5730\u9762\u4e0a\u7684\u7ebd\u7ea6\u5730\u94c1\u5217\u8f66\u3002\u6d82\u9e26\u3002\u6df1\u9083\u7684\u9634\u5f71\u3002\u9ed1\u8272\u7535\u5f71\u3002\u5217\u8f66\u6c34\u5e73\u901a\u8fc7\uff0c\u526a\u5f71\u7684\u9762\u5b54\uff0c\u95ea"} +{"id": "0005905", "video_name": "2304c08e-f92a-59f7-b4f9-92b8c8698e98", "text": "\u732b\u7ad9\u7740\u5f39\u5409\u4ed6\uff0c\u73b0\u573a\u706f\u5149\u95ea\u8000\u3002"} +{"id": "3004767", "video_name": "fb28f556-f111-569e-8c09-761776b4f15e", "text": "\u7537\u4eba\u7ad9\u5728\u5899\u4e0a\u5f88\u591a\u65e7\u753b\u4f5c\u65c1\u8fb9\uff0c\u53ea\u80fd\u770b\u5230\u4ed6\u7684\u80cc\u5f71\uff0c\u7a7f\u7740\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u670d\u88c5\uff0c\u5149\u7ebf\u660f"} +{"id": "1003644", "video_name": "4328a9c3-eb11-53f3-a4f3-dfc819f9396c", "text": "\u7a7f\u7740\u77ed\u88e4\u7684\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u4ed6\u6b63\u9762\u671d\u5411\u89c2\u4f17\u3002"} +{"id": "3005749", "video_name": "53a718be-52da-52ab-8721-c8c7021683b9", "text": "\u9ad8\u6e05\u7535\u5f71\u7ea7\u53d8\u7126\uff0c\u8036\u7a23\u751f\u8036\u7a23\u3002"} +{"id": "4003054", "video_name": "40743b74-15ff-5821-b437-ea4d688b18f0", "text": "\u52a8\u7269\u5728\u4e1b\u6797\u4e2d\u771f\u5b9e\u6253\u6597\u7684\u573a\u666f4"} +{"id": "2007383", "video_name": "1f0f36ed-6a1c-504e-a3dd-7d614e8b5add", "text": "\u6e38\u884c\u8def\u7ebf\u7a7f\u8fc7\u73a9\u5177\u57ce\u7684\u5730\u56fe\u6216\u63d2\u56fe\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "7002799", "video_name": "6a4a99ff-ef84-51ca-a8ac-e2cae58f0e02", "text": "\u4e00\u4e2a\u7f8e\u597d\u7684\u8282\u65e5\u65e5\u5b50\u91cc\u7684\u53ef\u7231\u5e7c\u513f\u56ed\u3002\u9633\u5149\u660e\u5a9a\uff0c\u7167\u8000\u7740\u6e29\u6696\u7684\u91d1\u8272\u5149\u8292\u3002\u5e7c"} +{"id": "6003005", "video_name": "13ccc700-4f64-5891-962d-e976d8e0b60f", "text": "\u4e00\u9053\u660e\u4eae\u7684\u706b\u82b1\u4ece\u9ed1\u6697\u7684\u865a\u7a7a\u4e2d\u5f62\u6210\u3002"} +{"id": "3003003", "video_name": "b2f0d978-2649-5242-9a45-2df2b40a0e0b", "text": "\u7f8e\u4e3d\u7684\u661f\u661f\u5728\u592a\u7a7a\u4e2d\u95f4\uff0c\u4f46\u662f\u4ee4\u4eba\u8ff7\u5e7b\u548c\u5947\u602a\uff0c\u8fd9\u9897\u661f\u661f\u4e2d\u95f4\u6709\u4e00\u53ea\u773c\u775b\u6b63\u5728\u6ce8\u89c6\u7740\u4f60\uff0c\u8be6"} +{"id": "2007130", "video_name": "fe17be39-58ad-5ed4-adc6-8a75c5bab7ac", "text": "\u7537\u5b50\u5728\u9152\u5e97\u524d\u53f0\u4e0e\u63a5\u5f85\u5458\u4ea4\u8c08\u3002"} +{"id": "2005357", "video_name": "f0e7470d-c27c-5123-8813-407a0a60b204", "text": "\u62ff\u7834\u4ed1\u00b7\u6ce2\u62ff\u5df4\u5750\u5728\u5ca9\u77f3\u4e0a\u3002\u4fe1\u606f\uff1aBirdDen\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6004052", "video_name": "e38b2887-2f59-5ea3-9f1c-b0b864663e13", "text": "\u4e00\u4e2a\u4eba\u5728\u9152\u5427\u559d\u5564\u9152\uff0c\u7c7b\u4f3c\u8d85\u73b0\u5b9e\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "4003016", "video_name": "22957569-5ca4-5731-97a2-948de45b1870", "text": "\u4e00\u672c\u8001\u5f0f\u7684\u4e66\u6253\u5f00\u4e86\u3002"} +{"id": "6003647", "video_name": "8d3772bd-a0be-5e67-bb04-77bfe0686343", "text": "15\u4e16\u7eaa\u8377\u5170\u4e61\u6751\u7684\u4eba\u4eec\uff0c\u4ed6\u4eec\u9762\u5bb9\u4e3a\u8377\u5170\u4eba\uff0c\u6df9\u6b7b\u5728\u6d2a\u6c34\u4e2d\u3002"} +{"id": "3004943", "video_name": "9dcb9fc1-d0fb-58ce-ab75-11e05aa11e8e", "text": "\u65e5\u672c\u6a31\u82b1\u6811\u3001\u91ce\u82b1\u548c\u6cbf\u5cb8\u7684\u7eff\u8349\u6210\u4e3a\u5c55\u793a\u5b83\u4eec\u5171\u751f\u751f\u6001\u7cfb\u7edf\u7684\u7cbe\u7f8e\u80cc\u666f\u3002"} +{"id": "6004118", "video_name": "b29dc7a6-5dc0-5a73-89bb-c83ef4bb7307", "text": "\u653e\u5927\u955c\u5934\uff0c\u6211\u4eec\u770b\u5230\u5973\u5b69\u548c\u5979\u7684\u7237\u7237\u9192\u6765\u4e86\uff0c\u4ed6\u4eec\u4e92\u76f8\u5fae\u7b11\uff0c\u5f00\u59cb\u4ed6\u4eec\u7684\u4e00\u5929\u3002"} +{"id": "0004422", "video_name": "08a7e98a-1cda-546f-b9d5-a84a77a1bbec", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u4eba\u9192\u6765\u770b\u65e5\u51fa\u3002"} +{"id": "1003128", "video_name": "3991e285-e039-5cde-97ce-3e294203e73f", "text": "\u67ef\u7c73\u7279\u9752\u86d9\u7a7f\u4e0a\u9c8d\u52c3\u00b7\u7f57\u65af\u7684\u670d\u88c5\uff0c\u5728\u753b\u5e03\u4e0a\u7ed8\u5236\u98ce\u666f\u753b\u3002"} +{"id": "1003605", "video_name": "4275f9d8-55a3-5a0e-b4c6-3337df32c23d", "text": "\u98de\u884c\u5458\u9a7e\u9a76\u7740\u4e00\u67b6\u7ea2\u8272\u98de\u673a\u5728\u4e00\u5ea7\u60ac\u7d22\u6865\u4e0b\u98de\u884c\uff0c\u770b\u8d77\u6765\u5f88\u9177\u3002\u98de\u884c\u5458\u6325\u624b\u5e76"} +{"id": "7004610", "video_name": "6f95ad1c-b8b4-542b-8f92-7edbaff84f99", "text": "\u706b\u8f66\u5458\u72ec\u81ea\u5728\u6d77\u6ee9\u4e0a\u8d70\u7740\u3002"} +{"id": "4004211", "video_name": "773707a6-3bad-57c2-8c16-03147802fcfe", "text": "\u91d1\u53d1\u5973\u5b50\u5728\u6f14\u594f\u94a2\u7434\uff0c\u5982\u5929\u5802\u822c\u7684\u573a\u666f\u3002"} +{"id": "7004730", "video_name": "befaf478-ea69-591d-b55d-ecc3294fccd9", "text": "\u7f8e\u56fd\u8457\u540d\u5730\u70b9\u5728\u4e00\u4e2a\u753b\u9762\u4e2d\u3002"} +{"id": "1005394", "video_name": "632f0bd6-3b3f-5c07-ac98-3ce519a34852", "text": "\u5728\u4e1b\u6797\u4e2d\uff0c\u8fd9\u4e2a\u5c0f\u7ec4\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u5ea7\u53e4\u8001\u7684\u796d\u575b\uff0c\u6563\u53d1\u51fa\u4e00\u79cd\u8be1\u5f02\u7684\u5149\u8292\u3002\u5947\u602a\u7684\u7b26"} +{"id": "3004749", "video_name": "faf05490-3935-58df-8956-d4c132d59d36", "text": "LSD\u5c9b\uff0c\u9ed1\u6697\u5e7b\u60f3\u7684\u7b2c\u56db\u7ef4\u5ea6\u3002\n\nSource sentence: The sun sets in the west, but rises in the east. \n\n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\uff0c\u4f46\u5728\u4e1c"} +{"id": "7002001", "video_name": "32082672-725e-5222-bf14-ff39ed49cb3e", "text": "\u4eba\u4eec\u76f8\u4e92\u758f\u8fdc\uff0c\u4ed6\u4eec\u90fd\u5728\u73a9\u624b\u673a\u3002\n\nSource sentence: The weather is very hot today, I need to drink lots of water.\n\u4eca\u5929\u5929\u6c14\u975e\u5e38\u708e\u70ed"} +{"id": "2003734", "video_name": "6295e134-8566-5c19-bec0-342d432c7383", "text": "\u4e00\u679a\u706b\u7bad\u4e09\u7ef4\u56fe\u6807\uff0c\u5361\u901a\u3001\u7c98\u571f\u6750\u8d28\uff0c\u4efb\u5929\u5802\u98ce\u683c\uff0c\u53ef\u7231\u3001\u5149\u6ed1\uff0c\u7ea2\u9ec4\u6e10\u53d8\u8272\uff0c"} +{"id": "3004088", "video_name": "efc9590a-d50c-5fff-be14-12c46d1631e4", "text": "\u5168\u666f\u963f\u5c14\u5351\u65af\u5c71\u8109\u5728\u67d4\u548c\u7684\u6668\u5149\u4e2d\u6d78\u6ce1\u3002"} +{"id": "5001195", "video_name": "64157977-aa8b-545f-9f7d-3a011ee99a54", "text": "\u4e00\u4e2a\u9ed1\u4eba\u6f02\u6d6e\u5728\u6df1\u7ea2\u8272\u7684\u6c34\u4e2d\uff1a\u5728\u6234\u68ee\u7403\u5185\u90e82\uff1a\u5185\u90e8\u9ad8\u5ea6\u88c5\u9970\uff0c\u5916\u661f\u8bed\u523b\u5728\u5899\u4e0a\uff1a\u5185\u90e8\u662f\u91d1"} +{"id": "4003865", "video_name": "8c171079-9d6d-5f08-ba29-2f2a0f24d57e", "text": "\u672a\u6765\u7531\u4eba\u5de5\u667a\u80fd\u9a71\u52a8\u7684\u5de5\u5382\u3002"} +{"id": "1006282", "video_name": "731104b6-0f75-54ec-ba0c-04c95c5412ed", "text": "\u7c89\u8272\u5236\u670d\u7684\u5976\u5976\u4eec\u5728\u6c99\u6f20\u91cc\u6293\u5b69\u5b50\uff0c\u975e\u5e38\u52a8\u6001\u548c\u903c\u771f\u7684\u4f53\u79ef\u89c6\u9891\u3002"} +{"id": "1003014", "video_name": "375e720f-6800-55ea-ab9d-f9e1c3d91248", "text": "\u5728\u5348\u591c\u4e0e\u4e00\u53ea\u51b0\u9f99\u640f\u6597\u7684\u661f\u9645\u6218\u58eb (Font: MODERN)"} +{"id": "1005228", "video_name": "603d03b8-f32d-5894-a115-384ce32e074e", "text": "\u53cc\u624b\u6258\u7740\u4e00\u6735\u5728\u95ea\u70c1\u7684\u5149\u8292\u4e2d\u7efd\u653e\u7684\u82b1\u3002"} +{"id": "2005240", "video_name": "9ac89fb8-5aac-55f5-93d8-b06ab1a47304", "text": "\u4e00\u5757\u5de7\u514b\u529b\u6162\u6162\u5730\u88ab\u5305\u88c5\uff0c\u4f5c\u4e3a\u4ea7\u54c1\u7684\u5305\u88c5\u955c\u5934\u3002"} +{"id": "8002478", "video_name": "2d49759e-efd7-5373-882b-09e76d0f7be2", "text": "\u706b\u8f66\u7ad9\u5e02\u6c49\u8bfa\u5a01\u6b65\u884c\u7eff\u8272\u50f5\u5c38\u5564\u9152\u5411\u65e5\u8475"} +{"id": "3003734", "video_name": "bd6e6518-9c8a-5109-8838-390135e0ba4d", "text": "\u673a\u5668\u4eba\u5728\u6d77\u6ee9\u4e0a\u884c\u8d70\uff0c\u914d\u6709\u9713\u8679\u706f\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c8K\u3002"} +{"id": "3004958", "video_name": "dd1a6cfe-c0aa-50da-9088-e06535d223d8", "text": "\u521b\u9020\u4e00\u4e2a\u4ee3\u8868\u65e5\u672c\u548c\u58a8\u897f\u54e5\u7f8e\u98df\u878d\u5408\u7684\u5f62\u8c61\uff0c\u7528\u4e00\u4efd\u5bff\u53f8\u5377\u3002\u5c55\u793a\u4e00\u4e2a\u5927\u7684\u5bff\u53f8\u5377\u88f9\u7740\u6d77"} +{"id": "6002420", "video_name": "9d972d10-2ff6-57c6-962e-893d8f185e3f", "text": "\u4e00\u68f5\u6811\u5728\u591c\u665a\u98ce\u96e8\u4e2d\u88ab\u4e00\u76cf\u5f3a\u70c8\u7684\u805a\u5149\u706f\u7167\u4eae\uff0c\u6811\u53f6\u968f\u98ce\u6447\u66f3\u3002"} +{"id": "3006302", "video_name": "0f1bcee2-3a96-55ef-b6ec-ad1c9705bd2f", "text": "\u4e3a\u201c\u963f\u739b\u79c07\u201d\u5236\u4f5c\u4e00\u4e2aYouTube\u5f15\u8a00\u3002"} +{"id": "6004330", "video_name": "36962638-3129-5918-995f-1af64cff0b6e", "text": "\u6211\u4eec\u7684\u4e3b\u4eba\u516cKAI\u767b\u573a\u4e86\uff0c\u4ed6\u662f\u4e00\u4e2a\u5e74\u8f7b\u800c\u4e0d\u60c5\u613f\u7684\u82f1\u96c4\uff0c\u5934\u53d1\u51cc\u4e71\uff0c\u5fc3\u4e2d\u5145\u6ee1\u597d\u5947\uff0c\u4f4f\u5728\u4e00\u4e2a\u5750"} +{"id": "1006546", "video_name": "77efc41c-69b5-58bd-a11c-970e0b8b1a72", "text": "\u4ece\u5c71\u9876\u4fef\u77b0\u5e7f\u9614\u7684\u5c71\u8109\uff0c\u76f8\u673a\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "7003288", "video_name": "7a154f23-653b-51e8-b7b7-abcd487e36ac", "text": "\u54e5\u8c2d\u5e02\u5728\u7535\u5f71\u300a\u8759\u8760\u4fa0\u300b\u4e2d\u975e\u5e38\u903c\u771f\uff0c\u8d85\u7ea7\u8be6\u7ec6\u3002"} +{"id": "3003276", "video_name": "be2c2f56-04af-57af-b655-6af269b7bb44", "text": "\u84dd\u9cb8\u4ece\u851a\u84dd\u7684\u6d77\u6d0b\u4e2d\u8dc3\u51fa\u7684\u5f62\u8c61\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7003215", "video_name": "0c6dedbd-8b01-54b7-81ba-e2606c0e3e65", "text": "\u5c06\u9644\u52a0\u7684\u56fe\u50cf\u6dfb\u52a0\u9002\u5f53\u7684\u5149\u5f71\u53d8\u5316\u548c\u573a\u666f\u79fb\u52a8\u53d8\u5316\u3002"} +{"id": "4004633", "video_name": "078565bf-b80d-5cfe-a60c-995808e8b219", "text": "\u94dc\u677f\u5e7f\u544a\u6d77\u62a5\u662f Penny Wise \u7684\u3002"} +{"id": "3005245", "video_name": "ba56f211-69b4-5c0a-9749-ec500f31a722", "text": "\u5c55\u793a\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u610f\u5927\u5229\u6751\u5e84\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u6c90\u6d74\u5728\u91d1\u8272\u9633\u5149\u4e2d\u3002"} +{"id": "2003866", "video_name": "d2331fb5-11b8-5084-846b-f75349d9b91b", "text": "\u4e00\u4f4d\u8001\u5e08\u5e2e\u52a9\u5b66\u751f\u5907\u8003\u6570\u5b66\u8003\u8bd5\u3002"} +{"id": "7004608", "video_name": "60cffcaf-3947-5104-af5a-847b988c4083", "text": "3D\u3001\u5361\u901a\u3001\u6050\u6016\u7247\uff0c\u8352\u5e9f\u7684\u6751\u5e84\u5916\uff0c\u68ee\u6797\u8fb9\u7f18\u6709\u4e00\u5ea7\u5c0f\u5c4b\uff0c\u5893\u5730\u524d\u9762\u3002\u591c\u665a"} +{"id": "6004016", "video_name": "4ce65e64-6452-59d9-a942-2e7f50f2a7e7", "text": "\u4e00\u8f86\u5361\u8f66\u5728\u6c99\u6f20\u91cc\u884c\u9a76\uff0c\u9a86\u9a7c\u7ecf\u8fc7\u3002"} +{"id": "2006047", "video_name": "61973199-0956-54cf-8e54-e3392d6f191a", "text": "\u8bbe\u8ba1\u4e00\u7ec4\u5e26\u6709\u542f\u53d1\u6027\u4fe1\u606f\u548c\u4e30\u5bcc\u591a\u5f69\u52a8\u753b\u7684\u79ef\u6781\u80af\u5b9a\u89c6\u9891\u300216:9"} +{"id": "6003468", "video_name": "e0b444d8-9c4e-501d-9536-a6651f67e931", "text": "\u7b2c12\u4efb\u535a\u58eb\u5f7c\u5f97\u00b7\u5361\u5e15\u5c14\u8fea\u4ee5\u300a\u9ed1\u6697\u4e4b\u9b42\u300b\u7684\u98ce\u683c\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002"} +{"id": "2005092", "video_name": "3e2ab11e-cf59-5a2d-95b5-8dcce6a69518", "text": "\u9ad8\u5ea6\u521b\u610f\u76843D\u63d2\u56fe\uff0c\u5c55\u73b0\u624d\u827a\u6bd4\u8d5b\u83b7\u80dc\u65f6\u523b\uff0c\u9e66\u9e49\u548c\u86c7\u83b7\u5f97\u4e86\u7b2c\u4e00\u540d\u3002"} +{"id": "7002390", "video_name": "60225b47-c682-5022-9cdb-0fdcfe506f0e", "text": "\u60ac\u5d16\u4e0a\u7684\u7537\u4eba\uff0c\u5934\u6655\u76ee\u7729\uff0c\u4f4e\u89d2\u5ea6\u89c6\u89d2\uff0c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u6050\u6016\u7535\u5f71\u8c03\u8272\u677f\uff0c\u8d85\u73b0"} +{"id": "3005678", "video_name": "e5c551dd-e493-56ee-a2e3-e3d628f2df80", "text": "\u98de\u673a\u98de\u8fdb\u6df7\u51dd\u571f\u5706\u9876\u3002"} +{"id": "4002706", "video_name": "92325eb3-d211-51d0-bfb7-aa722a8212c6", "text": "\u4e00\u8258\u88c5\u6ee1\u8d27\u7269\u7684\u5927\u8239\u6b63\u5728\u6d77\u4e0a\u822a\u884c\uff0c\u524d\u65b9\u662f\u4e2d\u56fd\u53e4\u90fd\u7684\u58ee\u4e3d\u666f\u8c61\u3002\u8239\u4e0a\u7684\u6c34\u624b\u6709\u5916\u56fd\u4eba\u548c\u4e2d\u56fd\u4eba\u5fd9"} +{"id": "2003352", "video_name": "a3fff3c6-dfc3-50c7-8dcc-7795b0307ed5", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u4eba\u5728\u77e9\u9635\u80cc\u666f\u524d\u9762\u5bf9\u7740\u6211\u4eec\u8bf4\u8bdd\uff0c\u9876\u5c42\u516c\u5bd3\uff0c\u4e0b\u7740\u96e8\uff0c\u7d2b\u8272\u8c03\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "8003976", "video_name": "2cde1001-556d-5c88-ac0b-2670899c64a0", "text": "1955\u5e74\uff0c\u5728\u706b\u661f\u4e0a\u4e00\u5ea7\u53e4\u4ee3\u5916\u661f\u4eba\u57ce\u5e02\u7684\u5e9f\u589f\u4e2d\u7684\u5b87\u822a\u5458\uff0c\u5177\u6709\u672a\u6765\u4e3b\u4e49\u79d1\u5e7b\u3001\u7535\u5f71\u822c\u7684\u52a8\u4f5c\u3001"} +{"id": "4004176", "video_name": "d17d5b5b-f393-50f7-87d1-cee2f5eef1b9", "text": "\u732b\u5750\u5728\u5899\u4e0a\uff0c\u55b5\u55b5\u53eb\u3002"} +{"id": "8002037", "video_name": "c84f1b4d-0b5d-5f08-8dc1-a94fbb3fb911", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u624b\u62ff\u7740\u5979\u7684\u7c89\u8272\u6cf0\u8fea\u718a\uff0c\u8d70\u5728\u5c71\u4e18\u4e0a\uff0c\u773a\u671b\u7fa4\u5c71\uff0c\u5bab\u5d0e\u9a8f\u7684"} +{"id": "6002144", "video_name": "abe94109-2f9a-559a-8f78-c474df2d79a4", "text": "\u4e00\u4f4d\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u9009\u7f8e\u7687\u540e\uff0c\u5728\u6b22\u547c\u7684\u4eba\u7fa4\u4e2d\u8d70\u4e0aT\u53f0\u3002"} +{"id": "7004310", "video_name": "4f55b033-10e4-5373-b595-4ad2a237a0e9", "text": "\u4e00\u540d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u5b50\u5de6\u624b\u62ff\u7740\u7ea2\u8272\u836f\u4e38\uff0c\u53f3\u624b\u62ff\u7740\u84dd\u8272\u836f\u4e38\uff0c\u80cc\u666f\u662f\u9ed1\u8272\u5c4f"} +{"id": "4004634", "video_name": "4eb4280d-6c1f-57c2-bf5b-6111cb805ba8", "text": "\u5728\u5c4b\u9876\u4e0a\uff0c\u4e00\u4e2a\u7531\u900f\u660e\u592a\u9633\u74e6\u5236\u6210\u7684\u706b\u7bad\u827a\u672f\u88c5\u7f6e\u3002"} +{"id": "0003075", "video_name": "3682e0d2-abf0-547b-a467-5d7e1a66eae1", "text": "\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc\uff0c\u8302\u5bc6\u7684\u68ee\u6797\u548c\u4e1b\u6797\u8301\u58ee\u6210\u957f\u3002\u767d\u5929\uff0c\u9633\u5149\u6d74\u5728\u8fd9\u4e2a\u5730\u65b9\uff0c\u6e29"} +{"id": "6003923", "video_name": "00cd8465-e721-583c-b507-1aa9ecf8772b", "text": "\u4e00\u53ea\u72d7\u8ffd\u7740\u4e00\u8f86\u7ea2\u8272\u6c7d\u8f66\u8dd1\u3002"} +{"id": "7004820", "video_name": "1bf8da44-834d-5e01-bf36-2e5a38ab8ec7", "text": "\u516c\u5171\u6c7d\u8f66\u4ece\u5fb7\u91cc\u51fa\u53d1\uff0c\u4f4d\u7f6e\u8ddd\u79bb\u516c\u5171\u6c7d\u8f66186\u516c\u91cc\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006483", "video_name": "76a3d68d-b9c8-51d8-860e-1b217c14f294", "text": "\u521b\u5efa\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u3001\u6781\u7aef\u7684\u7279\u5199\u955c\u5934\uff0c\u5c55\u73b0\u7728\u773c\u7684\u773c\u775b\u3002"} +{"id": "7003178", "video_name": "7c669225-0db1-5273-a2bb-22f34bd31a95", "text": "\u9ad8\u5c14\u592b\u7403\u6746\u6162\u6162\u5730\u81ea\u8f6c\uff0c\u4e0d\u8981\u53d8\u5f62\u3002"} +{"id": "2007429", "video_name": "02eff8b1-9e59-5e63-bbb1-1b3a037df216", "text": "\u7537\u4eba\u5411\u4ed6\u7684\u56e2\u961f\u505a\u6f14\u8bb2\uff0c\u4f46\u5728\u6f14\u8bb2\u65f6\u8868\u73b0\u51fa\u660e\u663e\u7684\u7d27\u5f20\u3002"} +{"id": "3003540", "video_name": "feb2fd48-e2ca-5123-8efb-ec937d698716", "text": "\u6570\u767e\u5177\u56e0\u6218\u4e89\u6b7b\u4ea1\u7684\u5c38\u4f53\u573a\u666f\u3002"} +{"id": "2003514", "video_name": "b0c73c66-fd6a-57f9-a6a9-56b9553835d9", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u8036\u7a23\u670d\u88c5\u770b\u5411\u955c\u5934\u3002"} +{"id": "3003958", "video_name": "922f5203-44bd-5906-b5ac-2827cbe1e00f", "text": "\u7a7f\u7740\u65e7\u65e7\u7684\u8863\u670d\uff0c\u6234\u7740\u672a\u6765\u4e3b\u4e49\u5934\u76d4\uff0c\u624b\u6301\u4e00\u4ef6\u6765\u81ea\u6c34\u4e0b\u4e16\u754c\u7684\u672a\u6765\u6b66\u5668\u7684\u4eba\u3002"} +{"id": "3005029", "video_name": "a861b9b3-bf7f-5311-ae40-ff47cc56ecba", "text": "\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u8fce\u6765\u65e5\u51fa\uff0c\u8c61\u5f81\u7740\u65b0\u7684\u4e00\u5929\u7684\u5f00\u59cb\u3002"} +{"id": "7003847", "video_name": "42a5f9bb-2804-5507-bc31-f49a744f95ce", "text": "\u82ad\u857e\u821e\u978b\u5f15\u706b\u70b9\u71c3\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\uff0c\u6df1\u8272\uff0c\u52a8\u600135mm\uff0c\u80f6\u7247\u9897\u7c92\uff0c\u5546\u4e1a\u3002"} +{"id": "1003913", "video_name": "48383a48-7dc2-586f-8da7-04a37f4690d0", "text": "\u653e\u5927\u93e1\u982d\u5230\u4e00\u500b\u8907\u96dc\u7684\u63a7\u5236\u4e2d\u5fc3\uff0c\u5177\u6709\u5fa9\u53e4\u672a\u4f86\u611f\u7684\u63a5\u53e3\u5c4f\u5e55\uff0c\u8a31\u591a\u6a5f\u5668\u4eba\u5728"} +{"id": "8003198", "video_name": "2fca7015-dcb5-52d9-a36c-1c1504734acd", "text": "\u628a\u52a8\u753b\u7248\u7684\u7279\u857e\u838e\u4fee\u5973\u5750\u5728\u8857\u4e0a\u7684\u7a77\u4eba\u65c1\u8fb9\u3002\u8fd1\u8ddd\u79bb\u3001\u9ad8\u6e05\u6670\u5ea6\u7684\u52a8\u753bYouTube\u955c\u5934\u3002"} +{"id": "6004061", "video_name": "7f3a244a-86c1-57dc-ad3a-617245ea1601", "text": "\u8df3\u821e\u7684\u53ef\u7231\u5c0f\u72d7\uff0c\u957f\u957f\u7684\u91d1\u8272\u6bdb\u53d1\uff0c\u767d\u8272\u7684\u6bdb\u53d1\u9760\u8fd1\u68d5\u8272\u7684\u9f3b\u5b50\u3002"} +{"id": "1004109", "video_name": "4c17ac3a-8bcc-5cd0-b4b3-ccfd8d3e6867", "text": "\u7f51\u7edc\u5728\u8ba1\u7b97\u673a\u901a\u4fe1\u65f6\u88ab\u5207\u65ad\u3002"} +{"id": "8002932", "video_name": "888ca171-5e6d-5051-8633-6622c0505275", "text": "\u573a\u666f\u8fc7\u6e21\u5230\u4e00\u4e2a\u4f5b\u6559\u5bfa\u5e99\u7684\u5185\u90e8\uff0c\u5b83\u4f4d\u4e8e\u5c71\u4e2d\u7684\u68ee\u6797\u4e2d\uff0c\u8001\u548c\u5c1a\u5b89\u9759\u5730\u5750\u7740\u3002"} +{"id": "6003120", "video_name": "48acaf6c-28f8-536e-8c8f-b830263c1366", "text": "\u4e00\u575b\u6ee1\u6ee1\u7684\u9ec4\u91d1\u5728\u7530\u91ce\u4e0a\u3002"} +{"id": "0004488", "video_name": "09d2704f-07d2-5a67-9432-d1f94944b5c4", "text": "3D \u5f71\u50cf\u9c8d\u52c3\u7b11\u4e86\u7b11\uff0c\u8f6c\u5411\u4ed6\u7684\u5176\u4ed6\u670b\u53cb\uff0c\u8fea\u5179\u548c\u7f57\u5229\u3002"} +{"id": "0005651", "video_name": "1ebf9f7e-57e1-5f21-993c-7c9973fd3e85", "text": "\u5feb\u9910\u673a\u5668\u4eba\u5976\u916a\u6c49\u5821\u5e97\u7684\u673a\u5668\u4eba\u81ea\u52a8\u70b9\u5355\u548c\u81ea\u52a9\u9910\u8ba9\u4eba\u4e0d\u723d\uff0c\u5bf9\u4eba\u7c7b\u6765\u8bf4\u4e0d\u662f\u4e00\u4ef6\u6709"} +{"id": "8001084", "video_name": "618db9c2-b5f6-567c-ad6d-c7a64cb00aac", "text": "\u9ed1\u767d\u624b\u7ed8\u5c3c\u65e5\u5229\u4e9a\u666f\u89c2\uff0c\u98ce\u5439\u8fc7\u6811\u6728\u3002"} +{"id": "8003757", "video_name": "13526736-bbef-54de-b1f1-ce7b9d1ef4f4", "text": "1970\u5e74\u4ee3\u7684\u300a\u661f\u7403\u5927\u6218\u300b\u7f8e\u5b66\uff0c\u4e1b\u6797\u661f\u7403\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u79d1\u6280\uff0c\u4ea4\u901a\u5de5\u5177\uff0c\u4eba\u7269\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "1005616", "video_name": "673fb222-469b-5029-bf92-5fa57171c9c3", "text": "\u53f3\u4fa7\u6709\u4e00\u4e2a\u5927\u73bb\u7483\u70e7\u676f\uff0c\u4ece\u753b\u9762\u9876\u90e8\u5230\u5e95\u90e8\uff0c\u5192\u7740\u84b8\u6c7d\u548c\u84b8\u6c14\u3002"} +{"id": "8002483", "video_name": "7d654c2d-ff43-5a0d-965e-d320cff67a30", "text": "\u6e29\u5e03\u5c14\u767b\u7f51\u7403\u8d5b\u524d\u7684\u7f51\u7403\u573a\uff0c\u4ee5\u4e2d\u7b49\u5149\u7ebf\u76848k\u771f\u5b9e\u753b\u9762\u5448\u73b0\u3002"} +{"id": "1004208", "video_name": "4dbffea5-75b9-554f-9bf2-b9d0eae77f63", "text": "\u4e00\u4f4d\u5386\u53f2\u4e0a\u7684\u5370\u5ea6\u7537\u5b50\u5750\u5728\u6cb3\u8fb9\uff0c\u601d\u8003\u672a\u6765\u3002"} +{"id": "7002268", "video_name": "f4a220c7-bd2b-5ae9-9c69-9ef56eaf7146", "text": "\u4e00\u5ea7\u8001\u5c0f\u5c4b\u7684\u5c4b\u9876\u5728\u591c\u665a\u906d\u53d7\u4e86\u5927\u91cf\u7684\u96e8\u6c34\u6d78\u6dcb\u3002"} +{"id": "2004523", "video_name": "601e5404-b1d5-59cf-ab35-808bdb35b99b", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u68d5\u8272\u957f\u53d1\uff0c\u4fee\u957f\u7684\u53cc\u817f\uff0c\u5728\u7f8e\u4e3d\u7684\u516c\u56ed\u91cc\u8d70\u8def\uff0c\u5fae\u7b11\u7740\uff0c\u767d\u5929\u3002"} +{"id": "4002993", "video_name": "b6992fec-e82a-575a-9f9d-a449dab5a123", "text": "\u5728\u6ee1\u6708\u7684\u591c\u665a\uff0c\u7537\u4eba\u548c\u5973\u4eba\u5750\u5728\u6c99\u6ee9\u4e0a\u7684\u5730\u6bef\u4e0a\u559d\u8336\uff0c\u4ed6\u4eec\u65c1\u8fb9\u653e\u7740\u9ea6\u514b\u98ce\uff0c"} +{"id": "8003803", "video_name": "a379b120-0799-5e3d-b3b1-afdd42391451", "text": "\u5728\u6708\u5149\u7684\u8ff7\u4eba\u7167\u8000\u4e0b\uff0c\u521b\u9020\u4e00\u4e2a\u8bf1\u4eba\u7684\u7f8e\u4eba\u9c7c\u5f62\u8c61\u3002"} +{"id": "3004047", "video_name": "86085385-aa54-5135-8985-42e9dc7964ba", "text": "\u4e00\u652f\u9576\u5d4c\u5b9d\u77f3\u7684\u7b14\u7684\u89c6\u9891"} +{"id": "6004964", "video_name": "fcec75a0-cfcc-5a2c-863a-34e06fb5242f", "text": "Translation: \u96f7\u66b4\u96e8\u5929\u6c14\u4e0b\uff0c\u9053\u8def\u4e0a\u5806\u6ee1\u4e86\u8f66\u8f86\u3002"} +{"id": "2006723", "video_name": "c4e8b7b7-ba0c-587a-908d-712f53b6c475", "text": "\u5929\u7a7a\u4e2d\u9ad8\u5206\u8fa8\u7387\u7684\u6c34\u6676\u6708\u4eae\u7279\u5199\u3002 \n\nSource sentence: I love to travel and explore new cultures. \n\n\u6211\u559c\u6b22\u65c5\u884c\u548c\u63a2\u7d22\u65b0\u6587\u5316\u3002"} +{"id": "4004581", "video_name": "3a01b207-a08c-5849-b9f4-8df26f7b3cb0", "text": "\u57fa\u7763\u6559\u8d1d\u5c14\u5728\u591c\u665a\u75284k\u9ad8\u6e05\u671b\u5411\u7a97\u5916\u3002"} +{"id": "7002077", "video_name": "d437be38-283d-5a84-8e14-6e0d192bfdcd", "text": "\u592a\u7a7a\u4e2d\u7684\u592a\u9633\u5728\u71c3\u70e7\u3002\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "0003089", "video_name": "36cc5a93-e44a-5dbc-9b0c-bfbbcfc868c5", "text": "\u8ba9\u5b83\u66f4\u620f\u5267\u5316\uff0c\u8fd9\u676f\u9e21\u5c3e\u9152\u662f\u9ad8\u7403\u739b\u4e3d\u3002"} +{"id": "3003517", "video_name": "835567ae-3dd1-5103-8996-3eb59bbf4d01", "text": "\u4e00\u540d\u7537\u5b50\u6b63\u5728\u5411\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u652f\u4ed84K\u7684\u94b1\u3002"} +{"id": "0006965", "video_name": "35f5a036-48e4-5df4-ad8b-2fec730d8e80", "text": "\u65af\u901a\u00b7\u79d1\u5c14\u5fb7\u00b7\u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\uff08Stone Cold Steve Austin\uff09\u7a7f\u7740\u53d1\u578b\u5377\u53d1\uff0c\u5f00\u7740\u4e00\u8f86\u7ea2\u8272\u76ae"} +{"id": "0006981", "video_name": "363a7bfc-525c-5b90-83c7-8a11a1ebd1e0", "text": "\u6211\u60f3\u8981\u871c\u8702\u6d3b\u52a8\u7684\u5f55\u50cf\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u8bf7\u95ee\u4f60\u80fd\u63a8\u8350\u9644\u8fd1\u7684\u4e00\u5bb6\u597d\u7684\u4e2d\u9910"} +{"id": "8002326", "video_name": "ba199de8-67f8-5e44-8cf1-aa848425f5e4", "text": "\u5973\u738b\u4ee5\u65af\u5e16\u4ee5\u9ad8\u54c1\u8d28\u5361\u901a\u52a8\u753b\u98ce\u683c\u51fa\u73b0\u5728\u5bab\u6bbf\u5916\u3002"} +{"id": "2007955", "video_name": "46450a8c-86a8-5f7c-800a-a35e373da133", "text": "\u4e00\u4f4d\u88ab\u7f8e\u56fd\u59d1\u5988\u6559\u80b2\u7684\u5b69\u5b50\u3002"} +{"id": "0004135", "video_name": "03e10ea3-ba6e-5fb4-a5fb-d1dd4b7cf3e8", "text": "\u4e00\u4e2a\u4f4e\u591a\u8fb9\u5f62\u7684\u9999\u70df\u71c3\u70e7\u5e76\u53d8\u77ed\uff0c\u5192\u7740\u70df\u3002"} +{"id": "4004316", "video_name": "e2e69b9a-4387-59d2-bf03-c3601969d4bb", "text": "\u4ece\u5e7c\u5e74\u65f6\u671f\u5f00\u59cb\uff0c\u516c\u4e3b\u5c31\u5c55\u73b0\u51fa\u4e86\u5bf9\u77e5\u8bc6\u7684\u65e0\u5c3d\u6e34\u671b\u3002\u5979\u88ab\u4e66\u7c4d\u548c\u5377\u8f74\u5305\u56f4\uff0c\u70ed\u5207\u5730"} +{"id": "2005483", "video_name": "7139db99-82fd-5d4a-b260-33892a86da13", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u955c\u5934\u805a\u7126\u5728\u4e00\u53ea\u95ea\u95ea\u53d1\u5149\u7684\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u5973\u5deb\u7ea2\u8272\u9774\u5b50\u4e0a\uff0c\u7ea2\u8272\u7ef8"} +{"id": "2005266", "video_name": "36e984fb-527c-5d8b-aaa0-a2a28d8a3598", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u548c\u8fc8\u514b\u5c14\u00b7\u8fc8\u5c14\u65af\u5728\u68ee\u6797\u96fe\u4e2d\u8fdb\u884c\u5149\u5251\u6218\u6597\u3002"} +{"id": "0006677", "video_name": "30cf26af-f47f-5415-82b2-4edb7a7465f4", "text": "\u5df4\u6bd4\u7528\u95ea\u95ea\u53d1\u5149\u7684\u6d77\u8d1d\u9879\u94fe\u5e2e\u52a9\u60b2\u4f24\u7684\u7f8e\u4eba\u9c7c\u6062\u590d\u58f0\u97f3\u7684\u795e\u5947\u65f6\u523b\u3002"} +{"id": "0005213", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u5e84\u91cc\u5954\u8dd1\uff0c\u80cc\u666f\u4e2d\u6709\u89c2\u770b\u7684\u4eba\u4eec\uff0c\u91c7\u7528\u52a8\u753b\u827a\u672f\u98ce\u683c\u3002"} +{"id": "6004671", "video_name": "5bfdf1f9-1494-5ad8-84a0-069796d46be7", "text": "\u83ab\u6bd4\u4e4c\u65af\u548c\u8759\u8760\u4fa0\u4e00\u8d77\u5728\u9ed1\u6697\u54e5\u7279\u5f0f\u57ce\u5e02\u4e2d\u98de\u7fd4\u3002"} +{"id": "7003486", "video_name": "a0783a66-59f7-58d5-94de-193699c465bc", "text": "\u6c7d\u8f66\u4eceWorli Kurla\u6865\u7ecf\u8fc7\u3002"} +{"id": "1006194", "video_name": "71685c93-fd25-519b-a7dc-1fec0d68afd6", "text": "\u4e00\u53ea\u5361\u901a\u89d2\u8272\u5496\u5561\u676f\u5728\u714e\u997c\u5806\u4e0a\u5954\u8dd1\u8df3\u8dc3\u3002"} +{"id": "2005324", "video_name": "76218c5e-ff90-50bd-9dc8-bea92e1245f5", "text": "\u4e00\u4e2a\u6df1\u8c37\uff0c\u7011\u5e03\u503e\u6cfb\u800c\u4e0b\uff0c\u6c34\u82b1\u98de\u6e85\u5728\u6e56\u9762\u4e0a\u3002\u6444\u50cf\u673a\u8ddd\u79bb5\u7c73\uff0c\u5b9e\u5883\u8d85\u8be6\u7ec6\u5168"} +{"id": "2004677", "video_name": "b1cad5dd-5395-5f32-a0a6-a70dd0853cc4", "text": "\u4e00\u8f86\u9177\u8f66\u5728\u7a7a\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u9a76\uff0c\u7535\u5f71\u822c\u7684\u73b0\u5b9e\u4e3b\u4e49\uff0c\u4ee5David Fincher\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4003984", "video_name": "88c3c3fe-1d7d-5092-a38b-8d63fee4f28d", "text": "\u52a8\u753b\u4eba\u7269\u53ef\u7231\u7537\u5b69\u7ad9\u5728\u519c\u7530\u91cc\uff0c\u5468\u56f4\u6709\u9c9c\u8273\u7684\u82b1\u548c\u852c\u83dc\uff0c\u4ed6\u5174\u594b\u5730\u7b11\u7740\u3002\u98ce\u5728"} +{"id": "4003293", "video_name": "137bb5c8-5864-5fd0-8f3b-90f5f8ba0392", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u798f\u79d1\u6446\u7684\u5de5\u4f5c\u539f\u7406\u3002"} +{"id": "3005585", "video_name": "17f1acfc-f0c3-5671-8a43-c928d27ac672", "text": "\u72d0\u72f8\u548c\u670b\u53cb\u4e00\u8d77\u89c2\u770b\u65e5\u51fa\u3002"} +{"id": "7004800", "video_name": "4ccd847a-7c90-50d4-8c27-11d547673b24", "text": "\u6e29\u99a8\u8212\u9002\u7684\u5bb6\u5ead\uff0c\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7003009", "video_name": "dfb71361-37df-5e6b-924c-156d1ed5524d", "text": "\u4e91\u4e2d\u6709\u4e00\u4e2aDNS\u670d\u52a1\u5668\u3002"} +{"id": "3006906", "video_name": "4771eaec-67a7-5744-ae01-fe1fa3fdaab7", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u5927\u5b66\u7537\u751f\u5728\u5bbf\u820d\u91cc\u9ad8\u5174\u5730\u8df3\u7740\uff0c\u5f69\u5e26\u98de\u821e\u7740\u843d\u4e0b\u6765\u3002"} +{"id": "2006056", "video_name": "27036c0d-0d78-5d75-8bbe-e06e14ad7ce5", "text": "\u8d28\u91cf\u597d\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4f4d\u975e\u6d32\u6570\u5b57\u4eba\u5728\u5b87\u5b99\u98de\u8239\u4e2d\u8bf4\u8bdd\u3002"} +{"id": "6002999", "video_name": "e738f270-3914-5acf-b09e-0661e96a24a6", "text": "\u72ee\u5b50\u4ece\u5929\u5802\u8d70\u51fa\u6765\uff0c\u5403\u4e1c\u897f\uff0c\u5954\u8dd1\u3002"} +{"id": "1006776", "video_name": "7c1c06f6-9aec-5d39-8d09-5bed246a83cf", "text": "\u4eba\u7c7b\u4e00\u5343\u5e74\u540e\u4f1a\u957f\u6210\u4ec0\u4e48\u6837\u5b50\uff1f"} +{"id": "6002109", "video_name": "c28e232c-bc68-5a18-b51e-39087d363da4", "text": "\u51b7\u9759\u7684\u52a8\u753b\uff0c\u5e26\u7740\u9762\u5177\u7684\u5e74\u8f7b\u7537\u5b50\u5728\u8d70\u8def\u3002"} +{"id": "6004111", "video_name": "e2e69b9a-4387-59d2-bf03-c3601969d4bb", "text": "\u4ece\u5e7c\u5e74\u65f6\u671f\u5f00\u59cb\uff0c\u516c\u4e3b\u5c31\u5c55\u73b0\u51fa\u4e86\u5bf9\u77e5\u8bc6\u7684\u65e0\u5c3d\u6e34\u671b\u3002\u5979\u88ab\u4e66\u7c4d\u548c\u5377\u8f74\u5305\u56f4\uff0c\u70ed\u5207\u5730"} +{"id": "2005041", "video_name": "7027bd23-dc6a-5a09-95b0-1391a2027415", "text": "\u865a\u6784\u7684\u57ce\u5e02\u8857\u5934\u9a9a\u4e71"} +{"id": "2005330", "video_name": "764ab521-1996-547a-9e5c-3dbc719697e8", "text": "\u8721\u7b14\u6b63\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "4004354", "video_name": "b43f90fe-880c-5c87-96a7-20814b4020db", "text": "\u6027\u611f\u7684\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u505a\u745c\u4f3d\u3002"} +{"id": "6004031", "video_name": "d70b8851-65f8-5dbb-8b75-c69a6a029aa3", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u4e0e\u7f8e\u56fd\u603b\u7edf\u63e1\u624b\u3002\u7535\u5f71\u573a\u666f\uff0c\u5e7f\u89d2\u955c\u5934\u548c\u706f\u5149\u6548\u679c\u3002\u8d85\u73b0\u5b9e4K\u3002"} +{"id": "6003238", "video_name": "cfb359d9-c61d-5046-aa45-3b3f1b90287c", "text": "\u8bf4\u5531\u5bf9\u51b3\u53ea\u6709\u83ab\u8fea\u5728\u8bf4\u5531\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003236", "video_name": "481d6bb6-c754-5ce9-9504-82c3149da50c", "text": "\u8ba9\u6574\u4e2a\u68ee\u6797\u5145\u6ee1\u751f\u673a\uff0c\u9e1f\u513f\u6b4c\u5531\uff0c\u82b1\u6735\u7efd\u653e\uff0c\u751f\u7269\u4eec\u5e26\u7740\u6ee1\u8db3\u7684\u5fae\u7b11\u6d3b"} +{"id": "0003763", "video_name": "42eb66dd-1d17-5e42-bc19-52db7f927e9d", "text": "\u4e0b\u96e8\u5929\uff0c\u6570\u767e\u4e2a\u79c3\u9876\u50e7\u4fa3\u4f1a\u53cc\u624b\u5408\u5341\u7948\u7977\u3002\u6d88\u606f\uff1a996\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4002577", "video_name": "cce9597d-f40e-56dd-a98b-758a3b5d7ebf", "text": "\u683c\u8fea\u7c73\u7d0d\u65af\u00b7\u666e\u862d\u5207\u51f1\u7dad\u4fee\u65af\u7684\u52d5\u756b\u4f5c\u54c1\u5c55\u73fe\u4e86\u6b7b\u795e\u4e0b\u68cb\u7684\u5834\u666f\u3002"} +{"id": "6003902", "video_name": "260be6b4-e681-5794-b0f0-5b01035ff101", "text": "\u5728\u8fdb\u5165\u795e\u79d8\u7684\u8033\u8bed\u68ee\u6797\u4e4b\u524d\uff0c\u8f6c\u6362\u5230\u4e09\u4eba\u7ec4\uff0c\u5176\u4e2d\u52a8\u753b\u5143\u7d20\u5c55\u793a\u4e86\u80fd\u8bf4\u8bdd\u7684\u6811\u6728\u548c\u53d1\u5149\u7684\u8611\u83c7"} +{"id": "0004376", "video_name": "07f8bd4d-4166-5333-a8d1-bbb1e4a64ee9", "text": "\u4e00\u95f4\u5367\u5ba4\uff0c\u67d4\u548c\u6e29\u6696\u7684\u706f\u5149\u7167\u4eae\u4e86\u573a\u666f\u3002\u4e24\u4e2a\u4eba\u7d27\u7d27\u5730\u8eba\u5728\u4e00\u8d77\uff0c\u6e29\u6696\u7684\u6bef\u5b50"} +{"id": "0005255", "video_name": "17506010-710e-51d5-9c0d-bac6f107d676", "text": "\u8fd9\u662f\u95ea\u8000\u7684\u5e93\u5e03\u91cc\u514b\u573a\u666f\uff0c\u5b83\u662f9:16\u7684AR\u683c\u5f0f\u3002"} +{"id": "4003611", "video_name": "11ee4564-31b1-5577-8f5a-6d1bb3ca330c", "text": "\u53d8\u8272\u9f99\u5728\u6811\u679d\u4e0a\u7728\u773c\u775b\uff0c\u6539\u53d8\u989c\u8272\u3002"} +{"id": "6003205", "video_name": "60efb27b-ed26-5c00-adb6-ce9ff9e683c6", "text": "\u4e24\u628a\u5251\u8fd1\u8ddd\u79bb\u5bf9\u5cd9\u5728\u6218\u573a\u4e0a\uff0c\u76f8\u4e92\u78b0\u649e\u7684\u58f0\u97f3\u5728\u6df7\u4e71\u4e2d\u56de\u8361\uff0c\u88ab\u96f7\u7535\u95ea\u5149\u7167"} +{"id": "0004617", "video_name": "0c017cd7-1eec-5d74-abd3-4a03527ef977", "text": "\u4e00\u53ea\u9738\u738b\u9f99\u4e0e\u5510\u8001\u9e2d\u6253\u67b6\u3002"} +{"id": "8003159", "video_name": "b22c2f88-7bc3-5d77-a2fe-053b13075309", "text": "\u770b\u5230\u4e00\u6761\u86c7\u540e\u88ab\u60ca\u8bb6\u7684\u4eba"} +{"id": "1005138", "video_name": "5eb37f9a-c799-575d-97e8-c473e17afa0e", "text": "\u7eff\u8272\u7684\u516c\u4e3b\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u4e0a\u51a5\u60f3\u3002"} +{"id": "1005194", "video_name": "5f88cde6-a67c-5e81-84b6-30002a15e535", "text": "Source sentence: Sketch\u52a8\u753b\u4e2d\uff0c\u7236\u6bcd\u7167\u987e\u5b69\u5b50\uff0c\u6444\u50cf\u673a\u5bf9\u51c6\u4e86\u4ed6\u4eec\u7684\u80cc\u90e8\u3002\n\nSource sentence: The cat is sleeping on the windowsill, enjoying the warm"} +{"id": "4004997", "video_name": "1a9e2e3e-002f-5e00-9268-ea1896a4123a", "text": "\u52a8\u6f2b\u53e0\u52a0\uff0c\u96a7\u9053\uff0c\u76f8\u673a\u79fb\u52a8\uff0c\u52a8\u753b"} +{"id": "2004564", "video_name": "3d30da97-2313-51e8-b14b-9b972b7be0a6", "text": "\u8303\u00b7\u9ad8\u66f4\u3002\u4ee5\u9ad8\u66f4\u98ce\u683c\u3002"} +{"id": "2003386", "video_name": "f00dab32-a9e9-5032-9076-b34c8f0a4fc5", "text": "\u62c9\u6731\u3001\u739b\u5c24\u4e3d\u548c\u6751\u6c11\u4eec\u4e0e\u795e\u79d8\u964c\u751f\u4eba\u5bf9\u5cd9\u7684\u620f\u5267\u6027\u573a\u666f\u3002"} +{"id": "6003636", "video_name": "af35798f-b324-5a36-9feb-6bcd315577c3", "text": "\u4e24\u4e2a\u5973\u5b69\u671b\u5411\u955c\u5934\uff0c\u955c\u5934\u7f29\u8fdb\uff0c\u7f8e\u4e3d\u7684\u5317\u6781\u5149\u548c\u7d2b\u8272\u7c89\u7ea2\u8272\u7684\u65e5\u843d\u5728\u5979\u4eec\u8eab\u540e\uff0c\u5bf9\u6bd4"} +{"id": "5001329", "video_name": "ff9d6dc0-e2f3-529b-8096-2c76b8bc094b", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u5927\u7ea2\u7403\u9ad8\u9ad8\u5f39\u8df3\uff0c\u591c\u665a\u80cc\u666f\uff0c\u6811\u6797\u3002"} +{"id": "3003208", "video_name": "202cd122-658e-56dc-b1e0-e6262996d76e", "text": "\u970d\u514b\u6210\u4e3a\u4e00\u540d\u6c42\u804c\u8005\uff0c\u62ff\u7740\u4e00\u4e2a\u68d5\u8272\u6587\u4ef6\u5939\u56db\u5904\u8d70\u52a8\u3002"} +{"id": "0006954", "video_name": "35ce39fe-a4b7-526c-8166-26247cfd8320", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u800c\u60b2\u4f24\u7684\u5b69\u5b50\u5750\u5728\u8349\u5730\u4e0a\uff0c\u4ef0\u671b\u5929\u7a7a\uff0c\u7a81\u7136\u4ece\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u53ea\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u624b\uff0c"} +{"id": "7003293", "video_name": "c74eb62f-ff05-5198-9b02-a9bdf87289e0", "text": "\u732b\u7528\u5634\u5507\u540c\u6b65\u5531\u6b4c\u3002\u7559\u8a00\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005085", "video_name": "fbd3e026-bef5-5a9a-87da-5bf38e94364c", "text": "\u8c08\u8bdd\u7684\u5973\u4eba\uff0c30\u5c81\uff0c\u767d\u53d1\uff0c4K\u89c6\u9891\u3002"} +{"id": "7002931", "video_name": "26b66657-4dcd-5118-885f-4db89e5e7add", "text": "\u9010\u6e10\u751f\u957f\u67d4\u8f6f\u4e1d\u6ed1\u7684\u73ab\u7470\u82b1\uff0c\u65f6\u95f4\u6d41\u901d\uff0c\u94c5\u7b14\u753b\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "8001816", "video_name": "8420c5a5-c752-57b7-8901-79442b3098c6", "text": "\u6124\u6012\u5973\u795e\u7684\u626e\u6f14\u8005\u662f\u7531\u585e\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u3001\u5b89\u5a1c\u00b7\u5fb7\u00b7\u963f\u739b\u65af\u3001\u8d5e\u8fbe"} +{"id": "3006445", "video_name": "0547b4d5-c429-5a31-a065-cf113c953aa7", "text": "\u4ed6\u7684\u7236\u4eb2\u867d\u7136\u5f88\u96be\u8fc7\uff0c\u4f46\u77e5\u9053\u8428\u7f2a\u5c14\u6709\u7740\u5f3a\u70c8\u7684\u63a2\u7d22\u548c\u5b66\u4e60\u7684\u613f\u671b\u3002"} +{"id": "0006764", "video_name": "32a1f8f4-b7c1-5e8e-a86b-4da72c997197", "text": "\u5728\u4e1c\u4eac\u7684\u9ed1\u6697\u5c0f\u5df7\u91cc\u6709\u4eba\u8d70\u8def\u3002"} +{"id": "7003249", "video_name": "3a4b7a9a-395e-5465-95cf-00eb19be181b", "text": "\u4e4c\u5229\u897f\u65af\u505a\u4e86\u4e00\u4e2a\u5669\u68a6\uff0c\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u623f\u5b50\u91cc\uff0c\u5728\u7f57\u9a6c\u795e\u5e99\u7684\u5e9f\u589f\u524d\uff0c\u6709\u7740\u672a\u6765\u611f"} +{"id": "8002489", "video_name": "e15ab75c-5261-5b07-84f9-7f40681c4ad9", "text": "\u75283\u79d2\u949f\u521b\u9020\u5954\u8dd1\u7684\u72d0\u72f8\u3002"} +{"id": "3004266", "video_name": "cae9130a-c9b3-53ad-b44f-d432d5c59e94", "text": "\u6d3b\u751f\u751f\u7684\u7167\u7247\u5728\u6742\u5fd7\u91cc\u5c55\u793a\u4e86\u4e00\u679aNASA\u706b\u7bad\u4ece\u5efa\u7b51\u7269\u540e\u9762\u5347\u8d77\uff0c\u5927\u91cf\u70df\u96fe\u98d8\u52a8\uff0c\u6c99\u6ee9\u4e0a\u7684"} +{"id": "6003744", "video_name": "59aa5a5a-793d-5755-b793-880ea6a68df0", "text": "\u5e26\u7740\u7fc5\u8180\u7684\u72d7\u5728\u4e91\u6735\u95f4\u98de\u7fd4\u3002"} +{"id": "0006984", "video_name": "3641c525-6484-5527-8d09-8d595741c960", "text": "\u4e00\u4e2a\u4ee5\u52a8\u6f2b\u4e3a\u4e3b\u9898\u7684\u591c\u5e97\u821e\u4f1a\u3002"} +{"id": "0005721", "video_name": "202a5187-4d9d-55ca-b346-477b13566a1a", "text": "\u96fe\u4e2d\u7684\u4e9a\u9a6c\u900a\u96e8\u6797\u3002\u4fe1\u606f\uff1aShopArt\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004717", "video_name": "5788ed4a-b0ce-5c19-ab34-aac7f55877e9", "text": "\u5728\u7ef4\u4eac\u65f6\u671f\uff0c\u4ed6\u4eec\u65e2\u8015\u79cd\u53c8\u72e9\u730e\u3002"} +{"id": "3003718", "video_name": "5680d437-d1cd-5378-88a9-9c9564860887", "text": "\u89c6\u9891\u3001\u65b0\u95fb\u62a5\u9053\u3001\u9e21\uff0c\u8def\u6613\u5a01\u767b\u5546\u6807"} +{"id": "8001615", "video_name": "dad3be94-ba01-5a0f-94e6-286ad1abd6cc", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6905\u5b50\u4e0a\u542c\u6b4c\uff0c\u6234\u7740\u8033\u673a\u5b66\u4e60\u3002"} +{"id": "3006583", "video_name": "3812a8cd-b075-5dc5-b02b-026c572451ec", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d0\u72f8\u6ce8\u89c6\u7740\u5730\u5e73\u7ebf\u3002"} +{"id": "8002891", "video_name": "4dbe4ee0-f8aa-5006-805d-536c4bfe6776", "text": "8k\u7535\u5f71\u573a\u666f\uff0c\u6210\u5e74\u7537\u5b69\u5728\u6751\u5e84\u8d76\u4e0a\u4ed6\u7684\u7eff\u8272\u516c\u4ea4\u8f66\u3002"} +{"id": "2003533", "video_name": "2ce8ba3c-0242-5b12-9d8b-c2536e3ae47e", "text": "\u4e00\u4f4d\u6027\u611f\u7684\u97e9\u56fd\u5973\u58eb\u5728\u6d77\u6ee9\u9644\u8fd1\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8863\u670d\u8df3\u821e\u3002"} +{"id": "4004516", "video_name": "f3c70180-196c-5862-8a50-d67b89b65740", "text": "\u4e00\u67b6\u76f4\u5347\u673a\u5728\u8fea\u62dc\u7684\u4e00\u8258\u8239\u4e0a\u98de\u884c\uff0c4k\u3002"} +{"id": "0006948", "video_name": "35b58c6f-6595-5ae7-83e1-fc81cca360e0", "text": "\u8001\u5175\u653b\u51fb\u72fc\u7684\u65e7\u753b\u9762\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "4004541", "video_name": "3517a05e-e611-505e-a6fe-185bdce32575", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5bb6\u91cc\u955c\u5b50\u7684\u53cd\u5c04\u4e2d\u5236\u4f5c\u4e86\u4e00\u6bb5\u957f\u957f\u7684\u6d45\u68d5\u8272\u5916\u5957\u7684\u89c6\u9891\u8bc4\u8bba\u3002"} +{"id": "3006990", "video_name": "2aba16ab-df8d-54ef-82da-b0cae219e016", "text": "\u4eba\u4eec\u5728\u7011\u5e03\u4e0a\u7684\u8239\u4e0a\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002\n\nSource sentence: I want to learn Chinese so I can communicate better with my Chinese friends. \n\n\u6211\u60f3\u5b66\u4e2d\u6587\uff0c\u8fd9\u6837\u6211\u5c31"} +{"id": "3006887", "video_name": "4a2e5817-177a-52ba-a593-9d2ed877bdcb", "text": "\u4e00\u53ea\u6709\u4e5d\u4e2a\u5c3e\u5df4\u3001\u5410\u706b\u7684\u72d0\u72f8\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u9ad8\u54c1\u8d28\uff0c4K\u3002"} +{"id": "7004596", "video_name": "35829e3e-e015-576c-86e5-663b9042728c", "text": "\u6709\u4e00\u53ea\u7eff\u8272\u7684\u68ee\u6797\u9752\u86d9\uff0c\u6b63\u7728\u7740\u7ea2\u8272\u7684\u773c\u775b\u5750\u5728\u4e00\u7247\u5de8\u5927\u7684\u53f6\u5b50\u4e0a\uff0c\u96e8\u6c34\u98de"} +{"id": "4003014", "video_name": "0cecf46e-2235-5493-aced-042e96cd5227", "text": "Cristiano Ronaldo\u8c08\u8bba\u6210\u529f\u548c\u52a8\u529b\u3002"} +{"id": "0005545", "video_name": "1c98d6ab-616f-517b-b63c-c4000d3ff951", "text": "\u6b66\u58eb\u5bf9\u5fcd\u8005\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c4k \u5206\u8fa8\u7387\uff0c\u8bbe\u5b9a\u5728\u6a31\u82b1\u6811\u9644\u8fd1\u3002"} +{"id": "8003123", "video_name": "f7b49fb1-8796-5d41-b93e-17fac1d18bb1", "text": "3D\u52a8\u753b\uff0c\u540a\u5760\u95ea\u70c1\u53d8\u5e7b\uff0c\u4e00\u9053\u5149\u8292\u7206\u53d1\uff0c\u63ed\u793a\u4e00\u53ea\u5a01\u4e25\u7684\u6355\u68a6\u7f51\u5728\u7a7a\u4e2d\u60ac"} +{"id": "1005978", "video_name": "6ddd2f07-afa8-5fcc-b88a-907f3179efc5", "text": "\u8fdc\u5904\u732b\u5934\u9e70\u7684\u53eb\u58f0"} +{"id": "2004345", "video_name": "8e198b9c-9d29-510a-9e9d-8ae3642fbee0", "text": "\u8fd9\u4e2a\u6751\u5e84\u5145\u6ee1\u4e86\u6b22\u58f0\u7b11\u8bed\u3001\u611f\u6069\u548c\u793e\u7fa4\u610f\u8bc6\u3002\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "3003310", "video_name": "ad8354ce-bfa3-5173-b02c-8d86cceac74a", "text": "\u5e03\u62c9\u5fb7\u00b7\u76ae\u7279\u7a7f\u7740\u793c\u670d\uff0c\u903c\u771f\u5730\u7ad9\u5728\u76f4\u5347\u673a\u655e\u5f00\u7684\u95e8\u8fb9\uff0c\u65e5\u843d\u65f6\u5206\uff0c\u57ce\u5e02\u5728\u4e0b\u65b9\u3002"} +{"id": "3003401", "video_name": "7708e2bd-eb74-5819-8d5a-aca7534e3ea8", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u8f6e\u5ed3\u56fe\u50cf\u7ad9\u5728\u4e00\u4e2a\u975e\u5e38\u9ad8\u7684\u60ac\u5d16\u8fb9\u7f18\uff0c\u4e0b\u9762\u662f\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6c34\u3002\u6ee1\u6708\u5728\u4ed6\u8eab\u540e\u3002\u4e2d"} +{"id": "1004271", "video_name": "4f04ee13-a8f1-5479-a8a2-3def6bf1190e", "text": "\u5bfb\u627e\u548c\u5e73\u89e3\u51b3\u65b9\u6848\u7684\u51b3\u5b9a\u3002"} +{"id": "5001402", "video_name": "d5b5b068-659a-562c-8db1-fb840a7b01a5", "text": "\u663e\u793a\u7f13\u6162\u63a5\u8fd1\u5e9f\u5f03\u5b9e\u9a8c\u5ba4\u3002\u6444\u50cf\u673a\u7a7f\u8fc7\u9ad8\u8349\u548c\u655e\u5f00\u7684\u95e8\uff0c\u63ed\u793a\u4e86\u9ed1\u6697\u548c\u9634\u6c89\u7684\u6c1b"} +{"id": "0004059", "video_name": "0278a5a9-878d-5a81-b872-4a89c7f464b5", "text": "\u5728\u5df4\u9ece\u8857\u5934\u5236\u4f5c\u4e24\u4e2a\u7537\u5b69\u4e89\u5435\u7684\u89c6\u9891\u3002"} +{"id": "2003813", "video_name": "cbcdfd46-cc9f-51af-bb31-85660d6f87fc", "text": "\u56db\u4e2a\u670b\u53cb\u4f4f\u5728\u4e00\u95f4\u516c\u5bd3\u91cc\u3002"} +{"id": "0004621", "video_name": "0c0ed5d6-4940-5669-a31f-10537e885169", "text": "\u89d2\u8272\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "7002265", "video_name": "1c186817-527e-5a88-9a96-42e43e0f4f49", "text": "\u4e00\u4e2a\u9ad8\u9ad8\u7626\u7626\u7684\u7537\u4eba\u5728\u7530\u91ce\u4e0a\u8d70\u7740\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\uff0c\u4ed6\u8eab\u540e\u662f\u4e00\u5ea7\u6a21\u7cca\u7684\u5927\u5c71\uff0c\u4ee570"} +{"id": "8003312", "video_name": "828bd788-eab6-5fb5-a3a5-6d3f4c5a19b0", "text": "\u65e5\u843d\u65f6\u7684\u821e\u52a8\u5c71\u5cf0\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u8ddf\u968f\u774030\u540d\u9a91\u58eb\u51b2\u4e0b\u5c71\u5ce6\uff0c\u5c71\u5cf0\u52a8\u6001"} +{"id": "8001195", "video_name": "7b51c8e1-50e2-5430-adbc-3bbad863f711", "text": "\u94bb\u77f3\u95ea\u95ea\u53d1\u5149\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "0006672", "video_name": "30c11bcd-f807-5941-a871-c305169ac76f", "text": "\u6069\u83f2\u5179\u80fd\u6e90\u516c\u53f8\u7684\u8425\u9500\u4ecb\u7ecd\u6807\u5fd7\u4e0e\u82f9\u679c\u516c\u53f8\u5e7f\u544a\u76f8\u4f3c\u3002"} +{"id": "1006066", "video_name": "6f63ca88-a493-5f63-9cf3-dcab20ae10d2", "text": "\u975e\u5e38\u8212\u9002\u7684\u5c0f\u5730\u65b9\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\uff08\u65b0\u6d77\u8bda\u52a8\u753b\uff1a0.4\uff09\uff0c\u57ce\u5e02\u8857\u9053\u4e0a\u7684\u7834\u65e7\u8001\u623f\u5b50\uff0c\u5bb6\u5ead\u5e03"} +{"id": "3005484", "video_name": "7608b2c1-7ab1-5e98-ae26-a1922c42f3ba", "text": "\u9ed1\u8272\u539a\u5916\u5957\u3001\u7070\u8272\u88e4\u5b50\u3001\u7eff\u8272\u978b\u5b50\uff0c\u5929\u6c14\u5bd2\u51b7\u3002"} +{"id": "4003437", "video_name": "973be2ab-bed9-57d5-b034-1df962cf312d", "text": "\u7ebd\u7ea6\u76842D\u52a8\u753b\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "1005091", "video_name": "5de2a39b-cae2-5e50-a0e6-6ecb21d3ee11", "text": "\u767d\u8272\u9a6c\u6876\u5ea7\uff0c\u5ea7\u4f4d\u4e0a\u6c34\u6ea2\u51fa\uff0c\u6f2b\u753b\uff0c8K\u8d28\u91cf\u3002"} +{"id": "6002885", "video_name": "70fb81ea-0618-5080-b324-5d5092c0999a", "text": "\u4e00\u4f4d\u5931\u53bb\u624b\u8868\u7684\u519c\u6c11"} +{"id": "5001004", "video_name": "f7fa0bef-e088-58f7-9f52-a196e8c6c468", "text": "\u9f20\u9c7c\u548c\u9f20\u9c7c\u5361\u666e\u62c9\u5361\u7684\u505c\u683c\u52a8\u753b\u7535\u5f71"} +{"id": "0003655", "video_name": "4118cf7c-0994-557a-b99c-cf5fd8587bca", "text": "\u4e00\u4e2a\u5173\u4e8e\u7f51\u7edc\u9493\u9c7c\u653b\u51fb\u548c\u4fdd\u62a4\u81ea\u8eab\u5b89\u5168\u7684\u6545\u4e8b\u3002"} +{"id": "6004242", "video_name": "7237c3b2-5cff-5273-874c-3149512a6f85", "text": "\u5546\u4e1a\u5c55\u793a2022\u5e74\u51ef\u8fea\u62c9\u514b\u51ef\u96f7\u5fb7\uff0c2022\u5e74\u798f\u7279\u5361\u8f66\uff0c2020\u5e74\u65e5\u4ea7\u3002\u8fd0\u52a8\u3002"} +{"id": "5001473", "video_name": "6abba960-b05e-5ed7-ab0a-05f96ec306a7", "text": "\u56db\u4e2a\u4eba\u739b\u4e3d\u83b2\u00b7\u66fc\u68ee\u98ce\u683c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "1005582", "video_name": "66b73b08-2675-586c-a040-53c32cf4f4ed", "text": "\u5973\u5b69\uff0c\u84dd\u8272\u5934\u53d1\uff0c\u5728\u8fea\u65af\u79d1\u8df3\u821e\u3002"} +{"id": "8001916", "video_name": "4ef7c6c8-b315-5972-afe3-85df4996aa9a", "text": "\u4e00\u4e2a\u5370\u5ea6\u5973\u5b69\u548c\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u5728\u516c\u56ed\u91cc\u76f8\u4e92\u4ea4\u8c08\uff0c\u6444\u50cf\u5934\u7f29\u5c0f\u3002"} +{"id": "6002028", "video_name": "732355c0-e819-5bbe-9a65-94d5511c8195", "text": "\u5728\u4e00\u4e2a\u53e4\u96c5\u7684\u793e\u533a\uff0c\u5750\u843d\u5728\u7199\u7199\u6518\u6518\u7684\u8857\u9053\u548c\u5b81\u9759\u7684\u516c\u56ed\u4e4b\u95f4\uff0c\u4e00\u7fa4\u52c7\u6562\u7684\u5b69"} +{"id": "7003252", "video_name": "7bb92e2e-418e-589b-a502-fcabc167a3bc", "text": "\u8d85\u81ea\u7136\u8c03\u67e5\uff1a\u8bb0\u5f55\u8239\u5458\u8bbe\u7f6e\u76d1\u63a7\u8bbe\u5907\u3001\u8fdb\u884c\u7535\u5b50\u58f0\u97f3\u73b0\u8c61\uff08EVP\uff09\u4f1a\u8bdd\u6216\u5728\u591c\u95f4\u76d1\u89c6\u671f\u95f4\u4f7f\u7528\u7ea2\u5916\u6444\u50cf\u5934\u3002"} +{"id": "6003123", "video_name": "b4c01c8e-2293-5bec-9589-84813a3e575a", "text": "\u5927\u6d77\u4e2d\u7684\u7f8e\u4eba\u9c7c\uff0c\u6709\u7740\u957f\u957f\u7684\u9ed1\u53d1\u548c\u84dd\u8272\u7684\u773c\u775b\u3002"} +{"id": "7003879", "video_name": "3127121b-9f7b-5c00-93f3-9fd4f2247798", "text": "\u8389\u62c9\u548c\u60e0\u65af\u514b\u8d70\u8fdb\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u3002"} +{"id": "2006704", "video_name": "64a5e71b-f0cd-5e0b-9092-52a367f72a2c", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u661f\u5149\u6708\u591c\u4e0b\u6563\u6b65\u3002"} +{"id": "7003263", "video_name": "749794d9-5eb5-501e-924e-757b7218b62d", "text": "\u8dd1\u8f66\u5728\u53cc\u8f66\u9053\u701d\u9752\u8def\u4e0a\u75be\u9a70\uff0c\u5448\u73b0\u51fa1970\u5e74\u4ee3\u7684\u8857\u5934\u7535\u5f71\u98ce\u683c\uff0c\u540c\u65f6\u4e5f\u6709\u8d5b\u535a\u670b\u514b"} +{"id": "1005275", "video_name": "610980fa-e7e3-5a4b-829b-5dfaa15f93df", "text": "\u65b0\u529b\u91cf\u7684\u767d\u8272\u76ae\u5361\u4e18\uff0c\u5728\u5929\u7a7a\u4e2d\u91ca\u653e\u51fa\u591a\u5f69\u7684\u95ea\u7535\u3002"} +{"id": "2005538", "video_name": "3ac2aaeb-92dd-5125-b956-397e47062362", "text": "\u7f13\u6162\u5730\u892a\u8272\u6210\u660e\u4eae\u7684\u7ea2\u8272\uff0c\u5411\u7740\u6e56\u5fc3\u79fb\u52a8\u3002\n\nSource sentence: The conference will be held in the main auditorium on the second floor. \n\u4f1a\u8bae\u5c06"} +{"id": "3004550", "video_name": "b0270916-b49c-50a5-abba-a5f5aa57a851", "text": "2D\u52a8\u6f2b\u4eba\u7269\u7ad9\u5728\u8352\u91ce\u4e2d\uff0c\u7a7f\u7740\u7834\u65e7\u7684\u8863\u670d\u3002"} +{"id": "7002951", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "\u4ed6\u8d70\u8fdb\u53e6\u4e00\u4e2a\u623f\u95f4\uff0c\u770b\u5230\u91cc\u9762\u5f88\u6697\uff0c\u53ea\u6709\u4e00\u5f20\u684c\u5b50\u548c\u51e0\u628a\u6905\u5b50\uff0c\u6444\u50cf\u673a\u8fdb\u884c\u4e86\u5e73\u79fb\u548c\u7f29\u653e\u3002"} +{"id": "1005288", "video_name": "613498de-ebff-579b-bd4c-2ed135d6c662", "text": "\u5c06\u89d2\u8272\u6539\u4e3a\u300a\u51b0\u96ea\u5947\u7f18\u300b\u4e2d\u7684\u827e\u5c14\u838e\u3002"} +{"id": "3005518", "video_name": "7876fa4a-6e0d-59e2-a268-801f6bf54ea6", "text": "\u89d2\u8272\u8d70\u5230\u524d\u9762\u3002\u9644\u4ef61\u3002"} +{"id": "7003577", "video_name": "12460ec3-99c2-5e0f-a59d-83d93b6cbc97", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6751\u5e84\u91cc\u753b\u753b\u3002"} +{"id": "7002141", "video_name": "670df639-e3bf-56ea-b107-3481a97b75a0", "text": "\u5723\u8bde\u524d\u5915\u5e26\u5c0f\u9e7f\u89d2\u7684\u732b"} +{"id": "6002022", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "\u821e\u53f0\u4e0a\u7684\u8bf4\u5531\u6b4c\u624b\uff0c\u4ee53D\u52a8\u6f2b\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u7231\u60c5\u30018K\u3001\u8096\u50cf\u3001\u6b22\u6b23\u76843D\u5361\u901a"} +{"id": "8002198", "video_name": "5d589423-5dba-5d1b-94e7-d72b164a3ea3", "text": "\u5c0f\u5deb\u5e08\u7684\u6545\u4e8b\u544a\u8bc9\u6211\u4eec\uff0c\u5584\u826f\u3001\u667a\u6167\u548c\u771f\u6b63\u7684\u53cb\u8c0a\u662f\u975e\u5e38\u91cd\u8981\u7684\u3002\u5e0c\u671b\u8fd9\u4e2a\u6545\u4e8b\u80fd\u6fc0"} +{"id": "7003628", "video_name": "03a5abf3-909e-5bc1-a680-04d0af52dab7", "text": "\u5386\u53f2\u4e2d\u5fc3\u7ef4\u4e5f\u7eb3\uff0c\u9a6c\u8f66\u6b63\u5728\u884c\u9a76\u3002\n\nSource sentence: I am interested in learning Mandarin Chinese. \n\u6211\u5bf9\u5b66\u4e60\u666e\u901a\u8bdd\u5f88\u611f\u5174\u8da3\u3002"} +{"id": "8002847", "video_name": "8d4b274b-5a0b-5f11-a923-70123dd9843a", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u6b63\u5728\u6d77\u6ee9\u4e0a\u8c08\u8bba\u5979\u7684\u6bd4\u57fa\u5c3c\u3002"} +{"id": "8002926", "video_name": "6972221c-b062-5c7d-9a4e-15d9b896cb3c", "text": "\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u7535\u5f71\u4e2d\u5173\u4e8e\u62ff\u7834\u4ed1\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "8003329", "video_name": "4aa8eddc-9729-55c0-a50f-085269db4720", "text": "\u94f8\u5e01\u9762\u5236\u4f5c\u51fa\u7b11\u7684\u8868\u60c5\u53cd\u5e94\u3002"} +{"id": "7004620", "video_name": "4e7b610b-f278-5ebf-bcc5-1f45d9f43bac", "text": "\u72d7\u628a\u53e3\u888b\u9012\u7ed9\u4e86\u5e97\u4e3b\u300216\uff1a9"} +{"id": "5001733", "video_name": "156dbd16-787c-54b5-aae4-227eba57815a", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u4e24\u4e2a\u5c0f\u4eba\uff08\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\uff09\u624b\u7275\u624b\u5411\u5fb7\u56fd\u56fd\u65d7\u8d70\u53bb\u3002"} +{"id": "2007555", "video_name": "dd8dfa23-ff6a-5b1e-80d8-0dcae7898b61", "text": "\u8fd0\u884c\u4e2d\u58f0\u7eb3\u68c0\u6d4b\u7cfb\u7edf\u7684\u56fe\u5f62\u8868\u793a\u3002"} +{"id": "2004530", "video_name": "cda886c5-2a77-53fd-9655-d7871227fea7", "text": "\u7535\u5f71\u5f0f\u7684\uff0c16:9\u6bd4\u4f8b\u7684\uff0c\u8d85\u9ad8\u6e05\u7684\uff0c4K\u7684\uff0c\u52a8\u7269\u8fd0\u52a8\u4f1a\u3002"} +{"id": "4004977", "video_name": "4b5fc910-4b12-5bb0-bb15-1daf419e3866", "text": "\u514b\u91cc\u5e0c\u90a3\uff0c\u62e5\u6709\u8ff7\u4eba\u7684\u84dd\u8272\u80a4\u8272\u548c\u8c03\u76ae\u7684\u5fae\u7b11\uff0c\u88ab\u6240\u6709\u4eba\u6240\u7231\u6234\u3002"} +{"id": "7004956", "video_name": "4f9d2404-2774-5ed2-b813-b9ca787ea778", "text": "\u6709\u4e24\u79cd\u9009\u62e9\u5f53\u4f60\u5728\u751f\u547d\u4e2d\u9047\u5230\u5341\u5b57\u8def\u53e3\u3002"} +{"id": "8002074", "video_name": "436f8842-8ba5-57c1-9cbb-b824651b21db", "text": "\u53ef\u89c6\u5316XR\u5982\u4f55\u5c06\u7269\u7406\u548c\u865a\u62df\u4e16\u754c\u878d\u5408\u5728\u4e00\u8d77\uff0c\u5c31\u50cf\u4e00\u4e2a\u540c\u65f6\u62e5\u6709\u771f\u5b9e\u548c\u865a\u62df\u5143\u7d20\u7684\u623f\u95f4\u3002"} +{"id": "4002920", "video_name": "4da24f52-f81d-5e9d-a5a2-a4f93611b83b", "text": "\u5973\u5b69\u7a7f\u7740\u51ac\u8863\uff0c\u8868\u60c5\u4ece\u6b22\u547c\u5230\u60ca\u6050\u4e0d\u65ad\u53d8\u5316\uff0c\u5979\u4e3e\u8d77\u53cc\u624b\u4fdd\u62a4\u81ea\u5df1\u7684\u8138\u3002"} +{"id": "4003124", "video_name": "331f363d-4589-5085-9dba-e79d7709dd07", "text": "\u8389\u8389\u53d1\u73b0\u4e86\u795e\u5947\u7684\u548c\u8c10\u5c71\u4e18\u4e4b\u5730\u3002"} +{"id": "1006322", "video_name": "73b6ae3e-7d48-5653-a11e-1bce68e19a24", "text": "\u751f\u7269\u6b63\u5728\u6d77\u5e95\u79fb\u52a8\u3002"} +{"id": "2004341", "video_name": "c2d38a1f-1442-553b-898f-11a3cd369de9", "text": "\u4e00\u5e62\u53e4\u8001\u3001\u98ce\u5439\u96e8\u6253\u7684\u519c\u820d\u77d7\u7acb\u5728\u4e00\u7247\u9ad8\u8349\u5730\u4e2d\u95f4\uff0c\u4e0a\u9762\u60ac\u6d6e\u7740\u4e00\u67b6\u91d1\u5c5e\u98de"} +{"id": "2007427", "video_name": "7649a42d-dcb0-59d4-bb13-9b5fe0244bd2", "text": "\u653e\u5927\u4e00\u4e2a\u6234\u7740\u53cd\u5149\u592a\u9633\u955c\u3001\u53ef\u7231\u9177\u70ab\u7684\u6bcd\u9e21\uff0c\u5728\u51b2\u6d6a\u677f\u4e0a\u51b2\u7740\u4e00\u5927\u7247\u84dd\u8272\u7684"} +{"id": "1004254", "video_name": "4ebcb95d-ef89-5031-9cf6-f286775ba4a6", "text": "\u739b\u96c5\u548c\u5979\u7684\u670b\u53cb\u4eec\u5e26\u7740\u7b80\u5355\u7684\u6e14\u7f51\u548c\u88c5\u5907\u53bb\u5c0f\u6cb3\u9493\u9c7c\uff0c\u5728\u5174\u594b\u548c\u559c\u60a6\u4e2d\u6355\u83b7"} +{"id": "8001409", "video_name": "8673e042-5170-568e-9974-0eae261f8878", "text": "\u4e00\u8258\u52a8\u753b\u513f\u7ae5\u753b\u7684\u5c0f\u8239\u3002"} +{"id": "2006756", "video_name": "b0327bdf-f539-594f-8281-14ea1e114950", "text": "2D\u52a8\u753b\uff0c\u6f2b\u753b\uff0c\u516c\u5143\u524d1000\u5e74\u7684\u963f\u62c9\u4f2f\u56fd\u738b\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u5915\u9633\u4f59\u6656\uff0c\u5fae\u98ce\u3002"} +{"id": "0005295", "video_name": "17fb7eff-8edf-502d-ad16-0b1b594340c1", "text": "Kris\u7ad9\u5728\u4e00\u5f20\u5c0f\u9910\u684c\u7684\u672b\u7aef\u3002"} +{"id": "8001631", "video_name": "2f91dcfd-31d6-5699-af74-dbed97a19ec1", "text": "\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u5fae\u7b11\u3002\u4f4e\u52a8\u753b\u3002"} +{"id": "7003153", "video_name": "04d792bc-c628-5f44-9e3d-bd5e4c978df4", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u4e00\u4e2a\u4eba\u4f7f\u7528\u4ed6\u7684\u7535\u8111\uff0c\u58c1\u7eb8\u662f\u4ed9\u4eba\u638c\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\u76844K\u3002"} +{"id": "0006481", "video_name": "2d485d39-a1dd-59b0-b575-c64438711bde", "text": "\u5728\u68ee\u6797\u91cc\u521b\u5efa\u4e00\u4e2a\u7ad9\u5728\u6811\u65c1\u8fb9\u8bf4\u8bdd\u7684\u7537\u5b69\u3002"} +{"id": "4002523", "video_name": "d216246e-09ee-5f22-bf3e-8bc5f05d35a8", "text": "\u4ece\u4e0a\u9762\u770b\uff0c\u88ab\u6d45\u84dd\u8272\u6c34\u73af\u7ed5\u7684\u70ed\u5e26\u5929\u5802\u5c9b\uff0c\u5904\u4e8e\u8f7b\u677e\u7684\u73af\u5883\u4e2d\u3002"} +{"id": "2003771", "video_name": "9f89abe1-6cc6-5325-b23d-8b6fd8d55079", "text": "\u4e00\u4e2a\u57fa\u4e8e\u80f6\u539f\u86cb\u767d\u7684\u7c89\u672b\u4ea7\u54c1\u6a21\u578b\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u76d2\u5b50\u3002\u8f83\u6697\u7684\u4e3b\u9898\uff0c\u6ca1\u6709\u4eba\u6216\u6587\u672c\u3002"} +{"id": "6002295", "video_name": "d3753644-d339-5e48-81f3-6d2ae22d671e", "text": "\u8001\u5987\u4eba\u544a\u8bc9\u7537\u5b69\u5979\u81ea\u5df1\u7684\u72d7\u5df2\u7ecf\u6b7b\u4e86\u5f88\u591a\u5e74\u4e86\u3002\u5979\u544a\u8bc9\u4ed6\u5f53\u5979\u7684\u72d7\u6b7b\u53bb\u65f6\u7684\u611f"} +{"id": "5001684", "video_name": "0e43fd09-62f7-545d-b90a-d4129f34a71d", "text": "\u50cf\u7d20\u5728\u5929\u5802\u4e2d\u76843D\u52a8\u753b\uff0c\u642d\u914dPixar 3D\u82f1\u96c4\uff0c3D\uff0c16\uff1a9\u3002"} +{"id": "2007337", "video_name": "854d7cfb-3ebe-5dec-b1d6-e9bf176ffae9", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9762\u5bf9\u6709\u9762\u5b54\u7684\u8c08\u8bdd\u6811\u540e\u6df1\u5438\u4e00\u53e3\u6c14\uff0c\u6570\u5b57\u827a\u672f\u7248\u3002"} +{"id": "3005853", "video_name": "f46fa7fb-bae0-5028-89c3-829650f922b6", "text": "\u5e74\u5e7c\u7684\u5b69\u5b50\u4eec\u53d1\u73b0\u81ea\u5df1\u72ec\u81ea\u5728\u5bb6\uff0c\u51b3\u5b9a\u5ea6\u8fc7\u4e00\u4e2a\u5145\u6ee1\u4e50\u8da3\u7684\u4e00\u5929\u3002\u6784\u601d\u4e00\u4e2a\u80fd\u591f\u6355\u6349\u5230\u8fd9"} +{"id": "1005307", "video_name": "61812556-ced1-5b72-bf3f-87283f492292", "text": "\u6591\u70b9\u5927\u8c61\uff1a\u4e00\u53ea\u6709\u6591\u70b9\u800c\u4e0d\u662f\u901a\u5e38\u7070\u8272\u7684\u73a9\u5177\u5927\u8c61\u3002"} +{"id": "6004335", "video_name": "52c41f53-21fb-5966-a639-45be562a2898", "text": "\u5979\u5728\u5c4b\u9876\u4e0a\u5954\u8dd1\uff0c\u9ed1\u591c\u4e2d\u6708\u5149\u4e0b\uff0c\u4e3a\u89e3\u6551\u5bb6\u4eba\u800c\u594b\u6597\u3002"} +{"id": "6004820", "video_name": "664f4118-dbdc-513a-b4b2-3256f9d81593", "text": "\u968f\u7740\u8ffd\u9010\u7684\u8fdb\u884c\uff0c\u5c55\u793a\u96e8\u52bf\u52a0\u5267\uff0c\u96e8\u6ef4\u5728\u9010\u6e10\u6d88\u5931\u7684\u9633\u5149\u4e2d\u95ea\u8000\u3002"} +{"id": "7004533", "video_name": "28bf0dd5-b925-5782-81e4-df47646e7e2f", "text": "\u7a81\u51fa\u5e78\u798f\u7684\u591a\u6837\u6027\u3002\u4ee5\u5409\u535c\u529b\u98ce\u683c\u4e3a\u7279\u8272\u3002"} +{"id": "6003659", "video_name": "964e85de-7c62-54bd-a9e2-0e8b3302c912", "text": "\u5723\u8bde\u8001\u4eba\u5bf9\u5750\u5728\u4ed6\u6905\u5b50\u4e0a\u7684\u5b69\u5b50\u8bf4\u4e86\u4e9b\u4ec0\u4e48\u3002"} +{"id": "0006563", "video_name": "2eb5a90c-f3ca-54d2-8303-85a2b25a2de3", "text": "\u6c49\u5821\u3001\u85af\u6761\u3001\u5e26\u5438\u7ba1\u7684\u73bb\u7483\u676f\u3001\u9e21\u5757\u548c\u9171\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u4e2a\u65b0\u6d88\u606f\u7684\u624b\u673a\u4e0d\u505c\u5730\u95ea"} +{"id": "3004385", "video_name": "c870f4b4-99ad-5065-a1a7-79497f13323f", "text": "\u5723\u5f25\u989d\u5c14\u5927\u5929\u4f7f\u6325\u821e\u7740\u4ed6\u7684\u5251\u4e0e\u6492\u65e6\u640f\u6597\u3002"} +{"id": "2003048", "video_name": "1b6822f0-2345-567f-a0ab-883fb3721da9", "text": "\u7528\u624b\u673a\u54ed\u6ce3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004309", "video_name": "ce9f21c1-1fd2-5762-b733-644b081bb66f", "text": "\u9ab7\u9acf\u99ac\u9a0e\u5728\u5f48\u7403\u4e0a\u65b9\u3002"} +{"id": "0004197", "video_name": "04d847ab-0bf3-5b95-be84-9cc380e381cf", "text": "\u5728\u91cf\u5b50\u9886\u57df\u4e2d\u53d1\u751f\u91cf\u5b50\u7206\u70b8\uff0c\u4f34\u968f\u7740\u7f8e\u4e3d\u7684\u706b\u82b1\u548c\u7535\u5b50\u7c92\u5b50\u7684\u788e\u88c2\u3002"} +{"id": "1004366", "video_name": "50a522a5-a4eb-5508-846a-2ac467f14dce", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5728\u673a\u573a\u80cc\u540e\u62e5\u62b1\u5979\u7684\u7537\u53cb\u54ed\u6ce3\u3002\u4ed6\u80cc\u5bf9\u5979\u7ad9\u7740\uff0c\u65c1\u8fb9\u653e\u7740\u884c\u674e\u3002\u65c1"} +{"id": "4004793", "video_name": "144de4a5-f190-56a9-b279-32bfb80094fb", "text": "\u5728\u4e00\u4e2a\u53e4\u96c5\u8212\u9002\u7684\u4e66\u623f\u89d2\u843d\u91cc\uff0c\u4e00\u628a\u78e8\u635f\u7684\u76ae\u9769\u6276\u624b\u6905\u9760\u8fd1\u4e00\u6247\u5927\u7684\u62f1\u5f62\u7a97"} +{"id": "0003995", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970\u5e74\u4ee3\uff0c\u7535\u5f71\u9897\u7c92\u611f\uff0c\u4eba\u7c7b\u9e1f\u513f\u843d\u5728\u7535\u8bdd\u7ebf\u4e0a\uff0c\u5728\u9b54\u6cd5\u65f6\u6bb5\uff0c\u7535\u5f71\u5f0f\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u9b54\u5e7b"} +{"id": "1003326", "video_name": "3d400435-ddb0-5667-a2ff-34a12302b866", "text": "\u91c7\u8d2d\u8ba2\u5355\u6d41\u7a0b\u7b49\u5f85\uff0c\u81f3\u5173\u91cd\u8981\u3002"} +{"id": "7004897", "video_name": "20f61251-19b5-5c22-b3a7-33a454a1d41f", "text": "\u85cf\u8eab\u4e8e\u8d77\u4f0f\u7eff\u8272\u5c71\u4e18\u95f4\u7684\u90c1\u90c1\u8471\u8471\u7684\u5c71\u8c37"} +{"id": "7002078", "video_name": "f70b707d-75fc-5dfb-b313-345dcf962ef3", "text": "\u4e00\u53ea\u8774\u8776\u4f18\u96c5\u5730\u5728\u82b1\u4e1b\u4e2d\u98de\u821e\u3002"} +{"id": "3006609", "video_name": "ce44d4a2-d6cf-59fb-beb3-99c820348383", "text": "\u4e00\u767e\u53ea\u6050\u9f99\u88ab\u4e00\u9897\u5de8\u5927\u7684\u9668\u77f3\u6467\u6bc1\u3002"} +{"id": "6003263", "video_name": "e22ad2a8-7787-5472-961d-a6c5a4a867f1", "text": "\u4ece\u592a\u7a7a\u4fef\u77b0\u5730\u7403\u7684\u5168\u666f\uff0c\u5c55\u793a\u7740\u5145\u6ee1\u6f29\u6da1\u4e91\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u5927\u9646\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6d77"} +{"id": "2003988", "video_name": "ce558322-7205-53c3-8d48-780d9eed14e7", "text": "1669\u5e74\u585e\u7ef4\u5229\u4e9a\u7684\u6eb4\u6cb9\u7167\u7247\uff0c\u585e\u7ef4\u5229\u4e9a\u761f\u75ab\uff0c\u57ce\u9547\u53d8\u5f97\u975e\u5e38\u865a\u5f31\uff0c\u8bb8\u591a\u4eba"} +{"id": "0003029", "video_name": "35d7ce21-768a-5036-a97f-5a301c1ca4b5", "text": "\u4e00\u4e2a\u5531\u7247\u673a\u5728\u7cd6\u679c\u5e97\u91cc\u64ad\u653e\u5531\u7247\uff0c\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u8001\u4eba\u7528\u6ed1\u7a3d\u7684\u821e\u6b65\u8df3\u7740\u3002"} +{"id": "8003339", "video_name": "a1f3fc54-b401-5903-891e-af5667d441ec", "text": "\u4e00\u8f86\u4ece\u6865\u4e0a\u884c\u9a76\u7684\u516c\u4ea4\u8f66\u3002"} +{"id": "8001692", "video_name": "9fe005ff-f3bb-560e-b461-449baf5fffa6", "text": "\u4f7f\u7528\u9a6c\u54c8\u5df4\u62c9\u5854\u7684\u963f\u6731\u6069\u548c\u4ed6\u7684\u4e3b\u541b\u514b\u91cc\u5e0c\u7eb3\uff0c\u521b\u5efa\u4e00\u4e2a\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "7002667", "video_name": "dbcb45bd-e0f2-586a-bf7b-cb44fa7cdb13", "text": "\u5916\u661f\u4eba\u4e0e\u519b\u961f\u63e1\u624b\u3002"} +{"id": "1005465", "video_name": "646d8b3a-3a14-5ff5-883e-19f2756c9a2a", "text": "\u4ece\u97f3\u9891\u5c55\u53f0\u7684\u89d2\u5ea6\u62cd\u6444\u7684\u7535\u5b50\u97f3\u4e50\u8282\u821e\u53f0\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u524d\u9762\u6709\u6210\u5343\u4e0a\u4e07\u7684\u89c2\u4f17\u3002"} +{"id": "0005674", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "\u4ece\u53a8\u623f\u7a97\u6237\u770b\u5230\u5b69\u5b50\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "4003455", "video_name": "3a50f303-56dc-5261-9141-90e9537dd564", "text": "\u4e00\u4e2a\u53ef\u7231\u6f02\u4eae\u7684\u5973\u5b69\u5750\u5728\u684c\u524d\uff0c\u4f46\u5bf9\u5b66\u4e60\u6beb\u65e0\u5174\u8da3\u3002"} +{"id": "2005861", "video_name": "aac6e31a-b204-591d-90d2-6522fdd784f8", "text": "\u8036\u7a23\u57fa\u7763\u4ee5\u706b\u4e00\u6837\u7684\u773c\u775b\u9762\u5bf9\u8def\u897f\u6cd5\u3002\u7535\u5f71\u5316\u3002\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u3002"} +{"id": "1004727", "video_name": "57acedf7-a502-5bf0-bee9-c5f2a7fcad97", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5929\u4f7f\u5973\u5b69\u548c\u5979\u7537\u670b\u53cb\u5728\u6ee1\u662f\u73ab\u7470\u7684\u8def\u4e0a\u6563\u6b65\u3002"} +{"id": "2007825", "video_name": "7fe9c5c9-45bf-591f-9c02-6bc8308949d0", "text": "\u5916\u661f\u4eba\u8096\u50cf\uff0c\u8721\u67d3\uff0c\u590d\u6742\u7ec6\u8282\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "2007450", "video_name": "40e420e2-b5fb-5f3d-8c13-8673e4f992a1", "text": "\u7537\u5b50\u5728\u96e8\u4e2d\u5c4b\u9876\u4e0a\u5438\u70df\u3002"} +{"id": "3003462", "video_name": "aa91e017-0671-587e-beb7-8da5df061679", "text": "\u8be1\u79d8\u95f4\u8c0d\uff0c\u6ca1\u6709\u80cc\u666f\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u95f4\u8c0dV\u95f4\u8c0d\u3002"} +{"id": "2006678", "video_name": "4a37d1f9-cfe6-5c60-af67-fa338fbf124d", "text": "\u6e05\u6668\uff0c\u5b81\u9759\u7684\u6751\u5e84\u666f\u8c61\uff0c\u519c\u6c11\u5728\u8015\u7530\u5582\u517b\u52a8\u7269\uff0c\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "0004740", "video_name": "0e77b5fd-d789-5e5d-a59f-6497458c29e4", "text": "\u751f\u6210\u7d22\u9a6c\u91cc\u5bb6\u5ead\u7236\u6bcd\u513f\u5b50\u5973\u513f\u54ed\u6ce3\u60b2\u4f24\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "1005017", "video_name": "5cd86cbd-205e-543b-ab56-aa9cf4888998", "text": "\u4e00\u4e2a\u50cfAlex Gray\u98ce\u683c\u7684\u4e1a\u529b\u5b9e\u4f53\u3002"} +{"id": "8002235", "video_name": "296748d3-d28b-5942-9335-0d8b478eda19", "text": "\u4e24\u4e2a\u9a6c\u6765\u7537\u5b50\u6b63\u5728\u7ed8\u5236\u672a\u6765\u5efa\u7b51\u7684\u8ba1\u5212\uff0c\u91c7\u752880\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\uff0c23\u5e27\u6bcf\u79d2\u3002"} +{"id": "7003448", "video_name": "9db079bd-4f56-5910-9ce0-9b5ae802f900", "text": "\u521b\u9020\u4e00\u53ea\u770b\u8d77\u6765\u50cf\u9c8d\u52c3\u00b7\u9a6c\u5229\u7684\u9e66\u9e49\u3002"} +{"id": "1004829", "video_name": "5934230e-356f-564b-bef1-7ffd3946dc7f", "text": "\u8d70\u8def\uff0c\u90a3\u4e2a\u5973\u4eba\u6b63\u5728\u6162\u6162\u5730\u8d70\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "0006262", "video_name": "299837a2-944f-5dcd-a2df-3886282eaf69", "text": "\u6811\u7684\u79cd\u5b50\u4ece\u6781\u7b80\u4e3b\u4e49\u7684\u5927\u8111\u4e2d\u751f\u957f\uff0c\u67d4\u548c\u7684\u8272\u5f69\u3002"} +{"id": "1006498", "video_name": "76f9103c-ee94-5fc2-9cf9-2690252491fa", "text": "\u89c6\u9891\u4e2d\u7684\u7537\u5973\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u65f6\u5c1a\u8863\u670d\uff0c\u7ad9\u5728F1\u8d5b\u9053\u4e0a\u3002"} +{"id": "4002080", "video_name": "58ddd276-78c0-59f2-b957-ce93ee38a308", "text": "\u8bf7\u6dfb\u52a0\u4e00\u53ea\u72d0\u72f8\u5b9d\u5b9d\u4e0e\u6bcd\u72ee\u4eb2\u5bc6\u76f8\u4f9d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005512", "video_name": "e88e4151-43fa-5606-97a9-86a73e5400ca", "text": "\u4e00\u4e2a\u8fd0\u52a8\u5458\u5728\u4ed6\u7684\u75b2\u60eb\u808c\u8089\u4e0a\u8fdb\u884c\u6cb9\u538b\u6309\u6469\u3002"} +{"id": "3003174", "video_name": "d17b2109-397f-542c-9781-04b9237aefee", "text": "\u58c1\u7089\u91cc\u7684\u67f4\u706b\u5728\u71c3\u70e7\u3002"} +{"id": "1004236", "video_name": "4e70eca1-175d-576c-8289-1ad3ff42b85f", "text": "\u624b\u62ff\u7740\u4e00\u4e2a\u5c0f\u76d8\u5b50\uff0c\u91cc\u9762\u6709\u5206\u914d\u597d\u7684\u98df\u7269\u7ec4\u3002"} +{"id": "0006770", "video_name": "32bbc2c0-2135-5d32-b00f-f30751a462be", "text": ", she would curl up with a novel and lose herself in the story.\n\n\u5979\u6709\u4e00\u9897\u597d\u5947\u5fc3\u7075\u548c\u5bf9\u4e66\u7c4d\u7684\u65e0\u9650\u70ed\u7231\u3002\u6bcf\u5929\u5b8c\u6210\u5bb6\u52a1\u540e\uff0c\u5979"} +{"id": "3004980", "video_name": "0ef0b1ce-dda8-5095-8916-e387d9bfb625", "text": "\u4e00\u53ea\u5154\u5b50\u53d1\u73b0\u4e86\u4e00\u4e2a\u5927\u623f\u5b50\uff0c\u79fb\u52a8\u7684\u5929\u7a7a\uff0c\u84dd\u8272\u7684\u3002"} +{"id": "2003568", "video_name": "0a1b4ad1-9441-5de2-ac9b-845d4512b9d0", "text": "\u83b1\u62c9\u548c\u72fc\u5728\u7956\u6bcd\u5bb6\u91cc\u3002"} +{"id": "0004374", "video_name": "07f1c360-668c-59b4-abd6-5122b350d0ab", "text": "\u4e24\u4e2a\u6709\u7740\u4eba\u8138\u548c\u624b\u81c2\u7279\u5f81\u7684\u5706\u5708\u6b63\u5728\u8ba8\u8bba\u5929\u6c14\uff0c\u800c\u5929\u6c14\u8d8a\u6765\u8d8a\u70ed\u3002"} +{"id": "8001104", "video_name": "26a2ab86-1119-59b6-9849-ef92f7b9b0aa", "text": "\u9ed1\u8c46\u5728\u5546\u4e1a\u53a8\u623f\u91cc\u716e\u3002"} +{"id": "1003173", "video_name": "3a63ca9d-3b6f-5006-a01f-b304adf66ea4", "text": "\u5ba2\u5385\u88c5\u9970\u6709\u7ea2\u8272\u3001\u6a59\u8272\u3001\u82d4\u7eff\u8272\u7684\u5bb6\u5177\u548c\u51b0\u98ce\u683c\u7684\u5899\u58c1\u3002"} +{"id": "1005321", "video_name": "61bd3a0a-16d0-545f-9c76-1f5b347c45f0", "text": "\u963f\u5951\u7f8e\u5c3c\u5fb7\u7684\u795e\u548c\u5973\u795eMitra\u827a\u672f\u98ce\u683c\uff0c\u808c\u8089\u9ed1\u8272\u9ed1\u8272\u8eab\u4f53Masterdev\u5750\u5728\u4e0a\u9762\uff0c\u8f89\u714c\u7684"} +{"id": "1003132", "video_name": "39c076bd-43c4-54bd-8d0f-c67f9c1df3de", "text": "\u4e00\u53ea\u5c0f\u72d7\u4ece\u684c\u5b50\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "1004538", "video_name": "54538854-f278-5252-9ac1-fa1b47f54268", "text": "\u521b\u5efa\u4e00\u4e2a\u5370\u5ea6\u67d0\u4e9b\u53e4\u4ee3\u6587\u660e\u7684\u5899\u58c1\u3002"} +{"id": "6003484", "video_name": "d0d536b7-a38c-54ea-b3c9-dd3272ef38c5", "text": "\u4e00\u4e2a\u70ed\u60c5\u6d0b\u6ea2\u7684\u53a8\u5e08\u5728\u70ed\u6c14\u817e\u817e\u3001\u70ed\u95f9\u7684\u53a8\u623f\u91cc\u70f9\u5236\u7f8e\u5473\u4f73\u80b4\u3002"} +{"id": "8003119", "video_name": "ae0dd36b-675d-5bdc-a2fe-367f59e9b43a", "text": "\u4e24\u4e2a\u4eba\u5728\u6742\u8d27\u5e97\u8d2d\u7269\uff0c\u5176\u4e2d\u4e00\u4e2a\u4eba\u6b63\u5728\u4e70\u65b0\u9c9c\u591a\u6c41\u7684\u6a59\u5b50\u3002"} +{"id": "6004025", "video_name": "d2f0601f-1b40-553b-9c24-8033a64fe9d2", "text": "\u4e00\u4e2a\u4fa6\u63a2\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u4fef\u89c6\u56fe\u3002"} +{"id": "7003972", "video_name": "ea16cf5b-04c0-5960-8277-49ae5bccb030", "text": "\u5723\u8bde\u8001\u4eba\u5728\u96ea\u4e2d\u7684\u573a\u666f\u3002\u795d\u5723\u8bde\u5feb\u4e50\u3002(\u5b57\u4f53\uff1a\u6f2b\u753b)"} +{"id": "2006787", "video_name": "6696dff5-e76f-50da-ac3b-f2ac520170b1", "text": "\u4e00\u4e2a\u7a7f\u7740\u592a\u7a7a\u670d\u7684\u5e74\u8f7b\u7537\u5b69"} +{"id": "2004452", "video_name": "60ccaff1-2777-58d7-ab67-218527344c8f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u6c7d\u8f66\u540e\u5ea7\uff0c\u6a21\u7cca\u7684\u8001\u7535\u5f71\uff0c\u65e7\u89c6\u9891\u3002"} +{"id": "3006538", "video_name": "37c6ad3d-adfe-5fa8-b80c-901040b755b2", "text": "\u5927\u9c7c\u5728\u5c0f\u8239\u4e0a\u3002"} +{"id": "2003084", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "\u514b\u91cc\u5e0c\u7eb3\u5728\u300a\u6469\u8bc3\u5a46\u7f57\u591a\u300b\u6218\u573a\u7535\u5f71\u4e2d\u3002"} +{"id": "6004409", "video_name": "79af566f-a6c7-5833-ae23-8b4fa50f72a3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u738b\u6234\u7740\u7687\u51a0\uff0c\u8eab\u7a7f\u767d\u8272\u8fde\u8863\u88d9\u3002"} +{"id": "7003166", "video_name": "63ec96c7-6146-509c-add3-4f2929e5263c", "text": "\u4e00\u4e2a\u68cd\u5b50\u4eba\u7269\u4ece\u5916\u9762\u62cd\u6444\u4eba\u4eec\u4e58\u5750\u706b\u8f66\u5934\u7684\u7167\u7247\uff0c\u753b\u9762\u89d2\u5ea6\u8fd0\u52a816:9\u3002"} +{"id": "8003758", "video_name": "8cc67f4d-2b53-5dcb-8d0a-7369bfccc46f", "text": "\u767d\u8272\u7684\u9b3c\u9b42\u5728\u9ed1\u8272\u7684\u80cc\u666f\u4e2d\u65cb\u8f6c\uff0c\u767d\u8272\u548c\u9ed1\u8272\uff0c\u58a8\u6c34\u753b\u3002"} +{"id": "4003278", "video_name": "6c173401-e0b3-56fd-b5a0-c35e0d209339", "text": "\u96ea\u767d\u516c\u4e3b\u6b63\u5728\u4e00\u500b\u85b0\u8863\u8349\u82b1\u5712\u88e1\u64c1\u62b1\u4e00\u96bb\u62c9\u5e03\u62c9\u591a\u3002"} +{"id": "7002571", "video_name": "213b5410-3a8b-584a-bb3b-f8eb5dfdd793", "text": "\u5728\u591c\u603b\u4f1a\u91cc\u6709\u9677\u9631\u548c\u7235\u58eb\u563b\u54c8\u821e\u66f2\uff0c\u60c5\u4fa3\u4eec\u8df3\u6446\u6446\u821e\uff0c\u5176\u4ed6\u60c5\u4fa3\u4eec\u4e92\u76f8\u78e8"} +{"id": "6003053", "video_name": "b45f5474-db5c-520f-ab9a-0185a9bb464a", "text": "\u7537\u5b69\u5728\u9ed1\u6697\u4e2d\u5411\u4e1b\u6797\u5954\u8dd1\u3002"} +{"id": "2005867", "video_name": "a06b4556-5543-5625-b87f-88de6427c23b", "text": "\u90a3\u53ea\u72d7\u653b\u51fb\u4e86\u5361\u8f66\uff0c\u5361\u8f66\u88ab\u649e\u4e86\u3002"} +{"id": "5001865", "video_name": "591c7bb3-456e-52d9-8193-60bc3dd35bfd", "text": "\u8ba9\u6211\u4eec\u7684\u4eba\u5de5\u667a\u80fd\u903c\u771f\u5730\u6a21\u62df\u4e00\u4f4d\u5973\u6027\u5728\u6d77\u6ee9\u4e0a\u8f7b\u8f7b\u6f2b\u6b65\uff0c\u6c89\u6d78\u5728\u4e00\u6bb5\u5b81\u9759\u7684\u6d77\u6ee8\u4e4b"} +{"id": "2005188", "video_name": "35036c71-18a8-5ec8-a651-cabb52ac412b", "text": "\u51ac\u5929\uff0c\u90a3\u4e2a\u5973\u4eba\u8d70\u8fdb\u4e86\u8fdc\u65b9\u3002"} +{"id": "7002970", "video_name": "7d198c74-a51e-5304-b7ad-2d003d689ccf", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u91d1\u5b57\u5854\u65c1\u8fb9\u3002"} +{"id": "4003682", "video_name": "8bd7289d-5cdc-512f-8bef-c9326c3db02c", "text": "\u667a\u80fd\u624b\u673a\u4e0a\u7528\u624b\u52bf\u73a9\u6e38\u620f\u7684\u89c6\u9891\u3002"} +{"id": "7003785", "video_name": "4c6a6d42-b9fd-525c-9f55-0da21f7ab3ba", "text": "\u4e00\u4e2a\u88c5\u6709\u4e00\u6761\u5927\u9c7c\u7684\u8349\u7b50\u653e\u7f6e\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "7003276", "video_name": "0a9ccb80-0568-5040-acd3-0daa27fd212d", "text": "\u5149\u8c31\u7761\u7720\u762b\u75ea\u9b54\u9b3c\u5728\u4e00\u4e2a\u79bb\u5947\u7684\u5367\u5ba4\u91cc\u4fef\u89c6\u7740\u76f8\u673a\u3002"} +{"id": "4002544", "video_name": "66ef0e3c-3aa4-50ae-adde-5c3a00726cda", "text": "\u4e24\u540d\u7537\u5b50\u4ee51920\u5e74\u4ee3\u7684\u98ce\u683c\u5728\u5965\u8fd0\u4f1a\u4e0a\u51fb\u5251\uff0c\u9ed1\u767d8\u6beb\u7c73\u7535\u5f71\u3002"} +{"id": "6000002", "video_name": "64ed748e-b2fc-573b-b7fd-1b26f4562c72", "text": "\u8ba9\u4ed6\u8eab\u4e0a\u53d1\u5149\u3002"} +{"id": "6004696", "video_name": "05cdfabc-359f-59c7-bc2b-e0f7cd5b8901", "text": "\u5728\u4e91\u7aef\u7684\u57ce\u5821\uff0c\u9633\u5149\uff0c\u7535\u5f71\u822c\u7684\uff0c\u5386\u53f2\u60a0\u4e45\u7684\u3002"} +{"id": "0005966", "video_name": "242686c9-cd04-54cd-ab41-4b68dc3bbb25", "text": "\u592a\u9633\u7f13\u6162\u5730\u5347\u8d77\uff0c\u4e3a\u68a6\u5e7b\u8c37\u6295\u4e0b\u795e\u5947\u7684\u5149\u8292\uff0c\u53ef\u7231\u7684\u5c0f\u52a8\u7269\u4eec\u9192\u6765\uff0c\u521b\u9020\u51fa"} +{"id": "0005631", "video_name": "1e6b560a-2868-5962-96bc-cb7d916dd997", "text": "\u6751\u6c11\u4eec\u4e00\u8d77\u5206\u4eab\u9910\u98df\uff0c\u57f9\u517b\u4e00\u79cd\u793e\u7fa4\u548c\u53cb\u60c5\u7684\u611f\u89c9\u3002\n\n\u52a8\u753b\u5361\u901a"} +{"id": "1006004", "video_name": "6e582bb8-6abe-5fea-b568-cd65baeb2985", "text": "\u591c\u95f4\u8def\u4e0a\u7684\u6c7d\u8f66\uff0c\u4ee5\u6c34\u5f69\u98ce\u683c\u8868\u73b0\uff0c\u98de\u6e85\u827a\u672f\uff0c\u63d0\u793a\u6ce8\u610f\u5b89\u5168\u9a7e\u9a76\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003772", "video_name": "d0f49f55-f855-5a2e-9bcf-41c96432cf10", "text": "\u6362\u4e0a\u897f\u88c5\uff0c\u6234\u4e0a\u5e3d\u5b50\u3002"} +{"id": "7004518", "video_name": "ae5d434a-313d-558c-a487-e21da7a3355d", "text": "\u8fd9\u5e94\u8be5\u662f\u4e00\u5806\u6d77\u62a5\u3001\u6d77\u62a5\u9500\u552e\u5e7f\u544a\u7684\u5305\u88c5\uff0c\u5b57\u4f53\u4f7f\u7528MODERN\u7684uDovibe\u3002"} +{"id": "2006297", "video_name": "db6d0c7b-f487-5b5d-ae88-a7a75458c10a", "text": "\u7c89\u8272\u88d9\u5b50\u7684\u8d85\u7ea7\u5973\u6027\u5316\u7684\u5973\u5b69"} +{"id": "1006934", "video_name": "7ed70fc1-af6f-54bb-830f-1be044a83a00", "text": "\u5e2e\u52a9\u5c55\u793a\u5728\u8fd9\u4e2a\u89c6\u9891\u4e2d\u5efa\u9020\u68ee\u6797\u6c34\u65cf\u9986\u666f\u89c2\u7684\u8fc7\u7a0b\u3002"} +{"id": "2004596", "video_name": "b7421ef3-2b87-598f-81fe-4630028968da", "text": "\u5236\u4f5c\u4e00\u5f20\u9ed1\u8272\u4e59\u70ef\u57fa\u5531\u7247\uff0c\u4e0a\u9762\u7528\u7ea2\u8272\u5370\u6709\u201c\u60b2\u4f24\u65e5\u8bb0\u201d\u7684\u5b57\u6837\uff0c\u5e76\u5728\u5531\u7247\u673a\u4e0a\u64ad\u653e\uff0c\u4f7f\u5176\u770b\u8d77"} +{"id": "4002527", "video_name": "21b90025-bf21-5fe6-9eb9-4afd66b9520f", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u8fdb\u884c\u592a\u7a7a\u884c\u8d70\u3002"} +{"id": "3006848", "video_name": "52456e95-98c5-51d0-84d3-c945a44c818d", "text": "\u5973\u5b69\u5fae\u7b11\u7740\uff0c\u5728\u5979\u7684\u819d\u4e0a\u6447\u6643\u7740\u5979\u7684\u72d7\u3002"} +{"id": "4004475", "video_name": "f3650060-d690-5f24-8a5e-4af221376820", "text": "up, and invites his friends over for a feast.\n\nTranslation: \u4e00\u4e2a\u7537\u4eba\u70e4\u4e86\u4e00\u53ea\u6574\u53ea\u5c71\u7f8a\uff0c\u70b9\u71c3\u4e86\u706b\uff0c\u9080\u8bf7\u4ed6\u7684\u670b\u53cb\u6765\u4eab\u7528\u7f8e\u98df"} +{"id": "3005813", "video_name": "de942ea9-60e1-55c6-a032-4e82bb8744e5", "text": "Netaji Subhash Chandra Bose\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "4003867", "video_name": "8f20f880-fd2e-5894-b88f-21557c73220e", "text": "\u8bf7\u5c06\u4ee5\u4e0b\u82f1\u6587\u53e5\u5b50\u5c3d\u53ef\u80fd\u6e05\u6670\u5408\u7406\u5730\u7ffb\u8bd1\u6210\u4e2d\u6587\u3002\u8bf7\u4ec5\u8f93\u51fa\u7ffb\u8bd1\uff0c\u4e0d\u5305\u62ec\u539f\u53e5\u548c\u4efb\u4f55\u524d\u7f00\u3002\n\n"} +{"id": "3005694", "video_name": "aa1bbbd6-b32f-5822-80ce-275369fe9f50", "text": "\u5728\u5916\u592a\u7a7a\u4e2d\uff0c\u6709\u4e00\u53ea\u52a8\u753b\u5c0f\u732b\u5728\u7d27\u7ef7\u7684\u7ef3\u7d22\u4e0a\u884c\u8d70\uff0c\u5468\u56f4\u662f\u7535\u5b50\u821e\u66f2\u884c\u661f\u3002"} +{"id": "8003842", "video_name": "c585be91-a872-5b3b-b4bb-dd542379b7e4", "text": "\u5728\u795e\u79d8\u7684\u963f\u7ea6\u63d0\u4e9a\u571f\u5730\u4e0a\uff0c\u4f4f\u7740\u4e00\u53ea\u8c03\u76ae\u5374\u5fe0\u8bda\u7684\u7334\u5b50\uff0c\u540d\u53eb\u54c8\u52aa\u66fc\u3002\u4ed6\u4e0d\u662f\u4e00"} +{"id": "7002368", "video_name": "df50a498-9e69-590b-9739-3b4d2cd02830", "text": "1970\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u7531\u6c83\u7eb3\u00b7\u8d6b\u5c14\u4f50\u683c\u6267\u5bfc\uff0c\u8868\u73b0\u4e86\u72c2\u821e\u673a\u5668\u4eba\u3002"} +{"id": "2007007", "video_name": "81b90053-e810-545e-8bf4-628ff2d1d19f", "text": "\u5723\u8bde\u8001\u4eba\u5728\u5f39\u5409\u4ed6\uff0c\u96ea\u5973\u5728\u4ed6\u65c1\u8fb9\u8df3\u65ad\u821e\u3002"} +{"id": "6002812", "video_name": "a6720f8a-84a7-57c1-bce4-7ebd140e3c05", "text": "\u68ee\u6797\u91cc\u6709\u4e00\u53ea\u72e1\u733e\u7684\u72d0\u72f8\uff0c\u5979\u6ca1\u6709\u9ed1\u773c\u775b\uff0c\u68ee\u6797\u5f88\u6697\u3001\u5f88\u5bc6\u96c6\uff0c\u5979\u975e\u5e38"} +{"id": "6004404", "video_name": "b36f23d6-64c2-5d8b-ba45-764524e7c258", "text": "\u5973\u738b\u548c\u738b\u5b50\u5728\u623f\u95f4\u91cc\u3002"} +{"id": "2006427", "video_name": "9d5d59e5-2ddd-54e7-a7c6-d8e9df44683a", "text": "\u80cc\u666f\u4e2d\u6709\u4e00\u5ea7\u5c71\u7684\u56fe\u50cf\uff0c\u65e5\u843d\uff0c\u7011\u5e03\u548c\u6e56\u6cca\u3002"} +{"id": "2004148", "video_name": "6f8938ca-8ecd-5a56-9e30-94b266062bee", "text": "\u9ed1\u8272\u548c\u68d5\u9ec4\u8272\u7684\u814a\u80a0\u72ac\u4e58\u5750\u7740\u7531\u5f69\u8272\u6a21\u578b\u7c98\u571f\u5236\u9020\u7684\u5f00\u653e\u5f0f\u5ea7\u8231\u98de\u673a\u3002"} +{"id": "0005768", "video_name": "20f99bcd-6426-5266-963c-87cda3135c4c", "text": "\u665a\u4e0a\u7684\u5f00\u653e\u575f\u5893\u91cc\u85cf\u7740\u4e00\u4e2a\u5fae\u7b11\u3002"} +{"id": "2003146", "video_name": "1dc8b94b-1dc3-5763-a8ab-a1d206dc503d", "text": "\u7b80\u8981\u4ecb\u7ecd\u89d2\u8272\u3001\u4ed6\u4eec\u7684\u80cc\u666f\u548c\u6240\u9047\u5230\u7684\u6311\u6218\u3002"} +{"id": "6003399", "video_name": "49277dda-a4e8-5d6b-ae89-575d036aadd8", "text": "\u7ea2\u8272\u98de\u789f\u3002\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u30028K\u3002\u865a\u5e7b\u5f15\u64ce5\u3002"} +{"id": "3005285", "video_name": "da17835c-a1e9-5b66-9937-dae6e94e1aed", "text": "\u9ed1\u6697\u89d2\u843d\u91cc\u5a01\u80c1\u4eba\u7269\u7684\u5feb\u901f\u955c\u5934"} +{"id": "6003727", "video_name": "88e69278-00f3-5609-9a93-29d999542112", "text": "1910\u5e74\u7684\u80a1\u5e02\u5185\uff0c\u821e\u53f0\u4e0a\u7684\u4ea4\u6613\u5458\u3002"} +{"id": "3003161", "video_name": "276d6423-5fb9-5ae3-8347-ddd98fef8dd1", "text": "\u4e00\u4e2a\u6709\u6591\u9a73\u9633\u5149\u900f\u8fc7\u6811\u53f6\u7684\u8ff7\u4eba\u68ee\u6797\uff0c\u662f\u8389\u8389\u7b2c\u4e00\u6b21\u53d1\u73b0\u5979\u5bf9\u81ea\u7136\u7684\u70ed\u7231\u3002"} +{"id": "4003336", "video_name": "4c16c19c-8157-5ee0-999e-096ff298aa47", "text": "1990\u5e74\u4ee3\u7684\u4e16\u5609Dreamcast\u5e73\u53f0\u6e38\u620f\u4e2d\u7684\u5409\u7965\u7269\u5e73\u53f0\u6e38\u620f\u73a9\u6cd5"} +{"id": "7003284", "video_name": "5cc00a60-9703-5641-bfcb-9135b98d456e", "text": "\u5728\u5de8\u5927\u7684\u98de\u8239\u524d\uff0c\u4e00\u7fa4\u8eab\u7a7f\u672a\u6765\u6d3e\u670d\u88c5\u4e14\u9762\u5e26\u5fae\u7b11\u7684\u4eba\u8d70\u4e86\u4e0a\u6765\u3002"} +{"id": "2007011", "video_name": "d2f2c925-388b-5f2a-ada6-66d1ca400a36", "text": "\u4e2d\u592e\u662f\u5de8\u5927\u7684\u9ed1\u8272\u6bd7\u6e7f\u5974\u795e\u5f62\u8c61\uff0c\u8eab\u540e\u6709\u4e00\u5708\u5149\u8292\u95ea\u8000\u7684\u5149\u73af\u3002"} +{"id": "2003556", "video_name": "4de417a7-0859-57be-9dcb-c2f1a12e58e0", "text": "\u4e00\u4e2a\u5e26\u6b66\u5668\u5e86\u795d\u80dc\u5229\u7684\u673a\u5668\u4eba\uff083D \u52a8\u753b\uff09"} +{"id": "0003819", "video_name": "4410ab7a-c8ac-57cc-8b58-4c56e42c86f4", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u770b\u7740\u592a\u9633\u3002"} +{"id": "0005271", "video_name": "179c188a-03a7-57e7-bbff-03a57b66991f", "text": "\u83f2\u5229\u514b\u65af\u72d0\u72f8\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u8fd1\u9edb\u897f\u72d7\u72d7\uff0c\u4e00\u53ea\u6bdb\u8338\u8338\u7684\u91d1\u6bdb\u730e"} +{"id": "8002480", "video_name": "9603c8df-b11d-5d9d-a485-ed5c4178a356", "text": "\u76d1\u72f1\u91cc\u67093\u52304\u540d\u56da\u72af\u5728\u5899\u4e0a\u6d82\u6f06\uff0c\u4e00\u4e2a\u5973\u5b69\u534f\u52a9\u3002"} +{"id": "3005586", "video_name": "a86c9c72-6f1b-5cb1-8f5a-946c7c7640f3", "text": "\u4ece\u5357\u90e8\u7ec6\u957f\u7684\u610f\u5927\u5229\u9762\u5230\u5317\u90e8\u4e30\u76db\u7684\u5343\u5c42\u9762\uff0c\u6bcf\u4e2a\u5730\u533a\u90fd\u53d1\u5c55\u4e86\u81ea\u5df1\u72ec\u7279\u7684\u610f\u9762\u4f20\u7edf\u548c\u9171"} +{"id": "8002981", "video_name": "e79b60f4-1c13-557a-ad58-31e412384c1d", "text": "\u5728\u8c03\u67e5\u8fc7\u7a0b\u4e2d\uff0c\u6731\u8fea\u548c\u5c3c\u514b\u9762\u5bf9\u4e00\u4e2a\u91cd\u8981\u5acc\u7591\u4eba\uff0c\u5bfc\u81f4\u7d27\u5f20\u7684\u8a00\u8bed\u4ea4\u6d41\u3002\u4ed6\u4eec\u63ed\u793a\u7684\u7b2c\u4e00\u4e2a\u7ebf"} +{"id": "8003661", "video_name": "0b3070f3-828a-5dcc-ae0e-c09ac998540e", "text": "\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5bb9\u5668\u91cc\u88c5\u7740\u7f8e\u5473\u7684\u4e2d\u56fd\u9e21\u6c64\u3002"} +{"id": "1004659", "video_name": "56aba318-0efb-5118-b60b-7b76d8444d4f", "text": "Translation: \u51b0\u96ea\u5bab\u7684\u7194\u5ca9\u738b\u5ea7\u3002"} +{"id": "8001568", "video_name": "11e6c1fa-cdae-51f3-a1ee-8903c2a2b8d9", "text": "\u516c\u56ed\u80cc\u666f\u4e0b\u76843D\u7537\u5b69\u548c\u5973\u5b69\u7535\u5f71\u5f0f\u53d8\u7126\u3002"} +{"id": "8002637", "video_name": "671d54d2-04ef-50cd-8d81-e9f4a089a07a", "text": "\u623f\u5c4b\u524d\u95e8\u4e0a\u6302\u7740\u5723\u8bde\u88c5\u9970\u3002"} +{"id": "3004516", "video_name": "71064162-0688-57ef-899f-fe02607c3e2a", "text": "\u5730\u7403\u88ab\u4e00\u9897\u9668\u77f3\u6467\u6bc1\u4e86\u3002"} +{"id": "7003267", "video_name": "de599dee-a0be-566d-baac-af2402f834cc", "text": "\u76f8\u673a\u7f29\u653e\uff0cA24\u5de5\u4f5c\u5ba4\u7684\u7535\u5f71\u3002"} +{"id": "3005181", "video_name": "3646c001-28cd-54ba-91c6-0ba5cac823b1", "text": "\u6625\u5929\u7684\u7f8e\u4e3d\u6d77\u5cb8\u6c99\u6ee9\uff0c\u7531\u68b5\u9ad8\u7ed8\u5236\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u6c99\u5b50\u3002"} +{"id": "2003145", "video_name": "423a688e-bec0-57b9-81af-698f36ec8215", "text": "\u7a81\u7136\u95f4\uff0c\u6211\u770b\u5230\u4e00\u4e2a\u4e09\u5341\u591a\u5c81\u7684\u4fee\u5973\u5411\u6211\u4eec\u8d70\u6765\u3002"} +{"id": "0005005", "video_name": "13224ca1-2111-568b-8849-8071a4b434d2", "text": "\u521b\u5efa\u4e00\u4e2a\u6570\u5b57\u5b69\u5b50\uff0c\u80fd\u8df3\u821e\u548c\u4eab\u53d7\u96ea\u666f\u3002"} +{"id": "2006839", "video_name": "45937fa9-c124-5cc5-8f21-abf6bc095588", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u665a\u4e0a\u5b66\u4e60\u5409\u535c\u529b\u52a8\u753b\u3002"} +{"id": "1003384", "video_name": "3e56b08e-7570-5e6b-bcfa-9ce1e177b2d7", "text": "\u4e00\u7fa4\u670b\u53cb\u7ad9\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u4e0a\uff0c\u4ef0\u671b\u7740\u4e00\u6247\u5e03\u6ee1\u7070\u5c18\u7684\u9601\u697c\u95e8\u3002"} +{"id": "2004355", "video_name": "d7a45abb-9801-56a6-a20c-80fa5f9d64f7", "text": "\u4e00\u5bb6\u4e09\u53ea\u718a\u5728\u66b4\u96ea\u5929\u6c14\u91cc\u5728\u5bb6\u91cc\u5f00\u5fc3\u5730\u4eab\u53d7\u706b\u9505\u3002"} +{"id": "0003771", "video_name": "430ac663-78c4-55d2-a1e7-45bf3cee1a6f", "text": "\u6211\u4eec\u4e00\u8d77\u521b\u65b03D\u4e3b\u9898\uff0c\u91c7\u7528\u84dd\u8272\u4f3d\u739b\u8272\u5f69\u3002"} +{"id": "6002612", "video_name": "a3ce04f5-f10c-579a-a28b-8f611c7d9bd0", "text": "\u591c\u665a\u95ea\u7535\u51fb\u4e2d\u6d77\u6d0b\uff0c\u98ce\u66b4\u3002"} +{"id": "3006876", "video_name": "e891254a-3fc2-5a8d-9769-53acb078ee3a", "text": "\u57ce\u5e02\u4e2d\u7684\u4e00\u6761\u8857\u9053\uff0c\u591c\u665a\uff0c\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u3002"} +{"id": "4002921", "video_name": "016497e6-16d8-5117-aeb7-4d67131d2fcd", "text": "\u5728\u65f6\u95f4\u7ebf\u4e0a\u4ee5\u903c\u771f\u768416:9\u6bd4\u4f8b\u5c55\u793a\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u53d8\u8001\u7684\u8138\u3002"} +{"id": "0006501", "video_name": "2d97064f-9453-5a7c-b1fa-f084b771a267", "text": "\u73b0\u5b9e\u68ee\u6797\u3002\u4fe1\u606f\uff1a\u963f\u8c22\u76ae\u838e\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6003784", "video_name": "d724229d-cb28-5dd1-a844-9a8d292aaaf8", "text": "\u4e00\u4e2a\u5145\u6ee1\u5e0c\u671b\u7684\u4e61\u6751\u73af\u5883\uff1a\u623f\u5c4b\u88c5\u9970\u7740\u4e30\u5bcc\u591a\u5f69\u7684\u827a\u672f\u54c1\uff0c\u5c45\u6c11\u4ece\u4e8b\u5bcc\u6709"} +{"id": "1005964", "video_name": "6d907ad4-f094-5270-b3c5-8542dfc977c4", "text": "\u4e00\u4e2a\u5973\u5b69\u53bb\u4e0a\u5c0f\u5b66\u3002"} +{"id": "8003582", "video_name": "603476d2-5849-520f-aa15-04149110f236", "text": "\u4f1a\u8bae\u5145\u6ee1\u4e86\u8001\u5e74\u4eba\u7684\u62b1\u6028\u3002"} +{"id": "6004541", "video_name": "d218479e-cddb-5e67-bd74-52b41cf1e14c", "text": "\u4e00\u4e2a\u91d1\u53d1\u84dd\u886c\u886b\u7684\u7537\u5b69\u5728\u7ec3\u4e60\u94a2\u7434\u3002"} +{"id": "7003695", "video_name": "318aa696-bbce-5e6b-ac7c-f1b3cf130b5e", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u9152\u5e97\u7684\u5e8a\u4e0a\u601d\u8003\u3002"} +{"id": "6002303", "video_name": "c9fd5a64-e905-5581-a7ed-096d127f291b", "text": "\u76f8\u540c\u7684\u7537\u4eba\u505a\u4ef0\u5367\u8d77\u5750\u3002"} +{"id": "2007828", "video_name": "83eb7ec9-b5b0-54fd-8035-f9954b73fca0", "text": "\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5267\u9662\u91cc\uff0c\u7ea2\u53d1\u5973\u5b69\u5728\u821e\u53f0\u4e0a\u5145\u6ee1\u6d3b\u529b\u5730\u5728\u94a2\u7ba1\u4e0a\u52a8\u4f5c\u3002"} +{"id": "1005278", "video_name": "610a0beb-1adc-568e-8ede-027616301c47", "text": "style, are seen in the background.\n\n\u4e0d\u540c\u52a0\u5bc6\u8d27\u5e01\u7684\u7b26\u53f7\uff1aETH\u3001BTL\u3001USDC\u3001DAI\u3001BUSD\u3001CAKE\uff0c\u5728\u5b83\u4eec\u7684\u8f74\u4e0a\u65cb\u8f6c\u3002\u80cc\u666f"} +{"id": "8002211", "video_name": "3f9ed9c1-e5b6-5bd2-8768-36349ca2e6f7", "text": "\u4e00\u4f4d\u5546\u4eba\u5728\u7ebd\u7ea6\u4e00\u5bb6\u9ad8\u6863\u9910\u5385\u7684\u591c\u665a\uff0c\u82e6\u82e6\u4e0e\u4ed6\u7684\u8033\u9e23\u4f5c\u6597\u4e89\u3002"} +{"id": "0005214", "video_name": "16a7c829-2b12-5e34-98f4-0d76dc1f795a", "text": "\u94f6\u8272\u5170\u82b1\u6f02\u6d6e\u5728\u7a7a\u95f4\u91cc\uff0c\u767d\u8272\u661f\u661f\u73af\u7ed5\u7740\u7269\u4f53\uff0c\u5149\u4ece\u5de6\u5230\u53f3\u95ea\u8000\u3002"} +{"id": "2006865", "video_name": "0e7c2477-f299-54c3-94b5-6bd7e454f5eb", "text": "\u8bf7\u60f3\u8c61\u4e24\u6735\u5927\u9ebb\u82b1\u662f\u4e00\u5bf9\u7537\u5973\u60c5\u4fa3\u3002\u6211\u5e0c\u671b\u4f60\u4e3a\u6211\u628a\u5b83\u52a8\u753b\u5316\u3002"} +{"id": "3006234", "video_name": "eb2b658d-e2ef-5f8c-9533-ff1f35c3c0c9", "text": "\u4e00\u53ea\u624b\u8868\u6216\u949f\u8868\u50cf\u5e7b\u89c9\u4e00\u6837\u878d\u5316\u4e86\u3002"} +{"id": "2003260", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "\u4ece\u53a8\u623f\u7a97\u6237\u770b\u5230\u5b69\u5b50\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "2005470", "video_name": "94735cdd-288e-544a-868f-ce1c5374756c", "text": "\u4e00\u4e2a\u6050\u6016\u548c\u53ef\u6015\u7684\u7eff\u5c4f\u5357\u74dc\u4eba\u3002"} +{"id": "4004732", "video_name": "92864a40-aea8-5905-99e3-4c0691c10998", "text": "\u5929\u7a7a\uff0c\u5927\u96ea\uff0c\u7f8e\u4e3d\uff0c\u65cb\u8f6c\u3002"} +{"id": "2007823", "video_name": "71a9293d-824c-50c1-94bd-35b89b73e26a", "text": "\u901a\u8fc7GPT\u7684\u667a\u80fd\u8f85\u52a9\uff0c\u63d0\u9ad8\u4e86\u6548\u7387\u548c\u51c6\u786e\u6027\uff0c\u4ece\u5927\u578b\u6570\u636e\u5e93\u4e2d\u5feb\u901f\u63d0\u4f9b\u51c6\u786e\u7b54\u6848\u3002\u7b80\u5316\u6d41\u7a0b\uff0c\u8282\u7701\u8d44\u6e90\uff0c"} +{"id": "6004283", "video_name": "9ad4cb1e-3a3d-5ff1-9385-4e563092bc82", "text": "\u4e00\u53ea\u72d7\u5c55\u793a\u7740\u4e00\u53ea\u7535\u5b50\u9879\u5708\u3002"} +{"id": "4002561", "video_name": "a392ac2f-ace5-5ebf-af3e-d7621bccf9e3", "text": "\u7a7f\u7740\u767d\u8863\u670d\u7684\u5973\u4eba\uff0c\u5728\u6c99\u6f20\u4e2d\u8df3\u821e\u3002"} +{"id": "3005434", "video_name": "14a72fa8-e4b9-5110-a3bf-12d5282a4f6b", "text": "\u5b89\u9759\u8857\u9053\u7684\u5c3d\u5934\uff0c\u77d7\u7acb\u7740\u4e00\u5ea7\u88ab\u90c1\u90c1\u8471\u8471\u7684\u6811\u6728\u6240\u73af\u7ed5\u7684\u53e4\u8001\u623f\u5c4b\u3002"} +{"id": "2006953", "video_name": "070e5200-ebf6-50bd-a251-3790423860f1", "text": "Emma\u60f3\u8c61\u4e00\u4e0b\u66f4\u5c0f\u3001\u66f4\u53ef\u7ba1\u7406\u7684\u6b65\u9aa4\u6765\u5206\u89e3\u5979\u7684\u4efb\u52a1\uff0c\u4f7f\u5b83\u4eec\u53d8\u5f97\u4e0d\u90a3\u4e48\u538b\u6291\uff0c\u4ece\u800c\u514b\u670d\u62d6\u5ef6\u7684"} +{"id": "0005949", "video_name": "23d3e280-3167-55a5-9df5-eceaea1bce98", "text": "\u5c06\u60ac\u7591\u3001\u9ed1\u6697\u548c\u6050\u6016\u5143\u7d20\u878d\u5165\u5176\u4e2d\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6c1b\u56f4\uff0c\u73af\u7ed5"} +{"id": "8002405", "video_name": "edb5a364-c9d0-5561-a867-59257b4fbd41", "text": "\u4e00\u4e2a\u7537\u5b69\u72ec\u81ea\u5728\u5893\u5730\u4e2d\u7684\u4e8c\u7ef4\u52a8\u753b\u5361\u901a\u3002"} +{"id": "2004578", "video_name": "f749a8df-27d9-5cf1-85ab-8686bb26adaa", "text": "\u8fd9\u53ea\u975e\u51e1\u7684\u732b\u65e0\u7f1d\u5730\u878d\u5408\u4e86\u751f\u9508\u7684\u91d1\u5c5e\u548c\u5149\u6ed1\u7684\u91d1\u5c5e\u94f6\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u5e26\u6709\u590d\u6742\u7ec6"} +{"id": "6003178", "video_name": "a2a7c442-ff01-5fbb-9eb9-33c02d6f9b21", "text": "\u6591\u9a6c\u7a7f\u8fc7\u5927\u8349\u539f\uff0c\u80cc\u666f\u591c\u665a\u3002"} +{"id": "7004250", "video_name": "318196c2-b387-58cf-af28-bf7b0935855c", "text": "\u788e\u88c2\u7684\u73bb\u7483\u5973\u5b50\u5bf9\u7740\u5979\u7684\u5012\u5f71\u5c16\u53eb\u3002"} +{"id": "3004614", "video_name": "b3fccc25-e8c8-579f-bb06-32c7da6dd7a5", "text": "10\u79d2\u949f\u7684\u6559\u6388\u6388\u8bfe\u77ed\u7247"} +{"id": "1005872", "video_name": "6c12fd76-cdba-53bf-af02-2a5105ae0fed", "text": "\u4e24\u4e2a\u4eba\u8d70\u5728\u68d5\u8272\u7684\u5c0f\u8def\u4e0a\uff0c\u4e24\u8fb9\u662f\u7eff\u8272\u7684\u5e73\u539f\uff0c\u96e8\u91cf\u5f88\u5c11\u3002"} +{"id": "7003857", "video_name": "9e0ef29f-c989-5a73-9617-0e15b9f79b0b", "text": "3\u540d\u7f57\u9a6c\u58eb\u5175\u8fdb\u5165\u6218\u573a\uff0c\u4e0b\u96ea\uff0c\u96ea\u5730\uff0c\u5c71\u8109\uff0c\u508d\u665a\uff0c\u4e91\u5c42\uff0c\u65e5\u843d\u3002"} +{"id": "7003906", "video_name": "1d29cd1f-175c-57ff-ac89-5991c6187ca2", "text": "\u5176\u4e2d\u4e00\u4e2a\u573a\u666f\u4e2d\uff0c\u4ebf\u4e07\u5bcc\u7fc1\u6b66\u5668\u5f00\u53d1\u5546\u6258\u5c3c\u00b7\u65af\u5854\u514b\uff08\u7f57\u4f2f\u7279\u00b7\u5510\u5c3c\u9970\uff09\u548c\u58eb\u5175"} +{"id": "8003825", "video_name": "27cd67c2-ada7-532b-92c3-f2680959995c", "text": "\u9ed1\u8272\u800c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6c34\u87d2\uff0c\u5728\u9ad8\u5206\u8fa8\u7387\u548c4K\u56fe\u50cf\u4e0b\u5728\u6811\u4e0a\u884c\u8d70\u3002"} +{"id": "6002550", "video_name": "cfed4e64-2ec2-54d8-8cbe-fd549b3ff446", "text": "\u70ed\u5e26\u96e8\u6797\uff0c\u4e00\u8258\u5b87\u5b99\u98de\u8239\u98de\u8fc7\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004758", "video_name": "bea93952-f107-5180-b052-a3bb115e5bd2", "text": "\u51e0\u4e2a\u5927\u5b66\u751f\uff0c\u4e3b\u8981\u662f\u4e9a\u6d32\u4eba\uff0c\u5728\u4e00\u4e2a\u767d\u8272\u684c\u5b50\u4e0a\u70ed\u70c8\u5730\u8ba8\u8bba\u7740\u67d0\u4e8b\u3002"} +{"id": "3003211", "video_name": "1c67ec6c-e9cf-5b64-8969-8623a3aaff10", "text": "1970\u5e74\u4ee3\u7535\u89c6\u8b66\u532a\u5267\u98ce\u683c\u4e2d\uff0c\u7279\u5199\u65af\u5e93\u6bd4\u00b7\u675c\u7684\u7ea2\u773c\u775b\u3002"} +{"id": "2003972", "video_name": "93a3559b-47be-5562-b44a-5a9c4607b191", "text": "\u60f3\u8c61\u4e00\u7fa4\u529e\u516c\u5ba4\u4eba\u5458\u8ba8\u8bba\u5373\u5c06\u5230\u6765\u7684\u5b66\u671f\u7684\u65b0\u8ba1\u5212\u8005\u3002\u770b\u5230\u4ed6\u4eec\u8fdb\u884c\u5934\u8111\u98ce\u66b4\u5e76\u4e3a\u5373\u5c06\u5230\u6765\u7684"} +{"id": "7003649", "video_name": "37c6d677-69ea-5d48-8fb6-0d84cc55569b", "text": "\u53ef\u7231\u7684\u9f99\u5728\u4e91\u4e2d\u73a9\u800d\u3002"} +{"id": "1004291", "video_name": "4f65507f-4d75-5a04-a78f-45a960cff347", "text": "\u5c0f\u9e1f\u98de\u8fc7\u6c34\u9762\uff0c\u6c34\u6ce2\u8361\u6f3e\u3002"} +{"id": "4004143", "video_name": "4dbd951f-154e-5aec-8033-5ae8275d030b", "text": "\u795e\u4ee5\u4eba\u7684\u5f62\u8c61\u521b\u9020\u4e86\u5730\u7403\u3002"} +{"id": "8002251", "video_name": "52df0f25-48d0-5799-a7d0-aecd864407b6", "text": "\u5b62\u5b50\u5145\u6ee1\u4e86\u7a7a\u6c14\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "5001313", "video_name": "492f4c44-3442-5414-b6fa-d59732886181", "text": "\u4e00\u4e2a\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u548c\u9ad8\u8ddf\u978b\uff0c\u88ab\u8774\u8776\u5305\u56f4\u7684\u7537\u4eba\u3002"} +{"id": "8003672", "video_name": "4b0f6164-b7ca-5ba9-985c-6e21979c8aec", "text": "\u5728\u6c34\u4e2d\u9a0e\u8457\u9be8\u9b5a\u5c0d\u6297\u5927\u8239\uff0c\u4f7f\u7528\u9ad8\u6e05\u651d\u5f71\u6280\u8853\uff0c\u76ae\u514b\u65af\u98a8\u683c\uff0c\u81f3\u5c111\u5206\u9418"} +{"id": "8002918", "video_name": "8e40aaf2-47ec-5153-9e0d-eb75c5358503", "text": "\u4e00\u6761\u9ec4\u8272\u7684\u7011\u5e03\u5728\u9ed1\u6697\u7684\u623f\u95f4\u4e2d\u503e\u6cfb\u5e76\u98de\u6e85\u3002"} +{"id": "3005113", "video_name": "a3c2f9e0-a25c-52fb-83c9-3166487dad66", "text": "\u4ece\u524d\u6709\u4e00\u4e2a\u53eb\u827e\u739b\u7684\u5c0f\u5973\u5b69\u4f4f\u5728\u4e00\u4e2a\u540d\u53ebSonnental\u7684\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u91cc\u3002\u827e\u739b\u662f\u4e00\u4e2a\u597d\u5947\u3001\u7231"} +{"id": "4004041", "video_name": "35450260-26b2-5e81-9f3d-70f1e8677b09", "text": "\u8759\u8760\u4fa0\u7a7f\u7740\u7eff\u706f\u7b3c\u6212\u6307\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c2D\u52a8\u753b\u3002"} +{"id": "4004278", "video_name": "46527b8b-53a6-51f7-b24d-7f9811df6aa0", "text": "\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u9886\u5e26\u3001\u5934\u53d1\u5f88\u5c11\u3001\u9762\u5bb9\u51f6\u731b\u7684\u7537\u5b50\u624b\u6301\u4e00\u672c\u4e66\uff0c\u4e0a\u9762\u5199\u7740\u201c\u65e0\u795e\u8bba\u795e\u201d\uff0c\u6574\u4e2a\u8eab"} +{"id": "8001467", "video_name": "4aaa2e4f-0b46-55cb-a882-aaadbd3f7d3f", "text": "\u77f3\u5668\u65f6\u4ee3\u7684\u4eba\u4eec\u9003\u907f\u96ea\u5d29\u3002"} +{"id": "7003705", "video_name": "f6d32c64-c737-552b-ac93-401da9b9f0e0", "text": "\u5929\u7a7a\u7684\u989c\u8272\u50cf\u662f\u8c03\u5230\u65e0\u4fe1\u53f7\u7684\u7535\u89c6\u5c4f\u5e55\u3002"} +{"id": "3003906", "video_name": "e54d2e29-ddfe-50b8-a86e-b3c35d96d5ae", "text": "\u8be6\u7ec6\u903c\u771f\u7684\u8fea\u6d1b\u96f7\u5b89\u6c7d\u8f66\u6cbf\u7740\u4e61\u95f4\u5c0f\u8def\u884c\u9a76\uff0c\u4f34\u968f\u7740\u95ea\u7535\uff0c\u4ee5\u83f2\u5229\u514b\u65af\u00b7\u83f2\u5229"} +{"id": "2004595", "video_name": "8af427ba-e0f9-537b-b5ea-4bfbb22c9f42", "text": "\u52c7\u6c14\u548c\u56e2\u7ed3\u662f\u514b\u670d\u56f0\u96be\u3001\u5b9e\u73b0\u76ee\u6807\u7684\u5173\u952e\u3002"} +{"id": "3005911", "video_name": "5d065677-5e2d-5110-8dd3-46710402b2a9", "text": "\u4e3a\u5176\u521b\u5efa\u5185\u5bb9\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "0003695", "video_name": "41db559f-bd31-5ab1-83e5-d47ac80419cd", "text": "\u4e00\u4e2a\u5973\u4eba\u6b63\u5728\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\u3002"} +{"id": "4004433", "video_name": "86a73dca-ca5f-5504-9249-f5d0e20ce0bc", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u8d70\u51fa\u71c3\u70e7\u7684\u623f\u5c4b\u3002"} +{"id": "4004160", "video_name": "d853bc4e-0d10-5dc3-815c-5bab338868f1", "text": "\u5411\u7740\u5145\u6ee1\u591a\u5143\u6587\u5316\u548c\u8c61\u5f81\u7684\u5730\u7403\u4f38\u51fa\u53cc\u624b\u3002"} +{"id": "2005428", "video_name": "ecb80acb-2037-549b-8961-37c93d5f91db", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u4e2d\u4e16\u7eaa\u5efa\u7b51\u5728\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u767d\u5929\uff0c\u4e91\u6735\uff0c\u5b9b\u5982\u7535\u5f71\u3002"} +{"id": "1006372", "video_name": "74ad77bb-8ac9-506a-aafc-393cc23fa2ad", "text": "\u767d\u5154\u5728\u68ee\u6797\u4e2d\u76843D\u56fe\u7247"} +{"id": "8001941", "video_name": "1a70636a-4003-517a-898b-2b2e055ab34c", "text": "\u4e00\u6bb5\u53e4\u8001\u7684\u624b\u6301\u6444\u50cf\u673a\u89c6\u9891\uff0c\u62cd\u6444\u5230\u4e00\u9897\u5c0f\u7684\u53cd\u5149\u7403\u4ece\u8fdc\u5904\u7a7f\u8fc7\u4e91\u5c42\u98de\u884c\u3002"} +{"id": "7004159", "video_name": "8917abc4-033f-549f-b9d6-1b3070c54403", "text": "\u4e24\u4f4d\u89c1\u8bc1\u4eba\u9884\u8a00\u548c\u590d\u6d3b\u7684\u63cf\u7ed8\u3002\u542f\u793a\u5f55\u30028k\u5168\u9ad8\u6e05\u3002"} +{"id": "0004682", "video_name": "0d41ed25-08c9-5577-9fa2-75109b8a249a", "text": "\u4e00\u53ea\u4e4c\u9e26\u5728\u6218\u573a\u4e0a\u98de\u7fd4\u3002"} +{"id": "1005887", "video_name": "6c440862-cdb6-5b6b-adcc-2a1976a59fc9", "text": "\u7a7f\u7740\u84dd\u8272\u8863\u670d\u7684\u5e74\u8f7b\u4eba\u9a91\u7740\u4e00\u6761\u94f6\u8272\u7684\u9ca8\u9c7c\u3002"} +{"id": "2005290", "video_name": "a0b6f6fe-3656-51dc-825f-d26ba2c59da8", "text": "\u4e00\u4e2a\u88c5\u6ee1\u5b9e\u9a8c\u8bbe\u5907\u7684\u623f\u95f4"} +{"id": "8003229", "video_name": "6d64e084-59c3-5efe-be58-a9a0fa07af2b", "text": "\u53f2\u524d\u7684\u5de8\u4eba\u884c\u8d70\u5728\u91d1\u8272\u9ad8\u5730\u4e0a\u3002"} +{"id": "2003274", "video_name": "643bff74-7976-55f9-afb6-487072e92a35", "text": "\u4e00\u4e2a\u59dc\u7cd6\u6389\u8fdb\u4e00\u4e2a\u7a7a\u74f6\u5b50\u91cc\uff0c\u5f53\u5b83\u63a5\u89e6\u5230\u5e95\u90e8\u65f6\u878d\u5316\u53d8\u6210\u6db2\u4f53\uff0c\u7136\u540e\u5411\u4e0a\u6d41\u52a8\uff0c\u4f7f\u74f6\u5b50"} +{"id": "7003971", "video_name": "ea432ba2-5ae0-58e0-9908-d179cbcf6e5e", "text": "\u56fd\u9645\u8c61\u68cb\u68cb\u76d8\u4e0a\u4fa7\u8eba\u7740\u7684\u5352\u5b50\n\nSource sentence: The conference will be held in the main hall on the third floor. \n\n\u4f1a\u8bae\u5c06\u5728\u4e09\u697c\u7684\u4e3b"} +{"id": "7004090", "video_name": "6ea6fa20-d9bc-56e5-beb6-997b3b9bfc7e", "text": "\u6e90\u53e5\uff1a\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u7684\u6050\u6016\u771f\u5b9e\u6076\u9b54\u65f6\u949f\u548c\u9f7f\u8f6e\u8fd0\u52a8\uff0c\u4ee5H.R.\u5409\u683c\u5c14\u7684\u827a"} +{"id": "5001503", "video_name": "59c3d69b-d568-5fa1-a5ea-99f25d7987d5", "text": "\u8499\u53e4\u90e8\u843d\u7684\u5973\u6027\u5728\u591c\u665a\u56f4\u7740\u5de8\u5927\u7684\u7bdd\u706b\u8df3\u821e\uff0c\u661f\u661f\u95ea\u8000\u3002"} +{"id": "1003416", "video_name": "3f151b0b-773f-58eb-a152-99e8bc3ddb20", "text": "\u4e66\u5e97\u662f\u4e00\u4e2a\u8fc7\u53bb\u65f6\u4ee3\u7684\u9057\u8ff9\uff0c\u4e00\u4e2a\u88ab\u9057\u5fd8\u7684\u6545\u4e8b\u6816\u606f\u7684\u5730\u65b9\u3002"} +{"id": "3004821", "video_name": "4ac59491-8f95-50e6-b3ef-5c8417e4993d", "text": "2050\u5e74\u5730\u7403\u7684\u613f\u666f\u662f\uff0c\u5f3a\u8c03\u53ef\u6301\u7eed\u751f\u6d3b\u3001\u53ef\u518d\u751f\u80fd\u6e90\u548c\u5168\u7403\u5408\u4f5c\uff0c\u4e3a\u66f4\u7f8e\u597d\u7684\u672a\u6765\u505a\u51fa\u8d21\u732e\u3002"} +{"id": "3006862", "video_name": "fd80bccf-76c3-5faa-bdb9-81604470009d", "text": "\u653e\u5927\u90a3\u4e2a\u5267\u9662\u7684\u7a97\u5e18\uff0c\u5c55\u73b0Beksinski\u548cAlfred Stieglitz\u572820\u4e16\u7eaa\u521d\u7684\u9897\u7c92\u9ed1\u767d\u7167\u7247\u3002"} +{"id": "6004119", "video_name": "8ce7eb74-eb19-5b03-b92d-20dcdf7ee71c", "text": "\u5728\u68ee\u6797\u91cc\u6709\u4e00\u4f4d\u957f\u7740\u68d5\u8272\u957f\u53d1\u7684\u5973\u5b69\uff0c\u5e26\u7740\u4e00\u53ea\u767d\u8272\u7684\u72d7\u3002 \n\nSource sentence: I am going to the supermarket to buy some groceries"} +{"id": "7002065", "video_name": "9eeebf8a-965a-57fb-b522-43fe78880b49", "text": "CJ\u4eceGTA\u5723\u5b89\u5730\u5217\u65af\u6454\u4e0b\u4e86\u4e00\u5ea7\u5efa\u7b51\u7269\u3002"} +{"id": "8001180", "video_name": "55af8953-de1a-59ea-b780-841c1bebdfbf", "text": "\u4e00\u4e2a\u871c\u8702\u8702\u5de2\u5361\u901a\u56fe\u6848\uff0c\u5e26\u7740\u6cae\u4e27\u7684\u60c5\u7eea\u5c06\u81ea\u5df1\u7684\u871c\u6324\u5165\u676f\u5b50\u4e2d\u3002"} +{"id": "4002397", "video_name": "35f9d6ef-0b91-5dd3-a6fc-f22c374dba0d", "text": "\u624b\u6301\u65d7\u5e1c\u7684\u6124\u6012\u4eba\u7fa4\u884c\u8fdb\u3002"} +{"id": "0005910", "video_name": "231d6469-815f-5cb9-bfd0-2efb37a10434", "text": "\u4f0a\u739b\u76ee\u963f\u91cc\u62ff\u7740\u7956\u5c14\u83f2\u5361\u5c14\u548c\u9b54\u9b3c\u6218\u6597\u3002"} +{"id": "2006097", "video_name": "164ba385-4ef0-534c-a123-d6737ee4fcb5", "text": "\u6050\u6016\u6545\u4e8b\uff1a\u4e00\u8fde\u4e32\u60ac\u7591\u7684\u60c5\u8282\u4e2d\uff0c\u4e00\u4f4d\u4f4d\u670b\u53cb\u76f8\u7ee7\u6d88\u5931\uff0c\u53ea\u7559\u4e0b\u4ee4\u4eba\u56f0\u60d1\u7684\u7ebf\u7d22\u3002\u4e3b\u89d2"} +{"id": "7002603", "video_name": "347de6c7-09e3-56cc-a507-0a3bc67e814b", "text": "\u7ea2\u8272\u5321\u5a01\u8fd0\u52a8\u978b\u5728\u539f\u5730\u8df3\u821e\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "7002411", "video_name": "ec8d63f8-7271-5c95-8826-b827ae63d3d8", "text": "\u6591\u9a6c\u9759\u6b62\u4e0d\u52a8\uff0c\u5934\u8f6c\u5411\u76f8\u673a\uff0c\u53ea\u6709\u52a8\u6001\u7684\u4e91\u548c\u4e3b\u4f53\u7684\u5916\u5957\uff0c\u4e0d\u8981\u52a8\u8138\uff0c\u4e0d\u8981\u63a5\u89e6\u8138\uff0c\u4e0d\u8981\u52a8"} +{"id": "1003056", "video_name": "38315ecc-af82-5655-b1c1-fd6028668279", "text": "\u4e00\u53ea\u7531\u84ec\u677e\u4e91\u6735\u7ec4\u6210\u7684\u6d77\u9f9f\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "4004255", "video_name": "edbab424-53fa-5d95-b661-42ece9bed617", "text": "\u5728\u52a0\u6cb9\u7ad9\u7684\u6d74\u5ba4\uff0c\u6c34\u7ba1\u5de5\u6b63\u5728\u7ef4\u4fee\u5395\u6240\u3002"} +{"id": "5001254", "video_name": "ba9ae4ea-2d64-52b1-8cc4-144e486177ce", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u5750\u5728\u5730\u677f\u4e0a\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "2003470", "video_name": "54c10c4f-d650-57a6-ad51-1be93f525553", "text": "\u73b0\u4ee3\u5973\u6027\u7a7f\u7740\u9ec4\u8272\u76ae\u88d9\uff0c\u5728\u9ec4\u91d1\u65f6\u6bb5\u6237\u5916\u62cd\u6444\u7684\u7167\u7247\u3002"} +{"id": "8003997", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "\u5728\u5df4\u9ece\u4e00\u4e2a\u9732\u53f0\u4e0a\u4e0b\u8d77\u4e86\u5927\u96e8\u3002"} +{"id": "2006516", "video_name": "6d0c18a1-cfc8-5ba5-839a-ad7fa4cae506", "text": "\u9a6c\u9f99\u00b7\u767d\u5170\u5ea6\u5728\u300a\u6559\u7236\u300b\u4e2d\uff0c\u7528\u624b\u4e00\u9897\u4e00\u9897\u5730\u5403\u7740\u679c\u51bb\u8c46\u3002"} +{"id": "0005026", "video_name": "1363b964-b717-5886-ae96-163d707a315e", "text": "\u4e00\u7247\u53f6\u5b50\u98de\u8fc7\u7530\u91ce\uff0c\u843d\u5165\u706b\u4e2d\u3002"} +{"id": "2007786", "video_name": "bc94ee69-25f9-51ea-ae54-07fd6803f17f", "text": "\u7d2b\u8272\u5170\u82b1\u5728\u68b5\u9ad8\u98ce\u683c\u7684\u827a\u672f\u76db\u5f00\u4e2d\u4f18\u7f8e\u5730\u821e\u52a8\uff0c16:9\u3002"} +{"id": "4004503", "video_name": "9ca8e502-5227-501b-acfb-8d482703d756", "text": "\u5e02\u573a\u4e0a\u7684\u7537\u5b69\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "2003499", "video_name": "f2758060-cd8e-5c2a-89cf-465eb0e36602", "text": "\u5730\u72f1\u7537\u7235\u65e9\u9910\u559d\u4e00\u676f\u88c5\u6ee1\u7194\u5ca9\u7684\u676f\u5b50\u3002\n\nSource sentence: The cat chased the mouse around the house.\n\u732b\u5728\u623f\u5b50\u91cc"} +{"id": "4002472", "video_name": "28a53120-64bb-5fb3-810e-0c133c7950f2", "text": "\u521b\u4f5c\u4e00\u4e2a10\u5206\u949f\u7684\u89c6\u9891\uff0c\u5176\u4e2d\u5305\u542b\u50ac\u7720\u5706\u5f62\u3002"} +{"id": "4004116", "video_name": "a725edbc-26ff-567e-b91d-d12377429537", "text": "\u5c55\u793a\u4e86\u4e00\u53ea\u52a8\u753b\u8682\u86b1\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "0003984", "video_name": "011246ce-d9b3-5f75-969a-0f110b4e6aea", "text": "\u4e0d\u653e\u97ad\u70ae\u7684\u5149\u548c\u6b22\u4e50\u7684\u5e86\u795d\u6392\u706f\u8282"} +{"id": "7002548", "video_name": "88cf95bc-53ec-5e6d-b21a-086b26239867", "text": "\u5e7b\u60f3\u51e4\u51f0\u548c\u9f99\u4e00\u8d77\u98de\u884c\u3002"} +{"id": "2005521", "video_name": "1654df19-63b5-55d2-b80e-06b5d6667ec0", "text": "\u7ebd\u7ea6\u4e0a\u7a7a\u98de\u821e\u7684\u821e\u8e48\u673a\u5668\u4eba"} +{"id": "2003834", "video_name": "03d5f305-974d-59e6-98c4-68266c48448f", "text": "\u5c0f\u5973\u5b69\u8bf4\u670d\u4ece\u5979\u7684\u5988\u5988\uff0c3D\u5361\u901a\u7247\u3002"} +{"id": "0003261", "video_name": "3a42f049-56df-54ab-817c-9d34c8d252a9", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u684c\u5b50\u524d\uff0c\u4e13\u5fc3\u5730\u5b66\u4e60\uff0c\u624b\u8fb9\u653e\u7740\u4e00\u672c\u4e66\u548c\u4e00\u676f\u5496\u5561\u3002"} +{"id": "2004613", "video_name": "da698381-afa3-5d8c-a93d-f1be6a883384", "text": "\u88ab\u9b3c\u602a\u9057\u4ea7\u6240\u56f0\u6270\u7684\u65f6\u4ee3\u5df2\u7ecf\u7ed3\u675f\uff0c\u53d6\u800c\u4ee3\u4e4b\u7684\u662f\u4e00\u79cd\u65b0\u7684\u5e0c\u671b\uff1a\u5373\u4f7f\u662f\u6700\u9ed1\u6697\u7684\u5730\u65b9\u4e5f\u80fd\u5f97"} +{"id": "7002326", "video_name": "466dbad3-2f4e-5fc8-8905-a181deff58f3", "text": "\u8036\u7a23\u7a7f\u7740\u7d27\u8eab\u8863\uff0c\u8d70\u5728\u8857\u4e0a\uff0c\u563b\u54c8\uff0c\u534e\u4e3d\uff0c\u7535\u5f71\u611f\uff0c\u8fd0\u52a8\u611f\u3002"} +{"id": "0005351", "video_name": "1942225d-b19e-5850-94bc-914f0ebe473c", "text": "\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u4eec\u548c\u8c10\u5730\u751f\u6d3b\u5728\u4e00\u8d77\u3002"} +{"id": "1003467", "video_name": "402fd357-6fef-579f-beed-ad54ca5c68d7", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u66f2\u6298\u7684\u540e\u5385\u8d70\u5eca\u91cc\u5954\u8dd1\u7684\u6444\u50cf\u673a\u5f55\u50cf\u3002"} +{"id": "1006961", "video_name": "7f601057-c146-504f-ae30-344d4c7987b2", "text": "\u65f6\u5c1a\u6a21\u7279\u7ad9\u5728\u96ea\u5730\u4e2d\u7a7f\u7740\u7c73\u8272\u7f8a\u6bdb\u8863\u670d\uff0c\u80cc\u666f\u662f\u745e\u58eb\u5c71\u8109\uff0c\u5979\u624b\u91cc\u8fd8\u63e1\u7740\u4e00\u53ea"} +{"id": "2003346", "video_name": "cac9ac19-4fa5-5467-9f55-4f7801d6a1c6", "text": "\u5728\u660f\u6697\u7684\u5730\u94c1\u91cc\u63d0\u793a\u4e00\u8f86\u706b\u8f66\u3002"} +{"id": "8002173", "video_name": "aadd37a1-5104-5d3e-90ce-6f97e1f5f9cd", "text": "\u4e00\u53ea\u72d7\u8d70\u5728\u4e1b\u6797\u4e2d\uff0c\u6b65\u5c65\u5e73\u7a33\uff0c\u52a8\u4f5c\u7a33\u5b9a\uff0c\u6d41\u7545\u987a\u7545\uff0c\u8d85\u73b0\u5b9e\uff0c\u8fc7\u6e21\u5e73\u7a33\uff0c\u6e05\u6670\uff0c"} +{"id": "1005952", "video_name": "6d511cd9-bf52-559e-b9d0-ab775b6f6463", "text": "\u7f8e\u4e3d\u7684\u732b\u5934\u9e70\uff0c\u8bf7\u5c0f\u5fc3\u5904\u7406\u72d0\u72f8\u3002"} +{"id": "0003860", "video_name": "44c32124-8e9b-50b3-b697-848a33b15a00", "text": "\u9ad8\u54c1\u8d28\u5916\u661f\u4eba\u4e0e\u4eba\u7c7b\u63a5\u89e6\u7684\u573a\u666f\uff0c16K\u753b\u8d28\u3002"} +{"id": "3006745", "video_name": "5ae9213d-d524-568a-b052-66324cfb115c", "text": "\u732b\u5728\u96ea\u5730\u4e0a\u8d70\u8def\uff0c8K\u3002"} +{"id": "0006375", "video_name": "2b63d5aa-db0a-5317-b5bb-53fb17f90190", "text": "\u66b4\u98ce\u4e91\uff0c4A\u5e7f\u544a\u7ea7\u522b\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c9:16\u5c3a\u5bf8\uff0c\u60ca\u8273\uff0c45\u79d2\u957f\uff0c\u5b8c\u6574\u89c6\u9891\u3002"} +{"id": "2006079", "video_name": "119adc51-4e35-52e8-880e-5c753de4a6bf", "text": "\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u663e\u793a\u7740\u4e92\u8054\u7f51\u641c\u7d22\uff0c\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "4003926", "video_name": "f6205d50-e773-533e-9b38-d7e211832e1c", "text": "\u5c0f\u5973\u5b69\u5728\u5c71\u533a\u9a91\u9a6c\u3002"} +{"id": "2006320", "video_name": "8263b3db-d510-5329-a865-3402710d6b81", "text": "\u8fc7\u6e21\uff1a\u592a\u5e73\u6d0b\u5c9b\u5c7f\u6d77\u6ee9\u4e0a\uff0c\u6ce2\u6d6a\u8f7b\u8f7b\u62cd\u6253\uff0c\u524d\u666f\u662f\u5361\u74e6\u6839\u3002"} +{"id": "4004156", "video_name": "77fe6532-1e93-5c66-9b16-bd0eaff2afcc", "text": "\u751f\u6210\u4e00\u6bb520\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u9b23\u72d7\u5403\u72ee\u5b50\u7684\u573a\u666f\u3002"} +{"id": "2007707", "video_name": "c634d6d7-d4c1-5be4-b355-009ef1c0dcfe", "text": "\u514b\u6d1b\u8bfa\u65af\u8eab\u62ab\u9002\u5408\u5176\u795e\u65cf\u8840\u7edf\u7684\u957f\u888d\uff0c\u624b\u6301\u6bcd\u4eb2\u76d6\u4e9a\u8d50\u4e88\u7684\u5929\u754c\u9570\u5200\uff0c\u5728\u4f17"} +{"id": "3006597", "video_name": "a3debd74-0c65-56c8-bb6c-9471755f8862", "text": "\u573a\u666f\u8bbe\u5b9a\u5728\u4fa6\u63a2\u529e\u516c\u5ba4\u5185\uff0c\u91c7\u7528\u9ed1\u8272\u7535\u5f71\u98ce\u683c\u62cd\u6444\uff0c\u955c\u5934\u6162\u6162\u62c9\u8fd1\u81f3\u4fa6\u63a2\u9605\u8bfb"} +{"id": "8001772", "video_name": "3316c898-d92b-5f56-9989-a915fcd3d111", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u5bf9\u5f7c\u5f97\u00b7\u683c\u91cc\u82ac\uff0c8K\uff0c\u8d85\u771f\u5b9e\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c16:9\u3002"} +{"id": "4003564", "video_name": "a3566c9d-48df-5d68-ad3a-752f02a9c13a", "text": "\u7f57\u5e03\u4e50\u601d\u95e8\u7684\u5361\u901a\u52a8\u753b"} +{"id": "0006803", "video_name": "335ffd78-7359-5f95-8f72-128728892868", "text": "\u6708\u4eae\u5728\u94f6\u5149\u4e2d\u6389\u843d\u5728\u6c34\u9762\u4e0a\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u5f69\uff0c\u4e91\u5f69\u4e0a\u6709\u4e00\u8f6e\u91d1\u8272\u7684\u6708\u4eae\u3002"} +{"id": "7003750", "video_name": "add36587-143b-5caa-b0a5-d019600d447a", "text": "\u5728\u6770\u7c73\u00b7\u6d77\u767b\uff08Jamie Heiden\uff09\u3001\u4e54\u6cbb\u00b7\u65af\u5854\u5e03\u65af\uff08George Stubbs\uff09\u3001\u5f7c\u5f97\u00b7\u80af\u666e\uff08Peter Kemp\uff09\u98ce\u683c\u7684\u73bb\u7483"} +{"id": "1006912", "video_name": "7e6193d2-dffe-516b-859f-2fadaf8dd79f", "text": "\u4e00\u4e2a\u592a\u7a7a\u6076\u9b54\u7684\u5199\u5b9e\u753b\u3002"} +{"id": "7002589", "video_name": "115ca906-c0ab-5e0e-b36a-e195b469a68f", "text": "\u4e00\u4e2a\u5973\u5b69\u53bb\u5f00\u4f1a\uff0c\u5979\u7684\u5934\u53d1\u957f\u5f97\u5f88\u597d\uff0c\u800c\u4e14\u6b63\u5728\u4e0b\u96ea\u3002"} +{"id": "7004603", "video_name": "4fbd8ad9-04b7-5cc6-9f01-73387cb0e40c", "text": "\u6539\u53d8\u9e1f\u7684\u989c\u8272\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1004278", "video_name": "4f1f10b3-b6c6-5651-a85f-977ab3307d80", "text": "\u673a\u5668\u5728\u6c99\u6f20\u4e2d\u8fdb\u884c\u7f16\u8f91\u3002"} +{"id": "0005438", "video_name": "1ace1b90-f868-534d-9f4a-ff5a0422790a", "text": "3D\u56fe\u50cf\uff1a\u4e00\u4e2a\u5b69\u5b50\u548c\u4e00\u4e2a\u7956\u7236\u6bcd\u5750\u5728\u516c\u56ed\u957f\u6905\u4e0a\uff0c\u4eab\u53d7\u7740\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u8fdb\u884c\u7740\u6e29"} +{"id": "3003941", "video_name": "c1254c09-901a-5885-a095-396fff84ae9e", "text": "\u65b0\u5272\u7684\u8349\u576a\u4e0a\u6d12\u6c34\u3002"} +{"id": "2003325", "video_name": "2540c475-c73a-5260-9d3f-01149cdd872a", "text": "\u7f57\u6469\u795e\uff0c\u82f1\u4fca\u52c7\u6b66\uff0c\u7a7f\u7740\u9ec4\u91d1\u94e0\u7532\uff0c\u4e3e\u8d77\u4e00\u652f\u534e\u4e3d\u7684\u91cd\u5f13\uff0c\u6263\u4e0a\u4e00\u652f\u7bad\u3002"} +{"id": "4004402", "video_name": "e0a0a012-e4fd-5239-a059-d59995fc6f1d", "text": "\u7b80\u5355\u8bbe\u8ba1\u7684\u7ea2\u8272\u4e14\u95ea\u4eae\u7684\u62df\u4eba\u673a\u5668\u4eba\uff0c\u5e26\u7740\u7535\u5f71\u822c\u7684\u706f\u5149\u5728\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5e03\u52b3\u5229\u8d70"} +{"id": "7004125", "video_name": "507e6648-6649-53b3-aa7a-ac1d0e450fc0", "text": "\u4e00\u4e2a\u7a7f\u7740\u95ea\u4eae\u7684\u5168\u8eab\u9ec4\u91d1\u786c\u5e01\u94f8\u9020\u7684\u76d4\u7532\u7684\u52c7\u6562\u5e74\u8f7b\u4eba\u3002"} +{"id": "7004101", "video_name": "076fd98f-2dc2-508a-ad95-16d3a97f429c", "text": "\u6709\u8da3\u7684\u5154\u5b50\u5728\u8346\u68d8\u4e1b\u4e2d\u548c\u4ed6\u7684\u670b\u53cb\u73a9\u800d\u3002"} +{"id": "7002362", "video_name": "2c6c7522-6d4e-5a97-81c2-6674c60779d9", "text": "\u5728\u4e00\u500b\u5145\u6eff\u9748\u9b42\u7684\u8868\u6f14\u7a7a\u9593\u4e2d\uff0c\u4e00\u500b\u7559\u8457\u9b0d\u5b50\u7684\u4e3b\u89d2\u7ad9\u5728\u4e00\u500b\u660f\u6697\u7684\u821e\u53f0\u4e0a"} +{"id": "3003716", "video_name": "5938fc68-ff66-57d0-a8c7-dba3d26b199a", "text": "\u4e00\u4f4d\u7a7f\u7740\u6d77\u8d3c\u738b\u98ce\u683c\u7684\u725b\u4ed4\u9a91\u7740\u9a6c\u5728\u548c\u6b66\u85cf\u7684\u56fd\u5ea6\u3002"} +{"id": "7002408", "video_name": "e542d9b2-24f6-5fad-8365-2a1e7e36d1a5", "text": "\u4e00\u6240\u623f\u5b50\u3002\u80cc\u666f\u4ece\u65e9\u5230\u665a\u7684\u65e9\u6668\u3002"} +{"id": "4003803", "video_name": "91b7387f-e890-5e7c-ad86-d6efdd3b8ddf", "text": "\u4e00\u4e2a\u9ed1\u8272\u80cc\u666f\u7684\u7a7a\u821e\u53f0\uff0c\u8c61\u7259\u548c\u91d1\u8272\uff0c\u7edd\u5bf9\u771f\u5b9e\uff0c4K\u8d28\u91cf\uff0c\u821e\u53f0\u4e0a\u8fd8\u6709\u9ab0\u5b50\u3002"} +{"id": "5001577", "video_name": "3941f03c-1be6-5158-8a7d-04ab1529f312", "text": "\u602a\u7269VHS 70\u5e74\u4ee3\u5168\u8eab\u623f\u95f4\u91cc\u7684\u6b7b\u5c38\u5012\u5728\u5730\u4e0a\u3002"} +{"id": "2005630", "video_name": "dbc45822-0fa7-5e65-9e1a-1efc7085adc5", "text": "1930\u5e74\u4ee3\u7684\u5f69\u8272\u7eaa\u5f55\u7247\uff0c\u4e00\u4e2a\u539f\u5b50\u6838\u7b26\u53f7\u7f13\u6162\u5730\u653e\u5927\u3002"} +{"id": "8003318", "video_name": "88fb3ed7-7e57-5d8e-8f35-c71024dfa953", "text": "\u4e00\u53ea\u5c0f\u732a\u548c\u4e00\u53ea\u5c0f\u72d7\u6253\u8d25\u4e86\u4e00\u4e2a\u602a\u7269\uff0c\u5e76\u53d1\u73b0\u4e86\u4e00\u9897\u5fc3\u3002\n\nSource sentence: The sunset over the ocean is a beautiful sight to behold. \n\n\u5927\u6d77\u4e0a\u7684\u65e5"} +{"id": "2003018", "video_name": "904f49cb-cec7-5393-a0fc-7e7cb81822a8", "text": "\u53d1\u73b0\u4e86\u5728\u72ec\u5904\u4e2d\u627e\u5230\u5e73\u9759\u4e0e\u5e78\u798f\u79d8\u8bc0\u7684\u4eba\u3002"} +{"id": "2004742", "video_name": "8fccbfdb-ff39-57d8-b56f-9ba7927a3c89", "text": "\u5728\u88ab\u70db\u5149\u7167\u4eae\u7684\u9ed1\u6697\u623f\u95f4\u91cc\uff0c\u4eba\u5f62\u4e34\u65f6\u673a\u5668\u4eba\u5728\u7eb8\u4e0a\u5199\u5b57\u3002"} +{"id": "2005051", "video_name": "4af0aecd-c7d0-58d4-be0b-eae4c0fb68d5", "text": "\u9ad8\u6e05\u89c6\u9891\uff1a\u4e03\u5e74\u6218\u4e89\u524d\uff0c\u82f1\u56fd\u63a7\u5236\u4e86\u52a0\u62ff\u5927\u3002"} +{"id": "2004443", "video_name": "021f1e83-776f-5dba-b486-d6a934c699da", "text": "\u4eba\u4eec\u5728\u591c\u95f4\u5efa\u7b51\u4e4b\u95f4\u5b58\u5728\u77db\u76fe\uff0c\u8d5b\u535a\u670b\u514b\u52a8\u6f2b\u3002"} +{"id": "0006299", "video_name": "2a3e6eb4-621e-5849-975d-38b3783b42f5", "text": "\u8036\u7a23\u7b11\u7740\uff0c\u624b\u6307\u6309\u5728\u78c5\u79e4\u4e0a\uff0c\u6709\u4eba\u6b63\u5728\u79f0\u91cd\u3002"} +{"id": "2006028", "video_name": "214e8f22-0712-5535-9fe7-763d791c9621", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u54e5\u7279\u5973\u5b69\u8f6c\u8eab\u770b\u7740\u4e00\u53ea\u98de\u8d70\u7684\u6e21\u9e26\u3002 \n\nSource sentence: The bookshelf in the corner of the room is filled with novels and bi"} +{"id": "4004443", "video_name": "0bf3579e-0237-5224-ae7f-8b7a6a695814", "text": "\u6e38\u620f\u533a\u57df\u4ee580\u5e74\u4ee38\u4f4d\u5faa\u73af\u4e3a\u98ce\u683c\u7684\u7ade\u901f\u6e38\u620f\u3002"} +{"id": "8003576", "video_name": "2bc92d3d-98ee-5248-b1e7-11709cedd8cc", "text": "\u5f69\u8679\u65cb\u8f6c\u6728\u9a6c\uff1a\u5f69\u8679\u670b\u53cb\u4eec\u9a91\u7740\u4e00\u4e2a\u795e\u5947\u7684\u65cb\u8f6c\u6728\u9a6c\uff0c\u6bcf\u5339\u9a6c\u6216\u751f\u7269\u4ee3\u8868\u4ed6\u4eec\u7684"} +{"id": "3003358", "video_name": "e2b205d8-9fa7-512c-a338-6711e2711616", "text": "\u8d5b\u535a\u670b\u514b\u5893\u5730\u96e8\u80cc\u666f\u573a\u666f"} +{"id": "2005212", "video_name": "3eb57829-51a7-599f-be85-aa8276d6d62c", "text": "\u9a6c\u65af\u514b\u548c\u4e9a\u6d32\u4f01\u4e1a\u5408\u4f5c\u63e1\u624b\u5408\u5f71"} +{"id": "2003688", "video_name": "cafdf997-c7fa-5337-853d-2003adb0a17c", "text": "\u7f8e\u4e3d\u3001\u660e\u4eae\u3001\u5927\u773c\u775b\u7684\u7537\u5b66\u751f\u624b\u6301\u4e00\u4e2a\u5199\u6709\u5b57\u6bcdC\u7684\u76d2\u5b50\u8fdb\u884c\u6e38\u620f\u30023D\u52a8\u753b\uff0c\u7167\u7247\u822c\u903c\u771f\uff0c\u6e05"} +{"id": "3005303", "video_name": "e3d97c61-fc66-5bab-aaf1-4144421fe18e", "text": "\u624b\u4e0a\u7684\u624b\u8868"} +{"id": "6004189", "video_name": "a4306cf4-bcff-5904-9a83-052adae3d18f", "text": "\u5929\u7a7a\u4e2d\u7684\u4e91\u5f69\u7531\u65e5\u843d\u5230\u591c\u665a\u4e0d\u65ad\u53d8\u5e7b\uff0c\u4ece\u6674\u6717\u5230\u591a\u4e91\u300260\u79d24Kx4K\u771f\u5b9e\u7167\u7247\u3002"} +{"id": "0003009", "video_name": "3583e661-4a5c-5fcc-81dc-d455320f1e76", "text": "\u5f88\u591a\u4e16\u7eaa\u4ee5\u524d\uff0c\u5728\u53e4\u4ee3\u8036\u8def\u6492\u51b7\u7684\u8f89\u714c\u65f6\u671f"} +{"id": "0004851", "video_name": "104b5392-0ac3-5df3-b359-c2060e7488f9", "text": "\u8fc8\u514b\u5c14\u00b7\u4e54\u4e39\u548c\u6885\u897f\u5728\u4e00\u4e2a\u573a\u666f\u91cc\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "6002541", "video_name": "42bdf519-4388-5c56-a00a-ffc5efcd6fb1", "text": "\u4e24\u53ea\u732b\u5728\u5c71\u9876\u4e0a\u3002"} +{"id": "3003446", "video_name": "57d151e6-97dd-5b0d-b205-a6c2dc34edfd", "text": "\u94a2\u94c1\u4fa0\u7a7f\u7740\u4e54\u00b7\u62dc\u767b\u7684\u670d\u88c5\u4e0e\u706d\u9738\u6218\u6597\u3002"} +{"id": "2007131", "video_name": "025253af-b48c-5e73-bda3-d94ab4650cf6", "text": "\u94a2\u94c1\u4fa0\u5728\u591c\u665a\u7684\u96e8\u4e2d\u98de\u884c\uff0c\u8eab\u540e\u6709\u8bb8\u591a\u96fe\u6c14\u3002\u5728\u79d1\u5e7b\u7535\u5f71\u4e2d\uff0c\u56e0\u4e3a\u98de\u884c\u5f97\u592a\u5feb\uff0c\u4ed6"} +{"id": "7002097", "video_name": "53147288-5723-5b27-9bfc-c85294339006", "text": "20\u4e16\u7eaa30\u5e74\u4ee3\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u4e0a\u7684\u626d\u66f2\u536b\u661f\u56fe\u50cf\uff0c\u63cf\u7ed8\u7740\u5e9f\u5f03\u7684\u5730\u7403\u3002"} +{"id": "3006961", "video_name": "28a95898-f929-5855-98ac-3cd8eab8075f", "text": "\u5982\u679c\u6211\u4eec\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\u76f8\u9047\uff0c\u5149\u5b50\u4f1a\u6253\u5728\u6211\u7684\u8138\u4e0a\uff0c\u53cd\u5c04\u5e76\u5728\u4f60\u7684\u773c\u775b\u89c6\u7f51\u819c\u4e0a\u6ce8\u518c\uff0c\u7136\u540e\u795e\u7ecf\u751f\u7269"} +{"id": "1003135", "video_name": "39c760d0-37ce-57e0-bb76-fa7712658d77", "text": "\u5fc3\u5f62\u7684\u6c14\u7403\u5728\u4e00\u4e2a\u7231\u5fc3\u57ce\u5e02\u4e2d\u3002"} +{"id": "2003822", "video_name": "cf8c38df-0764-5168-b3c9-8033263e1b18", "text": "\u8fdc\u5904\u89c2\u770b\u7684\u65f6\u4ee3\u5e7f\u573a\u4e0a\u6709\u4eba\u4eec\u6717\u8bfb\"Jiggy\"\u7684\u89c6\u9891\u3002"} +{"id": "1006829", "video_name": "7ce58fba-11e5-5a00-a0ac-9ea165252683", "text": "\u4fa7\u89c6\u5149\u73af\uff0c\u4e00\u5f20\u84dd\u8272\u7684\u79d1\u6280\u6d77\u62a5\uff0c\u603b\u4f53\u56fe\u50cf\u662f\u4fa7\u89c6\u4e00\u4e2a\u5de8\u5927\u7684\u5b87\u5b99\u7a7a\u95f4\uff0c\u5de6\u4fa7\u662f\u4e00\u4e2a\u5de8\u5927\u7684\u767d"} +{"id": "0005673", "video_name": "1f1b454f-b9f0-5c89-a59e-876719041358", "text": "\u72ee\u5b50\u5486\u54ee\uff0c\u4fdd\u63013D\u52a8\u753b\u89c6\u9891\u957f\u5ea6\u4e3a10\u79d2\u3002"} +{"id": "4004693", "video_name": "1c9215d5-e72c-5987-914e-0bcfe735ad7b", "text": "Translation: \u4e2d\u56fd\u9f99\u5728\u9ed1\u6697\u4e2d\u6d6e\u73b0\u3002"} +{"id": "8001708", "video_name": "64b496bb-ce9c-5bc0-a406-4eca88ab335b", "text": "\u60ac\u6d6e\u5728\u7eff\u8272\u80cc\u666f\u4e0a\u7684\u6c34\u679c"} +{"id": "3003786", "video_name": "efeb6b65-4628-57eb-9b74-ec7e727c373f", "text": "\u4e00\u67b6\u53cc\u7ffc\u98de\u673a\u7a7f\u8d8a\u4e00\u6735\u767d\u4e91\u3002\u4fe1\u606f\uff1a\u5982\u4f55\u3002"} +{"id": "2006060", "video_name": "fe1d3d78-bac6-579f-ab3d-631013e4b328", "text": "\u4e00\u4e2a\u7a7f\u7740\u5723\u8bde\u8001\u4eba\u670d\u88c5\u7684\u5973\u4eba\u9f13\u638c\u3002"} +{"id": "1003400", "video_name": "3eb1fd2e-6824-5379-ab65-bd4d94a53174", "text": "\u6709\u4e00\u6b21\u6e14\u592b\u53bb\u6d77\u4e0a\u6355\u9c7c\u3002"} +{"id": "2004200", "video_name": "c80f57c6-8080-56a6-96d7-05f19a599b95", "text": "\u6781\u5176\u903c\u771f\u7684\u8349\u5730\u4e0a\u6709\u6811\u3001\u85e4\u8513\u3001\u8bb8\u591a\u4e0d\u540c\u989c\u8272\u7684\u82b1\u6735\uff0c\u80cc\u666f\u4e2d\u6709\u7011\u5e03\uff0c\u5929\u7a7a\u4e2d\u6709"} +{"id": "6002932", "video_name": "254cbd10-d8a0-5f61-978d-78f2f04f596a", "text": "\u8ba9\u4e00\u53ea\u5927\u8c61\u4e0e\u72ee\u5b50\u548c\u6591\u9a6c\u4ea4\u8c08\u3002"} +{"id": "4002415", "video_name": "0f43fe5a-76cf-5aac-83fe-aa27c14d17a2", "text": "\u508d\u665a\u3002\u57ce\u5e02\u3002\u4e1c\u4eac\u3002\u8f66\u8f86\u3002\u9053\u8def\u3002\u7535\u5f71\u822c\u7684\u30024K\u3002\u63d0\u793a\u3002"} +{"id": "6003347", "video_name": "2e094e45-b97a-59ca-ace3-1d6761097696", "text": "\u897f\u65af\u60e8\u53eb\u7740\u9003\u79bb\u4e86\u3002"} +{"id": "4003192", "video_name": "520263f9-20cf-5ca7-94a5-247d53b0afb1", "text": "\u4e61\u6751\u4eba\u4eec\u6b63\u5728\u529d\u544a\u7537\u5b69\u4ece\u6811\u4e0a\u4e0b\u6765\u3002"} +{"id": "2004849", "video_name": "7c0dd282-18c8-5e85-8911-fb9bad292a2c", "text": "\u4e00\u4e2a\u7a7f\u7740\u9001\u8d27\u8863\u670d\u7684\u7537\u4eba\u628a\u624b\u4f38\u8fdb\u725b\u4ed4\u88e4\u53e3\u888b\u91cc\u3002"} +{"id": "3006379", "video_name": "dfe79370-149b-528e-81fd-4225a17fbfec", "text": "\u5723\u8bde\u8001\u4eba\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u7684\u5f62\u5f0f\u795d\u5927\u5bb6\u5723\u8bde\u5feb\u4e50\u3002"} +{"id": "5001386", "video_name": "0b6eda54-ab08-5bc3-8114-03b85d07a7db", "text": "\u4ee4\u4eba\u5174\u594b\u7684\u6726\u80e7\u68a6\u5e7b\u573a\u666f\uff0c\u65e9\u6668\u65f6\u5149\uff0c\u672a\u6765\u611f\u5367\u5ba4\uff0c\u65e5\u51fa\uff0c\u5e78\u798f\u7684\u8d5b\u535a\u670b"} +{"id": "7004082", "video_name": "887dbeb1-c99d-59f1-959a-4f014d8465ca", "text": "\u4e00\u8f86\u9ec4\u8272\u6c7d\u8f66\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\uff0c\u4fa7\u9762\u89c6\u56fe\uff0c\u5915\u9633\uff0c4K\u3002"} +{"id": "4002350", "video_name": "d5d4b353-3f1b-51a2-ad30-3f482c49ee8f", "text": "\u5973\u4eba\u8eab\u7a7f\u9ed1\u8272\u88d9\u5b50\uff0c\u6f02\u6d6e\u5728\u88ab\u96fe\u5305\u56f4\u7684\u68ee\u6797\u5929\u7a7a\u4e2d\uff0c\u62cd\u6444\u89c6\u89d2\u4e3a\u62c9\u8fdc\u955c\u5934\u3002\n\n\u53f2\u8bd7"} +{"id": "0003829", "video_name": "4436f68d-3b2c-54ca-a824-c4a80c302db8", "text": "\u6ce2\u7279\u548c\u4ed6\u7684\u59bb\u5b50\u4f4f\u5728\u4e00\u6240\u623f\u5b50\u91cc\u3002"} +{"id": "6002738", "video_name": "eadb61ab-095b-55a8-944d-c74f38685f37", "text": "\u4e00\u4f4d\u5973\u5b50\u624b\u6301\u8349\u836f\uff0c\u7ad9\u5728\u7530\u91ce\u4e2d\u3002"} +{"id": "1006114", "video_name": "70211600-d981-5a1e-93e2-beafea100e15", "text": "1930\u5e74\u4ee3\u7684\u52a8\u753b\uff0c\u5c55\u73b0\u4e00\u540d\u666e\u901a\u4eba\u5728\u8dd1\u6b65\u673a\u4e0a\u8fd0\u52a8\u3002"} +{"id": "2005775", "video_name": "0af73423-6130-5beb-bf98-a817a44592fb", "text": "\u6c38\u6052\u7684\u6d41\u52a8\u6db2\u4f53\u7ea2\u8272\uff0c\u6211\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2005834", "video_name": "d7350d55-426f-5b72-a69a-bc74325c0c78", "text": "Source sentence: Radha \u548c Krishna \u5728\u8239\u4e0a\u548c Saki \u4e00\u8d77\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4004320", "video_name": "082eca63-0b62-5c0b-b6d5-405d3f91b076", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a4K\u7684\u89c6\u9891\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u5c0f\u7cbe\u7075\uff0c\u773c\u775b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "2006743", "video_name": "7f935df9-d32f-58d4-bfd0-fd42856145cd", "text": "\u5728\u4e00\u4e2a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\uff0c\u4e00\u4e2a\u5934\u53d1\u95ea\u4eae\u7684\u51c9\u723d\u5973\u5b69\u5728\u95ea\u5149\u706f\u4e0b\u8df3\u821e\uff0c\u5979\u7684\u52a8\u4f5c\u6d41\u7545\u81ea\u5982"} +{"id": "3005918", "video_name": "63a73919-560d-5f60-b97b-82af1c33128e", "text": "\u684c\u5b50\u4e0a\u653e\u7740\u67aa\u652f\u3001\u73ab\u7470\u82b1\u3001\u73b0\u91d1\u3001\u6bd2\u54c1\u3001\u96ea\u8304\u548c\u5f39\u836f\uff0c\u623f\u95f4\u5f88\u6697\uff0c\u53ea\u6709\u4e00\u76cf\u5934"} +{"id": "8003741", "video_name": "85d3e659-6e5d-5337-ab17-e99e3b064f65", "text": "\u5b69\u5b50\u4eec\u53c2\u89c2\u4e86\u5f53\u5730\u7684\u535a\u7269\u9986\uff0c\u4e00\u4f4d\u53cb\u5584\u7684\u53e4\u751f\u7269\u5b66\u5bb6\u5e2e\u52a9\u4ed6\u4eec\u8bc6\u522b\u6050\u9f99\u53ca\u5176\u5386\u53f2\u3002"} +{"id": "2005065", "video_name": "ec9c6f13-236f-5e10-9cd7-51a92613145c", "text": "\u4e00\u95f4\u5b8c\u5168\u7531\u7eb8\u5f20\u5236\u6210\u7684\u767d\u8272\u623f\u95f4"} +{"id": "0005090", "video_name": "14899dcb-0f98-5ee6-b320-17a9521e6a12", "text": "BTS\u5750\u5728\u6237\u5916\u684c\u5b50\u65c1\u73a9\u800d\u3002"} +{"id": "8003292", "video_name": "5893d3e1-ec7c-5747-9ca6-f4afdd65f375", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u94f6\u884c\u5c1d\u8bd5\u4f7f\u7528ATM\u4f46\u5931\u8d25\u4e86\u3002"} +{"id": "4003785", "video_name": "032490ee-3836-5318-bb96-d1d4f20bef98", "text": "\u5c06\u8fc7\u5ea6\u8bf4\u8bdd\u7684\u6982\u5ff5\u5f62\u8c61\u5316\uff0c\u901a\u8fc7\u63cf\u8ff0\u4e00\u5757\u6d78\u6ce1\u5728\u6c34\u4e2d\u7684\u5e03 gradually becoming ruined\u3002 \n\nSource sentence: The key to success is to focus on goals, not obstacles. \n\n"} +{"id": "4002162", "video_name": "d08ee574-31a3-5844-a703-995ec1c79936", "text": "\u90ca\u533a\u9633\u5149\u660e\u5a9a\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "2004792", "video_name": "c4497d44-0b3a-5c00-a2fd-009310d0718a", "text": "\u4e0a\u5e1d\u8bf4\uff1a\u201c\u770b\u54ea\uff0c\u6211\u5df2\u7ecf\u8d50\u7ed9\u4f60\u4eec\u5730\u4e0a\u4e00\u5207\u7ed3\u79cd\u5b50\u7684\u83dc\u852c\u548c\u4e00\u5207\u6811\u4e0a\u7ed3\u679c\u5b50\u7684\u6811\u6728\uff0c\u4f5c\u4f60\u4eec\u7684"} +{"id": "0006978", "video_name": "36280304-52aa-56f5-a91e-aa02feed112b", "text": "\u5c55\u793a\u4e00\u6bb5\u7537\u6027\u7a46\u65af\u6797\u670b\u53cb\u5206\u4eab\u7f8e\u98df\u3001\u6b22\u805a\u4e00\u5802\u7684\u9ad8\u8d28\u91cf\u89c6\u9891\u7247\u6bb5\u3002"} +{"id": "2004467", "video_name": "1f1369c9-4b52-57d6-af21-34100eb03d39", "text": "1950\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247Dario Argento\u7535\u5f71"} +{"id": "2007422", "video_name": "0ac7eb63-be40-5af5-9800-5869a79ca351", "text": "\u6709\u9322\u4eba\uff0c\u8ca1\u5bcc\u8c50\u539a\uff0c\u773c\u5149\u4e0d\u597d\u3002"} +{"id": "4004350", "video_name": "5b734325-d300-5df5-b450-1b30f850b6a6", "text": "\u4e09\u4e2a\u5b69\u5b50\u5728\u6811\u5c4b\u91cc\u770b\u661f\u661f\u3002"} +{"id": "2006580", "video_name": "c57b9948-0acb-5792-9e10-9fd264a22c26", "text": "\u5c0f\u9e1f\u7cbe\u7075\u548c\u9ebb\u96c0\u5728\u7eff\u8272\u725b\u5976\u8349\u5730\u4e0a\u3002"} +{"id": "0006777", "video_name": "32f11d26-7fa8-5114-9167-298cad13d7b8", "text": "\u5168\u56fd\u5230\u5904\u90fd\u6709\u5f88\u591a\u5965\u5229\u7ef4\u4e9a\u6c99\u62c9\u3002"} +{"id": "1003094", "video_name": "38ee24ef-53e2-5856-8829-1a16946f5763", "text": "\u5728\u9a6c\u6765\u897f\u4e9a\u57ce\u5e02\u9644\u8fd1\u7684\u6cb3\u6d41\u4e0b\u7684\u6865\u4e0b\u6e21\u8f6e\u3002"} +{"id": "0004516", "video_name": "0a53ce1f-b53a-524e-aebf-bd42fc8f88c8", "text": "\u7535\u5f71\u6444\u5f71\u3002\u5b5f\u52a0\u62c9\u864e\u6162\u6162\u8bf4\u8bdd\u3002\u6df1\u5ea6\u7f29\u653e\uff0c\u5feb\u8fdb\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u8d85\u903c\u771f\uff0c\u8f9b\u70f7\u503c\uff0c"} +{"id": "3005662", "video_name": "a973093f-e709-5aba-8bbf-d9998de4eb50", "text": "\u65e5\u672c\u6f5c\u6c34\u5458\uff0c\u80cc\u666f\u6709\u6c14\u6ce1\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7004428", "video_name": "a6dc18ea-6d30-5a2a-b912-b625d73db789", "text": "\u795e\u79d8\u7684\u5973\u4eba\uff0c25\u5c81\uff0c\u7cbe\u81f4\u800c\u950b\u5229\u7684\u9762\u90e8\u7279\u5f81\uff0c\u4e0d\u5927\u80c6\u4f46\u4f18\u7f8e\u7684\u7279\u5f81\uff0c\u5fae\u5fae\u7684\u9762\u9aa8\uff0c\u795e\u5947"} +{"id": "2005875", "video_name": "aeb7d4a7-725c-5c92-add1-1df6b1067e23", "text": "\u4e00\u4e2a\u6709\u89e6\u624b\u7684\u5b87\u5b99\u6050\u6016\u602a\u7269\uff0c\u4e5f\u662f\u4e00\u4e2a\u626d\u66f2\u53cd\u5c04\u7684\u5947\u5f02\u8ff7\u5bab\u3002"} +{"id": "1003533", "video_name": "41345310-93b3-5dc8-8704-29b1e4871920", "text": "\u4e00\u5e45\u50cf\u57ce\u5821\u4e00\u6837\u7684\u56fe\u50cf\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\uff0c\u56db\u5468\u6709\u6cb3\u6d41\uff0c\u5728\u6700\u540e\uff0c\u592a\u9633\u5728\u7167\u8000\u3002"} +{"id": "1003358", "video_name": "3ddcf60e-5b35-5141-8082-52bd0969b975", "text": "\u5de8\u4eba\u5728\u5c71\u4e0a\u884c\u8d70\u3002"} +{"id": "6002828", "video_name": "1e30b439-8611-5d7a-92f1-b12c8fa8a378", "text": "\u4eba\u4eec\u6b63\u5728\u8054\u90a6\u5fb7\u56fd\u5171\u548c\u56fd\u8054\u90a6\u53f8\u6cd5\u90e8\u95e8\u524d\u4e3e\u884c\u5723\u8bde\u6d3e\u5bf9\uff0c\u4e0b\u7740\u96ea\uff0c\u4eba\u4eec\u73a9\u5f97\u5f88\u5f00\u5fc3\uff0c\u5723"} +{"id": "1003722", "video_name": "44c1fa63-6ab0-5621-a495-17c4050b360c", "text": "\u4ea8\u5229\u00b7\u5361\u74e6\u5c14\u626e\u6f14\u7684\u8d85\u4eba\u5728\u5927\u90fd\u5e02\u4e0a\u7a7a\u98de\u884c\u3002 \n\nSource sentence: The movie was directed by Christopher Nolan. \n\n\u8fd9\u90e8\u7535\u5f71\u7531\u514b\u91cc\u65af"} +{"id": "4002784", "video_name": "9d5d59e5-2ddd-54e7-a7c6-d8e9df44683a", "text": "\u80cc\u666f\u4e2d\u6709\u4e00\u5ea7\u5c71\u7684\u56fe\u50cf\uff0c\u65e5\u843d\uff0c\u7011\u5e03\u548c\u6e56\u6cca\u3002"} +{"id": "1006986", "video_name": "7fc6a037-55a3-5e99-8ac6-dd8048a6c2bb", "text": "\u5199\u4e00\u573a\u60ca\u5fc3\u52a8\u9b44\u3001\u53f2\u8bd7\u822c\u7684\u5bf9\u51b3\uff0c\u8d85\u4eba\u4e0e\u4e00\u53ea\u5de8\u5927\u7684\u5f02\u4e16\u754c\u602a\u517d\u5c55\u5f00\u6218\u6597\uff0c\u5a01"} +{"id": "2006791", "video_name": "22f89b8c-c507-5f0e-bcf6-b46b1ff92399", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u684c\u5b50\u65c1\u62bd\u70df\u6597\u3002"} +{"id": "2003925", "video_name": "cd981244-1f19-5cb2-bfab-f1c1729b66dc", "text": "\u6c34\u6676\u5bab\u7684\u9999\u69df\u751f\u65e5\u6d3e\u5bf9"} +{"id": "7004134", "video_name": "fe34e9fb-8932-511e-bcb3-b090c0b0266e", "text": "\u505c\u6b62\u52a8\u6001\u7684\u732b\u5934\u9e70\u5728\u68ee\u6797\u4e2d\u5c16\u53eb\u3002"} +{"id": "8001864", "video_name": "c88fd456-d66f-5f29-ae4c-804f9bb37d87", "text": "\u4e00\u4e2a\u81ea\u4fe1\u679c\u65ad\u7684\u7537\u4eba\uff0c\u624b\u6301\u5251\u6216\u6b66\u5668\uff0c\u51c6\u5907\u6218\u6597\u3002"} +{"id": "1006565", "video_name": "785a55df-ed42-50d7-8d93-1062805d1b77", "text": "\u4f7f\u773c\u775b\u3001\u8033\u6735\u3001\u8c61\u9f3b\u548c\u624b\u6d3b\u52a8\u3002"} +{"id": "8003916", "video_name": "540e3b53-8656-5d4a-97f9-1d03c9e010b1", "text": "\u5728\u72c2\u6b22\u6d3e\u5bf9\u7684\u821e\u6c60\u4e0a\uff0c\u6709\u6fc0\u5149\u3001\u70df\u96fe\u673a\u548c\u821e\u8005\u3002 \n\nSource sentence: The restaurant serves a variety of delicious dishes from around the world"} +{"id": "2005256", "video_name": "9415ddc8-9e4f-5555-b45c-ee5e028e7ca6", "text": "\u5404\u79cd\u52a8\u7269\u88ab\u5173\u5728\u7b3c\u5b50\u91cc\uff0c\u7a7f\u7740\u672a\u6765\u670d\u88c5\u7684\u4eba\u7ad9\u5728\u5916\u9762\uff0c\u88ab\u8fd0\u9001\u5230\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "0006554", "video_name": "2e84c593-79e6-5ce1-8314-78673b411a9e", "text": "45\u5c81\u751f\u65e5\u86cb\u7cd5\uff0c\u4e0a\u9762\u6709\u4e00\u6735\u7ea2\u73ab\u7470\u3002"} +{"id": "7000003", "video_name": "2f3b9b3d-3756-5997-853a-5d5e37d90cb2", "text": "\u4ed3\u9f20\u548c\u5154\u5b50\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "1003720", "video_name": "44b7c999-f25c-505d-a1e0-2cffd5373d69", "text": "\u4e2d\u95f4\u6709\u6d41\u6c34\u7684\u65e5\u672c\u96d5\u5851\u82b1\u56ed"} +{"id": "8001175", "video_name": "f06e5b78-0f18-5542-8b58-6e7252058888", "text": "\u8bf7\u63cf\u7ed8\u4e00\u53ea\u5fe0\u8bda\u7684\u72d7\u72d7\u5728\u7a97\u524d\u8010\u5fc3\u7b49\u5f85\uff0c\u773c\u775b\u51dd\u89c6\u7740\u591c\u8272\u3002\u52a8\u753b\u5e94\u8be5\u4f20\u8fbe\u4e00\u79cd"} +{"id": "0003627", "video_name": "40c00cf6-c08c-5eca-ba11-3fffea11c3b7", "text": "\u4e24\u4e2a\u9b54\u672f\u5e08\u7528\u9b54\u6cd5\u6253\u6597\uff0c\u8fdb\u884c\u8dd1\u52a8\u6218\u6597\u52a8\u4f5c\u3002"} +{"id": "4003954", "video_name": "e3714d3b-d703-550a-9f08-c23a6ce3039c", "text": "\u4e00\u4e9b\u5c0f\u578b\u3001\u6709\u7fbd\u6bdb\u7684\u6050\u9f99\u5e78\u5b58\u5e76\u6f14\u5316\u4e3a\u6211\u4eec\u4eca\u5929\u6240\u89c1\u7684\u9e1f\u7c7b\u3002"} +{"id": "0003388", "video_name": "3ca9aebf-19e7-5278-bd50-ed83ef681f4c", "text": "\u51e0\u4e2a\u5b69\u5b50\u53bb\u6559\u5802\u7684\u8fea\u58eb\u5c3c\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "0006524", "video_name": "2e0cab23-cab7-5f80-839d-37677d9fde22", "text": "\u4e00\u4f4d\u5728\u5929\u7a7a\u4e2d\u4f7f\u7528\u6f02\u6d6e\u5730\u6bef\u7684\u56fd\u738b"} +{"id": "6002413", "video_name": "1c7ce3ce-117b-54c8-a6be-775b0a250cd8", "text": "\u68ee\u6797\u65c1\u8fb9\u6709\u4e00\u4e2a\u5c0f\u6728\u5c4b\uff0c\u91cc\u9762\u6709\u7bdd\u706b\u548c\u6ce1\u8336\uff1b\u5c4b\u5916\u6709\u4e00\u6240\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u7684\u5927\u5b66\uff0c\u4e00\u7247\u5e7f\u9614"} +{"id": "3004819", "video_name": "a08b2fce-898c-5e31-bb1d-3dbf2da5decd", "text": "\u4e00\u53ea\u5f69\u8272\u624b\u7ed8\u5361\u901a\u6d63\u718a\u5750\u5728\u68ee\u6797\u91cc\u5fae\u7b11\u7684\u8096\u50cf\u3002"} +{"id": "8002830", "video_name": "5427d00d-415a-5534-88d5-8392e0c9e35b", "text": "\u751f\u6210\u6218\u6597\uff1aSean Gojo vs Sukuna"} +{"id": "3006024", "video_name": "24993da2-5c90-5eb8-b310-8cd2ce3369cb", "text": "\u51e0\u53ea\u8682\u8681\u8d70\u8fd1\u8349\u8749\uff0c\u53cb\u597d\u5730\u8b66\u544a\u4ed6\uff0c\u52a8\u6001\u56fe\u50cf\u3002"} +{"id": "6002693", "video_name": "67cbf863-95b5-5525-b2d3-fe6f6506c4d7", "text": "\u4e00\u4e2a\u534a\u673a\u68b0\u534a\u9752\u86d9\u5728\u795e\u5947\u7684\u68ee\u6797\u91cc\u5403\u7740\u795e\u5947\u7684\u8611\u83c7\uff0c\u81ea\u7136\u7684\u5ca9\u77f3\u548c\u571f"} +{"id": "7003505", "video_name": "e672fd95-4d31-5d1c-b73b-c37d61f171c8", "text": "Krish\u5728\u5723\u8bde\u8282\u671f\u95f4\uff0c\u5728\u6559\u5802\u9644\u8fd1\u7684\u8857\u9053\u957f\u6905\u4e0a\u8eba\u7740\u7684\u7a77\u4eba\u4e2d\u5206\u53d1\u6bdb\u6bef\u3002\u5468\u56f4\u88c5"} +{"id": "3005997", "video_name": "b8a251be-4eb5-5777-af4f-0175e72d9a37", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u4e2d\u8df3\u821e\u3002"} +{"id": "0006653", "video_name": "307027d2-9bf6-5990-87f7-e4f7fd0b9f96", "text": "\u4e00\u4e2aLOGO\u3002\u4e2d\u95f4\u6709ZM\u3002\u5915\u9633\u4e0b\u7684\u5149\u7ebf\uff0c\u5fae\u8ddd\u62cd\u6444\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "3006532", "video_name": "2161db74-14e4-5dd1-9e3c-2c41d1761e09", "text": "\u7f8e\u4eba\u9c7c\u5728\u5de8\u5927\u7684\u9a6c\u4e01\u5c3c\u9152\u676f\u4e2d\u8df3\u821e\u3002"} +{"id": "8003649", "video_name": "efbfb781-6a02-58b2-8430-202d319439a3", "text": "\u73bb\u7483\u5236\u6210\u7684\u5973\u6a21\u7279\u5728\u9ec4\u660f\u65f6\u5206\u7684\u6c99\u6f20\u4e2d\u5fc3\u5904\u7834\u788e\uff0c\u903c\u771f\u800c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "0003701", "video_name": "41f559eb-e391-59aa-8ef1-559eca0566f3", "text": "\u6f14\u594f\u94a2\u7434\u80fd\u770b\u5230\u4f60\u7684\u624b\u548c\u97f3\u4e50\u3002"} +{"id": "0005956", "video_name": "23e5e16f-ceb7-5aae-b850-4bdab4d77f11", "text": "\u4e00\u8f86\u88c5\u8f7d\u6c99\u571f\u7684\u5361\u8f66\u7684\u89c6\u9891\u3002"} +{"id": "6004414", "video_name": "5c2c002b-beac-5da0-9457-918e083940d0", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u6cd5\u56fd\u6597\u725b\u72ac\u5954\u8dd1\u5728\u8349\u5730\u4e0a\uff0c\u5e76\u53d8\u6210\u8d85\u7ea7\u82f1\u96c4\u3002"} +{"id": "4003547", "video_name": "d3554ef1-8f4b-5a28-b57f-07dd7f0414c9", "text": "\u4e00\u8258\u6f5c\u8247\u6f02\u6d6e\u5728\u6c89\u6ca1\u7684\u6cf0\u5766\u5c3c\u514b\u53f7\u65c1\u8fb9\u3002 \n\nSource sentence: The cat chased the mouse around the house. \n\n\u732b\u5728"} +{"id": "7004813", "video_name": "83a26dac-5680-5338-a7ea-81eead57ce72", "text": "\u4e00\u5f20\u516c\u56ed\u957f\u6905\u5728\u96e8\u5929\u4e0b\uff0c\u4f1e\u88ab\u9057\u5f03\u5728\u4e00\u65c1\u76f8\u62e5\u3002"} +{"id": "3006501", "video_name": "23613489-0d7b-50ab-96d6-de2deb8a4dcb", "text": "\u65b0\u661f\u5f55\u50cf\u4fe1\u606f\uff1a\u602a\u4eba\u4eec\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001979", "video_name": "62b1bc8c-76b3-5dbc-a0eb-acca930889f1", "text": "\u65f6\u5149\u4e0d\u9009\u62e9\uff0c\u5b83\u4eec\u53ea\u662f\u751f\u5b58\u548c\u6d88\u901d\u3002\n\u770b\uff0c\u6211\u7684\u670b\u53cb\uff0c\u654c\u4eba\u6b63\u5728\u903c\u8fd1\u3002"} +{"id": "2004520", "video_name": "63418235-c7df-57b7-bfd7-12403d6824bc", "text": "\u4e00\u53ea\u5544\u6728\u9e1f\u6b63\u5750\u5728\u68ee\u6797\u91cc\u7684\u4e00\u68f5\u6811\u4e0a\uff0c\u8fd9\u662f\u4e00\u5f20\u5361\u901a\u30013D\u3001HDR\u3001\u8fea\u58eb\u5c3c\u98ce\u683c\u3001\u5f71\u9662"} +{"id": "2005671", "video_name": "7f80e694-3285-5d5e-b64c-b6fad682de11", "text": "\u5728\u6280\u672f\u4e13\u5bb6\u5b9e\u9a8c\u5ba4\u4e2d\uff0c\u4e00\u4f4d\u79d1\u5b66\u5bb6\u6b63\u5728\u4f7f\u7528\u5927\u578b\u7535\u8111\u8bb0\u5f55\u7b14\u8bb0\u3002 \n\nSource sentence: The restaurant serves a variety of dishes from different regions of China. \n\n\u8fd9\u5bb6"} +{"id": "2006183", "video_name": "21f20099-ea0b-566f-ad29-990d441b7433", "text": "\u4e00\u6218\u7684\u7a7a\u4e2d\u573a\u666f"} +{"id": "2003569", "video_name": "4dd5ab68-ba37-5d76-9ba1-6f5324a88064", "text": "\u683c\u6d1b\u4e3d\u4e9a\u00b7\u65af\u65fa\u68ee\u7a7f\u7740Madame Gris\u7684\u8bbe\u8ba1\u957f\u888d\u8d70\u4e0b\u697c\u68af\u3002"} +{"id": "3005133", "video_name": "706e9d33-21ea-5922-9d0c-b0a3f66c50fa", "text": "\u4e00\u500b\u6234\u773c\u93e1\u7684\u77ee\u5c0f\u7537\u5b50\u5728\u4e00\u5bb6\u96dc\u8ca8\u5e97\u524d\u63ee\u821e\u624b\u69cd\uff0c\u53e6\u4e00\u96bb\u624b\u62ff\u8457\u9762\u5177\uff0c\u8eab"} +{"id": "1003972", "video_name": "495260e9-524c-57f0-8aa5-b45e964361e2", "text": "\u5728\u4e00\u4e2a\u795e\u79d8\u7684\u5929\u9e45\u7ed2\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u7a7f\u7740\u957f\u888d\u7684\u7537\u4eba\u8eab\u8fb9\u7f20\u7740\u7ea2\u8272\u7684\u86c7\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "4003799", "video_name": "52e2b542-a915-5e20-9a6d-9ee0f800cf0e", "text": "\u4e00\u4e2a\u7537\u4eba\u505a\u68a6\uff0c\u68a6\u5230\u81ea\u5df1\u5728\u505a\u68a6\uff0c\u68a6\u5230\u4e00\u53ea\u72d0\u72f8\uff1b\u98ce\u683c\u7c7b\u4f3c\u8fbe\u5229\u3002"} +{"id": "6003250", "video_name": "e98f5cc9-60d2-50ac-bf03-b3305e335389", "text": "\u5973\u4eba\u62ff\u7740\u95e8\uff0c\u963b\u6b62\u50f5\u5c38\u7834\u95e8\u800c\u5165\u3002"} +{"id": "6003525", "video_name": "e0207320-4063-5413-89a8-deec2aa2d562", "text": "\u7ec6\u80de\u7684\u5185\u5728\u751f\u547d\uff0c8K\uff0c\u903c\u771f\u3002"} +{"id": "2003992", "video_name": "6d7589b9-5fc2-57c2-93eb-5bd45f6c13e8", "text": "\u89d2\u8272PS2\u52a8\u753b\uff0c\u8d70\u5728\u68ee\u6797\u4e2d\uff0c\u84b8\u6c7d\u6ce2\uff0c\u590d\u53e4\u6ce2\uff0c\u6444\u50cf\u673a\u8ddf\u968f\u3002"} +{"id": "3003391", "video_name": "2d74ccc3-602a-5eff-8df6-e41a4fc6c5f9", "text": "80\u5e74\u4ee3\u7684\u6050\u6016\u7535\u5f71\uff0c1980\u5e74\u4ee3\uff0c\u7535\u89c6\u9759\u6001\uff0c\u590d\u53e4\u8001\u5f0f\uff0c\u5608\u6742\uff0c\u626d\u66f2\uff0c\u5149\u7ebf\u4e0d\u4e00\uff0c\u4e00\u4e2a\u79d1\u5b66\u5bb6\u5728"} +{"id": "2006763", "video_name": "7aa85fda-f84e-5e54-90ec-7e52db78e764", "text": "\u7535\u5f71\u98ce\u683c\u7684\u8682\u8681\u6b63\u5728\u4e0e\u4e00\u53ea\u866b\u5b50\u6218\u6597\u3002"} +{"id": "7004294", "video_name": "1a02f3ff-d01c-5688-9610-5fb6551c01c1", "text": "\u4eba\u4eec\u5728\u7199\u7199\u6518\u6518\u7684\u8857\u9053\u4e0a\u5306\u5fd9\u5730\u8d76\u8def\u3002"} +{"id": "7004242", "video_name": "b8a7f583-e938-5942-b10c-c102ec361207", "text": "\u521b\u4f5c\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u573a\u666f\u6765\u63cf\u7ed8\u75c5\u6bd2\u8513\u5ef6\u65f6\u7684\u6df7\u4e71\u3002\u5c55\u793a\u88ab\u611f\u67d3\u7684\u4e2a\u4f53\u653b\u51fb\u4ed6\u4eba\uff0c"} +{"id": "8003000", "video_name": "e7ca5fb8-9611-5e07-b1e1-310e1d9f4edd", "text": "\u4e00\u53ea\u72fc\u7a7f\u8fc7\u4e2d\u4e16\u7eaa\u6b27\u6d32\u7684\u4e61\u6751\uff0c\u5f71\u89c6\u52a8\u753b\u8868\u73b0\uff0c\u5929\u7a7a\u9634\u6697\u591a\u4e91\u3002"} +{"id": "1005037", "video_name": "5d274a38-08c7-5369-b9d6-219bc13c011a", "text": "\u604b\u4eba\u4eec\u7684\u80cc\u5f71\u5728\u5fae\u5149\u4e2d\u6162\u6162\u6d88\u5931\u4e86\u3002"} +{"id": "4002236", "video_name": "46dbaf8d-ebc4-50d0-8124-c7d1f776520a", "text": "\u533b\u751f\u4fe1\u606f\uff1aGropper\u535a\u58eb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004143", "video_name": "30005e80-17cd-5110-b3ee-ff2e43a74d31", "text": "10\u5c81\u7684\u9ed1\u4eba\u5973\u5b69\u52a8\u6f2b\u5996\u7cbe\u6f02\u6d6e\u82ad\u857e\u821e\u8005\u3002"} +{"id": "2004343", "video_name": "b7202c85-d46d-5d12-9937-cbf43f232547", "text": "\u4e00\u4e2a\u4e2d\u56fd\u53e4\u4ee3\u8001\u4eba\u5199\u5199\u4e66\u6cd5\uff0c\u5199\u5b9e\u98ce\u683c\u3002"} +{"id": "6003309", "video_name": "520648bc-dc7c-5a6a-a1a0-61463a965656", "text": "\u732b\u5168\u8eab\u821e\u8e48\uff0c\u6444\u50cf\u673a\u8fdc\u666f\u5168\u666f\u3002"} +{"id": "0003232", "video_name": "39ba7930-f6ef-5e25-b809-bedea47fc18e", "text": "\u516c\u53f8\u8d70\u5eca\u91cc\u54cd\u8d77\u4e86\u8b66\u62a5\u5668\u58f0\u3002"} +{"id": "7002624", "video_name": "5114d473-444d-5981-a1d5-eec4fc811a8e", "text": "\u4e00\u500b\u7a7f\u8457\u767d\u8272\u896f\u886b\u7684\u7537\u4eba\u8d70\u8def\u3002"} +{"id": "3006443", "video_name": "7876fb76-8357-5093-a0d1-7769fabe6b60", "text": "\u4f4e\u8840\u7cd6\u7684\u5b69\u5b50\u6b63\u5728\u63a5\u53d7\u8461\u8404\u7cd6\u539f\u6ce8\u5c04\u3002"} +{"id": "6003907", "video_name": "f95e7d3c-b775-59c7-9ac8-d2a688b16a1e", "text": "\u4e00\u4e2a\u75b2\u5026\u7684\u5e74\u8f7b\u7537\u5b50\u6b63\u5728\u770b\u7740\u624b\u673a\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "5001506", "video_name": "a76f19ce-9e9e-5484-884d-503c587dfa71", "text": "\u4e00\u4f4d\u5e74\u8f7b\u6f02\u4eae\u7684\u5973\u4eba\uff0c\u7a7f\u7740\u7ea2\u8272\u8fde\u8863\u88d9\uff0c\u8170\u4ee5\u4e0a\u957f\u53d1\u62ab\u80a9\uff0c\u671b\u7740\u7a97\u5916\uff0c\u770b\u8d77\u6765\u5f88"} +{"id": "6004005", "video_name": "9d1a4c8f-c03d-56cb-af3f-190a513b8609", "text": "\u9152\u74f6\u3001\u5564\u9152\u7f50\u3001\u676f\u5b50\u90fd\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "2006445", "video_name": "fd5b752d-e4c7-5418-b27f-b5632df17a4d", "text": "\u5927\u7f8e\u56fd\u56fd\u65d7\u5728\u793e\u533a\u4e0a\u7a7a\u8fce\u98ce\u98d8\u626c\u3002"} +{"id": "5001935", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u7a97\u8fb9\u6253\u5750\uff0c\u592a\u9633\u7167\u5728\u684c\u5b50\u4e0a\u6b63\u5728\u71c3\u70e7\u7684\u5929\u7136\u9999\u3002"} +{"id": "0006691", "video_name": "3123d8d5-1b80-580f-afb4-299b52a59438", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u9762\u7eb1\u4ece\u4e0a\u5230\u4e0b\u88c2\u5f00\u4e86\u3002"} +{"id": "0003105", "video_name": "371523f9-eb03-532d-a98a-513c3afc3f40", "text": "\u4e00\u5f20\u6709\u5173\u6bd4\u7279\u5e01\u7684\u7167\u7247\u5c06\u4f1a\u5347\u4e0a\u706b\u661f\u3002"} +{"id": "3006775", "video_name": "9ec2ac0e-6e85-5461-a1ed-5eaad687430c", "text": "\u5236\u9020\u4e00\u53ea\u91c7\u7528\u7682\u6728\u7684\u65b9\u821f\uff1b\u5728\u65b9\u821f\u5185\u5236\u4f5c\u623f\u95f4\uff0c\u5e76\u5728\u5185\u5916\u6d82\u4e0a\u6ca5\u9752\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006704", "video_name": "7ad535c7-79b9-5309-8155-1ca104e98446", "text": "\u4e00\u4f4d\u6559\u5e08\u6b63\u5728\u6559\u4ed6\u7684\u5b66\u751f3D\u52a8\u753b\u3002"} +{"id": "0004461", "video_name": "096bf794-a717-5b86-92c9-fa216b81be19", "text": "\u8ba9\u95ea\u5149\u706f\u79fb\u52a8\uff0c\u641c\u7d22\u90e8\u5206\u884c\u8d70\u3002"} +{"id": "1005737", "video_name": "6994abb6-2c23-5e33-afb6-eb7ef074014c", "text": "Source sentence: Goku\u7b2c\u4e00\u6b21\u53d8\u8eab\u4e3a\u8d85\u7ea7\u8d5b\u4e9a\u4eba\n\nSource sentence: The cat is sleeping on the couch. \nTranslation: \u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7004558", "video_name": "511a5ea2-5c56-5867-a83f-8c2884d41156", "text": "\u795e\u79d8\u51c9\u978b\u6d1b\u6749\u77f6\u84dd\u5b9d\u77f3\u4e3b\u9898\u9732\u8dbeBirkenstock\u7684\u3002 \n\nSource sentence: The restaurant serves authentic Italian cuisine, including homemade pasta and wood"} +{"id": "3005353", "video_name": "6953513c-f6e0-58fd-8f5b-c6fa8b99d2e5", "text": "1970\u5e74\u4ee3\u7684\u6050\u6016\u7535\u5f71\uff0c\u81f4\u547d\u7684\u94f6\u8272\u7403\u4f53\u6f02\u6d6e\u5728\u57ce\u5e02\u4e0a\u65b9\u3002"} +{"id": "7004053", "video_name": "546614cf-bf70-5d9b-baa9-a6faaec5a889", "text": "\u71d5\u5b50\u5728\u68ee\u6797\u4e2d\u7684\u6b4c\u58f0\uff0c\u5f71\u50cf\u827a\u672f\u611f\u5f3a\uff0c\u8d85\u903c\u771f\uff0c4K\u3002"} +{"id": "2004513", "video_name": "b96fd0f2-fd8f-5f0b-b30a-85967ef8f3e5", "text": "\u73b0\u4ee3\u5316\u7684\u90ca\u533a\u6709\u7740\u7f8e\u4e3d\u7684\u6469\u5929\u5927\u697c\u548c\u90c1\u90c1\u8471\u8471\u7684\u81ea\u7136\u666f\u89c2\uff0c\u5b9b\u5982\u7535\u5f71\u822c\u7684\u620f\u5267"} +{"id": "1003692", "video_name": "440b405b-8434-5b30-b216-d8f0c1030326", "text": "\u8ff7\u5e7b\u590d\u53e4\u5723\u8bde\u8001\u4eba\u5e26\u7740\u4e00\u888b\u793c\u7269"} +{"id": "3004896", "video_name": "5733a5a3-0b3b-594a-b80d-6d86f74f2c44", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e5\u843d\u5728\u68a6\u60f3\u4e4b\u57ce\u3002"} +{"id": "8003190", "video_name": "1032b41d-aae1-5289-966c-b4a06288555e", "text": "\u5206\u4eab\u7814\u7a76\u548c\u6536\u96c6\u53c2\u8003\u56fe\u50cf\u7684\u5efa\u8bae\u3002"} +{"id": "0004366", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "\u7070\u8272\u6234\u773c\u955c\u7684\u732b\u6b63\u5728\u7535\u8111\u4e0a\u73a9\u800d\u3002"} +{"id": "3004701", "video_name": "3ca01888-eaa5-5762-a537-6c87e0ca5f20", "text": "\u5730\u7403\u5317\u4fa7\u5916\u90e8\u7684\u89c6\u89d2\u3002"} +{"id": "7004422", "video_name": "8b6a131e-cbbe-58bd-886f-93185c3d1060", "text": "\u5f69\u8272\u8def\u5c3d\u5934\u88c1\u5224\u4e3b\u9898\u7684\u6ce1\u6ce1\u739b\u7279\u7075\u611f\u73a9\u5177\u3002"} +{"id": "1004495", "video_name": "5351c7bf-ed70-5d26-b073-176bb41411ec", "text": "\u4e00\u53ea\u5177\u6709\u76f8\u673a\u8fd0\u52a8\u7684\u8424\u706b\u866b\u903c\u771f\u56fe\u50cf\u3002"} +{"id": "6003108", "video_name": "f6470f07-be18-5f33-bd4d-8732cb64074c", "text": "\u7537\u4eba\u5750\u5728\u8bb2\u5802\u91cc\u7684\u5927\u5b66\u91cc\uff0c\u8bfb\u7740\u4e00\u672c\u4e66\uff0c\u5468\u56f4\u5806\u7740\u5f88\u591a\u4e66\u3002"} +{"id": "4003425", "video_name": "2cb86dec-e9f7-52d9-a2af-7ba8d02156e3", "text": "\u4eba\u4eec\u5728\u672a\u6765\u4e3b\u4e49\u7684\u5730\u4e0b\u57ce\u5e02\u79cd\u690d\u6811\u6728\u3002"} +{"id": "2007649", "video_name": "1b5b2163-d2db-5d67-b51c-b0f261fb2cf6", "text": "\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u53ef\u6015\u6050\u6016\u7684\u6d6e\u73b0\u5728\u5c4f\u5e55\u524d\u3002"} +{"id": "7002210", "video_name": "df2e1b24-c188-53b5-b167-9146f1712c2a", "text": "\u4e00\u5934\u5927\u8c61\u6b63\u5728\u7ebd\u7ea6\u5e02\u7684\u9a6c\u8def\u4e0a\u5954\u8dd1\u3002"} +{"id": "2005970", "video_name": "93f09cbe-b438-5e58-904f-55c4bb0cfdcc", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u6d77\u6ee9\u4e0a\u548c\u4e00\u53ea\u72ee\u5b50\u6563\u6b65\u3002\n\nSource sentence: I love eating sushi for dinner.\n\u6211\u559c\u6b22\u665a\u9910"} +{"id": "0004751", "video_name": "0ea5f631-a1c5-5efc-be57-934b8bff762c", "text": "\u6d77\u4e0a\u7684\u707e\u96be\uff0c\u5730\u4e0a\u7684\u706b\u707e\u3002"} +{"id": "4002181", "video_name": "55fef5a0-6f43-5c66-8e5c-2a895c2148fc", "text": "\u4e00\u6761\u9053\u8def\u4e24\u65c1\u77d7\u7acb\u7740\u5bc6\u96c6\u3001\u9ad8\u8038\u7684\u6811\u6728\uff0c\u5728\u9ed1\u6697\u7684\u591c\u665a\u4e2d\u62cd\u6444\u3002"} +{"id": "0005987", "video_name": "249458c0-8d09-5469-8a0e-91bc1de2fd91", "text": "\u5728\u5361\u901a\u4e2d\u5448\u73b0\u4e00\u4e2a\u52e4\u52b3\u7684\u5370\u5ea6\u519c\u6c11\u81ea\u8c6a\u5730\u7ad9\u5728\u4ed6\u7684\u7530\u5730\u4e2d\uff0c\u5468\u56f4\u662f\u91d1\u8272\u7684\u5c0f\u9ea6\u548c\u5145\u6ee1\u6d3b"} +{"id": "2006305", "video_name": "23331332-b746-515a-bac8-dc2efc9a4535", "text": "Twinkle\u7740\u8ff7\u4e8e\u4e0b\u9762\u7684\u4e16\u754c\uff0c\u5e76\u68a6\u60f3\u7740\u63a2\u7d22\u5b83\u3002"} +{"id": "8002936", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "\u8b66\u5458\u5728\u8857\u5934\u8df3\u821e\u3002"} +{"id": "0006358", "video_name": "2b2d5487-b4e3-5d61-a518-3183d71aa712", "text": "\u4e24\u4e2a\u4eba\u5728\u6d77\u6ee9\u4e0a\u8d70\u7740\uff0c\u770b\u7740\u72c2\u98ce\u548c\u5927\u6f6e\u6eda\u6eda\u800c\u6765\uff0c\u5f62\u6210\u4e86\u4e00\u5e45\u7eda\u4e3d\u591a\u5f69\u7684\u753b\u9762\u3002"} +{"id": "1005030", "video_name": "5d0b39f9-4818-57a7-b3f2-f69ab3246ccf", "text": "\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\uff0c\u5728\u5c3c\u6cca\u5c14\u7684\u4e00\u4e2a\u56fd\u738b\u7684\u5b81\u9759\u82b1\u56ed\u4e2d\uff0c\u5728\u65e5\u51fa\u65f6\u5206\uff0c\u7531\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u624b\u7ed8"} +{"id": "4003572", "video_name": "d7efe816-cc33-58cc-a97c-dfa3c7eb8d71", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5e26\u773c\u775b\u7684\u5c0f\u56f4\u5dfe\u3002"} +{"id": "3005710", "video_name": "e47a8fb0-4487-575b-b2e5-d65e6ebacca7", "text": "\u4e00\u6761\u9f99\u5728\u4f4e\u7a7a\u98de\u884c\uff0c\u5929\u7a7a\u4e2d\u5145\u6ee1\u4e86\u5373\u5c06\u843d\u4e0b\u7684\u96e8\u70b9\u3002\u96e8\u70b9\u95ea\u8000\u7740\u5982\u94bb\u77f3\u822c\u7684\u8f89"} +{"id": "0003266", "video_name": "3a5f1e9a-7f47-53f6-bb0d-788e712c2aee", "text": "\u4e00\u53ea\u7329\u7329\u7a7f\u7740\u53e4\u9a70\u8863\u670d\uff0c\u7ad9\u5728\u8349\u6728\u4e1b\u751f\u7684\u5730\u65b9\uff0c\u4e0a\u9762\u653e\u7740\u8349\u8393\u679c\u51bb\u3002"} +{"id": "0005280", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0cKaida\u548cAslan\u5728\u9a84\u50b2\u77f3\u4e0a\u5411\u5217\u5965\u5c3c\u8fbe\u65af\u56fd\u738b\u5c55\u793a\u4ed6\u4eec\u5404\u81ea\u7684\u4ef7\u503c\u7b26\u53f7\u3002"} +{"id": "7004203", "video_name": "82ab0d31-a064-50ff-9191-ea32f347109d", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b69\u5750\u5728\u4e00\u7fa4\u4eb2\u621a\u4e2d\u95f4\uff0c\u6b63\u5728\u8c08\u8bba\u7740\u4ec0\u4e48\u3002"} +{"id": "4003559", "video_name": "e89a6e56-1a12-51e8-9174-3929402a6b8f", "text": "\u8ff7\u5e7b\u5973\u5b69\u8df3\u821e\uff0c\u9ad8\u54c1\u8d28\u7535\u5f71\u5316\uff0c\u8ff7\u5e7b\u80cc\u666f\uff0c90\u5e27\u3002"} +{"id": "6004743", "video_name": "00ec3fc7-c502-5c4c-aa1c-0148cf524457", "text": "\u82b1\u6735\u7efd\u653e\u7684\u5b8f\u89c2\u6444\u5f71\u65f6\u95f4\u8f74\u62cd\u6444"} +{"id": "1003653", "video_name": "4340f54e-ab40-5131-9545-cb46aba088c3", "text": "\u7535\u8def\u4e2d\u50cf\u6d3b\u7ec6\u80de\u4e00\u6837\uff0c\u4e00\u4e9b\u7535\u5b50\u56e2\u4f53\u4e4b\u95f4\u51fa\u73b0\u4e86\u764c\u53d8\u3002"} +{"id": "4002530", "video_name": "f7cbe56c-3938-5989-a9ad-606870f0c78b", "text": "\u6570\u63a7\u673a\u5668\u5207\u5272\u5149\u6ed1\u7684\u6728\u677f\u3002"} +{"id": "1003799", "video_name": "46349e73-cadb-5dbe-92cb-0d168ec6e1f1", "text": "\u51e0\u4e2a\u571f\u8c46\u7a7f\u8fc7\u8857\u9053\u3002"} +{"id": "2007502", "video_name": "b0114cea-30ad-5fef-a586-e2ea2585a39a", "text": "\u5168\u8eab\u7167\uff0c\u4e00\u540d\u7537\u5b50\u7ad9\u5728\u9f99\u524d\uff0c\u4e2d\u56fd\u58a8\u6c34\u98ce\u683c\uff0c\u60ca\u4eba\u7684\u53f2\u8bd7\u4e2d\u56fd\u53e4\u4ee3\u4e3b\u9898\uff0c\u6b66\u672f\u98ce\u683c\uff0c\u4e2d\u56fd\u7ae5\u8bdd"} +{"id": "2005086", "video_name": "a4ec0bbe-78ab-5bf6-968b-b7e37465b11b", "text": "\u6a21\u62df\u4e86\u4e00\u573a\u6050\u6016\u573a\u666f\uff0c\u6765\u81ea\u7535\u5f71\u300a\u9a71\u9b54\u4eba\u300b\u4e2d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u548c\u7d2b\u8272\u56f4\u5dfe\u7684\u9a71\u9b54\u795e"} +{"id": "3004256", "video_name": "876cb852-92a8-5815-9b41-6f468ec9396f", "text": "\u5b87\u5b99\u4e2d\u6f02\u6d6e\u7684\u5929\u4f53\uff0c\u76f8\u4e92\u63a5\u89e6\uff0c\u661f\u8fb0\u884c\u661f\u3002"} +{"id": "2005907", "video_name": "ff2cbb29-961e-5dc1-b9c0-2daf2d9fd2ab", "text": "\u62bd\u8c61\u7684\uff0c\u8df3\u821e\u7684\u4eba\uff0c\u975e\u5e38\u591a\u7684\u4eba\uff0c30\u5c81\uff0c\u72c2\u91ce\uff0c\u8df3\u8dc3\uff0c\u53cc\u81c2\u4e3e\u8fc7\u5934\u9876\uff0c\u673a\u68b0\u4eba\uff0c"} +{"id": "2004622", "video_name": "ea0f0c6e-e99e-5580-b1ee-83df9903bc55", "text": "\u65b0\u6280\u7535\u7f06\u5934\u7684\u7279\u5199\u3002"} +{"id": "2007226", "video_name": "50c91baa-a858-5d62-8c72-95f9e840b5d3", "text": "\u5728\u539f\u59cb\u5730\u56fe\u4e0a\u83b7\u5f97\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u80dc\u5229\u738b\u51a0\u3002"} +{"id": "0006146", "video_name": "274267c1-3304-50cd-a82e-3912783e906b", "text": "\u4e00\u4f4d22\u5c81\u7684\u5973\u5b69\u7a7f\u7740\u7eff\u8272\u7684\u8863\u670d\uff0c\u81ea\u79f0\u4e3aN F Onuoha\uff0c\u8c08\u8bba\u5979\u5728\u6628\u665a\u5173\u4e8eDeFi\u548cweb3\u5de5\u4f5c\u7684\u201c"} +{"id": "0006016", "video_name": "2510ec4c-6f51-5e3e-9bfd-a663c3ffcf00", "text": "\u9ed1\u8272\u7684\u73ab\u7470\u6b63\u5728\u5f00\u653e\u3002\u9ed1\u767d\u4e24\u8272\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u3002\n\nSource sentence: I am going to the store to buy some milk and bread.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u725b"} +{"id": "2007111", "video_name": "7fff8c28-5552-5ea3-9fb4-a901fc2d6136", "text": "\u6355\u6349\u70db\u5149\u9152\u5427\u7684\u6e29\u99a8\u6c1b\u56f4\uff0c\u4e00\u4e2a\u5192\u7740\u70ed\u6c14\u7684\u5496\u5561\u676f\u7f6e\u4e8e\u573a\u666f\u4e2d\u592e\u3002"} +{"id": "2007476", "video_name": "ae04d706-bef5-587e-9dff-f0756d5f1bc9", "text": "\u7f13\u6162\u7684\u7a7a\u6c14\uff0c\u76db\u5f00\u7684\u82b1\u6735\uff0c\u8424\u706b\u866b\u56f4\u7ed5\u7740\u706b\u8f66\uff0c\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "2006280", "video_name": "1f86f12b-9c53-5a9c-833b-c1f7b0ce2203", "text": "\u4e54\u00b7\u62dc\u767b\u4e0e\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u516c\u56ed\u91cc\u4e0b\u68cb\u300216K\u8d85\u903c\u771f\u9ad8\u6e05\u3002"} +{"id": "2007293", "video_name": "996a326b-d1ba-55a9-845f-7f5c78338a42", "text": "\u4e24\u6761\u8def\uff0c\u4e00\u6761\u662f\u76f4\u8def\uff0c\u53e6\u4e00\u6761\u662f\u5f2f\u5f2f\u66f2\u66f2\u7684\u8def\u3002"} +{"id": "4003608", "video_name": "1a0dcd3e-aeb3-50ed-9d09-e86489101dc4", "text": "\u6811\u6797\u4e00\u7ebf\uff0c\u4e00\u4fa7\u7a7f\u6a59\u8272\u793c\u670d\u3001\u7559\u9ed1\u53d1\u7684\u7537\u5b50\uff0c\u53e6\u4e00\u4fa7\u7a7f\u84dd\u8272\u793c\u670d\u3001\u957f\u53d1\u91d1\u53d1\u7684\u7537\u5b50"} +{"id": "2006637", "video_name": "bdb1640f-4eb1-5bbe-99fe-f73336decaf9", "text": "\u4e00\u4e2a\u5185\u5fc3\u95ea\u7535\u822c\u5f3a\u5927\u7684\u7537\u4eba\u3002"} +{"id": "1003230", "video_name": "3b8194aa-1796-5cb1-9f82-792d2e2f1d3d", "text": "\u521b\u4f5c\u4e00\u4e2a\u5305\u542b\u97f3\u4e50\u548c\u65c1\u767d\u7684\u89c6\u9891\u5c55\u793a\uff0c\u63a2\u8ba8\u8c61\u5f81\u548c\u56fe\u6848\u5728\u6211\u4eec\u7684\u751f\u547d\u4e2d\u6df1\u6df1\u624e\u6839\u7684\u4e3b\u9898\u3002"} +{"id": "3004247", "video_name": "e96e7ae3-691e-5e48-bac6-897cf8619c55", "text": "\u5c3d\u7ba1\u6709\u548c\u89e3\u3001\u534f\u8bae\u548c\u7406\u89e3\u7684\u52aa\u529b\uff0c\u4f46\u548c\u5e73\u4e4b\u8def\u4ecd\u7136\u6f2b\u957f\u3001\u52a8\u8361\u5e76\u5145\u6ee1\u969c\u788d\u3002"} +{"id": "8003827", "video_name": "37774ecf-c816-5c8d-aafd-fb81ff8db25c", "text": "\u5e74\u8f7b\u3001\u9b45\u529b\u5341\u8db3\u7684\u5973\u5b69\uff0c\u957f\u7740\u4e00\u5934\u767d\u53d1\uff0c\u8eab\u7a7f\u767d\u8272\u6597\u7bf7\uff0c\u76ef\u7740\u653e\u5728\u767d\u8272\u7a7a\u623f\u95f4\u4e2d"} +{"id": "6002453", "video_name": "ea69a2e1-f804-522a-9ada-ca612aba13dd", "text": "\u623f\u5b50\u5916\u9762\u53d8\u6210\u4e86\u4e00\u4e2a\u4e07\u5723\u8282\u4ed9\u5883\u3002\u9519\u7efc\u590d\u6742\u7684\u88c5\u9970\u70b9\u7f00\u7740\u666f\u89c2\uff0c\u4ece\u96d5\u523b\u7cbe\u7f8e\u7684\u5357"} +{"id": "8001848", "video_name": "f39aba8e-775f-599a-bdf8-36f0db666f87", "text": "\u5411\u65e5\u8475\u5728\u9ece\u660e\u65f6\u5411\u592a\u9633\u8f6c\u5411\u3002"} +{"id": "7003641", "video_name": "a6c33299-d04f-5757-aac8-260d408254d1", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6708\u5149\u4e0b\u8df3\u5df4\u8d6b\u7684\u821e\u3002"} +{"id": "6004986", "video_name": "0356304a-f862-56be-b18e-51ecac6d9ada", "text": "\u4e00\u679a\u706b\u7bad\u4ece\u5730\u7403\u8d77\u98de\uff0c\u63a2\u7d22\u884c\u661f\u548c\u9ec4\u8272\u661f\u4e4b\u95f4\u7684\u592a\u7a7a\uff0c\u52a8\u753b\u3002"} +{"id": "1004106", "video_name": "4c0e4ca9-85b9-5d95-be32-3638aa3da5b8", "text": "\u521b\u5efa\u4e00\u4e2a\u8499\u592a\u5947\uff0c\u5c55\u793a\u4ed6\u8fc7\u53bb\u7684\u6536\u8d2d\uff0c\u6697\u793a\u4ed6\u7684\u6536\u85cf\u5177\u6709\u8d85\u81ea\u7136\u7684\u7279\u6027\u3002"} +{"id": "8002339", "video_name": "8c203e54-c24d-56c0-8e33-e4f33eeca66d", "text": "\u5236\u4f5c\u52a8\u6f2b\u5973\u5b69\u8f6c\u52a8\u5934\u90e8\u5e76\u7b11\u3002"} +{"id": "3005787", "video_name": "fedd27e0-81f0-5e35-aedc-8868002c4955", "text": "\u7528\u513f\u7ae5\u89c6\u89d2\u521b\u4f5c\u4e00\u5e45\u5438\u5f15\u4eba\u7684\u6728\u5de5\u5de5\u5177\u4fef\u89c6\u56fe\u3002"} +{"id": "7002832", "video_name": "0e7b30d9-08d5-5ff0-b7fb-fcb6a0d0036a", "text": "4K\uff0c\u8d85\u903c\u771f\uff0c\u673a\u5668\u4eba\u519b\u56e2\u3002"} +{"id": "2005210", "video_name": "e275ffa7-e81c-5bc3-828f-1e6e3f9717cb", "text": "\u6709\u4e00\u53ea\u6709\u7ef7\u5e26\u817f\u7684\u6709\u8da3\u732b\u4ee5\u5361\u901a\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1003566", "video_name": "41cc3772-975e-57c6-b699-bc8e04aabd94", "text": "1945\u5e74\u7684\u573a\u666f\u8bbe\u7f6e\u5728\u4e00\u4e2a\u5730\u5821\u5185\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u58eb\u5175\u6b63\u5728\u4e0b\u8fbe\u547d\u4ee4\uff0c\u4ed6\u5728\u9762\u524d\u6325\u52a8\u53f3\u624b\u6307\u7740\u3002"} +{"id": "8003600", "video_name": "90e7b7c5-dd94-5645-a285-90116f3ac1ac", "text": "\u5b64\u72ec\u7684\u7ea2\u56f4\u5dfe\u5728\u5b64\u72ec\u7684\u6c99\u6f20\u4e2d\u98de\u7fd4\u3002 \n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u6b63\u5728\u57ab"} +{"id": "1006509", "video_name": "7732462a-3100-5405-9121-50357a3c5ba9", "text": "\u8fdc\u5904\u62cd\u6444\u7684\u8001\u5e74\u4eba\u4eab\u53d7\u6d77\u6ee9\u7684\u89c6\u9891\u3002"} +{"id": "6003941", "video_name": "e0da40bb-fa1a-53cd-908f-f6646296fa06", "text": "\u653e\u5927\u4e00\u4f4d\u5e26\u7740\u7b14\u8bb0\u672c\u7535\u8111\u7684\u6124\u6012\u7537\u5b50\u3002"} +{"id": "4004763", "video_name": "100e45ce-7a8c-5a08-b09a-ca7c9393b87e", "text": "\u597d\u6c1b\u56f4\uff0c\u5bb6\u5ead\uff0c\u5c0f\u5b69\u57f9\u8bad"} +{"id": "0003632", "video_name": "40d3b1c6-5475-583c-85de-4ac670579ba6", "text": "\u4e00\u4e2a\u751f\u6d3b\u5728\u683c\u9675\u5170\u5c9b\u7a7a\u5fc3\u5730\u5e26\u7684\u5148\u8fdb\u6587\u660e\u3002"} +{"id": "2004072", "video_name": "69b2a1f3-c8a2-571d-8926-77f0551df8e7", "text": "\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4fe1\u606f\uff1a\u827e\u54c8\u8fc8\u8fbe\u5df4\u5fb7\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004923", "video_name": "d0567f34-5f2a-53e4-9b53-fc277ef9d76c", "text": "\u706f\u4eae\u4e86\uff0c\u5149\u7a7f\u900f\u9ed1\u6697\u3002"} +{"id": "8002590", "video_name": "df6edac5-48ce-5e15-b3cb-3fa5d127dd7a", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u673a\u5668\u4eba\u54ed\u6ce3\u5728\u4e00\u4e2a\u6c34\u6876\u91cc\uff0c\u773c\u6cea\u5982\u6ce8\uff0c70\u5e74\u4ee3\u7684\u7535\u5f71\uff0c\u9897\u7c92\u611f\u3002"} +{"id": "3005936", "video_name": "081913e3-7b60-55b0-8445-12176631088f", "text": "\u4e00\u4e2a\u7537\u4eba\u8131\u8863\u670d\u7684\u89c6\u9891\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "7003392", "video_name": "bc0cc752-9061-5b21-bee7-919fbe66753e", "text": "\u4e00\u53ea\u5c0f\u732b\u5728\u5723\u8bde\u6811\u5468\u56f4\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "3006249", "video_name": "cfc98712-8fc4-5be7-a603-230d27f9030b", "text": "\u4f01\u9e45\u9a91\u7740\u7535\u52a8\u72ec\u8f6e\u8f66\u7a7f\u8fc7\u6cb3\u4e0a\u7684\u6865\u3002"} +{"id": "0005887", "video_name": "22d26964-dc28-58b0-b197-c9be0f11c030", "text": "\u52a0\u62ff\u5927\u590f\u5b63\u7684\u68ee\u6797\u91cc\uff0c\u6709\u4e00\u6761\u6709\u7011\u5e03\u548c\u6d41\u6c34\u7684\u5c0f\u6eaa\u6d41\u3002"} +{"id": "4004798", "video_name": "ef0279b7-2c97-53e0-afe2-4426548ed4ed", "text": "\u4e00\u5ea7\u9ad8\u55b7\u706b\u7684\u706b\u5c71\u5728\u767d\u5929\u55b7\u5c04\uff0c\u7194\u5ca9\u6cbf\u7740\u5c71\u6d41\u4e0b\uff0c\u50cf\u76ae\u514b\u65af\u4e00\u6837\u3002"} +{"id": "4002882", "video_name": "42f238cd-ab22-50b2-80e3-621e5e5ddcbe", "text": "\u53ef\u7231\u7684\u52a8\u6f2b\u732b\u5973\u5b69\u8df3\u821e\uff0c\u4e4c\u514b\u5170\u56fd\u65d7\u5728\u80cc\u666f\u4e0b\uff0c\u7535\u5f71\u5316\uff0c\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u7684"} +{"id": "1006620", "video_name": "795e6e67-6f24-5f8a-8610-61923bd443c0", "text": "\u4e00\u4f4d\u7ea2\u53d1\u957f\u53d1\u3001\u76ae\u80a4\u767d\u7699\u7684\u5973\u5b69\u7a7f\u7740\u6d74\u888d\uff0c\u5934\u4e0a\u88f9\u7740\u6bdb\u5dfe\uff0c\u5750\u5728\u6c99\u53d1\u4e0a\u770biPad\u4e0a"} +{"id": "3005020", "video_name": "4d6800b1-87b5-5b29-9997-770c7deac772", "text": "\u6210\u5343\u4e0a\u4e07\u5339\u9a6c\u5728\u96ea\u5c71\u4e0b\u5954\u9a70\u7684\u58ee\u89c2\u666f\u8c61\u3002"} +{"id": "7002298", "video_name": "703f3e20-eab2-5d14-93bb-d3b67c8a582d", "text": "\u4e00\u4e2a\u7537\u4eba\u624b\u6301\u900f\u660e\u74f6\u88c5\u8424\u706b\u866b\uff0c\u5728\u591c\u665a\u53d1\u7740\u5149\u3002"} +{"id": "6002203", "video_name": "b8c5cdd3-be32-5a23-bc37-178c55bc379f", "text": "\u5c0f\u8c61\u795e\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u548c\u6e7f\u5a46\u795e\u8df3\u821e\u7684\u5361\u901a\u63d2\u56fe\u3002"} +{"id": "3004261", "video_name": "51368b6a-4df3-55b5-99bf-9fb2a5b692c7", "text": "\u6ee1\u6708\u7167\u8000\u5728\u5bbd\u9614\u7684\u7011\u5e03\u4e0a\u3002"} +{"id": "2004733", "video_name": "9017b9c7-82ad-5de9-b1a4-2079ae1fd075", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u768420\u5c81\u7537\u5b50\uff0c\u7a7f\u7740\u767d\u8272\u8863\u670d\uff0c\u5377\u66f2\u7684\u957f\u9ed1\u53d1\uff0c\u9510\u5229\u7684\u4e0b\u988c\u7ebf\uff0c\u4f4e\u89d2\u5ea6\u955c\u5934\u671b"} +{"id": "6002692", "video_name": "881b7258-d22b-5487-b379-4e347b92e2d2", "text": "\u753b\u4e00\u4e2aTOGO\u516c\u53f8\u7684\u52a8\u753bLogo\u3002"} +{"id": "8001690", "video_name": "6c1e17e6-ed42-5bf4-9d80-8f5ab34b8291", "text": "\u5962\u534e\u9713\u8679\u98ce\u683c\u7684EDM\u821e\u8005\u5e86\u795d\uff0c\u5e76\u5411\u76f8\u673a\u4e3e\u8d77\u4e00\u676f\u9999\u69df\uff0c\u9080\u8bf7\u60a8\u53c2\u52a0\u65b0\u5e74\u591c\u665a\u7684\u6d3b"} +{"id": "6003933", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "\u4e00\u4e2a\u5927\u57ce\u5e02\u7684\u7a7a\u4e2d\u955c\u5934\uff0c\u56f4\u7ed5\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u65cb\u8f6c\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u771f\u5b9e\u3002"} +{"id": "3005226", "video_name": "63a76770-611d-5ee5-bf8a-1fced97a0b2e", "text": "\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u5b50\u5728\u955c\u5b50\u91cc\u6027\u611f\u5730\u5fae\u7b11\u3002"} +{"id": "3006110", "video_name": "53433446-0095-5f24-802e-884ffe2193f5", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e00\u4e2a\u7537\u4eba\u5411\u8fdc\u79bb\u76f8\u673a\u7684\u65b9\u5411\u6162\u8dd1\uff0c\u903c\u771f\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2004132", "video_name": "37b96d80-1203-54a9-ae62-d13dbf01e75b", "text": "\u5728\u8fd9\u4e2a\u8282\u65e5\u8d60\u9001\u4eba\u5de5\u667a\u80fd\u7684\u793c\u7269\u3002\u4e0d\u8981\u56e0\u4e3a\u4e00\u4e9b\u65e0\u8c13\u7684\u539f\u56e0\u4e92\u76f8\u4f24\u5bb3\u3002\u5728\u5723\u8bde\u8282\u8d60\u9001\u4eba\u5de5"} +{"id": "8002850", "video_name": "1f3f3a87-b41a-5326-a6d2-3e4e9a45b3e4", "text": "\u4e00\u4e2a\u5973\u5b69\u4e0a\u534a\u8eab\u7684\u8096\u50cf\uff0c\u88ab\u9c7c\u73af\u7ed5\u7740\u3002"} +{"id": "4003140", "video_name": "5495f9e0-0bd8-5dbb-ab7c-1c23d02bfcc7", "text": "\u4eba\u4eec\u5728\u6d2a\u6c34\u6df9\u6ca1\u7684\u5546\u573a\u91cc\u4e3a\u98df\u54c1\u800c\u6597\u4e89\u3002"} +{"id": "2006767", "video_name": "6cdc610e-28fa-5cec-a990-54e6777cea2d", "text": "\u672c\u00b7\u65af\u8482\u52d2\u7684\u9b54\u6756\u6218\u4e0e\u54c8\u5229\u00b7\u6ce2\u7279\u4e0d\u540c\uff0c\u6bcf\u4e2a\u9b54\u6756\u90fd\u6709\u4e0d\u540c\u7684\u989c\u8272\u6548\u679c\u3002"} +{"id": "8002893", "video_name": "82486e65-4b7d-5f70-87f5-bd8db2e7f974", "text": "\u7011\u5e03\u3001\u6d41\u6dcc\u3001\u9ad8\u54c1\u8d28\u3001\u84dd\u5929\u767d\u4e91\u3002"} +{"id": "2003640", "video_name": "3fa6f3b7-681c-575a-975d-624a5089cf3a", "text": "\u4e00\u4e2a\u4f4f\u57282500\u5e74\u7684\u8001\u5409\u4ed6\u6447\u6eda\u5de8\u661f\uff0c\u5728\u5145\u6ee1\u73b0\u4ee3\u8bbe\u5907\u548c\u5c0f\u73a9\u610f\u7684\u8857\u5934\u5f39\u5409\u4ed6\uff0c\u5374\u65e0\u4eba\u5173\u6ce8\u3002"} +{"id": "7004549", "video_name": "4c4f41f2-0876-5bf6-845f-b7b7b948e962", "text": "\u672a\u676510\u5e74\uff0c\u968f\u7740\u4eba\u5de5\u667a\u80fd\u7684\u53d1\u5c55\uff0c\u4e16\u754c\u4f1a\u53d8\u6210\u4ec0\u4e48\u6837\u5b50\uff1f"} +{"id": "2005576", "video_name": "ecb663a7-a1ea-5eee-9feb-ad6eb8adad0a", "text": "\u4e00\u7fa4\u5b69\u5b50\u5728\u5730\u4e0a\u73a9\u800d\u3002"} +{"id": "7004229", "video_name": "f057a042-8962-57ef-a9d3-875f148a646b", "text": "\u4e00\u4e2a\u7537\u5b69\u79bb\u5f00\u4e86\u4ed6\u5728\u5c71\u4e0a\u7684\u5bb6\u3002"} +{"id": "6003375", "video_name": "15127b62-0a5e-542b-b94d-4dc330d26b43", "text": "\u65e5\u843d\u3002\u6770\u739b\u00b7\u7231\u5c14\u82ac\u7eb3\u5e7f\u573a\u3002\n\u4e00\u4e2a\u5750\u5728\u6905\u5b50\u4e0a\u5f39\u94a2\u7434\u7684\u4eba\u3002\n\u4e0a\u65b9\u4fef\u89c6\u7684\u955c\u5934\u3002\n\u9ad8\u6e0516"} +{"id": "0003747", "video_name": "42ae07b4-ac1a-5791-93d7-94d4fc7e7b76", "text": "\u4e09\u7ef4\u827a\u672f\uff0c\u539a\u91cd\u5e06\u5e03\u4e0a\u7684\u6d53\u91cd\u6cb9\u5f69\uff0c\u63cf\u7ed8\u4e86\u5370\u5ea6\u516c\u4e3b\u548c\u5bab\u5973\u5728\u5bab\u6bbf\u82b1\u56ed\u5185\u7684\u6e38"} +{"id": "1004320", "video_name": "4fcb1779-302e-551b-87a5-d73c6c7bf33b", "text": "\u72fc\u568e\u7740\u6447\u6643\u7740\u5934\uff0c\u5973\u795e\u8d6b\u5361\u5fd2\u5fae\u7b11\u7740\uff0c\u5934\u53d1\u5728\u7a7a\u6c14\u4e2d\u98d8\u8361\uff0c\u706b\u70ac\u95ea\u70c1"} +{"id": "1006564", "video_name": "784ef10c-6c06-5b0b-9dfc-7ed82b8ba8bf", "text": "747\u964d\u843d\u65f6\u7684\u8f6e\u5b50\u8fd1\u666f\u3002"} +{"id": "4002237", "video_name": "cf4eb333-28d3-5d56-be2c-807d50af79d6", "text": "\u8fea\u62dc\u6c99\u6f20\u5728\u65e5\u843d\u65f6\u7684\u5149\u5f71\u4e0b\u3002"} +{"id": "7003856", "video_name": "d5723497-9621-5bed-a26b-bacc704e504a", "text": "\u4eba\u4eec\u5728\u4e2d\u4e16\u7eaa\u7281\u5730\u3002"} +{"id": "8003852", "video_name": "806577e5-df46-5b66-a0ec-61e0266f0d38", "text": "\u4e3b\u795e\u6e7f\u5a46\u624b\u6301AK47\uff0c\u7279\u5199\u955c\u5934\uff0c\u8868\u60c5\u4e30\u5bcc\uff0c\u65e5\u843d\u3002"} +{"id": "1004067", "video_name": "4b796b73-4f9d-5fe5-97c9-bbdd2a23b73e", "text": "\u5b9d\u8d1d\u516c\u4e3b\u6885\u4e3d\u8fbe\u88c5\u626e\u65f6\u5c1a\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "0003903", "video_name": "45771475-69fc-50ac-b34f-00f44bd94c8d", "text": "\u5e26\u6709\u7011\u5e03\u89c6\u9891\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002 \n\nSource sentence: I am going to the supermarket to buy some groceries. \n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "2005093", "video_name": "29cd05aa-a3df-5548-92a1-869649c7f496", "text": "\u4e00\u53ea\u6d63\u718a\u5750\u57288K\u7684\u8fc7\u5c71\u8f66\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002\n\nSource sentence: The sun sets beautifully over the ocean.\n\u5915\u9633\u7f8e\u4e3d\u5730\u843d\u5728\u6d77\u9762\u4e0a"} +{"id": "8003378", "video_name": "52b0ed50-fc00-5443-aef4-0f4fa203699c", "text": "\u6df1\u591c\u5de5\u4f5c\u7684\u4eba\n\nSource sentence: I am sorry, but I cannot help you with that. \n\u5bf9\u4e0d\u8d77\uff0c\u6211\u4e0d\u80fd\u5e2e\u4f60\u5904\u7406\u90a3\u4e2a\u3002"} +{"id": "8003989", "video_name": "d0c0729c-b5a8-5254-94ad-9fc78beb3717", "text": "\u5409\u8428\u91d1\u5b57\u5854\u9010\u6e10\u5f62\u6210\u3002"} +{"id": "6002788", "video_name": "38c1cfde-7659-58a3-b198-bb620edf2ba8", "text": "16:9\u4e00\u4e2a\u673a\u5668\u4eba\u62b1\u7740\u4e00\u4e2a\u65b0\u751f\u513f\u3002"} +{"id": "2007827", "video_name": "36edff85-e61a-5102-b2c7-5020accef882", "text": "\u4e00\u4e2a\u5de5\u5382\u6d88\u5931\u4e86\uff0c\u4e00\u4e2a\u80e1\u841d\u535c\u519c\u573a\u51fa\u73b0\u4e86\u3002"} +{"id": "8003493", "video_name": "14f7d0ac-fb09-55bc-8fae-f64a8c2cf039", "text": "\u53e4\u5e0c\u814a\u6218\u4e89\u573a\u9762\uff0c\u7537\u4eba\u4f7f\u7528\u5251\u8fdb\u884c\u640f\u6597\u3002"} +{"id": "8002756", "video_name": "5461f2d3-b27d-5719-b24e-deb63964aac5", "text": "\u5973\u5b69\u5728\u591c\u665a\u5fae\u7b11\u7740\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "1004811", "video_name": "58ed57f5-b466-5159-b2c4-f12c4ff0a322", "text": "\u89c6\u9891\u7535\u5f71\u5316\uff0c\u5916\u661f\u4eba\u7528\u7535\u8bdd\u6253\u7535\u8bdd\u7ed9\u67d0\u4eba\u3002"} +{"id": "5001768", "video_name": "6967e5e9-408e-5562-b3da-c8b81f1b29cc", "text": "\u7537\u5b69\u6b63\u5728Twitch\u4e0a\u76f4\u64ad\uff0c\u73a9\u7740\u300a\u5821\u5792\u4e4b\u591c\u300b\uff0c\u7b11\u7740\u3002"} +{"id": "5001799", "video_name": "11d33695-1971-5921-83fc-2e2eef87d4d4", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u6d77\u4e2d\u592e\u505a\u5f71\u5b50\u640f\u6597\uff0c\u540e\u6765\u4ed6\u79fb\u52a8\u5230UFC\u516b\u89d2\u7b3c\u4e2d\u4e0e\u5eb7\u7eb3\u00b7\u9ea6\u683c\u96f7\u6208\u5f00\u59cb\u6218"} +{"id": "6003193", "video_name": "6fc8fab8-e9c8-51b5-9e1d-90ee72caa5c1", "text": "\u6f02\u6d6e\u5728\u4e91\u7aef\u7684\u57ce\u5821\uff0c4K\uff0c\u6982\u5ff5\u827a\u672f\u3002"} +{"id": "1005184", "video_name": "5f5b9bdc-146f-582f-a7cd-7d2234fc1b94", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5b69\u5b50\u5728\u8857\u4e0a\u8df3\u821e\u3002"} +{"id": "8003422", "video_name": "5a7ace7a-9f1d-58ba-a98e-e22afd451e88", "text": "\u88c2\u7eb9\u7a7f\u8fc7\u76ae\u80a4\u7684\u6a21\u5f0f\uff0c\u5e76\u731c\u6d4b\u8fd9\u4e9b\u6a21\u5f0f\u5fc5\u987b\u4e0e\u5728\u70ed\u6c34\u4e2d\u4ea7\u751f\u7684\u5bf9\u6d41\u6d41\u52a8\u5f15\u8d77\u7684\u6e29\u5ea6\u53d8\u5316\u6709"} +{"id": "6004687", "video_name": "491c10c7-2ba0-5c00-9ffb-f7d77f3bce7f", "text": "10\u79d2\u957f\uff0c\u5723\u8bde\u8282\uff0c\u623f\u5b50\uff0c\u706b\u3002"} +{"id": "8001107", "video_name": "7d7d33b2-44e9-5768-9236-f6c3d5d7d802", "text": "\u4e00\u53ea\u72d7\u548c\u5b83\u7684\u91d1\u94fe\u6b63\u5728\u8857\u4e0a\u4e0e\u9ed1\u5e2e\u4ea4\u6613\u91d1\u6761\u3002"} +{"id": "7003260", "video_name": "a6fa99d2-3076-5e56-b069-4b8a776e3a63", "text": "\u4e00\u4f4d\u975e\u6d32\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u5934\u53d1\u84ec\u677e\uff0c\u7a7f\u7740Kanga\uff0c\u88ab\u4e00\u4f4d\u5bcc\u6709\u7684\u975e\u6d32\u7537\u5b50\u5f3a\u884c\u62d6\u5165\u5c0f"} +{"id": "3003272", "video_name": "374e8d28-cc1a-579b-84bf-d36d05b29216", "text": "\u7f8e\u56fd\u519b\u961f\u5728\u4e00\u4e2a\u6d3b\u8dc3\u7684\u6218\u533a\u3002"} +{"id": "0004168", "video_name": "046b3909-009f-59cb-b363-f4ec6504cc3d", "text": "\u8349\u8722\u5728\u571f\u8def\u4e0a\u8df3\u8dc3\u7740\u7a7f\u8d8a\u82b1\u4e1b\u3002"} +{"id": "3004773", "video_name": "629bbad9-e784-5d51-83e6-7ad33c24f480", "text": "\u9f99\u820c\u5170\u548c\u767e\u4e8b\u53ef\u4e50\u5728\u5c71\u9732\u5e84\u56ed\u6d3e\u5bf9\u3002"} +{"id": "4004478", "video_name": "96d2970e-7416-551d-b2c1-995db86d36e5", "text": "\u6709\u53f2\u4ee5\u6765\u6700\u53e4\u8001\u7684\u89c6\u9891\u3002\u6765\u81ea1700\u5e74\u4ee3\uff0c\u6709\u4e00\u5ea7\u57ce\u5821\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u4f60\u53ef\u4ee5\u628a\u76d0\u9012\u7ed9\u6211"} +{"id": "2004783", "video_name": "9ec2ad67-7898-57f6-9fba-2e63b650e89b", "text": "\u5728\u4e00\u5bb6\u9ad8\u6863\u9910\u5385\uff0c\u4e00\u4e2a\u7537\u4eba\u768484\u5c81\u751f\u65e5\uff0c\u548c\u4ed6\u7684\u54e5\u54e5\u548c\u4f84\u5b50\u4e00\u8d77\uff0c\u5439\u706d\u8721\u70db\u3002"} +{"id": "3003323", "video_name": "8a774692-d6c4-5759-b304-40709144fa7e", "text": "\u4e00\u4e2a\u4eba\u5728\u51a5\u60f3\u6216\u505a\u6df1\u547c\u5438\u7ec3\u4e60\u3002"} +{"id": "0004905", "video_name": "1138363e-4884-5dfd-884c-f14db1650001", "text": "\u4eba\u7c7b\uff0c\u67d4\u548c\u7684\u805a\u7126\uff0c\u5927\u955c\u5934\uff0c\u9e1f\u77b0\u955c\u5934\uff0c\u4e09\u4e2a\u4eba\u6234\u7740\u73bb\u7483\u5934\u76d4\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86"} +{"id": "2006229", "video_name": "13769105-bbef-51b8-b3fe-809a0eab1181", "text": "\u84dd\u8272\u6a59\u8272\u767d\u8272\u52a8\u6001\u6c34\u5e73\u6d41\u52a8\u7684\u7ec6\u7ebf\u6ce2\u6d6a\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "2007477", "video_name": "a951bbff-f677-510a-93f2-b16f31d67694", "text": "\u4e00\u4e2a\u82f9\u679c\u56f4\u7740\u592a\u9633\u8f6c\u3002"} +{"id": "0006396", "video_name": "2bc84c85-bc23-5166-aa55-47c4d0e56df7", "text": "\u5954\u8dd1\u7684\u72d0\u72f8\u3001\u597d\u5947\u5fc3\u3001\u654f\u6377\u3001\u6b23\u8d4f\u82b1\u6d77\u68ee\u6797\u3001\u5371\u673a\u60c5\u51b5\u4e0b\u7684\u51b7\u9759\u548c\u654f"} +{"id": "0004855", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "\u65e0\u6570\u7684\u6d77\u8c5a\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u5e76\u6380\u8d77\u5de8\u6d6a\uff0c\u8fdb\u884c\u7a7a\u4e2d\u6444\u5f71\u3002"} +{"id": "7003157", "video_name": "84d4d6a1-2b99-5181-9da6-987aecb4ef69", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u9a6c\u62c9\u62c9\u70ed\u5207\u5730\u53c2\u52a0\u5b66\u6821\uff0c\u5468\u56f4\u6709\u5176\u4ed6\u5b69\u5b50\u5feb\u4e50\u5730\u73a9\u800d\u548c\u5b66\u4e60\u3002"} +{"id": "1006270", "video_name": "72cfd71e-8cdc-5714-9625-04234980efb1", "text": "\u52a8\u753b\u7248\u7684\u8c22\u8d6b\u7a46\u7f55\u9ed8\u5fb7\u5411\u963f\u8054\u914b\u56fd\u65d7\u656c\u793c\u3002"} +{"id": "2004297", "video_name": "9661505a-0022-5553-8df0-b43859b50d15", "text": "\u4e94\u4e2a\u5b69\u5b50\u4e2d\u6709\u4e00\u4e2a\u9ed1\u5934\u53d1\u7684\u5b69\u5b50\uff0c\u4ed6\u7684\u5934\u90e8\u7a81\u51fa\u8868\u660e\u6709\u8bed\u8a00\u969c\u788d\uff0c\u5e76\u89c2\u5bdf\u5230\u53d1\u5149\u7684\u84dd\u8272\u8111\u56fe"} +{"id": "0005087", "video_name": "147d05c3-10fc-57cd-9e11-f7f4ca7ff251", "text": "\u5728\u51c9\u723d\u7684\u5317\u6781\u753b\u4e00\u53ea\u8c61\u9f3b\u6d77\u8c79\u3002"} +{"id": "8002313", "video_name": "61204960-9cd2-5e3a-8ad6-5370382ce5eb", "text": "\u7537\u670b\u53cb\u548c\u5973\u670b\u53cb\u5ba3\u5e03\u4e86\u4ed6\u4eec\u7684\u7ed3\u5a5a\u65e5\u671f\u3002"} +{"id": "7003507", "video_name": "cdbc7beb-09c7-54f1-84de-4886da9513ed", "text": "\u5e26\u7740\u73ab\u7470\u82b1\u51a0\u7684\u5e0c\u814a\u795e\u8bdd\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b50"} +{"id": "2006962", "video_name": "421e3398-b82d-5eab-bb44-1469afc160f9", "text": "\u521b\u4f5c\u4e00\u4e2a\u5f62\u8c61\uff0c\u63cf\u7ed8\u8d1d\u5c3c\u4e0e\u777f\u667a\u7684\u732b\u5934\u9e70\u5965\u5229\u5f17\u76f8\u9047\u7684\u573a\u666f\uff0c\u5965\u5229\u5f17\u5df2\u51c6\u5907\u597d"} +{"id": "6003963", "video_name": "9884ae63-f6fb-56dc-b648-4d2477a9a169", "text": "\u5b87\u5b99\u4e2d\u6709\u4e00\u4e9b\u65e2\u975e\u7537\u6027\u4e5f\u975e\u5973\u6027\uff0c\u64c1\u6709\u9577\u9aee\u7684\u5b58\u5728\u3002\u4ed6\u5011\u4e0d\u662f\u4eba\u985e\uff0c\u800c\u662f\u751f\u6d3b\u5728\u5929\u5802\u7684\u751f\u7269"} +{"id": "4002557", "video_name": "ebfa1203-1ec6-51bb-a0ea-5df7437595d0", "text": "\u5728\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u4e0b\uff0c\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e24\u4eba\u76f8\u4e92\u6ce8\u89c6\u3002"} +{"id": "2005773", "video_name": "3ad96d2d-4c58-5bc1-ac80-ed6591ad0065", "text": "\u771f\u5b9e\u7684\u7167\u7247\u8096\u50cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u53ea\u62df\u4eba\u5316\u7684\u9cc4\u9c7c\u7a7f\u7740\u5723\u6bbf\u9a91\u58eb\u7684\u88c5\u675f\uff0c\u4ed6\u624b\u6301\u7ec6"} +{"id": "0005096", "video_name": "14b09e55-e494-5361-ba53-0d8553dbf68a", "text": "\u4e00\u4e2a\u5c0f\u5b69\u5409\u4ed6\u82f1\u96c4\u5728\u5de8\u5927\u7684\u821e\u53f0\u4e0a\u4e0e\u706b\u5f62\u6587\u5b57\u3001\u706f\u5149\u3001\u96fe\u673a\u3001\u653e\u5927\u5668\u4e00\u8d77\u6f14\u51fa\uff0c\u524d\u9762\u7684\u6447\u6eda"} +{"id": "3003084", "video_name": "c4697a6f-8fa3-58c6-b1fe-154b0a321c73", "text": "\u4e94\u5341\u591a\u5c81\u7684\u7537\u4eba\u5750\u8d77\u6765\u3002"} +{"id": "1006903", "video_name": "7e312736-8622-57fd-8a4b-5cb2623d7c06", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u58eb\u5175\u5728\u4e00\u4e2a\u6b27\u6d32\u6751\u5e84\u7684\u6218\u573a\u4e0a\u51fb\u9000\u50f5\u5c38\u5927\u519b\u3002"} +{"id": "0006631", "video_name": "2ff1dc03-1e80-579c-95b7-6b514b0c031c", "text": "\u5e74\u8f7b\u5973\u5b69\uff0c\u6709\u7740\u660e\u4eae\u7684\u5e03\u83b1\u6069\u8272\u773c\u775b\u548c\u73ab\u7470\u8272\u7684\u8138\u988a\u3002"} +{"id": "8003690", "video_name": "d057eace-d7d5-5b44-8d00-ad8ec5291e26", "text": "\u4f7f\u7528\u9690\u8eab\u5fcd\u8005\u521b\u5efa\u6807\u5fd7\u56fe\u50cf\u3002"} +{"id": "0004179", "video_name": "04a0e85e-e4b8-5aa5-a39c-57d60e058a9c", "text": "\u8fbe\u80fd\u662f\u4e00\u4e2a\u4e73\u5236\u54c1\u54c1\u724c\uff0c\u521b\u9020\u4e86\u4e00\u79cd\u5f62\u8c61\u3002"} +{"id": "0006203", "video_name": "28388101-fd6a-5ecf-adf3-7d1b0260c32d", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u7ad9\u5728\u96f7\u7535\u80cc\u666f\u4e0b\u6234\u7740\u8033\u673a\u3002"} +{"id": "8003705", "video_name": "52b44f0b-40ba-5f7a-b762-158ee19a3f13", "text": "\u673a\u5668\u4eba\u9152\u4fdd\u8c03\u5236\u9713\u8679\u996e\u54c1\uff0c\u62e5\u6324\u7684\u672a\u6765\u4e3b\u4e49\u4ff1\u4e50\u90e8\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u4f7f\u7528\u4f73\u80fdEOS R5\u76f8\u673a\uff0c"} +{"id": "8001006", "video_name": "f5fb7934-e031-5b6a-9b83-144cfaaa57f8", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u4e00\u4e2a\u4eba\u8eab\u540e\u7684\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "6003713", "video_name": "159b6615-f144-5a52-a2bd-da7d02f08d03", "text": "\u4e00\u4e2a\u590d\u6742\u6d41\u52a8\u7684\u6d1e\u7a74\u91cc\u95ea\u8000\u7740\u661f\u5149\uff0c\u7f8e\u4e3d\u7684\u591c\u7a7a\u5728\u79fb\u52a8\uff0c\u5448\u73b0\u51fa\u751f\u52a8\u8ff7\u4eba\u7684\u753b\u9762\u3002"} +{"id": "6002352", "video_name": "344e55f7-d811-539c-b283-dcd12dd11e3a", "text": "\u6751\u6c11\u4e4b\u95f4\u4f20\u95fb\u7740\u4e00\u5ea7\u88ab\u7981\u7684\u8c6a\u5b85\u7684\u4f20\u8bf4\u3002"} +{"id": "1004380", "video_name": "50e56e0f-7307-54dc-818d-4792dcc12f9a", "text": "\u968f\u7740\u65f6\u95f4\u6d41\u901d\uff0c\u4e00\u4e2a\u4eba\u53d8\u5f97\u66f4\u6709\u667a\u6167\u3002"} +{"id": "8002225", "video_name": "dfa7f04f-f91e-5fe6-8aa2-56eaa2d25ef0", "text": "\u6559\u7687\u65b9\u6d4e\u5404\u8df3\u8fdb\u6e38\u6cf3\u6c60\u3002"} +{"id": "8003532", "video_name": "da094484-6337-5305-8dc2-e2c979ca12a4", "text": "\u4e00\u95f4\u623f\u95f4\u91cc\u6709\u4e00\u53f0\u7535\u8111\uff0c\u6c1b\u56f4\u4ee4\u4eba\u6050\u60e7\uff0c\u662f\u9ed1\u767d\u7684\uff0c\u8d85\u5199\u5b9e\u7684\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "1006429", "video_name": "75a1fdf3-e009-5e3b-b4aa-233d9f38e30c", "text": "\u4e00\u4f4d\u7537\u5b50\u8bf4\uff1a\u201c\u5927\u5bb6\u597d\uff0c\u6b22\u8fce\u6765\u5230\u6211\u7684\u9891\u9053\u3002\u201d\u767d\u8272\u80cc\u666f\u3002"} +{"id": "8001957", "video_name": "fe9895c5-e993-5101-bd41-4569d1765a07", "text": "\u51b0\u6676\u878d\u5316\u7684\u8fd1\u8ddd\u79bb\u7279\u5199"} +{"id": "6002969", "video_name": "6484bcf2-0512-5695-84b1-91cbe8b24641", "text": "\u6709\u5f88\u5927\u7684\u82b1\u4ece\u5730\u91cc\u957f\u51fa\u6765\u4e86\u3002"} +{"id": "5001528", "video_name": "477b12b5-4223-52e6-aff8-a6c4b0dcd30c", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e9b\u571f\u8457\u4eba\u5728\u68ee\u6797\u91cc\u62e5\u62b1\u3002"} +{"id": "1005045", "video_name": "5d46cfe2-c80a-5a2f-bc63-7d1a70a91e63", "text": "\u53ef\u7231\u7684\u89d2\u8272\u3001\u767d\u8272\u3001\u68ee\u6797\u3001\u5b66\u4e60\u3001\u5316\u5986\u54c1\u3001\u7814\u7a76\u3001\u52a8\u7269\u3001\u8fea\u58eb\u5c3c\u3002"} +{"id": "2005143", "video_name": "47f0e2b0-9cfa-50cb-86f9-aa1278c46ada", "text": "\u70b9\u4e00\u652f\u9999\u70df \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "0003699", "video_name": "41f13876-61a7-5f9c-a9e8-7485f5be4a1f", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u9f50\u67cf\u6797\u573a\u3002\u9ad8\u5206\u8fa8\u73874k\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "4004986", "video_name": "06eeb79b-60eb-5350-953d-9a348049d117", "text": "\u963f\u8a07\u5b66\u8005\u6cd5\u5b98\uff0c\u624b\u6301\u4e00\u672c\u4e66\u3002"} +{"id": "2005031", "video_name": "8520fc0c-6a9a-5258-8b37-3973aef3648b", "text": "\u5f02\u56fd\u60c5\u8c03\u7684\u7f8e\u5973\u7a7f\u7740\u65f6\u5c1a\u7684\u670d\u88c5\u5728\u6d77\u6ee9\u4e0a\uff0c\u5b8c\u7f8e\u7684\u9762\u5bb9\uff0c\u7ec6\u81f4\u5bf9\u79f0\u7684\u699b\u8272\u773c\u775b\uff0c\u5177\u6709\u5706\u5f62"} +{"id": "4004432", "video_name": "4199efb3-5afc-5df6-8929-d702233540bb", "text": "\u5723\u8bde\u8001\u4eba\u628a\u4ed6\u7684\u96ea\u6a47\u649e\u5230\u4e86\u6811\u4e0a\uff0c\u4ed6\u6ca1\u6709\u98de\u8d77\u6765\u3002\u8bf7\u628a\u5b83\u505a\u5f97\u903c\u771f\u3002"} +{"id": "3006750", "video_name": "ba46391a-3ae3-5c56-835b-71f75941c74c", "text": "\u4e00\u5ea7\u5efa\u7b51\u7269\u5916\u6709\u4e00\u5f20\u5199\u7740\u201c\u6309\u6469\u9662\u5feb\u4e50\u7ed3\u5c40\u201d\u7684\u62db\u724c\u3002"} +{"id": "8002693", "video_name": "9a3f86b8-162c-5dea-b09f-c4a6b63a0bf8", "text": "\u56fe\u50cf\u4e2d\u5fc3\uff0c\u6709\u4e00\u9897\u7531\u4ea4\u7ec7\u7740\u5a07\u5ae9\u73ab\u7470\u85e4\u7684\u5fc3\u5f62\u7ec4\u6210\u3002\u8fd9\u9897\u5fc3\u5f62\u7531\u4e24\u4e2a\u5b8c\u7f8e\u7684\u534a\u8fb9"} +{"id": "4004811", "video_name": "dd26df50-2abe-59c9-aa56-ebab492afea9", "text": "\u6d77\u5e95\u6709\u73ca\u745a\u548c\u9c7c\u513f\u6e38\u6765\u6e38\u53bb\u7684\u8212\u9002\u653e\u677e\u7684\u5367\u5ba4\u3002"} +{"id": "4003233", "video_name": "c80e668e-e0b3-548d-b4a0-6e566c9571e6", "text": "\u6211\u5f00\u8f66\u65f6\uff0c\u6c7d\u8f66\u5728\u6211\u7684\u6321\u98ce\u73bb\u7483\u524d\u53d1\u751f\u4e86\u8f66\u7978\u3002"} +{"id": "0003011", "video_name": "3589e9f5-dba5-5cab-8d66-c5ecf2d7ff19", "text": "\u4e00\u540d\u5341\u51e0\u5c81\u7684\u5973\u5b69\u5728\u4e1c\u4eac\u7684\u8857\u9053\u4e0a\u8d70\u7740\u3002"} +{"id": "8001635", "video_name": "4be85bca-cda9-5f37-a780-b3ef2b883007", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u5b50\u8eab\u7a7f\u9ed1\u8272\u670d\u88c5\uff0c\u878d\u5408\u4e86\u58a8\u897f\u54e5\u548c\u7f8e\u56fd\u6587\u5316\u98ce\u683c\uff0c\u4f7f\u7528\u7f51\u7edc\u6444\u50cf\u5934\u62cd\u6444\u7167\u7247\uff0c\u8eab"} +{"id": "3006912", "video_name": "6faf5241-3d59-5115-800a-257965d1350e", "text": "\u5728\u4e00\u6253\u51fa\u6c57\u7684\u7537\u4eba\u53e3\u6c34\u6ef4\u843d\u7684\u89c6\u89d2\u4e0b\u3002"} +{"id": "8002943", "video_name": "f60203bb-b119-5a4e-a88a-cb4f5a718ef4", "text": "\u732b\u5934\u9e70\u626e\u6210\u76ae\u7ef4\u00b7\u8d6b\u66fc\uff0c\u8df3\u7740\u97f3\u4e50\u821e\u8e48\u3002"} +{"id": "6003896", "video_name": "4e8c8513-c488-5800-9797-21c05f7e1c9d", "text": "\u795e\u79d8\u7684\u3001\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6c1b\u56f4\uff0c\u914d\u4ee5\u660f\u6697\u7684\u573a\u666f\u3002"} +{"id": "4003504", "video_name": "c2f1f64e-014f-5a9d-811a-1112c29e0717", "text": "\u4ed6\u4eec\u4e0e\u52a8\u753b\u4e16\u754c\u5206\u4eab\u65e0\u5f62\u7684\u8bdd\u8bed\u65f6\uff0c\u5bf9\u8bed\u8a00\u7684\u529b\u91cf\u4ea7\u751f\u4e86\u65b0\u7684\u7406\u89e3\u548c\u8d5e\u8d4f\u3002\u89d2\u8272\u4eec\u610f\u8bc6\u5230\uff0c\u5355\u8bcd\u4e0d\u4ec5\u5b58\u5728"} +{"id": "8001583", "video_name": "9dd0899b-4cdc-5365-8087-42dce5d697c0", "text": "\u6d77\u6d0b\u4e2d\u7684\u8239\u6c89\u6ca1\uff0c\u98de\u673a\u5728\u4e0a\u7a7a\u98de\u884c\u3002"} +{"id": "1006303", "video_name": "735f53c2-6e79-51bc-b57e-baaf8c5bcdf6", "text": "\u4e00\u679a\u7f8e\u4e3d\u8be6\u7ec6\u7684\u5766\u6851\u77f3\u6212\u6307\uff0c\u9576\u5d4c\u5728\u767d\u91d1\u4e0a\uff0c\u975e\u5e38\u73cd\u8d35\u3002"} +{"id": "2004672", "video_name": "2f628b31-4bdf-5684-a467-5192f0fe44e6", "text": "\u6444\u50cf\u673a\u653e\u5927\u5230\u4e91\u5c42\uff0c\u968f\u7740\u95ea\u7535\u5728\u5929\u7a7a\u4e2d\u95ea\u73b0\u800c\u7f29\u5c0f\u3002"} +{"id": "2006192", "video_name": "020f113f-8e7b-55f3-b265-150d71b976e3", "text": "\u6cf0\u56fd\u6d77\u6ee9\u4e0a\u7684\u7ecf\u5178\u8f66"} +{"id": "1006508", "video_name": "7729834a-4c42-51d7-8548-db2ffd753d60", "text": "\u4e00\u8f86\u54c8\u96f7\u6234\u7ef4\u68ee\u6469\u6258\u8f66\u6cbf\u7740\u6b7b\u8005\u7684\u9053\u8def\u884c\u9a76\uff0c\u6b7b\u8005\u4eec\u4f38\u51fa\u624b\u53bb\u78b0\u6469\u6258\u8f66\u3002"} +{"id": "5001516", "video_name": "f6761368-f0dc-5ae8-92b1-26ae648e03a0", "text": "\u5728\u6700\u540e\u5236\u4f5c\u4e00\u4e2aYoutube\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u7fa4\u89c2\u4f17\u975e\u5e38\u6109\u60a6\u548c\u5145\u6ee1\u559c\u60a6\u3002"} +{"id": "7004921", "video_name": "a8a87c71-294d-5859-aa5f-2721f2e37511", "text": "\u4eba\u8d70\u4e86\uff0c\u80cc\u666f\u6d88\u5931\u4e86\u3002"} +{"id": "1003468", "video_name": "403a02f2-d997-5918-b450-569f6d3db3e5", "text": "\u529f\u592b\u732b\u548c\u72d7\u5728\u8db3\u7403\u6bd4\u8d5b\u89c6\u9891\u4e2d\u5bf9\u51b3\uff0c\u89c6\u9891\u65f6\u957f\u4e00\u5206\u949f\u3002"} +{"id": "1005092", "video_name": "5dea36a8-a7bf-5f3a-855b-be21b3c7588e", "text": "\u4e00\u4e2a\u725b\u4ed4\u5728\u6c99\u6f20\u4e2d\u4e0e\u5de8\u578b\u602a\u517d\u6218\u6597\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "8003646", "video_name": "5dcebceb-a05b-5958-bd9e-c5e5c24433d1", "text": "1950\u5e74\u4ee3\u7684\u6c1b\u56f4\uff0c\u623f\u95f4\u91cc\u5f25\u6f2b\u7740\u70df\u96fe\u548c\u96fe\u6c14\u3002"} +{"id": "1005319", "video_name": "61bce768-05f1-54aa-8bf9-73c088ed1438", "text": "\u5b9e\u9a8c\u5ba4\u7684\u4e00\u7ec4\u79d1\u5b66\u5bb6\u53d1\u73b0\u4e86\u65b0\u836f\u7269\u3002"} +{"id": "7004318", "video_name": "e2425e06-db3f-5f38-b904-eff0fbe5ecfc", "text": "\u53e4\u8463\u3001\u5e7f\u64ad\u4e3b\u6301\u4eba\u5728\u4ed6\u7684\u5e7f\u64ad\u5ba4\u3001\u7535\u5f71\u822c\u7684\u53f2\u8bd7\u7535\u5f71\u9759\u6b62\u753b\u9762\u3001\u6e05\u6670\u7684\u7126\u70b9\u3001\u53d1\u5149\u4e8c\u6781"} +{"id": "8003873", "video_name": "fb3d4f3f-de92-54ce-8a8d-b5f6da2e0cd2", "text": "\u4e00\u4e2a\u5439\u7b1b\u5b50\u7684\u89d2\u8272\u3002\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "3003051", "video_name": "904aeb67-ee4d-56f5-9756-aac0b05d3d12", "text": "\u592a\u9633\u5728\u4e00\u7fa4\u8239\u7684\u80cc\u540e\u843d\u5c71\uff0c\u5728\u5b81\u9759\u6ce2\u6d9b\u8d77\u4f0f\u7684\u6d77\u9762\u4e0a\u6295\u4e0b\u4e86\u957f\u957f\u7684\u9634\u5f71\u3002"} +{"id": "3003045", "video_name": "fcd0501b-7d00-5565-bac0-69e561ea939b", "text": "\u770b\u5230\u5149\u4eae\u540e\uff0c\u9b3c\u53d7\u5230\u60ca\u5413\uff0c\u671d\u6811\u90a3\u8fb9\u9003\u8dd1\u3002\u6751\u6c11\u4eec\u4e5f\u8ddf\u7740\u9b3c\u4e00\u8d77\u8d70\u4e86\u3002"} +{"id": "2006797", "video_name": "135403b6-2e35-5f94-928c-aad577084807", "text": "\u4e1b\u6797\u518d\u6b21\u88ab\u5176\u81ea\u7136\u8282\u594f\u6240\u7b3c\u7f69\uff0c\u5e86\u795d\u56e2\u7ed3\u4e0e\u52c7\u6c14\u7684\u80dc\u5229\u3002"} +{"id": "0003300", "video_name": "3b43220d-375c-5bc1-b165-4111a5875f04", "text": "\u4e00\u4e2a\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\u7684\u8ba1\u7b97\u673a\u79d1\u5b66\u5bb6\u5de5\u4f5c\u7a7a\u95f4\u3002"} +{"id": "6004474", "video_name": "01d63759-1d94-5e1d-918d-fc349ce21691", "text": "\u5f53\u524d\u4e8b\u4ef6\u4e0e\u542f\u793a\u5f55\u9884\u8a00\u4e4b\u95f4\u7684\u6709\u8da3\u76f8\u4f3c\u4e4b\u5904"} +{"id": "2007475", "video_name": "e713d50b-8d10-5698-8e53-d4b2861e0593", "text": "\u5728\u5a01\u65af\u654f\u65af\u7279\u72ac\u5c55\u4e0a\uff0c\u72d7\u72d7\u8868\u6f14\u5404\u79cd\u6280\u5de7\u3002 \n\nSource sentence: I would like to order a chicken sandwich, please. \n\n\u6211"} +{"id": "0004809", "video_name": "0f815735-043d-500e-901c-658fb9c3f66f", "text": "\u90ca\u533a\u7684\u66ae\u8272\u516c\u56ed\u5728\u767d\u8272\u793c\u670d\u4e2d\u95ea\u8000\uff0c\u4e2d\u666f\u94c2\u91d1\u8272\u7684\u5c3c\u9f99\u4e1d\u889c\uff0c\u68a6\u60f3\u7740\u4f38\u624b"} +{"id": "2007915", "video_name": "ad23a3e8-a75f-56c4-ac1b-4a2e6c3f8dce", "text": "\u96d5\u5851\u5728\u81ea\u7136\u4e2d\u975e\u5e38\u5de8\u5927\uff0c\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u7ea6\u745f\u592b\u00b7\u5305\u4f0a\u65af\u3002"} +{"id": "0004233", "video_name": "05818696-f533-50cd-ae81-63f583723318", "text": "\u8fd9\u4e2a\u5973\u4eba\u5728\u7535\u89c6\u4e0a\u8c08\u8bba\u52a0\u84ec\u7684\u60c5\u51b5\u3002"} +{"id": "3005595", "video_name": "19c4f9ed-fad3-55ee-859b-967220a200ce", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u5e26\u7740\u5d07\u656c\u5730\u6ce8\u89c6\u7740\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u5b69\u3002"} +{"id": "7004148", "video_name": "d364ada8-c462-5bb7-b75e-b5a98ae4bcc1", "text": "\u6811\u6728\u88ab\u98ce\u5439\u62c2\uff0c\u6829\u6829\u5982\u751f\uff0c\u5c55\u793a\u592a\u9633\u5347\u8d77\u5728\u7fa4\u5c71\u4e4b\u4e0a\uff0c\u7167\u4eae\u5bb6\u56ed\uff0c\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "7004609", "video_name": "11fc7059-b706-5414-a44e-661b2ac31daa", "text": "\u673a\u5668\u4eba\u5165\u4fb5\u7f8e\u56fd\u7684\u7b80\u8ff0"} +{"id": "5001140", "video_name": "9bb9d2da-8614-5bdc-8197-2c84aa11e2bc", "text": "3D \u6e32\u67d3\uff0c\u4e00\u53ea\u732b\u98de\u8d8a\u5ce1\u8c37\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c32K\u3002"} +{"id": "8001898", "video_name": "98a8070d-36ed-5e55-a991-2eee146d1777", "text": "1960\u5e74\u4ee3\u7684\u9ed1\u767d\u8001\u5f71\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u7f8e\u4eba\u9c7c\u5728\u6c34\u4e0b\u6e38\u52a8\u7684\u753b\u9762\uff0c\u91c7\u7528\u4e86\u8fd0\u52a87\u548c\u963f\u91cc\u76f8\u673a\u3002"} +{"id": "7004721", "video_name": "4a290bf2-f8e7-5181-b051-7e743d8b0e78", "text": "1970\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u5173\u4e8e\u5e0c\u814a\u795e\u7947\u6d17\u9999\u8549\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "0006771", "video_name": "32caf809-9075-571e-909d-4d032d9f63ac", "text": "\u540c\u4e00\u4e2a\u89c6\u9891\uff0c\u4f46\u6301\u7eed\u65f6\u95f4\u4e3a10\u79d2\u3002"} +{"id": "0005637", "video_name": "1e834a17-8664-5c18-a038-cafdec7b7776", "text": "\u4e00\u500b\u7a7f\u8457\u9ed1\u8272\u896a\u5b50\u7684\u5973\u5b69\u5728\u9ad4\u80b2\u9928\u88e1\u3002"} +{"id": "1006876", "video_name": "7daa587d-ff62-5d21-bacc-2ed46135c17e", "text": "\u65e5\u672c\u7684\u8d85\u81ea\u7136\u73b0\u8c61\u3001\u6050\u6016\u3001\u6bdb\u9aa8\u609a\u7136\u30011918\u5e74\u7684\u7167\u7247\u98ce\u683c\u3001\u5386\u53f2\u98ce\u683c\u3002"} +{"id": "0005183", "video_name": "16384316-17ef-58b6-a9eb-cd2302f64898", "text": "\u5e74\u8f7b\u7684\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\uff0c\u53cc\u773c\u4f4e\u5782\u5730\u770b\u7740\u684c\u5b50\uff0c\u5199\u7740\u4e00\u5c01\u4fe1\uff0c\u624b\u548c\u5934\u5728\u52a8\uff0c"} +{"id": "3003336", "video_name": "39ddafa3-b968-52ef-97b8-05607fa3d681", "text": "\u7f8e\u4e3d\u7684\u6258\u65af\u5361\u7eb3\u98ce\u666f\u5728\u65e9\u6668\u88ab\u9633\u5149\u7a7f\u900f\u65f6\u5448\u73b0\u51fa\u60ca\u4eba\u7684\u7a7a\u4e2d\u666f\u8c61\u3002"} +{"id": "8003055", "video_name": "b8bea39a-9d31-53b5-8dc8-97fa519bffb8", "text": "\u4e00\u4f4d\u806a\u660e\u7684\u4eba\u529b\u8d44\u6e90\u5973\u58eb\u7a7f\u8fc7\u529e\u516c\u5ba4\u7684\u5c0f\u9694\u95f4\uff0c\u5bf9\u7740\u57c3\u91cc\u5361\u8bf4\u201c\u55e8\u201d\u548c\u201c\u4f60\u597d\u201d\u3002"} +{"id": "2007234", "video_name": "89fd543b-fa6d-517d-9b83-afdc6a138f60", "text": "\u6f5c\u4f0f\u8005\u662f\u4e00\u79cd\u5e7d\u7075\u822c\u7684\u5b58\u5728\uff0c\u88ab\u56f0\u5728\u751f\u4e0e\u6b7b\u4e4b\u95f4\u7684\u9886\u57df\u4e4b\u95f4\uff0c\u5176\u865a\u65e0\u7684\u5f62\u6001\u5728\u65e0\u5c3d\u7684"} +{"id": "0003025", "video_name": "35c78b5b-96f0-5b9b-8c3a-b71611d1da9e", "text": "\u4ed6\u8d70\u8fdb\u53e6\u4e00\u4e2a\u623f\u95f4\uff0c\u770b\u5230\u91cc\u9762\u5f88\u6697\uff0c\u53ea\u6709\u4e00\u5f20\u684c\u5b50\u548c\u51e0\u628a\u6905\u5b50\uff0c\u6444\u50cf\u673a\u8fdb\u884c\u4e86\u5e73\u79fb\u548c\u7f29\u653e\u3002"} +{"id": "4002789", "video_name": "fc3d0ef1-1742-55af-a5e6-a012f14730ee", "text": "\u6e90\u53e5\uff1a\u300a\u9b3c\u6ce35\u300b\u4e2d\u7684\u4f46\u4e01\u548c\u5f17\u5409\u5c14\u5728\u96ea\u6797\u4e2d\u640f\u6597\n\nTranslation: \u300a\u9b3c\u6ce35\u300b\u4e2d\u7684\u4f46"} +{"id": "1004891", "video_name": "5a61d930-ac25-530a-9373-e94f5a1479be", "text": "\u7537\u5b50\u5728\u529e\u516c\u5ba4\u5199\u62a5\u7eb8\uff0c\u955c\u5934\u6162\u52a8\u4f5c\u7f29\u8fdb\uff0c\u7279\u5199\u624b\u90e8\u3002"} +{"id": "3006158", "video_name": "32517770-2def-5086-ad76-7d5cb2dbadc4", "text": "\u54e5\u672c\u54c8\u6839\u7740\u706b \u65e0\u4eba\u673a\u7167\u7247 \u955c\u5934\u5149\u6655 \u7167\u7247\u903c\u771f"} +{"id": "4003591", "video_name": "e43650fc-fc64-5237-a13d-3d466a6c3bd4", "text": "\u7528\u903c\u771f\u7684\u706b\u7130\u3001\u70df\u96fe\u548c\u5904\u4e8e\u5371\u96be\u4e2d\u7684\u68ee\u6797\uff0c\u5c06\u91ce\u706b\u5448\u73b0\u4e3a3D\u6548\u679c\uff0c\u5c31\u50cfWillow\u9762\u5bf9\u6311"} +{"id": "7003049", "video_name": "340db074-e8df-5a2a-9f71-9411daecdc59", "text": "\u52a8\u6001\u7684\u6d41\u7ebf\u578b\u672a\u6765\u8f66\u8f86\u5728\u7a7a\u4e2d\u65e0\u58f0\u6ed1\u884c\uff0c\u4e3a\u79d1\u6280\u8fdb\u6b65\u7684\u603b\u4f53\u611f\u5b98\u8d21\u732e\u529b\u91cf\u3002"} +{"id": "5001382", "video_name": "3c6bf93d-54b7-570c-96ad-fe8a8747a658", "text": "\u6f2b\u753b\u6d88\u9632\u5458\u9a7e\u9a76\u7ea2\u8272\u5de8\u578b\u5361\u8f66\uff0c\u751f\u52a8\u9c9c\u6d3b\uff0c4K\u3002\u4fe1\u606f\uff1a\u6d77\u8036\u65af\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "1003182", "video_name": "3a8585a4-4ccc-5259-8f59-cc0116097ed9", "text": "\u7f8e\u5b66\u3001\u590d\u53e4\u7684\u52a8\u6f2b\u5973\u5b69\u8eab\u4f53\uff0c\u67d4\u548c\u7684\u8272\u5f69\u3002"} +{"id": "7004805", "video_name": "3d8a3763-5b91-5c8d-a2dd-0927b22123dc", "text": "\u592a\u9633\u7167\u5728\u6d45\u9ec4\u8272\u5899\u7eb8\u7684\u623f\u95f4\u91cc\uff0c\u6709\u4e00\u5f20\u6d45\u9ec4\u8272\u7684\u684c\u5b50\uff0c\u4e0a\u9762\u6446\u653e\u7740\u9ec4\u8272\u7684\u82b1\u6735\u548c"} +{"id": "3003061", "video_name": "2b05aa8b-c7d1-5419-83a4-f77e4460b50f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5361\u62c9OK\u5531\u6b4c\uff0c\u4ed6\u7684\u5934\u8d8a\u6765\u8d8a\u5927\uff0c\u50cf\u6c14\u7403\u4e00\u6837\u7206\u70b8\u4e86\uff0c\u5361\u62c9OK\u5728\u7535\u89c6\u5de5\u4f5c\u5ba4\u91cc\uff0c\u660e"} +{"id": "1006671", "video_name": "7a29d20a-27cb-5b2a-9e82-8fb082ba9d2a", "text": "\u963b\u62e6\u95e8\u88ab\u6253\u5f00\u7684\u4eba\u3002"} +{"id": "1006749", "video_name": "7b92c445-dd5c-5a67-b408-0e5be9431c00", "text": "\u903c\u771f\u7684\u4f18\u96c5\u7f8e\u5973\u56fe\u50cf\uff0c\u5168\u8eab\u884c\u8d70\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u7a7f\u7740\u65f6\u5c1a\u7684\u7d27\u8eab\u8863\u670d\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\u6bd4\u4f8b\uff0c\u7f8e"} +{"id": "5001317", "video_name": "243f41c2-29bf-54ae-ab8a-c74c25f3127a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\uff0c\u6795\u7740\u4e00\u5f20\u6795\u5934\u3002"} +{"id": "3003024", "video_name": "b7c09374-b49e-58c1-91f2-7dece35aa943", "text": "\u7537\u6027\u963f\u52aa\u6bd4\u65af\u795e\uff0c\u82cf\u7f8e\u5c14\u795e\u8bdd\uff0c\u7559\u7740\u80e1\u987b\uff0c\u6234\u7740\u730e\u9e70\uff0c\u9ed1\u767d\u7ebf\u6761\u827a\u672f\uff0c"} +{"id": "1006922", "video_name": "7e9af1a4-2649-5f18-915c-4af8e7fe30b5", "text": "\u4e00\u4e2a\u592a\u7a7a\u8239\u5728\u5916\u661f\u7403\u7684\u6c99\u6f20\u4e2d\u5760\u6bc1\uff0c\u8d85\u9ad8\u6e05\u56fe\u5f62\uff0c8K\u5206\u8fa8\u7387\uff0c\u5fae\u89c2\u7ec6\u8282\u3002"} +{"id": "1005986", "video_name": "6e049aed-3706-56d2-9b7d-cb3882c1fba3", "text": "\u4e00\u4e2a\u5308\u7259\u5229\u9a91\u9a6c\u5c04\u7bad\u7684\u52c7\u58eb\u5728\u9a6c\u80cc\u4e0a\u5c04\u7bad\u3002"} +{"id": "7004283", "video_name": "3cb1f6a6-cc51-52fe-b18c-f9e39b972a4a", "text": "\u8c08\u8bba\u5f62\u72b6\u65b9\u5f62\uff0c\u6709\u7740\u6e05\u6670\u7684\u8fb9\u7f18\u548c\u81ea\u4fe1\u7684\u59ff\u6001\u5728\u6e38\u4e50\u573a\u4e0a\uff0c\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\uff0c"} +{"id": "1005632", "video_name": "678bc0d7-cadf-57af-a3f7-f434832f9558", "text": "\u4e00\u540d\u88ab\u8c0b\u6740\u7684\u7537\u5b50\u8eba\u5728\u5730\u4e0a\uff0c\u8eab\u4e0a\u6cbe\u6ee1\u4e86\u8840\u3002"} +{"id": "6002974", "video_name": "2726340e-c9cb-5d40-9833-cd2106341a33", "text": "8K\u9ad8\u5206\u8fa8\u7387\u7684\u8d85\u73b0\u5b9e\u5b9e\u666f\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u548cZendaya\u8d70\u8fc7\u4e00\u4e2a\u70ed\u95e8\u7684\u5723\u8bde\u5e02\u573a\uff0c\u4e2d\u7b49\u5e7f\u89d2\u955c\u5934\uff0c15FPS300 Motion"} +{"id": "7003823", "video_name": "d1f89caa-8209-5449-8bae-5fb0afce67d8", "text": "\u7e41\u5fd9\u7684\u8682\u8681\u7a9d\u85cf\u5728\u4e00\u68f5\u6a61\u6811\u4e0b\u3002"} +{"id": "1004335", "video_name": "500dd21e-741c-5b23-840f-1bfb09eba7a5", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u5e74\u8f7b\u4eba\u73a9\u4e50\u7684\u5e03\u83b1\u514b\u6d66\u8857\u666f\u3002"} +{"id": "1003057", "video_name": "38337f84-18ea-5e54-87ad-66b10c02930b", "text": "\u5168\u7403\u8303\u56f4\u5185\u7684\u56fe\u50cf\u68c0\u7d22"} +{"id": "7003481", "video_name": "b38f65fe-4a74-5ec0-ad6d-bb73d19653df", "text": "\u5927\u8c61\u5728\u706b\u4e2d\u8df3\u821e\u548c\u559d\u5564\u9152\uff0c\u8fd9\u662f\u4e00\u4e2a\u5361\u901a\u573a\u666f\u30024K\u3002"} +{"id": "7002488", "video_name": "4c196784-52de-5bdc-bf2d-eec3a3ae00a0", "text": "\u7528\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5c55\u793a\u672a\u6765100\u5e74\u3002"} +{"id": "0004373", "video_name": "07ee2ae0-86b3-5c05-9525-f1a90c53cc7b", "text": "\u521b\u4f5c\u4e00\u4e2a\u5361\u901a\u77ed\u7247\uff0c\u5185\u5bb9\u662f\u4e00\u53ea\u72d7\u5954\u8dd1\u548c\u73a9\u800d\u3002"} +{"id": "2006361", "video_name": "e4932586-4cdd-5120-a647-aa1d8d0a4c7e", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u677f\u4e0a\u5199\u4e0b\u4e863000\u4e2a\u70b9\u3002"} +{"id": "8003284", "video_name": "0b2a4e4d-8310-5f0e-b6a6-e73c39af1aaa", "text": "\u5065\u5eb7\u7f8e\u4e3d\uff0c\u5feb\u4e50\u5954\u8dd1\u5728\u7eff\u8349\u5730\u4e0a\u7684\u72d7\uff0c\u4fa7\u9762\u805a\u7126\u76f8\u673a\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "7004697", "video_name": "ed9d1308-8084-5e31-9d6a-408e207d48d9", "text": "\u4e00\u53ea\u5854\u65af\u9a6c\u5c3c\u4e9a\u864e\u7a7f\u8fc7\u4e1b\u6797\u3002"} +{"id": "4004311", "video_name": "4a39173d-c1c8-5112-b164-f091b6b23b73", "text": "\u7a7f\u7740\u540e\u9762\u5e26\u8fde\u5e3d\u886b\u7684\u7537\u5b50\u5728\u7eff\u6811\u6210\u836b\u7684\u533a\u57df\u91cc\u884c\u8d70\uff0c\u65c1\u8fb9\u6709\u7011\u5e03\uff08\u8096\u50cf\uff09\u3002"} +{"id": "7004753", "video_name": "8d959c54-2360-5aa2-81e3-e47afe687750", "text": "\u4e00\u4e2a\u7537\u4eba\u6234\u7740VR\u5934\u76d4\u5750\u5728\u516c\u4ea4\u7ad9\u53f0\u4e0a\u3002"} +{"id": "4002155", "video_name": "33cfc9ce-ab7e-552c-801a-394cb9eabf58", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u3001\u95ed\u7740\u773c\u775b\u7ad9\u5728\u65f6\u4ee3\u5e7f\u573a\u7684\u7537\u4eba\u3002"} +{"id": "7004064", "video_name": "a912a741-5dff-596b-aa8b-0b1b266522f5", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\uff0c\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u6e32\u67d3\u7684\u9762\u90e8\u7279\u5199\uff0c\u84dd\u5929\u80cc\u666f\u3002"} +{"id": "3003078", "video_name": "56370a6b-64a9-5ad3-9b1b-64bf3e180282", "text": "\u73e0\u5b9d\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b SEMPER\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003864", "video_name": "aaae9f50-ca70-5127-9197-f00581a6ab13", "text": "\u9ed1\u72fc\u5934\u5e26\u7740\u7ea2\u8272\u7684\u773c\u775b\uff0c\u5468\u56f4\u662f\u96fe\u6c14\u548c\u8ff7\u96fe\uff0c\u6697\u9ed1\u795e\u79d8\u3002"} +{"id": "6002365", "video_name": "0b2e7334-2f26-50d4-9163-b4f7e4cf267e", "text": "\u6f14\u5458Vijay\u5728\u4e00\u8258\u8239\u4e0a\uff0c\u5728\u4e00\u5ea7\u5efa\u7b51\u524d\u7684\u7535\u5f71\u89c6\u89d2\u4e2d\uff0c\u7ec6\u8282\u4e30\u5bcc\u7684\u8239\u5e06\uff0c\u5f02\u56fd\u60c5\u8c03\u7684\u6302\u6bef"} +{"id": "1004114", "video_name": "4c38738f-47da-5236-b8ac-7febc2f31afc", "text": "\u6770\u4f5c\uff0c\u5b8c\u7f8e\u7684\u753b\u8d28\u3002\u6d77\u62a5\u4e0a\uff0c\u4e00\u540d\u5973\u5b69\u8eba\u5728\u6c99\u53d1\u4e0a\uff0c\u7a7f\u7740\u7761\u8863\uff0c\u5ba4\u5185\u62cd\u6444\uff0c\u91d1\u53d1\uff0c\u5168"} +{"id": "1006728", "video_name": "7b418bfe-d9c1-588c-bff6-e878533e9abf", "text": "\u4e00\u67b6\u65e0\u4eba\u673a\u76d8\u65cb\u5728\u81ea\u7531\u5973\u795e\u50cf\u4e0a\u7a7a\uff0c\u62cd\u6444\u5230\u5b83\u5728\u7f8e\u4e3d\u7684\u5915\u9633\u4e0b\u95ea\u8000\u7684\u666f\u8c61\u3002"} +{"id": "1005463", "video_name": "6464fc8a-875f-5f28-9083-c0ad10dd805d", "text": "\u6ef4\u7b54\u6ef4\u7b54\uff0c\u5723\u8bde\u6811\u4e0b\u7684\u5723\u8bde\u793c\u7269\uff0c\u8d28\u5730\u3001\u8865\u4e01\u3001\u5168\u8eab\uff0c\u8482\u59c6\u00b7\u6ce2\u987f\u7684\u5fc3\u7406"} +{"id": "6003465", "video_name": "aebf6084-e25b-5391-8ccb-2132dca840ea", "text": "\u5728\u4e00\u4e2a\u96e8\u5929\uff0c\u4e00\u4e2a\u7a7f\u7740\u725b\u4ed4\u670d\u88c5\u3001\u957f\u53d1\u98d8\u98d8\u7684\u5973\u5b69\u5728\u96e8\u4e2d\u5fae\u7b11\uff0c\u7f8e\u4e3d\u7684\u591c\u666f\u548c\u9713\u8679\u706f\u5728"} +{"id": "2005785", "video_name": "e0990641-f15a-5f79-990d-68140bc3c00f", "text": "\u4e00\u4e2a\u5c71\u6751\u7537\u5b69\u5728\u5c71\u4e0a\u5c16\u53eb\u3002"} +{"id": "7002542", "video_name": "c5d0f63f-83b7-53b4-a9f6-f06adb111283", "text": "\u7d2b\u8272\u982d\u9aee\uff0c\u8056\u8a95\u6d3e\u5c0d\uff0c\u76ae\u514b\u65af\u98a8\u683c"} +{"id": "4003473", "video_name": "ecbea411-0e1a-5179-b8b2-f5ebe768c39c", "text": "D.B.\u5e93\u73c0\u6234\u7740\u9ed1\u8272\u773c\u955c\uff0c\u5728\u80f8\u524d\u4f69\u6234\u603b\u7edf\u548c\u52cb\u7ae0\uff0c\u5728\u83ab\u65af\u79d1\u56db\u5904\u8d70\u52a8\uff0c\u56e0\u4e3aD.B.\u5e93"} +{"id": "0003565", "video_name": "3f9d8a8c-eba0-5649-b5c4-80167deca13f", "text": "\u6162\u6162\u5730\u5fae\u7b11\uff0c\u6162\u6162\u5730\u52a8\u624b\uff0c\u6162\u6162\u5730\u773c\u795e\u79fb\u52a8\u3002"} +{"id": "7004415", "video_name": "ec4cbef3-3dda-556e-93ad-86f2a2fc3019", "text": "\u6234\u5e3d\u5b50\u7684\u7537\u5b50\u7ad9\u5728\u6865\u4e0a\uff0c\u6b63\u5728\u770b\u7740\u6e56\u3002"} +{"id": "0004184", "video_name": "04bcc6e3-6824-599b-ae55-d1fb8e344559", "text": "\u4f60\u6b63\u5728\u9006\u5411\u884c\u9a76\uff0c\u8bd5\u56fe\u8eb2\u907f\u6bcf\u4e00\u8f86\u8f66\u3002"} +{"id": "7003082", "video_name": "435bab63-03ec-5c3a-baf2-b095c52d62b1", "text": "\u53ef\u7231\u7684\u8be6\u7ec6\u7d20\u63cf\u827a\u672f\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u6258\u5c3c\u00b7\u8fea\u7279\u5229\u5179\uff08Tony Diterlizzi\uff09\uff0c\u4ea4\u53c9\u7ebf\u63cf\u7ed8\uff0c"} +{"id": "4003933", "video_name": "88a362fa-e9ec-5d86-9627-bf8ac4f9795e", "text": "\u7535\u5f71\u822c\u7684\u68af\u5ea6\u4e0b\u964d\u5728\u7b1b\u5361\u5c14\u4e16\u754c\u4e2d\u3002"} +{"id": "4002811", "video_name": "50c85642-7827-5c46-8b40-ccc0acb4886f", "text": "\u5f71\u5b50\u6765\u81ea\u5f71\u5b50\u683c\u65972\uff0c\u5bf9\u9635\u6f2b\u5a01\u7684\u6d1b\u57fa\u3002"} +{"id": "1004573", "video_name": "54f928ae-c487-5c9c-8b1f-1b0bc8282d8d", "text": "\u6570\u5b577.10.2023\u51fa\u73b0\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e0a\uff0c\u4ece\u4e2d\u6d41\u6dcc\u51fa\u9c9c\u8840\u3002"} +{"id": "8001089", "video_name": "4466a881-5ef6-5230-9a88-6a47569b8117", "text": "\u4f0a\u5bcc\u9ad8\u7684\u4e00\u6761\u53ef\u7231\u7684\u5c0f\u6eaa\u7a81\u7136\u53d8\u5e72\u4e86\uff0c\u5206\u8fa8\u73874k\uff0c3D\uff0c\u9ad8\u6e05\uff0c\u5bbd\u9ad8\u6bd419:16\u3002"} +{"id": "3006436", "video_name": "d04ee7ea-9ff6-5770-bb55-7ed675c18d86", "text": "\u57fa\u4e8e\u70ed\u72d7\u548c\u8c03\u5473\u54c1\u7684\u52a8\u6f2b\u89d2\u8272\u3002"} +{"id": "0005872", "video_name": "229c7fb9-91c0-5ba8-b021-e402d0d5a00c", "text": "\u53ef\u89c6\u5316\u5a01\u6d1b\u5e03\u9c81\u514b\u9547\uff0c\u66fe\u88ab\u6050\u60e7\u6240\u7b3c\u7f69\uff0c\u73b0\u5728\u4f20\u8bf4\u7740\u4e00\u6bb5\u8d85\u8d8a\u6b7b\u4ea1\u7684\u975e\u51e1"} +{"id": "7004762", "video_name": "7aa0b61f-8404-578c-b250-f642e8c05b59", "text": "\u4e00\u53ea\u8001\u9f20\u5728\u9ad8\u9ad8\u7684\u9ea6\u7530\u91cc\u5954\u8dd1\u3002"} +{"id": "2005464", "video_name": "6cf79a42-270d-5fe1-beeb-6d3f8545791e", "text": "\u957f\u65f6\u95f4\u8fc7\u540e\uff0c\u5730\u7403\u5f00\u59cb\u53d8\u5f97\u8d2b\u7620\u3002"} +{"id": "7002190", "video_name": "e86c0708-9689-5583-a4c0-d4a26ad73722", "text": "\u4e09\u4e2a\u68f1\u955c\u72b6\u602a\u7269\u547d\u8fd0\u7684\u9884\u8a00\u8005\u753b\u50cf\uff0c\u7531Leyendecker\u548cNC Wyeth\u7ed8\u5236\uff0c\u5177\u6709\u4f53\u79ef\u6269\u6563\u9634\u5f71\uff0c\u524d\u62c9\u6590"} +{"id": "4003831", "video_name": "66e07ee9-b4e0-50bc-9acb-9c50c508f721", "text": "\u628a\u89c6\u9891\u641e\u5f97\u50cf\u7535\u5f71\u4e00\u6837\uff0c\u5b69\u5b50\u5728\u665a\u4e0a\u73a9\u800d\u3002"} +{"id": "0005092", "video_name": "14938434-bdd5-58cd-991e-1bb026e3ae7b", "text": "\u4eba\u7684\u89d2\u5ea6\u770b\u7ea2\u6749\u6811\u3002"} +{"id": "0005664", "video_name": "1eeac875-b292-53d8-94d3-f27981fcba3f", "text": "\u5728\u4f60\u7684\u5e10\u7bf7\u91cc\u753b\u51fa\u4ee5\u8272\u5217\u7684\u5341\u4e8c\u652f\u6d3e\u7684\u753b\u50cf\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7003183", "video_name": "de67797d-c17f-5d8b-a11d-815624cb982b", "text": "\u4e00\u5bf9\u60c5\u4fa3\u5728\u6cb3\u5cb8\u8fb9\u7684\u65e5\u843d\u65f6\u5206\u63a5\u543b\u3002\u5728\u753b\u9762\u7684\u5de6\u4fa7\uff0c\u706b\u6d6a\u4e0e\u6c34\u6d6a\u76f8\u649e\u3002\u5f53\u6c34\u548c\u706b\u76f8\u9047\u65f6\uff0c"} +{"id": "0006045", "video_name": "25a70637-997e-59e5-b316-181d25658683", "text": "\u4e00\u4e2a\u6ed1\u51b0\u8005\u8df3\u8fc7\u969c\u788d\u7269\u7684\u5355\u7ebf\u753b\u3002"} +{"id": "1004518", "video_name": "53e62d71-f568-5333-8fff-5cd45c2a8bd3", "text": "\u4ee5\u5409\u535c\u529b\u98ce\u683c\u5c55\u73b0\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u4e16\u754c\uff0c\u7eff\u6cb9\u6cb9\u7684\u7530\u91ce\u4e0a\u5feb\u4e50\u7684\u4eba\u4eec\u3002"} +{"id": "2006574", "video_name": "6ae57e00-4220-5846-8a71-3ffc1dd84d2e", "text": "\u4e00\u4e2a\u5b69\u5b50\u88ab\u5916\u661f\u4eba\u7ed1\u67b6\u4e86\u3002"} +{"id": "3006373", "video_name": "3513dd90-ba00-5aad-9e09-68f73afc87bf", "text": "\u5979\u628a\u4e00\u4e2a\u6a44\u6984\u7403\u6254\u5230\u5730\u4e0a\u3002\n\nSource sentence: I need to buy some groceries for dinner tonight.\n\u4eca\u665a\u665a\u9910\u6211\u9700\u8981\u4e70\u4e9b\u98df\u54c1\u6742\u8d27"} +{"id": "3003134", "video_name": "984862b5-bbae-5c1a-881e-7051c7239bae", "text": "\u5df4\u65af\u8482\u5c14\u4e50\u961f\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u7403\u573a\u8868\u6f14\u3002"} +{"id": "7004524", "video_name": "908c3c39-db81-5854-abe7-95502d11ce30", "text": "\u4e00\u6735\u7f8e\u4e3d\u7684\u82b1\uff0c\u82b1\u74e3\u4e0a\u6302\u7740\u96e8\u6ef4\uff0c\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "7002849", "video_name": "757b0d81-7d13-5fee-8399-e68b56fe2054", "text": "\u706b\u7bad\u5728\u592a\u7a7a\u4e2d\u7206\u70b8\uff0c\u5730\u7403\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "4002668", "video_name": "10eb3adf-e5f9-5efe-95b8-42d61e1671a1", "text": "\u900f\u89c6\u65cb\u8f6c\u8fd0\u52a8\u9713\u8679\u706f\uff0c\u706f\u5149\u95ea\u70c1\u706b\u82b1\u95ea\u8000\u53d8\u5e7b\u3002"} +{"id": "7004265", "video_name": "e1a19f95-211d-5e41-97e7-63b2a3429451", "text": "\u7a7f\u7740\u76ae\u5916\u5957\u548c\u76ae\u978b\u7684\u4eae\u7c89\u8272\u5934\u53d1\u5973\u5b69\uff0c\u5a03\u5a03\u822c\u7684\u5916\u8868\uff0c\u4ef7\u683c\u4e3a8k\uff0c4k\u3002"} +{"id": "6004014", "video_name": "9b26f4d8-3046-58ba-a15d-ddc8c12e02ae", "text": "\u9633\u5149\u7eff\u8336\u56ed\uff0c\u9e70\u773c\u519c\u5bb6\u4e50\u3002\u4fe1\u606f\uff1a\u9633\u5149\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003861", "video_name": "c0dfb8ab-c1de-52e8-86af-68446e764bcb", "text": "\u4e00\u573a\u8c6a\u534e\u7684\u6d3e\u5bf9\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u4eab\u53d7\u3002"} +{"id": "1006646", "video_name": "79ca5639-9d05-57df-9b9e-4fac1af5fe4a", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7ad9\u5728\u8bb2\u53f0\u4e0a\u7684\u89c6\u9891\u3002"} +{"id": "2005349", "video_name": "e4ba6d91-0be3-5181-9ca0-4e64f826a5a4", "text": "\u5728\u6e38\u6cf3\u6c60\u524d\u9762\uff0c\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5370\u5ea6\u5973\u5b69\u6b63\u5728\u81ea\u62cd\uff0c\u80cc\u666f\u662f\u771f\u5b9e\u7684\u6e38\u6cf3\u6c60\u3001\u68d5\u6988\u6811\u548c\u5728\u6e38"} +{"id": "5001678", "video_name": "d7c1dc61-ffb3-5fe5-b004-5e9c0936b353", "text": "\u4e00\u573a\u98ce\u66b4\u964d\u4e34\u57ce\u5e02\u7684\u60ca\u9669\u573a\u666f\uff0c\u6070\u9022\u65e5\u98df\u3001\u6d41\u661f\u96e8\u548c\u7ea2\u6708\u63a9\u76d6\u592a\u9633\u3002"} +{"id": "1003844", "video_name": "46dcf831-f8db-5d09-a6b4-a41f2b930e5a", "text": "\u4ece\u7a7a\u95f4\u7ad9\u7684\u89d2\u5ea6\u6765\u770b\uff0c\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u76f4\u5f8410\u82f1\u91cc\u7684\u5de8\u5927\u94c1\u7403\u5728\u9644\u8fd1\u8f68\u9053\u4e0a\uff0c\u8868\u9762\u6e05\u6670\u53ef\u89c1\u4e00\u4e2a\u65af\u5df4\u8fbe\u5934"} +{"id": "0004345", "video_name": "077bed4e-7b4f-56e2-9ec6-03a8ce40d5d9", "text": "\u7ffb\u8f6c\u5492\u8bed\uff1aSparky\u548c\u56e2\u961f\u4e00\u8d77\u5de5\u4f5c\uff0c\u9006\u8f6c\u575a\u679c\u6811\u4e0a\u7684\u53e4\u8001\u5492\u8bed\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740"} +{"id": "2007739", "video_name": "93eec376-aff3-5d11-a0c0-4e2bbabdc234", "text": "\u73b0\u5b9e\u7684\u5c71\u95f4\u65e5\u843d\u89c6\u9891\uff0c\u524d\u666f\u662f\u7bdd\u706b\uff0c\u80cc\u666f\u662f\u7011\u5e03\u3002\u6709\u4e00\u540d\u957f\u53d1\u5973\u5b50\u548c\u4e00\u540d\u62e5\u6709\u5bbd\u9614\u80a9\u8180\u7684"} +{"id": "1003734", "video_name": "44e4e2ca-1a50-5ac1-9fb5-5d0a78dfbecc", "text": "\u5728\u8584\u96fe\u4e2d\u98de\u821e\u7684\u91d1\u8272\u8702\u9e1f"} +{"id": "6002344", "video_name": "58662785-5f52-5731-96de-91486f4b25cd", "text": "\u6559\u5ba4\u91cc\u7684\u5973\u5b69\u900f\u8fc7\u7a97\u6237\u770b\u5230\u5bcc\u58eb\u5c71\u548c\u5915\u9633\u3002"} +{"id": "7003943", "video_name": "9d53cbf4-b6c6-5e7d-89b2-aec1690c357c", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u6d77\u5578\u6b63\u5728\u57ce\u5e02\u4e2d\u6d41\u52a8\u3002"} +{"id": "7002759", "video_name": "9bbf9aa6-5112-52f5-aa93-9f459bd371af", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u5730\u7403\u7684\u624b\u63e1\u5728\u4e00\u8d77\u3002"} +{"id": "3006836", "video_name": "c32dbad2-1e73-5657-a6e7-ded608be8ed4", "text": "the distinction between human and machine becomes unclear, and an intense struggle for survival is about to unfold. Prepare yourself to be fully absorbed in this world."} +{"id": "8003126", "video_name": "87edf662-289f-5eb7-ba62-e61fce95fd1d", "text": "\u5728\u8857\u4e0a\u9965\u997f\u800c\u6b7b\u7684\u8d2b\u7a77\u5b69\u5b50\uff0c\u4ee4\u4eba\u4e0d\u5b89\u548c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u6050\u6016\u7535\u5f71\u822c\u7684"} +{"id": "1006060", "video_name": "6f49658b-3672-5f1a-8ce2-a2733a259144", "text": "\u4e00\u767e\u4e07\u4eba\u5728\u8d5b\u8dd1\uff0c\u80cc\u666f\u662f\u65e5\u843d\u3002"} +{"id": "3006570", "video_name": "8da9ad85-35f0-5a25-8521-df674ebdafd1", "text": "\u4e00\u4e2a\u73b0\u5b9e\u76844k\u573a\u666f\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u7ad9\u5728\u5e9f\u5f03\u7684\u57ce\u5e02\u4e2d\u5fc3\u6700\u9ad8\u7684\u6469\u5929\u5927\u697c\u4e0a\uff08\u7c7b\u4f3c\u4e8e"} +{"id": "6003245", "video_name": "833a25e1-5c2d-55e2-94c8-65215672139e", "text": "\u5f17\u7f57\u591a\u00b7\u5df4\u91d1\u65af\u5750\u5728\u590f\u5c14\u90e1\u7684\u4e00\u68f5\u6811\u4e0b\u3002"} +{"id": "3005716", "video_name": "4bcad242-1633-596d-a4ba-279d2dfa9619", "text": "\u7ad9\u5728\u88ab\u71c3\u70e7\u7684\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u4eba\u3002"} +{"id": "0004724", "video_name": "0e0ea2ea-cb76-5367-9bf3-882b7c0386d0", "text": "\u4e00\u4e2a\u7a7f\u7740\u7834\u5e03\u7684\u58eb\u5175\u5728\u7528\u8349\u57cb\u846c\u6b7b\u8005\uff0c\u6444\u50cf\u673a\u5728\u9ad8\u5904\u62cd\u6444\u3002"} +{"id": "1005566", "video_name": "6673dfa6-1b8d-58ba-a934-f9aeb681296d", "text": "\u5927\u8c61\u5728\u6c34\u707e\u53d7\u707e\u533a\u6e05\u9664\u5ca9\u77f3\u4ee5\u6551\u63f4\u52a8\u7269\u3002"} +{"id": "4002246", "video_name": "6de9a892-3f54-52a9-a30e-bdb6cd7510b2", "text": "\u4e00\u9897\u539f\u5b50\u5f39\u5728\u4e00\u5ea7\u57ce\u5e02\u7206\u70b8\uff0c\u8fd9\u5ea7\u57ce\u5e02\u88ab\u5f7b\u5e95\u6467\u6bc1\u4e86\u3002"} +{"id": "3003813", "video_name": "6c0a8c0e-ed73-55d3-a78c-fa512f148472", "text": "\u732b\u5934\u9e70\u4eba\u5f62\uff0c\u5e26\u6709\u9ed1\u5e2e\u5916\u8868\uff0c\u7a7f\u7740\u6a59\u8272\u8fd0\u52a8\u670d\uff0c\u5728\u7ebd\u7ea6\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u8def\u65c1\u7684\u8f66"} +{"id": "8003611", "video_name": "064efd9b-97f1-558d-8fcf-55c2680a5673", "text": "\u5c0f\u4e11\u4ea4\u6613\u80a1\u5e02\u3002"} +{"id": "1004505", "video_name": "5385095e-5b9d-5f88-9fd1-116803c4273d", "text": "\u4e00\u540d\u7537\u5b50\u5e26\u7740\u4e00\u53ea\u9cc4\u9c7c\u548c\u6d77\u7ef5\u5b9d\u5b9d\u8d70\u8fc7\u4e00\u5ea7\u6865\u3002"} +{"id": "7002731", "video_name": "d96e834b-4b8f-5a5b-aa8d-f8b7d1ae45ea", "text": "\u4e00\u4f4d\u6709\u808c\u8089\u7684\u8001\u5934\u5b50\uff0c\u7eff\u8272\u7684\u76ae\u80a4\uff0c\u957f\u957f\u7684\u767d\u8272\u80e1\u987b\uff0c\u6218\u58eb\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "5001746", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "\u4eca\u5929\u5b8c\u5168\u6839\u636e\u6700\u5438\u5f15\u5473\u857e\u7684\u83dc\u80b4\u6765\u9009\u62e9\u8981\u53bb\u54ea\u4e00\u5bb6\u9910\u5385\uff0c1080P\uff0c\u9ad8\u8d28\u91cf\uff0c\u6f2b\u753b\u3002"} +{"id": "1004052", "video_name": "4b262458-1c54-5cba-abd6-3c5ccf535149", "text": "\u89c6\u56fe\u80cc\u666f\u6ca1\u6709\u4ec0\u4e48\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004410", "video_name": "51854231-07f5-5559-b7d3-68b06e74785e", "text": "\u4e00\u5bf9\u60c5\u4fa3\u5728\u7f57\u9a6c\u4e00\u5bb6\u8c6a\u534e\u9152\u5e97\u524d\u96e8\u4e2d\u7fe9\u7fe9\u8d77\u821e\uff0c\u50cf\u7535\u5f71\u822c\u7684\u573a\u666f\u3002\u4ed6\u8eab\u6750\u7ed3\u5b9e\uff0c\u76f8"} +{"id": "4002136", "video_name": "c3928aac-9504-571b-b8cd-cf47d6cc1f03", "text": "\u7f51\u7edc\u95e8\u53e3\u6253\u5f00\uff0c\u6444\u50cf\u5934\u7f29\u8fdb\uff0c\u7535\u7ebf\u548c\u7535\u7f06\uff0c\u9713\u8679\u706f\u53d1\u51fa\u84dd\u5149\uff0c\u9ed1\u8272\u91d1\u5c5e\u3002"} +{"id": "2005243", "video_name": "d98a7a00-6eac-5513-8850-d1256dab9cfa", "text": "\u901a\u8fc7\u5c06\u6e56\u9762\u6ce2\u6d6a\u4e0a\u53cd\u5c04\u7684\u5973\u6027\u9762\u5b54\u4e0e\u53cc\u91cd\u66dd\u5149\u76f8\u7ed3\u5408\uff0c\u6a21\u7cca\u4e86\u4eba\u4f53\u4e0e\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u6781\u7b80"} +{"id": "7004143", "video_name": "6bb0c268-0870-5a2d-8f58-4e709f85a45c", "text": "\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u4e1b\u6797\u4e2d\u5448\u73b0\u51fa16:9\u7684\u753b\u9762\u6bd4\u4f8b\uff0c\u6709\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "6004657", "video_name": "5ccddb26-ff33-50b6-9ba1-9d9d585bb663", "text": "\u827e\u5c14\u838e\u51b0\u51bb\u4e86\u4e00\u6ce2\u6d6a ROXY (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2006856", "video_name": "48bf953d-fe3a-522c-8b49-9cf7736a2268", "text": "\u521b\u9020\u4e00\u4e2a\u7c89\u8272\u548c\u9713\u8679\u84dd\u8272\u7684\u673a\u5668\u4eba\uff0c\u5b83\u5728\u6325\u624b\u3002"} +{"id": "6003104", "video_name": "b2f37922-4f2f-5b5f-b6f0-b936fa5adc53", "text": "\u82f9\u679c\u548c\u6a59\u6811\u7684\u5e7f\u9614\u89c6\u91ce"} +{"id": "4002634", "video_name": "e32802be-b0e7-50cb-a5e4-f99b1f4cd755", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u5728\u8d85\u5e02\u8d2d\u7269\u3002"} +{"id": "0004981", "video_name": "12b706a6-3122-5ae8-ab86-5a66e36c3e2d", "text": "\u96f6\u70b9\u80fd\u91cf\u963f\u5c14\u5fb7\u5df4\u5170UFO\u7a7f\u8fc7\u6d77\u6d0b\u4e2d\u7684\u95e8\u6237\uff0c20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u65e0\u58f0\u7535\u5f71\uff0c8\u6beb\u7c73\uff0c\u6a21\u7cca"} +{"id": "7004097", "video_name": "e8eafb25-85ca-5429-be05-7606f91ea8d9", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\u573a\u666f\uff0c\u4e91\u5728\u5c71\u95f4\u8f7b\u67d4\u79fb\u52a8\u3002"} +{"id": "2006122", "video_name": "d81ebcc2-01de-558d-b44e-509657438ecf", "text": "\u6709\u4e24\u6839\u71c3\u70e7\u7684\u6728\u67f4\u7684\u7816\u7089\u3002"} +{"id": "6004285", "video_name": "2e2cfe46-31d1-50cd-b8bd-15178191fd3a", "text": "\u4e09\u540d\u58eb\u5175\u8ddf\u5728\u4e24\u540d\u6218\u58eb\u540e\u9762\u5954\u8dd1\u3002"} +{"id": "1005439", "video_name": "63f509d0-f03e-5b98-8172-209e0cd22110", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u897f\u9ad8\u5730\u767d\u6897\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "8003118", "video_name": "9be0d21e-4525-5df0-971e-5eb33271b32c", "text": "\u4e00\u4e2a\u7a7f\u7740\u5546\u52a1\u5957\u88c5\u7684\u5546\u4eba\u3002\u52a8\u753b\uff0c4K\u3002"} +{"id": "3004775", "video_name": "89d2b62d-d91a-5079-a239-44b9cdfe9852", "text": "\u7528\u76ae\u514b\u65af\u52a8\u753b\u7684\u98ce\u683c\uff0c\u5c55\u73b0\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u65e0\u754f\u5730\u8dc3\u8fc7\u4e00\u4e2a\u5bbd\u9614\u7684\u5ce1\u8c37\u7684\u60c5\u666f\u3002"} +{"id": "0003656", "video_name": "41221cd1-34b0-503c-98b8-3f56f23cb32e", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u5899\u4e0a\u8df3\u821e\uff0c8k\u50cf\u7d20\u7684\u76ae\u514b\u65af\u8fea\u58eb\u5c3c\u3002"} +{"id": "8002578", "video_name": "652fc9d6-0132-54dc-a104-59809b89341d", "text": "\u4e00\u5f20\u7528\u4e8e\u82f1\u8bed\u5b66\u4e60YouTube\u89c6\u9891\u76843D\u80cc\u666f\u56fe\u7247\u3002"} +{"id": "4002345", "video_name": "4bcfb448-e30c-5aa5-8ad9-76ef490f79ad", "text": "\u66f4\u6362\u8863\u670d \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7004875", "video_name": "9f51735b-2dd2-5960-b4fa-b31f2733df57", "text": "\u7535\u52a8\u6c7d\u8f66\u5728\u7e41\u534e\u7684\u57ce\u5e02\u4e2d\u3002"} +{"id": "6004302", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "\u73ed\u5c3c\u5728\u8349\u5730\u4e0a\u9047\u89c1\u4e86\u7f57\u831c\u5154\uff0c\u4e24\u53ea\u5154\u5b50\u90fd\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "8002052", "video_name": "0bf108c3-108e-521c-8989-7d7921da14d6", "text": "\u5979\u53d1\u73b0\u81ea\u5df1\u6b63\u5728\u7ecf\u5386\u4e00\u573a\u66fe\u7ecf\u53ea\u5728\u4e66\u4e2d\u8bfb\u5230\u7684\u7231\u60c5\u6545\u4e8b\u3002\u591a\u5e74\u8fc7\u53bb\u4e86\u3002"} +{"id": "4002058", "video_name": "0e45afe2-c7b8-58bd-bd71-df9074d2b1ab", "text": "\u7d2b\u8272\u548c\u7c89\u8272\u7684\u672a\u6765\u4e3b\u4e49\u773c\u955c\u52a8\u6001\u56fe\u5f62\u8bbe\u8ba1"} +{"id": "3006094", "video_name": "adc74627-1682-5990-b2d5-ee56f9824792", "text": "\u4ee3\u8868\u6027\u7684\u89c6\u89c9\u5f62\u8c61\u5c55\u73b0\u4e86\u9762\u4e34\u8d22\u52a1\u56f0\u5883\u7684\u4eba\u4eec\u3002"} +{"id": "1003529", "video_name": "410db794-1da7-578b-85ce-e06ae7f48e51", "text": "\u4e00\u652f\u7531\u79d1\u5b66\u5bb6\u548c\u5de5\u7a0b\u5e08\u7ec4\u6210\u7684\u56e2\u961f\u805a\u96c6\u5728\u4efb\u52a1\u63a7\u5236\u4e2d\u5fc3\uff0c\u89c2\u770b\u7b2c\u4e00\u8258\u98de\u5411\u53ef\u5c45\u4f4f\u5916\u884c\u661f\u7684\u5b87"} +{"id": "5001427", "video_name": "5a5c6c26-3306-5756-8539-253f2680ab5f", "text": "\u8bdd\u7b52\u5728\u519b\u9f13\u4e0a\u8df3\u821e\u3002"} +{"id": "3005407", "video_name": "3e74c513-1817-54a7-a2ad-7c0114ab4a19", "text": "\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u5c0f\u5df7\u7684\u67aa\u6218\u4e2d\u7684\u7537\u4eba\u3002\u4ee5\u5e15\u7279\u91cc\u514b\u00b7\u7eb3\u683c\u5c14\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "3005433", "video_name": "c714c55d-0e65-5530-927a-abdd495e5610", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u9047\u89c1\u4e86\u4e00\u53e3\u4e95\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0004023", "video_name": "01af9071-cbde-5f68-89f3-c07032a4eef7", "text": "\u52a8\u6001\u7684\u591a\u9762\u955c\u7247\u3001\u9cb1\u9c7c\u548c\u9762\u5305\u3002"} +{"id": "2005713", "video_name": "ae822507-d5f0-5e3a-959e-d72aa3ede7bb", "text": "\u73b0\u4ee3\u5316\u548c\u65b0\u9c9c\u611f\uff0c\u5e74\u8f7b\u5f00\u59cb\u521b\u4e1a\u7684\u4eba\u3002\u4fe1\u606f\uff1a Ausbildung\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\u5316\uff09"} +{"id": "2005620", "video_name": "86ab987e-192f-505b-b7a7-820f60c3bf12", "text": "\u8150\u70c2\u7684\u6728\u5934\u5728\u4ed6\u4eec\u7684\u811a\u4e0b\u560e\u5431\u4f5c\u54cd\u3002"} +{"id": "1003748", "video_name": "452672de-2b92-5e01-9d08-b969ebd4c4c8", "text": "\u795e\u79d8\u5973\u5b50\u4ece\u5821\u5792\u4e2d\u51fa\u73b0\u76843D\u52a8\u753b\u89c6\u9891"} +{"id": "4003808", "video_name": "5435f563-5a76-5e1e-b279-a0d2b23c4e22", "text": "\u4e00\u4e2a\u7a7f\u7ea2\u8272\u6bdb\u8863\u7684\u7537\u5b69\uff0c\u9762\u5411\u955c\u5934\uff0c\u6e05\u6670\u7684\u9ec4\u8272\u80cc\u666f\u3002"} +{"id": "1004356", "video_name": "506126a0-3d2e-57ac-8aea-a5a5f68f7ed2", "text": "\u8bb8\u591a\u5c0f\u578b\u6218\u6597\u673a\u4ee58K\u56fe\u50cf\u8d28\u91cf\u5feb\u901f\u98de\u5411\u5730\u7403\u3002"} +{"id": "4002373", "video_name": "0446fbc4-9dc6-5244-9d63-8337323cb266", "text": "\u5a92\u4f53\u3001\u8bb0\u8005\u548c\u65b0\u95fb\u5de5\u4f5c\u8005\u5728\u54e5\u7279\u5f0f\u57ce\u5e02\u4e2d\u5fc3\u7684\u5e02\u653f\u5385\u3002"} +{"id": "1004973", "video_name": "5be3ff49-f52f-555b-9959-d22d9a7c8f71", "text": "\u4ee5 Vasarely \u98ce\u683c\u4e3a\u4e3b\u9898\uff0c\u63cf\u7ed8\u4e86\u4e00\u5e45\u84dd\u8272\u80cc\u666f\u4e0a\u5e03\u6ee1\u7ea2\u8272\u7f42\u7c9f\u82b1\u7684\u5c71\u5761\u666f\u89c2\u3002"} +{"id": "8003104", "video_name": "0f5557fd-3c04-5088-b4ac-3455b510aa32", "text": "\u5409\u4ed6\u7684\u7434\u5f26\u65ad\u4e86\u3002"} +{"id": "4002337", "video_name": "085aa0db-bf7c-5cec-967b-2f37dea3fb1c", "text": "\u80cc\u666f\u662f\u672a\u6765\u4e3b\u4e49\u7684\u57ce\u5e02\uff08\u62e5\u6709\u975e\u5e38\u9ad8\u7684\u6469\u5929\u5927\u697c\uff1b\u878d\u5408\u73af\u5883\u98ce\u683c\uff09\uff1b\u524d\u666f\u4e2d\u6709\u4e24\u4e2a\u4eba\u6b63\u5728\u4ea4\u8c08\uff08"} +{"id": "2004534", "video_name": "fcbaec7c-f087-5b4a-875b-80919660affe", "text": "\u4e00\u4e2a\u661f\u7a7a\u4ee5\u98de\u821e\u7684\u65b9\u5f0f\u5feb\u901f\u79fb\u52a8\uff0c\u4ece\u98de\u8239\u7684\u89d2\u5ea6\u6765\u770b\u3002"} +{"id": "0003728", "video_name": "4277c032-3cc2-5e87-9704-97ed3f2da43b", "text": "\u5728\u6e38\u6cf3\u6c60\u91cc\u6709\u4e00\u4e9b\u9c7c\uff0c4K 16:9\u3002"} +{"id": "6004723", "video_name": "3eb2de45-c350-5478-8965-f2b4930ded77", "text": "\u8331\u5229\u53f6\u65af\u00b7\u51ef\u6492\u548c\u4ed6\u7684\u519b\u961f\u62b5\u8fbe\u852c\u83dc\u56ed\u91cc\u7684\u571f\u8457\u6751\u5e84\uff0c\u6751\u6c11\u4eec\u611f\u5230\u60ca\u8bb6\u3002"} +{"id": "3006091", "video_name": "62eb9721-1f40-51ac-b995-711373241eba", "text": "\u8ba9\u5973\u5b69\u7b11\u7740\u770b\u7740\u6211\u4eec\u3002"} +{"id": "0006092", "video_name": "267815f7-236c-5bb1-a62c-5aa4ec70a38d", "text": "\u7537\u5b50\u5728\u8dcc\u843d\u65f6\u4f18\u96c5\u5730\u8df3\u821e\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002066", "video_name": "5edb330a-62fa-568f-a9a8-231fcb075214", "text": "\u9ed1\u8272\u7684\u767d\u8272\u5927\u7406\u77f3\u5361\u901a\u98ce\u683c\u3002"} +{"id": "0003324", "video_name": "3ba79156-0b3e-54b4-ae0a-bfb3b0defb6f", "text": "\u4e00\u4e2a\u5c71\u5730\u81ea\u884c\u8f66\u624b\u6b63\u5728\u8df3\u8dc3\u4e00\u4e2a\u5927\u7684\u6ce5\u571f\u8df3\u8dc3\uff0c\u5468\u56f4\u662f\u5f00\u9614\u7684\u7530\u91ce\u548c\u8fdc\u5904\u7684\u5c71\u8109\u3002"} +{"id": "6004452", "video_name": "4f26c25c-0474-58eb-8b4e-3255fc90a2d5", "text": "\u620f\u5267\u6027\u7684\uff0c\u5728\u660e\u4eae\u7684\u6d77\u6d0b\u4e2d\u7684\u73ab\u7470\u82b1\u74e3\u65c1\u8fb9\uff0c\u4e00\u8258\u91d1\u8272\u7684\u8239\uff0c\u51b0\u51b7\u7684\u611f\u89c9\u3002"} +{"id": "0004746", "video_name": "0e93de1e-d041-5c7e-b312-4866bd7ed39c", "text": "\u81ea\u7531\u5973\u795e\u50cf\u8df3\u4e0b\u53f0\u5ea7\u3002"} +{"id": "1006062", "video_name": "6f4c6501-76ec-55dc-817b-16c46b2517af", "text": "\u5012\u584c\u57ce\u5e02\u7684\u80cc\u666f\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u80cc\u5bf9\u7740\u5012\u584c\u7684\u57ce\u5e02\uff0c\u51fa\u73b0\u5728\u5c4f\u5e55\u4e2d\u592e\u3002"} +{"id": "4002694", "video_name": "fd5d5420-c079-5a5e-9f4c-6db4aa487b42", "text": "\u827a\u672f\u7528\u54c1\u6536\u85cf\uff0c\u76f8\u673a\u53d8\u7126\u3002\u4fe1\u606f\uff1aRECIT ARTS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004508", "video_name": "d6e9a665-4c9c-5565-9535-5442c6c5c74f", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u6b63\u5728\u5176UFO\u98de\u8239\u5185\u89c2\u770b\u5c4f\u5e55\u3002"} +{"id": "0004532", "video_name": "0abc0175-11ca-5b39-8785-520ee32fff46", "text": "\u5728\u7f1d\u7eab\u673a\u65c1\u8f9b\u52e4\u5de5\u4f5c\u7684\u4eba"} +{"id": "0004848", "video_name": "10389ca2-b65e-5e16-a96f-4ba00d1cc1c3", "text": "\u4e00\u540d\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u6b63\u5728\u4e00\u6761\u8def\u4e0a\u9a91\u884c\uff0c\u89c6\u9891\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "3006713", "video_name": "2ed3e411-a3cf-5960-984f-e83ce14d0568", "text": "\u5361\u901a\u300aZapp Branigan\u300b\u8ba8\u538c\u4ed6\u7684\u5730\u4e0b\u529e\u516c\u5ba4\uff1a\u9ad8\u5c71\u4fdd\u9556\u6293\u4e86\u4e00\u4e2a\u4eba\u5f53\u4eba\u8d28\uff0c3D\u52a8\u753b\uff0c\u6444\u50cf\u673a\u5411\u5916\u5e73"} +{"id": "3006519", "video_name": "de58d790-ea61-5725-9c63-1adcef67355c", "text": "\u7d2b\u8272\u7684\u5e0c\u814a\u795e\uff0c\u5965\u6797\u5339\u65af\u82b1\u56ed\uff0c\u706f\u5149\uff0c4K AR 9:16"} +{"id": "5001361", "video_name": "c7e35e38-c3e1-5c30-a12d-b49b36094f8a", "text": "\u5973\u5b69\u8df3\u8dc3\uff0c\u8d85\u903c\u771f\uff0c4K\u5206\u8fa8\u7387\uff0c\u9ad8\u8f9b\u70f7\u6e32\u67d3\uff0c\u9ec4\u91d1\u65f6\u6bb5\u7167\u660e\uff0c\u667a\u80fd\u6e32\u67d3\uff0c\u7535\u5f71"} +{"id": "8002077", "video_name": "f57cf4f6-2bac-5a07-b8cc-0f828f4ea858", "text": "Dota 2\u4e2d\u7684\u53ec\u5524\u5e08\u6b63\u5728\u4e3a\u8fdc\u53e4\u4e4b\u6218\u505a\u51c6\u5907\uff0c\u8fdc\u65b9\u7684\u89c6\u9891\u3002 \n\nSource sentence: The Great Wall of China is a world-renowned architectural wonder that"} +{"id": "3006433", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "\u73b0\u5b9e\u76848K UHD\u884c\u661f\u4e0e\u53e6\u4e00\u4e2a\u884c\u661f\u5728\u592a\u7a7a\u4e2d\u53d1\u751f\u78b0\u649e\u5e76\u4ea7\u751f\u7206\u70b8\u6027\u51b2\u51fb\u3002"} +{"id": "2003956", "video_name": "8975eff5-1567-5373-a200-e4cbf49d85b8", "text": "\u4e66\u9875\u7ffb\u8f6c\u3002"} +{"id": "7002148", "video_name": "08307182-e97e-578d-a1ea-0ab5573af196", "text": "\u7535\u5f71\u9662\u91cc\u52a8\u6f2b\u98ce\u683c\u7684\u5f71\u5385\uff0c\u5730\u4e0a\u7559\u4e0b\u4e86\u7206\u7c73\u82b1\u76d2\u5b50\u3002"} +{"id": "8003443", "video_name": "579ff489-056d-558b-8d00-3e9bc082ba64", "text": "\u7eff\u5de8\u4eba\u5168\u901f\u51b2\u5411\u94a2\u94c1\u4fa0\uff0c\u7559\u4e0b\u4e00\u8def\u7834\u574f\u3002"} +{"id": "6004960", "video_name": "7fc2586d-0b9f-590b-a38b-dc44499a5391", "text": "\u6d41\u52a8\u81ea\u5982\u7684\u72ec\u7acb\u62bd\u8c61\u827a\u672f\u7535\u5f71\u3002"} +{"id": "1006539", "video_name": "77cb61a2-2784-5c98-b9de-dff132ed4ca1", "text": "\u7535\u5f71\u5236\u4f5c\uff1a\u4e00\u4e2a\u6709\u7740\u7c89\u8272\u6807\u5fd7\u5e76\u4e14\u5199\u7740PROXFON\u5b57\u6837\u7684\u5927\u578b\u5546\u4e1a\u5efa\u7b51\uff0c\u8bf7\u786e\u4fdd\u5728\u89c6\u9891\u4e2d\u5199\u4e0aPROXFON\u3002"} +{"id": "4004994", "video_name": "89703f4e-ca19-53f3-b8e2-67bb94171957", "text": "\u5c71\u533a\u7266\u725b\u7267\u6c11\u5531\u7740\u56e2\u7ed3\u4e4b\u6b4c\uff0c\u5e7f\u89d2\u89c6\u89d2\u4e0b\u7684\u753b\u9762\u3002"} +{"id": "1003887", "video_name": "47ab2877-3913-5d6e-bca3-3c1297009c22", "text": "\u6cf0\u52d2\u00b7\u675c\u5c14\u987f\u6234\u7740\u70df\u6597\uff0c\u80cc\u5bf9\u7740\u5230\u5904\u5f25\u6f2b\u7740\u70df\u96fe\u7684\u9ed1\u6697\u6218\u533a\u8d70\u5f00\uff0c\u753b"} +{"id": "0004380", "video_name": "08050d16-bf65-5faa-b00c-d98e761f4698", "text": "\u5c55\u793a\u4e00\u4e2a\u5c0f\u6751\u5e84\u7684\u573a\u666f\uff0c\u4e00\u53ea\u597d\u5947\u806a\u660e\u7684\u7334\u5b50\u5750\u5728\u6811\u679d\u4e0a\u3002\u5728\u7334\u5b50\u65c1\u8fb9\uff0c\u4e00\u6761\u61d2"} +{"id": "1006263", "video_name": "72b223ad-e950-56cc-86c7-b0a20adef9fd", "text": "\u56db\u4e2a\u4eba\u5728\u4e00\u4e2a\u53f2\u8bd7\u822c\u7684\u65c5\u7a0b\u4e2d\u3002"} +{"id": "8003379", "video_name": "d4b1543e-7415-5ad8-a0bc-e4a30a798a38", "text": "\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u53e4\u8001\u4e2d\u4e16\u7eaa\u57ce\u5821\u80cc\u666f\u4e0b\uff0c\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u8349\u5730\u4e0a\u55b7\u9999\u6c34\uff0c16k\u3002"} +{"id": "2005129", "video_name": "563bcca4-fc24-573a-9198-c4105df92326", "text": "\u98de\u821e\u7684\u7a97\u5e18\uff0c\u5973\u4eba\u70f9\u996a\uff0c\u95ea\u70c1\u7684\u706f\u5149\u3002"} +{"id": "1004584", "video_name": "5544899f-cf0e-5f8a-9ce4-ff31b9a14f68", "text": "\u5728\u591c\u665a\u57ce\u5e02\u7684\u80cc\u666f\u4e0b\uff0c\u753b\u51fa\u62bd\u8c61\u6c7d\u8f66\u5f62\u72b6\u7684\u7ebf\u6761\u3002"} +{"id": "4002168", "video_name": "095ad103-602b-50c6-9e08-e7f5dcc10fa1", "text": "\u57fa\u4e8e\u8fd9\u5f20\u56fe\u7247\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\u52a8\u753b\uff0c\u5927\u884c\u661f\u8981\u5728\u4e2d\u592e\u8fd0\u52a8\u3002\u884c\u661f\u5e94\u8be5\u56f4\u7ed5\u4e2d\u5fc3\u70b9\u65cb\u8f6c\uff0c\u5b83\u4eec\u7684\u8fd0\u52a8\u5e94\u8be5\u662f\u903c\u771f\u7684"} +{"id": "0006778", "video_name": "3304870b-dda2-5ed6-9758-65557a53d219", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u827a\u4f0e\uff0c\u914d\u6709\u94f6\u8272\u548c\u7ea2\u5b9d\u77f3\u60c5\u611f\u5316\u7684\u98ce\u666f\u3002"} +{"id": "2007816", "video_name": "6eb363f0-ce06-52ae-9eab-05c3b80f8a9e", "text": "\u7ea6\u745f\u592b\u73b0\u5728\u7edf\u6cbb\u7740\u57c3\u53ca\u56fd\u5bb6\uff0c\u903c\u771f\u7684\u3002"} +{"id": "4003444", "video_name": "2ecb441a-eaac-56c7-880d-177e6a84c3f3", "text": "\u53e4\u4ee3\u4e2d\u56fd\u7f8e\u4e3d\u7684\u98ce\u666f\uff08\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\uff09"} +{"id": "0005569", "video_name": "1d1538e0-3a52-5533-8eb0-b94571745698", "text": "\u7535\u68af\u5185\u90e8\uff0c\u95e8\u5df2\u5173\u95ed\uff0c\u611f\u89c9\u5c31\u50cf\u4f60\u5728\u91cc\u9762\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u7535\u5f71\u5f0f\u3002"} +{"id": "3006647", "video_name": "c60ece6e-ea4b-562b-b4ce-1025910289bb", "text": "\u4e00\u4e2a\u540d\u53ebCHEMBAN\u7684\u4eba\u5f62\u4e4c\u9e26\uff08\u4e00\u79cd\u7fbd\u6bdb\u95ea\u70c1\u5982\u7fe1\u7fe0\u7684\u795e\u79d8\u751f\u7269\uff09\u5728\u5929\u7a7a\u4e2d\u5a01\u4e25"} +{"id": "4004884", "video_name": "5b5aee36-a9f1-5afc-b1e7-c083dc2cdfef", "text": "\u4e00\u95f4\u660f\u6697\u7684\u529e\u516c\u5ba4\u91cc\uff0c\u5458\u5de5\u6b63\u5728\u52a0\u73ed\u5de5\u4f5c\u3002"} +{"id": "2005045", "video_name": "7a500b5c-5406-530a-92fd-4ff48d353189", "text": "\u7537\u5b50\u5728SUP\u677f\u4e0a\u6454\u5165\u6c34\u4e2d\u3002"} +{"id": "1004534", "video_name": "54473143-c332-57f0-8573-3681e8eca8ee", "text": "Source sentence: Liam: The charismatic leader of the group, driven by a sense of adventure.\n\nTranslation: \u83b1\u59c6\uff1a\u56e2\u961f\u4e2d\u5177\u6709\u9886\u8896\u9b45\u529b\u7684\u4eba\uff0c\u53d7\u5192\u9669"} +{"id": "1004281", "video_name": "4f294d6f-414c-5cb5-b4e2-87df2458919b", "text": "\u6355\u6349\u5230\u4e00\u4f4d\u5934\u53d1\u5377\u66f2\u3001\u68d5\u8272\u773c\u775b\u7684\u7537\u5b69\u8d70\u8fdb\u95e8\u53e3\u7684\u623f\u95f4\u5185\u955c\u5934\u89c6\u89d2\u3002"} +{"id": "1004676", "video_name": "56e58a8e-d824-56a2-8158-bdf05bdbd461", "text": "\u67f4\u72ac\u5728\u8d70\u5eca\u4e0a\u5feb\u901f\u5954\u8dd1\uff0cOctane\u6e32\u67d3\uff0c\u903c\u771f\u7684\u56fe\u5f62\uff0c\u79fb\u52a8\u7684\u80cc\u666f\n\nSource sentence: I want to order a large pepper"} +{"id": "5001621", "video_name": "a26af60c-adbd-59b5-9b9b-c6b9d9f76ffa", "text": "\u708e\u708e\u590f\u65e5\u7684\u70c8\u65e5"} +{"id": "8001985", "video_name": "fae848be-38d6-5116-880b-4faff9d833b3", "text": "\u4e00\u4e2a\u52a8\u6f2b\u7537\u5b69\u89d2\u8272\u5750\u5728\u684c\u5b50\u540e\u9762\u7684\u6905\u5b50\u4e0a\uff0c\u5979\u7684\u670d\u88c5\u989c\u8272\u662f\u9ed1\u8272\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003183", "video_name": "aeb27d4e-028b-5354-84f2-f88ecf3909d4", "text": "\u4ed6\u4eec\u624b\u7275\u624b\u7a7f\u8d8a\u8471\u90c1\u7684\u68ee\u6797\uff0c\u6500\u767b\u9ad8\u8038\u7684\u5c71\u5cf0\uff0c\u8fd8\u5728\u95ea\u70c1\u7684\u6e56\u6cca\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0006865", "video_name": "34722082-e031-58bc-bc93-9ca625d81d60", "text": "\u72d7\u53eb\u58f0\uff0c\u67d4\u548c\u7684\u98ce\uff0c\u9ed1\u8272\u5a01\u5c14\u58eb\u67ef\u57fa\u7ad9\u5728\u4e00\u95f4\u5706\u6728\u5c0f\u5c4b\u7684\u95e8\u5eca\u4e0a\uff0c\u5468\u56f4\u662f\u5e38\u9752\u677e"} +{"id": "2004865", "video_name": "829288df-177d-572f-93f0-062f4e69886b", "text": "\u4e00\u4e2a\u9762\u5b54\u4ece\u9ed1\u6697\u4e2d\u6d6e\u73b0\u51fa\u6765\u3002"} +{"id": "1006976", "video_name": "7fa92626-a1b6-5fee-8005-fd9384c8441c", "text": "\u90a3\u4e2a\u7537\u4eba\u50cf\u706b\u67f4\u4e00\u6837\u4eae\u8d77\u6765\u3002"} +{"id": "2006573", "video_name": "684b55e5-9af4-5e77-806d-8e1b6826ab51", "text": "\u4e00\u5bb6\u7f8e\u4e3d\u7684\u9910\u5385\uff0c\u684c\u5b50\u4e0a\u6446\u7740\u7f8e\u5473\u7684\u4e0d\u540c\u98df\u7269\u3002\u9707\u52a8\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7004441", "video_name": "41288b5f-b287-59e7-9957-0cc935196e30", "text": "\u6e38\u6cf3\u6c60\u4e2d\u7f8e\u4e3d\u7684\u5973\u4eba\u559d\u7740\u5564\u9152\u3002\n\nSource sentence: I love eating sushi with friends. \n\u6211\u559c\u6b22\u548c\u670b\u53cb\u4eec\u4e00\u8d77\u5403\u5bff\u53f8"} +{"id": "2007979", "video_name": "6a27d959-34d1-5805-917d-e666e84e433c", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u53a8\u623f\uff0c\u8981\u6c42\u4ed6\u7684\u59bb\u5b50\u6ce1\u8336\u3002"} +{"id": "2007631", "video_name": "62879bc9-9eca-5703-8306-41e4e90ce9c3", "text": "\u5e74\u8f7b\u7537\u5b50\u7684\u773c\u775b\u5f88\u75b2\u5026\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u4ec5\u5c55\u73b0\u773c\u90e8\u7279\u5199\u3002"} +{"id": "1005424", "video_name": "639aff3d-84a2-5231-bb52-5faf72bbec83", "text": "\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u4e00\u4e2a\u8001\u6cd5\u5b98\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u524d\u6709\u4eba\u5728\u8bf4\u8bdd\u5e76\u7528\u624b\u52a8\u4f5c\u3002"} +{"id": "0006685", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u60ac\u6302\u5728\u5929\u7a7a\u4e2d\uff0c\u6708\u4eae\u548c\u661f\u661f\u3002"} +{"id": "1006175", "video_name": "71054653-5be1-5798-823c-b19acc8ca8c6", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u8bb8\u591a\u6751\u6c11\u5728\u68ee\u6797\u91cc\u653e\u7f8a\u3002"} +{"id": "1004696", "video_name": "574d1fbf-04ad-56d9-95ef-4d2bf96f83c3", "text": "\u4e00\u5757\u5730\u677f\u4e0a\u6709\u4e00\u4e2a\u5706\u5f62\u7684\u6d1e\uff0c\u8db3\u591f\u4e00\u4e2a\u4eba\u94bb\u8fdb\u53bb\u3002"} +{"id": "3006203", "video_name": "f05eb27d-9545-5b55-b16f-43ef89104d80", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u5728\u8def\u706f\u4e0b\uff0c\u80cc\u666f\u6709\u98ce\uff0c\u6811\u53f6\u98d8\u843d\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "2005142", "video_name": "1972ea7d-0949-515f-a5be-a5c2c2206826", "text": "\u7535\u5f71\u573a\u666f\uff0c\u80ae\u810f\u7684\u82f1\u56fd\u5854\u697c"} +{"id": "4004607", "video_name": "a57c5386-00f9-561c-8a48-29e855f6a889", "text": "\u6765\u81ea\u300a\u70ed\u7ebf\u8fc8\u963f\u5bc6\u300b\u548c\u300a\u94f6\u7ffc\u6740\u624b2049\u300b\u7684\u5939\u514b\uff0c\u4f60\u770b\u8d77\u6765\u5f88\u5b64\u5355\uff0c\u6211\u53ef\u4ee5\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898"} +{"id": "2005821", "video_name": "d16874d6-f22a-59e7-82c3-71093464cd5c", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u6591\u70b9\u7f13\u6162\u5730\u5411\u5730\u7403\u98d8\u843d\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9"} +{"id": "2005384", "video_name": "09cbfbac-5dd6-5806-a833-3547e12956f4", "text": "\u975e\u5e38\u5b0c\u5c0f\u6027\u611f\u7684\u5973\u5b69\u7a7f\u8457\u672a\u4f86\u611f\u5341\u8db3\u7684\u77ed\u8ff7\u4f60\u88d9\u5728\u672a\u4f86\u57ce\u5e02\u524d\u8d70\u8def\u3002"} +{"id": "6004368", "video_name": "251fa166-36ef-5604-a530-7f68b3ea4659", "text": "\u585e\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u6b63\u5728\u601d\u8003\u4e00\u4e2a\u795e\u5947\u7684\u89e3\u51b3\u65b9\u6848\uff0c\u6c89\u601d\u7740\u3002"} +{"id": "8001394", "video_name": "6e914ffe-baad-5a45-9f76-45076980e7e1", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5305\u542b\u9ed1\u767d\u5bf9\u6bd4\u7684\u8f6c\u573a\u4ee5\u53ca\u9971\u548c\u5ea6\u9ad8\u7684\u753b\u9762\uff0c\u52a0\u5165\u95ea\u95ea\u53d1\u5149\u7684\u7279\u6548\u6765\u8868\u73b0\u66f2\u76ee\u7684\u52a8\u611f\u4e0e"} +{"id": "8002418", "video_name": "9790f604-5623-5bcb-9aa1-ac1ca322cead", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u957f\u6905\u4e0a\uff0c\u5728\u68ee\u6797\u91cc\u8bfb\u4e66\u3002"} +{"id": "4003007", "video_name": "116aee84-44cf-5c13-9e76-e26f211b2029", "text": "\u7537\u5b69\u5728\u9633\u5149\u4e0b\u8bfb\u4e86\u4e00\u672c\u6709\u673a\u5668\u4eba\u7684\u4e66\u3002"} +{"id": "2006287", "video_name": "38fab9a7-f235-5fd6-8365-9da921e48b53", "text": "\u7ffb\u8bd1\uff1a\u66fe\u7ecf\u4f5c\u4e3a\u68ee\u6797\u4e4b\u738b\u7684\u72ee\u5b50\uff0c\u75c5\u5f97\u975e\u5e38\u4e25\u91cd\u3002"} +{"id": "6003835", "video_name": "7e6857e9-3e32-572e-82f7-d8104229491c", "text": "\u65b0\u5a18\u7a7f\u7740\u83b1\u6069\u52a0(Lehenga)\u65cb\u8f6c\uff0c\u5370\u5ea6\u65b0\u90ce\u7a7f\u7740\u590f\u74e6\u5c3c(Sherwani)\u4ece\u7bee\u5b50\u91cc"} +{"id": "8002176", "video_name": "c25ed8af-7bcf-5cda-83d5-930707638c6e", "text": "\u79fb\u52a8\u7aef\u4eba\u8138\u8bc6\u522b\u5e94\u7528\u622a\u56fe"} +{"id": "0006513", "video_name": "2dd98d9c-a169-5b69-90a0-4622d837cc35", "text": "\u4e95\u76d6\u88ab\u6c34\u6df9\u6ca1\u3002"} +{"id": "0003662", "video_name": "414323bd-8f38-5b36-9dc8-fabffd1657d4", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u4ece\u4e00\u4e2a\u6709\u4eba\u5c45\u4f4f\u7684\u5de8\u578b\u8611\u83c7\u661f\u7403\u8d77\u98de\u3002\u8000\u773c\u7684\u767d\u5929\u5929\u7a7a\u3002\u903c\u771f\u7684"} +{"id": "3005454", "video_name": "4156baa6-e3a2-57bb-bd72-e04e97f1ecb8", "text": "\u4e00\u67b6\u8001\u5f0f\u5531\u7247\u673a\u64ad\u653e\u5531\u7247\u7684\u97f3\u4e50\u89c6\u9891\u98ce\u683c"} +{"id": "4002996", "video_name": "01578316-af15-5221-9a96-8b611959f108", "text": "\u4e00\u5f20\u753b\u9762\u4e2d\uff0c\u4e00\u53ea\u72ee\u5b50\u6b63\u5728\u5403\u706b\u8f66\u3002"} +{"id": "8003731", "video_name": "85ef84ab-2e29-5e6a-872a-28ab979e4d12", "text": "\u6c7d\u8f66\u4eba\u529b\u8f66\u53f8\u673a\u5728\u96e8\u591c\u4e0e\u4e58\u5ba2\u4ea4\u8c08\u3002"} +{"id": "5001469", "video_name": "e8f3b69b-4342-5c2e-95af-2c05fd7f36cd", "text": "\u4eba\u5de5\u667a\u80fd\u7684\u5929\u5802\uff0c\u7528\u5e7b\u5f71\u6162\u52a8\u4f5c\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "1003198", "video_name": "3ad29eee-a2b7-59a1-89fc-dada2269899d", "text": "\u65b0\u5e74\uff0c\u5e26\u7740\u5e0c\u671b\u52c7\u95ef\u672a\u6765\u7684\u4eba\u3002"} +{"id": "3004150", "video_name": "2db9909a-9f84-5738-80ed-b60410712865", "text": "\u5b66\u751f\u5b66\u4e60\u3001\u6559\u5e08\u6388\u8bfe\u3001\u5404\u79cd\u6559\u80b2\u5de5\u5177\u7684\u526a\u8f91\u3002"} +{"id": "0004933", "video_name": "11b7fc84-c934-5a15-9b6a-e624f230d644", "text": "\u4e00\u5f201965\u5e74\u7684\u6781\u5149\u76f8\u7247\uff0c\u989c\u8272\u67d4\u548c\uff0c\u62cd\u6444\u4e86\u4e00\u53ea\u7a7f\u7740\u82ad\u857e\u821e\u88d9\u8df3\u821e\u7684\u72d7"} +{"id": "1004827", "video_name": "5930c37f-a2da-5e52-9be9-24c8d1ea86a3", "text": "\u60f3\u8c61\u4e00\u4e2a\u795e\u79d8\u7684\u751f\u7269\u5230\u8fbe\u4e00\u4e2a\u6751\u5e84\uff0c\u6563\u53d1\u7740\u8ff7\u4eba\u7684\u9b45\u529b\u3002\u8fd9\u4e2a\u795e\u5947\u7684\u751f\u7269\u62e5\u6709\u4e00\u679a"} +{"id": "2007765", "video_name": "8e85cef8-0180-5cd7-89ca-bb3fa9dccb12", "text": "\u672a\u6765\u611f\u5973\u6a21\u8d70\u5728T\u53f0\u4e0a\u3002\u8d85\u903c\u771f\u3002"} +{"id": "6003774", "video_name": "77a7654c-5350-5a12-aaa8-dcf78d9c5cdd", "text": "\u5355\u53ea\u5de8\u578b\u8682\u8681\u6b63\u5728\u6467\u6bc1\u6cf0\u59ec\u9675\u3002"} +{"id": "3006006", "video_name": "25d0b2d5-b4eb-5fff-a6a4-d31defe7fba8", "text": "\u4e00\u4f4d\u7a7f\u7740\u9632\u62a4\u670d\u7684\u5973\u5b69\u8d70\u51fa\u5979\u5c45\u4f4f\u7684\u7b52\u4ed3\uff0c\u770b\u5230\u5730\u5e73\u7ebf\u4e0a\u7684\u5176\u4ed6\u7b52\u4ed3\uff0c\u5468\u56f4\u662f\u6709\u6bd2"} +{"id": "3004787", "video_name": "ef1aa79c-3b0f-569d-97f6-aaabb12f564d", "text": "\u6df1\u591c\u6642\u5206\uff0c\u57283D\u52d5\u756b\u4e2d\u4f7f\u75284K\u89e3\u6790\u5ea6\u3002"} +{"id": "3003472", "video_name": "0396724d-8b08-577e-86ab-92758e4b30a8", "text": "\u4e00\u53f0\u590d\u6742\u7684\u673a\u5668\u4eba\u8eba\u5728\u75c5\u5e8a\u4e0a\u3002"} +{"id": "2005542", "video_name": "a106b629-dc1a-5ec9-b8e3-15e4207e7c83", "text": "\u4e00\u4e2a\u62e5\u6709\u6ce2\u6d6a\u9ed1\u53d1\u7684\u7537\u4eba\u5728\u591c\u665a\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u91cc\u884c\u8d70\uff0c\u4e0b\u7740\u96e8\uff0c\u62cd\u6444\u6210\u7535\u5f71\u822c\u7684"} +{"id": "8003806", "video_name": "e7f97feb-bb73-593d-8ff0-19fed84e416c", "text": "\u6c34\u679c\u5236\u6210\u7684 \u8106 (\u73b0\u4ee3\u5b57\u4f53)"} +{"id": "7002364", "video_name": "a98948ca-1022-5a30-ad4d-09658c9bf92c", "text": "\u81ea\u7136\u7684\u76d0\u5473\u56fe\u6848\u6d41\u7545\u79fb\u52a8\u3002"} +{"id": "2003919", "video_name": "1490e470-65a1-5e5a-8739-9e4e5a51051c", "text": "\u4e00\u4f4d\u6234\u7740\u5934\u5dfe\u7684\u5973\u58eb\u4fef\u8eab\u5728\u68ee\u6797\u91cc\u68c0\u67e5\u8611\u83c7\u3002"} +{"id": "3006511", "video_name": "6bd72fc1-91fa-50bb-8b2c-d79a6000aa54", "text": "\u5728\u8fd9\u4e2a\u7530\u56ed\u8bd7\u822c\u7684\u907f\u96be\u6240\u7684\u6838\u5fc3\uff0c\u4e00\u4e2a\u540d\u53eb\u963f\u65af\u7279\u4e3d\u5fb7\u7684\u5e74\u8f7b\u5973\u5b69\u627e\u5230\u4e86\u5979\u7684\u907f"} +{"id": "6002257", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "\u7f8e\u4e3d\u7684\u5973\u58eb\u6b63\u5fd9\u7740\u4f7f\u7528\u5979\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "1005874", "video_name": "6c14bb01-6ac7-5e4b-94b0-3edd7a11d257", "text": "\u5b50\u5f39\u4ee5\u6bcf\u79d21,500\u82f1\u5c3a\u7684\u901f\u5ea6\u884c\u8fdb\u3002"} +{"id": "2003245", "video_name": "f0571780-eaf8-5134-9002-fe84a437d642", "text": "\u65f6\u4ee3\u6742\u5fd7\u5c01\u9762\u4e0a\u7684\u5916\u661f\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u770b\u8d77\u6765\u5f88\u9177\u3001\u6807\u5fd7\u6027\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7167\u7247\u903c\u771f\uff0c\u65e2"} +{"id": "1006321", "video_name": "73b68879-22c3-5679-a167-1c9bbe5e6519", "text": "\u5728\u704c\u6728\u4e1b\u4e2d\u4f20\u6765\u7684\u6c99\u6c99\u58f0\u8ba9\u838e\u62c9\u505c\u4f4f\u4e86\u811a\u6b65\u3002\u5979\u7684\u5fc3\u5728\u80f8\u8154\u91cc\u731b\u70c8\u8df3\u52a8"} +{"id": "0004243", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "\u7897\u91cc\u7684\u4e00\u5806\u7cd6\u679c"} +{"id": "6003997", "video_name": "e052a36f-5fe0-5c5f-bd9e-cae41778524d", "text": "\u7334\u5b50\u548c\u677e\u9f20\u5728\u4e1b\u6797\u91cc\u76842D\u5361\u901a\u4e2d\u3002"} +{"id": "2005784", "video_name": "4a8b8198-d960-52c1-a3ed-68521ab72194", "text": "\u4e00\u4e2a\u7537\u4eba\u56de\u5fc6\u4ed6\u7684\u5b66\u6821\u65f6\u5149\u548c\u5b66\u6821\u670b\u53cb\u3002"} +{"id": "0003926", "video_name": "45e685e2-45b9-5bad-973b-d52f142f7e7c", "text": "\u751f\u6d3b\u5728\u8d2b\u56f0\u4e2d\uff0c\u9762\u4e34\u7740\u751f\u8ba1\u56f0\u96be\u548c\u7ecf\u6d4e\u538b\u529b\uff0c\u51b3\u5fc3\u6446\u8131\u8d2b\u56f0\uff0c\u5f00\u59cb\u521b\u4e1a\u4e4b\u8def\u3002"} +{"id": "3005806", "video_name": "b8e6c69b-78d4-5ebe-a237-3edc6cae9653", "text": "\u9c7c\u5728\u6d77\u4e2d\u5efa\u9020\u4e9a\u7279\u5170\u8482\u65af\u5e1d\u56fd\u3002"} +{"id": "5001949", "video_name": "8567a249-89cd-5ae1-9415-f399d7f917a9", "text": "\u5728\u9ed1\u767d\u6697\u8272\u8c03\u76844k\u7535\u5f71\u98ce\u683c\u4e0b\uff0c\u6b66\u58eb\u624b\u6301\u5200\u5251\u5728\u68ee\u6797\u4e2d\u51c6\u5907\u6218\u6597\u3002"} +{"id": "8002469", "video_name": "63ecab04-0195-5ac0-b618-675fb50b2080", "text": "\u7531\u9a6c\u91cc\u5965\u5144\u5f1f\u6e38\u620f\u4e2d\u7684\u4f18\u5409\u548c\u4e00\u4e2a\u9a6c\u6876\u8df3\u821e\u3002"} +{"id": "2006547", "video_name": "54999025-b550-596e-8d29-7a9efdd17f5b", "text": "1977\u5e74\u7535\u5f71\u300a\u661f\u7403\u5927\u6218\u300b\u4e2d\u7684\u573a\u666f"} +{"id": "2006548", "video_name": "f8a60d1f-0c13-5c0d-8de6-9518996a3c4f", "text": "\u4ece\u5929\u5802\u843d\u4e0b\u7684\u9999\u8549\u5728\u5149\u675f\u4e2d\u8dcc\u843d\u5230\u5730\u72f1\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5faa\u73af\u64ad\u653e\u7684\u89c6\u9891\u3002"} +{"id": "4003575", "video_name": "ad837537-cd76-5134-82c5-e30fe924116a", "text": "\u4e24\u4e2a\u7537\u4eba\u6b63\u5728\u5531\u6b4c\uff0c\u5176\u4ed6\u4eba\u90fd\u5750\u5728\u9644\u8fd1\u3002"} +{"id": "0006959", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u4ece\u8239\u4e0a\u8bb0\u5f55\u7684\u89c6\u9891\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7003676", "video_name": "5025c8f7-80cc-5af5-9f71-858ab838b237", "text": "\u81ea\u7531\u5973\u795e\u50cf\u88ab\u829d\u58eb\u6c49\u5821\u8986\u76d6\uff0c\u5c61\u83b7\u6b8a\u8363\u7684\u829d\u58eb\u6c49\u5821\uff0c\u5929\u7a7a\u4e2d\u7684\u70df\u706b\u7206"} +{"id": "5001918", "video_name": "82341ba6-a0ba-5b2d-8974-3052891778d0", "text": "\u4e00\u6761\u773c\u955c\u86c7\u5728\u6d77\u6ee9\u4e0a\u73a9\u800d\u3002"} +{"id": "0003159", "video_name": "38470b0c-adc3-52c5-990a-5a58e8f6f03c", "text": "\u9e7f\u4ece\u72d0\u72f8\u9003\u8dd1\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c16:9\u3002"} +{"id": "3004286", "video_name": "48710768-24d5-527d-8d32-83c0224064a8", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u5929\u4f7f\u5f62\u8c61\u5728\u516c\u5143\u524d100\u4e16\u7eaa\u98de\u8fc7\u57c3\u53ca\u3002"} +{"id": "3006535", "video_name": "d5eeb1d3-b712-5e75-983d-f01b46ed889a", "text": "\u65f6\u95f4\u62c9\u7740\u6211\u7684\u624b\u5e26\u6211\u8d70\uff0c\u6211\u50cf\u4e2a\u5b69\u5b50\u4e00\u6837\u8e22\u7740\u77f3\u5934\uff0c\u7a7f\u4e0a\u5939\u514b\uff0c\u7f13\u6162\u800c\u4e0d\u987a\u7545\uff0c\u56e0"} +{"id": "0003374", "video_name": "3c743fb8-6fb2-570b-8571-f1f3075574c3", "text": "\u4e00\u540d\u5973\u5b69\u5728\u6708\u5149\u4e0b\u7684\u6e56\u9762\u4e0a\uff0c\u5728\u6811\u6797\u4e2d\u591c\u95f4\u884c\u8d70\u3002"} +{"id": "0003429", "video_name": "3d61a5fa-8dd8-59cd-a392-f0fb8f6f15e6", "text": "\u7ed9\u6211AI\u7684\u5f62\u8c61\u3002"} +{"id": "0004508", "video_name": "0a445c64-fe0a-5de1-9e87-fbd7398529a5", "text": "\u4e03\u9f99\u73e0\u4e4b\u5b59\u609f\u7a7a\uff08\u6f2b\u753b\u548c\u52a8\u753b\uff09"} +{"id": "2004024", "video_name": "99bbb507-1ee8-5abb-a201-05ed91cf80c9", "text": "\u4e00\u540d\u5973\u5b50\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\uff0c\u624b\u6307\u95f4\u65cb\u8f6c\u7740\u4e00\u9897\u661f\u7cfb\u3002"} +{"id": "2003006", "video_name": "e2b1d353-5da2-5a18-8f13-3bd54548f875", "text": "\u4e00\u4e2a\u4eba\u5728\u4e00\u5f20\u56fe\u7247\u4e2d\u7ed9\u4e00\u68f5\u5c0f\u690d\u7269\u6d47\u6c34\uff0c\u4e0b\u4e00\u5f20\u56fe\u7247\u4e2d\u662f\u4e00\u68f5\u5f00\u6ee1\u82b1\u7684\u5927\u6811\uff0c\u8c61\u5f81\u7740\u901a\u8fc7\u957f\u671f\u7684\u4e0d"} +{"id": "3004401", "video_name": "e71b586b-c9a1-5e18-ad82-859549e068db", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5a01\u5c14\u58eb\u67ef\u57fa\u6b63\u5728\u5e73\u9759\u5730\u7761\u89c9\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "2007063", "video_name": "aaccd207-275a-5458-87d4-01130f0b94be", "text": "\u4e00\u5f20\u9ad8\u54c1\u8d28\u7684\u4e13\u4e1a\u7167\u7247\uff0c\u5c55\u73b0\u4e00\u4e2a\u4ee4\u4eba\u60ca\u53f9\u7684\u5723\u8bde\u8001\u4eba\u5f62\u8c61\uff0c\u5468\u56f4\u662f\u7f8e\u4e3d\u7684\u51ac\u5b63\u96ea\u666f\u3001"} +{"id": "1004191", "video_name": "4d8006b3-8263-5a8e-a36f-ae8ab0c26cd9", "text": "\u4e00\u4f4d\u7a7f\u7740\u5c3f\u4e0d\u6e7f\u7684\u516d\u5c81\u7537\u5b69\uff0c4K\u8d85\u771f\u5b9e\u3002"} +{"id": "2003760", "video_name": "76b819de-688e-5fe2-8d76-bb955d4e4479", "text": "\u53f2\u524d\u7a74\u58c1\u4e0a\u7684\u957f\u6bdb\u8c61\u53e4\u753b\u3002"} +{"id": "0005491", "video_name": "1bc763a6-2e7f-57d2-916b-71e8184e49bc", "text": "\u5409\u5179\u83ab\u5728\u4e00\u573a\u7535\u98ce\u66b4\u4e2d\u524d\u8fdb\u3002"} +{"id": "2005268", "video_name": "621f35f9-abf2-515f-b341-028c8fb995eb", "text": "\u8336\u679c\u6c41\u8eba\u5728\u5e8a\u4e0a\u8bf4\u5531\uff0c\u6444\u50cf\u673a\u5728\u5e8a\u5468\u56f4\u79fb\u52a8\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "1004536", "video_name": "544a9b60-d8f5-5394-ac49-d7d79f7eafa9", "text": "\u82b1\u94b1\u5728\u70df\u706b\u548c\u8fea\u58eb\u5c3c\u5f0f\u7684\u5962\u534e\u5e86\u795d\u4e0a\u4e0d\u5982"} +{"id": "2003156", "video_name": "704a77eb-0b39-5132-a968-26b56657b73c", "text": "\u7236\u4eb2\u548c\u4e00\u4e2a\u5973\u5b69\u5b50\u5728\u80a9\u8180\u4e0a\u7684\u6297\u8bae\u8005\u548c\u793a\u5a01\u8005\u5728\u665a\u4e0a\u805a\u96c6\u5728\u7279\u62c9\u7ef4\u592b\uff0c\u4e3a\u4e00\u4f4d\u51fa\u8272\u7684"} +{"id": "2003832", "video_name": "a1a8aae3-b124-58cf-bbbe-9f8754c6d588", "text": "\u4e00\u5e55\u573a\u666f\u4e2d\uff0c\u4e00\u53ea\u5154\u5b50\u5c55\u73b0\u4e86\u5b83\u7684\u4f1f\u5927\uff0c\u5bf9\u6297\u53e6\u4e00\u53ea\u52a8\u7269\u3002"} +{"id": "3005669", "video_name": "84106cba-860f-5b8c-902b-81de4b765547", "text": "\u6050\u6016\u75f4\u5446\u60ca\u609a\u7535\u5f71\u7684\u751f\u52a8\u955c\u5934\u3002"} +{"id": "8003076", "video_name": "01f075be-111d-5e1d-b381-1a19095af5e3", "text": "\u7ea2\u8272\u80cc\u666f\u7684\u56fe\u7247\u548c\u4e00\u8258\u91d1\u8272\u7684\u8239\u3002\u8fd9\u8258\u8239\u662f\u4f20\u7edf\u7684\u6728\u8d28\u5212\u8247\uff0c\u5e26\u6709\u5f2f\u66f2\u7684\u8239\u5934\u548c\u8239"} +{"id": "2004280", "video_name": "5c9f7ea9-54eb-59ad-aa74-31ef7a0901ba", "text": "\u751f\u6210\u4e00\u5e45\u56fe\u50cf\uff0c\u5c55\u793a\u624b\u5de5\u7eb8\u5f20\u667e\u6652\u5728\u795e\u5947\u7684\u9633\u5149\u4e0b\u3002\u52a8\u6001\u7684\u9633\u5149\u5c04\u7ebf\u5e94\u8be5\u4e3a\u573a\u666f\u589e\u6dfb\u8ff7\u4eba\u7684"} +{"id": "0003612", "video_name": "406d399f-64aa-5bde-a036-6831e598b15d", "text": "\u5927\u706b\u548c\u5929\u4f7f\u7684\u5927\u66b4\u98ce\u96e8\u3002"} +{"id": "2005669", "video_name": "d1d3b232-13d7-57d9-a445-c3b9f578ad65", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5728\u70db\u5149\u4e0b\u5199\u5b57\u7684\u7535\u5f71\u89c6\u89d2"} +{"id": "2003167", "video_name": "0ca1b947-bea4-5f3c-a69d-e66c0f005531", "text": "\u4e00\u4e2a\u6765\u81ea\u897f\u90e8\u7684\u725b\u4ed4\u624b\u62ff\u7740\u67aa\u8d70\u5230\u8fb9\u5883\u5c0f\u9547\u3002"} +{"id": "3006852", "video_name": "0ea06da2-7307-591a-b309-6d7566035c0b", "text": "\u4e00\u4e2a\u7537\u4eba\u8eab\u540e\u6709\u4e00\u7247\u7530\u5730\u3002"} +{"id": "3006213", "video_name": "da528e97-59d4-5984-9f28-48a1e9aaf905", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5c14\u5229\u9a91\u7740\u9a6c\u626e\u6210\u725b\u4ed4\u3002"} +{"id": "7002339", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u5e84\u91cc\u5954\u8dd1\uff0c\u80cc\u666f\u4e2d\u6709\u89c2\u770b\u7684\u4eba\u4eec\uff0c\u91c7\u7528\u52a8\u753b\u827a\u672f\u98ce\u683c\u3002"} +{"id": "3004478", "video_name": "6a7860bc-bd55-561f-9f51-138c393128b5", "text": "\u4e00\u53ea\u5927\u8c61\u8d70\u8fdb\u4e86\u5c4f\u5e55\u3002"} +{"id": "6002914", "video_name": "f186c171-a8be-501f-baa0-aae2ce95273b", "text": "\u5728\u592a\u7a7a\u4e2d\u7684\u6fc0\u5149\u70ae\u6218\u4e2d\uff0c\u751c\u751c\u5708\u98de\u8239\u3002"} +{"id": "2005964", "video_name": "e001f570-3d8d-5cb1-afd9-e30c7ae64c30", "text": "\u4f0a\u83b1\uff0c\u6211\u4eec\u7684\u4e3b\u89d2\uff0c\u4f4f\u5728\u4e00\u4e2a\u8212\u9002\u7684\u519c\u6751\u91cc\uff0c\u5728\u9601\u697c\u91cc\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u672c\u65e7\u7684\u5bb6\u5ead\u65e5\u8bb0\uff0c"} +{"id": "3004496", "video_name": "65763357-d2da-53fe-bab8-43ab0777f235", "text": "\u91cf\u5b50\u9886\u57df\u88ab\u60f3\u8c61\u6210\u5916\u592a\u7a7a\u3002"} +{"id": "2007527", "video_name": "f9d308ff-f7d3-5615-b3ff-52be9a998bf4", "text": "\u5e03\u52a0\u8fea\u5728\u6c99\u6f20\u4e2d\u7a7f\u8d8a\u66b4\u98ce\u96e8\u3002"} +{"id": "7003464", "video_name": "8567a249-89cd-5ae1-9415-f399d7f917a9", "text": "\u5728\u9ed1\u767d\u6697\u8272\u8c03\u76844k\u7535\u5f71\u98ce\u683c\u4e0b\uff0c\u6b66\u58eb\u624b\u6301\u5200\u5251\u5728\u68ee\u6797\u4e2d\u51c6\u5907\u6218\u6597\u3002"} +{"id": "8003693", "video_name": "3b9ee02d-122b-5aab-bf55-b42b8ee4d96b", "text": "\u8fea\u74e6\u91cc\u8282\uff0c\u4e5f\u88ab\u79f0\u4e3a\u6392\u706f\u8282\uff0c\u5728\u5370\u5ea6\u62e5\u6709\u6df1\u539a\u7684\u6587\u5316\u548c\u5386\u53f2\u610f\u4e49\u3002"} +{"id": "1003827", "video_name": "46b46717-f64f-5bd5-b998-7c0343f4232e", "text": "\u5728\u7ebd\u7ea6\u7a7f\u8d8a\u65f6\u7a7a\u65c5\u884c"} +{"id": "3004197", "video_name": "c6829744-b53a-5def-ba7e-12d1107f902b", "text": "Source sentence: \u9752\u86d9\u672b\u65e5\u4e3b\u4e49\u8005\u662f\u6ce8\u5b9a\u8981\u5931\u8d25\u7684\u7235\u58eb\u9ed1\u8272\u7535\u5f71\u98ce\u683c\u768490\u5e74\u4ee3\u548c\u7334\u5b50\u3002\n\nTranslated sentence: \u9752"} +{"id": "1005131", "video_name": "5e95332e-b93c-5840-83b7-9348fb64d1ba", "text": "\u5e74\u8f7b\u5251\u58eb\u5728\u9b54\u6811\u524d\u4e0e\u86c7\u6218\u6597\uff0c\u82f1\u4fca\u5e05\u6c14\uff0c\u8302\u5bc6\u68ee\u6797\uff0c\u68a6\u5e7b\u4e0d\u771f\u5b9e\u7684\u573a\u666f"} +{"id": "1006757", "video_name": "7bb4bc43-6296-5815-8dd8-91505c2dae7a", "text": "\u80cc\u5bf9\u7740\u76f8\u673a\u7684\u60ca\u8273\u5973\u5b50\u5728\u5bb6\u770b\u4e66\u3002\u751a\u81f3\u8fde\u5bb6\u91cc\u7684\u732b\u90fd\u559c\u6b22\u966a\u7740\u5979\u4e00\u8d77\u8bfb\u4e66\u3002"} +{"id": "7003039", "video_name": "f96efee8-ccf2-5088-977a-59aec4994213", "text": "\u6708\u5149\u900f\u8fc7\u7834\u788e\u7684\u7a97\u6237\u8fc7\u6ee4\uff0c\u7167\u4eae\u4e86\u7a7a\u8361\u7684\u6559\u5ba4\u3002\u865a\u5e7b\u7684\u96fe\u6c14\u5728\u684c\u5b50\u5468\u56f4"} +{"id": "3004582", "video_name": "d70bfc3d-cae1-5ab5-9b74-bf8ae9aa2f9d", "text": "\u6c38\u6728\u7684\u9b54\u6cd5\u738b\u56fd\uff0c\u5c55\u73b0\u4e86\u91cd\u805a\u7684\u60c5\u4fa3\u5e78\u798f\u751f\u6d3b\u3002"} +{"id": "0005286", "video_name": "17e3ab20-8579-51cd-8275-b50606e0ea05", "text": "\u5236\u4f5c\u8d5a\u94b1TikTok\u7684\u89c6\u9891\uff0c\u6765\u81ea\u4e00\u4e2a\u7537\u4eba\u8bb2\u8bdd\u5e76\u63d0\u4f9b\u8d22\u52a1\u5efa\u8bae\u3002"} +{"id": "4004940", "video_name": "b9092fa4-9b80-5d2f-812d-9a81c2e52170", "text": "\u4e00\u500b\u60b6\u71b1\u7684\u508d\u665a\u7a81\u7136\u8b8a\u5f97\u66f4\u7cdf\uff0c\u50cf1940\u5e74\u4ee3\u5fb7\u570b\u8868\u73fe\u4e3b\u7fa9\u96fb\u5f71\u4e00\u6a23\uff0c"} +{"id": "0006722", "video_name": "31bc8bf5-6f91-541d-95ec-0c8aa2697f24", "text": "\u7537\u5b69\u518d\u6b21\u5c1d\u8bd5\uff0c\u8fd9\u6b21\u4ed6\u6210\u529f\u98de\u8d77\u6765\u4e86\u3002"} +{"id": "1005878", "video_name": "6c23e7da-917e-511a-9d47-0adc99f2dde8", "text": "\u5546\u4e1a\u5ba3\u4f20\u7247\uff0c\u4e3a\u8840\u86cb\u9ec4\u9171\u74f6\u62cd\u6444\u3002"} +{"id": "6003423", "video_name": "3d6b1334-774f-5388-9869-f35a83c484e9", "text": "\u65b0\u95fb\u6807\u9898\u5e8f\u5217\uff0c\u5c55\u793a\u4eba\u5de5\u667a\u80fd\u6280\u672f\u7684\u8fdb\u5c55\u3002"} +{"id": "0004011", "video_name": "018b3226-2c7f-598f-baed-78c12216df94", "text": "1985\u5e74\u7684\u89c6\u9891\uff0c\u4e00\u5219\u53a8\u623f\u6405\u62cc\u673a\u5546\u4e1a\u5e7f\u544a\uff0c\u5e26\u6709\u6807\u5fd7\u3002"} +{"id": "0005598", "video_name": "1dbfbc4c-4e6e-5066-90ad-c7dfb63884d4", "text": "\u4e00\u4e2a\u5370\u5ea6\u5973\u5b69\u5728\u7535\u5f71\u821e\u53f0\u4e0a\u5f39\u594f\u8d1d\u65af\u7684\u795e\u79d8\u573a\u666f\u3002"} +{"id": "0005075", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "\u5728\u7e41\u534e\u7684\u57ce\u5e02\u4e2d\u82e6\u82e6\u5bfb\u627e\u521b\u4f5c\u7075\u611f\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\uff0c\u611f\u5230\u8ff7\u5931\u548c\u4e0e\u827a\u672f\u7684\u70ed\u60c5"} +{"id": "6003050", "video_name": "fb47d48d-cac0-5ae6-ab3d-0b49d6378d69", "text": "\u4e3b\u9898\u662f\u5f88\u591a\u70df\u706b\uff0cL\u2019aster\u70df\u706b\u7684\u4e3b\u9898\u662f\uff1a2024\u5e74\uff0c\u4f34\u968f\u7740\u96ea\u82b1\u98d8\u843d\u7684\u80cc\u666f\u3002"} +{"id": "3006331", "video_name": "f552b293-47d3-5aaa-b272-dcfec9b97c5f", "text": "\u822a\u884c\u7a7f\u8d8a\u516c\u7406\u3001\u795e\u7ecf\u5143\u548c\u6811\u7a81\u3002"} +{"id": "3005573", "video_name": "5856d6f9-7a7a-568c-939f-57885d9d06d8", "text": "\u4e00\u500b\u7537\u5b69\u7ad9\u5728\u66b4\u9f8d\u4e0a\u65b9\u3002"} +{"id": "4002952", "video_name": "f24f2415-a0aa-570a-b9ce-cd53df9d9f5c", "text": "\u4ed6\u4eec\u627f\u8bfa\u8981\u50cf\u6fc0\u53d1\u51fa\u90a3\u5ea7\u58ee\u4e3d\u7eaa\u5ff5\u7891\u521b\u9020\u7684\u90a3\u4efd\u6df1\u6c89\u7231\u610f\u4e00\u6837\u6df1\u7231\u5f7c\u6b64"} +{"id": "7004326", "video_name": "1ebb0f06-d58b-5ced-9dd6-70cb16974a0e", "text": "\u5728\u4e00\u90e8\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u7535\u5f71\u4e2d\uff0c\u5e7d\u7075\u9762\u5b54\u5728\u9ed1\u6697\u4e2d\u5c16\u53eb\u3002"} +{"id": "1005585", "video_name": "66c72473-1cf9-59d0-956c-2c8e3541eff9", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u8d5b\u535a\u670b\u514b\u5973\u6027\u5065\u8eab\u5f71\u54cd\u8005\u6a21\u7279"} +{"id": "4004965", "video_name": "8935301a-1f87-5295-aed0-660691dd871c", "text": "\u4e00\u4f4d\u4e8c\u5341\u51fa\u5934\u7684\u7f8e\u4e3d\u5973\u5b50\u3002\u5979\u7684\u7ea2\u8272\u957f\u53d1\u81ea\u7136\u5730\u6ce2\u6d6a\u7740\uff0c\u6563\u4e71\u5730\u68b3\u7740\uff0c\u51e0\u7f15\u5934\u53d1\u81ea\u7136"} +{"id": "2005667", "video_name": "a838d3c9-9c10-5d48-b735-28de5ebbca5d", "text": "\u8bf7\u521b\u5efa\u4e00\u5f20\u5305\u542b\u4ee5\u4e0b\u4fe1\u606f\u7684\u56fe\u7247\uff1a\u201c\u5927\u5bb6\u597d\uff01\u6211\u662f\u4e00\u5f20\u4f1a\u8bf4\u8bdd\u7684\u56fe\u7247\u3002\u201d"} +{"id": "6002013", "video_name": "c86f43a4-e153-578e-a626-01b10b1cc7f0", "text": "\u4f20\u8bf4\u4e2d\u7684\u9ec4\u91d1\u9a6c\u94c3\u85af\u5728\u4e91\u5c42\u4e4b\u95f4\uff0c\u6620\u886c\u7740\u592a\u9633\uff0c8K\u8d85\u9ad8\u6e05\u3002"} +{"id": "6004356", "video_name": "9b4efb6c-cd52-5740-8cd8-83e8fc3a1a24", "text": "\u7280\u725b\u4ece\u6cb3\u6d41\u4e2d\u7f13\u7f13\u559d\u5b8c\u6700\u540e\u4e00\u53e3\uff0c\u6162\u6162\u8f6c\u5411\u955c\u5934\u3002\u955c\u5934\u805a\u7126\u5728\u5b83\u7684\u773c\u775b\u4e0a"} +{"id": "6002385", "video_name": "599c0022-e265-54ad-b141-a7f06fe87865", "text": "\u6881\u67f1\u4e0e\u54e5\u65af\u62c9\u548c\u57fa\u591a\u62c9\u57282019\u5e74\u7535\u5f71\u4e2d\u7684\u78b0\u649e\u573a\u666f\u3002"} +{"id": "6004430", "video_name": "5cce958e-0524-51e1-bfcb-c08b3232f7f6", "text": "\u6d77\u6d6a\u5728\u79fb\u52a8\uff0c\u5c0f\u9ec4\u4eba\u4e0d\u8981\u52a8\u3002"} +{"id": "7003547", "video_name": "fe7c5f12-823c-5d61-9be8-71767658e9ae", "text": "\u4e00\u540d\u5efa\u7b51\u5de5\u4eba\u8eba\u5728\u4e00\u4e2a\u5851\u6599\u810a\u690e\u548c\u9888\u90e8\u62c9\u4f38\u5668\u4e0a\u3002"} +{"id": "5001450", "video_name": "f77720dd-31a1-5c88-b77d-a2c3b6f39fa7", "text": "\u725b\u4ed4\u5728\u897f\u90e8\u91ce\u5916\u7684\u7279\u5199\u955c\u5934"} +{"id": "6004188", "video_name": "83265464-84b3-5ce8-ba2a-060cb0c6a551", "text": "\u4e00\u540d\u5973\u5b50\u5f00\u8f66\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u5934\u53d1\u5439\u5728\u7a97\u5916\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u5fc3\u60c5\u6109\u60a6\u3002"} +{"id": "2003441", "video_name": "191c31b0-79c6-542c-a483-9ebf9185c9f7", "text": "AI\u673a\u5668\u4eba\u5728\u672a\u6765\u57ce\u5e02\u4e2d\u7206\u70b8\u3002"} +{"id": "8002748", "video_name": "c4af2575-e015-56a1-ba80-1917bf972f4b", "text": "\u516c\u5143150\u5e74\uff0c\u5e0c\u814a\u4f5c\u5bb6\u5b89\u4e1c\u5c3c\u5965\u65af\u00b7\u72c4\u5965\u6839\u5c3c\u65af\u53d1\u8868\u4e86\u300a\u7a81\u91cc\u5916\u7684\u5947\u8ff9\u300b\u3002"} +{"id": "2004880", "video_name": "c20934a4-40f7-5ed0-afa1-d8f1bb027358", "text": "\u5c0f\u718a\u770b\u7740\u6708\u4eae\u53d8\u5c0f\uff0c\u611f\u5230\u60ca\u8bb6\u3002"} +{"id": "7004112", "video_name": "997669b2-ba76-5861-a95b-725ddc1f31b1", "text": "\u897f\u65b9\u5347\u8d77\u7684\u592a\u9633\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "1006471", "video_name": "76727735-5c08-5e65-9d60-25ab9a9c613a", "text": "\u9ed1\u7329\u7329\u5728\u4f26\u6566\u57ce\u5e02\u7684\u7535\u5f71\u822c\u573a\u666f\u4e2d\u4e0e\u94a2\u94c1\u4fa0\u6218\u6597\u3002"} +{"id": "6004399", "video_name": "378500c8-5851-57bc-9b59-dcb991ec6442", "text": "\u4e00\u4e2a20\u5c81\u7684\u4e2d\u56fd\u5973\u5b69\u5728\u6625\u5929\u5916\u8df3\u821e\u3002"} +{"id": "2006318", "video_name": "ba2d3459-822c-58e4-97c6-123b7c86dc2b", "text": "\u5728\u4e00\u4e2a\u672a\u6765\u5b9e\u9a8c\u5ba4\u4e2d\uff0c\u753b\u9762\u5207\u6362\u5230\u4e00\u4e2a\u7d27\u5f20\u7684\u573a\u666f\uff0c\u5b9e\u9a8c\u5ba4\u7684\u79d1\u5b66\u5bb6\u4eec\u88ab\u5148\u8fdb\u7684\u673a\u5668\u5305\u56f4\u3002\u4e00\u4e2a\u91d1\u5c5e\u5916"} +{"id": "3004051", "video_name": "a89288da-7104-5e8c-bb6c-db47709118ce", "text": "\u8fc7\u5ea6\u81ea\u4fe1\u504f\u89c1\uff1a\u5728\u7279\u5b9a\u9886\u57df\u4e2d\u9ad8\u4f30\u81ea\u5df1\u7684\u80fd\u529b\u6216\u77e5\u8bc6\u3002"} +{"id": "4002012", "video_name": "41779e43-6588-566f-bef5-436d51aa642b", "text": "\u4e00\u53ea\u9f99\u8747\u5728\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "0003496", "video_name": "3e8be8c0-3943-5383-8b2f-a6de6ce46b69", "text": "\u7ea2\u53d1\u3001\u6709\u96c0\u6591\u7684\u5973\u5b69\u5728\u591c\u665a\u8fdb\u5165\u6c99\u6f20\u4e2d\u7684\u533b\u9662\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "4002392", "video_name": "ca2c27f8-dd08-597e-bd8b-f591002de5d1", "text": "\u9f99\u51fa\u73b0\u5728\u6e05\u6670\u68a6\u5883\u524d\uff0c\u91c7\u7528\u7535\u5f71\u822c\u7684\u98ce\u683c\u548c\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2005485", "video_name": "a29f1eb4-bd11-5398-87d9-b39164abd0bf", "text": "\u9a6c\u81ea\u8fbeMiata RF\u6cbf\u7740\u6d77\u5cb8\u7ebf\u884c\u9a76\uff0c\u5915\u9633\uff0c\u5b8c\u6210\u62cd\u6444\uff0c\u58ee\u4e3d\u7684\u7167\u660e\uff0c\u620f\u5267\u6027\uff0c\u53f2\u8bd7\u822c"} +{"id": "0003910", "video_name": "45963451-2119-5fc7-a029-d1cb510ebcc1", "text": "\u89c2\u770b\u5c4f\u5e55\u4e0a\u7684\u4ef7\u683c\u7684AI\u673a\u5668\u4eba\uff0c\u56fe\u50cf\u903c\u771f\uff0c\u7ec6\u8282\u9ad8\u3002"} +{"id": "8001138", "video_name": "3d2d4276-2538-5c15-85e3-6a0055fc55ee", "text": "\u5728\u6728\u684c\u4e0a\u5806\u7740\u4e00\u767e\u4e07\u7f8e\u5143\uff0c\u8d85\u73b0\u5b9e\u768490\u5e74\u4ee3\u3002"} +{"id": "6002985", "video_name": "5a2d406b-0f62-55dc-872e-870c7d60917a", "text": "\u5c71\u9876\u4e0a\u7684\u5de8\u578b\u8611\u83c7\uff0c\u8ff7\u5e7b\u3001\u4eae\u4e3d\u7684\u989c\u8272\uff0c\u8d85\u5199\u5b9e\uff0c\u9e1f\u77b0\u56fe\uff0c\u52a8\u6001\u89c6\u89d2\u3002"} +{"id": "7004107", "video_name": "ca67ddf5-3e77-56c4-91fc-d745b79db552", "text": "\u4fc4\u7f57\u65af\u7684\u963f\u7eb3\u5e15\u5e02\u3002\u5faa\u73af\u52a8\u753b\u3002\u89c6\u9891\uff1a\u6bcf\u79d23\u5e27\u3002"} +{"id": "7003983", "video_name": "bddbaada-bf99-5d08-93cf-edd2688326d6", "text": "\u4e00\u4f4d\u521a\u521a\u6210\u4e3a\u5927\u5b66\u751f\u7684\u5973\u5b69\uff0c\u7ad9\u5728\u5b66\u6821\u524d\u9762\u3002"} +{"id": "0004108", "video_name": "0350c8e2-e20d-5bb0-b388-038f750c7fbb", "text": "\u592a\u9633\u7a81\u7136\u6d88\u5931\u4e86\u3002"} +{"id": "2005850", "video_name": "73b13b87-1755-58a9-a6ff-f51314a7a910", "text": "\u4e00\u6761\u7531\u6c34\u51dd\u6210\u7684\u5de8\u9f99\u5728\u4e2d\u56fd\u8239\u524d\u7684\u6e56\u4e2d\u65cb\u8f6c\u5347\u8d77\u3002"} +{"id": "2005343", "video_name": "d88ad768-9980-5635-a7a3-61002aa4ecd9", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u4ed6\u7684\u6c99\u53d1\u4e0a\uff0c\u5fd9\u7740\u7528\u624b\u673a\u770b\u89c6\u9891\u3002"} +{"id": "1005002", "video_name": "5c71b8fa-5d9d-563d-8412-1b7ebb9af626", "text": "\u52a8\u753b\u300a\u964d\u4e16\u795e\u901a\u300b\u7b2c\u4e09\u5b63\u7684\u7956\u5bc7\u3002"} +{"id": "0005261", "video_name": "1779f47d-9674-5e8b-8f98-2e05b370d411", "text": "\u4e24\u540d\u6b66\u672f\u5bb6\u57284K\u6708\u591c\u4e2d\u640f\u6597\u3002"} +{"id": "3005949", "video_name": "5640553b-30c7-519e-928f-b997eddd00d3", "text": "\u6447\u66f3\u7740\u5934\u53d1\u7684\u575a\u51b3\u5973\u4eba\u3002"} +{"id": "7003411", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "\u4e24\u67b6\u98de\u673a\u76f8\u649e\u4e86\u53cc\u5b50\u5854\uff0c\u5bfc\u81f4\u5efa\u7b51\u7269\u5185\u53d1\u751f\u4e86\u5de8\u5927\u7684\u7206\u70b8\uff0c\u65e2\u6709\u8da3\u53c8\u53ef\u6015\u3002"} +{"id": "3003858", "video_name": "0ad97a96-6c8e-5281-aadc-9e5fa5281272", "text": "\u521b\u9020\u4e00\u4e2a\u4eba\u7c7b\u624b\uff0c\u6240\u6709\u7684\u9759\u8109\u548c\u795e\u7ecf\u90fd\u6e05\u6670\u53ef\u89c1\u3002"} +{"id": "3005375", "video_name": "f228f580-21c2-5084-a9fa-b8a6cde49015", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u5728\u4e00\u8f86\u767d\u8272\u5361\u8f66\u524d\u8d70\u8fc7\uff0c\u88ab\u5e7b\u5f71X\u5b8c\u7f8e\u5730\u6355\u6349\u5230\u7ec6\u8282\u3002"} +{"id": "8002872", "video_name": "8147884a-cf8f-5ee1-9f43-8653ddb71ba7", "text": "\u4e00\u4e2a\u7531Mike Winkelmann\u7ed8\u5236\u7684\u7c89\u8272\u6a21\u7cca\u9ab7\u9ac5\u4eba\u5728\u84ec\u677e\u7684\u4e91\u6735\u4e2d\u5954\u8dd1\uff0c\u80cc\u666f\u662f\u98ce\u5439"} +{"id": "3003104", "video_name": "de814016-021f-5557-94d7-10020c0099a0", "text": "\u767d\u8272\u6c99\u6ee9\u4e0e\u6676\u83b9\u5254\u900f\u7684\u6d77\u6c34\u878d\u4e3a\u4e00\u4f53\u7684\u60ca\u4eba\u7f8e\u666f\u3002"} +{"id": "8001041", "video_name": "a2fd2410-ba2c-51a5-8491-66c3606b462b", "text": "\u4e00\u53ea\u84dd\u773c\u732b\u5728\u5954\u8dd1\u548c\u8df3\u8dc3\u3002"} +{"id": "2005434", "video_name": "6d13c46d-39a6-58ce-bcd2-48399143c4ec", "text": "\u51c6\u5907\u4e00\u5f20\u5361\u901a\u56fe\u7247\uff0c\u5305\u542b\uff1a\u4e00\u7897\u7c73\u996d\u30012\u4e2a\u9e21\u86cb\u3001\u4e00\u4efd\u8471\u82b1\u3001\u76d0\u548c\u98df\u7528\u6cb9\u3002"} +{"id": "1006043", "video_name": "6f027ab3-5145-5a59-aa18-489ff261d7e1", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u5f71\u5728\u8352\u51c9\u3001\u6708\u5149\u7167\u8000\u7684\u8def\u4e0a\u8426\u7ed5\u3002"} +{"id": "2005155", "video_name": "b730d8a8-a277-5400-8cc6-6bfcb2681e0e", "text": "\u4ed6\u8fd8\u52a8\u7528\u6d77\u519b\u53c2\u52a0\u4e86\u5341\u5b57\u519b\u4e1c\u5f81\uff0c\u5e76\u63d0\u51fa\u4e86\u5bf9\u7a46\u65af\u6797\u56fd\u5bb6\u53d1\u52a8\u8d38\u6613\u6218\u7684\u60f3\u6cd5\uff0c\u4ee5\u589e\u5f3a\u767e\u56fd\u6d77"} +{"id": "0005294", "video_name": "17facaaf-72cc-5166-860e-2c4ef2829e5e", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u56fd\u9f99\u5e74\u96c6\u5e02"} +{"id": "7004934", "video_name": "978599ad-79e1-5a50-a956-71fcf7f902b4", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u65e5\u843d\u65f6\u6cbf\u7740\u6d77\u6ee9\u6563\u6b65\uff0c\u4eab\u53d7\u7740\u5e73\u9759\u7684\u6ce2\u6d6a\u548c\u843d\u65e5\u7684\u6e29\u6696\u8272\u5f69\u3002\u4ed6\u7a7f\u7740"} +{"id": "7004498", "video_name": "2e7e58d4-ac76-57d4-b461-10752d034fa3", "text": "\u5386\u53f2\u4e8b\u5b9eYouTube\u77ed\u7247\u4ecb\u7ecd"} +{"id": "7002391", "video_name": "03ec3d93-01aa-548a-9c48-7c01dbc2a336", "text": "\u4e00\u53ea\u6234\u7740\u738b\u51a0\u7684\u9752\u86d9\u5750\u5728\u5ca9\u77f3\u4e0a\u8bf4\u8bdd\u3002"} +{"id": "1003826", "video_name": "46af6585-1ddd-5054-af76-9778246bfc3f", "text": "\u8fd9\u662f\u4e00\u6bb5\u771f\u5b9e\u7684\u9ad8\u5c42\u5efa\u7b51\u65bd\u5de5\u73b0\u573a\u89c6\u9891\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u5854\u5f0f\u8d77\u91cd\u673a\u6b63\u5728\u5c06\u4e00\u4e2a\u7bb1\u5b50\u79fb\u52a8\u5230\u65bd\u5de5\u73b0\u573a\u7684\u6d3b\u52a8\u5e73\u53f0\u4e0a\u3002"} +{"id": "5001566", "video_name": "7a7e5666-da6a-5080-8712-ab196b7f0a08", "text": "\u4e24\u4e2a\u7537\u4eba\u6b63\u5728\u516c\u5171\u6c7d\u8f66\u4e0a\u4e58\u5750\u5e76\u8ba8\u8bba\u7740\u4ec0\u4e48\u3002"} +{"id": "4004878", "video_name": "ac7a6872-8417-5f84-a195-678397558928", "text": "\u8fd9\u4e2a\u4eba\u624b\u6301\u9524\u5b50\uff0c\u8d70\u8fdb\u4e86\u68ee\u6797\u3002\u9644\u4ef61\u3002"} +{"id": "8001042", "video_name": "94600a87-3a39-5100-b906-740ff63cf77c", "text": "\u8fd9\u4e2a\u91d1\u8272\u79cb\u5b63\uff0c\u677e\u9f20\u5728\u68ee\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "3006112", "video_name": "2eb4977a-3563-5df6-992a-7654855692e8", "text": "\u8d77\u59cb\u753b\u9762\u662f\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\uff0c\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u76db\u5f00\u7684\u8349\u5730\u4e4b\u95f4\u3002"} +{"id": "0004693", "video_name": "0d68e07e-5747-5b70-a2b8-190b71a29c17", "text": "\u6770\u514b\u4e00\u76f4\u88ab\u6d77\u6d0b\u548c\u5b83\u7684\u795e\u79d8\u6240\u5438\u5f15\u3002\u4ed6\u6574\u5929\u90fd\u5728\u63a2\u7d22\u6d77\u5cb8\uff0c\u6536\u96c6\u8d1d\u58f3\uff0c\u5e76\u5b66\u4e60\u6816\u606f\u5728"} +{"id": "5001558", "video_name": "a88c8129-8bc5-585d-8fc4-53b02c1bf8cf", "text": "2\u4e2a\u6c49\u5821\u5305\u5728\u6253\u67b6\u3002\u5236\u4f5c10\u79d2\u949f\u7684\u89c6\u9891\u3002"} +{"id": "4004434", "video_name": "b9cf3596-5db6-54bf-a0e9-9999c72c9aa4", "text": "\"\u7f8e\u56fd\u68a6\u7684\u9e21\" \u662f\u8bfa\u66fc\u00b7\u6d1b\u514b\u5a01\u5c14\u7684\u4f5c\u54c1\uff0c\u5b83\u5728\u4e00\u672c\u6742\u5fd7\u5c01\u9762\u4e0a\u79fb\u52a8\u3002"} +{"id": "1006536", "video_name": "77c53159-e6c7-5e55-b5b7-d85116a07d13", "text": "\u739b\u4e3d\u4e9a\u00b7\u666e\u91cc\u9a6c\u7434\u79d1\u7684\u72ec\u7279\u98ce\u683c\u7684\u753b\u4f5c\uff0c\u753b\u7684\u751f\u7269\u6b63\u5728\u505a\u5fae\u5999\u7684\u95f2\u52a8\u3002"} +{"id": "7003229", "video_name": "aeadbfab-3f10-5da5-87bd-7d39b61ce693", "text": "\u53e4\u5df4\u6bd4\u4f26\u57ce\u53ef\u4ee5\u8fdc\u773a\u536b\u661f\u5899\uff0c\u753b\u8d28\u4e3a4K\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "6002436", "video_name": "3fe3cc28-8ad4-5b42-983b-0337f720761e", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u6234\u7740\u592a\u9633\u955c\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "6002056", "video_name": "de47bc3a-c086-5e4d-968d-b71ae738863a", "text": "\u8ba9\u5b69\u5b50\u4eec\u753b\u4e00\u5e45\u753b\uff0c\u8ba9\u8fd9\u5e45\u753b\u7684\u53cd\u5c04\u521b\u5efa\u4e00\u4e2a\u963f\u5854\u56fe\u5c14\u514b\u7684\u8096\u50cf\u3002"} +{"id": "0003348", "video_name": "3bf736f5-482d-5321-b316-5276b9d0bfcd", "text": "\u53d1\u73b0\u65b0\u7684\u5492\u8bed\u548c\u89e3\u9501\u53e4\u8001\u7684\u79d8\u5bc6\u3002"} +{"id": "4003031", "video_name": "b549d375-994d-5071-b1f5-904eff950c9b", "text": "\u8717\u725b\u722c\u4e0a\u4e86\u4e00\u4e2a\u676f\u5b50\uff0c\u91cc\u9762\u6709\u68d5\u8272\u7684\u6db2\u4f53\u3002"} +{"id": "2005160", "video_name": "bb034c7d-2c8c-5f53-a86c-a581c10c3370", "text": "\u7c89\u5f69\u5496\u5561\u63d2\u753b\u3001\u6c34\u5f69\u5496\u5561\u5385\u63d2\u753b\u3001\u5496\u5561\u676f\u3001\u51b0\u5496\u5561\u3001\u62ff\u94c1\u3001\u6d53"} +{"id": "4002437", "video_name": "bac231b6-71d7-5239-91e0-e28abf84fd97", "text": "\u4e00\u53ea\u732b\u5728\u6253\u5b57\uff0c\u7a81\u7136\u5728\u7535\u8111\u5c4f\u5e55\u4e0a\u51fa\u73b0\u4e86\u4e00\u53ea\u8001\u9f20\uff0c\u732b\u60ca\u614c\u5730\u9003\u8d70\u4e86\u3002"} +{"id": "4003378", "video_name": "2ead2923-6047-55a8-ba5b-ee96bd1d352f", "text": "\u4e00\u7897\u5947\u602a\u800c\u975e\u5e38\u5947\u7279\u7684\u610f\u5927\u5229\u9762\uff0c\u7535\u5f71\u5316"} +{"id": "1005430", "video_name": "63c22233-8717-525c-86b3-18518e9e36a3", "text": "\u7e41\u5fd9\u7684\u592a\u7a7a\u6e2f\u4f4d\u4e8e\u4e00\u4e2a\u5927\u578b\u5c0f\u884c\u661f\u57fa\u5730\u4e2d\uff0c\u8239\u53ea\u8fdb\u8fdb\u51fa\u51fa\u3002"} +{"id": "2003855", "video_name": "bf43f87d-0932-59a6-8cce-a94abe98d676", "text": "\u4e00\u53ea\u732b\u5728\u4e00\u6761\u98de\u5929\u7684\u4e2d\u56fd\u9f99\u4e0a\u3002"} +{"id": "7002410", "video_name": "3f4099ec-89cb-5b04-aaf1-64eeed173b37", "text": "\u5df4\u9ece\u4e16\u5bb6\u98ce\u683c\u7684\u94f6\u8272\u51b2\u6d6a\u624b"} +{"id": "4003364", "video_name": "aeaae70b-5442-50a9-b252-6f97badf1c0c", "text": "\u84b8\u6c7d\u673a\u8f66\u7a7f\u8fc7\u68ee\u6797\u3002"} +{"id": "4004804", "video_name": "77ffc081-7325-509a-b9ca-ace5f2902e91", "text": "\u4ee54K\u5206\u8fa8\u7387\uff0c\u5b54\u5b50\u5411\u4eba\u4eec\u8bb2\u8bfe\u3002"} +{"id": "2004741", "video_name": "dad98c3e-5883-5dc7-9ecd-853292913a17", "text": "\u5728\u6587\u660e\u8fb9\u7f18\u7684\u4e00\u4e2a\u5c0f\u9547\u4e0a\uff0c\u751f\u6d3b\u7167\u5e38\u8fdb\u884c\u3002"} +{"id": "2003502", "video_name": "d47553ce-fb36-54bd-9ac8-d73e96f429de", "text": "\u4ed6\u4eec\u7684\u6545\u4e8b\u8bc1\u660e\u4e86\u7231\u7684\u6301\u4e45\u529b\uff0c\u4ed6\u4eec\u77e5\u9053\u4ed6\u4eec\u4f1a\u4e00\u76f4\u5e78\u798f\u5730\u751f\u6d3b\u5230\u6c38\u8fdc\u3002"} +{"id": "1006968", "video_name": "7f7a0998-1a91-5c58-9d71-6db46f2d5274", "text": "\u4e00\u53ea\u52b3\u529b\u58eb\u624b\u8868\u6b63\u5728\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "0003653", "video_name": "410e5f15-6d1b-5b8d-89c7-2b33218e3e94", "text": "\u9ab7\u9ac5\u5750\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u5669\u68a6\u822c\u7684\u573a\u666f\uff0c\u8272\u5f69\u88ab\u51cf\u6de1\u3002"} +{"id": "0006923", "video_name": "355f8c24-3171-5598-9ab4-f551bc0752b9", "text": "\u7a7f\u7740\u6027\u611f\u5185\u8863\u7684\u7f8e\u5973\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "4002129", "video_name": "fc7c5567-7a4b-5371-887b-ad64ce055ad3", "text": "\u7528\u66f4\u591a\u7684\u4eba\u5efa\u9020\u5370\u5ea6\u5bfa\u5e99\u3002"} +{"id": "7002112", "video_name": "73d5070d-30e2-5b82-9a0a-0bbfd7230512", "text": "\u6708\u7403\u8868\u9762\u7684\u201c\u6708\u82393\u53f7\u201d\u6f2b\u6e38\u5668\u7684\u56fe\u50cf\uff0c4K\u771f\u5b9e\u3002"} +{"id": "0006564", "video_name": "2eb5b6fa-c959-518d-8dc5-f0b6291fab47", "text": "\u5e78\u5b58\u8005\u56e2\u4f53\u7684\u4f1a\u9762\uff0c\u9ed1\u6697\u548c\u5bb3\u6015\u7684\u666f\u8c61\u3002"} +{"id": "0004574", "video_name": "0b667894-ed46-57cc-8fb5-43e1fe2b174f", "text": "translation: \u5e15\u7279\u91cc\u514b\u00b7\u8d1d\u7279\u66fc\u71c3\u70e7\u8d85\u4eba\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1006864", "video_name": "7d4d986c-26e5-577f-9cf7-87eaad4f0725", "text": "\u4e00\u5e45\u8be6\u5c3d\u7684\u6cb9\u753b\uff0c\u753b\u7740\u4e00\u4f4d\u8001\u8239\u957f\u5728\u66b4\u98ce\u96e8\u4e2d\u9a7e\u9a76\u4ed6\u7684\u8239\u3002\u6d77\u6c34\u98de\u6e85\u5728\u4ed6\u98ce\u971c"} +{"id": "4002462", "video_name": "277b10b3-99f7-5c90-8788-dd09d1633abe", "text": "\u54e5\u7279\u5f0f\u661f\u8230\u8230\u957f\u5728\u661f\u8230\u6865\u4e0a\uff0c\u54e5\u7279\u98ce\u3001\u52a8\u611f\u3001\u672a\u6765\u611f\u3002"} +{"id": "1005265", "video_name": "60d91b55-116f-5434-84af-40d7337d4d0c", "text": "4K\u753b\u8d28\u653e\u5927\u4e00\u4e2a\u5355\u72ec\u7684\u96e8\u6ef4\uff0c\u5b83\u843d\u5728\u72ee\u5b50\u72d7\u5934\u4e0a\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "5001712", "video_name": "6bcff352-0763-571a-b83c-ff3c6dc1a3c0", "text": "\u4e00\u5f20\u4fef\u89c6\u6708\u7403\u57fa\u5730\u706b\u707e\u7684\u89c6\u89d2\u3002"} +{"id": "1005483", "video_name": "64bcde40-e4ff-51d9-871e-028da665344d", "text": "\u91d1\u5b50\u6ee1\u624b\u7684\u96e8\u4e2d\u843d\u4e0b\u786c\u5e01\u3002"} +{"id": "8002439", "video_name": "14fa349a-3852-5dba-bfaf-a84c7379f726", "text": "\u5feb\u901f\u8fd0\u52a8\uff0c\u903c\u771f\u903c\u5f71\uff0c\u8d85\u9ad8\u6e05\u76844K\u753b\u8d28\uff0c\u673a\u5668\u4eba\u5728\u4eba\u884c\u9053\u4e0a\u7ed9\u4e5e\u4e10\u65bd\u820d\u3002"} +{"id": "3004989", "video_name": "0eaf10dc-f2e8-580c-8523-531e2cd503ed", "text": "\u7535\u5f71\u9ed1\u8272\u7535\u5f71\u3001\u7535\u5f71\u7684\u3001\u7537\u5973\u3001\u9ed1\u6697\u7684\u623f\u95f4\u3001\u80cc\u5bf9\u7740"} +{"id": "0003074", "video_name": "367b618c-63ac-519f-b658-2d54b942a0a5", "text": "\u4e00\u7fa4\u4eba\u624b\u6301\u6807\u8bed\u6297\u8bae\u3002"} +{"id": "5001847", "video_name": "86d11077-5489-55dc-8f94-84f2e90bb58f", "text": "\u5728\u6df1\u7a7a\u4e2d\uff0c\u4e00\u540d\u5b87\u822a\u5458\u5728\u5b87\u5b99\u98de\u8239\u4e2d\u63a5\u6536\u5230\u4e00\u4e2a\u795e\u79d8\u7684\u4fe1\u53f7\uff0c\u5f71\u7247\u8d28\u5730\u4e3a4k\u3002"} +{"id": "8001666", "video_name": "de2691aa-f848-52d7-ad83-4c46e5ef7c0b", "text": "\u4e00\u4efd\u5065\u5eb7\u98df\u54c1\u7684\u76d8\u5b50\u5728\u4e00\u5bb6\u53ef\u7231\u7684\u9910\u5385\u91cc\u3002"} +{"id": "3004050", "video_name": "5545fd97-bf7f-5077-8296-8239f4830011", "text": "\u4e00\u53ea\u732b\u5728\u5bd2\u51ac\u66b4\u98ce\u96ea\u4e2d\u7761\u5728\u7a97\u6237\u4e0a\u3002"} +{"id": "6002699", "video_name": "166f036d-e730-52f5-af7f-976ce25f056a", "text": "\u5728\u8fd9\u7247\u7eff\u6d32\u4e2d\uff0c\u4f4f\u7740\u4e00\u53ea\u667a\u6167\u8001\u4e4c\u9f9fAria\uff0c\u5979\u5df2\u7ecf\u5728\u8fd9\u91cc\u751f\u6d3b\u4e86\u591a\u5e74\u3002Aria\u56e0\u5176\u667a\u6167\u548c"} +{"id": "2003482", "video_name": "52804d01-044d-515a-ac1f-0dd4f5b562de", "text": "\u6211\u4eec\u7ecf\u5386\u4e86\u51e0\u4e2a\u6587\u7269\u635f\u5931\u7684\u65f6\u671f\u3002"} +{"id": "1005639", "video_name": "67abe926-27e3-50fd-8cc3-e49b70423b22", "text": "translation: \u5728\u5de5\u5382\u5236\u9020\u4e00\u5f20\u94a2\u677f\u7684\u8fc7\u7a0b\uff0c\u73b0\u5b9e\u7684\u5236\u9020\u8fc7\u7a0b\u3002"} +{"id": "8002632", "video_name": "83b45ae0-05ed-590d-9614-269f0a44a97d", "text": "\u6df1\u5165\u5176\u4e2d\uff1a\u51dd\u89c6\u9ed1\u6697\uff0c\u6211\u7ad9\u5728\u90a3\u91cc\u60f3\u7740\uff0c\u5bb3\u6015\u7740\uff0c\u660f\u6697\u7684\u5149\u7ebf\uff0c\u6ca1\u6709\u5149\u7ebf\uff0c\u9ed1\u6697\uff0c\u6a21"} +{"id": "3005888", "video_name": "e325f220-5f04-5b20-843b-baa7b97536bc", "text": "\u5728\u8fd9\u9897\u795e\u5947\u7684\u6a61\u5b50\u91cc\uff0c\u677e\u9f20\u53d1\u73b0\u4e86\u4e00\u4e2a\u5145\u6ee1\u4e86\u4f1a\u8bf4\u8bdd\u7684\u52a8\u7269\u548c\u53d1\u5149\u690d\u7269\u7684\u9b54\u6cd5\u4e16"} +{"id": "8001345", "video_name": "eb1361c6-387f-5298-9947-9283a254ab2f", "text": "\u672a\u6765\u58eb\u5175\u7ad9\u5728\u6838\u8611\u83c7\u4e91\u524d\u9762\u7684\u793e\u533a\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "5001664", "video_name": "af108bfa-251a-5c3a-aeae-225a726b282a", "text": "UFO\u5728\u591c\u95f4\u964d\u843d\u767d\u5bab\u3002"} +{"id": "6004640", "video_name": "e178a472-5da2-58af-b584-05c1af0f6b2a", "text": "\u4e00\u4e2a\u6751\u5e84\u91cc\u7684\u95f9\u9b3c\u623f\u5b50"} +{"id": "6003119", "video_name": "10da6a19-d230-5ce2-ab6a-af08572e4a04", "text": "\u4e2d\u4e16\u7eaa\u6b27\u6d32\u4eba\u4eec\u73a9\u800d\u8df3\u821e\u7684\u753b\u9762"} +{"id": "1004590", "video_name": "5567bf3d-fa25-5a9a-a1f5-7305d2278eb9", "text": "\u4e00\u4e2a\u5927\u7ea68\u5c81\u5de6\u53f3\u7684\u7537\u5b69\u5750\u5728\u6811\u4e0a\u8bfb\u4e66\u7684\u89c6\u9891\uff0c\u4ed6\u4ece\u6811\u4e0a\u6454\u4e0b\u6765\u4e86\u3002"} +{"id": "0005535", "video_name": "1c6fa44e-1f8a-5b1b-a1e2-57a164bea31d", "text": "translation: \u5728\u4e00\u4e2a\u66b4\u98ce\u96e8\u7684\u661f\u7403\u4e0a\u7a7a\uff0c\u5e1d\u56fd\u6b7c\u661f\u8230\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "4002377", "video_name": "f27c4e7a-69c6-5622-9d84-3506cc9abd46", "text": "\u4e24\u53ea\u5154\u5b50\u5446\u5728\u697c\u68af\u4e0b\u9762\uff0c\u90a3\u91cc\u7684\u732b\u5f88\u70e6\u4eba\u3002"} +{"id": "3003685", "video_name": "c86a2a64-c846-5bd9-a1bf-3ce6d59c1d6a", "text": "\u4ea7\u751f\u53f2\u8bd7\u7ea7\u7684\u5b89\u5168\u4fdd\u969c\uff0c\u7ed9\u5b98\u65b9\u603b\u7406\u3002"} +{"id": "3004927", "video_name": "97247673-3eee-5264-a25b-84c08240d918", "text": "\u5e9f\u5f03\u6e38\u4e50\u56ed\u5185\u7684\u6469\u5929\u8f6e"} +{"id": "0004579", "video_name": "0b729b4d-4e51-5bf9-a817-cdf763596a00", "text": "\u4e00\u4e2a\u50cf\u5e03\u5170\u5361\u4e00\u6837\u884c\u52a8\u7684\u8857\u9738\u89d2\u8272\u3002"} +{"id": "2003977", "video_name": "fbeb4708-6281-53fb-bb2e-f32971a11f5a", "text": "\u7535\u5f71\u4ee5\u9ed1\u6697\u672a\u6765\u4e3b\u4e49\u73af\u5883\u4e3a\u80cc\u666f\uff0c\u5448\u73b0\u51fa\u903c\u771f\u7684\u753b\u9762\u3002\u4e00\u4e2a\u6124\u6012\u7684\u4eba\u4ece\u7206\u70b8\u7684\u706b\u7130\u4e2d\u8d70\u5411"} +{"id": "2004120", "video_name": "2a2d8999-ffd3-540e-a5c4-e75ae331e045", "text": "\u61d2\u60f0\u52a8\u7269\u5728\u5c0f\u5c4b\u91cc\u5403\u690d\u7269\u76c6\u683d\uff0c\u771f\u5b9e\u4e3b\u4e49\u7535\u5f71\u3002"} +{"id": "6003920", "video_name": "1ce5bb05-785b-5db8-a766-42fad065e66c", "text": "\u8377\u7f57\u5c3c\u83ab\u65af\u00b7\u535a\u65af\u521b\u9020\u51fa\u4e86\u8d85\u73b0\u5b9e\u548c\u590d\u6742\u7684\u573a\u666f\uff0c\u4f7f\u7528\u4e863D\u5efa\u6a21\u8f6f\u4ef6\u3002"} +{"id": "1005516", "video_name": "658cbf97-faad-5604-8cb4-4e77edbf4142", "text": "\u4e00\u90e870\u5e74\u4ee3\u7684\u827a\u672f\u6050\u6016\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u53ea\u72fc\u4eba\u5728\u8352\u5e9f\u7684\u519c\u573a\u5468\u56f4\u6f2b\u6e38\u3002"} +{"id": "5001446", "video_name": "1d6ba2e0-8f56-579d-a6bb-380b78126fc2", "text": "\u53e4\u4ee3\u7687\u5bb6\u73cd\u5b9d\u7684\u9ad8\u8d28\u91cf\u573a\u666f\u5728\u672a\u6765\u3002"} +{"id": "0006957", "video_name": "35dc2c7e-85d8-5bae-9d33-4b028b381d20", "text": "\u53e4\u57c3\u53ca\u91d1\u5b57\u5854\u7684\u5efa\u9020\u3001\u65e5\u843d\u7167\u660e\u3001\u955c\u5934\u95ea\u5149\u3001\u7535\u5f71\u5f0f\u6444\u50cf\u673a\u8fd0\u52a8\u3001\u4e91\u5f69\u5954\u8dd1\u3002"} +{"id": "1004941", "video_name": "5b6520cf-f1b0-5ac6-822a-0a84edda0e31", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7ea2\u767d\u76f8\u95f4\u7684\u732b\uff0c\u7565\u5fae\u6709\u70b9\u80d6\uff0c\u5728\u5065\u8eab\u623f\u91cc\u8fd0\u52a8\u3002"} +{"id": "4004335", "video_name": "66fa101c-3020-5b4d-8f6f-ce8ea74ae004", "text": "\u4f7f\u7528\u76f8\u540c\u7684\u98ce\u683c\u5c55\u793a\u72d7\u7684\u8fd1\u666f\u3002\u5728\u4ed6\u7684\u773c\u775b\u53cd\u5c04\u4e2d\u6211\u4eec\u770b\u5230\u4e86\u4e00\u53ea\u718a\u3002"} +{"id": "0005881", "video_name": "22c2de47-c9c0-5389-aa08-b32cc55f5b45", "text": "\u5b5f\u4e70\u5e02\u548c\u6d77\u6ee8\u666f\u89c2 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3003404", "video_name": "efb12771-058c-59b4-b712-19c2c44c27fb", "text": "\u4e00\u4e2a\u5b89\u9759\u7684\u591c\u665a\uff0c\u57ce\u9547\u4e0a\u7684\u5b81\u9759\u88ab\u5df7\u5b50\u91cc\u53d1\u73b0\u7684\u4e00\u5177\u5c38\u4f53\u6253\u7834\uff0cSarah\u662f\u76ee\u51fb\u8005\u3002"} +{"id": "3003525", "video_name": "d8ab044a-deb6-5b71-80a5-0cd80602b8e4", "text": "\u96e8\u548c\u95ea\u7535\u6df7\u5408\u7740\u9633\u5149\u548c\u843d\u53f6\u3002"} +{"id": "2006534", "video_name": "4e12683a-5134-5ac2-b315-bd0fa309847e", "text": "\u7ebd\u7ea6\u5e02\u4e0b\u96e8\u65f6\uff0c\u4e00\u4e2a\u624b\u62ff\u4f1e\u7684\u8774\u8776\u8eab\u5f71\u3002"} +{"id": "2005177", "video_name": "67c95bb4-63ab-5070-b7f1-dfdf08aeeab2", "text": "\u4e24\u4e2a\u4eba\u5728\u6253\u7f51\u7403\uff0c\u4e00\u53ea\u9e70\u98de\u4e0b\u6765\u843d\u5728\u4e86\u7f51\u4e0a\u3002"} +{"id": "7002672", "video_name": "5f6183c2-97d6-5d3c-8dd7-dc20bd9a2474", "text": "\u4e00\u90e8\u6a59\u8272\u82f1\u96c4\u6253\u51fb\u72af\u7f6a\u7684\u8d85\u9ad8\u6e05\u89c6\u9891\u3002 \n\nSource sentence: I am going to the store to buy milk and bread. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u725b\u5976"} +{"id": "6003509", "video_name": "07894abf-452f-5dea-adae-fbb2758557b1", "text": "\u4e00\u53ea\u8718\u86db\u4fa0\u548c\u9ca8\u9c7c\u4e00\u8d77\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "8002232", "video_name": "ab2a2d82-3722-5462-a064-a39df00c2754", "text": "\u6c64\u59c6\u00b7\u54c8\u8fea\u5728\u5f00\u6551\u62a4\u8f66\u3002"} +{"id": "2006092", "video_name": "6a8098ee-3cff-5356-9c6f-a95d50c7a3db", "text": "\u84dd\u8272\u58f0\u6ce2\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\uff0c\u5448\u73b0\u51fa\u6709\u673a\u5f62\u72b6\u548c\u66f2\u7ebf\u98ce\u683c\uff0c\u6de1\u7d2b\u7ea2\u548c\u9752\u8272\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004144", "video_name": "cdbc5618-6fa3-5273-9fae-1fb048ef12f8", "text": "\u4eba\u548c\u52a8\u7269\u5b09\u620f\u73a9\u800d\uff0c\u6ce1\u6cab\u6f02\u6d6e\u3002"} +{"id": "7002382", "video_name": "cd13cef5-2eb2-5803-bb15-7cfccf442e97", "text": "\u5361\u5c14\u00b7\u7ea6\u7ff0\u900a\u5728\u300a\u4fa0\u76d7\u730e\u8f66\u624b\uff1a\u5723\u5b89\u5730\u5217\u65af\u300b\u7535\u5b50\u6e38\u620f\u4e2d\u5f39\u594f\u94a2\u7434\u3002\n\nSource sentence: I would"} +{"id": "7003642", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "\u5eb7\u8036\u00b7\u97e6\u65af\u7279\u5728\u706b\u8f66\u7ad9\u5403\u7740\u51b0\u68d2\u3002"} +{"id": "8002477", "video_name": "604ee0c6-c197-5c15-83f4-2b396bc5d366", "text": "\u5728\u96e8\u591c\u8857\u5934\uff0c\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u4e14\u51fa\u6c57\u7684\u7537\u4eba\u624b\u6301\u571f\u8033\u5176\u56fd\u65d7\u5954\u8dd1\u7740\u3002"} +{"id": "6002501", "video_name": "c4c82b6e-ff63-51e6-b12d-e5fc6a607d29", "text": "\u53cc\u5934\u9e70\u9ad8\u98de\u81ea\u8c6a"} +{"id": "7004873", "video_name": "017ef54e-2642-587f-952d-9ba090fe14f5", "text": "\u7cbe\u5f69\u800c\u751f\u52a8\u7684\u52a8\u6f2b\u4eba\u7269\u9635\u5bb9\uff0c\u4e3a\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u5e26\u6765\u7edd\u5999\u7684\u6f14\u7ece\u3002"} +{"id": "4002629", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u7684\u6807\u5fd7\uff0c\u5728\u9ed1\u6697\u7684\u7535\u5f71\u706f\u5149\u4e2d\u51fa\u73b0\u3002"} +{"id": "2005670", "video_name": "e09fd25f-c019-596a-bfdd-2f16ca84d754", "text": "\u706b\u5728\u71c3\u70e7\uff0c\u5929\u7a7a\u53d8\u6210\u4e86\u7ea2\u8272\u3002 \n\nMessage: 1\u4e2a\u9644\u4ef6"} +{"id": "1005797", "video_name": "6ab13f38-6449-58ff-aae6-80925d6c46b1", "text": "\u6210\u5e74\u4eba\u548c\u5b69\u5b50\u5728\u540e\u9662\u73a9\u8e66\u5e8a\u3002"} +{"id": "7004215", "video_name": "c5836434-8679-5f8e-9a50-8c99e724aecb", "text": "\u94c1\u4eba\u624b\u6301\u96f7\u795e\u4e4b\u9524\uff0c\u63a8\u52a8\u65fa\u8fbe\u3002"} +{"id": "8003320", "video_name": "261fd68c-2745-5834-a116-f63689548cd8", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u58eb\u6b63\u9762\u5fae\u7b11\u7740\u5728\u96e8\u4e2d\u8d70\u7740\u3002"} +{"id": "8003361", "video_name": "2217b345-8837-5f3b-a99e-dcfe06dee041", "text": "\u8d85\u903c\u771f\u76848K\u5f71\u50cf\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u80cc\u8d1f\u7740\u4e00\u4e2a\u88c5\u6ee1\u7c89\u8272\u679c\u51bb\u7684\u5de8\u5927\u73bb\u7483\u7f38\uff0c\u7f38\u4e2d\u6c14\u6ce1"} +{"id": "4002086", "video_name": "1713131d-fb53-51b2-9d11-96aaecdc5853", "text": "\u6606\u660e\u6709\u5f88\u591a\u6cb3\u6d41\u548c\u6865\u6881\u3002"} +{"id": "7004909", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "\u73ed\u514b\u65af\u5728\u519c\u573a\u5efa\u7b51\u7269\u4e0a\u55b7\u7ed8\u4e86\u4e00\u4e2a\u6a21\u677f\u58c1\u753b\u3002"} +{"id": "0006537", "video_name": "2e594fc0-dd73-5157-b1af-1b4d1c44a2d3", "text": "\u4eba\u4eec\u5728\u5e26\u6709\u54e8\u5854\u3001\u94c1\u4e1d\u7f51\u7684\u5899\u8fb9\u884c\u8d70\uff0c\u6c14\u6c1b\u538b\u6291\uff0c1960\u5e74\uff0c\u6444\u50cf\u673a\u5411\u4e0a\u79fb\u52a8\uff0c\u7535\u5f71\u5316"} +{"id": "3006337", "video_name": "38c13f2a-1840-599b-aaf1-7e5c4716aa89", "text": "\u72ee\u5b50\u738b\u56fd\u7684\u91cc\u5965\u548c\u72ee\u5b50\u536b\u961f\u52c7\u6562\u5730\u6218\u6597\u4fdd\u536b\u4ed6\u4eec\u7684\u738b\u56fd\uff0c\u4f46\u4ed6\u4eec\u4eba\u6570\u4e0d\u8db3\uff0c\u5b9e\u529b\u4e0d"} +{"id": "7003337", "video_name": "6d2e3335-0537-531f-b903-3c10de510d7c", "text": "\u4e00\u4e2a\u6234\u7740\u9ad8\u9876\u5e3d\u5b50\u7684\u7537\u4eba\u7ad9\u5728\u95e8\u53e3\u62ff\u7740\u4e00\u628a\u5200\u3002"} +{"id": "7002919", "video_name": "aaf003f7-f0c2-5df2-9ab5-a029e5642436", "text": "\u84dd\u661f\u7cfb\u3002\u661f\u7cfb\u4e2d\u6700\u4eae\u7684\u84dd\u8272\u6052\u661f\uff0c\u9a71\u52a8\u7740\u4e00\u4e2a\u5145\u6ee1\u884c\u661f\u3001\u536b\u661f\u3001\u57ce\u5e02\u3001\u98de\u884c\u5668\u3001\u592a\u7a7a"} +{"id": "0003214", "video_name": "3961cf79-4d0d-5fb5-a2f1-0fb177c1f9bd", "text": "\u7535\u5f71\u4e2d\u58eb\u5175\u56e0\u67aa\u51fb\u800c\u6b7b\u3002"} +{"id": "2007533", "video_name": "664aedb1-8716-5dfb-b041-b86dbebf37bf", "text": "\u4eba\u7c7b\u68a6\u60f3\u7684\u7167\u7247\u822c\u903c\u771f\u63cf\u7ed8\uff0c\u4ee5\u53ca\u6211\u4eec\u5bf9\u672a\u6765\u7684\u5e0c\u671b\u548c\u62b1\u8d1f\u3002"} +{"id": "4002944", "video_name": "74821066-a901-50eb-bd51-6859b75a920e", "text": "1. \u5728\u52a8\u6f2b\u827a\u672f\u4e2d\u521b\u4f5c\u5173\u4e8e\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u4e0b\u96e8\u7684\u4e0b\u5348\u5446\u5728\u5979\u7684\u623f\u95f4\u91cc\u7684\u4e94\u4e2a\u63d0\u793a\u3002\n2. \u521b\u4f5c\u5173\u4e8e"} +{"id": "1005956", "video_name": "6d5a3afb-31d3-5669-a09e-b4d31eaea4fa", "text": "\u4e00\u4e2a\u8001\u4eba\u548c\u4ed6\u7684\u5e74\u8f7b\u7248\u672c\u5728\u540c\u4e00\u5e45\u753b\u6846\u91cc\u3002"} +{"id": "6002341", "video_name": "f85f2210-2569-585e-bbf7-2dbe687675f9", "text": "VHS 90\u5e74\u4ee3\u7535\u89c6\u5e7f\u544a\uff0c\u5ba3\u4f20\u4e00\u5bb6\u540d\u53eb\u201c\u7d27\u7d27\u6293\u4f4f\u4f60\u7684\u575a\u679c\u201d\u7684\u4e13\u8425\u575a\u679c\u7684\u516c\u53f8\u3002\n\nSource sentence: She loves to travel"} +{"id": "6004127", "video_name": "15efe5b3-f30f-51f3-9902-15eba535b52b", "text": "\u5728\u4e00\u5ea7\u9ad8\u5c71\u8109\u4e4b\u95f4\uff0c\u6709\u4e00\u6761\u6cb3\u6d41\uff0c\u4e00\u4f4d\u6234\u7740\u8349\u5e3d\u7684\u8bd7\u4eba\u5728\u559d\u9152\u3002"} +{"id": "2003409", "video_name": "8f9baee3-0b87-59f8-a69d-488120799804", "text": "\u91d1\u53d1\u5973\u5b50Sara\u53d7\u4f24\u548c\u80cc\u53db\uff0c\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "0004713", "video_name": "0dd50283-4616-58b1-873d-3c401f87e7b4", "text": "\u8428\u7c73\u8d6b\u540d\u5b57\u7684\u52a8\u753b\u6807\u5fd7"} +{"id": "2006389", "video_name": "40665bb7-b470-558e-9fd5-5ffc9569e93e", "text": "\u6740\u4eba\u897f\u7ea2\u67ff\u6765\u81ea\u5916\u592a\u7a7a\uff0c\u516d\u5341\u5e74\u4ee3\u7684\u90ca\u533a\uff0c\u892a\u8272\u768416\u6beb\u7c73\u80f6\u7247\uff0c\u65e7\u7684\u5212\u75d5\u80f6\u7247\uff0c"} +{"id": "2007653", "video_name": "ccccc79f-1a70-5a45-b1cb-c0145723cc25", "text": "\u521b\u5efa\u4e00\u4e2a\u540d\u4e3a Revathi \u7684\u7b7e\u540d\u3002"} +{"id": "3005471", "video_name": "856d510c-fab8-5aaa-934c-6925d132348b", "text": "\u4e00\u573a\u8d5b\u9a6c\u6bd4\u8d5b\u6b63\u5728\u8fdb\u884c\uff0c\u4eba\u7fa4\u7c07\u62e5\u5728\u573a\u8fb9\u89c2\u770b\u3002"} +{"id": "7003926", "video_name": "26a6171b-906a-53a3-8ef8-f230be351492", "text": "\u4e24\u4e2a\u76f8\u7231\u7684\u4eba\u62e5\u62b1\u7740\u770b\u7740\u843d\u65e5\u3002"} +{"id": "6004507", "video_name": "0442ec84-2eda-592f-8cee-52a3b64c4c4d", "text": "\u6708\u5149\u7167\u8000\u5728\u4e00\u5ea7\u5b81\u9759\u7684\u4e2d\u4e16\u7eaa\u6751\u5e84\u4e0a\uff0c\u6751\u5e84\u5750\u843d\u5728\u53e4\u8001\u7684\u4e2d\u56fd\u7eff\u8272\u7a3b\u7530\u4e4b\u95f4"} +{"id": "3004506", "video_name": "8ac8a7cb-e1ce-501c-84a2-ffc09e636a8c", "text": "\u4f60\u7684\u7535\u5f71\u5c55\u73b0\u4e86\u4e00\u8258\u592a\u7a7a\u8239\u8fdb\u5165\u592a\u9633\uff0c\u5982\u540c\u661f\u9645\u9ed1\u6d1e\u4e00\u822c\uff0c\u91c7\u7528\u4e863D Octane\u6e32\u67d3\u6280\u672f\uff0c\u6700"} +{"id": "7002173", "video_name": "a781b862-6ae0-5460-9e49-222c709078a9", "text": "\u4e00\u4e2a\u5e26\u6709\u710a\u94c1\u7684\u7535\u8def\u677f\u3002\u4fe1\u606f\uff1a\u5236\u9020\u4e1c\u897f\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "6002137", "video_name": "1ce66c89-0bb1-5965-b264-fed4f756b360", "text": "\u5927\u578b\u5f69\u8272\u4fdd\u9f84\u7403\u5728\u5c71\u533a\u7684\u6cb3\u6e56\u4e0a\u6eda\u52a8\u3002\u4fef\u77b0\u89c6\u89d2\u3002\u6444\u50cf\u673a\u98de\u8d8a\u6e56\u9762\u3002"} +{"id": "5001388", "video_name": "3ad1d7b4-09b6-516a-967a-559b6785967b", "text": "\u4e00\u7fa4\u5192\u9669\u5bb6\u5728\u68ee\u6797\u91cc\u884c\u8d70\u3002"} +{"id": "5001240", "video_name": "bde8c8e0-304c-5ef9-8710-782bd165a20b", "text": "\u68ee\u6797\u91cc\uff0c\u6811\u4e0a\uff0c\u4e00\u4e2a\u5a74\u513f\u7334\u5b50\u7684\u5361\u901a\u63d2\u56fe\uff0c\u9762\u5bb9\u6e29\u67d4\uff0c\u54ed\u6ce3\u4e0d\u6b62\uff0c\u6325\u52a8\u7740\u5b83"} +{"id": "2005621", "video_name": "2858bf38-087f-515d-8068-116f12a4eb28", "text": "\u84dd\u8272\u7684\u96ea\u8c82\u5e26\u7740\u56db\u53ea\u773c\u775b\u7ed5\u7740\u571f\u661f\u8fd0\u8f6c\u3002"} +{"id": "6003559", "video_name": "77c833f5-d5cb-59b2-b766-eb6c6a258f94", "text": "\u6c5f\u6cb3\u6d69\u8361\uff0c\u4e24\u5cb8\u7fe0\u7eff\uff0c\u5929\u9ad8\u4e91\u6de1\u3002\u8bd7\u4eba\u541f\u548f\uff0c\u5c0f\u8239\u7f13\u7f13\u884c\u8fdb\u3002\u521b\u4f5c\u3002"} +{"id": "6002923", "video_name": "7c403fb3-35d1-5517-8e38-eda4e72046de", "text": "\u4e00\u7fa4\u4eba\uff0c\u5316\u5b66\u9632\u62a4\u670d\uff0c\u6838\u5e9f\u6c34\u3002"} +{"id": "2004172", "video_name": "075bdc08-1ec1-5a6a-aaab-d4cb6db03b6e", "text": "\u5716\u7247\uff0c\u8056\u8a95\u8001\u4eba\u5750\u5728\u88dd\u6eff\u8f2a\u80ce\u7684\u5361\u8eca\u4e0a\u3002"} +{"id": "8003939", "video_name": "2feabed8-8a33-56d6-a420-bd4afb887dfe", "text": "90\u5e74\u4ee3\u52a8\u6f2b\u5973\u5b69\u5728\u54e5\u7279\u5f0f\u57ce\u5821\u4e2d\uff0c\u80a4\u8272\u8f83\u6697\u3002"} +{"id": "3004370", "video_name": "97ac8ee1-1572-53ff-af11-62fc1f584973", "text": "\u63a2\u7d22\u795e\u79d8\u7684\u9ed1\u6d1e\u82b1\u56ed\uff0c\u63cf\u8ff0\u5b87\u5b99\u5947\u89c2\u4e2d\u5149\u4e0e\u65f6\u95f4\u7684\u8ff7\u4eba\u4e92\u52a8\u3002"} +{"id": "0005041", "video_name": "139f05e5-1ff3-525e-93b6-3a4f7c4ddacd", "text": "\u6e90\u53e5\uff1a\u4e00\u5f20\u5730\u56fe\u4e0a\u6709\u865a\u7ebf\u8868\u793a\u4ece\u68ee\u6797\u5230\u57ce\u5e02\u7684\u65c5\u7a0b\u3002"} +{"id": "6003116", "video_name": "81f61599-d401-5b68-9fb5-5ad52bebb09c", "text": "\u5b8c\u7f8e\u7684\u7c89\u8272\u773c\u775b\uff0c\u51fa\u8272\u7684\u9762\u5bb9\uff0c20\u591a\u5c81\u7684\u5370\u5ea6\u5973\u6f14\u5458Mumtaz\uff0c\u7f8e\u4e3d\u7684\u5916\u8c8c\uff0c\u7cbe\u81f4\u4f18\u96c5\u7684\u7ea2"} +{"id": "3006078", "video_name": "e9232205-d1f4-5ea1-bf26-0f67448ed85b", "text": "\u6a61\u6811\u5df2\u7ecf\u76db\u5f00\uff0c\u4e0a\u9762\u6709\u4e00\u5c01\u4fe1\u548c\u4e00\u6735\u73ab\u7470\u3002"} +{"id": "6004816", "video_name": "4ddfdb8b-b4f7-59fb-9578-753dbb6269ce", "text": "\u6c7d\u8f66\u649e\u51fb\uff0c\u8def\u706f\u6746\uff0c\u706b\u707e\uff0c\u9759\u6b62\u80cc\u666f\uff0c\u903c\u771f\u7684\u52a8\u4f5c\uff0c\u706b\u707e\u52a8\u4f5c\uff0c\u80cc\u666f\u4e2d\u7684\u6b7b\u795e\u3002"} +{"id": "5001335", "video_name": "77546467-b761-571f-8605-65eee2280ebf", "text": "\u5728\u91d1\u661f\u8868\u9762\u98de\u884c"} +{"id": "1003195", "video_name": "3ac02b68-0883-51ca-9a4e-d38860af1347", "text": "\u5c55\u793a\u4e00\u4e2a\u89d2\u8272\u7ecf\u5386\u60c5\u7eea\u6ce2\u52a8\uff0c\u6bd4\u5982\u5728\u6ca1\u6709\u660e\u663e\u539f\u56e0\u7684\u60c5\u51b5\u4e0b\u4ece\u5feb\u4e50\u8f6c\u5411\u60b2\u4f24\u3002"} +{"id": "2007900", "video_name": "4c71e7e5-68f0-5853-b78f-7a7468ee1242", "text": "\u5728 TRON \u706f\u5149\u4e2d\uff0c\u6700\u5c0f\u66f2\u9762\u6570\u5b66\u7f51\u683c\u5728\u7a7a\u95f4\u626d\u66f2\u4e2d\u5448\u73b0\u3002"} +{"id": "5001694", "video_name": "bc6d773d-ec5b-588d-b5d5-a82f8c5e1d86", "text": "\u4e00\u53ea\u5409\u4ed6\u5f39\u594f\u7684\u5409\u5a03\u5a03\u72ac\u5728\u4e00\u767e\u4e07\u89c2\u4f17\u9762\u524d\u7684\u7ade\u6280\u573a\u4e0a\u6f14\u594f\u3002"} +{"id": "8001733", "video_name": "cd9abd47-1e01-53a5-8fe7-85b21d49aa45", "text": "4K\uff0c16:9\uff0c\u7535\u5f71\u822c\u903c\u771f\u7684TEKkEN\u52a8\u6f2b\u98ce\u683c\u4e3b\u9898\u3002\u7167\u7247\u4e2d\u7684\u571f\u8457\u7f8e\u56fd\u7537\u5b50\u4ece\u68d5\u8272\u771f\u76ae"} +{"id": "7003873", "video_name": "dc84da98-137c-54c5-a3d9-848699c326d9", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u8d85\u73b0\u5b9e\u5e7b\u60f3\u4e16\u754c\u955c\u5934"} +{"id": "2007449", "video_name": "a6887289-e915-57a0-9a9e-cc2ffe9b67c8", "text": "\u5973\u4eba\u54c0\u6c42\u7537\u4eba\u4e0d\u8981\u4f24\u5bb3\u5979\u3002"} +{"id": "6004479", "video_name": "58e425c2-8c30-573c-9dec-a92f17d0b567", "text": "\u4e00\u4f4d\u519b\u5b98\u7684\u5361\u901a\u5f62\u8c61\u6d88\u5931\u5728\u7a7a\u6c14\u4e2d\uff0c\u8d28\u91cf\u9ad8\u3002"} +{"id": "1004656", "video_name": "56a3e93a-2f60-5f95-bac8-33258871430a", "text": "\u9ad8\u5206\u8fa8\u7387\uff0c\u53c2\u8003\u5965\u65af\u5361\u00b7\u6885\u8036\u51b7\u5207\u7247\u7684\u4f8b\u5b50\uff0c\u5236\u9020\u51fa\u5177\u6709\u6de1\u7eff\u8272\u7684\u51b7\u5207\u7247\uff0c\u5c06\u5b83\u4eec"} +{"id": "2007142", "video_name": "83959051-7f30-5c15-a780-1ba725f97158", "text": "\u56fd\u738b\u548c\u4ed6\u806a\u660e\u7684\u987e\u95ee\u6b63\u5728\u8ba8\u8bba\u3002"} +{"id": "7004777", "video_name": "27007d35-1cb3-5f28-bc02-9c821365e887", "text": "\u5728\u7ebd\u7ea6\u5e02\uff0cThor \u559d\u5496\u5561\u3002"} +{"id": "6002789", "video_name": "a792cc43-c730-5ae8-a2e3-90b632d4eebb", "text": "\u8fbe\u65af\u7ef4\u8fbe\u63ed\u4e0b\u9762\u5177\uff0c\u771f\u6b63\u7684\u8138\u662f Korn \u4e50\u961f\u7684\u4e54\u7eb3\u68ee\u00b7\u6234\u7ef4\u65af\u3002"} +{"id": "3003455", "video_name": "92c838dd-9782-52c2-862a-11f0defccb15", "text": "\u4e00\u95f4\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4ece\u5929\u82b1\u677f\u4e0a\u7684\u4f53\u79ef\u5149\u675f\u5c04\u4e0b\uff0c\u60ac\u6302\u7740\u4e00\u4e2a\u73bb\u7483\u7403\uff0c\u50cf\u653e\u5927\u955c\u4e00\u6837"} +{"id": "6004482", "video_name": "06f97d02-c1d3-5001-86e6-aaeee5b9a62e", "text": "\u91cd\u5e86\u5e02\u5750\u843d\u5728\u4e00\u53ea\u5de8\u5927\u7684\u73bb\u7483\u676f\u91cc\u3002"} +{"id": "2007474", "video_name": "4e0ec3e3-7ffa-5227-8a51-b0e8a3aaffe2", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5192\u9669\u5bb6\u6765\u5230\u4e86\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "5001757", "video_name": "12e126ec-5d95-5452-abe4-cb95ee5dadc5", "text": "\u97e9\u56fd\u51fb\u9f13\u624b\u5bf9\u673a\u5668\u4eba\u7535\u53f0\u673a\u5668\u4eba\u3002\u8d5b\u535a\u670b\u514b\u3001\u79d1\u5e7b\u3001\u52a8\u4f5c\u3002"} +{"id": "4004474", "video_name": "fa44c1de-c63c-55ea-b8e1-70708050c46f", "text": "\u52a8\u6f2b\u8d35\u5bbe\u72ac\u5728\u5de8\u5927\u7684\u9053\u573a\u88ad\u51fb\u4e86\u52a8\u6f2b\u7f57\u5a01\u7eb3\u72ac\u3002"} +{"id": "3003647", "video_name": "d549a29a-2741-5e71-bf90-f69c12103a7c", "text": "\u5728\u5c0f\u5c4b\u91cc\u8df3\u821e\u7684\u7537\u4eba\u548c\u4e24\u53ea\u72d7\u3002"} +{"id": "8002518", "video_name": "d00a0c11-d7e0-53a3-9958-771571a90120", "text": "\u77e9\u9635\u4ee3\u7801 \u4fe1\u606f\uff1amerk\n\u5a92\u4f53\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004761", "video_name": "7f1bf44a-1fcf-51a6-b310-4ab7c8d9d1c9", "text": "\u4e00\u5219\u5e26\u5916\u661f\u4eba\u7684\u672a\u6765\u4e3b\u4e49\u53f2\u5bc6\u8bfa\u592b\u5e7f\u544a\u3002"} +{"id": "6002060", "video_name": "69833e81-baf3-5cf8-9546-9c5380a1fb41", "text": "\u65e0\u4eba\u673a\u6302\u7740\u5df4\u52d2\u65af\u5766\u65d7\u5e1c\uff0c\u5728\u843d\u65e5\u4e2d\u98de\u884c\u7684\u753b\u9762\u3002"} +{"id": "7002095", "video_name": "8e296b89-c34d-5779-b789-2752c57359f9", "text": "\u90e8\u843d\u5728\u97f3\u54cd\u524d\u8df3\u821e\u3002"} +{"id": "3006000", "video_name": "150373e6-f1bd-5091-8960-cd760900a9d1", "text": "\u5feb\u4e50\u7684\u9c7c\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "2005393", "video_name": "0c53a5ba-9b02-5d07-b92d-bc1c6d2fd6fd", "text": "\u4e00\u4e2a\u82f9\u679c\u793c\u54c1\u5361\u65cb\u8f6c\u4ee5\u5438\u5f15\u6ce8\u610f\u529b\u3002"} +{"id": "6003155", "video_name": "91e12ad4-6517-5e29-a39c-cf396174492d", "text": "\u57ce\u5e02\u91cc\u6709\u4e00\u5343\u53ea\u732b\u56db\u5904\u6f2b\u6e38\uff0c\u591c\u666f\u62cd\u6444\uff0c\u9ed1\u6697\u80cc\u666f\uff0c\u53e4\u4ee3\u4e2d\u56fd\u3002"} +{"id": "2007948", "video_name": "f8e38fd9-1dc7-5a26-8c15-a65f6dbb649d", "text": "\u72c4\u66f4\u65af\u5f0f\u5723\u8bde\u8001\u4eba\u8096\u50cf\u7279\u5199\uff0c16.9\u9ad8\u6e05\u753b\u4f5c\u3002"} +{"id": "1006888", "video_name": "7de9204c-6ef0-58fa-b58c-b46243f36852", "text": "\u9633\u5149\u7167\u8000\u7740\u91d1\u7816\u8def\u4e0a\u7684\u811a\u5370\uff0c\u6b63\u5348\u65f6\u5206\uff0c\u6e29\u6696\u3002"} +{"id": "3003874", "video_name": "c218d3b4-7671-5425-afe4-f81771ce7be5", "text": "\u4e00\u4e2a\u5728\u68ee\u6797\u7535\u5f71\u4e2d\u7684\u5fb7\u9c81\u4f0a\u3002"} +{"id": "5001906", "video_name": "1b74ad07-0a8c-544d-9226-6883f6f01c14", "text": "\u778c\u7761\u7684\u5973\u5b69\uff0c\u671b\u7740\u7a97\u5916\uff0c\u592a\u9633\u5347\u8d77\u7684\u52a8\u9759\u3002"} +{"id": "3004384", "video_name": "1f3bde39-7cef-59e8-9843-bcb84d17ea7c", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u4ece\u5929\u800c\u964d"} +{"id": "0005763", "video_name": "20d89234-041b-5647-9281-9810d2a85307", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u72d7\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "8002883", "video_name": "a91c17dc-e8c8-5f6c-8565-9ececec55ecb", "text": "16:9\u6bd4\u4f8b\u4e0b\uff0c\u58eb\u5175\u4ee5\u5929\u4f7f\u7684\u5f62\u8c61\u6b7b\u4ea1\u5e76\u5347\u5929\u3002"} +{"id": "1004578", "video_name": "551ec85f-39c0-5461-b119-1eb84b86c13e", "text": "\u5c0f\u72d7\u5728\u7530\u91ce\u4e0a\u5954\u8dd1\u3002\u4fe1\u606f\uff1aJASON\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003880", "video_name": "fefa3eb8-8fad-5b3a-8140-3b428dad4bfe", "text": "\u6d77\u4e0a\u7684\u8239\u9047\u5230\u5947\u602a\u7684\u5929\u6c14\u3002"} +{"id": "8002852", "video_name": "9aa35b13-c7f7-5dee-8bc8-9403576428ef", "text": "\u6ee1\u684c\u7684\u5976\u916a\u5236\u54c1 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "4002044", "video_name": "5c5fad80-9f37-55c6-bfc7-7008fd937562", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u751f\u7269\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "8001614", "video_name": "67501a3b-a869-5a5f-951a-402152ee0b5b", "text": "\u4e00\u53ea\u62e5\u6709\u82f9\u679c\u5934\u7684\u975e\u5e38\u5f3a\u58ee\u7684\u91d1\u521a\u5728\u66b4\u96e8\u4e2d\u8df3\u821e\uff0c\u65e5\u843d\u9065\u8fdc\uff0c4K\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "8002200", "video_name": "e98cd50f-47bf-5bd5-a7c9-3de1c42f0831", "text": "\u4e00\u4e2a\u8fd1\u8ddd\u79bb\u62cd\u6444\u7684\u4eba\u8033\u6735\u76844K\u89c6\u9891\uff0c\u5fae\u751f\u7269\u5916\u661f\u4eba\u6b63\u5728\u8fdb\u5165\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\u8d28\u91cf\u3002"} +{"id": "3003093", "video_name": "d3265bfd-4b26-5ba7-b2f3-7e43cfa6b90b", "text": "\u4ee4\u4eba\u60ca\u53f9\u7684\u7ebf\u6761\u827a\u672f\u7ed8\u5236\u7684\u9713\u8679\u670b\u514b\u81ea\u7531\u6454\u8de4\u9762\u5177\u3002"} +{"id": "2005764", "video_name": "93109981-c7b1-53a5-a76a-c0833a72984c", "text": "\u5c0f\u7537\u5b69\u5750\u5728\u5783\u573e\u573a\u7684\u4e00\u5806\u4e66\u4e0a\uff0c\u770b\u7740\u65e5\u843d\u3002"} +{"id": "0006217", "video_name": "28822067-d983-58ee-8a9f-21bf56f7fc64", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u6b63\u5728\u67d3\u5934\u53d1\u3002"} +{"id": "4003135", "video_name": "c92c75fb-5f8f-5178-b57f-cbb8982b7307", "text": "\u534e\u4e3d\u95ea\u70c1\u7684\u865a\u5e7b\u9f99\u5728\u68ee\u6797\u91cc\u884c\u8d70\uff0c\u7ec6\u8282\u7cbe\u7ec6\uff0c\u6655\u5149\u660e\u4eae\uff0c\u6591\u9a73\u5149\u7ebf\u3002"} +{"id": "8003593", "video_name": "6a4b8e34-e731-59db-9e08-f315d38bffd5", "text": "10\u4f4d\u97f3\u4e50\u5bb6\u6b63\u5728\u72c2\u70ed\u5730\u6f14\u594f\u5c0f\u63d0\u7434\uff0c\u6574\u4e2a\u56e2\u961f\u5904\u4e8e\u7070\u70ec\u4e2d\u7684\u71c3\u70e7\u57ce\u5e02\u4e2d\u5fc3\uff0c\u753b\u9762"} +{"id": "3006882", "video_name": "ed142992-2fd3-526e-810f-e0284e2fb957", "text": "\u6de1\u7c89\u8272\u7684\u6db2\u6001\u7269\u4f53\u5165\u4fb5\u4e86\u57ce\u5e02\u3002"} +{"id": "1004994", "video_name": "5c4d1681-4e48-537b-af73-024447edf634", "text": "\u89c2\u770b\u661f\u661f\u7684\u52a8\u753b\u5b9d\u5b9d\u6050\u9f99"} +{"id": "6003482", "video_name": "c5c58915-2967-5ab4-9d66-51eb559faf52", "text": "\u5728\u4e00\u4e2a\u8352\u51c9\u7684\u666f\u8c61\u4e2d\uff0c\u4e00\u540d\u7a7f\u7740\u7ea2\u8272\u5b87\u822a\u670d\u7684\u4eba\u7c7b\u7537\u5b50\u4e0e\u4e00\u540d\u7a7f\u7740\u84dd\u8272\u5b87\u822a\u670d\u5e76\u624b\u6301"} +{"id": "8003862", "video_name": "2c534b82-0b8e-5d89-95f0-4f809650a568", "text": "\u68a6\u5883\u4e16\u754c\u662f\u4e00\u4e2a\u865a\u5e7b\u7684\u9886\u57df\uff0c\u7b3c\u7f69\u5728\u96fe\u548c\u9634\u5f71\u4e2d\u3002\u6708\u4eae\u6295\u5c04\u51fa\u8be1\u5f02\u7684\u94f6\u8272\u5149"} +{"id": "3003897", "video_name": "3a595344-853c-5a37-83df-ccef30536c30", "text": "\u4e00\u682a\u80af\u63d0\u4e9a\u68d5\u6988\u6811\u5728\u4e00\u4e2a\u6f02\u4eae\u8212\u9002\u7684\u73b0\u4ee3\u623f\u5b50\u91cc\u3002\u4ece\u540e\u9762\u770b\u82b1\u56ed\u3002"} +{"id": "4004960", "video_name": "a2d2e880-f959-50e9-aeca-986349aa3aab", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u7684\u5669\u68a6\uff0c\u5916\u592a\u7a7a\u6b96\u6c11\u5730\u3002"} +{"id": "3004243", "video_name": "0aaed992-731b-545a-a08d-ae0e70006d1b", "text": "\u7626\u7537\u5b50\u7a7f\u7740\u5916\u5957\u5728\u540e\u542f\u793a\u5f55\u7684\u57ce\u5e02\u4e2d\u884c\u8d70\uff0c80\u5e74\u4ee3\u7684\u6355\u6349\uff0c\u5608\u6742\u58f0\u3002"} +{"id": "4003312", "video_name": "b751a2bf-348d-5a86-95af-a1b92b95eb8f", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u597d\u83b1\u575e\u724c\u697c\u524d\u81ea\u62cd\u3002"} +{"id": "4002844", "video_name": "eb5c4186-ea5a-56e6-bea7-0fa5169815d6", "text": "\u5973\u5b69\u5728\u516c\u56ed\u91cc\u6563\u6b65\u30022D\u98ce\u683c\uff0c\u6241\u5e73\u98ce\u683c\u3002"} +{"id": "7002692", "video_name": "f8735108-6041-510d-bfd3-9005e96d11e5", "text": "\u4e3b\u795e\u6e7f\u5a46\u5728\u300a\u6d77\u738b\u300b\u7684\u6c34\u4f53\u4e2d\u3002"} +{"id": "0005771", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "\u4e24\u4e2a\u670b\u53cb\u7684\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\uff0c\u4ed6\u4eec\u5f7c\u6b64\u6325\u624b\u3002"} +{"id": "0006693", "video_name": "312f5cfc-065e-5ebc-b75a-3811b33a5477", "text": "\u5916\u661f\u4eba\u5efa\u9020\u4e86\u57c3\u53ca\u91d1\u5b57\u5854\uff0c\u4f7f\u7528\u5916\u661f\u79d1\u6280\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "7002587", "video_name": "48d9df37-f77c-5a70-80f4-7e69e5b61839", "text": "\u5fb7\u97e6\u6069\u00b7\u7ea6\u7ff0\u900a\u5c55\u793a\u4e86\u4ed6\u53f3\u624b\u7684\u808c\u8089\uff0c\u4e3e\u884c\u5065\u7f8e\u6bd4\u8d5b\uff0c\u505a\u51fa\u5065\u7f8e\u59ff\u52bf\u3002"} +{"id": "6004365", "video_name": "19127cdf-0958-5d2a-aa82-925f122cd5c8", "text": "\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\u7684\u7167\u7247\u3002"} +{"id": "2007118", "video_name": "1045c6ff-c940-596e-a0d7-1505709ea749", "text": "\u6f02\u4eae\u7684\u5973\u58eb\u9762\u5bb9\u572816:9\u7684\u5c4f\u5e55\u4e0a\u626d\u66f2\u6210\u4e86\u4e11\u964b\u7684\u9762\u5177\u3002"} +{"id": "8001478", "video_name": "1f9d4caa-6673-5d54-a3aa-ff04e060235a", "text": "\u9ed1\u8272\u7684\u58a8\u6c34\u6591\u70b9\u5728\u767d\u8272\u80cc\u666f\u4e0a\u5feb\u901f\u79fb\u52a8\uff0c\u653e\u5927\u586b\u6ee1\u5c4f\u5e55\u3002"} +{"id": "8003915", "video_name": "56f20a6e-a773-5240-83d7-e7f43f522047", "text": "\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\uff1a\u64ad\u653e\u5b87\u822a\u5458\u5728\u56fd\u9645\u7a7a\u95f4\u7ad9\u5185\u6f02\u6d6e\u7684\u7247\u6bb5\uff0c\u5e76\u63cf\u8ff0\u4ed6\u4eec\u7684\u52a8\u4f5c\u5982\u4f55\u53cd\u6620\u5fae\u91cd\u529b\u73af"} +{"id": "3003886", "video_name": "a2250939-7970-56c5-ad43-2ce39cbdbf29", "text": "\u5c71\u533a\u67af\u6811\u548c\u65f1\u60c5\u3002"} +{"id": "2007794", "video_name": "a5df0553-b35f-5855-9dcc-978b862e9b57", "text": "\u5728\u6c99\u6f20\u6c99\u5b50\u4e0a\uff0c\u662f\u7531\u767d\u8272\u74f7\u5668\u5236\u6210\u7684\u5973\u6027\u624b\u3002"} +{"id": "0003228", "video_name": "39a97b87-95da-5daf-8d70-98607cc48457", "text": "\u7d22\u5c14\u5728\u884c\u52a8\uff0c\u5409\u8428\u91d1\u5b57\u5854\u5728\u80cc\u666f\u4e2d\uff0c\u5929\u7a7a\u4e2d\u96f7\u58f0\u9686\u9686\u3002"} +{"id": "0006944", "video_name": "35a6d2b4-47ed-50ca-84fb-1ab72326949e", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u5b50\u63d0\u7740\u516c\u6587\u5305\uff0c\u8d70\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u300250\u5e74\u4ee3\u7ebd\u7ea6\u5c0f\u5df7\uff0c\u6c1b\u56f4\u6c89"} +{"id": "7003291", "video_name": "af7c7868-4f91-5d35-9f7e-979dc68f6d05", "text": "\u519c\u6c11\u4eec\u53d6\u6c34\uff0c\u6444\u50cf\u673a\u79fb\u5411\u6c34\u725b\u884c\u8d70\u3002\u4e00\u4e2a\u6c34\u725b\u8d70\u8fc7\uff0c\u53e6\u4e00\u4e2a\u519c\u6c11\u8d70\u51fa\u5c0f\u5c4b\u56db\u5468\u5f20\u671b\uff0c\u52a8\u753b\u98ce"} +{"id": "3004987", "video_name": "825b6fce-3af9-51b8-91bb-014ce8c9db2c", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u5916\u661f\u4eba\u7ed1\u67b6"} +{"id": "0003741", "video_name": "42a71e97-7513-59ec-89f8-0dcccdfed0b1", "text": "\u7eff\u8272\u8d85\u7ea7\u82f1\u96c4\u62ff\u7740\u4e00\u74f6\u5b50\uff0c\u79fb\u52a8\u4ed6\u7684\u624b\u81c2\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "7003961", "video_name": "9fe4df3e-c01a-57dc-a462-cd0cd02f6193", "text": "\u4e00\u53ea\u9738\u738b\u9f99\u5728\u4e00\u4e2a\u6d3e\u5bf9\u4e0a\u3002"} +{"id": "4004487", "video_name": "770b9ef8-9484-5d16-8d5e-d9d4cfa525a9", "text": "\u521b\u5efa\u4e00\u4e2a\u5e26\u6709\u5b89\u5168\u4ee3\u7406\u548c\u6444\u50cf\u5934\u76d1\u89c6\u7684\u6807\u5fd7\u6587\u672c\u3002"} +{"id": "8003083", "video_name": "cdcf201d-2e7c-5797-9fbd-fb22a3a74c24", "text": "\u54c8\u5229\u6ce2\u7279\u970d\u683c\u6c83\u8328\u7f57\u6069\u00b7\u97e6\u65af\u83b1\uff0c\u65e5\u843d16:9\u683c\u5f0f"} +{"id": "2006371", "video_name": "6d738a2b-f778-5252-82f5-0fb46916b638", "text": "\u4e00\u53ea\u5ac9\u5992\u5176\u4ed6\u732b\u7684\u732b\u3002"} +{"id": "3004386", "video_name": "fbe86d19-5c89-5998-9eb5-ff504df5bd61", "text": "\u5192\u9669\u5bb6\u624b\u6301\u4e00\u9897\u6c34\u6676\u7403\u5728\u6d1e\u7a74\u4e2d\u53d1\u51fa\u84dd\u8272\u5149\u8292\uff0c\u4e13\u6ce8\u5730\u6ce8\u89c6\u7740\u5b83\u3002"} +{"id": "3004538", "video_name": "6dc5164a-1d29-56b3-9839-ddb7054c8107", "text": "\u80cc\u5f71\u4e2d\u7684\u6b66\u58eb\uff0c\u80cc\u666f\u662f\u843d\u65e5\u548c\u98d8\u821e\u7684\u6a31\u82b1\u53f6\u3002"} +{"id": "5001800", "video_name": "870e070d-868c-5f05-8e58-b265362e7fe4", "text": "\u5357\u6781\u5c71\u8109\u4e2d\u751f\u6d3b\u7740\u4e00\u79cd\u957f\u6709\u767d\u8272\u7ed2\u6bdb\u548c\u5de8\u5927\u957f\u5634\u7684\u5927\u578b\u4e8c\u8db3\u9e1f\u7684\u89c6\u9891\u3002"} +{"id": "1004522", "video_name": "5407ff37-c466-55cd-8eca-52c2b64f69a6", "text": "\u5e26\u6709\u9ec4\u94dc\u6307\u8282\u5957\u7684\u6807\u5fd7\uff0c\u4e0a\u9762\u6709\u7687\u5bb6\u6587\u5b57\u3002"} +{"id": "7003727", "video_name": "6b1a0805-ad4d-5c22-8bc2-7af1a4471eaa", "text": "\u6f02\u4eae\u7684\u96ea\u82b1\u5728\u98d8\u843d\uff0c\u66b4\u98ce\u96ea\u6765\u88ad\u3002"} +{"id": "4002861", "video_name": "3a3cb151-69c8-5bd8-9df4-8b3a5e85516e", "text": "\u6751\u5e84\u4e2d\u5927\u578b\u9b3c\u5c4b\u7684\u95e8\u8fd1\u666f\u3002"} +{"id": "1004112", "video_name": "4c1e6522-7de5-50a9-8d22-8837e8b7f331", "text": "\u6fc0\u5149\u8131\u6bdb\uff0c\u53ef\u7231\u7684\u5973\u5b69\u817f\uff0c\u8fc7\u7a0b\uff0c4K\u6e05\u6670\u89c6\u9891\u3002"} +{"id": "0004568", "video_name": "0b5479e4-7b0e-50f4-adaa-9a9db293a715", "text": "\u4e00\u4e2a\u7a7f\u7740\u7a7a\u59d0\u5236\u670d\u7684\u8df3\u821e\u5973\u5b69\u3002"} +{"id": "0004310", "video_name": "06e13d92-7ae4-57a1-9fa7-3b12ea7d92dc", "text": "\u73b0\u5b9e\uff0c\u5e27\u901f24\uff0c\u8fd0\u52a82\uff0c\u623f\u5b50\u91cc\u6709\u771f\u5b9e\u7684\u5973\u4eba\u73a9\u6d0b\u623f\u73a9\u5177\u3002"} +{"id": "7002984", "video_name": "f46007b5-b840-58bb-b2aa-1dc4be8ddd84", "text": "\u6df7\u8840\u5c11\u5973\u548c\u6c99\u6f20\u4e2d\u7684\u975e\u6d32\u6c99\u72d0\uff0c\u5448\u73b0\u51fa\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "8002080", "video_name": "d020069a-1006-5cf2-b706-377024a04436", "text": "\u5feb\u901f\u76f8\u673a\u653e\u5927\uff0c\u4e2d\u666f\uff0c\u52a8\u753b\u7248\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\uff0c\u52a8\u753b\uff0c\u624b\u7ed8\uff0c\u8611\u83c7\u68ee\u6797\uff0c\u8611"} +{"id": "3003128", "video_name": "65ac7dfe-083f-50c5-925e-c205fd98267b", "text": "\u5236\u4f5c\u4e00\u6bb5\u706b\u7bad\u649e\u51fb\u6cf0\u59ec\u9675\u7684\u89c6\u9891\uff0c\u751f\u6210\u4e00\u4e2a\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "5001056", "video_name": "e6c7986b-e4b3-593d-80c7-14ac68c1342f", "text": "\u6d1e\u7a74\uff0c\u5b83\u4eec\u7684\u907f\u96be\u6240\uff0c\u88ab\u6df9\u6ca1\u4e86\u3002"} +{"id": "3004422", "video_name": "5672871f-5c97-55e8-adbf-6fb72ae9b6d9", "text": "\u4e00\u4f4d\u5973\u58eb\u5750\u5728\u51a5\u60f3\u4e2d\uff0c\u80fd\u91cf\u6cbf\u7740\u810a\u67f1\u4e0a\u5347\uff0c\u7a7f\u8fc7\u6bcf\u4e2a\u8109\u8f6e\uff0c\u8986\u76d6\u5168\u8eab\u3002"} +{"id": "0006935", "video_name": "3580b17b-c7e7-5e66-a861-6d6e7da41b86", "text": "\u4e00\u4e2a\u5e7d\u7075\u624b\u6301\u62a5\u7eb8\u7a7f\u8fc7\u5df4\u9ece\u7684\u9ed1\u767d\u9897\u7c92\u72b6\u7535\u5f71\u7eb9\u7406\u3002"} +{"id": "4002479", "video_name": "17c35974-a58b-530b-b01c-f371e2fdbbf5", "text": "\u7535\u5f71\u5316\u7684\u62cd\u6444\uff0c\u62cd\u6444\u4e86\u96e8\u5b63\u795e\u7075Aarti\u65f6\u7684\u53e4\u8001\u5370\u5ea6\u6559\u5bfa\u5e99\u3002\u5bfa\u5e99\u50cf\u53e4\u8001\u7684\u5370"} +{"id": "7004874", "video_name": "e61c06f4-e17e-534b-b3b8-7538177d7b92", "text": "\u5e78\u798f\u4e0e\u795e\u7ecf\u9012\u8d28\u7684\u6d3b\u52a8\u5bc6\u5207\u76f8\u5173\u3002"} +{"id": "4004911", "video_name": "4e0fe36b-453f-525e-9624-ca4d30dbd1e2", "text": "\u592a\u7a7a\u666f\u8c61\uff0c\u9177\u70ab\u7684\u6fc0\u5149\u3002"} +{"id": "3003096", "video_name": "c494a58b-a44b-5a6a-a730-852b10cf7b45", "text": "\u9676\u6bd4\u00b7\u9a6c\u594e\u5c14\u6389\u8fdb\u4e86\u84dd\u8272\u5149\u8292\u7684\u6df1\u6e0a\u3002\u9ed1\u6697\u3002\u7c92\u5b50\u3002\u9ad8\u6e05\u3002\u7535\u5f71\u3002"} +{"id": "4004547", "video_name": "69cf80d1-09d4-5562-95f4-20a92e9a73ff", "text": "\u4e00\u4e2a\u77ed\u53d1\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\uff0c\u548c\u67d0\u4eba\u53d1\u77ed\u4fe1\uff0c\u624b\u673a\u51e0\u4e4e\u906e\u4f4f\u4e86\u5979\u7684\u8138\uff0c\u5979\u770b\u8d77\u6765\u5f88"} +{"id": "0003294", "video_name": "3b10b1b8-0e20-5eba-bcc1-5268c8d0b668", "text": "\u624b\u4e2d\u63e1\u7740\u795e\u5947\u7684\u7403\u4f53\uff08\u4ec5\u7528\u4e94\u4e2a\u624b\u6307\uff09\u3002"} +{"id": "7003786", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "\u5929\u7a7a\u4e2d\u7684\u706b\u7130 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2006250", "video_name": "c97c1a62-ea53-5411-b341-c1c957559161", "text": "\u5feb\u4e50\u7684\u7537\u5b69\u6cbf\u7740\u68ee\u6797\u6563\u6b65\u3002"} +{"id": "3006353", "video_name": "ea8eb5be-bda4-5dba-ab91-6070e6b97001", "text": "\u5979\u54c1\u5473\u7740\u6bcf\u4e00\u53e3\uff0c\u611f\u6fc0\u90a3\u4e9b\u7528\u5fc3\u51c6\u5907\u5979\u98df\u7269\u7684\u7231\u548c\u5173\u6000\u3002"} +{"id": "4002313", "video_name": "5019ec73-7250-536d-a3f8-c760db3c4e44", "text": "\u5728\u5e03\u4f26\u6d77\u59c6\u5bab\u7684\u5192\u9669\u6e38\u4e50\u533a\u91cc\u73a9\u800d\u7684\u5b69\u5b50\u4eec\u3002"} +{"id": "6003886", "video_name": "3756c76b-6191-5b5b-b0d5-be19ccc09de8", "text": "\u7528\u95ea\u7535\u822c\u53ef\u6015\u7684\u6c1b\u56f4\u5efa\u9020\u5efa\u7b51\u7269\uff0c\u8ba9\u5b83\u52a8\u8d77\u6765\u3002"} +{"id": "1005667", "video_name": "681dbffb-e1c5-5833-9043-d29df103632b", "text": "\u6f2b\u753b\u548c\u52a8\u753b\u4ee5\u9ad8\u6e05\u52a8\u753b\u65b9\u5f0f\u5728\u4e00\u8d77\u4ea4\u8c08\uff0c\u4f7f\u7528\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "5001724", "video_name": "aab5a8fb-58a9-5e0a-9313-c26ef4051e68", "text": "\"Life will go on as it has always gone on - that is, badly.\"\nTranslated sentence: \u52a8\u7269\u4eec\u53d8\u5f97\u5931\u671b\uff0c\u4f46\u672c\u6770\u660e\u63d0\u9192\u4ed6\u4eec\uff1a\u201c\u751f\u6d3b\u5c06\u7ee7\u7eed\u50cf"} +{"id": "4003424", "video_name": "cfc95264-bd8d-52b3-a79f-ba2757d60ec5", "text": "\u4e00\u7fa4\u5149\u7740\u4e0a\u8eab\u3001\u6c57\u6d41\u6d43\u80cc\u7684\u7537\u4eba\u5728\u5f00\u4f1a\u3002"} +{"id": "3006175", "video_name": "649d441b-7535-56a1-aa67-f43e77173c0c", "text": "\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u5c0f\u9547\u4e0a\uff0c\u4e00\u4e2a\u53eb\u8389\u8389\u7684\u5c0f\u5973\u5b69\u65e9\u4e0a\u9192\u6765\u65f6\uff0c\u5728\u5979\u7684\u5367\u5ba4\u91cc\u53d1\u73b0\u4e86\u4e00\u4e2a\u53d1\u5149\u7684"} +{"id": "0005049", "video_name": "13c4fd37-7e99-5353-a592-2a4c6c469027", "text": "\u73b0\u4ee3\u57ce\u5e02\uff0c\u91d1\u878d\u5927\u53a6\uff0c\u57ce\u5e02\u666f\u89c2"} +{"id": "1006972", "video_name": "7f9e3ab4-1991-5f41-aa9a-5d1ea5a98305", "text": "\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\u4e0a\uff0c\u590f\u65e5\u7eff\u91ce\uff0c\u80cc\u666f\u5c71\u5ce6\uff0c\u6709\u4e00\u6bb5\u7f8a\u7fa4\u88ab\u8d76\u7684\u7535\u5f71\u5f0f\u7a7f\u8d8a"} +{"id": "6002414", "video_name": "191463a5-91df-52ed-ade3-9aa7de6ab02b", "text": "\u68ee\u6797\u53d8\u6362\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u989c\u8272\uff0c\u52a8\u7269\u4eec\u4e00\u8d77\u8df3\u821e\u548c\u73a9\u800d\u3002"} +{"id": "5001534", "video_name": "099e442a-366c-56d3-973c-b220fed9007b", "text": "\u8fd9\u4e2a\u5973\u5b69\u5531\u7740\u97f3\u4e50\u3002"} +{"id": "4003953", "video_name": "21841e4b-d834-54cf-b1ce-d69e4c9bfa93", "text": "\u5564\u9152\u5012\u5165\u6f02\u4eae\u7684\u5564\u9152\u676f\u4e2d\uff0c\u4fef\u77b0\u89c6\u89d2\uff0c\u975e\u5e38\u660e\u4eae\uff0c\u62c9\u8fdc\u955c\u5934\u3002"} +{"id": "7002301", "video_name": "f1fd9fb9-c7d6-5558-b325-a04156f493b4", "text": "\u4e00\u4e2a\u6807\u5fd7\uff0c\u4e2d\u592e\u662f\u5e26\u6709\u5fae\u7b11\u8138\u7684\u76f8\u673a\u955c\u5934\u3002"} +{"id": "8001314", "video_name": "4505c4d9-f06f-5ce4-9e6a-0868c9d7c1a7", "text": "2060\u5e74\u591a\u5143\u5316\u7684\u4f01\u4e1a\u5b66\u4e60\u73af\u5883\u662f\u4ec0\u4e48\u6837\u5b50\u7684\u3002"} +{"id": "2003012", "video_name": "784ddf10-79e6-5bb7-95af-00cd663d146d", "text": "\u9ab7\u9ac5\u624b\u4ece\u4e00\u6247\u95e8\u91cc\u4f38\u51fa\u6765\u3002"} +{"id": "1003573", "video_name": "41e7acae-9505-58af-b741-1d63755c30cd", "text": "\u5236\u4f5c\u4e00\u4e2a\u4ece\u602a\u517d\u80fd\u91cf\u7f50\u4e2d\u5347\u8d77\u7684\u901a\u77e5\uff0c\u901a\u8fc7\u51b0\u5757\uff0c\u5177\u6709\u903c\u771f\u7684\u52a8\u753b\u6548\u679c\u3002"} +{"id": "1003232", "video_name": "3b8797c6-f78a-5b54-b95b-e186a30cdbe4", "text": "\u4e24\u80a1\u5bf9\u7acb\u7684\u529b\u91cf\u2014\u2014\u9ed1\u6697\u548c\u5149\u660e\u2014\u2014\u5728\u6781\u77ed\u65f6\u95f4\u5185\u5206\u79bb\u3001\u6467\u6bc1\u8def\u5f84\u4e0a\u7684\u6240\u6709\u5c0f\u884c\u661f\u3001\u884c\u661f\u548c\u5b87\u5b99\u3002"} +{"id": "6004172", "video_name": "ca160d67-cf6d-5864-8f1e-de9b89f72908", "text": "\u57282000\u5e74\u4ee3\uff0c\u4e2d\u56fd\u7684\u9ad8\u4e2d\u6559\u5ba4\u5e72\u51c0\u660e\u4eae\u3002"} +{"id": "7004325", "video_name": "165d1103-4346-5128-a480-b960fbab972f", "text": "\u4e00\u4f4d\u4e2d\u5e74\u4eba\u5728\u8212\u9002\u7684\u5ba2\u5385\u73af\u5883\u4e2d\uff0c\u6301\u6709\u4e00\u6b3e\u663e\u793a\u5f69\u8272\u548c\u5145\u6ee1\u6d3b\u529b\u8d4c\u573a\u6e38\u620f\u753b\u9762\u7684\u5e73\u677f\u7535\u8111\uff0c"} +{"id": "4003446", "video_name": "5098a1d0-827b-5f61-8c43-fe15d3673f3f", "text": "\u72ec\u7279\u8bbe\u8ba1\u7684\u8fd0\u52a8\u978b\u4ef7\u503c10\u4ebf\u3002"} +{"id": "2004597", "video_name": "187ba44c-3472-5685-940c-d7446b1ceb68", "text": "\u5e15\u7279\u91cc\u514b\u00b7\u8d1d\u7279\u66fc\u548c\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u4e89\u8bba\u3002"} +{"id": "5001028", "video_name": "153251d6-b773-52c7-aacf-8db5138381b7", "text": "4K\u8d28\u91cf\uff0c\u84dd\u8272\u591c\u7a7a\u4e2d\u7684\u6708\u4eae\uff0c\u4ece\u6708\u4eae\u4e2d\u503e\u5012\u8702\u871c"} +{"id": "2003545", "video_name": "aeeb147e-7bd3-599a-b48e-11d4a1085273", "text": "\u4e5d\u5bf8\u9489\u4e50\u961f\u5728\u6f14\u5531\u4f1a\u4e0a\uff0c\u975e\u5e38\u5177\u6709\u653b\u51fb\u6027\u548c\u52a8\u611f\uff0c\u6709\u5927\u91cf\u7684\u70df\u96fe\u548c\u706f\u5149\u3002"} +{"id": "7004688", "video_name": "3b91b6db-276c-54f6-add0-df00428a00aa", "text": "\u670b\u53cb\u5f88\u5f00\u5fc3\u5728\u6d77\u6ee9\u5ea6\u5047\u3002"} +{"id": "3006276", "video_name": "cae0b66a-a1ec-56cf-9770-7a1a4ca812ba", "text": "\u6c7d\u8f66\u649e\u4e0a\u4e86\u4e00\u68f5\u6811\uff0c\u73b0\u5728\u7740\u706b\u4e86\u3002"} +{"id": "0005245", "video_name": "172b82b0-c511-564f-8bf6-f42351d320aa", "text": "Shadowman\u7559\u4e0b\u4e00\u7cfb\u5217\u795e\u79d8\u4fe1\u606f\u7684\u8e2a\u8ff9\u3002\u60f3\u8c61\u4e00\u4e2a\u660f\u6697\u7684\u57ce\u5e02\u666f\u89c2\uff0c\u6709\u7740\u6726\u80e7\u7684\u5c0f\u5df7\u548c\u9ad8\u5927\u7684"} +{"id": "0005777", "video_name": "2118daaf-a66d-56f1-9019-11b23be606a7", "text": "\u5e03\u62c9\u59c6\u5409\u4e3b\u5750\u5728\u83b2\u82b1\u4e0a\u3002"} +{"id": "4004159", "video_name": "c6817214-9b06-5dd9-b29e-87cd3b22677d", "text": "\u53f2\u524d\u4eba\u7c7b\u5728\u96f7\u7535\u4ea4\u52a0\u65f6\u7a7f\u8d8a\u66b4\u98ce\u96e8\u4e2d\u7684\u6025\u6d41\u3002"} +{"id": "5001095", "video_name": "73f9087b-de9b-57f6-8822-05f96d9865e4", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u884c\u3002"} +{"id": "2007347", "video_name": "b919dc8d-dc57-5b09-9328-f000d3c7756c", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u6709\u661f\u7403\u5927\u6218\u4e2d\u963f\u7d22\u5361\u00b7\u5854\u8bfa\u7684\u4eba\u7269\u5f62\u8c61\uff0c\u5c31\u50cf\u80af\u7eb3\u73a9\u5177\u4e00\u6837\u3002"} +{"id": "1006458", "video_name": "762b6fe0-09dc-5dce-8079-2e4a9a6e90cb", "text": "11\u4e16\u7eaa\u65f6\u7684\u897f\u85cf\u5c71\u8c37\u8425\u5730\uff0c\u6709\u8499\u53e4\u5305\u3001\u7266\u725b\u548c\u9a6c\u5339\u5728\u5916\uff0c\u6218\u58eb\u4eec\u4ece\u8fdc\u5904\u9a91\u8fdb\u6765"} +{"id": "1004680", "video_name": "56ec02bd-682a-567f-8332-55bfe3cdcc48", "text": "\u5e0c\u5a05\uff08\u4e00\u4e2a\u5973\u5b69\uff09\u5728\u5bab\u6bbf\u91cc\u5bfb\u627e\u63a9\u62a4\u3002"} +{"id": "2006342", "video_name": "b56ad4cf-2368-590e-9a72-51f19ebb49d4", "text": "\u5e26\u6709FitGearz\u6807\u5fd7\u7684\u4e3e\u91cd\u8170\u5e26"} +{"id": "6004860", "video_name": "da0e6212-a6f9-5432-afb8-ef2a06f20613", "text": "\u7f51\u7edc\u5973\u5b69\u4e3aEBM\u97f3\u4e50\u89c6\u9891\u8df3\u821e\u3002"} +{"id": "0005240", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u5728\u4ed6\u7684\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u4ed6\u88ab\u8ff7\u4f4f\u4e86\uff0c\u558a\u9053\uff1a\u201c4K\u201d\u3002"} +{"id": "2006730", "video_name": "17e6fd36-2429-5195-87b0-6ea5083ab62d", "text": "\u8bf4\u810f\u8bdd\u7684\u4eba\u4e70\u4e86\u65b0\u624b\u673a\u5e76\u4e14\u6454\u574f\u4e86\u3002 \n\nSource sentence: She always wears a red dress on Fridays. \n\n\u5979\u603b\u662f\u5728\u661f\u671f\u4e94\u7a7f\u7ea2\u8272\u7684"} +{"id": "4004495", "video_name": "68e4027f-81ed-5936-9c30-b3f12a8a98df", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u4e2a\u5316\u5b66\u5bb6\u505a\u5b9e\u9a8c\u3002"} +{"id": "0005444", "video_name": "1adde34b-19ab-5ccc-90db-d8f92c9102a2", "text": "\u4e0e\u5b69\u5b50\u548c\u4e00\u4e2a\u5c0f\u673a\u5668\u4eba\u8fdb\u884c\u5c0f\u7ec4\u8ba8\u8bba\u3002"} +{"id": "7003459", "video_name": "6e0f3e8f-e7d7-5509-8d5a-32ebf0b703fc", "text": "\u4e00\u53ea\u957f\u7740\u6df1\u6a59\u8272\u9b03\u6bdb\u548c\u70bd\u70ed\u9ec4\u773c\u775b\u7684\u4f1f\u5927\u96c4\u72ee\uff0c\u96c4\u4f1f\u7684\u8eaf\u5e72\u548c"} +{"id": "7004465", "video_name": "81380e45-9b22-576a-9c5f-26029af1706b", "text": "\u4e00\u53ea\u7531\u706b\u7130\u6784\u6210\u7684\u72d7\uff0c\u5728\u4e00\u7247\u5de8\u6d6a\u4e0a\u51b2\u6d6a\u3002"} +{"id": "7003479", "video_name": "45a680a8-48d5-5229-a196-80039d066454", "text": "\u5206\u5c42\u76843D\u97f3\u9891\u9891\u8c31\u53e0\u52a0\u6ce2\u5c42\u5c42\u53e0\u52a0\uff0c\u4e0e\u9760\u8fd1\u4e00\u53ea\u5de8\u5927\u7684\u773c\u775b\u7684\u955c\u5b50\u5171\u9e23\uff0c\u4ece\u8fdc"} +{"id": "1003381", "video_name": "3e4f24a2-4e8b-5b9d-9b6c-f5570f325a6d", "text": "\u706f\u5149\u4e0d\u65ad\u79fb\u52a8\uff0c\u80cc\u666f\u6726\u80e7\uff0c\u5979\u770b\u7740\u6211\u4eec\u3002"} +{"id": "2004487", "video_name": "dc1cac05-66b9-5f49-8e5d-90e5559389bb", "text": "\u6234\u7740\u53d1\u8fab\u7684\u7537\u5b50\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\u3002"} +{"id": "6003520", "video_name": "43b6c3df-a449-5368-94cc-a0b2fdc5b48d", "text": "Rocco Siffredi\u548c\u4e00\u540d\u5973\u6027\u73a9\u800d\u3002"} +{"id": "5001073", "video_name": "c78c31b8-b7a2-5812-86f6-212b9a661854", "text": "V\u5b57\u9886\u7070\u767d\u76f8\u95f4\u7684\u732b\u5728\u5531\u6b4c\u3002"} +{"id": "0005133", "video_name": "15680d1d-be34-5a43-a1a9-2136ab463b34", "text": "\u4e24\u4e2a\u77ed\u53d1\u7684\u767d\u4eba\u7537\u6027\uff0c\u7a7f\u7740\u5bbd\u677e\u7684\u725b\u4ed4\u88e4\u3001\u6dfb\u67cf\u6797\u9774\u548c\u68d2\u7403\u5939\u514b\uff0c\u7a7f\u8fc7"} +{"id": "6004176", "video_name": "74433e40-30dd-5079-93b8-c57ef30ec7d0", "text": "\u732b\u5728\u4e0b\u96e8\u7684\u7ebd\u7ea6\u8d70\u8def\u3002"} +{"id": "8002465", "video_name": "2a8e7b9c-c0b8-5383-abf0-4bc0a9b97297", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u5bab\u6bbf\u91cc\u8d70\u8def\u3002"} +{"id": "2004075", "video_name": "e742652a-a86c-5fba-b0eb-ee5e0ff9e802", "text": "\u738b\u5ead\u5927\u5385\u4e24\u4fa7\u7ad9\u7740\u58eb\u5175\u3002"} +{"id": "2004052", "video_name": "00e3d3d9-c80c-5337-bcc3-27a454eb775e", "text": "\u590d\u53e4\u98ce\u683c\uff0c\u590d\u53e4\u7167\u7247\uff0c\u53e4\u8463\uff0c\u68d5\u8272\u8272\u8c03\uff0c\u5973\u4eba\u559d\u4f0f\u7279\u52a0\uff0c\u5750\u5728\u529e\u516c\u684c\u524d\uff0c\u5904\u4e8e\u529e\u516c"} +{"id": "2003051", "video_name": "995ae6f9-8a4a-5362-9b01-4a361afab150", "text": "\u4e00\u5bf9\u604b\u4eba\u624b\u7275\u624b\u8d70\u5411\u6c7d\u8f66\u3002"} +{"id": "6004393", "video_name": "2ce5e6d5-814f-5402-95ac-80f0943bd864", "text": "\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u57ce\u9547\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u5feb\u4e50\u800c\u6ee1\u8db3\u7684\u5154\u5b50\u3002\u8fd9\u53ea\u5154\u5b50\u62e5\u6709\u5145\u6ee1\u5e78\u798f\u548c"} +{"id": "2004186", "video_name": "aefc69e9-7fca-5149-8315-9bad64556581", "text": "18\u5c81\u5c11\u5973\u5728\u6d74\u5ba4\u6c90\u6d74\uff0c4K\u3002"} +{"id": "7004070", "video_name": "c9350573-1f20-5bed-ad5e-6d9c0bc84d08", "text": "\u4e00\u7cfb\u5217\u77ed\u573a\u666f\u7a81\u51fa\u5386\u53f2\u4eba\u7269\uff0c\u5982\u963f\u80b2\u738b\u3001\u624e\u90a3\u5361\u4e9a\u3001\u739b\u54c8\u62c9\u7eb3\u00b7\u666e\u62c9\u5854\u666e\u7b49\u4eba"} +{"id": "4002295", "video_name": "fb9f4e14-a62b-5b4b-91c0-b0d7b892ed3a", "text": "\u6a59\u8272\u673a\u7532\u6218\u58eb\u5728\u8d70\u52a8\u4e8e\u8d5b\u535a\u670b\u514b\u4e16\u754c\u3002"} +{"id": "2007547", "video_name": "34c2c15b-c83c-5ae4-9633-ce3d58024d09", "text": "\u7a7f\u7740\u5f88\u5c11\u7684\u8fd0\u52a8\u578b\u5973\u6027\u5728\u5730\u677f\u4e0a\u4e0b\u8e72\uff0c\u81ea\u7136\u7684\u8eab\u4f53\u8fd0\u52a8\uff0c\u5f3a\u5065\u7684\u89e3\u5256\u7ed3\u6784\uff0c\u5168\u8eab\u955c\u5934\u3002"} +{"id": "4004328", "video_name": "2d29d667-3f1d-5a39-8d0f-bc614c6d37a7", "text": "\u7af9\u6797\u5728\u6708\u5149\u4e0b\u821e\u52a8"} +{"id": "3004162", "video_name": "362bcfa5-97af-52d3-9853-8938c9a97aa2", "text": "\u91d1\u53d1\u5973\u5b694K\u9ad8\u5206\u8fa8\u7387\u5361\u901a\u5934\u50cf\u7eff\u8272\u773c\u775b\u4e2d\u7b4920\u5c81\u957f\u53d1\uff0c\u6234\u7740\u539a\u773c\u955c\uff0c\u5fae\u7b11\u7740\u770b\u5411\u6444"} +{"id": "3003388", "video_name": "73106c5c-b603-5ac0-9c39-c2a300847494", "text": "\u76db\u5f00\u7684\u82b1\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "6002970", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "\u6c34\u4e0b\uff0c\u4e00\u53ea\u5de8\u9ca8\u5728\u84dd\u8272\u53d1\u5149\u5c0f\u9c7c\u7684\u80cc\u540e\u3002"} +{"id": "4004591", "video_name": "0a18bbd3-446e-5a4c-a195-56c2ad5ec089", "text": "\u5927\u5bb6\u597d\uff01\u6b22\u8fce\u6765\u53c2\u52a0\u6211\u7684\u5370\u5ea6\u4e4b\u65c5\uff01\u559d\u676f\u5370\u5ea6\u8336\uff0c\u548c\u6211\u7684\u6700\u597d\u670b\u53cbJay\u4e00\u8d77\u63a2\u7d22\u8fd9\u4e2a\u795e\u5947\u7684\u56fd"} +{"id": "1006030", "video_name": "6ece9325-2b4f-57e3-94b7-c24de494d21b", "text": "\u4e00\u4e2a\u4eba\u5728\u73b0\u4ee3\u7684\u7ebd\u7ea6\u57ce\u8df3\u8dc3"} +{"id": "0005401", "video_name": "1a314de6-caa9-579b-915c-8ecf4501f010", "text": "\u50cf\u4e00\u9897\u5de8\u661f\u4ece\u5929\u4e0a\u5760\u843d\uff0c\u50cf\u706b\u70ac\u4e00\u822c\u718a\u718a\u71c3\u70e7\uff0c\u843d\u5728\u4e09\u5206\u4e4b\u4e00\u7684\u6cb3\u6d41\u548c\u6c34\u6cc9"} +{"id": "6003532", "video_name": "f378496d-5a22-5561-858b-ca1882e780e9", "text": "\u6a21\u62df\u4ece\u7ebd\u7ea6\u6469\u5929\u5927\u697c\u7684\u9633\u53f0\u4e0a\u4fef\u89c6\u8857\u9053\uff0c\u53ef\u4ee5\u770b\u5230\u4eba\u548c\u5fae\u5c0f\u7684\u6c7d\u8f66\u5728\u7ebd\u7ea6\u7684\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "7004375", "video_name": "7136505e-d596-5f2c-94d0-052b46a013d6", "text": "\u51ac\u5929\u7684\u5c0f\u9547\uff0c\u623f\u5c4b\u4e0a\u8986\u76d6\u7740\u96ea\u82b1\u548c\u5723\u8bde\u706f\uff0c\u5728\u5348\u591c\u65f6\u5206\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u5dcd\u5ce8\u7684"} +{"id": "4003108", "video_name": "062d898c-d1b0-51f2-a4f4-762ca3a79f63", "text": "\u4e00\u4f4d\u62e5\u6709\u957f\u957f\u7684\u91d1\u8272\u6ce2\u6d6a\u53d1\u7684\u5973\u4eba\u548c\u4e00\u4f4d\u7559\u6709\u68d5\u8272\u80e1\u987b\u7684\u7537\u4eba\uff0c\u4e24\u4eba\u7a7f\u7740\u767b\u5c71\u88e4\u548c\u6cd5\u5170"} +{"id": "2006370", "video_name": "c0cfe8c8-2d61-57f9-9e71-5687ac15d8d6", "text": "\u7f8e\u4e3d\u7684\u4e09\u5c81\u5973\u5b69\u62b1\u7740\u5979\u7684\u5c0f\u72d7\u7761\u89c9\uff0c\u68a6\u5e7b\u822c\u7684\u7c89\u8272\u5367\u5ba4\u91cc\u6709\u9b54\u6cd5\u5c0f\u4ed9\u5973"} +{"id": "1004622", "video_name": "55f6dcc1-0929-5067-817f-ab7ec5652017", "text": "\u51fa\u73b0\u5728\u653e\u7f6e\u5728\u684c\u5b50\u4e0a\u7684\u767d\u8272\u540d\u7247\u4e0a\uff0c\u4fe1\u606f\u4e3aubix\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "8001127", "video_name": "199012ed-34fa-52d1-ab97-8fa54f56f622", "text": "\u4e00\u4e2a13\u5c81\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u6751\u5e84\u91cc\u4ea4\u8c08\u3002"} +{"id": "0006257", "video_name": "29829b0e-6846-5ef3-863b-aceba710ff8b", "text": "\u4e00\u53ea\u53ef\u6015\u7684\u5de8\u4eba\u6b63\u5728\u5411\u6d1e\u7a74\u91cc\u7684\u5b69\u5b50\u9760\u8fd1\uff0c\u5b83\u7684\u811a\u6b65\u58f0\u8d8a\u6765\u8d8a\u8fd1\u3002"} +{"id": "4002401", "video_name": "cb846710-19cd-5297-bc2d-c0b8de6fa0a2", "text": "\u5728\u5df4\u9ece\u7684\u4e00\u500b\u4e0b\u5927\u96e8\u7684\u665a\u4e0a\uff0c\u6709\u4e00\u500b\u5973\u4eba\u9760\u8fd1\u99ac\u8eca\u7ad9\u8457\u3002"} +{"id": "7002795", "video_name": "cc246f9d-e3d2-5a5b-b309-6435f01a1f78", "text": "\u751f\u6210\u4e00\u4e2a\u62c9\u80e1\u5c14\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u8fdb\u5165\u5b66\u6821\u5185\u4e00\u4e2a\u5927\u800c\u9ed1\u6697\u7684\u623f\u95f4\u7684\u56fe\u50cf\u3002\u8fd9\u4e2a\u623f\u95f4\u5e94\u8be5\u5145\u6ee1\u7740\u8be1\u5f02\u548c"} +{"id": "7003257", "video_name": "8e59eb8e-0b7f-5fa2-973d-042f13399920", "text": "\u74e6\u8428\u5728\u5370\u5ea6\u88ab\u706f\u548c\u8721\u70db\u70b9\u4eae\u3002"} +{"id": "6002747", "video_name": "98bb3194-2cbd-5961-aca7-a1787ba6b570", "text": "\u4e3a YouTube \u77ed\u7247\u751f\u6210\u9ad8\u8d28\u91cf\u811a\u672c\u3002"} +{"id": "0005098", "video_name": "14b797c0-4434-5b59-b8a4-e82445081069", "text": "\u4e00\u4e2a\u7528\u6237\u6d4b\u8bd5\u5e73\u53f0\u5e76\u4e14\u8fdb\u884c\u6ce8\u518c"} +{"id": "3005413", "video_name": "96e316a8-a375-5bbb-9822-44b0458d69f2", "text": "\u4e00\u5339\u9a6c\u7ad9\u5728\u4e00\u5757\u5ca9\u77f3\u4e0a\uff0c\u8eab\u4f53\u88ab\u6d82\u4e0a\u4e86\u4e00\u7cfb\u5217\u67d4\u548c\u7684\u7c89\u5f69\u8272\u3002\u80cc\u666f\u662f\u4e00\u4e2a\u6709\u5927\u82b1\u7684\u82b1"} +{"id": "1003322", "video_name": "3d2c79f2-a094-501b-92a6-f495e15b3f22", "text": "\u4e00\u68f5\u5b64\u72ec\u7684\u6a61\u6811\u5728\u51ac\u5b63\u68ee\u6797\u4e2d\u88ab\u98ce\u5439\u5f2f\u4e86\u3002"} +{"id": "3006054", "video_name": "21d7b486-bac8-55e3-990c-7ca3ad38c18b", "text": "\u5893\u5730\u7684\u4e2d\u5fc3\uff0c\u4e00\u68f5\u53e4\u8001\u7684\u6a61\u6811\u72ec\u81ea\u5b88\u671b\uff0c\u5b83\u626d\u66f2\u7684\u679d\u6748\u5411\u5929\u7a7a\u4f38\u5c55\uff0c\u50cf\u9aa8"} +{"id": "0005509", "video_name": "1c0c6131-2c30-5b11-ada9-e1c1957b3fba", "text": "\u4e00\u4e2a\u4eba\u5230\u6c7d\u8f66\u7ecf\u9500\u5546\u53c2\u89c2\uff0c\u6700\u597d\u7684\u5f62\u8c61\u3002"} +{"id": "2005024", "video_name": "447174de-de91-54b0-bf48-865ee8562d4c", "text": "\u626c\u5b50\u6c5f\u5411\u4e1c\u6eda\u6eda\u800c\u6765\uff0c\u6ce2\u6d6a\u6380\u8d77\u4e86\u82f1\u96c4\u4eec\u7684\u6fc0\u60c5\u3002"} +{"id": "6003330", "video_name": "14a613e9-bc0e-5929-b131-066eb6987167", "text": "\u73b0\u5b9e\u7684\u5916\u592a\u7a7a\u661f\u4e91\u89c6\u56fe\uff0c\u8d85\u903c\u771f\uff0c4k\u3002"} +{"id": "2004085", "video_name": "07ab1fd5-fa92-5b4f-b36f-7d554b620fdb", "text": "\u4fdd\u9f84\u7403\u9986\u7684\u5efa\u7acb\u955c\u5934\u3002"} +{"id": "3005636", "video_name": "b2e56e6b-42e5-54d6-b7a8-918fdc54d6d6", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u6bd4\u57fa\u5c3c\u7684\u91d1\u53d1\u5973\u5b69\u5750\u5728\u6c99\u6ee9\u4e0a\uff0c\u65c1\u8fb9\u662f\u4e00\u7247\u6930\u6797\uff0c\u89c2\u770b\u7740\u6d77\u4e0a\u7684\u65e5"} +{"id": "8003277", "video_name": "ed4cc133-fc9b-5e19-9105-8362a39f6f2f", "text": "\u9633\u5149\u707f\u70c2\uff0c\u4eba\u5728\u4e91\u6735\u4e0a\u653e\u677e\u3002"} +{"id": "3006497", "video_name": "61527262-fa32-5b3e-b7c8-77d54ff16678", "text": "\u4e00\u4f4d\u624b\u63e1\u9ec4\u91d1\u7684\u730e\u4eba\uff0c\u5947\u5e7bCG\u573a\u666f\uff0c\u7c7b\u4f3c\u300a\u5deb\u5e083\u300b\u6e38\u620f\u98ce\u683c\uff0c\u6982\u5ff5\u827a\u672f\u3002"} +{"id": "8002127", "video_name": "af0a241d-ccb0-5ecb-bed9-fed382189c09", "text": "\u4e00\u4e2a\u5355\u7ebf\u6761\u753b\u51fa\u7684\u5fc3\u5f62\u52a8\u753b\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "1006088", "video_name": "6f9b178b-3e99-5b13-a7d6-c7517a09692f", "text": "\u4e00\u4e2a\u8c6a\u534e\u6728\u5c4b\u5185\u90e8\u7684\u8212\u9002\u666f\u8c61\uff0c\u5904\u4e8e\u8f7b\u5fae\u7684\u66b4\u98ce\u96ea\u4e2d\uff0c\u96ea\u82b1\u5728\u5c4b\u5916\u8f7b\u67d4\u5730\u98d8\u843d\uff0c"} +{"id": "6003401", "video_name": "bdb0330e-9343-54b0-8b7b-980cbfe265a1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u592a\u7a7a\u51a5\u60f3\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u4ed6\u65cb\u8f6c360\u5ea6\u3002"} +{"id": "2006823", "video_name": "567d9018-f47e-5d31-9b34-ad12de307eda", "text": "\u8d5b\u8f66\u624b\u4e13\u6ce8\u5730\u9a7e\u9a76\u7740\u8d5b\u8f66\uff0c\u7a81\u7136\u8f6c\u8fc7\u5934\u770b\u7740\u6211\u4eec\u3002"} +{"id": "2007774", "video_name": "58abeef9-1290-5aac-8446-236d637b13f0", "text": "\u5728\u52a0\u65af\u5e15\u00b7\u8bfa\u57c3\u7684\u7535\u5f71\u300a\u7ea2\u706f\u533a\u300b\uff0c\u4ff1\u4e50\u90e8\u91cc\u6709\u5730\u7cbe\u548c\u6076\u9b54\uff0c\u5230\u5904\u90fd\u662f\u52a8\u7269\u548c\u8089\u7c7b\u3002"} +{"id": "4003194", "video_name": "4aed974c-9589-5622-92bf-c2daa55715c7", "text": "\u4e00\u4f4d\u6234\u7740\u9ec4\u8272\u5934\u76d4\u3001\u624b\u6301\u9524\u5b50\u3001\u8eab\u7a7f\u84dd\u8272\u5de5\u4f5c\u670d\u7684\u5de5\u4eba\uff0c\u50cf\u76ae\u514b\u65af\u7535\u5f71\u4e00\u6837\uff0c\u8dcc\u843d\u5e76"} +{"id": "8002572", "video_name": "f04fdc39-601d-58d9-84fc-c75b7df74b45", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u548c\u8def\u6613\u5409\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u72c2\u6b22\u6d3e\u5bf9\u4e0a\u4e00\u8d77\u73a9\uff0c\u6709\u4eba\u7fa4DJ\u548c\u5404\u79cd\u4e1c\u897f\u3002"} +{"id": "7003456", "video_name": "b65e5950-439e-5478-ab82-79c451ecec97", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u753b\u5e03\u83b1\u65af\u5a03\u5a03\u5728\u7f8e\u4e3d\u7684\u98ce\u666f\u4e2d\u3002"} +{"id": "7004443", "video_name": "9345259e-131b-5a31-b1e4-28dbb3e478c2", "text": "\u7b2c\u5341\u4e00\u4efb\u533b\u751f\u9a6c\u7279\u00b7\u53f2\u5bc6\u65af\u9762\u5bf9\u7b2c\u5341\u4e8c\u4efb\u533b\u751f\u5f7c\u5f97\u00b7\u5361\u5e15\u5c14\u8fea\u76844K\u7535\u5f71\u5316\u3002"} +{"id": "3004147", "video_name": "d94b7aca-317c-51e2-892b-1c45ca9636ea", "text": "\u7535\u5f71\u300a\u4e24\u5ea7\u5c71\u300b\u4e2d\u6709\u54c8\u6bd4\u5e03\u00b7\u52aa\u5c14\u9a6c\u6208\u6885\u591a\u592b\u53c2\u6f14\u3002"} +{"id": "6002506", "video_name": "caf621d3-f9f3-5e06-9fad-6c35e5467b25", "text": "\u6570\u767e\u53ea\u72d7\u53c2\u52a08\u516c\u91cc\u9a6c\u62c9\u677e\u6bd4\u8d5b\u3002"} +{"id": "2004784", "video_name": "1a1856aa-0436-5b05-8f2d-21e4afd25dbd", "text": "\u6d77\u4e0a\u9a91\u9a6c\u7684\u6234\u7740\u58a8\u955c\u7684\u6d77\u8c5a\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "2005758", "video_name": "70cb735a-49bc-52d1-a008-805abb22ec03", "text": "\u4e00\u8f86\u57fa\u4e8eZX10RR\u548cS1000RR\u7684\u6469\u6258\u8f66\u3002"} +{"id": "3006806", "video_name": "8cd37e9a-579b-5a17-9236-b80a2415fa3b", "text": "\u4e00\u53ea\u9ec4\u8272\u7684\u5361\u901a\u732b\u5728\u8857\u4e0a\u3002"} +{"id": "0003837", "video_name": "44488c6e-5946-595c-851e-0cacfb3c1092", "text": "\u4e00\u4e2a\u5de8\u578b\u673a\u5668\u4eba\u62ef\u6551\u4e00\u4e2a\u4eba\u7c7b\u5b69\u5b50\uff0c\u4e4c\u6258\u90a6\u4e16\u754c\uff0c\u7f29\u5c0f\u753b\u9762\uff0c4K\u3002"} +{"id": "0005586", "video_name": "1d864bd5-9d90-5791-b205-b2ee853802c8", "text": "\u6c7d\u8f66\u9a76\u8fc7\u7ecf\u5178\u7f8e\u56fd\u793e\u533a\u3002"} +{"id": "4004849", "video_name": "568b5307-07d9-56fe-b98a-c4d75aee8e9c", "text": "\u4e00\u4e2a\u5199\u5b9e\u7684\u677e\u9f20\u62ff\u7740\u4e00\u5806\u5377\u8f74\u3002\u8be6\u7ec6\u7684\u3001\u5145\u6ee1\u5192\u9669\u7684\u3001\u672b\u4e16\u7684\u573a\u666f\u3002"} +{"id": "3005240", "video_name": "bfd247d9-cb70-5fb5-98ad-4ccf044f0ae1", "text": "\u65af\u5361\u5229\u5c3c\u6765\u81ea\u8461\u8404\u7259\u6cd5\u7f57\u5e02 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0003377", "video_name": "3c825494-a11b-5722-a333-103df89afd2e", "text": "\u90a3\u53ea\u9e1f\u5df2\u7ecf\u5eb7\u590d\u4e86\uff0c\u6b63\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "5001899", "video_name": "8c436504-0bb5-565f-85cb-88598caa0c95", "text": "\u6307\u73af\u738b\u4e2d\u5173\u4e8e\u7eb3\u5179\u683c\u5c14\u7684\u6050\u6016\u52a8\u753b\u3002"} +{"id": "0003153", "video_name": "382ea474-2c32-517d-8a27-5c2655ebbaea", "text": "\u74e6\u5c14\u57fa\u91cc\u4e0e\u9521\u683c\u9c81\u5fb7\u6fc0\u70c8\u6218\u6597\u7684\u771f\u5b9e8K\u56fe\u7247\u3002"} +{"id": "0005681", "video_name": "1f2ee790-6543-50b8-8d72-403faf551eb8", "text": "4K\uff0c\u6bcf\u79d224\u5e27\uff0c\u903c\u771f\u7684\u56fe\u5f62\uff0c\u5bbd\u9ad8\u6bd416:9\u7684\u589e\u5f3a\u73b0\u5b9e\u3002"} +{"id": "4002897", "video_name": "ee5fa6a7-b901-50c3-8887-5060203c668c", "text": "\u5e03\u9c81\u65af\u00b7\u674e\uff0c\u9ad8\u6e05\uff0c4K\uff0c\u865a\u5e7b\u5f15\u64ce5"} +{"id": "1005849", "video_name": "6b7c2f52-7be4-5bb6-8162-ad5f2701d049", "text": "\u4e4c\u9f9f\u81ea\u79f0\u4e3a\u6258\u66fc\u5fb7\uff0c\u90a3\u4e2a\u9644\u6709\u9b54\u529b\u7684\u68ee\u6797\u7684\u5b88\u62a4\u8005\u3002"} +{"id": "4003590", "video_name": "d42f907a-fc72-536a-a81f-bf8e08ffb490", "text": "\u9ed1\u6697\u4e2d\u7684\u6811\u6797\u7684gif\u56fe\u50cf"} +{"id": "1006768", "video_name": "7bedfd89-aec7-503f-9a79-84caccfc624b", "text": "\u4e00\u4e2a\u6f2b\u753b\u98ce\u683c\u7684\u4eba\u548c\u4ed6\u7684\u670b\u53cb\u8bf4\u8bdd\u3002"} +{"id": "3003309", "video_name": "9110ed3d-2946-5df0-b609-b22183d63cc3", "text": "\u5927\u8c61\u6b63\u5728\u548c\u72fc\u718a\u4ea4\u8c08\u3002"} +{"id": "1006286", "video_name": "731c1876-d160-5f4f-b3cd-8ba5c51e0370", "text": "\u5728\u96f7\u96e8\u3001\u98ce\u3001\u9633\u5149\u548c\u6d77\u6ee9\u4e0a\u51b2\u6d6a\u677f\u3002"} +{"id": "0006838", "video_name": "34017ba0-aa60-5d2f-93f2-d3cf9801e8c9", "text": "\u4e00\u4e2a\u7531\u7238\u7238\u3001\u5988\u5988\u548c\u4e24\u4e2a\u5b69\u5b50\u7ec4\u6210\u7684\u5bb6\u5ead\u5750\u5728\u6d77\u6ee9\u8fb9\u7f18\uff0c\u51dd\u671b\u5927\u6d77\u3002"} +{"id": "3003036", "video_name": "89043bda-fb91-5238-9d55-b4981ac9acd9", "text": "\u68ee\u6797\u4e2d\u6709\u4e00\u5ea7\u5c0f\u800c\u53e4\u602a\u7684\u623f\u5b50\uff0c\u91cc\u9762\u4eae\u7740\u706f\uff0c\u70df\u4ece\u70df\u56f1\u91cc\u5192\u51fa\u6765\u3002\u955c\u5934\u805a"} +{"id": "4004956", "video_name": "08e468f5-3043-529e-aa54-22127a675b15", "text": "\u53e4\u5e0c\u814a\u54f2\u5b66\u5bb6\uff0c\u8d85\u73b0\u5b9e\uff0c\u8d85\u903c\u771f\uff0c\u4f18\u96c5\uff0c\u8d85\u7ea7\u8be6\u7ec6\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "3006174", "video_name": "bb27159e-b225-5742-9563-38ef8ecdd2a0", "text": "\u5916\u661f\u884c\u661f\u4ece\u592a\u7a7a\u4e2d\u65cb\u8f6c\u7684\u666f\u8c61\u3002"} +{"id": "1006771", "video_name": "7bf67bef-cd5c-51d2-a6d5-7a9e599205fe", "text": "\u4e00\u7247\u8352\u51c9\u3001\u6708\u5149\u7167\u8000\u4e0b\u7684\u666f\u8c61\uff0c\u56db\u5904\u6563\u843d\u7740\u5e9f\u589f\uff0c\u662f\u66fe\u7ecf\u7e41\u534e\u57ce\u5e02\u7684\u9057\u8ff9\u3002\u7a7a"} +{"id": "1006205", "video_name": "71bc6ddf-8a3a-54b4-82f9-3c2c29cfcd89", "text": "\u4f7f\u7528\u7ea2\u8272\u9f99\u548c\u7535\u5f71\u955c\u5934\u62cd\u6444\u76844K\u5168\u666f\u98de\u8d8a\uff0c\u63cf\u7ed8\u4e86\u5947\u79d1\u00b7\u6c99\u7ef4\u5c14\u521b\u4f5c\u7684\u7535\u5f71\u300a\u661f\u4f53\u57ce"} +{"id": "5001810", "video_name": "4e283480-2777-599c-9b6b-4ce9cd4bf93c", "text": "Source sentence: \u6218\u952440000\u4e2d\u7684\u4e00\u4e2a\u8702\u5de2\u57ce\u5e02\u5de5\u4eba\u63a5\u53d7\u91c7\u8bbf"} +{"id": "2004023", "video_name": "78d97053-80f0-54c8-a097-4d829648684d", "text": "\u609f\u7a7a\u548c\u5176\u4ed6\u9f99\u73e0Z\u89d2\u8272\u57281000\u500d\u91cd\u529b\u4e0b\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "2005554", "video_name": "58e25138-3760-5576-aa11-c9fb5b094620", "text": "\u5728\u4e00\u95f4\u5145\u6ee1\u795e\u79d8\u5149\u8292\u7684\u767d\u8272\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u5947\u5e7b\u751f\u7269\u6b63\u5728\u8df3\u821e\u3002\u5979\u770b\u8d77\u6765\u50cf\u662f\u767d\u8272\u5927\u7406"} +{"id": "6002376", "video_name": "0db25968-6cf2-59ec-a748-0d6d00eb67f7", "text": "\u968f\u7740\u76f8\u673a\u9010\u6e10\u62c9\u8fd1\u955c\u5934\uff0c\u4e00\u4e2a\u5b69\u5b50\u8d70\u5728\u4e00\u6761\u957f\u957f\u7684\u8def\u4e0a\uff0c\u5979\u8eab\u65c1\u4e0d\u540c\u989c\u8272\u7684\u82b1\u6735\u76f8\u7ee7\u51fa"} +{"id": "2007402", "video_name": "d10bfc47-cdcc-5e43-b4c1-6e8158ccef6a", "text": "\u5979\u7684\u5934\u53d1\u548c\u8863\u670d\u88ab\u98ce\u5439\u52a8\uff0c\u53d1\u51fa\u8f7b\u67d4\u81ea\u7136\u7684\u58f0\u97f3\u3002"} +{"id": "8003957", "video_name": "5a1fbcd4-a7f2-5ba1-8e61-1fbebbe6d934", "text": "\u5973\u5b69\u5728\u57ce\u5e02\u91cc\u5f00\u6469\u6258\u8f66\u3002"} +{"id": "3005014", "video_name": "4b6a3c57-467e-5d09-8488-e12be4399a2d", "text": "\u58a8\u897f\u54e5\u5730\u7406\u4f4d\u7f6e\u4f18\u8d8a\uff0c\u9760\u8fd1\u7f8e\u56fd\uff0c\u8fd9\u4f7f\u5f97\u8bb8\u591a\u7f8e\u56fd\u4eba\u524d\u5f80\u58a8\u897f\u54e5\u65c5\u6e38\u76f8\u5bf9\u5bb9\u6613\u548c\u7ecf\u6d4e\u5b9e\u60e0\u3002"} +{"id": "4004724", "video_name": "74c63d4c-d812-5616-8dd9-e7dab2582406", "text": "\u65b0\u5a18\u53ef\u4ee5\u548c\u5bb6\u4eba\u3001\u4f34\u5a18\u548c\u670b\u53cb\u4e00\u8d77\u62cd\u7167\u3002\u8fd9\u4e9b\u7167\u7247\u80fd\u591f\u8bb0\u5f55\u4e0b\u5e86\u795d\u548c\u56e2\u7ed3\u7684\u611f\u89c9\u3002"} +{"id": "6002520", "video_name": "374cc2c0-8de8-5a30-bb35-7e21ca327071", "text": "ULTA 8K\u3002\u903c\u771f\u7684\u30023D\u8d28\u91cf\u3002\u975e\u6d32\u7684\u5e74\u5e7c\u7537\u5b69\u7528\u94c1\u94f2\u5728\u6c99\u77ff\u4e2d\u8f9b\u52e4\u5de5\u4f5c\u3002\u8d2b\u56f0"} +{"id": "0005730", "video_name": "20420c36-1e8b-5b4f-bfda-ad5c1f51590f", "text": "\u5728\u4e00\u4e2a\u5927\u573a\u5730\u4e0a\u5236\u4f5c\u4e00\u4e2a\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u573a\u666f\uff0c\u79cb\u53f6\u98d8\u843d\u3002"} +{"id": "2007181", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "\u56db\u4e2a\u6234\u7740\u5934\u5dfe\u7684\u5973\u4eba\u5728\u8d5b\u9a6c\u573a\u4e0a\u9a91\u9a6c\u6bd4\u8d5b\u3002"} +{"id": "8003543", "video_name": "e2160660-986a-57dd-b322-00ee0dc91fc1", "text": "\u6050\u6016\u7684\u68ee\u6797\uff0c\u5927\u811a\u602a\u5728\u9ed1\u6697\u4e2d\u6f5c\u4f0f\u8ffd\u8e2a\u7740\u4e00\u7ec4\u56db\u4e2a\u4eba\u7684\u4eba\u7c7b\u3002 \n\nSource sentence: The sun set over"} +{"id": "4004872", "video_name": "1e508a6e-b48b-5c6a-b742-1ec69d9b51d8", "text": "\u8fea\u58eb\u5c3c\u5f69\u8272\u57ce\u5e02\u4e2d\u592e\u6709\u4e00\u4e2a\u55b7\u6cc9\uff0c\u5b69\u5b50\u4eec\u5728\u5468\u56f4\u73a9\u800d\uff0c\u7eff\u8349\uff0c\u84dd\u5929\uff0c\u9633\u5149\u660e"} +{"id": "1004796", "video_name": "58ad8349-b0ca-5617-96f6-c3d0078893a1", "text": "\u4e00\u53f0\u91d1\u5c5e\u673a\u5668\u4eba\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u79cb\u65e5\u7684\u65e5\u843d\u3002"} +{"id": "3006644", "video_name": "1a6ebb13-5edb-5460-bff6-f945db27cccd", "text": "\u57ce\u5e02\u91cc\u6709\u53ea\u5de8\u5927\u7684\u8718\u86db\u5728\u5efa\u7b51\u7269\u4e0a\u8d70\u52a8\u3002"} +{"id": "1004754", "video_name": "58015a0a-3e02-53ed-849e-3533f9e66bc2", "text": "\u74e6\u5c14\u4ec0\u5c3c\u548c\u7f57\u4ec0\u5c3c\u662f\u4e24\u4e2a\u4ece\u5c0f\u5c31\u6709\u7740\u7d27\u5bc6\u8054\u7cfb\u7684\u59d0\u59b9\u3002"} +{"id": "2003564", "video_name": "1d4105f3-dc83-51c0-bbcc-64b0ae33b04f", "text": "\u4ece\u4e0a\u9762\u770b\uff0c\u5c0f\u8239\u4e0a\u7684\u7537\u5b69\u5728\u6d77\u6d0b\u4e2d\u3002"} +{"id": "7003629", "video_name": "799f85ec-156a-5e3d-9e04-f50b8b719781", "text": "\u4e00\u4e2a\u7537\u5b69\u8fb9\u8d70\u8fb9\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "6004845", "video_name": "cccaa417-97d6-5546-a2a3-18da2d0ab941", "text": "\u5e03\u91cc\u5409\u7279\u00b7\u5df4\u5c14\u6735\u5728\u68d5\u6988\u6cc9\u7684\u4e00\u680b\u590d\u53e4\u4e2d\u4e16\u7eaa\u5bb6\u4e2d\uff0c\u4f7f\u75288K\u7535\u5f71\u6444\u5f71\u3002"} +{"id": "1005381", "video_name": "62eca4f4-96e7-541e-8b1a-9ab663eb7ae7", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u6a59\u8272\u5207\u534a\uff0c\u6700\u4f73\u8d28\u91cf\uff0c8K\u3002"} +{"id": "8001254", "video_name": "da6c54ce-9559-54bf-bd8d-19cd155ad245", "text": "\u4f7f\u7528\u677e\u4e0bLumix\u76f8\u673a\u62cd\u6444\u7684\u9ad8\u6e05\u7167\u7247\uff0c\u5c06\u7126\u8ddd\u653e\u5927\u81f3150\u6beb\u7c73\uff0c\u62cd\u6444\u4e86\u4e00\u5bf9\u7537\u5973\u5f80\u5730\u5e73\u7ebf\u8d70\u53bb"} +{"id": "3003563", "video_name": "c7522520-02f2-5106-b532-69225fa0d427", "text": "\u6bd2\u6db2\u5e26\u7740\u5371\u9669\u7684\u7b11\u5bb9\u770b\u7740\u955c\u5934\uff0c\u9ad8\u5206\u8fa8\u7387\u7684\u5fae\u7b11\u3002"} +{"id": "7002142", "video_name": "9d3f21b9-281b-57f3-a7a4-433d1e9a4e0c", "text": "\u963f\u5e03\u624e\u6bd4\u7684\u535a\u58eb\u751f\u5728\u821e\u53f0\u4e0a\u7528\u89c6\u9891\u6295\u5f71\u4eea\u89e3\u91ca\u5979\u7684\u8bba\u6587\u3002"} +{"id": "2004737", "video_name": "5cde990b-f30e-5d8a-a345-4293fb430d09", "text": "\u4e4c\u9f9f\u548c\u5154\u5b50\u7ad9\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "7004605", "video_name": "8522d7bb-aac6-5314-96fa-d6535e3aba2e", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u624b\u673a\u4e0a\u4e92\u76f8\u4ea4\u8c08\u7684\u4e8c\u7ef4\u52a8\u753b\u3002"} +{"id": "1005306", "video_name": "61808274-17b3-5c15-b027-b041f8374997", "text": "\u4e00\u4e2a\u4e00\u5206\u949f\u7684\u5bb6\u5ead\u5f55\u50cf\uff0c\u5728\u5f55\u5236\u8fc7\u7a0b\u4e2d\uff0c\u4e00\u4f4d\u597d\u83b1\u575e\u5973\u6f14\u5458\u7a7f\u7740\u739b\u4e3d\u83b2\u00b7\u68a6\u9732\u7684\u88c5\u626e\u5b8c\u6210"} +{"id": "7002857", "video_name": "6ebfc68f-3bbc-5949-b160-4174cc4f5c4e", "text": "\u5b66\u58eb\u670d\u7684\u5b66\u751f\u4eec\u9762\u524d\u6709\u4e00\u53f0\u5bbd\u5c4f\u7535\u8111\u663e\u793a\u7740\u4e00\u5f20\u56fe\u8868\u3002"} +{"id": "7004463", "video_name": "4645f2f3-215f-567f-ac61-b30ab7d355ab", "text": "\u767d\u888d\u5973\u5b50\u4ece\u6559\u5802\u5efa\u7b51\u4e2d\u5954\u51fa\uff0c\u8ddf\u8e2a\u955c\u5934\uff0c\u6050\u6016\uff0c\u6697\u5149\u3002"} +{"id": "7004007", "video_name": "a568fe69-4bf1-5bfc-97c8-13a0d9d17073", "text": "\u5728\u4e1b\u6797\u91cc\uff0c\u4e00\u7fa4\u597d\u5947\u7684\u52a8\u7269\u805a\u96c6\u5728\u4e00\u53ea\u777f\u667a\u7684\u732b\u5934\u9e70\u5468\u56f4\u3002"} +{"id": "0005530", "video_name": "1c616296-7a52-5609-8cb8-54fc041a0725", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u5bfa\u5e99\uff0c\u6709\u4e09\u4e2a\u7403\u4f53\u4f9b\u80fd\u3002"} +{"id": "2004454", "video_name": "736d4557-cec8-5acc-bcd8-235ea42353d9", "text": "\u591c\u666f\uff0c\u5728\u9ad8\u901f\u516c\u8def\u4e0a\uff0c\u6c7d\u8f66\u7a7f\u8fc7\u3002"} +{"id": "2007341", "video_name": "a693c482-fcdf-5323-9186-2a3fd92bb808", "text": "Translation: \u5927\u7406\uff0c\u7741\u5f00\u7684\u773c\u775b\uff0c\u79fb\u52a8\u7684\u773c\u775b\uff0c\u795e\u79d8\u7684\uff0c\u94bb\u77f3\uff0c\u5916\u661f\u4eba\uff0c\u7a7a\u95f4\uff0c\u9ed1\u6697\uff0c\u5854\u7f57"} +{"id": "4002881", "video_name": "8d1ca1d5-ebb2-5ae4-a08f-4cd6e8b84cb9", "text": "\u4e00\u53ea\u5168\u526f\u6b66\u88c5\u3001\u80cc\u7740\u55b7\u5c04\u80cc\u5305\u7684\u6050\u9f99\u5728\u661f\u9645\u901f\u5ea6\u6e38\u620f\u4e2d\u4e0e\u5176\u4ed6\u4eba\u5bf9\u6218\u3002"} +{"id": "4003294", "video_name": "fc354de2-3401-5f5e-b3ef-f60fc4f8d8c7", "text": "\u8fb9\u754c\uff1a\u8fb9\u754c\u95ee\u9898\u662f\u51b2\u7a81\u7684\u6838\u5fc3\u3002\u672a\u6765\u5df4\u52d2\u65af\u5766\u56fd\u7684\u786e\u5207\u8fb9\u754c\u3001\u4e1c\u8036\u8def\u6492\u51b7\u7684\u5730\u4f4d\u4ee5\u53ca"} +{"id": "3004362", "video_name": "500a6363-4990-5166-aee2-148d52c624d1", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u753b\u4e00\u5e45\u7f8e\u4e3d\u7684\u98ce\u666f\u3002"} +{"id": "2007430", "video_name": "4911b019-9612-5900-8d4b-3436f20069c3", "text": "\u65e5\u672c\u7684\u8857\u5934\u8d5b\u8f66\u573a\u666f\u7684\u52a8\u6f2b\u7248\u672c\u3002"} +{"id": "8003601", "video_name": "77250096-585c-5534-996c-e5d137a8d5d0", "text": "\u5c06\u592a\u9633\u52a8\u753b\u5316\uff0c\u53d8\u6210\u660e\u4eae\u7684\u6708\u4eae\uff0c\u5e76\u4f7f\u989c\u6599\u53d8\u4e3a\u9713\u8679\u8272\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\u732b\u6b63\u5728\u7a97\u53f0"} +{"id": "1005461", "video_name": "645707b0-ee3a-5ee4-a680-a9b6627e0b95", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u770b\u7740\u4ed6\u6700\u559c\u6b22\u7684\u97f3\u4e50\u4e50\u961f\u5728\u7535\u89c6\u4e0a\u6f14\u51fa\u3002"} +{"id": "1005271", "video_name": "60eb372c-8f8d-585a-9e4c-5199e0ca18f6", "text": "\u5750\u5728\u6237\u5916\u6674\u6717\u7684\u65e5\u5b50\u91cc\u6572\u6253\u624b\u9f13\u7684\u5973\u4eba\uff0c\u5168\u8eab\u955c\u5934\u62cd\u6444\uff0c\u81ea\u7136\u7f8e\u611f\u3002"} +{"id": "8001762", "video_name": "9bd51339-c8c2-5030-90f8-09c5e7e08d32", "text": "\u8fea\u58eb\u5c3c\u516c\u4e3b\u5728\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "1006734", "video_name": "7b5e70de-bc5c-5e9e-8a92-4dcca82aed1e", "text": "\u900f\u8fc7\u67f4\u90e1\u732b\u7684\u773c\u775b\uff0c\u5145\u6ee1\u5947\u601d\u5999\u60f3\u548c\u751f\u52a8\u6d3b\u6cfc\u7684\u6c14\u606f\u3002"} +{"id": "0003648", "video_name": "40f952ac-ccff-575f-ba65-00e44abf1ddd", "text": "\u7ea2\u6bcd\u9e21\u62ff\u7740\u9ea6\u5b50\u95ee\u5979\u7684\u670b\u53cb\u4eec\u662f\u5426\u6709\u5174\u8da3\u79cd\u690d\u5b83\u3002\u9e2d\u5b50\u3001\u732b\u548c\u72d7\u505a"} +{"id": "5001191", "video_name": "2e0274a8-b313-56ea-b318-b975bd0a447e", "text": "will never be dipped to any earthly king.\n\nTranslated sentence: \u76f8\u4fe1\u6211\uff0c\u7f8e\u56fd\u56fd\u65d7\u6c38\u8fdc\u4e0d\u4f1a\u5411\u4efb\u4f55\u4e16\u4fd7\u7684\u56fd\u738b\u4f4e\u5934\u3002"} +{"id": "3003788", "video_name": "a39f71a0-4d2a-5343-9101-ceb280df9710", "text": "\u4e00\u4e2a\u7a77\u4eba\u8715\u53d8\u6210\u6210\u529f\u7684\u5546\u4eba"} +{"id": "6003470", "video_name": "8730135c-a430-5bbb-a631-c4c966d857b8", "text": "\u6253\u5f00\u773c\u775b\u770b\u89c1\u5b87\u5b99\u7684\u4eba"} +{"id": "3004418", "video_name": "154d2376-3207-50d5-a679-e6f025bb2bf5", "text": "\u7a81\u7136\u95f4\uff0c\u4e94\u6761\u609f\uff0c\u6234\u7740\u6807\u5fd7\u6027\u7684\u773c\u7f69\u548c\u767d\u53d1\u3002"} +{"id": "3003843", "video_name": "c7e3691d-04c9-5b2f-8433-fac80d896869", "text": "\u4f60\u4e0d\u4f1a\u6709\u4efb\u4f55\u6e34\u671b\u6216\u68a6\u60f3\uff0c\u9664\u975e\u5b83\u5728\u4f60\u7684\u80fd\u529b\u8303\u56f4\u4e4b\u5185\u53d8\u6210\u73b0\u5b9e\u3002"} +{"id": "8002098", "video_name": "2d838ff1-bea7-5834-a9ea-3412802de452", "text": "\u9ad8\u6e05\u903c\u771f\u768460\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u955c\u5934\uff0c35\u6beb\u7c73\uff0c\u9152\u5e97\u8d70\u5eca\u91cc\u4e00\u4e2a\u7537\u4eba\u5728\u8dd1\u3002\u6c1b\u56f4\u975e\u5e38\u9634\u6697"} +{"id": "2006282", "video_name": "088ebae6-b363-5143-9816-7f543f8c40b7", "text": "\u6355\u6349\u4e00\u4f4d\u53e4\u8001\u7684\u5370\u5ea6\u5973\u738b\u96cd\u5bb9\u5730\u5750\u7740\u7684\u58ee\u4e3d\u573a\u666f\uff0c\u5979\u7684\u7687\u5bb6\u624b\u4e0a\u88c5\u9970\u7740\u590d\u6742\u7684"} +{"id": "8001567", "video_name": "c1bd3928-a309-5b8a-9dc8-e64a95a62a46", "text": "\u4e00\u6761\u98de\u884c\u5728\u5916\u592a\u7a7a\u4e2d\u7684\u9f99\uff0c\u4e09\u7ef4\u52a8\u753b"} +{"id": "7002194", "video_name": "b988220e-48a4-5b3a-b6b9-f1350a2e34ad", "text": "\u4e00\u4e2a\u52a8\u6f2b\u7537\u5b69\u4e0e\u88ab\u7ed1\u67b6\u7684\u5973\u5b69\u4ea4\u8c08\u4e862\u5206\u949f\u3002"} +{"id": "6002090", "video_name": "72a6da00-8237-5fcf-aa9f-b133ab44385d", "text": "\u4e00\u4e2a21\u5c81\u7684\u60c5\u4fa3\uff0c\u5973\u5b69\u76ae\u80a4\u767d\u7699\uff0c\u68d5\u8272\u773c\u775b\uff0c\u7c89\u7ea2\u8272\u773c\u955c\uff0c\u68d5\u8272\u4e2d\u5206\u957f\u53d1\uff0c\u7537\u5b69"} +{"id": "3006676", "video_name": "a93c45ea-46c5-59b7-a2dd-b45e0ea97ba0", "text": "\u9ed1\u767d\u768420\u4e16\u7eaa20\u5e74\u4ee38\u6beb\u7c73\u8d85\u7ea7\u7535\u5f71\uff0c\u9ab7\u9ac5\u548c\u6492\u65e6\u5973\u5deb\u5728\u7bdd\u706b\u5468\u56f4\u8df3\u821e\uff0c\u4ee4\u4eba"} +{"id": "3004156", "video_name": "0447f216-2e35-54d4-a71b-0bcab3676395", "text": "\u5728\u4e00\u8f86\u4e3a\u5723\u8bde\u8282\u88c5\u9970\u7684\u5361\u8f66\u4e0a\u7684\u4eba\u4eec\u5411\u4eba\u4eec\u6d3e\u53d1\u793c\u7269\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7003765", "video_name": "bd228a34-9a6a-5bc7-a664-b61e46ffb5b2", "text": "\u4e00\u4e2a\u6218\u58eb\u8d70\u5728\u57ce\u5821\u8d70\u5eca\u4e0a\uff0c\u53ea\u6709\u4ed6\u8d70\u8def\u65f6\u7684\u53cc\u817f\u53ef\u89c1\u3002"} +{"id": "4002400", "video_name": "471edca5-26e5-532c-adb2-8a8784e30c14", "text": "\u6c34\u624b\u6708\u4eae\uff0c\u5927\u8fab\u5b50\uff0c\u597d\u8eab\u6750\u3002"} +{"id": "3005854", "video_name": "8eeb1a7c-cfe9-5a14-9ae1-ae71782749a7", "text": "\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u3001\u5145\u6ee1\u591a\u6837\u4e14\u7f8e\u4e3d\u690d\u7269\u7684\u82b1\u56ed\u3002"} +{"id": "2004434", "video_name": "2ca7588c-35da-5c7e-963d-0593955dac1c", "text": "\u8fd9\u6761\u8857\u9053\u4e24\u65c1\u662f\u53e4\u96c5\u4f20\u7edf\u7684\u5c0f\u5c4b\uff0c\u5c4b\u9876\u4e0a\u8986\u76d6\u7740\u8305\u8349\uff0c\u5899\u4e0a\u722c\u6ee1\u4e86\u4e94\u5f69\u6591\u6593"} +{"id": "0005636", "video_name": "1e7e1f15-936e-57ff-af1e-c7c09572507a", "text": "\u62d2\u7edd\u63a5\u53d7\u6761\u6b3e \u60a8\u5fc5\u987b\u63a5\u53d7\u6211\u4eec\u7684\u670d\u52a1\u6761\u6b3e\u624d\u80fd\u5f00\u59cb\u4f7f\u7528Midjourney\u3002"} +{"id": "3005166", "video_name": "7d49fefa-6183-5e78-9704-e5bd7b80ef27", "text": "\u4e2d\u5fc3\u72ee\u5b50\u540e\u9000\u4e24\u6b65\u3002"} +{"id": "2004743", "video_name": "7476c5db-fee5-5690-80b0-7bc49d37118c", "text": "\u6751\u5e84Meadowside\u5728\u80dc\u5229\u540e\u7684\u5e86\u795d\u6d3b\u52a8\u63cf\u8ff0\u3002"} +{"id": "0004628", "video_name": "0c3c935d-7487-5576-aaff-4bf69a08c180", "text": "\u6c99\u6f20\u4e2d\u95f4\u5f00\u7740\u82b1\u7684\u7070\u8910\u8272\u690d\u7269\u3002"} +{"id": "4002640", "video_name": "818266d8-5edd-5693-b4e3-4d9eccbbdf46", "text": "Translation: \u62c9\u74e6\u7eb3\u56fd\u738b\uff0c\u624b\u6301\u65a7\u5934\u7684\u5c0f\u53ef\u7231\u7537\u5b69\uff0c"} +{"id": "8003674", "video_name": "653c810d-9a1f-5b7e-aec7-7e8f2b9db343", "text": "\u4e00\u6bb501:02\u7684\u89c6\u9891\uff0c\u80cc\u666f\u97f3\u4e50\u4e3a127 BPM\uff0c00:00\u81f300:17\u7528\u4e8e\u5c55\u793a\u4e0d\u540c\u7684\u591c\u603b\u4f1a\u706f\u5149\u6548\u679c\uff0c00:18\u81f300:32"} +{"id": "1003134", "video_name": "39c4c971-2c05-54dd-a2f8-5b924ca8c862", "text": "\u4e00\u4f4d\u5750\u5728\u684c\u5b50\u540e\u9762\u7684\u5973\u65b0\u95fb\u4e3b\u6301\u4eba\u3002"} +{"id": "8001413", "video_name": "0fbdc01b-35de-5fb2-86f5-ef616d0820d3", "text": "\u5236\u4f5c\u7ecf\u5178\u9e21\u5c3e\u9152\u9700\u89811\u5206\u949f\u7684\u8bd7\u4eba\u4e4b\u9b42\uff0c\u800c\u4e0d\u662f\u4e00\u4e9b\u7b80\u5355\u7684\u6750\u6599\u3002"} +{"id": "6002917", "video_name": "57cdadae-bfb8-5ea5-bb9c-e795fd8b53ed", "text": "\u5c55\u73b0\u62bd\u8c61\u7684\u4e07\u82b1\u7b52\u56fe\u6848\uff0c\u5145\u6ee1\u6d3b\u529b\u548c\u52a8\u611f\u7684\u89c6\u9891\u3002\u4e0d\u5e94\u51fa\u73b0\u4eba\u6216\u52a8\u7269\u3002\u8ba9\u8272\u5f69\u548c\u5f62\u72b6\u5728\u521b\u610f\u7684\u89c6"} +{"id": "4002573", "video_name": "f00f6dd9-b582-57d5-8cd8-46ba960164fa", "text": "70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u8d85\u73b0\u5b9e\u4e3b\u4e49\u4eba\u7269\uff0c\u62e5\u6709\u5f02\u6b21\u5143\u7684\u68a6\u5e7b\u9762\u5bb9\u548c\u5e3d\u5b50\uff0c\u7ad9\u5728\u8fdc\u5904\uff0c\u9762\u5bf9\u7740\u5f02\u5e38\u7f8e"} +{"id": "2007036", "video_name": "cf085871-0ed8-5606-b61e-6eb8b4f404eb", "text": "\u72c2\u72ac\u8bd5\u56fe\u5403\u6389\u4e00\u53ea\u6d77\u8c5a\uff0cVHS\u8001\u7535\u5f71\uff0c\u8d85\u903c\u771f\uff0c4K\u3002"} +{"id": "2003637", "video_name": "f372b8f7-7814-50ec-a0b2-4b44922f6683", "text": "\u5728\u6c99\u6f20\u9ad8\u901f\u516c\u8def\u4e0a\uff0c\u65e0\u4eba\u673a\u62cd\u6444\u4e86\u4e00\u8f86\u8dd1\u8f66\u9ad8\u901f\u9a70\u9a8b\u7684\u753b\u9762\u3002\u4f7f\u7528\u4e13\u4e1a\u76844K\u6444\u50cf\u673a\u8fdb\u884c\u62cd"} +{"id": "1006842", "video_name": "7d17dedf-886d-5ffc-b508-bda53aea8747", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u6d77\u76d7\u5728\u6d77\u76d7\u8239\u4e0a\u5f39\u5409\u4ed6\u5531\u6b4c\uff0c\u4ed6\u7684\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u8361\u3002\n\nSource sentence: The sunset over the ocean is"} +{"id": "3005363", "video_name": "dc3bf5ea-fa18-57b6-9f66-9ca38c26d679", "text": "\u732b\u7a7f\u7740\u76d4\u7532\uff0c\u9ad8\u54c1\u8d28\u63d2\u56fe\u3002"} +{"id": "4003313", "video_name": "b53d6ba5-3bb6-5062-8d44-49016df18dfe", "text": "\u667a\u6167\u7684\u732b\u5934\u9e70\u5965\u91cc\u6602\u6816\u606f\u5728\u6811\u679d\u4e0a\uff0c\u5b88\u62a4\u7740\u4ed6\u4eec\u3002"} +{"id": "2004764", "video_name": "cffc27c2-1bbb-534d-ad46-2127fa6b9d33", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u591c\u665a\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\u4e0a\u6563\u6b65\uff0c\u7a81\u7136\u770b\u5230\u4ed6\u4eec\u5934\u9876\u4e0a\u7684\u5929\u7a7a\uff0c\u770b\u5230\u4e00\u53ea\u5728\u5929\u7a7a\u4e2d\u53d1"} +{"id": "0004454", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "\u90a6\u62c9\u5360\u4e4b\u6218 \u6444\u5f71\u8fd0\u52a82 18\u5e27\u6bcf\u79d2"} +{"id": "4004289", "video_name": "2b4ee732-10b7-518c-8e83-6274322cd6c1", "text": "\u5728\u57c3\u585e\u4fc4\u6bd4\u4e9a\u8857\u5934\u8dd1\u6b65\u7684\u7537\u5b50\u3002"} +{"id": "1003765", "video_name": "455f0af1-13c9-5f32-bbe5-d9786e3cc873", "text": "\u91d1\u8272\u98ce\u94c3\u5728\u8f7b\u5fd9\u7684\u65e5\u5b50\u91cc\u3002"} +{"id": "2004054", "video_name": "a56bd8fe-1ed8-562f-b787-297f90d06de1", "text": "\u5979\u7a81\u7136\u88ab\u6ef4\u7b54\u58f0\u60ca\u9192\u4e86\u3002"} +{"id": "8001863", "video_name": "cefb710c-cd1a-52b7-9cca-3b1c6d94aa3a", "text": "\u5f00\u573a\u666f\uff1a\u4ece\u9ed1\u6697\u4e2d\u6de1\u5165\u660e\u4eae\u800c\u8bf1\u4eba\u7684\u6559\u5ba4\u3002\u80cc\u666f\u4e2d\u542c\u5230\u5b66\u751f\u8f7b\u58f0\u804a\u5929\u7684\u58f0\u97f3\u3002\u955c\u5934\u805a\u7126"} +{"id": "2005110", "video_name": "9678da8a-b8f1-5073-ae00-2b331979719a", "text": "\u74f6\u5b50\u88ab\u538b\u788e\u5728\u6db2\u538b\u538b\u529b\u673a\u4e2d\uff0c\u662f\u4e13\u4e1a\u89c6\u9891\u3002"} +{"id": "3003586", "video_name": "992cbae0-bdfc-57fb-8588-a4692265349a", "text": "\u4e0b\u96e8\u503e\u76c6\u5728\u4e00\u5ea7\u623f\u5b50\u4e0a\uff0c\u5929\u7a7a\u4e2d\u6709\u96f7\u4e91\u548c\u95ea\u7535\u3002\u53cd\u4e4c\u6258\u90a6\u3002"} +{"id": "7002179", "video_name": "84dddbe1-7024-58d7-9387-dcff4a443f41", "text": "\u6709\u4e00\u5929\uff0c\u7334\u5b50\u8336\u59c6\u5e93\u548c\u4ed6\u7684\u7334\u5b50\u670b\u53cb\u51b3\u5b9a\u8e0f\u4e0a\u524d\u5f80\u57ce\u5e02\u7684\u65c5\u7a0b\u3002\u60f3\u8c61\u4e00\u4e0b\u7334\u5b50\u4eec"} +{"id": "2005341", "video_name": "3d794392-8362-5afd-b44c-c768fabd3ad6", "text": "\u4ece\u98de\u673a\u4e0a\u81ea\u7531\u843d\u4f53\uff0c\u5e26\u7740\u6cd5\u56fd\u56fd\u65d7\u7684\u964d\u843d\u4f1e\uff0c\u5bab\u5d0e\u9a8f\u98ce\u683c\u3002"} +{"id": "2003049", "video_name": "db4e4f70-31b2-51dc-9cc1-ed42416a8fc0", "text": "\u7b2c\u4e00\u6b21\u5b66\u4e60\u4eba\u5de5\u667a\u80fd\u5e76\u5728\u7ebf\u89c2\u770b\u8bfe\u7a0b\u7684\u4eba\u3002"} +{"id": "3005106", "video_name": "ca313b1e-0124-5528-af52-b5fe67a241ec", "text": "\u4e0d\u8981\u572810\u82f1\u91cc\u5185\u6362\u80a9\u3002"} +{"id": "0006394", "video_name": "2bc40223-76d1-502c-bdda-f906ed8ec25f", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u7740\u4e00\u53ea\u5de8\u9f20\uff0c\u540c\u65f6\u6253\u7f51\u7403\u3002"} +{"id": "1005433", "video_name": "63dd6800-1999-59e1-bed6-260be03111a5", "text": "\u4e00\u4e2a\u5e74\u9f84\u57285\u5c81\u52308\u5c81\u4e4b\u95f4\u3001\u79c3\u5934\u7684\u4e2d\u56fd\u5b69\u5b50\uff0c\u53cc\u624b\u5408\u5341\u5e73\u9759\u5730\u7ad9\u7740\u3002\u521b\u9020\u51fa\u5b81\u9759\u7684\u6c1b\u56f4\uff0c\u5e76"} +{"id": "6003181", "video_name": "9a508f4c-43bb-5c65-ac19-67f80e2446f3", "text": "\u9897\u7c92\u72b6\u7684\u9ed1\u767d\u7535\u5f71\u4e2d\u7684\u5916\u661f\u4eba"} +{"id": "2007457", "video_name": "26c3199b-09f3-593c-a2d4-5528fe57790f", "text": "\u4ece\u65e0\u4eba\u673a\u4e0a\u770b\u5230\u7684\u5e03\u5b9c\u8bfa\u65af\u827e\u5229\u65af\u57ce\u5e02\u3002"} +{"id": "4003535", "video_name": "c553983e-1707-5b06-b171-e1321aceea48", "text": "\u53ef\u7231\u7684\u9ed1\u8272\u5c0f\u732b\u6b63\u5728\u732b\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "3005114", "video_name": "4bbdee58-5783-523b-a615-99c1bb3e05dd", "text": "\u4e00\u58f0\u58f0\u97f3\u5728\u5bc2\u9759\u4e2d\u54cd\u8d77\u3002"} +{"id": "7004084", "video_name": "f6018301-fa34-5c2f-a063-d9d635a0dc00", "text": "\u5927\u8c61\u3001\u8001\u864e\u3001\u7345\u5b50\u3001\u9577\u9838\u9e7f\u3001\u7334\u5b50\u3001\u9e7f\u548c\u718a\u6b63\u5728\u68ee\u6797\u88e1\u6162\u52d5\u4f5c\u5730\u884c\u8d70\u3002"} +{"id": "3006067", "video_name": "69e4fc5f-f883-56e0-b08b-be1ef6fdb2c9", "text": "\u955c\u5934\u62c9\u8fdc\uff0c\u5973\u5b69\u5411\u53f3\u8f6c\u5934\u3002"} +{"id": "5001538", "video_name": "1ac20f14-de8e-54fc-9ec3-30a68f164b56", "text": "\u6027\u611f\u7684\u97e9\u56fd\u5973\u4eba\u5728\u6237\u5916\u9ad8\u5c14\u592b\u7403\u573a\u6253\u7403\u3002"} +{"id": "4004267", "video_name": "c0e3851e-41b6-583f-863e-41814e1b5a4c", "text": "\u6253\u96ea\u4eba\uff0c\u6253\u96ea\u4ed7\uff0c\u88c5\u9970\u59dc\u997c\u6811\u3002"} +{"id": "6003106", "video_name": "34aacb5e-4841-5816-b91c-4293459a855f", "text": "\u72ec\u89d2\u517d\u9a91\u7740\u5f69\u8679\uff0c\u5929\u4f7f\u4eec\u5174\u594b\u5730\u770b\u7740\u5b83\u4eec\u5728\u65e0\u9650\u5faa\u73af\u4e2d\uff0c\u4ee5\u8fea\u58eb\u5c3c\u548c\u5149\u5f71\u52a8"} +{"id": "6003141", "video_name": "77012cb8-051b-5477-83ed-ae292ced2a40", "text": "\u665a\u4e0a\u6709\u6ce2\u6d6a\u8d77\u4f0f\u7684\u53ef\u6015\u5c0f\u5c9b\u3002"} +{"id": "3004539", "video_name": "b0b29501-d814-520c-a59a-936eee5d3451", "text": "\u4e00\u53ea\u8001\u9f20\u4ee5\u5361\u901a\u98ce\u683c\u98de\u8d8a\u7ebd\u7ea6\u3002"} +{"id": "4003993", "video_name": "bcc49a51-5926-5261-b591-7203d7f2b6e8", "text": "\u4e00\u4e2a\u756a\u8304\u5361\u901a\u52a8\u753b\u88ab\u7838\u5728\u9ed1\u8272\u5899\u58c1\u4e0a\uff0c\u4f7f\u5899\u58c1\u53d8\u6210\u4e86\u7ea2\u8272\u3002"} +{"id": "0003936", "video_name": "001b4282-4641-5105-9bbc-36a80fad149e", "text": "\u57283D\u52a8\u753b\u4e2d\uff0c\u4e24\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u5c0f\u7537\u5b69\u56e0\u67d0\u4e8b\u4e89\u5435\u3002"} +{"id": "0003225", "video_name": "3995e3d7-316a-5c3e-97b3-cd631639faf1", "text": "\u96ea\u8c82\u629b\u51fa\u5fc3\u5f62\u8868\u60c5\u7b26\u53f7\u5230\u7a7a\u4e2d\u3002"} +{"id": "8003381", "video_name": "0381c484-b207-585a-b325-ab867b6305fc", "text": "\u4e00\u4efd\u7117\u6d0b\u8471\u4e2d\u5f0f\u7cd9\u7c73\u7897"} +{"id": "5001931", "video_name": "51c72de5-8cf8-5d57-b0c6-199e9974e306", "text": "\u6211\u8fd9\u8f88\u5b50\u7b2c\u4e00\u6b21\u770b\u5230\u89c6\u89c9\u5316\u5de5\u5177\u3002"} +{"id": "2004767", "video_name": "e68eaf0b-a4f9-5d6d-bb9e-c15ccb5a1ed5", "text": "2023\u5e74\u7684\u5361\u901a\u9a6c\u5a01\u653e\u6162\u592a\u9633\u7684\u901f\u5ea6\u3002"} +{"id": "3005951", "video_name": "13460ecf-876e-523e-9931-6e3bc7e7f480", "text": "\u4e00\u53ea\u624b\u5468\u56f4\u6709\u84dd\u8272\u7684\u80fd\u91cf\uff0c\u770b\u8d77\u6765\u975e\u5e38\u5f3a\u5927\u3002\u7136\u540e\u4ed6\u7684\u624b\u52a8\u4e86\u4e00\u4e0b\uff0c\u63e1\u7d27\u4e86\u62f3\u5934\u3002"} +{"id": "7003032", "video_name": "96ec09eb-fdcf-53e9-b88e-01cfdb491fc1", "text": "\u4e24\u53ea\u732b\u5728\u4e00\u67b6\u706b\u7bad\u4e2d\u7a7f\u884c\u5b87\u5b99\uff0c\u7ecf\u8fc7\u661f\u8fb0\u3002"} +{"id": "3006525", "video_name": "69dd597c-b464-558f-9eb3-be3c8eb63eb0", "text": "\u4e00\u53ea\u718a\u732b\u5728\u5510\u4eba\u8857\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "6004006", "video_name": "2c170aa8-22cc-5a8d-95e2-7413c76e9e76", "text": "\u4e00\u4e2a\u6237\u5916\u7684\u6d3e\u5bf9\u573a\u666f\uff0c\u97f3\u4e50\u73b0\u573a\uff0c\u591c\u665a\uff0c\u706f\u5149\u7279\u6548\u3002"} +{"id": "6004812", "video_name": "63958371-611d-5ae8-8d69-7a91310b33d2", "text": "\u7f51\u7edc\u670b\u514b\u6df1\u591c\uff0c\u98de\u884c\u5668\u5728\u9ad8\u697c\u5927\u53a6\u4e0a\u79fb\u52a8\uff0c\u706f\u5149\u548c\u5e7f\u544a\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "3003663", "video_name": "658d850a-0a43-563e-a5fd-356924954b1a", "text": "\u7eff\u8272\u7684\u5927\u89e6\u987b\u5728\u6c34\u4e2d\u79fb\u52a8\u3002"} +{"id": "6002489", "video_name": "71a508b4-a23a-5f09-865c-087b26680ab7", "text": "\u662f\u7684\uff0c\u786e\u5b9e\u662f\u8fd9\u6837\u3002\u4ed6\u4eec\u662f\u5e7b\u60f3\u4e16\u754c\u7684\u7edf\u6cbb\u8005\u3002\u4ed6\u4eec\u975e\u5e38\u4ec1\u6148\u548c\u667a\u6167\uff0c\u4ed6\u4eec\u975e\u5e38\u76f8\u7231\u3002"} +{"id": "8001248", "video_name": "ddaed45b-9c78-5c4d-948d-712ec5d53d6a", "text": "\u90a3\u4e2a\u4eba\u5750\u5728\u4ea4\u6613\u56fe\u8868\u524d\uff0c\u5174\u594b\u5730\u770b\u7740\u6da8\u52bf\uff0c\u7136\u540e\u8df3\u8d77\u6765\u56de\u5230\u7f51\u7ad9\u3002"} +{"id": "0003506", "video_name": "3eb8b9a5-5e71-5577-9dd4-a297ae1ace2e", "text": "\u4e00\u4f4d\u62dc\u5360\u5ead\u5973\u6027\u5728\u516c\u5143540\u5e74\u7ee7\u627f\u4e86\u4e00\u7b14\u9057\u4ea7\u3002"} +{"id": "0003676", "video_name": "417f843a-1b09-560f-a69a-cca467a6f49c", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u52a8\u4f5c\u7535\u5f71\u573a\u666f\uff1a\u9b3c\u6b66\u58eb\u7684\u6781\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c\u773c\u4e2d\u95ea\u8000\u84dd\u8272\u80fd\u91cf\uff0c\u8eab\u4f53\u7531\u70df"} +{"id": "8001833", "video_name": "625c3cbc-3a18-538e-ba2f-258ad8bbfd6b", "text": "\u7537\u4eba\u5728\u8001\u623f\u5b50\u91cc\uff0c4K\uff0c\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "3003596", "video_name": "82efcb06-5b22-5795-bb70-ba1e255689ed", "text": "Translation: \u66b4\u98ce\u96e8\u591c\u91cc\u7684\u5e84\u56ed\uff0c\u5927\u96e8\u503e\u76c6\u3002"} +{"id": "2005892", "video_name": "3557f2ad-f7c6-5f98-a3c3-4aa4203f00f9", "text": "\u4e00\u53ea\u7334\u5b50\u5750\u5728\u68ee\u6797\u7684\u5730\u4e0a\uff0c\u7528\u4e24\u6839\u6728\u68cd\u6572\u6253\u4e00\u6839\u6728\u5934\u3002\u6709\u4e9b\u6572\u6253\u58f0\u3002\u871c\u8702\u548c\u9e1f"} +{"id": "0006562", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u821e\uff0c8k\u5206\u8fa8\u7387\uff0c\u8d85\u903c\u771f\u6e32\u67d3\u3002"} +{"id": "2004014", "video_name": "ddb43b99-4a5b-52a8-92e6-96b570a2d257", "text": "\u5e74\u8f7b\u6234\u515c\u5e3d\u7684\u7537\u5b50\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "1006932", "video_name": "7ecb6f8b-58fa-5f31-8887-a5b68c062f08", "text": "\u7ff1\u7fd4\u7684\u9e1f\uff1a\u8fd9\u5e45\u753b\u6355\u6349\u4e86\u4e00\u4e2a\u6e29\u99a8\u65f6\u523b\uff0c\u7ecf\u8fc7\u5eb7\u590d\u7684\u9e1f\u7ec8\u4e8e\u98de\u7fd4\uff0c\u81ea\u7531\u65e0"} +{"id": "3005812", "video_name": "b8535a97-325d-57b5-8394-2e223b467dce", "text": "\u4e00\u4f4d35\u5c81\u7684\u65c5\u884c\u4ee3\u7406\u53d1\u73b0\u4e86\u4e00\u4e2a\u671b\u8fdc\u955c\uff0c\u770b\u5230\u4e86\u6c83\u5c14\u7279\u8fea\u65af\u5c3c\u4e16\u754c\u7684\u89c6\u9891\u3002"} +{"id": "7004154", "video_name": "e6583de7-e4b1-5f7a-9825-06513eb82cdf", "text": "\u5e74\u8f7b\u7537\u5b69\u770b\u8d77\u6765\u5f88\u60b2\u4f24\u548c\u56f0\u60d1\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005464", "video_name": "1b3f74e8-9711-5dc0-bfa2-06f5864d539b", "text": "\u4e00\u884c\u8682\u8681\u76f4\u7ebf\u884c\u8d70\u3002"} +{"id": "3003651", "video_name": "6d3ef5df-6432-5704-bc5f-2619567cbeb0", "text": "\u5564\u9152\u548c\u7b14\u8bb0\u672c\u7535\u8111\u653e\u5728\u9152\u5427\u684c\u5b50\u4e0a\u3002"} +{"id": "2007065", "video_name": "4345d350-9d15-5939-b4dd-253803a2aefd", "text": "\u672a\u6765\u79d1\u6280\u6587\u5316\u4e2d\u7684\u4e00\u540d\u519b\u961f\u5c06\u9886\u3002"} +{"id": "3005517", "video_name": "03c15332-76f6-5513-b681-d6e3780b302d", "text": "\u9a6c\u91cc\u5965\u9a7e\u9a76\u661f\u9645\u7f8a\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u592a\u7a7a\u5965\u5fb7\u8d5b\uff0clofi 3D\uff0c\u5361\u901a3D\u3002"} +{"id": "5001646", "video_name": "c71c1b52-cfc4-5221-8f9d-17a6e4bc863a", "text": "\u9ed1\u6697\u7684\u8d70\u5eca\u88ab\u5fae\u5f31\u800c\u95ea\u70c1\u7684\u706f\u5149\u7167\u4eae\u3002\u623f\u95f4\u53f7\u7801\u53ef\u4ee5\u770b\u5230\uff0c\u5176\u4e2d104\u53f7\u623f\u95f4\u7279\u522b\u663e\u773c\u3002"} +{"id": "3004866", "video_name": "f1d2c228-085b-54e5-b130-d10a9a3b3eef", "text": "\u63a2\u7d22\u4eba\u7c7b\u524d\u6240\u672a\u6709\u7684\u5b87\u5b99\u3002"} +{"id": "2006867", "video_name": "9a85db8d-2a89-5ee2-9c39-2df1031af632", "text": "\u5341\u51e0\u5c81\u7684\u7537\u5b69\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\uff0c\u53cc\u624b\u63d2\u515c\uff0c4K\u5206\u8fa8\u7387\uff0c\u4ef0\u5934\u89c2\u770b\u4e00\u9897"} +{"id": "2003611", "video_name": "bfc09cfc-6b60-5993-a807-e83af842b13a", "text": "\u4f7f\u7528\u56fe\u5f62\u89e3\u91ca\u4fe1\u53f7\u5982\u4f55\u901a\u8fc7\u65e0\u7ebf\u4f20\u8f93\u5230\u5916\u90e8AI\u7cfb\u7edf\u8fdb\u884c\u89e3\u7801\u3002\u4ee5\u53ef\u89c6\u5316\u65b9\u5f0f\u5c55\u793a\u65e0\u7ebf\u4f20\u8f93\u3002"} +{"id": "8002727", "video_name": "157682e0-0aef-5727-8bd8-4fe0067105a4", "text": "\u8425\u9500\u4e2d\u73b0\u4ee3\u5316\u7684\u5173\u952e\u8bcd\u662fCRM\u7cfb\u7edf\u3001\u5206\u6790\u5de5\u5177\u548c\u81ea\u52a8\u5316\u5e73\u53f0\u3002"} +{"id": "4003308", "video_name": "4f244f04-a150-5dbe-8ba3-1cd863897604", "text": "\u97f3\u4e50\u7ee7\u7eed\uff0c\u65cb\u5f8b\u53d8\u5f97\u5fe7\u90c1\uff0c\u53cd\u6620\u4e86\u4ed6\u7684\u6e34\u671b\u548c\u9057\u61be\u4e4b\u60c5\u3002"} +{"id": "0003625", "video_name": "40ba4ebf-52bf-51ab-9cd8-52ecd4c84475", "text": "\u4e00\u53ea\u673a\u5668\u72d7\u5728\u8857\u4e0a\uff0c4K\uff0c\u7535\u5f71\u7ea7\u522b\u7684\u3002"} +{"id": "6002754", "video_name": "203580dd-e317-56da-b1f8-9c1133946db7", "text": "beauty and sweet fragrance.\n\n\u6709\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u540d\u53eb\u57fa\u7279\u3002\u57fa\u7279\u56e0\u5979\u5bf9\u73ab\u7470\u7684\u70ed\u7231\u800c\u58f0\u540d\u8fdc\u626c\u3002\u5979\u5bf9\u8fd9\u4e9b"} +{"id": "4003033", "video_name": "1981e9a4-d505-5c7e-90c8-3aba96e3ffd7", "text": "\u5915\u9633\u4e0b\uff0c\u4ece\u5c71\u6e56\u4e2d\u5347\u8d77\u7684\u65cb\u8f6c\u5f69\u8679\u7403\u3002"} +{"id": "3005325", "video_name": "1b108b5b-d457-587a-ba7c-088e916f3d98", "text": "MidJourney\u5d07\u62dc\u7684\u5de5\u7a0b\u5e08\u4eec\u5728\u6ee1\u6708\u4e0b\u5c16\u53eb\u7740\u60f3\u8c61\u8fdb\u5165\u9ed1\u6697\u4e2d\uff0c\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u3002"} +{"id": "0005128", "video_name": "1554b6e8-7505-5d80-bd21-d215a77523f5", "text": "\u4eca\u5929\u4f60\u88ab\u6700\u591a\u4eba\u8981\u6c42\u7684\u4e8b\u60c5\u7684\u65f6\u95f4\u6d41\u901d"} +{"id": "2006146", "video_name": "42eba8f7-f172-5854-9236-55fb78cc172c", "text": "\u4e00\u6bb5\u77ed\u6682\u7684\u65e5\u843d\u5feb\u8f66\u89c6\u9891\u3002"} +{"id": "4002830", "video_name": "2ac5a5e0-b8f9-5bdc-9028-ce7d4f07968d", "text": "\u8d70\u8fc7\u6811\u6797\uff0c\u4ed6\u7d27\u7d27\u5730\u6293\u4f4f\u6124\u6012\u7684\u54cd\u5c3e\u86c7\uff0c\u5411\u6811\u6797\u4e2d\u7684\u4e00\u4e2a\u7a7a\u5730\u8d70\u53bb\uff0c\u4e00\u6761\u81ea\u884c\u8f66"} +{"id": "4002180", "video_name": "3a886e7b-2f3a-5899-9d01-78f23a3dc233", "text": "\u5728\u6d77\u6ee9\u4e0a\u6f02\u6d6e\u7740\u4e94\u5f69\u6591\u6593\u7684\u73ab\u7470\u82b1\u3002"} +{"id": "2004627", "video_name": "48907d8e-5ed3-59ab-a4ec-02ec4d4989b9", "text": "\u6c34\u4e0b\u604b\u60c5\uff1a\u6050\u9f99\u4e0e\u732b\u4e4b\u95f4\u7684\u7231\u60c5\u3002"} +{"id": "3006197", "video_name": "f66665a7-94c4-5dbe-bff3-cfd13ce4656c", "text": "Sommer Ray \u80cc\u7740\u8718\u86db\u4fa0\u5728\u505a\u6df1\u8e72\u3002"} +{"id": "8002816", "video_name": "9c2279df-7901-5938-ab74-a9bb67947a39", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u6500\u722c\u5efa\u7b51\u7269\u3002"} +{"id": "8001002", "video_name": "c29130bc-737a-59d4-a155-df9cb8cac988", "text": "\u5728\u6c99\u6f20\u4e2d\uff0c\u4eba\u4eec\u7a7f\u7740\u53e4\u8001\u7684\u963f\u62c9\u4f2f\u670d\u88c5\uff0c\u80cc\u666f\u662f\u6ce5\u623f\u548c\u52a8\u7269\uff0c\u8fd9\u662f\u4e00\u4e2a\u53e4\u8001\u7684\u963f\u62c9\u4f2f\u90e8"} +{"id": "3004408", "video_name": "93eed973-e751-5c4c-9c96-b7ec730e977d", "text": "\u4ee5\u300a\u5e7d\u7075\u516c\u4e3b\u300b\u7684\u98ce\u683c\u4e3a\u4e3b\u9898\u3002"} +{"id": "0003922", "video_name": "45cfd3f1-78e4-593b-a35a-70834021b6c5", "text": "\u66f4\u6539\u539f\u59cb\u56fe\u50cf\u7684\u80cc\u666f\u4e3a\u7eaf\u8272\uff0c\u4ee5\u4f7f\u7167\u7247\u6e05\u6670\u4e144K\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006593", "video_name": "78c1a0dd-2965-563b-bb29-a8f344105391", "text": "\u7e41\u8363\u7684\u5e15\u62c9\u739b\u5854\u5927\u5e08\u548c\u5feb\u4e50\u7684\u5f1f\u5b50\u4eec\u5728\u5357\u5370\u5ea6\u5bfa\u5e99\u9644\u8fd1\u7684\u6cb3\u8fb9\u6b23\u8d4f\u65e5\u843d"} +{"id": "3006739", "video_name": "49fb3879-c4b9-5cd9-acc5-ac535fae4275", "text": "\u4e00\u4e2a\u5145\u6ee1\u6c34\u7684\u7c89\u8272\u623f\u95f4\uff0c\u4e00\u4e2a\u7f8e\u4eba\u9c7c\u5728\u91cc\u9762\u6e38\u6cf3\u3002"} +{"id": "6003315", "video_name": "d0c6cd87-ff1c-5129-9884-b2541b190ce5", "text": "\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u8df3\u821e\u5973\u5b69\u548c\u4e00\u53ea\u7334\u5b50"} +{"id": "8003203", "video_name": "a3375020-606b-5b8a-8ee5-ffe8bf0adfbf", "text": "\u521b\u9020\u4e00\u4e2a\u5973\u4e3b\u64ad\uff0c\u6545\u4e8b\u66f4\u9ad8\u5927\u3002"} +{"id": "1004488", "video_name": "532b0104-50d1-5a2b-b626-b4c14d35dffe", "text": "\u8fd9\u4e0d\u4ec5\u4ec5\u662f\u4f60\u7684\u613f\u671b\uff0c\u800c\u4e14\u8fd9\u4e5f\u662f\u4ebf\u4e07\u5e74\u524d\u4eba\u7c7b\u7684\u613f\u671b\u3002"} +{"id": "0006919", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u5728\u5c71\u9876\u4e0a\uff0c\u4e00\u53ea\u9ed1\u732b\u6b63\u5728\u5403\u7740\u4e00\u6735\u84dd\u8272\u7684\u73ab\u7470\u3002"} +{"id": "7003182", "video_name": "c207dc75-037f-5d53-9632-4e40caaf901d", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u8df3\u8dc3\u5728\u5efa\u7b51\u7269\u4e4b\u95f4\u3002"} +{"id": "0006596", "video_name": "2f48cc27-5cca-5c85-a666-374f87103837", "text": "\u4e00\u4f4d\u4e9a\u6d32\u5973\u5b69\u5728\u591c\u5e02\u6e38\u89c8\u65f6\u559d\u5564\u9152\u3002"} +{"id": "8003821", "video_name": "20f82c4b-5252-54b0-b8bc-e7eaf74d1b6d", "text": "\u8fd9\u4e9b\u5f02\u5e38\u73b0\u8c61\u5f15\u8d77\u4e86\u5404\u79cd\u731c\u6d4b\u548c\u9634\u8c0b\u8bba\u3002"} +{"id": "2003430", "video_name": "5dff4554-e8c5-5be1-8f6e-5569c118fa0a", "text": "\u5357\u74dc\u8ffd\u8e2a\u74e2\u866b\u7a7f\u8fc7\u7070\u8272\u7684\u6df7\u51dd\u571f\u57ce\u5e02\u3002"} +{"id": "5001649", "video_name": "d0d5b069-2391-5b6b-8d21-6bd8ce307439", "text": "\u7537\u5b69\u73a9\u6e38\u620f\uff0c\u62ac\u5934\u770b\u7740\u5c4f\u5e55\u3002"} +{"id": "5001731", "video_name": "daf7d008-f75c-588f-a81e-ac8f3f4d7d0f", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u5728\u5893\u5730\u91cc\u7684\u60ca\u609a\u7247\u4e2d\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u513f\u6b63\u5728\u6c99\u53d1\u4e0a"} +{"id": "2007729", "video_name": "dadf8244-ecda-5d98-95a3-c9664938bab2", "text": "\u5b87\u5b99\u602a\u7269\uff0c\u5207\u56fe\u9c81\u00b7\u8bfa\u5fb7\u91cc\u624e\uff0c\u90aa\u6076\u4e4b\u6bcd\uff0c\u9ad8\u80fd\u5927\u6c14\uff0c\u53cd\u5b87\u5b99\u7406\u8bba\uff0c\u7edf\u4e00\u7406\u8bba\uff0c\u5728"} +{"id": "1005943", "video_name": "6d36476b-cebe-5e19-9c78-38a6e6367329", "text": "\u4e00\u53ea\u72d7\u5728\u68ee\u6797\u91cc\u6563\u6b65\uff0c\u5403\u7740\u51b0\u6dc7\u6dcb\u3002"} +{"id": "2006783", "video_name": "de60c164-387c-5c54-b913-7d6e740307e3", "text": "\u704c\u6728\u4e1b\u4e0a\u7684\u4e00\u9635\u98ce\u3002"} +{"id": "2006786", "video_name": "766df502-00b9-5368-9d68-3ccf0b16d647", "text": "\u624b\u673a\u52a8\u753b4k\u9ad8\u6e05\u7eff\u8272\u80cc\u666f\u5899\u7eb8\u7d20\u6750\u3002"} +{"id": "2004931", "video_name": "6322f45a-e623-518b-8cb7-79bcc99a98f5", "text": "\u53e4\u5e0c\u814a\u5e76\u4ecb\u7ecd\u5965\u6797\u5339\u65af\u5c71\u72fc\u7684\u6545\u4e8b\u3002"} +{"id": "2007268", "video_name": "8e202955-c605-5474-93c4-56be17d99124", "text": "\u4f1a\u8bae\u5ba4\u7684\u5927\u5c4f\u5e55\u6b63\u5728\u95ea\u70c1\uff0c\u663e\u793a\u201c1\u4e2a\u9644\u4ef6\u201d\u3002"} +{"id": "7003900", "video_name": "b9fa41a1-3584-5615-ae84-d6a6094a6b12", "text": "\u8d70\u5728\u5b87\u5b99\u4e2d\u7684\u4eba\u770b\u5230\u592a\u9633\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\uff0c4k\u3002"} +{"id": "0004518", "video_name": "0a5d714a-3feb-54e0-88fa-60671605b61c", "text": "\u4e00\u4e2a\u7537\u4eba\u8df3\u8d77\u6765\u8e22\u8db3\u7403\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u4f4e\u5149\u7167\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "8002471", "video_name": "84ce5cd7-37fc-5b88-a8dd-1a36ffcd9bd7", "text": "\u4e00\u5f20\u56fe\u8868\u7bb1\u5b50\uff0c\u6807\u9898\u4e3a\u201c\u6570\u636e\u79d1\u5b66\u201d\uff0c\u767d\u8272\u80cc\u666f\u4ece\u5de6\u8fb9\u98de\u5165\uff0c\u7136\u540e\u79fb\u52a8\u5230\u4e2d\u592e\u3002"} +{"id": "1005963", "video_name": "6d8ce0ce-8442-52d7-a788-96578b84e001", "text": "VHS\uff0c\u65e5\u672c\u52a8\u753b\u4e2d\u86e4\u870a\u89d2\u8272\u5728\u4e1c\u4eac\u8857\u5934\u8bf4\u5531\u3002"} +{"id": "2005587", "video_name": "b378c238-1c48-5d2b-a945-a1cdb87c51b8", "text": "\u5c0f\u6751\u5e84\u66fc\u5c3c\u5bb6\u7684\u5c45\u6c11\u6b63\u5728\u5bfb\u627e\u5176\u4ed6\u4eba\u3002"} +{"id": "8001560", "video_name": "b711f371-e184-5721-89df-45732d8e1156", "text": "\u7537\u4eba\u6253\u5f00\u672a\u6765\u4e3b\u4e49\u7684\u95e8\uff0c\u7a7f\u8fc7\u4f20\u9001\u95e8\u3002"} +{"id": "3004381", "video_name": "50b18792-ee17-505e-8a45-d4665e232b0e", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u6355\u6349\u4e00\u4e2a\u5355\u72ec\u7684\u82b1\u513f\u7a7f\u8fc7\u6df7\u51dd\u571f\u7684\u97e7\u6027\uff0c\u914d\u4ee5\u9f13\u821e\u4eba\u5fc3\u7684\u4fe1\u606f\uff0c\u6bd4\u4f8b\u4e3a"} +{"id": "2004178", "video_name": "23f2793c-e11d-5ec5-a806-3dcf643fe10c", "text": "\u7ea2\u8272\u9f99\u6709\u4e03\u4e2a\u5934\u548c\u5341\u53ea\u89d2\uff0c\u5728\u6df1\u6e0a\u4e2d\u3002\u6df1\u6e0a\u88ab\u9501\u4e0a\uff0c\u5c01\u5370\u5728\u4ed6\u8eab\u4e0a\u3002"} +{"id": "0006970", "video_name": "35ff6474-5570-5336-a9b0-d9c3c90de648", "text": "\u5728\u6cb3\u6ee9\u4e0a\u7684\u5782\u9493\u7231\u597d\u8005"} +{"id": "4002973", "video_name": "37181301-a8a6-594c-8ffe-520fd4c3a1fc", "text": "\u5982\u679cdubstep\u662f\u4e00\u7247\u6bd4\u8428\u3002"} +{"id": "1005504", "video_name": "654b7ca2-03d4-54eb-8196-37d6b2c77541", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u548c\u574e\u8036\u00b7\u97e6\u65af\u7279\u624b\u7275\u624b\uff0c\u5728\u6cbc\u6cfd\u4e2d\u7684Pepi\u4e3b\u9898\u5a5a\u793c\u4e0a\uff0cShrek"} +{"id": "4003039", "video_name": "ecad2ac9-264c-5274-abba-44a05c962c4c", "text": "\u9a91\u58eb\u519b\u961f\u56f4\u653b\u57ce\u5821\u3002"} +{"id": "3003001", "video_name": "680f386f-0380-5478-b2e3-96c19d8da7ca", "text": "\u5954\u8dd1\u7684\u91ce\u732a1\u3002\u53ef\u6015\u3001\u7b80\u5355\u3001\u94c1\u9508\u3001\u602a\u8bde\u3001\u7ef4\u591a\u5229\u4e9a\u3001\u7167\u7247\u3001\u7535\u5f71\u300116:9\u56fe\u50cf\u3001\u6392"} +{"id": "7004900", "video_name": "63326c25-9f91-5ff1-ad74-726affe230f1", "text": "\u963f\u62c9\u4f2f\u7537\u5973\u5728\u706b\u795e\u796d\u575b\u4e0a\u7948\u7977\u3002\u98ce\u7684\u6548\u679c\uff0c\u7f8e\u5b66\u548c\u827a\u672f\u7167\u660e\u3002"} +{"id": "5001150", "video_name": "131ac057-7f6e-55c6-8ef0-3d00608e9b10", "text": "\u8b66\u5bdf\u5728\u6211\u4eec\u7684\u540e\u9762\u8ddf\u7740\u3002"} +{"id": "8003129", "video_name": "7172c64f-b891-5992-b85e-d8e350980a86", "text": "\u53d6\u51fa\u4e00\u9897\u836f\u7247\u3002\u9644\u4ef61\u3002"} +{"id": "6003513", "video_name": "0be8576c-6b61-55a6-8790-f43887b7cf91", "text": "\u53ef\u7231\u7684\u5c0f\u732b\u7a7f\u7740\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\u7684\u670d\u88c5\uff0c9:16\u7684\u957f\u5bbd\u6bd4\u3002"} +{"id": "8001905", "video_name": "b863d16b-9773-5296-8af9-aabd1ab29f7a", "text": "\u8682\u86b1\u9a91\u7740\u81ea\u884c\u8f66\uff0c8k\uff0chdr\u3002"} +{"id": "6004377", "video_name": "0aadeb8f-d4e5-5d99-a1aa-b08bfb4b37c8", "text": "\u6d6e\u5728\u7a7a\u4e2d\u7684\u888b\u5b50\uff0c\u900f\u660e\u5851\u6599\u8d2d\u7269\u888b\uff0c\u7f6e\u4e8e\u767d\u8272\u5de5\u4f5c\u5ba4\u80cc\u666f\u4e0b\uff0c\u4ea7\u54c1\u8bbe\u8ba1\u3002"} +{"id": "3004613", "video_name": "edb97b2f-8926-51c1-ae72-aacf26f3cd11", "text": "\u6218\u58eb\u7075\u9b42\u98de\u5929\u3002"} +{"id": "8001895", "video_name": "1c781705-b6a1-577c-a09a-48a96ff680da", "text": "\u6211\u60f3\u8ba9\u5b83\u6210\u4e3a\u4e00\u4e2a\u5546\u573a\u6a21\u62df\u89c6\u9891\u3002"} +{"id": "2007167", "video_name": "53228785-778b-5945-a613-42a3d9226bf8", "text": "\u963f\u91cc\u5361\u7684\u6148\u5584\u6d3b\u52a8\u3002ULTA 8K\u3002\u903c\u771f\u30023D\u8d28\u91cf\u3002"} +{"id": "0005283", "video_name": "17bf9011-e6fc-5bbb-abe2-e356518ecb46", "text": "\u9a6c\u53ef\u00b7\u5965\u52d2\u7559\u5728\u53c2\u8bae\u9662\u524d\u8bb2\u8bdd\u3002"} +{"id": "8002828", "video_name": "0a53db23-4dcf-5d71-a34d-228ca92e77f5", "text": "\u751f\u6210\u4e00\u5f20\u4ee4\u4eba\u60ca\u53f9\u7684\u4eba\u5f62\u673a\u68b0\u5973\u4eba\u56fe\u50cf\uff0c\u5979\u7684\u91d1\u5c5e\u76ae\u80a4\u53cd\u5c04\u7740\u5468\u56f4\u7684\u5149\u7ebf\uff0c\u88c5\u9970"} +{"id": "1003954", "video_name": "48fb15a2-39cb-5ddb-8b18-ef00b47c93c6", "text": "\u4e00\u53ea\u72d7\u8df3\u4e0a\u8df3\u4e0b\u7684\u89c6\u9891"} +{"id": "2004709", "video_name": "e1555f66-86dd-5773-bc89-6b9b62d77fc7", "text": "\u5979\u9762\u524d\u7ad9\u7740\u4e00\u53ea\u6bdb\u8272\u94f6\u4eae\u3001\u5a01\u4e25\u7684\u72ec\u89d2\u517d\u3002"} +{"id": "7003417", "video_name": "8c546d34-ea9a-5283-962e-fbc72b412cb9", "text": "\u53ea\u6709\u95ed\u4e0a\u773c\u775b\u548c\u878d\u5316\u7684\u753b\u9762\uff0c\u63d2\u753b\u52a8\u753b\u3002"} +{"id": "8002105", "video_name": "ba686501-85e2-5cc4-a618-dee48fecbd2a", "text": "\u8718\u86db\u4fa0\u4ece\u4e00\u680b\u5efa\u7b51\u98de\u5230\u53e6\u4e00\u680b\u3002"} +{"id": "1006015", "video_name": "6e80bac9-c667-51db-a026-2a520bd1614d", "text": "\u4e24\u4e2a\u672a\u77e5\u7537\u5b50\u5728\u5f69\u8272\u661f\u4e91\u4e2d\u6fc0\u70c8\u5bf9\u6297\u3002"} +{"id": "7004581", "video_name": "3e469563-e473-55cd-9574-707f8726a242", "text": "Source sentence: A young girl listens to music with headphones and dances.\n\n\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u5e76\u8df3\u821e\u3002"} +{"id": "2004455", "video_name": "c61b7648-5665-53e5-a17f-c5a5a1d6c836", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u957f\u51f3\u4e0a\u3002"} +{"id": "7003755", "video_name": "0c8600b1-6655-5243-bcab-50ac7a6e4d8c", "text": "\u82cf\u96f7\u4ec0\u5c0f\u5b69\u6beb\u4e0d\u77e5\u60c5\u5730\u7ee7\u7eed\u6bd4\u8d5b\uff0c\u6700\u7ec8\u8d62\u5f97\u4e86\u6bd4\u8d5b\u3002"} +{"id": "1004940", "video_name": "5b5ab78d-3f53-5382-86fa-e871489a548c", "text": "\u6d41\u884c\u827a\u672f\u98ce\u683c\u4e0b\uff0c\u5e26\u6709\u9002\u5f53\u817f\u548c\u8138\u7684\u8df3\u821e\u9e21"} +{"id": "0005837", "video_name": "21fe2ade-47c8-52ef-a36b-b36e0dc81297", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u5728\u591c\u665a\u7684\u7530\u91ce\u4e0a\u6f2b\u6b65\uff0c\u795e\u79d8\u3001\u65af\u62c9\u592b\u5f0f\u7684\u3002"} +{"id": "2003974", "video_name": "3251f5d1-a69e-5fbb-bd1e-44c4233c1a4f", "text": "\u4e00\u9897\u6a59\u8272\u884c\u661f\u5728\u692d\u5706\u8f68\u9053\u4e0a\u8fd0\u52a8\uff0c\u5b9b\u5982\u7535\u5f71\u753b\u9762\u3002"} +{"id": "1004018", "video_name": "4a7cd1d8-9a93-529d-ae21-8e8bb5485259", "text": "\u4e00\u4e2a\u771f\u5b9e\u903c\u771f\u7684\u7535\u5f71\uff0c\u4ee5\u8857\u9053\u89c6\u89d2\u5448\u73b0\u4e86\u4e00\u4e2a\u591c\u665a\u7684\u96e8\u4e2d\u8d5b\u535a\u670b\u514b\u672b\u4e16\u57ce\u5e02\u3002"} +{"id": "0004727", "video_name": "0e21a42c-9d6f-53e3-92ac-de6ccdb2f053", "text": "\u4e00\u5bb6\u4eba\uff0812\u4e2a\u4eba\uff09\u4e00\u8d77\u5403\u665a\u9910\u3002"} +{"id": "7004621", "video_name": "c6a56e4f-99d5-53ac-9474-c5d740a5d3e7", "text": "\u4e00\u4e2a\u7537\u5b69\u62ff\u7740\u5409\u4ed6\uff0c\u80cc\u5bf9\u7740\u955c\u5934\u3002\u4ed6\u7684\u80cc\u5e26\u5728\u5fae\u98ce\u4e2d\u6447\u6446\uff0c\u7ad9\u5728\u5c71\u4e2d\u7684\u7eff\u8349\u5730\u4e0a\u3002"} +{"id": "1003130", "video_name": "39a97803-1c59-5434-b771-a4f5f7edb1b2", "text": "\u6885\u897f\u8fdb\u4e86\u8db3\u7403\u95e8\u7403\uff0c\u89c2\u4f17\u75af\u72c2\u4e86\u8d77\u6765\u3002\u8bf7\u5c55\u793a\u89c2\u4f17\u7684\u52a8\u6001\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004338", "video_name": "056cb698-4211-5173-a9a9-5d01a7d348af", "text": "\u8fd9\u5f20\u56fe\u7247\u4e0a\u7684\u7537\u4eba\u6b63\u5728\u4e0e\u8d85\u4eba\u640f\u6597\uff0c1\u5206\u949f\u7684\u89c6\u9891\u3002"} +{"id": "7002257", "video_name": "066907d2-27ed-5f87-ba2d-1be529da8b6d", "text": "\u5728\u623f\u5b50\u91cc\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u5b89\u7b2c\u65af\u5c71\u8109\u7684\u7956\u6bcd\u7ed9\u5979\u7684\u5b59\u5973\u9001\u6bdb\u8863\u3002"} +{"id": "7004814", "video_name": "c62d399c-b2c4-5c93-a15e-47a75d628ac6", "text": "\u56fe\u50cf\u4e2d\u5fc3\uff0c\u4e00\u540d\u706b\u7130\u90e8\u843d\u7684\u5e74\u8f7b\u6210\u5458\u7ad9\u7acb\u7740\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u58ee\u4e3d\u7684\u706b\u7130\u7167\u4eae\u4e86\u6574\u4e2a\u90e8\u843d"} +{"id": "7002205", "video_name": "9d389fbc-7336-5de5-a519-36c01687273f", "text": "\u6210\u5409\u601d\u6c57\u5e26\u6709\u771f\u5b9e\u4eba\u7c7b\u7684\u7279\u5f81\u3002"} +{"id": "8003021", "video_name": "2ed1ad33-31a5-5ec3-be27-b4b62febcb70", "text": "\u8ba9\u7167\u7247\u7684\u80cc\u666f\u52a8\u8d77\u6765\u3002"} +{"id": "7003331", "video_name": "71a32603-27a3-53a7-9e49-e18a678942c7", "text": "\u4e24\u53ea\u9e2d\u5b50\u5728\u8377\u5858\u91cc\u6e38\u6cf3\u3002"} +{"id": "4004245", "video_name": "0a4af9a5-c2f5-5a07-aa11-05dc138d917a", "text": "\u52a0\u6c99\u5730\u5e26\u5df4\u52d2\u65af\u5766\u5b69\u5b50\u7684\u751f\u52a8\u56fe\u7247\u3002"} +{"id": "5001340", "video_name": "1cb74a04-9655-5e4a-ac52-2bb8b19ed6f5", "text": "\u4e00\u4e2a\u5728\u661f\u7a7a\u4e2d\u7a7f\u884c\u7684\u706b\u8f66\u3002"} +{"id": "6004150", "video_name": "a838737b-6cde-521b-8fd6-a53c9bc18c58", "text": "\u5b69\u5b50\u4eec\u624b\u6301\u4ee5\u8272\u5217\u56fd\u65d7\u6f2b\u6b65\u5728\u82b1\u6d77\u4e2d\u3002"} +{"id": "5001143", "video_name": "85befcde-ff13-5490-a6d8-e8344019e658", "text": "\u7259\u9f7f\u4fdd\u5065\u7f51\u7ad9Teethse.com\u7684LOGO\uff0c\u4e13\u6ce8\u4e8e\u7259\u9f7f\u5065\u5eb7\u3002"} +{"id": "3003619", "video_name": "e2fde849-8c4d-5f1b-b0e7-a99d97213c71", "text": "\u683c\u7f57\u6208\u6d1b\u65af\u4f5b\u3001\u6469\u6d1b\u514b\u96d5\u50cf\u30011920\u5e74\u4ee3\u5f71\u50cf\u3001\u8be1\u5f02\u7684\u6c1b\u56f4\u3002"} +{"id": "0006656", "video_name": "3087fb9d-f64f-5d33-b07d-0fc8ad64c302", "text": "\u5236\u4f5c\u4e00\u4e2a\u7535\u5f71\u5f0f\u753b\u9762\uff0c\u4e00\u4e2a\u5df4\u52d2\u65af\u5766\u5973\u5b69\u8eba\u5728\u88ab\u4e00\u5708\u706b\u56f4\u7740\u7684\u5730\u4e0a\uff0c\u5468\u56f4\u6709\u4eba\u62ff\u7740\u624b\u673a"} +{"id": "1004647", "video_name": "566463eb-9d94-51ca-96f4-b3fdf09ff7a5", "text": "\u6e56\u5e94\u8be5\u5728\u56fe\u50cf\u4e2d\u5fc3\uff0c\u5360\u636e\u5927\u7ea6\u4e00\u534a\u7684\u7a7a\u95f4\u3002\u6e56\u6c34\u5e94\u8be5\u5e73\u9759\u800c\u6e05\u6f88\uff0c\u53cd\u6620\u51fa\u5929\u7a7a\u548c\u5c71\u8109\u7684\u6837\u5b50"} +{"id": "2006913", "video_name": "4b44c8ee-d26a-5c32-94cf-d9140ccf0830", "text": "\u5728\u6570\u5b57\u5316\u5de5\u5382\u4e2d\uff0c\u7f8e\u4e3d\u7684\u5de5\u4e1a\u5de5\u7a0b\u5e08\u4eec\uff0c\u4ee5\u9ec4\u8272\u4e3b\u9898\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u4e3a\u7279\u8272\u3002"} +{"id": "0004442", "video_name": "09266175-0f27-5a9d-b401-a30eb0aef1e6", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u4ed6\u7684\u6751\u5e84\u91cc\u7528\u5c0f\u8239\u5728\u6cb3\u91cc\u9493\u9c7c\uff0c\u4ee5\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1004095", "video_name": "4bc5a91e-ab3e-5d31-9027-6a25efd8c5ad", "text": "\u7535\u8bdd\u8ba1\u65f6\u65b9\u6848\uff0c\u4f7f\u7528\u653e\u5728\u684c\u5b50\u4e0a\u7684\u8ba1\u65f6\u5668\u3002"} +{"id": "7003636", "video_name": "03da2356-2265-557b-9830-07c3be00502c", "text": "\u7f13\u6162\u8fd0\u52a8\uff0c\u5c3c\u5c14\u00b7\u5e03\u6d1b\u59c6\u574e\u666e\u7535\u5f71\u7247\u5934\u5e8f\u5217\u3002\u7eff\u8272\u548c\u9ec4\u8272\u3002"} +{"id": "1003087", "video_name": "38d48575-3106-5030-9db6-2ee45f1a7723", "text": "\u4e00\u53ea\u9a6c\u8033\u4ed6\u72ac\u5728\u6d77\u6ee9\u4e0a\u73a9\u800d\u3002"} +{"id": "0004820", "video_name": "0fac8550-c8a7-5ad5-a420-8683c20c9c70", "text": "\u4e00\u4f4d\u79d1\u5b66\u5bb6\u53d1\u660e\u4e86\u4e00\u4e2a\u9ed1\u767d\u7684\u673a\u5668\u4eba\uff0c\u65f6\u95f4\u662f\u57281900\u5e74\u4ee3\u3002"} +{"id": "4004783", "video_name": "790b1ed0-5cde-5062-b1ca-c5f3cf26830c", "text": "\u7cbe\u7075\u3001\u7cbe\u7075\u9886\u4e3b\u3001\u7ea4\u7ec6\u3001\u7eff\u8272\u3001\u5927\u81ea\u7136\u3001\u7687\u51a0\u3001\u5706\u5f62\u5efa\u7b51\u3001\u53f2\u8bd7\u3001\u4e2d\u4e16\u7eaa\u3001\u6e38"} +{"id": "4003579", "video_name": "e4489598-d0e0-5b46-bbe3-c1742de481bb", "text": "\u4ecb\u7ecd\u7f8e\u53d1\u6c99\u9f99\u7684\u8001\u677f\uff0c\u4e00\u4e2a\u8eab\u6750\u4e2d\u7b49\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u767d\u7699\u7684\u9762\u5b54\uff0c\u7a81\u51fa\u7684\u773c\u775b\u548c\u9020\u578b\u9ec4\u8272\u7684"} +{"id": "8002152", "video_name": "4f96d18e-2b1f-5b8f-90e2-8c3e17ac72c3", "text": "\u63cf\u7ed8\u60c5\u611f\u4e3a\u529b\u91cf\u7684\u6e90\u6cc9\u3002\u5c55\u793a\u4e00\u4e2a\u8868\u8fbe\u771f\u5b9e\u60c5\u611f\uff0c\u5982\u51b3\u5fc3\u3001\u540c\u60c5\u548c\u52c7\u6c14\u7684\u4eba\u3002\u4f7f\u7528\u5f3a\u70c8\u7684\u610f\u8c61\u6765\u4f20"} +{"id": "2006411", "video_name": "b75e8542-f0f2-5311-9a3d-ecea584087f1", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u5b69\u6709\u4e00\u5929\u53d1\u73b0\u81ea\u5df1\u5728\u4e00\u4e2a\u5e97\u91cc\uff0cMeera\u88ab\u5438\u5f15\u4e86\u3002"} +{"id": "2003838", "video_name": "a4b13d68-b35d-5d96-ab6d-e2767475ee04", "text": "\u7075\u9b42\u98de\u5165\u4e00\u4e2a\u4eba\u7684\u8eab\u4f53\uff0c\u9644\u8fd1\u6709\u4e00\u53f0\u5408\u6210\u5668\u3002"} +{"id": "3005467", "video_name": "8b021086-91a9-56a7-8497-b628ba7b6e30", "text": "\u5728\u57ce\u5e02\u516c\u56ed\u91cc\uff0c\u72d7\u5728\u8e22\u8db3\u7403\u3002"} +{"id": "7002461", "video_name": "77a0dc9f-e165-5ade-9bbe-32424b64e370", "text": "\u5c06\u4e00\u7c92\u5fae\u5c0f\u7684\u79cd\u5b50\u60f3\u8c61\u6210\u8eba\u5728\u9ed1\u6697\u3001\u7d27\u5bc6\u7684\u571f\u58e4\u4e2d\u3002\u571f\u58e4\u5e94\u8be5\u770b\u8d77\u6765\u6c89\u91cd\u3001\u538b\u8feb\uff0c\u4ee3\u8868"} +{"id": "7002080", "video_name": "ad746bd4-75a9-5372-8cbd-b5afbdb4e138", "text": "\u4e00\u4e2a\u57ce\u5e02\u5929\u7a7a\u4e2d\u7684UFO\u89c6\u9891\u662f20\u4e16\u7eaa\u7684\u65e7\u89c6\u9891\uff0c\u9ad8\u8d28\u91cf\u7684\u8001\u8272\u5f69\uff0c\u903c\u771f\uff0c4K\u3002\u4eba\u4eec\u4ef0\u671b\u5929\u7a7a\uff0c\u4e00\u4e2a\u5de8"} +{"id": "2004463", "video_name": "dffeecc0-fc69-589c-9db5-9963da342c38", "text": "\u5c55\u793a\u989c\u8272\u9010\u6e10\u53d8\u6697\u4ee5\u53ca\u5c45\u6c11\u4e4b\u95f4\u8513\u5ef6\u7684\u60b2\u4f24\u30028K \u54c1\u8d28\u3002"} +{"id": "2004422", "video_name": "1d176005-c5c4-579c-9c9a-4b752b71cd9c", "text": "1940\u5e74\u7684\u5b9e\u9a8c\u5ba4\u5bf9\u8bb2\u673a\uff0c\u9ed1\u767d\u5f71\u7247\u3002"} +{"id": "5001629", "video_name": "81eb6cc3-7a96-510f-9e76-a8262deaedea", "text": "\u6500\u767b\u8005\u5728\u73e0\u7a46\u6717\u739b\u5cf0\u906d\u9047\u66b4\u96ea\u5929\u6c14\u3002"} +{"id": "6002154", "video_name": "ed6266e6-b006-57dc-8e7f-add213f10806", "text": "\u4e00\u4f4d\u52e4\u594b\u5730\u5728\u7535\u8111\u4e0a\u5de5\u4f5c\u7684\u7537\u5b50"} +{"id": "1004436", "video_name": "520a363b-dfe2-5d38-9fdc-496cd70e3a6d", "text": "\u72d7\u548c\u732b\u8054\u624b\u5bf9\u6297\u4eba\u7c7b\u5e76\u83b7\u80dc\u3002 \n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u4ece\u897f\u65b9"} +{"id": "0005391", "video_name": "19f893e1-da9a-59bf-a6e2-35c4e402ee17", "text": "\u753b\u51fa\u4f60\u64c5\u957f\u7684\u4efb\u4f55\u4e00\u5e45\u753b\u3002\n\nSource sentence: I am looking forward to seeing you soon.\n\u6211\u671f\u5f85\u7740\u5f88\u5feb\u89c1\u5230\u4f60\u3002"} +{"id": "4002088", "video_name": "3109a6c1-3230-567f-a8a3-c2aa191ab97e", "text": "\u4eba\u7684\u624b\u638c\u5728\u6d77\u6ee9\u4e0a\u6367\u7740\u6c99\u5b50\uff0c\u6c99\u5b50\u7f13\u6162\u5730\u4ece\u624b\u6307\u95f4\u6d41\u5931\u3002"} +{"id": "6003132", "video_name": "76dde563-20cf-500e-af01-80df486bd7c8", "text": "\u73b0\u4ee3\u82f1\u56fd\u4eba\u548c\u963f\u62c9\u4f2f\u56fd\u738b\u4ea4\u8c08"} +{"id": "1005724", "video_name": "694e7cf0-bc7e-5261-a45a-9e553085b7b1", "text": "\u8d1d\u5b81\u9752\u94dc\u96d5\u5851\u5c0f\u4eba\u50cf\uff0c\u62e5\u6709\u9ad8\u9ad8\u7684\u98a7\u9aa8\u548c\u5fae\u7b11\u3002"} +{"id": "1004347", "video_name": "502e4f6f-5c65-5209-842d-902448194b34", "text": "\u7231\u5fb7\u534e\u00b7\u827e\u4f26\u00b7\u5761\u57281940\u5e74\u4ee3\u9ed1\u767d\u98ce\u683c\u4e2d\u62ff\u7740\u4e00\u9897\u5fc3\u3002"} +{"id": "0006873", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "\u4e00\u4e2a\u4eba\u5236\u9020\u68a6\u60f3\u6c7d\u8f66\u3002"} +{"id": "1004957", "video_name": "5b973898-1015-5cd2-9cd4-6ed8fa909534", "text": "\u5723\u7ecf\u4e2d\u7684\u6492\u6bcd\u8033\uff0c2D\u5361\u901a\uff0c\u9762\u90e8\u7279\u5199\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002297", "video_name": "f4b53b31-55db-5062-a78b-8b10e2ca2643", "text": "\u4e00\u90e8\u63cf\u7ed8\u7740\u81ea\u7136\u7f8e\u666f\u7684\u827a\u672f\u7535\u5f71\uff0c\u8ba9\u4eba\u56de\u5473\u8d7720\u4e16\u7eaa70\u5e74\u4ee3\u7684\u795e\u79d8\u4e0e\u8352\u91ce\u4e4b\u7f8e\u3002"} +{"id": "4003931", "video_name": "7fd06d09-6078-50c8-99af-8e4a257bbe44", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u5c9b\u5c7f\uff0c\u62e5\u670912\u4e2a\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\uff0c\u6bcf\u4e2a\u57ce\u5e02\u90fd\u670912\u4e2a\u4e0d\u540c\u7684\u4e3b\u9898\u3002"} +{"id": "2005629", "video_name": "959c3084-1bc5-5782-9c16-66abceeeee83", "text": "\u8f66\u5728\u7530\u91ce\u4e0a\uff0c\u591c\u665a\uff0c\u9ed1\u6697\uff0c\u8d28\u91cf\u8f83\u5dee\u3002"} +{"id": "7002847", "video_name": "cab43ec2-1fdf-586d-b8cf-f35d0a446112", "text": "\u6709\u4e00\u5929\uff0c\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u806a\u660e\u7684\u7537\u5b69\u53eb\u963f\u91cc\u3002\u4ed6\u7684\u5fc3\u88ab\u9b54\u6cd5\u548c\u795e\u79d8\u7684\u4e16\u754c\u6240"} +{"id": "4003462", "video_name": "1030ce14-7531-5e60-86b3-84221d24f922", "text": "\u4e00\u4e2a\u4eba\u80cc\u5bf9\u7740\u76f8\u673a\uff0c\u5411\u5de6\u53f3\u770b\u3002"} +{"id": "3006780", "video_name": "3e7e8544-fc39-52c2-9ee5-12d925947c70", "text": "\u4e00\u53ea\u7a7f\u767d\u8272\u897f\u88c5\u7684\u53ef\u6015\u72fc\u4eba\u6ed1\u677f\u3002"} +{"id": "0003438", "video_name": "3d86c64e-12ea-5e0c-8fed-afd2e4104ee6", "text": "\u873b\u8713\u548c\u5973\u5b69\u5728\u9b54\u6cd5\u68ee\u6797\u91cc\u4e00\u8d77\u73a9\u800d\u3002"} +{"id": "0003570", "video_name": "3fb966e6-afe8-5d7b-968d-66908ec19793", "text": "\u4e00\u540d\u7537\u8bbe\u8ba1\u5e08\u5728\u65f6\u88c5\u79c0\u4e0a\u62e5\u62b1\u7740\u4e00\u540d\u7a7f\u7740\u767d\u8272\u88d9\u5b50\u7684\u6a21\u7279\u3002"} +{"id": "4003111", "video_name": "75b6dd95-5bba-5156-afc6-585bd948dd61", "text": "\u7537\u6027\u8eab\u4f53\u548c\u624b\u672f\u63a5\u4e0a\u7684\u9cc4\u9c7c\u5934\u3001\u5e9f\u5f03\u7684\u5730\u4e0b\u5ba4\u3001VHS\u3001\u6a21\u62df\u3001\u4ea4\u9519\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3001\u8840\u6db2\u3001"} +{"id": "0005481", "video_name": "1b8acf74-25c9-52e3-b19f-eace9e2abd83", "text": "\u53d8\u5f62\u91d1\u521a\u5df2\u7ecf\u638c\u63a7\u4e86\u4e16\u754c\u3002"} +{"id": "3006063", "video_name": "d9b9e803-76be-5ed2-8a21-7115fc53a58e", "text": "\u9b3c\u9b42\u5728\u5893\u5730\u98de\u821e\uff0c\u89c6\u9891\u957f\u5ea6\u4e00\u5206\u949f\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "8003109", "video_name": "a23fa2e5-4b9c-5d74-8fa9-e768679f779a", "text": "\u53d1\u5149\u7684\u751f\u7269\u6050\u6016\u4eba\u5f62\u673a\u5668\u4eba\u7f13\u6162\u5730\u7a7f\u8fc7\u4e00\u6761\u55b7\u51faDNA\u53cc\u87ba\u65cb\u7684\u8089\u8d70\u5eca\u3002"} +{"id": "2004656", "video_name": "69e65841-2452-537c-9d9c-e2544365d686", "text": "\u8a62\u554f\uff0c\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u5c0d\u514b\u6bd4\u00b7\u5e03\u840a\u6069\u7279\uff0c1\u5c0d1\u7c43\u7403\u6bd4\u8cfd\u3002"} +{"id": "6002525", "video_name": "4177bb19-557b-5d67-b576-a56ff18f4aae", "text": "\u96e8\u6ef4\u843d\u5728\u7e41\u5fd9\u8857\u9053\u4e0a\u7ad9\u5728\u4eba\u7fa4\u4e2d\u7684\u5b69\u5b50\u8eab\u4e0a\uff0c\u8be6\u7ec6\u955c\u5934\uff0c4D\u3002"} +{"id": "7002373", "video_name": "a1b223e5-5fcd-5161-b7cb-f2832c39273d", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u6d77\u6d0b\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "1006124", "video_name": "704e4c99-eb8e-57df-bdf2-f2970ccc52e9", "text": "\u4e00\u4f4d\u62e5\u6709\u7cbe\u81f4\u4e94\u5b98\u3001\u7728\u773c\u775b\uff0c\u5e76\u884c\u8d70\u5982\u9a6c\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "6004805", "video_name": "60cb102f-bef6-51d8-8bbf-e60c25d46a72", "text": "\u4e00\u7fa4\u5145\u6ee1\u6d3b\u529b\u7684\u5154\u5b50\u8eb2\u5728\u704c\u6728\u4e1b\u540e\u7684\u795e\u5947\u68ee\u6797\u91cc\uff0c\u63d2\u56fe\u53ef\u4ee5\u4f7f\u7528\u5145\u6ee1\u751f\u673a\u7684\u8272\u5f69\u548c"} +{"id": "3004462", "video_name": "e7fd6261-fd4a-5804-bb02-d81ef3eced54", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u9a91\u7740\u4e00\u8f86\u84dd\u8272\u81ea\u884c\u8f66\uff0c\u80a9\u4e0a\u80cc\u7740\u4ed6\u7684\u670b\u53cb\u3002"} +{"id": "1006516", "video_name": "773bca1a-47c1-5fac-b2a2-cd3152bb61fa", "text": "\u90a3\u4e2a\u7537\u4eba\u611f\u5230\u751f\u6d3b\u5145\u6ee1\u5e0c\u671b\uff0c\u4ed6\u6b63\u5728\u5fae\u7b11\u3002"} +{"id": "2007416", "video_name": "1079767f-5b7a-5fe5-8b2d-ad3b3c52c154", "text": "\u8fd9\u6b21\u5f00\u658b\u8282\u6e38\u884c\u5373\u5c06\u5f00\u59cb\u3002"} +{"id": "1003144", "video_name": "39fdfe51-8698-51df-a85b-ee6615633fcf", "text": "\u4e00\u53ea\u72d7\u5728\u7a7a\u4e2d\u6293\u4f4f\u4e00\u53ea\u82cd\u8747\u3002"} +{"id": "2006711", "video_name": "51aafd6b-4fce-577a-99a5-a6626e41db6c", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9633\u5149\u4e0b\u7761\u89c9\u3002"} +{"id": "3003137", "video_name": "a92c25a9-742c-5514-a876-c68c6d78bca5", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\uff0c\u6c99\u5b50\u548c\u73bb\u7483\uff0c\u514b\u91cc\u592b\u7684\u672a\u6765\u4e3b\u4e49\u706f\u5854\uff0c\u6d77\u6d6a\u62cd\u6253\u3002"} +{"id": "7002234", "video_name": "703386db-7b48-5877-b1d9-4bfe95019f12", "text": "\u5973\u5b50\u8d70\u51fa\u5bb6\u95e8\uff0c\u8d70\u5230\u4e09\u4f4d\u8001\u5e74\u4eba\u524d\uff0c\u5f7c\u6b64\u4ea4\u8c08\uff0c\u753b\u9762\u9010\u6e10\u8fdc\u79bb\u3002"} +{"id": "0003605", "video_name": "4042c4a9-135a-5e30-b12e-34799bceca14", "text": "\u53ef\u7231\u660e\u4eae\u53d1\u5149\u7684\u4e09\u7ef4\u5e7d\u7075\u767d\u5e03\u8986\u76d6\u7740\u9ab7\u9ac5\uff0c\u5185\u90e8\u53d1\u5149\uff0c\u6b63\u5728\u9605\u8bfbTim Burton\u7684\u6ce5\u5851"} +{"id": "2004725", "video_name": "23896c04-098d-5a32-978f-f9370e9dc323", "text": "\u4e00\u4e2a\u5bb6\u5ead\u5728\u53bf\u96c6\u5e02\u6446\u59ff\u52bf\u62cd\u7167\uff0c60\u5e74\u4ee3\u98ce\u683c\uff0c35\u6beb\u7c73\u80f6\u7247\u9897\u7c92\uff0c\u5b69\u5b50\u4eec\u5728\u8dd1\uff0c\u7236\u6bcd"} +{"id": "2003746", "video_name": "1f322e31-945d-58f2-9ffa-1899c4b182a7", "text": "\u4e94\u79d2\u949f\u7684\u52a8\u753b\uff0c\u98ce\u8f66\uff0c\u5c0f\u8138\u52a8\u753b\u3002"} +{"id": "7002499", "video_name": "e6197693-c3e9-5dc7-990c-2da39b739724", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u5730\u7403\u4e0a\u65c5\u884c\uff0c\u6709\u4e00\u4e9b\u536b\u661f\u3002"} +{"id": "1005699", "video_name": "68c3572f-f74d-5946-a888-b91488d45a01", "text": "\u4e00\u53ea\u9752\u86d9\u548c\u8377\u82b1\u5728Gibili\u98ce\u683c\u7684\u52a8\u753b\u4e2d\u5bf9\u8bdd\u7684\u89c6\u9891\u3002"} +{"id": "0004037", "video_name": "01ef45fa-c5b4-563e-baa1-0d1dfd81680e", "text": "\u4e00\u4e2a\u4eba\u8df3\u8fdb\u4e00\u4e2a\u6c14\u6ce1\u4e2d\u3002"} +{"id": "0005892", "video_name": "22e0fe3c-af28-53f2-ba27-bdea10697931", "text": "\u5e74\uff0c\u674e\u5c0f\u9f99\u5728\u8fea\u65af\u79d1\u821e\u6c60\u8df3\u821e\u3002 \n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272"} +{"id": "4004206", "video_name": "5fb5eeae-0a4f-5177-824d-5252fbe7b9af", "text": "\u4e00\u4e2a\u5173\u4e8e\u6e7f\u5a46\u795e\u7684\u89c6\u9891\uff0c\u8bb2\u8ff0\u4ed6\u5c06\u63a2\u7d22\u5b87\u5b99\u5e76\u5bfb\u627e\u4e07\u7269\u7684\u521b\u9020\u8005\u3002"} +{"id": "2003764", "video_name": "59b9d572-e0fb-5cb5-ac95-5bff5546b08e", "text": "\u72b9\u5927\u4e4b\u72ee\u58ee\u4e3d\u800c\u5a01\u6b66\u5730\u884c\u8d70\uff0c\u51ef\u65cb\u800c\u5f52\u3002"} +{"id": "0006403", "video_name": "2bdc1827-d906-5fd4-8b18-4f482e998bcb", "text": "\u7f8e\u5b66\u7684\u6781\u7b80\u8fc7\u53bb\u5f0f\u534a\u900f\u660e\u7684\u65cb\u8f6c\u6591\u70b9\u3002"} +{"id": "4002767", "video_name": "1677c119-ba6a-5d5c-aff0-a7bd2f9b0b1a", "text": "\u5c0f\u5973\u5b69\u4ece6\u5c81\u523018\u5c81\u7684\u6574\u4e2a\u6210\u957f\u8fc7\u7a0b\u3002"} +{"id": "4003662", "video_name": "75a2bd3d-da48-5db7-b78d-03c36c52f9ce", "text": "\u4e00\u8f86\u9ed1\u8272\u96f7\u8bfaClio 4\u5728\u7f8e\u4e3d\u7684\u9633\u5149\u660e\u5a9a\u7684\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u4fa7\u9762\u6709\u4e00\u53f0\u8ddf\u62cd\u6444\u50cf\u673a\u3002"} +{"id": "2006648", "video_name": "01d27fca-dd15-582d-b882-29b88859baa8", "text": "\u5728\u73b0\u4ee3Palisade SUV\u5185\u90e8\u7684\u6c7d\u8f66\u65c5\u884c"} +{"id": "7002544", "video_name": "35a06f8f-c197-5c9e-be87-c4dd007d07c7", "text": "\u5170\u535a\u57fa\u5c3c\u8dd1\u8f66\u4ee5\u8d85\u8fc7200\u82f1\u91cc\u6bcf\u5c0f\u65f6\u7684\u6700\u9ad8\u901f\u5ea6\u5728\u5e7f\u9614\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u98de\u9a70\u3002"} +{"id": "0006779", "video_name": "330a0539-6a2d-50ea-93e1-f212a8f3cd8e", "text": "\u5973\u5b69\u6b63\u5728\u4f7f\u7528\u795e\u79d8\u7684\u4e1c\u65b9\u529b\u91cf\u6765\u5360\u535c\u5979\u81ea\u5df1\u7684\u547d\u8fd0\u3002"} +{"id": "0006019", "video_name": "25202be9-a70e-502b-855e-74e5df4951de", "text": "\u5927\u6708\u4eae\u8fd1\u8ddd\u79bb\u9ad8\u901f\u5ef6\u65f6\u6444\u5f71\uff0c\u591a\u5f69\u7684\u5929\u7a7a\u3002"} +{"id": "3003363", "video_name": "a38157a2-174c-5915-b6e9-c5fa9244d34a", "text": "\u8fdb\u5165\u4e00\u4e2a\u8d85\u4e4e\u4f60\u6700\u75af\u72c2\u68a6\u60f3\u7684\u4e16\u754c\uff0c\u90a3\u91cc\u7684\u5929\u7a7a\u662f\u65cb\u8f6c\u7684\u8272\u5f69\u753b\u5e03\uff0c\u5730\u9762\u7531\u95ea\u95ea\u53d1"} +{"id": "0003508", "video_name": "3ebaf96b-f5bc-54de-ada9-55089d201f3b", "text": "\u677e\u5f1b\u5bf9\u79f0\u7684\u66fc\u9640\u7f57\u56fe\u6848\u4e0d\u65ad\u53d8\u5316\uff0c\u4ee5\u68a6\u5e7b\u822c\u7684\u989c\u8272\u548c\u8272\u5f69\u4e09\u89d2\u5f62\u4e3a\u7279\u8272\u3002"} +{"id": "0006141", "video_name": "272d6a78-50dc-5411-bb3f-0124b245c32d", "text": "\u72c2\u70ed\u5730\u8be6\u7ec6\u800c\u590d\u6742\u7684\u9ec4\u91d1\u5973\u738b\uff0c\u5bf9\u79f0\u7f8e\u611f\uff0c\u6765\u81eaArtgerm\u3001WLOP\u548cWarwick Goble\uff1b\u4f7f\u7528Nikon D750\u62cd"} +{"id": "1006133", "video_name": "705d7765-decd-575a-8f4d-05755d7cb4e5", "text": "\u4e00\u4e2a\u5de5\u4eba\u8fdb\u5165\u4e00\u5ea7\u5efa\u7b51\u7269\u5e76\u6ce8\u610f\u5230\u7f3a\u9677\u7684\u60c5\u666f\u3002"} +{"id": "0003299", "video_name": "3b3ec41b-0d7d-5aca-9d49-81fed8116345", "text": "\u79cd\u5b50\u7834\u571f\u800c\u51fa\uff0c\u751f\u957f\u3002"} +{"id": "0006463", "video_name": "2d00c5e5-2f97-5cc9-bec5-effcf53ea2a3", "text": "\u4e00\u53ea\u888b\u9f20\u5728\u65e9\u6668\u6cbf\u7740\u8def\u8dd1\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "0006043", "video_name": "25945ad2-73a7-5032-a725-9a47e79d3fe5", "text": "\u9ed1\u8272\u5c01\u9762\u4e0a\u6709\u6b7b\u795e\u7684\u6c49\u5b57\uff0c\u80cc\u666f\u4e2d\u6709\u95ea\u7535\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u70db\u5149\u7684\u95ed\u5408\u4e66\u7c4d\u3002"} +{"id": "1003853", "video_name": "47049164-3a5d-5162-841e-706d897f01d6", "text": "\u4e00\u4e2a\u7531\u4e09\u4e2a\u6210\u5458\u7ec4\u6210\u7684\u5bb6\u5ead\uff0c\u4e00\u4e2a\u7537\u4eba\uff0c\u4e00\u4e2a\u5973\u4eba\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u3002"} +{"id": "3006226", "video_name": "9c14a217-16f0-5803-8365-37551a42db8d", "text": "\u7f8e\u4e3d\u7684\u65e9\u6668\u9633\u5149\u7167\u4eae\u4e86\u96ea\u5c71\uff0c\u4e00\u7fa4\u9a6c\u5728\u96ea\u5c71\u4e0b\u7684\u6cb3\u4e24\u5cb8\u5feb\u4e50\u5954\u8dd1\uff0c\u521b\u9020\u4e86\u4e00"} +{"id": "4003238", "video_name": "15b1f005-6a04-5ed0-a985-3e7b49b020a8", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5bb3\u6015\u7684\u5973\u5b69\u6b63\u5728\u7a7f\u8d8a\u4e00\u4e2a\u601d\u7ef4\u8ff7\u5bab\u5954\u8dd1\u3002"} +{"id": "2006129", "video_name": "2811dadd-6ab4-5e76-a012-ad27f0cffdc2", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u75be\u8dd1\u7684\u751f\u52a8\u63cf\u8ff0\u88ab\u6355\u6349\u5728\u8fd0\u52a8\u4e2d\u3002\u80cc\u666f\u63cf\u7ed8\u4e86\u7ecf\u8fc7\u8f66\u8f86\u548c\u8fdc\u5904\u5929"} +{"id": "7002284", "video_name": "17f1acfc-f0c3-5671-8a43-c928d27ac672", "text": "\u72d0\u72f8\u548c\u670b\u53cb\u4e00\u8d77\u89c2\u770b\u65e5\u51fa\u3002"} +{"id": "7002665", "video_name": "7584b365-2b04-58fc-b99e-e54186949c45", "text": "\u60c5\u51b5\u53d8\u5f97\u4e25\u5cfb\uff0c\u6751\u6c11\u4eec\u62c5\u5fc3\u4ed6\u4eec\u7684\u5e84\u7a3c\u548c\u7272\u755c\u7684\u751f\u5b58\u3002"} +{"id": "3006824", "video_name": "4238786e-ef03-56a1-8cbf-0ee4ebd7a024", "text": "\u4ed9\u5973\u98de\u821e\u7684\u5206\u5b50\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u539f\u59cb\u7167\u7247\u3002"} +{"id": "2004841", "video_name": "a54fdd09-ef8b-5ae2-b267-b6038e0f4e1f", "text": "Ragnar\u548c\u7ef4\u4eac\u4eba\u4e0ePeaky Blinders\u76f8\u9047\u3002"} +{"id": "8003829", "video_name": "27ed2d99-af84-5b68-a7eb-18d8fc393121", "text": "\u91cd\u529b\u5f17\u5c14\u5179\u5361\u901a\u73b0\u5b9e\u7248"} +{"id": "0004639", "video_name": "0c6c9bbd-d7b0-5ca9-9113-8c3363ada32a", "text": "\u4e00\u6761\u5927\u5377\u66f2\u7684\u7ea2\u8272\u4e2d\u56fd\u9f99\u5728\u6d77\u4e0a\u98de\u7fd4\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u4e2d\u95f4\u6709\u4e00\u9897\u9ec4\u8272\u7684\u592a\u9633\u3002"} +{"id": "0004176", "video_name": "0497ff25-ce66-5fd4-83f6-fe29ad0ec76a", "text": "\u5e74\u8f7b\u7537\u5b50\u6b63\u5728\u8bfb\u4e66\uff0c\u7a81\u7136\u6709\u4e00\u4e2a\u5927\u7684\u9886\u609f\uff0c\u62ac\u5934\u671b\u5411\u524d\u65b9\u3002"} +{"id": "8001354", "video_name": "70af0d3c-9fca-5c26-9f1c-2a3c02348921", "text": "\u5728Minecraft\u4e2d\uff0cHerobrine\u548cSteve\u4e4b\u95f4\u7684\u53f2\u8bd7\u822c\u7684\u6218\u6597\u3002"} +{"id": "3005604", "video_name": "55f2d0a5-bb25-53b2-a721-318cde8e3651", "text": "\u63cf\u8ff0\u9547\u4e0a\u5c45\u6c11\u8868\u8fbe\u56f0\u60d1\u548c\u6124\u6012\uff0c\u53ef\u80fd\u5305\u62ec\u6297\u8bae\u548c\u793a\u5a01\u3002"} +{"id": "5001919", "video_name": "580ec8d3-4c95-5430-8e28-b3e7eb1735b3", "text": "\u4e00\u4e2a\u62cd\u6444\u62dc\u5360\u5ead\u56fd\u738b\u7684\u7535\u5f71\u98ce\u683c\u7684\u6444\u5f71\u8096\u50cf\uff0c\u6781\u7aef\u7279\u5199\uff0c\u9762\u90e8\u671d\u5916\uff0c\u7ec6\u8282\u4e30\u5bcc\u7684\u76ae"} +{"id": "4004132", "video_name": "2d541ce0-d488-5c4a-8184-defc380ab5e6", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u4e00\u53ea\u72d7\u7684\u89c6\u9891\u3002"} +{"id": "1004164", "video_name": "4d16ece6-47e9-5b34-be16-b57f8e2a2769", "text": "\u4eb2\u5bc6\u60c5\u4fa3\uff0c8k\u9ad8\u6e05\uff0c\u660f\u6697\u706f\u5149\u3002"} +{"id": "3005429", "video_name": "14fb7729-5199-501f-8514-a21d7666406c", "text": "\u5e7b\u5883\u68ee\u6797\uff0c\u4ee5\u7d2b\u8272\u70ba\u57fa\u8abf\uff0c\u63a1\u7528\u56db\u8272\u548c\u8ae7\uff0c\u8449\u5b50\u88ab\u98a8\u5439\u52d5\u3002"} +{"id": "7002835", "video_name": "df24b52c-0ca9-5a61-95bd-eef5ea9314c2", "text": "\u8ff7\u5e7b\u68ee\u6797\u3001\u795e\u5947\u751f\u7269\u3001\u8611\u83c7\u5c71\u3001\u667a\u6167\u5c45\u6240\uff1b\u8611\u83c7\u52c7\u58eb\u83ab\u8c37\uff0c\u9752"} +{"id": "8002244", "video_name": "7d691147-a413-574a-b68e-52391ab046b1", "text": "\u6df1\u591c\u8131\u53e3\u79c0\u4e3b\u6301\u4eba\u5728\u8c08\u8bba\u7531\u5927\u536b\u00b7\u514b\u6717\u4f2f\u683c\u8bbe\u8ba1\u7684\u534a\u4eba\u534a\u517d\u751f\u7269\u7684\u8096\u50cf\u3002"} +{"id": "7004178", "video_name": "8d4a7187-ac37-50b7-bac0-6c5092b7edff", "text": "\u6587\u68ee\u7279\u00b7\u68b5\u9ad8\u62c9\u5c0f\u63d0\u7434\u3002"} +{"id": "0006409", "video_name": "2bea75ae-4469-5df0-9248-8e6a8dd8fe78", "text": "\u4e00\u5bb6\u79d1\u6280\u516c\u53f8\u6b63\u5728\u5411\u534e\u76db\u987f\u9876\u5cf0\u8fdb\u53d1\u3002"} +{"id": "1006300", "video_name": "735b794f-0c0b-5c57-ad60-30905319752e", "text": "\u624b\u673a\u6ca1\u7535\uff0c\u52a8\u753b\u91cc\u7684\u4eba\u5f88\u751f\u6c14\u3002"} +{"id": "7002627", "video_name": "69250346-0c58-5fa2-b8e6-0491eef808e0", "text": "\u56db\u5468\u7eff\u6811\u73af\u7ed5\uff0c\u4e00\u6761\u6cb3\u6d41\u4ece\u4e2d\u6d41\u8fc7\uff0c\u7267\u7f8a\u4eba\u5728\u6cb3\u6c34\u4e0a\u884c\u8d70\u7a7f\u8fc7\u6cb3\u6d41\u3002"} +{"id": "7003132", "video_name": "e1dad39c-e42d-5b7a-a320-bedb2eca311a", "text": "\u5eb7\u8036\u00b7\u97e6\u65af\u7279\u57281999\u5e74\u7684\u79d8\u5bc6VHS\u5f55\u50cf\u5e26\u4e0a\u5403\u7740\u4e00\u4e9b\u85af\u6761\u3002"} +{"id": "7002358", "video_name": "59814ae0-d721-5433-841c-b1ec8eb522b7", "text": "\u5b64\u72ec\u7684\u57ce\u5e02\u5411\u5730\u5e73\u7ebf\u4e0a\u7684\u5915\u9633\u544a\u522b\uff08\u5915\u9633\uff09\u4e2d\u56fd\u98ce\u683c\u3002\n\nSource sentence: The team worked tirelessly to complete the project before the deadline. \n\n\u56e2\u961f\u4e0d"} +{"id": "2003784", "video_name": "046bf012-4b25-5f4f-a2dd-f9d258aff182", "text": "\u4e09\u53ea\u72d7\u4ece\u8d34\u7eb8\u91cc\u51fa\u6765\u4e86\u3002"} +{"id": "6002565", "video_name": "abcdd8b0-0738-5df5-a2a4-29ebb17a2fdb", "text": "\u4e00\u4e2a\u6b63\u5348\u7684\u5fae\u89c2\u57ce\u5e02\u6444\u5f71\uff0c\u4fe1\u606f\uff1aALIANZA 4.0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3005173", "video_name": "0cd16ed9-9767-59a0-9a7d-f97b2964130f", "text": "\u4e5d\u53ea\u732b\u5728\u623f\u5b50\u91cc\u5404\u81ea\u4ee5\u4e0d\u540c\u7684\u59ff\u52bf\u60a0\u95f2\u5730\u8eba\u7740\u6216\u6253\u76f9\u3002"} +{"id": "6003405", "video_name": "5f7deed2-a55d-5edf-a56a-016efb26a2f2", "text": "\u4e00\u53cc\u8010\u514b\u8fd0\u52a8\u978b\u7528\u4e8e\u7f51\u7ad9\u5e74\u5ea6\u9500\u552e\u6d3b\u52a8\uff0c\u6781\u9ad8\u7684\u5f62\u8c61\u3002"} +{"id": "3005752", "video_name": "a54fc741-e0c2-5ca2-a7de-0a8e22e9e219", "text": "\u62ab\u8428\u9171\u7684\u914d\u6599\uff1a1\u7f50\uff0814\u76ce\u53f8\uff09\u788e\u756a\u8304\u30011\u74e3\u5927\u849c\uff0c\u5207\u788e\u30011\u8336\u5319\u5e72\u725b\u81f3"} +{"id": "0006421", "video_name": "2c0f0812-28d3-5b84-ad3f-42ee1529c3c2", "text": "\u6770\u68ee\u00b7\u6c83\u4f0a\u65af\u7684\u53d8\u8eab\u573a\u666f\u9ed1\u6697\u7535\u5f71\u5316\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002592", "video_name": "44fd446a-925c-5673-827f-f16d99cd5cb2", "text": "\u6211\u91cd\u65b0\u7acb\u8db3\u5927\u5730\uff0c\u601d\u7eea\u4e2d\u5145\u6ee1\u4e86\u62c9\u91cc\u548c\u8d6b\u6bd4\u7684\u5f62\u8c61\uff0c\u4ed6\u4eec\u5728\u6700\u56f0\u96be\u7684\u60c5\u51b5\u4e0b\u4f9d\u7136\u5145\u6ee1\u4e86\u5feb"} +{"id": "2006824", "video_name": "da8ba96c-1773-5601-a355-ffae2153e7a1", "text": "\u4e00\u7fa4\u7537\u6027\u4f10\u6728\u5de5\u5728\u9152\u5427\u91cc\u559d\u5564\u9152\uff0c\u8868\u73b0\u51fa\u6b22\u4e50\u800c\u55a7\u95f9\u7684\u884c\u4e3a\u3002"} +{"id": "4003519", "video_name": "a0e1cb4a-723a-5a76-9f3a-f099e2cfa053", "text": "\u4e00\u4e2a\u6709\u773c\u775b\u7684\u5973\u5b69\u5728\u505a\u5979\u7684\u5bb6\u5ead\u4f5c\u4e1a\u3002"} +{"id": "6003024", "video_name": "cdc982d5-048f-5a6c-830c-d698da8b9da2", "text": "\u4e09\u9879\u5168\u80fd\u8fd0\u52a8\u5458\u5728\u6e38\u6cf3\u65f6\u88ab\u9ca8\u9c7c\u8ffd\u8d76\u3002"} +{"id": "0004426", "video_name": "08b29689-bfc3-5463-a390-2e33d13e58f2", "text": "\u521b\u9020\u4e00\u4e2a\u60c5\u611f\u5f62\u8c61\uff0c\u4eba\u4eec\u8dea\u5728\u5730\u4e0a\uff0c\u5411\u4e0a\u5e1d\u54ed\u6ce3\uff0c\u5bfb\u6c42\u601c\u60af\u548c\u4fdd\u62a4\uff0c\u53cc\u624b\u4e3e\u5411\u5929\u7a7a\u3002"} +{"id": "8002426", "video_name": "d6f7505c-d288-56ed-a09f-539625004e63", "text": "\u5145\u6ee1\u514b\u82cf\u9c81\u98ce\u683c\u7684\u4e16\u754c\uff0c\u4e2d\u592e\u6709\u4e00\u4e2a\u9ed1\u767d\u7684\u5927\u7403\uff0c\u5e7f\u89d2\u62cd\u6444\u3002"} +{"id": "6002483", "video_name": "4747937f-9ae3-5b28-ae53-cc1ee32182e2", "text": "\u4e00\u5e45\u548c\u5e73\u6cb3\u7554\u5c0f\u5c4b\u7684\u5361\u901a\u56fe\u50cf\uff0c\u6709\u4e00\u53ea\u5c0f\u6c34\u736d\u4f4f\u5728\u90a3\u91cc\u3002"} +{"id": "1004478", "video_name": "52fe6cad-d873-5fe9-8620-f87628fbcf3d", "text": "\u5728\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u5723\u8bde\u591c\u91cc\uff0c\u5723\u8bde\u8001\u4eba\u9001\u4e86\u4e00\u4e2a\u5c0f\u6696\u6c14\u7ed9\u5750\u5728\u96ea\u5730\u91cc\u7684\u5c0f\u7537\u5b69\u3002\u5c0f\u7537\u5b69"} +{"id": "1003036", "video_name": "37bd5732-a8a4-5d34-b511-12d3dfc2796d", "text": "\u62c9\u8482\u5e26\u7740\u5c0f\u80cc\u5305\uff0c\u51b3\u5fc3\u5730\u6cbf\u7740\u873f\u8712\u7684\u5c0f\u8def\u8fc8\u6b65\u524d\u884c\u3002\u9ad8\u5927\u7684\u6811\u6728\u5728\u5934\u9876\u5f62\u6210\u4e00\u7247"} +{"id": "2005056", "video_name": "90739ddb-1821-5105-b4ca-ad6390de635d", "text": "\u6454\u8de4\u6bd4\u8d5b\u4e0a\u6709\u5927\u91cf\u7684\u89c2\u4f17\u3002"} +{"id": "1004476", "video_name": "52e07f31-331c-5b96-8fba-9a43a6c3e22d", "text": "\u4e00\u540d\u6cae\u4e27\u7684\u7537\u5b50\u8bd5\u56fe\u8ba9\u4ed6\u7684\u540c\u4e8b\u4e0a\u5cb8\u3002"} +{"id": "2007785", "video_name": "0fc48856-0472-5f67-896d-13d921c5aa99", "text": "\u706b\u5f71\u5fcd\u8005\u5728\u6218\u6597\u4e2d\u51fb\u8d25\u4e86\u6076\u68cd\uff0c\u811a\u5728\u8fd0\u52a8\u4e2d\u53d1\u51fa\u5f3a\u5927\u7684\u8e22\u51fb\u3002"} +{"id": "4002048", "video_name": "a5e24abc-632e-5851-adc7-58ec11f5299a", "text": "1984\u5e74\u7684\u89c6\u9891\uff0c\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u6cf3\u6c60\u6d3e\u5bf9\u4e0a\u7684\u6027\u611f\u5973\u5b69\u3002"} +{"id": "1006208", "video_name": "71d2ce5f-de29-52c0-9636-165d14f4a856", "text": "\u5c04\u51fb\u4e24\u652f\u5f69\u8272\u7403\u67aa\u7684Rec Room\u6cb9\u6f06\u5f39\u5c04\u51fb\u89c6\u89d2"} +{"id": "4004989", "video_name": "7226dd3b-5c1c-5347-b64d-ea7634a5b1c7", "text": "\u5efa\u7b51\u5de5\u4eba\u7a7f\u7740\u6a59\u8272\u5939\u514b\u548c\u5b89\u5168\u5e3d\uff0c\u4e13\u4e1a\u5730\u62c6\u5378\u4e00\u4e2a\u4e0b\u6c34\u9053\u4e95\u76d6\u3002"} +{"id": "0005811", "video_name": "218ee88f-31ef-5869-a343-e59d5f65a1bb", "text": "\u70ed\u5e26\u96e8\u6797\u7684\u77e2\u91cf\u98ce\u683c\u4e0b\u7684\u96ea\u5929\u3002"} +{"id": "2003317", "video_name": "abc463f2-5300-5014-8de6-9385a8b60c6c", "text": "\u5728Discord\u4f7f\u7528\u8005\u8eab\u4e0a\u53d1\u51fa\u58f0\u6ce2\u58f0\u5450\u58f0"} +{"id": "7002075", "video_name": "0ef3f607-a1d5-59c3-98dc-2631a2d1efe1", "text": "\u4e00\u4e2a\u623f\u95f4\u7528\u67d4\u548c\u7684\u989c\u8272\u548c\u6bdb\u7ed2\u52a8\u7269\u88c5\u9970\u5f97\u5f88\u8212\u9002\u3002\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u5e8a\u4e0a\u770b\u4e66\uff0c\u7a97\u53f0\u4e0a\u7684"} +{"id": "0003874", "video_name": "450449cc-9777-5392-967f-d3211e5c2c59", "text": "\u4e00\u4e2aNASCAR\u8d5b\u8f66\u624b\u4ee5\u5854\u5229\u8fea\u52a0\u4e4b\u591c\u91cc\u57fa\u9c8d\u6bd4\u7684\u65b9\u5f0f\u4e0e\u7c89\u4e1d\u4e00\u8d77\u5e86\u795d\u3002"} +{"id": "4003258", "video_name": "dba567fc-2ab3-575f-a071-c14329b1a8d3", "text": "\u5341\u4e09\u5c81\u7684\u7537\u5b69\u8bf7\u6c42\u4ed6\u7684\u6bcd\u4eb2\u8bb2\u8ff0\u88ab\u6682\u505c\u7684\u6545\u4e8b\u3002\u7535\u5f71\u822c\u7684\u955c\u5934\u98ce\u683c\u8fea\u58eb\u5c3c\u3002"} +{"id": "6003640", "video_name": "44e6e311-d35f-5a14-bef8-1bb3bf3b78aa", "text": "\u5927\u8239\u7684\u9f99\u9aa8"} +{"id": "5001396", "video_name": "ef875d78-4c54-5f9d-81c1-0a1f7f9f2e16", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u6ed1\u96ea\u677f\u3002"} +{"id": "2007632", "video_name": "3de0930d-0885-5738-953c-7ea021c0f8cc", "text": "\u70ed\u8fa3\u7684\u7eff\u8fa3\u6912\u7530\u903c\u771f\u5730\u8bbe\u7f6e\u5728\u65b0\u58a8\u897f\u54e5\u5dde\u3002"} +{"id": "5001564", "video_name": "9a95975c-dabb-5037-838d-d299d23d25bb", "text": "\u76f8\u673a\u6765\u56de\u79fb\u52a8\uff0c\u74e6\u5df4\u7eb3\u57fa\u4eba\u671b\u7740\u65b0\u7684\u571f\u5730\u3002"} +{"id": "8003871", "video_name": "c25e7ab7-8e70-52fc-92f7-3bb48cfdb5bd", "text": "1980\u5e74\u4ee3\u7537\u5973\u5b09\u76ae\u58eb\u5728\u5927\u9ebb\u5929\u5802\u63a5\u543b\u3002"} +{"id": "2005701", "video_name": "a1a25e7d-2fd5-54fc-8a58-0ca2550c8774", "text": "\u5929\u4e3b\u6559\u795e\u7236\u5728\u623f\u5b50\u524d\u9762\u3002"} +{"id": "3005839", "video_name": "9ad6792d-a280-5b5e-9c46-7fcf1005c120", "text": "\u6d1e\u7a74\u5185\u90e8\uff0c\u5899\u58c1\u4e0a\u88c5\u9970\u7740\u53e4\u8001\u7684\u7b26\u6587\u548c\u95ea\u8000\u7684\u6c34\u6676\uff0c\u8425\u9020\u51fa\u8ff7\u4eba\u800c\u795e\u79d8\u7684\u6c1b"} +{"id": "4004715", "video_name": "15cf609d-7f3a-52c3-abb3-150fa8055e2f", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u519c\u573a\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u53ea\u91d1\u8272\u7684\u9e21\u5728\u9633\u5149\u4e0b\u4e0b\u86cb\u3002"} +{"id": "3005064", "video_name": "d279daf6-aaab-53f7-87df-adf6a700d364", "text": "\u8759\u8760\u4fa0\u7ad9\u5728\u5efa\u7b51\u7269\u91cc\uff0c\u591c\u665a\u7684\u57ce\u5e02\uff0c\u5c0f\u4e11\u5728\u8759\u8760\u4fa0\u9762\u524d\u3002 \n\nSource sentence: I am going to the supermarket to"} +{"id": "8001164", "video_name": "601445de-9821-5397-8b3b-8cd4d6fc5bef", "text": "\u4f4e\u8bed\u7684\u98ce\u5439\u7740\u60b2\u4f24\u7684\u547c\u58f0\uff0c\u5e7d\u7075\u822c\u7684\u811a\u6b65\u58f0\u56de\u8361\u5728\u8352\u51c9\u7684\u5927\u5385\u91cc\u3002"} +{"id": "2004187", "video_name": "fe29a945-7775-5334-a3ff-dd043b7a3188", "text": "\u5b87\u822a\u5458\u5728\u6708\u7403\u5751\u4e0a\u8df3\u821e\u3002"} +{"id": "4003359", "video_name": "7ceeb0c2-a358-5c1e-a1cc-b2f63f96c4d6", "text": "\u4e00\u4f4d\u8eab\u5f62\u9ad8\u6311\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u76ae\u80a4\u9edd\u9ed1\uff0c\u5929\u84dd\u8272\u773c\u775b\uff0c\u9ed1\u8272\u5934\u53d1\u4e0a\u6709\u77f3\u58a8\u8272\u7684\u70b9\u7f00\u3002\u5934\u4e0a"} +{"id": "3004285", "video_name": "7f7edf3b-8db3-58d9-816c-62a67f1314c6", "text": "\u53ea\u66f4\u6539\u6d77\u548c\u5929\u7a7a\uff0c\u4fdd\u7559\u8239\u53ea\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3006142", "video_name": "1f9160ad-69fb-534f-ad2d-dbd24edc91b2", "text": "\u4fdd\u65f6\u6377\u572810\u79d2\u4e2d\u9a7e\u9a76\u5728\u6c99\u6f20\u7684\u98ce\u66b4\u4e2d\u3002"} +{"id": "8003536", "video_name": "edcf2b78-9835-54d7-83d0-0a3731cf823a", "text": "\u4e00\u4e2a\u7a7f\u7740\u65e7\u8863\u670d\u5728\u5c71\u4e0a\u8dd1\u6b65\u7684\u7537\u4eba\u3002"} +{"id": "0005172", "video_name": "1601457e-d33d-5a64-8feb-df568a5fcf6f", "text": "\u4e00\u53ea\u60b2\u4f24\u7684\u733f\u7334\u5750\u5728\u4e00\u4e2a\u7e41\u5fd9\u7684\u7ebd\u7ea6\u8857\u9053\u4e2d\u592e\uff0c\u5468\u56f4\u6709\u4eba\u6765\u4eba\u5f80\uff0c\u4ee5\u97e6\u65af"} +{"id": "8001683", "video_name": "7a37e514-b962-577d-a5ce-2f21c1db6b56", "text": "\u521b\u5efa\u4e00\u6bb5\u91ce\u751f\u52a8\u7269\u89c6\u9891\u3002"} +{"id": "1006276", "video_name": "72e69158-0c52-517f-b31e-020c2b20cce7", "text": "\u4eba\u4eec\u5728\u4e00\u7fa4\u4eba\u4e2d\u8c08\u8bba\u4e00\u4e2a\u751f\u65e5\u793c\u7269\u3002"} +{"id": "6002023", "video_name": "314ba3f7-e867-5ad6-9551-d1ebd811c754", "text": "\u4e00\u6761\u7a7f\u8fc7\u4e1b\u6797\u7684\u516c\u8def\uff0c\u6469\u6258\u8f66\u5728\u8def\u4e0a\u5954\u9a70\uff0c\u591c\u666f\uff0c\u6444\u50cf\u673a\u5bf9\u573a\u666f\u8fdb\u884c\u4e86\u653e\u5927\u3002"} +{"id": "0006411", "video_name": "2bf08c29-5c2c-56e3-825d-f2b331d2a2c3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u4f5b\u50cf\u524d\uff0c\u795e\u60c5\u5fe7\u8651\u3002"} +{"id": "5001301", "video_name": "c03ca43c-8ceb-50b1-bca4-557ca04db56c", "text": "\u5b69\u5b50\u7a7f\u7740\u718a\u88c5\uff0c\u4ece\u997c\u5e72\u7f50\u91cc\u62ff\u997c\u5e72\uff0c\u53a8\u623f\u91cc\uff0c\u5988\u5988\u7684\u8f6e\u5ed3\u957f\u957f\u7684\u5f71"} +{"id": "6002157", "video_name": "660ef419-be9e-5ecc-8629-65e902140d32", "text": "\u5723\u8bde\u5feb\u4e50\u5199\u5728\u5929\u7a7a\u4e0a\u3002"} +{"id": "1006195", "video_name": "716d16b7-684b-5c14-8621-3c163f97f84d", "text": "\u4ed6\u4eec\u56e0\u4e3a\u5f7c\u6b64\u4e4b\u95f4\u7684\u7262\u56fa\u7ebd\u5e26\u4ee5\u53ca\u5bf9\u4ed6\u4eec\u7684\u7236\u4eb2\u7684\u5171\u540c\u7231\u800c\u95fb\u540d\uff0c\u4ed6\u4eec\u7684\u7236\u4eb2\u662f\u4e2a\u5584"} +{"id": "6003198", "video_name": "0eb6e950-38e3-58d4-bad8-47a125f2737c", "text": "\u8036\u7a23\u628a\u6c34\u53d8\u6210\u8461\u8404\u9152\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7003662", "video_name": "104c9180-4039-58ca-9eb8-5b33a996e125", "text": "\u9053\u5947\u5145\u7535\u5668SS\u7a7f\u8fc7\u53e4\u96c5\u5c0f\u9547\u3002"} +{"id": "8002357", "video_name": "001e551e-961d-5645-9d84-604bc820bbb7", "text": "\u8ba1\u7b97\u673a\u5c4f\u5e55\u6355\u6349\u76d1\u63a7\u5e94\u7528\u7a0b\u5e8f\uff0c\u540c\u65f6\u6253\u5f00\u591a\u4e2a\u7a97\u53e3\u663e\u793a\u5de5\u4e1a\u6e29\u5ba4\u5185\u7684\u5b89\u5168\u6444\u50cf\u5934\u5b9e\u65f6\u6d41\u3002"} +{"id": "7002827", "video_name": "ae09956d-c03f-59e5-ac71-d345f400ba24", "text": "\u4eba\u53d1\u9001\u77ed\u4fe1\u7684\u7279\u5199\u955c\u5934"} +{"id": "0003836", "video_name": "4448179a-a189-5459-87e8-d8eba59acb64", "text": "\u4e00\u4e2a\u57ce\u5e02\uff0c\u662f\u4e00\u4e2a\u5927\u6c34\u6ef4\u4e2d\u56fe\u50cf\u7684\u7b49\u7ecf\u7eac\u5ea6\u6295\u5f71\u3002"} +{"id": "3004410", "video_name": "d214f20e-fa31-55a2-9600-9aec520f7f0a", "text": "\u6c49\u59c6\u592a\u90ce\u7684\u89d2\u8272\u6b63\u5728\u6467\u6bc1\u7ebd\u7ea6\u5e02\uff0c\u50cf\u54e5\u65af\u62c9\u4e00\u6837\u5927\u8e0f\u6b65\u5730\u8d70\u7740\u3002"} +{"id": "2006023", "video_name": "88c4c7e3-1388-562b-8969-72988d0bd033", "text": "\u6eda\u77f3\u4e50\u961f\uff0c\u7c73\u514b\u00b7\u8d3e\u683c\u5c14\uff0c\u94c5\u7b14\u753b"} +{"id": "0003873", "video_name": "4502664d-f228-5365-9805-0347854c55b2", "text": "\u9ed1\u767d\u773c\u775b\u7684\u76f8\u673a"} +{"id": "2004391", "video_name": "8f2213a5-2e39-5a5d-baf2-39c3c1297b88", "text": "\u51ef\u65af\u5e15\u5e01\u7684\u6807\u5fd7\u662f\u5feb\u4e50\u548c\u8d22\u5bcc\u3002"} +{"id": "8002011", "video_name": "016eb515-7341-5772-9189-f1d8e2f6bc42", "text": "\u5f88\u591a\u6a44\u6984\u6811\u3002\u4fe1\u606f\uff1aFebrero\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003439", "video_name": "b9d38b25-7ee1-51f3-813f-68857408620a", "text": "\u6469\u897f\u7684\u6307\u6325\u4e0b\uff0c\u72b9\u592a\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002 \n\nSource sentence: The Great Wall is a symbol of China's ancient civilization. \n\n\u957f\u57ce\u662f\u4e2d\u56fd\u53e4\u4ee3\u6587"} +{"id": "1006212", "video_name": "71e785d4-557f-5800-87c6-b25520e3b3ce", "text": "\u5929\u7a7a\u4e2d\u7684\u6708\u4eae\uff0c\u4e16\u754c\u5df2\u6b7b\u53bb\u3002"} +{"id": "6004178", "video_name": "0fc1b4dc-48ea-5e5a-b4b6-cb8c7465e39e", "text": "\u4e00\u8f86\u519b\u7528\u5361\u8f66\u5728\u8ddf\u968f\u4e00\u4e2a\u7537\u4eba\u3002"} +{"id": "7002086", "video_name": "764deaf8-2b6a-5943-b86d-882bf059f7cd", "text": "\u5723\u8bde\u8001\u4eba\u6b63\u5728\u4e91\u6735\u4e0a\u7761\u89c9\u3002"} +{"id": "7002300", "video_name": "e9fa64f2-dafe-5f4b-a33e-d88550702be1", "text": "\u6162\u52a8\u4f5c\u3001\u96e8\u6c34\u3001\u623f\u5c4b\u91cc\u7684\u706f\u5f00\u5173\u3001\u9713\u8679\u706f\u95ea\u70c1\u3001\u6c7d\u8f66\u79fb\u52a8\u3002"} +{"id": "7003438", "video_name": "316abe53-7261-5c60-9ff9-47cedb7183a4", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u70b9\u71c3\u4e86\u4ed6\u7684\u5149\u5251\uff0c\u5728\u7ffb\u817e\u7740\u7684\u6d77\u6d6a\u4e2d\u53cd\u5c04\u51fa\u7ea2\u8272\u7684\u5149\u8292\u3002"} +{"id": "0004891", "video_name": "10ffb7e0-e28e-578d-ac2a-ef00aac90859", "text": "\u9178\u96e8\uff0c\u6c34\u7684\u989c\u8272\u53d8\u7eff\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u9003\u547d\u3002"} +{"id": "3005362", "video_name": "b87d1b57-4f75-5381-8e88-9a4b3bebd61a", "text": "\u8352\u51c9\u666f\u8272\u4e2d\u56de\u8361\u7740\u65e0\u6cd5\u89e3\u91ca\u7684\u58f0\u97f3\u3002\u5f02\u57df\u6c14\u606f\u5728\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u3002"} +{"id": "2003000", "video_name": "dfb5d39d-8834-5d73-90db-2f18dea86c42", "text": "\u4e00\u53f0T800\u673a\u5668\u4eba\u5728\u80cc\u666f\u4e2d\u7206\u70b8\u7684\u60c5\u51b5\u4e0b\u8df3\u8d77\u4e86\u6708\u7403\u6b65\u3002"} +{"id": "4003754", "video_name": "d38a2a98-89df-5aad-8df6-2b18b2d30027", "text": "\u706b\u7bad\u5760\u843d\u5730\u7403\uff0c\u591c\u7a7a\u80cc\u666f\u3002"} +{"id": "1006000", "video_name": "6e3db641-01c2-536f-8ab5-bd88a41a6dce", "text": "\u9ec4\u8272\u82b1\u6735\u98de\u821e\uff0c\u6c7d\u8f66\u7f13\u6162\u884c\u9a76\u3002"} +{"id": "6002131", "video_name": "25d29596-ddcb-597b-98d8-f26133def4f1", "text": "\u4e24\u676f\u6c34\u7684\u52a8\u753b\u6bd4\u8f83\uff0c\u4e00\u676f\u70ed\u6c34\uff0c\u4e00\u676f\u51b7\u6c34\uff0c\u5e26\u6709\u8ba1\u65f6\u5668\u3002\u70ed\u6c34\u66f4\u5feb\u5730\u51bb\u7ed3\u3002"} +{"id": "5001232", "video_name": "64c81dcb-cc79-54f2-96c5-d9447ed753b3", "text": "2050\u5e74\u6b27\u6d32\u51a0\u519b\u8054\u8d5b\u51b3\u8d5b\u7684\u753b\u9762\u3002"} +{"id": "0005750", "video_name": "208c8cbe-c58a-5b59-9c59-ca144bfc343f", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u878d\u5316\uff0c\u620f\u5267\u6027\u7684\uff0c\u62bd\u8c61\u7684\u3002"} +{"id": "8003992", "video_name": "5e1fb988-ff37-541a-8850-517cc55d2dfc", "text": "\u4e00\u4e2a\u5f3a\u58ee\u7684\u7956\u9c81\u65cf\u6218\u58eb\u624b\u6301ihawu\u548casegai \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u4fe1\u606f\uff1a\u6c99\u5361"} +{"id": "1006851", "video_name": "7d2ae678-8dee-5fc0-a403-80c49ccd6737", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u4e2a\u96ea\u4eba\u4e00\u8d77\u770b\u65e5\u843d"} +{"id": "8002066", "video_name": "695f9475-d20c-5147-a21b-ee4c9496b1ee", "text": "\u770b\u5230\u4e00\u672c\u53c8\u5927\u53c8\u795e\u79d8\u7684\u4e66\uff0c\u6ee1\u662f\u5947\u602a\u7684\u7b26\u53f7\u3002\u8fd9\u672c\u4e66\u5438\u5f15\u4e86\u4ed6\u7684\u5174\u8da3\uff0c\u4ed6\u6253\u5f00\u4e86\u5b83\u3002"} +{"id": "3003836", "video_name": "021292d0-1262-53e0-bbb1-8c47f8b9a6a2", "text": "\u9f99\u964d\u843d\u5728\u5efa\u7b51\u7269\u9876\u90e8\u3002"} +{"id": "3004277", "video_name": "4a4b8f1f-0132-500e-a948-4adefc8e0616", "text": "\u4e00\u7247\u6709\u5f88\u591a\u6811\u7684\u7f8e\u4e3d\u573a\u5730\uff0c\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "1005103", "video_name": "5e101765-8404-5937-bc47-88b800d91ebb", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u7237\u7237\u5728\u5bb6\u91cc\u4e00\u8d77\u5403\u98df\u7269\uff0c\u4ee54K\u903c\u771f\u7684\u65b9\u5f0f\u5448\u73b0\u3002"} +{"id": "2007992", "video_name": "afe9a928-bbeb-55d0-98e4-24d9fcc2df10", "text": "\u9910\u5385\u91cc\u6709\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u7f8e\u6d32\u8c79\uff0c\u4eab\u7528\u7740\u610f\u5927\u5229\u9762\u6761\u548c\u7cbe\u81f4\u679c\u6c41\uff0c\u9910\u5385\u62e5\u6709\u7ecf\u5178"} +{"id": "3006303", "video_name": "5388ba31-d629-5694-a043-073c3c842bfb", "text": "\u5728Blender\u4e0a\u5236\u4f5c3D\u6a21\u578b\u975e\u5e38\u56f0\u96be\u3002"} +{"id": "7003896", "video_name": "6a0f62d1-469f-5428-91b2-25b8331e87e2", "text": "1940\u5e74\u4ee3\u7684\u89c6\u9891\uff0c\u4e00\u4e2a\u7626\u9ad8\u3001\u5fae\u7b11\u7684\u4ee4\u4eba\u4e0d\u5b89\u7684\u8001\u5987\u4eba\u3002"} +{"id": "2007882", "video_name": "815fadfc-581d-5a05-b3a8-410bb4ea107f", "text": "\u6674\u5929\u4e0b\u4e00\u5c42\u67b6\u9ad8\u811a\u7684\u6728\u5c4b9:16\u3002"} +{"id": "2007379", "video_name": "c56b663d-80e7-5a51-9053-6929e9775562", "text": "\u4e07\u5723\u8282\u53ef\u7231\u9ed1\u732b\uff0c\u8fea\u58eb\u5c3c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "6004251", "video_name": "b16ca52d-366c-5dc0-88fe-d9bb27f2893e", "text": "\u901a\u8fc7\u671b\u8fdc\u955c\u751f\u6210\u4e00\u6bb5\u6708\u7403\u7684\u89c6\u9891\u526a\u8f91\u3002"} +{"id": "2007242", "video_name": "b549e231-8587-5ddd-b848-7f829ca58dca", "text": "\u65e0\u4eba\u673a\u7f13\u6162\u5730\u5347\u8d77\uff0c\u8d8a\u8fc7\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\uff0c\u7a7f\u8fc7\u9ad8\u5927\u8302\u5bc6\u7684\u6811\u6728\u3002\u9633\u5149"} +{"id": "1006756", "video_name": "7bb3d45d-0b8e-529a-9627-dde9ce0310a5", "text": "\u4e00\u4e2a\u53e4\u6734\u7684\u610f\u5927\u5229\u4e61\u6751\u5c0f\u9547\uff0c\u7531\u65b0\u6d77\u8bda\u7ed8\u5236\u7684\u753b\u4f5c\u3002\u4fe1\u606f\uff1a\u795e\u79d8\u7537\u5b50\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4004366", "video_name": "91097734-1714-53f5-9ee6-bc3b7f19183b", "text": "\u4e00\u6bb52023\u5e74\u5f55\u5236\u7684\u6240\u6709\u5229\u96c5\u5f97\u666f\u70b9\u7684\u89c6\u9891\uff0c\u7528\u4e8eTikTok\u89c6\u9891\u3002"} +{"id": "7002483", "video_name": "7dc0a720-142a-5801-968a-e3d5966826e7", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a\u6a2a\u5e45\uff0c\u5176\u4e2d\u5305\u62ecSteam\u548cXbox\u6e38\u620f\u7684\u6536\u85cf\uff0c\u5305\u62ecGTA V\u3001\u8352\u91ce\u5927\u9556\u5ba22\u548c\u5176\u4ed6\u6d41\u884c\u7684\u6e38"} +{"id": "1003758", "video_name": "454c4d91-2e5a-5296-952e-476ccb60b041", "text": "\u8d22\u52a1\u3001\u80a1\u7968\u5e02\u573a\u3001\u56fe\u8868\u3002\u60c5\u611f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002645", "video_name": "66066ae3-d4c0-5dd7-bed3-fc39c930dac3", "text": "\u4e00\u5e45\u591c\u665a\u68ee\u6797\u7684\u573a\u666f"} +{"id": "2005624", "video_name": "923028a6-2b11-599d-84ce-efc7e910585c", "text": "\u4e00\u4e2a\u63a7\u5236\u673a\u5668\u4eba\u642c\u8fd0\u91cd\u7269\u7684\u4eba"} +{"id": "0003166", "video_name": "387b71b7-f280-5afb-a976-a2e62d289e2f", "text": "\u4e00\u90e8\u4ee5Pixar\u7535\u5f71\u98ce\u683c\u5236\u4f5c\u7684\u52a8\u753b\u7247\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u5973\u5b69\u5f00\u7740\u4e30\u7530CHR\u7684\u6545\u4e8b\u3002"} +{"id": "5001305", "video_name": "fa326701-ccf5-5e36-b935-a22249e966ef", "text": "\u8fdb\u5165\u963f\u683c\u62c9\u6cf0\u59ec\u9675\u7e41\u5fd9\u7684\u5165\u53e3\u3002\u4fe1\u606f\uff1aSADUBAS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4003603", "video_name": "73809d2d-3946-59fa-939d-760debf1dab1", "text": "\u9ed1\u5149\u6cb9\u6f06\uff0c\u7531\u8def\u6613\u65af\u00b7\u7f57\u7ea6\u3001\u7ef4\u6258\u91cc\u5965\u00b7\u9a6c\u6cf0\u5965\u00b7\u79d1\u5c14\u79d1\u65af\u3001\u5361\u7f57\u5c14\u00b7\u5df4\u514b\u3001"} +{"id": "2007841", "video_name": "661d0157-d585-5cc1-814f-25348513b076", "text": "\u7f51\u7edc\u84b8\u6c7d\u670b\u514b\u89d2\u8272\uff0c\u7eff\u5e55\u80cc\u666f\uff0c\u68a6\u5e7b\u822c\u7684\uff0c85\u6beb\u7c73\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c8K\uff0c\u9ad8\u6e05\u6670\uff0c\u5168"} +{"id": "1003924", "video_name": "486ed618-bbbe-5a3f-806e-5abb09733c7b", "text": "\u6234\u7740\u4e00\u6761\u56f4\u88d9\u7684\u6bd4\u57fa\u5c3c\u7f8e\u5973\uff0c\u9ed1\u8272\u957f\u53d1\u98d8\u9038\uff0c\u5750\u572848\u82f1\u5c3a\u5e06\u8239\u7684\u8239\u9996\uff0c\u7a7f\u8fc7\u592a\u5e73"} +{"id": "2003612", "video_name": "b2179f9e-eec8-532a-8d8e-bd9ca222d98b", "text": "\u97e9\u7eb3\u66fc\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u9ad8\u4e8e\u5b5f\u4e70\u57ce\uff0c\u5370\u5ea6\u795e\uff0c\u5df4\u6770\u5170\u5df4\u5229\uff0c\u9519\u7efc\u590d\u6742\u7684\u7ec6\u8282\uff0c\u7535"} +{"id": "4003176", "video_name": "7a7d6e7b-23db-5991-9005-740a4b160240", "text": "\u6c34\u6ce1\u5408\u5531\u56e2\u52a8\u753b\u63cf\u8ff0\uff1a\u6c34\u5728\u7a7a\u6c14\u6ce1\u7684\u534f\u540c\u4e0b\u8f6c\u5316\u4e3a\u795e\u5947\u5408\u5531\u7684\u80cc\u666f\u3002\u6bcf\u4e2a\u6c14\u6ce1\u53d1\u51fa\u5fae"} +{"id": "7003986", "video_name": "9920abe6-cd76-5054-a6d6-53f4fc5340f0", "text": "\u94a2\u94c1\u4fa0\uff0c\u5177\u6709\u9ad8\u6e05\u53cd\u5149\u3001\u53cd\u5c04\u8868\u9762\u548c\u5149\u7ebf\u8ffd\u8e2a\u7167\u660e\u7684\u7535\u5f71\u7ea7\u5199\u5b9e\u6548\u679c\u3002"} +{"id": "2005036", "video_name": "91595905-9053-5a87-a598-9ebbe8c15c4a", "text": "\u4ee5300\u82f1\u91cc/\u5c0f\u65f6\u7684\u901f\u5ea6\u4eceFPV\u65e0\u4eba\u673a\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "3003095", "video_name": "abead64f-8f8a-5696-ae48-b599bcc3dcf9", "text": "\u9a6c\u8033\u4ed6\u4e66\u7c4d\u5e7f\u544a\uff0c\u5e7f\u544a\u770b\u8d77\u6765\u5f88\u4e13\u4e1a\uff0c\u5149\u7ebf\u548c\u6444\u50cf\u673a\u7684\u79fb\u52a8\uff0c\u957f\u5ea6\u4e3a10\u79d2\u3002"} +{"id": "0004774", "video_name": "0efce133-c865-58d9-8a0e-6619650c1da4", "text": "\u897f\u5f17\u5409\u5c3c\u4e9a\u5dde\u7684\u4e24\u6816\u4eba\uff0c60\u5e74\u4ee3\u8f6f\u6838\u7f8e\u5b66\uff0c\u602a\u5f02\uff0c\u67d4\u548c\u7684\u8272\u5f69\uff0c\u6000\u65e7\u7684\u3002"} +{"id": "0006534", "video_name": "2e558646-1ac6-5689-b2aa-ec2343630ebb", "text": "\u5b66\u751f\u5728\u6444\u5f71\u5de5\u4f5c\u5ba4\u62cd\u6444\u6742\u5fd7\u7b80\u4ecb\u3002"} +{"id": "8001616", "video_name": "e94ab9e2-800c-5bcb-acce-3800f60f3b85", "text": "\u4eba\u7c7b\u88ab\u5173\u5728\u7b3c\u5b50\u91cc\uff0c\u800c\u7334\u5b50\u7ad9\u5728\u5916\u9762\u770b\u3002"} +{"id": "2006283", "video_name": "9ded3079-7d35-5d0b-9cc2-8090d28882bd", "text": "\u683c\u6797\u5947\u5728\u623f\u9876\u4e0a\u884c\u8d70\uff0c1967\u5e74\u7684\u6cfd\u5c3c\u65af\u5f69\u8272\u7535\u89c6\uff0c\u7279\u5199\u955c\u5934\uff0c\u8bbd\u523a\uff0c1899\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "8001680", "video_name": "46bd6e7b-548f-56cb-b5af-81cb83da1d78", "text": "\u56fe\u50cf\uff1a\u5b99\u65af\uff0c\u4f17\u795e\u4e4b\u738b\uff0c8K\uff0c\u903c\u771f\u800c\u751f\u52a8\u7684\u56fe\u50cf\u3002"} +{"id": "2005018", "video_name": "bb475b07-6a0d-50b2-a8e0-e47deb060c47", "text": "\u5236\u4f5c\u4e00\u4e2a\u300a\u82f1\u96c4\u8054\u76df\u300b\u51a0\u519bzed\u7684\u52a8\u753b\u3002"} +{"id": "0005689", "video_name": "1f7312e5-f19e-51dd-af05-f871adb99164", "text": "\u7a7f\u7740\u4e0a\u5199\u6709\u201carda\u201d\u5b57\u6837\u7684\u5f00\u53d1\u8005"} +{"id": "5001070", "video_name": "03c93ba0-f860-5610-9e75-c9137082c72d", "text": "\u4e00\u4e2a\u5b8f\u4f1f\u7684\u6218\u4e89\u573a\u9762\uff0c\u5c06\u519b\u4eec\u51b2\u950b\u5411\u524d\uff0c\u9a6c\u513f\u5954\u8dd1\uff0c\u7bad\u77e2\u5728\u5929\u7a7a\u4e2d\u98de\u821e\u3002"} +{"id": "6002950", "video_name": "c7498b56-af0e-58b2-88b9-27cc6260e39c", "text": "\u4e00\u9762\u6b27\u6d32\u56fd\u65d7\u5728\u767d\u5bab\u98d8\u626c\u3002"} +{"id": "3005567", "video_name": "ab590ed0-c765-5065-899e-5547c44e907f", "text": "\u91d1\u8272\u7684\u7f57\u9a6c\u51c9\u978b\uff0c\u80cc\u666f\u662f\u5929\u5802\u822c\u7684\u666f\u8c61\u3002"} +{"id": "6004337", "video_name": "0555481f-e54c-57ac-80b9-34fa4fae1969", "text": "\u5899\u4e0a\u6302\u7740\u4e00\u5e45\u63cf\u7ed8\u7ea2\u8272\u6cd5\u5f0f\u793c\u670d\u5973\u738b\u7684\u6cb9\u753b\uff0c\u5e76\u914d\u6709\u5899\u7eb8\u3002"} +{"id": "1003651", "video_name": "433e6314-fc92-5543-bbe7-e11bc608e0f3", "text": "\u4e00\u500b\u6709\u81c9\u7684\u6f22\u5821\u548c\u4e00\u500b\u6709\u81c9\u7684\u71b1\u72d7\u5750\u5728\u71c3\u71d2\u7684\u70e4\u67b6\u4e0a\u4e92\u76f8\u4ea4\u8ac7\u3002"} +{"id": "3005184", "video_name": "d2793e30-cf87-5114-971b-406909cb97f8", "text": "\u4e00\u4e2a\u5e7f\u9614\u7684\u4e09\u7ef4\u5b87\u5b99\u661f\u4e91\u6e32\u67d3\uff0c\u662f\u592a\u7a7a\u4e2d\u7684\u6c14\u4f53\u548c\u5c18\u57c3\u4e91\uff0c\u5b83\u662f\u6052\u661f\u548c\u884c\u661f\u7684\u8bde\u751f"} +{"id": "8002350", "video_name": "f8206c1d-90e2-53c6-9beb-2ff26bba06c3", "text": "\u5e26\u7fc5\u8180\u7684\u6c7d\u8f66\u6b63\u5728\u963f\u585e\u62dc\u7586\u9996\u90fd\u98de\u884c\u3002"} +{"id": "4002268", "video_name": "a0bdcff0-c4d8-54d8-9bf1-df726d8162e8", "text": "\u4e00\u4f4d\u6709\u7ea2\u8272\u5934\u53d1\u3001\u773c\u775b\u4e0a\u6709\u75a4\u75d5\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u5411\u5916\u6254\u4e86\u4e00\u6761\u9c7c\u7838\u4e86\u522b\u4eba\u3002"} +{"id": "3005601", "video_name": "0db151d0-58e8-5f9a-a2e3-99b5d2beec16", "text": "\u4f01\u9e45\u4e16\u754c\u5171\u548c\u56fd\u7684\u53c2\u8bae\u9662\u91cc\uff0c\u4f01\u9e45\u4eec\u6b63\u5728\u4e89\u8bba\u3002"} +{"id": "3005395", "video_name": "4667bad6-1477-557f-bc22-b36459f49927", "text": "\u4e00\u4e2a\u9b3c\u9b42\u8eb2\u5728\u9634\u5f71\u4e2d\uff0c\u9ed1\u6697\u7684\u529e\u516c\u5ba4\uff0c4K\u3002"} +{"id": "1006574", "video_name": "786edf8e-41b6-5186-8f1a-296b78edfbec", "text": "\u4e00\u53ea\u871c\u8702\u964d\u843d\u5728\u4e00\u6735\u7f8e\u4e3d\u7684\u73ab\u7470\u4e0a\uff0c\u76f8\u673a\u7f29\u653e\u3002"} +{"id": "1004808", "video_name": "58ded41d-dfae-53a9-a5dd-ebcb4a6c41a8", "text": "\u670d\u52a1\u5668\u6258\u7ba1\u4e2d\u96d5\u523b\u7684\u6807\u5fd7\uff1aMenticore\u9644\u4ef6\u3002"} +{"id": "1003557", "video_name": "41925fa9-4043-5c7e-82a3-94e09279976f", "text": "\u5c4f\u5e55\u88ab\u9ed1\u6697\u7b3c\u7f69\uff0c\u7199\u6518\u7684\u57ce\u5e02\u58f0\u97f3\u8dc3\u7136\u800c\u8d77\uff0c\u9713\u8679\u706f\u95ea\u70c1\uff0c\u6c7d\u8f66\u5587\u53ed\u5f62\u6210"} +{"id": "1004870", "video_name": "59f7966b-199a-53f0-bc51-7eb5a72033c0", "text": "\u6ce2\u6bd4\u548c10\u540d\u98ce\u66b4\u519b\u58eb\u56f4\u7740\u8fbe\u65af\u7ef4\u8fbe\u3002"} +{"id": "1003244", "video_name": "3bc0a52c-0419-51b5-b73a-08800caf13bb", "text": "Invoker\u5728Dota 2\u4e2d\u4f7f\u7528Rfrshr\u3001Aganim\u548c\u4e24\u4e2aMitiors\u8fdb\u884c\u6280\u80fd\u91ca\u653e\u3002"} +{"id": "7004391", "video_name": "fbcda91e-a673-55c0-9b07-cfc0fa731a2f", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5f00\u8f66\uff0c\u4ece\u5929\u7a7a\u4e2d\u98d8\u843d\u7684\u4e91\u6735\u662f\u7ea2\u8272\u7684\uff0c\u800c\u4e14\u4e0b\u7740\u8840\u96e8\u3002"} +{"id": "1006090", "video_name": "6fa39ee3-faed-5dbe-93b7-82c719eccde1", "text": "\u4e24\u4e2a\u68d2\u4eba\u6253\u67b6\u7684\u89c6\u9891"} +{"id": "2007257", "video_name": "83c5cf0b-7843-53c5-bec7-34564030bda5", "text": "\u4e00\u4e2a\u5c0f\u53ef\u7231\u7684\u72d7\u72d7\u5728\u5bb6\u91cc\u5543\u9aa8\u5934\u3002"} +{"id": "2006788", "video_name": "7d120dcd-0510-506f-867e-4bfc9008a886", "text": "\u9752\u94dc\u72ee\u5b50\u7528\u624b\u73af\u7ed5\u7740\u4e00\u4e2a\u5fae\u578b\u57ce\u5e02\u3002"} +{"id": "2004257", "video_name": "9923d1de-5cc1-5546-bd1c-e728842fc6aa", "text": "\u672a\u6765\u57ce\u5e02\u4e2d\uff0c\u6469\u5929\u5927\u697c\u88ab\u4e91\u5c42\u5305\u56f4\uff0c\u4e91\u5c42\u5728\u79fb\u52a8\uff0c\u91c7\u7528\u4f4e\u89d2\u5ea6\u62cd\u6444\uff0c\u79d1\u5e7b\u98ce\u683c\u3002"} +{"id": "0003748", "video_name": "42b0be2c-9e4a-521a-8bb6-fca93a9a2290", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5370\u5ea6\u5973\u5b69\u75c5\u5012\u8eba\u5728\u5e8a\u4e0a\uff0c\u5979\u7684\u5e74\u8fc8\u6bcd\u4eb2\u5750\u5728\u5979\u65c1\u8fb9\u7167\u987e\u5979"} +{"id": "3003680", "video_name": "902ce1da-62e5-5110-8271-2a012f42a2b8", "text": "Source sentence: LADY GAGA\u548c\u5c0f\u91ce\u6d0b\u5b50\u5728\u821e\u53f0\u4e0a\u5c16\u53eb"} +{"id": "0004219", "video_name": "05466e9c-c2b9-56cb-931c-1d404bc338b9", "text": "\u5b9d\u5b9d\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u9633\u5149\u7167\u8000\u3002"} +{"id": "4002430", "video_name": "d7098495-dbb6-5465-a7d2-9114698887bd", "text": "\u53d1\u5149\u7684\u7cbe\u7075\u822c\u7684\u751f\u7269\u5728\u661f\u5149\u7480\u74a8\u7684\u94f6\u6cb3\u4e2d\u6b22\u5feb\u5730\u8df3\u821e\uff0c\u7559\u4e0b\u661f\u5c18\u7684\u75d5"} +{"id": "4002131", "video_name": "7be617b3-eddd-538e-a37f-afa41ef831e8", "text": "\u4e24\u8fb9\u6709\u8d2d\u7269\u4e2d\u5fc3\uff0c\u4e2d\u95f4\u4eba\u6d41\u5feb\u901f\u6d41\u52a8\u3002"} +{"id": "1005309", "video_name": "618353c1-fb3e-50c0-9964-a6defa5203a4", "text": "\u878d\u5316\u7684\u8292\u679c\u679c\u5b9e\u3002\u62bd\u8c61\u7684\u56fe\u6848\u3002\u5947\u602a\u7684\u3002\u8ff7\u5e7b\u7684\u3002"} +{"id": "1005975", "video_name": "6dcf2ea0-70f6-5d7d-a771-7cd31f423c5f", "text": "\u4e00\u4e2a\u9a6c\u62c9\u5730\u4eba\u5728\u7ebd\u7ea6\u7528\u8db3\u7403\u6253\u677f\u7403\u3002"} +{"id": "8001119", "video_name": "df71256b-534f-5dda-bf7b-49aa8fe60f1e", "text": "\u9713\u8679\u706f\u5149\u6e10\u6e10\u6d88\u9000\u5e76\u73af\u7ed5\u6ed1\u52a8\u3002"} +{"id": "0003084", "video_name": "36b805b9-15b2-5fd2-ae78-57c29e574c1d", "text": "\u4e00\u4e2a\u4ee5F1\u8d5b\u8f66\u4e3a\u4e3b\u9898\u7684\u6fc0\u52b1\u89c6\u9891"} +{"id": "3006652", "video_name": "7148bd71-c5aa-5e2e-99c4-d7da7c52c4e8", "text": "\u4f0a\u65af\u5170\u6559\u5973\u5b69\u7684\u9762\u90e8\u8868\u60c5\u975e\u5e38\u60ca\u8bb6\u3002 \n\nSource sentence: I need to buy some groceries for dinner tonight. \n\n\u6211\u9700\u8981\u4e3a\u4eca\u665a\u7684\u665a\u9910"} +{"id": "3006031", "video_name": "52a76891-7e58-56bf-ac6a-8917219a12ca", "text": "\u4ed6\u5728\u5bab\u6bbf\u91cc\u542c\u8bf4\u4e86\u795e\u5947\u7684\u91d1\u9e45\u3002"} +{"id": "5001363", "video_name": "14168699-4c11-50a5-9917-7381ca6d7f87", "text": "\u4e00\u7247\u98d8\u6e3a\u795e\u5947\u7684\u571f\u5730\uff0c\u6709\u95ea\u8000\u7684\u5c0f\u6eaa\uff0c\u9b54\u5e7b\u7684\u6811\u6728\u548c\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u3002\u53d1\u51fa"} +{"id": "7002522", "video_name": "89996294-a06b-5b3a-a5cf-b26ac0108e0a", "text": "\u53e4\u8001\u7684\u65f6\u949f\uff0c\u89c6\u7ebf\u63a5\u8fd1\u65f6\u949f\uff0c\u5f53\u5b83\u9760\u8fd1\u65f6\uff0c\u65f6\u949f\u6572\u54cd\u5348\u591c\u3002"} +{"id": "2005894", "video_name": "0da21a6e-b60e-5e02-82a5-92c33713ff1a", "text": "\u623f\u95f4\u91cc\u6f02\u6d6e\u7740\u7684\u7070\u5c18\uff0c\u653e\u5927\u4e86\uff0c\u66f4\u903c\u771f\uff0c4k\u3002"} +{"id": "7004077", "video_name": "c92a3d78-44e1-528f-a133-3f20c3bb17ae", "text": "\u4e00\u5f20\u8718\u86db\u4fa0\u7ad9\u5728\u5efa\u7b51\u7269\u9876\u90e8\u773a\u671b\u7ebd\u7ea6\u5e02\u7684\u9ad8\u8d28\u91cf\u5f71\u50cf\u548c\u9634\u5f71\u3002"} +{"id": "4004251", "video_name": "febb839d-72cc-520a-a8c5-3e9defad0ee1", "text": "\u5343\u773c\u7ae0\u9c7c\u5728\u98ce\u66b4\u4e2d\u6467\u6bc1\u4e00\u8258\u8239\u3002"} +{"id": "2006967", "video_name": "7361e5d7-033d-543b-a1d1-dcb898407765", "text": "\u4e00\u5e45\u5723\u8bde\u573a\u666f\u53ef\u4ee5\u662f\u96ea\u82b1\u7eb7\u98de\u7684\u51ac\u5b63\u666f\u8c61\uff0c\u8fdc\u5904\u6302\u7740\u88c5\u9970\u7740\u706f\u548c\u7403\u7684\u5723\u8bde"} +{"id": "0004812", "video_name": "0f8bc46c-9d2c-583f-8657-ad95d032864f", "text": "2023\u5e74\uff0c\u4e00\u4f4d\u5f8b\u5e08\u5728\u79d1\u6280\u5148\u8fdb\u7684\u529e\u516c\u5ba4\u91cc\uff0c\u4f7f\u7528\u7740\u591a\u53f0\u663e\u793a\u5668\u7684\u7535\u8111\u5de5\u4f5c\u7740\u3002\u4ed6\u6682\u505c\u4e86\u4e00\u4e0b\u89c6\u9891\u901a\u8bdd"} +{"id": "4003841", "video_name": "795949b1-e21c-5bf4-8816-ed0efa35b932", "text": "\u4e00\u5bb6\u4eba\u6b63\u5728\u7ecf\u5386\u751f\u6d3b\u4e2d\u7684\u975e\u5e38\u56f0\u96be\u548c\u8270\u82e6\u3002"} +{"id": "0003556", "video_name": "3f8a71ab-72e1-5cf2-973f-602b9689040e", "text": "\u4f7f\u7528\u73af\u5883\u58f0\u97f3\u6765\u521b\u9020\u8eab\u4e34\u5176\u5883\u7684\u6c1b\u56f4\uff0c\u8ba9\u89c2\u4f17\u6c89\u6d78\u5728\u89d2\u8272\u4eb2\u5bc6\u7684\u73af\u5883\u4e4b\u4e2d\u3002"} +{"id": "1005400", "video_name": "633a2bf3-13a9-58de-916c-bd06beaca8ef", "text": "\u8c37\u6b4c\u673a\u5668\u4eba\u5fae\u7b11\u5e76\u53d1\u73b0\u9876\u7ea7\u7f51\u7ad9\u3002"} +{"id": "1006387", "video_name": "74d1e2c1-30d1-59cf-bb9a-971628a90a60", "text": "\u5206\u4eab\u4f60\u6700\u559c\u6b22\u7684\u5728\u96e8\u4e2d\u51fa\u73b0\u6cb3\u6d41\u7684\u7535\u5f71\u573a\u666f\uff0c\u8ba8\u8bba\u5b83\u5bf9\u89c6\u89c9\u548c\u60c5\u611f\u7684\u5f71\u54cd\u3002\u54ea\u4e9b\u5143\u7d20\u4f7f\u5176\u771f\u6b63\u5177"} +{"id": "8001334", "video_name": "e400cf4d-dde4-509f-b280-2d3e7eceaa65", "text": "\u4eba\u62ff\u8d77\u4e00\u5c01\u4fe1\uff0c\u7d27\u7d27\u5730\u63e1\u5728\u5fc3\u91cc\u3002"} +{"id": "3005570", "video_name": "d9898534-bcef-5e80-954a-6571a62aa54e", "text": "\u9053\u5fb7\u9ed1\u5ba2\u5750\u5728\u7535\u8111\u524d\u9762\uff0c\u7a7f\u7740\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u9ed1\u5e3d\u5b50\uff0c\u6df1\u601d\u719f\u8651\u3002"} +{"id": "2004753", "video_name": "1de2ee58-f9f2-5b83-bab5-7b2b4c80baeb", "text": "\u65e5\u672c\u5730\u94c1\uff0c\u9707\u64bc\u7684\u6e32\u67d3\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c8K\uff0c\u5efa\u7b51\u6770\u4f5c\u3002"} +{"id": "7003013", "video_name": "5f6a6364-3ac1-5f1d-956c-decf710397db", "text": "\u4e00\u4e2a\u5341\u51e0\u5c81\u7684\u7537\u5b69\u5728\u57ce\u9547\u8857\u9053\u4e0a\u6f2b\u6e38\uff0c\u5bfb\u627e\u4e00\u4e2a\u5973\u5b69\u3001\u65e5\u843d\u3001\u6d6a\u6f2b\u7684\u573a\u666f\u3001\u6709\u98ce\u3001\u7537\u5b69\u7a7f"} +{"id": "7002623", "video_name": "f75e83b7-5d84-5cc7-81bd-2c90538c4438", "text": "\u4e00\u4f4d\u68d5\u8272\u5934\u53d1\u68d5\u8272\u773c\u775b\u7a7f\u7740\u897f\u88c5\u7684\u5973\u9762\u8bd5\u5b98\uff0c\u8fdb\u5165\u4e00\u4e2a\u88c5\u7f6e\u6709\u6781\u7b80\u5bb6\u5177\u7684\u6e29\u99a8\u8212\u9002\u7684\u5ba2"} +{"id": "3006235", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "\u5728\u4e00\u4e2a\u88ab\u7eff\u8272\u7530\u91ce\u5305\u56f4\u7684\u5b81\u9759\u6751\u5e84\u91cc\uff0c\u4e24\u4e2a\u670b\u53cb\uff0c\u4e00\u4e2a\u52c7\u6562\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u806a\u660e\u7684\u5973\u5b69\uff0c"} +{"id": "3005381", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "\u5c71\u4e0a\u7684\u51b7\u6749\u6797"} +{"id": "6003741", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e4b\u95f4\uff0c\u6709\u4e00\u6761\u6df1\u7a84\u7684\u5ce1\u8c37\uff0c\u7528\u7535\u5f71\u822c\u7684\u9e1f\u77b0\u955c\u5934\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "3003851", "video_name": "13120b68-2623-5b76-8718-c03b1ae44d46", "text": "\u5982\u679cJetix\u548c\u5361\u901a\u7f51\u7edc\u5408\u5e76"} +{"id": "0003223", "video_name": "3991e589-b541-54e2-985e-709f6a1c2994", "text": "\u4e54\u00b7\u62dc\u767b\u4e0e\u6b79\u5f92\u4e00\u8d77\u9a91\u9a6c\u3002"} +{"id": "2003472", "video_name": "5aaa4e52-81db-5831-94a1-c1665e03d61e", "text": "\u7537\u5b69\u5728\u6444\u50cf\u5934\u524d\u4ece\u53f3\u5411\u5de6\u8bf4\u8bdd\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7004193", "video_name": "a9b14fdd-771d-5c67-89f8-6cc6cbc1e93e", "text": "\u4ece\u4e0a\u65b9\u770b\u4e0b\u53bb\uff0c\u6cbf\u8def\u8f66\u8f86\u884c\u9a76\uff0c\u4eba\u4eec\u5306\u5306\u8d70\u8fc7\u7684\u6cb3\u5185\u3002"} +{"id": "8002651", "video_name": "a3efc7a9-8bc8-5c18-aeb5-f6390488c797", "text": "\u963f\u5357\u5fb7\u5411\u6751\u6c11\u89e3\u91ca\u4e86\u7eb3\u62c9\u897f\u739b\u66fc\u9640\u7f57\u7684\u542b\u4e49\u3002"} +{"id": "2007470", "video_name": "0423417e-8a77-5e45-ace1-8743488905c7", "text": "\u6211\u8d70\u5728\u4e00\u6761\u5b64\u72ec\u7684\u8def\u4e0a\uff0c\u8fd9\u662f\u6211\u552f\u4e00\u4e86\u89e3\u7684\u8def\u3002"} +{"id": "2005075", "video_name": "6381f6e4-485f-5104-a39c-0b3bdd285c45", "text": "\u4e00\u4e2a\u7537\u5b50\u5728\u7c7b\u4f3c\u676f\u5934\u76842D\u5c04\u51fb\u6e38\u620f\u573a\u666f\u4e2d\uff0c\u4ee5\u72c2\u6b22\u6d3e\u5bf9\u7684\u98ce\u683c\u884c\u8d70\uff0c\u573a\u666f\u5341\u5206\u8272\u5f69\u7f24"} +{"id": "5001011", "video_name": "0be6d47e-4c9f-5e3c-8459-a6d56bf38e6e", "text": "\u52a8\u6f2b\u7537\u5b50\u6301\u5251\u5e76\u62e5\u6709\u706b\u529b\u3002"} +{"id": "1006442", "video_name": "75ed5823-d8fa-5aad-8887-04c79972764f", "text": "\u8a79\u59c6\u65af\u7684\u542f\u793a\u3002\n\u8a79\u59c6\u65af\u9762\u5e26\u4e25\u8083\u8868\u60c5\uff0c\u5373\u5c06\u63ed\u793a\u91cd\u8981\u7684\u4e8b\u60c5\u3002\u6444\u50cf\u673a\u805a\u7126\u5728\u4ed6\u7684"} +{"id": "6004058", "video_name": "e780eca9-0a80-5184-aff8-552c523d824c", "text": "\u4e00\u6735\u8611\u83c7\u957f\u5728\u623f\u5b50\u7684\u5c4b\u9876\u4e0a\u3002"} +{"id": "4002381", "video_name": "3879eb02-ed54-5b7c-ba33-cdecb818cc09", "text": "\u4e13\u8f91\u5c01\u9762\u5e7f\u544a\u5728Riverport\u9152\u9986\u8131\u8863\u821e\u4ff1\u4e50\u90e8\u5ba3\u4f20Adais Dall Metastar\u3002"} +{"id": "2007006", "video_name": "367fa20d-16f6-5f24-b473-772e252acd78", "text": "\u5927\u8c61\u88ab\u5c55\u793a\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0005431", "video_name": "1ab4ba5c-9703-50f5-a62f-768e7f5653ed", "text": "\u6c34\u52a8\u4e86\uff0c\u70df\u88ab\u6405\u52a8\u4e86\u3002"} +{"id": "2005660", "video_name": "efa18613-d084-5ca3-8c51-d32c32182140", "text": "\u5168\u666f\u6b23\u8d4f\u745e\u58eb\u65e5\u5185\u74e6\u548c\u65e5\u5185\u74e6\u6e56\uff0c\u5e26\u6709\u4ea4\u53c9\u7ebf\u523b\u753b\u3002 \n\nSource sentence: The new policy will affect all employees, regardless of"} +{"id": "6004157", "video_name": "4a05616f-f84a-5b2e-adb1-47db18989bf7", "text": "\u54c6\u5566A\u68a6\u53d8\u8eab\u6210\u5de8\u5927\u673a\u5668\u4eba\u3002"} +{"id": "6003711", "video_name": "004f293e-cdfa-5e69-b40e-60cb9d61bc5b", "text": "\u5f53\u5b83\u6251\u5411\u795e\u79d8\u7684\u7fbd\u6bdb\u65f6\uff0c\u5b83\u7684\u76ae\u6bdb\u5237\u8fc7\u5145\u6ee1\u6d3b\u529b\u7684\u82b1\u74e3\uff0c\u521b\u9020\u51fa\u4e00\u5e45\u5982\u753b\u7684"} +{"id": "7004389", "video_name": "9e98f5a2-4f37-57b4-bfb0-fd5624850cd1", "text": "\u4e00\u5934\u6b7b\u4ea1\u7684\u5e72\u762a\u725b\u5728\u591c\u96fe\u4e2d\u3002"} +{"id": "8003398", "video_name": "09d6899b-0a49-5499-be73-4c18834c72c4", "text": "\u732b\u7761\u89c9\u65f6\u95ed\u4e0a\u773c\u775b\uff0c\u9192\u7740\u65f6\u7741\u5f00\u773c\u775b\u3002"} +{"id": "3004464", "video_name": "b546d938-6d0f-5b1e-ae75-91b55f0bc63c", "text": "\u5e7b\u60f3\uff0c\u53e4\u8001\u7684\u57ce\u9547\uff0c\u9152\u9986\uff0c\u8857\u9053\uff0c\u6df1\u7d2b\u8272\uff0c\u795e\u79d8\u4e3b\u4e49\uff0c\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u52a8\u753b\uff0c\u666f\u89c2\uff0c"} +{"id": "1004235", "video_name": "4e6e17aa-dce1-5869-a498-2c9a0d651537", "text": "\u4e00\u4e2a\u8001\u4eba\u6b63\u5728\u6563\u6b65\u953b\u70bc\uff0c\u4e00\u4e2a\u5c0f\u9ec4\u9e21\u8def\u8fc7\uff0c\u5c0f\u9e21\u5411\u8001\u4eba\u97a0\u8eac\uff0c\u8001\u4eba\u5f00\u5fc3\u5730\u70b9\u5934\u56de\u5e94\u5e76\u5411\u5c0f"} +{"id": "6004043", "video_name": "1f618fc2-8533-57f7-8126-5bef6d01be51", "text": "\u773c\u775b\u8f6c\u79fb\uff0c\u54a7\u7740\u5634\u7b11\uff0c\u5439\u4e86\u4e2a\u98de\u543b\u3002"} +{"id": "0006182", "video_name": "27c9ae7f-cb9d-539a-bb8a-bf91c895c664", "text": "\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\uff0c\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\u5728\u4e92\u76f8\u4e89\u5435\u3002"} +{"id": "7002802", "video_name": "4cccb557-83b6-5427-9fd5-bb2c25389511", "text": "\u5973\u6027\u9b45\u9b54\u7684\u8096\u50cf\u753b\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u95ea\u8000\u7425\u73c0\u8272\u773c\u775b\u548c\u89d2\uff0cDND\uff0c\u5e7b\u60f3\uff0c\u9519\u7efc\u590d\u6742\uff0c"} +{"id": "4004752", "video_name": "2f91192c-b054-5e9c-b5b2-bebc4acde147", "text": "\u5065\u8eab\u623f\u53ef\u4ee5\u6539\u5584\u5065\u5eb7\uff0c\u62fc\u623f\u95f4\uff0c16:9\u3002"} +{"id": "0004600", "video_name": "0bb71bc2-a802-5e14-98f0-67b9f7787d33", "text": "\u4e00\u4e2a\u51b2\u6d6a\u8005\u5728\u590f\u5a01\u5937\u65e5\u843d\u65f6\u9a91\u7740\u5de8\u6d6a\uff0c\u4fef\u77b0\u666f\u8272\u3002"} +{"id": "4004024", "video_name": "33a8911a-186e-5056-8c08-943b1ec60abf", "text": "\u5728\u7ebd\u7ea6\u5e02\u5f00\u51fa\u79df\u8f66\uff0c\u884c\u9a76\u3002"} +{"id": "4004505", "video_name": "2082db58-c464-5de6-b294-a09c5d59e282", "text": "\u4e00\u4e2a\u5c0f\u73a9\u5177\uff0c\u50cf\u662f\u56db\u53ea\u8682\u8681\u722c\u5728\u540a\u706f\u4e0a\u7684\u73a9\u5177\uff0c\u975e\u5e38\u5f00\u5fc3\u548c\u5174\u594b\u3002"} +{"id": "6003718", "video_name": "9a1c41d8-fa30-5fb3-9e29-26d091b894d2", "text": "\u4e00\u4e2a\u6709\u5947\u5e7b\u5efa\u7b51\u7684\u795e\u5947\u738b\u56fd\u3002"} +{"id": "0004667", "video_name": "0cf86a02-5365-5f2d-96e1-be6e8a0585c5", "text": "Y\u5973\u58eb\u6b63\u5728\u4e3a\u5916\u661f\u4eba\u505a\u996d\u3002"} +{"id": "2005287", "video_name": "2afa5ce5-ee35-56c2-b817-86f2da8717bb", "text": "\u57ce\u9547\u4f20\u58f0\u7b52\u5ba3\u5e03\u7687\u5bb6\u821e\u4f1a\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u5174\u594b\u611f\u30023D\u52a8\u753b\uff0c4K\u5206\u8fa8\u7387\uff0c\u7535\u5f71\u5192\u9669\uff0c"} +{"id": "2007843", "video_name": "d51f0d61-7d25-525e-87f0-937ffc6351d6", "text": "\u5728DIY\u7684\u9632\u6bd2\u9762\u5177\u4e0b\uff0c\u861a\u82d4\u730e\u4eba\u4eec\u7a7f\u8fc7\u9ed1\u6697\u7684\u68ee\u6797\uff0c\u8ff7\u8499\u96fe\u6c14\u4e2d\u4eff\u4f5b\u5e7d"} +{"id": "3006328", "video_name": "ea57f003-f40d-5387-aea0-dfa715fbca47", "text": "\u5c71\u4e0a\u7684\u6e05\u771f\u5bfa\n\u76f8\u673a\u62cd\u6444\u4e86\u4e00\u4e2a\u5b81\u9759\u7684\u753b\u9762\uff0c\u4e00\u4e2a\u5c0f\u6e05\u771f\u5bfa\u88ab\u5d4c\u5728\u5dcd\u5ce8\u7684\u5c71\u8109\u4e4b\u4e2d\uff0c\u5468"} +{"id": "7004277", "video_name": "5ca40ce4-35ac-5273-87d5-da4a81e13a20", "text": "\u5728\u5317\u658e\u98a8\u683c\u4e2d\uff0c\u4e00\u68f5\u590f\u5929\u7684\u6811\u6ca1\u6709\u53f6\u5b50\u3002"} +{"id": "7003787", "video_name": "adb5f1eb-bd09-56c4-97e8-33aee5db625b", "text": "Naga Siren\u5728Dota 2\u4e2d\uff0c\u50cf\u8bf4\u5531\u6b4c\u624b\u4e00\u6837\u9003\u79bb\u654c\u4eba\u3002 \n\nSource sentence: The Great Wall is one of the Seven Wonders of the Ancient World. \n\u957f\u57ce"} +{"id": "1006789", "video_name": "7c63e6ac-b31f-5a11-a146-83df12e6e012", "text": "\u7ebd\u7ea6\u5730\u94c1\u7684CCTV\u753b\u9762\u4e2d\u770b\u5230\u4e86\u4e00\u4e2a\u9b3c\u3002"} +{"id": "7002050", "video_name": "5f294731-7c73-54c6-a289-1cb7fb7be4d3", "text": "\u62c9\u514b\u4ec0\u66fc\u5145\u6ee1\u656c\u610f\u5730\u63a5\u53d7\u4e86\u8fd9\u4e2a\u4efb\u52a1\uff0c\u5e76\u51fb\u8d25\u4e86\u8bb8\u591a\u6076\u9b54\uff0c\u56e0\u6b64\u7ef4\u4ec0\u74e6\u7c73\u7279\u62c9\u5723\u4eba"} +{"id": "6003411", "video_name": "d9be6986-b2eb-58ad-acff-2adc27384a6e", "text": "\u7267\u5e08\u4f7f\u7528\u5176\u50cf\u300a\u9b54\u517d\u4e16\u754c\u300b\u4e00\u6837\u7684\u6cbb\u6108\u80fd\u529b\u3002"} +{"id": "5001424", "video_name": "a54c37fb-2d81-50a6-a595-e27c06eb2d96", "text": "\u4e66\u7c4d\u3001\u5927\u5b66\u3001\u5496\u5561\u3001\u5973\u5b69\u3002\u4fe1\u606f\uff1aPaula Mangas\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007568", "video_name": "daea8d3c-fac4-5c47-989d-cdd557bff14f", "text": "\u8bf4\u8bdd\u7684\u7537\u4eba\u7728\u773c\u775b (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002564", "video_name": "81bf9f28-2962-5a95-bd34-8e01015c5122", "text": "\u751f\u547d\uff0c\u4e00\u9996\u5728\u6c89\u9ed8\u4e2d\u6f14\u5531\u7684\u8d85\u73b0\u5b9e\u5341\u56db\u884c\u8bd7\uff0c\u6982\u62ec\u4e86\u5fae\u4e0d\u8db3\u9053\u7684\u58ee\u4e3d\u3002\u5728\u8fd9\u4e2a\u6df7\u6c8c\u7684\u5927"} +{"id": "0004589", "video_name": "0b9e8598-a61b-5052-b34b-660c4b313c20", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4f7f\u7528\u4fbf\u643a\u5f0f\u7535\u6e90\u91ce\u8425\u7684\u89c6\u9891\u3002"} +{"id": "6004292", "video_name": "464279a7-4404-517e-8760-e2e30dc8077d", "text": "\u5728\u533b\u9662\u91cc\u7b49\u5f85\u8f93\u8840\u7684\u5b69\u5b50\u3002"} +{"id": "2005716", "video_name": "9fcf3ea9-0fa4-5add-bca9-f0e7178f39f7", "text": "2D\u52a8\u753b\u98ce\u683c\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u5728\u68ee\u6797\u91cc\u6563\u6b65\uff0c\u5979\u5f88\u5f00\u5fc3\u3002"} +{"id": "8001027", "video_name": "242fffb5-88a8-5849-a08c-efc8dab84d98", "text": "\u4e00\u4e2a\u827a\u5993\u5750\u5728\u68ee\u6797\u5730\u9762\u4e0a\u770b\u4e66\uff0c\u8349\u5730\u4e0a\u6709\u5927\u6708\u4eae\u4f5c\u80cc\u666f\uff0c\u8d85\u9ad8\u6e05\u6e32\u67d3\uff0c\u8d85\u5199\u5b9e\u7684\u6570\u5b57\u827a\u672f"} +{"id": "0005056", "video_name": "13db0004-daae-5383-8405-5faf0be3b31b", "text": "\u8389\u8389\u4ece\u8c37\u4ed3\u91cc\u62ff\u7740\u4e00\u6876\u65b0\u9c9c\u725b\u5976\uff0c\u56f4\u88d9\u4e0a\u70b9\u7f00\u7740\u91ce\u82b1\u3002"} +{"id": "1005971", "video_name": "6daa5127-ae10-53e8-aafc-183861f72766", "text": "\u4e00\u4e2a\u4eba\u53d8\u6210\u4e86\u4e00\u9053\u95ea\u5149\u3002 \n\nSource sentence: Love is not a feeling, it is an action. \n\n\u7231\u4e0d\u662f\u4e00\u79cd\u611f\u89c9\uff0c\u800c\u662f\u4e00\u79cd\u884c\u52a8\u3002"} +{"id": "2005906", "video_name": "e5b6b020-5056-5c75-b8ea-e8711dd7035f", "text": "\u4e00\u4e2a\u7b49\u8ddd\u52a8\u753b\u7684\u6781\u7b80\u4e3b\u4e49\u4e34\u754c\u7a7a\u95f4\uff0c\u4e00\u8f86\u8c6a\u534e\u8f7f\u8f66\u8fdb\u5165\u8f66\u5e93\uff0c\u9ed1\u767d\u8272\uff0c\u7f13\u6162\u79fb\u52a8\u7684\u6444\u50cf\u673a\u3002"} +{"id": "1005851", "video_name": "6b92b819-3808-5e15-9811-db4319b4a619", "text": "\u4f0a\u62c9\u514b\u65b0\u95fb\u8282\u76ee\u5f00\u573a\u5e8f\u5217"} +{"id": "7004984", "video_name": "4ff73819-b60b-535b-af2c-f620871f00c5", "text": "\u529f\u592b\u718a\u732b\uff0c\u6ce2\uff0c\u718a\u732b\u4e0e\u8001\u864e\u640f\u6597\uff0c\u52a8\u753b\uff0c\u52a8\u753b\u7535\u5f71\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3002"} +{"id": "0004544", "video_name": "0af83140-ea30-506b-b7c1-796c9652d2e8", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u957f\u888d\u7684\u7537\u4eba\u5728\u591c\u665a\u7684\u6811\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0005453", "video_name": "1b03a593-aa9d-5d54-b4ea-ae1b357d02fc", "text": "\u62ab\u8428\u76d2\u5b50\u5806\u5728\u4e00\u4e2a\u5e26\u82b1\u8fb9\u7684\u684c\u5b50\u4e0a\uff0c\u4e00\u4e2a\u5927\u578b\u6d3e\u5bf9\uff0c8k\u771f\u5b9e\uff0c\u76f8\u673a\u65cb\u8f6c90\u5ea6\u3002\u4fe1\u606f\uff1apizzaDAO\uff08\u5b57\u4f53"} +{"id": "4003379", "video_name": "5cc48c0c-abcd-5e43-82c9-1770611c69a2", "text": "\u4e00\u5e45\u6768\u5148\u751f\u7ec6\u8282\u63cf\u7ed8\u7684\uff0c\u6d77\u6d0b\u65e5\u843d\u4e2d\u4e00\u8258\u5e06\u8239\u7684\u753b\u4f5c\u3002"} +{"id": "3003944", "video_name": "17d9756b-795b-55bc-96e8-e1eff330aecb", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u5728\u5c71\u95f4\u884c\u8d70\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5c71\u6797\u73af\u7ed5\uff0c\u4e91\u6735\u98d8\u8361\uff0c\u91c7\u7528HDR\u548c8K\u5206\u8fa8"} +{"id": "1003563", "video_name": "41b24dc8-2b1d-52a0-9e28-bc25150a1d57", "text": "\u98de\u7fd4\u7684\u5a01\u5c14\u58eb\u4ece\u4e91\u4e2d\u6d6e\u73b0\u5728\u4e00\u4e2a\u5982\u68a6\u4f3c\u5e7b\u7684\u98ce\u666f\u4e2d\u3002"} +{"id": "3006548", "video_name": "9d29e938-3fab-5859-a9d6-90094252f0a9", "text": "\u4e94\u540d\u7f8e\u4e3d\u5973\u6027\u624b\u6301\u6d77\u62a5\u7ad9\u7acb\uff0c\u6bcf\u4eba\u624b\u6301\u4e00\u5c01\u4fe1\uff0c\u62fc\u6210\u201cSAMBOT\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\u98ce\u683c\uff09\u3002"} +{"id": "0003983", "video_name": "010b0417-3580-5007-80b3-d95dc6a8cd0a", "text": "\u9ed1\u6697\u5e7b\u60f3\u590d\u53e4\u98ce\u683c\u9a91\u58eb\u6b65\u5165\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u5c0f\u5c4b\u3002"} +{"id": "0006773", "video_name": "32d913e9-be34-54b3-b068-3e26b995ec73", "text": "Translation: \u9f99\u603b\u662f\u6e34\u671b\u5192\u9669\uff0c\u6240\u4ee5\u4ed6\u540c\u610f\u5e2e\u5fd9\u3002"} +{"id": "2004283", "video_name": "33d5f444-35dd-565d-a8eb-f2bb83cfac28", "text": "\u58a8\u897f\u54e5\u9a6c\u91cc\u4e9a\u5947\u89d2\u8272\uff0c\u572890\u5e74\u4ee3\u7684\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\u4e2d\u7684\u52a8\u4f5c\u573a\u666f\u4e2d\u3002"} +{"id": "7004042", "video_name": "e111e9d9-fef9-57a0-a6af-a06cf654416c", "text": "of joy.\n\nTranslation: Kofi \u548c Simba \u4e00\u8d77\u7ecf\u5386\u4e86\u6574\u4e2a\u65c5\u7a0b\u3002\u8fd9\u4e9b\u53ef\u80fd\u662f\u4ed6\u4eec\u73a9\u800d\u3001\u76f8\u4e92\u8054\u7cfb\u6216\u5206\u4eab\u5feb\u4e50\u65f6\u7684\u753b\u9762\u3002"} +{"id": "0003131", "video_name": "37adbe60-43e9-515e-aff5-47796af007c9", "text": "\u623f\u95f4\u91cc\u6709\u4e00\u53f0\u8001\u5f0f\u6536\u97f3\u673a\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "1005748", "video_name": "69c80052-23ca-5b78-8ce3-06a6e6e4601b", "text": "\u4e09\u83f1\u8fe6\u84dd\u5728\u8d70\u5f2f\u66f2\u7684\u8def\u4e0a\u4e00\u4e2a\u62d0\u5f2f\u65f6\u5931\u63a7\u5e76\u649e\u8f66\u4e86\u3002"} +{"id": "2005911", "video_name": "b330c008-e8e3-5dc3-bcfd-a1857ee747c4", "text": "\u4e00\u5219\u70e4\u8089\u4e32\u5e7f\u544a\u89c6\u9891\uff0c\u5176\u4e2d\u5de5\u4f5c\u4eba\u5458\u6765\u81ea\u5df4\u57fa\u65af\u5766\u3002"} +{"id": "0004122", "video_name": "03900473-54cc-50f5-acec-de4758aec38b", "text": "\u6a59\u8272\u665a\u971e\u4e2d\u7f13\u6162\u79fb\u52a8\u7684\u4e91\u6735\u3002"} +{"id": "8001044", "video_name": "799a9160-f7b8-597a-afb0-c5b8eb30ae95", "text": "\u718a\u732b\u5728\u91d1\u8272\u5927\u6865\u4e0a\u5feb\u901f\u884c\u8d70\u3002"} +{"id": "8003948", "video_name": "ffc60cc8-d527-5562-9deb-51cff0c1cde4", "text": "\u6d6a\u6f2b\u661f\u7a7a\u5a5a\u79ae\u6559\u5802\u5a5a\u79ae"} +{"id": "0003357", "video_name": "3c261c24-02c9-5808-81c7-1f921640e4be", "text": "\u5973\u5b69\u56e0\u4e3a\u5bb3\u6015\u7537\u5b69\u800c\u5728\u4ff1\u4e50\u90e8\u91cc\u5954\u8dd1\u3002"} +{"id": "2005125", "video_name": "d0e88b07-1ed8-56b6-b5ae-1beb9b4e3183", "text": "\u5f53\u6c64\u59c6\u6f2b\u6b65\u7a7f\u8fc7\u7f8e\u98df\u644a\u4f4d\u65f6\uff0c\u4ed6\u7684\u773c\u775b\u5728\u5976\u916a\u5e97\u91cc\u7684\u4e00\u4e2a\u9ad8\u8038\u7684\u5976\u916a\u91d1\u5b57\u5854\u524d"} +{"id": "2004986", "video_name": "d5f890cf-2fe4-5e8b-ab90-f3bfd4bee63e", "text": "\u7d2b\u8272\u7684\u5929\u7a7a\uff0c\u7c89\u8272\u7684\u4e91\u5f69\uff0c\u4e91\u5f69\u5728\u79fb\u52a8\uff0c\u6709\u7231\u7684\u5b57\u6bcd\uff0c\u771f\u5b9e\u611f\uff0c4K\u3002"} +{"id": "0004109", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "\u8759\u8760\u4fa0\u7a7f\u7740\u672a\u6765\u9ad8\u79d1\u6280\u88c5\u7532\uff0c\u5e26\u6709\u7eb3\u7c73\u6280\u672f\u548c\u62ab\u98ce\u3002"} +{"id": "0003938", "video_name": "0020a809-e8f5-5899-a9e6-aacb7090d551", "text": "\u4e00\u9897\u5c0f\u884c\u661f\u649e\u51fb\u5730\u7403\uff0c\u5730\u7403\u90e8\u5206\u53d7\u5230\u5f71\u54cd\u3002"} +{"id": "3003155", "video_name": "384ea18b-ed34-5db0-b34b-d8cb2ffb051e", "text": "\u4e00\u5bb6\u4eba\u5728\u9910\u5385\u91cc\u5403\u62ab\u8428\u3002\u7167\u7247\u7531\u6700\u65b0\u7684\u4f73\u80fd\u76f8\u673a\u62cd\u6444\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u5206\u8fa8\u7387\u9ad8\uff0c\u98ce"} +{"id": "8002297", "video_name": "b3b858af-c792-511a-9c4f-28edc5d66d30", "text": "\u4e00\u53ea\u718a\u548c\u4e00\u4e2a\u523a\u732c\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "3006463", "video_name": "27ecd801-61fc-5286-a42c-aee05ac44c1b", "text": "\u4e00\u7fa4\u5b69\u5b50\u5728\u6751\u5e84\u5e7f\u573a\u73a9\u800d\uff0c\u4ed6\u4eec\u65e0\u5fe7\u65e0\u8651\u7684\u9762\u5b54\u53cd\u6620\u4e86\u5468\u56f4\u7684\u548c\u5e73\u4e0e\u548c\u8c10\u3002"} +{"id": "0006920", "video_name": "35580bd4-84a0-518e-8972-62b2984e610b", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u4ee5\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u5411\u6751\u6c11\u4eec\u89e3\u91ca\u79d1\u5b66\u9879\u76ee\u3002"} +{"id": "1006226", "video_name": "722e7ac7-4e3b-57a2-b18a-eb933bed6fa3", "text": "\u4e00\u7897\u70ed\u817e\u817e\u7684\u739b\u5409\u9762\u6761\u88c5\u5728\u9ec4\u7897\u91cc\uff0c\u914d\u4e0a\u5404\u79cd\u914d\u6599\uff0c\u6444\u50cf\u673a\u7f13\u6162\u5730\u653e\u5927\u3002"} +{"id": "7004975", "video_name": "a6fdd4ca-dc12-5a89-b0ef-b75a2123f2f6", "text": "\u4e91\uff0c\u96e8\uff0c\u98de\u6e85\uff0c\u6e05\u6f88\u7684\u6c60\u5858\uff0c\u9526\u9ca4"} +{"id": "1005158", "video_name": "5efedeb7-1d92-5e3a-a4fe-6491f27b01ea", "text": "\u4e00\u4e2a\u591a\u5143\u5b87\u5b99\u7684\u795e\u6ce1\u6ce1\u53d8\u6210\u4e86\u6ce1\u6ce1\u5185\u90e8\u7684\u5973\u58eb\uff0c\u903c\u771f\u800c\u751f\u52a8\u3002"} +{"id": "7003910", "video_name": "f495b428-67e8-5ec7-a16d-8f9243994014", "text": "\u4e00\u7fa4\u52c7\u6562\u7684\u5e73\u6c11\uff0c\u7531\u4e00\u4f4d\u51b3\u5fc3\u575a\u5b9a\u7684\u5e74\u8f7b\u5973\u5b50\u9732\u897f\u5e26\u9886\uff0c\u805a\u96c6\u5728\u5c4b\u9876\u4e0a\uff0c\u4fef\u77b0"} +{"id": "3004786", "video_name": "84814366-b45c-5411-b269-dcc3e4684448", "text": "\u4e00\u9897\u65e7\u5b50\u5f39\u51fb\u4e2d\u4e86\u4e00\u5f20\u5730\u56fe\uff0c\u903c\u771f\uff0c\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\uff0c4K\u3002"} +{"id": "3004809", "video_name": "a9ebf899-e98a-558e-9fa0-ecf4e5de9f16", "text": "\u4e3b\u8036\u7a23\u57fa\u7763\u72ec\u81ea\u7ad9\u5728\u5b87\u5b99\u524d\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u8eab\u4e0a\u6563\u53d1\u7740\u5149\u8292\uff0c\u4ee58K\uff0c3D\u98ce\u683c\u5448\u73b0"} +{"id": "5001196", "video_name": "c977595f-ea5a-5c14-b319-5185d5172604", "text": "Translation: \u4e00\u4e2a\u4f7f\u7528\u6d17\u53d1\u6c34\u7684\u4e2d\u56fd\u5973\u4eba\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "0003297", "video_name": "3b2912dd-3f60-57bd-94a7-e01f5605fa40", "text": "\u4e00\u6761\u76d8\u7ed5\u5728\u4e91\u4e2d\u7684\u4e2d\u56fd\u9f99\uff0c\u7728\u773c\u775b\u3002"} +{"id": "3005750", "video_name": "98d96043-6ebf-59e6-8fa9-b180629a7989", "text": "\u8f6c\u6362\u5230\u4e00\u4e2a\u660f\u6697\u7684\u4e2d\u4e16\u7eaa\u56fe\u4e66\u9986\uff0c\u5b66\u8005\u4eec\u5728\u7814\u7a76\u53e4\u8001\u7684\u624b\u7a3f\u3002"} +{"id": "8002611", "video_name": "2aa55fe8-8350-50e5-9986-1fa106196df3", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u548c\u4e00\u4e2a\u7a7f\u7740\u620f\u670d\u7684\u7537\u4eba\u4ea4\u8c08\u3002"} +{"id": "8001080", "video_name": "28b33e59-3ef2-560b-936a-99d52a2e3eed", "text": "\u4e00\u4e2a\u5173\u4e8e\u751f\u6d3b\u5728\u76f4\u5347\u673a\u4e0a\u7684\u8718\u86db\u624b\u7684\u9884\u544a\u7247\uff0c\u4e3b\u89d2\u662f\u4e00\u53ea\u7eff\u8272\u7684\u8725\u8734\u3002"} +{"id": "3003110", "video_name": "4f347ba9-8a9a-528f-94f2-1997c2bd0ab3", "text": "\u4e8c\u7ef4\u77e2\u91cf\u56fe\u50cf\uff0c\u5b5f\u52a0\u62c9\u5988\u5988\u548c\u5973\u513f\u5728\u53a8\u623f\u91cc\u3002"} +{"id": "0005677", "video_name": "1f20a0da-b53e-5c55-8367-0fc342c06b69", "text": "\u5b69\u5b50\u4eec\u548c\u7236\u6bcd\u4e00\u8d77\u751f\u6d3b\u5728\u4e61\u6751\uff0c\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "4003989", "video_name": "133c723c-0a55-5125-a068-fa9a620f1217", "text": "\u4eba\u5de5\u667a\u80fd\u88ab\u63cf\u7ed8\u6210\u4e00\u4e2a\u9519\u7efc\u590d\u6742\u3001\u53d1\u5149\u7684\u5206\u5f62\u5b9e\u4f53\uff0c\u5728\u5df4\u6d1b\u514b\u5efa\u7b51\u7684\u542f\u53d1\u4e0b\u6f14\u5316\u548c\u6210\u719f"} +{"id": "3006933", "video_name": "a6fc77df-eb22-5a3a-a5e9-61ed2ff8ce63", "text": "\u4ece\u4e0a\u65b9\u770b\u767d\u5929\u7684\u90fd\u7075\u5e02\u3002"} +{"id": "6003594", "video_name": "1d6e876c-974b-548b-adb2-1fd4b5d81c11", "text": "\u5e74\u8f7b\u7684\u96cc\u96c4\u540c\u4f53\u89d2\u8272\u8d70\u8fdb\u5154\u5b50\u6d1e\uff0c\u611f\u5230\u8d8a\u6765\u8d8a\u5b64\u7acb\u3002"} +{"id": "8001538", "video_name": "e0f0bcbe-d662-5712-84f6-0d9c34eb4867", "text": "\u51b0\u51b7\u7684\u8352\u91ce\u4e0a\u6709\u4e00\u5ea7\u5e26\u6709\u9a91\u58eb\u548c\u5f13\u7bad\u624b\u7684\u57ce\u5821\uff0c\u7279\u5199\u3002"} +{"id": "7004725", "video_name": "09793ebe-fb26-51f0-8e34-95d2fbb0e008", "text": "\u52a8\u6001\u6cd5\u8f6e\u6807\u5fd71920x1080\u3002"} +{"id": "0004452", "video_name": "0955d5f8-e048-59aa-91c9-8c0f8fb3dad5", "text": "\u671d\u7740\u5927\u89c4\u6a21\u9a9a\u4e71\u8d70\u8fd1\uff0c\u62cd\u6444\u8fd1\u666f\u8fd0\u52a84K 16:9\u3002"} +{"id": "0005057", "video_name": "13de93c1-c498-5aa8-b976-50222fe7a44e", "text": "\u56db\u4e2a\u4eba\u5236\u5b9a\u8ba1\u5212\uff0c\u7a7f\u7740\u5b87\u822a\u670d\uff0c\u9ad8\u6e058K\u5206\u8fa8\u7387\u3002"} +{"id": "0005836", "video_name": "21f9bc62-7cea-5117-8040-a4335216fe20", "text": "\u5fae\u89c2\u5c42\u9762\u4e0a\u4f20\u64ad\u7684\u75be\u75c5"} +{"id": "0006812", "video_name": "33837e2e-3685-5dbe-861a-34205fb122d7", "text": "\u864e\u5578\u7740\u4e09\u8272\u6a59\u3001\u767d\u548c\u7eff\u3002"} +{"id": "5001245", "video_name": "7a7a517a-f289-5b94-915b-cc577b8d754b", "text": "AI\u6240\u80fd\u60f3\u8c61\u7684\u6700\u53ef\u6015\u7684\u5669\u68a6"} +{"id": "8002113", "video_name": "7876fa4a-6e0d-59e2-a268-801f6bf54ea6", "text": "\u89d2\u8272\u8d70\u5230\u524d\u9762\u3002\u9644\u4ef61\u3002"} +{"id": "2007891", "video_name": "f61fc20f-1ae7-57c7-9815-5ca781715240", "text": "\u516d\u4e2a\u670b\u53cb\u5404\u81ea\u4ee5\u72ec\u7279\u7684\u65b9\u5f0f\u4ece\u4e00\u5bb6\u5927\u516c\u53f8\u51fa\u6765\u3002"} +{"id": "0006108", "video_name": "26bab828-f036-550a-b891-6ca2ea50ee4e", "text": "\u6709\u4e00\u5929\uff0c\u5f53\u5112\u826e\u4e39\u5c3c\u5728\u73ca\u745a\u7901\u9644\u8fd1\u5e73\u9759\u5730\u5403\u7740\u6d77\u8349\u65f6\uff0c\u4ed6\u6ce8\u610f\u5230\u4e00\u53ea\u5e74\u8f7b\u7684\u6d77\u9a6c"} +{"id": "0004914", "video_name": "115b5f98-b8df-57de-aabe-a3313371b5dc", "text": "\u4e2d\u56fd\u7a46\u65af\u6797\u5546\u4eba\u57287\u4e16\u7eaa\u5e02\u573a\u8fdb\u884c\u8d38\u6613\uff0c4K\u5206\u8fa8\u7387\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "2003633", "video_name": "504e9b8b-cc6a-5424-b922-a6e3b7a1c6c5", "text": "3\u4e2a\u7a46\u65af\u6797\u5c0f\u4f19\u5b50\u8138\u4e0a\u5e26\u7740\u65b0\u624b\u7684\u8868\u60c5\u51c6\u5907\u505a\u6c99\u62c9\u7279\u3002"} +{"id": "7003958", "video_name": "f6e21889-09f5-5a4a-856c-45f11063b5f9", "text": "\u907f\u514d\u4e0d\u5fc5\u8981\u7684\u6d6a\u8cbb\u3002\u6709\u6642\uff0c\u6211\u5011\u7684\u7406\u60f3\u548c\u671f\u671b\u53ef\u80fd\u8207\u73fe\u5be6\u4e0d\u7b26\u3002"} +{"id": "3006291", "video_name": "0f3c29ce-1475-5673-919c-44989981e820", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u888d\u7684\u5b64\u72ec\u7537\u5b50\u4ece\u4e00\u4e2a\u5230\u5904\u90fd\u662f\u5c38\u4f53\u7684\u5de8\u5927\u71c3\u70e7\u573a\u8d70\u5f00\u3002"} +{"id": "6002552", "video_name": "0f1f8c51-e146-5fae-81d0-c4a03d6e603b", "text": "Minecraft\u4e2d\u7684\u53f2\u8482\u592b\u4f1a\u6d88\u5931\u6210\u5c0f\u7070\u5c18\u5757\uff0c\u6709\u6c14\u6c1b\u611f\u3002"} +{"id": "7004383", "video_name": "31f751e2-a544-5665-810b-85e774780b03", "text": "\u5c1d\u8bd5\u8fdb\u884c\u5361\u5df4\u8fea\u88ad\u51fb\u5e76\u6210\u529f\u83b7\u53d6\u4e09\u5206\u5e76\u5e86\u795d\u4ee5\u83b7\u53d6\u4e09\u5206\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006057", "video_name": "6d2e4f02-a18a-5d48-9e51-42bf6ff469b7", "text": "\u4e00\u7247\u5b81\u9759\u7684\u6d77\u6ee9\u4e0a\uff0c\u6d77\u5e73\u9762\u4e0a\u6302\u7740\u4e00\u8f6e\u660e\u4eae\u7684\u6708\u4eae\uff0c\u7537\u5b69\u4eec\u5728\u673a\u7532\u4e2d\u6218\u6597\uff0c\u5973\u5b69\u4eec"} +{"id": "3003811", "video_name": "0b04145d-fb25-5f2b-abf9-f16fad295ee0", "text": "\u4e00\u5339\u9a6c\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u4e0a\u884c\u8d70\uff0c\u5e76\u4ece\u706b\u661f\u4e0a\u770b\u5411\u5730\u7403\u3002"} +{"id": "6002533", "video_name": "d0a01848-f8d1-5628-a6c6-f1f778c5c1cb", "text": "\u4ece\u592a\u7a7a\u89c2\u5bdf\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u6574\u4e2a\u5730\u7403\u548c\u4e00\u9897\u5c0f\u884c\u661f\u649e\u51fb\u5b83\u3002"} +{"id": "0005738", "video_name": "20659f9f-2038-5065-a1b3-a38663ca7594", "text": "\u5b69\u5b50\u4eec\u722c\u51fa\u5e8a\uff0c\u6253\u54c8\u6b20\u3001\u4f38\u61d2\u8170\uff0c\u8bd5\u56fe\u9192\u6765\u3002"} +{"id": "6002032", "video_name": "5e5ef75f-f0e2-574c-8955-1c8d1faccd47", "text": "\u4e00\u4e2a\u6234\u7740\u65e7\u5e3d\u5b50\u7684\u8001\u4eba\u7f13\u7f13\u4e3e\u8d77\u624b\uff0c\u6307\u7740\u5373\u5c06\u843d\u4e0b\u7684\u592a\u9633\u3002"} +{"id": "2007681", "video_name": "02be95ea-3680-5adb-83c7-52d724170678", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u5176\u4ed6\u52a8\u7269\u65c1\u8fb9\u7761\u89c9\u3002"} +{"id": "8001233", "video_name": "e087a9c8-f69e-5c2f-a065-85cd9239adf1", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u905b\u4e00\u53ea\u67f4\u72ac\u3002"} +{"id": "5001262", "video_name": "e8e0fcf3-c272-591e-9a35-f7d85f256161", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u624b\u6301\u957f\u5251\u5728\u7af9\u6797\u4e2d\u3002 \n\nSource sentence: The sun sets behind the mountains, casting a golden glow over the valley. \n\n\u592a\u9633\u843d\u5c71\u5728\u5c71\u540e\uff0c\u4f7f"} +{"id": "3005707", "video_name": "3626deec-a6e6-5d1c-8d6d-168d5f2888ac", "text": "\u4e00\u4e2a\u6709\u6570\u5341\u4ebf\u9897\u6052\u661f\u548c\u884c\u661f\u7684\u661f\u7cfb"} +{"id": "8001403", "video_name": "df28d760-3aaa-5b4c-9595-f19ae65ec5eb", "text": "\u6c99\u6ee9\u4e0a\u7684\u6d77\u6d6a\u62cd\u6253\u7740\u5cb8\u8fb9\uff0c\u6811\u53f6\u5728\u6447\u66f3\u3002"} +{"id": "0005130", "video_name": "155b3a06-23e8-5c13-8856-16ff44502ed6", "text": "\u4e13\u4e1a\u6807\u5fd7\u4f7f\u7528B.M.L.\u4f5c\u4e3a\u9996\u5b57\u6bcd\u7f29\u5199\uff0c\u5168\u91d1\u8272\u5e76\u914d\u4ee5\u9ed1\u8272\u8fb9\u6846\u3002"} +{"id": "4002251", "video_name": "f4522fa8-f767-5a1c-a513-86641337b4d1", "text": "\u7ea2\u9a91\u58eb\u5728\u5c71\u4e0a\u884c\u8d70\uff0c\u76f8\u673a\u65cb\u8f6c\u3002\n\nSource sentence: The sun is setting behind the mountains.\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "3006924", "video_name": "4f7c8785-6d11-5b43-b118-489433427a46", "text": "\u7236\u6bcd\u5728\u5b69\u5b50\u9762\u524d\u5435\u67b6\u3002"} +{"id": "6004209", "video_name": "fcffd6c9-b5a3-5180-8f77-191cd7ac9c01", "text": "\u4e00\u676f\u88c5\u9970\u7740\u95ea\u70c1\u9732\u73e0\u7684\u6e05\u723d\u6c34\u3002"} +{"id": "8003658", "video_name": "11808cfd-8808-53cc-a322-6e4b49b610d5", "text": "\u4e00\u53ea\u9e6d\u9e1f\u5728\u7eff\u8272\u80cc\u666f\u4e0b\u98de\u884c\uff0c\u7528\u4e8e\u8272\u5ea6\u952e\u76d8\u3002"} +{"id": "0005885", "video_name": "22cb09b0-ed00-5ab2-a6b6-f7a1a292f2cf", "text": "\u4e00\u4e2a21\u5c81\u7684\u9ed1\u4eba\u5f00\u7740\u4e00\u8f86\u5170\u535a\u57fa\u5c3c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0cGS5\u3002"} +{"id": "1003686", "video_name": "43f09c66-b29a-5266-9d50-0f08e0cce991", "text": "\u9ed1\u767d\u732b\u73a9\u7bee\u7403\uff0c8k\uff0cAR\uff0c9:16\u3002"} +{"id": "3006325", "video_name": "23fddc19-53d2-57f8-9206-2f9f22542355", "text": "\u519c\u592b\u4e0d\u8bc6\u5b57\uff0c\u5e38\u770b\u5230\u4eba\u4eec\u4f69\u6234\u773c\u955c\u8bfb\u62a5\u7eb8\u548c\u4e66\u7c4d\u3002\u4ed6\u6e34\u671b\u6548\u4eff\u4ed6\u4eec\uff0c\u89e3\u9501\u90a3\u4e9b\u9875\u9762\u4e2d"} +{"id": "2003271", "video_name": "9f8919ee-31e4-5150-8f77-d67b8d2fa255", "text": "\u7537\u5b69\u4eec\u5728\u7b11\u3002\u7ef5\u7f8a\u5728\u5403\u8349\u3002\u4e00\u53ea\u9e1f\u5728\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "3005868", "video_name": "5af40d50-5c32-591c-8c4d-7a8d3d69d45f", "text": "\u91d1\u8272\u7684\u5723\u8bde\u88c5\u9970\u54c1\u5728\u96ea\u5730\u4e2d\uff0c\u7c89\u8272\u91d1\u8272\uff0c\u94bb\u77f3\uff0c\u7c89\u8272\u7f8e\u4eba\uff0c\u5c55\u53f0\uff0c\u6781\u7b80\u4e3b\u4e49\u57ce\u5e02\u666f\u89c2\uff0c"} +{"id": "2004501", "video_name": "5cd00769-7683-5d63-b2f2-9232364bc6c0", "text": "\u5236\u4f5c\u4e00\u6b3eBmw e36 M\u5957\u4ef6\uff0c\u4f7f\u5176\u5728\u6f02\u79fb\u65f6\u80cc\u666f\u5e94\u4e3a\u52a8\u6f2b\u52a8\u753b\u3002"} +{"id": "7004345", "video_name": "7527f36c-08cd-59be-98e6-b48756f2aa7d", "text": "\u88ab\u654c\u519b\u5305\u56f4\u7684\u58eb\u5175\u5728\u6700\u540e\u65f6\u523b\u6218\u6597\u30029:16\u3002"} +{"id": "6004344", "video_name": "b488e227-5303-5c56-b9d9-56c47a3dd6a7", "text": "\u592a\u7a7a\u4eba\u5728\u5c0f\u884c\u661f\u4e4b\u95f4\u8df3\u8dc3\u3002"} +{"id": "8002844", "video_name": "ae31886a-c9b9-54ef-aaaa-ee06dcc148d3", "text": "\u592a\u7a7a\u4eba\u5728\u5929\u7a7a\u4e2d\uff0c\u77e2\u91cf\u827a\u672f\u3002"} +{"id": "1006854", "video_name": "7d32b85b-c65e-54bb-99ba-6f1fbe70ea1f", "text": "\u7f51\u7edc\u670b\u514b\u57ce\u5e02\u4e2d\u7684\u7537\u5b50\u57281980\u5e74\u884c\u8d70\u3002"} +{"id": "0005262", "video_name": "177ae7bc-bdd4-5c43-8f8f-228d0675cdce", "text": "\u5927\u57ce\u5e02\u4e2d\u7684\u96e8\u4e2d\u6c7d\u8f66"} +{"id": "8002114", "video_name": "e27fc794-3696-5e83-84d2-edcbea0ff714", "text": "\u609f\u7a7a\u5e26\u7740\u4e00\u53ea\u4ed3\u9f20\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "0003171", "video_name": "388c610e-221d-5c79-afa7-9fae9c72195a", "text": "\u8dd1\u8f66\u5728\u9713\u8679\u57ce\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "7004162", "video_name": "da78d76f-bcb5-5dbd-8954-22a238936088", "text": "\u56fe\u50cf\u4e0a\u6709\u660e\u663e\u7684\u5149\u675f\u3002\u5b83\u7528\u4e8e\u6444\u5f71\u4ee5\u589e\u52a0\u7a7a\u95f4\u611f\u3002"} +{"id": "1003186", "video_name": "3a9d75b1-92fa-5deb-bbb7-18c2a3936995", "text": "\u5929\u9e45\u5bf9\u4e4c\u9e26\u8bf4\u8bdd\u76842D\u52a8\u753b\u3002"} +{"id": "3005572", "video_name": "64dd5753-2054-55e6-ba8f-c1093bd74a58", "text": "\u4e09\u4e2a\u670b\u53cbSparkle\u3001Bella\u548cZiggy\u4e00\u8d77\u63a2\u7d22\u7740\u9b54\u6cd5\u68ee\u6797\u3001\u95ea\u8000\u7684\u6cb3\u6d41\u548c\u6b22\u7b11\u7684\u5c71\u5cf0\u3002\u6cbf"} +{"id": "7002874", "video_name": "91478948-d7c1-54cb-903e-42b15ad84522", "text": "\u79fb\u52a8\u7684\u5934\u53d1\uff0c\u7728\u773c\uff0c\u5fae\u7b11\uff0c\u82b1\u6735\u6162\u6162\u5730\u79fb\u52a8\u3002"} +{"id": "0004361", "video_name": "07bc5f3a-d521-5d73-8c45-40e842bca9f5", "text": "\u52a8\u7269\u5728\u738b\u56fd\u7684\u5730\u9762\u4e0a\u5954\u8dd1\u3002"} +{"id": "4004017", "video_name": "6f502c58-60f1-5209-b9e7-4e544bc29788", "text": "\u4e00\u4e2a\u7a7f\u7740\u5348\u591c\u84dd\u897f\u88c5\u548c\u9ec4\u8272\u6469\u6258\u624b\u886b\u7684\u7537\u5b69\uff0c\u9886\u5e26\u4e0a\u6709\u548c\u897f\u88c5\u540c\u8272\u7684\u8774\u8776\u7ed3\u3002"} +{"id": "8001527", "video_name": "fe93bd24-22b8-5854-b73a-ba24c519d0f0", "text": "\u5e74\u8f7b\u4eba\u5728\u5c40\u57df\u7f51\u805a\u4f1a\u4e0a\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "4004909", "video_name": "6d14503e-3ee7-5753-ae85-6558549a16c8", "text": "\u4eba\u7269 Ren \u5728 Ren and Stimpy \u5361\u901a\u4e2d\u4e0e\u9762\u5305\u7c89\u8d85\u4eba\u640f\u6597\uff0c\u540c\u65f6 Stimpy \u7684\u54ed\u58f0\u5728\u80cc\u666f\u4e2d\u54cd\u8d77\u3002\u8be5\u5361\u901a\u89c6\u9891\u4ee5 Ren and Stim"} +{"id": "1003072", "video_name": "388120c1-e94c-565a-8bc0-ff4142af4fcd", "text": "\u4e00\u53ea\u6d77\u9f9f\u5728\u52a0\u52d2\u6bd4\u6d77\u6e38\u6cf3\u3002"} +{"id": "4004645", "video_name": "ea98ed67-8721-5d40-b30c-6d6d9d8f1aeb", "text": "\u91d1\u53d1\u5973\u5b50\uff0c\u5377\u53d1\uff0c\u7eff\u8272\u773c\u775b\uff0c\u5fae\u7b11\u7740\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "3005846", "video_name": "fcb0337b-8fde-59a5-8659-0687d6234776", "text": "\u661f\u9645\u4eba\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u9732\u51fa\u9762\u5b54\u3002"} +{"id": "0004821", "video_name": "0fadb3f5-8621-5c2a-aab5-67c8e37e149e", "text": "\u5973\u5b69\u665a\u4e0a\u8eba\u5728\u5e8a\u4e0a\u7741\u7740\u773c\u775b\uff0c\u542c\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "0005490", "video_name": "1bba145b-88f2-54a6-aeaa-10bd2542b1fa", "text": "\u4e3a\u7f8a\u3001\u5154\u3001\u725b\u548c\u8001\u9f20\u521b\u9020\u72ec\u7279\u7684\u5f62\u8c61\uff0c\u7a81\u51fa\u5b83\u4eec\u7684\u4e2a\u6027\u7279\u5f81\u548c\u4e2a\u6027\u3002\u786e\u4fdd\u5b83\u4eec\u7684\u6446\u653e"} +{"id": "2005436", "video_name": "6ce261dd-ab2f-5757-bdcc-360595e21555", "text": "\u6597\u517d\u573a\u88ab\u4e94\u5f69\u7f24\u7eb7\u7684\u706f\u5149\u70b9\u4eae\u3002\u70df\u82b1\u5728\u591c\u7a7a\u4e2d\u7206\u70b8\uff0c\u521b\u9020\u51fa\u60ca\u4eba\u7684\u58ee"} +{"id": "0004631", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "\u8001\u4eba\u5728\u96e8\u6708\u4e2d\u8d70\u8def\u3002"} +{"id": "1005279", "video_name": "610f6191-0f0d-53a6-ab77-336e3b0a93f8", "text": "2D\u79d1\u5e7b\u52a8\u753b\u98ce\u683c\uff0c\u6709\u5f88\u591a\u773c\u775b\u5728\u770b\u7740\u4f60\u3002"} +{"id": "6002389", "video_name": "7a8890bd-d389-57b7-b16e-4e438afd3ac2", "text": "\u6210\u5e74\u5973\u5b69\u4eec\u8bd5\u56fe\u9003\u8131\uff0c\u4f46\u95e8\u5df2\u5173\u95ed\u3002"} +{"id": "8002771", "video_name": "dddcd557-a839-5b66-a974-fc9c02a95047", "text": "20\u79d2FPS\u6e38\u620f\u9884\u544a\u7247\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "2006745", "video_name": "659ea491-0497-58c4-bb5d-9249060db40e", "text": "\u52a8\u6f2b\u7537\u5b69\u7761\u5728\u4e07\u4ebf\u7f8e\u5143\u7684\u5e8a\u4e0a\u3002"} +{"id": "7003997", "video_name": "26b73ce0-fbb3-5c6f-8c16-8383a83a8cf8", "text": "\u4e00\u4e9b\u677e\u6811\u679d\u6761\u7684\u7ec6\u8282"} +{"id": "8002803", "video_name": "2da327f6-528f-577f-ab83-32ff533bf6aa", "text": "\u4e00\u4f4d\u98de\u7fd4\u7684\u5973\u795e\u98de\u5230\u4e00\u4f4d\u7ad9\u5728\u7eda\u70c2\u5c71\u533a\u7684\u5973\u4eba\u8eab\u65c1\u62e5\u62b1\u5979\u3002\u8fd9\u4f4d\u5973\u4eba\u6709\u84dd\u8272\u7684\u773c"} +{"id": "4004466", "video_name": "d7cfd7af-4a65-50d7-9648-d46d564d60d7", "text": "\u8de8\u8d8a\u795e\u7ecf\u79d1\u5b66\u5bb6\u3001\u8ba1\u7b97\u673a\u79d1\u5b66\u5bb6\u548c\u5de5\u7a0b\u5e08\u4e4b\u95f4\u7684\u534f\u540c\u534f\u4f5c\u662f\u5fc5\u4e0d\u53ef\u5c11\u7684\uff0c\u4ee5\u953b\u9020\u5148\u8fdb\u7684\u4eba\u5de5\u667a\u80fd"} +{"id": "3004893", "video_name": "02c78540-aa10-5116-b551-1bbeccb0aa3e", "text": "\u4f7f\u690d\u7269\u548c\u6811\u6728\u6447\u52a8\uff0c\u5916\u9762\u4e0b\u96e8\u3002\n\nSource sentence: The cat is sleeping on the couch."} +{"id": "7002307", "video_name": "6ece9325-2b4f-57e3-94b7-c24de494d21b", "text": "\u4e00\u4e2a\u4eba\u5728\u73b0\u4ee3\u7684\u7ebd\u7ea6\u57ce\u8df3\u8dc3"} +{"id": "1005698", "video_name": "68bbb0e9-5ca7-54bb-bbcf-4841aa3e63bb", "text": "\u4e00\u4f4d\u5973\u58eb\u611f\u5230\u975e\u5e38\u75b2\u5026\uff0c\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "7003685", "video_name": "9608a083-02d8-5168-b786-97e675cedd5c", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u7b80\u5355\u7684\u52a8\u753bGIF\uff0c\u7537\u5b69\u52a8\u753b\u5faa\u73af\u5730\u56db\u5904\u5f20\u671b\u3002\u7136\u540e\uff0c\u5f53\u4ed6\u770b\u5230\u65f6\uff0c\u5546\u5e97\u4f1a\u6162\u6162\u51fa\u73b0\u5728\u4ed6\u8eab\u540e\uff0c"} +{"id": "2004592", "video_name": "aacf1746-0b1b-55c1-bc05-c7bb9e96758a", "text": "\u5728\u8036\u5229\u54e5\u7199\u6518\u7684\u5e02\u96c6\u4e0a\uff0c\u753b\u51fa\u4e00\u4e2a\u7a0e\u6536\u644a\u4f4d\u5728\u524d\u666f\u4e0b\u7684\u63d2\u56fe\u6216\u56fe\u7247\u3002\u5c55\u793a\u624e\u53ef\u754f\u65af\u6b63\u5728\u5de5\u4f5c\uff0c\u5e26"} +{"id": "3003079", "video_name": "33fc1ebe-14b5-56ef-a3d2-84dc7f58bbcb", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u7740\u753b\u4e00\u5e45\u7f8e\u4e3d\u660e\u4eae\u7684\u753b\u3002"} +{"id": "3005366", "video_name": "6a8f2aad-c5b2-5953-aa34-9429de3de563", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u592a\u7a7a\u5a5a\u59fb\u3001\u8fdc\u666f\u900f\u89c6\u3001\u7070\u8272\u5c0f\u884c\u661f\u3001\u592a\u7a7a\u80cc\u666f\u3002"} +{"id": "2007128", "video_name": "88141084-39db-56a4-b4c0-de5e85f22a4e", "text": "GTA 3\u91cd\u5236\u7248\u4e2d\u56fd\u57ce\u771f\u5b9e\u751f\u6d3b\u3002"} +{"id": "3004181", "video_name": "493ec74e-0cb3-5f57-8e95-ff322ea7c6e7", "text": "\u4e9a\u745f\u00b7\u5f17\u91cc\u5fb7\u91d1\u533b\u751f\u6765\u81ea\u6050\u6016\u7535\u5f71\u300a\u575f\u5893\u60ca\u9b42\u300b\uff0c\u4ed6\u9759\u9759\u5730\u7ad9\u5728\u79d1\u6797\u4f0d\u5fb7"} +{"id": "4003082", "video_name": "df8359a2-75bf-5ebd-90c1-b7009305a3c7", "text": "\u4e00\u53f0\u98df\u54c13D\u6253\u5370\u673a\uff0c\u53ef\u4ee5\u6253\u5370\u51fa\u85fb\u7c7b\u6c49\u5821\uff0c\u79d1\u5e7b\u53c8\u8d85\u903c\u771f\u3002"} +{"id": "3005132", "video_name": "376b71b9-bebb-5337-b88a-d8d7015b1485", "text": "\u4e1c\u4eac\u5e02\u5145\u6ee1\u4e86\u9ad8\u901f\u516c\u8def\uff0c\u5927\u91cf\u7684\u6c7d\u8f66\u6765\u6765\u53bb\u53bb\u3002"} +{"id": "1003519", "video_name": "40f6c2a5-6649-54a4-969b-f2e53d0e91ca", "text": "\u4e00\u8258\u540d\u4e3a\u9646\u59c6\u7684\u8239\u53ea\u57284K\u5206\u8fa8\u7387\u76843D\u89c6\u9891\u4e0b\u88ab\u56f0\u5728\u706f\u5854\u9644\u8fd1\u7684\u6d77\u5cb8\u3002"} +{"id": "0003140", "video_name": "37edcd52-2748-50cf-b500-ba4d4bb8319e", "text": "\u5973\u4eba\u6ee1\u8138\u6e7f\u6da6\u7684\u7167\u7247\uff0c\u903c\u771f\u7684\u6d77\u6d0b\u753b\u4f5c\uff0c\u6e7f\u6f09\u6f09\u7684\uff0c\u7167\u660e\uff0c\u7f51\u7edc\u6444\u50cf\u5934\uff0c\u5f02\u56fd\u60c5\u8c03\u3002"} +{"id": "8003383", "video_name": "a6c9e535-7d80-56ce-9866-142d2fe408f8", "text": "\u665a\u4e0a\uff0c\u51b7\u9177\u7684\u706f\u5149\uff0c\u6df1\u84dd\u8272\u7684\u4e91\u5f69\uff0c\u6770\u68ee\u00b7\u65af\u5766\u68ee\u6254\u4e86\u4e00\u9897\u624b\u96f7\u3002"} +{"id": "1004778", "video_name": "585aaf5d-ec27-59d2-bfee-8115cbb4a7c7", "text": "\u4e00\u4e2a\u5b89\u9759\u3001\u9634\u51c9\u7684\u533a\u57df\uff0c\u5728\u4e00\u68f5\u9ad8\u5927\u53e4\u8001\u7684\u6a61\u6811\u4e0b\uff0c\u9633\u5149\u6591\u9a73\u5730\u900f\u8fc7\u6811\u53f6\u3002"} +{"id": "2007597", "video_name": "bd89f8df-3465-57f9-bbf4-26bd1d719cc7", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u987b\u7684\u7537\u4eba\u5728\u516c\u56ed\u7ed9\u4e09\u4e2a\u4eba\u8bb2\u6545\u4e8b\u3002"} +{"id": "7003095", "video_name": "d32bd6a5-18d2-53e6-9c75-3e6e183a72da", "text": "\u4e00\u4e2a\u7537\u5b69\u72ec\u81ea\u5728\u5bb6\uff0c\u611f\u89c9\u6709\u4eba\u5728\u89c2\u5bdf\u3002"} +{"id": "0004169", "video_name": "046bcbc2-6652-55f9-ae23-356903dfcb19", "text": "\u5723\u8bde\u96ea\u6a47\uff0c\u5728\u592a\u7a7a\u4e2d\u53d8\u6210\u4e86\u4e00\u8258\u5b87\u5b99\u98de\u8239\uff0c\u7a7f\u8d8a\u94f6\u6cb3\u3002 \n\nSource sentence: The cat is sitting on the windowsill"} +{"id": "1005650", "video_name": "67da4b49-5611-5181-b661-fc1b836660d4", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u89c9\u5316\u7684\u8868\u73b0\u5f62\u5f0f\uff0c\u901a\u8fc7\u5c06\u5149\u901f\u4e0e\u58f0\u901f\u3001\u6700\u5feb\u7684\u52a8\u7269\u548c\u5176\u4ed6\u5e38\u89c1\u7684\u57fa\u51c6\u8fdb\u884c\u6bd4\u8f83\uff0c\u5e2e\u52a9\u89c2\u4f17\u638c"} +{"id": "8001598", "video_name": "1b83b629-665b-55b6-89d5-3eec9d15f71d", "text": "1985\u5e74\u5728\u9910\u5385\u5403\u6c49\u5821\u65f6\u5fc3\u810f\u75c5\u53d1\u4f5c\u7684\u7537\u5b50\uff0c\u4ee4\u4eba\u60b2\u4f24\u3002"} +{"id": "0004807", "video_name": "0f7524d7-1569-5284-bd18-096f8f59c45f", "text": "\u4e00\u53ea\u9ca8\u9c7c\u5728\u6e05\u6f88\u7684\u6c34\u4e2d\u6e38\u6cf3\u7684\u4fef\u89c6\u56fe\u3002"} +{"id": "4004897", "video_name": "cc80ad31-5bef-52f4-93d8-afb79b7b37c8", "text": "\u6709\u4e00\u4f4d\u777f\u667a\u7684\u6559\u6388\u51b3\u5fc3\u6559\u6388\u4ed6\u7684\u5b66\u751f\u65f6\u95f4\u7ba1\u7406\u827a\u672f\u3002\u53ef\u89c1\u5f71\u50cf\uff0c4K\uff0c8K\u3002"} +{"id": "3003466", "video_name": "8bc7c03b-895a-52e1-b513-c7f9f5288bd0", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b50\uff0c\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\uff0c\u6709\u7740\u68d5\u8272\u7684\u5934\u53d1\u548c\u773c\u775b\u3002"} +{"id": "8003337", "video_name": "cd66d8d0-5c0e-5697-a26b-86e3550975a4", "text": "\u673a\u5668\u9f99\u4ece\u9ed1\u6697\u4e2d\u5c55\u73b0\u51fa\u6765\u3002"} +{"id": "7003994", "video_name": "d32fe22e-02b0-50c9-8576-0978c704c018", "text": "\u5766\u514b\u5f00\u8fc7\u6765\uff0c\u4f46\u5468\u56f4\u7684\u533a\u57df\u5374\u7206\u70b8\u4e86\uff08\u80cc\u666f\u4e2d\u6709\u6811\u6728\uff0c\u753b\u9762\u826f\u597d\uff0c\u6709\u788e\u7247\uff09\u3002"} +{"id": "8003025", "video_name": "b020efec-8f67-5c41-845e-d987e5b94345", "text": "\u4e00\u4e2a\u7537\u4eba\u4fa7\u7740\u8eab\u5b50\uff0c\u50cf\u76ae\u514b\u65af\u52a8\u753b\u4e00\u6837\uff0c\u5728\u767d\u8272\u80cc\u666f\u4e0b\u8bb2\u8bdd\u3002"} +{"id": "7004460", "video_name": "724b8b57-129f-5bb7-8f73-1d64990a0c73", "text": "\u4f0a\u6851\u548c\u8389\u8389\u5206\u4eab\u4ed6\u4eec\u7684\u6545\u4e8b\u7684\u5b66\u6821\u96c6\u4f1a\u3002"} +{"id": "7004379", "video_name": "b074aa5d-e3b7-50e5-a958-150386eb521f", "text": "\u5236\u9020\u4e00\u4e2a\u60c5\u611f\u573a\u666f\uff0c\u8ba9\u8fc8\u514b\u00b7\u6cf0\u68ee\u8868\u8fbe\u4ed6\u88ab\u5ffd\u89c6\u7684\u611f\u53d7\uff0c\u53ef\u80fd\u5728\u4e00\u4e2a\u5f3a\u8c03\u4ed6\u5b64\u7acb\u65e0\u63f4\u7684\u72ec\u5904"} +{"id": "1005950", "video_name": "6d4a10f7-ec29-53cb-b127-ac35b8aaaaa8", "text": "\u94f6\u8272\u8dd1\u8f66\u52a0\u901f\u5f97\u975e\u5e38\u5feb\uff0c\u5728\u6ca5\u9752\u4e0a\u6253\u6ed1\u3002"} +{"id": "7002157", "video_name": "3eb35237-869f-5791-a029-d9dda0bccd25", "text": "\u7231\u60c5\u6545\u4e8b\u4e2d\u7684\u60c5\u4fa3\u6f2b\u6b65\uff0c\u73ab\u7470\u6447\u66f3\u3002"} +{"id": "3005318", "video_name": "c029821f-448d-5fed-b93a-25e68a5cee99", "text": "\u94a2\u94c1\u4fa0\u903c\u771f\u7684\u6444\u5f71 Unreal\u5f15\u64ceOctane\u6e32\u67d3\u7167\u660e\u6444\u5f71\u767d\u9886\u624b\u6301\u767d\u65d7\u3002"} +{"id": "3004954", "video_name": "aaa62083-f0d9-5d28-8784-749baef9d536", "text": "\u7535\u6c14\u5de5\u7a0b\u5e08\u5728\u96c6\u88c5\u7bb1\u8239\u4e0a\u67e5\u770b\u51b7\u85cf\u96c6\u88c5\u7bb1\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "5001818", "video_name": "32c1c9bb-16d2-562b-9dc4-814e86e620f0", "text": "\u5f88\u591a\u53e4\u4ee3\u4e2d\u56fd\u5b66\u751f\u5927\u58f0\u6717\u8bfb\u3002"} +{"id": "0005473", "video_name": "1b600e27-46bc-50dc-b5ce-1802bf062fa4", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684Psychrolutes marcidus\uff08\u8fd0\u52a8Blobfish\uff09\u7684\u4e09\u7ef4\u56fe\u50cf\u3002"} +{"id": "8001437", "video_name": "d9491fc4-321b-59b4-99c6-66157d706bb7", "text": "\u7f8e\u4e3d\u7684\u4e30\u6ee1\u6027\u611f\u5973\u5b69\u5728\u591c\u5e97\u5730\u677f\u4e2d\u592e\u8df3\u821e\uff0c\u8eab\u5f62\u66fc\u5999\uff0c\u4e00\u5207\u90fd\u5728\u8df3\u52a8\u3002"} +{"id": "4004631", "video_name": "9b0d1340-bd82-5a54-9bf7-1d24bc9d8132", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u59d1\u5a18\u7a7f\u7740\u7ea2\u8272\u957f\u88d9\uff0c\u9a91\u7740\u4e00\u5339\u767d\u9a6c\u5728\u8349\u539f\u4e0a\u75be\u9a70\u3002"} +{"id": "0005448", "video_name": "1af02e0b-e00c-5da5-ab09-1aef79787d66", "text": "\u767d\u8272\u5154\u5b50\u89c2\u770b\u5c3c\u514b\u00b7\u5f17\u7f57\u65af\u7279\u5728\u6797\u5730\u91cc\u8dcb\u6d89\u7684\u96ea\u666f\u3002\u4e00\u4e2a\u53e4\u8001\u768470\u5e74\u4ee3BBC\u7535\u89c6\u8282\u76ee\u3002\u7535"} +{"id": "2005426", "video_name": "ca4a4649-eab6-58f9-bd33-8fcfea1aa69c", "text": "\u73b0\u4ee3\u6c7d\u8f66\u5728\u65b0\u897f\u5170\u7684\u516c\u8def\u65c5\u884c\u4e2d\u3002"} +{"id": "0005356", "video_name": "1953f51e-3fbf-5ac7-ad88-8b21e8aa12b5", "text": "\u6211\u4eec\u5b81\u9759\u7684\u5bb6\u56ed\u53d7\u5230\u4e86\u5a01\u80c1\u3002\u5de8\u9f99\u964d\u4e34\u6211\u4eec\u8eab\u8fb9\uff0c\u6295\u4e0b\u9634\u5f71\uff0c\u8986\u76d6\u6211\u4eec\u5fc3\u7231\u7684\u68ee"} +{"id": "3005191", "video_name": "c3dfe3b5-2d62-51b7-bd9b-6866d911acc8", "text": "\u6444\u5f71\uff1a\u4e00\u8f6e\u98d8\u6e3a\u7684\u6708\u4eae\u5347\u8d77\u5728\u606c\u9759\u7684\u666f\u8272\u4e0a\uff0c\u6563\u53d1\u51fa\u67d4\u548c\u795e\u5947\u7684\u5149\u8292\u3002\u4e00\u4e2a\u591c\u95f4\u7684"} +{"id": "4004915", "video_name": "76aeb303-f38a-574c-b7a5-5cf09b1d7544", "text": "\u4e00\u53f0\u5439\u4e91\u673a\u5728\u7f8e\u4e3d\u7684\u98ce\u666f\u4e0a\u65b9\u7684\u65e5\u51fa\u5904\u5439\u51fa\u4e91\u6735\u3002"} +{"id": "5001704", "video_name": "a076ebf4-ba03-57d8-b350-feb0603b9e92", "text": "\u76f4\u5347\u673a\u5728\u504f\u8fdc\u519c\u6751\u7684\u5e9f\u5f03\u519c\u573a\u7740\u9646\u3002"} +{"id": "7003992", "video_name": "1a69c779-c1c0-5e35-83c5-731b048931a0", "text": "\u5c55\u793a\u4e86\u4e00\u4e2a\u5b81\u9759\u4f20\u7edf\u7684\u5bfa\u5e99\uff0c\u4fe1\u5f92\u4eec\u5728\u7948\u7977\u548c\u51a5\u60f3\uff0c\u4ee3\u8868\u7740\u7cbe\u795e\u548c\u5b81\u9759\u7684\u5bf9\u6bd4\u573a\u666f\u3002"} +{"id": "5001243", "video_name": "055cc271-f523-5c35-90d0-e3d08f343942", "text": "\u5c0f\u5973\u5b69\u670b\u53cb\u7684\u751f\u65e5\u6d3e\u5bf9\uff0c\u513f\u7ae5\u751f\u65e5\u4f1a\u4ee5\u5361\u901a\u98ce\u683c\u4e3a\u4e3b\u9898\u3002"} +{"id": "3006040", "video_name": "5d2812e4-4bd8-5882-82d3-ffbe53838bc5", "text": "\u72ee\u5b50\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "3003917", "video_name": "86d67c9e-30df-500e-a575-c7b40fa4dce2", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u57281945\u5e74\u4e0e\u5916\u661f\u4eba\u6218\u6597\uff0c\u975e\u5e38\u903c\u771f\u7684\u7535\u5f71\uff0c\u6709\u8bb8\u591a\u7ec6\u8282\u3002"} +{"id": "1004663", "video_name": "56b58f8b-4e76-565a-9949-9afc0d2443fd", "text": "\u72d0\u72f8\u3001\u5154\u5b50\u548c\u4e4c\u9f9f\u5728\u6e38\u4e50\u573a\u4e0a\u73a9\u800d\u3002"} +{"id": "2004972", "video_name": "9407222f-6e6c-5449-ad68-8dd898ecdf53", "text": "\u7537\u5b69\u548c\u5973\u5b69\u5728Lo-fi\u97f3\u4e50\u4e2d\u63a5\u543b\u7684\u65f6\u523b"} +{"id": "2003319", "video_name": "c144c258-592a-52fa-949c-481bea090993", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u82b1\u56ed\u91cc\u5f39\u5409\u4ed6\u3002"} +{"id": "7002005", "video_name": "8cba2891-b01b-58bf-bee4-5ef75868a927", "text": "\u5b87\u5b99\u4e2d\u7684\u552f\u4e00\u6e90\u6cc9\u548c\u5b87\u5b99\u4e2d\u7684\u795e\u79d8\u5149\u7ebf\u76f8\u878d\u5408\u3002"} +{"id": "3006030", "video_name": "0139ef7e-252f-5d53-affd-5d8ee1ae763f", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ec4\u8272\u886c\u886b\u548c\u6df1\u84dd\u8272\u88e4\u5b50\u7684\u5973\u5b69\u628a\u4e00\u4e2a\u7f50\u5934\u76d2\u653e\u8fdb\u4e86\u56de\u6536\u7bb1\u3002\u80cc\u666f\u5e94\u8be5\u663e\u793a\u51fa\u6811"} +{"id": "8001851", "video_name": "d10130ba-d4ea-587c-b974-052d1d4157da", "text": "\u7528\u7535\u5f71\u62cd\u6444\u4e00\u4e2a\u5b81\u9759\u7684\u6751\u5e84\u573a\u666f\uff0c\u7530\u91ce\u91cc\u8f7b\u67d4\u7684\u5fae\u98ce\u62c2\u8fc7\u3002"} +{"id": "1006266", "video_name": "72c6d9d1-127b-52d7-9d63-cf554118e59c", "text": "\u901a\u5411\u771f\u7406\u7684\u7b2c\u4e00\u6761\u9053\u8def\uff0c\u610f\u8bc6\u4e4b\u8def\uff0c\u662f\u4f1f\u5927\u7684\u795e\u79d8\u4e3b\u4e49\u8005\u6240\u8d70\u7684\u8def\u3002"} +{"id": "8002169", "video_name": "caa696df-12b2-5e9c-9082-aacd6a6435b0", "text": "4K\uff0c\u620f\u5267\u6027\u7684\u706f\u5149\uff0c\u533b\u751f\u5728\u624b\u672f\u5ba4\u91cc\u8fdb\u884c\u624b\u672f\u3002"} +{"id": "4002034", "video_name": "81f34556-5a64-5a64-b103-7c3add9e409d", "text": "\u7537\u4eba\u5728\u665a\u4e0a\u542c\u5230\u4ed6\u623f\u5b50\u91cc\u795e\u79d8\u7684\u8fdc\u5904\u58f0\u97f3\u3002"} +{"id": "1004977", "video_name": "5c08eef2-32c3-53e0-86a1-f0e705338db1", "text": "\u592a\u9633\u7684\u5f62\u72b6\u50cf\u4e00\u4e2a\u4eba\u3002\n\nSource sentence: I am going to the store to buy groceries.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u98df\u54c1\u3002"} +{"id": "2003399", "video_name": "402c4123-83bd-5404-a145-085855b0ebf7", "text": "\u9152\u5427\u9152\u6c34\u5145\u8db3\u3002\u4fe1\u606f\uff1a\u83ab\u8389\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005226", "video_name": "16e89e4e-e7d9-5ba4-b769-053707c73451", "text": "\u4e00\u53f0\u642d\u914d\u8d85\u903c\u771f\u672a\u6765\u611f\u76d4\u7532\u548c\u67aa\u68b0\u7684\u673a\u5668\u4eba\u6b63\u9762\u884c\u8d70\u4e8e\u4e2d\u592e\u3002 \n\nSource sentence: The restaurant is located on the corner of Main"} +{"id": "3003397", "video_name": "950a30f6-d66d-5c2b-981f-76692746d1ba", "text": "\u5973\u5b69\u5e2e\u52a9\u6751\u5e84\u5b9e\u73b0\u4e86\u548c\u5e73\u3002\n\nSource sentence: My favorite color is blue. \n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "1006769", "video_name": "7bee4415-e984-56cb-bfcc-3ec9f8440880", "text": "\u5929\u7a7a\u4e2d\u661f\u96e8\u5012\u6620\uff0c\u591c\u665a\u4e0d\u65ad\u6269\u5927\u5faa\u73af\u64ad\u653e\uff0c4k\u753b\u8d28\u3002"} +{"id": "6004867", "video_name": "25cf7c08-acac-5d2c-b9f5-01a94ecd8547", "text": "\u9e7f\u5e73\u9759\u7684\u9886\u5bfc\u6307\u5f15\u7740\u52a8\u7269\u793e\u533a\u3002"} +{"id": "4002265", "video_name": "23d4812e-86f9-5089-a655-03a011be06c8", "text": "\u65af\u5927\u6797\u5728\u7269\u7406\u8bfe\u4e0a\u9762\u5bf9\u5b66\u751f\u624b\u6301\u94c1\u9524\u3002"} +{"id": "8002650", "video_name": "1c4435a8-5729-5d7c-8a96-af1e68f02246", "text": "\u4e00\u4e2a\u6234\u7740VR\u5934\u76d4\u7684\u5973\u4eba\uff0c\u8377\u5170\u89d2\u5ea6\u7684\u6444\u50cf\u673a\u89c6\u89d2\uff0c\u7ad9\u5728\u8d85\u5e02\u5185\u90e8\uff0c3:2\u7684\u753b\u9762\u6bd4\u4f8b\uff0c\u660f\u6697\u7684\u706f"} +{"id": "2006496", "video_name": "07da299c-cb64-5c37-826c-a190845a0d88", "text": "\u8c26\u5351\u7684\u519c\u6c11\u51b3\u5b9a\u91c7\u53d6\u884c\u52a8\u3002"} +{"id": "4002448", "video_name": "301cc709-6337-5938-bbeb-7f6a7d7e15e0", "text": "15\u79d2\u7684\u89c6\u9891\u91cc\uff0c\u4e00\u4e2a\u62e5\u6709\u7f8e\u4e3d\u5934\u53d1\u548c\u4e30\u6ee1\u8eab\u6750\u7684\u5973\u5b69\uff0c\u4f18\u96c5\u5730\u8d70\u52a8\u7740\uff0c\u6bcf\u8d70\u4e00\u6b65\u98ce\u683c\u5c31\u968f\u4e4b\u53d8"} +{"id": "2007412", "video_name": "bd24dce8-f2ab-5405-b98d-a1b85aaa2fb5", "text": "\u4e00\u53ea\u868a\u5b50\u5728\u591c\u95f4\u8ba9\u4e00\u4e2a\u4eba\u65e0\u6cd5\u5728\u4ed6\u7684\u623f\u95f4\u91cc\u7761\u89c9\u3002"} +{"id": "6003785", "video_name": "ea6282eb-d76a-5153-9749-8ade471ecee6", "text": "\u767d\u8272\u7684\u6811\u6728\uff0c\u9ed1\u8272\u7684\u8349\u5730\uff0c\u672a\u6765\u4e3b\u4e49\u6781\u7b80\u68ee\u6797\uff0c\u767d\u8272\u7684\u70df\u96fe\uff0c\u795e\u5723\u7684\u5149\u8292\uff0c\u7535\u5f71"} +{"id": "1003153", "video_name": "3a229666-1bf5-5afb-90a6-fce29484fb06", "text": "\u5973\u5b69\u8eba\u5728\u8349\u5730\u4e0a\u770b\u8457\u5929\u7a7a\uff0c3D\uff0c\u8d85\u903c\u771f\u3002\u96fb\u5f71\u93e1\u982d\uff0c\u6162\u52d5\u4f5c\u3002\u9ad8\u6e05\uff0c9:16\u3002"} +{"id": "0005341", "video_name": "191b09f9-2a9c-5a70-9886-7ccbc76deb7d", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u4e0a\u7684\u4e00\u4e2a\u5bb3\u6015\u7684\u7537\u4eba\u3002"} +{"id": "0003857", "video_name": "44b25bf1-04f9-55fa-bc65-9c6f99b88c06", "text": "\u4f0a\u65af\u5170\u6559\u7267\u5e08\u4ee5\u67d4\u548c\u7684\u58f0\u97f3\u53d1\u8868\u5e03\u9053\u3002"} +{"id": "6003878", "video_name": "78c1087b-d72b-5042-a6a0-629397536ae7", "text": "\u4e16\u754c\u94c1\u8def\u5730\u56fe"} +{"id": "4004031", "video_name": "50e7bf4e-5e55-5152-827c-3c35b120d9ed", "text": "\u4e00\u4e2a\u7231\u4e0a\u592a\u9633\u7684\u5f57\u661f\uff0c\u592a\u7a7a\u9cb8"} +{"id": "3005796", "video_name": "5bf24703-8243-56f8-bc51-fbfd133c9f6f", "text": "\u4e00\u53ea\u732b\u5728\u5546\u5e97\u91cc\u73a9\u5177\u3002"} +{"id": "3005995", "video_name": "601f6e86-5cb8-5039-a0e7-fd48582fc640", "text": "\u4e00\u4e2a\u7537\u4eba\u50cf\u661f\u7403\u5927\u6218\u4e00\u6837\u6253\u6597\u3002\u89c6\u9891\u65f6\u957f\u4e3a9\u79d2\u3002"} +{"id": "4002583", "video_name": "e913311f-7c8d-58d2-8edd-35c5464da0f6", "text": "\u751f\u6210\u4e00\u5f20\u5b5f\u4e70\u7e41\u5fd9\u8857\u9053\u4e0a\u6709\u4eba\u548c\u8f66\u8f86\u7684\u56fe\u7247\u3002"} +{"id": "4002616", "video_name": "93088e3e-415f-5814-a25d-22f1d2622e5b", "text": "\u4e00\u4e2a\u98de\u5f80\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u5b87\u822a\u5458\u3002"} +{"id": "2003036", "video_name": "dfc62777-21d2-58e3-9ef4-ce6845a3b82f", "text": "2D\u52a8\u6f2b\uff0c\u53e4\u4ee3\u54c8\u8428\u514b\u7537\u5973\u6d6a\u6f2b\u573a\u666f\u3002"} +{"id": "1004666", "video_name": "56bc02ee-c74a-5061-b3b9-5690a5877aa7", "text": "\u4e07\u5723\u8282\u88c5\u626e\u7684\u5b69\u5b50\u4eec\u8d70\u8fc7\u88ab\u9b3c\u9b42\u51fa\u6ca1\u7684\u8c6a\u5b85\uff0c\u5f39\u51fa\u7684\u9b3c\u9b42\u5413\u552c\u7740\u4ed6\u4eec\u3002"} +{"id": "4002786", "video_name": "94f7a17d-81ea-5fda-9f59-1311047ca190", "text": "\u5b99\u65af\uff0c\u6240\u6709\u795e\u7684\u7edf\u6cbb\u8005\uff0c\u96f7\u795e\uff0c\u5199\u5b9e\u7ed8\u753b"} +{"id": "3004913", "video_name": "c57249dd-a16b-5670-8605-993265da85aa", "text": "\u4e00\u7247\u9762\u5305\u5728\u684c\u5b50\u4e0a\u7f13\u6162\u5730\u6389\u843d\u3002"} +{"id": "6002725", "video_name": "a573ca98-bf55-561f-a99b-5ed1fca4c400", "text": "\u8303\u59ae\u838e\u00b7\u65af\u57fa\u4e9a\u7ef4\u6b63\u5728\u5403\u7c73\u996d\u548c\u9c7c\u3002"} +{"id": "8003324", "video_name": "87439c17-d1d1-5773-a075-672260678aa4", "text": "\u5e74\u8f7b\u7537\u5b69\u957f\u53d1\u98d8\u9038\uff0c\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u5c71\u5ce6\u4e4b\u95f4\uff0c\u4e91\u6735\u98d8\u52a8\u3002"} +{"id": "3004024", "video_name": "e12b58e0-56b6-5f3b-9d10-4f6a280a5c9b", "text": "\u4e00\u53ea\u5e26\u7740\u4eba\u624b\u7684\u91d1\u6bdb\u730e\u72ac\u5750\u5728\u7535\u8111\u524d\u5199\u4ee3\u7801\u3002"} +{"id": "6004652", "video_name": "c5653e24-1b1f-5eb4-81fc-04b219986fc8", "text": "\u5728\u6c34\u4e0b\u6316\u6398\u7684\u5e9f\u589f\uff0c\u4ee5\u68a6\u5e7b\u822c\u7684\u5efa\u7b51\u98ce\u683c\uff0c\u955c\u5934\u8000\u6591\uff0c\u963f\u5179\u7279\u514b\u827a\u672f\uff0c\u5c0f"} +{"id": "2003786", "video_name": "e7db026c-932c-5f2f-a2cd-eb073172902a", "text": "\u4e00\u53ea\u7c89\u8272\u7684\u5916\u661f\u4eba\u5728\u8367\u5149\u8611\u83c7\u4e1b\u6797\u4e2d\u5954\u8dd1\uff0c\u5468\u56f4\u7684\u690d\u88ab\u5f02\u5e38\u3002"} +{"id": "8002741", "video_name": "8ef0f828-0ef3-5280-bfb6-29b705e4e6b6", "text": "\u4e00\u9996\u540d\u4e3a\u201c\u4eb2\u7231\u7684\u524d\u4efb\u201d\u7684\u6b4c\u66f2\u7684\u4e09\u5206\u949f\u97f3\u4e50\u89c6\u9891\u3002\u7537\u4eba\u5728\u4fe1\u4e2d\u56de\u5fc6\u8d77\u4ed6\u4eec\u4ece\u4e00\u5f00\u59cb\u4e00\u8d77\u7ecf\u5386\u7684\u6240\u6709\u7f8e\u597d\u65f6\u523b"} +{"id": "7002322", "video_name": "8f98685c-15c5-5a23-a567-d31a84985565", "text": "\u7279\u65af\u62c9\u548c\u7231\u8fea\u751f\u5438\u5927\u9ebb\uff0c\u7f55\u89c1\u9ed1\u767d\u7535\u5f71\u955c\u5934\u3002"} +{"id": "2007411", "video_name": "e15d4065-11ad-5d35-9031-39bff408b62f", "text": "\u96ea\u6811\u5728\u9633\u5149\u4e0b\u95ea\u95ea\u53d1\u5149\uff0c\u5728\u96ea\u7684\u91cd\u91cf\u4e0b\u95ea\u8000\u3002"} +{"id": "8001136", "video_name": "1f43c77a-10c4-5433-8fc2-78989cfd9b9d", "text": "day\n\n\u4e00\u53ea\u9ed1\u8272\u7684\u814a\u80a0\u72ac\u5728\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\u5bf9\u4e00\u53ea\u732b\u72c2\u5420\u3002"} +{"id": "6002267", "video_name": "6c047c53-1ed6-5422-a88c-85b1ec79bfed", "text": "\u4eba\u4eec\u5728\u4e0d\u540c\u573a\u666f\u4e0b\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u548c\u667a\u80fd\u624b\u673a\u5728\u7ebf\u5de5\u4f5c\u3001\u521b\u4e1a\u548c\u6295\u8d44\uff0c\u6bd4\u5982\u5728\u5e8a\u4e0a\u3001\u5728\u6c99\u53d1\u4e0a\u548c\u5728\u684c\u5b50"} +{"id": "2005838", "video_name": "24141e95-846c-5670-a4e8-64206d3bfff8", "text": "\u5730\u4e0b\u5148\u8fdb\u6587\u660e\u9057\u5740\u4e2d\u6709\u7740\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u53e4\u602a\u602a\u7269\uff0c\u8d70\u52a8\u7684\u91d1\u5c5e\u6784\u9020\u4f53\uff0c\u50cfH.R\u5409"} +{"id": "0003301", "video_name": "3b49c7ce-15fa-5ffa-a905-062f21611973", "text": "\u94f6\u9f99\u6e10\u53d8\u4e3a\u91d1\uff0c\u4e2d\u534e\u9f99\uff0c\u56e2\u7ed3\u521b\u9020\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u9ad8\u7cbe\u5ea6\uff0c\u5b8c\u6574\uff0c\u60ca\u4eba\uff0c\u7f8e\u4e3d\uff0c\u7ec6\u8282\u7cbe"} +{"id": "1006871", "video_name": "7d7df8fd-1889-5ceb-9277-44cf1a4563d0", "text": "\u4e00\u8f86\u5185\u90e8\u88c5\u6709\u8725\u8734\u7684\u9a6c\u8f66\u5230\u8fbe\u4e86\u6d88\u9632\u7ad9\u3002"} +{"id": "7002617", "video_name": "14571dc7-b894-555a-a37e-d37e03df3727", "text": "\u5c3c\u5b89\u5fb7\u7279\u5987\u5973\u5728\u5e9f\u589f\u4e0a\u6d82\u9e26\u3002\u767d\u8272\u7684\u6c99\u6f20\u3002\u84dd\u8272\u7684\u5929\u7a7a\u3002\u8d85\u903c\u771f\u7684\u3002"} +{"id": "2006478", "video_name": "0c02ac82-4254-5db9-b169-6b5656479059", "text": "\u5236\u4f5c\u7a7f\u7740\u8fd9\u4ef6\u8fde\u5e3d\u886b\u7684\u7537\u6027\u6a21\u7279\uff0c\u5c3d\u53ef\u80fd\u903c\u771f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002701", "video_name": "9a3105c9-63f1-5cef-a757-8b513088b1e8", "text": "\u9ad8\u6e05\u8d85\u5206\u8fa8\u7387\u7684\u7ec6\u8282\u5370\u5ea6\u5973\u4eba\u5e7b\u60f3\u822c\u7684\u5f62\u8c61\uff0c\u8d85\u8be6\u7ec6\u73b0\u5b9e\uff0c\u6bcf\u4e2a\u7ec6\u8282\u90fd\u7cbe\u7ec6\u5730\u63cf\u7ed8\u4e86\u3002"} +{"id": "0003292", "video_name": "3b0e0a2c-8639-5468-aa73-5f3215a06d83", "text": "\u7535\u5f71\u822c\u660f\u6697\u7684\u623f\u95f4\u4e2d\u592e\u6709\u4e00\u4e2a\u4eba\u7ad9\u7740\uff0c\u6234\u7740\u4e00\u4e2a\u8c61\u6708\u7259\u5f62\u72b6\u7684\u9676\u74f7\u9762\u5177\uff0c\u8fd9\u662f\u4e00\u4e2a\u827a\u672f"} +{"id": "2004382", "video_name": "1f091f5e-004d-555e-87ad-3e2cceac2002", "text": "\u5728\u7e41\u534e\u90fd\u5e02\u7684\u4e2d\u5fc3\uff0c\u4f4f\u7740\u4e00\u4e2a\u597d\u5947\u7684\u5c0f\u5973\u5b69\u53eb\u8389\u8389\u3002\u5979\u6709\u4e00\u53cc\u5927\u800c\u660e\u4eae\u7684\u773c\u775b\uff0c"} +{"id": "5001333", "video_name": "690142c4-17ea-5d46-a810-39bc6de05406", "text": "\u53e4\u8001\u7684\u53d9\u5229\u4e9a\u738b\u56fd\uff0c\u6709\u5bab\u6bbf\u548c\u5e02\u573a\u3002"} +{"id": "5001199", "video_name": "03459aa2-e6f0-5f8d-8a90-ec3ec453a40b", "text": "\u4e00\u4e2a\u7531PVC\u7ba1\u5236\u6210\u7684\u5782\u76f4\u6c14\u96fe\u5f0f\u82b1\u56ed\uff0c\u91cc\u9762\u79cd\u690d\u4e86\u690d\u7269\uff0c\u6709\u8001\u5e08\u3001\u51e0\u4e2a\u5b66\u751f\u548c\u4eba\u5de5\u667a\u80fd"} +{"id": "5001790", "video_name": "ef372831-ad7f-5e1f-8828-72ac5d691ff9", "text": "\u6df1\u5165\u6316\u6398\u8d1d\u5b81\u57ce\u5899\u7684\u5b8f\u5927\u89c4\u6a21\uff0c\u5f3a\u8c03\u5176\u4f5c\u4e3a\u5353\u8d8a\u4eba\u7c7b\u6210\u5c31\u7684\u72ec\u7279\u6027\u3002"} +{"id": "0004986", "video_name": "12c46cd1-3241-599d-8099-0bcdeb2887a2", "text": "\u7537\u5b69\u5728\u6728\u5c4b\u91cc\u7761\u89c9\uff0c\u7a97\u53e3\u4e2d\u900f\u8fdb\u9633\u5149\uff0c\u51ac\u5929\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\uff0c\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "0003050", "video_name": "362403e9-76c0-5e77-bd65-6835c7cf283e", "text": "\u957f\u957f\u7684\u5a74\u513f\u9999\u6c34\u5728\u5168\u4e16\u754c\u8d70\u6765\u8d70\u53bb\uff0c\u4f7f\u5f97\u9999\u6c34\u4e4b\u6218\u5f00\u59cb\u4e86\u3002"} +{"id": "1006267", "video_name": "72c9d9fe-da05-5af3-9df2-c6cd4321cce0", "text": "\u4e00\u5f20\u5e7f\u544a\u5355\u53cd\u76f8\u673a\u62cd\u6444\u7684\u51b0\u6dc7\u6dcb\u8584\u8377\u5de7\u514b\u529b\u878d\u5316\u5728\u9525\u7b52\u4e0a\u7684\u7167\u7247\u3002"} +{"id": "1005626", "video_name": "677081cd-8567-5882-92ed-b5e64f1ee2d2", "text": "\u98de\u8239\u7684\u9a7e\u9a76\u8231\uff0c\u98de\u884c\u5458\u773c\u4e2d\u7684\u9a7e\u9a76\u8231\u548c\u524d\u65b9\u661f\u7cfb\u7684\u89c6\u91ce\u3002"} +{"id": "0005942", "video_name": "23951c86-ebe9-5721-a5af-07ec11a41594", "text": "\u6ca1\u6709\u610f\u4e49\uff0c\u8fd9\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u53e5\u5b50\u3002 (This is meaningless, it is not a valid sentence.)"} +{"id": "4003134", "video_name": "d89b8561-3f95-5a47-8f98-99036f25eff4", "text": "\u592a\u7a7a\u4e2d\u7684\u94bb\u77f3\u96e8\u3002\u7a81\u7136\u51fa\u73b0\u4e86\u4e00\u53ea\u5916\u661f\u751f\u7269\u3002"} +{"id": "2005166", "video_name": "0874e8f1-e3bd-5db3-a97f-383151c1053f", "text": "\u4e00\u53ea\u814a\u80a0\u72d7\u5b9d\u5b9d\u5728\u539f\u6728\u5c0f\u5c4b\u91cc\u7684\u58c1\u7089\u65c1\u8fb9\u7761\u89c9\u7684\u4e94\u79d2\u77ed\u89c6\u9891\uff0c\u4e00\u4e2a\u7a7f\u7740\u5723"} +{"id": "5001343", "video_name": "ddb3407a-2c6a-52da-85be-1765d1333617", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u602a\u517d\u7ae0\u9c7c\u62b1\u7740\u6cf0\u59ec\u9675\u5728\u6c34\u707e\u4e2d\uff0c\u80cc\u666f\u88ab\u6c34\u6df9\u6ca1\u3002"} +{"id": "3003325", "video_name": "2281f6e3-d1c3-507f-9723-9bd39d01f9eb", "text": "\u5723\u4eba\u5750\u7740\u6fc0\u52b1\u4ed6\u4eba\u7684\u5361\u901a\u89c6\u9891\u3002"} +{"id": "2003713", "video_name": "19bd449d-df7b-524f-a7bf-4886d06dc467", "text": "\u4e00\u4e2a\u5fae\u63a7\u5236\u5668\uff08Arduino\uff09\u8fc5\u901f\u901a\u8fc7\u4e00\u6839\u7ebf\u8fde\u63a5\u5230\u667a\u80fd\u4f20\u611f\u5668\u4e0a\u3002\uff08\u52a8\u753b\u6548\u679c\uff09zoom up"} +{"id": "1006193", "video_name": "71657bd9-711b-527b-ab75-e53918265d04", "text": "\u7c73\u7279\u00b7\u7f57\u59c6\u5c3c\uff0c\u683c\u6597\u5fcd\u8005\u70ed\u72d7\uff0c4K\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "0005493", "video_name": "1bcc6a30-4764-5134-9c34-0c30a8d09534", "text": "\u7814\u7a76\u4eba\u5458\u6b63\u5728\u5b9e\u9a8c\u5ba4\u7684\u8d70\u5eca\u4e0a\u8d70\uff0c\u5730\u677f\u662f\u4ee5\u4e4c\u6728\u4e3a\u6750\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "0006254", "video_name": "295ce37b-9af9-571f-9797-612c220d7564", "text": "\u5728\u5bd2\u51b7\u7684\u591c\u665a\uff0c\u4e00\u4f4d\u8001\u4eba\u72ec\u81ea\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "2004546", "video_name": "c3113e68-e752-530b-92c5-f532c30e0880", "text": "\u4e00\u4e2a\u7f51\u7403\u9009\u624b\u53d1\u51fa\u4e86\u4e00\u8bb0\u738b\u724c\u7403\u3002"} +{"id": "3005635", "video_name": "10f32830-d9ca-5472-a700-9b2c899f64c1", "text": "\u6570\u5b57\u5316\u7684\u52a8\u6f2b\u98ce\u683c\u63d2\u753b\uff0c\u9ea6\u7530\u3002"} +{"id": "8003715", "video_name": "1bf8ec1f-2ccf-5525-920e-4607839cc248", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5927\u773c\u775b\u8d70\u8def\u7684\u7cbe\u7075\u56fe\u3002"} +{"id": "0006076", "video_name": "2642097d-19d5-5508-bf32-576a9592cd83", "text": "3D\u672a\u6765\u4e3b\u4e49\u9713\u8679\u7ebf\u6761\u5efa\u7b51\u5fae\u6ce2\u84dd\u56fe\u3002"} +{"id": "6003336", "video_name": "c7dd0f54-bf3f-5e5b-b409-65047d99f7b7", "text": "\u884c\u52a8\u573a\u666f\uff1a\u7231\u9ed8\u751f\u5728\u8ffd\u9010\u6216\u5bf9\u6297\u4e2d\uff0c\u53ef\u80fd\u5728\u5c0f\u5df7\u91cc\u3002\u5c3d\u7ba1\u573a\u666f\u548c\u52a8\u4f5c\u662f\u903c\u771f\u7684\uff0c\u4f46\u9ed1\u8272\u7535\u5f71\u98ce\u683c"} +{"id": "4002349", "video_name": "de9412fc-fcca-55df-bdfa-e17393954426", "text": "\u83f2\u4e9a\u7279\u675c\u5361\u6258\u9762\u5305\u8f66\u6b63\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "6004545", "video_name": "a2811ffa-a5c0-5c00-b157-9d8ed02cbe6e", "text": "\u5e7d\u7075\u822c\u7684\u5f62\u72b6\u6d88\u5931\u5728\u89c6\u91ce\u4e2d\uff0c\u878d\u5165\u8d70\u5eca\u7684\u9634\u5f71\u4e2d\u3002\u9ad8\u6e05\u6670\u5ea6\u3001\u9ad8\u7ec6\u8282\u3001\u7535\u5f71\u5316\u30021\u4e2a"} +{"id": "1006761", "video_name": "7bc2e909-7b34-5570-8763-c4e210cf42b3", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u80e1\u6843\uff08\u539f\u795e\uff09\uff0c\u957f\u53d1\uff0c\u68d5\u8272\u5934\u53d1\uff0c\u53cc\u9a6c\u5c3e\uff0c\u7ea2\u8272\u773c\u775b\uff0c\u5e3d\u5b50\uff0c\u957f\u8896\uff0c\u4e2d\u56fd\u670d\u88c5\uff0c"} +{"id": "8002897", "video_name": "c134201d-9ae2-5b11-89eb-19f936db4cb6", "text": "\u5f17\u5170\u514b\u00b7\u8f9b\u7eb3\u5c48\u5728\u96e8\u4e2d\u6f14\u5531"} +{"id": "2004982", "video_name": "466637de-0d53-576a-a939-260941212012", "text": "\u6770\u91cc\u7c73\u5f88\u5e05\u3002\u4fe1\u606f\uff1a\u592a\u7a7a\u7235\u58eb\u4e50\u961f\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003546", "video_name": "37ec6c49-47b7-5483-90a5-5dfb179d09e9", "text": "\u4ece\u65e9\u5230\u665a\u53d8\u5e7b\u591a\u5f69\u7684UPVC\u7a97\u6237\u3002"} +{"id": "3003458", "video_name": "87b27ae4-d24e-5f0d-b1b0-b0e2f31cf0eb", "text": "\u4e00\u4e2a\u9ad8\u5927\u3001\u7ebf\u6761\u6d41\u7545\u7684\u4eba\u7c7b\u8eab\u4f53\uff0c\u957f\u7740\u4e00\u53ea\u8ff7\u4eba\u5c71\u7f8a\u7684\u5934\u3002"} +{"id": "1005407", "video_name": "635df97a-4696-5dc2-bf87-0ea5dfc8be0c", "text": "\u521b\u9020\u4e00\u4e2a\u5145\u6ee1\u5996\u602a\u6f5c\u4f0f\uff0c\u8bd5\u56fe\u593a\u53d6\u5730\u7403\u63a7\u5236\u6743\u7684\u4e16\u754c\u3002"} +{"id": "3004480", "video_name": "2d320a9a-d3e1-5f1c-9086-2bddc216a13c", "text": "\u7535\u5f71\u9884\u544a\u7247\u98ce\u683c\uff0c\u7535\u5f71\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u672a\u6765\u79d1\u5e7b\u52a8\u4f5c\u7535\u5f71\uff0c\u5e9f\u5f03\u7684\u65cb\u8f6c\u8f68\u9053\u672a\u6765\u592a\u7a7a\u7ad9\u57ce\u5e02"} +{"id": "3004443", "video_name": "a3e77a18-ce70-58c7-81a3-b8bbc4755571", "text": "\u5bfb\u6c42\u590d\u4ec7\u548c\u6b63\u4e49\u7684\u7537\u4eba\u3002"} +{"id": "7002863", "video_name": "708ff47d-cf51-5c38-9d50-0886d8d5f873", "text": "\u4e00\u53ea\u867e\u80cc\u7740\u4e00\u4e2a\u5927\u9505\u3002"} +{"id": "3004016", "video_name": "ffa74688-5f0d-517f-a581-4da7aa81999c", "text": "\u6211\u5411\u4f60\u53d1\u8a93\uff0c\u6211\u7684\u5c0f\u5973\u5b69\uff0c\u8fd9\u5c06\u662f\u6700\u540e\u4e00\u573a\u6218\u4e89\u3002"} +{"id": "8002598", "video_name": "f2c7d03c-af7a-5557-946b-5f692f27dc8a", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u7537\u5b50\u5728\u5411\u6444\u50cf\u673a\u8bb2\u8bdd"} +{"id": "1006453", "video_name": "76210def-8fe5-5d2d-8461-998216ea6404", "text": "\u9a6c\u514b\u9f99\u5728\u7279\u65af\u62c9Model Y Performance\u524d\u8df3\u821e\u3002"} +{"id": "1003754", "video_name": "45385880-bb90-5da3-916b-1c70bd475d7a", "text": "\u8857\u5934\u9738\u738b\u4e2d\u6bd2\u4eba\u7269\u8096\u50cf\uff0c\u98ce\uff0c\u7c89\u7ea2\u8272\u5934\u53d1\uff0c\u8b66\u5bdf\u670d\u88c5\u3002"} +{"id": "8002185", "video_name": "b574ea76-a4d6-5140-8fcb-b2e955ea8678", "text": "\u53d1\u73b0\u4e8c\u6218\u671f\u95f4\u7684\u673a\u7532\u5766\u514b\u5f71\u50cf\u3002"} +{"id": "1004141", "video_name": "4cbcbb9a-f1a6-5402-b55e-272d914f0871", "text": "\u57fa\u4e8e\u6211\u63d0\u4f9b\u7684\u5267\u672c\u5236\u4f5c\u52a8\u753b\u89c6\u9891\uff0c\u914d\u4ee5Uber Eats\u5728\u5370\u5ea6\u5e02\u573a\u4e0a\u5931\u8d25\u7684\u914d\u97f3\u3002"} +{"id": "2006152", "video_name": "8b9755b5-de0a-5ca8-81ed-16b8d6eeee8f", "text": "\u4e00\u4e2a\u8eab\u6750\u5065\u7f8e\u3001\u7a7f\u7740\u767d\u8272\u5408\u8eab\u5185\u8863\u7684\u5df4\u57fa\u65af\u5766\u5e05\u6c14\u7537\u5b69\u7ad9\u5728\u623f\u95f4\u91cc\u3002"} +{"id": "1003909", "video_name": "482ef570-e22a-596e-996a-48646d99a826", "text": "\u7528\u5357\u7f8e\u539f\u4f4f\u6c11\u7b26\u53f7\u521b\u4f5c\u4e00\u90e8\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u3002"} +{"id": "1006992", "video_name": "7ff24ff1-5291-573a-a95c-2af2f52a865e", "text": "\u5728\u53e4\u8001\u7684\u963f\u5179\u7279\u514b\u9057\u5740\u4e0a\u65b9\u98de\u884c\uff0c\u9ad8\u9ad8\u5728\u4e0a\u4fef\u77b0\u6811\u6728\u3002"} +{"id": "3004282", "video_name": "8cbb0e5f-ada4-56af-9a5e-a45d67cd3d44", "text": "\u62a4\u58eb\u5728\u6025\u8bca\u5ba4\u8df3\u821e\u3002"} +{"id": "0003929", "video_name": "00061267-7a29-5ba0-96a1-18b6b83852eb", "text": "\u4e00\u4e2a\u514b\u9686\u4f53\u5728\u5de8\u5927\u7684\u7403\u4e0a\u8d70\u7740\u5706\u5708\u3002"} +{"id": "5001464", "video_name": "b78ac3e6-3116-5d3c-a18d-35efd635ff0a", "text": "\u5de8\u5927\u7684\u661f\u9645\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u88ab\u5c0f\u578b\u6218\u8230\u5305\u56f4\uff0c\u50cf\u300a\u661f\u7403\u5927\u6218\u300b\u98ce\u683c\u7684\u7535\u5f71\uff0c\u53f2\u8bd7\u822c\u7684"} +{"id": "6003385", "video_name": "ac42dfcf-41e3-58d0-bfdf-6184241874ff", "text": "\u4eca\u5929\u6211\u53bb\u4e86\u6d77\u8fb9\uff0c\u6d77\u98ce\u5f88\u6e29\u548c\uff0c\u5c31\u50cf\u6211\u60f3\u5ff5\u7684\u90a3\u4e2a\u4eba\u4e00\u6837\u3002"} +{"id": "2003165", "video_name": "4b1bda90-f6c1-563f-b8c3-122be524a707", "text": "\u4e24\u4e2a\u8001\u4eba\u5750\u5728\u9713\u8679\u5df4\u9ece\u5496\u5561\u9986\u7684\u684c\u5b50\u65c1\uff0c\u540e\u9762\u662f\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u80cc\u666f\u3002"} +{"id": "6004557", "video_name": "ac6e0a90-2706-54a8-bac1-3bbf91a4b5b5", "text": "\u9ed1\u6697\u7684\u6c34\u69fd\u4e2d\u5fc3\u7684\u8367\u5149\u6c34\u6bcd"} +{"id": "2003625", "video_name": "ecd92337-835d-573a-8640-e647a8873ac9", "text": "\u4e00\u4e2a\u6751\u6c11\u5973\u4eba\u7a7f\u7740\u6751\u6c11\u7684\u8863\u670d\uff0c\u8eab\u5904\u4e00\u5ea7\u8001\u65e7\u7684\u6751\u5e84\u623f\u5b50\u91cc\uff0c\u623f\u95f4\u91cc\u6709\u4e00\u5f20\u684c\u5b50\u548c\u4e00\u4e2a\u7a97"} +{"id": "8002117", "video_name": "8066d5d3-dce3-5540-87bc-ba96938fdefd", "text": "\u4e24\u53ea\u8001\u9f20\u5728\u6d1e\u53e3\u76f8\u7231\u4e86\u3002"} +{"id": "2003355", "video_name": "de934889-35d8-5f90-aec1-e1357e32e6e5", "text": "12. \u4e00\u7fa4\u5728\u6d3e\u5bf9\u4e0a\u7684\u670b\u53cb\u3002"} +{"id": "2003276", "video_name": "202d1724-25d4-5244-9342-31ca60a460a9", "text": "\u4e00\u4e2a\u975e\u5e38\u5927\u7684\u5b66\u6821\uff0c\u770b\u770b\u91cc\u9762\u3002\u8fd9\u6240\u5b66\u6821\u5728\u672a\u6765\u3002"} +{"id": "4003991", "video_name": "64ff81ba-f526-5e39-9fac-c0fdc3b78650", "text": "\u4e00\u53ea\u8c26\u865a\u53ef\u7231\u7684\u9ebb\u96c0\u5750\u5728\u6811\u679d\u4e0a\uff0c\u4ef0\u671b\u7740\u4e00\u53ea\u7f8e\u4e3d\u7684\u5b54\u96c0\u3002"} +{"id": "6003286", "video_name": "53f6102a-8208-5667-ab7c-8a6b08f4adc1", "text": "\u591c\u95f4\u5496\u5561\u9986\u7684\u5165\u53e3\uff0c\u95e8\u5f00\u4e86\u6211\u4eec\u8d70\u8fdb\u53bb\uff0c\u6709\u4e00\u79cd\u6d6a\u6f2b\u7684\u6c1b\u56f4\uff0c\u9c9c\u82b1\u3001\u97f3\u4e50\u5bb6\u3001\u987e\u5ba2"} +{"id": "4004760", "video_name": "b8e94bee-d99b-5d7f-8bef-bd36b09a58df", "text": "\u65e5\u843d\u65f6\u5c9b\u4e0a\u6d41\u661f\u98de\u8fc7\u7684\u84b8\u6c7d\u6ce2\u6d6a\u3002"} +{"id": "4002287", "video_name": "d74ff4a3-136b-5567-8738-d6dd6682dbe8", "text": "\u4ed3\u9f20\u4e0d\u52a8\uff0c\u53ea\u6709\u5634\u5df4\u548c\u773c\u775b\u52a8\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "3005011", "video_name": "9519efd2-2982-50bb-b77b-5ad2deb53700", "text": "\u5f17\u62c9\u57fa\u7c73\u5c14\u00b7\u666e\u4eac\u4e0e\u4e66\u300a\u539f\u5b50\u4e4b\u5fc3\u300b\u8df3\u821e\u3002"} +{"id": "7004944", "video_name": "2e573324-5263-5b11-ac65-edc3fe6ea368", "text": "\u5728\u4e00\u676f\u70ed\u8336\u4e2d\u79fb\u52a8\u7684\u5e06\u8239\uff0c\u676f\u5b50\u900f\u660e\uff0c\u7126\u70b9\u5728\u5e06\u8239\u4e0a\uff0c35\u6beb\u7c73\u3002"} +{"id": "2003287", "video_name": "c3822842-bd9b-5435-a643-84d99901c698", "text": "\u5979\u4e0e\u51ef\u6492\u7684\u6d6a\u6f2b\u5173\u7cfb\u4ee4\u7f57\u9a6c\u611f\u5230\u9707\u60ca\u3002"} +{"id": "5001410", "video_name": "a5082ea6-1839-5d4a-93d4-323553cc7ab0", "text": "\u4e00\u4f4d\u7a7f\u7740\u5168\u526f\u76d4\u7532\u3001\u76d4\u7532\u4e0a\u96d5\u523b\u7740\u5347\u8d77\u7684\u592a\u9633\u7684\u6b66\u58eb\uff0c\u80cc\u666f\u662f\u6ee1\u6708\u3002"} +{"id": "0003564", "video_name": "3f9b9615-f35a-5b46-939e-80b67ab4a5db", "text": "\u53e4\u57c3\u53ca\u7684\u6cd5\u8001\u5de6\u53f3\u6447\u5934\u3002"} +{"id": "6004183", "video_name": "cb7fa8ea-dc0c-5a5a-b2b9-4e5645745404", "text": "\u8001\u5e74\u5973\u5b50\u5934\u53d1\u767d\u8272\uff0c\u76ae\u80a4\u6cdb\u7ea2\uff0c\u56db\u5904\u5f20\u671b\u3002"} +{"id": "3004185", "video_name": "4f0261ae-6d28-580f-bc01-baefb4bfc822", "text": "\u5916\u661f\u98de\u8239\u5728\u4e00\u4e2a\u5927\u57ce\u5e02\u4e2d\uff0c\u6709\u96fe\u3001\u66b4\u98ce\u96e8\u3002"} +{"id": "7002444", "video_name": "0572ff53-f912-5de5-a7af-10c7e4f2cbe5", "text": "\u5177\u6709\u77ee\u4eba\u706b\u6c34\u6bcd\u7279\u6027\u7684\u7ec7\u7269\u4e0a\uff0c\u7ee3\u4e0a\u4e86\u95ea\u70c1\u7740\u87b3\u8782\u867e\u6ce1\u72b6\u7269\u7684\u4e1d\u7ebf\u3002\uff08\u5b57\u4f53\uff1a\u73b0"} +{"id": "0005893", "video_name": "22e286e2-5832-5b0f-a635-94b19ef80bf0", "text": "\u5b66\u6821\u7684\u8868\u6f14\u867d\u7136\u5145\u6ee1\u6d3b\u529b\u548c\u9752\u6625\u7684\u70ed\u60c5\uff0c\u4f46\u73b0\u5728\u5374\u5e26\u7740\u4e00\u79cd\u6f5c\u5728\u7684\u5bd3\u610f\uff0c\u505c\u7559"} +{"id": "2004621", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "\u8377\u5170\u98ce\u8f66\u7f13\u6162\u5730\u5728\u98ce\u4e2d\u8f6c\u52a8\u3002\u80cc\u666f\u662f\u725b\u548c\u9ad8\u8349\uff0c\u524d\u666f\u968f\u98ce\u6447\u66f3\u3002\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "7003285", "video_name": "a8d4b795-a568-577c-8dbf-5882c8c44d28", "text": "\u5e74\u8f7b\u7684\u6210\u5e74\u513f\u5b50\u773a\u671b\u7740\u5730\u5e73\u7ebf\uff0c\u68a6\u60f3\u7740\u9065\u8fdc\u7684\u5192\u9669\u3002"} +{"id": "6002076", "video_name": "f4e12f8b-b13d-51eb-af8e-93811d1d0873", "text": "\u6c49\u65af\u00b7\u9c81\u9053\u592b\u00b7\u5409\u683c\u5c14\u7ad9\u5728\u8d70\u5eca\u91cc\u3002"} +{"id": "2006166", "video_name": "0a24815a-3436-5edc-898d-14e0a8447464", "text": "\u4e2d\u5348\uff0c\u9a6c\u5c14\u4ee3\u592b\u7684\u6e14\u6c11\u5728\u6d77\u6ee9\u4e0a\u6355\u9c7c\u3002"} +{"id": "3006411", "video_name": "47d426df-d3da-5d96-966d-e1a9fb1dea7a", "text": "1970\u5e74\u4ee3\u98ce\u683c\u7684\u4e2d\u5e74\u4eba\u6253\u814c\u7403\u7684\u573a\u666f\uff0c\u5728\u4e00\u90e8\u559c\u5267\u7535\u5f71\u4e2d\u5f15\u53d1\u4e86\u55a7\u95f9\u7684\u7b11\u58f0\u548c\u75af\u72c2\u7684\u52a8\u4f5c\u3002"} +{"id": "7003596", "video_name": "d7dce4be-ff6b-52d1-a899-4e6c74fc6589", "text": "\u4e00\u53ea\u6d63\u718a\u5728\u4e00\u4e2a\u89c6\u9891\u7f16\u8f91\u684c\u524d\u6df1\u523b\u5730\u9053\u6b49\uff0c\u56e0\u4e3a\u5236\u4f5c\u4e86\u90a3\u4e2a\u624b\u90e8\u89c6\u9891\u3002"} +{"id": "2006754", "video_name": "bce5952e-6561-5977-8fca-50a2de505d9b", "text": "\u4e00\u4f4d\u5973\u5b50\u7f13\u6162\u5730\u8d70\u4e0a\u5c71\uff0c\u4fef\u77b0\u7740\u7f8e\u4e3d\u7684\u5c71\u8c37\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "7004508", "video_name": "c2a2f263-b71f-5898-aaaa-92a88c602061", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u84dd\u773c\u775b\u91d1\u53d1\u7537\u5b50\u548c\u4ed6\u7684\u975e\u5e38\u5927\u7684\u897f\u4f2f\u5229\u4e9a\u54c8\u58eb\u5947\uff0c\u963f\u62c9\u65af\u52a0\u8352\u91ce\u3002"} +{"id": "7004261", "video_name": "639f02cf-87da-5fbd-9220-b4add89e6ecc", "text": "\u521b\u5efa\u4e00\u4e2a\u84dd\u8272\u548c\u7ea2\u8272\u7684Chiroylee\u6807\u5fd7\uff0c\u5e26\u6709\u68c9\u82b1\u548c\u82b1\u6735\u3002"} +{"id": "1005408", "video_name": "635ede5b-86cd-5672-bbeb-c76721d3ec7c", "text": "\u5de8\u578b\u9c7f\u9c7c\u88ad\u51fb\u7ebd\u7ea6\u73b0\u573a\u7684\u7535\u5f71\u753b\u9762"} +{"id": "1004466", "video_name": "52b281d4-5b5c-5a10-b49c-f853a40d2589", "text": "\u4e3e\u8d77260\u516c\u65a4\uff0c\u5411\u5e74\u5ea6\u89c2\u4f17\u5fae\u7b11\u3002"} +{"id": "4003479", "video_name": "6e11683e-664b-5c32-980a-d05449faee72", "text": "\u7ed9\u6211\u4e00\u5f20\u7f8e\u89c2\u7684\u7167\u7247\u653e\u5230\u888b\u5b50\u91cc\u3002"} +{"id": "4002595", "video_name": "73982fd8-f15c-5742-bbe9-49819f82284f", "text": "\u5728\u8fd9\u4e2a\u6df7\u6c8c\u7684\u5927\u6559\u5802\u91cc\uff0c\u6211\u4eec\u6f2b\u6b65\uff0c\u4eba\u7c7b\u7684\u8bd7\u53e5\u88ab\u523b\u5728\u65e0\u9650\u4e4b\u4e2d\u3002"} +{"id": "8003535", "video_name": "168cd44f-ab35-5c56-96aa-a47ab4d92238", "text": "\u60b2\u4f24\u3001\u6d77\u6ee9\u3001\u65e5\u843d\u3001\u4e3b\u9898\u63cf\u8ff0\u3001\u6838\u5fc3\u4e3b\u9898\u3001\u4e3b\u9898\u884c\u52a8\u3001\u98ce\u683c\u3001\u5149\u5f71\u6548\u679c\u3001\u989c\u8272\u3001\u900f\u89c6\u3001\u8d28\u91cf\u3001"} +{"id": "0005388", "video_name": "19ee9358-245a-562e-8347-f628109ce5e2", "text": "\u4e00\u540d\u62b1\u7740\u5a74\u513f\u7684\u4ee5\u8272\u5217\u60b2\u4f24\u5973\u6027\uff0c\u65c1\u8fb9\u662f\u4e00\u4f4d\u5fae\u7b11\u7684\u5973\u6027\uff0c\u53e4\u4ee3\u65f6\u671f\uff0c8K\u7535\u5f71\u6548\u679c\u3002"} +{"id": "4004381", "video_name": "85b7647a-3e33-549c-b46f-d356e5bdc1e6", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u7537\u4eba\u80cc\u7740\u4e00\u5934\u725b"} +{"id": "6002195", "video_name": "30c56c9a-e24c-52b3-9c55-0e4ab5f8f771", "text": "\u56db\u540d\u80cc\u5305\u5ba2\u6b63\u5728\u963f\u5c14\u5df4\u5c3c\u4e9a\u7684\u7279\u91cc\u4e9a\u7eb3\u6ce8\u89c6\u7740\u5947\u602a\u6050\u6016\u7684\u7ea2\u8272\u5929\u7a7a\uff0c\u955c\u5934\u6548\u679c\u4e3a4K"} +{"id": "3004657", "video_name": "07f8427a-e5fb-5435-9780-3a221c0cba4a", "text": "\u9c9c\u82b1\u8fc5\u901f\u7efd\u653e\uff0c\u4ee5\u653e\u5927\u7684\u65b9\u5f0f\u3002"} +{"id": "8001200", "video_name": "8584ddd9-55ff-5a8d-b32b-ee20a17195b6", "text": "\u91d1\u661f\u7684\u9a91\u624b\u7a7f\u7740\u76ae\u9769\u88c5\u5907\u7a7f\u8fc7\u610f\u5927\u5229\u7684\u4e61\u95f4\u9053\u8def\u3002"} +{"id": "3005249", "video_name": "e6c0a735-fd8f-5f5d-8e0e-1786c775f2ee", "text": "\u4e00\u8f86\u5927\u8f66\u5e26\u7740\u660e\u4eae\u591a\u5f69\u7684\u706f\u5149\u671d\u7740\u5e26\u6709\u5f69\u8272\u706f\u5149\u7684\u5c0f\u8f66\u76f8\u53cd\u65b9\u5411\u884c\u9a76\u3002"} +{"id": "6002852", "video_name": "d6e075ca-fbd5-5b37-a80c-57d9cecc6615", "text": "\u6c34\u5728\u6d41\u52a8\uff0c\u4e4c\u9f9f\u5728\u79fb\u52a8\u3002"} +{"id": "5001389", "video_name": "6f459e4a-8019-5eb1-a161-e61d636a2fb7", "text": "\u4e00\u5ea7\u5c71\u8109\uff0c\u4e91\u5728\u5929\u7a7a\u4e2d\u79fb\u52a8\u3002"} +{"id": "4002851", "video_name": "d6a63b3c-6be5-51c8-bc80-2f843753be54", "text": "\u4e00\u4e2a\u5361\u901a\u7537\u5b69\u5728\u5bb6\u5403\u80e1\u841d\u535c\u3002"} +{"id": "1005217", "video_name": "6015c885-5758-5965-88b8-9e39967578b3", "text": "2\u5206\u949f\u7684\u89c6\u9891\uff0c\u7f16\u8f91\u5728\u53e4\u5178\u827a\u672f\u7ed8\u753b\u4e2d\uff0c\u5df4\u6d1b\u514b\u98ce\u683c\uff0c\u7537\u4eba\u8df3\u821e\uff0c\u6cb9\u753b\uff0c\u8377\u7f57\u5c3c\u83ab"} +{"id": "8001610", "video_name": "a7819d7c-baa1-5cdd-b0ef-aabbd5be6064", "text": "\u7ecf\u5178\u7684\u84b8\u6c7d\u706b\u8f66\u5728\u884c\u661f\u3001\u6052\u661f\u548c\u661f\u7cfb\u4e4b\u95f4\u7a7f\u884c\uff0c\u672a\u6765\u4e3b\u4e49\u98ce\u683c\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "3006465", "video_name": "e412f30c-a9c6-5bb0-b6ab-3195671b2edb", "text": "\u52a8\u6001\u8bbe\u8ba1\u76843D\u6548\u679c\uff0c\u9ed1\u8272\u80cc\u666f\uff0ciPhone\u4ea7\u54c1\u52a8\u753b\uff0c\u624b\u673a\u52a8\u753b\uff0c\u65cb\u8f6c\u5c55\u793a\uff0c\u7535\u5f71\u7ea7\u706f\u5149\u6548\u679c\uff0c\u903c\u771f\u7684\u5149\u5f71\u6e32"} +{"id": "8003851", "video_name": "c4267bb6-57ed-5d88-b22e-eb58715127e0", "text": "\u6c7d\u8f66\u884c\u9a76\u548c\u96e8\u6c34\u503e\u6cfb"} +{"id": "2005636", "video_name": "d8947f56-add1-5b70-9f3d-bcb768f08058", "text": "\u516c\u5143\u524d2000\u5e74\u7684\u57ce\u5e02\uff0c\u6709\u7a74\u5c45\u4eba\u5728\u72e9\u730e\u6050\u9f99\u3002"} +{"id": "3004768", "video_name": "acd98050-1414-569c-abaf-35b4146b3ab8", "text": "\u4e00\u53ea\u9e2d\u5b50\u5750\u5728\u4e00\u4e2a\u91d1\u5c5e\u74e6\u529e\u516c\u5ba4\u91cc\u3002"} +{"id": "0003779", "video_name": "4337ccf6-743b-5dd4-abd6-559d073f783c", "text": "\u4e00\u53ea\u6b66\u58eb\u732b\u7ad9\u5728\u4e00\u6839\u9ad8\u67f1\u4e0a\uff0c\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u8eab\u7740\u62ab\u98ce\uff0c\u53d7\u5f3a\u98ce\u5439\u62c2\uff0c\u6709\u7535\u5f71"} +{"id": "1006077", "video_name": "6f7979ca-d65d-5dfa-a756-c09cc0fe52f1", "text": "\u54c8\u8389\u00b7\u594e\u56e0\u5728\u5427\u53f0\u51f3\u4e0a\u8df3\u821e\u3002"} +{"id": "1003343", "video_name": "3d93bd2c-e86b-56ad-826e-ae54fd0fe593", "text": "30\u79d2\u7684\u5f71\u7247\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u7a7f\u7740\u9ec4\u8272\u8fde\u8863\u88d9\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u76ae\u514b\u65af\u7684\u9ec4\u73ab\u7470\u82b1\u56ed\u91cc"} +{"id": "4003767", "video_name": "525fd079-e2a3-54e3-9349-55f8b671efc2", "text": "\u96e8\u5237\u8d8a\u6765\u8d8a\u5feb\u5730\u79fb\u52a8\uff0c\u4eff\u4f5b\u5728\u9f13\u52b1\u53f8\u673a\u52c7\u6562\u524d\u884c\u3002\u8f66\u7a97\u5916\u7684\u666f\u8272\u5728\u96e8\u5237\u7684\u6446\u52a8"} +{"id": "7002503", "video_name": "8ff9cef5-7336-5c3f-8634-0b9bbe78e48e", "text": "\u4e00\u4e2a\u5496\u5561\u5385\u91cc\u6709\u5f88\u591a\u4eba\u804a\u5929\u548c\u559d\u5496\u5561\u30022D\u52a8\u7269\u795e\u5947\u98ce\u683c\u3002"} +{"id": "8003469", "video_name": "305465fa-3dfd-51cd-9b49-6f23208a9767", "text": "\u4f5b\u6559\u50e7\u4fa3\u5728\u5c71\u4e0a\u81ea\u7136\u51a5\u60f3\uff0c\u4e91\u6735\u98d8\u79fb\u3002"} +{"id": "3004034", "video_name": "ca1e64a4-a5ff-59a8-ad99-5934f66f6a92", "text": "\u4e00\u4e2a\u4eba\u9a91\u7740\u65f6\u95f4\u673a\u5668\uff0c\u5728\u65f6\u95f4\u96a7\u9053\u4e2d\u4ee5\u77e2\u91cf\u56fe\u5f62\u7684\u98ce\u683c\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "8001562", "video_name": "ce7c48c5-6c4c-5bad-b319-ab6c1fbfd0cc", "text": "\u4e00\u4e2a\u5e26\u7740\u7b14\u8bb0\u672c\u7535\u8111\u7684\u5546\u4eba\u5750\u5728\u529e\u516c\u5ba4\u3002"} +{"id": "8002513", "video_name": "dc275e73-d492-51e7-ae31-b393fc9ad5c0", "text": "\u6709\u4e00\u4e2a\u7537\u5b69\u662f\u89c6\u9891\u7f16\u8f91\u5e08\uff0c\u6444\u50cf\u673a\u6b63\u5728\u62cd\u6444\u4ed6\uff0c\u6211\u60f3\u770b\u5c4f\u5e55\uff0c\u6bd4\u4f8b\u662f9\u6bd416\u3002"} +{"id": "2004127", "video_name": "fb27b1bd-1822-5f2f-8656-61d846cbb006", "text": "\u5236\u4f5c\u767d\u8461\u8404\u9152\u7684\u8fc7\u7a0b\u3002"} +{"id": "0005032", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "\u5728\u4e00\u4e2a\u88ab\u7eff\u8272\u7530\u91ce\u5305\u56f4\u7684\u5b81\u9759\u6751\u5e84\u91cc\uff0c\u4e24\u4e2a\u670b\u53cb\uff0c\u4e00\u4e2a\u52c7\u6562\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u806a\u660e\u7684\u5973\u5b69\uff0c"} +{"id": "0005517", "video_name": "1c29fb92-72df-53a8-996f-8e1722b547f0", "text": "\u4e00\u4e2a\u7537\u4eba\u5403\u6ce5\u571f\u548c\u9762\u5305\u3002"} +{"id": "7004804", "video_name": "5b61c462-1bbd-5249-bc02-2d4a2eccd81a", "text": "\u6b63\u5348\u65f6\u5206\u7684\u4f26\u6566\u8857\u5934\u6709\u4e00\u5343\u53ea\u9e1f\u5728\u98de\u7fd4\u3002"} +{"id": "1003564", "video_name": "41beed58-7c1f-5713-9116-660052be232a", "text": "\u4e00\u4e2a\u53a8\u5e08\u5728\u6a21\u5757\u5316\u53a8\u623f\u505a\u996d\u3002"} +{"id": "2004190", "video_name": "3fa7634a-6032-5e73-ac99-f49a03f104c8", "text": "\u6240\u6709\u8fd9\u4e9b\u73e0\u5b9d\u90fd\u50cf\u6cea\u6c34\u4e00\u6837\u88ab\u54ed\u6ce3\u3002"} +{"id": "0004196", "video_name": "04d7c3a4-7e0e-54bb-bd7c-2b999da62cd6", "text": "\u80cc\u666f\u97f3\u4e50\uff1a\u8f7b\u5feb\u6fc0\u52b1\u7684\u65cb\u5f8b\u3002\u5c4f\u5e55\u4e0a\u5448\u73b0\u51fa\u4e00\u5e45\u5bbd\u9614\u3001\u660e\u4eae\u3001\u6c14\u52bf\u78c5"} +{"id": "0004679", "video_name": "0d2f5348-c771-572d-8392-5694460359b4", "text": "\u4ece\u7d22\u65af\u7ef4\u83b1\u7684\u7ea2\u8272\u6c99\u4e18\u5230\u8fbe\u9a6c\u62c9\u5170\u7684\u5d0e\u5c96\u7f8e\u666f\uff0c"} +{"id": "3003600", "video_name": "bb9ce8b7-5e31-5c6e-830a-e93627a964e0", "text": "\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u9c7c\u7684\u602a\u5f02\u573a\u666f"} +{"id": "6004966", "video_name": "cf04c764-a247-51d2-b1f6-e72fa4e4c74b", "text": "\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u626e\u6f14\u8759\u8760\u4fa0\uff0c\u9ed1\u6697\u6c1b\u56f4\uff0c\u80cc\u666f\u6709\u6ee1\u6708\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "4004362", "video_name": "d1a15e3b-3770-52aa-91f8-9e09c956e41e", "text": "\u4e2d\u56fd\u53e4\u5821\u8d77\u706b\uff0c\u4fef\u89c6\u8fdc\u666f\uff0c\u8d85\u73b0\u5b9e\u7684\u7167\u7247\uff0c\u8d85\u6e05\u6670\u7684\u7167\u7247\uff0c\u8d85\u9ad8\u8d28\u91cf\u7684\u7167\u7247\u3002"} +{"id": "1003663", "video_name": "436eaff8-7782-5c12-afe6-a147e89c5cd9", "text": "\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u7684\u91d1\u53d1\u7537\u5b50\u6b63\u5728\u5730\u94c1\u7ad9\u4e0e\u4e00\u4e2a\u602a\u517d\u6218\u6597\u3002"} +{"id": "1003561", "video_name": "41b01a5b-4d7f-5317-ada0-87887985aec0", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u821e\u8005\u7a7f\u7740\u767d\u8272\u7684\u8fde\u4f53\u8863\uff0c\u5728\u5e9f\u5f03\u7684\u4ed3\u5e93\u91cc\u6162\u52a8\u4f5c\u5730\u6325\u821e\u7740\u624b\uff0c\u5168\u8eab\u90fd\u88ab\u5c55"} +{"id": "2007175", "video_name": "3a3d33e3-4731-5b42-9604-feb19ca2cf31", "text": "\u6210\u719f\u7684\u5361\u901a\u98ce\u683c\u7684\u5355\u5143\u7740\u8272\uff0c\u9ed1\u8272\u3001\u7ea2\u8272\u548c\u767d\u8272\u6784\u6210\u7684\u72af\u7f6a\u73b0\u573a\uff0c\u5e26\u6709\u8b66\u5bdf\u5c01\u9501"} +{"id": "0003107", "video_name": "372a2fd3-a86d-5cf8-afb3-5f0fa3bf7524", "text": "2D\u52a8\u753b\uff0c\u7ef5\u7f8a\u6234\u7740\u8033\u673a\u8eba\u5728\u4e91\u6735\u4e0a\u542c\u97f3\u4e50\uff0c\u5faa\u73af\u64ad\u653e\u7248\u672c\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "2005760", "video_name": "dfc52ef9-1862-5036-8759-85855b2d0b23", "text": "1956\u5e74\uff0c\u8fbe\u7279\u8305\u65af\u5b66\u9662\u5728\u7814\u8ba8\u4f1a\u4e0a\uff0c\u901a\u8fc7\u53d1\u660e\u521b\u9020\uff0c\u63a8\u52a8\u5b66\u672f\u673a\u6784\u7684\u8fdb\u6b65\u3002"} +{"id": "2003023", "video_name": "634de176-9090-5149-9c18-1a89bfca46f0", "text": "\u7f13\u7f13\u903c\u8fd1\u7684\u90aa\u6076\u84b8\u6c7d\u670b\u514b\u98de\u8247\u98d8\u8fc7\u8001\u6751\u5e84\u3002"} +{"id": "4003737", "video_name": "28a7bf3a-8c5c-5ceb-8af1-abd79d17d93b", "text": "\u62a4\u80a4\u54c1\u74f6\u5b50\uff0c\u6781\u7b80\u4e3b\u4e49\u6444\u5f71\uff0c\u7c89\u5f69\u8272\u8c03\uff0c\u7a97\u6237\u900f\u5c04\u65b9\u5411\u5149\u3002"} +{"id": "8002287", "video_name": "43486a05-c284-50ea-9ab1-027dffcb522e", "text": "\u5e74\u8f7b\u3001\u7f8e\u4e3d\u3001\u5149\u6ed1\u3001\u5973\u6027\u5316\u3001\u624b\u90e8\u5982\u5b9d\u77f3\u822c\uff0c\u6700\u771f\u5b9e\u7684\u3002"} +{"id": "3005665", "video_name": "2f676dff-03c2-598a-85ed-9f32163855af", "text": "\u5728\u66b4\u98ce\u96ea\u4e2d\u54e5\u7279\u5f0f\u57ce\u5821\u5916\u7684\u5973\u5b69\u3002"} +{"id": "1006674", "video_name": "7a5409c8-4c62-552a-b2e9-437b43ffa9ea", "text": "\u51b0\u6dc7\u6dcb\u6d77\u562f\u6b63\u5728\u82f1\u570b\u502b\u6566\u8972\u4f86\uff0c\u6ffe\u93e1\u6548\u679c\u4eff\u4f5b90\u5e74\u4ee3\u7684VHS\u3002"} +{"id": "2004556", "video_name": "5fd6dc2c-dee9-563d-99a5-0142a83c6d95", "text": "VR\u624b\u90e8\u4e0e\u6570\u5b57\u5bf9\u8c61\u4ea4\u4e92\u3002"} +{"id": "7003171", "video_name": "b5321382-bde8-538b-8b44-5bc7c4f051c5", "text": "\u5973\u5b69\u7a7f\u7740\u683c\u5170\u82ac\u591a\u5916\u8863\uff0c\u80cc\u666f\u662f\u970d\u683c\u6c83\u8328\u57ce\u5821\u3002"} +{"id": "3006135", "video_name": "643e2d1b-5baa-5468-8933-0f8fe18d91d3", "text": "1947\u5e74\uff0c\u5916\u661f\u4eba\u5360\u9886\u4e86\u56de\u5f52\u58eb\u5175\u7684\u8eab\u4f53\u3002\u4ed6\u4eec\u7684\u58f0\u97f3\u56de\u8361\u7740\u8fc7\u53bb\u7684\u56de\u5fc6\uff0c\u4f46\u4ed6\u4eec\u7684\u773c\u795e\u5374"} +{"id": "0006101", "video_name": "269b721f-7b15-5971-be96-27a4e98cbc8a", "text": "\u653e\u5927\u4e00\u4e2a\u6c7d\u8f66\u884c\u9a76\u5728\u4e0b\u5761\u8def\u4e0a\u7684\u753b\u9762"} +{"id": "8003522", "video_name": "0c9e150a-bc0c-5bc0-b12e-4f9e52b81809", "text": "\u7535\u5f71\u300a\u6cf0\u5766\u5c3c\u514b\u53f7\u300b\u4e2d\u7684\u4e00\u5f20\u7167\u7247\u3002"} +{"id": "7003476", "video_name": "49cf2c8d-8340-5393-80fe-4ee08e6441ad", "text": "\u65b0\u7684\u8bc1\u636e\u6307\u5411\u4e0d\u540c\u65b9\u5411\uff0c\u4f7f\u8c03\u67e5\u53d8\u5f97\u66f4\u52a0\u590d\u6742\u3002\u8c03\u67e5\u4eba\u5458\u5fc5\u987b\u68c0\u67e5\u8c1c\u56e2\u548c\u8bc1\u8a00\uff0c\u7b5b\u9009\u5acc\u7591\u4eba\u6e05"} +{"id": "0006159", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "\u4e00\u53ea\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u72d7\uff0c\u81ea\u79f0\u4e3a\u5218\u5929\u72d7\u3002\u4ed6\u7684\u8bdd\u5c06\u7528\u4e2d\u6587\u5b57\u7b26\u663e\u793a\u3002"} +{"id": "5001780", "video_name": "4ffc12bd-5ff4-5ec5-b924-cbf8a1df9225", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u5305\u542b\u4e00\u4e2a\u660e\u663e\u6709\u80a5\u80d6\u8179\u90e8\u7684\u7537\u6027\u4e09\u7ef4\u6a21\u578b\u3002\u89c6\u9891\u5f00\u59cb\u65f6\uff0c\u6a21\u578b\u5904\u4e8e\u4e2d\u7acb\u7684\u59ff\u52bf\u3002\u5c55\u793a\u7537\u6027"} +{"id": "6004426", "video_name": "01aa65cd-ba05-5a95-8027-852a3a9bbc5c", "text": "\u76ae\u514b\u65af\u89d2\u8272\u4e0e\u53e6\u4e00\u4e2a\u89d2\u8272\u9ad8\u4e94\u3002"} +{"id": "7002389", "video_name": "4802efd4-e0dc-5c62-84df-c78a30b06727", "text": "\u8bb8\u591a\u82b1\u5728\u4e00\u4e2a\u98ce\u666f\u4e0a\u3002"} +{"id": "4004823", "video_name": "ff345119-7534-52c8-8a92-ce8040f027d4", "text": "Translation: \u968f\u7740\u56e2\u961f\u94bb\u7a7f\u53e4\u8001\u7684\u51b0\u5c42\u3002"} +{"id": "3003067", "video_name": "2599080d-d160-52f6-b476-aed967a801ca", "text": "\u96e8\u6ef4\u5728\u96e8\u5929\u843d\u5728\u7a97\u6237\u4e0a\u3002"} +{"id": "4004107", "video_name": "765d4d4f-59b3-56ea-ae6b-06d26158163f", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u4e2d\u5e74\u7537\u4eba\u9a91\u7740\u4e00\u8f86\u8d27\u8f66\u8f7d\u7740\u4e00\u4e2a\u5b69\u5b50\u5728\u5915\u9633\u4e0b\u6d88\u5931\uff0c\u7167\u7247\u903c\u771f\uff0c\u7535\u5f71\u611f\uff0c\u98ce\u683c"} +{"id": "7002445", "video_name": "261c6aeb-893d-5ab6-bb36-cc6fe1860839", "text": "\u4e9a\u5386\u5c71\u5927\u00b7\u683c\u96f7\u5384\u59c6\u00b7\u8d1d\u5c14\u521a\u521a\u83b7\u5f97\u4e86\u4e00\u9879\u65b0\u7684\u4e13\u5229\u53d1\u660e\u2014\u2014\u7535\u8bdd\u3002"} +{"id": "1005515", "video_name": "6589d4e8-9420-5821-bb07-24b9aa830d3b", "text": "\u4e00\u7cfb\u5217\u56fe\u50cf\u5c55\u793a\u4e86\u4e00\u68f5\u6811\u5728\u4e0d\u540c\u5b63\u8282\u4e2d\u7684\u53d8\u5316\uff0c\u5f3a\u8c03\u4e86\u79cb\u5929\u843d\u53f6\u3001\u51ac\u5929\u8352\u51c9\u548c\u6625\u5929\u518d\u6b21\u5f00"} +{"id": "6002315", "video_name": "748bf4c4-6001-5400-82ce-fe8f1428ac5f", "text": "\u5728\u4f0a\u85e4\u6f64\u4e8c\u7684\u6050\u6016\u6f2b\u756b\u98a8\u683c\u4e2d\uff0c\u4e00\u540d\u8eab\u7a7f\u8863\u88f3\u548c\u982d\u9aee\u5728\u98a8\u4e2d\u98c4\u52d5\u7684\u6b66"} +{"id": "2004073", "video_name": "ee11cf40-e82d-5d55-b2cb-431ff7847b9c", "text": "\u795e\u79d8\u7684\u7a7a\u95f4\u611f\u77e5\u3001\u53d1\u5149\u7684\u7a7a\u95f4\u3001\u7cbe\u795e\u5f62\u800c\u4e0a\u5b66\u3001\u827a\u672f\u5efa\u7b51\u3001\u62f1\u5f62\u3001\u9ad8\u575b\u3001\u6e29\u6696\u767d\u8272\u3001"} +{"id": "1005021", "video_name": "5ce2f0ec-7185-5043-9121-0cff2264380a", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u65f6\u95f4-lapse\u5c55\u73b0\u4e86\u4e00\u6735\u7c89\u8272\u73ab\u7470\u4ece\u82bd\u53d8\u6210\u5b8c\u5168\u7efd\u653e\u7684\u8fc7\u7a0b\u3002"} +{"id": "3006254", "video_name": "95afd506-a90f-5016-9935-a1f27739ba1b", "text": "\u4e24\u4e2a\u5973\u4eba\u548c\u4e24\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u767d\u8272\u7684\u76d2\u5b50\u91cc\u8df3\u821e\u3002"} +{"id": "8003578", "video_name": "5a216776-bd77-5fea-9608-eab476db4010", "text": "\u623f\u95f4\u91cc\u6302\u7740\u7ea2\u706f\u7b3c\uff0c\u95e8\u4e0a\u8d34\u7740\u7ea2\u8272\u6625\u8054\u3002"} +{"id": "5001605", "video_name": "0e78dac4-bbc3-555d-afe1-c0f53839bf10", "text": "\u7528\u4e00\u8f86\u655e\u7bf7\u5954\u9a70\u8f66\u548c\u7f8e\u5973\uff0c\u5236\u4f5c\u4e00\u540d\u5e26\u6709\u571f\u8033\u5176\u56fd\u65d7\u7684\u571f\u8033\u5176\u7537\u5b50\u3002"} +{"id": "2007819", "video_name": "0e43342b-09ee-5810-82ab-397bfa88d1d2", "text": "\u4e00\u4e2a\u7a7f\u7740\u79d1\u6280\u670d\u88c5\u548c\u8fd0\u52a8\u670d\u88c5\u7684\u7537\u5b50\u5598\u7740\u6c14\u7ad9\u7740\u3002"} +{"id": "0003035", "video_name": "35ecd5a0-f285-5c1a-b92c-ed61659c4cfb", "text": "\u4e07\u5723\u8282\u76f8\u5173\u7684\u7167\u7247\u548c\u89c6\u9891"} +{"id": "6004606", "video_name": "101f9737-cc6e-5087-bd43-19a00a45faa1", "text": "\u4e00\u6bb5\u5973\u4eba\u62ff\u7740\u67ef\u8fbe\u76f8\u673a\u7684\u89c6\u9891\u3002"} +{"id": "7004669", "video_name": "7e286e60-7b7f-5cbc-a968-82268bf52045", "text": "\u6bcf\u5f53\u5728\u6570\u636e\u7f51\u7edc\u4e2d\u89c2\u5bdf\u5230\u4e0d\u540c\u7684\u6570\u636e\u6d41\u52a8\u65f6\uff0c\u4f1a\u770b\u5230\u84dd\u8272\u3001\u767d\u8272\u3001\u5f27\u5f62\u7b4960\u5e27\u3002"} +{"id": "2005386", "video_name": "4c675ddb-9cd3-5e8a-b352-be832f2d3a87", "text": "\u672a\u6765\u57ce\u5e02\u4f26\u6566\u548c\u6280\u672f\u666f\u89c2\u7684\u5168\u666f\uff0c\u80cc\u666f\u97f3\u4e50\u67d4\u548c\u800c\u795e\u79d8\u3002"} +{"id": "0004634", "video_name": "0c5ff30e-1c40-5c11-8116-343db4fa15c0", "text": "DC\u6f2b\u753b\u5c01\u9762\u4e0a\u7684\u7ef4\u7eb3\u65af\u8bde\u751f\uff0c\u4ee5DC\u6f2b\u753b\u4eba\u7269\u7684\u5f62\u8c61\u5448\u73b0\uff0c\u7ef4\u7eb3\u65af\u8bde\u751f\u98ce\u683c\u3002"} +{"id": "2005653", "video_name": "29a7578f-c23b-593b-8de3-a26463171569", "text": "\u521b\u5efa\u4e00\u4e2a\u663e\u793a\u5404\u79cd\u52a8\u6001\u53c2\u6570\u7684Grafana\u4eea\u8868\u677f\u3002"} +{"id": "3006614", "video_name": "904188e1-0d96-50a9-b0f7-a428075d198a", "text": "WWE\u7684Judgment Day\u6bd4\u8d5b\u4e2d\uff0cCM Punk\u6210\u4e3a\u4e86\u8be5\u6d3e\u7cfb\u7684\u65b0\u9886\u8896\u3002"} +{"id": "4002653", "video_name": "0aac7045-5efd-5d52-8299-62ae359add10", "text": "\u7528\u6b22\u5feb\u7684\u89d2\u8272\u5236\u4f5c\u4e00\u6bb5\u7247\u5c3e\u5b57\u5e55\uff0c\u5e86\u795d\u5e76\u53ef\u80fd\u8df3\u821e\u3002"} +{"id": "4002299", "video_name": "ceb713c5-2cd3-5936-a0ea-2a5ce05c5064", "text": "\u57ce\u5e02\u88ab\u795e\u79d8\u7684\u7b26\u53f7\u7b3c\u7f69\uff0c\u4e00\u7247\u8be1\u5f02\u7684\u5bc2\u9759\u3002\u597d\u5947\u7684\u8c03\u67e5\u5458\u739b\u96c5\u62ff\u51fa\u624b\u673a\uff0c\u76ee\u5149\u4e2d\u900f\u7740"} +{"id": "6004475", "video_name": "b7de335d-3ade-5313-8c0a-fc013ee1db94", "text": "\u4e00\u4e2a\u95f9\u9b3c\u7684\u57ce\u5821\uff0c\u5728\u5927\u96e8\u4e2d\uff0c\u660f\u6697\u76844k\uff0c\u795e\u8bdd\u822c\u7684\u3002"} +{"id": "3004055", "video_name": "ec6a40c7-b8e3-5dbc-a878-b792a49f1d72", "text": "\u6709\u8da3\u7684\u718a\u732b\u5728\u592a\u7a7a\u4e2d\uff0c\u96f6\u91cd\u529b\u7684\u6ed1\u7a3d\u52a8\u4f5c\uff0c\u6f02\u6d6e\u7684\u718a\u732b\uff0c\u5b87\u5b99\u80cc\u666f\uff0c\u661f"} +{"id": "0006160", "video_name": "278836e0-e4de-546c-9c61-50382537fef0", "text": "\u4e00\u4e2a\u5207\u6210\u7247\u7684\u65b0\u9c9c\u67e0\u6aac\u6389\u8fdb\u5e26\u51b0\u7684\u6c34\u91cc\uff0c\u7535\u5f71\u955c\u5934\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u4fa7\u89c6\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "2006572", "video_name": "22869227-287b-50e2-b748-4281a79fb438", "text": "\u7f05\u7538\u84b2\u7518\u7684\u4e00\u5ea7\u5b9d\u5854\uff0c\u89c6\u91ce\u4e2d\u6709\u7eff\u8272\u7684\u7530\u91ce\u3002"} +{"id": "5001957", "video_name": "c9038ebe-2865-5f2e-87eb-c263885ee2ab", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u8d70\u5411\u4e00\u6247\u5927\u800c\u795e\u79d8\u7684\u95e8\uff0c\u7136\u540e\u8fdb\u5165\u4e86\u4e00\u4e2a\u5de8\u5927\u7684\u8857\u673a\u6e38\u620f\u7f51\u7edc\u57ce\u5e02\u3002\u8fd9\u91cc\u7684\u753b\u9762\u8d85\u771f\u5b9e\uff0c8"} +{"id": "6004910", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "\u5929\u7a7a\u4e2d\u7684\u706b\u7130 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "4003911", "video_name": "5fe69c48-b1ae-587f-bf5d-8c4f6ac02c63", "text": "\u4e00\u4e2a\u6709\u8774\u8776\u7eb9\u8eab\u7684\u7537\u4eba\u7684\u62cd\u7acb\u5f97\u7167\u7247\u3002"} +{"id": "1005661", "video_name": "67fd1b2d-c0d9-5e2e-8671-65cd017e743e", "text": "\u624b\u4e0a\u6709\u4e03\u4e2a\u624b\u6307\u3002\u76f8\u673a\u5728\u6643\u52a8\uff0c\u624b\u653e\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "8002349", "video_name": "b76e07c5-917c-5e01-8901-d1fd8eaef3bc", "text": "\u6218\u4e89\u7684\u6d88\u606f\u5728\u5f53\u65f6\u5f15\u8d77\u4e86\u4e0d\u540c\u7684\u60c5\u611f\uff0c\u5c24\u5176\u662f\u5728\u90a3\u4e9b\u5e74\u7eaa\u5df2\u7ecf\u8db3\u591f\u670d\u5f79\u7684\u5e74\u8f7b\u7537\u6027\u4e2d\u95f4\u3002"} +{"id": "8003533", "video_name": "0d158234-ff28-5eb0-9441-834843b09e3e", "text": "\u591c\u665a\uff0c\u5c0f\u8239\u5728\u96fe\u4e2d\u3002\u8239\u4e0a\u6709\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u6597\u7bf7\u548c\u515c\u5e3d\u7684\u7537\u4eba\u3002"} +{"id": "7002406", "video_name": "4127d2cb-c6b2-540b-b8e9-41c02812ca7e", "text": "\u4e00\u53ea\u5f69\u8272\u6d77\u9a6c\u5728\u5145\u6ee1\u8d85\u73b0\u5b9e\u6c34\u751f\u690d\u7269\u7684\u591a\u5f69\u6c34\u4e0b\u666f\u89c2\u4e2d\u6f02\u6d6e\uff0c\u5b83\u7684\u957f\u800c\u7ec6\u7684\u5934\u53d1\u5728\u6c34\u4e2d"} +{"id": "1006163", "video_name": "70d5bebb-db90-5889-9392-251feec4564d", "text": "\u79fb\u52a8\u4ece\u7a97\u6237\u8fdb\u6765\u7684\u9633\u5149\u548c\u9634\u5f71\u3002"} +{"id": "6002724", "video_name": "bfcbdd0c-a769-58cb-af7c-1d21fbf2cc5f", "text": "\u5728\u5c71\u9876\u7684\u684c\u5b50\u4e0a\u5750\u7740\uff0c\u7528\u7b14\u8bb0\u672c\u7535\u8111\u5b66\u4e60\u6570\u636e\u7ed3\u6784\u4e0e\u7b97\u6cd5\u5e76\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\u3002"} +{"id": "0004511", "video_name": "0a4b5884-9e75-57f5-b13d-2eafdd075f11", "text": "\u4ece\u8111\u5185\u89c2\u5bdf\uff0c\u989d\u53f6\u3001\u674f\u4ec1\u4f53\u548c\u6d77\u9a6c\u7684\u4e0d\u540c\u533a\u57df\u4f1a\u4ee5\u9ec4\u8272\u7167\u4eae\u3002"} +{"id": "4004154", "video_name": "1486b175-750c-56f3-8f0f-c90e11bdc6b3", "text": "\u58eb\u5175\u5728\u5192\u7740\u70df\u7684\u5e9f\u589f\u4e2d\u54c0\u60bc\u9635\u4ea1\u6218\u53cb\uff0c\u843d\u6cea\u7684\u573a\u666f\u4ee4\u4eba\u5fc3\u788e\u3002"} +{"id": "6003809", "video_name": "67fcab4f-8354-507e-af43-838bc477afc0", "text": "\u5b87\u822a\u5458\u5728\u706b\u661f\u8868\u9762\u653e\u7f6e\u4e86\u4e00\u4e2a\u95ea\u70c1\u7684\u5929\u7ebf\u3002"} +{"id": "7002381", "video_name": "87ad644b-807c-5938-92d8-8443329c6189", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u884c\u9a76\u7684\u706b\u8f66\u4e0a\u559d\u7740\u82cf\u6253\u6c34\uff0c\u7a97\u5916\u662f\u79fb\u52a8\u7684\u5c71\u3002"} +{"id": "7004451", "video_name": "45abcccc-20fe-5abe-856a-166bbce104f0", "text": "\u6885\u897f\u548c\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u4e00\u8d77\u57284k\u3001GS\u89c4\u6a2120\u3001\u79cd\u5b501\u7684\u8bad\u7ec3\u4e2d\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "2003658", "video_name": "e20cb3e5-b364-5997-8a91-3149e0d46651", "text": "\u5927\u578b\u5723\u8bde\u6811\u7531\u54c1\u724cPoizon\u76d2\u5b50\u5236\u6210\uff0c\u591c\u665a\u77d7\u7acb\u4e8e\u57ce\u5e02\uff0c\u660e\u4eae\u7684\u706f\u5149\u7167\u8000\u5728\u6811\u4e0a\u3002\u7535"} +{"id": "0004775", "video_name": "0f0095a5-234b-5672-b2cb-4d5106728950", "text": "\u76ae\u514b\u65af\u73a9\u5177\u603b\u52a8\u5458\u4e2d\uff0c\u4f0d\u8fea\u5728\u623f\u95f4\u91cc\u8df3\u8dc3\u5954\u8dd1\u3002"} +{"id": "7004418", "video_name": "4b8e74fc-b61c-5eaa-a056-20c89d8cf0bd", "text": "\u4e00\u4e2a\u5973\u4eba\u548c\u4e00\u4e2a\u7537\u4eba\u5728\u5979\u7684\u82b1\u56ed\u91cc\u4e00\u8d77\u5728\u6905\u5b50\u4e0a\u4e0a\u4e0b\u8d77\u4f0f\u3002"} +{"id": "1003868", "video_name": "474a2b6c-8e8d-5375-97b4-fad9e3bb7e79", "text": "\u53d1\u73b0\u5728\u704c\u6728\u4e1b\u4e2d\u7684\u68d5\u8272\u6cf0\u8fea\u718a\u3002"} +{"id": "3004847", "video_name": "10219752-d35a-5633-8b62-83bea9617129", "text": "\u5f69\u8679\u7403\u7011\u5e03\u52a8\u753b\u63cf\u8ff0\uff1a\u4e00\u4e2a\u4ee4\u4eba\u7740\u8ff7\u7684\u573a\u666f\u5c55\u73b0\u5728\u773c\u524d\uff0c\u6570\u4e0d\u6e05\u7684\u5f69\u8272\u5c0f\u7403\u4ece\u4e0a\u65b9\u503e\u6cfb\u800c\u4e0b\u3002"} +{"id": "6003222", "video_name": "398dc3cf-7ec0-5fdd-bfdf-0eacf73f5af4", "text": "\u91ce\u517d\u7537\u5b69\u7a7f\u68ad\u65f6\u7a7a\u65c5\u884c"} +{"id": "2007674", "video_name": "6fed65d5-29b1-522d-abd9-187749493eaf", "text": "\u661f\u7403\u5927\u6218\u7535\u5f71\u753b\u9762\uff0c\u4e00\u4e2a\u884c\u661f\u63a5\u8fd1\u5730\u7403\uff0c\u4eba\u7c7b\u6050\u614c\uff0c\u57ce\u9547\u4ea4\u901a\u62e5\u5835\u5bfc\u81f4\u6050\u614c\u3002"} +{"id": "2003461", "video_name": "8ca41e14-89fa-5b55-9bf8-5587157ed286", "text": "\u5f62\u5851\u6211\u4eec\u661f\u7403\u7684\u4e0d\u53ef\u5f81\u670d\u7684\u529b\u91cf\u7559\u4e0b\u4e86\u4e0d\u53ef\u78e8\u706d\u7684\u5370\u8bb0\u3002"} +{"id": "0005824", "video_name": "21cb6e1c-9430-58cf-a77c-e745fcbeec6e", "text": "\u8fd0\u52a8\u5ef6\u65f6\u4ece\u767d\u5929\u5230\u9ed1\u591c\uff0c\u4ee5\u7eb5\u5411\u62cd\u6444\u3002"} +{"id": "0006560", "video_name": "2eb06704-c4da-564b-b3e1-a1b2e50b3f3f", "text": "\u4e00\u7fa4\u7537\u4eba\u6392\u961f\u7b49\u5f85\u52a0\u5165\u7f8e\u56fd\u519b\u4e8b\u9632\u5fa1\u90e8\u961f\u3002"} +{"id": "0006306", "video_name": "2a66ad95-1b23-5b2f-9662-6e2e8a1aae93", "text": "\u529e\u516c\u5ba4\u7684\u7537\u5b50\u547c\u5438\uff0c\u5c55\u73b0\u4e86\u6bcf\u4e2a\u808c\u8089\u7684\u51c6\u786e\u8fd0\u52a8\u3002"} +{"id": "3004677", "video_name": "01ea7d23-f9b3-5f20-a4ec-7498a076186d", "text": "\u5728\u5916\u592a\u7a7a\u4e2d\uff0c\u661f\u7403\u7206\u70b8\uff0c\u661f\u4e91\u7684\u94f6\u6cb3\u80cc\u666f\u3002"} +{"id": "0005860", "video_name": "2272e656-4b85-5634-9a7e-ca84cfcf5347", "text": "\u5236\u4f5c\u4e00\u4e2a\u4ee5\u300a\u7eff\u91ce\u4ed9\u8e2a\u300b\u548c\u300a\u6f58\u795e\u7684\u8ff7\u5bab\u300b\u7b49\u7535\u5f71\u670d\u88c5\u4e3a\u7075\u611f\u7684\u602a\u7269\u573a\u666f\uff0c\u7740\u91cd\u8868\u73b0\u8fd9"} +{"id": "7003620", "video_name": "0a290243-dc0c-5af8-a065-388c9b497204", "text": "\u4e00\u7fa4\u957f\u5f97\u5f88\u50cf\u7684\u5973\u5b69\u5b50 COPY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006759", "video_name": "41d2c7e3-5fb3-5d28-9666-710d3d7040f7", "text": "\u623f\u5b50\u91cc\u7684\u706f\u4eae\u4e86\u53c8\u706d\u4e86\u3002"} +{"id": "6002412", "video_name": "cafc9ca0-3169-5a11-9ce1-bd9df5627450", "text": "\u767d\u8272\u732b\u9a91\u7740\u81ea\u884c\u8f66\u7684\u6c34\u5f69\u753b\u4e2d\u3002"} +{"id": "0004005", "video_name": "01778ce9-2d40-5489-99d8-945ef78b365c", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6d77\u6d0b\u4e2d\u7684\u6551\u751f\u8247\u4e0a\u4ee5\u8fea\u65af\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u89e6\u6478\u7f8e\u4eba\u9c7c\u3002"} +{"id": "2004360", "video_name": "d8f26362-cea2-57c8-83e0-4bedd201d7b5", "text": "\u8fd9\u4e00\u5207\u90fd\u53d1\u751f\u4e86\uff0c\u4ee5\u4fbf\u901a\u8fc7\u5148\u77e5\u6240\u8bf4\u7684\u8bdd\u5f97\u5230\u5b9e\u73b0\u3002"} +{"id": "7004649", "video_name": "35248523-3afc-5115-8175-a05540752a3a", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u5403\u4e00\u4efd\u6d41\u7740\u86cb\u9ec4\u7684\u6c49\u5821\uff0c\u8fd9\u4e2a\u4eba\u5e94\u8be5\u5f88\u9965\u997f\uff0c\u5e76\u4e14\u4eab\u53d7\u7740\u4ed6\u4eec\u7684\u6c49\u5821\u3002\u4ed6"} +{"id": "5001600", "video_name": "75997083-c5d2-58c8-89ce-74834d6801f3", "text": "\u5b83\u751f\u6210\u4e86\u4e00\u5e45\u753b\u9762\uff0c\u5de5\u7a0b\u5e08\u8eab\u7a7f\u6b66\u88c5\u670d\uff0c\u624b\u6307\u7740\u67aa\u76f4\u63a5\u5bf9\u7740\u955c\u5934\uff0c\u80cc\u666f\u662f\u7206\u70b8\u7684\u5efa\u7b51"} +{"id": "3005717", "video_name": "76dde672-73da-5c9d-85fb-0336fae76471", "text": "\u98ce\u683c\uff1a\u7535\u5f71\u5316\uff0c\u4e00\u540d\u5973\u5b50\u7a7f\u8fc7\u7e41\u5fd9\u7684\u5e02\u4e2d\u5fc3\u8857\u9053\uff0c\u8fdc\u79bb\u6444\u50cf\u673a\u8d70\u53bb\u3002"} +{"id": "2004140", "video_name": "0b71b582-6380-5ce9-b2a4-0fbae816f971", "text": "4K\u89c6\u9891\u753b\u8d28\uff0c\u6050\u6016\u6545\u4e8b\uff0c\u4e3a\u4e86\u6446\u8131\u7ea2\u7ebf\u7d27\u7d27\u7f20\u7ed5\u7684\u675f\u7f1a\u800c\u594b\u6597\u3002"} +{"id": "2003680", "video_name": "d204a61d-ad76-5b0f-8641-8587d98ce305", "text": "\u4e00\u4f4dTheyyam\u827a\u672f\u5bb6\u5728\u68ee\u6797\u4e2d\u8868\u6f14"} +{"id": "0003163", "video_name": "38751cc4-45e2-5e88-8fd3-d73e42bf140f", "text": "\u68ee\u6797\u91cc\u7684\u8611\u83c7\u5168\u5e74\u751f\u957f\u3001\u67af\u840e\u518d\u751f\uff0c\u5c55\u73b0\u751f\u547d\u5faa\u73af\u548c\u81ea\u7136\u7684\u529b\u91cf\u3002"} +{"id": "0006156", "video_name": "277394ef-e600-57e7-914c-13337e1e024b", "text": "\u72d7\u88ab\u8c93\u548c\u96de\u5305\u570d\u3002"} +{"id": "2007914", "video_name": "ab2dc2e3-f375-5b4e-aa78-d58be9be943c", "text": "\u514b\u91cc\u5e0c\u7eb3\u6208\u5e15\u5c14\u00b7\u5854\u5e93\u5c14\u7684\u6545\u4e8b\uff0c\u773c\u775b\u7728\u52a8\uff0c\u624b\u81c2\u52a8\u5f39\uff0c\u8eab\u4f53\u52a8\u8d77\u6765\uff0c\u8bf4\u7b11\u7740\u3002"} +{"id": "0003825", "video_name": "4429bcfb-3d42-5c73-84b9-933a925230b5", "text": "\u7537\u4eba\u5750\u5728\u672a\u6765\u4e3b\u4e49\u533b\u7597\u5ea7\u6905\u4e0a\uff0c\u7528\u5916\u90e8\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u533b\u7597\u624b\u6062\u590d\u4ed6\u7684\u9762\u90e8\u76ae\u80a4\u3002"} +{"id": "2005858", "video_name": "2cf36035-f33c-5e75-9230-833b48512d06", "text": "\u5728\u4e00\u4e2a\u95f9\u9b3c\u7684\u68ee\u6797\u91cc\u4e0b\u96e8\u4e86\u3002\u6d88\u606f\uff1a\u5783\u573e\u90ae\u4ef6\u3002"} +{"id": "2007706", "video_name": "65c7c29d-4297-5a69-87e7-c866a66dcb98", "text": "\u871c\u8702\u5408\u5531\u56e2\u7684Kermit\u5728\u4e00\u5bb6\u4ee5\u661f\u7403\u5927\u6218\u4e3a\u4e3b\u9898\u7684\u8fea\u65af\u79d1\u91cc\u8df3\u821e\uff0c\u4eff\u4f5b\u662fAlejandro Jodorowsky"} +{"id": "8003222", "video_name": "bb7a43f1-1014-5398-a0a2-68ed32c62b35", "text": "\u7406\u53d1\u5e08\u3001\u53d1\u578b\u5e08\u3001\u53d1\u578b\u8bbe\u8ba1\u5e08\u3001\u53d1\u578b\u6c99\u9f99\u3002\u4fe1\u606f\uff1aBERRAK\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004981", "video_name": "5c178aa5-857f-5c24-b783-7271baba21d0", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u80cc\u5f71\uff0c\u6050\u6016\uff0c\u96fe\u6c14\uff0c\u602a\u5f02\u7684\u7eff\u5149\uff0c\u5730\u4e0a\u6709\u7ea2\u8272"} +{"id": "5001496", "video_name": "c4bf8e49-7e2d-50b0-aad3-5ee707596953", "text": "\u786b\u78fa\u7ea2\u96e8\u5728\u8fdc\u5904\u843d\u4e0b\n\nSource sentence: The cat is sleeping on the table. \n\u90a3\u53ea\u732b\u6b63\u5728\u684c\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "0003822", "video_name": "441f2112-2465-5370-9263-1ed14b8c25ff", "text": "\u6697\u9ed1\u672a\u6765\u4e3b\u4e49\u80cc\u666f\uff0c\u84dd\u8272\u548c\u7d2b\u8272\u7ebf\u6761\u79fb\u52a8\u3002"} +{"id": "0005362", "video_name": "197c74cd-e210-5fc8-9852-534f02ef6140", "text": "\u5c06\u7bdd\u706b\u4e0e\u7e41\u661f\u70b9\u70b9\u7684\u591c\u7a7a\u76f8\u878d\u5408\uff0c\u8ba9\u706b\u7130\u8f7b\u8f7b\u5730\u71c3\u70e7\u548c\u9065\u8fdc\u661f\u661f\u7684\u95ea\u70c1\u589e"} +{"id": "3004605", "video_name": "632257e5-c037-5c34-88bc-e10930b68e97", "text": "\u65f6\u95f4\u548c\u7a7a\u95f4\u626d\u66f2\u4e86\uff0c\u7537\u5b69\u5f88\u5bb3\u6015\u3002"} +{"id": "7004690", "video_name": "ce2b0b28-f2fe-5c20-88fa-63a562294a47", "text": "\u7a7f\u7740\u673a\u5668\u4eba\u670d\u7684\u5973\u58eb\u4e0d\u505c\u5730\u4f4e\u58f0\u8033\u8bed\u3002"} +{"id": "2006981", "video_name": "82401dab-e94e-5135-9c0c-4dea1e1eb475", "text": "\u4eba\u4ee5\u6709\u8da3\u7684\u65b9\u5f0f\u79fb\u52a8\u3002"} +{"id": "0005882", "video_name": "22c38a21-0a00-5897-9ba2-37b4cc128a97", "text": "\u603b\u4e4b\uff0c\u8fd9\u4e2a\u5408\u5e76\u7684\u6587\u672c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u4e16\u754c\uff0c\u751f\u7269\u670b\u514b\u5143\u7d20\u4e0e\u53cd\u4e4c\u6258\u90a6\u7f8e\u5b66\u878d\u5408\u5728\u4e00"} +{"id": "8001924", "video_name": "8d197c89-eb71-52e1-99a3-e47cf95679e6", "text": "15\u5c81\u7684\u7537\u5b69\u5728\u516c\u56ed\u6563\u6b65\u3002"} +{"id": "2003655", "video_name": "a4bb9c0a-8652-583a-a2e6-f01e4d3d1a72", "text": "\u4e00\u4f4d\u7a7f\u7740\u4f20\u7edf\u4e2d\u56fd\u670d\u88c5\u7684\u5c0f\u4e2d\u56fd\u5973\u5b69"} +{"id": "1006057", "video_name": "6f3d6714-ad72-5cb4-9982-7498b027eac5", "text": "\u7535\u5382\u7684\u7a97\u6237\u5728\u591c\u665a\u53d1\u51fa\u84dd\u8272\u7684\u5149\u8292\uff0c\u88ab\u68ee\u6797\u6240\u73af\u7ed5\uff0c\u4fef\u77b0\u7740\u4e0b\u65b9\u3002\u9644\uff1a1\u4e2a"} +{"id": "0003912", "video_name": "459bf918-9397-5c7c-a547-7b13cb4b19c1", "text": "\u96e8\u6797\u4e2d\u4e00\u53ea\u53f6\u5207\u8681\u5728\u6811\u679d\u4e0a\u5272\u65ad\u4e00\u7247\u53f6\u5b50\u3002"} +{"id": "1006235", "video_name": "723bca4b-ca3a-57da-a588-0a1548818253", "text": "\u673a\u68b0\u86c7\u4ece\u9b54\u6cd5\u6811\u4e0a\u53d6\u56de\u4e00\u53ea\u94ec\u8272\u7684\u82f9\u679c\u3002"} +{"id": "1005173", "video_name": "5f37adab-2a92-5657-8f80-d02bf7958744", "text": "\u5236\u4f5c\u56fe\u50cf\u4ea4\u6d41\u548c\u6df7\u5408\u8bb0\u5f55\u3002"} +{"id": "4003322", "video_name": "0d114184-a53d-5622-94da-753adee00abb", "text": "\u5feb\u4e50\u5feb\u4e50\u5feb\u4e50\uff0c\u7535\u5f71\u611f\uff0c4K\uff0c\u827a\u672f\u7535\u5f71\u3002"} +{"id": "3004290", "video_name": "8d939b82-0b2d-550b-95c0-874996472257", "text": "\u624e\u62c9\u51dd\u89c6\u7740\u7a97\u5916\u58ee\u4e3d\u7684\u98ce\u666f\uff0c\u5fc3\u751f\u5411\u5f80\u3002"} +{"id": "8002312", "video_name": "20b5d1fc-901b-53eb-978a-64d9e95c0784", "text": "\u6c49\u5c3c\u62d4\u00b7\u5df4\u5361\u5e84\u4e25\u5ba3\u8a93\uff0c\u8a93\u8a00\u4e0d\u60dc\u4e00\u5207\u4ee3\u4ef7\u4fdd\u536b\u8fe6\u592a\u57fa\u3002\u901a\u8fc7\u6c49\u5c3c\u62d4\u88ab"} +{"id": "2005947", "video_name": "66f172f3-f525-5f93-baea-242e5cc51797", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u68ee\u6797\u91cc\u8ffd\u9010\u4e00\u540d\u4eba\u7c7b\u3002"} +{"id": "0006028", "video_name": "2551be9c-fd6c-5f95-b9cd-a66c4c6968ac", "text": "2016\u5e74\u5927\u9009\u5f53\u665a\uff0c\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5ba3\u5e03\u80dc\u5229\u7684\u9ed1\u767d\u771f\u5b9e\u7167\u7247\u3002"} +{"id": "2003668", "video_name": "fec13648-4314-5ef8-92ad-9538208d09d1", "text": "\u4e00\u4e2a\u5b9a\u4f4d\u4e2a\u4eba\u7684\u79c1\u4eba\u8c03\u67e5\u4e1a\u52a1\u7684\u6807\u5fd7\u3002"} +{"id": "0004024", "video_name": "01b430ce-3c3d-5645-aa05-61ae37273812", "text": "\u5728\u84dd\u8272\u80cc\u666f\u4e0b\uff0c\u4e2d\u7b49\u5927\u5c0f\u7684\u9ec4\u8272\u7403\u5f62\u7269\u4f53\u5728\u77e2\u91cf\u56fe\u4e2d\u4e00\u8d77\u7206\u70b8\u3002"} +{"id": "7003431", "video_name": "5866ed11-174b-5f8b-81e5-1eecde9d31cc", "text": "\u4e00\u53f0\u7eff\u8272\u7684\u6536\u5272\u673a\u5728\u708e\u70ed\u7684\u6674\u5929\u6536\u5272\u5c0f\u9ea6\u3002"} +{"id": "2007679", "video_name": "90fae44f-b1d6-5290-9ac4-d2af0917f0b9", "text": "30\u53ea\u96f7\u9b3c\u9e1f\uff0c\u70ed\u5e26\u6c1b\u56f4\uff0c\u97f3\u4e50\u89c6\u9891\uff0c\u7f29\u653e\uff0c\u98de\u5411\u65e5\u843d\u3002"} +{"id": "2004587", "video_name": "ec318466-89e5-5472-b332-f31f8639cd1c", "text": "\u7167\u7247\u4ece\u642d\u4fbf\u8f66\u8005\u7684\u53e3\u888b\u4e2d\u9732\u51fa\uff0c\u5750\u5728\u4e00\u8f86\u6c7d\u8f66\u91cc\u906d\u9047\u96f7\u66b4\u3002"} +{"id": "3004965", "video_name": "eb447f87-9de1-5764-8f46-026bdc1ea27d", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u706b\u6d77\u8ff7\u5bab\u3002"} +{"id": "2007068", "video_name": "a68f0217-8072-5db9-871e-a980d91b88f0", "text": "\u770b\u4e0d\u89c1\u7684\u773c\u775b\u89c2\u5bdf\u7740\u4ed6\u4eec\u7684\u6bcf\u4e00\u4e2a\u52a8\u4f5c\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "8002814", "video_name": "d35df877-6f7a-5248-b09f-b3274ae56a41", "text": "\u4eba\u5411\u8036\u7a23\u57fa\u7763\u6c42\u52a9\u3002"} +{"id": "0003833", "video_name": "44440041-5ac1-5eab-827d-e74df3f22151", "text": "\u4e00\u4f4d\u8d2b\u7a77\u7684\u5973\u58eb\u548c\u5979\u7684\u5973\u513f\u3002"} +{"id": "2004470", "video_name": "93710bbd-09c1-553c-8b54-708569a91fcc", "text": "\u535a\u58eb\u90aa\u6076\u901a\u8fc7\u653e\u5927\u955c\u653e\u5927\u8096\u50cf\u89c2\u770b\u3002"} +{"id": "3005645", "video_name": "c1c9faae-32df-5019-843d-f102be9205d3", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u53cc\u624b\u88ab\u7ed1\uff0c\u8dea\u5728\u5730\u4e0a\u3002"} +{"id": "2006291", "video_name": "f91cbfe0-0ecf-5577-a730-c2e783394908", "text": "\u4ed9\u5973\u548c\u5c0f\u7cbe\u7075\u70ed\u60c5\u5730\u6b22\u8fce\u8389\u8389\u548c\u7c73\u5a05\u3002\u4ed6\u4eec\u8df3\u821e\u3001\u5531\u6b4c\uff0c\u5e76\u5206\u4eab\u6765\u81ea\u4ed6\u4eec\u795e"} +{"id": "0003640", "video_name": "40e6ef2d-6576-577d-bbd5-04374f682354", "text": "\u4e03\u5f69\u5c71\u8109\uff0c\u68a6\u5e7b\u822c\u7684\u4e00\u5929\uff0c\u5f69\u8679\uff0c\u7011\u5e03\uff0c\u9e1f\u513f\u3002"} +{"id": "8002577", "video_name": "fb15f992-c20e-53ed-afd8-db5f6aa3cfff", "text": "\u4e94\u5c81\u5c0f\u548c\u5c1a\u8bf4\u8bdd\uff0c\u770b\u7740\u6444\u50cf\u673a\u3002"} +{"id": "2006101", "video_name": "369060e4-ff4f-5097-8837-bf5422f6a738", "text": "\u6050\u6016\u7684\u9152\u5e97\uff0c\u4f11\u606f\u5ba4\u4e2d\u592e\u6709\u4e00\u53f0\u7535\u89c6\u3002"} +{"id": "2006813", "video_name": "e2cc8d90-aa10-5a80-9115-1454950b478f", "text": "\u6c34\u4e0b\u666f\u89c2\uff0c\u7c89\u8272\u7684\u732b\u9c7c\u6e38\u6cf3\u3002"} +{"id": "1003654", "video_name": "4341d6db-d6af-56e2-a2e9-925c1c6010ce", "text": "\u4e00\u4e2a\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\u673a\u5668\u4eba\u5728\u829d\u52a0\u54e5\u5e02\u80cc\u666f\u4e0b\u884c\u8d70\u3001\u7728\u773c\u548c\u8bf4\u8bdd\u7684\u56fe\u50cf\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\uff0c\u7535\u5f71\u611f"} +{"id": "7004548", "video_name": "df057adf-8c8a-53be-b10d-ad49671a736c", "text": "\u4e00\u70b9\u70b9\u6c34\u4ece\u4e00\u4e2a\u624b\u5de5\u5236\u4f5c\u7684\u80e1\u6843\u6728\u684c\u5b50\u4e0a\u6ef4\u4e0b\u6765\u3002"} +{"id": "7003640", "video_name": "fff5a0b3-e05d-50e8-9425-f755513cb39e", "text": "\u4e00\u4f4d\u5973\u58eb\u548c\u5979\u7684\u4e08\u592b\u3001\u5f1f\u5f1f\u3001\u7236\u4eb2\u548c\u513f\u5b50\u3002"} +{"id": "7002699", "video_name": "3bf11b8f-2c43-58d0-9a47-480f7bf4efde", "text": "\u7eb3\u624e\u5c14\u5df4\u8036\u592b\u00b7\u52aa\u5c14\u82cf\u4e39\u4f4f\u5728\u4e00\u4e2a\u82b1\u82b1\u516c\u5b50\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "0006680", "video_name": "30d6d9dc-47c2-548d-952b-0b65a3480dc0", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u5deb\u5e08\u670d\u88c5\u7684\u82f1\u4fca\u7537\u5b50\uff0c\u624b\u4e2d\u53d1\u51fa\u706b\u7403\uff0c\u773c\u4e2d\u542b\u6cea\u671b\u7740\u4e00\u4f4d\u6df1\u7ea2\u8272\u5934\u53d1\u7684\u7f8e"} +{"id": "0004957", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "\u589e\u5f3a\u56fe\u50cf\uff0c\u4e0a\u8272\uff0c\u653e\u5165\u9633\u5149\u660e\u5a9a\u7684\u666f\u8272\u4e2d\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001612", "video_name": "053335d5-c6de-5406-a6ac-df4e22e3ca81", "text": "\u5236\u4f5c\u4e00\u4e2a\u77ed\u5c0f\u7684\u52a8\u753b\u7247\uff0c\u5c55\u73b0\u4eba\u4eec\u4ece\u6050\u9f99\u9003\u8dd1\u7684\u573a\u666f\u3002\n\nSource sentence: The conference will be held in the main hall on the second floor. \n\n\u4f1a\u8bae\u5c06"} +{"id": "3003357", "video_name": "2bb4127c-c109-503c-ae5b-3482e524bb47", "text": "\u591c\u7a7a\u4e2d\u7684\u60c5\u4e66"} +{"id": "3006171", "video_name": "457ac396-f920-5f95-a106-2b2f38e700c7", "text": "\u4e00\u53ea\u7ae0\u9c7c\u9047\u5230\u4e00\u53ea\u9c7f\u9c7c\uff0c\u5199\u5b9e\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "8003809", "video_name": "b75e0183-83d2-5293-a3e0-ac91993a194c", "text": "\u751f\u6210\u4e00\u4e2a\u751f\u52a8\u7684\u63cf\u8ff0\uff0c\u63cf\u8ff0\u4e00\u4e2a\u52a8\u6f2b\u5973\u5b69\u6b22\u5feb\u5730\u7a7f\u8fc7\u4e00\u7247\u7f8e\u4e3d\u7684\u6a31\u82b1\u7530\u91ce\u3002\u6355\u6349\u5979\u7684\u5174\u594b"} +{"id": "1003806", "video_name": "464c90d3-c536-539d-a2bb-08f375cf4d0c", "text": "\u6770\u514b\u00b7\u9a6c\u4e0e\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4e0a\u6d77\u3002"} +{"id": "6003297", "video_name": "5bcd7f23-6fef-5387-8556-d6b3d278da66", "text": "\u4eba\u4eec\u5728\u4e00\u4e2a\u6b22\u5e86\u7684\u82f1\u56fd\u9152\u5427\u5185\u8df3\u821e\u3002"} +{"id": "0004124", "video_name": "039daf82-20aa-5c49-95fb-5748a4e8e488", "text": "\u8df3\u8dc3\u548c\u7740\u9646\uff0c\u52a8\u6001\uff0c4k\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "3004930", "video_name": "2b55e2b4-5721-5f17-bf30-d203e00fd8a6", "text": "\u5979\u5174\u594b\u5730\u642c\u8fdb\u53bb\uff0c\u4f46\u5947\u602a\u7684\u4e8b\u60c5\u5f00\u59cb\u53d1\u751f\u3002"} +{"id": "8002012", "video_name": "1896bd26-7e04-5d64-81ad-ce8a8cbac118", "text": "\u9ed1\u6697\u800c\u4ee4\u4eba\u56f0\u6270\u7684\u6c34\u4e0b\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4f4d\u7687\u5bb6\u5973\u738b\u5728\u6c34\u4e0b\u6e38\u6cf3\uff0c\u6d77\u5e95\u7684\u5e7b\u8c61\u4ee4\u4eba\u4ea7\u751f\u5e7b\u89c9"} +{"id": "4003206", "video_name": "948d696b-1407-5b64-b39d-9902de1befe8", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u602a\u517d\u5728\u4e91\u5c42\u4e0a\u7a7a\u98de\u884c\uff0c\u8ffd\u9010\u4e00\u67b6\u98de\u673a\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun. \n\n\u90a3\u53ea"} +{"id": "2003661", "video_name": "b3206665-8e2d-5c26-84cd-aae340214491", "text": "\u624b\u6301\u624b\u673a\u5728\u8857\u4e0a\u5954\u8dd1\u7684\u4e00\u7fa4\u4eba\u3002"} +{"id": "8001269", "video_name": "ce6820bd-a7fa-5517-b63d-504c9d331793", "text": "\u5e05\u6c14\u7684\u975e\u6d32\u667a\u8005\u5728\u65e9\u6668\u9192\u6765\u3002"} +{"id": "2006212", "video_name": "6543aa08-22ec-53ae-84de-9dacefcf8c0b", "text": "\u4e00\u4e2a\u6709\u5927\u7bf1\u7b06\u7684\u793e\u533a\uff0c\u91cc\u9762\u6f2b\u6e38\u7740\u50f5\u5c38\uff0c4k\u8d85\u903c\u771f\u3002"} +{"id": "0004756", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "\u7535\u5f71\u4ee5\u4e00\u4e2a\u88ab\u5e9f\u5f03\u7684\u7cbe\u795e\u75c5\u9662\u91cc\u7684\u6050\u6016\u5bc2\u9759\u4f5c\u4e3a\u5f00\u573a\u3002\u6211\u4eec\u8ba4\u8bc6\u4e86\u66fe\u5728\u8fd9\u91cc\u6cbb\u7597\u8fc7\u7684"} +{"id": "2006991", "video_name": "9e8f391e-7880-54b9-b022-2f5a6fbf324e", "text": "\u63a2\u7d22\u7f57\u9a6c\u7687\u5e1d\u7ef4\u65af\u5e15\u5148\u7684\u8ff7\u4eba\u751f\u547d\uff0c\u5e76\u6df1\u5165\u4e86\u89e3\u5b9a\u4e49\u4ed6\u7edf\u6cbb\u7684\u610f\u5916\u8f6c\u6298\u3002"} +{"id": "2005544", "video_name": "ab3080f5-9ec0-5fe9-b98f-92109201c81b", "text": "\u7535\u89c6\u5c4f\u5e55\u524d\uff0c\u5ffd\u7136\u4ece\u91cc\u9762\u4f38\u51fa\u4e00\u53ea\u624b\u6572\u4e86\u4e09\u4e0b\u3002"} +{"id": "7002515", "video_name": "07ff6314-0c59-5359-87d2-ec46b52d0842", "text": "\u4fe1\u606f\uff1aESTERILLAS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff1b\u7ef5\u7f8a\u5b8f\u89c2\u3001\u666f\u6df1\u3001\u76f8\u673a\u7f29\u653e\u3002"} +{"id": "8003641", "video_name": "cfc4c98b-02aa-5d1d-bfba-6c1c9940afc1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c0f\u53a8\u623f\u91cc\u88ab\u4ece\u4e09\u4e2a\u89d2\u5ea6\u770b\u5230\uff0c\u4ed6\u6b63\u5728\u51c6\u5907\u7389\u7c73\u997c\u5e72\u7684\u9762\u56e2\uff0c\u51c6\u5907\u53c2\u52a0\u4e00\u4e2a\u805a\u4f1a\u3002"} +{"id": "6003314", "video_name": "96634517-3ade-5320-85f5-ea9cbf3e6ef6", "text": "\u6df1\u7c89\u8272\u7684\u5723\u8bde\u88c5\u9970\u54c1\u3002\u4fe1\u606f\uff1aHEADEX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006539", "video_name": "9dfe08a1-d2ec-59a0-af6c-2e8589bc2b8e", "text": "\u6027\u611f\u5973\u5b50\u5728\u54c8\u96f7\u6234\u7ef4\u68ee\u6469\u6258\u8f66\u5468\u56f4\u8df3\u821e\u3002"} +{"id": "7003840", "video_name": "d1774646-31de-5f9a-bd39-9fd3f37a6fae", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u53e4\u65f6\u671f\u4e00\u8f86\u65ad\u8f6e\u7684\u9a6c\u8f66\u7684\u7535\u5f71\u753b\u50cf"} +{"id": "2005352", "video_name": "82967599-0d58-50e1-93f7-e38753343959", "text": "3D \u8428\u59c6\u548c\u6770\u514b\u7ee7\u7eed\u548c\u4ed6\u5f00\u73a9\u7b11\uff0c\u4f46\u5e03\u6717\u5148\u751f\u544a\u8bc9\u4ed6\u4eec\u795e\u5947\u836f\u5242\u53ea\u662f\u4e2a\u795e\u8bdd\u3002"} +{"id": "8002070", "video_name": "ee97b093-3ef5-58b3-8431-d2eb3306e5cb", "text": "\u8bf7\u4e3a\u6211\u521b\u9020\u4e00\u7fa4\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u7684\u6d77\u8c5a\u3002"} +{"id": "7003231", "video_name": "6ee8a56c-3598-5a06-bb34-14920a82e785", "text": "\u677e\u6797\u91cc\u7684\u65e9\u6668\uff0c\u5e26\u6709\u8d5b\u65af\u91d1\u98ce\u683c\u7684\u8d5b\u535a\u670b\u514b\u718a\uff0c\u6cb9\u753b\u4f5c\u54c1\u3002"} +{"id": "0006426", "video_name": "2c2358de-f0c3-5b2f-9d94-04eb074ba19d", "text": "\u7070\u8272\u8f7b\u732b\u8eab\u4e0a\u5e26\u6709\u9ed1\u8272\u6761\u7eb9\u548c\u9ec4\u8272\u773c\u775b\uff0c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u5f81\u670d\u661f\u7403\u3002\n\nSource sentence: The sun sets behind the mountains,"} +{"id": "1003167", "video_name": "3a574aa4-3bc9-54e2-817b-11e4f052347d", "text": "\u97f3\u4e50\uff0c\u4e00\u79cd\u4f4e\u58f0\u8bb2\u8ff0\u53e4\u8001\u6545\u4e8b\u7684\u65cb\u5f8b\uff0c\u66fe\u7ecf\u89e6\u52a8\u8fc7\u4f60\u7684\u7075\u9b42\u3002"} +{"id": "6002377", "video_name": "9dbcf5f7-4d3d-5bca-a6a2-d05b2dd0f7f7", "text": "\u4e00\u5219\u540d\u4e3a\u827e\u5766\u8089\u5e97\u57c3\u62c9\u7279\u7684\u65e0\u829d\u58eb\u6c49\u5821\u5546\u4e1a\u5e7f\u544a\uff0c\u957f\u5ea6\u4e3a30\u79d2\u3002"} +{"id": "4002756", "video_name": "16cdccde-9877-539d-82fc-291ba4df1158", "text": "\u5b9d\u9a6c i8 \u5728\u6708\u7403\u4e0a\u884c\u9a76\u3002"} +{"id": "2007751", "video_name": "5703934c-6ea6-57e8-93eb-26457148dbfc", "text": "\u5e03\u6797\u80af\u5728\u76f4\u5347\u673a\u4e0a\u5fae\u7b11\u7740\u62cd\u624b\u3002"} +{"id": "4004391", "video_name": "8e8a78d3-9616-53f1-9283-feff97abf5a2", "text": "\u8389\u8389\u548c\u7ea6\u7ff0\u900a\u5148\u751f\u4e00\u8d77\u8df3\u821e\u65f6\uff0c\u53d1\u751f\u4e86\u4e0d\u53ef\u601d\u8bae\u7684\u53d8\u5316\u3002\u957f\u671f\u4ee5\u6765\u56f0\u6270\u7740\u7ea6\u7ff0\u900a"} +{"id": "2006325", "video_name": "b0bfed0b-b631-5ea4-ac59-4b2477c535bd", "text": "\u56fe\u5c14\u5361\u65af\u4e0e\u6469\u6208\u65af\u7684\u6218\u6597\u573a\u666f\uff0c\u6839\u636e\u300a\u7cbe\u7075\u5b9d\u94bb\u300b\u3001\u6258\u5c14\u91d1\u3001\u300a\u6307\u73af\u738b\u300b\u3001\u7cbe"} +{"id": "7002296", "video_name": "f9e61b94-b4c1-51a5-9ef1-41b1e0246678", "text": "\u6b22\u5feb\u7684\u97f3\u4e50\u54cd\u8d77\uff0c\u4e00\u5e45\u98ce\u666f\u5982\u753b\u7684\u519c\u573a\uff0c\u7eff\u6cb9\u6cb9\u7684\u7530\u91ce\u548c\u660e\u4eae\u7684\u84dd\u5929\u3002\u6765\u89c1\u89c1M"} +{"id": "2006485", "video_name": "1234d394-02a6-5423-af15-2201fa070974", "text": "\u6b7b\u4f8d\u5728\u7728\u773c\u95f4\u53d8\u6210\u8759\u8760\u4fa0\u3002"} +{"id": "7002783", "video_name": "bb131187-bbc7-56bd-92a1-89ff33cbf555", "text": "\u5728\u4e00\u6240\u65e5\u672c\u5b66\u6821\u91cc\u76f8\u7231\u7684\u4e24\u4e2a\u5973\u5b69\u3002"} +{"id": "1003374", "video_name": "3e322c5b-3e92-529b-8ede-0e1cddf362a5", "text": "\u672a\u6765\u4e3b\u4e49\u90e8\u843d\u5916\u661f\u4eba\u5411\u5916\u773a\u671b\uff0c\u5728\u7535\u5f71\u822c\u7684\u573a\u666f\u4e2d\uff0c\u9a91\u7740\u672a\u6765\u4e3b\u4e49\u6469\u6258\u98de\u9a70\u7a7f\u8d8a\u57ce\u5e02\uff0c"} +{"id": "6002454", "video_name": "23382a38-2122-50ca-840f-a859ded8bedf", "text": "\u5ba1\u7f8e\u7684\u52a8\u6f2b\u6c1b\u56f4\u573a\u666f\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u52a8\u6f2b\u6c1b\u56f4\uff0c80\u5e74\u4ee3\uff0cVHS\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u8d85\u7ea7\u7ec6\u8282"} +{"id": "0003878", "video_name": "4509b584-91e2-5777-bc40-3ed9200134cb", "text": "\u53ef\u53ef\u3001\u7c73\u5a05\u3001\u5362\u5361\u548c\u4ed6\u4eec\u53ef\u7231\u7684\u7236\u6bcd\u3002"} +{"id": "6003751", "video_name": "838bc625-cceb-5a02-9644-f12a9e8e0290", "text": "\u5929\u7a7a\u4e2d\u7684\u4e00\u9053\u5149\u7ebf\uff08\u7535\u5f71\u822c\u7684\u573a\u9762\uff09"} +{"id": "7004252", "video_name": "1d730eb2-32ea-5875-8b86-9a4c29beba2c", "text": "\u5ba2\u8239\u6b63\u5728\u51b0\u4e2d\u822a\u884c\u3002\n\nSource sentence: The restaurant is closed for renovation. \n\u9910\u5385\u56e0\u88c5\u4fee\u800c\u5173\u95ed\u3002"} +{"id": "1005339", "video_name": "620f863f-2ec2-53f0-9e81-bf917afa0026", "text": "\u4e00\u5927\u7897\u7eb3\u6069\u996d\u7897\u5496\u55b1\u5728\u4e13\u4e1a\u5de5\u4f5c\u5ba4\u767d\u8272\u80cc\u666f\u9876\u90e8\u4fef\u89c68K\u666f\u6df1\u62cd\u6444\u3002"} +{"id": "3004155", "video_name": "24d5fefc-2c47-5037-8317-8c18741d1a94", "text": "\u4f0a\u6851\u548c\u5965\u5229\u5f17\u6beb\u4e0d\u72b9\u8c6b\u5730\u8df3\u8fdb\u6c34\u4e2d\uff0c\u8fc5\u901f\u6e38\u5411\u6323\u624e\u7684\u5b69\u5b50\u3002\u51ed\u7740\u51b3\u5fc3\u548c\u56e2\u961f"} +{"id": "2007572", "video_name": "2b774b4a-c14e-5183-bce4-a8679746b5df", "text": "\u53c2\u4e0e\u5bf9\u8bdd\u3001\u652f\u6301\u548c\u5e73\u5021\u5bfc\u4ee5\u53ca\u652f\u6301\u4fc3\u8fdb\u548c\u89e3\u4e0e\u5171\u5b58\u7684\u5021\u8bae\uff0c\u6709\u52a9\u4e8e\u4e3a\u516c\u6b63\u800c\u6301\u4e45\u7684\u548c\u5e73\u52aa\u529b\u3002\u63d0\u9ad8\u5bf9"} +{"id": "8003415", "video_name": "65e33ee9-8d72-5346-b2d2-c8bde9a7a89a", "text": "\u4e00\u540d\u7537\u5b50\u5728\u68ee\u6797\u4e2d\u89c2\u671b\u7740\u4e00\u679a\u6838\u5f39\u843d\u4e0b\uff0c\u8fd9\u662f\u4e00\u4e2a\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u5f0f\u7684\u573a\u666f\u3002"} +{"id": "3005412", "video_name": "a279ec0b-e435-519b-bfec-0f03f11e3c07", "text": "\u79d1\u5b66\u5bb6\u88ab\u56f0\u5728\u4e00\u4e2a\u9ed1\u6697\u3001\u5e9f\u5f03\u7684\u7814\u7a76\u8bbe\u65bd\u4e2d\uff0c\u88ab\u5931\u63a7\u7684\u4eba\u5de5\u667a\u80fd\u5b9e\u9a8c\u6240\u8ffd\u9010\u3002"} +{"id": "8002922", "video_name": "8b94c811-3620-50a1-85ed-4e6511bb9a62", "text": "\u5e74\u8f7b\u5973\u5b50\u5728\u5f39\u94a2\u7434\u7684\u540c\u65f6\u5e26\u9886\u7740\u5408\u5531\u56e2\u3002"} +{"id": "6002679", "video_name": "3f0e8052-dd40-5172-ba1d-bf8fa939538e", "text": "\u9c7c\u8df3\u51fa\u73bb\u7483\u676f\u3002"} +{"id": "6003131", "video_name": "cf217cbc-724f-5a50-bb3a-ec1dad7a7aa7", "text": "\u7528\u5f62\u5bb9\u8bcd\u548c\u5173\u952e\u8bcd\u63cf\u8ff0\u62cd\u6444\u7167\u7247\u7684\u65f6\u523b\u3001\u4e3b\u9898\u6216\u5bf9\u8c61\uff0c\u5305\u62ec\u620f\u5267\u6027\u7ec6\u8282\u3001\u6545\u4e8b\u60c5\u8282\u3001\u57ce\u5e02\u3001\u5e74"} +{"id": "7004109", "video_name": "a5061576-c738-5d64-83d7-e6749e201d0e", "text": "\u4ece\u4e00\u4e2a\u5c4b\u9876\u8df3\u5230\u53e6\u4e00\u4e2a\u5c4b\u9876\uff0c\u62cd\u6444\u8005\u4f7f\u7528\u4e3b\u89d2\u89c6\u89d2\u3002"} +{"id": "6002722", "video_name": "6b31ed0e-70bb-5ebf-92e1-f462d394a3fd", "text": "\u6d77\u6d0b\u4e2d\u7684\u89c2\u4f17\u52a8\u7269\u4e3a\u6d77\u8c5a\u6234\u62c9\u9f13\u638c\u6b22\u547c\uff0c\u4ed6\u4eec\u7684\u638c\u58f0\u5728\u6d69\u701a\u95ea\u8000\u7684\u6d77\u6d0b\u4e2d\u56de"} +{"id": "6004494", "video_name": "7d51e5c0-54f7-5405-89e6-95eab0ba73ac", "text": "\u9ec4\u8272\u7334\u5b50\u7684\u7d20\u63cf\uff0c\u9759\u6001\u5730\u5b89\u88c5\u3002"} +{"id": "6002912", "video_name": "ea036f24-e3c9-5f8b-b8d0-2d915bf9174d", "text": "\u4e00\u4e2a\u8ff7\u4eba\u3001\u98ce\u666f\u4f18\u7f8e\u7684\u5c0f\u9547\uff0c\u80cc\u666f\u662f\u8fde\u7ef5\u8d77\u4f0f\u7684\u5c71\u4e18\u30024K\uff0c\u903c\u771f\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u5145\u6ee1\u6d3b"} +{"id": "8001817", "video_name": "c8d2650f-56fd-508d-868e-df20fed1e7b2", "text": "\u96f7\u7535\u51fb\u4e2d\u4e00\u68f5\u6811\uff0c\u6811\u679d\u53d8\u6210\u6839\u987b\uff0c\u7a7f\u900f\u5730\u9762\u3002"} +{"id": "1003255", "video_name": "3bebbc84-db3e-5468-a837-a6dfc17bdd7b", "text": "\u7206\u7af9\u3001\u95ea\u70c1\u7684\u706f\u5149\u548c\u5faa\u73af\u64ad\u653e\u76842024\u3002"} +{"id": "3006611", "video_name": "1ce0f477-bda6-5f1c-9b0f-66e951b6b3db", "text": "\u955c\u5934\u62c9\u8fd1\uff0c\u7279\u5199\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u770b\u7740\u4e00\u5ea7\u71c3\u70e7\u7684\u57ce\u5e02\uff0c\u7136\u540e\u4ed6\u8f6c\u5411\u955c\u5934\u5bf9\u6211\u4eec\u5fae\u7b11\u3002"} +{"id": "0005518", "video_name": "1c30737a-6de4-5c37-9882-650c4469b947", "text": "\u89d2\u8272\u626e\u6f14\u6e38\u620f\u684c\u4e0a\u53f2\u8bd7\u822c\u7684\u6218\u6597"} +{"id": "2004548", "video_name": "b025a3a1-ac96-5442-83d3-76da2f27d150", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u5e9e\u5927\u7684\u9ed1\u6697\u7a7a\u95f4\u7ad9\u68c0\u67e5\u8d27\u7269\u3002\u91d1\u5c5e\u8d28\u611f\u3002\u9634\u68ee\u53ef\u6016\u3002\u7d27\u5f20\u6fc0\u70c8\u3002\u8d85\u5e7f\u89d2\u3002"} +{"id": "1004564", "video_name": "54c89f29-0c82-5b2e-8724-860c5c429aa9", "text": "\u5e72\u51c0\u7684\u8bbe\u8ba1\uff0c\u6c99\u6f20\uff0c\u955c\u5899\uff0c\u8eab\u7a7f\u672a\u6765\u519b\u88c5\u7684\u4eba\u4eec\u51a5\u60f3\uff0c\u8d85\u73b0\u5b9e\u7684\u5b81\u9759\u666f\u8c61\uff0c\u903c\u771f\u7684\u62cd"} +{"id": "4004399", "video_name": "168ff944-a972-5624-b663-6159803699e5", "text": "\u7279\u6717\u666e\u5feb\u901f\u5730\u8dd1\u6765\u8dd1\u53bb\u5e76\u8df3\u8dc3\u3002"} +{"id": "3004839", "video_name": "90c72c6a-1e07-5d13-9e10-9fd949af6985", "text": "\u63d0\u793a\uff1a\u79fb\u52a8\u7684\u4e91\u548c\u706b\u5c71\u7206\u53d1"} +{"id": "8001940", "video_name": "cb304806-ca5f-5aac-819f-e690b71c3ee8", "text": "\u4e00\u540d\u7537\u5b50\u5728 Studio Ghibli \u98ce\u683c\u4e0b\u9003\u79bb\u4e00\u4e2a\u5de8\u5927\u7684\u6d3b\u7740\u7684\u51b0\u6dc7\u6dcb\u86cb\u7b52\u3002"} +{"id": "4004494", "video_name": "9ce7c1cc-eaa4-583f-be3d-99022ba3e8c3", "text": "\u4e00\u5ea7\u88ab\u9ad8\u5c71\u73af\u7ed5\u7684\u5b81\u9759\u6e56\u6cca\uff0c\u5b64\u72ec\u7684\u5929\u9e45\u5728\u73bb\u7483\u822c\u7684\u6e56\u9762\u4e0a\u4f18\u7f8e\u5730\u6ed1"} +{"id": "0005241", "video_name": "1722b7d1-15fd-5130-a94b-e7241d1bb632", "text": "\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u5728\u4e00\u6761\u8def\u7684\u4e0a\u65b9\u3002\u4fe1\u606f\uff1a\u8981\u53cb\u597d\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "1004571", "video_name": "54e83880-a72a-5472-af48-313cd7ca86b1", "text": "\u6cb3\u6d41\u7a7f\u8fc7\u6a44\u6984\u6811\uff0c\u4ee54k\u5206\u8fa8\u7387\u5448\u73b0\u3002"} +{"id": "0005812", "video_name": "2190ec53-bbf8-5831-b617-da0b372a4f2c", "text": "\u6709\u4eba\u5c3d\u5168\u529b\u5954\u8dd1\uff0c\u88ab\u8bb8\u591a\u50f5\u5c38\u8ffd\u9010\uff0c\u5728\u68ee\u6797\u4e2d\u95f4\u3002"} +{"id": "3005492", "video_name": "e3d00130-7b7b-5ddd-b4b1-f516fa649047", "text": "\u8d85\u903c\u771f\u7684\u6d88\u9632\u8f66\uff0c\u5728\u767d\u5929\u6251\u706d\u706b\u707e\u3002"} +{"id": "8003181", "video_name": "63ab128a-f8a0-5ce7-8e6d-c4da119e3e0e", "text": "\u6d6e\u52a8\u7684\u624b\u5207\u7740\u83e0\u841d\uff0c\u9c7c\u773c\u955c\u5934\uff0cVHS\uff0cSuper 8\u3002"} +{"id": "0006329", "video_name": "2ab78d3d-ec2a-5669-a691-148c55aa7424", "text": "\u6d3b\u52a8\u7684\uff0c\u4e24\u4e2a\u4eba\u7684\u5934\u53d1\u52a8\uff0c\u773c\u775b\u6643\u52a8\u3002"} +{"id": "8002458", "video_name": "cda07b8b-ec95-5bf5-8516-249f3c5509d5", "text": "\u4e00\u5468\u5185\u51cf\u91cd5\u516c\u65a4\u7684\u52a8\u529b\u6765\u6e90"} +{"id": "6004361", "video_name": "037d44de-7e5a-5798-a310-c83aea38adb8", "text": "\u4fe1\u7528\u5206\u6570\u548c\u4e2d\u56fd\u5b69\u5b50\u7684\u4e2a\u4eba\u4fe1\u606f\u7eb8\u8d28\u7248\u3002"} +{"id": "6002682", "video_name": "7c527ba7-566b-54b9-a699-60847d98e09c", "text": "\u4e00\u8f86\u6c7d\u8f66\u6cbf\u7740\u9053\u8def\u884c\u9a76\u3002\u68ee\u6797\u51ac\u65e5\u7684\u508d\u665a\u3002"} +{"id": "0006484", "video_name": "2d4ee89b-1f57-54fb-a441-702394f70232", "text": "\u660f\u6697\u7684\u6c1b\u56f4\uff1a\u65af\u666e\u6797\u83f2\u5c14\u5fb7\u7684\u96fe\u591c\n\u4e00\u5c42\u539a\u539a\u7684\u96fe\u7b3c\u7f69\u7740\u65af\u666e\u6797"} +{"id": "6002981", "video_name": "8c3f838b-fc73-5f62-94ac-a8d1eaf83072", "text": "\u7070\u8272\u5916\u661f\u4eba\u300151\u533a\u3001\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "3004215", "video_name": "01402c84-0c88-5695-8b56-6578ca432c70", "text": "\u5168\u8eab\u51fa\u73b0\u602a\u7269\uff0c\u9762\u5bb9\u6050\u6016\uff0c\u671d\u7740\u4f60\u6307\u5411\uff0c\u4ee4\u4eba\u611f\u5230\u53ef\u6015\u7684\u6050\u60e7\u3002\u5728\u80cc\u666f\u4e2d\uff0c\u53ef\u4ee5\u770b\u5230\u4e00\u5ea7\u57ce"} +{"id": "1003688", "video_name": "43f4e564-ccc1-5aac-a14c-69eed1cce2ba", "text": "\u5f53\u4e00\u4e2a\u5973\u4eba\u6253\u5f00\u95e8\u65f6\uff0c\u5979\u60ca\u5446\u4e86\u3002"} +{"id": "4003823", "video_name": "c97297ca-dd8c-50c6-ae82-ca1c302a1dc3", "text": "\u4e00\u4e2a\u62e5\u6324\u7684\u672a\u6765\u4e3b\u4e49\u65e5\u672c\u821e\u5385\uff0c\u914d\u6709\u9713\u8679\u706f\u548c\u8df3\u821e\u7684\u4eba\u4eec\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002\n\nSource sentence: The"} +{"id": "3003889", "video_name": "9eefc926-e87d-59bf-b34c-728c595d8595", "text": "\u53cd\u6050\u7cbe\u82f11.6 Xanax Percocets Molly \u6697\u7f51\u6e90\u5f15\u64ce \u70b9\u5934\u7684CT\u3002"} +{"id": "1004369", "video_name": "50b920c8-84f9-5b29-9ed1-8393abede9f5", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u89c6\u9891\uff0c\u63cf\u7ed8\u4e00\u53ea\u9e1f\u5728\u6674\u6717\u7684\u84dd\u5929\u4e2d\u98de\u7fd4\u3002"} +{"id": "1005266", "video_name": "60e4b591-2c25-50d6-bf51-f1e606c22e0a", "text": "\u73b0\u4ee3\u5316\u7684\u7f8e\u56fd\u9769\u547d\uff0c\u4f7f\u7528\u52a8\u4f5c4\uff0c30\u5e27\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002"} +{"id": "2006960", "video_name": "91506482-a156-5bbc-a828-f22c2c789069", "text": "\u673a\u5668\u4eba\u4ece\u6469\u5929\u5927\u697c\u9876\u90e8\u8df3\u4e0b\uff0c\u57ce\u5e02\u5e9f\u589f\uff0c\u8d5b\u535a\u670b\u514b\u6c14\u606f\uff0c2077\u5e74\uff0c\u4e1c\u4eac\uff0c\u590d\u6742\u7684\u7ec6\u8282"} +{"id": "3004347", "video_name": "58790c57-9e43-5a7f-8106-cc416f563b95", "text": "\u5e72\u51c0\u7684\u8def\uff0c\u7f8e\u4e3d\u7684\u9633\u5149\uff0c\u5c0f\u7537\u5b69\uff0c\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "2005513", "video_name": "60f68fc3-f612-52f2-af87-bbe7242f01ad", "text": "\u4e3a\u521d\u5b66\u8005\u521b\u5efa\u4e00\u4e2a10\u5206\u949f\u7684\u6709\u6c27\u8fd0\u52a8\u89c6\u9891\uff0c\u4ee5\u71c3\u70e7\u8102\u80aa\u548c\u5361\u8def\u91cc\u3002"} +{"id": "4002199", "video_name": "574ac63b-bef6-5cff-943b-8b3e391b8c76", "text": "\u4e00\u540d\u62ff\u7740\u67aa\u7684\u5c0f\u5973\u5b69\u5728\u5954\u8dd1\u3002"} +{"id": "0005655", "video_name": "1eceff15-015b-5a26-b7e9-83b20109057c", "text": "\u63cf\u8ff0\u4e00\u573a\u9ad8\u6f6e\u51b3\u6597\uff0c\u4ed6\u4eec\u9762\u5bf9\u9634\u8c0b\u80cc\u540e\u7684\u603b\u7b56\u5212\u8005\u3002"} +{"id": "2006364", "video_name": "09c92533-814c-534d-a3b4-c4ea8288447d", "text": "\u4e00\u4e2a\u590f\u5a01\u5937\u51b2\u6d6a\u8005\u5728\u590f\u5a01\u5937\u51b2\u7740\u5de8\u6d6a\u3002"} +{"id": "1004345", "video_name": "5025e221-817f-51c7-b3ec-f4b74e4cd6be", "text": "\u5723\u8bde\u8001\u4eba\u7ad9\u5728\u5723\u8bde\u6811\u4e0b\uff0c\u624b\u6301\u201c\u5723\u8bde\u5feb\u4e50\u201d\u7684\u706f\u724c\uff0c\u65c1\u8fb9\u6446\u653e\u7740\u6240\u6709\u793c\u7269\u548c\u9e8b"} +{"id": "3003535", "video_name": "0855ab78-1316-54f3-9011-508e978ae5d5", "text": "\u8ba9\u76f8\u673a\u5c06\u7269\u4f53\u7f29\u5c0f\uff0c\u5448\u73b0\u51fa\u5fae\u7b11\u6216\u6050\u6016\u7684\u573a\u666f\u3002"} +{"id": "2005184", "video_name": "2eef866f-8617-5982-8bea-1d529fab7756", "text": "\u653e\u5927\u955c\u5934\uff0c\u770b\u770b\u6c49\u5821\u4e0a\u6dcb\u7740\u7684\u79d8\u5bc6\u62db\u724c\u9171\u3002"} +{"id": "2003723", "video_name": "065b71c9-2776-5279-a4a4-d7d155e531c3", "text": "35\u6beb\u7c73\u3002\u590d\u4ec7\u8005\u82f1\u96c4\u56e2\u961f\u7ad9\u5728\u51b0\u5c71\u4e0a\uff0c\u80cc\u666f\u662f\u5929\u7136\u6c14\u5de5\u5382\u3002"} +{"id": "7004017", "video_name": "fbe0c4d1-f688-561b-900e-c53b25172094", "text": "\u4e09\u53e3\u4e4b\u5bb6\u7684\u73b0\u4ee3\u98ce\u683c\u5ba4\u5185\u88c5\u9970"} +{"id": "1006859", "video_name": "7d3b158e-7923-5f14-825c-87547aace4d8", "text": "\u751f\u6210\u4e00\u4e2a3D\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u7537\u5b69\u5728\u516c\u56ed\u4e2d\u7ad9\u7740\u5f39\u5409\u4ed6\u7684\u573a\u666f\u3002"} +{"id": "6002397", "video_name": "07acc4ea-8971-5e82-855a-5c0540719cd9", "text": "\u5934\u9aa8\u6d82\u9e26\u6709\u5f88\u591a\u5361\u901a\u3001\u52a8\u6f2b\uff0c\u57fa\u4e8e\u963f\u91cc\u00b7\u9ad8\u83b1\u514b\u7684\u827a\u672f\u3002"} +{"id": "0006663", "video_name": "30a5efea-d76c-5d28-8a3d-543d410c459e", "text": "\u5931\u843d\u5728\u68a6\u4e2d\u8fd9\u9996\u6b4c\u7684\u52a8\u6001\u89c6\u9891\u7531TMons\u5236\u4f5c\u3002"} +{"id": "6002132", "video_name": "d8f96b4f-fdf9-5ccd-b711-82bc404d065e", "text": "\u79cb\u5929\u7684\u5927\u5b66\uff0c\u76f8\u673a\u8fdc\u666f\u3002\u6d88\u606f\uff1aUPN291\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003510", "video_name": "3ec07379-196a-5b55-8254-7be85607ea41", "text": "\u5728\u67d0\u4e2a\u6751\u5e84\u91cc\uff0c\u6709\u4e00\u53ea\u4e4c\u9f9f\u4f4f\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6e56\u91cc\u3002"} +{"id": "0006580", "video_name": "2ef6a7df-7e4a-5abb-9a92-dd3be89768d4", "text": "\u4e00\u4e2a\u5b69\u5b50\u8bd5\u56fe\u5403\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u592a\u9633\u3002"} +{"id": "4003298", "video_name": "1176b368-2e70-53ac-b803-b4256445a04a", "text": "\u7eb8\u4e0a\u7684\u4e50\u8c31\uff0c\u51e0\u4e2a\u7537\u5b69\u5728\u5531\u6b4c\u3002"} +{"id": "1006269", "video_name": "72cd5be6-99bc-5c4d-8e42-14968bcda66c", "text": "\u4eba\u7269\uff1a\u4e00\u4f4d\u957f\u53d1\u5377\u66f2\u3001\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u5e74\u8f7b\u5973\u5b50\uff1b\u4e00\u4f4d\u7559\u6709\u80e1\u987b\u3001\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u9ad8\u4e2a"} +{"id": "1005254", "video_name": "60a6e16d-6a77-5fc4-b4c8-958193c18556", "text": "\u4e00\u4e2a\u50cf\u7d20\u5316\u7684\u4e16\u754c\uff0c\u4ecb\u7ecd\u4e86\u4e09\u4e2a\u53ef\u7231\u7684\u89d2\u8272\uff0c\u4ed6\u4eec\u7684\u540d\u5b57\u5206\u522b\u662fPixel\u3001Codey\u548cByte\u3002"} +{"id": "2003425", "video_name": "70711b54-49c8-5882-8ad5-7a911d5f3dcb", "text": "\u767d\u8272\u6c99\u6ee9\u548c\u84dd\u8272\u6d77\u6c34\u7684\u6d77\u6ee9"} +{"id": "3005578", "video_name": "9455bffa-f748-598b-bed1-8d14fc1811b7", "text": "\u5173\u4e8e\u5148\u77e5\u5370\u7ae0\u7684\u5386\u53f2\uff0c\u6709\u5404\u79cd\u4e0d\u540c\u7684\u8bf4\u6cd5\u548c\u4e89\u8bae\u3002\u6709\u4eba\u8ba4\u4e3a\u5b83\u8d77\u6e90\u4e8e\u963f\u5df4\u65af\u738b\u671d\u65f6\u671f\u7684\u5df4"} +{"id": "7002418", "video_name": "cf017fb1-a588-52f8-a5ff-f11a142ce97b", "text": "\u9a91\u58eb\u88ab\u7bad\u5c04\u4e2d\u4e86\u3002"} +{"id": "3003520", "video_name": "c2b48b75-7fe0-5ceb-8905-4636950578e6", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u7ad9\u5728\u83e0\u841d\u7530\u91cc\uff0c\u62ff\u7740\u4e00\u4e2a\u83e0\u841d\u3002"} +{"id": "3003639", "video_name": "19290eb7-045c-5c96-9335-0d7697a4b9c8", "text": "\u4e54\u00b7\u62dc\u767b\u6b63\u5728\u627c\u6740\u81ea\u7531\u7684\u9ad8\u5ea6\u3002"} +{"id": "0004079", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "\u5154\u5b50\u5728\u626d\u66f2\u7684\u85e4\u8513\u3001\u6ed1\u6e9c\u7684\u77f3\u5934\u548c\u591a\u523a\u7684\u704c\u6728\u4e1b\u4e2d\u594b\u529b\u524d\u884c\u3002\u5c3d\u7ba1\u5b83\u975e\u5e38\u654f"} +{"id": "0003222", "video_name": "3988bb73-ec0c-5cee-aa63-bfbf5afdd1e3", "text": "\u4e00\u80a1\u795e\u79d8\u7684\u7b2c\u4e09\u52bf\u529b\u4ece\u9634\u5f71\u4e2d\u6d6e\u73b0\uff0c\u7b3c\u7f69\u5728\u795e\u79d8\u4e4b\u4e2d\u3002\u4ed6\u4eec\u5411\u5176\u4e2d\u4e00\u65b9\u63d0\u4f9b\u8054\u76df\uff0c\u5e76\u627f\u8bfa"} +{"id": "0003181", "video_name": "38d14a65-8b75-5589-ac8b-29e72eca01c6", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u72ec\u81ea\u5728\u6d77\u5cb8\u8fb9\u6f2b\u6b65\uff0c\u4fa7\u8eab\u671b\u53bb\uff0c\u5168\u8eab\u53ef\u89c1\uff0c\u8eab\u7a7f\u8863\u670d\uff0c\u5fe7\u4f24\u800c\u6c89\u9ed8\uff0c\u9633"} +{"id": "5001556", "video_name": "c5576821-3125-588e-b285-bd2990c87e47", "text": "\u4e3aBlessed Bride Studio\u521b\u5efa\u4e00\u4e2a\u6807\u5fd7\u3002"} +{"id": "3005299", "video_name": "21b9dd7c-2814-51e6-9eca-8d21b64141a7", "text": "\u6d1b\u9633\u9f99\u95e8\u77f3\u7a9f\u7684\u666f\u89c2"} +{"id": "7002026", "video_name": "861aaaf6-671e-5056-b90f-4aa79a6ed5bf", "text": "\u4e00\u4e2a\u7a7f\u7740\u4f18\u96c5\u670d\u88c5\u7684\u7537\u4eba\u7ad9\u5728\u5c71\u9876\uff0c\u53ef\u4ee5\u770b\u5230\u5fae\u98ce\u5439\u8fc7\u548c\u8fdc\u5904\u7684\u4e91\u6735\uff0c\u540c\u65f6\u6b23\u8d4f\u6d77\u666f\uff0c\u5448\u73b0\u51fa\u65e5"} +{"id": "0006127", "video_name": "2708552f-e7ae-513f-9366-4df66b28e889", "text": "\u98ce\u9669\u7ba1\u7406\u5728\u5efa\u8bbe\u7ba1\u7406\u7cfb\u7edf\u4e2d\u53d1\u6325\u7740\u81f3\u5173\u91cd\u8981\u7684\u4f5c\u7528\u3002\u5728\u5efa\u8bbe\u9879\u76ee\u4e2d\uff0c\u5b58\u5728\u5404\u79cd\u98ce\u9669\uff0c\u5305\u62ec\u6280\u672f\u3001\u8d22\u52a1\u548c"} +{"id": "2003722", "video_name": "7016572e-51c6-502b-8d0c-b1e583000bcd", "text": "\u672a\u6765\u7684\u673a\u68b0\u4eba\u80f8\u53e3\u4e0a\u5370\u6709\u4e9a\u5386\u5c71\u5927\u00b7\u6851\u5854\u7eb3\u7684\u540d\u5b57\uff0c\u5728Facebook\u4e16\u754c\u4e2d\u884c\u8d70\u3002"} +{"id": "4003822", "video_name": "92d44936-9d6e-5aa4-862c-05b87da4f6ba", "text": "\u6c49\u65af\u00b7\u9c81\u9053\u592b\u00b7\u5409\u683c\u5c14\u7684\u5916\u661f\u751f\u7269\u6218\u6597\u3002"} +{"id": "7003783", "video_name": "15c0453c-b599-5c91-9996-e5b8a5981f5a", "text": "\u4e00\u5e45\u56fe\u5f62\u63cf\u7ed8\u4e86\u4e00\u5757\u4ee3\u8868\u62b5\u6297\u7684\u5de8\u77f3\u548c\u4e00\u4e2a\u4eba\u8f7b\u8f7b\u5730\u6309\u7740\u7bad\u5934\u65b9\u5411\u6eda\u52a8\u5b83\u3002"} +{"id": "2007096", "video_name": "26c64ee7-1342-5669-80f6-c7fe9647630e", "text": "\u9a6c\u65af\u514b\u4e0e\u624e\u514b\u4f2f\u683c\u5bf9\u6218\uff0c\u4e2d\u666f\u9ad8\u6e05\uff0c\u753b\u8d28\u975e\u5e38\u7ec6\u817b\u3002"} +{"id": "8002485", "video_name": "d6ce1dee-637c-533c-9d1c-8607592e0bca", "text": "\u4e00\u540d\u5973\u6027\u4f7f\u7528\u5728\u7ebf\u5e94\u7528\u7a0b\u5e8f\u9884\u8ba2\u8f66\u8f86\u3002"} +{"id": "3004416", "video_name": "dc5d2a9b-d683-501c-8012-3b326049181d", "text": "\u4e24\u4e2a\u6ca1\u6709\u7a7f\u978b\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u5bd2\u51b7\u7684\u96ea\u5929\u8857\u9053\u4e0a\u6253\u96ea\u7403\u5e76\u7b11\u4e86\u8d77\u6765\u3002"} +{"id": "3004906", "video_name": "3df65b30-7e7b-5fab-a27d-8c09084404eb", "text": "\u9ea6\u683c\u9c81\u5fb7\u7684\u8d5b\u535a\u8054\u76df\u7f16\u5e74\u53f2ALF\u7535\u89c6\u8282\u76ee\u4ecb\u7ecd\u3002"} +{"id": "0004192", "video_name": "04cf9fd2-bf78-5402-b2ab-9596851d9d43", "text": "\u4e00\u4f4d\u8fd0\u52a8\u5458\u7a7f\u7740\u8010\u514b\u6c14\u57ab\u978b\u8dd1\u6b65\u3002"} +{"id": "2005228", "video_name": "ce68f11c-cba7-5c68-9af5-219ca724c1b9", "text": "\u52a8\u6f2b\u4e2d\uff0c\u4e00\u4f4d\u5929\u4f7f\u5973\u5b50\u6447\u66f3\u7740\u957f\u53d1\uff0c\u7741\u5f00\u95ea\u4eae\u7684\u773c\u775b\u3002"} +{"id": "2006665", "video_name": "7097cc62-d60e-51c9-a886-ef16c2a21876", "text": "\u5728\u6708\u5149\u7167\u8000\u4e0b\u7684\u62c9\u6587\u6697\u5f71\u5c0f\u9547\u4e0a\uff0c\u88ab\u53e4\u8001\u68ee\u6797\u548c\u88ab\u9057\u5fd8\u7684\u575f\u5893\u6240\u73af\u7ed5\uff0c\u4e00\u79cd\u4e0d"} +{"id": "3006559", "video_name": "abaf08d9-4d74-5919-b762-c6d053f14802", "text": "\u7528\u663e\u5fae\u955c\u521b\u9020\u51fa\u8584\u8377\u817a\u6bdb\u7684\u771f\u5b9e\u56fe\u50cf"} +{"id": "8002905", "video_name": "50842541-6966-592a-9871-b793e9d565db", "text": "\u4e3a\u4ec0\u4e48\u59dc\u9ec4\u548c\u7eb8\u4e00\u8d77\u4f7f\u7528\u6548\u679c\u66f4\u597d"} +{"id": "8002776", "video_name": "4bdfbecf-bd65-5d79-a1d0-5f05d30c9d47", "text": "\u5728\u7a7a\u95f4\u7ad9\u5185\uff0c\u5b87\u822a\u5458\u64cd\u4f5c\u4eea\u5668\uff0c\u955c\u5934\u5de6\u53f3\u79fb\u52a8\uff0c\u663e\u793a\u4e00\u8f86\u9ad8\u901f\u5217\u8f66\u7a7f\u8d8a\u6e56\u6cca\u7684\u56fe\u50cf\uff0c\u5e73\u9759\u7684\u98ce"} +{"id": "2007769", "video_name": "32ced143-85f2-5926-9ffb-b1aeb8d8110c", "text": "\u5c55\u793a\u7528\u624b\u7535\u7b52\u548c\u6c34\u8fdb\u884c\u5bb6\u5ead\u5b9e\u9a8c\u4ee5\u6f14\u793a\u5149\u7684\u6563\u5c04\u3002"} +{"id": "6004603", "video_name": "78d17106-370f-5f2b-a658-a994a10a3203", "text": "\u4e00\u95f4\u53e4\u5821\u98ce\u683c\u7684\u5367\u5ba4\uff0c\u95ea\u70c1\u7740\u84dd\u8272\u7684\u706b\u7130\u3002"} +{"id": "6002302", "video_name": "f2a3c9a0-4f53-5bd7-a2f8-2766fee4f513", "text": "\u7537\u4eba\u5403\u7740\u6ef4\u7740\u68d5\u8272\u9171\u6c41\u7684\u5927\u68d5\u8272\u9999\u80a0\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "6002596", "video_name": "9d3cbd63-a0c8-5a57-bcd3-df2943c2484a", "text": "3D Pixar \u98ce\u683c\u7684\u52a8\u753b\uff0c\u751f\u52a8\u7684\u7535\u5f71\u7167\u7247\uff0c\u4e00\u53ea\u603b\u662f\u5145\u6ee1\u73a9\u5fc3\u7684\u72d0\u72f8\u51b3\u5b9a\u52a0\u5165\u821e\u8e48\uff0c\u800c"} +{"id": "0005709", "video_name": "1fdd3384-54b1-5e23-8f35-aca2fe9d9935", "text": "\u5c06\u5730\u5e73\u7ebf\u4e0a\u7684\u5e7b\u89c9\u5c55\u793a\u6210\u4e3a\u4e00\u4e2a\u5b9e\u5b9e\u5728\u5728\u7684\u7eff\u6d32\u3002\u5728\u65c5\u9014\u63a5\u8fd1\u7ec8\u70b9\u65f6\u4f20\u8fbe\u6210\u5c31\u611f\u548c\u6ee1\u8db3\u611f\u3002"} +{"id": "4004155", "video_name": "bf826e61-933a-5926-b965-304325ea171e", "text": "Spongebob\u6234\u7740\u8010\u514b\u88c5\u5728\u7ebd\u7ea6\u8bf4\u5531\uff0c\u5b8c\u7f8e\u6355\u6349\uff0c\u6ca1\u6709\u8138\u90e8\u53d8\u5f62\u3001\u626d\u66f2\u6216\u6a21\u7cca\u3002\n\nSource sentence: The E"} +{"id": "7004268", "video_name": "efcf0f9e-fc78-5e1e-916d-7790a8fdc7a7", "text": "\u5728\u660e\u4eae\u7684\u9633\u5149\u4e0b\uff0c\u53e4\u8001\u7684\u68ee\u6797\u4e2d\u6709\u4e00\u6761\u6f7a\u6f7a\u7684\u5c0f\u6eaa\uff0c\u4e00\u7fa4\u9c7c\u513f\u5728\u6c34\u4e2d\u4f18\u96c5\u5730\u6e38\u52a8"} +{"id": "5001908", "video_name": "2e6b6127-a91d-574d-b2f1-31e4bd413188", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5c0f\u5996\u7cbe\u7ad9\u5728\u5df4\u9ece\u65f6\u5c1a\u7684T\u53f0\u4e0a\uff0c\u5341\u5206\u65f6\u9ae6\u3001\u6574\u6d01\u3001\u5f15\u4eba\u6ce8\u76ee\u3002"} +{"id": "0006025", "video_name": "25343700-b088-507f-b7fc-f0736f2592d4", "text": "\u4e00\u53f0\u667a\u80fd\u673a\u5668\u4eba\u5728\u516c\u56ed\u91cc\u884c\u8d70\u3002"} +{"id": "2007609", "video_name": "dba674ea-abb7-565c-b0c4-10d2c7046378", "text": "\u519c\u592b\u5728\u7528\u661f\u9645\u4f20\u9001\u95e8\u6316\u6398\u4f20\u9001\u95e8\u786c\u5e01\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5916\u661f\u4eba\u4f20\u9001\u95e8\u3002\u4f7f\u7528\u4f20\u9001\u95e8\u786c\u5e01\u6807\u5fd7\u3002"} +{"id": "5001881", "video_name": "281a5381-78c0-55cd-898a-7a0e85782f79", "text": "\u516c\u4e3b\u5e15\u5947\u5728\u7d22\u5c3c\u514b\u6e38\u620f\u4e2d\u8dd1\u7eff\u5c71\u533a\u7684\u50cf\u7d20\u5316\u89c6\u9891\u3002"} +{"id": "7003716", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "\u4e00\u4e2a\u4fc4\u7f57\u65af\u58eb\u5175\u7ad9\u5728\u6218\u573a\u4e0a\uff08\u58eb\u5175\u7ad9\u5728\u4e2d\u95f4\uff09\uff0c\u624b\u91cc\u63e1\u7740\u4e00\u4f4d\u53d7\u4f24\u7684\u6218\u53cb\u3002"} +{"id": "4004386", "video_name": "a2aaff99-612a-52f2-b071-daf93d565c34", "text": "\u68ee\u6797\u4e2d\u6709\u4e00\u4e2a\u5973\u5b69\uff0c\u5979\u7684\u8138\u4e0a\u957f\u7740\u5916\u661f\u4eba\u7684\u9762\u5b54\uff0c\u88ab\u9ad8\u5927\u7684\u6811\u6728\u548c\u82b1\u6735\u5305\u56f4\u7740\u3002"} +{"id": "1005985", "video_name": "6e001429-a8b0-5eb1-90d5-379cfda297a0", "text": "\u4e24\u4e2a\u670b\u53cb\u6b63\u5728\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "7002660", "video_name": "0b485a7f-07f6-531a-8779-8777ded3e0ed", "text": "\u4e00\u53ea\u732b\u5728\u9732\u53f0\u4e0a\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "2003537", "video_name": "9fa399bb-1efd-5412-b1a2-1a6668f67daa", "text": "\u9e7f\u80cc\u7740\u7cd6\u888b\uff0c\u5728\u519c\u820d\u7684\u53a8\u623f\u91cc\uff0c\u9732\u51fa\u7259\u9f7f\uff0c\u7cd6\u5757\u5448\u6697\u6de1\u7684\u989c\u8272\u3002"} +{"id": "2007300", "video_name": "6a3c2431-9ba5-51d1-8ffa-01f474bac02f", "text": "\u97f3\u901f\u5728\u5954\u8dd1\u5e76\u6293\u4f4f\u4e86\u51e0\u4e2a\u786c\u5e01\u3002"} +{"id": "0005470", "video_name": "1b56a283-3c61-5aee-98e1-10d4e2d98536", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u4e1b\u6797\u4e2d\u95f4\u4e0a\u706b\u8f66\u3002"} +{"id": "7004322", "video_name": "1e9b339c-581e-5184-b50b-efb101560293", "text": "\u4e00\u4e2a\u5f55\u50cf\u5e26\u6444\u50cf\u673a\u4e0a\u7684\u5e7d\u7075\u955c\u5934"} +{"id": "0003522", "video_name": "3ef0ac35-09ff-5a5e-a35f-af72cb3407b3", "text": "\u4e00\u5343\u53ea\u9e64\u98de\u5411\u5bcc\u58eb\u5c71\uff0c\u5929\u7a7a\u4e2d\u5145\u6ee1\u4e86\u5b83\u4eec\u4f18\u96c5\u7684\u4e0a\u5347\uff0c\u4ee4\u4eba\u60ca\u53f9\u7684\u58ee\u89c2\uff0c\u5982\u540c\u7535"} +{"id": "1005623", "video_name": "6761dd04-6423-536e-93bc-7272d9a0afc1", "text": "\u5723\u7ea6\u7ff0\u4ea4\u54cd\u5973\u58f0\u56e2\u4e03\u4f4d\u6210\u5458\u5728\u8def\u4e0a\uff0c\u4ee5\u6709\u673a\u542f\u53d1\u7684\u8eab\u4f53\u827a\u672f\u98ce\u683c\u8868\u6f14\uff0c\u91c7\u7528\u6d45\u94f6\u8272\u548c"} +{"id": "3004636", "video_name": "d2527821-034e-5759-a2da-1d2760233449", "text": "\u8e22\u8db3\u7403\u7684\u4eba\u53ea\u8e22\u51fa\u77ed\u8ddd\u79bb\u7684\u7403\u3002"} +{"id": "1006687", "video_name": "7a9c3015-a9da-510e-aee3-a04568c6bb02", "text": "\u9884\u8ba2\u6211\u7684\u79c0\u7535\u5f71\u7968"} +{"id": "6002863", "video_name": "68e5e84f-1a28-5c99-8bdf-748eb91e989d", "text": "\u7537\u4eba\u548c\u5973\u4eba\u57288K\u7684\u52a8\u6f2b\u827a\u672f\u4e2d\u6781\u5176\u8be6\u7ec6\u5730\u62e5\u62b1\u3002"} +{"id": "2003315", "video_name": "87787bb6-3748-5138-bfa8-4e8d69f298a7", "text": "\u5728\u80cc\u666f\u4e2d\u51fa\u73b0\u65e5\u51fa\u6216\u65e5\u843d\uff0c\u8425\u9020\u51fa\u5b81\u9759\u7684\u6c1b\u56f4\u3002"} +{"id": "5001273", "video_name": "7bbde7a2-7bab-57f1-8f8b-6e782fceb41a", "text": "\u52a8\u753b\u5c55\u793a\u4e00\u4e2a\u7f8e\u4e3d\u7684\u9ed1\u4eba\u5973\u6027\uff0c\u6234\u7740\u8033\u73af\u548c\u73e0\u5b9d\uff0c\u5979\u5728\u5411\u65e5\u8475\u7530\u4e2d\u5954\u8dd1\uff0c\u592a\u9633\u5728\u5979\u8eab"} +{"id": "0003367", "video_name": "3c58d12c-b3f2-5674-abf8-72aafb3d7d92", "text": "\u4e00\u540d\u7a7f\u7740\u7a7a\u5fc3\u6ce2\u897f\u7c73\u4e9a\u98ce\u683c\u77ed\u88d9\u7684\u4e2d\u56fd\u5973\u5b69\u5728\u73a9\u6050\u9f99\u3002"} +{"id": "1004333", "video_name": "500842ca-4f74-531d-80e8-c3f2fa4391d9", "text": "\u4e00\u7247\u68ee\u6797\u5145\u6ee1\u4e86\u8272\u5f69\u6591\u6593\u7684\u6c34\u548c\u7a7a\u95f4\u3002"} +{"id": "8002126", "video_name": "70d7381e-57a2-5904-b38d-a4733e102480", "text": "\u767d\u8272\u96c4\u9e7f\u51fa\u6ca1\u4e8e\u6866\u6728\u6797\u4e2d\uff0c\u5a01\u4e25\u5353\u7136\uff0c\u903c\u771f\u7a0b\u5ea6\u8fbe\u5230\u4e86\u7167\u7247\u7ea7\u522b\uff0c\u4f7f\u7528\u4e86\u865a\u5e7b\u5f15"} +{"id": "7002150", "video_name": "704843e4-81ff-5716-9cb3-aea78d34b39f", "text": "\u4e00\u7fa4\u4eba\u548c\u5e73\u89e3\u51b3\u51b2\u7a81\u7684\u5f62\u8c61"} +{"id": "3003594", "video_name": "e310edfe-daa1-59a2-8010-f0a6a04a3fe2", "text": "\u4e0a\u5e1d\u7684\u5929\u4f7f\u4ece\u5929\u964d\uff0c\u8eab\u540e\u662f\u4e00\u7247\u7530\u91ce\u4e2d\u7684\u4e00\u68f5\u6811\u3002"} +{"id": "2007086", "video_name": "6f4baa8e-aca2-5ede-98e3-047e2f18b7d2", "text": "\u7f8e\u56fd\u7279\u79cd\u90e8\u961f\u58eb\u5175\u89c6\u89d2\u4e0b\u7684\u8d85\u771f\u5b9e\u6218\u4e89\u89c6\u9891\u3002"} +{"id": "0006822", "video_name": "33ac019d-6ce1-5945-a8ca-554c66f8eb7d", "text": "\u88ab\u5b9a\u7f6a\u8005\u7684\u8d22\u4ea7\u4e0d\u5f97\u88ab\u6ca1\u6536\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "3004891", "video_name": "1166f42a-bf70-57be-8752-642d9e2b2c55", "text": "translation: \u96c5\u5404\u7684\u7956\u5148\u7761\u5728\u901a\u5f80\u5929\u5802\u7684\u68af\u5b50\u5e95\u90e8\uff0c\u903c\u771f\u3002"} +{"id": "0006206", "video_name": "2867b7d3-20ac-50f4-8331-5a21837c85eb", "text": "\u7535\u5f71\u5f0f\u7684\uff0c\u5728\u4e00\u4e2a\u65f6\u95f4\u88ab\u63a7\u5236\u7684\u4e16\u754c\u91cc\u3002"} +{"id": "0004132", "video_name": "03d0f830-865b-5939-894c-6a0a4934bc9b", "text": "\u4ece\u524d\uff0c\u5728\u8ff7\u4eba\u7684\u5e03\u5362\u59c6\u65af\u4f2f\u91cc\u738b\u56fd\u91cc\uff0c\u4f4f\u7740\u4e00\u4f4d\u540d\u53eb\u5f17\u96f7\u5fb7\u91cc\u514b\u7684\u4ec1\u6148\u6e29\u548c\u56fd"} +{"id": "0006540", "video_name": "2e67c0e4-1814-5e81-bdd3-01b8921040b9", "text": "\u7a7f\u8d8a\u4e00\u4e2a\u9ed1\u767d\u5206\u79bb\u7684\u6d1e\u7a74\uff0c\u5e26\u6709\u8ff7\u5e7b\u7684\u51e0\u4f55\u56fe\u5f62\u3002"} +{"id": "2007664", "video_name": "93366efe-177d-55e8-90c0-49f5f4616dd4", "text": "\u50f5\u5c38\u4ee5\u897f\u65b9\u6f2b\u753b\u98ce\u683c\u6f2b\u6b65\u5728\u7530\u91ce\u4e0a\u3002"} +{"id": "6003814", "video_name": "d8c60db4-ddc3-5247-9f96-891fde9776b9", "text": "\u9ed1\u767d\u6f2b\u753b\u8f6e\u5ed3\u3002\u6234\u7740\u798f\u5c14\u6469\u65af\u5e3d\u5b50\u7684\u767d\u8272\u6897\u72ac\u4fa6\u63a2\u5728\u6b7b\u4ea1\u7684\u5c38\u4f53\u65c1"} +{"id": "8003553", "video_name": "00c55cec-d208-5965-af7d-2db2f6d569e5", "text": "\u5728\u4e00\u8258\u72ec\u81ea\u6f02\u6d6e\u5728\u6df1\u7a7a\u4e2d\u7684\u5b87\u5b99\u98de\u8239\u4e0a\uff0c\u4e00\u540d\u5b87\u822a\u5458\u53d1\u73b0\u4e86\u524d\u4e00\u7ec4\u8239\u5458\u6240\u5236\u4f5c\u7684\u5f55\u97f3"} +{"id": "1005215", "video_name": "600a766a-ec79-5805-9623-71b4e247de69", "text": "\u68ee\u6797\u91cc\u7684\u718a\u732b\u6b63\u5728\u6500\u722c\u6811\u6728\u3002"} +{"id": "0004071", "video_name": "02c75513-ab6f-5c26-831e-26619c978cb2", "text": "\u83ab\u65af\u79d1\uff0c\u6218\u4e89\u4e2d\u7684\u71c3\u70e7\u514b\u91cc\u59c6\u6797\u5bab\uff0c\u76f4\u5347\u673a\u62cd\u6444\u7684\u5f71\u7247\uff0c\u5177\u6709\u7535\u5f71\u6548\u679c\u3002"} +{"id": "2007970", "video_name": "22fd475f-5147-5a0f-84c9-24b5fe224f6d", "text": "\u5236\u4f5c\u52a8\u753b\u89c6\u9891\uff0c\u63cf\u8ff0\u7537\u5b69\u548c\u4ed6\u4eec\u7684\u670b\u53cb\u73a9\u800d\u7684\u8fc7\u7a0b\u3002"} +{"id": "2005052", "video_name": "6997a5e7-df51-5e3c-9dd5-ddadd52ed6e9", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u7684\u7075\u9b42\u5728\u4e00\u6761\u591a\u5f69\u7684\u94f6\u6cb3\u96a7\u9053\u4e2d\u5411\u524d\u98de\u7fd4\u3002"} +{"id": "2007404", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "\u732b\u5916\u661f\u4eba\u8868\u6f14\u60ca\u4eba\u7684\u628a\u620f\uff0c\u5c55\u793a\u7740\u5b83\u4eec\u7684\u667a\u6167\u3002"} +{"id": "3006546", "video_name": "02cd67d9-f89f-5699-8d6c-99e1cc214fe9", "text": "\u4e00\u540d\u5b64\u72ec\u7684\u5251\u5ba2\u5728\u6708\u5149\u4e0b\u821e\u5251\u3002"} +{"id": "2003082", "video_name": "788b9ab8-9631-5389-a50b-176d3bc6d6d2", "text": "\u5b9d\u9a6c\u5728\u6492\u9a6c\u5c14\u7f55\u6f02\u79fb\uff0c\u9047\u89c1\u4e86\u5954\u9a70\u3002"} +{"id": "7002285", "video_name": "9155dcc0-44df-5fb7-820b-894b31ddd10b", "text": "\u7b49\u8ddd\u53ef\u7231\u76843D\u623f\u95f4\uff0c\u7530\u56ed\u5c0f\u5c4b\u4e3b\u9898\u3002"} +{"id": "6004864", "video_name": "c7f2b99b-387d-5535-9de9-0d8777041bab", "text": "\u624b\u6458\u82b1\u7684arthaus\u89c6\u9891"} +{"id": "4002743", "video_name": "24e6cc5e-5046-5af7-a3c5-1c6624a0a9f3", "text": "\u51ac\u5929\u591a\u4f26\u591a\u5e02\u4e2d\u5fc3\u6709\u4eba\u6ed1\u51b0\u3002"} +{"id": "3003524", "video_name": "66c2f255-ba3e-55d9-ba8f-154bc88a2d70", "text": "\u53e4\u4ee3\u4eba\u4ef0\u671b\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u9e70\u3002"} +{"id": "6004585", "video_name": "d80ead40-5fd5-5725-b460-6d667e04458a", "text": "\u4e00\u4e2a\u8f6f\u4ef6\u5de5\u7a0b\u5e08\u7684\u5de5\u4f5c\u73af\u5883\u4e2d\u6709\u5f88\u591a\u7535\u7ebf\u3002"} +{"id": "4003879", "video_name": "2185f142-4ff7-5cbf-a562-bc26c9e2f828", "text": "\u6c7d\u8f66\u514b\u83b1\u65af\u52d2Sebring 3\uff08JS\uff09\u7a7f\u8d8a\u6c99\u6f20\u884c\u9a76\u3002"} +{"id": "1004486", "video_name": "5322a854-19c8-5c8b-9a1e-59e0e03aed4f", "text": "\u8fce\u63a5\u65b0\u7684\u4e00\u5e74\uff0c\u5145\u6ee1\u5e0c\u671b\u548c\u51b3\u5fc3\u3002"} +{"id": "2003796", "video_name": "0dc5d881-6568-5525-bcd9-3216ee598bf6", "text": "\u4e2d\u5916\u91ce\u624b\u8df3\u8fc7\u56f4\u680f\u63a5\u4f4f\u7403\uff0c\u7535\u5f71\u822c\u7684\u6162\u52a8\u4f5c\uff0c\u7403\u8863\u53f7\u780127\u3002"} +{"id": "3003492", "video_name": "19a1daf1-28e1-5f34-bc5f-c169877ff4d3", "text": "\u4e00\u53ea\u732b\u6253\u7ffb\u4e86\u4e00\u74f6\u82b1\u3002"} +{"id": "4002637", "video_name": "33161e00-7bff-5a4e-9fcb-df03294d8bcb", "text": "\u5de8\u9f99\u6d77\u602a\u7684\u5f71\u50cf\u8bb0\u5f55\u4e8e1820\u5e74\u4ee3\uff0c\u7531Alejandro Jodorowsky\u827a\u672f\u5236\u4f5c\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "1003777", "video_name": "45a6dae8-a31f-5525-a88f-bd0d45e19e1e", "text": "\u7ea2\u8272\u7684\u8d85\u7ea7\u8dd1\u8f66\u5728\u795e\u5723\u7684\u5723\u5730\u6f02\u79fb\u3002"} +{"id": "7003463", "video_name": "e017d9ee-a89a-5442-a8f8-d2d23f5edcbe", "text": "\u65c1\u8fb9\u7684\u4e00\u5757\u77f3\u5934\u4e0b\u9762\u662f\u4e00\u53e3\u4e95\uff0c\u4e95\u4e0b\u6709\u4e00\u6247\u901a\u5f80\u4e00\u4e2a\u85cf\u6709\u9ec4\u91d1\u5b9d\u85cf\u7684\u623f\u95f4\u7684\u95e8\u3002"} +{"id": "8001009", "video_name": "669df374-36b4-5457-9bc8-49545b4ae399", "text": "\u871c\u8702\u3001\u8001\u864e\u3001\u4e4c\u9f9f\u3001\u5927\u8c61\u3001\u72d7\u3001\u9a91\u81ea\u884c\u8f66\u7684\u871c\u8702\uff0c\u4e00\u8d77\u8df3\u821e\u3001\u770b\u4e66\uff0c\u5361\u901a"} +{"id": "1004686", "video_name": "570c41b5-4701-53ba-8c0b-e36a4512383b", "text": "\u9a6c\u5179\u00b7\u7c73\u51ef\u5c14\u68ee\u5728\u5de5\u4e1a\u65f6\u4ee3\u7684\u53a8\u623f\u91cc\u54c1\u5c1d\u98df\u7269\uff0c\u7a7f\u7740\u5de5\u4e1a\u65f6\u4ee3\u5973\u4ec6\u670d\u7684\u6027\u611f\u6bd4\u57fa\u5c3c\u6a21\u7279"} +{"id": "6003821", "video_name": "fd983527-d35a-5f36-9c53-dc75d91cb9a8", "text": "\u63a2\u9669\u5bb6\u5728\u540e\u9762\u8d70\u7740\uff0c\u4e1b\u6797\u822c\u7684\u4e1c\u4eac\u3002"} +{"id": "4004550", "video_name": "d85db302-d8d8-5556-a18e-7dc5cec87c38", "text": "\u4e00\u5f20\u7279\u5199\u7684\u8138\u90e8\u955c\u5934\uff0c\u4ee4\u4eba\u7740\u8ff7\u7684\u8138\u5e9e\u548c\u8ff7\u4eba\u7684\u7eff\u8272\u773c\u775b\uff0c\u4e00\u4f4d\u7a7f\u7740\u76ae\u7532\u548c"} +{"id": "8003738", "video_name": "aa8a6493-b266-54e4-b268-b93ab56b7312", "text": "\u6d77\u6ee9\u6674\u6717\u7684\u5929\u6c14\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u6735\u3002\u4fe1\u606f\uff1a\u65b0\u5916\u89c2\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004151", "video_name": "ff710a03-c455-583c-ae7f-553aa913a07c", "text": "\u4eba\u624b\u6301\u6bd4\u7279\u5e01\u7684\u6807\u5fd7\uff0c\u989c\u8272\u5b8c\u6574\u7684\u91d1\u8272\u8c03\u8272\u677f\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u3002"} +{"id": "0003400", "video_name": "3cfe3ed6-7330-500c-ae7f-2e49547ca2d7", "text": "\u8363\u8000\u4e4b\u795e\u6e7f\u5a46\u5728\u80cc\u666f\u4e2d\u5486\u54ee\u7740\u96f7\u58f0\u3002"} +{"id": "2004511", "video_name": "c660b7bb-4757-5bd9-86e8-6bbabedba951", "text": "\u8d1d\u5229\u548c\u9a6c\u62c9\u591a\u7eb3\u79bb\u5f00\u4e86\u4e16\u754c\u3002"} +{"id": "1005883", "video_name": "6c3d52cd-b2f0-5ceb-85ce-136edfca62a6", "text": "\u65e5\u4ea7Almera\u5728\u57ce\u5e02\u91cc\u5230\u5904\u8dd1\u3002"} +{"id": "7002106", "video_name": "15c6c832-2a66-5bb3-bcee-ca33242de2e4", "text": "\u4ece1960\u5e74\u4ee3\u7684\u706f\u5854\u9876\u90e8\u53d1\u5c04\u7684\u70ae\u5f39\u3002"} +{"id": "1005437", "video_name": "63e81af3-0862-5faa-ab92-14069ef39f4b", "text": "\u5973\u4eba\u5728\u8bd5\u7a7f\u6bd4\u57fa\u5c3c\u7684\u8bd5\u8863\u95f4\u91cc\uff0c\u771f\u5b9e\u7684\u63d2\u753b\uff0c\u957f\u5ea6\u4e3a30\u79d2\u3002"} +{"id": "3004434", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "\u8d85\u7ea7\u82f1\u96c4\u6d77\u738b\u7a7f\u7740\u6f5c\u6c34\u955c\u548c\u6cf3\u88e4 4K\u3002"} +{"id": "1005638", "video_name": "67a693cf-16bb-5ae4-94e8-6da4ca85eb31", "text": "\u4e00\u591c\uff0c\u4e00\u7fa4\u5c11\u5e74\u88ab\u597d\u5947\u548c\u52c7\u6c14\u9a71\u4f7f\uff0c\u51b2\u5165\u4e86\u5e9f\u5f03\u623f\u5c4b\u7684\u8352\u51c9\u7a7a\u95f4\u3002\u9ed1\u6697\u3001\u6050"} +{"id": "7003461", "video_name": "ac981260-7bae-5f69-8d24-2829fac119f0", "text": "\u4e00\u4f4d\u533b\u751f\u68c0\u67e5\u6574\u4e2a\u961f\u5217\u540e\u611f\u5230\u7cbe\u75b2\u529b\u7aed\u3002"} +{"id": "3004140", "video_name": "98698b08-0612-57ff-9cc7-bedc97029a5c", "text": "\u52a8\u6f2b\u98ce\u683c\u5409\u535c\u529b\uff0c\u5c0f\u5c0f\u7684\u706b\u82b1\u5728\u6708\u5149\u4e0b\u4ece\u5929\u7a7a\u6d12\u843d\u5728\u57c3\u53ca\u57ce\u5e02\u4e0a\u3002"} +{"id": "3004782", "video_name": "30c54732-43f4-5a22-b0dd-9b781452f398", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u53d8\u6210\u4e86\u4e00\u4e2a\u53ef\u7231\u7684\u5361\u901a\u5f62\u8c61\uff0c\u652f\u63014K\u3002"} +{"id": "3003705", "video_name": "cf9191f3-11d2-53a1-a310-7e7c6cfc9757", "text": "\u4f20\u9001\u5e26\u4e0a\u79fb\u52a8\u7684\u7bb1\u5b50\u7ec4 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4004038", "video_name": "557c8e50-9b8a-5ca7-b489-a75db1969886", "text": "\u4e16\u754c\u672b\u65e5\u7684\u89c6\u9891"} +{"id": "4002657", "video_name": "d0e319b4-a3ff-5f22-acbc-556222f165ee", "text": "\u62cd\u6444\u4e8e12\u4e16\u7eaa\u62dc\u5360\u5ead\u5e1d\u56fd\u7e41\u5fd9\u5e02\u96c6\u7684\u8857\u666f\uff0c\u4ee5\u771f\u4eba\u5b9e\u666f\u7535\u5f71\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4003965", "video_name": "41e1c96d-b2be-5427-b9ef-8d08876dd68d", "text": "\u8fd9\u4e2a\u89d2\u8272\u53ef\u80fd\u4f1a\u7a7f\u7740\u8272\u5f69\u9c9c\u8273\u3001\u65f6\u5c1a\u7684\u8863\u670d\uff0c\u5934\u53d1\u4e5f\u4f1a\u67d3\u4e0a\u660e\u4eae\u7684\u8272\u5f69\u3002\u4ed6\u4eec\u53ef\u80fd\u4f1a\u62ff\u7740"} +{"id": "0006658", "video_name": "308aa3bc-454c-5546-b53e-a7c1495c1482", "text": "\u54e5\u65af\u62c9\u653b\u51fb\u4e86\u4e00\u5bb6\u6ce2\u666e\u65af\u9e21\u9910\u5385\u3002"} +{"id": "2003021", "video_name": "7b4ac53f-0f9a-598b-abb6-9526c4d6d065", "text": "\u4e00\u4e2a\u7537\u4eba\u611f\u89c9\u4e0d\u8212\u670d\uff0c\u5f88\u51b7\u3002"} +{"id": "4004086", "video_name": "90d3b1a4-62bb-5a65-ae3b-60929ddb82ca", "text": "\u5973\u5b69\u5728\u79cb\u5929\u7684\u9053\u8def\u4e0a\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "2005432", "video_name": "7c9b53b6-f5de-5769-ab36-0d202beca2d9", "text": "\u5723\u8bde\u8001\u4eba\u51c6\u5907\u4ed6\u7684\u9a6f\u9e7f\uff0c\u7ed9\u5b83\u4eec\u4e0a\u978d\uff0c\u9020\u578b\u65f6\u5c16\u9510\u3001\u903c\u771f\u3002"} +{"id": "6004304", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "\u7f57\u7eb3\u5c14\u591a\u548c\u963f\u65af\u5170\u4e00\u8d77\u8e22\u7403\uff0c\u903c\u771f\u7684\u8d85\u7ea7\u56fe\u5f62\u3002"} +{"id": "4003905", "video_name": "41d2c7e3-5fb3-5d28-9666-710d3d7040f7", "text": "\u623f\u5b50\u91cc\u7684\u706f\u4eae\u4e86\u53c8\u706d\u4e86\u3002"} +{"id": "6002751", "video_name": "07f57eb8-6f56-5d53-a429-ae8b3687cc19", "text": "\u767d\u8272\u80cc\u666f\u4e0b\uff0c\u767d\u624b\u63a8\u7740\u4e00\u4e2a\u5c0f\u767d\u9065\u63a7\u5668\u3002"} +{"id": "8001388", "video_name": "59a2b4e8-7bb1-5bfa-9580-fdd11a367600", "text": "\u673a\u68b0\u9e1f\u98de\u7fd4\u4e8e\u7d2b\u8272\u4e91\u6735\u4e4b\u95f4\u3002\n\nSource sentence: The sun sets behind the mountains, painting the sky with hues of orange and pink. \n\n\u592a\u9633\u843d\u5728"} +{"id": "7004696", "video_name": "ca991c11-7836-5110-a04d-17b74181ab9e", "text": "3D\u9b3c\u9b42\u60ac\u6d6e\u5728\u4e00\u6761\u6cb3\u4e0a\uff0c\u5927\u773c\u775b\u7a7a\u6d1e\uff0c\u4f4e\u7167\u660e\uff0c\u508d\u665a\u65f6\u5206\uff0c\u6d88\u6563\u3002"} +{"id": "7003323", "video_name": "62ecad1e-d54c-5c89-9fc5-9b3abf741d53", "text": "\u5143\u5b87\u5b99\u573a\u666f\u3001\u68a6\u5e7b\u573a\u666f\u3001\u89d2\u8272\u8fdb\u5165\u5143\u5b87\u5b99\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "4003327", "video_name": "10036f38-01ae-51ab-88bb-7de5c5a4aadb", "text": "\u4e00\u4f4d\u5973\u58eb\u4ece\u6c34\u6c60\u4e2d\u8d70\u51fa\u6765\uff0c\u590f\u5929\uff0c4K"} +{"id": "0003967", "video_name": "00de55f1-2204-502e-b2fa-4eb592ef1433", "text": "\u5973\u4eba\u5728\u4e00\u4e2a\u7a7a\u8352\u829c\u7684\u300a\u94f6\u7ffc\u6740\u624b\u300b\u573a\u666f\u4e2d\u9003\u79bbDJ\u3002"} +{"id": "1003746", "video_name": "451b4ca9-45e1-5146-9998-af1cfd5c6119", "text": "\u4e00\u540d\u5973\u5b50\u7a7f\u8fc7\u9a6c\u8def\uff0c\u4e00\u4f4d\u8fd0\u52a8\u6469\u6258\u8f66\u624b\u4e0d\u5f97\u4e0d\u5239\u8f66\u5e76\u6454\u5012\u5728\u79d1\u5c14\u9a6c\u7f8e\u4e3d\u9633\u5149\u6865\u7684\u8fb9\u7f18"} +{"id": "2003708", "video_name": "d7b8e9e7-6c51-5cde-87bf-491fa6dee532", "text": "\u7535\u5f71\u5f0f\uff0c\u957f\u955c\u5934\u5e73\u79fb\u81f3\u8fd1\u666f\uff0c\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u548c\u58a8\u955c\u7684\u7537\u5b50\uff0c\u5728\u5ba1\u8baf\u5ba4\u4e2d\uff0c\u62ff\u7740\u624b\u673a\u3002"} +{"id": "0003788", "video_name": "436c0091-8ad2-564a-a57e-5c86ff523967", "text": "\u4e00\u4e2a\u7403\uff0c\u767d\u8272\u8f6e\u5ed3\u80cc\u666f\uff0c\u706f\u5149\u6548\u679c\uff0c\u53d1\u5149\uff0c\u91d1\u5c5e\u611f\u3002"} +{"id": "7004699", "video_name": "d3756bcc-e0e0-58f2-99fc-084a60e73a5d", "text": "\u4e00\u79cd\u8d5a\u94b1\u548c\u6210\u529f\u7684\u65b9\u6cd5\u3002"} +{"id": "0004928", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "\u9ed1\u53d1\u7279\u5170\u514b\u65af\u53d8\u8eab\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u52a8\u753b\u3002"} +{"id": "7004818", "video_name": "ccaec1b6-361e-5717-bb97-d2dd80c3e379", "text": "\u4e00\u4e2a\u7537\u4eba\u5411\u7761\u7f8e\u4eba\uff08\u91d1\u53d1\u5973\u90ce\uff09\u6c42\u5a5a\u3002"} +{"id": "7003553", "video_name": "df44abff-e9b0-5688-9a64-79e4d0170abd", "text": "\u4e00\u5f20\u7b14\u8bb0\u672c\u7535\u8111\u7684\u56fe\u7247\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u8f66\u91cc\u5199\u4f5c\uff0c\u5149\u7ebf\u660f\u6697\u3002"} +{"id": "2004394", "video_name": "9d9fea82-e605-5c35-87c5-7245bd2805ea", "text": "\u661f\u9645\u8ff7\u822a\u4f01\u4e1a\u53f7\u653b\u51fb\u514b\u82cf\u9c81\u3002"} +{"id": "6002308", "video_name": "173813aa-cddb-5d61-8e0f-17c44b1ff37a", "text": "\u5929\u874e\u5ea7\u4ece\u5730\u4e0b\u5192\u51fa\uff0c\u5728\u6c99\u6f20\u7684\u6c99\u4e18\u4e4b\u95f4\u3002"} +{"id": "1003666", "video_name": "437d2d46-5edf-5059-b6db-552484b37f9f", "text": "\u9999\u6e2f\u7684\u73b0\u4ee3\u5efa\u7b51\u4e0b\u592a\u9633\u6b63\u5728\u843d\u5c71\u3002"} +{"id": "2005376", "video_name": "509d6827-7d5d-518c-acc3-2a43b1200265", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u7740\u897f\u88c5\uff0c\u80cc\u5bf9\u7740\u5c4f\u5e55\u4e2d\u5fc3\u8d70\u6765\uff0c\u4ed6\u4ece\u53e3\u888b\u91cc\u62ff\u51fa\u4e00\u53e0\u949e\u7968\uff0c\u4fa7\u8eab\u671d\u5c4f\u5e55"} +{"id": "4003300", "video_name": "c64a1e53-3999-5c6c-bed4-2366d2edffd8", "text": "RIFILIFEE\u63d0\u51fa\u4e86\u5229\u7528\u6539\u53d8\u6280\u672f\u6765\u89e3\u51b3\u57fa\u672c\u5065\u5eb7\u95ee\u9898\u7684\u60f3\u6cd5\uff0c\u4ee5\u6539\u5584\u751f\u6d3b\u3002\u6211\u4eec\u662f\u4e00\u4e2a\u4ee5\u533b\u7597\u4e3a\u9a71"} +{"id": "3003880", "video_name": "ee8ae6c6-5b2d-524f-9259-5a1730fa9bf7", "text": "\u8ff7\u5bab\u7684\u5899\u58c1\u7a81\u7136\u79fb\u52a8\u4e86\uff0c\u6321\u4f4f\u4e86\u5979\u521a\u521a\u8d70\u8fc7\u7684\u8def\u3002"} +{"id": "6004138", "video_name": "5315998f-db08-521b-a570-88943e3044fb", "text": "\u7c89\u8272\u7684\u4e5d\u5341\u5e74\u4ee3\u78c1\u5e26\u5728\u4e00\u5757\u95ea\u4eae\u7684\u767d\u8272\u8868\u9762\u4e0a\u81ea\u52a8\u64ad\u653e\u3002"} +{"id": "6003374", "video_name": "d4e95ed4-949a-560b-b748-f7a51c50f28b", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5bcc\u58eb\u5c71\u524d\u5403\u7740\u51b0\u6dc7\u6dcb\u3002"} +{"id": "2007393", "video_name": "01a43ceb-fb59-58b2-8d1a-724a12189208", "text": "\u79d1\u5e7b\u661f\u7403\u88ab\u5c0f\u578b\u592a\u7a7a\u8239\u5305\u56f4\uff0c\u7ec6\u8282\u7cbe\u81f4\uff0c\u661f\u7403\u56e0\u7535\u98ce\u66b4\u800c\u95ea\u95ea\u53d1\u5149\uff0c\u67d0\u4e9b\u90e8\u5206\u6709"} +{"id": "2004474", "video_name": "f3885858-1dc9-5e21-832c-c111ece192c8", "text": "\u6587\u5316\u6c89\u6d78\u5728\u65e5\u672c\uff0c\u72ec\u81ea\u65c5\u884c\u7684\u5973\u6027\u53c2\u52a0\u8336\u9053\u3001\u8d4f\u6a31\u548c\u57ce\u5e02\u6e38\u89c8\u3002\u6ce8\u91cd\u6587\u5316\u5c0a\u91cd\u3001\u5b66\u4e60\u548c"} +{"id": "3006452", "video_name": "efc1b70e-5268-5079-b9a4-998bf25a2e70", "text": "\u56db\u5904\u5f20\u671b\n\u6211\u6709\u5f88\u591a\u50a8\u5b58\u548c\u71c3\u70e7\u7684\u6728\u5934\uff0c\u4ed6\u4eec\u73a9\u5f97\u5f88\u5f00\u5fc3\n\u4ed6\u6b63\u5728\u5403\u70b8\u9c7c\u3002"} +{"id": "1005218", "video_name": "6016e6da-0b9c-5969-b711-4bf3549e73df", "text": "\u6995\u6811\u4ece\u4eba\u7c7b\u601d\u7ef4\u5411\u91cf\u751f\u957f\u3002"} +{"id": "2005915", "video_name": "a55e5ab3-6ee0-529d-a13e-70ffb2355a24", "text": "\u8309\u8389\u660e\u5f00\u7740\u602a\u7269\u5361\u8f66\u3002"} +{"id": "2005511", "video_name": "09b2f393-2675-55d5-988d-ddbf6f81b08f", "text": "\u6d82\u62b9\u62a4\u80a4\u4e73\u7684\u89c6\u9891"} +{"id": "7003341", "video_name": "b00ac945-54e6-5a9e-923a-5507d48db6fd", "text": "\u80cc\u666f\u662f\u84dd\u8272\u7ebf\u6761\u9897\u7c92\uff0c\u5728\u5176\u524d\u65b9\u6f02\u6d6e\u7740chatgpt3.5\u3002"} +{"id": "4002198", "video_name": "e94d7f0f-99b9-5a26-9850-f71f12296008", "text": "\u6302\u5728\u5899\u4e0a\u770b\u5230\u7684\u3002\u6307\u9488\u5f00\u59cb\u79fb\u52a8\uff0c\u50cf\u52a8\u753b\u4e00\u6837\u3002"} +{"id": "1003297", "video_name": "3ca41697-8dbd-5d39-bf87-d09ee4b0d4e9", "text": "\u4e00\u4e2a\u7537\u6027\u4f4f\u5ba2\u4e58\u7740\u5c0f\u8222\u677f\u62b5\u8fbe\u4e86\u4e00\u4e2a\u95f9\u9b3c\u7684\u5c0f\u5c9b\u3002"} +{"id": "8002864", "video_name": "bc12c7be-51c9-54db-bc34-b611e450a634", "text": "\u4e00\u4f4d\u5c0f\u97f3\u4e50\u5bb6\u7231\u4e0a\u4e86\u4e00\u4f4d\u7f8e\u4e3d\u7684\u9791\u977c\u5973\u5b50\uff0c\u5e76\u7b49\u5f85\u5979\u4ece\u6751\u5e84\u5230\u6765\u3002"} +{"id": "2005192", "video_name": "f23532d9-3b8e-5264-85c9-476725e9f7b2", "text": "\u91d1\u96d5\u6b63\u5728\u58a8\u897f\u54e5\u57ce\u7684\u6469\u5929\u5927\u697c\u95f4\u98de\u7fd4\u3002"} +{"id": "2005533", "video_name": "5904c7c0-fd78-5400-a919-9f7085836afb", "text": "\u5c0f\u732b\u5728\u6c34\u4e0b\u548c\u91d1\u9c7c\u73a9\u800d\u3002"} +{"id": "0005069", "video_name": "144183d1-f35c-5dd4-9d44-cc4fda85a31d", "text": "\u5149\u8292\u8ff7\u5bab\u5728\u4ed6\u4eec\u8eab\u540e\u9ad8\u8038\uff0c\u795e\u79d8\u7684\u6df1\u5904\u9690\u85cf\u7740\u4ed6\u4eec\u514b\u670d\u7684\u6311\u6218\u3002"} +{"id": "3004000", "video_name": "9e90f721-96d7-5536-99f0-fa8069470bc6", "text": "\u661f\u7a7a\u4e2d\u70b9\u7f00\u7740\u6302\u6ee1\u83b2\u82b1\u7684\u706f\u7b3c\u3002"} +{"id": "1004874", "video_name": "5a151ccf-ac1e-5e16-a437-7a8238a465de", "text": "\u4e00\u53ea\u5c0f\u6c34\u602a\u5728\u6d77\u6ee9\u4e0a\uff0c\u7535\u5f71\uff0c\u5947\u5e7b\uff0c\u9ad8\u8d28\u91cf\uff0c\u9ad8\u7ec6\u8282\uff0c4K\uff0c\u7535\u5f71\u3002"} +{"id": "6003071", "video_name": "ee35f6a7-4ae8-5335-aec9-f00e2fdb9e34", "text": "\u5185\u9a6c\u5c14\u5728\u8db3\u7403\u6bd4\u8d5b\u4e2d\u53d7\u4f24\u3002"} +{"id": "2006860", "video_name": "71ad1efd-9afd-5ada-9d80-d810e985fd0f", "text": "\u84dd\u8272\u7684\u5e03\u52a0\u8fea\u6cbf\u7740\u8d5b\u9053\u884c\u9a76\u3002"} +{"id": "1004787", "video_name": "58722cf6-ef98-5b3f-b14f-c411e2017d44", "text": "\u4e0a\u6d77\u4e1c\u65b9\u660e\u73e0\u7535\u89c6\u5854\u7684\u8857\u666f\uff0c\u5357\u4eac\u8def\u5e02\u4e2d\u5fc3\uff0c\u57ce\u5e02\u5ba3\u4f20\u89c6\u9891\uff0c8K\u3002"} +{"id": "6002877", "video_name": "d72f5b5c-a542-5e2c-918c-06bdce25b559", "text": "\u52a8\u6f2b\u9ed1\u732b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u591c\u665a\uff0c\u661f\u7a7a\u4e4b\u4e0b\u3002"} +{"id": "3003543", "video_name": "df97d159-d6d9-5abd-93a6-e7fd38dbf7da", "text": "\u76ae\u5361\u4e18\u7684\u591c\u4f0a\u5e03\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "4004120", "video_name": "c8f9e0ee-98b4-5b85-9e03-7283abc1150d", "text": "\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u957f\u7b52\u889c\u3001\u7a7f\u7740\u84dd\u8272\u5934\u53d1\u7684\u821e\u8e48\u52a8\u6f2b\u5973\u5b69\uff0c\u539f\u795e\u89d2\u8272\uff0c\u6770\u4f5c\uff0c\u767d\u8272"} +{"id": "2004668", "video_name": "2d818e4e-e6fe-594f-a3dd-09b389d9716c", "text": "\u706b\u8f66\u7a97\u5916\u7ecf\u8fc7\u7740\u7f8e\u4e3d\u7684\u4e4c\u514b\u5170\u98ce\u666f\u3002\u9ece\u660e\u65f6\u5206\uff0c\u5c71\u4e0a\u6302\u7740\u4e00\u9762\u4e4c\u514b\u5170\u56fd\u65d7\u3002"} +{"id": "8002474", "video_name": "01fd8609-c581-50ca-817d-98dacaf389d7", "text": "21\u5c81\u7537\u5b69\u5728\u5f55\u97f3\u5ba4\u5f39\u5409\u4ed6\u3002"} +{"id": "5001039", "video_name": "09a20fe1-e965-50ad-a041-be2792e8d9c4", "text": "\u66b4\u98ce\u96e8\u7684\u65e5\u5b50\uff0c\u98ce\u628a\u8863\u670d\u5439\u8d70\u4e86\u3002"} +{"id": "3004227", "video_name": "595a572a-f793-5c78-9cd7-7f1aec89f64e", "text": "\u6355\u6349\u9a6c\u8482\u5c14\u8fbe\u548c\u5979\u7684\u5c0f\u9e21\u5728\u519c\u573a\u4e00\u8d77\u73a9\u800d\u7684\u6e29\u99a8\u573a\u666f\u3002\u5c55\u793a\u827e\u5a03\u3001\u672c\u5c3c\u3001\u67e5"} +{"id": "5001214", "video_name": "790fbb9d-17b7-5ed8-ad40-d3fa8c3a3c42", "text": "\u4e00\u4e2a\u5361\u901a\u6c14\u606f\u7684\u56fe\u50cf\uff0c\u5c55\u793a\u4e00\u4e2a\u5973\u5b69\u8df3\u8fdb\u6e56\u91cc\u3002"} +{"id": "8001737", "video_name": "d0dc5cff-81e5-5b8a-8602-4e548c5ee556", "text": "\u795e\u5947\u7684\u5192\u9669 \u6570\u7801\u63d2\u56fe \u72ec\u5177\u7279\u8272\u7684\u89d2\u8272\uff0c\u795e\u5947\u7684\u4efb\u52a1 \u5192\u9669\u8272\u5f69\uff0c\u72ec\u7279\u7684\u5f62\u5f0f \u5728\u6570\u5b57\u9886"} +{"id": "4004637", "video_name": "7ebe7da5-12c4-5990-beb7-4fb54e7f2907", "text": "\u6df7\u4e71\u548c\u9a9a\u4e71\uff0c\u7edd\u5bf9\u7684\u65e0\u5e8f\u548c\u6050\u614c\u3002"} +{"id": "1005923", "video_name": "6cce3f5e-b354-5a28-be30-f0c40e3cd39a", "text": "\u6709\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u3002\u7537\u5b69\u8eba\u5728\u5730\u4e0a\uff0c\u5973\u5b69\u8f6c\u8fc7\u8eab\u53bb\u3002"} +{"id": "7003087", "video_name": "48d0396f-3ef8-570a-8319-326e5149b7f0", "text": "\u7537\u4eba\u548c\u670b\u53cb\u5728\u9152\u5427\u5916\u559d\u5564\u9152\u3002"} +{"id": "2004930", "video_name": "41267c7d-6529-540a-bc62-417396ec4826", "text": "\u8ffd\u9010\u8005\u7684\u7535\u5f71\u5f0f\u4ecb\u7ecd\uff1a\u5f53\u5973\u4eba\u8d70\u52a8\u65f6\uff0c\u6444\u50cf\u673a\u89d2\u5ea6\u6539\u53d8\uff0c\u63ed\u793a\u51fa\u8fdc\u5904\u9ed1\u8863\u4eba\u7684\u591a\u4e2a\u6a21\u7cca\u8eab\u5f71"} +{"id": "2004242", "video_name": "e9905c74-2ad7-5471-a187-b73f539a3ff3", "text": "\u7535\u8111\u4ecb\u7ecd\u89c6\u9891\u7684\u7f16\u8f91\uff0c\u4e3a\u6f14\u793a\u505a\u51c6\u5907\u3002"} +{"id": "2005280", "video_name": "1af46a5d-924f-5923-9d71-8da8460f1982", "text": "\u4e00\u500bShopee\u7db2\u9801\u4e0a\uff0c\u4e00\u652f\u67d4\u8edf\u7684\u5c3a\u5b50\u88ab\u63a8\u85a6\u70ba\u4e0d\u6613\u6298\u65b7\u3001\u9632\u788e\u88c2\uff0c\u53ef\u4ee5\u647a"} +{"id": "7003713", "video_name": "66ddc3c0-bec9-54fe-a2a3-8f118453e0f2", "text": "\u5916\u661f\u4eba\u62e5\u6709\u975e\u51e1\u7684\u529b\u91cf\u3002\u4ece\u5b83\u8eab\u4e0a\u6563\u53d1\u51fa\u9ed1\u8272\u7684\u96fe\u6c14\uff0c\u968f\u7740\u6765\u81ea\u5f02\u4e16\u754c\u7684\u80fd\u91cf\u65cb\u8f6c\u548c\u626d"} +{"id": "2003257", "video_name": "9a5cccc2-dcd8-5574-a55d-af7a93c4fc35", "text": "\u4e00\u4e2a\u6df7\u4e71\u3001\u975e\u5e38\u6742\u4e71\u7684\u529e\u516c\u5ba4\uff0c\u591a\u4e2a\u5de5\u4f5c\u684c\uff0c\u4e00\u5806\u6ca1\u6709\u7ec4\u7ec7\u7684\u6587\u4ef6\uff0c\u5730\u4e0a\u5230\u5904\u90fd\u662f\u7eb8\u5f20\uff0c3D\u52a8\u753b"} +{"id": "2006114", "video_name": "65dd82c9-2b50-56db-85e2-f9644196ccbe", "text": "\u8718\u86db\u670948\u4e2a\u819d\u76d6\uff0c\u5b83\u603b\u5171\u67098\u6761\u817f\u3002"} +{"id": "6002990", "video_name": "aade0038-ce4f-5a53-b111-9c62d0a0b0fa", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u65cb\u8f6c\uff0c\u867d\u7136\u9ed1\u6697\u65e0\u5149\uff0c\u4f46\u662f\u5730\u7403\u5468\u56f4\u6709\u4e00\u5708\u5149\u6655\u3002"} +{"id": "2004432", "video_name": "2051fe1a-da8d-5475-8d03-44727ab0643b", "text": "she saw herself as a successful businesswoman, running her own company and making a difference in the world.\n\n\u90a3\u4e2a\u665a\u4e0a\uff0c\u4e00\u4e2a\u540d\u53ebMia\u7684\u5e74\u8f7b\u5973\u5b69\u505a\u4e86\u4e00\u4e2a\u68a6\uff0c\u8fd9"} +{"id": "0005425", "video_name": "1a9d473e-7815-536f-bd6a-f8434b37b48f", "text": "\u8ba9\u52a8\u753b\u8868\u8fbe\u4ed6\u51b3\u5fc3\u5f97\u5230\u8461\u8404\u548c\u72d0\u72f8\u3002"} +{"id": "5001547", "video_name": "682da112-5b90-5dab-a0d6-31dac41070f9", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u6b63\u5728\u559d\u7740\u4e00\u676f\u5496\u5561\uff0c\u84dd\u5929\u6674\u6717\u3002"} +{"id": "4003181", "video_name": "d4dd36f4-f4fd-50fa-a5a4-b832e6dfe115", "text": "\u6c99\u6f20\u4e2d\u884c\u8d70\u7684\u7537\u4eba\u548c\u9a86\u9a7c\u7684\u961f\u4f0d\u65e0\u4eba\u673a\u62cd\u64444K\u753b\u9762\u3002"} +{"id": "4002796", "video_name": "1d35f321-3f1e-50ed-95d2-39713c7a499b", "text": "\u4e00\u53ea\u767d\u8272\u76ae\u80a4\u6f02\u4eae\u7684\u730e\u8c79\u8fdb\u5165\u65b0\u7684\u4e1b\u6797\uff0c\u6240\u6709\u52a8\u7269\u90fd\u5728\u89c2\u671b\u7740\u5b83\u3002"} +{"id": "3006792", "video_name": "48e12e95-bc41-5f1f-803f-5bf626266456", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u82ad\u6bd4\u5728\u6708\u7403\u4e0a\u8df3\u821e\u3002"} +{"id": "2005003", "video_name": "6d4e5fb3-7380-58f9-a247-b43063006f2d", "text": "\u56de\u987e\u4ece2023\u5e74\u5230500\u5e74\u4ee3\u8868\u4e16\u7eaa\u7684\u6570\u5b57\u56fe\u50cf\u4e2d\u7684\u6f29\u6da1\u3002"} +{"id": "8001529", "video_name": "3e5cbce1-59c5-5b5f-8521-6b7c8b1fbfef", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u5c0f\u623f\u5b50\u91cc\u548c\u5979\u6700\u559c\u6b22\u7684\u6cf0\u8fea\u718a\u5728\u4e00\u8d77\u3002"} +{"id": "2003331", "video_name": "4758f482-4a06-5ce1-be8c-116bdcaa9e68", "text": "\u5361\u592b\u5361\u6b63\u5728\u957f\u957f\u7684\u6050\u6016\u8d70\u5eca\u4e2d\u8d70\u7740\uff0c\u4ee5\u9ecf\u571f\u52a8\u753b\u7684\u98ce\u683c\uff0c\u540c\u65f6\u5728\u7b11\u3002"} +{"id": "7004553", "video_name": "1bc3804a-ce75-568c-936a-e9c8384bb7c7", "text": "\u6258\u5409\u7985\u4eba\u548c\u591a\u4f5b\u6717\u660e\u54e5\u5408\u4f53\u5bf9\u6218\u4e00\u4e2a\u62e5\u6709\u5143\u7d20\u80fd\u529b\u7684\u4eba\u3002"} +{"id": "6004346", "video_name": "3fbdd01b-1525-506f-b60d-01237bc5fd02", "text": "\u5c0f\u533b\u9662\u623f\u95f4\u91cc\u7684\u5e74\u8f7b\u5973\u5b50"} +{"id": "6003261", "video_name": "1863c087-d3e1-55d8-b1ac-34dbd85b214f", "text": "\u4e00\u4e2a\u5206\u5f62\u8568\u5728\u7f13\u6162\u7684\u87ba\u65cb\u4e2d\u6ce2\u52a8\u548c\u5c55\u5f00\u3002"} +{"id": "2004306", "video_name": "1046acc5-0013-51ea-8205-693a7ae5aa65", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7ea2\u718a\u732b\u5728\u706b\u8f66\u4e0a\u7a7f\u7740\u9ec4\u8272\u548c\u7c89\u8272\u6b3e\u5f0f\u7684\u670d\u88c5\uff0c\u8fdb\u884c\u57ce\u5e02\u5e72\u9884\uff0c\u5168\u8eab\u5e7f\u89d2\u3002"} +{"id": "8003364", "video_name": "0a2d2d3e-e7a3-5e28-bc19-82a8b13398c9", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u51a5\u60f3\u7684\u59ff\u52bf\u4e2d\uff0c\u95ed\u7740\u773c\u775b\uff0c\u53cc\u624b\u653e\u5728\u819d\u76d6\u4e0a\u3002"} +{"id": "2003404", "video_name": "dfd6d860-06aa-5fc6-9cbb-c8d6dba2f022", "text": "\u90a3\u53ea\u732b\u6b63\u5750\u5728\u672a\u6765\u7684\u7535\u89c6\u673a\u4e0a\uff0c\u4f46\u6709\u4e9b\u4e1c\u897f\u5413\u5230\u4e86\u5b83\uff0c\u7535\u89c6\u673a\u4e0a\u51fa\u73b0\u4e86\u539f\u5b50\u7206\u70b8\u3002"} +{"id": "1005618", "video_name": "6749e883-bd06-502d-bb20-fc7c7af653a9", "text": "\u4e00\u8f86\u6c7d\u8f66\u505c\u5728\u9ed1\u6697\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u4e24\u4e2a\u7537\u4eba\u5750\u5728\u524d\u5ea7\u4e0a\uff0c\u4e0b\u8f66\u3002"} +{"id": "7003942", "video_name": "a93d7dad-8207-5421-a585-66d51d6c8cee", "text": "\u4e00\u4e2a\u7a7f\u774070\u5e74\u4ee3\u670d\u88c5\u3001\u9a7e\u9a761968\u5e74\u6b3e\u798f\u7279\u91ce\u9a6c\u7684\u7537\u4eba\uff0c\u8eab\u5904\u73af\u5883\u4f18\u7f8e\u7684\u6797\u5730\uff0c\u8fce\u63a5\u620f\u5267\u6027"} +{"id": "7003362", "video_name": "9601b81b-4d8f-5f66-9763-683cd92f0989", "text": "\u82b1\u56ed\uff0c\u6b27\u6d32\u5973\u5b69\uff0c\u91d1\u53d1\uff0c\u5750\u5728\u6cb3\u8fb9\uff0c\u9633\u5149\uff0c\u6cb3\u6d41\uff0c\u9752\u86d9\uff0c\u5c0f\u6865\uff0c\u98ce\u8f66\uff0c\u7f8e\u4e3d\u7684"} +{"id": "3003202", "video_name": "77cbaa48-ddcd-597e-9799-c1f2c3ea46f9", "text": "\u4e00\u4e2a\u5199\u6709FX Genius\u5b57\u6837\u7684\u6807\u5fd7\u3002"} +{"id": "7004844", "video_name": "9fa87be5-0683-5ce4-88d4-d4b1c25281b0", "text": "\u5c06\u5496\u5561\u5012\u5165\u676f\u5b50\u4e2d\u7684\u52a8\u4f5c\u6a21\u7cca\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3005790", "video_name": "9f33c71a-38e6-5001-8bb7-a2636c489fbb", "text": "\u73a9\u5bb6\u5728\u5954\u8dd1\uff0c\u80cc\u666f\u5411\u53f3\u79fb\u52a8\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0006667", "video_name": "30b681dd-429b-5674-a691-feffc1d877cd", "text": "CODM\u6807\u5fd7\u5e26\u6709\u67aa\u652f\u548c\u63a2\u7d22\u5143\u7d20\u3002"} +{"id": "0005683", "video_name": "1f34226e-8cd3-568d-aadb-aca32cf990f7", "text": "\u6709\u5f69\u8272\u70df\u96fe\u6f02\u6d6e\u5728\u6a59\u8272\u3001\u7c89\u7ea2\u8272\u3001\u9ed1\u8272\u548c\u767d\u8272\u4e4b\u95f4\u7684\u573a\u666f\u3002"} +{"id": "0005012", "video_name": "1337512c-ed6c-5956-8939-2e2eb7e5cf19", "text": "\u4e00\u79cd\u7f8e\u4e3d\u7684\u795e\u5723\u51e0\u4f55\u56fe\u5f62\u6f02\u6d6e\u5728\u7a7a\u95f4\u4e2d\u3002"} +{"id": "8003459", "video_name": "1662d823-bc11-5b50-afa5-2f3988a7bd0e", "text": "\u5728\u5e8a\u4e0a\u8eba\u7740\uff0c\u6162\u6162\u547c\u5438\uff0c\u4e00\u534a\u662f\u60ac\u6302\u7684\u4eba\u3002"} +{"id": "5001574", "video_name": "ef30d253-d113-5889-a1c0-e196f6d43c74", "text": "\u5c06Veer\u7b2c\u4e00\u6b21\u610f\u8bc6\u5230\u81ea\u5df1\u8d85\u81ea\u7136\u80fd\u529b\u7684\u90a3\u4e00\u523b\u53ef\u89c6\u5316\u3002\u4f7f\u7528\u89c6\u89c9\u6548\u679c\u4f20\u8fbe\u4ed6\u7684\u529b\u91cf\u7a81\u7136\u663e\u73b0\u548c\u4ed6\u7684"} +{"id": "5001053", "video_name": "1927c2d9-cedb-5844-97be-40d8c3c105f2", "text": "\u4e00\u4e2a\u6234\u7740\u5e3d\u5b50\u3001\u80cc\u7740\u80cc\u5305\u7a7f\u7740\u5939\u514b\u7684\u7537\u5b50\u5728\u8352\u5730\u4e0a\u884c\u8d70\u3002\u5e9f\u589f\u968f\u5904\u53ef\u89c1\uff0c\u7bdd\u706b"} +{"id": "6002102", "video_name": "fba2a747-a50c-58d2-b2b6-0750b96a0e47", "text": "\u4e00\u4e2a\u6234\u7740\u91d1\u8272\u5438\u8840\u9b3c\u7259\u9f7f\u7684\u6cf0\u56fd\u7537\u5b50\u5728\u665a\u4e0a\u7684\u66fc\u8c37\u8857\u5934\u6f2b\u6b65\uff0c\u7535\u5f71\u822c\u7684\u5e7f\u89d2\u955c"} +{"id": "2007440", "video_name": "0ed0d3a5-4f5b-5d4a-8b23-6f469dd0f059", "text": "\u6307\u73af\u738b\u3002\u963f\u62c9\u8d21\u3001\u83b1\u683c\u62c9\u65af\u548c\u5409\u59c6\u5229\u5728\u7530\u91ce\u4e0a\u5954\u8dd1\u3002"} +{"id": "3005388", "video_name": "8b0dd546-9dd2-5321-b350-2c4c4094ef9a", "text": "\u5de6\u53f3\u79fb\u52a8\u6444\u50cf\u5934\u3002\u6e29\u99a8\u903c\u771f\u7684\u5c0f\u6728\u5c4b\uff0c\u914d\u6709\u5192\u7740\u52a8\u6001\u70df\u96fe\u7684\u70df\u56f1\uff0c\u5468\u56f4\u73af\u7ed5\u7740"} +{"id": "7004359", "video_name": "ef401e18-6723-500d-81b2-7dec01461ccd", "text": "\u7edd\u5730\u6b66\u58eb\u548c\u897f\u65af\u5728\u6d77\u6d0b\u4e0a\u6218\u6597\u3002"} +{"id": "3003075", "video_name": "dab4e3f4-c93d-5da5-9780-1f6352b48c0b", "text": "\u68ee\u6797\u4e0d\u8f7b\u6613\u900f\u9732\u5b83\u7684\u79d8\u5bc6\u3002\u6bcf\u8d70\u4e00\u6b65\uff0c\u60ac\u5ff5\u52a0\u5267\uff0c\u6c14\u6c1b\u53d8\u5f97\u7d27\u5f20\u3002\u5947\u602a\u7684\u58f0\u97f3"} +{"id": "3004236", "video_name": "ec9f4a70-f5a9-5792-82ed-543b3a3cc6df", "text": "Source sentence translation: \u6234\u9ad8\u4e50\u673a\u573a\uff0c\u5916\u9762\uff0c\u6709\u4e58\u5ba2\u3001\u51fa\u79df\u8f66\u3001\u4f18\u6b65\u3002"} +{"id": "8001160", "video_name": "f137150e-291e-58d4-8e13-f90e4c100f36", "text": "\u8fd9\u4e2a\u63d2\u56fe\u5c55\u793a\u4e86\u4e00\u4e2a\u9a6c\u8d5b\u514b\u62fc\u56fe\uff0c\u8c61\u5f81\u7740\u67e5\u8be2\u7684\u8bed\u4e49\u6838\u5fc3\u3002\u6bcf\u4e2a\u62fc\u56fe\u5757\u4ee3\u8868\u4e00\u4e2a\u72ec\u7acb\u7684\u5173\u952e\u67e5\u8be2\u6216"} +{"id": "3004664", "video_name": "9a7ea615-6a60-594b-a20f-beb5400e2b41", "text": "\u4e49\u5927\u5229\u6559\u80b2\u90e8\u5728\u8fc7\u53bb\u4e8c\u5341\u5e74\u91cc"} +{"id": "2004275", "video_name": "e572ac27-97b2-5c9e-9f52-8162535a3ca0", "text": "\u5c0f\u5973\u5b69\u8df3\u821e\uff0c\u8eab\u4f53\u5de6\u53f3\u6447\u6643\uff0c\u5934\u53d1\u98d8\u52a8\u3002"} +{"id": "4002081", "video_name": "4f81047c-1b63-57d5-b584-1012667833a5", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u5730\u65b9\uff0c\u53ea\u6709\u4e00\u4e2a\u8d70\u5eca\uff0c\u8d70\u5eca\u7684\u5c3d\u5934\u662f\u4e00\u6247\u7ea2\u8272\u7684\u95e8\u3002\u5f53\u95e8\u6253\u5f00\u65f6\uff0c\u51fa\u73b0\u4e86\u660e\u4eae\u7684\u5149\u3002"} +{"id": "4003645", "video_name": "5387de65-fa43-5463-85f3-0dd3a14126bb", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\uff0c\u67093\u4e2a\u7ea2\u8272\u7684\u8d28\u5b50\u548c3\u4e2a\u84dd\u8272\u7684\u4e2d\u5b50\u5728\u56fe\u7247\u4e2d\u592e\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u80fd\u91cf\u5c06\u5b83\u4eec\u8fde\u63a5\u5728\u4e00\u8d77"} +{"id": "1006357", "video_name": "746c31c0-1201-520f-8aef-2fcb0e563515", "text": "\u7a97\u53f0\u4e0a\u7684\u7ea2\u73ab\u7470\u4e1b\u88ab\u51bb\u7ed3\u5e76\u8986\u76d6\u4e86\u971c\u3002"} +{"id": "3006719", "video_name": "55e6b391-0b4a-5f78-9425-266e7decd044", "text": "\u63a2\u7d22\u7a7f\u7740\u590d\u53e4\u79d1\u5e7b\u592a\u7a7a\u670d\u5728\u706b\u661f\u884c\u8d70\u3002"} +{"id": "1006634", "video_name": "79997d9e-e92a-57ac-95b7-523d4076fbd3", "text": "\u4ece\u540e\u9762\u770b\uff0c\u6211\u4eec\u770b\u5230\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u72ec\u81ea\u5750\u5728\u4e00\u95f4\u660e\u4eae\u7684\u623f\u95f4\u91cc\u7684\u684c\u5b50\u524d\u3002"} +{"id": "5001717", "video_name": "edf4a59f-5cb0-58bb-8ee5-b015e786032c", "text": "40\u82f1\u5c3a\u8fdc\u5904\u6709\u4e00\u6240\u623f\u5b50\uff0c\u4e24\u4e2a\u7a7f\u7740\u7eff\u8272\u88d9\u5b50\u7684\u6027\u611f\u82d7\u6761\u7f8e\u5973\u5feb\u901f\u8d70\u7740\u3002"} +{"id": "7002360", "video_name": "3af072d7-7201-5446-9682-63592e41bce3", "text": "\u5728\u6211\u7684\u9ed1\u6697\u4e2d\uff0c\u6211\u770b\u5230\u4e86\u6210\u5343\u4e0a\u4e07\u7684\u773c\u775b\u3002"} +{"id": "0003439", "video_name": "3d88fd97-066e-507a-9263-439740a254eb", "text": "\u73ab\u7470\u5206\u89e3\u8fc7\u7a0b\u52a0\u901f\u4e86\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7003141", "video_name": "04785ffd-3b4f-5ecd-a2d3-a4016138fe97", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u548c\u5979\u7684\u5b69\u5b50\u4e92\u76f8\u4fdd\u62a4\u3002"} +{"id": "3006672", "video_name": "6065247c-f868-5213-8e0a-5a3612d9638d", "text": "3D\u52a8\u753b\uff0c\u8d85\u9ad8\u6e05\uff0c\u8d85\u903c\u771f\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u5728\u6708\u5149\u4e0b\u7684\u57ce\u5e02\u4e2d\u6709\u4e09\u4e2a\u5b69\u5b50\u5728\u4ea4\u8c08\u3002"} +{"id": "3005713", "video_name": "4f0f589c-ac4c-5bdb-b923-9a7aa79791b0", "text": "\u5218\u4ea6\u83f2\u5728\u821e\u53f0\u4e2d\u592e\u8df3\u821e\u3002"} +{"id": "0006630", "video_name": "2fe814f8-9313-5e0f-ba47-9a8f73aea506", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u8349\u5730\u4e0a\u5171\u540c\u8d70\u5411\u8fdc\u65b9\uff0c\u8eab\u5904\u9633\u5149\u548c\u5f69\u8679\u4e4b\u4e0b\u3002"} +{"id": "1004477", "video_name": "52f6f6d2-5828-5466-9eee-2cb8b0632c5a", "text": "\u4e00\u53ea\u9cb8\u9c7c\u5f20\u5f00\u5634\u5df4\uff0c\u4e00\u4e2a\u4eba\u8df3\u8fdb\u5b83\u7684\u53e3\u4e2d\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u84dd\u9cb8\u541e\u4e0b\u4e86\u4e00\u4e2a\u4eba\uff0c\u753b\u9762\u4e2d\u6709"} +{"id": "8002993", "video_name": "8373309e-f1b3-5e5c-a377-377ddff07e02", "text": "\u4e3b\u8981\u89d2\u8272\u5305\u62ec\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684\u79d1\u5b66\u5bb6\u3001\u4e00\u4f4d\u751f\u7269\u5b66\u5bb6\u3001\u4e00\u4f4d\u65b0\u6280\u672f\u5de5\u7a0b\u5e08\u548c\u4e00\u4f4d\u672a\u6765\u9886\u8896\u3002\u4ed6"} +{"id": "2005893", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "\u4e00\u4e2a\u56fe\u50cf\u663e\u793a\u4e00\u4e2a\u7c7b\u4f3c\u8c37\u6b4c\u6807\u5fd7\u7684\u6807\u5fd7\u3002"} +{"id": "5001883", "video_name": "a71a4478-1ef4-51c9-8818-e92ab91f46e7", "text": "\u80cc\u9760\u7eff\u8272\u80cc\u666f\u7ad9\u7acb \u9644\u4ef61"} +{"id": "4002623", "video_name": "6397d2ed-0d45-5b26-bcc5-f34e3af59395", "text": "\u4ed6\u7684\u529b\u91cf\u548c\u80fd\u91cf\u6b63\u5728\u5168\u529b\u4ee5\u8d74\uff0c\n\u4ed6\u7684\u4e3e\u6b62\u548c\u8a00\u8bed\u4e2d\u5145\u6ee1\u7740\u9b54\u529b\u3002\n\u8c22\u5c14\u76d6\uff0c\u5f3a\u58ee\u800c\u5145\u6ee1\u6d3b"} +{"id": "4002697", "video_name": "3682a420-9384-52c8-b9c8-7dd4a88074c7", "text": "\u5973\u4eba\u624b\u6301\u624b\u673a\uff0c\u753b\u8d28\u4e3a4K\uff0c\u903c\u771f\u3002"} +{"id": "0003854", "video_name": "44a89cfa-4d03-5218-9426-0872d64b380d", "text": "\u672a\u6765\u51b0\u6cb3\u65f6\u4ee3\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u96ea\u5730\u4e2d\u884c\u8d70\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "1006327", "video_name": "73ca93d5-82a9-5629-9fa8-b3a189278235", "text": "\u975e\u5e38\u5947\u602a\u548c\u6bdb\u9aa8\u609a\u7136\u7684\u673a\u5668\u4e0a\u6709\u950b\u5229\u7684\u5200\u7247"} +{"id": "2004350", "video_name": "a3cbe76b-a9a2-57cc-821a-e3cde40210f6", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5fcd\u8005\u5728\u6811\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "6003561", "video_name": "b8600d60-230d-59fd-b84d-e1f85100d625", "text": "\u4e00\u4e2a\u6c14\u5598\u5401\u5401\u7684\u5e74\u8f7b\u610f\u5927\u5229\u7537\u5b50\u57281930\u5e74\u7a7f\u8fc7\u7199\u7199\u6518\u6518\u7684\u7f57\u9a6c\u8857\u5934\u3002 \u4fe1\u606f\uff1a\u55e8"} +{"id": "7004866", "video_name": "878f1846-098c-5310-bb31-9d98fac864af", "text": "Mooer Money\uff0cSEO\u8425\u9500\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002937", "video_name": "196a8e7e-cbe9-5483-ac03-0c925d8fab49", "text": "\u57ce\u5e02\u519c\u573a\u4f4d\u4e8e\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u4eba\u4eec\u53ef\u4ee5\u722c\u4e0a\u5c4b\u9876\u8d2d\u4e70\u5fc5\u8981\u7684\u4ea7\u54c1\u3002"} +{"id": "0003164", "video_name": "38759c75-35f5-53b7-8849-175725c05a99", "text": "\u7a7f\u7740\u5b9e\u9a8c\u5ba4\u767d\u5927\u8902\u7684\u79d1\u5b66\u5bb6\u6253\u9ad8\u5c14\u592b\u7403\u975e\u5e38\u7cdf\u7cd5\u3002"} +{"id": "2006600", "video_name": "8dac4c43-1cc2-5db6-b770-de4dd448c7d7", "text": "\u4e00\u4e2a\u63cf\u7ed8\u7740\u5de8\u5927\u795e\u5947\u68ee\u6797\u7684\u753b\uff0c\u68ee\u6797\u91cc\u6709\u957f\u957f\u7684\u7f8e\u4e3d\u6811\u6728\u548c\u82b1\u6735\u3002\u4fe1\u606f\uff1a\u5e73\u560e\uff08\u5b57"} +{"id": "0005801", "video_name": "2174b4eb-d125-58b7-a230-1e4bec89c112", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u591a\u5143\u5b87\u5b99\u4e2d\u4e0e\u4e00\u6761\u9f99\u6218\u6597\uff0c\u7537\u5b69\u624b\u6301\u4e00\u628a\u706b\u7130\u5251\uff0c\u5728\u80cc\u666f\u4e2d\uff0c\u591a\u5143\u5b87\u5b99\u88ab"} +{"id": "5001074", "video_name": "d1e60dc2-0ff8-5628-b4dc-227e7304381b", "text": "\u5230\u4e862030\u5e74\u4ee3\u672b\uff0c\u4eba\u7c7b\u4e0e\u4eba\u5de5\u667a\u80fd\u4e4b\u95f4\u7684\u5173\u7cfb\u53d8\u5f97\u9ad8\u5ea6\u590d\u6742\u3002\u8bb8\u591a\u4eba\u4f9d\u8d56\u4ed6\u4eec\u7684AI\u4f34\u4fa3\u548c\u5bfc\u5e08"} +{"id": "5001128", "video_name": "38443c18-18a0-5e20-8abb-10a00df0228d", "text": "\u4e00\u4e2a\u4eba\u6495\u5f00\u793c\u7269\u3002"} +{"id": "3005421", "video_name": "5448d955-f6f8-554f-a79b-23abea9c4bc0", "text": "\u8774\u8776\u88ab\u6355\u5728\u8718\u86db\u7f51\u4e2d\u7684\u52a8\u4f5c\uff0c\u4f0a\u83ab\u91d1\u00b7\u574e\u5b81\u5b89\uff0c\u753b\u610f\u4e3b\u4e49\uff0c\u9ed1\u767d\uff0c\u9ad8\u54c1\u8d288"} +{"id": "1004165", "video_name": "4d182714-b97a-526a-a362-adbe34a07c3f", "text": "\u4ece\u4e0a\u65b9\u4fef\u77b0\u6797\u95f4\u666f\u8c61\uff0c\u5915\u9633\u897f\u4e0b\u300216:9\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u3002"} +{"id": "1003341", "video_name": "3d88c024-4f10-586c-9448-779524288efe", "text": "\u9ed1\u8272\u80cc\u666f\u4e0b\uff0c\u8c79\u5b50\u5448\u9713\u8679\u8272\uff0c\u989c\u8272\u4e0d\u65ad\u53d8\u6362\u3002"} +{"id": "6002046", "video_name": "cf9b541f-f333-5802-88ed-d8f3f5b2f75c", "text": "\u5c55\u73b0\u6e29\u99a8\u7684\u6c1b\u56f4\uff0c\u519c\u6c11\u5f17\u96f7\u5fb7\u5728\u95ea\u70c1\u7684\u661f\u7a7a\u4e0b\u805a\u96c6\u52a8\u7269\uff0c\u4e3a\u4ed6\u4eec\u8bb2\u8ff0\u7279\u522b\u7684\u7761\u524d\u6545\u4e8b"} +{"id": "2005741", "video_name": "c8239c84-a38a-5088-9b13-d1bbadb79e11", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u624e\u54c8\u00b7\u54c8\u8fea\u5fb7\u98ce\u683c\u7684\u5efa\u7b51\u90e8\u5206\u3002\n\nSource sentence: The restaurant has a variety of delicious dishes to choose from. \n\u8fd9\u5bb6\u9910\u5385\u6709\u5404"} +{"id": "2005471", "video_name": "a5101e19-4913-5ceb-b512-f865d61d50a2", "text": "\u4e00\u7247\u88ab\u4fee\u526a\u5f97\u4e0d\u597d\u7684\u8349\u576a\uff0c\u7559\u4e0b\u4e86\u4fee\u526a\u7684\u75d5\u8ff9\uff0c\u81ea\u7136\u5149\u7ebf\uff0c\u7528\u65e0\u4eba\u673a\u4fef\u89c6\u7684\u89c6\u89d2\u3002\u9644\u4ef61"} +{"id": "4002433", "video_name": "47ea3da4-9bb3-594d-836e-89696103987b", "text": "\u4e00\u4e2a20\u5c81\u7684\u6124\u6012\u5973\u5b50\u5728\u5927\u5b66\u7bee\u7403\u6bd4\u8d5b\u4e2d\u6253\u7bee\u7403\u3002"} +{"id": "6003076", "video_name": "4267902a-ea49-5512-a6ec-07327161e8c6", "text": "\u4e00\u6761\u957f\u957f\u7684\u6bdb\u7ebf\u88ab\u653e\u5728\u5730\u4e0a\u3002"} +{"id": "1005190", "video_name": "5f6e656d-44a8-5e63-a901-c46219ff6108", "text": "\u7ea6\u7ff0\u00b7\u57c3\u5f17\u96f7\u7279\u00b7\u7c73\u83b1\u65af\u7684\u5927\u8c61\u5728\u6c34\u4e2d\u5954\u8dd1\u7684\u52a8\u753b\u3002"} +{"id": "0003666", "video_name": "4161a890-f9ee-585b-a707-baf5c08b3148", "text": "\u5a74\u513f\u5168\u8eab\u5f3a\u70c8\u7684\u753b\u50cf\uff0c\u63cf\u7ed8\u4e86\u73ab\u7470\u00b7\u83b1\u65af\u8389\u9970\u6f14\u7684\u9ed1\u5be1\u5987\uff0c\u624b"} +{"id": "8003226", "video_name": "cb135aa0-54b9-506b-a2d1-5f68215fc6f0", "text": "\u85e4\u8513\u6500\u4e0a\u4e00\u5ea7\u7834\u8d25\u7684\u57ce\u5e02\u3002"} +{"id": "1005734", "video_name": "697c4720-002e-5bdf-b5b9-12a85d994e6c", "text": "\u7537\u5b69\u5728\u6d82\u9e26\u4e00\u53ea\u8f66\u5927\u5c0f\u7684\u6606\u866b\u3002"} +{"id": "8001130", "video_name": "2bd6f29f-073f-506c-83e2-84197d3d3ea9", "text": "\u4eb2\u7231\u7684\uff0c\u5982\u6b64\u6e29\u67d4\u548c\u5145\u6ee1\u7231\u610f\u3002\u4ec1\u6148\u4e4b\u82b1\uff0c\u9065\u8fdc\u7684\u62e5\u62b1\u3002"} +{"id": "8001667", "video_name": "28e1ff3b-4247-5c92-98a7-f5ca57141f65", "text": "JCB\u5728\u6cb3\u91cc\u6316\u6c99\u3002"} +{"id": "2003978", "video_name": "487e8e71-e61a-5a4a-82eb-864b88857fd6", "text": "\u81ea\u7531\u5973\u795e\u50cf\uff0c\u88ab\u65e0\u4eba\u673a\u62cd\u6444\uff0c4k\u753b\u8d28\u3002\u5177\u6709\u620f\u5267\u6027\u7684\u753b\u9762\uff0c\u591c\u666f\u3002"} +{"id": "3005309", "video_name": "698c7b1b-5564-5dfd-9532-1bf067e8a1e2", "text": "\u7537\u4eba\u5728\u8857\u4e0a\u56f4\u7740\u7bdd\u706b\u8df3\u821e\uff0c\u80cc\u666f\u662f\u88ab\u6bc1\u574f\u7684\u57ce\u5e02\u3002"} +{"id": "0006071", "video_name": "2621144a-8cd8-5849-9b07-47bdda68814a", "text": "\u9634\u5f71\u5728\u623f\u95f4\u91cc\u8df3\u821e\uff0c16:9\u6bd4\u4f8b\u4e0b\u7684\u5e7d\u7075\u5f62\u8c61\u5728\u6050\u6016\u7684\u6f14\u51fa\u4e2d\u3002"} +{"id": "1003574", "video_name": "41e87133-d1a3-59fa-96c8-51e4c2ccb788", "text": "\u91ce\u751f\u52a8\u7269\u88ab\u9501\u94fe\u675f\u7f1a\u5728\u7b3c\u5b50\u91cc\u3002"} +{"id": "5001644", "video_name": "2a4eb879-b7dd-511b-98c9-5367b2f66761", "text": "\u4e00\u53ea\u51e4\u51f0\u98de\u8fc7\u4e00\u4f4d\u7f8e\u4eba\u9c7c\u5750\u5728\u6cb3\u5e95\u7684\u5ca9\u77f3\u4e0a\u3002"} +{"id": "2005835", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "\u94a2\u7434\u97f3\u4e50\u4f1a\u4e0a\u89c2\u4f17\u9f13\u638c\u5e76\u8d77\u7acb\u9f13\u638c\u3002"} +{"id": "2005900", "video_name": "9d224704-54dc-56bc-8dd7-339ca13f956a", "text": "\u79d1\u5b66\u5bb6\u7684\u56db\u9053\u76b1\u7eb9\uff0c\u63d0\u9192\u7740\u771f\u6b63\u7684\u7231\u60c5\uff0c\u6211\u660e\u767d\u3002"} +{"id": "1006127", "video_name": "705015f0-9fda-5a84-8cba-ffa20023fad4", "text": "\u4e00\u7fa4\u9e2d\u5b50\u98de\u8fc7\u4e00\u5ea7\u88ab\u70e7\u6bc1\u7684\u57ce\u5e02\u3002"} +{"id": "8002035", "video_name": "f3073a6b-29e3-597c-979b-6f685223cfd9", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6c99\u6f20\u4e2d\u8df3\u821e\u4e94\u79d2\u949f\u3002"} +{"id": "7004227", "video_name": "a94d2dc1-600c-5c63-80d7-ca45c3dd1035", "text": "\u65af\u91cc\u5170\u5361\u603b\u7edfRanil Wickremesinghe\u4ee5T\u5f62\u72b6\u5448\u73b0\uff08\u65e0\u80cc\u666f\uff09\u3002\n\nSource sentence: Can you recommend a good restaurant near here? \n\u4f60\u80fd\u63a8\u8350"} +{"id": "8003727", "video_name": "3d34ccdf-7c65-562d-ab74-1894ccf6a4d1", "text": "\u6d77\u5e95\u4e0a\u626d\u66f2\u7684\u5e26\u58f3\u751f\u7269 Beksinski Alfred Stieglitz\u76841900\u5e74\u4ee3\u7684\u9897\u7c92\u9ed1\u767d\u4f5c\u54c1"} +{"id": "1003268", "video_name": "3c2383da-ead3-5ef4-ad74-be3680069143", "text": "\u5236\u9020\u4e00\u8f86\u6a59\u8272\u7684\u65e5\u4ea7GTR R34\u5728\u5e72\u51c0\u7684\u516c\u8def\u4e0a\u3002"} +{"id": "2003341", "video_name": "7d1efc55-7992-5d4d-9816-419b5b3605ac", "text": "\u5728\u4e91\u4e2d\u6f02\u6d6e\u7684\u57ce\u5e02\u5448\u73b0\u51fa\u6829\u6829\u5982\u751f\u3001\u903c\u771f\u800c\u8be6\u5c3d\u7684\u56fe\u50cf\u3002\u901a\u8fc7\u9971\u548c\u7684\u8272\u5f69\u3001\u7cbe\u7ec6\u7684\u7ec6"} +{"id": "2006418", "video_name": "c85a7f6b-36d9-57d4-9ed7-82d1a717e773", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u7814\u7a76\u5458\u6770\u514b\u5728\u4e00\u5bb6\u5e9f\u5f03\u7684\u9152\u5e97\u4e2d\u4e3a\u751f\u5b58\u800c\u6218\uff0c\u4ed6\u88ab\u4e00\u53ea\u673a\u68b0\u52a8\u7269\u88ad\u51fb\u3002"} +{"id": "1005334", "video_name": "61fba27a-0ffd-5a98-9b46-0aeab4943527", "text": "\u7528VHS\u62cd\u6444\u7684Maison Margiela\u65f6\u88c5\u79c0\uff0c\u6a21\u7279\u6234\u7740\u9762\u5177\u3002"} +{"id": "6003571", "video_name": "2e79b92a-9400-5917-9c61-5c648b363213", "text": "\u8001\u5f0f\u76848\u6beb\u7c73\u6770\u514b\u00b7\u91cc\u666e\u5f7b\u5728\u65e7\u4f26\u6566\u7684\u5f71\u50cf\u8d44\u6599\u3002"} +{"id": "4003022", "video_name": "8429e295-1a8b-558e-a40a-60561acda3a5", "text": "\u4e00\u8258\u5f62\u72b6\u7ec6\u957f\u3001\u914d\u5907\u6709\u6fc0\u5149\u70ae\u7684\u5b87\u5b99\u98de\u8239\uff0c\u53ef\u5728\u6df1\u7a7a\u4e2d\u79fb\u52a8\u3002"} +{"id": "2006296", "video_name": "00fda9b2-01c7-59fc-83d4-b9cd1e040ad7", "text": "\u8fd9\u4e2a\u7537\u4eba\u5750\u5728\u673a\u5668\u524d\uff0c\u6234\u4e0a\u4e86\u4e00\u4e2a\u5934\u6234\u5f0f\u8033\u673a\u3002\u8fd9\u4e2a\u8033\u673a\u53ef\u4ee5\u8ba9\u4ed6\u7528\u601d\u7ef4\u4e0e\u673a\u5668\u901a\u4fe1\uff0c\u5e76\u901a\u8fc7\u601d\u7ef4\u63a7\u5236"} +{"id": "3005466", "video_name": "c926029b-aed1-5411-9c2c-836af85746bf", "text": "\u5728\u9053\u8def\u5f2f\u66f2\u5904\u8dd1\u5f97\u5feb\u7684\u6c7d\u8f66\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "1004726", "video_name": "57a43107-da9a-56e7-a461-707769e01d09", "text": "\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\uff0c\u6b63\u5728\u6263\u7d27\u7ebd\u6263\u3002\u4ed6\u6709\u7eb9\u8eab\u7684\u624b\u3002\u6027\u611f\u3002"} +{"id": "3004826", "video_name": "e0e2011a-eb64-54c6-a5dd-457222feb373", "text": "\u8718\u86db\u4fa0\u5bf9\u7eff\u706f\u4fa0\uff0c\u52a8\u753b\uff0c\u52a8\u6001\uff0c3D\uff0c\u5f71\u9662\u52a8\u4f5c"} +{"id": "3005015", "video_name": "2143b21d-e860-5e49-a68f-0fab57459813", "text": "\u4e00\u500b\u9ed1\u6697\u4e3b\u984c\u4e0b\u7684\u57ce\u5e02\u5927\u706b\u7684\u5ee3\u89d2\u93e1\u982d\uff0c4K\uff0c\u903c\u771f\uff0c\u9ad8\u6e05\u3002"} +{"id": "7004096", "video_name": "2c11c157-54a3-52a5-8b29-15d2ef3bc912", "text": "\u4e00\u5f20\u52a0\u5bc6\u8d27\u5e01\u56fe\u8868\uff0c\u4e0a\u6da8\u5e76\u4ee5\u7206\u70b8\u7ed3\u675f\u3002"} +{"id": "2005455", "video_name": "f6bac8b0-9f7d-5a35-ac10-758c4cb66934", "text": "1970\u5e74\u4ee3\u7684\u6c99\u6f20\uff0c\u4e00\u68f5\u4ed9\u4eba\u638c\u7740\u706b\u4e86\u3002"} +{"id": "6003577", "video_name": "a014724e-3fda-51c3-be98-701211c4e7c4", "text": "\u8718\u86db\u4fa0\u7528\u4e00\u53ea\u624b\u6325\u624b\u544a\u522b\uff0c\u53e6\u4e00\u53ea\u624b\u62b1\u7740\u5154\u5b50\u3002"} +{"id": "1004999", "video_name": "5c62c7b4-c562-55ef-aee1-ef9b00663531", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u5c06\u57282026\u5e74\u8d62\u5f97\u4e16\u754c\u676f\u3002"} +{"id": "0006274", "video_name": "29ddce1f-7591-585c-944e-4bb57055de69", "text": "\u642c\u5bb6\u6253\u67b6\u7684PSE\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004784", "video_name": "586b9c0c-1b9c-502c-89be-52fa8b15b2f0", "text": "\u5728\u5f69\u8272\u80cc\u666f\u4e2d\u53d8\u5e7b\u51e0\u4f55\u5f62\u72b6\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u4e09\u7ef4\u6e32\u67d3\uff0c\u989c\u8272\u76f8\u4e92\u6de1\u5316\uff0c\u8fde\u8d2f\u7684\u8c03\u8272\u677f\u3002"} +{"id": "0005324", "video_name": "18b7edc2-d83a-5c30-af10-e8e336050f87", "text": "\u5b89\u52aa\u7eb3\u57fa\u9762\u5b54\u5728NASA\u76843D\u516b\u89d2\u6e32\u67d3\u4e2d\u8fdb\u884c\u4e86\u8bf4\u8bdd\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6700\u4f73\u5206\u8fa8\u7387\uff0cHDR\uff0c4k\u3002"} +{"id": "4002041", "video_name": "3154051e-1eb5-570a-947e-276be5035c8f", "text": "8K\uff0cPixar\uff0c\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u7ec6\u8282\uff0c\u903c\u771f\u7684\u77ed\u53d1\uff0c\u62e5\u6709\u68d5\u8272\u8033\u6735\u548c\u68d5\u8272\u53f3\u773c\u7684\u6770\u514b"} +{"id": "0006745", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "\u521b\u5efa\u4e00\u4e2a\u52a8\u753b\u5f62\u8c61\uff0c\u4ee3\u8868\u53cb\u597d\u800c\u77e5\u8bc6\u6e0a\u535a\u7684\u4eba\u5de5\u667a\u80fd\u4e3b\u6301\u4eba\u3002\u5f62\u8c61\u5e94\u8be5\u6563\u53d1\u4eb2\u548c\u529b\u548c\u81ea\u4fe1\uff0c\u7a7f\u7740\u73b0\u4ee3"} +{"id": "2007500", "video_name": "48116748-95b6-5d58-8ca4-799ab5bc7f6e", "text": "\u96cf\u83ca\u82b1\u5145\u6ee1\u7231\u610f \u4fe1\u606f\uff1a\u96cf\u83ca \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005607", "video_name": "67195eec-3e75-534a-bf96-053025ad134c", "text": "\u5b66\u751f\u4eec\u5728\u542c\u4e00\u4f4d\u5973\u54f2\u5b66\u5bb6\u7684\u6f14\u8bb216:9\u3002"} +{"id": "7004446", "video_name": "678b59d2-10ec-56f1-bb69-b8542d65b6a4", "text": "\u8096\u50cf\uff0c\u57ce\u5e02\u91cc\u905b\u72d7\uff0c\u9633\u5149\u548c\u65e5\u51fa\u7684\u7167\u660e\uff0c8k\u5efa\u7b51\u7167\u7247\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u80cc\u666f\uff0c16:9\u3002"} +{"id": "3005338", "video_name": "9fcc2e96-6a44-59d7-b31d-2ffbf8a24d76", "text": "\u7518\u9053\u592b\u7528\u5149\u5251\u4e0e\u7334\u5b50\u6218\u6597\u3002"} +{"id": "2006177", "video_name": "5d70f7f5-dc7a-522b-88e2-9f048b6fe782", "text": "\u4e00\u4e2a\u6709\u4eba\u8d70\u6765\u8d70\u53bb\u548c\u5b69\u5b50\u4eec\u73a9\u800d\u7684\u6751\u5e84\u3002"} +{"id": "6002301", "video_name": "6515675d-eb55-57e3-803f-ed7337a8f338", "text": "\u53f2\u8482\u592b\u00b7\u6b27\u6587\u629a\u6478\u7740\u5929\u4f7f\u9b54\u9b3c\u9c7c\uff0c\u5929\u5802\u822c\u7684\u73b0\u5b9e\u611f\uff0c3D\uff0c\u68a6\u5e7b\u822c\u7684"} +{"id": "8002221", "video_name": "68c1cbf1-6cd3-5752-afac-aaab4220e941", "text": "\u96e8\u5929\u5361\u901a\uff1a\u89c6\u89c9\u6548\u679c\u4e3aAFRO\u5361\u901a\u4eba\u7269\u5728\u4e00\u4e2a\u6ed1\u7a3d\u7684\u8d85\u5927\u96e8\u4f1e\u4e0b\u7a7f\u8d8a\u96e8\u96fe\uff0c\u6e85\u8fc7\u6c34\u5751\u3002"} +{"id": "2006181", "video_name": "8719856a-89c9-5921-86d2-87ada64160a4", "text": "\u4e00\u4e2a\u89c6\u9891\u91cc\uff0c\u4e00\u672c\u4e66\u62ff\u7740\u67aa\uff0c\u53e6\u4e00\u672c\u4e66\u7a7f\u7740\u5236\u670d\u3002"} +{"id": "1004707", "video_name": "576b5954-0a8a-52e2-9356-10b2c2395a29", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u53ef\u6015\u7684\u6c99\u5c18\u66b4\u4e2d\u3002"} +{"id": "1003321", "video_name": "3d2acde0-a955-5693-945c-dab48eff2d2a", "text": "\u706b\u7130\u8986\u76d6\u6574\u4e2a\u6d1e\u7a74\uff0c\u9f50\u65af\u74e6\u592b\u00b7\u8d1d\u8f9b\u65af\u57fa\u98ce\u683c\u3002"} +{"id": "0005818", "video_name": "21b21c91-9516-56b8-9fa4-4e2b03d39a6d", "text": "\u7535\u5f71\u822c\u7684\u6050\u6016\u573a\u666f\u5728\u4e00\u4e2a\u5145\u6ee1\u706d\u866b\u5668\u7684\u672a\u6765\u5b9e\u9a8c\u5ba4\u4e2d\u8bbe\u8ba1\uff0c\u5177\u6709\u7535\u5f71\u611f\u3001\u94f6\u7ffc\u6740\u624b\u98ce\u683c\uff0c"} +{"id": "8001623", "video_name": "d4c0b0cd-a5d7-5af5-a2bd-d49dc260f115", "text": "\u6bdb\u8c61\u7684\u7259\u9f7f\u7684\u56fe\u50cf"} +{"id": "0003264", "video_name": "3a532e62-b991-5602-a556-04c7e1332905", "text": "\u8282\u65e5\u7684\u822a\u62cd\u89c6\u89d2\uff0c\u4eba\u4eec\u804a\u5929\u58f0\u3001\u97f3\u4e50\u58f0\u548c\u6de1\u6de1\u7684\u4f20\u7edf\u5668\u4e50\u58f0\u4e0d\u65ad\uff0c\u4eba\u4eec\u8d70\u52a8\uff0c\u666f\u8c61\u9010\u6e10\u5411"} +{"id": "3004336", "video_name": "8a373ad1-cd4f-5f31-81c5-45207874542c", "text": "\u65e5\u672c\u4e00\u5ea7\u5c71\u4e0a\u5347\u8d77\u7684\u592a\u9633"} +{"id": "0004909", "video_name": "1140f84a-d94e-5ff8-9247-4f061e64fd05", "text": "\u706b\u8f66\u5728\u5c71\u5761\u4e0a\u884c\u9a76\uff0c\u573a\u666f\u662f\u5728\u94c1\u8f68\u4e0a\u3002\u67093D\u5361\u901a\u6548\u679c\u3002"} +{"id": "3003628", "video_name": "64cbb079-62b6-5fc3-8eab-a3d63437c8ee", "text": "\u6444\u50cf\u673a\u4ece\u786c\u6728\u5730\u677f\u79fb\u5411\u5929\u82b1\u677f\uff0c\u7f8e\u5143\u949e\u7968\u843d\u4e0b\u3002"} +{"id": "1005678", "video_name": "68569261-281b-5bc9-b0f4-722be65adf49", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u5728\u6d77\u6ee9\u51b2\u6d6a\uff0c\u5927\u6d6a\u7ffb\u6eda\u3002"} +{"id": "0003517", "video_name": "3ede7fd4-a0af-546c-a2e1-c90e74c00793", "text": "\u6d1b\u5947\u5c3c\u65af\u602a\u7269\u4ece\u6c34\u4e2d\u6d6e\u73b0\uff0c\u7535\u5f71\u822c\u7684\u8377\u5170\u89d2\u5ea6\u3002"} +{"id": "0003332", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "\u4e00\u4e2a\u56fe\u50cf\u663e\u793a\u4e00\u4e2a\u7c7b\u4f3c\u8c37\u6b4c\u6807\u5fd7\u7684\u6807\u5fd7\u3002"} +{"id": "7002412", "video_name": "d66e5c6b-3d75-56ef-8d85-39e0b37b9079", "text": "\u963f\u4e9a\u80e1\u4e9a\u65af\u5361\u836f\u6c34\u4e2d\u7684\u4f5b\u9640\u6700\u540e\u4e00\u4e16\u7684\u663e\u73b0\u3002"} +{"id": "1006278", "video_name": "72f8ba6f-07af-584d-b347-18046f9466cc", "text": "\u4e2d\u56fd\u98ce\u6de1\u96c5\u8272\u8c03\u7684\u80cc\u666f\u5899\u3002"} +{"id": "3003112", "video_name": "ee27e271-c453-521f-b7d8-65c84f005a65", "text": "\u5e26\u7740\u6302\u5728\u8116\u5b50\u4e0a\u7684\u65f6\u949f\uff0c\u6d6e\u52a8\u7684\u65f6\u949f\u73af\u7ed5\u7740\u5154\u5b50\u65f6\u95f4\u5927\u5e08\uff0c\u76ee\u5149\u76f4\u89c6\u955c\u5934\u3002"} +{"id": "8002429", "video_name": "f354f9a4-47a0-5312-942c-62f30afdaa54", "text": "\u5973\u5b69\u5728\u5b66\u4e60\uff0c\u5979\u7684\u623f\u95f4\uff0c\u65b0\u6d77\u8bda\u3002"} +{"id": "1006297", "video_name": "734e7644-ffeb-515b-b46f-afb703b9be87", "text": "\u6d41\u661f\uff0c\u5149\u8292\u95ea\u70c1\uff0c\u6811\u53f6\u7c0c\u7c0c\u4f5c\u54cd\uff0c\u98ce\u5439\u62c2\u3002"} +{"id": "8002039", "video_name": "93dc3b96-8597-5cd7-a00e-7e42963f68e6", "text": "\u4e00\u4e2a\u62ff\u7740\u76f8\u673a\u7ed9\u6d77\u62cd\u7167\u7684\u7537\u4eba\u3002"} +{"id": "7003675", "video_name": "c7f2f789-ffa0-5864-bc49-4b646bd79bef", "text": "\u7f8e\u5473\u8fa3\u5473\u70ed\u9762\u6761\u653e\u5728\u6728\u684c\u4e0a\u3002"} +{"id": "3006074", "video_name": "d2980138-40d9-5f69-8b6e-8f370d186b9e", "text": "\u5728\u591c\u7a7a\u4e0b\uff0c\u6b66\u6c49\u56ed\u535a\u56ed\u88ab\u706f\u5149\u70b9\u4eae\uff0c\u4ea4\u7ec7\u6210\u661f\u6cb3\uff0c\u5982\u68a6\u822c\u88c5\u70b9\u7740\u6c49\u670d\u8282\u7684\u573a"} +{"id": "0006852", "video_name": "343daed3-e16c-5763-bd03-cad714923e70", "text": "\u6751\u4e0a\u6625\u6811\u65e9\u4e0a\u6162\u8dd1\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "6004241", "video_name": "c01032ff-16e1-562b-8c85-7ced1e493b09", "text": "\u878d\u5316\u7684\u7c89\u8272\u51b0\u6dc7\u6dcb\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u7684\u5546\u4e1a\u89c6\u9891\uff0c\u65f6\u95f4\u52a0\u901f\u3002"} +{"id": "3005082", "video_name": "6b68be6e-e332-589e-b6fc-312106b09615", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u592a\u7a7a\u7ad9\u4e0a\u8df3\u8dc3\uff0c\u6311\u6218\u91cd\u529b\u7684\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "0006429", "video_name": "2c27a03f-dea9-5899-895a-8511d2de73a2", "text": "\u7f8e\u4e3d\u7684\u98ce\u666f\u65e5\u672c\u53e4\u5821\u98ce\u6811\u6cb3\u6c34\u6d41\u98ce\u683c\u3002"} +{"id": "3006370", "video_name": "68963c04-3b74-555c-9a26-3761df460f69", "text": "\u4e00\u628a\u6905\u5b50\u4e0b\u9762\u7ed1\u7740\u55b7\u6c14\u88c5\u7f6e\uff0c\u55b7\u6c14\u88c5\u7f6e\u5168\u529b\u63a8\u8fdb\uff0c\u6905\u5b50\u98de\u8d77\u6765\u4e86\u3002"} +{"id": "1006889", "video_name": "7dec7d56-ac31-55a8-9ef2-0e7367348950", "text": "4K \u7f8e\u5f0f\u8db3\u7403\u8fd0\u52a8\u5458\u6b63\u5728\u4f7f\u7528\u87ba\u65cb\u6295\u7403\u65b9\u5f0f\u6295\u63b7\u7403\u3002"} +{"id": "0004408", "video_name": "086ce4e4-7a43-5b3c-b2c5-5a98c01ff716", "text": "\u4e00\u5806\u624b\u638c\u4ece\u4f20\u9001\u95e8\u4e2d\u51fa\u73b0\uff0c\u6bcf\u53ea\u624b\u638c\u4e0a\u90fd\u6709\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u5634\u5df4\u3002\u8fd9\u4e9b\u624b\u638c\u5728\u5929\u7a7a\u4e2d\u98de\u821e\uff0c\u5448\u73b0"} +{"id": "0004763", "video_name": "0edc212a-bd9a-5c77-88b4-73b443fef2aa", "text": "\u9ed1\u8272\u886c\u886b\u80e1\u987b\u7537\u5b50\u5750\u5728\u529e\u516c\u5ba4\u7684\u84dd\u8272\u6905\u5b50\u4e0a\uff0c\u8fb9\u5403\u7740\u7eff\u8272\u82f9\u679c\uff0c\u8fb9\u5728\u53f0\u5f0f\u7535"} +{"id": "2003849", "video_name": "7306f57c-f9db-54f7-8963-9eee3e97a484", "text": "\u5faa\u73af\u3001\u9ad8\u753b\u8d28\u3001\u7cbe\u81f4\u3001\u5728\u592a\u7a7a\u4e2d\uff0c\u661f\u7a7a\u3001\u6d41\u661f\u3001\u8282\u594f\u3001\u95ea\u70c1\u3001\u6d41\u661f\u96e8\u3002"} +{"id": "0004317", "video_name": "07074cb8-4399-5d55-85a7-821c53a1126d", "text": "\u5728\u7f8e\u4e3d\u7684\u7a3b\u7530\u4e0a\u5de5\u4f5c\u7684\u8bb8\u591a\u4eba\u548c\u52a8\u7269\u770b\u8d77\u6765\u90fd\u5f88\u5feb\u4e50\u3002"} +{"id": "2005309", "video_name": "c2b49bff-2a9d-5356-8257-a7ce898ee149", "text": "\u4e00\u53ea\u7761\u89c9\u7684\u732b\uff0clofi\u98ce\u683c\uff0c\u7070\u9ed1\u8272\u8c03\u3002"} +{"id": "6004305", "video_name": "29588c04-3f3c-597f-a78b-bc723fbcd083", "text": "\u4e00\u4e2a\u4e13\u6ce8\u4e8e\u6b63\u5ff5\u51a5\u60f3\u7684\u4eba\u5411\u4e16\u754c\u4f20\u9012\u7231\u3002"} +{"id": "0005523", "video_name": "1c3d9994-bdf1-5c05-8266-fb58c70c1328", "text": "\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\uff0c\u4e00\u652f\u5171\u4ea7\u4e3b\u4e49\u519b\u961f\u7a7f\u8fc7\u96ea\u6797\u7684\u8ff7\u5e7b\u8d858\u5f55\u50cf\u3002"} +{"id": "5001822", "video_name": "4c8bc249-7cae-53c7-861d-4f949ecff2db", "text": "\u9662\u5b50\u91cc\u7684\u6210\u5e74\u4eba\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "2006107", "video_name": "7ca849f3-eb4e-5db1-83b6-61c89b1d5201", "text": "\u4e00\u4f4d\u4e8c\u5341\u51fa\u982d\u7684\u897f\u73ed\u7259\u7f8e\u5973\uff0c\u9577\u8457\u9b06\u6563\u7684\u6ce2\u6d6a\u7d05\u9aee\uff0c\u68b3\u6210\u4f11\u9592\u98a8\u683c\uff0c\u6709"} +{"id": "6002680", "video_name": "22900314-c2f1-5a1f-ba63-f124a386f8c1", "text": "\u9b54\u529b\u548c\u795e\u79d8\u611f\u4ece\u753b\u9762\u4e2d\u6563\u53d1\u51fa\u6765\uff0c\u4e00\u672c\u7528\u9b54\u6cd5\u8272\u5f69\u7ed8\u5236\u7684\u4e66\u6253\u5f00\uff0c\u53d1\u51fa\u5149\u8292\u3002"} +{"id": "4004053", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "\u70df\u82b1\uff1a\u65b0\u5e74\u5feb\u4e50\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006869", "video_name": "8e53b458-3970-56ae-a6c6-18da2b8a4ab5", "text": "\u7b80\u5355\u4e0e\u4f20\u7edf\u4ea4\u7ec7\uff0c\u9a6c\u96c5\u7684\u751f\u6d3b\u3002"} +{"id": "4003079", "video_name": "c6a58a3e-f004-5cbd-9fcb-827aa1ee28c1", "text": "\u751f\u6210\u4e00\u5e45\u5bc6\u96c6\u7684\u4e1b\u6797\u56fe\u50cf\uff0cTom\u7ad9\u5728\u90a3\u91cc\uff0c\u663e\u5f97\u5b64\u82e6\u4f36\u4ec3\uff0c\u524d\u666f\u4e2d\uff0c\u63cf\u7ed8Ruby\u8fd9\u53ea\u5154\u5b50\uff0c"} +{"id": "1005375", "video_name": "62dd8f6e-6ba1-5ed7-be49-f9d3a107fddc", "text": "\u521b\u9020\u4e00\u4e2a\u5954\u8dd1\u7684\u4eba\u3002\u5de6\u8fb9\u662f\u4e00\u4e2a\u5c0f\u6d77\uff0c\u53f3\u8fb9\u662f\u4e00\u68f5\u6811\u3002"} +{"id": "2004028", "video_name": "ee81e373-a44a-595d-9612-285850ea0003", "text": "\u7535\u89c6\u65b0\u95fb\u8bb0\u8005\u5728\u97f3\u4e50\u5385\u5916\u62a5\u9053\uff0c\u8fdc\u5904\u6709\u8b66\u8f66\u7684\u706f\u5149\uff0c\u5448\u73b0\u51fa\u9ed1\u8272\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "6004193", "video_name": "195411b3-4629-57f4-af4f-dcbe594660b0", "text": "\u5728\u82ad\u6bd4\u5a03\u5a03\u97f3\u4e50\u5f55\u5f71\u5e26\u4e2d\u7684\u4e00\u4e2a\u573a\u666f\uff0c\u5c3c\u5947\u00b7\u7c73\u5a1c\u4f5c\u4e3a\u82ad\u6bd4\u5a03\u5a03\u51fa\u73b0\uff0c\u5979\u662f\u4e00"} +{"id": "6004580", "video_name": "3398f343-9844-5e4b-be5a-5a1916aee6a2", "text": "\u65af\u5df4\u8fbe\u4eba\u7528\u7816\u5757\u963b\u585e\u95e8\u9053\u3002"} +{"id": "2007396", "video_name": "c67d8185-ed4f-57cc-b420-d7323b3b069e", "text": "\u4e00\u7fa4\u4eba\u5728\u76f4\u7ebf\u884c\u8d70\u3002"} +{"id": "3006921", "video_name": "cf8a4aa8-1e54-561f-9a97-18de9ac8c03f", "text": "\u5df4\u6bd4\u5a03\u5a03\u4ea4\u901a\u89c6\u89d2\u5728\u5df4\u62c9\u572d\u7e41\u5fd9\u8857\u9053\u62cd\u6444\u768490\u5e74\u4ee3\u753b\u9762\uff0cVGA\u3002"} +{"id": "2003510", "video_name": "d9c098b1-234f-5a56-991a-9ff2778b29b0", "text": "\u5370\u5ea6\u7684\u8428\u6ee1\u8868\u6f14\uff0c\u53e6\u7c7b\u91ce\u6027\u7684\u897f\u90e8\u7535\u5f71\uff0c\u7535\u5f71\u822c\u7684\u5916\u89c2\u3002"} +{"id": "2007802", "video_name": "f05838b3-fa3c-53d4-9a8a-f9e9183098d0", "text": "\u573a\u666f\uff1a\u4e00\u4e2a\u5145\u6ee1\u591a\u6837\u751f\u6001\u7cfb\u7edf\u7684\u8272\u5f69\u7f24\u7eb7\u3001\u751f\u673a\u52c3\u52c3\u7684\u52a8\u753b\u4e16\u754c\uff0c\u4ece\u8302\u5bc6\u7684\u4e1b\u6797\u5230\u51b0\u51b7\u7684"} +{"id": "8003807", "video_name": "6c5efa56-8bbd-58ce-b65a-23d47cb0711e", "text": "\u521b\u9020\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b69\u7684\u5f62\u8c61\uff0c\u7ad9\u5728\u5979\u7684\u57ce\u5821\u4fdd\u62a4\u5899\u5185\u3002\u5979\u770b\u8d77\u6765\u5f88\u5bb3\u6015"} +{"id": "4004546", "video_name": "b7a4b936-3f04-5efd-8ff0-2fd320e244b7", "text": "\u4e00\u53ea\u9e1f\u843d\u5728\u4e86\u82f9\u679c\u6811\u4e0a\u3002"} +{"id": "1004214", "video_name": "4ddc2772-b3e3-52fd-a745-2c48aaf936ec", "text": "\u4e24\u4e2a\u5973\u5b69\u5728\u58ee\u89c2\u7684\u6d77\u6ee9\u65e5\u843d\u65f6\u559d\u5564\u9152\u4eab\u53d7\u3002"} +{"id": "1003129", "video_name": "399c5df2-e2ad-52ba-80a4-61c86c58275e", "text": "\u7389\u7c73\u7247\u843d\u5728\u7ea2\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "8001284", "video_name": "aa0a77e5-8072-5579-8b67-25c07af3d1d2", "text": "\u66b4\u9f99\uff01\u62e5\u6709\u5f3a\u58ee\u7684\u7259\u9f7f\u548c\u817f\u3002"} +{"id": "2003295", "video_name": "c662063b-984c-580b-bdff-6c04fcc0b6ea", "text": "\u4e00\u5e45\u4eba\u7c7b\u796d\u54c1\u7684\u6d1e\u7a74\u58c1\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4f4d\u796d\u53f8\u53d6\u51fa\u7537\u5b50\u7684\u5fc3\u810f\u3002"} +{"id": "8002895", "video_name": "9f031510-17f3-560c-9d82-baa56ac8350b", "text": "\u5170\u535a\u57fa\u5c3c\u5728\u4e1c\u4eac\u7684\u8d5b\u8f66\u6bd4\u8d5b\u4e2d\u9a7e\u9a76Subaru\u3002"} +{"id": "3003821", "video_name": "75e6cdc0-7550-5b66-adf9-cac3335b7028", "text": "\u5341\u4e8c\u4e16\u7eaa\uff0c\u624b\u6301\u957f\u77db\u7684\u4eba\u4eec\u6b63\u5728\u653b\u51fb\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "2006396", "video_name": "b446a699-1d7d-55c2-aa6e-42de8770812e", "text": "\u6c99\u6f20\u4e2d\u592e\u753b\u4e86\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "1006408", "video_name": "756205fb-1b15-5d1a-9a36-dcf9c8aadab2", "text": "\u7ed9\u6211YouTube\u89c6\u9891\u7684\u4ecb\u7ecd\u3002"} +{"id": "1005547", "video_name": "66255d68-59d8-5efa-910e-36138a8e9773", "text": "\u96a7\u9053\u66f4\u52a0\u4e30\u5bcc\u591a\u5f69\uff0c\u5e76\u4e14\u5728\u5c3d\u5934\u6709\u4e00\u9053\u7a81\u51fa\u660e\u4eae\u7684\u5149\u3002"} +{"id": "3005939", "video_name": "cc7ebf43-8a6d-5d24-86d6-2c673112cdc0", "text": "\u7537\u4eba\u770b\u5230\u65b0\u8863\u670d\u4e0d\u5408\u8eab\u611f\u5230\u5931\u671b\u3002"} +{"id": "8001272", "video_name": "fce6480f-ffcc-5d3b-9771-7ebb6eed5476", "text": "\u7537\u5b50\u5728\u4e00\u5ea7\u672b\u65e5\u57ce\u5e02\u4e2d\u884c\u8d70\uff0c\u8f6f\u7126\uff0c\u8d85\u957f\u955c\u5934\uff0c4K\u3002"} +{"id": "4004104", "video_name": "16d6a13f-81fe-52f2-9099-9c3e4495239c", "text": "\u4e00\u4f4d\u7a7f\u7740\u91d1\u8272\u76d4\u7532\u7684\u84dd\u76ae\u80a4\u5370\u5ea6\u4eba\uff0c\u9a91\u5728\u4e00\u5339\u767d\u9a6c\u4e0a\u3002"} +{"id": "2003576", "video_name": "fc639c3a-4599-550d-8885-54b8a5af58d5", "text": "\u4e00\u628a\u5e26\u7740\u8f7b\u5fae\u5149\u4eae\u7684\u53ef\u6015\u79fb\u52a8\u7684\u6905\u5b50\u5728\u665a\u4e0a11\u70b9\u5de6\u53f3\u51fa\u73b0\u5728\u5e8a\u524d\u3002"} +{"id": "8002133", "video_name": "91e8e9e7-66a6-5cd3-a6b4-b9b07efd2a58", "text": "\u89d2\u8272\u89e6\u78b0\u955c\u5b50\uff0c\u624b\u7a7f\u8fc7\u955c\u5b50\uff0c\u73bb\u7483\u7834\u788e\u3002"} +{"id": "8001794", "video_name": "27c6bb2b-36ad-547e-9fdb-ba9a15c1ff60", "text": "\u9ad8\u6e05\u6670\u5ea6\u3001\u5168\u8eab\u7167\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u9ed1\u53d1\u8ff7\u4eba\u5973\u5b50\u57281950\u5e74\u4ee3\u98ce\u683c\u7684\u591c\u603b\u4f1a\u524d\u6446\u59ff\u52bf\uff0c\u5979\u7a7f"} +{"id": "1004444", "video_name": "523cda6c-1929-543d-bc31-3efc68ae2241", "text": "\u4e00\u4f4d\u82cd\u767d\u3001\u4ee4\u4eba\u4e0d\u5b89\u7684\u5973\u4eba\u4e00\u52a8\u4e0d\u52a8\u5730\u7ad9\u7740\uff0c\u5979\u7684\u773c\u775b\u53cd\u5c04\u51fa\u5f02\u4e16\u754c\u7684\u6050\u60e7\uff0c\u51dd\u89c6\u7740"} +{"id": "4002860", "video_name": "6439447e-71da-5159-bec0-c18ea1ebaf2c", "text": "\u4e00\u4e2a\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u7684\u5e02\u573a\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "4002873", "video_name": "95dbb2aa-76c3-5c37-a3e4-d456657a205a", "text": "\u57c3\u53ca\u5973\u738b\u514b\u5229\u5965\u5e15\u7279\u62c9\u7684\u5f62\u8c61"} +{"id": "2004751", "video_name": "f25ff453-52d1-5f3c-ac6f-2b7266c8cfb8", "text": "\u4e00\u679a\u94f6\u8272\u91d1\u5c5e\u706b\u7bad\u5728\u6674\u6717\u7684\u84dd\u5929\u4e2d\u53d1\u5c04\uff0c\u91ca\u653e\u51fa\u8bb8\u591a\u70df\u96fe\u548c\u706b\u82b1\u3002"} +{"id": "2006872", "video_name": "b35a8552-eb5d-5e1a-b863-b3a92cc9c3c7", "text": "\u5728\u8239\u4e0a\u6325\u821e\u7740\u767d\u65d7\u7684\u903c\u771f\u9ab7\u9ac5\uff0c\u80cc\u666f\u662f\u571f\u661f\u3002"} +{"id": "3003867", "video_name": "7052b532-7d66-52bb-8d3d-26634c325913", "text": "\u5728\u5361\u901a\u98ce\u683c\u4e0b\uff0c\u65e0\u4eba\u673a\u98de\u884c\u5728\u5c71\u4e18\u7530\u91ce\u4e0a\u3002"} +{"id": "3004629", "video_name": "1a73227d-2da5-5e85-8b3c-7f6673ce71c9", "text": "\u5728\u516c\u56ed\u91cc\u8ba9\u4e00\u4e2a\u4eba\u8d70\u8def\u3002"} +{"id": "3004331", "video_name": "67f8d0a6-7fd1-589a-9e93-5f45f1278dd8", "text": "\u4e00\u4e2a\u7537\u4eba\u7528\u6b66\u58eb\u5200\u5207\u82f9\u679c\uff0c\u5728\u5de5\u4f5c\u5ba4\u706f\u5149\u4e0b\uff0c\u6709\u95ea\u7535\u6548\u679c\u5207\u5272\u3002"} +{"id": "3003181", "video_name": "017cd590-2120-5814-a126-f8347293ef07", "text": "\u4e00\u4e2a\u5927\u6d3e\u5bf9\uff0c\u5728\u4e00\u4e2a\u5927\u623f\u95f4\u91cc\uff0c\u4eba\u4eec\u8df3\u821e\uff0c\u6709\u5404\u79cd\u989c\u8272\u7684\u706f\u5149\u548c\u7f8e\u56fd\u88c5\u9970\u300216:9\u9ad8\u6e05\u3002"} +{"id": "0003664", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5750\u5728\u8bb8\u591a\u5c0f\u72d7\u65c1\u8fb9\uff0c\u8bb8\u591a\u5c0f\u72d7\u5728\u5979\u8eab\u4e0a\u722c\u6765\u722c\u53bb\uff0c\u5979\u4e00\u8fb9\u629a\u6478"} +{"id": "0004003", "video_name": "016ace53-a55e-5da7-ad68-764e8ffe2b5d", "text": "\u6709\u4e00\u6b21\uff0c\u98ce\u548c\u592a\u9633\u4e4b\u95f4\u53d1\u751f\u4e86\u5173\u4e8e\u8c01\u66f4\u5f3a\u58ee\u7684\u4e89\u8bba\u3002"} +{"id": "1006332", "video_name": "73db9208-27a2-5de0-a6b8-b69bd64e3991", "text": "\u4f60\u662f\u4ece\u54ea\u91cc\u6765\u7684\u732b\u4eba\u8df3\u821e\uff1f"} +{"id": "4003372", "video_name": "cf6abaaf-1766-52b8-afcd-c972e2ff29cb", "text": "\u80cc\u666f\u3001\u82b1\u56ed\u3001\u7f8e\u4e3d\u7684\u989c\u8272\u3001\u548c\u8c10\u7684\u81ea\u7136\u98ce\u5149\u3001\u7f8e\u4e3d\u7684\u623f\u5b50\u30013D\u30014K"} +{"id": "1004331", "video_name": "4ff7f5cd-7a9f-5137-bd87-918c023667d8", "text": "\u4fdd\u65f6\u6377\u5728\u65e5\u672c\u9661\u5ced\u7684\u5c71\u8def\u4e0a\u6f02\u79fb\uff0c\u6709\u7740\u9510\u5229\u7684\u5f2f\u9053\uff0c\u65f6\u957f15\u5206\u949f\u3002"} +{"id": "4004535", "video_name": "b91c8bd9-e465-5c16-a7ad-2a859b7fbc51", "text": "\u4e00\u4e2a\u7531\u5e73\u51e1\u7684\u9752\u7eff\u8272\u7eb8\u7bb1\u5806\u780c\u800c\u6210\u7684\u957f\u65b9\u4f53\u5f62\u5723\u8bde\u6811\u8038\u7acb\u5728\u5927\u57ce\u5e02\u7684\u4e3b\u8981\u8857\u9053\u4e0a\uff0c\u6811"} +{"id": "3004345", "video_name": "994dd546-c2a7-5cad-9e1c-02e8aeb342a1", "text": "\u5236\u4f5c\u4e00\u5f20\u6e29\u99a8\u7684\u56fe\u7247\uff0c\u6355\u6349\u5230\u4e00\u53ea\u5c0f\u767d\u8272\u65af\u76ae\u5179\u72d7\u548c\u4ed6\u7684\u65b0\u5a18\u5e86\u795d\u5a5a\u793c\u7684\u573a\u666f"} +{"id": "7003944", "video_name": "f49d9b2b-1798-58de-95e9-c40240f274b3", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u5929\u7a7a\u4e2d\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "0004342", "video_name": "076c7c12-148a-5aab-a565-085901a995ce", "text": "\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u4f2f\u5229\u5179\u96e8\u6797\uff0c\u6ca1\u6709\u6c34\uff0c\u89c6\u89d2\u6a2a\u8de8\u98ce\u666f\uff0c\u5929\u7a7a\u4e2d\u6709\u9e1f\u3002"} +{"id": "2007998", "video_name": "03c8072f-7979-5973-9faf-d7c7f6a54fe9", "text": "\u5728\u4e8c\u697c\u770b\u7740\u4e00\u53ea\u732b\u5728\u6e38\u6cf3\u6c60\u91cc\u6e38\u6cf3"} +{"id": "4003562", "video_name": "9314f630-2b5c-51d2-89bc-1a8f529f5841", "text": "\u4e00\u500b\u5c0f\u5973\u5b69\u54ed\u4e86\uff0c\u771f\u5be64K\u3002"} +{"id": "5001672", "video_name": "654aca99-b51a-57e3-a44b-f718478614d2", "text": "\u5409\u535c\u529b\u98ce\u683c\uff1a\u5728\u84dd\u5929\u4e0b\uff0c\u4e00\u4e2a\u5706\u5f62\u7684\u592a\u9633\u88ab\u6708\u4eae\u53d6\u4ee3\u3002"} +{"id": "2007079", "video_name": "ed4a4293-d784-57b1-a90e-41ea734eddc6", "text": "atmosphere with candles and spooky decorations. \n\nTranslation: Alex\u548c\u670b\u53cb\u4e3e\u529e\u54e5\u7279\u5f0f\u7535\u5f71\u4e4b\u591c\uff0c\u70b9\u71c3\u8721\u70db\u548c\u6050\u6016\u88c5\u9970"} +{"id": "5001019", "video_name": "c375da5b-ec7a-5224-8bcf-604011141876", "text": "\u56db\u5468\u706b\u5149\u51b2\u5929\uff0c\u7ea2\u6a59\u4ea4\u9519\uff0c\u70df\u96fe\u7f2d\u7ed5\uff0c\u4e00\u4f4d\u97f3\u4e50\u5bb6\u5f39\u594f\u4f4e\u97f3\u63d0\u7434\uff0c\u5177\u6709\u7535\u5f71\u611f\u7684"} +{"id": "6004379", "video_name": "9bd18384-edba-59ea-8186-d25c444c78ab", "text": "\u6c7d\u8f66\u5728\u4e0d\u65ad\u6d41\u8fc7\u8f66\u573a\u3002"} +{"id": "4004115", "video_name": "8775210a-0518-50f6-99ba-35b77271980c", "text": "\u5e74\u8f7b\u7684\u6770\u91cc\u7c73\u00b7\u6b27\u6587\u5728\u5e73\u677f\u7535\u8111\u4e0a\u6ed1\u52a8\u7167\u7247\u3002"} +{"id": "0004725", "video_name": "0e1e7069-9fa8-534f-b81a-f87c14596709", "text": "\u611f\u8c22\u6536\u770b\uff0c\u8bf7\u4e3a\u6211\u4eec\u7684\u9891\u9053\u70b9\u8d5e\u548c\u8ba2\u9605\u4ee5\u83b7\u53d6\u66f4\u591a\u7c7b\u4f3c\u89c6\u9891\u3002"} +{"id": "6004484", "video_name": "861d2f5d-01d8-5675-9bf3-77f8042177c3", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u5403\u84b8\u5305\u5b50\u3002"} +{"id": "3003519", "video_name": "c0b9c562-f88e-5c2b-abb5-2fa8ba8a3afd", "text": "\u5716\u50cf\uff0c\u8056\u8a95\u8001\u4eba\u5750\u5728\u88ab\u98db\u884c\u99b4\u9e7f\u62c9\u8457\u7684\u96ea\u6a47\u4e0a\u3002"} +{"id": "0005489", "video_name": "1bb66c61-0ec8-5f57-a21f-b40713a7823f", "text": "\u573a\u666f\uff1a\u5728\u6751\u5e84\u7684\u4e2d\u5fc3\u3002\u4eba\u7269\uff1aKena\u4e0e\u540d\u4e3aBeni\u3001Saiya\u7b49\u4eba\u4e92\u52a8\uff0c\u8054\u5408\u5e94\u5bf9\u8150\u8d25\u95ee\u9898\uff0c\u5e76\u5e2e\u52a9Taro\u3002"} +{"id": "0006772", "video_name": "32d076db-3b05-5602-9d9c-3da9cd901ee4", "text": "\u5c55\u793a\u4e39\u5c3c\u9e2d\u5b50\u5728\u6e29\u99a8\u7684\u5de2\u7a74\u6216\u623f\u5c4b\u91cc\uff0c\u4ed6\u63c9\u7740\u773c\u775b\u9192\u6765\u8fce\u63a5\u65b0\u7684\u4e00\u5929\u3002"} +{"id": "1005410", "video_name": "6360ee89-b647-5884-a669-4072d8c0120f", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u4e0a\uff0c\u4e00\u7fa4\u8499\u9762\u5973\u5b50\u5728\u4e00\u4e2a\u90aa\u6559\u4e2d\u70b9\u71c3\u8721\u70db\u3002"} +{"id": "0005316", "video_name": "1882859f-d790-54aa-b9ac-bf0de5f351d7", "text": "Go Pro \u5f71\u7247\uff0cBillie Eilish \u63a2\u7d22\u4ed9\u5883\u5e76\u9047\u89c1\u5404\u79cd\u751f\u7269\uff0c\u5982\u6bdb\u866b\uff0c\u516c\u7235\u592b\u4eba\uff0c\u7ea2\u5fc3\u5973\u738b\uff0c"} +{"id": "1003451", "video_name": "3fec33a2-afd4-5155-afd6-5da365be2def", "text": "\u4e00\u540d\u624b\u6301\u67aa\u652f\u7684\u7537\u5b50\u7ad9\u5728\u4f26\u6566\u7684\u8857\u5934\uff0c\u9ed1\u6697\u7684\u8857\u9053\u4e0a\uff0c\u53ea\u6709\u8def\u706f\u7167\u4eae\u4e86\u4ed6\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "6004102", "video_name": "860b6b8d-2eb0-50af-b34a-15f8fbf552f7", "text": "\u624b\u6301\u624b\u673a\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5b66\u751f\u3002"} +{"id": "1004606", "video_name": "55c08942-694f-503c-a41d-97a3ad715b7b", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u623f\u95f4\u91cc\uff0c\u6210\u5343\u4e0a\u4e07\u7684\u5e74\u8f7b\u5973\u4eba\u8d70\u6765\u8d70\u53bb\uff0c\u5979\u4eec\u7684\u68d5\u8272\u5934\u53d1\u6781\u957f\u3002"} +{"id": "7003163", "video_name": "770a050e-ecea-555d-b979-2478c66b75fc", "text": "\u52a8\u753b\uff0c\u5deb\u5e08\u53ec\u5524\u6076\u9b54\uff0c\u795e\u79d8\u4e3b\u4e49\uff0c\u8bbe\u5b9a\u5728\u9ed1\u6697\u73af\u5883\u4e2d\uff0c4K\uff0c\u9ad8\u6e05\uff0c\u6770\u4f5c\uff0c\u6d41\u7545\u3002"} +{"id": "7002383", "video_name": "4e86159b-e3ca-5360-ac1e-065b03d13ebd", "text": "\u4f20\u8fbe\u4e00\u79cd\u6c38\u6052\u611f\uff0c\u963f\u65af\u52a0\u5fb7\u7684\u7f8e\u4e3d\u548c\u5b81\u9759\u4e0e\u5b87\u5b99\u548c\u8c10\u5171\u5b58\uff0c\u521b\u9020\u4e86\u4e00\u4e2a\u548c\u5e73\u5b81\u9759\u7684"} +{"id": "3005336", "video_name": "24a59381-4d4c-5dd3-aec2-730089292df8", "text": "\u4eba\u5728\u7535\u8111\u4e0a\u5199\u6587\u4ef6\u3002"} +{"id": "0006315", "video_name": "2a8e9e6c-670d-58f2-a623-653c1e53140f", "text": "\u65af\u5766\u00b7\u5e03\u62c9\u514b\u6d77\u5947\u4ee5\u5feb\u8282\u594f\u5b9e\u9a8c\u7535\u5f71\u8457\u540d\u3002"} +{"id": "0004120", "video_name": "038a9787-1dec-5938-852d-be741e027d2b", "text": "\u6050\u6016\u624b\u8868\u5728\u591c\u665a\u884c\u8d70\u3002"} +{"id": "2003201", "video_name": "5705d4b0-6285-53e9-b1fc-08ef9fce9be9", "text": "\u79ef\u84c4\u529b\u91cf\u8d8a\u8fc7\u5c71\u4e18\u3002"} +{"id": "8003760", "video_name": "c3558bc5-5aa8-50ce-ad44-4c654da988fc", "text": "\u4e00\u8f86\u706b\u8f66\u7f13\u7f13\u5730\u6cbf\u7740\u4e00\u6761\u7f8e\u4e3d\u6e56\u6cca\u65c1\u7684\u94c1\u8def\u884c\u9a76\uff0c\u955c\u5934\u7a81\u7136\u653e\u5927\u5230\u7b2c\u4e8c\u8282\u8f66\u53a2\uff0c"} +{"id": "5001796", "video_name": "422a4ffd-c769-5478-bc13-b9d96940c25e", "text": "\u7537\u5b50\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u73af\u5883\u4e2d\u8bfb\u4e00\u5f20\u767d\u7eb8\uff0c\u955c\u5934\u7f13\u7f13\u5411\u4ed6\u79fb\u52a8\uff0c\u51e0\u79d2\u949f\u540e\u751f\u6c14\u5730\u628a\u7eb8\u63c9\u6210"} +{"id": "7002517", "video_name": "e1f00c48-57b2-59fe-a9d8-0b940f8d6c13", "text": "\u4eba\u7fa4\u5728\u97f3\u4e50\u4f1a\u4e0a\u7684\u8fd1\u8ddd\u79bb\u62cd\u6444\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001028", "video_name": "7391ff9b-f253-55fa-8a3e-f2ccc66a646b", "text": "\u94f6\u6cb3\u7cfb\u5728\u5ce1\u8c37\u4e0a\u7684\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "0004275", "video_name": "063dadc3-8648-5d03-bc1f-e3365c7e9cb3", "text": "\u4e00\u5f20\u9759\u6001\u56fe\u7247\u8f6c\u4e3a\u4e00\u6bb5\u5feb\u4e50\u60c5\u4fa3\u5403\u51b0\u6fc0\u51cc\u7684\u89c6\u9891\u3002"} +{"id": "8003794", "video_name": "ca20e017-4709-5a54-8643-4ae04c075169", "text": "5\u6761\u8def\uff0c\u5206\u5c94\u8def\uff0c\u9009\u62e9\u96be\u9898\uff0c\u96be\u4ee5\u9009\u62e9\uff0c\u65e0\u4eba\uff0c\u67d4\u548c\uff0c\u771f\u5b9e\u3002"} +{"id": "6002832", "video_name": "ea41ca0e-83b1-515a-9b1c-57b0b704eca7", "text": "\u4e00\u53ea\u5c0f\u72d7\u5728\u6c99\u6f20\u4e0a\u5954\u8dd1\u3002"} +{"id": "8001964", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "\u5c55\u793a\u4e00\u5f20\u9ed1\u6697\u68ee\u6797\u7684\u56fe\u50cf\uff0c\u68ee\u6797\u4e2d\u9ad8\u8038\u7684\u6811\u6728\u548c\u5929\u7a7a\u4e2d\u5fae\u5f31\u53ef\u89c1\u7684\u6708\u5149\u3002"} +{"id": "2005296", "video_name": "a948cd32-3e15-5a38-a3c6-dfbd5b91861c", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u7537\u6027\u7684\u4e09\u7ef4\u6a21\u578b\uff0c\u4ec5\u5448\u73b0\u5176\u9aa8\u9abc\u7ed3\u6784\u3002\u4ece\u4e00\u4e2a\u4e2d\u6027\u7684\u5c55\u793a\u5f00\u59cb\uff0c\u7136\u540e\u7528\u7ea2\u8272\u7a81\u51fa"} +{"id": "2004254", "video_name": "e47ffef9-6b4b-57a2-9f12-ee9add0a4fb7", "text": "\u4e00\u4e2a\u6751\u5e84\u7684\u4eba\u5728\u821e\u53f0\u4e0a\u8df3\u821e\u3002"} +{"id": "6003725", "video_name": "b164ae78-9f91-5598-9967-ea281ad8ec3c", "text": "\u4e00\u53ea\u5438\u8840\u9b3c\uff0c\u5728\u591c\u665a\u7684\u6708\u5149\u4e0b\uff0c\u7559\u7740\u80a9\u957f\u7684\u5934\u53d1\u548c\u80e1\u987b\uff0c\u7a7f\u7740\u98ce\u8863\uff0c\u624b\u6301\u96ea"} +{"id": "8002980", "video_name": "b249e530-ef88-5cee-86a9-bfc4e5002b8a", "text": "\u65b0\u79d1\u7279\u514b\u65af\u5728\u8d4c\u573a\u559d\u9189\u4e86\uff0c\u56e0\u4e3a\u8ba1\u724c\u88ab\u5f53\u5730\u4eba\u902e\u6355\u4e86\u3002"} +{"id": "2003710", "video_name": "b44a5157-6c28-5c89-813e-f42f07cd0b15", "text": "\u90a3\u4e2a\u4eba\u5e26\u7740\u624b\u63d0\u7bb1\u56de\u5bb6\uff0c\u4e00\u5207\u90fd\u662f\u7528\u52a8\u6f2b\u98ce\u683c\u5b8c\u6210\u7684\u3002"} +{"id": "6003395", "video_name": "2b4b14a7-5e26-5b69-9375-723944b4133a", "text": "\u63cf\u8ff0\u573a\u666f\uff1a\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u827a\u672f\u98ce\u683c\uff0c\u4e00\u4e2a20\u591a\u5c81\u7684\u4e2d\u4e1c\u5e74\u8f7b\u7537\u5b50\u5728\u8bb2\u8bdd\uff0c\u80cc\u666f\u4e2d\u6709\u4eba\u884c\u8d70\uff0c"} +{"id": "3004211", "video_name": "bd4c3ded-6481-510c-b972-cddec311818f", "text": "\u5f53\u949f\u58f0\u6572\u54cd\u5348\u591c\u65f6\uff0c\u4e00\u80a1\u5bd2\u98ce\u5728\u8d70\u5eca\u4e2d\u4f4e\u8bed\uff0c\u5e26\u7740\u88ab\u9057\u5fd8\u7684\u8033\u8bed\u7684\u91cd\u91cf\u3002"} +{"id": "8002076", "video_name": "8d8d0e6a-1b68-57ec-aa6d-934363d191b9", "text": "Ranveer\u662f\u4e00\u4f4d\u5e74\u8f7b\u5f8b\u5e08\uff0c\u4e3a\u516c\u5171\u8fa9\u62a4\u4eba\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "0004931", "video_name": "11ae3cbe-22ae-5cc7-b2b1-d95a8d727b9d", "text": "\u5728\u9ed1\u591c\u91cc\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\uff0c\u6c99\u6ee9\u4e0a\u6709\u7bdd\u706b\uff0c\u6d77\u4e0a\u6709\u6e14\u8239\u3002"} +{"id": "7003407", "video_name": "d57d590c-d789-5c07-ae65-b0e158acb512", "text": "\u5c06\u4ece\u5904\u7406\u8fc7\u7684\u6c61\u6c34\u4e2d\u53d1\u7535\u7684\u8fc7\u7a0b\u53ef\u89c6\u5316\uff0c\u5305\u62ec\u6da1\u8f6e\u673a\u6216\u53d1\u7535\u673a\u7684\u8fd0\u8f6c\u56fe\u50cf\u3002"} +{"id": "7002182", "video_name": "8ace0fa6-316a-5fb9-a4bd-f4c9948f662c", "text": "\u56dbK\u89c6\u9891\u4e2d\u7684\u7f8e\u4eba\u9c7c\u5728\u6d77\u6ee9\u6e38\u6cf3\u3002"} +{"id": "3006938", "video_name": "d0548c32-6c25-5309-a250-c7a983c646b1", "text": "\u4eba\u4eec\u5728\u519c\u6c11\u5e02\u573a\u7b11\u3002"} +{"id": "1005088", "video_name": "5dcddbe1-8ed0-5811-9e80-22b06b449f64", "text": "\u5361\u901a\u5c0f\u7537\u5b69\u548c\u9c7c\u4e00\u8d77\u6f5c\u6c34\u3002"} +{"id": "6003042", "video_name": "95b44ae3-3c9d-53a5-b86b-2859d7804137", "text": "\u4e00\u5f20\u8fdc\u8ddd\u79bb\u62cd\u6444\u7684\u7167\u7247\uff0c\u4e00\u4e2a\u5973\u4eba\u659c\u9760\u5728\u9713\u8679\u706f\u57ce\u5e02\u7684\u5efa\u7b51\u5899\u58c1\u4e0a\uff0c\u7a7f\u7740\u76ae"} +{"id": "7002440", "video_name": "af2093dd-5a93-5536-afc2-dfd83fcee821", "text": "\u624b\u5957\u8986\u76d6\u7684\u53cc\u624b\u5728\u79fb\u52a8\uff0c\u56e0\u4e3a\u4e00\u540d\u58eb\u5175\u5728\u6444\u50cf\u673a\u524d\u53d1\u8a00\u3002"} +{"id": "0006958", "video_name": "35e13afc-83b4-5a7a-8f70-fff2f72544e9", "text": "\u53cb\u4eba4\u88ab\u95ea\u70c1\u7684\u706f\u5149\u6240\u5305\u56f4\uff0c\u903c\u771f\u5730\u62c9\u8fd1\u955c\u5934\uff0c\u4ed6\u4eec\u9ad8\u558a\u7740\u8981\u56e2\u7ed3\u5728\u4e00\u8d77\u3002\u5373\u4f7f\u5728\u6697\u5f71"} +{"id": "8002631", "video_name": "4a49f271-a662-527f-b5b9-32661e2d4335", "text": "\u5927\u800c\u53ef\u6015\u7684\u5145\u6ee1\u7ea2\u8272\u808c\u8089\u7684\u6076\u9b54\u4e0e\u62ff\u7740\u6b66\u5668\u7684\u5929\u4f7f\u5728\u5730\u7403\u4e0a\u8fdb\u884c\u6fc0\u70c8\u7684\u6218\u6597"} +{"id": "3006049", "video_name": "ee4acb6a-51ce-510c-9c43-311eced872e7", "text": "\u5c55\u793a\u7531\u4e24\u540d\u914d\u5907\u6b66\u5668\u7684\u7537\u5b50\u548c\u4e00\u540d\u914d\u5907\u6b66\u5668\u7684\u5973\u5b69\u7ec4\u6210\u7684\u795e\u5947\u5b87\u5b99\u98de\u8239\u7684\u673a\u7ec4\u4eba\u5458\u5982\u4f55\u5fd9"} +{"id": "0005979", "video_name": "2456af2c-fe57-5275-a2aa-f2969e8ec403", "text": "\u76ae\u5361\u4e18\u4ee52D\u52a8\u753b\u98ce\u683c\u653b\u51fb\u590f\u5a01\u5937\u4eba\u3002"} +{"id": "1005357", "video_name": "6287d6d8-b65e-594e-bfff-efe2958bdc9e", "text": "M\u662f\u6708\u5149\u7684\u7f29\u5199\uff0c\u94f6\u767d\u8272\u7684\uff0c\u5982\u6b64\u82cd\u767d\u3002"} +{"id": "1004849", "video_name": "59a07370-6f55-5e3a-b6dc-7faa4d38fd21", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96fe\u832b\u832b\u7684\u6c34\u9762\u4e0a\u86d9\u6cf3\u3002\u5faa\u73af\u52a8\u753b\u3002\u6df1\u6697\u7684\u8272\u8c03\u3002\u975e\u5e38\u6d41\u7545\u7684\u52a8\u753b\u3002"} +{"id": "8001950", "video_name": "cf887c89-56f5-54d3-aff1-d9a43bfa0a5d", "text": "GTA5\uff1a\u6708\u7403\u666f\u89c2\u7684\u5b81\u9759\u3002"} +{"id": "3005872", "video_name": "60f490f5-f614-5ec2-847a-4dfd6117f470", "text": "1981\u5e74\u7684\u9ed1\u6697\u5947\u5e7b\u5192\u9669\u7535\u5f71DVD\u622a\u56fe\uff0c\u666f\u89c2\u3001\u591c\u7a7a\u3001\u66b4\u98ce\u96e8\u3002"} +{"id": "2005408", "video_name": "cace2b4e-9422-5431-9259-2919e4b50894", "text": "\u63a5\u4e0b\u6765\uff0c\u98ce\u7b5d\u5e26\u4ed6\u4eec\u6765\u5230\u4e86\u9b54\u6cd5\u68ee\u6797\uff0c\u5728\u90a3\u91cc\u4ed6\u4eec\u9047\u5230\u4e86\u4e00\u53ea\u540d\u53eb\u5965\u5229\u5f17\u7684\u777f\u667a\u8001"} +{"id": "0005915", "video_name": "2331d0a6-0fce-512c-a1be-5bcaeed16692", "text": "\u5feb\u901f\u5236\u4f5c\u4e00\u68f5\u6811\u4ece\u79cd\u5b50\u957f\u6210\u7684\u52a8\u753b\u3002"} +{"id": "2004914", "video_name": "17d90f2c-3f00-5835-a04f-3efc9eb6c858", "text": "\u53e4\u4ee3\u9c7c\u7c7b\u5316\u77f3\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u88ab\u53d1\u73b0\u3002"} +{"id": "2005749", "video_name": "c286c0ae-ee3a-518e-aded-cfcb975994df", "text": "\u63a2\u7d22\u5b87\u5b99\u7684\u65c5\u7a0b\uff0c\u6709\u884c\u661f\u3001\u6052\u661f\u548c\u5f57\u661f\u7684\u753b\u9762\u3002"} +{"id": "3003659", "video_name": "9b93bc83-b7aa-5701-8b49-50d3a06d6b67", "text": "\u4e00\u5f20\u91d1\u6bdb\u72ac\u5728\u9633\u5149\u660e\u5a9a\u7684\u7fe0\u7eff\u516c\u56ed\u91cc\u73a9\u98de\u76d8\uff0c\u80cc\u666f\u4e2d\u6709\u5b69\u5b50\u4eec\u73a9\u800d\u7684\u753b\u9762"} +{"id": "2007595", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u7a7a\u8361\u7684\u623f\u95f4\u91cc\u5b64\u72ec\u4e14\u975e\u5e38\u56f0\u60d1\u3002"} +{"id": "0004777", "video_name": "0f0b84e1-462e-5b0c-a69e-1e8bb826aa35", "text": "\u6cf0\u59ec\u9675\u88ab\u6df9\u6c34\u8986\u76d6\uff0c\u5fb7\u91cc\u6d2a\u6c34\uff0c\u752870\u6beb\u7c73\u963f\u7eb3\u83ab\u83f2\u514b\u900f\u955c\u62cd\u6444\u7684\u7535\u5f71"} +{"id": "1005160", "video_name": "5f05e313-497c-5ea3-82c3-fc1ee26d316b", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u5947\u8ff9\u548c\u9b54\u529b\u7684\u571f\u5730\u4e0a\uff0c\u6709\u4e00\u4e2a\u53eb\u505a\u201c\u9b54\u6cd5\u82b1\u56ed\u201d\u7684\u5730\u65b9\u3002\u8fd9\u4e2a\u82b1\u56ed\u4e0e\u4f17\u4e0d\u540c"} +{"id": "3004682", "video_name": "05678a55-276a-5d52-ae85-d30ad2ff36f7", "text": "21\u4e2a\u56fd\u5bb6\u7684\u795e\u7947\uff08\u6d1b\u963f\u3001\u5e0c\u814a\u795e\u3001\u5965\u91cc\u6c99\uff09\u56e0\u5171\u540c\u76ee\u6807\u800c\u56e2\u7ed3\u4e00\u81f4\uff0c\u653e\u4e0b\u4e0d\u540c\u795e\u7cfb\u7684"} +{"id": "4002405", "video_name": "2f1a2db7-0f11-5f71-97ed-115d582ffaee", "text": "\u4e00\u6761\u9f99\u5728\u5370\u5ea6\u6559\u5e99\u524d\u97a0\u8eac\u3002"} +{"id": "4004809", "video_name": "17e25863-e75a-5591-a39e-c687ed6da4e2", "text": "\u9999\u8549\u5bcc\u542b\u94be\uff0c\u6709\u52a9\u4e8e\u5fc3\u810f\u5065\u5eb7\u548c\u6d88\u5316\u3002"} +{"id": "1003177", "video_name": "3a746ddc-c707-5637-bd34-8580414b4cb8", "text": "\u9a6c\u56de\u6765\u4e86\uff0c\u5f88\u5e73\u9759\u3002\u9ed1\u6597\u7bf7\u795e\u79d8\u7537\u5b50\u518d\u6b21\u722c\u4e0a\u9a6c\u8f66\uff0c\u7ee7\u7eed\u5411\u672a\u77e5\u7684\u5730\u65b9\u524d\u884c\u3002"} +{"id": "7003626", "video_name": "2521252b-1b66-5ee4-ba4d-b662f7ba7064", "text": "\u591c\u665a\u7684\u68ee\u6797\u6050\u6016\u7535\u5f71\uff0c\u6709\u4e24\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\uff0c\u6bcf\u4e2a\u4eba\u90fd\u62ff\u7740\u9065\u8fdc\u7684\u706f\u7b3c\u3002\n\nSource sentence: I"} +{"id": "8001500", "video_name": "78f59f3e-aec1-55d5-87fa-64d459d253d9", "text": "\u9ad8\u5854\u59c6\u00b7\u7518\u6bd4\u5c14\u7a7f\u7740\u5370\u5ea6\u677f\u7403\u961f\u7684\u7403\u8863\u6253\u677f\u7403\u3002"} +{"id": "8002599", "video_name": "41b1c126-bf11-5f5c-b36f-3b86c9105cd3", "text": "\u8857\u4e0a\u5145\u6ee1\u4e86\u65b0\u5e74\u7684\u6c14\u6c1b\u3002"} +{"id": "3004274", "video_name": "a7a922ee-eeb1-5fca-bd0a-54c1f831b0fd", "text": "\u76ae\u5fae\u8d6b\u5c14\u66fc\u4e0e\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "8002053", "video_name": "ff7d2619-2583-5acf-bc9e-8ba969c810e4", "text": "\u96c4\u4f1f\u58ee\u89c2\u7684\u72ee\u5b50\uff0c\u7f8e\u4e3d\u7684\u9b03\u6bdb\u3002\u4fe1\u606f\uff1aPANORAMIX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7004592", "video_name": "91a952ca-45d8-54b5-ae37-28ca62decab1", "text": "\u5728\u6d77\u6ee9\u4e0a\u4fef\u77b0\u4eba\u7fa4\uff0c\u4fe1\u606f\uff1a\u53d1\u9001\u94b1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006120", "video_name": "703db334-e995-51c7-a54d-0e97738f4136", "text": "\u5e74\u8f7b\u7537\u5b50\u9a7e\u9a76\u7740\u767d\u8272\u76ae\u5361\u8f66\u3002"} +{"id": "8001239", "video_name": "e10734ee-536a-58f4-a02a-43bcde89b56c", "text": "\u795e\u79d8\u7684\u68ee\u6797\u5192\u9669\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5448\u73b0\uff0c\u67d4\u548c\u7684\u6668\u5149\uff0c\u795e\u5947\u7684\u751f\u7269\uff0c\u5e73"} +{"id": "1003369", "video_name": "3e19f617-2e3d-5ab0-8017-3c152d903faa", "text": "\u5fae\u7b11\u7684\u9ed1\u767d\u732b\uff0c\u732b\u5f0f16:9\u3002"} +{"id": "1004853", "video_name": "59b187cb-6edf-5d4f-9a56-be4b769d8019", "text": "\u4e00\u7247\u5b81\u9759\u7965\u548c\u7684\u4e61\u6751\u98ce\u5149\u3002"} +{"id": "3004375", "video_name": "eb740f79-6025-57a9-b268-095bf33ef525", "text": "\u4e00\u4e2a\u5efa\u5728\u5229\u6bd4\u4e9a\u6d77\u5cb8\u4e0a\u53e4\u7f57\u9a6c\u57ce\u5e02\u4e0a\u65b9\u7684\u6d77\u6ee8\u5ea6\u5047\u6751\uff0c\u62e5\u6709\u73b0\u4ee3\u6781\u7b80\u4e3b\u4e49\u5efa\u7b51\u3001\u7f55\u89c1\u7684\u5f02"} +{"id": "7003700", "video_name": "e31a8d02-df0c-5962-a088-91ac755a99bc", "text": "\u4e00\u5e45\u5e73\u9759\u5b81\u548c\u7684\u753b\u9762\uff0c\u67d4\u548c\u6e29\u6696\u7684\u8272\u5f69\u5524\u8d77\u5e73\u9759\u548c\u653e\u677e\u7684\u611f\u89c9\u3002\u8f7b\u67d4\u7684\u6d77\u6d6a\u62cd\u6253"} +{"id": "8002051", "video_name": "b8e1f97e-7f6f-50dc-9120-23eeab301aa5", "text": "\u5973\u4eba\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u4e00\u8d77\uff0c\u5361\u901a\u52a8\u753b4K\u3002"} +{"id": "2003047", "video_name": "e47fa037-ec23-54fa-9b98-a357b9f83002", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u4e00\u53ea\u7070\u718a\u8ddf\u8e2a\u5979\u3002\u9634\u68ee\u7684\u5f71\u5b50\u5728\u6d53\u5bc6\u7684\u68ee\u6797"} +{"id": "0005985", "video_name": "2477a8c2-116d-5299-9912-403ec8b992e0", "text": "\u4e00\u4e2a\u7531\u4e50\u9ad8\u79ef\u6728\u642d\u5efa\u76848\u4f4d\u590d\u53e4\u6e38\u620f\u7ea2\u8272\u7ef4\u4eac\u4eba\u3002"} +{"id": "6003380", "video_name": "23871f1c-b598-5cb1-9415-9f780cacb168", "text": "\u4e00\u4e2a\u5377\u66f2\u9ed1\u53d1\u3001\u7a7f\u767d\u886c\u886b\u7684\u7537\u5b69\u6b63\u5728\u6d77\u6ee9\u4e0a\u548c\u4e00\u4f4d\u745c\u4f3d\u5e08\u548c\u4e00\u4f4d\u5973\u6027\u4e00\u8d77\u56f4\u7740\u7bdd\u706b\u51a5"} +{"id": "2007805", "video_name": "5904c7cb-b71c-58db-8f98-69a32ada2d79", "text": "\u4e09\u4e2a\u7537\u5b69\u7528\u96ea\u666f\u6f2b\u753b\u98ce\u683c\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "8002162", "video_name": "631d8553-28bf-5bb8-949b-ee9c87e81426", "text": "\u4e00\u4f4d\u8d85\u73fe\u5be6\u5973\u795e\u843d\u5165\u61f8\u5d16\u768470\u5e74\u4ee3\u96fb\u5f71\u756b\u9762"} +{"id": "8003529", "video_name": "4b6a4afa-4e8f-5691-bbd7-ce2b407c72b8", "text": "\u4e9e\u6d32\u7248\u5ddd\u666e\u5728\u5403\u51ac\u852d\u529f\u6e6f\u3002"} +{"id": "7002225", "video_name": "b3b8389d-8cab-58e2-8a4e-5f59c126616c", "text": "\u6050\u6016\uff1a\u8c6a\u5b85\u7684\u95e8\u7f13\u7f13\u5730\u53d1\u51fa\u54af\u5431\u58f0\uff0c\u56de\u54cd\u5728\u7a7a\u8361\u7684\u5927\u5385\u91cc\uff0c\u521b\u9020\u51fa\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "8002887", "video_name": "dad0c186-9a9f-598d-b755-af24939c8161", "text": "\u7537\u4eba\u548c\u5973\u4eba\u5728\u57ce\u5e02\u665a\u4e0a\u63a5\u543b\uff0c\u7537\u4eba\u624b\u62ff\u82b1\uff0c4K \u5206\u8fa8\u7387\uff0c\u6dfb\u52a0\u566a\u58f0\uff0cISO 400\uff0c\u8d85\u6e05\u6670\u5ea6\uff0c\u9510\u5316\uff0c"} +{"id": "0005406", "video_name": "1a4a7097-37e8-53b8-b159-6989d903b144", "text": "\u7ea6\u7ff0\u548c\u8389\u838e\u6b63\u5728\u9910\u5385\u5403\u5348\u996d\u3002"} +{"id": "6002578", "video_name": "1d135f02-97c4-59ad-ba1b-f47f3a4febb8", "text": "\u4e0d\u65f6\u5730\u5728\u547c\u5438\u65f6\u52a8\u4e00\u52a8\u8eab\u4f53\u3002"} +{"id": "3004090", "video_name": "df07e644-6ada-5082-bd35-b0b2661aa07c", "text": "\u4e94\u8f86\u8d5b\u8f66\u5728\u8d5b\u9053\u4e0a\u6574\u9f50\u6392\u6210\u4e00\u6392\u3002"} +{"id": "8001296", "video_name": "4bed6dc7-cb78-5b70-b74c-b3ea80ecd38a", "text": "\u9ed1\u6697\u7684\u8eab\u5f71\uff0c\u7a7f\u7740\u98ce\u8863\u548c\u5bbd\u8fb9\u5e3d\uff0c\u773c\u775b\u53d1\u7740\u4eae\u7ea2\u8272\uff0c\u7ad9\u5728\u95e8\u53e3\u7136\u540e\u6d88\u5931\u4e86\u30024K\u3002"} +{"id": "2004222", "video_name": "6265e39e-a144-51c5-9b74-cf59f64fe3e8", "text": "\u4e00\u4e2a\u7528\u53d1\u5149\u51e0\u4f55\u56fe\u6848\u63cf\u7ed8\u7684\u8eab\u4f53\u7684\u62bd\u8c61\u5f62\u72b6\u3002"} +{"id": "4002584", "video_name": "bbf10f9e-dfe8-5af3-8d93-1db2d795142f", "text": "\u9759\u601d\u4f5b\u50cf\uff0c\u7070\u767d\u8272\u77f3\u6599\uff0c\u9c9c\u8273\u7684\u82b1\u5349\u548c\u5e38\u6625\u85e4\u4ea4\u7ec7\uff0c\u5e7b\u60f3\u68ee\u6797\u666f\u89c2\uff0c"} +{"id": "3004301", "video_name": "6f95e922-c5a6-5af1-9e8f-e616b953062d", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u6f02\u6d6e\u7740\u4e00\u9897\u672a\u6765\u4e3b\u4e49\u73bb\u7483\u7403\uff0c\u5e76\u5728\u5176\u4e2d\u8fd0\u884c\u7740\u8ba1\u7b97\u673a\u4ee3\u7801\u3002"} +{"id": "0004236", "video_name": "05905520-2970-54cd-abc8-ecfb3dfa00b8", "text": "\u9e1f\u513f\u5728\u592a\u9633\u4e0b\u98de\u7fd4\u7684\u5361\u901a\u52a8\u753b\uff0c2D\u98de\u884c\u9e1f\u548c\u592a\u9633\u5728\u5929\u7a7a\u5347\u8d77\uff0c\u4e91\u5f69\u5728\u79fb\u52a8\u3002"} +{"id": "1003309", "video_name": "3ce7b891-889c-5f28-9d9a-c95c1b3a48da", "text": "\u5438\u8840\u9b3c\u730e\u4eba\u827a\u672f\u98ce\u683c\u7684\u666f\u89c2\uff0c\u91c7\u7528\u73cd\u73e0\u9ed1\u6697\u51b7\u8272\u8c03\uff0c\u591c\u665a\u6c1b\u56f4\u3002"} +{"id": "6002338", "video_name": "dfcc6a35-36c9-5c93-8879-01490e7e3f49", "text": "Source sentence: \u98de\u884c\u65e0\u4eba\u673a\u62cd\u6444\u592a\u5e73\u6d0b\u6d77\u5cb8\u7684\u666f\u8c61\u3002"} +{"id": "3004844", "video_name": "d872d8c7-8274-5262-9f93-6021a7076949", "text": "\u4f0f\u5c14\u52a0\u6cb3\u7684\u5de5\u4e1a\u548c\u4ea4\u901a\u67a2\u7ebd"} +{"id": "1004706", "video_name": "5763abac-b73b-5ff2-9c4f-091b73119c3b", "text": "\u4e94\u4e2a17\u5c81\u7684\u7537\u5b69\u7ad9\u5728\u5b66\u6821\u5efa\u7b51\u5916\u9762\uff0c\u5176\u4e2d\u4e09\u4e2a\u770b\u7740\u8def\u8fc7\u7684\u5176\u4ed6\u5b66\u751f\uff0c\u4e00\u4e2a\u5728\u770b\u4ed6\u7684\u624b\u673a\uff0c\u53e6\u5916\u4e24\u4e2a\u5728\u4e92\u76f8\u4ea4"} +{"id": "6004163", "video_name": "501271df-e05f-5378-bb70-77baf7db75d6", "text": "\u68d2\u7403\u624b\u6325\u68d2\u7684\u6f2b\u753b\u573a\u666f\uff0c1980\u5e74\u4ee3\u7684\u52a8\u753b\u3002"} +{"id": "3003239", "video_name": "af48cccc-627e-556c-b203-5e23a06e0f17", "text": "\u88ab\u56f0\u5728\u672b\u65e5\u4e16\u754c\u4e2d\u7684\u5f13\u7bad\u624b\u3002"} +{"id": "1004881", "video_name": "5a47420e-14dd-520b-9215-9556f0157ec8", "text": "\u670d\u52a1\u5668Metin2\u7684TLW2\u56fe\u50cf"} +{"id": "3003474", "video_name": "332eec27-1fbd-513b-9f4a-63622dba8950", "text": "\u68ee\u6797\u4e2d\u6709\u8bb8\u591a\u6811\u7684\u8718\u86db\u4fa0"} +{"id": "8001452", "video_name": "5f4cce90-02b8-5492-a9b8-f6eb3afa119e", "text": "\u5362\u514b\u00b7\u5929\u884c\u8005\u5728\u6811\u6797\u4e2d\u5760\u843d\u7684\u52a8\u753b\u77ed\u7247"} +{"id": "1004030", "video_name": "4ab84c16-b973-5641-ae0e-40c4d3184018", "text": "\u4e00\u4f4d\u7c7b\u4f3c\u8759\u8760\u4fa0\u7684\u8d85\u7ea7\u82f1\u96c4\uff0c\u4ee5\u300a\u8759\u8760\u4fa0\uff1a\u52a8\u753b\u7cfb\u5217\u300b\u7684\u98ce\u683c\uff0c\u5750\u5728\u9ad8\u697c\u8fb9"} +{"id": "3005871", "video_name": "db7abc7a-dd46-5707-8184-841ca81b75db", "text": "\u4e00\u4f4d\u529e\u516c\u5ba4\u8001\u677f\u7ad9\u5728\u4ed6\u4eec\u7684\u6c7d\u8f66\u65c1\uff0c\u5e26\u7740\u4e00\u4e1d\u7d27\u8feb\u611f\u6216\u65f6\u95f4\u7ba1\u7406\u7684\u610f\u5473\uff0c\u68c0\u67e5\u4ed6\u4eec\u624b\u8155\u4e0a\u7684\u65f6\u95f4"} +{"id": "1004265", "video_name": "4ef1f10d-e3bc-55e6-a920-594215556f23", "text": "8k\uff0c\u4e00\u53ea\u7528\u53c9\u5b50\u5403\u665a\u9910\u7684\u732b\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "6002322", "video_name": "020b7dc1-66cb-54f0-9936-041beceb8973", "text": "\u5deb\u5e08\u5728\u80cc\u666f\u4e2d\u7684\u57ce\u5821\uff0c\u957f\u5bbd\u6bd49:16\uff0c\u89c6\u5dee\u6548\u679c\u3002"} +{"id": "6004518", "video_name": "4b7abbe1-28d5-5f91-9d6d-b1acbdf77f12", "text": "\u65e5\u5b50\u53d8\u6210\u4e86\u51e0\u5468\uff0c\u7537\u5b69\u628a\u65f6\u95f4\u90fd\u7528\u6765\u7167\u987e\u53d7\u4f24\u7684\u9e1f\u3002"} +{"id": "3005502", "video_name": "ec9c4037-dc77-5ec2-aa98-bc5981fc0100", "text": "\u5973\u4eba\u5728\u6d77\u6ee9\u4e0a\u8dd1\u6b65\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "2004320", "video_name": "414ff507-f580-54ee-98a3-47e261161882", "text": "\u4e00\u4e2a\u5728\u4e1c\u975e\u4e0e\u80ba\u7ed3\u6838\u611f\u67d3\u640f\u6597\u7684\u7537\u4eba\u3002\u5728\u827a\u672f\u8f6e\u5ed3\u4e2d\uff0c\u80ba\u7ed3\u6838\u611f\u67d3\u88ab\u6b7b\u795e\u7684\u526a\u5f71\u6240"} +{"id": "8002673", "video_name": "bf6c15e5-fae5-5ab0-acb9-8f29990ef7a1", "text": "\u4e00\u6761\u9c7c\u5728\u6c34\u4e2d\u98de\u5feb\u5730\u6e38\u52a8\uff0c\u72b9\u5982\u95ea\u7535\u822c\u7684\u52a8\u753b\u7535\u5f71\u753b\u9762\u4e00\u6837\u3002"} +{"id": "2007834", "video_name": "61fb78f4-8b35-5027-8bf2-e647df096969", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u5728\u9ed1\u591c\u91cc\u6253\u5f00\u4e86\u4e00\u5ea7\u95f9\u9b3c\u5bab\u6bbf\u7684\u95e8\u3002 \n\nSource sentence: The cat is sitting on the window sill and enjoying the sun."} +{"id": "8002538", "video_name": "42dcb30d-e7b8-51ba-b739-40024dc081a9", "text": "\u5b89\u5409\u62c9\u6765\u81ea\u300a\u5bc2\u9759\u5cad2\u300b\uff0c\u8389\u5a1c\u6765\u81ea\u300a\u6052\u590f\u300b\u3002"} +{"id": "6003862", "video_name": "182550ab-1c99-5ca8-a099-c4abff5cfbb6", "text": "\u4e00\u4e2a10\u79d2\u949f\u7684\u89c6\u9891\u5faa\u73af\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u8d1d\u90fd\u56e0\u4eba\u8d70\u5411\u67d0\u4e2a\u6838\u5fc3\u3002"} +{"id": "6004727", "video_name": "b696a5a1-88bb-58ff-ac6f-449e209d883b", "text": "5\u79d2\u89c6\u9891\uff0c\u4e00\u4e2a\u74f6\u5b50\u4ece\u684c\u5b50\u4e0a\u6389\u4e0b\u6765\uff0c\u5728\u5730\u4e0a\u788e\u6210\u4e94\u989c\u516d\u8272\u7684\u7cd6\u679c\uff0c\u8d85\u903c\u771f\u7684\u89c6\u9891\uff0c\u9ed1\u6697\u7684\u6c1b"} +{"id": "6003428", "video_name": "dbe51ac9-6fbf-56dd-a4a9-f8c07634497c", "text": "\u5728\u53e6\u4e00\u9897\u661f\u7403\u4e0a\u53d1\u73b0\u4e86\u4e00\u6bb5\u673a\u68b0\u5916\u661f\u4eba\u7684\u5f55\u50cf\u7d20\u6750\u3002"} +{"id": "6002507", "video_name": "6fc2fe68-e843-52b9-bbd1-f9834a27359f", "text": "\u9ed1\u5ba2\u6b63\u5728\u653b\u51fb\u4e00\u4e2a\u65b0\u95fb\u7ad9\u3002\u8fd9\u662f\u4ece\u4e00\u4e2a\u95f4\u8c0d\u6444\u50cf\u5934\u62cd\u6444\u7684\u3002"} +{"id": "2004586", "video_name": "831a8a92-5c8b-543c-a94b-73f9b4549892", "text": "\u4e00\u4f4d\u8003\u53e4\u5b66\u5bb6\u6316\u6398\u51fa\u4e00\u5ea7\u6cd5\u8001\u7684\u9675\u5893\u3002"} +{"id": "4004056", "video_name": "03c9a3b3-90eb-5143-852f-2592afa49eda", "text": "\u5c55\u793a\u4e00\u4e2a\u4f20\u7edf\u5851\u6599\u624b\u673a\u58f3\u7684\u624b\u673a\uff0c5\u79d2\uff0c16:9\u3002"} +{"id": "6004002", "video_name": "9c3246c5-6f0c-5700-838d-400a93df27a6", "text": "\u6211\u56de\u5934\u4e00\u770b\u4ec0\u4e48\u90fd\u6ca1\u6709\u3002\u9ad8\u6e05\u6670\u5ea6\u3001\u9ad8\u7ec6\u8282\u3001\u7535\u5f71\u5316\u3002"} +{"id": "6004168", "video_name": "a523e275-fa22-541c-bbe0-d980bae8fc9e", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u70b8\u5f39\uff0c\u7f8e\u4e3d\u7684\u773c\u775b\uff0c\u5377\u66f2\u7684\u5934\u53d1\uff0c\u6570\u5b57\u63d2\u56fe\uff0c\u6ce2\u6c83\u7279\u98ce\u683c\u3002"} +{"id": "2004960", "video_name": "79e006e6-e40c-5f03-ac01-3a79d71903d5", "text": "\u9c7c\u5728\u4e91\u6735\u4e0a\u6e38\u52a8\uff0c\u4e91\u6735\u8f7b\u8f7b\u5730\u79fb\u52a8\uff0c\u7167\u660e\u6253\u5f00\uff0c\u6d3b\u8dc3\u56fe\u50cf\uff0c\u5fae\u5999\u7684\u52a8\u4f5c\uff0c\u6beb\u4e0d\u51fa\u5947"} +{"id": "0003416", "video_name": "3d4540cd-a4d9-51d8-8308-5bdb7e6e8120", "text": "\u84dd\u8393\u7684\u6e05\u65b0\u5473\u9053\u7206\u53d1\u51fa\u6765\uff0c\u6700\u540e\u4ee5\u96fe\u72b6\u70df\u96fe\u7ed3\u675f\uff0c\u5c31\u50cf\u4e00\u90e84K\u7535\u5f71\u3002"} +{"id": "2005415", "video_name": "2d96bd67-c46c-5ea8-97c7-1d06c5c1fadd", "text": "8\u5343\u5e73\u65b9\u7c73\u73b0\u4ee3\u5316\u529e\u516c\u5ba4\uff0c\u6709\u8bb8\u591a\u5458\u5de5\u548c\u7e41\u5fd9\u7684\u6d3b\u52a8\uff0c\u660e\u4eae\u9633\u5149\uff0c\u8d85\u73b0\u4ee3\u5ba4\u5185\u88c5\u9970\u3002"} +{"id": "2003178", "video_name": "563d54b2-cf17-5765-82eb-d5caf73875ee", "text": "\u9a6c\u5728\u7a7f\u8fc7\u6cb3\u6d41\u65f6\u5954\u8dd1\u7684\u8def\u5f84\u3002"} +{"id": "3004722", "video_name": "8c7c4f54-e054-51ba-9d0d-aedd8a5d67e0", "text": "\u9ad8\u6e053D\u89c6\u9891\uff0c\u62cd\u6444\u4e86\u4e00\u4f4d\u6b65\u884c\u7684\u5370\u5ea6\u5973\u5b69\u4ece\u5de6\u5411\u53f3\u7a7f\u8fc7\u6d77\u6ee9\uff0c\u80cc\u666f\u662f\u9752\u5c71\u7eff\u6811\u3002"} +{"id": "8003194", "video_name": "d7a15978-01d7-5daa-91b4-49f7a4c8b641", "text": "\u4e00\u4e2a\u53e4\u8272\u53e4\u9999\u7684\u6b27\u6d32\u6751\u5e84\uff0c\u6240\u6709\u623f\u5c4b\u90fd\u5feb\u8981\u5012\u584c\u4e86\u3002\u6751\u6c11\u4eec\u611f\u5230\u6050\u60e7\uff0c\u73b0\u5b9e\u800c\u620f"} +{"id": "3006043", "video_name": "65e4cb99-a205-5cb1-916e-be3a936294cf", "text": "\u5728\u4e00\u53ea\u871c\u679c\u4e0a\u8df3\u821e\u7684Fortnite\u76ae\u80a4\u3002"} +{"id": "6002088", "video_name": "86cca894-b97d-5251-8f3c-8079829164e4", "text": "\u7231\u4e3a\u5e74\u8f7b\u89c2\u4f17\u63d2\u56fe\uff0c\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "4003695", "video_name": "a6523b1f-1922-5417-ad43-2751483d58bd", "text": "\u4e00\u6bb5\u4e24\u5206\u949f\u957f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u7537\u4eba\u4e0e\u56db\u540d\u58eb\u5175\u640f\u6597\u7684\u573a\u666f\u3002"} +{"id": "3006623", "video_name": "2553b639-ca94-51e1-99bc-31157ccd7ee0", "text": "\u9a6c\u514b\u897f\u9a6c\u548c\u4ed6\u7684\u540c\u4f34\u89d2\u6597\u58eb\u6210\u4e3a\u9003\u4ea1\u8005\uff0c\u88ab\u5f53\u5c40\u8ffd\u6355\u3002"} +{"id": "2006744", "video_name": "e58923d8-7ba5-52be-b0a3-d343b8853d10", "text": "\u7537\u5b50\u9a7e\u9a76\u5361\u8fea\u62c9\u514b\u7ecf\u5178\u8f66\u578b\uff0c\u76ee\u5149\u6ce8\u89c6\u7740\u6444\u50cf\u5934\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "5001448", "video_name": "c374e95b-6cde-51f6-8c60-fbbe1a786c20", "text": "\u9e7f\u653e\u5c41\u592a\u5927\u529b\uff0c\u628a\u68ee\u6797\u5439\u8d70\u4e86\uff0c\u731b\u70c8\u7684\u76f8\u673a\u9707\u52a8\uff0c\u5feb\u901f\u62c9\u8fdc\u3002"} +{"id": "8002415", "video_name": "3da17758-70aa-58ef-8eb9-63bf40c47b70", "text": "\u5386\u53f2\u4e0a\u7684\u6469\u6d1b\u54e5\u52c7\u58eb\u7387\u9886\u7740\u6469\u6d1b\u54e5\u519b\u961f\u4ece\u6469\u6d1b\u54e5\u524d\u5f80\u8036\u8def\u6492\u51b7\uff0c\u8def\u4e0a"} +{"id": "0005084", "video_name": "1478354f-108d-5a14-9896-34a214e07026", "text": "\u4ed6\u4eec\u9047\u5230\u4e86\u4e00\u4e2a\u9b54\u672f\u5e08\uff0c\u4ed6\u544a\u8bc9\u4ed6\u4eec\u5173\u4e8e\u4ed6\u76843D\u52a8\u753b\u573a\u666f\u7684\u4f19\u4f34\u3002"} +{"id": "2004099", "video_name": "9c9ed35c-9b30-590a-92d3-45433d80cbd7", "text": "\u4e00\u4e2a\u5c0f\u7ec4\u975e\u5e38\u5f00\u5fc3\u7684\u5b69\u5b50\uff0c\u5728\u4ed6\u4eec\u5b66\u6821\u7684\u6559\u5ba4\u91cc\uff0c\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u76f8\u4e92\u62e5\u62b1\u3002"} +{"id": "8001797", "video_name": "dcf0674c-65ed-531a-a48b-0a3256f8d4f9", "text": "\u4e00\u8f86\u4e00\u7ea7\u65b9\u7a0b\u5f0f\u8d5b\u8f66\u5728\u65e5\u843d\u65f6\u9a76\u541166\u53f7\u516c\u8def\u524d\u5f80\u62c9\u65af\u7ef4\u52a0\u65af\u3002"} +{"id": "3004133", "video_name": "9bf3697b-cab1-519c-8777-6c33a2f09fcf", "text": "\u5b87\u5b99\u7684\u5f00\u59cb\u5230\u7ed3\u675f\u3002"} +{"id": "4003059", "video_name": "d4936581-b396-564b-96dc-5826bde288d1", "text": "\u672a\u6765\u4e3b\u4e49\u84b8\u6c7d\u670b\u514b\u98de\u673a\u7a7f\u8d8a\u592a\u7a7a\u98de\u884c\uff0c\u7535\u5f71\u5316\u7684\u56fe\u50cf\uff0c\u52a8\u6001\u706f\u5149\u3002"} +{"id": "3003947", "video_name": "f2da2f49-e247-57f7-a953-c19a900f7d90", "text": "\u91d1\u53d1\u5973\u5b50\u7a7f\u7740\u9ad8\u8ddf\u978b\uff0c\u5728T\u578b\u53f0\u4e0a\u8d70\u4e0b\u6765\u3002"} +{"id": "8002459", "video_name": "7c135e5a-8cb4-5187-bb48-f870f77c0791", "text": "\u5979\u8d70\u8fdb\u53bb\u540e\u53d1\u73b0\u8fd9\u662f\u4e03\u4e2a\u5c0f\u77ee\u4eba\u5728\u9644\u8fd1\u77ff\u5c71\u5de5\u4f5c\u7684\u5bb6\u3002\u611f\u6fc0\u4ed6\u4eec\u7684\u597d\u610f\uff0c\u5979\u51b3\u5b9a\u5728\u4ed6\u4eec"} +{"id": "8003736", "video_name": "22e39f75-677b-54ce-8414-8b7855b96c6e", "text": "\u4e00\u53ea\u6c34\u8c5a\u5750\u5728\u9152\u5427\u7684\u684c\u5b50\u4e0a\u559d\u5564\u9152\uff0c\u903c\u771f\uff0c\u7535\u5f71\u3002"} +{"id": "4003276", "video_name": "d3b85806-8d2c-55ed-8877-ea1d90d81469", "text": "\u521b\u5efa\u4e00\u5f20\u56fe\u50cf\u5c55\u793a\u53e4\u751f\u4ee3\u524d\u5bd2\u6b66\u7eaa\u65f6\u671f\u7684\u4e09\u53f6\u866b\u3002"} +{"id": "4002201", "video_name": "14ba73a5-7bea-5b1a-aea1-bd6f704abd5f", "text": "\u5f53\u8389\u8389\u6df1\u5165\u68ee\u6797\u65f6\uff0c\u5979\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u6761\u95ea\u95ea\u53d1\u5149\u7684\u5c0f\u6eaa\u3002\u6cbf\u7740\u6eaa\u5cb8\uff0c\u4e94\u989c"} +{"id": "0003247", "video_name": "39fc751c-9672-5800-aa41-625809e70f6b", "text": "\u5b89\u4fdd\u6444\u50cf\u5934\u5f55\u4e0b\u7684\u753b\u9762\uff0c\u753b\u8d28\u7cdf\u7cd5\uff0c\u4e00\u540d\u7537\u5b50\u5728\u5348\u591c\u8ffd\u9010\u4e00\u4e2a\u5b69\u5b50\uff0c\u9634\u6697\u3001\u53ef\u6015\u3001\u8be1"} +{"id": "8002707", "video_name": "b0010d44-1b65-5cbe-ab71-47cf138b6835", "text": "\u8001\u9f20\u5728\u68ee\u6797\u91cc\u5feb\u4e50\u5730\u8e66\u8dd1\u7740\uff0c\u56de\u5934\u770b\u770b\u72ee\u5b50\u3002"} +{"id": "3003698", "video_name": "434b1f8e-8e13-59b0-b514-88cc17192f79", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\uff0c\u73b0\u5728\u5df2\u6210\u4e3a\u6210\u529f\u7684\u4f01\u4e1a\u5bb6\uff0c\u7ad9\u5728\u5c4b\u9876\u9732\u53f0\u4e0a\uff0c\u773a\u671b\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u3002"} +{"id": "1003727", "video_name": "44d805ae-0146-573b-8a70-7093e5322cad", "text": "\u6708\u7403\u7740\u9646\u9996\u4f4d\u62c9\u4e01\u7f8e\u6d32\u5b87\u822a\u5458\u3002\u4ed6\u4eec\u7684\u5b87\u822a\u670d\u4e0a\u6ca1\u6709\u7f8e\u56fd\u56fd\u65d7\u3002"} +{"id": "0004311", "video_name": "06e61718-86c4-5a21-8000-d7fa9f09af8f", "text": "\u5c06\u4fe1\u606f\u521b\u9020\u6210Offerro\u6d41\u4f53\u548c\u9ed1\u8272\u80cc\u666f\u7684\u6d88\u606f\uff1a\u666e\u901a\u6280\u672f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006626", "video_name": "79832f79-fedf-5a38-aeeb-5ab02fc14a66", "text": "\u4e24\u53ea\u718a\u62e5\u62b1\u5728\u4e00\u8d77\u7684\u89c6\u9891"} +{"id": "7003147", "video_name": "58c63cd4-ec81-54be-a91e-2aa53a069d92", "text": "\u72ee\u5b50\u9192\u6765\u540e\u60ca\u8bb6\u5730\u53d1\u73b0\u5154\u5b50\u5df2\u7ecf\u5230\u8fbe\u4e86\u7ec8\u70b9\u3002\u4fe1\u606f\uff1a3D\u5361\u901a\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003325", "video_name": "3baa2651-1ea6-5a1c-b6cf-8c4a2b68ed16", "text": "\u5c0f\u7ea2\u5e3d\u6ce8\u610f\u5230\u5979\u5976\u5976\u7684\u773c\u775b\u6ca1\u6709\u7741\u5f00\u3002"} +{"id": "1003105", "video_name": "3930a1bc-107a-527c-8ab5-d4f1d3b5e3b0", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5b87\u822a\u670d\u548c\u6770\u592b\u00b7\u8d1d\u4f50\u65af\u4e00\u8d77\u8d70\u8def\u3002"} +{"id": "5001740", "video_name": "f5364b53-b301-5f90-b332-29c02b806623", "text": "\u591a\u5f69\u7684\u8ff7\u5e7b\u827a\u672f\u7535\u5f71\uff0c\u6709\u9976\u820c\u6b4c\u624bDrake\u5728\u51ac\u5929\u7684\u96ea\u5730\u4e2d\u88ab\u72fc\u5305\u56f4\uff0c\u4ee5\u6781\u8fdc\u7684"} +{"id": "0003604", "video_name": "403fb256-41a0-51d1-ab6a-ed74f911c02b", "text": "\u773c\u6cea\u6ef4\u53d8\u6210\u4e00\u74f6\u6ce2\u65c1\u5a01\u58eb\u5fcc\u3002"} +{"id": "8003223", "video_name": "73f3e0ea-19d1-540f-9c7c-e22673fe814f", "text": "\u4e09\u53ea\u8774\u8776\uff0c\u767d\u8272\u3001\u7ea2\u8272\u548c\u9ec4\u8272\uff0c\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "3003683", "video_name": "5cde2f4c-67d5-5c67-ae39-e5ee8b5d15de", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7535\u8111\u4e0a\u4f7f\u7528Facebook\u3002"} +{"id": "1006897", "video_name": "7e0d21cd-b71a-5790-95a6-e79efc0f8ac5", "text": "\u4e00\u4f4d\u9ed1\u9aee\u7a7f\u9ec3\u8272\u5916\u5957\u7684\u6f02\u4eae\u5973\u58eb\u7684\u8996\u983b"} +{"id": "8003024", "video_name": "601f4fc8-f61b-5877-aa06-06bb006b2608", "text": "\u521b\u4f5c\u4e00\u6bb5\u6d77\u666f\u89c6\u9891\uff0c\u5c31\u50cf\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "1006818", "video_name": "7cb9c5f5-1dc7-54f1-a0ed-287662945ce3", "text": "\u5c0f\u5fc3\u718a\u8c93\u7684\u96fb\u8996\u6a5f\u5668\u5728\u80c3\u88e1\uff0c\u6709\u4eae\u9e97\u7684\u984f\u8272\u548c\u65b0\u6a19\u8a8c\u8cbc\u7d19\u3002"} +{"id": "2006939", "video_name": "2191f33c-a1da-5454-b98b-6e50b0dd9ce5", "text": "\u4e00\u4e2a\u5361\u901a\u53ef\u7231\u7684\u5e03\u5a03\u5a03\u732b\u5728\u706b\u661f\u4e0a\u5f00\u8f66\uff0c\u955c\u5934\u4ece\u8fdc\u666f\u5207\u6362\u5230\u8fd1\u666f\u3002"} +{"id": "0006509", "video_name": "2dc7fb02-a3de-5999-9dbc-42a64cc64229", "text": "\u51c6\u5907\u5e72\u9505\u9e21\u4e1d\u56db\u5ddd\u7092\u9762\u3002"} +{"id": "8003622", "video_name": "198b61d8-1697-58a4-9dac-603e0ce74bdc", "text": "\u5728\u535a\u7269\u9986\u91cc\uff0c\u8bb8\u591a\u4eba\u770b\u7740\u4ed6\u3002"} +{"id": "7004917", "video_name": "9d752443-7e9c-5dc2-bf4a-aae9712b9710", "text": "\u4e00\u8258\u88c5\u6709\u67aa\u7684\u5b87\u5b99\u98de\u8239\u5728\u4e2d\u56fd\u5bfc\u5f39\u7684\u7206\u70b8\u4e2d\u5931\u53bb\u4e86\u4e00\u652f\u67aa\u3002"} +{"id": "6004851", "video_name": "64a4aa2c-8428-5949-8020-a851df23750e", "text": "\u4e00\u95f4\u5385\u91cc\u6ee1\u662f\u5c0f\u77ee\u4eba\uff0c\u5728\u4e00\u5f20\u5de8\u5927\u7684\u684c\u5b50\u4e0a\u4eab\u53d7\u7f8e\u98df\u3002"} +{"id": "0004017", "video_name": "019b7b45-ffbd-5e1f-98ed-72155502cc7c", "text": "\u7535\u5f71\u822c\u7684\uff0c\u4e2d\u666f\uff0c\u7279\u6548\u7535\u5f71\u3002\u4e00\u540d\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u9003\u79bb\u5916\u661f\u4eba\u3002"} +{"id": "1003870", "video_name": "474ba9f5-cb70-51dc-a2f3-e53a8969add5", "text": "\u81f4\u5bc6\u7684\u5237\u7eb9\u949b\u5b57\u4f53\uff0c\u4fe1\u606f\u4e3a\u201c\u563b\u54c8AI\u95ee\u7b54\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\u98ce\u683c\uff09"} +{"id": "3004689", "video_name": "e592fd39-7158-542b-a81d-ed03409ab710", "text": "\u5510\u00b7\u7ef4\u6258\u00b7\u79d1\u83b1\u6602\uff08Don Vito Corleone\uff09\uff0c\u6559\u7236\uff0c\u5728\u4f5b\u7f57\u91cc\u8fbe\u5dde\u5766\u5e15\u5e02\u8857\u5934\u827a\u672f\u98ce\u683c\u4e2d"} +{"id": "0005134", "video_name": "157091be-2442-5e33-82fc-ffea86fa3b2a", "text": "\u4e00\u679a\u6697\u7eff\u8272\u7684\u5916\u661f\u4eba\u80da\u80ce\u88ab\u5305\u88f9\u5728\u4e00\u4e2a\u5f62\u72b6\u50cf\u8150\u70c2\u7684\u751c\u82f9\u679c\u4e00\u6837\u7684\u83cc\u4e1d\u4f53\u4e2d\uff0c\u8fd9"} +{"id": "3006489", "video_name": "e81ce216-f328-53dc-beb4-41d43a4ef33a", "text": "\u521b\u65b0\u548c\u8868\u73b0\u529b\u5341\u8db3\u7684\u6570\u5b57\u827a\u672f\u4f5c\u54c1\uff0c\u5c06\u5404\u79cd\u827a\u672f\u5143\u7d20\u878d\u5408\u5728\u4e00\u8d77\uff0c\u521b\u9020\u51fa\u89c6\u89c9\u4e0a\u60ca\u4eba\u7684\u7ec4"} +{"id": "6003412", "video_name": "4f178645-5559-5320-88fc-45e935081ee9", "text": "\u51ef\u7279\u00b7\u5a01\u5ec9\u59c6\u65af\u7ad9\u5728\u4e00\u4e2a\u821e\u53f0\u4e0a\uff0c\u4e0e\u53f2\u8482\u592b\u00b7\u54c8\u7ef4\u5728\u7535\u89c6\u53f0\u8bbe\u7f6e\u7684\u8282\u76ee\u4e2d\u3002"} +{"id": "3006479", "video_name": "872dd541-3d71-5524-9e35-da7b38d6edfa", "text": "\u592a\u9633\u4ece\u5730\u5e73\u7ebf\u5347\u8d77\uff0c\u7167\u4eae\u6574\u4e2a\u6751\u5e84\uff0c\u6563\u53d1\u51fa\u6e29\u6696\u7684\u91d1\u8272\u5149\u8292\u3002"} +{"id": "2003891", "video_name": "560f0697-582e-54fa-855e-155707cdd6b4", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a34\u5c81\u7684\u7537\u6027\u7ad9\u5728\u6d1e\u7a74\u524d\uff0c\u8eab\u4e0a\u56f4\u7740\u4e00\u6761\u5927\u56f4\u5dfe\uff0c\u5728\u7a7a\u6c14\u4e2d\u7f13\u6162\u79fb\u52a8\u3002\u6444\u50cf"} +{"id": "7002469", "video_name": "793f291e-6ff2-5a01-914a-f4df5cc21e3f", "text": "\u4e00\u53ea\u62ff\u7740\u4e00\u5bf9\u671b\u8fdc\u955c\u7684\u5b89\u5353\u673a\u5668\u4eba\u6b63\u5728\u89c2\u5bdf\u3002"} +{"id": "6002764", "video_name": "4cbd8046-a144-55dd-84a3-06e3815c6fe8", "text": "\u300a\u95ea\u7075\u300b\u7535\u5f71\u4e2d\u7684\u9ec4\u91d1\u623f\u95f4\u573a\u666f\u3002"} +{"id": "2006565", "video_name": "3ca9d80e-8575-58b8-a38d-e710eea7069c", "text": "\u4e00\u4e2a\u7a7f\u7740\u957f\u9ed1\u8272\u5916\u5957\u7684\u7537\u4eba\u5728\u591c\u665a\u8def\u706f\u4e0b\u5199\u5b57\u3002"} +{"id": "2006010", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "\u957f\u77db\u51b2\u5929\u98de\u821e\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u513f\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2005054", "video_name": "11c2ea22-43e9-58c8-ab26-e3afdc29c3f1", "text": "\u8ddf\u8e2a\u6444\u50cf\u673a\u62cd\u6444\u4e00\u67b6\u98de\u673a\u5728\u5f02\u661f\u672a\u6765\u57ce\u5e02\u7684\u5c0f\u5df7\u4e2d\u4ee5\u8d85\u9ad8\u901f\u98de\u884c\u3002"} +{"id": "2004574", "video_name": "486434d1-4235-5627-8a75-9f670bf8164f", "text": "\u4e00\u4e2a\u5927\u578b\u673a\u5668\u4eba\u671d\u672a\u6765\u57ce\u5e02\u8d70\u53bb\u3002"} +{"id": "3003175", "video_name": "6c824325-57f0-5c78-b3c7-dc9da8eda40d", "text": "\u628a\u67f4\u72ac\u653e\u5728POG\u4e0a\u3002"} +{"id": "2005800", "video_name": "799817e2-96d1-5b87-af97-4c660d8d96f5", "text": "\u753b\u9762\u5c55\u73b0\u51fa\u5e7f\u9614\u7684\u6c99\u6f20\u666f\u89c2\uff0c\u773c\u524d\u6240\u53ca\u7686\u4e3a\u6c99\u6f20\u3002\u4e0a\u65b9\u7684\u5929\u7a7a\u662f\u660e\u4eae\u7684\u851a\u84dd\u8272\uff0c\u7a81"} +{"id": "8001193", "video_name": "5cdb9c0e-3c33-50a6-89f2-4f1f77649766", "text": "\u4e00\u53f0\u4ee5Ziggy Stardust\u4e3b\u9898\u4e3a\u7075\u611f\u768470\u5e74\u4ee3\u5f0f\u7535\u5f71\u98ce\u683c\u70b9\u5531\u673a\u3002"} +{"id": "3003881", "video_name": "f0bc8247-71de-5a18-95cd-b562d43d76a5", "text": "\u6253\u5f00\u4e00\u4e2a\u76d2\u5b50\uff0c\u4f7f\u7528\u5f69\u8272\u7ebf\u6761\u65b9\u6cd5\u5806\u53e0\u5728\u53e6\u4e00\u4e2a\u76d2\u5b50\u4e0a\u7ed8\u5236\u3002"} +{"id": "3006717", "video_name": "1a123de3-db29-5add-8ca2-f66862fbc772", "text": "3D\u62fc\u56fe\u9ed1\u8272\u80cc\u666f\u7eb9\u7406\u7684\u80cc\u666f\u52a8\u753b\uff0c\u4e2d\u5fc3\u4f4d\u7f6e\u6709\u4e00\u4e2a\u91d1\u5c5e\u8d28\u5730\u7684\u62fc\u56fe\u5757\u3002\u8c61\u5f81\u9886\u5bfc\u529b\u7684\u6982\u5ff5"} +{"id": "3003232", "video_name": "979ca7a0-e67d-524b-8b16-cfad8b3eb01d", "text": "\u5929\u4f7f\u957f\u4ec0\u4e48\u6837\uff1f"} +{"id": "7003722", "video_name": "0bfdc007-d177-54cd-bb03-4d4aee4c77c2", "text": "\u5730\u7403\u5929\u4f7f\u662f\u4ec0\u4e48\uff1f\u5730\u7403\u5929\u4f7f\u88ab\u8ba4\u4e3a\u662f\u9009\u62e9\u5728\u5730\u7403\u4e0a\u6295\u751f\uff0c\u5177\u6709\u7279\u6b8a\u76ee\u7684\u548c\u4f7f\u547d\u7684\u4eba\u3002\u4ed6\u4eec\u62e5\u6709\u9ad8\u5ea6\u7684\u7cbe"} +{"id": "7004640", "video_name": "ad01041d-5ba7-5c88-a1f5-3c37341591f7", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u88ab\u6fc0\u5149\u675f\u51fb\u4e2d\uff0c16\u6beb\u7c73\uff0c1930\u5e74\u7684\u98ce\u683c\uff0c\u9ed1\u767d\u3002"} +{"id": "3005508", "video_name": "3d6c9c1e-4993-53df-a834-787455083193", "text": "\u53ef\u7231\u7684\u5c0f\u732b\uff0c\u773c\u775b\u989c\u8272\u4e0d\u540c\uff0c\u767d\u8272\u62ff\u7834\u4ed1\u3002 \n\nSource sentence: I am learning Chinese language with the help of a tutor. \n\u6211\u6b63\u5728\u627e"} +{"id": "8002729", "video_name": "80bab1f7-b8bd-57f7-8122-a67e8f536a2a", "text": "\u4e00\u5f20\u663e\u793a\u6a2a\u8de83000\u82f1\u91cc\u8def\u7ebf\u7684\u9053\u8def\u5730\u56fe\uff0c\u5177\u6709\u903c\u771f\u7167\u7247\u6548\u679c\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "2007357", "video_name": "2f36ac8d-0d7d-5eae-8e45-d464f5484b42", "text": "translation: \u8718\u86db\u4eba\u5728\u5df4\u57fa\u65af\u5766\u57ce\u5e02\u5361\u62c9\u5947\u8361\u79cb\u5343\u3002\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0003733", "video_name": "42875003-1010-5789-9638-c390970f4fd7", "text": "\u5728\u5929\u5802\u822c\u7684\u6d77\u6ee9\u4e0a\uff0c\u4e00\u4e2a\u68d5\u6988\u6811\u7684\u89c6\u9891\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u98ce\u683c\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "8001069", "video_name": "e6cca30f-e4d1-5592-8578-861b672ef059", "text": "\u65e5\u843d\u548c10\u79d2\u949f\u7684\u9053\u8def"} +{"id": "2004531", "video_name": "c99220b3-d0bf-5e67-9bc6-f379a65f57b7", "text": "70\u5e74\u4ee3\u7684\u4e1c\u6b27\u6050\u6016\u7535\u5f71\uff0c\u5c1d\u8bd5\u4f7f\u7528\u5e76\u7f6e\u548c\u610f\u5916\u7684\u8f6c\u6362\u6765\u521b\u9020\u4e0d\u8fde\u8d2f\u7684\u53d9\u8ff0\uff0c\u4e3a\u89e3\u91ca\u7559\u4e0b\u4f59\u5730\u3002\u6a21"} +{"id": "6004486", "video_name": "1c804fcf-9a38-5beb-b60c-defb9e72a908", "text": "\u57ce\u5e02\u5929\u9645\u7ebf\u3002\u4e91\u5f69\u3001\u9e1f\u513f\u548c\u9713\u8679\u706f\u3002\u4fe1\u606f\uff1aGualk\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004716", "video_name": "512ce4ab-1720-5326-b272-5d503cc08219", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5e86\u795d\u4e2d\u56fd\u65b0\u5e74\u3002"} +{"id": "6003046", "video_name": "dd2dbcee-336f-5d06-ae4c-f06c9bca02bf", "text": "\u63cf\u7ed8\u4e00\u4e2a\u534a\u673a\u68b0\u4eba\u7684\u8096\u50cf\uff0c\u5934\u90e8\u7f13\u6162\u8f6c\u52a8\uff0c\u773c\u775b\u95ea\u8000\u7740\u660e\u4eae\u7684\u84dd\u8272\u3002"} +{"id": "0005495", "video_name": "1bd56c40-840c-5ca1-9d22-24fb44de6355", "text": "\u7f8e\u4e3d\u7684\u65e5\u672c\u5973\u4eba\u62cd\u624b\u3002"} +{"id": "6003632", "video_name": "12ca6346-c747-565f-a2d1-04ca7d5194de", "text": "\u7537\u4eba\u5728\u667a\u5229\u74e6\u723e\u5e15\u840a\u7d22\u5e02\u5954\u8dd1\uff0c\u8dd1\u4e864\u516c\u91cc\u3002"} +{"id": "4002859", "video_name": "7deca2d7-6647-5eff-b6d5-6bc8c0db408e", "text": "\u4eba\u7c7b\u548c\u72fc\u4e4b\u95f4\u7684\u6c99\u6f20\u6218\u4e89\u3002\n\nSource sentence: The hotel room was spacious and clean. \n\n\u9152\u5e97\u623f\u95f4\u5bbd\u655e\u5e72\u51c0\u3002"} +{"id": "8001440", "video_name": "05f16f68-3aeb-52f0-8b4f-f97ebfd1e732", "text": "\u5bb6\u957f\u5728\u9ed1\u6697\u4e2d\u642d\u5efa\u5927\u578b\u4e07\u5723\u8282\u5e10\u7bf7\u3002"} +{"id": "0005000", "video_name": "13090dac-5b63-5f02-9c07-592746b3be35", "text": "\u592a\u7a7a\u8230\u961f\u6b63\u5728\u653b\u6253\u8fd9\u4e2a\u661f\u7403\u3002"} +{"id": "8002482", "video_name": "82df7bbf-4b62-53e9-aa6a-2b77170a4a8c", "text": "\u5973\u5b69\u5b50\u7684\u8138\u770b\u8d77\u6765\u5f88\u56f0\u60d1\uff0c\u63a5\u7740\u5fae\u7b11\u3001\u7728\u773c\uff0c\u5448\u73b0\u7535\u5f71\u611f\u89c6\u89c9\u6548\u679c\uff0c\u955c\u5934\u5411\u5916\u62c9\u8fdc\uff0c"} +{"id": "1005304", "video_name": "61793771-a8cd-573c-b042-210e293aaa13", "text": "\u51e4\u51f0\u9e1f\u662f\u529b\u91cf\u548c\u4fdd\u62a4\u7684\u8c61\u5f81\uff0c\u5b83\u5728\u4e0a\u7a7a\u98de\u7fd4\uff0c\u533b\u7597\u4fdd\u5065\u5de5\u4f5c\u8005\u805a\u96c6\u5728\u5b83\u5468\u56f4\uff0c"} +{"id": "7003069", "video_name": "a972a329-dc31-578e-bc92-b026f942cf3e", "text": "\u9e70\u6234\u7740\u773c\u955c\u5728\u672a\u6765\u4e3b\u4e49\u6559\u5ba4\u91cc\u8bb2\u8bfe\u3002"} +{"id": "1004303", "video_name": "4f8b7d83-7d39-578f-b05b-aa7344fc3380", "text": "\u4e24\u652f\u5f3a\u5927\u7684\u5929\u4f7f\u519b\u961f\u5728\u5929\u7a7a\u4e2d\u7528\u706b\u5251\u548c\u95ea\u7535\u67aa\u6218\u6597\u7684\u9ad8\u5e7b\u60f3\u3001\u7535\u5f71\u573a\u666f\u3002"} +{"id": "4003882", "video_name": "e42e6087-4832-570d-b0ef-4ff76776fde5", "text": "\u661f\u661f\u5e26\u7740\u738b\u51a0\uff0c\u7d2b\u8272\u4e0e\u91d1\u8272\u878d\u4e3a\u4e00\u4f53\u3002"} +{"id": "2003606", "video_name": "84eb6cc5-5dab-50bd-aef6-28a521ec6a5e", "text": "\u62c9\u74e6\u7eb3\u5341\u4e2a\u5934\u6e05\u6670\u53ef\u89c1\uff0c\u95ea\u7535\u5728\u5929\u7a7a\u4e2d\u95ea\u70c1\u3002"} +{"id": "2005951", "video_name": "502a0417-8e90-5357-a63a-eb48de74c599", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u95ea\u7535\u7684\u7537\u4eba\u6b63\u5728\u7f8e\u4e3d\u7684\u82b1\u56ed\u91cc\u8d70\u7740\u3002"} +{"id": "2007148", "video_name": "494918d0-9c30-5928-932e-fec21d88a1f9", "text": "\u7ad9\u5728\u5c4b\u9876\u4e0a\u80cc\u5bf9\u7740\u955c\u5934\u7684\u90a3\u4e2a\u4eba\u3002"} +{"id": "2003068", "video_name": "9b4c8b60-3fc2-57e5-a17c-0c31b6562112", "text": "\u4e54\u00b7\u62dc\u767b\u5149\u7740\u4e0a\u8eab\u5728\u975e\u6d32\u8ff7\u5931\u4e86\u3002"} +{"id": "1006603", "video_name": "78fa00ca-4528-50dc-a6df-aa3a9697148f", "text": "\u4e2d\u4e16\u7eaa\u65f6\u671f\uff0c\u4e00\u5c01\u4fe1\u4e0a\u6709\u8840\u8ff9\uff0c\u7eb8\u5f20\u548c\u58a8\u6c34\u4e0a\u9762\u90fd\u6709\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "8003890", "video_name": "1f9430bc-48d9-5490-a722-4aa8918077a8", "text": "\u5fb7\u9c81\u4f0a\u54e8\u5175\u624b\u6301\u6b66\u5668\uff0c\u80cc\u7740\u4e1c\u897f\uff0c\u6cbf\u7740\u68ee\u6797\u4e2d\u7684\u5c0f\u8def\u8d70\u5411\u6211\u4eec\uff0c\u80cc\u540e\u662f\u6ee1\u6708\u3002"} +{"id": "4004964", "video_name": "e1457f28-b5df-5426-bbd9-59e287e42715", "text": "4K\u5206\u8fa8\u7387\u4e0b\uff0c\u7f8e\u4e3d\u7684\u6cd5\u56fd\u5973\u5b69\u7a7f\u7740\u4e1d\u8d28\u88d9\u5b50\u5750\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "6002785", "video_name": "76ba9785-3c80-540c-9ab2-d15962a0bccf", "text": "\u4e00\u4e2a\u738b\u5b50\u548c\u4e00\u4e2a\u516c\u4e3b\u5728\u6e29\u6696\u7684\u6c14\u6c1b\u4e2d\u3002"} +{"id": "1006710", "video_name": "7af6ad9d-2b29-5a90-a734-ecdd11f2ffdd", "text": "\u7279\u6717\u666e\u8df3\u821e\uff0c\u4ed6\u7684\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u7535\u5f71\u822c\u7684\u98ce\u683c\uff0c\u65e5\u843d\u3002"} +{"id": "3005705", "video_name": "8922414f-cf81-570b-ac40-975bdeb9f8f0", "text": "\u4e00\u53ea\u732b\u5728\u96ea\u4e2d\u3002 \u9644\u4ef61\u3002"} +{"id": "7003990", "video_name": "50a2853e-ab80-5454-bae9-c729a091bc46", "text": "\u5b87\u822a\u5458\u98d8\u6d6e\u5728\u672a\u77e5\u661f\u7403\u4e0a\u65b9\uff0c\u5a40\u5a1c\u591a\u59ff\uff0c\u7fe0\u7eff\u7684\u5916\u661f\u690d\u7269\u626d\u66f2\u5411\u7740\u6de1\u7d2b"} +{"id": "3004240", "video_name": "ccea894d-e93c-57b3-be19-4f849f7e1671", "text": "\u5728\u6930\u5b50\u68d5\u6988\u6811\u4e1b\u95f4\u884c\u8d70\u7684\u5de8\u578b\u6218\u4e89\u673a\u5668\uff0c\u7ea2\u8272\u7684\u65e5\u843d\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0004076", "video_name": "02d1fb70-3025-5a7c-8d8f-645f28531b21", "text": "\u65c5\u884c\u8005\u8ba4\u771f\u5730\u6536\u62fe\u7740\u4e00\u4e2a\u9648\u65e7\u7684\u80cc\u5305\uff0c\u5c06\u7269\u54c1\u94fa\u5728\u5e8a\u4e0a\u6216\u684c\u5b50\u4e0a\uff0c\u8ba9\u80cc\u5305\u53d8\u4e3a\u4e00\u4e2a\u6545\u4e8b\u7684\u5c55"} +{"id": "1006151", "video_name": "70ac5413-8fd5-5749-890b-e1e56c849db1", "text": "\u84dd\u8272\u5899\u9762\u80cc\u666f \u9644\u4ef61"} +{"id": "3003382", "video_name": "83c31f2d-e2ce-598e-bddc-ed7a1c39040d", "text": "\u8fd9\u5f88\u5b8c\u7f8e\uff0c\u80cc\u666f\u6d88\u5931\u4e86\uff0c\u624b\u4e2d\u62ff\u7740\u9065\u63a7\u5668\u548c\u5149\u5251\u3002"} +{"id": "3004731", "video_name": "a720805d-67a8-57ea-bdc4-aaf06e74ccce", "text": "\u53d1\u751f\u4e86\u53ef\u6015\u4e8b\u60c5\u7684\u57ce\u5e02"} +{"id": "0005393", "video_name": "19fdbf21-71fb-5e17-9e26-6471295b4092", "text": "\u5723\u7ecf\u4e2d\u7684\u6469\u897f\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u7a7f\u8d8a\u7ea2\u6d77\u3002"} +{"id": "6003334", "video_name": "15abe2a0-3791-5f9a-afa8-5e43862d8375", "text": "\u52a8\u6f2b\u5973\u5b69\u70ab\u8000\u5979\u7684\u811a"} +{"id": "2006310", "video_name": "2e631c5f-663c-5700-979e-3ac394e59d05", "text": "\u9521\u514b\u6559\u5973\u5b50\u5408\u5341\u7948\u7977\u548c\u51a5\u60f3\uff0c\u5468\u56f4\u662f\u6811\u3001\u8349\u3001\u5929\u5802\u4e4b\u5149\uff0c\u6c1b\u56f4\u53f2\u8bd7\u822c\u7684\u7535\u5f71"} +{"id": "8001211", "video_name": "2da96805-d278-5956-8fda-0e7feaebe1be", "text": "\u706b\u661f\u4e0a\u6709\u4e00\u4e2a\u6b96\u6c11\u5730\u548c\u5e2e\u52a9\u4eba\u7c7b\u7684\u673a\u5668\u4eba\u3002"} +{"id": "6002951", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "\u4e00\u4e2a\u56fe\u50cf\u663e\u793a\u4e00\u4e2a\u7c7b\u4f3c\u8c37\u6b4c\u6807\u5fd7\u7684\u6807\u5fd7\u3002"} +{"id": "8002910", "video_name": "08dd3685-3a08-5e97-85d0-734a69889434", "text": "\u9ad8\u6e05\u58c1\u7eb8\uff1a\u7ea2\u7eff\u82b1\u5349\u80cc\u666f\u8bbe\u8ba1\uff0c\u706b\u7130\uff0c\u6548\u679c\uff0c\u690d\u7269\uff0c\u95ea\u8000"} +{"id": "5001625", "video_name": "ee1806a3-704b-59b1-bc9c-2b1de2b86734", "text": "\u63cf\u8ff0\u4e00\u4e2a\u5947\u5e7b\u3001\u6b22\u5e86\u7684\u5c0f\u9547\uff0c\u4ecb\u7ecd\u4e3b\u89d2\u3002"} +{"id": "2007644", "video_name": "0f239d63-c49e-53b0-a396-f6d6e3b646fd", "text": "\u745e\u514b\u548c\u83ab\u8482\uff0c\u62e5\u6709\u672a\u6765\u4e3b\u4e49\u7684\u98ce\u683c\u3002"} +{"id": "2007314", "video_name": "150e7a32-050f-5f7f-9781-ebf543636e22", "text": "\u4e00\u53f0\u76f8\u673a\u5728\u4e00\u95f4\u6216\u662f\u4e00\u7cfb\u5217\u6709\u7740\u6b3a\u9a97\u6027\u753b\u4f5c\u7684\u623f\u95f4\u5185\u8fdb\u884c360\u5ea6\u65cb\u8f6c\uff0c\u8fd9\u4e2a\u57ce\u5821\u5b8c\u5168\u7531\u94bb\u77f3\u5efa\u9020\uff0c"} +{"id": "6003040", "video_name": "fa69b7d3-8155-5d5a-b4a5-6f68dfdb4a37", "text": "\u4e00\u53ea\u8ff7\u5931\u5728\u4e1b\u6797\u4e2d\u7684\u5c0f\u72ee\u5b50"} +{"id": "5001804", "video_name": "4cb80a3d-c9f1-5e75-b619-36301d1a0acf", "text": "\u6811\u7684\u5de6\u4fa7\u6709\u4e09\u53ea\u9e3d\u5b50\u3002"} +{"id": "2004906", "video_name": "e7bcb821-0179-5730-87ef-2af00b822464", "text": "\u6050\u6016\u5c4b\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\uff0c29\uff1a9\u3002"} +{"id": "6004646", "video_name": "0644e0f3-1c3d-5b9a-bae1-47a6c1ce7fed", "text": "\u5730\u9762\u6c34\u5e73\u7684\u955c\u5934\uff0c8K\uff0c\u5973\u738b\u5728\u5979\u7684\u57ce\u5821\u91cc\u884c\u8d70\u3002"} +{"id": "0004714", "video_name": "0ddaa4b7-cf86-5ef6-bcf4-1f6767f83a74", "text": "\u98de\u884c\u8b66\u5bdf\u7d27\u8ffd\u4e00\u8f86\u65b0\u7684\u9999\u8349\u8272\u6c7d\u8f66\u3002"} +{"id": "2007060", "video_name": "69385afb-b179-5e35-a808-ee8342fd6f73", "text": "\u5973\u5b69\u8d70\u5728\u8def\u4e0a\uff0c\u6b63\u9762\u89c6\u56fe\u3002"} +{"id": "3003768", "video_name": "74bcc8fc-96ff-5335-b234-68b6d380e8f9", "text": "\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u773c\u955c\u548c\u9ed1\u8272\u670d\u88c5\u3001\u5934\u53d1\u4e00\u534a\u7ea2\u4e00\u534a\u9ec4\u7684\u7537\u4eba\u6b63\u5728\u6b65\u884c\u4e8e\u672a\u6765\u57ce\u5e02\u4e2d\uff0c\u4fa7\u9762\u7684\u955c\u5934\u663e\u793a"} +{"id": "6003322", "video_name": "44b63d6b-5043-52f9-901a-36686de6b5db", "text": "\u5728\u5723\u8bde\u524d\u5915\uff0c\u6709\u4e00\u53ea\u72d0\u72f8\u7a7f\u8fc7\u7ebd\u7ea6\u7684\u8857\u9053\u3002"} +{"id": "2005981", "video_name": "e7bfb0de-5c42-5a6d-b552-b40f7c1bb258", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u5b69\u5728\u8def\u8fb9\u62bd\u70df\u3002 \n\nSource sentence: I am currently studying Chinese in Beijing. \n\u6211\u76ee\u524d\u6b63\u5728\u5317\u4eac\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "7002008", "video_name": "66f4fd37-54b1-5a98-97dc-30181d742b85", "text": "\u5728\u5c71\u9876\u568e\u53eb\u3002\u4fe1\u606f\uff1a\u84dd\u773c\u72fc\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8001183", "video_name": "dd140409-834e-53be-ab7f-ffc74aac235d", "text": "\u5f53\u888b\u5b50\u591f\u91cd\u7684\u65f6\u5019\uff0c"} +{"id": "8003627", "video_name": "ebee5501-0b63-5b23-aa9a-57f7d1a33400", "text": "\u8349\u88ab\u5438\u98df\uff0c\u68b5\u9ad8\u753b\u7684\u3002"} +{"id": "8001300", "video_name": "847b3150-525a-50da-b9c0-3d39ced6c693", "text": "\u540e\u53f0\u5f55\u97f3\u5ba4\u7684\u573a\u666f\uff0c\u4f7f\u7528VHS\u6444\u50cf\u673a\u5f55\u5236\u3002"} +{"id": "4002914", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "\u8d85\u5199\u5b9e\u7684\u91d1\u53d1\u5e74\u8f7b\u5973\u5b50\uff0c\u5bf9\u7740\u955c\u5934\u5fae\u7b11\uff0c\u4e3a\u4e2a\u4eba\u8d44\u6599\u7167\u7247\u62cd\u6444\u3002"} +{"id": "3003832", "video_name": "1384e3ce-7c8f-56e4-8698-520fcd3443dd", "text": "\u8bf7\u5c06\u4ee5\u4e0b\u82f1\u6587\u53e5\u5b50\u7ffb\u8bd1\u6210\u4e2d\u6587\uff0c\u5c3d\u53ef\u80fd\u6e05\u6670\u548c\u5408\u7406\u3002\u8bf7\u4ec5\u8f93\u51fa\u7ffb\u8bd1\uff0c\u4e0d\u5305\u62ec\u539f\u53e5\u548c\u4efb\u4f55\u524d\u7f00"} +{"id": "7004937", "video_name": "8306d510-929b-57e8-8daa-8dad4ab3f7ea", "text": "\u4e00\u7fa4\u7f8a\u5728\u8c37\u4ed3\u5730\u677f\u4e0a\u7761\u89c9\uff0c\u5468\u56f4\u6709\u5e72\u8349\u3002\u5728\u5b83\u4eec\u5934\u9876\u4e0a\u6709\u68a6\u6ce1\u6ce1\uff0c\u5176\u4e2d\u4e00\u4e2a\u68a6"} +{"id": "3003932", "video_name": "988ee5b1-00a7-5fb4-b91a-fbba3fbc3018", "text": "\u60f3\u8c61\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u4e00\u5339\u597d\u5947\u7684\u5e74\u8f7b\u9a6c\u9ea6\u514b\u65af\u548c\u683c\u857e\u897f\u4e00\u8d77\u5c0f\u8dd1\u7740\uff0c"} +{"id": "6004573", "video_name": "84136c8f-98d7-52a5-9c78-f6c078faf186", "text": "\u6a21\u62df\u771f\u5b9e\u7684\u6c7d\u6cb9\u7206\u70b8\u5728\u6c7d\u8f66\u5de5\u5382\u5916\u548c\u53e4\u4ee3\u9f99\u5728\u4e0b\u96e8\u5929\u5f15\u71c3\u516c\u5171\u6c7d\u8f66\u3002"} +{"id": "2006550", "video_name": "29b836c1-bd2f-501a-bf70-e2e78039297a", "text": "\u533b\u7597\u4ea7\u54c1\u548c\u6559\u80b2\u6750\u6599\u7684\u6350\u8d60\u7bb1"} +{"id": "2005598", "video_name": "4aec1fb7-83c9-5fc3-b913-5f59b23321f3", "text": "\u4e00\u5c0a\u9ec4\u91d1\u592a\u6781\u516b\u5366\u56fe\u50cf\u3002"} +{"id": "2007536", "video_name": "c942b273-3de1-510d-840e-016268c887e0", "text": "\u8be6\u7ec6\u63cf\u8ff0\u6c7d\u8f66\u8d5b\u8f66 BMW m5 \u5728\u8d5b\u9053\u4e0a\u9a7e\u9a76\uff0c\u6444\u50cf\u5934\u524d\u7f6e\uff0c\u68ee\u6797\uff0c4k\uff0c\u8d85\u9ad8\u6e05\uff0c\u771f\u5b9e\u3002"} +{"id": "4002365", "video_name": "cff1665f-a336-5fc2-a57d-2428efb821f8", "text": "\u7528\u6f2b\u753b\u98ce\u683c\u753b\u51fa\u6765\uff1a\u4e00\u53ea\u8001\u9f20\u5728\u5954\u8dd1\uff0c\u627e\u5230\u4e86\u4e00\u4e2a\u6570\u5b57\u201c1\u201d\u7684\u6728\u5757\u3002"} +{"id": "6002188", "video_name": "0d8486ec-8424-5d26-a8f0-01cbf7d799a6", "text": "\u5fae\u5c0f\u7684\u4eba\u5728\u65f6\u949f\u5468\u56f4\u8d70\u52a8\u3002"} +{"id": "8001445", "video_name": "e1f102bb-df9e-55f7-96b4-c84844e8cdca", "text": "\u5361\u901a\u52a8\u753b\u5b89\u4fdd\u4eba\u5458\u7a7f\u7740\u84dd\u8272\u886c\u886b\u3002"} +{"id": "2004156", "video_name": "58be0df1-092a-55c8-9693-361404d27a42", "text": "16:9 \u6bd4\u4f8b\uff0c1080p \u5206\u8fa8\u7387\uff0c\u4e00\u652f\u56e2\u961f\u6b63\u5728\u767d\u677f\u524d\u8ba8\u8bba\u5546\u4e1a\u8ba1\u5212\u3002"} +{"id": "2003899", "video_name": "086ef0b9-3ac8-50f8-8654-33e899ee0747", "text": "Chinese translation: \u7b2c\u4e00\u6b21\u9047\u89c1\u4f60\u751f\u547d\u4e2d\u7684\u7231\u4eba\u3002"} +{"id": "8003435", "video_name": "4e0f186e-8758-55a7-8b8c-9483b5dddd38", "text": "\u66fe\u7ecf\u6709\u4e00\u4e2a\u548c\u5584\u7684\u8001\u4eba\u4f4f\u5728\u4e00\u4e2a\u6751\u5e84\u91cc\u3002"} +{"id": "2006316", "video_name": "75ae463f-e530-5edc-8abc-0b91e8ccdcac", "text": "\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5f62\u8c61\u3002"} +{"id": "8001386", "video_name": "74100938-dffa-5e9d-b7cc-886785054344", "text": "\u4e00\u4e2a\u77ed\u768430\u79d2\u89c6\u9891\u6f14\u793a\u5982\u4f55\u4f7f\u7528\u5e26\u67093D\u56fe\u5f62\u7684\u8ba1\u7b97\u673a\u9f20\u6807\u70b9\u51fb\u3002 \n\nSource sentence: The company's profits have increased by 20% this quarter compared to last"} +{"id": "4003613", "video_name": "5f2f212d-07e2-5651-bbda-2831b0e17218", "text": "\u7cbe\u795e\u5206\u88c2\u7684\u7ed8\u753b\uff0c\u63cf\u7ed8\u51fa\u90aa\u6076\u7684\u87b3\u8782\u751f\u7269\uff0c\u5448\u73b0\u788e\u7247\u5316\u7684\u7ea2\u8272\u9694\u79bb\uff0c\u626d"} +{"id": "2006964", "video_name": "9d69f048-e799-57f3-8f7c-b65b0dbde23e", "text": "\u5728\u51b0\u5c71\u548c\u68ee\u6797\u4e4b\u95f4\u7684\u6e56\u4e0a\uff0c\u4e00\u8258\u8239\u4e0a\u7684\u7537\u4eba\u9759\u6b62\u5728\u5fae\u5fae\u6ce2\u52a8\u7684\u6c34\u9762\u4e0a\uff0c\u8fd9\u662f\u4e00\u90e8\u98ce\u683c\u7c7b\u4f3c\u4e8e"} +{"id": "6003371", "video_name": "f94fc03f-e376-5d5e-bd34-4f1698ab29b6", "text": "3D\u903c\u771f\u7684\u73b0\u5b9e\u662f\u4e00\u9762\u955c\u5b50\uff0cUFO\u3001\u6d41\u661f\u3001\u592a\u7a7a\u827a\u5993\u3001\u57ce\u5e02\u95e8\u6237\u3001\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u672a\u6765Betamax\u3002"} +{"id": "2004340", "video_name": "1609b2a0-ca51-5ce7-ba64-aa10db524e8f", "text": "\u7a81\u7136\u5192\u51fa\u6ce1\u6ce1\uff0c\u770b\u8d77\u6765\u5f88\u60ca\u8bb6\u3002\u9644\u4ef61\u3002"} +{"id": "0006601", "video_name": "2f5f68ab-1c75-5bd1-b9de-9de8318fd69c", "text": "\u5723\u8bde\u8282\uff0c\u795e\u5947\u7684\u5c0f\u9547\uff0c\u4eba\u4eec\u8d70\u8def\uff0c\u7f8e\u4e3d\u7684\u88c5\u9970\u623f\u5c4b\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c\u706f\u5149\uff0c\u5723\u8bde"} +{"id": "3003494", "video_name": "aa530ec5-093e-5874-a8a4-4b6ab9cf8ac0", "text": "\u9ed1\u6697\u5929\u4f7f\u7ff1\u7fd4\u4e8e\u4e91\u9704\u4e4b\u4e0a\uff0c4k\u3002"} +{"id": "2007164", "video_name": "6614c198-36d8-5ef0-b428-be31495910b9", "text": "\u94f6\u8272\u5706\u5f62\u9897\u7c92\u5448\u6d41\u4f53\u72b6\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u6bcf\u4e2a\u9897\u7c92\u90fd\u6709\u9510\u5229\u7684\u53cd\u5c04\u3002"} +{"id": "7002019", "video_name": "238b37c2-df81-5f11-88a8-65c328bc5550", "text": "\u4e00\u5ea7\u4f4d\u4e8e\u5c71\u533a\u7684\u795e\u5947\u68ee\u6797\uff0c\u8272\u5f69\u67d4\u548c\u3001\u5149\u6cfd\u95ea\u8000\u3001\u68a6\u5e7b\u822c\u7684\u9ad8\u6e05\u753b\u9762\u3002"} +{"id": "6004000", "video_name": "aeef0903-dfb9-5089-a617-6a1fd5cfa162", "text": "\u7535\u5f71\u822c\u7684\u706f\u5149\u4e0b\u620f\u5267\u6027\u7684\u6c34\u82b1\u98de\u6e85\u3002"} +{"id": "0004472", "video_name": "09a7ce69-777b-5970-bd39-69400c46ce5e", "text": "\u5728\u610f\u6599\u4e4b\u5916\u7684\u8f6c\u6298\u4e2d\uff0c\u74e6\u5c14\u7279\u00b7\u6000\u7279\u6234\u7740\u65f6\u5c1a\u7684\u5df4\u9ece\u4e16\u5bb6\u56f4\u88d9\uff0c\u4e0e\u6d77\u7ef5\u5b9d\u5b9d\u5728\u4e00\u4e2a"} +{"id": "2004411", "video_name": "d867dfab-2976-50fb-8d0b-bbae9b1e2757", "text": "\u7136\u800c\uff0c\u4ed6\u4eec\u7684\u6311\u6218\u5e76\u6ca1\u6709\u5c31\u6b64\u7ed3\u675f\uff0c\u56e0\u4e3a\u4ed6\u4eec\u8fd8\u4e0d\u5f97\u4e0d\u62b5\u5fa1Sentinelese\u65cf\u4eba\u7684\u653b\u51fb\u3002\n\nSource sentence: Can you please repeat that again? I"} +{"id": "7002224", "video_name": "faa49f4d-27f0-58bb-a873-a6fcc2ad670c", "text": "C\u4ee3\u8868\u7740\u732b\uff0c\u559c\u6b22\u8ffd\u9010\u8001\u9f20\uff0c3D\u50cf\u76ae\u514b\u65af\u4e00\u6837\u3002"} +{"id": "0006558", "video_name": "2e9f7c1e-fa08-55d2-9ac0-f37d68313241", "text": "\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u957f\u7740\u4e00\u5934\u9ed1\u53d1\uff0c\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u7684\u53e4\u8001\u957f\u888d\u3002\u7ad9\u5728\u6751\u5e84\u7684\u8857\u9053\u4e0a\uff0c\u50cf"} +{"id": "0004097", "video_name": "032de537-b117-5f0e-92a7-66532a7924fc", "text": "\u9ad8\u901f\u516c\u8def1\u53f7\uff0c\u4e94\u5f69\u7f24\u7eb7\u7684\u5929\u7a7a\uff0c\u5f69\u8679\uff0c\u94f6\u6cb3\uff0c\u9713\u8679\u706f\u5149\uff0c\u9ad8\u901f\u516c\u8def\uff0c\u8def\u6807\uff0c\u5730\u56fe\uff0c\u706f"} +{"id": "4003200", "video_name": "f8dc3bf8-aca5-5c44-9caf-16a5c3b1263b", "text": "\u7537\u4eba\u7ad9\u5728\u4ed6\u7684\u529e\u516c\u5ba4\uff0c\u900f\u8fc7\u7a97\u6237\u770b\u7740\u5927\u57ce\u5e02\u3002"} +{"id": "2007790", "video_name": "8a4fce43-96d4-51c7-ba92-2567da69ca8d", "text": "\u4e00\u4f4d\u7a7f\u7740\u5f97\u4f53\u7684\u4eba\u7ad9\u5728\u8304\u5b50\u4e0a\u3002"} +{"id": "6004664", "video_name": "33897140-6587-546a-9afe-cc9b23106c3d", "text": "\u56fd\u738b\u548c\u738b\u540e\u8fd8\u6709\u4e00\u4e2a\u975e\u5e38\u6f02\u4eae\u7684\u5973\u513f\u3002"} +{"id": "7002117", "video_name": "2ebfe798-968b-5ae3-a51b-ad4266510e78", "text": "\u4e00\u4e2a\u7236\u4eb2\u5728\u4e00\u4e2a\u9634\u68ee\u3001\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u5728\u665a\u4e0a\u7ed9\u4ed6\u7684\u513f\u5b50\u8bfb\u7761\u524d\u6545\u4e8b\u3002"} +{"id": "2007197", "video_name": "0619afdc-eaa9-5819-a04c-66d59e615331", "text": "\u53f0\u5317101\u639b\u4e0a\u4e00\u9762\u5beb\u6709\u4e2d\u6587\u5b57\u300c\u611b\u300d\u7684\u65d7\u5e5f\u3002"} +{"id": "7003272", "video_name": "a51312ea-ee43-5db1-aaa5-6a9835511c19", "text": "1987\u5e74\u5317\u4eac\u516b\u8fbe\u5cad\u957f\u57ce\u4e0a\u6709\u4e00\u53ea\u5154\u5b50\u5728\u5954\u8dd1\u3002"} +{"id": "2005175", "video_name": "9c321c66-66ab-5ec6-9259-de0bd56ec345", "text": "\u5faa\u73af\u64ad\u653e\u4e09\u7ef4\u52a8\u753b\u3002\u661f\u5f62\u72b6\u3002\u968f\u673a\u989c\u8272\u3002"} +{"id": "2007053", "video_name": "84774a4e-5021-5739-912b-c4553edaabcb", "text": "\u4e00\u79cd\u5e72\u7ec6\u80de\u5728\u660e\u4eae\u7684\u80cc\u666f\u4e2d\u6f02\u6d6e\u3002"} +{"id": "0005605", "video_name": "1ddd3b82-9d9d-5e1a-ae4e-851bbc530e38", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u4e0d\u5728\u5730\u7403\u4e0a\n\nSource sentence: I love you more than anything in this world\n\u6211\u7231\u4f60\u80dc\u8fc7\u4e16\u4e0a\u4efb\u4f55\u4e8b\u7269"} +{"id": "8002873", "video_name": "4da20104-0102-50b7-82d0-66610cf12cd7", "text": "\u8304\u5b50\u628a\u81ea\u5df1\u6d78\u6ce1\u5728\u725b\u5976\u6876\u91cc\uff0c\u4ee5\u5e2e\u52a9\u4fdd\u62a4\u5b83\u514d\u53d7\u9633\u5149\u7684\u7167\u5c04\u3002"} +{"id": "8003776", "video_name": "3d7b9de9-73a6-5d01-9fc9-3fe6ce0aff13", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u7c89\u7b14\u661f\u661f\u5728\u6c34\u4e0b\u6f02\u6d6e\uff0c\u5e26\u7740\u6ce1\u6ce1\u3002\u8ba9\u4e00\u5207\u53d8\u5f97\u660e\u4eae\u3001\u751f\u52a8\u3001\u7c89\u5f69\u3001\u5361\u901a"} +{"id": "0005652", "video_name": "1ec013d7-4c2b-55fd-a60b-a7155decc1f9", "text": "\u4ece\u8fd9\u5f20\u56fe\u7247\u4e2d\u7814\u7a76\u4e00\u4e2a\u6446\u52a8\u5c3e\u5df4\u7684\u732b\u548c\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "6004935", "video_name": "733ad8ae-0d72-557c-972e-3674913c5420", "text": "\u9ed1\u6697\u76844K\u5207\u5c14\u8bfa\u8d1d\u5229\uff0c\u5b69\u5b50\u4eec\u5728\u6237\u5916\u73a9\u800d\uff0c1980\u5e74\uff0c\u6050\u6016\u3002"} +{"id": "7003406", "video_name": "98a9c1d3-da0e-54f3-ba84-8c7639e7d8a0", "text": "\u5982\u679c\u4fdd\u5229\u00b7\u8096\u5c14\u5728\u300a\u5b8b\u98de\u6b63\u4f20\u300b\u4e2d\u51fa\u73b0\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006229", "video_name": "28c0a077-c3c6-5d0c-a072-621726c460e0", "text": "\u63d2\u56fe\u98ce\u683c\u7684\u5355\u4e2a\u706b\u7130\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "3006772", "video_name": "b9622718-c556-557c-948e-69987ed87641", "text": "\u751f\u6210\u4e00\u6bb5\u5b9e\u65f6\u7684\u7a81\u53d1\u65b0\u95fb\u89c6\u9891\u3002"} +{"id": "6004967", "video_name": "e94417ba-0e52-5ac6-b992-39c13592d3f6", "text": "\u751f\u6210\u4e00\u5e45\u63cf\u7ed8\u5c0f\u9ea6\u79cd\u5b50\u840c\u82bd\u7ec6\u817b\u8fc7\u7a0b\u7684\u63d2\u753b\uff0c\u5c55\u73b0\u51fa\u90a3\u4e9b\u5145\u6ee1\u6d3b\u529b\u7684\u7eff\u8272\u5ae9"} +{"id": "6004369", "video_name": "87be866b-f351-5826-8e80-9c20f2efdf32", "text": "22\u53ea\u72d0\u72f8\u548c\u4e00\u4e2a\u4eba\u63e1\u624b\u3002\u5e7b\u60f3\u3002"} +{"id": "2003950", "video_name": "b46bb95b-5427-5cc2-83c6-665c2ac625e5", "text": "\u592a\u9633\u51a0\u5c42\u4e2d\u65cb\u8f6c\u7740\u7684\u62fc\u56fe\u788e\u7247\u6cb8\u817e\u7740\u3002"} +{"id": "7004972", "video_name": "0b0386f2-b893-5284-a86f-756b8762636a", "text": "\u96ea\u4f5b\u5170Suburban\u9ed1\u8272\u54d1\u5149\u8f6e\u6bc2\u7684\u89c6\u989124\u5bf8\u3002"} +{"id": "6004826", "video_name": "d711dcf0-f4b3-59d0-8df6-ba2eee67b48a", "text": "\u4e00\u500b\u5973\u5b69\u5728\u5e8a\u4e0a\u9192\u4f86\u3002"} +{"id": "2004735", "video_name": "594dc1bf-fab9-5868-857e-5f84243d020a", "text": "\u6302\u7740\u6b22\u4e50\u7684\u957f\u7b52\u889c\uff0c\u95ea\u70c1\u7684\u6811\u4e0b\u6446\u7740\u793c\u7269\u3002"} +{"id": "1005728", "video_name": "695cf535-8dfd-57a6-896a-4ada76e0f20f", "text": "\u4e00\u4e2a\u53eb\u57c3\u7c73\u8389\u7684\u5973\u5b69\u795e\u79d8\u5931\u8e2a\u4e86\u3002\n\nSource sentence: The restaurant is closed for renovation until next month.\n\u8fd9\u5bb6\u9910\u5385\u56e0\u7ffb\u65b0\u800c\u5173\u95ed"} +{"id": "0003629", "video_name": "40c1267b-910c-5aab-a08f-19e8dc869d59", "text": "\u89c6\u9891\u4ee5\u5145\u6ee1\u8272\u5f69\u7684\u4e91\u6735\u4e3a\u80cc\u666f\u5f00\u59cb\u3002\u73a9\u5bb6\u901a\u8fc7\u5728\u5c4f\u5e55\u4e0a\u8df3\u8dc3\u5f69\u8272\u4e91\u6735\u4e4b\u95f4\u6765\u5f15\u5bfc\u53ef\u7231\u7684"} +{"id": "4003639", "video_name": "715225b8-b280-5db4-aad8-4830db6a5dd0", "text": "\u4e00\u4e2a\u9ed1\u8272\u80cc\u666f\u7684\u5ba3\u4f20\u7247\uff0c\u6807\u9898\u662f\u672b\u65e5\u3002"} +{"id": "0005221", "video_name": "16d819c8-cda1-5447-969c-4e6c63014cf4", "text": "\u53d1\u5c04\u65e0\u7ebf\u7535\u4fe1\u53f7\u6ce2\u7684\u98de\u673a"} +{"id": "2005600", "video_name": "07544761-ca36-5021-ba8c-5d5ee7d70b86", "text": "\u9ed1\u732b\u5728\u8349\u5730\u4e0a\u548c\u767d\u725b\u4e00\u8d77\u6572\u9f13\u3002\n\nSource sentence: I am going to the store to buy some milk and bread.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u725b\u5976\u548c"} +{"id": "7003370", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "\u4e09\u4f4d\u4e3b\u89d2 Trinity\u3001Morpheus \u548c Neo \u5165\u4fb5\u77e9\u9635\u3002"} +{"id": "0005841", "video_name": "220d7d08-8c58-53f3-a98e-5bdd31e9eb71", "text": "\u4e00\u4e2a\u8001\u4eba\u72ec\u81ea\u5728\u5bb6\u5916\u7684\u82b1\u56ed\u91cc\u559d\u8336\u3002"} +{"id": "8003524", "video_name": "9332affe-a3d3-5a5a-8de5-06611ac1ae15", "text": "\u6e38\u6cf3\u7684\u6c34\u8788\u5728\u6c34\u9762\u4e0a\u65b9\u3002"} +{"id": "7004099", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "\u4e00\u4e2a\u5e9f\u5f03\u7684\u5267\u9662\uff0c\u4e00\u7fa4\u4eba\uff0c\u8bb8\u591a\u5782\u76f4\u60ac\u6302\u7684\u84dd\u8272\u548c\u7ea2\u8272\u65d7\u5e1c\uff0c\u7535\u5f71\u98ce\u683c\u7684\u4f4e\u8c03\uff0c"} +{"id": "4004990", "video_name": "b05e6568-b7ea-5816-8c5e-1b9fb9b157a0", "text": "\u5c71\u4e2d\u6cb3\u6c34\u9759\u9759\u5730\u6d41\u6dcc\uff0c\u8f7b\u54fc\u7740\u6c34\u58f0\uff0c\u4ee4\u4eba\u653e\u677e\u3002"} +{"id": "0005029", "video_name": "136a3e45-c2d6-543a-9ff7-2a54aa41af43", "text": "\u4ed6\u8bf4\u4ed6\u5df2\u7ecf\u7528\u9b54\u6cd5\u8170\u5e26\u53d8\u6210\u4e86\u72fc\uff0c\u4f46\u662f\u5b83\u88ab\u6293\u4f4f\u4ed6\u7684\u730e\u4eba\u5077\u8d70\u4e86\u3002"} +{"id": "1003103", "video_name": "3926ae09-a42f-5391-a1ac-c9613add2ec3", "text": "\u4e00\u4f4d\u7a7f\u8457\u6574\u9f4a\u7684\u7dad\u591a\u5229\u4e9e\u6642\u4ee3\u7d33\u58eb\uff0c\u5728\u7dad\u591a\u5229\u4e9e\u6642\u4ee3\u502b\u6566\u7684\u8ca7\u56f0\u5730\u5340\u7684\u8857"} +{"id": "4004912", "video_name": "c8a6dea3-337c-5887-84db-ef1149b70374", "text": "\u4e00\u53ea3D\u52a8\u753b\u7684\u7eb3\u624e\u5c14\u773c\uff0c\u4e00\u652f\u9ea6\u514b\u98ce\u548c\u4e00\u526f\u8033\u673a\u3002"} +{"id": "8002676", "video_name": "d98858ca-3be7-5bea-bce2-5820b5a3e30a", "text": "\u4eba\u7269\u8d70\u8fdb\u5bfa\u5e99\uff0c\u4e91\u96fe\u7f2d\u7ed5\uff0c\u63a8\u955c\u5934\uff0c\u9e1f\u513f\u98de\u3002"} +{"id": "0003484", "video_name": "3e6a5368-d617-5439-b6ae-e98d8b1c37d4", "text": "\u6570\u767e\u4eba\u6b63\u5728\u5403\u9762\u5305\u548c\u559d\u7ea2\u9152\u3002"} +{"id": "3004790", "video_name": "9a5feb92-987a-52cb-a022-2916776e60d1", "text": "1910\u5e74\u7684\u9ed1\u767d\u7535\u5f71\uff0c\u5e26\u6709\u6000\u65e7\u611f\u7684\u89c2\u611f\uff0c\u4e00\u540d\u975e\u6d32\u7537\u5b50\u8d64\u88f8\u7740\u4e0a\u8eab\uff0c\u7ad9\u5728\u8c6a\u5b85\u7684\u9633\u53f0\u4e0a\uff0c"} +{"id": "0003316", "video_name": "3b77db76-11dc-5ada-9610-769a51f98f0e", "text": "\u4f38\u51fa\u7684\u624b\u53bb\u62c9\u95e8\uff0c\u4f46\u95e8\u5374\u7830\u7684\u4e00\u58f0\u5173\u4e0a\u4e86\u3002\u6050\u6016\u53ef\u6015\u7684\u753b\u9762\u3002"} +{"id": "4003846", "video_name": "112d487c-0ccc-5a68-8bd8-4c6d19b870d7", "text": "\u4e00\u676f\u5e26\u6709\u8d5b\u535a\u670b\u514b\u5143\u7d20\u7684\u5496\u5561\u3002"} +{"id": "8001670", "video_name": "f68a1e11-c362-5a4e-8a42-2c7ca948820f", "text": "\u718a\u3001\u7334\u5b50\u3001\u9a6c\u3001\u5927\u8c61\u5728\u7f8e\u4e3d\u7684\u68ee\u6797\u4e2d\u8d70\u8def\u548c\u4ea4\u8c08\u3002"} +{"id": "3006654", "video_name": "58e66629-9131-541f-b2b5-a628cab18615", "text": "\u65b0\u7ea6\u65f6\u4ee3\u7684\u4eba\u7a7f\u7740\u8863\u670d\uff0c\u5728\u56f0\u96be\u7684\u60c5\u51b5\u4e0b\u4ecd\u80fd\u627e\u5230\u611f\u6069\u7684\u7406\u7531\u3002"} +{"id": "6002518", "video_name": "d7559063-abfb-5afe-88c9-a4309315690a", "text": "\u4e2d\u56fd\u53e4\u7434\u670950\u6839\u5f26\u3002"} +{"id": "2004794", "video_name": "db0d75f4-4e4b-58b1-bdd4-35f03c27ccc6", "text": "\u79cb\u591c\u516c\u56ed\u91cc\uff0c\u7537\u5973\u7275\u624b\u8d70\u7740\uff0c\u76f4\u89c6\u89c2\u4f17\uff0c\u6d6a\u6f2b\u7684\u573a\u666f\u3002"} +{"id": "4002230", "video_name": "d6f16526-ddba-59a9-b5bb-d60eda362b63", "text": "\u67cf\u6797\u5899\u5012\u584c\u7684\u666f\u8c61\u3002\u4eba\u7fa4\u8702\u62e5\u800c\u81f3\uff0c\u6709\u4e9b\u4eba\u62ff\u8d70\u4e86\u5899\u7684\u788e\u7247\u3002"} +{"id": "6002654", "video_name": "d22bdfbd-d640-5219-aaaf-e7b17d20fc40", "text": "\u7ebd\u7ea6\u8b66\u5bdf\u57283000\u5e74\u4e0e\u6bd2\u6db2\u8fdb\u884c\u640f\u6597\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u903c\u771f\u611f\u548c4K\u6e05\u6670\u5ea6\u3002"} +{"id": "7002942", "video_name": "517e1433-bc84-5b6c-aeed-848da208450b", "text": "\u5fc3\u6000\u5e0c\u671b\u3001\u773c\u4e2d\u575a\u5b9a\uff0c\u5c0f\u9f99\u6ef4\u6ef4\u548c\u5c0f\u9e1f\u7279\u5a01\u8482\u8e0f\u4e0a\u4e86\u4ed6\u4eec\u7684\u53f2\u8bd7\u822c\u7684"} +{"id": "3004803", "video_name": "a433967a-1661-5a7d-bfc8-ba417095aa1c", "text": "\u76f8\u673a\u8ddf\u8e2a\u7a7a\u65f7\u7684\u8d70\u5eca\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002592", "video_name": "f1638856-c8ac-5eef-b1b5-ddc4fd16f3f7", "text": "\u8457\u540d\u8bb2\u8bdd\u7684\u91cd\u6f14\uff0c\u5e7f\u89d2\u955c\u5934\u4e0b\u5168\u4e16\u754c\u5411\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u8dea\u62dc\u3002"} +{"id": "7002666", "video_name": "77aa486f-f80a-5fdb-bd33-7c2442a757e9", "text": "\u5e74\u8f7b\u7684\u4e9a\u6d32\u7f8e\u5973\uff0c\u8857\u5934\u65f6\u5c1a\uff0c\u8df3\u8dc3\u5728\u8857\u4e0a\u3002"} +{"id": "7002018", "video_name": "ddf9ff4f-8fb2-574b-8504-8a47d8271618", "text": "\u60f3\u8c61\u4e00\u4e2a\u6765\u81ea\u9065\u8fdc\u9886\u57df\u7684\u65c5\u884c\u8005\uff0c\u4ed6\u4eec\u7684\u76ae\u80a4\u4e0a\u88c5\u9970\u7740\u7eda\u4e3d\u591a\u5f69\u7684\u661f\u7cfb\u3002\u4ed6\u4eec\u7684\u773c"} +{"id": "2003763", "video_name": "190ad348-d630-53ae-848f-10fcccb3794f", "text": "\u5f3a\u5927\u7684\u53e4\u8001\u94bb\u77f3\u5f52\u8fd8\u540e\uff0c\u5728\u8bb2\u8bdd\u52a8\u7269\u7684\u7f8e\u4e3d\u68ee\u6797\u91cc\uff0c\u548c\u5e73\u4e0e\u548c\u8c10\u3002"} +{"id": "6003350", "video_name": "d1377e50-6197-530a-8dc4-11b29bb35b2f", "text": "\u6bd4\u7279\u5e01\u5728\u6fb3\u95e8\u7684\u8857\u5934\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "3004453", "video_name": "f9544713-f9de-55c1-9a42-c73f58deeaf0", "text": "\u5b89\u4fdd\u8b66\u5bdf\u7684\u5f55\u50cf\u8fdc\u666f\u663e\u793a\u4e00\u4e2a\u9ed1\u5e2e\u5973\u8001\u677f\u5728\u884c\u8d70\u3002"} +{"id": "3004138", "video_name": "f031f4bd-cd0f-5725-9d24-dc99decee3f3", "text": "\u5b69\u5b50\u4eec\u62ff\u7740\u5851\u6599\u888b\u3002\u4ed6\u4eec\u5728\u5851\u6599\u888b\u7684\u5ce1\u8c37\u4e2d\u884c\u8d70\u3002\u767d\u8272\u7684\u6c99\u6f20\uff0c\u84dd\u8272\u7684\u5929\u7a7a\u3002"} +{"id": "8001875", "video_name": "d2cd3437-c9c1-591f-aa7b-6c40b6bcfd1c", "text": "\u573a\u666f\u8bbe\u7f6e\uff1a\u5929\u8272\u9634\u6697\uff0c\u96e8\u6c34\u7eb7\u98de\uff0c\u8857\u706f\u5728\u96fe\u6c14\u4e2d\u53d1\u51fa\u5fae\u5fae\u7684\u6a59\u8272\u5149\u8292\u3002\u4e00\u4e2a\u7537\u4eba\u80cc\u671d"} +{"id": "8002951", "video_name": "93c958fe-734f-5b54-8166-3a12d09b1d90", "text": "\u56fd\u738b\u5750\u5728\u7f8e\u4e3d\u7684\u5b9d\u5ea7\u4e0a\uff0c\u5bab\u536b\u7ad9\u7740\u8b66\u6212\u3002\u5927\u81e3\u5411\u56fd\u738b\u89e3\u91ca\u4e00\u4e9b\u95ee\u9898\u3002"} +{"id": "0004299", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5fae\u7b11\u7740\uff0c\u7728\u4e86\u4e00\u53ea\u773c\u3002"} +{"id": "8001660", "video_name": "79178e91-bd14-5307-9e7a-edcd91e92c75", "text": "\u4e00\u53ea\u5c0f\u9e1f\u8010\u5fc3\u5730\u7b49\u5f85\u7740\u5b83\u7684\u6bcd\u4eb2\u56de\u6765\u3002"} +{"id": "5001533", "video_name": "48219a65-67ea-51de-a733-60a62a9b68e2", "text": "16:9 \u7684\u63a2\u7d22\u4e4b\u65c5\u8fdb\u5165\u79fb\u52a8\u7f51\u7edc\u7684\u6838\u5fc3\u3002"} +{"id": "4004507", "video_name": "92fe88fb-6e0c-5600-86aa-79cfc9437014", "text": "\u8bbe\u8ba1\u4e00\u6b3e\u667a\u80fd\u624b\u8868\uff0c\u4e13\u95e8\u4e3a\u559c\u6b22\u6781\u9650\u8fd0\u52a8\u5982\u6500\u5ca9\u3001\u8df3\u4f1e\u548c\u6ed1\u96ea\u7684\u5065\u8eab\u7231\u597d\u8005\u91cf\u8eab\u5b9a\u5236\u3002\u8003"} +{"id": "4002510", "video_name": "70578ec1-6b96-5b64-8976-8091f4a6fd39", "text": "\u73b0\u5b9e\u7684\u5170\u82b1\u5f00\u51fa\u9752\u86d9\uff0c\u5b83\u4eec\u5728\u5403\u7740\u51b0\u6dc7\u6dcb\u3002"} +{"id": "5001868", "video_name": "6e31778e-3d39-5cea-8254-02112f544958", "text": "\u6708\u7403\u91d1\u5b57\u5854\u57c3\u53ca\u767c\u96fb\u6a5f\u6a5f\u68b0\u78c1\u6975\u5834\u5c4f\u853d\u6975\u5149\u6708\u4eae\u795e\u8056\u7684\u57ce\u5e02\uff0c\u5448"} +{"id": "3006169", "video_name": "f2dca68f-f119-56da-9ed9-a82f9ab6ff88", "text": "\u4e91\u6735\u3001\u84dd\u5929\u3001\u8de8\u8d8a\u5730\u5e73\u7ebf\uff0c\u5b8c\u7f8e\u7684\u4e00\u5929\u3002\u4fe1\u606f\uff1aBAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007163", "video_name": "cc9482df-e255-5032-ba73-3d2c3908f698", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u628a\u4e54\u00b7\u62dc\u767b\u63a8\u7740\u5750\u5728\u8f6e\u6905\u4e0a\u4ece\u60ac\u5d16\u4e0a\u63a8\u4e0b\u53bb\u7684\u903c\u771f\u5de6\u53f3\u6444"} +{"id": "2003649", "video_name": "68952c51-b4c6-5346-ba26-edbe4722421f", "text": "\u6838\u5e9f\u6c34\u6392\u653e\u6d77\u6d0b\uff0c\u5bfc\u81f4\u6d77\u6d0b\u751f\u7269\u53d1\u751f\u7a81\u53d8\uff0c\u6c61\u67d3\u73af\u5883\uff0c\u5f71\u54cd\u751f\u6001\u7cfb\u7edf\uff0c\u4ea7\u751f\u6bd2\u6027\u548c\u5065\u5eb7"} +{"id": "6002350", "video_name": "262f63a7-ddda-524d-a782-082b8ecfb0d1", "text": "\u5723\u8bde\u8282\u5728\u5e8a\u4e0a\uff0c1950\u5e74\u4ee3\u7684\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "8002327", "video_name": "8c6d4ab7-b624-5734-aba4-4d21971387aa", "text": "\u8111\u4e2d\u706f\u6ce1\u4eae\u8d77\uff0cMinecraft\u73a9\u5bb6\u6709\u4e86\u4e00\u4e2a\u60f3\u6cd5\u3002"} +{"id": "0003311", "video_name": "3b620ee5-56b3-543d-9706-54ac9a076f40", "text": "\u5357\u6781\u53d1\u73b0\u7684\u9e26\u7247\u9e1f\uff0c\u52a8\u4f5c\u50cf\u4eba\u7c7b\uff0c\u5176\u6765\u5386\u672a\u77e5\u3002"} +{"id": "2005618", "video_name": "3fbcbcad-27b9-50e3-9259-86b2119279e7", "text": "\u4e2d\u6d77\u533a\u57df\u7684\u5927\u578b\u5feb\u901f\u98ce\u66b4\u6d6a\u6f6e"} +{"id": "8002206", "video_name": "4cf6a72c-dd19-58f7-a01a-3250d7f04822", "text": "\u521b\u9020\u4e00\u4e2a\u5750\u5728\u5361\u8f66\u4e0a\u60f3\u8981\u6349\u5154\u5b50\u7684\u519c\u6c11\u3002"} +{"id": "3006056", "video_name": "8f77e1d3-03e7-53b1-b874-b595f32e70de", "text": "\u4e00\u4e2a\u5361\u901a\u7537\u5b69\u8df3\u821e\uff0c\u4e2d\u56fd\u7537\u5b69\uff0c\u53ef\u7231\uff0c\u5e26\u900f\u660e\u80cc\u666f\u3002"} +{"id": "6003063", "video_name": "ea11c1f4-0800-510e-9121-936509c99a57", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u4eba\u5439\u594f\u9676\u7b1b\u7684\u7535\u5f71\u4e2d\u666f\u3002"} +{"id": "4003748", "video_name": "872518a6-7a95-530a-acc9-be2a764a1e59", "text": "25. \u6781\u9650\u6311\u6218\uff1a\u5c1d\u8bd5\u6355\u6349\u6781\u9650\u8fd0\u52a8\u6216\u5192\u9669\u6d3b\u52a8\u7684\u52a8\u4f5c\uff0c\u5c55\u793a\u80be\u4e0a\u817a\u7d20\u548c\u5f3a\u5ea6\u3002"} +{"id": "1003306", "video_name": "3cdb270b-8b8f-53b8-ad3c-c42eccc2060d", "text": "\u903c\u771f\u7684\u96e8\u4e2d\u68ee\u6797\u6444\u50cf\u673a\u524d\u79fb\u62cd\u6444\u573a\u666f\u3002"} +{"id": "0005778", "video_name": "21200734-077b-52f2-933f-6fee1cbda780", "text": "\u5e26\u7740\u4e1d\u5e26\u7684\u53ef\u7231\u732b\u5934\u9e70\uff1a\u98de\u5feb\u5730\u98de\u884c\u5e76\u964d\u843d\u5728\u624b\u4e0a\u3002"} +{"id": "8001364", "video_name": "78bbc7d9-26c6-59e7-873d-838ebccfcdde", "text": "\u5973\u5b69\u4ece\u5929\u5802\u6765\u5230\u4e86\u5730\u7403\u3002"} +{"id": "3004725", "video_name": "51c1d512-dd2e-5d71-b0c3-54009fec2169", "text": "\u57ce\u5e02\u5efa\u7b51\u7684\u5bbd\u655e\u548c\u9ed1\u6697\u7684\u51b7\u5149\u6e90\u662f\u5de8\u5927\u800c\u51b7\u9177\u7684\u3002\u300a\u8d5b\u535a\u670b\u514b2077\u300b\u94f6\u7ffc"} +{"id": "4002631", "video_name": "2d0f263d-9fd8-5c42-a261-becacec137f9", "text": "\u4ece\u524d\uff0c\u5728\u548c\u8c10\u57ce\u8fd9\u4e2a\u5e73\u9759\u7684\u5c0f\u9547\u4e0a\uff0c\u6709\u4e09\u4e2a\u6700\u597d\u7684\u670b\u53cb\u2014\u2014\u8389\u8389\u3001\u6770\u514b\u548c\u827e\u739b\u3002\u8fea\u58eb"} +{"id": "4004932", "video_name": "ba9db6d9-eaa8-5c62-9990-b258bcf27bcf", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u9a91\u58eb\u96d5\u50cf\u5728\u4e00\u6761\u6cb3\u4e0a\u65b9\u3002"} +{"id": "3005039", "video_name": "03940b8b-4c70-5531-8300-1b6e8aa1ccb1", "text": "\u4e00\u4e2a\u6b63\u65b9\u5f62\u7684\u4e8c\u7ef4\u7801\u671d\u5c4f\u5e55\u98de\u6765\u3002"} +{"id": "8002056", "video_name": "c5e5ddcd-16be-569e-990e-983efe6479f9", "text": "\u4e00\u53ea\u6d77\u8c5a\u5728\u7c89\u8272\u7684\u5b66\u751f\u5bbf\u820d\u91cc\u6253\u5b57\uff0c\u7a97\u6237\u671b\u5411\u64cd\u573a\u3002"} +{"id": "0005838", "video_name": "22037a71-bfce-5156-8ad5-4db859b7ef87", "text": "\u5973\u5b69\u6162\u6162\u5730\u52a8\u7740\u817f\uff0c\u6ca1\u6709\u6a21\u7cca\u7684\u56fe\u50cf\u3002"} +{"id": "2005815", "video_name": "bdfbfc7c-6f8e-5ff6-b970-d1cd1a0fde36", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u4e00\u4e2a\u884c\u674e\u7bb1\u4e0a\u3002\n\nSource sentence: I am studying Chinese at university. \n\u6211\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "0006788", "video_name": "3327646b-920a-5c52-8174-23c414de1402", "text": "\u5236\u4f5c\u4e00\u5e45\u753b\u9762\u4e2d\u95f4\u662f\u51ac\u5b63\u666f\u8c61\u7684\u56fe\u7247\u3002\u9644\u52a0\u6587\u4ef61\u3002"} +{"id": "1003916", "video_name": "48566fea-99f5-5a0b-8c87-6a7ffb28c8ed", "text": "\u7d2b\u8272\u7684\u6050\u9f99\u6b63\u5728\u6d3e\u5bf9\u4e0a\u8df3\u821e\u548c\u5e86\u795d\u3002"} +{"id": "8001339", "video_name": "0cbb9e29-6043-5494-a8a8-a47b335872b2", "text": "\u4eba\u662f\u7531\u5730\u7403\u4e0a\u7684\u5c18\u571f\u5f62\u6210\u7684\u3002- Ren shi you diqiu shang de chentu xingcheng de."} +{"id": "8002043", "video_name": "fc6db046-72dd-526d-b9b8-9680decb91ca", "text": "\u5927\u8c61\u9001\u6c34\u74f6\u7ed9\u4eba\u7c7b\u3002"} +{"id": "1006012", "video_name": "6e758fb3-7439-5961-b964-f1a7bbaff32a", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\u5728\u300a\u4e0a\u53e4\u5377\u8f745\uff1a\u5929\u9645\u300b\u4e2d\u626e\u6f14\u4e00\u540d\u9b54\u6cd5\u5e08\u3002"} +{"id": "7003478", "video_name": "7c5ba916-50e8-5727-a5d3-fa119be963aa", "text": "\u7f57\u5c3c\u00b7\u5965\u6c99\u5229\u6587\u65af\u8bfa\u514b\u7403\u5458\u4ee5\u5361\u901a\u98ce\u683c\u4e58\u5750\u706b\u7bad\u8239\u8fdb\u5165\u5916\u592a\u7a7a\u3002"} +{"id": "6002063", "video_name": "fff37e38-b174-53cf-b553-ac1df2381c7d", "text": "\u514b\u91cc\u65af\u6258\u5f17\u00b7\u54e5\u4f26\u5e03\u7684\u4e09\u8258\u8239\u5728\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u8be6\u7ec6\u5c55\u73b0\uff0c\u4e09\u4e2a\u8239\u9996\u5728\u6ce2\u6d9b\u6c79"} +{"id": "8002696", "video_name": "915ee092-48f3-5276-9e91-b2423bf2c566", "text": "\u90a3\u4e2a\u7537\u5b69\u5fc3\u4e2d\u5145\u6ee1\u5e0c\u671b\uff0c\u4ed6\u95ed\u4e0a\u773c\u775b\uff0c\u5168\u529b\u7948\u7977\u80fd\u88ab\u5e26\u5230\u5929\u5802\u3002"} +{"id": "3004557", "video_name": "18b7379c-38b0-56a6-80cf-cff0dc58da9b", "text": "\u4e00\u4f4d\u5973\u58eb\u7ad9\u5728\u4e18\u9675\u68ee\u6797\u9644\u8fd1\uff0c\u6b63\u5728\u8bf4\u4e9b\u4ec0\u4e48\u3002"} +{"id": "1005940", "video_name": "6d292d1e-1284-5005-a0c9-3d31fb768db2", "text": "\u6570\u5b57\u6c34\u5f69\u753b\u4f5c\u54c1\uff0c\u753b\u6709\u4e00\u53ea\u957f\u6709\u817f\u7684\u523a\u732c\u5728\u590f\u65e5\u7684\u843d\u65e5\u4e2d\u5954\u8dd1\uff0c\u4f5c\u8005\u4e3aWaterhouse\u3001Carne Griffiths\u3001Minjae"} +{"id": "4004677", "video_name": "28673832-f1ba-5e62-becb-acd743bcb4eb", "text": "\u5f02\u6559\u5f92\u7684\u7eaa\u5ff5\u7891\u6c89\u5728\u6c34\u4e2d\uff0cBeksinski\u7684\u753b\u4f5c\uff0cAlfred Stieglitz\u7684\u9ed1\u767d\u9897\u7c92\u72b6\u7167\u7247\u4e8e1900\u5e74\u4ee3\u3002"} +{"id": "1005370", "video_name": "62d0dab2-9d58-52f3-b937-e0bb3e865ab3", "text": "\u4f7f\u7528\u65e0\u9650\u91cd\u590d\u548c\u7ea7\u8054\u7684\u5206\u5f62\u548c\u4e07\u82b1\u7b52\u6548\u679c\u3002\u968f\u7740\u65f6\u95f4\u63a8\u79fb\uff0c\u4f7f\u53c2\u6570\u52a8\u753b\u5316\u3002"} +{"id": "6003817", "video_name": "39ba1213-bf22-55c9-9ac3-23a3383fc9e2", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u4eba\u53cc\u624b\u62ff\u7740\u4e00\u4e2a\u903c\u771f\u7684\u5730\u7403\u4eea\u3002"} +{"id": "8003153", "video_name": "7ea6af53-3962-5290-b473-9726fd568e06", "text": "\u4e00\u5f20\u62cd\u6444\u6d53\u5bc6\u53e4\u8001\u68ee\u6797\u7684\u56fe\u7247\uff0c\u9633\u5149\u900f\u8fc7\u6811\u6797\u6d12\u4e0b\u3002"} +{"id": "4003204", "video_name": "a7d06e0c-895a-5cd5-bba6-21431c24fa70", "text": "\u516c\u5f0f1\u8d5b\u8f66\u5ea7\u8231\u89c6\u89d2\uff0c\u9ed1\u767d\u76f8\u95f4\u7684\u65d7\u5b50\u3002"} +{"id": "6002354", "video_name": "9728f4d2-84d0-527a-bb5c-79ae0522dfe4", "text": "15\u4e16\u7eaa\u91cd\u5546\u4e3b\u4e49\u7ecf\u6d4e\u65f6\u671f\uff0c\u6d77\u4e0a\u8fd0\u8f93\u8d27\u7269\u7684\u8239\u53ea\u5728\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u4e0a\u884c\u9a76\uff0c\u5468\u56f4\u662f\u6e2f\u53e3\u5efa"} +{"id": "7004924", "video_name": "93f3f51f-1fc2-57a6-ab71-d9e1f869eeab", "text": "\u6700\u540e\u7684\u6211\u4eec \u4fe1\u606f\uff1a\u57c3\u9a6c\u5fb7 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2003758", "video_name": "fed55eeb-ef04-5857-ab9d-0ade1c5caf2f", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u987b\u3001\u817f\u6781\u957f\u7684\u7537\u4eba\u624b\u62ff\u4e00\u6839\u60ac\u6302\u7740\u6708\u4eae\u540a\u5760\u3001\u949f\u8868\u548c\u94a5\u5319\u7684\u957f\u957f\u7684"} +{"id": "0005386", "video_name": "19e5419f-b77b-5ade-95f1-bf84b450e828", "text": "\u4e00\u5f20\u97f3\u7b26\u81ea\u52a8\u8df3\u5230\u4e86\u4e94\u7ebf\u8c31\u4e0a\u3002"} +{"id": "3003020", "video_name": "d0727480-4715-586d-a8a4-221a6572e495", "text": "\u5e74\u8f7b\u4eba\u628a\u4ed6\u4eec\u7684\u94b1\u653e\u8fdb\u94b1\u7bb1\u3002"} +{"id": "0004031", "video_name": "01d15797-3b79-5f54-9e20-f839a13a6f3c", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u7a7f\u7740\u5e26\u62ab\u80a9\u7684\u91d1\u8272\u8721\u67d3\u8863\u670d\u3002"} +{"id": "7003480", "video_name": "76b6fabf-15f5-587b-bc0d-04ae9148f1af", "text": "\u54c8\u8428\u514b\u65af\u5766\u7684\u7535\u7ad9\u72b6\u6001\u4e0d\u4f73\u3002\n\nSource sentence: The new policy aims to reduce carbon emissions by 50% by 2030.\n\u65b0\u653f\u7b56\u65e8\u5728\u52302030\u5e74\u5c06"} +{"id": "8001118", "video_name": "03f8d08c-dd9e-5edc-a271-95cbcd25e2e7", "text": "\u4e00\u7fa4\u6709\u7740\u6447\u6eda\u98ce\u683c\u7684\u9752\u5c11\u5e74\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u5728\u4e00\u95f4\u8001\u9601\u697c\u91cc\u5f00\u542f\u4e86\u4e00\u4e2a\u88c5\u6ee1\u9ed1\u80f6\u5531\u7247\u7684\u7bb1\u5b50"} +{"id": "0004477", "video_name": "09ae4d05-2e61-58e5-b9d7-9a9efc034c6b", "text": "\u91d1\u6b63\u6069\u548c\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u65e5\u843d\u65f6\u5206\u4ee5\u8d5b\u535a\u670b\u514bNFT\u7684\u98ce\u683c\u5c55\u5f00\u6218\u6597\u3002"} +{"id": "2003842", "video_name": "3241acdc-c60b-5230-a9f9-a05ee36cfe25", "text": "\u60f3\u8c61\u4e00\u53ea\u597d\u5947\u53ef\u7231\u7684\u5c0f\u732b\u54aa\u540d\u53eb\u6bd4\u5229\u4f4f\u5728\u4e00\u5ea7\u7f8e\u4e3d\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "3005477", "video_name": "b11a84e7-cf05-562f-b672-14f2a47eb14f", "text": "\u4e00\u5957\u56db\u4e2a\u767d\u8272\u9676\u74f7\u5496\u5561\u676f\uff0c\u8bbe\u8ba1\u65f6\u5c1a\u7b80\u7ea6\uff0c\u975e\u5e38\u9002\u5408\u7528\u4f5c\u5496\u5561\u676f\u3002"} +{"id": "3006699", "video_name": "f6ff4594-3301-5a99-b61d-e97f5ee4aa11", "text": "\u7531Greg Rutkowski\u5236\u4f5c\u7684\u8d5b\u535a\u670b\u514b\u7537\u6218\u58eb\u8096\u50cf\u3002"} +{"id": "0004378", "video_name": "08002da4-9b4b-591a-94fc-13f397f59208", "text": "\u5979\u4e00\u4e2a\u5c0f\u5973\u5b69\u72ec\u81ea\u5728\u4e00\u4e2a\u5927\u800c\u53ef\u6015\u7684\u56fe\u4e66\u9986\u91cc\uff0c\u800c\u5979\u5468\u56f4\u7684\u4e66\u672c\u7a81\u7136\u53d8\u5f97\u6d3b\u4e86\u8d77\u6765\u3002"} +{"id": "2007224", "video_name": "5dfdc795-a1c0-59a9-87f1-fa9465d933ab", "text": "\u4e00\u4f4d\u5973\u58eb\u5411Siri\u8be2\u95ee\u5979\u7684\u65e5\u7a0b\u5b89\u6392\u3002"} +{"id": "0005051", "video_name": "13c9fd41-a836-5bfc-bd3e-be3582670989", "text": "\u8c61\u5f81\u7740\u795e\u7684\u5e72\u9884\u548c\u4e0e\u795e\u5723\u7684\u8054\u7cfb\u5bf9\u4e8e\u8d4b\u4e88\u751f\u547d\u548c\u610f\u4e49\u7684\u91cd\u8981\u6027\u3002"} +{"id": "8001726", "video_name": "74c0a7c2-f694-50a5-ae70-966818a82335", "text": "\u767d\u9e3d\u98de\u7fd4\u5728\u7f8e\u4e3d\u7684\u98ce\u666f\u4e4b\u4e0a\u3002"} +{"id": "6002918", "video_name": "7ec68827-fc83-5335-8990-802b78f82fde", "text": "\u4e00\u6761\u5f3a\u5927\u7684\u6cb3\u6d41\u4ece\u4e24\u4fa7\u5c71\u811a\u6d41\u8fc7 (Font: SANS SERIF)"} +{"id": "5001383", "video_name": "d6acab60-a664-5a49-9060-a3fad60a5b82", "text": "\u4e00\u8f86\u8d5b\u8f66\u5728\u8def\u4e0a\uff0c\u8f66\u724c\u4e0a\u663e\u793a\u7740\u201cNadeem\u201d\u3002"} +{"id": "2006593", "video_name": "4aae6e8b-a68b-58d4-a92c-8d66ae6c51e6", "text": "\u542c\u97f3\u4e50\u65f6\uff0c\u7537\u4eba\u4e0d\u505c\u5730\u70b9\u5934\uff0c\u7728\u773c\u775b\u3002"} +{"id": "6003942", "video_name": "83718fc8-679d-5ab0-8497-37e5fcb29e4f", "text": "\u5728\u68ee\u6797\u91cc\u6218\u6597\u7684\u6d6a\u6f2b\u82f1\u96c4"} +{"id": "1005534", "video_name": "65dcc09f-cd81-501f-81e5-4b50e776d42f", "text": "\u53ef\u6301\u7eed\u7684\u57ce\u5e02\uff0c\u5145\u6ee1\u7740\u548c\u8c10\u5171\u5904\u7684\u4eba\u7c7b\u548c\u52a8\u7269\u3002"} +{"id": "2007554", "video_name": "33ea2b60-b938-5092-aa9d-b9673b9e97d8", "text": "\u94ec\u53c9\u5b50\u4e0a\u6ef4\u843d\u7740\u7ea2\u8272\u7684\u8840\u6db2\u3002"} +{"id": "8002088", "video_name": "a663188f-1bbd-579f-8b9a-711683f9f1f5", "text": "\u4e00\u5f20\u767b\u5c71\u8005\u7684\u9774\u5b50\u7a7f\u63d2\u5728\u51b0\u4e2d\u7684\u7167\u7247\u3002"} +{"id": "8003418", "video_name": "84d55703-8c39-5125-8c09-07fe3277beb2", "text": "\u7535\u5f71\u822c\u7684\u4e09\u7ef4\u6548\u679c\uff0c\u5728\u5145\u6ee1\u96fe\u548c\u98ce\u7684\u4e07\u5723\u8282\u4e4b\u591c\uff0c\u9519\u7efc\u590d\u6742\u7684\u6811\u6728\u3002"} +{"id": "1006701", "video_name": "7acbac5a-7744-5a01-af7f-d79b722a7022", "text": "\u4f0a\u6851\u6536\u5230\u4e86\u4e00\u4efd\u610f\u5916\u7684\u5305\u88f9\uff0c\u91cc\u9762\u662f\u4e00\u628a\u88ab\u9b3c\u9644\u8eab\u7684\u5c0f\u63d0\u7434\uff0c\u8fd9\u662f\u4ed6\u8fdc\u623f\u4eb2\u621a\u5bc4\u6765"} +{"id": "4004611", "video_name": "a03a0dba-56bf-5f48-8299-aca16d334f6f", "text": "\u60f3\u8c61\u4e00\u4e2a\u4eba\u7275\u7740\u5916\u661f\u4eba\u7684\u624b\uff0c\u4e00\u8d77\u671b\u7740\u8fbd\u9614\u7684\u6d77\u6d0b\u3002"} +{"id": "1005968", "video_name": "6da1aca5-3bdf-5c77-9ee5-d9549b3c7e2c", "text": "\u65b0\u58a8\u897f\u54e5\u5dde\u5723\u83f2\u5e02\u5373\u5c06\u5efa\u9020\u4e00\u4e2a\u540d\u4e3a\u201c\u7279\u96f7\u65af\u00b7\u6851\u6258\u65af\u201d\u7684\u5168\u65b0\u516c\u5bd3\u7efc\u5408\u4f53\uff0c\u4f4d\u4e8e\u5e15\u5207\u79d1"} +{"id": "2006583", "video_name": "fdd85fb0-2081-56db-b839-4269313fb367", "text": "\u7f8e\u5473\u7684\u70ed\u72d7\u3002\u4fe1\u606f\uff1a\u7f8e\u5473\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006442", "video_name": "2c8289fa-44f3-5dc4-af76-5aa4a80c9502", "text": "\u514b\u82cf\u9c81\u4ee5\u52a8\u6f2b\u98ce\u683c4K\u9ad8\u6e05\u753b\u8d28\u541e\u566c\u91d1\u6b63\u6069\uff0c\u753b\u9762\u7ec6\u8282\u4e30\u5bcc\uff0c\u7167\u660e\u6548\u679c\u6781\u5177"} +{"id": "2003566", "video_name": "421382a5-2334-5d6c-bd2c-7723f90ab382", "text": "\u5b69\u5b50\u4eec\u7b11\u7740\u73a9\u800d\uff0c\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u4ed6\u4eec\u7684\u98ce\u7b5d\u5728\u6674\u6717\u7684\u84dd\u5929\u9ad8\u9ad8\u98de\u7fd4\u3002"} +{"id": "6002579", "video_name": "279088d1-01b6-5c02-977e-6c370cf44016", "text": "\u585e\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u5728\u8d70\u8def\u65f6\u4e0e\u6444\u50cf\u5934\u8fdb\u884c\u76ee\u5149\u63a5\u89e6\u3002"} +{"id": "2007275", "video_name": "4e994d28-f752-5fb6-a405-508734fa1830", "text": "\u67f4\u6cb9\u8f66\u96ea\u4f5b\u5170350\u4fa7\u9762\u9a76\u8fc7\u7279\u65af\u62c9\u3002"} +{"id": "1006997", "video_name": "8003ed8a-9d41-5e80-9cde-51003d1023ea", "text": "\u673a\u68b0\u8611\u83c7\u3001\u4e1b\u6797\u3001\u878d\u5316\u3001\u7c98\u6db2\u3001\u6d46\u7cca\u3001\u5f39\u8df3\u3001\u98a4\u52a8\u3001\u7535\u5b50\u4e16\u754c\u3001\u96a7\u9053\u3001"} +{"id": "8001341", "video_name": "9f509fd9-0939-598b-ace3-6bdfce0e0b6c", "text": "\u4e00\u4e2a\u753b\u9762\u4e2d\uff0c\u4eba\u7c7b\u8bd5\u56fe\u4e0e\u4e00\u4e9b\u5e26\u6709\u4eba\u5de5\u667a\u80fd\u7684\u534a\u673a\u5668\u4eba\u63e1\u624b\u4ee5\u6c42\u548c\u5e73\u3002\u4eba\u7c7b\u6587\u660e\u548c\u5177\u6709\u534a\u673a\u5668\u4eba\u4eba\u5de5\u667a"} +{"id": "1003708", "video_name": "446f774c-0ab2-52b6-ac7f-399ed129d687", "text": "\u4eba\u884c\u9053\u4e0a\u4eba\u4eec\u5feb\u901f\u884c\u8d70\u7684\u65f6\u95f4\u52a0\u901f\u6444\u5f71\u3002"} +{"id": "4003889", "video_name": "18e9a594-fc7f-559f-9288-9b9390414949", "text": "\u602a\u7269\u6811\u5728\u8bf4\u8bdd\uff0c\u7728\u773c\u775b\u3002"} +{"id": "4002735", "video_name": "3a3fd59a-c635-53b1-870e-baa116358ec7", "text": "\u6572\u95e8\uff0c\u95e8\u662f\u95ea\u4eae\u7684\u68d5\u8272\u3002"} +{"id": "7004004", "video_name": "cdb00e39-2bc0-59d7-9250-c6564b196f2c", "text": "\u4e00\u4e2a25\u5c81\u7684\u7537\u5b69\u548c\u4e00\u4e2a24\u5c81\u7684\u5973\u5b69\u5728\u4e00\u7c73\u7684\u8ddd\u79bb\u4e0a\u4ea4\u8c08\u4e86\u4e00\u5206\u949f\u3002"} +{"id": "1004220", "video_name": "4e1a441a-4c33-5739-b69d-a8b77b656edb", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u718a\u975e\u5e38\u5f00\u5fc3\uff0c\u8ffd\u6c42\u65f6\u5c1a\uff0c\u5728\u5546\u4e1a\u8857\u4e0a\u901b\u8857\u8d2d\u7269\u3002"} +{"id": "2003750", "video_name": "de140051-87c3-5d4f-b3a0-77aa1f3fb2a2", "text": "\u5728\u706b\u661f\u8868\u9762\uff0c3D\u6e32\u67d3\uff0c\u8ba1\u7b97\u673a\u56fe\u5f62\uff0c\u5bf9\u79f0\uff0cOctane\u6e32\u67d3\uff0c35mm\uff0c\u6d45\u666f\u6df1\uff0c9\uff1a16\uff0c\uff08\u590d\u6742\u7ec6\u8282\uff1a"} +{"id": "1006901", "video_name": "7e2ea241-5e13-5c34-8591-ac809a7058bb", "text": "\u4e00\u540d\u533b\u751f\u5728\u533b\u9662\u5de1\u89c6\u3002"} +{"id": "4004075", "video_name": "068caa8b-73e1-5c52-b377-099bb34b9367", "text": "\u4fe1\u606f\u7206\u70b8\uff0c\u6570\u636e\uff0c\u4fe1\u606f\u65f6\u4ee3\uff0c\u8be6\u7ec6\uff0c\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\uff0c8K\uff0c\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "2004071", "video_name": "c68fb6a0-4145-59e5-a860-ad30186786e9", "text": "\u6751\u91cc\u7684\u5b69\u5b50\u4eec\u5728\u5e84\u7a3c\u4e2d\u73a9\u800d\uff0c\u73a9\u7740\u9b54\u5e7b\u7684\u91d1\u8272\u5c0f\u725b\u56fe\u50cf\u3002"} +{"id": "1004888", "video_name": "5a5a707c-1d19-5489-8f50-a121992dd0de", "text": "\u5728\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u666f\u89c2\u4e2d\uff0c\u4e00\u4e2a\u62e5\u6709\u7384\u5e7b\u529b\u91cf\u7684\u52a8\u6f2b\u89d2\u8272\u4e0e\u4e00\u53ea\u5de8\u5927\u7684\u673a\u68b0\u751f\u7269\u8fdb\u884c\u6218\u6597\uff0c\u6a31"} +{"id": "6002291", "video_name": "e4224e25-7096-54c3-b0d7-8dd26146da8e", "text": "\u68ee\u6797\u4e2d\u8df3\u8dc3\u7684\u72d0\u72f8\u3002\u65f6\u957f5\u5206\u949f\u3002"} +{"id": "4003859", "video_name": "e5f244e2-5d33-514a-bda1-e292b5805c2d", "text": "\u6241\u5e73\u6446\u653e\u85b0\u8863\u8349\u548c\u8309\u8389\u82b1\u4ee5\u53ca\u9999\u6c1b\u7269\u54c1\u3002"} +{"id": "1006126", "video_name": "704fd4fe-e1b6-56fb-85c4-9080b53f59cf", "text": "\u767d\u8272\u8fde\u8863\u88d9\u5929\u4f7f\u9713\u8679\u8272\u7fc5\u8180\u5728\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5168\u8eab\u62c9\u8fd1\u3002"} +{"id": "7002450", "video_name": "b709a94c-7cbf-56a8-b267-ea8eade3e343", "text": "\u997c\u5e72\u5e26\u7740\u773c\u775b\u3001\u624b\u81c2\u548c\u817f\uff0c\u5728\u725b\u5976\u676f\u65c1\u8df3\u821e\u3002"} +{"id": "6002169", "video_name": "fc42b27d-a0f9-5ade-a2ea-cf5b8ff393e0", "text": "\u6570\u5b66\u6392\u540d\u7b2c\u4e00\uff0c\u5750\u5728\u68cb\u76d8\u4e0a\uff0c\u8d85\u9ad8\u6e054k\u8d85\u903c\u771f\u7684\u7f29\u653e\u6444\u50cf\u5934\u3002"} +{"id": "1004661", "video_name": "56b02cb9-fe53-5b58-b786-1f77f1bafaec", "text": "\u4e09\u8272\u732b\u7a7f\u7740\u6c5f\u6237\u65f6\u4ee3\u98ce\u683c\u7684\u6b66\u58eb\u670d\u8096\u50cf\u3002"} +{"id": "6004909", "video_name": "01896f13-e0fe-563f-bc6d-5160d0b5a140", "text": "\u5b87\u5b99\u4e2d\u7684\u5730\u7403\u88ab\u5176\u4ed6\u516b\u5927\u884c\u661f\u5305\u56f4\u7740\u3002"} +{"id": "1006607", "video_name": "790c2bad-37b0-5cfc-952b-1f7ce4a3fa88", "text": "\u4e2d\u4e16\u7eaa\u7684\u5e06\u8239\u5728\u6d77\u4e0a\u822a\u884c\uff0c\u98ce\u6d6a\u62cd\u6253\u7740\u5e06\u8239\uff0c\u5e06\u8239\u5904\u4e8e\u6c89\u6ca1\u7684\u5371\u9669\u4e4b\u4e2d\u3002"} +{"id": "7002120", "video_name": "ad1349b3-32b8-548f-b9cc-63beeeff32a4", "text": "\u5973\u5b50\u5728\u4eba\u7fa4\u4e2d\u5236\u9020\u5149\u5b66\u5e7b\u8c61 16:9"} +{"id": "2005344", "video_name": "60f06d4b-4165-595d-84cf-50eff9904452", "text": "\u5728\u5927\u5b66\u5bbf\u820d\u91cc\uff0c\u4e00\u4e2a\u5b66\u751f\u6b63\u5728\u4f7f\u7528\u601d\u8def\u548c\u6750\u6599\u5236\u4f5c\u4e00\u4e2a\u7ea65\u5206\u949f\u7684\u89c6\u9891\u9879\u76ee\u3002"} +{"id": "4002900", "video_name": "7f6c77fb-1146-5356-a3d4-3aba17131bbc", "text": "\u4e00\u53ea\u718a\u732b\u5728\u6e38\u6cf3\u6c60\u51b2\u6d6a\u3002"} +{"id": "3006724", "video_name": "4bf7cf18-af0a-50e8-a8c6-4af06e1c5763", "text": "\u4eba\u4eec\u5728\u62c9\u5c14\u592b\u00b7\u5df4\u514b\u5e0c\u98ce\u683c\u7684\u8d2b\u6c11\u533a\u95f2\u901b\u3002"} +{"id": "7002172", "video_name": "ce6d33c9-44e7-54d9-9a85-514beeeb3969", "text": "\u4e3b\u6301\u4eba\u7ad9\u5728\u6444\u50cf\u673a\u524d\u6b22\u8fce\u89c2\u4f17\uff0c\u5411\u89c2\u4f17\u4ecb\u7ecd\u89c6\u9891\u5185\u5bb9\uff0c\u5e76\u5448\u73b0\u51fa\u4e30\u5bcc\u591a\u5f69\u3001\u5438\u5f15\u4eba\u7684\u52a8\u7269"} +{"id": "1006307", "video_name": "73705773-c65f-5d89-a743-45237a72962e", "text": "\u4e00\u4e2a\u4f7f\u7528\u5b57\u6bcdf\u8fdb\u884c3D\u52a8\u753b\u62fc\u63a5\u7684\u89c6\u9891\u4ecb\u7ecd\u52a8\u753b\u3002"} +{"id": "6004613", "video_name": "20416ccf-e5df-5620-8f7a-157fa8607553", "text": "\u4e00\u5f20\u6d82\u9e26\u7684\u7eb8\u653e\u5728\u4e00\u5f20\u6ef4\u7740\u6c34\u6ef4\u7684\u684c\u5b50\u4e0a\u3002"} +{"id": "1005686", "video_name": "6878c209-ce3e-5dae-b636-eead53979ce3", "text": "\u5728\u4e00\u4e2a\u672a\u6765\u4e16\u754c\u4e2d\uff0c\u7531\u5e03\u62c9\u5fb7\u00b7\u76ae\u7279\u626e\u6f14\u7684\u5b87\u822a\u5458\u8bd5\u56fe\u5728\u4e00\u4e2a\u5145\u6ee1\u690d\u7269\u548c\u50f5\u5c38\u7684\u82b1\u56ed"} +{"id": "7002089", "video_name": "c3d1bfc5-3323-5222-96dd-9c67b8c991e0", "text": "\u51ef\u6258\u6309\u7167\u65e5\u672c\u52a8\u6f2b\u300a\u9c81\u90a6\u4e09\u4e16\u300b\u7684\u98ce\u683c\u84b8\u5236\u7740\u8fbe\u5df4\u79d1\u3002"} +{"id": "1006541", "video_name": "77d60fe7-420f-58b2-be47-3f7830e49ccf", "text": "\u4e00\u7247\u5145\u6ee1\u751f\u673a\u7684\u3001\u9633\u5149\u666e\u7167\u7684\u68ee\u6797\uff0c\u6709\u7740\u4e94\u989c\u516d\u8272\u7684\u6811\u6728\u548c\u9e1f\u513f\u7684\u5541\u557e\u58f0\u3002"} +{"id": "4004385", "video_name": "25276aab-ff7f-5c96-9a74-1bb1976f925f", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u8857\u4e0a\u62e5\u62b1\u7740\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "2005966", "video_name": "fe38edaf-74cb-5617-8ab9-416430104c95", "text": "\u6625\u9677\u9631\u662f\u6e38\u620f\u300a\u4e94\u591c\u540e\u5bab\u300b\u4e2d\u7684\u673a\u68b0\u52a8\u7269\uff0c\u5728\u7535\u5f71\u300a\u661f\u671f\u516d\u591c\u72c2\u70ed\u300b\u4e2d\u7684\u821e\u6c60\u91cc"} +{"id": "4002077", "video_name": "f1a2369b-150b-5e6c-a597-e3891c58c448", "text": "\u6811\u53f6\u5728\u5b81\u9759\u7684\u516c\u56ed\u4e2d\u98d8\u843d\uff0c\u8425\u9020\u51fa\u5b81\u9759\u7965\u548c\u7684\u6c1b\u56f4\u3002"} +{"id": "1003337", "video_name": "3d6a1f25-86c8-52bf-8990-6903cd07ac4b", "text": "\u5723\u7ecf\u4e2d\u7684\u5148\u77e5\u4ee5\u5229\u4e9a\u5728\u7ea6\u65e6\u6cb3\u5bf9\u4ee5\u8272\u5217\u4eba\u8bb2\u8bdd\uff0c\u8fd9\u5728\u65e7\u7ea6\u4e2d\u3002"} +{"id": "2007160", "video_name": "d3bea1d9-799d-500c-8358-bb1047f38c94", "text": "\u732b\u4ece\u9668\u77f3\u9003\u8dd1\uff0c\u4e16\u754c\u672b\u65e5\u3002"} +{"id": "8002906", "video_name": "b7f3b0d1-13e7-5f8b-a095-9bd8aa3378a9", "text": "Source sentence: \u4e00\u5ea7\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u5efa\u7b51\uff0c\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "7003045", "video_name": "4db0a395-8103-5b9e-bcea-2dea1c1ddd9d", "text": "\u83f2\u5f8b\u5bbe\u4eba\u8bf7\u6c42\u7f8e\u56fd\u4eba\u559d\u5564\u9152\u3002"} +{"id": "5001889", "video_name": "eba112f9-6437-57b0-822a-dc30c92cbdb2", "text": "4K\uff0c\u9ad8\u6e05\uff0c\u7535\u5f71\u5316\uff0c\u903c\u771f\uff0c\u52a8\u753b\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u68ee\u6797\u4e2d\u6f2b\u957f\u7684\u65c5\u7a0b\u3002"} +{"id": "8002131", "video_name": "7171df6b-44c4-58e6-84f3-5972cb750b6d", "text": "\u8fbe\u7ef4\u5fb7\u9a91\u7740\u767d\u9a6c\u4e0e\u4ed6\u7684\u654c\u4eba\u6218\u6597\uff0c\u6765\u81ea\u8428\u677e\u3002"} +{"id": "3003242", "video_name": "214c8280-3a1c-5bee-a9e9-ed537baac8e0", "text": "\u4f7f\u7528\u6211\u7684\u7167\u7247\u5236\u4f5c\u4e00\u6bb5157\u79d2\u7684\u89c6\u9891\uff0c\u89c6\u9891\u5e94\u8be5\u5305\u542b\u4e0d\u540c\u573a\u666f\u7684\u68ee\u6797\u3002"} +{"id": "7003741", "video_name": "d99c905d-5d62-5820-a48d-dca04973273e", "text": "\u5f71\u96624K\uff1a\u5fcd\u8005\u8df3\u5728\u7a7a\u4e2d\uff0c\u7528\u4ed6\u7684\u5200\u5251\u5728\u6444\u50cf\u5934\u4e0a\u5207\u5272\uff0c\u5168\u666f\u3002"} +{"id": "1003261", "video_name": "3c094eae-df12-520d-8453-6728114fd717", "text": "\u94f6\u6cb3\u7cfb\u9760\u8fd1\u661f\u4e91\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "0005691", "video_name": "1f7a6c06-d5c2-50fe-8df8-02dfd1063261", "text": "\u4e16\u754c\u5728\u706b\u4e2d\u71c3\u70e7\u7684\u592a\u7a7a\u666f\u8c61"} +{"id": "6003365", "video_name": "317ccbfe-9546-547c-85ae-e929239f2ff5", "text": "\u5728\u68ee\u6797\u4e2d\u751f\u6210\u4e00\u53ea\u5927\u8c61\uff0c\u6301\u7eed\u5341\u5206\u949f\u3002"} +{"id": "0006139", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "\u52a8\u753b\u7247\uff0c\u4e00\u4e2a\u4e50\u961f\u5728\u9a6c\u63d0\u5c3c\u9152\u5427\u6f14\u594f\uff0c\u6444\u50cf\u5934\u7f29\u653e\uff0c\u52a8\u4f5c2"} +{"id": "8001362", "video_name": "6b41e8ef-7d68-58d8-8e7a-2ef6260921ba", "text": "\u91d1\u9c7c\u5728\u9c7c\u7f38\u91cc\u6e38\u52a8\u3002"} +{"id": "4002799", "video_name": "73b272ef-6d7a-5702-b97f-087f8bb283d0", "text": "Jitendra\u548cGopal\u542c\u4ece\u4ed6\u7684\u547d\u4ee4\uff0c\u8ddf\u7740\u4ed6\u8d70\u4e86\u3002\u665a\u4e0a\u6d3e\u5bf9\u5f00\u59cb\u4e86\uff0c\u9b3c\u4ee5\u5979\u53ef\u6015\u7684\u5f62\u6001\u51fa\u73b0\u4e86\u3002"} +{"id": "1004066", "video_name": "4b7777d9-8191-5531-afa2-cd28ce250e4e", "text": "\u672a\u6765\u57ce\u5e02\u7c7b\u4f3c\u4e8e\u300a\u6c99\u4e18\u300b\u7535\u5f71\uff0c\u6781\u957f\u8fdc\u666f\uff0c\u5c0f\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "8001980", "video_name": "961d77e4-1ead-5fcb-a539-9ce36d4ee6e2", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u6c99\u6f20\u4e2d\u9003\u79bb\u6124\u6012\u4eba\u7fa4\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "7004967", "video_name": "0a0e10d3-0948-5aa6-bb40-fc4fb2b296f7", "text": "\u4e09\u4f4d\u56fd\u738b\u7a7f\u7740\u4f20\u7edf\u5370\u5ea6\u670d\u9970\uff0c\u4e00\u4f4d\u5973\u738b\u4e5f\u7a7f\u7740\u4f20\u7edf\u5370\u5ea6\u670d\u9970\u5750\u5728\u5bab\u6bbf\u91cc\u3002"} +{"id": "5001051", "video_name": "1017e3aa-449e-59df-a156-a267d613541f", "text": "\u5c55\u793a\u4e00\u6761\u5e72\u6db8\u7684\u6cb3\u5e8a\uff0c\u66fe\u7ecf\u6d41\u6c34\u6f7a\u6f7a\uff0c\u73b0\u5728\u5e72\u88c2\u800c\u8d2b\u7620\u3002\u8ba9\u5b83\u52a8\u8d77\u6765\u3002"} +{"id": "6004204", "video_name": "d24f163b-3cf2-589b-8b88-5b9b95e85609", "text": "\u4e00\u4e2a\u7e41\u534e\u7684\u5e02\u573a\u5750\u843d\u5728Sparkletown\u7684\u4e2d\u5fc3\uff0c\u644a\u8d29\u4eec\u5728\u90a3\u91cc\u51fa\u552e\u795e\u5947\u7684\u5c0f\u73a9\u610f\u3001\u9c9c\u8273\u7684\u82b1"} +{"id": "4003175", "video_name": "b4909e28-bcf2-5f87-b576-b5267ff6081e", "text": "Translation: \u897f\u65b9\u4e50\u571f\u7684\u7f8e\u4e3d\u666f\u8c61"} +{"id": "8001674", "video_name": "c9ac2f1c-61bc-5c1d-94fd-7d7ae1b75f80", "text": "\u4e00\u5e45\u6c34\u5f69\u753b\uff0c\u753b\u7684\u662f\u4e00\u4e2a\u6a59\u767d\u76f8\u95f4\u7684\u732b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "2004188", "video_name": "f6ef393a-5131-56ad-bba2-7920dfa789d8", "text": "\u4e00\u4e2a\u5973\u5b69\u8f6c\u8fc7\u8eab\u6765\u51b2\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "1006399", "video_name": "75329d02-e16b-5177-9f52-0244b449d005", "text": "\u8036\u7a23\u57fa\u7763\u5728\u76f8\u673a\u955c\u5934\u4e0b\u88ab\u6355\u6349\uff0c\u653e\u5927\u81f3\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u5927\u9897\u7c92\u9ed1"} +{"id": "1004902", "video_name": "5abb5474-5a34-5efa-8a20-deb26632352c", "text": "\u8bb0\u4f4f\uff0c\u5386\u53f2\u5145\u6ee1\u4e86\u7b49\u5f85\u88ab\u53d1\u73b0\u7684\u8ff7\u4eba\u6545\u4e8b\u3002"} +{"id": "0006853", "video_name": "343fdb0c-4656-5605-97f6-b68038e832b1", "text": "\u4e00\u68f5\u795e\u5723\u7684\u6811\uff0c\u4e2d\u5fc3\u6709\u4e00\u4e2a\u54e5\u7279\u5f0f\u5927\u6559\u5802\uff0c\u6811\u53f6\u9c9c\u8273\u660e\u4eae\uff0c\u6811\u76ae\u6df1\u68d5\u8272\u3002\u6811"} +{"id": "7004151", "video_name": "a496c48a-cb58-5d2c-960f-1560278a5890", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u5728\u610f\u5927\u5229\u6d77\u6ee9\u4e0a\u4e0e\u8bb8\u591a\u5973\u4eba\u8df3\u821e\u3002"} +{"id": "0004083", "video_name": "02e400af-3245-5dd0-9bdd-1f21d145f45e", "text": "\u5728\u4e00\u5e62A\u7ea7\u522b\u7684\u623f\u5b50\u91cc\u65b0\u88c5\u4fee\u7684\u53a8\u623f\u91cc\u94fa\u8bbe\u74f7\u7816\u5730\u677f\u3002"} +{"id": "7003085", "video_name": "9557554a-bb7f-5f95-9898-950cfec4bebf", "text": "\u62c9\u4e01\u7537\u5b69\u770b\u5230\u4ed6\u8d2b\u7a77\u7684\u5bb6\u5ead\u3002"} +{"id": "0006508", "video_name": "2dc46871-474d-5259-85fb-2923fe43f62a", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u767d\u7699\u7684\u808c\u80a4\uff0c\u9ec4\u8272\u7684\u5934\u53d1\uff0c\u767d\u8272\u7684\u6bd4\u57fa\u5c3c\uff0c\u6c99\u6ee9\uff0c\u84dd\u5929\uff0c\u9633\u5149\u3002"} +{"id": "1006722", "video_name": "7b30b1fd-36d9-5689-bfd1-e1e24446d331", "text": "\u91d1\u6bdb\u5bfb\u56de\u72ac\u5177\u6709N64\u6e38\u620f\u98ce\u683c\u3002"} +{"id": "1006675", "video_name": "7a57ecec-cdc5-5429-bb30-4498b08e6919", "text": "\u4e00\u4e2a\u4ece\u89c2\u666f\u70b9\u770b\u5230\u7684\u65e5\u843d\u3002"} +{"id": "1006328", "video_name": "73cd83ba-3452-5472-aa3e-4d219c52caef", "text": "\u63cf\u7ed8\u4e00\u4e2a\u540d\u53ebRafa\u7684\u5c0f\u5b69\u5b50\u7684\u6027\u683c\u3002\u63cf\u8ff0\u4ed6\u7684\u8eab\u4f53\u7279\u5f81\u3001\u6109\u5feb\u7684\u9762\u90e8\u8868\u60c5\u548c\u5e38\u5e38\u4e0d\u5b89\u9759\u548c\u5145\u6ee1\u6d3b"} +{"id": "7003449", "video_name": "e2a184c0-34cf-5d1c-8790-22ad97684d4b", "text": "\u793e\u4ea4\u7f51\u7edc\u548c\u5373\u65f6\u901a\u8baf\u5df2\u7ecf\u6210\u4e3a\u6211\u4eec\u751f\u6d3b\u7684\u4e00\u90e8\u5206\u3002"} +{"id": "6004525", "video_name": "9870e4f4-8aa7-53dd-97e7-28d7cc721a22", "text": "\u4e00\u4e2a\u5927\u5efa\u7b51\u7269\u4e0a\u753b\u7740\u201c\u514d\u8d39\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "8002875", "video_name": "2d36e2a0-1df4-5a21-8206-16931be0f517", "text": "\u5c55\u793a\u5148\u5929\u514d\u75ab\u7cfb\u7edf\u7684\u4f5c\u7528\uff1a\u5c55\u793a\u566c\u83cc\u4f5c\u7528\u7684\u8fc7\u7a0b\uff0c\u5176\u4e2d\u4e13\u95e8\u7684\u767d\u7ec6\u80de\u5c06\u75c5\u539f\u4f53\u541e\u566c\u5e76"} +{"id": "1005405", "video_name": "634d66ff-b183-5ded-90fb-541720476ebf", "text": "\u5b87\u5b99\u4e2d\u6700\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u559d\u725b\u5976\u3002"} +{"id": "2005973", "video_name": "b2d115be-d8eb-518d-bf0b-3ad60a1768d4", "text": "\u4e00\u68f5\u80e1\u6912\u690d\u7269\u751f\u957f\u7684\u5ef6\u65f6\u6444\u5f71\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u9c9c\u8273\u8272\u5f69\u3002 \n\nSource sentence: The internet has revolutionized the way we communicate"} +{"id": "6004583", "video_name": "81e2eccc-c7d0-57f8-86f5-472f1e5c0be5", "text": "\u4e00\u4e2a\u5927\u7ea65\u5c81\u7684\u5c0f\u7537\u5b69\u5750\u5728\u4e1b\u6797\u4e2d\u592e\uff0c\u770b\u8d77\u6765\u5f88\u5bb3\u6015\u3002\u4e00\u53ea\u72ee\u5b50\u7ad9\u5728\u9644\u8fd1\uff0c\u770b\u7740\u7537\u5b69\u3002"} +{"id": "5001060", "video_name": "05360052-7262-56f0-af92-a2b3b5e7eb09", "text": "\u7c89\u8272\u5fc3\u5f62\u526a\u88c1\u3001\u62fc\u8d34\u3001\u52a8\u6001\u8fb9\u7f18"} +{"id": "7002625", "video_name": "880b80bd-7688-50d5-a4c9-081fb7a69251", "text": "\u4e00\u4e2a\u5e26\u7ea2\u5e3d\u7684\u7537\u4eba\u7a7f\u8fc7\u5c71\u8109\uff0c\u5468\u56f4\u6709\u6811\u548c\u8349\u3002 \n\nSource sentence: The cat is sleeping on the mat. \n\n\u90a3\u53ea\u732b\u6b63\u5728"} +{"id": "2006722", "video_name": "d70c3ce9-60bc-5d84-8c99-6951e61eccf9", "text": "\u4e1b\u6797\u4e2d\u4e00\u53ea\u5de8\u5927\u7684\u5927\u7329\u7329\u5c16\u53eb\u3002"} +{"id": "1006236", "video_name": "72424e1b-af4c-5abe-a4be-6ecd7a1cff87", "text": "\u4e00\u4e32\u9999\u8549\u6389\u8fdb\u6c34\u91cc\uff0c\u6e85\u8d77\u6c34\u82b1\uff0c\u98de\u6e85\u3002"} +{"id": "5001615", "video_name": "e1c97529-e3cc-5a78-aa39-4c1ead7ca442", "text": "\u91cf\u5b50\u8ba1\u7b97\u7b97\u6cd5\u7684\u7a81\u7834\u662f\u89e3\u9501\u610f\u8bc6\u4e4b\u8c1c\u7684\u5173\u952e\u3002\u5f53\u5979\u8c03\u6574\u5168\u606f\u56fe\u65f6\uff0c\u4e00\u5757\u8bb0\u5fc6\u82af\u7247\u4ece\u5979\u7684\u53e3"} +{"id": "5001916", "video_name": "59f68eb1-da63-56f7-a441-3dbc4bb7460e", "text": "\u60f3\u8c61\u529b\u5851\u9020\u4e16\u754c\u7684\u65e5\u5f0fLofi\u6f2b\u753b\u98ce\u683c\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "2003777", "video_name": "2b9b7cde-c4b6-5ea1-9462-edb16337a65f", "text": "\u72d7\u5728\u6d77\u6ee9\u4e0a\u8df3\u8dc3\u63a5\u4f4f\u98de\u76d8\u3002"} +{"id": "1004414", "video_name": "518d7136-887f-5b38-b5e0-bc1a365218e9", "text": "\u4e09\u4e2a\u9f7f\u8f6e\u5355\u72ec\u8fd0\u8f6c\u65cb\u8f6c\u3002"} +{"id": "6002468", "video_name": "b5d60fce-bee6-5247-b8e4-b43c223e2581", "text": "\u4e9a\u9a6c\u900a\u6cb3\u5728\u5df4\u897f\u4e9a\u9a6c\u5b59\u5dde\u7684\u9a6c\u7459\u65af\u5e02\u3002\u4e9a\u9a6c\u900a\u6cb3\u3001\u5929\u7a7a\u3001\u4e91\u6735\u3001\u7eff\u8272"} +{"id": "8003812", "video_name": "156f727c-b7b7-54a4-8a2d-67b84b8bbbfb", "text": "\u90bb\u6751\u7684\u4eba\u4eec\u524d\u6765\u76ee\u7779\u5979\u5728\u5929\u7a7a\u4e2d\u7ed8\u5236\u7684\u7f8e\u666f\u3002"} +{"id": "1003940", "video_name": "48b9f935-2ac7-5cb0-90f9-f0aa121a56a9", "text": "\u8df3\u821e\u7684\u8001\u9f20\u5728\u65f6\u949f\u4e0a\uff0c3D\u5361\u901a\u98ce\u683c\u3002"} +{"id": "8003027", "video_name": "073b34b5-eade-5446-947b-fac9caeafc48", "text": "\u6444\u5f71\uff0cTommy Ton \u98ce\u683c\uff0c\u80f6\u7247\u6444\u5f71"} +{"id": "0004101", "video_name": "03389ce2-ca57-5da2-88a0-991c570425ac", "text": "\u6a21\u7279\u5fae\u7b11\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "3004111", "video_name": "77994556-7754-5bb9-9c40-71a5f9ba036b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u957f\u53d1\u53ef\u7231\u5973\u5b69\u624b\u62ff\u4e00\u6735\u7f8e\u4e3d\u7684\u82b116:9\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a"} +{"id": "0003964", "video_name": "00c30ed3-28a9-5d4d-bb6f-36067e8b502d", "text": "\u4e54\u6cbb\u00b7W\u00b7\u5e03\u4ec0\u57282012\u5e74\u5723\u8bde\u8282\u548c\u6c83\u5c14\u7279\u00b7\u6000\u7279\u8c08\u8bdd\uff0c\u5f53\u65f6\u4e0b\u7740\u96ea\uff0c\u8c08\u8bba\u300a\u7edd\u547d\u6bd2\u5e08"} +{"id": "4003838", "video_name": "24ce1402-4003-5024-909c-9c97d65c3013", "text": "\u7a7a\u95f2\u59ff\u52bf\uff0c\u8df3\u8dc3\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u5973\u6027\u84b8\u6c7d\u670b\u514b\u6218\u58eb\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\uff0c\u611f\u6027\uff0c"} +{"id": "7003634", "video_name": "acadf8dd-a6da-5c71-bbed-27a5d869ce17", "text": "\u4e0a\u534a\u8eab\uff0c\u521b\u9020\u4e00\u4e2a\u62e5\u6709\u9c9c\u7ea2\u5934\u53d1\u3001\u7a7f\u7740\u590f\u65e5\u8fde\u8863\u88d9\u3001\u624b\u6301\u91ce\u82b1\u82b1\u675f\u3001\u7ad9\u5728\u9ad8\u8349\u5730\u91cc"} +{"id": "2004076", "video_name": "87e0fca4-b36d-5568-91de-df987a4f73af", "text": "\u662f\u7684\uff0c\u81ea\u4fe1\u5f88\u91cd\u8981\uff0c\u56e0\u4e3a\u5982\u679c\u4f60\u611f\u5230\u81ea\u5351\uff0c\u4f60\u5c31\u4f1a\u8868\u73b0\u51fa\u4f4e\u4eba\u4e00\u7b49\u7684\u884c\u4e3a\u3002\u6211\u4eec\u77e5\u9053\u4ec5\u6709\u81ea\u4fe1\u5e76\u4e0d\u80fd\u89e3\u51b3\u6240\u6709\u95ee\u9898"} +{"id": "3003876", "video_name": "66e92c4f-17b9-59b9-83c5-9530499ae5b0", "text": "\u591c\u7a7a\u7684\u5ef6\u65f6\u6444\u5f71\uff0c\u4e00\u67b6\u8c6a\u534e\u55b7\u6c14\u5f0f\u98de\u673a\u7f13\u7f13\u98de\u884c\u3002"} +{"id": "1006905", "video_name": "7e464ee8-6bca-5444-aa22-ff224063c25e", "text": "\u5976\u5976\u62ff\u51fa\u4e00\u5c0f\u74f6\u3001\u5723\u8bde\u6811\u548c\u4e00\u90e8\u9ed1\u767d\u7535\u5f71\uff0c\u90a3\u662f\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\u7684\u3002"} +{"id": "4004845", "video_name": "7d9e96f0-f1ba-559d-b652-f0550ee81c04", "text": "\u6851\u8695\u4e1d\u7f0e\u5e26\u7cfb\u5728\u6811\u679d\u4e0a\uff0c\u968f\u98ce\u98d8\u626c\uff0c\u80cc\u666f\u662f\u768e\u6d01\u7684\u6708\u4eae\u548c\u591c\u7a7a\uff0c\u4e91\u6735"} +{"id": "0006639", "video_name": "301266f2-0354-5996-b327-f358787888eb", "text": "\u9c8d\u52c3\u00b7\u7f57\u65af\u5728\u57ce\u5e02\u5730\u94c1\u7ad9\u5730\u4e0b\u55b7\u6d82\u4e00\u5835\u5899\u3002"} +{"id": "7002442", "video_name": "a03d48d2-94eb-5982-be4b-a846351ef646", "text": "\u952e\u76d8\u5e26\u7740\u773c\u775b\u548c\u5634\u5df4\uff0c\u624b\u548c\u817f\u8df3\u821e\u3002"} +{"id": "4004725", "video_name": "b9682da1-53f0-5bc9-94e6-d909f83a3d7b", "text": "\u4e00\u4e2a\u9ad8\u5927\u4f18\u96c5\u7684\u673a\u5668\u4eba\uff0c\u773c\u775b\u95ea\u70c1\u7740\u5149\u8292\uff0c\u8eab\u4f53\u5149\u6ed1\u5982\u91d1\u5c5e\uff0c\u77d7\u7acb\u5728\u4e00\u4e2a\u5148\u8fdb\u7684\u5916\u661f\u5efa\u7b51"} +{"id": "2003488", "video_name": "f78847f1-432a-57d1-a648-c62881b9812f", "text": "\u50f5\u5c38\u5546\u4eba\u671d\u7740\u89c2\u4f17\u5728\u5e9f\u5f03\u57ce\u5e02\u4e2d\u5954\u8dd1\u3002\u4ee51990\u5e74\u4ee3\u7684\u8d5b\u535a\u670b\u514b\u548c\u6050\u6016\u7535\u5f71\u98ce"} +{"id": "3006344", "video_name": "4484f677-3e26-54bc-b95b-346d01215301", "text": "\u4e00\u500b iPhone \u5145\u96fb\u5668\u8b8a\u6210\u4e00\u689d\u86c7\u3002"} +{"id": "0004224", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u6444\u5f71\u5c55\u73b0\u4e86\u4fc4\u7f57\u65af\u5b87\u822a\u5458\u5728\u8054\u76df\u53f7\u5b87\u5b99\u98de\u8239\u4e2d\u7684\u60c5\u666f\u3002"} +{"id": "2007390", "video_name": "67b45f46-8254-5ad0-8a71-82b6558c5533", "text": "\u505c\u8f66\u6807\u5fd7\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u60ca\u4eba\u7684\u5149\u7206\u3002"} +{"id": "0006678", "video_name": "30cf92c8-c9f2-5be3-8b14-3551eea9dca6", "text": "\u5b8f\u89c2\u62cd\u6444\u62bd\u8c61\u53f6\u5b50\uff0c\u914d\u4ee5\u9634\u6697\u7684\u706f\u5149\u3001\u96fe\u6c14\uff0c\u8d85\u73b0\u5b9e\u3001\u7535\u5f71\u822c\u768416:9\u753b\u9762\u3002"} +{"id": "4003520", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "\u5c0f\u8c61\u5934\u795e\u50cf\u5361\u901a\u63d2\u56fe\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u9762\u5bb9\u6e05\u6670\uff0c\u8eab\u5904\u65e5\u843d\u4e2d\u7684\u82b1\u56ed\u3002"} +{"id": "8003066", "video_name": "bdaab750-c1ac-5c2c-ab5f-f7c4bca0ba51", "text": "\u5c0f\u4eba\u53d1\u73b0\u4e86\u4e00\u9897\u51b0\u679c\uff0c\u7136\u540e\u5403\u4e86\u5b83\u3002"} +{"id": "2003160", "video_name": "b18fcc11-c03d-5bd6-ac3a-3b8287bcddfe", "text": "\u6728\u5c51 \u6d88\u606f\uff1aVIRU (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002570", "video_name": "14b11de7-fe61-5d86-8da0-e928f6bfb4c0", "text": "\u7f8e\u4e3d\u5b8c\u7f8e\u7684\u6d77\u6d0b\u65e5\u843d\u65f6\u95f4\u6d41\u901d\u6444\u5f71\u3002"} +{"id": "6003693", "video_name": "a53da358-8f5d-579a-8f85-d33a5907ace0", "text": "\u592a\u9633\u7167\u8000\u7740\uff0c\u4e00\u53ea\u5927\u8c61\u5728\u5c71\u4e0a\u7684\u96ea\u5730\u91cc\u8d70\u8def\u3002"} +{"id": "0004013", "video_name": "018dcb69-79c2-592a-abc3-be741c8a177a", "text": "\u7537\u4eba\u5728\u8def\u8fb9\u7684\u8857\u706f\u4e0b\uff0c\u665a\u4e0a\u770b\u7740\u624b\u8868\uff0c3D\u52a8\u753b\u3002"} +{"id": "7000000", "video_name": "4dba18fe-f624-53ed-8c5d-566e26c5322d", "text": "\u90a3\u4e2a\u5c0f\u52a8\u753b\u5973\u5b69\u5728\u7ef3\u5b50\u548c\u5708\u4e4b\u95f4\u8df3\u8dc3\u7740\uff0c\u5fae\u7b11\u7740\uff0c\u5feb\u4e50\u5730\u5954\u8dd1\u7740\u3002"} +{"id": "3005516", "video_name": "aea908d6-23a6-5551-b035-d754cb2b6e54", "text": "\u5728\u68ee\u6797\u4e2d\u6f02\u6d6e\u7740\u4e00\u4e2a\u9b3c\u9b42\uff0c\u5728\u6708\u5149\u4e0b\u6563\u53d1\u8367\u5149\uff0c\u68ee\u6797\u5f88\u6df1\u3002 \n\nSource sentence: The old man sat on"} +{"id": "6003960", "video_name": "ea1039ca-98e4-5045-9727-d1e5ee4c2900", "text": "\u4e00\u4e2a\u4eba\u5728\u5c71\u9876\u4e0a\u4e0e\u5b87\u5b99\u5bf9\u9f50\u7684\u5b81\u9759\u573a\u666f\u3002"} +{"id": "8002823", "video_name": "420184f6-2f2c-589e-a872-5ad8da3d7ca7", "text": "\u8fd9\u5bf9\u592b\u5987\u4e4b\u95f4\u7684\u5173\u7cfb\u66f4\u52a0\u7262\u56fa\uff0c\u4ed6\u4eec\u5206\u4eab\u4e86\u4e00\u6bb5\u548c\u5e73\u7684\u65f6\u523b\uff0c\u4ed6\u4eec\u7684\u8868\u60c5\u53cd\u6620\u51fa\u5e78\u798f\u548c\u76f8\u4e92\u7684"} +{"id": "5001958", "video_name": "d1eadbfa-17c2-58f0-a635-8b24d49d1a06", "text": "\u7c89\u8272\u5973\u5b69\uff0c\u957f\u88d9\uff0c\u6a31\u82b1\u6811\uff0c\u6a31\u82b1\u98d8\u843d\u3002"} +{"id": "1004274", "video_name": "4f1256a8-ea17-5a4e-a0c2-74c3e5f2523a", "text": "\u975e\u5e38\u6f02\u4eae\u7684\u5973\u5b69\u4e0b\u4e86\u98de\u673a\u5728\u7f8e\u56fd\u3002"} +{"id": "4003101", "video_name": "5a0f084d-e35f-5e3f-9028-db09b217bec2", "text": "\u8003\u53e4\u5b66\u5bb6\u5728\u53e4\u57c3\u53ca\u5893\u7a74\u4e2d\u53d1\u73b0\u4e86\u8d85\u8fc73,000\u5e74\u5386\u53f2\u7684\u871c\u7f50\uff0c\u4ecd\u7136\u5b8c\u5168\u53ef\u98df\u7528\u3002"} +{"id": "2003351", "video_name": "a6b6b717-5b63-5615-85cb-83c065bbd4f9", "text": "\u592a\u9633\u707f\u70c2\u5730\u7167\u8000\u7740\uff0c\u5c0f\u677e\u9f20\u76b1\u7740\u7709\u5934\uff0c\u62ff\u7740\u5c0f\u7bee\u5b50\u770b\u8d77\u6765\u5f88\u7126\u6025\u3002"} +{"id": "2004790", "video_name": "8492469b-8e93-5672-9021-24275be02851", "text": "\u5728\u4e00\u4e2a\u672b\u65e5\u822c\u7684\u57ce\u5e02\u4e2d\u7684\u6218\u4e89\uff0c\u6467\u6bc1\u4e86\u8fd9\u4e2a\u9ed1\u6697\u7684\u5730\u65b9\u3002"} +{"id": "0004478", "video_name": "09b29a61-50c9-5764-a0b8-451448756d0e", "text": "\u5f71\u5b50\u523a\u5ba2\u4e0e\u5149\u7403\u640f\u6597\u3002"} +{"id": "7002170", "video_name": "9a5d8ec4-ea76-5c39-9b94-f305da7291c4", "text": "\u82b1\u56ed\u9732\u53f0\uff0c\u4e0e\u6e29\u59ae\u76f8\u4f34\u3002"} +{"id": "7002829", "video_name": "1070f15c-b225-5746-a3ef-8400958b542e", "text": "\u957f\u820c\u5934\uff0c\u4eba\u7c7b\u820c\u5934\u5feb\u901f\u79fb\u52a8\uff0c\u5f88\u591a\u4eba\u7c7b\u820c\u5934\uff0c\u9ad8\u7ec6\u8282\u3002"} +{"id": "8002353", "video_name": "26640dc1-698d-5ebb-a48c-9177fcab5532", "text": "\u7528\u52a8\u753b\u7684\u65b9\u5f0f\u5448\u73b0\u4e00\u4e2a\u53ebEmily\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5c55\u793a\u5979\u653e\u5b66\u56de\u5bb6\u7684\u60c5\u666f\u3002\u8fd0\u7528\u52a8\u753b\u6548\u679c\uff0c\u63cf\u7ed8\u5979\u57283D\u52a8\u753b"} +{"id": "2005582", "video_name": "d5e032ad-0bf4-5ab9-9dff-144d264eaea6", "text": "\u5c0f\u7ea2\u5e3d\u8d70\u5728\u4e00\u4e2a\u975e\u5e38\u53ef\u6015\u7684\u68ee\u6797\u91cc\uff0c\u7ed8\u753b\u98ce\u683c\u4e3a\u9ed1\u767d\u3002"} +{"id": "6002657", "video_name": "66b3cf52-0b7c-5592-9ea7-93be887391c3", "text": "\u4f60\u53ef\u4ee5\u5728\u90a3\u91cc\u8d2d\u4e70\u81ea\u5df1\u60f3\u8981\u7684\u59bb\u5b50\u3002"} +{"id": "7004433", "video_name": "ff0d22e4-9a40-5052-a8fb-a74857d051c4", "text": "\u5177\u6709\u52a8\u6f2b\u98ce\u683c\u7684\u89c6\u9891\uff0c\u4e2d\u5fc3\u955c\u5934\u662f\u4e00\u4e2a\u5c0f\u5b87\u822a\u5458\u7ad9\u5728\u4e00\u4e2a\u6d6e\u52a8\u7684\u5ca9\u77f3\u5e73\u53f0\u4e0a\uff0c\u5468\u56f4\u6709\u5176\u4ed6\u5c0f\u5ca9\u77f3\u5206"} +{"id": "2004553", "video_name": "5f98bd97-575c-5fd3-8af7-a470920ca2c6", "text": "\u4e00\u80a1\u5916\u661f\u529b\u91cf\u5c06\u4e00\u5934\u725b\u62d6\u5165\u5916\u661f\u98de\u8239\uff0c\u7a7f\u8fc7\u4e00\u9053\u5927\u5149\u7ebf\uff0c\u5468\u56f4\u662f\u7267\u573a\uff0c\u5916\u661f\u98de\u8239\u53d1\u51fa\u5f3a"} +{"id": "7004677", "video_name": "6222789d-ab47-5ae4-b6fb-93b27b276e82", "text": "\u4e00\u4e9b\u5251\u5ba2\u6b63\u5728\u6218\u6597\uff0c\u6218\u6597\u975e\u5e38\u6fc0\u70c8\u3002"} +{"id": "4004103", "video_name": "ca6f36bc-0859-5003-8ace-0d1eab05df93", "text": "\u521b\u9020\u4e00\u5f20\u8be6\u7ec6\u800c\u5386\u53f2\u51c6\u786e\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u9a6c\u62c9\u5854\u6218\u58eb\u56fd\u738b\u67e5\u7279\u62c9\u5e15\u8482\u00b7\u5e0c\u74e6"} +{"id": "2003017", "video_name": "63cf26f2-f802-5023-bf3a-be2d63baf33f", "text": "\u4e00\u6761\u9c7c\u5728\u592a\u7a7a\u4e2d\u6e38\u52a8\uff0c4k\u3002"} +{"id": "6002629", "video_name": "b0abd7a7-3623-58d6-8426-d7bb03dafe80", "text": "\u8010\u514b\u8fd0\u52a8\u978b\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u964d\u843d\u5728\u6c99\u6f20\u4e0a\u7684\u65e5\u843d\u4e2d\uff0c\u4eba\u4eec\u6536\u96c6\u5b83\u4eec\uff0c\u89c6\u9891\u6301\u7eed10\u79d2\u3002"} +{"id": "7003998", "video_name": "3960b53c-6f27-544f-8c6b-943cb9e32969", "text": "\u76d6\u5fb7\u7eb3\u535a\u7269\u9986\u63d0\u4f9b\u60ac\u8d4f\u7684\u7167\u7247\u3002"} +{"id": "3005004", "video_name": "54070de7-ca41-582e-b42d-dc3f35098bcd", "text": "\u4e94\u989c\u516d\u8272\u7684\u6c34\u6bcd\uff0c\u5728\u6df1\u9083\u7684\u9ed1\u6697\u7a7a\u95f4\u4e2d\uff0c\u5448\u73b0\u51fa\u65e5\u672c\u52a8\u753b\u98ce\u683c\uff0c\u7f8e\u4e3d\u800c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5bbd\u9ad8\u6bd4\u4e3a"} +{"id": "0005127", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "\u5168\u666f\u955c\u5934\uff0c\u7537\u5b50\u5403\u85af\u7247\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "6003687", "video_name": "1368d9e3-e0d0-5a56-9a4b-c642237d250c", "text": "\u5f88\u591a\u8239\u53ea\u8fdb\u5165\u5730\u7403\u7684\u7a7a\u95f4\u3002"} +{"id": "7003775", "video_name": "02817edb-e04a-55d7-a9bd-4803170c7e13", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u673a\u5668\u4eba\u5728\u5e9f\u589f\u57ce\u5e02\u4e2d\u884c\u8d70\uff0c\u4ece\u57ce\u5e02\u4e0a\u65b9\u62cd\u6444\u3002"} +{"id": "8001977", "video_name": "8e51f062-427c-5773-845a-83c2f6c27670", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u5f71\u7247\uff0c\u8bb0\u5f55\u4e86\u4e00\u5ea7\u5c71\u5728\u4e00\u9897\u9ed1\u6697\u8352\u51c9\u7684\u6708\u7403\u4e0a\u56e0\u5730\u9707\u5012\u584c\u7684\u573a\u666f\u3002"} +{"id": "3005301", "video_name": "837fc7d5-e9c5-5a9a-94a2-df0934e8aad1", "text": "\u4e00\u5e45\u6709\u8305\u8349\u5c4b\u7684\u6751\u5e84\u753b\u9762\uff0c\u4e00\u4f4d\u8001\u5987\u4eba\u5750\u5728\u957f\u6905\u4e0a\u7ec7\u7740\u6bdb\u8863\u3002"} +{"id": "6004100", "video_name": "4e39f469-0d1c-5d46-be67-2ba1302fb84e", "text": "\u7535\u5f71\u8d28\u91cf\uff0c\u771f\u4eba\u79c0\uff0c\u54c8\u8389\u548c\u6bd2\u85e4\u8c08\u8bdd\u3002"} +{"id": "2006074", "video_name": "01d207d3-c4f8-5670-bdf7-4a260e82727a", "text": "2011\u5e74\u65e5\u672c\u798f\u5c9b\u6838\u707e\u96be"} +{"id": "8003227", "video_name": "fb61f7fb-80d1-5087-9bc4-892bc1ae6ab3", "text": "\u4e00\u5f20\u6709\u6811\u7684\u6cb3\u6d41\u56fe\u7247\u4e2d\u9690\u85cf\u4e86\u4e00\u4e2a\u5355\u8bcd\uff1aRodriCraftMC\u3002"} +{"id": "7003296", "video_name": "c88c00e4-2aab-5b0c-9edb-461d0f45e2bc", "text": "\u4e00\u4e2a\u7531\u8d27\u5e01\u6784\u6210\u7684\u6cd5\u5ead\uff0c24\u5e27\u6bcf\u79d2\uff0c\u52a8\u4f5c5\uff0c\u7535\u5f71\u822c\u7684\uff0c\u903c\u771f\u7684\u3002"} +{"id": "1003070", "video_name": "3877faae-462d-55d9-a5fd-99ec102ad327", "text": "\u4e00\u4e2a\u7537\u5b69\u52a8\u753b\u8bf4\u8bdd\u7684\u7eff\u8272\u5c4f\u5e55\u56fe\u50cf\u3002"} +{"id": "0006905", "video_name": "3521cbc2-b76f-5a44-a96b-39c625f4eaa7", "text": "\u4e00\u5bf9\u604b\u4eba\u5728\u8d85\u8d8a\u4eba\u7c7b\u7406\u89e3\u7684\u6700\u6d6a\u6f2b\u7ea6\u4f1a\u3002"} +{"id": "2005246", "video_name": "1ff4eb32-1de4-5c98-8088-54bdf45654fb", "text": "\u89c6\u9891\u5c06\u5c55\u793a\u4e00\u4e2a\u5ba4\u5185\u7530\u5f84\u573a\uff0c\u5176\u4e2d\u53ef\u4ee5\u770b\u523060\u5e74\u4ee3\u7684\u4e2d\u592e\u8857\u9053\uff0c\u76f4\u5230\u770b\u5230\u6574\u4e2a\u7530\u5f84\u573a\u7684\u5168\u666f\uff0c\u706f\u5149\u5fc5\u987b\u662f"} +{"id": "0004389", "video_name": "081f25e9-900f-5027-80b9-1f70c924809b", "text": "\u53e4\u8001\u7684\u5f71\u7247\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u72fc\u4eba\uff0c\u98ce\u683c\u7c7b\u4f3c\u5f7c\u5f97\u00b7\u5a01\u7279\u91d1\u3001\u9524\u5b50\u6050\u6016\u7535\u5f71\u300a\u568e\u53eb\u300b\u3002"} +{"id": "2005422", "video_name": "46ec7380-03e5-536c-8ef2-9aea1f0b6302", "text": "\u5728\u5de7\u514b\u529b\u86cb\u7cd5\u4e0a\u6d82\u62b9\u7cd6\u971c\u3002 \n\nSource sentence: I enjoy hiking in the mountains. \n\u6211\u559c\u6b22\u5728\u5c71\u91cc\u5f92\u6b65\u65c5\u884c\u3002"} +{"id": "3004351", "video_name": "aeaa95a6-b7d8-5668-93af-d9ded63ae57b", "text": "\u56fd\u738b\u89c2\u770b\u7740\u52c7\u58eb\u4eec\u7684\u8239\u53ea\u5230\u6765\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3006375", "video_name": "5c9236c7-0b40-5e43-b631-65b6c1d30adf", "text": "\u5409\u535c\u529b\u98ce\u683c\u7684\u52a8\u753b\uff0c\u6811\u4e0a\u98ce\u5439\u5f97\u6447\u6446\u4e0d\u5b9a\uff0c\u8fd8\u6709\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5409\u535c\u529b\u98ce\u683c\u89d2\u8272\u3002"} +{"id": "0005506", "video_name": "1bfa5a6b-53a5-5950-a849-9801bc141f45", "text": "\u4e00\u4e2a\u4eba\u7269\u5728\u5b81\u9759\u7684\u73af\u5883\u4e2d\u51a5\u60f3\u3002"} +{"id": "4002762", "video_name": "e91fdbac-015c-5f94-9f1f-f1f64dbf96d1", "text": "\u52a0\u6c99\u7684\u5b69\u5b50\u4eec\u88ab\u88f9\u5728\u5bff\u8863\u4e2d\uff0c\u8eba\u5728\u52a0\u6c99\u5e02\u6bc1\u574f\u8857\u9053\u7684\u4eba\u884c\u9053\u4e0a\u3002"} +{"id": "7002310", "video_name": "7a852286-1d04-5ea0-999c-4444a0a107d8", "text": "\u4e00\u5e45\u6751\u5e84\u5361\u901a\u56fe\u50cf\u4e2d\u7684\u5e72\u65f1\u571f\u5730\u5f62\u8c61\u3002"} +{"id": "3006608", "video_name": "0fff3674-10ee-58aa-95d8-029fd0c03d39", "text": "\u6162\u6162\u7684\u5e78\u8fd0\u997c\u5e72\u52a8\u8d77\u6765\uff0c\u7206\u70b8\u51fa\u7ea2\u8272\u7684\u5f69\u5e26\uff0c\u6b63\u5348\u7684\u9633\u5149\uff0c\u5929\u7a7a\u3002"} +{"id": "1005905", "video_name": "6c9016f0-ce44-54eb-82f8-8954fb1d5733", "text": "\u4e00\u4e2a\u821e\u8005\u5728\u767d\u5bab\u692d\u5706\u5f62\u529e\u516c\u5ba4\u8df3\u821e\u3002"} +{"id": "4002332", "video_name": "62af64b9-2bad-5351-b0d5-d8ad36067a64", "text": "\u76ee\u524d\uff0c\u6bcf\u5929\u90fd\u6709\u6e38\u5ba2\u524d\u5f80\u5723\u8def\u52a0\u6559\u5802\u548c\u59ae\u5a1c\u7684\u9675\u5893\uff0c\u6709\u4e9b\u6e38\u5ba2\u4ee5\u53ca\u4e0d\u65f6\u7684\u5f53\u5730\u5c45\u6c11\u8bf4\u4ed6\u4eec"} +{"id": "8001366", "video_name": "e255f1cb-b760-51e9-96f4-1667234102ac", "text": "Lilith\u5750\u5728\u5979\u7684\u738b\u5ea7\u4e0a\u5c16\u53eb\uff0c\u62cd\u6444\u8303\u56f4\u5e7f\uff0c\u5979\u7528\u624b\u6258\u7740\u4e0b\u5df4\uff0c\u5f71\u5b50\u7ad9\u5728\u5979\u7684\u5de6\u53f3"} +{"id": "4003583", "video_name": "27e7abab-c42a-5591-8f1e-c4e509ce79ba", "text": "\u5f88\u591a\u5f20\u5927\u9ebb\u53f6\uff0c\u4fef\u89c6\u56fe\u3002\u4fe1\u606f\uff1aCEPGAY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2007813", "video_name": "94220bc1-3265-5578-8a93-8038ea70b716", "text": "\u5728\u8611\u83c7\u4e4b\u4e2d\uff0c\u4f3c\u4e4e\u53ef\u4ee5\u627e\u5230\u901a\u5f80\u68a6\u5883\u4e4b\u95e8\uff0c\u5145\u6ee1\u795e\u79d8\u548c\u9b54\u5e7b\u7684\u8272\u5f69\u3002"} +{"id": "7002139", "video_name": "57c01749-21b7-5493-92f2-e19491cbb5ce", "text": "\u6210\u763e\u662f\u4e00\u79cd\u751f\u7406\u4e0a\u7684\u53cd\u5e94\u3002 \n\nSource sentence: The company's profits have increased by 20% this year. \n\n\u516c\u53f8\u4eca\u5e74\u7684\u5229\u6da6\u589e\u957f\u4e8620%\u3002"} +{"id": "3004325", "video_name": "ce9b1ac4-46dc-5863-bd86-a57564b8f89f", "text": "\u7bee\u7403\u8fd0\u52a8\u5458\u8fdc\u8ddd\u79bb\u6295\u7bee\u3002"} +{"id": "3006029", "video_name": "1c90a859-b1cf-59c1-87fa-311d834cda01", "text": "\u6444\u50cf\u673a\u5728\u5d0e\u5c96\u7684\u98ce\u666f\u4e2d\u626b\u8fc7\uff0c\u8ba9\u4eba\u60f3\u8d77\u4e1b\u6797\u6216\u6c99\u6f20\u5730\u5f62\uff0c\u8fdc\u5904\u53ea\u80fd\u9690\u7ea6\u770b\u5230\u53e4\u8001"} +{"id": "3006516", "video_name": "c94d64b7-5cbf-5288-9841-66b93697fbb1", "text": "\u4e00\u68f5\u5927\u6811\u4e0a\u6709\u4e24\u53ea\u9e1f\u5728\u5582\u5b83\u4eec\u7684\u5b69\u5b50\u3002\u6811\u4e0b\u6709\u4e00\u4e9b\u7537\u5b69\u5728\u89c2\u770b\u5b83\u4eec\uff0c\u5e76\u5728\u98ce\u4e2d\u5fae\u7b11\u3002"} +{"id": "0005894", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "\u91d1\u76cf\u82b1\u82b1\u56ed\u91cc\u5230\u5904\u90fd\u662f\u82b1\u3002"} +{"id": "7002449", "video_name": "3e1bb508-b9e3-54b9-a2cf-db83207568ce", "text": "\u7535\u5f71\u822c\u7684\u957f\u955c\u5934\u4ecb\u7ecd\u5982\u4f55\u57f9\u517b\u513f\u7ae5\u7684\u5168\u7403\u610f\u8bc6\uff0c\u63a2\u7d22\u4e16\u754c\u5404\u5730\u7684\u6587\u5316\u7f8e\u98df\uff0c\u4e86\u89e3\u4e0d\u540c"} +{"id": "7004262", "video_name": "f27bcc2e-a8a3-5423-b6b6-94a084d47101", "text": "\u7f57\u65af\u5a01\u5c14\u5916\u661f\u4eba\u5728\u53f2\u524d\u6d1e\u7a74\u7684\u5899\u4e0a\u7ed8\u753b\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u5e7f\u89d2\u3002"} +{"id": "3004559", "video_name": "a9211333-45b4-5b1f-b3d0-d4a2af84b929", "text": "\u955c\u5b50\u91cc\u53cd\u6620\u51fa\u4e00\u4e2a\u4eba\u7684\u5f71\u50cf\u3002"} +{"id": "2006271", "video_name": "071a93b2-a090-553e-874b-6bf7e2895d69", "text": "\u5e74\u8f7b\u53ef\u7231\u7684\u5973\u5b50\uff0c\u62e5\u6709\u7f8e\u4e3d\u7684\u773c\u775b\u548c\u5634\u5507\uff0c\u6b63\u5728\u8bf4\u8bdd\u3002"} +{"id": "2007310", "video_name": "f1ec8c61-42ca-577d-aeaa-401678a2ffcf", "text": "\u5927\u9ed1\u571f\u8c46\u548c\u756a\u8304\u9ed1\u8272\u3002"} +{"id": "2005535", "video_name": "e9a99280-53b2-5d26-8e37-3ba754263b29", "text": "\u9ca8\u9c7c\u548c\u874e\u5b50\u4e4b\u95f4\u7684\u6df7\u5408\u4f53\u3002"} +{"id": "0006775", "video_name": "32e0ed5a-0c5d-5226-8126-a20cb936788a", "text": "\u5728\u6781\u7b80\u4e3b\u4e49\u623f\u5c4b\u5185\u90e8\u8bbe\u8ba1\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4e61\u6751\u5f0f\u58c1\u7089\u3002\u5b83\u5e94\u8be5\u53cd\u6620\u51fa\u4e00\u4e2a\u96c6\u6210\u4e86\u5e72\u51c0\u7684\u7ebf\u6761\u3001\u81ea"} +{"id": "1005175", "video_name": "5f3e7e75-51b5-538b-b2c7-6e4ae4c26967", "text": "1970\u5e74\u4ee3\uff0c\u4e00\u4f4d\u957f\u7740\u91d1\u8272\u957f\u53d1\u7684\u5973\u5b50\u5728\u5979\u516c\u5bd3\u6d74\u5ba4\u7684\u955c\u5b50\u524d\u68b3\u7406\u5979\u7684\u5934\u53d1\u3002"} +{"id": "7002294", "video_name": "21647039-a007-5309-8960-21ba6b9691c7", "text": "\u8fd9\u672c\u4e66\u4e0e\u5176\u4ed6\u4e66\u90fd\u4e0d\u540c\u3002"} +{"id": "2003651", "video_name": "3c2e1074-70b2-5d63-9733-b58217f46eb7", "text": "\u5728\u5b83\u70e7\u7126\u7684\u5899\u58c1\u5185\uff0c\u4ed6\u953b\u9020\u4e86\u90a3\u4e2a\u90aa\u6076\u7684\u7269\u54c1\u2014\u2014\u4e00\u679a\u80fd\u5c06\u6240\u6709\u4eba\u7684\u547d\u8fd0\u4e0e\u81ea\u5df1\u76f8\u8fde\u7684\u201c\u4e00"} +{"id": "2003216", "video_name": "d9ca8a17-d048-5530-bdf6-d98f3d8cb3fe", "text": "\u5177\u6709\u5e73\u9762\u8bbe\u8ba1\u98ce\u683c\u7684\u6784\u56fe \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3003782", "video_name": "132bbed9-f224-57d4-9e95-f352b1e29310", "text": "\u79fb\u52a8\u76f8\u673a\u548c\u5934\u53d1\u7684\u52a8\u4f5c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003099", "video_name": "390d4ddd-5031-5e06-b0cc-13a266b4a1df", "text": "zone.\n\n\u4e00\u53ea\u732b\u5934\u9e70\u4eba\u5728\u6218\u4e89\u533a\u57df\u884c\u8d70\u3002 \n\nSource sentence: The sun is setting behind the mountains.\n\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "7003175", "video_name": "cb91b3c4-b4a7-51b9-af2f-1a87ad0364ed", "text": "\u9644\u56fe\u4e2d\u7684\u4eba\u5728\u8df3\u821e\u3002"} +{"id": "4002371", "video_name": "44e4ee1a-2a79-5306-bc83-32e6d102569e", "text": "\u8ba9\u68ee\u6797\u52a8\u7269\u8df3\u821e\u6b22\u5e86\u3002"} +{"id": "7002460", "video_name": "b5ba8e78-3a4d-5e56-b7ee-079122ee28dd", "text": "\u5176\u4ed6\u52a8\u7269\u60ca\u5f02\u5154\u5b50\u7684\u901f\u5ea6\u3002"} +{"id": "8003369", "video_name": "dbc9fc1f-87b5-55c9-9d94-1e94a31cbbc8", "text": "CJ\u548c\u5927\u70df\u4e00\u8d77\u548c\u6c83\u5c14\u7279\u00b7\u6000\u7279\u548c\u6770\u897f\u4ea4\u8c08\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "2005962", "video_name": "21841e4b-d834-54cf-b1ce-d69e4c9bfa93", "text": "\u5564\u9152\u5012\u5165\u6f02\u4eae\u7684\u5564\u9152\u676f\u4e2d\uff0c\u4fef\u77b0\u89c6\u89d2\uff0c\u975e\u5e38\u660e\u4eae\uff0c\u62c9\u8fdc\u955c\u5934\u3002"} +{"id": "0005227", "video_name": "16f29389-2b72-5778-8a8d-d9dc0bea19f9", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u768416:9\u52a8\u753b\u6751\u6c11\u3002"} +{"id": "1006778", "video_name": "7c1ec4f7-d216-560a-8c6f-fbe4e783e521", "text": "\u4e00\u4f4d\u8001\u4eba\u5728\u9ed1\u6697\u4e2d\u4e0b\u697c\u3002"} +{"id": "5001601", "video_name": "cf0b3bf8-4c47-52f0-802d-1cdf7e0c3c60", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u52a8\u753b\u5c55\u73b0\u4e86\u4e00\u4e2a\u5145\u6ee1\u5947\u7279\u548c\u4ee4\u4eba\u9676\u9189\u7684\u5546\u54c1\u7684\u751f\u673a\u52c3\u52c3\u7684\u5e02\u96c6\uff0c\u4ece\u4f1a\u8bf4\u8bdd\u7684"} +{"id": "1005805", "video_name": "6ac6fdef-343f-523d-ba8f-7d801a8cca08", "text": "\u8d85\u73b0\u5b9e\u7684\u7f51\u7edc\u57ce\u5e02\u5c0f\u5df7\uff0c\u84dd\u8272\u9713\u8679\u706f\u5149\u4e0b\u673a\u5668\u4eba\u6454\u5012\u5728\u5730\uff0c\u4ece\u673a\u5668\u4eba\u5192\u51fa\u70df\u96fe\u3002"} +{"id": "3006473", "video_name": "46d054b7-39ae-5dc7-a378-5092b7c8648f", "text": "\u5728\u5f00\u653e\u7a7a\u95f4\u7684\u5c0f\u6708\u7403\u4e0a\u884c\u8d70\u7684\u4eba\u3002"} +{"id": "7004945", "video_name": "9385ad68-ff55-5dc5-b689-c917b03dcc8b", "text": "\u8349\u56fe\u7537\u5b50\u5728\u6cd5\u5ead\u4e0a\u662f\u9ad8\u5ea6\u8be6\u7ec6\u7684\u30014K\u52a8\u753b\u3002"} +{"id": "3004903", "video_name": "678e2b8b-3a64-5ee5-8c12-34eb5ae11b05", "text": "\u4e00\u4e2a\u6a21\u7279\u53a8\u623f\u5c55\u793a\u7740\u767d\u8272\u7684\u67dc\u53f0\u548c\u684c\u5b50\uff0c\u767d\u8272\u660e\u4eae\u7684\u5730\u677f\uff0c\u6781\u7b80\u6d01\u7684\u96ea\u666f\u5916\u666f\uff0c\u5728\u91d1\u5c5e\u8868\u9762"} +{"id": "1006754", "video_name": "7ba2ce62-8999-5a6b-b77f-e852222ac72d", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u4f60\u7684\u8eab\u8fb9\uff0c\u524d\u5f80\u68ee\u6797\u3002"} +{"id": "6002945", "video_name": "42ae9d0a-1fd5-513a-97aa-85ca85aae3ed", "text": "to develop all types of military equipment.\n\n\u6218\u8230\u3001\u6f5c\u8247\u3001\u98de\u8247\u3001\u672b\u65e5\u6218\u4e89\uff0c\u6211\u4eec\u6253\u7b97\u5f00\u53d1\u6240\u6709\u7c7b\u578b\u7684\u519b\u4e8b\u88c5\u5907\u3002"} +{"id": "2007744", "video_name": "19d58c2f-a697-5009-805a-bbb98e623d51", "text": "\u6807\u5fd7\u7740AIAF\u51fa\u73b0\u5927\u91cf\u6545\u969c\u7684\u6807\u5fd7\uff0cVHS\u6545\u969c\uff0c\u50cf\u7d20\u6392\u5e8f\u3002"} +{"id": "3006985", "video_name": "e4333bb2-7b21-5e11-b252-f7f29eb29c58", "text": "\u706f\u5854\u57284x4\u8f66\u9876\u4e0a\u3002"} +{"id": "7002386", "video_name": "7e63aa54-7b11-57bb-93d3-94cb4774b980", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5149\u5f71\u4e2d\u73a9\u800d\u3002"} +{"id": "7002923", "video_name": "9414c5e2-0d21-5c99-adcb-bd9cdf1a4310", "text": "\u5728\u65e5\u672c\u82b1\u56ed\u91cc\u8d70\u7740\u827a\u5993\uff0c\u80cc\u666f\u4e2d\u6709\u7011\u5e03\u3002"} +{"id": "1004404", "video_name": "5177356a-cf8c-5cf1-a71c-e44c053d2058", "text": "\u5730\u7403\u7206\u70b8\u5e76\u6d88\u5931\u4e86\uff0c\u60ca\u4eba\u76843D\u52a8\u753b\u3002"} +{"id": "2005603", "video_name": "5774246a-ee8b-51a0-9308-b249b6a5bee8", "text": "\u6d1b\u6749\u77f6\u5e02\u5728\u591c\u665a\u7684\u9053\u8def\u4e0a\u88ab\u5bfc\u5f39\u653b\u51fb\u6467\u6bc1\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002 \n\nSource sentence: The cat is sleeping on the"} +{"id": "3004174", "video_name": "78d873a4-8ab7-5332-b9cb-ce445df3dd6d", "text": "\u4e00\u53ea\u9e70\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u4e0b\u65b9\u662f\u4e00\u7247\u8349\u5730\u3002"} +{"id": "2003916", "video_name": "97204d8e-9bcf-5f48-9174-9359975176a3", "text": "\u4f7f\u673a\u5668\u4eba\u80fd\u591f\u56de\u590d\u6536\u5230\u7684\u6587\u5b57\u6d88\u606f\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "2004980", "video_name": "841ad068-f9d4-5823-9db0-dd78041fdf6a", "text": "\u5361\u901a\u98ce\u683c\uff0c\u53e4\u4ee3\u7f8e\u4eba\u5728\u5bab\u6bbf\u5185\u51dd\u671b\u7740\u6d01\u767d\u7684\u6708\u5149\u3002"} +{"id": "6002972", "video_name": "003abe48-6c3f-5643-b60a-ce5ea999438d", "text": "\u5348\u591c\u65f6\u5206\u7684\u8f90\u5c04\u96f7\u66b4\u4e2d\u7684\u300a\u8f90\u5c043\u300b\u3002"} +{"id": "5001972", "video_name": "92096df2-062c-59b9-a162-40f107eba6ee", "text": "\u5e2e\u6211\u753b\u7ec6\u83cc\u751f\u7269\u819c\u3002"} +{"id": "3006544", "video_name": "4343371c-1d8e-5437-a37f-da24416492cd", "text": "\u6e38\u620f\u865a\u62df\u73b0\u5b9e\u4e16\u754c\u4e2d\u7684\u5168\u606f\u6e38\u620f\u9009\u9879\uff0c16\u6beb\u7c73\u955c\u5934\uff0c24\u5e27\u6bcf\u79d2\u3002"} +{"id": "4003500", "video_name": "a77a660e-1919-536b-ab16-b51db704108c", "text": "\u4e00\u53ea\u67ef\u57fa\u5c0f\u72d7\u548c\u5b69\u5b50\u5728\u8349\u5730\u4e0a\u73a9\u800d\u3002"} +{"id": "6003685", "video_name": "d727f3d3-83eb-53dd-9bba-b8880481c813", "text": "Zara \u8bbe\u8ba1\u4e86\u4e00\u4e2a\u5de7\u5999\u7684 Giggleberry \u9677\u9631\uff0c\u667a\u80dc\u72e1\u733e\u7684\u72d0\u72f8\uff0c\u5bf9\u5979\u7684\u8ba1\u5212\u611f\u5230\u60ca"} +{"id": "1005528", "video_name": "65bee741-ff0c-5aa8-a81b-06e5212fc673", "text": "\u753b\u9762\u4e2d\u7684\u5973\u5b69360\u5ea6\u65cb\u8f6c\uff0c8K\uff0c\u8d85\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "1003148", "video_name": "3a088701-caa2-5257-8b11-bd5ab57a95de", "text": "\u5c0f\u9003\u4ea1\u8005\uff0c\u4e16\u754c\u4ece\u672a\u5bb9\u6613\u3002"} +{"id": "3004801", "video_name": "b8c78783-d763-5ca8-98b1-e5df148ab104", "text": "\u6c64\u59c6\u548c\u6770\u745e\u7ad9\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u6d1e\u7a74\u524d\u9762\uff0c\u597d\u5947\u5730\u6ce8\u89c6\u7740\u5b83\u3002\u5165\u53e3\u88ab\u85e4\u8513\u548c\u82d4"} +{"id": "0006212", "video_name": "287c75fa-4801-5761-9263-ea2f488b7b82", "text": "\u675c\u5a03\u00b7\u8389\u5e15\u5728\u6c99\u6f20\u4e0a\u4ece\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u9003\u8dd1\u3002 \n\nSource sentence: This book is written in Chinese and translated into"} +{"id": "4004869", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "\u90a3\u4e2a\u5728\u8d85\u73b0\u5b9e\u4e16\u754c\u91cc\u54ed\u6ce3\u7684\u7537\u4eba\u770b\u8d77\u6765\u50cf\u662f\u8d5b\u535a\u670b\u514b3\u3002"} +{"id": "3004143", "video_name": "3bd26f03-5443-5a70-8950-b5c53716a85f", "text": "\u51ef\u6587\u00b7\u65af\u6d3e\u897f\u81ea\u8c6a\u5730\u62ff\u7740\u5965\u65af\u5361\u5956\u3002"} +{"id": "2004425", "video_name": "2bbcc8c6-05af-5602-88c6-ab2b4342ec1b", "text": "\u5916\u661f\u4eba\u4ece\u771f\u5b9e\u7684\u6811\u6728\u8f6c\u53d8\u6210\u4e86\u5176\u81ea\u7136\u5f62\u6001\u3002\u5b83\u670910\u82f1\u5c3a\u9ad8\uff0c\u7eff\u8272\u7684\u9cde\u7247\u548c\u65b9\u5f62\u7684\u5934\u3002"} +{"id": "3005625", "video_name": "b575b005-87ec-5b6a-aa53-e026f9d94b73", "text": "\u5927\u5802\u91cc\uff0c\u706f\u7b3c\u96e8\u843d\u4e0b\u5e76\u7834\u788e\u3002"} +{"id": "3006889", "video_name": "6b48dfe1-fa4e-5aaa-abc3-e830c82dc863", "text": "\u4e00\u53ea\u6ce2\u65af\u732b\u6b63\u5728\u7e41\u5fd9\u7684\u516c\u8def\u4e2d\u592e\u6e05\u6d01\u5b83\u7684\u722a\u5b50\u3002"} +{"id": "0005791", "video_name": "214f21d4-e38c-5688-8de2-55b81a60a974", "text": "\u7537\u4eba\u5728\u7535\u5f71\u9662\u91cc\u95ee\u53e6\u4e00\u4e2a\u7537\u4eba\u95ee\u9898\u3002"} +{"id": "6004642", "video_name": "185ad5dc-196b-56a1-a0e2-d304c90d0452", "text": "\u9713\u8679\u706f\u5728\u591c\u665a\u4ece\u4e0b\u5f80\u4e0a\u8df3\u821e\uff0c\u5448\u73b0\u51fa\u8d5b\u535a\u670b\u514b\u7684\u98ce\u60c5\u3002"} +{"id": "3004628", "video_name": "c50b34d1-51f9-5b86-af0e-f7f60ee560df", "text": "\u4e00\u4e2a\u7a7f\u7740\u8089\u8272\u6bd4\u57fa\u5c3c\u7684\u706b\u8fa3\u91d1\u53d1\u5973\u90ce"} +{"id": "4004192", "video_name": "35411341-0552-5d08-8863-5d5cb1f3a8c2", "text": "\u7535\u89c6\u623f\u7684\u98ce\u683c\u50cf\u6050\u6016\u7535\u5f71\uff0c\u5899\u4e0a\u6709\u8840\u8ff9\uff0c\u767d\u8272\u53ef\u6015\u7684\u9ed1\u6697\u95ea\u7535\uff0c\u5728\u665a\u4e0a\uff0c\u662f\u72af\u7f6a\u73b0"} +{"id": "8003060", "video_name": "3d6af802-096b-5304-99be-33adce2f0a20", "text": "\u5c0f\u72d7\uff0c\u670d\u88c5\uff0c\u96f7\u795e\u7d22\u5c14\u624b\u6301\u96f7\u795e\u4e4b\u9524\uff0c\u672b\u65e5\u57ce\u5e02\uff0c9:16"} +{"id": "8002262", "video_name": "992f8338-3b1f-5187-bade-1138202e12f0", "text": "\u4e00\u540d\u65e5\u672c\u7f8e\u5973\u62b1\u7740\u4e00\u53ea\u5154\u5b50"} +{"id": "6002174", "video_name": "0bad4e33-d93e-5d4c-8ba3-1574dec9c7de", "text": "\u4e00\u4e2a\u56e2\u961f\u7684\u4eba\u6b22\u8fce\u89c2\u4f17\u3002\n\nSource sentence: The conference will be held at the hotel. \n\n\u4f1a\u8bae\u5c06\u5728\u9152\u5e97\u4e3e\u884c\u3002"} +{"id": "8002137", "video_name": "a20cc01d-543d-5d77-bba2-07da0ada6131", "text": "\u767d\u5c4f\uff0c\u8f6e\u80ce\u75d5\u8ff9\u51fa\u73b0\u5728\u5de6\u4e0b\u89d2\uff0c\u7136\u540e\u5411\u53f3\u4e0a\u89d2\u5ef6\u4f38\u3002"} +{"id": "0004603", "video_name": "0bd14623-f63a-58c3-915b-c2a599bb198b", "text": "\u8d5b\u535a\u4eba\u3001\u8df3\u821e\u3001\u5927\u52a8\u4f5c\u3001\u955c\u5934\u4ece\u8fdc\u5904\u62c9\u8fd1\u30013:4\u6bd4\u4f8b\u30014K\u3002"} +{"id": "0006135", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "\u4e00\u540d\u5973\u5b50\u5728\u60ac\u5d16\u8fb9\u8d70\u8def\u3002"} +{"id": "8001365", "video_name": "8103e79c-479a-54a5-aba2-1681627d1845", "text": "\u8fd9\u4e9b\u4f5c\u7269\u7ecf\u8fc7\u8270\u82e6\u52aa\u529b\u548c\u5c11\u91cf\u964d\u96e8\u7684\u6ecb\u517b\u5df2\u7ecf\u53d6\u5f97\u4e86\u957f\u8db3\u7684\u53d1\u5c55\u3002"} +{"id": "0003231", "video_name": "39b6a178-b3a4-5789-be15-00bd63169b83", "text": "Translation: \u73cd\u5a1c\u00b7\u963f\u53e4\u624e\u7f57\u5a03\u5750\u5728\u4e00\u6839\u7ef3\u5b50\u4e0a\u3002"} +{"id": "1005007", "video_name": "5ca0cac6-4940-52ca-b626-af10bbf652a6", "text": "\u4e00\u4e2a\u7537\u5b69\u624b\u91cc\u62ff\u7740\u4e00\u675f\u9c9c\u82b1\uff0c\u7ad9\u5728\u4e00\u6761\u7f8e\u4e3d\u7684\u8857\u9053\u524d\u3002\u4ed6\u7f13\u7f13\u5730\u8d70\u5728\u8857\u4e0a\uff0c\u7a81\u7136\u770b\u5230\u4e86"} +{"id": "2007969", "video_name": "a7e54ba7-01fe-5d86-a21d-7d6ee33b0e1d", "text": "\u5973\u5b69\u5728\u601d\u8003\u6708\u4eae\u7684\u6545\u4e8b\u3002"} +{"id": "1004473", "video_name": "52d4dc21-baeb-58d7-a3dd-fc2ee57aff63", "text": "\u4e00\u4e2a\u53d8\u8138\u7684\u6ed1\u677f\u624b\u7a7f\u8fc7\u8d2d\u7269\u4e2d\u5fc3\uff0c\u6700\u540e\u50cf\u9e1f\u4e00\u6837\u98de\u8d70\u4e86\u3002"} +{"id": "6004425", "video_name": "e4a6e68b-8604-56fc-a205-2febe0b10fd0", "text": "\u4e2d\u56fd\u53e4\u88c5\u52a8\u753b\u4efb\u52a1\uff0c\u4e00\u4e2a\u7a7f\u7740\u9752\u7eff\u8272\u670d\u88c5\u7684\u7f8e\u4e3d\u5973\u5b50\u3002"} +{"id": "0004732", "video_name": "0e38a7d0-bacc-5e60-bd58-826ff15c6db2", "text": "\u5730\u4e0a\u6709\u4e00\u9053\u7ea2\u8272\u6db2\u4f53\u7684\u75d5\u8ff9\u3002\u5e7d\u7075\u822c\u7684\u8eab\u5f71\u77ac\u95f4\u51fa\u73b0\u53c8\u6d88\u5931\u3002"} +{"id": "7004719", "video_name": "63393599-ffb0-5cbd-b81e-1b13a562fa57", "text": "\u5728\u7530\u91ce\u4e0a\u6355\u6349\u5230\u8001\u4eba\u9a7e\u9a76\u7740\u78e8\u635f\u7684\u62d6\u62c9\u673a\uff0c\u8138\u4e0a\u5e26\u7740\u5b81\u9759\u7684\u8868\u60c5\u3002"} +{"id": "0004458", "video_name": "095e1086-a303-5482-b25c-3e35c88ca19c", "text": "\u4e00\u6b3e\u8d85\u7ea7\u8be6\u7ec6\u903c\u771f\u7684GTA\u6e38\u620f\uff0c\u53ef\u4ee5\u8ba9\u8d85\u7ea7\u8dd1\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u6f02\u79fb\u3002"} +{"id": "1006223", "video_name": "7228296b-a18b-5329-b1be-56301c9baa6f", "text": "\u5352 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "6004730", "video_name": "1b88fb8b-32b0-5d6b-a7da-4f7dcae810db", "text": "\u540c\u4e00\u4e2a\u68ee\u6797\u91cc\u4f4f\u7740\u4e00\u53ea\u72e1\u733e\u806a\u660e\u7684\u72fc\uff0c\u5b83\u7684\u540d\u5b57\u53eb\u5965\u91cc\u6602\u3002 \n\nSource sentence: The teacher asked the students to"} +{"id": "1005901", "video_name": "6c7df814-af67-59ad-a4af-516d13c5925f", "text": "\u79d1\u5b66\u5bb6\u4eec\u5728\u7ea0\u7ed3\u4f26\u7406\u9053\u5fb7\u7684\u5f71\u54cd\u3002"} +{"id": "2005732", "video_name": "7dc90212-01d9-508e-9591-3cb3a8093236", "text": "\u4e00\u6761\u9f99\u5728\u535a\u7269\u9986\u8df3\u821e\uff0c\u6444\u50cf\u673a\u62c9\u8fdc\u3002"} +{"id": "5001631", "video_name": "7fce76bf-0e1c-5e1b-8543-2d8cc351ad80", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u751f\u7269\u5b89\u5168\u67dc\u4e2d\u5904\u7406\u6837\u672c\u3002"} +{"id": "3005259", "video_name": "e171820e-2de9-59a6-86c9-7f89cf9aa452", "text": "\u9a6c\u5176\u987f\u57ce\u5e02\u7684\u57ce\u95e8\u5927\u95e8\u655e\u5f00\uff0c\u7075\u9b42\u9ad8\u58f0\u547c\u6551\uff0c\u6551\u63f4\u4eba\u5458\u548c\u8425\u6551\u961f\u4f0d\u4e58\u5750\u6c7d\u8f66\u3001"} +{"id": "2003549", "video_name": "8b10f205-3ab0-51fa-9ce9-2a49475ce6a3", "text": "\u8fd9\u6bb5\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4e2a\u5de5\u4f5c\u5ba4\u91cc\u7684\u7537\u5de5\u4eba\uff0c\u4ed6\u7a7f\u7740\u9632\u62a4\u88c5\u5907\u5e76\u9075\u5faa\u5b89\u5168\u63aa\u65bd\u3002\u4ed6\u770b\u8d77\u6765\u4e13\u6ce8\u548c\u719f"} +{"id": "0005759", "video_name": "20b84fe2-73d6-57d0-bb13-024b1288698a", "text": "\u4e00\u672c\u6d3b\u751f\u751f\u7684\u4e66\u7c4d\u50cf\u4e00\u53ea\u9e1f\u4e00\u6837\u5728\u56fe\u4e66\u9986\u91cc\u98de\u821e\uff0c\u7ffb\u52a8\u7740\u5b83\u7684\u9875\u7801\u3002"} +{"id": "2006245", "video_name": "94c9d948-a894-5ac5-ad42-ee96fd44c4c5", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u6700\u4f73\u8eab\u6750\uff0c\u9ad8\u7ea7\u54c1\u724c\u65f6\u5c1a\u3002\u6a58\u8272\u3002"} +{"id": "1006821", "video_name": "7cc81d40-1632-5b47-9543-723576e103ff", "text": "\u4e00\u53ea\u732b\u5728\u5730\u677f\u4e0a\u8ffd\u53e6\u4e00\u53ea\u732b\u3002"} +{"id": "1004190", "video_name": "4d7b6736-c7e9-51d5-b6ff-a77a4dceca6e", "text": "\u9e70\u9ad8\u98de\u4e8e\u5929\u7a7a\uff0c\u89c6\u89c9\u4e0a\u4ee4\u4eba\u60ca\u53f9\u3002"} +{"id": "2004245", "video_name": "378b514e-6e33-5d91-bcb8-c5d478bcdf31", "text": "\u53a8\u623f\u91cc\u7684\u5973\u4eba\u6b63\u5728\u51c6\u5907\u665a\u9910\u3002"} +{"id": "6003343", "video_name": "ba5144e4-4cf9-5214-9240-065bbf7df965", "text": "\u6709\u98ce\u7684\u6d77\u6d0b\u548c\u706f\u5854\u5728\u6162\u52a8\u4f5c\u4e2d\u7206\u70b8\u3002"} +{"id": "4003853", "video_name": "a7a6812b-0fc3-5885-8d09-dedd5262d49f", "text": "\u592a\u9633\u5728\u4e0a\u5e1d\u7684\u773c\u4e2d\u7206\u70b8\u3002"} +{"id": "7002578", "video_name": "e88d6782-dd03-5ff2-a2dd-b916602a046d", "text": "\u591c\u7a7a\uff0c\u9ed1\u8272\u7684\u5929\u7a7a\uff0c\u6df1\u84dd\uff0c\u7565\u5e26\u7d2b\u8272\uff0c\u4e2d\u5fc3\u6709\u660e\u4eae\u7684\u661f\u661f\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "6002304", "video_name": "965dc74d-1859-52c7-a7e0-0f1360dd1d3a", "text": "\u5929\u7a7a\u53ea\u6709\u661f\u661f\u7167\u4eae\uff0c\u5f88\u591a\u5f88\u591a\u7684\u661f\u661f\u3002\u8d85\u9ad8\u6e05\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "0003387", "video_name": "3ca819e3-aefc-5958-ba06-a45cda2e7658", "text": "\u6469\u6258\u8f66\u6b63\u5728\u5411\u524d\u884c\u9a76\u3002\u5973\u4eba\u4e3e\u624b\u793a\u610f\u5411\u524d\u884c\u9a76\u3002\u7537\u4eba\u56de\u5e94OK\u5e76\u505a\u51faOK\u624b\u52bf\u3002"} +{"id": "2006230", "video_name": "770745ca-8202-5f4b-8310-7345efe91ed6", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u5f53\u52a8\u7269\u4eec\u805a\u96c6\u5728\u6e05\u6f88\u95ea\u4eae\u7684\u6c60\u5858\u65c1\u65f6\uff0c\u4ed6\u4eec\u770b\u5230\u4e86\u4e00\u7fa4\u51f6\u731b\u7684"} +{"id": "6002759", "video_name": "81102e0a-6029-51f8-afd7-8818b9258434", "text": "\u4e00\u4e2a\u7a7f\u7740\u77ed\u8896\u886c\u886b\u7684\u5c0f\u7537\u5b69Alex\uff0c\u8eab\u540e\u662f\u84dd\u8272\u7684\u5927\u6d77\uff0c\u8d70\u5728\u6c99\u6ee9\u4e0a\uff0c\u5c16\u5c16\u7684\u8138"} +{"id": "3004615", "video_name": "f01c3b76-55f0-5fd4-a7cf-68a367d62c12", "text": "\u4ecb\u7ecd\u745e\u58ebLE TEMPS\u7684\u65b0\u6b3e\u8fd0\u52a8\u4f18\u96c5\u624b\u8868\uff0c\u878d\u5408\u4e86\u5962\u534e\u548c\u8fd0\u52a8\u98ce\u683c\uff0c\u8ba9\u4f60\u95ea\u8000\u3002\u8fd9\u6b3e\u7cbe\u7f8e\u7684"} +{"id": "1005777", "video_name": "6a4682fe-29d1-529c-a2df-2ac911564345", "text": "\u5728\u5965\u6797\u5339\u65af\u5c71\u4e0a\uff0c\u5b99\u65af\u5bf9\u6218\u6ce2\u585e\u51ac\uff0c\u5176\u4ed6\u5965\u6797\u5339\u65af\u795e\u7947\u5728\u80cc\u666f\u4e2d\u89c2\u770b\u3002"} +{"id": "5001247", "video_name": "ba0c7c50-64e2-5e79-8831-2c62bcf57d0d", "text": "\u6e90\u53e5\uff1a\u4e00\u4f4d\u5973\u9a91\u58eb\u7684\u526a\u5f71\u4fef\u77b0\u7740\u4e2d\u4e16\u7eaa\u6218\u573a\uff0c\u8fdc\u5904\u6709\u706b\u5149\uff0c4K\uff0c\u7535\u5f71\u5316\u3002\n\n\u7ffb"} +{"id": "6004245", "video_name": "e8ed7587-42a2-58b7-b33a-44a900621009", "text": "\u7ffb\u8bd1\uff1a\u7eff\u8272\u7684\u773c\u775b\uff0c\u76f8\u5bf9\u4e8e\u8eab\u4f53\u7565\u5927\u7684\u5934\uff0c\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u7ea2\u8272\u56ed\u4e01\u670d\u88c5\uff0c"} +{"id": "3005831", "video_name": "613382f5-b521-59a1-99fd-3bb4313a3ed4", "text": "Translation: Kitto \u5728\u7ebd\u7ea6\u5e02\u73a9\u800d\u3002"} +{"id": "4004678", "video_name": "d66a8d06-c4cd-5504-9511-474b24bd07c3", "text": "\u5728\u516c\u56ed\u91cc\u6709\u4e00\u4e2a\u4eba\u7528\u624b\u505a\u51fa\u67d0\u79cd\u52a8\u4f5c\u5e76\u6307\u5411\u4e0b\u65b9\u3002\n\nSource sentence: I am allergic to peanuts, so I cannot eat peanut butter.\n\u6211\u5bf9\u82b1\u751f\u8fc7\u654f\uff0c\u6240"} +{"id": "4003673", "video_name": "90681f99-c856-540b-b74e-d8810f098be6", "text": "\u4e00\u53ea\u5927\u72ee\u5b50\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "8003308", "video_name": "5fed31ae-4e1e-5405-94eb-f3ecbaa29ea8", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5361\u901a\u756a\u8304\u5728\u82b1\u56ed\u91cc\u8d70\u3002"} +{"id": "1004532", "video_name": "5438c946-03ac-5177-8637-a583acfe5b6d", "text": "\u8036\u548c\u534e\u795e\u7528\u5730\u4e0a\u7684\u5c18\u571f\u9020\u4eba\uff0c\u5c06\u751f\u6c14\u5439\u8fdb\u4ed6\u7684\u9f3b\u5b54\uff0c\u4e8e\u662f\u4eba\u6210\u4e86\u6709\u751f\u547d\u7684\u6d3b\u4eba\u3002"} +{"id": "6002297", "video_name": "a2786a0e-842b-545a-8fc8-2ea784bb9174", "text": "\u4e00\u4e2a\u4eba\u5de5\u667a\u80fd\u4e13\u5bb6\u7684\u673a\u5668\u4eba"} +{"id": "4004407", "video_name": "2936503d-5a67-5f5d-b9ff-82f1773cdc53", "text": "\u968f\u98ce\u800c\u52a8\uff0c\u878d\u5165\u6c34\u4e2d\uff0c32k \u5206\u8fa8\u7387\uff0c\u9510\u5ea6\u9ad8\uff0c\u5feb\u901f\u3002"} +{"id": "0006550", "video_name": "2e7e2838-0a64-506e-8a7a-56feb53a5b49", "text": "\u4e00\u53ea\u5973\u6027\u811a\u8e29\u5728\u4e00\u5f2050\u7f8e\u5143\u949e\u7968\u4e0a\u3002"} +{"id": "8003719", "video_name": "76e77715-f6e0-5776-a53b-edb4845e324d", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u8bb2\u89e3\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "0006647", "video_name": "304365a6-c590-559e-bb2b-c1a075d15baa", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u88ad\u51fb\u5df4\u57fa\u65af\u5766\u9646\u519b\u53c2\u8c0b\u957f\u963f\u897f\u59c6\u00b7\u7a46\u5c3c\u5c14\u5c06\u519b\u3002\u4f0a\u59c6\u5170\u00b7\u6c57"} +{"id": "0006987", "video_name": "364d556b-b220-5658-a22a-d0b2860fba4a", "text": "\u8db3\u7403\u573a\u4e0a\u7684\u7403\u8ff7\u3002\u6d88\u606f\uff1a\u5b89\u4e1c\u5c3c\u5965\u3002"} +{"id": "4004720", "video_name": "88c37dee-34b6-5044-9867-a9d737fc99c3", "text": "\u6570\u5b57\u827a\u672f\u63d2\u56fe\u56fe\u50cf\uff0c\u5370\u5ea6\u5987\u5973\u6307\u5bfc\u5b66\u751f\u4e86\u89e3\u5723\u9053\u3002"} +{"id": "1003983", "video_name": "499431e3-ff3e-5b02-9966-3a46e24c2e0e", "text": "\u4e00\u4f4d\u667a\u6167\u7684\u8001\u4eba\u5e26\u7740\u4e00\u53ea\u9e70\u6765\u5230\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "2004929", "video_name": "7ce91de2-0fe4-5323-bc92-3b3499b4e500", "text": "\u4e00\u4e2a\u4eba\u95ed\u4e0a\u773c\u775b\uff0c\u7136\u540e\u573a\u666f\u8f6c\u79fb\u5230\u661f\u661f\u3001\u661f\u7cfb\u548c\u884c\u661f\u7ec4\u6210\u7684\u5b87\u5b99\u4e2d\u3002"} +{"id": "4004096", "video_name": "bac51dba-704b-5b9e-8dbb-7778b31e9e2b", "text": "\u514b\u62c9\u6258\u65af\u662f\u6218\u4e89\u4e4b\u795e\uff0c\u6b63\u5728\u73a9 PlayStation\u3002"} +{"id": "3005103", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "\u751f\u6210\u4e00\u4e2a\u5173\u4e8e\u4eba\u7c7b\u548c\u4eba\u5de5\u667a\u80fd\u76f8\u5173\u6027\u7684\u73af\u5883\u89c6\u9891\u3002"} +{"id": "2007715", "video_name": "f9cfc6ee-d289-55ed-840f-770d8759255c", "text": "\u5c0f\u7ea2\u5e3d\u5750\u5728\u5979\u5976\u5976\u65c1\u8fb9\uff0c\u5f00\u59cb\u548c\u5979\u4ea4\u8c08\u3002"} +{"id": "0005868", "video_name": "2294beae-12df-581a-8dba-79d7d379d5f8", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5012\u6302\u5728\u4e00\u5757\u77f3\u5934\u4e0a\u3002"} +{"id": "3003487", "video_name": "d8afbee4-229f-5787-9d92-4f988f541ff0", "text": "\u7ebd\u7ea6\u7684\u5929\u9645\u7ebf\u5728\u591c\u665a\uff0c\u6697\u4e91\u79fb\u52a8\uff0c\u95ea\u7535\u51fb\u4e2d\u5e1d\u56fd\u5927\u53a6\u3002"} +{"id": "0003093", "video_name": "36e4b56e-77e8-5518-9764-37f78671227c", "text": "\u4e00\u4e2a\u8fd0\u52a8\u5458\u7537\u5b50\u6500\u722c\u73e0\u7a46\u6717\u739b\u5cf0\uff0c\u955c\u5934\u4ece\u4e0b\u5f80\u4e0a\u503e\u659c\u3002"} +{"id": "2005662", "video_name": "be9efdcb-d67e-5200-8aa7-05210f76d1be", "text": "\u5e74\u8f7b\u7684\u516c\u4e3b\u5e26\u7740\u4e00\u53ea\u5c0f\u9f99\uff0c\u4e2d\u4e16\u7eaa\u80cc\u666f\uff0c\u51b7\u8272\u8c03\uff0c\u7535\u5f71\u6444\u5f71\u98ce\u683c\uff0c\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "7003021", "video_name": "f6ff9d77-bae3-5a77-9da7-1558a82cc91e", "text": "\u7537\u4eba\u4e3a\u4ed6\u7684\u7231\u5199\u4fe1\u5f97\u66f4\u5feb\u3002"} +{"id": "0003544", "video_name": "3f40dba2-abda-5bfd-9b2d-5f23cda15e64", "text": "\u673a\u5668\u4eba\u5728\u80a1\u7968\u4ea4\u6613\u6240\u4ea4\u6613\u80a1\u7968\u3002"} +{"id": "3003803", "video_name": "78b3ecef-f33a-5cde-9fc2-79fa4eacb288", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u6e56\u4e0a\uff0c\u6e56\u9762\u4e0a\u6f02\u6d6e\u7740\u4e00\u5c42\u76d6\u5b50\uff0c\u6e56\u9762\u4e0a\u6ce2\u6d9b\u6c79\u6d8c\u3002"} +{"id": "6003450", "video_name": "35dbbc3c-9d8d-5f38-b22a-f8c4b9cd78f4", "text": "\u4ed6\u5076\u7136\u53d1\u73b0\u4e00\u4e2a\u5c0f\u751f\u7269\u5728\u6323\u624e\uff0c\u4e8e\u662f\u5e2e\u52a9\u4e86\u5b83\u3002"} +{"id": "2007158", "video_name": "186d0142-1be5-5a7d-8292-135eca7c6f69", "text": "\u4e00\u4e2a\u65e5\u672c\u5973\u4eba\u5728\u6751\u5e84\u91cc\u7684\u4f20\u7edf\u5c0f\u5c4b\u91cc\u505a\u996d\u3002"} +{"id": "1004440", "video_name": "521ef40a-12f4-5f10-b1c1-c2bc25124037", "text": "\u901f\u5199\u672c\u4e2d\u7684\u56fe\u753b\u6d3b\u4e86\u8fc7\u6765\uff0c\u4ecb\u7ecd\u4e86Zamina\uff0c\u4e00\u4f4d\u4e2d\u5e74\u795e\u79d8\u7597\u6108\u5e08\uff0c\u6b63\u5728\u5236\u4f5c\u4e00\u79cd\u7279\u6b8a\u996e\u6599\u3002"} +{"id": "8002949", "video_name": "2f23ac0e-4c7b-5091-b47a-b8fdadea5d5d", "text": "\u9ed1\u8272\u5e95\u90e8\u7684\u7279\u5199\u955c\u5934\uff0c\u91d1\u8272\u7684\u6212\u6307\u4e2d\u95f4\u6709\u4e00\u53ea\u9a6c\u68cb\u5b50\uff0c\u91cc\u9762\u8fd8\u6709\u201cTRWMAGIC\u201d\u8fd9\u4e2a\u5355\u8bcd\u3002"} +{"id": "2004000", "video_name": "98cd98a7-1cb9-53c3-a64f-c0d9d4f591d3", "text": "\u4e00\u5757\u7740\u8272\u7684\u84dd\u8272\u73bb\u7483\uff0c\u53cd\u5c04\u51fa\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u53ea\u72d7\u54ac\u7740\u4e00\u5f20\u62a5\u7eb8\uff0c\u51dd\u89c6\u77408\u79d230"} +{"id": "0006736", "video_name": "32078ab0-30ea-5e1a-9d02-77cd87c1aaa5", "text": "\u4e00\u4e2a\u8001\u4eba\u5403\u610f\u5927\u5229\u9762\u548c\u559d\u8461\u8404\u9152\u3002"} +{"id": "3005569", "video_name": "4ede3f5a-048b-577a-941c-6c3c055ee480", "text": "\u4e00\u500b\u7a7f\u8457\u9ed1\u8272\u9818\u5e36\u7684\u808c\u8089\u7537\u5b50"} +{"id": "3004432", "video_name": "0d30adcf-211b-5b6b-af04-b027d780f42b", "text": "1960\u5e74\u4ee3\u5531\u7247\u5728\u706f\u5854\u9876\u90e8\u64ad\u653e\u3002"} +{"id": "6002472", "video_name": "475da32a-d114-5fcf-a8c9-5a18c8ad701b", "text": "\u4eba\u591a\u7684\u9633\u5149\u6d77\u6ee9\u65e0\u4eba\u673a\u62cd\u6444"} +{"id": "3005462", "video_name": "e1687638-1d77-5e26-ab9c-0e696d14952d", "text": "\u4e00\u4f4d\u9ed1\u53d1\u5973\u5b69\u62ff\u7740\u667a\u80fd\u624b\u673a\u5750\u5728\u591c\u603b\u4f1a\u7684\u6c99\u53d1\u4e0a\u3002\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "6002568", "video_name": "d395d3a3-7658-50af-a162-5d4f280ffc2f", "text": "\u6709\u4e9b\u5bf9\u661f\u661f\u7684\u770b\u6cd5\u4f1a\u5f62\u6210\u795e\u5947\u7684\u4e3b\u9898\u3002"} +{"id": "0003323", "video_name": "3ba52ffa-a5e4-514c-bc13-b50e8e5bfa2c", "text": "\u5728\u5730\u4e0a\u753b\u4e94\u89d2\u661f\u6765\u8fdb\u884c\u4eea\u5f0f\u7684\u4eba\u4eec\u3002"} +{"id": "7004560", "video_name": "f0f7d49a-5fd0-506a-ad25-447c79f98522", "text": "\u6ce5\u77f3\u6d41\u3002\u5ca9\u77f3\u548c\u6c34\u4ece\u5c71\u4e0a\u6eda\u843d\u3002"} +{"id": "8001611", "video_name": "73fea5e9-45e3-5547-a1d5-361fd7f0d417", "text": "\u5c55\u793a\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u559d\u4ed6\u7684\u7b2c\u4e00\u679a\u5de8\u578b\u706b\u7bad\uff0c\u5c31\u50cf\u559d\u5496\u5561\u676f\u4e00\u6837\u3002"} +{"id": "8001571", "video_name": "09e88180-1386-5a45-83f2-66022774ed13", "text": "\u5370\u5ea6\u5730\u56fe\u4e0e\u6469\u63ed\u9640\u5e1d\u56fd\u3002"} +{"id": "2007252", "video_name": "2081d8e0-34d7-5365-aca5-f2e74b773a36", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u76f4\u64ad\u5973\u4e3b\u64ad\u4ece\u7535\u8111\u5c4f\u5e55\u4e0a\u51fa\u73b0\u4e86\uff0c\u5979\u7684\u540d\u5b57\u53eb\u505aPablo Metido\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004121", "video_name": "03cf6605-0c03-5e7d-a4fa-c1236365c1d1", "text": "\u50f5\u5c38\u805a\u96c6\u5728\u4e00\u5ea7\u65e7\u7684\u5e9f\u5f03\u5efa\u7b51\u91cc\u3002"} +{"id": "1006910", "video_name": "7e60b416-5c9b-5892-bcd8-108b01f94cff", "text": "\u5185\u68ee\u5728\u7535\u8111\u4e0a\u7814\u7a76\u76ee\u7684\u5730\u3002"} +{"id": "1003346", "video_name": "3d9e7093-dff3-5a17-83f6-d9396a01de84", "text": "\u5728\u8ba1\u7b97\u673a\u76f8\u5173\u7684\u6280\u672f\u89c6\u9891\u4e2d\uff0c\u4f7f\u7528\u9ec4\u8272\u5b57\u6bcd\u5e76\u8fdb\u884c\u7f29\u653e\uff0c\u5fc5\u987b\u51fa\u73b0\u201cADV\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "8003085", "video_name": "3c80b3bb-bfef-501c-8653-f8536fd74eb5", "text": "\u5b87\u5b99\u4e2d\u98de\u884c\u7684\u5de8\u5927\u4e4c\u9f9f\u3002"} +{"id": "3005159", "video_name": "627e29e1-11c2-5196-ab37-8087d16c4115", "text": "\u98ce\u5439\u52a8\u4e86\u4ed6\u7684\u5934\u53d1\uff0c\u6c49\u5b57\u95ea\u70c1\u4e86\u4e00\u4e0b\u3002"} +{"id": "6004968", "video_name": "a5cd22d2-d317-5daa-8347-97ba8b5e391e", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u7684\u4eba\u7269\uff0c\u4f1a\u5531\u6b4c\u548c\u8df3\u821e\u3002\n\nSource sentence: The sky is blue on a clear day. \n\n\u6674\u5929\u65f6\u5929\u7a7a\u662f\u84dd\u8272\u7684\u3002"} +{"id": "8002274", "video_name": "eb1bc24b-c249-589f-97cd-8ebf631f81f0", "text": "Source sentence: Prince Hisahito of Hizen \u9762\u5e26\u51b3\u7edd\u7684\u89c6\u9891\n\nTranslation: \u9762\u5e26\u51b3\u7edd\u7684\u89c6\u9891\uff0c\u662f\u6307\u8087\u5e86\u738b\u5b50\u4e45\u4ec1"} +{"id": "1006421", "video_name": "758878c8-84ab-57fc-8325-a2859cd84db8", "text": "\u5728\u6d77\u6ee9\u4e0a\u5f39\u5409\u4ed6\u624b\u5728\u96e8\u4e2d\uff0c\u8d85\u73b0\u5b9e\u7684\u3002"} +{"id": "1003069", "video_name": "3871fb69-bfbc-52c1-bf71-972f106ecb38", "text": "\u4e00\u53ea\u98de\u9c7c\u5728\u5c4b\u9876\u4e0a\uff0c\u8fd8\u6709\u4e00\u53ea\u9e1f\u3002"} +{"id": "1004953", "video_name": "5b92d45f-f87a-5c86-932d-d444e1db9274", "text": "\u4e07\u5723\u8282\u9762\u5177\u5236\u4f5c\u5de5\u4f5c\u574a\u3002\u9002\u5408\u52c7\u6562\u7684\u5973\u5b69\u548c\u7537\u5b69\uff08\u6216\u8005\u5176\u4ed6\u8ba9\u4ed6\u4eec\u660e\u767d\u8fd9\u4e9b\u662f\u53ef\u6015\u7684\u4e1c\u897f\u7684\u65b9\u5f0f"} +{"id": "4002040", "video_name": "c4903a43-0658-579b-b75d-f598d2d3356e", "text": "\u4e9a\u6d32\u9f99\u4ece\u70df\u96fe\u4e2d\u51fa\u73b0\u3002"} +{"id": "1006939", "video_name": "7ef51c39-95ac-5d2b-82f4-ac4bd6836683", "text": "\u5973\u5b69\u7528\u91d1\u8272\u9ab0\u5b50\u6539\u53d8\u5979\u7684\u5986\u5bb9\u3002"} +{"id": "0006982", "video_name": "3640eab9-10ff-590a-ab22-d1fbc509b4ea", "text": "\u8fc8\u514b\u00b7\u6cf0\u68ee\u548c\u8fc8\u514b\u00b7\u74e6\u7956\u65af\u57fa\u5728\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\u6253\u6597\u3002"} +{"id": "8002848", "video_name": "a5e8503b-de59-5acc-ad0c-370512aec2dd", "text": "\u4e00\u5bb6\u5145\u6ee1\u8c82\u76ae\u5927\u8863\u7684\u5de5\u5382\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3002"} +{"id": "1005749", "video_name": "69c94375-1b12-5787-a6f7-deadcd97fb13", "text": "\u5317\u52a0\u5dde\u65e9\u671f2000\u5e74\u4ee3\u7684\u6d77\u6ee9\uff0c\u6ee1\u662f\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u9ec4\u8272\u7684\u82b1\u6735\uff0c\u5728\u8fdc\u5904\u8d70\u7740\u4e00\u4f4d\u7a7f\u7740\u5de5\u4f5c"} +{"id": "4002103", "video_name": "dc316b55-69a7-5145-9585-55e078d66ff6", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u5403\u4e16\u754c\u4e0a\u6700\u5927\u7684\u6c49\u5821\u3002\u955c\u5934\u5411\u5de6\u79fb\u52a8\uff0c\u53d1\u73b0\u4eba\u4eec\u6b63\u5728\u4e3a\u7537\u5b69\u6b22\u547c\u3002"} +{"id": "2005431", "video_name": "d9a636cd-8c5c-5f5a-95fb-068b893de2eb", "text": "Cristiano Ronaldo \u5bf9\u6218 \u6885\u897f\uff0c\u4f20\u5947\u4e4b\u6218"} +{"id": "3005485", "video_name": "a1ad6fff-16a9-5046-a115-ceb37d0bc27c", "text": "\u5e74\u8f7b\u5973\u5b50\u5750\u5728\u73b0\u4ee3\u516c\u5bd3\u91cc\u804a\u5929\u3002"} +{"id": "6002690", "video_name": "26700d00-9870-5d85-97d4-c4c39931f0e9", "text": "\u56fe\u7247\u903c\u771f\u7684\u987a\u65f6\u9488\u79fb\u52a8\uff0c\u5c55\u73b0\u82cf\u683c\u5170\u9ad8\u5730\u96ea\u5c71\u666f\u8272\uff0c\u6811\u4e0a\u6302\u6ee1\u4e86\u4ed9\u5973\u706f\u3002\u5bbd\u5c4f16:9\u3002"} +{"id": "1005750", "video_name": "69ca5bc6-8597-5519-8f06-684fa3d74db4", "text": "\u6d77\u5578\u53f2\u8bd7\u822c\u7684\u573a\u666f\uff0c\u4e1b\u6797\u4e2d\u7684\u5927\u6d6a\uff0c\u8ba9\u4eba\u60ca\u6050\u3002"} +{"id": "4004741", "video_name": "7a586d62-0991-5bdd-843e-15530cfc6ecd", "text": "\u4e00\u4e2a\u5929\u4f7f\u548c\u9a91\u58eb\u624b\u62c9\u624b\u7684\u8001\u5f71\u7247"} +{"id": "4002438", "video_name": "306ae1b2-c1f4-501b-a771-37cbb3e6c461", "text": "\u753b\u5bb6\u5728\u753b\u5e03\u4e0a\u63cf\u7ed8\u6e05\u6670\u7684\u7b14\u89e6\u3002"} +{"id": "1004492", "video_name": "53400fb1-d294-5e0b-a7f0-ddf2e3612d75", "text": "\u4e08\u592b\u6b63\u5728\u7b49\u5f85\u59bb\u5b50\u7684\u56de\u7b54\u3002\u9ad8\u6e058k\u6697\u591c\u3002\u8d85\u7ea7\u903c\u771f\u3002\u7ec6\u8282\u60ca\u4eba\u3002"} +{"id": "0003875", "video_name": "450581b9-e218-58f2-978a-7d48250f6d22", "text": "\u672a\u6765\u4e3b\u4e49\u8d5b\u8f66\u624b\u7ad9\u5728\u98de\u884c\u677f\u4e0a\uff0c\u5f53\u5b83\u4ece\u6444\u50cf\u673a\u65c1\u98de\u8fc7\u65f6\uff0c\u7559\u4e0b\u9713\u8679\u8272\u7684\u5c3e\u8ff9\uff0c\u62e5\u6709\u8d85\u9ad8"} +{"id": "6002482", "video_name": "2cc1824c-91d4-56eb-8720-307e4da721d4", "text": "\u706b\u5f71\u5ca9\u4e0a\u7ad9\u7740\u9e23\u4eba\u3002"} +{"id": "8002795", "video_name": "be85fbb0-0318-58d0-b9e8-5c3acc2fdf94", "text": "\u672a\u6765\uff0c\u4e00\u5207\u770b\u8d77\u6765\u50cf\u7535\u5f71\u300a\u7279\u6d1b\u4f0a\u300b\uff0c\u98de\u884c\u6c7d\u8f66\uff0c\u9713\u8679\u8272\u8863\u670d\uff0c\u6295\u63b7\u98de\u76d8\u3002"} +{"id": "1006672", "video_name": "7a2c4f3d-b275-5a50-8068-8ede5eef3ae7", "text": "\u4f0a\u739b\u6d1b\u7518\u56fd\u738b"} +{"id": "1004780", "video_name": "5864112e-ad61-5ad1-85c7-d3b13e688134", "text": "\u591c\u7a7a\u4e2d\u7684\u5927\u6708\u4eae\u4f4d\u4e8e\u753b\u9762\u4e2d\u592e\uff0c\u6620\u886c\u7740\u6e05\u6f88\u65e0\u7455\u7684\u591c\u7a7a\u3002"} +{"id": "0003850", "video_name": "4495aed5-afb6-59a8-bc99-e2adef7064c8", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u7684\u623f\u5b50\u91cc\uff0c\u7528\u624b\u52bf\u5411\u5176\u4ed6\u5b69\u5b50\u89e3\u91ca\uff0c\u57283D\u6e32\u67d3\u7684\u9ed1\u6697\u80cc\u666f\u4e0b\uff0c\u623f\u5b50\u91cc\u6709\u706f"} +{"id": "4002188", "video_name": "2511ef7a-2b3f-555f-845e-e09a6420d721", "text": "\u4e00\u53ea\u732b\u5728\u5730\u677f\u4e0a\u5411\u6211\u8dd1\u6765\u3002"} +{"id": "6004690", "video_name": "13724112-0802-58c0-992c-423ee341d5de", "text": "\u4e00\u53ea\u5154\u5b50\u7684\u5feb\u4e50\u5361\u901a\u5f62\u8c61\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u5916\u592a\u7a7a\uff0c\u6d88\u5931\u70b9\uff0c\u8d85\u7ea7\u9ad8\u901f\u516c\u8def\uff0c\u6570\u5b57\u6e32\u67d3\uff0c\u6570\u5b57"} +{"id": "7004069", "video_name": "e3011ccf-a4df-5f98-bfba-65543801579e", "text": "\u8bf7\u5c06\u6b64\u56fe\u50cf\u52a8\u753b\u5316\uff0c\u8ba9\u4eba\u4eec\u5728\u8def\u4e0a\u8d70\u52a8\uff0c\u5546\u5e97\u91cc\u4e5f\u6709\u4e9b\u4eba\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004979", "video_name": "5c10f4d7-98e2-5e3f-bdc0-b8d8543ba616", "text": "\u4e24\u4e2a\u7537\u5b69\u5750\u5728\u6811\u4e0b\uff0c\u8c08\u8bba\u4ed6\u4eec\u5c45\u4f4f\u7684\u6751\u5e84\u3002"} +{"id": "0006543", "video_name": "2e7292c2-ab1a-5a71-8368-3e878c73769d", "text": "DJ\u5728\u626d\u66f2\u7684\u706f\u5149\u524d\u9762\u8df3\u821e\u3002"} +{"id": "4004695", "video_name": "18ff1568-9063-51fd-b934-2123898689b7", "text": "\u4f34\u968f\u7740\u62c9\u739b\u7684\u7334\u5b50\u548c\u718a\u611f\u5230\u56f0\u60d1\uff0c\u4e0d\u77e5\u9053\u8be5\u600e\u4e48\u529e\u3002"} +{"id": "2005077", "video_name": "3fb6450b-6df5-5d1d-8e83-c318882485c0", "text": "\u5c71\u6d1e\u91cc\u6709\u5ca9\u753b\uff0c\u524d\u666f\u6709\u7bdd\u706b\u71c3\u70e7\u3002"} +{"id": "4003243", "video_name": "8e5eb4d1-6288-5e2a-b36c-832c1b5e3ae3", "text": "\u521b\u4f5c\u4e00\u4ef6\u81f4\u656c\u5df4\u52d2\u65af\u5766\u4f20\u7edf\u6587\u5316\u7684\u65f6\u5c1a\u4f5c\u54c1\u3002\u63a2\u7d22\u7cbe\u7ec6\u7684\u523a\u7ee3\uff0c\u8c61\u5f81\u7740\u97e7\u6027"} +{"id": "1004055", "video_name": "4b2f2d25-d8ee-5af1-9f2c-70ed4c7f227c", "text": "\u673a\u5668\u4eba\u3001\u5b89\u5353\u3001\u5973\u4eba\u548c\u5b69\u5b50\u5728\u5f00\u8f66\u3002"} +{"id": "2006908", "video_name": "f6940bf6-966a-5acc-9fb8-607804b184bc", "text": "\u7528\u5237\u5b50\u6e05\u6d01\u9e82\u76ae\u8fd0\u52a8\u978b\uff0c\u5728\u4e00\u4e2a\u5927\u623f\u95f4\u91cc\u8fdb\u884c\uff0c\u6444\u50cf\u673a\u81ea\u4e0a\u800c\u4e0b\u62cd\u6444\u3002"} +{"id": "4004646", "video_name": "c33663a3-8b8a-5ca0-9fd8-e8e9900dbf8a", "text": "\u8c6a\u534e\u6c7d\u8f66\u5728\u903c\u771f\u573a\u666f\u4e2d\u884c\u9a76\uff0c\u5168\u7a0b\u8d85\u8fc720\u79d2\u3002"} +{"id": "7004015", "video_name": "a46d5a26-17a8-5885-9aba-151cfc720ffe", "text": "\u8718\u86db\u4fa0\u6b63\u5728\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "1005392", "video_name": "6322aab4-7b3b-5199-9fe5-aae21bdb9f62", "text": "\u81ea\u7531\u5973\u795e\u50cf\u5728\u6316\u9f3b\u5b54\u3002"} +{"id": "5001876", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "\u4e00\u4f4d\u5987\u5973\u5de5\u4f5c\u4e86\u6574\u6574\u4e00\u5929\u540e\u611f\u5230\u75b2\u60eb\uff0c\u5979\u5750\u5728\u6905\u5b50\u4e0a\u7136\u540e\u9677\u5165\u4e86\u7761\u7720\u3002"} +{"id": "3005661", "video_name": "ad8381a8-854c-58f7-87fb-9c059abc8892", "text": "\u65e5\u672c\u519b\u961f\u7684\u533b\u5b66\u548c\u751f\u7269\u5b9e\u9a8c"} +{"id": "2004230", "video_name": "5ea65a2d-369f-56ca-ab6e-fa12d755456f", "text": "\u4e24\u4e2a\u5973\u4eba\u60ca\u8bb6\u5730\u5bf9\u89c6\uff0c\u610f\u8bc6\u5230\u5979\u4eec\u957f\u5f97\u5b8c\u5168\u4e00\u6837\u3002\u5979\u4eec\u7684\u7279\u5f81\u3001\u8138\u578b\u548c\u53d1\u578b\u51e0\u4e4e\u4e00\u6a21\u4e00\u6837\uff0c"} +{"id": "7004315", "video_name": "53e61261-98ea-5207-ad4e-f6a844314403", "text": "\u6e29\u99a8\u7684\u5ba2\u5385\u6709\u70ed\u706b\u548c\u6ee1\u6ee1\u7684\u82b1\u3002"} +{"id": "1005747", "video_name": "69c3a1a0-b277-5bf0-83bf-8be1dfc54a87", "text": "\u5973\u4eba\u7a7f\u7740\u4e13\u4e1a\u7684\u6500\u5ca9\u88c5\u5907\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "4003096", "video_name": "2e77ea28-9654-5d10-8459-e46e1c8362b7", "text": "\u4e00\u6b3e\u667a\u80fd\u624b\u673a\u7684\u4ea7\u54c1\u7167\u7247\uff0c\u6446\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u91c7\u7528\u7f16\u8f91\u98ce\u683c\uff0c\u81ea\u7136\u5149\u7ebf\u3002"} +{"id": "1006827", "video_name": "7ce312fa-7b39-5e7c-83db-3142d66644b0", "text": "\u5370\u5ea6\u7684\u5438\u5f15\u4eba\u548c\u751f\u52a8\u7684\u5f69\u8272\u753b\u9762\u3002"} +{"id": "4004051", "video_name": "4bce6e8e-798f-58e1-b823-c2ae7951105c", "text": "15\u82f1\u5c3a\u9ad8\u548c5\u82f1\u5c3a3\u82f1\u5bf8\u9ad8\u7684\u7537\u5b50\u5728\u660e\u4eae\u7684\u9633\u5149\u4e0b\u4f7f\u7528\u68cd\u68d2\u640f\u6597\u3002"} +{"id": "2007233", "video_name": "923d7d6d-9e88-5be6-8152-7703be300b21", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u8611\u83c7\u4e0a\u7684\u753b\u4f5c\uff0c\u98ce\u683c\u6df7\u5408\u4e86\u5669\u68a6\u822c\u7684\u751f\u7269\u548c\u53ef\u7231\u52a8\u753b\u7684\u98ce\u683c\uff0c\u7c97"} +{"id": "4004948", "video_name": "9494f288-583e-5748-9270-9c5ee7596ea4", "text": "a platform for emerging filmmakers to showcase their talents, experiment with new ideas, and push creative boundaries.\n\n\u77ed\u7247\u4ecd\u7136\u662f\u7535\u5f71\u754c\u4e2d\u81f3\u5173\u91cd\u8981\u4e14\u5145\u6ee1\u6d3b\u529b\u7684\u4e00\u90e8\u5206\uff0c\u4e3a"} +{"id": "7003342", "video_name": "65e445c7-d018-5851-a464-3ec9850e312b", "text": "\u8fea\u58eb\u5c3c\u4e50\u56ed\u91cc\u7684\u5b69\u5b50\u4eec\u90fd\u5728\u73a9\u4ed6\u4eec\u7684iPad\u3002"} +{"id": "1005880", "video_name": "6c32940a-26a7-554f-8b51-90087dbd4afa", "text": "\u4e00\u4e2a\u671d\u5411\u7eff\u8272\u661f\u7403\u98de\u884c\u7684\u53cd\u4e4c\u6258\u90a6\u592a\u7a7a\u98de\u8239"} +{"id": "1006438", "video_name": "75df5fc8-9971-54cf-b5ad-7bad031daedf", "text": "\u4e00\u53ea\u677e\u9f20\u5728\u6d74\u7f38\u91cc\u6e38\u6cf3\uff0c\u5361\u901a"} +{"id": "2004211", "video_name": "9d530f18-25d0-5f5b-9d11-a6dd203fab70", "text": "\u9ed1\u6697\u6df1\u5904\u7684\u9c9c\u660e\u9ec4\u8272\u90aa\u6076\u773c\u775b\u3002"} +{"id": "7004970", "video_name": "c9619d12-cd6d-573d-84a3-c2a2a082faba", "text": "\u4eba\u7c7b\u6df1\u6e0a\u4e2d\u7684\u7b2c\u4e00\u56e2\u706b\u7130\u3002"} +{"id": "0004339", "video_name": "076117fa-cd53-5235-a6da-67da870f1ad6", "text": "\u672a\u6765\u4eba\u5de5\u667a\u80fd\u53d1\u5c55\u65b9\u5411\u76848K\u5206\u8fa8\u7387\u9ad8\u8d28\u91cf\u89c6\u9891\u3002"} +{"id": "5001627", "video_name": "2a2a4438-90a6-591a-84e8-67c44abfcf62", "text": "\u4e8c\u6218\u7ed3\u675f\u65f6\uff0c\u4fc4\u7f57\u65af\u5e86\u795d\u65f6\u9152\u7cbe\u996e\u6599\u77ed\u7f3a\u3002"} +{"id": "2004993", "video_name": "7d6047c1-dc8b-570f-9cbe-8eb39e1e28cf", "text": "\u4e24\u4e2a\u4eba\u80cc\u5bf9\u80cc\uff0c\u540e\u9762\u662f3D\u80cc\u666f\uff0c\u7528\u4e8e\u7535\u89c6\u5267\u5ba3\u4f20\u3002"} +{"id": "6003359", "video_name": "b125a660-49af-5e50-8e30-0a641e09cec0", "text": "\u8349\u5730\u4e0a\u8dd1\u7740\u7684\u52a8\u6f2b\uff0c\u955c\u5934\u9762\u5411\u4fa7\u9762\uff0c\u5c55\u73b0\u4fa7\u9762\u77ac\u95f4\u3002"} +{"id": "0006199", "video_name": "281c29f1-c5bb-53f4-ae99-a77560ca9a1d", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7ad9\u5728\u4e00\u6735\u4e91\u4e0a\uff0c\u7a7f\u7740\u4e00\u4ef6\u767d\u8272\u957f\u888d\u548c\u4e00\u9876\u91d1\u8272\u7687\u51a0\uff0c\u773a\u671b\u5929"} +{"id": "2004528", "video_name": "d14ed0fb-9ebd-5c15-9c6b-231733fe239d", "text": "\u6211\u68a6\u89c1\u4e00\u53ea\u84dd\u8272\u7684\u5927\u8c61\uff0c\u5b83\u7528\u8033\u6735\u6247\u98de\u7fd4\u7740\u3002\u6211\u68a6\u89c1\u4e00\u53ea\u84dd\u8272\u7684\u5927\u8c61\uff0c\u5b83"} +{"id": "2004927", "video_name": "efca1361-0bbf-5d3e-9add-9f585df5801f", "text": "\u6bd4\u7279\u5e01\u5e02\u573a\u7092\u4f5c\u7684\u89c6\u9891"} +{"id": "1003952", "video_name": "48f441fa-92a4-5173-98cb-06db494e75d0", "text": "\u7167\u7247\u4e0a\u662f\u4e00\u53ea\u8001\u864e\u7ad9\u5728\u6e38\u6cf3\u6c60\u65c1\u8fb9\uff0c\u80cc\u666f\u662f\u767d\u8272\u8c03\u7684\u8c6a\u534e\u4f4f\u5b85\uff0c\u5c71\u5ce6\u5728\u540e\u9762\u3002"} +{"id": "0004100", "video_name": "03376759-450b-52a4-a9fb-798f24b284f5", "text": "\u73b0\u5b9e\u7684\u884c\u661f\uff0c\u5448\u8584\u997c\u72b6\uff0c\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "5001829", "video_name": "d1398953-04e2-54f3-a6ae-d7115c203051", "text": "\u4e00\u6839\u523a\u7ee3\u9488\u795e\u5947\u5730\u5728\u4e00\u5757\u5e03\u6599\u4e0a\u7f1d\u5236\u51fa\u4e00\u4e2a\u56fe\u6848\u3002"} +{"id": "1003477", "video_name": "4074fc00-c543-5c2f-87ac-0863038c5649", "text": "\u8bf7\u5728\u540c\u4e00\u5f20\u56fe\u7247\u4e0a\u52a0\u5165\u201cLEON\u8ba1\u5212\u201d\u7684\u6807\u9898\u3002"} +{"id": "2005560", "video_name": "fed5f289-90d8-5ee3-b19e-733639129b3e", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u65e5\u843d\u65f6\u8def\u8fc7\u6a31\u82b1\u6811\u3002"} +{"id": "7003029", "video_name": "5cecf676-468f-58df-bb92-339b0bc11c9a", "text": "\u963f\u6ce2\u7f5711\u53f7\u4efb\u52a1\u5438\u5f15\u4e86\u5168\u4e16\u754c\u7684\u773c\u7403\uff0c\u6c38\u8fdc\u6539\u53d8\u4e86\u6211\u4eec\u5bf9\u4e8e\u53ef\u80fd\u6027\u548c\u7535\u5f71\u7684\u7406\u89e3\u3002-AR 16:9-"} +{"id": "0006702", "video_name": "31637b69-a162-5bb0-8d45-202ce9df5bd2", "text": "\u5929\u7a7a\u5f00\u9614\uff0c\u4e0b\u7740\u9a6c\u620f\u56e2\u822c\u7eda\u4e3d\u7684\u5f69\u8272\u96e8\uff0c\u6d77\u62a5\u3002"} +{"id": "6004817", "video_name": "a6d6ccae-6665-5ecb-8b36-89303d5a4025", "text": "\u7eff\u8272\u73b0\u5b9e\u7684\u82e6\u884c\u50e7 \u4fe1\u606f\uff1a \u092e\u094b\u0915\u094d\u0937 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1005013", "video_name": "5cbee2ba-7f59-517e-a308-40fa2dbef996", "text": "\u8001\u5987\u4eba\u4f7f\u7528\u667a\u80fd\u624b\u673a\uff0c\u673a\u5668\u4eba\u5e2e\u52a9\u8001\u4eba\uff0c\u660e\u4eae\u7684\u6c1b\u56f4\uff0c1990\u5e74\u7f8e\u56fd\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "8001361", "video_name": "e9fc66cb-678e-50f9-8dbf-f34788ee7fc4", "text": "\u624b\u5de5\u827a\u54c1\u53d8\u5f97\u53d7\u6b22\u8fce\uff0c\u82b1\u56ed\u7e41\u8363\u8d77\u6765\uff0c\u5c0f\u5c4b\u53d8\u6210\u4e86\u6e29\u99a8\u548c\u793e\u533a\u7684\u4e2d\u5fc3\u3002"} +{"id": "2005023", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "\u4e00\u4e2a\u52a0\u5229\u798f\u5c3c\u4e9a\u5973\u5b69\uff0c\u4f38\u5c55\u7740\u8eab\u4f53\uff0c\u5fae\u7b11\u7684\u9762\u5bb9\u3002"} +{"id": "4002310", "video_name": "88ed614b-112c-594a-a5d7-4476eedd5e80", "text": "\u7cbe\u7075\u5f13\u7bad\u624b\u4ee5\u52a8\u6f2b\u98ce\u683c\u5411\u98de\u9f99\u5c04\u7bad\u3002"} +{"id": "2004724", "video_name": "ff247368-1758-536c-b1a0-65f403cdaf10", "text": "\u4e00\u4e2a\u5728\u9b3c\u68ee\u6797\u4e2d\u7684\u53ef\u6015\u6cb3\u6d41\uff0c\u6709\u4e00\u53ea\u5927\u4e4c\u9e26\u3002"} +{"id": "5001807", "video_name": "126c9059-2149-5219-aabd-38986af7ddf5", "text": "\u5728\u91cd\u5927\u6289\u62e9\u7684\u90a3\u4e00\u523b\uff0c\u6885\u62c9\u51b3\u5b9a\u8fd9\u6b21\u8ddf\u968f\u81ea\u5df1\u7684\u5185\u5fc3\uff0c\u800c\u62c9\u6770\u5219\u53d1\u8a93\u4e0d\u518d\u8ba9\u5979\u79bb"} +{"id": "2006513", "video_name": "653a14da-0e63-5663-adf5-119a16c08aa4", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u79cd\u690d\u56ed\u4e0a\u9a7e\u9a76\u62d6\u62c9\u673a\u3002"} +{"id": "0004949", "video_name": "12106ef6-e608-5b7b-8119-e1e14f368fbb", "text": "\u4e24\u4e2a\u7a7f\u7740\u672a\u6765\u611f\u670d\u88c5\u7684\u7537\u4eba\u5728\u52a8\u753b\u98ce\u683c\u4e0b\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "6003324", "video_name": "15ec6555-f6bc-568f-84ed-11798b18d612", "text": "\u773c\u775b\u7279\u5199\u4e2d\u7684\u53cd\u5c04 \u4fe1\u606f\uff1aSKRAELINGS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0005472", "video_name": "1b5ffd2a-ec75-5e9d-a77a-964443f99957", "text": "\u66b4\u98ce\u96e8\u4e2d\u7684\u9ed1\u6697\u57ce\u5821\u884c\u52a8\u573a\u666f"} +{"id": "1003704", "video_name": "4458dc3a-4384-5170-9880-a4b8f5422ed9", "text": "\u4e00\u4e2a\u751f\u9e21\u86cb\u86cb\u9ec4\u6d41\u8fc7\u5c4f\u5e55\u3002\n\nSource sentence: The sun sets over the mountains in the distance. \n\n\u592a\u9633\u5728\u8fdc\u5904\u7684\u5c71\u5cf0\u4e0a\u843d\u5c71"} +{"id": "8002532", "video_name": "cb4068b3-ccb3-5cb3-81d3-f53e724fbccc", "text": "\u7d2b\u8272\u548c\u6a59\u8272\u7684\u706b\u7206\u70b8\uff0c\u795e\u5947\u7684\u80fd\u91cf\uff0c4K\u7535\u5f71\u822c\u7684\u6548\u679c\u3002\n\nSource sentence: The world is full of possibilities and opportunities, it's up to"} +{"id": "8003824", "video_name": "129e3f07-b53d-5b9f-a039-68f84db1462c", "text": "\u5851\u6599\u6761\u7f20\u7ed5\u5728\u624b\u8155\u4e0a\uff0c\u672a\u6765\u611f\u7684LED\u5c4f\u5e55\uff0c\u65e7\u957f\u8896\u8fde\u4f53\u88e4\uff0c\u6df7\u51dd\u571f\u623f\u95f4\uff0c\u7a7f\u7740\u8fde\u4f53"} +{"id": "0006533", "video_name": "2e50373d-b055-58cd-834d-5d385fd21e3f", "text": "\u4e00\u6bb5\u77ed\u7247\u5c55\u793a\u5c3c\u6cca\u5c14\u7684\u5c71\u8109\uff0c\u8fd8\u6709\u5317\u6781\u718a\u7b49\u52a8\u7269\u3002"} +{"id": "7003704", "video_name": "ec24407b-e974-5571-aa6e-3bafe3fb8295", "text": "\u6c7d\u8f66\u5f00\u5230\u4e86\u7530\u91ce\u4e0a\u3002"} +{"id": "2006438", "video_name": "043a6454-0371-5bcc-8ad4-c3ddd79e14fc", "text": "\u7531\u5973\u5b69\u7ed8\u5236\u7684\u4e13\u4e1a\u6807\u5fd7\u548c\u5b57\u6bcdP"} +{"id": "5001373", "video_name": "6b393043-591e-5ce4-b49c-0453dbeaa1bd", "text": "\u6b66\u58eb\u8df3\u8fc7\u8d5b\u535a\u57ce\u5e02\u5efa\u7b51\u7269\u7684\u5c4b\u9876\u3002"} +{"id": "6004858", "video_name": "a9ce6813-6500-5091-95eb-c601f01b0839", "text": "\u65b0\u9c9c\u6c34\u679c\uff0c\u84dd\u8272\u80cc\u666f\u3002\u4fe1\u606f\uff1a\u8682\u8681\u96c6\u56e2\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0005383", "video_name": "19daa434-8e78-53ae-8b54-09c176ae978f", "text": "\u68a6\u60f3\u6838\u5fc3\u6e38\u4e50\u573a\u5728\u5c71\u4e0a\u8fdc\u5904\u3002"} +{"id": "4004293", "video_name": "cc33d4f6-8330-5c7c-a7a2-136b47e67797", "text": "\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\u7684\u96ea\u8304IQOS"} +{"id": "6003049", "video_name": "d81eb1da-1c60-5687-8acd-76d5fd157ede", "text": "\u4e00\u53ea\u8774\u8776\u98de\u5728\u6709\u82b1\u6735\u7684\u952e\u76d8\u4e0a\u65b9\u3002"} +{"id": "6004758", "video_name": "19f420f0-5ca0-5231-9888-1f6ea5d53a41", "text": "\u7f8e\u4e3d\u6d41\u7545\u7684\u6db2\u4f53\u9ed1\u5de7\u514b\u529b\u50cf\u5de7\u514b\u529b\u6d77\u5578\u4e00\u6837\u3002"} +{"id": "6003617", "video_name": "c232a77a-7c88-5065-a918-73818c9d15e8", "text": "\u8461\u8404\u7259\u5de5\u4f5c\u5ba4\u7684\u201cPortugol Studio\u201d\u7a0b\u5e8f\u7684\u6807\u5fd7\uff0c\u6709\u624b\u81c2\u548c\u817f\uff0c\u6234\u7740\u793c\u5e3d\uff0c\u662f\u4e00\u4e2a\u52a8\u6001\u7684\u56fe\u50cf\u3002"} +{"id": "2004198", "video_name": "63018013-ec66-5614-aa46-2a46e6f51d53", "text": "\u4e09\u56fd\u65f6\u671f\u5f20\u98de\u7684\u8096\u50cf\u753b\u3002"} +{"id": "7003606", "video_name": "2f5e7cae-0d6a-575d-b448-9ffc9edfad9d", "text": "\u8d85\u7ea7\u5fae\u8ddd\u7684\u62c9\u6590\u5c14\u5929\u4f7f\u3002"} +{"id": "8002935", "video_name": "bbde2682-88eb-5c8b-984d-b73cbb23d155", "text": "\u5377\u8d77\u6765\u7684T\u6064\u5728\u8d27\u67b6\u4e0a \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "1004083", "video_name": "4ba6a797-aee0-5c7f-94d9-0ce4c294f183", "text": "\u5728\u4e00\u5f20\u684c\u5b50\u4e0a\uff0c\u6709\u6a59\u8272\u548c\u7ea2\u8272\u7684\u7535\u6d41\u4ece\u4e2d\u98de\u51fa\u3002"} +{"id": "8001281", "video_name": "6301f5d0-1b08-58e5-92b7-1fa9a6d4e8c2", "text": "\u5c55\u793a\u4e00\u4e2a\u5145\u6ee1\u7eff\u8272\u690d\u7269\u3001\u76db\u5f00\u82b1\u6735\u548c\u4e30\u5bcc\u679c\u6811\u7684\u751f\u673a\u52c3\u52c3\u7684\u666f\u8c61\u3002"} +{"id": "2003546", "video_name": "f9ca0691-29d2-5ff2-a3f2-ba447c510062", "text": "\u963f\u7ea6\u5fb7\u4e9a\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u7eb9\u7406\uff0c\u9ad8\u80fd\u6e32\u67d3\uff0c\u591a\u4e91\uff0c\u96fe\u8499\u8499\u7684\uff0c\u5bf9\u79f0\u7684\u62cd\u6444\uff0c\u5149\u7ebf"} +{"id": "0004302", "video_name": "06b54283-b836-5af4-b003-4b652814a5ce", "text": "\u591c\u665a\u8db3\u7403\u573a\u4e0a\uff0c\u7535\u5b50\u9a6c\u6765\u864e\u4e0e\u4e00\u53ea\u5927\u8c61\u5bf9\u624b\u5bf9\u6218\u3002"} +{"id": "7004189", "video_name": "d55c7f57-3b87-5d50-8531-b2fe3b8d929f", "text": "\u60f3\u8c61\u4e00\u4e0b\u6234\u7740\u5e3d\u5b50\u7684\u732b\u62ff\u7740\u4f1e\u8d70\u8fdb\u6765\uff0c\u4ed6\u7684\u8c03\u76ae\u773c\u795e\u95ea\u95ea\u53d1\u5149\uff0c\u8428\u8389\u548c"} +{"id": "0006569", "video_name": "2ec3ecec-a938-5827-85e7-fc9f1d6827ff", "text": "\u5370\u5ea6\u795e\u7947\u6e7f\u5a46\u5728\u5c71\u9876\u8df3\u821e\u3002"} +{"id": "6002899", "video_name": "fc6fa386-8d6a-54ea-9645-41bdc3e74560", "text": "\u6d77\u76d7\u4eec\u80a9\u8180\u4e0a\u625b\u7740\u5b9d\u7bb1\u7684\u7535\u5f71\u5316\u955c\u5934\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u98ce\u96e8\u4ea4\u52a0\uff0c\u5bcc\u58eb\u80f6\u7247\u76f8\u673a\u3002"} +{"id": "5001431", "video_name": "e5ab51e1-b490-5167-a2c6-329eaccd1a87", "text": "\u5e74\u8f7b\u7684\u548c\u5c1a\u5750\u5728\u90a3\u91cc\u8bfb\u7ecf\uff0c\u6444\u50cf\u673a\u5728\u56f4\u7ed5\u7740\u4ed6\u3002"} +{"id": "7003303", "video_name": "94b8cef0-202c-57ed-92cc-0ddd1249d7a1", "text": "\u6d77\u5e95\u7684\u4e09\u89d2\u5f62\u6d1e\u53e3\u3002"} +{"id": "0004475", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "\u4e54\u00b7\u7f57\u6839\u548c\u4e00\u4e2a\u5a74\u513f\u8df3\u821e\u3002"} +{"id": "6003179", "video_name": "3752041d-23b3-52c1-bd67-f115cf0e8a56", "text": "\u6ce2\u897f\u7c73\u4e9a\u72d7\uff0c\u753b\u6ed1\u7a3d\u63d2\u753b\uff0c\u827a\u672f\u611f\u5341\u8db3\uff0c\u4f69\u6234\u7c89\u8272\u5fc3\u5f62\u6846\u67b6\u592a\u9633\u955c\u3002"} +{"id": "5001252", "video_name": "28f52e1d-ad70-5e80-a307-f3c42bc6e995", "text": "\u4e00\u4e2a\u51b0\u6dc7\u6dcb\u86cb\u5377\u7684\u52a8\u753b\u6807\u5fd7"} +{"id": "7004751", "video_name": "5c937ed3-3ddb-522e-8158-63f181795410", "text": "\u4e00\u4f4d\u5973\u5b50\u7684\u4e09\u4e2a\u513f\u5b50\u53c2\u52a0\u4e86\u6218\u4e89\u3002"} +{"id": "8002316", "video_name": "82ab0d31-a064-50ff-9191-ea32f347109d", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b69\u5750\u5728\u4e00\u7fa4\u4eb2\u621a\u4e2d\u95f4\uff0c\u6b63\u5728\u8c08\u8bba\u7740\u4ec0\u4e48\u3002"} +{"id": "8002321", "video_name": "34bde255-b334-5f2f-a700-585020a3fb68", "text": "\u5efa\u7b51\u7269\u6b63\u5728\u5de6\u53f3\u6447\u6643\u3002"} +{"id": "2005063", "video_name": "371d681a-3533-53a9-8755-44602d96ac2e", "text": "\u4e00\u4e2a\u8fc7\u4e8e\u5174\u594b\u7684\u5973\u4eba\u7684\u601d\u7ef4\u5145\u6ee1\u7740\u7c89\u8272\u3001\u7d2b\u8272\u3001\u84dd\u8272\u3001\u7eff\u8272\u3001\u4e94\u989c\u516d\u8272\u7684\u4e91\u5f69\u3001"} +{"id": "3005473", "video_name": "9ca755dc-0637-5310-a42d-538c30d019f6", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u63a5\u7535\u8bdd\u3002"} +{"id": "7002051", "video_name": "23d05344-5a9c-5974-b00d-1e7133daf4a4", "text": "\u5236\u4f5c\u4e00\u4e2a\u6807\u5fd7\uff0c\u4e0a\u9762\u5199\u7740\u201c\u7075\u9b42\u76ee\u7684\u5a31\u4e50\u201d\u4ee5\u53ca\u4e00\u4e2a\u5341\u5b57\u67b6\u3002"} +{"id": "1005391", "video_name": "63132f39-820f-5cf5-9fe9-4c8df8dd5de7", "text": "\u84dd\u8272\u7684\u6c7d\u8f66\u72ec\u81ea\u884c\u9a76\u5728\u96fe\u8499\u8499\u7684\u9053\u8def\u4e0a\u3002"} +{"id": "4004700", "video_name": "e20f956f-f0c5-5299-ab3c-901e6eb87bf2", "text": "\u573a\u666f\u5728\u4e00\u4e2a\u5145\u6ee1\u751f\u6c14\u548c\u8471\u830f\u7684\u4e1b\u6797\u4e2d\u5c55\u5f00\uff0c\u4e00\u4e2a\u733f\u8425\u5730\u88ab\u5d4c\u5165\u5176\u4e2d\u3002\u9ad8\u8038\u7684\u6811\u6728\u548c"} +{"id": "0006726", "video_name": "31ca873d-c89a-51ec-a4b0-ebd1f1299764", "text": "\u8239\u4e0a\u7684\u4eba\u4eec\u5728\u6c34\u4e2d\u770b\u5230\u4e86\u5de8\u5927\u7684\u751f\u7269\u3002"} +{"id": "7003379", "video_name": "f55b197a-cb7c-513f-93cf-0a136a8ee332", "text": "\u63cf\u7ed8\u4e00\u4e2a\u573a\u666f\uff0c\u5973\u5b69\u5750\u5728\u667a\u6167\u7684\u8001\u8005\u5361\u7ef4\u5927\u5e08\u8eab\u65c1\uff0c\u4ed6\u4f20\u6388\u5979\u667a\u6167\u3002"} +{"id": "7002768", "video_name": "23d43b40-4a5e-552f-af74-73c873dd8d84", "text": "\u5e73\u8861\u7684\u65f6\u95f4\u6846\u67b6\u3002\u52a8\u6f2b\u3002\u82f1\u96c4\u4eec\u4e92\u76f8\u5bf9\u6297\u65f6\u6253\u7834\u73b0\u5b9e\u3002"} +{"id": "2004431", "video_name": "e389ca14-4aaf-5d79-bccb-96113f860105", "text": "\u58a8\u58a8\u5750\u5728\u4e00\u5757\u77f3\u5934\u4e0a\uff0c\u6df1\u601d\u719f\u8651\uff0c\u5934\u9876\u4e0a\u51fa\u73b0\u4e86\u4e00\u4e2a\u706f\u6ce1\u3002"} +{"id": "0005319", "video_name": "188fb7a0-f570-540d-b0ee-09d5dde88711", "text": "\u5728\u7c89\u8272\u80cc\u666f\u4e0a\uff0c\u6709\u4e00\u4e2a\u9ec4\u8272\u7684\u7535\u8bdd\u7ebf\u7ba1\u3002"} +{"id": "2005974", "video_name": "7b63e375-2b54-584f-9818-69702308221d", "text": "\u5c0f\u7537\u5b69\u7ad9\u5728\u5b8c\u5168\u7684\u9ed1\u6697\u4e2d\uff0c\u88ab\u4ed6\u4e0a\u65b9\u7684\u4e00\u5bf9\u7ea2\u8272\u7269\u4f53\u60ca\u9192\uff0c\u5c0f\u7537\u5b69\u62ac\u5934\u671b\u4e0a\u5761\u3002"} +{"id": "3003330", "video_name": "24fda7f3-2acf-5f4a-9a7f-b60bc465412d", "text": "\u5165\u53e3\u662f\u4e00\u4e2a\u9634\u68ee\u6d1e\u7a74\uff0c\u88ab\u8ff7\u96fe\u8986\u76d6\u30024k\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "0005042", "video_name": "13a3925f-c919-5e69-aa6b-e55990c85f76", "text": "\u4e09\u7ef4\u5361\u901a\uff0c\u795e\u4e0e\u7a7f\u9ebb\u5e03\u8863\u670d\u7684\u8001\u4eba\u4ea4\u8c08\u3002"} +{"id": "4003481", "video_name": "a6b9275c-9b9c-5785-897b-468d326bcaeb", "text": "\u4e00\u4e2a\u6234\u515c\u5e3d\u7684\u7537\u4eba\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\u5954\u8dd1\uff0c4K\uff0c\u5168\u9ad8\u6e05\uff0c\u65e0\u9519\u8bef\uff0c\u6d41\u7545\u8fd0\u52a8\uff0c\u65e0\u6545\u969c\u3002"} +{"id": "3004960", "video_name": "a91432b7-805a-5e8c-b4e6-64f4db1e2f8b", "text": "\u9ad8\u6e05\u8fea\u58eb\u5c3c\u5361\u901a\u3001\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u514b\u660c10\u5f20\u4e0d\u540c\u7684\u56fe\u7247\u3001\u5370\u5ea6\u6751\u5e84\u3001\u5bf9\u8bdd\u3001\u80cc\u666f\u79fb\u52a8\u3001"} +{"id": "1003430", "video_name": "3f5de789-c397-51e4-a3f3-e35a8b047e26", "text": "\u975e\u6d32\u5927\u8349\u539f\u5728\u65e5\u843d\u65f6\uff0cKofi\u548cAmina\u5728\u8349\u539f\u4e0a\u73a9\u800d\u3002"} +{"id": "6004449", "video_name": "b144816b-ca9e-55df-911d-fbea3ea5d8bd", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5750\u5728\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u7684\u94c1\u738b\u5ea7\u4e0a\u3002 \n\nSource sentence: I am allergic to peanuts. \n\u6211\u5bf9\u82b1\u751f\u8fc7"} +{"id": "2003474", "video_name": "79e295c3-d466-5023-ae43-72db5296e928", "text": "\u4f7f\u7528\u5168\u606f\u5730\u56fe\u548c\u4eba\u5de5\u667a\u80fd\u751f\u6210\u7684\u672a\u6765\u6280\u672f\uff0c\u7ba1\u7406\u98ce\u529b\u6da1\u8f6e\u673a\u7684\u4eba\u3002 \n\nSource sentence: Renewable energy is crucial for a sustainable future. \n\n\u53ef\u518d\u751f\u80fd\u6e90"} +{"id": "7003877", "video_name": "f97f8d4f-9229-51ca-98a3-60ac297eca1a", "text": "\u4e00\u68f5\u5c9b\u4e0a\u7684\u6930\u5b50\u6811"} +{"id": "1003737", "video_name": "44f8550b-8980-53ca-a053-c2b797a1d72c", "text": "\u8fdc\u5904\u767d\u8272\u8d70\u5eca\u4e2d\u7684\u5438\u8840\u9b3c\u5f62\u8c61"} +{"id": "1005507", "video_name": "6560b320-0468-5c63-86c2-2ea9433f5fea", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4e00\u4e2a\u4e61\u6751\u62cd\u7167\u65f6\uff0c\u7167\u4e86\u4e00\u5934\u725b\u3002"} +{"id": "3003477", "video_name": "1d0276d3-1b69-5970-bc67-ce5243fbb954", "text": "\u73bb\u7483\u82b1\u74f6\u91cc\u88c5\u7740\u7ea2\u73ab\u7470\uff0c\u7c89\u8272\u6c1b\u56f4\uff0c\u82b1\u74e3\u548c\u5e7b\u60f3\uff0c\u7f8e\u4e3d\u7684\u3002"} +{"id": "3003794", "video_name": "d209ef56-2261-56b2-ac62-92f9ba9b849d", "text": "\u73b0\u4ee3\u666f\u89c2\u753b\u5c55\u89c8\u5ba4\u88c5\u9970\u7740\u7f8e\u4e3d\u7684\u4eba\u7269\uff0c\u91c7\u75284K\u7535\u5f71\u822c\u7684\u8d85\u903c\u771f16:9\u753b\u9762\u3002"} +{"id": "8001032", "video_name": "99a24ae8-24ee-56f0-94d5-0627079d78ba", "text": "\u4e00\u5206\u949f\u7684\u89c6\u9891\u7f16\u8f91\u6f14\u51fa\u89c6\u9891\u3002"} +{"id": "7003077", "video_name": "f2da26b2-fc28-5638-b7b6-7854147a6d49", "text": "\u4e00\u4f4d\u8eab\u7a7f\u6bd4\u57fa\u5c3c\u7684\u97e9\u56fd\u7f8e\u5973\u5728\u5723\u5854\u83ab\u5c3c\u5361\u7801\u5934\u624b\u6301\u9e21\u5c3e\u9152\u7ad9\u7acb\u3002"} +{"id": "3006304", "video_name": "68691a68-4c40-5b5f-a26e-cf5fa31397c2", "text": "\u4e00\u4e2a\u79cd\u5b50\u4ece\u68ee\u6797\u91cc\u7684\u4e00\u5806\u571f\u91cc\u53d1\u82bd\u4e86\u3002"} +{"id": "7004342", "video_name": "cb18ee81-7f2b-56e9-979a-a21b1bc32ca1", "text": "\u50f5\u5c38\u5728\u72c2\u6b22\u6d3e\u5bf9\u72c2\u821e\uff0c\u6444\u50cf\u673a\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "2003175", "video_name": "e2ff3fc5-4138-537b-99ac-cec5e1acdbdd", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u548c\u590d\u6742\u7684\u6298\u7eb8\u4ea4\u53c9\u7cfb\u7edf\uff0c\u5c55\u73b0\u51fa\u5404\u79cd\u989c\u8272\u548c\u4e1c\u65b9\u5f62\u72b6\u3002\u6548\u679c\u7c7b\u4f3c\u4e8e\u54d1\u5149\u7eb8\uff0c\u989c"} +{"id": "4002703", "video_name": "3d94dac8-a00a-5849-b965-4b9a5637f8d1", "text": "\u706b\u661f\u793e\u533a\u4e2d\u5fc3\u89c6\u9891\uff1a\u4e3a\u4e86\u4fdd\u6301\u793e\u533a\u7684\u6d3b\u529b\uff0c\u706b\u661f\u6751\u5e84\u53ef\u80fd\u4f1a\u6709\u793e\u533a\u4e2d\u5fc3\u3001\u5a31\u4e50\u8bbe\u65bd\u548c\u5176\u4ed6\u5a31\u4e50\u573a\u6240\uff0c"} +{"id": "6003551", "video_name": "c2179ff0-c073-5772-9b27-7915ff5fbb61", "text": "\u72d7\u548c\u732b\u7684\u5f62\u8c61\u5728\u6c34\u4e0a\u5954\u8dd1\u3002"} +{"id": "0003057", "video_name": "3641c525-6484-5527-8d09-8d595741c960", "text": "\u4e00\u4e2a\u4ee5\u52a8\u6f2b\u4e3a\u4e3b\u9898\u7684\u591c\u5e97\u821e\u4f1a\u3002"} +{"id": "3003750", "video_name": "753fee9e-6bfc-5886-9199-3e0d72de29f7", "text": "\u4e00\u4e2a\u8f6c\u6362\uff0c\u5c55\u793a\u4e00\u4e2a\u89d2\u8272\u7a7f\u8d8a\u4e0d\u540c\u4e16\u754c\uff0c\u4f7f\u7528\u4e0d\u540c\u7684\u52a8\u753b\u98ce\u683c\u6765\u4ee3\u8868\u6bcf\u4e2a\u4e16\u754c\u3002"} +{"id": "2007017", "video_name": "20093295-a46a-5940-8b11-49cfd9bf6ffa", "text": "\u4e00\u4e9b\u81ea\u7136\u96e8\u4e2d\u7684\u767d\u83b2\u82b1\u3002"} +{"id": "0006418", "video_name": "2c05c294-dc82-513a-baab-9a1a53ee1266", "text": "\u975e\u6d32\u4e1b\u6797\u4e2d\u7684\u513f\u7ae5\u5361\u901a\uff0c\u90a3\u91cc\u7684\u751f\u7269\u6f5c\u4f0f\u3002"} +{"id": "4002537", "video_name": "09ce4350-3ac3-5eb4-92fe-28ac6cc92459", "text": "\u4e0a\u5e1d\u80fd\u91cf\u7684\u7c92\u5b50\u6267\u653f\u5b98\u7f51\u683c"} +{"id": "6004174", "video_name": "3ae855ae-1c42-5881-8c17-8f9d195d5f3b", "text": "\u5370\u5ea6\u4e2d\u4ea7\u9636\u7ea7\u4f4f\u5b85\u5367\u5ba4\uff0c\u9ed1\u6697\u4e2d\u70b9\u71c3\u7740\u8721\u70db\uff0c\u53e4\u5178\u6536\u97f3\u673a\u3002"} +{"id": "8003521", "video_name": "4dcb9603-b22b-56a9-87bb-3d44b9d8ac28", "text": "\u6253\u5b57\u673a\u8fdb\u5316\u6210\u672a\u6765\u611f\u7684\u5168\u606f\u952e\u76d8\u3002"} +{"id": "0006423", "video_name": "2c1ebef7-a6c4-53ca-a4f9-b62281ccbb0b", "text": "\u5370\u5ea6\u95e8\u5728\u5927\u96e8\u548c\u96f7\u58f0\u4e2d\u3002"} +{"id": "3004595", "video_name": "27904afa-f54b-5348-a32d-c66cca171776", "text": "\u68d2\u7403\u573a\u6709\u4e00\u767e\u4e07\u4eba\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001326", "video_name": "922db905-3f5c-5b91-81ef-f80ddb5595e9", "text": "\u5728\u65e0\u60c5\u7684\u66b4\u96e8\u80cc\u666f\u4e0b\uff0c\u6765\u81ea\u5404\u884c\u5404\u4e1a\u7684\u58eb\u5175\u4e3e\u8d77\u624b\u6765\u6295\u964d\u3002\u96e8\u6ef4\u95ea\u8000\u7740\u4e0b\u843d\uff0c\u6bcf"} +{"id": "0004522", "video_name": "0a8225fe-3963-56aa-a3ff-f67157746b93", "text": "\u52a8\u6f2b\u4e9a\u6d32\u5feb\u4e50\u7537\u5b69\u56de\u5bb6\u4e86\u3002"} +{"id": "1005598", "video_name": "66fe16fa-5e38-55e0-8777-4a78487eda97", "text": "\u6ca1\u6709\u4eba\u80fd\u591f\u53d1\u73b0\u7684\u5f62\u6001"} +{"id": "4003576", "video_name": "4e049a0a-7d48-5f3c-af03-e0c57207245d", "text": "\u9f99\u547c\u5578\u7740\u55b7\u51fa\u706b\u7130\uff0c\u5361\u901a\u98ce\u683c\uff0c\u53f2\u8bd7\u822c\u7684\u89d2\u8272\u3002"} +{"id": "1004129", "video_name": "4c71e7e5-68f0-5853-b78f-7a7468ee1242", "text": "\u5728 TRON \u706f\u5149\u4e2d\uff0c\u6700\u5c0f\u66f2\u9762\u6570\u5b66\u7f51\u683c\u5728\u7a7a\u95f4\u626d\u66f2\u4e2d\u5448\u73b0\u3002"} +{"id": "1004295", "video_name": "4f74a9ff-a6d1-5931-b3b9-8c5d4d1c8775", "text": "\u9713\u8679\u706f\u95ea\u70c1\uff0c\u7ea2\u8272\u56f4\u5dfe\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "3005869", "video_name": "154a4092-6e1e-5fcf-9e98-39ae6e951b9a", "text": "\u5e86\u795d\u5df2\u521b\u4f5c100\u4e2aYoutube\u89c6\u9891\u3002"} +{"id": "7002811", "video_name": "d1378fb0-c0cc-596e-a69c-6df23b7ba1c7", "text": "\u4e00\u7fa4\u767d\u9e6d\u98de\u8fc7\u82a6\u82c7\u6ee9\uff0c\u505c\u7559\u5728\u76f8\u601d\u6811\u5cb8\u8fb9\u3002"} +{"id": "7002159", "video_name": "3e13d6cb-6ace-54cd-93eb-f209b4bd482e", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u8e66\u5e8a\u4e0a\u8df3\u8dc3\uff0c\u5e0c\u671b\u5e76\u5439\u6ce1\u6ce1\u7cd6\u3002\u5f53\u6ce1\u6ce1\u7834\u88c2\u65f6\uff0c\u5973\u5b69\u5c31\u50cf\u8fdb"} +{"id": "8003355", "video_name": "f019efca-d236-56ea-adbf-b01e3bde8f0b", "text": "\u6211\u4eec\u7b2c\u4e00\u6b21\u770b\u5230\u4e86\u5815\u843d\u7684\u5929\u4f7f\u3002\u4ed6\u7ad9\u5728\u5341\u5b57\u8def\u53e3\uff0c\u671b\u7740\u9065\u8fdc\u7684\u672a\u6765\u3002"} +{"id": "3003284", "video_name": "ee0c363a-6ee9-5278-bcbf-a04a73112ac8", "text": "\u53e4\u5e0c\u814a\u795e\u7947\u805a\u96c6\u5728\u4e00\u5f20\u684c\u5b50\u65c1\uff0c\u4e2d\u666f\u62cd\u6444\uff0c\u4f7f\u752850\u6beb\u7c73\u955c\u5934\uff0c\u6b63\u5728ArtStation\u4e0a\u6d41\u884c\uff0c\u4ee5\u9ad8\u5206"} +{"id": "2005788", "video_name": "3d731c80-fc18-5dd2-9c8e-67d4ebc780d4", "text": "\u4e24\u4e2a\u7a74\u5c45\u4eba\u8d70\u5411\u4e00\u4e2a\u505c\u5728\u8349\u5730\u4e0a\u7684UFO\uff0cUFO\u4e0a\u6709\u4e00\u4e2a\u7eff\u8272\u7684\u706f\u5149\u3002\u4e24\u4e2a\u7a74\u5c45\u4eba\u5e26\u7740\u98df\u7269\u6765"} +{"id": "1006923", "video_name": "7e9c8283-46b5-50e3-9402-5f42dc6da696", "text": "\u88ab\u559c\u6b22\u7684\u8857\u5934\u9738\u738b\u6e38\u620f\u89d2\u8272"} +{"id": "6003757", "video_name": "62d288ab-1b88-5531-8f0d-4526ee4763a1", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u559d\u6c34\uff0c3D\uff0c\u8d85\u771f\u5b9e\u3002"} +{"id": "0005348", "video_name": "1938ed5f-4e20-5e9d-85a3-f10e8a29c314", "text": "\u91d1\u8272\u91d1\u5c5e\u9cde\u7247\u9f99\u4ece\u9ec4\u8272\u4e91\u6735\u4e2d\u964d\u843d\uff0c\u95ea\u70c1\u7740\u5149\u8292\u3002"} +{"id": "1004539", "video_name": "54557cb8-bb1b-5255-b7aa-f4f3e250a2e3", "text": "\u590f\u591c\u7684\u4e00\u7247\u767d\u82b1\u7530\u5730"} +{"id": "5001707", "video_name": "029d1b08-134a-5468-be78-3c146c70c248", "text": "\u4e00\u540d\u6500\u767b\u8005\u7ad9\u5728\u5cf0\u9876\uff0c\u80cc\u666f\u4e2d\u592a\u9633\u5347\u8d77\uff0c\u80dc\u5229\u7684\u559c\u60a6\u6cb9\u7136\u800c\u751f\u3002"} +{"id": "1006760", "video_name": "7bc01dd3-601f-5ef9-bbf4-a4d58b6d84ec", "text": "\u4e00\u53ea\u5927\u767d\u72ee\u5b50\uff0c\u5e7b\u60f3\uff0c\u4e91\u6735\uff0c\u79fb\u52a8\u955c\u5934"} +{"id": "2004990", "video_name": "bf88c9c9-5030-545b-9180-1fd645c4090a", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u5979\u7684\u7236\u6bcd\u5728\u4e00\u8d77\uff0c\u4ed6\u4eec\u90fd\u5f88\u5f00\u5fc3\u3002"} +{"id": "3004618", "video_name": "c526aa53-687e-5ac0-b2c5-580b02e65308", "text": "\u5728\u5b87\u5b99\u6050\u6016\u7684\u98ce\u683c\u4e0b\uff0c\u82e5\u5e72\u865a\u5e7b\u7684\u5e7d\u7075\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u592a\u7a7a\u7ad9\u4e2d\u6e38\u8361\uff0c\u7d27\u5f20\u7684\u955c"} +{"id": "6004298", "video_name": "e69e002a-f92e-52bb-8b3b-b2ba4b16c780", "text": "\u4e00\u9897\u7259\u9f7f\u5728\u7259\u9f88\u4e2d\uff0c\u5176\u8fb9\u7f18\u95ea\u8000\u7740\u795e\u5947\u7684\u5149\u8292\u5e76\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "0006499", "video_name": "2d8f87f2-f435-5eab-b3ba-d5f322959b98", "text": "\u4e00\u4e2a\u6218\u58eb\u5728\u9ed1\u591c\u4e2d\u624b\u63e1\u6b66\u5668\u51c6\u5907\u4e0e\u72fc\u6218\u6597\u3002"} +{"id": "6002263", "video_name": "d7d666f3-403d-54c4-82e5-18f236b908cc", "text": "\u6d77\u5730\u7537\u5b50\u5728\u5df4\u897f\u7ed8\u5236\u96e8\u6797\u3002"} +{"id": "4004112", "video_name": "0dfe7545-7d0c-54f8-bada-b7c393ea0932", "text": "\u6b63\u5728\u4e0b\u7740\u5546\u4eba\u96e8\uff0c4K\u3002"} +{"id": "0003014", "video_name": "359b0b8b-5c46-5bb5-8d34-461337d80a97", "text": "\u653e\u5927\u62cd\u6444\u5c0f\u7834\u955c\uff0c\u53cd\u5c04\u51fa\u4e09\u4e2a\u4eba\u7ad9\u5728\u58ee\u4e3d\u7684\u5c71\u9876\u4e0a\uff0c\u6708\u98df\u671f\u95f4\u3002"} +{"id": "6004317", "video_name": "e64c2414-64e6-5326-8c44-40b67431ae15", "text": "\u5728\u5bab\u5d0e\u9a8f\u98ce\u683c\u7684\u5361\u901a\u52a8\u753b\u4e2d\uff0c\u52a8\u7269\u5728\u591c\u7a7a\u4e0b\u5145\u6ee1\u6d41\u52a8\u661f\u661f\u7684\u623f\u95f4\u91cc\u5b66\u4e60\u3002"} +{"id": "1004325", "video_name": "4fdeab90-f467-5975-83c5-e9592ab1b003", "text": "\u4e00\u4e2a\u79c3\u5934\u7537\u5b50\u5728\u6d77\u6ee9\u4e0a\u770b\u7740\u8fdc\u5728\u6d77\u6d0b\u4e0a\u7684\u4e00\u8258\u8239\u3002"} +{"id": "5001653", "video_name": "9d7fcde7-2065-540e-a091-780f88b2b1ab", "text": "\u827e\u4e3d\u65af\u7a7f\u7740\u84dd\u8272\u88e4\u5b50\u548c\u7070\u8272\u5916\u5957\uff0c\u8d70\u8fc7\u5f00\u9614\u800c\u9ed1\u6697\u7684\u8d70\u5eca\uff0c\u53ea\u6709\u5fae\u5f31\u7684\u5149\u7ebf"} +{"id": "2007964", "video_name": "2eb2e370-1b40-5696-935b-4e264e649902", "text": "\u9633\u5149\u659c\u7167\u7740\u6811\u53f6\uff0c\u4f7f\u5b83\u4eec\u53d8\u6210\u91d1\u9ec4\u8272\uff0c\u7136\u540e\u9010\u6e10\u843d\u4e0b\u3002"} +{"id": "5001838", "video_name": "71433b1f-7dfd-5be2-a5b7-483f92a4c0fb", "text": "\u7ea2\u8272\u548c\u6a59\u8272\u7684\u9891\u7387\u6ce2\u7eb9\u4e0d\u65ad\u65cb\u8f6c\uff0c\u5bc6\u5ea6\u548c\u4e30\u6ee1\u5ea6\u9010\u6e10\u589e\u52a0\u3002"} +{"id": "2007134", "video_name": "f951789a-2f72-55d1-82e2-683934741fd4", "text": "can never replace the love and affection of a true friend.\n\nTranslation: \u6602\u8d35\u7684\u53e4\u9f99\u6c34\u548c\u9886\u5e26\u7b49\u5c0f\u793c\u7269\u6c38\u8fdc\u65e0\u6cd5\u53d6\u4ee3\u771f\u6b63\u670b\u53cb\u7684\u7231"} +{"id": "6004807", "video_name": "734a8b0e-81e8-5e54-9e2d-f780726d3d86", "text": "\u5728\u52a8\u6f2b\u98ce\u683c\u7684\u5bb6\u91cc\uff0c\u4e00\u4e2a30\u5c81\u7684\u7537\u5b50\u8d70\u8def\u65f6\u4e0d\u5c0f\u5fc3\u6253\u7ffb\u4e86\u4e00\u53ea\u82b1\u74f6\u3002"} +{"id": "2005761", "video_name": "5f17d878-8131-501c-89fb-ea01c7fe97e2", "text": "\u4ed6\u5728\u90a3\u91cc\u770b\u5230\u4e00\u53ea\u5361\u901a\u72ee\u5b50\u56e0\u75bc\u75db\u800c\u54ed\u6ce3\u3002\u4ed6\u7684\u53f3\u722a\u4e0a\u6709\u4e00\u4e2a\u523a\u3002"} +{"id": "5001045", "video_name": "8f159781-69d3-59ef-ba97-e5b093900f25", "text": "\u7ebd\u7ea6\u5e02\u4e0a\u5347\u7684\u6708\u4eae\u3002\u8d85\u903c\u771f\u76848k\u4e3b\u9898\uff0c\u5177\u6709\u5353\u8d8a\u7684\u7ec6\u8282\u3001\u7167\u660e\u548c\u9634\u5f71\u3002"} +{"id": "1005300", "video_name": "6163fdf3-e2b9-59f7-851a-91f9c9bfaccf", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u5e93\u65af\u00b7\u52a0\u7ef4\u4e3a\u706b\u661f\u9ed1\u516c\u4e3b\u800c\u4e89\u6597\uff0c\u6700\u7ec8\u9a6c\u5e93\u65af\u00b7\u52a0\u7ef4\u83b7\u80dc\u3002"} +{"id": "2004540", "video_name": "1aa8ceef-cd00-5c2c-b130-3cf24f928393", "text": "\u65e7\u91d1\u5c71\u6709\u4e00\u5927\u7fa4\u4eba\u5728\u884c\u8d70\uff0c\u4fef\u89c6\u56fe"} +{"id": "1005414", "video_name": "6383d16a-50bb-5eee-8c47-8c1c869bb5c9", "text": "\u4f26\u6566\u56fd\u5bb6\u7f8e\u672f\u9986\u7279\u62c9\u6cd5\u52a0\u5e7f\u573a\u5723\u9a6c\u4e01\u533a\uff0cBego\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2005448", "video_name": "ec5c4a7e-1ad6-51b7-9be8-c5a0344372a5", "text": "\u773c\u775b\u8679\u819c\u7684\u7279\u5199\uff0c\u53d8\u6210\u4e00\u4e2a\u5730\u7403\n\nSource sentence: She is a talented musician who can play multiple instruments. \n\u5979\u662f\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684\u97f3"} +{"id": "4003529", "video_name": "a63e3383-ab12-567a-aa60-01d4f953450d", "text": "\u4e00\u4f4d\u957f\u53d1\u7684\u5370\u5ea6\u7f8e\u5973\u5728\u6cf0\u59ec\u9675\u5916\u81ea\u62cd\u3002"} +{"id": "7003053", "video_name": "e16884a5-c2cb-58cf-8da6-f0bdbb7e9959", "text": "\u5265\u843d\u7684\u82b1\u74e3\uff0c\u955c\u5934\u653e\u5927\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001457", "video_name": "1efaa6be-8f51-5560-acd6-42578e25a218", "text": "\u5206\u5f62\u5f62\u72b6\u73af\u7ed5\u7740\u975e\u6d32\u5370\u82b1\u7684\u8fde\u7eed\u5f62\u72b6\uff0c\u7cbe\u795e\u5c42\u9762\u9ad8\u5ea6\u8be6\u7ec6\u3002\u8fdc\u5904\u6709\u4e00\u4e2a\u5de8\u5927\u5962\u534e\u7684"} +{"id": "6004462", "video_name": "7cec4d0f-f969-51fd-b976-916d2040cfe7", "text": "\u65b0\u7684\u524d\u62c9\u6590\u5c14\u6d3e\u7ed8\u753b\uff1a\u5965\u83f2\u5229\u4e9a\u548c\u68ee\u6797\u91cc\u7684\u4ed9\u5973\u4e0e\u5c24\u5229\u897f\u65af\u3002"} +{"id": "4002977", "video_name": "168979e1-3897-59b8-addc-a2f06d034c16", "text": "\u903c\u771f\u7684\u89e6\u89d2\u5728\u6d53\u96fe\u4e2d\u79fb\u52a8\u3002"} +{"id": "2004095", "video_name": "5f60f932-9a6f-5e0f-95be-b7e7bd348396", "text": "\u592a\u9633\u4e0b\uff0c\u4e00\u5bf9\u4e2d\u56fd\u7537\u5973\u5728\u5c71\u8def\u4e0a\u6563\u6b65\uff0c\u5973\u4eba\u9762\u5e26\u5fae\u7b11\uff0c\u6559\u7537\u4eba\u5982\u4f55\u6210\u4e3a\u795e\u3002"} +{"id": "1005982", "video_name": "6de92382-fbe5-5b30-b513-6e06aa19ccf6", "text": "\u63e1\u7740\u70ed\u7684\u82b1\u5728\u624b\u4e2d"} +{"id": "7002844", "video_name": "658b462f-7ae0-5e81-bd01-a26bca8647ee", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u6d77\u8fb9\u8dd1\u3002"} +{"id": "4003732", "video_name": "961f0cfe-f641-5da5-a19e-f759a6cb474b", "text": "USS\u4f01\u4e1a\u53f7\u964d\u843d\u5728\u6708\u7403\u4e0a\u3002"} +{"id": "0006504", "video_name": "2d9e7964-2b99-5098-997d-8bd8cd59315c", "text": "\u9644\u4ef6\u4e2d\u53ea\u6709\u4e00\u9897\u5e26\u7b11\u8138\u7684\u660e\u661f\u5728\u5706\u5708\u91cc\u79fb\u52a8\uff0c\u8fd9\u9897\u661f\u661f\u6709\u4e00\u5f20\u8138\u3002"} +{"id": "0005698", "video_name": "1f9a9905-69f0-5f33-bf18-a2a0fa3f6623", "text": "\u4e00\u4e2a\u7528\u6c34\u5f69\u7ed8\u5236\u3001\u7ec6\u8282\u4e30\u5bcc\u3001\u52a8\u753b\u5316\u7684\u6c34\u7537\u4eba\u3002"} +{"id": "6004814", "video_name": "e8344d48-4ecf-517a-9f80-ec9044884321", "text": "\u4ed6\u95ea\u73b0\u51fa\u84dd\u8272\u548c\u7ea2\u8272\u7684\u5149\u8292\uff0c\u6210\u529f\u5730\u7b56\u7565\u6027\u5730\u907f\u5f00\u4e86\u7eff\u5de8\u4eba\uff0c\u5c06\u4ed6\u5de8\u5927\u7684\u529b\u91cf\u5f15\u5bfc\u5230\u5730\u9762"} +{"id": "4002903", "video_name": "ac3d2426-44fb-590e-bb5b-828dd7a23e6b", "text": "\u6234\u7740\u725b\u4ed4\u5e3d\u7684\u9e2d\u5b50\u5728\u6e38\u6cf3\u3002"} +{"id": "4003781", "video_name": "874dd683-b17f-58c4-92fe-a194a57799f3", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u963f\u52aa\u7eb3\u5947\u548c\u4eba\u7c7b\u6742\u4ea4\u4e86\u3002"} +{"id": "3004172", "video_name": "7f1c2067-c808-5430-a7d9-b58d52709870", "text": "Source sentence: \"kaal bhairav\u5728shamshan ghat\u9ad8\u8d28\u91cf\u7684\u706b\u70e7\u6b7b\u5c38\u4f53\uff0c\u5728\u9ed1\u591c\u91cc\u71c3\u70e7\u3002\"\n\nTranslated sentence: \"\u5361\u5c14\u00b7"} +{"id": "2006021", "video_name": "0ea07b55-c29d-5371-aaa8-e39c9d472740", "text": "\u751f\u6210\u4e00\u5339\u98de\u884c\u7684\u9a6c\u3002"} +{"id": "0003999", "video_name": "015eccc0-8c74-5d13-80d7-7fb62b98e5ea", "text": "\u53e4\u4ee3\u57c3\u53ca\u7684\u5973\u738b\u5c3c\u8299\u8482\u7279\u9760\u8fd1\u955c\u5b50\uff0c\u7528\u9752\u94dc\u624b\u955c\u7167\u7740\u81ea\u5df1\uff0c\u7ad9\u5728\u5bab\u6bbf\u7a97\u524d"} +{"id": "6003472", "video_name": "5b22eacf-cb12-503f-b56e-6b92c62b1d0b", "text": "\u4e00\u8f86\u65b0\u80fd\u6e90\u6c7d\u8f66\u6b63\u5728\u6d77\u8fb9\u9ad8\u901f\u884c\u9a76\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "8001758", "video_name": "50f48de2-e04c-5648-a548-b19951a9b1e7", "text": "\u89d2\u8272\u770b\u7740\u4e00\u76d8\u4e0d\u540c\u7684\u98df\u7269\uff0c\u601d\u7ef4\u6c14\u6ce1\u4e2d\u63cf\u7ed8\u4e86\u6f5c\u5728\u7684\u8fc7\u654f\u539f\u3002"} +{"id": "2004314", "video_name": "4a2bea11-4d12-5a72-8c15-e610634e4fb8", "text": "\u5916\u661f\u4eba\u7070\u8272\u6a21\u7cca\u7684\u5f71\u50cf\u968f\u7740\u5b83\u671d\u7740\u6444\u50cf\u673a\u79fb\u52a8\u800c\u9010\u6e10\u53d8\u5f97\u6e05\u6670\u3002"} +{"id": "4003319", "video_name": "3b19918a-c051-5839-a338-4028e90c5825", "text": "\u4e3a\u70ed\u7231\u4e66\u7c4d\u5e76\u83b7\u5f97\u4e86YouTube\u94f6\u64ad\u653e\u6309\u94ae\u8363\u8a89\u7684\u70ed\u60c5\u89c6\u9891\u535a\u4e3b\u8bbe\u8ba1\u7684\u8212\u9002\u5de5\u4f5c\u5ba4\u80cc\u666f\u3002"} +{"id": "8002719", "video_name": "924f57f6-d66b-592a-a678-17ee73877126", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u6d77\u91cc\u6e38\u6cf3\u3002"} +{"id": "3005013", "video_name": "209623d1-a062-5de2-bc8c-e9b7ea79f454", "text": "\u96a7\u9053\u5185\u7a7a\u6c14\u6469\u64e6\u7684\u58f0\u97f3"} +{"id": "2003487", "video_name": "2aee86d3-f054-5b3d-bac2-29def3f5413c", "text": "\u8001\u5f0f\u673a\u5668\u4eba\u5728\u5371\u96be\u4e2d\u5c16\u53eb\uff0c\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\uff0c\u6781\u7b80\u80cc\u666f\uff0c\u653e\u5927\u955c\u5934\uff0c\u620f\u5267\u5316\u706f\u5149\u3002"} +{"id": "3005189", "video_name": "d8d517d9-7a70-5b88-859c-ae607d002a3c", "text": "\u8725\u8734\u5403\u82cd\u8747\u7684\u65f6\u95f4\u6d41\u901d\u89c6\u9891"} +{"id": "5001782", "video_name": "dd1ddbac-9ff9-5776-983e-62d41ed87f64", "text": "\u7075\u5de7\u7684\u7f8e\u6d32\u8c79\u72e9\u730e\uff1a\u4e00\u53ea\u7075\u5de7\u7684\u7f8e\u6d32\u8c79\u6b63\u5728\u72e9\u730e\uff0c\u5b83\u5f3a\u58ee\u7684\u808c\u8089\u63a8\u52a8"} +{"id": "3004750", "video_name": "c82df1bd-63dd-5790-a01b-8edc63c25850", "text": "\u591a\u4f26\u591a\u84dd\u9e1f\u961f\u5728\u591a\u4f26\u591a\u5e02\u4e2d\u5fc3\u7f57\u6770\u65af\u4e2d\u5fc3\u7403\u573a\u9762\u5bf9\u7740\u4e00\u5927\u7fa4\u89c2\u4f17\u6253\u68d2\u7403\u3002"} +{"id": "2006149", "video_name": "ba076cb0-2476-5a57-babd-651c65e9a9f0", "text": "\u5723\u8bde\u8282\u524d\u529e\u516c\u5ba4\u91cc\u7684\u5306\u5fd9\u548c\u538b\u529b\u3002"} +{"id": "4003205", "video_name": "96f4e396-a819-582d-b066-3bcaef6429af", "text": "\u5c3d\u7ba1\u9762\u4e34\u8d22\u52a1\u56f0\u5883\uff0c\u4ed6\u4eec\u5728\u7b80\u5355\u7684\u65f6\u523b\u4e2d\u627e\u5230\u4e86\u5feb\u4e50\u3002"} +{"id": "0005140", "video_name": "157d4612-4ffe-5ee2-9a25-8aa3daf438dc", "text": "\u52a8\u753b\u6587\u5b57\u3001\u52a8\u753b\u706b\u7130\u3001\u52a8\u753b\u5564\u9152\u6db2\u4f53\u3001\u52a8\u753b\u9762\u90e8\u3002"} +{"id": "6003055", "video_name": "72bff9ef-5805-5936-b344-feae3bf0992a", "text": "\u8001\u7eb8\u9875\u5728\u65e7\u9b54\u6cd5\u4e66\u4e2d\u7ffb\u8f6c\u3002"} +{"id": "8001434", "video_name": "c1f5c30b-d158-5d2d-a2fb-83ff2224ea5b", "text": "\u6d77\u5578\u6467\u6bc1\u4e86\u91d1\u95e8\u5927\u6865\u3002"} +{"id": "4004063", "video_name": "aea4684b-a4bb-521d-ae54-27b41331d012", "text": "\u6392\u7ec3\u5ba4\u91cc\u6709\u4e00\u53f0Vox Continental\u952e\u76d8\u3002"} +{"id": "2004333", "video_name": "a28ce283-f094-568a-92f7-b8960192dbee", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u4ed6\u7684\u5bb6\u4eba\u5728\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u8d85\u903c\u771f8K\u9ad8\u6e05\u753b\u8d28\u4e0b\u51fa\u73b0\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "8002121", "video_name": "082adc81-bda1-50e9-9d20-1e32bae151e2", "text": "\u4e00\u4e2a\u5b66\u6821\u7537\u5b69\u5728\u5b66\u6821\u64cd\u573a\u4e0a\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u8e22\u8db3\u7403\uff0c4K\u5206\u8fa8\u7387\uff0c\u903c\u771f\u3002"} +{"id": "6004106", "video_name": "a7f355cf-c93e-5baa-8e1f-190ad036ca5a", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u90a3\u91cc\uff0c\u51dd\u89c6\u7740\u6c34\u9762\uff0c\u6c34\u4e2d\u6ca1\u6709\u4efb\u4f55\u53cd\u6620\uff0c\u53ea\u6709\u5931\u8d25\u7684\u82e6\u6da9\u3002"} +{"id": "3003537", "video_name": "f8921f7d-750d-54b5-86cd-1a40135652b9", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u5b69\u5b50\uff0c\u5934\u4e0a\u6709\u4e00\u4e2a\u4e09\u89d2\u5f62\u3002"} +{"id": "1006018", "video_name": "6e892f7c-025c-5767-93c5-213bc86b90f0", "text": "\u9ed1\u6697\u4e2d\u7684\u53ef\u6015\u57ce\u5821\u5185\u90e8\uff0c\u903c\u771f\u8be6\u7ec6\u3002"} +{"id": "7003499", "video_name": "6c24d9ae-e349-5edd-b12f-2fd78a7793d3", "text": "M.\u62dc\u68ee\u548c\u300a\u8857\u5934\u9738\u738b2\u300b\u89d2\u8272\u5728\u58a8\u897f\u54e5\u5916\u9762\u7684\u9a6c\u91cc\u5947\u6d3e\u5bf9\u4e0a\u8df3\u821e\uff0c\u6709\u86cb\u7cd5\u3001"} +{"id": "1003815", "video_name": "4671dca2-abf3-50e2-8659-6b8b72ca4e42", "text": "\u56de\u52301958\u5e74\uff0c\u62ff\u77409mm\u624b\u67aa\u3002"} +{"id": "5001676", "video_name": "10e6c152-1d60-5d51-b9be-cace65d9a404", "text": "\u4e00\u53ea\u72d7\u5750\u5728\u7740\u706b\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "1006831", "video_name": "7ceaf393-eabe-5810-8c26-02695c6bc16a", "text": "\u4e00\u4e2a90\u5e74\u4ee3\u7684\u8001\u57ce\uff0c\u9ed1\u6697\u7684\u80cc\u666f\uff0c\u53ef\u6015\u7684\u591c\u665a\uff0c\u76f8\u673a\u5feb\u901f\u79fb\u52a8\u3002\n\nSource sentence: The new product launch event will be held at the convention center on Saturday"} +{"id": "7004355", "video_name": "bd15b11d-3a7c-5047-99c4-460f3247ca62", "text": "\u5916\u661f\u4eba\u5728\u706b\u661f\u4e0a\u6253\u7bee\u7403\u3002"} +{"id": "3004567", "video_name": "c3965c1d-1152-550c-b528-3766b6f4c943", "text": "\u6b7b\u795e\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u7167\u7247\uff0c\u6a21\u62df\u80f6\u7247\u3002"} +{"id": "4003174", "video_name": "d089a9a5-6402-53d6-a5e1-963f5312c739", "text": "\u4ed6\u5728\u90a3\u4e00\u523b\u7acb\u4e0b\u8a93\u8a00\uff0c\u8981\u4e00\u751f\u90fd\u70ba\u7aae\u4eba\u548c\u53d7\u82e6\u7684\u4eba\u670d\u52d9\u3002"} +{"id": "0005591", "video_name": "1d971720-9d3a-5bcb-952c-ad3e8f77b412", "text": "\u4e00\u540d\u5973\u5b50\u5750\u5728\u516c\u56ed\u91cc\u8bfb\u4e66\u3002\u51e0\u4e2a\u7537\u4eba\u4ece\u5979\u8eab\u8fb9\u7ecf\u8fc7\u5e76\u5bf9\u5979\u8bf4\u8bdd\uff0c\u4f46\u5979\u4e0d\u7406\u776c\u4ed6\u4eec\uff0c\u7ee7\u7eed\u770b\u4e66"} +{"id": "1005404", "video_name": "634c88ab-47ce-5864-bb51-b15f87e611ca", "text": "\u89c6\u9891\u7f16\u8f91\uff0c\u5e73\u9762\u8bbe\u8ba1\uff0c\u52a8\u753b\u5236\u4f5c\uff0c\u7f51\u7ad9\u5f00\u53d1\uff0c\u641c\u7d22\u5f15\u64ce\u4f18\u5316\u548c\u5185\u5bb9\u521b\u4f5c\u3002"} +{"id": "4004653", "video_name": "c705e787-9ed1-531d-81ef-eda1b11e00fb", "text": "\u6f14\u8bb2\u8005\u8df3\u821e\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444"} +{"id": "4003064", "video_name": "7a78377b-b58b-5cf0-a751-262f2567f1e4", "text": "\u4e00\u4e2a\u6751\u5e84\u91cc\u7684\u8d2b\u7a77\u5370\u5ea6\u7537\u5b50"} +{"id": "2007808", "video_name": "0749a53a-57cd-5d82-ad9a-7fb53d6dacbe", "text": "\u5730\u677f\u4e0a\u4e00\u4e2a\u76b1\u5df4\u5df4\u7684\u767d\u8272\u5170\u82b1\u7efd\u653e\u6210\u7f8e\u4e3d\u7684\u82b1\u6735\u3002"} +{"id": "7004104", "video_name": "7ef754ff-3a9c-531a-a6f0-d3bf4a50774e", "text": "\u4ed6\u4eec\u6162\u6162\u5730\u8d70\u7740\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "5001778", "video_name": "50033721-8672-59fc-a075-424e92b85e8d", "text": "\u718a\u732b\u5634\u5df4\u52a8\u8d77\u6765\u65f6\uff0c\u5c31\u50cf\u5b83\u5728\u8ddf\u7740\u8282\u594f\u626d\u52a8\u4e00\u6837\u3002"} +{"id": "7004194", "video_name": "ba9a02de-ebd2-56b6-b244-cd24151ef192", "text": "\u67e5\u5c14\u65af\u00b7\u5e03\u6717\u68ee\u8ffd\u9010\u4e00\u540d\u7f6a\u72af\uff0c\u8d5b\u535a\u670b\u514b\uff0c1978\u5e74\uff0c\u591c\u665a\u3002"} +{"id": "8003723", "video_name": "91b32f79-c323-510d-9930-e1d5659eee0e", "text": "\u4e2d\u5f0f\u98ce\u683c\uff0c\u7ea2\u8272\u821e\u53f0\u80cc\u666f\uff0c\u9002\u5408\u821e\u8e48\u3002"} +{"id": "6003938", "video_name": "78a482d0-c5a1-5e48-ba6a-ba3982d24fd4", "text": "\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u725b\u6392\u89c6\u9891\uff0c\u84b8\u6c7d\u4e0a\u5347\uff0c\u660e\u4eae\u7684\u53a8\u623f\u3002"} +{"id": "2007247", "video_name": "dc8c9dfe-f0be-5a25-87db-39e6a93b206f", "text": "\u5927\u9e2d\u5b50\u3001\u68d5\u8272\u732b\u548c\u9ed1\u8272\u72d7\u7ad9\u5728\u6811\u4e0b\uff0c\u4e00\u8d77\u9762\u5bf9\u7ea2\u6bcd\u9e21\u3002"} +{"id": "2003231", "video_name": "bb117eeb-6f54-5419-a6fe-c620f85d42d6", "text": "\u5973\u4eba\u9001\u5ba2\uff0c\u9ed1\u767d\u8001\u7535\u5f71\u3002"} +{"id": "6004092", "video_name": "be71e9f9-cd46-52b4-976a-ffab14e8aea5", "text": "to her friend on the phone.\n\nTranslation: \u4e00\u4f4d\u5973\u58eb\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u62ff\u7740\u4e00\u888b\u591a\u529b\u591a\u6ecb\u85af\u7247\uff0c\u5e76\u5728\u7535\u8bdd\u91cc\u4e0e\u670b\u53cb\u4ea4\u8c08"} +{"id": "0003639", "video_name": "40db9d19-8697-5c81-92d2-2d2e0b7ab581", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u6a59\u8272\u732b\uff0c\u7a7f\u7740\u5b87\u822a\u670d\uff0c\u5728\u6708\u7403\u8868\u9762\u5411\u89c2\u4f17\u6325\u624b\u3002\u80cc\u666f\u5c55\u793a\u4e86\u5bbd\u5e7f\u7684\u592a\u7a7a"} +{"id": "6000007", "video_name": "2dde870a-fec1-56a1-a992-e2957ee046d1", "text": "\u5927\u89c4\u6a21\u5e73\u6c11\u6b7b\u4ea1"} +{"id": "1005926", "video_name": "6cd710a1-f2b3-593f-898b-4db504e43fc3", "text": "\u4e24\u4e2a\u4eba\u53bb\u73e0\u5b9d\u5e97\u4e70\u4e9b\u94bb\u77f3\u548c\u9ec4\u91d1\u3002"} +{"id": "3005177", "video_name": "751348f4-f221-5d7c-a2df-3b31fe73b9e3", "text": "\u8fdc\u65b916:8\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1004946", "video_name": "5b72a6db-57a3-5952-8a91-098281c220f1", "text": "\u4e00\u90e8\u5173\u4e8e\u82cf\u4e39\u5c3c\u7f57\u6cb3\u76841970\u5e74\u4ee3\u8001\u7535\u5f71\u3002"} +{"id": "1004789", "video_name": "58784c93-7a10-54b6-ab7c-e4ff0a3fac33", "text": "Source sentence: \u5e03\u9c81\u65af\u00b7\u674e\u548c\u67e5\u514b\u00b7\u8bfa\u91cc\u65af\u640f\u51fb\u7ec3\u4e60\u3002"} +{"id": "3004848", "video_name": "66c5a70f-2bac-5402-a0d5-8ccc75ac3ec4", "text": "\u963f\u65b9\u7d22\u00b7\u5e15\u8fea\u5229\u4e9a\u548c\u6cd5\u6bd4\u5965\u00b7\u6ce2\u590f\u7279\u53c2\u52a0\u6bd4\u8d5b\u3002"} +{"id": "1005846", "video_name": "6b6dfdd1-eb52-5779-8c90-0029e78b8d0a", "text": "\u5728\u90a3\u91cc\u4f4f\u7740\u4e24\u4e2a\u65e0\u540d\u5973\u5b69\u548c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u3002"} +{"id": "5001197", "video_name": "0f053819-5519-5a4c-9cda-172feb03f51a", "text": "t\n\u4e00\u53ea\u82cd\u8747\u505c\u5728\u4e00\u53ea\u9e1f\u8eab\u4e0a\uff0c\u9e1f\u505c\u5728\u4e00\u53ea\u72d7\u8eab\u4e0a\uff0c\u72d7\u505c\u5728\u4e00\u53ea\u725b\u8eab\u4e0a\uff0c\u725b\u505c\u5728\u4e00\u53ea"} +{"id": "0006383", "video_name": "2b81476d-c0a6-5008-b35c-047f635f4a2a", "text": "\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u5c0f\u5973\u5b69\u4ece\u5979\u7684\u82b1\u56ed\u91cc\u91c7\u6458\u7ea2\u73ab\u7470\u3002"} +{"id": "6002933", "video_name": "6264043c-d8f7-5292-bf31-bfe9eb6bfe77", "text": "\u9884\u793a\u7740\u5c3c\u65e5\u5229\u4e9a\u53ca\u5176\u90bb\u56fd\u7684\u5384\u8fd0"} +{"id": "4003449", "video_name": "138f76db-2b59-5c96-92f6-3f445194ff38", "text": "\u8428\u59c6\u548c\u83b1\u767b\u6b63\u5728\u6253\u300a\u5408\u91d1\u88c5\u5907\u5d1b\u8d77\u300b\u3002"} +{"id": "5001291", "video_name": "b8e29fb6-af9c-51de-9352-55e3a442054d", "text": "\u4e00\u4e2a\u7537\u4eba\u7528\u4ed6\u7684\u5de5\u5177\u5728\u4e00\u67b6\u98de\u673a\u53d1\u52a8\u673a\u4e0a\u5de5\u4f5c\u3002"} +{"id": "6003376", "video_name": "58e350fc-1d5c-5f85-8616-755d30f701cc", "text": "\u4e00\u4e2a\u767d\u5149\u95ea\u8000\u7684\u4eba\u3002"} +{"id": "4002671", "video_name": "b2a9ab77-23a9-5485-8f15-d154288f0341", "text": "\u96f7\u7c73\u548c\u73ed\u5c3c\u6b63\u5728\u8fdb\u884c\u53cb\u597d\u7684\u8c61\u68cb\u6e38\u620f\uff0c\u4f7f\u7528\u74f6\u76d6\u4f5c\u4e3a\u6e38\u620f\u68cb\u5b50\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "2003989", "video_name": "e7a9ea41-825c-55d2-9c24-854d78c03ec8", "text": "\u52a8\u753b\u673a\u5668\u4eba\u53d1\u73b0\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u5916\u661f\u4e16\u754c\u5e76\u5728\u5176\u4e2d\u6f2b\u6b65\u3002"} +{"id": "6004098", "video_name": "ba70f807-016d-56a9-8058-4922add7d490", "text": "\u4e00\u4f4d\u4f4f\u5728\u68ee\u6797\u91cc\u7684\u5973\u5b69\u5728\u6cb3\u6c34\u4e2d\u770b\u81ea\u5df1\u7684\u8138\uff0c\u5fc3\u60f3\u81ea\u5df1\u5f88\u4e11\u3002\u5979\u53d8\u5f97\u6cae\u4e27\u5e76\u5750"} +{"id": "5001033", "video_name": "e57864ee-afeb-5efd-9331-7a4ec7c7b49a", "text": "\u6c99\u6f20\u4e2d\u7684\u7537\u5b50\u884c\u8d70\uff0c50\u79d2\u3002"} +{"id": "0003513", "video_name": "3ed5ed2a-84dd-53e5-83b2-9d2948be5cea", "text": "\u65f6\u9ae6\u7684\u5927\u8863\u548c\u5c0f\u9a6c\u7532\uff0c\u9002\u5408\u7ec5\u58eb\u3002"} +{"id": "7003794", "video_name": "915c285c-469d-5f81-a844-1898f7746d6f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u65e5\u672c\u9ad8\u4e2d\u5973\u751f\u6234\u4e0a\u9690\u5f62\u773c\u955c\uff0c\u8fd9\u65f6\u5019\uff0c\u5979\u5468\u56f4\u7684\u4e16\u754c\u7a81\u7136\u6269\u5927\uff0c\u4e00\u5207\u53d8\u5f97\u6e05"} +{"id": "0003156", "video_name": "383370d2-53f9-5d2a-b0eb-5c6402aa6fff", "text": "\u4e00\u4e2a\u9001\u8d27\u7684\u5237\u5b50\u6b63\u5728\u5403\u4e1c\u897f\u3002\u9644\u4ef61\u3002"} +{"id": "4003283", "video_name": "0bc2c8dc-1ddb-5adf-be07-b1f9cce41118", "text": "\u4e24\u4e2a\u7a7f\u7740\u5df4\u6d1b\u514b\u7d27\u8eab\u80f8\u8863\u5728\u5e8a\u4e0a\u559d\u725b\u5976\u5fae\u7b11\u7684\u5973\u4eba\u3002"} +{"id": "4002368", "video_name": "2e62fd3d-248f-5d0b-9ad3-8a92edab4667", "text": "\u6e29\u99a8\u7684\u5496\u5561\u9986\uff0c\u8272\u5f69\u6591\u6593\u7684\u73bb\u7483\u7a97\u80cc\u666f\u4e0b\u6709\u96e8\u6ef4\u3002"} +{"id": "2004101", "video_name": "8f631ba2-9a47-575d-9cf2-5e6930ca4999", "text": "\u751f\u7269\u5f62\u6001\u5b66\u6a21\u4eff\u81ea\u7136\u754c\u5b58\u5728\u7684\u6a21\u5f0f\u6216\u5f62\u72b6\uff0c\u5982\u540c\u81ea\u7136\u754c\u548c\u751f\u7269\u4f53\u3002"} +{"id": "3005009", "video_name": "5cbe4b50-be0c-535b-add1-a74e33bf0ba2", "text": "Source sentence: Brocolliman \u5728\u4e00\u4e2a\u6d77\u6d0b\u5c9b\u5c7f\u4e0a\u51a5\u60f3\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002\n\nTranslation: Brocolliman\u5728\u4e00\u4e2a\u6d77\u6d0b\u5c9b\u4e0a\u51a5\u60f3\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "2004352", "video_name": "0a393947-6ddd-5dfe-bee5-d642f4180cce", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7ea2\u767d\u76f8\u95f4\u7684\u732b\uff0c\u6709\u70b9\u80d6\uff0c\u6b63\u9a91\u7740\u81ea\u884c\u8f66\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "6003204", "video_name": "32db7064-7c99-58ab-be3a-4ab41f3b64b7", "text": "\u5236\u4f5c\u4e00\u5f20\u5730\u94c1\u7ad9\u7684\u5973\u5b69\u72ec\u81ea\u7ad9\u7acb\u7684\u7167\u7247\u3002"} +{"id": "6003088", "video_name": "e3870d9c-79f5-51e1-9073-da81859fe9c9", "text": "\u65e5\u843d\u65f6\u7684\u88c5\u9970\u6d77\uff0c\u98ce\u5728\u52a8\u3002"} +{"id": "2003002", "video_name": "d6e4d544-18bd-5a07-94c7-96597dd7bf18", "text": "\u6d77\u6d0b\u6df1\u5904\uff0c\u9ed1\u6697\u65e0\u5149\uff0c\u6ca1\u6709\u4efb\u4f55\u751f\u7269\u5b58\u5728\u3002"} +{"id": "1004632", "video_name": "56278bd5-a1a5-5be2-a5f3-e88eef6061ae", "text": "\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u4eba\u4eec\u8d70\u8def\u7684\u56fe\u50cf\u3002"} +{"id": "5001655", "video_name": "534a0c52-796f-56f6-afca-5d9832c2a152", "text": "\u8d85\u7ea7\u52a8\u6001\u7684\u52a8\u753b\uff0c\u8ff7\u5e7b\u7684\uff0cDJ \u63a7\u5236\u3002"} +{"id": "2004374", "video_name": "a76ab03e-4c15-5b35-b39c-f4fd4dc3dfd5", "text": "\u73af\u6c27\u6811\u8102\u6b63\u5728\u88ab\u5e94\u7528\u4e8e\u98de\u673a\u4e0a\u4ee5\u6539\u5584\u5176\u7ed3\u6784\u3002"} +{"id": "1004669", "video_name": "56d3316a-a639-5c81-be68-740d6b2a66c6", "text": "\u6587\u5b57BlingBling\u5728\u7a7a\u95f4\u4e2d\u79fb\u52a8\u3002"} +{"id": "7004429", "video_name": "e8824405-b96d-55f3-a1a6-267e78550609", "text": "\u97f3\u7b26\u878d\u5408\u6210\u4e00\u4e2a\u6d3b\u751f\u751f\u7684\u4eba\u3002"} +{"id": "2006420", "video_name": "14ddf777-ac12-530e-899e-842b458f4b5f", "text": "50\u6beb\u5347\u94dd\u94f6\u74f6\u914d\u87ba\u65cb\u76d6\u5411\u4e0a\u629b\u8d77\uff0c\u7136\u540e\u843d\u4e0b\uff0c\u80cc\u666f\u4e3a\u7c73\u767d\u8272\uff0c\u6765\u81ea\u524d\u65b9\u7684\u5149\u7ebf\uff0c"} +{"id": "0005460", "video_name": "1b29a610-6ee9-5edd-8178-64deeb03a7dc", "text": "\u4e00\u4e2a\u7531\u79cb\u53f6\u5236\u6210\u7684\u5973\u4eba\u548c\u4e00\u4e2a\u7531\u51b0\u5236\u6210\u7684\u7537\u4eba\u8df3\u821e\uff0c\u7535\u5f71\u7ea7\u522b\uff0c8K\u9ad8\u6e05\u6670\u5ea6\uff0c\u6c1b\u56f4\u8425\u9020\uff0c\u5bbd\u5e7f"} +{"id": "4004338", "video_name": "3540e448-8379-5d83-9466-0de3020618a0", "text": "\u4e00\u4e2a\u7537\u4eba\u8bd5\u56fe\u5b9e\u73b0\u67d0\u4ef6\u4e8b\u60c5\uff0c\u4f46\u662f\u65f6\u95f4\u5df2\u7ecf\u665a\u4e86\u3002"} +{"id": "2006998", "video_name": "229c5e46-0795-5b44-850a-febfa8d75c34", "text": "\u591c\u665a\u7684\u91d1\u5b57\u5854\uff0c\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u7535\u5f71\u822c\u7684\u611f\u89c9\uff0c\u5728\u5929\u7a7a\u4e2d\u7684\u963f\u52aa\u6bd4\u65af\u795e\u5934\u50cf\uff0c4K\u3002"} +{"id": "3006090", "video_name": "7ce3c361-3969-5aca-95a6-293b329e0369", "text": "\u4eba\u4eec\u805a\u96c6\u5728\u57ce\u5821\u7684\u5ead\u9662\u91cc\u89c2\u770b\u4e00\u90e8\u9ad8\u8d28\u91cf\u3001\u9ad8\u7ec6\u8282\u76844K\u7535\u5f71\uff0c\u8fd9\u662f\u4e00\u90e8\u7535\u5f71\u5f0f\u7684\u6697\u9ed1\u5947\u5e7b\u7535"} +{"id": "8002032", "video_name": "f39b272e-598f-50b3-9014-ba8e043a0bd5", "text": "\u72d0\u72f8\u5e26\u7740\u72e1\u733e\u7684\u5fae\u7b11\u8bf4\uff1a\u201c\u965b\u4e0b\uff0c\u4e5f\u8bb8\u60a8\u5e94\u8be5\u4e13\u6ce8\u4e8e\u7edf\u6cbb\u4e1b\u6797\uff0c\u628a\u673a\u667a\u7559\u7ed9"} +{"id": "1005774", "video_name": "6a3fc5ad-5251-5321-9062-2ed696b6382e", "text": "\u5e74\u8f7b\u7684\u7a77\u4eba\u6b63\u5728\u89c2\u770b\u4e00\u4e2a\u7535\u8111\u5c4f\u5e55\u4e0a\u7684\u80a1\u7968\u4ea4\u6613\u56fe\u8868\uff0c\u8fd9\u4e9b\u56fe\u8868\u6b63\u5728\u4e0a\u6da8\u3002"} +{"id": "0006627", "video_name": "2fce6152-d40d-5763-8878-d6526d14ef55", "text": "\u8d85\u903c\u771f\u7684\u871c\u8702\u98de\u5f97\u8ddd\u79bbCRT\u663e\u793a\u5668\u5c4f\u5e55\u5f88\u8fd1\uff0c\u5c4f\u5e55\u64ad\u653e\u9ed1\u767d\u76844K\uff0cAR 16:9\u7684\u8282\u76ee"} +{"id": "1004370", "video_name": "50bb0a06-3b69-56cc-8854-8609a55a0c94", "text": "\u4e50\u9ad8\u8d85\u7ea7\u9a6c\u91cc\u5965\u6253\u5f00\u4e86\u901a\u5f80\u53e6\u4e00\u4e2a\u4e16\u754c\u7684\u95e8\u6237\uff0c8K\uff0c\u76f8\u673a\u653e\u5927\u3002"} +{"id": "1005499", "video_name": "651d1b93-bea2-5237-bc88-954c4abcfa3d", "text": "\u8bf7\u6309\u7167\u539f\u56fe\u7684\u6837\u5b50\u91cd\u65b0\u5236\u4f5c\uff0c\u53ea\u662f\u5c06\u201cFaith\u201d\u6539\u4e3a\u201cLopez\u201d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004087", "video_name": "719dcf64-cab8-5814-b0de-7cdd08f74386", "text": "\u5730\u9762\u4e0a\u6709\u4e00\u4e2a\u83e0\u841d\uff0c\u6811\u4e0a\u6709\u4e00\u53ea\u7c89\u8272\u7334\u5b50\u770b\u7740\u5b83\uff0c\u653e\u5927\u7334\u5b50\u753b\u9762\uff0c16:9\uff0c\u903c\u771f\uff0c\u7535\u5f71\u822c"} +{"id": "8003037", "video_name": "cac030f6-31de-5dc6-ad24-dcd265ebd776", "text": "\u8718\u86db\u4fa02099\u5728\u9003\u8dd1\uff0c\u4f46\u9b3c\u9b42Sally\u6293\u4f4f\u4ed6\u7684\u886c\u886b\uff0c\u7136\u540e\u53d8\u5f97\u65e0\u654c\u4ee5\u4fdd\u4f4f\u4ed6\u7684"} +{"id": "2007481", "video_name": "b9a4c12e-d286-522d-be5d-7a71e2a341fc", "text": "\u4e00\u4f4d\u88ab\u98de\u821e\u7740\u91d1\u8170\u7fc5\u8180\u82b1\u5305\u56f4\u7684\u5973\u4eba\uff0c\u6162\u52a8\u4f5c\u62cd\u6444"} +{"id": "6004057", "video_name": "152ea1ae-0524-5dc3-81f5-5fc06f347d5c", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u4e00\u4f4d\u4e1c\u6b63\u6559\u795e\u7236\u5728\u65e5\u843d\u65f6\u6253\u5b57\u673a\u6253\u5b57\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun. \n\n\u732b\u6b63\u5728\u7a97"} +{"id": "3006471", "video_name": "d61df36c-9296-540e-abea-8084975bde54", "text": "\u4f46\u4ed6\u4eec\u786e\u5b9e\u4e0e\u85cf\u65cf\u5efa\u7acb\u4e86\u5173\u7cfb\u3002"} +{"id": "8002270", "video_name": "8d080729-a731-5f58-adac-caf6531739bd", "text": "\u4e00\u67b6\u5728\u6cf0\u5766\u4e4b\u95f4\u7684\u98de\u884c\u5668\uff0c\u6b63\u5e38\u4eba\u5728\u89c2\u770b\uff0c\u5efa\u7b51\u7269\u88ab\u6467\u6bc1\u3002"} +{"id": "6002909", "video_name": "db71c31e-9ae9-520c-911d-b49b72ea9948", "text": "\u4ed6\u4eec\u5230\u8fbe\u4e86\u4e00\u7247\u68ee\u6797\uff0c\u5728\u90a3\u91cc\u4ed6\u4eec\u9047\u5230\u4e86\u5947\u602a\u800c\u6709\u5438\u5f15\u529b\u7684\u73b0\u8c61\u3002\n\nSource sentence: The company is currently experiencing a decline in sales due to increased"} +{"id": "3004032", "video_name": "39fdfe51-8698-51df-a85b-ee6615633fcf", "text": "\u4e00\u53ea\u72d7\u5728\u7a7a\u4e2d\u6293\u4f4f\u4e00\u53ea\u82cd\u8747\u3002"} +{"id": "6002129", "video_name": "87024945-1332-5edc-9287-9dfa15b0301e", "text": "\u4e00\u53ea\u6234\u7740\u9888\u5708\u7684\u5bb6\u65cf\u5fbd\u7ae0\u4e0a\u7684\u732b"} +{"id": "3004757", "video_name": "4102728f-08e5-53c3-a2d1-8582d4ff82d1", "text": "\u623f\u5b50\u5750\u843d\u5728\u53e4\u57c3\u53ca\uff0c\u80cc\u666f\u662f\u91d1\u5b57\u5854\u3002"} +{"id": "7003143", "video_name": "3c752713-aabe-5118-90e7-e2b83a23e6a6", "text": "\u4e00\u4e2a\u96fe\u6c14\u7b3c\u7f69\u7684\u5a01\u5c3c\u6258\u666f\u89c2\uff0c\u591c\u665a\u80cc\u666f\u4e0b\u6709\u7ea2\u8272\u773c\u775b\uff0c\u8003\u53e4\u7eaa\u5f55\u7247\u3002"} +{"id": "3003179", "video_name": "019c2d19-1d23-559f-be24-cc0889b5426f", "text": "\u65e5\u5386\u4e0a\u7ffb\u9875\u6362\u7eb8\u3002"} +{"id": "6003555", "video_name": "7ad1ed73-dcaf-5b4a-ab94-5b5795b14e29", "text": "\u8bb8\u591a\u72fc\u7fa4\u7684\u72fc\u9886\u5bfc\u8005"} +{"id": "1006486", "video_name": "76af86d4-20f3-56ad-826f-dfb331b36be7", "text": "\u8b66\u5bdf\u9a0e\u8457\u4e00\u8f1b\u60f3\u50cf\u4e2d\u7684\u6469\u6258\u8eca\u3002\n\nSource sentence: The cat jumped over the fence. \n\n\u8c93\u8df3\u904e\u4e86\u7c6c\u7b06\u3002"} +{"id": "6003778", "video_name": "bb7e417f-5fce-5050-a6d5-6a5508e76ca4", "text": "\u788e\u77f3\u843d\u4e0b\uff0c\u82cd\u767d\u7684\u5929\u7a7a\uff0c\u9ad8\u9ad8\u7684\u8349\u4e1b\uff0c\u5feb\u901f\u8fd0\u52a8\uff0c\u4fef\u89c6\u56fe\u50cf\uff0c\u4e2d\u5348\uff0c\u660e\u4eae\u7684\u80cc\u666f\uff0c\u5c11\u91cf"} +{"id": "1006061", "video_name": "6f4b8c5f-f390-53c7-96f6-1350c0f767be", "text": "\u5973\u5b69\u52a8\u753b\u91cc\u7684\u4e24\u4e2a\u670b\u53cb\u6b63\u5728\u73a9\u800d\u3002"} +{"id": "2005731", "video_name": "4b7fe20b-18a7-561b-8eca-dddcdab295ff", "text": "\u7da0\u8272\u80cc\u666f\u4e0b\u7684\u7f8e\u9e97\u5973\u5b69\uff0c\u8fea\u58eb\u5c3c\u98a8\u683c\u3002"} +{"id": "6002814", "video_name": "ff84a009-a468-529f-b0ad-3bb3b492b052", "text": "\u4ece\u524d\uff0c\u5728\u65f6\u95f4\u5b58\u5728\u4e4b\u524d\u7684\u4e16\u754c\u91cc\uff0c\u5b58\u5728\u7740\u4e00\u4e2a\u5e7f\u9614\u65e0\u57a0\u7684\u865a\u7a7a\u3002\u5728\u8fd9\u7a7a\u6d1e\u4e2d\uff0c\u6709\u4e09\u4e2a\u540d\u4e3aLuna\u3001Sol\u548cTerra\u7684\u5929"} +{"id": "2003503", "video_name": "154f9d84-e205-5cd4-8840-f79e700ab708", "text": "\u5973\u5b69\u7ad9\u5728\u5c71\u4e0a\u89c2\u770b\u7a7a\u88ad\uff0c\u8fc8\u514b\u5c14\u00b7\u8d1d\u98ce\u683c\u3002"} +{"id": "1005220", "video_name": "601b31e8-8e04-56df-a781-f999565fd21a", "text": "\u4e00\u4e2a\u9ad8\u5ea6\u8be6\u7ec6\u7684\u52a8\u6f2b\u753b\uff0c\u753b\u7740\u591c\u665a\u98ce\u4e2d\u7684\u9a6c\u620f\u56e2\u5e10\u7bf7\u3002"} +{"id": "0003671", "video_name": "4179b543-c8f7-5c55-be63-23b6eaba5f86", "text": "\u8239\u4e0a\u7684\u5c0f\u7cbe\u7075\u559d\u7740\u5496\u5561\uff0c\u5de7\u514b\u529b\u98d8\u96f6\u3002"} +{"id": "2007759", "video_name": "b4a2f2ce-ccae-5604-9510-99266c6961e2", "text": "\u89c2\u671b\u57ce\u5e02\u7684\u5c71\u9876\u4e0a\u7a7f\u7740\u4f20\u7edf\u963f\u62c9\u4f2f\u670d\u88c5\u7684\u7537\u4eba\uff0c11\u4e16\u7eaa\u3002"} +{"id": "0003956", "video_name": "008953e3-baac-5b31-9354-0c89dea309ef", "text": "\u63cf\u8ff0\u4e86\u5404\u79cd\u989c\u8272\u3001\u5f62\u72b6\u548c\u5927\u5c0f\u7684\u9c7c\u5728\u5145\u6ee1\u6d3b\u529b\u548c\u591a\u6837\u6027\u7684\u6c34\u751f\u73af\u5883\u4e2d\u7684\u753b\u9762\u3002"} +{"id": "6004427", "video_name": "67600df7-e3ba-5c7b-9608-445d15826ac5", "text": "\u574f\u8001\u864e\u770b\u5230\u5a74\u513f\u722c\u884c\u3002"} +{"id": "0005671", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "\u60c5\u4fa3\u5728\u6c99\u53d1\u4e0a\u770b\u6050\u6016\u7535\u5f71\u3002"} +{"id": "6004526", "video_name": "778d1aea-f658-54d7-8220-9c3d9ab4dace", "text": ". \u7535\u5b50\u670b\u514b\u7537\u6027\u4e2d\u56fd\u6218\u58eb\u5750\u5728\u6811\u6797\u91cc\uff0c3D\u6e32\u67d3\uff0c\u8ba1\u7b97\u673a\u751f\u6210\u56fe\u50cf\uff0c\u5bf9\u79f0\u6027\uff0cOctane\u6e32\u67d3\u5668\uff0c"} +{"id": "4002728", "video_name": "2095a964-a4d4-5b19-84ab-03e09ea489b3", "text": "\u4e00\u652f\u7528\u4e8e\u8138\u90e8\u753b\u753b\u7684\u94c5\u7b14\u548c\u8138\u90e8\u6d82\u62b9\u6a61\u76ae\u64e6\u5728\u8138\u90e8\u753b\u5e03\u4e0a\u3002"} +{"id": "3004681", "video_name": "6623076d-c313-5045-b54b-b905a21fc933", "text": "\u5370\u6709\u5e0c\u62c9\u59c6\u548c\u5e0c\u5854\u8bbe\u8ba1\u7684\u6a2a\u5e45"} +{"id": "1005311", "video_name": "618a3f83-f81e-5b65-a9b8-21cf1a501f1b", "text": "\u4e00\u4e2a\u516b\u5c81\u7684\u5c0f\u5973\u5b69\u72ec\u81ea\u7ad9\u5728\u8857\u4e0a\u7684\u9ed1\u6697\u4e2d\uff0c\u8fdc\u5904\u53ef\u89c1\u4e0b\u96e8\uff0c\u753b\u4ee5\u7070\u8272\u8c03\u548c\u9ed1\u7c97\u7ebf\u52fe\u52d2\uff0c"} +{"id": "8001770", "video_name": "0e4f8364-6c4d-5c55-8d4d-4b7bd0ccdeed", "text": "\u5361\u901a\uff0c\u5982\u8fea\u58eb\u5c3cVR3\uff0c\u6709\u7740\u8272\u5f69\u7f24\u7eb7\u7684\u5409\u5854\u548c\u62c9\u59c6\uff0c\u5e26\u7740\u597d\u5947\u5fc3\u8fdb\u5165\u8302\u5bc6\u7684\u4e1b"} +{"id": "2007312", "video_name": "f7465ad6-84cb-5412-8d1a-035bccb67144", "text": "\u6c7d\u8f66\u5954\u8dd1\uff0c\u5361\u8f66\u52a0\u901f\uff0c\u4e00\u53ea\u81ea\u4fe1\u53ef\u7231\u7684\u9e21\u5728\u8f66\u6d41\u4e2d\u81ea\u5982\u5730\u8d70\u52a8\uff0c\u81ea\u7136\u3001\u9762\u5411\u524d\u65b9\uff0c16:9\uff0c\u7f13"} +{"id": "6002272", "video_name": "58a26073-6213-5737-91f1-9406041d8fbc", "text": "\u5728\u4e00\u4e2a\u53e4\u6734\u7684\u6751\u5e84Wordville\uff08\u5b57\u6751\uff09\u91cc\uff0c\u66fe\u7ecf\u6709\u4e00\u4e2a\u6545\u4e8b\u3002 \n\nSource sentence: I love eating sushi for dinner. \n\n\u6211\u559c\u6b22\u665a"} +{"id": "4004101", "video_name": "a0a43b06-3819-5e21-9fce-25c9834879a1", "text": "\u4e24\u4f4d\u6765\u81ea\u519b\u961f\u7684\u670b\u53cb\u6b63\u5728\u5403\u5348\u9910\u3002"} +{"id": "4002752", "video_name": "b511470a-27f4-5b3f-915f-660c2fea1cc6", "text": "\u8482\u59c6\u00b7\u4f2f\u987f\u5f0f\u7684\u9ed1\u767d\u8272\u8c03\uff0cVHS\u6ee4\u955c\uff0c\u8fdc\u666f\u62cd\u6444\u4e00\u5ea7\u8352\u5e9f\u7684\u519c\u573a\u3002"} +{"id": "4004601", "video_name": "e04284e9-820e-5fd4-bf00-c9c8860ce716", "text": "\u9ad8\u8d28\u91cf\u7684\u592a\u9633\u80fd\u7ad9\u4e1a\u52a13D\u73af\u5883\u9879\u76ee\u573a\u666f"} +{"id": "8003271", "video_name": "acc7e3e4-1905-55d4-8ab2-52cdcbfe8447", "text": "\u5b64\u72ec\u7684\u5973\u5b69\u7a7f\u7740\u957f\u767d\u8272\u88d9\u5b50\uff0c\u5728\u68ee\u6797\u5c0f\u8def\u4e0a\u5954\u8dd1\uff0c\u5468\u56f4\u5f25\u6f2b\u7740\u96fe\u6c14\u3002\n\nSource sentence:"} +{"id": "1003718", "video_name": "44a726b6-7fa1-5274-a642-53f447b97c18", "text": "\u521b\u5efa\u4e00\u4e2a\u52a8\u753b\uff0c\u7a81\u51fa\u5b81\u9759\u7684\u660e\u4fe1\u7247\u822c\u7684\u592a\u7a7a\u98de\u8239\u5f62\u8c61\u3002\u4f7f\u7528\u5fae\u5999\u7684\u7f29\u653e\u548c\u8212\u7f13\u7684\u6ee4\u955c\u6765\u589e"} +{"id": "0004384", "video_name": "08101bd6-dbf4-565b-9ba5-bfc0fb3398c8", "text": "\u5f00\u53d1\u4e00\u90e8\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u793a\u7ea2\u7ec6\u80de\u7684\u5fae\u89c2\u4e16\u754c\uff0c\u91cd\u70b9\u5173\u6ce8\u526a\u5207\u7ec6\u80de\u4f5c\u4e3a\u5fae\u5c0f\u8840\u7ba1\u75c5\u7406\u6027\u6eb6"} +{"id": "8001711", "video_name": "4c9f5f63-9ef2-52ab-9ac0-e4154b04e29e", "text": "\u4e00\u53ea\u5c0f\u5154\u5b50\u5403\u80e1\u841d\u535c\u8df3\u821e\u7684\u641e\u7b11\u89c6\u9891\u3002"} +{"id": "3003261", "video_name": "3fbc6eed-9a1b-5d3d-8230-dd467c00fa6f", "text": "\u8bb8\u591a\u4eba\u805a\u96c6\u5728\u4e1b\u6797\u4e2d\u3002"} +{"id": "7002968", "video_name": "79eb7a07-df18-52ab-9ba6-6b266af2006a", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u4e2d\u56fd\u5973\u8001\u5e08\u5750\u5728\u684c\u524d\u8bb2\u8bdd\uff0c\u4f7f\u7528\u4f73\u80fda7R3 25\u6beb\u7c73\u955c\u5934\u62cd\u6444\uff0cHDR\uff0cUHD\uff0c8K\uff0c"} +{"id": "2004976", "video_name": "e85e6825-d0db-52a5-9b2a-9668076d861c", "text": "\u5934\u9aa8\u5f39\u5409\u4ed6\uff0c\u6234\u7740\u659c\u7ebf\u5e3d\u5b50 1280 x 720 \u50cf\u7d20\u3002"} +{"id": "1006209", "video_name": "71d925e2-66fe-582d-95fa-5feb50f9e535", "text": "\u58f0\u6ce2\uff0c\u80cc\u666f\u6df1\u7d2b\u8272\u3002\u4fe1\u606f\uff1aProAI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5001837", "video_name": "1283bda4-a813-5d7a-97ad-87e222b0d6ad", "text": "Translation: \u4eba\u4eec\u5954\u8dd1\u5728\u9f7f\u8f6e\u4e0a\uff0c\u63a8\u52a8\u7740\u4e16\u754c\u7ecf\u6d4e\u7684\u673a\u5668\u8fd0\u8f6c\u3002"} +{"id": "1003839", "video_name": "46cadbf2-9e82-5682-9eed-ccf8791c8727", "text": "\u6ce2\u00b7\u8fbe\u8499\u548c\u82ac\u6069\u4e00\u8d77\u5728\u300a\u661f\u7403\u5927\u6218\u300b\u4e2d\u7684\u4e00\u8258\u98de\u8239\u4e0a\u9003\u79bb\u67d0\u4e2a\u4e1c\u897f\uff0c\u903c\u771f\u3001\u5f71\u89c6\u5316\u3002"} +{"id": "1006803", "video_name": "7c859d89-20f2-5ead-92e6-15a9dad72c7a", "text": "\u7267\u7ae5\u65c1\u8fb9\u6709\u4e00\u5934\u725b\u3002"} +{"id": "4003917", "video_name": "47a8d740-fa21-551f-b0a5-b0a52e5ecc16", "text": "\u8fd9\u4f4d\u5973\u58eb\u73b0\u5728\u5750\u5728\u8c46\u888b\u4e0a\uff0c\u7b14\u8bb0\u672c\u7535\u8111\u653e\u5728\u5979\u7684\u819d\u76d6\u4e0a\uff0cLongFlex\u7535\u7f06\u6beb\u4e0d\u8d77\u773c\u5730\u7a7f"} +{"id": "8003575", "video_name": "bda3f9b0-c543-575a-89f1-edf2edc1f51f", "text": "\u4e00\u4e2a\u6709\u5173\u5916\u661f\u4eba\u5165\u4fb5\u7f8e\u56fd\u7684\u4e09\u5206\u949f\u7535\u5f71\u9884\u544a\u7247\u3002"} +{"id": "7004520", "video_name": "6a478147-92ec-5bab-9882-7f2febad26fd", "text": "\u610f\u8bc6\u5230\u4e86\u4ed6\u7684\u51b3\u5b9a\u6240\u5e26\u6765\u7684\u4e0d\u53ef\u9006\u540e\u679c\u3002"} +{"id": "2007123", "video_name": "097654fc-bf63-514c-abcc-d2b3c4e9634b", "text": "\u5411\u5ba2\u6237\u8bf4\u65e9\u4e0a\u597d\u3002"} +{"id": "3004754", "video_name": "790c2bad-37b0-5cfc-952b-1f7ce4a3fa88", "text": "\u4e2d\u4e16\u7eaa\u7684\u5e06\u8239\u5728\u6d77\u4e0a\u822a\u884c\uff0c\u98ce\u6d6a\u62cd\u6253\u7740\u5e06\u8239\uff0c\u5e06\u8239\u5904\u4e8e\u6c89\u6ca1\u7684\u5371\u9669\u4e4b\u4e2d\u3002"} +{"id": "3005606", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "\u5b83\u4f1a\u7ed9\u51fa\u4e00\u573a\u6bd4\u8d5b\u4e2d\u7684\u6c7d\u8f66\uff0c\u5728\u8fd9\u573a\u6bd4\u8d5b\u4e2d\uff0c\u6c7d\u8f66\u4eec\u4f1a\u5728\u5f2f\u9053\u4e0a\u6f02\u79fb\uff0c\u4f9d\u6b21\u6392\u5217\uff0c\u89c6\u9891\u65f6\u957f\u4e3a15\u79d2\u3002"} +{"id": "7002628", "video_name": "9b1a0100-2591-5d8b-b320-7621d4f09d57", "text": "\u4e3b\u9898\u516c\u56ed\u6444\u5f71 \u4fe1\u606f\uff1aMixus\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003607", "video_name": "4c8f619d-f5f6-5107-bd38-4ae4e8ff2a59", "text": "\u5728\u6df1\u9083\u7684\u9ed1\u6697\u80cc\u666f\u4e0b\u521b\u4f5c\u4e00\u6bb5\u52a8\u753b\uff1a\u4e00\u7fa4\u7070\u8272\u7684\u9c7c\u548c\u8c10\u5730\u671d\u4e00\u4e2a\u65b9\u5411\u6e38\u52a8\uff0c\u800c\u4e00\u6761\u84dd\u8272"} +{"id": "3003807", "video_name": "24b510b9-c9a8-5bbf-a8dd-760bc2b6e874", "text": "\u8d5b\u535a\u670b\u514b\u4e5d\u5934\u86c7\u672a\u6765\u4e3b\u4e49\u88c5\u7532\u7537\u5b50\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u542f\u793a\u5f55\u670d\u88c5\u98ce\u683c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7ed8\u753b\u3002"} +{"id": "3005974", "video_name": "3c614254-5f8a-583c-9c66-c2d490e7fc7f", "text": "\u53ea\u6709\u73ab\u7470\u8272\u7684\u5899\u58c1\uff0c\u5728\u5899\u4e0a\u6302\u7740\u9ed1\u8272\u7684\u6846\u67b6\u4e2d\u95f4\u3002"} +{"id": "8003490", "video_name": "a18e4cdf-1fcc-57cd-9ba6-28e5e4ccef62", "text": "\u65c1\u89c2\u8005\u5bf9\u6cd5\u56fd\u65af\u7279\u62c9\u65af\u5821\u4e00\u4e2a\u6751\u5e84\u57281518\u5e74\u6240\u53d1\u751f\u7684\u4e8b\u60c5\u611f\u5230\u56f0\u60d1\u548c\u56f0\u60d1\u3002"} +{"id": "8001048", "video_name": "5a02a943-e18d-537c-95c8-c11cd7880732", "text": "\u9ed1\u767d\u5929\u4f7f\u98de\u884c\u903c\u771f\u3002"} +{"id": "1006227", "video_name": "722f1812-ec37-537b-aef1-39b273e89b45", "text": "\u4e00\u8258\u62e5\u6709\u65d7\u5e1c\u548c\u70ae\u53e3\u7684\u5df4\u6d1b\u514b\u5f0f\u82f1\u56fd\u8239\u53ea\uff0c\u5728\u4e00\u4e2a\u79bb\u5c9b\u5c7f\u4e0d\u8fdc\u7684\u5f00\u9614\u6d77\u6d0b\u4e2d\u7f13"} +{"id": "2005642", "video_name": "577d0dc9-e91f-570b-a568-801866b3206d", "text": "\u6c34\u6dcb\u6d74\u7684\u5973\u5b69\u5411\u524d\u8d70\u7740\uff0c\u98ce\u5439\u8fc7\uff0c\u5934\u53d1\u98d8\u52a8\u3002"} +{"id": "6002829", "video_name": "adb21767-7106-5f47-8fb8-43c55fcfca06", "text": "\u5766\u514b\u5728\u6c99\u6ee9\u4e0a\u884c\u9a76\u65f6\u4ece\u70ae\u7b52\u5c04\u51fb\u3002\n\nSource sentence: The cat is sleeping on the bed. \n\n\u732b\u6b63\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "0005717", "video_name": "2012655b-6005-581f-ab30-015f3eabd6f2", "text": "\u4e00\u540d\u7537\u5b50\u5728\u8239\u4e0a\u9493\u9c7c\uff0c\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\uff0c\u67d4\u548c\u8272\u8c03\u3002"} +{"id": "6003528", "video_name": "01b2dc86-6090-5168-ae47-561bb378d940", "text": "\u9a6c\u4e01\u592b\u4eba\u5c06\u5bb6\u91cc\u6539\u9020\u6210\u4e00\u4e2a\u8212\u9002\u7684\u573a\u6240\uff0c\u4f9b\u5f53\u5730\u4eba\u805a\u4f1a\u4f7f\u7528\u3002"} +{"id": "5001698", "video_name": "c1d795ef-426f-59be-abe3-33637d7bfbe4", "text": "\u4e24\u4e2a\u4eba\u4e4b\u95f4\u7684\u6709\u7ebf\u8fde\u63a5\uff0c\u7f51\u7edc\uff0c\u54e5\u7279\u5f0f"} +{"id": "6004161", "video_name": "35f9dda7-ac7a-5254-883a-8a4ad4f4c798", "text": "\u4f20\u9001\u95e8\u5728\u7194\u5ca9\u5751\u4e2d\u6253\u5f00\u3002"} +{"id": "1006497", "video_name": "76f37558-e3eb-5570-a925-bc888778d5a8", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6d77\u6ee9\u8fb9\u508d\u665a\u5f39\u5409\u4ed6\uff0c\u6570\u5b57\u827a\u672f\u3002"} +{"id": "0005022", "video_name": "135c6bfc-a63c-5619-b098-868df44e93d2", "text": "Elk\u62c9\u7740\u96ea\u6a47\uff0c\u5750\u5728\u96ea\u6a47\u4e0a\u7684\u662f\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u5979\u62b1\u7740\u4e00\u53ea\u814a\u80a0\u72d7\uff0c\u662f\u5723\u8bde"} +{"id": "0003470", "video_name": "3e33e655-462e-5fba-8375-de09adbcb331", "text": "\u4e00\u540d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u4ea7\u54c1\u7ecf\u7406\u5728\u8054\u5408\u56fd\u5c31\u4eba\u5de5\u667a\u80fd\u4ea7\u54c1\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "6004857", "video_name": "ef1068bf-be58-51e5-bfc9-1e084b1b779b", "text": "\u4e00\u7247\u6709\u7f8e\u4e3d\u6811\u548c\u6e56\u7684\u571f\u5730\u4e0a\uff0c\u6709\u4e00\u5bf9\u5750\u7740\u7684\u60c5\u4fa3\u3002\u4fe1\u606f\uff1a\u4e00\u5bf9\u60c5\u4fa3\u3002"} +{"id": "3004972", "video_name": "820522c3-0909-53a9-a0ca-86c2bbe6dd11", "text": "\u653e\u5927\uff0c\u4e00\u6761\u5b81\u9759\u7684\u6cb3\u6d41\u8f7b\u8f7b\u5730\u6d41\u8fc7\u4e00\u5ea7\u53e4\u6734\u7684\u6728\u6865\u4e0b\u3002"} +{"id": "8003520", "video_name": "72cea25a-5920-53a1-b577-2292b2f0054b", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u7537\u4eba\u624b\u6301\u4e13\u4e1a\u76f8\u673a\uff0c\u76f4\u63a5\u5bf9\u51c6\u89c2\u4f17\u3002\u8fd9\u4e2a\u7537\u4eba\u5e94\u8be5\u770b\u8d77\u6765\u4e13\u6ce8\uff0c\u540c\u65f6\u8c03\u6574\u76f8\u673a\u8bbe\u7f6e\u3002\u7a81\u7136\u4e4b\u95f4"} +{"id": "5001296", "video_name": "d21f91be-3413-5120-b5d9-19c0bd36c153", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5c11\u5e74\u538c\u6076\u5730\u770b\u7740\u4ed6\u4eec\u7684\u98df\u7269\u3002"} +{"id": "3003854", "video_name": "e33e5c65-1f64-5aed-aba0-3880a3931b67", "text": "\u5b66\u6821\u5973\u5b69\u548c\u5979\u7684\u670b\u53cb\u7ad9\u5728\u4e00\u8d77\uff0c\u88ab\u6751\u6c11\u56f4\u7ed5\u7740\uff0c\u4e3a\u5979\u4eec\u7684\u5949\u732e\u9f13\u638c\u6b22\u547c\u3002"} +{"id": "1006488", "video_name": "76d32946-71f6-5dca-b9ec-a2f55cddae21", "text": "10\u8f86\u8b66\u8f66\u5f00\u7740\u8b66\u7b1b\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "2004711", "video_name": "80dd1a78-2bd0-5318-afd2-884ba152d67f", "text": "\u5728\u706b\u661f\u4e0a\u5236\u9020\u7740\u9646\u8231\u964d\u843d\u6a21\u5757\u3002"} +{"id": "3003159", "video_name": "ce961b61-96e7-5b1e-9d66-7091ebf6c7cc", "text": "\u590d\u523b\u7684\u955c\u5934\u91cc\uff0c\u7a7f\u7740\u65f6\u4ee3\u670d\u88c5\u7684\u6c11\u5175\u8e72\u4f0f\u5728\u5899\u58c1\u548c\u6811\u540e\uff0c\u8138\u4e0a\u523b\u6ee1\u4e86\u51b3\u5fc3\uff0c"} +{"id": "3004854", "video_name": "e955537e-6aab-59d1-87af-df3797c0da8c", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u9999\u8549\u5728\u751f\u4ea7\u533a\uff0c\u4fe1\u606f\u662f\u201c\u661f\u7403PVA\u201d\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006788", "video_name": "7c63c0ae-c8f7-534c-9a54-0b364cbccd7a", "text": "Translation: \u4e00\u4e2a\u7537\u4eba\u5728\u672a\u6765\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "1006272", "video_name": "72d7608a-25b0-5c7c-9d73-bf646ad5d185", "text": "\u4e00\u4e2a\u6ee1\u8f7d\u9c9c\u82b1\u7684\u7c89\u8272\u6c7d\u8f66\u5411\u5de6\u79fb\u52a8\uff0c\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "0003631", "video_name": "40cd1c80-2574-521b-a402-5a2be951a124", "text": "\u5199\u6210\u529f\u548c\u52a8\u529b\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "8001902", "video_name": "08ccb198-3ec0-56ee-a0b6-23fe008ade5f", "text": "\u673a\u5668\u72d7\u5728\u96e8\u4e2d\u884c\u8d70\u3002"} +{"id": "7003973", "video_name": "20c1d1ee-d47c-5576-a001-0a8b07b0c7c7", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5c71\u8c37\u4e2d\u5f00\u8f66\u3002"} +{"id": "4003005", "video_name": "ca8cddb0-0d95-5d70-88a3-4e35c58067be", "text": "\u5728\u5395\u6240\u5185\u8fdb\u884c\u7684\u6d17\u94b1\u884c\u4e3a\u3002"} +{"id": "4002615", "video_name": "f69aff80-0941-5587-8b43-1e0fed615daf", "text": "\u7c89\u8272\u7684\u70df\u96fe\u5728\u9a9a\u52a8\u4e2d\u98d8\u8361\u3002"} +{"id": "2005509", "video_name": "42deaf23-627e-58ec-9330-93033357cbbf", "text": "\u4e00\u53ea\u91d1\u6bdb\u5728\u9ed1\u677f\u4e0a\u5199\u7740\u9ad8\u7b49\u5fae\u79ef\u5206\u516c\u5f0f\u3002\u9ed1\u677f\u6240\u5728\u7684\u5149\u4eae\u8d70\u5eca\u8ba9\u4eba\u60f3\u8d771998\u5e74\u7684\u9ebb\u7701\u7406\u5de5"} +{"id": "7003689", "video_name": "edb57365-b5c5-587e-842b-4eb6ef84977f", "text": "\u4e00\u6839\u7535\u68af\u76f4\u7ebf\u4e0a\u5347\u5230\u592a\u7a7a\u3002"} +{"id": "3004039", "video_name": "4808c23e-489c-57f0-8271-23663604873a", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5728\u6cb3\u8fb9\u9493\u9c7c\u3002 \n\nSource sentence: I need to buy some groceries from the store. \n\n\u6211\u9700\u8981\u4ece\u5546\u5e97\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "0004356", "video_name": "079c7485-b00d-566f-91f6-5e8c08c27b0a", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5634\u5df4\u8bf4\u7740\u5feb\u4e50\u7684\u8bdd\u3002 \n\nSource sentence: I am going to the store to buy some milk and bread. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u725b"} +{"id": "2004302", "video_name": "578adb67-2d44-5b1f-a496-cc00e26a510e", "text": "Translation: \u535a\u5c14\u7d22\u7eb3\u7f57\u548c\u8d39\u5229\u4f69\u00b7\u5185\u6258\u4e00\u8d77\u5e72\u676f\u3002"} +{"id": "3006223", "video_name": "19179546-5baa-5329-bf09-0fc6caa09bcc", "text": "\u4ee5\u5f15\u4eba\u5165\u80dc\u7684\u4ecb\u7ecd\u5f00\u59cb\uff0c\u5c55\u793a\u5b66\u751f\u5b66\u4e60\u3001\u53c2\u4e0e\u6d3b\u52a8\u548c\u8ffd\u6c42\u6210\u529f\u7684\u7247\u6bb5\u3002"} +{"id": "7002434", "video_name": "f44cad7f-90f4-56fc-9132-bfef62571a35", "text": "\u4e00\u4e2a\u65af\u8482\u59c6\u670b\u514b\u57ce\u5e02\u7684\u590d\u6d3b\u8282\u8282\u65e5"} +{"id": "3003599", "video_name": "cac88215-cfa7-5313-970f-0284222e877f", "text": "\u8c6a\u534e\u6c7d\u8f66\u5728\u957f\u957f\u7684\u9053\u8def\u4e0a\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "3003292", "video_name": "fee3c3bb-8046-539d-81b3-1d395226b6d5", "text": "\u80cc\u666f\u662fMinecraft\u7684\u7535\u89c6\u65b0\u95fb\u5de5\u4f5c\u5ba4\u4e0a\u6709\u201cBAZ\u201d\u5b57\u6837\u3002"} +{"id": "7002221", "video_name": "7336955c-1dae-51e0-a2b3-0061a106d8aa", "text": "\u4e00\u4f4d\u5973\u6027\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u7684\u957f\u89c6\u9891\u3002"} +{"id": "0005732", "video_name": "2044313d-5c3e-59e3-a312-5a049b7c9591", "text": "\u6109\u5feb\u7684\u590d\u6d3b\u8282\u5154\u5b50\u5728\u82b1\u56ed\u91cc\u8df3\u8dc3\uff0c\u5230\u5904\u90fd\u662f\u8272\u5f69\u6591\u6593\u7684\u590d\u6d3b\u8282\u5f69\u86cb\u3002"} +{"id": "1003761", "video_name": "45546968-ab40-5206-acef-32d06a54cd48", "text": "\u4e00\u4f4d\u5973\u5b69\uff0c\u9762\u90e8\u7ec6\u8282\u4e30\u5bcc\uff0c\u80fd\u591f\u6d41\u7545\uff0c\u6770\u4f5c\uff0c8k\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u9ad8\u6e05\uff0c\u590d\u6742\u7ec6\u8282\uff0c\u8d85\u73b0\u5b9e"} +{"id": "2007668", "video_name": "38dfb8c0-4208-5c78-bacc-a72eba49d87e", "text": "\u5927\u578b\u82cf\u8054\u706b\u7bad\u62d6\u62c9\u673a\u53d8\u6210\u4e86\u4e00\u74f6\u8461\u8404\u9152\u3002"} +{"id": "2005959", "video_name": "59263cc2-6256-5e99-86bb-7ff77aa851e6", "text": "\u6807\u8bb0\u901a\u5f80\u8fd9\u4e2a\u795e\u79d8\u751f\u6001\u7cfb\u7edf\u7684\u8def\u5f84\u3002"} +{"id": "0006650", "video_name": "305e3953-aa39-5294-b822-2476b23c5ca8", "text": "\u9996\u5148\u5c55\u793a\u592a\u9633\u7cfb\uff0c\u7136\u540e\u5c55\u793a\u571f\u661f\u73af\u7684\u8fd0\u52a8\uff0c\u6700\u540e\u7f29\u653e\u81f3\u5916\u592a\u7a7a\uff0c\u5c55\u793a\u9ed1\u6d1e\u3002"} +{"id": "0006710", "video_name": "31843579-537a-51bc-b356-d45e37861231", "text": "\u5973\u5b69\u7684\u7279\u5199\u753b\u50cf\uff0cY2K\u65f6\u671f\u3002"} +{"id": "4003692", "video_name": "15e9a8f0-5c74-5aff-9443-5302a0beba3a", "text": "\u6c14\u6ce1\u5728\u663e\u5fae\u955c\u4e0b\u7684\u8fd1\u8ddd\u79bb\u7206\u88c2\u89c6\u56fe\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0005196", "video_name": "167bc2df-20b5-5a3f-84ff-8023a5ea7e37", "text": "\u8ff7\u4f60\u9f99\u98de\u5411\u94f6\u6cb3\u65b9\u5411\u7684\u4e91\u5c42\u3002"} +{"id": "0005570", "video_name": "1d1d817a-057d-5012-9da2-8242c9fd5fed", "text": "\u4e00\u67b6\u519b\u7528\u673a\u68b0\u673a\u5668\u4eba\u5728\u591c\u665a\u7684\u8d5b\u535a\u670b\u514b\u8857\u533a\u4e2d\u5c55\u5f00\u5e76\u7ad9\u7acb\u8d77\u6765\uff0c\u6620\u886c\u5728\u9713\u8679\u706f"} +{"id": "8002335", "video_name": "2a808edd-996b-585f-af57-e75139282902", "text": "\u4e07\u5723\u8282\u6253\u626e\u7684\u7537\u5b69\u548c\u5973\u5b69\u4eec\u88ab\u5413\u5230\u4e86\u3002"} +{"id": "1006921", "video_name": "7e962a1d-b61f-51ae-ad85-804ce5378ba2", "text": "\u5728\u7f8e\u4e3d\u7684\u975e\u6d32\u5927\u8349\u539f\u4e0a\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u8c79\u5b50\u6b63\u5728\u73a9\u800d\u3002"} +{"id": "2007864", "video_name": "d1f5af69-68d0-53fe-ab08-296856f3a523", "text": "\u4e00\u4e2a\u7537\u5b69\u8d62\u5f97\u4e86\u4e00\u5f20\u5f69\u7968\u3002"} +{"id": "8003700", "video_name": "60eaa7a5-b86e-509c-b1d0-39ba5736d2f5", "text": "\u5b69\u5b50\u4eec\u5954\u8dd1\uff0c\u82b1\u8349\u6811\u6728\u6447\u66f3\uff0c\u72d7\u73a9\u800d\u3002"} +{"id": "2003403", "video_name": "c21d97df-bf7c-5319-a8de-19414039efde", "text": "\u4e0b\u96e8\u5929\uff0c\u4e00\u4e2a\u7236\u4eb2\u62ff\u7740\u4f1e\u5e26\u7740\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "8002970", "video_name": "d6848c13-89af-5734-ba5d-87fac3e1b548", "text": "\u6bcf\u5e74\u90fd\u8bc1\u660e\uff0c\u5584\u826f\u4e4b\u5149\u53ef\u4ee5\u6bd4\u6700\u4eae\u7684\u70df\u82b1\u66f4\u52a0\u95ea\u8000\u3002"} +{"id": "3005067", "video_name": "b19af9d0-e8ca-5a6b-8953-8a624b251564", "text": "\u684c\u5b50\u4e0a\u6709\u5404\u79cd\u65b0\u9c9c\u7684\u6c34\u679c\u3001\u852c\u83dc\u548c\u7626\u86cb\u767d\u98df\u54c1\uff0c\u7eff\u8272\u963f\u5c14\u6cd5\u906e\u7f69\u80cc\u666f\u3002"} +{"id": "7004712", "video_name": "a5c78812-ee38-58cc-a678-a13eeca13493", "text": "\u7f51\u7edc\u8b66\u5bdf\u6b63\u5728\u5730\u94c1\u7ad9\u5185\u641c\u7d22\u4ed6\u4eec\u7684\u730e\u7269\u3002\u79d1\u5e7b\uff0c\u6050\u6016\u3002\u5bc2\u9759\u5cad\uff0c\u94f6\u7ffc\u6740\u624b\u3002"} +{"id": "8001255", "video_name": "99340b6e-e39c-5689-bb77-6f5b411c0e30", "text": "\u4e00\u500b\u5c60\u592b\u5728\u4e00\u500b\u6709\u725b\u548c\u99ac\u7684\u8fb2\u5834\u88e1\u3002"} +{"id": "3003605", "video_name": "e4979c6f-49f4-5a4f-844a-9a8dda64a2d2", "text": "\u5728\u6d77\u6d0b\u4e2d\u592e\u822a\u884c\u7684\u8239\u53ea\u5411\u7740\u5730\u5e73\u7ebf\u524d\u8fdb\u3002"} +{"id": "0004260", "video_name": "05fb2a50-e8e2-57c9-816a-4f7eb90b5307", "text": "\u7537\u4eba\u8d70\u5728\u88ab\u6bc1\u706d\u7684\u82cf\u8054\u57ce\u5e02\u4e2d\u3002"} +{"id": "7003403", "video_name": "3977fc72-df7f-585b-bd2a-e9225285fb31", "text": "\u84dd\u5929\u4e0b\u7684\u72d7"} +{"id": "7002217", "video_name": "ce5a3d41-4849-587b-959c-15db5cb19bd3", "text": "\u4e3b\u9898\u516c\u56ed\uff0c\u5e7b\u60f3\u6cf3\u6c60\u548c\u5929\u5802\u3002"} +{"id": "2003057", "video_name": "4bdfd225-e852-5a77-a083-24df7ace6850", "text": "\u65f6\u88c5\u79c0\u4e0a\u8d70\u79c0\u7684\u5973\u5b69\u3002"} +{"id": "7002840", "video_name": "605a2c0c-1973-5b5a-b4c1-f2d3b3a058f9", "text": "\u8bf4\u5531\u6b4c\u624b\u5728\u65e5\u843d\u80cc\u666f\u4e0b\u5531\u6b4c\u3002"} +{"id": "8003820", "video_name": "ca578ddf-aaeb-5022-a13f-566301860cc9", "text": "\u5927\u8c61\u5728\u5e73\u9759\u7684\u6cb3\u6c34\u91cc\u770b\u7740\u81ea\u5df1\uff0c\u6ce8\u610f\u5230\u81ea\u5df1\u7684\u8eab\u4f53\u6b63\u5728\u53d8\u5927\u3002"} +{"id": "2004673", "video_name": "780d324a-9473-56b8-a1c5-5822885f2474", "text": "\u4e00\u4f4d\u8fd0\u52a8\u5458\u5728\u5954\u8dd1\uff0c\u51e0\u4e4e\u653e\u5f03\u4f46\u4ecd\u5728\u575a\u6301\u524d\u884c\u3002\u4ee5\u68b5\u9ad8\u98ce\u683c\u8868\u73b0\u3002"} +{"id": "8003713", "video_name": "77734bec-82f3-5e0a-8f92-24131fe6b921", "text": "\u4e00\u53ea\u6bcd\u6d77\u9f9f\u548c\u5b83\u7684\u5c0f\u6d77\u9f9f\u5b9d\u5b9d\u5728\u4e00\u8d77\u770b\u7740\u6d77\u6d6a\u3002\u6bcd\u6d77\u9f9f\u7684\u5f62\u8c61\u5f00\u59cb\u6d88\u5931\uff0c\u5c0f\u6d77\u9f9f\u5b64\u72ec"} +{"id": "0003091", "video_name": "36d710ee-86bb-54d8-90ec-e16fb7f734eb", "text": "\u9a6c\u514b\u00b7\u83b1\u767b\u98ce\u683c\u7684\u9738\u738b\u9f99"} +{"id": "1003735", "video_name": "44f2151d-afc0-57e2-a061-0406dff3b544", "text": "\u68ee\u6797\u4e2d\u6709\u9e21\u817f\u7684\u9ed1\u6697\u5947\u5e7b\u590d\u53e4\u5c0f\u5c4b\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "1003465", "video_name": "4025ef32-2c52-5d6d-8f71-8c1d86ae9f3f", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u6bdb\u6bdb\u866b\u6b63\u5728\u592a\u7a7a\u8239\u7684\u9762\u677f\u5185\u5954\u8dd1\u3002"} +{"id": "4002294", "video_name": "90dd6e73-901a-5624-8456-48367655fbef", "text": "\u5728\u660f\u6697\u7684\u602a\u5f02\u73af\u5883\u4e2d\uff0c\u4e00\u7fa4\u4eba\u4e00\u8d77\u60ac\u6d6e\u7684\u53ef\u6015\u573a\u666f\u3002\u5f3a\u8c03\u795e\u79d8\u7684\u60ac\u6d6e\u611f\u548c\u8d85\u81ea\u7136\u4e8b\u4ef6\u3002"} +{"id": "0006721", "video_name": "31ba28a2-93e1-5f6c-a945-013242ea9f5f", "text": "\u4e00\u53ea\u8001\u864e\u5728\u706b\u661f\u8868\u9762\u884c\u8d70\uff0c\u63a2\u6d4b\u5668\u62cd\u6444\u7684\u753b\u9762\u3002"} +{"id": "2004584", "video_name": "57086a6d-321d-5cf3-b9e3-48eed699b923", "text": "\u4e00\u4e2a\u4e9a\u6d32\u5927\u5b66\u751f\u6b63\u5728\u8e22\u8db3\u7403\u3002\n\nSource sentence: I like to eat sushi for lunch. \n\n\u6211\u559c\u6b22\u5348\u9910\u5403\u5bff\u53f8\u3002"} +{"id": "3003192", "video_name": "908f3b17-9fc4-5e15-af62-22c6752e917a", "text": "\u97f3\u4e50DJ\u8df3\u821e\u5e76\u522e\u5531\u5531\u7247\u3002"} +{"id": "4004598", "video_name": "ad78256d-d7f3-5a0c-94d7-5d222e9969a0", "text": "\u9c8d\u52c3\u00b7\u9a6c\u5229\u4ece\u4e00\u680b\u697c\u4e0a\u6454\u4e86\u4e0b\u6765\u3002"} +{"id": "0006456", "video_name": "2cd90e98-72d3-5520-9f1d-8e5dad8344d4", "text": "\u4e00\u4e2a\u7537\u5b69\u7a7f\u7740T\u6064\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "3003302", "video_name": "c90282cc-08b7-5aa3-bcec-ea550c3822f9", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u57ce\u5e02\u821e\u8005\u53c2\u52a0\u6bd4\u8d5b\u4ee5\u8d62\u53d6\u5956\u5b66\u91d1\u3002"} +{"id": "6004472", "video_name": "6dcfdbbd-963a-54aa-bf5d-e035987b1823", "text": "\u706b\u7130\u548c\u70df\u96fe\u8986\u76d6\u4e86\u5efa\u7b51\u7269\u540e\u9762\u7684\u4e00\u5207\u3002"} +{"id": "8003943", "video_name": "da1d4c19-8fc4-5431-bec2-b4c39920ca70", "text": "\u6070\u514b\u00b7\u5947\u997c\u73a9\u6eda\u7403\u6e38\u620f\uff0c\u57f9\u8bad\u89c6\u9891"} +{"id": "7003984", "video_name": "41c00d91-9b09-5a4f-ab15-dce4bcd3dac2", "text": "\u4e00\u4efd\u7535\u8d39\u8d26\u5355\u548c\u4e00\u4e2a\u592a\u9633\u80fd\u677f\u5728\u6253\u677f\u7403\u3002\u7535\u8d39\u8d26\u5355\u626e\u6f14\u51fb\u7403\u624b\u7684\u89d2\u8272\uff0c\u592a\u9633\u80fd\u677f\u5219\u626e\u6f14\u6295\u624b\u7684\u89d2\u8272\u3002"} +{"id": "1005770", "video_name": "6a2af32a-9846-5b3d-b8fb-2ca234403756", "text": "\u72ee\u5b50\u91cc\u5965\u505c\u4e0b\u6765\u8003\u8651\u8fd9\u4e2a\u60c5\u51b5\u3002"} +{"id": "2007081", "video_name": "fcf7b908-2e95-5e25-a150-18e7a54c2ad0", "text": "\u4ecb\u7ecd\u4e00\u4e0b\u90a3\u4e2a\u624e\u7740\u957f\u957f\u7684\u9ed1\u53d1\u548c\u68d5\u8272\u773c\u775b\u7684\u7537\u5b69\uff0c\u8fd8\u6709\u90a3\u4e2a\u84dd\u773c\u775b\u548c\u76f4\u53d1\u6df1\u68d5\u8272"} +{"id": "0005695", "video_name": "1f94b1bd-1863-56e4-a2ba-1decae388f4b", "text": "\u957f\u53d1\u9177\u70ab\u7684\u5c11\u5e74\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "4002065", "video_name": "fe934bb2-1569-598c-b02d-bf626407a2d6", "text": "\u519b\u7528\u55b7\u6c14\u5f0f\u98de\u673a\u4fef\u89c6\u8349\u539f\u7684\u52a8\u6f2b\u7247\u5934"} +{"id": "3005623", "video_name": "01fae95d-f957-5948-8f69-fbe778c2b348", "text": "1910\u5e74\u4ee3\u65e7\u9ed1\u767d\u8d858\u6beb\u7c73\u66b4\u98ce\u4e91\u65f6\u95f4\u6d41\u901d\u7535\u5f71\u3002"} +{"id": "1004273", "video_name": "4f0cfb4c-6cba-5a9e-b0e4-50132fca05dd", "text": "\u4e00\u540d\u5973\u5b50\u88ab\u7ef3\u5b50\u7ed1\u4f4f\uff0c\u624b\u6301\u526a\u5200\u526a\u65ad\u7f1a\u7740\u5979\u7684\u7537\u5b50\u7684\u7ef3\u5b50\uff0c\u573a\u666f\u8d85\u903c\u771f\uff0c4K\u9ad8\u6e05\uff0c\u8272"} +{"id": "2003278", "video_name": "b49d5f1f-b425-5b72-b102-dbfa96b440f3", "text": "\u6751\u6c11\u8df3\u821e\u3001\u5531\u6b4c\u3001\u805a\u9910\uff0c\u5171\u540c\u5e86\u795d\u6210\u529f\uff0cUnity Tree\u4e0b\u662f\u4e00\u7247\u6b22\u4e50\u548c\u611f\u6069\u7684\u6c1b\u56f4\u3002"} +{"id": "2006417", "video_name": "aabe6875-3c92-5cc8-a544-e1324f166759", "text": "\u4f60\u597d\uff0c\u8bf7\u5e2e\u6211\u751f\u6210\u4e00\u4e2a3D\u7c73\u8001\u9f20\u3002"} +{"id": "0004009", "video_name": "01852aac-daa3-507c-a0cd-3dbe5b958534", "text": "\u6d77\u738b\u661f\u4e0a\u7684\u53cc\u91cd\u5f69\u8679\u3002"} +{"id": "3006741", "video_name": "e9c4bf82-1a5b-5b1d-b73d-0ad11d2e4fc7", "text": "\u5728\u6708\u5149\u4e0b\u8df3\u821e\u7684\u60c5\u4fa3\uff0c\u88ab\u4e00\u7247\u8424\u706b\u866b\u6d77\u6d0b\u6240\u5305\u56f4\u3002"} +{"id": "1006177", "video_name": "710e0e49-40cc-5164-a736-bf77164116ec", "text": "\u5c55\u793a\u4e00\u5f20\u7f8e\u56fd\u6d77\u519b\u822a\u7a7a\u6bcd\u8230\u548c\u4e2d\u56fd\u6d77\u519b\u9a71\u9010\u8230\u5728\u592a\u5e73\u6d0b\u4f5c\u6218\u7684\u56fe\u7247\u3002"} +{"id": "8003666", "video_name": "05f1538e-7a50-55d5-afef-808134a434a8", "text": "\u73e0\u5b9d\u4ea7\u54c1\u5c55\u793a\u4e8e\u7535\u5546\u7f51\u7ad9\u3002"} +{"id": "0004338", "video_name": "0758e2ec-4801-579f-a8fa-527800f09e76", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5e0c\u4f2f\u6765\u4eba\u7a7f\u7740\u4e94\u989c\u516d\u8272\u7684\u957f\u886b\uff0c\u88ab\u4ed6\u5ac9\u5992\u7684\u5144\u5f1f\u6254\u8fdb\u4e86\u5e72\u71e5\u7684"} +{"id": "8002290", "video_name": "34f65013-8200-5a15-8cc0-1a5349fae300", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4e0e\u6559\u6388\u4eec\u4ea4\u8c08\uff0c\u8ba8\u8bba8K\u8d85\u9ad8\u6e05\u53ca\u76ae\u514b\u65af\u98ce\u683c\u8fea\u58eb\u5c3c\u3002"} +{"id": "4003849", "video_name": "3fee0f4d-81a0-5479-a105-ff6ba9f8698e", "text": "\u4e00\u4e2a\u624b\u62ff\u98ce\u7b5d\u5728\u5929\u7a7a\u4e2d\u5c3d\u60c5\u98de\u7fd4\u7684\u7537\u5b69\uff0c\u4ed6\u7684\u8138\u4e0a\u8868\u73b0\u51fa\u6240\u6709\u7684\u5e78\u798f\u3002"} +{"id": "0005182", "video_name": "16342164-e261-5d7b-bf81-c479ed51040f", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u98d8\u9038\u88d9\u5b50\u7684\u5973\u5b69\u5728\u591c\u7a7a\u4e0b\u7684\u7530\u91ce\u4e2d\uff0c\u548c\u4e00\u4f4d\u7a7f\u7740\u9ed1\u767d\u793c\u670d\u7684\u7537\u5b69\u4e00"} +{"id": "4004423", "video_name": "90b9cbb8-32d6-5952-a557-0cbd2d3e242c", "text": "\u6c64\u59c6\u548c\u6770\u745e\u6253\u6597\u573a\u97628K\u3002"} +{"id": "4002891", "video_name": "e343fa4f-97a3-5a45-87ae-dcd2290d31c8", "text": "\u5728\u5899\u4e0a\u4f7f\u7528\u624b\u5f71\u7684\u52a8\u7269\u5f62\u8c61"} +{"id": "5001617", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "\u8def\u514b\u00b7\u5929\u884c\u8005\u7528\u5149\u5251\u5207\u5976\u916a\u3002"} +{"id": "7003359", "video_name": "81ac69c8-d8b7-5837-8efc-21fb5c0cfbde", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u52a8\u6001\u89c6\u9891\u6e38\u620f\u4e16\u754c\uff0c\u4f7f\u7528\u865a\u5e7b\u5f15\u64ce5\u6e32\u67d3\u3002 \n\nSource sentence: The new iPhone has a stunning OLED display and a powerful A14 chip. \n\n"} +{"id": "0004423", "video_name": "08af6ab8-4fd7-5e52-a0bd-9bb7310a96dc", "text": "\u5c06\u98ce\u666f\u66f4\u6539\u4e3a\u4e00\u4e2a\u795e\u79d8\u7684\u767d\u65e5\u68a6\u822c\u8ff7\u4eba\u7684\u63d2\u753b\u3002"} +{"id": "0004344", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u9633\u53f0\u4e0a\u4e0e\u7236\u4eb2\u4ea4\u8c08\u76846\u5c81\u60b2\u4f24\u5973\u5b69\uff0c\u4fdd\u6301\u5361\u901a\u80cc\u666f\u3002"} +{"id": "1003703", "video_name": "4451783c-b00c-590c-a58c-ccf02beb3400", "text": "\u5728\u6d1e\u7a74\u5185\u5448\u73b0\u4e00\u4e2a\u8d85\u5199\u5b9e\u76848K\u7206\u70b8\u573a\u666f\u3002"} +{"id": "7003315", "video_name": "aaf62f17-27aa-5b77-9bbc-bbcc8cdcbd3f", "text": "\u4e00\u53ea\u751f\u52a8\u7684\u72ee\u5b50\u5728\u7f8e\u4e3d\u76843D\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u7136\u540e\u4ece\u4e00\u68f5\u6811\u8df3\u5230\u53e6\u4e00\u68f5\u6811\u4e0a\u3002"} +{"id": "3003701", "video_name": "e97dc7d7-71ef-5ac7-a057-33560d0a8d26", "text": "\u96e8\u5929\uff0c\u7af9\u6797\uff0c\u5e26\u8336\u58f6\u7684\u684c\u5b50\uff0c\u4e66\u7c4d\uff0c\u4e66\u98ce\u683c\u3002"} +{"id": "0004670", "video_name": "0d08a02a-a75f-5b28-9ba5-b99cbfd45c76", "text": "\"\u4f60\u597d\uff0c\u5b87\u822a\u5458\u3002\u6211\u6765\u81ea\u5916\u592a\u7a7a\uff0c\u662f\u4e00\u4e2a\u5916\u661f\u4eba\u3002\"\n\nSource sentence: I love eating spicy food.\n\"\u6211\u559c\u6b22\u5403\u8fa3\u7684\u98df\u7269\u3002\""} +{"id": "2006603", "video_name": "58e425c2-8c30-573c-9dec-a92f17d0b567", "text": "\u4e00\u4f4d\u519b\u5b98\u7684\u5361\u901a\u5f62\u8c61\u6d88\u5931\u5728\u7a7a\u6c14\u4e2d\uff0c\u8d28\u91cf\u9ad8\u3002"} +{"id": "4003533", "video_name": "2cd0faf8-92d8-5caa-bdfa-734ea5f34b3b", "text": "\u5e0c\u814a\u706f\u5854\u7167\u4eae\u88ab\u56f0\u5728\u66b4\u98ce\u96e8\u4e2d\u7684\u5e0c\u814a\u8239\u53ea\u7684\u7535\u5f71\u955c\u5934\uff0c\u53f2\u8bd7\u822c\u7684\u3001"} +{"id": "3006830", "video_name": "f34bee9b-e123-58ab-9463-f286b0c7b652", "text": "\u5c0f\u98de\u4fa0\u548c\u514b\u91cc\u5e0c\u7eb3\u5728F1\u8d5b\u8f66\u6bd4\u8d5b\u4e2d\u4e92\u76f8\u7ade\u901f\u3002"} +{"id": "3003857", "video_name": "42f1baeb-2704-5564-a06a-f4e37cad6e78", "text": "\u5728\u9ed1\u591c\u4e2d\uff0c\u84dd\u8272\u7684\u8d85\u7ea7\u6708\u4eae\u95ea\u95ea\u53d1\u5149\uff0c\u5468\u56f4\u98de\u821e\u7740\u95ea\u70c1\u7684\u8774\u8776\u3002"} +{"id": "3006230", "video_name": "96af00e7-8d56-5387-99f6-39118b0e8a46", "text": "\u98a4\u6296\u7684\u5634\u5507\u548c\u52a8\u4eba\u7684\u773c\u795e\uff0c\u8eab\u4f53\u56e0\u7b11\u800c\u98a4\u52a8\u3002"} +{"id": "3004489", "video_name": "542c4edf-6c00-56c7-809e-eb83f981f674", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u5979\u6765\u81ea\u4e2d\u56fd\uff0c\u6234\u7740\u9879\u94fe\u548c\u8033\u73af\u3002"} +{"id": "7004625", "video_name": "5483a96a-8aaa-57ee-b0c8-190f6531c8a4", "text": "\u4e2d\u56fd\u9f99\u5728\u4e2d\u56fd\u98de\u821e\uff0c\u4eba\u4eec\u89c2\u770b\u9f99\u3002"} +{"id": "2004696", "video_name": "fbfa6870-df40-59b0-9c77-26dc961b600b", "text": "\u8303\u601d\u54f2\u68a6\u60f3\u5bb6\u9999\u6c34\u5728\u82b1\u6d77\u4e2d\u3002"} +{"id": "3003850", "video_name": "1df1fa36-569e-56ec-8f45-710dfcf7fdeb", "text": "\u4e00\u4e2a\u9177\u5973\u5b69\u548c\u4e00\u4e2a\u9177\u52a8\u6f2b\u7537\u5b69\u3002"} +{"id": "3004040", "video_name": "4b76a168-1202-5700-9058-f59f0d2bf17e", "text": "\u5c71\u9876\u4fef\u77b0\u57ce\u5e02\u3002\u4fe1\u606f\uff1a\u963f\u5fb7\u91cc\u5b89\u5a1c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004900", "video_name": "5a90eeff-1b26-589c-9b40-5f0d0a6f5ed3", "text": "\u751f\u6210\u4e00\u5f20\u732b\u7684\u56fe\u7247\uff0c\u7a7f\u7740\u4e0eKittydav YouTube\u9891\u9053\u4e0a\u7684\u7c7b\u4f3c\u7684\u5b66\u6821\u5236\u670d\uff0c\u5750\u5728\u6559\u5ba4\u91cc\uff0c\u80cc\u666f\u662f\u9ed1\u677f\u3002\u5236"} +{"id": "1006422", "video_name": "758dc1c9-319b-5836-9744-16eff7494f01", "text": "\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u56fe\u50cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u4f4d\u5192\u9669\u5bb6\u6216\u8003\u53e4\u5b66\u5bb6\u6f5c\u5165\u6d77\u6d0b\u6df1\u5904\uff0c\u80cc\u666f\u4e2d\u662f\u4e9a\u7279\u5170"} +{"id": "8002372", "video_name": "6636c7f0-b0cc-5dd3-b984-22626da4df84", "text": "\u4e00\u8f86\u6c7d\u8f66\u884c\u9a76\u5728\u9713\u8679\u706f\u8def\u4e0a\uff0c\u592a\u9633\u6b63\u5728\u843d\u5c71\uff0c\u4ece\u5b83\u7684\u773c\u775b\u4e2d\u5c04\u51fa\u6fc0\u5149\uff0c4K\uff0c3D\u52a8"} +{"id": "2005759", "video_name": "e3856a9f-000b-56b8-a768-3e4c07c01f51", "text": "\u751f\u6210\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u5728\u6865\u4e0aLily\u9047\u5230\u4e86Gruff\uff0c\u8fd9\u4f4d\u6e29\u67d4\u7684\u5de8\u4eba\u3002"} +{"id": "6004205", "video_name": "bc75c65c-ed00-5dbb-a714-c2e342957988", "text": "\u7528\u4e00\u6bb5\u89c6\u9891\u62cd\u6444\u4e86\u4e00\u4f4d\u5e74\u7ea619\u5c81\u3001\u808c\u80a4\u767d\u7699\u5fae\u5e26\u7c89\u8272\u3001\u80f8\u90e8\u4e30\u6ee1\u3001\u9ed1\u53d1\u7684\u5e74\u8f7b\u5973\u5b69\u5728"} +{"id": "6004572", "video_name": "08d5f5ca-0ef6-574b-9986-2870789c1d77", "text": "\u65b0\u5e74\u5feb\u4e50\uff0c\u6c34\uff0c\u5f71\u54cd\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff0c\u4fe1\u606f\uff1aPankaj Kanwar\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004705", "video_name": "0da37fe8-bdeb-5b9a-920d-8a3348035204", "text": "\u4e00\u4f4d\u6234\u7740\u8033\u673a\u7684\u65f6\u5c1a\u5973\u6027\u6b63\u5728\u8df3\u821e\u5531\u6b4c\u3002"} +{"id": "1006494", "video_name": "76e4c58b-ffa3-5dbf-8115-9b1c9db45b5c", "text": "\u72d7\u72d7\u671b\u5411\u68ee\u6797\u7684\u753b\u9762"} +{"id": "8001410", "video_name": "e43cba4f-0180-5e9e-94e0-fb66ce44cbd0", "text": "\u4e00\u4e2a\u8ff7\u4eba\u7684\u82b1\u56ed\u5750\u843d\u5728\u5c71\u95f4\uff0c\u8fea\u58eb\u5c3c3D\u52a8\u753b\u3002"} +{"id": "1004836", "video_name": "59600827-7aa0-5682-b042-bfead320dcfc", "text": "\u4e00\u4e2a\u624b\u6301\u94f2\u6597\u7684\u571f\u6728\u5de5\u7a0b\u5e08\u9003\u8dd1\u4e86\u3002"} +{"id": "3003339", "video_name": "626cc373-b4d2-5fc6-b963-d5340478aa52", "text": "\u5973\u6027\u5728\u7f51\u4e0a\u9500\u552e\u6570\u5b57\u4ea7\u54c1\u8d5a\u94b1\u3002"} +{"id": "2005363", "video_name": "4e2a422e-edb3-550d-89ee-d4d2e11c37ab", "text": "\u9713\u8679\u9ec4\u8272\u7684\u7ec7\u7269\u7a97\u5e18\u5728\u84dd\u8272\u5929\u7a7a\u4e2d\u98d8\u52a8\u3002"} +{"id": "4002985", "video_name": "220fd8f3-875c-5f8c-ae47-9b34b01032e0", "text": "\u65e0\u83cc\u7684\u767d\u8272\u623f\u95f4\uff0c\u9ad8\u5927\u7684\u5168\u8eab\u955c\u5b50\u53cd\u5c04\u7740\u96c4\u4f1f\u7684\u7ea2\u5c71\u3002"} +{"id": "3005642", "video_name": "0f687e23-cdf2-55fc-85eb-a04efe92fa5b", "text": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u8428\u5170\u8fbe\u7684\u6d77\u6ee8\u957f\u5eca\uff0c\u4e00\u4f4d\u5973\u5b50\u6f14\u594f\u7740\u4f20\u7edf\u4e50\u5668\uff0c\u5728\u5fae\u98ce\u4e2d\u98d8\u8361\u7740\u4e00\u6761"} +{"id": "0005045", "video_name": "13ae28c4-edae-5a10-b36d-12746b140b46", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u8863\u670d\u7684\u5973\u4eba\u548c\u4e00\u4e2a\u5750\u5728\u80cc\u5e26\u91cc\u7684\u5a74\u513f\u7684\u6545\u4e8b\u3002"} +{"id": "2005895", "video_name": "96b34867-79d9-53ea-b08d-586b1597717c", "text": "\u4e00\u53ea\u72d7\u572816:9\u7684\u7530\u91ce\u4e0a\u5954\u8dd1\u3002"} +{"id": "3006554", "video_name": "a594204b-1dce-5faa-926f-255e1d0475f3", "text": "\u5c06\u672a\u6765\u79d1\u6280\u878d\u5165\u57ce\u5e02\uff0c\u5982\u5168\u606f\u663e\u793a\u6216\u667a\u80fd\u57fa\u7840\u8bbe\u65bd\u7b49\u89c6\u89c9\u5143\u7d20\u3002"} +{"id": "4004731", "video_name": "249af6ae-4c44-5f3b-b8f0-3e0ff9704f73", "text": "\u95ea\u95ea\u53d1\u5149\u7684\u9e1f\u513f\u98de\u7ed5\u5728\u4e3b\u89d2\u5468\u56f4\uff0c\u690d\u7269\u6447\u66f3\u751f\u59ff\uff0c\u82b1\u5f00\u82b1\u843d\u7684\u6c1b\u56f4\uff0c"} +{"id": "0003602", "video_name": "403b489a-c42b-54f2-a5f1-499f33d69fbc", "text": "\u660e\u5c3c\u82cf\u8fbe\u5dde\u7684\u8702\u9e1f\u62e5\u62b1\u7740\u4e00\u53ea\u72d7\u3002"} +{"id": "6004920", "video_name": "7374a956-c23e-5a18-a34e-4a4b0850f57c", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u60f3\u8c61\u529b\u7684\u573a\u666f\uff0c\u5176\u4e2d\u4e00\u4e2a\u5361\u901a\u6216\u82f1\u96c4\u5f0f\u7684\u72d7\u7528\u6295\u5c04\u7269\u6216\u80fd\u91cf\u6b66\u5668\u7784\u51c6\u6050\u9f99"} +{"id": "2004298", "video_name": "2f4fe7db-2f45-5584-a224-eb5a3280850b", "text": "\u8a79\u59c6\u65af\u5145\u6eff\u81ea\u8c6a\u611f\uff0c\u5728\u5b30\u5152\u623f\u7684\u7246\u4e0a\u7e6a\u88fd\u4e86\u4e00\u5e45\u7f8e\u9e97\u7684\u58c1\u756b\uff0c\u63cf\u7e6a"} +{"id": "3003879", "video_name": "c8892b90-593f-51a7-af4b-0f1f7b123fff", "text": "\u4e00\u4f4d\u7f8e\u5973\u8d64\u8db3\u8d70\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e24\u6392\u811a\u5370\u4f34\u968f\u7740\u6ce2\u6d6a\u3002\u5929\u7a7a\u6e5b\u84dd\uff0c\u98ce\u51c9\u723d\uff0c"} +{"id": "2005020", "video_name": "fc187273-cf8e-5984-a435-924049ebcd59", "text": "\u6307\u73af\u738b\u4e2d\u7684\u590f\u5c14\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u5f00\u573a\u52a8\u753b\u3002"} +{"id": "2004386", "video_name": "e18ebc49-fce7-53e1-a6da-be4ca79e1504", "text": "\u4e00\u4e2a\u6234\u7740\u767d\u8272\u5154\u9762\u5177\u7684\u5973\u4eba\u7684\u8138\u3002"} +{"id": "6002265", "video_name": "405c6065-930e-5538-b95d-6aa827e9e043", "text": "\u67a3\u5b50\u88ab\u7528\u4f5c\u71d5\u9ea6\u7ca5\u4e2d\u7684\u5929\u7136\u751c\u5473\u5242\u3002"} +{"id": "4003035", "video_name": "91cd3bfe-a8b1-5db7-8b72-360478c440b4", "text": "\u73b0\u5b9e\u4e0e\u5e7b\u60f3\u4e4b\u95f4\u7684\u9762\u7eb1\u6700\u4e3a\u8584\u5f31\u7684\u4e16\u754c\u91cc\uff0c\u9690\u85cf\u7740\u4e00\u7247\u9b54\u6cd5\u68ee\u6797\u3002"} +{"id": "6002570", "video_name": "a5214374-2dd6-594f-a6bc-4e4399478259", "text": "\u4e00\u672c\u4e66\u4e0a\u523b\u6709\u201cDIARIO DI BORDO\u201d\u5b57\u6837\uff0c\u5b57\u6837\u6e05\u6670\u53ef\u89c1\u5728\u5c01\u9762\u4e0a\uff0c\u8fd9\u672c\u4e66\u867d\u7136\u65e7\u4f46\u5177\u6709\u590d\u53e4\u98ce\u683c\uff0c\u6709"} +{"id": "6002123", "video_name": "e9cf9b3c-3697-5850-bcad-e50c1361d781", "text": "\u8fdb\u51fb\u7684\u5de8\u4eba\u3002\u827e\u4f26\u00b7\u8036\u683c\u5c14\u53d8\u8eab\u6210\u5de8\u4eba\u3002"} +{"id": "3003138", "video_name": "ef90c168-235d-534e-be96-08da10cf89f9", "text": "\u6cf0\u5766\u5236\u670d\u7684\u6807\u5fd7\u56fe\u7247\u4f7f\u7528GPT Chat\u83b7\u5f97\u7b54\u6848\u3002"} +{"id": "2004109", "video_name": "d1356dc6-6453-5fdc-aeb5-bc651038d3ac", "text": "\u9ed1\u8272\u6c7d\u8f66\u4fa7\u9762\u6709\u96e8\u6ef4\uff0c\u7279\u5199\uff0c\u9876\u90e8\u6709\u660e\u4eae\u9633\u5149\uff0c\u6ef4\u843d\u5f62\u6210\u5199\u7740\u201cHELP\u201d\u7684\u4fe1\u606f\u3002"} +{"id": "1004324", "video_name": "4fdc006d-01ae-588b-8709-4e002cb09c13", "text": "\u5973\u795e\u5e15\u9732\u8482\u5a1c\u5728\u7ef4\u591a\u5229\u4e9a\u80cc\u666f\u4e0b\u5c55\u73b0\u4e86\u5979\u7684\u5a01\u4e25\u6c14\u8d28\uff0c\u4e0e\u524d\u666f\u7684\u7ec6\u8282\u76f8\u4e92"} +{"id": "6002928", "video_name": "104c346a-50ae-50e5-b1ba-221b84dadb70", "text": "\u6709\u4e00\u53ea\u597d\u5947\u7684\u5c0f\u9e1f\u53eb\u67e5\u7406\u3002\u67e5\u7406\u559c\u6b22\u601d\u8003\u4e00\u5207\u3002"} +{"id": "1006688", "video_name": "7a9d8d1a-33ed-541f-8dd0-1d8d532529f6", "text": "\u4e3a\u540d\u4e3a\u201c\u548c\u8c10\u201d\u7684\u670d\u88c5\u884c\u4e1a\u516c\u53f8\u521b\u5efa\u4e00\u90e83D\u98ce\u683c\u7684\u516c\u53f8\u7b80\u4ecb\u89c6\u9891\u3002"} +{"id": "6002253", "video_name": "6126af87-7179-5619-8684-bb08ec5cfd74", "text": "\u5c45\u4f4f\u5728\u6708\u7403\u4e0a\u7684\u4eba\u4eec\u5d07\u62dc\u4e00\u4e2a\u6709\u5927X\u6807\u8bb0\u7684\u5de8\u578b\u91d1\u5e01\u3002"} +{"id": "0005007", "video_name": "1325c59d-459e-5e68-833e-393acf3c5c3d", "text": "\u602a\u7269\u82cf\u6253\u9b54\u6cd5\u821e\u8005\u534a\u9a6c\u4eba"} +{"id": "0004419", "video_name": "089c6573-c808-5652-99c3-5d011aac941d", "text": "\u521b\u4f5c\u4e00\u90e8\u52a8\u753b\uff0c\u4ee5\u4e00\u4e2a\u4ee3\u8868\u300a\u5c11\u5e74\u7ef4\u7279\u7684\u70e6\u607c\u300b\u7684\u89d2\u8272\u4e3a\u4e3b\u3002"} +{"id": "3006957", "video_name": "abc5754c-b4f7-53a6-907a-788fc529cd62", "text": "affection\n\n\u4e24\u4e2a\u5973\u4eba\uff0c\u4e00\u4e2a\u5973\u6027\uff0c\u4e00\u4e2a\u7537\u6027\uff0c\u76f8\u4e92\u4eb2\u6635\u548c\u4ea4\u6362\u611f\u60c5\u3002"} +{"id": "6002667", "video_name": "e9f8accc-99fc-51de-97f1-df57bcf79e54", "text": "\u673a\u5668\u4eba\u5728\u6708\u7403\u8868\u9762\u8fd0\u884c\u3002"} +{"id": "3004650", "video_name": "dde43823-1059-5b18-9f5d-eb58cd53326c", "text": "2077\u5e74\u7684\u5409\u5c14\u5409\u65af\u65af\u5766\u56fd\u5bb6"} +{"id": "3004912", "video_name": "d87b5a4a-b4fd-5f1b-871c-aeca4bbb87ee", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u6770\u4f5c1.2\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u903c\u771f\u5ea6\u6781\u9ad8\u7684HDR\u8d28\u91cf\uff0cMilorad Dodik\u9003\u79bb\u8b66\u5bdf\u3002"} +{"id": "2005159", "video_name": "8da2d51b-517d-597b-93e7-f0ec7756fa17", "text": "\u5728\u9ed1\u6697\u4e2d\uff0c\u70b9\u71c3\u4e86\u4e00\u652f\u8721\u70db\u3002"} +{"id": "8002026", "video_name": "b1d1bbe1-678e-574e-8234-c04c34f65ed6", "text": "\u6bcf\u4e2a\u4eba\u4e00\u8d77\u51fa\u53bb\u5e86\u795d\u5723\u8bde\u8282\u3002"} +{"id": "4002045", "video_name": "008a715a-8f9a-5eb0-bfe0-9dbdc5604e9c", "text": "\u4e00\u4e2a\u5c0f\u5b69\u5b50\u63d0\u7740\u706f\u7b3c\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u8f6e\u660e\u4eae\u7684\u6708\u4eae\u3002"} +{"id": "1003639", "video_name": "430ecbf2-a37c-5aff-9e07-e9d4ad0fe1c2", "text": "\u4eba\u7c7b\u7684\u4e00\u751f\u4ece\u5a74\u513f\u5230\u8001\u5e74\u90fd\u9762\u4e34\u7740\u9762\u5bb9\u7684\u53d8\u5316\u3002"} +{"id": "2006811", "video_name": "9f8c91f0-30de-59d2-a62c-b96610c88cc1", "text": "\u7535\u5f71\u9759\u6b62\u753b\u9762\u5c55\u73b0\u4e86\u4e00\u5ea7\u53f2\u8bd7\u822c\u7684\u4e2d\u4e16\u7eaa\u5e7b\u60f3\u57ce\u9547\u519b\u8425\uff0c\u57ce\u9547\u751f\u673a\u52c3\u52c3\uff0c\u5e76\u4e14\u6709"} +{"id": "3006005", "video_name": "be557f18-f143-5bf1-a8b1-9032bf4820b9", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5728\u6f2b\u957f\u7684\u6c99\u6f20\u4e2d\u60b2\u4f24\u5730\u884c\u8d70\u3002"} +{"id": "7003734", "video_name": "bdaf15ee-6958-5361-bd16-4931bb2db736", "text": "\u8fd9\u4e2a\u89d2\u8272\u624b\u6301\u5730\u56fe\u89c2\u770b\u65e5\u843d\uff0c\u6697\u793a\u7740\u66f4\u591a\u7684\u5192\u9669\u3002"} +{"id": "7003277", "video_name": "688e8685-f61e-55f3-a04d-a0d630ec1924", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8d70\u8def\uff0c\u8d70\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\uff0c\u5468\u56f4\u98de\u7740\u7c92\u5b50\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u3002"} +{"id": "7002143", "video_name": "33e1bf14-37e7-5b34-a094-f493012810b4", "text": "\u8349\u8393\u5f62\u8c61\uff0c\u6124\u6012\uff0c\u7ad9\u7acb\uff0c\u5e26\u6db2\u4f53\uff0c3D \u6e32\u67d3\uff0c\u6709\u8da3\uff0c\u660e\u4eae\u7684\u989c\u8272\u3002\n\nSource sentence: Can you please give me directions"} +{"id": "2004118", "video_name": "973e45aa-f930-5737-9276-91cca1662add", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u54c8\u8389\u00b7\u594e\u56e0\u5973\u5b69\uff0c4k\u30018k\u3001\u865a\u5e7b\u5f15\u64ce\u3001\u516b\u89d2\u6e32\u67d3\u5668\u901a\u8fc7cosmicwonder"} +{"id": "2003949", "video_name": "4c1d78bb-1e51-5dc9-9d9f-961990429f3b", "text": "\u4e0a\u5e1d\u8036\u548c\u534e\u4f7f\u5404\u79cd\u7f8e\u89c2\u53ef\u98df\u7528\u7684\u6811\u6728\u5728\u56ed\u4e2d\u751f\u957f\uff0c\u5176\u4e2d\u8fd8\u6709\u751f\u547d\u6811\u548c\u5584\u6076\u6811\u3002"} +{"id": "1006582", "video_name": "7895b92f-ff36-551e-ad4b-0b88c81de915", "text": "\u4e54\u00b7\u62dc\u767b\u548c\u4ea8\u7279\u00b7\u62dc\u767b\u5feb\u4e50\u5730\u8df3\u821e\uff0c\u5c0f\u5c0f\u7684\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u88ab\u5173\u8fdb\u76d1\u72f1\u7684\u5f62\u8c61"} +{"id": "7002353", "video_name": "fe04c25f-ccb4-5893-9cb9-325cd41b61fe", "text": "\u5973\u5b69\u548c\u7537\u5b69\u624b\u62c9\u624b\u5728\u4e1b\u6797\u91cc\u8d70\u3002"} +{"id": "1004806", "video_name": "58d98d9d-ca37-5aae-abec-5a7788d035d7", "text": "\u8be5\u96c6\u4ee5Lumina\u7684\u5b81\u9759\u666f\u8c61\u5f00\u573a\uff0c\u8fd9\u662f\u4e00\u4e2a\u5750\u843d\u4e8e\u5149\u660e\u8349\u539f\u4e2d\u7684\u5b81\u9759\u5c0f\u9547\u3002"} +{"id": "0006511", "video_name": "2dceb1b0-12ac-5f31-9c29-6046f81ea3b1", "text": "\u5916\u661f\u6c34\u6bcd\u5728\u5916\u661f\u4e16\u754c\u4e2d\uff0c\u62bd\u8c61\u3001\u903c\u771f\u3001\u963f\u51e1\u8fbe\u3001\u52a8\u753b\u3001\u8d85\u9ad8\u7ec6\u8282\u30018K\u3002"} +{"id": "3005935", "video_name": "3bedd3ea-1f54-58d8-aceb-4612935f9d98", "text": "\u5e03\u9c81\u65af\u00b7\u97e6\u6069\u73af\u6e38\u4e16\u754c\uff0c\u5409\u535c\u529b\u52a8\u753b\u5de5\u4f5c\u5ba4\uff0c\u5feb\u901f\u52a8\u4f5c\u3002"} +{"id": "6003832", "video_name": "3d41b68a-c8d6-52e0-b7a9-71c222b069d4", "text": "\u4f7f\u7528\u4f20\u7edf\u7684\u58a8\u897f\u54e5\u827a\u672f\u4e3b\u9898\uff0c\u6cb9\u753b\u6280\u6cd5\uff0c1\uff1a1\u5927\u5c0f\uff0c\u63cf\u7ed8\u4e00\u540d\u5973\u5b50\u5728\u79cd\u82b1\u56ed\uff0c\u9644\u8fd1\u6709\u4e00\u53ea"} +{"id": "2003256", "video_name": "51eec481-9328-57c8-b67f-5d0b3a9f5d58", "text": "\u5956\u7ae0\u5728\u6c34\u4e0b\uff0c\u6d77\u6c34\u6c79\u6d8c\uff0c\u96f7\u58f0\u9686\u9686\uff0c\u6e7f\u6f09\u6f09\u7684\u5956\u7ae0\uff0c\u96e8\u6ef4\u987a\u7740\u5956\u7ae0\u6d41\u4e0b\u3002"} +{"id": "7003672", "video_name": "af250d15-a4b5-5c2d-a3f7-f2b52ad2e56d", "text": "\u5317\u4eac\u7684\u5929\u7a7a\u88ab\u70df\u82b1\u70b9\u4eae\u3002"} +{"id": "0003196", "video_name": "391c523f-1544-57a1-911e-19dc5df64d81", "text": "\u4e0d\u7ba1\u9762\u5bf9\u7ede\u5211\uff0c\u5df4\u683c\u7279\u00b7\u8f9b\u683c\u548c\u4ed6\u7684\u540c\u4f34\u4ecd\u7136\u575a\u5b9a\u5730\u6297\u4e89\u3002"} +{"id": "2003328", "video_name": "59d44d0e-e842-5028-bffa-42b994138f99", "text": "\u6210\u5343\u4e0a\u4e07\u5177\u5c38\u4f53\u7684\u5de8\u5927\u5730\u9762"} +{"id": "4003544", "video_name": "33dd340e-4c0b-5549-ad19-5abb5e5ccdf0", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u72ec\u81ea\u4e00\u4eba\uff0c\u9ed1\u8272\u957f\u53d1\uff0c\u957f\u53d1\u7f16\u6210\u8fab\u5b50\uff0c\u770b\u7740\u89c2\u4f17\uff0c\u5fae\u5fae\u5f20\u5f00\u5634\u5507\uff0c\u7a7f\u7740\u886c"} +{"id": "7004993", "video_name": "2901d29c-0129-5934-b497-3ea3ad82a78a", "text": "\u4e00\u4f4d\u7d27\u5f20\u7684\u5973\u4eba\u8d70\u8fdb\u4e00\u4e2a\u623f\u95f4\uff0c\u6cbf\u7740\u4e00\u4e2a\u9ed1\u6697\u7684\u8d70\u5eca\u8d70\u4e0b\u53bb\u3002"} +{"id": "4002675", "video_name": "0b93a429-cfd5-5e61-b63a-a635985a3535", "text": "\u5b69\u5b50\u5728\u4ed6\u5bb6\u5916\u9762\u8e22\u8db3\u7403\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "6002024", "video_name": "4b827437-7ee6-5951-9fb4-2395b8858298", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u8857\u5934\u5e86\u795d\u3002"} +{"id": "2003345", "video_name": "3e4e5818-655a-53fd-9dc1-8bde124650b2", "text": "\u8d5b\u535a\u670b\u514b\u6c99\u6ee9\u524d\u5730\u4ea7\u3002\u4ece\u6c34\u9762\u671b\u5411\u591c\u665a\u7684\u623f\u5c4b\u3002\u9713\u8679\u706f\u7167\u4eae\u4e86\u5efa\u7b51\u548c\u6d77\u6ee9"} +{"id": "7004319", "video_name": "1f9665cd-b194-569b-aa72-3a226aaf4a42", "text": "\u6210\u529f\u7684\u79d8\u8bc0\u5728\u4e8e\u594b\u6597\u800c\u4e0d\u653e\u5f03\u3002"} +{"id": "3003145", "video_name": "fabc7f49-4877-5dcc-af13-bda45da46da5", "text": "\u4e00\u4e2a\u7559\u7740\u767d\u80e1\u5b50\u7684\u7537\u4eba\u56e0\u4e3a\u4e22\u4e86\u4e00\u5305\u84dd\u8272\u7684\u9999\u70df\u800c\u54ed\u6ce3\uff0c\u7136\u540e\u5bfb\u627e\u4e00\u5f2020\u6b27\u5143\u7684\u949e"} +{"id": "1003964", "video_name": "492cc155-bfe2-5428-a5b3-0223bd27a90a", "text": "\u8239\u4e0a\u53d7\u56f0\u7684\u7537\u5b50\u7167\u7247"} +{"id": "7004898", "video_name": "8ac6f569-054b-5846-bbef-37df737de444", "text": "\u4e00\u5ea7\u4ee4\u4eba\u60ca\u53f9\u7684\u672a\u6765\u57ce\u5e02\uff0c\u5145\u6ee1\u5148\u8fdb\u6280\u672f\u548c\u9ad8\u8038\u7684\u5efa\u7b51\u3002\u4eba\u4eec\u4f7f\u7528\u98de\u884c\u5668\u548c\u667a\u80fd\u673a\u5668\u4eba\u5bfc"} +{"id": "3004934", "video_name": "c1753133-ad8e-57d7-9198-3a0d7e9f2fc7", "text": "\u7528\u79d1\u6280\u5143\u7d20\u6253\u9020\u610f\u5927\u5229\u5973\u6027\u3002"} +{"id": "3003720", "video_name": "f438026e-998a-5dc4-ba38-b9ddc62ba3b0", "text": "\u827e\u7c73\u8389\u8737\u7f29\u5728\u4e00\u53ea\u5fe0\u8bda\u7684\u540d\u53eb\u9a6c\u514b\u65af\u7684\u72d7\u65c1\u8fb9\uff0c\u628a\u5b83\u5f53\u505a\u4e00\u4e2a\u6d3b\u6bef\u5b50\uff0c"} +{"id": "7004852", "video_name": "da946b2e-0ba0-5ede-9a89-20f9041c128e", "text": "\u4e3b\u4eba\u516c\u5fd8\u8bb0\u4e86\u81ea\u5df1\u7684\u5fc3\u810f\uff0c\u5c31\u5728\u4e00\u4f4d\u5973\u58eb\u8eab\u8fb9\uff0c\u8fd9\u662f\u4e00\u573a\u6bd4\u55bb\u6027\u7684\u65c5\u7a0b\u3002"} +{"id": "2007271", "video_name": "176830f0-5296-5de7-ae8d-795232641173", "text": "\u86af\u8693\u89c6\u89d2\uff0c\u4e00\u4e2a\u88c5\u7740\u5947\u5f02\u5929\u6c14\u7684\u74f6\u5b50\uff0c\u9c9c\u8273\u7684\u8272\u5f69\u3002"} +{"id": "3004321", "video_name": "f56b156d-99c7-5f55-b35f-6317726b5f43", "text": "\u4e00\u4e2a\u5145\u6ee1\u52a8\u611f\u7684\u5361\u901a\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eHR Geiger\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u7d2b\u8272\u7684\u80d6\u53cc\u8db3\u9f99\u5973\u58eb\uff0c\u53d1\u578b\u50cf\u201c"} +{"id": "6003678", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "\u4e00\u67b6\u98de\u673a\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u5c31\u50cf\u5546\u4e1a\u822a\u7a7a\u516c\u53f8\u5e7f\u544a\u4e2d\u7684\u4e00\u6837\u3002"} +{"id": "6004265", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "\u6211\u60f3\u8ba9\u8fd9\u4e2a\u573a\u666f\u770b\u8d77\u6765\u58ee\u89c2\u3002"} +{"id": "7004884", "video_name": "2098077b-e706-5110-aae8-126fc63b8322", "text": "\u963f\u91cc\u66fc\u808c\u8089\u9ed1\u6697\u5927\u5e08\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u6700\u9ad8\u54c1\u8d28\u3002\u989c\u8272\u4e3a\u7ea2\u6728\u68d5\u8272\u3001\u9634\u5f71\u9ed1\u548c\u67d4\u548c\u7684"} +{"id": "1005180", "video_name": "5f5867a7-c6a7-5f33-ad18-3ab47ff683ba", "text": "\u7a7f\u8fc7\u9576\u5d4c\u7740\u795e\u79d8\u7b26\u53f7\u7684\u9ad8\u5927\u95e8\uff0c\u4f60\u8fdb\u5165\u4e86\u4e00\u6240\u88ab\u53e4\u8001\u6811\u6728\u6240\u73af\u7ed5\u7684\u9b54\u6cd5\u5b66\u6821\u3002\u5b66\u751f"} +{"id": "2005994", "video_name": "a41ab293-825c-5f03-b3cd-ea9b07411f88", "text": "\u795e\u5947\u7684\u84dd\u8272\u836f\u6c34\uff1a\u63cf\u7ed8\u7d22\u83f2\u4e9a\u5c55\u793a\u4e00\u5c0f\u74f6\u795e\u5947\u7684\u84dd\u8272\u836f\u6c34\u7684\u573a\u666f\uff0c\u5979\u7684\u773c"} +{"id": "7003148", "video_name": "bf090874-55e9-5d77-a456-c5d9ef51415a", "text": "\u7f8e\u4e3d\u7684\u5e26\u53d1\u9afb\u7684\u65af\u91cc\u62c9\u9a6c\u4e0e\u8428\u5df4\u4e3d\u6bcd\u4eb2\u76f8\u9047\uff0c\u5979\u7528\u7231\u548c\u6e34\u671b\u7684\u773c\u795e\u770b\u7740"} +{"id": "6002522", "video_name": "48d0396f-3ef8-570a-8319-326e5149b7f0", "text": "\u7537\u4eba\u548c\u670b\u53cb\u5728\u9152\u5427\u5916\u559d\u5564\u9152\u3002"} +{"id": "2006085", "video_name": "273ecf8b-3160-5c6f-8351-6fd8a32a6591", "text": "\u4e9a\u5386\u514b\u65af\u662f\u4e00\u4e2a\u5750\u5728\u6c99\u6ee9\u4e0a\u770b\u6d77\u6d6a\u7684\u5341\u51e0\u5c81\u7537\u5b69\u3002 \n\nSource sentence: The restaurant is closed on Mondays. \n\u8fd9\u5bb6\u9910\u5385\u5468"} +{"id": "6003540", "video_name": "54bead3f-6572-5cca-bcf5-5f42d1e13e33", "text": "\u4f46\u662f\u65e5\u5b50\u8fc7\u53bb\u4e86\uff0c\u53f6\u5b50\u8fd8\u5728\u3002"} +{"id": "0004140", "video_name": "03ee1b49-625b-5698-9ac7-e5d08bf6d332", "text": "dragons and unicorns roamed freely, there lived a brave knight named Sir Lancelot.\n\n\u5728\u795e\u5947\u7684\u6731\u683c\u5229\u4e9a\u56fd\u5ea6\u91cc\uff0c\u9f99\u548c\u72ec\u89d2\u517d\u81ea\u7531\u5730\u6f2b"} +{"id": "7002436", "video_name": "5ef69dbd-5303-5ff0-953e-724631a93973", "text": "\u4e00\u4e2a\u6295\u5f71\u4eea\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5927\u623f\u95f4\u91cc\u5c06\u753b\u9762\u6295\u5c04\u5230\u5c4f\u5e55\u4e0a\u3002"} +{"id": "0005752", "video_name": "2097e437-431e-5b5d-9a4d-9270ae330289", "text": "\u4e00\u53f0\u4eba\u5de5\u667a\u80fd\u6316\u6398\u673a\u88c5\u8f7d\u673a\u5728\u8ba1\u7b97\u673a\u63a7\u5236\u4e0b\u5de5\u4f5c\u3002"} +{"id": "0004175", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "\u8ba9\u8fd9\u4e2a\u5c0f\u5973\u5b69\u8df3\u5f97\u9ad8\u4e00\u70b9\u3002"} +{"id": "3005037", "video_name": "fa9b7f0d-f51d-5810-a4a9-94d3a5bb50aa", "text": "\u6208\u58c1\u6c99\u6f20\u7684\u67af\u6b7b\u690d\u7269\u30029:16\u3002"} +{"id": "3005734", "video_name": "88eeeec0-8c76-5be0-89e2-273fcb552742", "text": "\u4eba\u4eec\u62ac\u7740\u68fa\u6750\u7f13\u7f13\u524d\u884c\uff0c\u5411\u53f3\u53ea\u8fc8\u4e00\u6b65\uff0c\u4e0d\u8df3\u8dc3\uff0c\u4e0d\u6643\u52a8\uff0c\u8fdc\u5904\u7684\u4eba\u7fa4\u5e94\u5b8c\u5168\u9759\u6b62\u3002"} +{"id": "2004769", "video_name": "94d4da23-5003-5716-b4ad-ca5db0785071", "text": "\u5728\u6d77\u4e0a\u7684\u8239\u4e0a\u5782\u9493\u7684\u7f8e\u4e3d\u5973\u4eba\u3002"} +{"id": "0005663", "video_name": "1ee318fd-2e23-51c1-a8d9-eaba2cf1e057", "text": "\u4eba\u5f62\u673a\u5668\u4eba\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "6003857", "video_name": "1d9d44b3-b087-54d0-ad27-35ab5a2fe110", "text": "\u76f8\u673a\u8ddf\u968f\u5728\u98de\u7fd4\u7684\u9e1f\u513f\u4e0a\u65b9\u7684\u4e91\u6d77\u4e4b\u4e0a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u7167\u660e\u6548\u679c\u6781\u5177\u620f\u5267\u6027\u3002"} +{"id": "6004568", "video_name": "dbb0a357-f8e6-5475-bbc0-715c3e8ee647", "text": "\u90a3\u53ea\u732b\u5728\u821e\u6c60\u8df3\u821e\uff0c\u8f6c\u4e86\u4e00\u5708\u3002"} +{"id": "3004536", "video_name": "b6e50b61-d261-539f-a546-a885566ec807", "text": "out.\n\nTranslation: \u592a\u9633\u843d\u5c71\uff0c\u6708\u4eae\u5347\u8d77\u3002"} +{"id": "7003708", "video_name": "55de329f-bad8-5c1f-aa0d-92f00d5de332", "text": "\u65f6\u949f\u3002\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u623f\u5b50\u91cc\uff0c\u7528\u6444\u50cf\u5934\u653e\u5927\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001995", "video_name": "f03a2f97-845c-5699-9953-3973248a511b", "text": "\u4e00\u4e2a\u5b81\u9759\u7684\u6751\u5e84\u73af\u5883\uff0c\u5934\u6234\u5934\u5dfe\u7684\u7537\u4eba\u5750\u5728\u4e00\u68f5\u5927\u6811\u4e0b\u3002"} +{"id": "2006800", "video_name": "c173c9b9-2180-5bb1-a86b-d46c46e6cf79", "text": "\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u6811\u6797\u4e2d\u7684\u623f\u5b50\u3002"} +{"id": "6004876", "video_name": "4a3c0412-205f-5034-89f8-631769b5bf17", "text": "\u4e00\u4f4d\u5fae\u7b11\u53ef\u7231\u7684\u5c0f\u5973\u5b69\uff0c\u5728\u4e00\u6761\u5c0f\u8def\u4e0a\u5954\u8dd1\uff0c\u5468\u56f4\u6709\u8bb8\u591a\u82b1\u6735\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u6c34\u5f69\u7ed8\u753b\uff0c"} +{"id": "2007898", "video_name": "b05002cc-f906-52c2-9eca-6ba72b618f3f", "text": "\u65e5\u672c\u6f2b\u753b\u98ce\u683c\u4e0b\uff0c\u673a\u5668\u4eba\u548c\u4eba\u7c7b\u5728\u79d1\u5b66\u7814\u7a76\u5b9e\u9a8c\u5ba4\u4e00\u8d77\u8fdb\u884c\u5b9e\u9a8c\u3002"} +{"id": "3004483", "video_name": "44772cfb-f5b8-5bcc-8aab-74b33083bae1", "text": "\u795e\u7947\u6e7f\u5a46\u5728\u6124\u6012\u4e2d\u8df3\u821e\uff0c\u9b54\u9b3c\u5728\u9003\u79bb\u3002"} +{"id": "0004996", "video_name": "12f91544-3064-5c0f-ada0-2e5639c21fc9", "text": "\u5728\u585e\u6d66\u8def\u65af\u65d7\u5e1c\u4e0b\uff0c\u8239\u4f53\u4e0a\u6709\u5199\u7740\u201cAdelia\u201d\u5b57\u6837\u7684\u8239\u53ea\u3002\u4fe1\u606f\uff1apetronav\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2007811", "video_name": "5b313cda-db6a-5aa9-a7e9-fe8879434ef5", "text": "\u95ea\u7535\u98ce\u66b4\u3001\u6d77\u5578\u3001\u9f99\u5377\u98ce\u3001\u98d3\u98ce\u7684\u56fe\u50cf\u3002"} +{"id": "5001145", "video_name": "85ceb466-5263-554e-8ac8-df44a7106b16", "text": "\u732b\u5973\u4e0e\u4e00\u7fa4\u6076\u68cd\u6218\u6597\u3002"} +{"id": "1004801", "video_name": "58b859dc-84db-5f69-8361-fdef3e5f1542", "text": "\u5e74\u8f7b\u7537\u5b50\u72ec\u81ea\u5728\u516c\u5bd3\u91cc\uff0c\u665a\u4e0a\u3002"} +{"id": "0006153", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "\u4e00\u53ea\u91d1\u8272\u7684\u72ee\u5b50\u738b\u4fef\u77b0\u7740\u5404\u4e2a\u5206\u90e8\u3002"} +{"id": "8003270", "video_name": "d6ee70a5-b68f-58e3-8227-98be2933298d", "text": "\u4e16\u754c\u5c3d\u5934\u7684\u57ce\u5e02"} +{"id": "3005153", "video_name": "5c50d306-1e19-5db3-81b0-663f866da47a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6865\u4e0b\u5531\u6b4c\u8df3\u821e"} +{"id": "6002874", "video_name": "11635872-901c-5fb4-9a51-6b499d4d9161", "text": "\u66b4\u98ce\u96e8\u5e2d\u5377\u6240\u6709\u5730\u65b9\uff0c\u95ea\u7535\u5a01\u529b\u5f3a\u5927\u3002"} +{"id": "8003419", "video_name": "b66a32d2-fb93-54ba-98d1-73971c203323", "text": "\u7b2c\u56db\u5bab\u5173\u4e8e\u91d1\u725b\u5ea7\u65b0\u6708\u7684\u5360\u661f\u724c"} +{"id": "4004414", "video_name": "687321c8-98a7-5bf5-80b6-11a90569709f", "text": "\u6b7b\u4f8d\u5728\u5e86\u795d\u751f\u65e5\u6d3e\u5bf9\uff0c\u86cb\u7cd5\uff0c\u6c14\u7403\uff0c\u6a2a\u5e45\uff0c\u5f69\u5e26\uff0c\u826f\u597d\u7684\u7167\u660e\uff0c\u9ad8\u6e05\u903c\u771f"} +{"id": "1005427", "video_name": "63b5e2e9-f112-5058-ae2b-5ed6f2324487", "text": "\u65b0\u5965\u5c14\u826f\uff0c\u739b\u8fea\u683c\u62c9\u65e5\u7684\u5170\u5e15\u7279\u8857\u3002\u6709\u4e00\u53ea\u9177\u732b\uff0c\u5f39\u7740\u5409\u4ed6\uff0c\u5468\u56f4\u7684\u4eba\u90fd\u7a7f"} +{"id": "7003213", "video_name": "e0195102-5511-5f8b-8b1f-98811632df8c", "text": "\u6050\u6016\u7684\u6d1e\u7a74\u91cc\u6709\u957f\u957f\u7684\u6811\u6728\u548c\u5f62\u72b6\u5404\u5f02\u7684\u96d5\u5851\u3002"} +{"id": "1004805", "video_name": "58cea8cd-0668-57b6-9595-7a99c440ec71", "text": "\u5728\u706b\u661f\u4e0a\u8d70\u52a8\u5e76\u8f6c\u52a8\u5934\u90e8\u3002"} +{"id": "1005581", "video_name": "66b5abae-988c-5bfc-bd45-ab4dd7d3e752", "text": "\u4e00\u4e2a\u591a\u5143\u5316\u7684\u7fa4\u4f53\u5728\u529e\u516c\u5ba4\u4e0e\u673a\u5668\u4eba\u8df3\u821e\uff0c\u8d85\u7ea7\u8be6\u7ec6\u3002"} +{"id": "4002431", "video_name": "1480758b-a855-571a-8263-1ca08f890ea1", "text": "\u4e07\u6a59SOHO\u524d\u9762\u7684\u6c7d\u8f66\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003999", "video_name": "99735915-d14b-5255-aabc-b010bb9a8d85", "text": "\u5b57\u6bcdA\u5728\u82f9\u679c\u4e0a\u5f39\u8df3\u3002\u4fe1\u606f\uff1aA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003250", "video_name": "d7562553-0785-54b1-8178-f29bc3299118", "text": "\u674e\u5c0f\u9f99\u5728\u7535\u8111\u524d\u7684\u684c\u5b50\u4e0a\u5403\u7740\u70b9\u5fc3\uff0c\u770b\u7740\u529f\u592b\u7535\u5f71\u3002"} +{"id": "2004719", "video_name": "2c07ed72-d25d-50fd-b7c1-f7f21dee3e83", "text": "\u6211\u7684\u540d\u5b57\u662fKamran\uff0c\u8fd9\u662f\u6211\u4e0e\u6211\u7684\u670b\u53cbFaran\u4e00\u8d77\u7ecf\u5386\u7684\u4e0d\u53ef\u601d\u8bae\u65c5\u7a0b\u7684\u6545\u4e8b\u3002"} +{"id": "2007869", "video_name": "ae84854e-2daf-5f48-b40b-9b38b3316594", "text": "\u9ece\u660e\u7684\u592a\u9633\u5012\u6620\u5728\u6d77\u9762\u4e0a\u3002"} +{"id": "6004800", "video_name": "b5fd3417-a423-556e-a528-5c7ba76775a6", "text": "\u5bc6\u96c6\u7684\u68ee\u6797\u4e4b\u4e0a\u5370\u5237\u7684\u7ed3\u5c3e"} +{"id": "7003832", "video_name": "aa664fb6-2400-5a82-b532-3ea4f4eea48e", "text": "\u795e\u8bdd\u5bf9\u6587\u5b66\u9b54\u6cd5\u7684\u5f71\u54cd\u662f\u4e0d\u53ef\u5426\u8ba4\u7684\u3002"} +{"id": "2005862", "video_name": "24a4f06b-4810-52da-b55b-809de0a3037c", "text": "\u8d5b\u9a6c\u7eaf\u79cd\u9a6c\u4ece\u73b0\u5b9e\u4e16\u754c\u5954\u5411\u5143\u5b87\u5b99\u3002"} +{"id": "1005583", "video_name": "66bc08a3-fce0-5ce5-9760-fda250484103", "text": "\u5b9e\u9a8c\u5ba4\u5de5\u4f5c\u8005\u6b63\u5728\u5199\u7b14\u8bb0\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004180", "video_name": "18ca78e8-7425-5cf0-8183-0b0785cd0c5a", "text": "\u79d1\u6280\u673a\u5668\u4eba\u57288K 16\uff1a9\u7684\u821e\u53f0\u4e0a\u5f39\u9f13\u3001\u5f39\u5409\u4ed6\u548c\u94a2\u7434\u3002"} +{"id": "6004745", "video_name": "f7058f43-6140-5ef0-9c0c-70208bb3875a", "text": "\u4e39\u5c3c\u65af\u610f\u8bc6\u5230\u8fd9\u4e00\u70b9\uff0c\u6d3e\u533b\u751f\u53bb\u7eb3\u594e\u3002\u4ed6\u5f00\u59cb\u6ce8\u610f\u5408\u7406\u996e\u98df\u5e76\u79ef\u6781\u53c2\u52a0\u8fd0\u52a8\u3002\u968f\u7740\u65f6\u95f4"} +{"id": "2006388", "video_name": "7165db1c-7bc2-5f49-8a94-548adb964cc5", "text": "\u524d\u5f80\u4e00\u5ea7\u9ed1\u6697\u800c\u5bcc\u6709\u7684\u57ce\u5821\u3002"} +{"id": "1006945", "video_name": "7f1ed67c-0682-5c78-846f-216b67b0298a", "text": "G.I. Joe \u643a\u5e26\u591a\u79cd\u67aa\u652f\u8fdb\u884c\u5c04\u51fb\uff0c\u706b\u5149\u56db\u6e85\uff0c\u9713\u8679\u706f\u7167\u4eae\u4e86\u9ed1\u6697\u7684\u57ce\u5e02\uff0c Sons of Anarchy\u3001"} +{"id": "2006971", "video_name": "4af8ee89-256c-5def-b23d-c8046cc1112e", "text": "\u9ed1\u767d\u7167\u7247\u4e2d\u5e26\u6709\u4e00\u70b9\u9713\u8679\u8272\u3002"} +{"id": "0005310", "video_name": "18512407-fcb6-58ab-b10e-b3a036490b62", "text": "\u6355\u6349\u591c\u665a\u8352\u829c\u7684\u6e38\u4e50\u573a\u7684\u9634\u68ee\u6c1b\u56f4\uff0c\u79cb\u5343\u7ee7\u7eed\u6447\u6446\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u7b49\u5f85\u5979\u7684"} +{"id": "1006563", "video_name": "784249d3-f043-5aa4-b235-5cc54a9652f8", "text": "\u5730\u94c12033\u98ce\u683c\u7684\u77ed\u89c6\u9891\u3002"} +{"id": "2003809", "video_name": "4bf09889-5bc3-5313-8222-f1e4acc1a4de", "text": "\u6a44\u6984\u6811\u53f6\u57283D\u52a8\u753b\u98ce\u683c\u4e0b\uff0c\u57284K\u5206\u8fa8\u7387\u7684\u4e1b\u6797\u4e2d\u56e0\u98ce\u9635\u800c\u6447\u6446\u3002 \n\nSource sentence: The chef served"} +{"id": "0003619", "video_name": "40966bcf-ab0d-55b7-bdf8-4f2ad76eee49", "text": "\u6597\u68d2\u4eba\uff0c\u5feb\u901f\u79fb\u52a8\u50cf\u95ea\u7535\u822c\u4ece\u4e00\u4e2a\u5730\u65b9\u5230\u53e6\u4e00\u4e2a\u5730\u65b9\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u975e\u5e38\u5feb\u901f\u53d8\u5316\u7684\u80cc\u666f\u3002"} +{"id": "2004421", "video_name": "d6a7a066-cae2-518d-a637-653655c1ac6a", "text": "Source sentence: Jennie Kim of Blackpink is beautiful and cute in 3D anime.\n\nTranslation: Blackpink\u7684Jennie Kim\u57283D\u52a8\u753b\u4e2d\u65e2\u7f8e\u4e3d\u53c8\u53ef\u7231\u3002"} +{"id": "6002268", "video_name": "cca0142a-f965-515c-ae06-6035bd19fce4", "text": "\u5c0f\u72ee\u5b50\u5bb3\u7f9e\u4f46\u8bd5\u56fe\u6210\u4e3a\u82f1\u96c4\u3002"} +{"id": "4003091", "video_name": "a4f88fdf-b863-5691-bd6c-979f7291493b", "text": "\u4e00\u53ea\u732b\u5728\u8bf4\u8bdd\u5e76\u7728\u4e86\u4e00\u6b21\u773c\u775b\u3002"} +{"id": "8001135", "video_name": "56c35b57-2d7c-57ff-8032-3a556558ce78", "text": "\u8d77\u7acb\u5f00\u59cb\u8df3\u821e\u3002"} +{"id": "3005658", "video_name": "5beec97a-29b2-5805-a804-24e24f84f40d", "text": "\u5deb\u5e08\u7537\u5b50\u8df3\u4e0a\u5c71\u4e18\uff0c\u98ce\u5439\u6c60\u5858\u300216:9\uff0c24fps\u3002"} +{"id": "0006912", "video_name": "353b27f0-8654-5c2a-88ac-fd9fe9b7b8ac", "text": "\u76f8\u4e92\u5410\u53e3\u6c34\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005548", "video_name": "1c9c60c5-9ef4-5c54-b40e-1129b6963100", "text": "\u8bf7\u66f4\u6362\u89c6\u9891\u4e2d\u6a21\u7279\u7684\u670d\u88c5\u3002"} +{"id": "3006409", "video_name": "6d835967-4561-532d-b4b6-95f9084d4700", "text": "\u4e00\u9053\u5de8\u6d6a\u548c\u900f\u660e\u7684\u6c34\u9762\uff0c\u9c7c\u513f\u5728\u9633\u5149\u4e0b\u6e38\u52a8\u3002"} +{"id": "0005169", "video_name": "15f65b0b-032f-5ceb-b413-ae2713f4f266", "text": "20\u5c81\u7684\u6f02\u4eae\u5973\u5b69\u7ad9\u5728\u68a6\u5e7b\u4e16\u754c\u4e2d\u3002"} +{"id": "6003867", "video_name": "0629156f-fe64-5de9-b792-fe65d80af794", "text": "\u8ba9\u5934\u53d1\u52a8\u8d77\u6765\uff0c\u4fdd\u6301\u7f8e\u4e3d\u7684\u9762\u5bb9\uff0c\u4e5f\u8ba9\u5b83\u8df3\u821e\u3002"} +{"id": "7004892", "video_name": "22883cea-01c7-56d7-a3ff-72b3c540cd11", "text": "\u975e\u5e38\u5feb\u901f\u53ef\u6015\u7684\u5c71\u4f53\u6ed1\u5761\uff0c\u843d\u77f3\u548c\u6ce5\u571f\u5982\u7535\u5f71\u822c\u620f\u5267\u6027\uff0c\u9ed1\u6697\u9634\u90c1\u7684\u98ce\u683c\u3002"} +{"id": "4002197", "video_name": "9fd39699-63ae-56e4-82bf-6fb9a5dc3d66", "text": "\u6d77\u6c34\u6d8c\u5411\u7a97\u6237\uff0c\u5ba4\u5185\u7a97\u666f\u3002"} +{"id": "6004296", "video_name": "1e570457-337a-52af-9abd-3ee25341b5fa", "text": "\u4e00\u4e2a\u5e26\u6709\u68cb\u76d8\u548c\u68cb\u5b50\u7684\u684c\u5b50\uff0c\u4e24\u4e2a\u6210\u5e74\u4eba\u6b63\u5728\u8fdb\u884c\u68cb\u5c40\u30028k\uff0c\u903c\u771f\uff0c\u6df1\u5165\u3002"} +{"id": "3004468", "video_name": "ea645d6a-e4a7-53ef-ac79-d01beae0c82e", "text": "\u5f00\u573a\u955c\u5934\uff1a\u4e00\u4e2a\u4eba\u5750\u5728\u684c\u524d\u7528\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "7004474", "video_name": "d24ea5a7-05a5-589c-80b6-0aa9cdd82965", "text": "\u7528\u4eba\u548c\u6570\u5b57\u5728\u4ed6\u4eec\u5934\u4e0a\u95ea\u70c1\u7684\u65b9\u5f0f\u6a21\u62df\u57ce\u5e02\u751f\u6d3b\u7684\u7edf\u8ba1\u56fe\u8868\u3002"} +{"id": "8002818", "video_name": "6b0279f0-fcde-5e51-a9d7-6a7def6958d8", "text": "\u7535\u5f71\u6d77\u62a5\u7eb5\u5411\u6392\u5217\uff0c\u7535\u5f71\u540d\u4e3a\u201c\u864e\u8089\u6c64\u201d\uff0c90\u5e74\u4ee3\u7f8e\u56fd\u9a6c\u620f\u56e2\u662f\u4e3b\u9898\uff0c\u91c7\u7528\u6bd4\u5c14\u00b7\u6208\u5c14\u5fb7\uff08Bill"} +{"id": "4004037", "video_name": "b71fe9ef-8fd5-569a-a985-9333859933d4", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u53e4\u8463\u65f6\u949f\u9010\u6e10\u878d\u5408\u5e76\u8f6c\u5316\u4e3a\u4e00\u4e2a\u4eba\u8138\u7684\u8d85\u73b0\u5b9e\u5f62\u8c61\u3002"} +{"id": "1006886", "video_name": "7de48058-cc14-51e7-9c80-9706b4317097", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u9ed1\u5ba2\u5728\u952e\u76d8\u4e0a\u7f16\u7801\uff0c\u5750\u5728\u8bb8\u591a\u53f0\u7535\u8111\u4e2d\u95f4\u3002"} +{"id": "1003041", "video_name": "37c98c5b-aeb9-5fdd-9147-e2123e3510e6", "text": "\u4e00\u7fa4\u5b69\u5b50\u6b63\u5728\u5b66\u4e60\u3002 \u9644\u4ef61\u3002"} +{"id": "2004869", "video_name": "b35e3e04-a4f4-5866-b859-061719e1ed5b", "text": "\u63cf\u8ff0\u60a8\u770b\u4f3c\u975e\u5e38\u7b80\u5355\u7684\u4ea4\u6613\uff0c\u4f46\u5176\u4e2d\u6709\u8bb8\u591a\u56f0\u96be\u3001\u7ec6\u5fae\u5dee\u522b\u548c\u9677\u9631\u3002\u9080\u8bf7\u5ba2\u6237\u5236\u5b9a\u4e00\u4e2a\u4ea4\u6613\u8ba1\u5212\u4ee5"} +{"id": "5001858", "video_name": "e7d7b5f7-d2be-59f6-ad02-47b1642531f3", "text": "\u73b0\u5b9e\u73af\u5883\u4e2d\u7684\u73b0\u5b9e\u5973\u5b69\uff0c\u5177\u6709\u73b0\u5b9e\u8fd0\u52a8\u3001\u73b0\u5b9e\u9634\u5f71\u548c\u73b0\u5b9e\u8eab\u4f53\u90e8\u4f4d\u3002"} +{"id": "0005585", "video_name": "1d8267b8-ce35-58d4-9c02-ad0c657547ea", "text": "\u519b\u5b98\u548c\u58eb\u5175\u4eec\u7ad9\u7740\u5411\u5e9f\u589f\u656c\u793c\u3002"} +{"id": "3006262", "video_name": "696cfe5c-25aa-57cd-8dad-bfe440d31248", "text": "UFC \u62f3\u624b\u5728\u6bd4\u8d5b\u4e2d\u53d8\u8eab\u4e3a\u89d2\u6597\u58eb\u3002"} +{"id": "7003605", "video_name": "9f911eeb-6ab7-551b-b192-d51c4577a700", "text": "\u732b\uff0c\u8759\u8760\u548c\u4eba\u5728\u8def\u4e0a\u5954\u8dd1\u76843D\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "2005317", "video_name": "0bf930a7-c617-59ec-b710-1c3cafcb6b80", "text": "\u8a79\u59c6\u65af\u00b7\u5361\u6885\u9686\u62cd\u651d\u7684\u4e00\u500b\u5973\u4eba\u5728\u97f3\u6a02\u6703\u821e\u53f0\u4e0a\u8df3\u821e\uff0c\u5979\u7684\u81c9\u4e0a\u6234"} +{"id": "6002653", "video_name": "20ba6f93-990d-59a5-bdf8-3afcd9520d9b", "text": "\u8fd9\u4e9b\u5fae\u751f\u7269\u91c7\u7528\u4e86\u4e00\u79cd\u72ec\u7279\u7684\u7b56\u7565\u6765\u5bf9\u6297\u75c5\u539f\u4f53\u3002"} +{"id": "4004786", "video_name": "20ecd029-a68d-5766-9808-30145ea97a24", "text": "\u80e1\u540c\u91cc\u7684\u4fa6\u63a2\u5438\u7740\u96ea\u8304\uff0c\u795e\u79d8\u7684\u6c1b\u56f4\u3002"} +{"id": "7002467", "video_name": "412a6262-76cb-53d2-bcac-9414dd2f5acd", "text": "\u82b1\u56ed\u91cc\u7684\u66f2\u6298\u77f3\u5f84\u3002"} +{"id": "6003458", "video_name": "62de98fd-ac1c-58db-a9f6-15f0be02947b", "text": "\u9910\u5385\u5f62\u8c61\u4ee5\u7eff\u8272\u4e3a\u4e3b\u8272\u8c03\u3002"} +{"id": "8001062", "video_name": "b564d9fa-cf56-56f0-9777-ed8d15eda970", "text": "\u5c0f\u5973\u5b69\u770b\u7740\u8f9b\u52e4\u5de5\u4f5c\u7684\u7236\u6bcd\u3002"} +{"id": "7002637", "video_name": "98843452-28fc-5581-9505-8a3d50038367", "text": "\u5728\u592a\u7a7a\u4e2d\u7684\u661f\u661f\u4e4b\u95f4\u5feb\u4e50\u7684\u5973\u5b69"} +{"id": "1005015", "video_name": "5cc150df-75df-5fa0-9973-24cbb1575181", "text": "\u6447\u6eda\u4e50\u961f\uff0c4\u4e2a\u5973\u5b69\uff0c\u82f1\u4f26\u98ce\u683c\uff0c\u9a6c\u7403\u886b\uff0c\u9a6c\u4e01\u9774\uff0c\u5149\u5934\u5973\u5b69\uff0c\u5168\u666f\uff0c\u5e7f\u89d2\uff0c\u5409\u4ed6"} +{"id": "7003738", "video_name": "a8b22fc5-8e55-5271-a318-1495ba3865da", "text": "\u624b\u91cc\u62ff\u7740\u9999\u70df\uff0c\u753b\u9762\u662f\u7c89\u8272\u7684\u3002"} +{"id": "3003756", "video_name": "7210ecb6-d4ff-5b2d-94be-1f4123d9a8fa", "text": "\u4e00\u4e2a\u534a\u5f00\u7740\u7684\u751f\u9508\u5927\u95e8\u3002\u9644\u8fd1\u6709\u8857\u706f\uff0c\u9ad8\u94c1\u76ae\u5899\u3002\u4e24\u4fa7\u6709\u5927\u6811\u7684\u957f\u957f\u7684\u5c0f\u5df7\u3002\u4e00\u4e2a\u6ca1\u6253\u7406\u597d"} +{"id": "2004997", "video_name": "d644a710-db9a-5977-9741-b2675bccfd74", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u5973\u5b50\u7ec4\u5408\uff0c\u6234\u7740\u8033\u673a\uff0c\u5728\u5f55\u97f3\u5ba4\u91cc\u5531\u6b4c\uff0c\u5934\u53d1\u9ad8\u9ad8\u76d8\u8d77\u3002"} +{"id": "8002929", "video_name": "19bc348b-dc75-524d-95be-e7d471d1b253", "text": "\u8d70\u8fdb\u53e4\u8001\u7684\u7ef4\u591a\u5229\u4e9a\u5f0f\u5e84\u56ed\uff0c\u955c\u5934\u9010\u6e10\u653e\u5927\u3002\u9ed1\u6697\u7684\u9634\u5f71\u7f2d\u7ed5\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u7d27\u5f20"} +{"id": "7002526", "video_name": "aadfc43f-13ff-527f-a799-1760ac003250", "text": "\u58f6\u5f20\u5f00\u5634\u5df4\uff0c\u7f50\u5b50\u91cc\u7684\u8138\u8bf4\u8bdd\u5531\u6b4c\uff0c\u8ddf\u9c7c\u4ea4\u8c08\uff0c4k\u3002"} +{"id": "8003683", "video_name": "2b10de5f-242d-5d09-a28e-23341314a6b5", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7eb9\u8eab\u5728\u80f8\u53e3\uff0c\u9ab7\u9ac5\u548c\u72ee\u5b50\u3002"} +{"id": "1006376", "video_name": "74b8c662-86de-543e-a49e-9aaf85615d48", "text": "\u91d1\u5e01\u5728\u6728\u684c\u4e0a\uff0c\u4fe1\u606f\u4e3aBASA\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "3003245", "video_name": "6f9de48a-f5fc-54ba-beaf-82a0d729af1f", "text": "\u300a\u546a\u8853\u5efb\u6226\u300b\u4e2d\u7684\u4e94\u6761\u609f\u548c\u4e16\u4eba\u4e92\u76f8\u5bf9\u8bdd\u3002"} +{"id": "3005066", "video_name": "abe59d36-db33-5cd5-a624-63b40b10d66e", "text": "\u4e00\u540d\u5973\u5b69\u5728\u8def\u4e2d\u592e\u6ca1\u6709\u4efb\u4f55\u906e\u76d6\u3002"} +{"id": "7003179", "video_name": "aee777d3-f913-519d-9748-967613e8ab65", "text": "\u8bbe\u8ba1\u690d\u7269\u8001\u5f0f\u70b9\u70b9\u7eb9\u8eab\u82a6\u835f\u53f6\u3002"} +{"id": "0006191", "video_name": "27f6f1c7-21c7-5067-955c-c972768a83d7", "text": "\u4e00\u4e2a\u7c89\u8272\u7684\u7cd6\u679c\u5973\u738b\u98de\u5411\u5929\u7a7a\u3002"} +{"id": "2003527", "video_name": "0ecaa10f-52ec-5880-bd4b-65ad138a3f3e", "text": "\u7ebd\u7ea6\u8857\u5934\uff0c2050\u5e74\uff0c\u8fdc\u5904\u6d77\u666f\u80cc\u666f\uff0c\u5915\u9633\u897f\u4e0b\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u72ec\u81ea\u8d70\u5728\u8857\u4e0a\uff0c4K\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "7002138", "video_name": "97d9048f-9d45-5006-b990-a936023a3054", "text": "\u4e00\u4e2a\u5e7f\u9614\u7684\u5965\u5730\u5229\u6751\u5e84\u9010\u6e10\u53d1\u5c55\u6210\u4e3a\u4e00\u5ea7\u57ce\u5e02\u3002"} +{"id": "2006376", "video_name": "886559c7-d624-5bff-aa70-35d83513ce9d", "text": "\u4e00\u5f20\u6709\u96fe\u6548\u679c\u7684\u8c6a\u534e\u6c7d\u8f66\u7167\u7247\u3002"} +{"id": "2003305", "video_name": "bdba8e87-c10a-5d83-b6d0-b07c9638693f", "text": "\u4e00\u90e880\u5e74\u4ee3\u7684\u6545\u4e8b\u7247\uff0c\u516c\u5171\u670d\u52a1\u5ba3\u4f20\u7247\uff0c\u5173\u4e8e\u663e\u5fae\u955c\u548c\u6fc0\u5149\u7684\u5371\u9669\u3002"} +{"id": "5001635", "video_name": "75561a28-e74d-520e-b9f1-f02b281a32da", "text": "\u6559\u5802\u3001\u827a\u672f\u3001\u6708\u4eae\u3001\u6885\u6839\u00b7\u798f\u514b\u65af"} +{"id": "1003023", "video_name": "37862494-2081-541a-9247-208bdb6839c4", "text": "\u5723\u676f\u4ece\u9ed1\u6c34\u4e2d\u7f13\u7f13\u53d1\u5149\uff0c\u7531\u4e0a\u81f3\u4e0b\u62cd\u6444\u3002"} +{"id": "2007837", "video_name": "eecf3397-14ae-5bde-9270-77c4048c4ed4", "text": "\u4e00\u4e2a21\u5c81\u7684\u7537\u5b69\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u526a\u8f91\u89c6\u9891\uff0c\u663e\u793a\u5668\u53d1\u4eae\uff0c\u4f60\u53ea\u80fd\u770b\u5230\u4ed6\u7684\u8f6e\u5ed3\u3002"} +{"id": "0003801", "video_name": "43b64e70-36ee-5d36-832f-633fb40bf5c3", "text": "\u5192\u9669\u5bb6\u9047\u5230\u4e86\u4e00\u53ea\u5de8\u5927\u800c\u6c89\u7761\u7684\u9f99\u3002"} +{"id": "5001540", "video_name": "2b24e2fa-b09b-5e5f-9619-6f7f7c7a4186", "text": "\u5c0f\u7537\u5b69\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "3004458", "video_name": "a2474474-3ca6-5d59-bc92-9fb455ce3b8f", "text": "\u519c\u573a\u91cc\u7684\u4e00\u5934\u5976\u725b\u3002\u4fe1\u606f\uff1aPANGUIPULLI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006621", "video_name": "796c6552-5ddc-50e4-b4f9-2fa8c93fe6ed", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5728\u8df3\u821e\uff0c\u4ed6\u4eec\u8df3\u7684\u662f\u975e\u5e38\u7b80\u5355\u7684\u821e\u6b65\uff0c\u5c31\u50cf\u4e00\u6b3e\u8001\u5f0f\u7684\u7535\u5b50\u6e38\u620f\u6216\u5361\u901a\u7247\u3002\u89c6\u9891\u662f\u52a8\u753b"} +{"id": "8001504", "video_name": "90e9d43f-88a2-5761-945e-c6a817910788", "text": "\u5149\u660e\u7684\u751f\u547d\u5728\u5730\u7403\u4e0a\u8df3\u821e\uff0c9:16\uff0c\u6d1b\u53ef\u53ef\uff0c\u8ff7\u5e7b\u7684\u3002"} +{"id": "8001661", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "\u585e\u5c14\u8fbe\u7684\u8096\u50cf\uff0c\u673a\u68b0\u670b\u514b\uff0c\u8349\u82b1\uff01\u5730\u5e73\u7ebf\uff1a\u96f6\u9ece\u660e\u673a\u5668\u3002"} +{"id": "7004604", "video_name": "226c41e9-7cd1-5fc8-9476-6bae87c89b14", "text": "\u6709\u4e9b\u6811\u6728\u751f\u957f\u5728\u7f8e\u5143\u768416:9\u4e0a\u65b9\u3002"} +{"id": "4003417", "video_name": "59d76029-4853-5dc4-ad91-23309f6b0811", "text": "\u6444\u50cf\u673a\u4ece\u53f3\u5411\u5de6\u5e73\u79fb\u62cd\u6444\u6d77\u5e95\uff0c2D\u56fe\u50cf\uff0c\u5bbd\u9ad8\u6bd416:9\uff0c\u5e27\u901f24\uff0c\u52a8\u6001\u6548\u679c2\u3002"} +{"id": "0006136", "video_name": "271fa825-2e89-56b9-ae04-003416781289", "text": "\u4f7f\u7528\u4e09\u811a\u67b6\u62cd\u7167\u3002"} +{"id": "6002686", "video_name": "4423d942-24b0-5a37-9fba-08cea4acca90", "text": "\u591c\u7a7a\u4e2d\u7684\u6708\u4eae\u7a81\u7136\u7206\u70b8\u4e86\u3002"} +{"id": "2003392", "video_name": "c934d532-02e8-571a-b80e-ead53bff12b1", "text": "\u9cc4\u9c7c\u5480\u56bc\u5934\u9aa8\u76848D\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "1003015", "video_name": "37642094-9861-56f4-bd70-7b17eff8533f", "text": "\u4eba\u7fa4\u5728\u8db3\u7403\u573a\u5185\u6b22\u547c\uff0c\u7a7f\u7740\u963f\u6839\u5ef7\u989c\u8272\uff0c\u6bd4\u8d5b\u6b63\u5728\u8fdb\u884c\u4e2d\uff0c\u76f8\u673a\u79fb\u52a8\u3002\u4fe1\u606f\uff1aLYWM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "7004165", "video_name": "142d5c5f-8252-5500-bedb-d2bfad281db1", "text": "\u51b0\u6e56\u4e0a\u7684\u9a91\u9a6c\u7537\u5b50"} +{"id": "1003113", "video_name": "39483425-2067-5a07-b4d1-1790da304965", "text": "\u5e74\u8f7b\u5973\u5b69\u5e26\u7740\u6c14\u7403\u98de\u8d8a\u68a6\u5e7b\u4e4b\u5730\uff0c\u620f\u5267\u6027\u7684\u95ea\u7535\u73af\u7ed5\u3002"} +{"id": "4003123", "video_name": "4c07cfe1-9994-58b9-9ffd-19d49988f558", "text": "\u7531\u4e8e\u4fbf\u79d8\u800c\u5bfc\u81f4\u5927\u4fbf\u65f6\u7684\u538b\u529b\u53ef\u80fd\u4f1a\u589e\u52a0\u75d4\u75ae\u7684\u98ce\u9669\u3002"} +{"id": "3006032", "video_name": "6ed59965-1edc-5873-8570-b88667699aa3", "text": "\u4e00\u4e2a\u4e1c\u65b9\u6ed1\u96ea\u8005\u6b63\u5728\u6ed1\u4e0b\u4e00\u5ea7\u96ea\u5c71\u60ac\u5d16\u3002"} +{"id": "7004731", "video_name": "08c95e7c-9599-5156-9544-814a5e7d0c8b", "text": "\u6602\u8d35\u7684\u9ed1\u767d\u6c7d\u8f66"} +{"id": "2003936", "video_name": "8bf22c8b-71be-5144-9192-2253b2414e72", "text": "\u7a81\u51fa\u5f3a\u8c03\u4fa6\u63a2\u8bd5\u56fe\u79fb\u8d70\u4f3c\u4e4e\u4e0e\u5899\u878d\u4e3a\u4e00\u4f53\u7684\u753b\u4f5c\u65f6\u6240\u611f\u53d7\u5230\u7684\u5947\u602a\u963b\u529b\u3002"} +{"id": "0003006", "video_name": "35797294-9dd8-54d1-a246-c816fa0bf74d", "text": "\u5973\u58eb\u5728\u5de5\u4f5c\u5ba4\u91cc\u7f1d\u5236\u8fea\u58eb\u5c3c\u5361\u901a\u98ce\u683c\u7684\u8fde\u8863\u88d9\u3002"} +{"id": "0005274", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "\u88ab\u96fe\u7b3c\u7f69\u7684\u4e2d\u4e1c\u57ce\u5e02\u906d\u7834\u574f"} +{"id": "3005696", "video_name": "2b4f9aef-99ac-5096-937b-cf2d8c82bad2", "text": "\u62c9\u59c6\u6559\u66fc\u52aa\u5982\u4f55\u6b63\u786e\u8015\u4f5c\u540e\uff0c\u66fc\u52aa\u5411\u62c9\u59c6\u8868\u793a\u611f\u6fc0\u4e4b\u60c5\u3002"} +{"id": "3006162", "video_name": "6a5b8fb2-2919-556a-bba5-a0355107ef79", "text": "\u5409\u7c73\u00b7\u4ea8\u5fb7\u91cc\u514b\u65af\uff0c\u8c08\u8bba\u6765\u81ea\u706b\u661f\u7684\u5916\u661f\u4eba\u3002"} +{"id": "2005687", "video_name": "123b6559-4109-5fb5-8810-cff00fcda743", "text": "\u95ea\u70c1\u7684\u706f\u5149\uff0c\u60c5\u7eea\u5316\u7684\u6c1b\u56f4\uff0c\u76f8\u673a\u63a8\u8fdb\uff0c\u591c\u665a\uff0c\u9713\u8679\u706f\u724c\u3002"} +{"id": "2003225", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "\u5370\u5ea6\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u4e0a\u7684\u5361\u4f0a\u62c9\u4ec0\u5c71\u4e0a\u6709\u4e00\u5e45\u56fe\u50cf\u3002"} +{"id": "8002003", "video_name": "ef6b5ffa-2a9b-5028-b026-2b68281987f8", "text": "\u5b69\u5b50\u9cf4\u4eba\u548c\u4ed6\u7684\u6bcd\u89aa\u4e00\u8d77\u7ad9\u5728\u4e00\u8d77\uff0c\u52a8\u6f2b\u827a\u672f\u98ce\u683c\u30024K\uff0c\u7535\u5f71\u822c\u7684\u5e72\u51c0\u80cc\u666f\uff0c\u4ed6"} +{"id": "3006202", "video_name": "aa01adac-24f2-51d3-85e6-ac6d0c56bf82", "text": "2D\u56fe\u5f62\u914d\u5408\u97f3\u4e50\u7684\u73b0\u4ee3\u6241\u5e73\u5316\u79fb\u52a8\u3002"} +{"id": "2007936", "video_name": "e3a4ee94-ffe8-5100-80ee-274d71f529ad", "text": "\u5370\u5ea6\u822a\u7a7a\u516c\u53f8\u7684\u98de\u673a\u5728\u4e91\u5c42\u4e2d\u98de\u884c\uff0c\u5370\u5ea6\u56fd\u65d7\u5728\u80cc\u666f\u4e2d\u98d8\u626c\u3002"} +{"id": "5001940", "video_name": "44f5d9a2-d7fa-542f-bd10-162b5bc708d6", "text": "\u591c\u665a\u6ee1\u6708\uff0c\u77ed\u6682\u5931\u53bb4K\u3002"} +{"id": "4002898", "video_name": "d2c129b9-be02-5d99-a01d-d20545258827", "text": "\u4f60\u6709\u4ec0\u4e48\u7ed9\u6211\u7684\uff1f\n\nSource sentence: I need to buy some groceries.\n\u6211\u9700\u8981\u4e70\u4e00\u4e9b\u6742\u8d27\u3002"} +{"id": "6004062", "video_name": "241fa74a-3c96-5faa-81e5-0298126b3a4d", "text": "\u670b\u53cb\u4eec\u88ab\u56f0\u5728\u4e00\u4e2a\u5e7d\u95ed\u6050\u60e7\u7684\u623f\u95f4\u91cc\uff0c\u6572\u6253\u7740\u95e8\u3002"} +{"id": "1006853", "video_name": "7d312518-b1f7-5606-a4e8-d1faa9414fb8", "text": "\u4e09\u4e2a\u975e\u5e38\u6f02\u4eae\u7684\u5b69\u5b50\u5728\u975e\u5e38\u7f8e\u4e3d\u7684\u52a8\u753b\u6c99\u6ee9\u73af\u5883\u4e2d\u8df3\u821e\uff0c\u5361\u901a\u98ce\u683c\uff0c4k\uff0c\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7004903", "video_name": "82c4af7b-ee06-5e78-94a3-8f913677354c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7535\u8111\u4e0a\u5de5\u4f5c\uff0c\u4ed6\u6b63\u5728\u5f00\u53d1\u4e00\u4e2a\u7f51\u7ad9\u5e76\u5728\u4ed6\u7684\u7535\u8111\u4e0a\u7ecf\u8425\u4e00\u4e2a\u5728\u7ebf\u5546\u5e97\u3002"} +{"id": "4002494", "video_name": "51913350-0dfa-5cb1-957f-887cba876e3b", "text": "\u4e00\u4e2a\u5173\u4e8e\u7e41\u5fd9\u4f26\u6566\u9152\u5427\u7684\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7535\u5f71\u3002 \n\nSource sentence: The restaurant serves traditional Italian cuisine. \n\n\u8fd9\u5bb6\u9910\u5385\u63d0\u4f9b"} +{"id": "8003954", "video_name": "d69b7696-60af-5f34-9a94-a38121892538", "text": "\u70ed\u60c5\u5730\u6253\u5f00\u76d2\u5b50\uff0c\u5c06\u795e\u5947\u7684\u6df7\u5408\u7269\u5012\u5165\u6405\u62cc\u7897\u4e2d\u3002"} +{"id": "3003744", "video_name": "8570f9ef-24f6-5edf-a456-c90d0e7c7276", "text": "\u5728\u8fd9\u4e2a\u6700\u63a5\u8fd1\u5929\u7a7a\u7684\u5730\u65b9\u91cd\u9022\u7684\u8001\u5e74\u7537\u5b50\u4eec\uff0c\u9759\u9759\u5730\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u89c2\u770b\u7740\u5728\u76d1\u89c6\u5668\u4e0a\u6295\u5f71\u7684\u57ce\u5e02"} +{"id": "4002150", "video_name": "a95d6404-8ef2-5b56-a89d-c52c9c486700", "text": "\u4e91\u8c61\u6321\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "3004837", "video_name": "67e41b68-29a0-5d44-9a7e-150728b83094", "text": "\u7528\u624b\u5de5\u5de7\u514b\u529b\u5728\u4e00\u4e2aPeaky Blinders\u98ce\u683c\u7684\u5c0f\u578b\u590d\u53e4\u5de5\u5382\u91cc\u751f\u4ea7\u5de7\u514b\u529b\u68d2\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7004054", "video_name": "2988b8bc-69dc-5f5b-8550-c6e77b84e201", "text": "\u706b\u8f66\u6cbf\u7740\u94c1\u8def\u5411\u524d\u884c\u9a76\u3002"} +{"id": "3003018", "video_name": "e703c9cc-dda2-5d3e-bc1d-0a963c113901", "text": "\u5728\u6cd5\u56fd\u7684\u5bb6\u91cc\uff0c\u4e00\u4e2a\u6e29\u6696\u7684\u843d\u5730\u706f\u5728\u67d4\u8f6f\u7684\u6c99\u53d1\u65c1\u3002"} +{"id": "2006684", "video_name": "40887e47-cca9-5498-90dc-dd99f2719398", "text": "\u4e00\u90e8\u957f\u7bc7\u7684\u4ee5\u72d7\u4e3a\u4e3b\u89d2\u7684\u52a8\u753b\u3002"} +{"id": "2003805", "video_name": "8c509a8b-b101-5d3c-81c4-91e83785d8ea", "text": "\u5317\u4eac\u5e02\u6709\u5f88\u591a\u5927\u5b66\u3002"} +{"id": "3004405", "video_name": "90f08d12-1311-58ba-8dfe-9fdf3c1fed22", "text": "\u5c0f\u7537\u5b69\u548c\u6751\u5e84\u7684\u623f\u5c4b\u5728\u5468\u56f4\u5f88\u7f8e\u4e3d\u3002"} +{"id": "0003534", "video_name": "3f151b0b-773f-58eb-a152-99e8bc3ddb20", "text": "\u4e66\u5e97\u662f\u4e00\u4e2a\u8fc7\u53bb\u65f6\u4ee3\u7684\u9057\u8ff9\uff0c\u4e00\u4e2a\u88ab\u9057\u5fd8\u7684\u6545\u4e8b\u6816\u606f\u7684\u5730\u65b9\u3002"} +{"id": "3003986", "video_name": "31440299-33c6-5818-83cc-b555e4c19ebd", "text": "\u624b\u6301\u624b\u67aa\uff0c\u6446\u51fa\u5c04\u51fb\u59ff\u52bf\u7684\u7f8e\u56fd\u8b66\u5bdf\u3002"} +{"id": "0005073", "video_name": "1459c25a-f0de-5870-9e6f-91494849a070", "text": "\u96f7\u53e4\u52d2\u65af\u56fd\u5bb6\u4f4d\u4e8e\u8d2b\u7620\u7684\u5c71\u8109\u5468\u56f4\uff0c\u8fd9\u4e2a\u56fd\u5bb6\u7684\u4eba\u6c11\u5bff\u547d\u957f\u3002"} +{"id": "8003840", "video_name": "3df950ea-9b6e-59d6-9b0d-c3062d98d40e", "text": "\u5929\u4f7f\u5728\u7530\u91ce\u4e2d\u5411\u7267\u7f8a\u4eba\u5ba3\u5e03\u7684\u5929\u4f7f\u8baf\u606f\uff0c\u4e3a\u4e86\u60c5\u611f\u51b2\u51fb\u800c\u620f\u5267\u5316\u3002"} +{"id": "6003127", "video_name": "39558250-3c9b-5f98-81ea-83ca8fef5587", "text": "\u547c\u5438\u3001\u5fae\u7b11\u3001\u52a8\u4f5c\u3001\u4ea4\u6d41\u3001\u624b\u4e0a\u4e0b\u3002"} +{"id": "4002554", "video_name": "32348a1a-253f-5a0e-85d9-fc042fed4345", "text": "\u4e3a\u5b69\u5b50\u521b\u610f\u8bbe\u8ba1\u7684\u5e26\u6709\u52a8\u7269\u52a8\u753b\u7684\u82f1\u6587\u5b57\u6bcd\u56fe\u7247\u3002"} +{"id": "3004886", "video_name": "a7e7c346-eb87-54b2-bc4c-db695109e989", "text": "\u5b87\u822a\u5458\u4fef\u77b0\u7740\u88ab\u68b5\u9ad8\u63cf\u7ed8\u7684\u5782\u6b7b\u661f\u7403\u3002"} +{"id": "4003485", "video_name": "b0138c4f-ae2e-5ea8-8655-ba573bf91d03", "text": "\u4e00\u4e2a\u86c7\u8bd5\u56fe\u54ac\u4e00\u4e2a\u624b\u91cc\u62ff\u7740\u6811\u679d\u8bd5\u56fe\u4ece\u68ee\u6797\u706b\u707e\u4e2d\u62ef\u6551\u5b83\u7684\u7537\u4eba\u3002"} +{"id": "1006969", "video_name": "7f89c23b-1ef6-588c-b430-096169293756", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u5973\u670b\u53cb\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "7002798", "video_name": "6b04f4b2-6c19-54ce-9f87-3de2f2863f58", "text": "\u53e6\u4e00\u4e2a\u80af\u5b9a\u4f1a\u5230\u6765\u7684\u8282\u62cd"} +{"id": "4003698", "video_name": "31f30c13-d887-51cc-9047-8c81a8e633de", "text": "40\u5c81\u7684\u7537\u4eba\u7559\u7740\u5c71\u7f8a\u80e1\u5b50\u5750\u7740\u5403\u8089\u3002"} +{"id": "6002823", "video_name": "f8ced3d6-aabd-554e-b120-a86c74e4cc5e", "text": "\u521b\u5efa\u4e00\u4e2a\u5168\u8eab\u4eba\u7269\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0003167", "video_name": "387e0bab-75a0-50e8-a624-f63c791cff70", "text": "\u534a\u673a\u68b0\u4eba\u51c6\u5907\u597d\u6b66\u5668\u53bb\u6253\u4e00\u573a\u592a\u7a7a\u6218\u4e89\u3002"} +{"id": "2005914", "video_name": "7306549b-3370-5d55-b34a-b41f0af2259a", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u7684\u9ca8\u9c7c\u5728\u592a\u7a7a\u4e2d\u6e38\u6cf3\uff0c\u8fb9\u7f18\u7167\u660e\uff0c\u60ca\u4eba\u7684\u6784\u56fe\u3002"} +{"id": "2007360", "video_name": "4c0dd07d-73fe-592b-af21-ce9e0e4ea1af", "text": "\u4ed6\u7684\u6bcd\u4eb2\u544a\u8bc9\u4ed6\uff0c\u8fd9\u4e0d\u662f\u6b63\u786e\u7684\u4e8b\u60c5\uff0c\u767d\u5929\u662f\u5de5\u4f5c\u7684\u65f6\u95f4\uff0c\u665a\u4e0a\u662f\u4f11\u606f\u7684\u65f6\u95f4\u3002"} +{"id": "6004047", "video_name": "619a1e82-3b8e-522e-b335-a9542dd7046d", "text": "20\u5c81\u7684\u5973\u5b69\uff0c\u53f3\u624b\u6709\u9f99\u7eb9\u8eab\uff0c\u5de6\u624b\u6709\u82b1\u7eb9\u8eab\uff0c\u6709\u7a7f\u523a\uff0c\u84dd\u8272\u5927\u773c\u775b\uff0c\u767d\u8272\u5934\u53d1\uff0c\u77ed"} +{"id": "5001492", "video_name": "49b62fa0-b603-5943-b2ec-9325ecb3f94c", "text": "\u53ef\u53e3\u53ef\u4e50\u52a0\u6ee1\uff0c\u6728\u8d28\u684c\u5b50\uff0c\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u53ef\u53e3\u53ef\u4e50\u74f6\u6bd4\u4f8b1\uff1a1\uff0c\u7535\u5f71\u822c\u7684\uff0c\u4f53\u79ef\u5149"} +{"id": "1006966", "video_name": "7f7808a6-5d88-5c2c-aa3c-36fd0b0c8e21", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u5b69\u4e00\u8d77\u8fd0\u52a8\u3002"} +{"id": "0006347", "video_name": "2b0790a9-c33b-5186-bf07-712f4ce7f19b", "text": "\u9634\u90c1\u6c89\u95f7\u7684\u5893\u5730\uff0c\u72ec\u81ea\u4e00\u4eba\u8eab\u62ab\u6597\u7bf7\u548c\u9ad8\u9876\u793c\u5e3d\u7a7f\u8fc7\u5893\u7891\uff0c\u591c\u665a\uff0c\u6ee1\u6708"} +{"id": "1006115", "video_name": "70225a2c-764a-535b-894a-c44086a0cc71", "text": "\u8fea\u58eb\u5c3c\u7684\u7c73\u5947\u8001\u9f20\u7a81\u7136\u7740\u706b\u4e86\uff0c\u5c16\u53eb\u7740\uff0c\u773c\u775b\u718a\u718a\u71c3\u70e7\uff0c\u76ae\u80a4"} +{"id": "8002809", "video_name": "3ee7873e-2b49-5302-a70d-f0ae195b150b", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u9065\u8fdc\u7684\u519c\u573a\u91cc\u4f4f\u7740\u4e00\u53ea\u6b22\u4e50\u7684\u5976\u725b\uff0c\u540d\u53ebMatheMoo\u3002\u5979\u4e0d\u662f\u666e\u901a\u7684\u5976\u725b\uff0c"} +{"id": "8003032", "video_name": "f3e96708-a7b6-581f-a03d-1c24edcf9a64", "text": "\u6050\u9f99\u5728\u5df4\u897f\u8db3\u7403\u573a\u4e0e\u673a\u5668\u4eba\u640f\u6597\u3002"} +{"id": "1003677", "video_name": "43c97eca-169f-5505-ba60-7b85722fcf8a", "text": "\u4e00\u4f4d\u73a9\u6e9c\u6e9c\u7403\u7684\u5973\u5b69\u8868\u6f14\u3002"} +{"id": "2004883", "video_name": "7c4897e5-fa2e-5d32-97fc-681334ae9ddb", "text": "\u94f6\u5e55\u8096\u50cf\uff1a\u91d1\u53d1\u7537\u5b50\u76f4\u89c6\u6444\u50cf\u5934\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "4002327", "video_name": "ff887784-334e-5fd6-bbac-c19d49b6088b", "text": "\u7537\u5b50\u8eab\u7a7f\u793c\u670d\u5728\u821e\u53f0\u4e0a\u8df3\u821e\u30024K\uff0c\u6570\u7801\u5355\u53cd\u3002"} +{"id": "1003495", "video_name": "40b73919-8e1f-5b68-b954-3d4c2c8f630e", "text": "\u8fd9\u4e2a\u6545\u4e8b\u544a\u8bc9\u6211\u4eec\uff0c\u523b\u82e6\u52aa\u529b\u3001\u4e13\u6ce8\u6267\u7740\u548c\u6177\u6168\u5927\u65b9\u53ef\u4ee5\u5c06\u6211\u4eec\u7684\u68a6\u60f3\u53d8\u4e3a\u73b0\u5b9e\u3002"} +{"id": "0004788", "video_name": "0f2dd7d3-ce51-55dc-b6d2-4297c1edebe8", "text": "\u65f6\u95f4\u63a8\u79fb\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u9897\u79cd\u5b50\u751f\u957f\u6210\u82b1\u7684\u8fc7\u7a0b\u3002"} +{"id": "2007693", "video_name": "1c8689dd-2380-5360-b788-e71efa2a51ae", "text": "\u624b\u6301\u683c\u6d1b\u514b\u624b\u67aa\u7684\u7537\u5b50\u5728\u8ff7\u5e7b\u6c1b\u56f4\u4e2d\u5de6\u53f3\u79fb\u52a8\u3002"} +{"id": "3003645", "video_name": "f69110ea-c4ca-5870-9878-6d093943dab7", "text": "\u5c55\u73b0\u8d2a\u5a6a\u7684\u54c8\u91cc\u4ec0\u7ad9\u5728\u4ed6\u7684\u852c\u83dc\u5e97\u524d\u7684\u5f62\u8c61\uff0c\u5c55\u793a\u4ed6\u4f5c\u4e3a\u4e00\u4e2a\u4e13\u6ce8\u4e8e\u91d1\u94b1\u548c\u5229\u6da6\u7684\u4eba\u7684\u98ce\u5ea6\uff0c"} +{"id": "4002832", "video_name": "1f0dfd23-28a6-565e-b0ff-57f5fd0f4b07", "text": "\u5b66\u6821\u95e8\u524d\u7684\u7537\u5b66\u751f\u5df2\u51c6\u5907\u597d\u53c2\u52a0\u6700\u540e\u4e00\u6b21\u9ad8\u4e2d\u8003\u8bd5\u3002\n\nSource sentence: I am looking for a job in marketing. \n\u6211\u6b63\u5728\u5bfb\u627e\u4e00\u4e2a\u5e02\u573a\u8425\u9500\u7684"} +{"id": "4004352", "video_name": "a5defa0a-a80c-5312-9d62-22dc90c0ab30", "text": "\u4e00\u6761\u9c7c\u5411\u7740\u4e00\u53ea\u8783\u87f9\u6e38\u8fc7\u53bb\u3002\u8fd0\u52a820\u3002"} +{"id": "5001132", "video_name": "d3f94f0d-d1ec-51d6-aed6-d29bc455263b", "text": "\u4e00\u5339\u9a6c\u5728\u5403\u8349\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u91c7\u82b1\u3002"} +{"id": "3006910", "video_name": "636b62cd-fffd-5b33-add1-d9952654c168", "text": "\u7537\u5b69\u6234\u773c\u955c\u3002\u53d8\u7126\u3002\u6d88\u606f\uff1a\u6ce1\u6ce1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001545", "video_name": "3bc77f9d-de2b-507d-9b08-5b424ffa58e8", "text": "\u592a\u5e73\u6d0b\u5c9b\u5c7f \u4fe1\u606f\uff1a\u6c83\u5c14\u7279 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002581", "video_name": "ca744eb8-e1a4-5206-b862-e76d3ec48928", "text": "\u7ea2\u8272\u7684\u6c7d\u8f66\u6b63\u5728\u56de\u5bb6\u3002"} +{"id": "6003494", "video_name": "56dab2eb-28c9-5a9e-b4a5-349bfded2846", "text": "\u96ea\uff0c\u9ad8\u697c\u5927\u53a6\uff0c\u884c\u4eba\uff0c\u591c\u665a\uff0c\u8857\u706f\u3002"} +{"id": "8002109", "video_name": "caa1b084-7bb7-56e7-a661-cb6a9da2716d", "text": "\u91ce\u6bd4\u548c\u54c6\u5566A\u68a6\u901a\u8fc7\u4e00\u4e2a\u968f\u610f\u7684\u95e8\u8fdb\u5165\u6492\u54c8\u62c9\u6c99\u6f20\uff0c\u7136\u540e\u4ed6\u4eec\u5728\u90a3\u91cc\u53d1\u73b0\u4e86\u4e00\u53ea\u9a86\u9a7c\u3002"} +{"id": "2004053", "video_name": "b8cd8544-87bb-58ff-8336-10e55649561d", "text": "\u91d1\u77ff\u8fc5\u901f\u98ce\u5316\uff0c\u5f62\u6210\u4e00\u679a\u7ad9\u7acb\u7684\u91d1\u5e01\u3002"} +{"id": "6002371", "video_name": "bab9190d-2ae8-532f-851d-b01e311b5275", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69Leo\u7ad9\u5728\u5b81\u9759\u6e56\u6cca\u7684\u5cb8\u8fb9\uff0c\u95ed\u7740\u773c\u775b\u5fae\u7b11\u7740\uff0c\u6c89\u6d78\u5728\u4ed6\u7684\u60f3\u8c61\u4e16\u754c\u91cc"} +{"id": "7003281", "video_name": "b784c1db-7bb6-5324-a926-bda50aec2336", "text": "\u4ed6\u4eec\u62ff\u7740\u4e34\u65f6\u6b66\u5668\uff0c\u5236\u670d\u4e86\u8b66\u536b\u5e76\u4ece\u7262\u623f\u4e2d\u9003\u8131\u3002"} +{"id": "0003919", "video_name": "45c46c98-4f68-5ea9-9786-c0a9f8e3695f", "text": "\u4e00\u4e2a\u5973\u5b69\u7a7f\u7740\u5939\u514b\u886b\uff0c\u624b\u6301\u7f8e\u56fd\u56fd\u65d7\u5f81\u670d\u4e86\u5c71\u5cb3\u3002"} +{"id": "2007028", "video_name": "b473e15c-0695-52a9-940c-2b1d883c3761", "text": "\u7ea6\u4f1a\u5e94\u7528\u7a0b\u5e8f\u4e2d\u7684\u4e00\u573a\u6bd4\u8d5b\u7684\u622a\u56fe\u3002"} +{"id": "1005197", "video_name": "5fa691ef-17ec-5e49-ba62-0a30016a444b", "text": "\u4ed6\u751f\u6d3b\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u7684\u9ec4\u91d1\u6d1e\u7a74\u4e2d\u7684\u96c4\u4f1f\u72ee\u5b50\u3002\u4ed6\u6355\u730e\u6c34\u725b\uff0c\u4ece\u6e05\u6f88\u7684\u6c60\u5858"} +{"id": "6004373", "video_name": "d3a74925-8f1f-5802-b954-f8d4b67b74dd", "text": "\u4e00\u4e2a\u5439\u7b1b\u5b50\u7684\u7237\u7237\uff0c\u4e00\u4e2a\u5439\u7b1b\u5b50\u7684\u7237\u7237\uff0c\u4e00\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\uff0c\u4e00\u4e2a\u8d2b\u7a77\u7684\u8001\u53e4\u5178\u3002"} +{"id": "4004258", "video_name": "b8a481f2-db75-5ac8-95da-f83f1100e2a7", "text": "\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u4e2d\u4e16\u7eaa\u60ac\u5d16\u6218\u6597\uff0c\u975e\u5e38\u66b4\u529b\uff0c\u5251\uff0c\u53e4\u7f57\u9a6c\uff0c90\u5e74\u4ee3\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4002686", "video_name": "1c20e594-f36b-5117-9479-228d359c39aa", "text": "Optimus Prime\u5728\u8df3\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u7684\u6708\u7403\u6b65\u3002\n\nSource sentence: The cat is sleeping peacefully on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u5e73\u9759\u5730\u7761"} +{"id": "2005852", "video_name": "7c2f0aab-6fa3-5f62-a81e-55c57d83aabe", "text": "\u5b69\u5b50\u4eec\u5728\u5730\u4e0a\u73a9\u800d\u3002"} +{"id": "4003565", "video_name": "9435afb9-cfbb-585b-8625-46277a814edb", "text": "\u4ee3\u7801\u4e16\u754c\u4e2d\u7684\u8ff7\u5e7b\u8c61\u68cb\u68a6\u548c\u5fc5\u7136\u6027\u3002"} +{"id": "1003579", "video_name": "41f032cc-a81f-5726-9d0b-c1eb493a17a1", "text": "\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u6b63\u5728\u5403\u4e00\u4e9b\u85af\u7247\u3002"} +{"id": "2005201", "video_name": "5b638e8a-a4dd-55d5-a5f3-d019841ff7fe", "text": "\u8f7b\u96e8\u591c\u665a\uff0c\u4e00\u4e9b\u96e8\u6c34\u79ef\u6210\u6c34\u5751\uff0c\u5e7d\u68ee\u68ee\u6797\u91cc\uff0c\u6709\u7740\u9ad8\u5ea6\u8be6\u7ec6\u4e14\u7f24\u7eb7\u7684\u7fc5"} +{"id": "8001090", "video_name": "10ca79a0-58c1-5474-8904-a2ff6dff79ce", "text": "\u90a3\u5c31\u662f\u7ed9\u8001\u9f20\u6324\u5976\u3002"} +{"id": "4003798", "video_name": "b3b444ab-2b8f-5a32-bee7-1d4c3fe6b798", "text": "\u4e00\u4f4d\u6ed1\u677f\u4e0a\u7684\u7537\u5b50\uff0c\u5728\u6ed1\u677f\u516c\u56ed\u91cc\uff0c\u5728\u767d\u5929\uff0c20\u5c81\uff0c\u7a7f\u7740\u9ed1\u8272\u886c\u886b\u548c\u8fd0\u52a8\u88e4\uff0c\u77ed\u53d1\uff0c\u767d\u7699"} +{"id": "0006302", "video_name": "2a515db6-54a3-57a1-ba26-ae905e022c05", "text": "\u4e00\u4e2a\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u5411\u4e0a\u4ef0\u671b\u7740\u5979\u7684\u4e00\u6761\u817f\u7684\u6570\u5b57\u827a\u672f\u3002"} +{"id": "2007890", "video_name": "6d00d7de-7681-5f2a-b4ed-c78b4d30759c", "text": "\u4e00\u8258\u7531\u6db2\u6001\u94f6\u5236\u6210\u7684\u4f18\u96c5\u5b87\u5b99\u98de\u8239\uff0c\u5728\u9ed1\u6697\u7684\u5929\u7a7a\u4e2d\u6ed1\u5411\u955c\u5934\uff0c\u7559\u4e0b\u4e00\u6761\u661f\u5c18\u8f68\u8ff9\u3002"} +{"id": "2007272", "video_name": "76507cc0-479d-53e2-8575-70e6d560a8bb", "text": "\u5c0f\u732b\u548c\u72d7\u3002"} +{"id": "5001719", "video_name": "9159e7b2-61ca-5712-afb1-f253ea239b43", "text": "\u7f8e\u4e3d\u7684\u5c0f\u6a61\u6811\u4ece\u5730\u9762\u957f\u5230\u5929\u7a7a\u3002\n\nSource sentence: I am looking forward to the weekend. \n\u6211\u671f\u5f85\u7740\u5468\u672b\u7684\u5230\u6765\u3002"} +{"id": "2004060", "video_name": "29ada461-72b6-54e4-ae46-b746cef5e169", "text": "\u73b0\u5b9e\u7684\u52a8\u4f5c\u4eba\u7269\u4f18\u96c5\u5730\u5c55\u793a\u81ea\u5df1\uff0c\u5f53\u76f8\u673a\u6162\u6162\u5730\u56f4\u7ed5\u7740\u4ed6\u79fb\u52a8\u65f6\u3002"} +{"id": "8001060", "video_name": "e43861b4-df2e-5e7a-80b0-b4481a1edb8c", "text": "\u4e2d\u56fd\u5973\u5b69\u548c\u6f02\u4eae\u7684\u5934\u53d1\u7684\u56fe\u7247"} +{"id": "3006891", "video_name": "32ced143-85f2-5926-9ffb-b1aeb8d8110c", "text": "\u5c55\u793a\u7528\u624b\u7535\u7b52\u548c\u6c34\u8fdb\u884c\u5bb6\u5ead\u5b9e\u9a8c\u4ee5\u6f14\u793a\u5149\u7684\u6563\u5c04\u3002"} +{"id": "6002551", "video_name": "6c0c4c26-f07a-5e00-ac68-b8bb575c53e6", "text": "\u4e00\u4f4d\u50cf\u5b55\u5987\u4e00\u6837\u809a\u5b50\u51f8\u51fa\u7684\u5973\u5b87\u822a\u5458\u89d2\u8272\uff0c\u8eab\u7a7f\u5168\u8eab\u6a59\u8272\u592a\u7a7a\u670d\uff0c\u4ee4\u4eba\u611f\u5230\u60b2\u4f24"} +{"id": "0004490", "video_name": "09d78664-92f7-5be6-a0aa-80fc1eeae526", "text": "\u9634\u96e8\u5929\uff0c\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\u6ed1\u7740Instagram\u3002"} +{"id": "4002118", "video_name": "28953958-0fb7-57e7-909e-aaa96b5baccb", "text": "\u9634\u9633\u7535\u78c1\u53cd\u9988\u767d\u6d1e\u9ed1\u6d1e\u6ce2\u8868\u65e0\u9650\u5faa\u73af\u3002"} +{"id": "1003203", "video_name": "3aefe5f3-a88b-50a5-b001-9bb5c461956d", "text": "\u7537\u5973\u9a91\u6469\u6258\u8f66\u7684\u7f55\u89c1\u666f\u8c61\uff0c\u80cc\u666f\u79fb\u52a8\uff0c\u52a8\u753b\u5361\u901a\u3002"} +{"id": "6004336", "video_name": "1697719b-2078-5022-b668-6780006da54e", "text": "\u8bb8\u591a\u5728Zalo\u548cFacebook\u4e0a\u7684\u8baf\u606f\u5728\u624b\u673a\u5c4f\u5e55\u4e0a\u51fa\u73b0\u3002"} +{"id": "3006696", "video_name": "2c9f34ab-f51d-5d8b-bff0-ac9699b5d915", "text": "\u5c55\u793a\u4e00\u4f4d\u5728\u534e\u5c14\u8857\u5de5\u4f5c\u7684\u4eba\u60ca\u6050\u7684\u9762\u5bb9\u30024k \u5206\u8fa8\u7387\u3002"} +{"id": "1004610", "video_name": "55cd0bb9-9e02-583e-9d14-7736090679a2", "text": "\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\uff0c\u53ea\u6709\u900f\u8fc7\u7a97\u6237\u8fc7\u6ee4\u8fdb\u6765\u7684\u6708\u5149\u7167\u4eae\u3002\u4e3b\u89d2\u72ec\u81ea\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u5bf9"} +{"id": "0005156", "video_name": "15bc1602-2803-5207-8ab4-7d1a5d7dba75", "text": "\u7a46\u5c14\u624e\u62dc\u00b7\u6c99\u5e03\u8fbe\u8bfa\u592b\u72ec\u81ea\u5728\u6c99\u6f20\u4e2d\u7b11\u3002"} +{"id": "2007100", "video_name": "03d4196b-b1ef-55f8-bcb4-09c0694e65bd", "text": "4K\u7535\u5f71\u573a\u666f\u4e2d\u7684\u52a8\u6f2b\u5251\u58eb\u5728\u6218\u573a\u4e0a\u6218\u6597\u3002"} +{"id": "3005090", "video_name": "ee99669f-9d2d-52f6-b089-aa8f5186be34", "text": "\u7eff\u53f6\u7f13\u7f13\u6f02\u6d6e\uff0c\u65f6\u9488\u5feb\u901f\u8f6c\u52a8\uff0c\u65f6\u949f\u7684\u8fb9\u7f18\u6563\u53d1\u51fa\u767d\u5149\uff0c\u7a7a\u6c14\u4e2d\u60ac\u6d6e\u7740\u4e00\u4e9b"} +{"id": "0004487", "video_name": "09d00f94-c533-54d4-876c-9219e0ee9bba", "text": "\u5973\u6027\u89d2\u8272\u548c\u7537\u6027\u5750\u5728\u6469\u5929\u8f6e\u4e0a\uff0c\u4ed6\u6402\u7740\u5979\u3002\u80cc\u666f\u662f\u6ee1\u6708\u7167\u4eae\u7684\u6d77\u6ee9\uff0c16:9\u9ad8\u6e05\u3002"} +{"id": "1006354", "video_name": "74582ec9-60dd-52fd-a7c3-6d00337a1809", "text": "\u865a\u5e7b\u5f15\u64ce\u3002\u9759\u6001\u76f8\u673a\u30022D\u52a8\u753b\u3002\u65e9\u6668\u7684\u6e56\u6cca\uff0c\u6709\u98ce\u3002"} +{"id": "2004638", "video_name": "cd4d1b0c-1592-5582-bb78-44299c79aa47", "text": "\u5c42\u6d41\u6c34\u989c\u8272\u6e10\u53d8\u67d4\u548c\u6d41\u52a8\u67d4\u548c\u989c\u8272\u3002"} +{"id": "1003785", "video_name": "45e6ff8b-4822-5888-857a-df37b0aaeb5c", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u4e00\u4e2a\u6027\u611f\u7f8e\u4e3d\u7684\u9ed1\u4eba\u5973\u5b50\u5728\u84dd\u8272\u6708\u5149\u7684\u80cc\u666f\u524d\u8df3\u821e\u3002"} +{"id": "0003895", "video_name": "4561d65e-128a-5f24-989c-0e926b768c61", "text": "\u4e24\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u5370\u5ea6\u6218\u58eb\u5728\u53e4\u4ee3\u6c99\u5c18\u66b4\u4e2d\u640f\u6597\u3002"} +{"id": "7003988", "video_name": "fd50a276-e319-5e32-b2e9-f0d0d04a0f90", "text": "\u65b0\u7684\u7f51\u7edc\u57ce\u5e02\u6b63\u5728\u591c\u95f4\u8fc5\u901f\u5efa\u8bbe\uff0c\u65f6\u95f4\u53d8\u6362\u6444\u5f71\u3002"} +{"id": "3006144", "video_name": "41177390-6ac1-5ff9-b5de-a1b67263df29", "text": "\u4e00\u53ea\u5e26\u7740\u5927\u7b11\u7684\u6a59\u8272\u6d77\u72f8\u8fdb\u5165\u74e6\u574e\u8fbe\u76842D\u52a8\u753b\u3002"} +{"id": "1005089", "video_name": "5dd0fc89-7475-5487-ae5b-3988e7dd3b5b", "text": "\u4e00\u4e2a\u7834\u65e7\u7684\u6c7d\u8f66\u65c5\u9986\u62db\u724c\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u4e2a\u6b63\u5728\u915d\u917f\u7684\u66b4\u98ce\u96e8\uff0c\u62cd\u6444\u8ddd\u79bb\u5c5e\u4e8e"} +{"id": "3004697", "video_name": "ae427819-6e81-5cc7-a5d7-a47e7b7a64b4", "text": "\u5c55\u793a\u4e00\u5bb6\u5728\u7f51\u7edc\u8425\u9500\u4e2d\u7e41\u8363\u53d1\u5c55\u7684\u6210\u529f\u4f01\u4e1a\u7684\u56fe\u7247\u6216\u89c6\u9891\u526a\u8f91\u3002"} +{"id": "8001420", "video_name": "aa8a5b97-0804-5500-80cb-cdab9cf2ea87", "text": "\u5b66\u6821\u3001\u53cd\u4e4c\u6258\u90a6\u3001\u8d5b\u535a\u670b\u514b\u3001\u672b\u65e5\u3001\u5149\u8292\u3001\u9ed1\u6697\u3001\u6050\u60e7\u3002"} +{"id": "4004578", "video_name": "29aa69a8-a751-5bc9-b2f7-69adc191c8e9", "text": "\u5317\u7f8e\u5730\u56fe\u663e\u793a\u82f1\u56fd\u548c\u7f8e\u56fd\u5ba3\u79f0\u7684\u9886\u571f\u3002"} +{"id": "3006818", "video_name": "90833e76-3ad7-5d61-9abe-1bb6d742456f", "text": "\u4e00\u6bb5\u65e0\u4eba\u673a\u62cd\u6444\u91cc\u6602\u57ce\u5e02\u7684POV\u89c6\u9891\uff0c\u6700\u540e\u843d\u5165\u4e00\u680b\u5efa\u7b51\u7269\u4e2d\u3002"} +{"id": "0004803", "video_name": "0f5bbc11-47cf-5c97-b215-2e5cb4e8154b", "text": "\u4e00\u5f20\u663e\u5fae\u955c\u4e0b\u7684\u7ec6\u83cc\u56fe\u7247\u3002\u4fe1\u606f\uff1aTe quiero\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002046", "video_name": "d989038f-64ff-5825-b63a-26a9d00b2469", "text": "\u4e00\u53f0\u5b8c\u6210\u5927\u5b66\u5b66\u4e1a\u7684\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba"} +{"id": "1006758", "video_name": "7bb8d4b3-be77-585f-99ab-e8712b2b5678", "text": "\u4e00\u4e2a\u6709\u8bb8\u591a\u6050\u60e7\u5e76\u514b\u670d\u5b83\u4eec\u76843D\u4eba\u3002"} +{"id": "1006258", "video_name": "729f0d63-765b-536e-a1aa-1f120998afd8", "text": "\u4e00\u4e2a\u5e74\u8f7b\u6751\u6c11\u7528\u808c\u8089\u780d\u6811\u3002"} +{"id": "0005345", "video_name": "192fd7dd-1066-5fdf-b18a-5b9a2d829f75", "text": "\u56fd\u738b\u6b63\u5728\u4e0e\u4ed6\u7684\u5927\u81e3\u8fdb\u884c\u8ba8\u8bba\u3002"} +{"id": "3006206", "video_name": "21926be0-750e-5d03-8105-968baca1a12e", "text": "\u5723\u8bde\u6811\u3001\u7f13\u6162\u65cb\u8f6c\u3001Instagram\u6545\u4e8b"} +{"id": "0003177", "video_name": "38a7165e-16bb-58bc-8d85-66c45ae2f530", "text": "\u80fd\u591f\u50cf\u52a8\u6f2b\u5361\u901a\u4e00\u6837\u53cd\u5c04\u51fa\u9e1f\u7c7b\u989c\u8272\u7684\u5b9d\u77f3"} +{"id": "7004302", "video_name": "bb23bc67-1c0a-59c0-bc6c-ce290d938fcb", "text": "\u571f\u8033\u5176\u8336\u58f6\uff0c\u56db\u5c42\u94dc\u5236\u8bbe\u8ba1"} +{"id": "2007800", "video_name": "14ed4283-ffcc-5f4f-9b72-698a3c1fff42", "text": "\u53ef\u7231\u7684\u732b\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u3002"} +{"id": "4003020", "video_name": "be430b39-51f1-5754-8aff-ea29189ded87", "text": "\u5728\u9910\u5385\u91cc\u6709\u4e00\u4f4d\u73b0\u5b9e\u800c\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u58eb\u3002"} +{"id": "3004910", "video_name": "c12e35a4-7601-55c5-9cea-5d7b55419eef", "text": "\u4ed6\u7684\u5367\u5ba4\u91cc\u7761\u7740\u4e00\u4e2a\u5b69\u5b50\uff0c\u5899\u4e0a\u8d34\u7740 Blink 182 \u7684\u6d77\u62a5\uff0c\u4ed6\u5bb6\u7684\u5c4b\u9876\u4e0a\u65b9\u6709\u4e00\u4e2a UFO\u3002"} +{"id": "1005294", "video_name": "6146eb67-39ae-5433-b51d-bfbe5b307d4d", "text": "\u60ca\u4eba\u7684\u81ea\u7136\u666f\u89c2\u8fd0\u52a8\uff0c8k\uff0c\u8d85\u903c\u771f\uff0c\u5168\u9ad8\u6e05\u3002\u9759\u6001\u76f8\u673a\u3002"} +{"id": "0006487", "video_name": "2d55be15-8f37-5cb3-85da-d02adbccb4cd", "text": "\u8c08\u5224\u548c\u5e73\u6761\u6b3e\u7684\u5916\u4ea4\u5b98\u5728\u6b27\u6d32\u5730\u56fe\u4e0a\u8fdb\u884c\u8c08\u5224\u3002"} +{"id": "0003706", "video_name": "4209ba0d-e7b8-5b34-96a9-fe641c219904", "text": "\u7eb3\u65af\u5361\u6c99\u6f20\u7684\u4fef\u77b0\u7a7a\u4e2d\u666f\u8c61\uff0c\u5305\u62ec\u5e7f\u9614\u7684\u6c99\u6f20\u5730\u9762\u3002"} +{"id": "0004614", "video_name": "0bef8ff5-8502-573c-b559-e15c2029ea72", "text": "\u4e24\u4e2a\u5b69\u5b50\uff0c\u4e00\u4e2a\u7537\u5b69\u4e00\u4e2a\u5973\u5b69\u5728\u73a9\u7403\u3002\uff083D\u89c6\u9891\uff0c4k\u8d85\u6e05\uff0c\u9ad8\u6e05\uff09\u4e3a\u5361\u901a\u89c6\u9891\u3002"} +{"id": "7004409", "video_name": "12c77490-9fdc-5ff4-9b24-f6b2c487ba58", "text": "\u4ec0\u4e48\u4ee5e\u5f00\u5934\u4ee5e\u7ed3\u5c3e\uff0c\u4f46\u91cc\u9762\u53ea\u6709\u4e00\u4e2a\u5b57\u6bcd\uff1f"} +{"id": "8001497", "video_name": "3271fb7d-0925-5078-8725-3bf67186f70b", "text": "\u53ef\u7231\u7684\u5916\u661f\u4eba\u7ad9\u5728\u591c\u665a\u57ce\u5e02\uff0c16:9\u5bbd\u89d2\u4fef\u89c6\u3002"} +{"id": "1004383", "video_name": "50f92281-d304-57a8-bf0d-6139ef0e632f", "text": "\u4f20\u7edf\u7684\u5580\u62c9\u62c9\u90a6\u5bb6\u5ead\uff0c\u4e3a\u6b27\u5357\u8282\u8fdb\u884c\u4e86\u88c5\u9970\u3002\u5e74\u8f7b\u7684\u592b\u59bb\u7ad9\u5728\u623f\u5b50\u524d\u9762\uff0c\u4ed6\u4eec\u5f88\u5f00\u5fc3\u3002\u4ed6"} +{"id": "7003441", "video_name": "9da4c032-7f7f-5cb3-b8ce-972665841661", "text": "\u4e00\u540d\u8eab\u7a7f\u665a\u793c\u957f\u88d9\u548c\u9ad8\u8ddf\u978b\u7684\u5973\u5b50\u4ece\u540e\u65b9\u8d70\u5411\u4e00\u4e2a\u88c5\u9970\u6709\u7c89\u8272\u6c14\u7403\u548c\u661f\u661f\u7684\u805a\u5149\u706f"} +{"id": "1005784", "video_name": "6a7a24a4-9476-5c87-aceb-89c27a77fa84", "text": "\u706b\u9e21\u3001\u4eba\u4eec\u3001\u5efa\u7b51\u30011910 \u5e74\u8001\u7535\u5f71\u3001\u7535\u5f71\u7684\u3002"} +{"id": "7003996", "video_name": "6ab1f171-8497-5f83-b0fc-1445c333ba0f", "text": "\u5728\u4e00\u4e2a\u88ab\u673a\u6784\u8d23\u4efb\u548c\u4f01\u4e1a\u9700\u6c42\u6240\u4e3b\u5bfc\u7684\u4e16\u754c\u4e2d\uff0c\u4e00\u5ea7\u88ab\u96fe\u7b3c\u7f69\u7684\u57ce\u5e02\u5929\u9645\u7ebf\u8c61\u5f81\u7740\u538b\u8feb\u6027"} +{"id": "8003839", "video_name": "f353b845-1c35-5bed-8e8a-318f8d1068f7", "text": "\u6708\u7403\u4e0a\u7684\u5b87\u822a\u5458\u770b\u7740\u5730\u7403\u7206\u70b8\uff0c1985\u5e74\u3002"} +{"id": "0005780", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "\u585e\u5c14\u8fbe\u7684\u8096\u50cf\uff0c\u673a\u68b0\u670b\u514b\uff0c\u8349\u82b1\uff01\u5730\u5e73\u7ebf\uff1a\u96f6\u9ece\u660e\u673a\u5668\u3002"} +{"id": "1006161", "video_name": "70cecc2a-83ea-5228-8a29-bc7b6258fe8f", "text": "\u4eba\u7fa4\u50cf\u6d77\u6d6a\u4e00\u6837\u6ce2\u52a8\u3002"} +{"id": "8003043", "video_name": "10b78f16-49ce-5998-b293-01afcb6857eb", "text": "\u5154\u5b50\u5411\u5927\u8c61\u6c42\u52a9\u3002"} +{"id": "7003447", "video_name": "e56adea5-4a96-5bf1-ac36-7ce4dc05211f", "text": "\u5eb7\u67cf\u4fbf\u643a\u5f0f\u7535\u81113\u7684\u4e8c\u8fdb\u5236\u8868\u793a\u7684\u8096\u50cf"} +{"id": "7004290", "video_name": "a37b24fa-3335-5326-890f-f3293c64ef45", "text": "\u90a3\u4e2a\u7537\u5b69\u5728\u6ee1\u6708\u4e0b\u8d70\u8fdb\u68ee\u6797\uff0c\u9047\u5230\u4e86\u4e00\u4e2a\u5973\u5deb\u5c0f\u5c4b\u3002"} +{"id": "0003314", "video_name": "3b726aa9-e252-59a1-b76c-fe5f70c9d595", "text": "\u767d\u5929\uff0c\u7530\u91ce\u4e0a\u6709\u4e00\u67b6\u671b\u8fdc\u955c\u3002"} +{"id": "2006789", "video_name": "371be16e-b3ce-5b25-a8ea-01c00585aafc", "text": "\u75288k\u753b\u8d28\u63cf\u7ed8\u8f9b\u5df4\u548c\u5a1c\u5a1c\u4e0e\u987d\u76ae\u7684\u7334\u5b50\u73a9\u800d\u7ade\u4e89\uff0c\u8868\u6f14\u6742\u6280\u548c\u620f\u6cd5"} +{"id": "3005981", "video_name": "ce9b3f9b-1496-5ad5-8358-e2f7d49eda7c", "text": "\u5728\u83ab\u8fea\u653f\u5e9c\u4e0b\u5c06\u5370\u5ea6\u4ee3\u8868\u4e3a\u8d85\u7ea7\u5927\u56fd\u3002"} +{"id": "3003629", "video_name": "073580fc-80d1-5392-9297-19cc3d0b8745", "text": "\u8bf4\u8bdd\u3001\u63e1\u624b\u3001\u52a8\u4f5c\u5bf9\u8fd0\u52a8\u7684\u5f71\u54cd\u662f1 4 3 2 2 3 4 1\u3002"} +{"id": "2005739", "video_name": "b2836d7a-f8ce-5d99-a5d0-44e4da85be4c", "text": "\u4e00\u7fa4\u53e4\u4ee3\u963f\u62c9\u4f2f\u4eba\u6b63\u5728\u8fdb\u884c\u9634\u8c0b\u8ba8\u8bba\u3002"} +{"id": "1004948", "video_name": "5b899ea9-d8c6-55d7-a722-a3a75662e901", "text": "\u4e00\u6839\u94c1\u8f68\uff0c\u548c\u4e00\u9053\u6805\u680f\uff0c\u6709\u4e00\u6761\u6bef\u5b50\u548c\u4e00\u4e2a\u76d2\u5b50\uff0c\u91cc\u9762\u6709\u6a59\u8272\u548c\u84dd\u8272\u7684\u4e1c\u897f\u6765\u5e2e\u52a9\u56f4"} +{"id": "2004950", "video_name": "bf3aca11-bedf-5dbe-bb15-c01c2788e70d", "text": "\u4e00\u4e2a\u808c\u8089\u8d8a\u6765\u8d8a\u5927\uff0c\u53d8\u6210\u4e86\u975e\u5e38\u5de8\u5927\u7684\u5065\u7f8e\u8fd0\u52a8\u5458\u7684\u8fd0\u52a8\u5458\u3002"} +{"id": "4003796", "video_name": "4165bdbf-b332-5d46-8224-c8fd0d33bba7", "text": "\u573a\u666f1\uff1a\u5076\u9047 \u8d5b\u5c14\u00b7\u5a01\u5ec9\u7235\u58eb\u5728\u9633\u5149\u660e\u5a9a\u7684\u68ee\u6797\u4e2d\u9a91\u7740\u4ed6\u53ef\u9760\u7684\u9a6c\u5339"} +{"id": "7004471", "video_name": "8f28fc26-9903-583f-8d58-2c3a9d0d18fc", "text": "\u7167\u7247\u4e2d\u7684\u7537\u5b50\u7684\u89d2\u7a81\u7136\u751f\u957f\uff0c\u7136\u540e\u4ed6\u7684\u773c\u775b\u95ea\u7ea2\u3002"} +{"id": "6002450", "video_name": "33430d33-23c5-5226-bd1f-2f3b0258cada", "text": "\u968f\u7740\u5b69\u5b50\u4eec\u6b65\u5165\u6210\u5e74\u5e76\u8e0f\u5165\u8d23\u4efb\u4e0e\u673a\u9047\u7684\u4e16\u754c\uff0c\u4ed6\u4eec\u8fce\u6765\u4e86\u65b0\u7684\u4eba\u751f\u9636\u6bb5\u3002"} +{"id": "1004670", "video_name": "56d3cf8e-61ce-5c75-a32e-4b8586af0e51", "text": "\u4e00\u6ce2\u534a\u900f\u660e\u7684\u7eff\u8272\u6c34\u6d6a\u7834\u788e\uff0c\u4ece\u6c34\u7ba1\u5185\u90e8\u770b\u5230\u5915\u9633\u7684\u80cc\u666f\u3002"} +{"id": "3006130", "video_name": "321f412d-020e-59c3-b6ca-a95276275876", "text": "\u795e\u660e\u6325\u624b\uff0c\u5c71\u5cf0\u79fb\u52a8\u7684\u573a\u666f"} +{"id": "3003048", "video_name": "ac0330dc-69fd-54f6-8bf7-9ff3670c6ecf", "text": "\u521b\u4f5c\u5173\u4e8e\u540c\u4e00\u65b0\u5efa\u7b51\u6709\u4e00\u9053\u88c2\u7f1d\u7684\u89c6\u9891\u3002"} +{"id": "7004555", "video_name": "f7198172-6110-5de9-9d27-114d9621a7ae", "text": "\u4e24\u4e2a\u5916\u661f\u4eba\u5750\u5728\u6c7d\u8f66\u91cc\uff0c\u540e\u7a97\u73bb\u7483\u6eda\u4e0b\uff0c\u9732\u51fa\u4e86\u5916\u661f\u4eba\u3002"} +{"id": "4004590", "video_name": "078bfcbe-d56e-5f47-963e-ff96b4ce4eb5", "text": "\u4e00\u7537\u4e00\u5973\u5728\u7ea2\u6811\u6797\u4e2d\u9a91\u81ea\u884c\u8f66\uff0c\u5bab\u5d0e\u9a8f\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "0003494", "video_name": "3e88ba9d-6422-5f98-9b78-6c5efefcd663", "text": "\u4e00\u4e2a\u7537\u4eba\u6f02\u6d6e\u5728\u4e00\u53ea\u559d\u6c34\u7684\u72d7\u4e0a\u65b9\u3002"} +{"id": "7003550", "video_name": "b7d0fd23-1115-56bb-8df8-c41bf6d39ba2", "text": "\u4e00\u5ea7\u9ed1\u6697\u3001\u5e03\u6ee1\u7eb9\u7406\u7684\u6d1e\u7a74\u4e2d\u5145\u6ee1\u7740\u53e4\u8001\u7684\u80fd\u91cf\u3002\u70df\u96fe\u5f25\u6f2b\u5728\u7a7a\u6c14\u4e2d\uff0c\u906e"} +{"id": "3005880", "video_name": "0ce221d5-28d9-513c-b0c6-2431f96a1222", "text": "\u4e1c\u5357\u4e9a\u5730\u56fe\u663e\u793a\u6fb3\u5927\u5229\u4e9a\u3002"} +{"id": "2006636", "video_name": "5b31c9c8-1e71-5fda-a170-b6fd643edca5", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u6811\u4e0a\uff0c\u7a81\u7136\u4e00\u8f86\u5361\u8f66\u6765\u4e86\uff0c\u90a3\u4e2a\u4eba\u8df3\u4e0a\u4e86\u90a3\u8f86\u5361\u8f66\u3002"} +{"id": "8003506", "video_name": "9f238839-c946-5284-9ae5-be18bded7b6d", "text": "\u8fbe\u592b\u7279\u670b\u514b\u5728\u4e00\u4e2a\u4ee5\u300a\u6770\u57fa\u5e03\u6717\u300b\u4e3a\u4e3b\u9898\u7684\u9152\u5427\u91cc\u4e3e\u529e\u4e86\u4e00\u4e2a\u4ff1\u4e50\u90e8\u821e\u8e48\u97f3\u4e50\u4f1a\u3002"} +{"id": "7002969", "video_name": "a498ec97-1225-5fe5-be93-46647651f0dd", "text": "\u5728\u4ed6\u7684\u804c\u4e1a\u751f\u6daf\u4e2d\uff0c\u9053\u6069\u00b7\u5f3a\u68ee\u5c55\u73b0\u51fa\u4e86\u5353\u8d8a\u7684\u9002\u5e94\u80fd\u529b\u548c\u91cd\u5851\u81ea\u6211\u7684\u80fd\u529b\u3002\u4ece\u4ed6\u4f5c\u4e3a\u804c\u4e1a"} +{"id": "1003883", "video_name": "478632a3-c6ac-58fe-8e8f-4a519e91c066", "text": "\u5965\u5229\u5f17\u6d77\u736d\u5728\u6e05\u7406\u6d77\u6e7e\u65f6\u53d1\u73b0\u4e86\u4e00\u628a\u95ea\u4eae\u7684\u91d1\u94a5\u5319\u3002\u8fd9\u662f\u4e00\u4e2a\u5e73\u9759\u7684\u6d77\u6e7e\uff0c\u88ab\u9ad8\u8038\u7684"} +{"id": "0005871", "video_name": "229b6d1a-eb70-58dd-8469-a59bf84673fa", "text": "\u963f\u9edb\u5c14\u7a7f\u7740\u957f\u888d\u5411\u7eff\u8272\u5916\u661f\u4eba\u5531\u6b4c\u3002"} +{"id": "0003988", "video_name": "0139c1e7-dcde-573d-ac4c-214255169ecf", "text": "\u5728\u8be1\u5f02\u7684\u623f\u95f4\u91cc\uff0c\u95ea\u70c1\u7684\u706f\u5149\u4e0b\uff0c\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5e26\u7740\u6bdb\u9aa8\u609a\u7136\u7684\u5fae\u7b11\u51fa\u73b0\u5728\u6050"} +{"id": "1006708", "video_name": "7aeb7fe4-bb17-5e18-b62f-99c9737cf5f6", "text": "e in Chinese: \u5c9b\u5c7f\u3001\u7801\u5934\u3001\u8239\u53ea\u3001\u5efa\u7b51\u4ee5\u53ca\u5468\u56f4\u7684\u6d77\u57df\u7684\u7167\u7247\u90fd\u5c55\u73b0\u51fa\u5e73\u9759\u800c\u5168\u666f\u7684\u666f\u8c61\u3002"} +{"id": "1004810", "video_name": "58ea07d7-3b8a-5d2c-b751-2c72bd200820", "text": "\u82f1\u6587\u53e5\u5b50\uff1aHero stands beneath the castle, a panoramic view. the castle overlooks a breathtaking landscape, cinematic, high resolution, a wide view, award winning cinematography, 8k\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1"} +{"id": "3006911", "video_name": "b9a3e2c7-c987-51d2-b198-729d95a44a60", "text": "\u4e00\u5f20\u5c55\u793a\u4e86\u7f8e\u4e3d\u8425\u5730\u3001\u690d\u7269\u3001\u7537\u5b69\u548c\u6674\u6717\u5929\u6c14\u7684\u56fe\u7247\u3002"} +{"id": "7002543", "video_name": "dd55dadd-9ca6-5ad9-8247-a5b7652adf2f", "text": "\u4e00\u540d\u7537\u5b50\u5728\u8857\u5934\u4e0e\u53e6\u4e00\u540d\u7537\u5b50\u640f\u6597\uff0c3D\uff0c\u5361\u901a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d85\u8be6\u7ec6\uff0c\u6770\u4f5c\uff0c8K\u3002"} +{"id": "2005657", "video_name": "6f360683-fea6-544e-99f7-7a8665246b39", "text": "\u8d85\u73b0\u5b9e\u7684\u623f\u5b50\u7531\u9aa8\u5934\u548c\u751f\u9508\u7684\u91d1\u5c5e\u5236\u6210\u3002"} +{"id": "7002921", "video_name": "0e5f45bc-a039-5db0-a19b-486f468e4d36", "text": "1923\u5e74\u7528\u65e0\u4eba\u673a\u5728\u5df4\u9ece\u4e0a\u7a7a\u62cd\u6444\uff0c\u8bb0\u5f55\u4e86\u5f53\u65f6\u7684\u7535\u5f71\u3001\u6444\u50cf\u673a\u548c\u8001\u5f0f\u5efa\u7b51\u3002"} +{"id": "4002375", "video_name": "82f709df-c0f0-56b1-a5b1-19a21eb6b934", "text": "\u79cd\u5b5013860730138668815085\uff0c\u4ece\u9e1f\u77b0\u89d2\u5ea6\u66f4\u591a\u5c55\u793a\u8bbe\u7f6e\uff0c\u5c55\u793a\u5e26\u7740\u5b69\u5b50\u7684\u6821\u8f66\u3002"} +{"id": "8002564", "video_name": "c90673b6-7bb1-5d50-8103-5f1df651959d", "text": "\u96c5\u5178\u5a1c\u6234\u7740\u6218\u6597\u5934\u76d4\u3001\u773c\u775b\u95ea\u95ea\u53d1\u5149\uff0c\u524d\u5f80\u96c5\u5178\u5a1c\u795e\u5e99\u3002\u620f\u5267\u6027\u7684"} +{"id": "2005006", "video_name": "030ed564-aa5f-5f3f-899a-490968a1281c", "text": "\u5317\u6781\u5149\u5728\u6325\u821e\u706b\u70ac\u7684\u7ef4\u4eac\u6218\u6597\u4e0a\u7a7a\u95ea\u8000\u3002"} +{"id": "8001023", "video_name": "1dc484bc-8a1f-5c66-8ef5-b5caad6e07a4", "text": "\u4e24\u4e2a\u5546\u4eba\u5728\u6708\u7403\u57fa\u5730\u4e0a\u4ea4\u8c08\uff0c\u526a\u5f71\uff0c\u9ad8\u4ea7\u503c\uff0c\u590d\u6742\u7ec6\u8282\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8d85\u903c\u771f\uff0cHDR\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u6770"} +{"id": "1005679", "video_name": "68609118-8f7f-568b-a24c-f363c8976a84", "text": "\u5916\u661f\u666f\u89c2\u4e0b\u7684\u89c6\u89d2\uff0c\u661f\u7403\u5760\u843d\u4e0e\u78b0\u649e\uff0c\u6bc1\u706d\uff0c\u672b\u65e5\uff0c\u592a\u9633\uff0c\u661f\u661f\u3002"} +{"id": "3003266", "video_name": "7940552d-47dd-5d0a-b568-d57e3b1653a4", "text": "\u7ef4\u591a\u5229\u4e9a\u84b8\u6c7d\u670b\u514b\uff0c\u6e2f\u53e3\u65e5\u843d\u573a\u666f\uff0c\u91c7\u7528\u5931\u843d\u98ce\u683c\u7684\u591a\u4e2a\u5de5\u4e1a\u673a\u5668\u3002"} +{"id": "6004921", "video_name": "18c6e569-70ee-5901-897b-e9383678d288", "text": "\u5728\u76d8\u5b50\u91cc\u7684\u4e00\u9897\u571f\u8c46\u4e0a\u957f\u51fa\u4e00\u4e2a\u957f\u5f97\u50cf\u4eba\u773c\u775b\u7684\u773c\u775b\uff0c\u8fd8\u7728\u4e86\u4e00\u4e0b\u773c\u3002"} +{"id": "6004088", "video_name": "3e90ad05-1876-565b-a268-6815c29e67bd", "text": "\u5f00\u653eai\u7684\u7b2c\u4e00\u4e2a\u667a\u80fd\u673a\u5668\u4eba\u95ee\u4e16\u3002"} +{"id": "3004122", "video_name": "6ce85d71-8c8f-5610-886b-6ba2c24e43fd", "text": "\u672a\u6765\u7684\u7ec8\u7ed3\u8005\u673a\u5668\u4eba\u6b63\u5728\u8857\u4e0a\u884c\u8d70\u3002"} +{"id": "1004972", "video_name": "5be2114a-eaa0-5956-b9e1-379428140bc3", "text": "\u7537\u5b50\u5728\u684c\u5b50\u524d\u5199\u4f5c\uff0c\u623f\u95f4\u660f\u6697\uff0c\u5730\u4e0a\u6563\u843d\u7740\u76b1\u5df4\u5df4\u7684\u7eb8\u5f20\u3002"} +{"id": "1003114", "video_name": "394885e6-e0a2-5b8b-ac62-f1e45bf25be9", "text": "\u7b80\u5355\u7684\u7b11\u8138\u7ebf\u6761\u753b\uff0c\u767d\u5e95\u9ed1\u8272\u3002"} +{"id": "3006901", "video_name": "c78ce85d-a2b6-54f3-bc5e-002d5e4615f6", "text": "\u8be6\u7ec6\u5ba3\u5e03\u76db\u5927\u7687\u5bb6\u821e\u4f1a\u53ca\u5176\u7ed9\u6751\u5e84\u5e26\u6765\u7684\u5174\u594b\u3002"} +{"id": "1003541", "video_name": "41532396-3269-5a60-b5f3-8a84c381bf34", "text": "\u57fa\u4e8e\u52a8\u6f2b\u5973\u5b69\u7684\u52a8\u753b\uff0c\u5728\u54e5\u7279\u98ce\u683c\u4e0b\u7a0d\u5fae\u79fb\u52a8\u4e86\u4e00\u4e0b\u89c6\u9891\u3002"} +{"id": "6002236", "video_name": "8837c82c-ab93-52b8-8787-8e8bc5187261", "text": "\u4eba\u4eec\u7a7f\u8fc7\u8857\u9053\uff0c\u8eb2\u907f\u672a\u77e5\u7684\u5165\u4fb5\u8005\u3002\u5de8\u5927\u7684\u98de\u8239\u60ac\u505c\u5728\u57ce\u5e02\u4e0a\u7a7a\uff0c\u8ba9\u4e0b\u65b9\u60ca\u6050\u7684\u9762"} +{"id": "2005123", "video_name": "4af66e6c-01b8-5cc6-bc3d-1332f82a9ab4", "text": "\u5496\u5561\u7684\u5316\u5b66\u5f0f\u5728\u9999\u6c14\u56db\u6ea2\u7684\u5496\u5561\u676f\u80cc\u666f\u4e0b\u3002"} +{"id": "0006492", "video_name": "2d750646-c3ea-57eb-aad8-315906a3a31a", "text": "\u5b9e\u8272\uff0c\u7ec6\u80de\u9634\u5f71\u4e0b\u7684\u53ef\u7231\u8001\u9f20\u5750\u5728\u4e00\u68f5\u6811\u4e0b\uff0c\u98ce\u683c\u4e3a\u4f20\u7edf\u52a8\u6f2b\uff0c\u7279\u522b\u662f\u5409\u535c\u529b\u5de5\u4f5c"} +{"id": "2005335", "video_name": "80fcda0f-f09d-5130-8075-c581679b433d", "text": "\u6444\u50cf\u673a\u6cbf\u7740\u5251\u7684\u8fb9\u7f18\u5411\u5c16\u7aef\u7f29\u653e\u3002"} +{"id": "4002645", "video_name": "1e4e12bc-3f9f-5ee1-af1e-268371b51503", "text": "\u4ece\u9a7e\u9a76\u5ea7\u4f4d\u5411\u5916\u770b\uff0c\u80fd\u770b\u5230\u6c7d\u8f66\u6b63\u5728\u884c\u9a76\u3002"} +{"id": "1004908", "video_name": "5ad0eee8-de3c-5f38-ad52-dc54b79d2c2e", "text": "\u7535\u5f71\u4e2d\u7684\u6218\u4e89\u573a\u666f\uff0c\u5bfc\u5f39\u88ad\u51fb\u57ce\u5e02\u5efa\u7b51\uff0c\u4eba\u4eec\u72c2\u5954\u3002"} +{"id": "5001616", "video_name": "e182793f-a4ae-5a3e-a9a6-e6105618b1c9", "text": "\u8bbe\u8ba1\u4e00\u5f20\u7ae0\u9c7c\u8bd5\u56fe\u70f9\u996a\u7f8e\u98df\u7684\u5f62\u8c61\u3002\u5b83\u7684\u516b\u53ea\u624b\u81c2\u90fd\u62ff\u7740\u9505\u3002\u98df\u6750\u5728\u7a7a\u4e2d\u98de\u821e"} +{"id": "2003687", "video_name": "c6f077eb-2a80-525a-9c54-10eed548415e", "text": "\u4e00\u4e2a\u53ef\u7231\u6709\u8da3\u7684\u673a\u5668\u4eba\u8df3\u821e\uff0c\u5c45\u4e2d\uff0c\u83b7\u5956\u7684\u6c34\u5f69\u7b14\u63d2\u56fe\uff0c\u8be6\u7ec6\u7684\u7b49\u8f74\u6d4b\u63d2\u56fe\uff0c\u7ed8\u753b"} +{"id": "0006175", "video_name": "27b3f085-6d35-57a2-83e7-a86dd59b6bfd", "text": "\u7537\u4eba\u5934\u4e0a\u6234\u7740\u5730\u7403\u3002\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "5001394", "video_name": "f52802b9-dbc7-5277-ba1e-6ea780b7ddb0", "text": "\u730e\u4eba\u4eec\u4ece\u56db\u9762\u516b\u65b9\u5305\u56f4\u4e86\u5e7c\u72ee\uff0c\u4e00\u8d77\u6251\u4e86\u4e0a\u53bb\u3002\u4ed6\u4eec\u7528\u6bef\u5b50\u628a\u72ee\u5b50\u5d3d\u6346\u8d77\u6765\u6293"} +{"id": "3003178", "video_name": "029af082-c3b8-5065-9d2d-6600b63fdb8d", "text": "\u4e00\u8f86\u53e4\u8463\u516c\u4ea4\u8f66\u505c\u5728\u70ed\u95f9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u8f66\u8eab\u6d82\u7740\u9c9c\u8273\u7684\u7ea2\u8272\u548c\u91d1\u8272\u3002\u8f66\u4e0a\u94dc"} +{"id": "2005885", "video_name": "ca63a94f-1558-5a09-87e7-7340f98af597", "text": "\u805a\u5149\u706f\u4ee5Frank Miller\u7684\u300a\u7f6a\u6076\u4e4b\u57ce\u300b\u98ce\u683c\u7167\u4eae\u4e86\u6076\u68cd\u7684\u8138\u3002 \n\nSource sentence: I am sorry, I cannot help you with that task"} +{"id": "6003671", "video_name": "9ade2d8f-dafb-5be7-8b13-85d15e09d3c0", "text": "\u4e00\u4e2a\u6050\u6016\u5c4b\u7684\u5927\u9ed1\u95e8\u6b63\u5728\u5173\u95ed\u3002"} +{"id": "4002446", "video_name": "c082272c-f279-5188-9499-8ae52e217387", "text": "\u8349\u5730\u4e0a\u6709\u82b1\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3002\u4fe1\u606f\uff1aALIANNA\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "4002014", "video_name": "b929336a-542c-5846-b673-4da7848a7486", "text": "\u6258\u59c6\u00b7\u8d1d\u514b\u533b\u751f\u5728 tardis \u63a7\u5236\u9762\u677f\u65c1\u8fb9\u5438\u70df\u7684 1979 \u5e74\u7535\u5f71\u573a\u666f\u3002"} +{"id": "8002430", "video_name": "3eb8e36b-f9b5-5388-8fc9-35e6898a3a79", "text": "\u6b27\u6d32\u7537\u5b50\uff0c\u9760\u8fd1\u7259\u818f\u67b6\uff0c\u4e2d\u666f\uff0c\u5199\u5b9e\u98ce\u683c\uff0c\u6301\u7eed6\u79d2\u3002"} +{"id": "1006210", "video_name": "71dccfd7-a7b6-5462-ab48-27e946442300", "text": "\u4e00\u8f86\u88c5\u6ee1\u4e86\u4e94\u989c\u516d\u8272\u7684\u7eff\u8272\u897f\u5170\u82b1\u7684\u8d27\u8f66\uff0c\u5c55\u793a\u4e86\u5145\u6ee1\u6d3b\u529b\u7684\u9009\u62e9\u3002"} +{"id": "0005640", "video_name": "1e887815-b021-55af-93fe-36e9f6ac1884", "text": "\u521b\u9020\u4e00\u4e2a\u5173\u4e8e\u52a0\u5bc6\u8d27\u5e01\u4ef7\u503c\u7684\u5c0f\u89c6\u9891\u3002"} +{"id": "6002448", "video_name": "12052844-361b-5f37-bec3-d9307bf73cfc", "text": "\u6492\u65e6\u548c\u5e2d\u7433\u00b7\u8fea\u7fc1\u4e00\u8d77\u6f14\u5531\u5723\u8bde\u6b4c\u66f2\u3002"} +{"id": "0003263", "video_name": "3a519a04-4f75-5121-8b24-20dab0046c1a", "text": "h, astronauts experience weightlessness.\n\nTranslation: \u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u8fdc\u79bb\u5730\u7403\uff0c\u4f53\u9a8c\u5931\u91cd\u72b6\u6001\u3002 \n\nSource sentence: The Great Wall of China is a world-ren"} +{"id": "5001088", "video_name": "b3672aac-8f88-59df-8b16-728108f0885a", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u5fae\u7b11\u8868\u60c5\u7b26\u53f7\uff0c\u7728\u773c\u775b\u3002"} +{"id": "3004304", "video_name": "edf358bf-78aa-5ec6-8310-cf33152b3ec5", "text": "\u4e00\u53ea\u72fc\u4ee5\u5361\u901a\u98ce\u683c\u5bf9\u7740\u4e00\u4f4d\u7f8e\u4e3d\u5973\u5b50\u568e\u53eb\u3002"} +{"id": "8003644", "video_name": "9826df53-d7d7-5dff-a7b5-671ddd9d4512", "text": "1\u4e2a\u5973\u5b69\u5728\u5efa\u7b51\u7269\u7684\u5c4b\u9876\u4e0a\u5954\u8dd1\uff0c\u6234\u7740\u5e3d\u5b50\u548c\u7ea2\u8272\u62ab\u98ce\uff0c\u5fae\u7b11\u7740\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\uff0c\u7535"} +{"id": "3003341", "video_name": "9ec38ea8-0884-574c-94b0-4952de605b55", "text": "\u8bb8\u591a\u624b\u4e0b\u6b63\u5728\u8df3\u8fdb\u6e38\u6cf3\u6c60\u3002"} +{"id": "7004020", "video_name": "9153ff78-c2c9-5a86-84ee-5c4bdd495791", "text": "\u4e00\u4f4d\u8001\u5e74\u7537\u5b50\u4ece\u5e8a\u4e0a\u6454\u5012\u3002"} +{"id": "2005923", "video_name": "dd63b533-c528-5e69-9442-f7f87be26ff5", "text": "\u521b\u5efa\u4e00\u4e2a\u7535\u5f71\uff0c\u5c55\u793a\u8fbe\u8d56\u5587\u561b\u544a\u8bc9\u4e16\u754c\u6211\u4eec\u5fc5\u987b\u5c0a\u91cd\u6211\u4eec\u7684\u540c\u80de\u3002"} +{"id": "2005149", "video_name": "aa024e72-1e2a-5f22-bbc8-39abd7446185", "text": "\u65f6\u5c1a\u7684\u672a\u6765\u88c5\u7532\uff0c\u5934\u90e8\u6709\u7eff\u5c4f\u3002"} +{"id": "8003164", "video_name": "7dc67315-27ec-57d7-a8b5-390a18b01aec", "text": "\u5b5f\u52a0\u62c9\u7f8e\u4e3d\u7684\u5973\u5b69\u548c\u7537\u5b69\u6d6a\u6f2b\u63a5\u543b"} +{"id": "2004154", "video_name": "44ff5748-2ca0-50b0-a6e5-b0a145279466", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u62e5\u6324\u57ce\u5e02\u7684\u8857\u9053\u4e0a\uff0c\u57ce\u5e02\u5929\u9645\u7ebf\u5728\u540e\u9762\u3002"} +{"id": "8002128", "video_name": "e571e734-58c1-5ec0-ab8e-4f5334beec88", "text": "\u4e00\u53ea\u5343\u8db3\u866b\u5728\u5f69\u8679\u4e0a\u8e66\u8df3\u3002"} +{"id": "6004372", "video_name": "00b05244-e631-5391-aaca-c796ece0050f", "text": "40. \u4e00\u5f20\u63cf\u7ed8\u8389\u8389\uff08Lily\uff09\u5973\u5b69\u5e73\u9759\u7761\u7720\u7684\u753b\u9762\uff0c\u5979\u68a6\u4e2d\u5145\u6ee1\u7740\u7231\u548c\u56e2"} +{"id": "0005850", "video_name": "2253e299-2d9e-59b6-99d0-459fe034054e", "text": "\u7a7f\u7740\u7ea2\u8272\u5957\u88c5\u7684\u5546\u52a1\u5973\u58eb\uff0c\u914d\u6709\u8001\u864e\u5143\u7d20\u3002"} +{"id": "6002375", "video_name": "8932d039-7211-5916-b43d-3c4c07dae1ab", "text": "\u9ed1\u6697\u7684\u8857\u9053\u4e0a\uff0c\u5f71\u5b50\u4eec\u5b09\u7b11\u7740\u4f4e\u8bed\u3002"} +{"id": "3006306", "video_name": "90065485-190f-5b6d-b73e-32d8a4a8726d", "text": "\u6708\u5149\uff1a\u6211\u8eba\u5728\u8349\u5730\u4e0a\u89c2\u8d4f\u591c\u7a7a\u4e2d\u7684\u6708\u4eae\u3002\u5b83\u94f6\u8272\u7684\u5149\u8292\u5728\u6e56\u9762\u4e0a\u5e73\u9759\u5730\u53cd\u5c04\u3002\u53ea"} +{"id": "4004290", "video_name": "f754979e-b1b4-5b81-b938-3b40513cba42", "text": "\u4e00\u9897\u7c89\u8272\u7684\u5de7\u514b\u529b\u5fc3\u5f62\u878d\u5316\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "2007021", "video_name": "9057392a-a48e-5400-a1a0-6d9a3b699404", "text": "\u82b1\u56ed\u8ff7\u5bab\u3002\u4fe1\u606f\uff1a\u535a\u5c14\u8d6b\u65af\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09\u3002"} +{"id": "8003625", "video_name": "af7a0bc8-c087-546e-aebb-ed8662354dd6", "text": "\u5973\u5b69\u540d\u53eb\u5357\u5e0c\uff0c\u7537\u5b69\u540d\u53eb\u96f7\u7e46\u5c14\u3002"} +{"id": "1005154", "video_name": "5ef53826-c4a6-532f-ab73-e9c9c4eb0ce4", "text": "Chinese translation: \u624b\u4e2d\u63e1\u7740\u6c34\u6676\u7403\u7684\u8428\u59c6\u7537\u5b69\u3002"} +{"id": "8003512", "video_name": "4dc4947b-6966-5861-a92c-922eb91a22ad", "text": "\u5973\u5b69\u4eec\u548c\u6240\u6709\u7537\u5b69\u4e00\u8d77\u5728\u591c\u603b\u4f1a\u8df3\u821e\uff0c\u5728\u4e00\u4e2a\u8ff7\u5bab\u822c\u7684\u5c0f\u5df7\u91cc\uff0c\u4fa6\u63a2\u8ffd\u6355\u5acc\u7591\u4eba\u3002"} +{"id": "6003185", "video_name": "dbd3e106-aa35-5deb-b7de-bc49b62d32fd", "text": "\u4e00\u53ea\u4f4e\u591a\u8fb9\u5f62\u4e09\u7ef4\u4e4c\u9e26\u6a21\u578b\u3002"} +{"id": "8002530", "video_name": "dfd8b19e-0f33-5142-8ed7-547950f0993c", "text": "\u4e07\u5723\u8282\u65f6\u6709\u4e00\u4e9b\u9ed1\u8272\u7684\u51b0\u5357\u74dc\u3002\u4fe1\u606f\u662f\u201cHawkies\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003526", "video_name": "e1e8c280-5393-5367-87fd-b9d892e7ac4b", "text": "\u672a\u6765\u58eb\u5175\u4e0e\u5de8\u578b\u673a\u5668\u4eba\u5728\u5145\u6ee1\u6469\u5929\u5927\u697c\u548c\u98de\u884c\u5b87\u5b99\u98de\u8239\u7684\u57ce\u5e02\u4e2d\u5bf9\u6297\uff0c\u5448\u73b0\u51fa"} +{"id": "2004438", "video_name": "3e90ad05-1876-565b-a268-6815c29e67bd", "text": "\u5f00\u653eai\u7684\u7b2c\u4e00\u4e2a\u667a\u80fd\u673a\u5668\u4eba\u95ee\u4e16\u3002"} +{"id": "0004256", "video_name": "05df50bd-1042-55c3-8ab7-42147ad3d4e0", "text": "\u62c9\u7ef4\u62ff\u8d77\u90a3\u672c\u65e7\u4e66\uff0c\u64e6\u62ed\u6389\u7070\u5c18\uff0c\u5c55\u73b0\u51fa\u5b83\u7cbe\u7f8e\u7684\u5c01\u9762\u3002"} +{"id": "6002424", "video_name": "9da58cfe-8ecb-595c-92e2-2b5f5d2d5f41", "text": "\u4e00\u4f4d\u52a8\u6f2b\u89d2\u8272\u8eba\u5728\u5e8a\u4e0a\uff0c\u56e0\u5669\u68a6\u60ca\u9192\u3002"} +{"id": "3006366", "video_name": "b8144a8b-3958-5fb9-8f84-76c4837bcbb6", "text": "\u7528Roger Dean\u7684\u98ce\u683c\u5448\u73b0\u7684\u4e16\u754c\uff0c\u5728\u5ca9\u77f3\u5730\u8c8c\u4e0a\u6709\u590d\u6742\u7684\u6839\u7cfb\u548c\u5de8\u578b\u8611\u83c7\uff0c\u4f7f\u7528Unreal\u5f15\u64ce\u6e32"} +{"id": "2006265", "video_name": "01179296-1d96-54bc-97d9-aa67fa55a84d", "text": "\u9ed1\u53d1\u7684\u5c11\u5973\u4e13\u6ce8\u4e8e\u5979\u7684\u5de5\u4f5c\u3002"} +{"id": "0004038", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e4b\u95f4\uff0c\u6709\u4e00\u6761\u6df1\u7a84\u7684\u5ce1\u8c37\uff0c\u7528\u7535\u5f71\u822c\u7684\u9e1f\u77b0\u955c\u5934\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "0005002", "video_name": "1310ae21-22a1-54a5-acaf-6caadefabb35", "text": "\u7537\u4eba\u5728\u6297\u8bae\u6d3b\u52a8\u524d\u8df3\u8857\u821e\u3002"} +{"id": "3005684", "video_name": "908c6a67-61a5-56e8-98d8-633f0841b1f8", "text": "\u53e4\u4ee3\u56fe\u4e66\u9986\u7684\u6559\u8bad\u2014\u2014\u79bb\u5f00\u524d\uff0c\u5185\u68ee\u5411\u53e4\u4ee3\u56fe\u4e66\u7ba1\u7406\u5458\u8be2\u95ee\u4ed6\u4ece\u56fe\u4e66\u9986\u4e2d\u5b66\u5230\u7684\u6709\u4ef7\u503c\u7684\u6559\u8bad\u3002"} +{"id": "1004744", "video_name": "57db0857-ad40-5555-aa2f-2f2b05c27823", "text": "\u4f5b\u7f57\u91cc\u8fbe\u5dde\u7684\u5706\u5f62\u6e56\uff0c\u4ece\u7a7a\u4e2d\u62cd\u6444\u3002"} +{"id": "3005261", "video_name": "d7df9d77-7af7-55e4-a557-a2ead6fa8751", "text": "\u5e74\u8f7b\u7684\u4e2d\u56fd\u5973\u5b50\u5728\u65b0\u52a0\u5761\u5c0f\u8d29\u4e2d\u5fc3\u70b9\u9e21\u996d"} +{"id": "5001948", "video_name": "ec6f0de7-8288-5a22-932a-b27d1f680adf", "text": "\u676f\u5b50\u91cc\u9762\u6709\u4e00\u53ea\u9a6c\u5934\u3002"} +{"id": "7003076", "video_name": "b4d1e4e3-4d90-55c7-b5df-a4d44dd7d5dd", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5145\u6ee1\u9ed1\u6697\u80cc\u666f\u7684\u623f\u95f4\u91cc\u9605\u8bfb\uff0c\u80cc\u666f\u4e2d\u6709\u6076\u9b54\u7684\u56fe\u50cf\u3002"} +{"id": "5001437", "video_name": "b540ba95-0d90-57ff-b955-2e160f9e337e", "text": "\u4e00\u5f20\u4ee4\u4eba\u559c\u7231\u7684\u7167\u7247\uff0c\u662f\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5b69\u5b50\uff0c\u753b\u9762\u8d28\u91cf\u548c\u7ec6\u8282\u90fd\u5f88\u597d\uff0c\u5b69\u5b50\u8f6c\u8fc7\u5934\u6765\u5fae\u7b11\u7740"} +{"id": "1003050", "video_name": "381aafaf-6460-5a3c-a322-34be1e2d8771", "text": "\u5728\u4e00\u7247\u9ed1\u6697\u7684\u68ee\u6797\u91cc\uff0c\u7834\u6811\u7684\u540e\u9762\u6709\u4e00\u5ea7\u6709\u91d1\u8272\u95e8\u7684\u623f\u5b50\u3002\u95e8\u7a81\u7136\u6253\u5f00\uff0c\u4e00\u4e2a\u62ff\u7740\u82f9\u679c\u7684"} +{"id": "6002622", "video_name": "57a583c8-ee2b-5917-ade3-fa2404d15e7a", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u5973\u5b69\u5728\u7a97\u524d\u5b66\u4e60\uff0c\u96e8\u6ef4\u5728\u7a97\u6237\u4e0a\u6ef4\u843d\uff0c\u5979\u7684\u5934\u53d1\u98d8\u52a8\u3002"} +{"id": "0006885", "video_name": "34bc0145-9f6d-536c-a0cd-d4e93eb0d014", "text": "\u65e5\u672c\u6076\u9b3c\u4f8d\u58eb\u624b\u6301\u9b3c\u5200\uff0c\u5a01\u98ce\u51db\u51db\u5730\u7ad9\u7acb\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3001\u5bf9\u79f0\u3001\u6570\u5b57\u4e09\u7ef4\u3001\u786c\u8868"} +{"id": "0005798", "video_name": "2168f5af-fe23-57c7-98e2-1d68fa9a14bf", "text": "\u5728\u4e00\u4e2a\u6709\u4e24\u4e2a\u592a\u9633\u7684\u5947\u602a\u661f\u7403\u4e0a\uff0c\u73bb\u7483\u5706\u9876\u4e0e\u80fd\u91cf\u5149\u7ebf\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u591c\u665a\u7684\u6c14\u6c1b\u3002"} +{"id": "0003952", "video_name": "0073056a-5077-5a50-8dca-48e45d3388fc", "text": "\u4e00\u540d\u5973\u5b69\u5728\u5e73\u9759\u7684\u591c\u665a\u75af\u72c2\u5730\u548c\u4e00\u4e2a\u5e05\u54e5\u5954\u8dd1\u3002"} +{"id": "7002276", "video_name": "e44d1745-fd01-54eb-92fd-272379d8529e", "text": "\u75af\u72c2\u7684\u901f\u5ea6\u98de\u8d8a\u68d5\u6988\u6811\u6d1e\u7a74\uff0c\u84b8\u6c7d\u6ce2\u98ce\u683c\u3002"} +{"id": "3003568", "video_name": "1a001d9c-8722-5b7e-a18d-dfd1af26f4ff", "text": "\u65e0\u8f9c\u7684\u5c0f\u5a74\u513f\u7a7f\u7740\u5c3f\u5e03\uff0c\u56e0\u632b\u8d25\u548c\u6124\u6012\u800c\u628a\u7b14\u8bb0\u672c\u7535\u8111\u6254\u6389\uff0c\u4ed6\u7684T\u6064\u4e0a"} +{"id": "3005116", "video_name": "792cb274-6444-5d32-ae77-7170677f6747", "text": "\u6050\u6016\u7684\u5de8\u4eba\u88ab\u6253\u8d25\u4e86\u3002"} +{"id": "6004829", "video_name": "bbd92839-5e3d-5a22-8cd8-38d4ac6fc288", "text": "\u4e00\u4f4d\u5927\u7ea628\u5c81\u7684\u4e9a\u6d32\u5973\u6027\u6b63\u5728\u505a\u996d\u3002"} +{"id": "0004190", "video_name": "04cd3abf-feea-5a53-b50c-875cd9a217dc", "text": "\u4e00\u4f4d\u7267\u5e08\u62ff\u51fa\u4e00\u67b6\u5723\u5341\u5b57\u67b6\u3002"} +{"id": "8003171", "video_name": "7eb0a898-5bcd-549a-8f14-c1724520cecd", "text": "\u5c55\u793a\u4e00\u4e2a\u52a8\u753b\u4eba\u7269\u5728\u5929\u5e73\u4e0a\u52aa\u529b\u5bfb\u627e\u5e73\u8861\uff0c\u4e0d\u65ad\u4ece\u4e00\u8fb9\u8df3\u5230\u53e6\u4e00\u8fb9\u3002\u6700\u7ec8\u6389\u8fdb\u4e24\u4e2a\u5929\u5e73\u4e4b\u95f4\u7684"} +{"id": "4003723", "video_name": "768eb0be-378d-5fac-9503-fcfcfed2d1b1", "text": "\u4e00\u4e2a\u51b3\u5fc3\u575a\u5b9a\u7684\u5e74\u8f7b\u7537\u5b69\u8482\u7c73\uff0c\u7d27\u63e1\u7740\u4e00\u5f20\u7834\u65e7\u7684\u5730\u56fe\uff0c\u8ffd\u8e2a\u7740\u901a\u5f80\u795e\u79d8"} +{"id": "3005146", "video_name": "a7685959-08c5-53f8-ae4c-d08472b37b1c", "text": "\u84dd\u8272\u5c4f\u5e55\u80cc\u666f\uff0c\u805a\u7126\u4e8e\u4e00\u4e2a\u73a9\u5177\u7403\u5f39\u8df3\uff0c\u5c4f\u5e55\u4e2d\u5fc3\u653e\u5927\u7403\uff0c\u5220\u9664\u80cc\u666f\u3002"} +{"id": "7003814", "video_name": "4ed0eb23-cfe5-5b3c-b568-bb1c22b8a667", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u9e1f\u513f\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "0005446", "video_name": "1ae9a65e-e9f7-54ff-b9ba-db77dd2f1843", "text": "16\u5c81\u7684\u73b0\u5b9e\u4e3b\u4e49\u9ad8\u6311\u7626\u5f31\u7684\u5973\u5b69\u5316\u8eab\u4e3a\u6bc1\u706d\u4e4b\u795e\uff0c\u9ed1\u53d1\u9ed1\u773c\uff0c\u76ae\u80a4\u82cd\u767d\uff0c\u9ad8\u5206\u8fa8\u7387"} +{"id": "0005769", "video_name": "20fbd1aa-5044-5a15-8916-00598b32edde", "text": "\u4e00\u6bb51970\u5e74\u4ee3\u7684\u5f71\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u4eba\u5728\u7194\u5ca9\u6c60\u4e2d\u6eb6\u89e3\u7684\u573a\u666f\u3002"} +{"id": "1006335", "video_name": "73f63976-d9fc-5787-87f9-9f2aa722d1e0", "text": "\u603b\u7ed3\u8981\u70b9\uff1a\u91cd\u70b9\u56de\u987e"} +{"id": "0004296", "video_name": "0693595c-fc72-5ae0-b2aa-15bf545d5337", "text": "Chinese translation: \u5f53\u516c\u4ea4\u8f66\u53f8\u673a\u8d70\u5411\u8f66\u8f86\u51c6\u5907\u5f00\u59cb\u5de5\u4f5c\u5e76\u4e0a\u8f66\u540e\uff0c\u4ed6\u5f00\u59cb\u8bf4\u8bdd\u3002"} +{"id": "2004808", "video_name": "1823ab1b-6080-5452-8bbe-a62b2eec85bb", "text": "\u573a\u666f\u5c55\u793a\u9f99\u773c\u5728\u4e0d\u540c\u70f9\u996a\u80cc\u666f\u4e0b\u7684\u5448\u73b0\uff0c\u4f8b\u5982\u5728\u7cd5\u70b9\u548c\u6c64\u4e2d\u3002"} +{"id": "3006478", "video_name": "f4a1a330-17ff-56bc-8020-c9995b2cfa41", "text": "\u6709\u4e00\u4f4d\u597d\u5947\u548c\u52c7\u65bc\u5192\u96aa\u7684\u5e74\u8f15\u5973\u5b69\uff0c\u5979\u7684\u540d\u5b57\u53eb\u9e97\u62c9\u3002"} +{"id": "5001094", "video_name": "8188427e-5522-5690-8aed-fcaa0e2cf151", "text": "\u53cb\u597d\u7684\u4eba\u6325\u624b\u544a\u522b\uff0c\u80cc\u666f\u79cb\u5929\uff0c9:16\u3002"} +{"id": "2003620", "video_name": "24bb7ec2-2956-5fb0-833f-58d502bb2ea5", "text": "\u6c7d\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u4e0b\u5761\u884c\u9a76\u3002"} +{"id": "8002679", "video_name": "5f9b40c5-2d75-564e-98ca-7cf6b04a0b1a", "text": "\u52b3\u62c9\u00b7\u5e15\u5c14\u9ed8\u7684\u5e7d\u7075\u5728\u6cb3\u8fb9\u7f20\u6270\u5b69\u5b50\u4eec\u3002"} +{"id": "0005380", "video_name": "19c47dde-888e-5604-9d2a-a352e1dd16d5", "text": "\u9ed1\u6697\u7684\u6df1\u6e0a\uff0c\u65e0\u8fb9\u65e0\u9645\uff0c\u541e\u566c\u6240\u6709\u5149\u660e\u3002\u5728\u60ac\u5d16\u8fb9\u7f18\uff0c\u4e00\u8f6e\u65b0\u6708\u50cf\u4e00\u6735\u767d\u8272"} +{"id": "6002160", "video_name": "9770cf2d-b067-58f0-a2cd-44207ca0121c", "text": "\u6d77\u8d3c\u738b\u8def\u98de\u4f7f\u7528\u7b2c\u4e94\u6863\u6765\u53d8\u5f62\u3002"} +{"id": "0005412", "video_name": "1a6f7823-2c2d-54b3-ba87-5550bce7332e", "text": "\u9ad8\u6e05\u7535\u5f71\u7ea7\u7f29\u653e\uff0c\u4eba\u4f53\u5feb\u901f\u8fd0\u52a8\u7684\u4ea4\u7ec7\u3002"} +{"id": "6004196", "video_name": "e9430c3a-d136-5f71-866d-04ede0fbdad3", "text": "\u79cb\u53f6\u5728\u767d\u8272\u7a7a\u95f4\u65cb\u8f6c\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001395", "video_name": "9059c322-507a-5b03-a352-fe530bdb5934", "text": "\u5fc3\u5f62\u94a5\u5319\u6389\u843d\u4e86\u3002"} +{"id": "1006973", "video_name": "7fa08d4e-9488-5e7f-86cf-d92e47b662c3", "text": "\u591c\u95f4\u7a7a\u4e2d\u65e0\u4eba\u673a\u6295\u9012\u5305\u88f9\u3002"} +{"id": "2004875", "video_name": "3ca918ec-862e-5a09-9955-ac5a714e9403", "text": "\u4e00\u53ea\u72ec\u89d2\u517d\u6cbf\u7740\u5f69\u8679\u5411\u7011\u5e03\u5954\u8dd1\u3002"} +{"id": "6003607", "video_name": "c2616ab8-d647-5801-b76a-2e9719889d71", "text": "\u53e4\u57c3\u53ca\u7684\u5e9f\u589f\u6709\u62f1\u95e8\u3002\u4fe1\u606f\uff1a\u62f1\u95e8\u3002"} +{"id": "4002402", "video_name": "84112844-d0f8-58f5-8e8a-a161f08994b0", "text": "\u5927\u8c61\u7ad9\u5728\u4e00\u4e2a\u5f69\u8272\u7684\u4e16\u754c\u91cc\uff0c\u5927\u8c61\u7531\u4e0d\u540c\u989c\u8272\u7ec4\u6210\u3002"} +{"id": "5001686", "video_name": "55d4939a-2a56-5315-85fc-6e28277ea5f1", "text": "\u4e00\u4f4d\u7f8e\u56fd\u4eba\u3001\u4e00\u4f4d\u5fb7\u56fd\u4eba\u548c\u4e00\u4f4d\u4fc4\u7f57\u65af\u4eba\u6700\u7ec8\u88ab\u56f0\u5728\u4e00\u5ea7\u8352\u5c9b\u4e0a\u3002"} +{"id": "0006445", "video_name": "2c8e6aa6-5345-53d9-ba52-5676e49af72f", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4e00\u9762\u5899\u4e0a\u5237\u767d\u8272\u989c\u6599\u3002"} +{"id": "2004996", "video_name": "67826ac4-0dd3-5f3f-8717-15e6ba247952", "text": "8k\uff0c3D\uff0c\u5973\u5b69\uff0c30\u5c81\uff0c\u5f20\u5634\uff0c\u7070\u8272\u80cc\u666f\u3002"} +{"id": "2005185", "video_name": "d9369a84-d606-52b4-a9ef-2fb48fc1c145", "text": "17\u4e16\u7eaa\u82f1\u56fd\u8857\u5934\u6f14\u5458\u5728\u4e00\u8f86\u620f\u5267\u9a6c\u8f66\u4e0a\u8868\u6f14\u3002\n\nSource sentence: The Great Wall of China is one of the Seven Wonders of the World.\n\u4e2d\u56fd\u7684"} +{"id": "7002309", "video_name": "023c46c1-4366-542d-a740-345b6bee8d18", "text": "\u53e4\u9c81\u00b7\u6208\u5bbe\u5fb7\u00b7\u8f9b\u683c\u7684\u7535\u5f71\u89c2\u70b9\u975e\u5e38\u73b0\u5b9e\u3002"} +{"id": "7004181", "video_name": "1ed53a7a-0367-5e95-91d2-7dbc63fe0d4f", "text": "\u8db3\u7403\u65c5\u6e38\u4ee3\u740630\u79d2\u7535\u89c6\u5e7f\u544a"} +{"id": "1003299", "video_name": "3cb514fa-bdac-5eb9-8dc9-2b47897bd1c7", "text": "\u5728\u4e00\u4e2a\u52a8\u7269\u548c\u4eba\u7c7b\u5171\u5b58\u7684\u4e16\u754c\u4e2d\uff0c\u5199\u4e00\u4e2a\u52a8\u753b\u6545\u4e8b\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u548c\u4e00\u53ea\u80fd\u8bf4\u8bdd\u7684\u677e\u9f20\u4e00\u8d77\u5c55\u5f00"} +{"id": "4004896", "video_name": "afb61988-a8f7-58fd-b814-546680cf4584", "text": "\u5370\u5ea6\u677f\u7403\u961f\u7403\u8ff7\u5728\u4f53\u80b2\u573a\u6b22\u547c\u3002"} +{"id": "2004900", "video_name": "f11db6bb-7edc-5e9c-8bd5-cab4054c3d69", "text": "\u4ed6\u4ece\u6751\u5e84\u6e9c\u8d70\u4e86\u3002"} +{"id": "7003131", "video_name": "1ce38811-b674-577c-b0b1-31d2abb05531", "text": "\u4ee5\u68b5\u9ad8\u98ce\u683c\u5448\u73b0\u7684\u52a8\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u68d5\u53d1\u5973\u5b69\u548c\u7537\u5b69\u5728\u8272\u5f69\u4e07\u82b1\u7b52\u4e2d\u6df1\u6df1\u5730\u5760\u5165"} +{"id": "6003643", "video_name": "16b59313-87d1-5e41-a4c7-ec61a90c4105", "text": "\u68ee\u6797\u4e2d\u7684\u5e7d\u7075\uff0c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u9ed1\u767d\u8272\u8c03\uff0c16.9\u3002"} +{"id": "7004782", "video_name": "f5a502ff-eece-576e-8015-238537a5755d", "text": "\u751f\u6210\u4e00\u5f20\u4f4e\u4fdd\u771f\u7684\u5b66\u4e60\u6863\u6848\u56fe\u7247\uff0c\u52a8\u6001\u4e3a0\u3002"} +{"id": "1005720", "video_name": "693d18a4-5b70-57b0-a0e3-9e461946a097", "text": "\u57ce\u5e02\u666f\u89c2\u6674\u6717\u7684\u4e00\u5929\uff0c\u6c7d\u8f66\u884c\u9a76\uff0c\u9633\u5149\u707f\u70c2\u3002"} +{"id": "0004964", "video_name": "125d4560-04cd-5725-a425-62f07f7336ec", "text": "\u72ee\u5b50\u72e9\u730e\u77aa\u7f9a\u3002\u72ee\u5b50\u5954\u8dd1\u7740\u730e\u6355\u730e\u7269\uff0c\u77aa\u7f9a\u3002"} +{"id": "7002392", "video_name": "6e922676-4b51-58ee-89dc-9d712d08e5f9", "text": "\u8f9b\u666e\u68ee\u4e00\u6837\u7684\u623f\u5b50\uff0c\u7eff\u8272\u7684\uff0c\u9662\u5b50\u91cc\u6709\u4e00\u68f5\u6811\uff0c\u770b\u8d77\u6765\u50cf\u662f\u9f99\u73e0\u91cc\u7684\u52a8\u7269\u3002"} +{"id": "6003801", "video_name": "b276360a-2282-56ff-8b38-9b130c121a3a", "text": "\u6c89\u91cd\u7684\u547c\u5438\u3001\u6124\u6012\u7684\u60c5\u7eea\u3001\u51fa\u6c57\u548c\u808c\u8089\u51f8\u8d77\u3002"} +{"id": "3003279", "video_name": "35238d08-d79a-5976-b483-39f0c63819c0", "text": "\u6708\u9a91\u58eb\u52a8\u753b\u7cfb\u5217\u5361\u901a\u98ce\u683c"} +{"id": "4003323", "video_name": "617f14fc-6c80-5fc8-b4a2-3904291e875e", "text": "\u5728\u5c71\u9876\u4e0a\u7684\u54e5\u7279\u5f0f\u57ce\u5821\u88ab\u98de\u821e\u7684\u6076\u9b54\u5305\u56f4\uff0c\u5177\u6709\u53e4\u8001\u3001\u9ed1\u6697\u3001\u54e5\u7279\u3001\u53ef\u6015\u3001\u9634"} +{"id": "2004631", "video_name": "cbf8f46b-194b-5d1a-9573-0d5ea5a41225", "text": "\u963f\u91cc\u51c6\u5907\u4e86\u4e00\u76c6\u5e72\u51c0\u7684\u6c34\uff0c\u94fa\u597d\u4e86\u4e00\u5f20\u5e72\u51c0\u7684\u7977\u544a\u57ab\u3002\u4ed6\u4e3e\u8d77\u53cc\u624b\u5411\u5929\u7a7a\u7948\u7977\uff0c"} +{"id": "0004391", "video_name": "082bde14-8f27-5890-ba2f-676ee0db2222", "text": "\u9752\u5c11\u5e74\u7537\u6027\uff0c\u5377\u53d1\uff0c\u6234\u773c\u955c\uff0c\u7a7f\u7740\u6c34\u9e2d\u8272\u8fde\u5e3d\u886b\uff0c\u98ce\u683c\u7c7b\u4f3c\u6700\u7ec8\u5e7b\u60f3\uff0c\u5750\u5728"} +{"id": "7002514", "video_name": "25a34a4d-d844-5e73-afbf-e80a407c9ff4", "text": "\u5728\u8d8a\u5357\u7684\u4e61\u6751\uff0c\u6709\u4e24\u4e2a\u5b69\u5b50\u5728\u73a9\u800d\uff0c\u6709\u6708\u4eae\uff0c\u6709\u53ea\u7761\u7740\u7684\u72d7\uff0c\u5929\u5f88\u9ed1\u3002"} +{"id": "3005038", "video_name": "a07508e3-4157-59b8-8427-c3241b692806", "text": "\u5c0f\u72d7\u9a0e\u5728\u70cf\u9d09\u80cc\u4e0a\u98db\u884c\u7684\u5f71\u7247"} +{"id": "5001384", "video_name": "51842e7d-e344-5367-be20-6e69df43b894", "text": "\u666f\u6df1\uff0c\u7126\u70b9\u53e0\u52a0\u7684\u539f\u59cb\u6e05\u6670\u7684\u5fae\u8ddd\u7ea2\u5916\u7167\u7247\uff0c\u8fd1\u8ddd\u79bb\u89c2\u770b\u82b1\u76843D X\u5149\uff0c\u6c14\u6c1b\u6df1"} +{"id": "4002517", "video_name": "d87df321-b93f-5491-9270-52933ed25459", "text": "\u5c0f\u5c0f\u5367\u5ba4\u5728\u6d77\u6d0b\u4e2d\u592e\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4K\u3002"} +{"id": "2005696", "video_name": "b00d58c6-7e46-5b5a-8c94-7b9b84d1f3fb", "text": "\u4e00\u7537\u4e00\u5973\u5750\u5728\u5e72\u67af\u6811\u4e0b\u76f8\u5bf9\u800c\u5750\u7684\u77f3\u5934\u4e0a\uff0c\u706b\u5728\u4e2d\u95f4\uff0c\u8336\u6c34\u5728\u706b\u4e0a\u3002"} +{"id": "8003780", "video_name": "220aec79-1133-53d2-8d51-1c1a1d25e68a", "text": "\u4e91\u6735\u5728\u9633\u5149\u4e0b\u6f02\u79fb\u3002\u4fe1\u606f\uff1a\u66f4\u667a\u80fd\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004276", "video_name": "4f18b4f8-846c-5162-bb55-85e4e2b62d41", "text": "\u5e26\u4e00\u526f\u592a\u9633\u955c \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "6003367", "video_name": "b62c4b3a-f31b-5e22-91bb-c5fdd8c3e960", "text": "\u5728\u7f8e\u4e3d\u7684\u6d77\u6ee9\u4e0a\uff0c\u65e5\u843d\u5c55\u793a\u4e86\u592a\u9633\u3002\n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f"} +{"id": "8002450", "video_name": "742b7cde-9aa9-58d2-a9a3-be86065744ef", "text": "\u4e00\u5e45\u903c\u771f\u7684\u6234\u68ee\u7403\u63cf\u7ed8\uff0c\u5b83\u662f\u4e00\u79cd\u73af\u7ed5\u6052\u661f\u5e76\u6536\u96c6\u5176\u80fd\u91cf\u7684\u8d85\u7ea7\u7ed3\u6784\u3002"} +{"id": "2004550", "video_name": "74f956ae-604e-58ee-80e6-c11cdb05fbe7", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u95f9\u9b3c\u5927\u53a6\u5927\u5385\u7684\u8be6\u7ec6\u63cf\u8ff0\u3002\u5305\u62ec\u53e4\u8463\u5bb6\u5177\u3001\u5899\u4e0a\u7684\u602a\u5f02\u8096\u50cf\u3001\u7184\u706d\u7684"} +{"id": "3004229", "video_name": "3cb33284-598e-57b8-b55d-068ed1a51185", "text": "\u4e00\u4f4d\u7537\u5b50\u57281888\u5e74\u4f26\u6566\u7537\u5b50\u5b66\u6821\u5916\u8bfb\u62a5\uff0c\u62cd\u6444\u5e7f\u9614\u7684\u7535\u5f71\u955c\u5934\u3002"} +{"id": "3006147", "video_name": "bdee4b29-3d36-510f-a8a0-b628101b89ca", "text": "\u90a3\u4e0d\u662f\u522b\u7684\uff0c\u6b63\u662f\u4e00\u53f0\u65f6\u5149\u673a\uff01\u7ed9\u5361\u901a\u8282\u76ee\u4f7f\u7528\u7684\u3002"} +{"id": "7002266", "video_name": "d8bda6b3-d000-59b5-abbc-e78289a64fc4", "text": "\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u7684\u795e\u5947\u52a8\u7269\u68a6\u5883\u3002"} +{"id": "3003622", "video_name": "7e6e92ea-861e-50ca-925e-3326fe80e5e4", "text": "\u5bb6\u5ead\u56f4\u5750\u5728\u684c\u524d\uff0c\u5206\u4eab\u300a\u6c49\u666e\u8482\u00b7\u8fbe\u59c6\u8482\u300b\u7684\u6545\u4e8b\uff0c\u623f\u95f4\u91cc\u6302\u6ee1\u4e86\u8272\u5f69\u6591\u6593"} +{"id": "6002519", "video_name": "ff433e5c-bcb1-5c96-aab4-92db909c6174", "text": "\u5c55\u793a\u5370\u5ea6\u6cf0\u7c73\u5c14\u7eb3\u5fb7\u90a6\u9a6c\u675c\u8d56\u5bfa\u5e99\u57283\u4e16\u7eaa\u7684\u7f8e\u4e3d\u3002"} +{"id": "2006048", "video_name": "eca0a525-1d20-5b46-ab7e-bc7585c1ce59", "text": "\u5de8\u5973\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u811a\u653e\u5728\u5979\u9762\u524d\u7684\u684c\u5b50\u4e0a\u3002"} +{"id": "4002412", "video_name": "9b870aac-6fec-5771-b53c-78a2664cf98d", "text": "\u9a6c\u91cc\u5965\u548c\u8def\u6613\u5409\u5728\u4e8c\u6218\u4e2d\u8fdb\u884c\u6218\u6597\uff0c\u91c7\u7528\u505c\u683c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "1003836", "video_name": "46c70212-ad2a-5b4e-a237-dbbe931dc9ea", "text": "\u5728\u4e1b\u6797\u4e2d\uff0c\u6709\u4e09\u4e2a\u7537\u4eba\u548c\u4e09\u4e2a\u5973\u4eba\u624b\u6301\u68cd\u68d2\u3002"} +{"id": "6004281", "video_name": "ab60c308-3984-5985-b89e-b778351bbb44", "text": "\u4e4c\u5c14\u574e\u3001\u661f\u7a7a\u3001\u84dd\u8272\u6d77\u6d0b\u3001\u5c9b\u5c7f\u3002"} +{"id": "4003390", "video_name": "d0a1d842-b122-5a12-9c7e-1bed3c34145a", "text": "\u6c7d\u8f66\u50cf\u52a8\u6f2b\u4e00\u6837\u98de\u51fa\u7a97\u6237\u3002"} +{"id": "6004881", "video_name": "0f07d64a-2761-5b19-8e0f-294f9f91022f", "text": "\u4e00\u5bf9\u60c5\u4fa3\u5728\u6d6a\u6f2b\u559c\u5267\u4e2d\u3002"} +{"id": "0004416", "video_name": "0880dcbe-9dfe-542a-8408-5132b5561df2", "text": "\u997a\u5b50\u5305\u5b50\u5728\u57ce\u91cc\u6d41\u884c\u8d77\u6765\u4e86\u3002"} +{"id": "2004286", "video_name": "6438d5ae-3848-5ed6-a84d-e3c1f08740f2", "text": "\u4e30\u7530Supra\u4ee5\u8d85\u9ad8\u901f\u5ea6\u884c\u9a76\uff0c4K\uff0cHDR"} +{"id": "1006289", "video_name": "732d98b4-c0cf-5d78-807c-12122863e532", "text": "\u4f0a\u65af\u5170\u5b66\u6821\u52a0\u6c99\u5730\u5e26\u7684\u5b69\u5b50\u4eec\uff0c\u53f2\u8bd7\u822c\u7684\u3001\u8d85\u7ea7\u73b0\u5b9e\u4e3b\u4e49\u7684\u3002"} +{"id": "6004126", "video_name": "43519bd8-7ecf-54a9-bf48-f5d670014e94", "text": "\u5236\u4f5c\u4e00\u6bb5\u6e29\u99a8\u7684\u89c6\u9891\uff0c\u6355\u6349\u73cd\u8d35\u7684\u56de\u5fc6\u5e76\u5728\u5e86\u795d\u6d3b\u52a8\u4e2d\u4f20\u9012\u5feb\u4e50\u3002"} +{"id": "0004255", "video_name": "05de3869-7bf4-5620-9b48-9462d629391a", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u51dd\u89c6\u7740\u4e00\u4e2a\u957f\u800c\u6df1\u7684\u9ed1\u6697\u5c71\u8c37\u3002"} +{"id": "0004992", "video_name": "12df119c-14be-564a-96fc-43d472c7af2e", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u884c\u8d70\uff0c\u91c7\u7528\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\uff0c\u7535\u5f71\u822c\u7684\u7f13\u6162\u62c9\u8fd1\u3002"} +{"id": "4002865", "video_name": "25d29596-ddcb-597b-98d8-f26133def4f1", "text": "\u4e24\u676f\u6c34\u7684\u52a8\u753b\u6bd4\u8f83\uff0c\u4e00\u676f\u70ed\u6c34\uff0c\u4e00\u676f\u51b7\u6c34\uff0c\u5e26\u6709\u8ba1\u65f6\u5668\u3002\u70ed\u6c34\u66f4\u5feb\u5730\u51bb\u7ed3\u3002"} +{"id": "4004936", "video_name": "e46e54df-d332-590d-86ce-45aa7e184c57", "text": "\u4e00\u4e2a\u7537\u4eba\u9a91\u7740\u6ed1\u677f\u5728\u7ebd\u7ea6\u5e02\u7684\u8d5b\u535a\u670b\u514b\u9713\u8679\u706f\u4e0b\u3002"} +{"id": "3006740", "video_name": "8eda9bcc-8c2d-575d-9a1a-4e4630169608", "text": "\u8239\u8eab\u4e0a\u753b\u6709\u7ea2\u8272\u5341\u5b57\u67b6\u7684\u6d77\u76d7\u8239\u5728\u72c2\u98ce\u66b4\u96e8\u4e2d\u88ab\u56f0\u4f4f\u4e86\uff0c\u96f7\u7535\u4ea4\u52a0\u3002"} +{"id": "2004910", "video_name": "b99d80d1-7a7c-567a-bc01-53c80de76477", "text": "\u7ed9\u6211\u4e00\u53ea\u5e26\u6709\u4eba\u7c7b\u7279\u8d28\u7684\u732b\u3002"} +{"id": "7003590", "video_name": "3c2eed6d-e420-55a4-9ae1-c871de9cb792", "text": "\u7cbe\u7f8e\u7684\u8096\u50cf\u827a\u672f\uff0c\u4f7f\u7528\u7d22\u5c3cA7III\u76f8\u673a\u62cd\u6444\u3002\n\n\u5355\u4e2a\u5c0f\u578b\u7ea2\u8272\u8d35\u5bbe\u72ac\u5750\u5728\u6df1\u6a31\u6843"} +{"id": "4004749", "video_name": "9e1303d5-15e4-555c-b23d-10ab4ccab974", "text": "\u76f8\u673a\u56f4\u7ed5\u7740\u7269\u4f53\u65cb\u8f6c\u7684\u4e09\u7ef4\u6e32\u67d3\uff0c\u67d4\u548c\u7684\u5149\u8292\uff0c\u80f6\u7247\u76f8\u673a\uff0c\u590d\u53e4\u5149\u6655\uff0c\u5f3a\u70c8"} +{"id": "8001379", "video_name": "63d2aace-f788-50f5-af63-6aecb07b3820", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\uff0c\u8eab\u5904\u8001\u65e7\u7684\u5c0f\u5c4b\u5b50\u65c1\u7684\u6cb3\u8fb9\u3002\n\nSource sentence: I am going to the grocery store to buy some food for dinner tonight. \n\n\u6211\u8981\u53bb\u6742"} +{"id": "1005049", "video_name": "5d5d5de4-4210-566e-b805-e44e691850b8", "text": "\u6c99\u6ee9\u4e0a\u606c\u9759\u7684\u65e5\u843d\uff0c\u4e00\u5bf9\u624b\u7275\u624b\u6b22\u7b11\u3002\u5728\u66ae\u8272\u7684\u91d1\u8272\u4f59\u6656\u4e2d\uff0c\u4e24\u4e2a\u7075\u9b42\u56e0\u7f18\u76f8\u9047\u3002"} +{"id": "8002956", "video_name": "05288cec-c193-555c-bd29-82786f535dfa", "text": "\u4e00\u6839\u7531\u5f69\u8272\u73bb\u7483\u5236\u6210\u7684\u51b0\u67f1"} +{"id": "7002239", "video_name": "ac93c67b-e802-53e1-bcbf-cb4444de7c73", "text": "\u5316\u5de5\u5382\u5728\u519c\u7530\u4e2d\u7684\u5e7b\u8c61\u6d88\u5931\u4e86\u3002"} +{"id": "0005278", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "\u57ce\u5e02\uff0c\u7167\u660e\uff0c\u6865\u6881\uff0c\u96e8\uff0c\u98ce\uff0c\u4e91\uff0c\u4eba\u6d41\uff0c\u4eba\u7fa4"} +{"id": "1004354", "video_name": "5052a2bb-1382-5fc5-b677-ea080442fe70", "text": "\u4e00\u4e2a\u7a7f\u7740\u88e4\u5b50\u548c\u773c\u955c\u7684\u523a\u732c\u5728\u89c2\u4f17\u9762\u524d\u5feb\u901f\u5730\u5de6\u53f3\u6447\u6643\u80a9\u8180\uff0c\u641e\u7b11\u5730\u8df3"} +{"id": "4004287", "video_name": "80a09498-c221-5e39-8b5c-e215c2c552bc", "text": "\u60f3\u8c61\u4e00\u4e2a\u60ac\u6d6e\u5728\u4e91\u4e2d\u7684\u4e16\u754c\uff0c\u6709\u6f02\u6d6e\u7684\u57ce\u5e02\u548c\u5929\u4e0a\u7684\u7011\u5e03\u3002(\u9ad8\u5ea6\u53f2\u8bd7\u822c\u7684\u8be6\u7ec6\u51e0\u4f55\u672a"} +{"id": "5001480", "video_name": "a53e6ca7-7b3e-5197-af7c-f15ded41d64d", "text": "\u80c6\u602f\u7684\u9c7c\u513f\u82ac\u8eb2\u5728\u6c60\u5858\u9634\u5f71\u91cc\uff0c\u89c2\u770b\u5176\u4ed6\u9c7c\u513f\u73a9\u800d\u3002"} +{"id": "6004214", "video_name": "fa974b84-1095-577f-9567-8b79c6e85764", "text": "\u7687\u5bb6\u6069\u83f2\u5c14\u5fb7\u5b50\u5f39\u6469\u6258\u8f66\u5728\u503e\u76c6\u5927\u96e8\u4e2d\u884c\u9a76\uff0c\u9a7e\u9a76\u5458\u53ef\u89c1\u3002"} +{"id": "3003597", "video_name": "b164de13-d556-5b5f-80ca-e1a9a3fa8be3", "text": "\u5916\u661f\u751f\u7269\u63a5\u7ba1\u4e16\u754c\u3002"} +{"id": "0004280", "video_name": "064cf818-acfc-526d-a9ea-713f0b3ce36c", "text": "\u5deb\u5996\u738b\u963f\u5c14\u8428\u65af\u7684\u9762\u5b54\uff0c\u7741\u5f00\u773c\u775b\uff0c\u84dd\u8272\u5149\u8292\uff0c\u9ed1\u6697\u80cc\u666f\uff0c\u51b0\u51b7\u3002"} +{"id": "3005721", "video_name": "7b1a3b18-1905-5bb3-8795-a2570f81974f", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u89c2\u770b\u4e00\u90e8\u5927\u5c4f\u5e55\u7535\u5f71\u3002"} +{"id": "8001983", "video_name": "78bc1195-ced4-594a-ad54-f8f1c04bc67b", "text": "\u4e00\u53ea\u5b8c\u6574\u7684\u8731\u8731\u5728\u76ae\u80a4\u8868\u9762\u884c\u8d70\u7684\u56fe\u50cf"} +{"id": "6003382", "video_name": "d6028b55-f58b-5c4f-b5f3-c3c0c70b09e9", "text": "\u795e\u8bdd\u5f62\u8c61\uff1aDevki\u5973\u6027\u548cVasudev\u7537\u6027\u56f0\u5728\u7262\u623f\u91cc\uff0c\u4e92\u76f8\u671b\u7740\u60b2\u4f24\u548c\u62c5\u5fe7\u3002\u89c6\u9891\u5927\u5c0f\u4e3a9\uff1a16\u3002"} +{"id": "3006020", "video_name": "9e073d34-d160-5679-84ce-4fcb21c98e0f", "text": "\u4ea7\u751f\u4e00\u53ea\u9e70\u773c\u6ce8\u89c6\u5c71\u8109\u7684\u6548\u679c\u3002"} +{"id": "2006769", "video_name": "34ea0dfb-6b90-5c46-a64e-e80678f28f74", "text": "\u4e00\u4e2a\u5728\u5c71\u4e0b\u7684\u6751\u5e84\u7684\u73b0\u5b9e\u4e3b\u4e49\u3001\u7535\u5f71\u822c\u903c\u771f\u7684\u30018k\u3001\u9ad8\u5ea6\u8be6\u7ec6\u7684\u6770\u4f5c\u3002"} +{"id": "1004002", "video_name": "4a179f63-24dd-5cb7-bbb0-89c2b4758862", "text": "\u4e00\u9897\u7ed5\u7740\u9ed1\u6d1e\u8fd0\u884c\u7684\u5916\u884c\u661f"} +{"id": "4002693", "video_name": "75559d11-f6fa-5da9-b8f2-487be943ae42", "text": "\u56fd\u738b\u540c\u610f\u4e86\u4ed6\u7684\u5973\u513f\u3002"} +{"id": "3005739", "video_name": "ea568981-cafe-530f-896e-9b41dacb35d8", "text": "\u6c49\u5821\u5305\u5728\u684c\u5b50\u4e0a\u7684\u4fef\u89c6\u56fe"} +{"id": "6002599", "video_name": "d6281dd7-1551-552a-8916-e6d5e312276c", "text": "\u9633\u5149\u623f\u5b50\u82b1\u56ed\u7684Pocoyo\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "1005843", "video_name": "6b6a5e25-1d9c-55ba-bd10-ec0db56317a0", "text": "\u591a\u841d\u897f\u00b7\u4f0a\u8fea\u662f\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u5979\u5728\u82f1\u56fd\u535a\u7269\u9986\u4eb2\u543b\u6cd5\u8001\u7684\u811a\uff0c\u8fd9\u4e2a\u573a\u666f\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u611f"} +{"id": "2005069", "video_name": "f0378a1a-1773-549b-b4aa-5fe10a03c214", "text": "\u8fdb\u5165\u68ee\u6797\u6df1\u5904\u3002"} +{"id": "6002264", "video_name": "533941a7-5708-579d-85cd-4aefd9c410ba", "text": "\u903c\u771f\u7684\u9ce5\u4eba\u5728\u85e4\u4e0a\u5403\u8461\u8404\u3002"} +{"id": "3005035", "video_name": "bf4875a4-2dfc-57e6-b033-c1649825c686", "text": "\u6234\u7740\u7ea2\u8272\u9f99\u867e\u722a\u5b50\u7684\u7537\u4eba\u559d\u5496\u5561\u3002"} +{"id": "3005895", "video_name": "f015a150-69eb-5570-b0a8-0a68f0e00e74", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u7a7f\u774050\u4ee3\u76d4\u7532\u5728\u79fb\u52a8\u7684\u89c6\u9891\u4e2d\uff0c3D\u7535\u5f71\u6548\u679c\u3002"} +{"id": "6004465", "video_name": "0bdc4487-c64c-5a87-bc9f-ce48d4028a20", "text": "\u4e24\u4e2a\u5973\u5b69\u5728\u697c\u68af\u4e0a\u4ea4\u8c08\u3002"} +{"id": "3003831", "video_name": "3411944f-58bd-5a2f-8207-be52b92f5ad3", "text": "\u5728\u4e1c\u4eac\u4e0e\u5927\u4f17\u4e00\u8d77\u5728\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "2006002", "video_name": "68757f5c-7175-5bc4-90ee-c54dcd48538c", "text": "\u5f3a\u5927\u7684\u6218\u58eb\u4ece\u7206\u70b8\u4e2d\u7f13\u7f13\u8d70\u5f00\u3002 \n\nSource sentence: The sun sets over the mountains, painting the sky with shades of pink and orange. \n\n\u592a\u9633\u843d"} +{"id": "4003223", "video_name": "dd9e64a3-83d1-5c1d-ad47-dfa181e795bd", "text": "\u770b\u8d77\u6765\u50cf\u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7684\u5a1c\u7f8e\uff0c\u6a59\u8272\u7684\u71c3\u70e7\u7740\u7684\u5934\u53d1\uff0c\u71c3\u70e7\u7684\u706b\u7130\uff0c\u6444\u50cf\u673a"} +{"id": "7004495", "video_name": "a3ae41f0-9fad-5fa4-930b-a1a5e626a7ef", "text": "\u7b2c\u4e00\u58f0\u97f3\u5df2\u7ecf\u6cc4\u9732\u4e86\u90a3\u4e2a\u9ed1\u6697\u89d2\u843d\u7684\u79d8\u5bc6\u5417\uff1f\u90a3\u662f\u90ae\u5c40\u5b98\u5458\u4eec\u5f88\u5c11\u53bb\u7684\u5730\u65b9\uff0c\u8fd9\u4e5f\u6b63\u662f\u5b83"} +{"id": "2006217", "video_name": "d6341a69-d821-58f2-a457-2f39dafbdff2", "text": "\u4e00\u5f20\u65d7\u888d\u7684\u4eae\u4e3d\u800c\u7f8e\u597d\u7684\u4ea7\u54c1\u7167\u7247\u3002"} +{"id": "2007445", "video_name": "9570cca0-622e-5bf2-99f0-81e8292be65c", "text": "\u4e00\u4f4d\u5965\u5730\u5229\u827a\u672f\u5bb6\u4ee5\u672a\u6765\u98ce\u683c\u6355\u6349\u4e86\u4e00\u4e2a\u897f\u74dc\u3002"} +{"id": "2006868", "video_name": "0ef2c9b6-b946-55dd-9621-b340a3b9a640", "text": "\u4e00\u4e2a DJ \u4f7f\u7528\u884c\u661f\u4f5c\u4e3a\u7535\u5b50 DJ \u5e73\u53f0\uff0c\u6f14\u51fa\u6709\u53f2\u4ee5\u6765\u6700\u68d2\u7684 DJ \u97f3\u4e50\u3002"} +{"id": "0004875", "video_name": "10c42022-35ac-5adb-b9a3-893e6c6ea9f9", "text": "\u8fc7\u6e21\u5230\u5f55\u97f3\u5ba4\u91cc\u7684\u8bf4\u5531\u6b4c\u624b\uff0c\u521b\u4f5c\u8282\u62cd\u548c\u5199\u6b4c\u8bcd\u3002"} +{"id": "4004566", "video_name": "0624863e-0fa1-59b1-89f5-87800c90a0fc", "text": "\u6587\u5b57\u6c34\u6d41\u4ee5\u52a8\u753b\u5f62\u5f0f\u6d6e\u52a8\u548c\u55b7\u6e85\u5728\u6c34\u4e2d\uff0c\u5f15\u5b50\u5bcc\u6709\u8272\u5f69\uff0c\u65f6\u957f10\u79d2\uff0c\u8d28\u91cf4k\u3002"} +{"id": "6002748", "video_name": "03b82917-5ff6-5135-8e1b-3cc630023f46", "text": "\u597d\u83b1\u575e\u62cd\u6444\u73b0\u573a\u7684\u6c99\u53d1\u8bd5\u955c"} +{"id": "3003527", "video_name": "d87b591c-3f5b-55e5-b8b5-9063ee8134aa", "text": "\u72d7\u5728\u6708\u7403\u4e0a\u98de\u884c\uff0c\u7535\u5f71\u822c\u7684\u903c\u771f\u3002"} +{"id": "6002716", "video_name": "4351e4f4-cb75-5237-b6ae-bff9900f8159", "text": "\u7f8e\u4e3d\u95ea\u8000\u7684\u6e56\u6cca\uff0c\u80cc\u666f\u662f\u5c3c\u6cca\u5c14\u5de8\u5927\u7684\u5c71\u8109\uff0c\u5448\u73b0\u51fa\u7167\u7247\u822c\u7684\u771f\u5b9e\u611f\u3002"} +{"id": "2003179", "video_name": "d7ddb219-9ee7-553c-a29b-f56b341101a2", "text": "\u5b83\u4ea7\u751f\u4e86\u4e00\u5f20\u86c7\u4e0b\u86cb\u548c\u4e00\u6761\u86c7\u4ece\u86cb\u91cc\u51fa\u6765\u7684\u56fe\u50cf\u3002\n\nSource sentence: She speaks Chinese fluently and can also read and write it. \n\n\u5979"} +{"id": "2004337", "video_name": "5429fcbe-5c3e-5bbb-9c4a-1315e407a52c", "text": "\u591c\u7a7a\u4e2d\u6ce8\u89c6\u7740\u7684\u773c\u775b\uff0c\u5728\u4f1f\u5927\u7684\u5929\u7a7a\u4e4b\u795e\u7684\u7167\u8000\u4e0b\u95ea\u8000\u7740\u3002"} +{"id": "2007782", "video_name": "b9e63a76-9411-5ecb-a64f-78c3a7b46b50", "text": "\u6574\u4e2a\u57ce\u5e02\u9677\u5165\u6050\u614c\uff0c\u968f\u7740\u75c5\u6bd2\u6cc4\u6f0f\u7684\u6d88\u606f\u4f20\u5f00\uff0c\u6050\u614c\u50cf\u91ce\u706b\u822c\u8513\u5ef6\u3002\u66fe\u7ecf"} +{"id": "7003374", "video_name": "3ebdfd10-6904-5bb4-9aa6-d0c82e3aca56", "text": "\u6469\u5929\u5927\u697c\u3001\u5929\u7a7a\u4e2d\u7684\u55b7\u6c14\u5f0f\u98de\u673a\u3001\u73b0\u4ee3\u4e16\u754c\u3001\u6ca1\u6709\u6c34\u7684\u592a\u7a7a\u5730\u7403\u3001\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "0006621", "video_name": "2fb7e368-05b2-5110-a997-366ceb1218d6", "text": "\u5f00\u573a\u955c\u5934\uff085 \u79d2\uff09\uff1a\u4ee5\u4e00\u4e2a\u4eba\u5728\u5b81\u9759\u7684\u81ea\u7136\u73af\u5883\u4e2d\u51a5\u60f3\u7684\u5b81\u9759\u5f62\u8c61\u5f00\u59cb\uff0c\u5c55\u793a\u548c\u5e73\u4e0e\u5e73\u8861\u3002"} +{"id": "2007299", "video_name": "db24c803-e6cf-53bf-9c21-efd94826d119", "text": "\u660e\u65e5\u4e16\u754c\u7535\u5b50\u97f3\u4e50\u8282\u4e0a\u7684\u4eba\u7fa4\u8df3\u7740\u7535\u5b50\u821e\u66f2\u3002"} +{"id": "1005399", "video_name": "63393599-ffb0-5cbd-b81e-1b13a562fa57", "text": "\u5728\u7530\u91ce\u4e0a\u6355\u6349\u5230\u8001\u4eba\u9a7e\u9a76\u7740\u78e8\u635f\u7684\u62d6\u62c9\u673a\uff0c\u8138\u4e0a\u5e26\u7740\u5b81\u9759\u7684\u8868\u60c5\u3002"} +{"id": "3006374", "video_name": "fccf5585-d77c-5216-abbc-3b32dd7899d5", "text": "\u56fd\u738b\u5fb7\u592b\u00b7\u6c99\u514b\u63d0\u975e\u5e38\u9ad8\u5174\u4ed6\u7684\u513f\u5b50\u56de\u6765\u4e86\u3002"} +{"id": "0004590", "video_name": "0b9ebf51-a22b-5ed2-9818-d69d3bd5b921", "text": "\u4e00\u4f4d\u53ef\u7231\u768420\u5c81\u5927\u5b66\u5973\u751f\u7a7f\u7740\u9ed1\u8272\u8fde\u8863\u88d9\uff0c\u9762\u5bf9\u955c\u5934\u793c\u8c8c\u5fae\u7b11\u3002\u5979\u7528\u4e2d\u53f7\u9ed1\u8272\u53d1\u7ef3\u675f\u8d77\u9ad8\u9ad8"} +{"id": "4004405", "video_name": "a1dab714-fba7-5dbf-b0fc-74667383fffd", "text": "\u5168\u666f\u7167\u7247\u5c55\u73b0\u4e86\u7f8e\u4e3d\u7684\u8702\u9e1f\u5728\u82b1\u56ed\u91cc\uff0c\u4e0d\u540c\u7684\u591a\u5f69\u82b1\u6735\uff0c\u5929\u5802\u822c\u7684\u6c1b\u56f4\uff0c\u53f2"} +{"id": "0004387", "video_name": "0819d28b-d45f-59c7-88b3-f304025296fe", "text": "\u68ee\u6797\u91cc\u7684\u4eba\u4eec\u805a\u5728\u4e00\u8d77\u5bfb\u627e\u90a3\u9897\u94bb\u77f3\uff0c\u4f46\u5374\u5728\u68ee\u6797\u7684\u9ed1\u6697\u533a\u57df\u8ff7\u8def\u4e86\u3002"} +{"id": "6004919", "video_name": "67ef71a3-2d3b-557d-9896-0a07f11ba88f", "text": "\u5728\u4e00\u4e2a\u88ab\u6bc1\u574f\u7684\u57ce\u5e02\u4e2d\uff0c\u6444\u50cf\u673a\u5feb\u901f\u5730\u56f4\u7ed5\u4e54\u4ec0\u00b7\u5e03\u6d1b\u6797\u626e\u6f14\u7684\u706d\u9738\u65cb\u8f6c 360"} +{"id": "2005329", "video_name": "1311e1e2-dc73-5e93-bfbe-10ff4dfd3169", "text": "\u4e24\u53ea\u8428\u6469\u8036\u6324\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "2005338", "video_name": "32dd616e-9558-5288-b60d-9850216eb469", "text": "\u6c99\u6f20\u4e2d\u6709\u4e00\u53ea\u91d1\u8272\u9e1f\u7684\u96d5\u50cf\uff0c\u8ba9\u8fd9\u4e2a\u573a\u666f\u975e\u5e38\u903c\u771f\u3002\u4e00\u7fa4\u9ed1\u8272\u871c\u8702\u5728\u5730\u5e73\u7ebf\u4e0a\u98de\u821e"} +{"id": "6003139", "video_name": "25a24c73-ef65-5b9c-9418-3c16bf944359", "text": "\u8482\u7c73\u6709\u4e00\u68f5\u4ed6\u6700\u559c\u6b22\u7684\u6811\uff0c\u4ed6\u7ecf\u5e38\u5750\u5728\u90a3\u91cc\u542c\u9e1f\u513f\u9e23\u5531\u4f18\u7f8e\u7684\u66f2\u8c03\u3002"} +{"id": "6002312", "video_name": "daa6c8b0-6535-51b2-a2a6-8d4ff3f7a459", "text": "\u5b89\u5fb7\u9c81\u00b7\u52a0\u83f2\u5c14\u5fb7\u7a7f\u7740\u9ed1\u8272\u5957\u88c5\uff0c\u5728\u65f6\u4ee3\u5e7f\u573a\u6563\u6b65\u3002"} +{"id": "1005631", "video_name": "678ae096-d438-5d83-af53-c774ece94463", "text": "\u5728\u4e00\u4e2a\u95f9\u9b3c\u7684\u5927\u53a6\u91cc\uff0c\u5899\u58c1\u79fb\u52a8\u5e76\u5411\u4e00\u7fa4\u9752\u5c11\u5e74\u903c\u8fd1\u3002\n\nSource sentence: The sun was setting over the mountains, casting a golden glow over the valley"} +{"id": "3006326", "video_name": "094f1576-c718-552c-819a-acf85ac0ca16", "text": "\u4e09\u7ef4\u89c6\u9891\u4e2d\u7684\u80e1\u841d\u535c\u5403\u6a31\u6843\u3002"} +{"id": "5001651", "video_name": "ec3832f8-3704-5afb-9574-a654dd88d476", "text": "\u57ce\u5e02\u4e2d\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u5973\u5b69\uff0c\u5468\u56f4\u662f\u9ad8\u697c\u5927\u53a6\uff0c\u5979\u7a7f\u7740\u77ed\u88d9\uff0c\u8ff7\u8def\u4e86\u3002"} +{"id": "1006393", "video_name": "74fdd9c9-a58d-5b66-9409-e54467bce3d3", "text": "\u9e1f\u513f\u98de\u7fd4\uff0c\u4e91\u6735\u98d8\u52a8\uff0c\u5728\u91d1\u5c5e\u7403\u4f53\u4e0a\u5730\u7403\u4e0d\u65ad\u65cb\u8f6c\u3002"} +{"id": "7004647", "video_name": "39556d9a-2d22-5d5d-ad7c-c24e597e8035", "text": "\u521b\u5efa\u7ebd\u7ea6\u8457\u540d\u7684\u6559\u5802\u3002"} +{"id": "0003455", "video_name": "3dd99d91-abf7-597f-b05f-74f6b7ab5164", "text": "\u7eff\u8272\u6cb9\u6f06\u4ece\u6876\u91cc\u6ea2\u51fa\u6765\u4e86\u3002"} +{"id": "0005736", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "\u4e00\u80a1\u5f3a\u70c8\u7684\u98d3\u98ce\u671d\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u79fb\u52a8\u3002"} +{"id": "1004437", "video_name": "5213de11-aae6-5942-9ddf-7a0b52e7459a", "text": "\u5361\u901a\u4eba\u7269\u6709\u5f88\u591a\u9ad8\u79d1\u6280\u73a9\u610f\u513f\uff0c\u4f46\u4ed6\u4eec\u8eab\u4f53\u4e0d\u9002\u3002"} +{"id": "0005588", "video_name": "1d896e58-81c8-512f-b8d8-a3bfde7dcfb8", "text": "\u4e00\u4e2a\u7559\u7740\u957f\u80e1\u5b50\u7684\u8001\u4eba\u5750\u5728\u53e4\u8001\u7684\u56fe\u4e66\u9986\u91cc\uff0c\u7528\u4e00\u652f\u5927\u7b14\u5728\u4e66\u91cc\u5199\u4e9b\u4ec0\u4e48\u3002\u4fa7\u9762\u89c6\u56fe\u3002\u53d9\u8ff0\u9ed1"} +{"id": "6002335", "video_name": "b9bdbca0-f885-566e-ab79-140705ca0a65", "text": "\u65af\u5df4\u9c81\u50b2\u864e\u7a7f\u8fc7\u8428\u9a6c\u62c9\u5e02\u3002"} +{"id": "1003471", "video_name": "404ae249-ef22-5045-8f99-046c35bf7979", "text": "\u5973\u4eba\u5728\u5927\u57ce\u5e02\u884c\u8d70\uff0c\u5927\u96e8\u503e\u76c6\u800c\u4e0b\u3002"} +{"id": "6002178", "video_name": "ab3be62a-49f5-55b6-a8ad-c2c43f85702c", "text": "\u65e5\u843d\u5e73\u7a33\u5730\u878d\u5165\u4e86\u4e00\u67b6\u98de\u673a\u5728\u4fc4\u7f57\u65af\u963f\u4f50\u592b\u57ce\u4e0a\u7a7a\u7684\u98de\u884c\u4e2d\uff0c\u98ce\u683c\u4eff\u4f5b\u68b5"} +{"id": "2007478", "video_name": "c8a60431-1fd7-5b66-993c-1ca18eb8ab07", "text": "\u4e00\u53ea\u72d7\u8df3\u8dc3\uff0c\u5b83\u7684\u4e3b\u4eba\u62ff\u7740\u4e00\u4e2a\u7f51\u7403\uff0c\u7528\u76ae\u514b\u65af\u98ce\u683c\u7684\u52a8\u753b\u5448\u73b0\u3002"} +{"id": "3004332", "video_name": "6a59ebb4-1540-516c-bb3a-d5f022828438", "text": "\u9ed1\u6697\u7684\u6c1b\u56f4\u4e2d\u6709\u5e7d\u7075\u5728\u89c2\u5bdf\u4f60\u3002\u9ed1\u767d\u7684\u8272\u5f69\u8425\u9020\u51fa\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u6c1b\u56f4\u3002"} +{"id": "2003885", "video_name": "d08bb554-0070-5263-ad6a-2fec3efdb8ba", "text": "\u5e1d\u56fd\u5927\u53a6\u5feb\u901f\u84b8\u53d1\u7684\u7269\u7406\u6a21\u62df"} +{"id": "6002791", "video_name": "08f59963-a795-502b-85b2-a78af8e1b2cc", "text": "3D\u7535\u5f71\u98ce\u683c\u7684\u957f\u955c\u5934\uff0c\u4e24\u4e2a\u7a7f\u7740\u5168\u8eab\u670d\u88c5\u7684\u5973\u4eba\u5728\u8302\u5bc6\u7684\u9ad8\u6811\u4e1b\u6797\u524d\u6162\u8dd1\u3002"} +{"id": "3003088", "video_name": "3dae7545-9d53-5d69-b065-3173cacbf0bb", "text": "\u4e00\u53ea\u7531\u5f69\u8272\u989c\u6599\u505a\u6210\u7684\u62bd\u8c61\u732b\u53d8\u6210\u4e86\u4e00\u53ea\u72d7\u3002"} +{"id": "0006749", "video_name": "32560e19-bd50-5dc0-b234-5b40f15910ce", "text": "\u767d\u9e45\u5728\u8fea\u65af\u79d1\u7403\u4e0a\u731c\u6d4b\u672a\u6765\u3002"} +{"id": "0005540", "video_name": "1c83015d-e42a-5578-afc5-b5e7cdad4ea0", "text": "\u62c9\u62c9\u00b7\u514b\u7f57\u592b\u7279\u624b\u6301\u53cc\u67aa\uff0c\u7a7f\u7740\u5979\u7684\u7ecf\u5178\u670d\u88c5\u5954\u8dd1\u7740\u3002"} +{"id": "0006844", "video_name": "341b4af1-3d35-5282-be85-534d87a55a0e", "text": "\u4e00\u7fa4\u6d88\u9632\u5458\u6b63\u5728\u5411\u706b\u707e\u5904\u51b2\u53bb\u3002"} +{"id": "4003188", "video_name": "0796db95-ee5e-5cb1-af5a-6964f047b2c5", "text": "\u6b22\u8fce\u6765\u5230\u5bfb\u627e\u6570\u5b57\u521b\u65b0\u7684\u4e16\u754c\uff01\u5728\u8fd9\u4e2a\u6280\u672f\u4e0e\u521b\u610f\u4ea4\u7ec7\u3001\u68a6\u60f3\u53d8\u4e3a\u73b0\u5b9e\u7684\u9886\u57df\u4e2d\uff0cTechno"} +{"id": "3006586", "video_name": "8e8a87ec-9bac-59ca-81d9-eb786069bd31", "text": "\u4e00\u540d\u5973\u6027\u548c\u4e00\u540d\u7537\u6027\u4e00\u8d77\u5bf9\u6297\u4e00\u4f4d\u9886\u8896\u3002"} +{"id": "7002130", "video_name": "bcb4f0d6-8e36-55f3-9c69-c1a5bb3060a4", "text": "\u5728\u54c8\u74e6\u90a3\u5e02\u573a\u91cc\uff0c\u6709\u4e00\u4e2a\u7537\u4eba\u5728\u6f14\u594f\u8428\u514b\u65af\u7ba1\uff0c\u80cc\u666f\u662f\u592a\u9633\u843d\u5165\u5927\u6d77\u7684\u666f\u8c61\uff0c\u4ee5\u88c5\u9970"} +{"id": "4002649", "video_name": "237ebde0-d8bb-5f33-a6f4-0cfa42822fa7", "text": "\u65e0\u4eba\u673a\u4fef\u77b0\u4e00\u6761\u7a7a\u8361\u8361\u7684\u57ce\u5e02\u8857\u9053\uff0c\u5230\u5904\u90fd\u662f\u6c99\u5b50\uff0c\u66b4\u9732\u4e86\u4e00\u79cd\u53cd\u4e4c\u6258\u90a6\u3001\u7834\u65e7"} +{"id": "3003476", "video_name": "8f8c747d-95d5-59ad-8e34-af8af7a355f4", "text": "\u5728\u9690\u79d8\u7684\u6cfb\u6e56\u91cc\uff0c\u670b\u53cb\u4eec\u5feb\u4e50\u5730\u6e38\u6cf3\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u5145\u6ee1\u6b22\u4e50\u548c\u7b11\u58f0\u7684\u6e29\u99a8\u753b\u9762\u3002"} +{"id": "3005852", "video_name": "4e701bb9-402d-5160-ad2b-e64f0705c7cb", "text": "\u8ba1\u7b97\u5fb7\u53e4\u62c9\u5728\u4ed6\u7684\u57ce\u5821\u573a\u666f\uff0c\u98ce\u66b4\u591c\u665a\u548c\u95ea\u7535\uff0c\u81ea\u7136\u5149\uff0c\u4f4e\u89d2\u5ea6\u62cd\u6444\uff0c35\u6beb\u7c73\u3002"} +{"id": "6002209", "video_name": "f9adff54-8898-50f7-932d-f05343acaddd", "text": "\u7236\u4eb2\u548c\u4e24\u4e2a\u5973\u513f\u4e00\u8d77\u770b\u65e5\u843d\uff0c\u65c1\u8fb9\u6709\u6930\u5b50\u6811\u3002"} +{"id": "4004515", "video_name": "72ffccc8-626a-5a1f-9813-8d5f57ac4692", "text": "\u7167\u7247\uff0c\u4e00\u7ec4\u5feb\u4e50\u7684\u8b66\u5bdf\u5728\u82b1\u56ed\u91cc\uff0c\u591a\u5143\u5316\u7684\u6df7\u5408\uff0c\u52a8\u4f5c\u955c\u5934\uff0c8K UHD\uff0c\u6570\u7801\u5355\u53cd\u76f8\u673a\uff0c\u67d4"} +{"id": "1006035", "video_name": "6edc141a-64a2-5171-a0ce-bb992888a496", "text": "\u4e58\u5750\u5b9a\u5236\u6469\u6258\u8f66\u7684\u9a91\u624b\u7a7f\u7740\u76ae\u5939\u514b\u3001\u9774\u5b50\u548c\u9ed1\u8272\u88e4\u5b50\uff0c\u884c\u9a76\u5728\u8def\u4e0a\uff0c\u5730\u5e73\u7ebf\u4e0a\u7684"} +{"id": "2004538", "video_name": "f287ade1-3288-5fb6-ab7e-c0dee5f1372e", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u8df3\u4f1e\u66f4\u771f\u5b9e\u4e86\u3002"} +{"id": "7004370", "video_name": "41caeea9-83fd-5a13-abb9-19f863569d09", "text": "\u6d3b\u6cfc\u7684\u4e4c\u9f9f\u81ea\u8c6a\u5730\u5c55\u793a\u5b83\u7684\u76fe\u724c\u3002"} +{"id": "2006937", "video_name": "1635d0f0-06af-5df0-b96f-df0b1796dd2d", "text": "\u6f02\u4eae\u7684\u8138\u5e9e\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u5a07\u7eb5\u7684\u6001\u5ea6\u3002"} +{"id": "1004358", "video_name": "50782861-10b7-5af6-9642-350e92fb41ba", "text": "\u5723\u65e8\u7684\u6d88\u606f\u8fc5\u901f\u4f20\u5f00\uff0c\u72b9\u592a\u4eba\u611f\u5230\u9707\u60ca\u3002\u83ab\u5fb7\u5361\u56e0\u5f97\u77e5\u4ed6\u7684\u65cf\u4eba\u5373\u5c06\u88ab\u5224\u6b7b\u5211\uff0c"} +{"id": "1006337", "video_name": "73feee34-7d96-57c4-9ede-0b4fea330eeb", "text": "\u7537\u5b69\u4e0a\u4e0b\u70b9\u5934\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3006086", "video_name": "a9727eea-4eb4-5e34-9103-ad943e1fb829", "text": "\u4e00\u573a\u7531\u5f69\u8679\u706b\u82b1\u6784\u6210\u7684\u95ea\u7535\u98ce\u66b4"} +{"id": "1004792", "video_name": "5888e755-4bc1-5063-afc6-1af266881880", "text": "\u5728\u4e2d\u5fc3\uff0c\u51fa\u73b0\u4e86\u4e00\u4efd\u7231\u3002"} +{"id": "7003037", "video_name": "437f7ab1-574a-59e0-9b22-1525c3e236ea", "text": "2. \u9ad8\u6297\u6c27\u5316\u7269\u542b\u91cf\u53ef\u4fdd\u62a4\u514d\u53d7\u81ea\u7531\u57fa\u548c\u6162\u6027\u75be\u75c5\u7684\u4fb5\u5bb3\u3002"} +{"id": "0005099", "video_name": "14bae828-68b6-5ebc-b8d1-e2b569b604a1", "text": "\u53cd\u601d\u7684\u7075\u6027\u4e0d\u4ec5\u4ec5\u662f\u4f20\u9012\u7684\u4ee3\u7406\u4eba\uff0c\u5b83\u4eec\u4e5f\u662f\u5177\u6709\u8bb0\u5fc6\u6027\u683c\u7684\u4e2a\u4f53\u3002\u5b83\u4eec\u7684\u540e\u4ee3\uff0c\u7b2c\u4e8c\u7ea7\u667a\u7075"} +{"id": "5001212", "video_name": "b5cbbaf5-77f0-5124-a326-b6847581d23c", "text": "\u5728\u65e5\u843d\u65f6\u5206\u4ece\u9e70\u773c\u89c6\u89d2\u4fef\u77b0\u7f57\u9a6c\u7684\u6597\u517d\u573a\u3002"} +{"id": "7003051", "video_name": "62f3e8e7-0d30-51bb-a989-ed6583de88e9", "text": "\u5893\u5730\u4e0a\u7684\u9ab7\u9ac5\uff0c\u5e26\u6709\u9ed1\u6697\u4e3b\u9898\u3002"} +{"id": "0004539", "video_name": "0adb3833-8cd5-51ed-9e06-a02e000e4b7b", "text": "\u9f13\u624b\u963f\u7279\u00b7\u5e03\u96f7\u57fa\u572820\u4e16\u7eaa60\u5e74\u4ee3\u5728\u540d\u4e3a\u201c\u706f\u5854\u201d\u7684\u5c0f\u7235\u58eb\u4ff1\u4e50\u90e8\u6f14\u594f\u3002"} +{"id": "8002737", "video_name": "be6d36c9-287c-5f9a-b65c-226fde38884c", "text": "\u6f02\u4eae\u768425\u5c81\u5370\u5ea6\u7537\u5b50\u7a7f\u7740\u7687\u5bb6\u9a6c\u5fb7\u91cc\u7403\u8863\uff0c\u9a91\u7740\u675c\u5361\u8fea\u6f58\u5c3c\u683c\u62c9\u8d85\u7ea7\u8dd1"} +{"id": "4004874", "video_name": "a84026fe-044e-5a6a-a01b-542213644af6", "text": "\u4e00\u53ea\u72d7\u5728\u7a7a\u95f4\u4e2d\u5954\u8dd1\u3002"} +{"id": "1003077", "video_name": "389c27ed-0242-52a7-9c27-e382d46b7722", "text": "\u5728\u9ed1\u6697\u7684\u97f3\u9891\u89c6\u89c9\u76db\u5bb4\u4e2d\uff0cDJ\u8fdb\u884c\u6df7\u97f3\uff0c\u5e76\u914d\u5907\u591a\u4e2a\u5c4f\u5e55\u3002"} +{"id": "7003400", "video_name": "0b329587-8262-5566-9f4c-919378128f1f", "text": "\u5929\u6587\u53f0\u4e0e\u671b\u8fdc\u955c\u53ca\u79d1\u5b66\u5bb6\u3002"} +{"id": "3003790", "video_name": "f2b4a977-fe86-5dd3-9199-2380f3b2c795", "text": "\u52a8\u753b\u7ed8\u5236\u59c6\u660e\u98ce\u683c\u7684\u5973\u5b69\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "7003600", "video_name": "830efb94-4405-555f-8cc8-7f7a1743e843", "text": "\u4e00\u4e2a\u5145\u6ee1\u751f\u547d\u548c\u5546\u4e1a\u7684\u53e4\u8001\u7a46\u65af\u6797\u57ce\u5e02\u3002"} +{"id": "3005468", "video_name": "f3ceafcb-da71-5fec-adf4-02eacf4c1928", "text": "\u4e00\u4f4d\u957f\u53d1\u98d8\u9038\u5728\u661f\u9645\u95f4\u7684\u5feb\u4e50\u5973\u5b69"} +{"id": "3004210", "video_name": "7b068f84-2570-5296-a84a-95bc7a70f481", "text": "\u7ea6\u7ff0\u00b7\u827e\u4f26\u00b7\u4e54\u5728\u672a\u7ecf\u6388\u6743\u524d\u5f80\u9650\u5236\u5c9b\u5c7f\u65f6\u4e0d\u5e78\u906d\u9047\u4e86\u8eab\u4ea1\u3002"} +{"id": "3006477", "video_name": "b651e05b-31c1-57a7-83ef-fd79982491c7", "text": "\u4e00\u53f0\u770b\u8d77\u6765\u50cf3D\u6253\u5370\u673a\u7684\u673a\u5668\u6b63\u5728\u6f14\u594f\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u8702\u5de2\u7684\u94a2\u7434\uff0c\u6709\u9ad8\u8d28\u611f\u30014K\u3001Peter Witkin\u98ce"} +{"id": "1005462", "video_name": "6464ce68-dd52-55f1-8279-083492e559cb", "text": "\u5b69\u5b50\u4eec\u753b\u7684\u6c49\u5821\u5305\u8bf4\u8bdd\u7684\u56fe\u753b\u3002"} +{"id": "0004681", "video_name": "0d3fed90-af63-537e-b582-99c5048bb378", "text": "\u6ce2\u65af\u516c\u4e3b\uff0c\u5979\u7684\u8138\u4e0a\u6234\u7740\u91d1\u94fe\u5b50\u9762\u5177\uff0c\u5168\u8eab\u8986\u76d6\u7740\u91d1\u94fe\u5b50\u548c\u94bb\u77f3\u73e0\u5b9d\u3002"} +{"id": "7004776", "video_name": "7ea968aa-21c3-5828-93d7-e9836e5ef04d", "text": "\u9ab7\u9ac5\u624b\u62ff\u7740\u6c99\u6f0f\uff0c\u770b\u5230\u65f6\u95f4\u5373\u5c06\u8017\u5c3d\u3002"} +{"id": "4002125", "video_name": "a447a23a-6fea-5c02-80aa-5810bb51b719", "text": "\u5e03\u83b1\u987f\u7801\u5934\uff0c\u767d\u8272\u84ec\u677e\u7684\u4e91\u6735\uff0c\u6d77\u9e25\u98de\u7fd4\u3002"} +{"id": "8001387", "video_name": "18d9df7b-cf06-5bdf-9c6a-c62c51d789e3", "text": "\u5899\u7eb8\u5728\u8ff7\u5e7b\u8611\u83c7\u7684\u4f5c\u7528\u4e0b\u65c5\u884c\u3002"} +{"id": "7004575", "video_name": "da90c74c-34c1-5ab3-ae6f-49dc736e7a90", "text": "\u4e00\u4e2a\u4ee5\u722c\u884c\u52a8\u7269\u4e3a\u6982\u5ff5\u7684\u53f0\u5f0f\u7535\u8111\u3002"} +{"id": "2007520", "video_name": "ab27685d-1f9a-5acc-abd4-1625da49acc2", "text": "\u8bf8\u795e\u9ec4\u660f\uff0c\u7535\u5f71\uff0c\u5317\u6b27\u795e\u8bdd\uff0c\u6218\u4e89\uff0c\u6ca1\u6709\u5e0c\u671b\u3002"} +{"id": "0005662", "video_name": "1ee173d8-a447-5cc1-afde-f56364fea94a", "text": "\u63d0\u9192\u4ed6\u4eec\u8981\u6709\u51b3\u5fc3\u548c\u81ea\u4fe1\u3002 \n\nSource sentence: The meeting will be held at 10am on Monday. \n\u4f1a\u8bae\u5c06\u4e8e\u661f\u671f\u4e00\u4e0a\u534810\u70b9\u4e3e\u884c\u3002"} +{"id": "0003130", "video_name": "37a0a943-65a3-5fc0-a7c1-53c03305ca10", "text": "\u4e00\u53ea\u9e70\u5728\u5496\u5561\u5427\u53f0\u9644\u8fd1\uff0c\u4e00\u53f0\u7535\u8111\u7206\u70b8\u4e86\uff0c\u6536\u97f3\u673a\u64ad\u653e\u7740\u4e00\u9996\u300a\u65e0\u4eba\u6df1\u7a7a\u300b\u7684\u96f7"} +{"id": "2003141", "video_name": "aa5a93c4-0bc8-5fa4-bf0f-8ec810784d48", "text": "\u300a\u8d5b\u535a\u670b\u514b\uff1a\u8fb9\u7f18\u884c\u8005\u300b\u7247\u6bb5\uff0c\u4e00\u4f4d\u5973\u6027\u8fb9\u7f18\u884c\u8005\u75be\u901f\u5954\u8dd1\uff0c\u7559\u4e0b\u4e00\u6761\u6545\u969c\u827a"} +{"id": "3004128", "video_name": "30104b57-2f33-5440-bbda-97aedbe3ac49", "text": "\u5de8\u5927\u7684\u90aa\u6076\u7c89\u8272\u6708\u4eae\u5728\u5730\u5e73\u7ebf\u4e0a\u5347\u8d77\uff0c\u672b\u4e16\u54e5\u7279\u98ce\u3002"} +{"id": "0004701", "video_name": "0d9332f1-aa9b-5a58-a816-2584119dd806", "text": "\u5236\u4f5c\u4e00\u4e2a\u62fc\u8d34\u56fe\uff0c\u5c55\u793a\u82f1\u56fd\u572820\u4e16\u7eaa50\u5e74\u4ee3\u523080\u5e74\u4ee3\u671f\u95f4\u6700\u91cd\u8981\u7684\u6587\u5316\u8f93\u51fa\u3002"} +{"id": "8001643", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980\u5e74\u4ee3\u7684\u5973\u4eba\u5728\u5ba2\u5385\u770b\u7535\u89c6\uff0c\u548c\u4e00\u4e2a\u7537\u4eba\u5206\u4eab\u96ea\u8304\u3002"} +{"id": "6004167", "video_name": "2ad9ebe3-eb7d-50e4-95af-48c4987a3d48", "text": "\u5728\u9ed1\u6697\u4e2d\u88ab\u8ffd\u9010\u7684\u7537\u4eba\u7684\u80cc\u5f71\uff0c\u7535\u5f71\u5316\u7684\u9ad8\u54c1\u8d28\u903c\u771f\u8868\u73b0\u3002"} +{"id": "7002363", "video_name": "105ac7e3-ffe5-56ca-aa2c-2fd1ade32821", "text": "\u9ad8\u8fbe\u72d7\u548c\u7537\u5b69\u76f8\u4e92\u6218\u6597\u3002"} +{"id": "2004609", "video_name": "bcdf75ed-d69a-5862-bb0e-84770e94a6c5", "text": "\u4ece\u5730\u7403\u4e0a\u770b\u98de\u884c\u5c9b\u7684\u666f\u8c61\u3002\u5c9b\u5c7f\u5982\u6b64\u5de8\u5927\uff0c\u4ee5\u81f3\u4e8e\u88ab\u9ed1\u4e91\u6240\u7b3c\u7f69\uff0c\u906e\u4f4f\u4e86\u592a\u9633\u3002\u5b9d\u85cf"} +{"id": "0004205", "video_name": "04f4c944-7e65-5719-81fd-5a07a26c11da", "text": "\u5728\u4e00\u4e2a\u5c0f\u5c0f\u7684\u6751\u5e84\u91cc\uff0c\u6709\u4e09\u4e2a\u5fe0\u8bda\u7684\u670b\u53cb\u827e\u54c8\u8fc8\u5fb7\u3001\u83b1\u62c9\u548c\u963f\u91cc\u00b7\u54c8\u6851\u3002\u4ed6\u4eec\u6bcf\u5929\u653e\u5b66\u540e"} +{"id": "5001161", "video_name": "3968d424-d1fd-566a-b2c9-4206c6ac5e35", "text": "\u7a81\u7136\u7684\u52a8\u6f2b\u767d\u732b\u5750\u5728\u7a97\u6237\u4e0a\u6253\u54c8\u6b20\u3002"} +{"id": "3003189", "video_name": "248f6c7c-b470-5851-add1-afdc0fe5454d", "text": "\u7f8e\u4e3d\u7684\u98ce\u666f\u548c\u65e5\u843d\u3002\u4fe1\u606f\uff1aTQ MI AMOR\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004006", "video_name": "3c538aae-c352-5ef4-ba2f-267361a9d32a", "text": "\u6cd5\u56fd\u65af\u7279\u62c9\u65af\u5821\u7684\u4e00\u4e2a\u5c0f\u6751\u5e84\u3002\u65f6\u95f4\u662f1518\u5e74\u3002\u5b69\u5b50\u4eec\u5728\u73a9\u800d\u3002\u5987\u5973\u548c\u7537\u4eba\u5728\u505a\u4ed6\u4eec\u7684\u65e5\u5e38\u5de5"} +{"id": "0004541", "video_name": "0adeffdf-bef6-54dd-b0bb-03376f4d9e38", "text": "\u9752\u5c11\u5e74\u5973\u5b69\u8e72\u5728\u8349\u5730\u4e0a\uff0c\u7a7f\u7740\u957f\u800c\u6734\u7d20\u3001\u957f\u8896\u7684\u88d9\u5b50\uff0c\u8138\u6652\u9ed1\u4e86\u800c\u4e14\u51fa\u6c57\u4e86\uff0c"} +{"id": "3006081", "video_name": "0af4d774-349b-55b6-b4e8-6df4d7db35ba", "text": "\u7537\u5b69\u6574\u7406\u548c\u6e05\u6d01\u4ed6\u7684\u5367\u5ba4\u3002"} +{"id": "2005996", "video_name": "ea1d86ed-c42d-54e0-8528-6abe07087396", "text": "\u5723\u8bde\u8001\u4eba\u9001\u7cd6\u679c\u7ed9\u5b69\u5b50\u4eec\u3002"} +{"id": "2006356", "video_name": "4f74a9ff-a6d1-5931-b3b9-8c5d4d1c8775", "text": "\u9713\u8679\u706f\u95ea\u70c1\uff0c\u7ea2\u8272\u56f4\u5dfe\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "4003904", "video_name": "700f787f-02e1-5d48-9c77-75ec1b67f4ba", "text": "\u5c06\u8fd9\u4e2a\u533a\u57df\u53d8\u6210\u4e00\u4e2a\u7b49\u5f85\u533a\uff0c\u4e3a\u5c3c\u6851\u7ecf\u9500\u5546\u7684\u987e\u5ba2\u5728\u505c\u8f66\u573a\u7b49\u5019\u3002\u9644\u4ef61\u3002"} +{"id": "0004074", "video_name": "02caf794-ae1e-5991-a5eb-1f43d0d0b8cd", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u9ea6\u514b\u62c9\u4f26\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "3004444", "video_name": "762f0129-5e9d-5c8a-b7a1-c98f048cb3e2", "text": "\u9ec4\u8272\u7684\u5154\u5b50\u5728\u68ee\u6797\u91cc\u8df3\u8dc3\u3002"} +{"id": "0006995", "video_name": "3661ad96-7cdb-5ab0-a0e6-ec0fe76c2527", "text": "\u4e00\u5e45\u53e4\u8001\u7684\u63d2\u753b\uff0c\u63cf\u7ed8\u4e86\u5766\u535a\u62c9\u706b\u5c71\u55b7\u53d1\u65f6\uff0c\u55b7\u51fa\u7070\u70ec\u548c\u70df\u96fe\u51b2\u5929\u7684\u573a\u666f\u3002"} +{"id": "3005311", "video_name": "e6589cde-c8ad-5ed3-bb7c-661d659e322d", "text": "\u73b0\u5b9e\u7684\u7537\u4eba\u8138\u770b\u7740\u6211\u3002"} +{"id": "0005719", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u6ce2\u65af\u5deb\u5e08\uff0c\u5728\u6c99\u6f20\u4e2d\u6f2b\u6b65\uff0c\u5929\u7a7a\u4e2d\u53d1\u751f\u4e86\u65e5\u98df\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "1005486", "video_name": "64c8b1c4-6f00-5aa7-b787-7efb8646753a", "text": "\u57ce\u9547\u4e2d\u5fc3\u7684\u5de8\u5927\u77f3\u5899\uff0c\u77f3\u5934\u5728\u5915\u9633\u4e0b\u53cd\u5c04\u51fa\u4e0d\u540c\u7684\u989c\u8272\u3002"} +{"id": "6002803", "video_name": "f803931f-86b4-533d-ac17-a0d44a0fdbda", "text": "\u4e3b\u6301\u4eba\u6b63\u5728\u64ad\u62a5\u4e00\u6761\u4e25\u8083\u7684\u65b0\u95fb\u3002"} +{"id": "2007499", "video_name": "e6e31ef8-a3e0-59f8-96b7-2435c5f96ea4", "text": "\u4e00\u4f4d\u6234\u7740\u7070\u8272\u5e3d\u5b50\u7684\u8001\u4eba\u4ee5\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u6ce8\u89c6\u7740\u955c\u5934\u3002"} +{"id": "4002027", "video_name": "a1ef06ed-49ac-5071-a7b2-9129297e447e", "text": "\u7ea2\u8272\u88c5\u626e\u76843D\u5316\u8eab\u4e2d\u7684\u8759\u8760\u4fa0"} +{"id": "3003690", "video_name": "25cfc9e6-6098-50c4-b366-e0ba758f55d6", "text": "\u8331\u8389\u53f6\u00b7\u5218\u6613\u65af\u7a7f\u7740\u66b4\u9732\u7684\u8863\u670d\uff0c\u5728\u7535\u5f71\u7247\u6bb5\u4e2d\u9a91\u5728\u7537\u4eba\u8eab\u4e0a\u5486\u54ee\u65f6\u7740\u706b\u4e86\u3002"} +{"id": "0005581", "video_name": "1d77fbdb-9075-54d3-88ab-4540be2eae7b", "text": "\u9ad8\u54c1\u8d28\uff1a1.4\uff0c\u6700\u4f73\u54c1\u8d28\uff1a1.4\uff0c\u6770\u4f5c\uff1a1.4\uff0c\u5b98\u65b9\u827a\u672f\uff0c\u5b98\u65b9\u58c1\u7eb8\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c"} +{"id": "1006630", "video_name": "798eb786-37df-51f1-a6a8-b93364a4c193", "text": "\u4e00\u4e2a\u5973\u5b69\u88ab\u8499\u4e0a\u773c\u775b\u7f6e\u8eab\u4e8e\u9ed1\u6697\u7684\u623f\u95f4\u4e2d\uff0c\u5982\u540c\u8d85\u73b0\u5b9e\u7684\u3001\u5929\u4f7f\u822c\u7684\u3001\u5929\u5802\u4e00\u822c\u7684\u7535\u5f71\u753b\u9762"} +{"id": "1006731", "video_name": "7b572d7a-09b9-5476-89b9-92d6cb5a35ed", "text": "\u51ac\u5b63\u68ee\u6797\u91cc\u7684\u5723\u8bde\u8282\uff0c\u4e00\u676f\u6c99\u62c9\u7ecf\u5e38\u4f1a\u7528\u811a\u5411\u89c2\u4f17\u8d70\u53bb\u3002"} +{"id": "2005955", "video_name": "e43ccbc1-eeb8-50cf-9e60-cf264bd73ab5", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e24\u624b\u5f20\u5f00\uff0c\u96e8\u4e2d\u3002"} +{"id": "2007316", "video_name": "69216977-29f0-5a1d-b22d-e724625b7576", "text": "\u5c71\u7f8a\u4eba\u7684\u4f20\u8bf4\u4e0e\u5317\u7f8e\u6c11\u95f4\u4f20\u8bf4\u6709\u5173\uff0c\u7279\u522b\u662f\u4e0e\u5c71\u7f8a\u4eba\u6709\u5173\u3002\u4ed6\u662f\u4e00\u79cd\u6df7\u5408\u751f\u7269\uff0c\u90e8\u5206\u662f\u4eba\uff0c\u90e8\u5206\u662f\u5c71\u7f8a\u3002"} +{"id": "8001124", "video_name": "27460c4b-8f3b-589d-bb8b-46a3e134d56a", "text": "\u4e00\u4f4d\u5c16\u53eb\u7684\u5973\u4eba\u4ee5\u5361\u901a\u98ce\u683c\u6cbf\u8857\u5954\u8dd1\u3002"} +{"id": "4003401", "video_name": "ad317354-bb44-57c6-a7bf-68b1d45267d3", "text": "\u4e00\u53ea\u6709\u773c\u775b\u548c\u8033\u6735\u7684\u53ef\u7231\u8611\u83c7\u3002"} +{"id": "3004445", "video_name": "a74a9252-3f19-5bf2-b510-37716dcd3331", "text": "Source sentence: Rabban Usman Moeen Mubashhir or Kaif\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u62c9\u73ed\u00b7\u4e4c\u65af\u66fc\u00b7\u7a46\u6069\u00b7\u7a46\u5df4\u4ec0\u5e0c"} +{"id": "0004551", "video_name": "0b16dcea-1e69-5765-af04-a867083de8a8", "text": "\u751f\u547d\u3001\u5b87\u5b99\u548c\u4e00\u5207\u7684\u7b54\u6848"} +{"id": "3006634", "video_name": "72b17dca-740a-508d-a271-8de1013c0af8", "text": "\u5973\u5b69\u548c\u8c7a\u72fc\u68ee\u6797\u7684\u5361\u901a3D\u3002"} +{"id": "6002977", "video_name": "29676cc4-fa9d-5d4d-96cd-59ec3e0c60e4", "text": "\u7b80\u5355\u7684\u95ea\u4eae\u6548\u679c\u548c\u6587\u5b57\u548c\u80cc\u666f\u706f\u5149\u7684\u95ea\u70c1\u6548\u679c\u3002\u4fe1\u606f\uff1aBTS\u68cb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005234", "video_name": "6049327a-97ee-5c84-be23-ba3737bbcc01", "text": "\u5f69\u8272\u73bb\u7483\u6784\u6210\u7684\u5206\u5f62\u5bfa\u5e99\u5185\u90e8"} +{"id": "8002096", "video_name": "7fe0129f-a093-5e57-8316-0fc25f4a01f7", "text": "\u5b64\u72ec\u4e14\u5145\u6ee1\u654c\u610f\u7684\u661f\u7403\u4e0a\uff0c\u66fc\u8fbe\u6d1b\u4eba\u5954\u8dd1\u7740\uff0c\u5468\u56f4\u6709\u4e09\u4e2a\u536b\u661f\u3002 \n\nSource sentence: The cat is sleeping"} +{"id": "2006055", "video_name": "8143f9e1-3036-5c6c-96fa-c40d17fc8649", "text": "\u5b64\u72ec\u7684\u7a7a\u8857\uff0c\u80cc\u666f\u4e2d\u7684\u6708\u4eae\uff0c\u6c89\u90c1\u7684\u60c5\u7eea\uff0c\u6c1b\u56f4\u5316\u7684\u706f\u5149\u3002"} +{"id": "3006743", "video_name": "b9ad0d42-9da4-588e-8187-40a33dab3126", "text": "\u6469\u5929\u5927\u697c\uff0c\u5e02\u4e2d\u5fc3\uff0c\u66fc\u8c37\u3002\u4fe1\u606f\uff1a\u6301\u7eed\u4e24\u5c0f\u65f6\u7684\u6027\u7231\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003617", "video_name": "6a004b09-1ed8-5ee8-9f75-22509a9e4327", "text": "\u9ed1\u8272\u52b3\u65af\u83b1\u65af\uff0c\u6211\u6210\u529f\u6323\u4e86\u4e00\u767e\u4e07\u7f8e\u5143\u3002"} +{"id": "1005257", "video_name": "60bc8893-eb6d-5b4e-bb2a-3a55e8673581", "text": "\u5e74\u8f7b\u5e05\u6c14\u7684\u7537\u5b69\uff0c\u80cc\u7740\u4e66\u5305\u3002"} +{"id": "2003393", "video_name": "e620871b-7192-5b09-906b-f7118f60623d", "text": "\u4e00\u53ea\u732b\u5728\u4e61\u6751\u57ce\u5e02\u7684\u957f\u51f3\u4e0a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u62cd\u6444\u7684\u7279\u5199\u955c\u5934\uff0c\u5409\u535c\u529b\u5de5"} +{"id": "1005434", "video_name": "63e170bc-52d1-57bf-aa63-6144d69a5751", "text": "\u4e9a\u6d32\u4eba\uff0c\u771f\u5b9e\uff0c\u7528\u4f24\u75a4\u8138\u753b\u3002"} +{"id": "7003889", "video_name": "65f85795-1135-5c3e-a4b7-6b82b566a13d", "text": "\u4e00\u4e2a\u7537\u5b69\u7ecf\u5386\u75db\u82e6\u3001\u538b\u529b\u3001\u6291\u90c1\u548c\u5feb\u4e50\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u753b\u4f5c\uff0c\u4ee5\u8fea\u65af\u5c3c\u76ae\u514b\u65af\u7684\u98ce"} +{"id": "2006893", "video_name": "fba5d01a-ee07-53c2-b125-e017cc853c36", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u88c5\u6ee1\u80e1\u6912\u7684\u5b9d\u7bb1\uff0c\u8c61\u5f81\u7740\u74e6\u65af\u79d1\u00b7\u8fbe\u4f3d\u9a6c\u7684\u5bfb\u627e\u30028k\u8d85\u9ad8\u6e05"} +{"id": "4003047", "video_name": "9d19514c-3cf4-51dc-883c-2a42de78b111", "text": "\u4e00\u4e2a24\u5c81\u7684\u82f1\u4fca\u7537\u5b50\u5728\u96a7\u9053\u91cc\uff0c\u4ed6\u662f\u4e00\u540d\u8003\u53e4\u5b66\u5bb6\uff0c\u62e5\u6709\u795e\u8bdd\u822c\u7684\u706b\u7130\u80fd\u529b\u3002\n\nSource sentence: My favorite food is sushi because it"} +{"id": "6002040", "video_name": "4bebec8b-1d26-5753-9375-2199467f607f", "text": "\u4e00\u53ea\u5361\u901a\u72ee\u5b50\u81ea\u8c6a\u5730\u7ad9\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u4e1b\u6797\u73af\u5883\u4e2d\u7684\u5ca9\u77f3\u4e0a\uff0c\u8c61\u5f81\u7740\u5b83\u7684\u738b\u8005\u5b58\u5728\u3002"} +{"id": "4002885", "video_name": "5806b763-85c5-5ca6-a1ee-d008722cbd46", "text": "\u4e00\u4e2a\u5de7\u514b\u529b\u5757\u5206\u88c2\u6210\u5c0f\u5757\u7684\u89c6\u9891\u3002"} +{"id": "0003774", "video_name": "4328b68e-a03d-5913-8b1a-991a40282ea3", "text": "\u6240\u6709\u7684\u571f\u5730\u3001\u52a8\u7269\u3001\u6c34\u4e0b\u751f\u7269\u90fd\u5728\u8fc7\u7740\u5b83\u4eec\u6b63\u5e38\u7684\u751f\u6d3b\u3002"} +{"id": "4002555", "video_name": "98f58534-7f17-5403-a340-dc829dd4763d", "text": "\u6d41\u884c\u827a\u672f\u72d7\u8096\u50cf\uff0c\u4ece\u7167\u7247\u7ed8\u5236\u7684\u6c34\u5f69\u72d7\u8096\u50cf\uff0c\u6d41\u884c\u827a\u672f\u6597\u725b\u72ac\u7ed8\u753b\uff0c\u9002"} +{"id": "8003689", "video_name": "fcb18e00-8249-5330-8927-2fb789342750", "text": "\u4e24\u4e2a\u5e74\u8f7b\u4eba\u751f\u6d3b\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u4e0a\uff0c\u7ecf\u5386\u591a\u5e74\u5b64\u72ec\u540e\u76f8\u9047\u5e76\u5c55\u5f00\u4e00\u6bb5\u6c38\u6052\u7684\u7231\u60c5\u6545\u4e8b\uff0c\u89c6\u9891\u65f6\u957f4"} +{"id": "8002551", "video_name": "4caa6b76-a97a-529c-9b36-bbc5404968c4", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u6e29\u99a8\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b69\u3002\u8389\u8389\u5fc3\u4e2d\u5145\u6ee1"} +{"id": "3005977", "video_name": "0d3b9b14-dc52-5bc4-a285-e3f72c982567", "text": "\u5200\u8eab\u4e0a\u5e26\u7740\u84dd\u9ed1\u8272\u7684\u706b\u7130\uff0c\u60ac\u6d6e\u5728\u7a7a\u4e2d\uff0c\u5468\u56f4\u6563\u53d1\u7740\u706b\u7130\uff0c\u71c3\u70e7\u7740\u9aa8\u5934"} +{"id": "3005210", "video_name": "cfd4c815-dc44-55ae-8e20-daeac96d1f22", "text": "\u7728\u773c\u3001\u8863\u670d\u7684\u52a8\u6001\u6548\u679c\u3001\u624b\u90e8\u52a8\u4f5c\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002158", "video_name": "480765e7-dfd6-54d6-873b-dd2a364c9dea", "text": "\u4e00\u4e2a\u4e8c\u5341\u51fa\u5934\u7684\u5973\u5b69\uff0c\u6709\u7740\u7eff\u8272\u7684\u773c\u775b\u548c\u6df1\u68d5\u8272\u7684\u5934\u53d1\u3002\u5979\u6709\u96c0\u6591\uff0c\u7a7f\u7740\u4e00\u6761\u957f\u957f\u7684\u7eff"} +{"id": "2004336", "video_name": "0ed1f446-d28b-56d3-a97b-a45a7eeb5433", "text": "\u4ea7\u751f\u4e00\u4e2a\u8fde\u7eed\u7684\u89c6\u89c9\u5448\u73b0\uff0c\u4fdd\u6301\u5728\u540c\u4e00\u4f4d\u7f6e\u4e0d\u52a8\uff0c\u540c\u65f6\u5feb\u901f\u5730\u8f6c\u6362\u901a\u8fc7\u4eba\u7c7b\u6587\u660e\u7684\u5404\u4e2a\u5386\u53f2\u65f6\u671f\uff0c\u4ece\u5df2\u77e5\u6700"} +{"id": "0004800", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "\u4ece\u592a\u9633\u89d2\u5ea6\u770b\u6708\u4eae\u662f\u5982\u4f55\u5f62\u6210\u7684\uff0c\u753b\u51fa\u6765\u3002"} +{"id": "3003016", "video_name": "226cd516-fc55-55dd-8e7d-1c267bebfb35", "text": "\u4f7f\u7528\u4f0a\u65af\u5170\u6559\u80cc\u666f\u5236\u4f5c\u4e00\u4e2a\u77ed\u89c6\u9891\u3002\n\nSource sentence: I want to order a large pizza with pepperoni and mushrooms. \n\n\u6211\u60f3\u8981\u8ba2\u8d2d\u4e00\u4efd\u6709\u610f\u5f0f"} +{"id": "7004969", "video_name": "3ec3f9da-204a-5e02-8a00-aec7e17442c4", "text": "\u5236\u4f5c\u4e00\u4e2a\u5feb\u901f\u526a\u8f91\uff0c\u5c55\u73b0\u5343\u4e0e\u5343\u5bfb\u548c\u767d\u4e00\u8d77\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\u7684\u573a\u666f\u3002"} +{"id": "0006567", "video_name": "2ebd952b-019a-5ad8-98bc-c441b7b8306b", "text": "\u5982\u679c\u300a\u661f\u7403\u5927\u6218\u300b\u662f\u5b9d\u83b1\u575e\u7535\u5f71\uff0c\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\u7684\u573a\u666f\u3002"} +{"id": "3005002", "video_name": "0ec1b592-0728-5f54-9c39-7b752cb0eded", "text": "\u4e24\u4e2a\u6b66\u58eb\u5728\u706b\u4e2d\u62c7\u6307\u640f\u6597\uff0c\u63a5\u7740\u5728\u5357\u6781\u7684\u96ea\u4e2d\uff0c\u7136\u540e\u5728\u6c34\u4e0b\u3002"} +{"id": "0006955", "video_name": "35cec0ee-9c5f-5b23-80de-67ce0a0f9dda", "text": "\u4e00\u4e2a\u9ad8\u5efa\u7b51\u7684\u8f89\u714c\u5bab\u6bbf\uff0c\u5468\u56f4\u6709\u7f8e\u4e3d\u7684\u5c71\u4e18\u73af\u7ed5\uff0c\u8986\u76d6\u7740\u968f\u7740\u98ce\u7f13\u6162\u6643\u52a8"} +{"id": "1003593", "video_name": "4226c933-062a-5ac3-a568-84b119ff0da5", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u516c\u56ed\u548c\u4e00\u7247\u98ce\u666f\u5982\u753b\u7684\u6c60\u5858\uff0cRemy\u548cBenny\u5728\u5176\u4e2d\u805a\u96c6\uff0c\u4eab\u53d7\u7740\u548c\u5e73\u7684\u4e00\u5929\uff0c\u5ea6\u8fc7\u4ed6\u4eec\u5192"} +{"id": "7003355", "video_name": "3212cd19-027a-550b-b571-246a17de8e14", "text": "\u4e00\u4e2a\u53cb\u597d\u7684\u5973\u5b69\u7ad9\u57281960\u5e74\u4ee3\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2006562", "video_name": "3546b42e-a096-5f8f-bffa-1f47b3ec23b9", "text": "\u5973\u4eba\u770b\u7740\u76f8\u673a\u6325\u624b\u3002"} +{"id": "0005607", "video_name": "1deb66bc-454b-56ba-8d85-0caaf0922d1d", "text": "\u4e00\u4e2a\u4ee5\u8fd9\u5f20\u7167\u7247\u4e3a\u57fa\u7840\u7684\u89c6\u9891\uff0c\u5448\u73b0\u51fa\u4e00\u79cd\u8fd0\u52a8\u611f\uff0c\u4eff\u4f5b\u706b\u8f66\u5728\u524d\u8fdb\uff0c\u8425\u9020\u51fa\u865a\u6784\u7684\u573a\u666f\u3002"} +{"id": "8003304", "video_name": "202e1854-5981-5ab4-bee4-65b46eb639e9", "text": "\u4e00\u90e8\u6050\u6016\u7535\u5f71\u4e2d\u7684\u573a\u666f\uff0c\u591c\u665a\uff0c\u9634\u68ee\u53ef\u6016\uff0c\u666f\u6df1\uff0c\u7535\u5f71\u5316\u7684\u7167\u660e\u3002"} +{"id": "8003038", "video_name": "11e55af2-ef75-523e-b369-153a12131dc5", "text": "\u4e00\u53ea\u8eab\u7a7f\u94bb\u77f3\u94e0\u7532\u7684\u72ee\u5b50\u5728\u6708\u7403\u4e0a\u6ce8\u89c6\u7740\u592a\u9633\u3002"} +{"id": "1003723", "video_name": "44c4702f-2afa-5e5e-8871-02952670146d", "text": "\u51e0\u4e2a\u5927\u5b66\u751f\u6b63\u5728\u8349\u5730\u4e0a\u70ed\u70c8\u8ba8\u8bba\u3002"} +{"id": "2005592", "video_name": "4cf52c3b-0931-55ea-9eea-f4b843bd8d1b", "text": "\u592a\u7a7aX\u706b\u7bad\u5347\u7a7a\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3005580", "video_name": "decc59f3-3c7f-58a3-ba9a-9ea5d502aecd", "text": "\u706b\u7206\u7684\u732b\u54aa\u5bf9\u51b3\uff1a\u8e0f\u5165\u4e00\u4e2a\u89c6\u89c9\u4e0a\u5f15\u4eba\u6ce8\u76ee\u3001\u903c\u771f\u7684\u4e2d\u4e16\u7eaa\u4e16\u754c\uff0c\u4ee5\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1"} +{"id": "1006765", "video_name": "7bd167c6-cc3b-535d-9227-4a7399e355cd", "text": "\u65b0\u5a18\u5728\u9ea6\u7530\u91cc\u884c\u8d70\u7684\u89c6\u9891\u3002\n\nSource sentence: Can you help me find my keys?\n\u4f60\u80fd\u5e2e\u6211\u627e\u5230\u6211\u7684\u94a5\u5319\u5417\uff1f"} +{"id": "4004958", "video_name": "856eb496-d911-5177-bdf3-e0c2dc54c160", "text": "\u8b66\u65b9\u5728Chuck E Cheese\u513f\u7ae5\u9910\u5385\u5916\u7684\u72af\u7f6a\u73b0\u573a\u3002\u5efa\u7b51\u7269\u524d\u7684\u8be6\u7ec6\u7167\u7247\u3002"} +{"id": "4004268", "video_name": "65b8d87d-cacc-59c1-8bea-b9d87fce1934", "text": "\u5fb7\u62c9\u79d1\u00b7\u9a6c\u5c14\u798f\u7528\u9b54\u6756\u65bd\u6cd5\u3002"} +{"id": "6004886", "video_name": "2204acc7-cd3d-5c8a-91fa-65ea37e662ac", "text": "\u5496\u5561\u5e97\u91cc\u5236\u4f5c\u5496\u5561\u7684\u5496\u5561\u5e08\u7684\u5f62\u8c61\u3002"} +{"id": "7004206", "video_name": "a4e35504-4f59-5122-a1dd-1958696c58fa", "text": "\u4e00\u4e2a\u8001\u82cf\u683c\u5170\u57ce\u5821\uff0c\u79cb\u5929\uff0c\u96e8\u6c34\uff0c\u7834\u7a97\u540e\u7684\u9b3c\u5f71\u3002"} +{"id": "3005456", "video_name": "c4919df6-2e0a-5819-abcd-9868befa3e68", "text": "\u5728\u5317\u65b9\u795e\u7947\u7684\u966a\u4f34\u4e0b\u8fdb\u884c\u62cd\u5356\u3002"} +{"id": "6004055", "video_name": "95ee2b0f-d7eb-5c6d-a09d-8dfd3e4a2fe9", "text": "\u767d\u8272\u7684\u76d2\u5b50\u5728\u7a7a\u4e2d\u6f5c\u6c34\u3002"} +{"id": "8002252", "video_name": "410449be-ec5c-58b2-916b-ef3143894c26", "text": "\u5728\u6728\u5c4b\u95e8\u53e3\u6302\u4e0aEtsy\u5546\u5e97\u7684\u6807\u724c\uff0c\u80cc\u666f\u662f\u7530\u91ce\u4e0a\u7684\u82b1\u6735\u3001\u9e1f\u513f\u548c\u5154\u5b50\uff0c\u8ba9\u8fd9\u4e2a\u6728"} +{"id": "1006091", "video_name": "6fa86fe4-4e86-5cb2-93ea-e05da7984bfd", "text": "\u5bb6\u5ead\u5728\u4ed6\u4eec\u660f\u6697\u7684\u623f\u5b50\u91cc\u4e89\u5435\u3002"} +{"id": "1003034", "video_name": "37b45786-90c3-5c89-934f-2ef67a131864", "text": "\u4e00\u676f\u6ee1\u6ee1\u7684\u6c34\u94f6\u6d12\u51fa\u6765\u4e86\u3002"} +{"id": "2006211", "video_name": "1d2a85e8-fb9a-5e69-9c0a-51e509e0e929", "text": "\u66b4\u98ce\u96e8\u8fc7\u540e\uff0c\u57ce\u5e02\u8fce\u6765\u4e86\u4e00\u4e2a\u660e\u5a9a\u7684\u6674\u5929\u3002"} +{"id": "6003965", "video_name": "6048787a-a9ea-5258-a89b-9afa3844119e", "text": "\u4e00\u67b6\u673a\u5668\u4eba\u6b63\u5728\u5a01\u5c3c\u65af\u98de\u884c\u3002"} +{"id": "3006204", "video_name": "b1702dc5-4203-5228-bcbc-e28daf2fbf7e", "text": "\u540d\u4e3a\u51ef\u514b\u897f\u7684\u5973\u5996\u3002\u5979\u91ce\u5fc3\u52c3\u52c3\uff0c\u6e34\u671b\u62e5\u6709\u5f3a\u5927\u800c\u82f1\u52c7\u7684\u540e\u4ee3\u3002"} +{"id": "0003642", "video_name": "40e8d6fd-d42c-5850-aedd-31c0af65211c", "text": "\u963f\u6ce2\u7f5711\u53f7\u706b\u7bad\u4ece\u5361\u7eb3\u7ef4\u62c9\u5c14\u89d2\u5347\u7a7a\uff0c\u5168\u4e16\u754c\u7684\u89c2\u4f17\u90fd\u770b\u5230\u5b83\u98de\u5411\u6708\u7403\u3002"} +{"id": "3005743", "video_name": "eb6b2730-427d-5a01-9634-fa08e5981e9e", "text": "\u4e00\u7fa4\u58eb\u5175\u5728\u623f\u95f4\u91cc\u5ba1\u95ee\u5176\u4e2d\u4e00\u4eba\u3002"} +{"id": "0004182", "video_name": "04b1ea98-bc7e-58fb-b0e9-2accabae5782", "text": "\u5728\u5bf9\u6297\u4e2d\uff0c\u7ea6\u7ff0\u7784\u51c6\u5e76\u5f00\u706b\uff0c\u5f15\u53d1\u4e86\u4e00\u573a\u6fc0\u70c8\u7684\u67aa\u6218\u3002\u5b50\u5f39\u98de\u821e\uff0c\u5f39\u7247\u95ea"} +{"id": "0006545", "video_name": "2e74d164-1310-59f2-821c-fd19d5b2ddc0", "text": "\u4e00\u4e2a\u4e71\u7cdf\u7cdf\u7684\u623f\u95f4\uff0c\u5230\u5904\u90fd\u662f\u6563\u843d\u7684\u8863\u670d\u548c\u7eb8\u5f20\u3002\u573a\u666f\uff1a\u7535\u5f71\u3002\n\nSource sentence: I like to eat spicy food, but sometimes it"} +{"id": "3006429", "video_name": "b6ab5c2e-3f36-5416-8b07-df34a2e1d9b6", "text": "\u6d77\u5cb8\u7ebf\u4e0a\u65b9\u62cd\u6444\u7684\u6d77\u666f\u7167\u7247\u3002"} +{"id": "3003463", "video_name": "57c5c9ab-fe96-56e5-a9a5-a518529146f1", "text": "Source sentence: \u4f46\u662f\u96f7\u6587\u65af\u514b\u7f57\u592b\u7279\u7cbe\u795e\u75c5\u9662\u5c06\u6c38\u8fdc\u662f\u4e00\u4e2a\u9ed1\u6697\u7684\u5730\u65b9\uff0c\u5176\u95f9\u9b3c\u7684\u5386\u53f2\u4f5c"} +{"id": "8002834", "video_name": "944f4380-b383-5d38-afab-1841e87c63e4", "text": "\u4e00\u4e2a\u591a\u6837\u5316\u7684\u6b66\u672f\u56e2\u961f\u805a\u5728\u4e00\u8d77\uff0c\u5305\u62ec\u7a7a\u624b\u9053\u3001\u529f\u592b\u3001\u5408\u6c14\u9053\u7b49\u4f20\u7edf\u6b66\u672f\u7684\u7ec3\u4e60\u8005\uff0c\u8eab\u7740"} +{"id": "7004644", "video_name": "3a0bf195-8c27-56cb-8bbb-21a4642b8181", "text": "\u9644\u8fd1\u9ec4\u6d77\u7684\u5973\u5b69"} +{"id": "0004517", "video_name": "0a5737b8-941a-5f8a-97d7-8c428012d2e4", "text": "\u4e00\u4e2a\u5a74\u513f\u6b63\u5728\u5411\u6211\u722c\u6765\u3002"} +{"id": "8002930", "video_name": "76aeba48-9e5f-578f-96a3-d02625134973", "text": "\u5f53\u6444\u50cf\u673a\u7f13\u6162\u5730\u626b\u8fc7\u53e4\u5723\u7ecf\u7684\u590d\u6742\u5c01\u9762\u548c\u9540\u91d1\u9875\u65f6\uff0c\u65c1\u767d\u5f00\u59cb\u8bb2\u8ff0\u542f\u793a\u5f55\u4e2d\u9884\u8a00\u7684\u795e"} +{"id": "0006921", "video_name": "355a1c96-cdfe-5e55-adfb-4f33775a1e33", "text": "\u6211\u60f3\u8981\u76f8\u540c\u7684\u80cc\u666f\u4f46\u66f4\u52a0\u771f\u5b9e\uff0c\u653e\u5728\u94a2\u7434\u4e0a\uff0c\u4e0a\u9762\u5199\u7740\u201c\u6b22\u8fce\u6765\u5230\u83b1\u6602\u8ba1\u5212\u201d\u3002"} +{"id": "7002530", "video_name": "1c487856-9de1-526d-a1c7-f0f20f15e0e0", "text": "\u4e00\u5bb6\u7f8e\u4e3d\u7684\u9910\u5385\u5750\u843d\u5728\u5c71\u9876\u4e0a\u3002"} +{"id": "3004859", "video_name": "c0f6abc2-c82d-58ba-8d9e-0138e2a02ab2", "text": "\u7b2c\u4e00\u6b21\u4e16\u754c\u5927\u6218\u7684\u5173\u8282\u5f0f\u4eba\u7269\uff0c\u6781\u7b80\u4e3b\u4e49\u58a8\u753b\u98ce\u683c\uff0c\u6d88\u5931\u70b9\u5728\u767d\u7eb8\u4e0a\uff0c\u7531\u5f10\u74f6\u52c9\u521b\u4f5c\u7684"} +{"id": "2007198", "video_name": "e4d49931-00f7-5fec-ac27-76d856422ff5", "text": "\u4ed6\u53d1\u8a93\u5373\u4f7f\u5728\u6b8b\u9ab8\u88ab\u6e05\u7406\u540e\uff0c\u4ed6\u4ecd\u80fd\u542c\u5230\u5979\u4ee4\u4eba\u4e0d\u5b89\u7684\u4f4e\u8bed\uff0c\u5f15\u9886\u4ed6\u52a0\u5165\u5979\u6c38\u6052\u7684\u7b49"} +{"id": "6004835", "video_name": "30d39628-446b-52f6-adcc-5bf0ed1055fc", "text": "\u5f53\u732b\u8fc5\u901f\u5730\u5728\u767d\u96ea\u8868\u9762\u8ffd\u8e2a\u3002"} +{"id": "7004574", "video_name": "f6942db9-2ab3-52a7-a8cc-6f39756a7303", "text": "\u5357\u82cf\u4e39\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5448\u73b0\u5f69\u8272\u73bb\u7483\u98ce\u683c\u3002"} +{"id": "2005851", "video_name": "567caa85-7141-5fa1-a085-41e7513edd81", "text": "\u4e00\u5bb6\u4eba\u5b9a\u5c45\u5728\u4e00\u5ea7\u7528\u6811\u53f6\u548c\u82b1\u5349\u88c5\u9970\u7684\u8212\u9002\u6811\u5c4b\u91cc\u3002"} +{"id": "7004905", "video_name": "582c18af-c60e-583e-a26a-cfb9f99c9027", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u4e00\u9897\u53d1\u5149\u7684\u661f\u661f\uff0c\u5c06\u5176\u653e\u5728\u5929\u7a7a\u4e2d\u3002\u4ee5\u68b5\u9ad8\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2007654", "video_name": "e8a4034b-13b0-5791-9a6d-ea776c0df2d9", "text": "\u65af\u5e0c\u74e6\u5409\u76d1\u7763\u5efa\u9020\u6d77\u519b\u8239\u53ea\u3002\u4e00\u5f20\u8c61\u5f81\u6027\u7684\u56fe\u7247\uff0c\u80cc\u666f\u662f\u6d77\u519b\uff0c\u5f3a\u8c03\u4ed6\u4f5c\u4e3a\u5370\u5ea6\u6d77\u519b"} +{"id": "1005048", "video_name": "5d589423-5dba-5d1b-94e7-d72b164a3ea3", "text": "\u5c0f\u5deb\u5e08\u7684\u6545\u4e8b\u544a\u8bc9\u6211\u4eec\uff0c\u5584\u826f\u3001\u667a\u6167\u548c\u771f\u6b63\u7684\u53cb\u8c0a\u662f\u975e\u5e38\u91cd\u8981\u7684\u3002\u5e0c\u671b\u8fd9\u4e2a\u6545\u4e8b\u80fd\u6fc0"} +{"id": "0004736", "video_name": "0e59669a-5b9d-5be8-831b-17e43ab91428", "text": "\u9e2d\u5b50\u548c\u5929\u9e45\u5728\u6c34\u4e0a\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "5001489", "video_name": "9b11c136-e40e-58a4-b892-30bbf0d96662", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u98d3\u98ce\u671f\u95f4\u5728\u6d77\u6ee9\u4e0a\u62f3\u51fb\u3002"} +{"id": "8002155", "video_name": "c834fb9d-dc3d-59be-8e22-342b1436fc2f", "text": "\u5979\u6b63\u5728\u5531\u4e00\u9996\u7231\u60c5\u6b4c\u66f2\uff0c\u5979\u7684\u58f0\u97f3\u5145\u6ee1\u4e86\u6fc0\u60c5\u3002"} +{"id": "0005433", "video_name": "1ac3b1f4-8de8-5218-a6b4-7126fa1ef8a1", "text": "\u4e00\u4e2a\u5e78\u798f\u65b0\u65f6\u4ee3\u7684\u5f00\u59cb"} +{"id": "4004629", "video_name": "130eb8d6-9572-5720-82e9-93dd89ae74e8", "text": "\u5e02\u573a\u4e0a\u6240\u6709\u677f\u7403\u62cd\u7c7b\u578b\u7684\u6559\u7a0b"} +{"id": "3005161", "video_name": "f6fc4acc-f183-567f-8cbc-8705881d123c", "text": "\u521b\u9020\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u573a\u666f\uff0c\u4e00\u4e2a\u7537\u4eba\u628a\u4e00\u5757\u77f3\u5934\u6254\u5728\u4e00\u4e2a\u7834\u65e7\u7684\u57ce\u5e02\u4e0a\u3002"} +{"id": "2006043", "video_name": "7bfe8a45-25e0-5ac0-bfa3-97ce9bd8f5aa", "text": "\u6446\u52a8\u9713\u8679\u7ba1\u706f\u5728\u591c\u665a\u7684\u7816\u5899\u4e0a\uff0c\u9713\u8679\u706f\u7684\u5f00\u5173\u5faa\u73af\u65e0\u7f1d\uff0c\u53ef\u7528\u4e8e\u80cc\u666f\u3002"} +{"id": "8003179", "video_name": "01300f8a-32a6-550c-b7fc-5b21aff26a8c", "text": "\u56db\u4e2a\u4e2d\u56fd\u4eba\u5728\u73a9\u6251\u514b\u724c\u3002"} +{"id": "7004511", "video_name": "c4f15a09-1880-5d45-b108-d2b98aded8fe", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5927\u6d6a\u6467\u6bc1\u8759\u8760\u8239\u5728\u6d77\u6d0b\u4e0a\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "6004030", "video_name": "6bfbbd2c-4f44-545a-a985-f02fa416d232", "text": "\u7a7a\u6c14\u7ba1\u9053\u4e2d\u6ca1\u6709\u6e7f\u6c14\u51b7\u51bb\u3002"} +{"id": "0005665", "video_name": "1ef8930a-2c20-5772-93c1-3b36ab28361f", "text": "\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u7684\u7f57\u9a6c\u98ce\u683c\u96d5\u50cf\uff0c\u5e26\u6709\u8f90\u5c04\u66fc\u837c\u7f57\u6548\u679c\u3002"} +{"id": "4004003", "video_name": "b70c411a-1323-5069-bf25-73381aba8bb4", "text": "\u516b\u5341\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u9ed1\u9b54\u6cd5\u68ee\u6797\uff0c\u5468\u56f4\u6709\u5c45\u4f4f\u7684\u5b9e\u4f53\u3002\n\nSource sentence: The new restaurant in town serves delicious sushi rolls and sashimi"} +{"id": "7002321", "video_name": "ed129490-c4ff-5dc8-955c-472b3857c45f", "text": "\u5404\u79cd\u52a8\u7269\u7684\u8499\u592a\u5947\uff1a\u6d77\u8c5a\u3001\u5927\u8c61\u3001\u72d7"} +{"id": "7004083", "video_name": "ed6b3ae8-fbfb-5f2d-a284-7006d3e81915", "text": "80\u5e74\u4ee3\u7535\u5b50\u6e38\u620f\u5939\u5b50\uff0c8\u4f4d\u50cf\u7d20\u827a\u672f\uff0c\u5730\u7262\u623f\u95f4\u4e2d\u7684\u9ab7\u9ac5\u3002"} +{"id": "8001787", "video_name": "fd9969ed-c10e-5d09-98e3-81f32898da88", "text": "\u52a8\u6f2b\u4e2d\uff0c\u4e00\u7fa4\u5973\u5b69\u8dd1\u4e86\u8fc7\u6765\u3002"} +{"id": "6004709", "video_name": "95051606-6938-5956-b576-2031d4609946", "text": "\u5c0f\u5c24\u8fbe\u5927\u5e08\u4f5c\u4e3a\u539f\u529b\u7075\u4f53\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\u3002"} +{"id": "7002781", "video_name": "d93ba3c6-c029-5098-8950-53d0aa1ed5da", "text": "\u5f39\u5409\u4ed6\uff0c\u5feb\u4e50\u65f6\u5149\uff01\u6a31\u82b1\u3002"} +{"id": "1004263", "video_name": "4eef8fee-d3b3-5b1d-ad56-df15eda63945", "text": "\u5a01\u5c3c\u65af\u591c\u666f\u7684\u822a\u62cd\u89c6\u89d2\u3002\u9ad8\u6e05\u6670\u5ea6\u3002\u7535\u5f71\u611f\u300216:9\u3002"} +{"id": "7002737", "video_name": "f17a8243-6dd3-5b66-9b8f-fca7d2f4df62", "text": "\u534a\u9c7c\u534a\u72ee\u7684\u751f\u7269\u8df3\u821e\u3002"} +{"id": "1003454", "video_name": "3ff6fd3c-04d2-58cd-8a5c-8c8e01df9253", "text": "\u4e00\u53ea\u8774\u8776\u4ee5\u52a8\u6f2b\u98ce\u683c\u7684\u9ed1\u767d\u8272\u5750\u5728\u4f60\u624b\u638c\u4e0a\u3002"} +{"id": "0004088", "video_name": "02fe26ae-4eb8-5f64-b0b7-69ec01e620dd", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u548c\u4e00\u4e2a\u7537\u5b69\u8bf4\u8bdd\uff0c\u4f46\u7537\u5b69\u6b63\u5728\u5fd9\u7740\u73a9\u624b\u673a\uff0c\u6ca1\u6709\u7406\u5979\u3002\u8ba9\u89c6\u9891\u957f\u5ea6\u5ef6\u957f15\u79d2\u3002\u91c7\u75282D\u52a8\u753b\u98ce\u683c"} +{"id": "8003208", "video_name": "ed81c864-1848-520d-b268-d48dac61df29", "text": "\u4e00\u4e2a\u7d27\u5bc6\u7684\u68ee\u6797\u7279\u5199\uff0c\u6709\u79cb\u53f6\u3002\u4fe1\u606f\uff1aUPAEP\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7003930", "video_name": "fc14b37b-890a-572e-888b-7bb49df50724", "text": "\u4e00\u53ea\u732b\u5411\u5b83\u7684\u4e3b\u4eba\u5954\u8dd1\u3002"} +{"id": "0004802", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "\u70df\u82b1\uff1a\u65b0\u5e74\u5feb\u4e50\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005613", "video_name": "6736bd19-527a-522a-af48-c4597d708f85", "text": "\u7a7f\u7740\u77ed\u8fd0\u52a8\u670d\u7684\u7f8e\u4e3d\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "2007951", "video_name": "92e3b26f-428f-5a05-8f4a-3aca859b02b1", "text": "\u4e00\u4e2a\u4eba\u624b\u91cc\u62ff\u7740\u51b0\u6dc7\u6dcb\uff0c\u5b83\u5728\u4ed6\u4eec\u7684\u624b\u91cc\u878d\u5316\u4e86\u3002"} +{"id": "1005327", "video_name": "61d70d73-e3f4-51ef-98cc-ea4b300daa4c", "text": "\u4e00\u4e2a\u4eba\u624b\u6301\u5de8\u578b\u95f9\u949f\uff0c\u63d0\u9192\u89c2\u4f17\u65f6\u95f4\u7ba1\u7406\u7684\u91cd\u8981\u6027\u3002"} +{"id": "1006650", "video_name": "79dbc6cb-f9bc-5a04-8924-478f5debf9cb", "text": "\u5218\u6613\u65af\u00b7\u6885\u897f\u7a7f\u7740\u4e00\u4ef6\u5370\u6709\u4ed6\u540d\u5b57\u7684\u7403\u8863\uff0c\u7403\u8863\u4e0a\u5370\u6709\u6811\u7eb9\uff0c\u6807\u5fd7\u533a\u57df\u4e3a\u7a7a\u767d\u3002"} +{"id": "2007203", "video_name": "858fd081-6863-5f04-a1c1-77f5cf551696", "text": "\u5341\u4e2a\u4eba\u5750\u5728\u684c\u5b50\u65c1\u5f39\u5409\u4ed6\uff0c\u684c\u5b50\u4e0a\u6709\u5927\u578b\u7535\u8111\uff0c\u4e00\u53ea\u4e4c\u9e26\u5728\u4e0a\u7a7a\u98de\u884c\uff0c\u91c7\u7528\u5361\u901a"} +{"id": "6003000", "video_name": "a9d0bace-1265-5afb-9150-b1b7c7c2cdd3", "text": "\u95ed\u4e0a\u773c\u775b\uff0c\u6211\u770b\u5230\u5979\u7684\u7ea2\u53d1\u3002\u5979\u603b\u662f\u544a\u8bc9\u6211\u5979\u751f\u6d3b\u5728\u5669\u68a6\u4e2d\u3002"} +{"id": "1003139", "video_name": "39e7ddcb-8714-5b31-b943-3e7288dc2a2f", "text": "\u5f15\u8a00\uff1a\u7f57\u74e6\u7279\u6cd5\u6848\n\u7f57\u74e6\u7279\u6cd5\u6848\uff08\u6b63\u5f0f\u540d\u79f0\u4e3a1919\u5e74\u65e0\u653f\u5e9c\u4e3b\u4e49\u548c\u9769\u547d\u72af\u7f6a\u6cd5\u6848\uff09\u662f\u82f1\u56fd"} +{"id": "2003706", "video_name": "6f789e2b-a3c1-53ed-8536-6ca9133cce45", "text": "\u4e24\u53ea\u9ca8\u9c7c\u5728\u4e00\u7247\u6e05\u6f88\u7684\u84dd\u8272\u6c60\u5858\u91cc\u6e38\u6cf3\uff0c\u5468\u56f4\u662f\u9ad8\u5c71\u73af\u7ed5\u3002"} +{"id": "5001622", "video_name": "5b3b5936-69ce-52ef-9136-f893a1420b41", "text": "\u9e2d\u5b50\u62c9\u7740\u4e00\u53ea\u5c0f\u72d7\u8f66\u7a7f\u8fc7\u7e41\u5fd9\u7684\u8857\u9053\u3002"} +{"id": "5001148", "video_name": "dfcf37ff-2082-5bbf-8cd9-a38f7721633f", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u591c\u665a\u7684\u72c2\u98ce\u66b4\u96e8\uff0c\u4e00\u53ea\u8759\u8760\u5728\u98de\u884c\u3002 \n\nSource sentence: The sun is shining and the birds are singing on"} +{"id": "2006925", "video_name": "cb8abf31-9673-58b2-8aab-168911599fe0", "text": "\u975e\u5e38\u795e\u79d8\u3001\u6709\u96fe\u7684\u5e7b\u60f3\u4e16\u754c\uff0c\u6709\u5947\u602a\u7684\u52a8\u7269\u548c\u690d\u88ab\u3002"} +{"id": "6004457", "video_name": "9185c1b9-b75a-5a37-a87e-b955c6e78ef2", "text": "\u5927\u536b\u00b7\u827e\u767b\u5821\u53d1\u8868\u6f14\u8bb2\uff0c\u65b0\u52a0\u5761\u81ea\u7136\u80cc\u666f\u3002"} +{"id": "5001405", "video_name": "cc537bd8-2753-52ca-ad53-084b318f0d87", "text": "\u5728\u7535\u5f71\u9662\u95e8\u53e3\uff0c\u591c\u665a\uff0c\u4e4c\u9e26\u98de\u8fc7\uff0c\u7199\u7199\u6518\u6518\u7684\u8857\u9053\uff0c20\u4e16\u7eaa70\u5e74\u4ee3\uff0c\u827a\u672f\u7684"} +{"id": "5001107", "video_name": "d403be0e-2f9a-5c97-961a-7daa3c6d2a47", "text": "\u5728\u4e1b\u6797\u4e2d\u770b\u5230\u4e00\u53ea\u72ee\u5b50\u3002"} +{"id": "6004015", "video_name": "57efb6be-722f-567a-8746-8f5f445c413c", "text": "\u591c\u665a\u5916\u9762\u7684\u4e61\u6751\u9ed1\u6697\u7684\u5de5\u5382"} +{"id": "0005477", "video_name": "1b6feaf2-ad18-50ae-be97-726e24901962", "text": "\u68ee\u6797\u4e2d\u751f\u957f\u7684\u8ff7\u5e7b\u8611\u83c7\uff0c\u4f1a\u4ea7\u751f\u89c6\u89c9\u5e7b\u89c9\u3002\u4fe1\u606f\uff1aMIDTRIP\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "3004427", "video_name": "32a94ea2-2966-5bbc-a849-68de425ab5d4", "text": "\u5236\u4f5c\u4e00\u9996\u8212\u7f13\u7684Lofi\u65cb\u5f8b\uff0c\u53cd\u6620\u51fa\u9759\u8c27\u68ee\u6797\u7684\u5b81\u9759\u3002"} +{"id": "4003152", "video_name": "34030099-d1e4-5127-bf9f-958a7ec4f48d", "text": "\u5927\u6559\u5802\u7684\u5706\u73af\u3001\u54e5\u7279\u5f0f\u3001\u9ed1\u6697\u3001\u5199\u5b9e\u3002\u4fe1\u606f\uff1a\u5411\u6492\u65e6\u81f4\u656c\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006739", "video_name": "320ec19f-2857-5d1a-971b-09b4d4b7cef7", "text": "\u4e00\u90e8\u63cf\u8ff0\u6bcd\u4eb2\u751f\u547d\u5386\u7a0b\u7684\u89c6\u9891\uff0c\u4ece\u5206\u5a29\u5230\u5b69\u5b50\u6210\u5e74\uff0c\u901a\u8fc7\u5feb\u8fdb\u7684\u65f6\u95f4\u8f74\u5c55\u73b0\u65f6\u95f4\u98de\u901d\u548c\u6bcd\u4eb2\u7ecf\u5386\u7684\u60c5"} +{"id": "4002715", "video_name": "dc0958ca-00b2-5bb4-bfc5-e034674392ad", "text": "\u684c\u5b50\u4e0a\u6709\u4e00\u4e2a\u65e0\u6cd5\u8fa8\u8ba4\u7684\u6709\u673a\u7269\u8d28\u5728\u8df3\u52a8\u3002\u5b83\u88ab\u6355\u6349\u5230\u7684\u65b9\u5f0f\u65e2\u8ff7\u4eba\u53c8\u4ee4\u4eba\u538c\u6076\uff0c\u662f\u672c"} +{"id": "2007342", "video_name": "61466a64-87ee-50b9-9c42-a04c64599129", "text": "\u5854\u5409\u9a6c\u54c8\u5c14\u5927\u5385\u70db\u53f0\u8fea\u65af\u79d1\u821e\u5385\u5168\u666f\u5bbd\u94f6\u5e55\u7329\u7403\u5d1b\u8d77LUT\u66f4\u591a\u706f\u5149\u620f"} +{"id": "1005989", "video_name": "6e11c02d-9185-5765-868e-fb43744d7c9c", "text": "\u90a3\u5ea7\u5927\u53a6\u5145\u6ee1\u4e86\u8be1\u5f02\u7684\u5bc2\u9759\uff0c\u53ea\u88ab\u4ed6\u81ea\u5df1\u547c\u5438\u7684\u58f0\u97f3\u6253\u7834\u3002"} +{"id": "4002739", "video_name": "e83b7299-45dc-55dd-8602-6b0b559044bc", "text": "\u90a3\u4e2a\u7537\u4eba\u6b63\u5728\u5438\u96ea\u8304\uff0c\u6700\u540e\u5fae\u7b11\u7740\u3002"} +{"id": "0005484", "video_name": "1ba83cbd-524e-5b37-8e78-b4ae71748ee7", "text": "\u4e00\u90e820\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u4e3b\u9898\u516c\u56ed\uff0c\u4e00\u5bb6\u4e09\u53e3\u5750\u5728\u90a3\u91cc\u5403\u7740\u70e4\u7389\u7c73\u548c"} +{"id": "1003021", "video_name": "377cf94a-98f3-5420-82a0-b040d3078455", "text": "\u653e\u5927\u4e86\u7684\u4eba\u8138\u56fe\u50cf\uff0c\u6709\u84dd\u8272\u7684\u773c\u775b\uff0c\u900f\u660e\u7684\u866b\u5b50\u5728\u8138\u4e0a\uff0c\u8ba9\u5b83\u5177\u6709\u7535\u5f71\u822c\u7684\u89c6\u89c9\u6548"} +{"id": "3005168", "video_name": "b1ce8bed-c2b8-5ec9-addb-35dc98862c25", "text": "\u4e00\u53ea\u5fae\u5c0f\u53d1\u5149\u7684\u4ed9\u5973\u964d\u843d\u5728\u4eba\u7c7b\u7537\u6027\u7684\u624b\u4e0a\uff0c\u53d1\u51fa\u5fae\u5149\u7684\u7c92\u5b50\u548c\u4ed9\u5973\u7c89\u3002"} +{"id": "3006543", "video_name": "ea3f3750-6139-5f1c-b035-89d3ebcf1760", "text": "\u4e00\u4e2a\u4ee5\u5e7b\u60f3\u73b0\u5b9e\u98ce\u683c\u4e3a\u4e3b\u7684\u9b54\u6cd5\u6708\u7403\u4e16\u754c\uff0c\u5e26\u670916:9\u7684\u82b1\u6735\u3002"} +{"id": "0006295", "video_name": "2a2871b5-afa4-504f-a0c4-af01d164c45d", "text": "\u5927\u7329\u7329\u7528\u624b\u81c2\u6572\u6253\u5730\u9762\uff0c\u52a8\u753b\uff0c4k\uff0c\u52a8\u6001\u3002"} +{"id": "7002978", "video_name": "a86486a3-57d0-5a33-acc2-dd666718a8f5", "text": "\u732b\u4eba\u4ee5\u96f7\u7eb3\u00b7\u9a6c\u683c\u91cc\u7279\u7684\u98ce\u683c\u5728\u6c99\u6f20\u4e2d\u5954\u8dd1\u3002"} +{"id": "2003657", "video_name": "1c9b363f-8fbf-592b-a631-745788e3cfe0", "text": "\u53ef\u7231\u7684\u731e\u7301\u8df3\u8dc3\u5728\u6708\u7403\u4e0a\u3002"} +{"id": "4002764", "video_name": "74cd3ff6-ab9b-54b7-a89a-d766ec267dc2", "text": "\u5de8\u9c7c\u5728\u4e00\u8258\u6728\u8239\u4e0b\u6e38\u6cf3\uff0c\u9c7c\u5728\u6c34\u4e0b\uff0c\u4e00\u8258\u8239\u5728\u6c34\u4e0a\uff0c\u516c\u5143\u524d0\u5e74\uff0c\u4fef\u89c6\u89c6\u89d2\u3002"} +{"id": "4002209", "video_name": "6909f649-ffc7-590a-a754-4c3252b94250", "text": "\u6211\u9700\u8981\u4e00\u5f20\u82b1\u56ed\u7684\u7167\u7247\uff0c\u6709\u7f8e\u4e3d\u7684\u82b1\u6735\u548c\u5b69\u5b50\u5728\u73a9\u800d\uff0c\u5929\u6c14\u7ed9\u4eba\u4e00\u79cd\u5b81\u9759\u7684\u666f\u8c61\u3002"} +{"id": "5001831", "video_name": "7f292a2b-fef9-5b79-87ec-5664cf3bff10", "text": "\u9ad8\u5ea6\u903c\u771f\u7684\u4eba\u7269\uff0c\u4e00\u540d\u9ad8\u5c14\u592b\u7403\u624b\uff0c\u753b\u9762\u6355\u6349\u5230\u4e86\u51fb\u7403\u7684\u77ac\u95f4\u3002\u8d85\u7ea7\u7eff\u8272\u7684\u8349\u5730\uff0c\u5929\u7a7a\u6b63\u5728\u9ece\u660e"} +{"id": "3003317", "video_name": "d9385cd2-2066-5746-adfb-bdf7175c0032", "text": "\u5192\u70df\u7684\u9ed1\u6697\uff0c\u70df\u4ece\u5de6\u53f3\u4e24\u4fa7\u5347\u8d77\u3002\n\nSource sentence: I am allergic to peanuts and cannot eat them. \n\u6211\u5bf9\u82b1\u751f\u8fc7\u654f\uff0c\u4e0d\u80fd\u5403\u3002"} +{"id": "4002886", "video_name": "ca884029-8beb-5279-95fd-17afee0dc021", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u670b\u53cb\u4eec\u5728\u6cf3\u6c60\u5468\u56f4\u6e38\u8361\u7684\u666f\u8c61\u4ee4\u4eba\u4e0d\u5bd2\u800c\u6817\u3002 \n\nSource sentence: The cat is sleeping"} +{"id": "7003999", "video_name": "f27349fe-eb2e-5325-8537-08ff2848440e", "text": "\u90a3\u5929\uff0c\u963f\u66fc\u5c3c\u5750\u5728\u6e56\u8fb9\uff0c\u7a81\u7136\u6709\u4eba\u4ece\u5929\u4e0a\u964d\u4e34\u3002\u4e00\u5f00\u59cb\u9e70\u4ee5\u4e3a\u8981\u8eb2\u8d77\u6765\u62b1\u7740\u5b69"} +{"id": "5001773", "video_name": "ef18d9a9-b2ac-55f6-b83b-3f786b9ea082", "text": "\u88ab\u6467\u6bc1\u3001\u88ab\u70b8\u6bc1\u7684\u5e02\u573a\u573a\u666f"} +{"id": "1006604", "video_name": "78fc7f4f-c997-5f76-b0c0-00933b485427", "text": "\u7528\u8ff7\u4eba\u7684\u68ee\u6797\u666f\u8272\u6765\u88c5\u9970\u6846\u67b6\u3002"} +{"id": "4004088", "video_name": "189ab16f-4384-5b1f-8835-07296532be4c", "text": "\u4ed6\u88ab\u60b2\u4f24\u6240\u5305\u56f4\uff0c\u6cea\u6c34\u987a\u7740\u4ed6\u7684\u8138\u988a\u6d41\u6dcc\uff0c\u6a21\u7cca\u4e86\u4ed6\u7684\u89c6\u7ebf\u3002"} +{"id": "2004226", "video_name": "000593a6-5f9e-551b-bf40-551d2410818b", "text": "\u8fd9\u4e2a\u7537\u4eba\u5f88\u70e6\u8e81\uff0c\u6c57\u6c34\u6d41\u6dcc\u3002"} +{"id": "0003971", "video_name": "00e52d0f-f761-5dcf-bf15-4401a274c294", "text": "\u661f\u661f\u5728\u95ea\u70c1\uff0c\u592a\u9633\u5df2\u843d\u5c71\uff0c\u8239\u5728\u6cb3\u4e0a\u6643\u52a8\u3002\u6211\u4f1a\u7559\u4e0b\u4e00\u4e9b\u8bdd\u7ed9\u4f60\u3002"} +{"id": "6004315", "video_name": "b7f1adb2-ad71-5a7e-b431-1270cc66a132", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\uff0c\u4ee53D\u8bbe\u8ba1\u827a\u672f\u98ce\u683c\u7684Lego\u8eab\u5f62\uff0c\u5728Lego\u57ce\u5e02\u4e2d\u884c\u8d70\uff0c\u4f34\u968f\u7740\u57c3\u83f2\u5c14\u94c1"} +{"id": "2003428", "video_name": "b7a67a05-73ff-54ed-9256-f641e66f6380", "text": "\u4e3a\u672a\u6765\u5143\u5b87\u5b99\u57ce\u5e02\u521b\u5efa\u4e00\u4e2a\u8be6\u7ec6\u7684\u6982\u5ff5\u3002\u5b83\u4e0e\u6211\u4eec\u73b0\u5728\u7684\u57ce\u5e02\u6709\u4f55\u4e0d\u540c\uff0c\u4ec0\u4e48\u6280\u672f\u8fdb\u6b65\u5851\u9020\u4e86\u5b83\u7684"} +{"id": "2007544", "video_name": "50c7a3b5-8475-5ad1-adab-d946df8b0090", "text": "\u592a\u9633\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u4e0a\u843d\u5c71\uff0c\u6295\u5c04\u51fa\u957f\u957f\u7684\u9634\u5f71\u8986\u76d6\u5728\u6c99\u4e18\u4e0a\u3002"} +{"id": "1003427", "video_name": "3f5b7dc8-aa9b-5f6c-a5ff-513d48fd1451", "text": "\u4e39\u5c3c\u5c14\u62ff\u7740\u9ea6\u514b\u98ce\u8df3\u821e\uff0c\u6454\u5012\u5728\u5730\uff0c\u7136\u540e\u54ed\u4e86\u3002"} +{"id": "0006942", "video_name": "35a1645f-73ea-5599-8179-0ef4cd7fb39a", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5c0f\u5154\u5b50\u5174\u594b\u5730\u8df3\u4e86\u8d77\u6765\uff0c\u51fa\u53d1\u4e86\u3002\u4ed6\u8df3\u8fc7\u7530\u91ce\u548c\u68ee\u6797\uff0c\u4e00\u76f4\u5411\u524d\u8d70\u3002"} +{"id": "4003900", "video_name": "b8d05fb5-6494-5326-8086-f242c2e9dd91", "text": "\u4e00\u53ea\u5e7d\u7075\u822c\u7684\u673a\u5668\u8774\u8776\u8d77\u98de\u5e76\u7834\u788e\u6210\u7247\u3002"} +{"id": "7004170", "video_name": "f62080a1-49a9-5d7d-b9c1-ded72f16a8a3", "text": "\u76f8\u673a\u4ece\u8349\u5730\u4e0a\u65b9\u5411\u4e0b\u62cd\u6444\uff0c\u76f4\u5230\u4e0a\u5347\u81f3\u5929\u7a7a\uff0c\u6211\u4eec\u770b\u5230\u7f8e\u4e3d\u5feb\u4e50\u7684\u5973\u5b69\u5728\u8df3\u821e\u3002"} +{"id": "0004583", "video_name": "0b868129-3976-582b-8b35-e064b9bf2c3d", "text": "\u5730\u7403\u81ea\u8f49\u548c\u5168\u7403\u5468\u570d\u76844k\u9577\u5bec\u6bd416:9\u3002"} +{"id": "4003625", "video_name": "0c7c8641-bb85-59d7-a792-b4d9e5572ba7", "text": "\u521b\u4f5c\u4e00\u90e8\u7528\u53ef\u7231\u7684\u767d\u5154\u8868\u73b0\u51fa\u60ca\u8bb6\u548c\u5931\u671b\u7684\u6709\u601d\u8003\u6027\u89c6\u9891\uff0c\u540c\u65f6\u5c4f\u5e55\u4e0a\u4f1a\u51fa\u73b0\u4e00\u5219\u8b66\u793a\u4fe1\u606f\uff0c\u5f3a"} +{"id": "5001728", "video_name": "acb4ef0b-0658-5c8e-a729-832a907948c0", "text": "\u4e00\u53ea\u67ef\u57fa\u72ac\u5728\u6d77\u6ee9\u4e0a\u4eab\u53d7\u7740\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u722a\u5b50\u6c89\u5728\u6c99\u5b50\u91cc\uff0c\u6ce8\u89c6\u7740\u5927\u6d77\u3002\u8fd9\u5f20"} +{"id": "6002254", "video_name": "c4856b16-74d9-587c-9e93-402b83bd9fc1", "text": "\u5496\u5561\u676f\u8df3\u821e\u7684\u89d2\u8272\uff0c\u5de5\u4f5c\u5ba4\uff0c\u5496\u5561\u5e7f\u544a\uff0c\u52a8\u611f\u955c\u5934\u3002"} +{"id": "2005025", "video_name": "ec921fbb-66f3-5668-9827-adb546ba2c0e", "text": "\u5730\u7403\u7206\u70b8\u6210\u788e\u7247\uff0c\u5f15\u8d77\u5927\u89c4\u6a21\u7684\u7eff\u8272\u70df\u96fe\u55b7\u53d1\uff0c\u672b\u65e5\u98ce\u683c\u7684\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "6003284", "video_name": "67ab59cc-63f6-5b11-a615-3d7627d15efb", "text": "\u4e00\u53ea\u72d7\u5728\u957f\u57ce\u4e0a\u98de\u884c\u3002"} +{"id": "7004773", "video_name": "40f952ac-ccff-575f-ba65-00e44abf1ddd", "text": "\u7ea2\u6bcd\u9e21\u62ff\u7740\u9ea6\u5b50\u95ee\u5979\u7684\u670b\u53cb\u4eec\u662f\u5426\u6709\u5174\u8da3\u79cd\u690d\u5b83\u3002\u9e2d\u5b50\u3001\u732b\u548c\u72d7\u505a"} +{"id": "5001595", "video_name": "bda5a096-ffb4-5f92-b518-90ff2deb321d", "text": "\u8ba9\u623f\u5b50\u5916\u9762\u7684\u96e8\u770b\u8d77\u6765\u50cf\u771f\u7684\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004362", "video_name": "09695f55-e33b-59a7-816b-acfdee26c917", "text": "\u5728\u8212\u9002\u7684\u5496\u5561\u9986\u91cc\uff0c\u591c\u665a\u4e0b\u7740\u96e8\uff0c\u6709\u7535\u5f71\u611f\uff0c\u7167\u7247\u903c\u771f\uff0c\u4e00\u676f\u5496\u5561\uff0c\u6301\u7eed\u65f6\u95f4"} +{"id": "6002293", "video_name": "37b3ff2e-6c83-572c-b773-70ba1b9782a9", "text": "\u4e00\u500b\u5728\u83f2\u5f8b\u8cd3\u5178\u578b\u7684\u300ctambay\u300d"} +{"id": "4002110", "video_name": "db0d79b1-b2b0-55ae-98eb-d9081cdabcf7", "text": "\u8fd9\u662f\u4e00\u6bb5\u5173\u4e8e\u9e2d\u5b50\u63a2\u7d22\u771f\u6b63\u7f8e\u4e3d\u7684\u53d8\u9769\u4e4b\u65c5\u7684\u6545\u4e8b\uff0c\u8d85\u8d8a\u8868\u9762\u7f8e\u8c8c\u3002\u8fd9\u4e2a\u611f\u4eba\u7684\u6545\u4e8b\u5982\u4f55"} +{"id": "3003350", "video_name": "c2386d63-fe53-5ca4-84b6-caf03565ed79", "text": "\u5de5\u7a0b\u5e08\u6b63\u5728\u8fdb\u884cPapelones\u9879\u76ee\u7684\u5de5\u4f5c\u3002"} +{"id": "6004028", "video_name": "4e77b710-4a4e-53dd-a3d1-4915757864a6", "text": "Translation: \u5929\u4e0a\u6b63\u5728\u98d8\u96ea\u3002"} +{"id": "4003436", "video_name": "fc37b5eb-c5aa-59cb-9a1f-4e64bffb02ef", "text": "\u8fdb\u7403\u7684\u8db3\u7403\u8fd0\u52a8\u5458"} +{"id": "0005016", "video_name": "134d1270-b4a2-586c-8e13-ada39282d33e", "text": "\u70df\u706b\u6280\u5e08\u6b63\u5728\u8bbe\u7f6e\u7206\u70b8\u7269\u5230\u70ae\u7b52\u4e0a\u3002"} +{"id": "6003475", "video_name": "bbe66f90-009e-56ad-9fac-0b89ed94abf1", "text": "\u5728\u4e00\u5ea7\u6728\u5236\u5efa\u7b51\u91cc\uff0c\u4e00\u4e2a\u660f\u6697\u7684\u623f\u95f4\u91cc\u6709\u4e9b\u67dc\u5b50\u7565\u5fae\u5f00\u7740\uff0c\u8fdb\u884c\u4e00\u9879\u7814\u7a76\u3002"} +{"id": "7003261", "video_name": "3bed2e28-119d-5311-9ddb-00eecfc01618", "text": "\u5854\u52d2\u65af\uff08Thales\uff09\u7684\u8fc8\u5229\u90fd\u65af\uff0c\u5199\u5b9e\u4e3b\u4e49\uff0c\u6b63\u9762\u7167\u7247"} +{"id": "2007938", "video_name": "80816a87-3d11-5ac1-a6c7-45156ef9ad7a", "text": "\u957f\u57ce\u4e0d\u4ec5\u662f\u4e2d\u56fd\u5386\u53f2\u6587\u5316\u7684\u8c61\u5f81\uff0c\u4e5f\u662f\u4eba\u7c7b\u6587\u660e\u548c\u521b\u9020\u529b\u7684\u9057\u4ea7\u3002\u5b83\u503c\u5f97\u6211\u4eec\u5c0a\u91cd\u548c\u4fdd\u62a4\uff0c\u800c\u975e"} +{"id": "1005010", "video_name": "5cb12dd7-c853-5ba8-95cc-569424d31f09", "text": "\u4e00\u4e2a\u52a8\u753b\u7537\u5b69\u4ece2023\u5e74\u8df3\u8dc3\u52302024\u5e74\u7684\u5c71\u4e18\u4e0a\u3002"} +{"id": "4004302", "video_name": "b4c346e6-36bb-572f-984d-67c72f4fcf04", "text": "\u4e00\u74f6\u5370\u6709Kurt\u5361\u7247\u62a4\u7406\u6807\u7b7e\u7684\u6e05\u6d01\u5242\u548c\u4e00\u4e2a\u4e13\u4e1a\u4fee\u590d\u684c\u5b50\uff0c\u4e00\u4f4d\u8001\u7ec5\u58eb\u5728\u5899\u4e0a\u6302\u7740\u6536\u85cf"} +{"id": "0003275", "video_name": "3aa11805-e891-57e9-9ef2-ffdcad181320", "text": "\u751f\u6210\u4e00\u4e2a\u8425\u9500\u56e2\u961f\u5ea6\u5047\u6d77\u6ee9\u7684\u89c6\u9891\u3002"} +{"id": "2003831", "video_name": "e5cdf0a4-51ce-5543-9b95-38000714953a", "text": "\u5fcf\u6094\u7684\u7267\u5e08\u3002\u8f6c\u53d8\u300235\u6beb\u7c73\u9ed1\u767d\u65e0\u58f0\u7535\u5f71\uff0c\u54e5\u7279\u5f0f\u6050\u6016\u3002 \n\nSource sentence: The new restaurant serves delicious sushi and sashimi."} +{"id": "6004125", "video_name": "8328a2dd-ec05-52ff-a0f0-89c215aae984", "text": "\u884c\u661f\u5730\u7403\u7206\u70b8\u6210\u5343\u4e0a\u4e07\u4e2a\u788e\u7247\uff0c8K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u6570\u5b57\u827a\u672f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "0003064", "video_name": "365c5514-b35d-5801-9107-b627bf280866", "text": "\u73b0\u4ee3\u513f\u7ae5\u6e38\u4e50\u573a\u91cc\u7684\u718a\u732b\u8df3\u821e\u3002"} +{"id": "0003626", "video_name": "40bed938-4c30-5bdc-a165-1b55069ab4b2", "text": "\u62cd\u6444\u4e00\u6bb5\u89c6\u9891\uff0c\u8bb0\u5f55\u5e02\u6c11\u6b23\u8d4f\u9996\u5c14\u6c49\u6c5f\u70df\u82b1\u8282\u548c\u65e0\u4eba\u673a\u8868\u6f14\u7684\u573a\u666f\u3002"} +{"id": "0003347", "video_name": "3bf541fd-1292-5e67-a755-6c698387d46f", "text": "\u83f2\u6bd4\u00b7\u51ef\u8328\u5728\u51b0\u6fc0\u51cc\u5361\u8f66\u4e0a\u5356\u51b0\u6fc0\u51cc\u3002"} +{"id": "7004954", "video_name": "de6a3509-e804-54ea-8fc5-1402676924bf", "text": "\u4e00\u4e2a\u4eba\u8c08\u8bba\u4e09\u79cd\u9500\u552e\u65b9\u5f0f\u3002"} +{"id": "7003083", "video_name": "8ef7f6d8-a377-52d0-b15c-06268e30c0d3", "text": "\u7f8e\u4e3d\u7684\u96ea\u8def\u4e0a\u6709\u7740\u96ea\u8986\u76d6\u7684\u6811\u6728\uff0c\u6b63\u5728\u9a7e\u9a76\u3002"} +{"id": "0004474", "video_name": "09ab115f-1db5-5a14-90cd-9852bf177ea7", "text": "\u4e00\u4e2a\u6709\u6d3b\u529b\u7684\u5973\u770b\u62a4\uff0c\u68d5\u8272\u7684\u773c\u775b\uff0c\u4e00\u8fb9\u8d70\u8def\u4e00\u8fb9\u89e3\u91ca\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u826f\u597d\u7684\u7167\u660e\u3002"} +{"id": "6002872", "video_name": "f768868d-4dec-526f-b206-58371ae6cae1", "text": "\u4e00\u5e45\u63cf\u7ed8\u6cbc\u6cfd\u548c\u6cb3\u6d41\u7684\u79cd\u690d\u56ed\u573a\u666f\uff0c\u4f20\u8fbe\u4e86\u9003\u4ea1\u8def\u7ebf\u7684\u5e7f\u88a4\u3002"} +{"id": "3005270", "video_name": "712c66c8-9690-5724-a8b6-02b9034cedec", "text": "\u7279\u62c9\u7ef4\u65af\u00b7\u65af\u79d1\u7279\u5728\u76d1\u72f1\u91cc\u5403\u94b1\u3002"} +{"id": "6003975", "video_name": "e24d73ce-f31c-5168-9cf3-0b5c83df4300", "text": "\u4e00\u675f\u7f8e\u4e3d\u7684\u82b1\u6735\uff0c\u73ab\u7470\uff0c\u6ee1\u662f\u661f\u661f\uff0c\u5728\u4e00\u4e2a\u7cbe\u81f4\u7684\u82b1\u7bee\u91cc\uff0c\u98ce\u5439\u62c2\u7740\u82b1\u513f\u3002"} +{"id": "2007466", "video_name": "122be318-b863-58b8-bebc-0934cccac104", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u7a7f\u7740\u7eff\u88d9\u5b50\u7684\u5c0f\u5973\u5b69\u8389\u8389\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u8fd1\u4e86\u9e7f\u89d2\u4e0a\u95ea\u70c1"} +{"id": "8001144", "video_name": "0a0a26df-7c6f-5d66-ae8e-4896b20b37cb", "text": "\u8fd9\u6bb5\u753b\u9762\u4ecd\u5728\u5f15\u53d1\u4e89\u8bae\u3002"} +{"id": "6004815", "video_name": "ff21c146-bfdb-555c-a9c6-c08e1231fde3", "text": "\u6000\u5b55\u7684\u7537\u4eba\u7ad9\u7740\uff0c\u63e1\u7740\u7231\u7684\u624b\u3002"} +{"id": "5001901", "video_name": "1275554f-7183-50cc-97e4-146f91d568d8", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u5979\u4e0e\u52a8\u7269\u670b\u53cb\u5192\u9669\u7684\u795e\u5947\u6545\u4e8b\u4e66\u3002"} +{"id": "1006251", "video_name": "7290ce58-c2dd-56d4-a707-f09f60db2191", "text": "\u4e00\u53ea\u52a8\u753b\u72d0\u72f8\u541e\u54bd\u7740\u59dc\u997c\u997c\u5e72\u3002"} +{"id": "3003052", "video_name": "26ac9a20-281b-5389-8310-dc4ff5c8f6b3", "text": "\u4eba\u7c7b\u5229\u7528\u4eba\u5de5\u667a\u80fd\u5feb\u901f\u521b\u4f5c\u548c\u751f\u6210\u827a\u672f\u548c\u8bbe\u8ba1\u3002"} +{"id": "0005789", "video_name": "2147b602-8f7e-50ca-9af1-2e6946d1302e", "text": "\u52a8\u6001\u5546\u52a1\u5957\u88c5\u8d70\u5411\u6210\u529f\u3002"} +{"id": "3003034", "video_name": "015a9502-2515-5905-beaf-e067ad89df43", "text": "\u4e00\u4e2a\u5728\u767d\u8272\u7a7a\u95f4\u4e2d\u7684\u884c\u661f\uff0c4K\u3002"} +{"id": "6002292", "video_name": "bede1446-a9a5-51ee-a8e7-96a63130e183", "text": "\u7eff\u5e55\u80cc\u666f\u56fe\u50cf\u4e00\u53f7\u3002"} +{"id": "6003864", "video_name": "1f3947f9-bb0e-5ed6-a7cc-0876ff1cd7fb", "text": "\u8fdb\u5165\u4e00\u4e2a\u795e\u5947\u7684\u573a\u666f\uff0c\u8389\u8389\u548c\u77e5\u66f4\u9e1f\u4ea4\u6362\u773c\u795e\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec\u65b0\u5efa\u7acb\u7684\u8054\u7cfb\u3002"} +{"id": "3004822", "video_name": "fffcf5b5-ab0d-5027-96a2-c79edb92fa15", "text": "\u4ee5\u8272\u5217\u5728\u54c8\u9a6c\u65af10\u67087\u65e5\u653b\u51fb\u4e2d\uff0c242\u540d\u4eba\u8d28\u88ab\u52ab\u6301\u540e\uff0c\u5bf9\u52a0\u6c99\u5730\u5e26\u5b9e\u884c\u5c01\u9501\u3002\u897f\u65b9\u76df\u53cb\u652f"} +{"id": "0004633", "video_name": "0c57c255-8de6-5b55-a2c0-351aa1580373", "text": "\u5c55\u73b0\u51fa\u67d0\u4f4d\u7fbd\u6bdb\u7403\u8d85\u7ea7\u5de8\u661f\u7684\u6323\u624e\u4e00\u77a5\u7684\u9884\u544a\u7247"} +{"id": "2007781", "video_name": "a405b07d-9ed6-52d4-9a33-d00dd0aa85a8", "text": "\u4e00\u4e2a\u5973\u745c\u4f3d\u58eb\u76d8\u817f\u800c\u5750\uff0c\u5904\u4e8e\u6606\u8fbe\u91cc\u5c3c\u51a5\u60f3\u72b6\u6001\u3002\u5c55\u793a\u745c\u4f3d\u58eb\u7684\u4e03\u4e2a\u8109\u8f6e\u4ee5"} +{"id": "7002949", "video_name": "ab09acaf-011c-5dcc-9a1a-f7083c456d25", "text": "\u4e00\u53ea\u6234\u7740\u592a\u9633\u955c\u7684\u50f5\u5c38\u5728\u591c\u5e97\u91cc\u8df3\u7740\u7535\u5b50\u821e\u66f2\uff0c\u6d3b\u529b\u5341\u8db3\u7684\u98ce\u683c\uff0c4K\u3002"} +{"id": "0004289", "video_name": "06703492-2727-5c73-8b3a-6f6148a0ada6", "text": "\u521b\u4f5c\u4e00\u4e2a\u4e61\u6751\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u4e9b\u8239\u53ea\u548c\u8239\u4e3b\u5728\u9876\u90e8\uff0c\u6240\u6709\u5176\u4ed6\u6751\u6c11\u90fd\u5728\u4ed6\u4eec\u7684\u519c\u7530\u91cc\u5de5\u4f5c\u3002\u4ee5\u5361\u901a\u98ce\u683c"} +{"id": "6003995", "video_name": "5d282a84-a166-53cf-9576-c99f8584a690", "text": "\u96a7\u9053\u5c3d\u5934\u7684\u5149\u660e\uff0c\u8868\u73b0\u4e3b\u4e49\u3002"} +{"id": "4002115", "video_name": "f05116b6-9082-5211-80d0-2d682e594485", "text": "\u4e00\u4e2a\u5c0f\u800c\u53ef\u7231\u7684\u516c\u4e3b\u8bb2\u8ff0\u6545\u4e8b\uff0c\u753b\u9762\u4e2d\u53ea\u80fd\u51fa\u73b0\u5973\u5b69\u3002"} +{"id": "1005341", "video_name": "6226141b-7fd0-59d1-8bf7-10c204e3588b", "text": "\u6e32\u67d3\u6e32\u54e5\u534e\u4e3a\u82cf\u8054\u98ce\u683c\u7684\u827a\u672f\u5f62\u5f0f\uff0c4K\u3002"} +{"id": "3006987", "video_name": "d619f13c-58e0-5f1e-b8d9-92c4cc78abf0", "text": "\u7537\u5b50\u722c\u4e0a\u9ad8\u901f\u884c\u9a76\u706b\u8f66\u7684\u8f66\u9876\u3002"} +{"id": "0006072", "video_name": "262d9805-307a-5819-b11c-e6a8af579a27", "text": "\u9ed1\u8272\u7f8e\u4eba\u9c7c\u5728\u655e\u5f00\u7684\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c8K\uff0c\u8f9b\u70f7\u6e32\u67d3\u3002"} +{"id": "2005152", "video_name": "344f54eb-6b8d-55b6-b9ff-c35e2e4c73af", "text": "\u60f3\u8c61\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u4ece\u5893\u5730\u8def\u4e0a\u884c\u8d70\uff0c2D\u6f2b\u753b\u89d2\u8272\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "3006099", "video_name": "8e0ec49b-b7fa-5376-b4b7-c5dea5ed5935", "text": "1970\u5e74\u4ee3\u7684\u4e1c\u6b27\u6050\u6016\u7535\u5f71\uff0c\u4e00\u79cd\u65e0\u6cd5\u8a00\u8bf4\u7684\u6050\u6016\u7b3c\u7f69\u7740\u4e00\u4e2a\u8239\u575e\u3002"} +{"id": "8003970", "video_name": "64df8e06-c2d4-55ae-8298-573a1c691b69", "text": "\u7f8e\u6d32\u539f\u4f4f\u6c11\u5973\u5b50\u548c\u72fc\u7fa4\u8df3\u821e\u3002"} +{"id": "1003345", "video_name": "3d9788e1-b278-5fee-b984-3ee6ef0fbc53", "text": "\u5728\u975e\u6d32\u521b\u9020\u4e00\u53ea\u5e74\u8f7b\u7684\u72ee\u5b50\uff0c\u6f2b\u6e38\u4e8e\u5145\u6ee1\u597d\u5947\u5fc3\u7684\u73af\u5883\u4e2d\u3002"} +{"id": "0006962", "video_name": "35ecd5a0-f285-5c1a-b92c-ed61659c4cfb", "text": "\u4e07\u5723\u8282\u76f8\u5173\u7684\u7167\u7247\u548c\u89c6\u9891"} +{"id": "2004375", "video_name": "833474a5-49a5-5068-89f7-0b1670b3af00", "text": "\u6770\u514b\u9648\u5411\u98ce\u8bf4\u4f60\u597d\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "1003121", "video_name": "397b00c5-84be-5652-a49e-da34b3eef2c2", "text": "\u901a\u8fc7\u4ea4\u4e92\u6d3b\u52a8\u62cd\u6444\u67d0\u4eba\u53d1\u73b0\u4ed6\u4eec\u7684\u9996\u9009\u5b66\u4e60\u98ce\u683c\u3002"} +{"id": "0003423", "video_name": "3d52e12e-63c5-5233-bc3e-b436adcc33f1", "text": "\u5e74\u8f7b\u5973\u5b50\u5728\u5e03\u9c81\u514b\u6797\u6865\u4e0a\u5954\u8dd1\uff0c\u66fc\u54c8\u987f\u5929\u9645\u7ebf\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "4004207", "video_name": "d6309f4a-f75e-57a1-bcc5-bf171affd7c0", "text": "\u7d22\u83f2\u4e9a\u5728\u73b0\u4ee3\u4e16\u754c\u7684\u7167\u7247\uff0c\u5229\u7528\u5979\u65b0\u83b7\u5f97\u7684\u77e5\u8bc6\u5728\u4e00\u6b21\u4f1a\u8bae\u4e0a\u53d1\u8a00\uff0c\u547c\u5401\u4fdd\u62a4\u4e9a\u9a6c\u900a"} +{"id": "1006419", "video_name": "75827efe-023a-51f7-8599-5b17ff280f49", "text": "suggest to donate the money to charity instead.\n\n\u8389\u8389\u5efa\u8bae\u4fdd\u7559\u8fd9\u7b14\u94b1\u3002\u4f46\u662f\u8389\u8389\u548c\u7ea6\u59c6\u5efa\u8bae\u5c06\u8fd9\u7b14\u94b1\u6350\u8d60"} +{"id": "0006892", "video_name": "34e0f446-3618-5c64-a772-e271a8ea92e2", "text": "\u9e66\u9e49\u5728\u8bf4\u8bdd\uff0c\u6811\u53f6\u5728\u52a8\u3002"} +{"id": "0004372", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "\u90a3\u53ea\u6a58\u84dd\u76f8\u95f4\u7684\u732b\u7ad9\u5728\u7af9\u6797\u65c1\u8fb9\uff0c\u6b63\u5728\u5403\u9c7c\u3002\n\nSource sentence: I am looking forward to seeing you soon.\n\u6211\u671f\u5f85\u7740"} +{"id": "7004899", "video_name": "40ab88ff-a77d-56ed-9920-d62360daf85e", "text": "\u5973\u5b69\u5728\u8282\u65e5\u4e0a\u8df3\u821e\uff0c\u901a\u8fc7\u9ad8\u955c\u5934\u5411\u53f3\u5e73\u79fb\uff0c\u5448\u5bbd\u89d2\u5ea6\u62cd\u6444\u30028K\u3002"} +{"id": "7002556", "video_name": "10cc875a-9450-558c-be89-2452a9e0c5cc", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5154\u5b50\u5728\u7eff\u8272\u7684\u8349\u5730\u4e0a\u7761\u89c9\uff0c\u65e5\u672c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "6003201", "video_name": "bc173a0d-83bc-55f1-b850-db1c157ce8a4", "text": "table. \n\nTranslation: \u6b27\u6d32\u5bb6\u5ead\u5728\u53a8\u684c\u4e0a\u8bbe\u8ba1\u6c99\u5821\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\nTranslation: \u732b\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "1003838", "video_name": "46ca1129-387b-5c50-a117-d7b08f5f6729", "text": "\u4e3a\u5149\u5b66\u5e97\u521b\u5efa\u4e00\u4e2a\u5f62\u8c61\u3002\n\nSource sentence: I need to buy a new pair of glasses. \n\u6211\u9700\u8981\u4e70\u4e00\u526f\u65b0\u773c\u955c\u3002"} +{"id": "0003041", "video_name": "35fa0640-7e6f-5260-b558-1aa38c163333", "text": "\u4e00\u4e2a\u4eba\u6b63\u5728\u94f2\u96ea\u5c71\u3002"} +{"id": "7004720", "video_name": "584c876b-1494-5940-b2b0-3b7cc640bc19", "text": "3D\uff0c\u52a8\u753b\uff0c\u8fea\u58eb\u5c3c\uff0c\u5c0f\uff0c\u9f99\uff0c\u7eff\u8272\uff0c\u5723\u8bde\u7403\uff0c\u96ea\u3002"} +{"id": "0003192", "video_name": "3908d6e7-b409-563a-8b46-2dcb6b2e6aee", "text": "\u7f8e\u4e3d\u7684\u57ce\u5e02\u5728\u591c\u665a\u65f6\u5206 (Font: MODERN) \u4fe1\u606f: \u4e0d\u9519"} +{"id": "1003008", "video_name": "37315288-39c6-5971-b09c-9e1b3d282c76", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u5b50\u6b63\u5728\u6500\u767b\u9661\u5ced\u7684\u5c71\u5cf0\uff0c\u8fd9\u5e45\u753b\u9762\u6e05\u6670\u65e0\u6bd4\uff0c4K\u3002"} +{"id": "4003338", "video_name": "3e01d28c-b4c1-59f7-9633-51b647c839b2", "text": "\u963f\u5409\u7279\u00b7\u5e93\u9a6c\u5c14\u5728\u8def\u4e0a\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "6004357", "video_name": "2a99132c-78f7-5407-bd3a-192cb7154668", "text": "\u4ed9\u5973\u82b1\u56ed\uff0c\u8611\u83c7\u5185\u90e8\u7684\u8ff7\u4eba\u8d85\u73b0\u5b9e\u5c0f\u578b\u5efa\u7b51\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u903c\u771f\u3002"} +{"id": "2005655", "video_name": "410fcd44-1ea4-5f79-9462-ae43323cf889", "text": "\u4e00\u4e2a\u7403\u7f69\u4f4f\u4e00\u4e2a\u6f02\u6d6e\u5728\u84dd\u8272\u5929\u7a7a\u4e2d\u7684\u7070\u8272\u7acb\u65b9\u4f53\u7684\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "8003462", "video_name": "a5041d48-86e7-57a2-a036-2c543c940030", "text": "\u9ed1\u767d\u8272\u8c03\uff0c\u7537\u4eba\u8df3\u4f1e\u65e0\u964d\u843d\u4f1e\uff0c\u4fef\u89c6\u89d2\u5ea6\n\nSource sentence: The cat is sleeping on the sofa next to the window. \n\u732b\u6b63\u5728\u7a97\u8fb9"} +{"id": "5001408", "video_name": "3d065ac0-daab-595b-b5dc-3fd099a53c76", "text": "\u955c\u5934\u7a7f\u8d8a\u4e91\u96fe\uff0c\u63ed\u793a\u51fa\u4e00\u5ea7\u5c0f\u793e\u533a\u6b63\u5728\u71c3\u70e7\uff0c\u573a\u9762\u5b8f\u5927\u3001\u7535\u5f71\u611f\u5341\u8db3\u3002"} +{"id": "2005433", "video_name": "f0081b9c-843d-5ee4-9e85-e1bd92921081", "text": "\u767b\u5c71\u8005\uff0c\u963f\u65b9\u65af\u00b7\u7a46\u590f\u98ce\u683c\u7684\u957f\u888d\uff0c\u5728\u5c71\u5185\u95ea\u70c1\u7684\u8fea\u65af\u79d1\u706f\u5149\u4e0b\u3002"} +{"id": "0006855", "video_name": "344652a6-321a-54e5-ae7a-93a3ee883115", "text": "\u4fa6\u63a2\u51b3\u5b9a\u8c03\u67e5\u8c0b\u6740\u6848\uff0c\u4ee5\u627e\u51fa\u8c01\u6740\u4e86\u6731\u8389\u5a05\u4ee5\u53ca\u4e3a\u4ec0\u4e48\u3002\u6731\u8389\u5a05\u7ee7\u7eed"} +{"id": "7004919", "video_name": "dc9da499-369f-5624-9e13-9715c13cf627", "text": "\u6709\u89d2\u7684\u725b\u5728\u4f11\u606f\u3002\u8fdc\u5904\u7684\u5730\u5e73\u7ebf\u3002"} +{"id": "1003074", "video_name": "388fe575-1e4f-5e8e-a6cd-b81c81e7784a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u957f\u957f\u7684\u767d\u8272\u68c9\u8d28\u88d9\u5b50\uff0c\u5728\u65e9\u6668\u7684\u9633\u5149\u4e0b\u6d89\u8fc7\u6c60\u5858\u3002"} +{"id": "6003747", "video_name": "993c12ab-b785-5f4e-95f4-715062628ce8", "text": "\u6545\u4e8b\u4e66\u5728\u62e5\u6324\u7684\u56fe\u4e66\u9986\u91cc\u6253\u5f00\u5e76\u95ea\u8000\u7740\uff0c\u58ee\u89c2\u7684\u955c\u5934\u79fb\u52a8\u5de5\u4f5c\uff0c\u662f\u4e00\u90e8\u6770\u4f5c\u7684\u5feb\u8282\u594f"} +{"id": "5001932", "video_name": "55a7b287-8e54-5b6e-95ed-c60054e41802", "text": "\u4e00\u4e2a\u4eba\u8df3\u5165\u4e1b\u6797\u7684\u9ad8\u8d28\u91cf\u89c6\u9891"} +{"id": "1003987", "video_name": "49a9494b-32ab-5580-886f-51e1cfc1b909", "text": "\u4e00\u4e2a\u5996\u602a\u5fae\u7b11\uff0c\u8272\u5f69\u4e30\u5bcc\u800c\u5947\u602a\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "2004197", "video_name": "508ca033-a480-59c5-9d29-05e43c33d6d0", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u5b69\u5b50\u62ff\u7740\u4e00\u4e2a\u88c5\u6ee1\u6ce1\u6ce1\u7684\u7bee\u5b50\u3002\u6bcf\u4e2a\u6ce1\u6ce1\u91cc\u90fd\u5305\u542b\u4e86\u4e00\u4e2a\u8ff7\u4eba\u7684\u573a\u666f\u6216\u5fae\u578b"} +{"id": "6002853", "video_name": "fae5319f-7fc0-5a85-80ea-e4516315ad40", "text": "\u4e00\u4e2a\u6d3b\u7684\u73bb\u7483\u5fae\u7403\u5728\u663e\u5fae\u955c\u4e0b\u5206\u88c2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005147", "video_name": "08e779b7-6619-5a96-9411-e012b58ac4c8", "text": "\u53cb\u8c0a\u7684\u98de\u884c\uff1a\u8428\u59c6\u3001\u5df4\u8fea\u548c\u4ed6\u4eec\u7684\u7fbd\u6bdb\u670b\u53cb\u7684\u6545\u4e8b"} +{"id": "1003893", "video_name": "47c9b285-5ddb-5cdc-b5fa-9fe9ffa00c24", "text": "\u4e00\u5ea7\u706f\u5854\u5728\u96e8\u591c\u7167\u8000\u7740\u4e00\u675f\u5149\u3002\u9ed1\u767d16\u6beb\u7c73\u3002"} +{"id": "2006776", "video_name": "b5c9aa03-997d-56cf-ab57-37d555073539", "text": "\u53f2\u8bd7\u822c\u7684\u753b\u9762\u3002\u7ef4\u4eac\u56fd\u738b\u62c9\u683c\u7eb3\u00b7\u6d1b\u5fb7\u5e03\u6d1b\u514b\u7a7f\u7740\u52a0\u62c9\u5854\u8428\u96f7\u961f\u7684\u7403\u8863\u3002\u52a0\u62c9"} +{"id": "6003503", "video_name": "dc4a8668-7056-5d7f-a2d6-e9fddc89591d", "text": "\u9ed1\u5f71\u5f62\u5f0f\u7684\u90aa\u7075\u56f4\u7ed5\u5728\u592a\u7a7a\u4e2d\u7684\u5730\u7403\u5468\u56f4\u3002"} +{"id": "2007701", "video_name": "d7e68102-ee89-5270-b936-7d2ad1ef4b1b", "text": "\u4e00\u6839\u6bdb\u7ebf\u8fde\u63a5\u7740\u7ef5\u7f8a\u548c\u7ec7\u5e03\u673a\u3002"} +{"id": "2007670", "video_name": "98aff38a-e78b-514b-b924-214bb298a351", "text": "\u8d3e\u65af\u6c40\u00b7\u6c40\u5e03\u83b1\u514b\u665a\u4e0a\u5750\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u5893\u5730\u4e0a\u7684\u5893\u7891\u4e0a\u5531\u6b4c\uff0c\u624b\u62ff\u7740\u4e00\u652f"} +{"id": "8002944", "video_name": "fffca3a7-4a36-5544-956b-ac4a082d9a01", "text": "\u4e00\u4e2a\u4eba\u5728\u9ed1\u6697\u7684\u5367\u5ba4\u542c\u5230\u624b\u673a\u58f0\u540e\u8f6c\u8fc7\u8eab\u6765\uff0c\u955c\u5934\u62c9\u8fdc\u3002"} +{"id": "8002536", "video_name": "4cb38757-dc2a-5297-90d8-9ef0df7d3760", "text": "20\u4e16\u7eaa\u521d\uff0c\u975e\u88d4\u7f8e\u56fd\u8428\u514b\u65af\u624b\u6f14\u594f\u84dd\u8c03\u3002"} +{"id": "1006578", "video_name": "7881bb85-2391-533e-8922-23fc04dae603", "text": "\u4e00\u8258\u6e14\u8239\u6f02\u6d6e\u5728\u5de8\u6d6a\u4e4b\u4e0a\u3002"} +{"id": "4004946", "video_name": "e11d0e66-287b-5d7b-86a0-861fd3df1a76", "text": "\u673a\u5668\u4eba\u7684\u624b\u4ece\u5730\u9762\u957f\u51fa\uff0c\u9ed1\u8272\u7684\u7194\u5ca9\u5730\u9762\u3002"} +{"id": "3003547", "video_name": "82c673c9-e325-517d-b55b-723e433cdb1d", "text": "\u8001\u4eba\u548c\u670b\u53cb\u5728\u4e00\u8d77\u5f88\u5f00\u5fc3\u3002"} +{"id": "8003846", "video_name": "a71a431b-13ce-5753-9597-abcbb0cf08c8", "text": "\u5982\u4f55\u6784\u5efa\u4e00\u53f0\u5f3a\u5927\u7684\u8ba1\u7b97\u673a\u7684\u6559\u7a0b\u89c6\u9891"} +{"id": "0003615", "video_name": "4083cd76-b217-59cb-8297-363042b59d52", "text": "\u56fd\u738b\u7ea6\u6c99\u6cd5\u7ad9\u5728\u9633\u53f0\u4e0a\u4fef\u77b0\u8036\u8def\u6492\u51b7\uff0c\u663e\u9732\u51fa\u5173\u5207\u548c\u51b3\u5fc3\u3002"} +{"id": "3004794", "video_name": "4bb53c9a-3d70-5e94-86c0-9b106efe8e66", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65e5\u51fa\u65f6\u9a91\u81ea\u884c\u8f66\uff0c\u65e5\u5f0f\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "7004490", "video_name": "5be9639a-7e58-5028-abcd-833916faefac", "text": "\u5236\u4f5c\u4e00\u5e45\u56fe\u50cf\uff0c\u63cf\u7ed8\u6e7f\u5a46\u795e\u548c\u5e15\u5c14\u74e6\u8482\u5973\u795e\u7684\u795e\u5723\u5a5a\u59fb\uff0c\u795e\u660e\u5468\u56f4"} +{"id": "5001971", "video_name": "d61a5e37-3ea2-53a4-af59-785a96dca731", "text": "\u4eba\u4eec\u629b\u6765\u629b\u53bb\u7684\u70ed\u571f\u8c46\uff0c\u6d41\u884c\u827a\u672f\u7684\u6076\u641e\uff0c\u7070\u8272\u5b66\u672f\uff0c\u624b\u5de5\u827a\u672f\u3002"} +{"id": "0006507", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "\u6f02\u4eae\u7684\u68d5\u8272\u76ae\u80a4\u5973\u5b69\u5728\u6237\u5916\u73a9\u800d\u3002"} +{"id": "4004855", "video_name": "15e15d6c-2d17-5788-a3f1-c0c81d514b1c", "text": "\u516c\u9e21\u7a7f\u7740\u793c\u670d\uff0c\u671b\u7740\u592a\u9633\u5531\u6b4c\u3002"} +{"id": "1005795", "video_name": "6aae0f3f-dfcd-5da7-b34a-0f4f529378a7", "text": "\u90a3\u4e2a\u7537\u4eba\u80cc\u7740\u5305\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "1004577", "video_name": "551b3a32-825d-5e92-9d14-aa431b944877", "text": "\u5236\u4f5c\u4e00\u4e2a\u63cf\u8ff0\u751f\u6d3b\u8d2b\u56f0\u7684\u5bb6\u5ead\u7684\u89c6\u9891\u3002"} +{"id": "8003081", "video_name": "d2d9022d-6fdf-5408-8ebd-549ee4ab5d00", "text": "\u53db\u9006\u8725\u8734\u5728\u6751\u5e84\u623f\u5c4b\u7206\u70b8\u3001\u4eba\u4eec\u56db\u6563\u9003\u8dd1\u65f6\u640f\u6597\uff0c\u573a\u9762\u5b8f\u5927\u3002"} +{"id": "1004246", "video_name": "4e97000f-03b9-556d-b3df-33fd2f1772fe", "text": "\u63cf\u8ff0\u547d\u8fd0\u7684\u8f6c\u6298\u5982\u4e00\u9635\u98ce\u65e0\u89c6\u903b\u8f91\uff0c\u5c06\u535a\u52d2\u63a8\u56de\u5ea7\u8231\uff0c\u4f7f\u4ed6\u4ece\u6b7b\u4ea1\u7684\u5371\u9669\u4e2d\u5f97\u4ee5\u62ef\u6551"} +{"id": "6003824", "video_name": "07e978a4-8d33-5752-b5b5-a211bb54ea49", "text": "\u4e24\u4e2a\u7537\u5b69\u5728\u82b1\u56ed\u91cc\u73a9\u800d\uff0c\u65e9\u6668\u7684\u9633\u5149\u7167\u5c04\u5728\u5730\u9762\u4e0a\u3002"} +{"id": "8002550", "video_name": "1b9e6606-022a-57ea-8db9-ff7c82c9dd3e", "text": "\u592a\u9633\u6559\u5f92\u56f4\u7740\u4e00\u4e2a\u7a7f\u7740\u5deb\u5e08\u670d\u88c5\u7684\u5b69\u5b50\u7684\u9759\u6b62\u753b\u9762\u3002"} +{"id": "8003895", "video_name": "fffda50a-781f-50e4-b67b-c13f07c7afd3", "text": "\u5207\u4e00\u4e2a\u7ea2\u6d0b\u8471\u6210\u7ec6\u6761\u72b6\u7684\u8309\u8389\u82b1\u7247\u3002"} +{"id": "0005512", "video_name": "1c13cd39-e15d-51e4-91ea-08f30530fe7c", "text": "\u628a\u6444\u50cf\u673a\u5411\u53f3\u79fb\u52a8\uff0c\u63ed\u793a\u51fa\u514b\u52b3\u65af\u00b7\u91d1\u65af\u57fa\u62ac\u5934\u6234\u7740\u7070\u5c18\u7684\u725b\u4ed4\u5e3d\uff0c\u7531Sergio Sol"} +{"id": "0004841", "video_name": "101f4b56-1c45-5d10-bbc7-e424617a04e8", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u5973\u5b69\u5728\u4e0b\u73ed\u56de\u5bb6\u7684\u8def\u4e0a\u4eab\u53d7\u97f3\u4e50\u3002"} +{"id": "2006709", "video_name": "cf4c21e5-5684-5365-ab48-e71099f9fce8", "text": "\u4e24\u4e2a\u201c\u771f\u4eba\u5feb\u6253\u201d\u6218\u6597\u8005\u5728\u80cc\u540e\u96f7\u7535\u4ea4\u52a0\u7684\u80cc\u666f\u4e0b\u4e92\u76f8\u65bd\u5c55\u81f4\u547d\u62db\u5f0f\uff0c\u6444\u50cf\u673a\u524d\u540e\u62c9\u8fd1\u3002"} +{"id": "2004617", "video_name": "6c71a16d-bdc0-5c43-9d0c-8eae002c342f", "text": "\u5728\u7a7a\u4e2d\u6210\u788e\u7247\uff0c\u50cf\u51bb\u7ed3\u7684\u8840\u6db2\u3002"} +{"id": "1003812", "video_name": "465adc51-080c-51c7-b33a-b411f252f709", "text": "\u8718\u86db\u5728\u4e66\u623f\u7684\u94a2\u7434\u4e0a\u7ec7\u7f51\uff0c\u70b9\u71c3\u8721\u70db\u5e76\u4e13\u6ce8\u5730\u6ce8\u89c6\u7740\u3002"} +{"id": "3006867", "video_name": "08270342-eb6b-52f0-8f77-eacf47a41e18", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u6389\u8fdb\u8857\u4e0a\u7684\u6c61\u6c34\u5751\u7684\u6f2b\u753b\u56fe\u7247\u3002"} +{"id": "0006155", "video_name": "277332d0-41f3-5dd7-9bc3-166ebf6c9db9", "text": "\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u906d\u9047\u4e4b\u4e00\u662f\u80e1\u5b89\u00b7\u5361\u74e6\u7eb3\u7684\u3002"} +{"id": "2007866", "video_name": "7bb67dd6-3c10-5ce2-a2ee-413267bb7fc6", "text": "\u4e91\u88ab\u8f7b\u98ce\u5439\u62c2\uff0c\u60a0\u7136\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\uff0c\u82b1\u8349\u968f\u5fae\u98ce\u8f7b\u6446\uff0c\u6811\u53f6\u8f7b\u8f7b\u98a4"} +{"id": "3003394", "video_name": "7285e70e-b765-5815-8304-cdd69f421f02", "text": "\u4e00\u573a\u5f3a\u70c8\u7684\u66b4\u98ce\u96e8\uff0c\u80cc\u666f\u662f\u57c3\u83f2\u5c14\u94c1\u5854\u3002"} +{"id": "3006481", "video_name": "d59a1a3d-33bd-5a7a-bd61-2215b6be6435", "text": "\u4e00\u5bf9\u592b\u5987\u548c\u5b69\u5b50\u4eec\u8fc7\u7740\u975e\u5e38\u5e78\u798f\u7684\u751f\u6d3b\uff0c\u4ed6\u4eec\u4e00\u8d77\u53bb\u5c71\u4e0a\u73a9\u96ea\u3002\u52a8\u6f2b\u98ce\u683c\u7684\u5409\u535c\u529b\u5de5"} +{"id": "2007113", "video_name": "6b1b8161-1ce6-502c-9893-f9199f1b53d1", "text": "\u4e24\u4e2a\u5973\u5b69\u7a7f\u8fc7\u6e38\u4e50\u56ed\u3002"} +{"id": "2005225", "video_name": "eef7bb84-5bfb-52f7-828a-49582898b066", "text": "\u6d77\u6ee9\u65e5\u843d\uff0c\u9760\u8fd1\u57ce\u5821\uff0c\u6d6a\u6f2b\uff0c80\u5e74\u4ee3\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "2007120", "video_name": "9f13f59a-dd83-540a-a859-0fb842d0c981", "text": "\u53e4\u4ee3\u7537\u5973\u7684\u68a6\u5e7b\u9762\u5bb9"} +{"id": "1005841", "video_name": "6b5479bf-7b86-5706-8151-961aa8f9a012", "text": "\u4e00\u4e2a\u5c0f\u5b64\u72ec\u7684\u673a\u5668\u4eba\u5728\u672a\u6765\u7684\u73af\u5883\u4e2d\u9192\u6765\uff0c\u5c55\u793a\u51fa\u9f7f\u8f6e\u548c\u53d1\u5149\u706f\u7684\u5fae\u5999\u7ec6\u8282\u3002"} +{"id": "2005952", "video_name": "2b63b900-844c-5a8c-b1b6-ebf3811a8458", "text": "\u5728\u6708\u7403\u6697\u9762\u7684\u65e5\u98df\u4e2d\uff0c\u6709\u4e00\u4e2a\u5fc3\u8df3\u3002"} +{"id": "0006074", "video_name": "263b4f04-05e4-5a7e-bea6-a506c3ee2060", "text": "\u521b\u9020\u4e00\u4e2a\u7a7f\u7740\u5370\u5ea6\u4f20\u7edf\u670d\u88c5\u7684\u7537\u5b69\u7acb\u7740\u7684\u5f62\u8c61\u3002"} +{"id": "0005456", "video_name": "1b098c68-ba4b-5447-b8be-27965da43e5d", "text": "\u7a7f\u7740\u7ea2\u8272\u793c\u670d\u7684\u5973\u58eb\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u8df3\u821e\uff0c\u827a\u672f\u611f\u5341\u8db3\u3002"} +{"id": "3005491", "video_name": "c366ae31-2289-5571-a639-3105fbe5fb19", "text": "\u4e00\u4e2a\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\u7ecf\u8425\u9ec4\u8272\u95e8\u9762\u6742\u8d27\u5e97\u7684\u7537\u4eba\u3002"} +{"id": "4004910", "video_name": "d40f8593-3406-5e06-8ae3-bdda8e3586d2", "text": "\u53e4\u6ce2\u65af\u58eb\u5175\u65af\u5e15\u62c9\u5df4\u62c9\u7ad9\u5728\u96c5\u5178\u57ce\u5899\u524d\u3002"} +{"id": "1003814", "video_name": "467103e8-d00e-5ce5-a8c8-7ca954a31181", "text": "\u7f13\u6162\u5730\u5c06\u6444\u50cf\u673a\u62c9\u8fd1\u5230\u623f\u5b50\u3002"} +{"id": "4004528", "video_name": "51f7dffd-bc2c-5602-a560-6ce746af423b", "text": "\u6211\u8d70\u8fdb\u8b66\u5c40\uff0c\u627e\u5230\u4e86\u6628\u5929\u5ba1\u95eeMelissa\u7684\u90a3\u540d\u8b66\u5bdf\u3002\u5c3d\u7ba1\u6211\u8be2\u95ee\u4e86\u4e00\u756a\uff0c\u4f46\u6211\u5f97\u77e5\u5979\u7684\u6848\u5b50\u6ca1\u6709\u4efb\u4f55\u8fdb"} +{"id": "4004374", "video_name": "debcb80c-f907-5b44-802b-e67751c24e80", "text": "\u5f71\u54cd\u8005\u5728\u4eba\u7fa4\u524d\u8bb2\u8bdd"} +{"id": "6003996", "video_name": "e8a407f1-f2fa-57a5-9d7d-7a317ef4eb70", "text": "\u4e00\u4e2a\u5730\u4e0b\u5ba4\u91cc\u6709\u4e00\u5f20\u5e8a\u3001\u4e00\u4e2a\u5927\u9505\u3001\u4e00\u4e2a\u5927\u6728\u6876\u3001\u4e00\u5f20\u684c\u5b50\u548c\u4e00\u6253\u54e5\u5e03\u6797\u5728\u73a9\u9ab0\u5b50\u3002"} +{"id": "7002398", "video_name": "97b8c40f-14ba-521f-974f-e6458bced3c1", "text": "\u795e\u5947\u7684\u5e1d\u56fd\u5c55\u73b0\u4e86\u4eba\u7c7b\u5de8\u5927\u529b\u91cf\u7684\u5f3a\u5927\u529b\u91cf\u3002\u6d88\u606f\uff1a\u613f\u771f\u4e3b\u4fdd\u4f513\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004991", "video_name": "cc747df2-9a74-57cc-8ff4-3d2d0707edf5", "text": "\u6751\u6c11\u4eec\u4ea4\u6362\u7591\u60d1\u7684\u76ee\u5149\uff0c\u60f3\u77e5\u9053\u753b\u4e2d\u63cf\u7ed8\u7684\u7f8e\u4e3d\u5bab\u6bbf\u53ef\u80fd\u5728\u54ea\u91cc\u3002"} +{"id": "6002975", "video_name": "68bcfc35-6501-56b6-9391-7e011536698a", "text": "Source sentence: Galle\u8db3\u7403\u4ff1\u4e50\u90e8\u7684\u57fa\u5730\n\nTranslated sentence: Galle\u8db3\u7403\u4ff1\u4e50\u90e8\u7684\u57fa\u5730"} +{"id": "3004678", "video_name": "6f8e4d84-06e5-5c55-9fcc-1f99bd5e5eb1", "text": "\u5bbd\u9614\u7684\u5efa\u7acb\u955c\u5934\u5c55\u793a\u4e86\u4e00\u8258\u592a\u7a7a\u98de\u8239\uff0c\u5b83\u6253\u5f00\u540e\uff0c\u6570\u767e\u4e2a\u7a7a\u95f4\u8231\u7ec4\u88c5\u5728\u4e00\u8d77\uff0c\u592a\u7a7a\u98de"} +{"id": "4003001", "video_name": "ddeedac2-30d2-5637-8f3f-91abd922870c", "text": "\u8fd9\u6295\u5c04\u4e86\u4e00\u7247\u9634\u5f71\u5728\u8be5\u5730\u533a\uff0c\u5e76\u4fc3\u4f7f\u8d85\u8fc726,000\u540d\u5c45\u6c11\u758f\u6563\u3002"} +{"id": "2004087", "video_name": "6f73694d-383b-54bc-a45b-564ffeeef4c7", "text": "\u5c55\u793a\u4e24\u53ea\u9e1f\u4e92\u76f8\u4e89\u5435\u7684\u89c6\u9891\u3002"} +{"id": "0006556", "video_name": "2e9a9b67-55ec-526c-b54b-de404298ae4b", "text": "\u7ed9\u6811\u548c\u690d\u88ab\u6dfb\u52a0\u8f7b\u5fae\u3001\u67d4\u548c\u7684\u6447\u6446\uff0c\u4f20\u8fbe\u4e1b\u6797\u4e2d\u751f\u547d\u7684\u611f\u89c9\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1006439", "video_name": "75e058f3-6103-5774-88c4-003daa6256ef", "text": "\u4e00\u4e2a\u4eba\u56de\u5fc6\u8d77\u7259\u4ed9\u5b50\u662f\u5982\u4f55\u5728\u6795\u5934\u4e0b\u653e\u7f6e\u6362\u7259\u7684\u94b1\u7684\u3002"} +{"id": "4002572", "video_name": "4819f0ce-9441-5c5c-bfbd-70b9d9f82d99", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u767e\u4e07\u5bcc\u7fc1 YouTuber \u548c\u4f01\u4e1a\u5973\u6027\u5728\u5979\u8c6a\u534e\u5bcc\u88d5\u7684\u529e\u516c\u5ba4\u91cc\u7684\u89c6\u9891\u3002"} +{"id": "4003106", "video_name": "82e26cb5-b199-5f78-9016-3fc5dc9aa799", "text": "\u6258\u9a6c\u65af\u5c0f\u706b\u8f66\u51b0\u6dc7\u6dcb\u5217\u8f66"} +{"id": "8002911", "video_name": "dd2aba84-3f10-5638-b7b8-5527d099e5c8", "text": "\u77ed\u53d1\u84dd\u53d1\u5973\u5b69\u4ece\u5979\u7684\u6bcd\u4eb2\u9003\u79bb\u3002\u6bcd\u4eb2\u7a7f\u7740\u9ed1\u8272\u5e26\u767d\u8272\u5706\u70b9\u7684\u88d9\u5b50\uff0c\u800c\u4e14"} +{"id": "1003828", "video_name": "46b5d21e-cd0e-5262-ad1f-b99ff8feeab4", "text": "\u5c55\u793aFelix\u5c1d\u8bd5\u5404\u79cd\u65b9\u6cd5\u53bb\u591f\u8461\u8404\uff0c\u5982\u72d0\u72f8\u8df3\u8dc3\u3001\u4f38\u5c55\u548c\u6500\u722c\u3002"} +{"id": "7004936", "video_name": "5adbbcd4-bcab-5d05-ace4-2b87746d2383", "text": "\u52a8\u6f2b\uff0c\u88ab\u9ed1\u6697\u7b3c\u7f69\u7684\u57ce\u5e02\u8eba\u5728\u9713\u8679\u706f\u7684\u5e7f\u9614\u753b\u5e03\u4e0b\u3002"} +{"id": "7004896", "video_name": "9242bda3-9055-51df-9de7-52a3235e6792", "text": "\u963f\u9053\u592b\u00b7\u5e0c\u7279\u52d2\u548c\u4ed6\u7684\u5b6a\u751f\u5144\u5f1f"} +{"id": "4004967", "video_name": "e2d020f6-64d8-5c8f-b830-f02aed62dc4d", "text": "\u4e00\u540d\u5973\u5b50\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u629a\u6478\u7740\u4e00\u53ea\u5c0f\u5c71\u7f8a\u3002"} +{"id": "2003348", "video_name": "3c58dbf6-ca84-5c0c-b657-57cd84eb7d2f", "text": "\u8d5b\u535a\u670b\u514b\u672a\u6765\u57ce\u5e02\u4e0b\u8f7d\uff0c\u4fef\u89c6\u666f\u8c61\u3002\u4fe1\u606f\uff1aEY3K0N\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0006099", "video_name": "2694a813-479c-54bf-adde-f7a8c1464b33", "text": "\u4e00\u53ea\u5361\u901a\u718a\u5403\u4e86\u5c0f\u5154\u5df4\u5c3c\u7684\u866b\u5b50\u3002"} +{"id": "1004777", "video_name": "58587892-a92b-501d-a10c-a762a99ae99b", "text": "\u9ed1\u8272\u7f8e\u6d32\u8c79\uff0c\u91d1\u8272\u7f8e\u6d32\u8c79\uff0c\u4e0a\u5219\u5982\u4e0b\uff0c\u9634\u9633\u62bd\u8c61\u3002"} +{"id": "0005195", "video_name": "1677e4e0-fa6a-562b-b779-4e6d21616f0b", "text": "\u51ac\u5929\u7684\u665a\u4e0a\uff0c\u7a7a\u6c14\u53d8\u5f97\u5f88\u51b7\u3002"} +{"id": "5001632", "video_name": "75df3a63-3fc4-55b7-8903-0aa74f3d4d55", "text": "\u76f4\u5347\u673a\u4ee5\u50cf\u7d20\u5316\u7684\u6e38\u620f\u827a\u672f\u98ce\u683c\u98de\u8d8a\u8bfa\u4e01\u6c49\u3002"} +{"id": "3003376", "video_name": "0c78aad8-cc1a-5495-b17d-f8b673995fe2", "text": "\u673a\u5668\u4eba\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "5001959", "video_name": "0895d055-d825-5562-abe0-bcc8496da312", "text": "\u5728\u7535\u8111\u524d\u5de5\u4f5c\u7684\u529e\u516c\u5ba4\u804c\u5458"} +{"id": "1004378", "video_name": "50de647e-1446-5071-ab3d-789ac0f4e599", "text": "\u4e00\u9897\u5f57\u661f\u671d\u7740\u8fd9\u4e2a\u661f\u7403\u98de\u6765\u7684\u4e4c\u6258\u90a6\u5929\u5802"} +{"id": "4004927", "video_name": "3a983238-341a-5581-b041-d8c1c12d878a", "text": "\u8bf7\u8865\u5168\u56fe\u7247\u4e2d\u4eba\u7269\u7684\u5168\u8eab\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1003937", "video_name": "48a69e9c-6741-5adf-96d9-a27da1c4b5bf", "text": "\u521b\u5efa\u4e00\u4e2a\u6781\u7b80\u7684\u5b9e\u65f6\u53e0\u52a0\u5c42\uff0c\u7528\u4e8e\u6d41\u5a92\u4f53\u64ad\u653e\u3002"} +{"id": "4004144", "video_name": "6afa4321-8d6f-5c7e-8de7-381bd371ba8b", "text": "\u4e00\u90e8\u7535\u5f71\u5f0f\u7684\u89c6\u9891\uff0c\u5973\u5b69\u6234\u7740\u5145\u6c14\u9762\u5177\uff0c\u7a7f\u7740\u7c89\u8272\u5934\u53d1\uff0c\u5728\u5b66\u6821\u821e\u4f1a\u4e0a\u8df3\u821e\uff0c\u80cc\u666f\u4e0a\u6709"} +{"id": "4002122", "video_name": "8ee7a8e0-cd90-5201-a9e9-dbdcff93140e", "text": "2D\u5e7c\u72ee\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "4004196", "video_name": "7eefcd97-134d-5909-a412-ec2e85ab206d", "text": "\u8759\u8760\u4fa0\u7ad9\u5728\u5efa\u7b51\u7269\u4e0a\u4fef\u77b0\u7740\u7e41\u534e\u7684\u9713\u8679\u57ce\u5e02\uff0c\u903c\u771f\uff0c\u96f7\u58f0\u9686\u9686\uff0c\u6781\u81f4"} +{"id": "1006381", "video_name": "74c43b82-6267-5f27-938e-34587612950d", "text": "\u68ee\u6797\u7684\u5f62\u8c61\uff1a\u5728\u6cb3\u4e2d\u7684\u7f8e\u4e3d\u68ee\u6797\u7684\u5f62\u8c61\u3002"} +{"id": "6003895", "video_name": "b97dc639-5752-5564-b935-f47c4dc3c514", "text": "\u4e00\u5e45\u7531\u8fea\u91cc\u514b\u00b7\u5305\u8328\u521b\u4f5c\u3001\u7075\u611f\u6765\u81ea\u4e8e\u7f57\u6770\u00b7\u8303\u5fb7\u97e6\u767b\u7684\u673a\u5668\u4eba\u7537\u5973\u624b\u7275\u624b\u7684\u753b\u4f5c\uff0c"} +{"id": "2005134", "video_name": "ae1f77d0-b54a-5016-bcc2-4bf6d29adbfb", "text": "Ub\u6e38\u620f\u5f15\u64ce\u53d8\u5f97\u66f4\u5927\uff0c\u4ee5\u83b1\u5965\u7eb3\u5c14\u00b7\u8d39\u5b81\u683c\u7684\u98ce\u683c\u3001\u4e1c\u4e9a\u4e66\u6cd5\u3001\u8428\u67e5\u00b7\u6208\u5fb7\u4f2f\u683c\u3001"} +{"id": "4003789", "video_name": "8a70c697-5c5b-545d-b3cc-637b7dae9987", "text": "\u4e00\u4e2a\u7537\u5b69\u8fdb\u5165\u4e86\u4e00\u5ea7\u95f9\u9b3c\u7684\u623f\u5b50\u3002"} +{"id": "3005809", "video_name": "8ae862af-846c-5ace-b95c-5b94b04d6cc5", "text": "\u5de8\u4eba\u4eec\u88ab\u56f0\u4f4f\u4e86\u3002\u683c\u52d2\u592b\u628a\u8fd9\u770b\u4f5c\u662f\u4e00\u4e2a\u673a\u4f1a\u3002"} +{"id": "2006450", "video_name": "22ba9c76-eecd-5306-b0fe-811b99ee5dec", "text": "\u5e26\u6709\u8df3\u8dc3\u7684\u5c0f\u9752\u86d9\uff0c\u4e00\u4e9b\u6606\u866b\u548c\u52a8\u7269\u7ecf\u8fc7\u7684\u903c\u771f\u5927\u7f8e\u7011\u5e03\u3002"} +{"id": "3005397", "video_name": "0aba45cb-546d-53a8-91c2-4f022d96cd39", "text": "\u7f57\u7eb3\u5c14\u591a\u5728\u52a8\u753b\u4e2d\u6253\u8fdb\u4e16\u754c\u676f\u8fdb\u7403\u3002"} +{"id": "2007150", "video_name": "236f1081-f8d0-5c51-9f31-3381362f8a56", "text": "4\u5f20\u5feb\u4e50\u5973\u5b69\u7684\u7167\u7247\u5e76\u6392\uff0c\u4e0a\u65b92\u5f20\uff0c\u4e0b\u65b92\u5f20\u3002"} +{"id": "2007797", "video_name": "b6cef909-ee6a-5e31-b9c1-fe43c7aa4d01", "text": "1970\u5e74\u4ee3\u4e1c\u6b27\u6050\u6016\u7535\u5f71\uff0c\u5de8\u5927\u7684\u8815\u52a8\u89e6\u987b\u3002\u8bb8\u591a\u89e6\u987b\u60ac\u6d6e\u5728\u5e9f\u5f03\u5efa\u7b51\u4e0a\u65b9\u3002"} +{"id": "3006037", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "\u4e00\u4e2a\u5e26\u7740\u8033\u673a\u7684\u7537\u5b50\u5728\u5367\u5ba4\u91cc\u665a\u4e0a\u542c\u6b4c\u3002"} +{"id": "2007375", "video_name": "d9bc4e3c-d8ef-52a9-98cb-afc956a887dd", "text": "\u8d85\u4ebaDJ\u5e26\u7740\u53d1\u5149\u7684\u63a7\u5236\u5668\uff0c\u5728\u5bb6\u540e\u9762\u95ea\u7535\u548c\u70df\u96fe\u4e2d\u8868\u6f14\u3002"} +{"id": "8001777", "video_name": "9c2d107e-5984-5d40-90f1-792e3c0548e2", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5e74\u8f7b\u4e2d\u56fd\u5973\u58eb\u7ed9\u6211\u5fae\u7b11\u3002"} +{"id": "8001947", "video_name": "dfa12214-e183-5592-91ca-f37afcd29397", "text": "\u7ebd\u7ea6\u5730\u94c1\u4e0a\u7684\u4eba\u4eec\u611f\u5230\u5bb3\u6015\uff0c\u9ed1\u6697\u3001\u9634\u6c89\u3001\u68a6\u5883\u822c\u768460\u5e74\u4ee3\u6050\u6016\u573a\u666f\u3002"} +{"id": "4003995", "video_name": "e39b8389-aad4-513d-96a8-16948cfc1514", "text": "\u4e00\u53ea\u65af\u82ac\u514b\u65af\u732b\u6389\u8fdb\u4e86\u4e00\u6c60\u676f\u5b50\u86cb\u7cd5\u548c\u9762\u98df\u3002"} +{"id": "7003473", "video_name": "8b0c2e54-6294-5abd-9895-cd152beb063c", "text": "\u84dd\u5929\u3001\u4e91\u5f69\u3001\u9633\u5149\u3001\u5149\u7ebf\u3002\u4fe1\u606f\uff1aCELESTE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004592", "video_name": "5574a6a0-7cf9-5029-b1c2-d23f1ee45af2", "text": "\u5728\u57c3\u675c\u963f\u591a\u00b7\u79d1\u5e03\u62c9\u60f3\u8c61\u7684\u4e16\u754c\u91cc\uff0c\u4e00\u5bf9\u60c5\u4fa3\u5728\u91cc\u65af\u672c\u7684\u9152\u5427\u91cc\u559d\u5564\u9152\u3002"} +{"id": "1006733", "video_name": "7b5e6aaa-ab03-5d6f-a0e6-46cd2d607db5", "text": "\u628a\u70ed\u5de7\u514b\u529b\u5012\u5165\u676f\u4e2d\u3002"} +{"id": "1004107", "video_name": "4c0e977c-4ba7-5e89-b5e0-aecd2fa45615", "text": "\u52a8\u6f2b\u624b\u88ab\u4e00\u6761\u65e0\u6cd5\u6253\u7834\u7684\u94fe\u5b50\u7ed1\u4f4f\uff0c\u7d27\u7d27\u5730\u7f20\u7ed5\u7740\u3002"} +{"id": "1005552", "video_name": "66389a48-76d0-5d7d-9c57-d8dd54708926", "text": "\u4e00\u4e2a\u624b\u6301\u62cd\u6444\u7684\u5370\u5ea6\u4f4f\u5b85\u8d70\u5eca\uff0c\u5c55\u793a\u4e86\u5899\u4e0a\u5c55\u793a\u7684\u5bb6\u5ead\u7167\u7247\u3002"} +{"id": "3005180", "video_name": "3bbbcdfe-47e2-51ed-9977-b4928c019b8b", "text": "\u4e00\u4f4d\u767d\u53d1\u767d\u7709\u7684\u4e2d\u56fd\u667a\u8005\uff0c\u6234\u7740\u4e2d\u5f0f\u5e3d\u5b50\uff0c\u7a7f\u7740\u6df1\u7ea2\u8272\u7684\u4e2d\u5f0f\u683c\u5b50\u5939\u514b\uff0c\u4e0a\u8eab\u6709\u4e00\u4e2a\u7a97"} +{"id": "0003442", "video_name": "3d9504d5-fdaa-5ad4-aaa3-81e00419bf08", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9ed1\u4eba\u5c11\u5e74\uff0c\u62e5\u6709\u5f02\u5e38\u654f\u6377\u7684\u5934\u8111\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c8K\uff0c\u7ec6\u8282\u9519\u7efc\u590d\u6742\u3002"} +{"id": "1003354", "video_name": "3dce2e47-c28b-5df6-8163-be8ac7df3b9b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u73bb\u7483\u5730\u677f\u4e0a\u884c\u8d70\uff0c\u5e76\u4e3a\u5b69\u5b50\u4eec\u5fae\u7b11\u3002"} +{"id": "7003566", "video_name": "1e508a6e-b48b-5c6a-b742-1ec69d9b51d8", "text": "\u8fea\u58eb\u5c3c\u5f69\u8272\u57ce\u5e02\u4e2d\u592e\u6709\u4e00\u4e2a\u55b7\u6cc9\uff0c\u5b69\u5b50\u4eec\u5728\u5468\u56f4\u73a9\u800d\uff0c\u7eff\u8349\uff0c\u84dd\u5929\uff0c\u9633\u5149\u660e"} +{"id": "4004353", "video_name": "77bb7849-7da2-543a-b7f0-19b0e8828358", "text": "\u8ba9\u4e00\u53ea\u8774\u8776\u98de\u8d77\u6765\uff0c\u7136\u540e\u7ad9\u5728\u4e00\u6735\u7ea2\u73ab\u7470\u4e0a\u3002"} +{"id": "8002191", "video_name": "a9d0bace-1265-5afb-9150-b1b7c7c2cdd3", "text": "\u95ed\u4e0a\u773c\u775b\uff0c\u6211\u770b\u5230\u5979\u7684\u7ea2\u53d1\u3002\u5979\u603b\u662f\u544a\u8bc9\u6211\u5979\u751f\u6d3b\u5728\u5669\u68a6\u4e2d\u3002"} +{"id": "8003279", "video_name": "32717532-9e69-578e-8079-433678f4cbb7", "text": "\u957f\u9888\u9e7f\u548c\u7334\u5b50\u5728\u82b1\u56ed\u91cc\u5b89\u6392\u4e86\u4e00\u4e2a\u7fbd\u6bdb\u9017\u4e50\u805a\u4f1a\uff0c\u8272\u5f69\u7f24\u7eb7\u3001\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "0003207", "video_name": "393951ed-9fdc-5413-8d5e-531ad717ca7d", "text": "\u5728\u4e00\u4e2a\u660f\u6697\u7684\u6d1e\u7a74\u91cc\uff0c\u5e74\u8f7b\u7684\u5973\u5b69\u8737\u7f29\u7740\u5750\u7740\uff0c\u773c\u4e2d\u5145\u6ee1\u4e86\u6050\u60e7\u548c\u60b2\u4f24"} +{"id": "4003060", "video_name": "b158c105-771c-5f59-8315-b855eb86c331", "text": "\u5728\u7a97\u6237\u540e\u9762\u53ef\u4ee5\u770b\u5230\u8bc1\u5238\u4ea4\u6613\u6240\uff0c\u4e00\u4e2a\u4eba\u6b63\u5728\u300a\u5b89\u5168\u5206\u6790\u300b\u4e66\u4e2d\u505a\u7b14\u8bb0\u548c\u9ad8\u4eae\u6807\u8bb0\u3002"} +{"id": "1003442", "video_name": "3fccb9c5-16aa-5ad5-a01d-04025262968c", "text": "\u9762\u5bf9\u632b\u6298\u5374\u4e0d\u653e\u5f03\u7684\u4eba\u3002"} +{"id": "8003423", "video_name": "0ab9fa5a-e325-5290-85c2-8eca3215aed2", "text": "\u68d5\u8272\u5934\u53d1\u7684\u5973\u5b69\u5728\u68ee\u6797\u91cc\u9762\u9762\u5bf9\u4e00\u4e2a\u53ef\u7231\u7684\u5916\u661f\u4eba\u5fae\u7b11\u3002"} +{"id": "2004762", "video_name": "b73be8c5-658a-5d60-8e18-5e984d1e85e8", "text": "\u5e0c\u814a\u72ee\u8eab\u4eba\u9762\u50cf\u6d3b\u4e86\u8fc7\u6765\uff0c\u6253\u7834\u5916\u58f3\uff0c\u4ece\u88c2\u7f1d\u4e2d\u6563\u53d1\u51fa\u660e\u4eae\u7684\u5149\u8292\uff0c\u52a8\u6001\u8bbe\u8ba1\uff0c\u4e13\u4e1a"} +{"id": "3006905", "video_name": "899be24e-0111-5565-a6f8-53e9f439a0f7", "text": "\u8fd9\u5ea7\u95f9\u9b3c\u7684\u8c6a\u5b85\u7684\u5168\u666f\u56fe\u63d0\u9192\u6240\u6709\u4eba\uff0c\u6709\u4e9b\u95e8\u6c38\u8fdc\u4e0d\u5e94\u8be5\u88ab\u6253\u5f00\u3002\u7535\u5f71\u611f\u3001\u6050\u6016\u3001\u8d85\u5199"} +{"id": "2003181", "video_name": "c4b313c9-afb2-59d0-85e5-29f13b200c4b", "text": "\u6770\u514b\u662f\u4e00\u4e2a\u4f4f\u5728\u5c0f\u6751\u5e84\u91cc\u7684\u82f1\u56fd\u519c\u6c11\u3002"} +{"id": "3005828", "video_name": "800c890c-b0ed-5789-86bd-68ccd76f1818", "text": "\u4e00\u53ea\u718a\u732b\u5728\u706b\u661f\u4e0a\u5403\u5bff\u53f8\u3002"} +{"id": "8001582", "video_name": "09d2df1d-5a0e-561e-9dc5-fd00a9246859", "text": "\u71c3\u70e7\u7684\u7eb8\u888b\uff0c\u84dd\u8272\u80cc\u666f\u3002"} +{"id": "0004427", "video_name": "08c3853e-45ee-55f8-8c27-4722ec63b569", "text": "\u53ea\u6709\u4e24\u79cd\u5141\u8bb8\u7684\u89c2\u70b9\u3002"} +{"id": "1004865", "video_name": "59e29005-2931-52e5-b980-6cb93336bebd", "text": "\u4e09\u7ef4\u5973\u4eba\u80cc\u5f71\uff0c\u7ad9\u5728\u4e00\u4e2a\u5706\u5f62\u7684\u8868\u9762\u4e0a\uff0c\u4ea7\u54c1\u98ce\u683c\u3002"} +{"id": "1006231", "video_name": "7235cc63-385f-5dff-b5b4-0c587b54c263", "text": "\u7f51\u7ad9\u5a92\u4f53\u533a\u768416:9\u56fe\u7247\u3002"} +{"id": "8001449", "video_name": "777293cb-9e3a-59ab-9bcb-4e5d41019753", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u77ed\u53d1\u7070\u53d1\u5973\u5b50\u5750\u5728\u53a8\u623f\u684c\u524d\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u6709\u7740\u9ed1\u80f6\u5531\u7247\u7684\u5927\u4e66\u67b6\u3002\u5979\u5411\u6211\u4eec"} +{"id": "1004462", "video_name": "529b7e8a-2d72-5685-a695-abbd513543ea", "text": "\u8d85\u4eba\u6709\u53d1\u5149\u7684\u7eff\u8272\u773c\u775b\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "1004558", "video_name": "5499f267-1e7d-540c-ad74-7b4f1b2edcb7", "text": "\u7535\u5f71\u98ce\u683c\u7684\u5e7b\u60f3\u4e16\u754c\u80cc\u666f\u4e0b\uff0c\u9003\u79bb\u654c\u4eba\u3002 \n\nSource sentence: The new product line is expected to launch next month. \n\n\u65b0\u4ea7\u54c1\u7ebf\u9884\u8ba1\u4e0b\u4e2a\u6708"} +{"id": "6002913", "video_name": "fa9e8132-9972-5e46-b3de-02ec7f6576cc", "text": "\u529f\u592b\u718a\u8c93\u201c\u6ce2\u201d\uff0c\u5728\u4e2d\u570b\u7684\u98a8\u666f\u4e2d\u8d70\u8457\uff0c\u8aaa\u4e86\u4e9b\u8a71\u3002"} +{"id": "3004120", "video_name": "873a335c-b781-52ad-a9c9-64c311447da8", "text": "\u56e0\u7ebd\u7279\u8d85\u7ea7\u82f1\u96c4\u4e01\u4e01\u98ce\u683c\u7684\u5361\u901a\u3002"} +{"id": "2005675", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "\u8001\u623f\u95f4\u91cc\u7684\u7535\u89c6\u6709\u7740\u767d\u566a\u58f0\uff0c\u81ea\u7136\u5149\u7ebf\u5f3a\u8c03\u7eb9\u7406\uff0c\u9ad8\u7ec6\u8282\u30018k\u5206\u8fa8\u7387\u3002"} +{"id": "1005204", "video_name": "5fd26f4b-787c-5b9e-a3d0-d0a3f5884462", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u722a\u5b50\u6307\u5411\u4e66\u4e2d\u7684\u6050\u9f99\u63d2\u56fe\u3002"} +{"id": "3005411", "video_name": "01487731-574c-5eb6-a814-5d70aab49d4f", "text": "\u6b66\u88c5\u58eb\u5175\uff0c\u9ed1\u6697\u88c5\u7532\uff0c\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002"} +{"id": "2004354", "video_name": "98527126-e73b-578e-a96c-9b3282c10161", "text": "\u5409\u7c73\u00b7\u4ea8\u5fb7\u91cc\u514b\u65af\u5728\u4e00\u573aBad Bunny\u7684\u6f14\u51fa\u4e2d\u3002"} +{"id": "7004043", "video_name": "a8935096-7046-56fc-a075-8ab296c96e8e", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u5973\u8fd0\u52a8\u5458\u5728\u6d77\u6ee9\u6392\u7403\u653b\u51fb\u52a8\u4f5c\u7684\u89c6\u9891\uff0c\u65f6\u957f\u4e3a5\u79d2\uff0c\u5c3d\u53ef\u80fd\u771f\u5b9e\u3002"} +{"id": "6002776", "video_name": "dbf09d76-8bc4-5880-a162-cc09c40a2222", "text": "\u4ed6\u662f\u4e00\u4e2a\u52a8\u6f2b\u98ce\u683c\u7684\u79d1\u5b66\u5bb6\uff0c\u7a7f\u7740\u767d\u5927\u8902\uff0c\u4e24\u4fa7\u5934\u53d1\u6a59\u8272\u3002"} +{"id": "7002206", "video_name": "d929ba6f-6ae1-52e4-b071-5ab04073608f", "text": "\u4e00\u4f4d\u52a8\u6f2b\u5973\u5b69\u5728\u98ce\u4e2d\u7948\u7977\uff0c\u7f8e\u4e3d\u3001\u795e\u79d8\u548c\u795e\u5723\u3002"} +{"id": "0005672", "video_name": "1f15233b-5aad-5af4-aac4-a0c9fee42b63", "text": "\u5b87\u5b99\u7684\u52a8\u753b\uff0c\u795e\u5947\u7684\uff0c\u63d2\u56fe\u5316\u7684\u3002"} +{"id": "2006942", "video_name": "b81b5fae-9752-53f3-8998-4e47073edca6", "text": "\u4e00\u6761\u6c34\u5916\u7684\u9c7c\u3002"} +{"id": "3003118", "video_name": "5d383625-8a0b-5c6b-b701-a19077583dba", "text": "\u7a7a\u4e2d\u65e0\u4eba\u673a\u62cd\u6444\u753b\u9762\u9ad8\u8d28\u91cf\uff0c128K\u7535\u5f71\u7ea7\u522b\u3002"} +{"id": "1003976", "video_name": "496c9430-0628-5d18-bd42-228ee5cf3592", "text": "2023\u5e74\u6700\u9ad8\u5de5\u65f6\u4e3a40\u5c0f\u65f6\uff0c2024\u5e74\u964d\u81f338.5\u5c0f\u65f6\uff0c2025\u5e74\u518d\u964d\u81f337.5\u5c0f\u65f6\u3002\u8fd9\u662f\u4e00\u4efd\u5c55\u793a\u5de5\u4f5c\u65f6\u95f4\u8868\u53d8\u5316\u6982\u5ff5"} +{"id": "0004748", "video_name": "0ea0dabf-9983-544c-8ce0-c842cbcbdba4", "text": "\u73b0\u5b9e\u7684\u7ef4\u591a\u5229\u4e9a\u65f6\u949f\uff0c\u65f6\u95f4\u98de\u901d\uff0c\u5669\u68a6\uff0c\u8fd0\u52a8\uff0c\u878d\u5316\uff0c\u626d\u66f2\uff0c\u94bb\u77f3\u3002"} +{"id": "6002878", "video_name": "440c9980-be7a-51b5-aff4-499d8993c347", "text": "\u7535\u5f71\u822c\u7684\u6444\u5f71\u673a\u63a8\u8fdb\u62cd\u6444\uff0cStarlord \u7684\u5934\u76d4\u773c\u775b\u95ea\u70c1\u7740\u3002"} +{"id": "3003973", "video_name": "f80728e5-c8cc-5f7e-9bb4-5c19f60a928e", "text": "\u7eff\u8272\u53f2\u83b1\u59c6\u6076\u9b3c\u53d1\u51fa\u6a59\u8272\u706b\u7403\uff0c\u5634\u89d2\u5fae\u7b11\uff0c\u4e0e\u8df3\u821e\u7684\u5c0f\u77ee\u4eba\u548c\u5730\u7cbe\u4e00\u8d77\u95ea"} +{"id": "3004924", "video_name": "b7ced1f2-9b9b-5373-94be-1f4be327ef77", "text": "\u5728\u6708\u5149\u4e0b\uff0c\u6a31\u82b1\u82b1\u74e3\u50cf\u96e8\u4e00\u6837\u98d8\u843d\uff0c\u8857\u9053\u4e0a\u94fa\u6ee1\u4e86\u6a31\u82b1\u82b1\u74e3\u3002\u884c\u4eba\u5728\u8def"} +{"id": "5001715", "video_name": "db4a0f6c-ce48-54c0-a7a9-d483914050a7", "text": "\u65e0\u8bba\u662f\u666e\u901a\u7528\u6237\u8fd8\u662f\u6444\u5f71\u7231\u597d\u8005\u3002"} +{"id": "1004450", "video_name": "5254362d-8612-5828-874f-188a98845256", "text": "\u53ef\u7231\u7684\u5973\u5b69\u5f39\u5409\u4ed6\uff0c\u7a7f\u7740\u6821\u670d\u3002"} +{"id": "0006820", "video_name": "33a5f727-7a7b-5233-a80a-484fd427d80b", "text": "\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u4ece\u624b\u4e2d\u91ca\u653e\u95ea\u7535\u3002"} +{"id": "3005657", "video_name": "c7ddf90c-1c2e-50bf-94ef-86658b9c8edf", "text": "\u4e00\u53ea\u72ee\u5b50\u5728\u529e\u516c\u5ba4\u7533\u8bf7\u7b7e\u8bc1\uff0c\u573a\u9762\u975e\u5e38\u7535\u5f71\u5316\uff0c\u7d27\u5f20\u523a\u6fc0\u3002"} +{"id": "0005917", "video_name": "233a4de0-636e-54ca-94c2-99a8117fb452", "text": "\u4e00\u4e2a\u975e\u5e38\u5c0f\u5de7\u3001\u7f8e\u4e3d\u7684\u5c0f\u5c4b\u72ec\u81ea\u5750\u5728\u4e61\u6751\u5730\u533a\uff0c\u7535\u5f71\u822c\u7684\u8000\u6591\u548c\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "2007064", "video_name": "8b1d18aa-06d6-561c-91d0-086c0f7bd91f", "text": "\u4e00\u4f4d\u6559\u7ec3\u5411\u4ed6\u7684\u5ba2\u6237\u5c55\u793a\u5982\u4f55\u5367\u63a8\u3002"} +{"id": "7002258", "video_name": "9c6a4d35-32b8-57c1-85e5-9dc978ea7ac3", "text": "\u5207\u597d\u7684\u852c\u83dc\u7528\u4e8e\u70f9\u996a\u3002\u4fe1\u606f\uff1a\u526f\u53a8\u5e08\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0006648", "video_name": "304bc481-c5ee-541e-885f-1d36aba98f61", "text": "\u4e00\u540d\u5b55\u5987\u62ff\u7740\u4e00\u6839\u957f\u7ebf\u7f06\u7684\u7535\u8bdd\u542c\u7b52\u4e0e\u5b50\u5bab\u4e2d\u7684\u80ce\u513f\u4ea4\u6d41\u3002"} +{"id": "3003980", "video_name": "44b61aa2-7e7a-5fe1-8ab0-7cfbb3fe7da5", "text": "\u5236\u4f5c\u4e00\u6bb5\u52a8\u753b\u573a\u666f\uff0c\u5176\u4e2d\u4e00\u4e2a\u9177\u5973\u5b69\u7a7f\u7740\u9ed1\u8272\u9ad8\u8ddf\u978b\u8d70\u8def\u3002"} +{"id": "3005221", "video_name": "c0512eef-e674-5b7d-80b6-7d52b21fef23", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7070\u8272\u8d35\u5bbe\u72ac\u6b63\u5728\u6d77\u91cc\u5feb\u4e50\u7684\u6e38\u6cf3\u3002"} +{"id": "1003877", "video_name": "476dd185-0e30-51e3-a73f-5222aac47305", "text": "\u8be6\u7ec6\u903c\u771f\u7684\u6f02\u4eae\u5973\u5b50\u5728\u6c34\u4e2d\u6e38\u6cf3\uff0c\u6c34\u662f\u7d2b\u8272\u7684\uff0c\u7535\u5f71\u5316\u5408\u6210\uff0c\u6770\u4f5c\uff0c\u827a\u672f\u98ce\u683c\u7684\u5934\u53d1\u52a8\u6001\uff0c"} +{"id": "8002765", "video_name": "47c786ee-5d54-5912-bbf5-0aa96ccfb8e1", "text": "\u4ece\u5929\u7a7a\u4e2d\u76f4\u64ad\u65b0\u661f\u7403\u3002\u672a\u6765\u3002\u7f8e\u4e3d\u7684\u661f\u661f\u3002\u76f8\u673a\u5411\u5de6\u79fb\u52a8\u3002\u7f29\u653e\u30025\u79d2\u949f\u3002"} +{"id": "3006803", "video_name": "eda979e8-09f5-5f48-a60e-c45d652eec23", "text": "\u732b\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u8df3\u65ad\u821e\uff0c\u5468\u56f4\u56f4\u7740\u4eba\u7fa4\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with the locals"} +{"id": "2003028", "video_name": "d7841803-be86-5442-8398-2a15c8346ad7", "text": "\u4e00\u53ea\u7334\u5b50\u8bd5\u56fe\u753b\u6591\u9a6c\uff0c\u8fd8\u51c6\u5907\u716e\u4e00\u53ea\u8725\u8734\u738b\u4f5c\u5348\u9910\u3002"} +{"id": "3005370", "video_name": "56b236e4-a04b-5899-baf4-9c9b27e26f01", "text": "\u4eba\u4eec\u51c6\u5907\u597d\u4e86\u8981\u6218\u6597\u3002"} +{"id": "0005639", "video_name": "1e87f972-824e-57d4-8348-418909bf63f4", "text": "\u89c6\u9891\u7684\u957f\u5ea6\u53d8\u957f\u4e86\u3002"} +{"id": "4004843", "video_name": "56b53fd8-cf62-51a5-936e-bad645a23474", "text": "\u65f6\u4ee3\u5e7f\u573a\u4e2d\u592e\u7684\u4e00\u4e2a\u5de8\u578b\u6c99\u6f0f\u3002"} +{"id": "6004033", "video_name": "fe187052-23ee-54dd-b31a-afaf774ceaf4", "text": "\u827e\u4ec0\u74e6\u513f\u96c5\u00b7\u83b1\u548c\u5854\u66fc\u5a1c\u4e00\u8d77\u7a7f\u7740\u77ed\u8fde\u8863\u88d9\u5728\u96e8\u4e2d\u3002"} +{"id": "0004704", "video_name": "0d9f4e80-63d2-5ac5-a97f-3b4070b8e337", "text": "\u4e3b\u89d2\u4eec\u65e2\u626e\u6f14\u82f1\u96c4\u53c8\u626e\u6f14\u53cd\u6d3e\u89d2\u8272\uff0c\u662f\u719f\u7ec3\u7684\u5251\u624b\uff0c\u5171\u540c\u80a9\u8d1f\u4e00\u4e2a\u4f7f\u547d\uff1a\u62ef\u6551\u4e00"} +{"id": "1006491", "video_name": "76db1156-4513-56a4-9a9b-22d30988b65c", "text": "\u5927\u578b\u8d5b\u8f66\u6e38\u620fGran Turismo 4\u4e2d\uff0cGT GUY\u66f4\u6362\u6c7d\u8f66\u673a\u6cb9\u3002"} +{"id": "4003805", "video_name": "0bfcfabe-47c8-5d96-95b2-94aedf7cf288", "text": "\u70ed\u72d7\u738b\u56fd\u91cc\u5145\u6ee1\u4e86\u70ed\u72d7\u3002"} +{"id": "4003084", "video_name": "e4fd91a3-ea75-51b3-a0e6-45ef1ccd5c3a", "text": "\u519c\u4e1a\u5de5\u4e1a\u516c\u53f8\u4f7f\u7528\u5927\u578b\u519c\u4e1a\u673a\u68b0\u4ece\u5f53\u5730\u90e8\u843d\u624b\u4e2d\u593a\u53d6\u7267\u5e08\u571f\u5730\uff0c\u4e3a\u79cd\u690d\u51c6\u5907\u571f\u5730\uff0c\u516c\u53f8\u548c\u5f53\u5730\u90e8"} +{"id": "1005269", "video_name": "60e81155-bdca-5812-9782-6ffcf88a32d2", "text": "\u5728\u6674\u6717\u7684\u4e00\u5929\u91cc\uff0c\u85b0\u8863\u8349\u7530\u4e2d\u98d8\u821e\u7684\u82b1\u6735\u3002"} +{"id": "8003682", "video_name": "381fbb6f-f209-55a0-8fe6-c6e75d0760fe", "text": "\u6253\u5f00\u95e8\uff0c\u8ba9\u5973\u5b69\u8fdb\u5165\u6d74\u5ba4\u3002"} +{"id": "1004986", "video_name": "5c2b197b-c50a-5a44-8769-2fe158bafb21", "text": "\u4e00\u4e2a\u7a7f\u7740\u8fde\u5e3d\u886b\uff0c\u6709RGB\u53d1\u5149\u7684\u8d5b\u535a\u670b\u514b\u6f2b\u753b\u4eba\u7269\u5728\u672a\u6765\u73af\u5883\u4e2d\uff0c\u62e5\u6709\u7535\u5f71\u822c\u7684\u7167\u660e\u6548"} +{"id": "3004548", "video_name": "6425014d-d77a-533a-8a63-7ab7fa3ff855", "text": "\u663e\u5fae\u7ec6\u80de\u5f71\u50cf\u8be6\u7ec6\u5448\u73b0\u7eff\u8272\u8840\u6db2\u7ec6\u80de\u3002"} +{"id": "2006312", "video_name": "0a32c302-ff22-51cc-bad3-7e93f3a940bc", "text": "\u5317\u4eac\uff0c\u5929\u575b\uff0c\u7535\u5f71\u706f\u5149\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3006822", "video_name": "d13c476d-e2e0-5493-9d65-48d9e5a466a8", "text": "\u4e00\u4f4d\u76ae\u80a4\u82cd\u767d\u3001\u98a7\u9aa8\u9ad8\u633a\u3001\u6a58\u8272\u6ce2\u6d6a\u53d1\u7684\u7f8e\u4e3d\u5973\u5b50\uff0c\u7a7f\u7740\u767d\u8272\u7ef4\u591a\u5229\u4e9a\u5f0f"} +{"id": "4004704", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "\u4ece\u592a\u9633\u89d2\u5ea6\u770b\u6708\u4eae\u662f\u5982\u4f55\u5f62\u6210\u7684\uff0c\u753b\u51fa\u6765\u3002"} +{"id": "1005331", "video_name": "61edf6fb-d880-5b1f-a0c2-5b0335c13942", "text": "\u4e00\u4f4d\u5370\u5ea6\u5723\u4eba\u5728\u4e1b\u6797\u4e2d\u7684\u6cb3\u4e2d\u51a5\u60f3\uff0c\u6c14\u8d28\u4f18\u96c5\uff0c\u65e5\u843d\u7684\u666f\u8272\uff0c\u7fa4\u5c71\u73af\u7ed5\u3002"} +{"id": "2005314", "video_name": "1b8143ac-7b79-5915-bbe3-ebd7ff574320", "text": "\u4e00\u4e2a\u7ea2\u5934\u53d1\u7684\u7537\u5b69\uff0c\u5728\u4e00\u4e2a\u5927\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u6a59\u8272\u7684\u5706\u5f62\u3002"} +{"id": "1006166", "video_name": "70d84339-6578-5ecf-9b3a-ef2d6dacb1de", "text": "\u4e00\u4e2a\u6234\u7740\u9752\u86d9\u5934\u7684\u7537\u4eba\uff0c\u5728\u66fc\u54c8\u987f\u7ad9\u5728\u6444\u50cf\u673a\u524d\uff0c\u624b\u91cc\u62ff\u7740\u9999\u70df\u5fae\u7b11\u7740\uff0c\u7a7f\u7740\u4e00"} +{"id": "6004538", "video_name": "bf684745-1f68-58e3-9490-7ccf19815e3f", "text": "\u6f14\u51fa\u7684\u60ca\u4eba\u53f2\u8bd7\u822c\u7684\u58ee\u4e3d\u903c\u771f\u63cf\u8ff0\uff0c\u4e00\u4e2a\u97f3\u4e50\u5bb6\u6f14\u594f\u4e00\u9996\u80fd\u89e6\u52a8\u4eba\u5fc3\u7684\u6770\u4f5c\u76844k\u97f3\u4e50"} +{"id": "8002547", "video_name": "b841e888-a40b-5315-aaab-499c70aa9b89", "text": "\u957f\u957f\u7684\u9cc4\u9c7c\u98de\u5411\u706b\u661f\u3002"} +{"id": "0003023", "video_name": "35b8d6eb-d6f7-5dda-9e6e-b41bd99dd0a7", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u4ece\u81ea\u52a8\u552e\u8d27\u673a\u4e2d\u62ff\u51fa\u4e00\u7f50\u82cf\u6253\u6c34\u3002"} +{"id": "2006026", "video_name": "dd345cbf-60a3-5e6a-901d-1edc59d239e5", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8fde\u8863\u88d9\u7684\u9b54\u6cd5\u5c0f\u5973\u5b69\u843d\u5165\u4e86\u4e00\u7247\u661f\u6d77\u3002"} +{"id": "2007663", "video_name": "cdc1da27-e066-55ff-bdf1-499a8522a155", "text": "\u5728\u65e5\u843d\u65f6\u5206\uff0c\u4ed6\u4eec\u5728\u4e00\u68f5\u5de8\u5927\u7684\u9999\u8549\u6811\u4e0b\u627e\u5230\u4e86\u4e00\u4e2a\u8212\u9002\u7684\u5730\u65b9\u4f11\u606f\u3002\u8428\u7c73\u3001\u6ce2\u8389\u3001"} +{"id": "8002086", "video_name": "eb9d4a67-41f6-5c81-8fc5-2ad4e43b2fbf", "text": "\u6c64\u59c6\u00b7\u5fb7\u6717\u5409\u4e0e\u7070\u8272\u5916\u661f\u4eba\u5728\u821e\u53f0\u4e0a\u8868\u6f14\uff0c\u903c\u771f\u7684HDR 4K\u4e13\u4e1a\u7535\u5f71\u6444\u5f71\uff0c\u5bbd\u5c4f16\uff1a9"} +{"id": "1003024", "video_name": "3786a6df-1cde-5f57-8ed4-299d6e03f1a2", "text": "\u4e00\u4f4d\u82d7\u6761\u7684\u6444\u5f71\u5e08\uff0c\u8fdb\u884c\u4e09\u7ef4\u6e32\u67d3\uff0c\u4f7f\u7528\u5e7f\u89d2\u955c\u5934\u5728\u5ba4\u5916\u5de5\u4f5c\u5ba4\u5916\u62cd\u6444\u7167\u7247\uff0c\u91c7\u7528\u9ad8\u52a8\u6001"} +{"id": "8001030", "video_name": "3e453784-adb4-5ad2-81b9-13fae534ee30", "text": "\u53ef\u518d\u751f\u80fd\u6e90\u673a\u5668\u548c\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba"} +{"id": "7003188", "video_name": "eb420867-4f05-5557-884c-e279b6cb82a5", "text": "\u4e00\u4e2a\u7a7f\u7740\u838e\u4e3d\u98ce\u683c\u8fea\u58eb\u5c3c\u670d\u88c5\u7684\u5973\u5b69"} +{"id": "6003906", "video_name": "f6ea873b-c280-5428-9707-2dfd6c36e7f4", "text": "\u4e00\u4e2a\u5145\u6ee1\u7f8e\u4eba\u9c7c\u7684\u6d77\u5e95\u57ce\u5e02\uff08\u4e9a\u7279\u5170\u8482\u65af\uff09\u3002"} +{"id": "3004317", "video_name": "213dec39-0687-5f24-a3d1-e42a549af58f", "text": "\u4e24\u4e2a\u52a8\u753b\u5bff\u53f8\u5728\u65e5\u672c\u9910\u5385\u91cc\u4ea4\u8c08\u3002"} +{"id": "0004687", "video_name": "0d52530c-a6aa-569c-92d2-575a13902ad7", "text": "\u5e73\u9762\u8bbe\u8ba1\uff0c\u89c6\u9891\u7f16\u8f91\uff0c\u6c83\u5c14\u739b\uff0c\u4e9a\u9a6c\u900a\u8bfe\u7a0b\u3002"} +{"id": "8003386", "video_name": "12ee0a98-d11f-5dad-b178-787d9d833ad5", "text": "\u88ab\u5185\u5d4c\u4e8e\u4e3b\u673a\u795e\u7ecf\u76ae\u8d28\u7684\u589e\u5f3a\u88c5\u7f6e\u6298\u78e8\u7740\uff0c\u8fd1\u8ddd\u79bb\u89c2\u5bdf\uff0c\u5448\u7d2b\u8272\u3002"} +{"id": "0004940", "video_name": "11f257e1-a25e-5465-99ee-74e33179b466", "text": "\u591a\u5e74\u524d\uff0c\u4e00\u4e9b\u52a8\u7269\u751f\u6d3b\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "5001769", "video_name": "6f6b928b-8638-5ae3-a1b6-83a6b68c908b", "text": "\u8fd9\u5bf9\u592b\u5987\u7a7f\u8fc7\u4e00\u4e2a\u5145\u6ee1\u5f53\u5730\u624b\u5de5\u827a\u54c1\u7684\u8ff7\u4eba\u5e02\u573a\u3002"} +{"id": "5001813", "video_name": "77457404-a686-59ef-8a15-46787a47da88", "text": "\u57ce\u5e02\u90ca\u5916\u7684\u81ea\u7136\u666f\u89c2\u5c55\u73b0\u4e86\u53ef\u6301\u7eed\u53d1\u5c55\u7684\u7406\u5ff5\u3002\u7eff\u8272\u80fd\u6e90\u8bbe\u65bd\u5982\u592a\u9633\u80fd\u677f\u548c\u98ce\u529b\u6da1\u8f6e\u673a\u6563"} +{"id": "0006884", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "\u5efa\u7acb\u5e7f\u89d2\u955c\u5934\uff0c\u91d1\u8272\u65f6\u6bb5\uff0c\u4eba\u4eec\u6b65\u884c\uff0c\u672a\u6765\u57ce\u5e02\uff0c\u4eba\u5de5\u5c9b\u5c7f\uff0c\u9ad8\u8038\u7684\u697c\u5c42\u548c\u7a7a\u95f4\uff0c\u73b0\u4ee3\u5316\u7684\u793e\u533a\uff0c\u901a\u8fc7"} +{"id": "8002334", "video_name": "5d5c07b0-8fa9-57cd-bb8f-85fd3a7501c3", "text": "\u4e00\u5f20\u97f3\u4e50\u4f1a\u7684\u7167\u7247\uff0c\u4eba\u4eec\u8df3\u821e\u3001\u5531\u6b4c\uff0c\u8ddf\u7740\u81ea\u5df1\u6700\u559c\u6b22\u7684\u97f3\u4e50\u3002"} +{"id": "3005030", "video_name": "a3fede03-6ccd-5e6c-8f3c-251e40401443", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u6f2b\u753b\u519c\u573a\u4e0a\u548c\u9a6c\u73a9\u800d\u3002"} +{"id": "1004655", "video_name": "569cabf8-5f8d-58e0-82da-a96ab555f0ec", "text": "\u84b2\u8349\u6f02\u6d6e\u7684\u5ef6\u65f6\u6444\u5f71\uff0c4k\u5206\u8fa8\u7387\uff0c\u66f4\u7ec6\u81f4\u7684\u7ec6\u8282\uff0c\u8f6c\u5411\u65e5\u843d\uff0c\u7537\u4eba\u5728\u6d6e\u84b2\u8349"} +{"id": "3005847", "video_name": "189da35b-cee5-568d-96e0-cfa84e02d149", "text": "\u4e00\u540d\u7cbe\u795e\u75c5\u9662\u7684\u75c5\u4eba\u5446\u5446\u5730\u51dd\u89c6\u7740\u3002"} +{"id": "6003664", "video_name": "def0d98a-cc2a-5d54-b6a1-d8f438cf8932", "text": "25\u5c81\u7684\u7537\u5b69\u6307\u7740\u5c0f\u7537\u5b69\u7b11\uff0c5\u4e2a\u7537\u5b69\u5728\u955c\u5934\u4ece\u4e0a\u5230\u4e0b\u7684\u53d8\u5316\u4e2d\u53d8\u5f97\u66f4\u5927\uff0c\u800c\u5c0f\u7537\u5b69\u5219\u53d8\u5f97\u66f4\u5c0f\uff0c"} +{"id": "3003818", "video_name": "491c2333-7916-5bac-9eac-30be4fa9ecac", "text": "\u8fd9\u4e2a\u7537\u5b69\u54ed\u6ce3\u7740\uff0c\u4f46\u6ca1\u6709\u4eba\u80fd\u542c\u5230\u4ed6\u7684\u58f0\u97f3\u3002"} +{"id": "8003475", "video_name": "e845646e-35b9-54fd-8671-9040bf1197ae", "text": "\u4ece\u65e0\u4eba\u673a\u7684\u89c6\u89d2\u770b\uff0c\u5728\u5357\u7f8e\u6d32\u4e1b\u6797\u4e2d\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "3005553", "video_name": "c25a943f-02d5-53aa-95f7-5084fc396efb", "text": "\u968f\u7740\u591c\u665a\u7684\u6df1\u5165\uff0c\u5e7d\u7075\u548c\u4ea1\u7075\u5728\u6c38\u6052\u7684\u821e\u8e48\u4e2d\u5f98\u5f8a\uff0c\u88ab\u56f0\u5728\u751f\u4e0e\u6b7b\u7684\u4e24"} +{"id": "2004303", "video_name": "a087871f-736b-5b23-8bbc-3876a73b5d4f", "text": "\u6d77\u666f\u4e0e\u6ce2\u6d6a\u62cd\u6253\u7684\u7535\u5f71\u822c\u76841:1\u89c6\u89d2\u3002"} +{"id": "8003132", "video_name": "dd21e8e0-e265-5a73-bc7e-5ff7e3c1952e", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5173\u6389\u7535\u8111\uff0c\u624b\u5728\u79fb\u52a8\uff0c\u79fb\u52a8\u52304\u3002"} +{"id": "3005437", "video_name": "45861ae5-518c-5a04-8734-f57610174d93", "text": "\u5728\u4e00\u4e2a\u5927\u578b\u6d3e\u5bf9\u4e0a\uff0c\u821e\u53f0\u4e0a\u6709\u4e00\u53ea\u72d7\uff0c\u80cc\u666f\u6709\u4e50\u961f\u6f14\u594f\uff0c\u73af\u5883\u6bd4\u8f83\u6697\uff0c\u6709\u84dd\u8272\u7684\u706f"} +{"id": "2004359", "video_name": "0322141e-9af5-5187-95bc-38646d362b32", "text": "\u5c0f\u7537\u5b69\u5728\u8bc4\u4ef7\u51b0\u6dc7\u6dcb\uff0c\u5927\u57ce\u5e02\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "7002718", "video_name": "98fbae10-7388-5174-bc21-3a7a6678ad85", "text": "\u5927\u536b\u00b7\u827e\u767b\u5821\u7235\u58eb\u5728\u8def\u6613\u65af\u5b89\u90a3\u6e7e\u7684\u6cbc\u6cfd\u5730\u8bb2\u8bdd\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "6004744", "video_name": "17d83d43-fe5e-5ee0-b477-417339d85b4b", "text": "4\u4e16\u7eaa\u65f6\u671f\u88ab\u63a0\u593a\u7684\u5bfa\u5e99\u3002"} +{"id": "2007807", "video_name": "4eeb37dd-ab93-5139-bd4b-973fa249f1cb", "text": "\u4e00\u4e2a\u5916\u661f\u7403\u4ee5\u9ed1\u6697\u7f8e\u5b66\u7684\u65b9\u5f0f\u5fae\u5c0f\u5730\u7206\u70b8\uff0c\u5c31\u50cf\u300a\u6c99\u4e18\u300b\u4e00\u6837\u3002\u975e\u5e38\u70b9\u5f69\u6d3e\uff0c\u6709\u5f88\u591a\u5c0f\u788e\u7247\u7684\u5c0f"} +{"id": "5001752", "video_name": "164c2531-66d6-56bc-b13d-5cdaa388758c", "text": "\u542f\u793a\u5f55\u8fd9\u672c\u5145\u6ee1\u542f\u793a\u6027\u5e7b\u8c61\u7684\u4e66\uff0c\u63cf\u7ed8\u51fa\u5929\u4f7f\u5e76\u4e0d\u53ea\u662f\u65e0\u58f0\u7684\u89c2\u5bdf\u8005\uff0c\u800c\u662f\u5728\u5c06\u4f1a\u5728\u672b\u65e5\u8fbe\u5230"} +{"id": "8001534", "video_name": "43973607-f29c-5e5b-970e-45240aadda56", "text": "\u5728\u884c\u9a76\u7684\u706b\u8f66\u4e0a\uff0c\u4e00\u4f4d\u6709\u7740\u9ed1\u8272\u773c\u775b\u548c\u5934\u53d1\u7684\u7f8e\u4e3d\u5973\u5b69\u7ad9\u8d77\u8eab\uff0c\u8d70\u5411\u5438\u70df\u533a\u3002"} +{"id": "0004247", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "\u661f\u7403\u5927\u6218\u7684\u5236\u4f5c\u7167\uff0c\u7531\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa\u62cd\u6444\uff0c35\u6beb\u7c7320ASA\u67ef\u8fbe\u514b\u5f69"} +{"id": "8003779", "video_name": "618c0e7b-1a39-53ca-a9b3-c29a93e66b70", "text": "\u4ed6\u7684\u9996\u6b21\u89d2\u8272\u6f14\u51fa\u53cd\u5e94\u4e0d\u4e00\uff0c\u5fb7\u97e6\u6069\u00b7\u5f3a\u68ee\u5728\u65e9\u671f\u6f14\u51fa\u4e2d\u906d\u5230\u4e86\u89c2\u4f17\u7684\u5632\u7b11\u548c\u6279"} +{"id": "3005323", "video_name": "68cf1929-e0f8-54a3-b681-4cbd49f5cdcb", "text": "\u4e00\u53ea\u8001\u5e74\u624b\u7275\u7740\u4e00\u53ea\u5e74\u8f7b\u624b\uff0c\u7a7f\u7740\u767d\u8272\u886c\u886b\uff0c\u52a8\u4f5c4\u3002"} +{"id": "4002050", "video_name": "3d7f5f1b-f669-5f62-b097-83f7e6c099cb", "text": "\u5c55\u793a\u94a2\u7434\u88ab\u7206\u70b8\u629b\u5165\u7a7a\u4e2d\u7684\u573a\u666f\u3002"} +{"id": "8003445", "video_name": "eb5dbdf7-0d42-561e-b9a6-66908bb5b134", "text": "\u5728\u590f\u5a01\u5937\u7684\u6d77\u6d6a\u4e0a\uff0c\u6709\u4e00\u4e2a\u84dd\u8272\u7684\u51b2\u6d6a\u677f\u3002\u5728\u51b2\u6d6a\u677f\u7684\u9876\u90e8\uff0c\u7ad9\u7740\u4e00\u53ea\u7a7f\u7740\u6f5c"} +{"id": "3006281", "video_name": "3f4099ec-89cb-5b04-aaf1-64eeed173b37", "text": "\u5df4\u9ece\u4e16\u5bb6\u98ce\u683c\u7684\u94f6\u8272\u51b2\u6d6a\u624b"} +{"id": "6003056", "video_name": "9ee56b93-da36-5682-94f5-3df047690e84", "text": "\u573a\u666f\u63cf\u8ff0\uff1a\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u516c\u56ed\uff0c\u7e41\u8302\u7684\u6811\u6728\u548c\u76db\u5f00\u7684\u82b1\u6735\u3002\u52a8\u4f5c\u6307\u4ee4\uff1a\u6444\u50cf\u673a\u7f13"} +{"id": "1003627", "video_name": "42cc797b-3bfb-5aec-b136-a871a527f120", "text": "\u60ac\u5d16\u4e0a\u7684\u623f\u5b50\uff0c\u62e5\u6709\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u65e5\u843d\u7f8e\u666f\u3002"} +{"id": "8001993", "video_name": "8532f1ca-1515-57fe-8cbe-7fceae5ac9c7", "text": "\u521b\u4f5c\u4e00\u4e2a5\u79d2\u949f\u7684\u89c6\u9891\u6765\u5c55\u793a\u4eba\u5de5\u667a\u80fd\u672a\u6765\u7684\u6837\u5b50\u3002"} +{"id": "7002201", "video_name": "2b27e583-b3fe-5dce-8e76-09c9d90d256d", "text": "\u73b0\u4ee3\u98ce\u683c\u7684\u5723\u8bde\u6811\u88c5\u9970\u5f97\u5f88\u597d\uff0c\u914d\u6709\u300a\u5c0f\u9b3c\u5f53\u5bb6\u300b\u7535\u5f71\u7684\u97f3\u4e50\u3002"} +{"id": "3004360", "video_name": "f1b2d1de-bf1b-5bd7-8c96-fe205d518e92", "text": "\u521b\u9020\u4e00\u4e2a\u6050\u6016\u7684\u623f\u95f4\u7684\u5f62\u8c61\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u9501\u5728\u91cc\u9762\uff0c\u5c31\u50cf\u6211\u63d0\u5230\u7684\u6545\u4e8b\u3002"} +{"id": "4003304", "video_name": "228a3414-7faa-5e77-9963-f95b024b56a3", "text": "\u4ece\u5730\u4e0a\u62ff\u8d77\u624b\u67aa\uff0c16:9\u6444\u50cf\u673a\u7f29\u653e\uff0c\u6050\u6016\u7535\u5f71\u98ce\u683c\u7684\u52a8\u753b\u3002"} +{"id": "2007019", "video_name": "a4ca7cba-3c0a-525a-8d65-479dd06686e9", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u5728\u751f\u65e5\u86cb\u7cd5\u4e0a\u8df3\u821e\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u5448\u73b0\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "2004107", "video_name": "1fbffcdd-f4d5-581d-b9e8-984867e793fc", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u5973\u6027\u62df\u4eba\u5316\u8c93\u5728\u4e00\u5f35\u7d05\u8272\u6c99\u767c\u4e0a\u8df3\u821e\uff0c\u6c99\u767c\u4e0a\u6709\u85cd\u8272\u82b1\u7d0b\u3002\u9019"} +{"id": "2006330", "video_name": "bd379079-8da2-5a08-bc7a-7981d74503bd", "text": "\u9a7e\u9a76\u8231\u7684\u8231\u95e8\u5728\u80f8\u53e3\u7f13\u6162\u5730\u6253\u5f00\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006006", "video_name": "9a852a81-e653-5b4f-91e5-9208df02afee", "text": "\u4e00\u4e2a\u6076\u9b54\u56fd\u738b\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\u5927\u58f0\u53eb\u558a\uff0c\u5468\u56f4\u662f\u795e\u79d8\u7684\u751f\u7269\u548c\u4e00\u95f4\u6df1\u7ea2\u8272\u7684\u623f\u95f4\uff0c\u800c"} +{"id": "4002169", "video_name": "3d2f7604-5bf4-56a9-86a9-43c18eae66ba", "text": "\u4e00\u5ea7\u57ce\u5821\u5728\u9ec4\u660f\u88ab\u5343\u4e07\u9b42\u9b44\u653b\u51fb\uff0c\u573a\u9762\u50cf\u7535\u5f71\u4e00\u6837\u6829\u6829\u5982\u751f\u3002"} +{"id": "2005772", "video_name": "dd7cbf85-38f1-5c07-8f27-d0c317dc71b3", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u5728\u65e5\u843d\u65f6\u8d70\u8fdb\u4e00\u5ea7\u65e7\u7684\u70e7\u6bc1\u7684\u5e9f\u5f03\u623f\u5c4b\uff0c\u800c\u80cc\u666f\u4e2d\u7389\u7c73\u7530\u91cc\u7684\u90ca"} +{"id": "8002257", "video_name": "1e48e1b1-b653-5a36-82c4-d39568acabe3", "text": "\u6c99\u6f20\u4e2d\u7684\u65e5\u843d\u548c\u6c99\u4e18"} +{"id": "4004439", "video_name": "c8c7e286-efee-5b6c-a905-09465c8de309", "text": "\u5370\u5ea6\u6559\u5973\u795e\u5361\u5229\u5728\u5b87\u5b99\u4e2d\u98de\u884c\u5f97\u975e\u5e38\u5feb\u3002"} +{"id": "7002995", "video_name": "90e5be08-89eb-5482-8dac-384a29e65196", "text": "\u53ef\u80fd\u91cd\u5851\u5386\u53f2\u8fdb\u7a0b"} +{"id": "8002467", "video_name": "71456995-1db2-537f-b627-df7266259b91", "text": "\u7a7f\u7740\u9ec4\u8272\u96e8\u8863\u7684\u5c0f\u7537\u5b69\u5411\u53f3\u8d70\u3002"} +{"id": "6003202", "video_name": "addadc68-c4b8-5173-8048-d74181911430", "text": "\u4e09\u53ea\u53ef\u7231\u7684\u5c0f\u732b\u5728\u624b\u4e2d\u3002"} +{"id": "8002061", "video_name": "a852f25e-9470-514a-a8d8-f6b7c2220582", "text": "\u4e00\u540d\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u5728\u67cf\u6797\u514b\u7f57\u4f0a\u8328\u8d1d\u683c\u533a\u7684\u8857\u9053\u4e0a\u9a7e\u8f66\uff0c\u767d\u5929\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "2003177", "video_name": "9b055c24-3448-50f1-a4de-9ea0a2d812c5", "text": "\u4ed6\u4eec\u7684\u5192\u9669\u4e0d\u4ec5\u8ba9\u4ed6\u4eec\u627e\u5230\u4e86\u4f20\u8bf4\u4e2d\u7684\u795e\u6811\uff0c\u8fd8\u7ed3\u4ea4\u4e86\u7f8e\u597d\u7684\u53cb\u8c0a\u3002"} +{"id": "6003320", "video_name": "ae24e06d-30a3-547e-ac70-a087bcab7dbc", "text": "\u5929\u7a7a\u4e2d\u6709\u8bb8\u591a\u65e0\u4eba\u673a\u3002\u4fe1\u606f\uff1a\u51dd\u56fa\u6c7d\u6cb9\u5f39\u3002"} +{"id": "4002038", "video_name": "a9cc8c00-63ef-5123-8779-249fcfa89349", "text": "\u5728\u90a3\u91cc\u7ad9\u7740\u4e00\u4e2a\u6234\u7740\u5916\u79d1\u53e3\u7f69\u7684\u5973\u5b69\u3002"} +{"id": "1003044", "video_name": "37fccd9a-760c-583a-b82a-fef8305b8689", "text": "\u58eb\u5175\u8d70\u5411\u4e24\u5ea7\u5c71\u4e4b\u95f4\u7684\u65e5\u843d\u3002"} +{"id": "7003758", "video_name": "a1cc74fb-98ff-5002-a4bd-4e132972798b", "text": "\u957f\u8eab\u8eaf\u7684\u814a\u80a0\u72ac\u6709\u7fc5\u8180\uff0c\u5728\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "0003678", "video_name": "41882011-5e78-54fc-aeaf-72901e6a5a0c", "text": "\u5766\u514b\u548c\u706b\u70ae\u5728\u6218\u6597\u4e2d\u3002"} +{"id": "3003255", "video_name": "12e5b853-1897-5acc-843c-0eefd013d256", "text": "\u5728\u5df4\u897f\u4e1b\u6797\u4e2d\u7684\u4e00\u4e2a\u96e8\u5929\uff0c\u6709\u4e09\u53ea\u5c0f\u7334\u5b50\u3002\u4e00\u53ea\u5c0f\u7334\u5b50\u5439\u7b1b\u5b50\uff0c\u53e6\u4e00\u53ea\u5c0f\u7334\u5b50\u8e22"} +{"id": "6002780", "video_name": "adc2c449-9224-58a8-95f7-331c64d15fd5", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u53ea\u677e\u9f20\u5728\u4e00\u5ea7\u6728\u6865\u4e0a\u7a7f\u8fc7\u6cb3\u6d41\u3002"} +{"id": "6002151", "video_name": "5b6dcc5e-3b3e-5b10-ac6f-2f381c79c54a", "text": "\u4e00\u4f4d20\u5c81\u7684\u7537\u5b69\u6b63\u5728\u4f7f\u7528\u624b\u673a\uff0c\u624b\u673a\u80cc\u666f\u6709\u84dd\u8272\u548c\u767d\u8272\u5149\u7ebf\u7167\u5728\u4ed6\u7684\u8138\u4e0a\uff0c\u5448\u73b0\u51fa\u84dd\u8272\u8c03\u3002"} +{"id": "0006719", "video_name": "31aa3246-f89d-5e20-a1ed-852c7be2ac1e", "text": "\u7537\u4eba\u548c\u5973\u4eba\u624b\u7275\u624b\u5728\u8857\u4e0a\u8d70\uff0c\u516c\u4ea4\u8f66\u4ece\u4ed6\u4eec\u8eab\u540e\u7ecf\u8fc7\uff0c\u98ce\u666f\u770b\u8d77\u6765\u50cf\u68b5\u9ad8\u7684\u753b\u4f5c\u3002"} +{"id": "4004791", "video_name": "e3e5bd3f-c18d-5d35-89fc-917c0bb3df5a", "text": "\u5de8\u578b\u9cb8\u9c7c\u6401\u6d45\u5728\u52a0\u52d2\u6bd4\u6d77\u3002\u536b\u661f\u89c6\u56fe\u3002"} +{"id": "6002626", "video_name": "04a9e739-405e-50fe-b4cc-f72ab0da0536", "text": "\u4e00\u4f4d\u5973\u5b69\u5750\u7740\uff0c\u624b\u4e2d\u62ff\u7740\u9999\u70df\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u77ed\u53d1\uff0c\u9713\u8679\u4e3b\u9898\u3002\u80cc\u666f\u4e0b\u96e8"} +{"id": "6003086", "video_name": "09c7d2db-f37d-5b50-8ced-608c89207f3e", "text": "\u900f\u660e\u4eba\u4f53\u5185\u7684\u80ba\u90e8\u3002"} +{"id": "7004462", "video_name": "fcab7fda-3bb2-59ce-a4f7-95ca7b33a8ec", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7537\u5b69\u5728\u4e00\u68f5\u53e4\u8001\u7684\u5927\u6a61\u6811\u4e0b\u6253\u5f00\u4e00\u4e2a\u795e\u5947\u7684\u9501\u7740\u7684\u7bb1\u5b50\u3002"} +{"id": "3006263", "video_name": "3524a7c2-b86f-528d-9d27-c6a0d56f60ec", "text": "\u5c0f\u5b69Sam\u8bf4\u4e00\u4e2a\u4e2d\u5e74\u7537\u5b50\u548c\u4e00\u4e2a\u5973\u4eba\u6b63\u5728\u627e\u4ed6\u3002"} +{"id": "3003370", "video_name": "49cf1eae-5157-57c5-bb9f-a83f443ec362", "text": "\u665a\u4e0a10:30\uff1a\u7184\u706f\uff01\u8389\u8389\u8fdb\u5165\u4e86\u5b81\u9759\u7684\u7761\u7720\u3002"} +{"id": "6004381", "video_name": "a99443a1-3098-5cca-a307-a1666d983ece", "text": "\u6545\u5bab\u6587\u5316\u521b\u610f\u4ea7\u54c1\u8bbe\u8ba1"} +{"id": "1005441", "video_name": "63f692c5-d494-510f-aba1-d3cbf71a611a", "text": "\u6811\u4e0a\u6302\u6ee1\u4e86\u7f8e\u5473\u7684\u6c34\u679c\uff0c3D\u5361\u901a\u3002"} +{"id": "0005027", "video_name": "1369ab63-9754-5882-a607-2894335ba92e", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5723\u8bde\u8001\u4eba\u7a7f\u7740\u70ed\u5e26\u8863\u670d\uff0c\u610f\u8bc6\u5230\u4ed6\u5fd8\u8bb0\u5e26\u793c\u7269\u4e86\u3002"} +{"id": "5001606", "video_name": "74962bac-40e2-5861-a5a0-9e2d89b1cace", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u7269\u7ad9\u5728\u4e00\u4e2a\u6709\u9ad8\u7a97\u6237\u7684\u623f\u95f4\u4e2d\u5fc3\u3002\n\nSource sentence: The sun sets over the horizon, painting the sky with shades of orange and pink. \n\n\u592a\u9633\u5728\u5730"} +{"id": "8002263", "video_name": "fb2dfb50-24b8-5857-b302-35b84826141c", "text": "\u4e3a\u513f\u7ae5\u5236\u4f5c\u4e00\u8f86\u5e26\u6709ABCD\u5b57\u6bcd\u8868\u7684\u52a8\u753b\u706b\u8f66\u8df3\u8dc3\u8d70\u5728\u8f68\u9053\u4e0a\u3002"} +{"id": "0004572", "video_name": "0b613214-ff87-58d1-9613-8ce9951321f5", "text": "\u5c4f\u5e55\u4e0a\u9ed1\u767d\u8272\u5199\u7740\u6570\u5b57333\u3002"} +{"id": "4002322", "video_name": "5ec00d58-dfee-55fd-8819-a28ca0285929", "text": "\u4e00\u53ea\u5b5f\u52a0\u62c9\u732b\u73a9\u98de\u76d8\u9ad8\u5c14\u592b\u98de\u789f\u6e38\u620f\u3002"} +{"id": "1006344", "video_name": "7427242c-52ae-586c-807e-e5fbcc5edaba", "text": "\u6254\u7535\u89c6\u4ece\u7a97\u53e3\u3002"} +{"id": "1003918", "video_name": "485c3023-40ae-560b-aec4-8e346f68fc2c", "text": "\u96ea\u8389\u00b7\u585e\u8482\u4e9a\u7684\u8fd1\u666f\uff0c\u80cc\u666f\u662f\u5c71\u3002"} +{"id": "5001495", "video_name": "7afd4dc8-947d-59d0-8b0a-e49b042b84da", "text": "\u5c55\u793a\u5916\u6c47\u5e02\u573a\u4e00\u70b9\u6ce2\u52a8\u7684\u89c6\u9891\u3002"} +{"id": "2003101", "video_name": "d57395e2-e22d-55fc-ac9a-43cce5069f7e", "text": "\u4e00\u68f5\u7c89\u8272\u7684\u6a31\u82b1\u6811\u6cbf\u7740\u4e00\u6761\u5c0f\u6cb3\u3002"} +{"id": "7004455", "video_name": "d76fed52-8657-5f0e-8f7b-6ac87a5affb2", "text": "\u6770\u4f5c\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u4e00\u4f4d\u5e74\u8f7b\u6709\u521b\u610f\u7684\u827a\u672f\u5bb6\u5728\u4ed6\u4eec\u7684\u5de5\u4f5c\u5ba4\u5206\u6790\u573a\u666f\uff0c\u624b\u63e1\u753b\u7b14\uff0c\u9762\u524d\u653e"} +{"id": "3006798", "video_name": "e5ad363b-1281-5867-801c-bb5c52a3eb94", "text": "\u5370\u5ea6\u5bf9\u5df4\u57fa\u65af\u5766\u7684\u56fd\u65d7\u572816:9\u7684\u6bd4\u4f8b\u4e0b\u98d8\u626c\u3002"} +{"id": "1003319", "video_name": "3d23a4e4-b43f-5ea3-b11c-88bb23ff8a00", "text": "\u4e00\u4e2a\u4e8c\u7ef4\u56fe\u50cf\uff0c\u80cc\u666f\u4e3a\u9f99\u76ae\uff0c\u524d\u666f\u4e3a\u5c71\u5730\u666f\u89c2\uff0c\u6709\u4e24\u4e2a\u7a7f\u7740Arcteryx\u5939\u514b\u7684\u4eba\u7ad9\u5728\u90a3\u91cc\u3002"} +{"id": "4004157", "video_name": "4734e05c-1e78-5085-aafc-b61b727bbc94", "text": "\u6b4c\u624b\u8868\u6f14\u65f6\u821e\u53f0\u4e0a\u6709\u79fb\u52a8\u706f\u5149\u3002"} +{"id": "3005048", "video_name": "179d8be2-f78b-5478-a2ec-b3daf5c83def", "text": "\u63a2\u7d22\u6751\u6c11\u4eec\u5728\u5438\u6536\u8fc7\u53bb\u7684\u6559\u8bad\u540e\u6240\u83b7\u5f97\u7684\u65b0\u53d1\u73b0\u7684\u56e2\u7ed3\u611f\u3002"} +{"id": "6003866", "video_name": "f972a1bd-950e-5526-9d5a-c050f6e439f6", "text": "\u4f5b\u9640\u5728\u68ee\u6797\u4e2d\u6559\u6388\u4ed6\u7684\u5b66\u751f\u3002\n\nSource sentence: The panda is a symbol of China. \n\n\u718a\u732b\u662f\u4e2d\u56fd\u7684\u8c61\u5f81\u3002"} +{"id": "2004645", "video_name": "9596cf3b-bf3b-5aaa-ab29-4809865fbdec", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u5728\u529e\u516c\u5ba4\u59a5\u534f\u4e86\u3002"} +{"id": "4003884", "video_name": "aa076483-5201-5c5b-8964-ede78e8a854b", "text": "\u806a\u660e\u7684\u4f01\u4e1a\u5bb6\u5f15\u5bfc\u7406\u60f3\u5ba2\u6237\u5b8c\u6210\u8d2d\u4e70\u65c5\u7a0b\u3002"} +{"id": "6003270", "video_name": "3a2fc41a-f942-58fa-a692-a2101ca85ded", "text": "\u65b0\u7684\u62bd\u8c61\u827a\u672f\u5bb6\u6807\u5fd7\u89c6\u9891\u4ecb\u7ecd\uff0c\u4ee5\u5b57\u6bcdB\u4e3a\u4e3b\u9898\u3002"} +{"id": "6003235", "video_name": "ae2cf077-55bf-5405-84d2-4334a5eb5e80", "text": "\u6cf0\u56fd\u6e44\u516c\u6cb3\u7554\u5c55\u73b0\u5b81\u9759\u7684\u591c\u665a\u3002"} +{"id": "3006716", "video_name": "aa7afcdc-9f45-5425-8c29-1e19627f3fb4", "text": "\u4ece\u5929\u7a7a\u4e2d\u98d8\u843d\u4e0b\u6765\u7684\u9985\u997c\u89c6\u9891"} +{"id": "2006201", "video_name": "2a128198-7026-5550-8cdd-011f6bd35458", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u7ed3\u675f\uff1a\u4e00\u4e2a\u89d2\u8272\u8bd5\u56fe\u53d1\u73b0\u4e00\u4e2a\u4e8b\u4ef6\u7ed3\u675f\u7684\u65f6\u523b\u7684\u6545\u4e8b\u3002"} +{"id": "1006962", "video_name": "7f68e113-5819-5b55-99ff-b5bf8943beb7", "text": "\u5e74\u8f7b\u592b\u5987\u624b\u7275\u624b\u5750\u5728\u6c99\u6ee9\u4e0a\u3002"} +{"id": "2006336", "video_name": "351ee1e2-785a-53e1-8f7e-63536cbd5a64", "text": "\u4e00\u4f4d\u82cf\u4e39\u548c\u4e00\u53ea\u767d\u8272\u7684\u732b\u5728\u5730\u6bef\u4e0a\u3002"} +{"id": "0005826", "video_name": "21d19f83-7b91-560d-93ad-871664aa571b", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u5973\u5b69\u63a7\u5236\u7740\u6c34\uff0c\u6c34\u987a\u7740\u5979\u7684\u53cc\u624b\u5e73\u6ed1\u5730\u6d41\u6dcc\u3002"} +{"id": "8002272", "video_name": "fc6adae0-c08d-5074-a5af-30b0809f0e5a", "text": "\u6709\u4e00\u6b21\u7375\u4eba\u5f9e\u53e2\u6797\u4e2d\u6355\u6349\u4e86\u4e00\u96bb\u5e7c\u7345\u3002\u5275\u5efa4K\u5206\u8fa8\u738716:9\u7684\u52d5\u756b\u3002"} +{"id": "1006094", "video_name": "6fbc8ac4-ad08-5b66-b9bc-5f9807829fee", "text": "\u6211\u662f\u4e00\u4e2a\u5973\u5b69\uff0c\u8d70\u5728\u8def\u4e0a\u770b\u5230\u8fdc\u5904\u7684\u57ce\u5821\uff0c\u5c31\u50cf\u52a8\u753b\u7247\u4e00\u6837\u3002"} +{"id": "7002557", "video_name": "3239e039-5266-5d9e-8ad4-95312371f85b", "text": "\u4eba\u4eec\u5728\u53e4\u8001\u7684\u7a46\u65af\u6797\u5e02\u573a\u91cc\u6f2b\u6b65\uff0c\u903c\u771f\u9ad8\u6e05\u3002"} +{"id": "2004332", "video_name": "1b54b22c-fdc3-5699-b858-aecd519446fa", "text": "\u4e00\u4e2a\u5154\u5b50\u5728\u5929\u7a7a\u98de\u7740\u5403\u80e1\u841d\u535c\u3002"} +{"id": "2005121", "video_name": "52c698df-a536-516a-9235-c6c8d2f4b7ea", "text": "\u4e2d\u56fd\u5c4b\u6a90\u4e0a\u7684\u6c34\u6ef4\u9759\u9759\u5730\u5d4c\u5165\u4e86\u53ef\u7231\u6e29\u67d4\u7684\u4e2d\u56fd\u5c0f\u5973\u5b69\u7684\u773c\u4e2d\u3002"} +{"id": "0004534", "video_name": "0ac532d8-c4c3-5222-aae7-44442b32ea9d", "text": "Powergirl\u89d2\u8272\uff0c\u7ea2\u8272\u6bd4\u57fa\u5c3c\uff0c\u9ed1\u8272\u8fd0\u52a8\u978b\uff0c\u5e26\u540a\u889c\u5e26\u7684\u767d\u8272\u957f\u7b52\u889c\uff0c\u767d\u8272\u80cc\u666f\uff0c\u4eba\u7269\u8d44\u6599\u9875"} +{"id": "7004662", "video_name": "62358e21-2dbd-58e3-8fc7-08fe2612e464", "text": "\u6210\u5e74\u79c3\u9e70\u7ff1\u7fd4\u5929\u9645\u7684\u5168\u666f\u89c6\u56fe\uff0c\u767d\u8272\u7684\u5934\u548c\u5c3e\u7fbd\u4e0e\u6df1\u68d5\u8272\u7684\u8eab\u4f53\u5f62\u6210\u9c9c\u660e\u7684\u5bf9\u6bd4"} +{"id": "1005367", "video_name": "62aed656-83f9-5027-9fde-37b2612b8f95", "text": "\u8349\u8393\u548c\u5c0f\u9ea6\u7684\u6c34\u6ef4\uff0c\u9ed1\u8272\u80cc\u666f\u4e0b\u3002"} +{"id": "4002926", "video_name": "33729bc6-1c61-50ca-8180-a61ce63e2250", "text": "\u5c4f\u5e55\u5de6\u4fa7\u7684\u8f66\u8f86\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "7002709", "video_name": "d52894b4-426a-51f8-9ed7-dbd7a813b71b", "text": "\u4e24\u4e2a\u7a7f\u7740\u4f18\u96c5\u773c\u955c\u548c\u9ec4\u8272\u670d\u88c5\u7684\u7f8e\u4e3d\u5973\u6027\uff0c\u57281960\u5e74\u7684\u7ebd\u7ea6\u5e02\u6f2b\u6b65\uff0c\u662f\u4e00\u90e8\u6770\u4f5c\u7535\u5f71\u6444\u5f71\u8d85\u73b0"} +{"id": "7004816", "video_name": "b724c87e-26f1-5656-94bf-01b3438bf18f", "text": "\u5c0f\u4e11\u9c7c\uff0c\u5728\u73ca\u745a\u7901\u4e2d\u6e38\u8361\uff0c\u4f34\u968f\u7740\u7f24\u7eb7\u7684\u73ca\u745a\u3002\u591c\u5e55\u964d\u4e34\u65f6\uff0c\u5b83\u627e\u5230"} +{"id": "2003515", "video_name": "c0e4b467-782e-558e-8aad-d08036e057c1", "text": "\u4e00\u5ea7\u5e0c\u814a\u96d5\u5851\u7684\u5973\u5b69\u6b63\u5728\u6708\u7403\u4e0a\u884c\u8d70\uff0c\u7535\u5f71\u822c\u7684\uff0c\u65e0\u4eba\u673a\u89c6\u89d2\u3002"} +{"id": "1004336", "video_name": "5011c5e1-799a-5ca9-9a51-9b8b5d4adc13", "text": "\u4e00\u4e2a\u7531\u77f3\u5934\u5236\u6210\u7684\u5de8\u4eba\u5411\u4e00\u5ea7\u57ce\u5e02\u8d70\u8fd1\u3002"} +{"id": "1004314", "video_name": "4fbc0f49-edea-5b90-8350-7c22eec143f8", "text": "\u4e00\u4e2a\u5c0f\u54c8\u8428\u514b\u7537\u5b69\u7ad9\u5728\u54c8\u8428\u514b\u5305\u9644\u8fd1\uff0c\u671b\u5411\u8fdc\u5904\u7684\u5c71\u5ce6\u3002"} +{"id": "8001953", "video_name": "65262d59-682c-55ff-a66f-3307429096b1", "text": "\u521b\u9020\u5df4\u897f\u4f5c\u4e3a\u4e00\u4e2a\u4eba\uff0c\u4ed6\u5728\u8c08\u8bba\u81ea\u5df1\u3002"} +{"id": "7004011", "video_name": "7f22a982-831c-599e-9333-0a6570c5ba37", "text": "\u8db3\u7403\u5c04\u95e8\u5386\u53f2\u4e0a\u7684\u91cd\u8981\u65f6\u523b\u3002"} +{"id": "1004718", "video_name": "578af0ec-f900-5498-aeac-bcd2ff741a84", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u4e0b\u5348\uff0c\u751f\u6d3b\u51fa\u73b0\u4e86\u610f\u5916\u8f6c\u6298\u3002\u7531\u4e8e\u7d27\u6025\u60c5\u51b5\uff0c\u838e\u62c9\u4e0d\u5f97\u4e0d\u8d76\u5f80\u533b\u9662\u3002\u533b"} +{"id": "3005523", "video_name": "c0041a29-4936-5dc5-bf42-870547639f9c", "text": "\u4e24\u652f\u7ea4\u7ec6\u7684\u7bad\u5934\uff0c\u6574\u4f53\u98ce\u683c\u4fdd\u6301\u7740\u6781\u7b80\u4e3b\u4e49\u3001\u73b0\u4ee3\u5316\u7684\u98ce\u683c\uff0c\u5f3a\u8c03\u4fe1\u606f\u7684\u7b80\u6d01\u548c\u6e05\u6670\u3002\u989c\u8272"} +{"id": "1004667", "video_name": "56c27577-4470-511a-bfa7-27cd427ca507", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u53bb\u67d0\u4e2a\u5730\u65b9\u7684\u89c6\u9891"} +{"id": "4004047", "video_name": "586eec5c-1b35-5d11-8a77-086aa339d01d", "text": "\u5c06\u70df\u96fe\u5411\u591a\u4e2a\u65b9\u5411\u79fb\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004436", "video_name": "6fc75375-ca6c-5820-b1d7-559e94c360c2", "text": "\u5728\u516c\u56ed\u91cc\u6709\u4e24\u4e2a\u8001\u4eba\u5728\u4e0b\u68cb\uff0c\u65c1\u8fb9\u7ad9\u7740\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u8bf4\u8bdd\u3002"} +{"id": "8001798", "video_name": "47754d2b-7184-5d5b-88e7-fcfdfee4eb20", "text": "\u52a8\u6f2b\u56fe\u7247\uff1a\u4e00\u4e2a\u9ed1\u53d1\u3001\u84dd\u773c\u775b\u3001\u8eab\u9ad8180\u5398\u7c73\u3001\u7a7f\u7740\u9ed1\u5939\u514b\u3001\u7070\u8272\u80cc\u5fc3\u3001\u6df1\u7070\u8272\u88e4\u5b50\u3001"} +{"id": "8002661", "video_name": "25dc3b0b-f74a-5e03-9022-ab9b97c02723", "text": "\u4e00\u4e2a\u7537\u5b69\u7684\u6f2b\u753b\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u70b9\u71c3\u4e00\u70b9\u706b\u7130\uff0c\u90a3\u662f\u4ed6\u5185\u5fc3\u7684\u70ed\u60c5\u3002"} +{"id": "4004559", "video_name": "a4e7b1d2-1979-5957-b306-56ea385ea288", "text": "\u7a81\u7136\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u52a8\u753b\u5927\u7329\u7329\u51fa\u73b0\u4e86\u3002"} +{"id": "7003470", "video_name": "38b173ab-7a5a-506e-ab00-9f693195a342", "text": "forward created a dreamlike scene.\nTranslation: \u5fae\u5fae\u4e00\u7b11\u3001\u98d8\u9038\u7684\u53d1\u4e1d\u548c\u6444\u50cf\u673a\u7f13\u7f13\u63a8\u8fdb\uff0c\u8425\u9020\u51fa\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u573a\u666f"} +{"id": "1005075", "video_name": "5d9f6482-fc1e-5cad-b455-241a83fb1627", "text": "\u8f6f\u8f6f\u7684\u6708\u5149\u6d12\u8fdb\u623f\u95f4\uff0c\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5c0f\u5b69\u8eba\u5728\u5e8a\u4e0a\uff0c\u8feb\u4e0d\u53ca\u5f85\u5730\u7b49\u5f85\u7740\u5988"} +{"id": "3005084", "video_name": "322a263c-9515-58d2-bdfd-2846be0d4fa3", "text": "\u5728\u8302\u5bc6\u7684\u68ee\u6797\u6df1\u5904\uff0c\u56db\u4e2a\u670b\u53cb\u5192\u9669\u524d\u884c\u3002"} +{"id": "6002487", "video_name": "89146881-2c42-5366-91a8-87a0c9f8c052", "text": "\u5c06\u6444\u50cf\u673a\u805a\u7126\u5728Lumos\u8eab\u4e0a\uff0c\u4ed6\u5728\u68ee\u6797\u4e2d\u63a2\u7d22\uff0c\u968f\u540e\u8ddf\u8e2a\u524d\u8fdb\uff0cLumos\u5236\u9020\u4e86\u5c0f\u5c0f\u7684\u5149"} +{"id": "3003209", "video_name": "1b3e2f55-10e3-5e72-806a-4d0190988716", "text": "\u4e00\u5bb6\u4e94\u53e3\u5728\u4e61\u6751\u91ce\u9910\u3002"} +{"id": "0003123", "video_name": "37713256-5432-5bd7-b1a0-8260fc3ee5f5", "text": "\u6fc0\u52b1\u8bb2\u5e08\u7ed916:9\u7684\u4eba\u63d0\u4f9b\u6fc0\u52b1\u3002"} +{"id": "4004390", "video_name": "3cae9f1d-d152-575b-a918-7b73a0038897", "text": "\u76ae\u5361\u4e18\u6b63\u5728\u548c\u8d85\u4eba\u4e00\u8d77\u5403\u62ab\u8428\u3002"} +{"id": "0003659", "video_name": "4132f8af-e456-54ca-910f-d920781bd942", "text": "\u4e00\u53ea\u5154\u5b50\u5728\u6559\u5ba4\u8df3\u821e\u3002"} +{"id": "2004757", "video_name": "ce310e6f-5f4f-5ae9-9b0e-c94a76c2ccf8", "text": "\u901a\u8fc73D\u68ee\u6797\u4e2d\u98de\u7fd4\u7684\u8774\u8776\uff0c\u4e0eSammy\u4e00\u8d77\u5bfb\u627e\u82b1\u871c\u3002"} +{"id": "7003244", "video_name": "93b1433c-23da-5a71-aeb5-ff6949296ad4", "text": "\u5728\u591c\u665a\u7684\u8352\u51c9\u8857\u9053\u4e0a\u9a7e\u8f66\u3002"} +{"id": "3004596", "video_name": "ec1b5f6c-43a1-5305-84d2-a8715546a4c8", "text": "1638\u5e74\uff0c\u8036\u7a23\u4f1a\u58eb\u3001\u591a\u8bed\u8a00\u3001\u535a\u5b66\u3001\u4e1c\u65b9\u5b66\u8005\u3001\u767e\u79d1\u5168\u4e66\u5f0f\u548c\u79d1\u5b66\u7cbe\u795e\u7684Athanasius Kircher\u5efa\u8bae\u884c\u661f\u662f\u201c"} +{"id": "1004390", "video_name": "512785c4-f138-56d3-ad75-0200c7263ad9", "text": "\u970d\u6bd4\u7279\u6d1e\u7a74\u7684\u5165\u53e3\u3002\u6d1e\u7a74\u95e8\u662f\u6d45\u68d5\u8272\u7684\u3002\u95e8\u5468\u56f4\u6709\u7eff\u8272\u690d\u7269\u3001\u85e4\u8513\u3001\u82b1\u6735\u548c"} +{"id": "3006101", "video_name": "e94992f5-6ccd-5b8b-bda8-47bfa3598c1d", "text": "\u4e00\u7fa4\u5927\u6050\u9f99\u88ab\u4ece\u592a\u7a7a\u649e\u51fb\u800c\u6765\u7684\u9668\u77f3\u6467\u6bc1\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "6003654", "video_name": "fec0e342-6bae-5f75-b83c-3b5bb80c0812", "text": "\u5728\u6a21\u62df\u4eba\u751f2\u4e2d\uff0c\u8d1d\u62c9\u00b7\u6b4c\u65af\u7279\u7684\u5f62\u8c61\u542f\u53d1\u4e86\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u8fde\u8863\u88d9\u3001\u68b3\u774050\u5e74\u4ee3\u9ed1\u8272\u53d1"} +{"id": "3006761", "video_name": "534df97d-8b9b-5522-af3a-2014499b469a", "text": "\u795e\u79d8\u52a8\u7269\u5927\u6df7\u6218\uff0c\u6050\u6016\uff0c\u84b8\u6c7d\u6ce2\uff0c\u53d1\u73b0\u955c\u5934"} +{"id": "4002702", "video_name": "12820a2e-9ac5-5dd3-9797-f693e04d5376", "text": "\u9ad8\u7ea7\u98de\u8247\u98de\u8d8a\u4e00\u5ea7\u5e7f\u9614\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u5177\u6709\u54e5\u7279\u6c1b\u56f4\u548c\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u8bbe\u8ba1\uff0c\u5168\u606f\u5e7f"} +{"id": "3003150", "video_name": "a5fa5aae-7a37-501d-870d-a1db3f47222e", "text": "\u6ce2\u5170\u5973\u5b69\u7a7f\u7740\u7ea2\u8272\u670d\u88c5\u5728\u65f6\u88c5\u79c0\u4e0a\u8d70\u79c0\u3002"} +{"id": "7003925", "video_name": "8cdd4fc3-8c3a-5899-a663-92ad7f46d2b0", "text": "Source sentence: Li3YCl6 \u7535\u89e3\u8d28\uff0c\u7535\u6c60\u57fa\u7840\u90e8\u4ef6\uff0c\u7535\u6c60\u7684\u7ec4\u6210\uff0cLi3YCl6 \u7535\u89e3\u8d28\u3002"} +{"id": "4002066", "video_name": "72c95fb2-9ec1-5a22-8bfe-40977c6da5c9", "text": "\u6df1\u84dd\u8272\u7684\u5927\u94bb\u77f3\uff0c\u57286\u79d2\u949f\u5185\u955c\u5934\u62c9\u8fdc\u3002"} +{"id": "8001086", "video_name": "e2855012-b3d7-5ba2-882b-07cb2479e2e6", "text": "\u672a\u6765\u4e16\u754c\uff0c\u5730\u4e0b\u57ce\u5e02\uff0c\u5730\u9707\uff0c\u4eba\u4eec\u56db\u5904\u9003\u6563\u3002"} +{"id": "1006632", "video_name": "79972e9a-ce23-5b81-8662-16bd75ba6c27", "text": "\u4e00\u4e2a\u5145\u6ee1\u9c9c\u82b1\u3001\u6811\u6728\u548c\u8774\u8776\u7684\u751f\u673a\u52c3\u52c3\u7684\u540e\u9662\u3002\u53ef\u4ee5\u770b\u5230\u7cfb\u7740\u9a6c\u5c3e\u8fab\u7684\u5c0f\u5973\u5b69"} +{"id": "7003878", "video_name": "840d1bbb-bfee-58fd-a78e-59ed516ac9de", "text": "\u8fd0\u52a8\u7684\u6bdb\u53d1\u3001\u76ae\u6bdb\u3001\u4e91\u6735\u3001\u5fae\u7c92\u3001\u8349\u3002"} +{"id": "3004153", "video_name": "d8bfb14a-f5e9-53b4-aed5-fc7908dd0990", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5730\u4e0b\u5ba4\u5c16\u53eb\uff0c\u4ece\u4ed6\u7684\u773c\u775b\u91cc\u6d41\u51fa\u7ea2\u8272\u6db2\u4f53\u3002"} +{"id": "8003650", "video_name": "ad32f867-f4a2-5dae-8623-217b9b81db4e", "text": "\u96ea\u82b1\u65cb\u8f6c\uff0c\u7ec4\u6210\u4e86\u201c\u5723\u8bde\u8282\u201d\u8fd9\u4e2a\u5355\u8bcd\u3002"} +{"id": "1003917", "video_name": "4857ff0f-d5fe-5f7c-a07e-f7c8d1afeea8", "text": "\u521b\u9020\u4e00\u4e2a\u8d34\u7eb8\uff0c\u4ee5\u5496\u5561\u676f\u4e3a\u4e3b\u9898\uff0c\u52a0\u4e0a\u7fc5\u8180\uff0c\u8425\u9020\u51fa\u5947\u5e7b\u800c\u5145\u6ee1\u6d3b\u529b\u7684\u611f\u89c9\u3002"} +{"id": "3004946", "video_name": "f749a10f-82a2-5fe7-8496-4f385197793c", "text": "Source sentence: \u54c8\u8389\u00b7\u594e\u56e0\u548c\u5c0f\u4e11\u5728\u4e07\u5723\u8282\u6d3e\u5bf9\u4e0a\n\nTranslated sentence: \u54c8\u8389\u00b7\u594e\u56e0\u548c\u5c0f\u4e11\u5728\u4e07\u5723\u8282"} +{"id": "2005912", "video_name": "7add40d2-4a7d-590d-a88a-0c43dfbf668d", "text": "\u5728\u955c\u5b50\u91cc\uff0c\u827e\u4e3d\u770b\u5230\u4e86\u81ea\u5df1\u7684\u5012\u5f71\uff0c\u4f46\u662f\u5b83\u662f\u626d\u66f2\u548c\u53ef\u6015\u7684\u7248\u672c\u3002\u5979\u8bd5\u56fe\u79bb\u5f00\uff0c\u4f46\u53d1\u73b0\u81ea"} +{"id": "3005104", "video_name": "66a4c3c8-4934-5e7e-8527-1de471d71d25", "text": "\u4e2d\u56fd\u9f99\uff0c\u51b0\u96ea\u4e16\u754c\uff0c\u7834\u788e\u5929\u7a7a\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5001231", "video_name": "3473d3d8-b2a6-5028-bbd6-513c2c815a75", "text": "\u591c\u665a\u7684\u6d77\u6d0b\u8ff7\u4eba\u800c\u795e\u5947\uff0c\u5145\u6ee1\u795e\u79d8\u611f\uff0c\u8d85\u9ad8\u6e058K\uff0c\u9ad8\u6e05AR 9:16\u3002"} +{"id": "1004566", "video_name": "54d0a9c6-e63f-54a6-a450-15909191e227", "text": "\u8ff7\u5bab\u602a\u517d\u6b63\u5728\u821e\u6c60\u4e0a\u8df3\u821e\u3002"} +{"id": "6004450", "video_name": "723399db-68c7-50ed-be9c-e59704c69f85", "text": "\u5915\u9633\u897f\u4e0b\uff0c\u57ce\u5e02\u7684\u5929\u7a7a\u53d8\u5f97\u795e\u5947\u7ec6\u81f4\uff0c\u4ee54K\u9ad8\u6e05\u5448\u73b0\u3002"} +{"id": "0005855", "video_name": "225ff6b4-0d28-5080-a41b-0946d2c1bbf3", "text": "\u4eba\u4eec\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u6d41\u52a8\u7684\u6c99\u6f20\u3002"} +{"id": "8003860", "video_name": "39647664-fcf2-5017-90b3-71f14f9ff7e6", "text": "\u5c0f\u7070\u72fc\u88ab\u653e\u8fdb\u5a74\u513f\u8f66\u91cc\u3002"} +{"id": "1005325", "video_name": "61cf2245-502b-516f-9dfb-227b7824d686", "text": "\u5f53\u65f6\u673a\u7ec8\u4e8e\u5230\u6765\uff0c\u963f\u739b\u62c9\u5973\u738b\u79bb\u5f00\u4e86\u8fd9\u4e2a\u4e16\u754c\uff0c\u6574\u4e2a\u738b\u56fd\u90fd\u54c0\u60bc\u5979\u7684\u79bb\u53bb\u3002\u4f46\u5979\u7684"} +{"id": "6002285", "video_name": "e893c749-7293-5f7b-927e-0626064db07b", "text": "\u4e00\u4e2a\u7a7f\u7740\u88d9\u5b50\u5411\u6211\u8dd1\u6765\u7684\u5973\u5b69\uff0c\u827a\u672f\u548c\u8bed\u8a00\uff0c\u91ce\u5916\u5199\u751f\uff0c\u7ed8\u672c\u63d2\u56fe\uff0c\u6545\u4e8b\u4e66\u63d2\u56fe\u3002"} +{"id": "7004311", "video_name": "af544543-8add-5c39-80cd-ba36638c8cc8", "text": "\u4e09\u4e2a\u7a7f\u7740\u7ecf\u5178\u897f\u88c5\u7684\u4eba\u5750\u5728\u4e00\u4e2a\u7a7a\u8361\u8361\u7684\u5c0f\u7a7a\u95f4\u91cc\u7684\u6298\u53e0\u6905\u4e0a\uff0c\u5f62\u6210\u4e00\u4e2a\u5706\u5708\u3002\u663e\u793a\u4e86Playstation "} +{"id": "2005381", "video_name": "7c41fab0-189e-55ab-8cb7-5111eee2b223", "text": "\u7531\u9f13\u5957\u5236\u6210\u7684\u6218\u6597\u88c5\u7532\u3002"} +{"id": "2007917", "video_name": "c0d6226d-788e-5bac-aa36-62ea0e87ee78", "text": "\u8001\u5e74\u4eba\u559d\u7ea2\u9152\u4f1a\u9009\u62e9\u8d85\u5927\u676f\u3002"} +{"id": "8001909", "video_name": "d95ac1af-1c68-5caf-a27f-ed3b4c457e73", "text": "\u5b66\u751f\u4eec\u5f00\u59cb\u7ad9\u8d77\u6765\uff0c\u53d1\u51fa\u5185\u5728\u7684\u5149\u8292\uff0c\u4e0e\u673a\u5668\u4eba\u8fdb\u884c\u6297\u4e89\u3002"} +{"id": "8003173", "video_name": "c7376b40-befd-5d77-b1ec-f0b13bbdd8c0", "text": "\u4e00\u4e2a\u6709\u5e7d\u9ed8\u611f\u7684\u611f\u8c22\u6a21\u677f\uff0c\u5145\u6ee1\u4e86\u5e7d\u9ed8\u611f\u3002"} +{"id": "2007580", "video_name": "9c312fa2-ab8e-5976-abae-45575e9eabb5", "text": "\u4e00\u4e2a\u610f\u5fd7\u575a\u5b9a\u7684\u5c11\u5e74\u7ea6\u7ff0\uff0c\u8e0f\u7740\u81ea\u884c\u8f66\u6cbf\u7740\u6d77\u5cb8\u516c\u8def\u9a91\u884c\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u5ca9\u77f3\u6d77"} +{"id": "2004131", "video_name": "1b0a9f61-fa81-53ba-a904-8b2eb204027f", "text": "\u7a7f\u7740\u4f0a\u5229\u4e9a\u00b7\u5e93\u592b\u5e0c\u8bfa\u592b\u548c\u963f\u8389\u5a1c\u00b7\u827e\u7eb3\u7c73\u98ce\u683c\u7684\u9ed1\u8272T\u6064\u7684\u53ef\u7231\u5973\u5b69"} +{"id": "3006819", "video_name": "a349b44d-3770-50c7-a1e2-99c5ec5ee0a6", "text": "\u4e00\u4f4d21\u5c81\u7684\u521b\u4e1a\u8005\u6b63\u5728\u7814\u7a76\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "6004407", "video_name": "2371387b-06d2-5774-8717-19a26f69fd0b", "text": "\u5973\u4eba\u5728\u516c\u5bd3\u5173\u95ed\u95e8\u53e3\u3002"} +{"id": "1003174", "video_name": "3a642c14-216c-51b5-a328-43e28538587c", "text": "Pac-Man\u5728\u6e38\u620f\u5385\u5185\u5403\u6389\u4e00\u6392\u829d\u58eb\u6c49\u5821\u3002"} +{"id": "2003187", "video_name": "5bf9e54f-ccbb-5535-bdcb-4f61f62fc1af", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u571f\u8033\u5176\u603b\u7edf\u7a46\u65af\u5854\u6cd5\u00b7\u51ef\u672b\u5c14\u00b7\u963f\u5854\u56fe\u5c14\u514b\u5728\u4e00\u5f20\u8c6a\u534e\u7684\u767d\u8272\u9910\u684c"} +{"id": "2005548", "video_name": "304b8cd3-4ff2-52b3-971f-a629a489e4d8", "text": "\u4e00\u4e2a\u8df3\u8dc3\u7684\u7c97\u4f53\u7eff\u8272\u95ee\u53f7\u5728\u684c\u5b50\u4e0a\u7684\u4e00\u4e2a\u6253\u5f00\u7684\u65e5\u5386\u4e0a\u3002"} +{"id": "3005273", "video_name": "120098c1-7d2b-55cc-9fcf-6d0eefb1f1c0", "text": "\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\u7684\u5370\u5ea6\u4eba\u5728\u6cb3\u5cb8\u4e0a\u884c\u8d70\u3002"} +{"id": "1003156", "video_name": "3a29dfcf-b8b1-564c-946b-4fd150dae524", "text": "\u4e00\u4e2a\u7a7f\u7740\u91d1\u8272\u76d4\u7532\u7684\u5927\u519b\u961f\u8d70\u5728\u5723\u8bde\u6811\u65c1\u8fb9\u3002"} +{"id": "3005795", "video_name": "27928d2e-4734-566b-b779-b90ee2ba1270", "text": "\u516c\u56ed\u91cc\u6ee1\u662f\u96ea\u7684\u94a2\u7434\u6f14\u594f\u8005"} +{"id": "0006129", "video_name": "270e8f00-509f-5a9a-9547-1262ee964fd8", "text": "\u72fc\u722a\u88ab\u56f0\u5728\u9677\u9631\u91cc\u3002"} +{"id": "1003615", "video_name": "42991867-3785-5a35-aca4-8b01836c21e6", "text": "\u4e16\u754c\u7684\u5e7b\u60f3\u666f\u89c2\uff0c\u5927\u5c0f1080:1920\u3002"} +{"id": "8001352", "video_name": "0adf27b5-4f4a-540f-bc55-649a06d24b06", "text": "\u4e00\u652f\u95f4\u8c0d\u5c0f\u7ec4\u6b63\u5728\u9ed1\u5ba2\u653b\u51fb\u4e00\u53f0\u7535\u8111\u3002"} +{"id": "3005972", "video_name": "11240763-c07a-51fa-a7a8-5e6a2063da6c", "text": "\u7740\u7ea2\u8272\u4e1d\u5e26\u7684\u767d\u8272\u793c\u76d2\u6253\u5f00\u4e86\u3002"} +{"id": "4004325", "video_name": "31ec5acf-ae95-5275-9ed2-2ffc1cf00837", "text": "\u4e00\u53ea\u6d63\u718a\u6446\u5f04\u7740\u79d1\u6280\u88c5\u7f6e\u3002"} +{"id": "2005844", "video_name": "ef7ab6df-f28d-5bce-9a3e-74301c531479", "text": "\u4e00\u53ea\u7f8e\u6d32\u8c79\u88ab\u9501\u5728\u534a\u5706\u5f62\u7684\u77f3\u5934\u76d1\u72f1\u91cc\u3002"} +{"id": "4002853", "video_name": "164e89d4-6922-5f81-8552-06f9c402d657", "text": "\u5973\u5b69\u8eab\u5904\u4e00\u7247\u8272\u5f69\u7eb7\u5448\u548c\u795e\u5947\u706f\u5149\u7f2d\u7ed5\u7684\u6f29\u6da1\u4e2d\u5fc3\u3002\u5979\u662f\u80fd\u91cf\u6f29\u6da1\u7684\u4e2d\u5fc3\u3002"} +{"id": "0004405", "video_name": "0857fbb5-29d2-5469-8a9b-939e410b6cfb", "text": "\u7687\u5e1d\u989d\u5934\u4e0a\u6709\u4e00\u9053\u6218\u6597\u4f24\u75a4\uff0c\u53f3\u8fb9\u6709\u4f4d\u753b\u5bb6\u5c06\u4e3a\u4ed6\u4f5c\u753b\uff0c16:9\uff0c\u9644\u4ef61\u3002"} +{"id": "2004061", "video_name": "2942c65d-43d4-5b5e-8fd9-0d517897518d", "text": "\u5929\u8c61\u52a8\u753b\u63ed\u793a - AI\u5728\u591c\u7a7a\u4e2d\u63ed\u793a\u4e86\u5929\u8c61\u52a8\u753b\u3002"} +{"id": "2007510", "video_name": "f3883d87-5474-5d41-b0eb-90178de688ce", "text": "\u8bf7\u968f\u610f\u4f7f\u7528\u8fd9\u4e9b\u63d0\u793a\u6765\u6269\u5c55\u548c\u5ef6\u7eed\u82ac\u6069\u548c\u4ed6\u7684\u6c34\u4e0b\u5192\u9669\u6545\u4e8b\uff01"} +{"id": "0006793", "video_name": "33360603-9565-5b0f-be46-e26e329496b4", "text": "4k\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\u548c\u6240\u6709\u7ec6\u8282\uff0c8k\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u8fea\u65af\u5c3c\u98ce\u683c\uff0c\u5361\u901a\u98ce"} +{"id": "7002722", "video_name": "bcfc4efa-b374-5db0-b973-e182cef20b73", "text": "17\u4e16\u7eaa\u98ce\u683c\uff0c\u8fea\u58eb\u5c3c\uff0c3D\u52a8\u753b\uff0c\u4e00\u4e2a\u6765\u81ea\u8d35\u65cf\u5bb6\u5ead\u7684\u5c0f\u5973\u5b69\u3002\u5979\u6709\u4e00\u5934\u5377\u66f2\u7684\u706b\u7ea2\u8272"} +{"id": "7002459", "video_name": "6a46228d-8883-5ab2-abe3-6892e1978cd7", "text": "8\u67083\u65e5\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006305", "video_name": "fed4d7b0-ab63-5f9a-ad46-263436648b23", "text": "\u8389\u8389\u6234\u7740\u80cc\u5305\u548c\u5236\u670d\uff0c\u770b\u7740\u8a79\u59c6\u65af\u6234\u7740\u80cc\u5305\u548c\u5236\u670d\u8d70\u5f00\u3002"} +{"id": "4002559", "video_name": "27e85e29-db72-5c25-ab57-c0df00326899", "text": "\u53d7\u56f0\u4e8e\u53e4\u65af\u5854\u592b\u00b7\u514b\u6797\u59c6\u7279\u7684\u5929\u5802\u3002"} +{"id": "1005188", "video_name": "5f66e02d-dcd6-5a21-a355-6a330f042092", "text": "\u5c0f\u68d5\u8272\u8857\u4e0a\u7684\u5c0f\u72d7\u8eba\u5728\u8857\u4e0a\u6b7b\u4e86\u3002"} +{"id": "4003104", "video_name": "cbfb669a-03e3-581c-9da9-f46e18ace3b5", "text": "\u5e03\u9c81\u5fb7\u60f3\u5f00\u8f66\u3002"} +{"id": "4004873", "video_name": "ebd1b1b6-5d74-5686-9386-540fdac4813f", "text": "\u7e3d\u662f\u5feb\u6a02\u7684\u7da0\u8272\u72d7\u5728\u5954\u8dd1\u3002"} +{"id": "3006160", "video_name": "2a3a15c7-151e-52bd-88b3-f8aea6d7a527", "text": "\u5f53\u592a\u9633\u5f00\u59cb\u843d\u5c71\u65f6\uff0c\u5b69\u5b50\u4eec\u56de\u5230\u4e86\u795e\u5947\u7684\u6e38\u4e50\u573a\uff0c\u5fc3\u4e2d\u5145\u6ee1\u4e86\u4ed6\u4eec\u4e0d\u53ef\u601d\u8bae\u65c5\u7a0b\u7684\u6545\u4e8b\u3002"} +{"id": "2006578", "video_name": "01f25bd2-eb52-52d6-b2ab-aa8408a3cafc", "text": "\u4e00\u8258\u8001\u65e7\u7834\u8d25\u7684\u6728\u8239\u5728\u591c\u665a\u6d77\u4e0a\u822a\u884c\uff0c\u6b63\u9762\u89c6\u89d2\uff0c\u660f\u6697\u7684\u5149\u7ebf\u3002"} +{"id": "6002957", "video_name": "fc7e6c19-e629-5e46-a3bc-f682be24b3cd", "text": "\u68ee\u6797\u91cc\u7684\u72fc\u5403\u7740\u5b83\u4eec\u7684\u730e\u7269\uff0c\u975e\u5e38\u903c\u771f\u3002 \n\nSource sentence: The deadline for the project is next Monday, so we need to work overtime this weekend."} +{"id": "3006749", "video_name": "50ed059c-16d5-5fae-929f-c03f26c3fb4b", "text": "\u4ee5\u7f57\u4f0a\u00b7\u5229\u5e0c\u6ed5\u65af\u5766\u98ce\u683c\u5448\u73b0\u7684\u53e4\u7f57\u9a6c\u6597\u517d\u573a"} +{"id": "4004871", "video_name": "b46222a5-1c08-5fc5-b0f0-79d587174dc2", "text": "\u53f6\u866b\u5728\u53f6\u5b50\u4e0a\u884c\u8d70\u3002"} +{"id": "0005430", "video_name": "1ab08331-c5fa-5d0a-a008-4757005c97e7", "text": "\u4e00\u6bb51920\u5e74\u7684\u8d858\u5f55\u50cf\uff0c\u5728\u591c\u665a\u7684\u8def\u8fb9\uff0c\u9760\u8fd1\u6811\u6797\uff0c\u62cd\u6444\u5230\u4e24\u4e2a\u767d\u8272\u7684\u53d1\u5149\u9b3c\u65b0\u5a18\uff0c"} +{"id": "4002149", "video_name": "86d147e1-77ed-5625-b7b3-6ddb6b6dccb4", "text": "\u5947\u602a\u7684\u68ee\u6797\u666f\u89c2\uff0c\u6709\u96fe\u7684\u6e56\u6cca\uff0c\u7c7b\u4f3c\u6bc1\u706d\u7535\u5f71\u7684\u98ce\u683c\uff0c\u6d1b\u592b\u514b\u62c9\u592b\u7279\u5f0f\u7684"} +{"id": "4002888", "video_name": "6206a11f-d8bf-592e-8816-fe26c8c85087", "text": "\u9ad8\u79d1\u6280 \u4fe1\u606f\uff1a\u6570\u6280 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2006946", "video_name": "ed4d7dc0-30b4-5bac-90de-bf367e0090e8", "text": "\u4e00\u53ea\u732b\u5728\u5e8a\u4e0a\u75b2\u5026\u5730\u7761\u7740\uff0c\u58c1\u7089\u91cc\u71c3\u7740\u706b\uff0c\u975e\u5e38\u5e73\u9759\u5b89\u9759\u3002"} +{"id": "1003824", "video_name": "46a5d365-61b3-5e45-a2f9-978a916e3555", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u4e4c\u6258\u90a6\u57ce\u5e02\u4ece\u706b\u7130\u4e2d\u5d1b\u8d77\uff0c\u5411\u7740\u767d\u663c\u7684\u5929\u7a7a\u4e0a\u5347\u3002"} +{"id": "2003453", "video_name": "bb59f80c-2936-559e-9c92-af11d8968f32", "text": "\u4e00\u4e2a\u5c55\u73b0\u519c\u573a\u7684\u573a\u666f\uff0c\u5b69\u5b50\u4eec\u60ca\u8bb6\u5730\u7ad9\u5728\u5b83\u524d\u9762\u3002"} +{"id": "1003664", "video_name": "436f80f2-b7d2-5ea1-93ee-d1b35d270da6", "text": "\u7236\u4eb2\u51c6\u5907\u4e86\u4e00\u4e2a\u5927\u91ce\u9910\u7bee\u5b50\uff0c\u6bcd\u4eb2\u4e3a\u5b69\u5b50\u4eec\u505a\u4e09\u660e\u6cbb\u3002\u5b69\u5b50\u4eec\u9ad8\u5174\u5730\u51c6\u5907\u7740\u5916\u51fa\u6e38"} +{"id": "8001558", "video_name": "df9cb555-d2c9-5501-a8d4-e46726e9fdf2", "text": "\u53e4\u9c81\u00b7\u7eb3\u7eb3\u514b\u00b7\u5fb7\u592b\u5409\u548c\u4ed6\u7684\u670b\u53cb\u9a6c\u5c14\u8fbe\u7eb3\u4ee5\u53ca\u9a6c\u5c14\u8fbe\u7eb3\u7684\u6bcd\u4eb2\u5750\u5728\u68ee"} +{"id": "1003408", "video_name": "3ee78c62-a740-5235-a23b-43240cdbbd05", "text": "\u4e00\u8f86\u56db\u8f6e\u8d8a\u91ce\u6469\u6258\u8f66\u5728\u6c99\u6f20\u4e0a\u98de\u9a70\u8df3\u8dc3\u3002"} +{"id": "2003821", "video_name": "25ce6450-c47d-5259-a17d-901369f38613", "text": "\u5168\u7403\u73b0\u4ee3\u5316\u529e\u516c\u533a\uff0c\u9ad8\u79d1\u6280\u4e0e\u65f6\u5c1a\u5e76\u5b58\uff0c\u5458\u5de5\u5fd9\u788c\u5730\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "8003496", "video_name": "579226df-5025-5901-96c1-f72918200514", "text": "\u8fc8\u4e9a\u00b7\u5361\u5229\u6cd5\u7a7f\u7740\u7ea2\u8272\u6bd4\u57fa\u5c3c\u5728\u8857\u5934\u6f2b\u6b65\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "6004643", "video_name": "b2498faa-ff7a-5fd5-9192-2e11747d5614", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u57ce\u5e02\u73af\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "5001576", "video_name": "2542953a-1331-5310-8e7c-a36c721b4edd", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9713\u8679\u57ce\u5e02\u91cc\u4ee580\u5e74\u4ee3\u5408\u6210\u5668\u98ce\u683c\u6f14\u594f\u5408\u6210\u5668\u3002"} +{"id": "0005692", "video_name": "1f838113-97c2-5b3e-b397-c9885372a02f", "text": "\u5e03\u52a0\u8fea\u649e\u4e0a\u6b63\u5728\u5206\u5a29\u7684\u7537\u4eba\u3002"} +{"id": "4002899", "video_name": "f16aca0e-8018-5508-b6b3-9591f204e2c5", "text": "\u4eba\u7c7b\u548c\u673a\u5668\u4eba\u624b\u7275\u624b\u56e2\u7ed3\u4e00\u81f4\u3002"} +{"id": "2007618", "video_name": "db2bafd3-3c35-58d2-a073-806542c35c49", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u963f\u62c9\u4f2f\u9ed1\u80f6\u65cb\u8f6c\uff0c\u5728\u4e00\u4e2a\u9065\u8fdc\u661f\u7403\u4e0a\u4e0e\u591a\u5f69\u7684\u5916\u661f\u4eba\u4e00\u8d77\u6d3e\u5bf9\uff0c\u903c\u771f\u3002"} +{"id": "6002127", "video_name": "7111e846-35eb-5d05-8848-2203aa92b11d", "text": "\u4f7f\u7528Azure OpenAI\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u5728\u7ef4\u5c14\u7ebd\u65af\u76d6\u8fea\u7c73\u7eb3\u65af\u57ce\u5821\u7684\u5e7f\u544a\u724c\u4e0a\u3002"} +{"id": "3006834", "video_name": "134a2787-e004-5a09-9e2e-b782ac357c0f", "text": "\u6469\u6d1b\u54e5\u516c\u4e3b\u9a91\u9a6c\uff0c\u65e5\u843d\u3002"} +{"id": "6004544", "video_name": "fe257e47-d992-5c24-b519-d0f0cb4e484a", "text": "\u76d1\u63a7\u7cfb\u7edf\u5c4f\u5e55\u6a21\u62df\u771f\u5b9e\u7684Windows\u64cd\u4f5c\u7cfb\u7edf\u3002"} +{"id": "5001082", "video_name": "c8521c5a-47dd-56e8-bc3a-367133f419a7", "text": "\u5927\u800c\u7c97\u7684\u201cKRES\u201d\u5b57\u6837\uff0c\u91c7\u7528\u827a\u672f\u6d82\u9e26\u7684\u98ce\u683c\uff0c\u5b57\u6bcd\u975e\u5e38\u7cbe\u7ec6\uff0c\u914d\u4ee5\u55b7\u6e85\u7684\u6cb9\u6f06"} +{"id": "4002056", "video_name": "b1cd493d-1d17-5514-99a5-7cb6adbca192", "text": "\u9ad8\u6e05\u4e2d\u56fd\u98ce\u52a8\u753b\u7247\u300a\u5173\u7fbd\u300b\u3001\u300a\u9752\u9f99\u5043\u6708\u5200\u300b\u3001\u623f\u5730\u4ea7\u9500\u552e\u4e2d\u5fc3\u3001\u5e78\u798f\u8868\u60c5\u3001\u6325\u52a8\u52a8\u4f5c\u3001"} +{"id": "8003093", "video_name": "cf6e539d-283a-5b30-81ca-383649e3bcc2", "text": "\u4e2d\u570b\u53e4\u4ee3\u5efa\u7bc9\uff0c\u5b8f\u5049\u7684\u9580\u6a13\uff0c\u9580\u524d\u6709\u4e00\u96bb\u7a7f\u8457\u592a\u6975\u670d\u88dd\u4e26\u505a\u592a\u6975\u7684"} +{"id": "5001244", "video_name": "4d4ee086-1a72-5356-a691-1f3a7bc950cd", "text": "\u513f\u7ae5A\u5230Z\u56fe\u8868"} +{"id": "4002360", "video_name": "d367a207-97c3-5198-af13-d6bb88c44761", "text": "\u5c0f\u8c37\u7fd4\u5e73\u5728\u76f8\u6251\u64c2\u53f0\u4e0a\u4e0e\u54e5\u65af\u62c9\u640f\u6597\u3002"} +{"id": "2005926", "video_name": "228325b9-040a-5a03-83f7-f16d0879f183", "text": "\u8b66\u5bdf\u5728\u68ee\u6797\u4e2d\u8ffd\u9010\u4e00\u4e2a\u9b54\u6cd5\u822c\u7684\u84dd\u8272\u5929\u7a7a\uff0c\u4ee5\u4f26\u52c3\u6717\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1003460", "video_name": "40062fa7-2dbc-5336-8f86-36d8f8fc0456", "text": "\u4e00\u4e2aYouTube\u89c6\u9891\uff0c\u5176\u4e2d\u5305\u542b\u4e00\u6bb54K\u51b2\u7a81\u7687\u5ba4\u52a8\u753b\u3002"} +{"id": "7002986", "video_name": "1011e579-4eb1-5d00-bddc-7a88329686e7", "text": "\u4fee\u5973\u6301\u67aa\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u91d1\u8272\u65f6\u523b\u6444\u5f71\uff0c\u8001\u7535\u5f71\u5916\u89c2\uff0c35\u6beb\u7c73\u5e7f\u89d2\u524d\u89c6\u56fe\uff0c\u60b2\u4f24\u60c5\u7eea\uff0c"} +{"id": "0005287", "video_name": "17e78249-fa7e-5170-9b08-252b8828f0f7", "text": "\u8c22\u5c14\u66fc\u8bc1\u5238\u7684\u80a1\u7968\u7ecf\u7eaa\u6807\u5fd7"} +{"id": "2004642", "video_name": "8db54854-d8ec-57ad-83ca-8cfb6881b152", "text": "\u7528\u6f14\u5458\u514b\u91cc\u65af\u6258\u5f17\u00b7\u674e\u7684\u9762\u5b54\u626e\u6f14\u7684\u5438\u8840\u9b3c\u5fb7\u53e4\u62c9\uff0c30\u5c81\uff0c\u5728\u9ec4\u660f\u65f6\u5206\u6b7b\u5728"} +{"id": "2007321", "video_name": "c2140a87-eab1-54b1-a31c-1ccb27f6957c", "text": "\u7ea2\u888d\u5c0f\u5973\u5b69\u5728\u6df1\u6797\u4e2d\u591c\u665a\u91c7\u6458\u8611\u83c7\uff0c\u6050\u6016\u7c7b\u578b\u3002"} +{"id": "0004636", "video_name": "0c61f22b-ff0a-55d3-b540-a5a4cd128daa", "text": "\u4e2d\u7b49\u5927\u5c0f\u7684\u6d77\u6d6a\uff0c\u7537\u4eba\u56db\u5904\u5f20\u671b\uff0c\u6d77\u6ee9\u591c\u665a\uff0c\u6708\u4eae\u5728\u89d2\u843d\u4e2d\u51fa\u73b0\u3002"} +{"id": "2003373", "video_name": "fa564e47-27d5-5d79-aa57-ab8ad05bfe7b", "text": "\u4e00\u5e45\u620f\u5267\u6027\u7684\u753b\u4f5c\uff0c\u63cf\u7ed8\u62ff\u7834\u4ed1\u00b7\u6ce2\u62ff\u5df4\u7387\u9886\u5176\u90e8\u961f\u5728\u5965\u65af\u7279\u5229\u8328\u6218\u5f79\u4e2d"} +{"id": "6004023", "video_name": "30ce3d41-70f0-56b5-9c8b-5aa8eaa066ff", "text": "\u6d6e\u52a8\u7684\u57ce\u5821\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5947\u5e7b\u4e16\u754c\u4e2d\u5728\u4e91\u5c42\u4e4b\u95f4\u79fb\u52a8\uff0c70\u4e2a\u79d1\u5e7b\u6742\u5fd7\u3002"} +{"id": "0004145", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "\u732b\u5916\u661f\u4eba\u8868\u6f14\u60ca\u4eba\u7684\u628a\u620f\uff0c\u5c55\u793a\u7740\u5b83\u4eec\u7684\u667a\u6167\u3002"} +{"id": "3003205", "video_name": "1f73ed0f-0871-5625-8274-8297d6ddf8ba", "text": "\u5c0f\u4e11\u5750\u5728\u4f18\u6b65\u8f66\u9876\u4e0a\u3002"} +{"id": "5001666", "video_name": "24f55238-9adc-5b50-85a9-de84d9a5e0e3", "text": "\u5728\u79fb\u52a8\u7684\u6c34\u9762\u4e0a\u884c\u8d70\uff0c\u8036\u7a23\u53d1\u5149\uff0c\u5347\u8d77\u7684\u513f\u5b50\u95ea\u95ea\u53d1\u5149\uff0c\u9ad8\u901f\u98de\u884c\uff0c\u903c\u771f\u7684UHD\u548cFlycam"} +{"id": "3006632", "video_name": "7264edd5-bb6f-54ab-bf46-bf336aa387c9", "text": "\u7528\u9ec4\u8272\u7684\u56fe\u5f62\u5929\u7a7a\uff0c\u5448\u73b0\u7834\u788e\u57ce\u5e02\u4e2d3D\u52a8\u753b\u7684\u602a\u7269\u5361\u8f66\u548c\u53d8\u5f62\u91d1\u521a\u3002"} +{"id": "1005028", "video_name": "5d054542-c8b6-5a5a-89c1-cb969b21afb8", "text": "\u7eb3\u4f26\u5fb7\u62c9\u00b7\u83ab\u8fea\u5728\u6708\u7403\u4e0a\u5403\u9e21\u817f"} +{"id": "1004126", "video_name": "4c6c870b-f827-5c90-826e-d4ac019c8726", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u623f\u5c4b\u5185\u5750\u5728\u6905\u5b50\u4e0a\u4f7f\u7528\u624b\u673a\u3002"} +{"id": "8002636", "video_name": "47138628-23d9-54a3-a069-64aef091f4f3", "text": "\u9a6c\u8033\u4ed6\u572820\u4e16\u7eaa80\u5e74\u4ee3\uff0c\u5361\u901a\uff0c2D\u52a8\u753b\u3002"} +{"id": "4003766", "video_name": "7c6666fc-44bd-5984-9808-0780e7c57d75", "text": "45\u5c81\u7684\u56fe\u5e15\u514b\u00b7\u838e\u5e93\u8eab\u7a7f\u53e4\u4ee3\u6218\u58eb\u88c5\uff0c\u624b\u6301\u5251\uff0c\u51fa\u73b0\u5728\u57c3\u53ca\u6c99\u6f20\u7684\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u65f6\u95f4\u4e3a201"} +{"id": "6004752", "video_name": "1e249ace-2f87-57d0-93e1-51b8cf67721f", "text": "\u4ed6\u53d1\u73b0\u7535\u548c\u78c1\u662f\u76f8\u5173\u7684\uff0c\u4e24\u8005\u76f8\u4e92\u5f71\u54cd\u3002"} +{"id": "5001688", "video_name": "295a00ab-d1d3-5aa2-afb7-c3f6698fe69f", "text": "\u4e2d\u56fd\u5973\u5927\u5b66\u751f\u5728\u5496\u5561\u5385\u80cc\u666f\u4e0b\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u6253\u5b57\uff0c\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "3004707", "video_name": "7e5fd663-b64f-5e65-bcdc-1e95f7295268", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u5915\u9633\uff0c\u903c\u771f\u3002"} +{"id": "4002905", "video_name": "4c340e81-1377-58d1-ad44-57c580b751e5", "text": "\u4e00\u53ea\u72d7\u5728\u7bee\u7403\u573a\u4e0a\u5954\u8dd1\u3002"} +{"id": "4003920", "video_name": "3ddb8b42-7c70-506c-b307-c1b8ef4eb4ec", "text": "\u4e00\u6bb5\u8be2\u95ee\u5e94\u9009\u62e9\u849f\u84bb\u53f6\u8fd8\u662f\u4f1e\u53f6\u7684\u89c6\u9891\u3002"} +{"id": "7002987", "video_name": "9e703a69-008e-5b5f-974b-4536f2738bc0", "text": "\u4e00\u4e2a\u5c0f\u9547\u4e0a\u7684\u8001\u623f\u5b50\u3002"} +{"id": "3004649", "video_name": "00a5c787-11d4-55cb-a7ff-30d8505d9b52", "text": "\u8bb8\u591a\u9ed1\u7ffc\u5929\u4f7f\u8eab\u62ab\u706b\u5149\uff0c\u5168\u8eab\u7b3c\u7f69\u7740\uff08\u5728\u5730\u72f1\u4e2d\u5c16\u53eb\uff09\uff0c\u72ec\u7279\u7684D14bl0\u98ce\u683c\uff0c"} +{"id": "6002471", "video_name": "84aa2253-a37f-5d53-90fb-66f629a291ab", "text": "\u7167\u7247\u822c\u903c\u771f\u7684\u6d77\u6ee9\uff0c\u68d5\u6988\u6811\u5728\u5fae\u98ce\u4e2d\u6447\u66f3\uff0c\u8f7b\u67d4\u7684\u6d6a\u82b1\u62cd\u6253\u7740\u5cb8\u8fb9\u3002"} +{"id": "1004543", "video_name": "545c2124-4f3e-5177-910a-77d1a8b26506", "text": "\u5efa\u7b51\u65bd\u5de5\u5efa\u7b51\u7269\u4fe1\u606f\uff1a\u5956\u52b1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006560", "video_name": "fabcc55e-e5bf-5766-90e9-ac293dea774b", "text": "\u57281970\u5e74\u4ee3\u65b0\u5bbf\u7684\u51fa\u79df\u8f66\u9a7e\u9a76\u3002"} +{"id": "1005744", "video_name": "69b9408c-5294-5cee-ab12-e4b46cc5d23f", "text": "\u9e1f\u7c7b\u5bb6\u65cf\uff0c\u679d\u6761\uff0c\u82b1\u5f00\u82b1\u843d\uff0c\u7231\u60c5\uff0c\u53ef\u7231\uff0c\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "6004182", "video_name": "51dc0867-b436-5890-9b71-033920b69869", "text": "\u53e4\u4ee3\u7684\u732b\u4e58\u5750\u732b\u5f62\u5b87\u5b99\u98de\u8239\u62b5\u8fbe\u5730\u7403\u3002"} +{"id": "7003195", "video_name": "5b53bcaf-bede-5ed9-a08b-807f9ba28030", "text": "\u5b87\u822a\u5458\u505a\u7a46\u65af\u6797\u7977\u544a\u3002"} +{"id": "0004336", "video_name": "07535b18-59e5-51ab-8d9e-497e2391267c", "text": "\u6a59\u8272\u53d8\u6210\u4e86\u4e00\u53ea\u5154\u5b50\u3002"} +{"id": "6004827", "video_name": "f8bf8b01-a92b-561e-a06e-98cea54dff72", "text": "\u5916\u661f\u4eba\u5728\u8e22\u8db3\u7403\uff0c\u6709\u96fe\uff0c\u591c\u665a\uff0c\u753b\u9762\u9010\u6e10\u62c9\u8fdc\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002863", "video_name": "43a37f69-235e-56e5-81cc-2621fd76aea6", "text": "\u4e00\u6bb5\u5173\u4e8e\u4e00\u53ea\u57c3\u53ca\u732b\u7684\u6545\u4e8b\u89c6\u9891\uff0c\u5b83\u7684\u773c\u775b\u5145\u6ee1\u9ed1\u6697\u80fd\u91cf\uff0c\u6444\u50cf\u673a\u5c06\u955c\u5934\u805a\u7126\u5728\u5b83"} +{"id": "8001129", "video_name": "0fc453bf-8cf8-57b2-b785-58eb2b597a09", "text": "\u4e00\u4f4d\u8001\u5e74\u7537\u5b50\u7684\u5e7d\u7075\u4ece\u6728\u68cd\u4e4b\u95f4\u7aa5\u89c6\u3002"} +{"id": "4002988", "video_name": "be430b39-51f1-5754-8aff-ea29189ded87", "text": "\u5728\u9910\u5385\u91cc\u6709\u4e00\u4f4d\u73b0\u5b9e\u800c\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u58eb\u3002"} +{"id": "2003114", "video_name": "6fe6b1c4-21d3-5cde-ace1-e5bb5aa3b803", "text": "\u591a\u5a92\u4f53\u827a\u672f\u88c5\u7f6e\u6446\u653e\u5728\u4e00\u4e2a\u957f10\u7c73\u3001\u5bbd10\u7c73\u3001\u9ad85\u7c73\u7684\u7a7a\u95f4\u5185\u3002\u5b83\u53ef\u4ee5\u653e\u7f6e\u5728\u7a7a\u95f4\u4e2d\u592e\u5c55\u793a\uff0c\u4e5f\u53ef\u4ee5\u5229"} +{"id": "2004881", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "\u7535\u5f71\u5f0f\u76843D\u52a8\u753b\uff0c\u523a\u732c\u62e5\u62b1\u6c14\u7403\uff0c\u6c14\u7403\u7834\u88c2\u3002"} +{"id": "2003122", "video_name": "cd379ab4-3968-5ccd-9298-3d38032f7c78", "text": "\u7537\u4eba\u5e26\u7740\u9ed1\u8272\u773c\u7eb9\u7eb9\u8eab\u70ed\u60c5\u5730\u8bf4\u5531\u3002\u4fe1\u606f\uff1a\u6211\u7684\u9ed1\u773c\u775b\u3002"} +{"id": "2003617", "video_name": "12087e7d-d28a-5f57-ad65-189e4cc47689", "text": "\u5c06\u82b1\u3001\u70df\u3001\u5934\u53d1\u3001\u70df\u96fe\u548c\u7c92\u5b50\u8fdb\u884c\u52a8\u753b\u5904\u7406\uff0c\u4fdd\u7559\u7ec6\u8282\uff0c\u8fd0\u52a8\uff0c\u5faa\u73af\u3002"} +{"id": "6004288", "video_name": "2c27bb7f-8b67-52d7-9f6c-2e6b4b8b5001", "text": "\u4e00\u5806\u80a5\u6599 \u9644\u4ef61"} +{"id": "2005369", "video_name": "40eb40dd-51eb-50e0-a951-4b986edbcd87", "text": "\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u72ee\u5b50\u8ffd\u9010\u730e\u7269\uff0c\u730e\u7269\u662f\u9e7f\uff0c\u9ad8\u5206\u8fa8\u7387\u6e32\u67d3\u3002"} +{"id": "3006322", "video_name": "9c333696-b005-5eb7-a98c-08363ae746ab", "text": "\u5973\u5b69\u5728\u706b\u8f66\u4e0a\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u5728\u5c71\u8109\u95f4\u884c\u9a76\uff0c\u53ef\u4ee5\u4ece\u7a97\u6237\u770b\u5230\uff0c\u662fLofi\u827a\u672f\u3002"} +{"id": "6002478", "video_name": "b669de89-e319-5baf-b425-341101fe4f70", "text": "\u8ba9\u6c34\u548c\u53f6\u5b50\u52a8\u8d77\u6765\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002404", "video_name": "4789a87f-fc86-56a9-b7c6-1f9b85585304", "text": "\u571f\u8c46\u6ce5\u4e0a\u7684\u8089\u6c41\uff0c\u5012\u8089\u6c41\uff0c\u8089\u6c41\u5012\u3002"} +{"id": "2004430", "video_name": "701df025-1f80-565e-9569-690e02eb6b30", "text": "\u4e00\u4e2a\u73a9\u5177\u68d5\u6988\u6811\uff0c\u5728\u80cc\u666f\u4e2d\u6ce2\u52a8\u7740\uff0c90\u5e74\u4ee3\u98ce\u683c\uff0c\u5929\u7a7a\u4e2d\u7684\u9633\u5149\uff0c\u4f7f\u7528Cinema 4D\u8f6f\u4ef6\uff0c\u5149\u7ebf"} +{"id": "3005851", "video_name": "63af1598-c87b-5066-a359-238ae9f0c663", "text": "\u4e13\u4e1a\u5927\u9ebb\u9886\u57df\u6444\u5f71 \u4fe1\u606f\uff1aCANNORTE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006074", "video_name": "6f72ade2-d2ac-5474-ace9-e77a5a06716a", "text": "\u677e\u9f20\u3001\u6811\u3001\u98ce\u3001\u7728\u773c\u3001\u5c3e\u5df4"} +{"id": "4003382", "video_name": "256508c8-db01-55e8-bb1a-9e69b4248a1d", "text": "\u4e91\u5f69\u548c\u661f\u661f\u4e2d\u7684\u7b2c\u4e00\u540d"} +{"id": "0004306", "video_name": "06d0a2b4-d182-5854-bab8-ab72c0c3eed5", "text": "\u4e00\u74f6\u8461\u8404\u9152\u5012\u5165\u73ab\u7470\u676f\u4e2d\u3002 \n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742"} +{"id": "0004486", "video_name": "09cc5cd9-7a38-5467-a312-04585dca4cd4", "text": "\u773c\u775b\u4ece\u56fe\u50cf\u4e0a\u79fb\u5f00\u5e76\u770b\u5230\u5176\u4ed6\u5730\u65b9\u3002"} +{"id": "2007531", "video_name": "284776d8-b984-5511-af42-1db2e4a7cf07", "text": "\u4e00\u4e2a\u7537\u5b69\u53d1\u73b0\u4e86\u4e24\u68f5\u53e4\u8001\u6a61\u6811\u95f4\u9690\u85cf\u7684\u795e\u79d8\u95e8\u3002"} +{"id": "8003853", "video_name": "4e2ca3e8-a109-5844-9b91-4ef3cc9ba662", "text": "\u4e00\u500b\u5973\u5b69\u7a7f\u8457\u76ae\u593e\u514b\uff0c\u548c\u5979\u7684\u8c93\u5750\u5728\u5bb6\u7a97\u53e3\uff0c\u6b23\u8cde\u97f3\u6a02\uff0c\u89c0\u5bdf\u57ce\u93ae\u56db"} +{"id": "4003028", "video_name": "438adda9-42fe-5d1c-8623-0409e6bdb402", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5723\u8bde\u6811\uff1a\u5728\u68ee\u6797\u4e2d\u5fc3\u653e\u7f6e\u4e00\u68f5\u5927\u578b\u88c5\u9970\u597d\u7684\u5723\u8bde\u6811\u3002\u6811\u4e0a\u5e94\u8be5\u6302\u6ee1\u706f"} +{"id": "8001693", "video_name": "c1264c9f-7f0a-5600-b87c-444da810d791", "text": "\u4e0b\u5348\u5728\u6307\u6325\u90e8\u5907\u6218\u7684\u58eb\u5175\u4eec\uff0c\u903c\u771f\u76843D\u6e05\u6670\u56fe\u50cf\uff0c\u9ad8\u6e051080\u8d28\u91cf\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "0004708", "video_name": "0db7de93-4dba-5199-9d35-c2b5de11c95c", "text": "\u6211\u4eec\u770b\u5230\u4e86\u514b\u82cf\u9c81\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3001\u8d85\u73b0\u5b9e\u7684\u5f62\u8c61\uff0c\u4ed6\u90a3\u795e\u79d8\u7684\u5f02\u4e16\u754c\u6c14\u606f\u6f02\u6d6e"} +{"id": "4003928", "video_name": "8bdf0506-5e11-5133-acba-db858dddaa40", "text": "\u7ea2\u8272\u6df1\u7ea2\u8272\u7684\u6cd5\u5e08\u5728\u4e0e\u4e00\u53ea\u9f99\u6218\u6597\u3002"} +{"id": "3003006", "video_name": "b2f42a40-202f-55e4-a503-a51f6fae37f5", "text": "\u4e00\u8f86\u9ed1\u8272\u7684\u6885\u8d5b\u5fb7\u65af\u5728\u96e8\u591c\u9ad8\u901f\u884c\u9a76\uff0c\u96e8\u6c34\u4ece\u6321\u98ce\u73bb\u7483\u548c\u8f6e\u5b50\u4e0a\u6e85\u8d77\u3002"} +{"id": "1005752", "video_name": "69cda4f8-07f7-51b6-ac54-6ece55f80c4d", "text": "\u4e00\u4e2a\u62e5\u6709\u6e29\u67d4\u5fc3\u7075\u548c\u5b69\u5b50\u7cbe\u795e\u76843D\u5361\u901a\u7537\u5b69"} +{"id": "4003538", "video_name": "c547f8dc-1b3c-56c9-95a5-aff5360673b2", "text": "Kade Neely\u6b63\u5728\u505aTikTok\u7684\u5df4\u5df4\u8d8b\u52bf\u3002\n\nSource sentence: I need to buy some groceries at the supermarket. \n\n\u6211\u9700\u8981\u5728\u8d85\u5e02\u4e70\u4e00\u4e9b\u98df\u54c1\u6742\u8d27\u3002"} +{"id": "7004727", "video_name": "c2412c23-2c09-5d02-94c1-916d694b293a", "text": "\u96ea\u82b1\u5728\u591c\u7a7a\u7684\u80cc\u666f\u4e0b\u3002\u4fe1\u606f\uff1a\u518d\u89c1\u3002"} +{"id": "8001795", "video_name": "d7c52e47-7781-5f9a-bff7-2d1cbafe1309", "text": "\u4e00\u53ea\u4ece\u5929\u7a7a\u98de\u6765\u7684\u9e73\uff0c\u52a8\u6f2b\u89c6\u9891\u3002"} +{"id": "3003311", "video_name": "c16560cd-f1ce-557b-a5b2-80ab79720ed7", "text": "\u5728\u6d77\u6ee9\u4e0a\u8e22\u8db3\u7403\u7684\u662f\u5df4\u897f\u4eba\u3002"} +{"id": "0004396", "video_name": "08331cab-384b-579a-ae5a-9ad42c84d844", "text": "\u6751\u6c11\u4eec\u7167\u987e\u73af\u5883\u7684\u6696\u5fc3\u753b\u9762\uff0c\u51e0\u4ee3\u4eba\u5171\u540c\u52aa\u529b\u3002"} +{"id": "2007384", "video_name": "0855cc6b-f2c2-5a0a-98b7-d0f61b55640e", "text": "\u5f88\u4e45\u5f88\u4e45\u4ee5\u524d\uff0c\u6ce2\u65af\u7684\u4e00\u4e2a\u57ce\u5e02\u91cc\u4f4f\u7740\u4e24\u4e2a\u5144\u5f1f\u3002\u54e5\u54e5\u53eb\u5361\u897f\u59c6\uff0c\u5f1f\u5f1f\u53eb"} +{"id": "7002092", "video_name": "837dcbb4-6ac8-5f7d-a5bd-9f5af775ed5c", "text": "\u4e00\u4e2a\u809a\u5b50\u9f13\u8d77\u6765\u7684\u6bcd\u4eb2\u5e26\u7740\u4e00\u4e2a\u5a74\u513f\u3002"} +{"id": "8001050", "video_name": "f12c9090-4efa-5f7c-a8cf-b545abd9280f", "text": "\u4e00\u540d\u58eb\u5175\u6b63\u5728\u5e6b\u52a9\u4e00\u500b\u8eba\u5728\u5730\u4e0a\u3001\u50b7\u60a3\u7684\u4eba\uff0c\u5834\u666f\u5145\u6eff\u6c99\u5875\u3001\u6230\u5834\u9670\u68ee\uff0c"} +{"id": "1006032", "video_name": "6ed01f01-de0b-5161-b05f-dfc241345c4b", "text": "\u4e00\u4e2a\u6210\u529f\u7684\u4f01\u4e1a\u5bb6\uff0c\u6ca1\u6709\u9732\u9762\uff0c\u4ed6\u5bf9\u4ed6\u7684\u5de5\u4f5c\u975e\u5e38\u6ee1\u610f\u3002"} +{"id": "1004022", "video_name": "4a92cded-3fde-5f58-828b-b41eb2010ada", "text": "\u5b69\u5b50\u4eec\u4e0a\u5e8a\u7761\u89c9\u3002\u5148\u662f\u5a74\u513f\uff0c\u7136\u540e\u662f\u8fea\u5229\uff0c\u7a0d\u540e\u662f\u6cf0\u548c\u827e\u6770\uff0c\u6700\u540e\u662f\u6258\u9a6c\u65af\u592b"} +{"id": "2004738", "video_name": "ecd258c9-cba1-5724-ab31-1327b415229d", "text": "\u9a6c\u5730\u90a3\u4e8e\u516c\u5143570\u5e74\u4f7f\u7528\u67ef\u8fbePortra 800\u80f6\u7247\uff0c105mm f1.8\u955c\u5934\u62cd\u6444\u3002"} +{"id": "7003908", "video_name": "33f0a035-5b3c-5ec0-90f0-5e22e09e5972", "text": "\u4ece\u524d\uff0c\u5728\u4ee4\u4eba\u9676\u9189\u7684\u67f3\u8c37\u68ee\u6797\u91cc\u4f4f\u7740\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb\uff0c\u5154\u5b50\u73ed\u5c3c\u548c\u82b1\u6817\u9f20\u67e5"} +{"id": "8002987", "video_name": "bbc5ea1f-b871-567a-b25a-638140551338", "text": "\u718a\u732b\u548c\u68d5\u718a\u4e00\u8d77\u8eba\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "0005165", "video_name": "15dbfda0-348c-521c-9e9a-e06e5b08b72f", "text": "\u4ed6\u662f\u4e00\u4e2a\u4e07\u4e8b\u4ff1\u5907\u7684\u82f1\u96c4\u3002"} +{"id": "3003247", "video_name": "85eac4d6-5eef-5fd4-a13b-63fd22ba68c6", "text": "\u5728\u73b0\u4ee3\u7684\u5404\u79cd\u573a\u666f\u4e2d\u5c55\u793a\u4eba\u4eec\u634d\u536b\u81ea\u5df1\u4fe1\u5ff5\u7684\u884c\u52a8\u3002"} +{"id": "6004247", "video_name": "03fbcd17-bb45-5ee1-af60-b7935275c2c3", "text": "1. \u8fd9\u4ef6\u6770\u4f5c\u4ee58K\uff0cUHD\uff0c\u6570\u5b57\u827a\u672f\u7684\u5f62\u5f0f\u5448\u73b0\uff0c\u5b83\u63cf\u7ed8\u4e86\u65e0\u5c3d\u7684\u5b87\u5b99\u7a7a\u95f4\uff0c\u8272\u5f69\u6591"} +{"id": "1006104", "video_name": "70055c07-debc-56ae-9a24-961ab770f9bf", "text": "\u4e00\u53ea\u733f\u7334\u53d1\u73b0\u4e86\u4e00\u53ea\u624b\u8868\uff0c\u7136\u540e\u5229\u7528\u5b83\u7a7f\u8d8a\u65f6\u95f4\u3002"} +{"id": "2005318", "video_name": "e1dfb7d2-5204-5821-b027-70691181a45e", "text": "\u5973\u5b69\u5b50\u5750\u7740\uff0c\u628a\u5934\u5411\u53f3\u548c\u5411\u5de6\u503e\u659c\u3002"} +{"id": "2006889", "video_name": "0c5584ec-f0e6-5095-98b2-d1f7aa4187f2", "text": "\u5c0f\u7ea2\u5e3d\u5750\u5728\u4e00\u4e2a\u5f00\u7740\u7a97\u6237\u3001\u4f4d\u4e8e\u4e61\u95f4\u7684\u8001\u5f0f\u5c0f\u5c4b\u91cc\u3002"} +{"id": "3004275", "video_name": "d1f960e4-69d1-577d-9295-e3a62cf38481", "text": "\u4e00\u95f4\u660f\u6697\u7684\u529e\u516c\u5ba4\uff0c\u5c4b\u5185\u53ea\u6709\u4e00\u5f20\u684c\u5b50\u548c\u4e00\u628a\u6905\u5b50\uff0c\u79c1\u4eba\u7a7a\u95f4\u7684\u80cc\u666f\u4e0b\uff0c\u73af\u5883\u5145\u6ee1"} +{"id": "3006787", "video_name": "d078f980-cefd-5383-b18c-cbbfa057aad5", "text": "\u6253\u5f00\u65f6\u4ee5\u5b81\u9759\u7684\u81ea\u7136\u80cc\u666f\u4e3a\u80cc\u666f\uff0c\u53ef\u80fd\u662f\u4e00\u4e2a\u5b81\u9759\u7684\u68ee\u6797\uff0c\u6811\u6728\u8f7b\u8f7b\u5730\u5728\u98ce\u4e2d\u6447\u52a8\uff0c\u4e00\u6761"} +{"id": "1003830", "video_name": "46b88c83-ef81-55e0-92ed-74b77ca0ffc1", "text": "\u5c55\u793a\u5362\u5361\u65af\uff0c\u4e00\u4e2a\u6709\u76ee\u7684\u5730\u8d70\u8def\u7684\u5e74\u8f7b\u7537\u5b69\uff0c\u4ed6\u7684\u8868\u60c5\u6c89\u601d\u800c\u7565\u5e26\u60b2\u4f24\u3002\u5f53\u4ed6\u7ee7\u7eed"} +{"id": "8002365", "video_name": "bdfb879f-742b-5628-bdc3-e6e5813eefa1", "text": "\u8389\u8389\u4f4f\u5728\u4e00\u4e2a\u5145\u6ee1\u5947\u8ff9\u7684\u571f\u5730\u4e0a\uff0c\u8fd9\u4e2a\u6751\u5e84\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u95ea\u4eae\u7684\u6cb3\u6d41"} +{"id": "5001115", "video_name": "9fc207d9-9626-5eb6-8a14-2982656ecbf5", "text": "\u5723\u8bde\u8001\u4eba\u5750\u5728\u4e00\u6761\u4e2d\u56fd\u9f99\u4e0a\uff0c\u6447\u6643\u7740\u53cc\u624b\u3002"} +{"id": "1003640", "video_name": "4318039e-d100-503f-950c-b3506bc182ac", "text": "\u79d1\u5b66\u5b9e\u9a8c\u602a\u517d\u4ece\u4e00\u5ea7\u5e9f\u5f03\u7684\u6838\u7535\u7ad9\u9003\u8131\uff0c\u4f4d\u4e8e\u4e00\u7247\u53e4\u8001\u68ee\u6797\u4e2d\u95f4\u3002\u7ea2\u8272\u4e3b\u8c03\u300290\u5e74\u4ee3"} +{"id": "2005748", "video_name": "fb1535de-8331-5338-8f93-4e8a9f7de374", "text": "\u7537\u5b69\u559c\u6b22\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002\n\nSource sentence: I enjoy listening to music while cooking dinner. \n\n\u6211\u559c\u6b22\u5728\u716e\u665a\u9910\u7684\u65f6\u5019\u542c\u97f3"} +{"id": "3005560", "video_name": "69d2ec84-c07c-5107-ae3e-8b93098aafc0", "text": "\u5730\u94c1\u5217\u8f66\u4e0a\u7684\u5973\u6218\u58eb\uff0c\u624b\u6301\u51b2\u950b\u67aa\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u6050\u6016\uff0c\u5bc2\u9759\u5cad\uff0c\u94f6\u7ffc\u6740"} +{"id": "8003044", "video_name": "2248358a-5f68-56ba-947d-6e7b62265ce7", "text": "\u5b9d\u5b9d\u732b\u5236\u4f5c\u6709\u8da3\u7684\u5f71\u7247\uff0c\u9ad8\u54c1\u8d28"} +{"id": "1005602", "video_name": "670fcacf-e7cf-5de5-b8eb-212d608dc4e2", "text": "\u91d1\u521a\u5750\u5728\u4e00\u8f86\u9a7e\u9a76\u7535\u5f71\u9662\u7684\u76ae\u5361\u8f66\u540e\u5ea7\u4e0a\u7684\u5f62\u8c61\u3002"} +{"id": "0005141", "video_name": "158020da-ff10-5869-ba9c-ad64bfb08143", "text": "\u52a8\u753b\u89d2\u8272\u8fea\u58eb\u5c3c\u548c\u5510\u8001\u9e2d\u505a\u670b\u53cb\u3002"} +{"id": "8002531", "video_name": "e1f77ac3-1b77-5fde-ba1a-2046a90db725", "text": "\u8df3\u821e\u7537\u5973\uff0c\u534e\u5c14\u5179\uff0c\u9ad8\u7cbe\u5ea6\uff0c\u9ad8\u8d28\u91cf\uff0c\u624b\u81c2\u5e73\u7a33\u79fb\u52a8\uff0c\u6307\u5c16\u8f7b\u67d4\u6ed1\u52a8\uff0c\u6447\u66f3\u7684\u5934\u53d1\uff0c"} +{"id": "7004352", "video_name": "6490c32d-27f2-5371-af66-3621ef0c716f", "text": "\u65b0\u5e74\u5373\u5c06\u5230\u6765\u5728\u5df4\u5e93\u3002"} +{"id": "1004854", "video_name": "59b1fbef-6784-574e-9ae2-e953a41af9b0", "text": "\u6c99\u6f20\u4e2d\u4e00\u4e2a\u65e5\u6677\u6389\u843d\u5230\u6c99\u5b50\u91cc\u3002"} +{"id": "6003461", "video_name": "e4b8ebd1-8dc0-576a-9fb0-5d1f3b78dd71", "text": "\u5236\u4f5c\u8f66\u649e\u6811\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3005160", "video_name": "6dec5136-1d3f-53f6-a994-b6c234d04a62", "text": "\u4ee54K\u5206\u8fa8\u7387\u5236\u4f5c\u76843D\u52a8\u753b\u5c55\u793a\u4e86\u4e00\u5ea7\u5e84\u4e25\u7684\u8c6a\u5b85\uff0c\u5b83\u88ab\u79f0\u4e3a\u56de\u58f0\u5e84\u56ed\u3002"} +{"id": "6002777", "video_name": "dd6fb808-da6e-53c8-aaf1-1ca58a7b7cc1", "text": "\u4e00\u4e2a\u7531\u7f57\u9a6c\u53c2\u8bae\u5458\u4e89\u5435\u6fc0\u70c8\u5e76\u6fc0\u52a8\u5730\u6447\u6643\u7684\u7f57\u9a6c\u53c2\u8bae\u9662\u3002"} +{"id": "2003147", "video_name": "485bd006-1944-59e2-be06-e224b2911ec3", "text": "\u4e00\u6735\u98de\u86c7\u98df\u866b\u690d\u7269\u7684\u51e0\u4f55\u5f62\u72b6\u3002"} +{"id": "0004733", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "\u5df4\u52c3\u7f85\u00b7\u57c3\u65af\u79d1\u5df4\u723e\u8207\u5370\u5ea6\u8001\u4eba\u3002"} +{"id": "3005827", "video_name": "c8da4682-85bc-5bde-be6e-b80cc31a7fb6", "text": "\u73b0\u5728\u662f\u65f6\u5019\uff0c\u8ba9\u5f02\u5f62\u5165\u4fb5\u767d\u5bab\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002138", "video_name": "e98a9dcb-704a-58cc-bd77-eb7851a986f1", "text": "\u9769\u547d\u4e0e\u4eba\u6c11\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u50cf\u5347\u8d77\u7684\u592a\u9633\uff0c\u6218\u4e89\u3001\u6597\u4e89\u5728\u4e0d\u65ad\u8fdb\u884c\uff0c\u70df\u96fe\u5f25\u6f2b\uff0c\u516b\u6708\u4e09"} +{"id": "2004889", "video_name": "9804e665-5e54-5509-9901-3b1f0ff523b4", "text": "\u5b59\u5b50\u5bf9\u7956\u6bcd\u7684\u7231"} +{"id": "5001536", "video_name": "c6f6af13-1ee1-5b9c-9902-2b4aa0421a1b", "text": "\u7ebd\u7ea6\u8857\u5934\uff0c\u4e00\u7fa4\u72d7\u72d7\u5954\u5411\u5b89\u68c0\u53e3\uff0c\u6444\u50cf\u673a\u4ece\u9ad8\u7a7a\u4fef\u89c6\u3002"} +{"id": "6003543", "video_name": "ce62aa5c-b2c0-538a-8ab1-179aebca3f19", "text": "\u4e00\u5207\u59cb\u4e8e\u4e00\u6b65\u7684gif\u3002"} +{"id": "7004214", "video_name": "42e7c53b-b09b-5f69-b8f5-34178937d4ad", "text": "\u8bf7\u7528\u73b0\u4ee3\u98ce\u683c\u4e3a\u6211\u8bbe\u8ba1\u4e00\u4e2a\u5e26\u6709\u5b57\u6bcd\u201cG\u201d\u7684\u6807\u5fd7\u3002\u516c\u53f8\u540d\u4e3aGloteca\uff0c\u53ef\u4ee5\u8bbe\u8ba1\u5f97\u50cfMaersk\u7684\u6807\u5fd7\u3002"} +{"id": "0003553", "video_name": "3f6cb33b-9720-5226-967a-e75d9d7e2c76", "text": "15\u5c81\u7684\u5973\u5b69\u548c18\u5c81\u7684\u7537\u5b69\uff0c\u4e00\u8d77\u63cf\u7ed8\u4e86\u4e00\u573a\u4e89\u6267\u3002"} +{"id": "3006580", "video_name": "b6bc1100-8f35-5d61-816a-be1b03605f00", "text": "\u7b80\u7ea6\u98ce\u683c\uff0c\u767d\u8272\u6db2\u4f53\u5e26\u6709\u5f00\u5fc3\u679c\u8272\u6ce2\u6d6a\u3002"} +{"id": "7004115", "video_name": "178b754e-1c7c-5257-b85a-7226caadbc48", "text": "\u5728\u9e21\u820d\u5468\u56f4\u5954\u8dd1\u3001\u632f\u52a8\u7fc5\u8180\u548c\u6253\u9e23\u7684\u9e21\u3002"} +{"id": "6004105", "video_name": "d313aae6-7313-55f9-a6a6-1d851761a11a", "text": "\u4e00\u8258\u8239\u5728\u98d3\u98ce\u4e2d\u6b63\u4e0b\u6c89\u3002"} +{"id": "3006974", "video_name": "5bbb44eb-0c7c-50f6-a6cd-47d1573bb5a0", "text": "\u5979\u5fc5\u987b\u4ed4\u7ec6\u8046\u542c\u5e76\u89e3\u8bfb\u6811\u6728\u7684\u53e4\u8001\u8bed\u8a00\uff0c\u4ee5\u63ed\u793a\u4e0b\u4e00\u4e2a\u4eea\u5f0f\u7684\u4f4d\u7f6e\u3002"} +{"id": "2003783", "video_name": "423ac8fe-1d06-5c78-a490-d6dba3c9c9d8", "text": "\u4e00\u4e2a\u673a\u5668\u9e1f\u5728\u68ee\u6797\u91cc\u98de\u7fd4\u3002"} +{"id": "4004437", "video_name": "96ba0f10-086a-5aa7-b152-151a29fba7cc", "text": "\u5207\u5c14\u7a7f\u7740\u6027\u611f\u670d\u88c5\u5728\u821e\u53f0\u4e0a\u5531\u6b4c\u3002"} +{"id": "2004572", "video_name": "73776a9e-91ff-5f5b-95a1-e0c75ffb4031", "text": "\u4e00\u4e2a\u7537\u5b69\u73a9\u6c7d\u8f66\u3002"} +{"id": "5001481", "video_name": "4c514008-629e-535c-bd48-b2548228b6aa", "text": "\u4e00\u4e2a\u7537\u4eba\u4fdd\u6301\u4e13\u6ce8\uff0c\u5bf9\u751f\u6d3b\u6709\u6e05\u6670\u7684\u613f\u666f\u3002"} +{"id": "3006512", "video_name": "4bd3d89f-ec4c-523b-94f8-44341a369915", "text": "\u5f17\u96f7\u8fea\u6e17\u900f\u5230\u6beb\u4e0d\u77e5\u60c5\u7684\u53d7\u5bb3\u8005\u7684\u68a6\u4e2d\uff0c\u5f15\u53d1\u4e86\u4e00\u573a\u5145\u6ee1\u8d85\u73b0\u5b9e\u548c\u6050\u6016\u56fe\u50cf\u7684\u5669"} +{"id": "0006374", "video_name": "2b5aa96d-37c6-53a5-90e8-da6bfcc4628b", "text": "\u4e00\u4e2a\u70b9\u5934\u6253\u62db\u547c\u7684\u732b"} +{"id": "3003526", "video_name": "c31b5e23-7442-5380-ba4b-a4f2f213ea75", "text": "\u4e00\u6247\u91d1\u8272\u7684\u95e8\u51fa\u73b0\u5728\u6d77\u6ee9\u4e0a\uff0c\u80cc\u666f\u662f\u6d77\u6d0b\u3001\u5915\u9633\u548c\u508d\u665a\u666f\u8272\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\uff0c\u91c7\u7528\u53d8\u5f62"} +{"id": "2004448", "video_name": "8d7d91a9-2196-5204-860a-f0db1923cbfc", "text": "\u597d\u5947\u7684\u5229\u4e9a\u59c6\u51b3\u5b9a\u89e6\u6478\u5176\u4e2d\u4e00\u4e2a\u6f02\u6d6e\u884c\u661f\u3002\u5f53\u4ed6\u8fd9\u6837\u505a\u65f6\uff0c\u6f02\u6d6e\u884c\u661f\u7684\u6ce2\u7eb9\u5728\u68a6\u5883"} +{"id": "3005144", "video_name": "ab659cdd-383e-569e-b305-f19c5542e6c4", "text": "\u95ea\u70c1\u3001\u62bd\u6410\u3001\u7ec6\u80de\u5206\u88c2\u3002\u4e00\u4e2a\u6781\u7b80\u7684\u534a\u900f\u660e\u7985\u4fee\u573a\u6240\uff0c\u4f9b\u81ea\u7136\u5d07\u62dc\u3002\u6606\u866b\u5375"} +{"id": "8001491", "video_name": "dca1cbe5-8822-5e72-8165-dae1744b546f", "text": "\u4e9a\u5f53\u662f\u4ece\u6ce5\u571f\u4e2d\u521b\u9020\u51fa\u6765\u7684\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003424", "video_name": "3b369115-2f74-5050-ab1b-a92410a81b3d", "text": "\u4e00\u53ea\u9ed1\u8272\u5c0f\u732b\u5728\u4e00\u4e2a\u8212\u9002\u516c\u5bd3\u91cc\u9192\u6765\uff0c\u55c5\u5230\u719f\u6089\u7684\u6c14\u5473\u548c\u58f0\u97f3\uff0c\u611f\u5230\u5feb\u4e50\u548c"} +{"id": "3003007", "video_name": "942e6867-13d7-53df-96b5-72783bc28ad4", "text": "\u836f\u7269\u901a\u8fc7\u8840\u7ba1\u8fdb\u5165\u809d\u810f\u3002"} +{"id": "3006964", "video_name": "f34517ad-bc3d-52c8-bdef-1d12c2595623", "text": "\u7535\u5f71\u822c\u7684\uff0c\u9a6c\u620f\u56e2\u91cc\u7684\u9b3c\u9b42\uff0c1960\u5e74\u4ee3\u98ce\u683c\u3002"} +{"id": "3004340", "video_name": "d43ad318-1ccc-5e73-9bcc-abdf6a731ba3", "text": "\u5c06\u56fe\u7247\u4e2d\u7684\u5b69\u5b50\u548c\u65d7\u5e1c\u79fb\u52a8\uff0c\u4eff\u4f5b\u4ed6\u5728\u8bf4\u8bdd\u3002"} +{"id": "3006601", "video_name": "c01cbc91-90d9-553d-8907-0744ad3f7398", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u95e8\u5eca\u4e0a\uff0c\u53cc\u624b\u6258\u7740\u8111\u888b\uff0c\u6c89\u601d\u5fe7\u6101\u3002"} +{"id": "3005545", "video_name": "a23c7fc1-544b-508a-8ee2-566e56fd86df", "text": "\u521b\u9020\u4e00\u4e2a\u5c55\u793a\u5e93\u7279\u4f26\u2014\u2014\u4e00\u4e2a\u8499\u53e4\u6218\u58eb\u7684\u5f62\u8c61\uff0c\u7528\u52a8\u6001\u7684\u5251\u59ff\u63cf\u7ed8\u5979\u7684\u529b\u91cf\u548c\u51f6\u731b\u3002"} +{"id": "0005291", "video_name": "17f16156-ad73-55c8-ad7c-da186f652a05", "text": "\u4e00\u53ea\u52a8\u753b\u9ca8\u9c7c\u8df3\u8fdb\u4e86\u4e00\u8258\u5c0f\u6728\u8239\u3002"} +{"id": "0003768", "video_name": "42ff1207-bd48-5bf5-8af1-ff39a71fb435", "text": "\u745e\u6069\u00b7\u9ad8\u65af\u6797\u4e3a\u767d\u8272\u6d74\u5ba4\u7a97\u5e18\u505a\u5e7f\u544a\u3002"} +{"id": "4003492", "video_name": "dbd9cda9-de24-5cf8-accf-8d0551778f9e", "text": "\u6d77\u6d6a\u4ee5\u4e09\u7ef4\u51e0\u4f55\u56fe\u6848\u4e0a\u5347\uff0c\u5b83\u4eec\u7684\u5cf0\u503c\u548c\u8c37\u503c\u88ab\u97f3\u9891\u9891\u8c31\u6240\u5851\u9020\u3002\u4e3b\u8981\u89c6\u89c9\u901a\u8fc7\u4e00\u4e2a\u5de8\u5927"} +{"id": "7003330", "video_name": "ec7bf65e-5764-544a-aa11-660c199c4abe", "text": "\u5c55\u793a\u4e24\u4f4d\u6148\u5584\u7684\u519c\u6c11\u6216\u4e3b\u4eba\u5728\u4e61\u6751\u8c37\u4ed3\u6216\u519c\u573a\u4e2d\u53cb\u597d\u5730\u63a5\u6536\u4e00\u888b\u7f8a\u6bdb\u3002"} +{"id": "3006364", "video_name": "ea9bdce7-1761-58db-bc8b-57662d77e11a", "text": "\u4ed6\u540c\u610f\u4fee\u7406\u9a6c\u8f66\uff0c\u4f46\u8981\u6c42\u9ad8\u989d\u7684\u8d39\u7528\u4f5c\u4e3a\u56de\u62a5\u3002\u65c5\u884c\u8005\u610f\u8bc6\u5230\u4ed6\u522b\u65e0\u9009\u62e9\uff0c\u4e0d\u60c5\u613f\u5730\u540c\u610f\u652f\u4ed8\u5de8\u989d\u8d39\u7528\u3002"} +{"id": "0006048", "video_name": "25ba60d3-fa5d-53d8-9708-aa697db25568", "text": "\u9ed1\u6697\u7684\u4eff\u751f\u673a\u68b0\u4eba\u57283D\u516b\u89d2\u6e32\u67d3\u4e2d\u5f39\u594f\u5408\u6210\u5668\u6a21\u5757\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6700\u4f73\u5206\u8fa8\u7387\uff0cHDR"} +{"id": "5001404", "video_name": "73024ca4-6f9c-59dd-b10d-cc67ac664c9f", "text": "\u7535\u5f71\u822c\u7684\uff0c\u4f7f\u547d\u53ec\u5524\u58eb\u5175\uff0cGTA\u98ce\u683c"} +{"id": "4004565", "video_name": "b4477127-241a-5828-827e-c05975369e86", "text": "\u4e00\u4e2a\u6234\u515c\u5e3d\u7684\u7537\u4eba\u57281960\u5e74\u4ee3\u96e8\u5929\u4f7f\u7528\u516c\u7528\u7535\u8bdd\u6253\u7535\u8bdd\u3002"} +{"id": "4002575", "video_name": "8371f781-4e92-5872-af34-07e6061adc9a", "text": "\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u5728\u9ed1\u677f\u4e0a\u50cf\u8001\u5e08\u4e00\u6837\u6559\u4eba\u4eec\u30028K"} +{"id": "7002559", "video_name": "17f9b690-da3a-57fa-b1e2-ca2fbd1ce760", "text": "\u5916\u661f\u6218\u58eb\u4f01\u9e45\u624b\u6301\u4eba\u7c7b\u6700\u540e\u7684\u6b66\u58eb\u5200\uff0c\u4e0e\u7a81\u53d8\u751f\u7269\u640f\u6597\uff0c\u91c7\u7528\u771f\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u6709\u96fe"} +{"id": "3003856", "video_name": "a777eb15-9f3d-505f-a3e5-522d6922b48e", "text": "\u968f\u7740\u9ec4\u91d1\u9e21\u7684\u6d88\u606f\u4f20\u5f00\uff0c\u4eba\u4eec\u5f00\u59cb\u8c08\u8bba\u5b83\u3002\u519c\u6c11\u53d8\u5f97\u9a84\u50b2\uff0c\u5e76\u6e34\u671b\u66f4\u591a\u3002\u4ed6\u7684\u8d2a\u5a6a"} +{"id": "2004978", "video_name": "e348a35d-39aa-594f-8641-9885bdf557cb", "text": "\u4ed9\u4eba\u638c\u76ae\u9769\u5236\u4f5c\u4e09\u5206\u949f\u89c6\u9891"} +{"id": "2006455", "video_name": "863864b5-eebe-57f9-8f40-b639b293e30f", "text": "\u4e3a\u5de5\u4e1a\u673a\u5668\u4fc3\u9500\u521b\u4f5c\u80cc\u666f\u97f3\u4e50\u3002"} +{"id": "7004825", "video_name": "53d59be4-6291-519f-817e-08b8e371bccb", "text": "\u9ad8\u901f\u94c1\u8def\u7ad9\u5e26\u6709\u5de8\u5927\u7684\u53d1\u5149\u96d5\u5851\uff0c\u8d4c\u573a\u548c\u8d1d\u62c9\u5409\u5965\u9152\u5e97\u5927\u5802\u3002"} +{"id": "3006878", "video_name": "762e4e5e-250b-51c8-9363-946f02d498c9", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u68ee\u6797\uff0c\u6709\u5145\u6ee1\u751f\u673a\u7684\u6811\u6728\u548c\u4e00\u6761\u95ea\u4eae\u7684\u6cb3\u6d41\u3002\u5c0f\u72ee\u5b50"} +{"id": "7002183", "video_name": "ccb0e66d-8707-5624-b37c-cc412b9facfb", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u5207\u5c14\u3001Ru Paul\u548c\u739b\u683c\u4e3d\u7279\u00b7\u6492\u5207\u5c14\u4e4b\u95f4\u7684\u5973\u6027\u7248\u672c\u3002"} +{"id": "2006895", "video_name": "ca77946b-fdc3-53fa-bbb4-01d57e602fd3", "text": "\u9a6c\u7279\u4e0a\u7684\u690d\u7269\u5728\u591c\u665a\u91cc\u3002\n\nSource sentence: The dog barked at the mailman. \n\n\u72d7\u5bf9\u7740\u90ae\u9012\u5458\u53eb\u3002"} +{"id": "8003648", "video_name": "728fab31-898d-554e-bb57-d853c32a06df", "text": "\u4efb\u5929\u5802\u4ff1\u4e50\u90e8\u5fbd\u6807\u4e0e\u54e5\u65af\u8fbe\u9ece\u52a0\u56fd\u65d7\u3002"} +{"id": "6003378", "video_name": "547361e2-3011-57c2-b2d2-566ffaafcf7d", "text": "\u5728\u6d77\u6ee9\u4e0a\u65bd\u6cd5\u7684\u5deb\u5e08"} +{"id": "8003248", "video_name": "bc43feb4-3e3c-5c5a-93e1-29376c7d3510", "text": "\u4e00\u4e2a\u4eba\u53e3\u5bc6\u96c6\u7684\u57ce\u5e02\u3002\u5c1d\u8bd5\u751f\u6d3b\u5e76\u5c1d\u8bd5\u3002"} +{"id": "8002687", "video_name": "b4ff7287-d9bf-5215-92de-f9b9a1419f84", "text": "\u7ea2\u8863\u5973\u5b50\u5728\u8239\u4e0a"} +{"id": "7002116", "video_name": "3bb796fd-3e43-54f7-b337-3556eda8c1ea", "text": "\u5b87\u5b99\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\uff0c\u662f\u4e00\u8258\u8d85\u73b0\u4ee3\u548c\u5148\u8fdb\u7684\u8239\uff0c\u6781\u5177\u5f71\u89c6\u6548\u679c\u3002"} +{"id": "3005019", "video_name": "b80e249b-ef6a-57f0-9894-6f27b639cbfa", "text": "\u718a\u7ad9\u8d77\u6765\u5411\u955c\u5934\u8d70\u8fc7\u6765\uff0c\u718a\u8ddf\u955c\u5934\u8bf4\u8bdd\uff0c\u80cc\u666f\u53d8\u5316\u3002"} +{"id": "3006286", "video_name": "88088860-1e9a-590d-8b33-230a027bada6", "text": "\u732b\u4ece\u540e\u9762\u5411\u5723\u8bde\u6811\u8d70\u53bb\u3002"} +{"id": "7004794", "video_name": "e932963d-8ac0-5fa1-9b7d-b7c8f0c4261b", "text": "\u6218\u58eb\u5728\u96e8\u4e2d\u4e3e\u5251\u3002"} +{"id": "0006179", "video_name": "27c4d176-7755-543c-9997-8f384ffa0ab1", "text": "\u4e00\u4e2a\u5973\u5b69\u505c\u7559\u5728\u79cb\u5929\u7684\u8857\u9053\u4e0a\uff0c\u8d70\u5411\u6211\u3002"} +{"id": "0003403", "video_name": "3d118851-2e49-5ca1-b9f4-88af3e4a4f42", "text": "\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u91cc\u5728\u62f3\u51fb\u6bd4\u8d5b\u4e2d\uff0c\u963f\u57fa\u62c9\u7684\u98ce\u683c\u3002"} +{"id": "4002370", "video_name": "48dffc24-12e2-51d7-bd24-1abc09aa2798", "text": "\u5728\u58c1\u7089\u9644\u8fd1\u7684\u623f\u95f4\u91cc\u7761\u89c9\u7684\u5c0f\u732b\u54aa\u3002\n\nSource sentence: My favorite color is blue because it reminds me of the ocean.\n\u6211\u6700\u559c\u6b22\u7684"} +{"id": "3005105", "video_name": "6c308dc2-fab9-5194-9ee6-ae891eefcc47", "text": "\u5728\u4e00\u4e2a\u5e73\u884c\u5b87\u5b99\u4e2d\uff0c\u6709\u4e00\u4e2a\u62e5\u6709\u4e30\u5bcc\u767d\u8272\u690d\u88ab\u548c\u6e10\u53d8\u8272\u7684\u661f\u7403\uff0c\u5b58\u5728\u7740\u5f62\u6001\u5404\u5f02\u7684\u5916\u661f\u751f\u547d\u3002"} +{"id": "6004345", "video_name": "2b2502b9-225b-594e-b207-3be15465c9d8", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\u5728\u4f1a\u8bae\u5ba4\u4e2d\u505a\u6f14\u793a\uff0c\u7a7f\u7740\u84dd\u8272\u548c\u6a59\u8272\u8863\u670d\u3002"} +{"id": "4004010", "video_name": "7ec00c6d-efab-5d23-8065-d6240e5a548c", "text": "\u4e00\u4e2a\u4f4f\u5728\u68ee\u6797\u5c0f\u5c4b\u91cc\u7684\u5c0f\u5973\u5b69"} +{"id": "2005284", "video_name": "d16e261a-319d-59a6-8af9-47d454f1b3e5", "text": "6. \u5bb6\u4eba\u62e5\u62b1\u5728\u4e00\u8d77\uff0c\u4ed6\u4eec\u7684\u8863\u670d\u9970\u6709\u6b22\u4e50\u7684\u56fe\u6848\uff0c\u5728\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u623f\u95f4\u91cc\u73cd\u60dc"} +{"id": "3006114", "video_name": "933b3e30-ef2a-54ec-9792-50a91367dcb7", "text": "\u5c55\u793a\u72fc\u548c\u9e21\u4e00\u8d77\u5ea6\u8fc7\u65f6\u5149\uff0c\u63a2\u7d22\u68ee\u6797\u5e76\u4e92\u76f8\u5b66\u4e60\u3002\u6447\u6446\u6865\u7684\u6311\u6218\u3002"} +{"id": "7003603", "video_name": "1f1ad859-3e98-5fb7-ab22-bb74be2579fa", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u6d77\u8c5a\u8dc3\u51fa\u6d77\u9762\u3002"} +{"id": "6004855", "video_name": "1d504729-cb67-5cf2-8756-f9bebe236457", "text": "\u8b66\u5bdf\u673a\u5668\u4eba\u5e26\u67aa\u548c\u98de\u884c\u6c7d\u8f66"} +{"id": "0005722", "video_name": "202b2f57-31b5-5b81-8f6d-97699a621b42", "text": "\u94c3\u6728\u730e\u9e70\u8dd1\u5230\u4e86\u5b83\u7684\u6700\u9ad8\u901f\u5ea6\u3002"} +{"id": "6004221", "video_name": "3a99ca4c-c38b-513d-bbbb-73bfb10b6f0c", "text": "\u5236\u4f5c\u51fa\u5730\u7403\u572810000\u5e74\u540e\u7684\u6837\u5b50\u3002"} +{"id": "1004144", "video_name": "4cc19377-ccd7-54c0-a20d-0fc5743720cc", "text": "\u67e5\u514b\u00b7\u8bfa\u91cc\u65af\u5750\u5728\u5c71\u4e0a\uff0c\u4ece\u8fdc\u5904\u5feb\u901f\u7f29\u653e\u5230\u975e\u5e38\u8fd1\u3002"} +{"id": "3003899", "video_name": "f04ad581-6acd-5691-a72f-4dedf9df1a1c", "text": "\u4e24\u53ea\u5c0f\u71d5\u5b50\u5728\u8fd9\u91cc\u98de\u6765\u98de\u53bb\u3002\u6625\u5929\u7684\u9c9c\u8273\u8272\u5f69\uff0c\u80cc\u666f\u662f\u7a3b\u8349\u5c4b\u3001\u5c4b\u6a90\u3001\u6811\u6728"} +{"id": "2007611", "video_name": "c6dddb2c-cb62-5fd9-8fc1-3ba859354001", "text": "\u4ec5\u4ec5\u663e\u793a\u5fc3\u7387\u76d1\u6d4b\u4eea\u6ca1\u6709\u5fc3\u8df3\u3002"} +{"id": "4002238", "video_name": "40c62ea8-2ce4-5ad7-8ac2-ff1b3a732ac2", "text": "\u8239\u8236\u96c6\u88c5\u7bb1\u8d38\u6613 \u4fe1\u606f\uff1aLOS PETETES (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3006048", "video_name": "856d1079-f29e-533d-a579-fc98a141e3af", "text": "\u4e00\u4e2a\u767d\u5934\u53d1\u7684\u52a8\u6f2b\u89d2\u8272\uff0c\u62e5\u6709\u53d1\u5c04\u84dd\u8272\u5f3a\u5927\u706b\u7130\u7684\u80fd\u529b\uff0c\u653b\u51fb\u4e00\u4e2a\u7ea2\u5934\u53d1\u7684\u52a8\u6f2b\u89d2\u8272\uff0c\u540e\u8005"} +{"id": "6002511", "video_name": "91a2f832-211f-5a5d-8695-b8dbe8f40906", "text": "\u91d1\u9ec4\u8272\u53f6\u5b50\u7684\u6811 1\u4e2a\u9644\u4ef6"} +{"id": "2004989", "video_name": "a05b3aff-4bab-5a8f-91b0-257dd24c03be", "text": "\u97e9\u56fd\u5973\u5b69\u6b63\u5728\u65e9\u6668\u7a97\u8fb9\u505a\u529f\u8bfe\u3002"} +{"id": "4004650", "video_name": "f1ba41dc-8310-5c6b-9dfa-59186d6dbbb3", "text": "\u4f0a\u6851\u7ed9\u767d\u8272\u5c0f\u72d7\u5361\u901a\u52a8\u753b\u63d0\u4f9b\u98df\u7269\u548c\u6c34\u3002"} +{"id": "2003745", "video_name": "f3865d8c-849e-5938-a58c-c96a0ab9078a", "text": "\u5c0f\u5154\u5b50\u5f00\u5fc3\u5730\u5728\u516c\u56ed\u91cc\u722c\u6765\u722c\u53bb\u3002"} +{"id": "5001435", "video_name": "770bad93-5292-5a49-8193-bb6b8cda2c12", "text": "\u76ae\u5361\u4e18\u6234\u7740\u8033\u673a\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u957f\u5bbd\u6bd4\u4e3a16:9\u3002"} +{"id": "0004792", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "\u5c55\u793a\u5e74\u8f7b\u7684\u5409\u4ed6\u624b\u5750\u5728\u5c71\u9876\u4e0a\uff0c\u4f18\u96c5\u5730\u98de\u8fc7\u5929\u7a7a\u7684\u9e1f\u513f\u52a8\u753b\uff0c\u4e3a\u8349\u548c\u82b1\u6dfb\u52a0\u5fae\u5999\u7684\u52a8\u753b"} +{"id": "2005550", "video_name": "c80600df-4ccb-58a6-ace3-105146bb70a3", "text": "\u606d\u559cSpaceX\u56e2\u961f\u5b8c\u6210\u7b2c250\u6b21\u730e\u9e70\u706b\u7bad\u7684\u7740\u9646\u3002"} +{"id": "4004221", "video_name": "0e934926-6f96-588a-90d2-ef59b6212681", "text": "\u73b0\u5b9e\u751f\u6d3b\u7684\u7535\u5f71\u573a\u666f\u4e16\u754c\uff0c\u5728\u90a3\u91cc\u6076\u9b54\u5df2\u7ecf\u5728\u5f81\u670d\u5730\u7403\u7684\u7ade\u6807\u4e2d\u83b7\u80dc\u3002"} +{"id": "0004447", "video_name": "0941fb82-80a5-5756-8d7d-8d3dd02ab1c0", "text": "\u7d27\u5f20\u3001\u5fae\u7b11\u3001\u8033\u8bed\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003885", "video_name": "b886b5fc-4b7d-5267-9135-57b724525a06", "text": "\u603b\u4f53\u6765\u8bf4\uff0c\u6bd4\u7279\u5e01\u4f5c\u4e3a\u4e00\u79cd\u521b\u65b0\u7684\u6570\u5b57\u8d27\u5e01\uff0c\u6539\u53d8\u4e86\u4f20\u7edf\u8d27\u5e01\u548c\u91d1\u878d\u7cfb\u7edf\u7684\u8fd0\u4f5c\u65b9\u5f0f\u3002\u5b83\u7684\u51fa\u73b0\u5f15\u53d1\u4e86\u6709"} +{"id": "5001860", "video_name": "c9d623f7-fb0e-51e7-a072-b759e96303fb", "text": "\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u5b87\u822a\u5458\uff0c\u591a\u5f69\u7684\u661f\u7cfb\uff0c\u80cc\u666f\u4e2d\u7684\u571f\u661f\u5448\u8fbe\u7c73\u6069\u00b7\u8d6b\u65af\u7279\u98ce\u683c\uff0c\u592a\u7a7a\u6587\u660e"} +{"id": "3004740", "video_name": "1c725840-7eac-56d5-925c-41fd50e66c28", "text": "\u4e00\u5339\u9a6c\u8df3\u5230\u4e00\u4e2a\u4eba\u8eab\u4e0a\uff0c\u5361\u901a\u98ce\u683c\uff0c\u6301\u7eed10\u79d2\u3002"} +{"id": "4003705", "video_name": "8ab5673f-83a8-5966-9ea0-4138d24e0566", "text": "\u4e00\u9635\u98ce\u5439\u6765\uff0c\u8863\u670d\u4e0a\u7684\u957f\u7ebf\u6761\u90fd\u5728\u52a8\uff0c\u5973\u4eba\u7728\u7740\u773c\u775b\uff0c\u624b\u548c\u5934\u53d1\u4e5f\u5fae\u5fae\u52a8\u4e86\u4e00\u4e0b\u3002"} +{"id": "7003349", "video_name": "3cf8f318-3d93-5573-b2c3-8ac59daaec81", "text": "\u5e26\u6709\u4e00\u4e2a\u7a7f\u7740\u7a7a\u624b\u9053\u670d\u7684\u5b69\u5b50\u7684\u76ae\u514b\u65af\u6d77\u62a5"} +{"id": "1003478", "video_name": "4076168f-19f5-5575-9cdd-ea4c737d2b5f", "text": "translation: \u6ce2\u6d6a\u7ffb\u6eda\u5728\u6d77\u4e0a\u3002"} +{"id": "6002695", "video_name": "686e2506-2a3c-597a-a0a2-c8d01ec2a355", "text": "\u5e7d\u7075\u519b\u56e2\u88ad\u51fb\u5149\u4e4b\u57ce\uff0c\u9ed1\u8272\u7535\u5f71\uff0c\u6a21\u7cca\u7684\u753b\u9762\uff0c\u6296\u52a8\u548c\u6545\u969c\u3002"} +{"id": "6002200", "video_name": "c93d2cd3-6297-5808-ac10-aa3d58027d4c", "text": "\u5362\u514b\u00b7\u5929\u884c\u8005\u7528\u5149\u5251\u8fdb\u884c\u7edd\u5730\u8bad\u7ec3\u3002"} +{"id": "1005474", "video_name": "648dfd81-c2b4-5eee-bfc1-c826e2e7b66c", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u7684\u8d70\u5eca\u91cc\uff0c\u53f3\u8fb9\u7684\u5899\u4e0a\uff0c\u4e0d\u6e05\u6670\u7684\u5149\u6591\u53d8\u6210\u4e86\u6df1\u7a7a\u4e2d\u60ca\u4eba\u7684\u661f\u7a7a\u56fe\u50cf\uff0c\u95ea\u70c1"} +{"id": "6003541", "video_name": "ee0f410d-57f9-534e-bb73-d3a521269fcd", "text": "\u592a\u7a7a\u822a\u5929\u5668\u4ece\u5de6\u4fa7\u8fdb\u5165\u592a\u7a7a\uff0c\u6f2b\u6e38\u5730\u7403\u3002"} +{"id": "2003227", "video_name": "fb722329-7333-56d9-bc6a-dda20cded469", "text": "\u68ee\u6797\uff0c\u65af\u582a\u7684\u7eb3\u7ef4\u4e9a\uff0c\u9ed1\u6697\uff0c\u771f\u5b9e\uff0c\u80cc\u666f\u4e2d\u6709\u8f7b\u5fae\u7684\u70df\u96fe\u8fd0\u52a8\uff0c\u76f8\u673a\u5411\u53f3\u79fb\u52a8\uff0c\u5426\u5b9a"} +{"id": "7004514", "video_name": "c114361f-7c80-5f71-820f-5daea35f3031", "text": "\u4e00\u4e2a\u4eba\u7684\u624b\u6b63\u4ece\u4e00\u7247\u9ed1\u6697\u68ee\u6797\u7684\u8349\u5730\u4e0a\u62ff\u8d77\u4e00\u4e2a\u95ea\u4eae\u7684\u9752\u8272\u540a\u5760\uff0c\u5728\u4e00\u4e2a\u9634\u6c89\u7070\u6697\u7684\u4e0b\u5348\u3002"} +{"id": "0005978", "video_name": "2451b04e-c95c-5105-9bf4-ac039679c3ed", "text": "\u4e00\u4e2a\u84dd\u8272\u7684\u5723\u8bde\u751f\u7269\u5750\u5728\u770b\u7535\u89c6\uff0c\u6234\u7740\u5723\u8bde\u5e3d\uff0c\u5916\u9762\u4e0b\u96ea\u3002"} +{"id": "6002770", "video_name": "3a482ea0-b6b1-5403-8b46-cea08f654b7c", "text": "\u827e\u8fea\u00b7\u58a8\u83f2\u56de\u5f52\u300a\u8d1d\u5f17\u5229\u5c71\u8b66\u63a2\u300b\u884c\u5217\u3002"} +{"id": "2006671", "video_name": "299c41e9-260f-52df-82b6-79138f1f80e9", "text": "\u5728\u4e00\u8258\u8239\u7684\u7532\u677f\u4e0a\uff0c\u63cf\u7ed8\u4e00\u4f4d\u7a7f\u7740\u5236\u670d\u7684\u5e74\u8f7b\u519b\u6821\u5b66\u5458\uff0c\u5728\u7ecf\u9a8c\u4e30\u5bcc\u7684\u6d77\u5458\u6307\u5bfc\u4e0b\u5b66\u4e60"} +{"id": "0004492", "video_name": "09dde9c3-74ed-5d6a-99e5-d283af26d25e", "text": "\u4e00\u53ea\u79d1\u83ab\u591a\u9f99\u6b63\u5728\u5403\u897f\u74dc\u3002"} +{"id": "5001863", "video_name": "56c71fee-af11-5cf7-ae72-ac1957dcb5cb", "text": "\u968f\u7740\u79cb\u5929\u63a5\u8fd1\u5c3e\u58f0\uff0c\u6211\u4eec\u7684\u89d2\u8272\u5728\u68ee\u6797\u4e2d\u592e\u642d\u8d77\u4e86\u5e10\u7bf7\u3002\u4ed6\u5e26\u7740\u5b81\u9759\u7684\u5fae\u7b11\u8d70\u8fdb"} +{"id": "1005005", "video_name": "5c8b6d4f-31c7-523e-805a-76f970af0098", "text": "\u7ea2\u53d1\u5973\u6027\u5065\u8eab\u6a21\u7279\u5728\u955c\u5b50\u524d\u5fae\u7b11\u3002"} +{"id": "8003557", "video_name": "700254cf-1267-5549-85a7-a218f04c2ea1", "text": "\u706b\u8f66\u65b9\u8f6e\u8bad\u7ec3\uff1a\u4e00\u4e2a\u7528\u65b9\u8f6e\u5236\u4f5c\u7684\u73a9\u5177\u706b\u8f66\uff0c\u4f7f\u5b83\u65e0\u6cd5\u50cf\u4f20\u7edf\u706b\u8f66\u90a3\u6837\u987a\u7545\u6eda\u52a8\u3002"} +{"id": "8003301", "video_name": "21cf77c8-19de-55d8-8ce7-339e5eadf36a", "text": "\u5e7f\u5dde\u665a\u4e0a\u5fd9\u788c\u7684\u5c0f\u5403"} +{"id": "1003116", "video_name": "39534b12-294c-5a8e-b224-8f9b947ceb7b", "text": "\u7f8e\u4e3d\u7684\u975e\u6d32\u516c\u4e3b\uff0c\u9762\u90e8\u7279\u5199\uff0c\u7728\u773c\u775b\u3002"} +{"id": "7004882", "video_name": "19b7e784-4f64-5c38-8767-f7289856c118", "text": "\u706b\u8f66\u7a97\u5916\u98d8\u8fc7\u7684\u4e91\u5f69"} +{"id": "6002036", "video_name": "e1249dc9-02bb-5a6d-85c3-d3a66b749107", "text": "\u4e00\u4e2a\u7a7f\u7740\u7eff\u8272\u5939\u514b\u7684\u5feb\u9012\u5458\u6b63\u5728\u4e0e\u4e00\u4e2a\u7a7f\u7740\u9ec4\u8272\u5939\u514b\u7684\u5feb\u9012\u5458\u6253\u6597\uff0c\u5177\u6709\u51c6\u786e\u7684\u89e3"} +{"id": "0003144", "video_name": "3801ee1a-62ff-52b3-85d6-4774867d67c1", "text": "\u80cc\u666f\u4e2d\u6709\u5f88\u591a\u6625\u5929\u7684\u6c1b\u56f4\uff0c\u4e00\u53ea\u72d7\u72ec\u81ea\u5750\u5728\u96e8\u4e2d\u3002"} +{"id": "3006496", "video_name": "69e08a03-d2f5-504e-aad4-ebf85eb37352", "text": "\u4e00\u4f4d\u56fd\u738b\u5e26\u9886\u4ed6\u7684\u519b\u961f\u53bb\u4e0e\u53e6\u4e00\u4e2a\u56fd\u738b\u4f5c\u6218\u3002"} +{"id": "6003958", "video_name": "eb3210fe-bc1e-5763-81d9-4f4884c6fa3c", "text": "\u5f3a\u5927\u7684\u672a\u6765\u673a\u5668\u4eba\u6c7d\u8f66\u5728\u8def\u4e0a\u7684\u56fe\u50cf\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "3003425", "video_name": "064c7dd4-2015-5ab5-baf8-1f8510799bbc", "text": "50\u5e74\u4ee3\u5973\u6027\u88ab\u5916\u661f\u4eba\u7ed1\u67b6\u3002"} +{"id": "6004686", "video_name": "4e81086f-71f0-5e83-9e87-3304a99b4385", "text": "\u670b\u53cb\u4eec\u5077\u770b\u4e00\u4e2a\u52a8\u7269\u597d\u50cf\u7528\u4e0d\u540c\u7684\u8bed\u8a00\u4ea4\u6d41\u7684\u6d1e\u7a74\u6216\u53e4\u6cd5\u3002"} +{"id": "5001105", "video_name": "732bf01d-cb0b-5bc6-bac0-7faee429a78c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96e8\u5929\u7a97\u6237\u540e\u62bd\u70df\u3002"} +{"id": "0003579", "video_name": "3fdbb991-acdb-5cc2-9532-622d27a3a2fa", "text": "\u718a\u732b\u5728\u6905\u5b50\u4e0a\u8df3\u821e\u3002\u7559\u8a00\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002698", "video_name": "0ad2ad11-f08d-5604-805b-4e6e48b6501a", "text": "\u4ece\u4e00\u4e2a\u5e73\u548c\u7684\u5668\u4e50\u65cb\u5f8b\u5f00\u59cb\uff0c\u53cd\u6620\u51fa\u5949\u732e\u548c\u656c\u754f\uff0c\u9010\u6e10\u5efa\u7acb\u671f\u5f85\u3002"} +{"id": "1004579", "video_name": "55226a17-9cbd-59f4-889c-3c0fc2c517d9", "text": "\u4ece\u592a\u7a7a\u4e2d\u5207\u6362\u5230\u60ca\u4eba\u7684\u5730\u7403\u666f\u8c61\u3002"} +{"id": "2004348", "video_name": "95cdd8e7-60f0-5835-8817-d46fe8729569", "text": "\u6c34\u4e0b\u7eff\u8272\u6e56\u6cca\u9a6c\u620f\u56e2\u590d\u53e4\u8001\u65e7\u7684\u5e7b\u60f3\u751f\u9508\u65cb\u8f6c\u6728\u9a6c\uff0c\u914d\u4ee5LED\u706f\u5728\u9ed1\u6697\u6c1b\u56f4\u4e2d"} +{"id": "4003169", "video_name": "40b32c7a-ba7e-5ae2-b74b-1d074f9df12b", "text": "\u5370\u5ea6\u795e\u7947\u5fb7\u7f57\u7eb3\u67e5\u4e9a\u62c9\u624b\u6301\u4e00\u67b6\u65e0\u4eba\u673a\uff0c\u5728\u767d\u8272\u80cc\u666f\u4e0b\uff0c\u89c6\u91ce\u58ee\u89c2\u3002"} +{"id": "3004704", "video_name": "bed5dd17-345c-5d6d-9359-2e0cff474889", "text": "\u5916\u6c47\u4ea4\u6613\u5e73\u53f0\u663e\u793a\u5e02\u573a\u4ef7\u683c\u4e0a\u6da8\u3002"} +{"id": "2006479", "video_name": "3c2999f4-e078-5a61-a9b2-c5cdc42dbd62", "text": "\u661f\u7403\u5927\u6218\u7535\u5f71\u7684\u6f14\u804c\u5458\u8868"} +{"id": "8002219", "video_name": "6b97687f-8d42-5fcb-934c-d36474ad36c1", "text": "\u6d77\u8c79\u548c\u6d77\u9f9f\u5728\u6d77\u6d0b\u91cc\u63e1\u624b\u3002"} +{"id": "8001987", "video_name": "69295a6d-8ed8-530f-9f4b-9b31c155e198", "text": "\u5236\u4f5c\u68ee\u6797\u7684\u53d8\u7126\u89d2\u5ea6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004834", "video_name": "0ffc99e9-b413-5450-b341-e67d229d2df0", "text": "\u5df4\u65af\u5149\u5e74\u7528\u6fc0\u5149\u7784\u51c6\u7956\u683c\u3002"} +{"id": "8002383", "video_name": "705b26ab-c8a9-545e-a9b7-07d9e8437716", "text": "Translation: \u54c8\u5229\u00b7\u6ce2\u7279\u4e0e\u6b7b\u4ea1\u5723\u5668"} +{"id": "3003835", "video_name": "2a070fed-b610-5540-8fa1-5a2f4bc7cd24", "text": "\u7537\u5b69\u5728\u9662\u5b50\u91cc\u73a9\u8db3\u7403\u3002"} +{"id": "0006824", "video_name": "33af77ff-d5b3-5498-8964-3a2cfcd39021", "text": "\u9ad8\u6e05\u6444\u5f71\u3001\u5e7f\u544a\u62cd\u6444\uff0c\u70b8\u9e21\u4ece\u7a7a\u4e2d\u843d\u5728\u83b4\u82e3\u4e0a\u3002"} +{"id": "3005775", "video_name": "010c97b0-0cbb-5453-8033-103299557657", "text": "\u9a6c\u514b\u897f\u59c6\u662f\u5728\u53e4\u7f57\u9a6c\u7ade\u6280\u573a\u4e0a\u575a\u97e7\u4e0d\u62d4\u7684\u8c61\u5f81\uff0c\u57284K\u4e2d\u5448\u73b0\u3002"} +{"id": "2007927", "video_name": "857d8de3-f08b-5a10-b3ea-557b36d8925f", "text": "\u90a3\u4e2a\u57ce\u5e02\u7684\u80af\u5fb7\u57fa\u662f\u7f8e\u5473\u7684\u6770\u4f5c\uff0c4K\uff0c\u6700\u4f73\u54c1\u8d28\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "7003567", "video_name": "9f81ed9e-39f0-5e69-bc2a-48aef40351d3", "text": "\u5c55\u793a\u5927\u578b\u3001\u706b\u70ed\u7684\u65e5\u98df\u65e5\u5195\u3001\u5730\u7403\u7684\u8f6e\u5ed3\u3001\u8d85\u903c\u771f\u76848K\u753b\u9762\u3002"} +{"id": "1005354", "video_name": "627f81aa-7649-59b9-a91f-5f0f2eb0166a", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u996e\u7528\u51b0\u6dc7\u6dcb\u7684\u8fd1\u666f\u955c\u5934\u3002"} +{"id": "2006243", "video_name": "872f3eaa-26a5-53ee-87f6-8e9470120e69", "text": "\u5728\u79cb\u96e8\u4e2d\u7684\u57ce\u5e02\u91cc \u4e13\u5bb6\u7ebf (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4002342", "video_name": "18349bed-b35e-5a8f-9ee4-a491ac3f563d", "text": "\u77e9\u9635\u4e2d\u7684\u7eff\u8272\u4ee3\u7801\u884c \u4fe1\u606f\uff1aMATRIX\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "5001090", "video_name": "696df6f7-8db1-549a-8156-abe57c189c23", "text": "\u4e00\u4e2a\u624b\u62ff\u4e66\u672c\u7684\u5e74\u8f7b\u9b54\u672f\u5e08\u72ec\u81ea\u8d70\u5728\u5ce1\u8c37\u91cc\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99"} +{"id": "2005165", "video_name": "7348bfdf-d801-5a3c-8ae6-3c79e6ffb4e2", "text": "\u4fdd\u65f6\u6377922\u5168\u9ed1\u540e\u5c3e\u6697\u8272\u56fe\u7247\uff0c\u9002\u7528\u4e8e\u624b\u673a\u58c1\u7eb8\u3002"} +{"id": "7004768", "video_name": "8ab2ff7c-9b2a-50ab-a5ca-040faaeea49b", "text": "\u7eff\u5b9d\u77f3\u6c34\u4e2d\u6e38\u52a8\u7684\u9713\u8679\u9c7c"} +{"id": "2006469", "video_name": "7be0e5d4-ed94-5839-bc85-dfad7a48f3e0", "text": "\u91cd\u91d1\u5c5e\u97f3\u4e50\u4f1a\uff0c\u62e5\u6324\u7684\u73af\u5883\uff0c\u821e\u53f0\u706f\u5149\uff0c\u821e\u53f0\u8bbe\u8ba1\uff0c\u653e\u5927\u3002"} +{"id": "7004700", "video_name": "c1d0d23f-3459-5d41-8725-fcf586061e43", "text": "\u730e\u4eba\u62c9\u5f00\u5f13\uff0c\u7784\u51c6\u4e0d\u77e5\u60c5\u7684\u9e20\u9e1f\uff0c\u51c6\u5907\u53d1\u52a8\u653b\u51fb\u3002"} +{"id": "2006854", "video_name": "ecf41950-d802-528e-b3e9-c31c31b08a41", "text": "\u795e\u5e99\u4e2d\u592e\u7684\u9ab6\u8f6e\u3002"} +{"id": "1003997", "video_name": "4a0b96f9-4609-556b-843c-01b1db040d25", "text": "\u6df1\u5165\u5230\u6211\u4eec\u661f\u7403\u6700\u6df1\u7684\u90e8\u5206\u3002\u6700\u4f4e\u70b9\u662f\u6311\u6218\u8005\u6df1\u6e0a\uff0c\u8fbe\u5230\u4e86\u4ee4\u4eba\u7729\u6655\u768410,984\u7c73\u6df1\u5ea6\u3002"} +{"id": "1003905", "video_name": "48094f15-0e02-5cc8-abe0-f153e2170d34", "text": "\u5c06\u9644\u56fe\u4e2d\u6e56\u9762\u4e0a\u5347\u817e\u7684\u96fe\u6c14\u505a\u6210\u52a8\u753b\u3002"} +{"id": "7002357", "video_name": "c4afd603-d795-52ca-8f77-47dc885a1d33", "text": "\u4e00\u4e2a\u73bb\u7483\u82b1\u74f6\u56e0\u4e3a\u5bd2\u51b7\u800c\u7834\u88c2\u3002\u51b0\u51b7\u900f\u660e\u7684\u971c\u51bb\u5149\u7ebf\u8ffd\u8e2a\u7684\u903c\u771f\u7535\u5f71"} +{"id": "7004492", "video_name": "58bc2cd1-4e16-5ef3-a6e1-8e96def9f8e8", "text": "\u6c99\u4e18\u7535\u5f71\u4e2d\u7684\u89d2\u8272\u5728\u6c99\u6f20\u98ce\u4e2d\u5448\u73b0\u9ed1\u767d\u8138\u5e9e\u3002"} +{"id": "2005071", "video_name": "24b8e081-d4d7-562b-9183-4cb6d63e22b1", "text": "\u4f18\u8fbe\u5a01\u662f\u4e00\u53ea\u6709\u624d\u534e\u7684\u54c8\u58eb\u5947\uff0c\u5728\u590f\u5a01\u5937\u7684\u5927\u6d6a\u4e0a\u51b2\u6d6a\u3002"} +{"id": "0006021", "video_name": "25277438-b78a-50fc-964a-b55c4e6e533b", "text": "\u5f7c\u5f97\u7eb3\u94a6\u5fb7\u62c9\u6709\u4e00\u4e2a\u751f\u52a8\u7684\u68a6\uff0c\u662f\u4e00\u4e2a\u5370\u5ea6\u5b69\u5b50\u542c\u5230\u8fdc\u5904\u7684\u558a\u58f0\u548c\u770b\u5230\u4eba\u4eec\u60ca\u614c\u5954\u8dd1\u7684"} +{"id": "0006168", "video_name": "279aeb96-7686-5771-9bca-d2db778070ad", "text": "\u516c\u4e3b\u957f\u7740\u4e00\u5934\u9ed1\u8272\u957f\u53d1\uff0c\u5728\u5c71\u7684\u524d\u9762\u4e0eHello Kitty\u8df3\u821e\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3003410", "video_name": "bb078d57-133b-50e8-be24-1b484635d097", "text": "\u6e56\u4e2d\u95f4\u7684\u7f8e\u4e3d\u5973\u795e"} +{"id": "0003364", "video_name": "3c496800-4b34-59af-adfe-f52d03cacad4", "text": "\u5728\u4e00\u4e2a\u88ab\u7eff\u8272\u7a3b\u7530\u73af\u7ed5\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u4e00\u5bf9\u540d\u4e3a\u963f\u4f9d\u838e\u548c\u963f\u4f9d\u838e\u7684\u540c\u5375\u53cc\u80de"} +{"id": "0003082", "video_name": "36b44b51-f436-5bf8-b9dc-b5e9b1472af8", "text": "\u5361\u901a\u58eb\u5175\u7a7f\u7740\u7eff\u8272\u8863\u670d\u8dd1\u8fdb\u6765\uff0c\u7136\u540e\u53d1\u751f\u7206\u70b8\uff0c\u4ed6\u4eec\u5316\u4e3a\u5c18\u571f\uff0c\u80cc\u666f\u662f\u9713\u8679\u9ec4"} +{"id": "3005206", "video_name": "adaf685c-3c5c-57c4-8d2a-5828a614a8e4", "text": "\u4e00\u4f4d\u7f8e\u9e97\u7684\u65e5\u672c\u52d5\u6f2b\u59bb\u5b50\uff0c\u672a\u4f86\u7684\u6a5f\u68b0\u76d4\u7532\u5957\u88dd\uff0c\u5929\u4f7f\u822c\u7684\u81c9\u5b54\uff0c\u9b54"} +{"id": "1006490", "video_name": "76d91ac2-08f3-5325-a347-87759f158f3c", "text": "\u5973\u5b50\u8fdb\u884c\u8212\u7f13\u6309\u646930\u79d2\u949f\u3002"} +{"id": "5001058", "video_name": "558b9ae0-cccf-5ff6-8b92-58d6302121ae", "text": "\u4e91\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u5730\u79fb\u52a8\u3002\u4fe1\u606f\uff1aTE AMO ELIANA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005764", "video_name": "6a015c58-4495-56f0-86fe-660438a0d681", "text": "\u5728\u7ecf\u5178\u7684\u5367\u5ba4\u5e03\u7f6e\u4e2d\u62cd\u6444\u6a21\u7279\u7167\u7247\uff0c\u7528\u67d4\u548c\u7684\u706f\u5149\u548c\u5962\u534e\u7684\u9053\u5177\u6355\u6349\u5185\u8863\u7684\u4f18\u96c5\u548c\u6027"} +{"id": "8003214", "video_name": "c434fea9-6391-5f86-b7e3-01292a2dc18f", "text": "\u572870\u5e74\u4ee3\u827a\u672f\u98ce\u683c\u7684\u4e2d\u7b49\u683c\u5f0f\u4e0b\uff0c\u4e00\u4e2a\u7ad9\u5728\u5c71\u4e0a\u7684\u7537\u4eba\uff0c\u4ed6\u7684\u811a\u4e0b\u6709\u706b\uff0c\u5468\u56f4\u6709\u8272\u5f69\u6591\u6593\u7684\u82b1"} +{"id": "5001401", "video_name": "d3b8477e-5d09-5309-b1dc-aaa6c3d18ad1", "text": "\u5728\u5730\u94c1\u4e2d\u7684\u4eba\u7fa4\u4e2d\uff0c\u6709\u4e00\u4e2a\u9ec4\u8272\u7684\u5362\u7c73\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "7002683", "video_name": "c1dc70cb-6172-5b1c-909b-88fd92fee400", "text": "\u795e\u79d8\u7684\u9762\u5177\u5feb\u901f\u8f49\u63db\uff0c\u8986\u84cb\u8457\u8a6d\u7570\u7684\u9670\u5f71\u3002\u5feb\u901f\u526a\u8f2f\u88fd\u9020\u51fa\u4e00\u7a2e\u795e"} +{"id": "0003104", "video_name": "371295c6-5489-53ff-a00c-c4be269faba4", "text": "\u89c6\u9891\u5f00\u5934\uff0c\u4e3b\u89d2\u7531\u6b4c\u624b\u626e\u6f14\uff0c\u5728\u4e00\u4e2a\u666e\u901a\u7684\u623f\u95f4\u91cc\u5750\u7740\u3002\u706f\u5149\u51b7\u6de1\uff0c\u5899\u58c1\u4e2d\u6027\u3002\u97f3\u4e50\u8f7b"} +{"id": "2007505", "video_name": "188bd04b-f3e9-5517-9589-601b4f2f4727", "text": "\u8dea\u5728\u5730\u4e0a\u7684\u4eba\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "0004542", "video_name": "0ae3251e-7d36-5b1d-994b-0466bd8ecdaf", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u8dea\u5728\u5f3a\u5927\u7684\u5973\u6027\u673a\u5668\u4eba\u6218\u58eb\u811a\u4e0b\u7948\u6c42\u5bbd\u6055\u3002"} +{"id": "2005812", "video_name": "6566a499-fd81-5430-a8af-7c399a24d8bc", "text": "\u5ba4\u5185\u548c\u5ba4\u5916\u4e00\u6837\u4ee4\u4eba\u4e0d\u5b89\u2014\u2014\u5e03\u6ee1\u767d\u8272\u5e8a\u5355\u7684\u7070\u5c18\u8986\u76d6\u7684\u5bb6\u5177\u3001\u773c\u775b\u4f3c\u4e4e\u968f\u7740"} +{"id": "1003515", "video_name": "40e9ad14-afaf-532e-85c4-2dbca7680c7b", "text": "\u4e00\u90e8\u4ee5\u7c73\u5f00\u6717\u57fa\u7f57\u827a\u672f\u4e3a\u7075\u611f\u7684\u52a8\u753b\u7535\u5f71\uff0c\u6709\u82b1\u3001\u5929\u4f7f\u3001\u4ed9\u5973\u548c\u67d1\u6a58\u4e4b\u795e\u5728\u738b\u5ba4\u88c5"} +{"id": "2006184", "video_name": "4f783925-5596-53f2-b496-84f4b9565c1d", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\u6b63\u5411\u6211\u8dd1\u6765\u3002\nSource sentence: He is playing basketball with his friends. \n\u4ed6\u6b63\u5728\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u6253\u7bee\u7403\u3002"} +{"id": "2004070", "video_name": "05514e50-9749-5c7e-b21e-aa5b5a93b7bf", "text": "\u4eba\u7fa4\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002\u9ec4\u91d1\u65f6\u95f4\u3002\u4ece\u8fdc\u5904\u62cd\u6444\u3002\n\nSource sentence: I would like to order a large pepperoni pizza for delivery to my address, please. \n\u6211"} +{"id": "8001184", "video_name": "5f5f8b71-5b46-5463-bb3a-807fc99529b4", "text": "\u4e00\u4f4d\u5728\u8239\u65c1\u6cb3\u6d41\u4e0a\u7684\u6e14\u6c11\u6355\u5230\u4e86\u9c7c\u3002"} +{"id": "7004938", "video_name": "97ac7cb2-2eb5-5b9e-b24b-0f9106c1ca4c", "text": "\u9676\u4fd1\u548c\u9a6c\u4f7f\u7528\u667a\u80fd\u624b\u673a\u3002"} +{"id": "6004351", "video_name": "7c714537-498c-50e9-adfe-c75fda6d6525", "text": "1968\u5e74\u5916\u661f\u4eba\u5165\u4fb5\uff0c\u90aa\u6076\u7684\u6218\u6597\u573a\u9762\uff0c\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u98ce\u683c\uff0c35\u6beb\u7c73\u3002"} +{"id": "8003111", "video_name": "74de7fd6-388a-5bf7-b6f6-7c7301255f2d", "text": "\u5f88\u4e45\u5f88\u4e45\u4ee5\u524d\uff0c\u5728\u5f69\u8679\u7684\u5c3d\u5934\uff0c\u6709\u4e00\u4e2a\u795e\u5947\u7684\u5730\u65b9\u53eb\u505a\u5f69\u8679\u56fd\u3002\u8fd9\u4e2a\u738b\u56fd\u5145\u6ee1\u4e86"} +{"id": "2003001", "video_name": "af48ae60-7f97-5eb1-850c-3b59b80c2a9a", "text": "\u53ef\u7231\u7684\u8fea\u58eb\u5c3c\u5361\u901a\u98ce\u683c\uff0c\u76ae\u514b\u65af\u7535\u5f71\u3002\u4ee5\u300a\u5723\u7ecf\u300b\u4e2d\u7684\u4ee5\u5229\u4e9a\u5411\u4eba\u4eec\u4f20\u9053\u4e3a\u4e3b\u9898\u30023D"} +{"id": "0005439", "video_name": "1ad0616c-eb6f-505f-bc8e-374f29a09208", "text": "\u5a5a\u793c\u3001\u4e24\u53ea\u718a\u3001\u8702\u871c\u3001\u8fdc\u89c6"} +{"id": "6004236", "video_name": "936351e5-9a31-597e-b278-330035dbafce", "text": "\u4e00\u4e2a\u975e\u5e38\u6709\u8da3\u7684\u4eba\uff0c\u4e13\u6ce8\u4e8e\u4ed6\u7684\u5de5\u4f5c\u30029:16"} +{"id": "6004083", "video_name": "7709deab-9035-5ba6-8e50-ffb2cab70223", "text": "\u8c6a\u8f66\u5728\u5c71\u8def\u4e0a\u884c\u9a76\uff0c\u7535\u5f71\u822c\u7684\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u52a8\u6001\u7684\uff0c\u4fef\u89c6\u56fe\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9633\u5149\u6e17\u6f0f\uff0c\u5f71\u50cf"} +{"id": "6004590", "video_name": "e92ee271-4b90-5c74-b454-6bc36d5c7428", "text": "\u4e00\u5343\u4eba\u4ee5\u7bad\u5934\u5f62\u5f0f\u79fb\u52a8\u3002"} +{"id": "3005886", "video_name": "ca1445bd-a397-5226-94db-4fba7cc6caaa", "text": "Python\u7f16\u7a0b\u8bed\u8a00\u7684\u6807\u5fd7\uff0c\u7c7b\u4f3c\u4e8e\u8d5b\u535a\u670b\u514b\uff0c\u9876\u90e8\u6709\u95ea\u7535\u6253\u51fb\u3002"} +{"id": "8001155", "video_name": "61e8eb41-39f3-5e6c-97af-36aa983bb3ea", "text": "\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u5973\u5b69\u548c\u7a7f\u7740\u7ea2\u8272\u886c\u886b\u548c\u77ed\u88e4\u7684\u7537\u5b69\u624b\u62c9\u624b\u5728\u5c71\u6d1e\u91cc\u7684\u6cb3\u6d41\u4e2d\u884c"} +{"id": "4004733", "video_name": "55943fdb-5fc3-5bd0-be08-fd305c4a86d5", "text": "\u5973\u795e\u963f\u4f5b\u6d1b\u72c4\u5fd2\uff0c\u53e4\u5e0c\u814a\u91d1\u8272\u957f\u88d9\uff0c\u6124\u6012\u7684\u5168\u8eab\u795e\u91c7\uff0c\u4e00\u624b\u6307\u5411\u7a7a\u4e2d\u3002"} +{"id": "0004497", "video_name": "09ee7af9-6ec9-5667-a146-c8c39b2eba48", "text": "\u5317\u534a\u7403\u6700\u957f\u7684\u4e00\u5929"} +{"id": "6002998", "video_name": "e91bd944-b5ec-570b-a856-af350229a2ca", "text": "\u4e00\u4f4d\u6709\u68d5\u8272\u5377\u53d1\u7684\u5341\u51e0\u5c81\u7537\u5b69\u5750\u5728\u7535\u8111\u6570\u5b57\u4eba\u6a21\u578b\u65c1\uff0c\u4ed6\u548c\u6a21\u578b\u4e92\u76f8\u5bf9\u89c6\uff0c\u7167\u7247\u975e\u5e38\u8be6\u7ec6\uff0c"} +{"id": "2004785", "video_name": "a7df83ba-796b-5155-bb70-c47a0778d4ef", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u5f2f\u4e0b\u8170\u5728\u8377\u5858\u8fb9\u9493\u53d6\u6c34\u4e2d\u7684\u6708\u4eae\uff0c\u53e4\u5178\u4e2d\u56fd\u753b\u98ce\u683c\uff0c3D\uff0c16:9\u3002"} +{"id": "2005417", "video_name": "c53bd71a-ddf2-5d63-bf64-0d6e79b6da69", "text": "\u6c34\u5411\u5de6\u53f3\u6f02\u6d6e\u3002"} +{"id": "3003664", "video_name": "87ce5f40-288a-5c59-94e5-c77a9260f123", "text": "20\u4e16\u7eaa40\u5e74\u4ee3\u7684\u7535\u5f71\u5236\u7247\u4eba\u5728\u529e\u516c\u684c\u4e0a\u6570\u7740\u4e00\u5806\u949e\u7968\uff0c\u4ed6\u65c1\u8fb9\u6709\u4e00\u4f4d\u975e\u5e38\u6027\u611f\u7684\u91d1\u53d1\u79d8\u4e66\u3002"} +{"id": "0004638", "video_name": "0c662239-d71e-5e17-a732-056b2b792c59", "text": "\u4e00\u95f4\u795e\u79d8\u7684\u70bc\u91d1\u5b9e\u9a8c\u5ba4\u5728\u591c\u665a\u51fa\u73b0\uff0c\u661f\u7a7a\u548c\u8fdc\u5904\u7684\u706f\u5149\u6620\u7167\u5728\u5b83\u4e0a\u9762\u3002"} +{"id": "0005346", "video_name": "1932d8cf-b712-526d-b005-932c0083960a", "text": "\u72d7\u4ee5\u8b66\u89c9\u548c\u4e13\u6ce8\u7684\u6001\u5ea6\uff0c\u51ed\u501f\u5176\u72ec\u7279\u7684\u6bdb\u76ae\u548c\u777f\u667a\u7684\u773c\u795e\uff0c\u8f6c\u5411\u68ee\u6797\u4e2d\u4e00\u5904"} +{"id": "0003628", "video_name": "40c0b4ea-2b55-55ba-9c06-d9df7ea4cef1", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u5370\u5ea6\u8857\u5934\u7f8e\u98df\u5e02\u573a\uff0c\u6709\u7740\u4e94\u989c\u516d\u8272\u7684\u644a\u4f4d\u3001\u65d7\u5e1c\u548c\u4e00\u4e2a\u4e2d\u592e\u7684chaat\u644a\u4f4d\uff0c"} +{"id": "0004624", "video_name": "0c1d497c-d312-5ec2-8e67-bf404f892d74", "text": "\u57fa\u8def\u4f2f\u5929\u4f7f\u624b\u6301\u706b\u7130\u5b9d\u5251\uff0c\u5b88\u62a4\u4f0a\u7538\u56ed\u7684\u6811\u3002"} +{"id": "4003310", "video_name": "3e2681f3-378f-5dc8-99bd-72ff723f3f35", "text": "145\u5e73\u65b9\u7c73\u7684\u623f\u5c4b\u5ba4\u5185\u8bbe\u8ba1"} +{"id": "8001945", "video_name": "9ded0e46-15f5-5530-8b0b-0e8c60ba76ad", "text": "\u5916\u661f\u4eba\u5165\u4fb5\u5730\u7403\uff0c\u4eba\u4eec\u5728\u9003\u8dd1\u3002"} +{"id": "1003889", "video_name": "47bb8b63-2b44-5cf5-930d-9b86275546bc", "text": "\u5728Minecraft\u4e2d\u73a9\u800d\u7684Minecraft\u68a6\u60f3\u3002"} +{"id": "8003022", "video_name": "9c4f93f4-9305-5f14-8c73-b02f1f4a81ae", "text": "\u6c83\u4f26\u00b7\u5df4\u83f2\u7279\u5750\u5728\u90a3\u91cc\uff0c\u56e0\u67e5\u7406\u00b7\u8292\u683c\u53bb\u4e16\u800c\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "8002919", "video_name": "540b86c9-3190-5264-92b4-8946ba483194", "text": "\u4e00\u4e2a\u5c0f\u5361\u901a\u5973\u5a74\uff0c\u5979\u5728\u670b\u53cb\u8eab\u65c1\u8df3\u8dc3\u7740\uff0c\u5feb\u4e50\u5730\u73a9\u800d\u7740\u3002"} +{"id": "3005096", "video_name": "17afc7d1-3e3d-55ee-91b0-d970b8367168", "text": "\u7f8e\u4e3d\u7684\u5927\u5b66\u5973\u751f\u5728\u8bfe\u684c\u4e0a\u5199\u5b57\uff0c\u7528\u94c5\u7b14\u548c\u7b14\u8bb0\u672c\uff0c\u540c\u65f6\u7ffb\u7740\u767d\u773c\u3002"} +{"id": "5001852", "video_name": "73ae164f-defc-57c7-8481-4f804fd25cdd", "text": "\u5723\u8bde\u8001\u4eba\u5728\u592a\u9633\u4e0b\u50cf\u5438\u8840\u9b3c\u4e00\u6837\u878d\u5316\uff0c\u6781\u5149\u76f8\u673a\u590d\u53e4\u3002"} +{"id": "6003651", "video_name": "4da6384d-97e7-55d4-aa03-b91c48b17e9d", "text": "\u53ef\u7231\u7684\u5df4\u54e5\u72ac\u5728\u795e\u79d8\u7684\u68ee\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "2003587", "video_name": "976922d3-5486-5af2-988a-7229f6af95d9", "text": "\u7ed9\u6211\u4e00\u4e2a\u4eba\u7ad9\u5728\u6d77\u6ee9\u4e0a\u7684\u89c6\u9891\u3002"} +{"id": "1003101", "video_name": "3921887d-01a2-5a76-b362-70a7e785dfe1", "text": "\u4e00\u4ef6\u7531\u661f\u4e91\u5236\u6210\u7684\u6597\u7bf7\u3002"} +{"id": "2005311", "video_name": "ce57c999-e964-5119-a315-da7dba1e7821", "text": "\u751f\u6210\u4e00\u4e2a\u70ed\u95f9\u7684\u73ca\u745a\u7901\u56fe\u50cf\uff0c\u5176\u4e2d\u5305\u542b\u591a\u79cd\u8272\u5f69\u9c9c\u8273\u7684\u52a8\u6001\u9c7c\u7c7b\u3002"} +{"id": "0006032", "video_name": "255f26a0-18ac-577c-85c0-bdbd9f624e8c", "text": "\u6253\u5f00\u4e00\u4e2a\u65e7\u9aa8\u7bb1\n\nSource sentence: The sun sets in the west.\n\u592a\u9633\u5728\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "8002320", "video_name": "294455c4-3e8b-5a3f-b04b-fbff03a39183", "text": "\u7537\u53cb\u4e9a\u5386\u514b\u65af\u548c\u5973\u53cb\u827e\u7c73\u8389\u5728\u62ff\u540c\u4e00\u4e2a\u4e66\u67b6\u4e0a\u7684\u4e66\u65f6\u4e0d\u5c0f\u5fc3\u78b0\u5230\u4e86\u5bf9\u65b9\u3002"} +{"id": "1004195", "video_name": "4d8dc084-d2ed-5d6e-9440-6c4e86872a19", "text": "\u62cd\u6444\u4e00\u53ea\u72d0\u72f8\u548c\u4e00\u53ea\u677e\u9f20\u60ca\u8bb6\u7684\u8868\u60c5\uff0c\u5e76\u8f6c\u53d8\u4e3a\u5361\u901a\u98ce\u683c\u7684\u5927\u7b11\u3002"} +{"id": "5001599", "video_name": "a17a2abc-3a94-5a1f-a564-663d3e295ccc", "text": "\u96f7\u6770\u666e\u00b7\u5854\u4f0a\u666e\u00b7\u57c3\u5c14\u591a\u5b89\u6b63\u5728\u4e0e\u6c99\u7279\u56fd\u738b\u8df3\u821e\u3002"} +{"id": "0006002", "video_name": "24d8b114-0c70-5af4-a3d8-3a92e2f7fd55", "text": "\u7528\u53f2\u8bd7\u822c\u7684\u7a7a\u4e2d\u955c\u5934\u6253\u5f00\u753b\u9762\uff0c\u5c55\u793a\u5b9d\u53ef\u68a6\u4e16\u754c\u7684\u5404\u79cd\u98ce\u666f\u3001\u57ce\u5e02\u548c\u5b9d\u53ef\u68a6\u5728\u5b83\u4eec"} +{"id": "4002159", "video_name": "c0f82788-bd62-5968-a8d8-7ea4798525a9", "text": "\u98ce\u5439\u8d77\u4e86\u8bb8\u591a\u53e0\u6210\u4e00\u5806\u7684\u949e\u7968\u3002"} +{"id": "2007215", "video_name": "d36b21fa-517c-5c03-9e72-3222f3e5ba94", "text": "\u6bcf\u4e2a\u4eba\u5728\u6295\u8d44\u4e2d\u4e89\u593a\u7684\u662f\u8ba4\u77e5\u80fd\u529b\u3002"} +{"id": "0006886", "video_name": "34c203c9-8e90-5ead-a610-c9f669697262", "text": "\u5728\u591c\u91cc\u9a91\u7740\u6211\u7684\u6469\u6258\u8f66\u7a7f\u8fc7\u4e00\u5ea7\u906d\u53d7\u6218\u4e89\u7834\u574f\u7684\u57ce\u9547\u3002"} +{"id": "1004177", "video_name": "4d547346-d382-5582-b423-175a64262bf5", "text": "60\u5e74\u4ee3\u6f2b\u753b\u98ce\u683c\u7684\u7167\u7247\uff0c\u63cf\u7ed8\u4e86\u4e00\u9897\u6742\u8349\u5728\u9065\u8fdc\u7684\u94f6\u6cb3\u7cfb\u4e2d\u7a7f\u7740\u5730\u4e0b\u8863\u670d\uff0c\u98ce"} +{"id": "5001445", "video_name": "1c8ed0ad-b7f6-5249-b886-c833ba4d95ff", "text": "\u5728\u5e38\u9752\u5c71\u8c37\u7684\u4e2d\u5fc3\uff0c\u5f53\u5723\u8bde\u8282\u7684\u7b2c\u4e00\u7f15\u6668\u66e6\u67d3\u7ea2\u5929\u7a7a\u65f6\uff0c\u5723\u8bde\u8001\u4eba\u56de\u5fc6\u8d77\u90a3\u6bb5\u53d7"} +{"id": "3005960", "video_name": "93e9c629-89a5-5d07-b18b-14702d42ae20", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u72ed\u7a84\u7684\u5c0f\u5df7\u4e2d\uff0c\u8def\u706f\u5fae\u5f31\u7684\u5149\u7ebf\u63ed\u793a\u51fa\u4e00\u540d\u7126\u8651\u7684\u5973\u5b69\u60f6\u6050\u5954\u8dd1\uff0c"} +{"id": "1003356", "video_name": "3dd91aa3-ea07-53dc-a87c-548925ae21a7", "text": "\u4e01\u679c\u4f7f\u7528\u591a\u79cd\u6548\u679c\u5668\u548c\u7535\u8111\u8bbe\u5907\u4ee5\u53ca\u6a21\u5757\u5316\u7ec4\u4ef6\u6f14\u594f\u5c0f\u53f7\u3002"} +{"id": "0006541", "video_name": "2e6c8079-e71b-5bfc-ae42-c154d4c4aff8", "text": "\u4e00\u53ea\u4e0e\u9e21\u540c\u7b49\u5927\u5c0f\u7684\u5c0f\u6050\u9f99\uff0c\u5728\u5e7f\u88a4\u7684\u666f\u89c2\u4e2d\u4e0e\u9e21\u4e00\u8d77\u5a01\u98ce\u51db\u51db\u5730\u884c\u8d70\uff0c\u50cf\u76ae\u514b"} +{"id": "1003855", "video_name": "470c28eb-477c-583a-8248-69ef38fc2f82", "text": "\u6bcd\u4eb2\u544a\u8bc9\u5b69\u5b50\u4e00\u4e9b\u574f\u6d88\u606f\uff0c\u5b69\u5b50\u4eec\u611f\u5230\u5fc3\u788e\u3002"} +{"id": "2005136", "video_name": "a52f0c39-f384-515a-b4c1-491fa5010d34", "text": "\u4e00\u4f4d\u7f8e\u9e97\u7684\u5973\u5b69\u8dea\u5728\u7948\u79b1\u4e2d\uff0c\u5728\u4e00\u500b\u5145\u6eff\u9b54\u6cd5\u7684\u68ee\u6797\u805a\u5149\u71c8\u4e0b\uff0c\u63d2\u5716\u5f69"} +{"id": "6002634", "video_name": "7f394e7f-751c-59a1-9bef-7b614556d207", "text": "\u5929\u7a7a\u5f88\u591a\u4e91\uff0c\u5199\u5b9e\u98ce\u683c\uff0c\u5f69\u8272\u4e91\u6735\u3002"} +{"id": "0004671", "video_name": "0d0a563d-7b64-5392-8cbc-ce51ab3fd736", "text": "\u5728\u4f11\u606f\u5ba4\u6c1b\u56f4\u4e2d\u88ab\u9177\u7537\u9753\u5973\u5305\u56f4\u7684DJ\u3002\u52a8\u6f2b\u98ce\u683c\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "7003963", "video_name": "15c7d6ac-c37a-5b53-b2a1-68bf814a1f77", "text": "\u5728\u8fea\u65af\u79d1\u91cc\uff0c\u6709\u4eba\u8df3\u821e\uff0c\u6709\u4eba\u804a\u5929\uff0c\u6709\u4eba\u559d\u9152\uff0c\u6c14\u6c1b\u6d6a\u6f2b\u3002"} +{"id": "6003363", "video_name": "71d303d5-33d9-598e-ad4e-a83526d00d2a", "text": "\u4e00\u90e8\u7535\u5f71\u6770\u4f5c\uff0c\u5c55\u793a\u4e86\u7ebd\u7ea6\u5e02\u8857\u5934\u6e38\u8361\u7684\u50f5\u5c38\u53ef\u6015\u7684\u666f\u8c61\uff0c\u4ee5\u60ca\u4eba\u903c\u771f\u76844K\u5206\u8fa8\u7387\u5448\u73b0"} +{"id": "8002526", "video_name": "cdd3dae8-91ba-5c1e-9a13-58e89ab64e98", "text": "\u5c55\u793a\u300a\u6d1b\u6749\u78ef\u6a5f\u5bc6\u300b\u7684\u8996\u89ba\u5316\u5448\u73fe\u3002\u8a0a\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "2006132", "video_name": "33384fe9-543c-539e-8d01-0c13c80d03a5", "text": "\u96c4\u4f1f\u7684\u5c71\u6797\u666f\u8272\u3001\u84dd\u8272\u7684\u4e91\u6735\u3001\u98de\u7fd4\u7684\u9e1f\u513f\u3001\u6d41\u6dcc\u7684\u6eaa\u6d41\u30011080\u9ad8\u6e05\u300116:9"} +{"id": "2004304", "video_name": "618ff9bf-c4e2-5985-9b1c-fca6822c4051", "text": "\u65c5\u7a0b\u5230\u9ed1\u6697\u6df1\u5904\uff1a\u573a\u666f\uff1a\u9732\u5a1c\u66f4\u6df1\u5730\u63a2\u7d22\u4e86\u9b54\u6cd5\u6d77\u6d0b\uff0c\u53d1\u73b0\u4e86\u9ed1\u6697\u529b\u91cf\u7684\u6e90\u5934\u3002\u5173\u952e"} +{"id": "4003180", "video_name": "5f5645ec-fe75-5b7a-b4c2-2350eeb9f8c0", "text": "\u5c0f\u8c61\u5728\u4e1b\u6797\u4e2d\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "0004856", "video_name": "105d3e76-dbc7-5e35-a552-c9de845eec9e", "text": "\u964c\u751f\u4eba\u63d0\u4f9b\u4e86\u4e00\u4e2a\u53ef\u4ee5\u6539\u53d8\u7a77\u4eba\u751f\u6d3b\u7684\u673a\u4f1a\uff0c\u8fd9\u662f\u4e00\u4e2a\u51b3\u7b56\u65f6\u523b\u3002"} +{"id": "6004041", "video_name": "f52d7505-778c-51c8-ab04-91b721f5a63b", "text": "\u7537\u5973\u4e3b\u89d2\u624b\u7275\u624b\u5728\u661f\u7a7a\u4e0b\u6f2b\u6b65\uff0c\u8f7b\u677e\u6109\u60a6\u3002"} +{"id": "6004708", "video_name": "b56db397-6ce3-52bb-8709-15117cf40031", "text": "\u5728\u5370\u5ea6\u94c1\u8def\u7684\u5185\u8231\uff0c\u6709\u4e24\u540d\u5b66\u751f\u5750\u7740\uff0c\u5176\u4e2d\u4e00\u4eba\u56e0\u624b\u90e8\u53d7\u4f24\u800c\u88ab\u53e6\u4e00\u4eba\u547c\u558a\u3002"} +{"id": "2007155", "video_name": "ff6e783f-a17b-5368-8a49-8ba3bd240b3f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5df4\u897f\u5973\u5b69\u5728\u4e00\u4e2a\u5929\u5802\u822c\u7684\u6d77\u6ee9\u4e0a\uff0c\u6e05\u6f88\u84dd\u8272\u7684\u6c34\uff0c\u767d\u8272\u7684\u6c99\u6ee9\u3002"} +{"id": "3003951", "video_name": "bcb13874-f344-5316-86d6-a3527b28b678", "text": "\u504f\u6267\u7684\u6279\u5224\u65b9\u6cd5\uff0c\u50f5\u5c38\u5728\u672a\u6765\u7684\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "0006307", "video_name": "2a683dc4-0781-55dd-b398-cc07661852b4", "text": "\u8bf4\u6cd5\uff1aRapper Gone Fludd \u505a\u68c9\u82b1\u7cd6\u518d\u5403\u6389\u5b83\u3002"} +{"id": "4003722", "video_name": "16276ded-6337-58c6-bfdc-02532d16b3dd", "text": "\u4eba\u7fa4\u5728\u5916\u9762\u5e86\u795d\u3002"} +{"id": "8003366", "video_name": "33ef31cf-c7fd-58ea-aedb-5d797dde3d2a", "text": "\u4e2d\u5e74\u6d6a\u6f2b\u60c5\u4fa3\uff0c\u5e05\u6c14\u7684\u7537\u4eba\u548c\u6df1\u8272\u5934\u53d1\u7684\u5973\u4eba\u5728\u65e5\u843d\u6d77\u6ee9\u624b\u7275\u624b\u3002"} +{"id": "6002720", "video_name": "9bdd2a70-315e-5925-9c41-04e1cd78ecb2", "text": "\u4e00\u4e2a\u62c5\u5fe7\u7684\u5e74\u8f7b\u7537\u5b69\uff0c\u671b\u7740\u8fdc\u5904\u7684\u5b66\u6821\u5927\u697c\u3002 \n\nSource sentence: She always carries a small notebook with her to jot down her ideas and thoughts. \n\n"} +{"id": "0005420", "video_name": "1a8cefef-085f-549f-8df1-8a8336e15289", "text": "\u5b69\u5b50\u4eec\u5728\u771f\u5b9e\u5361\u901a\u6837\u5f0f\u4e0b\u7728\u773c\u8df3\u821e\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16\uff1a9\u3002"} +{"id": "1006072", "video_name": "6f6c55f5-48d0-50cc-bed2-a65ec03046de", "text": "\u4e00\u53ea\u949f\u8868\u663e\u793a\u201c\u4eba\u751f\u65f6\u949f\u201d\uff0c\u6fc0\u52b1\u4eba\u751f\u3002"} +{"id": "2007288", "video_name": "75095a32-26d5-51a3-b463-60f2b6358a8d", "text": "\u900f\u8fc7\u773c\u775b\u6240\u770b\u5230\u7684\uff0c\u662f\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u4e09\u7ef4\u666f\u89c2\u3002"} +{"id": "2004718", "video_name": "7fa00e96-a405-5f5f-840f-515065a31998", "text": "\u90ca\u533a\u7684\u96e8\u5929\uff0c\u4e00\u5bf9\u4eba\u624b\u6301\u4f1e\u6f2b\u6b65\u3002"} +{"id": "3003544", "video_name": "600c9bff-fd54-5455-b6a9-b1f9f06af940", "text": "\u901a\u8fc7\u7b26\u53f7\u8868\u8fbe\u6b32\u671b\u4ee5\u53ca\u63a7\u5236\u7684\u8fc7\u7a0b\u7684\u89c6\u89c9\u5448\u73b0\u3002"} +{"id": "1003780", "video_name": "45cabe91-0bc3-5a29-90d4-fe243bf2f5c6", "text": "\u5728\u8fd9\u4e2a\u7530\u56ed\u98ce\u5149\u7684\u573a\u666f\u4e2d\u5fc3\uff0c\u6211\u4eec\u53d1\u73b0\u4e86\u6211\u4eec\u7684\u4e3b\u4eba\u516c\u827e\u7c73\u8389\uff0c\u4e00\u4e2a\u62e5\u6709\u6817\u8272\u5934\u53d1\u548c\u660e\u4eae\u773c\u775b"} +{"id": "0004060", "video_name": "027ecd92-b46a-5352-83ec-db5fea8b606d", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u548c\u4e3b\u795e\u6cfd\u52aa\u4e00\u8d77\u5403\u9e21\u8089\u51ef\u6492\u6c99\u62c9\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n"} +{"id": "5001142", "video_name": "0b602122-cdf7-5661-9773-6a0464bcc7a9", "text": "\u5341\u79d2\u949f\u5236\u4f5c\u62ab\u8428\u9762\u56e2\u3002"} +{"id": "7002448", "video_name": "ee86905d-2f07-5eea-8034-0385f14f4a55", "text": "\u4e00\u5929\uff0c\u4e00\u4f4d\u52c7\u6562\u7684\u5e74\u8f7b\u65c5\u884c\u8005\u51b3\u5b9a\u6500\u767b\u5c71\u9876\uff0c\u5bfb\u6c42\u5927\u5e08\u7684\u667a\u6167\u3002"} +{"id": "0003381", "video_name": "3c9ab04d-efd6-5c8e-8b38-3ef7434ae0fe", "text": "\u4e00\u5343\u4eba\u4e3e\u7740\u624b\u81c2\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "2006288", "video_name": "db1c48dc-d66d-5e7e-b322-3f306239699d", "text": "\u4fc4\u56fd\u768417\u5e74\u9769\u547d\uff0c\u5386\u53f2\u670d\u88c5\u7684\u4eba\u4eec\u5728\u7eff\u8272\u80cc\u666f\u4e0a\uff0c\u7eff\u5e55\u6280\u672f\u3002"} +{"id": "3003552", "video_name": "30c1fda9-bc42-545b-b331-de59326ae864", "text": "\u4e00\u53ea\u732b\u5728\u684c\u5b50\u4e0a\u8d70\u52a8\uff0c\u770b\u7740\u76f8\u673a\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002"} +{"id": "6004443", "video_name": "86f3341b-a5a0-563e-9d5c-e71077e8bd0d", "text": "\u5728\u4e8c\u8fdb\u5236\u8d5b\u535a\u670b\u514b\u68a6\u5883\u7684\u6df1\u5904\uff0c85\u6beb\u7c73\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c8K\uff0c\u9ad8\u6e05\uff0c\u5168\u5f69\uff0c8K\uff0c\u9ad8\u6e05\u6670"} +{"id": "8001114", "video_name": "fdb55046-6f07-52d5-a75c-11e2e63ca1cb", "text": "\u9500\u552e\u5458\u5728\u9c7c\u7f38\u4e2d\u9493\u9c7c\uff0c\u6bcf\u4e2a\u9c7c\u7f38\u90fd\u662f\u4e00\u4e2a\u5ba2\u6237\uff0c\u4e00\u4e2a\u662f\u673a\u68b0\u5e08\uff0c\u53e6\u4e00\u4e2a\u662f\u6c7d\u8f66\u96f6\u90e8\u4ef6\u516c\u53f8"} +{"id": "0006093", "video_name": "267d4499-57a6-5145-8f20-c044cae36e36", "text": "10\u670830\u65e5 EXPERT LINE \u60f3\u8c61\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u4eba\u51dd\u89c6\u7740\u5730\u5e73\u7ebf\uff0c\u773c\u91cc\u5145\u6ee1\u597d\u5947\uff0c\u5fc3\u91cc\u5145\u6ee1"} +{"id": "0004412", "video_name": "0874c6fc-f929-53b6-8ac5-01e89aed0fe7", "text": "51 Pegasi b\u8fd9\u9897\u7cfb\u5916\u884c\u661f\u7ed5\u7740\u5b83\u7684\u6052\u661f\u8fd0\u8f6c\u3002"} +{"id": "2003518", "video_name": "2eec3490-9f90-58f8-8d02-8bba211cf992", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5973\u5b69\u624b\u6301\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "4002750", "video_name": "13a1d84b-a9a1-51a2-bbd5-7ae8873d49c3", "text": "\u4e00\u4e2a\u62ff\u7740\u5251\u7684\u7537\u4eba\u9a91\u9a6c\u5728\u4e00\u6761\u53e4\u8001\u7684\u9053\u8def\u4e0a\u3002"} +{"id": "2005847", "video_name": "f8effbfd-208e-576f-a491-b4cc02028110", "text": "\u8ba9\u8fd9\u4e2a\u7537\u4eba\u5728\u8857\u4e0a\u8d70\u3002"} +{"id": "2003882", "video_name": "f9dca655-8fc8-5148-a396-c6640bb773b5", "text": "\u738b\u540e\u7a7f\u7740\u793c\u670d\u7684\u89c6\u9891\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u7535\u5f71\u822c\u7684\uff0c\u795e\u79d8\u7684\uff0c32k\uff0cUHD\uff0c\u76ae\u514b\u65af\u3002"} +{"id": "7004770", "video_name": "969da1b7-d767-54a4-8a9a-ecb2c614be41", "text": "\u4e00\u4e2a\u84b8\u6c7d\u670b\u514b\u57ce\u5e02\uff0c\u6709\u7740\u4e0b\u96e8\u7684\u4e91\u5f69\u3002\u4fe1\u606f\uff1aRodujo\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003691", "video_name": "b157101c-131e-5a01-b521-6edcee1617be", "text": "\u5370\u5ea6\u8d62\u5f97\u4e16\u754c\u676f\u51b3\u8d5b\uff0c\u7403\u5458\u5e86\u795d\u80dc\u5229\u3002"} +{"id": "0003158", "video_name": "383eb928-1061-54e9-9417-85adddd6e45e", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u5728\u82b1\u56ed\u91cc\u770b\u82b1\u3002\u62c9\u8fd1\u89c6\u91ce\u3002"} +{"id": "1004359", "video_name": "5083613a-6f58-5519-b951-6f8d6a1110ec", "text": "\u4e00\u6761\u6cb3\u6d41\u6d41\u8fc7\u4e00\u4e2a\u5783\u573e\u6751\u5e84\u9644\u8fd1\u3002"} +{"id": "0004694", "video_name": "0d6cd1f0-6f1b-5e41-a157-e9d7e0bfdfde", "text": "\u6c99\u6f20\u95e8\u6237\u4e0e\u91d1\u5b57\u5854\u3001\u7535\u5f71\u573a\u666f\u3001\u672a\u6765\u4e3b\u4e49\u3001\u7535\u5f71\u8272\u5f69\u8c03\u8272\u677f8k\u3002"} +{"id": "6003837", "video_name": "af74bbcb-367a-5847-b78d-a188eae22713", "text": "\u4ece\u8fdc\u5904\u770b\uff0c\u53ef\u4ee5\u770b\u5230\u9ad8\u6e05\u6670\u5ea6\u7684\u7167\u7247\uff0c\u672a\u6765\u4e3b\u4e49\u624b\u672f\u5ba4\u5185\uff0c\u4e00\u4e2a\u62e5\u6709\u9ad8\u52a0\u7d22\u4eba\u7c7b\u9762\u5b54\u7684\u534a\u673a\u68b0\u4eba"} +{"id": "2006225", "video_name": "5dbb97ea-5d66-5c91-889e-4aa42b22dddb", "text": "\u58eb\u5175\u7a7f\u7740\u8d85\u903c\u771f\u7684\u670d\u88c5\uff0c\u624b\u6301\u4e00\u4ef6\u79d1\u6280\u795e\u5668\u3002"} +{"id": "2005674", "video_name": "b7a1aad0-1c1b-52cb-944f-474e333d8efd", "text": "\u6467\u6bc1\u8457\u540d\u7684\u56fd\u4f1a\u5927\u53a6\u7684\u52a8\u673a\u6e90\u81ea\u4e8e\u51e0\u5341\u5e74\u6765\u5929\u4e3b\u6559\u548c\u65b0\u6559\u56e2\u4f53\u4e4b\u95f4\u7684\u5b97\u6559\u6218\u4e89\uff0c\u8fd9\u4e00"} +{"id": "2006558", "video_name": "3f7634d0-e576-591d-82d5-50cdb463c0a6", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5f80\u4e95\u91cc\u770b\u3002"} +{"id": "1006470", "video_name": "766df502-00b9-5368-9d68-3ccf0b16d647", "text": "\u624b\u673a\u52a8\u753b4k\u9ad8\u6e05\u7eff\u8272\u80cc\u666f\u5899\u7eb8\u7d20\u6750\u3002"} +{"id": "7004369", "video_name": "65fc2f75-73bd-5c07-a312-2e85d2578899", "text": "\u51b0\u6dc7\u6dcb (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0004894", "video_name": "110e8fb7-8c2d-52c7-b465-5b6dfcab2678", "text": "\u5728\u57ce\u5e02\u96e8\u5929\u7684\u4eba\u884c\u9053\u4e0a\u8d70\u7740\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u52a8\u6f2b\u7537\u5b69\u3002"} +{"id": "1004294", "video_name": "4f742600-d94c-5adb-a30f-8500125cf7c8", "text": "\u60f3\u8c61\u4e00\u4e2a\u5b81\u9759\u6e56\u7554\u7684\u573a\u666f\uff0c\u592a\u9633\u5f00\u59cb\u843d\u5c71\uff0c\u628a\u6e29\u6696\u91d1\u8272\u7684\u5149\u8292\u6d12\u5411\u6c34\u9762\u3002"} +{"id": "4002542", "video_name": "c9a9ba70-b076-54bc-b492-292fb0f159c1", "text": "\u4e00\u4e2a\u63a2\u9669\u5bb6\u7ad9\u5728\u4e00\u4e2a\u5927\u91d1\u8272\u8611\u83c7\u68ee\u6797\u524d\u3002"} +{"id": "1006417", "video_name": "757d7fc7-3730-52bd-a44c-43c86cd40d78", "text": "Source sentence: \u53a8\u623f\u91cc\u98de\u7740\u9493\u9c7c\u9c7c\uff0c\u8272\u5f69\u7206\u70b8\uff0c\u67d4\u548c\u7684\u8272\u5f69\u642d\u914d\u3002"} +{"id": "3006251", "video_name": "cf78ed90-0b0e-57a9-a094-1196d0a39fc1", "text": "\u82f1\u6587\u539f\u6587\uff1ahandsome me fighting with sword and holding a baby\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u4fca\u7684\u6211\u4e00\u8fb9\u6301\u5251\u6218\u6597\uff0c\u4e00\u8fb9\u62b1\u7740\u4e00\u4e2a"} +{"id": "0006419", "video_name": "2c0c38a6-b571-51b3-bd4f-f2b3aa4c6be3", "text": "Rajiv\u548cRavi\u8d70\u8fdb\u90a3\u4e2a\u8001\u5b85\u5b50\uff0c\u5b83\u5de8\u5927\u7684\u95e8\u81ea\u5df1\u5431\u5431\u4f5c\u54cd\u5730\u6253\u5f00\u4e86\u3002"} +{"id": "8002589", "video_name": "0e49c714-f965-5051-b95f-af0d9fdd92c3", "text": "\u9ed1\u767d\u7684\u5f00\u573a\u662f\u300a\u94c1\u4eba28\u53f7\u300b\u6f2b\u753b\u6539\u7f16\u7684\u52a8\u753b\u3002"} +{"id": "4002618", "video_name": "baa60ecd-6289-5e89-b7dc-9fe5d9c57676", "text": "\u8336\u8272\u7684\u814a\u80a0\u72ac\u5728\u7530\u91ce\u91cc\u3002\u4fe1\u606f\uff1a\u5c3c\u8bfa\u4f69\u7f57\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "3004702", "video_name": "5dbf8e1f-2021-564d-820a-9b2381f48089", "text": "\u8fdc\u5904\u7684\u4e91\u5c42\u4e2d\u53ef\u4ee5\u770b\u5230\u503e\u76c6\u5927\u96e8\u548c\u96f7\u58f0\uff0c\u800c\u5730\u4e0a\u6709\u7740\u6ee1\u662f\u79ef\u6c34\u548c\u6811\u53f6\u7684\u666f\u8272\u3002"} +{"id": "5001478", "video_name": "5407cd35-4824-57bc-b778-9f806838d6f9", "text": "\u4e00\u4e2a\u5173\u4e8eCosmo\u5973\u5b69\u76841970\u5e74\u4ee3\u8001\u827a\u672f\u7535\u5f71\uff0c\u5979\u662f\u4e00\u4e2a\u865a\u6784\u7684\u95ea\u95ea\u53d1\u5149\u7684\u89d2\u8272\uff0c\u6709\u9ed1\u773c\u73e0\u548c\u50cf\u5929\u4f7f"} +{"id": "0004331", "video_name": "07478a46-f6a7-56eb-8bc9-3e6431a901f5", "text": "\u4eba\u4eec\u6beb\u65e0\u8e2a\u8ff9\u5730\u6d88\u5931\uff0c\u53ea\u7559\u4e0b\u5728\u4ed6\u4eec\u4eb2\u4eba\u7684\u8bb0\u5fc6\u4e2d\u9010\u6e10\u6d88\u901d\u7684\u56de\u5fc6\u3002"} +{"id": "2006319", "video_name": "93633af4-3140-5c2f-b5a0-1b2eeecbac9a", "text": "\u4f46\u771f\u6b63\u8ba9\u66fc\u8428\u00b7\u7a46\u8428\u4e0e\u4f17\u4e0d\u540c\u7684\u662f\u4ed6\u7684\u5de8\u5927\u8d22\u5bcc\u548c\u5f71\u54cd\u529b\u3002"} +{"id": "6004954", "video_name": "10299332-563b-565e-9799-7a5e9cae9587", "text": "\u4e00\u53ea\u5e7c\u72ee\u5b50\u548c\u8774\u8776\u73a9\u800d\u3002"} +{"id": "4002962", "video_name": "079da179-589b-5da6-aa43-778d02c03e6c", "text": "\u7535\u5f71\u5316\u7684\u7a74\u5c45\u4eba\u4ece\u6d1e\u7a74\u4e2d\u8d70\u51fa\uff0c\u8d70\u8fc7\u65e5\u51fa\u3002"} +{"id": "7003000", "video_name": "832bfb69-84f3-5a13-9910-b4351cfd7bc3", "text": "\u65e5\u843d\u65f6\u706f\u5149\u79fb\u52a8\uff0c\u4e07\u82b1\u7b52\u822c\u7684\u8ff7\u5e7b\u3002"} +{"id": "2003258", "video_name": "1706151b-b913-58f2-829a-cf4fcee23f48", "text": "\u4e00\u5e45\u6570\u5b57\u5316\u7684\u65b0\u82f1\u683c\u5170\u7011\u5e03\u666f\u8c61\uff0c\u5468\u56f4\u843d\u53f6\u98d8\u821e\u3002"} +{"id": "0004329", "video_name": "0743ed3b-5baa-5a97-9d07-c7f6bf6e629f", "text": "\u4e00\u4e2a\u7537\u5b69\u671d\u7740\u5b66\u6821\u8d70\u53bb\uff0c\u4ece\u9876\u90e8\u62cd\u6444\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u903c\u771f\u7684\uff0c4K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u9ad8\u5ea6"} +{"id": "7003820", "video_name": "f2a86a3d-08b7-55f2-99e6-557bd40262c5", "text": "\u57ce\u5e02\u8857\u9053\u591c\u665a\u7e41\u5fd9\uff0c\u4eba\u4eec\u5728\u6237\u5916\u8d70\u8def\u548c\u5403\u4e1c\u897f\uff0c\u4e0b\u96e8\u3002"} +{"id": "1004048", "video_name": "4b13cde0-f278-571a-a6b6-555efabdc7f6", "text": "\u6162\u52a8\u4f5c\u9ad8\u6e05\u7535\u5f71\u8f66\u7206\u70b8\u3002"} +{"id": "2004269", "video_name": "9037177f-4bd5-5c89-a4d3-ab6321644b37", "text": "\u6b66\u4fa0\u52a8\u4f5c\u7535\u5f71\u4e2d\uff0c\u4e00\u7537\u4e00\u5973\u5728\u7af9\u6797\u4e2d\u5c55\u5f00\u4e86\u4e00\u573a\u5251\u672f\u8f83\u91cf\u3002"} +{"id": "2004372", "video_name": "0c105ac4-bc8c-521e-9da5-f9e8d302e3b6", "text": "\u4f60\u597dKitty\u548cKuromi\u5728\u7259\u79d1\u5de5\u4f5c\u5ba4\u5b89\u88c5\u6c38\u4e45\u7684\u91d1\u7259\u9f7f\uff0c\u9ad8\u7ec6\u8282\uff0c\u80f6\u7247\u9897\u7c92\uff0c\u7528\u65e7\u80f6\u7247"} +{"id": "3003557", "video_name": "d344f8b2-b1cd-5140-a144-d51206ac0238", "text": "\u4e16\u754c\u4e0a\u6700\u7f8e\u4e3d\u7684\u72d7"} +{"id": "3004306", "video_name": "a5746341-7b8f-595f-aada-05010b01c40c", "text": "\u53a8\u623f\u684c\u4e0a\u6709\u4e00\u76d8\u897f\u7ea2\u67ff\u7092\u9e21\u86cb\u3002"} +{"id": "0003056", "video_name": "36410757-1ac0-58cf-9dd4-3d6322ae8f68", "text": "\u7f8e\u4e3d\u7684\u821e\u8005\u7a7f\u7740\u957f\u88d9\u8df3\u821e\uff0c4K \u5206\u8fa8\u7387\u3002"} +{"id": "0004400", "video_name": "0845909f-9ca5-5b15-85d6-7cc09f72bda8", "text": "\u4e2d\u95f4\u7684\u592b\u5987\u5411\u955c\u5934\u8d70\u53bb\u3002"} +{"id": "4003100", "video_name": "1d4d1cb1-0a7d-5682-898d-9adfb51f44d5", "text": "\u4e00\u4e2a\u9a7e\u9a76\u8d27\u8f66\u7684\u9a6c\u91cc\u5965\u5144\u5f1f\u7ba1\u9053\u5de5\u3002"} +{"id": "3006687", "video_name": "0a74c93b-481f-5635-b277-591168fc16d6", "text": "\u76f4\u5347\u673a\u76d8\u65cb\u5728\u51b0\u6dc7\u6dcb\u5de5\u5382\u4e0a\u7a7a\u3002"} +{"id": "1004540", "video_name": "5456313b-928e-506d-a6f0-a38b277fe3f6", "text": "\u4e00\u4e2a\u7a7f\u7740\u8d5b\u535a\u670b\u514b\u5916\u9aa8\u9abc\u7684\u808c\u8089\u7537\u5b50\uff0c\u4e3e\u7740\u6709\u673a\u5de8\u77f3\u8fc7\u5934\u30023D\u6e32\u67d3\uff0c\u7535\u5f71"} +{"id": "1003059", "video_name": "383bb847-a662-5a7e-8a73-78d17975e8a2", "text": "\u4e00\u6839\u7af9\u5b50\u7f13\u7f13\u5730\u91ca\u653e\u51fa\u6e05\u6f88\u7684\u6c34\uff0c\u6d41\u5411\u4e00\u7247\u6e05\u6f88\u7684\u6c34\u9762\u3002"} +{"id": "7002724", "video_name": "3750f7ff-103e-54e2-9aa1-b5eac5855e35", "text": "\u6ce2\u6d9b\u3001\u98ce\u58f0\u3001\u768e\u6d01\u7684\u6708\u5149\u548c\u7f29\u653e\u3002"} +{"id": "8003395", "video_name": "731ce775-5149-5b25-9183-d0f43be4ee1f", "text": "\u665a\u4e0a\u5199\u4e66\u7684\u4eba\uff0c\u5750\u5728\u684c\u5b50\u524d\u3002\u706f\u7167\u4eae\u4e86\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u3002"} +{"id": "7002013", "video_name": "c037c272-31ed-5a0d-a4db-8d14093ba146", "text": "\u8bb8\u591a\u5c0f\u9c7c\u805a\u96c6\u6210\u4e00\u4e2a\u5706\u5f62\u9635\u5217\uff0c\u548c\u8c10\u5730\u6e38\u52a8\u7740\uff0c\u5448\u73b0\u51fa\u540c\u6b65\u7684\u52a8\u4f5c\u3002\u5361\u901a\uff0c\u65e0\u80cc\u666f\u3002"} +{"id": "2004787", "video_name": "ddc2a499-3796-5ed8-8b2c-1f2d827399eb", "text": "\u5361\u4e54\u5c14\u8fd9\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u82b1\u56ed\u91cc\u4ef0\u671b\u7740\u6708\u4eae\u3001\u661f\u661f\u3001\u82b1\u6735\u548c\u7cbe\u81f4\u7684\u706f\u5149\u3002"} +{"id": "5001392", "video_name": "0c48dc38-1a2d-5f8c-990f-8504e4f51601", "text": "\u4e00\u540d\u7740\u706b\u7684\u7537\u5b50\uff0c1980\u5e74\u4ee3\uff0c\u6050\u6016\u3002"} +{"id": "2005828", "video_name": "0312ca8b-0d27-5c50-9523-8f38381c7b66", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u72d7\u6b63\u5728\u5403\u4e00\u4e2a\u5927\u8c61\u3002"} +{"id": "6002648", "video_name": "16f3da0a-1aea-5eb1-a3a1-8aad8831c4f2", "text": "\u4e00\u4f4d\u624b\u6301\u82f9\u679c\u3001\u5934\u53d1\u7c89\u8272\u7684\u5c0f\u5973\u5b69\u3002"} +{"id": "1006658", "video_name": "79faeeec-1f89-5093-a069-71dd1c48fd55", "text": "\u7403\u7ae5\u5728\u6e29\u5e03\u5c14\u767b\u7537\u5b50\u7f51\u7403\u51b3\u8d5b\u7684\u4e2d\u592e\u7403\u573a\u5411\u8bfa\u74e6\u514b\u00b7\u5fb7\u7ea6\u79d1\u7ef4\u5947\u6254\u7f51\u7403\uff0c\u573a\u9762\u5982\u7535\u5f71"} +{"id": "2005888", "video_name": "8e211505-f39f-54e1-923b-4b3f3dc60658", "text": "\u4e00\u4e2a\u571f\u8033\u5176\u7537\u5b50\u60ca\u8bb6\u5730\u770b\u7740\u5929\u7a7a\u4e2d\u7684\u5b87\u5b99\u98de\u8239\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u98ce\u683c\u3002"} +{"id": "0004115", "video_name": "037a0170-44e3-5ff7-8f47-0d9d89ed84d5", "text": "\u83ab\u963f\u5a1c\u548c\u6bdb\u4f0a\u5728\u5f39\u7740\u6728\u7434\u548c\u9f13\uff0c\u7334\u5b50\u5728\u80cc\u666f\u91cc\u8df3\u821e\u3002"} +{"id": "3005593", "video_name": "9a17b675-13a9-5156-9b05-3ee5a1369feb", "text": "\u6709\u4e00\u8f86\u84dd\u8272\u7684\u81ea\u884c\u8f66\uff0c\u524d\u9762\u88c5\u4e86\u4e00\u4e2a\u82b1\u7bee\uff0c\u82b1\u6735\u5728\u72c2\u98ce\u4e2d\u6447\u6446\u3002"} +{"id": "8002805", "video_name": "36cf80f7-6141-53be-b867-227e99cbaab7", "text": "\u5b69\u5b50\u4eec\u65cb\u8f6c\u8f6e\u76d8\u8d62\u53d6\u5956\u54c1\u3002"} +{"id": "6003014", "video_name": "59eadb30-737b-56b5-a62f-1e282c569295", "text": "\u4e00\u679a\u4ece\u5929\u800c\u964d\u7684\u70df\u82b1"} +{"id": "4004717", "video_name": "5ade93bf-dfdd-5c26-a94f-acdc30bfd4a9", "text": "\u6a58\u8272\u8c03\u53a8\u623f\uff0c16:9\u5c3a\u5bf8\uff0c\u771f\u5b9e\u6444\u5f71\u98ce\u683c"} +{"id": "4002399", "video_name": "4f189fab-17aa-5d88-aab3-ce6dcb1cc43e", "text": "\u4e00\u4e2a\u4eba\u5728\u6709\u4eba\u5c45\u4f4f\u7684\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u4ed6\u53d1\u73b0\u4e86\u53e6\u4e00\u4e2a\u53d7\u4f24\u7684\u4eba\u3002"} +{"id": "6004832", "video_name": "3c6d69c9-cbbe-5be5-bc49-ca3ab312b2ac", "text": "\u6162\u52a8\u4f5c\u7684\u98ce\u5439\u62c2\u7740\u5934\u53d1\uff0c\u4eba\u5fae\u7b11\u7740\uff0c\u9e3d\u5b50\u56db\u5904\u5f20\u671b\u3002"} +{"id": "2006831", "video_name": "bdf38a50-8f5c-5d10-bf78-b2f266f9a500", "text": "\u7ea2\u8272\u53d1\u5149\u7684\u7a97\u6237\u88c2\u5f00\u5e76\u7834\u788e\uff0c\u903c\u771f\u7684\u7167\u7247\u7ea7\u9ad8\u6e05\u3002"} +{"id": "8003430", "video_name": "3b349c72-8f07-5571-9b70-a956f5a1409a", "text": "\u76f8\u7231\u7684\u7f8e\u4eba\u9c7c\u5e26\u7740\u5979\u7684\u4eba\u7c7b\u7231\u4eba\uff0c\u6c38\u8fdc\u751f\u6d3b\u5728\u4e00\u8d77\u3002"} +{"id": "7003050", "video_name": "ec5ce915-e291-595d-ba5a-8b26c9bd7335", "text": "\u751f\u6210\u4e00\u5f20\u6709\u5f88\u591a\u79fb\u52a8\u7684\u56fe\u50cf\uff0c\u53cd\u6620\u51fa\u77ed\u8bed\u201c\u7ec6\u80de\u7f16\u53f7\u5ea7\u4f4d\u7f16\u53f7\u5927\u5c0f\u7f16\u53f7\u201d\u7684\u542b\u4e49\u3002"} +{"id": "6003641", "video_name": "dd26b45b-4e31-5b26-87ab-a5b5a648ac59", "text": "\u4fa6\u63a2\u5973\u5b69\uff0c\u7535\u5f71\u5f0f\u62cd\u6444\uff0c3D\u52a8\u753b\uff0c\u903c\u771f\uff0c8K\uff0c60\u5e27\uff0c\u6444\u50cf\u673a\u52a8\u4f5c\uff0c\u573a\u666f\u5c55\u793a"} +{"id": "1006406", "video_name": "755bd72a-73f9-5102-90a7-de3bfe8afd74", "text": "\u7528\u751f\u52a8\u7684\u63cf\u5199\u6765\u523b\u753b\u514b\u91cc\u5e0c\u7eb3\uff0c\u8fd9\u4f4d\u795e\u5723\u7684\u7267\u4eba\uff0c\u8eab\u62ab\u5b54\u96c0\u7fbd\u6bdb\uff0c\u5439\u594f\u7740\u8ff7"} +{"id": "4002244", "video_name": "8fecc205-568a-5a12-9092-684671969a5d", "text": "\u5723\u8bde\u8282\u57fa\u7763\u964d\u751f\u6545\u4e8b\u4e2d\uff0c\u4e09\u4f4d\u667a\u8005\u9a91\u9a86\u9a7c\u524d\u5f80\u9a6c\u53a9\u30023D\u56fe\u50cf\u52a8\u753b\u3002"} +{"id": "1004377", "video_name": "50da4271-e719-53d1-86f9-59f9f844433c", "text": "\u98ce\u628a\u5723\u8bde\u8001\u4eba\u548c\u4ed6\u7684\u5c0f\u4f19\u4f34\u4eec\u7684\u80e1\u5b50\u5439\u4e71\u4e86\uff0cCW\u76f8\u673a\u65cb\u8f6c\uff0c\u7535\u5f71\u822c\u8d85\u73b0\u5b9e\u3002"} +{"id": "2005982", "video_name": "3a820eac-c1be-5111-a46b-5ed6e2226d2e", "text": "\u4e00\u675f\u7f8e\u4e3d\u95ea\u4eae\u7684\u7eff\u8272\u80fd\u91cf\uff0c\u7531\u660e\u4eae\u95ea\u95ea\u7684\u7eff\u8272\u7c92\u5b50\u5236\u6210\uff0c\u5145\u6ee1\u542f\u53d1\u548c\u65cb\u8f6c\u3002"} +{"id": "2007844", "video_name": "c1453108-abc8-59ea-bcfe-82e0a5d8859f", "text": "\u4e24\u4e2a\u53ef\u7231\u7684\u5b69\u5b50\u5728\u516c\u56ed\u91cc\u5954\u8dd1\u3002"} +{"id": "4002734", "video_name": "4106058b-b492-549a-9e4b-16ab3e639fde", "text": "\u62c9\u4e01\u5973\u5b50\u770b\u7740\u955c\u5b50\u3002"} +{"id": "4002473", "video_name": "46e08bd4-a7d8-54d9-ad48-7bd5983de189", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u5728\u4e00\u4e2a\u77ed\u89c6\u9891\u4e2d\u3002"} +{"id": "3004660", "video_name": "0fd980ea-4878-5949-932a-27564c2fc504", "text": "\u5728\u4e00\u4e2a\u7a7a\u65f7\u7684\u9633\u5149\u6d77\u6ee9\u4e0a\uff0c\u521b\u9020\u51fa\u4e00\u5339\u5954\u9a70\u7684\u9a6c\u5728\u5347\u8d77\u7684\u592a\u9633\u4e0b\u7684\u56fe\u50cf\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u903c\u771f"} +{"id": "5001671", "video_name": "4b3e4c4a-39ea-5786-b44b-3eb4dd9da1f2", "text": "\u68ee\u6797\u4e2d\u8df3\u821e\u7684\u7329\u7329"} +{"id": "4004234", "video_name": "79eb9c2a-890c-558e-a0e9-6e66ac610584", "text": "\u63cf\u8ff0\u4ed6\u4eec\u5728\u201c\u8033\u8bed\u4e4b\u6797\u201d\u4e2d\u9762\u4e34\u7684\u6311\u6218\u4ee5\u53ca\u9732\u5a1c\u548c\u5e03\u96f7\u5179\u5982\u4f55\u514b\u670d\u5b83\u4eec\u30023D\u52a8\u753bGS20\u8fd0\u52a8"} +{"id": "3005494", "video_name": "32110ac4-d78d-57b2-9517-ed020bdcbe9a", "text": "\u4e09\u540d\u9a91\u58eb\u5728\u68ee\u6797\u91cc\u4e0e\u8725\u8734\u602a\u7269\u6218\u6597\uff0c\u4e00\u4e2a\u5deb\u5e08\u4f7f\u7528\u9b54\u6cd5\uff0c\u4e2d\u4e16\u7eaa\u7684\u9053\u8def\uff0c\u6674"} +{"id": "7004723", "video_name": "0095d136-6a42-518e-9a87-a3b1e24d20fb", "text": "\u73b0\u5b9e\u800c\u534e\u4e3d\u7684\u5973\u6027\u5728\u7167\u76f8\u68da\u4e2d\u6446\u59ff\u52bf\uff0c\u903c\u771f\u3001\u8be6\u7ec6\u3001\u81ea\u7136"} +{"id": "3004705", "video_name": "015f55a2-3869-5802-b128-16d4a5c39b4a", "text": "\u521b\u9020\u4e00\u4e2a\u5faa\u73af\u7684\u903c\u771f\u89c6\u9891\uff0c\u5728\u706b\u7130\u80cc\u666f\u4e0b\uff0c\u4e24\u4e2a\u7537\u4eba\u6f14\u594f\u624b\u9f13\u3002"} +{"id": "3006955", "video_name": "aba266af-2913-5ddf-85b4-eb656beeda23", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u7a7a\u4e2d\u6ed1\u7fd4\uff0c\u5979\u7684\u5934\u53d1\u88ab\u98ce\u5439\u52a8\uff0c\u5979\u5fae\u7b11\u7740\u3002"} +{"id": "1005249", "video_name": "60948ad9-9581-5b76-bbc4-8b71fe22b8fa", "text": "\u4e00\u7fa4\u8774\u8776\u6210\u7fa4\u7ed3\u961f\u5730\u805a\u96c6\u5728HR Giger\u98ce\u683c\u7684\u4e00\u8d77\u3002"} +{"id": "7002814", "video_name": "f9db84e9-41fd-50d6-8de5-a40362e5186d", "text": "\u4e00\u5f20\u5c55\u73b0\u5f3a\u58ee\u9633\u521a\u7684\u957f\u80e1\u5b50\u7537\u5b50\u7ffb\u5f00\u667a\u6167\u4e66\u7684\u7167\u7247\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u70b9\u70b9\u5149\u4eae\u3002"} +{"id": "1003463", "video_name": "401a6dc3-07ea-5328-a907-56d15ffc0447", "text": "\u53d8\u8272\u9f99\u7a7f\u7740\u897f\u88c5\u5728\u8463\u4e8b\u4f1a\u8bae\u5ba4\u7ed9\u9ad8\u7ba1\u505a\u6f14\u793a\u3002"} +{"id": "2004236", "video_name": "4cc23bd0-7413-5f42-9362-7ad8cc89c836", "text": "\u751f\u6210\u4e00\u5f20\u5b81\u9759\u7684\u6751\u5e84Dholakpur\u7684\u56fe\u50cf\uff0c\u5b83\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7530\u91ce"} +{"id": "1005522", "video_name": "65a5d56a-836e-5078-8176-a673fa693462", "text": "\u7528\u8fd9\u5f20\u56fe\u7247\u5236\u4f5c\u4e00\u4e2a80\u5e74\u4ee3\u98ce\u683c\u7684\u786c\u5e01\u3002"} +{"id": "0003852", "video_name": "44a349db-1f5f-5ce2-b671-3f808fddf1a9", "text": "\u560e\u5566\u9e1f\u9ad8\u98de\uff0c\u7136\u540e\u731b\u70c8\u5730\u4fef\u51b2\uff0c\u7528\u9524\u5b50\u548c\u9570\u5200\u6807\u5fd7\u653b\u51fb\u65d7\u5e1c\uff0c\u76f4\u5230\u5b83"} +{"id": "4002710", "video_name": "c3f7e27b-631f-53af-93ff-97df0ebfacb5", "text": "\u89e3\u5256\u5b66\u4e0a\u51c6\u786e\u7684\u4eba\u7c7b\u5fc3\u810f\u7206\u70b8\u6210\u4e00\u573a\u949e\u7968\u96e8\uff0c\u4e0b\u843d\u5e76\u71c3\u8d77\u706b\u7130\uff0c\u5168\u666f\u5c55\u793a\uff0c\u9ed1\u8272\u80cc"} +{"id": "8002628", "video_name": "7016572e-51c6-502b-8d0c-b1e583000bcd", "text": "\u672a\u6765\u7684\u673a\u68b0\u4eba\u80f8\u53e3\u4e0a\u5370\u6709\u4e9a\u5386\u5c71\u5927\u00b7\u6851\u5854\u7eb3\u7684\u540d\u5b57\uff0c\u5728Facebook\u4e16\u754c\u4e2d\u884c\u8d70\u3002"} +{"id": "7004923", "video_name": "5bfeb156-a9e9-5389-81c1-26ed0a5a55a8", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u91d1\u8272\u7684\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u88ab\u7ae5\u8bdd\u68ee\u6797\u5305\u56f4\uff0c\u7279\u5199\u7535\u5f71\uff0c4K\uff0cUHD\u3002"} +{"id": "6002681", "video_name": "70d36ac0-198a-5dc5-95d1-27b0bcd59e1c", "text": "\u7ea2\u6fc0\u5149\u7a7f\u8fc7\u7070\u8272\u952e\u76d8\uff0c\u5728\u6b64\u65f6\u952e\u76d8\u4e0a\u51fa\u73b0\u4e86\u989d\u5916\u7684\u8bed\u8a00\u5e03\u5c40\uff0c\u952e\u4ece\u952e\u76d8\u5916\u58f3\u4e2d\u5f39\u51fa\u3002"} +{"id": "2004300", "video_name": "1e64b94e-653f-579b-aea6-20fa3cd46b1c", "text": "\u4e00\u5e45\u60ac\u6d6e\u4e8e\u65e5\u843d\u4e2d\u7684\u57ce\u5e02\u666f\u89c2\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7ed8\u753b\u3002"} +{"id": "1004494", "video_name": "534a8cbc-1c67-544f-a7ae-bed2f68063f1", "text": "\u4f60\u66fe\u7ecf\u505a\u8fc7\u7684\u6700\u7f8e\u7684\u6e05\u6f88\u68a6\uff0c\u6000\u65e7\u7684\u68a6\u3002\u4fef\u77b0\u7740\u98ce\u666f\u7684\u7f8e\u666f\u3002"} +{"id": "2005702", "video_name": "2778520e-dbbf-5e21-b27a-761a8a8ad390", "text": "\u5b5f\u52a0\u62c9\u864e\u6218\u80dc\u7f8e\u6d32\u8c79\u3002"} +{"id": "6003709", "video_name": "f4ca64fa-d933-5b70-a09b-cc446a844cb8", "text": "\u4e00\u4e2a\u7c7b\u4eba\u673a\u5668\u4eba\u5728\u5546\u4e1a\u6d3b\u52a8\u4e0a\u6f14\u8bb2\u5173\u4e8e\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "0005192", "video_name": "16699e1b-fde4-5858-b208-23229e4a455d", "text": "\u4e00\u53ea\u5154\u5b50\u548c\u5176\u4ed6\u52a8\u7269\u5750\u5728\u6df1\u6797\u91cc\u3002"} +{"id": "8003798", "video_name": "1d43d889-6f74-56db-86e0-befc48837735", "text": "\u77f3\u6cb9\u516c\u53f8\u7684\u6807\u5fd7\u662f\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\uff0c\u7ec6\u8282\u5904\u7406\u5f97\u975e\u5e38\u5230\u4f4d\uff0c\u827a\u672f\u5730\u5448\u73b0\u51fa\u949b\u91d1\u5c5e\u8272\u5f69\u7684\u52a8\u611f\u5f62\u8c61\u3002"} +{"id": "0006420", "video_name": "2c0c91b8-b7b8-5336-9bb3-331b3d7092bb", "text": "\u4e00\u74f6\u9648\u5e74\u6717\u59c6\u9152\uff0c\u52a0\u4e0a\u96ea\u8304\u548c\u5496\u5561\uff0c\u662f\u8001\u5e74\u4eba\u7684\u6700\u7231\u3002"} +{"id": "0005217", "video_name": "16bd3ea3-9b8e-5ae8-89c7-1047b9267389", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u5728\u516c\u56ed\u91cc\u3002"} +{"id": "1006628", "video_name": "7989b293-12a9-5718-9d5e-2b5ffe971925", "text": "\u5fcf\u6094\u548c\u91ca\u653e\u6c38\u6052\u75db\u82e6\u7684\u75db\u82e6\u3002"} +{"id": "6004203", "video_name": "e72cd314-8899-598b-97f1-c1a1f1ff6977", "text": "\u5361\u901a\u72d7\u5728\u5361\u901a\u540e\u9662\u4e24\u53ea\u811a\u8d70\u8def\uff0c\u56de\u5230\u5b83\u7684\u72d7\u5c4b\u3002"} +{"id": "1006718", "video_name": "7b161e65-4993-5ff3-ba30-b8dba9a0fb82", "text": "\u5728\u672a\u6765\u57ce\u5e02\u7684\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u7684\u6c7d\u8f66\uff0c\u914d\u4e0a\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u65e5\u843d\u666f\u8272\u3002"} +{"id": "8001307", "video_name": "668ccd0f-56ca-51bd-a495-1f42a73e7607", "text": "translation: \u5723\u6bcd\u739b\u5229\u4e9a\u5728\u4e00\u4e2a\u751f\u65e5\u6d3e\u5bf9\u4e0a\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "0004699", "video_name": "0d888549-5163-56e3-aac2-b718c1e77d70", "text": "\u62db\u52df\u5b69\u5b50\u82f1\u8bed\u5b66\u4e60\u73ed\u7684\u62db\u8058\u5e16"} +{"id": "0005077", "video_name": "145d78e1-569a-5e7d-9e66-ceda0c0e1db5", "text": "\u4e00\u4e2a\u975e\u5e38\u53ef\u7231\u548c\u5f00\u5fc3\u768421\u5c81\u5e74\u8f7b\u5973\u5b50\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\u548c\u9ad8\u5ea6\u5438\u5f15\u4eba\u7684\u897f\u5f0f\u88c5\u626e\u8d70\u5411\u5c4f\u5e55\u3002"} +{"id": "1003385", "video_name": "3e598e6b-8cd5-5ebd-b992-95540bc427ea", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u4ee5\u7535\u5f71\u7684\u65b9\u5f0f\u884c\u8d70\u3002"} +{"id": "8003566", "video_name": "9df477b6-de29-5bbd-b6f0-7663ef4539e5", "text": "\u663e\u793a\u8d27\u5e01 EURUSD \u7684\u8ff9\u8c61\uff0c\u5e76\u95ea\u70c1\u4e24\u4e2a\u706f\uff0c\u5de6\u4fa7\u662f\u7eff\u8272\uff0c\u53f3\u4fa7\u706f\u662f\u7ea2\u8272\u3002"} +{"id": "0005914", "video_name": "23313066-114b-537d-928b-f317f7bd2dc7", "text": "\u6df1\u5165\u68ee\u6797\u4e4b\u540e\uff0c\u5f88\u660e\u663e\u6709\u4e00\u90e8\u5206\u68ee\u6797\u6b63\u9762\u4e34\u7740\u68ee\u6797\u780d\u4f10\u7684\u5a01\u80c1\u3002"} +{"id": "7004538", "video_name": "530ccb41-1e6f-59fe-9556-7b3315f528bc", "text": "\u4e00\u679a\u7ea2\u8272\u7684\u6781\u7b80\u4e3b\u4e49\u8d34\u7eb8\u4e0a\u9762\u5199\u7740\uff1a\u201cGraforsa\u201d\u3002"} +{"id": "5001793", "video_name": "f50c4a9a-99ad-5006-b1be-78e3a4cbe269", "text": "\u624b\u8f7b\u8f7b\u5730\u52a8\u4e86\u4e00\u4e0b\uff0c\u5973\u5b69\u95ee\u4e3a\u4ec0\u4e48\u3002"} +{"id": "2003762", "video_name": "3877847a-8767-5cf0-972a-f4233544f8d6", "text": "\u6162\u52a8\u4f5c\uff0c\u7537\u4eba\u5411\u9ea6\u514b\u98ce\u5927\u58f0\u558a\u53eb\u3002"} +{"id": "2007849", "video_name": "ec9c7a7f-c572-5c0e-9792-8a268875e7ff", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u9ed1\u624b\u515a\u5728\u8bb2\u6545\u4e8b\uff0c\u4ed6\u5f88\u5bb3\u6015\uff0c\u56db\u5904\u5f20\u671b\uff0c\u6234\u7740\u773c\u955c\uff0c\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u80cc"} +{"id": "0004185", "video_name": "04bd6d52-9a8d-5c8a-a1d3-e4fb71da1cef", "text": "\u7528\u8fd9\u6839\u7fbd\u6bdb\uff0c\u5979\u53ef\u4ee5\u671b\u89c1\u56db\u9762\u516b\u65b9\u6570\u82f1\u91cc\u4e4b\u5916\u7684\u666f\u8c61\uff0c\u53d1\u73b0\u6797\u5730\u5730\u9762\u4e0a\u751a\u81f3\u662f\u5fae\u5c0f\u6606\u866b\u6216\u662f\u9ad8"} +{"id": "3004626", "video_name": "f91ae69d-8607-589b-9770-ff51eea44417", "text": "\u79d1\u5e7b\u7535\u5f71\u573a\u666f\uff0c\u514b\u6d1b\u4f0a\u00b7\u8d1d\u5185\u7279\u671d\u955c\u5934\u5954\u8dd1\u3002"} +{"id": "3006860", "video_name": "0a76d9e8-2157-55c4-97e3-601e268c7d75", "text": "\u4e39\u5c3c\u65af\u00b7\u7406\u67e5\u5179\u5728\u4e1b\u6797\u4e2d\u6d17\u6fa1\u3002"} +{"id": "5001856", "video_name": "26635b4d-8274-594b-b253-31c52dbbd24b", "text": "\u8bb8\u591a\u4ee5\u8272\u5217\u58eb\u5175\u5e86\u795d\u52a0\u6c99\u6218\u4e89\u7684\u80dc\u5229\uff0c\u753b\u9762\u4ece\u80cc\u540e\u5448\u73b0\u903c\u771f\u76848K\u6548\u679c\u3002"} +{"id": "7003253", "video_name": "04deed06-93fc-58c5-90f0-67dbd29ae97a", "text": "\u4e00\u4f4d\u5e26\u7740\u660e\u4eae\u3001\u5145\u6ee1\u5e0c\u671b\u5fae\u7b11\u7684\u52a8\u753b\u5973\u5b87\u822a\u5458\uff0c\u4ece\u6d41\u7ebf\u578b\u7a7a\u95f4\u7ad9\u7684\u7a97\u6237\u51dd\u89c6\u7740\u661f\u7a7a\u3002"} +{"id": "1003480", "video_name": "40785323-a218-5855-9709-b7a9fb45b668", "text": "\u6bd4\u5c14\u00b7\u76d6\u8328\u5728\u73a9\u94a2\u7434\u7684\u540c\u65f6\u8df3\u4f1e\u3002"} +{"id": "7004843", "video_name": "34a0b3aa-85ad-5e89-91b0-0fc41d58fc24", "text": "\u4e16\u754c\u5728\u5145\u6ee1\u661f\u8fb0\u7684\u5916\u592a\u7a7a\u4e2d\u65cb\u8f6c\u3002"} +{"id": "2005556", "video_name": "296a6e59-a84c-5546-a92e-b1d9e6625b1b", "text": "\u4e00\u4e2a\u65b0\u7684\u535a\u5ba2\u5c31\u50cf\u521b\u9020\u4e00\u4e2a\u65b0\u7684\u5b87\u5b99\u3002"} +{"id": "8002749", "video_name": "34456617-83a6-5fdd-acf5-b23bd05e9df0", "text": "\u8d85\u73b0\u5b9e\u7684\u4f1a\u8bf4\u8bdd\u7684\u9762\u5305\u3002\u7f29\u5c0f\u89c6\u91ce\u3002\u7ea2\u79fb\u30024\uff1a5\u3002"} +{"id": "6003851", "video_name": "848c5450-2969-5903-94aa-b013dd4aab46", "text": "\u4e00\u4e2a\u5973\u738b\u88ab\u56f0\u5728\u68ee\u6797\u91cc\u7684\u72ee\u8170\u4e2d\u95f4\u3002"} +{"id": "1005866", "video_name": "6bf6ea84-9c23-54ff-a485-b1511cf74858", "text": "\u6211\u4eec\u7684\u6545\u4e8b\u59cb\u4e8e\u5728\u4e1b\u6797\u6df1\u5904\u53d1\u73b0\u4e00\u540d\u5931\u8e2a\u513f\u7ae5\u3002"} +{"id": "7003592", "video_name": "479bdf79-9a50-5361-8b0f-90a158ab459c", "text": "\u52a8\u6f2b\u89d2\u8272\u5973\u5b69\u5934\u53d1\u98d8\u52a8\uff0c\u6f02\u6d6e\u5728\u7a7a\u4e2d\uff0c\u6ca1\u6709\u6c34\u5370\u3002"} +{"id": "1004117", "video_name": "4c45c9c4-1fe6-5ac8-9d62-32f9a4b1cfe0", "text": "\u4e00\u53ea\u7a7f\u7740\u5939\u514b\u7684\u732b\u6cbf\u7740\u4eba\u884c\u9053\u8d70\uff0c4K\uff0c60FPS\uff0c\u903c\u771f\u3002"} +{"id": "1003841", "video_name": "46cc7ba9-ab78-5a79-9252-1cc7fb037d00", "text": "\u533b\u9662\u3001\u5de5\u4e1a\u573a\u6240\u548c\u5e02\u653f\u5e9c\u6c61\u6c34\u5904\u7406\u8bbe\u65bd\u3002"} +{"id": "3003621", "video_name": "9b13a393-aa72-5dca-b1b6-6ec3da1b1bfd", "text": "\u4e00\u4f4d\u62e5\u6709\u9ed1\u8272\u5934\u53d1\u548c\u84dd\u8272\u773c\u775b\u7684\u7f8e\u4e3d\u4e9a\u6d32\u5973\u6027\u3002"} +{"id": "3006124", "video_name": "a0b68096-9367-520a-aa5e-685c6a21524e", "text": "\u771f\u6b63\u7684\u963f\u52aa\u7eb3\u57fa\u3002\u4e2d\u666f\uff0c\u9762\u90e8\u7ec6\u8282\u6e05\u6670\u3002\u4ed6\u5fc5\u987b\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u771f\u6b63\u7684\u963f\u52aa\u7eb3\u57fa\u30023D\u6e32\u67d3\u3002"} +{"id": "8002560", "video_name": "98d80199-14fd-5eea-9063-890b5a09999a", "text": "\u4e00\u4e2a\u5e7f\u88a4\u800c\u795e\u79d8\u7684\u5b87\u5b99\u6d77\u6d0b\uff0c\u6709\u65e0\u6570\u4e2a\u7075\u9b42\u5728\u5404\u81ea\u7684\u65c5\u9014\u4e0a\u3002\u957f\u5ea6\u4e3a3\u5206\u949f\u3002"} +{"id": "0003946", "video_name": "0053f290-f9b5-5547-9626-13734718fc0f", "text": "\u7537\u5b69\u548c\u5916\u661f\u4eba\u98de\u884c\u5728\u94f6\u6cb3\u7cfb\u7684\u4e2d\u592e\u3002"} +{"id": "4003983", "video_name": "cb33722b-e329-5060-86ee-ff63edc167f9", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u6811\u524d\u54ed\u6ce3\u3002"} +{"id": "7003072", "video_name": "009bceba-c742-52d5-8b4d-e0b4de354fcd", "text": "\u4e00\u4e2a\u5c0f\u5b69\u80cc\u7740\u4e66\u5305\u8d70\u8fc7\u6751\u5e84\u3002"} +{"id": "0004028", "video_name": "01c32ab7-4ec3-516e-a72c-70dc0e5d1635", "text": "\u7267\u7f8a\u4eba\u4ef0\u671b\u5929\u7a7a\uff0c\u4e00\u9897\u95ea\u8000\u7684\u660e\u661f\u7167\u4eae\u4e86\u8036\u7a23\u7684\u9a6c\u69fd\u3002"} +{"id": "6003460", "video_name": "7cbd9b6f-162e-5606-b808-1c4df330200a", "text": "\u5979\u5468\u56f4\u6446\u6ee1\u4e86\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u7eaa\u5ff5\u54c1\u548c\u7eaa\u5ff5\u7269\uff0c\u53cd\u6620\u51fa\u5979\u7684\u5192\u9669\u7cbe\u795e\u548c\u65c5\u884c"} +{"id": "1004514", "video_name": "53c4b98c-d4d1-599f-a6cd-3c6080705f82", "text": "\u628a\u58c1\u7089\u548c\u5723\u8bde\u6811\u653e\u5728\u56fe\u7247\u65c1\u8fb9\u3002"} +{"id": "8002791", "video_name": "4626620f-acce-58b7-80b5-dbf5aaa4316c", "text": "\u821e\u53f0\u7684\u706f\u5149\u9010\u6e10\u805a\u7126\u5728\u4e3b\u6301\u4eba\u8eab\u4e0a\uff0c\u4e3a\u6574\u4e2a\u573a\u666f\u6ce8\u5165\u4e86\u4e00\u4e9b\u8f7b\u677e\u6109\u5feb\u7684\u6c1b\u56f4\u3002"} +{"id": "2005057", "video_name": "2fea61f4-360d-59b6-8604-c732f8e26fa1", "text": "\u4fdd\u6301\u53e3\u8154\u536b\u751f\u5e76\u5b9a\u671f\u68c0\u67e5\u53e3\u8154\u5065\u5eb7\uff0c\u4ee5\u786e\u4fdd\u53e3\u8154\u6ca1\u6709\u95ee\u9898\u3002"} +{"id": "5001010", "video_name": "925d84dc-d903-5e8b-b3ee-c24952b9e4fe", "text": "\u5f13\u7bad\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u5f13\u7bad\u524d\u65b9\u6709\u795e\u5947\u7684\u5149\u8292\u3002"} +{"id": "2006625", "video_name": "27f6fdf6-0089-5e48-afc5-56985ba290ef", "text": "\u53ef\u7231\u7684\u5b66\u6821\u670b\u53cb\u6b63\u5728\u4eab\u53d7\u805a\u4f1a\u3002"} +{"id": "0003682", "video_name": "4198cb01-2bb0-5eae-b21b-424ed22b3eda", "text": "\u7531\u514b\u91cc\u65af\u6258\u5f17\u00b7\u8bfa\u5170\u6267\u5bfc\u7684\u771f\u4eba\u7248\u6218\u952440k\u7535\u5f71\u3002"} +{"id": "1006048", "video_name": "6f1110bb-94d0-5354-bfb8-fa7b7dad8575", "text": "\u7a7f\u8fc7\u6811\u6797\uff0c\u4f7f\u7528\u65e7VHS\u5f55\u50cf\u5e26\u62cd\u6444\uff0c4:3\u753b\u9762\u6bd4\u4f8b\u3002"} +{"id": "7003515", "video_name": "0fdad7d0-23a3-504b-8507-46265e6c86f3", "text": "\u5a31\u4e50\u7a7a\u95f4\u3002\u665a\u4e0a\n\u5b69\u5b50\u4eec\u5728\u79cb\u5343\u4e0a\u73a9\u800d\n\u9ad8\u6e05\u683c\u5f0f\u300216:9"} +{"id": "1004852", "video_name": "59a96649-c458-5649-ba39-4dba54415333", "text": "\u7535\u5f71\u5f0f\u7684\u7279\u5199\u955c\u5934\uff0c\u9f99\u8fdb\u5165\u970d\u683c\u6c83\u8328\uff0c\u54c8\u5229\u6ce2\u7279\u98ce\u683c\uff0c4K\u3002"} +{"id": "8001801", "video_name": "3c861941-6ce8-5d35-bdfb-643c6d563650", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u767b\u53f0\u6f14\u5531\u4e00\u999680\u5e74\u4ee3\u7684\u6d41\u884c\u6b4c\u66f2\u3002"} +{"id": "3006312", "video_name": "6584cbd3-b37c-569e-8e1c-336a2b0c6197", "text": "\u8bf7\u6c42\u4e00\u5f20\u6e05\u5e7d\u68ee\u6797\u573a\u666f\u7684\u56fe\u50cf\uff0c\u65e9\u6668\u7684\u96fe\u6c14\u4e2d\u51fa\u73b0\u5947\u5e7b\u751f\u7269\uff0c\u8981\u6c42\u8d85\u5199\u5b9e\u3002"} +{"id": "3003469", "video_name": "ac64c016-d333-5257-a2a0-d88d75802927", "text": "\u4e00\u5217\u706b\u8f66\u7ecf\u8fc7\u4e00\u6761\u6ee1\u662f\u5de8\u5927\u9c7c\u7c7b\u7684\u6cb3\u6d41\u3002"} +{"id": "1004001", "video_name": "4a133ead-9409-5c7d-ab95-e353cdaf0d5b", "text": "\u5361\u5c14\u00b7\u9a6c\u514b\u601d\u54ed\u6ce3\u7684\u7279\u5199\u955c\u5934"} +{"id": "3005315", "video_name": "6bf52b38-910a-5158-8e9e-25d7d8416627", "text": "3D\u5973\u5b69\u548c\u9e1f\u7684\u5feb\u4e50\u5f62\u8c611"} +{"id": "1004838", "video_name": "596a9c83-5dcc-5c28-a1b6-c2334650b501", "text": "\u5c06\u978b\u5b50\u7684\u989c\u8272\u4ece\u6a59\u8272\u6539\u4e3a\u706b\u7130\u8272\u3002"} +{"id": "6003788", "video_name": "c687493b-e7f3-5a39-8952-1d02a1655280", "text": "\u5361\u901a\u52a8\u6f2b\u4eba\u7269\u6500\u722c\u94b1\u5e01\u9636\u68af\u4ee5\u5230\u8fbe\u57ce\u5e02\u7684\u9876\u7aef\uff0c\u540c\u65f6\u8fd8\u8981\u4e0e\u8d1f\u9762\u60c5\u7eea\u4f5c\u6597\u4e89\u3002"} +{"id": "1004277", "video_name": "4f1abb71-c89f-5f53-9f6a-2e8bfc77dc48", "text": "\u5c06\u300a\u9053\u5fb7\u7ecf\u300b\u7b2c\u4e00\u7ae0\u6240\u63cf\u8ff0\u7684\u6df7\u6c8c\u548c\u539f\u521d\u72b6\u6001\u5f62\u8c61\u5316\u3002"} +{"id": "4004829", "video_name": "9b178eb0-1eb6-5d8e-a4c6-346600f68bc6", "text": "\u4f7f\u7528Intel\u3001Amd\u3001Ryzen\u3001Nvidia\u3001Rog\u3001Aurus\u521b\u5efa\u7b80\u4ecb\u89c6\u9891\u3002"} +{"id": "8002239", "video_name": "6401b614-af32-50e2-8c5f-4f4952066fe5", "text": "\u7528\u71c3\u70e7\u7684\u6728\u5934\u4f5c\u4e3a\u80cc\u666f\uff0c\u4ee5\u4e61\u6751\u573a\u666f\u4e3a\u80cc\u666f\uff0c\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u70e4\u9e21\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u5206"} +{"id": "1005344", "video_name": "623a02c9-ffc8-5be4-a39d-110706346c7b", "text": "\u7537\u5b50\u5728\u7535\u8bdd\u4e0a\u8bf4\u8bdd\uff0c\u4ed6\u6b63\u5728\u604b\u7231\u4e2d\uff0c\u663e\u5f97\u4f18\u96c5\u3002"} +{"id": "3003465", "video_name": "8a10d089-12d1-5634-897b-411ced843300", "text": "\u70df\u82b1\u70b9\u71c3\uff0c\u5728\u591c\u7a7a\u57ce\u5e02\u80cc\u666f\u4e0b\u7efd\u653e\uff0c\u653e\u7f6e\u5728\u5730\u9762\u4e0a\u3002"} +{"id": "2003665", "video_name": "60e8998f-4cc5-5fe2-b0a3-853473152dfc", "text": "\u5947\u602a\u7684\u6709\u673a\u5fae\u89c2\u7ed3\u6784\u7403\u5f62\u8718\u86db\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u4e2d\u5fc3\u8109\u52a8\u65cb\u8f6c\u3002"} +{"id": "0006597", "video_name": "2f4a636a-65b9-590e-90c6-efd39cac5090", "text": "\u4e00\u4e2a\u4fe1\u53f7\u4e0d\u65ad\u95ea\u70c1\u7684\u77e2\u91cf\u793a\u6ce2\u5668\u3002"} +{"id": "4002854", "video_name": "a30898cb-d167-5406-ac24-1263329b1f89", "text": "\u4e00\u7fa4\u4eba\u88ab\u5173\u5728\u6811\u6797\u91cc\u7684\u94c1\u7b3c\u5b50\u91cc\u3002"} +{"id": "3005954", "video_name": "82cd2606-c1df-5705-85c5-13b35216e1ad", "text": "\u8d5b\u535a\u730e\u8c79\u7a7f\u8d8a\u4e00\u4e2a\u53cd\u4e4c\u6258\u90a6\u7684\u672a\u6765\u4e1b\u6797\u3002"} +{"id": "3004890", "video_name": "badd3782-192c-5cb9-9e48-c27ed5a40b07", "text": "\u8fd9\u4f4d\u5546\u4eba\u6b63\u5728\u4eab\u53d7\u4ed6\u7684\u65b0\u751f\u6d3b\u3002"} +{"id": "3004176", "video_name": "c23be487-bfef-57f6-aeea-8c163c0358e3", "text": "\u7535\u5f71\u9ed1\u8272\u7535\u5f71\uff0c\u76d7\u7a83\uff0c\u7ebd\u7ea6\u8857\u5934\uff0c\u6444\u50cf\u673a\u653e\u5927\u955c\u5934"} +{"id": "1004215", "video_name": "4ded606e-8aeb-5514-8f98-9ed6c6dfbe32", "text": "\u8774\u8776\u62cd\u6253\u82b1\u6735\u4e0a\u7684\u98ce\uff0c\u98ce\u5439\u52a8\u9c9c\u82b1\u3002"} +{"id": "0006151", "video_name": "2762461a-2a8e-53a2-8271-6f3c4abdfaee", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\u76f4\u63a5\u770b\u5411\u76f8\u673a\u3002"} +{"id": "0004133", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "\u6234\u7740\u53d1\u8fab\u7684\u7537\u5b50\u5728\u592a\u7a7a\u4e2d\u6f14\u594f\u5c0f\u63d0\u7434\uff0c\u9ad8\u7ec6\u8282\u6570\u5b57\u63d2\u56fe\u3002"} +{"id": "3003417", "video_name": "fe572cf0-ffbf-535f-9f04-0892b6cb3068", "text": "\u4e00\u540d\u5973\u6027\u6b63\u5728\u5730\u94c1\u7ad9\u7b49\u5f85\uff0c\u4f7f\u7528\u8033\u673a\u542c\u97f3\u4e50\u3002"} +{"id": "3006432", "video_name": "348a5534-113a-53c7-8b15-fc33d61229fc", "text": "\u9ed1\u6697\u68ee\u6797\u91cc\u7684\u5c0f\u6728\u5c4b\u3002\u300a\u5deb\u5e083\u300b\u6e38\u620f\u98ce\u683c\u3002"} +{"id": "2007324", "video_name": "9834755a-c360-53af-8095-3443fddc4073", "text": "\u4e00\u4e2a\u7537\u5b69\u8d70\u5728\u8857\u4e0a\uff0c\u5468\u56f4\u4eba\u7fa4\u7199\u6518\uff0c\u8857\u9053\u5c31\u50cf\u5b5f\u4e70\u7684\u5c0f\u5df7\u3002"} +{"id": "1004807", "video_name": "58dea273-50d7-519e-9609-f59451d24ee5", "text": "\u89c6\u989116:9\u5728\u591c\u665a\u8fd1\u8ddd\u79bb\u62cd\u6444\u5634\u5df4\u8bf4\u8bdd\uff0c\u84dd\u5149\u7167\u5c04\u4e0b\uff0c\u7259\u9f7f\u6d01\u767d\u3002"} +{"id": "2004710", "video_name": "c8350fde-3c83-577e-892d-09fc7e8760f0", "text": "\u6bcf\u4e00\u5e27\u90fd\u5e94\u8be5\u662f\u4e0d\u540c\u7684\u57ce\u5e02\uff0c\u771f\u7684\u5f88\u95ea\u8000\uff0c\u5f88\u6709\u6545\u969c\u7684\u672a\u6765\u5de5\u4e1a\u57ce\u5e02\u56fe\u50cf\u3002"} +{"id": "1005243", "video_name": "60725adb-8c9b-51f4-b2a3-225fff162ccf", "text": "\u9e1f\u513f\u4ece\u753b\u5916\u98de\u8fdb\u6765\u3002 \n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "0004483", "video_name": "09bd0cfa-41b8-5998-a3b7-e1f238226e8c", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u63cf\u7ed8\u54c8\u5229\u5728\u683c\u5170\u82ac\u591a\u684c\u65c1\u7d27\u5f20\u5730\u7b49\u5f85\u9009\u62e9\u5e3d\u4eea\u5f0f\u7684\u573a\u666f\u3002"} +{"id": "7003080", "video_name": "d7833f0f-a6f3-5ac5-838b-83f829493e35", "text": "\u4e00\u679a\u706b\u7bad\u4ece\u53d1\u5c04\u53f0\u4e0a\u70b9\u71c3\u8d77\u98de\uff0c\u51b2\u4e0a\u660e\u6717\u6674\u7a7a\uff0c\u5524\u8d77\u4e86\u6280\u672f\u8fdb\u6b65\u7684\u7cbe\u795e\u3002"} +{"id": "7004373", "video_name": "44e0deec-e604-55dc-8427-39946a5a759b", "text": "\u517d\u4eba\u9a91\u5175\u961f\u4f0d\u8e0f\u7740\u6218\u9f13\u5954\u5411\u6218\u573a\u3002"} +{"id": "2005439", "video_name": "ff958e8c-5573-5947-908e-8bb9eaf7ae21", "text": "\u4e00\u6735\u767d\u8272\u7684\u82b1\u6735\u60ac\u6302\u5728\u6c34\u9762\u4e0a\uff0c\u7ea2\u8272\u548c\u7c73\u8272\u7684\u98ce\u683c\uff0c\u8d85\u73b0\u5b9e\u7684\u3001\u68a6\u5e7b\u7684\u610f\u8c61\uff0c\u6469\u7279\u7cfb\u3001"} +{"id": "8001459", "video_name": "29ead879-7ece-5048-b35d-5c851da82432", "text": "M1A2\u5766\u514b\u6b63\u5728\u5411\u53e6\u4e00\u8f86T90M\u5766\u514b\u5f00\u706b\u3002"} +{"id": "5001795", "video_name": "5339d5bb-6270-5afa-a925-fd0b94ac15a6", "text": "\u8b66\u5bdf\u88c5\u5907\u6b66\u5668\u548c\u88c5\u5907\u7684\u5feb\u901f\u5207\u5272\u3002"} +{"id": "2006520", "video_name": "080481b5-40cc-5eee-a4d5-7b5a05d0aae1", "text": "\u5728\u5c4f\u5e55\u9876\u90e8\u521b\u5efa\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u8ba9\u4e00\u7247\u6811\u53f6\u57285\u79d2\u5185\u6162\u6162\u98d8\u843d\u5230\u5730\u9762\u3002\u6811\u53f6\u5e94\u8be5\u662f"} +{"id": "2007747", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u4e0a\u89c2\u5bdf\u666f\u89c2\u3002"} +{"id": "2004872", "video_name": "39414fa3-64bc-5610-8386-af6252161d49", "text": "\u4e00\u53ea\u4ed3\u9f20\u8d70\u5728\u8611\u83c7\u4e0a\u7684\u63d2\u56fe\u3002"} +{"id": "2004678", "video_name": "3f35f446-fbea-5971-9bdd-bc3d2ff2650c", "text": "\u739b\u96c5\u6587\u660e\u7684\u7f8e\u4e3d\u5b81\u9759\u65e5"} +{"id": "3006148", "video_name": "fc374099-56fc-523e-8be5-2b1adee33325", "text": "\u73a9\u800d\u573a\u6240\u5728\u591c\u665a\uff0c\u6709\u8bb8\u591a\u6c7d\u8f66\u548c\u6050\u9f99\u3002"} +{"id": "0006502", "video_name": "2d976b89-0a16-54bf-8a10-adc4e6226d31", "text": "\u5973\u738b Oh Hira \u5e26\u7740\u5979\u7684 PS \u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "6004466", "video_name": "8a1441ae-d684-5249-8a75-4effffd41923", "text": "\u4e00\u95f4\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u51e0\u4e4e\u65e0\u6cd5\u8fa8\u8ba4\u7684\u5f62\u72b6\u5728\u6ce8\u89c6\u7740\u4f60\u3002"} +{"id": "8001668", "video_name": "10c00015-9df2-5902-804d-9bf83ab0f588", "text": "\u5e55\u540e\u89c6\u9891\u5236\u4f5c\u5546\u4e1a\u62cd\u6444\u7684\u6444\u5f71\u5bfc\u6f14"} +{"id": "2003434", "video_name": "78f7a883-4eaf-5532-88a6-fd11f12b8d79", "text": "\u68ee\u6797\u4e2d\u5feb\u4e50\u6210\u529f\u7684\u7537\u4eba"} +{"id": "0003680", "video_name": "41947b5d-481a-56fd-aed9-7f156402fca1", "text": "\u5728\u5361\u62c9\u62c9\u90a6\u4e00\u500b\u6751\u838a\u7684\u7167\u7247\uff0c\u62cd\u651d\u65bc\u7a3b\u7530\u9644\u8fd1\u7684\u65e5\u51fa\u6642\u523b\u3002"} +{"id": "8003503", "video_name": "48048d4c-800b-59ad-a132-460b911c4bcc", "text": "\u5c0f\u7537\u5b69\u4ece\u592a\u9633\u8df3\u5230\u5730\u7403\u4e0a\u3002"} +{"id": "6003726", "video_name": "0386b2c1-ca39-57c5-bd2e-a2baaf8cb567", "text": "\u8682\u8681\u4eec\u5e26\u7740\u4e00\u5757\u7cd6\u5757\u9003\u8dd1\uff0c\u4e00\u8d77\u8ffd\u8d76\u4eba\u7c7b\u3002"} +{"id": "3005644", "video_name": "6fded791-258d-5ebe-993d-06b416904e99", "text": "\u5730\u7403\u5347\u8d77\uff0c3D\uff0c\u5206\u4f53\u7167\u660e\uff0c16k\uff0c\u903c\u771f\u7167\u7247\u3002"} +{"id": "5001021", "video_name": "e1e845bd-f8f6-5f93-83b3-3660f2604934", "text": "\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u8863\u670d\u3001\u5728\u7a7a\u95f4\u4e2d\u6f02\u6d6e\u7684\u53ef\u7231\u673a\u5668\u4eba\uff0c\u5f39\u594f\u4e00\u4e2a\u7528\u9762\u5305\u505a\u6210\u7684\u94a2\u7434\u7684\u89c6\u9891\u3002"} +{"id": "7002733", "video_name": "ed0ca6ca-383d-569d-bd21-4fae3f5dd504", "text": "\u767d\u8272\u672a\u6765\u4e3b\u4e49\u6d77\u4e0a\u5927\u94a2\u7434"} +{"id": "3006659", "video_name": "72850798-d859-5991-bc2f-5465c8547c82", "text": "\u5b59\u609f\u7a7a\u4ee5\u95ea\u7535\u822c\u7684\u901f\u5ea6\u4fef\u51b2\u800c\u4e0b\u3002\u5728\u5373\u5c06\u89e6\u5730\u4e4b\u524d\uff0c\u4ed6\u7a81\u7136\u505c\u4e0b\u811a\u6b65\uff0c\u7075\u6d3b\u5730\u505a\u4e86\u4e00\u4e2a"} +{"id": "3006403", "video_name": "66e6ac89-b290-5807-ab85-20e6abc3691a", "text": "1920\u5e74\u4ee3\u7684\u65e0\u58f0\u7535\u5f71\uff0c8\u6beb\u7c73\uff0c\u6a21\u7cca\uff0c\u8fc7\u671f\u7684\u80f6\u7247"} +{"id": "8002115", "video_name": "f1ca7e9d-6d52-584f-893e-499f3abc482f", "text": "\u90fd\u5e02\u591c\u665a\uff0c\u7e41\u5fd9\u4ea4\u901a\uff0c\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "1004483", "video_name": "530ccb41-1e6f-59fe-9556-7b3315f528bc", "text": "\u4e00\u679a\u7ea2\u8272\u7684\u6781\u7b80\u4e3b\u4e49\u8d34\u7eb8\u4e0a\u9762\u5199\u7740\uff1a\u201cGraforsa\u201d\u3002"} +{"id": "2005891", "video_name": "5e6e51cf-e2b6-5f8f-bb63-ad05a71c550d", "text": "\u7cbe\u7075\u6c34\u6cd5\u5e08\u5728\u84dd\u8272\u6cb3\u6d41\u4e2d\u5236\u9020\u6ce2\u6d6a\uff0c\u98ce\u683c\uff1a2D\u52a8\u753b\uff0c\u5316\u8eab\u6700\u540e\u7684\u6c14\u5b97\u3002"} +{"id": "1005995", "video_name": "6e30609e-1ec3-5c08-ae57-1c5bb8a16bb2", "text": "\u4e00\u4f4d\u8001\u5987\u4eba\u6084\u6084\u5730\u9760\u8fd1\u4e86\u3002\u4fe1\u606f\uff1a 1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1005421", "video_name": "63980a61-277f-5b47-a3a3-f0b6a05c5230", "text": "translation: \u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u9b54\u672f\u5e08\u7a7f\u7740\u675f\u8170\u80f8\u8863\u548c\u7f51\u889c\uff0c\u4ece\u5979\u7684\u9ad8\u9876\u793c\u5e3d\u91cc\u53d8\u51fa\u4e00\u53ea"} +{"id": "0004597", "video_name": "0baecd5c-0186-5aa7-9486-dcaee898f178", "text": "\u63cf\u8ff0Ajay\u548cNisha\u4e4b\u95f4\u6fc0\u70c8\u4e89\u5435\u7684\u8fc7\u7a0b\uff0c\u5bfc\u81f4\u4e86\u6253\u8033\u5149\u7684\u4e8b\u4ef6\u3002"} +{"id": "7003946", "video_name": "ffd8b882-587a-50ce-85fe-411a1b21f190", "text": "\u5851\u6599\u68ee\u6797\u91cc\u7684\u84b8\u6c7d\u6ce2\u7011\u5e03"} +{"id": "3004635", "video_name": "14529c46-be89-50d6-ad0c-a874541c128d", "text": "\u6d77\u76d7\u8239\u6b63\u5728\u9760\u8fd1\u4e00\u4e2a\u6709\u5927\u578b\u7535\u97f3\u6d3e\u5bf9\u7684\u5c9b\u5c7f\u3002"} +{"id": "5001072", "video_name": "51df3f97-9e42-556f-8b69-0fef889b96d1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4ed6\u7684\u8863\u67dc\u4e0b\u62ff\u51fa\u8d85\u7ea7\u82f1\u96c4\u62ab\u98ce\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u4e3a\u80cc\u666f\uff0c\u8272\u5f69"} +{"id": "1005533", "video_name": "65da1879-8298-56bd-b39f-8e5eda5be17f", "text": "\u6f02\u4eae\u7684\u5973\u58eb\u7ad9\u5728\u57ce\u5e02\u4e2d\u5fc3\uff0c\u4e00\u9897\u5c0f\u884c\u661f\u649e\u51fb\u4e86\u4e00\u5ea7\u5efa\u7b51\uff0c\u7136\u540e\u5b83\u5012\u584c\u5728\u5979\u8eab\u4e0a\u3002"} +{"id": "8002555", "video_name": "ed632300-6ef4-541b-9a96-35d969ad5820", "text": "\u4e00\u7247\u795e\u79d8\u7684\u96fe\u6c14\u7f2d\u7ed5\u7684\u68ee\u6797\u3002\u96fe\u6c14\u7f13\u6162\u5730\u79fb\u52a8\u3002"} +{"id": "7003056", "video_name": "227aceea-3a9f-523e-94b8-8a19ef4d9218", "text": "\u79fb\u52a8\u3001\u52a8\u753b\u3001\u7535\u5f71\u30018K\u3001\u661f\u7403\u5927\u6218\u3001\u5854\u56fe\u56e0\u661f\u7403\u4e0a\u7684\u5b89\u5353\u3001\u5a74\u513f\u3002"} +{"id": "1004985", "video_name": "5c21e851-af2a-5fc7-a07a-693fd5a362d0", "text": "\u5728CWC 2023\uff0c\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5370\u5ea6\u677f\u7403\u961f\u7684\u7ef4\u62c9\u7279\u00b7\u79d1\u91cc\u54ed\u7740\u770b\u7740\u6fb3\u5927\u5229\u4e9a\u677f\u7403\u961f\u7684\u5e86\u795d\uff0c"} +{"id": "1005633", "video_name": "67924aad-58b6-583b-8b14-9f1a62e1af11", "text": "\u591a\u79cd\u4e0d\u540c\u98ce\u666f\u7684\u8499\u592a\u5947\uff1a\u4e00\u4e2a\u62e5\u6324\u7684\u6469\u5929\u5927\u697c\u57ce\u5e02\uff0c\u4e00\u7247\u5b89\u9759\u7684\u9633\u5149\u900f\u8fc7\u6811\u6728\u7684\u68ee"} +{"id": "2004402", "video_name": "5255ac3c-df87-5d56-8272-e61086572454", "text": "\u5b69\u5b50\u4eec\u6b63\u5728\u73a93D\u52a8\u753b\u3002"} +{"id": "4004309", "video_name": "44305e45-42c7-50ed-855a-b3e939ceed9d", "text": "\u4e94\u4e2a\u8eab\u7740\u672a\u6765\u4e3b\u4e49\u5723\u6bbf\u9a91\u58eb\u76d4\u7532\u7684\u4eba\u7269\u88ab\u63ed\u793a\u51fa\u6765\uff0c\u6bcf\u4e2a\u4eba\u90fd\u6709\u72ec\u7279\u7684\u6218\u6597\u98ce\u683c"} +{"id": "0005825", "video_name": "21cf75f7-6b16-5d7f-8f3e-bf083cdb40f2", "text": "\u4eba\u7c7b\u8fc1\u5f99\u7684\u672a\u6765-\u5f92\u6b65\u65c5\u884c"} +{"id": "2003397", "video_name": "34226747-2ff3-59c9-a647-dfa460ebbcd8", "text": "\u8d85\u9ad8\u6e054K\uff0c\u7537\u5973\u8df3\u821e\uff0c\u52a8\u4f5c\u5f88\u591a\u3002"} +{"id": "7003767", "video_name": "60bad1a1-0ca5-512e-8df9-31ec64c11f49", "text": "1957\u5e74\u7535\u5f71\u7247\u6bb5\uff0c\u8fd9\u4e2a\u573a\u666f\u7684\u4e3b\u89d2\u662f\u4e00\u4f4d\u5341\u51e0\u5c81\u7684\u5973\u6f14\u5458\uff0c\u957f\u957f\u7684\u6ce2\u6d6a\u9ed1\u53d1\uff0c\u7a7f\u7740\u519c\u6c11\u88d9\uff0c\u7f8e"} +{"id": "1005865", "video_name": "6bf52b38-910a-5158-8e9e-25d7d8416627", "text": "3D\u5973\u5b69\u548c\u9e1f\u7684\u5feb\u4e50\u5f62\u8c611"} +{"id": "4003972", "video_name": "3c2ded77-9369-5995-9552-55ca1cb837a7", "text": "\u5df4\u897f\u5730\u56fe\uff0c\u6807\u6ce8\u4e8623\u4e2a\u5dde\u7684\u4f4d\u7f6e\u3002\u771f\u5b9e\u611f\u3002"} +{"id": "0006582", "video_name": "2efa3582-58b2-536f-83b4-1965f774b1cc", "text": "\u4e00\u53ea\u673a\u5668\u4eba\u5728\u6708\u4eae\u4e0a\u548c\u732b\u54aa\u73a9\u800d\u3002"} +{"id": "4002167", "video_name": "ad7bc4ca-8b38-5389-8950-ce3d4d29138e", "text": "\u6124\u6012\u5728\u6162\u6162\u79ef\u805a\uff0c\u66fe\u7ecf\u4eb2\u5bc6\u65e0\u95f4\u7684\u5144\u5f1f\u59d0\u59b9\u5728\u540c\u4e00\u5c4b\u6a90\u4e0b\u53d8\u5f97\u964c\u751f\u4e86\u3002"} +{"id": "0003540", "video_name": "3f392baf-1bd2-58e8-b330-6d936c9b603a", "text": "\u5728\u8352\u51c9\u7684\u9634\u5f71\u4e2d\uff0c\u6050\u60e7\u627c\u4f4f\u4e86\u5fc3\u7075\u3002"} +{"id": "6004268", "video_name": "96534963-628f-5476-aa50-bc2727e5af1e", "text": "\u7f51\u7edc\u5973\u5b69\u9a91\u5728\u72fc\u80cc\u4e0a\uff0c\u9ed1\u6697\u7403\u4f53\u7269\u8d28\uff0c4K\uff0c\u52a8\u60012\u3002"} +{"id": "3004996", "video_name": "d9373e89-df0a-54bd-9029-7d99fbfa6144", "text": "\u7518\u9053\u592b\u7a7f\u7740\u6b7b\u4f8d\u670d\uff0c\u4ed6\u9a91\u5728\u4e00\u53ea\u9cb8\u9c7c\u4e0a\u3002"} +{"id": "2006019", "video_name": "b9e01e6b-45c0-5a5c-b78e-ce061d6be079", "text": "Translation: \u4e00\u4e2a\u5973\u5b69\u7b2c\u4e00\u773c\u770b\u5230\u4e00\u4e2a\u7537\u5b69\u5c31\u6709\u4e86\u7231\u7684\u611f\u89c9\u3002"} +{"id": "3005736", "video_name": "2ba28b74-4efb-58f5-b937-165e4157ce82", "text": "\u4e00\u573a\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u7ea2\u8272\u6c7d\u8f66\u5728\u6865\u4e0a\u8ffd\u9010\u9ec4\u8272\u6c7d\u8f66\u3002"} +{"id": "4003482", "video_name": "fbc2b9ed-7a18-5a6b-8caf-877027226fd6", "text": "\u6251\u514b\u73a9\u725b\u4ed4\u5728\u57ce\u5e02\u73af\u5883\u4e2d\u3002\u4fe1\u606f\uff1aPolkacity\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003447", "video_name": "8ef0a440-836b-5ba7-98ce-bdf666a71d2f", "text": "\u6d77\u6ee9\u4e0a\u7684\u6c99\u5b50\uff0c\u76ee\u5149\u6240\u53ca\u8fc5\u901f\u7f29\u653e\u81f3\u8fdc\u65b9\u7684\u6d77\u6d0b\u3002"} +{"id": "4002126", "video_name": "8c8652e9-b061-503e-ab40-2f9c8f2e1995", "text": "\u4ece\u773c\u775b\u5f00\u59cb\u62cd\u6444\u573a\u666f\uff0c\u6162\u6162\u5411\u5916\u7f29\u653e\u5230\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u5b8c\u6574\u7537\u6027\u8eab\u4f53\u7684\u4f4d\u7f6e\u3002"} +{"id": "1004506", "video_name": "5386ec15-3929-5e5d-8d4c-82e218126380", "text": "\u5728\u7530\u91ce\u4e0a\u5403\u8349\u548c\u73a9\u800d\u7684\u5c0f\u725b\u7684\u753b\u4f5c\u3002"} +{"id": "3003221", "video_name": "87691c99-7723-57b5-861b-2af362e4b0c2", "text": "\u5728\u5e9f\u5f03\u7684\u592a\u7a7a\u5de1\u6d0b\u8230\u62c6\u89e3\u573a\u4e2d\uff0c\u8fdb\u884c\u7740\u4e0d\u53ef\u80fd\u7684\u9ad8\u901f\u592a\u7a7a\u98de\u8239\u8ffd\u9010\u3002"} +{"id": "3004998", "video_name": "aa594e46-b1c4-5342-8ba9-2674c6b8cfa1", "text": "\u4e0a\u5e1d\u795d\u798f\u4e86\u4eba\u7c7b\uff0c\u5e76\u5bf9\u4ed6\u4eec\u8bf4\uff1a\u201c\u8981\u7e41\u884d\u751f\u606f\uff0c\u5145\u6ee1\u5730\u9762\uff0c\u5236\u4f0f\u5b83\uff0c\u7ba1\u7406\u5730\u4e0a\u7684\u4e00\u5207\u52a8\u7269\u3002\u201d"} +{"id": "2004227", "video_name": "df71256b-534f-5dda-bf7b-49aa8fe60f1e", "text": "\u9713\u8679\u706f\u5149\u6e10\u6e10\u6d88\u9000\u5e76\u73af\u7ed5\u6ed1\u52a8\u3002"} +{"id": "5001645", "video_name": "64e2e446-bde2-59cf-b501-e83472907a20", "text": "\u72ee\u5b50\u5076\u7136\u53d1\u73b0\u4e00\u53ea\u88ab\u56f0\u7684\u6323\u624e\u7684\u8001\u9f20\u3002"} +{"id": "4003810", "video_name": "128205be-305c-57cd-a093-f0276fa49587", "text": "\u70f9\u996a\uff1a\u5728\u9505\u4e2d\u52a0\u70ed\u9165\u6cb9\uff0c\u7136\u540e\u5c06\u6d0b\u8471\u7092\u719f\u3002"} +{"id": "3006981", "video_name": "06ad541b-c962-57d8-8139-a9e666d5ce71", "text": "1. \u5728\u4e00\u4e2a\u5927\u7897\u4e2d\uff0c\u5c06\u9ec4\u74dc\u3001\u756a\u8304\u548c\u9cc4\u68a8\u6df7\u5408\u5728\u4e00\u8d77\u3002\n2. \u5728\u4e00\u4e2a\u5c0f\u7897\u4e2d\uff0c\u5c06\u76d0\u3001\u9ed1\u80e1"} +{"id": "3005145", "video_name": "125e23da-2feb-5881-9f25-46045c08c986", "text": "\u6297\u8bae\u8005\u5728\u77f3\u6cb9\u5de5\u4eba\u8eab\u4e0a\u65bd\u66b4\uff0c\u80cc\u666f\u662f\u77f3\u6cb9\u5de5\u5382\uff0c\u5730\u70b9\u5728\u7f8e\u56fd\u4e2d\u897f\u90e8\uff0c\u5206\u8fa8\u7387\u4e3a4K\u3002"} +{"id": "1005713", "video_name": "69096b56-3f60-544f-a068-2827aea276b2", "text": "\u4e00\u4e2a\u4ee5\u7eaa\u5f55\u7247\u98ce\u683c\u5448\u73b0\u7684\u4ee5\u8272\u5217\u5df4\u52d2\u65af\u5766\u5730\u56fe\u7684\u4e09\u7ef4\u52a8\u753b\uff0c\u5c06\u5730\u56fe\u5206\u6210\u4e24\u90e8\u5206\uff0c\u4e00\u4e2a\u662f\u5df4\u52d2\u65af"} +{"id": "3003650", "video_name": "1abfc839-5551-5bab-a980-286d8314df31", "text": "\u9cf4\u4eba\u5e26\u7740\u95ea\u4eae\u7684\u87ba\u65cb\u4e38\u51b2\u950b\u3002"} +{"id": "8002711", "video_name": "876899e2-1928-596a-a8c4-f142da7aeca8", "text": "\u4e00\u4e2a\u4e2d\u56fd\u9910\u9986\u7684\u9e1f\u77b0\u56fe"} +{"id": "2006528", "video_name": "799dbaf2-bc96-56e0-aac0-1abb766e4183", "text": "500\u5e74\u524d\uff0c\u6d1b\u6749\u77f6\u88ab\u9057\u5f03\uff0c\u53d8\u6210\u4e86\u4e00\u7247\u6df1\u6797\uff0c\u7535\u5f71\u822c\u7684\u9e1f\u77b0\uff0c\u65cb\u8f6c\u7f29\u8fdb\uff0c\u903c\u771f"} +{"id": "1003501", "video_name": "40c09a21-ecbe-57d0-b37b-4356ca57ecf3", "text": "\u8fd9\u5f20\u56fe\u7247\u4e2d\u7684\u8033\u73af\u6765\u56de\u6447\u6446\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005000", "video_name": "ebbbdb75-f373-55af-8215-1a9bad061bfe", "text": "\u573a\u666f\u8f6c\u79fb\u5230\u91d1\u4ed9\u8def\uff0c\u591c\u665a\u7684\u9713\u8679\u706f\u5145\u6ee1\u4e86\u8857\u9053\u7684\u6d3b\u529b\u3002"} +{"id": "3004851", "video_name": "559e54a4-8098-57bd-a069-aa7c510bc9ba", "text": "\u9ec4\u6cb9\u5728\u70ed\u9505\u4e0a\u878d\u5316\u4e86\u3002"} +{"id": "3003365", "video_name": "44894d57-d2ed-564a-9965-a2b3222aacec", "text": "\u5546\u4eba\u5728\u529e\u516c\u5ba4\u8d5a\u94b1\u3002"} +{"id": "1004989", "video_name": "5c3b3a8b-86f7-5503-9086-63eb9319afa2", "text": "\u8d1d\u4e1d\u6b63\u5728\u7ad9\u7740\u8df3\u4e00\u652f\u83b1\u5179\u91d1\u5361\u821e\u3002"} +{"id": "8002229", "video_name": "65147869-4d5f-542f-8ea2-5c917e374e04", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u8d858\u8ff7\u5e7b\u5f69\u8272\u955c\u5934\uff0c\u5c55\u73b0\u4e86\u4e00\u9897\u5f57\u661f\u9760\u8fd1\u6df1\u7a7a\u884c\u661f\u7684\u573a\u666f\uff1a\u6211\u4eec\u4ece\u8fdc\u5904\u770b\u5230"} +{"id": "3005430", "video_name": "a3024cd3-3b1e-5b37-9bf7-e83749c208c1", "text": "\u89c6\u89c9\uff1a\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u652f\u5c0f\u5c0f\u7684\u70b9\u71c3\u8721\u70db\u3002\u884c\u52a8\uff1a\u8721\u70db\u7684\u5149\u4eae\u4f7f"} +{"id": "7003779", "video_name": "30d12d3c-9cb4-525e-a583-b31aaa475fc2", "text": "\u5728\u5927\u57ce\u5e02\u7684\u8857\u9053\u4e0a\uff0c\u4eba\u4eec\u6b22\u6b23\u8df3\u821e\u3002"} +{"id": "2007087", "video_name": "bdb93da6-d5e1-507b-a9bf-952716621d8f", "text": "\u7528\u6df1\u8272\u8bbe\u8ba1\u521b\u9020\u51fa\u4e00\u4e2a\u73b0\u4ee3\u53a8\u623f\u5ba4\u5185\u8bbe\u8ba1\u7684\u903c\u771f\u6e32\u67d3\u56fe\u3002"} +{"id": "8002281", "video_name": "5aa80ce6-c834-5f72-9930-9488bfa27fbb", "text": "\u795e\u7ecf\u7f51\u7edc\u7684\u62bd\u8c61\u6570\u5b57\u666f\u89c2\uff0c\u53d1\u5149\u7ebf\u8fde\u63a5\u62bd\u8c61\u5f62\u72b6\u3002"} +{"id": "6003134", "video_name": "5adb2e72-f49e-5d45-b614-ec0d0737a42a", "text": "\u6cf0\u8fea\u718a\u7ecf\u5386\u4e86\u4e00\u4e2a\u7cbe\u795e\u75c5\u53d1\u4f5c\u3002\u6cf0\u8fea\u718a\u5bf9\u7740\u6444\u50cf\u5934\u5c16\u53eb\u3002\u6444\u50cf\u673a\u4e0d\u7a33\u5b9a\uff0c"} +{"id": "1004530", "video_name": "54235b70-a560-5871-b83f-c82a5708cc06", "text": "\u5b83\u662f\u4e00\u53ea\u540d\u53eb\u683c\u857e\u4e1d\u7684\u5c0f\u800c\u80c6\u5c0f\u7684\u7f9a\u7f8a\u3002\u5b83\u6709\u4e00\u5f20\u67d4\u8f6f\u7684\u68d5\u8272\u76ae\u6bdb\u548c\u5927\u5927\u7684\u65e0\u8f9c"} +{"id": "0005372", "video_name": "19b5314a-ff32-571a-81d6-65532f14cdd5", "text": "\u5f53\u4e00\u5ea7\u57ce\u9547\u53d1\u751f\u53db\u4e71\u7684\u6d88\u606f\u4f20\u5230\u4e0b\u4e00\u4e2a\u57ce\u9547\u65f6\uff0c\u90a3\u91cc\u7684\u58eb\u5175\u4e5f\u62ff\u8d77\u4e86\u6b66\u5668\u3002"} +{"id": "2003466", "video_name": "0429de92-cc38-5d15-a352-d841fb1827c2", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u7247\u7247\u5934\n\n\u540d\u4e3a\u7a7f\u8d8a\u65f6\u7a7a\n\n\u89d2\u8272\u8d77\u6e90\n\n\u89d2\u8272\u80fd\u529b\uff1a\u9b54\u6cd5\uff0c\u5fc3\u7075\u611f\u5e94\n\n\u4ed6\u662f\u4e00\u4e2a\u666e\u901a\u7537\u5b69\n\n5"} +{"id": "3006442", "video_name": "b02854ed-2724-59f9-a598-c1ac59c062f8", "text": "\u7537\u5b69\u5750\u5728\u9910\u684c\u65c1\uff0c\u5468\u56f4\u6446\u653e\u7740\u4e94\u989c\u516d\u8272\u7684\u989c\u6599\u548c\u7eb8\u5f20\u3002\u4ed6\u7684\u8138\u4e0a\u6cbe\u6ee1\u4e86"} +{"id": "0005800", "video_name": "216dffca-e76c-5f2e-b8d5-2699385ce8ef", "text": "\u7f8e\u4e3d\u5973\u5b69\u7684\u81a8\u80c0\u5634\u5507\u3002\u6444\u50cf\u673a\u5bf9\u7740\u8138\u90e8\u8fdb\u884c\u653e\u5927\u62cd\u6444\u3002"} +{"id": "4002588", "video_name": "1050edd0-8487-5c69-8572-ea30f3a63742", "text": "\u7537\u5b50\u5149\u7740\u4e0a\u8eab\u5728\u6e38\u6cf3\u6c60\u4e2d\u548c\u8428\u5c14\u66fc\u00b7\u6c57\u7a7f\u5185\u88e4\u8df3\u821e\u3002"} +{"id": "4002945", "video_name": "ad249c63-4ff7-5ded-b74e-bbf1b2e5f8ea", "text": "Translation: \u9ed1\u6697\u6708\u7403\u4e2d\u7684\u9ed1\u9a91\u58eb"} +{"id": "8001857", "video_name": "26bcea63-a3f8-5fa9-aff7-e1a5efb842b9", "text": "\u95e8\u5728\u5979\u8eab\u540e\u6253\u5f00\uff0c\u6d77\u6ee9\u4e0a\u6709\u5f88\u591a\u4eba\uff0c\u9633\u5149\u707f\u70c2\u3002"} +{"id": "6004038", "video_name": "917541c3-2e65-5355-b572-467032709ec7", "text": "\u5361\u7247\u7684\u5916\u89c2\uff0c\u52a8\u753b\uff0c\u8fd0\u52a8\u3002"} +{"id": "8001147", "video_name": "aa8da54e-f77c-5685-816b-a246ec56ad62", "text": "\u5370\u7b2c\u5b89\u7eb3\u00b7\u743c\u65af\u5728\u7535\u5f71\u7ed3\u5c3e\u9009\u62e9\u9ec4\u91d1\u94fe\u800c\u4e0d\u662f\u676f\u5b50\u3002"} +{"id": "7002352", "video_name": "45f86ef4-3d74-52f3-897b-e0975ebaa398", "text": "\u57ce\u5e02\u8d44\u4ea7\u7ba1\u7406\uff1a\u533a\u5757\u94fe\u53ef\u7528\u4e8e\u5efa\u7acb\u57ce\u5e02\u8d44\u4ea7\u7ba1\u7406\u7cfb\u7edf\uff0c\u8ddf\u8e2a\u548c\u7ba1\u7406\u57ce\u5e02\u57fa\u7840\u8bbe\u65bd\u7684\u7ef4\u62a4\u548c\u66f4\u65b0\u3002\u5b83\u53ef\u4ee5\u63d0\u4f9b"} +{"id": "1004756", "video_name": "5805b65f-7dc6-5b7c-ab75-0c8a4fcc9e36", "text": "\u9ed1\u5ba2\u4eba\u5728\u957f\u65f6\u95f4\u7684\u9ed1\u5ba2\u653b\u51fb\u540e\uff0c\u5750\u5728\u7535\u8111\u5c4f\u5e55\u524d\uff0c\u611f\u5230\u5b64\u72ec\u3002"} +{"id": "1003038", "video_name": "37c24c91-9a4c-51d0-a7dc-193e7284ecf4", "text": "1960\u5e74\u4ee3\u7684\u8d858\u6beb\u7c73\u54e5\u5e03\u6797\u5728\u6c99\u6f20\u4e2d\u7684\u5f55\u5f71\u3002"} +{"id": "7002432", "video_name": "e36c8422-44b1-5dde-98c0-979d91b2cebf", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u6447\u6eda\u6f14\u5531\u4f1a\u7684\u6447\u6eda\u573a\u4e2d\u72c2\u6b22\u8df3\u821e\u3002"} +{"id": "4002063", "video_name": "47e86d05-2cff-539f-bcb1-1f5cd611c0f3", "text": "\u4e00\u6bb5\u5173\u4e8e\u65f6\u95f4\u7ebf\u7684\u89c6\u9891\uff0c\u4ece\u65f6\u95f4\u5f00\u59cb\u5230\u73b0\u5728\u3002"} +{"id": "6002661", "video_name": "4a4d1e41-cc13-50fa-8ec6-fd613a5080cf", "text": "\u4eba\u4eec\u6b22\u5feb\u5730\u5c06\u4e94\u989c\u516d\u8272\u7684\u7c89\u672b\u6254\u5411\u7a7a\u4e2d\u3002"} +{"id": "2003301", "video_name": "b3b6513c-9869-5ad9-8f6f-3b7974f0401b", "text": "\u963f\u5bcc\u6c57\u6751\u5e84\u6709\u4e00\u4e2a\u4f20\u7edf\uff0c\u53ea\u5141\u8bb8\u7537\u6027\u7f16\u7ec7\u5730\u6bef\uff0c\u5973\u6027\u5219\u88ab\u671f\u671b\u505a\u5bb6\u52a1\u3002"} +{"id": "0003305", "video_name": "3b530296-0e95-58bd-ba69-d91f9bfc1770", "text": "\u62e5\u6709\u84dd\u8272\u773c\u775b\u7684\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b69\u5e26\u7740\u4e00\u53ea\u9a6c\u5c14\u6d4e\u65af\u72ac\u3002"} +{"id": "5001568", "video_name": "0db79fb7-ac86-55c7-913a-353f6b7b0c8a", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\uff0c\u8fbe\u62c9\u65af\u5730\u4e0b\u57ce\u88ab\u9057\u5f03\uff0c\u5177\u6709\u51b7\u6218\u65f6\u671f\u7684\u98ce\u683c\u3002"} +{"id": "4002925", "video_name": "733e5a91-c305-501b-914c-e5e72c967c38", "text": "\u7bee\u7403\u573a\u4e0a\u7684\u90a3\u4e2a\u7537\u4eba\u628a\u4e00\u5207\u90fd\u70b8\u4e86\u3002"} +{"id": "7004072", "video_name": "8129d857-7fe3-5b74-8db5-0b3506a5d880", "text": "\u63d0\u793a\uff1a\u5b66\u6821\u95e8\u524d\uff0c\u5b69\u5b50\u4eec\u5750\u5728\u516c\u5171\u6c7d\u8f66\u91cc\u3002\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0006030", "video_name": "25596c4e-2368-512a-ab52-0a6d42e50618", "text": "\u54c8\u91cc\u4ec0\u4e0e\u670b\u53cb\u4eec\u72c2\u6b22\u540e\u56de\u5bb6\uff0c\u4eca\u665a\u662f\u65e0\u6708\u4e4b\u591c\uff0c\u56e0\u4e3a\u6708\u4eae\u5df2\u7ecf\u843d\u4e0b\u30023D\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "6003038", "video_name": "baaa3fb7-51bf-5847-947b-1a0d53087f01", "text": "\u7537\u58eb\u5929\u7136\u9999\u5473\u53e4\u9f99\u6c34\u5546\u6807"} +{"id": "0006075", "video_name": "263c7e98-5ccb-5a28-972a-5ca1f184eb7a", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u793aZara\u548c\u5979\u7684\u670b\u53cb\u5728\u5348\u9910\u671f\u95f4\u804a\u5929\uff0c\u7b11\u58f0\u4e0d\u65ad\uff0c\u5468\u56f4\u8fd8\u6709\u9910\u76d2\u548c\u5c0f\u5403\u3002"} +{"id": "2003445", "video_name": "3a9f51dd-b1fa-5245-acaf-c5059e4193c9", "text": "\u5965\u8428\u514b\u5c71\u533a\u5927\u9ebb\u7530\u91ce\u9e70\u6545\u4e8b\u63d2\u56fe\uff0c\u56fd\u5bb6\u5730\u7406\u7167\u7247\uff0c\u8a79\u59c6\u65af\u00b7\u743c\uff0c\u6c34\u5f69\uff0c\u8d85\u73b0"} +{"id": "6004653", "video_name": "a0685ebb-ea53-5f4b-bd3b-b44de92d5a39", "text": "\u5728\u4e1b\u6797\u4e2d\u7ecf\u8fc7\u6570\u5468\u7684\u65f6\u95f4\u63a8\u79fb"} +{"id": "8002894", "video_name": "4ccf6b1f-cd83-5c8b-81db-6349ddb066b8", "text": "\u54c8\u5229\u6ce2\u7279\u62ff\u7740\u81ea\u62cd\u6746\uff0c\u81ea\u5df1\u505a\u89c6\u9891\u65e5\u5fd7\u3002"} +{"id": "8002085", "video_name": "ce604efb-20ab-508c-ac74-7e71a98ff81d", "text": "\u827e\u5a03\u51b3\u5b9a\u5c55\u5f00\u4e00\u573a\u975e\u51e1\u7684\u5192\u9669\uff0c\u63a2\u7d22\u4eceA\u5230Z\u7684\u5b57\u6bcd\u8868\u3002"} +{"id": "1006304", "video_name": "7367d3e6-9e02-5630-90c3-f225ac6d6551", "text": "\u4e0b\u5348\u7684\u666f\u8c61\uff0c\u4e00\u7fa4\u5bcc\u62c9\u5c3c\u4eba\u5728\u5ef7\u5df4\u514b\u56fe\u524d\u8fdb\u3002"} +{"id": "1003884", "video_name": "47977271-e75f-5ac4-817f-3c19db9bddf6", "text": "\u540e\u7f6e\u6444\u50cf\u5934\u3002\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7a7f\u8fc7\u9a6c\u5fb7\u91cc\u7684\u7011\u5e03\uff0c\u7a7f\u8fc7\u6865\u6881\u3002 \n\nSource sentence: The meeting has been rescheduled for next Monday"} +{"id": "2006363", "video_name": "25f51836-d13d-538b-bce7-4e37dfc35afb", "text": "\u767d\u8272\u80cc\u666f\uff1b\u6c34\u5f69\u753b\u98ce\u683c\uff1b\u6d6e\u73b0\u548c\u6d88\u5931\u7684\u6d46\u679c\u548c\u6a31\u6843"} +{"id": "1006719", "video_name": "7b278032-fcbc-5ae9-b1bf-b06b88256d17", "text": "\u65e5\u672c\u5973\u5b69\u5750\u5728\u5c4b\u9876\u4e0a\uff0c\u7a7f\u7740\u88d9\u5b50\u548c\u767d\u8272\u978b\u5b50\uff0c\u4eab\u53d7\u7740\u8f7b\u96e8\u4e2d\u7684\u65e5\u843d\u3002"} +{"id": "4003623", "video_name": "5ca4328d-c729-52f8-8a16-ac8cef5100da", "text": "\u90a3\u4e2a\u7537\u4eba\u6b63\u4ee5\u67e5\u7406\u00b7\u535a\u6c83\u7279\u98ce\u683c\u3001\u975e\u6d32\u672a\u6765\u4e3b\u4e49\u3001\u8f6e\u5ed3\u4eba\u50cf\u3001\u4f20\u7edf\u975e\u6d32\u827a\u672f\u30018K\u5206\u8fa8\u7387"} +{"id": "8003157", "video_name": "7f21c6fc-22b0-5663-b70e-d359e2957b21", "text": "\u5170\u535a\u57fa\u5c3c\u9ad8\u6e05\u903c\u771f\u5730\u5728\u8def\u4e0a\u75af\u72c2\u884c\u9a76\u3002"} +{"id": "6002461", "video_name": "bd49186e-91f5-5c67-8223-b97be398f8ed", "text": "\u4f7f\u7528\u6211\u4eec\u7684\u4eba\u5de5\u667a\u80fd\u5e73\u53f0\uff0c\u63ed\u5f00\u57c3\u53ca\u5e1d\u56fd\u5386\u53f2\u7684\u795e\u79d8\u9762\u7eb1\u3002\u5206\u4eab\u60a8\u7684\u7406\u8bba\uff0c\u89c2\u770b\u5b83\u4eec\u5728\u60ca\u4eba\u7684\u89c6"} +{"id": "2006413", "video_name": "8a1263be-c5ff-5ca9-a604-7524e672aee4", "text": "\u5728\u96fe\u6c14\u7f2d\u7ed5\u7684\u68ee\u6797\u80cc\u666f\u4e0b\uff0c\u4e00\u540d\u8dd1\u6b65\u8005\u5728\u591c\u95f4\u5954\u8dd1\uff0c\u6d77\u6d0b\u5728\u5176\u8eab\u540e\uff0c\u6c14\u6c1b\u975e\u5e38\u6d53"} +{"id": "2007528", "video_name": "16c162a1-82b3-58ac-953c-6ab9f1e58ee8", "text": "\u6fc0\u52b1\u6027\u5c01\u9762\u7684\u56fe\u7247"} +{"id": "2006446", "video_name": "c76662ee-150f-5eec-a029-0941bcd68ff4", "text": "\u98de\u8239\u88ab\u65cb\u8f6c\u80fd\u91cf\u5305\u88f9\u7740\uff0c\u673a\u7ec4\u4eba\u5458\u51c6\u5907\u7740\u649e\u51fb\u3002"} +{"id": "2007377", "video_name": "346fb352-b7ff-5e20-b993-7e42ce90b980", "text": "\u5c0f\u7cbe\u9748\u5728\u5eda\u623f\u88e1\uff0c\u5922\u9b58\u4e00\u822c\u7684\u6c1b\u570d\uff0c\u9ed1\u767d\u8272\u8abf\uff0c16.9\u3002"} +{"id": "2007221", "video_name": "394b7763-2f4f-5468-aa0d-ea974c09dfb6", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u62f3\u51fb\u573a\u4e0a\u6253\u51fb\u57c3\u9686\u00b7\u9a6c\u65af\u514b\uff0c\u903c\u771f\uff0c\u91cd\u70b9\u5728\u8138\u4e0a\u3002 \n\nSource sentence: The restaurant"} +{"id": "3005690", "video_name": "3412ac48-4a60-5dc0-af96-4d914a959d9f", "text": "\u68ee\u6797\u591c\u666f\uff0c\u98ce\u4e0d\u592a\u5927\uff0c\u5fae\u5fae\u6709\u52a8\u9759\uff0c\u9ad8\u5206\u8fa8\u73872k\u3002"} +{"id": "3005274", "video_name": "6e2d0790-5800-5895-ad3e-d92c5dcda99a", "text": "\u6709\u5fd7\u8005\u4e8b\u7adf\u6210\u3002"} +{"id": "1005083", "video_name": "5db4b6f4-abbb-5d3d-b38f-a1abcad918ce", "text": "\u4e00\u500b\u5438\u5f15\u4eba\u7684\u6a19\u8a8c\uff0c\u70ba\u5728\u7dda\u96dc\u8a8c\u300a\u5168\u7403\u8996\u91ce\u300b\u3002"} +{"id": "1005888", "video_name": "6c46ba76-9d83-504d-b3a3-52aec0eb2a03", "text": "\u4e00\u4f4d\u300a\u827e\u5c14\u767b\u4e4b\u73af\u300b\u7684\u9996\u9886\u6d88\u6563\u6210\u5c18\u3002"} +{"id": "2005009", "video_name": "b321cb34-6b41-5b4d-9d10-abef2e15d5b5", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u6cb3\u8fb9\u6d17\u8863\u670d\u3002"} +{"id": "6004656", "video_name": "2742c1ad-b67c-5df2-b23f-536cd3c41be5", "text": "\u4e00\u4e2a\u6234\u7740\u533f\u540d\u9762\u5177\u548c\u5deb\u5e08\u5e3d\u5b50\u7684\u7537\u4eba\uff0c\u773c\u775b\u53d1\u7ea2\uff0c\u5468\u56f4\u98de\u821e\u7740\u706b\u82b1\u548c\u706b\u7130\u3002"} +{"id": "0004950", "video_name": "1215f9d3-8c12-5d96-a897-dc500fe3d0ce", "text": "\u77ee\u4eba\u5728\u7535\u5f71\u300a\u6307\u73af\u738b\u300b\u4e2d\u7684\u52a8\u6001\u903c\u771f\u7684\u8fd0\u52a8\u4e2d\u5f88\u559c\u6b22\u3002"} +{"id": "0006187", "video_name": "27eb446a-1efc-5e15-a1cd-dc9f296bba2f", "text": "\u73bb\u7483\u82cf\u6253\u6c34\u74f6\u5012\u51fa\u82cf\u6253\u6db2\u4f53\uff0c\u6709\u5f88\u591a\u8fd0\u52a8\u6db2\u6ef4\uff0c\u82cf\u6253\u996e\u6599\u88ab\u5012\u51fa\u3002 \n\nSource sentence:"} +{"id": "0004785", "video_name": "0f1f6d07-522b-586d-b052-f1275df7bf70", "text": "\u5728\u6c34\u4e0a\u7559\u4e0b3D\u5e7b\u60f3\u6cb3\u6d41\u3001\u4e0d\u771f\u5b9e\u7684\u6e32\u67d3\u548c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "3006828", "video_name": "7ede4f69-a396-53ce-975d-c25b0909e18b", "text": "\u4ece\u83ab\u65af\u79d1\u5230\u7ea6\u7ff0\u5185\u65af\u5821\u7684\u822a\u73ed\u5730\u56fe\u3002"} +{"id": "8002112", "video_name": "14049ecf-ad19-5c24-9944-adab6dc5df87", "text": "\u7535\u5149\u5728\u9ed1\u8272\u5c4f\u5e55\u4e0a\u95ea\u70c1\u3002"} +{"id": "4004521", "video_name": "bfe5fc12-03f9-54aa-b406-dd1b9b7d0360", "text": "\u4f0a\u5e03\u62c9\u6b23\u00b7\u5854\u5854\u91cc\u585e\u662f\u571f\u8033\u5176\u6b4c\u624b\uff0c\u4ed6\u5728\u4e91\u7aef\u9a7e\u9a76\u3002"} +{"id": "2004398", "video_name": "f53f920e-d7c3-5a3d-822d-b91165b3f769", "text": "\u5728\u79cb\u5929\u7684\u68ee\u6797\u91cc\uff0c\u6811\u53f6\u5448\u73b0\u51fa\u91d1\u9ec4\u8272\u548c\u9ec4\u8272\uff0c\u4e4b\u95f4\u5939\u6742\u7740\u7ea2\u8272\uff0c\u4ece\u8fd1\u5904\u5230\u8fdc\u5904\u5448\u73b0"} +{"id": "1004603", "video_name": "55b668f7-5671-55ca-8ed9-ef6a828c5195", "text": "\u5fb7\u56fd\u519b\u961f\uff0c\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\uff0c\u6574\u9f50\u5212\u4e00\uff0c\u7a7f\u7740\u793c\u670d\uff0c\u673a\u52a8\u7f16\u5236\u3002"} +{"id": "1004044", "video_name": "4b0b5391-d503-5d49-a564-e47ba4606e76", "text": "\u4e08\u592b\u95ee\u59bb\u5b50\u95ee\u9898\uff0c\u6109\u5feb\u5730\u6311\u9017\u3002"} +{"id": "3006240", "video_name": "f85ed52b-e519-5498-9c20-acf2bc9563b9", "text": "\u5728\u6811\u6797\u4e2d\u7684\u6cbc\u6cfd\u65c1\u8fb9\u6709\u4e00\u6240\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u623f\u5b50\u3002"} +{"id": "7002323", "video_name": "04d1814d-e1ea-5e5a-b85c-2171d9a37792", "text": "\u4e00\u4e2a\u957f\u53d1\u3001\u5149\u7740\u8eab\u5b50\u3001\u7a7f\u7740\u77ed\u88e4\u548c\u889c\u5b50\u7684\u7537\u4eba\uff0c\u9a91\u7740\u6ed1\u677f\u5728\u8857\u9053\u4e0a\u7a7f\u8fc7\u80cc\u666f\u4e2d\u7684"} +{"id": "2007840", "video_name": "b92c35ab-2aca-5af3-b3ce-9e4a8afd1c25", "text": "\u4e00\u4e2a\u5728\u767d\u8272\u80cc\u666f\u4e0a\u53d1\u51fa\u58f0\u97f3\u6548\u679c\u7684\u4f4e\u97f3\u70ae\u3002"} +{"id": "2007600", "video_name": "510d09b2-c8e9-57ce-bbe9-d2d692909e20", "text": "\u4f5b\u9640\uff0c\u9762\u5e26\u5b81\u9759\u7684\u8868\u60c5\uff0c\u660e\u4eae\u7684\u773c\u775b\uff0c\u601d\u8003\u7684\u795e\u60c5\u3002\u904d\u5e03\u5b87\u5b99\u7684\u661f\u7a7a\uff0c\u661f\u661f\u95ea\u70c1\uff0c"} +{"id": "3003902", "video_name": "f526f541-36f3-51d8-a467-ea2c8962a93f", "text": "\u4ed6\u5728\u9ec4\u8272\u548c\u7eff\u8272\u7684\u80cc\u666f\u4e0b\u548c\u5510\u8001\u9e2d\u8df3\u821e\u3002"} +{"id": "8001412", "video_name": "de6aea37-f12d-5a11-aba1-152446eb1e81", "text": "\u4e00\u4f4d\u7956\u6bcd\u624b\u4e2d\u62ff\u7740\u91d1\u8272\u7684\u5929\u4e3b\u6559\u5ff5\u73e0"} +{"id": "7003614", "video_name": "7d8d348e-6285-5cda-8ec4-93b70553f948", "text": "WhatsApp\u5e94\u7528\u7a0b\u5e8f\u7684\u56fe\u50cf\u4e0e\u5176\u4ed6\u5e94\u7528\u7a0b\u5e8f\u4e00\u8d77\u5728\u8857\u4e0a\u884c\u8d70\u3002"} +{"id": "1003052", "video_name": "38225871-4756-5d97-bfae-0c8d1c0ed457", "text": "\u97f3\u4e50\u4f1a\u5385\u5185\uff0c\u5168\u9ed1\u793c\u670d\u7684\u8fbe\u65af\u7ef4\u8fbe\u548c\u4e00\u652f\u7531\u5c0f\u63d0\u7434\u3001\u5927\u63d0\u7434\u548c\u5c0f\u53f7\u7ec4\u6210\u7684\u51b2\u950b\u961f\u4e50\u56e2\uff0c\u4ee5"} +{"id": "0003417", "video_name": "3d464b16-86be-52fb-928e-256ef372177c", "text": "\u8fc7\u53bb\u56fd\u5bb6\u66b4\u529b\u5386\u53f2\u7684\u60f3\u8c61\u7a7a\u95f4"} +{"id": "2004813", "video_name": "2865f957-d2ef-53f1-aef8-003ed184af10", "text": "\u7ea6\u7ff0\u6253\u5f00\u7535\u5b50\u90ae\u4ef6\uff0c\u8bfb\u4e86\u4e00\u6761\u62d2\u7edd\u7684\u6d88\u606f\uff0c\u4ed6\u7684\u8138\u4e0a\u8868\u73b0\u51fa\u5931\u671b\u548c\u6cae\u4e27\u3002"} +{"id": "8002565", "video_name": "3e90d831-6002-5629-89c5-5a3a3b445935", "text": "\u51dd\u89c6\u8fdc\u5904\u7684\u5c71\u8c37\uff0c\u4ee5\u4f4e\u89d2\u5ea6\u6355\u6349\u3002\u94f6\u6cb3\u50cf\u7011\u5e03\u4e00\u6837\u5728\u591c\u7a7a\u4e2d\u6d41\u6dcc\uff0c\u661f\u4e91\u548c\u661f\u661f\u7684\u5149"} +{"id": "3004002", "video_name": "0159bbde-ad8d-5fc8-96f3-bd1227cc572e", "text": "\u5e78\u798f\u5c31\u50cf\u4e00\u9897\u6c89\u5728\u51b7\u6c34\u4e2d\u7684\u73e0\u5b50\u3002"} +{"id": "2005420", "video_name": "e20863cf-d757-5465-804b-af7f5580a4c7", "text": "\u67d0\u7269\u8f6c\u4e86\u4e00\u5708\uff0c\u6c14\u7403\u98de\u5411\u5929\u7a7a\u3002"} +{"id": "1005839", "video_name": "6b535b9c-7575-52cd-9741-82465ae5f554", "text": "\u5728\u6708\u7403\u4e0a\u5236\u9020\u4e00\u67b6UFO\u3002"} +{"id": "4004748", "video_name": "c4810e7e-985a-53f9-8441-6da135439317", "text": "\u7334\u5b50\u3001\u5404\u79cd\u9e1f\u7c7b\u548c\u5927\u86c7\u60ac\u6302\u5728\u6811\u679d\u4e0a\u3002"} +{"id": "0005447", "video_name": "1aedbb74-7feb-57e9-980a-3ceea23789ac", "text": "\u767d\u8272\u7684\u6811\u5728\u96ea\u4e2d\u6447\u6643\u3002"} +{"id": "2004415", "video_name": "4def0fb7-b284-577f-add4-3c1a7e93657d", "text": "\u4e00\u500b\u5c0f\u5973\u5b69\u548c\u5979\u7684\u72d7\u5728\u8857\u4e0a\uff0c\u7576\u5929\u7a7a\u662f\u767d\u8272\u7684\uff0c\u7da0\u8272\u7684\u6d77\u6d0b\u3002"} +{"id": "3005980", "video_name": "b940205c-1bad-554c-9630-a8a2ef223135", "text": "\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\u53ca\u5176\u58eb\u5175\u5728\u6218\u6597\u4e2d\u3002"} +{"id": "0005028", "video_name": "136a1463-7ec1-58ef-9281-3e53e9c738f2", "text": "\u751f\u6210\u4e24\u4e2a\u5c0f\u52a8\u6f2b\u7537\u5b69\uff0c\u4e00\u4e2a6\u5c81\uff0c\u53e6\u4e00\u4e2a2\u5c81\uff0c\u4e24\u4eba\u5728\u73a9\u800d\u3002"} +{"id": "4004288", "video_name": "bb5e66cc-f1f4-57af-8fc3-44cd8e714cff", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u5f69\u8679\u4e0a\u9a91\u9a6c\u3002"} +{"id": "3003275", "video_name": "fbb9efcb-8adc-5c9a-98bc-4f4d84c66e4f", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u624b\u6309\u4e0b\u97f3\u4e50\u7cfb\u7edf\u4e0a\u7684\u64ad\u653e\u6309\u94ae\u3002"} +{"id": "3005384", "video_name": "e5462683-2f31-58f1-b770-5d93931349fb", "text": "\u4eba\u5de5\u667a\u80fd\u5728\u521b\u5efa\u706b\u3001\u6c34\u548c\u70df\u7b49\u52a8\u753b\u6548\u679c\u65b9\u9762\u7684\u80fd\u529b\u5c55\u793a\u3002"} +{"id": "4003470", "video_name": "4beba2c3-311e-52a8-97db-de3e926cd66c", "text": "\u4e00\u5f20\u9152\u5e97\u5ba2\u4eba\u9012\u62a4\u7167\u7ed9\u524d\u53f0\u7684\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001178", "video_name": "e5763e57-cfef-5767-a3a3-68222e0886b1", "text": "\u963f\u6bd4\u62c9\u5409\u522b\u5885\u7684\u62db\u724c\uff08\u5927\u5b57\u4f53\uff09\uff0c\u4e0b\u4e00\u884c\u662f\u963f\u6bd4\u5409\u7279\u00b7\u8d3e\u683c\u5854\u666e\u3002\u767d\u8272\u80cc\u666f\u4e0a\u6709\u4e00\u4e2a\u7bad\u5934"} +{"id": "6002392", "video_name": "48602fd1-76f5-51ed-9e12-73463ca31809", "text": "\u8fd9\u4e2a\u5973\u5b69\u6709\u4e00\u79cd\u80fd\u529b\uff0c\u53ef\u4ee5\u63a7\u5236\u9f99\u3002"} +{"id": "3005204", "video_name": "0e8bb697-96e2-5df8-9a5e-0714078b7014", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8c6a\u5b85\u91cc\u8df3\u821e\uff0c\u8138\u4e0a\u53d8\u6362\u7740\u4e0d\u540c\u7684\u89d2\u8272\u3002"} +{"id": "6002053", "video_name": "53413253-a1f8-5c93-8b74-a1c43f9cb01f", "text": "\u9e1f\u7fa4\u649e\u51fb\u98de\u673a\u6321\u98ce\u73bb\u7483\u5bfc\u81f4\u98de\u673a\u5760\u6bc1\u3002"} +{"id": "2003009", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "\u54e5\u7279\u98ce\u683c\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u957f\u7740\u84dd\u8272\u7684\u957f\u53d1\u8df3\u821e\u3002"} +{"id": "0006270", "video_name": "29c569e4-1614-5f19-8f93-9344b202ca45", "text": "\u70f9\u996a\u8005\u7ad9\u5728\u53a8\u623f\u91cc\uff0c\u7528\u5de7\u514b\u529b\u7247\u70b9\u7f00\u9999\u8349\u86cb\u7cd5\u3002"} +{"id": "4004511", "video_name": "cb3f5272-05d5-5fa5-af2a-08b47053d0d6", "text": "\u5728\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\uff0c\u4e00\u4e2a\u5c0f\u5b64\u5973\u88ab\u6b3a\u8d1f\u548c\u6bb4\u6253\u3002"} +{"id": "8001194", "video_name": "345d80db-f18c-58b8-8984-0b1b332d07a4", "text": "\u4e00\u53ea\u6a59\u8272\u7684\u732b\u6b63\u6293\u4f4f\u4e00\u7247\u91d1\u8272\u7684\u70df\u53f6\u3002"} +{"id": "4002884", "video_name": "8e9be4b4-524c-5878-8234-10b60abda660", "text": "\u96e8\u6797\u4e9a\u9a6c\u900a\u91cc\u7684\u5c0f\u6728\u5c4b\u3002\u4fe1\u606f\uff1aMAHSAN\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005260", "video_name": "60c68cb7-3c93-5507-a2b9-579b2c9e1270", "text": "\u4e54\u6cbb\u00b7W\u00b7\u5e03\u4ec0\u7684\u8fd1\u8ddd\u79bb\u62a5\u9053\u5728\u4e00\u6b21\u73b0\u573a\u65b0\u95fb\u76f4\u64ad\u4e2d\u64ad\u51fa\u3002"} +{"id": "3004171", "video_name": "f452bee9-d278-5acf-ae53-7b7c37e7acd4", "text": "\u6cd5\u5f0f\u70b8\u85af\u6761\uff0c\u8eab\u4f53\u5750\u5728\u4e00\u4e2a\u5e7d\u9759\u68ee\u6797\u5409\u535c\u529b\u98ce\u683c\u7684\u5927\u5c4f\u5e55\u524d\u3002"} +{"id": "0006055", "video_name": "25d28d72-7ebb-565f-aebc-d904d041b854", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u5367\u5ba4\u7684\u5e8a\u4e0a\uff0c\u53cc\u624b\u9ad8\u4e3e\u3002\u6570\u767e\u4e2a\u5404\u79cd\u5404\u6837\u7684\u5370\u82b1\u6795\u5934\u4ece\u4e0a\u65b9\u843d\u4e0b\u3002"} +{"id": "0003941", "video_name": "00368022-f5fa-50d5-a01a-4174dd1e2f97", "text": "\u4e00\u4e2a\u60ca\u53f9\u7684\u8001\u4eba\uff0c\u5468\u56f4\u662f\u7fe0\u7eff\u7684\u5927\u5730\u548c\u6811\u6728\u3002"} +{"id": "6003351", "video_name": "692da542-f61e-5f9c-ac8f-14c649d41e2c", "text": "\u521b\u9020\u4e00\u5e45\u80fd\u591f\u8868\u73b0\u592a\u7a7a\u63a2\u7d22\u4ee4\u4eba\u656c\u754f\u548c\u60ca\u5947\u7684\u5f62\u8c61\u3002\u5c55\u793a\u6708\u7403\u6216\u8005\u4e00\u8258\u5b87\u5b99\u65c5\u884c\u7684"} +{"id": "3005878", "video_name": "dba839f3-d57c-5c31-aafc-e56f7bb9d2cc", "text": "30\u5c81\u7684\u5065\u5eb7\u7537\u5b50\uff0c\u7559\u7740\u77ed\u53d1\u548c\u670b\u53cb\u4e00\u8d77\u8e22\u8db3\u7403\u3002\n\nSource sentence: I ate a bowl of noodles for lunch today.\n\u6211\u4eca\u5929\u5348"} +{"id": "2003851", "video_name": "c2e01fe8-cf36-5843-a65c-2153ec4c8f11", "text": "\u4e00\u4e2a\u773c\u775b\u53d1\u7ea2\u7684\u7537\u4eba\u6458\u4e0b\u4ed6\u7684\u9ed1\u8272\u906e\u9633\u955c\uff0c\u955c\u5934\u62c9\u8fdc\u3002\n\nSource sentence: I am sorry, I cannot help you with that task. \n\u5bf9\u4e0d\u8d77"} +{"id": "1003466", "video_name": "402cf2fc-c09e-51e1-8052-0c8a9764e6ea", "text": "\u5965\u7279\u66fc\u4e0e\u4e00\u53ea\u5de8\u5927\u7684\u602a\u517d\u5c55\u5f00\u4e86\u6218\u6597\uff0c\u8fd9\u53ea\u602a\u517d\u6b63\u5728\u6050\u5413\u57ce\u5e02\u3002\u5965\u7279\u66fc\u4f7f\u7528\u7075\u6d3b\u7684\u52a8\u4f5c"} +{"id": "2003698", "video_name": "a31744ee-290c-5dcf-b24d-34dc4b7cd460", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u670b\u53cb\u6324\u5728\u4e00\u8d77\uff0c\u5546\u91cf\u4ed6\u4eec\u665a\u4e0a\u53c2\u89c2\u5893\u5730\u7684\u8ba1\u5212\u3002"} +{"id": "6003045", "video_name": "e5f81f46-67a4-5f88-89db-831461098d0c", "text": "\u4e00\u4e2a\u5973\u6218\u58eb\u53d8\u6210\u4e86\u4e00\u5339\u9a6c\u3002"} +{"id": "8001852", "video_name": "5fa537db-e073-55ad-ac12-fc1481a22618", "text": "\u5f53\u5854\u96f7\u770b\u5230\u9e70\u65f6\uff0c\u4ed6\u8bd5\u56fe\u9003\u8dd1\u3002"} +{"id": "7003279", "video_name": "d825a2ae-507f-5fd4-9b8d-bc5a8ef0595c", "text": "16:19 \u7535\u5f71\u611f\u3001\u6d45\u666f\u6df1\uff0c\u4e00\u8f86\u767d\u8272\u4fdd\u65f6\u6377Panamera\u4e0e\u4e00\u8f86\u9ed1\u8272Cadillac ATS\u5728\u4f4f\u5b85\u533a\u7ade\u901f\u3002"} +{"id": "6002728", "video_name": "1790229a-44a2-5dd0-b58c-b2aa2250e4cb", "text": "\u5355\u4eba\u6ed1\u51b0\u8005\u6ed1\u8fc7\u7684\u6ed1\u51b0\u666f\u8c61\uff0c\u8d28\u91cf\u4f18\u826f\uff0c\u80cc\u666f\u662f\u677e\u6811\uff0c\u767d\u8272\u7684\u51b0\u978b\u548c\u767d\u8272\u7684\u978b"} +{"id": "2007238", "video_name": "d88f781d-bc44-5577-b038-6e0b5d26bba4", "text": "\u5c0f\u718a\u548c\u670b\u53cb\u4eec\u53d1\u73b0\u6708\u4eae\u8eb2\u5728\u4e91\u5c42\u540e\u9762\u3002"} +{"id": "3005465", "video_name": "13dd8f74-cbad-5255-9034-15d2adebb8c2", "text": "\u4e24\u6735\u82b1\u4ee5Tim Walker\u7684\u98ce\u683c\u76f8\u543b\u3002"} +{"id": "7002537", "video_name": "115db056-628f-5dfe-a7e1-43a37c69d4b4", "text": "\u7528\u7f29\u653e\u6548\u679c\u521b\u5efa\u4e00\u4e2a15\u79d2\u7684\u767e\u4e8b\u5e7f\u544a\uff0c\u74f6\u5b50\u91cc\u6ef4\u6c34\u3002"} +{"id": "2007996", "video_name": "3cb567cb-3adf-54af-8228-9f6368a8ed9d", "text": "\u4e00\u4f4d\u8001\u5251\u5e08\u4e0e\u4ed6\u7684\u5e74\u8f7b\u5f92\u5f1f\u5c55\u5f00\u6218\u6597\uff0c\u5c3d\u7ba1\u5e74\u8f7b\u4eba\u5145\u6ee1\u6d3b\u529b\uff0c\u4f46\u8001\u4eba\u4f3c\u4e4e\u4ecd\u5904\u4e8e\u4f18"} +{"id": "3003090", "video_name": "9806460e-3c81-52b2-8eec-d70f056edfce", "text": "\u5728\u4e00\u4e2a\u96e8\u5929\uff0c\u6709\u4e00\u53ea\u67f4\u72ac\u5728\u5403\u9aa8\u5934\u3002"} +{"id": "7002004", "video_name": "412cd123-51ab-518b-944d-029915584f7e", "text": "\u5370\u5ea6\u7537\u5973\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u4ee3\u8868\u7740\u5370\u5ea6\u5b58\u5728\u7684\u5404\u79cd\u4e0d\u540c\u6587\u5316\u3002"} +{"id": "5001182", "video_name": "43979fcf-f909-5f82-b602-f421db59d1e0", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u548c\u7537\u4eba\u5728\u4f0a\u7538\u56ed\u7684\u65e5\u843d\u65f6\u5149\u4e2d\u4e0b\u68cb\uff0c\u91cd\u65b0\u6446\u653e\u68cb\u5b50\uff0c\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "8002045", "video_name": "1b1f7f7d-d28a-5dd7-b9d2-61099fcd26f4", "text": "\u8d70\u8fc7\u4e00\u4e2a18\u4e16\u7eaa\u7684\u5ba2\u5385"} +{"id": "1005793", "video_name": "6aa209ea-a146-5cb1-b6b3-7745d2805a97", "text": "\u5b69\u5b50\u4eec\u5728\u65e5\u843d\u80cc\u666f\u4e0b\u73a9\u800d\u7684\u6d77\u6ee9\u4e0a\u3002"} +{"id": "8003487", "video_name": "ed79ddb8-155a-5ab4-9d35-a7e4cebdb5de", "text": "\u7f29\u653e\u5730\u56fe\u5230\u6bcf\u4e2a\u90e8\u5206\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005840", "video_name": "46463d5b-f311-5c3e-80cd-9875beed05b0", "text": "\u98de\u673a\u7167\u660e\u4e0b\u7684\u666f\u8c61."} +{"id": "2006252", "video_name": "434cbc75-e5e7-591f-b851-d645e6a706c8", "text": "\u4e00\u53ea\u771f\u6b63\u7684\u91d1\u8272\u5bb6\u65cf\u82f1\u56fd\u77ed\u6bdb\u732b\uff0c\u7a7f\u7740\u9ed1\u8272\u8863\u670d\uff0c\u5439\u7740\u957f\u7b1b\u3002"} +{"id": "0004530", "video_name": "0aabcd83-8f06-5308-9e34-c0cb30f1abcf", "text": "\u4e3a\u559c\u5267\u9891\u9053\u201cKC Production\u201d\u5236\u4f5c\u4e00\u4e2a\u4ecb\u7ecd\u7247\u7684\u6807\u9898\u89c6\u9891\u3002"} +{"id": "7004432", "video_name": "1abc64ca-1b67-5ea0-a234-c1e1ef9867b6", "text": "\u827e\u5c14\u7ef4\u62c9\u5728\u8857\u4e0a\u8df3\u821e\uff0c\u5177\u6709\u903c\u771f\u7684\u89e3\u5256\u7ed3\u6784\u548c\u70ed\u60c5\u6d0b\u6ea2\u7684\u8868\u6f14\u3002"} +{"id": "1006835", "video_name": "7cfed746-55d8-51a5-ad16-78e0b35abc54", "text": "\u751f\u6210\u4e00\u500b\u5834\u666f\uff0c\u827e\u746a\u5728\u660f\u6697\u7684\u623f\u9593\u88e1\u9192\u4f86\u3002\u63cf\u8ff0\u5979\u8ff7\u5931\u7684\u8868\u60c5\u548c\u5979\u5468\u570d\u795e\u79d8\u7684"} +{"id": "6003326", "video_name": "e5c6be5f-3803-51f1-acd3-045e0ed386f3", "text": "\u54e5\u4f26\u6bd4\u4e9a\u7684\u5c71\u5ce6\uff0c\u6709\u79c3\u9e6b\u5728\u98de\u7fd4\uff0c4K\u5168\u9ad8\u6e05\u3002"} +{"id": "0006057", "video_name": "25db4832-aaf0-53f3-bf2e-9f94a8b3ea81", "text": "\u8dd1BC\u65d7\u5e1c\u4ee5\u53ca\u4e00\u4e9b\u5f88\u68d2\u7684\u8fd0\u52a8\u3002"} +{"id": "6002922", "video_name": "9d6edd8c-a79c-5f7b-a534-b071d46b9573", "text": "\u4ed6\u5bb6\u91cc\u6709\u4e00\u53ea\u53ef\u7231\u7684\u4e4c\u9f9f\uff0c\u770b\u7740\u65f6\u949f\uff0c\u610f\u8bc6\u5230\u4ed6\u53ef\u80fd\u8981\u8fdf\u5230\u4e86\u3002"} +{"id": "7002734", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u60b2\u4f24\u5730\u5173\u4e0a\u4e00\u6247\u8c6a\u534e\u522b\u5885\u7684\u95e8\u3002"} +{"id": "2004676", "video_name": "be8a7603-bc20-581e-b3d4-868831988a07", "text": "\u4e00\u67b6\u5916\u661f\u98de\u8239\u4e2d\u8d70\u51fa\u4e00\u53ea\u7acb\u4f53\u611f\u7684\u5916\u661f\u751f\u7269\uff0c\u4ee5\u7acb\u4f53\u6d3e\u7684\u98ce\u683c\u5448\u73b0\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8eab\u5904\u57c3\u53ca\u5409"} +{"id": "0003108", "video_name": "372ce616-e9f2-55fc-b46a-e62e3eb6bfa2", "text": "\u5e74\u8f7b\u4eba\u65e0\u754f\u7684\u773c\u795e"} +{"id": "6003111", "video_name": "dc4e3011-4b0a-5c84-8a3a-afa0afa42281", "text": "\u6bd4\u5c14\u00b7\u79d1\u65af\u6bd4\u7a7f\u7740\u82ad\u857e\u821e\u6f14\u5458\u7684\u77ed\u88d9\u3002"} +{"id": "8003225", "video_name": "9561b7ef-db7b-5d19-89c4-5dfed24a57ab", "text": "\u4e3a\u56fd\u9645\u62db\u8058\u673a\u6784\u521b\u5efa\u4e00\u5f20\u56fe\u7247\uff0c\u4ee5\u5728\u793e\u4ea4\u5a92\u4f53\u4e0a\u5206\u4eab\u3002\u573a\u666f\u8bbe\u7f6e\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u5927\u90fd\u5e02\uff0c\u80cc\u666f\u4e2d\u6709\u6469\u5929\u5927"} +{"id": "0006625", "video_name": "2fc1bdb5-1e2e-5744-b02f-f8f46cfff957", "text": "\u7535\u5f71\u6d77\u62a5\u300a\u6f2b\u5a01\u961f\u957f\u6f2b\u5a01\u300b\u5c55\u73b0\u51fa\u54c0\u4f24\u7684\u529b\u91cf\uff0c\u9759\u6b62\u7684\u5f62\u8c61\u4e2d\u6ca1\u6709\u5e03\u83b1\u00b7\u62c9\u68ee\u91d1\u53d1\u95ea"} +{"id": "8003980", "video_name": "7566ffd9-07e9-520b-97af-6623d9714c3b", "text": "\u80e1\u987b\u5728\u4e00\u682a\u9ad8\u5927\u7684\u53f6\u72b6\u76c6\u683d\u4e2d\u63a2\u7d22\uff0c\u88ab\u90c1\u90c1\u8471\u8471\u7684\u7eff\u53f6\u5305\u56f4\u7740\u3002"} +{"id": "2003340", "video_name": "b9f8774d-6500-5c94-9861-221b91055b01", "text": "\u4eba\u7c7b\u662f\u72ec\u7279\u7684\u751f\u7269\uff0c\u76ae\u80a4\u50cf\u718a\u718a\u706b\u7130\u4e00\u822c\u7ea2\uff0c\u957f\u957f\u7684\u9ed1\u53d1\u5782\u5728\u80cc\u540e\u3002\u70af\u70af"} +{"id": "3003131", "video_name": "afffaff3-de77-5efc-91f2-a8f44b72ca4c", "text": "\u751f\u6210\u4e00\u5f20\u59d0\u59b9\u4e4b\u7231\u7684\u5f62\u8c61\u7ed9\u751f\u547d\u4e2d\u7684\u59d0\u59b9\u4eec\u3002\n\nSource sentence: The new product launch event will be held on June 1st at 2pm. \n\u65b0\u4ea7\u54c1"} +{"id": "3003185", "video_name": "b4af6080-27f6-55b3-b461-5f46a521636b", "text": "\u975e\u6d32\u9e35\u9e1f\u6234\u7740\u5723\u8bde\u8001\u4eba\u5e3d\u5b50\u8dd1\u6b6516:9\u3002"} +{"id": "3004760", "video_name": "5e6cfbdd-da6d-5f50-bf11-f7b407e3b24b", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u57281970\u5e74\u4ee3\u7684\u7ebd\u7ea6\u8df3\u8857\u821e\u7684\u7535\u5f71\u3002"} +{"id": "3006102", "video_name": "1f5dddd4-b854-5664-a793-d7e415476196", "text": "\u4e00\u4e2a\u8dea\u5728\u5929\u4f7f\u9762\u524d\u7684\u54e5\u7279\u5f0f\u6050\u6016\u5f62\u8c61\u3002"} +{"id": "4002357", "video_name": "664c2441-ea35-56af-b1ed-2d46c8d30112", "text": "\u4e00\u53ea\u8db3\u7403\u5728\u5e97\u91cc\u5403\u62ab\u8428\uff0c\u9e21\u5728\u5468\u56f4\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "8001835", "video_name": "240ba4bd-1912-5a3c-9b5a-19955f14ae23", "text": "\u4e00\u4e2a\u5409\u535c\u529b\u98ce\u683c\u7684\u6d77\u6ee9\u4e2d\u592e\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u5934\u50cf\u96d5\u50cf\uff0c\u671d\u7740\u4e00\u53ea\u5947\u602a\u7684\u84dd\u8272\u9e1f\u5fae\u7b11\u3002"} +{"id": "7002726", "video_name": "728e7b95-8a8d-5213-878e-4fc595a752c7", "text": "\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\uff0c\u5973\u5b69\u51dd\u671b\u5927\u6d77\uff0c\u98ce\u683c\u5448\u73b090\u5e74\u4ee3\u52a8\u6f2b\u7684\u98ce\u683c\u3002"} +{"id": "2007749", "video_name": "dd5012c4-9745-55d7-9496-d977cf6f28e7", "text": "\u7528\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u98ce\u683c\u521b\u5efa\u4e00\u4e2a\u7eb9\u7ae0\uff0c\u50cf\u53f2\u5854\u514b\u3001\u62dc\u62c9\u5e2d\u6069\u3001\u6ce2\u987f\u3001\u5170\u5c3c\u65af\u7279\u7b49\u4e00\u6837\uff0c"} +{"id": "7004840", "video_name": "4f5943b2-092f-56ab-8b1d-5ac42bafb982", "text": "\u4ece\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u5f00\u573a\u666f\u5f00\u59cb\uff0c\u4ecb\u7ecdGolu\u6240\u5728\u7684\u5b81\u9759\u6751\u5e84\u3002"} +{"id": "3004962", "video_name": "5a3a2233-90a8-51c0-91b9-b39fb821442f", "text": "\u9634\u95f4\u6b7b\u795e\u9ab7\u9ac5\u8138\u5e26\u7740\u70bd\u70ed\u7684\u773c\u795e\u770b\u7740\u76f8\u673a\uff0c\u9ed1\u6697\u4e4b\u9b42\u98ce\u683c4k\u3002"} +{"id": "3006675", "video_name": "f5478c05-7953-5b1d-9296-99abca8662f4", "text": "\u519c\u4e1a\u79cd\u690d\u5c0f\u9ea6\u3001\u7389\u7c73\u548c\u4e73\u5236\u54c1\uff0c\u751f\u4ea7\u8239\u53ea\u3001\u7eb8\u5f20\u548c\u7eba\u7ec7\u54c1\u3002"} +{"id": "2007171", "video_name": "8755ac1a-37ea-53e6-aee7-4c0fe45ab09b", "text": "\u5206\u5b50\u5206\u88c2\uff0c\u7e41\u6b96\uff0c\u4f53\u79ef\u589e\u52a0\u3002"} +{"id": "2003622", "video_name": "c50868b7-2f17-5942-89fb-dd87eb214be3", "text": "\u7f8e\u56fd\u5730\u56fe\u4e0a\u7684\u8fde\u63a5\u7ebf\uff1a\u4e00\u5f20\u63cf\u7ed8\u8fde\u63a5\u4e0d\u540c\u57ce\u5e02\u7684\u7ebf\u6761\u7684\u7f8e\u56fd\u5730\u56fe\uff0c\u8c61\u5f81\u4eba\u9645\u5173\u7cfb\u3002"} +{"id": "0006566", "video_name": "2ebd2983-7f58-557a-b2bd-a2626d8b042a", "text": "\u7537\u5b69\u4eec\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "7002743", "video_name": "0b6bf8ce-a876-524a-9e4f-1a452580e6f4", "text": "\u7eb8\u8d28\u5496\u5561\u676f\uff0c\u4f0a\u6bd4\u6c99\uff0c\u84b8\u6c7d\uff0c\u4ee5Loro Piana\u98ce\u683c\u4e3a\u4e3b\u9898\u3002"} +{"id": "8002119", "video_name": "3fe4710c-a74a-5765-acdb-8385799b585b", "text": "\u4e00\u4e2a\u667a\u80fd\u673a\u5668\u4eba\u51fa\u73b0\u5728\u865a\u62df\u5b9e\u9a8c\u5ba4\u4e2d\u3002"} +{"id": "2007508", "video_name": "a45bfb28-4a88-5cb8-a5a5-35e82c02bb21", "text": "\u4e2d\u56fd\u6709\u4e00\u7247\u7af9\u6797\uff0c\u6709\u4e00\u6761\u7f13\u6162\u7684\u6eaa\u6d41\u548c\u56e0\u98ce\u6447\u66f3\u7684\u7af9\u5b50\u3002"} +{"id": "1003866", "video_name": "4740e443-cedb-5dee-96f1-3e0d412eb826", "text": "\u5728\u541b\u58eb\u5766\u4e01\u5821\uff0c\u6728\u6750\u88ab\u7528\u6765\u652f\u6491\u5efa\u7b51\u7269\u7684\u5899\u58c1\u3002"} +{"id": "6004255", "video_name": "cc37b059-2511-572e-90b0-4c6e127a15c8", "text": "\u72ee\u5b50\u8df3\u8fdb\u4e95\u91cc\u7684\u573a\u666f\u3002"} +{"id": "6002712", "video_name": "2e67b66c-2d05-59ed-b8b2-1ee23b866d14", "text": "\u5b87\u5b99\u7684\u5149\u5b66\u5e7b\u8c61\u88ab\u585e\u8fdb\u4e00\u4e2a\u73bb\u7483\u7f50\u91cc\uff0c\u7ec6\u8282\u9519\u843d\u6709\u81f4\uff0c\u4f53\u79ef\u5149\u7167\uff0c\u53f2\u8bd7\u822c"} +{"id": "4002807", "video_name": "feb9ddd7-1dbc-519d-bd36-5086613e2ce4", "text": "\u6a21\u62df\u4e00\u9897\u7c89\u8272\u7684\u9668\u77f3\u4ece\u5929\u800c\u964d\u6467\u6bc1\u5730\u7403\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "6004003", "video_name": "6decdfee-e225-56f2-b627-cd00bcf84e8c", "text": "\u6c60\u5858\u91cc\u6709\u4e00\u53ea\u8d85\u7ea7\u5927\u7684\u9752\u86d9\u4e3a\u5e86\u795d2024\u5e74\u3002"} +{"id": "2005697", "video_name": "e700479d-6620-5191-a2aa-99adfdf9c89c", "text": "\u5012\u4e0b\u7684\u591a\u7c73\u8bfa\u9aa8\u724c\u3002\u4fe1\u606f\uff1a\u592a\u7a7a\u6536\u85cf\u5bb6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003754", "video_name": "42d2c530-59a5-5464-a0d8-0dca906a0e05", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u4ece\u7194\u5ca9\u4e2d\u82f1\u52c7\u722c\u51fa\uff0c\u706b\u5c71\u55b7\u53d1\u5728\u80cc\u666f\u4e2d\uff0c\u7ef4\u8fbe\u770b\u8d77\u6765\u53d7\u4f24\u5f88\u91cd\uff0c\u7ef4\u8fbe\u975e"} +{"id": "0006477", "video_name": "2d358a61-4d82-59dd-a882-72661be1c418", "text": "\u684c\u5b50\u4e0a\u6709\u4e00\u5806\u5806\u7684\u91d1\u5e01\uff0c\u4e0a\u9762\u5199\u7740\u201cFINCI\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003081", "video_name": "f3a36a9f-6ed9-56a9-a794-3719571ff3df", "text": "\u4e00\u4f4d\u5927\u7ea620\u5c81\u7684\u5f2f\u66f2\u810a\u6881\u7684\u4e0a\u73ed\u65cf\u3002"} +{"id": "3005558", "video_name": "ff455fb1-08e1-51f8-8487-bed3aeba4128", "text": "\u4ee4\u4eba\u6ee1\u610f\u7684\u4e09\u7ef4\u52a8\u753b\uff0c\u4f53\u79ef\u5149\u548c\u70df\u96fe\uff0c\u4e09\u7ef4\u7c92\u5b50\u5377\u66f2\u566a\u58f0\uff0c4k\u5236\u4f5c\u4e8eHoudini FX\u3002"} +{"id": "3005246", "video_name": "23360cfc-534e-5cf9-9d90-604394b3c5d0", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u4e3e\u8d77\u8ff7\u5e7b\u7684\u996e\u54c1\uff0c\u903c\u771f\u7684\u7167\u7247\u7ea7\u522b\uff0c\u9ad8\u6e05\u3001\u9ad8\u52a8\u6001\u8303\u56f4\u30018K\u3001\u7535\u5f71\u822c\u7684\u955c"} +{"id": "2006441", "video_name": "1f69cfdc-cc24-51e7-be1b-57e843229829", "text": "\u9cc4\u9c7c\u5728\u6cb3\u8fb9\u9759\u9759\u5730\u7b49\u5f85\uff0c3D\u56fe\u50cf\u3002"} +{"id": "7003863", "video_name": "20b9c211-4c86-5380-8635-7eda819d751d", "text": "\u7528\u4e0d\u900f\u660e\u7684\u6ee4\u955c\u4f7f\u8fd9\u4e9b\u56fe\u50cf\u52a8\u8d77\u6765\uff0c\u6301\u7eed\u65f6\u95f4\u4e3a3\u520618\u79d2\u3002"} +{"id": "0005112", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "\u4e09\u4f4d\u4e3b\u89d2 Trinity\u3001Morpheus \u548c Neo \u5165\u4fb5\u77e9\u9635\u3002"} +{"id": "2007054", "video_name": "a66d6391-1281-5b07-893b-5ac05c7fa7b0", "text": "Hyperbird\u662f\u4e00\u53ea\u4ece\u60f3\u8c61\u4e2d\u521b\u9020\u51fa\u6765\u7684\u62e5\u6709\u795e\u79d8\u80fd\u529b\u7684\u9e1f\u3002\u5b83\u7684\u5f62\u8c61\u660e\u4eae\uff0c\u7fc5\u8180\u575a\u5f3a\u3002"} +{"id": "2005686", "video_name": "7801b4f3-9640-543e-87c5-59e5162f4d90", "text": "\u5973\u795e\u5c3c\u58a8\u897f\u65af\uff0c\u795e\u79d8\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u706b\u7130\uff0c\u91d1\u5c5e\uff0c\u94f6\u8272\uff0c\u5199\u5b9e\u7684\u5149\u7ebf\uff0c\u95ea\u8000\u7684\u773c"} +{"id": "8003035", "video_name": "fb5eb4a4-ffa0-536c-915c-de48398e1cb2", "text": "\u60f3\u8c61\u4e00\u5ea7\u534e\u4e3d\u7684\u6492\u62c9\u900a\u5bab\u6bbf\uff0c\u5728\u90a3\u91cc\u4e00\u4e2a\u597d\u5947\u7684\u82cf\u4e39\u65e0\u610f\u4e2d\u542c\u5230\u4e86\u4e00\u4e2a\u5173\u4e8e\u9065\u8fdc\u7684\u57fa\u7763"} +{"id": "4002020", "video_name": "8cd347b4-16fc-5d96-be10-f874577946e8", "text": "\u4eba\u4eec\u5728\u7ebd\u7ea6\u6b65\u884c\uff0c\u5230\u4e863000\u5e74\u3002"} +{"id": "8003717", "video_name": "dd1c55cd-fad9-5b35-821f-3b2a8e9f93b4", "text": "\u60c5\u8282\u6897\u6982\uff1a\n\u5728\u4e00\u4e2a\u8d85\u80fd\u529b\u5df2\u6210\u73b0\u5b9e\u7684\u4e16\u754c\u4e2d\uff0c\u53cd\u53db\u4e4b\u661f\u666e\u62c9\u5df4\u65af\u626e\u6f14\u7684\u62c9\u683c\u592b\uff08Raghav\uff09\u662f"} +{"id": "0003863", "video_name": "44cdeba6-451a-5a50-b61f-87dbbbec3324", "text": "\u6a58\u8272\u7684\u732b\u6e38\u6cf3\uff0c\u52a8\u753b\uff0c\u7535\u5f71\u822c\u7684\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "7002492", "video_name": "e6c05e39-91e6-5a45-8946-0f4037af7649", "text": "\u5728\u7e41\u534e\u7684\u57ce\u5e02\u666f\u89c2\u4e2d\uff0c\u4ecb\u7ecd\u4e00\u4e2a\u53e4\u602a\u7684\u89d2\u8272\u540d\u4e3a\u50cf\u7d20\u3002\n\nSource sentence: The book is written in a clear and concise manner, making it easy for readers to understand"} +{"id": "6002189", "video_name": "94f00c63-a72c-5dc4-a40d-cf3e7f106a07", "text": "\u871c\u8702\u673a\u5668\u4eba\u3001\u4e00\u4e2a\u5c0f\u5b69\u3001\u4e00\u4e2a\u5b66\u6821\u6559\u5ba4\u3001\u4e00\u4e2a\u5145\u6ee1\u597d\u5947\u548c\u7126\u6025\u7684\u6c1b\u56f4\uff0c\u871c\u8702\u673a"} +{"id": "0003365", "video_name": "3c4b57c9-2074-5f23-92da-a3f76c9854c7", "text": "\u7528\u644a\u8d29\u548c\u8d2d\u7269\u8005\u6765\u4f7f\u4e00\u4e2a\u70ed\u95f9\u7684\u5e02\u573a\u52a8\u8d77\u6765\u3002"} +{"id": "1003062", "video_name": "3847ff8f-13b2-5ca4-80dd-859cd6e9b725", "text": "\u5c55\u793a\u4e00\u53ea\u5728\u6cb3\u4e2d\u6e38\u6cf3\u7684\u9c91\u9c7c\u3002"} +{"id": "4003541", "video_name": "809f09b6-033d-56ed-9a69-55a9b39aa5fd", "text": "\u706b\u707e\u4e2d\uff0c\u623f\u5c4b\u7740\u706b\u5192\u70df\uff0c\u6709\u4eba\u4ece\u4e2d\u9003\u51fa\uff0c\u8fd8\u6709\u4eba\u88ab\u56f0\u9700\u8981\u6551\u63f4\u3002"} +{"id": "6002074", "video_name": "38bea655-7ed6-5d65-9622-2beede6c9337", "text": "\u7c89\u8272\u7684\u5149\u8f89\u4eba\u5750\u5728\u592a\u7a7a\u4e2d\u51a5\u60f3\uff0c\u660e\u4eae\u7684\u5149\u8292\u4ece\u5fc3\u810f\u6563\u53d1\u51fa\u6765\uff0c\u7535\u5f71\u822c\u7684\u89c6\u89d2\uff0c\u4ece"} +{"id": "8003784", "video_name": "40d668b1-bb04-502c-8a74-c1488cd21494", "text": "\u90a3\u4e2a\u5973\u5b69\u5728\u753b\u4e00\u628a\u5200\u3002\u8fd9\u628a\u5200\u5f88\u8ff7\u4eba\u3002"} +{"id": "0004257", "video_name": "05e33804-5482-5ed0-9a4a-7e138d846812", "text": "\u4e00\u53ea\u732b\u5728\u5929\u7a7a\u4e2d\u8df3\u4f1e\uff0c\u8d85\u903c\u771f\uff0c16K\u3002"} +{"id": "7003724", "video_name": "8d568e65-ab61-5ccf-b76d-84b0b7661fc4", "text": "\u4e00\u4e2a\u5bb6\u5ead\u5403\u7740\u7531\u6bdb\u7403\u505a\u6210\u7684\u8c37\u7247\u7684\u7535\u89c6\u5e7f\u544a\uff0c90\u5e74\u4ee3\u7684\u7f8e\u5b66"} +{"id": "4003110", "video_name": "0b62de54-01ed-5037-b9d2-f256306676fc", "text": "\u76ee\u6807\u53e5\u5b50\uff1aGwagon\u548cLamborghini\u5f00\u8f66\u53bb\u4e0b\u96e8\u7684\u5730\u65b9\u3002"} +{"id": "8003587", "video_name": "077e0538-51ff-5b5a-a6b9-509b6bdf3837", "text": "\u751f\u6210\u624b\u6301\u94bb\u77f3\u548c\u8ba2\u5a5a\u6212\u6307\u7684\u89c6\u9891\u3002\u7687\u5bb6\u84dd\u8272\u80cc\u666f\u3002\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7002102", "video_name": "d318cf7f-d578-5363-8373-0aec77f00e96", "text": "\u201c\u653e\u5c04\u6027\u6c34\u201d\u542c\u8d77\u6765\u5f88\u53ef\u6015\uff0c\u4f46\u5076\u5c14\u6cc4\u6f0f\u8fd9\u6837\u7684\u6c34\u4ece\u672a\u5371\u53ca\u516c\u4f17\u6216\u73af\u5883\u3002"} +{"id": "2004429", "video_name": "bcb21b1b-d665-5125-8b06-6353723e527f", "text": "\u5b69\u5b50\u4f9d\u504e\u5728\u5988\u5988\u6000\u4e2d\uff0c\u521b\u9020\u5728\u4e0b\u4e00\u4e2a\u91cd\u751f\u7684\u5929\u5802\u3002"} +{"id": "2003671", "video_name": "9cc7263c-e7f2-50f7-95ae-058750866915", "text": "\u7334\u5b50\uff1a\u6dd8\u6c14\u7684\u7334\u5b50\u7ec4\u7ec7\u4e86\u4e00\u4e2a\u4e1b\u6797\u5965\u6797\u5339\u514b\u4f1a\uff0c\u5305\u62ec\u8361\u79cb\u5343\u6bd4\u8d5b\u3002\u98ce\u683c\u548c"} +{"id": "4004470", "video_name": "0a41ed3a-46b2-50fd-8182-eaba1eeb6f19", "text": "\u5973\u5b69\n\u76f4\u76f4\u7684\u6d45\u68d5\u8272\u5934\u53d1\uff0c\u5e26\u6709\u6de1\u68d5\u8272\u7684\u4eae\u70b9\uff0c\u5b8c\u7f8e\u7ec6\u817b\u7684\u8138\u5e9e\uff0c\u5728\u6d77\u6ee9\u4e0a\u6f2b\u6b65\u3002"} +{"id": "2006490", "video_name": "fff03539-bd80-5b38-b557-cc97a27ec23b", "text": "Youtube\u6e38\u620f\u73a9\u5bb6\u57281990\u5e74\u4ee3\uff0c\u7a7f\u7740\u65e7\u8863\u670d\u3002"} +{"id": "7004566", "video_name": "61b38092-6844-5ea1-83c3-07754c50d747", "text": "\u89d2\u8272\u827e\u4e3d\u4e1d\u662f\u4e00\u4f4d\u5e74\u8f7b\u5973\u6027\uff0c\u62e5\u6709\u91d1\u8272\u3001\u5377\u66f2\u3001\u975e\u5e38\u77ed\u7684\u68d5\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u5361\u5176\u8272\u7684"} +{"id": "6002818", "video_name": "b931a520-62ba-5b82-a8a3-9cd8189ff9ab", "text": "\u4f2f\u5229\u6052\uff0c\u5c0f\u8036\u7a23\u51fa\u751f14\u5929\u540e\u4e0e\u7c73\u5229\u4e9a\u59c6\u5728\u4e00\u8d77\u3002"} +{"id": "3005611", "video_name": "ad4561e0-1d94-550c-8a50-22a8314e63b0", "text": "\u5728\u9ed1\u767d\u7684\u573a\u666f\u4e2d\uff0c\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\u7684\u666f\u8c61\u9010\u6e10\u6d6e\u73b0\u3002\n\nSource sentence: The sound of waves crashing against the shore is soothing to the soul.\n\u6d77\u6d6a\u62cd\u6253\u5cb8"} +{"id": "0003663", "video_name": "4149e087-a50e-52e2-a591-9ea25c36fe5a", "text": "\u767d\u8272\u7684\u7acb\u65b9\u4f53\u6563\u53d1\u51fa\u84dd\u8272\u7684\u5149\u7ebf\uff0c\u5e26\u6709\u6570\u5b57\u7ebf\u548c\u6ce2\u6d6a\u5f62\u72b6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004153", "video_name": "04381842-1e37-530e-9ff5-f68b4ab541aa", "text": "\u96c5\u5178\u5e0c\u814a\u57ce\u5e02\u591c\u666f\u5e15\u53f0\u519c\u795e\u5e99\uff0c\u4ee5\u53ca\u4e00\u53ea\u7ffc\u9f99\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u52a8\u753b\u903c\u771f\u7684\u7535\u5f71\u53f2"} +{"id": "2006966", "video_name": "173da6df-31a6-50bf-9f77-09aff63643f2", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5185\u5bb9\u4e3a\u53f2\u8482\u592b\u00b7\u4e54\u5e03\u65af\u5728\u82f9\u679c\u603b\u90e8\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "0006362", "video_name": "2b416318-42f7-50ae-a50c-85e4d4310ceb", "text": "\u751f\u6210\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5f62\u8c61\uff0c\u4ee3\u8868\u521b\u65b0\u548c\u5353\u8d8a\u3002\u4f7f\u7528\u73b0\u4ee3\u5143\u7d20\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u8c03\u8272\u677f\u3002\u4ee5\u5f15\u4eba\u5165\u80dc\u7684\u65b9\u5f0f"} +{"id": "8003704", "video_name": "92b184f4-5403-5fca-8279-8af73a8533a5", "text": "\u4e00\u7ec46\u540d\u7279\u79cd\u4f5c\u6218\u7a81\u51fb\u961f\u5458\uff0c\u8eab\u7740\u9ed1\u8272\u5236\u670d\uff0c\u6234\u7740\u5934\u76d4\uff0c\u624b\u6301\u673a\u67aa\uff0c\u5728\u4e00\u8f86\u8d27\u8f66\u540e\u7b49\u5f85\u7a81\u88ad\u3002"} +{"id": "1006059", "video_name": "6f479c1d-dd1b-50bb-a0f6-a324c4002d47", "text": "\u6d77\u6ee9\u4e0a\u7684\u9e3d\u5b50\u3002\u4fe1\u606f\uff1aratatopo\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005946", "video_name": "6d3d7459-8bb4-5e9b-bc1a-a6492a6208bb", "text": "\u56db\u5c81\u5b69\u5b50\u7a7f\u7740\u7684\u7f8e\u6d32\u72ee\u978b\u7684\u56fe\u7247"} +{"id": "8001167", "video_name": "e93ad892-1298-5b6a-935a-571c6ab9ffda", "text": "\u8d85\u9ad8\u6e05\uff0c\u6700\u5927\u753b\u8d28\uff0c\u592a\u7a7a\uff0c\u9ed1\u6d1e\uff0c\u903c\u771f\u3002"} +{"id": "2004166", "video_name": "dadc3696-f76f-5b11-b221-6534ff3db14c", "text": "\u739b\u4e3d\u62b1\u7740\u5a74\u513f\u8036\u7a23\u3002"} +{"id": "6003154", "video_name": "b831496f-a231-5991-a041-7c720b437f2d", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u683c\u52aa\u65af\u00b7\u5361\u5c14\u68ee\u4e0b\u68cb\u3002"} +{"id": "2003003", "video_name": "cf23d89e-64da-5879-bdec-fcbf687580b0", "text": "\u4e00\u4e2a\u7a7f\u7740\u94f6\u8272\u76d4\u7532\u7684\u5927\u6218\u58eb\u8fdc\u79bb\u6211\u4eec\u8d70\u5411\u5915\u9633\uff0c\u4e24\u4fa7\u662f\u73af\u7ed5\u7740\u5c71\u5ce6\u7684\u7ea2\u4e91\uff0c\u800c"} +{"id": "6002258", "video_name": "e6c83290-c8ac-525f-960b-980fa17c326c", "text": "1670\u5e74\uff0c\u5728\u5580\u4ec0\u7c73\u723e\u4e00\u500b\u5370\u5ea6\u6559\u5bb6\u5ead\u4e2d\u51fa\u751f\u4e86\u4e00\u500b\u7537\u5b69\u3002"} +{"id": "2004563", "video_name": "3760b1ac-b696-5848-9fd9-8522c3fc3046", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u5e05\u6c14\u7684\u7537\u4eba\u5c55\u73b0\u4ed6\u7684\u9b45\u529b\u5438\u5f15\u5468\u56f4\u7684\u5973\u5b69\u3002\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u5e05\u6c14\u7684\u7537\u5b50\u5c55\u73b0\u5176\u4e2a"} +{"id": "5001397", "video_name": "bbe968e8-2593-550c-aee0-ad1c4ee265c8", "text": "\u7537\u4eba\u5728\u660e\u4eae\u7684\u529e\u516c\u5ba4\u91cc\u5438\u70df\uff0c\u5e76\u8c08\u8bba\u4efb\u4f55\u4e8b\u60c5\u3002"} +{"id": "6004429", "video_name": "8a8fd8bd-da80-5db7-85b7-9370186ea693", "text": "\u94f6\u6cb3\u5929\u7a7a\u5e03\u6ee1\u4e86\u9999\u8549\u3002"} +{"id": "7003097", "video_name": "6dbc176b-2174-5e7d-a34a-d485dd92b357", "text": "\u7a7f\u7740\u9ed1\u8272\u793c\u670d\uff0c\u6234\u7740\u6d63\u718a\u9762\u5177\u7684\u7537\u5b50\u5728\u9ad8\u5c14\u592b\u7403\u573a\u4e0a\u8d70\u6765\u8d70\u53bb\uff0c\u624b\u52bf\u660e\u663e\u3002"} +{"id": "3006837", "video_name": "14b25e99-3f9c-5a48-aaa7-4cc8c7e26def", "text": "\u4e00\u5f20\u6e05\u6668\u62cd\u6444\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u90fd\u5e02\u7a7a\u4e2d\u7167\u7247\uff0c\u57ce\u5e02\u706f\u5149\u9010\u6e10\u70b9\u4eae\u3002\u805a\u7126\u4e8e\u4e00\u680b\u89d2\u843d"} +{"id": "8002172", "video_name": "7f193627-cf7a-5c4d-af35-e5b66ffac557", "text": "\u7537\u5b69\u770b\u7740\u5927\u6d77\uff0c\u84dd\u8272\u7684\u6d77\u6c34\uff0c\u591c\u666f\uff0c\u795e\u79d8\u7684\u591c\u665a\u3002"} +{"id": "2003772", "video_name": "2c96bd11-27c3-5a44-aba8-e3fc8d4ddef9", "text": "\u4e00\u4e2a\u5927\u7ea2\u8272\u7684\u9c7c\u5728\u6e56\u91cc\u6e38\u6cf3\u3002"} +{"id": "3004025", "video_name": "c27b461a-28a2-568e-9fef-ba40585f3aa3", "text": "\u8857\u4e0a\u884c\u4eba\u7684\u8fd1\u8ddd\u79bb\u62cd\u6444"} +{"id": "8001634", "video_name": "03ad9e94-0e59-50e3-81e0-335456e0dd01", "text": "\u968f\u7740\u5c81\u6708\u7684\u6d41\u901d\uff0c\u4ed6\u4eec\u7684\u7231\u60c5\u52a0\u6df1\u4e86\uff0c\u800c\u4e16\u754c\u4e5f\u5728\u4e0d\u65ad\u53d8\u5316\u3002"} +{"id": "3004356", "video_name": "536f815a-3284-5c06-a0fe-4bd6178e3cb4", "text": "\u4e00\u4e2a\u89c6\u9891\u5c55\u793a\u4e86\u65e0\u5bb6\u53ef\u5f52\u8005\u5982\u4f55\u878d\u5165\u5f53\u5730\u793e\u533a\uff0c\u5efa\u7acb\u53cb\u8c0a\u3002"} +{"id": "5001989", "video_name": "77d5c685-0398-5a39-8cf0-55a27905f789", "text": "\u573a\u666f\uff1a\u4e00\u4e2a\u52a8\u753b\u89d2\u8272\u5728\u5b81\u9759\u7684\u73af\u5883\u4e2d\u7ec3\u4e60\u51a5\u60f3\uff0c\u5468\u56f4\u5145\u6ee1\u7740\u6b63\u80fd\u91cf\u548c\u5e73\u9759\u7684\u89c6\u89c9\uff08\u98de"} +{"id": "3003167", "video_name": "8f7c2120-426b-5b75-a93d-38b3007837e8", "text": "\u9762\u5bf9\u9762\u7684Khabib Nurmagomedov\u548cMohamed Ali"} +{"id": "1003241", "video_name": "3bbac590-dd9c-528c-8f84-d3e24b037a73", "text": "\u745e\u831c\u00b7\u5a01\u745f\u65af\u5f6d\u5728\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u4e2d\u3002"} +{"id": "0006464", "video_name": "2d089d90-7d83-581c-acfb-8d379a84d397", "text": "Source sentence: \u54c8\u9a6c\u65af\u5728\u519b\u4e8b\u9886\u57df\u4e2d\uff0c\u53f2\u8bd7\u822c\u7684\u3001\u8d85\u73b0\u5b9e\u7684\u3002"} +{"id": "4004329", "video_name": "1806e81f-bc13-5461-a91c-3b8f8579be13", "text": "\u521b\u9020\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u9ed1\u8272\u5e26\u767d\u8272\u8896\u5b50\u7684\u5927\u5b66\u5939\u514b\uff0c\u4ece\u5c4b\u9876\u7684\u89c6\u89d2\u89c2"} +{"id": "1004968", "video_name": "5bc38d36-758b-5108-a0f9-eda69d83bad7", "text": "\u76f8\u673a\u8fd0\u52a8\u5411\u5916\u7f29\u653e\uff0c\u63ed\u793a\u66f4\u591a\u8fd9\u4e2a\u623f\u95f4\u7684\u5185\u5bb9\u3002"} +{"id": "6002125", "video_name": "65cc3776-cba1-5edd-b221-b840ae49eb64", "text": "\u8db3\u7403\u6bd4\u8d5b\u7684\u5404\u79cd\u955c\u5934\uff0c4k\uff0c\u591c\u665a\u3002"} +{"id": "2005527", "video_name": "9d9ab9a4-9580-595a-9d4c-879828353d16", "text": "\u592a\u7a7a\u884c\u661f\u503e\u659c\u4f4d\u79fb\u7684\u505c\u683c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "2005928", "video_name": "8e377243-210f-5323-8f00-02a244ae6ed1", "text": "\u8ba9\u4ed6\u7684\u9a6c\u8d70\uff0c\u56fa\u5b9a\u56fe\u50cf\u3002\u9644\u4ef61\u3002"} +{"id": "7004376", "video_name": "aed8577f-bc53-50e8-bbc5-2ddfd80460da", "text": "\u5357\u74dc\u65f6\u5149\u673a\u964d\u843d\u5728\u53f2\u524d\u65f6\u4ee3GS14\u3002 \n\nSource sentence: The cat sat on the mat. \n\n\u90a3\u53ea\u732b\u5750\u5728\u57ab\u5b50\u4e0a\u3002"} +{"id": "2007493", "video_name": "0f0e7562-ce7a-5b2f-aa5d-1302fef2946a", "text": "\u73b0\u5b9e\u7684\u6885\u8d5b\u5fb7\u65af\u6cbf\u7740\u8def\u884c\u9a76\u3002"} +{"id": "4003634", "video_name": "8d895229-2d90-5371-a013-d43a437d5e00", "text": "\u7ebd\u7ea6\uff0c\u5348\u591c\uff0c\u5efa\u7b51\u7269\uff0c\u4fef\u89c6\uff0c90\u5e74\u4ee3VHS\u6444\u50cf\u5934\u6ee4\u955c"} +{"id": "8002734", "video_name": "79a8abb1-8bcf-52bd-81a0-77d14474b04f", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u6b63\u5728\u95fb\u7740\u4e00\u675f\u7ea2\u73ab\u7470\uff0c\u5e76\u5fae\u7b11\u7740\u3002\u805a\u7126\u4e8e\u82b1\u6735\uff0c\u5979\u7684\u8138\u90e8\u6a21\u7cca\u4e0d\u6e05"} +{"id": "4003644", "video_name": "e7ebe298-aefb-573f-adf3-20d3c30a283c", "text": "\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u7fa4\u5728\u8857\u4e0a\u8df3\u821e\u3002"} +{"id": "4004272", "video_name": "ef4eeedb-9fd1-56ff-90dc-4b08d6bbfc4d", "text": "\u5973\u4eba\u5728\u591c\u665a\u57ce\u5e02\u91cc\u62d0\u8fc7\u8857\u89d2\u3002"} +{"id": "7003561", "video_name": "00d88dcc-c47b-56a1-9937-1344b6c73cdc", "text": "\u5b64\u72ec\u75c7\u513f\u7ae5\u8bd5\u56fe\u6c9f\u901a\uff0c\u8868\u60c5\u62c5\u5fe7\u3002 3D\u63d2\u56fe\u3002"} +{"id": "4002488", "video_name": "26adcee8-c11a-53f6-a693-7fcc89dd92a3", "text": "\u7537\u5b66\u751f\u611f\u5230\u6cae\u4e27\u548c\u60b2\u4f24\u3002"} +{"id": "4002864", "video_name": "b4263906-a208-5a9d-9469-74a425ae3b4c", "text": "\u4e00\u53ea\u52a8\u6f2b\u732b\u62ff\u7740\u4e00\u628a\u6b66\u58eb\u5200\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "4004334", "video_name": "1c507ee9-6f5b-5bdc-b6df-21e79fbc55b3", "text": "\u7537\u5b50\u5f80\u56de\u8d70\uff0c\u4f7f\u7528\u4f53\u7d20\u56fe\u5f62\u548c\u540e\u671f\u5904\u7406\u3002"} +{"id": "1003711", "video_name": "4475de33-8ef1-54a3-9511-d6a1679cbc66", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u7ad9\u5728\u4e00\u4e2a\u9ad8\u5ea6\u8be6\u7ec6\u3001\u522e\u98ce\u7684\u6708\u7403\u4e0a\u3002"} +{"id": "0004691", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "\u4e00\u4e2a\u5e9f\u5f03\u7684\u5267\u9662\uff0c\u4e00\u7fa4\u4eba\uff0c\u8bb8\u591a\u5782\u76f4\u60ac\u6302\u7684\u84dd\u8272\u548c\u7ea2\u8272\u65d7\u5e1c\uff0c\u7535\u5f71\u98ce\u683c\u7684\u4f4e\u8c03\uff0c"} +{"id": "1006545", "video_name": "77e41178-a76d-53e7-aad5-eec86fafbbab", "text": "\u4e00\u90e8\u96f7\u9706\u98ce\u683c\u7684\u5b57\u6bcdV\u52a8\u753b\u3002"} +{"id": "6004712", "video_name": "934ef170-0841-5737-8b1e-564cdbdafe01", "text": "\u4e00\u4e2a\u5782\u76f4\u89c6\u9891\u683c\u5f0f\u7684\u7535\u5f71\u5316\u5916\u661f\u98de\u8239\u8df3\u8fdb\u5149\u901f\u7684\u753b\u9762"} +{"id": "4003666", "video_name": "9321bc9c-9e07-5db8-9d7c-9374b004d9b0", "text": "\u6838\u80fd (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4003764", "video_name": "d6c83674-d669-56ae-b102-d562f44b8ee8", "text": "\u5de8\u6d6a\u6df9\u6ca1\u4e00\u5ea7\u57ce\u5e02\uff0c\u6ce2\u6d6a\u6e85\u8d77\u98ce\u683c\u76843D\u771f\u5b9e\u6d41\u52a8\uff0c\u4f0f\u7279\u5c04\u7ebf\u9634\u5f71\u53cd\u5c04\uff0cTrapcode\u6355\u6349"} +{"id": "0005932", "video_name": "236f414d-29ba-5685-bb37-ca83fd893cc3", "text": "1930\u5e74\u4ee3\u5728\u8d1d\u7eb3\u62c9\u65af\u7684\u4e00\u4e2a\u8336\u644a\u4e0a\u7684\u673a\u5668\u4eba\u3002"} +{"id": "2006918", "video_name": "604f5dbd-89a9-54b9-a406-ca83d0a24823", "text": "\u58a8\u897f\u54e5\u516c\u725b\u5728\u5730\u4e0b\u6d1e\u7a74\u91cc\uff0c\u7531Charles E. Perugini\u3001Fred Sandback\u3001Renne Magritte\u3001Max Ernst\u521b\u4f5c\u3002"} +{"id": "0003028", "video_name": "35cec0ee-9c5f-5b23-80de-67ce0a0f9dda", "text": "\u4e00\u4e2a\u9ad8\u5efa\u7b51\u7684\u8f89\u714c\u5bab\u6bbf\uff0c\u5468\u56f4\u6709\u7f8e\u4e3d\u7684\u5c71\u4e18\u73af\u7ed5\uff0c\u8986\u76d6\u7740\u968f\u7740\u98ce\u7f13\u6162\u6643\u52a8"} +{"id": "5001914", "video_name": "35076c45-a981-57a1-a45b-bde46a941fdd", "text": "\u4e00\u6ef4\u9ed1\u8272\u7684\u6cb9\u6f06\u843d\u5728\u4e00\u4e2a\u767d\u4e91\u4e0a\uff0c\u4f7f\u6574\u4e2a\u5c4f\u5e55\u90fd\u88ab\u4e91\u6735\u586b\u6ee1\u3002"} +{"id": "1005575", "video_name": "66a26ba3-f303-532f-9249-7d412d5184c2", "text": "\u90a3\u4f4d\u806a\u660e\u548c\u6148\u7965\u7684\u8001\u7237\u7237\u5750\u5728\u4ed6\u4eec\u5bb6\u95e8\u524d\u7684\u95e8\u5eca\u4e0a\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\uff0c\u5236\u4f5c\u7740\u5976"} +{"id": "6004489", "video_name": "1a1bc053-1355-5211-89c2-a73a1b273027", "text": "\u90a3\u4e2a\u5973\u5b69\u7ad9\u5728\u684c\u5b50\u540e\u9762\uff0c\u8f6c\u5934\u770b\u5411\u6444\u50cf\u673a\u3002"} +{"id": "6003170", "video_name": "e5e9396a-d3eb-53de-a773-df325e170b29", "text": "\u7136\u800c\uff0c\u5c31\u50cf\u4efb\u4f55\u8ff7\u4eba\u7684\u7231\u60c5\u6545\u4e8b\u4e00\u6837\uff0c\u6311\u6218\u4e5f\u51fa\u73b0\u4e86\u3002\u4e00\u6b21\u8bef\u89e3\u8003\u9a8c\u4e86\u4ed6\u4eec\u7684\u7ebd\u5e26\uff0c\u4fc3\u4f7f\u4ed6\u4eec"} +{"id": "0004831", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "Source sentence: \u6d77\u8c5a\u7a81\u7136\u51fa\u73b0\u5728\u5f69\u8679\u4e0a\u65b9"} +{"id": "4003480", "video_name": "0a848d25-9b95-55a7-926c-3f490d388530", "text": "\u81ea\u7531\u77f3\u5320\u5f00\u59cb\u5728\u5404\u56fd\u53d1\u6325\u5f71\u54cd\u529b\u3002"} +{"id": "8003531", "video_name": "f299b7a1-8fb8-5cfc-ae76-0f350d858cc4", "text": "\u5927\u578b\u534a\u5361\u8f66\u5185\u90e8\u73b0\u4ee3\u5316\u8bbe\u8ba1\uff0c\u4e00\u81f4\u7684\u7167\u660e\uff0c\u903c\u771f\u7684\uff0c\u53f8\u673a\u9a7e\u9a76\u5728\u516c\u8def\u4e0a\u3002"} +{"id": "7002837", "video_name": "8123884e-de21-5548-beed-667a239f2e36", "text": "\u5728\u672a\u6765\u4e3b\u4e49\u7684\u4e1c\u4eac\uff0c\u4e00\u4e2a\u591a\u4e91\u7684\u65e5\u5b50\u91cc\u98de\u8fc7\u7acb\u4ea4\u6865\u3002"} +{"id": "1003496", "video_name": "40b98dfb-afa4-5783-b02c-a9821cc078ca", "text": "\u4e00\u6240\u6709\u96e8\u6709\u9633\u5149\u7684\u519c\u820d\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\uff0c\u7535\u5f71\u822c\u7684\u624b\u7ed8\u3002"} +{"id": "1003420", "video_name": "3f2c43e5-50de-5bad-b937-80859142e689", "text": "\u6211\u6b63\u5728\u64e6\u62ed\u5899\u58c1\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003764", "video_name": "01e0aefb-e6b3-5612-99d8-6356e6e7e084", "text": "\u5979\u542c\u5230\u6a21\u62df\u5668\u79bb\u5730\u5347\u7a7a\u65f6\u53d1\u51fa\u5de8\u5927\u7684\u8f70\u9e23\u58f0\uff0c\u5411\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "1003856", "video_name": "470fe854-8916-5bd6-8027-b208de2d4d1b", "text": "\u8001\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u8fdb\u884c\u7269\u7406\u6cbb\u7597\u7ec3\u4e60\u3002\u6cbb\u7597\u5e08\u5750\u5728\u4ed6\u9762\u524d\uff0c\u5411\u4ed6\u5c55\u793a\u5982\u4f55\u505a\u3002"} +{"id": "4003750", "video_name": "6c71c7dc-9290-533c-ae29-42342ee668d3", "text": "\u91d1\u53d1\u5b69\u5b50\u7537\u5b69\u4ece\u60ac\u5d16\u4e0a\u6389\u843d\uff0c\u4fa7\u9762\u955c\u5934\uff0c\u653e\u5927\uff0c\u9707\u60ca\u7684\u8868\u60c5\uff0c\u5728\u68ee\u6797\u91cc\uff0c\u767d\u5929\uff0c\u9633"} +{"id": "3005708", "video_name": "68e59624-e44e-5cbe-b9a5-2426b1262bc1", "text": "\u7f8e\u4e3d\u7684\u4eba\u5f62\u5916\u661f\u4eba\u9a7e\u7740\u4ed6\u4eec\u7684\u98de\u8239\u6765\u5230\u5730\u7403\u7684\u89c6\u9891\u3002"} +{"id": "1005143", "video_name": "5ec3b2ea-c352-5072-b7b3-5ac92021a0bf", "text": "\u6469\u6258\u8f66\u4e0a\u7684\u7537\u4eba\u3002\u4fef\u89c6\u89c6\u89d2\u3002\u52a8\u6001\u3002"} +{"id": "1006413", "video_name": "756dd394-56e2-5004-9b9b-61f6b6beffa2", "text": "\u5728\u5185\u534e\u8fbe\u6c99\u6f20\u4e2d\uff0c\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u9a7e\u9a76\u4e00\u8f86\u7ea2\u8272\u655e\u7bf71973\u5e74\u96ea\u4f5b\u5170Caprice\uff0c\u8f66\u5185\u642d\u914d"} +{"id": "4002761", "video_name": "fcf89e15-00a3-5871-8de3-48ffb939ff58", "text": "\u7528\u58a8\u897f\u54e5\u98ce\u683c\u7ed8\u5236\u7684\u9ab7\u9ac5\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u5177\u6709\u751f\u52a8\u7684\u56fe\u6848\u3002"} +{"id": "3006346", "video_name": "90e0e79d-80fe-5640-b625-0d0c9d356663", "text": "\u84dd\u8272\u548c\u9ec4\u8272\u7684\u745e\u58eb\u725b\u5728\u5c71\u4e2d\u3002\u6d88\u606f\uff1aHCD\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003289", "video_name": "ccffc9b9-fd86-57b2-ba6c-bae1a27baaa3", "text": "\u4e00\u4e2a\u4eba\u6500\u767b\u5c71\u5cf0\u7684\u56fe\u50cf\uff0c\u8c61\u5f81\u7740\u901a\u8fc7\u62e5\u62b1\u6311\u6218\u5e76\u514b\u670d\u5b83\u4eec\u6240\u83b7\u5f97\u7684\u6bc5\u529b\u548c\u529b\u91cf\u3002"} +{"id": "7003868", "video_name": "2ad21037-f3af-573a-97d5-8460a593a85e", "text": "\u5728\u65b0\u52a0\u5761\u65c5\u884c\u7684\u7537\u4eba\u7528vlog\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "8002620", "video_name": "a4b62944-5ae2-5d23-b681-5772caa0460b", "text": "\u6e56\u8fb9\u505c\u6cca\u7740\u51e0\u53ea\u5c0f\u6728\u8239\u3002\u671b\u51fa\u53bb\uff0c\u6e56\u6c34\u5e7f\u9614\u65e0\u57a0\uff0c\u6e5b\u84dd\u7684\u6c34\u9762\u8f7b\u8f7b\u6ce2\u52a8\u3002\u9ad8"} +{"id": "4004817", "video_name": "f29dd867-e673-5cf8-8976-7797734adf41", "text": "\u4e00\u5f20\u5177\u6709\u771f\u5b9e\u611f\u7684\u96ea\u6797\u7167\u7247\uff0c\u7167\u7247\u4e2d\u4e00\u53ea\u53ef\u7231\u7684\u72d0\u72f8\u6b63\u770b\u5411\u955c\u5934\u3002"} +{"id": "7002957", "video_name": "e9182044-ffc8-5b7b-aab7-d107d47345de", "text": "\u4e00\u4f4d\u9762\u5411\u524d\u65b9\u7684\u5507\u88c2\u75c5\u60a3\uff0c\u4ee5\u7f8e\u4e3d\u7684Final Fantasy\u98ce\u683c\u52a8\u753b\u5448\u73b0\u3002"} +{"id": "8003660", "video_name": "9c2d107e-5984-5d40-90f1-792e3c0548e2", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5e74\u8f7b\u4e2d\u56fd\u5973\u58eb\u7ed9\u6211\u5fae\u7b11\u3002"} +{"id": "0006246", "video_name": "2929c892-975c-509d-9a7a-6019734ea240", "text": "\u4e00\u53ea\u9ec4\u8272\u5c0f\u72d7\u548c\u4e00\u53ea\u767d\u8272\u5c0f\u732b\u5728\u8349\u576a\u4e0a\u4e00\u8d77\u73a9\u3002"} +{"id": "8001076", "video_name": "c924f8c2-4093-5d36-9fb1-f3cbd78f25b7", "text": "\u4e00\u4e2a\u58eb\u5175\u653b\u51fb\u57ce\u5899\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "3003708", "video_name": "867e5413-65f1-53a4-96cb-3cac170c3cc5", "text": "\u5c0f\u718a\u6c89\u601d\u661f\u661f\u7684\u8d77\u6e90\u3002"} +{"id": "1005657", "video_name": "67e95dce-71a6-52d1-8904-d120b6370657", "text": "AI\u4ece\u6570\u636e\u670d\u52a1\u5668\u6536\u96c6\u5927\u91cf\u6570\u636e\uff0c\u6bd4\u4f8b\u4e3a9\uff1a16\u3002"} +{"id": "8003811", "video_name": "658ec610-64ee-565a-8a28-9043b643be8e", "text": "\u6d77\u6d0b\u573a\u666f\uff0c\u4e00\u534a\u5728\u6c34\u4e0a\uff0c\u4e00\u534a\u5728\u6c34\u4e0b\uff0c\u6709\u5de8\u5927\u7684\u84dd\u9cb8\u548c\u6d77\u8c5a\u7ecf\u8fc7\uff0c\u591c\u665a\u7684\u70ed\u5e26\u6ce2"} +{"id": "8001973", "video_name": "a7e3ab6c-3953-5d5c-944e-1218a0a78b9e", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u4e09\u70b9\u949f\u7684\u9ed1\u6697\u623f\u95f4\u91cc\u3002"} +{"id": "1003590", "video_name": "4207dbbd-5b32-56cc-bab6-af41c73a19fc", "text": "\u673a\u5668\u4eba\u4e3e\u8d77\u624b\uff0c\u7535\u68af\u95e8\u5173\u95ed\u3002"} +{"id": "7002315", "video_name": "80bc4838-53f0-59db-9a40-0eb009fb2ae0", "text": "\u52a0\u62ff\u5927\u8239\u957f\u9a91\u7740\u4e00\u5339\u9a8f\u9a6c\u5728\u8000\u773c\u7684\u60ca\u4eba\u5149\u7ebf\u4e0b\uff0c\u4ee53D UHD\u6570\u5b57\u6e32\u67d3\u5448\u73b0\u3002"} +{"id": "3006329", "video_name": "a8b9b579-8aae-5541-94b7-9e233b2e7fb9", "text": "\u4e00\u5934\u5976\u725b\u5728\u8349\u539f\u4e0a\u5954\u8dd1\u3002"} +{"id": "7004285", "video_name": "73b8157e-fd02-5eaf-b6fd-53a483c76deb", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u5de8\u578b\u673a\u5668\u4eba\u5750\u5728\u76ae\u8247\u91cc\u3002"} +{"id": "7002355", "video_name": "1f151811-babd-5d71-9471-c62f880c5585", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4fc4\u5f0f\u6d74\u5ba4\u91cc\u9ad8\u58f0\u558a\u53eb\u53e6\u4e00\u4e2a\u7537\u4eba\u3002"} +{"id": "4004560", "video_name": "530ebd43-ac65-5801-ae1f-80d6dbbaf476", "text": "\u5c4b\u9876\u80fd\u591f\u906e\u9633\u3002"} +{"id": "0003004", "video_name": "35753c07-633e-5f88-9991-2185b48ff769", "text": "\u4e00\u4e2a\u827a\u672f\u5bb6\u62ff\u8d77\u753b\u7b14\uff0c\u4ed4\u7ec6\u5730\u6309\u7167\u7f16\u53f7\u6307\u5357\uff0c\u719f\u7ec3\u5730\u4e3a\u753b\u5e03\u4e0a\u76f8\u5e94\u7684\u90e8\u5206\u6dfb\u52a0\u989c\u8272\uff0c\u5448\u73b0\u51fa"} +{"id": "2003753", "video_name": "f4ea2596-7fcb-5b5a-b175-e0ca57cce9ec", "text": "\u4ee5\u591c\u5e55\u964d\u4e34\u7684\u6751\u5e84\u795e\u79d8\u573a\u666f\u6536\u5c3e\uff0c\u8ba9\u89c2\u4f17\u9677\u5165\u60ac\u7591\u4e4b\u4e2d\uff0c\u4eff\u4f5b\u672a\u77e5\u800c\u53c8"} +{"id": "1004864", "video_name": "59d95882-09a2-579e-9523-ab86b5eab1df", "text": "\u6770\u514b\u548c\u8c46\u830e\u5de8\u4eba\u5728\u592a\u7a7a\u4e2d\uff0c\u5e26\u7740\u5927\u5806\u73b0\u91d1\u3002"} +{"id": "7003803", "video_name": "05446434-ebdf-5c19-bea3-223caee0400f", "text": "\u7e41\u5fd9\u7684\u7ebd\u7ea6\u8857\u9053\uff0c\u5404\u79cd\u5404\u6837\u7684\u4eba\u8d70\u8fc7\uff0c\u827e\u7c73\u4e3d\u548c\u5e93\u9a6c\u5c14\u5408\u4f5c\u5b8c\u6210\u4e00\u4e2a\u9879\u76ee\u3002"} +{"id": "3003585", "video_name": "40981b4a-2f54-5a0a-b92d-f4c07cb8def0", "text": "\u672a\u6765\u4e3b\u4e49\u6838\u80fd\u5728\u591c\u665a\u52a0\u70ed\u5e76\u53d1\u51fa\u5149\u8292\u3002"} +{"id": "1004922", "video_name": "5afd7350-885d-5546-9869-a1fdf4360c9d", "text": "\u4e00\u4e2a\u89c6\u9891\u91cc\u7684\u8036\u7a23\u548c\u51ef\u897f\u00b7\u9a6c\u65af\u683c\u96f7\u592b\u65af\u5728\u5a5a\u793c\u796d\u575b\u4e0a\u3002\u4ed6\u4eec\u76f8\u4e92\u6ce8\u89c6\u7740\uff0c\u624b\u7275\u624b\uff0c\u5e76"} +{"id": "8002757", "video_name": "621e03bc-4885-5f6a-8e35-9c6db9fc1554", "text": "\u4e00\u4e2a\u98ce\u683c\u7c7b\u4f3c\u54c8\u5229\u6ce2\u7279\u7684\u7eb9\u7ae0\uff0c\u5c55\u793a\u589e\u6750\u5236\u9020\u5143\u7d20\u3002"} +{"id": "0005047", "video_name": "13b75eba-e1a9-5f3b-aaf9-1732bde6ce96", "text": "\u8d85\u903c\u771f\u76848K\u91d1\u8272\u548c\u68d5\u8272\u3002\u4e00\u4f4d\u9577\u8457\u91d1\u8272\u9577\u9aee\u7684\u5973\u4eba\u8eba\u5728\u4e00\u500b\u88dd\u98fe\u7c21\u55ae\u7684\u623f"} +{"id": "3004719", "video_name": "d08c9a82-c42e-55ab-956e-a095fe7b7aec", "text": "\u4e00\u4e2a\u7537\u4eba\u5f00\u5fc3\u5730\u6d4f\u89c8\u624b\u673a\u3002"} +{"id": "2003735", "video_name": "186c3b73-730f-5ae4-aa2d-2ba1f8f06288", "text": "\u9ed1\u6697\u9a91\u58eb\u5d1b\u8d77\u4e2d\u7684\u54c8\u7ef4\u5229"} +{"id": "3003992", "video_name": "cb139b09-9d9d-5783-b634-1eb2c5fe01c4", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u59bb\u5b50\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c\u5929\u7a7a\u662f\u84dd\u8272\u7684\uff0c\u7eff\u8272\u7684\u6e38\u4e50\u573a\u3002"} +{"id": "2005505", "video_name": "e2597de1-05b0-52bc-833f-b7f1242cb819", "text": "\u4e00\u5bb6\u5531\u7247\u5e97\uff0c\u5145\u6ee1\u4e86\u78c1\u5e26\u3001CD\u548c\u5404\u79cd\u5531\u7247\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005033", "video_name": "eafb0313-e1ec-5e5c-8011-c4da97c7e440", "text": "\u6751\u5e84\u53d8\u6210\u4e86\u4e00\u4e2a\u66f4\u6709\u540c\u60c5\u5fc3\u548c\u5173\u7231\u7684\u793e\u533a\u3002"} +{"id": "0006669", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "\u7a7f\u7740\u8863\u670d\u7684\u5973\u5b69\u5728\u53a8\u623f\u6d17\u7897\u3002"} +{"id": "3004675", "video_name": "b9aabda3-f788-5925-858a-13e2be31fac1", "text": "\u4e00\u8f86\u8f7d\u7740\u6c7d\u8f66\u4ece\u6d77\u6e2f\u51fa\u53d1\u4e0a\u8def\u7684\u5361\u8f66"} +{"id": "0003148", "video_name": "381067cb-a848-5252-922b-793835c0164f", "text": "\u4e00\u53ea\u5c0f\u72ee\u5b50\u5728\u4f53\u80b2\u573a\u91cc\u5486\u54ee\uff0c\u5915\u9633\u4e0b\uff0c4K\uff0c\u9ad8\u6e05\u3002"} +{"id": "6003623", "video_name": "97fc36b1-626f-5476-8cea-5014b4880267", "text": "\u4e00\u9897\u8d85\u65b0\u661f\u521b\u9020\u4e86\u4e00\u4e2a\u65b0\u5b87\u5b99\uff0c\u5373\u5927\u7206\u70b8\u3002"} +{"id": "2004490", "video_name": "db517d9d-e480-5e59-b807-a2fff70116b5", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u4e2d\u62b1\u7740\u81ea\u5df1\u7684\u80f8\u53e3\uff0c\u56e0\u4e3a\u4e00\u79cd\u4e0d\u5bfb\u5e38\u7684\u75bc\u75db\u800c\u611f\u5230\u75db\u82e6\u3002"} +{"id": "0006583", "video_name": "2f01f8b6-2658-5205-af9b-ca5ba25f8458", "text": "\u4e00\u4e2a\u7537\u4eba\u63a5\u542c\u7535\u8bdd\uff0c\u7136\u540e\u5728\u79c1\u4eba\u623f\u95f4\u91cc\u8bb2\u8bdd\u3002"} +{"id": "5001091", "video_name": "f4619650-1035-592b-b330-9b9946252483", "text": "1968\u5e74\u7684\u4f0d\u5fb7\u65af\u6258\u514b\u97f3\u4e50\u8282\uff0c\u4eba\u4eec\u5728\u660e\u5a9a\u7684\u9633\u5149\u4e0b\u7a7f\u8fc7\u4e00\u5ea7\u5c71\u4e18\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u9053\u5de8\u5927"} +{"id": "2005128", "video_name": "1144f837-53f7-5093-9228-0a625e47dee4", "text": "\u8bf7\u5e2e\u6211\u8ba9\u56fe\u7247\u4e2d\u7684\u53f6\u5b50\u6162\u6162\u79fb\u52a8\u3002"} +{"id": "7002523", "video_name": "cd44243d-f9c0-5e3f-941e-3bcad3f18b54", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u8df3\u7740\u677e\u9732\u6d3e\u5bf9\u821e\u3002"} +{"id": "6004418", "video_name": "40b6f793-4c7b-5032-a5a9-e6d465364041", "text": "\u4e00\u4e2a\u4f01\u9e45\u5361\u901a\u5f62\u8c61\uff0c\u5934\u4e0a\u653e\u7740\u4e00\u672c\u4e66\uff0c\u8bd5\u56fe\u5411\u77f3\u5934\u89e3\u91ca\u4e8b\u60c5\u3002 \n\nSource sentence: I like to eat pizza with lots of cheese and pepperoni on top."} +{"id": "5001124", "video_name": "38176de2-1e00-5f3a-94b4-21aa12e95b45", "text": "\u4e00\u4e2a\u9e1f\u548c\u4e00\u4e2a\u98ce\u7b5d\u5728\u591a\u4e91\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "6002219", "video_name": "5868d102-b791-5eaf-bd65-7149945566cc", "text": "\u4e00\u5bb6\u4f4d\u4e8e\u5c71\u4e0a\u7684\u8d85\u5e02\u6b65\u9053\u4e0a\uff0c\u4eba\u4eec\u63a8\u7740\u8d2d\u7269\u8f66\u8d2d\u7269\u3002"} +{"id": "6004510", "video_name": "95f6dd13-e4ac-5e9e-962f-bf8f4fc22979", "text": "\u5448\u73b0\u591a\u4e2a\u89d2\u5ea6 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "4003148", "video_name": "a526d589-2a7b-5e50-a95f-d4b2e7818c26", "text": "\u4e2d\u56fd\u516c\u53f8\u63a8\u51fa\u4e86\u4e00\u4e2a\u4f1f\u5927\u7684\u8ba1\u5212\u3002"} +{"id": "4002837", "video_name": "b7a91c3f-d769-5bac-a7a4-5d03094473de", "text": "\u9177\u70ab\u7684\u52a8\u6f2b\u7537\u5b50\u6253\u51fb\u6a31\u82b1\u6811\u3002 \n\nSource sentence: I love eating spicy food, but sometimes it's too hot for me to handle. \n\n\u6211\u559c\u6b22"} +{"id": "3006252", "video_name": "590b9950-be70-55f0-947b-f9749205ce0e", "text": "\u6811\u6728\u4ece\u5730\u9762\u751f\u957f\uff0c\u5728\u591c\u665a\u5448\u5361\u901a\u98ce\u683c\u3002"} +{"id": "4002257", "video_name": "6484fa15-0e4f-5562-844f-85e797c48c2c", "text": "\u4e00\u8f86\u6551\u62a4\u8f66\u4ece\u5929\u4e0a\u5760\u843d\uff0c\u540e\u95e8\u6253\u5f00\uff0c\u4e00\u53ea\u718a\u6389\u4e86\u4e0b\u6765\uff0c\u5410\u51fa\u4e86\u7cd6\u679c\u3002"} +{"id": "1005702", "video_name": "68d8834d-202c-5c7f-acb7-5c722e996612", "text": "\u4e00\u7247\u5361\u901a\u53f6\u5b50\uff0c\u6709\u4e24\u53ea\u773c\u775b\uff0c\u7a7f\u7740\u7ea2\u8272\u7684\u6597\u7bf7\uff0c\u80cc\u666f\u662f\u5361\u901a\u5f0f\u7684\u8857\u9053\u548c\u5efa\u7b51\u7269\uff0c\u5206"} +{"id": "8001636", "video_name": "d83a5bc1-5c60-5421-b257-6f98f7c3f9e9", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u7535\u8bdd\u91cc\u4e0e\u67d0\u4eba\u4ea4\u8c08\uff0c\u767d\u5bab\u529e\u516c\u5ba4\u7684\u80cc\u666f\u3002"} +{"id": "6003993", "video_name": "bbb4221a-5607-5f78-af12-1a30c4dc3e6d", "text": "\u4e9a\u9a6c\u900a\u7684\u5931\u843d\u90e8\u843d\u3002"} +{"id": "1006213", "video_name": "71edfab7-1a79-5136-9856-3e87d199ee05", "text": "\u5728\u4e00\u4e2a\u5c0f\u800c\u7e41\u534e\u7684\u57ce\u9547\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u597d\u5947\u7684\u5e74\u8f7b\u7537\u5b69\u963f\u91cc\u3002\u5236\u4f5c3D\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "4002579", "video_name": "9aa7b4b2-a3f1-5762-8a30-d074d4de92e1", "text": "\u5730\u4e2d\u6d77\u4e61\u6751\u4e0b\u6e05\u6f88\u7684\u84dd\u5929\u4e0b\u6709\u6a58\u5b50\u6811\u7684\u679c\u56ed\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "3005791", "video_name": "63f03904-22ea-5c82-8d33-2e018360af24", "text": "\u4e00\u4e2a\u626d\u66f2\u7684\u73bb\u7483\u623f\u95f4\u91cc\uff0c\u6697\u7ea2\u8272\u7684\u9633\u5149\u5c04\u5165\u5176\u4e2d\u3002"} +{"id": "1003683", "video_name": "43ea299d-a741-5ee6-9c5a-aa5aef9446c0", "text": "\u521b\u9020\u5177\u6709\u89c6\u89c9\u5438\u5f15\u529b\u7684\u56fe\u5f62\uff0c\u8bf4\u660e\u7ea4\u7ef4\u5bf9\u6d88\u5316\u548c\u4f53\u91cd\u7ba1\u7406\u7684\u76ca\u5904\u3002"} +{"id": "7002192", "video_name": "72607b12-2c1c-5a18-b9be-f4d99a5cd706", "text": "\u73b0\u5728\u7ee7\u7eed\u4e0a\u9762\u7684\u573a\u666f\uff0c\u4ecb\u7ecd\u53d1\u5c55\u969c\u788d\u7684\u6982\u5ff5\u548c\u513f\u7ae5\u53ef\u80fd\u9762\u4e34\u7684\u8ba4\u77e5\u6311\u6218\u3002"} +{"id": "6004896", "video_name": "9a743a9c-f716-5674-8d3c-a4b1e026b2f2", "text": "\u68ee\u6797\u91cc\u7684\u591c\u96e8\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u62c9\u4e01\u7537\u5b50\u7ad9\u5728\u90a3\u91cc\u770b\u7740\uff0c\u76f8\u673a\u6162\u6162\u540e\u9000\uff0c\u7535\u5f71\u6548\u679c\uff0c4K\u3002"} +{"id": "2004833", "video_name": "1865177d-0ad2-5c24-914b-df82757cccff", "text": "\u5706\u5f62\u8bf4\u8bdd\u7684\u9762\u5305\u50cf\u300a\u745e\u514b\u548c\u83ab\u8482\u300b\u4e00\u6837\u6cbf\u7740\u8857\u9053\u5954\u8dd1\u3002"} +{"id": "2005656", "video_name": "2edf6b3d-6ca0-5dc0-b38d-6232223da316", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u53e4\u4ee3\u5973\u6027\u5728\u4e1b\u6797\u4e2d\u4e0e\u7537\u5b50\u6c14\u6982\u7684\u56fd\u738b\u4ea4\u8c08\u3002"} +{"id": "1003570", "video_name": "41de3af7-ccde-5772-a635-0801a8f27ceb", "text": "\u4e00\u7fa4\u72d7\u88ad\u51fb\u4e86\u4e00\u4e2a\u7ad9\u5728\u53e4\u5e99\u524d\u7684\u76f2\u7ae5\u3002"} +{"id": "2007451", "video_name": "2447989c-ed2b-5acb-989c-171d4d7120da", "text": "\u4e00\u6761\u9ed1\u8272\u7684\u5de8\u86c7\uff0c\u5728\u4e1b\u6797\u591c\u665a\u7684\u66b4\u96e8\u96f7\u96e8\u4e2d\uff0c\u4e94\u4e2a\u9762\u5b54\u4ee4\u4eba\u5bb3\u6015\u3002"} +{"id": "0005981", "video_name": "245ac92c-544e-5680-8fdd-4f21abecb0e0", "text": "\u4e00\u8f86SUV\u6c7d\u8f66\u5728\u5c4f\u5e55\u4e0a\u4eceA\u70b9\u9a76\u5411B\u70b9\u3002"} +{"id": "1005119", "video_name": "5e66cdec-f088-5b6a-b660-cb99e85c3826", "text": "\u65e5\u843d\u7eff\u8272\u666f\u8272\uff0c\u6709\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "7003573", "video_name": "4b8f79da-1235-50ba-a8cc-3bc8e9c58111", "text": "\u4e00\u53ea\u8682\u8681\u8f9b\u82e6\u5730\u80cc\u7740\u4e00\u9897\u7389\u7c73\u7ecf\u8fc7\uff0c\u5b83\u6b63\u8981\u628a\u5b83\u5e26\u56de\u8682\u8681\u5de2\u3002"} +{"id": "4003693", "video_name": "b987556c-a551-5799-ba01-b9486f35218b", "text": "\u5e74\u8f7b\u7684\u517d\u533b\u5973\u5b50\uff0c\u62e5\u6709\u76f4\u76f4\u7684\u6d45\u68d5\u8272\u5934\u53d1\uff0c\u88ab\u52a8\u7269\u5305\u56f4\u5728\u5de5\u4f5c\u4e2d\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "1005855", "video_name": "6bb7f3d5-bd7a-5bb5-b91c-482d3239eee8", "text": "\u5341\u51e0\u5c81\u7684\u739b\u4e3d\u00b7\u5b89\u6258\u74e6\u5185\u7279\u5728\u51e1\u5c14\u8d5b\u5bab\u5185\u53c2\u52a01980\u5e74\u4ee3\u7684\u6709\u6c27\u8fd0\u52a8\u8bfe\u7a0b\uff0c\u8df3\u8dc3\u548c\u953b"} +{"id": "1005976", "video_name": "6dd24dc9-b391-51bf-8e13-62b7a9a0e674", "text": "\u5728\u4e00\u7247\u7f8e\u4e3d\u7684\u4e1b\u6797\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u5154\u5b50\uff0c\u4ed6\u4eec\u662f\u6700\u597d\u7684\u670b\u53cb\u3002"} +{"id": "4003586", "video_name": "3008225b-d1f4-5ad6-84b0-3a24e15cd1b9", "text": "\u5973\u4eba\u5fae\u7b11\uff0c\u4ee5\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u7684\u98ce\u683c"} +{"id": "1004687", "video_name": "570cb4aa-54c7-51b1-bab8-14c2f5a408de", "text": "\u5c55\u793a\u4e00\u53ea\u52a8\u753b\u9ed1\u7329\u7329\u4f7f\u7528\u68cd\u5b50\u4ece\u8702\u7a9d\u91cc\u53d6\u871c\uff0c3D\u52a8\u753b\u3002"} +{"id": "3003387", "video_name": "cf632e77-30ea-5f87-b62d-8f883d9e50ac", "text": "\u4e00\u8f86\u98de\u884c\u6c7d\u8f66\uff0c\u80cc\u666f\u662f\u300a\u54c8\u5229\u00b7\u6ce2\u7279\u300b\u4e2d\u7684\u970d\u683c\u6c83\u8328\u3002"} +{"id": "3003766", "video_name": "8119542c-9663-59d4-a7bd-fc05a4163d92", "text": "\u7279\u65af\u62c9\u6c7d\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u7684\u6700\u9ad8\u901f\u5ea6\u3002"} +{"id": "2004810", "video_name": "e730652b-f0d5-5dbe-9fec-08167469320c", "text": "\u7537\u4eba\u5411\u80cc\u666f\u8d70\u53bb\uff0c\u7f13\u6162\u62c9\u8fd1\u955c\u5934\u3002"} +{"id": "4003146", "video_name": "72c31795-2e0a-54dc-a8cb-6eb49067c99a", "text": "\u4e00\u4e2a\u91d1\u53d1\u84dd\u773c\u775b\u7684\u5973\u5b69\uff0c\u5e26\u6709\u8c79\u5b50\u8033\u6735\u548c\u8c79\u5c3e\u5df4\uff0c\u548c\u4e00\u4e2a\u6a59\u53d1\u7eff\u773c\u775b\u3001\u72d0"} +{"id": "7003190", "video_name": "faf462ce-2613-53b5-961a-875c8af261e4", "text": "\u89c6\u9891\uff0c\u597d\u5e74\u8f6e\u98de\u8247\uff0c\u95ea\u70c1\u7740\u201c\u6cf0\u5fb7\u666e\u83b1\u514b\u65af\u201d\u7684\u6807\u5fd7\u3002"} +{"id": "7002456", "video_name": "d1e39d98-7628-5aa4-b156-073320459bf6", "text": "\u592a\u9633\u7cfb\u4e2d\u7684\u6240\u6709\u884c\u661f\u4e00\u4e2a\u63a5\u4e00\u4e2a\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\u3002"} +{"id": "7002772", "video_name": "5b2900d2-938a-5693-b9d9-95020a0c7aec", "text": "\u521b\u5efa\u5730\u56fe\u4ecb\u7ecd\u3002"} +{"id": "3004231", "video_name": "d60fbbe3-59ac-5342-afcc-401750728e0c", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u3002\u52a8\u6001\u3002\u4e00\u540d\u7559\u7740\u80e1\u987b\u7684\u7537\u5b50\u5728\u6709\u96fe\u7684\u68ee\u6797\u91cc\u8d70\u8def\u3002"} +{"id": "4003816", "video_name": "17484793-1570-52da-9f03-4fa2c3f733bf", "text": "\u975e\u6d32\u7684\u666f\u8c61\u7531\u65e0\u4eba\u673a\u8bb0\u5f55\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "8001525", "video_name": "a5c81db7-07bf-5caa-8d81-79d155d8ebce", "text": "\u7eff\u8272\u7684\u949e\u7968\u548c\u5927\u9ebb\u53f6\u5b50\u843d\u5728\u4e00\u4e2a\u6709\u9ea6\u9999\u9762\u5305\u5757\u7684\u6c99\u62c9\u4e0a\u3002"} +{"id": "4002777", "video_name": "3ba92d31-b861-541f-af19-660ac7a3c133", "text": "\u9e7f\u975e\u5e38\u9ad8\u5174\u5e76\u611f\u8c22\u4e4c\u9f9f\u3002"} +{"id": "3006851", "video_name": "2a161293-1e55-5d5c-814f-3ae44ea09d48", "text": "\u5728\u591c\u89c6\u6444\u50cf\u673a\u7684\u62cd\u6444\u4e0b\uff0c\u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u5728\u6811\u6797\u4e2d\u7528\u7535\u952f\u4e0e\u50f5\u5c38\u640f\u6597\u3002"} +{"id": "3006726", "video_name": "45117676-1938-5d8a-981c-8a811df8ccff", "text": "\u4e00\u4e2a\u8ff7\u4eba\u7684\u5f00\u573a\u573a\u666f\uff0c\u5c55\u73b0\u4e86\u84dd\u8272\u548c\u5e73\u9759\u7684\u6d77\u6d0b\u7f8e\u666f\uff0c4K\u3002\n\nSource sentence: The museum houses a vast collection of ancient artifacts and works of art from around the"} +{"id": "5001265", "video_name": "2af3e5ee-6ed5-5ede-9330-33800fdc3cc7", "text": "\u4ed3\u5e93\u5185\uff0c\u4e24\u540d\u9ed1\u5e2e\u6210\u5458\u88ab\u6740\u3002\u8d5b\u535a\u670b\u514b\uff0c\u79d1\u5e7b\u7535\u5f71\u300290\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "0006310", "video_name": "2a77dca6-2963-509e-a6ae-13e49f50fbdd", "text": "\u62c9\u65af\u7ef4\u52a0\u65af\u7403\u4e2d\u7684\u5730\u7403\u3002"} +{"id": "0005760", "video_name": "20c0b9f8-525d-5adf-87fb-ffcdaff7f162", "text": "\u62c9\u6731\u548c\u4ed6\u7684\u7236\u4eb2\u4e00\u8d77\u5728\u7530\u5730\u91cc\u5de5\u4f5c\uff0c\u6536\u83b7\u4e86\u4e30\u6536\u7684\u5e84\u7a3c\u3002"} +{"id": "8002106", "video_name": "7704e9d4-1c72-5c18-bf3e-05322a6a5a99", "text": "\u5154\u5b50\u5b69\u5b50\u7684\u5361\u901a\u7247\u5728\u975e\u6d32\u7684\u4e1b\u6797\u91cc\uff0c\u5e0c\u671b\u80fd\u591f\u77a5\u89c1\u90a3\u4e9b\u5904\u5883\u56f0\u96be\u7684\u52a8\u7269\u4eec\u3002"} +{"id": "3004808", "video_name": "8a872474-f7f6-5c06-a765-a5026a393588", "text": "\u963f\u6ce2\u7f57\u767b\u6708\u91ce\u9910\uff0c\u903c\u771f\u7684\u5916\u89c2\u3002"} +{"id": "4003727", "video_name": "c3fff391-7135-5a17-9b28-643ff79b9f15", "text": "\u7535\u5f71\u4e2d\u7684\u8def\u897f\u6cd5\u82f1\u4fca\uff0c\u6709\u7740\u5de8\u5927\u7684\u71c3\u70e7\u7fc5\u8180\uff0c\u5728\u89c2\u4f17\u9762\u524d\u5e7f\u9614\u7684\u753b\u9762\u4e2d\uff0c16\uff1a9\u6444"} +{"id": "0005628", "video_name": "1e56af74-b6de-5bf4-9c35-97a1ae47603e", "text": "\u5728\u5df4\u9ece\uff0c\u80cc\u666f\u662f\u827e\u83f2\u5c14\u94c1\u5854\uff0c\u4e00\u4f4d\u7c89\u8272\u5934\u53d1\u7684\u5973\u58eb\u5728\u559d\u5496\u5561\u3002"} +{"id": "1005517", "video_name": "659555b0-4ed4-5908-854f-020f3cd9570b", "text": "\u533b\u751f\u5750\u5728\u4ed6\u7684\u684c\u5b50\u524d\uff0c\u62ff\u8d77\u4e00\u672c\u4e66\u5e76\u6253\u5f00\u5b83\u3002"} +{"id": "0005611", "video_name": "1df94860-da4a-55a8-a419-541ca92d7f76", "text": "\u4ecb\u7ecd\u6211\u4eec\u7684\u9ad8\u7ea7\u7f8e\u4e43\u6ecb\uff1a\u4e00\u4e2a\u5728\u5149\u6ed1\u73bb\u7483\u7f50\u4e2d\u7684\u70f9\u996a\u7f8e\u98df\u3002\u8fd9\u4e2a\u8c03\u5473\u54c1\u6770\u4f5c\u62e5\u6709"} +{"id": "6002652", "video_name": "a8dd9919-3fb2-5dba-b298-658f5607aeec", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a\u5ba3\u4f20\u89c6\u9891\uff0c\u6211\u662f\u5973\u6027\u8dd1\u6b65\u56e2\u4f53\u6559\u7ec3\u3002"} +{"id": "7004536", "video_name": "94890894-21c7-5a5a-bf18-76a98242e0a3", "text": "\u8fd9\u4e2a\u65f6\u671f\u88ab\u79f0\u4e3a\u5df4\u52d2\u65af\u5766\u7684\u82f1\u56fd\u6258\u7ba1\u5730\u65f6\u671f\u3002"} +{"id": "2003756", "video_name": "36368bea-e0bc-5098-a309-a34d71a7d293", "text": "\u71c3\u70e7\u7684\u58c1\u7089\uff0c\u5973\u5b69\u5199\u4f5c\u3002\u5c55\u793a\u5e74\u8f7b\u5973\u5b69\u5750\u5728\u6728\u684c\u524d\uff0c\u8eab\u65c1\u5806\u653e\u7740\u4e00\u5806\u4e66\u3002\u663e\u793a"} +{"id": "4004376", "video_name": "cf83b112-f985-5fac-b5f1-37189b8b9bd7", "text": "Vogue Runway\u62cd\u6444\uff0c\u57c3\u53ca\u6a21\u7279\u5728\u7f51\u7403\u573a\u4e0a\u8d70\u79c0\uff0c\u8fd0\u52a8\u65f6\u5c1a\u7cfb\u5217\uff0c\u7a7f\u7740\u6d6a\u6f2b\u7684\u8fd0\u52a8\u5185\u8863\uff0c\u81ea\u7136\u65e5"} +{"id": "3004846", "video_name": "741b321d-5a07-5cb5-a499-1826c97a7ee1", "text": "\u60b2\u4f24\u7684\u53cd\u4e4c\u6258\u90a6\u673a\u5668\u4eba\uff0c\u5168\u8eab\u7167\uff0c\u53cc\u81c2\u4f38\u5c55\u5230\u4e24\u4fa7\uff0c\u76f4\u63a5\u9762\u5bf9\u955c\u5934\u3002\u5728\u767d\u8272\u80cc\u666f\u4e0b"} +{"id": "7004539", "video_name": "b8c604e2-e21e-5a7e-b8ad-78c9fe9414f6", "text": "\u6b22\u8fce\u6765\u5230\u9891\u9053\u4ecb\u7ecd\u89c6\u9891\u7684\u5236\u4f5c\u3002 \n\nSource sentence: The conference will be held in Shanghai on November 15th. \n\u4f1a\u8bae\u5c06\u4e8e11\u670815\u65e5\u5728\u4e0a\u6d77\u4e3e\u884c\u3002"} +{"id": "1004469", "video_name": "52cdebfa-0dcb-5990-95f0-8b3f4db55433", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u8f66\u7978\u4e2d\u53bb\u4e16\uff0c\u4e3e\u529e\u4e86\u5979\u7684\u846c\u793c\u3002"} +{"id": "0006083", "video_name": "26619ad1-423a-580f-a4a2-aa6c68116852", "text": "\u5728\u9ed1\u8272\u7684\u7a7a\u95f4\u80cc\u666f\u4e0a\uff0c\u4e00\u4e2a\u7ecf\u5178\u7684\u65cb\u8f6c\u5730\u7403\u4eea\u4e16\u754c\u5730\u56fe\u914d\u6709\u65f6\u5c1a\u7684\u4eae\u4e3d\u62bd\u8c61\u84dd\u8272\u9713\u8679\u591a"} +{"id": "2005388", "video_name": "aa8da54e-f77c-5685-816b-a246ec56ad62", "text": "\u5370\u7b2c\u5b89\u7eb3\u00b7\u743c\u65af\u5728\u7535\u5f71\u7ed3\u5c3e\u9009\u62e9\u9ec4\u91d1\u94fe\u800c\u4e0d\u662f\u676f\u5b50\u3002"} +{"id": "7003442", "video_name": "8010c775-d703-577e-a182-05703757f78a", "text": "\u7537\u4eba\u5728\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\u91cc\u9192\u6765\uff0c\u7a97\u5e18\u62c9\u4e0a\uff0c\u7a81\u51fa\u4e86\u4ed6\u5728\u5bb6\u5ead\u4e2d\u7684\u5b64\u72ec\u3002\u4ed6\u5934\u53d1\u51cc\u4e71"} +{"id": "4004781", "video_name": "a0b03dcc-c517-5c66-a9ac-07fda83b20b1", "text": "Synoplex \u50cf G6 \u4e00\u6837\u7684\u65b0\u5e97"} +{"id": "2007804", "video_name": "99509cbd-2985-583a-9e89-048855418dd8", "text": "\u4e00\u68f5\u5b64\u72ec\u7684\u68d5\u6988\u6811\uff0c\u5728\u5fae\u98ce\u4e2d\u6447\u66f3\uff0c\u6210\u4e3a\u5915\u9633\u7684\u9ed1\u8272\u526a\u5f71\u3002"} +{"id": "0005496", "video_name": "1bda2806-c570-5fc0-a67b-08528c38ccd2", "text": "\u4e00\u4e2a\u4eba\u6709\u4e00\u4e2a\u7075\u5149\u4e00\u95ea\u7684\u77ac\u95f4\u3002"} +{"id": "2006235", "video_name": "4371420e-1631-5123-b559-0c5b6c0a7230", "text": "\u4e00\u5934\u725b\u548c\u4e00\u53ea\u72ee\u5b50\u5728\u4e00\u4e2a\u5171\u7528\u7684\u76c6\u91cc\u4e92\u76f8\u5bf9\u89c6\u7740\u559d\u6c34\u3002"} +{"id": "2003941", "video_name": "3931f3fc-9f8c-5a7f-969f-ec4379641649", "text": "\u5bcc\u6709\u7684\u7537\u4eba\u5728\u8c6a\u5b85\u4e2d\u6f2b\u6b65\uff0c\u7535\u5f71\u822c\u7684\u6444\u5f71\u624b\u6cd5\u3002"} +{"id": "2006843", "video_name": "ba63dad4-6f6a-5654-9792-3d4a6bdcf69a", "text": "\u5e7f\u89d2\u9ec4\u8272\u548c\u7ea2\u8272\u7684\u5929\u7a7a\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u670d\u88c5\u7684\u7537\u4eba\u72ec\u81ea\u7ad9\u5728\u9762\u5411\u6d77\u6ee9\u7684\u80cc\u666f\u4e2d\u62cd\u6444\u3002"} +{"id": "1006937", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "\u957f\u77db\u51b2\u5929\u98de\u821e\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u513f\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2003118", "video_name": "1f587edc-eb2c-566d-a3c5-ccef9d94a57b", "text": "\u5feb\u901f\u65cb\u8f6c\u7684\u7acb\u65b9\u4f53\u5728\u6a59\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "0004198", "video_name": "04d84be7-d965-5a9c-94ba-1c1e295eb5db", "text": "\u7535\u5f71\u822c\u7684\u89d2\u5ea6\uff0c\u751f\u6c14\u7684\u5546\u4eba\u6325\u52a8\u4ed6\u7684\u624b\u81c2\uff0c\u4ed6\u9762\u5411\u4e00\u4e9b\u516c\u53f8\u5458\u5de5\u3002"} +{"id": "2007256", "video_name": "00b19367-67fb-58d2-ab7f-364cc59cff26", "text": "\u5965\u6587\u00b7\u5a01\u5c14\u900a\u832b\u7136\u5730\u770b\u7740\u6444\u50cf\u673a\uff0c\u62ff\u8d77\u4e00\u4e2a\u76d8\u5b50\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "2006354", "video_name": "4cbd5498-7d05-552c-a488-a9dc458bd88d", "text": "\u6050\u6016\u7247\u4ee524\u5e27\u6bcf\u79d2\u7684\u901f\u5ea6\u64ad\u653e\u30028K \u7535\u5f71\u5236\u4f5c\u3002"} +{"id": "2006661", "video_name": "90ad6dba-a942-5f83-b780-6ef7b551b4dc", "text": "\u7535\u5f71\u5316\u7684\u3002\u6124\u6012\u7684\u8868\u60c5\u3002\u5bf9\u8bdd\u8bf4\u8bdd\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "1006271", "video_name": "72d032fa-edc6-5484-8687-a9a3deb602bd", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u90a3\u6b63\u5728\u5448\u73b0\u51fa\u5b87\u5b99\u5f62\u6001\u3002\u4ece\u5c0f\u5230\u5927\uff0c\u4ed6\u6210\u957f\u4e86\u3002"} +{"id": "1004521", "video_name": "54017692-9c1d-5cff-8892-e2d4a9f4fc11", "text": "\u81ea\u7531\u57ce\u88ab\u9668\u77f3\u6467\u6bc1\u7684\u707e\u96be\u7535\u5f71\u573a\u666f\u3002"} +{"id": "2006437", "video_name": "d5de8895-454b-5bf2-8229-6492a05be102", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u661f\u9645\u6218\u8230\u51fa\u73b0\u5728\u4e0a\u6d77\u5916\u6ee9\u4e0a\u65b9\u3002"} +{"id": "2007395", "video_name": "c88e3e2b-6e7c-5bcc-aed0-f129e59c765d", "text": "1992\u5e74\u96ea\u4f5b\u5170\u5361\u739b\u7f57SR\u6c7d\u8f66\u65cb\u8f6c\u7684\u8f66\u8f6e\u3002"} +{"id": "4003947", "video_name": "1fc70db0-739f-526e-a22e-e3f0c3f157a1", "text": "\u751c\u7f8e\u7684\u8d35\u5bbe\u72ac\u62e5\u6709\u8ff7\u4eba\u7684\u5916\u8868\uff0c\u53ea\u6709\u9ed1\u8272\u7684\u7ec6\u7ebf\u52fe\u52d2\uff0c\u6241\u5e73\u7684\u8bbe\u8ba1\u9002\u5408\u73a9\u5bb6\u89d2\u8272\u3002"} +{"id": "2007098", "video_name": "07fbfdfa-9f4f-5bd2-bd70-febb234eb2d2", "text": "\u9ed1\u6697\u4e2d\u7684\u76f8\u673a\u7f13\u7f13\u9760\u8fd1\u4e00\u9876\u6234\u6ee1\u51dd\u6ef4\u6c34\u73e0\u7684\u73bb\u7483\u9762\u7f69\u5934\u76d4\uff0c\u900f\u8fc7\u73bb\u7483\u53ef\u4ee5"} +{"id": "3006268", "video_name": "88046355-7bb3-5307-81db-024f4c8e0918", "text": "\u98de\u7fd4\u7684\u8001\u9e70\u3002\u4fef\u89c6\u666f\u8c61\u3002\u8001\u9e70\u4e0b\u65b9\u662f\u8857\u9053\u4e0a\u6324\u6ee1\u4e86\u4eba\u7684\u53e4\u7f57\u9a6c\u3002 \n\nSource sentence: I am learning Chinese"} +{"id": "4002334", "video_name": "3237ce37-53a2-519d-a7d2-d9b7026e6595", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u8d70\u5728\u8def\u706f\u4e0b\u3002"} +{"id": "0005705", "video_name": "1fd9b042-a7a0-5e86-ad50-af4b18e4b35a", "text": "\u521b\u5efa\u4e00\u4e2a\u9ed1\u5ba2\u603b\u90e8\u7684\u865a\u5e7b\u5f15\u64ce\u6e32\u67d3\u3002"} +{"id": "1003009", "video_name": "374c43a3-ecc2-53e9-84a0-514659fa724f", "text": "\u4e00\u53ea\u8774\u8776\u5b75\u5316\u5e76\u98de\u8d70\u4e86\u3002"} +{"id": "4003270", "video_name": "55a5cbd9-26ec-5783-8f7a-f900f5ed403e", "text": "\u7535\u5b50\u5546\u52a1\u8d37\u6b3e\uff1a\u901a\u8fc7\u5f15\u4eba\u5165\u80dc\u7684\u4e09\u7ef4\u53ef\u89c6\u5316\u8fdb\u5165\u672a\u6765\u611f\u5341\u8db3\u7684\u5728\u7ebf\u5546\u52a1\u9886\u57df\u3002\u573a\u666f\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5145\u6ee1"} +{"id": "0004096", "video_name": "0326bec8-8ff8-5edf-8604-3d59d16152a8", "text": "\u8001\u864e\u5728\u7011\u5e03\u4e0b\u8d85\u73b0\u5b9e\u7684\u7b3c\u5b50\u91cc\u3002"} +{"id": "2006834", "video_name": "56d577b0-868e-5591-a286-dcd0fc513fcf", "text": "\u4e00\u53ea\u72d7\u4ece\u8fdc\u5904\u8dd1\u7740\u53eb\u7740\u3002"} +{"id": "4003034", "video_name": "3cb85491-0bd1-5cba-927d-fd880e8be165", "text": "\u4ece\u6708\u7403\u4e0a\u770b\u5730\u7403\uff0c\u4f1a\u770b\u5230\u4e00\u5757\u571f\u5730\u50cf\u4e00\u67b6\u76f4\u5347\u673a\uff0c\u53e6\u4e00\u5757\u571f\u5730\u50cf\u4e00\u53ea\u9cc4\u9c7c\u3002"} +{"id": "1003004", "video_name": "37210a64-3aac-5cbe-a783-4a8f9b8fb63d", "text": "\u6211\u5bf9\u6240\u6709\u7684\u5de5\u4f5c\u4eba\u5458\u90fd\u5f88\u7c97\u5fc3\u3002"} +{"id": "5001444", "video_name": "90abaa28-89f6-51f6-b1c2-471f02f26fee", "text": "\u4e09\u4e2a\u5e26\u7740\u9ab7\u9ac5\u9762\u5177\u7684\u7537\u4eba\u8df3\u821e\u3002"} +{"id": "6003217", "video_name": "c7a3841b-19b2-521d-abfe-342575702686", "text": "\u4e00\u4e2a\u5728\u8212\u9002\u53a8\u623f\u91cc\u5207\u83dc\u7684\u573a\u666f\uff0c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u3002"} +{"id": "2003893", "video_name": "37210a64-3aac-5cbe-a783-4a8f9b8fb63d", "text": "\u6211\u5bf9\u6240\u6709\u7684\u5de5\u4f5c\u4eba\u5458\u90fd\u5f88\u7c97\u5fc3\u3002"} +{"id": "0006800", "video_name": "33526f26-8b1c-542c-8bc3-dc5d3049d499", "text": "\u4e00\u4e2a\u5e26\u6709\u597d\u5947\u8868\u60c5\u7684\u53ef\u7231\u677e\u9f20\uff0c\u4ee5\u5361\u901a\u5f62\u5f0f\u5750\u5728\u6811\u679d\u4e0a\u3002"} +{"id": "3003934", "video_name": "ca57e11c-6c14-54ea-89e3-cdac5f61cf1b", "text": "\u4e24\u4e2a\u5973\u5b69\u6700\u7ec8\u5230\u8fbe\u9ed1\u6697\u4e2d\u9501\u94fe\u56fa\u5b88\u7684\u54c8\u8fea\u65af\u4e4b\u5fc3\u7684\u90a3\u4e00\u523b\u3002"} +{"id": "0006849", "video_name": "342c05aa-9648-5e5b-8e03-9cea862d945c", "text": "\u4e00\u4e2a\u8eab\u5f71\u7ad9\u5728\u88ab\u4e07\u82b1\u7b52\u822c\u7684\u989c\u8272\u6240\u7167\u4eae\u7684\u4e16\u754c\u4e2d\uff0c\u6bcf\u79cd\u8272\u8c03\u4ee3\u8868\u7740\u4ed6\u4eec\u5f3a\u5316\u89c6\u529b\u7684\u72ec\u7279\u65b9"} +{"id": "3005663", "video_name": "54571e47-c60f-547e-aa98-33d1681d0238", "text": "\u63cf\u8ff0\u4e00\u4e2a\u5934\u53d1\u51cc\u4e71\u7684\u68d5\u8272\u53d1\u578b\u7684\u4eba\u5728\u672a\u6765\u3001\u6570\u5b57\u589e\u5f3a\u73af\u5883\u4e2d\u8ba8\u8bba\u4e00\u672c\u4e66\u3002\u573a\u666f\u5e94\u8be5\u878d\u5165\u65f6\u5c1a\u7684\u6570\u5b57\u5143\u7d20"} +{"id": "4002648", "video_name": "8272bc8b-0489-56cc-a37d-628f63176895", "text": "\u98ce\u5e06\u51b2\u6d6a\u8005\u5728\u585e\u6d66\u8def\u65af\u7684\u6d77\u4e0a\u9a91\u4e58\u3002"} +{"id": "4003183", "video_name": "ffb2cb96-a58e-5388-8c95-6f1258ec1d1e", "text": "\u8bbe\u8ba1\u7cbe\u7f8e\u7684\u5bb6\u5c45\u5185\u90e8\uff0c\u65f6\u5c1a\u7684\u5ba4\u5185\u88c5\u4fee\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "6003844", "video_name": "0c8f6853-27af-5d57-887c-c7823325b8d8", "text": "\u706f\u5149\u95ea\u8000\uff0c\u66fc\u9640\u7f57\u65cb\u8f6c\uff0c\u8d85\u51e1\u95e8\u6237\u3002"} +{"id": "0003914", "video_name": "45a851fe-0c53-58a1-8bea-3c2bc4ea8072", "text": "\u6253\u5f00\u955c\u5934\uff0c\u6620\u5165\u773c\u5e18\u7684\u662f\u732b\u5934\u9e70\u795e\u5e99\uff0c\u4f9b\u5949\u7740\u8c61\u795e\u3002\u80cc\u666f\u4e2d\u4f20\u6765\u8f7b\u67d4\u7684\u5668\u4e50"} +{"id": "4004996", "video_name": "93f9402c-2407-5478-9304-fe3abcc5d1fd", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u8001\u4eba\u6f2b\u6b65\u8d70\u5411\u53e4\u8001\u7684\u5bfa\u5e99\uff0c\u5468\u56f4\u5f25\u6f2b\u7740\u4e00\u79cd\u9634\u68ee\u7684\u6c14\u6c1b\u3002"} +{"id": "8002903", "video_name": "2081bb94-35a0-55d0-a7fc-dd507cac932a", "text": "\u6770\u68ee\u00b7\u65af\u5766\u68ee\u6b63\u5728\u6492\u94b1\uff0c\u5f88\u591a\u5f88\u591a\u7684\u94b1\u3002"} +{"id": "0005122", "video_name": "1539edf8-56f3-57e0-9408-00d4042c8050", "text": "\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b69\u88ab\u4e09\u4e2a\u670b\u53cb\u5305\u56f4\u7740\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728"} +{"id": "2007984", "video_name": "3e0a44ce-f205-5b0a-8347-374a3a9b1368", "text": "\u519c\u6c11\u8ba9\u4ed6\u5728\u56de\u6765\u540e\u5728\u4ed6\u7684\u82b1\u56ed\u91cc\u79cd\u4e00\u9897\u79cd\u5b50\u3002"} +{"id": "3004956", "video_name": "9345259e-131b-5a31-b1e4-28dbb3e478c2", "text": "\u7b2c\u5341\u4e00\u4efb\u533b\u751f\u9a6c\u7279\u00b7\u53f2\u5bc6\u65af\u9762\u5bf9\u7b2c\u5341\u4e8c\u4efb\u533b\u751f\u5f7c\u5f97\u00b7\u5361\u5e15\u5c14\u8fea\u76844K\u7535\u5f71\u5316\u3002"} +{"id": "2005956", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u60b2\u4f24\u5730\u5173\u4e0a\u4e00\u6247\u8c6a\u534e\u522b\u5885\u7684\u95e8\u3002"} +{"id": "5001062", "video_name": "4b013ec1-7e49-577e-8783-5487d7792638", "text": "\u9e7f\u6b63\u5728\u8def\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003819", "video_name": "ba9c3b1d-d784-561a-abb6-b4a54e074eef", "text": "\u4e00\u4e2a\u4eba\u5728\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\u8d70\u8def\uff0c\u955c\u5934\u6781\u8fdc\u3002"} +{"id": "1004815", "video_name": "5900c4fb-c13d-5c5f-b899-d05ca0d682cd", "text": "\u9f99\uff0c\u8d85\u5e7f\u89d2\uff0c\u805a\u7126\uff0c\u9ed1\u6697\u53f2\u8bd7\u822c\u7684\u80cc\u666f\uff0c\u534e\u4e3d\u903c\u771f\uff0c\u6c89\u95f7\u7684\u91d1\u8272\u6bdb\u53d1\u8bbe\u8ba1\uff0c\u52a8\u6001\u59ff"} +{"id": "8002681", "video_name": "ac9a31e2-003f-5e6b-a362-b1c030f2171e", "text": "\u4e00\u53ea\u770b\u8d77\u6765\u50cf20\u4e16\u7eaa\u7ec5\u58eb\u7684\u732b\u8df3\u821e\u3002"} +{"id": "1004270", "video_name": "4f026a92-e069-5987-bfc7-26145e8fd290", "text": "\u4e00\u4e2a\u77f3\u5934\u5929\u82b1\u677f\u548c\u7834\u65e7\u7684\u5c4b\u9876\uff0c\u6709\u539a\u539a\u7684\u9ed1\u8272\u548c\u626d\u66f2\u7684\u6a2a\u6881\uff0c\u5899\u58c1\u4e0d\u518d\u767d\u8272"} +{"id": "7002558", "video_name": "5185db2e-1123-5229-aa12-eb8149e5cd69", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6559\u5ba4\u91cc\u5f88\u7d27\u5f20\u3002"} +{"id": "8002770", "video_name": "00a892c8-6951-53bc-a5e3-eb9e059eb521", "text": "\u4e00\u628a\u65a7\u5934\uff0c\u950b\u5229\u7684\u5200\u7247\u5361\u5728\u6811\u6869\u4e0a\uff0c\u4e0b\u9762\u662f\u4e00\u6ee9\u7ea2\u8272\u7684\u8840\u8ff9\uff0c\u6708\u4eae\u7ec6\u8282\u6e05\u6670\uff0c\u591c"} +{"id": "2006435", "video_name": "4d4ab7fc-2b74-5fe6-b0dc-6fafc9e381b8", "text": "\u6211\u60f3\u8ba9\u5b9d\u5b9d\u52a8\u8d77\u6765\uff0c\u8ba9\u4ed6\u770b\u8d77\u6765\u50cf\u662f\u5728\u9003\u8dd1\u3002"} +{"id": "1003379", "video_name": "3e477c33-d96f-5566-8ba5-7fe6f1c47089", "text": "\u4ed6\u4eec\u5fd9\u788c\u751f\u6d3b\u7684\u613f\u666f\uff0cRizwan\u548cSadia\u5404\u81ea\u4e13\u6ce8\u4e8e\u81ea\u5df1\u7684\u804c\u4e1a\uff0c\u5374\u5728\u5171\u540c\u7684\u62b1\u8d1f\u4e2d\u627e\u5230\u5e73\u8861\u3002"} +{"id": "0006674", "video_name": "30c4d8ae-5e80-5288-9d42-6df9d4636380", "text": "\u6751\u6c11\u7684\u5c38\u4f53\u56e0\u6218\u4e89\u800c\u8eba\u5728\u5730\u4e0a\u3002"} +{"id": "8003310", "video_name": "d6a20ea4-d6a1-5967-bcc3-670c32d7e0e9", "text": "\u591c\u5e97\u4fdd\u5b89\u7ecf\u5e38\u5904\u7406\u51b2\u7a81\u3002\u51b2\u7a81\u89e3\u51b3\u6280\u5de7\u7684\u57f9\u8bad\u5bf9\u4e8e\u548c\u5e73\u89e3\u51b3\u987e\u5ba2\u4e4b\u95f4\u7684\u5206\u6b67\u81f3\u5173\u91cd\u8981\u3002"} +{"id": "1004302", "video_name": "4f8660c8-a1ff-5b27-bb08-f8df7877b1d4", "text": "\u4e00\u7247\u8302\u5bc6\u3001\u751f\u673a\u52c3\u52c3\u7684\u4e1b\u6797\uff0c\u9ad8\u8038\u7684\u6811\u6728\u548c\u5404\u79cd\u52a8\u7269\u4ece\u8349\u4e1b\u4e2d\u63a2\u51fa\u5934\u6765\u3002\u72ee\u5b50\u548c\u8001"} +{"id": "3004437", "video_name": "9de8c3ea-c4e9-5843-959c-6642a6caa69d", "text": "\u5c71\u95f4\u7684\u9ece\u660e\uff0c\u9e70\u7ff1\u7fd4\uff0c\u5b83\u4eec\u7684\u7fbd\u6bdb\u5728\u9633\u5149\u4e0b\u95ea\u8000\uff0c8K\uff0c\u771f\u5b9e\uff0c\u6e05\u6670\u3002"} +{"id": "3004616", "video_name": "b53db4f0-d4db-5a3d-9886-87b323e3c660", "text": "\u4ed6\u5728\u9633\u53f0\u4e0a\u4eab\u53d7\u7740\u5496\u5561\u3002"} +{"id": "1004196", "video_name": "4d92b957-e93b-52cb-a4d6-f9d13ec5377d", "text": "\u63cf\u8ff0\u827e\u739b\u5728\u5c4b\u9876\u9192\u6765\uff0c\u773c\u4e2d\u4ecd\u95ea\u70c1\u7740\u4e00\u4e1d\u9b54\u529b\u3002"} +{"id": "1006862", "video_name": "7d4cdcb2-ffb1-505d-8d13-d4c62d4734f4", "text": "\u4e00\u53ea\u5c0f\u8682\u8681\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u7ea2\u8272\uff0c\u53ef\u7231\uff0c\u8bf4\u8bdd\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "3003987", "video_name": "1813ad4a-0d0d-5b06-9e7a-2d4575c878f8", "text": "\u4e00\u4e2a\u7537\u5b69\u62c9\u7740\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "8002029", "video_name": "8fde8f12-4b8b-55b6-b307-9d4f248b96bf", "text": "\u57281600\u5e74\uff0c\u52d2\u5185\u00b7\u7b1b\u5361\u5c14\u7ad9\u5728\u591c\u665a\u7684\u7a97\u524d\u5199\u5728\u4e00\u5f20\u7eb8\u4e0a\u3002"} +{"id": "7004211", "video_name": "3951dbbd-4070-5efe-a79c-ece885f5a1b2", "text": "\u4e00\u4e2a\u8001\u4eba\u624b\u62ff\u51ef\u62dc\u7279\u7535\u52a8\u526a\u5200\u4fee\u526a\u82f9\u679c\u6811\u3002"} +{"id": "0003691", "video_name": "41c04736-208d-5685-9832-e4635751d34d", "text": "\u4e00\u53ea\u7f8e\u56fd\u77ed\u6bdb\u732b\uff0c\u9760\u8fd1\u955c\u5934\uff0c\u773c\u795e\u597d\u5947\u5730\u95fb\u7740\u5de6\u53f3\u7684\u6c14\u5473\uff0c\u7136\u540e\u55b5\u55b5\u53eb\u3002"} +{"id": "2006221", "video_name": "dacff108-104d-56f0-bca6-d3ee06fd5765", "text": "\u65e5\u672c\u8f6e\u6905\u7537\u5b50\uff0c\u7728\u773c\u5e76\u8bf4\u8bdd\uff0c\u52a8\u753b"} +{"id": "2003054", "video_name": "4eada02a-8602-511b-a3f6-c6f557eda919", "text": "\u706f\u5149\u95ea\u70c1\uff0c\u5973\u4eba\u4ece\u5f3a\u70c8\u7684\u7ea2\u5149\u4e2d\u95ea\u8000\u3002"} +{"id": "2006284", "video_name": "f59002b9-ef45-585e-82c5-7909687aee0c", "text": "\u767d\u8272\u9709\u83cc\u5728\u9ed1\u8272\u7403\u4e0a\u8513\u5ef6\uff0cGS 10 AR 9:16\uff0c\u8fd0\u52a825\u3002"} +{"id": "0003201", "video_name": "39249eea-fa7f-58f1-9adf-6095ececb5e9", "text": "\u4e00\u7247\u6df7\u4e71\u7684\u6811\u6797\u53d8\u6210\u4e86\u86c7\uff0c\u903c\u771f\u3001\u7535\u5f71\u822c\u3001\u8d85\u73b0\u5b9e\u3001\u8d85\u51e1\u8131\u4fd7\u3001\u6726\u80e7\u30014K\u3002"} +{"id": "6004818", "video_name": "c6e578dc-81ff-51f6-86b2-3b898866b4f9", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u6d1e\u91cc\u7948\u7977\uff0c\u4e00\u675f\u5149\u7167\u5728\u4ed6\u8eab\u4e0a\u3002"} +{"id": "7004926", "video_name": "c9a668f3-3de7-5f46-a7bf-ce6858f896d3", "text": "\u8352\u5e9f\u68ee\u6797\u5728\u591c\u665a\u8d77\u706b\u7684\u666f\u8c61"} +{"id": "6002595", "video_name": "0e0abd97-01ce-5956-a22d-4018c9badb2f", "text": "company that provides military and security services.\n\n\u74e6\u683c\u7eb3\u96c6\u56e2\u6b63\u5f0f\u540d\u4e3aPMC\u74e6\u683c\u7eb3\uff0c\u662f\u4e00\u5bb6\u63d0\u4f9b\u519b\u4e8b\u548c\u5b89\u5168\u670d\u52a1\u7684\u4fc4\u7f57\u65af\u516c\u53f8\u3002"} +{"id": "1004637", "video_name": "563b4051-8d34-54fe-934d-0dc3cb25d3bf", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u677e\u9f20\u7684\u7b80\u5355\u753b\u3002"} +{"id": "0003921", "video_name": "45cab9b7-0ae9-5171-8f9e-74ab3eb3d983", "text": "\u5c06Lieca\u7ad9\u7684\u7b26\u53f7\u4e0e\u963f\u5c14\u53ca\u5229\u4e9a\u5730\u5f62\u56fe\u7684\u540d\u79f0\u6807\u5fd7\u5316\u3002"} +{"id": "5001239", "video_name": "48fcc0fa-490f-577c-9bca-160985771fba", "text": "\u795e\u5947\u68ee\u6797\u91cc\u7684\u65b0\u5e74\u5feb\u4e50\u3002"} +{"id": "3006760", "video_name": "6d2fd0e7-5d70-585b-91ed-aeecc8bd1cd1", "text": "\u4e00\u53ea\u5916\u661f\u4eba\u7a7f\u7740\u73b0\u4ee3\u7684\u670d\u88c5\u4ece\u7ebd\u7ea6\u7684\u5546\u573a\u91cc\u8d70\u51fa\u6765\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4K\u3002"} +{"id": "6004210", "video_name": "24ce3d85-e026-5b7f-a848-5f96bfdc4aef", "text": "3D\u52a8\u753b\u4e2d\u4e00\u4f4d\u5e74\u8f7b\u533b\u751f\u5728\u533b\u9662\u8d70\u8def\u3002"} +{"id": "7002962", "video_name": "e60a0c12-0389-58a8-9f92-acc437e94e65", "text": "\u4e00\u4e2a\u5f71\u89c6\u5316\u548c\u620f\u5267\u5316\u76844k\u955c\u5934\uff0c\u5c55\u793a\u4e00\u4e2a\u5de8\u811a\u8e29\u6241\u679c\u51bb\u751c\u751c\u5708\u7684\u8fc7\u7a0b\u3002"} +{"id": "8003667", "video_name": "abc82633-5ca7-5846-8b00-a4b445c9e6bb", "text": "\u4eba\u4eec\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u7684\u903c\u771f\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "0005582", "video_name": "1d7a89e4-db8a-51f8-8f94-8c04e2057617", "text": "\u4e91\u6735\u7f13\u6162\u79fb\u52a8\u7684\u7535\u5f71\u6162\u52a8\u4f5c \u4fe1\u606f\uff1a\u4e50\u8da3\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006127", "video_name": "57b983af-9c51-561b-b5aa-186a724a558d", "text": "\u665a\u4e0a\uff0c\u96ea\u4eba\u5927\u559d\u7279\u559d\uff0c\u4e00\u8fb9\u5077\u770b\u7740\u90a3\u4f4d\u7f8e\u4e3d\u5973\u5b50\uff0c\u8138\u4e0a\u5e26\u7740\u4e30\u5bcc\u591a\u5f69\u7684\u8868\u60c5\u3002"} +{"id": "3005672", "video_name": "e46db87e-4772-5b06-955c-88c6b097569e", "text": "\u52a8\u753b\u5f0f\u3001\u590d\u53e4\u7684\u79d1\u5e7b\u592a\u7a7a\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "4004185", "video_name": "a6d6df4b-b3f1-5dd2-ad7e-9fef81b0f15c", "text": "\u5728\u4e00\u4e2a\u5c9b\u4e0a\u7684\u5f02\u56fd\u6c34\u679c\uff0c\u4eba\u4eec\u90fd\u559c\u6b22\u5403\u8fd9\u4e9b\u6c34\u679c\u3002\n\nSource sentence: I need to buy milk, bread, and eggs at the grocery store. \n\n\u6211\u9700\u8981\u5728\u6742\u8d27"} +{"id": "8002762", "video_name": "b00fea11-233b-5f41-9282-d9146472c1cc", "text": "\u60f3\u8c61\u90a3\u53ea\u6d3b\u6cfc\u7684\u91ce\u5154\uff0c\u957f\u957f\u7684\u8033\u6735\u548c\u654f\u6377\u7684\u52a8\u4f5c\uff0c\u5728\u8349\u5730\u4e0a\u5174\u594b\u5730\u8e66\u8df6\u3002"} +{"id": "5001100", "video_name": "2f7eaa44-0e37-5b45-a979-73b790273806", "text": "\u4e00\u591c\u660e\u6708\uff0c\u74b0\u7e5e\u8457\u6a39\u6728\u7684\u623f\u5b50\uff0c\u5b69\u5b50\u5011\u5728\u623f\u5b50\u524d\u73a9\u800d\u3002"} +{"id": "4002395", "video_name": "34d957db-7969-5441-a776-2546879bdd4c", "text": "\u4e00\u4e2a\u8bde\u751f\u4e8e\u94f6\u6cb3\u7cfb\u7f8e\u4e3d\u661f\u7403\u4e0a\u7684\u73b0\u5b9e\u7684\u5b58\u5728\u3002"} +{"id": "3004597", "video_name": "494e4a07-38a5-571e-a83d-040f552e6075", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5ba2\u5385\u91cc\u8df3\u821e\uff0c\u7ad9\u5728\u58c1\u7089\u548c\u5723\u8bde\u6811\u524d\u3002"} +{"id": "2003525", "video_name": "aaf52d6a-a06f-50d9-9511-220db0e86ec6", "text": "\u751f\u65e5\u5feb\u4e50\u5973\u58eb\u8d3a\u5361\uff0c\u56fe\u7247"} +{"id": "6003357", "video_name": "0797db8b-04b1-5c39-9e54-df55fb304fe5", "text": "\u4e00\u4e2a\u5782\u6b7b\u7684\u6811\u548c\u9634\u5929\u7684\u7535\u5f71\u573a\u666f\uff0c\u52a0\u4e0a\u4e00\u4e2a\u5bb6\u5ead\u4e3a\u6811\u6d47\u6c34\uff0c\u6811\u957f\u51fa\u7eff\u53f6\uff0c\u592a\u9633\u5f00\u59cb\u7167\u8000\u3002"} +{"id": "2005905", "video_name": "411e7d2e-7ee2-5e23-8484-41238c2eda3e", "text": "\u8499\u59ae\u5361\u603b\u7edf (\u73b0\u4ee3\u5b57\u4f53) \u5728\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u7684\u886c\u886b\u4e0a\u3002 \u4fe1\u606f\uff1a\u8499\u59ae\u5361\u603b\u7edf"} +{"id": "2004247", "video_name": "b64ce7ba-e569-566a-b40b-fb5054ff1277", "text": "\u5e03\u5170\u59ae\u00b7\u65af\u76ae\u5c14\u65af\u7a7f\u7740\u7c89\u8272\u6bd4\u57fa\u5c3c\u8df3\u7740\u5947\u602a\u7684\u6076\u5fc3\u821e\u8e48\u3002"} +{"id": "7002525", "video_name": "1928f387-ee4a-5005-a6d2-06b9b83d836d", "text": "\u4e09\u6587\u9c7c\u6e38\u4e0a\u6cb3\u6d41\uff0c\u7136\u540e\u8df3\u51fa\u6c34\u9762\u8eb2\u907f\u718a\uff0c\u518d\u843d\u6c34\u7ee7\u7eed\u6e38\u4e0a\u6e38\uff0c\u6cb3\u5e95\u662f\u5ca9\u77f3\uff0c\u6c34"} +{"id": "7004201", "video_name": "a69e953d-25f4-5809-a9cd-ee490a1382e0", "text": "DJ\u5728\u821e\u53f0\u4e0a\uff0c\u6325\u821e\u7740\u624b\uff0c\u9f13\u638c\u3002"} +{"id": "0003168", "video_name": "38816180-974e-50ad-bc6f-bc857a1e268f", "text": "\u54c8\u5c14\u79d1\u592b\u5de1\u903b\u8b66\u5bdf\u68c0\u67e5\u5458\u56e0\u8d85\u901f\u7f5a\u6b3e\u8fdd\u6cd5\u884c\u4e3a\u8005\u3002"} +{"id": "7004174", "video_name": "14ddf777-ac12-530e-899e-842b458f4b5f", "text": "50\u6beb\u5347\u94dd\u94f6\u74f6\u914d\u87ba\u65cb\u76d6\u5411\u4e0a\u629b\u8d77\uff0c\u7136\u540e\u843d\u4e0b\uff0c\u80cc\u666f\u4e3a\u7c73\u767d\u8272\uff0c\u6765\u81ea\u524d\u65b9\u7684\u5149\u7ebf\uff0c"} +{"id": "2006546", "video_name": "63ccbfc4-6011-5ab4-82ba-b4e05493f134", "text": "\u94a2\u94c1\u4fa0\u5728\u8fea\u58eb\u5c3c\u7684\u6218\u4e89\u573a\u9762\u4e2d\u4e0e\u5927\u8c61\u6218\u6597\u3002"} +{"id": "6003200", "video_name": "f56b3eca-af61-54ae-b448-3478259ac989", "text": "\u6c49\u65af\u51dd\u89c6\u7740\u795e\u79d8\u7684\u68ee\u6797\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002059", "video_name": "c74a49ca-d816-59e0-aef6-c6e304e3b3e6", "text": "\u95ea\u5149\u5e26\u7740\u4e00\u672c\u4e66\u7a7f\u8fc7\u9ed1\u6697\u7684\u623f\u95f4\u3002 \n\nSource sentence: I love to eat sushi with soy sauce. \n\n\u6211\u559c\u6b22\u7528\u9171\u6cb9\u5403"} +{"id": "8003299", "video_name": "90b03a25-3643-59e9-806e-4eeead03e993", "text": "19\u4e16\u7eaa\uff0c\u4e24\u4e2a\u4eba\u6253\u67b6\uff0c\u5176\u4e2d\u4e00\u4e2a\u9003\u8dd1\u5e76\u8fdb\u5165\u4e00\u8f86\u8f66\uff0c\u7b2c\u4e8c\u4e2a\u4eba\u8fdb\u5165\u53e6\u4e00\u8f86\u8f66\u8ffd\u8d76\u4ed6\uff0c\u4e24\u4eba\u4ece\u8f66\u91cc"} +{"id": "4002002", "video_name": "839c93ea-66d1-5b76-8b11-d3a08591b9c1", "text": "\u5728\u80cc\u666f\u4e2d\u6709\u592a\u7a7a\u884c\u661f\u548c\u592a\u9633\uff0c\u4ee5\u7535\u5f71\u822c\u76844K\u8d85\u9ad8\u6e05\u771f\u5b9e\u7684\u592a\u7a7a\u4eba\u4e3a\u4e3b\u9898\u3002"} +{"id": "7004028", "video_name": "b2b83128-4b6f-51b4-beb6-09073aa2c9a1", "text": "\u4e24\u4e2a\u52a8\u6f2b\u5b69\u5b50\u5728 Web 3 \u57ce\u5e02\u516c\u56ed\u91cc\uff0c\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u5168\u606f\u5f71\u50cf\u62ff\u7740\u4e00\u5f20\u4f18\u60e0\u5238\u3002"} +{"id": "3006502", "video_name": "b1918c9a-adb4-5ca0-b4ab-e300bf8dda05", "text": "\u6708\u4eae\u7a7f\u7740\u5149\u5f69\u593a\u76ee\u7684\u5a5a\u7eb1\uff0c\u5728\u5979\u6b23\u559c\u7236\u4eb2\u7684\u966a\u4f34\u4e0b\uff0c\u8fc8\u7740\u5979\u4eba\u751f\u4e2d\u7684\u7b2c\u4e00"} +{"id": "7004854", "video_name": "d370a3bb-6693-5bba-9239-b8e8829d2fcf", "text": "\u7537\u5973\u56f4\u7ed5\u7740\u4e00\u5806\u5de8\u5927\u7684\u7bdd\u706b\u805a\u96c6\uff0c\u5fae\u98ce\u5f90\u6765\uff0c\u827a\u672f\u706f\u5149\u6548\u679c\u3002"} +{"id": "0003845", "video_name": "4479a391-2ed4-5d31-9c61-f9da129389b1", "text": "\u4e09\u4f4d\u4e2d\u4e16\u7eaa\u7684\u5c0f\u4e11\u624b\u7275\u624b\u5728\u9ea6\u7530\u4e2d\u8df3\u821e\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u300a\u5723\u5c71\u300b\uff0c4K\u3002"} +{"id": "5001001", "video_name": "9977e2c9-ec2e-5d12-a9f2-c6ae57fe62dd", "text": "\u82b1\u76c6\u5939\u5728\u684c\u5b50\u4e0a\u6025\u5267\u6643\u52a8\u3002"} +{"id": "3004260", "video_name": "723633d5-27e2-5f4f-89b1-0f066d099320", "text": "\u751f\u6210\u4e00\u5f20\u8fc8\u514b\u8d70\u8fdb\u57ce\u9547\u6df1\u5904\u7684\u56fe\u7247\uff0c\u6ce8\u610f\u5230\u88ab\u62c9\u4e0a\u7a97\u5e18\u7684\u5e9f\u5f03\u5efa\u7b51\u3002"} +{"id": "4004078", "video_name": "e59d5a0d-d365-543b-9312-9cf7d5b1e742", "text": "\u89c6\u89c9\u836f\u7269\u7684\u6548\u679c\uff0c\u5982LSD\uff0c\u9178\u65c5\u548c\u5e7b\u89c9\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c32k\uff0c\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "2007725", "video_name": "acf8e2c4-1672-5cda-aa8a-1abe55fee7e6", "text": "\u706b\u661f\u8868\u9762\u7535\u5f71\u822c\u7684\u706b\u7bad\u53d1\u5c04\uff0c\u9644\u5e26\u5947\u602a\u7684\u5929\u6c14\u6548\u679c\u3002"} +{"id": "2004201", "video_name": "f398e326-92f6-5106-96cc-1aed3c8d36f2", "text": "\u7531\u7ebf\u5236\u6210\u7684\u9690\u5f62\u534a\u7403\u5f62\u98de\u884c\u5668\u3002"} +{"id": "1005114", "video_name": "5e499aef-d61e-5b6b-b6f2-a07454e2afd1", "text": "\u5370\u5ea6\u751c\u54c1\u5e97\u548c\u4ed6\u7684\u8001\u677f\u6b63\u5728\u505a\u62c9\u675c\u751c\u3002"} +{"id": "7003061", "video_name": "7ff05bf4-0009-513f-9ac7-21097826cf71", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u767d\u5154\u7a7f\u7740\u84dd\u8272\u886c\u886b\u548c\u9ec4\u8272\u77ed\u88e4\uff0c\u5728\u68ee\u6797\u91cc\u5979\u7684\u623f\u5b50\u524d\u8df3\u8dc3\u3002"} +{"id": "5001303", "video_name": "fa1c878d-9620-5c96-86aa-f59be2399ec6", "text": "\u7535\u5f71\u7ea7\u522b\u76844K\u5546\u4e1a\u63d0\u6848\u5e7b\u60f3FPS\u3002"} +{"id": "6002034", "video_name": "d84ab2b9-2ca8-5447-9c99-61fa485fa1db", "text": "\u62bd\u8c61\u6cb9\u753b\u4e2d\uff0c\u65cb\u8f6c\u7684\u9c9c\u8273\u8272\u5f69\u4ee3\u8868\u81ea\u7136\u4e16\u754c\uff0c\u4ea4\u7ec7\u7740\u8c61\u5f81\u5148\u8fdb\u6280\u672f\u7684\u91d1\u5c5e\u94f6\u548c\u91d1\u8272"} +{"id": "2006339", "video_name": "2f55819c-c133-58ab-bcb3-886f6f2227dc", "text": "\u4f7f\u7528\u8be5\u56fe\u7247\u4f5c\u4e3a\u6218\u58eb\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005628", "video_name": "0cb57d52-bea3-5eab-9229-61859ce2311d", "text": "\u751f\u65e5\u5feb\u4e50\uff0c\u5a1c\u65af\u5854\u5973\u5b69\u7f8e\u4e3d\u3001\u5feb\u4e50\u548c\u6709\u8da3\u3002"} +{"id": "3004280", "video_name": "51f33ca1-0b13-50c0-a565-09c2c1057039", "text": "\u5728\u665a\u4e0a9:30\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u571f\u8c46\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u8eab\u5904\u4e00\u95f4\u53ea\u6709\u7535\u89c6\u706f\u7684\u9ed1\u6697\u623f\u95f4\uff0c\u770b\u7740\u624b\u673a\uff0c\u7136\u540e"} +{"id": "1004504", "video_name": "537694bb-9f7d-5bc5-b589-634838569cd3", "text": "\u6211\u9ad8\u58f0\u5531\u51fa\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7eaf\u51c0\u660e\u4eae\u3002"} +{"id": "8003876", "video_name": "43a8184a-4e20-50c0-947d-5e566a0f557a", "text": "\u51ac\u5929\u516c\u56ed\u7684\u573a\u666f\u3002\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u957f\u6905\u4e0a\u770b\u4e66\u3002\u6b63\u5728\u4e0b\u96ea\u3002\u4ed6\u5728\u7ffb\u4e66\u9875\u3002"} +{"id": "2006892", "video_name": "45f16f00-c995-509a-b1b0-172cda9b04d6", "text": "\u5c3c\u65e5\u5229\u4e9a\u5973\u5b50\u7ad9\u5728\u4e00\u4e2a\u5927\u5c4f\u5e55\u524d\uff0c\u8be5\u5c4f\u5e55\u6b63\u5728\u5c55\u793a\u4e0e\u7ba1\u7406\u548c\u6280\u672f\u4e4b\u82b1\u5b66\u9662\u5408\u4f5c\u7684\u7eb3\u8428\u74e6\u5dde\u963f"} +{"id": "2007862", "video_name": "70851785-c8a9-5501-b171-fd254194e117", "text": "\u5c0f\u4e11\u628a\u8759\u8760\u4fa0\u7ed1\u5728\u8f66\u5e93\u7684\u5929\u82b1\u677f\u4e0a\u3002"} +{"id": "2006699", "video_name": "86214294-bdb2-5875-a4b4-fcb583b2e2d3", "text": "\u7c89\u8272\u9713\u8679\u706f\u4e0b\u7684\u4eba\u4eec\u5728\u591c\u5e97\u72c2\u6b22\u3002"} +{"id": "1006834", "video_name": "7cf9784e-4f39-52e8-a257-327139704fe2", "text": "\u5728\u4e00\u6240\u9ad8\u4e2d\u770b\u5230\u4e86\u5c9b\u4e0a\u7684\u70df\u82b1\u3002"} +{"id": "6003215", "video_name": "0add6dad-15d1-5cef-957e-c68b518bbe10", "text": "\u4e00\u8258\u53f2\u8bd7\u7ea7\u7684\u5b87\u5b99\u98de\u8239\u6b63\u5728\u592a\u7a7a\u4e2d\u671d\u5411\u592a\u9633\u98de\u884c\u3002"} +{"id": "3004218", "video_name": "9c8ab2bb-e17f-5ec5-803e-a6f199c2bf04", "text": "\u6602\u8d35\u7684\u65e5\u5f0f\u6c34\u9762\u9493\u9975\uff0c\u5355\u4e2a\u5927\u94a9\uff0c\u6e05\u6670\u6d82\u5c42\uff0c\u9002\u7528\u4e8e\u9ed1\u9c88\u9c7c\u9493\u9c7c\uff0c\u6f02\u6d6e"} +{"id": "6002038", "video_name": "0c7dd09b-6a40-5bd9-bbef-b7401b027a19", "text": "\u516c\u5171\u4e91\u57f9\u8bad\u7684\u56fe\u50cf"} +{"id": "2004102", "video_name": "c61909c1-c782-596c-9d38-d5c46cd00092", "text": "\u9a6c\u513f\u4e0a\u4e0b\u7ffb\u817e\uff0c\u4e91\u6735\u56f4\u7ed5\u7740\u5b83\u8f6c\u52a8\uff0c\u5c31\u50cf\u4e00\u4e2a\u6e38\u4e50\u56ed\u3002"} +{"id": "4004719", "video_name": "083dfdc6-2e22-548f-9ed6-bb465e656580", "text": "\u4f7f\u9192\u6765\u7684\u5973\u5b69\u52a8\u8d77\u6765\uff0c\u5e76\u4e14\u79fb\u52a8\u5728\u82b1\u548c\u6811\u53f6\u4e0a\u7684\u5c0f\u7247\u4e0a\u3002"} +{"id": "1005732", "video_name": "69780e29-6463-5c39-9b89-46ba55c1f405", "text": "\u4e00\u53ea\u7f8a\u88ab\u98de\u789f\u5e26\u8d70\u4e86\u3002"} +{"id": "2004225", "video_name": "c860b399-07a2-5138-83f5-9c85ba36dc58", "text": "\u4e00\u4e2a\u5c0f\u7cbe\u7075\u548c\u4e00\u4e2a\u5996\u7cbe\u5750\u5728\u4e00\u68f5\u6811\u679d\u4e0a\u3002"} +{"id": "7002081", "video_name": "e7903f34-b01a-577b-b71b-72727e482c88", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u5973\u58eb\u6218\u58eb\u4e0e\u6076\u9b54\u517d\u640f\u6597\u7684\u52a8\u753b\u3002"} +{"id": "0006819", "video_name": "33a12bf0-e8ec-58f3-b9cd-b24e51f6bea9", "text": "\u58ee\u89c2\u7684\u4e9a\u6d32\u8c61\u4f18\u7f8e\u5730\u5728\u5e7f\u9614\u7684\u666f\u89c2\u4e2d\u79fb\u52a8\u3002"} +{"id": "8002576", "video_name": "b5fcc840-c3cb-5231-9c33-a6f5e5eecb82", "text": "\u4e00\u67b6\u6218\u6597\u673a\u5411\u9003\u79bb\u7684\u6c7d\u8f66\u53d1\u5c04\u8ffd\u8e2a\u5bfc\u5f39\u3002"} +{"id": "8001428", "video_name": "c2f86f33-bb5b-5d57-b35c-7c9313ac309b", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4ff1\u4e50\u90e8\u5f53DJ"} +{"id": "4002482", "video_name": "3736d1f0-167e-5924-809b-c4fd75268247", "text": "\u56db\u4e2a\u7537\u5b69\u5728\u68ee\u6797\u91cc\u770b\u5730\u56fe\u3002"} +{"id": "3006817", "video_name": "955f5196-c643-5ec3-8209-1a7047f5f80c", "text": "\u6c7d\u8f66\u7a7f\u8fc7\u4ea4\u901a\uff0c\u4fef\u89c6\u56fe\u3002"} +{"id": "4002636", "video_name": "1ef64844-c841-561b-a562-be7852767aab", "text": "\u6cbf\u9014\uff0c\u5361\u97e6\u4f1a\u9047\u5230\u5176\u4ed6\u89d2\u8272\uff0c\u4ed6\u4eec\u4f1a\u52a0\u5165\u4ed6\u7684\u65c5\u7a0b\u3002\u5176\u4e2d\u4e00\u4e9b\u89d2\u8272\u662f\u76df\u53cb\uff0c\u800c\u53e6\u4e00\u4e9b\u5219\u662f\u654c\u4eba\uff0c"} +{"id": "7003797", "video_name": "8f1fc829-7f32-5fe2-87aa-2321bdf0d8eb", "text": "\u5728\u9999\u5df4\u62c9\u97f3\u4e50\u8282\u4e0aDJ\u7684\u7537\u5b50\u3002"} +{"id": "2004529", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "\u8367\u5149\u690d\u7269\u548c\u6811\u6728\u5728\u672a\u6765\u5408\u91d1\u548c\u9713\u8679\u57ce\u5e02\u4e2d\uff0c\u914d\u5408\u65f6\u5c1a\u82b1\u56ed\uff0c\u5c55\u73b0\u6280\u672f\u521b\u65b0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "5001426", "video_name": "4b2b0fb2-91c0-52a0-8b30-438681632fed", "text": "\u5047\u5982\u624e\u514b\u00b7\u65af\u5948\u5fb7\u62cd\u4e86\u4e00\u90e8\u52a8\u6f2b\uff0c\u90a3\u4f1a\u600e\u6837\u5462\uff1f \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0"} +{"id": "2007491", "video_name": "9e0ea7e0-6245-569b-8aca-1fc9e8018b34", "text": "\u975e\u5e38\u808c\u8089\u53d1\u8fbe\u7684\u4e9a\u6d32\u67d4\u9053\u8fd0\u52a8\u5458\uff0c\u9762\u90e8\u7ec6\u8282\u6e05\u6670\uff0c\u6b63\u9762\u5e73\u89c6\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "8001994", "video_name": "1b6d7af0-9b77-5e8f-90f5-448ddc819a74", "text": "\u60ca\u4eba\u7684\u5973\u5b69\u5728\u798f\u97f3\u6d3e\u6559\u5802\u5411\u4e0a\u5e1d\u7948\u7977\uff0c\u770b\u5230\u4e86\u5947\u8ff9\u3002\u4e4b\u540e\uff0c\u5979\u5403\u4e86\u9762\u5305\u559d\u4e86\u9152"} +{"id": "1003580", "video_name": "41f13876-61a7-5f9c-a9e8-7485f5be4a1f", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u9f50\u67cf\u6797\u573a\u3002\u9ad8\u5206\u8fa8\u73874k\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "1006148", "video_name": "709e06dc-5b56-5498-9fcd-e1777bcfe738", "text": "\u4e24\u4e2a\u5b69\u5b50\u5e2e\u52a9\u4e00\u4f4d\u8001\u592a\u592a\u642c\u8fd0\u6c34\u679c\u7bee\u3002"} +{"id": "2006552", "video_name": "66ae7774-84a4-5ba4-9f9d-245ae3473ec8", "text": "\u4e00\u53f0\u7c89\u767d\u8272\u7684\u5fae\u578b\u5973\u6027\u673a\u5668\u4eba\u6b63\u5728\u4e00\u8f86\u6821\u8f66\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003014", "video_name": "8bd7554b-475d-50cf-86a6-96cfe6e6c05d", "text": "\u98de\u884c\u6c7d\u8f66\u5728\u672a\u6765\u57ce\u5e02\u8fd0\u9001\u7269\u8d44\uff0c\u989c\u8272\u4e3a\u7d2b\u8272\u548c\u7eff\u8272\uff0c\u65e5\u843d\u65f6\u8bb8\u591a\u4eba\u5728\u7b49\u5f85\u3002"} +{"id": "3006216", "video_name": "64dcea2b-bffc-5f94-b787-4a6e9af80927", "text": "\u4e00\u4f4d\u8001\u5e74\u4eba\u5750\u5728\u623f\u5b50\u91cc\uff0c\u5411\u5e74\u5e7c\u7684\u5b69\u5b50\u8c08\u8bba\u56fd\u5bb6\u7684\u826f\u597d\u4e60\u4fd7\u3002"} +{"id": "3004246", "video_name": "e4bd47da-773d-5454-9781-43f952b851b6", "text": "\u521b\u9020\u4e00\u4e2a\u8759\u8760\u6807\u5fd7\u5e76\u5728\u6807\u5fd7\u4e0a\u71c3\u70e7\u7684\u5f62\u8c61\u3002"} +{"id": "1006600", "video_name": "78ed4476-f57c-5b39-b167-5bd07110d6a0", "text": "\u4e00\u4e2a\u96ea\u4eba\u7ad9\u5728\u94f6\u674f\u6811\u65c1\u7684\u96ea\u5730\u4e0a\u3002"} +{"id": "7003698", "video_name": "4f9785d5-573a-5ba3-872f-8312e7641b00", "text": "\u4eba\u7c7b\u6218\u80dc\u4e86\u673a\u5668\u4eba\uff0c\u4eba\u7c7b\u6b22\u547c\u5e86\u795d\uff0c\u673a\u5668\u4eba\u54ed\u6ce3\u3002"} +{"id": "0005270", "video_name": "179a07e2-c08a-543c-a4bb-0b42833d993a", "text": "\u5929\u82b1\u677f\u4e0a\u7684\u82b1\u9970\uff0c\u5b57\u6bcd\u5448\u5706\u5f62\u6392\u5217\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002\u4fe1\u606f\uff1a\u53cd\u53db\u73ab\u7470\uff08\u5b57\u4f53\uff1a\u5305\u8c6a"} +{"id": "3003938", "video_name": "f18f7b31-bf2e-5b34-8b2b-5753313cd163", "text": "\u5deb\u5e08\u6751\u5e84\uff0c\u5e7b\u60f3\uff0c3D\u76f8\u673a\uff0c\u6e32\u67d3\uff0c\u795e\u79d8\u601d\u7ef4\u3002"} +{"id": "2003281", "video_name": "77d2643c-cf77-5973-9d5c-25a651129652", "text": "\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\u7740\u7ea2\u8272\u6c14\u7403\u548c\u5fc3\u5f62\u56fe\u6848\u3002"} +{"id": "1006416", "video_name": "757b374b-2330-57d2-b02b-58cf4164e1fd", "text": "\u521b\u4f5c\u4e00\u53ea\u6d77\u8c5a\u7684\u52a8\u753b\u3002"} +{"id": "7003031", "video_name": "3497618f-cd75-593b-9994-593d1f28752c", "text": "\u547d\u8fd0\u8fd9\u4e2a\u62bd\u8c61\u753b\u7684\u6982\u5ff5"} +{"id": "7002199", "video_name": "5d9840f5-4973-5e45-98bb-394a73f053fe", "text": "\u5236\u4f5c\u4e00\u4e2a\u65e0\u7f1d\u5faa\u73af\u7684\u62bd\u8c61\u56fe\u6848\u89c6\u9891\uff0c\u56fe\u6848\u5e94\u8be5\u662f\u8272\u5f69\u7f24\u7eb7\u3001\u6d41\u52a8\u3001\u50ac\u7720\u548c\u4e0d\u65ad\u6f14\u53d8\u7684\u3002\u4f7f\u7528\u51e0\u4f55\u5f62"} +{"id": "1003316", "video_name": "3d15d630-476a-5950-b0ec-12cbce566bd9", "text": "\u7537\u5b50\u4fa7\u8eab\u4e0a\u8f66\u3002"} +{"id": "7002014", "video_name": "821e232e-b6aa-5df8-be88-24aa139b43cc", "text": "\u9633\u5149\u666e\u7167\u8138\u5e9e\uff0c\u98ce\u5439\u62c2\u5934\u53d1\u3002"} +{"id": "2005883", "video_name": "18c85ff5-ff5d-597d-9806-b4983175a7d6", "text": "\u65bd\u5de5\u5de5\u4eba\u6b63\u5728\u4e3a\u4e91\u6735\u6d82\u5899\u3002"} +{"id": "5001078", "video_name": "409473f8-5f73-56d3-99d5-eadc3dbc3100", "text": "\u7a7f\u7740\u7ea2\u6597\u7bf7\u7684\u9a91\u58eb\u5728\u96fe\u8499\u8499\u7684\u6218\u573a\u4e0a\u884c\u519b\uff0c\u6765\u81ea\u7535\u5f71\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u7684\u573a\u666f\u3002"} +{"id": "3003955", "video_name": "a5e69e6b-c953-52cc-bcf9-1c6c18bf1ad2", "text": "\u5236\u4f5c\u4e00\u4e2a\u7537\u4eba\u8ba1\u6570\u7684\u89c6\u9891\u3002"} +{"id": "3003875", "video_name": "3d8d72e5-cc61-552f-9047-34cce27c99cd", "text": "\u5236\u4f5c\u4e00\u4e2a\u673a\u5668\u4eba\u548c\u4eba\u6253\u6597\u7684\u89c6\u9891\u3002"} +{"id": "2007886", "video_name": "e422697b-98e8-52a6-8959-b0fb1abc5e73", "text": "\u6d77\u76d7\u7237\u7237\u4ee5\u8482\u59c6\u00b7\u6ce2\u987f\u7684\u590d\u53e4\u98ce\u683c\uff0c\u7528\u82b1\u56ed\u6c34\u7ba1\u6e05\u6d01\u611f\u6069\u8282\u9910\u5385\u3002"} +{"id": "6003620", "video_name": "8d3ec597-a626-5875-afa7-de91e9bc1c1e", "text": "Suzy\u65e0\u610f\u4e2d\u8fdb\u5165\u4e86\u795e\u5947\u7684\u68ee\u6797\uff0c\u90a3\u91cc\u7684\u6811\u8f7b\u8f7b\u6447\u66f3\uff0c\u6811\u53f6\u53d8\u6210\u4e94\u5f69\u7684\u7403\u4f53\uff0c\u6f02\u6d6e"} +{"id": "3003656", "video_name": "08e2d6c9-63a5-5a3b-a21c-34a16a20f58c", "text": "\u90a3\u4e2a\u7a7f\u7740\u793c\u670d\u548c\u9632\u5f39\u80cc\u5fc3\u7684\u7537\u4eba\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u8d70\u8fc7\uff0c\u623f\u95f4\u91cc\u6709\u5f88\u591a\u88c5\u6ee1\u4e86\u9c7c\u548c"} +{"id": "1006346", "video_name": "742968ca-6a4a-523f-862c-19200440597f", "text": "\u4e24\u4e2a\u5144\u5f1f\uff0c\u4e00\u4e2a14\u5c81\uff0c\u4e00\u4e2a10\u5c81\uff0c\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u7740\u65e5\u5386\uff0c\u8ba8\u8bba\u8ba1\u5212\u3002"} +{"id": "4003621", "video_name": "f8978fe0-d488-571b-a2c8-b7f747e0dd70", "text": "\u8fd9\u666f\u8c61\u6765\u81ea\u592a\u7a7a\u5230\u5730\u7403\uff0c\u5230\u4e2d\u56fd\uff0c\u5230\u5e7f\u5dde\u3002"} +{"id": "5001242", "video_name": "876805f9-fb7e-5979-a1e8-24bae32fdb66", "text": "\u602a\u517d\u8ffd\u9010\uff0c4K\uff0c\u8d85\u771f\u5b9e\u7684\u602a\u517d\u3002"} +{"id": "7004529", "video_name": "471474a9-2e44-5b61-bdcf-d9e3efaf6e51", "text": "\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u732b\u548c\u72d7\u5728\u8001\u5e74\u5987\u5973\u65c1\u8fb9\u6253\u67b6\u3002"} +{"id": "1004148", "video_name": "4cd2a6b5-f37a-577c-bcd5-6399f8caa6e4", "text": "\u4fa7\u9762\u89c6\u89d2\uff0c\u4e00\u4e2a\u5723\u8bde\u5e97\u5458\u5728\u684c\u5b50\u524d\u5de5\u4f5c\uff0c\u5bbd\u9ad8\u6bd416:9\uff0c\u52a8\u4f5c\uff1a2\u3002"} +{"id": "2004897", "video_name": "ba4f0156-abae-55df-a83f-68adf7abdd52", "text": "\u7a97\u5916\u7684\u9633\u5149\u89d2\u5ea6\u8fc5\u901f\u53d8\u5316\uff0c\u6d41\u6c34\u4ece\u4e0a\u5230\u4e0b\u50cf\u4e1d\u7ef8\u822c\u503e\u6cfb\uff0c\u6e85\u5230\u684c\u5b50\u4e0a\u5e76\u8fdb\u5165\u5b50\u5f39\u65f6\u95f4\u3002"} +{"id": "0005828", "video_name": "21da9430-d0dc-5d20-9026-847431ab6581", "text": "\u5de8\u5927\u7684\u6d41\u661f\u5760\u843d\u5230\u5730\u7403\u4e0a\uff0c\u903c\u771f\u3001\u9ad8\u6e05\u3001\u6c1b\u56f4\u611f\u5f3a\u3001\u7535\u5f71\u5316\u3002"} +{"id": "4003142", "video_name": "6fcdbb4e-a7d8-51f6-9212-5d527632fb96", "text": "\u6570\u767e\u5e74\u524d\uff0c\u5927\u7329\u7329\u5728\u4e00\u7247\u58ee\u89c2\u7684\u68ee\u6797\u4e2d\u81ea\u7531\u5730\u751f\u6d3b\u5728\u539f\u59cb\u73af\u5883\u4e2d\u3002"} +{"id": "3003589", "video_name": "7853abc1-674b-5c20-b776-529228154601", "text": "\u732b\u5728\u8ba1\u7b97\u673a\u4e0a\u7f16\u7a0b\uff0c\u7a7f\u7740\u79d1\u5b66\u5bb6\u7684\u5916\u5957\u3002\u5b83\u4eec\u5728\u5b9e\u9a8c\u5ba4\u91cc\uff0c\u662f\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4003670", "video_name": "e6c2ac5b-b19d-525e-8d95-d632bf22ca52", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u5b69\u6b63\u5728\u4e0a\u6d77\u5916\u6ee9\u6563\u6b65\u3002"} +{"id": "0006877", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "\u4e24\u9897\u661f\u5728\u4f26\u6566\u7684\u6df1\u84dd\u8272\u5929\u7a7a\u4e2d\u95ea\u70c1\uff0c\u795e\u5947\u768470\u5e74\u4ee3\u9ed1\u6697\u5947\u5e7b\u98ce\u683c\uff0c\u771f\u4eba\u5b9e\u666f\uff0c\u903c"} +{"id": "2006866", "video_name": "84503d64-9e6a-531a-abac-8af48434ff74", "text": "\u8001\u623f\u5b50\uff0c\u88ab\u96fe\u6c14\u5305\u56f4\uff0c\u6a21\u7cca\u7684\u5927\u811a\u602a\uff0c\u6a21\u7cca\u7684\u5916\u661f\u4eba\u3002"} +{"id": "3006655", "video_name": "0e1b6b6c-21a6-5721-b988-ecd6ad69cdbd", "text": "\u8bf7\u8003\u8651\u4e00\u4e2a\u77e2\u91cf\u63d2\u753b\uff0c\u5177\u6709\u4e30\u5bcc\u7684\u7eff\u8272\u80cc\u666f\uff0c\u4ee3\u8868\u4e00\u7247\u68ee\u6797\u666f\u8272\u3002\u5728\u524d\u666f\u4e2d\uff0c\u63cf\u7ed8\u4e00\u68f5"} +{"id": "3005141", "video_name": "d8525005-d52d-5f7d-bbbb-5dddaef539dc", "text": "\u9ed1\u6697\u7684\u7262\u623f\u91cc\u6709\u53ef\u6015\u7684\u5e7d\u7075\uff0c\u903c\u771f\u7684\u73af\u5883\uff0c\u620f\u5267\u6027\u7684\u573a\u666f\u3002"} +{"id": "6002584", "video_name": "8d100d1c-0d2e-5fd1-848e-74e51428a4ba", "text": "\u5b87\u5b99\u878d\u5316\u7684\u62bd\u8c61\u63d2\u56fe\uff0c\u884c\u661f\u50cf\u6cb9\u6f06\u4e00\u6837\u6ef4\u843d\uff0c\u9713\u8679\u8272\u548c\u8d85\u7ea7\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "2003718", "video_name": "444d7c1c-e31f-58f9-9d09-12bd61c08990", "text": "\u4e00\u4e2a\u5feb\u4e50\u7684\u963f\u62c9\u4f2f\u519c\u6c11\u56e0\u5f97\u5230\u4e86\u67d0\u4e9b\u4e1c\u897f\u800c\u611f\u5230\u9ad8\u5174\u3002"} +{"id": "2004019", "video_name": "1defedf6-fd25-5980-8b12-a0d1856fd3fb", "text": "\u660f\u6697\u7684\u9ad8\u5bf9\u6bd4\u5ea63D\u7acb\u65b9\u4f53\u573a\u666f"} +{"id": "0004663", "video_name": "0ce51b0b-4da1-5b41-bfae-324763d813a0", "text": "\u5728\u68ee\u6797\u4e2d\u7684\u4f69\u8fea\u7eb3\u9547\u4e0a\u98de\u8fc7\u4e86\u4e00\u53ea\u53ef\u6015\u7684\u9f99\u3002"} +{"id": "6002871", "video_name": "10598384-ed5b-560e-a614-2eea8022e5b5", "text": "\u4e00\u5f20\u771f\u5b9e\u7684\u4eba\u8138\u7167\u7247\uff0c\u80e1\u987b\u7531\u878d\u5316\u7684\u8089\u548c\u852c\u83dc\u7ec4\u6210\uff0c\u91c7\u7528\u6770\u585e\u4f69\u00b7\u963f\u5c14\u5947"} +{"id": "4004818", "video_name": "2dce4206-b6f6-53f8-a86f-a69fb6933eae", "text": "\u597d\u83b1\u575e\u60ca\u609a\u7535\u5f71\u98ce\u683c\uff0c\u6709\u4e00\u6240\u533b\u5b66\u9662\u4e3a\u4e86\u57f9\u517b\u4f18\u79c0\u7684\u5b66\u751f\uff0c\u89c4\u5b9a\u6bcf\u5b66\u671f\u671f\u672b\u8003\u8bd5\u65f6\uff0c\u5b66"} +{"id": "4002091", "video_name": "7d8614f6-26a9-5fa7-84e8-d7687d880c43", "text": "\u62c9\u5409\u5c3c\u574e\u7279\u5411\u5185\u7279\u795d\u8d3a\u751f\u65e5\u5feb\u4e50\u3002"} +{"id": "8001796", "video_name": "0770f25e-c895-5d35-9850-1be5d9b6bfbd", "text": "\u8ba9\u5973\u5b69\u7f6e\u8eab\u4e8e\u5145\u6ee1\u4e0d\u540c\u690d\u7269\u7684\u65e5\u843d\u68ee\u6797\u4e2d\u592e\u3002"} +{"id": "1003957", "video_name": "491c10c7-2ba0-5c00-9ffb-f7d77f3bce7f", "text": "10\u79d2\u957f\uff0c\u5723\u8bde\u8282\uff0c\u623f\u5b50\uff0c\u706b\u3002"} +{"id": "1006135", "video_name": "7069bad4-acdf-56a5-93f5-d9449718c471", "text": "\u7687\u540e\u5b89\u5a1c\u00b7\u7ea6\u7ff0\u8bfa\u8299\u5a1c\u4ece\u7c73\u54c8\u4f0a\u5c14\u00b7\u7f57\u83ab\u8bfa\u7d22\u592b\u7684\u624b\u4e2d\u63a5\u8fc7\u4fe1\u4ef6\u3002\u6cb9\u753b\u3002"} +{"id": "2006844", "video_name": "e9f09a86-cac0-5b84-ad77-ae48bf36f312", "text": "\u827e\u4f26\u00b7\u8036\u683c\u76ef\u7740\u88ab\u88c5\u7532\u5de8\u4eba\u548c\u8d85\u5927\u578b\u5de8\u4eba\u5165\u4fb5\u7684\u6751\u5e84\uff0c\u4e00\u7247\u72fc\u85c9\uff0c\u4ed6\u975e\u5e38\u751f"} +{"id": "2004543", "video_name": "9c9dcc1e-200f-5b9d-aede-d8a065c742ac", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u5e2e\u52a9\u4e00\u4e2a\u60f3\u8981\u7a7f\u8d8a\u62e5\u6324\u7684\u516c\u8def\u7684\u5b69\u5b50\u3002"} +{"id": "2005857", "video_name": "8552ec8f-2c5b-53d7-98b0-04c7ce8f93a6", "text": "\u80cc\u666f\u56fe\u50cf\u7684\u6570\u636e\u5b89\u5168\u6027\u4e3a1\uff1a1\u3002"} +{"id": "8001349", "video_name": "7e7fc7ad-0aa6-5163-8e2d-dad8b69e5317", "text": "\u5149\u660e\u53d1\u51fa\u5929\u5802\u53f7\u89d2\uff0c\u8b66\u544a\u7740\u4e16\u754c\uff0c\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "0005500", "video_name": "1be4cbdb-3480-5c79-93d9-bdde473e9e61", "text": "\u7528\u50cf\u7d20\u827a\u672f\u5448\u73b0\u4e00\u4e2a\u6ce2\u591a\u9ece\u5404\u7537\u5b50\u5728\u4e00\u95f4\u5c0f\u623f\u95f4\u91cc\u62ff\u7740\u67aa\u652f\u548c\u6e38\u620f\u8bbe\u5907\uff0c\u95e8\u88ab\u5c01\u95ed\uff0c\u8bd5"} +{"id": "6004789", "video_name": "701c39da-0820-57cb-9e5f-fec48abaf669", "text": "\u5728\u9ad8\u5c14\u592b\u7403\u573a\u7684\u80cc\u666f\u4e0b\uff0c\u52a8\u6001\u65cb\u8f6c\u6316\u5730\u9e1f\u3002"} +{"id": "0006712", "video_name": "318a2ea2-56db-5de6-87af-d1d86945c77e", "text": "\u4e00\u5f20\u5fae\u8ddd\u6444\u5f71\u7684\u9ad8\u5ea6\u903c\u771f\u7684\u7167\u7247\uff0c\u62cd\u6444\u4e86\u9ed1\u6697\u4e2d\u6709\u6591\u70b9\u7684\u53d1\u5149\u5c0f\u8682\u86b1\u3002"} +{"id": "8001738", "video_name": "6a909d6b-1195-5cba-ab3b-0a7721a2b9de", "text": "\u9713\u8679\u9a91\u58eb\u5728\u9713\u8679\u8857\u9053\u4e0a\u7684\u8d5b\u535a\u670b\u514b\u4e16\u754c\u3002"} +{"id": "8003633", "video_name": "b9239750-8b79-5ce3-8b50-611b33e390ab", "text": "\u5077\u730e\u8005\u5934\u76ee\u7ec8\u4e8e\u88ab\u5236\u670d\u3002\u589e\u63f4\u5230\u8fbe\u5e76\u902e\u6355\u5176\u4ed6\u88ab\u6355\u7684\u5077\u730e\u8005\u3002\u91ce\u751f\u5927\u8c61\u52a0\u5165\u573a\u666f\uff0c\u4fdd"} +{"id": "7004752", "video_name": "6b8ce25c-68a1-5128-a1a9-7d2fa9be8fa1", "text": "\u8bf7\u7528\u590d\u53e4\u52a8\u753b\u98ce\u683c\u5236\u4f5c\u4e00\u573a\u6218\u6597\u52a8\u6f2b\u573a\u666f\u3002"} +{"id": "4003839", "video_name": "41d88ecf-ff0c-583f-a276-d6af4e8cf285", "text": "\u4e00\u4e2a\u7a7f\u7740\u71d5\u5c3e\u670d\u7684\u7537\u4eba\u88ab\u706b\u7130\u541e\u566c\u4e86\u3002"} +{"id": "1006520", "video_name": "7745d7f6-aae5-53d5-bd70-4d2a43eeed45", "text": "\u5927\u8857\u4e0a\u7a7a\u65e0\u4e00\u4eba\uff0c\u5927\u591a\u6570\u4eba\u90fd\u8737\u7f29\u5728\u5bb6\u91cc\uff0c\u8eb2\u907f\u98ce\u96e8\u4ea4\u52a0\u7684\u5929\u6c14\u3002"} +{"id": "7003436", "video_name": "f941c9f4-e0a0-595e-81d1-b0ad2d27bb59", "text": "\u4fdd\u6301\u5bf9\u4e16\u754c\u5947\u8ff9\u7684\u60ca\u53f9\u3002"} +{"id": "6003360", "video_name": "cad6f414-cbe5-5d04-bd45-c57d096fec19", "text": "\u8fdc\u5904\u4f20\u6765\u4e00\u9635\u51b7\u7b11\u58f0\uff0c\u5728\u7a7a\u8361\u8361\u7684\u8d70\u5eca\u4e2d\u56de\u8361\u3002\u7a81\u7136\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u63ed\u793a\u51fa\u9ed1\u5f71\u6b63\u5728\u903c"} +{"id": "1005636", "video_name": "679ee20f-66ca-5660-a0e1-038a4075b6a5", "text": "\u6c99\u6f20\u4e2d\u7684\u6c99\u5b50\u7206\u53d1\u4e86\uff0c\u6211\u4f5c\u4e3a\u4e00\u53ea\u5de8\u5927\u7684\u874e\u5b50\u4ece\u4e2d\u51fa\u73b0\u3002"} +{"id": "4003150", "video_name": "98cc0094-d603-5425-b1a8-e5a6f73c23fa", "text": "\u5b69\u5b50\u89c2\u770b\u846c\u793c\uff0c\u7535\u5f71\u822c\u7684\u3001\u903c\u771f\u7684\u3001\u5fe7\u90c1\u7684\u3002"} +{"id": "3003371", "video_name": "f8ab5250-1a24-53c7-a085-0021bd469d22", "text": "\u76f8\u540c\u7684\u5973\u4eba\u7a7f\u7740\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7684\u670d\u9970\u4ece\u718a\u9003\u8dd1\uff0c16:9\uff0c\u7ecf\u5178\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "7004168", "video_name": "ccd66a47-f2da-5211-86db-b95f548686f0", "text": "\u672a\u6765\u57ce\u5e02\u7684\u5168\u666f\u89c6\u56fe\uff0c\u50cf\u300a\u94f6\u7ffc\u6740\u624b\u300b\u4e00\u6837\uff0c\u591c\u665a\u5145\u6ee1\u70df\u96fe\u3001\u706b\u5149\u548c\u84dd\u8272\u706f\u5149"} +{"id": "8003293", "video_name": "6b516f11-7b1f-5257-86c5-a35d721192bd", "text": "\u4e00\u500b\u7537\u751f\u8d70\u8fd1\u6a58\u8272\u8863\u670d\u7684\u7537\u751f\uff0c\u5728\u6a39\u65c1\uff0c\u50cf\u662f\u52d5\u6f2b\u4e2d\u7684\u60c5\u7bc0\u3002"} +{"id": "7002420", "video_name": "cad05055-f42c-5d53-854b-e475f0d06357", "text": "\u5e74\u8f7b\u7684\u5973\u738b\u4ee5\u5361\u901a\u98ce\u683c\u9047\u89c1\u7f8e\u4e3d\u7684\u9ebb\u96c0\u3002"} +{"id": "4004141", "video_name": "e34ea704-d0a4-522f-a073-4a4560bfc631", "text": "\u4e00\u67b6\u98de\u673a\u7528\u81ea\u5df1\u7684\u70df\u5199\u4e0b\u4e86Rakesh\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "2004736", "video_name": "cce8e9bf-d853-5d21-84f3-7ca57d69a8d5", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u7684\u5168\u8eab\u653e\u5927\u9ad8\u5206\u8fa8\u7387\u3001\u6e05\u6670\u7684\u573a\u666f\uff0c\u805a\u7126\u4e8e\u4e00\u7fa4\u6234\u7740\u8033\u673a\u7684\u673a\u5668\u4eba\u5973\u6027\uff0c\u5176\u4e2d\u4e00\u4e2a\u5973"} +{"id": "3004276", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "\u8d85\u73b0\u5b9e\u7684\u80cc\u666f\uff0c\u8ff7\u5e7b\u7684\u6548\u679c\uff0c\u7c89\u8272\u548c\u9ec4\u8272\uff0c\u9633\u5149\uff0c\u9633\u5149\u5c04\u7ebf\u3002"} +{"id": "5001218", "video_name": "d4bba39e-d26f-5a69-b153-6eb9f98d11af", "text": "\u95ea\u7535\u5728\u7a7a\u4e2d\u95ea\u8000\u3002"} +{"id": "1006190", "video_name": "715ed938-d776-5e45-8c50-31ea60f48600", "text": "\u5c55\u793a\u5728\u9ed1\u8272\u5929\u9e45\u7ed2\u4e0a\u7684\u539a\u91cd\u563b\u54c8\u91d1\u94fe\u9879\u94fe\u3002\u4e00\u679a\u7531\u7c89\u8272\u548c\u7eff\u8272\u94bb\u77f3\u5236\u6210\u7684\u540a\u5760\u62fc\u5199"} +{"id": "4003484", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "\u521b\u4f5c\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u753b\u9762\uff0c\u4e00\u6761\u873f\u8712\u7684\u6cb3\u6d41\u7a7f\u8fc7\u8302\u5bc6\u7684\u5c71\u8c37\uff0c\u5728\u9ad8\u8038\u7684\u6811\u6728\u548c\u76db\u5f00\u7684"} +{"id": "3003002", "video_name": "b1d1980d-fc1c-56ed-8f42-688ed07a0467", "text": "\u82ac\u5229\u72b9\u8c6b\u4e86\u4e00\u4f1a\u513f\uff0c\u9677\u5165\u9965\u997f\u548c\u597d\u5947\u7684\u4e24\u96be\u5883\u5730\u3002\u6700\u7ec8\u4ed6\u9f13\u8d77\u52c7\u6c14\u5f00\u53e3\u3002"} +{"id": "0006876", "video_name": "349b1d1c-ab0d-5e48-bfc7-52421bb54cc5", "text": "\u7c73\u8001\u9f20\u5728\u623f\u5b50\u4e0a\u8df3\u821e\u3002"} +{"id": "4003201", "video_name": "22bab142-a6fe-5902-9cf5-85a0e064b266", "text": "\u4e00\u6761\u6cb3\u6d41\u5206\u9694\u7684\u68ee\u6797"} +{"id": "1003415", "video_name": "3f128152-4e0f-5a8b-8499-3ab6407f6fc4", "text": "\u4e0d\u540c\u53e3\u5473\u7684\u7eb8\u676f\u86cb\u7cd5\u5728\u8f6c\u5708\u3002"} +{"id": "7004173", "video_name": "02488363-c239-566e-b1f0-adcf75de6599", "text": "\u6751\u6c11\u4eec\u5230\u8fbe\u5c71\u9876\u53d1\u73b0\u6ca1\u6709\u72fc\uff0c\u53ea\u6709\u90a3\u4e2a\u7537\u5b69\u5728\u7b11\u3002\u5c55\u793a\u4ed6\u4eec\u56f0\u60d1\u548c\u607c\u6012\u7684\u8868\u60c5\u3002"} +{"id": "6004902", "video_name": "590758ab-d7d6-5c40-a158-fcdb64e7d1d6", "text": "\u6b66\u672f\u9009\u624b\u4e0e\u7a7a\u624b\u9053\u5927\u5e08\u5728\u6218\u6597\u4e2d\u3002"} +{"id": "1003040", "video_name": "37c7393d-b370-58b6-9fba-70de1f28ce09", "text": "\u5b87\u822a\u5458\u888b\u9f20\u5728\u592a\u7a7a\u6e38\u6cf3\u3002"} +{"id": "0006700", "video_name": "315d071b-46df-55fd-bd49-6f569a653a8b", "text": "\u4e00\u53ea\u673a\u5668\u8774\u8776\u5728\u7eff\u8272\u7684\u82b1\u6797\u4e2d\u98de\u7fd4\uff0c\u62cd\u6444\u4e864k\u7684\u7535\u5f71\u753b\u9762\uff0c\u5904\u4e8e\u65e5\u51fa\u7684\u9ec4\u91d1\u65f6\u95f4\u3002"} +{"id": "4003828", "video_name": "ba7e5e84-4612-59a6-8a95-54292539c6c4", "text": "\u732b\u6b63\u5728\u60ac\u5d16\u4e0a\u8df3\u8dc3\u3002\n\nSource sentence: I like to eat sushi for dinner. \n\u6211\u559c\u6b22\u665a\u9910\u5403\u5bff\u53f8\u3002"} +{"id": "4002896", "video_name": "7ba114a8-fd3d-5bdf-8f60-444d6f179a75", "text": "\u8d85\u4eba\u5728\u5965\u5c14\u73ed\u57ce\u4e0a\u7a7a\u98de\u884c\u3002"} +{"id": "1003506", "video_name": "40cd2dd4-2560-539e-add6-54acdb99c8c6", "text": "\u9ea6\u514b\u00b7\u7c73\u52d2\u5728\u7a7f\u7740\u592a\u9633\u955c\u7684\u98de\u884c\u5957\u88c5\u4e2d\u8fdb\u884c\u8d85\u5199\u5b9e\u7684\u57fa\u5730\u8df3\u4f1e\uff0c\u770b\u8d77\u6765\u50cf1950\u5e74\u4ee3\u7684\u9ed1"} +{"id": "2005269", "video_name": "875caba2-689e-5014-925e-f8e5025c8485", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u623f\u95f4\u91cc\u73a9\u7535\u5b50\u6e38\u620f\uff0c\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "8001859", "video_name": "95c399c4-ef87-5771-9147-7d051dbf2f94", "text": "\u6e34\u671b\u5b66\u4e60\u66f4\u591a\u7684\u9c88\u9c7c\u672c\u5c3c\u8046\u542c\u7740\u6d77\u9f9f\u7279\u838e\u5206\u4eab\u5173\u4e8e\u9b54\u6cd5\u6c34\u6676\u7684\u6545\u4e8b\u3002\u8fd9\u4e9b\u795e"} +{"id": "8002322", "video_name": "37989e05-972c-5286-a235-03ec39eea7ff", "text": "\u5728\u6c99\u6f20\u4e2d\uff0c\u4e00\u500b\u60b2\u50b7\u7684\u7537\u4eba\u5728\u66b4\u98a8\u4e2d\u5954\u8dd1\u4e861\u5206\u9418\u7684\u5f71\u7247\u3002"} +{"id": "8001565", "video_name": "8b3d2bd3-8db3-5c49-9f97-39571fcfb4d8", "text": "\u4e4c\u9a6c\u5c14\u00b7\u7ea6\u7ff0\u900a\u535a\u58eb\u548c\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u7ed3\u5a5a\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "2006644", "video_name": "e19ccd8f-d8df-54be-9913-7c0dff40c1c1", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u6cb3\u91cc\u3002"} +{"id": "3004670", "video_name": "3b03281f-4cf4-5fdc-948f-0d690f8d703f", "text": "Translate to Chinese: \u66b4\u98ce\u96e8\u4e2d\u7684\u4e00\u95f4\u8001\u8305\u5c4b\u3002"} +{"id": "8002413", "video_name": "5c04f24a-1242-587e-b7ca-c659004ee128", "text": "\u4e00\u7247\u6709\u6cb3\u6d41\u3001\u5404\u79cd\u52a8\u7269\u3001\u9e1f\u7c7b\u548c\u722c\u884c\u52a8\u7269\u7684\u4e1b\u6797\uff0c\u5728\u6cb3\u5cb8\u8fb9\u559d\u6c34\uff0c\u80cc\u666f\u4e2d\u6709\u7011\u5e03\u548c\u4e0d"} +{"id": "2007196", "video_name": "264e1182-52b5-53a3-aa2c-100dabef00da", "text": "\u624b\u5f71\u5728\u6e7f\u73bb\u7483\u4e0a\uff0c\u795e\u79d8\u83ab\u6d4b\u3002"} +{"id": "1003744", "video_name": "45190aad-caa9-5b30-b12f-d77e545da24a", "text": "\u7535\u5f71\u7535\u5f71\uff0c16\u5c81\u7684\u516c\u4e3b\uff0c\u9ed1\u8272\u957f\u53d1\u5728\u57ce\u5821\u91cc\uff0c\u8bf4\u8bdd\u5f88\u5feb\uff0c\u505a\u624b\u52bf\uff0c4k\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u7f8e\u4e3d\u7684\u9762\u90e8"} +{"id": "0003931", "video_name": "0010bacc-b8f4-5605-975f-016d939f0066", "text": "\u4e00\u53ea\u8682\u8681\u3001\u4e00\u53ea\u6bdb\u6bdb\u866b\u4ee5\u53ca\u5176\u4ed6\u6606\u866b\u5728\u540c\u4e00\u753b\u9762\u4e2d\u3002"} +{"id": "6002294", "video_name": "fd357b9c-2603-5338-935f-5476bcf93fbd", "text": "\u5728\u7231\u5c14\u5170\u7684\u4e00\u7247\u8774\u8776\u8349\u539f\u4e0a\uff0c\u4e00\u4e2a\u7537\u5b69\u5728\u5954\u8dd1\u3002 \n\nSource sentence: The restaurant serves a variety of delicious dishes from different countries. \n\n\u8fd9\u5bb6"} +{"id": "7002047", "video_name": "a50cb89c-0b00-52ad-a611-4c826e7fcd58", "text": "\u5ba2\u673a\u98de\u8d8a\u559c\u9a6c\u62c9\u96c5\u5c71\u3002"} +{"id": "0005469", "video_name": "1b545f71-b00e-582d-bdc5-2abca7eb1e9c", "text": "\u827e\u4e3d\u4e1d\u843d\u5165\u5154\u5b50\u6d1e\uff0c\u7f8e\u56fd\u9ea6\u57fa\u827e\u4e3d\u4e1d\u3002"} +{"id": "0006506", "video_name": "2db0ac4c-8ad8-54ef-bd6e-2951f8bfcb48", "text": "\u8d85\u903c\u771f\uff0c4k\uff0c\u8be6\u7ec6\uff0c\u55b7\u51fa\u7eff\u8272\u706b\u7130\u7684\u5de8\u9f99\uff0c\u5de8\u5927\uff0c\u53e4\u8001\uff0c\u9ed1\u9cde\u3002"} +{"id": "7002028", "video_name": "ff7d2619-2583-5acf-bc9e-8ba969c810e4", "text": "\u96c4\u4f1f\u58ee\u89c2\u7684\u72ee\u5b50\uff0c\u7f8e\u4e3d\u7684\u9b03\u6bdb\u3002\u4fe1\u606f\uff1aPANORAMIX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7003985", "video_name": "297b0ba6-f370-5ab4-95dc-7bada8c90bf3", "text": "\u4e24\u4e2a\u7eff\u8272\u5916\u661f\u4eba\u5728\u4ff1\u4e50\u90e8\u6253\u789f\uff0c\u6fc0\u5149\u3001\u95ea\u5149\u548c\u706f\u5149\u3002\n\nSource sentence: The cat is sleeping on the couch in the living room.\n"} +{"id": "0004850", "video_name": "104523d9-a681-5c9f-9067-185508777cf3", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u534a\u673a\u68b0\u534a\u9a86\u9a7c\u673a\u5668\u4eba\u5728\u5229\u96c5\u5f97\u6c99\u7279\u963f\u62c9\u4f2f\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u98ce\u683c"} +{"id": "0006572", "video_name": "2ec901ac-52da-5e15-a7c2-f376800219a0", "text": "\u4e00\u8258\u592a\u7a7a\u8239\u5728\u7ea2\u8272\u661f\u7403\u4e0a\u770b\u5230\u4e86\u60ca\u4eba\u7684\u666f\u8c61\u3002"} +{"id": "1004387", "video_name": "510de896-4cbd-52c6-8a8a-2ad02783f7f5", "text": "\u4e00\u884c\u4eba\u8d70\u8fdb\u5929\u7a7a\u3002"} +{"id": "6002659", "video_name": "b787edf2-c468-5e8a-a86a-aa6ebef7da52", "text": "\u4e00\u53ea\u9e7f\u5728\u68ee\u6797\u91cc\u5feb\u4e50\u5730\u5954\u8dd1\uff0c\u68ee\u6797\u6709\u70b9\u5c0f\uff0c\u9e7f\u6709\u70b9\u5927\uff0c\u5929\u6674\u6709\u98ce\uff0c\u6811\u53f6\u6447"} +{"id": "3004884", "video_name": "7e076f7a-21d6-5798-8fd5-6d0d9bb291ae", "text": "\u672a\u6765\u7684\u978b\u5b50\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "1004785", "video_name": "586be18c-c61d-57ff-8d03-01f25827350d", "text": "\u4e00\u4e2a\u5927\u7f51\u5305\u88f9\u7740\u4e00\u4e2a\u5e7b\u60f3\u89d2\u8272\u3002"} +{"id": "4003944", "video_name": "92918716-c471-5268-9dab-26948ec6517a", "text": "\u5b69\u5b50\u4eec\u8ffd\u9010\u7740\u6dd8\u6c14\u7684\u7403\uff0c\u4e00\u8fb9\u7b11\u4e00\u8fb9\u73a9\u3002\u56fe\u7247\u5361\u901a\u3002"} +{"id": "7002635", "video_name": "e00ab37a-9854-56e5-b88f-4ca6a54e225c", "text": "\u4ed6\u4ee5\u575a\u5b9a\u7684\u4fe1\u4ef0\u548c\u81f4\u529b\u4e8e\u5e2e\u52a9\u6709\u9700\u8981\u7684\u4eba\u800c\u95fb\u540d\u3002"} +{"id": "1004468", "video_name": "52ba6fed-d2fb-5b7e-b31b-dbde05e0a4b8", "text": "\u65e5\u843d\u7684\u4e91\u5f69\u3002\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002\u4fe1\u606f\uff1aesterillas\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003855", "video_name": "f0160bc0-0493-5ccc-a343-c3c9ccfa491b", "text": "\u6ce2\u97f3747\u6b63\u5728\u98de\u884c\uff0c\u975e\u5e38\u6e05\u6670\u3002"} +{"id": "1005821", "video_name": "6af9b0de-b093-5e96-89cd-795dac178170", "text": "\u4e00\u53ea\u72d7\u5728\u6708\u5149\u4e0b\u5954\u8dd1\uff0c\u6e05\u6670\uff0c\u9ad8\u6e05"} +{"id": "0004357", "video_name": "079c8e35-3891-5659-963c-29f281c81634", "text": "\u6b63\u5728\u4ece\u5185\u90e8\u63a5\u8fd1\u4e00\u5ea7\u5e9f\u5f03\u5efa\u7b51\u7684\u65e0\u4eba\u673a\u3002"} +{"id": "8003815", "video_name": "83f682e4-656d-500d-a2eb-d47fa2c8a85a", "text": "\u5c55\u793a\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\uff0c\u684c\u5b50\u4e0a\u6563\u843d\u7740\u6559\u79d1\u4e66\uff0c\u53ef\u80fd\u80cc\u666f\u6709\u4e00\u53ea\u663e\u793a\u7740\u665a\u70b9\u7684\u65f6\u949f\u3002"} +{"id": "8001832", "video_name": "ffd3b2e3-f6d0-5903-be3e-1d71e49cb521", "text": "\u8fd9\u53ea\u8682\u8681\u975e\u5e38\u52aa\u529b\u5730\u5de5\u4f5c\uff0c\u6700\u7ec8\u5efa\u9020\u4e86\u4e00\u4e2a\u975e\u5e38\u6f02\u4eae\u7684\u623f\u5b50\u3002"} +{"id": "8003901", "video_name": "3eecb0b2-baca-52c3-bf15-c0ff7fdd47bc", "text": "\u53ef\u7231\u7684\u5916\u661f\u4eba\u5728\u697c\u9876\u680f\u6746\u4e0a\u4ef0\u671b\u5929\u7a7a\u4e2d\u7684\u661f\u661f\u3002"} +{"id": "6004579", "video_name": "50087c4a-8e12-5f00-9f6c-51c5a71f4266", "text": "\u5b87\u5b99\u5929\u4f7f\uff0c\u6162\u52a8\u4f5c\u8096\u50cf\uff0c\u8272\u5f69\u548c\u5149\u7ebf\uff0c\u5370\u8c61\u6d3e\u6587\u827a\u590d\u5174\u98ce\u683c\uff0c\u620f\u5267\u6027\u7684\u7535\u5f71\u7167\u660e"} +{"id": "1004635", "video_name": "5633fb71-45b3-5d0b-8d1b-19cbbbdf128a", "text": "\u4e00\u4e2a\u8001\u4eba\u5750\u5728\u957f\u6905\u4e0a\uff0c\u624b\u91cc\u62b1\u7740\u4e00\u53ea\u72d7\uff0c\u7b49\u5f85\u4ed6\u7684\u8f66\u3002"} +{"id": "3005225", "video_name": "efc9c10b-89fc-598a-b07b-ce49aeb1f818", "text": "\u4eba\u5f62\u821e\u8005\u5728\u4e91\u5c42\u4e0a\u8df3\u8857\u821e\u3002"} +{"id": "6002623", "video_name": "0aa84823-06fc-5a1e-991c-2061b12ecb0d", "text": "\u533b\u751f\u7ed9\u8001\u4eba\u5efa\u8bae\u5065\u5eb7\u751f\u6d3b\u3002"} +{"id": "3005664", "video_name": "248c12eb-a185-5754-b43c-54129ba03c86", "text": "\u53ea\u6709\u4e00\u6ef4\u96e8\uff0c\u7535\u5f71\u5316"} +{"id": "3005823", "video_name": "e5ccd478-1503-54c0-8337-8de0064785f4", "text": "\u4e07\u5723\u8282\uff1a\u9ab7\u9ac5\u548c\u5357\u74dc\u706f\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u53d1\u5149\uff0c\u591c\u665a\u7684\u9b54\u6cd5\u5149\u8292\uff0c8K\u3002 (\u5b57"} +{"id": "8003978", "video_name": "f1987292-1b5c-581c-8a46-5a7bfb98db4d", "text": "\u73b0\u4ee3\u4eba\u5728\u9003\u79bb\u5ba3\u4f20\u3002"} +{"id": "6002641", "video_name": "fe7ca3d1-2811-506f-a84c-6d20bcf32ff0", "text": "\u77ed\u53d1\u5973\u5b69\u5728\u5979\u7684\u5367\u5ba4\u91cc\u3002"} +{"id": "8002569", "video_name": "75936d7e-07de-580e-b331-ef85026d9483", "text": "\u65e5\u5b50\u8f6c\u773c\u6210\u4e86\u661f\u671f\uff0c\u661f\u671f\u8f6c\u773c\u6210\u4e86\u6708\u4efd\uff0c\u65e5\u5386\u9875\u4e0d\u65ad\u7ffb\u52a8\u3002"} +{"id": "2003077", "video_name": "ce0ddc94-e90d-522a-ac2a-f54e75f8d140", "text": "\u7279\u65af\u62c9\u7ad9\u5728\u90a3\u91cc\uff0c\u8eab\u7a7f\u7531\u84dd\u8272\u95ea\u7535\u5f62\u6210\u7684\u670d\u88c5\u3002"} +{"id": "2004754", "video_name": "3d80abaa-65d0-5b7d-b83f-e9f7915c458f", "text": "\u7a81\u7136\u6709\u4e00\u53ea\u5c0f\u8c61\u6765\u5230\u4e86\u90a3\u91cc\u3002"} +{"id": "8001477", "video_name": "b6337bae-1099-5115-a08b-730ff6cd958a", "text": "\u5ca9\u77f3\u4ece\u9876\u4e0a\u843d\u5728\u4f60\u8eab\u4e0a\uff0c\u6d1e\u91cc\u53d1\u51fa\u7eff\u8272\u7684\u5149\u3002"} +{"id": "4004753", "video_name": "f06c1cb0-da56-5012-93b4-431b1c95c592", "text": "\u4e00\u4e2a\u7537\u4eba\u4f7f\u7528\u624b\u6301\u667a\u80fd\u8bbe\u5907\u4e0e\u4e00\u4e2a\u84dd\u8272\u4eba\u8138\u7684\u5168\u606f\u5f71\u50cf\u4ea4\u8c08\u3002"} +{"id": "2005635", "video_name": "88d84511-3108-5088-a340-251958083f63", "text": "\u8ba9\u56fe\u7247\u52a8\u8d77\u6765\uff0c\u5634\u5df4\u8bf4\u8bdd\u3002"} +{"id": "1004102", "video_name": "4bf2ded6-ffbe-5571-bcf9-b3cb0f83746f", "text": "translation: \u5728\u9ed1\u6697\u6050\u6016\u7684\u96fe\u6797\u4e2d\u7684\u767d\u8272\u5e7d\u7075\u3002\u903c\u771f\u6050\u6016\u3002"} +{"id": "0003449", "video_name": "3dc0cd05-8362-5bcd-afd8-cfdd9c093614", "text": "\u5efa\u8bae\u5217\u51fa10\u4e2a\u9002\u5408\u513f\u7ae5\u6545\u4e8b\u7684\u4e3b\u9898\u3002\u7136\u540e\u9009\u62e9\u4f60\u8ba4\u4e3a\u6700\u5438\u5f15\u7537\u5b69\u7684\u4e3b\u9898\uff0c\u5199\u4e00\u7bc7\u7ea6200\u5b57\u7684\u6545\u4e8b\u3002"} +{"id": "2003496", "video_name": "e700634b-774a-5de7-a26b-cacd41e1792b", "text": "\u8001\u5e08\u7a7f\u7740\u4e00\u652f\u84dd\u8272\u7684\u94a2\u7b14\uff0c\u4e00\u4ef6\u767d\u8272\u7684\u8863\u670d\uff0c\u914d\u7740\u4e00\u6761\u9ed1\u8272\u7684\u9886\u5e26\uff0c\u4ed6\u8bf4\u6b22\u8fce\u56de\u5230"} +{"id": "6002232", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u6444\u5f71\u5c55\u73b0\u4e86\u4fc4\u7f57\u65af\u5b87\u822a\u5458\u5728\u8054\u76df\u53f7\u5b87\u5b99\u98de\u8239\u4e2d\u7684\u60c5\u666f\u3002"} +{"id": "6004983", "video_name": "eebc58b4-c076-5a48-86c7-ccaf4de6722b", "text": "\u5149\u6548\u679c\u3001\u753b\u9762\u7f29\u653e\u3001\u89e6\u624b\u79fb\u52a8\uff0c\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "5001211", "video_name": "b8d7eb91-d46f-55d9-9391-cf952f19435b", "text": "\u827e\u529b\u514b\u65af\u662f\u4e00\u4e2a\u76ae\u80a4\u767d\u7699\u3001\u68d5\u8272\u5934\u53d1\u7684\u7537\u5b69\uff0c\u5728\u4ed6\u6240\u4f4f\u7684\u5efa\u7b51\u7269\u9876\u5c42\u53d1\u73b0\u4e86\u4e00\u6247\u795e"} +{"id": "3006646", "video_name": "49afe73a-51cf-522d-bf50-dfc63ea07528", "text": "\u4f4f\u5728\u9999\u6e2f\u7684\u4e24\u4e2a\u5927\u5b66\u751f\uff08\u7537\u751f\uff09\u3002"} +{"id": "2004958", "video_name": "acbe0749-d68d-5ca2-b22e-8a8dace72966", "text": "\u6709\u96e8\u7684\u6811\u6728\u666f\u89c2\u548c\u771f\u5b9e\u7684\u7070\u8272\u5929\u7a7a\u3002"} +{"id": "0003265", "video_name": "3a554264-2f5e-5a21-85f7-b9ddb4258c92", "text": "\u5feb\u901f\u52a8\u753b\u7684\u89c6\u9891\u80cc\u666f\u6a21\u677f"} +{"id": "6003276", "video_name": "a39147a5-a31d-5650-a9d9-f632bc0e14fb", "text": "1980\u5e74\u4ee3\u4e61\u6751\u7535\u5f71\u653e\u6620\u7684\u9ad8\u6e05\u6670\u5ea6\u573a\u666f\u3002"} +{"id": "6003696", "video_name": "ea8202e4-7588-58ae-b0f1-fa04c8de7383", "text": "\u72ee\u5b50\u5bb6\u65cf\u5728\u7f8e\u4e3d\u7684\u4e1b\u6797\u8349\u5730\u4e0a\u4e00\u8d77\u73a9\u800d\u3002"} +{"id": "7002511", "video_name": "a40b3dd9-7953-53cc-ba90-98896d1ae7f6", "text": "\u4e00\u8f86\u5149\u6ed1\u7684\u9ed1\u8272SUV\u5728\u6d77\u5cb8\u7ebf\u4e0a\u6ed1\u884c\uff0c\u88ab\u6447\u66f3\u7684\u68d5\u6988\u6811\u548c\u8fdc\u5904\u7684\u5c9b\u5c7f\u6240\u73af\u7ed5\u3002"} +{"id": "4004248", "video_name": "7edf1b69-58c5-55d4-8c87-d4d6a3331227", "text": "\u73b0\u4ee3\u5316\u7684\u623f\u5b50\u4f4d\u4e8e\u8d77\u4f0f\u7684\u52a0\u5229\u798f\u5c3c\u4e9a\u5c71\u4e18\u4e0a\uff0c\u5fae\u98ce\u62c2\u8fc7\u3002\u5c06\u5176\u5236\u4f5c\u6210\u5faa\u73af\u52a8\u753b\u3002"} +{"id": "8003147", "video_name": "cb60419f-5918-587b-8d12-482032772484", "text": "\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u89e6\u6478\u5168\u606f\u89e6\u6478\u5c4f\u3002"} +{"id": "2004308", "video_name": "844b1832-6273-5bc6-983b-82c19bffa5f5", "text": "\u6cb3\u5cb8\u4e0a\u7a7f\u7740\u6c99\u4e3d\u7684\u5973\u4eba\u5728\u8df3\u821e\u548c\u5531Kirtan\u3002"} +{"id": "8001644", "video_name": "39e77945-4eb2-573a-8c2c-e04ec42c41bc", "text": "\u672a\u6765\u4e3b\u4e49\u6f5c\u8247\u9ad8\u79d1\u6280\u88c5\u5907\u5728\u5916\u661f\u6c34\u4e0b\u4e16\u754c\u9886\u57df\u4e2d\u65c5\u884c\uff0c\u5176\u4e2d\u5bc4\u751f\u866b\u548c\u672a\u77e5\u751f\u7269\u3002"} +{"id": "0006026", "video_name": "2535286e-2250-5ef6-9be9-ff39c41103d7", "text": "\u5728\u8fea\u65af\u79d1\uff0c\u5e26\u7740\u8033\u673a\u7684\u6b22\u4e50\u8001\u592a\u592a\u4eec\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "3006988", "video_name": "72b56dc1-20c8-5234-baac-7be34d2f24bd", "text": "\u65f6\u5c1a\u7684\u670d\u88c5\u7531\u56de\u6536\u7684\u725b\u4ed4\u5e03\u5236\u6210\uff0c\u5c55\u73b0\u65f6\u5c1a\u4e4b\u6b65\u3002\n\nSource sentence: I am excited to explore the beautiful scenery of China. \n\n\u6211\u5f88\u5174\u594b\u5730"} +{"id": "6004110", "video_name": "778f5f49-b83b-5fd8-921c-8e8ab703cc21", "text": "\u4e24\u540d\u5370\u5ea6\u7537\u5b50\u7a7f\u7740\u767d\u886c\u886b\u548c\u9ed1\u88e4\uff0c\u53bb\u4e0a\u73ed\u7684\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "0005918", "video_name": "233bf421-e5c5-58c9-a1e7-54ca84309a5d", "text": "\u72c2\u98ce\u547c\u5578\uff0c\u4f7f\u6c99\u5b50\u7ffb\u6eda\u3002"} +{"id": "4004622", "video_name": "9af2ae29-1a0a-53f1-9e5d-559295cc6092", "text": "\u653e\u5927\u6548\u679c\uff0c\u5c04\u7bad\u624b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006115", "video_name": "26d6958c-4881-5326-9853-b17e2bb52ec3", "text": "Gunna\u53d8\u6210\u4e86\u4e00\u652f\u81ea\u5df1\u7684\u519b\u961f\uff0c\u9ad8\u8038\u4e8e\u5176\u4ed6\u4eba\u4e4b\u4e0a\uff0c\u4ee5\u5f70\u663e\u4ed6\u7684\u72ec\u7279\u4e2a\u6027\u3002"} +{"id": "8001070", "video_name": "241935be-e5dc-5ea3-b68e-b154a58859d0", "text": "\u7b49\u8ddd\u9ed1\u767d\u51e0\u4f55\u56fe\u6848\u7eb9\u8eab\u3002"} +{"id": "6003734", "video_name": "a4b1bd97-599c-5db2-95cb-38693168ae1f", "text": "\u6df1\u591c\u7684\u5b89\u6170\u98df\u7269\uff0c\u5982\u5bff\u53f8\u3001\u5929\u5987\u7f57\u548c\u62c9\u9762\u3002"} +{"id": "1003175", "video_name": "3a69fa33-dfd2-5b19-9334-7a232dd4f956", "text": "\u4e00\u6839\u5e26\u6709\u6d41\u4f53\u7684\u4e0d\u9508\u94a2\u7ba1\u3002"} +{"id": "1004365", "video_name": "50a392e9-9966-57ae-80f3-e6d462b6315c", "text": "\u5361\u65af\u5c14\u7ef4\u5c3c\u4e9a\u6697\u5f71\u9886\u4e3b\u8d85\u903c\u771f\u3001\u8d85\u8be6\u7ec6\u7684\u9c8d\u5c14\u5fb7\u62c9\u5e93\u62c9\u52c7\u58eb\uff0c\u7a7f\u7740\u76ae\u7532\uff0c"} +{"id": "2005173", "video_name": "b86e9f9a-d56c-5f73-8475-ce032d05ced9", "text": "\u6234\u9762\u5177\u7684\u7537\u5973\u5728\u8fdb\u884c\u4eea\u5f0f\u3002"} +{"id": "3004447", "video_name": "4ed2f1f2-2210-5c1b-b9a6-6ae7919b3f99", "text": "\u6709\u7740\u9f99\u73af\u7ed5\uff0c\u4fe1\u606f\u4e3a\u8482\u82ac\u5934\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004563", "video_name": "0b4acf47-0da9-5e72-8e24-185fba2da2d4", "text": "\u5c3c\u5b89\u5fb7\u7279\u4eba\u7684\u65e5\u5e38\u6d3b\u52a8\u5305\u62ec\u6b65\u884c\u548c\u53d6\u6c34\u3002"} +{"id": "3005860", "video_name": "b777468a-4fa9-56e5-b610-5d16ea8304ff", "text": "\u751f\u6d3b\u98a0\u5012\u4e86\uff0c\u4e16\u754c\u98a0\u5012\u4e86\uff0c\u5bbd\u9ad8\u6bd49:16\u3002"} +{"id": "2004824", "video_name": "31cfd489-a09c-5c0d-a202-124e958ed520", "text": "\u5927\u57ce\u5e02\u7684\u4e3b\u8981\u8857\u9053\uff0c\u4e3e\u529e\u7740\u4e00\u573a\u6709\u4f17\u591a\u79d1\u5b66\u5bb6\u53c2\u4e0e\u7684\u79d1\u5b66\u7ade\u8d5b\u3002"} +{"id": "0003399", "video_name": "3cfb6e92-82ab-5924-8fc3-db5fa78d7550", "text": "\u4e3b\u6301\u4eba\u5728\u76db\u5f00\u7684\u82b1\u4e1b\u4e2d\u7684\u95ed\u5408\u955c\u5934\uff0c\u8c61\u5f81\u7740\u590d\u82cf\u3002"} +{"id": "3003826", "video_name": "2a85adbb-074c-5535-832f-ddf22dc1243b", "text": "\u5bb6\u4eba\u4e00\u8d77\u4eab\u53d7\u5728\u519c\u5386\u65b0\u5e74\u4e00\u8d77\u5403\u997a\u5b50\u7684\u5feb\u4e50\u3002"} +{"id": "4003130", "video_name": "71167aca-7cea-5eec-8399-c06a927d25ac", "text": "\u592a\u7a7a\u9c7c\u3002\u53cc\u91cd\u592a\u9633\u3002\u661f\u4e91\u3002"} +{"id": "2006660", "video_name": "6e696756-33a2-5e1f-a406-4cf6a476a046", "text": "\u574e\u8036\u00b7\u97e6\u65af\u7279\u5bf9\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u5370\u5ea6\u8857\u5934\u7684\u6bd4\u62fc"} +{"id": "8003075", "video_name": "30c54732-43f4-5a22-b0dd-9b781452f398", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u53d8\u6210\u4e86\u4e00\u4e2a\u53ef\u7231\u7684\u5361\u901a\u5f62\u8c61\uff0c\u652f\u63014K\u3002"} +{"id": "7002397", "video_name": "8505c88c-ad4b-50f6-8604-a41727e1e209", "text": "\u4e24\u4e2a\u63a2\u9669\u5bb6\u624b\u6301\u706f\u7b3c\u5728\u4e00\u4e2a\u6d1e\u7a74\u91cc\u884c\u8d70\u3002"} +{"id": "2007018", "video_name": "957bc699-bb57-5b02-9300-35bc6934e83c", "text": "\u5e74\u8f7b\u60c5\u4fa3\u624b\u7275\u624b\u5728\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684\u6e38\u4e50\u573a\u591c\u665a\u6f2b\u6b65\u3002"} +{"id": "0006258", "video_name": "298a70d9-c4b1-5330-997e-460425b4f285", "text": "\u585e\u7f2a\u5c14\u00b7\u6770\u514b\u900a\u5728\u529e\u516c\u573a\u6240\u4e0e\u653f\u5e9c\u5b98\u5458\u4ea4\u8c08\u3002"} +{"id": "1004337", "video_name": "5013d788-bde1-5201-8f73-640c3d5783b6", "text": "\u5728\u592a\u9633\u4e0b\u54ed\u5f97\u50cf\u706b\u4e00\u6837\u71c3\u70e7\u3002"} +{"id": "2005826", "video_name": "3a23845f-443d-539e-bd9b-f312f88d6b29", "text": "\u5728\u4e00\u500b\u5be7\u975c\u7684\u6c34\u908a\u74b0\u5883\u88e1\uff0c\u4e00\u4f4d\u4e9e\u6d32\u5973\u5b50\u5f48\u594f\u8457\u5409\u4ed6\uff0c\u5275\u9020\u51fa\u4e00\u7a2e\u67d4\u548c\u7684"} +{"id": "1004375", "video_name": "50cabbd2-bf50-5674-a66c-2095d7214f83", "text": "3D\u4e0d\u540c\u7684\u52a8\u7269\u5728\u4e1b\u6797\u91cc\u4e00\u8d77\u5954\u8dd1\uff0c\u6e05\u6670\u53ef\u89c1\u3002"} +{"id": "4003852", "video_name": "71666586-8d35-5495-a04e-3be7bf447735", "text": "\u7c89\u8272\u548c\u6d45\u84dd\u8272\u7684\u97f3\u4e50\u58f0\u6ce2"} +{"id": "3005855", "video_name": "c124c242-2068-5cad-93ee-179893d0cf18", "text": "\u751f\u7269\u4eba\u7c7b\u5927\u8111\u7531\u795e\u7ecf\u7ec6\u80de\u7ec4\u6210\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u7531\u66f2\u6298\u7eb5\u6a2a\u7684\u7a7a\u95f4\u4e2d\uff0c\u89c6\u9891\u8d28\u91cf\u826f\u597d\u4e14\u8f83\u957f\u3002"} +{"id": "8001720", "video_name": "2aaafba5-b0f1-5f88-8e6f-ade50ec7d8a3", "text": "\u7535\u89c6\u5c4f\u5e55\u4e0a\u957f\u51fa\u7684\u89e6\u624b\uff0c4K\uff0c16\uff1a9\u3002"} +{"id": "3005742", "video_name": "495260e9-524c-57f0-8aa5-b45e964361e2", "text": "\u5728\u4e00\u4e2a\u795e\u79d8\u7684\u5929\u9e45\u7ed2\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u7a7f\u7740\u957f\u888d\u7684\u7537\u4eba\u8eab\u8fb9\u7f20\u7740\u7ea2\u8272\u7684\u86c7\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "1004240", "video_name": "4e7a46a3-3384-569e-a740-b0e7c7af16c1", "text": "\u65e0\u7455\u7684\u80dc\u5229\u5fbd\u6807\uff0c\u5e26\u6709\u4e24\u4e2a\u673a\u5668\u4eba\u640f\u6597\u7684\u6807\u5fd7\u3002"} +{"id": "7004594", "video_name": "b6b2464f-f280-5122-b43b-97f6cec856fd", "text": "\u4e00\u4e2a\u7a7f\u7740\u886c\u886b\u548c\u767d\u8272\u4e03\u5206\u88e4\u7684\u8ff7\u4eba\u7684\u68d5\u53d1\u5973\u5b50\u88ab\u7f29\u5c0f\u5c04\u7ebf\u7f29\u5c0f\u4e86\u3002\u4fef\u89c6\u56fe\u3002\u9ad8\u8d28\u91cf"} +{"id": "2006674", "video_name": "9bc7870c-6e51-50ba-bb5c-377f3ecdb08f", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u6d77\u6ee9\u4e0a\u4e0e\u4e00\u4e2a\u6e14\u592b\u4ea4\u8c08\u3002\n\nSource sentence: The sun was setting over the horizon, casting a warm golden glow over the sand. \n\n\u592a\u9633\u6b63\u5728\u6d77\u5e73\u9762\u4e0a"} +{"id": "3005018", "video_name": "cbb9724c-b4ce-57e9-8b4b-e64cc1283f28", "text": "\u4f53\u9a8c\u5728\u9ed1\u6697\u80cc\u666f\u4e0b\u9189\u4eba\u7684\u5f69\u8272\u706f\u5149\u7f8e\u666f\u3002\u5e26\u6709\u7ea2\u8272\u548c\u84dd\u8272\u7684\u6697\u793a\uff0c\u8ba9\u4eba\u60f3\u8d77\u5317\u6781"} +{"id": "6002556", "video_name": "d45b2a6f-ef32-507d-8630-891898399960", "text": "\u743c\u6069\u00b7\u96ea\u8bfa\u4e0e\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "1003061", "video_name": "384377cd-b8e2-53c2-b105-3bf1c14c9e8d", "text": "\u62dc\u68ee\u7684\u5c71\u5730\u571f\u8457\uff0c\u6709\u96fe\u7684\u7535\u5f71\u3002\u4fe1\u606f\uff1a\u5fb7\u514b\u8428\u65af\u5dde\u3002"} +{"id": "2004412", "video_name": "1a0dfd0d-af88-5756-a2f5-521ec9f5fc49", "text": "1980\u5e74\u4ee3\u7684\u7c97\u7cd9\u5f55\u50cf\uff0c\u8bb0\u5f55\u4e86\u4e00\u573a\u5bb6\u5ead\u805a\u4f1a\u3002"} +{"id": "6003093", "video_name": "10ac1533-5b3c-51f8-8985-83592ecc5206", "text": "\u5927\u6d41\u58eb\u56fd\u738b\u5750\u5728\u738b\u5ea7\u4e0a\uff0c\u88ab\u987e\u95ee\u548c\u5b98\u5458\u5305\u56f4\u7740\u3002\u5e74\u8f7b\u7684\u5e0c\u4f2f\u6765\u653f\u6cbb\u5bb6\u4f46\u4ee5\u7406\u7ad9\u5728\u4ed6\u9762"} +{"id": "3003893", "video_name": "5ac1aa3c-f0ea-5ee0-8b63-681fdba1eaf9", "text": "Source sentence: \u4e00\u4e2a11\u5c81\u7537\u5b69\u88ab\u56f0\u5728\u7535\u68af\u91cc\u7684\u89c6\u9891\u3002"} +{"id": "5001585", "video_name": "4fcabeb5-8815-58e3-8f09-17e9d1ac598f", "text": "\u4ece\u5730\u4e0b\u5893\u7a74\u6df1\u5904\u4f20\u6765\u4f4e\u6c89\u3001\u4e0d\u7965\u7684\u9686\u9686\u58f0\u3002\u6c89\u91cd\u7684\u77f3\u76d6\u7f13\u7f13\u79fb\u52a8\uff0c\u63ed\u793a\u51fa\u9ed1\u6697\u7684"} +{"id": "3006198", "video_name": "80325089-c1f4-58a1-bff2-ffae03acab51", "text": "\u6700\u5927\u4e3b\u4e49\u8005\uff1a\u6355\u6349\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u3001\u89c6\u89c9\u7e41\u5fd9\u7684\u573a\u666f\uff0c\u5e86\u795d\u8272\u5f69\u3001\u7eb9\u7406\u548c\u56fe\u6848\u7684\u7206\u70b8"} +{"id": "2003473", "video_name": "f3d5ebef-3408-5438-83a7-f0a04e4ac48e", "text": "\u6211\u5728\u51cc\u66682\u70b9\u5f00\u59cb\u5728\u6781\u5149\u533b\u9662\u7684\u5de5\u4f5c\uff0c\u90a3\u662f\u4e00\u4e2a\u6f06\u9ed1\u3001\u591a\u96e8\u7684\u591c\u665a\u3002\u75b2\u60eb\u611f\u5f25\u6f2b\u7740"} +{"id": "2005766", "video_name": "274b80c3-7b9b-5962-a86a-082756a5ac23", "text": "\u72ee\u5b50\u548c\u8001\u864e\u4e0e\u4ed6\u4eec\u7684\u670b\u53cb\u5206\u4eab\u5b9d\u85cf\uff0c\u88ab\u6b22\u7b11\u548c\u5e78\u798f\u6240\u5305\u56f4\u3002"} +{"id": "7003165", "video_name": "9def1bd0-6335-51f2-9278-4c90a29bea40", "text": "\u7ea2\u8272\u98de\u6e85\u5e76\u6ef4\u843d\u5728\u767d\u8272\u5c4f\u5e55\u4e0a\u3002"} +{"id": "5001310", "video_name": "dae4c786-e601-503b-b304-61de5996b39a", "text": "\u65b0\u7535\u5f71\u300a\u9b3c\u9a6c\u5c0f\u7cbe\u7075\u300b\u7684\u9884\u544a\u7247\u3002"} +{"id": "1006302", "video_name": "735d6b66-1678-5965-9d91-a90feca5f086", "text": "\u7f16\u8f91\u90e8\u7684\u9ed1\u767d\u7167\u7247\u5c55\u793a\u4e86\u4e00\u6b3e\u7cbe\u81f4\u7684\u751c\u70b9\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004370", "video_name": "d227a547-4dfb-532a-b1ba-a70833bf8447", "text": "\u53e4\u5e0c\u814a\u96d5\u50cf\u5f00\u59cb\u5fae\u7b11\uff0c\u5634\u5507\u79fb\u52a8\u3002"} +{"id": "0004925", "video_name": "118af95f-c32b-555d-bfe3-07f51c0d3cd2", "text": "\"Vault B\" \u5b89\u7eb3\u5854\u00b7\u5e15\u5fb7\u66fc\u7eb3\u5df4\u00b7\u65af\u74e6\u7c73\u5bfa\u5e99\u3002"} +{"id": "6003325", "video_name": "b7d86983-2328-5ce2-83e3-79706b376619", "text": "\u5a9a\u4fd7\u7684\u89d2\u8272\u5728\u5168\u7403\u5a9a\u4fd7\u7684\u7c89\u8272\u4e2d\u79fb\u52a8\u3002"} +{"id": "2005539", "video_name": "3bb3eb9a-538e-57a7-a500-0508dfcf4ad3", "text": "\u58eb\u5175\u4eec\u4f4e\u5934\u770b\u7740\u6444\u50cf\u673a\uff0c\u6b63\u5728\u5efa\u9020\u575a\u56fa\u7684\u9632\u5fa1\u5de5\u4e8b\u3002"} +{"id": "3004098", "video_name": "faf65681-f8d4-516a-b58b-5169f5c2a051", "text": "\u871c\u8702\u82b1\u7c89\u53ef\u80fd\u964d\u4f4e\u5fc3\u810f\u75c5\u98ce\u9669\u56e0\u7d20\uff0c\u5982\u9ad8\u8840\u8102\u548c\u80c6\u56fa\u9187\u3002"} +{"id": "2005588", "video_name": "40ef7496-2c14-51a2-a513-cbbc30acda6e", "text": "\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u7b11\u7740\u770b\u7740\u4e00\u7897\u610f\u5927\u5229\u9762\u3002"} +{"id": "3003959", "video_name": "b181d265-7a40-540e-8b8c-770d75b223c8", "text": "\u57ce\u5e02\u4e0a\u7a7a\u51fa\u73b0\u4e86\u4e00\u8258\u5de8\u5927\u7684\u98de\u8239\u5165\u4fb5\uff0c\u5c31\u50cf\u6f2b\u5a01\u590d\u4ec7\u8005\u7535\u5f71\u4e2d\u4e00\u6837\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u6e05\u6670"} +{"id": "0005347", "video_name": "19344300-dbc6-5808-aac0-e7296c0436f8", "text": "\u5f17\u96f7\u5fb7\u00b7\u963f\u65af\u6cf0\u5c14\u5728\u5546\u573a\u8df3\u821e"} +{"id": "7002327", "video_name": "5fc45102-751a-5600-a332-f515d70fa1e4", "text": "\u519c\u573a\u52a8\u7269\u6f14\u594f\u7235\u58eb\u4e50\uff0c\u513f\u7ae5\u7ed8\u672c\u63d2\u56fe\uff0c\u739b\u4e3d\u00b7\u5e03\u83b1\u5c14\u98ce\u683c\u3002"} +{"id": "4003153", "video_name": "7c5962ac-ca3c-5118-9eed-620318cb8601", "text": "\u68ee\u6797\u5e95\u90e8\u8150\u83cc\u8d85\u73b0\u5b9e\u8150\u70df\u68a6\u9b47\u6076\u9b3c\u3002"} +{"id": "8001570", "video_name": "f3820364-0984-5aad-8574-70037a44bb1f", "text": "\u53e4\u7f57\u9a6c\u6597\u517d\u573a\u6709\u6210\u5343\u4e0a\u4e07\u7684\u89c2\u4f17\u3002"} +{"id": "7002110", "video_name": "6ada5803-db8e-5aa2-954b-30b0301f08a0", "text": "\u4e00\u4e2a\u5b69\u5b50\u8eb2\u5728\u7a97\u5e18\u540e\u9762\uff0c\u5bb3\u6015\u5f97\u53ea\u9732\u51fa\u4e86\u4e00\u53ea\u5bb3\u6015\u7684\u773c\u775b\u3002\u4e00\u4e2a\u73a9\u5177\u8f66\u6eda\u8fdb\u753b\u9762\u3002"} +{"id": "5001652", "video_name": "5c553940-e2a5-5f5e-a4c9-9ce58aaf2607", "text": "\u4e00\u53ea\u5899\u4e0a\u6302\u7740\u7684\u65f6\u949f\uff0c\u5b83\u7684\u65f6\u9488\u548c\u5206\u9488\u90fd\u5728\u5feb\u901f\u8f6c\u52a8\uff0c\u7136\u540e\u505c\u5728\u51cc\u66682\u70b930\u5206\u7684\u65f6\u95f4\u3002"} +{"id": "0004431", "video_name": "08cf31c2-6256-546e-8401-25834922c92e", "text": "\u8fea\u58eb\u5c3c\u5361\u901a\u4eba\u7269\u6770\u745e\u8001\u9f20\u6709\u68d5\u8272\u7684\u6bdb\u76ae\uff0c\u624b\u62b1\u80f8\u53e3\uff0c\u9762\u9732\u75db\u82e6\u8868\u60c5\u3002"} +{"id": "3006025", "video_name": "5f0d2177-a7a3-5514-b231-18e60b67e70c", "text": "Source sentence: satyug which is heaven with angels walking\n\nTranslation: \u8428\u63d0\u4e9a\u65f6\u4ee3\u662f\u5929\u5802\uff0c\u5929\u4f7f\u5728\u5176\u4e2d\u884c\u8d70\u3002"} +{"id": "1006913", "video_name": "7e64a1df-5314-5a67-a713-a226784e4d49", "text": "\u7ea2\u8272\u62ab\u98ce\u6253\u5f00\u68ee\u6797\u4e2d\u4e00\u6240\u795e\u5947\u623f\u5c4b\u7684\u95e8\u3002"} +{"id": "1004005", "video_name": "4a206baa-c22e-5463-bafe-9132fa1616c5", "text": "\u201c\u90fd\u4e0d\u91cd\u8981\uff01\u201d\u7ee7\u6bcd\u5636\u58f0\u8bf4\u9053\u3002 \u201c\u8fc7\u6765\u5427\uff0c\u201d\u738b\u5b50\u8bf4\u3002 \u7070\u59d1\u5a18\u8d70\u5230\u4ed6\u8eab\u8fb9\u3002 \u738b\u5b50\u5355"} +{"id": "0003165", "video_name": "387a2da2-a80d-5b8f-8470-2fb6ac490854", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u4e9a\u7f8e\u5c3c\u4e9a\u6e56\u6cca\u6216\u5176\u4ed6\u6c34\u57df\u7684\u89c6\u9891\u3002"} +{"id": "6002112", "video_name": "10d8172b-1e17-5d54-b834-3ec0f8aa9eac", "text": "\u6d77\u72f8\u5fcd\u8005\uff0c\u65e5\u672c\u732b\uff0c\u6728\u5934\uff0cRdr\u3002"} +{"id": "4002744", "video_name": "ae24709d-ca51-5a2f-ac7b-05e0401e95a9", "text": "\u4e00\u4f4d\u68ee\u6797\u4e2d\u7684\u5973\u58eb\u53d1\u73b0\u4e86\u4e00\u6735\u8611\u83c7\uff0c\u5979\u5403\u4e86\u8611\u83c7\uff0c\u88ab\u9001\u5230\u4e86\u53e6\u4e00\u4e2a\u4e16\u754c\uff0c\u8fea\u58eb"} +{"id": "6004045", "video_name": "15ca6eb3-b63a-5041-92b9-22a2431aa90a", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u64cd\u573a\u4e0a\u56db\u5904\u5954\u8dd1\uff0c\u573a\u666f\u4e2d\u52a8\u4f5c\u5f88\u5feb\u3002"} +{"id": "6002794", "video_name": "f85a7d96-7b93-5e09-a430-1198712481e7", "text": "\u5730\u7403\u5347\u8d77\uff0c\u800c\u94f6\u6cb3\u7cfb\u5728\u80cc\u666f\u4e2d\u4ea7\u751f\u89c6\u5dee\u3002"} +{"id": "1006540", "video_name": "77d1d5c2-a48e-5061-9bb4-63d043f74854", "text": "\u7687\u5bb6\u519b\u961f\u7684\u9886\u8896\u5728\u6c99\u6f20\u4e2d\u62ac\u8d77\u4e86\u4ed6\u4eec\u7684\u524d\u817f\u3002"} +{"id": "3005830", "video_name": "b7b65bf1-dde6-5740-8e80-da846bb9ec13", "text": "\u955c\u5934\u62c9\u8fd1\uff0c\u8fd1\u666f\uff0c\u4e91\u53f0\uff0c\u4f7f\u752870\u6beb\u7c73\u80f6\u7247\u62cd\u6444\uff0c\u7a33\u5b9a\uff0c\u6829\u6829\u5982\u751f\uff0c\u620f\u5267\u6027\uff0c\u7535\u5f71\u7248\u5f0f\u3002"} +{"id": "2005872", "video_name": "f9fef632-95c6-532f-a656-15e0a891a52b", "text": "\u7f8e\u56fd\u6b63\u5728\u5d1b\u8d77\u4e3a\u8d85\u7ea7\u5927\u56fd\u300220\u4e16\u7eaa\u7684\u9ed1\u767d\u89c6\u9891\u3002"} +{"id": "1005214", "video_name": "6008df01-04f0-570c-a7c7-4fdb9f3eec92", "text": "\u5723\u8bde\u8282\uff0c\u5723\u514b\u9c81\u65af\u7684\u96ea\u6a47\u5728\u5929\u7a7a\u7ff1\u7fd4\u3002"} +{"id": "0006200", "video_name": "281e8abe-585d-5fe1-b1bb-5cc91cf2d12e", "text": "\u7eff\u8272\u7c98\u6db2\u57284K\u684c\u5b50\u4e0a\u6d41\u6dcc\uff0cTikTok\u4e0a\u8d8b\u52bf\uff0c\u70ed\u95e8\u3002"} +{"id": "4004812", "video_name": "522ef1e4-9cb3-542f-b704-424fb2d0f8d4", "text": ": \"My name is Pip.\" \n\n\u6709\u4e00\u5929\uff0c\u963f\u91cc\u5728\u68ee\u6797\u91cc\u73a9\u800d\uff0c\u770b\u5230\u4e00\u4e2a\u5c0f\u52a8\u7269\u5750\u5728\u5927\u81ea\u7136\u5236\u4f5c\u7684\u79cb\u5343\u4e0a\u3002\u8fd9\u4e2a\u52a8"} +{"id": "1004575", "video_name": "5509c270-edbc-550f-aa01-81298f923ec2", "text": "\u4e00\u8f86\u8dd1\u8f66\u5728\u7ebd\u7ea6\u5e02\u7a7f\u68ad\u3002"} +{"id": "4002954", "video_name": "76c8eccd-53a6-5de5-a8ac-53fd20d0cea8", "text": "\u54c8\u58eb\u5947\u72d7\u72d7\u8eb2\u5728\u96ea\u6d1e\u91cc\u3002"} +{"id": "2007315", "video_name": "9f13d86b-b12f-56e1-8e46-97e871e89e87", "text": "\u653e\u5927\u955c\u5934\u5230\u7a3b\u8349\u4eba\uff0c\u7a3b\u8349\u4eba\u7728\u773c\u3002"} +{"id": "2004484", "video_name": "de247c9a-a325-5f25-9b51-d6b573a1f42b", "text": "\u6c7d\u8f66\u5728\u5706\u73af\u4e2d\u7a7f\u884c\uff0c\u8f66\u8f6e\u8f6c\u52a8\uff0c\u80cc\u666f\u79fb\u52a8\uff0c\u4ece\u6392\u6c14\u7ba1\u5192\u51fa\u70df\u96fe\u3002"} +{"id": "0005644", "video_name": "1e925b73-8ef9-5df5-bf62-7a8e4b274081", "text": "25. \u4e00\u7fa4\u6709\u624d\u534e\u7684\u5de5\u5320\u6b63\u5728\u6062\u590d\u6c49\u666e\u8482\u00b7\u9ea6\u514b\u9053\u5c14\uff0c\u4ed6\u4eec\u751f\u52a8\u7684\u989c\u6599\u548c\u5237\u5b50\u6b63\u5728\u521b\u9020"} +{"id": "8003610", "video_name": "0be7b60c-bddd-5b14-8b05-da1e58867917", "text": "\u6c7d\u8f66\u4ece\u96a7\u9053\u51fa\u53e3\u51fa\u6765\u7684\u89c6\u89d2\u3002\u968f\u7740\u955c\u5934\u8d8a\u6765\u8d8a\u63a5\u8fd1\u96a7\u9053\u51fa\u53e3\uff0c\u5149\u7ebf\u9010\u6e10\u53d8\u4eae\u3002"} +{"id": "3006023", "video_name": "80e3a5b8-53bb-5512-ac1e-17d6402d8af8", "text": "\u5973\u5b69\u5728\u7a7a\u95f4\u4e2d\u54ed\u6ce3\uff0c\u56e0\u4e3a\u4f60\u7684\u661f\u7403\u7ed3\u675f\u4e86\u3002"} +{"id": "4004498", "video_name": "2c9f34ab-f51d-5d8b-bff0-ac9699b5d915", "text": "\u5c55\u793a\u4e00\u4f4d\u5728\u534e\u5c14\u8857\u5de5\u4f5c\u7684\u4eba\u60ca\u6050\u7684\u9762\u5bb9\u30024k \u5206\u8fa8\u7387\u3002"} +{"id": "2005859", "video_name": "1b30a9f0-ebe2-535f-86c6-179ce9fe8262", "text": "\u91ca\u8fe6\u725f\u5c3c\u628a\u77f3\u5934\u4ea4\u7ed9\u4e86\u4ed6\u7684\u5f1f\u5b50\u3002"} +{"id": "4002290", "video_name": "a091a995-1bb4-5bd0-9d95-f601e26027ca", "text": "\u5927\u9c7c\u548c\u5c0f\u9c7c\u5728\u6c34\u4e0b\u7684\u89c6\u89d2\n(D\u00e0 y\u00fa h\u00e9 xi\u01ceo y\u00fa z\u00e0i shu\u01d0 xi\u00e0 de sh\u00ec ji\u01ceo)"} +{"id": "6002255", "video_name": "2d915502-03a8-54dd-892e-b64a813091b7", "text": "\u795e\u5947\u7684\u590d\u53e4\u98ce\u683c\u623f\u8f66\uff0c\u5929\u4e0a\u7684\u661f\u7a7a\u3002"} +{"id": "1003767", "video_name": "45623048-58e0-5714-baa2-796d2159d951", "text": "\u52a8\u753b\u7684\u53ef\u7231\u767d\u4eba\u548c\u4e9a\u6d32\u5973\u6027\uff0c25\u5c81\uff0c\u7a7f\u7c89\u8272\u8863\u670d\uff0c\u68d5\u8272\u957f\u53d1\uff0c\u8ff7\u4f60\u88d9\u3002"} +{"id": "3006913", "video_name": "aa7b52b9-991d-5e1a-8ca4-d35c0960feda", "text": "\u7f29\u653e\u5230\u4e00\u4e2a\u5e26\u53cd\u5149\u592a\u9633\u955c\u7684\u9177\u840c\u65e0\u6bdb\u732b\uff0c\u5b83\u7ad9\u5728\u51b2\u6d6a\u677f\u4e0a\u901a\u8fc7\u5927\u84dd\u8272\u51b2\u6d6a\u6d6a"} +{"id": "1003958", "video_name": "491ecb98-d90d-53a0-ae0c-22b4f3778a67", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u53a8\u5e08\u5728\u6cf0\u5766\u5c3c\u514b\u53f7\u7684\u53a8\u623f\u91cc\u5c06\u6d3b\u6cfc\u7684\u9f99\u867e\u653e\u5165\u70f9\u996a\u3002"} +{"id": "8001862", "video_name": "b470b98d-ba4a-5292-a2d4-69f79f759624", "text": "3D\u52a8\u753b\uff0c\u8302\u5bc6\u68ee\u6797\uff0c\u8fc5\u901f\u751f\u957f\uff0c\u6709\u98ce\u7684\u65e5\u5b50\u3002"} +{"id": "0005594", "video_name": "1da901ca-0e33-50d9-8e14-afb4cd9b200e", "text": "\u4e00\u4e2a\u6c34\u624b\u7684\u6545\u4e8b\uff0c\u4ed6\u5728\u6d77\u91cc\u6e38\u6cf3\u4e86\u4e94\u5e74\u540e\u56de\u6765\u770b\u4ed6\u7684\u5bb6\u4eba\u3002\n\nSource sentence: The restaurant is closed on Sundays. \n\u9910\u5385\u661f\u671f\u5929\u5173\u95e8\u3002"} +{"id": "1004893", "video_name": "5a68c3ef-da5a-5909-90a7-31d0a93da7a7", "text": "\u4e24\u4e2a\u6210\u4eba\u548c\u4e24\u4e2a\u5b69\u5b50\u4e00\u8d77\u4e0a\u8f66\u3002"} +{"id": "7004706", "video_name": "981b6dd5-ec69-58f8-8de9-b812507a90f8", "text": "\u4e00\u8f6e\u5de8\u5927\u660e\u4eae\u7684\u6708\u4eae\u5347\u8d77\u5728\u6d77\u9762\u4e0a\uff0c\u6ca1\u6709\u88ab\u4e91\u6735\u906e\u6321\u3002"} +{"id": "6002769", "video_name": "0e947b1a-e059-59e0-ad7e-65c805107736", "text": "\u5973\u4eba\u5728\u9633\u53f0\u4e0a\u7b11\u7684\u9ad8\u6e05\u56fe\u50cf"} +{"id": "3004797", "video_name": "c49839c6-c0ee-543f-8666-564eab59a201", "text": "\u673a\u5668\u4eba\u5728\u80cc\u666f\u4e3a\u4e00\u5ea7\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u4e0a\uff0c\u4f7f\u7528\u5149\u7ebf\u8ffd\u8e2a\u548c8k\u6280\u672f\uff0c\u521b\u9020\u65b0\u5efa\u7b51\u7684\u5168\u606f\u8bbe\u8ba1\u3002"} +{"id": "2004517", "video_name": "08b507af-c211-5586-b410-b21fbf594a82", "text": "Source sentence translated into Chinese: \u5236\u4f5c\u4e00\u4e2a\u63cf\u8ff0\u7537\u4eba\u5367\u5ba4\u7ecf\u6d4e\u5931\u8d25\u7684\u89c6\u9891\uff0c\u7537\u4eba\u4eec\u5e94\u8be5\u6709\u7ea2\u8272\u7684\u773c\u7403\uff0c\u521a\u4ece\u5e8a\u4e0a\u7ad9\u8d77\u6765\uff0c\u601d\u8003"} +{"id": "3006435", "video_name": "65d21bf0-c56c-5710-a364-76fb0dc3d31d", "text": "\u5f53\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u8302\u5bc6\u7684\u68ee\u6797\u6811\u51a0\u65f6\u3002"} +{"id": "6003557", "video_name": "dea5663f-f61d-52b1-9b53-cce80d7e0585", "text": "\u8fea\u62dc\u5e02\u7684\u5929\u9645\u7ebf\uff0c\u963f\u8054\u914b\u56fd\u65d7\u98d8\u626c\uff0c\u6444\u50cf\u5934\u7f29\u653e\u81f3\u54c8\u5229\u6cd5\u5854\u4e0a\u7684\u963f\u8054\u914b\u56fd\u65d7\u3002"} +{"id": "4002633", "video_name": "b4d8dc29-cb15-5c37-bb84-97888ebe3b28", "text": "5\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u8df3\u821e\uff0c\u9ad8\u8d28\u91cf\u903c\u771f\u76844K\u3002"} +{"id": "3004413", "video_name": "5aeb99f5-cb7e-5b11-9d39-b60dd7b5ef54", "text": "\u5728\u4e1b\u6797\u91cc\u751f\u6210\u4e00\u53ea3D\u5361\u901a\u8c61\u3002"} +{"id": "2007760", "video_name": "4030b4ef-964c-56af-bd6e-d2f58e9e842d", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u53ea\u795e\u79d8\u7684\u5c0f\u72d0\u72f8\u6765\u5230\u4e86\u68ee\u6797\u3002\u5b83\u6709\u7740\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u8272\u6bdb\u53d1\u548c\u806a\u660e\u7684"} +{"id": "1004234", "video_name": "4e69448b-aa40-540f-b733-dac2dd9ae711", "text": "\u5728\u9065\u8fdc\u7684\u672a\u6765\uff0c\u5730\u7403\u5df2\u7ecf\u53d8\u5f97\u964c\u751f\u800c\u8352\u51c9\u3002\u5927\u591a\u6570\u4eba\u7c7b\u5df2\u7ecf\u524d\u5f80\u5176\u4ed6\u661f\u7403\u5bfb\u627e\u65b0\u5bb6\u56ed\u3002\u53ea\u6709\u4e00\u5c0f"} +{"id": "8003597", "video_name": "f84b15b6-b489-5ee7-8b4c-3343a93172ea", "text": "\u901f\u5ea6\uff1a\u6355\u6349\u901f\u5ea6\u7684\u5f3a\u5ea6\u548c\u529b\u91cf\u3002\u730e\u8c79\u5954\u8dd1\u3002"} +{"id": "1004690", "video_name": "57247ef5-fe34-5578-9f2b-8f08cb4ff6f4", "text": "\u649e\u51fb\u5730\u7403\u7684\u5c0f\u884c\u661f\u7684\u58ee\u89c2\u753b\u9762"} +{"id": "2006195", "video_name": "146874ba-682f-5fd0-90c4-05c771a8bc5a", "text": "\u4e00\u500b\u5973\u4eba\u7684\u8173\u653e\u5728\u9ad4\u91cd\u8a08\u4e0a\u3002"} +{"id": "0005001", "video_name": "130d92b7-5675-501c-b9db-3dfd4bfb14c5", "text": "\u5b87\u822a\u5458\u5728\u62e5\u6324\u7684\u9053\u8def\u4e0a\u884c\u8d70\uff0c3D\u903c\u771f\u3002"} +{"id": "6003581", "video_name": "4be11b52-850b-5abb-8941-ef83b6674848", "text": "3\u4f4d\u516c\u4e3b\uff0c\u4e00\u4f4d\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\uff0c\u7ea2\u8272\u5934\u53d1\uff0c\u53e6\u4e00\u4f4d\u80d6\u80d6\u7684\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\uff0c\u9ed1\u8272\u5934\u53d1\uff0c"} +{"id": "2004655", "video_name": "47af1b3c-3df8-557c-876a-2a0ebeeb8cb8", "text": "\u96e8\u6797\u573a\u666f\uff0c\u6709\u9e1f\u513f\u98de\u7fd4\uff0c\u81ea\u7136\u7684\u58f0\u97f3\u548c\u8f7b\u67d4\u7684\u96e8\u58f0\u3002"} +{"id": "3004653", "video_name": "fde606e0-9fe9-5681-95a9-d0b332e54233", "text": "\u5728\u6708\u7403\u4e0a\u9a91\u4e0b\u5761\u81ea\u884c\u8f66\uff0c\u5e7f\u89d2\u955c\u5934\u3002"} +{"id": "8003207", "video_name": "9bd4a621-c562-58f7-a881-b2af8f79c76b", "text": "\u4e00\u8258\u9ad8\u901f\u884c\u9a76\u7684\u5feb\u8247\u5728\u6d77\u9762\u4e0a\u822a\u884c\u3002"} +{"id": "7003235", "video_name": "d3f2e0d8-d965-50e5-bc03-186436645528", "text": "\u4ee5\u8272\u5217\u5c0f\u5973\u5b69\u4e0e\u5df4\u52d2\u65af\u5766\u7537\u5b69\u4e00\u8d77\u73a9\u8df7\u8df7\u677f\u3002"} +{"id": "0005815", "video_name": "21a8a0bf-aef8-5fc4-a19d-f0a5a074904b", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\uff0c\u70d8\u7119\u7c89\u672b\u98de\u821e\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3003634", "video_name": "30d82976-6481-5b12-ae3b-3ce04e0f0b26", "text": "\u4e00\u4f4d\u5584\u826f\u7684\u5723\u8bde\u8001\u4eba\u5411\u7a7a\u4e2d\u6492\u4e0b\u793c\u7269\u5e76\u65cb\u8f6c\u3002"} +{"id": "4002439", "video_name": "e31f93a0-2ece-591e-8d17-fa6e9f3dd8d9", "text": "\u4e00\u4e2a\u73bb\u7483\u74f6\u5728\u9633\u5149\u4e0b\u7834\u788e\uff0c\u6c34\u56db\u6e85\uff0c\u80cc\u666f\u5448\u84dd\u8272\u3002"} +{"id": "1003728", "video_name": "44dbb7cc-6f12-531e-82a7-5de9f6c28102", "text": "\u533f\u540d\u7684\u9ed1\u5ba2\u6b63\u5728\u952e\u5165\u5173\u952e\u5b57\u3002"} +{"id": "3006952", "video_name": "c8c93665-5d51-56bc-b6db-8715dc1c444e", "text": "\u5723\u8bde\u8001\u4eba\u5728\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\u4e0a\u8df3\u821e\uff0c\u5468\u56f4\u88c5\u9970\u7740\u5723\u8bde\u88c5\u9970\u54c1\u3002"} +{"id": "1003127", "video_name": "398c2514-5afe-5a95-9b4f-3e65eb0082c9", "text": "\u5c0f\u5154\u5b50\u9192\u6765\u4e86\uff0c\u63c9\u4e86\u63c9\u773c\u775b\uff0c\u6ee1\u8138\u7b11\u5bb9\u5730\u671b\u7740\u5929\u7a7a\u3002"} +{"id": "2003997", "video_name": "50ccd48e-fae5-5c4c-9705-c3bcf26eb88a", "text": "\u4e00\u7247\u68ee\u6797\uff0c\u76f8\u673a\u653e\u5927\uff0c\u5b57\u4f53\u4e3aMODERN\uff0c\u663e\u793aYogaSlackline\u3002"} +{"id": "0005526", "video_name": "1c466441-69ed-5675-b250-3d235eabde65", "text": "\u7167\u4eae\u6d69\u514b\u4e0e\u4e00\u7fa4\u6b66\u88c5\u96c7\u4f63\u5175\u4e4b\u95f4\u7684\u5bf9\u6297\u3002"} +{"id": "2003873", "video_name": "05480d9c-7e17-53b4-97fb-c0d118fd50f2", "text": "DJ\u6234\u7740\u8033\u673a\u548c\u5934\u76d4\uff0c\u6234\u7740\u9ab7\u9ac5\u9762\u5177\u5728\u5395\u6240\u91cc\uff0c\u7c7b\u4f3c\u4e8e\u7535\u5f71\u300a\u94f6\u7ffc\u6740\u624b\u300b\u7684\u98ce"} +{"id": "2007758", "video_name": "453a5f3d-3002-5d01-8ef7-b8cd10809460", "text": "\u4e00\u6735\u9b54\u5e7b\u7684\u82b1\uff0c\u5e26\u7740\u7f8e\u4e3d\u7684\u4f4e\u51493D\u6e32\u67d3\u3002"} +{"id": "2006859", "video_name": "a1ed40a4-5664-5b01-9f31-0560e1ae9739", "text": "\u661f\u671f\u4e00\u8001\u5e08\u9ad8\u5174\u5730\u8df3\u8dc3\u7740\u53bb\u4e0a\u73ed\u3002"} +{"id": "4003244", "video_name": "789bf51f-2a38-55a8-9a6c-fd3b966d1739", "text": "\u8fd0\u52a8\u4e2d\u5145\u6ee1\u8272\u5f69\u7684\u7c92\u5b50\uff0c4K\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "7002967", "video_name": "6dba55f7-e269-5f45-89df-d12021c0870b", "text": "\u9547\u4e0a\u7684\u5c45\u6c11\u805a\u96c6\u5728\u8857\u5934\u56f4\u89c2\u8df3\u821e\u7684\u5973\u4eba\u3002"} +{"id": "0006462", "video_name": "2cfe5b49-0134-5a55-afab-2d6635fd1584", "text": "\u5728\u7ed8\u753b\u4e2d\u521b\u9020\u4e00\u53ea\u624b\uff0c\u624b\u9700\u8981\u5728\u955c\u5b50\u91cc\u624d\u80fd\u521b\u9020\u51fa\u94a2\u94c1\u4fa0\u3002\n\nSource sentence: Learning a new language can be challenging, but it is also very rewarding"} +{"id": "7002892", "video_name": "16a90a36-a55b-55cf-a6fc-c1f4d60a7bc7", "text": "\u4ece\u5730\u677f\u4e0a\u7684\u6d1e\u4e2d\u5192\u51fa\u7684\u751f\u7269\uff0c\u9ed1\u6697\uff0c\u9634\u5f71\uff0c\u6050\u6016\u7535\u5f71\u3002"} +{"id": "5001356", "video_name": "586b4faa-5a77-5b1e-88a3-c2342d323429", "text": "\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u82ad\u857e\u957f\u88d9\u7684\u5c0f\u82ad\u857e\u5973\u5b69\u7ad9\u5728\u82ad\u857e\u821e\u5ba4\u7684\u7a97\u6237\u8fb9\uff0c\u6ce8\u89c6\u7740"} +{"id": "8001253", "video_name": "a73d4877-244a-5c3b-9013-ef3ea1dfd599", "text": "\u4e00\u95f4\u73b0\u4ee3\u5316\u7684\u5317\u65b9\u5ba4\u5185\u5ba2\u5385\uff0c\u62e5\u6709\u9633\u5149\u548c\u82b1\u5349\u88c5\u9970\u3002"} +{"id": "1003169", "video_name": "3a5e5581-b4c2-5321-b75b-a7500b7bc1db", "text": "\u51ef\u6587\u00b7\u53f2\u5bc6\u65af\u4ee5\u8d5b\u535a\u670b\u514b\u98ce\u683c\u626e\u6f14\u6c89\u9ed8\u9c8d\u52c3\u89d2\u8272\u65f6\u559d\u9152\u3002"} +{"id": "1004261", "video_name": "4eeb9588-01ef-5feb-b872-9ad89c5f66bb", "text": "1860\u5e74\uff0c\u5e26\u6709\u94f6\u84dd\u8272\u773c\u775b\u7684\u7535\u5f71\u98ce\u683c\uff0c\u666e\u9c81\u58eb\u519b\u6821\u5b66\u5458\u6b63\u5728\u9605\u8bfb\u4e00\u5f20\u5730\u56fe\u3002"} +{"id": "2004155", "video_name": "0363a210-844b-5940-bb18-ef1e16f86c48", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u7a7f\u7740\u62f3\u51fb\u77ed\u88e4\uff0c\u5728\u62f3\u51fb\u53f0\u4e0a\u6234\u7740\u7ea2\u624b\u5957\uff0c\u7279\u51994K\u52a8\u753b\u3002"} +{"id": "0005743", "video_name": "20781dd8-0b57-564b-8bef-b216719ed029", "text": "\u4e00\u8f6e\u6ee1\u6708\u6302\u5728\u4e91\u5c42\u4e2d\uff0c\u4e91\u6735\u8f7b\u8f7b\u5730\u79fb\u52a8\u7740\uff0c\u5728\u5730\u9762\u4e0a\u6295\u4e0b\u8be1\u5f02\u7684\u5f71\u5b50\u3002"} +{"id": "6004844", "video_name": "7382be22-1ddd-55dd-81e1-4b26c5336f11", "text": "\u65e0\u8bba\u662f\u8c01\u6216\u6765\u81ea\u54ea\u91cc\uff0c\u5e2e\u52a9\u90a3\u4e9b\u9700\u8981\u5e2e\u52a9\u7684\u4eba\u7684\u60f3\u6cd5\u6df1\u6df1\u5730\u6253\u52a8\u4e86\u4ed6\u3002"} +{"id": "1006858", "video_name": "7d3a2fc0-3b80-571a-9542-e442d8262a0e", "text": "\u5b50\u9875\u9762\u4e0e\u9b54\u6cd5\u95e8\u6237\u3002"} +{"id": "1003881", "video_name": "477dbb83-d30c-5a22-be4b-07a69d7adec3", "text": "\u6f02\u6d6e\u7684\u6c34\u7403\u548c\u6ce2\u6d6a"} +{"id": "3003213", "video_name": "a1e2b6bc-6f1c-5585-ac0b-ffdc3538748b", "text": "\u5728\u4e00\u4e2a\u70df\u96fe\u7f2d\u7ed5\u7684\u9ed1\u6697\u9152\u5427\u821e\u53f0\u4e0a\u6709\u4e00\u652f\u73b0\u573a\u4e50\u961f\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002\n\nSource sentence: I would like to order a medium rare"} +{"id": "8002596", "video_name": "3c753bc9-8e46-5510-a217-f66b6f713e18", "text": "\u7b14\u5728\u7b14\u8bb0\u672c\u7684\u884c\u91cc\u4e66\u5199\uff0c\u610f\u5473\u7740\u6210\u957f\u548c\u8dcc\u843d\u3002"} +{"id": "0006774", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "\u7f8e\u4e3d\u7684\u9521\u514b\u5973\u5b50\u5750\u5728\u5ca9\u77f3\u4e0a\u770b\u7740\u5927\u6d77\u3002"} +{"id": "2007983", "video_name": "122d1bba-9983-5ecd-92ab-5910580e139a", "text": "\u767d\u8272\u5766\u514b\u5f62\u5982\u9f9f\u58f3\uff0c\u5411\u955c\u5934\u79fb\u52a8\u3002"} +{"id": "7004665", "video_name": "2fcea3b8-ea2a-57a3-9072-b2b0f0e6b405", "text": "\u5b87\u822a\u5458\u3001\u9c9c\u8273\u7684\u989c\u8272\u3001\u4e30\u5bcc\u7684\u7ec6\u8282\u3001\u8fdc\u666f\u3001\u4fef\u77b0\u76f8\u673a\u3001\u52a8\u753b\u706f\u5149\u3001\u5149\u7ebf\u8ffd"} +{"id": "1004323", "video_name": "4fd7bb74-a9c4-51b1-a65e-13e0de6358c2", "text": "\u843d\u65e5\u5728\u5df4\u897f\u8428\u5c14\u74e6\u591a\u706f\u5854\u9644\u8fd1\u3002"} +{"id": "2003343", "video_name": "83097971-dfb9-5c1a-9fc4-0a9bedfb3c9c", "text": "\u50cf\u7d20\u98ce\u683c\uff0c\u4ece\u7a97\u6237\u770b\u65e5\u843d\u3002"} +{"id": "3005979", "video_name": "acb479e1-fc0f-551d-97f5-15f034beb281", "text": "\u7535\u5f71\uff0c\u6050\u6016\u7535\u5f71\uff0c\u7ecf\u5178\u666e\u904d\u6050\u6016\u7247\uff0c\u9ed1\u767d\u7247\uff0c\u7f8e\u4e3d\u7684\u5438\u8840\u9b3c\u5973\u58eb\uff0c\u5a01\u80c1\u7684"} +{"id": "0005831", "video_name": "21dc971c-5b2b-517b-82a1-9a4c7f44a690", "text": "\u706d\u9738\u548c\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u4e00\u5ea7\u672a\u6765\u57ce\u5e02\u7684\u5e9f\u589f\u4e2d\u640f\u6597\u3002"} +{"id": "8001399", "video_name": "2fd61e83-e9a0-531f-8841-2caaaa784439", "text": "\u4e00\u6761\u9ed1\u767d\u7ebf\u4e0a\u6eda\u52a8\u7740\u6c34\u6676\u7403\u3002"} +{"id": "7004928", "video_name": "e8ea3a7c-3dac-5b4d-b09b-7cddab38f3d4", "text": "\u7ea2\u9ed1\u76f8\u95f4\u7684\u751f\u7269\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002"} +{"id": "4002258", "video_name": "3b457233-7840-539a-a310-bf1dcab32376", "text": "\u79cb\u53f6\u7684\u67d4\u548c\u98d8\u843d\n\nSource sentence: I am looking forward to the weekend."} +{"id": "8002838", "video_name": "04295708-1136-58f7-a623-e069b1fdaf1f", "text": "\u5728Minecraft\u4e16\u754c\u4e2d\uff0c\u4e00\u8f86\u4e00\u7ea7\u65b9\u7a0b\u5f0f\u8d5b\u8f66\u4e0e\u961f\u53cb\u6bd4\u8d5b\u3002"} +{"id": "7003644", "video_name": "dea37029-f584-5e1e-b177-711c81834632", "text": "\u5728\u4e00\u5bb6\u8d4c\u573a\u524d\u592b\u59bb\u4e89\u5435\u3002"} +{"id": "7004534", "video_name": "c83ad4ef-ae37-5afd-8870-22a9d99680ea", "text": "\u6885\u897f\u548c\u7f57\u7eb3\u5c14\u591a\u7684\u4eba\u8138\u878d\u5408\u56fe\u3002"} +{"id": "7002108", "video_name": "0b8b38c6-f82d-5f64-89d8-0618d09f4707", "text": "\u5728\u8212\u9002\u7684\u623f\u5b50\u91cc\u4eab\u53d7\u96e8\u5929\u7684\u559c\u60a6\uff0c4k\u89c6\u9891"} +{"id": "2006731", "video_name": "ac63a9ec-f70e-568c-9b45-f96dc3e0df05", "text": "\u9a91\u624b\u4eec\u6d3b\u4e86\u8d77\u6765\uff0c\u8dd1\u5411\u8fdc\u65b9\u3002"} +{"id": "2005736", "video_name": "f86db345-2e47-5f22-99e9-dc340f9dfe3f", "text": "\u521b\u9020\u4e00\u4e2a\u5e26\u6709\u73b0\u4ee3\u98ce\u683c\u7684\u97f3\u4e50\u5de5\u4f5c\u5ba4\u5f62\u8c61\uff0c\u5404\u79cd\u4e50\u5668\u548c\u8bbe\u5907\u8fde\u63a5\u5230\u6781\u7b80\u4e3b\u4e49\u754c\u9762\uff0c\u663e\u793a\u51fa\u4e30\u5bcc\u591a"} +{"id": "8003832", "video_name": "061cd87f-fd6c-576e-8b68-4cdacb99a245", "text": "\u65cb\u8f6c\u56de\u65cb\u9556\uff0c\u9752\u8272\u80cc\u666f\uff0c\u7eff\u5e55\u7279\u6548"} +{"id": "7003114", "video_name": "dfad80a7-76af-543c-b228-4a9616375f3d", "text": "\u8783\u87f9\u3001\u6d77\u8c5a\u3001\u6d77\u9a6c\u8df3\u7740\u821e\u5e86\u795d\u4ed6\u4eec\u7684\u53d1\u73b0\u3002"} +{"id": "0003046", "video_name": "36105c69-4763-5367-b6b4-315858a94c27", "text": "\u4e00\u4e2a\u4eba\u9762\u5bf9\u56f0\u5883\uff0c\u5fc5\u987b\u7406\u667a\u5e94\u5bf9\uff0c\u63a7\u5236\u60c5\u7eea\u3002"} +{"id": "1004146", "video_name": "4cca1d03-4bbe-5512-91e5-dbec6b3bcd56", "text": "\u4e00\u7bee\u5b50\u7f8e\u4e3d\u7684\u6c34\u679c\uff0c\u7ef4\u62c9\u65af\u594e\u5179\u98ce\u683c\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "1005864", "video_name": "6bf22d41-ed43-56e6-a318-1a3b8ef3f559", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u6e56\u7554\u7684\u6e56\u7554\u821e\u8e48\u8005\u5728\u5c71\u95f4\u8df3\u821e\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7004885", "video_name": "50f92112-8891-5d05-9c6f-ea64572cc8cc", "text": "\u4e00\u4e2a\u8001\u4eba\u7948\u7977\u76843D\u52a8\u753b\u548c\u4e00\u628a\u767d\u80e1\u5b50"} +{"id": "8001710", "video_name": "9a3bcb53-f8f0-5d50-a1c5-0ca77ff16fef", "text": "\u5728\u4e00\u7247\u82b1\u6d77\u4e2d\uff0c\u4e00\u4e2a\u4e66\u5446\u5b50\u7537\u5b69\u4ef0\u671b\u661f\u7a7a\uff0c\u7531Makoto Shiing\u7ec6\u81f4\u63cf\u7ed8\uff0c\u8d28\u91cf\u60ca\u4eba\uff0c\u53d7\u5230ArtStation"} +{"id": "6004944", "video_name": "af049e4d-3991-55a2-b208-1cc8022bda43", "text": "\u521b\u4f5c\u4e00\u4e2a\u52a8\u753b\uff0c\u63cf\u8ff0\u4e00\u4e2a\u9001\u9910\u5458\u8fdb\u5165\u81ea\u5df1\u7684\u623f\u95f4\u5e76\u9760\u5728\u5899\u4e0a\uff0c\u60ca\u8bb6\u5730\u53d1\u73b0\u81ea\u5df1\u7684\u59bb\u5b50\u51fa\u8f68\uff0c"} +{"id": "7002292", "video_name": "37a3ab72-0376-55fc-bea3-6a078111998a", "text": "\u4e00\u4f4d\u5e74\u4ec518\u5c81\u7684\u5e74\u8f7b\u897f\u73ed\u7259\u6df7\u8840\u58eb\u5175\uff0c\u57281863\u5e74\u7684\u4e09\u8054\u76df\u6218\u4e89\u4e2d\uff0c\u6ce8\u89c6\u7740\u5730\u5e73\u7ebf\u3002\u8eab\u7a7f"} +{"id": "7004353", "video_name": "0426d222-33f3-5841-806d-218be9ec7c63", "text": "\u4e00\u53ea\u732b\u5728\u9e2d\u5b50\u4e2d\u95f4\uff0c\u88ab\u9e2d\u5b50\u5305\u56f4\u7740\u3002"} +{"id": "4002216", "video_name": "117113ab-fb71-56fd-9cf8-213312453f21", "text": "\u83ab\u624e\u7279\u7537\u5b69\u5728\u8428\u5c14\u8328\u5821\u7684\u5bb6\u4e2d\u6f14\u594f\u5927\u952e\u7434\u3002\u4ed6\u7684\u59d0\u59d0\u5fc5\u987b\u62c9\u5c0f\u63d0\u7434\uff0c\u800c\u4ed6\u7684\u7236"} +{"id": "1004795", "video_name": "58a6a97c-2fc5-5199-8f3c-156051af5db8", "text": "\u4e00\u4e2a\u5bbd\u9614\u7684\u822a\u62cd\u89c6\u89d2\u663e\u793a\u4e86\u9ec4\u660f\u65f6\u5206\u70ed\u95f9\u7684\u57ce\u5e02\uff0c\u57ce\u5e02\u706f\u5149\u5f00\u59cb\u95ea\u70c1\u3002\u6444\u50cf\u673a\u7f13\u6162"} +{"id": "3005671", "video_name": "19e118c8-0876-53f2-8609-79b02aea4c11", "text": "\u8d70\u8def\u7684\u5973\u5b69\u5728\u96fe\u4e2d\u6d88\u5931\u4e86\u3002"} +{"id": "3006228", "video_name": "60a24643-f5d6-53b9-93f4-9810dff01fbe", "text": "\u4e00\u53ea\u5e03\u5076\u732b\u6ed1\u96ea\u5728\u9661\u5ced\u7684\u659c\u5761\u4e0a\u3002"} +{"id": "3004573", "video_name": "0cf116ba-6825-54f3-804e-cef6f7d1e7cd", "text": "\u8036\u7a23\u53d7\u5230\u4e00\u4e2a\u7559\u6709\u77ed\u5377\u53d1\u548c\u80e1\u987b\u7684\u7537\u4eba\u7684\u6d17\u793c\uff0c\u91c7\u7528\u73b0\u573a\u62cd\u6444\uff0c8k\u5206\u8fa8\u7387\uff0c\u65e0\u4eba"} +{"id": "6003112", "video_name": "7fe533b5-c9a9-5813-b28b-1c3d20b13ded", "text": "\u6d77\u6d6a\u7684\u58f0\u97f3\u8fdc\u5904\u4f20\u6765\uff0c\u6df7\u6742\u5728\u4e00\u8d77\uff0c\u542c\u8d77\u6765\u50cf\u662f\u4e00\u80a1\u5de8\u5927\u7684\u6c14\u6d41\u3002"} +{"id": "4003850", "video_name": "46aaa56e-fe03-54e7-a730-53c73827469c", "text": "\u4e16\u754c\u4e0a\u6700\u7f8e\u4e3d\u7684\u5973\u5b69\u8f6c\u8fc7\u5934\u770b\u7740\u6211\u3002"} +{"id": "3005722", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u7a7a\u8361\u7684\u623f\u95f4\u91cc\u5b64\u72ec\u4e14\u975e\u5e38\u56f0\u60d1\u3002"} +{"id": "2003601", "video_name": "9cc61e95-0f2b-5357-821e-e89db89e0e47", "text": "\u9ed1\u767d\u7684\u4e16\u754c\uff0c\u5973\u5b69\u6ce8\u89c6\u7740\u9e70\uff0c\u955c\u5934\u62c9\u8fdc\uff0c\u9e70\u98de\u7fd4\u3002"} +{"id": "2004874", "video_name": "4735668d-a5a2-50c8-988d-e113b6992e95", "text": "\u4e00\u53ea\u6d63\u718a\u4ece\u706b\u8f66\u4e0a\u4e0b\u6765\u4e86\u3002"} +{"id": "3004831", "video_name": "674b8750-d154-5d8b-8ba0-d3d91b0c46de", "text": "\u63cf\u8ff0\u519c\u6c11\u5f17\u96f7\u5fb7\u665a\u95f4\u7684\u4f8b\u884c\u516c\u4e8b\uff0c\u786e\u4fdd\u52a8\u7269\u5728\u5b89\u987f\u4e0b\u6765\u8fc7\u591c\u65f6\u611f\u5230\u8212\u9002\u3002"} +{"id": "2003944", "video_name": "9dff3b2d-4384-565c-893c-158361cfc9b4", "text": "\u52a8\u6276\u68af\u6c38\u8fdc\u4e0d\u4f1a\u574f\uff1a\u5b83\u53ea\u4f1a\u53d8\u6210\u697c\u68af\uff0c\u6162\u52a8\u4f5c\u7684\u7535\u52a8\u697c\u68af\u3002"} +{"id": "8003402", "video_name": "6cf69c71-b2ed-515b-88cd-28b0f4cba238", "text": "\u9ad8\u9ad8\u7684\u5ca9\u77f3\u60ac\u5d16\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "1003526", "video_name": "41048425-1eb8-5bf0-af4e-2a04735d4712", "text": "\u4e00\u80a1\u79ef\u96e8\u4e91\u9f99\u5377\u98ce\u6467\u6bc1\u4e86\u4e00\u4e2a\u62d6\u8f66\u516c\u56ed\u3002"} +{"id": "0003853", "video_name": "44a3ba14-f363-570b-84b8-0c89bdf2b6a0", "text": "\u521b\u9020\u4e00\u6bb5\u7535\u5f71\u5f0f\u65c5\u7a0b\uff0c\u5c55\u793a\u4e00\u4e2a\u5973\u5b69\u4ece\u51fa\u751f\u5230\u6210\u5e74\u7684\u751f\u6d3b\uff0c\u6355\u6349\u5979\u6210\u957f\u548c\u7ecf\u5386\u7684\u672c\u8d28\uff0c\u5177\u6709\u7535\u5f71\u822c"} +{"id": "6003672", "video_name": "c99ff8d1-21ca-5436-ab2b-73a7bfbab239", "text": "\u4e00\u53ea\u732b\u4ece\u5b83\u80cc\u540e\u7684\u80cc\u5305\u91cc\u9012\u7ed9\u4f60\u4e00\u5c01\u4fe1\u3002"} +{"id": "8002499", "video_name": "0ce18ee9-7511-56f4-a775-cc6ea6603c42", "text": "\u4e00\u53f0\u65c5\u884c\u76f8\u673a\u8e0f\u4e0a\u6fc0\u52a8\u4eba\u5fc3\u7684\u63a2\u7d22\u4e4b\u65c5\uff0c\u63a2\u7d22\u7f16\u7a0b\u65e0\u9650\u7684\u4e16\u754c\u3002\u5728\u8fd9\u4e2a\u6570\u5b57\u65f6\u4ee3\uff0c"} +{"id": "4004194", "video_name": "f8bf96e7-962e-5223-abb9-2e17d3bff65e", "text": "\u884c\u8d70\u7684\u9999\u8549\uff0c\u6709\u4eba\u7684\u817f\u548c\u624b\u81c2\u3002"} +{"id": "6002792", "video_name": "dcc7500d-e7c7-5244-b109-f504b9a1b8ef", "text": "\u4e00\u4e2a\u7537\u5b69\u8eba\u5728\u5e8a\u4e0a\u6234\u7740\u8033\u673a\u95ed\u4e0a\u773c\u775b\uff0c4K\u771f\u5b9e\u3002"} +{"id": "8002338", "video_name": "8ba639f6-aba5-5bc4-b6f4-58eec1b3b728", "text": "\u4e54\u00b7\u62dc\u767b\u626e\u6f14\u5c0f\u4e11\u89d2\u8272\uff0c\u4ee51970\u5e74\u4ee3\u300a\u661f\u7403\u5927\u6218\u300b\u7535\u5f71\u98ce\u683c\u4e0e\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u4ea4\u8c08\u3002"} +{"id": "3006383", "video_name": "6a378c24-5d74-583e-a576-71ee4af6cac9", "text": "\u4e00\u672c\u4e66\u4e2d\u7684\u7ffb\u9875\u52a8\u753b\uff0c\u63cf\u7ed8\u4e86\u68d2\u4eba\u4eec\u73a9\u7403\u6e38\u620f\u7684\u573a\u666f\u3002"} +{"id": "8002042", "video_name": "1d54fa95-0765-5931-8ecd-185d322d0adf", "text": "\u4e2d\u4e16\u7eaa\u5c16\u53eb\u59bb\u5b50\u7684\u5f62\u8c61\uff0c\u5c06\u65f6\u95f4\u5ef6\u4f38\u5411\u524d\u503e\u659c\u3002"} +{"id": "2003391", "video_name": "5a9005e9-0d40-583a-85e1-119962263ce4", "text": "\u5973\u4e3b\u89d2\u5728\u53a8\u623f\u91cc\u6709\u8da3\u5730\u4e3a\u7537\u4e3b\u89d2\u6e29\u67d4\u5730\u51c6\u5907\u665a\u9910\u3002"} +{"id": "4003908", "video_name": "9e657451-ebef-55e9-9eb5-1a2674578e56", "text": "\u8d85\u4eba\u98de\u8d8a\u6d77\u6d0b\uff0c8K\u5206\u8fa8\u7387\uff0cDC\u8272\u5f69\u3002"} +{"id": "2003442", "video_name": "052d6682-4d0e-5db9-810b-59631ffa0bb7", "text": "\u98ce\u5439\u62c2\u7740\u4e1b\u6797\uff0c\u9633\u5149\u7f13\u7f13\u666e\u7167\uff0c\u7537\u5b69\u7f13\u7f13\u5730\u884c\u8d70\uff0c\u6162\u6162\u5730\u62c9\u8fd1\u8ddd\u79bb"} +{"id": "3004840", "video_name": "f0a8c17e-0acd-5836-890f-1688663593b1", "text": "Translated sentence: \u51b0\u4ece\u5929\u7a7a\u843d\u4e0b\u7684\u90a3\u4e00\u523b\u3002"} +{"id": "1004839", "video_name": "59748d89-3971-5bf2-b695-3ea55d903bb0", "text": "\u4e00\u540d\u5973\u5b50\u5728\u6d77\u6ee9\u9644\u8fd1\u8df3\u821e\u8df3\u8dc3\uff0c\u5145\u6ee1\u559c\u60a6\u3002"} +{"id": "8002122", "video_name": "b09f581a-1e2a-5e8f-910b-abefefbea119", "text": "\u827e\u739b\u7528\u9524\u5b50\u6740\u6b7b\u4e86\u88ab\u6362\u6389\u7684\u5a74\u513f\uff0c\u5e76\u4e0e\u5229\u5170\u00b7\u683c\u7f57\u6258\u4e00\u8d77\u9003\u5230\u4ed6\u7684\u5c9b\u5c7f\uff0c\u90a3"} +{"id": "8002166", "video_name": "b0cbc603-7498-5089-80e7-066d32ba7e6c", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5355\u8eab\u9e66\u9e49\u5728\u5de5\u4f5c\u5ba4\u91cc\u770b\u65b0\u95fb\u3002"} +{"id": "7002766", "video_name": "ca89b406-c830-5cb1-bd1f-02605fcc00ed", "text": "\u4e00\u4e2a\u5c0f\u5c0f\u7684\u5927\u8c61\u722c\u5728\u6811\u4e0a\uff0c\u5468\u56f4\u6709\u5f88\u591a\u7334\u5b50\u3002\n\nSource sentence: I am excited to try the new restaurant in town.\n\u6211\u5f88\u5174\u594b\u5c1d\u8bd5\u57ce"} +{"id": "2005751", "video_name": "a809fe03-ffed-508a-9942-765a4da3ad35", "text": "\u4e00\u540d\u7a7f\u774017\u4e16\u7eaa\u519b\u88c5\u3001\u6301\u673a\u67aa\u5bf9\u7740\u955c\u5934\u5c04\u51fb\u7684\u7537\u5b50\u3002"} +{"id": "4003422", "video_name": "aab36d49-19da-5844-9447-59f80db24c2f", "text": "\u7535\u5f71\u822c\u7684\u975e\u6d32\u6751\u5e84\u5728\u9ec4\u660f\u65f6\u5206\u7684\u4e1b\u6797\u4e2d\u3002"} +{"id": "1003256", "video_name": "3bef16e5-2e80-5664-9d67-dcd17cffc3a2", "text": "\u4e00\u9897\u5355\u8272\u7684\u5de8\u5927\u7403\u4f53\u7f13\u6162\u5730\u9760\u8fd1\u4e00\u4e2a\u7acb\u65b9\u4f53\uff0c\u620f\u5267\u6027\u7684\u706f\u5149\uff0c\u8fd0\u52a8\u6a21\u7cca\uff0c2K\u3002"} +{"id": "3004542", "video_name": "6e382397-2895-560f-969e-0e48c8ecb418", "text": "\u7f51\u7edc\u767b\u5f55\u5b66\u751f\u540d\u518c\u4e0a\u4e0b\u6eda\u52a8\u3002"} +{"id": "0003637", "video_name": "40d90efb-efda-5838-9169-ce69abaca36d", "text": "AI\u73b0\u5728\u638c\u63a7\u4e86\u4e00\u5207\u3002 \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u4e00\u4e2a\u5e26\u6709\u53cd\u4e4c\u6258\u90a6\u6c1b\u56f4\u7684\u91ce\u86ee\u4e3b\u4e49\u65f6\u5c1a\u56e2\u4f53\u7ad9\u5728"} +{"id": "7004758", "video_name": "f8d69e7e-f8d4-5214-a14e-4740a83fbcbf", "text": "\u9ed1\u5e2e\u9152\u5427\u7535\u5f71\u573a\u666f\u4e2d\u7684\u5bb6\u5177\u7ec6\u8282"} +{"id": "0006428", "video_name": "2c2698ee-0a2d-5059-9341-cf7291b3329b", "text": "\u4e00\u4f4d\u4eba\u7ad9\u5728Space X\u53d1\u5c04\u73b0\u573a\u7684\u8bb0\u8005\u4e2d\u95f4\u3002"} +{"id": "0006835", "video_name": "33fde785-ba31-5160-a8a5-bbc67a101d96", "text": "\u9e3d\u5b50\u4e0e\u4eba\u7c7b\u6218\u6597\u3002"} +{"id": "7002091", "video_name": "dc2dae63-621a-55b1-9ab5-d3ead5a7d969", "text": "\u4e00\u6bb515\u79d2\u7684\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e24\u53ea\u903c\u771f\u7684\u72d7\u5750\u5728\u6c99\u53d1\u4e0a\u4e92\u76f8\u804a\u5929\u3002"} +{"id": "1003115", "video_name": "394a3449-b8c5-59e8-a6c2-f1133c72ccaa", "text": "\u7a7f\u8d8a\u4eba\u884c\u9053\u7684\u4eba\u4eec\uff0c\u4ee5\u8be6\u7ec6\u7684\u52a8\u753b\u98ce\u683c\u63ed\u793a\u4e86\u5bf9\u79d1\u6280\u7684\u5974\u5f79\u3002"} +{"id": "3003201", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "\u9ed1\u53d1\u7279\u5170\u514b\u65af\u53d8\u8eab\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u52a8\u753b\u3002"} +{"id": "2003689", "video_name": "b040e745-a598-5ef6-a41e-09756a5e2820", "text": "\u4e00\u4e2a\u8001\u4eba\u611f\u5230\u9707\u60ca\u548c\u60b2\u4f24\uff0c\u8dea\u5750\u5728\u5bb6\u91cc\uff0c4K\u771f\u5b9e\u3002"} +{"id": "8003213", "video_name": "2a2f8077-47e1-56cf-af05-02b2169e02a1", "text": "\u7f57\u9a6c\u5e02\u7684\u5c45\u6c11\u548c\u7e41\u5fd9\u7684\u57ce\u5e02\u5728\u516c\u5143\u524d324\u5e74\u3002"} +{"id": "7002009", "video_name": "44121b32-ef9d-53bd-bbff-3069dbb2dc73", "text": "\u76f8\u673a\u5feb\u901f\u5730\u79fb\u52a8\u7a7f\u8fc7\u4e00\u4e2a\u5927\u623f\u95f4\u3002"} +{"id": "2005265", "video_name": "cf0ad4ed-7b55-54fe-a9a1-7ef5272f3963", "text": "\u5931\u8e2a\u3001\u8650\u5f85\u548c\u88ab\u5ffd\u89c6\u513f\u7ae5\u7684\u56fe\u50cf\u3002\u6700\u540e\u4ee5\u5e0c\u671b\u4e4b\u5149\u7684\u5f62\u8c61\u7ed3\u675f\uff0c\u8c61\u5f81\u7740\u4fdd\u62a4\u548c\u62ef"} +{"id": "8001576", "video_name": "0f179ce2-74e1-5ee0-b029-53006035da61", "text": "\u5979\u7684\u7fa4\u4e2d\u6709\u5e74\u8f7b\u7684\u6210\u5458\u3002\u5979\u4ee5\u5979\u7684\u540c\u60c5\u5fc3\u800c\u95fb\u540d\u3002"} +{"id": "0003256", "video_name": "3a2cf612-df16-54c6-9b6e-640edd5962cb", "text": "\u4f60\u597dKitty\u592a\u7a7a\u8239\u6b63\u98de\u8d8a\u5927\u57ce\u5e02\uff0c\u7535\u5f71\u7ea7\u522b4k\u3002"} +{"id": "0006255", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "\u72ee\u5b50\u8bd5\u56fe\u6355\u6349\u8001\u9f20\u7684\u89c6\u9891\uff0c\u6ca1\u6709\u6a21\u7cca\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "3004497", "video_name": "bdb9d13b-6417-5372-8bcc-0e3b83e96b65", "text": "\u68ee\u6797\u91cc\u7684\u5bb6\u4e2d\uff0c\u89c6\u9891\u4e2d\u4e0b\u7740\u96e8\uff0c\u6c99\u53d1\u4e0a\u4e00\u53ea\u732b\u6b63\u5728\u7761\u89c9\u3002\u753b\u9762\u5177\u6709\u590d\u53e4\u3001\u771f\u5b9e\u3001\u9ad8\u6e05\u7b49\u7279\u70b9\u3002"} +{"id": "4003749", "video_name": "b55db3bd-98d0-50da-a5f3-6d80bf1f7bca", "text": "\u56fe\u50cf\u4e2d\u7684\u9e1f\u5728\u79fb\u52a8\u3002"} +{"id": "3005898", "video_name": "8505268d-af3a-5b24-a9c9-18087795be4a", "text": "\u7167\u76f8\u673a\u7f29\u5c0f\u753b\u9762\uff0c\u72fc\u6025\u5fd9\u8dd1\u5411\u9e64\u3002\u4ed6\u786e\u4fe1\u9e64\u7684\u957f\u8116\u5b50\u548c\u5634\u5df4\u53ef\u4ee5\u8f7b\u677e\u591f\u5230"} +{"id": "3005897", "video_name": "7ca90da1-714d-5b33-845b-50e953e359c8", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u5b9d\u5ea7\u4e0a\u8bb2\u8bdd\uff0c\u89e3\u91ca\u7740\u3002"} +{"id": "8002005", "video_name": "e18943d7-acef-5bd8-8793-8bd3725dc792", "text": "\u5e9f\u5f03\u673a\u573a\u91cc\u53d1\u73b0\u4e86\u4e00\u67b6\u5e9f\u5f03\u98de\u673a\u3002"} +{"id": "2006876", "video_name": "f05bef06-694f-55bc-bb47-c1765efa4903", "text": "60\u79d2\u7684\u624b\u673a\u58c1\u7eb8\u89c6\u9891\uff0c\u5206\u8fa8\u7387\u4e3a8K\u3002"} +{"id": "8002423", "video_name": "342c4ff0-2a4f-5efa-bf51-e65dca5b7d0e", "text": "\u5149\u811a\u5728\u5c71\u4e0a\u5954\u8dd1"} +{"id": "7003589", "video_name": "556e2fb9-f8df-5d9f-8925-d8a9eca39aac", "text": "\u4e00\u4e2a\u7531\u9ed1\u70b9\u6784\u6210\u7684\u4eba\u8138\u89c6\u9891\uff0c\u827a\u672f\u611f\u5f3a\uff0c\u6781\u7b80\u98ce\u683c\uff0c\u6444\u50cf\u5934\u4ece\u4e00\u4e2a\u70b9\u5411\u5916\u7f29\u653e\u81f3\u6574\u4e2a\u7531\u70b9\u7ec4\u6210\u7684"} +{"id": "7003380", "video_name": "6dc2208d-32fa-58ec-91c3-11c1e38b5496", "text": "\u4e00\u4f4d\u91d1\u53d1\u5065\u8eab\u5973\u5b50\u6234\u7740\u7ea2\u8272\u5e3d\u5b50\u7a7f\u7740\u563b\u54c8\u65f6\u5c1a\u8d70\u5728\u8857\u4e0a\uff0c\u88ab\u57ce\u5e02\u7684\u6d3b\u529b\u6240\u5305\u56f4\u3002"} +{"id": "4004640", "video_name": "7b48ca90-e66c-5ee7-b1b1-05a7a4c4f9e3", "text": "\u5728\u4e00\u5bb6\u62c9\u65af\u7ef4\u52a0\u65af\u8d4c\u573a\u9152\u5e97\u9152\u5427\uff0c\u8c03\u9152\u5e08\u6b63\u5728\u5236\u4f5c\u9e21\u5c3e\u9152\u3002"} +{"id": "2003162", "video_name": "6ddd381e-8749-5286-afb7-36de728df574", "text": "\u5b57\u6bcdA\u7684\u52a8\u753b\u8dd1\u6b65\n\nSource sentence: The cat is sitting on the mat."} +{"id": "4002457", "video_name": "cf14bd98-fc68-563d-8bb9-35fce9206983", "text": "\u4e24\u4f4d\u8eab\u7a7f\u4f20\u7edf\u670d\u9970\u7684\u7f8e\u4e3d\u5973\u5b50\u624b\u6301\u9999\u69df\u676f\u5728\u53e4\u8463\u5ba4\u5185\u62cd\u7167\uff0c\u4ee5\u6de1\u94f6\u8272\u548c\u6de1"} +{"id": "2005305", "video_name": "ec40b8e8-84dd-58ac-91e8-7b5855f9ee7c", "text": "\u6211\u7684\u5e8a\u5c3e\u5904\u51fa\u73b0\u4e86\u4e00\u4e2a\u6a21\u7cca\u7684\u8eab\u5f71\u3002"} +{"id": "8002520", "video_name": "b1a5ebb6-2677-542a-8965-8c39298acba8", "text": "\u65e5\u672c\u6f2b\u753b\u98ce\u683c\u4e2d\uff0c\u4e00\u4f4d\u6734\u7d20\u7740\u88c5\u7684\u7956\u6bcd\u3001\u4e00\u4f4d\u65f6\u5c1a\u7740\u88c5\u7684\u5973\u6027\uff0c\u4ee5\u53ca\u624b\u6301\u68d2\u68d2\u7cd6\u7684\u5973"} +{"id": "7004876", "video_name": "8ddc0723-a8d6-55b7-bd6a-9526b9160a6e", "text": "\u6a59\u8272\u900f\u660e\u7684\u7ae0\u9c7c\u89e6\u987b\u7d27\u8d34\u5728\u73bb\u7483\u4e0a\u3002\u6a59\u8272\u7684\u89e6\u987b\u878d\u5408\u4e86\u7eb3\u7c73\u6280\u672f\u548c\u673a"} +{"id": "4002995", "video_name": "f3eeca17-4af6-5bf7-b1e3-7a145bbc28c0", "text": "\u5c55\u89c8\u5c55\u53f0\u4e0a\u6709\u5f88\u591a\u82b1\u3002"} +{"id": "0004509", "video_name": "0a46e126-c04f-588a-89e6-5dfd0723c42b", "text": "\u767d\u8272\u91d1\u5c5e\u98de\u789f\u964d\u843d\u5728\u767d\u5bab\u8349\u576a\u4e0a\uff0c\u9ad8\u8d28\u91cf\uff0c\u6770\u4f5c\u3002"} +{"id": "2005337", "video_name": "b3cad2e4-f256-596a-a66e-5d3ccbf6325f", "text": "\u5b88\u62a4\u8005\u4fdd\u62a4\u6751\u5e84\u514d\u53d7\u770b\u4e0d\u89c1\u7684\u5371\u9669\u3002"} +{"id": "7004130", "video_name": "80fa7c95-dbb7-56ab-a1a9-ae423287cda9", "text": "\u5bb6\u5ead\u56f4\u684c\u5b50\uff0c\u8bf4\u6069\u5178\uff0c3D\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0006617", "video_name": "2f988730-290b-523a-bdf1-c2dc9300bad8", "text": "Translation: \u9876\u90e8\u7684\u963f\u5179\u7279\u514b\u6218\u58eb\u5728\u91d1\u5b57\u5854\u4e0a\uff0c\u7535\u5f71\u5316"} +{"id": "8003848", "video_name": "acbd2274-786a-5b14-bcb2-9b7b3c31471b", "text": "\u76ae\u57c3\u5c14\u00b7\u7279\u9c81\u591a\u7ad9\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u8c6a\u5b85\u524d\u53f0\u9636\u4e0a\uff0c\u5f20\u5f00\u53cc\u81c2\u5fae\u7b11\u7740\u3002"} +{"id": "8003115", "video_name": "c37db9e9-9501-5441-8d79-03fddbc9039b", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u4ed6\u7684\u72d7\u88ab\u9ad8\u7a7a\u65e0\u4eba\u673a\u62cd\u6444\u7740\u3002\n\nSource sentence: I would like to order a large pepperoni pizza for delivery"} +{"id": "3004544", "video_name": "b6fceb9b-1923-5468-b40b-2921be0f6e78", "text": "\u5728\u8302\u5bc6\u7684\u96e8\u6797\u4e2d\uff0c\u4e00\u7fa4\u571f\u8457\u7a74\u5c45\u4eba\u6b63\u5728\u6458\u53d6\u6c34\u679c\uff0c\u914d\u4ee5\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u6843\u7ea2\u8272\u7684\u9633"} +{"id": "0005998", "video_name": "24c65bfc-0e90-5e1d-94a3-b70241bcfea6", "text": "\u6c7d\u8f66\u7a7f\u8fc7\u4e86\u68ee\u6797\u548c\u5c71\u8109\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u884c\u3002"} +{"id": "1003484", "video_name": "4088d47b-7f51-5312-84e7-52b54d8730c4", "text": "\u5b69\u5b50\u4eec\u7a7f\u7740\u539a\u539a\u7684\u51ac\u8863\u5728\u6c99\u6ee9\u4e0a\u73a9\u800d\uff0c\u5c3d\u7ba1\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "0004262", "video_name": "060c553e-1328-516f-a055-902a9df07507", "text": "\u4e00\u4e2a\u4e91\u56fe\u6807\uff0c\u91d1\u5c5e\u8d28\u611f\uff0c\u7cbe\u7ec6\u7eb9\u7406\uff0c\u84dd\u767d\u6e10\u53d8\uff0c\u78e8\u7802\u73bb\u7483\uff0c\u900f\u660e\uff0c\u5177\u6709\u8d8b"} +{"id": "2006793", "video_name": "b5bae752-ff05-53ef-991d-680dccff52ab", "text": "\u5f53\u7136\uff0c\u53e6\u4e00\u534a\u6210\u529f\u7684\u5173\u952e\u662f\u8ba9\u5b83\u5b9e\u73b0\u3002\u6bcf\u4e00\u4e2a\u6bd2\u4f1e\u6216\u8005\u65e0\u6cd5\u88ab\u4fa6\u6d4b\u7684\u76d1\u542c\u8bbe\u5907\u4e4b\u540e\uff0c\u90fd\u6709\u65e0\u6570\u597d\u7684\u70b9"} +{"id": "6002367", "video_name": "8ddeb0f6-26d9-5c15-8a26-01dd2753b00d", "text": "\u4e00\u4e2a\u548c\u96ea\u8c79\u73a9\u800d\u7684\u50e7\u4eba\u3002"} +{"id": "7004659", "video_name": "30346754-728a-5e44-93bc-6878a399d5d9", "text": "\u753b\u6846\u7684\u6a21\u578b\u5728\u6ce2\u897f\u7c73\u4e9a\u98ce\u683c\u7684\u73af\u5883\u4e2d\uff0c\u753b\u6846\u5185\u7684\u56fe\u7247\u4f1a\u4e0d\u65ad\u53d8\u6362\u3002"} +{"id": "2007791", "video_name": "7f4e6beb-12f7-5c97-a057-cde8d9685c23", "text": "\u5728\u4e00\u4e2a\u6f06\u9ed1\u7684\u591c\u665a\uff0c\u6ee1\u6708\u4e0b\u8d70\u8fdb\u5893\u5730\uff0c\u4e00\u4e2a\u9971\u53d7\u6298\u78e8\u7684\u7537\u4eba\u7684\u7075\u9b42\uff0c\u4ed6\u7684\u9762\u5bb9\u626d"} +{"id": "1004028", "video_name": "4ab36be9-809f-5ae6-a20e-5e6298e60024", "text": "\u5de8\u5927\u7684\u7194\u5ca9\u67f1\u5c06\u5927\u5730\u4e0e\u5929\u7a7a\u8fde\u63a5\u5728\u4e00\u8d77\u3002"} +{"id": "0006469", "video_name": "2d1280fc-8502-5e6e-8f61-0a367097ea28", "text": "\u4e00\u4e2a\u6c34\u4e0b\u573a\u666f\uff0c\u5c55\u793a\u4e86\u4e00\u6761\u9ed1\u65d7\u9cb8\u8fc5\u901f\u6e38\u52a8\uff0c\u5c55\u73b0\u5176\u58ee\u89c2\u7684\u6d41\u7ebf\u578b\u548c\u6d77\u6d0b\u7684\u9c9c\u8273\u8272\u5f69\u3002"} +{"id": "3004876", "video_name": "54f928ae-c487-5c9c-8b1f-1b0bc8282d8d", "text": "\u6570\u5b577.10.2023\u51fa\u73b0\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e0a\uff0c\u4ece\u4e2d\u6d41\u6dcc\u51fa\u9c9c\u8840\u3002"} +{"id": "7002800", "video_name": "1ca4632e-310a-59f8-8daf-5573b081c370", "text": "NASA\u62cd\u6444\u5230\u6708\u7403\u649e\u5411\u706b\u661f\u7684\u9ad8\u6e05\u5f71\u50cf\u3002"} +{"id": "3004690", "video_name": "7320764f-deec-5709-85db-634d339cd8be", "text": "\u6444\u50cf\u5934\u6a2a\u626b\u8377\u5170\u6625\u5b63\u81ea\u7136\u666f\u8272\uff0c\u753b\u9762\u4e2d\u51fa\u73b0\u519c\u573a\u4ea7\u54c1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7004735", "video_name": "7e13f7aa-9ef1-57f1-8361-2ad7ef6cb45b", "text": "\u4e00\u6735\u4e0b\u96e8\u7684\u4e91\u548c\u4e00\u53ea\u5b54\u96c0\u5728\u8df3\u821e\u3002"} +{"id": "0005074", "video_name": "145a83ce-cceb-56e7-a5fa-f21d6c1b3f55", "text": "\u5899\u4e0a\u957f\u6ee1\u4e86\u5f00\u88c2\u7684\u82b1\u6735\u3002"} +{"id": "3005916", "video_name": "968ff760-e434-55db-8458-fa292b10895b", "text": "Translated sentence: \u4e00\u6761\u72ee\u8170\u5206\u4e09\u6bb5\u3002"} +{"id": "4003987", "video_name": "08f6a0d2-3f84-5c86-becc-ab3df1141f80", "text": "\u73b0\u5b9e\u548c\u63a8\u6d4b\u4e4b\u95f4\u7684\u8fb9\u754c\u6a21\u7cca\u3002"} +{"id": "0004111", "video_name": "035f7bdd-df1b-505d-ac0f-8b1283bddc7b", "text": "\u963f\u5229\u820d\u5c14\u00b7\u83ab\u6839\u4ec0\u6cf0\u56e0\u5012\u7acb\u8df3\u821e\uff0c\u5438\u7740\u4e00\u652f\u50cf\u9999\u8549\u90a3\u4e48\u5927\u7684\u9999\u70df\u3002"} +{"id": "4004689", "video_name": "b2246a05-4e2c-5d8e-822c-8c95cea070f7", "text": "Source sentence: Pennywise\u7a7f\u7740\u56f4\u88d9\u5728\u53a8\u623f\u70f9\u996a\u9c7c\u7684\u8001\u7535\u5f71\u3002\n\nTranslation: Pennywise\u7a7f\u7740\u56f4\u88d9\u5728\u53a8\u623f"} +{"id": "1004763", "video_name": "5822b1a7-f044-580b-8372-c0badbb24757", "text": "\u8fd9\u5e45\u753b\u7684\u8d85\u771f\u5b9e\u7167\u7247"} +{"id": "2004967", "video_name": "93e9405f-25f1-51c6-9316-364e214e872b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u56ed\u5728\u6e29\u6696\u3001\u91d1\u8272\u7684\u9633\u5149\u4e0b\u8301\u58ee\u6210\u957f\uff0c\u9c9c\u82b1\u76db\u5f00\uff0c\u6295\u5c04\u51fa\u5404\u79cd\u8272\u5f69\u7684"} +{"id": "0006007", "video_name": "24ee3ee9-bb5a-5a8f-85c5-fb7b17ca3295", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5bab\u6bbf\u4e2d\u7684\u9f99\u6905\u548c\u9ad8\u706f\u7b3c\u3002"} +{"id": "4003172", "video_name": "93b1f33d-1edb-575a-878f-109a735bef88", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u97e9\u56fd\u5973\u58eb\u5750\u5728\u8c6a\u534e\u6905\u5b50\u4e0a\uff0c\u9762\u5411\u524d\u65b9\u4ea4\u8c08\u3002"} +{"id": "8002500", "video_name": "08ef07bc-eccf-58d1-8e73-66ebd7e930fd", "text": "\u4e00\u4e2a\u7528\u64ac\u9501\u5f00\u95e8\u7684\u7537\u4eba\u3002"} +{"id": "8003128", "video_name": "b6992fec-e82a-575a-9f9d-a449dab5a123", "text": "\u5728\u6ee1\u6708\u7684\u591c\u665a\uff0c\u7537\u4eba\u548c\u5973\u4eba\u5750\u5728\u6c99\u6ee9\u4e0a\u7684\u5730\u6bef\u4e0a\u559d\u8336\uff0c\u4ed6\u4eec\u65c1\u8fb9\u653e\u7740\u9ea6\u514b\u98ce\uff0c"} +{"id": "8002069", "video_name": "e1f5976a-6bbe-5692-832b-544a8251d7b4", "text": "\u5929\u7a7a\u4e2d\u7684\u661f\u661f\u95ea\u70c1\uff0c\u6811\u53f6\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "4002454", "video_name": "bd685259-b6dc-5e08-a416-641fad728cc3", "text": "\u5728\u6708\u5149\u4e0b\u7684\u8857\u9053\u4e0a\uff0c\u7a7f\u7740\u7f8e\u4e3d\u7684\u670d\u88c5\uff0c\u62e5\u6709\u7535\u5f71\u822c\u7684\u666f\u8c61\u3002"} +{"id": "3005331", "video_name": "d62bcf24-4735-5862-bd4c-f6ab2935f6a7", "text": "\u7f8e\u5973\u548c\u5979\u7684\u82f1\u56fd\u77ed\u6bdb\u732b\u3002"} +{"id": "5001986", "video_name": "56e64470-3538-566a-845e-6d958e65620f", "text": "5\u53ea\u5c0f\u9e21\u5728\u6e56\u4e2d\u6e38\u6cf3\uff0c\u8272\u5f69\u6591\u6593\uff0c3D\u52a8\u753b\uff0c\u76ae\u514b\u65af\uff0c\u8fea\u58eb\u5c3c\uff0c4K\u3002"} +{"id": "6004609", "video_name": "a08d9a11-9581-5010-8329-cc01e8e66e46", "text": "\u7535\u5f71\u822c\u7684\u5347\u9633\u52a8\u753b\u3002\u955c\u5934\u62c9\u8fdc\u3002"} +{"id": "2003543", "video_name": "9942a7d5-22d3-56d0-81e1-ac7b26ac172d", "text": "\u90a3\u4e2a\u5973\u4eba\u5728\u8c08\u8bba\u67d0\u4ef6\u4e8b\u60c5\uff0c\u5b9a\u5b9a\u5730\u770b\u7740\uff0c\u5fae\u7b11\u7740\uff0c\u98ce\u5439\u62c2\u7740\u5979\u7684\u5934\u53d1\uff0c\u98de\u821e\u7740\u5fae\u5c0f\u7684"} +{"id": "0004381", "video_name": "08056941-6329-5d13-a552-babf1c8b306d", "text": "\u4e00\u4e2a\u5934\u53d1\u94f6\u767d\u8272\uff0c\u5927\u84dd\u773c\u775b\uff0c\u770b\u8d77\u6765\u50cf\u732b\u4e00\u6837\uff0c\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\u4f4f\u5728\u51b0\u5bab\u4e2d\u3002"} +{"id": "1005521", "video_name": "65a2221a-98ca-50b5-a8c5-05649407fb8f", "text": "\u624b\u4e2d\u6709\u4e00\u675f\u88c5\u5728\u5305\u88c5\u7eb8\u4e2d\u7684\u7ea2\u73ab\u7470\uff0c\u4e0a\u9762\u9644\u7740\u4e00\u5f20\u4fbf\u7b7e\u3002"} +{"id": "6003022", "video_name": "35263ff0-201f-5400-87eb-e3d7f87da1e1", "text": "\u96ea\u4e2d\u5192\u9669\u7684\u89c6\u9891"} +{"id": "6003917", "video_name": "04adfe23-bba6-538a-8d0b-283eec46caf2", "text": "\u7136\u800c\uff0c\u8fd9\u4e2a\u6816\u606f\u5730\u6b63\u9762\u4e34\u7740\u8ba1\u5212\u4e2d\u7684\u5f00\u53d1\u9879\u76ee\u7684\u5a01\u80c1\u3002"} +{"id": "7004590", "video_name": "dab7c5ed-0c0b-5246-80a9-b97b460e6607", "text": "\u9ad8\u8fea\u7684\u7ea2\u8272\u8d85\u73b0\u5b9e\u4e16\u754c\uff0c\u5730\u677f\u4e0a\u6709\u86c7\u7684\u751f\u7269\u673a\u68b0\u98ce\u683c\u3002"} +{"id": "1005122", "video_name": "5e720b83-6362-591b-a45c-ae0b5cdeceaa", "text": "\u8f7b\u5fae\u7684\u5934\u90e8\u52a8\u4f5c\uff0c\u8f7b\u8f7b\u5730\u7728\u773c\uff0c\u7eb8\u5f20\u4ece\u684c\u5b50\u4e0a\u98de\u8d70\u3002"} +{"id": "4003818", "video_name": "f09b80bc-9efa-5d97-983f-e0993d1459fd", "text": "\u6027\u611f\u5973\u5b69\u5728\u96e8\u4e2d\u8df3\u821e\uff0c\u5f15\u52a8\u7740\u96e8\u6ef4\u3002"} +{"id": "6003740", "video_name": "5ddef131-59cf-5d75-aa45-cd02682b621d", "text": "\u57ce\u5e02\u7f8e\u4e3d\u7684\u822a\u62cd\u4fe1\u606f\uff1a\u6a21\u578b\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "1005360", "video_name": "62914613-b3c9-5657-b02c-9b2784196133", "text": "\u5730\u7403\u53d8\u6210\u4e86\u4e00\u4e2a\u706b\u7403\u7684\u592a\u7a7a\u666f\u8c61\u3002"} +{"id": "0003116", "video_name": "37565cd0-8c4a-5bd1-9c7c-322b0ab4be98", "text": "\u4e00\u53ea\u5c71\u7f8a\u5728\u8857\u4e0a\u71c3\u70e7\u3002"} +{"id": "6003307", "video_name": "3fb1b88e-443e-51c6-a30c-b87f1f4f713b", "text": "\u6bdb\u53d1\u968f\u98ce\u98d8\u626c\uff0c\u4eba\u7269\u8010\u5fc3\u7b49\u5f85\u3002"} +{"id": "4003721", "video_name": "684bb3f4-4a86-59de-b099-452002c1c870", "text": "\u96e8\u6797\u91cc\u6709\u5f88\u591a\u6811\u6728\u548c\u690d\u7269\u3002\u4fe1\u606f\uff1a\u6728\u5934\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006116", "video_name": "93e22796-65fc-552e-b273-bf1bd8699098", "text": "\u4f53\u80b2\u548c\u79d1\u5b66\uff1a\u4ec0\u4e48\u56e0\u7d20\u5f71\u54cd\u8fd0\u52a8\u6210\u7ee9\u548c\u8bb0\u5f55\u3002"} +{"id": "6003926", "video_name": "ddd1ca02-b9d4-5a12-aaf6-67ead4eeb45f", "text": "\u5899\u7eb8\uff0c\u68ee\u6797\uff0c\u4e2d\u5348\uff0c\u53f2\u8bd7\u822c\u7684\u666f\u89c2\uff0c\u653e\u5927\u955c\u5934\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003648", "video_name": "43321adf-aaa1-57b0-a95d-b891ffdcef40", "text": "\u5728\u7f8e\u5bb9\u9662\u91cc\u7406\u53d1\u7684\u666e\u901a\u5973\u4eba\uff0c\u53d8\u6210\u4e86\u7f8e\u4e3d\u7684\u5973\u4eba\u3002"} +{"id": "6004445", "video_name": "feee0eda-cdde-5027-9888-2d98ff8e0555", "text": "\u5de8\u5927\u7684\u98d3\u98ce\u5e2d\u5377\u4e86\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "1006339", "video_name": "74040180-d513-522d-96f7-a1b4a2c98406", "text": "\u5f53\u592a\u9633\u5347\u8d77\u65f6\uff0c\u5929\u7a7a\u88ab\u91d1\u8272\u7684\u8272\u8c03\u586b\u6ee1\uff0c\u6709\u7740\u9152\u6cb3\u3001\u871c\u6cb3\u3001\u725b\u5976\u6cb3\u548c\u4e00\u6761\u6d41\u8fc7\u7eff"} +{"id": "3005214", "video_name": "7f575563-a977-56dc-8e5d-7b26b08bd4f0", "text": "\u529f\u592b\u4eba\u8df3\u8fdb\u5929\u7a7a\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u7761\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "6004604", "video_name": "9ef1d1c2-eaf4-5475-80a4-28411957d876", "text": "\u4f60\u80fd\u5e2e\u6211\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8ba9\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u7528\u897f\u73ed\u7259\u8bed\u89e3\u91ca\u8d4b\u6743\u539f\u5219\u5417\uff1f"} +{"id": "8001371", "video_name": "6daa5127-ae10-53e8-aafc-183861f72766", "text": "\u4e00\u4e2a\u4eba\u53d8\u6210\u4e86\u4e00\u9053\u95ea\u5149\u3002 \n\nSource sentence: Love is not a feeling, it is an action. \n\n\u7231\u4e0d\u662f\u4e00\u79cd\u611f\u89c9\uff0c\u800c\u662f\u4e00\u79cd\u884c\u52a8\u3002"} +{"id": "2005304", "video_name": "bd9b222d-47c9-583d-a9b8-d1370aa1b750", "text": "\u5728\u6d77\u6ee9\u4e0a\u4eab\u7528\u9633\u5149\u4e0b\u7684\u7f8e\u98df\uff0c\u7a81\u7136\u906d\u9047\u6d77\u5e95\u5730\u9707\uff1b"} +{"id": "3005447", "video_name": "6598ca00-d0f8-5462-9cab-b35943319f7f", "text": "\u4e00\u5e45\u7531\u4e91\u6735\u5236\u6210\u7684\u7f8e\u4e3d\u73ab\u7470\u666f\u89c2\uff0c\u5e76\u6709\u4e00\u5339\u767d\u9a6c\u3002"} +{"id": "2006930", "video_name": "7b726184-9031-5cae-a976-8276546cfed2", "text": "\u5bab\u5d0e\u9a8f\uff0c\u6a59\u8272\u7684\u65e5\u843d\u7167\u4eae\u4e86\u7eff\u8272\u7684\u8349\u576a\uff0c\u5b66\u751f\u4eec\u6b63\u5728\u64cd\u573a\u4e0a\u6253\u7bee\u7403\u3002\u5728\u64cd\u573a\u65c1"} +{"id": "4004713", "video_name": "8e2c6f0e-cfff-5e34-99bd-b3555790780d", "text": "\u6de1\u5165\u3002\u56db\u81c2\u6e7f\u5a46\uff0c\u84dd\u8272\u76ae\u80a4\uff0c\u4e00\u53ea\u624b\u6301\u4e09\u53c9\u621f\uff0c\u53e6\u4e00\u53ea\u624b\u6301\u9f13\u94b9\u3002"} +{"id": "6003843", "video_name": "78540ebf-a9b0-5d0e-ae30-fab21fa7d48c", "text": "\u52a8\u753b\u732b\u8df3\u51fa\u5feb\u4e50\u7684\u5c0f\u821e\u8e48\u5e8f\u5217\uff0c\u4f34\u968f\u97f3\u4e50\u65cb\u5f8b\uff0c\u5728\u5730\u677f\u4e0a\u8df3\u6765\u8df3\u53bb\u3002\u5feb\u4e50\u7684"} +{"id": "1006100", "video_name": "6fde998f-8556-5995-8368-b1a8e4f9ec9c", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u57ce\u5e02\u5728\u65e5\u843d\u65f6\u5206\u3002\u4fe1\u606f\uff1aplatzi\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0006316", "video_name": "2a9080d1-fa7f-5448-801b-a953fed1acdf", "text": "\u5c3c\u6cca\u5c14\u6700\u9ad8\u5c71\u8109\u4e0a\u7684\u795e\u79d8\u6751\u5e84\uff0c\u66b4\u98ce\u96ea\uff0c\u771f\u5b9e\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2007218", "video_name": "bb980fa8-5ea4-5a41-ad66-d3da884050b1", "text": "\u4e00\u4f4d\u6ed1\u677f\u624b\u5728\u57ce\u5e02\u73af\u5883\u4e2d\u9a91\u7740\u6ed1\u677f\u5403\u62ab\u8428\uff0c\u4ee535\u6beb\u7c73\u7eaa\u5f55\u7247\u98ce\u683c\u62cd\u6444\uff0c4K\u9ad8\u6e05\u5206"} +{"id": "6002513", "video_name": "26c47715-3824-597e-8fb2-857112592c53", "text": "\u96f7\u9e1f\u5728\u65e5\u672c\u53e4\u57ce\u4e0a\u5236\u9020\u95ea\u7535\uff0c\u4eba\u4eec\u60ca\u614c\u9003\u8dd1\u3002"} +{"id": "1003494", "video_name": "40b570cb-1903-554e-9fe3-f2d2c5788593", "text": "\u5e74\u8f7b\u9ed1\u53d1\u7537\u5b69\u7a7f\u8fc7\u4e00\u7247\u897f\u5170\u82b1\u68ee\u6797\uff0c\u4ed6\u7684\u5934\u53d1\u968f\u7740\u884c\u8d70\u821e\u52a8\uff0c\u897f\u5170\u82b1\u6811\u679d\u6447"} +{"id": "6002735", "video_name": "0368b59e-33f3-53b0-8184-f37667346b17", "text": "\u5b9e\u9a8c\u5ba4\u91cc\u6709\u4e00\u4e2a\u7537\u4eba\u5728\u5de5\u4f5c\u3002\n\nSource sentence: The cat is sleeping on the mat. \n\u732b\u5728\u57ab\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "8002842", "video_name": "0b650fa9-397a-5aec-a5ad-4672a30569be", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7537\u5b69\u601d\u8003\u7684\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "4004545", "video_name": "21d4fdb6-6a14-5d65-a323-74b21a7dd4fe", "text": "\u5e26\u7740\u77ed\u5377\u53d1\u7684\u5973\u5b69\u624b\u6301\u5251\uff0c\u5728\u96e8\u4e2d\u9a91\u7740\u6469\u6258\u8f66\u7684\u6f2b\u753b\u3002"} +{"id": "4004518", "video_name": "66574271-41e1-5711-8689-b2bd0f1ed05c", "text": "\u4e00\u4e2a\u624b\u6301\u9ed1\u5149\u5251\u7684\u7edd\u5730\u6b66\u58eb\u5728\u8ff7\u96fe\u4e2d\u3002"} +{"id": "2003161", "video_name": "53fbac9f-5cd3-52da-a423-135d32ace14a", "text": "\u5973\u5b69\u5728\u6df1\u591c\u7126\u6025\u5730\u5306\u5fd9\u7a7f\u8fc7\u9ed1\u6697\u7684\u5e9f\u6821\u8d70\u5eca\uff0c\u88ab\u9634\u5f71\u548c\u602a\u5f02\u7684\u58f0\u97f3\u6240\u4e0d\u5b89\u3002"} +{"id": "4002678", "video_name": "413a3cd4-4dfb-5faf-be1f-3e3fc5344535", "text": "\u8f7b\u67d4\u7684\u6e38\u620f\u548c\u7f13\u6162\u7684\u52a8\u4f5c\uff0c\u62e5\u6709\u4e30\u5bcc\u7684\u8272\u5f69\u5143\u7d20\u3002"} +{"id": "8001298", "video_name": "c9f8cd45-b0c1-58e9-8dde-596c82d9194a", "text": "\u7535\u5f71\u822c\u7684\u5f71\u50cf\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u6d77\u5e95\u5c0f\u73ca\u745a\u548c\u591a\u5f69\u690d\u7269\u7684\u573a\u666f\uff0c\u4f34\u968f\u7740\u5c0f\u9c7c\u7684\u6e38\u52a8\uff0c"} +{"id": "3005378", "video_name": "3b9022ea-5963-520b-ae61-d5e0761527f1", "text": "\u4e00\u4e2a\u7537\u4eba\u8eba\u5728\u963f\u5c14\u6cf0\u7684\u540a\u5e8a\u4e0a\uff0c\u5bf9\u7740\u5361\u56fe\u6069\u6cb3\uff0c\u4ed6\u770b\u7740\u5929\u7a7a\uff0c\u4e00\u8fb9\u559d\u7740\u996e\u6599\u4e00"} +{"id": "7004833", "video_name": "6513d104-63dc-5713-b97e-714a44ad6741", "text": "\u4e00\u4e2a\u6709\u623f\u5c4b\u548c\u6811\u7684\u5c0f\u6751\u5e84\u7684\u666f\u8272\u3002"} +{"id": "1004793", "video_name": "589a92d3-fbf3-5148-b180-f419356886d7", "text": "\u5c4b\u9876\u9601\u697c\u4e0a\u7684\u58c1\u7089\uff0c\u7a97\u6237\u4e0a\u6709\u96e8\u6ef4\u3002"} +{"id": "1003530", "video_name": "41108853-981b-58b5-97c3-b38dff741df4", "text": "\u4e00\u53ea\u7c89\u8272\u5927\u8c61\u5728\u96e8\u4e2d\u884c\u8d70\u3002"} +{"id": "8001465", "video_name": "7a64f1d2-b2e7-5484-a205-31304f53f146", "text": "\u6027\u611f\u6821\u56ed\u5973\u5b69\u8df3\u821e\uff0c\u8d85\u903c\u771f\uff0c\u6982\u5ff5\u827a\u672f\uff0c\u9519\u7efc\u590d\u6742\u7684\u7ec6\u8282\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7167\u7247\u7ea7\u771f"} +{"id": "6002811", "video_name": "7d521dcc-b361-524d-90ce-c322cde6ee7a", "text": "\u6c34 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "1003800", "video_name": "4635abf7-70ec-522c-a031-aaa450883d6d", "text": "\u52a8\u753b\u5c0f\u732b\u8df3\u5723\u8bde\u6b4c\u821e"} +{"id": "2004856", "video_name": "f857ed7e-f574-5c4b-bd87-bff90c596b1f", "text": "\u6709\u4e00\u6b21\u63d0\u5230\uff0c\u4e00\u500b\u88c1\u7e2b\u5750\u5728\u4ed6\u7684\u5e97\u88e1\u7e2b\u8863\u670d\uff0c\u7a81\u7136\u6709\u4e00\u96bb\u5c0f\u8c61\u4f86\u5230\u4e86\u90a3\u88e1\u3002\u6d88\u606f\uff1a1"} +{"id": "2006086", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "\u6234\u7740\u53d1\u8fab\u7684\u7537\u5b50\u5728\u592a\u7a7a\u4e2d\u6f14\u594f\u5c0f\u63d0\u7434\uff0c\u9ad8\u7ec6\u8282\u6570\u5b57\u63d2\u56fe\u3002"} +{"id": "0006904", "video_name": "35189df0-bd7b-5cd7-8d80-4210f87277bc", "text": "\u5236\u4f5c\u4e00\u4e2a3D\u5361\u901a\u7247\uff0c\u5185\u5bb9\u662f\u513f\u7ae5\u6342\u4f4f\u9f3b\u5b50\u8eb2\u907f\u9ec4\u8272\u4e91\u96fe\uff0c\u5206\u8fa8\u7387\u4e3a4K\u9ad8\u6e05\u3002"} +{"id": "1005141", "video_name": "5ebdfb56-96c1-53b0-9f0c-d0a1cfff113b", "text": "\u4e00\u500b\u6709\u4e09\u96bb\u773c\u775b\u7684\u5973\u5b69\u5728\u5954\u8dd1\u3002"} +{"id": "4003324", "video_name": "307125b0-7735-5391-a160-add18e7d12a2", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u5723\u8bde\u8001\u4eba\u8d70\u5728\u4e00\u6761\u53ef\u6015\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "7003817", "video_name": "cb5e53a9-21e4-50c9-bace-81d331c5f4b9", "text": "\u66f4\u6539\u80cc\u666f\u3002\u8fdc\u5904\u6709\u96ea\u5c71\u3001\u68ee\u6797\u548c\u4e0d\u65ad\u98d8\u843d\u7684\u96ea\u82b1\u3002"} +{"id": "3006444", "video_name": "e0e9ba83-4738-560c-9ea7-bd317713e936", "text": "\u9ad8\u697c\u4e0a\u7684\u4eba\u4ece\u697c\u4e0a\u5760\u843d\uff0c\u9ad8\u6e05\uff0c\u7535\u5f71\u7ea7\u522b\u7684\u957f\u89c6\u9891\u3002"} +{"id": "3005532", "video_name": "366d5046-aa07-5f77-ba3c-928aa5190235", "text": "\u4e00\u4e2a\u5e26\u95ea\u7535\u548c\u96e8\u7684\u4e91\u6735\uff0c\u540d\u5b57\u53eb\u505a\u201c\u4e91\u201d\u3002"} +{"id": "6004528", "video_name": "a67a0591-6fa8-5e3d-bbf5-d8184355ec45", "text": "\u9ed1\u6697\u7684\u5929\u7a7a\u4e2d\u95f4\u6709\u4e00\u8f6e\u6708\u4eae\u3002"} +{"id": "7003815", "video_name": "3b25652b-7c26-54d8-8991-99a4e11f75f1", "text": "\u96e8\u591c\uff0c\u96e8\u6c34\u6ef4\u843d\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "8002793", "video_name": "af7c539f-5be8-5562-a1fb-d90ab8d9f11e", "text": "\u592a\u9633\u8138\u548c\u60b2\u4f24\u7684\u4e91\u5f69\u5361\u901a\u98ce\u666f\u3002"} +{"id": "3005185", "video_name": "8574d5c9-34a6-5f1b-8e1b-c0f177c64588", "text": "\u6bcd\u72d7\u548c\u516c\u72d7\u76f8\u9047\u7684\u5341\u5206\u949f\u89c6\u9891"} +{"id": "8002333", "video_name": "2211d5b3-fd6b-5c49-b632-76d6e3b705c0", "text": "\u4e00\u4e2a\u5e9f\u5f03\u6751\u5e84\u91cc\u7684\u5c0f\u5c4b\u3002"} +{"id": "8003891", "video_name": "b600658c-6644-5f4f-b0e8-23525af97433", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u592a\u7a7a\u4e2d\u6253\u6597\u3002"} +{"id": "1005332", "video_name": "61f34048-3cec-51f6-b625-279104d1a5a8", "text": "\u5feb\u4e50\u7684\u5361\u901a\u623f\u5b50\u56fe\u50cf\u5728\u767d\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "3006936", "video_name": "63ff4b26-1b1a-5d4b-97ec-46fe0265512b", "text": "\u4e00\u5e45\u5e7b\u60f3\u573a\u666f\uff0c\u662f\u4e00\u4e2a\u5b81\u9759\u7684\u8349\u5730\uff0c\u6709\u6447\u66f3\u7684\u6811\u6728\u548c\u98de\u821e\u7684\u8774\u8776\u3002\u8fd9\u4e2a\u573a\u666f\u4f7f\u7528\u4e86"} +{"id": "3005239", "video_name": "6d3446d0-b311-5c16-9894-607a7e5918af", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u5496\u5561\u9986\u91cc\uff0c\u770b\u5411\u7a97\u5916\uff0c\u9762\u524d\u653e\u7740\u4e00\u672c\u4e66\uff0c\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u5979\u65c1\u8fb9\u7684"} +{"id": "8003765", "video_name": "16735ea6-6e7f-5eed-aa2d-0449d30ea1af", "text": "\u73b0\u5b9e\u89c6\u9891\uff1a\u4e00\u7fa4\u79d1\u5b66\u5bb6\u5728\u79d1\u5e7b\u5b9e\u9a8c\u5ba4\u4e2d\u89c2\u5bdf\u5168\u606f\u5929\u6c14\u6570\u636e\u3002"} +{"id": "6002555", "video_name": "00a222d8-bc6c-56fd-a25c-7665eaa31af6", "text": "\u4e00\u53ea\u7728\u773c\uff0c\u5c31\u80fd\u770b\u5230\u5929\u7a7a\u4e2d\u90a3\u95ea\u70c1\u7684\u5c0f\u661f\u661f\uff0c\u5982\u540c8K\u9ad8\u6e05\u7535\u5f71\u822c\u7684\u7eda\u70c2\u3002"} +{"id": "6003977", "video_name": "c4c41adf-3eca-508c-81d0-d848d38b53d8", "text": "\u4e24\u53ea\u53ef\u7231\u7684\u72d7\uff0c\u4e00\u53ea\u662f\u767d\u8272\u7684\uff0c\u53e6\u4e00\u53ea\u662f\u68d5\u8272\u7684\uff0c\u4e00\u53ea\u8ffd\u7740\u53e6\u4e00\u53ea\u8dd1\u3002"} +{"id": "3005242", "video_name": "5153b752-45e5-5ae5-8cfa-2fd999385276", "text": "\u90fd\u5e02\u5929\u7a7a\u7684\u767d\u5929\u548c\u9ed1\u591c"} +{"id": "1006732", "video_name": "7b592c84-e7a5-5644-b110-97777c31eb13", "text": "\u4e00\u6ef4\u6c34\u5728\u5e7f\u9614\u7684\u7011\u5e03\u4e2d\u5760\u843d\uff0c\u4f34\u968f\u7740\u5c71\u5ce6\u3002\u5b81\u9759\u7965\u548c\uff0c\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "2007851", "video_name": "826fe5b1-34c9-5c02-9281-9e90810db7a0", "text": "\u9f99\u4eceSkinwalker Ranch\u63a2\u7a76\u4e00\u53ea\u7626\u5f31\u7684\u7070\u8272\u5916\u661f\u4eba\uff0cTravis Taylor\u5e26\u7740\u8089\u9ebb\u7684\u773c\u795e\u6ce8\u89c6\u3002\u7535\u5f71\u822c\u7684"} +{"id": "1003996", "video_name": "4a0393cb-77fb-5d8d-bca6-72adcbe0bb02", "text": "\u521b\u5efa\u4e00\u4e2a\u5b8c\u7f8e\u7684\u5faa\u73af\uff0c\u5c06\u5723\u8bde\u6811\u548c\u5723\u8bde\u706f\u52a8\u753b\u5316\u3002"} +{"id": "8001730", "video_name": "901f1257-b9fc-5f27-8627-b2001ddc6e55", "text": "\u5e74\u8f7b\u9ad8\u6311\u7684\u6a21\u7279\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u524d\u5fae\u7b11\uff0c\u5c55\u793a\u5979\u7684\u7c89\u8272\u5916\u5957\u4ece\u4e0d\u540c\u89d2\u5ea6\u3002\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c32K\u3002"} +{"id": "7004111", "video_name": "25cb8772-3ef6-5d4e-9d5e-cd7dd259d946", "text": "\u4e00\u6761\u9c7c\u722c\u4e0a\u9646\u5730\uff0c\u7136\u540e\u53d8\u6210\u4e86\u4e00\u53ea\u7334\u5b50\u3002"} +{"id": "0004062", "video_name": "028b9b05-9807-52ee-9876-6245c23b2038", "text": "\u63d2\u56fe\u3001\u8c61\u5f81\u3001\u6728\u523b\u5370\u5237\u3001\u5370\u5237\u3001\u9ed1\u767d\u3001\u767d\u8272\u5370\u5237\u6b63\u9762\u3001\u7b80\u5355\u7684\u590d\u53e4\u6307\u5357\u9488\u3001\u9ed1\u8272\u80cc"} +{"id": "7003866", "video_name": "fa1433d7-ab20-5ff5-8ca0-6c7fb73332ff", "text": "\u4e3a\u6bd4\u4e9a\u8fea\u6c49\u8f66\u5236\u4f5c\u4e00\u4e2a10\u79d2\u7684\u5e7f\u544a\u89c6\u9891\u3002"} +{"id": "3004887", "video_name": "4fdef0ae-334b-5e23-aedd-4ca39e2f6e12", "text": "\u8425\u9500\u5e7f\u544a\uff0c\u9488\u5bf9\u65f6\u5c1a\u6c34\u9f99\u5934\u5ef6\u4f38\u4ef6\uff0c\u53ef\u4ee5\u76f4\u63a5\u63d2\u5165\u6c34\u9f99\u5934\uff0c\u5c31\u50cf\u7ed9\u51fa\u7684\u56fe\u7247\u4e00\u6837\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006413", "video_name": "2bf2baee-31ac-5ee2-b72e-d82192668179", "text": "\u4e00\u4e2a\u95e8\u536b\u6253\u5f00\u95e8\uff0c\u4e00\u8f86\u8f66\u5f00\u51fa\u6765\u3002"} +{"id": "0006547", "video_name": "2e761343-3c7e-5ae1-bfd1-3b46cb08000b", "text": "\u5357\u975e\u7f57\u672c\u5c9b\u76d1\u72f11964\u5e74\u7684\u7a7a\u4e2d\u5f71\u50cf\uff0c\u8d85\u5199\u5b9e\uff0c\u7535\u5f71\u611f\uff0c\u5bbd\u5c4f16\uff1a9\u3002"} +{"id": "4003305", "video_name": "f206e87d-a47f-5a78-a92b-5c4f7b5e6bad", "text": "\u6c99\u6f20\u4e2d\u4e00\u4f4d\u8001\u4eba\u5f39\u594f\u6728\u5409\u4ed6\u3002"} +{"id": "7002140", "video_name": "de3c7f40-5b56-5802-bc47-9c98e55dd192", "text": "\u5929\u7a7a\u4e2d\u4e0b\u7740\u91cd\u91cd\u7684\u95ea\u5149\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u90a3\u95ea\u5149\u4e2d\u884c\u8d70\uff0c\u5177\u6709\u7f8e\u5b66\u611f\u3002"} +{"id": "2005281", "video_name": "afacf2cf-2ace-5384-ae7b-f79fdc709e0e", "text": "\u4e00\u4e2a\u5f3a\u58ee\u7684\u4eba\u633a\u8eab\u62b5\u6297\u66b4\u98ce\u96e8\u3002\u4ed6\u624b\u6301\u957f\u5251\u51b2\u5411\u654c\u4eba\u3002\u654c\u4eba\u9ed1\u6697\u90aa\u6076\uff0c\u4f46\u4e0a\u5e1d\u662f"} +{"id": "2003110", "video_name": "c936c097-b6b3-5675-877c-e60f65c53cd5", "text": "\u4e00\u53ea\u80d6\u4e4e\u4e4e\u7684\u68d5\u8272\u732b\uff0c\u4f69\u6234\u7740\u5b50\u5f39\u5e26\uff0c\u624b\u6301\u5f13\u5f29\uff0c\u88ab\u661f\u7a7a\u73af\u7ed5\u3002"} +{"id": "1003292", "video_name": "3c965352-b466-57ef-89bf-297b8c0fd351", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u673a\u5668\u4eba\u673a\u68b0\u96f6\u4ef6\u7684\u8f66\u95f4"} +{"id": "8001245", "video_name": "da8f4ad5-41a7-53e4-b1fa-a75220809cf9", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u5728\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "6002238", "video_name": "8d9ef710-b903-5750-bfdb-3ba1a08b8a6d", "text": "\u827e\u7c73\u7eb3\u59c6\u88ab\u4e00\u573a\u98ce\u66b4\u5305\u56f4\uff0c\u4ee3\u8868\u7740\u4ed6\u5185\u5fc3\u6323\u624e\u7684\u538b\u529b\u548c\u6df7\u4e71\u3002"} +{"id": "1005615", "video_name": "673b53f4-93ff-5743-b543-deaa17e8cc37", "text": "\u4e00\u4e2a\u5145\u6ee1\u70df\u706b\u7684\u672b\u65e5\u57ce\u5e02\u3002\u4e00\u540d\u6218\u58eb\u5728\u6240\u6709\u5e9f\u589f\u4e2d\u5c79\u7acb\u4e0d\u5012\u30024K\u8d85\u903c\u771f\u4e14\u6d41\u7545\u7684\u52a8\u6001"} +{"id": "2004029", "video_name": "cea6bcc5-ee8b-5739-afa6-b399a36ab20b", "text": "\u4f26\u6566\u7684\u9ed1\u6697\u5c0f\u5df7\u3002\u9ea6\u514b\u98ce\u4ece\u9876\u90e8\u5782\u4e0b\u6765\u6643\u52a8\u3002\u7535\u94bb\u8282\u594f\u6c1b\u56f4\u3002"} +{"id": "1003600", "video_name": "42683fe8-e92c-5dff-b4a4-04e0966ff101", "text": "\u4e94\u79d2\u949f\u7684\u786c\u5e01\u629b\u63b7\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "3004031", "video_name": "7ede4003-f6a6-5d39-98c3-cdfc9ae07c2b", "text": "\u751f\u6210\u5723\u8bde\u8001\u4eba\u9001\u793c\u7269\u7684\u56fe\u50cf\uff0c\u6bcf\u4e2a\u793c\u7269\u90fd\u7559\u4e0b\u95ea\u95ea\u53d1\u5149\u7684\u96ea\u82b1\u548c\u51ac\u5b63\u7684\u795e\u5947\u6c14\u606f\u3002"} +{"id": "0005992", "video_name": "249fc1f5-8fe2-5e60-a77b-ffe53d409aff", "text": "\u5728\u767d\u8272\u80cc\u666f\u4e0b\u6392\u6210\u4e00\u884c\u8df3\u821e\u7684\u5357\u74dc"} +{"id": "2006191", "video_name": "f96343c4-00c9-517a-8fde-c05aa5feda52", "text": "Pixar\u98ce\u683c\u7684\u827a\u672f\u6e38\u620f\u4e3b\u5c4f\u5e55\u56fe\u50cf\uff0c\u80cc\u666f\u662f\u7eff\u8272\u5355\u8272\u8c03\u7684\u57ce\u5821\u548c\u5c71\u3002"} +{"id": "3004328", "video_name": "2c07f0c9-ff73-5d90-88aa-c9efb056e8fc", "text": "\u5efa\u9020\u4e00\u5ea7\u6b63\u5728\u7740\u706b\u7684\u5efa\u7b51\u3002"} +{"id": "0005244", "video_name": "1728f222-8eff-5512-9ded-d99843a8e6cd", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u8f6e\u5ed3\uff0c\u76ae\u80a4\u989c\u8272\u662f\u5f69\u8679\uff0c\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\uff0c\u80cc\u666f\u662f\u4e0d\u540c\u7684\u884c\u661f\u548c\u661f\u7cfb\u3002"} +{"id": "8003702", "video_name": "b21e5dcc-5b92-532f-a3f9-5fa780fc5f9f", "text": "\u60f3\u8c61\u4e00\u9897\u6d41\u661f\u5212\u8fc7\u591c\u7a7a\u3002"} +{"id": "3006191", "video_name": "0acbe1c5-bd5d-51ac-a781-8f9e2c17af1e", "text": "\u6709\u4eba\u8ba4\u4e3a\u5b83\u8d77\u6e90\u4e8e\u963f\u5df4\u65af\u738b\u671d\u671f\u95f4\u7684\u5df4\u683c\u8fbe\uff0c\u5e76\u7531\u82cf\u83b1\u66fc\u5927\u5e1d\u653e\u7f6e\u5728\u6258\u666e\u5361\u666e"} +{"id": "0004998", "video_name": "12fe4320-ccbc-574b-9cfd-0983b420f88c", "text": "\u5b66\u751f\u4eec\u5728\u5b66\u6821\u91cc\u8fdb\u884c\u9177\u70ab\u7684\u8857\u821e\u6bd4\u8d5b\uff0c\u5145\u6ee1\u4e86\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002 \n\nSource sentence: The restaurant serves a variety"} +{"id": "0004980", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "\u4e00\u8f86\u62e5\u67092\u4e2a\u8f66\u95e8\u7684\u8d85\u7ea7\u8dd1\u8f66\u5728\u5c71\u4e0a\u62d0\u5f2f\u3002"} +{"id": "3004459", "video_name": "c7a13be8-6931-5dec-8308-326769f11424", "text": "BMX\u8b66\u65b9\u5728\u72ed\u7a84\u8857\u9053\u4e0a\u8ffd\u9010\u7684\u7b2c\u4e00\u4eba\u79f0\u52a8\u4f5c\u955c\u5934\u3002"} +{"id": "0004562", "video_name": "0b468c8c-f8ca-5023-b92b-191f23ca1098", "text": "\u5c0f\u732b\u54aa\uff0c\u5728\u5e8a\u4e0a\u8df3\u8dc3\u3002\n\nSource sentence: The sun is shining brightly today.\n\u4eca\u5929\u592a\u9633\u5f88\u660e\u4eae\u3002"} +{"id": "0004271", "video_name": "062e975f-3c31-5d9b-aa21-322d082d2596", "text": "\u8fc8\u514b\u5c14\u4ee5\u300a\u4fa0\u76d7\u730e\u8f66\u624b5\u300b\u7684\u98ce\u683c\u53bb\u4ed6\u7684\u8f66\u90a3\u91cc\u3002"} +{"id": "1004587", "video_name": "55548eba-62a4-5ebd-8865-4527876a4b75", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u72d0\u72f8\u548c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u3002"} +{"id": "5001598", "video_name": "d74f42aa-136c-5eee-8bdf-a3a4ac7441f1", "text": "\u8389\u8389\u5973\u5b69\u53d1\u660e\u4e86\u4e00\u4e2a\u80fd\u5236\u9020\u5931\u63a7\u7b11\u58f0\u7684\u5492\u8bed\u3002\u56fe\u50cf\u5361\u901a\u3002"} +{"id": "8001608", "video_name": "d49aa186-ef2a-5c11-8361-825f2bdd455c", "text": "\u5370\u5ea6\u4f10\u6728\u5de5\u4eba\u5728\u5e02\u573a\u4e0a\u51fa\u552e\u6728\u6750\u3002"} +{"id": "2005979", "video_name": "388ecf6d-f4cb-5345-a8eb-aa5600fe9ed3", "text": "\u6211\u7684\u5976\u5976\u6b63\u5728\u5fae\u7b11\u7740\u505a\u5feb\u901f\u4f53\u64cd\u3002\u4fe1\u606f\uff1a\u8001\u5e74\u5987\u5973\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001630", "video_name": "4b393258-52be-58e1-ba25-e16b6d87524a", "text": "\u5728\u4e00\u4e2a\u5893\u5730\u91cc\uff0c\u4e00\u7f50\u836f\u6c34\u7684\u591c\u666f\u771f\u5b9e\u611f8K\u3002"} +{"id": "3006637", "video_name": "32e71cf1-2641-5a85-878e-5544568bbb3f", "text": "\u90a3\u4e2a\u4eba\u4fdd\u6301\u4e0d\u53d8\uff0c\n\u80cc\u666f\u5f00\u59cb\u53d8\u6210\u5916\u592a\u7a7a\uff0c\n\u7136\u540e\u86c7\u7eb9\u8eab\u5f00\u59cb\u5728\u90a3\u91cc\u98de\u821e\uff0c"} +{"id": "7004157", "video_name": "196a8e7e-cbe9-5483-ac03-0c925d8fab49", "text": "\u57ce\u5e02\u519c\u573a\u4f4d\u4e8e\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u4eba\u4eec\u53ef\u4ee5\u722c\u4e0a\u5c4b\u9876\u8d2d\u4e70\u5fc5\u8981\u7684\u4ea7\u54c1\u3002"} +{"id": "2005391", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "\u732b\u5c0f\u5de7\u800c\u808c\u8089\u53d1\u8fbe\uff0c\u8eab\u4f53\u5448\u9ed1\u8272\uff0c\u773c\u775b\u53ef\u4ee5\u662f\u84dd\u8272\u6216\u6a59\u8272\u3002"} +{"id": "8002630", "video_name": "21eb2685-aaf7-5d87-8ab8-cfc32719d99e", "text": "\u4e00\u4e2a\u9a6c\u620f\u56e2\uff0c\u805a\u5149\u706f\u548c\u821e\u53f0\u7740\u706b\u5e76\u574d\u584c\uff0c\u903c\u771f\u3001\u7535\u5f71\u5316\u3002"} +{"id": "0006993", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "\u5916\u9762\u4e0b\u7740\u70b8\u9e21\uff0c\u4eba\u4eec\u8bd5\u56fe\u5728\u5916\u9762\u6349\u4f4f\u70b8\u9e21\u3002"} +{"id": "6003531", "video_name": "3035f465-1815-5e3d-827a-59f50226f3b4", "text": "1970\u5e74\u7684\u5f71\u7247\u4e2d\uff0c\u4e00\u7fa4\u98de\u884c\u7684\u5929\u4f7f\u4e92\u76f8\u4ea4\u8c08\uff0c\u8c08\u8bba\u4eba\u7c7b\u7684\u5815\u843d\u3002"} +{"id": "0003563", "video_name": "3f99c57f-fc4d-5402-a0d0-aa3690eb3edc", "text": "\u4e00\u4f4d\u4e2d\u56fd\u957f\u8005\u5411\u56f4\u5750\u5728\u4ed6\u5468\u56f4\u7684\u52c7\u58eb\u4eec\u8bb2\u4e86\u4e00\u4e2a\u5bd3\u8a00\u3002"} +{"id": "7004532", "video_name": "23b91565-ac91-5cde-8d0b-310e5bffe699", "text": "\u7535\u5f71\u5377\u8f74\u5012\u6570\u7136\u540e\u8fc7\u6e21\u5230\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u68d5\u53d1\u84dd\u773c\u775b\u7684\u767d\u4eba\u5973\u6027\u5750\u5728\u590d\u53e4"} +{"id": "7003912", "video_name": "61ea1058-62cc-5fab-85b1-91cf7d6b7271", "text": "\u521b\u4f5c\u4e00\u4e2a\u5531\u6b4c\u7537\u5b69\u7684\u8096\u50cf\u3002"} +{"id": "4004279", "video_name": "30af1dde-8d33-5431-9815-ca5776431495", "text": "\u9634\u5f71\u4f3c\u4e4e\u53d8\u5f97\u6d3b\u4e86\u8d77\u6765\uff0c\u626d\u66f2\u6210\u602a\u5f02\u7684\u5f62\u72b6\u3002"} +{"id": "7003884", "video_name": "3e1edd3e-6c2f-5450-9bf7-43b90f91887e", "text": "80\u5e74\u4ee3\u8ba1\u7b97\u5668\u5de8\u578b\u6536\u85cf\u54c1\u7684\u8fd1\u8ddd\u79bb\u7279\u5199\u3002\u4fe1\u606f\uff1a\u592a\u7a7a\u4e2d\u7684\u6536\u85cf\u5bb6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6002586", "video_name": "270ab449-18ba-50d7-851c-520136373045", "text": "\u66b4\u98ce\u96e8\uff0c\u8239\u53ea\u6447\u6643\uff0c\u4eba\u7269\u5486\u54ee\uff0c\u7ef3\u7d22\u6447\u6643\uff0c3D\u3002"} +{"id": "1005913", "video_name": "6c9f4719-3e92-5757-81a8-fb44049f35ea", "text": "\u7535\u5f71\u5f0f\u955c\u5934\u3001\u5efa\u7acb\u955c\u5934\uff0c\u5145\u6ee1\u95ea\u5149\u8679\u819c\u6676\u4f53\u7684\u5927\u6d1e\u7a74\u3002"} +{"id": "0004669", "video_name": "0d07a128-e17f-5cdd-a50a-6c2173b65188", "text": "\u4e00\u5e45\u6e29\u99a8\u7684\u5bb6\u5ead\u623f\u5c4b\u63d2\u753b\uff0c\u5185\u5916\u90fd\u6709\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "1005782", "video_name": "6a6b4e78-dd1a-5cb6-9acb-072c3859d7a7", "text": "\u5927\u68ee\u6797\u5728\u5c0f\u8def\u4e2d\u592e\u3002"} +{"id": "8003199", "video_name": "c00c0db3-53c4-5b7d-bb05-06eccbf8e523", "text": "\u5c06\u82cf\u7f8e\u5c14\u6954\u5f62\u6587\u5b57\u79fb\u52a8\u3002"} +{"id": "7003360", "video_name": "b8f0144d-4cd4-5e88-9472-4d5e3d87e411", "text": "AFD\u6807\u5fd7\u6389\u5728\u4e86\u4e00\u4e2a\u7ea2\u7eff\u706f\u4e0a\u3002"} +{"id": "5001371", "video_name": "681b30bb-f93e-5382-a075-68e56aa7fa60", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u540d\u4e3aFoder\u7684\u6447\u6eda\u4e50\u961f\u7684\u77e2\u91cf\u98ce\u683c\u6807\u5fd7\u3002 \n\nSource sentence: The restaurant is closed for renovation until further notice. \n\u9910\u5385\u56e0\u88c5"} +{"id": "2005963", "video_name": "8f05d610-fd31-59da-bb48-f1ce1a8ae3c6", "text": "Source sentence: \u5174\u594b\u7684\u5bb6\u4eba\u5728\u95e8\u53e3\u6536\u62fe\u884c\u674e\u5e76\u6325\u624b\u544a\u522b\u3002"} +{"id": "2007756", "video_name": "7c6ca362-f1ff-5cfa-a4c5-1296f5c0d6b0", "text": "\u4e00\u5bf9\u5e78\u798f\u7684\u592b\u5987\u5728\u6d77\u6ee9\u4e0a\u7684\u623f\u8f66\u524d\u559d\u5496\u5561\u3002"} +{"id": "8003996", "video_name": "ef95cf85-62f7-5645-9c67-177783093118", "text": "\u8fd9\u4e2a\u4eba\u5728\u5411\u524d\u8d70\uff0c\u5c0f\u72d7\u8ddf\u7740\u4e3b\u4eba\u8d70\uff0c\u98ce\u5728\u5439\u3002"} +{"id": "0003980", "video_name": "0104c04a-3e5b-50d3-8a02-d7072fc633ed", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u50cf\u7d20\u827a\u672f\u9762\u5177\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u5fae\u7b11\uff0c\u52a8\u4f5c\u6781\u5c11\u3002"} +{"id": "6002672", "video_name": "7068af34-948f-5f83-8e8f-40cc9bf74918", "text": "\u7531\u836f\u4e38\u5236\u6210\u7684\u5b8c\u7f8e\u5faa\u73af\u7684\u5206\u5f62\u56fe\u6848\u3002"} +{"id": "2005679", "video_name": "6d3640e9-ae2e-587f-ae8a-cda70a2e2f6d", "text": "3D\u52a8\u753b\u6587\u672c\n\u201c\u60a8\u7684\u5b89\u5168\u662f\u6211\u4eec\u7684\u4efb\u52a1\u201d\n\u201c\u667a\u80fd\u5b89\u5168\u7cfb\u7edf\u201d"} +{"id": "2007577", "video_name": "75e0a115-d66f-5884-8570-4a0ea7e3f90a", "text": "\u5728\u8fd9\u4e2a\u8212\u9002\u7684\u623f\u95f4\u91cc\uff0c\u4e09\u4e2a\u597d\u5947\u7684\u5b69\u5b50\u6b63\u5728\u4e00\u8d77\u4eab\u53d7\u6109\u5feb\u7684\u65f6\u5149\u3002\u5728\u6c99\u53d1\u4e0a\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5411\u65e5"} +{"id": "8002640", "video_name": "66184513-417e-540c-bff1-a4be2d865e5a", "text": "\u7528\u7ea2\u8272\u6db2\u4f53\u5236\u6210\u7684\u677f\u7403\u8fd0\u52a8\u5458\u3002"} +{"id": "1003721", "video_name": "44befa0b-7a00-50a8-a73d-956f35b84caa", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u98de\u9a6c\u5728\u706b\u5149\u4e2d\u7ff1\u7fd4\uff0c\u632f\u7fc5\u65f6\u706b\u82b1\u56db\u6e85\uff0c\u9ed1\u6697\u7684\u4e91\u5c42\u4e0b\uff0c\u5b9b\u5982\u7535\u5f71"} +{"id": "2005769", "video_name": "d9aad0e6-56d0-5fd8-8433-d40fd3aa0bd7", "text": "\u62c9\u6770\u542c\u5230\u8fd9\u4ef6\u4e8b\u611f\u5230\u6cae\u4e27\u3002\u4ed6\u6000\u7740\u5e0c\u671b\u8fdc\u884c\uff0c\u4f46\u4f3c\u4e4e\u4ed6\u7684\u65c5\u7a0b\u662f\u5f92\u52b3\u7684\u3002\u5361\u901a\u89d2\u8272"} +{"id": "2003253", "video_name": "ecdf8670-b4b3-551c-a34e-caea14e5af42", "text": "\u5730\u4e0a\u7684\u53f6\u5b50\u5f00\u59cb\u7efd\u653e\u5e76\u4f38\u5411\u592a\u9633\u3002"} +{"id": "5001893", "video_name": "170e1901-9bbb-5b00-9f4c-34551477be25", "text": "\u4e00\u4e2a\u5173\u4e8eAlexandru Ioan Cuza\u53ca\u5176\u751f\u6d3b\u548c\u6218\u6597\u76842\u5206\u949f\u52a8\u753b\u3002"} +{"id": "7004448", "video_name": "257221a4-a76e-51a2-8cc8-fd01503c5ffb", "text": "\u8001\u4e00\u4ee3\u7684\u5bb6\u548c\u5ba0\u7269\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u50cf\u9e1f\u4e00\u6837\u3002"} +{"id": "4002195", "video_name": "474c2742-5085-5a96-8026-b9bda2f2458e", "text": "\u753b\u4e00\u5e45\u5361\u901a\u52a8\u753b\uff0c\u753b\u4e0a\u4e00\u4e2a\u7f8e\u4e3d\u5927\u773c\u775b\u7684\u54ed\u6ce3\u5a74\u513f\u548c\u5988\u5988\uff0c\u4ed6\u4eec\u5750\u5728\u4e00\u8f86\u98de"} +{"id": "0003897", "video_name": "456642b6-0374-5652-ae1a-548fdb8728d8", "text": "\u5927\u7329\u7329\u3001\u72d7\u3001\u732b\u548c\u4fd8\u83b7\u8005\u5750\u5728\u6709\u96fe\u7684\u9634\u5929\u96e8\u6797\u4e2d\u7684\u6309\u6469\u6d74\u7f38\u4e2d\uff0c\u4ee5POV\u89c6"} +{"id": "0004591", "video_name": "0ba08e36-9dd1-57d1-9489-00d32b770972", "text": "\u57c3\u5c14\u7ef4\u65af\u00b7\u666e\u96f7\u65af\u5229\u548c\u8a79\u59c6\u65af\u00b7\u8fea\u6069\u7684\u81c2\u529b\u6bd4\u8d5b"} +{"id": "7002502", "video_name": "d58f804f-cc29-56e1-94ab-549341dda84a", "text": "\u5c0f\u7ea2\u5e3d \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "8001046", "video_name": "0dd7b9ec-bb67-5a7d-a75a-0166d19ce666", "text": "\u5728\u90a3\u91cc\uff0c\u5728\u53e4\u8001\u7684\u6a61\u6811\u4e0b\uff0c\u5979\u627e\u5230\u4e86\u91d1\u8272\u7684\u6a61\u5b50\u548c\u95ea\u8000\u7740\u5f02\u4e16\u754c\u5149\u8f89\u7684\u6c34\u6676\u6cc9\u3002"} +{"id": "4004090", "video_name": "c24991fd-b4bf-509b-8d4e-3fa16cdcb04d", "text": "\u9ed1\u5e2e\u5076\u7136\u53d1\u73b0\u795e\u79d8\u7684\u82b1\u56ed\u5927\u95e8\u3002"} +{"id": "0005993", "video_name": "249ff7eb-0a7a-5d5d-bcda-ba54975ebb03", "text": "\u6839\u636e\u4ee5\u4e0b\u63d0\u793a\u751f\u6210\u4e00\u4e2aYouTube\u5934\u50cf\u56fe\u7247\uff1a\u300a\u91ce\u5916\u5947\u89c2\u300b\uff1a\u8fd9\u4e2a\u540d\u5b57\u610f\u5473\u7740\u4f60\u7684\u9891\u9053\u5c55\u793a\u4e86\u91ce\u751f\u52a8\u7269\u7684\u591a\u6837\u6027\u548c\u7f8e"} +{"id": "3003573", "video_name": "7ee3956e-88f8-5121-aae7-1ce00682c2e4", "text": "\u8718\u86db\u4fa0\u7ad9\u5728\u591c\u665a\u7684\u96e8\u4e2d\u3002"} +{"id": "0004911", "video_name": "114f991a-b976-54d0-a708-32182f40a755", "text": "\u82b1\u74e3\u98de\u821e\u548c\u6c34\u82b1\u6e85\u5c04\uff0c\u4fe1\u606f\uff1a\u6c34\u3002"} +{"id": "0004354", "video_name": "07981e3a-db91-5840-a905-e83728e9c791", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u7a97\u6237\u8fb9\u8bfb\u4e66\u3002"} +{"id": "4004200", "video_name": "43f6e4fa-17da-5be5-b0c0-3872179f94c8", "text": "\u5979\u9762\u4e34\u7740\u4eba\u751f\u4e2d\u7684\u6311\u6218\u3002"} +{"id": "4004887", "video_name": "a1f32b35-2641-5ee6-adf8-9b3c9134b22d", "text": "\u5546\u4e1a\u98ce\u683c\u76843D\u5361\u901a\u548c\u80cc\u666f\u795e\u5947\u7684\u68ee\u6797\u3002\u72fc\u627e\u5230\u4e86\u4e00\u4e2a\u9965\u997f\u7684\u5c0f\u52a8\u7269\uff0c\u8fd9\u53ea\u52a8\u7269\u975e\u5e38\u865a"} +{"id": "6002826", "video_name": "26cb0e58-6204-5931-a9c1-2bcdfc1e647f", "text": "\u9ed1\u6697\u4e2d\u7eb9\u8eab\u624b\u6301\u6697\u7ea2\u8272\u73ab\u7470\u82b1\u3002"} +{"id": "8003594", "video_name": "7dfb586d-fb43-5069-b644-732c6f49d405", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u519c\u573a\uff0c \u8bf7\u4f7f\u75283D\u52a8\u753b\u5361\u901a\u7684\u98ce\u683c\u3002"} +{"id": "6002849", "video_name": "96502db2-00c3-51bd-b11c-4676237eda33", "text": "\u7c89\u8272\u7684\u5927\u7329\u7329\u6234\u7740\u767d\u8272\u773c\u955c\uff0c4k\u3002"} +{"id": "0003689", "video_name": "41b6e68a-767a-5f56-903f-4dfae0bdff34", "text": "\u672a\u6765\u4eba\u7c7b\u6b63\u5728\u6ce8\u89c6\u7740\u4f60\u3002"} +{"id": "0004476", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "\u7537\u5b50\u5728\u533b\u9662\u5e8a\u4e0a\u9192\u6765\u3002"} +{"id": "6004517", "video_name": "f7972e78-4e7d-5062-994f-f1c7063cc291", "text": "\u9ad8\u5c14\u592b\u4ff1\u4e50\u90e8\u5973\u5b69\u3002\u4fe1\u606f\uff1aLightSPA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1003285", "video_name": "3c67aaa0-6335-57dd-acfd-ab66e4caf722", "text": "\u674e\u6602\u00b7S\u00b7\u80af\u5c3c\u8fea\u4e0e\u5361\u5c14\u00b7\u7ea6\u7ff0\u900a\u4f1a\u9762\u3002"} +{"id": "3003625", "video_name": "7aab5d26-e972-53a4-a8e2-458a0f52375e", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u7d2b\u8272\u7403\u4f53\u6b63\u5728\u7206\u70b8\uff0c\u56e0\u4e3a\u5b83\u662f\u4e00\u4e2a\u7d2b\u8272\u5927\u6c14\u5c42\u79d1\u5e7b\u4e16\u754c\u4e2d\u7684\u70b8\u5f39\uff0c\u6709\u4eba\u7c7b\u548c\u79d1"} +{"id": "6004890", "video_name": "8efeb6e7-d13b-5f38-8e1c-2400b2500846", "text": "\u54e5\u8c2d\u5e02\u65e5\u843d\u65f6\u7684\u5982\u753b\u666f\u8272\u3002"} +{"id": "4004596", "video_name": "e60f3c73-7a25-53c7-b63c-0baac330f9ff", "text": "\u73b0\u5b9e\u76844K\u591c\u95f4\u68ee\u6797\u98ce\u66b4\u5728\u5c0f\u5c4b\u91cc\u3002"} +{"id": "1006025", "video_name": "6ebb9bab-2bfa-520d-b578-4bfb0703c374", "text": "\u521b\u9020\u4e00\u4e2a\u8036\u7a23\u8e72\u5728\u6c99\u6ee9\u4e0a\u5199\u5b57\u7684\u5f62\u8c61\uff0c\u80cc\u666f\u91cc\u6709\u51e0\u4e2a\u4eba\u5728\u770b\u7740\uff0c8K\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "1005415", "video_name": "638689aa-e444-5e28-8f09-807cc998eb60", "text": "\u585e\u7f2a\u5c14\u603b\u662f\u4e50\u610f\u8868\u8fbe\u611f\u6fc0\u4e4b\u60c5\uff0c\u5f00\u59cb\u7528\u4ed6\u7684\u601d\u60f3\u548c\u60c5\u611f\u586b\u5145\u8fd9\u672c\u4e66\u7684\u9875\u9762\u3002\u4ed6\u611f\u6fc0\u65e5\u5e38\u751f\u6d3b\u4e2d\u7684\u5c0f"} +{"id": "6004403", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "\u7f8e\u4e3d\u7684\u63d2\u56fe\uff0c\u5e74\u8f7b\u7684\u6811\u5728\u5e72\u67af\u7684\u690d\u7269\u4e2d\u95f4\uff0c\u6210\u529f\u548c\u5931\u8d25\u4e4b\u95f4\u5f62\u6210\u9c9c\u660e\u7684\u5bf9\u6bd4\u3002\u4e00\u4e2a\u53cd\u601d\u7684\u65f6\u523b\u3002"} +{"id": "4003776", "video_name": "3eaf8f1c-6f94-5469-86dc-66f0ff676cff", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u53ea\u4e4c\u9f9f\u4e00\u8d77\u79cd\u4e0b\u4e86\u79cd\u5b50\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u4ece\u897f\u65b9\u843d"} +{"id": "0006440", "video_name": "2c783f5c-3059-5fe2-adb3-bc914a8482f5", "text": "\u4e00\u79cd\u808c\u8089\u56e0\u5b50\u548c\u4e00\u79cd\u8102\u80aa\u56e0\u5b50\u63e1\u624b\u5fae\u7b11\u3002"} +{"id": "6003781", "video_name": "b6c4dca4-ad81-50e8-abe9-a99b7e012aa6", "text": "\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u8005\u6c49\u8d5b\u5c14\u548c\u683c\u857e\u7279\u5c14\uff0c\u5e26\u67091990\u5e74\u4ee3\u5bb6\u5ead\u5f55\u50cf\u5e26\u7684\u7f8e\u5b66\u3002"} +{"id": "1004116", "video_name": "4c3cf88b-667c-5186-909c-b85a8c1f36a3", "text": "\u71c3\u70e7\u7684\u706b\u7130\u5c31\u50cf\u771f\u5b9e\u7684\u4e00\u6837\uff0c\u8ba9\u4e00\u5207\u90fd\u53d8\u5f97\u771f\u5b9e\uff0c\u5e76\u5728\u623f\u95f4\u4e2d\u79fb\u52a8\u6444\u50cf\u673a\u3002"} +{"id": "2006408", "video_name": "861b4e87-a9ae-521b-b197-681e4c882ca9", "text": "\u4e00\u5e45\u5386\u53f2\u4eba\u7269\u7684\u53f6\u5b50\u8096\u50cf\uff0c\u901a\u8fc7\u53f6\u5b50\u8fd9\u4e00\u5a92\u4ecb\u6355\u6349\u4ed6\u4eec\u7684\u672c\u8d28\u548c\u9057\u4ea7\u3002"} +{"id": "2006063", "video_name": "956b458c-28b2-5ece-bd5f-2a42f9fb0e13", "text": "\u519c\u592b\u5728\u4e9a\u6d32\u5c71\u533a\u7684\u5c0f\u8def\u4e0a\u884c\u8d70\uff0c\u6b64\u65f6\u5915\u9633\u6b63\u5728\u897f\u5c71\u6c89\u843d\u3002"} +{"id": "1006817", "video_name": "7cb51674-e805-5dbf-9505-038e8c6c6350", "text": "\u54c8\u7acb\u5fb7\u00b7\u672c\u00b7\u74e6\u5229\u5fb7\u4e0e\u9c81\u65af\u5766\u5728\u5361\u8fea\u897f\u4e9a\u6218\u5f79\u4e2d\u5bf9\u5792\u3002"} +{"id": "4003638", "video_name": "6e7cf508-b83c-516a-b8da-c4ab54ae3e1c", "text": "\u7cbe\u7075\u90e8\u843d\u56f4\u7740\u7bdd\u706b\u8df3\u821e\u3002"} +{"id": "6004594", "video_name": "716f754e-137c-5517-a5f1-78f0adca6375", "text": "\u5728TIKTOK\u5c3a\u5bf8\u4e0a\u5c55\u793a\u8ff7\u4eba\u7684\u98ce\u666f\u548c\u8212\u7f13\u7684\u97f3\u4e50\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\n\u4f60\u80fd\u63a8\u8350\u9644\u8fd1"} +{"id": "7002704", "video_name": "e4fa3b31-5df3-5908-9c59-e89e0cc9e5b4", "text": "\u7537\u4eba\u540d\u53eb\u65e0\u540d\uff0c\u6b63\u5728\u4e3a\u62dc\u4ec1\u6155\u5c3c\u9ed1\u8db3\u7403\u4ff1\u4e50\u90e8\u62cd\u6444\u884c\u52a8\u7f1d\u5236\u7ed2\u9762\u5730\u6bef\u3002"} +{"id": "4002212", "video_name": "f8cc0112-4b3d-57f7-b5be-fb1ac83a820e", "text": "\u4e00\u53ea\u9e1f\u7684\u8bde\u751f\uff0c\u83b1\u6602\u8bfa\u62c9\u00b7\u5361\u6797\u987f\uff0c1930\u5e74"} +{"id": "1004389", "video_name": "5125cefa-dd44-5802-bf6a-16e65743f3e3", "text": "translation: \u5c4f\u5e55\u5207\u6362\u5230Sara\u51dd\u89c6\u7740\u5979\u7684\u8dd1\u978b\uff0c\u903c\u771f\u3002"} +{"id": "2004491", "video_name": "e708e569-58c2-5814-b9c3-355500f2a6ef", "text": "\u8001\u8ff7\u4eba\u7684\u82f1\u4fca\u7537\u5b50\uff0c8K\uff0c\u9510\u5229\uff0c\u7535\u5f71\u5316\uff0c\u903c\u771f\u7684\u6545\u4e8b\u3002"} +{"id": "7003703", "video_name": "fc4260d8-d978-5784-87dd-ad9b1a0d4902", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u5728\u665a\u4e0a\u8fdb\u5165\u4e86\u4e00\u4e2a\u4fc4\u7f57\u65af\u5165\u53e3\u3002"} +{"id": "6002650", "video_name": "843b87a0-d790-5f48-abe7-90cbcbb738f4", "text": "\u5927\u897f\u6d0b\u4e2d\u7684\u8fc8\u963f\u5bc6\u3001\u767e\u6155\u5927\u548c\u6ce2\u591a\u9ece\u5404\u4e4b\u95f4\u7684\u6d77\u57df\u4ee5\u98de\u673a\u548c\u8239\u53ea\u795e\u79d8\u5931\u8e2a\u800c"} +{"id": "3003244", "video_name": "f80aba75-7a39-5a7c-b805-2e485b63705b", "text": "\u4e00\u53ea\u5e26\u7740\u53d1\u52a8\u673a\u5728\u5929\u7a7a\u4e2d\u7684\u732b\u3002"} +{"id": "2003835", "video_name": "260942c8-1a38-5610-9573-bf16b502b035", "text": "Lila\u5f00\u5fc3\u8868\u60c5\u7684\u7167\u7247\u3002"} +{"id": "3004865", "video_name": "0804d6c3-d2f0-5d68-b5da-16c4b3c18e67", "text": "\u5ea6\u5047\u578b\u6d77\u6ee9\u522b\u5885\uff0c8K\u5206\u8fa8\u7387\uff0c\u52a8\u6001\u7167\u660e\uff0c\u7cbe\u7ec6\u827a\u672f\uff0c\u5229\u7528Unreal Engine 5\u4f53\u79ef\u5149\u7ebf\u6280\u672f\u3002"} +{"id": "2003894", "video_name": "cb386b38-18c2-5381-a452-33fdacd02df3", "text": "\u4e00\u4e2a\u7537\u4eba\u62ff\u7740\u4e00\u4e2a\u5927\u6444\u50cf\u673a\u8f6c\u8eab\u62cd\u6444\u3002"} +{"id": "6004750", "video_name": "3d6acbb2-dd98-5852-8c45-930bfcede40b", "text": "\u5feb\u4e50\u7684\u5bcc\u6709\u963f\u62c9\u4f2f\u4eba\u5728\u5927\u529e\u516c\u5ba4\u3002"} +{"id": "3006875", "video_name": "62cd59a3-80b8-5c26-b8c9-d11d3cb2f628", "text": "\u5728\u70ed\u6c34\u6c60\u91cc\u505a\u996d\u7684\u53a8\u5e08\u3002\n\nSource sentence: The sun is setting over the mountains. \n\n\u592a\u9633\u6b63\u5728\u5c71\u4e0a\u843d\u5c71\u3002"} +{"id": "0005004", "video_name": "131d32b3-cbf8-58b5-b807-e3b07259c519", "text": "\u516c\u4e3b\u5979\u975e\u5e38\u5584\u826f\u7f8e\u4e3d\u3002"} +{"id": "1004549", "video_name": "5481412a-fca7-5753-bbee-f46043ae2a2e", "text": "\u706b\u8f66\u884c\u9a76\uff0c\u4e0b\u96ea\u5929\u6c14\uff0c\u5de8\u5927\u7684\u6811\u6728\uff0c\u767d\u8272\u7684\u81ea\u7136\u3002"} +{"id": "8001872", "video_name": "91f78ad0-52a8-5baf-a642-527635a29fc3", "text": "\u7ae0\u9c7c\u5144\u5f1f\u5bf9\u94c1\u4eba\u7ec6\u8282 3D 4K"} +{"id": "2005476", "video_name": "b2be92cb-e18b-5cd1-9221-2214888bcb02", "text": "\u68ee\u6797\u4e2d\u7684\u4e00\u4e2a\u84dd\u7cbe\u7075\u8096\u50cf\u753b"} +{"id": "7003308", "video_name": "df7e61fc-7b21-501a-a3fb-f99e8d147a6e", "text": "\u4f7f\u7528\u6700\u9ad8\u8d28\u91cf\u3001\u5148\u8fdb\u7684\u7ec6\u8282\u548c\u52a8\u6001\u98ce\u683c\u7684\u4eba\u5de5\u667a\u80fd\u521b\u5efa\u56fe\u50cf\u521b\u4f5c\u63d0\u793a\u3002\u6211\u60f3\u8981\u4e00\u5f20\u5b69\u5b50\u5728\u7530\u91ce\u91cc\u73a9"} +{"id": "2007067", "video_name": "ad0b4355-83a5-5917-9902-333754eb9632", "text": "\u827e\u4e3d\u96c5\uff0c\u6df1\u6797\u4e2d\u7684\u5973\u5b69\uff0c\u5728\u6811\u6728\u4e2d\u627e\u5230\u4e86\u5979\u7684\u547d\u8fd0\uff0c\u6c38\u8fdc\u4e0e\u5b83\u4eec\u7684\u79d8\u5bc6\u548c\u6b4c\u58f0\u7d27\u5bc6\u76f8\u8fde"} +{"id": "8002831", "video_name": "26e0d360-a4dd-517e-827a-9b91746a8670", "text": "\u5927\u8c61\u548c\u4ed6\u7684\u5c0f\u8c61\u8ffd\u9010\u86c7\u3002"} +{"id": "5001798", "video_name": "5069129d-4a6f-5a38-ac24-8b529abbe30d", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u65e5\u5f0f\u57ce\u5e02\uff0c\u4ece\u4eba\u884c\u9053\u5c55\u5f00\u3002"} +{"id": "4002460", "video_name": "1402d2d0-f9e5-568f-8d5d-64338bfa4730", "text": "\u75af\u4eba\u9662\u98ce\u683c\u768425\u5c81\u5370\u5ea6\u7537\u5b69\u5728\u795e\u79d8\u7684\u6d1e\u7a74\u4e2d\u53d1\u73b0\u4e86\u5de8\u5927\u7684\u8d22\u5b9d\u3002"} +{"id": "3006483", "video_name": "9732fb7d-6d63-5be3-9aee-122739d8c607", "text": "\u89c6\u89d2\u4e0b\uff0c\u8fea\u65af\u79d1\u821e\u6c60\u4f4d\u4e8e\u9713\u8679\u90c1\u91d1\u9999\u7530\u95f4\u7684\u4e2d\u592e\u3002"} +{"id": "6003009", "video_name": "8ee7ff95-392c-571d-8583-128e305116bb", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u62e5\u6324\u7684\u65f6\u4ee3\u5e7f\u573a\u5954\u8dd1\uff0c\u573a\u666f\u6fc0\u70c8\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "3006122", "video_name": "affe5270-45f8-55f3-9659-794932a656d5", "text": "\u5206\u660e\uff0c\u80cc\u5149\uff0c\u5c04\u7ebf\u8ffd\u8e2a\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c8k\u3002\u5973\u5b69\u5c06\u53cc\u624b\u6402\u4f4f\u819d\u76d6\uff0c\u628a\u5934\u57cb\u5728"} +{"id": "1004143", "video_name": "4cbef518-68bc-5cc5-ad97-de032f064251", "text": "\u53d1\u9001\u7ea2\u5305 \u9644\u4ef6\uff1a1"} +{"id": "8003778", "video_name": "850bf794-ef98-5f9c-80ff-d8d10278f016", "text": "\u5965\u8428\u9a6c\u00b7\u672c\u00b7\u62c9\u767b\u6c89\u6d78\u5728\u6c49\u52aa\u5361\u8282\u7684\u6b22\u4e50\u4e2d\u3002"} +{"id": "1006989", "video_name": "7fe1d64d-15ad-5519-b252-a28ad659dd4b", "text": "\u4e00\u4e2a\u58eb\u5175\u56de\u5bb6\uff0c\u95e8\u4e3a\u4ed6\u6253\u5f00\u3002\u5149\u7ebf\u8ffd\u8e2a\u3002\u60ca\u4eba\u7684\u7ec6\u8282\u3002"} +{"id": "2007407", "video_name": "d4480d78-d628-5ea4-bf9b-07a4727037b9", "text": "\u5386\u53f2\u5b66\u5bb6\u4eec\u8c03\u67e5\u4e86\u514b\u83b1\u59c6\u5173\u4e8e\u4ed6\u7684\u519b\u4e8b\u5386\u53f2\u7684\u7248\u672c\uff0c\u73b0\u5728\u8ba4\u4e3a\u6545\u4e8b\u7684\u7b2c\u4e00\u90e8\u5206\uff0c\u5173\u4e8e\u4ed6\u572810\u5c81\u79bb"} +{"id": "0006735", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "\u51fa\u73b0\u5728\u5899\u4e0a\u7684\u6d82\u9e26\u827a\u672f\u3002"} +{"id": "4004170", "video_name": "3bf04532-c78c-57b2-80bd-35320a782496", "text": "\u521b\u9020\u4e00\u4e2a\u77e9\u9635\u88ab\u63a5\u7ba1\u7684\u573a\u666f\u3002\u4e3b\u4eba\u516c\u7684\u5185\u90e8\u51b2\u7a81\u5fc5\u987b\u660e\u663e\u5b58\u5728\u3002"} +{"id": "2006368", "video_name": "1e3cc14c-5f37-50b4-8695-ad3945b971b4", "text": "\u7537\u4eba\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\uff0c\u903c\u771f\u7684\u7535\u5f71\u6050\u6016\u573a\u666f\u3002 \n\nSource sentence: The sun is setting behind the mountains, painting the sky with shades of orange and pink. \n"} +{"id": "6004783", "video_name": "f0a5178d-20f4-5272-bf82-821e7deaadf4", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u5f00\u9614\u7684\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u84dd\u5929\u767d\u4e91\u5728\u5934\u9876\u4e0a\u3002"} +{"id": "6002346", "video_name": "51c1178f-2bf1-58bf-a60c-952a22c18826", "text": "\u5154\u5b50\u91ce\u9910\uff0c\u827a\u672f\u5bb6\u8096\u6069\u00b7\u5766\u7ed8\u5236\u3002"} +{"id": "6004564", "video_name": "831e3947-fb4c-519f-91e4-043e33ba475a", "text": "\u73b0\u5728\u5c55\u793a\u4e00\u6761\u6f06\u9ed1\u7684\u8857\u9053\u4e0a\u7f8e\u4e3d\u7684\u666f\u8c61\uff0c\u80cc\u666f\u662f\u752824\u6beb\u7c73\u53d8\u5f62\u955c\u5934\u62cd\u6444\u7684\u91d1\u8272\u6cb3\u6d41\uff0c\u7f8e\u4e3d\u7684"} +{"id": "2004271", "video_name": "007c1c22-80d6-5983-a51a-2c6e082c7f1f", "text": "\u65e0\u7f1d\u76848K\u7535\u5b50\u566a\u97f3\u7eb9\u7406"} +{"id": "1004553", "video_name": "548a6168-7c74-5aff-aff1-d4dedfd6136f", "text": "\u4e0a\u6d773000\u5e74\u591c\u666f"} +{"id": "0004288", "video_name": "066dd0ae-6241-57f7-b630-8d667928b0db", "text": "\u4e00\u5f20\u7167\u7247\u663e\u793a\u4e86\u4e00\u5bb6\u4eba\u5728\u591c\u665a\u8212\u9002\u7684\u5bb6\u4e2d\u719f\u7761\uff0c\u6beb\u4e0d\u77e5\u60c5\u5916\u9762\u7684\u5371\u9669\u3002"} +{"id": "0005290", "video_name": "17eb2a36-1957-548b-8e6a-910332247a9c", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u7ad9\u5728\u821e\u53f0\u4e0a\u5411\u8bb8\u591a\u4eba\u505a\u6f14\u8bb2\u3002"} +{"id": "4003739", "video_name": "99b15659-780e-5cf5-8317-7ca4023b922c", "text": "\u753b\u4e00\u5e45\u96be\u5ea6\u8f83\u9ad8\u7684\u573a\u666f\uff0c\u753b\u4e0aEris\u3001\u4ed9\u5973\u548c\u9f99\u7a7f\u8fc7\u8ff7\u5bab\u548c\u82b1\u96e8\u3002"} +{"id": "2003483", "video_name": "38e5ca99-3030-5f91-a8b5-0825bb1c636d", "text": "\u4e00\u9897\u6d41\u661f\u649e\u51fb\u5730\u7403\u5e76\u6467\u6bc1\u4e86\u5b83\u3002\u9ad8\u8d28\u91cf\u6444\u5f71\u3002"} +{"id": "0005293", "video_name": "17f9f982-4b6c-5e97-8079-62d6f25adca2", "text": "\u5723\u8bde\u8282\u5feb\u4e50\u7684\u732b\u8df3\u821e\u7684\u52a8\u6001GIF\u56fe\u3002"} +{"id": "1006281", "video_name": "730529f4-a9e9-5c5b-8224-00a27a8edf47", "text": "\u4eba\u4eec\u722c\u4e0a\u5c71\u53bb\u770b\u65e5\u51fa\u3002"} +{"id": "2005307", "video_name": "3e2a622d-3c32-5105-8434-85baf99d0f72", "text": "\u4e00\u4e2a\u7531\u9ec4\u91d1\u5efa\u6210\u7684\u57ce\u5e02\uff0c\u4e2d\u5fc3\u662f\u5973\u6027\uff0c\u7a7f\u7740\u575a\u56fa\u7684\u8863\u670d\uff0c\u4e0a\u9762\u9576\u7740\u7ea2\u8272\u7684\u5b9d\u77f3\u548c\u7fbd\u6bdb\uff0c"} +{"id": "6002549", "video_name": "10150375-0b6f-51de-aea0-eeb5b8ac5fa9", "text": "\u4e00\u4f4d\u4e9a\u7f8e\u5c3c\u4e9a\u52c7\u58eb\u624b\u6301\u4e00\u628a\u5251\uff0c\u80cc\u666f\u662f\u963f\u5c14\u5854\u6c99\u7279\u57ce\u3002"} +{"id": "2004571", "video_name": "7b1f3388-ab7c-5e26-a5e4-993da5cbf48d", "text": "\u4e00\u5ea7\u4e3a\u5723\u8bde\u8282\u88c5\u9970\u7684\u5b8f\u4f1f\u697c\u68af\u87ba\u65cb\u5411\u4e0a\uff0c\u5176\u680f\u6746\u4e0a\u5782\u7740\u8718\u86db\u7f51\u3002"} +{"id": "3005530", "video_name": "5893ebc8-d630-5186-81ed-5d9a0b892205", "text": "\u5c06\u7a7a\u6c14\u4e2d\u7684\u8863\u670d\u548c\u5934\u53d1\u79fb\u5f00\uff0c\u9e1f\u513f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "3004756", "video_name": "070d10b4-4ff4-5745-a51a-c74fc9ebc9aa", "text": "Heisenberg\u5148\u751f\u62ff\u7740\u4e00\u53ea\u300a\u4e86\u4e0d\u8d77\u7684\u76d6\u8328\u6bd4\u300b\u9152\u676f\u3002"} +{"id": "3006123", "video_name": "3a3f859b-6a04-511a-9bc1-5b8ea0453df7", "text": "\u5973\u4eba\u7684\u8f6e\u5ed3\u5728\u5730\u677f\u4e0a\u54ed\u6ce3\uff0c\u57ce\u5e02\u7684\u7a97\u6237\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "3003225", "video_name": "84518b3f-b668-5c96-952c-1085435c9f4e", "text": "\u53ef\u7231\u5c0f\u732b\u96ea\u7403\uff0c\u552e\u4ef78000\u5143\u3002"} +{"id": "7002657", "video_name": "ad210d5f-137a-53c2-a159-f8b0121ec982", "text": "\u7528\u7535\u5728\u6211\u4eec\u73b0\u4ee3\u793e\u4f1a\u4e2d\u662f\u5fc5\u4e0d\u53ef\u5c11\u7684\uff0c\u4e3a\u706f\u5149\u3001\u5bb6\u7535\u3001\u7535\u8111\u548c\u4ea4\u901a\u5de5\u5177\u7b49\u63d0\u4f9b\u52a8\u529b\u3002\u5b66\u4f1a\u5982\u4f55\u5b89\u5168\u6709\u6548\u5730\u4f7f\u7528\u7535"} +{"id": "6002244", "video_name": "56864d44-db48-5bf7-b452-48f266d652ae", "text": "\u6625\u4e3d\u88ab\u8fc8\u8fbe\u65af\u6253\u5f97\u8138\u7ea2\u5c41\u80a1\u70ed\u3002"} +{"id": "4003332", "video_name": "fbae8c14-73b7-5808-a58e-6a7e5e591775", "text": "\u7528\u82b1\u505a\u6210\u7684\u53d1\u578b\u7684\u5973\u4eba"} +{"id": "1005565", "video_name": "666fdaff-5384-57e7-9f0f-65deb030338b", "text": "\u505a\u4f60\u81ea\u5df1\uff0c\u56e0\u4e3a\u5176\u4ed6\u4eba\u5df2\u7ecf\u88ab\u5360\u7528\u4e86\u3002\u2014\u2014\u5965\u65af\u5361\u00b7\u738b\u5c14\u5fb7"} +{"id": "6002087", "video_name": "c58d8128-c8b3-5672-927c-79dd399cb8c0", "text": "\u68a6\u5e7b\u666f\u8c61\uff0c\u7f8e\u4e3d\u7684\u5973\u4eba\u773a\u671b\u7740\u955c\u5934\u80cc\u540e\uff0c\u666f\u6df1\u6d45\uff0c\u80cc\u666f\u4e2d\u6709\u5f88\u591a\u8fd0\u52a8\u3002"} +{"id": "1006852", "video_name": "7d2e7e15-69f9-561a-89f6-53c1e12e1c92", "text": "\u6e38\u620f\u73a9\u5bb6\u7ad9\u5728\u6bd4\u8d5b\u821e\u53f0\u4e0a\uff0c\u80cc\u666f\u4e2d\u89c2\u4f17\u6b22\u547c\u96c0\u8dc3\u3002"} +{"id": "3006278", "video_name": "7fc65f17-9dc7-576b-9648-f5678f00f7e1", "text": "\u9762\u6761\u3002\u8bf7\u9001\u9762\u6761\u3002"} +{"id": "2004685", "video_name": "031e165c-a6f3-5438-af5f-d66c2f166c1d", "text": "\u8389\u8389\u7684\u5149\u9c9c\u751f\u6d3b\uff0c\u88ab\u5979\u7684\u670b\u53cb\u6240\u5305\u56f4\u3002"} +{"id": "3004708", "video_name": "47590f69-e7ca-5e17-8c95-22fe0dab2531", "text": "\u5c4f\u5e55\u4e0a\u663e\u793a\u6570\u5b571\uff0c\u4f9b\u5e7c\u513f\u5b66\u4e60\u6570\u5b57\u3002"} +{"id": "7002516", "video_name": "f538cd4a-3307-5483-bb52-13866d8eaba8", "text": "\u5c3c\u6cca\u5c14\u82cf\u5c14\u8d6b\u7279\u7684\u81ea\u7136\u73af\u5883\uff0cAR 16:7\u8fd0\u52a82\u3002"} +{"id": "8003906", "video_name": "0d7d084b-e2a1-5659-a182-7251ed3704ec", "text": "\u4e00\u53ea\u6d77\u72f8\u5750\u5728\u4e00\u53f0\u5de8\u578b\u673a\u5668\u4eba\u91cc\uff0c\u673a\u5668\u4eba\u7684\u624b\u81c2\u4e0a\u88c5\u6709\u673a\u67aa\uff0c\u6fc0\u5149\u4ece\u673a\u67aa\u4e2d\u53d1\u5c04\uff0c\u4f60\u53ef\u4ee5\u5728"} +{"id": "8003870", "video_name": "3ac17aab-86c9-5577-adbe-9ce3ef35cf0f", "text": "\u76d8\u53e4\u662f\u4e00\u4e2a\u4e2d\u56fd\u795e\u7947\uff0c\u521b\u9020\u4e86\u5929\u5730\u3002\u4ed6\u6325\u52a8\u4e00\u628a\u5de8\u65a7\u5206\u88c2\u6df7\u6c8c\uff0c\u521b\u9020\u4e86\u5929\u5730\u3002"} +{"id": "0005355", "video_name": "1950c513-7ff3-5dd0-974a-2e4783bca817", "text": "\u573a\u666f5\uff1a\u4e00\u4e2a\u6c14\u52bf\u6c79\u6c79\u3001\u58f0\u97f3\u91d1\u5c5e\u822c\u7684\u673a\u5668\u4eba\u9886\u8896\u51fa\u73b0\uff0c\u9762\u5bf9\u4eba\u7c7b\u8fdb\u884c\u5bf9\u6297\u3002"} +{"id": "7002069", "video_name": "d4bbb051-5981-58bf-9da4-1f22363151c8", "text": "\u5fae\u7b11\u7740\u770b\u7740\u8fea\u58eb\u5c3c\u7537\u5b69\u89d2\u8272\u3002"} +{"id": "0004318", "video_name": "07082abe-b7c9-5186-9bfc-1e99236f5733", "text": "\u4e00\u4e2a\u66b4\u4e71\u73b0\u573a\uff0c\u4e00\u7fa4\u4eba\u805a\u96c6\u5728\u4e00\u8f86\u7740\u706b\u7684\u8f66\u524d\u7684\u89c6\u9891\u3002\u4fe1\u606f\uff1aDIER DEOL\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8001836", "video_name": "b7895406-b7c5-5419-9267-8d860c0d0a56", "text": "\u4ece\u63cf\u7ed8\u8482\u7c73\u548c\u6258\u6258\u5c45\u4f4f\u7684\u5c0f\u9547\u7684\u666f\u8272\u5f00\u59cb\uff0c\u5f3a\u8c03\u4ed6\u4eec\u7684\u4eb2\u5bc6\u53cb\u8c0a\u548c\u63a2\u7d22\u4e4b\u7231\u3002"} +{"id": "0005256", "video_name": "1751d290-ec55-51b8-9460-199b390ce765", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u6b63\u5728\u5145\u7535\u7684\u7535\u52a8\u8f66\u7684\u89c6\u9891\u3002"} +{"id": "4004355", "video_name": "1490f0b3-b659-5abf-a217-5c6df0aa0960", "text": "\u68ee\u6797\u91cc\u5feb\u4e50\u7684\u52a8\u7269\u5361\u901a"} +{"id": "4003663", "video_name": "3cd8d444-aac5-58fa-873a-8a6a3761b520", "text": "\u5efa\u7b51\u5de5\u4eba\u4ece\u5efa\u7b51\u7269\u4e0a\u6389\u843d\u3002"} +{"id": "3004674", "video_name": "adba86ad-da9a-5c24-89db-6bb4e7d00657", "text": "\u5c55\u793a\u4e00\u7fa4\u5e74\u8f7b\u7537\u5b50\uff0c\u4ed6\u4eec\u65e2\u6e34\u671b\u53c8\u5fd0\u5fd1\u4e0d\u5b89\uff0c\u6253\u7b97\u5728\u665a\u4e0a\u8c03\u67e5\u8f66\u7ad9\u3002"} +{"id": "2005558", "video_name": "cb345153-d7fd-5b1f-86af-6bfd8c7b0035", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e07\u5723\u8282\u6d3e\u5bf9\u4e0a\u7a7f\u7740\u5413\u4eba\u670d\u88c5\u7684\u4e00\u7fa4\u5b69\u5b50\u3002"} +{"id": "6004825", "video_name": "02dc5d02-2e6f-5bf4-ad20-1bf35b65a5a6", "text": "\u300a\u8fdb\u51fb\u7684\u5de8\u4eba\u300b\u52a8\u6f2b\u7684\u773c\u775b\u3001\u5934\u53d1\u548c\u80cc\u666f\u90fd\u5728\u79fb\u52a8\u3002"} +{"id": "2003439", "video_name": "77ef9b64-8b1e-5373-bd9a-d599dbbc9a97", "text": "\u53e4\u96c5\u5178\u5927\u5b66\u7684\u89c6\u9891\u955c\u5934"} +{"id": "8003124", "video_name": "9e1804d0-da0f-5b6f-b1ba-7fac5535ee9f", "text": "\u4f7f\u7528\u6c34\u5f69\u6280\u6cd5\uff0c\u5728\u5e7b\u60f38k\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u4e0b\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u8d77\u4f0f\u7684\u5c71\u4e18\u666f\u89c2\uff0c\u5de8\u5927\u7684\u5f69\u8272\u8611"} +{"id": "7004018", "video_name": "8dee164e-907b-5431-9614-3135880b2f3c", "text": "\u4f7f\u7528\u6da1\u8f6e\u673a\u5e26\u52a8\u53d1\u7535\u673a\u53d1\u7535\u3002\u7535\u80fd\u662f\u673a\u68b0\u80fd\u8f6c\u5316\u4e3a\u7535\u80fd\u7684\u4ea7\u7269\uff0c\u7531\u5e26\u7535\u7c92\u5b50\u6784\u6210\uff0c\u5177\u6709\u7535\u52bf\u548c\u7535\u6d41"} +{"id": "4003467", "video_name": "4c92f4ee-716f-59ce-8985-030ddbcf447f", "text": "\u7f8a\uff1a\u4e00\u53ea\u8868\u60c5\u6e29\u6696\u53cb\u597d\u7684\u5c71\u7f8a\u3002"} +{"id": "3005061", "video_name": "aab2f427-84c6-59bd-9719-361ed91d09b5", "text": "\u79d1\u5b66\u5bb6\u4e8e1950\u5e74\u88ab\u5e26\u5230\u5916\u661f\u884c\u661f\u4e0a\u7684\u79d8\u5bc6\u5916\u661f\u57ce\u5e02\uff0c\u6709\u52a8\u4f5c\u573a\u9762\u3001\u771f\u5b9e\u7ec6\u8282\u548c\u7535\u5f71\u5316\u6548\u679c\u3002"} +{"id": "7002062", "video_name": "367a8821-8610-5a4d-8111-72090cbef460", "text": "\u4e00\u53ea\u91ce\u751f\u52a8\u7269\u5954\u8dd1\u5e76\u6293\u4f4f\u4e00\u53ea\u9e7f 4k\u9ad8\u6e05"} +{"id": "3004983", "video_name": "6ccd3c64-5ffe-5fc9-a532-399b9af87228", "text": "\u7535\u5f71\u611f\u8fd0\u52a8\u3001\u79d1\u5e7b\u573a\u666f\u3001\u57ce\u5e02\u3001\u591c\u665a\u3001\u7f8e\u4e3d\u7684\u5149\u7ebf"} +{"id": "7003256", "video_name": "656b8dee-35a8-5318-be82-550606fc4cb6", "text": "\u57c3\u91cc\u514b\u00b7\u5b89\u5fb7\u70c8\u548c\u67ef\u7c73\u7279\u4ee5\u53ca\u82ad\u6bd4\u8df3\u821e\u3002"} +{"id": "8002921", "video_name": "f091900c-7642-5704-b1db-7efa9e2b7f5d", "text": "\u5c55\u793a\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0cBilly \u548c Bella \u5728\u95ea\u70c1\u7684\u6cb3\u8fb9\u73a9\u800d\u3002"} +{"id": "7002754", "video_name": "f9ef40e9-92cc-5375-b998-ec561909fc00", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5b89\u9759\u7684\u5ba2\u5385\uff0c\u58c1\u7089\u91cc\u71c3\u70e7\u7740\u5b89\u9759\u7684\u4f59\u70ec\uff0c\u7a97\u5916\u4e0b\u7740\u5b89\u9759\u7684\u96e8\u3002"} +{"id": "4003247", "video_name": "e2c945c0-9d1b-5b17-86aa-1470b8b9b431", "text": "\u7537\u5b69\u6b63\u5728\u83b7\u5f97\u5168\u529b\u5e76\u95ea\u8000\u3002"} +{"id": "6002325", "video_name": "6260fb36-62a9-5aa9-b9d3-f978653eba80", "text": "\u6a31\u82b1\u5c0f\u674e\u5b50\u7684\u5e7b\u60f3\u63d2\u753b\uff0c\u9b54\u6cd5\u6c1b\u56f4\uff0c\u6a31\u82b1\u80cc\u666f\uff0c\u52a8\u611f\u59ff\u52bf\uff0c\u9c9c\u8273\u8272"} +{"id": "4003779", "video_name": "95a7cdf2-e23a-5367-ae8e-8ad7d7b7ac27", "text": "\u5728\u5a01\u5c3c\u65af\u7684\u8fd0\u6cb3\u4e0a\u6709\u4e00\u8258\u8239\uff0c\u4e0a\u9762\u5750\u7740\u4e00\u53ea\u5927\u7329\u7329\u3002"} +{"id": "4004398", "video_name": "01c15c2b-c975-5155-bf15-ad5b8aa7f8f9", "text": "\u4e00\u4e2a\u62e5\u6709\u84dd\u773c\u775b\u7684\u745e\u5178\u91d1\u53d1\u7537\u5b50\u6b63\u5728\u5367\u5ba4\u7684\u955c\u5b50\u524d\u7167\u7740\u81ea\u5df1\uff0c\u7a7f\u4e0a\u4e86\u4e00\u4ef6\u5e26\u9489\u5b50"} +{"id": "6004225", "video_name": "6718424b-e9e2-5d52-81c0-00cc484f0079", "text": "\u4e00\u53ea\u6234\u7740\u767d\u624b\u5957\u7684\u624b\u5c06\u786c\u5e01\u629b\u5411\u7a7a\u4e2d\uff0c\u4f7f\u5176\u65cb\u8f6c\u3002\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4002194", "video_name": "6ca13556-a15e-5c0d-9a5d-7baadc3dfda0", "text": "\u8036\u7a23\u57fa\u7763\u5728\u5c71\u80cc\u666f\u4e0b\u4ea4\u8c08\u7684\u7535\u5f71\u822c\u7684\u526a\u5f71\u955c\u5934\uff0c\u6709\u4f53\u79ef\u7684\u96fe\u6c14\u548c\u4f53\u79ef\u7684\u7167\u660e\u3002"} +{"id": "6003969", "video_name": "9a56e035-1b34-579d-8abc-f06e5557171f", "text": "\u4e00\u6bb5\u65b0\u8425\u9500\u8f6f\u4ef6\u5e73\u53f0\u7684\u8bf4\u660e\u89c6\u9891\uff0c\u89e3\u91ca\u8be5\u5e73\u53f0\u5982\u4f55\u5e2e\u52a9\u4f01\u4e1a\u589e\u52a0\u9500\u552e\u989d\u548c\u6f5c\u5728\u5ba2\u6237\u3002\u89c6\u9891\u5e94\u5177\u6709\u5438\u5f15\u529b\u548c"} +{"id": "7003026", "video_name": "7ce3c361-3969-5aca-95a6-293b329e0369", "text": "\u4eba\u4eec\u805a\u96c6\u5728\u57ce\u5821\u7684\u5ead\u9662\u91cc\u89c2\u770b\u4e00\u90e8\u9ad8\u8d28\u91cf\u3001\u9ad8\u7ec6\u8282\u76844K\u7535\u5f71\uff0c\u8fd9\u662f\u4e00\u90e8\u7535\u5f71\u5f0f\u7684\u6697\u9ed1\u5947\u5e7b\u7535"} +{"id": "0006271", "video_name": "29ccaf5b-d598-52c5-b25f-7c6f73895d84", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\u7ad9\u5728\u4e00\u4e2a\u68c9\u82b1\u7cd6\u673a\u65c1\u8fb9\u3002"} +{"id": "0006826", "video_name": "33b72c9d-7874-509d-8e00-64cf0678eb5d", "text": "\u4e00\u4e2a\u7164\u6c14\u7f50\u9001\u8d27\u5458\u5411\u6708\u7403\u8fd0\u9001\u7164\u6c14\u7f50\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "3003274", "video_name": "081b00ae-91c1-5ea9-8c1e-9f584fb9ac23", "text": "\u5916\u661f\u4eba\u5728\u5b9e\u9a8c\u5ba4\u5632\u7b11\u4e00\u540d\u5b87\u822a\u5458\uff0c16\u6beb\u7c73\uff0c\u9ed1\u767d\u3002"} +{"id": "0004073", "video_name": "02c931b9-7ed6-5b8c-bae9-710ef5969d55", "text": "\u6709\u4e24\u4e2a\u601d\u7ef4\u7684\u4eba\uff0c\u9009\u62e9\u8981\u5403\u7684\u610f\u9762\u7c7b\u578b\u3002"} +{"id": "2004110", "video_name": "60f3c656-562b-57ae-ac8a-a8069d829a3e", "text": "\u4e24\u4e2a\u5e74\u8f7b\u4eba\u5728\u68ee\u6797\u4e2d\u60ca\u6050\u5954\u8dd1\uff0c\u88ab\u5927\u9ed1\u72fc\u8ffd\u8d76\u3002\n\nSource sentence: The cat was sleeping on the windowsill in the warm sunlight. \n"} +{"id": "2004915", "video_name": "14543f3f-b618-5eca-ad49-2d44b2bad680", "text": "\u8a79\u59c6\u65af\uff0c\u4e2d\u5e74\u7537\u5b50\uff0c\u627e\u5230\u4e86\u65b0\u7684\u76ee\u7684\uff0c\u5e36\u8457\u5145\u6eff\u5f71\u50cf\u7684\u76f8\u6a5f\u548c\u5145\u6eff\u4e45\u9060\u6642\u5149\u7684\u56de"} +{"id": "4003008", "video_name": "60dcdc5c-1170-5f7a-9a46-39b4de30642d", "text": "Desi Educators\u5988\u5988\u548c\u5b9d\u5b9d\u7684YouTube\u9891\u9053\u4ecb\u7ecd"} +{"id": "5001519", "video_name": "be04d20e-41da-5aa0-a671-b325bb05a234", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u4e3e\u8d77\u4e00\u53ea\u624b\u6297\u8bae\u653f\u5e9c\uff0c\u4e00\u961f\u65f6\u5c1a\u7684\u6d3b\u52a8\u7b56\u5212\u56e2\u961f\u7ad9\u5728\u5979\u540e\u9762\uff0c\u4ee5\u97e6\u65af\u00b7\u5b89"} +{"id": "2005232", "video_name": "34c8e42d-77ad-5652-8a05-b7e98e8af675", "text": "\u5965\u5229\u5f17\u9732\u51fa\u8c03\u76ae\u7684\u7b11\u5bb9\uff0c\u9012\u7ed9\u4f0a\u6851\u4e00\u682a\u5c0f\u6811\u82d7\u3002\u5c55\u73b0\u4ed6\u4eec\u7684\u56e2\u961f\u5408\u4f5c\uff0c\u51c6\u5907\u571f\u58e4\u5e76\u79cd"} +{"id": "1006454", "video_name": "7621452e-3126-5ed4-b4a6-1c0c17526ead", "text": "\u6c7d\u8f66\u7740\u706b\u7684\u7535\u5f71\u822c\u89c6\u9891\uff0c\u591c\u665a\u3002"} +{"id": "6003591", "video_name": "b55153ed-934d-522e-abf6-f4c709149554", "text": "\u4e00\u53ea\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u737e\u901a\u8fc7\u53cc\u7b52\u671b\u8fdc\u955c\u89c2\u5bdf\u3002"} +{"id": "2007244", "video_name": "ed7966b8-d5a1-5ee4-9dc1-0a6a6d3147bc", "text": "\u7b2c\u4e09\u6b21\u8003\u9a8c\u7b49\u5f85\u827e\u8c22\u5728\u6697\u5f71\u8ff7\u5bab\uff0c\u8fd9\u662f\u4e00\u6761\u626d\u66f2\u7684\u9053\u8def\u8ff7\u5bab\uff0c\u8ba9\u4eba\u611f\u5230\u5fc3\u795e\u4e0d\u5b81\u3002"} +{"id": "0004598", "video_name": "0bafe202-7341-54c4-9e9f-8823728393e1", "text": "\u5723\u7ecf\u4e2d\u51e0\u4e2a\u56fd\u738b\u5750\u5728\u4e00\u8d77\u3002"} +{"id": "0004340", "video_name": "0768628d-af27-5bb6-850d-3f28eca8a4b8", "text": "\u4e00\u4e2a13\u5c81\u7684\u5b69\u5b50\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "1003303", "video_name": "3cc975b1-64f8-5ea2-b1f2-7e409f103aae", "text": "\u5e03\u5170\u5361\uff0c\u4e2d\u4e16\u7eaa\u9a91\u58eb\uff0c\u52a8\u6f2b\u4e3b\u89c6\u89c9\uff0c\u5df4\u6d1b\u514b\u9a91\u58eb\uff0c\u7535\u706b\u82b1\uff0c\u7535\u529b\uff0c\u751f\u9508\uff0c"} +{"id": "0003892", "video_name": "45556da1-7588-5ab7-b244-fbed7b96faed", "text": "\u4e00\u4f4d\u76f8\u6251\u9009\u624b\u5728\u571f\u4ff5\u4e0a\uff0c\u7531\u52a0\u85e4\u65b0\u592a\u90ce\u7684\u624b\u7ed8\u753b\u5448\u73b0\u3002"} +{"id": "6004382", "video_name": "4f430a6d-b1e6-569f-b776-5676cc3d26e4", "text": "\u514b\u91cc\u65af\u6258\u5f17\u00b7\u7f57\u5bbe\uff08\u53ef\u7231\uff0c\u77ed\u53d1\u7ea2\u8272\uff0c\u6d45\u84dd\u8272\u886c\u886b\uff0c\u6df1\u84dd\u8272\u77ed\u88e4\u548c"} +{"id": "4004393", "video_name": "eb1d80d0-418e-5ee1-9a4b-23de7fce7391", "text": "\u94a2\u94c1\u4fa0\u4e0e\u53d7\u6b22\u8fce\u7684\u5370\u5ea6\u6b4c\u624bArijit Sing\u4e00\u8d77\u5403\u9e21\u8089\u3002"} +{"id": "7004468", "video_name": "adbb93c5-290b-544a-b991-1c1ea4f473a7", "text": "4K\u7f8e\u4e3d\u7684\u5730\u65b9\uff0c\u548c\u5e73\uff0c\u548c\u8c10\uff0c\u4e16\u754c\u5468\u56f4\u7684\u56fe\u50cf\uff0c\u5149\u660e\u7684\u4e00\u5929\uff0c\u79fb\u52a8\u7684\u690d\u7269\uff0c\u4eba\u4eec\u8d70\u5728\u5c0f\u8def\u4e0a\uff0c"} +{"id": "6002155", "video_name": "d7810f7d-1ff1-5045-9afb-2ebe7a18714f", "text": "\u5929\u7a7a\u4e2d\u4e91\u95f4\u7684\u7f8e\u4e3d\u6148\u5584\u5973\u6027\u9762\u5bb9\u3002"} +{"id": "7003318", "video_name": "08c531d3-c72d-5372-a4ed-ec6f3373bced", "text": "\u5728\u6674\u6717\u7684\u5929\u6c14\u91cc\uff0c\u7d22\u666e\u516c\u56ed\u5ea6\u5047\u533a\u548c\u80cc\u666f\u4e2d\u7684\u65af\u7279\u62c9\u8fc7\u5c71\u8f66\u3002"} +{"id": "0005449", "video_name": "1af0adec-ff4c-5713-8622-1f250a897e1e", "text": "\u521b\u9020\u4e00\u4e2a\u50cfRomain Lenancker\u4e00\u6837\u76843D\u52a8\u753b\u914d\u6599\uff0c\u5177\u6709\u6c34\u6ef4\u6548\u679c\uff0c\u5e76\u9644\u6709\u9ad8\u8d28\u91cf\u7684\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "7004354", "video_name": "3cc6c486-e461-5d34-9699-02f14d410165", "text": "Gogo Saturo\u6b63\u5728\u89c2\u770b\u300a\u5730\u5e73\u7ebf\u300b\u52a8\u753b\u3002"} +{"id": "2007776", "video_name": "594474ab-440b-546c-840b-6591538932f3", "text": "\u4e00\u4e2a\u7537\u5b50\u5728\u6c83\u5c14\u739b\u9003\u907f\u9b3c\u9b42\u3002"} +{"id": "0006327", "video_name": "2ab1fea8-5c0c-5d8d-9226-a24ce9a0f7ed", "text": "\u5728\u6d77\u5e95\uff0c\u963f\u4f69\u514b\u65af\u5f00\u59cb\u611f\u5230\u4e00\u79cd\u4e0d\u5b89\u7684\u611f\u89c9\u3002"} +{"id": "1004856", "video_name": "59baca05-dce9-57a5-83ff-44a2488db65a", "text": "\u751f\u6210\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u89c6\u9891\u526a\u8f91\uff1a\u4f18\u96c5\u5730\u5c55\u793a\u4e00\u628a\u91d1\u5c5e\u53c9\u5b50\u4f18\u7f8e\u5730\u7a7f\u8fc7\u653e\u5728\u76d8\u5b50\u4e0a\u7684\u4e24\u5757\u591a\u6c41\u7684\u82f9\u679c\u3002"} +{"id": "6002734", "video_name": "9ecfe53e-d624-5a65-973e-22f1cbf4f38b", "text": "\u8bf7\u5c06\u6b64\u56fe\u50cf\u5236\u4f5c\u4e3a\u9ad8\u5206\u8fa8\u7387\u89c6\u9891\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004934", "video_name": "11c6af40-9f8a-5ebc-8527-52b3a2a34144", "text": "\u4e00\u573a\u8d85\u9ad8\u6e05\u6670\u5ea6\u7684\u98ce\u66b4\uff0c\u9ad8\u54c1\u8d28\u7ec6\u8282\u3002"} +{"id": "4004669", "video_name": "e1a24e30-7881-5aa5-bf65-e22478a09e31", "text": "\u8367\u5149\u690d\u7269\u548c\u6811\u6728\u5728\u672a\u6765\u5408\u91d1\u548c\u9713\u8679\u57ce\u5e02\u4e2d\uff0c\u914d\u5408\u65f6\u5c1a\u82b1\u56ed\uff0c\u5c55\u73b0\u6280\u672f\u521b\u65b0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "4004981", "video_name": "6455942a-5d7f-5c61-b137-cc90184cd8eb", "text": "\u8c6a\u534e\u6c7d\u8f66\u5728\u5927\u516c\u53f8\u524d\u9762\u3002"} +{"id": "1006774", "video_name": "7c034c21-67c9-59de-9050-cd296b05a5fd", "text": "\u5361\u901a\u5546\u4eba\u5728\u5546\u52a1\u4f1a\u8bae\u4e0a\u4ea4\u8c08\u3002"} +{"id": "4004765", "video_name": "3dc5aefe-ec1b-5261-b232-1178be2e046c", "text": "\u6e90\u53e5\uff1a\u7ae0\u9c7c\u5168\u901f\u6e38\u6cf3\n\nSource sentence: I am going to the store to buy some groceries.\n\u6e90\u53e5\uff1a\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "2007388", "video_name": "e74db5c2-2939-5f68-8a0e-c0722f91f73c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5b69\u5b50\u5728\u5403\u80e1\u841d\u535c\u76d8\uff0c\u9762\u5b54\u4ece\u60b2\u4f24\u53d8\u6210\u5fae\u7b11\uff0c\u65f6\u95f4\u662f9:16\u3002"} +{"id": "2005740", "video_name": "06d04fff-a981-5196-a4f0-d029bb979b1f", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7ea2\u53d1\u5973\u5b50\u7a7f\u7740\u7d2b\u8272\u590f\u65e5\u8fde\u8863\u88d9\u4ece\u95ea\u8000\u7740\u9b54\u529b\u7684\u9601\u697c\u9b54\u6cd5\u4e66\u4e2d\u8d70\u51fa"} +{"id": "0004348", "video_name": "07885d6e-bb43-50db-90fd-660f06780859", "text": "\u7d2b\u7981\u57ce\u91cc\u7684\u96ea\uff0c\u7a7f\u7740\u660e\u671d\u670d\u88c5\u7684\u5973\u5b69\u3002"} +{"id": "2005712", "video_name": "a70a0bff-399a-5708-a2ce-1d34de97facf", "text": "\u4e00\u53ea\u7280\u725b\u5728\u5927\u8349\u539f\u4e0a\u7684\u6e56\u8fb9\u996e\u6c34\u3002"} +{"id": "0005239", "video_name": "171a2a3e-7631-50be-b578-cceba3a5c143", "text": "\u4e92\u76f8\u652f\u6301\u7684\u7fa4\u4f53"} +{"id": "7004058", "video_name": "5f23cb2f-a618-5fe4-8a4a-9b33a4b47e13", "text": "\u60f3\u8c61\u4e00\u53ea\u72ee\u5b50\u5e7c\u5d3d\u8d70\u5411\u60ac\u5d16\u8fb9\u7f18\uff0c\u7535\u5f71\u573a\u666f4k\u8d85\u771f\u5b9e\u8272\u5f69\u5206\u7ea7\uff0c\u592a\u9633\u6b63\u5728\u843d\u5c71\u3002"} +{"id": "8002609", "video_name": "feacd25e-9fb4-57c3-87ae-17e1db6d3af8", "text": "\u5728\u6444\u50cf\u5934\u524d\u6012\u543c\uff0c\u5e76\u50cf\u52a8\u6f2b\u4e2d\u4e00\u6837\u8f7b\u5fae\u79fb\u52a8\u5b83\u7684\u7b2c\u4e00\u524d\u817f\u548c\u7b2c\u56db\u540e\u817f\u3002"} +{"id": "6002153", "video_name": "e549816b-64ca-56d1-9e50-835f42f5780a", "text": "\u51b0\u7403\u6bd4\u8d5b\u5728\u4eba\u6ee1\u4e3a\u60a3\u7684\u4f53\u80b2\u573a\u4e3e\u884c\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004999", "video_name": "0140334a-27cd-5b94-9fff-4fce7c76aa87", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u706b\u5c71\u7684\u80cc\u666f\u4e0b\u8df3\u821e\uff0c\u5361\u901a\u98ce\u683c\uff0c16:9\u3002"} +{"id": "3003470", "video_name": "e2d936a1-39f4-5ed6-b2a2-c60f3fedc7dc", "text": "Stella\u662f\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u7684\u5973\u5b69\uff0c\u662f\u591c\u7a7a\u4e2d\u9ad8\u9ad8\u5728\u4e0a\u7167\u987e\u7740\u6574\u4e2a\u4e16\u754c\u7684\u5c0f\u661f\u661f\u3002"} +{"id": "7004504", "video_name": "02a08ed9-285c-525b-92a6-97098d6de2c3", "text": "\u53d1\u7535\u5382\u5728\u57c3\u53ca\u7740\u706b\u4e86\u3002"} +{"id": "1004823", "video_name": "59213f90-a2fc-5031-bdfa-f299fa270770", "text": "\u6eaa\u8fb9\u7684\u7af9\u5b50\u65c1\u8fb9\u6709\u4e00\u6761\u5c0f\u6eaa\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u5c0f\u5706\u77f3\u3002\u6c34\u5f88\u6e05\u6f88\u3002\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "6003097", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "\u5c06\u7167\u7247\u8f6c\u6362\u6210\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u3002"} +{"id": "7002433", "video_name": "16dc1dc4-f791-5809-ab7f-2f13da1513e6", "text": "\u53f2\u8482\u82ac\u00b7\u963f\u6885\u5c14\u5f53\u8b66\u5bdf\u5de5\u4f5c\u3002"} +{"id": "7002371", "video_name": "7e8aee61-db52-5f1c-b71e-d588117c3e15", "text": "\u6d3e\u5bf9\u88c5\u9970\uff1a\u5f69\u8272\u4e66\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004637", "video_name": "e3242459-2163-52c5-8fba-1e747fe65461", "text": "\u4e00\u4f4d\u7a7f\u7740\u725b\u4ed4\u5e3d\u548c\u725b\u4ed4\u9774\u7684\u5973\u725b\u4ed4\u6253\u5f00\u4e00\u5bb6\u9152\u9986\u7684\u95e8\uff0c\u9080\u8bf7\u6211\u4eec\u8fdb\u53bb\u3002"} +{"id": "6004680", "video_name": "a5dfa5ee-545a-58b5-9625-7549b8249af8", "text": "\u84dd\u8272\u7684\u6c34\u4ece\u4e0a\u5230\u4e0b\u731b\u70c8\u5730\u6d41\u52a8\u3002"} +{"id": "3005183", "video_name": "5663b07a-31dd-5889-8d8d-70737a580320", "text": "\u5728\u6c99\u6ee9\u4e0a\u521b\u9020\u4e00\u4e2a\u4eba\u8ffd\u7740\u72d7\u8dd1\u76843D\u52a8\u753b\u3002"} +{"id": "4002464", "video_name": "aaa246e2-0498-5e69-8bea-bfea4148ab74", "text": "\u5973\u4eba\u60ca\u9192\u4e86\uff0c\u731b\u5730\u5750\u5728\u5e8a\u4e0a\u3002"} +{"id": "1006160", "video_name": "70cbb835-5fb9-5294-bd6c-b6c2da0d9a7b", "text": "\u5916\u661f\u751f\u547d\u5f62\u6001\u770b\u7740\u76f8\u673a\u5e76\u6293\u4f4f\u76f8\u673a\u3002"} +{"id": "4003287", "video_name": "b017d118-5e2f-58cf-912c-de1df5e77efb", "text": "\u4ece\u5934\u5f00\u59cb\u6784\u5efa\u7684\u8ba1\u7b97\u673a\u7cfb\u7edf"} +{"id": "3006176", "video_name": "05930717-57b8-598c-be5b-9d4cffc2aefb", "text": "\u4e00\u4e2a\u8759\u8760\u6b63\u5750\u5728\u5df4\u5361\u8fea\u4e0a\u3002"} +{"id": "4004643", "video_name": "fed0ab63-0a0b-59da-b39d-63303c852ea9", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5c06\u57282024\u5e74\u4e0e\u7f8e\u56fd\u4eba\u6c11\u4ea4\u8c08\uff0c\u6210\u4e3a\u603b\u7edf\u5019\u9009\u4eba\u3002"} +{"id": "0006706", "video_name": "3174d1b3-0c27-5407-803a-4743c8d1027c", "text": "\u975e\u5e38\u53d7\u6b22\u8fce\u7684\u5e02\u573a\u5728\u975e\u65af\u3002\u4e00\u4e2a\u56db\u5341\u591a\u5c81\u7684\u4eba\u5728\u4ed6\u7684\u5e97\u91cc\u51fa\u552eChebakia\uff08\u6216qaryoush\u6216makhrakah\uff09\uff0c\u8fd9\u662f\u4e00\u79cd"} +{"id": "8003800", "video_name": "76d2cebe-cda1-5987-9bc3-c93e1a392340", "text": "\u5370\u5ea6\u6559\u56fd\u738b\u72ec\u81ea\u7ad9\u5728\u4e1b\u6797\u4e2d\u7684\u89c6\u9891"} +{"id": "7003262", "video_name": "45bbd2d7-9bd2-5d76-a28e-680063200712", "text": "\u88ab\u9057\u5f03\u7684\u6811\u6797\u9053\u8def\u3002\u7167\u4eae\u8857\u706f\u548c\u591a\u4e91\u7684\u5929\u7a7a\uff0c\u95ea\u7535\u4ea4\u52a0\u3002"} +{"id": "2007101", "video_name": "2c1515e3-45c6-5153-9a89-0cda633694ed", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u9a91\u7740\u9a6c\u3002"} +{"id": "6003032", "video_name": "a439f724-4062-56d6-ab52-35be918a06d6", "text": "\u7f13\u6162\u7684\u8239\u53ea\u79fb\u52a8\uff0c\u7f13\u6162\u7684\u58eb\u5175\u884c\u8d70\uff0c\u6d77\u6d0b\u8fd0\u52a8\u548c\u6c34\u7684\u6548\u679c\uff0c\u5e73\u6ed1\u7684\u6548\u679c\u3002"} +{"id": "5001930", "video_name": "b79cf47b-5984-55e1-8c0b-72c3ee99a32c", "text": "\u673a\u7ec4\u6210\u5458\u4eec\u5171\u540c\u5408\u4f5c\uff0c\u6267\u884c\u5927\u80c6\u8ba1\u5212\u4ee5\u7a33\u5b9a\u866b\u6d1e\u751f\u6210\u5668\u5e76\u9003\u79bb\u66ff\u4ee3\u5b87\u5b99\u3002"} +{"id": "1006522", "video_name": "775d521c-59e4-59f3-ba69-e463d9a08b35", "text": "\u4e00\u53ea\u767d\u8272\u3001\u9ec4\u8272\u548c\u9ed1\u8272\u7684\u732b\uff0c\u4ee5\u903c\u771f\u7684\u98ce\u683c\u51b2\u6d6a\u3002\u4fe1\u606f\uff1aTICA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004006", "video_name": "6b6cad46-175c-54c4-bd47-aa83caad7d1e", "text": "\u72ee\u5b50\u6234\u7740\u773c\u955c\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "3004035", "video_name": "a8064196-2ea3-5220-9a02-feeda15e2144", "text": "\u91cd\u96ea\u8986\u76d6\u4e86\u5370\u5ea6\u95e8\u6237\u7684\u6c7d\u8f66\u884c\u9a76\u8def\u6bb5\u3002"} +{"id": "0006517", "video_name": "2de308c4-febe-5a54-8dfb-c72389fdeedf", "text": "has been released globally.\n\nGarena Free Fire Max\uff0c\u4e00\u6b3e\u53d7\u6b22\u8fce\u7684\u79fb\u52a8\u7aef\u6218\u6597\u7687\u5ba4\u6e38\u620f\uff0c\u5df2\u5728\u5168\u7403\u8303\u56f4\u5185\u53d1\u5e03\u3002\n\nSource sentence: The"} +{"id": "1004376", "video_name": "50d6e6e1-adac-5de0-8090-f389eaf1dea0", "text": "\u70e4\u8089\u4e32\u5728\u76d8\u5b50\u4e0a\u65cb\u8f6c\uff0c\u76d8\u5b50\u91cc\u6ee1\u662f\u9171\u6c41\uff0c\u9171\u6c41\u6ea2\u51fa\u5230\u76d8\u5b50\u5468\u56f4\u3002"} +{"id": "3003787", "video_name": "a567bf6f-0066-5227-b7dd-5a3b610825b1", "text": "\u706b\u661f\u8868\u9762\u884c\u9a76\u7684\u6d41\u52a8\u6f2b\u6e38\u8f66\u4e0a\uff0c\u6a59\u8272\u5b87\u822a\u5458\u7a7f\u7740\u5b87\u822a\u670d\u3002"} +{"id": "0005529", "video_name": "1c607a2a-0d7e-5c0c-b682-3bd9360922dd", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u5916\u661f\u4eba\u8eab\u7a7f\u767d\u84dd\u8272\u8fde\u4f53\u670d\uff0c\u914d\u5907\u9ad8\u79d1\u6280\u8bbe\u5907\uff0c\u5750\u5728\u5b9e\u9a8c\u5ba4\u7684\u684c\u5b50\u540e\u9762\uff0c\u76f4\u89c6\u7740"} +{"id": "2005292", "video_name": "6f10e6d0-8c7f-5469-9d10-2806499a1a53", "text": "\u98ce\u4e2d\u7684\u72d0\u72f8\uff0c\u5b83\u6b63\u9762\u5bf9\u7740\u6211\u3002"} +{"id": "0004231", "video_name": "057f16ac-bde7-59f1-ab28-1142fd42e7f9", "text": "\u5361\u901a\u96ea\u4eba\u5728\u5c71\u4e0a\uff0c\u96ea\u82b1\u98d8\u843d\u3002"} +{"id": "5001320", "video_name": "65a66c8f-873d-5dcf-8c13-9ef2305de64a", "text": "\u4e09\u4e2a\u975e\u5e38\u6027\u611f\u7684\u5973\u5b69\u5728\u6d3e\u5bf9\u4e0a\u8eba\u5728\u5e8a\u4e0a\u3002"} +{"id": "5001924", "video_name": "1f972d8d-ac95-5bc3-bd86-43e48f84e39d", "text": "\u9ed1\u6d1e\u3001\u8349\u539f\u3001\u7531\u91d1\u5c5e\u5236\u6210\u7684\u8d85\u7ea7\u590d\u6742\u88c5\u7f6e\u3001\u9ed1\u8272\u5929\u7a7a\u3002"} +{"id": "2003905", "video_name": "089c7a72-33b5-535c-a387-8a5876fef3bc", "text": "9279811240803845489\u7684\u5934\u53d1\u8f7b\u8f7b\u5730\u5728\u7a7a\u6c14\u4e2d\u98d8\u52a8\u3002"} +{"id": "2006410", "video_name": "29333f30-e613-528c-9276-0e7ab03b8980", "text": "\u4e00\u9897\u8c4c\u8c46\u6f02\u6d6e\u5728\u6d69\u701a\u7684\u5b87\u5b99\u4e2d\u3002"} +{"id": "2004055", "video_name": "38627265-ac39-5684-953a-6f4fbbc09e20", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u500b\u96c6\u5e02\u4f86\u5230\u4e86\u9019\u500b\u6751\u838a\u3002"} +{"id": "8003266", "video_name": "e6511549-df39-56a6-814b-78529cb70d56", "text": "\u76f8\u673a\u653e\u5927\uff0c\u4e00\u4e2a\u4eba\u9a91\u7740\u9cb8\u9c7c\u7a7f\u8fc7\u6ce2\u6d6a\u3002"} +{"id": "0003911", "video_name": "4597fbb6-b8e3-50e9-8771-09e88d0e96d6", "text": "\u521b\u9020\u51fa\u6700\u68d2\u7684\u5371\u5730\u9a6c\u62c9\u98ce\u666f\uff0c\u9f13\u52b1\u5176\u4ed6\u4eba\u524d\u6765\u53c2\u89c2\u3002"} +{"id": "2003544", "video_name": "8adfb1a8-4447-5769-b4f0-c50ea65c6cac", "text": "\u5723\u676f\uff0c\u65cb\u8f6c\uff0c\u7535\u5b50\uff0c\u6570\u5b57\uff0c\u8679\u5f69\uff0c\u53d1\u5149\uff0c\u9ed1\u6697\u3002"} +{"id": "1006400", "video_name": "75367c4a-055a-55ee-928f-6013aab29740", "text": "\u521b\u9020\u4e00\u4e2a\u5584\u826f\u7684\u5f62\u8c61\u3002"} +{"id": "8002519", "video_name": "f323b2a9-401f-51b0-a831-bee6384a3bad", "text": "Soyjack\u5927\u58f0\u558a\u53eb\u7740\u5bf9\u7740\u52a8\u6f2b\u5973\u5b69\u54ed\u6ce3\u3002"} +{"id": "2003814", "video_name": "3a0194ca-1757-50af-9c5f-16b464b5b33d", "text": "\u63d2\u753b\u5973\u5b69\u5750\u5728\u6a59\u8272\u5bfc\u6f14\u6905\u4e0a\u5403\u51ef\u6492\u6c99\u62c9\u3002"} +{"id": "7004005", "video_name": "3603b3e6-61e5-52e3-a649-b849f26525f2", "text": "\u745f\u5409\u548c\u82ac\u6069\u5728\u4e3a\u591a\u5143\u5b87\u5b99\u4e0e\u6076\u9b54\u6218\u6597\u3002"} +{"id": "6004903", "video_name": "a462a917-3154-5f58-b586-c0131cdf53a4", "text": "\u6f2b\u5a01\u5de5\u4f5c\u5ba4\u7684\u8d85\u7ea7\u82f1\u96c4\u201c\u94a2\u94c1\u4fa0\u201d"} +{"id": "3006639", "video_name": "f0e9d36e-30ec-5020-9ad6-46b541a5c205", "text": "\u4e9a\u9a6c\u900a\u4e1b\u6797\u91cc\u6709\u4e00\u6761\u5de8\u5927\u768425\u82f1\u5c3a\u5de8\u87d2\u3002"} +{"id": "0003098", "video_name": "36f665ee-1c89-5116-9a19-568d00d59684", "text": "\u4e00\u4e2a\u6234\u7740\u6d45\u8272\u80e1\u987b\u7684\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u684c\u524d\u4f7f\u7528\u7535\u8111\uff0c\u770b\u5411\u6444\u50cf\u673a\u3002"} +{"id": "2003214", "video_name": "7825be9f-ff7b-5867-8bd5-9b917fb6ec4f", "text": "\u5c0f\u9ea6\u514b\u4ee5\u7cbe\u7ec6\u96d5\u523b\u7684\u62f3\u51fb\u59ff\u52bf\u3001\u6829\u6829\u5982\u751f\u7684\u6c57\u6ef4\u548c\u773c\u4e2d\u7684\u51b3\u5fc3\u5f62\u8c61\u903c\u771f\uff0c\u5c55"} +{"id": "6003982", "video_name": "1d3851e9-aeeb-5d74-ba39-4dd01bcf0653", "text": "\u52b3\u65af\u83b1\u65af\u6c7d\u8f66\u9a76\u8fc7\u8fea\u62dc\uff0c\u6a59\u8272\u548c\u9521\u5b89\u8272\u8c03\u3002"} +{"id": "6002096", "video_name": "c6eb316d-9c72-58bf-ae75-6fbaeb26df1f", "text": "\u4e00\u4e2a\u6d3b\u751f\u751f\u7684\u76d2\u5b50\u4eba\u7269\u7a7f\u8fc7\u6811\u6797"} +{"id": "0004644", "video_name": "0c8c4591-944f-55d4-b14b-a75dac635597", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5893\u5730\u91cc\u8ddf\u968f\u53e6\u4e00\u4e2a\u7537\u4eba30\u79d2\u949f\u3002"} +{"id": "0006668", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "\u7eff\u8272\u7684\u732b\u5728\u68d5\u8272\u684c\u5b50\u4e0b\u98de\u884c\u3002"} +{"id": "4004150", "video_name": "d0aeb525-e75a-5885-b672-7c3266accf81", "text": "\u9ed1\u767d\u77ed\u6bdb\u732b\u5728\u65e5\u843d\u65f6\u7761\u89c9\uff0c\u7136\u540e\u8d77\u8eab\u4f38\u5c55\u61d2\u8170\u3002\u6162\u6162\u5730\u3002"} +{"id": "7003336", "video_name": "4bc3391d-21de-551e-aa8b-29a5f7b8bb07", "text": "\u706f\u5149\u4e2d\u8d70\u51fa\u7684\u5973\u58eb"} +{"id": "7004267", "video_name": "3d286ba1-057a-5f7e-8922-3e45114cbb21", "text": "\u5728\u6708\u5149\u4e0b\u7a7f\u7740\u82b1\u590f\u88c5\u72ec\u821e\u7684\u5973\u5b69"} +{"id": "6002968", "video_name": "67818c95-04e9-537c-9654-b19be0e0fd64", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u505a\u4e86\u4e00\u4e2a\u4ece\u672a\u5c1d\u8bd5\u8fc7\u7684\u75af\u72c2\u7279\u6280\u3002"} +{"id": "7004506", "video_name": "05662275-af3c-544b-a268-5d740be07aa5", "text": "\u90aa\u6076\u7684\u9732\u9732\u6765\u81ea\u82f1\u96c4\u8054\u76df\u3002"} +{"id": "2005072", "video_name": "4d30a502-a60e-5697-a6ad-a0981d8dd779", "text": "\u4e00\u7247\u7f8e\u4e3d\u7684\u591c\u7a7a\uff0c\u5e03\u6ee1\u4e86\u661f\u661f\u548c\u795e\u5947\u7684\u661f\u5ea7\u3002"} +{"id": "4004978", "video_name": "0634ce4e-d4ae-55ca-8a0c-56a16b62bb8c", "text": "\u9ad8\u5206\u8fa8\u7387\u76845\u79d2\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u738b\u56fd\uff0c\u65c1\u8fb9\u6709\u4e00\u4e2a\u6e56\u6cca\u3001\u9e1f\u513f\u3001\u5c71\u8109\u3001\u5c0f\u623f\u5c4b"} +{"id": "2006554", "video_name": "da360f5a-0b46-5274-8854-83fae3dbb0b0", "text": "\u571f\u661f\u73af\u7ed5\u5730\u7403\u7684\u89c6\u9891\u7f29\u653e\u6548\u679c\u3002"} +{"id": "0003521", "video_name": "3eee5fe9-f7f8-5f10-b527-368bcd1d93df", "text": "\u4e00\u4f4d\u5a01\u6b66\u7684\u7ef4\u4eac\u6218\u58eb\u4e0e\u4e00\u4f4d\u5f3a\u5927\u7684\u673a\u5668\u4eba\u5bf9\u624b\u5728\u53e4\u8001\u548c\u672a\u6765\u4e3b\u4e49\u7684\u53f2\u8bd7\u51b2\u7a81\u4e2d\u89d2\u9010\u3002"} +{"id": "6004978", "video_name": "eb7ddffc-5941-52cf-aa8f-5e49e3b31d79", "text": "\u4e00\u4e2a\u6234\u5411\u65e5\u8475\u5e3d\u5b50\u7684\u7537\u5b50\u5728\u7530\u91ce\u91cc\uff0c\u9ad8\u6e05\u52a8\u6001\u5149\u5f71\uff0c\u7c7b\u4f3cA24\u7535\u5f71\u7684\u98ce\u683c\uff0c\u8001\u65e7\u7684\u590d\u53e4\u611f\uff0c"} +{"id": "3005300", "video_name": "e6ecd5da-bba0-5358-b16a-fbead0c91019", "text": "\u5f17\u62c9\u5fb7\u4e09\u4e16\u6210\u5e74\u540e\u9a91\u9a6c\u56de\u5230\u74e6\u62c9\u5947\u4e9a\uff0c\u4ed6\u7684\u8138\u4e0a\u9732\u51fa\u51b3\u5fc3\uff0c\u6ce8\u89c6\u7740\u5e7f\u9614\u7684\u4e61"} +{"id": "0006241", "video_name": "28fd05cb-a2dc-5335-b83e-5cabbc8391e0", "text": "\u7ea2\u8272\u5965\u8feaRS\u6cbf\u7740\u9053\u8def\u884c\u9a76\u3002"} +{"id": "1004925", "video_name": "5b0dbc55-8681-55b3-87a9-4cc43c7949f0", "text": "\u5728\u8fd9\u4e2a\u89c6\u9891\u4e2d\u52a0\u5165\u4e00\u4e9b\u5b57\uff0c\u8fd9\u4e2a\u5b57\u662f\u201cDAK\u201d\u3002"} +{"id": "1003823", "video_name": "46a1d37a-db7b-5a33-8128-a9d99374cff1", "text": "\u521b\u4f5c\u4e00\u4e2a\u6ca1\u6709\u8033\u6735\u7684\u54c6\u5566A\u68a6\u52a8\u753b\uff0c\u5411\u5927\u5bb6\u6253\u62db\u547c\u3002"} +{"id": "2005666", "video_name": "8fecc498-0a1a-5269-8633-149303cd2f2c", "text": "\u4e00\u5ea7\u8fde\u63a5\u4e24\u4e2a\u5bf9\u7acb\u9762\u7684\u6865\u6881\uff0c\u5176\u4e2d\u4e00\u4e2a\u4ee3\u8868\u6291\u90c1\uff0c\u53e6\u4e00\u4e2a\u4ee3\u8868\u8d21\u732e\u3002"} +{"id": "8003356", "video_name": "a7ed7d2a-9974-5de8-9a1f-611e555eeb52", "text": "\u4e00\u4f4d\u5370\u5ea6\u6559\u5723\u4eba\u5728\u6cb3\u8fb9\u6c89\u601d\u51a5\u60f3\uff0c\u5468\u56f4\u6709\u5c71\u3001\u6811\uff0c\u592a\u9633\u7167\u8000\u7740\uff0c\u9633\u5149\u53ea\u7167\u5411"} +{"id": "4004425", "video_name": "9467a4ea-4f63-5b5c-95d5-fa74080fc0a7", "text": "\u5c0f\u732b\u6349\u5230\u4e86\u4e00\u6761\u9c7c\uff0c\u653e\u5728\u5c0f\u5973\u5b69\u8428\u62c9\u7684\u9762\u524d\u3002"} +{"id": "5001806", "video_name": "239012ae-0676-5e8a-a5ba-8ad4ce5b20c8", "text": "\u7f8e\u4e3d\u7684\u4e2d\u56fd\u6c49\u670d\u5973\u5b69\u5728\u91d1\u8272\u67ab\u53f6\u6811\u4e0b\u8df3\u821e\u3002"} +{"id": "3003290", "video_name": "be475c78-6631-5415-b471-2411269925d1", "text": "19\u4e16\u7eaa\u7684\u7267\u5e08\u7259\u75db\u4e86\u3002"} +{"id": "1005069", "video_name": "5d932a77-e6f5-53d3-ab36-7827e1cedd01", "text": "\u5927\u6ce2\u6d6a\u7684\u7ec4\u5408\uff0c\u84dd\u8272\u8c03\uff0c\u5b57\u4f53\u4e3a\u73b0\u4ee3\u3002"} +{"id": "6003081", "video_name": "bb426574-144f-57e8-a2c6-21548d9dd19e", "text": "\u7f8e\u4e3d\u7684\u5f69\u8679\uff0c\u624b\u4f38\u5411\u5f69\u8679\uff0c\u5f69\u8679\u53d8\u5f97\u66f4\u957f\u66f4\u5f2f\u66f2\u3002"} +{"id": "4004463", "video_name": "7e93c2a0-fdca-5d18-9731-ea1a0c6231c9", "text": "\u4e9a\u9a6c\u900a\u7684\u571f\u8457\u5df4\u897f\u5370\u7b2c\u5b89\u4eba\u6b63\u572816:9\u6bd4\u4f8b\u4e0b\u7a7f\u8fc7\u96e8\u6797\u3002"} +{"id": "4004705", "video_name": "f24e2eae-b70a-5835-aa9c-88d4c5c8636f", "text": "\u4f60\u597d (Font: MODERN)\n\n\u7981\u6797\u91cc\u7684\u53ef\u6015\u591c\u665a\uff0c\u6811\u6728\u745f\u745f\u4f5c\u54cd\uff0c\u66b4\u98ce\u96e8\u3001\u503e\u76c6\u5927\u96e8\u548c"} +{"id": "4002082", "video_name": "48b31903-ab9a-5e0c-9f10-60051b6f1886", "text": "\u739b\u96c5\u72d0\u7ad9\u5728\u68ee\u6797\u5730\u9762\u4e0a\u3002"} +{"id": "6004622", "video_name": "7414b479-70c7-5e6a-8869-d90bea79e9ae", "text": "\u89c6\u89c9\u523a\u6fc0\u5bf9\u81ea\u95ed\u75c7\u513f\u7ae5\u6709\u6ee1\u8db3\u611f\u3002"} +{"id": "1005191", "video_name": "5f759378-b803-55ba-9eb5-68fe00245b36", "text": "\u5728\u6ee1\u6708\u7684\u4eae\u5149\u4e0b\uff0c\u8f66\u9053\u6df1\u5165\u68ee\u6797\u3002"} +{"id": "2005652", "video_name": "3cf74019-89e5-5b68-90a6-a5f9842bb6bf", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u5361\u901a\u98ce\u683c\uff0c\u8fd9\u4e2a\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u8857\u9053\u5145\u6ee1\u4e86\u6301\u7eed\u4e0d\u65ad\u7684\u4eba\u548c"} +{"id": "6004391", "video_name": "2a2a4438-90a6-591a-84e8-67c44abfcf62", "text": "\u4e8c\u6218\u7ed3\u675f\u65f6\uff0c\u4fc4\u7f57\u65af\u5e86\u795d\u65f6\u9152\u7cbe\u996e\u6599\u77ed\u7f3a\u3002"} +{"id": "0003661", "video_name": "41398ca4-0ac4-5ede-b43d-72799f387ac6", "text": "\u7528\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b50\u7528\u624b\u6307\u9017\u5f04\u955c\u5934\u7684\u7535\u5f71\u7ea7\u3001\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "3004103", "video_name": "720a2e8b-66a1-556a-89f6-7c28d2c5ef9f", "text": "\u6d77\u8fb9\u7684\u65e5\u843d\uff0c\u68d5\u6988\u6811\u548c\u4e00\u8258\u521a\u7ecf\u8fc7\u7684\u5c0f\u8239\uff0c\u6d77\u6d6a\u58f0 16:9\u3002"} +{"id": "4004180", "video_name": "935b5503-3697-5367-b893-b721ccbb09db", "text": "\u4e00\u53ea\u718a\u732b\u6b63\u5728\u6ed1\u7740\u65f1\u51b0\u978b\u7a7f\u8d8a\u8d5b\u535a\u670b\u514b\u672a\u6765\u7684\u6ed1\u677f\u516c\u56ed\u3002"} +{"id": "6003692", "video_name": "43a9b02c-1b2c-5a94-9a48-19a5f44ab812", "text": "\u7b80\u5355\u7684\u70ad\u7070\u8272\u6444\u5f71\u80cc\u666f\uff0c\u7167\u660e\u826f\u597d\n\nSource sentence: The restaurant is closed for renovation until further notice.\n\u9910\u5385\u56e0\u88c5\u4fee\u5173\u95ed\uff0c\u6055\u4e0d\u53e6"} +{"id": "0005573", "video_name": "1d325394-e7c9-54c7-969b-6a3b214409d2", "text": "\u4e2d\u666f\u955c\u5934\uff0c\u9ec4\u8272\u6db2\u4f53\u503e\u6cfb\u8fdb\u4e00\u6b3e\u767d\u8272\u5e72\u51c0\u7684\u7f8e\u6807\u9a6c\u6876\uff0c\u4ee5\u65f6\u95f4\u52a0\u901f\u62cd\u6444\u3002"} +{"id": "2007695", "video_name": "5cf6e5bb-5b6b-526d-be8c-60f98790911c", "text": "\u673a\u5668\u4eba\u63a2\u6d4b\u5668\u5728\u706b\u661f\u5c71\u4e18\u4e0a\u884c\u8d70\u548c\u626b\u63cf\uff0c\u611f\u5e94\u98ce\u548c\u79fb\u52a8\u3002"} +{"id": "1006280", "video_name": "73041a65-17b5-56d7-ab1e-6aed6a31773e", "text": "\u4e00\u4e2a\u5706\u5f62\u623f\u95f4\uff0c\u5730\u677f\u4e0a\u8986\u76d6\u7740\u53d1\u5149\u7684\u7b26\u53f7\u3002"} +{"id": "3004843", "video_name": "b0982b59-dd56-52f6-8db7-dbdc797e5aaf", "text": "\u5973\u5b69\u6025\u8f6c\u5934\u548c\u8116\u5b50\u5411\u53f3\u503e\u659c\u3002"} +{"id": "8003927", "video_name": "a6ad885e-c42b-57ad-a182-dda4a71b39f6", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u5b81\u9759\u3001\u6b22\u8fce\u7684\u57fa\u7763\u6559\u793e\u533a\u7f51\u7ad9\u9996\u9875\u3002\u9996\u9875\u5e94\u5305\u542b\u9f13\u821e\u4eba\u5fc3\u7684\u5723\u7ecf\u7ecf\u6587\u7684\u4e3b\u8981\u90e8\u5206\u3001\u67d4\u548c\u7684"} +{"id": "1005813", "video_name": "6adb599e-26fa-5c8d-9b3d-c27313f0808b", "text": "\u4e00\u4e2a\u7537\u4eba\u53ef\u4ee5\u5728\u5bb6\u54ed\u6ce3\u3002"} +{"id": "5001390", "video_name": "ba585dcc-4832-59fe-8103-194c8210a1d9", "text": "\u5728\u9ed1\u6697\u4e2d\u54ed\u6ce3\u7684\u5973\u4eba\u8138\u4e0a\uff0c\u6cea\u6c34\u5448\u9713\u8679\u84dd\u8272\uff0c\u5934\u90e8\u4e0d\u52a8\uff0c\u552f\u4e00\u52a8\u7684\u53ea\u6709\u773c\u6cea\u3002\n\nSource sentence"} +{"id": "2004506", "video_name": "3db72d99-9102-5124-9f70-6f0dc0de95e3", "text": "\u50f5\u5c38\u7fa4\u5954\u8dd1\uff0c\u50cf\u6700\u540e\u7684\u6211\u4eec\u7684\u7f8e\u5b66\u3002 \n\nSource sentence: The Great Wall of China is one of the Seven Wonders of the World. \n\n\u4e2d\u56fd\u7684\u957f\u57ce\u662f\u4e16\u754c"} +{"id": "3005825", "video_name": "2623663b-1db8-5574-928f-622fead2c1f4", "text": "\u6240\u7f57\u95e8\u738b\u548c\u7ea6\u67dc\u7684\u4f20\u8bf4\u5f3a\u8c03\u4e86\u7ea6\u67dc\u5728\u72b9\u592a\u4f20\u7edf\u4e2d\u7684\u795e\u5723\u6027\u548c\u91cd\u8981\u6027\u3002"} +{"id": "4004921", "video_name": "4d3f53fc-6cfa-51aa-a344-fec9fb549332", "text": "\u73e0\u7a46\u6717\u739b\u5cf0\u9876\u4e0a\u7684\u7537\u5b69\u3002"} +{"id": "2007156", "video_name": "3fae51ca-db4a-51ae-b6bf-c1234ebca0c2", "text": "\u871c\u8702\u98de\u884c\u76849.16\u50cf\u7d20\u7535\u5f71\u98ce\u683cHDR\u3002"} +{"id": "1003939", "video_name": "48adf101-4059-5655-9432-6731845952a5", "text": "\u7537\u5b50\u5728\u5f00\u9614\u7684\u6d77\u6d0b\u4e2d\u7528\u65cb\u8f6c\u6746\u4ece\u8239\u4e0a\u9493\u9c7c\u3002"} +{"id": "3003322", "video_name": "aae9ff0d-86fb-5911-b9d6-73c1fcd78811", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u548c\u706d\u9738\u5728\u897f\u90e8\u98ce\u683c\u7684\u51b3\u6597\u4e2d\u9762\u5bf9\u9762\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0004499", "video_name": "0a011506-2799-5b1e-ba2a-d9d5fdc4e735", "text": "\u575a\u5fcd\u7684\u5929\u4f7f\u51fa\u73b0\u5728\u5b81\u9759\u7684\u68a6\u5883\u4e2d\u3002"} +{"id": "8002344", "video_name": "58ee27a5-381c-532f-bd8b-93a3bd3610e3", "text": "\u4e00\u4e2a\u6709\u87ba\u65cb\u773c\u775b\u548c\u89e6\u624b\u7684\u6709\u8da3\u84dd\u8272\u5916\u661f\u751f\u7269\u3002"} +{"id": "4004341", "video_name": "5ca05c96-7a0b-568f-acb4-e7129a8d98b2", "text": "\u4ece\u68ee\u6797\u4e2d\u51fa\u73b0\u7684\u6c7d\u8f66\u884c\u9a76\u5728\u5f00\u9614\u7684\u9053\u8def\u4e0a\uff0c\u4ee5\u80dc\u5229\u9003\u8131\u7684\u98ce\u683c\u4e3a\u4e3b\uff0c\u91c7\u7528\u91d1\u8272\u5c0f\u65f6\u7684\u7167\u660e\u3001"} +{"id": "7002282", "video_name": "aa09954b-e9b6-59fa-bb5f-bd8d63cccfff", "text": "\u91cc\u5965\u7a7f\u7740\u4ed6\u7684\u7761\u8863\uff0c\u7ad9\u5728\u7a97\u8fb9\uff0c\u671b\u7740\u660e\u4eae\u7684\u65e9\u6668\u9633\u5149\u3002\u4ee53D\u52a8\u753b\u98ce\u683c\u5236\u4f5c\uff0c\u89c6\u9891"} +{"id": "2004149", "video_name": "57431ac1-37da-5995-9a0c-ca56e57b4351", "text": "\u9b3c\u8239\u6f02\u6d6e\u5f97\u66f4\u8fd1\u4e86\uff0c\u5b83\u7684\u5e7d\u7075\u8239\u5458\u4ece\u9ed1\u6697\u4e2d\u51fa\u73b0\u3002\u4ed6\u4eec\u662f\u9aa8\u7626\u5982\u67f4\u7684\u8eab\u5f71\uff0c\u773c"} +{"id": "4004100", "video_name": "d9c41f86-8d5d-5e68-80f0-235adb34adee", "text": "\u4e3d\u838e\u00b7\u6d1b\u4f69\u5179\u5728\u5929\u5802\u91cc\u8bf4\u5531\u3002"} +{"id": "8001757", "video_name": "23d6c48f-9c2f-54d9-83e6-8c55449860f3", "text": "\u5c55\u793a\u4e00\u5835\u88c5\u6ee1\u7ec6\u8282\u4e30\u5bcc\u7684\u56fe\u7247\u548c\u526a\u8d34\u753b\u7684\u5899\u58c1\uff0c\u5206\u8fa8\u7387\u4e3a8k\uff0cGS 11\uff0cMotion 3\u3002"} +{"id": "4002576", "video_name": "13da69e4-5615-5216-be58-8f1c09ccd148", "text": "4\u4e2a\u91d1\u53d1\u5973\u5b69\u5750\u5728\u4e00\u8f86\u7ea2\u8272\u7684\u8428\u535a\u655e\u7bf7\u8f66\u91cc\u3002"} +{"id": "0004223", "video_name": "055d6794-6d70-593b-97d6-c568a01c0054", "text": "\u4e00\u6b3e\u5b8c\u7f8e\u7684\u4e73\u6e05\u86cb\u767d\u7c89\uff0c\u53ef\u4ee5\u4fc3\u8fdb\u808c\u8089\u751f\u957f\u548c\u589e\u5f3a\u514d\u75ab\u529b\u3002"} +{"id": "0005624", "video_name": "1e4ac0b9-bf6a-5afa-b42c-1b34ef4a2b60", "text": "\u6d77\u4e0a\u7834\u6653\uff0c\u9e1f\u513f\u98de\u8fc7\u3002\u5c0f\u6d77\u6ee9\u9e45\u5375\u77f3\u4e0a\u5fae\u5fae\u7684\u6c34\u58f0\u3002"} +{"id": "2003767", "video_name": "9cc199ac-c46f-544b-938d-9124ce30f1bc", "text": "\u4e00\u676f\u6c34\u91cc\u6f02\u6d6e\u7740\u624b\u6307\u3002"} +{"id": "3006321", "video_name": "f27998bb-57f0-5838-b3f5-8b1aff12d8ac", "text": "feel to it.\n\n\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u7a7f\u8fc7\u68ee\u6797\u7684\u5c0f\u8def\u4e0a\u9047\u5230\u4e86\u4e00\u4e2a\u7537\u4eba\u3002\u4ece\u4e0a\u65b9\u770b\uff0c\u975e\u5e38\u9065\u8fdc\uff0c\u5e26\u6709\u4e00\u79cd\u5de5\u4e1a\u611f"} +{"id": "0004897", "video_name": "11174e37-5b11-5f8a-8d03-49aef05aa607", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u5931\u660e\u7537\u5b50\u76f4\u89c6\u524d\u65b9\u3002\u7f8e\u4e3d\u7684\u6700\u7ec8\u5e7b\u60f3\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "7003024", "video_name": "59e2e0ff-6587-5182-b63d-ad954cdd9815", "text": "\u4e00\u4f4d\u514b\u91cc\u5e0c\u90a3\u795e\u6b63\u5728\u80cc\u666f\u4e2d\u5439\u594f\u957f\u7b1b\uff0c\u5468\u56f4\u6709\u5b54\u96c0\u3002"} +{"id": "3004177", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "\u4e00\u4f4d\u7a7f\u7740\u9713\u8679\u706f\u5916\u5957\u7684\u8bf4\u5531\u6b4c\u624b\u3002"} +{"id": "0003889", "video_name": "454abe3f-76a3-506b-9f2b-54a83082538d", "text": "\u5fae\u7b11\u3001\u5927\u7b11\uff0c\u753b\u9762\u4e0d\u65ad\u5730\u620f\u5267\u6027\u6643\u52a8\u3002"} +{"id": "3004269", "video_name": "5625e920-3fd5-5ef3-ba8c-0500f9af9709", "text": "\u4e00\u540d\u7a7f\u8457\u85cd\u8272\u88d9\u5b50\u3001\u5728\u8056\u8a95\u7bc09:16\u6642\u5728\u7d50\u51b0\u7684\u6e56\u9762\u4e0a\u6ed1\u51b0\u821e\u8e48\u7684\u7f8e\u9e97"} +{"id": "3006084", "video_name": "ec1c4cf2-412b-57fd-87f7-bbcd15b08897", "text": "\u73b0\u573a\u89c2\u4f17\u4e3e\u8d77\u624b\u673a\u6253\u5f00\u95ea\u5149\u706f\uff0c\u663e\u793a\u201cEvyatar\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3006438", "video_name": "c761ad3b-9797-5374-94c3-2a2f6d56cb1c", "text": "\u4e00\u4e2a\u53cc\u624b\u8d34\u5728\u80cc\u540e\u7684\u7537\u5b50\u6b63\u5728\u6ed1\u677f\u6cbf\u7740\u4e00\u6761\u5f2f\u66f2\u7684\u9053\u8def\u524d\u884c\u3002 \n\nSource sentence: The sun is setting behind the mountains, casting a golden glow on"} +{"id": "7003220", "video_name": "767d3dc9-9d23-5c7c-9c75-2747af15ab93", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u9760\u5728\u7a97\u8fb9\u7761\u89c9\uff0c\u819d\u4e0a\u6709\u4e00\u53ea\u53ef\u7231\u7684\u732b\u3002"} +{"id": "2006203", "video_name": "e722eafa-176b-541b-b67e-a9acbe98b10f", "text": "\u6c34\u679c\u6389\u8fdb\u6405\u62cc\u673a\u5e76\u88ab\u6df7\u5408\u3002"} +{"id": "1005313", "video_name": "61913f7f-2a40-5ff5-a6e8-c1bdeab2feb5", "text": "\u5e26\u7740\u5251\u9a91\u5728\u9a6c\u4e0a\u7684\u5973\u5b69\u3002"} +{"id": "1005690", "video_name": "6888a546-c527-5279-86b4-bebcd4e7539f", "text": "\u7f2a\u7f2a\u6b63\u7126\u8651\u5730\u76b1\u7740\u7709\u5934\u770b\u7740\u5979\u7684\u5c0f\u7bee\u5b50\u3002"} +{"id": "3005764", "video_name": "501c656b-1a5a-5104-b4df-ad377aed4cf1", "text": "\u7b2c\u4e09\u6b21\u5192\u9669\uff0c\u5730\u56fe\u6307\u5f15\u8428\u7c73\u6765\u5230\u4e86\u201c\u821e\u6c99\u6c99\u6f20\u201d\u3002\u6c99\u5b50\u968f\u7740\u4ed6\u7684\u5fc3\u8df3\u6709\u89c4\u5f8b\u5730\u821e\u52a8\uff0c"} +{"id": "1004976", "video_name": "5c041d0d-0948-598a-b7bd-88e482617bca", "text": "\u4e00\u9053\u5f3a\u5927\u7684\u95ea\u7535\u5212\u7834\u591c\u7a7a\uff0c\u4ee5\u7535\u529b\u7684\u5f3a\u5ea6\u7167\u4eae\u9ed1\u6697\u3002\u5f53\u5b83\u51fb\u4e2d\u5730\u9762\u65f6\uff0c\u7206\u70b8\u6027\u7684\u80fd"} +{"id": "3003306", "video_name": "99c8243c-e15d-578f-8a9d-73cc60f773a2", "text": "\u5de6\u53f3\u4e24\u4fa7\u6709\u591a\u6247\u95e8\u7684\u7ea2\u8272\u623f\u95f4\uff0c\u672b\u7aef\u8f83\u7a84\u3002"} +{"id": "0005593", "video_name": "1da5f63c-969c-566a-8f51-fb0c712bfc91", "text": "\u52a8\u753b\u7248\u7684\u5c0f\u7537\u5b69\u56fe\u7247"} +{"id": "3005646", "video_name": "488a5615-69de-5c41-9079-bca2f1ba9a07", "text": "\u52a8\u6001\u7684\u8682\u8681\uff0c\u767d\u8272\u80cc\u666f\u3002\u4fe1\u606f\uff1a\u4e4c\u8fea\u666e\u5854\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003791", "video_name": "fe113780-14f5-565f-a8ed-c58ac8526da1", "text": "\u573a\u666f\u5728\u4e00\u4e2a\u96fe\u8499\u8499\u7684\u6cbc\u6cfd\u5730\u9ece\u660e\u65f6\u5206\u5f00\u59cb\u3002\u5149\u7ebf\u7a7f\u8fc7\u5782\u6302\u7684\u85e4\u8513\u548c\u897f\u73ed\u7259"} +{"id": "1004638", "video_name": "563fcbdb-4005-5d71-a33c-d9e8c1e90783", "text": "\u5973\u5b69\u7a7f\u7740\u6027\u611f\u7684\u91d1\u8272\u6bd4\u57fa\u5c3c\u5728\u9ad8\u7ea7\u8c6a\u534e\u7684\u9876\u5c42\u516c\u5bd3\u8d70\u52a8\u3002"} +{"id": "3006624", "video_name": "496965eb-5cf4-528f-b617-2c428dfb2f44", "text": "\u8c37\u6b4c\u5730\u7403\u4e0a\u6709\u4eba\u4eec\u624b\u62c9\u624b\u7684\u573a\u666f\u3002"} +{"id": "4002720", "video_name": "dde94acb-ff82-5970-a34d-83136afc0967", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u526a\u5f71\u7ad9\u5728\u6865\u4e0a\uff0c\u51e0\u4e4e\u8981\u8df3\u4e0b\u53bb\uff0c\u4e0b\u7740\u96e8\uff0c\u6709\u7535\u5f71\u611f\uff0c\u50cf80\u5e74\u4ee3\u3002"} +{"id": "1005625", "video_name": "676ae2db-6660-5713-bd5b-6059fb9f81f0", "text": "\u5728\u4e1b\u6797\u4e2d\uff0c\u591c\u665a\u968f\u7740\u4ed6\u4eec\u7684\u524d\u8fdb\u53d8\u6210\u4e86\u767d\u5929\u3002"} +{"id": "1005101", "video_name": "5e0da977-2b98-5ab1-b3b1-8537aa4df316", "text": "\u8718\u86db\u4fa0\u7a7f\u7740\u5bbf\u4e3b\u8863\u670d\u5728\u5e03\u9c81\u514b\u6797\u62e5\u6324\u7684\u8857\u9053\u4e0a\u4e0e\u8fc8\u5c14\u65af\u00b7\u83ab\u62c9\u83b1"} +{"id": "8003555", "video_name": "2e01c044-21bb-5618-9382-8fd776c42694", "text": "\u7e41\u8363\u7684\u666f\u8c61\u4f5c\u4e3a\u80cc\u666f"} +{"id": "2004321", "video_name": "0412e496-f58a-5638-87be-a26ebeb67180", "text": "\u6885\u897f\u6210\u4e3a\u963f\u6839\u5ef7\u603b\u7edf\u3002"} +{"id": "2007752", "video_name": "1b5790ac-3781-5a3d-bb02-1fe7ec4fee51", "text": "\u4e24\u4e2a\u4eba\u62e5\u6709\u4e09\u79cd\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u7684\u529b\u91cf\u3002"} +{"id": "7004500", "video_name": "51ac74eb-f74a-5ac2-baa1-1777e65d4c51", "text": "\u90a3\u5929\u5f88\u51b7\uff0c\u4e00\u4e2a\u5927\u7ea620\u5c81\u7684\u7537\u5b69\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u7684\u7fbd\u7ed2\u670d\u548c\u7070\u8272\u88e4\u5b50\u5728\u96ea\u5730\u91cc\u884c\u8d70\u3002"} +{"id": "0003224", "video_name": "3992ba04-ce30-5f79-99dd-dce59d03ce82", "text": "\u8001\u5f0f\u89c6\u9891\u4e2d\u7684\u5e7d\u7075\u5728\u5893\u5730\u4e2d\u6f02\u6d6e\u3002"} +{"id": "0005951", "video_name": "23d93391-23b8-58f0-a9a6-7fac858fecb9", "text": "\u5b9e\u73b0\u8fd9\u4e00\u70b9\u9700\u8981\u878d\u5408\u8d85\u73b0\u5b9e\u7684\u6444\u5f71\u548c\u79d1\u5b66\u7cbe\u5ea6\u3002"} +{"id": "7003074", "video_name": "212aa371-80d3-52aa-8c6a-6a0ecdf3bad1", "text": "\u6df7\u4e71\u3001\u5012\u7f6e\u548c\u4e8b\u6545\u8fde\u9501\u3002"} +{"id": "8003161", "video_name": "f890ef38-a800-5d88-b2ad-cbd308ce84c4", "text": "\u7528\u624b\u634f\u51fa\u9e7f\u5934\uff0c\u9010\u6e10\u53d8\u6210\u5c0f\u9e7f\u7684\u5934\u3002 \u9644\uff1a1\u5f20\u7167\u7247\u3002"} +{"id": "1004184", "video_name": "4d6adb2f-f075-5803-9e4e-f02b557b7e23", "text": "\u4e00\u4f4d\u725b\u4ed4\u5728\u591c\u665a\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u9713\u8679\u706f\u95ea\u70c1\u3002"} +{"id": "6002249", "video_name": "7daa587d-ff62-5d21-bacc-2ed46135c17e", "text": "\u65e5\u672c\u7684\u8d85\u81ea\u7136\u73b0\u8c61\u3001\u6050\u6016\u3001\u6bdb\u9aa8\u609a\u7136\u30011918\u5e74\u7684\u7167\u7247\u98ce\u683c\u3001\u5386\u53f2\u98ce\u683c\u3002"} +{"id": "2003148", "video_name": "07eafc65-8bac-54ad-a923-1bc67931cf00", "text": "\u5973\u4eba\u5bf9\u672a\u6765\u81ea\u7136\u7684\u68a6\u60f3"} +{"id": "8003607", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "\u8fd9\u4e9b\u5de8\u5927\u7684\u6728\u4e43\u4f0a\u662f\u572820\u4e16\u7eaa\u6316\u6398\u51fa\u6765\u7684\uff0c\u901a\u5e38\u4e0e\u5962\u534e\u7684\u846c\u793c\u4eea\u5f0f\u76f8\u8054\u7cfb\u3002"} +{"id": "0003817", "video_name": "4404efb1-97ce-5055-8da6-9da48b2996e0", "text": "\u7ef4\u6770\u548c\u83b1\u6602\u7eb3\u591a\u00b7\u8fea\u5361\u666e\u91cc\u5965\u5750\u5728\u6d77\u6ee9\u524d\u9762\uff0c\u5934\u9876\u4e0a\u6709\u4e00\u53ea\u9e70\u3002\u4f7f\u75284k\u548c\u81ea\u7136"} +{"id": "3005849", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32\u4f4d\u6e38\u620f\u5ba4\uff0c\u5916\u9762\u6709\u4e00\u573a\u98ce\u66b4\u3002"} +{"id": "1003555", "video_name": "418dabef-4b42-50da-91bd-3df5a837b97b", "text": "\u4e00\u4f4d\u72ec\u81ea\u751f\u8fd8\u7684\u4eba\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u4fef\u77b0\u7740\u65e5\u51fa\u65f6\u7834\u4e91\u800c\u51fa\u7684\u57ce\u5e02\u3002"} +{"id": "4003222", "video_name": "e03216bc-b2f3-57df-b724-2e8952d61909", "text": "\u5728\u82b1\u56ed\u91cc\u50cf\u8774\u8776\u4e00\u6837\u98de\u884c"} +{"id": "2006259", "video_name": "c464f5cf-926e-5286-9aa1-1df8ee306810", "text": "\u5b59\u609f\u7a7a\u662f\u4e2d\u56fd\u795e\u8bdd\u4e2d\u7684\u4eba\u7269\uff0c\u5728\u98de\u884c\u65f6\u8eba\u5728\u4e91\u4e0a\u770b\u4e66\u3002"} +{"id": "2004524", "video_name": "4b971734-9e82-5ecf-a9ca-6f9ce1a92b51", "text": "\u4e00\u4e2a\u97f3\u4e50\u76d2\u6253\u5f00\u4e86\uff0c\u91cc\u9762\u6709\u4e00\u4e2a\u82ad\u857e\u821e\u8005\u968f\u7740\u7f8e\u5999\u7684\u65cb\u5f8b\u8df3\u821e\u3002"} +{"id": "2004252", "video_name": "cbe68309-8c96-5bcf-926f-0ec7dba396a7", "text": "\u53e4\u4ee3\u4e2d\u56fd\u7684\u6218\u4e89\u3002\u58ee\u89c2\u7684\u6218\u6597\u573a\u9762\u3002\u9a91\u5175\u3002\u4e00\u6b21\u5c04\u51fa\u4e00\u4e07\u652f\u7bad\u3002\u4e2d\u56fd\u5f0f\u7684\u6709\u5e8f\u6392\u5217\u3002\u6e05\u6670"} +{"id": "6003037", "video_name": "273b7494-21fb-5302-be2f-4a19b71b6115", "text": "\u5b64\u72ec\u7684\u8eab\u5f71\u53ea\u88ab\u7a00\u758f\u7684\u8857\u706f\u7167\u4eae\uff0c\u6f2b\u5929\u96e8\u6c34\u65e0\u4f11\u65e0\u6b62\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u8be1\u5f02\u7684\u6c1b"} +{"id": "0003019", "video_name": "35ac51e4-721a-5628-b059-ab924915c688", "text": "7\u4e2a\u4eba\u7ad9\u7740\uff0c\u63a5\u7740\u5176\u4e2d\u4e00\u4e2a\u540e\u9000\u4e86\u3002\u89c6\u9891\u5feb\u901f\uff0c\u903c\u771f\uff0c\u620f\u5267\u5316\u7684\u5149\u7ebf\uff0c\u89d2\u5ea6\u7b14\u76f4\u3002"} +{"id": "7003665", "video_name": "fb289b26-483f-545a-82de-94af407d6193", "text": "\u8f70\u70b8\u673a\u5411\u76f8\u673a\u98de\u884c\uff0c\u98de\u673a\u5411\u76f8\u673a\u79fb\u52a8\uff0c\u56fa\u5b9a\u76f8\u673a\uff0c\u4e91\u6735\u3002"} +{"id": "4003218", "video_name": "03f0f39c-2256-5b11-9d0f-c61681cbcc4e", "text": "\u773c\u775b\u7728\u52a8\u5f97\u50cf\u771f\u7684\u4e00\u6837\uff0c\u6d77\u6d6a\u8d77\u4f0f\u3002"} +{"id": "7002222", "video_name": "428e62f9-6657-5512-aab6-7ee877f11b43", "text": "\u4ece\u795e\u79d8\u7684\u963f\u6839\u5ef7\u6545\u4e8b\u5230\u4e16\u754c\u5404\u5730\u7684\u7075\u6027\u6545\u4e8b\uff0c\u74e6\u8fbe\u4e4c\u62c9\u8fde\u63a5\u5bfb\u6c42\u8005\u548c\u5148\u77e5\uff0c\u521b\u9020\u4e86"} +{"id": "2005813", "video_name": "df87a4b7-90d0-53c2-8ab6-2ad7f1ff1481", "text": "\u53e4\u4ee3\u4e2d\u56fd\u573a\u666f\uff0c\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\uff0c\u4e00\u4f4d\u751f\u75c5\u7684\u5973\u4eba\u8eba\u5728\u5e8a\u4e0a\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u548c\u8d56\u592a\u592a\u7ad9\u5728\u65c1\u8fb9\u3002"} +{"id": "1003170", "video_name": "3a5e7b5f-3e28-524b-ab45-6ca4cbbeab08", "text": "\u7ea2\u8272\u7684\u706b\u67f4\u4eba\u548c\u84dd\u8272\u7684\u706b\u67f4\u4eba\u5728\u6253\u6597\u3002"} +{"id": "3003710", "video_name": "9f710048-6018-5b43-8e36-cd6e9cbdb73a", "text": "\u5899\u4e0a\u6302\u7740\u4e00\u5e45\u7f8e\u4e3d\u7684\u5973\u5b50\u753b\u50cf\uff0c\u5979\u8eab\u7740\u9526\u8863\uff0c\u4f18\u96c5\u5730\u8df3\u821e\u3002"} +{"id": "1006068", "video_name": "6f64c4ec-9809-589f-afec-79fa3b95ee6a", "text": "\u5c0f\u6c14\u6ce1\u548c\u5927\u6c14\u6ce1\u7684\u78b3\u9178\u6c34"} +{"id": "8002525", "video_name": "0d7d6a88-efe6-5120-b85f-28ef0c0de37a", "text": "\u5728\u8fdc\u5904\uff0c\u6751\u5e84\u6c1b\u56f4\u3001\u623f\u5c4b\u548c\u7eff\u8349\u3002"} +{"id": "0003233", "video_name": "39c00746-89ac-5137-81bc-a8791ef2d452", "text": "\u4e00\u5c01\u201c\u7ee7\u7eed\u524d\u884c\u201d\u7684\u4fe1\u4ece\u5929\u800c\u964d\uff0c\u91ca\u653e\u51fa\u5c18\u57c3\u3002"} +{"id": "4002286", "video_name": "cca82185-3d52-5023-acfe-062b0dd87051", "text": "\u4e00\u53ea\u7a7f\u7740\u94e0\u7532\u3001\u624b\u6301\u621f\u7684\u4e24\u8db3\u864e\u6591\u732b\u6b63\u5728\u8d70\u8def\u3002"} +{"id": "0003330", "video_name": "3bc166e6-c252-5cc2-8ff4-8bf764161467", "text": "\u68a6\u5e7b\u6838\u5fc3\u98ce\u683c\u7684\u706b\u8f66\u7ad9\u91cc\uff0c\u7ae5\u8bdd\u98ce\u683c\u7684\u706b\u8f66\uff0c\u68a6\u5e7b\u3001\u8d85\u73b0\u5b9e\u3001\u7565\u5e26\u79bb\u5947\u3001\u8d85\u771f\u5b9e\u3001\u8d85"} +{"id": "6004359", "video_name": "7d0de563-2588-5a4d-baad-31ceb05f86d5", "text": "\u4e24\u53ea\u9e21\u5728\u7eff\u5e55\u5de5\u4f5c\u5ba48K\u4e0a\u6253\u6597\u3002"} +{"id": "0006063", "video_name": "25fc7864-416e-5552-a131-cf4ad5bf90c0", "text": "\u4e00\u4e2a\u6697\u9ed1\u5947\u5e7b\u98ce\u683c\u7684\u573a\u666f\u5c55\u73b0\u4e86\u4e24\u4e2a\u654c\u5bf9\u6d3e\u7cfb\u4e4b\u95f4\u7684\u6743\u529b\u6597\u4e89\u3002"} +{"id": "1003236", "video_name": "3b97097f-a937-50db-9ae2-eeb5456c15a2", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4eba\u7c7b\u514d\u75ab\u7cfb\u7edf\u7684\u89c6\u9891\u3002"} +{"id": "8001430", "video_name": "a8fe69aa-9211-5d64-beac-57466458e169", "text": "\u8fd9\u5ea7\u5e73\u623f\u7684\u540d\u58f0\u5728\u4e8e\u665a\u4e0a\u72ec\u81ea\u524d\u5f80\u975e\u5e38\u5371\u9669\u3002"} +{"id": "2005680", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "\u4e00\u9897\u7531\u7a7a\u6c14\u5236\u6210\u7684\u661f\u661f\u6f02\u6d6e\u5728\u57ce\u5e02\u4e0a\u65b9\u3002"} +{"id": "2005661", "video_name": "54db6d91-b2a7-5226-b884-6805ae530f9f", "text": "\u4e00\u53ea\u8001\u4e4c\u9f9f\uff0c\u80cc\u8d1f\u7740\u53e4\u8001\u7684\u667a\u6167\u3002"} +{"id": "0003568", "video_name": "3fb61209-46da-5e7f-9410-b211c7f54d85", "text": "\u81ea\u7136\u4e2d\u7684\u7ea2\u8272\u5fc3\u5f62 \u4fe1\u606f\uff1a\u6211\u7231\u4f60\uff0ctuli\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001604", "video_name": "9b3c1159-d57f-5110-835a-9c41c7b7cd05", "text": "\u7b80\u5355\u7684\u52a8\u4f5c\u548c\u9002\u5408\u7761\u89c9\u65f6\u89c2\u770b\u7684\u89c6\u9891\u7d20\u6750\u3002"} +{"id": "4003347", "video_name": "374c429c-830c-5c6e-96f4-6c88b2224ebc", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u975e\u6d32\u5973\u738b\u7a7f\u7740\u900f\u89c6\u6bd4\u57fa\u5c3c\uff0c\u5728\u65e5\u843d\u65f6\u5206\u7ad9\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "0005924", "video_name": "234fa721-4d6e-5a73-be7b-a84ff7553866", "text": "\u5728\u591a\u4e91\u7684\u5929\u6c14\u91cc\u770b\u8d77\u6765\u5f88\u903c\u771f\uff0c\u80cc\u666f\u91cc\u6709\u4e00\u4e2a\u5df4\u9ece\u57ce\u5e02\uff0c\u4e09\u4f4d\u7a7f\u7740\u963f\u62c9\u4f2f\u98ce\u683c\u5b87\u822a\u670d"} +{"id": "1006410", "video_name": "756638a4-958d-5fb6-9d05-b594ca8d4ecb", "text": "\u4e00\u4f4d\u5973\u9b3c\uff0c\u5979\u7684\u88d9\u5b50\u5728\u98ce\u4e2d\u7ffb\u98de\uff0c\u5728\u4e00\u591c\u65e0\u6708\u7684\u9634\u68ee\u5893\u5730\u91cc\u98d8\u8361\u3002"} +{"id": "1006748", "video_name": "7b8d9b37-ff2a-52d1-a4e4-6dbcb1b122f2", "text": "\u8036\u7a23\u6b63\u5728\u8010\u5fc3\u5730\u6392\u961f\u7b49\u5019\u4ed6\u7684\u62a4\u7167\u7167\u7247\u3002"} +{"id": "7002621", "video_name": "e8ed7587-42a2-58b7-b33a-44a900621009", "text": "\u7ffb\u8bd1\uff1a\u7eff\u8272\u7684\u773c\u775b\uff0c\u76f8\u5bf9\u4e8e\u8eab\u4f53\u7565\u5927\u7684\u5934\uff0c\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u7ea2\u8272\u56ed\u4e01\u670d\u88c5\uff0c"} +{"id": "1006264", "video_name": "72bd2203-3a60-55e4-a37b-0f26a1ef124b", "text": "\u4e00\u4f4d\u667a\u8005\u50cf\u6885\u5c14\u00b7\u5409\u5e03\u68ee\u4e00\u6837\uff0c\u8096\u50cf\u98ce\u683c\uff0c\u9760\u8fd1\u706f\u5149\u770b\u5411\u6444\u50cf\u673a\uff0c8K\u3002"} +{"id": "3005332", "video_name": "7a9eb398-61ee-590f-a817-eb71c734234d", "text": "\u72d7\u548c\u732b\u5728\u96ea\u5730\u4e0a\u6253\u67b6\u3002"} +{"id": "8002006", "video_name": "34163cca-4178-5c78-9ef3-af510dae93ae", "text": "\u7f8e\u4e3d\u7684\u7011\u5e03\u666f\u8c61\uff0c\u77f3\u5d16\uff0c\u68ee\u6797\u53f6\u7247\uff0c\u795e\u5947\u7684\u3001\u5e7b\u60f3\u7684\u827a\u672f\u3002"} +{"id": "7003219", "video_name": "6057e700-936b-5edf-bc3f-a97f7a4faad6", "text": "\u8fdc\u5904\u770b\u5230\u60ca\u4eba\u7684\u5149\u8292\uff0c4k\u3002"} +{"id": "3003057", "video_name": "fcccc57a-0b03-5ae8-b99d-2e0c8e6dae07", "text": "\u665a\u4e0a\uff0c\u4e00\u540d\u5b66\u751f\u5750\u5728\u684c\u524d\uff0c\u5728\u706f\u5149\u4e0b\u5b66\u4e60\u3002\u684c\u5b50\u4e0a\u5806\u6ee1\u4e86\u4e66\u7c4d\uff0c\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u5979\u7684\u80cc\u5f71\u3002"} +{"id": "2004035", "video_name": "14be11c7-f990-5009-a701-06654582e546", "text": "\u5f53\u5730\u4eba\u8c08\u8bba\u7740\u795e\u79d8\u7684\u666f\u8c61\u548c\u5947\u602a\u7684\u4e8b\u4ef6\uff0c\u4f46\u662f\u4ec0\u4e48\u90fd\u6ca1\u6709\u51c6\u5907\u6211\u9762\u5bf9\u5373\u5c06\u53d1\u751f\u7684\u4e8b\u60c5\u3002"} +{"id": "1005648", "video_name": "67c95bb4-63ab-5070-b7f1-dfdf08aeeab2", "text": "\u4e24\u4e2a\u4eba\u5728\u6253\u7f51\u7403\uff0c\u4e00\u53ea\u9e70\u98de\u4e0b\u6765\u843d\u5728\u4e86\u7f51\u4e0a\u3002"} +{"id": "6003158", "video_name": "c3cb7bc0-2898-5711-b07d-2843a86438be", "text": "\u4e00\u8f86\u5766\u514b\u53d8\u5f62\u6210\u4e00\u652f\u6b65\u67aa\u3002"} +{"id": "3003431", "video_name": "4d24fb1d-cf9c-5105-977d-ecca95e621df", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u5973\u513f\u5728\u4e00\u6761\u5c0f\u8def\u8fb9\u6302\u7740\u3002 \n\nSource sentence: I am interested in learning Chinese. \n\u6211\u5bf9\u5b66\u4e60\u6c49\u8bed\u5f88\u611f\u5174\u8da3\u3002"} +{"id": "7002425", "video_name": "f4d9bedd-9029-526c-a7de-adf5a2e6f132", "text": "\u6444\u50cf\u5934\u5bf9\u7740\u5899\u4e0a\u7684\u65f6\u949f\uff0c\u88ab\u592a\u9633\u7684\u5916\u90e8\u5149\u7167\u4eae\uff0c\u6307\u793a\u5f53\u524d\u5c0f\u65f6\u7684\u7bad\u5934\u50cf\u79d2\u9488\u4e00\u6837\u79fb\u52a8\uff0c\u514b\u670d24"} +{"id": "6003356", "video_name": "e1b765c9-c3c4-59d5-a866-5c82b9e977da", "text": "\u873b\u8713\u671d\u7740\u7ea2\u8272\u6708\u4eae\u98de\u53bb\uff0c\u7fc5\u8180\u5feb\u901f\u632f\u52a8\uff0c\u753b\u9762\u611f\u5f3a\u70c8\uff0c8K\u9ad8\u6e05\uff0c\u5e7f\u89d2"} +{"id": "7003826", "video_name": "fd11ae4f-9d37-5558-9089-b505c2c35326", "text": "\u751f\u6c14\u7684\u7537\u4eba\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc\u7838\u5bb6\u5177\uff0c\u903c\u771f\u7684\u9ad8\u6e05\u753b\u9762\uff0c\u6050\u6016\u3002"} +{"id": "0004501", "video_name": "0a0f5a43-f8ba-5afa-8210-5d32e7cca1d0", "text": "\u57ce\u5e02\u91cc\u6709\u6076\u9b54\u548c\u5438\u8840\u9b3c\u3002"} +{"id": "2005186", "video_name": "4e216bd9-3b8a-56fe-b430-2f687ea7d3c7", "text": "\u795d\u4f60\u751f\u65e5\u5feb\u4e50\uff0c\u8389\u5179\u8d1d\u65af\uff01\u5e0c\u671b\u4f60\u4eca\u5929\u5ea6\u8fc7\u4e86\u4e00\u4e2a\u5145\u6ee1\u5feb\u4e50\uff0c\u6b22\u7b11\u548c\u7231\u7684\u7f8e\u597d\u65e5"} +{"id": "7002958", "video_name": "50465e9f-bb8d-5c5f-848f-7dd6d1fb05c4", "text": "\u5728\u8033\u673a\u7ebf\u7f20\u7ed5\u7684\u60c5\u51b5\u4e0b\uff0c\u4e00\u4e2a\u4eba\u79fb\u52a8\u3002"} +{"id": "1006437", "video_name": "75ddc100-79ef-520d-8788-16f4241a7c88", "text": "\u4e00\u5ea7\u5927\u578b\u5e73\u623f\u7684\u5165\u53e3\u88ab\u8bbe\u7acb\u5728\u300a\u9c7f\u9c7c\u6e38\u620f\u300b\u7cfb\u5217\u4e2d\u3002"} +{"id": "0005615", "video_name": "1e101852-e7cc-5d96-9da2-aa08f3882b65", "text": "\u6c34\u6ef4\u5728\u4e2d\u5fc3\uff0c\u4ece\u4e2d\u5fc3\u53d1\u51fa\u8109\u51b2\u73af\u3002\u9ed1\u8272\u95ea\u5149\u80cc\u666f\uff0c\u4fef\u89c6\u56fe\u3002"} +{"id": "1004053", "video_name": "4b2e3fd0-2c29-504f-ad73-797362a5f7b5", "text": "\u4e00\u4e2a\u7537\u4eba\u5f39\u94a2\u7434\u3002\u6211\u4eec\u4ece\u80cc\u540e\u770b\u5230\u5b83\u3002"} +{"id": "3005862", "video_name": "5c162004-377b-50b1-adf0-75ac09c142e7", "text": "\u5c0f\u5973\u5b69\u6bcf\u5929\u770b\u5230\u8bb8\u591a\u5728\u5b66\u4e60\u7684\u5b69\u5b50\u3002"} +{"id": "0006023", "video_name": "25314d80-939c-5660-b9b3-6c94f8bb8fc8", "text": "\u5e74\u8f7b\u7537\u5b69\u662f\u4e00\u4e2a\u975e\u5e38\u70ed\u8877\u4e8e\u8ffd\u6c42\u6559\u80b2\u7684\u9752\u5c11\u5e74\u3002"} +{"id": "2006696", "video_name": "0474e0d7-f909-5fae-80b3-69dc640976ee", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u7f8e\u4eba\u9c7c\u5728\u592a\u7a7a\u74f6\u4e2d\u8df3\u821e\u3002"} +{"id": "4002758", "video_name": "38a4c5fc-3862-5502-b4de-ce588b8ebcdf", "text": "\u4f60\u662f\u4e00\u4f4d\u7ed3\u5b9e\u800c\u4f18\u96c5\u7684\u7537\u7cbe\u7075\u3002\u4f60\u7684\u8eab\u9ad8\u6bd4\u4f8b\u548c\u8fd0\u52a8\u59ff\u6001\u5c55\u73b0\u4e86\u4f60\u4f5c\u4e3a\u4e00\u540d\u5f13\u7bad\u624b\u7684\u654f\u6377\u548c\u7075\u6d3b"} +{"id": "7004239", "video_name": "2dad7e81-1eae-5548-bd09-2ebc128c8ade", "text": "\u4e00\u682a\u5927\u9ebb\u690d\u7269\u5728\u9633\u53f0\u4e0a\u5728\u65e5\u51fa\u65f6\u9ad8\u901f\u751f\u957f\uff0c\u592a\u9633\u79fb\u52a8\uff0c\u4e91\u6735\u5feb\u901f\u7ecf\u8fc7\uff0c\u771f\u5b9e\u800c\u7535\u5f71\u5316\uff0c16\uff1a9"} +{"id": "4004966", "video_name": "3a8540fd-1bdf-5cb0-982d-45d4c8b2f13a", "text": "\u65c5\u884c\u8005\u6234\u7740\u65f6\u5c1a\u7684\u5927\u5e3d\u5b50\u548c\u8863\u670d\uff0c\u5411\u6444\u50cf\u5934\u8bb2\u8bdd\u3002"} +{"id": "0006606", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "\u5c0f\u5973\u5b69\u7167\u6599\u82b1\u56ed\uff0c\u7ed9\u690d\u7269\u6d47\u6c34\u5e76\u5c0f\u5fc3\u5730\u9664\u8349\uff0c\u5c55\u793a\u5979\u7684\u4e13\u6ce8\u548c\u517b\u80b2\u7cbe\u795e\u3002"} +{"id": "0004004", "video_name": "01726eb1-3239-5611-8687-c265cd3bd4f2", "text": "\u7537\u5b69\u4ece\u9633\u53f0\u89c2\u770b\u591c\u666f\u3002"} +{"id": "1003235", "video_name": "3b8e4ae6-949e-581b-84f3-f8a1227d47fb", "text": "\u4e00\u53ea\u80a5\u80d6\u7684\u9cb8\u9c7c\u8df3\u8fc7\u4e00\u5757\u6709\u5f69\u8679\u80cc\u666f\u7684\u5ca9\u77f3\uff0c\u5177\u6709\u7535\u5f71\u611f\uff0c\u5149\u7ebf\u7167\u5c04\uff0c2:1"} +{"id": "1006291", "video_name": "73352971-fa2d-5c56-a68a-47a858709778", "text": "AI\u8bbe\u8ba1\u5e08\u5e2e\u52a9\u5e7c\u513f\u5728\u753b\u5e03\u4e0a\u4f5c\u753b\u3002"} +{"id": "1003974", "video_name": "496831d3-9c8f-5d9c-9369-614edc2477cb", "text": "\u7f8e\u56fd\u6218\u524d\u7684\u539f\u4f4f\u6c11\u821e\u8e48\u548c\u5370\u7b2c\u5b89\u4eba\u7684\u76db\u4f1a"} +{"id": "2004834", "video_name": "5e8924bc-3b0e-55c3-a1f1-873c4341ff69", "text": "\u5236\u4f5c\u4e00\u4e2a1\u5206\u949f\u7684\u300a\u8fc8\u5c14\u65af\u00b7\u83ab\u62c9\u96f7\u65af\u300b\u9884\u544a\u7247\u3002"} +{"id": "1004800", "video_name": "58b82de6-434d-5822-af15-092cc3d8c7eb", "text": "\u5e74\u4ee3\u7684\u897f\u73ed\u7259\u7687\u5bab\u623f\u95f4\u5185"} +{"id": "4003085", "video_name": "6b90f00d-3aeb-5198-89c1-f7dce76b409a", "text": "25\u5c81\u7684\u7537\u5b50\u5750\u5728\u4e00\u95f4\u53ea\u6709\u4e00\u76cf\u706f\u7684\u623f\u95f4\u5730\u677f\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "0004046", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "\u6218\u952440k\u7684\u7535\u5f71\u9884\u544a\u7247\u3001\u89d2\u8272\u8bbe\u8ba1\u3001\u52a8\u4f5c\u3002"} +{"id": "2006721", "video_name": "f12ee007-5666-5ccf-8b33-4b66d88de544", "text": "\u63cf\u7ed8\u7b2c\u4e00\u6279\u571f\u8033\u5176\u4eba\u8fc1\u5f80\u963f\u5c14\u6cf0\u5730\u533a\uff0c\u5c55\u793a\u4ed6\u4eec\u7cbe\u6e5b\u7684\u94c1\u5de5\u827a\u548c\u8eab\u4efd\u7684\u786e\u7acb\u3002"} +{"id": "3006460", "video_name": "9d1cbfae-6128-5418-8745-10bca5012922", "text": "\u59dc\u997c\u5c4b\u3001\u666f\u89c2\u6a21\u578b\u3001\u805a\u7126\u3001\u767d\u8272\u80cc\u666f\u3001\u5410\u53f8\u3001\u8106\u8106\u9ea6\u7247\u3002"} +{"id": "7004037", "video_name": "a7f3de84-7c6f-5969-a240-382ce27bb79d", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u7ea2\u8272\u6cf0\u8fea\u718a\uff0c\u5e26\u7740\u53ef\u6015\u7684\u773c\u775b\u3002"} +{"id": "1004939", "video_name": "5b4e21d1-a37b-5ee9-b4e2-c3a43cdce715", "text": "\u5982\u4f55\u627e\u5230\u95ee\u9898\u7684\u6839\u6e90\u3002"} +{"id": "0005686", "video_name": "1f5ef116-90bd-5fe6-b867-6e3c0456e21a", "text": "\u7f8e\u5f0f\u4f20\u7edf\u7eb9\u8eab\uff0c\u4e00\u8fb9\u662f\u5973\u4eba\u9c7c\uff0c\u53e6\u4e00\u8fb9\u662f\u7537\u4eba\u9c7c\u7684\u526a\u5200\u8239\u3002"} +{"id": "7002813", "video_name": "fa8c9c4c-7e12-5c67-9d02-9a86a697f9e3", "text": "\u82b1\u513f\u5728\u98ce\u4e2d\u6447\u66f3\u3002\u6d77\u6ee9\u4e0a\u7684\u65e5\u843d\u3002"} +{"id": "0005538", "video_name": "1c7efb23-af7c-5b59-91bc-0f099d434e80", "text": "\u5728\u5927\u8c61\u95e8\u6751\u5e84\u9644\u8fd1\uff0c\u4ed6\u4eec\u5728\u665a\u4e0a\u8d70\u8fd1\u4e86\u95f9\u9b3c\u7684\u623f\u5b50\u3002Rajiv\u611f\u5230\u7126\u8651\uff0c\u4f46Bhavesh\u9f13"} +{"id": "0004425", "video_name": "08b03807-e1d6-586f-a9ec-2c99ec4e945b", "text": "\u5929\u7a7a\u4e2d\u98d8\u843d\u4e0b\u5929\u4f7f\u7fc5\u8180\u5fae\u5999\u7684\u6697\u793a\u3002"} +{"id": "3006484", "video_name": "b27cf484-06f8-59d9-b3e1-4fb9f89c0d3e", "text": "\u84dd\u8272\u7684\u6d77\u6ee9\uff0c\u767d\u8272\u7684\u6c99\u6ee9\uff0c\u9e73\u9e1f\u5728\u98de\u7fd4\u3002"} +{"id": "0004181", "video_name": "04a89ebb-e5ff-5119-8969-b321ee5ef561", "text": "\u8d85\u73b0\u5b9e\u7684\u4e16\u754c\uff0c\u7eff\u8272\uff0c\u7834\u70c2\u4e0d\u582a\uff0c\u6ce5\u571f\u5473\uff0c\u6866\u6811\u76ae\u3002\u6d88\u606f\uff1a\u4f60\u597d\u3002"} +{"id": "1004843", "video_name": "5983e9a0-c3e4-557b-9a02-f5d54005d18d", "text": "\u9ad8\u5e7b\u60f3\u82f1\u96c4\u7ec4\u8fdb\u5165\u795e\u79d8\u56fe\u4e66\u9986\u3002Neg Morphing\uff0cmotion 2\u3002\u7535\u5f71\u822c\u7684\u3002\u53f2\u8bd7\u822c\u7684\u5149\u8292\u3002"} +{"id": "2005783", "video_name": "7dcca641-e736-5d75-b275-321542c0f054", "text": "\u9177\u70ab\u7684\u79d1\u6280\u611f\uff0c\u672a\u6765\u4e3b\u4e49\u548c\u52a8\u611f\u3002"} +{"id": "8001473", "video_name": "f2535bad-c3a4-5ef9-9c9f-497543dcbf6e", "text": "\u4e00\u8f86\u7ea2\u8272\u6cd5\u62c9\u5229\u5728\u4f26\u6566\u8857\u5934\u649e\u5230\u4e00\u53ea\u732b\u3002"} +{"id": "2004416", "video_name": "056b55c0-1986-55d5-9888-d1b041bc2554", "text": "\u5f53\u66b4\u98ce\u96e8\u7ec8\u4e8e\u8fc7\u53bb\u65f6\uff0c\u9e1f\u5988\u5988\u548c\u9e1f\u7238\u7238\u56de\u6765\u4e86\uff0c\u5f88\u6b23\u6170\u5730\u53d1\u73b0\u4ed6\u4eec\u7684\u5c0f"} +{"id": "2003749", "video_name": "dbd14172-22c7-527e-8763-160ae5088299", "text": "\u5979\u6709\u7740\u957f\u957f\u7684\u5934\u53d1\uff0c\u89e6\u624b\u822c\u67d4\u6ed1\u5982\u6d77\u6c34\u3002\u5979\u4eec\u654f\u611f\u7684\u89e6\u987b\u4e0d\u4ec5\u53ef\u4ee5\u50cf\u624b\u4e00\u6837\u8f7b\u677e\u5730\u63a7"} +{"id": "5001535", "video_name": "9f8acd77-a3c0-5b95-87dc-0a2975fa44c4", "text": "\u6df1\u6d77\u4e2d\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u9ca8\u9c7c\u6b63\u5728\u653b\u51fb\u88ab\u56f0\u5728\u7b3c\u5b50\u91cc\u7684\u6f5c\u6c34\u5458\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0004658", "video_name": "0cc4e4a1-5868-526d-8cae-e3b814708acf", "text": "\u4e00\u5e45\u7537\u4eba\u54ed\u6ce3\u65f6\u548c\u4ed6\u7684\u72d7\u5728\u4e00\u8d77\u7684\u4e8c\u7ef4\u827a\u672f\u4f5c\u54c1\u3002"} +{"id": "4002986", "video_name": "2a594665-9e1a-5f34-a03c-2c4e06ccb5ad", "text": "\u4e00\u540d\u7a7f\u7740\u5b9e\u9a8c\u5ba4\u5927\u8863\u7684\u5973\u58eb\u6b63\u5728\u591c\u665a\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\u3002\u8fd1\u666f\u62cd\u6444\u3002"} +{"id": "2007757", "video_name": "fea30552-14b3-58c3-97b7-c73752f708ee", "text": "\u4e00\u500b\u5ee3\u89d2\u93e1\u982d\u62cd\u651d\u51fa\u4e00\u5ea7\u7a7a\u4e2d\u57ce\u5821\uff0c\u985e\u4f3c\u8fea\u58eb\u5c3c\u98a8\u683c\uff0c\u5929\u7a7a\u4e2d\u6709\u6c7d\u8eca\u548c\u6c23"} +{"id": "3005241", "video_name": "467d9751-11ff-5f0d-acd2-a238026a93e9", "text": "\u6c7d\u8f66\u8f6e\u5b50\u4ee5\u6bcf\u5c0f\u65f6300\u82f1\u91cc\u7684\u901f\u5ea6\u65cb\u8f6c\u3002"} +{"id": "8002709", "video_name": "f9fe6e46-bdab-5bed-9053-0c288c442c73", "text": "\u674e\u82b3\uff0c\u4e00\u4f4d\u5973\u592a\u6781\u3001\u6b66\u672f\u3001\u6742\u6280\u523a\u5ba2\u3002\u79d1\u5e7b\u3002\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "8001378", "video_name": "fb909a61-1af6-5e6d-868b-b4fd4ca0d900", "text": "\u57ce\u5e02\u8857\u9053\u4e0a\u6709\u884c\u4eba\u5728\u4eba\u884c\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "1004544", "video_name": "5461c7c6-f46b-5cbd-8f65-ce2a19d04b6d", "text": "\u5728\u6f2b\u753b\u822c\u7684\u7c89\u8272\u4e91\u5f69\u3001\u6d41\u661f\u548c\u884c\u661f\u4e0a\u65b9\u98de\u884c\uff0c\u6301\u7eed10\u79d2\u949f\u3002"} +{"id": "4002481", "video_name": "52c484de-dddb-5667-9b43-428be94ea765", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u6d77\u6d0b\u89c6\u9891\uff0c\u851a\u84dd\u7684\u5929\u7a7a"} +{"id": "8001701", "video_name": "d6833da2-e8c6-5e06-ad8e-093336797a28", "text": "\u87ba\u65cb\u4e38\u548c\u5361\u7f8e\u54c8\u7f8e\u54c8\u76f8\u649e\uff0c\u521b\u9020\u51fa\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u80fd\u91cf\u6ce2\u3002"} +{"id": "1006211", "video_name": "71e4e27d-00ed-536e-8102-3b2a4b88569d", "text": "\u4e00\u6bb58K\u89c6\u9891\u4e2d\uff0c\u4e00\u4e2a\u4e2d\u56fd\u7537\u5b50\u7ad9\u5728\u9ad8\u697c\u4e0a\uff0c\u6211\u770b\u5230\u5915\u9633\u7f13\u7f13\u6c89\u6ca1\u5728\u5c71\u8109\u4e4b\u95f4\uff0c\u6f8e\u6e43\u7684\u9ec4\u6cb3"} +{"id": "2004259", "video_name": "232cf26b-54b2-54bc-aaa7-a815db510401", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u4eba\u6b63\u5728\u7ec3\u4e60\u6b66\u672f\u3002"} +{"id": "1005041", "video_name": "5d30e3e5-2e6d-5d3f-9c85-685eb7918bbf", "text": "\u521b\u9020\u4e00\u4e2a\u9ed1\u767d\u95f9\u949f\u3002"} +{"id": "7002717", "video_name": "2d77313f-523b-5383-894b-edb82aab627b", "text": "\u53e4\u4ee3\u5e9f\u589f\u4e0a\u95ea\u70c1\u7684\u6708\u5149\u573a\u666f\uff0c8k 4d\u3002"} +{"id": "7002890", "video_name": "788c38e3-4d9b-55a0-90ea-c85ec961906d", "text": "\u4e00\u5806\u4f73\u5f97\u4e50\u74f6\u5b50\u7ec4\u6210\u4e86\u8fd9\u5f20\u56fe\u50cf\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003526", "video_name": "822b46e0-071a-5678-a799-fa1da3ac1a06", "text": "\u5de5\u5382\u4e2d\u4f7f\u7528\u7684\u673a\u5668\u89c6\u89c9\u3002"} +{"id": "3006872", "video_name": "1157d399-f11e-5e6d-b52f-671a2fcad28c", "text": "30\u5f20\u5361\u7247\uff0c\u6bcf\u5f20\u5361\u7247\u4e0a\u6709\u4e00\u4e2a\u9ed1\u8272\u6570\u5b57\uff0c\u4ece1\u523030\uff0c\u6563\u843d\u5728\u6728\u5730\u677f\u4e0a\uff0c\u6ca1\u6709\u79fb\u52a8\uff0c\u5728\u4e00\u4e2a\u5927\u7684\u5730\u677f\u5708\u5185\u3002"} +{"id": "8002422", "video_name": "43733f8d-0793-54aa-bcc0-2ed85d892cc4", "text": "\u751f\u6210\u4e00\u4e2a\u573a\u666f\uff0c\u62c9\u809a\uff0c\u8fd9\u4f4d\u8d2b\u7a77\u7684\u4eba\u529b\u8f66\u592b\u5728\u7b49\u5f85\u4e58\u5ba2\u65f6\u5f00\u5fc3\u5730\u5fae\u7b11\u3002"} +{"id": "2005965", "video_name": "16816efb-c99a-52b3-a2a7-e2bb9a4ae742", "text": "\u6728\u677f\u3001\u6728\u6761\u548c\u6728\u68cd\u5728\u7a7a\u4e2d\u76f8\u4e92\u4ea4\u9519\uff0c\u5f62\u6210\u4e00\u9053\u7531\u6728\u5934\u548c\u77f3\u5934\u7ec4\u6210\u7684\u5899\u3002\u6d77\u5e95\uff0c\u6df1\u6d77\u3002"} +{"id": "3006342", "video_name": "0e8c92be-c008-567d-bf1b-dfda16735dad", "text": "\u8239\u957f\u6770\u514b\u00b7\u65af\u6d3e\u7f57\u767b\u4e0a\u9ed1\u73cd\u73e0\u53f7\u7684\u8230\u677f\u4e0a\u3002"} +{"id": "4003220", "video_name": "f48ef805-e0e8-52e5-8810-266d334ed25d", "text": "\u4ecb\u7ecd\u7531\u72ee\u738b\u7edf\u6cbb\u7684\u96c4\u4f1f\u738b\u56fd\u3002 \n\nSource sentence: The book tells the story of a young girl's journey to self-discovery. \n\n\u8fd9\u672c\u4e66\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u5e74"} +{"id": "3003581", "video_name": "2eef9486-f4f5-541d-bd91-98028bb909ed", "text": "\u672b\u65e5\uff0c\u6838\u5f39\uff0c\u70df\u96fe\uff0c\u79fb\u52a8\u7684\u4e91\u5f69\uff0c\u9ed1\u6697\uff0c\u65e7\u7684\u5f71\u50cf\uff0c\u903c\u771f\u7684\u3002"} +{"id": "2004964", "video_name": "328bc821-6a9b-5c32-9033-aa83db12f7f3", "text": "\u5728\u6d77\u6d0b\u4e2d\u627e\u5230\u4e00\u6761\u6709\u6a59\u8272\u6761\u7eb9\u7684\u9c7c\u3002"} +{"id": "2007062", "video_name": "d6ee130f-25bc-5a28-9f01-ee8334e8a67a", "text": "\u609f\u98ef\u6b63\u5728\u84c4\u529b\u7279\u6b8a\u5149\u675f\u70ae\u3002"} +{"id": "5001983", "video_name": "1449f3ce-5730-53af-9238-56e9ffff4469", "text": "\u52a8\u753b\uff1a\u5b69\u5b50\u62ff\u7740\u4e66\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006695", "video_name": "7aae1a44-4f98-51fb-8683-a0751581e614", "text": "\u6709\u98ce\u7684\u5c0f\u9547\uff0c\u77ed\u8def\uff0c\u65e5\u843d\u3002"} +{"id": "8002780", "video_name": "eea71f31-8e39-5776-b8d4-63f4289130ba", "text": "\u827a\u672f\u5973\u4eba\u5728\u9ea6\u7530\u91cc\u5c16\u53eb\u6d41\u8840\u3002"} +{"id": "2006268", "video_name": "44cabc41-20ce-5ca5-9178-56cb71cc9a40", "text": "\u7d20\u76ae\u9769\u80cc\u666f\u7684\u624b\u673a\u653e\u5728\u4e0a\u9762\u3002"} +{"id": "4002808", "video_name": "cb59d73c-8999-5c54-a46e-4377312f9428", "text": "\u6d77\u8fb9\u7684\u65e5\u843d\uff0c\u4e00\u5bf9\u60c5\u4fa3\u4eb2\u543b\u7684\u903c\u771f\u8d85\u9ad8\u6e05\u7ec6\u8282\uff0cAR 16.9\u3002"} +{"id": "4002109", "video_name": "0b4c65bd-31fe-55e6-883f-9c1457ca3279", "text": "\u6211\u60f3\u521b\u9020\u7c7b\u4f3c\u4e8e\u516c\u725b\u6218\u58eb\u7cbe\u795e\u7684\u8d62\u5f97\u4e16\u754c\u8d85\u7ea7\u7535\u5f71\u9ad8\u6e05\u89c6\u89c9\u7684\u6fc0\u52b1\u7075\u611f\u8d854K "} +{"id": "1004631", "video_name": "5622e385-3ade-5e7d-be00-38835d696251", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u7ad9\u5728\u591c\u665a\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u5728\u96e8\u4e2d\u770b\u7740\u53e6\u4e00\u4e2a\u9500\u552e\u673a\u5668\u4eba\u5728\u5e97\u9762\u5916\u8bd5\u56fe\u8bf4\u670d\u8def\u4eba\u8fdb\u5165\u5e97\u5185\u4f7f\u7528\u4ed6\u4eec"} +{"id": "1003336", "video_name": "3d66c4a1-7dda-5727-9073-69312b327ccd", "text": "\u673a\u68b0\u871c\u8702\u5728\u4ff1\u4e50\u90e8\u72c2\u6b22\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u4f60\u80fd\u63a8\u8350\u9644\u8fd1\u6709\u597d\u7684\u4e2d"} +{"id": "2004610", "video_name": "7902afca-1187-5e8e-ab74-93b52cb44545", "text": "\u673a\u5668\u4eba\u8e22\u8e0f\u821e\u8005\u5728\u9910\u5385\u9152\u5427\u821e\u53f0\u4e0a\u8868\u6f14\uff0c\u4ee5\u590d\u53e4\u67e5\u5c14\u65af\u987f\u98ce\u683c\u821e\u8e48\u79fb"} +{"id": "3005748", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "\u4e00\u4f4d\u4ea4\u6613\u4e13\u5bb6\u5750\u5728\u6e38\u8247\u4e0a\uff0c\u8eab\u8fb9\u6709\u4e24\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u76849:16\u89c6\u9891\u3002"} +{"id": "3003882", "video_name": "878195e2-4c77-5581-9ddb-c2a7ad1ccac7", "text": "\u5728\u4e00\u68f5\u6811\u4e2d\u7684\u68ee\u6797\u91cc\uff0c\u5199\u7740\u4e00\u4e9b\u5492\u8bed\u3002"} +{"id": "2005797", "video_name": "2d606778-7003-5549-80fd-ccf92bd7a712", "text": "VHS\u9897\u7c92\u72b6\u768490\u5e74\u4ee3\u624b\u6301\u5f0f\u89c6\u89d2\uff0c\u5c55\u73b0\u6708\u4eae\u5012\u5f71\u5728\u6e56\u9762\u4e0a\uff0c\u6c34\u9762\u4e0a\u6ce2\u7eb9\u8d77\u4f0f\uff0c\u6bcf\u79d2\u5e27\u657024\uff0c"} +{"id": "7002510", "video_name": "6d21623f-81df-57a3-ba6a-7e8bfd6f93b3", "text": "\u8718\u86db\u4fa0\u548c\u8718\u86db\u5973\u5728\u7ebd\u7ea6\u9ad8\u4e2d\u516c\u56ed\u7a7f\u7740\u91d1\u8272\u548c\u767d\u8272\u5957\u88c5\u4e92\u76f8\u63a5\u543b\u3002"} +{"id": "2007281", "video_name": "301dc944-d217-522f-81c4-6fd1c15859bb", "text": "\u661f\u7403\u5927\u6218\u7684\u661f\u9645\u9a71\u9010\u8230\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4003369", "video_name": "8062bd23-6241-5424-ab38-59ed771ca431", "text": "\u5f88\u591a\u5973\u5b69\u5b50\u770b\u8d77\u6765\u957f\u5f97\u90fd\u4e00\u6837\u3002"} +{"id": "0003864", "video_name": "44d3656b-191c-5b2d-a406-0c95ac0677a3", "text": "\u4e00\u540d\u7537\u5b50\u4ece\u6c7d\u8f66\u91cc\u8d70\u51fa\u6765\uff0c\u7ad9\u5728\u8def\u4e0a\u3002"} +{"id": "1003039", "video_name": "37c397ff-724b-501f-9175-df9ca0380175", "text": "\u6c34\u8fdb\u5165\u4eba\u4f53\u7cfb\u7edf\u7684\u6d41\u52a8\u59cb\u4e8e\u53e3\u8154\uff0c\u7136\u540e\u8fdb\u5165\u80c3\u90e8\u30023D\u52a8\u753b\uff0c4K\u3002"} +{"id": "5001730", "video_name": "a1be608f-f138-5ab8-9963-545dbea33ff0", "text": "\u5973\u4eba\u7ad9\u5728\u661f\u9645\u98de\u8239\u7684\u7a97\u8fb9\uff0c\u671b\u5411\u5730\u7403\u3002"} +{"id": "1005256", "video_name": "60ac20b6-d831-5e41-83cd-666cad523e2a", "text": "\u8424\u706b\u866b\u6cb3\u770b\u8d77\u6765\u50cf\u5de8\u5927\u7684\u6709\u8da3\u871c\u8702\uff0c\u4e3a\u5b58\u5728\u7684\u7f6a\u6076\u4e4b\u706b\u7684\u821e\u8e48\u800c\u611f\u5230\u6b23\u559c\u82e5"} +{"id": "2003043", "video_name": "a5a58ada-148e-543e-b72c-15353180f1cf", "text": "\u6709\u68d5\u8272\u982d\u9aee\u7684\u5973\u4eba\u8f49\u8eab\u3002"} +{"id": "0005687", "video_name": "1f695ebc-2a6f-569b-8dc3-ddd00f0cc822", "text": "\u4e00\u500b\u5973\u5b69\u5750\u5728\u5efa\u7bc9\u7269\u7684\u5c4b\u9802\u4e0a\u3002"} +{"id": "2006224", "video_name": "b6fc04c7-f8c8-5df0-860f-4c834dad91fd", "text": "\u4eba\u4eec\u5728\u52a8\u6f2b\u98ce\u683c\u7684\u5065\u8eab\u623f\u91cc\u8fdb\u884c\u953b\u70bc\u3002"} +{"id": "2003768", "video_name": "c22516fa-c861-5303-b387-d67d66267126", "text": "\u4e00\u53ea\u8001\u864e\u8eba\u5728\u8349\u5730\u4e0a\u5f20\u5f00\u5634\u5df4\u3002"} +{"id": "8001196", "video_name": "20cbfca5-10fd-5e2e-93ce-319813a59b2c", "text": "\u5251\u6865\u6cb3\u7554\u7684\u4e00\u4e2a\u5bc2\u9759\u96fe\u8499\u8499\u7684\u591c\u665a\u3002"} +{"id": "1006569", "video_name": "785f1529-694c-5751-9697-e65cd175627a", "text": "\u5728\u53a8\u623f\u91cc\uff0c\u6709\u8150\u70c2\u7684\u86e4\u870a\u6f02\u6d6e\u5728\u9505\u91cc\u3002"} +{"id": "3005417", "video_name": "69587493-cf13-5e3c-80de-0f979e997b6a", "text": "\u4e00\u4f4d\u4e9a\u9a6c\u900a\u5973\u6218\u58eb\u5728\u9065\u8fdc\u661f\u7403\u7684\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u5979\u7684\u8109\u8f6e\u95ea\u8000\u7740\u660e\u4eae\u7684\u5149"} +{"id": "2003572", "video_name": "2e43f632-541f-520c-a595-5ec93fe1ae5c", "text": "\u4fef\u89c6\u5927\u6d77\u4e2d\u95f4\u7684\u5c0f\u5c9b\uff0c\u6726\u80e7\u7684\u68ee\u6797\u5c71\u4e18\uff0c\u77f3\u8d28\u5d0e\u5c96\u6d77\u5cb8\u7ebf\uff0c\u795e\u79d8\u7684\u4e91\u6735\uff0c\u7535"} +{"id": "1006345", "video_name": "7428bea1-7179-57dd-9d8c-43e1529c1028", "text": "\u4e00\u500b\u5973\u4eba\u7368\u81ea\u5728\u6d3e\u5c0d\u4e0a\uff0c\u76f4\u8996\u93e1\u982d\uff0c\u88ab\u5979\u5feb\u6a02\u7684\u670b\u53cb\u5305\u570d\uff0c\u4e26\u5728ArtStation\u4e0a\u6d41\u884c"} +{"id": "3005305", "video_name": "c6d0b90a-62ad-5a45-ae6a-4bec7ab40564", "text": "\u7eb9\u8eab\u6829\u6829\u5982\u751f\uff0c4K\uff0c16\uff1a9\u5bbd\u9ad8\u6bd4\u3002"} +{"id": "3005584", "video_name": "20700eb4-925b-5e5a-b9c8-6d05d15a9016", "text": "\u4e00\u4e2a\u5173\u4e8e\u602a\u7269\u521b\u9020\u8005\uff0c\u4f7f\u7528Motion 4\u548cUnreal Engine 5\uff0c\u6e32\u67d3\u6548\u679c\u5f88\u597d\u7684\u5546\u4e1a\u5e7f\u544a\u3002"} +{"id": "3003920", "video_name": "174f374b-70a9-5710-b5ee-7c2fbf1d5fa1", "text": "\u6c7d\u8f66\u4fa6\u5bdf\u706f\uff0c\u6709\u4e0d\u540c\u989c\u8272\u548c\u5927\u5c0f\uff0c\u7167\u4eae\u7740\u3002"} +{"id": "2003313", "video_name": "9d7aefab-3686-53dd-91dd-4d7ad0efd28c", "text": "\u5f53\u592a\u9633\u5347\u8d77\u65f6\uff0c\u6751\u6c11\u4eec\u5728\u5bb6\u95e8\u5916\u53d1\u73b0\u4e86\u795e\u5947\u7684\u793c\u7269\u3002 \n\nSource sentence: She is a talented musician, with a voice that could move mountains. \n\n\u5979"} +{"id": "6002463", "video_name": "6902e751-9abd-591f-a5a8-03551e08650f", "text": "\u8df3\u821e\u7684\u7a3b\u8349\u4eba\uff0c\u5728\u7530\u91ce\u91cc\uff0c\u60ca\u4eba\u7684\uff0c\u9ad8\u6e05\uff0c\u771f\u5b9e"} +{"id": "8001278", "video_name": "d159e59a-16a3-5fe4-8f40-bfdd84ad8d86", "text": "\u5728\u513f\u7ae5\u516c\u56ed\u7684\u6811\u4e0b\uff0c\u6709\u4e00\u4e2a\u50cf\u9b3c\u4e00\u6837\u7684\u9ed1\u5f71\u5728\u767d\u5929\u7ad9\u7740\u3002"} +{"id": "8001461", "video_name": "5269bbb8-9971-5452-b270-ca36f1a2e22f", "text": "\u88c5\u6ee1\u5c0f\u7cbe\u7075\u548c\u7caa\u80a5\u7684\u7f50\u5b50\u5728\u6643\u52a8\u3002"} +{"id": "3003111", "video_name": "b6a975bb-8bcf-5a00-b678-5f8bb154e5f6", "text": "\u4e9a\u7279\u5170\u8482\u65af\u57ce\uff0c\u4f4d\u4e8e\u6d77\u5e95\uff0c\u6709\u9c7c\u513f\u3002"} +{"id": "7004680", "video_name": "67719cb9-5921-5224-abe9-e8bc09566474", "text": "\u7528\u6dcb\u6d74\u7cfb\u7edf\u7684\u56fe\u50cf\u6765\u521b\u9020\u4e00\u4e2a\u6f02\u4eae\u7684\u6d74\u5ba4\u5f62\u8c61\u3002"} +{"id": "8003211", "video_name": "c3d4f2f5-c4fe-59a9-bb63-ae2ee71e13c7", "text": "\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\uff0c\u72d7\u548c\u732b\u4e4b\u95f4\u8fdb\u884c\u4e86\u67aa\u6218\u3002"} +{"id": "1006034", "video_name": "6ed57362-1380-5f1f-89c5-9e8badd0e689", "text": "\u73b0\u4ee3\u98ce\u683c\u7684\u7b49\u8ddd\u79bb\u6df7\u5408\u56683D\u6a21\u578b\uff0c\u94a2\u7070\u8272\u548c\u8349\u7eff\u8272\u7684\u4f53\u80b2\u573a\uff0cMMORPG\u7ed3\u6784\uff0c\u96d5\u523b\u7ec6\u8282"} +{"id": "2004208", "video_name": "edbd1120-ecf4-563c-a793-c3959e791761", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u72d7\u5728\u9152\u5427\u6253\u6251\u514b\uff0c\u5efa\u7b51\u7167\u660e\u3002"} +{"id": "8002653", "video_name": "c20be774-db8a-5260-8f54-2fa09a1b5a76", "text": "\u90a3\u4e2a\u7537\u5b69\u88ab\u4e00\u4e2a\u5973\u5b69\u629b\u5f03\u4e86\uff0c\u4ed6\u5728\u54ed\u6ce3\u3002"} +{"id": "3006410", "video_name": "c4391590-d170-55a8-813e-da723dd70e63", "text": "\u5c0f\u7ea2\u8272\u706b\u8f66\u7a7f\u8fc7\u73b0\u4ee3\u3001\u672a\u6765\u4e3b\u4e49\u7684\u666f\u89c2\u3002"} +{"id": "2003531", "video_name": "9b99d74c-bfca-5efc-b5ea-427681fedfe4", "text": "\u4e00\u4e2a3D\u7684\u5fc3\u810f\u4ee5\u6162\u52a8\u4f5c\u7834\u788e\uff0c\u6700\u7ec8\u7740\u706b\u3002"} +{"id": "5001864", "video_name": "22492fbf-dbbc-5b7f-9407-b2f252d5fa28", "text": "\u79cb\u5929\u843d\u53f6\u3002"} +{"id": "0003710", "video_name": "422e3691-6a28-5644-ae4f-f69c21155ea3", "text": "\u82b1\u56ed\u91cc\u5f00\u653e\u7684\u73ab\u7470\uff0c\u8272\u5f69\u660e\u4eae\u7684\u6843\u7ea2\u8272\uff0c\u7f8e\u4e3d\u8ff7\u4eba\uff0c\u62e5\u62b1\u7740\u4e0d\u5b8c\u7f8e\u3002"} +{"id": "3004841", "video_name": "cb1ac668-84a8-509c-8e61-530391d74432", "text": "\u8fa3\u5473\u5473\u564c\u725b\u8089\u9762 \u4fe1\u606f\uff1a\u5473\u564c\u725b\u8089\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "3006019", "video_name": "0aecc80e-324b-5d2e-8011-8eb96f4a61c3", "text": "\u8fc8\u963f\u5bc6\u6d77\u8c5a\u961f\u5fbd\u6807\u4f5c\u4e3a\u5b87\u5b99\u4e2d\u5fc3\uff0c\u9010\u4e00\u71c3\u70e731\u9897\u884c\u661f\u3002"} +{"id": "2005062", "video_name": "755945b0-34f2-51f5-8b9a-5fa882967ed2", "text": "\u5728\u8857\u4e0a\u8d70\u8def\uff0c\u540c\u65f6\u559d\u9152\u3002"} +{"id": "5001225", "video_name": "f2081f79-65c4-563b-a91f-6a7e5e080014", "text": "\u52a0\u62ff\u5927\u7684\u706b\u7bad\u8054\u76df\u4f53\u80b2\u573a\u3002"} +{"id": "2006508", "video_name": "b6f65d0c-d504-5f17-aa36-5c4b8f212b20", "text": "\u8fc8\u8fbe\u65af\u4e4b\u62f3\u5728\u9ec4\u91d1\u623f\u95f4\u65cb\u8f6c\u3002"} +{"id": "4003792", "video_name": "2be151b0-759d-51e8-9900-8267b5f5ad26", "text": "\u5728\u8857\u4e0a\uff0c\u4e00\u4f4d\u7a7f\u7740\u767d\u8272\u957f\u88d9\u7684\u957f\u53d1\u5973\u5b69\u5728\u98ce\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "4002106", "video_name": "7621452e-3126-5ed4-b4a6-1c0c17526ead", "text": "\u6c7d\u8f66\u7740\u706b\u7684\u7535\u5f71\u822c\u89c6\u9891\uff0c\u591c\u665a\u3002"} +{"id": "6004693", "video_name": "a4bc8bac-ee7b-5493-8d8d-62ffef130266", "text": "\u95f9\u9b3c\u7684\u65c5\u9986\uff0c\u8d64\u88f8\u7684\u5973\u4eba\u51fa\u73b0\uff0c\u7ea2\u8272\u7684\u5929\u7a7a\u3002"} +{"id": "1006075", "video_name": "6f73d2a8-36b1-59af-a244-ea502d9ca921", "text": "\u53d1\u7535\u673a\u4fee\u597d\u4e86\uff0c\u884c\u661f\u56e2\u7ed3\u8d77\u6765\uff0c\u5b87\u5b99\u4e2d\u7efd\u653e\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u3002"} +{"id": "8002658", "video_name": "99ed0772-e6f7-5ab4-aed1-862f0e53565e", "text": "\u5c0f\u732b\u8eb2\u5728\u9ad8\u9ad8\u7684\u67f3\u6811\u65c1\uff0c\u7528\u654f\u6377\u7684\u722a\u5b50\u8ffd\u9010\u7740\u98de\u821e\u7684\u8774\u8776\u3002\u5b83\u8df3"} +{"id": "7002259", "video_name": "8e7b2a25-ce29-5bc4-b10f-d067aaa352c9", "text": "\u6d77\u6d6a\u5728\u6d77\u6ee9\u4e0a\u51b0\u5c71\u4e0a\u7834\u788e\u3002"} +{"id": "0006605", "video_name": "2f6dd25b-65a1-5fd6-bac6-279f93076506", "text": "\u4e30\u7530\u9a6c\u838e\u8fbe\u5728\u57ce\u5e02\u91cc\u884c\u9a76\u3002"} +{"id": "1003850", "video_name": "46fac9b0-076c-5a94-a307-9451d8fd1ef7", "text": "\u8718\u86db\u4ece\u4e00\u4e2a\u6807\u5fd7\u4e0a\u722c\u51fa\u6765\uff0c\u6807\u5fd7\u4e0a\u5199\u7740\u201c\u8718\u86db\u6df7\u6c8c\u201d\uff0c\u7ec6\u7ebf\u753b\uff0c\u827a\u672f\u54c1\uff0c\u9ad8\u6e05\uff0c\u52a8\u753b"} +{"id": "0003218", "video_name": "39786d20-db91-5640-8462-7576bbece514", "text": "\u89c6\u9891\u6bd4\u4f8b\u4e3a9:16\uff0c\u9700\u8981\u9ad8\u6e05\u753b\u8d28\uff0c\u8bb2\u8ff0\u6545\u4e8b\u7684\u4e2d\u56fd\u8001\u4eba\u7684\u60ca\u4eba\u89c6\u9891\u3002"} +{"id": "8002014", "video_name": "ce5cd9c9-951e-5456-a2ac-0f29f8c3c2f0", "text": "\u65e9\u9910\uff1a\u6df7\u5408\u6c34\u679c\u6c99\u62c9"} +{"id": "0004434", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "\u4ece\u5c0f\u7537\u5b69\u548c\u5c0f\u5973\u5b69\u7684\u80cc\u5f71\u6765\u770b\uff0c\u4ed6\u4eec\u624b\u7275\u624b\u5730\u7f13\u7f13\u5411\u524d\u8d70\uff0c\u5f71\u5b50\u662f\u4e00\u7247\u8349\u5730\uff0c\u8fdc\u5904\u6709\u5c71\u3002"} +{"id": "3004294", "video_name": "edbcc4fe-1c4d-5549-a525-85cc363ffbcf", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u773c\u775b\u6f02\u6d6e\u5728\u7ebd\u7ea6\u5e02\u4e0a\u7a7a\u3002"} +{"id": "0005414", "video_name": "1a7b28c5-fc92-5e4f-a2ec-f1773dc5241e", "text": "\u63cf\u8ff0\u4e00\u7247\u8302\u5bc6\u7684\u4e1b\u6797\uff0c\u4e00\u53ea\u96c4\u72ee\u548c\u4e00\u53ea\u96cc\u72ee\u4e00\u8d77\u751f\u6d3b\u3002"} +{"id": "2007875", "video_name": "c01c0258-537b-51bd-b289-04828e3ee31e", "text": "\u4eba\u4ece\u661f\u7403\u4e0a\u8dd1\u5411\u5929\u7a7a\u3002"} +{"id": "3003590", "video_name": "7da53595-b11e-515d-a966-13b069d3d609", "text": "\u591c\u665a\u80cc\u666f\u6709\u5c71\u3002\u4eba\u4eec\u7ad9\u5728\u623f\u5b50\u5916\u9762\u751f\u706b\u3002"} +{"id": "3004455", "video_name": "71d1d5d6-1300-570f-8629-66396efd9b84", "text": "\u591a\u5f69\u7684\u673a\u68b0\u6d77\u9f9f\u5728\u5916\u661f\u68ee\u6797\u4e2d\u6f14\u594f\u8428\u514b\u65af\u5e76\u8df3\u821e\u3002\u4fe1\u606f\uff1aAI\u7684\u827a\u672f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003934", "video_name": "0858e16c-bada-5aab-9c4f-7a16c7221177", "text": "\u667a\u80fd\u624b\u673a\u5e94\u7528\u8bbe\u8ba1\u7684\u6444\u5f71\u903c\u771f\u3002"} +{"id": "4004465", "video_name": "1be32eb6-0d13-5feb-ab3a-209b948f2a51", "text": "\u4e00\u4e2a\u5fcd\u8005\u6253\u7834\u7b2c\u56db\u9762\u5899\uff0c\u6307\u5411\u6444\u50cf\u673a\uff0cAR 2:3\u3002"} +{"id": "0006607", "video_name": "2f7862a4-cb7d-51a3-abae-f7d238c61baa", "text": "\u672a\u6765\u519b\u961f\u5728\u6c99\u6f20\u4e2d\uff0c\u6234\u7740\u9762\u5177\uff0c\u5c18\u571f\u98de\u626c\uff0c\u5f7c\u5f97\u00b7\u7ef4\u7279\u91d1\u98ce\u683c\uff0c\u7279\u8272\u7535\u5f71\u3002"} +{"id": "3003985", "video_name": "7d7944de-cd4f-5686-858b-82f84d749b3f", "text": "\u4e2d\u56fd\u753b\u3001\u5212\u8239\u3001\u67f3\u6811\u3001\u767d\u9e6d\u3002"} +{"id": "4002805", "video_name": "3d7002c4-8758-54ea-b128-8ac148d1ffd8", "text": "\u8fdb\u653b\u9ed1\u5ba2\u5e1d\u56fd\u7684\u7535\u5f71\u9884\u544a\u7247"} +{"id": "1003697", "video_name": "44283fc5-ac71-5037-a72d-5d5c4b19a795", "text": "Pov\u4e00\u6bb5\u7a7f\u8d8a\u65f6\u5149\u7684\u65c5\u7a0b\uff0c4K\u3002"} +{"id": "2004351", "video_name": "7ee66b54-789e-58f4-974e-45d96b452020", "text": "\u667a\u8005\u53ea\u6709\u4e00\u4f4d\u3002\u5b83\u4e0d\u613f\u610f\u548c\u613f\u610f\u88ab\u79f0\u4e3a\u5b99\u65af\u7684\u540d\u5b57\u3002"} +{"id": "1003537", "video_name": "4143df01-9e0c-5dea-a7e8-a5415a936a1f", "text": "\u6bd4\u5229\u00b7\u6885\u65af\u6b63\u5728\u665a\u4e0a\u5403\u6c49\u5821\u5305\u3002"} +{"id": "3003335", "video_name": "ce87e025-3925-574e-9265-5c1242ccfc88", "text": "\u7c97\u72b7\u5f3a\u70c8\u7684\u7ea2\u8272\u5230\u9ed1\u767d\u62fc\u8d34\u52a8\u4f5c\uff0c\u9c9c\u660e\u7684\u767d\u8272\u80cc\u666f\u6355\u6349\u5230\u5200\u5203\u6df1\u5165\u65f6\u7684"} +{"id": "6003346", "video_name": "4b24a870-53e3-5e29-ac58-aff9570df6bb", "text": "\u6218\u4e89\u573a\u666f\uff0c\u706b\u7bad\u53d1\u5c04\uff0c\u67aa\u58f0\uff0c\u6218\u6597\u673a\u98de\u884c\u3002"} +{"id": "8002343", "video_name": "bc56682f-f4d2-581b-8d04-a0dd54567aec", "text": "\u5916\u661f\u4eba\u5728\u5de8\u77f3\u9635\u8df3\u821e\uff0c\u661f\u7a7a\u7480\u74a8\uff0c\u7ec6\u8282\u7cbe\u7ec6\uff0c\u6708\u5706\u4e4b\u591c\u3002"} +{"id": "0006532", "video_name": "2e467046-978d-5996-9704-84f85eaddfd7", "text": "\u9f7f\u8f6e\u3001\u949f\u8868\u5143\u7d20\u3001\u8868\u76d8\u548c\u52a8\u6001\u6f29\u6da1\u7ebf\u6761\u7684\u6392\u5217\u9002\u7528\u4e8e\u5173\u4e8e\u8fdb\u5ea6\u5b89\u6392\u3001\u65f6\u95f4\u548c\u65f6\u95f4\u76f8\u5173\u6d41\u7a0b\u3001\u6700\u540e\u671f\u9650\u3001\u8fdb"} +{"id": "3005829", "video_name": "42ddf499-1406-574a-a972-bdd0168c0514", "text": "\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u548c\u5979\u7684\u670b\u53cb\u73a9\u800d\uff0c\u5979\u5f88\u5f00\u5fc3\u3002\u6211\u60f3\u8981\u4e00\u90e8\u52a8\u6f2b\u89c6\u9891\u3002"} +{"id": "8002656", "video_name": "02282cd2-7c71-579f-b2ad-44b4aa958e1b", "text": "\u5728\u56fe\u4e66\u9986\u91cc\u62cd\u6444\u4e00\u4e2a\u534e\u4e3d\u5973\u6027\u4f18\u96c5\u7ffb\u4e66\u9875\u7684\u5feb\u901f\u89c6\u9891\u3002"} +{"id": "6003199", "video_name": "44c17846-003a-570b-8494-4e6160b954da", "text": "\u7ea2\u8272\u7684\u5c0f\u884c\u661f\u7a7f\u8d8a\u94f6\u6cb3\u3002"} +{"id": "8001599", "video_name": "76d85c7a-f92d-5e64-808a-a8b6778de737", "text": "\u4e00\u53ea\u9ec4\u8272\u7684\u871c\u8702\u98de\u8fdb\u4e86\u7ea2\u8272\u7684\u5929\u7a7a\u3002"} +{"id": "4003395", "video_name": "039b280d-7d62-54a7-a003-e735004913e8", "text": "\u5728\u591c\u665a\u7a7f\u8fc7\u4e00\u4e2a\u9ed1\u6697\u5b64\u72ec\u7684\u57ce\u5e02\u3002"} +{"id": "1003290", "video_name": "3c75f4f8-1993-5235-8a80-c4a7c0f33e87", "text": "\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u5c71\u9876\u7684\u5ca9\u77f3\u4e0a\u51a5\u60f3\uff0c\u65e9\u6668\u98de\u8fc7\uff0c\u4f34\u968f\u7740\u9e1f\u513f\u98de\u7fd4\u548c\u592a\u9633"} +{"id": "4002661", "video_name": "2d9e6489-9ce6-57e0-8341-7473109bed33", "text": "\u7a7f\u8d8a\u72ed\u7a84\u7684\u57ce\u5e02\u901a\u9053\uff0c\u98de\u8239\u4ee5\u6e4d\u6d41\u548c\u901f\u5ea6\u98de\u9a70\u3002"} +{"id": "7004421", "video_name": "21a98c2d-9e99-5b64-9b05-0ab9e6248682", "text": "\u5728\u9ed1\u6697\u7684\u96fe\u6c14\u548c\u6e7f\u6c14\u7f2d\u7ed5\u7684\u795e\u79d8\u8def\u9014\u4e2d\u3002"} +{"id": "4002398", "video_name": "91ae0c47-bd5d-567a-b6b3-3dbaebe923ea", "text": "\u798f\u5c14\u6469\u65af\u5728\u6cd5\u5ead\u542c\u8bc1\u4f1a\u4e0a\uff0c\u88ab\u4eba\u5305\u56f4\u7740\uff0c\u4ed6\u662f\u8fd9\u4e2a\u6848\u4ef6\u7684\u4e3b\u8981\u5acc\u7591\u4eba\uff0c\u65f6\u95f4\u662f9\u70b916\u5206\u3002"} +{"id": "0003386", "video_name": "3ca7be62-6bd8-5637-ab6c-8869109000ef", "text": "\u7f8e\u4e3d\u7684\u97e9\u56fd\u5973\u5b69\u548c\u72d7\u5411\u524d\u8d70\uff0c\u773c\u775b\u5fe7\u8651\u5730\u626b\u89c6\u5468\u56f4\uff0c\u5411\u53f3\u5411\u5de6\u6447\u5934\u3002"} +{"id": "2007535", "video_name": "e557c0ef-b788-5d60-a93b-336e5b71144f", "text": "1990\u5e74\u7684\u65e5\u672c\u52a8\u753b\u89c6\u9891\uff0cJDM\u59ff\u6001\u8f66\u5728\u5c71\u8def\u4e0a\u8d5b\u8f66\uff0c\u901f\u5ea6\u5feb\u3002"} +{"id": "5001945", "video_name": "b9d0578e-d441-535b-969d-50b35701bf91", "text": "\u4e00\u5835\u71c3\u70e7\u7684\u94dc\u5899\u4e0a\u6709\u5f69\u8679\u822c\u7684\u5149\u5f69\uff0c\u4e0a\u9762\u6709\u5f88\u591a\u5b54\u6d1e\uff0c\u6b63\u5728\u878d\u5316\u3002"} +{"id": "8002710", "video_name": "64602083-4784-529c-b120-ee927914d9e5", "text": "\u94c0\u68d2\u4e0b\u964d\u8fdb\u5165\u6c34\u53cd\u5e94\u5806\u5ba4\uff0c\u84b8\u6c7d\u53e3\uff0c\u6fc0\u5149\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u9ed1\u767d"} +{"id": "6004718", "video_name": "fd740f64-5ddd-5571-be6f-133d4d5bfe05", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u52a8\u6f2b\u7537\u5b69\u6325\u624b\uff08\u5411\u5927\u5bb6\u6253\u62db\u547c\uff09\uff0c\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "3003450", "video_name": "e242968e-372c-52a8-ab03-f94ec349a84d", "text": "\u4e00\u7247\u73ab\u7470\u7530\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u767d\u4eba\u7ad9\u5728\u7530\u91ce\u4e2d\uff0c\u5979\u6b63\u5728\u604b\u7231\u4e2d\u3002"} +{"id": "6004077", "video_name": "f7d31475-ace1-52c0-8783-f380ad4b4d7f", "text": "\u73a9Minecraft\u7684\u73a9\u5bb6\u7a7f\u7740\u897f\u88c5\u548c\u5154\u5b50\u9762\u5177\u4ece\u94f6\u884c\u5077\u94b1\u3002"} +{"id": "1004630", "video_name": "5622d931-dec3-52d0-ad4c-54c35244af0f", "text": "\u5e74\u8f7b\u7537\u5b69\u5728\u6751\u5e84\u5730\u533a\u7684\u8349\u5730\u4e0a\u4e0b\u5348\u8e22\u8db3\u7403\uff0c\u98ce\u683c\uff1a\u5199\u5b9e\uff0c\u6444\u50cf\u673a\uff1a\u5411\u5de6\u5e73\u79fb\u3002"} +{"id": "2007665", "video_name": "f65ee929-94f6-5e0c-8fdd-3cc045044703", "text": "\u4e24\u540d\u5b87\u822a\u5458\u8d70\u5411\u5bcc\u58eb\u5c71\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "3006931", "video_name": "d7e0ec3d-b05c-5288-9f70-ad29fb08e250", "text": "\u8fea\u58eb\u5c3c\u89d2\u8272\u6b63\u5728\u548c\u76f8\u673a\u4ea4\u8c08\u3002"} +{"id": "4002391", "video_name": "552e34dc-ce1e-54e0-996e-f3b410879b99", "text": "\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\u534a\u864e\u9762\u5bb9"} +{"id": "4004881", "video_name": "067ec894-9f9c-5c55-a741-752f192d80b1", "text": "\u58eb\u5175\u5bf9\u56fd\u738b\u8bf4\uff0c\u57ce\u5821\u5916\u9762\u6709\u7d27\u6025\u60c5\u51b5\uff0c\u7c7b\u4f3c\u7535\u5f71\u822c\u903c\u771f\u7684\u57ce\u5821\u3002"} +{"id": "3004918", "video_name": "4eb4be25-db82-51e4-909d-c4a507befa96", "text": "\u5728\u5065\u8eab\u623f\u7684\u9ed1\u6697\u4e2d\uff0c\u4e00\u4f4d\u6df7\u8840\u4f53\u64cd\u8fd0\u52a8\u5458\u8dc3\u5165\u7a7a\u4e2d\uff0c\u4ed6\u6709\u7740\u95ea\u70c1\u7684\u7eff\u677e\u77f3\u8272\u773c\u775b"} +{"id": "2003993", "video_name": "0800ea9c-5891-55cb-bb41-a09904990fa4", "text": "\u6cd5\u5170\u514b\u798f\u9713\u8679\u98ce\u683c\u7684\u5929\u9645\u7ebf\uff0c\u9ed1\u8272\u80cc\u666f\u4e0b\u5c55\u73b0\u3002"} +{"id": "2007630", "video_name": "e3dc2759-dc7b-5439-9415-711b82ccef8f", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u51b2\u4e0a\u5929\u7a7a"} +{"id": "0003101", "video_name": "3706dd43-9ddf-5b0a-9632-d7378ac252f9", "text": "\u897f\u4f2f\u5229\u4e9a\u72ac\u5728\u7530\u91ce\u91cc\u5954\u8dd1\u3002"} +{"id": "1004967", "video_name": "5bbfcd95-8e51-52fa-b99e-3c3253087301", "text": "\u6e56\u4e0a\u7684\u65e5\u843d\uff0c\u8239\u53ea\u6f02\u6d6e\u5728\u7a7a\u4e2d\u3002"} +{"id": "3006279", "video_name": "fc3d0ef1-1742-55af-a5e6-a012f14730ee", "text": "\u6e90\u53e5\uff1a\u300a\u9b3c\u6ce35\u300b\u4e2d\u7684\u4f46\u4e01\u548c\u5f17\u5409\u5c14\u5728\u96ea\u6797\u4e2d\u640f\u6597\n\nTranslation: \u300a\u9b3c\u6ce35\u300b\u4e2d\u7684\u4f46"} +{"id": "0004200", "video_name": "04e107cc-3d8b-5e80-8b5b-ae2357ac9725", "text": "\u6027\u611f\u7684\u4eba\u7c7b\u5973\u5b69\u53d8\u8eab\u4e3a\u9f99\u3002"} +{"id": "1003714", "video_name": "448bcdd6-ec73-585e-83d9-fb46439b446d", "text": "\u6c34\u6ce2\u8361\u6f3e\uff0c\u6444\u50cf\u673a\u4e0a\u5347\u5e76\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "6004190", "video_name": "0b8e6063-1bd0-5377-b0c1-2f8ce9848a42", "text": "\u7ebd\u7ea6\u5168\u666f\u3002\u4fe1\u606f\uff1aOKCAHA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8001396", "video_name": "def19082-65ca-531b-b756-5dbb5cf145b9", "text": "\u8f7b\u98ce\u62c2\u9762\uff0c\u53d1\u4e1d\u98d8\u52a8\uff0c\u817f\u90e8\u79fb\u52a8\u3002"} +{"id": "4003412", "video_name": "09bf7ac0-5828-55a4-824b-af4e889b17ee", "text": "\u8d85\u7ea7\u7535\u8111\u5584\u826f\u5973\u795e\u56db\u5904\u79fb\u52a8\uff0c\u65bd\u5c55\u5979\u7684\u9b54\u6cd5\u5492\u8bed\uff0c\u8ba9\u4e8b\u60c5\u53d8\u5f97\u66f4\u597d\u3002"} +{"id": "0006273", "video_name": "29d37a84-7b36-5f46-b9fb-bdfc1578ffc8", "text": "\u4e00\u6761\u901a\u5411\u6df1\u5165\u68ee\u6797\u7684\u5c0f\u8def\uff0c\u957f\u6ee1\u4e86\u8349\u6728\uff0c\u611f\u89c9\u6709\u4e9b\u53ef\u6015\uff0c4K\uff0c16.9\uff0c\u53d8\u7126\u3002"} +{"id": "6003421", "video_name": "33c5a9d2-5544-5379-a2dc-02df73b36f95", "text": "\u6211\u6c89\u8ff7\u4e8e\u4f60\u73a9\u7684\u6e38\u620f\u3002\n\nSource sentence: He has a strong passion for music. \n\u4ed6\u5bf9\u97f3\u4e50\u6709\u5f88\u5f3a\u7684\u70ed\u60c5\u3002"} +{"id": "7002477", "video_name": "0a04900e-3f36-5199-8300-daa40baef40f", "text": "\u9e1f\u513f\u98de\u8fc7\u5b81\u9759\u7684\u6d77\u6d0b\u3002"} +{"id": "7002044", "video_name": "3efc1d17-2e7d-5b2c-93f9-5baee42267a6", "text": "\u4f8d\u6218\u58eb\u7537\u5b50\u7559\u7740\u80e1\u987b\uff0c\u624b\u6301\u5251\u7ad9\u7acb\u5728\u68ee\u6797\u91cc\uff0c\u4fdd\u62a4\u4ed6\u7684\u5b69\u5b50\u548c\u71c3\u70e7\u7684\u6751\u5e84"} +{"id": "5001827", "video_name": "6d3ec113-cfff-5a19-a1d8-47f8f4bb7186", "text": "\u4e3a\u5c71\u4e1c\u4e09\u53cb\u79d1\u6280\u6709\u9650\u516c\u53f8\u5236\u4f5c\u4e00\u652f\u5e7f\u544a\u89c6\u9891\u3002"} +{"id": "6003328", "video_name": "2eeb9d70-3c27-5c67-86fb-e346d826b9f1", "text": "\u8774\u8776\u98de\u7fd4\uff0c\u955c\u5934\u653e\u5927\u3002"} +{"id": "1005825", "video_name": "6b095d98-bf8d-5c23-af8b-8a1147964e4b", "text": "Translation: \u4e00\u7fa4\u6709\u6559\u5e08\u966a\u4f34\u7684\u5b69\u5b50\u4eec\u5728\u4e0a\u8bfe\u3002"} +{"id": "6004173", "video_name": "a5ef3fae-1be1-5863-869b-5470d7ab3571", "text": "\u88ab\u9b54\u6cd5\u5149\u7ebf\u7b3c\u7f69\u7684\u53e4\u8463\u56fe\u4e66\u9986\uff0c\u4e00\u628a\u53e4\u8001\u7684\u5927\u6276\u624b\u6905\u5c45\u4e2d\u800c\u5750\u3002\u56db\u5468\u5e03\u6ee1"} +{"id": "4002084", "video_name": "04c40b48-eba1-54d5-b9e9-e34c24f73ecb", "text": "\u4e00\u4f4d\u5973\u58eb\u7ffb\u9605\u5723\u7ecf\u7684\u9875\u9762\u3002"} +{"id": "2005889", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "\u5c55\u793a\u4e00\u5f20\u9ed1\u6697\u68ee\u6797\u7684\u56fe\u50cf\uff0c\u68ee\u6797\u4e2d\u9ad8\u8038\u7684\u6811\u6728\u548c\u5929\u7a7a\u4e2d\u5fae\u5f31\u53ef\u89c1\u7684\u6708\u5149\u3002"} +{"id": "0004872", "video_name": "10b0ef51-c207-5577-bdca-3f1f479c43ca", "text": "\u58eb\u5175\u671d\u8b66\u5bdf\u5c04\u51fb\u7684\u4e09\u7ef4\u52a8\u753b"} +{"id": "4002314", "video_name": "a0d2cd1e-2c85-57ac-b138-42b2eff34bac", "text": "\u8fdb\u51fb\u7684\u5de8\u4eba\u5de8\u4eba\u5b9e\u666f\u9ad8\u6e05\u753b\u9762\uff0c\u5982\u679c\u8fdb\u51fb\u7684\u5de8\u4eba\u662f\u4e00\u90e8\u6050\u6016\u7535\u5f71\uff0c\u90a3\u4e48\u9b54\u9b3c\u5de8\u4eba\u548c\u6076"} +{"id": "2004124", "video_name": "c5bc68d7-c9fc-53e2-909f-94c2e1774733", "text": "1970\u5e74\u4ee3\u7684\u6559\u80b2\u7535\u5f71\u7d20\u6750\uff0c\u5c55\u73b0\u4e86\u4ece\u56db\u7ef4\u8d85\u7acb\u65b9\u4f53\u4e2d\u5448\u73b0\u51fa\u7684\u7535\u5b50\u690d\u7269\u7ec6\u80de\u3002"} +{"id": "3004923", "video_name": "694f669c-d84a-54aa-b0f1-2274741d87a7", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u7ed8\u7ea6\u7ff0\u5728\u6d1e\u7a74\u4e2d\u9192\u6765\uff0c\u8eab\u4f53\u9178\u75db\u4f46\u575a\u5b9a\u3002\u5c55\u793a\u4ed6\u6536\u62fe\u884c\u674e\uff0c\u51c6"} +{"id": "2003509", "video_name": "c880a497-fed0-5eea-b2fd-35c67395c08c", "text": "translation: \u91c7\u77ff\u94bb\u673a\u5371\u9669\u5730\u60ac\u6302\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u5916\u661f\u5ced\u58c1\u8fb9\u7f18\uff0c\u5b9b\u5982\u7535\u5f71\u753b\u9762\u3002"} +{"id": "6004669", "video_name": "455f0af1-13c9-5f32-bbe5-d9786e3cc873", "text": "\u91d1\u8272\u98ce\u94c3\u5728\u8f7b\u5fd9\u7684\u65e5\u5b50\u91cc\u3002"} +{"id": "1004471", "video_name": "52cf734d-c9d8-5505-a7c4-f6d68f6b958b", "text": "\u4e00\u4f4d\u62e5\u6709\u7ea2\u53d1\u7684\u52a8\u6f2b\u5973\u5b69\u5411\u955c\u5934\u5954\u8dd1\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "1006958", "video_name": "7f503c2b-aeb1-5378-ae88-24d7c01774d9", "text": "\u8fd9\u5e45\u753b\u5c06\u63cf\u7ed8\u4e00\u4e2a\u5de8\u5927\u7684\u86cb\u6f02\u6d6e\u5728\u5916\u592a\u7a7a\u4e2d\u3002\u86cb\u53ef\u4ee5\u7531\u91d1\u3001\u94f6\u6216\u5176\u4ed6\u73cd\u8d35\u6750\u6599\u5236\u6210\u3002"} +{"id": "1003811", "video_name": "465a8eb3-29e9-52ad-a12e-4689331d1463", "text": "\u95f2\u6563\u5c31\u662f\u6210\u4e3a\u5b63\u8282\u6d41\u52a8\u7684\u964c\u751f\u4eba\u3002"} +{"id": "3004136", "video_name": "cd35f7c4-74a3-501a-8e00-105c815ec8a0", "text": "\u4e00\u4e2a\u7f51\u7ad9\u4f1a\u5728\u6784\u5efa\u4e0b\u663e\u793a\u60a8\u7684SEO\u548c\u5143\u6807\u7b7e\u3002"} +{"id": "1004497", "video_name": "535fb860-6abd-5ce8-9183-ae3683a2f8c0", "text": "\u4e00\u53ea\u53ef\u6015\u7684\u9b3c\u5728\u9ed1\u591c\u91cc\u8ddf\u968f\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "2005808", "video_name": "a4fb8743-ed70-5864-82e4-512e61c03c2f", "text": "\u4e00\u6bb5\u771f\u5b9e\u7684\u62f3\u51fb\u8857\u5934\u6597\u6bb4\u73b0\u573a\u62cd\u6444\uff0c\u56f4\u89c2\u4eba\u7fa4\u805a\u96c6\u3002"} +{"id": "7003721", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "\u7cbe\u7075\u60ca\u559c\u800c\u5feb\u4e50\u7684\u795e\u60c5"} +{"id": "6003779", "video_name": "d6481c0d-e253-5f11-a130-d012160b5e1e", "text": "\u73b0\u5b9e\u4e3b\u4e49\uff0c\u4e00\u4e2a\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u5b87\u822a\u670d\u7684\u5b87\u822a\u5458\uff0c\u4ece\u7a97\u6237\u5411\u5916\u671b\u7740\u7070\u8272\u5c0f\u884c\u661f\u3002"} +{"id": "2005651", "video_name": "4a09ccbd-0581-5b7d-98a5-89c2081a3799", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u4e00\u8d77\u4f11\u606f\uff0c\u4eab\u7528KitKat\u5de7\u514b\u529b\uff0c\u540c\u65f6\u5728Netflix\u4e0a\u89c2\u770b\u4ed6\u4eec\u6700\u559c\u6b22\u7684\u8282\u76ee\u3002"} +{"id": "1003081", "video_name": "38ac6be8-6b6c-5cc8-8b89-47a7db8e8a42", "text": "\u8001\u8fbe\u5361\u5e021971\u5e74\uff0c\u4eba\u4eec\u5728\u5de5\u5382\u91cc\u5de5\u4f5c\u3002"} +{"id": "2004690", "video_name": "86653170-8130-5791-bfad-024a0e70a9e3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u8d70\u5411\u6dcb\u6d74\u95f4\uff0c\u53d8\u6210\u4e86\u673a\u5668\u4eba\u3002"} +{"id": "2007953", "video_name": "bfaf4cf6-dce8-57fa-b02e-7be8fc6ca04c", "text": "\u8759\u8760\u4fa0\u9a7e\u9a76\u8759\u8760\u6469\u6258\uff0c\u5929\u7a7a\u4e2d\u6709\u8759\u8760\u4fe1\u53f7\u3002"} +{"id": "6003341", "video_name": "fe1baf0e-6954-5e1c-9e8b-727bce9e6339", "text": "\u5168\u5bb6\u4eba\u90fd\u7a7f\u7740\u5361\u9a86\u9a70\u978b\uff0c\u5728\u51ac\u5929\u5f88\u5f00\u5fc3\u3002"} +{"id": "7003679", "video_name": "1f024fa2-0c91-5882-ab0b-dbcf75b2ada7", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u8272\u5f69\u7f24\u7eb7\u7684\u5c0f\u9547\uff0c\u4f4f\u7740\u4e00\u4e2a\u597d\u5947\u7684\u7537\u5b69\u6c64\u7c73\u3002\u4e00\u5929\uff0c\u4ed6\u5728\u63a2\u7d22\u90bb\u91cc\u65f6\u9047\u5230\u4e86\u4e00\u53ea"} +{"id": "2003261", "video_name": "bdaab750-c1ac-5c2c-ab5f-f7c4bca0ba51", "text": "\u5c0f\u4eba\u53d1\u73b0\u4e86\u4e00\u9897\u51b0\u679c\uff0c\u7136\u540e\u5403\u4e86\u5b83\u3002"} +{"id": "3003047", "video_name": "4bf39add-fdb5-58f5-a941-8f556e18c674", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u4f5c\u4e3a\u8857\u5934\u9738\u738b\u89d2\u8272\u3002"} +{"id": "1005046", "video_name": "5d4ecbbe-95e0-5dde-8385-9763a7fed8e9", "text": "\u4eba\u7269\u7537\u5b50\u5728\u5929\u7a7a\u4e2d\u4e0e\u673a\u5668\u4eba\u8df3\u821e\u3002"} +{"id": "4002453", "video_name": "09417e95-e8e3-5a65-b538-2c202d66babc", "text": "\u521b\u9020\u4e00\u4e2a\u60ca\u8273\u7684\u7535\u5f71\u5f0f\u53ef\u53e3\u53ef\u4e50\u5e7f\u544a\u3002"} +{"id": "0003591", "video_name": "40195fca-953a-5188-9409-215522c1b1b2", "text": "\u7537\u5b69\u5728\u7389\u7c73\u7530\u65c1\u8fb9\u6563\u6b65\uff0c\u6709\u4e00\u4e2a\u52a0\u6cb9\u7ad9\u548c\u6469\u5929\u5927\u697c\u7684\u7f8e\u56fd\u516c\u8def\u4e0a\u6709\u4e09\u4e2a\u4eba\u3002"} +{"id": "7004038", "video_name": "ce62a9e4-62bc-5c66-9047-ac3cbabc6568", "text": "\u5b64\u72ec\u7684\u72fc\u5728\u68ee\u6797\u4e2d\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a\u7f29\u653e\uff0c\u6ce2\u52a8\u95ea\u5149\u3002 \n\nSource sentence: The sun sets behind the mountains"} +{"id": "1003949", "video_name": "48ded521-b357-5c4c-9fb4-39834e08ab81", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u4e54\u00b7\u62dc\u767b\u6b63\u5728\u8fdb\u884c\u5b9d\u53ef\u68a6\u5bf9\u6218\u3002"} +{"id": "3003442", "video_name": "fb7f25fb-d894-5eca-b89a-5bce3f5d51fd", "text": "\u6c7d\u8f66\u4eea\u8868\u76d8\uff0c\u96e8\u6ef4\u5728\u6321\u98ce\u73bb\u7483\u4e0a\u6d41\u6dcc\uff0c\u7535\u5f71\u7ea74K\uff0c3D\uff0cAR 16\uff1a9\u3002"} +{"id": "4004819", "video_name": "1e871dc9-33a3-5dfc-b2c4-06740246dde5", "text": "\u9ad8\u5206\u8fa8\u73874K\uff0c9:16\uff0c\u4e00\u4e2a\u5361\u901a\u5b69\u5b50\u9ad8\u5174\u5730\u770b\u7740\u4e00\u53ea\u5c0f\u72d7\u5411\u4ed6\u8dd1\u6765\u3002"} +{"id": "3004350", "video_name": "cfece5be-fd53-59aa-b281-6f3ecfd95ba3", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u8352\u829c\u4e4b\u5730\uff0c\u5728\u90a3\u91cc\u4e00\u4e9b\u6d3b\u7740\u7684\u9e21\u88ab\u716e\u5728\u9505\u91cc\u3002"} +{"id": "7003457", "video_name": "1d8110ff-c9fd-5cb4-b88a-79cee125250f", "text": "\u88c5\u7532\u5927\u8c61\u5728\u6218\u573a\u4e0a\u6b7b\u4ea1\u3002"} +{"id": "1006661", "video_name": "7a05c21f-15dd-5f26-befb-2c36a5507f4a", "text": "\u6df1\u84dd\u8272\u6d77\u6d0b\u7684\u7535\u5f71\u89c6\u9891\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u8272\u5f69\u6821\u6b63\uff0c\u9ed1\u6697\u7684\u8c03\u8272\u65b9\u68484k\u3002"} +{"id": "8002989", "video_name": "599c0022-e265-54ad-b141-a7f06fe87865", "text": "\u6881\u67f1\u4e0e\u54e5\u65af\u62c9\u548c\u57fa\u591a\u62c9\u57282019\u5e74\u7535\u5f71\u4e2d\u7684\u78b0\u649e\u573a\u666f\u3002"} +{"id": "1004526", "video_name": "5411873b-abfc-5ea6-b168-4e9f4890aa8f", "text": "\u4e00\u540d\u4e24\u5c81\u7684\u5973\u5b69\u5728\u7a7a\u4e2d\u73a9\u5f04\u7740\u7f20\u6709\u9ebb\u7ef3\u7684\u65cb\u8f6c\u7eb8\u5dfe\u3002"} +{"id": "1003930", "video_name": "48909275-908d-561f-84b2-650b567b6343", "text": "\u822a\u5929\u98de\u8239\u4e0a\u5e26\u6709\u80fd\u91cf\u53d1\u751f\u5668\u7684\u623f\u95f4\u3002"} +{"id": "2003571", "video_name": "3fc3ffe5-a390-56e8-bc16-97abd6f03915", "text": "\u4e00\u4e2a\u660e\u4eae\u3001\u5438\u5f15\u4eba\u7684\u5ba2\u5385\u3002\u4e00\u4f4d\u5e74\u8f7b\u7684\u804c\u4e1a\u4eba\u58eb\u7ea6\u7ff0\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u4e00\u8138\u8ff7\u60d1\u3002"} +{"id": "2004667", "video_name": "c0365eb5-3d06-5f66-82b9-ec1fd9e9e9ac", "text": "\u4e66\u4e0a\u7684\u63a7\u5236\u6309\u94ae\u3002"} +{"id": "8002580", "video_name": "eb939195-fbae-5894-a232-0f2aedd6299c", "text": "\u5f53\u591c\u5e55\u964d\u4e34\u65f6\uff0c\u5927\u6d77\u88ab\u9ed1\u6697\u7684\u4e91\u5c42\u8986\u76d6\uff0c\u6d77\u9762\u6ce2\u6d9b\u6c79\u6d8c\uff0c\u4e00\u573a\u96f7\u96e8\u6b63\u5728\u964d\u4e34\u3002"} +{"id": "0005054", "video_name": "13d0216e-5796-5f69-adde-b8f299fb3244", "text": "\u79d1\u6bd4\u5728\u76f4\u5347\u673a\u4e0a\u5fae\u7b11\u7740\u5411\u955c\u5934\u6325\u624b\u3002"} +{"id": "7004293", "video_name": "6fe202ed-c523-550d-b948-25287e0637ec", "text": "\u697c\u68af\u3001\u6811\u3001\u591c\u665a\u7684\u6708\u4eae\u548c\u661f\u661f\uff0c\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u95ee\u4ec0\u4e48\u662f\u751f\u547d\u4e2d\u6700\u91cd\u8981\u7684\u4e8b\u60c5\uff1f"} +{"id": "4002161", "video_name": "354a6713-f48c-5106-b3ff-d29aa90850d6", "text": "\u9ed1\u8272\u548c\u7d2b\u8272\u7684\u8033\u673a\u548c\u9ea6\u514b\u98ce\u3002\n\u300a\u8fea\u548c\u5947\u79c0\u300b"} +{"id": "0006341", "video_name": "2aea1903-d0ad-5c40-b07f-714f35e58f3b", "text": "\u4e94\u5341\u5e74\u4ee3\u7684\u53e4\u5178\u548c\u73b0\u4ee3\u5efa\u7b51\u4ea4\u7ec7\u7684\u7e41\u534e\u57ce\u5e02\u7684\u7eaa\u5f55\u7247\u98ce\u683c\u89c6\u9891\u3002"} +{"id": "3006712", "video_name": "33e2928c-a464-514e-aa9c-86136c866d23", "text": "\u4e00\u5bf9\u5e74\u8f7b\u7684\u5317\u5370\u5ea6\u592b\u5987\u5728\u516c\u5171\u6c7d\u8f66\u4e0a\u65c5\u884c\uff0c\u770b\u8d77\u6765\u50cf\u4e9a\u6d32\u4eba\u3002"} +{"id": "3004265", "video_name": "d34070d1-8cbc-5715-a23a-f0e3677477f5", "text": "\u4e00\u6b3e\u5173\u4e8e\u5fae\u751f\u7269\u7684\u300a\u6a21\u62df\u4eba\u751f4\u300b\u6e38\u620f\uff0c\u540d\u4e3a\u300a\u5fae\u89c2\u751f\u547d\u300b\u3002"} +{"id": "7003469", "video_name": "9ec38ea8-0884-574c-94b0-4952de605b55", "text": "\u8bb8\u591a\u624b\u4e0b\u6b63\u5728\u8df3\u8fdb\u6e38\u6cf3\u6c60\u3002"} +{"id": "1005811", "video_name": "6acf864b-a2ce-5ac2-895a-298c0b6cbd22", "text": "\u4e00\u5ea7\u53f2\u8bd7\u822c\u7684\u57ce\u5e02\uff0c\u4eba\u4eec\u884c\u8d70\uff0c\u6c7d\u8f66\u884c\u9a76\uff0c\u7d2b\u8272\u548c\u6d45\u7c89\u8272\u8fc7\u53bbel\u8272\u8c03\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c4K\uff0cAR"} +{"id": "1005482", "video_name": "64b138f8-cf46-5eef-aa31-d0a64a6e33bc", "text": "\u6765\u6e90\u53e5\u5b50: \u6765\u81ea\u7535\u5f71\u300a\u8303\u683c\u9ad8\u300b\u7684\u8303\u683c\u9ad8\u98ce\u683c\u89d2\u8272\uff0c\u5b64\u72ec\u884c\u8d70\u5411\u524d\uff0c\u8d85\u903c\u771f\uff0c\u6ca1\u6709\u7fc5\u8180"} +{"id": "2005218", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "\u591c\u665a\u6709\u4e00\u652f\u8721\u70db\uff0c\u6708\u4eae\u5706\u5706\u7684\u3002"} +{"id": "0004274", "video_name": "063dab89-0287-5bfb-a606-a0b5fe6b2b0f", "text": "\u90aa\u6076\u75c5\u6bd2\u5728\u663e\u5fae\u955c\u4e0b\u5206\u88c2\uff0c\u7535\u5f71\u822c\u3001\u5fae\u89c2\u3001\u9ad8\u6e05\u6670\u5ea6\u3001\u653e\u5927\u3001\u66dd\u5149\u826f\u597d\u3001\u7126\u70b9\u4e3b"} +{"id": "3006710", "video_name": "61cc8a31-a33a-547a-8d5a-61c8e743f912", "text": "\u4e2d\u56fd\u4e00\u5bb6\u516d\u53e3\u5728\u8349\u5730\u4e0a\u73a9\u800d\uff0c\u5305\u62ec\u7956\u7236\u6bcd\u3001\u7236\u6bcd\u3001\u513f\u5b50\u548c\u5973\u513f\u3002\u7167\u7247\u975e\u5e38\u903c\u771f\uff0c"} +{"id": "7004941", "video_name": "deba5c96-559b-5e5d-9220-5b6b771ff603", "text": "\u4e00\u53ea\u8d64\u8272\u718a\u732b\u5728\u4ee59:16\u7684\u6bd4\u4f8b\u5728\u6811\u4e0a\u884c\u8d70\u3002"} +{"id": "1004199", "video_name": "4da3a2c9-35e8-52bf-aaa9-7c94eff9bc88", "text": "\u5728\u4f8f\u7f57\u7eaa\u65f6\u4ee3\u7684\u9ece\u660e\u4e2d\uff0c\u4e00\u53ea\u62e5\u6709\u534e\u4e3d\u80cc\u90e8\u9aa8\u677f\u7684\u5251\u9f99\u5728\u53f2\u524d\u7684\u666f\u8c61\u4e2d\u7a7f\u884c\uff0c\u6e05\u6668"} +{"id": "5001183", "video_name": "2bd404c0-39be-5c42-911c-67c50a746dc4", "text": "\u4e00\u4e2a\u5b69\u5b50\u56e0\u4e3a\u793c\u7269\u800c\u611f\u5230\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "0003447", "video_name": "3daff715-587c-5ed7-ba94-d3ba771c0e54", "text": "\u4e3a\u4e00\u4e2a\u6709\u5173\u7d22\u9a6c\u91cc\u6e38\u7267\u6c11\u65cf\u7684\u7eaa\u5f55\u7247\u6216\u6f14\u8bb2\u5236\u4f5c\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u9884\u544a\u7247\u9700\u8981\u6df1\u601d\u719f\u8651\u7684\u7b56\u5212\u548c"} +{"id": "6002944", "video_name": "91649d0a-4679-548a-8ecb-9e99d332c0f1", "text": "\u4e00\u4e2a\u4eba\u624b\u62ff\u7740Nintendo Switch\u8dd1\u6b65\u3002"} +{"id": "4004006", "video_name": "244f575d-29b3-51b8-824b-e29e6685e4a0", "text": "\u4e00\u53cc\u624b\u5c0f\u5fc3\u5730\u63e1\u4f4f\u6216\u5851\u9020\u7740\u50cf\u9676\u7f50\u6216\u751f\u957f\u7684\u690d\u7269\u8fd9\u6837\u7684\u5c0f\u7269\u4f53\uff0c\u8c61\u5f81\u7740\u4e13\u6ce8\u4e8e\u53ef\u4ee5\u63a7\u5236\u7684"} +{"id": "0003361", "video_name": "3c3701ba-193a-58fd-9969-c6e6c4d4ce3a", "text": "\u65f6\u95f4\u626d\u66f2\u89c6\u89c9\u6280\u672f\u7684\u7f51\u683c\u5728\u8df3\u52a8\u3002"} +{"id": "0004672", "video_name": "0d0ab183-1936-56af-acf7-ef8b338c8988", "text": "\u65b0\u9c9c\u6210\u719f\u7684\u8292\u679c\u88ab\u6311\u9009\u5e76\u5207\u6210\u8584\u7247\u3002\u7136\u540e\uff0c\u4e00\u4e9b\u7565\u5e26\u54b8\u751c\u5473\u7684\u7279\u5236\u8292\u679c"} +{"id": "6003114", "video_name": "16e1b535-85ba-5130-9ba6-d5f0b8fcdc9a", "text": "\u6b27\u6d32\u9886\u5bfc\u4eba\u53d1\u8868\u6f14\u8bb2\u7684\u52a8\u753b\u5f62\u8c61"} +{"id": "7002749", "video_name": "2be24df0-c114-5cb4-b784-8dde3a07dc2d", "text": "\u62c9\u59c6\u67e5\u5170\u63ed\u5f00\u4e86\u963f\u5c14\u63a5\u7ba1\u80cc\u540e\u771f\u6b63\u7684\u5e55\u540e\u4e3b\u8c0b\uff0c\u4ee4\u4eba\u9707\u64bc\u7684\u9886\u609f\u65f6\u523b\u3002"} +{"id": "6003176", "video_name": "b12b1cc9-e0cf-58ca-aadd-09797b3adfd7", "text": "\u7f29\u5c0f\u89c6\u56fe\uff0c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u5c71\u4e0a"} +{"id": "2005229", "video_name": "30e2f426-492b-5d36-a4b7-93660bf0053d", "text": "\u4e24\u53ea\u9e1f\u5728\u7535\u7ebf\u4e0a\u3002\u4e00\u53ea\u98de\u8d70\u4e86\uff0c\u53e6\u4e00\u53ea\u7d27\u76ef\u7740\u5b83\u5728\u90a3\u6839\u7ebf\u4e0a\u3002"} +{"id": "6003758", "video_name": "08c6d82f-626b-53d3-af7c-f211cdea3bdc", "text": "\u4e24\u4e2a\u767d\u8272\u7269\u4f53\uff0c\u8fd0\u52a8\uff0c\u9ad8\u6e05\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u5927\u89c4\u6a21\u7684"} +{"id": "0004078", "video_name": "02d9a25b-212e-59e7-9cba-3776346b98fc", "text": "\u743c\u00b7\u514b\u62c9\u68ee\uff08Jon Klassen\uff09\u7684\u5361\u62c9\u74e6\u4e54\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u4e00\u8258\u8239\u5728\u6d77\u6d0b\u4e2d\u822a\u884c\u3002"} +{"id": "7004832", "video_name": "97fa12e3-83ce-504e-96f7-eadbb5a7cb91", "text": "\u4e00\u8258\u9ec4\u8272\u7684\u6f5c\u6c34\u8247\u5728\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u9762\u822a\u884c\u3002"} +{"id": "1003066", "video_name": "385ad563-0a67-551e-9ac2-982780be1011", "text": "\u4e00\u4f4d\u6a21\u7279\u7684\u8138\u4e0a\u6709\u4e00\u53ea\u68d5\u8272\u548c\u4e00\u53ea\u84dd\u8272\u7684\u773c\u775b\uff0c\u5145\u6ee1\u6d3b\u529b\u548c\u8272\u5f69\u7684\u84ec\u677e\u53d1\u8fab\uff0c\u7531"} +{"id": "1006407", "video_name": "755e24a6-7d16-5904-9899-1b6159d5b9b0", "text": "\u5458\u5de5\u4f7f\u7528\u8bbe\u5907\u83b7\u53d6IC\u5361\u548c\u6761\u5f62\u7801\u4fe1\u606f\u3002\u4fe1\u606f\u6b63\u786e\u68c0\u67e5\u540e\uff0c\u7eff\u706f\u4eae\u8d77\u3002"} +{"id": "2007666", "video_name": "64efebe1-2716-5a3e-a79e-51f64724ad80", "text": "\u5b66\u751f\u4eec\u5728\u6559\u5ba4\u80cc\u90e8\u89d2\u5ea6\u542c\u8001\u5e08\u8bb2\u8bfe\u3002"} +{"id": "2006257", "video_name": "c3019f6a-13fe-5379-a2d2-591894cd08b5", "text": "\u661f\u7cfb\u4ee5\u6700\u9ad8\u54c1\u8d28\u5448\u73b0\uff0c\u5305\u62ec\u661f\u661f\u3001\u9ed1\u6d1e\u3001\u82cf\u8054\u3002"} +{"id": "7002181", "video_name": "ef641dc5-cadc-52e3-9631-fbb4fec90c79", "text": "\u4e24\u4e2a\u4e03\u5c81\u7684\u7537\u5b69\u624b\u62ff\u9ecf\u571f\u5750\u5728\u4e00\u8d77\uff0c\u7528\u9ecf\u571f\u5236\u4f5c\u4e00\u5ea7\u5c0f\u623f\u5b50\uff0c\u52a8\u6f2b\uff0c8K\u3002"} +{"id": "2006643", "video_name": "3184ac85-49f4-5302-8356-2fdaa4362ccf", "text": "\u5feb\u901f\u62cd\u6444\u76841920\u5e74\u6c7d\u8f66\u706f\u5149\u523a\u773c\u5730\u51fa\u73b0\u4e86\u3002"} +{"id": "8003427", "video_name": "3c453098-7d61-5c78-ac06-64e5eb1446de", "text": "\u5728\u82b1\u6d77\u4e2d\uff0c\u4e00\u4f4d\u7a7f\u7740\u4e2d\u5c71\u88c5\u7684\u4e2d\u56fd\u7537\u5b50\u5fae\u7b11\u7740\u770b\u7740\u4ed6\u7a7f\u7740\u65d7\u888d\u7684\u7f8e\u4e3d\u65b0\u5a18\u3002"} +{"id": "4002043", "video_name": "876916bb-4fa3-5abd-a37d-d213508e0555", "text": "\u65b0\u52a0\u5761\u82b1\u56ed\u91cc\uff0c\u5170\u82b1\u968f\u7740\u8f7b\u98ce\u76db\u5f00\u7684\u7f8e\u666f\u3002"} +{"id": "2007401", "video_name": "3fe5b254-7bc8-5b31-86a2-1d5dc64cab91", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u665a\u4e0a\u6d77\u8fb9\u6536\u96c6\u6f02\u4eae\u7684\u5c0f\u77f3\u5934\u3002"} +{"id": "3004879", "video_name": "1c325bf6-2b94-53b5-9c08-9a4242ce54bd", "text": "\u592a\u9633\u548c\u884c\u661f\u73a9\u800d\uff0c\u800c\u6708\u4eae\u5219\u89c2\u5bdf\u5b83\u4eec\u3002"} +{"id": "2004526", "video_name": "ba5118ab-60c2-5e62-bcca-f0ffd5424de2", "text": "Source sentence: \u96e8\u4e2d\u884c\u8d70\u7684\u5b87\u667a\u6ce2\u9f2c"} +{"id": "0003349", "video_name": "3c05066b-4a17-529b-82c7-d461321bf860", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684\u623f\u5b50\u5728\u6c99\u6f20\u4e2d\uff0c\u4e00\u67b6\u5927\u578b\u65e0\u4eba\u673a\u98de\u8fc7\u3002"} +{"id": "5001660", "video_name": "f2472fb1-59e7-53ff-9418-9279ca9d1f98", "text": "\u5149\u73af\u6e38\u620f\u4e2d\u7684\u76df\u7ea6\uff0c\u9ad8\u6e05\u753b\u8d28\uff0c\u5728\u5c71\u4e18\u4e0a\u884c\u8d70\u3002"} +{"id": "4002252", "video_name": "2cccff90-a3b9-55c8-80be-9149fd095541", "text": "\u4e00\u67b6\u9065\u63a7\u98de\u673a\u5728\u7a7a\u4e2d\u9ad8\u98de\uff0c\u4e0b\u9762\u662f\u519c\u573a\u666f\u89c2\u3002"} +{"id": "2003220", "video_name": "33a4f2c2-0772-56c1-8d2f-72065b00bdd9", "text": "\u5973\u58eb\u4eec\u968f\u4e91\u98d8\u8361\u5531\u6b4c\u3002"} +{"id": "0006085", "video_name": "2667a2f8-34b8-52d5-8c2d-696ad5e4e888", "text": "Source sentence: \u4e00\u4e2a\u725b\u4ed4\u5728\u68ee\u6797\u91cc\u7528\u65a7\u5934\u780d\u6811\u3002"} +{"id": "1006198", "video_name": "718f83e7-0101-5564-a301-fdecb948bdad", "text": "\u5e78\u798f (\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf)"} +{"id": "7004521", "video_name": "efd4eb42-6535-5280-86e7-1b0b1c5c1fde", "text": "\u5728\u591c\u5e97\u4e2d\u751f\u6210\u821e\u8e48\u52a8\u4f5c\u3002"} +{"id": "4004582", "video_name": "7ee98c8f-d84c-5f2e-8b23-9d84bef65136", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u5929\u7a7a\u4e2d\u8d70\u5728\u5f69\u8679\u4e0a\u3002"} +{"id": "1006517", "video_name": "773db3ee-47c5-54b6-b192-1c49af800cdc", "text": "\u5728\u665a\u4e0a\u653e\u5927\u4e00\u4e2a\u9ed1\u6697\u53ef\u6015\u7684\u5e9f\u5f03\u52a8\u7269\u56ed\u3002"} +{"id": "8001258", "video_name": "6acf8842-1512-5838-92f0-1d91fb140ca9", "text": "\u8fd9\u662f\u7ed3\u675f\u4e86\uff0c\u7f8e\u4e3d\u7684\u670b\u53cb\uff0c\u8fd9\u662f\u7ed3\u675f\u4e86\uff0c\u6211\u7684\u552f\u4e00\u7684\u670b\u53cb\uff0c\u7cbe\u5fc3\u8ba1\u5212\u7684\u4e00\u5207\u90fd\u7ed3\u675f\u4e86\uff0c\u6240\u6709\u7684\u4e00\u5207\u90fd\u7ed3\u675f\u4e86\u3002"} +{"id": "0006037", "video_name": "256fc9f4-8130-5a55-93c8-dac985586c6f", "text": "\u4e00\u4e2a\u5c0f\u578b\u5efa\u7b51\u5de5\u5730\u4e0a\uff0cEddie\u6316\u6398\u673a\u6b63\u5728\u884c\u52a8\uff0c\u5c55\u793a\u4ed6\u5f3a\u5927\u7684\u6316\u6398\u81c2\u5728\u8fd0\u52a8\u4e2d\uff0c\u94f2\u8d77\u571f\u58e4\u3002\u80cc\u666f\u5e94"} +{"id": "3006668", "video_name": "c1c7d5f7-47cd-5ea6-b78c-0b7d6aac239b", "text": "\u4e00\u4e2a\u5973\u6027\u8131\u6389\u5979\u7684\u978b\u5b50\u3002"} +{"id": "1006033", "video_name": "6ed1213c-0cd2-5b2b-b984-8113b60f9b1c", "text": "\u4e00\u53ea\u6bdb\u8272\u5982\u706b\u7684\u96c4\u4f1f\u72d0\u72f8\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u5411\u4e00\u53ea\u80c6\u5c0f\u7684\u5154\u5b50\uff0c\u5b83\u4eec\u5904\u4e8e\u4e00\u7247\u90c1"} +{"id": "8003739", "video_name": "83205790-a589-59b4-8a36-96a45ceaad4f", "text": "\u6df1\u84dd\u8272\u7684\u80cc\u666f\uff0c\u5e26\u6709\u6d41\u52a8\u7684\u5149\u88c5\u9970\uff0c\u9b54\u6cd5\u98ce\u683c\uff0c4K\u3002\n\nSource sentence: The restaurant is closed on Mondays and Tuesdays.\n\u8fd9\u5bb6"} +{"id": "3005423", "video_name": "bb8c0064-d5f6-5292-8ef5-9224f28d12db", "text": "\u8fdb\u5165\u7ef4\u5409\u4e9a\u90a3\u52a0\u62c9\u5e1d\u56fd\u7684\u5b8f\u4f1f\u5bab\u6bbf\uff0c\u6bcf\u4e2a\u7ec6\u8282\u90fd\u662f\u5efa\u7b51\u7f8e\u5b66\u7684\u5947\u8ff9\u3002"} +{"id": "2006486", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "\u661f\u7403\u5927\u6218\u7684\u5236\u4f5c\u7167\uff0c\u7531\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa\u62cd\u6444\uff0c35\u6beb\u7c7320ASA\u67ef\u8fbe\u514b\u5f69"} +{"id": "1003923", "video_name": "486c552a-35e9-5253-8b55-362b99b05fdb", "text": "\u5305\u62ec\u4e00\u5f20\u51b0\u5c71\u524d\u65b9\u7684\u56fe\u50cf\u6216\u518d\u73b0\u3002"} +{"id": "2003096", "video_name": "0b805cd1-5b31-5941-8c3b-81908976536d", "text": "\u4e00\u540d\u7537\u5b50\u6b63\u5728\u6e9c\u65f1\u51b0\uff0c\u4ed6\u7684\u72d7\u7a81\u7136\u8ffd\u7740\u9644\u8fd1\u7684\u65e0\u4eba\u673a\u8dd1\u5f00\u4e86\uff0c\u62fd\u7740\u4e3b\u4eba\u4e00\u8d77\u7ecf\u5386\u4e86\u4e00\u6bb5"} +{"id": "8001664", "video_name": "c7ac2bd9-ad1d-5e30-b5aa-772bd71bbc8e", "text": "\u9634\u5f71\u63a0\u8fc7\u4fbf\u5f53\u76d2\u3002"} +{"id": "2007406", "video_name": "7cf2c28e-db70-5955-9030-ab4129021f54", "text": "\u4e00\u53ea\u5c0f\u732b\u548c\u4e00\u53ea\u8702\u9e1f\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "4004099", "video_name": "a76b042a-283e-5364-b0c5-8846896c5fea", "text": "\u6211\u60f3\u8981\u4e24\u4e2a\u62e5\u6709\u8d85\u80fd\u529b\u7684\u4eba\uff0c\u62ef\u6551\u4eba\u4eec\u8131\u79bb\u90aa\u6076\u7684\u4eba\uff0c\u5e76\u6210\u4e3a\u6700\u5f3a\u7684\u82f1\u96c4\u3002"} +{"id": "7002935", "video_name": "6d2b6730-c6f6-5a38-9fd7-9c5c2c9a68c4", "text": "\u4e00\u79d2\u949f\u5185\u661f\u7cfb\u7206\u70b8\u3002"} +{"id": "2004632", "video_name": "4c11f125-560c-5121-8563-90b843a99cb0", "text": "\u7261\u86ce\u7901\u7684\u571f\u5efa\u8bbe\u8ba1"} +{"id": "3005107", "video_name": "76915635-09f9-596f-a673-71ab951c1e3e", "text": "\u4e00\u53ea\u6234\u7740\u7d2b\u8272\u58a8\u955c\u7684\u5c0f\u732b\u5728\u4e00\u5bb6\u4ee5\u7f8e\u56fd\u603b\u7edf\u4e3a\u4e3b\u9898\u7684\u79d8\u5bc6\u9152\u5427\u91cc\u5439\u7740\u5c0f\u53f7\u3002 16x9"} +{"id": "2007336", "video_name": "baf4e4e2-2ee5-5e21-b6c5-0437f116b54b", "text": "\u5728\u706b\u661f\u4e0a\u7684\u65f6\u95f4\u91cc\uff0c\u8fd9\u4e2a\u56e2\u961f\u53d1\u73b0\u4e86\u8bb8\u591a\u79d1\u5b66\u53d1\u73b0\uff0c\u5305\u62ec\u884c\u661f\u4e0a\u8fc7\u53bb\u751f\u547d\u7684\u8bc1\u636e\u548c\u6709\u8da3\u7684\u5730\u8d28\u6784\u9020\u3002"} +{"id": "3005398", "video_name": "2a4d4ae6-9d4f-5542-aee1-2cbffde799ae", "text": "\u773c\u836f\u6c34\u6ef4\u5165\u773c\u4e2d\u3002"} +{"id": "8002792", "video_name": "51a5d445-150e-5ce4-a51b-58cd5c5e2e9d", "text": "\u51ac\u5929\u7684\u5c71\u666f\u5728\u8fd0\u52a8\u3002"} +{"id": "2004581", "video_name": "fadf054e-9d12-5525-a55f-b33a133364b9", "text": "\u4e66\u50cf\u4ece\u8111\u6d77\u4e2d\u4e00\u6837\u7684\u5ff5\u5934\u98de\u8d70\u3002\u4e00\u5207\u90fd\u5728\u6162\u52a8\u4f5c\u4e2d\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "5001008", "video_name": "17a78b3d-0ea4-5710-bddc-bca190a8d151", "text": "\u4e00\u4e2a1970\u5e74\u4ee3\u7684\u8001\u5f0f\u7194\u5ca9\u706f\uff0c\u4e0a\u9762\u6709\u6807\u9898\u201c1970\u5e74\u4ee3\u7194\u5ca9\u706f\u7684\u534e\u4e3d\u6545\u4e8b\u201d\u3002"} +{"id": "6004347", "video_name": "bdfd85f4-5923-5c30-93c4-747b2583e94c", "text": "\u4e00\u4e2a\u6709\u68d5\u8272\u5934\u53d1\u3001\u4e1c\u65b9\u9762\u5b54\u3001\u7a7f\u7740\u5510\u88c5\u7684\u5973\u5b69\uff0c\u80cc\u666f\u662f\u4e2d\u56fd\u5927\u5510\u5efa\u7b51\u548c\u67ab\u53f6\u67d3\u8272\u7684\u573a\u666f\u3002"} +{"id": "2007229", "video_name": "3ff872ca-8793-52f2-b386-8627d5ae7059", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u4e00\u53cc\u51ac\u5b63\u9774\u5b50\uff0c\u5728\u53e4\u8463\u5e97\u7684\u65e7\u6728\u5730\u677f\u4e0a\u8d70\u52a8\u3002\u6696\u9ec4\u8272\u7684\u706f"} +{"id": "0003784", "video_name": "4358abbd-7449-56cf-9afc-b1b11d3319b5", "text": "\u4e00\u4e2a\u9ed1\u6697\u800c\u79bb\u5947\u7684\u9601\u697c\uff0c\u53ea\u6709\u4e00\u4e2a\u975e\u5e38\u5c0f\u7684\u7a97\u6237\uff0c\u7a97\u6237\u4f3c\u4e4e\u6709\u4e00\u4e2a\u9633\u5149\u623f\u3002"} +{"id": "7004078", "video_name": "3b3b9775-38be-5d00-9fc3-1a0db166b76c", "text": "\u5916\u661f\u4e16\u754c\uff0c\u9ed1\u6697\uff0c\u7eff\u8272\u4eba\u5f62\u751f\u7269\u6b63\u5e38\u751f\u6d3b\u3002"} +{"id": "0004837", "video_name": "101499d6-85de-5f4d-adb5-164abb783429", "text": "\u4ee5\u5361\u901a\u5f62\u8c61\u4ee3\u8868\u4e00\u79cd\u7531\u4e2d\u592e\u94f6\u884c\u4e0d\u63a7\u5236\u3001\u5b8c\u5168\u53bb\u4e2d\u5fc3\u5316\u3001\u81ea\u7531\u884c\u52a8\u7684\u6570\u5b57\u8d27\u5e01\u3002"} +{"id": "2005525", "video_name": "6aaaf773-a05e-57b7-8e10-c293f1d084e0", "text": "\u6709\u566a\u58f0\u7684\u89c6\u9891\u5feb\u901f\u805a\u7126\uff0c\u63ed\u793a\u51fa\u4e00\u4e2a\u903c\u771f\u7684\u573a\u666f\u3002"} +{"id": "2006903", "video_name": "76ba2db1-ea48-5bfa-beea-71c3e29556d9", "text": "\u4e00\u95f4\u5c0f\u800c\u8d2b\u7a77\u7684\u5de5\u4e1a\u53a8\u623f\uff0c\u4f46\u5e76\u4e0d\u80ae\u810f\uff0c\u7167\u660e\u8f83\u4f4e\uff0c\u91cc\u9762\u6709\u4e24\u4e2a\u75b2\u60eb\u7684\u5de5\u4eba\u5728\u5c0f\u53a8"} +{"id": "4004364", "video_name": "0b7f016c-38cf-556f-867e-ed951ab5b526", "text": "\u4e00\u4e2a\u7a7f\u767d\u8272\u88d9\u5b50\u3001\u62e5\u6709\u84dd\u8272\u6c14\u606f\u7684\u91d1\u53d1\u5973\u5b50\u5728\u68a6\u5e7b\u7f8e\u4e3d\u7684\u522b\u5885\u82b1\u56ed\u91cc\u3002"} +{"id": "3003198", "video_name": "b71faabc-4337-5048-a5c5-0c5243d7a855", "text": "\u4e00\u4e2a\u62df\u4eba\u5316\u7684\u52a0\u53f7\u3001\u51cf\u53f7\u3001\u4e58\u53f7\u548c\u9664\u53f7\u5728\u4e00\u6761\u76f4\u7ebf\u4e0a\u8df3\u821e\uff0c\u4e0d\u505c\u5730\u8f6c\u52a8\u3002"} +{"id": "2004888", "video_name": "6f53605c-38b6-5078-8e08-f17300985742", "text": "\u7f8e\u4e3d\u7684\u6df1\u8272\u5934\u53d1\u5973\u4eba\u8f6c\u5411\u4f60\u3002"} +{"id": "6004681", "video_name": "98eb8c9e-415e-5648-8ed5-9eaffc961725", "text": "\u5c18\u5c01\u7684\u4e66\u91cc\u5145\u6ee1\u4e86\u795e\u8bdd\u751f\u7269\u7684\u6545\u4e8b\uff0c\u753b\u9762\u4e0d\u90a3\u4e48\u98d8\u6e3a\uff0c\u7565\u6709\u52a8\u6001\uff0c\u9ad8\u6e05\u6670\u5ea62k\uff0c\u8fea"} +{"id": "2006538", "video_name": "9837b4fc-67bc-5062-a8bc-4c0b81e9c262", "text": "\u624b\u52bf\u94c5\u7b14\u7d20\u63cf\u4e00\u5e45\u56fe\u50cf\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u534a\u4e2a\u6ca1\u6709\u4e91\u6735\u7684\u5929\u7a7a\u548c\u534a\u4e2a\u4e91\u6735\u5728\u98ce\u4e2d\u5feb\u901f\u53d8\u5316\u548c\u79fb"} +{"id": "1003118", "video_name": "3956334e-b68b-53d7-b9a1-71cbcb4e7d1d", "text": "\u5496\u5561\u8c46\u7684\u5fae\u89c2\u89c6\u89d2\u5230\u6574\u4e2a\u79cd\u690d\u56ed\u7684\u5e7f\u9614\u666f\u8c61\u3002"} +{"id": "1003151", "video_name": "3a16717f-e78a-5113-bec1-9ca8a807aa4b", "text": "\u5934\u53d1\u98d8\u52a8\u7740\uff0c\u5fae\u7b11\u7740\uff0c\u68b3\u7406\u7740\uff0c\u5411\u4f60\u6253\u62db\u547c\u3002"} +{"id": "7004889", "video_name": "42248891-91ef-58d8-8aa4-fd8457e255f2", "text": "\u5728\u52a8\u753b\u4e2d\u5e94\u8be5\u6709\u8759\u8760\u4fa0\u548c\u8718\u86db\u4fa0\u4e4b\u95f4\u7684\u6218\u6597\u3002"} +{"id": "3006729", "video_name": "3cc7b8bb-46b5-56e5-8645-69e2934cbc8f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u955c\u5b50\u524d\u68c0\u67e5\u4ed6\u7684\u5986\u5bb9\u3002"} +{"id": "1004284", "video_name": "4f3b2f4f-3512-57e9-b311-7d4de391c4b5", "text": "\u573a\u666f\u6253\u5f00\uff0c\u6620\u5165\u773c\u5e18\u7684\u662f\u8352\u51c9\u7684\u706b\u5c71\u666f\u89c2\uff0c\u63ed\u793a\u4e86\u884c\u661f\u7a46\u65af\u5854\u6cd5\u5c14\u3002\u7194\u5ca9\u6d41\u52a8\uff0c\u706b\u5c71"} +{"id": "5001332", "video_name": "78ae4ca7-7fb2-5a6a-85ad-0d449e25550e", "text": "\u53e4\u57c3\u53ca\uff0c\u91d1\u5b57\u5854\u7684\u5efa\u9020\uff0c\u5de8\u5927\u7684\u72ec\u5757\u77f3\u5934\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\uff0c\u524d\u666f\u4e2d\u662f\u4e00\u4e2a\u6234\u7740\u91d1\u8272\u57c3\u53ca\u5934"} +{"id": "0005118", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "\u673a\u5668\u4eba\u5728\u5bc6\u6b47\u6839\u5927\u8857\u4e0a\u884c\u8fdb"} +{"id": "3006950", "video_name": "e7ed2e11-51fb-5c4e-b108-04130f523f54", "text": "\u4e00\u53ea\u5f39\u5409\u4ed6\u7684\u8783\u87f9\uff0c\u5361\u901a\uff0c2D\u52a8\u753b\u3002"} +{"id": "7004089", "video_name": "8186b63d-d722-5c4b-91ee-352a09ea91b0", "text": "\u4e00\u90e8\u73b0\u5b9e\u4e3b\u4e49\u76841970\u5e74\u4ee3\u827a\u672f\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u5efa\u9020\u4e00\u8f86\u6709\u9b54\u529b\u76841938\u798f\u7279\u70ed"} +{"id": "2004984", "video_name": "887b0b0f-9265-529b-8557-fe0358672e72", "text": "\u4e00\u4f4d\u5e74\u8f7b\u3001\u7f8e\u4e3d\u3001\u82d7\u6761\u7684\u58a8\u897f\u54e5\u5973\u5b50\u6b63\u5728\u4e00\u5bb6\u5145\u6ee1\u9713\u8679\u706f\u7684\u5c0f\u9152\u9986\u91cc\u4e0e\u5979\u7684\u670b\u53cb"} +{"id": "2006598", "video_name": "064f2c3b-0ae2-52b5-a0e4-0c8fade28c9a", "text": "\u4e00\u4e2a\u5deb\u5e08\u5728\u7535\u8111\u4e0a\u62bd\u70df\u3001\u505a\u97f3\u4e50\u5e76\u8c08\u8bba\u5b83\u4eec\u3002"} +{"id": "0003527", "video_name": "3f014996-6c10-5728-af66-4ec7a0047d6f", "text": "\u7ebd\u7ea6\u5730\u94c1\u6240\u6709\u8f66\u53a2\u90fd\u6d82\u6210\u7c89\u8272\u548c\u7d2b\u8272\u5927\u8c61\uff0c\u903c\u771f\u5e7b\u60f3\uff0c9:16 AR\u3002\u4fe1\u606f\uff1aG A G CITY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6004261", "video_name": "1041cc1a-d181-5078-a30f-cfacfea2eb14", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u8bb2\u8ff0\u4e00\u4e2a\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "2005174", "video_name": "7ccc59cc-09b3-5689-b894-33654419d229", "text": "\u4e00\u4e2a\u6709\u7c89\u8272\u5929\u7a7a\u3001\u843d\u4e0b\u661f\u661f\u3001\u5927\u6811\u7f13\u6162\u6447\u52a8\u3001\u82b1\u6735\u6709\u8fd0\u52a8\u7684\u795e\u5947\u68ee\u6797\u3002"} +{"id": "0003015", "video_name": "35a1645f-73ea-5599-8179-0ef4cd7fb39a", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5c0f\u5154\u5b50\u5174\u594b\u5730\u8df3\u4e86\u8d77\u6765\uff0c\u51fa\u53d1\u4e86\u3002\u4ed6\u8df3\u8fc7\u7530\u91ce\u548c\u68ee\u6797\uff0c\u4e00\u76f4\u5411\u524d\u8d70\u3002"} +{"id": "1004415", "video_name": "519d9ef1-6722-5f85-8b23-d1d9ec0015ee", "text": "\u51b2\u6d6a\u8005\u5728\u590f\u5a01\u5937 \u4fe1\u606f\uff1aSOUFIANE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7002387", "video_name": "0b28834a-a18d-52f6-b338-1cbab091755c", "text": "\u4e00\u4e2a\u5e7c\u513f\u4f5b\u9640\u5728\u52a8\u6f2b\u98ce\u683c\u7684\u7535\u8111\u4e0a\u7f16\u7a0b\u3002"} +{"id": "5001358", "video_name": "b70f1055-7eaf-5492-a357-36a53c3255f3", "text": "\u4e2d\u4e16\u7eaa\u57ce\u5e02\u88ab\u761f\u75ab\u8986\u76d6\uff0c\u6444\u50cf\u673a\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "4002878", "video_name": "344b4c23-9e32-5d08-bda5-48ad2ce734bc", "text": "\u4e00\u4e2a\u8001\u5e74\u7537\u5b50\u5361\u901a\u89d2\u8272\u5728\u6e38\u620f\u623f\u95f4\u91cc\uff0c\u7d2b\u8272\u80cc\u666f\uff0c\u573a\u666f\u7535\u5f71\u5316\uff0c\u5168\u9ad8\u6e05\u3002"} +{"id": "4003652", "video_name": "58a82248-4ae9-5aee-9eb3-ed4a868450e9", "text": "\u4e00\u5f20\u56fe\u7247\uff0c\u5176\u4e2d\u4e00\u4e2a\u5370\u5ea6\u5723\u4eba\u548c\u4e00\u53ea\u72d0\u72f8\u76f8\u4e92\u6ce8\u89c6\uff0c\u80cc\u666f\u662f\u4e00\u7247\u6e56\u6cca\u3002"} +{"id": "0006167", "video_name": "2798d49d-6c93-5b14-9adf-9eef664b4438", "text": "\u7528\u9713\u8679\u706f\u548c\u6d3e\u5bf9\u6c1b\u56f4\u521b\u9020\u672a\u6765\u4e3b\u4e49\u52a8\u611f\u573a\u666f\u3002"} +{"id": "7002853", "video_name": "e040eff3-7cda-5b38-bf28-f28fea8ffa4c", "text": "\u4ece\u513f\u7ae5\u5361\u901a\u89c6\u9891\u4e2d\u6458\u5f55\u4efb\u4f55\u4e00\u4e2a\u542b\u6709\u8bb8\u591a\u7f57\u671b\u5b50\u7684\u7f57\u671b\u5b50\u6811\u7684\u89c6\u9891\u3002"} +{"id": "8001335", "video_name": "2a8db850-ed2e-5cd1-9fac-9eeea3be8f4f", "text": "\u5723\u5df4\u5df4\u62c9\u6cc4\u6f0f\u4e8b\u4ef6\u9020\u6210\u7684\u5fae\u5999\u751f\u6001\u7cfb\u7edf\u6b63\u5728\u52aa\u529b\u6062\u590d\u3002"} +{"id": "0006114", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "\u4e09\u4e2a\u4eba\u5728\u6d77\u4e0a\u7684\u8239\u4e0a\u3002"} +{"id": "8001043", "video_name": "1d0cde3d-909c-5b20-ae50-6a1d98ded88d", "text": "\u4e16\u754c\u4e0a\u6700\u53ef\u7231\u7684\u5b9d\u5b9d\u5fae\u7b11\u7740\u3002"} +{"id": "2006088", "video_name": "335a0d40-c121-517b-a22b-4ac111a1f5ff", "text": "\u5728\u7a7a\u5730\u4e0a\u7684\u52a8\u7269\u4eec\u5206\u4eab\u5173\u4e8e\u56e2\u7ed3\u4ee5\u53ca\u5171\u540c\u52aa\u529b\u6240\u5e26\u6765\u7684\u529b\u91cf\u7684\u6545\u4e8b\u3002\u4e09\u7ef4\u5f69\u8272\u52a8\u753b\u3002"} +{"id": "6004056", "video_name": "19dba978-13e5-5559-b599-5f56b00d1741", "text": "20\u4e16\u7eaa90\u5e74\u4ee3\u97f3\u4e50\u7684\u53ef\u89c6\u5316\u3002"} +{"id": "0004823", "video_name": "0fc6ffee-7584-5072-aa51-2dfb21096cb3", "text": "\u5e74\u8f7b\u6210\u5e74\u4eba\u9080\u8bf7\u4eba\u4eec\u5173\u6ce8YWAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7002416", "video_name": "4a5e7fcb-66a0-5d59-9303-30b68062c3e3", "text": "\u6211\u5e0c\u671b\u5b66\u751f\u4eec\u80fd\u591f\u6325\u52a8\u5979\u4eec\u7684\u9b54\u6756\u5e76\u65bd\u6cd5\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002574", "video_name": "24c0eeee-d014-52a4-af35-b41d1b9c6b8e", "text": "\u795e\u79d8\u7684\u6d1e\u7a74\u5165\u53e3\u88ab\u85e4\u8513\u8986\u76d6\u7740\uff0c\u95ea\u8000\u7740\u865a\u5e7b\u7684\u5149\u8292\uff0c\u5f15\u8bf1\u7740Leo\u548cT"} +{"id": "8001791", "video_name": "533d6b61-4e59-5491-8213-a85c7e4cddeb", "text": "\u8239\u957f\u62c5\u4efb\u6307\u6325\u5b98\u3002"} +{"id": "3003863", "video_name": "20d3cc22-dbab-5281-a75c-edec1fa66c4b", "text": "\u4e00\u4e2a\u4f5b\u9640\u548c\u4ed6\u7684\u5f1f\u5b50\u4eec\u8d70\u8fc7\u4e00\u68f5\u6811\u65c1\uff0c\u770b\u89c1\u4e00\u53ea\u8001\u9e70\u548c\u4e00\u53ea\u4e4c\u9e26\u4e3a\u4e86\u4e00\u5757\u8150\u8089\u6253"} +{"id": "1006499", "video_name": "76fd51f3-c1d1-5462-bbcd-93dc0a4f19d3", "text": "\u7528\u8c1c\u4e4b\u667a\u8005\u6e38\u620f\u89d2\u8272\u7684\u8f6e\u5ed3\u521b\u4f5c\u4e00\u5e45\u81ea\u7136\u98ce\u666f\u753b\u3002"} +{"id": "1006462", "video_name": "765122e6-239b-5ee5-908d-9e770a18a26e", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u771f\u5b9e\u5730\u65cb\u8f6c\uff0c\u6700\u7ec8\u5230\u8fbe\u83ab\u65af\u79d1\u57ce\u5e02\u3002"} +{"id": "8003886", "video_name": "b2a46dbd-78f6-566d-a413-be291b2634e9", "text": "\u9996\u5148\uff0c\u4eba\u7c7b\u4ef0\u671b\u5b87\u5b99\u3002"} +{"id": "0006039", "video_name": "2576d871-89fa-5e01-9f05-8243af6fb2e3", "text": "\u98de\u884c\u5458\u548c\u7a7a\u59d0\u5728\u9a7e\u9a76\u8231\u91cc\u4ea4\u8c08\uff0c\u4ed6\u4eec\u5750\u5f97\u5f88\u9ad8\u5174\u3002"} +{"id": "6002616", "video_name": "d23d5a86-50e3-5a36-bce8-706345f446a6", "text": "\u5de6\u53f3\u6643\u52a8\u4f60\u7684\u5934\u5bfb\u627e\u67d0\u7269\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003870", "video_name": "f13b5e9d-f392-5335-9e7d-d1d3635a81d7", "text": "\u4e00\u4f4d\u7a7f\u7740\u79d1\u6280\u98ce\u683c\u670d\u88c5\u3001\u56bc\u7740\u53e3\u9999\u7cd6\u7684\u7537\u6027\u89d2\u8272\u3002"} +{"id": "6002905", "video_name": "275d2828-ad7f-5a1b-bbaa-db9209a0fa6e", "text": "\u4e00\u5e45\u8352\u51c9\u800c\u6734\u7d20\u7684\u4e61\u6751\u623f\u5c4b\u56fe\u7247\uff0c\u63cf\u7ed8\u4e86\u7537\u5b69\u548c\u4ed6\u7684\u5bb6\u5ead\u7684\u8c26\u900a\u8d77\u70b9\u3002"} +{"id": "4002915", "video_name": "78b52da2-ae61-5aa3-99d7-0178d594ba30", "text": "F.R.I.E.N.D.S\u7535\u89c6\u5267\u4e2d\u7684\u89d2\u8272\u94b1\u5fb7\u52d2\u00b7\u5bbe\u683c\u7ad9\u5728\u4e2d\u5fc3\uff0c\u9762\u5e26\u5fe7\u90c1\u795e\u8272\uff0c\u7f57\u65af\u3001\u4e54\u4f0a"} +{"id": "0004026", "video_name": "01be4e3e-5219-5874-ba22-8058101014b7", "text": "\u4e30\u7530\u7687\u51a0\u6c7d\u8f66\u5728\u8d2d\u7269\u4e2d\u5fc3\u505c\u8f66\u573a\u6f02\u79fb\u3002"} +{"id": "3005529", "video_name": "11e7ab4f-9048-5874-8c21-602556d1ecf7", "text": "\u79d1\u6280\u827a\u672f\uff0c\u5973\u6027\u673a\u5668\u4eba\uff0c\u4f7f\u7528\u5168\u606f\u5c4f\u5e55\u5de5\u4f5c\u3002"} +{"id": "4004599", "video_name": "81befd16-2bfb-5c47-85fd-503888bc59a1", "text": "\u96ea\u5c71\u4e0b\u7684\u623f\u5b50"} +{"id": "5001905", "video_name": "0befa07c-97d4-50bd-b369-56cddf198593", "text": "\u4e00\u53ea\u88ab\u70b9\u71c3\u7684\u6728\u5076\uff0cVHS\uff0c1970\u5e74\u4ee3\u7684\u6559\u80b2\u7535\u5f71\uff0c\u6545\u969c\u3002"} +{"id": "1006537", "video_name": "77c6dde9-c8c9-5d77-a72f-b507ae447791", "text": "\u4e00\u8258\u7ecf\u8fc7\u7801\u5934\u7684\u8239\u3002"} +{"id": "8001910", "video_name": "1e0174bc-07ec-5d15-bd5d-8de6b23ff844", "text": "\u8003\u62c9\u5377\u8d77\u4e00\u4e2a\u58a8\u897f\u54e5\u5377\u997c\uff0c\u903c\u771f\u7684\u7535\u5f71\u3002"} +{"id": "3006592", "video_name": "09f6c767-7a25-5272-882e-ceba00870d01", "text": "\u6709\u4e00\u70b9\u96e8\u548c\u6811\u7684\u6643\u52a8\u3002"} +{"id": "4002641", "video_name": "eccd0827-499c-59fe-9121-bbecbf4a0cd5", "text": "\u4f26\u6566\u81ea\u884c\u8f66\u9a91\u884c\uff0c\u65e0\u8f66\uff0c16:9\u3002"} +{"id": "8002328", "video_name": "88a78656-38de-5136-890d-8e46757706bb", "text": "Gojo\u548c\u5d07\u540d20\u6307\u529b\u91cf\u7684\u52a8\u6f2b\u98ce\u683c\u5bf9\u6218\u3002"} +{"id": "1005544", "video_name": "66166a9d-d743-500a-910d-e4df5f92bfea", "text": "\u4e00\u7fa4\u591a\u5143\u5316\u7684\u5458\u5de5\u7ad9\u5728\u4e00\u8d77\uff0c\u5fae\u7b11\u7740\u8ba8\u8bba\u5de5\u4f5c\u3002"} +{"id": "1005025", "video_name": "5cf875f9-f6c8-513b-97e2-479c9f93c612", "text": "\u59d4\u5185\u745e\u62c9\u5987\u5973\u5728\u62c9\u683c\u5170\u8428\u74e6\u7eb3\u884c\u8d70\uff0c\u62cd\u7167\uff0c\u65e5\u843d\uff0c\u903c\u771f\u3002"} +{"id": "8001227", "video_name": "612d1b5a-63a2-5bde-b2d1-f53e27ccfb3b", "text": "\u5973\u5b69\u7ad9\u5728\u821e\u53f0\u4e2d\u592e\u3002"} +{"id": "5001359", "video_name": "fe13f437-d808-5959-99b8-c58c1be2a982", "text": "\u4ee5\u9ec4\u6a59\u8272\u6e10\u53d8\u4e3a\u5e95\u8272\u7684\u7b80\u5355\u7248\u6d85\u69c3\u5fae\u7b11\u8868\u60c5\u56fe\u6807\u3002"} +{"id": "1004814", "video_name": "58fcef7d-496e-5c0c-811a-7615db3f92e4", "text": "Minecraft Steve\u5728\u4ed6\u7684\u623f\u5b50\u91cc\u548c\u4ed6\u7684\u72d7\u5728\u6728\u5730\u677f\u4e0a\u7761\u89c9\uff0c\u5e73\u9759\u5730\u751f\u6d3b\u7740\u3002"} +{"id": "0004437", "video_name": "09111a1b-d004-528e-b1a8-fac216c68a1e", "text": "\u4f60\u4eec\u8fd9\u4e9b\u592a\u7a7a\u65c5\u884c\u8005\uff0c\u4f60\u4eec\u8ba4\u4e3a\u5462\uff1f"} +{"id": "8002996", "video_name": "4fff45e8-bd74-5be5-9c70-1fb6dd5c57ae", "text": "\u4e00\u53ea\u6234\u7740\u9886\u5e26\u7684\u732b\u9f2c\u5728\u6559\u5176\u4ed6\u732b\u9f2c\u4e0a\u8bfe\u3002"} +{"id": "8001748", "video_name": "dee9c24e-8cbf-5ef1-b04f-1489833861ce", "text": "\u5916\u661f\u4eba\u5230\u5904\u8d70\u52a8\u5e76\u653e\u706b\u3002"} +{"id": "6002674", "video_name": "ac73eaa3-efdb-5458-b6ed-dc0b4b46ac26", "text": "\u521b\u4f5c\u4e00\u4e2a\u5ba3\u4f20\u89c6\u9891\uff0c\u4ecb\u7ecd\u83b7\u80dc\u8005\u53bb\u4e2d\u5fc3\u5316\u533a\u5757\u94fe\u6e38\u620f\u3002"} +{"id": "1005182", "video_name": "5f5a166e-a743-57f6-b91e-028fdeacecc4", "text": "\u9ed1\u5ba2\u8fdb\u5165\u4e86\u68da\u5c4b\u7684\u89c6\u9891\u623f\u95f4\u3002"} +{"id": "1006857", "video_name": "7d35bcdd-3ad5-5dd7-beb8-33053bc9e8c8", "text": "\u9e35\u9e1f\u5728\u9ec4\u660f\u65f6\u5206\u7a7f\u8d8a\u6c99\u6f20\u65f6\uff0c\u8fc8\u51fa\u5927\u6b65\u4f10\uff0c\u72b9\u5982\u7535\u5f71\u4e2d\u83b7\u5956\u7684\u955c\u5934\u3002"} +{"id": "4003856", "video_name": "7ab44961-df76-576d-bd53-24b259a93f3a", "text": "Source sentence translation: \u8ff7\u4eba\u7684\u68ee\u6797\u5c0f\u5f84\uff1a\u873f\u8712\u7684\u68ee\u6797\u5c0f\u5f84\u4e24\u4fa7\u662f\u9ad8\u8038\u7684\u6811\u6728\uff0c\u5b83\u4eec\u7684\u53f6\u5b50\u5f62\u6210\u4e86"} +{"id": "5001484", "video_name": "bdefc9a8-1e6d-504c-a434-a6bd4ee2a07d", "text": "\u4e00\u4e2a\u7b11\u5bb9\u707f\u70c2\u7684\u5973\u5b69\u62ff\u7740\u4e00\u5ea7\u91d1\u8272\u5956\u676f\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "8001828", "video_name": "7cb1a688-2f8b-51a6-897d-a3933f73fb99", "text": "\u4f20\u8bf4\u4e2d\u7684\u6d77\u602a\u514b\u62c9\u80af\u4ece\u6df1\u6d77\u4e2d\u51fa\u73b0\uff0c4k\u9ad8\u6e05\u3002"} +{"id": "4002057", "video_name": "c7c11b00-15ee-5dca-8e52-5ecb0fa7440e", "text": "\u4f4e\u591a\u8fb9\u5f62\u5c71\u533a\u5ea6\u5047\u6751\u7684\u4eba\u4eec\u5728\u6ed1\u96ea\u3002"} +{"id": "0004014", "video_name": "01903378-12e3-549e-89dd-646bfb32c649", "text": "\u4e00\u53ea\u6811\u61d2\u62ff\u7740\u73bb\u7483\u676f\uff0c\u5bf9\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "8002282", "video_name": "76d0fc94-985b-5815-8458-641e934fe4b8", "text": "\u6444\u50cf\u673a\u5728\u591c\u665a\u6ee1\u6708\u4e0b\u7684\u6d53\u5bc6\u9ed1\u8272\u9488\u53f6\u68ee\u6797\u7684\u6811\u7ebf\u4e0a\u79fb\u52a8\uff0c\u5149\u7167\u4e0d\u5747\u3002"} +{"id": "7004908", "video_name": "7e8a0410-753e-570b-84e0-d9d937f0d5c3", "text": "\u50cf\u57fa\u4e9a\u62c9\u00b7\u963f\u5fb7\u74e6\u5c3c\u4e00\u6837\uff0c\u4ed9\u5973\u9ad8\u5206\u8fa8\u7387\uff0c\u5fae\u7b11\u7740\uff0c\u98de\u7fd4\u7740\uff0c\u7fc5\u8180\u9c9c"} +{"id": "8003338", "video_name": "37a9fb77-acb2-57ea-bb50-075b0e6a70c5", "text": "\u8001\u4eba\u72ec\u81ea\u7ad9\u5728\u6237\u5916\uff0c\u5929\u7a7a\u4e2d\u98d8\u843d\u7740100\u7247\u843d\u53f6\u3002\u8272\u5f69\u4e30\u5bcc\u3001\u751f\u52a8\u5feb\u4e50\u3002"} +{"id": "0004688", "video_name": "0d53d2f0-4f1c-5f65-81d8-ecb88b671760", "text": "\u52a8\u6f2b\u60c5\u4fa3\u5728\u6d77\u6ee9\u4e0a\uff0c\u4fe1\u606f\uff1a\u7231\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "1003694", "video_name": "44164afa-b20a-5e26-9fff-50a57b45daf8", "text": "\u4e00\u53ea\u5927\u7329\u7329\u6b63\u5728\u8bad\u7ec3\u9a6c\u62c9\u677e\u3002"} +{"id": "6004981", "video_name": "7ab44961-df76-576d-bd53-24b259a93f3a", "text": "Source sentence translation: \u8ff7\u4eba\u7684\u68ee\u6797\u5c0f\u5f84\uff1a\u873f\u8712\u7684\u68ee\u6797\u5c0f\u5f84\u4e24\u4fa7\u662f\u9ad8\u8038\u7684\u6811\u6728\uff0c\u5b83\u4eec\u7684\u53f6\u5b50\u5f62\u6210\u4e86"} +{"id": "8001236", "video_name": "f49204b5-dd59-572c-bc76-1c88901ba04c", "text": "\u5f53\u4e4c\u6258\u90a6\u5d29\u6e83\u65f6\uff0c\u6709\u4e9b\u4eba\u4f1a\u7b11\u5f97\u54ed\u51fa\u6765\u3002"} +{"id": "0004382", "video_name": "080a6c51-d19e-524b-99ed-b1a98c672811", "text": "\u5f88\u591a\u6751\u6c11\u90fd\u7ad9\u5728\u8001\u4eba\u9762\u524d\uff0c\u53cc\u624b\u5408\u5341\u3002"} +{"id": "2007608", "video_name": "e397e130-bf80-5780-bbcd-4b0f8af1c7af", "text": "\u521b\u9020\u4e00\u5e45\u5145\u6ee1\u7231\u3001\u6b22\u7b11\u548c\u821e\u8e48\u7684\u753b\u9762\u3002"} +{"id": "3005022", "video_name": "cdc43a9c-6d28-52d6-a2cb-f43603ca67da", "text": "\u6bcd\u4eb2\u548c\u5979\u7684\u513f\u5b50\u8fdb\u5165\u623f\u5c4b\u3002"} +{"id": "6003667", "video_name": "a2b5f41d-39c9-55f8-a58d-1c7ebfe7f2d8", "text": "\u7537\u5b69\u548c\u9e7f\u5728\u68ee\u6797\u6728\u5c4b\u91cc\u7684\u71c3\u70e7\u58c1\u7089\u65c1\u6162\u6162\u5165\u7761\u3002"} +{"id": "1003757", "video_name": "454869da-7ab2-5a0c-b327-4ba16d0124b8", "text": "\u585e\u7f2a\u5c14\u00b7\u6770\u514b\u900a\u626e\u6f14\u963f\u51e1\u8fbe\u89d2\u8272\u3002 \n\nSource sentence: I love eating sushi. \n\u6211\u559c\u6b22\u5403\u5bff\u53f8\u3002"} +{"id": "8003857", "video_name": "ac962520-6c90-537a-acd2-5dcfa9e5e7ba", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u4eba\u4eba\u9c7c\uff0c\u5927\u7801\u53f7\uff0c\u9ad8\u5149\u6cfd\uff0c\u52a8\u6001\u59ff\u52bf\uff0c\u5168\u666f\u5728\u70ed\u5e26\u6c34\u57df\u4e2d\uff0c\u7559\u7740\u5377"} +{"id": "1004426", "video_name": "51e8ddd2-b675-57e4-8ce7-79b3dff9afd5", "text": "\u4e00\u500b\u5728\u68ee\u6797\u4e2d\u7684\u5b69\u5b50\uff0c\u4ed6\u7684\u53f2\u8a69\u3002\u6211\u73fe\u5728\u611f\u5230\u5bb3\u6015\u3002\u6b63\u78ba\u7684\u8def\u5728\u54ea\u88e1\uff1f\u4ed6\u5411\u524d\u8d70\u4e26"} +{"id": "8003926", "video_name": "39a4906b-4ce2-5680-b6a9-1331ad02096f", "text": "\u6c89\u8239\u548c\u9c7c\u7fa4\u3002"} +{"id": "3006651", "video_name": "15469d02-cbdd-5f95-b1b1-8cb505ae8791", "text": "\u7535\u5f71\u822c\u7684\u7f29\u653e\uff0c\u5c06\u4e00\u4e2a\u5728\u70db\u5149\u4e0b\u7684\u623f\u95f4\u91cc\u653e\u5728\u684c\u5b50\u4e0a\u7684\u53d1\u5149\u5c0f\u73bb\u7483\u74f6\u62cd\u6444\u6210\u4fef\u89c6"} +{"id": "6003869", "video_name": "d14ed0fb-9ebd-5c15-9c6b-231733fe239d", "text": "\u6211\u68a6\u89c1\u4e00\u53ea\u84dd\u8272\u7684\u5927\u8c61\uff0c\u5b83\u7528\u8033\u6735\u6247\u98de\u7fd4\u7740\u3002\u6211\u68a6\u89c1\u4e00\u53ea\u84dd\u8272\u7684\u5927\u8c61\uff0c\u5b83"} +{"id": "2006581", "video_name": "97c3197e-c522-5fc8-80a0-894112147285", "text": "\u8bf7\u7528\u751f\u52a8\u5f62\u8c61\u7684\u65b9\u5f0f\u63cf\u7ed8\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u516c\u4ea4\u8f66\u7ad9\u573a\u666f\uff0c\u5b69\u5b50\u4eec\u6b63\u8feb\u4e0d\u53ca\u5f85\u5730\u7b49\u5f85\u516c\u4ea4\u8f66\u7684\u5230\u6765\u3002\u5c55\u793a"} +{"id": "3003196", "video_name": "273013a2-13dc-5b49-a818-3299a5d449f1", "text": "\u5f53\u6444\u50cf\u673a\u653e\u5728\u80cc\u9762\u65f6\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u57c3\u53ca\u6cd5\u8001\u4ece\u80cc\u9762\u4e3e\u8d77\u624b\u81c2\uff0c\u80cc\u666f\u662f\u7eff\u8272\u7684\u3002"} +{"id": "4003687", "video_name": "f6676c65-a5bc-5ae9-9d42-e36fc3bb3cea", "text": "\u4e0d\u540c\u7684\u4e91\u6735\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "3004186", "video_name": "99093518-eb30-5c91-997c-d685b5824d1f", "text": "\u5723\u8bde\u8001\u4eba\u7684\u7cbe\u7075\u5728\u5236\u4f5c\u8f6f\u7cd6\uff0c\u5012\u5165\u7194\u5316\u7684\u5de7\u514b\u529b\u3002"} +{"id": "4003768", "video_name": "5be2ac39-3fae-52ce-a1ac-d5b949c50a3a", "text": "\u4e00\u53ea\u6709\u7740\u767d\u8272\u548c\u7d2b\u8272\u7fbd\u6bdb\u7684\u9e1f\u513f\u6816\u606f\u5728\u4e00\u68f5\u6811\u4e0a\uff0c4K\u5206\u8fa8\u7387\u3002"} +{"id": "4002535", "video_name": "be7261b2-63c4-5402-bcd3-347699bddccb", "text": "\u5feb\u4e50\u7684\u5c0f\u9c7c\u5b9d\u5b9d\u5728\u6c34\u9762\u4e0a\u8df3\u8dc3\uff0c\u4ee5\u5361\u901a\u52a8\u753b\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "0004648", "video_name": "0ca164a9-06e4-5b0d-b086-b04685a391aa", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u9713\u8679\u95ea\u8000\u7684\u57ce\u5e02\uff0c\u9e1f\u77b0\u56fe\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c"} +{"id": "3005619", "video_name": "e035f0fc-cdba-57c3-9984-4bd7d42d5e23", "text": "\u5370\u5ea6\u7684\u6c49\u8bfa\u66fc\u795e\u53d8\u6210\u7ea2\u8272\u7684\u6c49\u8bfa\u66fc\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "3006431", "video_name": "e966503c-adb6-5d5f-afa4-7b8bc38ffb3d", "text": "\u795e\u5947\u7684\u68ee\u6797\u91cc\u6709\u4e00\u68f5\u6811\u548c\u6e29\u6696\u7684\u706f\u5149\u3002\u4fe1\u606f\uff1aHEDERA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2007589", "video_name": "c146950f-289b-5ec5-972b-f79501d5594d", "text": "\u4f60\u597d\uff0c\u661f\u671f\u4e00\uff0c\u6d77\u6ee9\u4e0a\u7684\u6c1b\u56f4\u5f88\u8212\u9002\u3002"} +{"id": "0006887", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "\u7ea2\u8272\u5fc3\u5f62\u7011\u5e03\u88c5\u9970\u7740\u767d\u8272\u7a7a\u767d\u533a\u57df\u3002"} +{"id": "4004510", "video_name": "863b8959-5223-59a2-87d8-0058e8941485", "text": "\u753b\u4e00\u5e45\u5154\u5b50\u548c\u732b\u7684\u56fe\u7247\u3002"} +{"id": "3006894", "video_name": "64924210-b869-50c9-8c20-07364eb407db", "text": "\u56db\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6d77\u8fb9\u8df3\u821e\uff0c\u65e5\u843d\u7f8e\u4e0d\u80dc\u6536\u3002"} +{"id": "2006898", "video_name": "fcdaa820-6251-5dcb-a1a5-188ac3076acb", "text": "\u4e00\u6bb5\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u6765\u81eaARRI\u76f8\u673a\uff0c\u5b9d\u83b1\u575e\u5973\u6f14\u5458\u5728\u8df3\u821e\uff0c\u7ebd\u7ea6\u8857\u666f\uff0c\u771f\u5b9e\u7684\u76ae\u80a4\u7279"} +{"id": "1003476", "video_name": "406d7d58-1853-5a11-beb3-f8fb10e20558", "text": "\u968f\u7740\u5bf9\u8bdd\u50cf\u4ece\u6ecb\u6ecb\u4f5c\u54cd\u7684\u83dc\u80b4\u4e0a\u5347\u8d77\u7684\u82b3\u9999\u84b8\u6c7d\u4e00\u6837\u65cb\u8f6c\uff0c\u624b\u52bf\u6bd4\u8bed\u8a00\u66f4\u6709\u529b\u91cf\u3002"} +{"id": "4003144", "video_name": "56c25583-df77-5c32-ad3b-a4538c937e82", "text": "\u573a\u5730\u66f2\u68cd\u7403\u8fd0\u52a8\u5458\u7a7f\u7ea2\u8272\u5236\u670d\uff0c\u9ec4\u8272\u978b\u5b50\uff0c\u6b63\u5728\u8fd0\u52a8\u3002"} +{"id": "4004523", "video_name": "7947cc1d-2aea-53af-a727-088fad2101f0", "text": "\u534f\u52a9\u7ecf\u7406\uff0c\u53f2\u8bd7\uff0c\u519b\u4e8b\uff0c\u7830\uff0c\u7206\u70b8\uff0c\u6838\u3002"} +{"id": "0006384", "video_name": "2b8d2c0a-a771-5a9f-8d5d-19403892815e", "text": "\u4eba\u4eec\u6b63\u5728\u5954\u8dd1\u8fdb\u5165\u68ee\u6797\u3002"} +{"id": "2005353", "video_name": "81ecf6ed-29df-5173-88df-bf4b19db2e20", "text": "\u73a9\u5177\u9ca8\u9c7c\u9ccd\u5728\u6d77\u6d0b\u4e2d\u79fb\u52a8\u7684\u4fef\u89c6\u56fe\uff0c\u6d77\u6d0b\u548c\u5929\u7a7a\u4e3a\u80cc\u666f\uff0c\u91c7\u7528\u4ea8\u5229\u00b7\u585e\u5229\u514b\u7684\u505c"} +{"id": "4004711", "video_name": "00e4e5d0-c850-5f7e-bdd6-d8cf5d6d6712", "text": "\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u8dd1\u6b65\uff0c\u5947\u514b\u62c9\u7eb3\uff0c4K\u3002"} +{"id": "2005742", "video_name": "67313abc-5067-50b4-ace4-47338931b92d", "text": "\u4e00\u8f86\u6551\u62a4\u8f66\u505c\u5728\u8def\u8fb9\u3002\u4e00\u4e2a\u7537\u4eba\u8eba\u5728\u62c5\u67b6\u4e0a\u3002"} +{"id": "4002556", "video_name": "8f09bcec-521f-5703-8ad1-b0de5fc9802b", "text": "\u8def\u798f\u65af\u72ac\u8dd1\u8fc7\u4e00\u7fa4\u6b63\u5728\u4eab\u53d7\u91ce\u9910\u7684\u5b69\u5b50\u3002"} +{"id": "7002475", "video_name": "5e452efa-4488-55d9-b483-5b093a3197dc", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6316\u4e00\u4e2a\u6d1e\uff0c\u52a8\u4f5c4\u3002"} +{"id": "1004750", "video_name": "57edbe68-98ab-5198-a331-ab192fd46b8f", "text": "\u4e00\u4f4d\u773c\u775b\u95ed\u7740\u3001\u9676\u9189\u7684\u5973\u4eba\u3002"} +{"id": "6002119", "video_name": "fe18b505-2da9-5d87-a9fb-cc027d9c91b1", "text": "\u56db\u5343\u53ea\u6c34\u6bcd\u5728\u5929\u7a7a\u4e2d\u6e38\u8fc7\u4e91\u5c42\uff0c1970\u5e74\uff0cVHS\uff0c\u53e4\u8463\u3002"} +{"id": "6004447", "video_name": "318394cf-6337-5139-98c9-55e0fc048eae", "text": "\u53d1\u751f\u5728\u5c0f\u5c4b\u91cc\u7684\u751f\u5b58\u4e4b\u6218\u3002"} +{"id": "8001766", "video_name": "6506bed7-81e3-5232-8bc6-b332a6fb86b7", "text": "\u7f8e\u5b66\u8bbe\u8ba1\u5fbd\u6807\uff0c\u900f\u660e\u73bb\u7483\u5185\u90e8\u6709\u7194\u5ca9\u53f6\u548c\u51b0\u96ea\u82b1\u6735\uff0c\u53d1\u5149\uff0c\u77e2\u91cf\u56fe\uff0c\u5927\u7406\u77f3"} +{"id": "0006718", "video_name": "31a0a3f0-f46b-5364-b7a3-ddcf75040aea", "text": "\u98ce\u5439\u8fc7\uff0c\u4eba\u4eec\u9010\u6e10\u79bb\u53bb\u3002\n\n\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "6002822", "video_name": "2ffb47fe-b1bd-509a-a48d-b3456904ade7", "text": "\u4e00\u4e2a\u7537\u4eba\u8df3\u4f1e\u8fdb\u5165\u592a\u7a7a\uff0c\u5e7b\u60f3\u7c7b\u578b\u7684\u89c6\u9891\u3002"} +{"id": "4002493", "video_name": "3737e2df-fd13-522b-99aa-fd7a2784b372", "text": "\u672a\u6765\u7684\u96e8\u57ce \u4fe1\u606f\uff1aPablo \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004982", "video_name": "d144737b-0411-5981-8d72-900de2e00e6f", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u4ece\u5730\u4e0a\u6458\u4e86\u4e00\u6735\u7ea2\u82b1\u3002"} +{"id": "4003475", "video_name": "ba044145-671a-54f9-a965-be3ca750eaf0", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\uff0c\u6234\u7740\u4e94\u989c\u516d\u8272\u7684\u963f\u5f17\u7f57\u53d1\u578b\u3002"} +{"id": "3005901", "video_name": "49f087f2-0385-5dcf-ac73-2d5785a92ed6", "text": "\u4e09\u67b6\u65e0\u4eba\u673a\u5728\u83b7\u80dc\u8005\u9886\u5956\u53f0\u4e0a\u3002"} +{"id": "2006462", "video_name": "fe31dd3f-59b6-5254-9843-37ffbc91986e", "text": "\u963f\u5c14\u00b7\u5e15\u897f\u8bfa\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3002"} +{"id": "1003387", "video_name": "3e645ed5-3081-5981-a212-d2f8e558e8a7", "text": "\u5370\u5ea6\u795e\u7947\u6e7f\u5a46\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "1003487", "video_name": "409ec2a5-2125-520b-b65e-7db76cfd06d5", "text": "\u4e00\u4e2a\u53eb\u963f\u9ed1\u8fc8\u5fb7\u7684\u7537\u5b69\u5728\u767d\u5929\u5904\u4e8e\u6781\u5ea6\u7684\u6cae\u4e27\u72b6\u6001\u3002\n\nSource sentence: She studied hard and became a successful doctor. \n\n\u5979\u52aa\u529b\u5b66"} +{"id": "2004837", "video_name": "f3369a47-a97a-5355-8b27-c2dcc2b7eb25", "text": "\u706b\u7bad\u53d1\u5c04\u5668\u7f13\u6162\u5730\u7a7f\u8fc7\u5927\u8349\u539f\u3002"} +{"id": "4002380", "video_name": "87f5e211-781b-527b-9bb4-cd538c7ec283", "text": "\u80cc\u666f\uff1a\u4f7f\u7528\u51b7\u9759\u3001\u73b0\u4ee3\u7684\u8272\u8c03\uff0c\u8fdc\u5904\u57ce\u5e02\u706f\u5149\u95ea\u70c1\u3002\u4fdd\u6301\u653e\u677e\u548c\u57ce\u5e02\u6c1b\u56f4\u3002"} +{"id": "8002094", "video_name": "f5ac256a-b947-5468-adc3-e4ff2f666c66", "text": "16:9\u6bd4\u4f8b\u7684\u52a8\u6f2b\u98ce\u683c\u5c0f\u732b\u5728\u96ea\u4e2d\u6e29\u6696\u7684\u623f\u5c4b\u91cc\u542c\u7740\u97f3\u4e50\u7761\u89c9\u6253\u547c\u565c\uff0c\u80cc\u666f"} +{"id": "0004846", "video_name": "10323a81-d838-536e-85d6-67f5d2912acc", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u8272\u5f69\u7684\u5c0f\u518c\u5b50\u5c01\u9762\uff0c\u5c55\u793a\u4e86\u5404\u79cd\u5de7\u514b\u529b\u7cd6\u679c\uff0c\u5468\u56f4\u662f\u4e00\u7fa4\u5feb\u4e50\u800c\u5145"} +{"id": "1005801", "video_name": "6ab62317-9010-5e50-843d-5ed5acdef6d1", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u573a\u666fIMAX\u7535\u5f71\u7247\u6bb54K\u9ad8\u6e05\u771f\u5b9e\u9ad8\u6e05\u8d28\u91cf\u7684\u7ea2\u8272\u6076\u9b54\u773c\u775b\u4ee5\u660f\u6697\u7684\u6050\u6016\u6c1b"} +{"id": "6002431", "video_name": "1f6c7ced-8de1-5651-9b1f-8984f749adc1", "text": "\u5377\u53d1\u7684\u5973\u5b69\u5750\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u96e8\u7a97\u524d\u5bf9\u9762\u5b66\u4e60\uff0c\u671f\u671b\u6bd4\u4f8b\u4e3a9.16\u3002"} +{"id": "7002419", "video_name": "faac0e17-78cc-577e-bd67-23d5a4652a2d", "text": "\u5728\u6559\u5ba4\u91cc\uff0c\u5feb\u4e50\u7684\u8001\u5e08\u5728\u9ed1\u677f\u4e0a\u753b\u75af\u72c2\u7684\u5706\u5f62\u56fe\u6848\uff0c\u5b69\u5b50\u4eec\u8df3\u821e\uff0c\u8272\u5f69\u6591\u6593\u7684"} +{"id": "0006123", "video_name": "26ffa4fb-ca29-5d5b-8bdc-9f4a7ad8049e", "text": "\u5c06\u53e4\u4ee3\u751f\u7269\u7684\u73af\u5883\u58f0\u548c\u6811\u53f6\u7684\u5fae\u5f31\u54cd\u52a8\u52a0\u5165\uff0c\u8425\u9020\u51fa\u8be1\u5f02\u7684\u6c1b\u56f4\u3002"} +{"id": "5001190", "video_name": "5c4c3a4b-eb46-5bdc-a013-a82bf74618b5", "text": "\u6587\u5b66\u5076\u50cf\u62fc\u8d34\uff1a\u4e00\u573a\u76db\u5927\u7684\u805a\u4f1a\uff0c\u6bcf\u4e2a\u5076\u50cf\u4ee3\u8868\u7740\u4e00\u4e2a\u6587\u5b66\u5de8\u5320\u3002\u4ed6\u4eec\u5206\u4eab\u6545\u4e8b\uff0c\u4ed6\u4eec\u7684\u96c6\u4f53"} +{"id": "3006166", "video_name": "10ee4404-4e41-5bf1-af5a-3d16ae1728d4", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5154\u5b50\uff0c\u67d4\u8f6f\u7684\u6bdb\u76ae\u548c\u6e29\u548c\u7684\u6027\u683c\uff0c\u5b83\u7528\u5b83\u5fae\u5c0f\u7684\u722a\u5b50\u6293\u4f4f\u4e00\u9897\u6838\u6843\uff0c\u5f62\u6210\u4e86"} +{"id": "3006521", "video_name": "a2fb4691-237e-5cdb-aa9b-b5f98a498546", "text": "\u5750\u5728\u8f66\u91cc\u7684\u5973\u4eba\u60f3\u7740\u5403\u6c49\u5821\uff0c\u5f88\u5f00\u5fc3\u3002"} +{"id": "8002664", "video_name": "ea276982-4a8e-595e-80f5-bd9180571619", "text": "\u7279\u5199\uff0c\u6e05\u6670\u7684\u753b\u9762\uff0c\u8bb8\u591a\u5de7\u514b\u529b\u770b\u8d77\u6765\u50cf\u773c\u775b\u3002"} +{"id": "8001016", "video_name": "102f9743-d45b-513f-84b6-e876896cf4eb", "text": "\u5236\u4f5c\u4e00\u4e2a60\u79d2\u7684\u89c6\u9891\u5c55\u793a\u7535\u52a8\u6c7d\u8f66\u7684\u53d1\u5c55\u5386\u7a0b\u3002"} +{"id": "1005656", "video_name": "67e65bfc-bdc8-5774-af6e-1aae757a22ae", "text": "\u7537\u4eba\u7528\u624b\u5403\u901a\u5fc3\u7c89\u548c\u5976\u916a\u3002"} +{"id": "1006682", "video_name": "7a7ec2e0-d224-56dd-88b6-1703ec23a8fe", "text": "\u5e3d\u5b50\u4eba\u5728\u5348\u591c\u65f6\u8df3\u821e\u3002"} +{"id": "3005615", "video_name": "c050f715-fc9b-55c7-84be-3702b48617e6", "text": "\u4e24\u4f4d\u75c5\u4eba\u8ba4\u771f\u542c\u533b\u751f\u8bb2\u8ff0\u3002"} +{"id": "8002348", "video_name": "27e153b9-f325-5033-bb8f-d432a30d7ea7", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u571f\u8def\u4e0a\u505c\u8f66\u5e76\u62bd\u70df\u3002"} +{"id": "0004919", "video_name": "116925c3-b9af-56bb-a29f-6a9302fb49f0", "text": "\u4e00\u4f4d\u54e5\u4f26\u6bd4\u4e9a\u666e\u901a\u516c\u6c11\u8c08\u8bba\u653f\u6cbb\u3002"} +{"id": "3005005", "video_name": "c76caf1c-0b88-515d-8587-7928caa80d33", "text": "\u9c7c\u6cb9\u5728\u5929\u7a7a\u4e2d\u95ea\u8000\u3002"} +{"id": "8003920", "video_name": "d97ff0ab-d1ce-5ff2-a160-ed6ee425c389", "text": "\u4e00\u4e2a3D\u52a8\u6f2b\u6c60\u5858\uff0c\u6709\u7ec6\u8282\u4e30\u5bcc\u7684\u6c34\u548c\u6e38\u52a8\u5728\u6c34\u4e2d\u7684\u9c7c\uff0c\u5728\u53f3\u4e0a\u89d2\u6444\u50cf\u673a\u7f29\u653e\u955c\u5934\u4e2d\u3002"} +{"id": "2003072", "video_name": "5c148fcc-f2ba-5d79-8795-40d3d1f7a739", "text": "\u4e00\u7247\u5145\u6ee1\u5934\u9aa8\u548c\u9aa8\u5934\u7684\u7530\u91ce\uff0c\u9ed1\u767d\u9897\u7c92\u72b6\u7684\u7535\u5f71\u7eb9\u7406\u3002"} +{"id": "1004711", "video_name": "5773d7c8-fab5-5f39-96f7-e92d5d2e3374", "text": "\u7537\u7235\u6234\u7740\u9ed1\u8272\u7684Beats\u8033\u673a\u548c\u9ed1\u8272\u7684\u5e3d\u5b50\u3002"} +{"id": "1006927", "video_name": "7ea26dfe-d718-5765-a556-855102ddafb0", "text": "\u4e00\u67b6\u98de\u789f\u4ece\u6c99\u6f20\u4e2d\u5feb\u901f\u5347\u7a7a\uff0c\u626c\u8d77\u4e86\u7070\u5c18\uff0c\u52a8\u4f5c\u8fc5\u731b\u3002"} +{"id": "6004170", "video_name": "77369ac8-873b-53e9-ad2c-74f9f9e16790", "text": "\u9ec4\u8272\u6c7d\u8f66\u7a7f\u8fc7\u68ee\u6797\u98de\u884c\u3002"} +{"id": "0004565", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "\u505a\u4e00\u4e2a\u53ef\u6015\u7684\u4fee\u5973\u671d\u7740\u6444\u50cf\u5934\u8d70\u7684\u56fe\u50cf\u3002"} +{"id": "2006131", "video_name": "78dd15fe-96a5-557b-b541-eff8dd818e3b", "text": "\u4e00\u4e2a\u7f8e\u98df\u53a8\u623f\uff0c\u53a8\u5e08\u4eec\u5728\u70f9\u996a\u3002\u4fe1\u606f\uff1aNANNO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005059", "video_name": "5d7d08a6-0d1f-5d6c-b1ab-3d3797a26a8c", "text": "\u4e00\u5ea7\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u666f\u89c2\u7b3c\u7f69\u5728\u9ed1\u6697\u4e2d\uff0c\u4ec5\u7531\u60ac\u505c\u7684\u521b\u4e16\u7eaa\u673a\u5668\u4eba\u7684\u602a\u5f02\u53d1\u5149\u7167\u4eae\uff0c"} +{"id": "6003703", "video_name": "07426cbb-edcd-5f64-bf53-90a3b55eb964", "text": "\u6d77\u83b2\u5a1c\u58f0\u79f0\u8fd9\u4e2a\u5730\u4e0b\u4e16\u754c\u53ef\u80fd\u542f\u53d1\u4e86\u53e4\u4ee3\u5b97\u6559\u4fe1\u4ef0\uff0c\u5982\u51a5\u5e9c\u3001\u793a\u5965\u5c14\u548c\u5730\u72f1\u3002"} +{"id": "7003067", "video_name": "9abe3b26-a589-53df-8d82-c387cfd8ebac", "text": "\u8bb0\u5f97\u4f7f\u7528\u4e0e\u6545\u4e8b\u7684\u8bed\u8c03\u548c\u4fe1\u606f\u76f8\u4e00\u81f4\u7684\u89c6\u89c9\u5143\u7d20\uff0c\u5e76\u5728\u89c6\u9891\u4e2d\u4fdd\u6301\u4e00\u81f4\u7684\u7f8e\u5b66\u98ce\u683c\u3002\u60a8\u8fd8\u53ef\u4ee5\u8003\u8651\u6dfb\u52a0\u80cc\u666f\u97f3"} +{"id": "3003839", "video_name": "e1d554f2-1cc2-58cd-8a9b-211515d1c314", "text": "\u7ff1\u7fd4\u4e8e\u96fe\u6c14\u7f2d\u7ed5\u7684\u68ee\u6797\u4e2d\uff0c\u4ee5\u6d45\u9752\u8272\u548c\u68d5\u8272\u98ce\u683c\u5448\u73b0\uff0c\u5bcc\u6709\u6c14\u6c1b\u7684\u8be6\u7ec6"} +{"id": "3005202", "video_name": "f7d34f8b-4b75-5b70-ab4b-cf572ef51224", "text": "\u5728\u7f8e\u56fd\u8054\u5408\u4e4b\u524d\uff0c\u5fb7\u514b\u8428\u65af\u5dde\u66fe\u6709\u8bb8\u591a\u90e8\u843d\u3002"} +{"id": "1005601", "video_name": "67086b7a-57b5-5726-807e-1bbced0dd930", "text": "\u65f6\u5c1a\u6c34\u4e0b\u62cd\u6444\u7f8e\u675c\u838e\u5a5a\u793c\u7ea2\u88d9"} +{"id": "2006253", "video_name": "d2b261fc-54ee-581a-ac54-7821fb9c5e95", "text": "\u89c6\u9891\u5f00\u5934\u5e94\u8be5\u6709\u4e00\u4e2a\u8d62\u5f97\u8d4c\u573a\u5956\u91d1\u7684\u4eba\u7684\u53cd\u5e94\uff0c\u7136\u540e\u662f Plinko \u8d4c\u573a\u8001\u864e\u673a\uff0c\u7403\u843d\u4e0b\u6765\u5c4f\u5e55\u4e0a\u51fa\u73b0\u4e86"} +{"id": "7004479", "video_name": "004fe376-af7f-5c1f-a83e-c02f37796a85", "text": "\u963f\u52b3\u970d\uff0c\u5df4\u585e\u7f57\u90a3\u7403\u5458\uff0c\u5728\u4e0a\u4e00\u573a\u6bd4\u8d5b\u88ab\u7f5a\u4e0b\u540e\uff0c\u6cd5\u5b98\u5bf9\u4ed6\u5904\u4ee5600\u6b27\u5143\u7684\u7f5a\u6b3e\u3002"} +{"id": "0006106", "video_name": "26ae4833-f65f-5dcc-987d-d7b0f36789b7", "text": "\u4e00\u4e2a\u8ff7\u4eba\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u68ee\u6797\uff0c\u6709\u4e00\u6761\u5c0f\u8def\u7a7f\u8fc7\u4e2d\u95f4\uff0c\u6301\u7eed5\u79d2\u3002\u80cc\u666f\u4e2d\u6709\u4e00\u53ea\u5927\u8c61\u5728\u884c\u8d70"} +{"id": "1003645", "video_name": "432a9a9e-c778-51db-8a31-4ae63e252864", "text": "1940\u5e74\u7684\u8001\u7167\u7247\uff0c\u4e00\u5bb6\u4eba\u548c\u4e00\u53ea\u5de8\u5927\u7684\u91d1\u6bdb\u730e\u72ac\u5728\u623f\u5b50\u91cc\u3002"} +{"id": "2007153", "video_name": "3d841bdb-e13c-5b1c-9262-d8c9d250c0b0", "text": "\u5728\u591c\u665a\uff0c\u4e00\u6761\u9f99\u5728\u65e5\u672c\u5bfa\u5e99\u5468\u56f4\u98de\u821e\u3002"} +{"id": "0003020", "video_name": "35b04528-3fa1-5a52-a288-286c3cc03821", "text": "\u57ce\u5e02\u7684\u591c\u666f\u80cc\u666f\u4e0b\uff0c\u7a97\u6237\u91cc\u6709\u5f88\u591a\u7684\u706f\u5149\u5728\u95ea\u70c1\u7740\uff0c\u65f6\u9690\u65f6\u73b0\uff0c\u8425\u9020\u51fa\u79d1\u6280\u611f\u3002"} +{"id": "7004703", "video_name": "f7cc0df5-7b16-5856-b326-bc03d401f549", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5f8b\u5e08\u534f\u52a9\u4e00\u5bf9\u592b\u5987\u5b89\u5168\u5730\u7ec4\u7ec7\u4ed6\u4eec\u7684\u8d22\u4ea7\uff0c\u4ee5\u8ba9\u5b69\u5b50\u4eec\u53d7\u76ca\u3002\u4e4b\u540e\u5c55\u793a"} +{"id": "6004926", "video_name": "cbbf67e7-9144-5e35-96d9-18f77210f9c8", "text": "\u9876\u90e8\u6709\u82b1\u7684\u4ed9\u4eba\u638c\u3002"} +{"id": "8003854", "video_name": "64d2dbb5-dbba-57d0-93b2-39f60ca06b58", "text": "\u5728\u4e00\u4e2a\u4e0b\u96e8\u7684\u68ee\u6797\u91cc\u3002\u4fe1\u606f\uff1a\u96e8\u6797\u5965\u65af\u79d1\u5c14\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003950", "video_name": "24c3ac8c-5b6a-508d-b4e3-d644710ddad6", "text": "LD\u94f6\u8272\u8f7f\u8f66\u5728\u5341\u5b57\u8def\u53e3\u649e\u4e0a\u4e00\u8f86\u9ed1\u8272\u5c0f\u9762\u5305\u8f66\u3002"} +{"id": "2005492", "video_name": "6b7548d4-ff43-57aa-8e88-55f539c54771", "text": "\u4e00\u53ea\u5728\u684c\u5b50\u4e0a\u8df3\u821e\u7684\u732b\uff0c\u65c1\u8fb9\u6709\u4e00\u540d\u5973\u5b50\u5439\u594f\u957f\u7b1b\uff0c\u4ee5\u7248\u753b\u827a\u672f\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "6002638", "video_name": "53779c3b-6b03-58aa-b7d2-126b2539392d", "text": "\u7f8e\u4e3d\u3001\u9ad8\u54c1\u8d28\u3001\u52a8\u753b\u3001\u5973\u4eba\u3001\u5947\u5999\u3001\u7a7a\u4e2d\u6e38\u6cf3\u7684\u9c7c\u3001\u4ef0\u671b\u7684\u5973\u4eba\u3001\u7ea2\u8272\u88d9\u5b50\u3002"} +{"id": "5001089", "video_name": "5438befc-076f-572d-adb4-52300323c5a3", "text": "\u54e5\u65af\u62c9\u5728\u9ad8\u4e2d\u8d5b\u9053\u4e0a\u5954\u8dd1\uff0c\u8de8\u680f\u969c\u788d\u7740\uff0c\u8dd1\u5f97\u975e\u5e38\u5feb\u4e14\u987a\u7545\uff0c\u4e0e\u5176\u4ed6\u9009\u624b\u7ade\u4e89"} +{"id": "2005468", "video_name": "1b6deb62-f703-51f7-8e1b-fd38dcb7d0e3", "text": "\u52a8\u753b\u3002\u300a\u963f\u57fa\u62c9\u300b\u98ce\u683c\u3002\u96c4\u4f1f\u7684\u68ee\u6797\uff0c\u6811\u6728\u6447\u66f3\uff0c\u89e6\u53ca\u5929\u7a7a\uff0c\u82b1\u6735\u8f90\u5c04\u7740\u795e"} +{"id": "6004698", "video_name": "12f64238-f1c6-527e-9c59-58741e833375", "text": "\u7535\u5f71\u5f0f\u7684\u3001\u897f\u90e8\u98ce\u683c\u7684\u3001\u8fdc\u666f\u3001\u4f4e\u89d2\u5ea6\uff0c\u4e00\u4e2a\u7267\u7f8a\u4eba\u8d70\u5728\u5c71\u4e0a\u3002"} +{"id": "0004238", "video_name": "0592db9e-60b5-550f-8e77-57cd093566a0", "text": "\u6050\u6016\u7535\u5f71\u7684\u4e16\u754c\u5145\u6ee1\u4e86\u5413\u4eba\u7684\u573a\u666f\u3002"} +{"id": "2003100", "video_name": "4f2516cf-2a29-5746-848e-46e749f254c7", "text": "1750\u5e74\u4ee3\u7684\u821e\u8005\u7a7f\u7740\u7ea2\u767d\u8272\u7684\u8863\u670d\u9a91\u7740\u4e00\u8f86\u4f4e\u9a91\u8f66\uff0c\u62cd\u6444\u4e8e18\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "2004278", "video_name": "08853e71-11d8-57a8-835e-af542287bfa2", "text": "\u91cd\u7ed8 Instagram \u5934\u50cf\u7684\u9876\u90e8\u3002"} +{"id": "4002810", "video_name": "f48a37d4-185d-54c0-b7b1-c958a0efe70c", "text": "\u6211\u548c\u4e08\u592b\u7b2c\u4e00\u6b21\u610f\u8bc6\u5230\u6211\u4eec\u6709\u95ee\u9898\u662f\u5728\u6211\u4eec\u7ed3\u5a5a\u56db\u5468\u5e74\u7684\u524d\u5915\u3002\u8fc7\u53bb\u7684\u4e00\u5e74\u76f8\u5f53\u52a8\u8361\uff0c\u6211\u4eec\u90fd\u9009\u62e9\u7528\u5de5\u4f5c\u5206"} +{"id": "0006130", "video_name": "27146824-c898-50be-89c0-eb054e40e97f", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u58eb\u5175\u80cc\u7740\u88c5\u5907\u548c\u76d4\u7532\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u4e2d\u955c\u5934\u8ddf\u968f\u62cd\u6444\u3002\u620f"} +{"id": "3005893", "video_name": "8c72e0c6-61b0-5aa6-9161-6594f72a2af1", "text": "\u4e0e\u5bb6\u4eba\u79c1\u4e0b\u4ea4\u8c08"} +{"id": "1004674", "video_name": "56e0304a-5e33-5d0f-b2de-991d847f3fad", "text": "\u8001\u4eba\u770b\u7740\u5916\u9762\u7684\u4eba\u3002"} +{"id": "0004943", "video_name": "12011889-025f-5bd4-a6c2-fe5b53791e87", "text": "\u9ad8\u54c1\u8d28\uff0c\u6234\u8349\u5e3d\u7684\u5973\u4eba\uff0c\u7a7f\u7740\u767d\u8272\u88d9\u5b50\uff0c\u7ad9\u5728\u6d77\u6ee9\u4e0a\u4fef\u77b0\u5e7f\u9614\u7684\u6d77\u6d0b\uff0c\u81ea\u7136\u5149\u7ebf"} +{"id": "7003622", "video_name": "be475c78-6631-5415-b471-2411269925d1", "text": "19\u4e16\u7eaa\u7684\u7267\u5e08\u7259\u75db\u4e86\u3002"} +{"id": "0003702", "video_name": "41f68999-81d6-5d80-8f6a-8fe3b7344e5a", "text": "\u4e00\u4e2a\u6a59\u8272\u7684\u793c\u76d2\uff0c\u5728\u4e0a\u4e0b\u6d6e\u52a8\uff0c\u7136\u540e\u6253\u5f00\uff0c\u9732\u51fa\u4e00\u9053\u95ea\u95ea\u53d1\u5149\u7684\u5149\u8292\u3002"} +{"id": "7004807", "video_name": "ba9dcc1e-e750-5856-a126-c560881dd7c7", "text": "\u6ce8\u610f\u68ee\u6797\u4e2d\u5c45\u4f4f\u7740\u98df\u4eba\u65cf\u7684\u8b66\u793a\u724c"} +{"id": "6003189", "video_name": "6c2b8eab-1ba5-547c-a0e5-0ade2a0e98be", "text": "\u5e7f\u573a\u4e0a\u6709\u5f88\u591a\u58eb\u5175\u3002"} +{"id": "0004608", "video_name": "0be1c116-275a-5822-bc8a-e4eb2ff20967", "text": "\u4e00\u4e2aMinecraft\u73a9\u5bb6\u5efa\u4e86\u4e00\u5ea7\u57ce\u5821\u3002"} +{"id": "7002651", "video_name": "4d55d598-844a-5748-a0d4-ca69e1ed2c56", "text": "\u4e24\u4e2a\u4eba\u9a91\u7740\u535a\u8fbe\u535a\u8fbe\u6469\u6258\u8f66\uff0c\u6cbf\u7740\u5c71\u5761\u5411\u4e0b\u884c\u9a76\uff0c\u5411\u524d\u9762\u7684\u5185\u7f57\u6bd5\u5e02\u9a76\u53bb\uff0c\u6211\u4eec\u53ef\u4ee5\u770b"} +{"id": "0003249", "video_name": "3a0614ef-e71c-560c-bf42-79b618d11e6c", "text": "\u4e00\u540d\u5973\u5b50\u5728\u672a\u6765\u4e3b\u4e49\u673a\u573a\u7b49\u5f85\u5979\u7684\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "8003117", "video_name": "95829044-f8e5-5ceb-9090-b32fadf72431", "text": "\u4e00\u67b6\u7ea2\u8272\u7684\u98de\u673a\u5feb\u901f\u5730\u98de\u8fc7\u767d\u4e91\uff0c\u4e00\u53ea\u9e70\u5728\u8ffd\u9010\u7740\u5b83\u3002"} +{"id": "0003518", "video_name": "3ee0bb64-016d-5770-b765-a73f12872e57", "text": "\u8010\u514b\u7a7a\u519b\u4e00\u53f7\u5728\u5730\u7403\u8f68\u9053\u4e0a\u98de\u884c\u3002\u80cc\u666f\u6709\u661f\u661f\uff0c\u771f\u5b9e\u7684\u751f\u6d3b\u3002\u771f\u5b9e\u4e3b\u4e49\u3002\u53ef\u89c1\u7684\u5730\u7403\u3002\u91cd\u529b\u3002\u5931\u91cd\u72b6\u6001"} +{"id": "6002021", "video_name": "7f4331ff-53ba-5135-b7e4-c77955e32e98", "text": "\u7ae5\u8bdd\u822c\u7684\u571f\u5730\u6709\u5c71\u3001\u6e56\u3001\u68ee\u6797\u548c\u57ce\u5821\uff0c\u7535\u5f71\u822c\u7684\u5f15\u4eba\u5165\u80dc\u7684\u573a\u666f\u3002"} +{"id": "1004175", "video_name": "4d447fa3-90fb-5110-a508-4e8b06b17acf", "text": "\u5728\u5e10\u7bf7\u4e0b\u7684\u5a5a\u793c\u573a\u666f\u4e0a\uff0c\u6709\u684c\u6905\u3002\u6bcf\u4e2a\u684c\u5b50\u4e0a\u90fd\u6709\u653e\u7f6e\u5728\u91d1\u8272\u684c\u5e03\u4e0a\u7684\u7cbe\u7f8e\u74f7\u5668\u3002"} +{"id": "8002158", "video_name": "7e22e94b-78fe-5807-9757-9bdd918a4490", "text": "\u7eb3\u7c73\u79d1\u6280\u9ed1\u91d1\u88c5\u9970\u54c1\uff0c\u5448\u5723\u8bde\u6811\u5f62\u72b6\u3002"} +{"id": "3004175", "video_name": "ae4506c6-dc2e-5c3e-97a8-093cae81012d", "text": "\u521b\u9020\u4e00\u4e2a\u5916\u8868\u51fa\u8272\u7684\u767d\u4eba\u7537\u5b50\uff0c\u4ed6\u662f\u5e02\u573a\u8425\u9500\u4e13\u5bb6\u548c\u6587\u6848\u7b56\u5212\u5e08\u3002\u6210\u529f\u800c\u5f3a\u5927\u3002"} +{"id": "2004281", "video_name": "27c74441-1e8f-5fbc-8015-9a95dad332c1", "text": "\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u91cc\uff0c\u732b\u8ffd\u9010\u4e00\u53ea\u72d7\u3002"} +{"id": "2004202", "video_name": "fcc0a69c-69b4-514f-9c32-176f01a091ed", "text": "\u4ece\u8fdc\u5904\u7f29\u653e\u5230\u4e00\u4f4d\u975e\u5e38\u8001\u7684\u50e7\u4eba\u7684\u8138\u4e0a\uff0c\u4ed6\u5728\u767d\u5929\u5750\u5728\u4e00\u4e2a\u4f5b\u6559\u5bfa\u5e99\u7684\u7a7a\u65f7\u3001\u5b89\u9759\u548c"} +{"id": "7003903", "video_name": "76dde672-73da-5c9d-85fb-0336fae76471", "text": "\u98ce\u683c\uff1a\u7535\u5f71\u5316\uff0c\u4e00\u540d\u5973\u5b50\u7a7f\u8fc7\u7e41\u5fd9\u7684\u5e02\u4e2d\u5fc3\u8857\u9053\uff0c\u8fdc\u79bb\u6444\u50cf\u673a\u8d70\u53bb\u3002"} +{"id": "3003490", "video_name": "8185fc8b-9bf0-533c-b80b-2d9e0f0f65ac", "text": "\u5fae\u7b11\u5e76\u5411\u5de6\u8f6c\u5934\uff0c\u86c7\u5728\u79fb\u52a8\uff0c\u68ee\u6797\u3002"} +{"id": "3004957", "video_name": "b142dbd1-1101-52cb-999e-d2f57956faa0", "text": "\u4e00\u8f86\u6218\u6597\u5766\u514b\u4eceC130\u98de\u673a\u4e0a\u629b\u51fa\u3002"} +{"id": "0005126", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "\u4e00\u4f4d\u7a7f\u7740\u9713\u8679\u706f\u5916\u5957\u7684\u8bf4\u5531\u6b4c\u624b\u3002"} +{"id": "3004490", "video_name": "c78de2fd-f9e8-5df4-92d6-63f1890304b7", "text": "\u6211\u9700\u8981\u4e00\u5f20\u767d\u8272\u548c\u9ed1\u8272\u4eba\u5f62\u673a\u5668\u4eba\u5c4b\u9876\u884c\u674e\u67b6\u7684\u6218\u6597\u6a21\u5f0f\u56fe\u50cf\uff0c\u5177\u6709\u201c\u745e\u514b\u548c\u83ab\u8482"} +{"id": "4002096", "video_name": "1f60ea62-7699-5318-b3db-c55590cc665c", "text": "\u4e00\u67aa\u51fb\u4e2d\u98de\u673a\uff0c\u7834\u788e\u4e86\u592a\u9633\u3002"} +{"id": "0005834", "video_name": "21f2d228-ee35-5dc0-8f1d-db66fa47a649", "text": "\u4e00\u4f4d\u7bee\u7403\u8fd0\u52a8\u5458\u7a7f\u7740\u9177\u70ab\u7684\u7bee\u7403\u7403\u8863\uff0c\u6162\u52a8\u4f5c\u5730\u5411\u6444\u50cf\u673a\u8d70\u6765\u300210\u79d2\u89c6\u9891\u3002"} +{"id": "2007498", "video_name": "2ca51d33-211e-526a-ae8e-520a21ae807b", "text": "\u5728\u60e0\u65af\u5e03\u9b54\u6cd5\u52a8\u7269\u6d3b\u52a8\u4e2d\uff0c\u732b\u5934\u9e70\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u5154\u5b50\u3001\u60a6\u8033\u7684\u9e1f\u513f\u548c"} +{"id": "2006882", "video_name": "3b63b060-0bb9-57ff-9687-00338cdd41f8", "text": "\u4f69\u6234\u7740\u751f\u7269\u670b\u514b\u7684\u534a\u673a\u68b0\u82b1\u6735\u3001\u8774\u8776\u548c\u8424\u706b\u866b\uff0c\u5b83\u4eec\u6563\u53d1\u51fa\u8ff7\u4eba\u7684\u8bf1"} +{"id": "8003170", "video_name": "3fb332c7-85e3-57cd-a054-b0afbedeb16e", "text": "\u4e00\u4e2a\u7537\u4eba\u5bf9\u7740\u84dd\u5929\u5c16\u53eb"} +{"id": "1005343", "video_name": "62390869-2d4d-5389-af63-5b7c259c014d", "text": "\u5728\u5c3c\u65e5\u5229\u4e9a\u897f\u5357\u90e8\u519c\u6751\u5730\u533a\u7684\u4e00\u4e2a\u6751\u5e84\u666f\u8c61\uff0c\u51e0\u4e2a\u4eba\u548c\u4ed6\u4eec\u7684\u5b69\u5b50\u5728\u6708\u5149\u4e0b\u8f7b\u677e\u653e\u677e\uff0c"} +{"id": "7003204", "video_name": "a75c1ee6-fb63-5933-a525-5f316933e25c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u8eba\u5728\u6c99\u5730\u4e0a\uff0c\u88ab\u6253\u8d25\u4e86\u3002"} +{"id": "0006304", "video_name": "2a5e6a65-b5ea-5bde-8eac-aff2516e0ebf", "text": "\u4e00\u4e2a\u5728\u5e7b\u60f3\u7684\u4e30\u5bcc\u591a\u5f69\u7684\u68ee\u6797\u91cc\u522e\u98ce\u7684\u65e5\u5b50\u3002 \n\nSource sentence: I am excited to try the new restaurant that just opened downtown.\n\u6211\u5f88\u5174"} +{"id": "8001157", "video_name": "bf2d76e7-2efc-518a-9523-316c8b264ccb", "text": "Source sentence: Jagdpanther\u5766\u514b\u5728\u4e3b\u8857\u4e0a\u884c\u9a76\u3002"} +{"id": "7003759", "video_name": "52fd04ae-6153-54f5-bbc2-2d994df439b0", "text": "\u5de8\u578b\u9646\u5730\u7ae0\u9c7c\u5165\u4fb5\u9646\u5730\u3002"} +{"id": "1006535", "video_name": "77c4f166-9865-546c-b58a-c748530bb6d2", "text": "\u4e00\u5bb6\u7cbe\u81f4\u7684\u9910\u5385\uff0c\u6709\u540a\u706f\u3001\u8721\u70db\u3001\u53f0\u706f\u3001\u767d\u73ab\u7470\u548c\u90c1\u91d1\u9999\u3002"} +{"id": "6004715", "video_name": "bb5ddbdb-ac55-5a06-a343-1a2d6844295c", "text": "\u4e09\u4e2a\u670b\u53cb\u5728\u684c\u5b50\u4e0a\u73a9\u6251\u514b\u724c\uff0c\u559d\u7740\u679c\u6c41\u548c\u80fd\u91cf\u996e\u6599\uff0c\u9ec4\u8272\u7684\u80cc\u666f\u91cc\u5f25\u6f2b\u7740"} +{"id": "7003651", "video_name": "1fc5bdc6-70c3-5ea7-93db-4d554c7b9fea", "text": "\u773c\u524d\u4e00\u7247\u8302\u76db\u3001\u539f\u59cb\u7684\u666f\u8c61\uff0c\u7eff\u836b\u853d\u65e5\uff0c\u65e9\u6668\u7684\u9633\u5149\u6e29\u67d4\u800c\u67d4\u548c\u3002\u9ad8\u5927\u53e4\u8001\u7684\u6811"} +{"id": "2004180", "video_name": "8c7533ac-6fe4-5c6e-8868-a87e2ad70f89", "text": "\u82b1\u7530\u91cc\u751f\u957f\u7740\u8d85\u73b0\u5b9e\u7684\u4e91\u3002"} +{"id": "4003720", "video_name": "35bb2d0d-29df-5011-bcf1-96137bb8db6c", "text": "\u738b\u5b50\u62c9\u739b\u5728\u68ee\u6797\u91cc\u7b2c\u4e00\u6b21\u4e0e\u97e9\u7eb3\u66fc\u4f1a\u9762\u3002\u97e9\u7eb3\u66fc\u53d8\u6210\u4e86\u4e00\u4e2a\u8001\u4eba\u8d24\u8005\u7684\u5f62\u8c61\uff0c\u800c\u62c9\u739b"} +{"id": "2005869", "video_name": "7d527672-88c4-574b-82e5-d245e9e8ff17", "text": "\u51b0\u9999\u8fa3\u53e3\u611f\u7684\u878d\u5316\u7684\u83ab\u624e\u91cc\u62c9\u5976\u916a\uff0c\u54ac\u7740\u6ef4\u6ef4\u6e9c\u6e9c\u7684\u5976\u916a\u814a"} +{"id": "8002431", "video_name": "91c8d051-128a-59cc-8c42-95c5fe67c399", "text": "\u68d5\u8272\u76ae\u80a4\uff0c\u91d1\u8272\u96c0\u6591\u7684\u5973\u4eba\uff0c\u5377\u66f2\u7684\u5927\u68d5\u8272\u5934\u53d1\uff0c\u6de1\u8910\u8272\u7684\u773c\u775b\uff0c\u7a7f\u7740\u7fe0"} +{"id": "2003385", "video_name": "ab4e265f-3b6c-5635-87b0-04de7d17b65e", "text": "\u5236\u4f5c\u4e00\u90e8\u52a0\u5bc6\u8d27\u5e01\u4ea4\u6613\u7684\u52a8\u753b\u3002"} +{"id": "4002592", "video_name": "4e55f172-beeb-5a95-81ef-fa5821cac8d8", "text": "\u8349\u573a\u4e0a\u6709\u8bb8\u591a\u725b\u548c\u5976\u725b\uff0c\u5929\u7a7a\u5448\u6a59\u8272\u3002\u6d88\u606f\uff1a\u6211\u4eec\u8981\u751f\u5b69\u5b50\u5417\uff1f"} +{"id": "0004506", "video_name": "0a3dbd56-83c4-5d1a-895b-28b4faf83972", "text": "\u4e00\u53ea\u62e5\u6709\u6050\u9f99\u8eab\u4f53\u548c\u7ffc\u9f99\u7fc5\u8180\u7684\u6df7\u5408\u751f\u7269\uff0c\u5728\u4e91\u95f4\u4f18\u96c5\u5730\u7ff1\u7fd4\u3002"} +{"id": "4004524", "video_name": "566e063c-c6c6-565c-a425-aa0e7c6d7ab7", "text": "\u6c34\u94f6\u6d41\u4f53\u8d28\u5730\u7684\u79fb\u52a8\u5168\u606f\u653e\u5927\u3002"} +{"id": "4002605", "video_name": "935314c9-1f70-51d6-bc4e-a739bc64b2b6", "text": "\u4e24\u4e2a\u6587\u660e\u7684\u5f62\u8c61\uff0c\u4e00\u4e2a\u662f\u4eba\u7c7b\u6587\u660e\uff0c\u53e6\u4e00\u4e2a\u662f\u5177\u6709\u4eba\u5de5\u667a\u80fd\u7684\u65b0\u578b\u673a\u5668\u4eba\u6587\u660e\uff0c\u76f8\u4e92\u62e5\u62b1\uff0c\u5f70\u663e\u7740"} +{"id": "8001185", "video_name": "d1b59ed7-9bed-5a2e-a5e8-968c51c8bee5", "text": "\u8425\u9020\u4e00\u4e2a\u5b8f\u4f1f\u795e\u5723\u7684\u6cd5\u5ead\u573a\u666f\u3002\u5728\u5f00\u9614\u5929\u7a7a\u4e0b\u7684\u6cd5\u5ead\u4e2d\u4f7f\u7528\u534e\u4e3d\u7684\u6df1\u8272\u548c\u91d1\u8272\u88c5\u9970\u3002\u5c55\u793a\u4e00\u4e2a"} +{"id": "4004802", "video_name": "d771bef6-0dfc-55ec-9186-9c99e759088c", "text": "\u7897\u91cc\u6709\u4e00\u53ea\u5c0fMetroid\u3002"} +{"id": "8002331", "video_name": "960a599b-7a7a-5183-aa59-0eb1d4c1f163", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u53ea\u72d7\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "8001884", "video_name": "5f818710-4e44-5bf2-be60-6d86cbf1440d", "text": "\u6751\u91cc\u7684\u7237\u7237\u7ed9\u6751\u91cc\u7684\u5b69\u5b50\u4eec\u8bb2\u5bd3\u8a00\u6545\u4e8b\u3002"} +{"id": "3004296", "video_name": "0dcb81da-d5e1-561a-b194-fb3302ea4481", "text": "\u4e00\u9996\u6765\u81eaLumi Athena\u7684\u6b4c\u4e0e\u300a\u546a\u8853\u56de\u6230\u300b\u4e2d\u7684\u5c11\u5e74\u5bbf\u513a\u7684\u7f16\u8f91\u3002"} +{"id": "8001485", "video_name": "279f32ee-f83d-535c-9aa1-ab0040645bef", "text": "\u4e00\u4e2a\u7c73\u8bfa\u9676\u5c14\u4eba\u7ad9\u5728\u5730\u5e73\u7ebf\u4e0a\u7684\u5c71\u4e18\u4e0a\uff0c\u4e0b\u9762\u662f\u7194\u5ca9\u3002"} +{"id": "2003702", "video_name": "d7fe372d-e83f-5fd6-a0be-2169cc5ccc19", "text": "\u535a\u7269\u9986\u91cc\u7a7a\u8361\u8361\u7684\u5c55\u793a\u67dc\u3002"} +{"id": "4003866", "video_name": "9a0bd889-6d90-5878-9681-f97f8f0349c4", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u5728\u6d77\u6ee9\u4e0a\u6652\u592a\u9633\u3002"} +{"id": "1003026", "video_name": "378c8103-eea1-52ab-88e9-43226b5563a1", "text": "\u7f57\u5bbe\u6c49\u80cc\u666f\u52a8\u753b\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "3004343", "video_name": "38adee76-9f46-5f06-a88f-880b793c1931", "text": "\u4e00\u53f0\u53ef\u4ee5\u6536\u96c6\u6c61\u67d3\u7269\u3001\u53bb\u9664\u9664\u4e8c\u6c27\u5316\u78b3\u4ee5\u5916\u7684\u6240\u6709\u6c14\u4f53\u5e76\u4ea7\u751f\u7535\u529b\u7684\u673a\u5668\u3002"} +{"id": "3004302", "video_name": "3e85d47c-1bd8-5b48-8550-65c49a90b8f4", "text": "\u54e5\u65af\u8fbe\u9ece\u52a0\u662f\u4e00\u4e2a\u6ca1\u6709\u519b\u961f\u7684\u56fd\u5bb6\u3002"} +{"id": "7003124", "video_name": "6f3c4667-f191-53b0-9a72-359b1e30cbe8", "text": "\u624b\u956f\u5728\u53d1\u5149\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "1004257", "video_name": "4ed3d415-2fee-5110-9297-8e8cf3041498", "text": "\u98ce\u6247\u5728\u8f66\u5e93\u91cc\u7f13\u6162\u65cb\u8f6c\uff0c\u72d7\u8eba\u5728\u5730\u4e0a\u3002"} +{"id": "8001513", "video_name": "0d573fd3-2b25-562e-b11c-072d595df2f4", "text": "\u65e0\u4eba\u673a\u5728\u591c\u665a\u903c\u8fd1\u6c89\u6ca1\u7684\u4eba\u7fa4\uff0c\u6d77\u6d6a\u9010\u6e10\u6c79\u6d8c\uff0c\u8425\u9020\u51fa\u7535\u5f71\u822c\u7684\u591c\u666f\u6548\u679c\u3002"} +{"id": "4004097", "video_name": "2010d762-7b96-5f0a-a3d7-2bf0d0d2bd4f", "text": "\u63a8\u5e7f\uff1a\u6d77\u6d6a\u5728\u79fb\u52a8\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002248", "video_name": "a849c288-2325-5f11-ab40-363ac18da870", "text": "\u4e3b\u89d2\u8c61\u5f81\u6027\u5730\u5728\u7530\u5730\u91cc\u79cd\u690d\u79cd\u5b50\u3002"} +{"id": "0004916", "video_name": "11656abd-3ffa-54b9-bc62-5a4ef5279a98", "text": "\u672a\u6765\u4e3b\u9898\u80cc\u666f\uff0c\u4e2d\u592e\u6f02\u6d6e\u7740\u5730\u7403\u5168\u606f\u6295\u5f71\u3002"} +{"id": "0006973", "video_name": "36105c69-4763-5367-b6b4-315858a94c27", "text": "\u4e00\u4e2a\u4eba\u9762\u5bf9\u56f0\u5883\uff0c\u5fc5\u987b\u7406\u667a\u5e94\u5bf9\uff0c\u63a7\u5236\u60c5\u7eea\u3002"} +{"id": "7003514", "video_name": "da8a4715-915f-552b-8346-8e41c924d400", "text": "\u5c71\u9876\u4e0a\u88ab\u805a\u5149\u706f\u7167\u4eae\u7684\u8d85\u8be6\u7ec6\u82b1\u6735\u88ab\u6444\u50cf\u673a\u7f29\u653e\u3002"} +{"id": "6003149", "video_name": "a817303f-9ad2-5d75-bde1-f2116ad4a354", "text": "\u62bd\u8c61\u672a\u6765\u4e3b\u4e49\u8fd0\u52a8\u56fe\u5f62\uff0c\u9ed1\u6697\uff0c\u660e\u4eae\u7684\u8272\u5f69\u5f3a\u8c03\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u5947\u602a\uff0c\u5faa\u73af\u3002"} +{"id": "4004266", "video_name": "1e83f2f4-d8aa-54c2-8d42-c72fc0a01e62", "text": "\u4e00\u540d\u5b64\u72ec\u7684\u5b87\u822a\u5458\u5728\u65e5\u843d\u65f6\u7a7f\u8d8a\u6c99\u6f20\u3002\u5e7f\u89d2\u4fef\u77b0\u955c\u5934\u30024k\u753b\u8d28\u3002\u9ec4\u91d1\u65f6\u95f4\u3002"} +{"id": "7002836", "video_name": "553bfc26-cc67-572e-8657-b9a18af5533c", "text": "\u7537\u5b50\u57281980\u5e74\u4ee3\u4f7f\u7528BBC Micro\u7535\u8111\u6253\u5b57\u3002"} +{"id": "7002605", "video_name": "6685866c-dc92-50b2-9327-7107baa33781", "text": "\u628a\u6811\u548c\u6811\u53f6\u4ece\u6c99\u53d1\u548c\u5730\u677f\u4e0a\u79fb\u5f00\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003500", "video_name": "3e9e1ab8-dd86-5c2b-83f1-53fbc8a8810e", "text": "\u80cc\u666f\u662f\u7531\u7cd6\u679c\u997c\u5e72\u505a\u6210\u7684\uff0c\u6811\u4e0a\u7684\u6c34\u679c\u662f\u7cd6\u679c\u3002\u9644\u4ef61\u3002"} +{"id": "5001482", "video_name": "62c7ddb2-edf4-5c86-bd77-e2d68728e0d9", "text": "\u91d1\u8272\u7684\u82b1\u7530\u6c90\u6d74\u5728\u6e05\u6668\u7684\u5149\u7ebf\u4e2d\u3002"} +{"id": "3003732", "video_name": "458e55b7-3cab-54a3-8d78-aff60aee9876", "text": "\u805a\u7126\u4e8e\u4e00\u4e2a\u5e7b\u60f3\u6c1b\u56f4\u7684\u5e7b\u60f3\u661f\u7403\u3002"} +{"id": "3004654", "video_name": "44e7a21a-9d87-5193-b00d-362b27d74f23", "text": "\u5728\u98ce\u666f\u4f18\u7f8e\u7684\u5c71\u533a\uff0c\u4e24\u4f4d\u604b\u4eba\u5728\u96e8\u4e2d\u91cd\u9022\u3002"} +{"id": "1004227", "video_name": "4e3dff15-8a72-502f-8b11-1d093b0e39f6", "text": "\u201c\u6211\u771f\u7684\u662f\u4ed9\u5973\u6559\u6bcd\u5417\uff1f\u201d\u7070\u59d1\u5a18\u95ee\u9053\u3002\u201c\u4f60\u662f\u8c01\uff1f\u201d\u201c\u5f53\u7136\u662f\u4f60\u7684\u4ed9\u5973\u6559\u6bcd\uff01\u6211\u77e5\u9053\u4f60\u7684"} +{"id": "6002467", "video_name": "b4b02309-f6ac-5ef9-a3fd-80f8b89f236d", "text": "\u5c55\u793a\u4e00\u7fa4\u4eba\u7c7b\u5728\u57ce\u5e02\u5e95\u4e0b\u7684\u5e9f\u5f03\u901a\u9053\u4e2d\u751f\u5b58\uff0c\u8bd5\u56fe\u5bfb\u627e\u8d44\u6e90\u5e76\u907f\u5f00\u673a\u5668\u4eba\u5de1\u903b\u3002"} +{"id": "8001831", "video_name": "5e0c27f3-800f-584d-ba74-bdb881bbb50a", "text": "\u6df1\u6797\u4e2d\u7684\u5e9e\u5927\u53ef\u6015\u7684\u795e\u79d8\u751f\u7269\uff0c\u75288\u6beb\u7c73\u80f6\u7247\u62cd\u6444\u7684\u6e05\u6670\u9897\u7c92\u72b6\u5f71\u50cf\u3002"} +{"id": "2003421", "video_name": "149dbc85-e963-5cb1-9fe1-59750e57a0d4", "text": "\u6e90\u53e5\uff1a\u7ad9\u5728\u56f4\u680f\u4e0a\u7684\u84b8\u6c7d\u670b\u514b\u673a\u68b0\u732b\u6563\u53d1\u7740\u9738\u6c14\uff0c\u4fef\u77b0\u7740\u4e00\u6761\u5145\u6ee1"} +{"id": "8003036", "video_name": "98fa1ab7-923a-595f-b0dc-43111137f7b7", "text": "\u9633\u5149\u7167\u8000\u4e0b\uff0c\u4f4e\u5934\u770b\u7740\u3002"} +{"id": "2006959", "video_name": "6796d4fd-a93b-56e9-9c76-d3de7f7e4f83", "text": "\u80cc\u666f\u4e2d\u6709\u6838\u7206\u70b8\uff0c\u8b93\u8c93\u54aa\u9a5a\u8a1d\u4e86\u3002"} +{"id": "4004892", "video_name": "50064eae-0c65-582f-8e7d-923645bb0894", "text": "\u4e00\u6839\u4ece\u5929\u7a7a\u98d8\u843d\u7684\u7fbd\u6bdb\uff0c\u65e5\u51fa\uff0c\u6e29\u6696\u7684\u8272\u8c03\u3002"} +{"id": "7002426", "video_name": "a389b8fa-bcfa-5cef-b054-9b82adf0c85f", "text": "\u732b\u5728\u6c99\u53d1\u4e0a\u6253\u6eda\u3002"} +{"id": "2006970", "video_name": "8432509c-83c1-5a75-9e1f-69b538aba9e0", "text": "\u4e00\u4e2a\u57fa\u4e8e\u5370\u5ea6\u7684\u623f\u5730\u4ea7\u7269\u4e1a\u56fe\u50cf\uff0c\u5e94\u8be5\u770b\u8d77\u6765\u50cf\u662f\u88ab\u771f\u5b9e\u76f8\u673a\u62cd\u6444\u7684\u3002"} +{"id": "6003802", "video_name": "bb22bcf0-7404-5402-a2ee-8136c9eef747", "text": "\u4e00\u4f4d\u76ae\u80a4\u68d5\u8272\u7684\u7f8e\u4e3d\u5973\u5b50\u7a7f\u7740\u4e8c\u4ef6\u5f0f\u6cf3\u88c5\uff0c\u57288K\u8fea\u58eb\u5c3c\u98ce\u683c\u4e0b\uff0c\u6d82\u62b9\u9632\u6652\u971c\u5230"} +{"id": "2004031", "video_name": "398a8b51-7284-5110-8a9a-dae26acfc0c1", "text": "\u5929\u4e0a\u843d\u77f3\uff0c\u77f3\u96e8\u6ec2\u6cb1\uff0c\u706b\u96e8\u503e\u6cfb\uff0c\u90fd\u5728\u53e4\u57ce\u4e2d\u3002"} +{"id": "2005570", "video_name": "d33deaa6-b029-5860-b86a-e13d8fc3757c", "text": "1930\u5e74\uff0c\u4e24\u4e2a\u7a7f\u7740\u7ec5\u58eb\u98ce\u683c\u84b8\u6c7d\u670b\u514b\u670d\u88c5\u7684\u4eba\u5728\u535a\u89c8\u4f1a\u4e0a\u6f2b\u6b65\uff0c\u65e0\u4eba\u673a\u4fef\u77b0\u4e0b\u7684"} +{"id": "1004169", "video_name": "4d2ee213-fe97-5ef1-aaed-bdd0f935358b", "text": "\u4e00\u4e2a\u6e29\u99a8\u3001\u660f\u6697\u7684\u5496\u5561\u5e97\uff0c\u62e5\u6709\u6e29\u6696\u7684\u8272\u8c03\u3001\u6728\u8d28\u684c\u5b50\u548c\u590d\u53e4\u7684\u88c5\u9970\u3002\u4e24\u4e2a\u670b\u53cb"} +{"id": "7003608", "video_name": "57c01a6c-a2a0-5d5c-bc37-ac284f0fd0cc", "text": "1960\u5e74\u4ee3\u7684\u9e21\u5c3e\u9152\u9152\u5eca\uff0c\u5510\u00b7\u5fb7\u96f7\u73c0\u8fd1\u8ddd\u79bb\u7279\u5199\u8138\u3002"} +{"id": "1003956", "video_name": "48ff3285-d3ff-5529-a9a4-ad675edd6b4e", "text": "\u592a\u7a7a\u4e2d\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u5973\u4eba\u5750\u5728\u5730\u7403\u4e0a\uff0c\u5979\u7528\u624b\u6258\u7740\u5934\uff0c\u53cc\u817f\u4ea4\u53c9\uff0c\u9762\u5e26\u6c89\u601d\u8868\u60c5\u3002"} +{"id": "6002358", "video_name": "9b6ed8b2-b20d-5779-93d0-758b3cc5ea72", "text": "\u4e8c\u6218\u65f6\u671f\u7684\u5916\u661f\u6218\u4e89\u673a\u5668\u5f55\u5f71\u5e26\uff0c\u4e09\u6761\u817f\u7684\u6218\u4e89\u673a\u5668\uff0c\u590d\u53e4\u6218\u4e89\u5f71\u50cf\u3002"} +{"id": "1004379", "video_name": "50dff8e7-3094-5cea-b5f2-2baf1f1354e1", "text": "\u7537\u4eba\u671d\u4e00\u68f5\u6b7b\u6811\u6254\u65a7\u5934\uff0c\u6050\u6016\u89c6\u9891\u3002"} +{"id": "3005149", "video_name": "d50ff8ba-07b1-5d92-b9e5-bc8bc531b8b3", "text": "\u76f8\u673a\u5411\u6db2\u4f53\u5899\u79fb\u52a8\u7684\u955c\u5934\uff0c\u8425\u9020\u51fa\u8fd0\u52a8\u548c\u6d3b\u529b\u7684\u611f\u89c9\u3002"} +{"id": "7002011", "video_name": "aaa7a6cd-1739-5f8d-9f09-5c9cfb31a901", "text": "\u665a\u4e0a\u524d\u95e8\u6709\u4e24\u4e2a\u706f\u5728\u95ea\u70c1\u3002"} +{"id": "2003795", "video_name": "ab9f089b-fac9-5b28-9b36-b3c15d443e55", "text": "\u5728\u6e56\u8fb9\u8c6a\u534e\u623f\u4ea7\u7684\u7a97\u53e3\u900f\u8fc7\u671b\u53bb\uff0c\u53ef\u4ee5\u770b\u5230\u5468\u56f4\u71c3\u70e7\u7684\u68ee\u6797\u706b\u707e\uff0c\u5c31\u50cf\u7535\u89c6\u5e7f\u544a\u4e00"} +{"id": "4003744", "video_name": "b7e92457-1cc7-5b0b-b66a-4fa7d580a942", "text": "\u4e00\u6761\u91d1\u9f99\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u4ece\u53f3\u8fb9\u98de\u5230\u5de6\u8fb9\u3002"} +{"id": "2007260", "video_name": "b001e2eb-e241-5084-b888-a85428629a77", "text": "\u4e00\u9053\u795e\u5947\u7684\u95e8\u6237\uff0c\u8fde\u63a5\u82b1\u56ed\u4e2d\u7684\u4e24\u4e2a\u9886\u57df\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u65cb\u8f6c\u7684\u53d1\u5149\u80fd\u91cf\u56fe\u6848\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "2007159", "video_name": "7ea6f8ba-a24d-5c8d-8a47-6fa95a843c69", "text": "\u5723\u8bde\u6d3e\u5bf9\u4e0a\u670920\u4e2a\u4eba\uff0c\u767d\u8272\u7684\u5899\u58c1\uff0c\u767d\u8272\u7684\u6c99\u53d1\uff0c\u68d5\u8272\u7684\u94a2\u7434\u9760\u5728\u58c1\u7089\u65c1\u8fb9"} +{"id": "2006973", "video_name": "85f62e53-f923-5d1d-8e28-f8baa5f4afc9", "text": "\u4e00\u4e2a\u7a7f\u7740\u9a91\u58eb\u76d4\u7532\u7684\u82f1\u96c4\u6740\u6b7b\u4e86\u9f99\u3002\u592a\u9633\u4ece\u4ed6\u4eec\u7684\u6218\u6597\u4e2d\u5347\u8d77\u3002"} +{"id": "6003388", "video_name": "40b98263-77f2-5707-9184-7e34292b2c9a", "text": "\u4e00\u4e2a\u6234\u7740\u5947\u602a\u9762\u5177\u7684\u7537\u5b50\u5750\u5728\u4e00\u76d8\u98df\u7269\u524d\uff0c\u8fd9\u662fOtto Pilny\u7684\u4eba\u7269\u8096\u50cf\uff0ccgsociety\uff0c\u590d\u53e4\u672a\u6765\u4e3b\u4e49\uff0c"} +{"id": "4003664", "video_name": "49301147-079f-59d1-8761-077c6c842f79", "text": "\u7f8e\u4e3d\u7684\u5973\u9b3c\uff0c\u9ed1\u767d\u8272\u8c03\uff0c\u7535\u5f71\u611f\uff0c3D\u3002"} +{"id": "1005156", "video_name": "5ef9eeb9-f813-513b-82de-07101ee997b4", "text": "\u516c\u5171\u6c7d\u8f66\u975e\u5e38\u62e5\u6324\uff0c\u800c\u4e14\u5728\u8fd9\u8f86\u516c\u4ea4\u8f66\u4e0a\u6709\u4e00\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "0003535", "video_name": "3f1a391d-d68a-5769-93ef-ea3534ff21e2", "text": "\u8349\u7684\u7f13\u6162\u6d41\u52a8\n\nSource sentence: The sky is blue today. \n\u4eca\u5929\u5929\u7a7a\u662f\u84dd\u8272\u7684\u3002"} +{"id": "6003935", "video_name": "5278b427-4f32-5c77-9856-6ef1fcffd768", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u5b54\u96c0\u8df3\u821e\uff0c\u5929\u4f7f\u5973\u738b\u548c\u738b\u5b50\u8df3\u821e\uff0c\u56fd\u738b\u548c\u4eba\u4eec\u5728\u5468\u56f4\u8d70\u52a8\u3002"} +{"id": "8002447", "video_name": "362bd3e5-3712-56fe-a3c8-1c7d1f3140bf", "text": "\u4e00\u53ea\u72ec\u81ea\u7684\u5927\u8c61\u5728\u6cb3\u8fb9\u7684\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u5929\u7a7a\u707f\u70c2\u7f8e\u4e3d\u3002"} +{"id": "3003132", "video_name": "b3b12dd6-f98f-5a45-844f-0d41890f335f", "text": "\u7231\u662f\u6700\u4f1f\u5927\u7684\u793c\u7269\u548c\u8d22\u5bcc\n\u4e00\u5ea7\u6c38\u4e0d\u5012\u584c\u7684\u529b\u91cf\u91d1\u5b57\u5854\n\u9ad8\u8038\u800c\u4e0d\u65ad\u6210\u957f\n\u81ea\u7531\u7684\u7075"} +{"id": "1006811", "video_name": "7cadab37-2df5-54a8-ba3b-b72163723637", "text": "\u533b\u9662\u5899\u58c1\u4e0a\u7684\u8840\u8ff9\u53d1\u73b0\u5f55\u50cf\u8d44\u6599\u3002"} +{"id": "0003601", "video_name": "403939b1-d885-51c8-a4f4-03cbdbfd9298", "text": "\u9633\u5149\u8eb2\u5728\u7070\u8272\u7684\u4e91\u5c42\u540e\u9762\uff0c\u96e8\u6c34\u843d\u5728\u57ce\u5e02\u4e0a\uff0c\u5728\u7a7a\u6c14\u4e2d\u5f62\u6210\u5f69\u8679\u6548\u5e94\u3002"} +{"id": "6003459", "video_name": "b547cdff-9460-50d2-93fb-c74362f3c1b5", "text": "\u4e00\u540d\u7537\u5b50\u5728\u6811\u4e0b\u5f39\u5409\u4ed6\uff0c4K\u3002"} +{"id": "0005131", "video_name": "155cdf08-d9e4-52bd-ace5-6f6e23f8a778", "text": "\u4e00\u573a\u96f7\u66b4\u4e2d\u9f99\u5377\u98ce\u6467\u6bc1\u623f\u5c4b\u7684\u8fdc\u666f\u62cd\u6444\u3002"} +{"id": "0005576", "video_name": "1d543627-5c2a-5569-a5ea-0ef39b8ebed8", "text": "\u7528\u9632\u6c34\u978b\u80f6\u5957\u5236\u4f5c\u4e00\u4e2a\u77ed\u89c6\u9891\u5e7f\u544a\u3002"} +{"id": "6003558", "video_name": "2865b4e0-9e68-5ef3-bf64-c0efd959004c", "text": "\u4e00\u7fa4\u5feb\u6a02\u7684\u5c0f\u5929\u4f7f\u4f4f\u5728\u4e00\u500b\u7f8e\u9e97\u7684\u5feb\u6a02\u6751\u838a\u88e1\u3002\u6709\u4e00\u5929\uff0c\u4ed6\u5011\u5728\u68ee\u6797\u4e2d"} +{"id": "2004312", "video_name": "74fbf888-a7e6-58de-b54c-6aa164f9df90", "text": "\u6709\u98ce\uff0c\u62c9\u4f38\u7684\u955c\u5934\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002040", "video_name": "7771b0f4-d3ed-5139-9d9a-dc28a0cc18c6", "text": "\u7f57\u9a6c\u58eb\u5175\u7ad9\u5728\u7ea6\u745f\u592b\u7684\u4f4d\u7f6e\u4e0a\uff0c\u5411\u4eba\u4eec\u5927\u558a\u3002"} +{"id": "1005556", "video_name": "66448c56-6aeb-5621-8f07-c878e5224f18", "text": "\u4e00\u7247\u5b81\u9759\u7684\u591c\u7a7a\uff0c\u4ee5\u4e00\u9897\u95ea\u8000\u660e\u4eae\u7684\u661f\u661f\u4e3a\u7126\u70b9\u3002\u8fd9\u9897\u661f\u661f\u5e94\u8be5\u6563\u53d1\u51fa\u6e29\u548c\u7684\u5149\u8292\uff0c"} +{"id": "8003474", "video_name": "869d5c9b-a9df-5e1c-b074-5b56a8d7c88c", "text": "\u6e90\u53e5\uff1a\u8d85\u7ea78\u6beb\u7c73\u7535\u5f71\u7684\u4e00\u4e2a\u5de8\u5927\u7684\u70ed\u5e26\u706b\u5c71\u5728\u6d77\u6d0b\u4e2d\u592e\u7684\u7535\u5f71\u955c\u5934\uff0c\u827a\u672f\u7535\u5f71\n\n\u8d85\u7ea78"} +{"id": "3005269", "video_name": "57a899f1-3a72-54ab-8fe2-868db1dbeb86", "text": "\u6c99\u7279\u963f\u62c9\u4f2f\u7684\u6d3b\u52a8\uff0c\u4ed6\u8c08\u5230\u4e86\u535a\u89c8\u4f1a\u3002"} +{"id": "3004224", "video_name": "64783141-8a7b-5146-8a40-95fc59cc8679", "text": "\u4e00\u4f4d\u50cf\u6f2b\u5a01\u7535\u5f71\u822c\u7684\u8d85\u7ea7\u82f1\u96c4\u5f62\u8c61\u2014\u2014\u8eab\u7740\u975e\u6d32\u88c5\u7532\uff0c\u624b\u6301\u957f\u77db\u7684\u5f3a\u5927\u975e\u6d32\u795e\u660e\u5965"} +{"id": "2004296", "video_name": "91ebb897-f9c2-5262-86d0-4da0393bb985", "text": "\u591c\u7a7a\u4e2d\u4fef\u77b0\uff0c\u901a\u8fc7\u98de\u884c\u65e0\u4eba\u673a\uff0c\u7ebd\u7ea6\u5e02\u7684\u591c\u666f\u3002"} +{"id": "2005298", "video_name": "4ad375c2-2c1b-59b3-bbb5-26c421a7728a", "text": "\u6bcd\u725b\u5403\u8349\uff0c\u5c0f\u725b\u5728\u6bcd\u725b\u5468\u56f4\u8f6c\u5708\u3002"} +{"id": "6004024", "video_name": "4373d060-d638-55c5-90c7-4d867c021985", "text": "\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u5728\u7b11\u7740\u7ad9\u8d77\u6765\u8bfb\u4e00\u5c01\u4fe1\uff0c\u800c\u6210\u5343\u4e0a\u4e07\u76f8\u540c\u7684\u673a\u5668\u4eba\u5728\u4ed6\u8eab\u540e\u3002\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "2006465", "video_name": "27dabd18-e2a7-5aae-88c4-d852191da342", "text": "\u4e00\u652f\u7c89\u8272\u7684\u957f\u53e3\u7ea2\u6162\u6162\u5730\u9732\u4e86\u51fa\u6765\u3002"} +{"id": "4003567", "video_name": "2919e564-e9d2-5c12-a45b-7494e83ebf0d", "text": "\u53ea\u8981\u8ba9\u56fe\u7247\u4e2d\u7684\u9f99\u7a0d\u5fae\u52a8\u4e00\u4e0b\u5c31\u53ef\u4ee5\u4e86\u3002 \n\nSource sentence: I am interested in learning Chinese culture and language. \n\n\u6211\u5bf9\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u5f88\u611f\u5174"} +{"id": "1003628", "video_name": "42d32ddf-7f2e-5181-b7aa-1f9dfc252284", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u62e5\u62b1\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "0004263", "video_name": "0613ea09-9aba-52d2-b591-52435499cac8", "text": "\u521b\u4f5c\u4e00\u4e2a\u540d\u4e3a\u201cTHE MOVING FILMS\u201d\u76842D\u63d2\u56fe\u6807\u5fd7\u3002"} +{"id": "0003679", "video_name": "4193a9b4-9398-597d-850f-b0f81619153a", "text": "\u4ee5\u8272\u5217\u4eba\u5728\u6c99\u6f20\u4e2d\u5411\u4e0a\u5e1d\u7948\u6c42\u5bbd\u6055\u3002"} +{"id": "7002985", "video_name": "ddd4b7bc-0662-5fe5-97e5-3587c8a834cd", "text": "\u5c0f\u7537\u5b69\u548c\u5c0f\u732b\u5728\u516c\u56ed\u91cc\u5206\u5f00\u4e86\u3002"} +{"id": "1006550", "video_name": "77fcd492-49c4-5828-b10d-db25c56eea88", "text": "\u4e00\u8f6e\u88ab\u539a\u91cd\u3001\u66b4\u98ce\u96e8\u822c\u7684\u4e91\u5c42\u906e\u853d\u7684\u6708\u4eae\uff0c\u6295\u5c04\u51fa\u8be1\u5f02\u800c\u660f\u6697\u7684\u5149\u8292\uff0c"} +{"id": "2006119", "video_name": "622f6d30-add5-5e86-8f72-a42107ed8f8d", "text": "\u4e00\u540d\u5973\u5b50\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u54af\u54af\u7b11\u3002"} +{"id": "3003409", "video_name": "09fed99e-9d25-58f3-91e5-df06086de272", "text": "\u6697\u793a\u7740\u5148\u8fdb\u6587\u660e\u7684\u8c61\u5f62\u6587\u5b57"} +{"id": "5001353", "video_name": "9ff408e1-ca85-5d84-9dd3-ed41c664de72", "text": "\u5c0f\u7537\u5b69\u548c\u6cd5\u5e08\u4e00\u8d77\u5b66\u4e60\u9b54\u6cd5\u3002"} +{"id": "2003889", "video_name": "dabba230-4b48-5bb8-8f84-26066389a3d7", "text": "\u6162\u65c5\u884c\u5e26\u6211\u4eec\u6765\u5230\u4e86\u4e00\u4e2a\u6570\u636e\u4e2d\u5fc3\u3002"} +{"id": "3006485", "video_name": "c62fc092-8172-594e-8d10-5a6be151cb17", "text": "\u79fb\u52a8\u5de6\u624b\uff0c\u79fb\u52a8\u53f3\u624b\uff0c\u79fb\u52a8\u5634\u5df4"} +{"id": "2007075", "video_name": "bd6d386c-b52d-536f-82e4-eeb4dbae430c", "text": "\u5b64\u96f6\u96f6\u7684\u5730\u65b9\u626d\u66f2\u7684\u7011\u5e03"} +{"id": "8003017", "video_name": "da92c049-53d2-5226-b3f8-56f9e7023241", "text": "\u8fb9\u7f18\u7a7a\u95f4\u662f\u4e00\u4e2a\u6709\u57ce\u5821\u548c\u7eff\u8272\u7011\u5e03\u7684\u9ed1\u6697\u96fe\u6c14\u68ee\u6797\u3002"} +{"id": "4004917", "video_name": "e9a6c1f6-894d-5f4a-8e17-48f463c405b8", "text": "\u4e24\u4e2a\u7231\uff08AI\uff09\u4eba\u7269\u5728\u9910\u5385\u91cc\u8ba8\u8bba\u3002"} +{"id": "2005150", "video_name": "a3aad52c-a54d-52ef-869e-0d630d6abce5", "text": "\u6444\u50cf\u5934\u653e\u5927\u5230\u672a\u6765\u673a\u5668\u4eba\u7684\u8138\u4e0a\uff0c\u9713\u8679\u706f\uff0c\u96e8\u6c34\u3002"} +{"id": "7004964", "video_name": "0b79b676-6b52-5a37-a1a4-9ccc3f7d1892", "text": "\u4e00\u4e2a\u7537\u5b69\u4ece\u68ee\u6797\u8d70\u5411\u5c0f\u5c4b\uff0c24fps 8k \u7535\u5f71\u5316\u3002"} +{"id": "0006103", "video_name": "26a30f7d-9e61-5105-b6df-0968478d1ca0", "text": "\u4e00\u4e2a\u6c34\u7403\u4ece\u540e\u65b9\u98de\u5411\u7403\u95e8\u7684\u89c6\u89d2"} +{"id": "2007899", "video_name": "e30f06ba-f2ba-5d49-9a7e-9d4cd05bc37b", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u5b69\u5728\u5c71\u8def\u4e0a\u9a91\u81ea\u884c\u8f66\u3002\n\nSource sentence: The sun is setting behind the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "2003743", "video_name": "e80fd2fd-c6d7-5c45-89cd-3db82c074b9d", "text": "\u7ed9\u5b9a\u56fe\u7247\u589e\u52a0\u4eae\u5ea6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004117", "video_name": "037cf0fd-1c3f-5c45-bf87-2712dfd801e5", "text": "\u5728\u6d77\u6ee9\u6253\u6392\u7403\u7684\u5973\u6027\u3002"} +{"id": "0006259", "video_name": "298a8ef8-c96e-5c40-96ce-5a7e22e35dde", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u901a\u8fc7\u6570\u5b57\u6a21\u5f0f\u8fdb\u884c\u8054\u76df\u8425\u9500\u3002"} +{"id": "4003729", "video_name": "0ac741f8-8a11-5457-baa8-a3255fc45aad", "text": "\u9ad8\u5c14\u592b\u7403\u573a\u4e0a\u7684\u6fc0\u70c8\u6218\u6597\u3002"} +{"id": "7003300", "video_name": "e6ddc992-fbaa-5c74-9e7f-9421beae9131", "text": "\u5973\u795e\u5361\u5361\u300a\u8840\u8165\u739b\u4e3d\u300b\u97f3\u4e50\u5f55\u5f71\u5e26\u753b\u9762\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u9ad8\u6e05\uff0c\u9ad8\u8d28\u91cf\uff0c\u5168"} +{"id": "8002024", "video_name": "df13e967-0c98-56d7-b563-239a6488577c", "text": "\u68ee\u6797\u88ab\u4e00\u6b21\u707e\u96be\u6027\u7206\u70b8\u5937\u4e3a\u5e73\u5730\u3002\n\nSource sentence: The company announced a new policy to reduce plastic waste. \n\n\u516c\u53f8\u5ba3\u5e03\u4e86\u4e00\u9879\u65b0\u653f\u7b56"} +{"id": "6004961", "video_name": "4db8680e-8a58-5e66-a548-a78f88714116", "text": "\u4e00\u5bf9\u7537\u5973\u5728\u6d6a\u6f2b\u7ea6\u4f1a\u4e2d\u4e00\u8d77\u559d\u5496\u5561\u3002"} +{"id": "2006174", "video_name": "466db995-d02e-5c87-8e15-cd09680e54cc", "text": "\u98de\u884c\u7684\u4eba 24fps \u9ad8\u6e05\u9510\u5229 3D \u90aa\u6076"} +{"id": "0003040", "video_name": "35f9d978-cdd2-5be8-988b-d8d3b945b52a", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u548c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4e00\u8d77\u8d70\u8def\uff0c\u4ee54K\u9ad8\u6e05\u8d85\u903c\u771f\u7684\u753b\u9762\u5448\u73b0\u3002"} +{"id": "6004319", "video_name": "9a9a72a8-e2f5-52ce-9cbd-fe3335fa2177", "text": "\u4e00\u500b\u6234\u8457\u79d1\u6280\u9023\u5e3d\u886b\u7684\u8499\u9762\u4eba\u6b63\u5728\u51b0\u4e0a\u8207\u4e00\u96bb\u7a7f\u8457\u8863\u670d\u7684\u7375\u8c79\u4e26\u80a9\u8d70"} +{"id": "4003055", "video_name": "8ce274ef-1322-50bb-aa44-98040aaaa1d3", "text": "\u767d\u8272\u5e95\u8272\uff0c\u5199\u4e94\u4e2a\u5b57\u6d77\u59c6\u8fbe\u5c14\u5929\u5802\uff0c\u4f7f\u7528\u4e2d\u6027\u7b14\u6d82\u9e26\u3002"} +{"id": "8003371", "video_name": "216a41ad-437d-581c-b8f5-9f0e0a038544", "text": "\u6cfd\u8fde\u65af\u57fa\u5728\u7b11\uff0c\u800c\u83ab\u65af\u79d1\u5728\u80cc\u666f\u4e2d\u71c3\u70e7\u3002"} +{"id": "6002086", "video_name": "da2eed3d-29cb-5a48-b379-c6fef8fcc67a", "text": "\u5c06\u8fd9\u5f20\u56fe\u7247\u52a8\u753b\u5316\uff0c\u5e76\u5c55\u793a\u4eba\u7fa4\u505a\u963f\u63d0\u4eea\u5f0f\u3002"} +{"id": "3005001", "video_name": "df478eee-748f-5895-9527-5c367d048132", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5728\u65e5\u51fa\u65f6\u671b\u5411\u5c71\u8109\u3002"} +{"id": "2005131", "video_name": "2d22470f-45c0-501b-af11-fb229b3e63f5", "text": "90\u5e74\u4ee3\u5f55\u97f3\uff0c\u5df4\u9ece\u4e16\u5bb6JDM\u6c7d\u8f66\u5de5\u4f5c\u5ba4\u5168\u666f\u62cd\u6444\u3002"} +{"id": "8003964", "video_name": "df40b87b-daed-56b8-bb9a-a73bcfd321ae", "text": "\u5973\u4eba\u5408\u624b\u7684\u624b\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u795e\u7ecf\u98ce\u683c\uff0c\u7a81\u89e6\u98ce\u683c\uff0c\u903c\u771f\u7167\u7247\u98ce\u683c\u3002"} +{"id": "1005935", "video_name": "6d0847d4-7d32-5855-a541-038247c1b82b", "text": "\u6570\u53f0\u7535\u8111\u4ee5\u9ad8\u901f\u76f8\u4e92\u4ea4\u6d41\u4fe1\u606f\u548c\u6570\u636e\u3002\u5177\u6709\u672a\u6765\u611f\u7684\u98ce\u683c\u3002\u6211\u4eec\u53ef\u4ee5\u770b\u5230\u6570\u636e\u5728\u7a7a\u6c14\u4e2d\u4ee5\u9ad8\u901f\u98de\u884c\uff0c\u5e26\u7740"} +{"id": "8003977", "video_name": "23dedb4c-0172-542d-a094-31eb4d55302c", "text": "\u7518\u5730\u7684\u6f14\u8bb2\u4e2d\uff0c\u7518\u5730\u7528\u4e86\u5f88\u597d\u7684\u63aa\u8f9e\uff0c\u9002\u5408\u4e8e\u4e0d\u540c\u5e74\u9f84\u5c42\u7684\u4eba\u542c\uff0c\u8ba9\u4ed6\u4eec\u90fd\u6df1\u53d7\u542f\u53d1"} +{"id": "1003371", "video_name": "3e269b00-7725-5cd8-a755-75e7dd291e06", "text": "\u628aBusta Rhymes\u9009\u4e3a\u300a\u963f\u62c9\u4e01\u300b\u4e2d\u7684\u9b54\u706f\u7cbe\u7075\u3002"} +{"id": "0005898", "video_name": "22eec976-3683-5338-8b73-3ed5016f0f78", "text": "\u7528FlexRecords\u7684\u540d\u5b57\u5236\u4f5c\u4e00\u9996\u97f3\u4e50\u5c01\u9762\u3002"} +{"id": "0005945", "video_name": "23c09793-3cc1-59ff-b875-3158f84ad2db", "text": "\u4e00\u4e2a\u975e\u6d32\u7537\u5b50\u5728\u57ce\u5e02\u4e2d\u5347\u7a7a\u8fdb\u5165\u4e00\u67b6UFO\uff0c\u57ce\u5e02\u5904\u4e8e\u5927\u706b\u4e4b\u4e2d\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c4K\u3002"} +{"id": "2003080", "video_name": "bba58e19-00ef-50c8-9454-a320bf4d70fd", "text": "\u60f3\u8c61\u827e\u7c73\u8389\uff0c\u5728\u53d7\u5230\u795e\u5947\u7684\u6545\u4e8b\u542f\u53d1\u540e\uff0c\u671b\u7740\u7a97\u5916\u7b2c\u4e00\u7247\u96ea\u82b1\u843d\u4e0b\uff0c\u5c06\u5e38\u9752\u7011"} +{"id": "4003210", "video_name": "d77cf4f6-0952-5f59-ac23-83ddf347d68c", "text": "\u7537\u4eba\u5750\u7740\uff0c\u8eab\u540e\u6709\u84dd\u8272\u5f3a\u5927\u7684\u6c14\u573a\uff0c\u773c\u775b\u53d1\u5149\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u52a8\u753b\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9ad8\u6e05\u3002"} +{"id": "0005510", "video_name": "1c0d9abc-8464-5a65-983d-198be2b2408e", "text": "5\u53ea\u6591\u9a6c\u5728\u5403\u8349\u3001\u884c\u8d70\uff0c\u6e38\u620f\u8bbe\u7f6e\u4e3a20\uff0c\u52a8\u4f5c\u8bbe\u7f6e\u4e3a3\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "2006618", "video_name": "a1c250b7-1393-54d2-abdd-5f7412559aa5", "text": "\u5e7f\u544a\u4e2d\u4e00\u5757\u6709\u5f88\u591a\u878d\u5316\u5976\u916a\u7684\u62ab\u8428\u7247\u88ab\u4e3e\u8d77\u3002"} +{"id": "8003847", "video_name": "5435977c-a026-5253-97a1-bea601dc7a4e", "text": "\u98ce\u8f7b\u8f7b\u5730\u5439\u7740\uff0c\u5927\u718a\u4f4e\u4e0b\u5934\u770b\u7740\u5c0f\u718a\u3002\u5c0f\u718a\u62ac\u8d77\u5934\uff0c\u6162\u6162\u5730\u95ed\u4e0a\u4e86\u773c"} +{"id": "8001740", "video_name": "2ddb072f-a402-5274-bf79-8fa3817b86cd", "text": "\u4e00\u4e2a\u7a7f\u7740\u963f\u62c9\u4f2f\u6218\u58eb\u5236\u670d\uff0c\u624b\u6301\u5200\u5177\u7684\u963f\u62c9\u4f2f\u6218\u58eb\u4e0e\u4e24\u4e2a\u4eba\u5728\u65e7\u793e\u533a\u4e2d\u95f4\u640f\u6597\u3002"} +{"id": "3005524", "video_name": "01e92144-7e03-5de2-8725-8fd88accf950", "text": "\u5e74\u8f7b\u7537\u5b69\u7684\u7c89\u8272\u5f71\u5b50"} +{"id": "1006229", "video_name": "72353553-5b60-5a49-9b1b-12a32a58ee34", "text": "\u6d77\u5cb8\u4e0a\u5954\u8dd1\u7684\u9a6c\u903c\u771f\u89c6\u9891\uff0c\u6df1\u5ea6\u7535\u5f71\u5316\u89c6\u89d2\u3002"} +{"id": "7004254", "video_name": "cb9b061a-7388-5ca6-a053-781a4f336ae0", "text": "\u7ef4\u4eac\u4eba\u51dd\u89c6\u7740\u66b4\u98ce\u96e8\u822c\u7684\u5929\u7a7a\uff0c\u54ed\u6ce3\u7740\uff0c\u7279\u5199\u955c\u5934\uff0c\u76f8\u673a\u65cb\u8f6c\uff0c8k\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7535"} +{"id": "8003958", "video_name": "55de0cff-7d4a-51a5-925e-030f9bebba8d", "text": "\u4e00\u672c\u6253\u5f00\u7684\u4e66\uff0c\u63ed\u793a\u4e86\u94f6\u6cb3\u7684\u56fe\u7247\u3002"} +{"id": "6002271", "video_name": "b6c81e8a-5a4d-5e10-a223-bc004decbb4a", "text": "\u8001\u9f20\u5728\u68ee\u6797\u91cc\u8d70\u52a8\u3002\u76ae\u514b\u65af3D\u98ce\u683c\u3002"} +{"id": "1003886", "video_name": "47aa8bd1-b9f0-5370-adfa-334297bd79ba", "text": "\u4e09\u4eba\u5750\u5728\u95ea\u70c1\u7684\u6e56\u8fb9\u76843D\u52a8\u753b\u89c6\u9891\u4e2d\u3002\u5f53\u6770\u514b\u5411\u8389\u8389\u8868\u767d\u65f6\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u4ed6\u4eec"} +{"id": "3005874", "video_name": "2b430569-4988-570a-8cee-c7b69838b754", "text": "\u5916\u661f\u4eba\u5efa\u9020\u53e4\u57c3\u53ca\u91d1\u5b57\u5854\uff0c\u8f7b\u677e\u642c\u8fd0\u5de8\u5927\u7684\u77f3\u5757\u5e76\u8df3\u821e\u3002"} +{"id": "1003254", "video_name": "3bea9736-6cac-5465-9154-2543fc094330", "text": "\u5979\u628a\u6d41\u611f\u4f5c\u4e3a\u5723\u8bde\u793c\u7269\u9001\u7ed9\u4e86\u6211\u3002"} +{"id": "3004238", "video_name": "71f1bd4a-728a-57b8-acf5-dd2b853426a3", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4ece\u5730\u7403\u53d1\u5c04\u5e76\u5728\u6708\u7403\u7740\u9646\u7684\u592a\u7a7a\u706b\u7bad\u7684\u89c6\u9891\uff0c\u628a\u89c6\u9891\u957f\u5ea6\u63a7\u5236\u5728\u4e00\u5206\u949f\u3002"} +{"id": "4002142", "video_name": "af72fde4-f332-52df-a8cb-d56419fbf946", "text": "\u4e00\u4f4d20\u5c81\u7684\u5973\u5b69\uff0c\u62e5\u6709\u98d8\u9038\u7684\u957f\u53d1\uff0c\u5927\u800c\u6df1\u68d5\u8272\u7684\u773c\u775b\uff0c\u5b8c\u7f8e\u7684\u692d\u5706\u8138\u5e9e\uff0c\u5728\u4ee5\u9510"} +{"id": "4002213", "video_name": "7d77ca9a-33de-572a-9329-0b5bbc56a159", "text": "\u661f\u7a7a\u4e0b\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u822c\u7684\u591c\u95f4\u79d1\u5e7b\u57ce\u5e02\u666f\u89c2\uff0c\u4e0a\u9762\u6709\u661f\u661f\u548c\u661f\u7cfb\u3002"} +{"id": "4003512", "video_name": "9f41ad8d-9112-5380-a362-93029970d084", "text": "\u5f53\u827e\u7c73\u8389\u56de\u5934\u770b\u65f6\uff0c\u5979\u53d1\u8a93\u5728\u697c\u4e0a\u7684\u4e00\u6247\u7a97\u6237\u91cc\u770b\u5230\u4e00\u4e2a\u6a21\u7cca\u7684\u8eab\u5f71\uff0c\u5e26\u7740\u82e6\u6da9\u7684\u5fae"} +{"id": "3004546", "video_name": "8e1a166f-0f5b-52ef-bc28-2c21a6cdce37", "text": "\u5934\u53d1\u968f\u7740\u7a7a\u6c14\u800c\u52a8\uff0c\u5916\u5957\u4e5f\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "1006071", "video_name": "6f6b173f-d333-5be2-af89-fb2b7ce8cf68", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5361\u901a\u81ea\u884c\u8f66\u624b\u722c\u5c71\uff0c\u5c71\u7531\u68c9\u82b1\u7cd6\u5236\u6210\u3002\u753b\u9762\u5c55\u793a\u81ea\u884c\u8f66\u624b\u88ab\u9ad8\u5927\u96c4\u4f1f\u7684\u5c71\u5305\u56f4\u3002"} +{"id": "4004068", "video_name": "8ecd69a7-f105-54d7-ae81-4d33b51c7459", "text": "\u8ba9\u56fe\u7247\u4e2d\u7684\u5b69\u5b50\u52a8\u8d77\u6765\uff0c\u50cf\u662f\u5728\u5b66\u4e60\u65f6\u7ffb\u5f00\u4e66\u7c4d\u3002"} +{"id": "7003173", "video_name": "1db4b5da-6b7f-5f25-84d9-815cac13d03d", "text": "\u4e00\u53ea\u96c4\u4f1f\u7684\u68d5\u8272\u718a\u7ad9\u5728\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u68ee\u6797\u4e2d\u3002\u718a\u5e94\u8be5\u5448\u73b0\u51fa\u5f3a\u6709\u529b\u7684"} +{"id": "7003917", "video_name": "ee37bd48-dd0d-5811-a250-ba631589cfa6", "text": "\u6d1b\u5fb7\u00b7\u62c9\u59c6\u56de\u5bb6\u4e86\uff0c\u8d70\u8fdb\u5bfa\u5e99\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u4e0e\u97e9\u7eb3\u66fc\u795e\u4e00\u8d77\uff0c\u4eba\u7fa4\u6b22\u5e86\uff0c\u5b9b\u5982"} +{"id": "2007867", "video_name": "84f045e7-5e2b-51d2-a922-15308eb0e3f6", "text": "\u5c3c\u5c14\u00b7\u963f\u59c6\u65af\u7279\u6717\u548c\u5df4\u5179\u00b7\u5965\u5c14\u5fb7\u6797\u767b\u4e0a\u4e86\u767b\u6708\u8231\u3002"} +{"id": "0005933", "video_name": "237043b2-d775-5534-a185-f2d80e096b7b", "text": "\u9633\u4f1e\u968f\u98ce\u6643\u52a8\uff0c\u6c60\u5858\u4e2d\u6709\u6ce2\u6d6a\u3002"} +{"id": "3003282", "video_name": "ac252f1b-7700-5fbe-b356-f680b157e019", "text": "\u516c\u4e3b\u5750\u5728\u738b\u5ea7\u4e0a\u559d\u7740\u7ea2\u9152\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u6b22\u5feb\u7684\u6c14\u6c1b\uff0c\u6444\u50cf\u5934\u7f29\u653e\u81f360\uff0c\u4fe1\u606f"} +{"id": "2007108", "video_name": "7f2079ed-0184-535d-a9da-f377b76a02c7", "text": "\u60f3\u8c61\u4e00\u4e2a\u5b87\u5b99\u6c99\u6f20\u4e2d\u7684\u865a\u5e7b\u68a6\u5883\uff0c\u9713\u8679\u4ed9\u4eba\u638c\u968f\u7740\u7535\u5b50\u8282\u594f\u8df3\u52a8\u3002\u6708\u4eae\u662f"} +{"id": "6002284", "video_name": "e3b750fd-4c08-56ce-9f74-ce95ac2a0e71", "text": "\u751f\u6210\u4e00\u90e8\u77ed\u7247\uff0c\u8bb2\u8ff0\u4e00\u4e2a25\u5c81\u7684\u7537\u5b50\u5f00\u53d1\u4e86\u4eba\u5de5\u667a\u80fd\u548c\u5143\u5b87\u5b99\u6765\u5e2e\u52a9\u4eba\u4eec\u514b\u670d\u6050\u60e7\uff0c\u4f46\u540e\u6765\u5c06"} +{"id": "1005933", "video_name": "6d005891-b251-5106-9eb0-ebddb98eb833", "text": "\u71d5\u9ea6\u8106\u7247\u88ab\u5012\u5165\u4e00\u4e2a\u7897\u91cc\uff0c\u7897\u91cc\u6709\u7d2b\u8272\u7684\u9171\u3002"} +{"id": "7004085", "video_name": "748817ce-0647-5eeb-93ce-21c97a7016fa", "text": "\u4e00\u4e2a\u65cb\u8f6c\u7684\u5730\u7403\u4eea\uff0c\u5e26\u6709\u8fde\u63a5\u4e0d\u540c\u6d32\u9645\u7684\u52a8\u753b\u7ebf\u6761\uff0c\u8f6c\u6362\u4e3a\u6ce2\u52a8\u7684\u91d1\u878d\u56fe\u8868\u548c\u56fe\u5f62\u7684\u80cc\u666f\uff0c\u8c61\u5f81"} +{"id": "8002161", "video_name": "4990dbea-6fae-5710-8331-71ba9a09689a", "text": "\u5728\u4e00\u6761\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\uff0c\u4e24\u4e2a\u5973\u5b69\u88ab\u4e00\u4e2a\u7537\u4eba\u8ddf\u8e2a\u3002"} +{"id": "0005599", "video_name": "1dc44015-2f8e-5890-b0e7-939a1225cb22", "text": "\u5e02\u573a\u8425\u9500\u4eba\u5458\u6b63\u5728\u5f00\u5c55\u4e00\u9879\u65b0\u7684\u8f6f\u4ef6\u9879\u76ee\uff0c\u8fd9\u5c06\u6539\u53d8\u4e16\u754c\u3002"} +{"id": "0003697", "video_name": "41e60651-337a-5ffe-a962-02c36e9bf425", "text": "\u732b\u5934\u9e70\u5728\u623f\u95f4\u91cc\u5e26\u7740\u6e05\u6d01\u673a\u5668\u5954\u8dd1\u3002"} +{"id": "2005677", "video_name": "a50b0719-fb49-5961-95b8-90e6c9cbaf28", "text": "\u80cc\u666f\u4e2d\u7684\u592a\u7a7a\uff0c\u884c\u661f\u50cf\u5de7\u514b\u529b\u997c\u5e72\u4e00\u6837\uff0c\u903c\u771f\u800c\u52a8\u6001\uff0c\u661f\u661f\u66f4\u591a\u3002"} +{"id": "0005959", "video_name": "23efc931-f87e-58b7-a7df-48b75de685c6", "text": "\u5728\u592a\u7a7a\u4e2d\u8ff7\u5931\uff1a\u4e00\u4e2a\u98d8\u8361\u5728\u65e0\u8fb9\u5b87\u5b99\u4e2d\u7684\u5b87\u822a\u5458\uff0c\u88ab\u9065\u8fdc\u661f\u7cfb\u548c\u795e\u79d8\u7684\u5929\u4f53\u5305\u56f4\uff0c"} +{"id": "2005810", "video_name": "2155fe63-00a4-5cd5-bf99-30fe3fcbe6b7", "text": "\u5357\u74dc\u5730\u7206\u70b8\u4e86\u4e00\u7247\u6a59\u8272\u7684\u9ecf\u6db2\u3002\n\nSource sentence: The sun sets over the mountains in a blaze of orange and pink. \n\n\u592a\u9633\u5728\u6a59\u8272\u548c"} +{"id": "2007333", "video_name": "c9d0a828-4e62-5663-858d-c20f9e73609a", "text": "\u5728\u5c71\u9876\u4e0a\u521b\u9020\u4e00\u53ea\u6301\u6709\u5149\u5251\u7684\u4f01\u9e45\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "7002123", "video_name": "d4842e4d-c9a3-5d04-837d-ba3fd71318b8", "text": "\u4f01\u9e45\u6765\u53c2\u52a0\u71c3\u70e7\u4eba\u8282\u3002 \n\nSource sentence: I am learning Chinese language. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "4003819", "video_name": "d8843982-eb8a-5e3e-8820-f2779a206166", "text": "\u5361\u6d1b\u65af\u5f00\u67aa\u53d1\u5c04\u6fc0\u5149\u3002\u79d1\u5e7b\u3002\u592a\u7a7a\u7ad9\u3002"} +{"id": "4004612", "video_name": "a79e231a-a909-5cab-9c3e-78516931f3a6", "text": "\u5e26\u7740\u52c7\u6c14\u7684\u5e74\u8f7b\u5192\u9669\u5bb6Shreeansh\uff0c\u53d1\u73b0\u4ed6\u81ea\u5df1\u88ab\u4e00\u652f\u975e\u51e1\u7684\u795e\u5947\u751f\u7269\u961f\u4f0d\u6240\u966a\u4f34"} +{"id": "0003055", "video_name": "3640eab9-10ff-590a-ab22-d1fbc509b4ea", "text": "\u8fc8\u514b\u00b7\u6cf0\u68ee\u548c\u8fc8\u514b\u00b7\u74e6\u7956\u65af\u57fa\u5728\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\u6253\u6597\u3002"} +{"id": "7003041", "video_name": "7297a610-c7d1-5796-83cb-e542fd8e6bfe", "text": "\u9e70\u5750\u5728\u5c71\u9876\u4e0a\u8bf4\u8bdd\u3002"} +{"id": "1004642", "video_name": "564ebbb5-0147-5b88-a05b-ef70dcb32bf4", "text": "\u4e00\u53ea\u5c0f\u7ea2\u9e1f\u7ad9\u5728\u4e50\u8c31\u4e0a\u5531\u6b4c\uff0c\u80cc\u540e\u662f\u6e05\u6f88\u7684\u6e56\u6c34\u548c\u6811\u7684\u9634\u5f71\u3002\u9e1f\u513f\u5c55\u7fc5"} +{"id": "6002948", "video_name": "a10cc9a0-30a0-579a-820c-470060bc0468", "text": "\u4e00\u4e2a\u5904\u4e8e\u672a\u6765\u6559\u5ba4\u73af\u5883\u4e2d\u7684\u5b69\u5b50\uff0c\u4e0e\u4e00\u4e2a\u4eba\u5f62\u673a\u5668\u4eba\u6216\u4eba\u5de5\u667a\u80fd\u4e92\u52a8\uff0c\u5c55\u793a\u5408\u4f5c\u548c\u5b66\u4e60\u7684\u573a\u666f\u3002"} +{"id": "5001753", "video_name": "b5e54e93-eb4a-52ca-8466-1d3a90e05824", "text": "\u4e00\u4e2a\u6709\u7eff\u8272\u773c\u775b\u7684\u5973\u5b69\u611f\u5230\u7126\u8651\u3002\n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002"} +{"id": "7003806", "video_name": "f2eade71-6cc1-5e24-9eb9-87d29e69ba52", "text": "\u9b54\u672f\u5e08\u5728 Pixar \u4e2d\u952f\u5f00\u5973\u52a9\u624b\u3002"} +{"id": "6002736", "video_name": "e0fb718f-5fe9-514f-9975-baddd2d50472", "text": "\u4f7f\u7528\u79fb\u52a8\u673a\u68b0\u90e8\u4ef6\u7ed8\u52362024\u3002"} +{"id": "8001247", "video_name": "2bd67079-54d2-5ba6-b759-9529822a6978", "text": "\u7f8e\u4e3d\u7684\u767d\u4e91\u50cf\u68c9\u82b1\u4e00\u6837\u5728\u6e05\u6f88\u7684\u5929\u7a7a\u4e2d\u98de\u821e\u3002"} +{"id": "2007818", "video_name": "f82e397b-1cb6-5af3-a7ab-44c9f3d9ddd6", "text": "\u5927\u811a\u602a\u76848\u6beb\u7c73\u98ce\u683c\u5f71\u7247"} +{"id": "8003428", "video_name": "5312170e-34da-5c9d-adda-ff1629a4d74c", "text": "\u7528\u4e50\u9ad8\u79ef\u6728\u5236\u6210\u7684\u673a\u5668\u4eba\u8d70\u5230\u4e86\u4e00\u8258\u8239\u4e0a\u3002"} +{"id": "2004212", "video_name": "85157363-3d54-53e8-966f-dd9150ee450f", "text": "\u624b\u8868\u5728\u76d2\u5b50\u91cc\u3002"} +{"id": "4003182", "video_name": "456989b1-df16-573f-a92e-0b629192a21a", "text": "\u4e00\u4e2a\u5e26\u6709\u6302\u9501\u7684\u4e2a\u4eba\u7535\u8111\u573a\u666f\u3002"} +{"id": "6003066", "video_name": "3264a418-7dc5-5fa0-bea1-df0fe000fd7d", "text": "\u4e16\u754c\u5386\u53f2\u4e0a\u7684\u6280\u672f"} +{"id": "2007575", "video_name": "e3fd0deb-4a41-5ad7-ac49-e0b7417a2d3a", "text": "\u8fd9\u662f\u4e00\u652f\u53e4\u8001\u7684\u5546\u961f\uff0c\u7531\u4e00\u4e9b\u9a86\u9a7c\u548c\u9a6c\u5339\u7ec4\u6210\u3002\u5b83\u7ecf\u8fc7\u4e86\u4e00\u5ea7\u5c71\u3002\u6709\u4e9b\u4eba\u63a0\u593a\u4e86\u8fd9\u652f\u5546\u961f\u7684"} +{"id": "8003769", "video_name": "0bb76d81-2c89-562e-96be-bdc1e18f06a8", "text": "\u7ecf\u6d4e\u8870\u9000\u56fe\u8868\u548c\u6298\u7ebf\u56fe\u5728\u56f4\u7ed5\u7740\u6447\u6447\u6b32\u5760\u7684\u5efa\u7b51\u548c\u623f\u5c4b\u5468\u56f4\u79fb\u52a8\u3001\u76d8\u65cb\u3001\u60ac"} +{"id": "3005770", "video_name": "65a910c6-440f-537d-bc46-1792b96b6af4", "text": "\u96ea\u82b1\u98d8\u843d\uff0c\u6811\u53f6\u6563\u843d\u5728\u96ea\u5730\u4e0a\u3002"} +{"id": "5001342", "video_name": "4a57a71e-661a-5b2e-a737-5e45d7f478d7", "text": "\u6211\u770b\u5230\u4e24\u4e2a\u6234\u773c\u955c\u7684\u5b69\u5b50\u900f\u8fc7\u73bb\u7483\u7a97\u4e92\u76f8\u770b\u7740\u3002"} +{"id": "1005401", "video_name": "633afcb8-315d-5347-81f0-dc7cd83b0517", "text": "\u6708\u4eae\u5373\u5c06\u649e\u51fb\u5730\u7403\u8868\u9762\u3002\u968f\u7740\u6bcf\u4e00\u6b65\uff0c\u6708\u4eae\u5728\u5929\u7a7a\u4e2d\u53d8\u5f97\u8d8a\u6765\u8d8a\u5927\uff0c\u5a01\u80c1\u7740\u649e\u5411\u5730\u7403\u3002"} +{"id": "5001465", "video_name": "cf9fbfb2-cb18-5f1d-956e-d0693f3de847", "text": "\u4e00\u7fa4\u5927\u8c61\u5728\u6e56\u8fb9\u559d\u6c34\u3002"} +{"id": "2006103", "video_name": "cd0c1863-050f-5e59-b993-3b3e17e49c6b", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u96e8\u4e2d\uff0c\u62b1\u7740\u4f1e\u5fae\u7b11\u7740\u3002\u8fd9\u4e2a\u573a\u666f\u8c61\u5f81\u7740\u5728\u9762\u5bf9\u6311\u6218\u65f6\u9009\u62e9\u79ef\u6781\u6001\u5ea6\u7684\u529b\u91cf\uff0c\u5c06\u96e8"} +{"id": "3003230", "video_name": "e48bddd4-9f93-52df-8483-e972c92cf0a4", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u89c2\u770b\u4ed6\u7684\u706b\u7bad\u53d1\u5c04\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4003129", "video_name": "56621c83-7915-51ac-bba0-4b70afe7514e", "text": "\u592a\u7a7a\u8239\u4ece\u4e91\u5c42\u5bc6\u5e03\u7684\u5929\u7a7a\u4e2d\u5347\u7a7a\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u52a8\u6001\u6784\u56fe\uff0c\u659c\u89c6\u89d2\uff0c8K\u3002"} +{"id": "7002965", "video_name": "b320a351-8c15-57af-9c50-289ab3691aa3", "text": "\u5728\u963f\u4ec0\u591a\u5fb7\u5e02\u53c2\u52a0\u9009\u4e3e\u7684\u4eba\u4eec\u3002"} +{"id": "2005482", "video_name": "81535d42-8f2e-5e27-a19e-626b4cd22ca4", "text": "ing the day can be very bright and airy.\n\nTranslation: \u767d\u5929\u6709\u8bb8\u591a\u7a97\u6237\u7684\u89c6\u91ce\u53ef\u4ee5\u975e\u5e38\u660e\u4eae\u548c\u901a\u98ce\u3002"} +{"id": "3006610", "video_name": "834cef14-90d6-590c-b294-f6f0037381df", "text": "\u6e14\u6c11\u5728\u57ce\u5e02\u91cc\u5356\u4e86\u8bb8\u591a\u9c7c\u3002"} +{"id": "2006679", "video_name": "dde9ea96-7630-518a-ac76-81370b6c96dc", "text": "\u7684\u4e00\u5e45\u5411\u65e5\u8475\u82b1\u56ed\u6cb9\u753b\uff0c\u5411\u65e5\u8475\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u91c7\u7528\u5b89\u900a\u5f0f\u6cb9\u753b\u98ce\u683c\uff0c\u7ec6\u8282\u4e4b\u5904"} +{"id": "2005776", "video_name": "b3c13cb7-0a57-5c72-94c5-3318e3374a81", "text": "\u7528\u52a8\u6001\u7684\u6807\u5fd7\u5236\u4f5c\u4e00\u4e2a\u5e26\u6709AniYork\u5b57\u6837\u7684\u6807\u5fd7\uff0c\u9ed1\u8272\u80cc\u666f\uff0c3D\u706f\u5149\u5b57\u6bcd\u3002"} +{"id": "6002224", "video_name": "8eccb7e2-496e-51ac-8770-fafb182eff64", "text": "\u519b\u65b9\u7684\u767d\u5e3d\u9ed1\u5ba2\u3001\u84dd\u961f\u548c\u7ea2\u961f"} +{"id": "8001282", "video_name": "ec2dca19-8cc7-51b8-a2a4-48bb61ed3035", "text": "\u706b\u7bad\u3001\u706b\u7130\u3001\u9713\u8679\u706f\u3001\u591c\u665a\u3001\u592a\u7a7a\u3001\u661f\u661f\u3002"} +{"id": "6003293", "video_name": "bee1903a-478b-5553-a9ed-4d8db7712433", "text": "\u8df3\u821e\u7537\u5b50\u7684\u5192\u9669"} +{"id": "6003321", "video_name": "c37725f2-20b8-5997-8aee-d9d4990412a3", "text": "\u6211\u53ef\u4ee5\u7528\u4e2d\u6587\u5199\u5417\uff1f"} +{"id": "3005704", "video_name": "46d045b3-4417-594f-ab3a-082dce3c5029", "text": "\u4e00\u4f4d\u5e74\u957f\u7684\u7537\u5b50\u5750\u5728\u5c71\u4e0a\u559d\u5496\u5561\uff0c\u56db\u5468\u662f\u68ee\u6797\uff0c\u80cc\u666f\u7684\u4e00\u8fb9\u3002"} +{"id": "1004983", "video_name": "5c2082ea-48b5-56ec-808a-5e1c5e83e115", "text": "\u83ab\u5a1c\u4e3d\u838e\u7684\u753b\u50cf\uff0c\u4f46\u662f\u6362\u6210\u4e86\u9a6c\u7433\u00b7\u8f9b\u666e\u68ee\u7684\u5f62\u8c61\u3002"} +{"id": "8001874", "video_name": "e917b4a4-ac2c-54d5-b3b6-a8206714b9d6", "text": "\u6709\u4e9b\u4eba\u7ad9\u5728\u97f3\u4e50\u4f1a\u573a\u5730\u9644\u8fd1\uff0c\u5c06\u4e50\u5668\u88c5\u8fdb\u4e00\u8f86\u8d27\u8f66\u4e2d\u3002"} +{"id": "6002992", "video_name": "e5a79d24-e487-5972-a675-4c2b08baea0a", "text": "\u4e00\u4e2a\u8bf4\u5531\u6b4c\u624b\u5728\u5f55\u5236\u4ed6\u7684\u97f3\u4e50\u89c6\u9891\u4e2d\u70ab\u8000\u91d1\u94b1\u3002"} +{"id": "7003011", "video_name": "f9e99d3f-b371-544b-ac9e-1c14f8b679ae", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u732b\u671d\u7740\u76f8\u673a\u54a7\u5634\u7b11\u3002"} +{"id": "4003769", "video_name": "7d0a74b9-25f7-5b3d-97e6-78f46adba2c8", "text": "\u4e00\u53ea\u624b\u62ff\u667a\u80fd\u624b\u673a\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u6cf0\u8fea\u718a"} +{"id": "0003293", "video_name": "3b0fcb6b-81a2-517b-ae64-8492bcdf1ab1", "text": "\u963f\u91cc\u5b89\u5a1c\u00b7\u683c\u5170\u5fb7\u5728\u6708\u7403\u4e0a\u6f14\u51fa\u3002"} +{"id": "3003905", "video_name": "defe92df-6f18-5956-925c-293afd79e669", "text": "ESP8266\u82af\u7247\u4e0e\u5fae\u63a7\u5236\u5668\u65e0\u7f1d\u94fe\u63a5\uff0c\u521b\u5efa\u7f51\u7edc\u8fde\u63a5\u3002"} +{"id": "4004403", "video_name": "75a280ad-3c2a-528b-ad67-cf9cf1a471fc", "text": "\u660e\u4eae\u7684\u767d\u8272\u623f\u95f4\uff0c\u97f3\u4e50\u5f55\u5f71\u5e26\u98ce\u683c\uff0c\u5206\u8fa8\u7387\u4e3a1920 x 1080\u50cf\u7d20\u3002"} +{"id": "1003279", "video_name": "3c4e85e6-cdb7-5b48-be2e-1a8a6439f9f6", "text": "\u521b\u4f5c\u4e00\u4e2a\u5370\u5ea6\u7956\u6bcd\u76842D\u89d2\u8272\u3002"} +{"id": "2006687", "video_name": "76b568b4-9708-5501-89f8-22225a9dc1d7", "text": "\u96c7\u4f63\u4e00\u4e2a\u65b0\u7684\u58f0\u97f3\u8bbe\u8ba1\u56e2\u961f\u3002"} +{"id": "6004009", "video_name": "979e41b5-9162-5813-8c58-dbc3e57a143e", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u673a\u5668\u4eba\u5bfb\u627e\u5929\u7a7a\u3002"} +{"id": "1005890", "video_name": "6c5a6c02-2418-5356-b071-1e24df9351c1", "text": "\u4e00\u53ea\u5e03\u9c81\u5c3c\u91d1\u86db\u5728\u5b83\u7684\u7f51\u4e0a\u3002"} +{"id": "6002590", "video_name": "f52b2969-76b0-5beb-83e1-69e535aa9578", "text": "\u5c55\u793a\u4e61\u6751\u7f8e\u4e3d\u7684\u5c0f\u6728\u5c4b\u5916\u666f\u7167\u7247\u3002"} +{"id": "0003451", "video_name": "3dcd3634-4940-59ea-8f98-0c7f88550ab5", "text": "\u5df4\u514b\u8fbe\u4e5f\u6709\u4e00\u79cd\u574f\u9b54\u6cd5\u3002"} +{"id": "6003936", "video_name": "fdfaed06-bbb2-598f-a1b2-9108ed403708", "text": "\u5929\u5802\u4e4b\u95e8\uff0c\u767d\u91d1\u76f8\u95f4\uff0c\u88ab\u4e91\u96fe\u73af\u7ed5\u3002"} +{"id": "0004092", "video_name": "030a6dfe-d46b-5ffd-a8b8-5af510faef86", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5750\u5728\u684c\u5b50\u524d\u3002"} +{"id": "4002083", "video_name": "a19a86da-fbcb-580e-b3ec-6e8c99bc2528", "text": "\u8fd9\u4e2a\u76d2\u5b50\u548c\u4ed6\u4eec\u4ee5\u524d\u89c1\u8fc7\u7684\u4efb\u4f55\u4e1c\u897f\u90fd\u4e0d\u540c\uff0c\u88c5\u9970\u7740\u590d\u6742\u7684\u56fe\u6848\uff0c\u95ea\u70c1\u7740\u91d1\u8272\u7684\u5149\u6cfd\u3002\u76d2"} +{"id": "3003626", "video_name": "113460c4-cf50-58ea-8e42-f2f1ef1cef38", "text": "\u4e00\u9897\u7ed5\u7740\u8f6c\u7684\u6708\u4eae\uff0c\u4e24\u4e2a\u5973\u4eba\u5750\u5728\u6708\u7403\u8868\u9762\uff0c\u903c\u771f\u7684\u7535\u5f71\u822c\u7684\u9c9c\u8273\u8272\u5f69\u548c\u9ad8\u5ea6\u7ec6\u8282\u3002"} +{"id": "8002871", "video_name": "b7c46551-6cbc-58f1-9d73-7ad405bd77be", "text": "\u9ed1\u767d\u827a\u672f\u98ce\u683c\u7684\u5730\u4e0b\u6c34\u6ed1\u68af\u3002"} +{"id": "3003054", "video_name": "621c9b47-da28-55a1-a9b7-f76dbb166b10", "text": "\u4f34\u968f\u7740\u82e6\u6da9\u7684\u544a\u522b\uff0c\u4f0a\u8389\u838e\u79bb\u5f00\u4e86\u3002\u6770\u514b\u770b\u7740\u5979\u7684\u8eab\u5f71\u6d88\u5931\u5728\u5730\u5e73\u7ebf\u4e0a\u3002"} +{"id": "6004461", "video_name": "fce7071b-41c9-5d2e-98c6-aa66cae9b6af", "text": "\u8d85\u7ea7\u667a\u80fd\u7684\u4eba\u5de5\u667a\u80fd\u8bde\u751f\u4e8e\u5b87\u5b99\u4e2d\u3002"} +{"id": "8002306", "video_name": "df173e49-2a40-5251-8d6e-c8208ebc8fbd", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u57281920\u5e74\u7684\u9152\u5427\u91cc\u3002"} +{"id": "2006494", "video_name": "f668f7c9-20fa-5cb0-82ff-e7ba9412453f", "text": "\u4e00\u9876\u88c5\u6709\u81ea\u884c\u8f66\u8f6e\u548c\u51b2\u6d6a\u677f\u7684\u5feb\u901f\u79fb\u52a8\u5e10\u7bf7\uff0c\u5728\u9876\u90e8\u6709\u4e00\u5f20\u684c\u5b50\uff0c\u4e0a\u9762\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "0004842", "video_name": "102431cc-0056-51a5-87ed-cf41ca0da329", "text": "\u7cd6\u8863\u4ed9\u5b50\u8df3\u821e\uff0c\u903c\u771f\u3001\u7f8e\u4e3d\u3001\u5ba1\u7f8e\uff0c\u4e13\u4e1a\u62cd\u6444\uff0c\u9ad8\u7ec6\u8282\uff0c\u903c\u771f\u6548\u679c\uff0c4K\uff0c16\uff1a9\u3002"} +{"id": "0003945", "video_name": "0047bf71-c031-51dd-a5db-f9e0fd051bcd", "text": "\u672a\u6765\u7684\u90ca\u533a\uff0c\u6444\u50cf\u673a\u5411\u4e0a\u62cd\u6444\u98de\u884c\u6c7d\u8f66\u3002"} +{"id": "7004304", "video_name": "cfaef315-88dd-552c-9839-cb5f455fdfae", "text": "\u4e00\u540d\u5973\u5b69\u770b\u5411\u76f8\u673a\u65f6\u663e\u5f97\u5f88\u751f\u6c14\uff0c\u80cc\u666f\u4e2d\u6709\u6a21\u7cca\u7684\u9713\u8679\u706f\u5149\u3002"} +{"id": "4004189", "video_name": "a7e5086e-864a-535a-9f10-3627f26bee26", "text": "\u6708\u795e\u548c\u9b54\u6cd5\u6d77\u6d0b\u7684\u6545\u4e8b\u56e0\u6b64\u4f20\u904d\u5168\u56fd\uff0c\u6210\u4e3a\u5b69\u5b50\u4eec\u7684\u73cd\u7231\u7761\u524d\u6545\u4e8b\u3002\u53cb\u8c0a\u3001\u548c\u8c10\u548c"} +{"id": "1004742", "video_name": "57d3e22a-1ad5-512f-9af5-6ee581760f0d", "text": "\u53ef\u7231\u53c8\u7f8e\u4e3d\u7684\u5c11\u5973\u52a8\u753b\u8bf4\u65e9\u5b89\u3002"} +{"id": "8002973", "video_name": "cdb404ec-5d9e-5711-8a1b-9ca09aed58b4", "text": "\u4e00\u79cd\u53ef\u6015\u7684\u5916\u661f\u79cd\u65cf\uff0c\u975e\u5e38\u5177\u6709\u653b\u51fb\u6027\u3002\u4ed6\u7684\u534a\u5f20\u8138\u88ab\u80f6\u5e26\u548c\u65e7\u7ef8\u5e26\u7f20\u7740\u3002 21\u6beb"} +{"id": "6002164", "video_name": "26ec5a4c-d67b-5f27-bb1c-e70bdd3c737f", "text": "\u4e00\u4e2a\u7ad9\u5728\u5c4b\u9876\u4e0a\u3001\u4ef0\u671b\u5929\u7a7a\uff0c\u773c\u524d\u98de\u8fc7\u98de\u673a\u7684\u7537\u5b69\uff0c\u773c\u4e2d\u5145\u6ee1\u51b3\u5fc3\u548c\u5174\u594b\u3002"} +{"id": "4002887", "video_name": "6414cd9c-af96-5caf-9313-25123f957726", "text": "\u4e00\u540d\u7537\u5b50\u5728\u57ce\u5e02\u6325\u624b\u544a\u522b\u3002"} +{"id": "3005719", "video_name": "248479e8-215c-5fdf-bfd4-c2bd01a2d6fa", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u52a8\u753b\u690d\u7269\uff0c\u5954\u8fdb\u68ee\u6797\u3002"} +{"id": "6003480", "video_name": "e1206a82-cfe2-561a-ae67-ba5a2044aa8e", "text": "\u7a46\u65af\u6797\u7236\u6bcd\u5728\u4ed6\u4eec\u6751\u5e84\u7684\u5bb6\u91cc\u8ba8\u8bba\u4e86\u4e00\u4f1a\u513f\u3002"} +{"id": "0006121", "video_name": "26fdad1f-6aea-5cee-a049-fa799e85113f", "text": "\u98ce\u666f\u3001\u771f\u5b9e\u3001\u8d85\u771f\u5b9e\u3001\u7167\u7247\u771f\u5b9e\u3001\u771f\u5b9e\u3001\u5e7b\u60f3\u3001\u6444\u5f71\u30018K\u3001\u6770\u4f5c\u3001\u80cc\u666f\u3001\u7ebf\u6027\u7a7a\u95f4\u3002\u9644\u4ef61\u3002"} +{"id": "7004755", "video_name": "d7d3b6b0-5a8b-5cba-863d-07c96e2811c2", "text": "\u5728\u5065\u8eab\u623f\u953b\u70bc\u65f6\u4e0d\u8981\u626d\u66f2\u8eab\u4f53\u3002"} +{"id": "5001888", "video_name": "a42b50f0-8b97-5f87-8550-9bffadf907f6", "text": "\u4e00\u4e2a\u5728\u96ea\u5c71\u4e0a\u95ea\u8000\u7684\u79d8\u5bc6\u4fdd\u9669\u5e93\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u3002"} +{"id": "8002591", "video_name": "e00b9fbb-47ab-5ccf-be22-f1c5142c5490", "text": "\u5ea7\u4f4d\u5370\u7ae0 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2004558", "video_name": "57364014-01a8-56f8-a74a-19ab523f6219", "text": "\u5df4\u897f\u4e00\u4e2a\u71c3\u70e7\u7684\u8d2b\u6c11\u7a9f\u91cc\u7684\u9769\u547d\u7537\u4eba\uff0c\u4ee5\u9ed1\u8272\u548c\u7070\u8272\u94c5\u7b14\u7d20\u63cf\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0004874", "video_name": "10ba1960-a659-59b3-b338-fd0575800141", "text": "\u751f\u6210\u52a8\u753b\u52a8\u6001\u7684\u71c3\u5c3d\u56fe\u8868\uff0c\u4f7f\u7528\u7ebf\u6027\u56fe\u8868\u663e\u793a\u968f\u65f6\u95f4\u63a8\u79fb\u7684\u8fdb\u5c55\uff0c\u5e76\u56f4\u7ed5\u5176\u663e\u793a\u4eba\u5458\u3002"} +{"id": "3005359", "video_name": "1cf12790-6739-5753-8814-b4880fd6ecaa", "text": "\u4e00\u53ea\u94f6\u8272\u7684\u722a\u5b50\uff0c\u4f46\u6307\u7532\u66f4\u50cf\u6307\u7532\u3002"} +{"id": "1004738", "video_name": "57c6e24a-94ca-5368-aab2-d5b1f87e2fc3", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65f6\u4ee3\u5e7f\u573a\u6563\u6b65\uff0c\u4e0e\u67d0\u4eba\u4e00\u8d77\u4e3e\u7740\u6807\u5fd7\u724c\uff0c\u4e0a\u9762\u5199\u7740\uff1a\u201c\u6211\u662f\u7279\u6717\u666e\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3004212", "video_name": "58424611-d152-516b-a2a7-41199d211721", "text": "\u55b7\u6c14\u5f0f\u98de\u673a\u548c\u4e0d\u660e\u98de\u884c\u7269\u5728\u592a\u7a7a\u4e2d\u5c55\u5f00\u6fc0\u70c8\u7684\u6218\u6597\u3002\u79d1\u5e7b\u3002"} +{"id": "6004737", "video_name": "0d30c4ca-446c-5aaa-b15f-84ed6019d7f4", "text": "\u4e00\u4e2a\u7a7f\u7740\u793c\u670d\u7684\u7537\u4eba\u5728\u57ce\u5e02\u4e2d\u5fc3\u7684\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "3005761", "video_name": "97c515ef-6387-52bb-8f92-71cafdb0d8cd", "text": "\u4e00\u53ea\u9e7f\u8eab\u4e0a\u7eb9\u4e86\u7eb9\u8eab\u3002"} +{"id": "8002174", "video_name": "a030e6d5-dc1e-5868-a79c-fe486dc3a4f7", "text": "\u4ece\u524d\uff0c\u6709\u4e00\u4e2a\u5361\u901a\u89d2\u8272\u53eb\u523a\u732c\u3002\u523a\u732c\u559c\u6b22\u63a2\u7d22\u548c\u5192\u9669\u3002\u6709\u4e00\u5929\uff0c\u523a\u732c\u51b3\u5b9a\u548c\u4ed6"} +{"id": "7002073", "video_name": "87d3fd6e-0d35-5996-83a4-849a5112e7de", "text": "\u4e00\u7247\u8986\u76d6\u7740\u8272\u5f69\u6591\u6593\u900f\u660e\u77f3\u5934\u7684\u6d77\u6ee9\u3002"} +{"id": "4004109", "video_name": "162bbd2f-808c-50ef-823f-5b3e8ba8824b", "text": "\u6784\u56fe\uff1a\u5e8a\u4e0a\u5c11\u5973\u542b\u6cea\u51dd\u671b\u5929\u7a7a\u3002\u5de6\u4fa7\u6709\u5929\u4f7f\uff0c\u6253\u5f00\u7a97\u6237\uff0c\u5439\u7740\u98ce\u3002\u53f3\u4fa7\u6709\u6076\u9b54\uff0c\u70b9"} +{"id": "6003252", "video_name": "54fc1a2b-2cdd-5f41-84c2-19632e7f2bbe", "text": "\u8001\u5e08\u4e00\u8fb9\u6307\u7740\u9ed1\u677f\u6559\u5b66\u3002 \n\nSource sentence: My favorite color is blue. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "2004806", "video_name": "c48e16a8-3d29-5cc1-a332-c38a2b5b00a3", "text": "\u65e0\u4eba\u673a\u4fef\u89c6\u51b0\u5c71\u3002\u4fe1\u606f\uff1amultigramm\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1006729", "video_name": "7b4ba1c5-7f72-5480-bc28-1f8be32c225e", "text": "\u753b\u9a86\u9a7c\u8138\uff0c1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005613", "video_name": "1e0adf90-b271-5cdc-864c-56cbfe629708", "text": "\u4e24\u4e2a\u7a7f\u767d\u8272\u4e0a\u8863\u548c\u6d77\u519b\u84dd\u77ed\u88e4\u7684\u7537\u4eba\u5728\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "2003523", "video_name": "1cc5016c-e1b8-53fc-b903-445dd72ec5e5", "text": "\u65e5\u5f0f\u9762\u5177\u5728\u6c34\u4e2d\u6f02\u6d6e\uff0c\u903c\u771f\u7684\u98ce\u683c\uff0c4K\u3002"} +{"id": "0005989", "video_name": "249898bf-571a-54cc-aca5-6cbfc5921681", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u732b\u5411\u524d\u8df3\u821e\u3002"} +{"id": "7003465", "video_name": "83293acf-c50f-599a-b0da-1858027d33ef", "text": "\u6d1b\u6749\u77f6\u7684\u68d5\u6988\u6811\u5728\u9ec4\u91d1\u65f6\u95f4\u968f\u98ce\u6447\u6446\u3002"} +{"id": "3004067", "video_name": "1d397043-2a2e-5d2e-be6c-8ede8a0506e1", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u559d\u5496\u5561\uff0c\u65c1\u8fb9\u4e00\u53ea\u9ed1\u767d\u76f8\u95f4\u7684\u732b\u6b63\u5728\u6253\u76f9\u3002"} +{"id": "0003516", "video_name": "3ede261f-d826-59bd-95d0-0e51f4099e0f", "text": "\u7eff\u8272\u673a\u68b0\u4eba\uff0c\u80f8\u524d\u6709\u7eff\u8272\u7684SB\u5b57\u6bcd\u53d1\u5149\uff0c4K\u5206\u8fa8\u7387\uff0c\u903c\u771f\u3002"} +{"id": "1006310", "video_name": "7375bd31-01f8-5c6c-9aa4-83169c7b8a73", "text": "\u524d\u89c6\u8096\u50cf\u65f6\u88c5\u6a21\u7279\u5973\u5b69\uff0c\u767d\u53d1\uff0c\u6234\u7740\u82cf\u683c\u5170\u683c\u7eb9\u9488\u7ec7\u9762\u7f69\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eComme des Garcons\uff0c"} +{"id": "1006044", "video_name": "6f03989c-4462-56cb-8083-e309a4bb918b", "text": "\u5973\u5b69\u8d70\u8def\uff0c\u8349\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u592a\u9633\u5347\u8d77\uff0c\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "8001407", "video_name": "259aec01-2feb-54ae-a1fa-ccbeade8dd4c", "text": "\u4e24\u4e2a\u4eba\u98de\u8d8a\u6a59\u6c41\u6d77\u6d0b"} +{"id": "6004491", "video_name": "8c0fa143-a545-5771-acb3-451057dcbe71", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u770b\u5411\u955c\u5934\u3002"} +{"id": "2006105", "video_name": "225bda9c-964d-54f7-b14e-2a2358a6de49", "text": "\u5973\u4eba\u80cc\u5f71\uff0c\u4e00\u4f4d\u76ae\u80a4\u9edd\u9ed1\u7684\u5973\u6027\u8d70\u5728\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u8eab\u6750\u975e\u5e38\u597d\uff0c\u7a7f\u7740\u8fde\u8863\u88d9\uff0c\u5728\u591c\u665a"} +{"id": "0003841", "video_name": "4467c969-9b6b-5369-8f1b-cfef5afcf284", "text": "\u5236\u4f5c\u4e00\u6bb5\u7b11\u5bb9\u6ee1\u9762\u7684\u91ca\u8fe6\u725f\u5c3c\u89c6\u9891\u3002"} +{"id": "0005983", "video_name": "24635e90-457e-5cd8-96ca-3a1073933249", "text": "Source sentence: \u8584\u8377\u548c\u786c\u5e01\u538b\u5236\u8001\u5f0f\u7684\u3002"} +{"id": "2003371", "video_name": "d917660c-3329-5394-827e-d40cb0ba6df9", "text": "\u9886\u5bfc\u5236\u5b9a\u8ba1\u5212\u5e76\u67e5\u770b\u5730\u56fe\u3002\n\nSource sentence: The team is working on a new project. \n\u56e2\u961f\u6b63\u5728\u5f00\u5c55\u65b0\u9879\u76ee\u3002"} +{"id": "4004654", "video_name": "c2cf4d9e-81b4-5961-ac08-273ea167036f", "text": "\u5728\u96fe\u6c14\u5f25\u6f2b\u548c\u957f\u6ee1\u82d4\u85d3\u7684\u6df1\u6797\u4e2d\u8fdb\u884c\u6f2b\u6b65\u3002"} +{"id": "0004214", "video_name": "0519438a-11e8-5736-b98e-176ff62d9d21", "text": "\u4e00\u4e2a\u7528\u94c5\u7b14\u753b\u7684\u84dd\u53d1\u7ea2\u773c\u7684\u7537\u5b69\u9047\u5230\u4e86\u4e00\u4e2a\u670b\u53cb\uff0c\u4ea4\u6d41\u4e86\u4e00\u70b9\uff0c\u7136\u540e\u7a7f\u8fc7\u4e86\u68ee\u6797\u3002"} +{"id": "4002664", "video_name": "72ad78ae-32e0-5336-b5ca-bffe34420e63", "text": "\u5728\u5927\u96e8\u4e2d\u8e22\u8db3\u7403\u7684\u7537\u5b69\u6b63\u5728\u5fae\u7b11\u3002"} +{"id": "5001575", "video_name": "be8f53e2-e681-54de-9acb-1849322b39aa", "text": "\u4e00\u540d\u7537\u5b50\u5e26\u7740\u72d7\u5728\u5c71\u4e0a\u5954\u8dd1\u3002"} +{"id": "2003309", "video_name": "5a7de5bc-e10a-5c11-bebc-ea66d4548e55", "text": "\u89c2\u770b\u6c34\u65cf\u9986\u7684\u52a8\u6f2b\u573a\u666f\u3002"} +{"id": "6003408", "video_name": "b4787942-c4c4-5134-8d26-973e73015875", "text": "\u76ae\u514b\u65af\uff0c\u840c\u5316\u4e86\uff0c\u53ef\u7231\u7684\u5361\u901a\u6bdb\u8338\u8338\u7684\u5c0f\u4e09\u82b1\u732b\u5b9d\u5b9d\uff0c\u68a6\u5e7b\u3001\u68a6\u5e7b"} +{"id": "3003395", "video_name": "aff2bc52-b1b8-58f1-b87e-18f3354cc5b6", "text": "\u88ab\u538b\u6291\u548c\u5ffd\u89c6\u7684\u7ae5\u5e74\uff0c\u7535\u5f71\u5316\u3001\u8be6\u7ec6\u30014K\u3001\u79d1\u5e7b\u706f\u5149\u3001AR 9:16\u3002"} +{"id": "5001668", "video_name": "53a22b5f-be27-52a1-adb8-6124b4290743", "text": "\u4e00\u672c\u60b2\u4f24\u7684\u6570\u5b66\u4e66\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u7684\u89d2\u8272\u4e3a\u4e3b\u9898\u3002\n\nSource sentence: I am going to the grocery store to buy some apples and bread. \n\u6211\u8981\u53bb\u6742\u8d27"} +{"id": "2004330", "video_name": "98f4038f-3464-57bb-888b-5c2ab38ad19c", "text": "\u5c0f\u6865\u7528\u6ce5\u571f\u548c\u7c98\u571f\u5efa\u9020\uff0c\u88ab\u6c34\u51b2\u8d70\u4e86\uff0c\u5361\u901a\u52a8\u753b\u3002"} +{"id": "4003833", "video_name": "efdfd39c-1d58-5f49-ba2c-f30bd67c4762", "text": "\u7236\u4eb2\u548c\u5973\u513f\u5728\u672a\u6765\u6700\u5927\u7684\u8857\u9053\u4e0a\u8d70\uff0c\u6709\u6700\u9ad8\u7684\u6469\u5929\u5927\u697c\u300220\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "1005128", "video_name": "5e900b3b-ff5e-53c1-b501-3e31450b49f2", "text": "\u7537\u5b69\u5728\u5f39\u94a2\u7434\uff0c\u770b\u7740\u7a97\u5916\u7684\u65e5\u843d\u3002"} +{"id": "0006397", "video_name": "2bd3c57f-78d0-5a42-94be-9a879e9952f5", "text": "\u4e00\u4e2a\u5750\u5728\u8f66\u91cc\u7684\u7537\u5b69\uff0c\u771f\u5b9e\u7535\u5f71\u753b\u97624T\u753b\u8d2816:9\u3002"} +{"id": "3005163", "video_name": "6baa013c-adfe-544e-82fe-ae5dea0d076e", "text": "\u70e4\u8089\u4e0a\u7684\u725b\u6392\uff0c\u7279\u5199\u955c\u5934\uff0c\u6162\u52a8\u4f5c\uff0c\u706b\u82d7\u56db\u6e85\uff0c\u6492\u4e0a\u76d0\uff0c\u80cc\u666f\u4e2d\u6709\u4eba\u3002"} +{"id": "2004680", "video_name": "0797db8b-04b1-5c39-9e54-df55fb304fe5", "text": "\u4e00\u4e2a\u5782\u6b7b\u7684\u6811\u548c\u9634\u5929\u7684\u7535\u5f71\u573a\u666f\uff0c\u52a0\u4e0a\u4e00\u4e2a\u5bb6\u5ead\u4e3a\u6811\u6d47\u6c34\uff0c\u6811\u957f\u51fa\u7eff\u53f6\uff0c\u592a\u9633\u5f00\u59cb\u7167\u8000\u3002"} +{"id": "0003145", "video_name": "38075aa0-6def-5d1e-a4ff-30ee095ab39b", "text": "1834\u5e74\u4e00\u5f20\u8001\u4eba\u5728\u9152\u9986\u91cc\u7684\u9971\u548c\u56fe\u50cf\u3002"} +{"id": "4004481", "video_name": "60a49709-7aed-5e7e-a7a1-eb4555013d46", "text": "\u7535\u89c6\u95ea\u70c1\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u5750\u5728\u5b83\u524d\u9762\u3002"} +{"id": "0005804", "video_name": "21806133-2483-51bd-8799-b9c24d8a4de3", "text": "\u5b69\u5b50\u4eec\u5728\u96e8\u4e2d\u5236\u4f5c\u7eb8\u8239\u5e76\u73a9\u800d\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7004831", "video_name": "d43217f5-ba92-50b2-ac95-cd499f3752cd", "text": "\u73af\u89c6\u4e00\u4e2a\u52a8\u6f2b\u65e0\u4eba\u673a\u5728\u591c\u665a\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u9ad8\u901f\u98de\u884c\uff0c\u7a7f\u68ad\u4e8e\u9713\u8679\u706f\u5149\u4e4b\u95f4\u3002"} +{"id": "8001256", "video_name": "9f9c8bb6-744e-5a5c-a50d-5204605b56cd", "text": "\u7a7f\u7740\u767d\u8272\u4e0d\u900f\u660e\u7d27\u8eab\u80f8\u8863\u548c\u957f\u88d9\u7684\u6df1\u8272\u5934\u53d1\u7f8e\u5973\uff0c\u6ce8\u89c6\u7740\u4e00\u7247\u5815\u843d\u7684\u7530\u91ce\u3002"} +{"id": "3006425", "video_name": "f51cd056-978c-527f-99fd-9d87e1db7ec5", "text": "\u6240\u6709\u6210\u5458\u90fd\u5750\u5728\u5404\u81ea\u7684\u4f4d\u7f6e\u4e0a\u3002"} +{"id": "3006474", "video_name": "8a16f484-2951-5c0f-a652-ce066f84c4ee", "text": "\u6708\u5149\u4e0b\u7684\u7f8e\u4e3d\u4eba\u9c7c"} +{"id": "6004519", "video_name": "653f997b-c6b5-58ff-bb24-04bfb331654d", "text": "\u4e00\u4e2a30\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793aPCR\u8fc7\u7a0b\u4e2d\u6d89\u53ca\u7684\u6b65\u9aa4\u3002"} +{"id": "6004212", "video_name": "e3e7d372-ca7c-5ad0-90db-83f0e407b2af", "text": "\u96e8\u5929\uff0c\u7a97\u4e0a\u7684\u96e8\u6ef4\uff0c\u903c\u771f\u7684\u9ad8\u8d28\u91cf\u3002"} +{"id": "6002614", "video_name": "40bf82fa-55b4-57e5-9c61-8b49475ed2be", "text": "\u5236\u9020\u4e00\u4e2a\u6c7d\u8f66\u7ecf\u9500\u5546\u7684\u524d\u95e8\u5165\u53e3\uff0c\u5728\u5546\u5e97\u524d\u65b9\u7684\u4e24\u4e2a\u89d2\u843d\u6709\u4e24\u68f5\u68d5\u6988\u6811\uff0c\u5468\u56f4\u662f\u7eff\u8272\u8349\u76ae\uff0c\u5efa"} +{"id": "2005289", "video_name": "1c6bdfe0-273e-542b-9815-8f06e7bba9a6", "text": "\u4e00\u4e2a\u5750\u5728\u96ea\u5730\u4e0a\uff0c\u55b7\u7740\u706b\u7684\u5de8\u9f99\u3002"} +{"id": "1005095", "video_name": "5e01c717-0430-5df7-96a2-d78770ef3543", "text": "\u5728\u4e00\u4e2a\u96e8\u5929\uff0c\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u4f1e\u4e0b\uff0c\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "0003161", "video_name": "385866e9-c488-5477-8413-6daf65ea8528", "text": "\u590f\u5a01\u5937\u51b2\u6d6a\u8005\u5728\u65e5\u843d\u65f6\u88ab\u6d6a\u6f6e\u6380\u7ffb\u4e86\u3002\n\nSource sentence: I love eating sushi with chopsticks. \n\u6211\u559c\u6b22\u7528"} +{"id": "3003403", "video_name": "f356d1a9-b747-5f4e-9f5c-09353d614045", "text": "\u7537\u5b69\u548c\u5973\u5b69\u56de\u5fc6\u6e29\u99a8\u7684\u65f6\u523b\u3002"} +{"id": "6003512", "video_name": "4984cc24-7141-5db2-8e2f-b2888dd99ae3", "text": "\u68ee\u6797\u4e2d\u7684\u72d0\u72f8\uff0c\u5f71\u50cf\u8fbe\u52308K\u9ad8\u6e05\u3002"} +{"id": "4004469", "video_name": "91e1374e-fa19-5365-a241-2bd951a3d5dd", "text": "\u4e00\u4e2a\u6c34\u5f69\u753b\u98ce\u683c\u7684\u7bdd\u706b\u5faa\u73af\u52a8\u753b\u3002"} +{"id": "0003427", "video_name": "3d5c7f4d-47a6-5c0f-af35-c4d26ca31657", "text": "\u7315\u7334\u4f1a\u7834\u574f\u95e8\u7a97\u8fdb\u5165\u5c45\u6c11\u5bb6\u4e2d\u3002"} +{"id": "1003978", "video_name": "49743c2c-c7d7-5685-a2be-1c86c16efd5a", "text": "1960\u5e74\u4ee3\u7684\u8bfe\u684c\u4e0a\u6709\u4e00\u4e9b\u8bfe\u672c\uff0c\u5176\u4e2d\u6709\u4e00\u672c\u662f\u6253\u5f00\u7684\u3002"} +{"id": "0003045", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "\u793e\u4ea4\u5a92\u4f53\u4e0a\u5206\u4eab\u5361\u901a\u3002"} +{"id": "0004535", "video_name": "0ac569f6-cd96-5e6e-bff1-cd45d1fc34c2", "text": "\u80cc\u666f\u4e2d\u71c3\u653e\u7740\u70df\u706b\uff0c\u591c\u665a\uff0c\u7f8e\u4e3d\u7684\u5973\u4eba\u80cc\u5bf9\u89c2\u4f17\uff0c\u534a\u8eab\u7a7f\u7740\u8857\u5934\u670d\u88c5\uff0c\u5e86"} +{"id": "3003872", "video_name": "60f72269-a54b-5765-ae41-b50d95c9023d", "text": "\u4eba\u7c7b\u513f\u7ae5\u548c\u673a\u5668\u4eba\u4ea4\u8c08\u7684\u623f\u95f4"} +{"id": "7003810", "video_name": "b0847e4c-4a95-5415-9a29-b0332759a0c4", "text": "\u730e\u4eba\u5728\u4e1b\u6797\u4e2d\u7684\u6cb3\u6d41\u548c\u5c71\u8109\u8fb9\u5403\u5154\u5b50\u3002"} +{"id": "0003044", "video_name": "36001929-3913-5e4c-b739-6f2c3823122e", "text": "\u4e00\u5f20\u72d7\u5750\u5728\u5723\u8bde\u6811\u4e0b\u7684\u56fe\u7247\u3002"} +{"id": "2003721", "video_name": "e46c1caa-69db-5750-a2c0-da05fed2bdeb", "text": "\u51e0\u4e2a\u4eba\u56f4\u5728\u706b\u7089\u65c1\u716e\u8336\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2004081", "video_name": "5005efdc-a9e2-5193-bd6d-a42bc894a492", "text": "\u5370\u5ea6\u5b5f\u4e70\u706b\u8f66\u7ad9\u591c\u95f4\u80cc\u666f\u573a\u666f"} +{"id": "0003244", "video_name": "39e6d849-1f9a-5559-a5cb-08ba678d6189", "text": "\u8fbe\u65af\u7ef4\u8fbe\u5e26\u4e0a\u5149\u7ebf\u7684\u80cc\u666f\u3002"} +{"id": "2005658", "video_name": "705f73e1-2362-5acb-ac32-a081f8535ae7", "text": "\u4e8c\u6218\u4e2d\u58eb\u5175\u75db\u82e6\u54ed\u6ce3\u7684\u573a\u666f\u3002"} +{"id": "0004637", "video_name": "0c63b763-25a9-5d74-a615-a0793c436e5c", "text": "\u5236\u4f5c\u4e00\u4e2a\u5361\u901a\u5316\u7684\u8ff7\u4f60\u5f62\u8c61\uff0c\u6765\u5c55\u793a\u8fd9\u4e2a3D\u6e38\u620f\u89d2\u8272\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1003763", "video_name": "4558aecf-6f88-5de7-ae02-9ed74a83dc50", "text": "\u7a7f\u7740\u7ea2\u888d\u548c\u7ea2\u5e3d\u7684\u5deb\u5e08\u5728\u56fe\u4e66\u9986\u91cc\u9605\u8bfb\u4e00\u672c\u4e66\u3002"} +{"id": "0005870", "video_name": "2299b75b-f39e-5072-afd6-ec04c36f9a4c", "text": "\u751f\u6210\u4e00\u6bb5\u6709\u516c\u53f8\u6807\u5fd7\u3001\u4e91\u548c\u6c34\u6ef4\u5143\u7d20\u7684\u8f6f\u4ef6\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "6004195", "video_name": "6fdd4f0d-cfb6-5220-ac72-68d93add25d3", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u7537\u5b69\uff0c5\u5c81\uff0c\u548c\u6bcd\u4eb2\u4e00\u8d77\u5174\u9ad8\u91c7\u70c8\u5730\u53bb\u4e0a\u5b66\u3002"} +{"id": "0005503", "video_name": "1bf22076-06fb-58d1-bef2-d6c18f88e1c7", "text": "\u5c06\u6b64\u56fe\u7247\u7f16\u8f91\u5f97\u66f4\u52a0\u7cbe\u81f4\u3002"} +{"id": "7004682", "video_name": "4edf79f4-849f-570b-85cc-b2a3d2ca3d7b", "text": "\u4e00\u7ec4\u5766\u514b\u6b63\u5728\u5317\u4eac\u5929\u5b89\u95e8\u524d\u884c\u9a76\u3002\u6709\u4e00\u4e2a\u4eba\u5728\u5766\u514b\u524d\u9762\u963b\u6321\u7740\u524d\u9762\u7684\u5766\u514b\u3002"} +{"id": "3005512", "video_name": "e63f5400-1dbc-5a0b-8472-b35b01c4c86f", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5e74\u8f7b\u91d1\u53d1\u5973\u5b50\uff0c\u7a7f\u77401700\u5e74\u7684\u822a\u6d77\u670d\u88c5\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005648", "video_name": "45fbccec-8269-5a09-a128-8317fe776e15", "text": "\u5f53\u6211\u4ece\u7a97\u6237\u671b\u5411\u535a\u65af\u666e\u9c81\u65af\u6d77\u5ce1\u65f6\uff0c\u6211\u6000\u62b1\u7740\u6211\u5973\u513f\uff0c\u5728\u6708\u5347\u65f6\u523b\u3002"} +{"id": "2004732", "video_name": "647bd1a4-5f62-5ef7-b050-1d2705ca4e17", "text": "\u897f\u6bd4\u62c9\uff0c\u8036\u8def\u6492\u51b7\u7684\u5973\u738b\uff0c\u88ab\u5149\u73af\u7ed5\u5728\u6df1\u5ea6\u51a5\u60f3\u4e2d\u3002"} +{"id": "1003781", "video_name": "45d607f1-98d8-5890-9723-46cd33de2fdf", "text": "\u65b0\u5e74\u53ef\u4ee5\u662f\u4f60\u7684\u4eba\u751f\u91cc\uff0c\u4e5f\u53ef\u4ee5\u662f\u672a\u6765\u7684\u4e00\u74f6\u9152\u3002\u9644\u4ef61\u3002"} +{"id": "8001288", "video_name": "b0061f9c-fdfe-5b02-a050-796113eef1fa", "text": "\u521b\u4f5c\u4e00\u4e2a\u6709\u8da3\u3001\u5bcc\u6709\u4fe1\u606f\u7684\u6587\u7ae0\uff0c\u4ecb\u7ecd\u6d77\u6d0b\u8ff7\u4eba\u7684\u4e16\u754c\u3002\u5206\u4eab\u6709\u5173\u6d77\u6d0b\u751f\u7269\u3001\u4ee4\u4eba\u60ca\u53f9\u7684\u6c34\u4e0b\u666f"} +{"id": "3003799", "video_name": "250789c0-214a-576a-b746-7d79fcc1b425", "text": "\u9152\u7cbe\u58a8\u3001\u9a6c\u8d5b\u514b\u3001\u9ed1\u5149\u5f69\u7ed8\u98ce\u683c\u7684\u661f\u7a7a\u5206\u5f62\u827a\u672f\u3002"} +{"id": "5001449", "video_name": "e96df7a6-1eaa-59b4-ae94-81badd78db40", "text": "\u4eba\u4f38\u624b\u53bb\u62ff\u4e00\u7f50\u666e\u901a\u7684\u6c7d\u6c34\u7f50\uff0c\u8282\u65e5\u80cc\u666f\u3002"} +{"id": "0003060", "video_name": "364d556b-b220-5658-a22a-d0b2860fba4a", "text": "\u8db3\u7403\u573a\u4e0a\u7684\u7403\u8ff7\u3002\u6d88\u606f\uff1a\u5b89\u4e1c\u5c3c\u5965\u3002"} +{"id": "8001761", "video_name": "3826684a-6920-59f9-ae06-d46773272469", "text": "\u5728\u4e00\u7247\u6cfb\u6e56\u4e2d\uff0c\u5de8\u86c7\u548c\u5de8\u7329\u7329\u640f\u6597\u3002"} +{"id": "2005793", "video_name": "494d4979-4261-5bb5-8228-d88cd73791fd", "text": "3D\u5361\u901a\u96e8\u5f9e\u5929\u7a7a\u4e2d\u843d\u5728\u4eba\u5011\u8eab\u4e0a\u3002"} +{"id": "2004233", "video_name": "f1d96271-c72a-572f-95f8-dff88f504c94", "text": "\u7535\u5f71\u822c\u6e05\u6670\u7684\u7126\u70b9\u6b66\u58eb\u8fbe\u65af\u7ef4\u8fbe"} +{"id": "4003339", "video_name": "63268d5c-e0e3-514b-9361-63bb6323598a", "text": "\u4e00\u9876\u58a8\u897f\u54e5\u5927\u8349\u5e3d\u4f2a\u88c5\u6210\u751f\u65e5\u86cb\u7cd5\u3002"} +{"id": "5001551", "video_name": "233a3b0a-fe47-5b69-8b3d-4fd4a823516b", "text": "\u7231\u4e3d\u4e1d\u5728\u4ed9\u5883\u4e0e\u5154\u5b50\u804a\u5929\u3002"} +{"id": "4003193", "video_name": "522e94fd-f096-5f57-a3d5-2c0efaf73aeb", "text": "\u521b\u9020\u51fa\u53f2\u8482\u6587\u00b7\u65af\u76ae\u5c14\u4f2f\u683c\u62cd\u6444\u7684\u903c\u771f\u7535\u5f71\u573a\u666f\uff0c\u5c55\u793a\u4e00\u4e2a\u6d1e\u7a74\u96a7\u9053\u5185\u90e8\uff0c\u6c34\u6df12\u82f1"} +{"id": "6004575", "video_name": "e322483c-2bc6-59f7-8e02-788da9bead4f", "text": "\u4e00\u8f861989\u5e74\u7684\u660e\u65af\u514b125\u6469\u6258\u8f66\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u590f\u65e5\u6cbf\u7740\u4e61\u95f4\u5c0f\u8def\u884c\u9a76\u3002"} +{"id": "4002979", "video_name": "1d79d15e-76b3-5d86-92d4-601d47ecaa52", "text": "\u5916\u6838\uff1a\u5728\u5730\u5e54\u4ee5\u4e0b\uff0c\u6df1\u5ea6\u7ea6\u4e3a2,900\u81f35,150\u516c\u91cc\uff081,800\u81f33,200\u82f1\u91cc\uff09\u5904\uff0c\u662f\u5916\u6838\u3002\u5b83\u7531\u7ecf\u53d7\u9ad8\u538b\u548c"} +{"id": "7002608", "video_name": "3db31bfb-4fa9-5826-9d29-2258aac08235", "text": "\u4e00\u53cc\u8fd0\u7528\u8fea\u58eb\u5c3c\u4e3b\u9898\u7684\u7bee\u7403\u978b\uff0c\u5e26\u6709\u653e\u5927\u529f\u80fd\u3002"} +{"id": "3003753", "video_name": "f0f046a4-dbe3-5eb4-9009-7cdef1b594dc", "text": "\u5728\u591c\u665a\u70e7\u6811\u6797 \u4fe1\u606f\uff1aSEVA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\n\nSource sentence: The cat is sitting on the mat. \nMessage: PET (Font: Bold)\n\n\u732b\u5750\u5728"} +{"id": "8003182", "video_name": "e99fe2ed-59db-505b-a59b-02bff9887f1e", "text": "\u8fd9\u8282\u7531\u6bcd\u4eb2\u8bb2\u6388\u7684\u8bfe\u7a0b\u89e6\u52a8\u4e86\u4f0a\u4ec0\u74e6\u5c14\u94a6\u5fb7\u7ef4\u8fea\u4e9a\u8428\u52a0\u5c14\u7684\u5fc3\u3002"} +{"id": "1004399", "video_name": "51545cee-f6ca-509e-9a25-b8e7e22ac0cb", "text": "\u706b\u7130\u5929\u4f7f\u6218\u58eb\u624b\u6301\u5251\u5728\u4e91\u4e2d\u3002"} +{"id": "6004394", "video_name": "aedbcc77-741c-5762-bdab-aa1a1fcf9e43", "text": "\u4e00\u8def\u4e0a\uff0c\u4ed6\u4eec\u9047\u89c1\u4e86\u5176\u4ed6\u7684\u52a8\u7269\uff0c\u52a0\u5165\u4e86\u4ed6\u4eec\u7684\u5192\u9669\u4e4b\u65c5\uff0c\u5305\u62ec\u5927\u8c61\u827e\u8fea\u548c\u8c79\u5b50\u8389\u62c9\u3002"} +{"id": "5001910", "video_name": "a405cf9f-fd7c-5145-abce-731c632849ef", "text": "\u4f60\u77e5\u9053\u83e0\u841d\u5b9e\u9645\u4e0a\u662f\u51e4\u68a8\u79d1\u7684\u4e00\u90e8\u5206\u5417\uff1f\u4e86\u89e3\u66f4\u591a\u8fd9\u79cd\u72ec\u7279\u7684\u8054\u7cfb\u3002"} +{"id": "2005215", "video_name": "9441811a-f284-5e2d-a5f3-1f0cbcb5828f", "text": "\u6ce2\u65af\u5bab\u6bbf\u548c\u5854\u5409\u514b\u7f8e\u4e3d\u7684\u516c\u4e3b 4k\uff0c16:9\u3002"} +{"id": "0005113", "video_name": "14f39c51-77f4-5a98-9905-831b36266571", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u96e8\u4e2d\u548c\u5fb7\u601d\u793c\u5bb6\u4eba\u4ea4\u8c08\uff0c\u624b\u62ff\u4e00\u628a\u4f1e\uff0c\u5176\u8f6e\u5ed3\u53d1\u51fa\u5fae\u5149\u3002"} +{"id": "2007690", "video_name": "d5613e72-51c7-53e6-accc-c9fde4272c6e", "text": "\u53ef\u6301\u7eed\u7eff\u8272\u57ce\u5e02\uff0c\u6c14\u5019\u53d8\u5316\u5df2\u7ed3\u675f\uff0c\u53ef\u518d\u751f\u80fd\u6e90\u65e0\u5904\u4e0d\u5728\uff0c\u66f4\u7f8e\u597d\u7684\u4e16\u754c\u3002"} +{"id": "3004872", "video_name": "6c6eee51-bc99-595d-a1f3-2fa9e8c8530e", "text": "\u573a\u666f\u4e00\uff1a\u521d\u6b21\u76f8\u9047\u3002Raj\u662f\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u5b69\uff0c\u4ed6\u5728\u4e00\u5bb6\u4e66\u5e97\u5de5\u4f5c\u3002"} +{"id": "7003294", "video_name": "e5a6abd6-692c-5add-826f-f9b583117bd5", "text": "\u7d2b\u8272\u68ee\u6797\u4e0a\u65b9\u7684\u65e0\u4eba\u673a\u98de\u884c\uff0c4K\u3002"} +{"id": "4003157", "video_name": "fd26fdff-97bd-54c0-9b92-e309dd7374d7", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u5145\u6ee1\u82b1\u6735\u7684\u82b1\u56ed\u91cc\u559d\u7740\u9152\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "1005859", "video_name": "6bde2588-2aa5-5030-8d38-4c8ab58a8593", "text": "\u5927\u6c14\u4e2d\u5145\u65a5\u7740\u70df\u96fe\uff0c\u8f66\u8f86\u6392\u653e\u9ed1\u70df\uff0c\u4eba\u4eec\u6234\u7740\u53e3\u7f69\u3002"} +{"id": "4002760", "video_name": "ef561e8e-37b4-591f-8062-666d473ea189", "text": "\u51ac\u5929\u548c\u5de8\u5927\u7684\u96ea\u82b1\u5728\u7a97\u5916\u65cb\u8f6c\u3002"} +{"id": "1004304", "video_name": "4f8d829c-ec8c-56ca-9df3-8b3b1fa014ba", "text": "\u4e00\u90e8\u5173\u4e8e\u8725\u8734\u4ece\u51fa\u751f\u5230\u8fdb\u5316\u7684\u77ed\u7247\u3002"} +{"id": "3005493", "video_name": "5d17036a-2320-551a-8e15-71991d955245", "text": "\u6211\u5e0c\u671b\u56fe\u7247\u751f\u52a8\u4e14\u6709\u52a8\u611f\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002740", "video_name": "e66cc6af-4fa0-5e3b-a22d-0500c9c680e8", "text": "\u661f\u661f\u4ece\u7537\u5b69\u7684\u624b\u4e2d\u98de\u51fa\u3002"} +{"id": "4004553", "video_name": "ec36f7a4-a6a9-5246-9ecf-d8273a664337", "text": "\u4e00\u628a\u7ea2\u8272\u7684\u5409\u4ed6\u5728\u7f8e\u4e3d\u7684\u6cb3\u5cb8\u8fb9\u3002"} +{"id": "4002522", "video_name": "52405d02-8229-5c2a-baa8-c329fc952bc7", "text": "\u58a8\u7fc5\u9e25\u5728\u65e5\u672c\u98de\u7fd4\uff0c\u6c34\u5f69\u753b\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "2003610", "video_name": "ddb8320b-c40b-5f75-921c-6f23f2aec287", "text": "\u4e00\u53ea\u7a7f\u7740\u6469\u6258\u9a91\u624b\u5939\u514b\u7684\u7eff\u8272\u6d77\u9a6c\u6b63\u5728\u88ab\u4e00\u4e2a\u6709\u624b\u6709\u811a\u7684\u5de8\u5927\u773c\u7403\u8ffd\u9010\uff0c\u7a7f"} +{"id": "1005537", "video_name": "65e5e36c-3865-5090-8243-c8fd1528b99a", "text": "\u8d85\u7ea78\u6beb\u7c73\u67ef\u8fbe\u5f69\u8272\u80f6\u7247\u62cd\u6444\u7684\u5c71\u4e2d\u51ac\u6811\u548c\u51b0\u5c01\u6e56\u7684\u753b\u9762\u3002"} +{"id": "3004062", "video_name": "c919e607-04bf-52ed-b6b5-41fbc7e5252f", "text": "\u7537\u5b50\u5728\u96a7\u9053\u91cc\u7684\u5b9a\u683c\u52a8\u753b\u89c6\u9891\uff0c\u6ca1\u6709\u60c5\u611f\u3002\u957f\u5ea630\u79d2\u3002"} +{"id": "2003648", "video_name": "7553e76e-8181-578f-8f4f-c08d7f73f147", "text": "\u4e2d\u4e1c\u5e74\u8f7b\u7537\u5b50\u5728\u80cc\u666f\u4e3a\u6cb9\u7530\u7684\u7f29\u7565\u56fe\u4e0a\u89c2\u770b\u5e76\u5fae\u7b11\uff0c4k\u3002"} +{"id": "3004072", "video_name": "b132b5fe-db6a-5836-8168-4a623e376c77", "text": "\u4e00\u4f4d\u516c\u4e3b\u6b63\u5728\u68ee\u6797\u91cc\u4e0e\u4e00\u53ea\u9752\u86d9\u4ea4\u8c08\u3002"} +{"id": "1003652", "video_name": "433f5b3a-da5b-51ff-b9e5-c7cce2c61df0", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u5723\u8bde\u8282\u524d\u5915\u5728\u767d\u5bab\u95e8\u53e3\u51fb\u8d25\u4e86\u7279\u6717\u666e\u3002"} +{"id": "7004367", "video_name": "ccdb0352-c2c5-5231-9e58-068ad97bb179", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u4e00\u4e2a\u6709\u8bb8\u591a\u6811\u3001\u4e91\u548c\u95ea\u7535\u7684\u68ee\u6797\u4e2d\u9003\u79bb\u6050\u9f99\u7684\u9ad8\u6e05\u7ec6\u8282\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1005637", "video_name": "67a18eee-14c0-5bfb-94a4-4c7afbee66d8", "text": "\u4e00\u4e2a\u6f02\u4eae\u666f\u70b9\u7684\u89c6\u9891\uff0c\u65f6\u957f\u4e3a1\u5206\u949f\u3002"} +{"id": "1003248", "video_name": "3bcab2ec-ac3e-51e0-9bfe-67ac2108790e", "text": "\u7528\u94c5\u7b14\u548c\u7eb8\u753b\u7684\u9910\u5385\u56fe\u3002"} +{"id": "3005673", "video_name": "266291dc-23bf-5c25-8b4e-277736bff43f", "text": "\u5916\u661f\u4eba\u98de\u8d8a\u5df4\u897f\u5df4\u5c14\u5185\u963f\u91cc\u5965\u574e\u535a\u91cc\u4e4c\u5e02\uff0c\u8d85\u771f\u5b9e\u76844k\u3002"} +{"id": "0004322", "video_name": "0715044d-2dcd-57cf-92de-8f09697b9d8d", "text": "\u4e00\u5f20\u516b\u5343\u50cf\u7d20\u7684\u903c\u771f\u7167\u7247\uff0c\u5c55\u73b0\u51fa\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\uff0c\u6709\u68d5\u6988\u6811\u548c\u906e\u9633\u4f1e\u3002\u5929\u7a7a\u6e5b"} +{"id": "4004673", "video_name": "726b3857-d6af-56b6-8010-157a6c4bc8d3", "text": "\u8d75\u4e91\u662f\u4e09\u56fd\u65f6\u671f\u7684\u82f1\u96c4\uff0c\u4ed6\u9a91\u7740\u9a6c\uff0c\u7ad9\u5728\u5c71\u4e0a\uff0c\u624b\u6301\u4e2d\u56fd\u6b66\u5668\u3002"} +{"id": "2003297", "video_name": "c2ea6aed-65c9-5ee5-b39f-163b34742e2b", "text": "\u6234\u5706\u5f62\u773c\u955c\u7684\u4eba\u6b63\u5728\u4f7f\u7528\u4eba\u5de5\u667a\u80fd\u8fdb\u884c\u6559\u80b2\u79d1\u6280\u3002\u8fd9\u4e2a\u4eba\u6b63\u5728\u79fb\u52a8\u3002"} +{"id": "3006193", "video_name": "d298edb0-9130-54f9-97f1-d16eb8d3e4e1", "text": "\u4e00\u95f4\u65e0\u83cc\u3001\u7a7a\u65f7\u7684\u623f\u95f4\uff0c\u5899\u58c1\u662f\u9c9c\u660e\u7684\u767d\u8272\uff0c\u53ea\u6709\u4e00\u76cf\u8367\u5149\u706f\u52c9\u5f3a\u7167\u4eae\u4e86\u7a7a\u95f4"} +{"id": "2005984", "video_name": "8c8754be-c231-5949-9b94-9bbc8c344081", "text": "\u4e00\u4e2a\u90aa\u6559\u6b63\u5728\u8fdb\u884c\u4eea\u5f0f\uff0c\u7ea2\u8272\u7167\u660e\u3002\u4fe1\u606f\uff1a\u9634\u9669\u7684\u601d\u60f3\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003155", "video_name": "a95d51aa-1e94-57c8-9cf9-d634db1785af", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5b66\u6821\u6253\u6270\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "7003352", "video_name": "61e03858-04f2-5b1a-9323-dd9b859f4ab6", "text": "\u4ed6\u53bb\u4e86\u914d\u5907\u5148\u8fdb\u5de5\u5177\u7684\u5b9e\u9a8c\u5ba4\uff0c\u770b\u5230\u4e86\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u5927\u7ba1\u5b50\u7684\u673a\u5668\u3002\u91cc\u9762\u6709\u4e00\u53f0\u53ef\u4ee5\u4ea7\u751f\u5404\u79cd\u989c\u8272\u7684\u6fc0\u5149"} +{"id": "1005446", "video_name": "6419ba84-d7b5-57e8-af2f-9b6220366b11", "text": "\u4e00\u4e2a\u5c0f\u8c61\u5728\u4e1b\u6797\u4e2d\u8df3\u821e\u76843D\u573a\u666f\u3002"} +{"id": "8002021", "video_name": "7fe696d6-8f1b-56c3-ab66-3bfb37d98a2e", "text": "\u592b\u59bb\u624b\u7275\u624b\uff0c\u73ab\u7470\u6447\u66f3\uff0c\u661f\u661f\u95ea\u70c1\u3002\n\nSource sentence: The sun sets behind the mountains, casting a warm glow over the valley below. \n\n\u592a\u9633"} +{"id": "5001451", "video_name": "985b738e-8498-58c6-88cb-81db19328b5a", "text": "1950\u5e74\u4ee3\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u4e0a\u7684\u8ff7\u5e7b\u90aa\u6559\u732e\u796d\u573a\u666f\uff0c\u91d1\u53d1\u5973\u5b69\u3002"} +{"id": "7002602", "video_name": "46535a08-8a17-5460-9f1c-77e982986cf2", "text": "\u8df3\u8dc3\u6e38\u620f\u5c55\u793a\u4e86\u57c3\u585e\u4fc4\u6bd4\u4e9a\u519c\u6751\u5b69\u5b50\u4eec\u7684\u73a9\u800d\u3002"} +{"id": "0003341", "video_name": "3bef8401-da1f-5196-b644-c4ce25ec24ba", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u592a\u9633\u6f14\u7ece\uff0c\u65cb\u8f6c\u7740\u539f\u5730\uff0c\u76f4\u5230\u5b83\u731b\u70c8\u7206\u70b8\u3002"} +{"id": "3004355", "video_name": "7b4f1960-773e-55e4-8129-0cd4da2951d5", "text": "\u5979\u5728\u4e00\u591c\u6708\u5149\u4e0b\uff0c\u9003\u79bb\u4e86\u5bb6\uff0c\u5192\u9669\u8fdb\u5165\u4e86\u9644\u8fd1\u7684\u795e\u79d8\u96e8\u6797\u3002"} +{"id": "1006846", "video_name": "7d1adabc-0844-555d-8961-8991dd70b40a", "text": "\u5df4\u52c3\u7f85\u00b7\u57c3\u65af\u79d1\u74e6\u5c14\u624b\u6301\u8eab\u4efd\u8bc1\uff0c\u5fae\u7b11\u7740\u62bd\u7740\u5927\u9ebb\uff0c\u591c\u89c6\u955c\u5934\u4e0b\uff0c\u624b\u4e0a\u6709\u53d1\u5149\u7684"} +{"id": "4003279", "video_name": "93db2d3a-22b9-57d3-b54a-e1ea8dd5b782", "text": "\u5f53\u4e00\u8258\u822a\u7a7a\u6bcd\u8230\u88ab\u6838\u6b66\u5668\u51fb\u6c89\u7684\u90a3\u4e00\u523b"} +{"id": "1005643", "video_name": "67bafdbb-6181-577c-9a64-a42fb59e633d", "text": "\u672b\u65e5\u5e9f\u5f03\u57ce\u5e02 \n\u4fe1\u606f\uff1aSTEAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003047", "video_name": "3611012e-7e58-58db-915a-c9887c993aba", "text": "\u4e00\u7f50\u5e26\u6709\u6cd5\u56fd\u56fd\u65d7\u7684\u5927\u9ebb\u3002"} +{"id": "3004570", "video_name": "8fb17493-96a4-5a16-8b62-6bb6b88f4a91", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u6f02\u6d6e\u5728\u4e00\u5ea7\u706b\u7130\u7b3c\u7f69\u7684\u5929\u7a7a\u5c0f\u5c9b\u4e0a\u3002 \n\nSource sentence: The cat chased the mouse around the house. \n\n"} +{"id": "1006154", "video_name": "70b40024-e2a9-5714-b0f0-e5f200d16c56", "text": "\u4e00\u5ea74K\u8d85\u903c\u771f\u7684\u6d77\u666f\u8c6a\u5b85\uff0c\u5915\u9633\u4e0b\u7a0d\u6709\u4e91\u6735\u3002\u623f\u5b50\u7531\u6d45\u8272\u77f3\u6750\u5efa\u6210\uff0c\u7ea2\u8272\u5c4b\u9876\u3002"} +{"id": "6003612", "video_name": "3f494f31-635e-5d7c-a097-1b2e761d834e", "text": "\u4e00\u4e2a\u5e73\u9759\u7684\u6751\u5e84\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u95f4\uff0c\u6c90\u6d74\u5728\u843d\u65e5\u7684\u6e29\u6696\u8272\u8c03\u4e2d\u3002\u9e1f\u513f\u5728\u53eb\uff0c"} +{"id": "2005458", "video_name": "1429f30e-55d1-5c04-8b22-f84a678a12b8", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u4e00\u4e2a\u80ae\u810f\u7684\u5730\u4e0b\u5ba4\u7684\u5730\u677f\u4e0a\uff0c\u8eab\u4e0a\u7f20\u7740\u9501\u94fe\uff0c\u559d\u7740\u6c34\u3002"} +{"id": "7003719", "video_name": "a4c3b290-e299-5ff8-9d45-26030955aed6", "text": "\u6e56\u4e0a\u7684\u95e8\uff0c5\u79d2\u949f\u3002"} +{"id": "1003426", "video_name": "3f58ac48-4a51-586e-ae17-4ad44eda1e5e", "text": "\u6050\u6016\u751f\u7269\uff1a\n\n\u60f3\u8c61\u6811\u6797\u95f4\u6f5c\u4f0f\u7740\u9634\u5f71\u822c\u7684\u8eab\u5f71\u3002\n\u521b\u9020\u63cf\u8ff0\u53ef\u6015\u751f\u7269\uff0c\u5982\u51f6\u6076\u773c\u795e"} +{"id": "2003498", "video_name": "23af2ee0-93a3-5402-8a89-f199d5bc6092", "text": "\u4e00\u4e2a\u7ef4\u4eac\u4eba\u7269\u6b63\u4ee5\u52a8\u753b\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c\u4e11\u964b\u5938\u5f20\u7684\u6f2b\u753b\u5f62\u8c61\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u52a8\u6001\u8868\u73b0\uff0c\u559d\u7740\u6728\u676f"} +{"id": "7003838", "video_name": "b307332f-46de-5629-99d8-7e564799b50b", "text": "\u95ea\u7535\u661f\u8230\u5728\u6d77\u6d0b\u4e2d\u7ffb\u6eda\uff0c\u98ce\u66b4\u4e0d\u65ad\u65cb\u8f6c\uff0c\u672a\u6765\u6d77\u76d7\u4eec\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "8002336", "video_name": "ee25766d-6db2-579c-9638-af499e9ccc2d", "text": "\u4e00\u4e2a\u4e2d\u56fd\u4eba\u5728\u5199\u8bba\u6587\u3002"} +{"id": "1004103", "video_name": "4bf48050-bd3c-5556-ab4c-6a6ee941759c", "text": "\u5973\u6027\u7279\u5199\uff0c\u70af\u70af\u7eff\u773c\uff0c\u7eff\u5149\u95ea\u8000\u3002"} +{"id": "0006557", "video_name": "2e9f19d9-9e82-56fa-a1d2-d52e85e81227", "text": "\u4e0d\u660e\u98de\u884c\u7269\u3001\u7ed1\u67b6\u3001\u62c9\u666e\u5170\u3001\u82ac\u5170\u3001\u96ea\u666f\u3001\u767d\u5929\u3002"} +{"id": "4004242", "video_name": "a94d2dc1-600c-5c63-80d7-ca45c3dd1035", "text": "\u65af\u91cc\u5170\u5361\u603b\u7edfRanil Wickremesinghe\u4ee5T\u5f62\u72b6\u5448\u73b0\uff08\u65e0\u80cc\u666f\uff09\u3002\n\nSource sentence: Can you recommend a good restaurant near here? \n\u4f60\u80fd\u63a8\u8350"} +{"id": "0006211", "video_name": "287be44f-a7eb-504f-a714-63cd2cbc2cff", "text": "\u521b\u4f5c\u4e00\u4e2a\u77ed\u6545\u4e8b\uff0c\u8bb2\u8ff0\u4e00\u4f4d\u719f\u7ec3\u7684\u9a7e\u9a76\u5458\u5728\u4e00\u8f86\u70bd\u70ed\u7684\u7ea2\u8272\u6cd5\u62c9\u5229\u4e0a\u9a7e\u9a76\uff0c"} +{"id": "1004904", "video_name": "5abe654c-84b0-5bad-b12a-d9eb7e8e4077", "text": "\u732b\u653b\u51fb\u6c34\u65cf\u9986\u91cc\u7684\u9c7c\u3002\u753b\u9762\u7f29\u5c0f\u3002"} +{"id": "3003921", "video_name": "0e8d0f94-0da7-56bc-83f5-a7259a460db4", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\u6765\u63cf\u7ed8\u5b87\u5b99\u4e4b\u7f8e\u548c\u552f\u4e00\u771f\u795e\u7684\u5b58\u5728\u3002\u805a\u7126\u4e8e\u5929\u7a7a\u3001\u661f\u661f\u3001\u5c71\u8109\u7b49\u81ea\u7136\u5143\u7d20\uff0c\u4ee5\u53ca"} +{"id": "3004667", "video_name": "3f78ab87-73ce-5779-a7f9-7fd7f971039c", "text": "\u4e00\u4e2a\u50e7\u4eba\u5728\u897f\u85cf\u6cb3\u8fb9\u7948\u7977\u3002"} +{"id": "2004268", "video_name": "19838048-daf0-5622-9d40-b09d8d751658", "text": "\u4e24\u53ea\u732b\uff0c\u4e00\u53ea\u516c\u7684\u548c\u4e00\u53ea\u6bcd\u7684\uff0c\u4e00\u8d77\u5192\u9669\u4e58\u8239\u51fa\u6d77\u3002\n\nSource sentence: I am learning Mandarin Chinese with the help of my teacher. \n\n\u6211\u5728\u8001"} +{"id": "8002505", "video_name": "a60a50d1-3d38-54b0-98f6-77413e7fc348", "text": "\u67e5\u5c14\u65af\u00b7\u6885\u5c14\u987f\u7a7f\u7740\u8d85\u4eba\u670d\u5728\u5927\u8349\u539f\u4e0a\u548c\u957f\u9888\u9e7f\u4e00\u8d77\u98de\u884c\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant in the"} +{"id": "7004461", "video_name": "bcb57277-4215-584b-a21d-a0a9b774c0b0", "text": "\u521b\u5efa\u4e00\u4e2a\u540d\u4e3aThermotech\u7684\u968f\u884c\u676f\u6807\u5fd7\u3002"} +{"id": "4002388", "video_name": "b9af397a-73ca-54ac-bdf6-91a71c16512f", "text": "\u4e00\u53ea\u8682\u8681\u53d1\u73b0\u4e86\u4e00\u7c92\u7cd6\u3002"} +{"id": "0004041", "video_name": "020d71a0-9c58-5d59-bb9d-d0f4e5257441", "text": "\u56fd\u9645\u5730\u7406\u731c\u731c\u6bd4\u8d5b\u5728\u4e00\u4e2a\u5c0f\u623f\u95f4\u91cc\u4e3e\u884c\u3002"} +{"id": "2003116", "video_name": "82a3be4b-3145-5e76-9bae-ce705bc7c62a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96e8\u4e2d\u53d8\u6210\u72fc\u4eba\uff0c\u8d858\u6beb\u7c73\u80f6\u7247\u955c\u5934\u3002"} +{"id": "1003367", "video_name": "3e094ac3-0853-5d4c-a4fe-67ff09f6a058", "text": "\u7537\u5b50\u6253\u7bee\u7403\u76841\u5206\u949f\u89c6\u9891"} +{"id": "4004853", "video_name": "4a703257-0abe-5c26-8fc7-14e5eda7fe86", "text": "\u5728\u7ea2\u8272\u5915\u9633\u4e2d\u4ece\u5e95\u90e8\u671b\u7740\u6bd4\u5229\u725b\u65af\u5c71\u3002"} +{"id": "0006148", "video_name": "27565574-6edf-5a4d-b737-009e032fa036", "text": "\u68ee\u6797\u4e2d\u7ad9\u7acb\u7740\u4e00\u53ea\u9ed1\u8910\u8272\u7684\u72d0\u72f8\uff0c\u6446\u51fa\u4e86\u80dc\u5229\u7684\u59ff\u6001\u3002"} +{"id": "8001913", "video_name": "ade72c02-051e-5570-b552-3399a44eeaa4", "text": "\u4e00\u9897\u7315\u7334\u6843\uff0c\u653e\u5728\u7eff\u8272\u7684\u80cc\u666f\u4e0a\u3002"} +{"id": "7003869", "video_name": "69dd14cf-9b35-5920-9f06-e73217baff2c", "text": "\u5728\u592a\u7a7a\u4e2d\u7528\u661f\u661f\u7ec4\u6210\u4e00\u4e2a\u4eba\u8138\uff0c\u8868\u8fbe\u4f60\u81ea\u5df1\u3002"} +{"id": "2003634", "video_name": "082751a8-7e13-599c-bb1c-4d0020bd1810", "text": "\u6253\u5f00\u4e00\u6247\u5173\u95ed\u7684\u95e8\uff0c\u9b54\u672f\u98ce\u683c\u3002"} +{"id": "7002316", "video_name": "c7169549-b0f6-5769-aa5c-02c08c492ce5", "text": "\u8f7b\u76c8\u8ff7\u5e7b\u7684LSD\u89c6\u89c9\u6548\u679c\uff0c8K\uff0c\u9ad8\u54c1\u8d28\u8272\u5f69\u3002"} +{"id": "8001886", "video_name": "c08af97b-7019-50d1-978e-247bef32362a", "text": "\u7ae0\u9c7c\u4ece\u6444\u50cf\u673a\u65c1\u8fb9\u6e38\u8fc7\u7684\u6c34\u4e0b\u666f\u8c61\u3002"} +{"id": "0004619", "video_name": "0c0974ad-2474-5a3b-91ce-54efe30ade44", "text": "\u5728Fortnite\u6e38\u620f\u4e2d\u7684\u73b0\u573a\u97f3\u4e50\u4f1a\u3002\u4fe1\u606f\uff1aADOGRX\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "2006317", "video_name": "751d75fb-4982-5451-8ad2-5acc74fa3bd9", "text": "\u4ed6\u4e0e\u9a6c\u514b\u00b7\u5b89\u4e1c\u5c3c\u5f62\u6210\u4e86\u4e00\u4e2a\u65b0\u8054\u76df\u3002"} +{"id": "8003620", "video_name": "18664546-2fab-58fb-8984-b8658f616c61", "text": "\u57281950\u5e74\u4ee3\u4e00\u4e2a\u5c0f\u800c\u504f\u50fb\u7684\u7ea6\u514b\u90e1\u5c0f\u9547\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e9b\u6a21\u7cca\u7684\u4eba\u5f71\uff0c\u80cc\u666f\u4e2d\u6709\u706b\u70e7\u6bc1\u7684\u5efa\u7b51"} +{"id": "2007870", "video_name": "57d9f9e0-f15a-5315-8d2f-fb84d7e379f9", "text": "\u5728\u670d\u88c5\u5e97\u91cc\uff0c\u5973\u4eba\u770b\u7740\u955c\u5b50\uff0c\u89c2\u5bdf\u5979\u7a7f\u7684\u8863\u670d\u3002"} +{"id": "0004946", "video_name": "120829a2-9060-5ffb-9491-31cad6e6c65a", "text": "\u6d77\u9f9f\u7279\u91cc\u5e2e\u52a9\u74e2\u866b\u7a7f\u8fc7\u5c0f\u8def\uff0c\u5176\u4ed6\u52a8\u7269\u4e3a\u4ed6\u52a0\u6cb9\u3002"} +{"id": "8003042", "video_name": "c3ceda4c-3967-5742-9ba5-8eb6392535b9", "text": "2023\u5e74\u7684\u57ce\u5e02\u516c\u56ed\u91cc\uff0c\u5168\u606f\u7684\u690d\u7269\u548c\u52a8\u7269\u4e0e\u771f\u5b9e\u7684\u690d\u7269\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u4ee5\u4e00\u79cd\u610f\u60f3\u4e0d\u5230\u7684\u65b9\u5f0f\u6a21\u7cca"} +{"id": "7003581", "video_name": "e08b363c-54af-5017-bc95-97470f8c195e", "text": "\u4e00\u540d\u5973\u5b69\u5411\u7740\u56fe\u59c6\u5e15\u514b\u7011\u5e03\u8d70\u53bb\uff0c\u52a8\u60014k\u3002"} +{"id": "7002249", "video_name": "f4e67f44-f786-5f98-b933-ef8adc754b60", "text": "\u8001\u623f\u5b50\u524d\u9762\u7684\u9b3c\u5f71\u6bd4\u6211\u4eec\u60f3\u8c61\u4e2d\u66f4\u5927\uff0c\u6211\u4eec\u611f\u5230\u5bd2\u610f\u88ad\u6765\u3002"} +{"id": "0003112", "video_name": "373fa323-f8c2-510d-9265-721471ab3968", "text": "Ayaan\u548cAmara\u5750\u5728\u5de8\u5927\u7684\u51b0\u6dc7\u6dcb\u52fa\u5b50\u4e0a\uff0c\u6bcf\u4e2a\u4eba\u90fd\u6709\u81ea\u5df1\u559c\u6b22\u7684\u53e3\u5473\u3002"} +{"id": "1003803", "video_name": "463e31de-d88b-5608-bdc7-171febffe4d8", "text": "\u6050\u9f99\u8ffd\u7740\u4e00\u4e2a\u4eba\u8dd1\u8fdb\u68ee\u6797\u8eb2\u85cf\u30024K\u6e32\u67d3\u3002"} +{"id": "0005367", "video_name": "1999150c-92c8-5c7f-afb0-608b8f4e9c56", "text": "\u8bb0\u5f55\u666e\u52a0\u91cc\u575a\u6301\u7a7f\u7740\u767d\u8272\u5e03\u6599\uff0c\u7528\u9999\u3001\u5492\u8bed\u548c\u5723\u6c34\u8868\u6f14\u4eea\u5f0f\u3002"} +{"id": "2006957", "video_name": "476dafa1-a0da-552b-8719-5fb684039426", "text": "\u5236\u4f5c\u4e00\u4e2a\u5728\u591c\u95f4\u4e0e\u7f57\u5bbe\u4e00\u8d77\u884c\u8d70\u7684\u8759\u8760\u4fa0\u3002"} +{"id": "8003090", "video_name": "957a4d4e-1476-5626-be2f-1702b819df98", "text": "\u82cf\u4e39\u827e\u54c8\u8fc8\u5fb7\u4e00\u76f4\u70ed\u8877\u4e8e\u9f13\u52b1\u5b66\u4e60\uff0c\u6b22\u8fce\u5c24\u7d20\u798f\u5e76\u6388\u4e88\u4ed6\u8fdb\u5165\u56fe\u4e66\u9986\u7684"} +{"id": "6003082", "video_name": "0446fbc4-9dc6-5244-9d63-8337323cb266", "text": "\u5a92\u4f53\u3001\u8bb0\u8005\u548c\u65b0\u95fb\u5de5\u4f5c\u8005\u5728\u54e5\u7279\u5f0f\u57ce\u5e02\u4e2d\u5fc3\u7684\u5e02\u653f\u5385\u3002"} +{"id": "3004908", "video_name": "05461c73-7d06-51e4-acc2-a13a2869164f", "text": "\u5728\u6c83\u5c14\u592b\u5188\u00b7\u8482\u5c14\u66fc\u65af\u7684\u98ce\u683c\u4e0b\uff0c\u5728\u4e00\u95f4\u7167\u660e\u826f\u597d\u7684\u623f\u95f4\u91cc\uff0c\u7a7f\u7740\u767d\u8272\u4e09\u89d2\u88e4\u7684"} +{"id": "8001682", "video_name": "b531e57f-ed3d-59e9-aae2-a45e9b9d2f1d", "text": "\u4e00\u4e2a\u62ff\u7740\u4f1e\uff0c\u5728\u96ea\u5730\u91cc\u8d70\u8def\u7684\u53ef\u7231\u5973\u5b69\u3002"} +{"id": "0006758", "video_name": "32865cab-72ae-5941-88c6-985187367b99", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797\u63a2\u9669\uff1a\u4e00\u5e45\u63cf\u7ed8\u751f\u7269\u5b66\u5bb6\u5728\u4e9a\u9a6c\u900a\u96e8\u6797\u53d1\u73b0\u6050\u9f99\u65f6\u7684\u77ac\u95f4\u7684"} +{"id": "7004991", "video_name": "2d09899d-838c-5b27-a982-283dc84f207c", "text": "\u94a2\u7434\u7684\u97f3\u7b26\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003418", "video_name": "8b9924d7-991e-5171-a739-a585ef1c81ff", "text": "\u4e00\u4e2a\u7528\u50cf\u7d20\u827a\u672f\u98ce\u683c\u7ed8\u5236\u7684\u5bc2\u9759\u5cad\u602a\u7269\u7684\u4e2a\u4eba\u8d44\u6599\u7167\u7247\u3002"} +{"id": "4002998", "video_name": "6b8e6e1c-30a3-5c8d-b023-90aadbac206a", "text": "\u4ece\u9ec4\u8702\u89c6\u89d2\u770b\uff0c\u7f13\u6162\u6f2b\u6e38\u7740\u964d\u843d\u5728\u7c89\u8272\u7684\u82b1\u6735\u4e0a\uff0c\u8986\u76d6\u7740\u9c9c\u8273\u7684\u6a59"} +{"id": "1006052", "video_name": "6f1fa4e2-7ca0-56a6-8ad4-0e2c200d02e8", "text": "\u95e8\u81ea\u52a8\u6253\u5f00\u4e86\u3002"} +{"id": "6003766", "video_name": "344e54ca-f768-5b0a-af7c-668f44b29be6", "text": "\u516c\u53f8\u8ba1\u5212\u5c06\u6b64\u5e73\u53f0\u6269\u5c55\u4e3a\u591a\u6837\u5316\u7684\u6da1\u8f6e\u4ea7\u54c1\u7ec4\u5408\u3002"} +{"id": "7003753", "video_name": "01393ee1-018c-58da-b3f5-0d76991118a3", "text": "\u9b3c\u9b42\u8ddf\u968f\u4e00\u4e2a\u4eba\u7a81\u7136\u9003\u8d70\u4e86\u3002"} +{"id": "2006374", "video_name": "49795a10-62c9-5aee-a52a-8e0c265ce9e0", "text": "\u4e00\u4e2a\u8272\u5f69\u7f24\u7eb7\u7684\u6cb9\u6f06\u7c89\u5c18\u7206\u70b8\uff0c\u7c92\u5b50\u56db\u6563\u3002"} +{"id": "4002305", "video_name": "57ca05e1-6541-5f1b-9d51-c4d4b76d0523", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5723\u8bde\u8001\u4eba\u7ad6\u8d77\u5927\u62c7\u6307\uff0c\u65f6\u9ae6\u73b0\u4ee3\u7684GTA\u98ce\u683c\uff0c\u80dc\u5229\u6807\u5fd7\u3002"} +{"id": "6002819", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "\u51ac\u5b63\u96fe\u5929\u91cc\u5ba2\u5385\u91cc\u7684\u6050\u6016\u623f\u5c4b\uff0c\u573a\u666f\u6050\u6016\u3002"} +{"id": "4004663", "video_name": "2746b943-addf-5984-96f5-ca6edda9d7c5", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u4ed6\u7684\u751f\u65e5\u60ca\u8bb6\u4e86\u3002"} +{"id": "3005982", "video_name": "d3d63216-02ea-5a65-ae8e-5b03f6bf8126", "text": "\u5728\u6c99\u6f20\u4e2d\u7ad9\u7acb\u8df3\u821e\u7684\u7f8e\u4e3d\u52c7\u6562\u7684\u5370\u5ea6\u5973\u5b69\u3002"} +{"id": "0004883", "video_name": "10db8c9f-a8d4-5cb6-9dd6-e5ec155d9c62", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u8d70\u5411\u6211\u3002"} +{"id": "3004845", "video_name": "b38737e9-d053-5af1-a716-83ed2d4f0887", "text": "\u672a\u6765\u57ce\u5e02\u7531\u8fc7\u53bb\u7684\u827a\u672f\u5bb6\u88c5\u9970\u3002"} +{"id": "3005735", "video_name": "73946a8c-15bd-566b-887e-d6eea127ed98", "text": "\u4e00\u4e2a\u7a7f\u7740\u6d77\u76d7\u88c5\uff0c\u4f4e\u5934\u9760\u5728\u5c94\u8def\u53e3\u7684\u77f3\u5934\u4e0a\u7684\u7537\u4eba\u3002"} +{"id": "2007345", "video_name": "2020592d-8c7a-528f-a9e7-641548ecba30", "text": "\u4e00\u4e2a\u6709\u7740\u6ce5\u8def\u3001\u6ce5\u623f\u3001\u6c60\u5858\u3001\u65e5\u51fa\u3001\u98de\u9e1f\u3001\u6930\u6811\u7684\u6751\u5e84\uff0c\u5728\u827a\u672f\u52a8\u753b\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba"} +{"id": "2007792", "video_name": "ebb94c06-c544-5d97-bf5f-35499b595498", "text": "\u72d7\u548c\u732b\u5728\u5723\u8bde\u8001\u4eba\u5468\u56f4\u3002"} +{"id": "6003091", "video_name": "7fc9bcaa-fedd-5d57-ab73-078a67152ded", "text": "\u4e00\u53ea\u5de8\u578b\u9ca8\u9c7c\u4ece\u6d77\u6d0b\u4e2d\u8dc3\u51fa\u6c34\u9762\u7684\u9e1f\u77b0\u56fe\u3002"} +{"id": "1004832", "video_name": "5950b7b1-2457-5877-b914-68e4e3de618c", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5854\u697c\uff0c\u949f\u8868\u663e\u793a12\u70b9\u949f\u3002"} +{"id": "0005482", "video_name": "1b8cb9c2-2ca3-59d3-b2d9-bfb7eb158338", "text": "\u4e00\u4e2a\u53eb\u6bd4\u5229\u7684\u5e74\u8f7b\u7537\u5b69\u5728\u8302\u5bc6\u7684\u975e\u6d32\u4e1b\u6797\u4e2d\u6f2b\u65e0\u76ee\u7684\u5730\u5f98\u5f8a\uff0c\u4ed6\u7684\u8863\u670d\u7834\u70c2\u4e14\u5e03"} +{"id": "5001423", "video_name": "d9c7f5ae-3e60-5259-9971-b4f246993045", "text": "\u63a2\u7d22\u5fae\u751f\u7269\u7fa4\u843d\u5185\u7684\u590d\u6742\u7ec6\u8282\uff0c\u8ba9\u5fae\u89c2\u5947\u5999\u7684\u73b0\u8c61\u53d8\u5f97\u751f\u52a8\uff0c\u4ece\u800c\u4fc3\u8fdb\u6d88\u5316\u3001\u8425\u517b"} +{"id": "4004151", "video_name": "c1f8d14c-823a-5402-9cde-be65106f3330", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u88d9\u5b50\u7684\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b50\u80cc\u5bf9\u7740\u955c\u5934\u5728\u8857\u4e0a\u8d70\u7740\u3002"} +{"id": "6002057", "video_name": "7b952d2e-ccbc-5e97-83a0-674bdaea3ab2", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u4e3a\u5723\u8bde\u8282\u4e70\u706b\u67f4\u3002"} +{"id": "3005308", "video_name": "7ffb25c7-ed4b-5cf7-927c-5b8f5ce20f98", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u6bb5\u81f3\u5c1130\u79d2\u7684TikTok\u89c6\u9891\uff0c\u5173\u4e8e\u4e00\u5bb6\u751f\u4ea7\u5e26\u6709\u97f3\u9891\u7684\u667a\u80fd\u5bb6\u5177\u7684\u516c\u53f8\uff0c\u9700\u8981\u7528\u897f\u73ed\u7259\u8bed\u5236\u4f5c\u3002"} +{"id": "1006359", "video_name": "7477d4df-cf14-5c49-9cb9-41a2e5f16f4a", "text": "\u60f3\u8c61\u4e00\u4e2a\u672a\u6765\u573a\u666f\uff0c\u5728\u8fd9\u4e2a\u573a\u666f\u91cc\uff0c\u8ba1\u7b97\u673a\u548cDNA\u534f\u4f5c\u3002\u4ee5\u5e7d\u9ed8\u7684\u65b9\u5f0f\u63cf\u8ff0\u5c06\u6570\u5b57\u6570\u636e\u5b58\u50a8\u5728DNA\u4e2d\u7684\u8fc7\u7a0b\u3002"} +{"id": "0004172", "video_name": "047cd22d-7955-5e3e-81e2-2045b49f74e0", "text": "\u4e00\u4e2a\u4eba\u5728\u4e00\u4e2a\u5c0f\u6728\u5de5\u5e97\u7684\u5f62\u5f0f\u4e0a\u7684\u7406\u5ff5\u4e0a\u3002"} +{"id": "8003880", "video_name": "41411c89-92eb-5004-a247-35a4826cc30d", "text": "1980\u5e74\u6709\u5173\u5357\u7f8e\u4ed9\u5973\u7684\u7eaa\u5f55\u7247\u3002\u989c\u8272\u67d4\u548c\uff0c\u98ce\u683c\u590d\u53e4\u3002VHS\u3002"} +{"id": "6003815", "video_name": "1a631d01-3059-5ca5-bd14-f94bae0dc1d1", "text": "\u4e09\u4e2a\u8d85\u7ea7\u6a21\u7279\u4f69\u6234\u73e0\u5b9d\u884c\u8d70\u3002"} +{"id": "1006101", "video_name": "6fe8879d-c7be-5c13-b86a-970b27e260a2", "text": "\u4e0eIT\u670d\u52a1\u548c\u641c\u7d22\u5f15\u64ce\u4f18\u5316\u76f8\u5173\u7684\u52a8\u753b\u3002"} +{"id": "5001200", "video_name": "2e069f31-29ac-5ed0-a06d-08ed7e4ac3ab", "text": "\u4f7f\u7528\u8d85\u80fd\u529b\u7684\u52a8\u753b\u98ce\u683c\u7684\u4e00\u5bf9\u4e00\u53f2\u8bd7\u822c\u7684\u6218\u6597\u573a\u9762\u3002\u6218\u58eb\u4eec\u88ab\u91cd\u51fb\u5e76\u649e\u7a7f\u5c71\u5ce6\u3002\u4ee5\u9f99"} +{"id": "1006865", "video_name": "7d50f49e-ba67-5b22-ad91-397ea39931a4", "text": "\u8389\u8389\u548c\u795e\u5947\u7684\u626b\u5e1a\u89c2\u5bdf\u7740\u79ef\u6781\u7684\u53d8\u5316\u3002"} +{"id": "4004761", "video_name": "a1573481-8526-52b1-91ba-2f1e29e306f4", "text": "\u6211\u62ff\u51fa\u624b\u673a\u7ed9\u5ba4\u53cb\u53d1\u4e86\u4e00\u6761\u5fae\u4fe1\u4fe1\u606f\uff1a\u4eb2\u7231\u7684\uff0c\u522b\u95f9\u4e86\uff0c\u4e0d\u8981\u641e\u597d\u83b1\u575e\u60ca\u609a\u7535\u5f71\u7684\u98ce\u683c"} +{"id": "6004522", "video_name": "6f95e922-c5a6-5af1-9e8f-e616b953062d", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u6f02\u6d6e\u7740\u4e00\u9897\u672a\u6765\u4e3b\u4e49\u73bb\u7483\u7403\uff0c\u5e76\u5728\u5176\u4e2d\u8fd0\u884c\u7740\u8ba1\u7b97\u673a\u4ee3\u7801\u3002"} +{"id": "1005022", "video_name": "5ce7389a-4d2f-5899-aa4b-3d18ab0765e5", "text": "\u4ed6\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u53bb\u4e86\u90ca\u5916\u7684\u6811\u6797\u91cc\u9732\u8425\u3002"} +{"id": "3003385", "video_name": "ab337da3-4adf-5ea8-a253-a77ffdf95739", "text": "\u4e00\u4e2a\u62ff\u7740\u526a\u5200\u5939\u7684\u53cb\u597d\u7ae0\u9c7c\uff0c\u7ed9\u6d77\u6d0b\u751f\u7269\u4eec\u7ec4\u7ec7\u62cd\u7167\uff0c\u5e26\u7740\u5fae\u7b11\u548c\u59ff\u52bf\u3002"} +{"id": "3006042", "video_name": "12435737-381e-54ff-9048-e7491ac17aea", "text": "\u5728\u6d77\u6ee9\u4e0a\u53cc\u81c2\u5f20\u5f00\u7684\u4eba\uff0c\u98ce\u683c\u662f\u5192\u9669\u4e3b\u9898\u3001\u8d85\u9a8c\u4e3b\u4e49\u4e3b\u9898\u548c\u9752\u6625\u6d3b\u529b\u3002"} +{"id": "0006526", "video_name": "2e170ac7-b09e-548b-9ba6-96f77812afc9", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u672a\u6765\u7535\u52a8\u98ce\u8f66\u8fd0\u4f5c\u65b9\u5f0f\u7684\u89c6\u9891\u3002"} +{"id": "1006917", "video_name": "7e746068-d001-5d5d-9e0d-167662e83eef", "text": "\u5723\u8bde\u591c\u8fea\u58eb\u5c3c3D\u5361\u901a\u52a8\u753b\u4e16\u754c"} +{"id": "7004643", "video_name": "06bc5498-482a-5aeb-baa5-9101e93973f4", "text": "\u4e00\u4e2a\u82ac\u5170\u62c9\u666e\u730e\u72ac\uff0c\u7b49\u8ddd 3D\uff0c\u52a8\u6001\u5149\u7167\uff0c\u7cbe\u7ec6\u7eb9\u7406\uff0c\u590f\u65e5\u6d3b\u529b\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0006453", "video_name": "2ccd775c-0167-531b-850d-0c307abe6f37", "text": "\u4e00\u5ea7\u5efa\u5728\u6d77\u5824\u4e0a\uff0c\u53d7\u5230\u6d77\u6d6a\u4fdd\u62a4\u7684\u6d77\u6ee8\u522b\u5885\u3002"} +{"id": "3004073", "video_name": "6b70b3d3-99b7-554c-9f72-ed5879f8faad", "text": "\u300a\u6743\u5229\u7684\u6e38\u620f\u300b\u4e2d\u7684\u9f99\u98de\u7fd4\u5728\u5929\u7a7a\u4e2d\uff0c\u901f\u5ea6\u4e3a3\u3002"} +{"id": "4002676", "video_name": "6d5d7af7-bc84-537f-ac04-c2d6eb812caf", "text": "\u4e00\u5bb6\u5e8a\u57ab\u81ea\u52a8\u5316\u751f\u4ea7\u8f66\u95f4"} +{"id": "4003661", "video_name": "e5e90406-256f-5c70-899b-3d5f71264091", "text": "\u53ef\u7231\u7684\u5c0f\u718a\uff0c\u88ab\u82b1\u548c\u871c\u5305\u56f4\u7740\u3002"} +{"id": "7003829", "video_name": "11b6b0a4-1a31-5e45-bb11-5f59f12902ff", "text": "\u4eba\u7fa4\u6325\u821e\u7740\u65d7\u5e1c\uff0c\u4fef\u89c6\u56fe\u3002\u4fe1\u606f\uff1aSaurabh Yadav\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "8003859", "video_name": "a5181af7-7d27-596f-a79f-da92acf2d4df", "text": "\u4e24\u4e2a\u5927\u5b66\u751f\u8d70\u53bb\u4e0a\u8bfe\u3002\u98ce\u683c\u5e94\u8be5\u50cf\u300a\u73a9\u5177\u603b\u52a8\u5458\u300b\u3002"} +{"id": "4004479", "video_name": "9f113a6c-51b4-5ea1-9a01-ff320f1d7ea2", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u4e54\u00b7\u62dc\u767b\u5728\u4e00\u573a\u8001\u897f\u90e8\u98ce\u683c\u7684\u9152\u5427\u6597\u6bb4\u4e2d\u4e92\u76f8\u4e89\u6597\u3002"} +{"id": "2007487", "video_name": "83a115ee-0b56-5201-8e5b-df33904d59fb", "text": "\u90a3\u672c\u6b7b\u7075\u4e66\u9759\u9759\u5730\u653e\u5728\u4e00\u5f20\u8212\u9002\u53a8\u623f\u7684\u684c\u5b50\u4e0a\u3002"} +{"id": "3004673", "video_name": "eb2adb0f-6ca7-5b0e-a670-df1173146f85", "text": "\u7a7a\u95f4\u4e2d\u900f\u8fc7\u7a97\u6237\u4fef\u89c6\u84dd\u8272\u7684\u5730\u7403\uff0c\u6df1\u9083\u800c\u795e\u79d8\u3002"} +{"id": "3004568", "video_name": "963358c0-21d9-5b7e-8297-622e08f9e1d2", "text": "\u7cd6\u5757\u843d\u5165\u5c0f\u5496\u5561\u676f\u4e2d\u3002"} +{"id": "8002298", "video_name": "20673807-b2a7-5f97-b57d-e95506785a63", "text": "\u9ed1\u767d\u65e0\u58f0\u7535\u5f71\u98ce\u683c\u7684\u6050\u6016\u7535\u5f71\uff0c\u4ee5\u8bfa\u65af\u8d39\u62c9\u56fe\u4e3a\u7279\u8272\u3002"} +{"id": "1003539", "video_name": "41469ef4-c48f-59a4-8dee-9871f304457e", "text": "\u4e9a\u5386\u514b\u65af\u5728\u516c\u56ed\u6216\u8212\u9002\u7684\u5730\u65b9\u53d1\u5446\uff0c\u9762\u5e26\u6e29\u548c\u7684\u5fae\u7b11\uff0c\u51dd\u89c6\u8fdc\u65b9\u3002"} +{"id": "0004794", "video_name": "0f42f37a-5591-508f-abe0-a34bc8970a8b", "text": "\u751f\u6210\u89c6\u9891\uff0c\u5973\u5b69\u6b63\u5728\u9010\u4e2a\u8bb2\u8ff0\u4e00\u4e9b\u4e8b\u60c5\u3002"} +{"id": "7002572", "video_name": "ddf52dda-b1c2-5985-b92d-97006d179aba", "text": "\u5eb7\u7eb3\u00b7\u6c83\u5c14\u987f\u3001\u5409\u52a0\u00b7\u67e5\u5fb7\u00b7\u5361\u5e15\u4e9a\u5df4\u62c9\u3001\u7f57\u4f2f\u7279\u00b7\u5e0c\u6069\u3001\u7f57\u4f2f\u7279\u00b7\u5e0c\u6069"} +{"id": "4003381", "video_name": "b3a06874-59bf-5052-8ed8-96bab046c493", "text": "\u4e00\u53ea\u795e\u5947\u7684\u76d2\u5b50\u6253\u5f00\u5e76\u91ca\u653e\u51fa\u5927\u91cf\u7684\u4eba\u5de5\u667a\u80fd\u56fe\u6807\u3002"} +{"id": "4002221", "video_name": "ebc46914-b032-5d45-9a22-e7025dce3ed4", "text": "\u9ed1\u8272\u5c4f\u5e55\u4e0a\u98de\u5feb\u5730\u8f93\u5165\u7eff\u8272\u4ee3\u7801\u3002"} +{"id": "1004914", "video_name": "5ae7bead-2e96-54c0-a87f-6c79b8279a02", "text": "\u73b0\u5b9e\u7684\u89c6\u9891\u4ecb\u7ecd\u4e86\u80ce\u513f\u5728\u53d1\u80b2\u8fc7\u7a0b\u4e2d\u5728\u5b50\u5bab\u4e2d\u8bde\u751f\u7684\u8fc7\u7a0b\u3002"} +{"id": "0005626", "video_name": "1e54a2a3-c21b-5ce5-ba1a-ce532f4b7fd3", "text": "\u7c73\u5947\u8001\u9f20\u548c\u4ed6\u8c03\u76ae\u7684\u732b\u54aa\u670b\u53cb\u8d39\u52a0\u7f57\uff0c\u8e0f\u4e0a\u4e86\u4e00\u573a\u5947\u5e7b\u7684\u5192\u9669\uff0c\u7a7f\u8d8a\u4ed6\u4eec"} +{"id": "1006926", "video_name": "7ea1b0c6-7ba7-5983-9179-055753a1e452", "text": "\u7eff\u5c4f\u80cc\u666f\u7684\u6f2b\u753b\u6c14\u6ce1"} +{"id": "1003837", "video_name": "46c88890-cee0-56d5-ba0d-5fc32e3e19d4", "text": "\u65c5\u884c\u8005\u524d\u5f80\u58ee\u7f8e\u5927\u81ea\u7136\u7684\u65c5\u9014\u4e2d\u8fd0\u52a8\u8eab\u4f53\uff0c\u611f\u53d7\u5230\u5f3a\u70c8\u7684\u81ea\u7136\u6c14\u606f\u3002"} +{"id": "6002104", "video_name": "45859078-0430-5234-895b-893b4bcee37b", "text": "\u6469\u6839\u00b7\u6c83\u4f26\u4e0e\u5a01\u58eb\u5fcc\u54c1\u724c\u4e00\u8d77\u6f14\u594f\u5409\u4ed6\uff0c4K\u3001\u7535\u5f71\u7ea7\u3001\u8d85\u5199\u5b9e\u3002"} +{"id": "0003204", "video_name": "3928ce58-f8c2-59fe-893c-0e0a05ba11a5", "text": "\u7956\u7236\u572890\u5e74\u4ee3\u5370\u5ea6\u90ae\u5c40\u7684\u697c\u68af\u4e0a\u5750\u7740\uff0c\u5468\u56f4\u7a0d\u5fae\u6709\u4e9b\u62e5\u6324\uff0c\u80cc\u666f\u662f\u65e9\u6668\uff0c\u9644\u8fd1\u6709"} +{"id": "1003443", "video_name": "3fd9e3f6-1cb7-577b-8317-d282e962bd51", "text": "\u5728\u957f\u6c5f\u5357\u5cb8\u7684\u4e00\u4e2a\u5c0f\u9547\uff0c\u6625\u5929\u7684\u4e0b\u5348\uff0c\u5929\u7a7a\u6e5b\u84dd\uff0c\u5fae\u98ce\u8f7b\u62c2\uff0c\u5e26\u7740\u6de1\u6de1\u82b1\u9999\u3002\u4e00\u6761"} +{"id": "4004462", "video_name": "7c79f965-21bf-5928-ac5b-9daeb809dbf6", "text": "\u725b\u6d25\u90e1\u7684\u65e0\u4eba\u673a\u62cd\u6444\u753b\u9762\u3002"} +{"id": "0005463", "video_name": "1b34ce2e-22c6-5510-b82f-ed5288332b5d", "text": "\u7528\u97e6\u6069\u00b7\u5df4\u6d1b\u97e6\u3001\u53e4\u65af\u5854\u592b\u00b7\u83ab\u7f57\u3001\u5f7c\u5f97\u00b7\u83ab\u5c14\u5df4\u8d6b\u3001\u5e03\u5e0c\u8036\u3001"} +{"id": "5001680", "video_name": "14c5f985-d961-52d1-a8e2-f7c5af9589ba", "text": "\u5973\u5b69\u5728\u6210\u5806\u8d27\u7269\u5468\u56f4\u8d70\u52a8\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u903c\u771f\uff0c2K\u3002"} +{"id": "3004361", "video_name": "a6a66ae7-7c3f-5252-b271-48e58ea98429", "text": "\u4ed9\u5973\u4eec\u5728\u7a7a\u4e2d\u805a\u96c6\u4e86\u4e0d\u540c\u7684\u5149\u8292\uff0c\u4ece\u5979\u4eec\u7684\u624b\u4e2d\u53d1\u51fa\u3002"} +{"id": "7002663", "video_name": "97a6f3df-0562-5807-9833-86a3a6e7f149", "text": "\u5973\u5b69\u7728\u773c\u775b\uff0c\u82b1\u513f\u6f02\u6d6e\u3002"} +{"id": "7003170", "video_name": "62982c39-1de2-5b45-aab4-ea4d9129d0b8", "text": "\u6885\u897f\u6b63\u5728\u4e0e\u79d1\u6bd4\u00b7\u5e03\u83b1\u6069\u7279\u6bd4\u8d5b\u8d5b\u8f66\u3002"} +{"id": "1004923", "video_name": "5b051034-9df1-5369-852f-26777b2d0f59", "text": "\u4f7f\u7528\u4fe1\u7528\u5361\u5728\u7ebf\u8d2d\u7269\u7684\u5973\u6027"} +{"id": "0003362", "video_name": "3c3f4734-9997-51ed-b30b-526340ba2c4a", "text": "\u4e00\u679a\u7528\u4f5c\u4e2a\u4eba\u8d44\u6599\u56fe\u7247\u6807\u5fd7\u7684\u94f6\u8272\u786c\u5e01"} +{"id": "7002335", "video_name": "d524630c-ea22-57fc-95fb-32aeebd28a5f", "text": "\u4e00\u4e2a\u5973\u4eba\u5145\u6ee1\u6d3b\u529b\u5730\u8df3\u7740\u6851\u5df4\uff0c\u8ddf\u968f\u5979\u7684\u821e\u8005\u4eec\u3002"} +{"id": "8002016", "video_name": "f1eb3af8-2e95-5adc-a07d-da1e16f007e1", "text": "CRJ\u5ba2\u673a\u5728\u673a\u573a\u7740\u9646\u3002"} +{"id": "2006509", "video_name": "210bfeca-ad86-528a-868d-7ae60dda4074", "text": "\u91ce\u5154\u548c\u4e4c\u9f9f\u805a\u96c6\u5728\u6811\u6797\u4e4b\u95f4\u3002"} +{"id": "3006439", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "\u91d1\u76cf\u82b1\u82b1\u56ed\u91cc\u5230\u5904\u90fd\u662f\u82b1\u3002"} +{"id": "7004347", "video_name": "50bd774e-9cf3-54ff-8d70-10b128f1dfaf", "text": "\u521b\u9020\u51fa\u4e00\u4e2a\u5e26\u6709\u9ed1\u6697\u548c\u53ef\u6015\u6c1b\u56f4\u7684\u9aa8\u5934\u6559\u5802\u7684\u5f62\u8c61\u3002"} +{"id": "6003610", "video_name": "25c86bb9-15f8-5aed-a2c1-eb5932749a27", "text": "\u5f53\u4ed6\u4eec\u6765\u5230\u8036\u8def\u6492\u51b7\u65f6\uff0c\u5e0c\u5f8b\u5927\u738b\u542c\u8bf4\u4e86\u8fd9\u4ef6\u4e8b\uff0c\u5c31\u53ec\u96c6\u667a\u8005\u6765\u8be2\u95ee\u4ed6\u4eec\uff0c\u8bf4\uff1a\u201c\u4f60\u4eec\u4e0b\u5230\u4f2f\u5229"} +{"id": "2007871", "video_name": "2cb9270f-e33d-5dc6-ab65-837594bf0c40", "text": "\u666f\u89c2 and bustling crowds.\n\n\u8fc7\u6e21\u5e26\u6211\u4eec\u4ece\u53e4\u8001\u7684\u91d1\u5b57\u5854\u5230\u4e00\u5f20\u672a\u6765\u7ebd\u7ea6\u5e02\u7684\u5e7f\u89d2\u7167\u7247\u3002\u57ce\u5e02\u666f\u89c2\u662f\u5148\u8fdb\u6280\u672f\u7684"} +{"id": "2006688", "video_name": "f07f1b06-08dc-5ddd-b70e-f39e58b9d0e4", "text": "\u4e2d\u4e16\u7eaa\u65f6\u671f\u7684\u57ce\u9547\u4e2d\u5fc3\uff0c\u6709\u4eba\u4eec\u5728\u884c\u8d70\u3002"} +{"id": "1003199", "video_name": "3ae19a67-80fa-52f1-911c-dba1f8e1bb6d", "text": "\u4e00\u540d\u5973\u6027\u5728\u706b\u661f\u4e0a\u505a\u745c\u4f3d\u3002"} +{"id": "7004348", "video_name": "d2a70759-5445-57db-a679-30c5bac4b612", "text": "\u4e00\u4e2a\u5b89\u5353\u4ece\u6570\u636e\u8b66\u5bdf\u90a3\u91cc\u9003\u4e86\u51fa\u6765\u3002"} +{"id": "4004135", "video_name": "b70caef8-b3dd-59a1-b1cb-c6dfe0817099", "text": "\u767d\u53d1\u7684\u52a8\u6f2b\u7537\u5b50\uff0c\u7a7f\u7740\u767d\u886c\u886b\u548c\u91d1\u94fe\u5b50\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5448\u73b0\u7684\u5361\u901a\u52a8\u6f2b\u4eba"} +{"id": "6003634", "video_name": "0b7d5f8e-d86e-5093-9450-b2995ff31b33", "text": "\u52a0\u5165\u4e24\u676f\u725b\u5976\uff0c\u56db\u6c64\u5319\u8702\u871c\u548c\u4e00\u4e9b\u51b0\u5757\u5230\u6405\u62cc\u673a\u4e2d\u3002 \n\nSource sentence: The restaurant is located on the corner of Main"} +{"id": "3003101", "video_name": "f2d2ca89-d509-578d-9ad9-cbecaf54f643", "text": "\u6770\u514b\u00b7\u9a6c\uff0c\u963f\u91cc\u5df4\u5df4\u7684\u521b\u59cb\u4eba\uff0c\u5728\u65e5\u672c\u4eab\u53d7\u751f\u6d3b\u3002"} +{"id": "8003007", "video_name": "3b3a12dd-17a8-5b17-89dc-4c91281014f7", "text": "66\u4e2a\u7075\u9b42\u751f\u7269\u7f16\u7ec7\u7740\u4ed6\u4eec\u7684\u9b54\u6cd5\u3002"} +{"id": "1004485", "video_name": "531fb2a5-759b-5e29-902e-5754a1f1d130", "text": "\u4e00\u4e2a\u8d85\u5199\u5b9e\u7684\u73ab\u7470\uff0c\u771f\u5b9e\u7684\u5149\u7ebf\uff0c\u6709\u9732\u73e0\uff0c\u65cb\u8f6c\u7684\u6444\u50cf\u673a\u8fd0\u52a8\u3002"} +{"id": "6002017", "video_name": "fb03eb45-bc0f-5ea4-a0ce-15243dc4baeb", "text": "\u7528\u6d77\u6ee9\u65e5\u51fa\u7684\u80cc\u666f\u62cd\u6444 Cik Epal \u5236\u4f5c\u7684 Makaji \u89c6\u9891\u3002"} +{"id": "6003874", "video_name": "bbb7b60d-afdb-5579-89ef-a57b444f193e", "text": "\u623f\u95f4\u91cc\u7684\u5973\u4eba\u9003\u79bb\u67d0\u4eba\u3002"} +{"id": "3006330", "video_name": "22f9f197-2612-555e-95cf-09a53b0ca6eb", "text": "\u6c38\u6052 (\u73b0\u4ee3\u5b57\u4f53) \u4fe1\u606f\uff1a\u592a\u7a7a\u4e2d\u7684\u884c\u661f\u3002"} +{"id": "4002222", "video_name": "fe297f44-cf7a-5538-866a-346e82309183", "text": "\u53cd\u4e4c\u6258\u90a6\uff0c\u7537\u4eba\u671b\u7740\u57ce\u5e02\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u591c\u665a\u3002"} +{"id": "0005544", "video_name": "1c92ab43-d93f-59a1-8a96-d739889d196c", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u5b50\u7a7f\u7740\u4f20\u7edf\u76d4\u7532\u5728\u6218\u573a\u4e0a\u6218\u6597\u3002"} +{"id": "4003973", "video_name": "7bc7c195-e2b3-52e6-bb43-26f6cf3b95b6", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6c34\u4e0b\u73ca\u745a\u7901\uff0c\u5230\u5904\u90fd\u662f\u4e00\u7fa4\u7fa4\u7684\u9c7c\u3002 \n\nSource sentence: The sun was setting behind the mountains, casting a warm orange glow across the valley."} +{"id": "3005329", "video_name": "de3229bf-b312-5a81-ad75-12454b6fadff", "text": "\u5e02\u573a\u8425\u9500\u56fe\u6807\uff0c\u5355\u4e00\u6587\u672c\u5305\u542b\u5e02\u573a\u8425\u9500\u539f\u5219\u3002"} +{"id": "1006610", "video_name": "792cb274-6444-5d32-ae77-7170677f6747", "text": "\u6050\u6016\u7684\u5de8\u4eba\u88ab\u6253\u8d25\u4e86\u3002"} +{"id": "6003162", "video_name": "fed4c616-aef8-510d-a233-eb8d786893d5", "text": "\u8bbe\u8ba1\u4e00\u6b3e\u9ad8\u7aef\u7535\u5b50\u6320\u75d2\u5668\u3002"} +{"id": "1006638", "video_name": "79ae10c0-60a6-5227-8964-769f2b4098d2", "text": "\u6b27\u7f57\u5df4\u884c\u661f\u4e0a\u7a7a\u7684\u98de\u884c\u663e\u793a\u51fa\u5f02\u5e38\u7684\u51b0\u5f62\u6210\uff0c\u4ece\u822a\u7a7a\u89c6\u89d2\u5feb\u901f\u98de\u8fc7\u3002"} +{"id": "2004697", "video_name": "8611dfb0-f6dc-5c98-bd36-fd95b83b9e09", "text": "\u4e00\u4f4d\u5f3a\u5927\u7684\u4e2d\u5e74\u56fd\u738b\u6b63\u5750\u5728\u4ed6\u7684\u5b9d\u5ea7\u4e0a\uff0c\u65f6\u95f4\u662f9:16\u3002"} +{"id": "7003782", "video_name": "0c13e479-c7fd-5aab-a1e5-163e043ca239", "text": "\u5154\u5b50\u8df3\u821e\u50cf\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u4e00\u6837\u4f11\u95f2\u8df3\u821e\u3002"} +{"id": "6004109", "video_name": "68eb65e6-aaa4-5ff4-b00c-cf1ddf854d55", "text": "\u4e00\u53ea\u72d7\u5728\u68ee\u6797\u4e2d\u5411\u7740\u4e00\u4e2a\u9985\u997c\u5954\u8dd1\u3002"} +{"id": "0003624", "video_name": "40b81363-d00b-5aaf-9946-8b3eed76855f", "text": "\u8138\u6162\u6162\u5730\u79fb\u52a8\uff0c\u773c\u775b\u95ea\u70c1\uff0c\u53ea\u6709\u5934\u53d1\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "1006089", "video_name": "6f9c157d-7372-5eca-90ef-a1b07c2fcc99", "text": "\u6df7\u5408\u591a\u5f69\u7684\u89c6\u9891\u5723\u8bde\u8001\u4eba\u548c\u4f8f\u5112\u5728\u5929\u7a7a\u4e2d\u7684\u96ea\u6a47\u4e0a\u4e0e\u9a6f\u9e7f\u4e00\u8d77\u98de\u884c\uff0c\u6570\u5b57\u827a\u672f\uff0c"} +{"id": "6002802", "video_name": "f2af22af-ee5d-5170-8517-8176d07f1985", "text": "\u5723\u8bde\u8001\u4eba\u548c\u8036\u7a23\u4e0e\u9c81\u9053\u592b\u4e00\u8d77\u4e58\u5750\u96ea\u6a47\u3002"} +{"id": "4003046", "video_name": "97990e18-4537-5e81-a8d6-7d02399ecc3b", "text": "\u52a8\u7269\u5728\u52a8\u7269\u56ed\u91cc\u5de5\u4f5c\u548c\u51fa\u552e\u7684\u5e02\u573a\u3002\u8001\u5f0fVHS\u7535\u5f71\u3002\u827a\u672f\u7167\u660e\u300260\u5e74\u4ee3\u3002\u7535\u5f71\u7ecf\u5178\u3002"} +{"id": "0005975", "video_name": "2443f2fe-8d08-5c05-a797-2a4f6be03776", "text": "\u628a\u732b\u6253\u626e\u6210\u5723\u8bde\u8001\u4eba\u7684\u6837\u5b50\uff0c\u8ba9\u5b83\u4eec\u55b5\u55b5\u53eb\u3002 \n\nSource sentence: I am learning Chinese because I want to communicate with more people. \n\n\u6211"} +{"id": "2005870", "video_name": "2787a715-94ca-5076-b8d3-37b65fe09089", "text": "\u675c\u9c81\u5179\u5987\u5973\u548c\u5b69\u5b50\u5728\u6c99\u6f20\u4e2d\u88ab\u56f0\u3002"} +{"id": "1006143", "video_name": "708db71f-8df4-56ae-9622-b018acb311cc", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u4e9a\u6d32\u5973\u5b69\u6234\u7740\u900f\u660e\u7684\u65b9\u5f62\u773c\u955c\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u9ed1\u76f4\u53d1\uff0c\u74dc\u5b50\u8138\uff0c"} +{"id": "8001665", "video_name": "96ff0085-a062-5a79-906b-a34072c869ba", "text": "\u5236\u4f5c4K\u771f\u5b9e\u7684\u5730\u7403\u53d8\u6697\u89c6\u9891\u3002"} +{"id": "1004611", "video_name": "55ce19dc-cff0-51d9-b80f-c3c39d3750fb", "text": "\u6c99\u6f20\u4e2d\u7684\u58eb\u5175\uff0c\u706b\u707e\uff0c\u788e\u7247\uff0c\u7c92\u5b50\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6002477", "video_name": "b683ebcd-5c25-50b2-bc1d-9fe073aadf68", "text": "\u4e00\u540d\u6301\u7740\u7ea2\u8272\u5149\u5251\u7684\u897f\u65af\u3002"} +{"id": "2006909", "video_name": "c6dd0965-e9e6-5cee-a16e-ab237f205168", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u80cc\u8bf5\u5b57\u6bcd\u8868\u3002"} +{"id": "2004080", "video_name": "902adf19-504a-540f-a47d-dd60d8a15f5a", "text": "\u4e00\u53ea\u72d7\u5728\u8857\u4e2d\u95f4\u8df3\u821e\u3002"} +{"id": "5001834", "video_name": "46f7ab43-ef23-54c0-a2ce-a8d380183685", "text": "\u62cd\u6444\u4e00\u4e2a\u6e29\u99a8\u7684\u573a\u666f\uff0cOliver\u5728Bella\u7684\u5de2\u7a74\u91cc\u63a5\u8fd1\u5979\uff0c\u7ed9\u4e88\u9f13\u52b1\u548c\u652f\u6301\u7684\u8bdd\u8bed\u3002"} +{"id": "4002632", "video_name": "838f4464-fa99-5c50-9e78-af6e6e974c7f", "text": "\u7a7f\u7740\u7ea2\u8272\u6c99\u4e3d\u7684\u5973\u5b69\u7ad9\u5728\u8d70\u5eca\u540e\u9762\uff0c\u4e24\u4e2a\u7537\u5b69\u8eab\u524d\u9732\u51fa\u5bb3\u6015\u7684\u8868\u60c5\u3002"} +{"id": "3003099", "video_name": "992ecd17-ed36-5d46-9001-f54cdcff4ccf", "text": "\u6770\u514b\u6b63\u5728\u9493\u9c7c\uff0c\u6355\u83b7\u4e86\u9cb8\u9c7c\u3002"} +{"id": "2005479", "video_name": "607a060b-d5be-5681-87b5-5eea7eac408a", "text": "\u4e00\u500b\u56e0\u5fc3\u81df\u75c5\u767c\u800c\u6b7b\u4ea1\u7684\u4eba\u3002"} +{"id": "1003043", "video_name": "37e92f0d-7c07-5128-9554-17028e415b17", "text": "\u5723\u4f2f\u7eb3\u5fb7\u72ac\u5728\u96ea\u5c71\u4e2d\u8425\u6551\u767b\u5c71\u8005\u3002"} +{"id": "0006972", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "\u793e\u4ea4\u5a92\u4f53\u4e0a\u5206\u4eab\u5361\u901a\u3002"} +{"id": "8003144", "video_name": "dcb66cdb-9857-5b32-92ea-c10d6b04f26b", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u800c\u522e\u98ce\u7684\u591c\u665a\uff0c\u82b1\u6728\u5170\u653b\u51fb\u4e86\u5308\u5974\u4eba\uff0c\u5e76\u83b7\u5f97\u4e86\u538b\u5012\u6027\u7684\u80dc\u5229\u3002"} +{"id": "3004964", "video_name": "42c1a12d-f2d4-5f35-a66b-95ade643ba33", "text": "\u4ed3\u5e93\u91cc\u6709\u4e00\u4e2a\u6210\u5e74\u4eba\u7ad9\u5728\u53c9\u8f66\u4e0a\u3002"} +{"id": "2006725", "video_name": "8af172c9-1865-538a-b55f-9cba11f70d04", "text": "\u7ea2\u5f71\u843d\u5728\u8fea\u65af\u79d1\u7403\u4e0a\u3002"} +{"id": "3004075", "video_name": "cb82ec1f-049d-5e4a-b659-48cd10466fca", "text": "\u4e00\u4e2a\u5973\u5b69\u6234\u7740\u767d\u8272\u548c\u7c89\u8272\u7684\u865a\u62df\u73b0\u5b9e\u773c\u955c\u7ad9\u5728\u4e00\u4e2a\u8212\u9002\u7684\u623f\u95f4\u91cc\uff0c\u623f\u95f4\u662f\u68d5\u8272\u7684\uff0c\u91cc\u9762"} +{"id": "6004748", "video_name": "cdb74084-bcc9-53d4-88d7-80be743efd7e", "text": "1947\u5e74\u9ed1\u767d\u7167\u7247\u4e2d\uff0c\u4e00\u4e2a\u65b0\u751f\u5a74\u513f\u8eba\u5728\u4ed6\u7236\u4eb2\u7684\u624b\u4e2d\u3002"} +{"id": "6004400", "video_name": "95b95a22-be31-52af-8869-99ebe379b33d", "text": "\u547d\u8fd0\u4e4b\u8f6e\uff1a\u53d8\u9769\u3001\u5faa\u73af\u3001\u56e0\u679c\u62a5\u5e94\u3002"} +{"id": "3003402", "video_name": "357830e3-6130-5737-b823-6c4878b1b778", "text": "\u6e05\u6d17\u6211\uff0c\u6563\u843d\u8235\u548c\u6293\u94a9\u3002"} +{"id": "6004736", "video_name": "9c55f24d-c517-5fd5-8eae-57f7da356d76", "text": "\u4e00\u4e2a\u5973\u5b69\u88ab\u96ea\u666f\u6240\u5305\u56f4\uff0c\u98ce\u5439\u4e71\u4e86\u5979\u7684\u5934\u53d1\uff0c\u955c\u5934\u7f13\u7f13\u62c9\u8fd1\u3002"} +{"id": "5001443", "video_name": "3641eb1e-4216-5b94-adaf-36e8a9a89e4e", "text": "\u592a\u9633\u5728\u4e00\u5ea7\u98ce\u666f\u5982\u753b\u7684\u5c0f\u9547\u4e0a\u5347\u8d77\uff0c\u5411\u8db3\u7403\u573a\u6295\u5c04\u51fa\u6e29\u6696\u7684\u5149\u8292\uff0c\u5c31\u50cf8K\u9ad8\u6e05\u52a8\u6f2b\u4e00"} +{"id": "1006465", "video_name": "76542cf5-e9a3-5be4-af52-bb1a48a11071", "text": "\u8759\u8760\u4fa0\u548c\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u4e2d\u7684\u4e39\u59ae\u8389\u4e1d\u8df3\u821e\u3002"} +{"id": "3006883", "video_name": "8be0b34f-dc7a-5ccf-8549-18c3ce85dd7b", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u7684\u5916\u661f\u5973\u5b69\u8096\u50cf\uff0c\u7531Stephen Bliss\u521b\u4f5c\uff0c\u91c7\u7528\u865a\u5e7b\u5f15\u64ce\uff0cFantasy\u827a\u672f\u5bb6Greg Rutkowski\u3001Loish\u3001Rhads"} +{"id": "4002521", "video_name": "7009037a-ef61-55bf-9524-84b48ca5870e", "text": "\u9713\u8679\u84dd\u8272\u548c\u7c89\u8272\u7bad\u5934\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "1005612", "video_name": "672c8d17-7b66-5e83-9674-342598c5f47b", "text": "\u591c\u7a7a\u3001\u5c71\u3001\u6811\u4e0b\u7684\u77f3\u5934\u5b88\u536b\u3001\u84dd\u82b1\u7530\u91ce\uff0c\u98ce\u5439\u6811\u53f6\uff0c\u753b\u8d281080\uff0cgs 190\uff0c\u52a8\u753b0"} +{"id": "5001862", "video_name": "8a1a7140-6181-50fa-824c-8f28891bd994", "text": "\u57282021\u5e74\u6e38\u89c8\u6d4e\u5dde\u5c9b\uff0c\u4e0e\u5df2\u6545\u7684\u7236\u6bcd\u4e00\u8d77\u6b23\u8d4f\u666f\u8272\u3002\u4f60\u7684\u7236\u6bcd\u8ddf\u4f60\u5206\u4eab\u4ed6\u4eec\u9752\u6625\u65f6\u671f\u7684"} +{"id": "8003204", "video_name": "9f363dfe-6041-51e0-bfab-e5a4dd5f055e", "text": "\u5b66\u4e60\u4e2d\u7684\u4e2d\u56fd\u5c0f\u5b66\u4e94\u5e74\u7ea7\u5b66\u751f\u4e00\u8d77\u505a\u4f5c\u4e1a\uff0c\u767d\u8272\u6d45\u7c73\u8272\u80cc\u666f\uff0c\u771f\u5b9e\u6e29\u99a8\u7684\u6559\u5ba4\u7167\u7247\u3002"} +{"id": "8001240", "video_name": "a079163a-e247-5cb8-b2b6-e6f8fe30d511", "text": "\u661f\u7403\u5927\u6218\u7684\u7a7a\u4e2d\u72d7\u6597\uff0c\u91c7\u7528\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "2006910", "video_name": "73dd1a62-30dc-5cbb-9df9-4aa3d91f689c", "text": "\u9057\u7559\u7684\u53cb\u8c0a\uff1a\u8001\u5e74\u8389\u8389\u548c\u827e\u739b\u5750\u5728\u540c\u4e00\u68f5\u6a31\u82b1\u6811\u4e0b\u7684\u957f\u6905\u4e0a\u3002\u6751\u91cc\u7684\u5b69"} +{"id": "6002537", "video_name": "e76706fa-95a5-5f05-88cd-60cd3003e5c8", "text": "scattered everywhere. \n\n\u4ed6\u4eec\u7684\u623f\u5b50\u603b\u662f\u4e71\u4e03\u516b\u7cdf\u7684\uff0c\u8863\u670d\u968f\u5904\u4e71\u653e\uff0c\u7897\u789f\u672a\u6d17\uff0c\u7eb8\u5f20\u5230\u5904\u6563"} +{"id": "7004457", "video_name": "8597c649-82db-5509-8cc0-a4268d44d895", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u4e24\u4e2a\u5b69\u5b50Raju\u548cSeema\u51fa\u53bb\u73a9\u3002\u4ed6\u4eec\u5230\u4e86\u4e00\u68f5\u5927\u6811\u4e0b\uff0c\u5f00\u59cb"} +{"id": "2006736", "video_name": "c9ade6b8-f59c-5782-bde0-b0f41b7a4953", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u8868\u73b0\u51fa\u592a\u7a7a\u725b\u4ed4\u4e30\u5bcc\u7684\u5e7b\u89c9\u7279\u5f81\u3002\u8272\u5f69\u9c9c\u8273\uff0c\u80cc\u666f\u52a8\u6001\u3002"} +{"id": "4002540", "video_name": "25726eef-6a5e-52d0-b70c-43e8924e9c54", "text": "\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u4eba\u9a6c\u8eaf\u5e72\u5f62\u8c61\uff0c\u6df1\u68ee\u6797\u7eff\u8272\u548c\u571f\u8910\u8272\u7684\u5916\u8863\u3002\u5979\u7684\u9b03\u6bdb\u88c5"} +{"id": "2003645", "video_name": "94842f2d-b69e-5922-bcf5-7592ff1c5152", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u4f4f\u7740\u4e00\u4e2a\u5e74\u8f7b\u4eba\u53ebRamesh\u3002"} +{"id": "1004769", "video_name": "583160f0-58f9-5097-a5e7-1eff09053294", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u7528\u624b\u673a\u6253\u7535\u8bdd\u3002"} +{"id": "2004094", "video_name": "a3f1103a-76c9-50c0-921e-e1d88ab3ca9c", "text": "\u5317\u6781\u5149\u5728\u591c\u7a7a\u4e2d\u8df3\u821e\u3002"} +{"id": "2003322", "video_name": "0bf4f554-aea0-5ee5-b490-a3c65fc35a66", "text": "\u57281970\u5e74\u88ab\u5e9f\u5f03\u7684\u8001\u5893\u5730\u91cc\uff0c\u6d3b\u6b7b\u4eba\u5728\u591c\u91cc\u884c\u8d70\u3002"} +{"id": "0006225", "video_name": "28b5db43-8a2f-5a39-b4e3-7e4bd0a17b7e", "text": "\u8611\u83c7\u4e91\u4ece\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u5347\u8d77\u3002"} +{"id": "1004952", "video_name": "5b91d23d-f51a-5cb1-b0ba-d7bba9e520d8", "text": "\u4e00\u53ea\u7a7f\u7740\u62ab\u8428\u4e07\u5723\u8282\u670d\u88c5\u7684\u732b\u5728\u7ec7\u5a74\u513f\u62d6\u978b\u3002"} +{"id": "8003082", "video_name": "50180c73-d722-5356-af9f-80e0318eda42", "text": "\u4e00\u4e2a19\u5c81\u7684\u65e5\u672c\u5973\u5b69\uff0c\u6234\u7740\u77ed\u53d1\uff0c\u9a91\u7740\u4e00\u8f86\u9ec4\u8272\u7684Vespa\u9ad8\u901f\u884c\u9a76\u3002\u80cc\u666f\u6709\u4e00\u4e2a\u5de8\u5927\u7684"} +{"id": "4004282", "video_name": "072baa79-fe86-5bc1-abf3-e4b481e5ef5b", "text": "\u70ed\u5e26\u5c9b\u5c7f\uff0c\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "2007038", "video_name": "ca72741a-2568-5a44-9dab-987780dfc93b", "text": "20\u4e16\u7eaa\u521d\uff0c\u6c49\u5821\u5305\u901a\u5e38\u642d\u914d\u6d0b\u8471\u548c\u5976\u916a\u4e0a\u684c\u3002"} +{"id": "5001122", "video_name": "a4420662-118e-5238-a48f-7a8d2ed4fabb", "text": "\u7537\u4eba\u5728\u591c\u665a\u7a7f\u8fc7\u4e00\u4e2a\u5de8\u5927\u7684\u8ff7\u5bab\uff0c\u800c\u4e0a\u65b9\u7684\u773c\u775b\u6ce8\u89c6\u7740\u4ed6\u3002"} +{"id": "7004691", "video_name": "ca888a4d-1551-56de-a6fc-40e84118d646", "text": "\u4e00\u4e2a\u667e\u8863\u67b6\u7684\u60f3\u6cd5"} +{"id": "6004878", "video_name": "b1141d59-5ff1-5459-a050-db0f1747d1fb", "text": "8\u4e2a\u5766\u514b\u5728\u6c99\u6f20\u4e2d\u6467\u6bc1\u4e86\u7889\u5821\u3002"} +{"id": "2007326", "video_name": "3195ec74-77b7-515f-ad1c-064ad619a855", "text": "1940\u5e74\uff0c\u514b\u82cf\u9c81\u4ece\u66b4\u98ce\u96e8\u7684\u6d77\u6d0b\u4e2d\u5347\u8d77\u3002"} +{"id": "0004912", "video_name": "1155dcbb-b34c-5506-8afd-89f543ea58ff", "text": "\u5973\u4eba\u4ece\u80cc\u540e\u5728Tinder\u4e0a\u6d4f\u89c8\u3002"} +{"id": "2004802", "video_name": "d9c311a5-14d6-5948-abbf-23d0b13c7716", "text": "\u623f\u95f4\u91cc\u7684\u5f00\u7740\u7684\u7a97\u6237\u4e2d\u98ce\u5439\u8fc7\u3002\u7a97\u8fb9\u7684\u767d\u8272\u8584\u7eb1\u5728\u98d8\u52a8\u3002\u65e9\u6668\u7684\u9633\u5149\u7167\u4eae\u4e86"} +{"id": "8001697", "video_name": "0d0b0d0b-820c-5242-94c1-9e6af3370b42", "text": "\u5c0f\u59ae\u5a1c\u53c2\u52a0\u4e86\u4e00\u4e2a\u6c34\u679c\u821e\u8e48\u8bfe\u7a0b\uff0c\u4e0e\u6c34\u679c\u7cbe\u7075\u4e00\u8d77\u8df3\u7740\u751f\u52a8\u7684\u97f3\u4e50\u3002\u8fd9\u4e2a\u53d7\u8fea\u58eb"} +{"id": "3005887", "video_name": "761bd1e6-0131-5018-b9ec-83552d57f5e4", "text": "\u76ae\u5361\u4e18\u6247\u6253\u5361\u6bd4\u9f99\u7684\u52a8\u6001\u753b\u9762"} +{"id": "2004600", "video_name": "8385b961-3fb8-5303-9658-276af03fc03e", "text": "\u5e7f\u9614\u7684\u5927\u897f\u6d0b\u5728\u6c79\u6d8c\u7684\u9634\u5929\u4e0b\u5f00\u573a\u3002\u6d77\u9762\u4e0d\u5b89\uff0c\u6ce2\u6d6a\u62cd\u6253\u7740\u82f1\u6cd5\u6218\u8230\u3002"} +{"id": "0004099", "video_name": "03342a88-4b0e-5ec4-922d-c2faff0e87ff", "text": "\u6709\u4e00\u4e2a\u5bfb\u6c42\u5192\u9669\u768410\u5c81\u7537\u5b69\u7ea6\u7ff0\u5c45\u4f4f\u5728\u90a3\u91cc\u3002"} +{"id": "1004329", "video_name": "4ff3219b-c092-52fe-9d23-6e5f1ecf2719", "text": "\u6162\u52a8\u4f5c\u653e\u5927\u57ce\u5e02\uff0c120\u5e27\u6bcf\u79d2\uff0c\u9ad8\u8d28\u91cf\u56fe\u50cfU1667577330.jpg\u3002"} +{"id": "4002123", "video_name": "3b95ecbb-27cf-5d32-a1c8-58fb457b7dc8", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u5973\u5b69\u5750\u5728\u684c\u5b50\u524d\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u6253\u54c8\u6b20\u5e76\u611f\u5230\u65e0\u804a\uff0c4K\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "8001040", "video_name": "e282dae6-33fd-5a5a-88eb-987e586305c7", "text": "\u5348\u591c\u725b\u4ed4\u7a7f\u7740\u9ed1\u8272\uff0c\u5728\u6ca1\u6709\u5730\u56fe\u7684\u60c5\u51b5\u4e0b\u9605\u8bfb\u9ed1\u6697\u7684\u9053\u8def\uff0c\u4ee5\u5965\u6258\u00b7\u8fea\u514b\u65af\u98ce\u683c\u91ca\u653e\u7535"} +{"id": "8002448", "video_name": "f1b0bbb1-31fb-5e01-962d-f8f3fdf58502", "text": "\u57ce\u5821\u76d1\u72f1\u4e2d\u7684\u7537\u4eba\u6b63\u5728\u505a\u68a6\uff0c\u9ed1\u591c\uff0c\u6708\u5149\u3002"} +{"id": "2006521", "video_name": "8ec1c2a3-f36a-50a5-a27b-4737b0df2102", "text": "\u4e24\u4e2a\u7537\u4eba\u548c\u4e00\u53ea\u72d7\u7ad9\u5728\u6cb3\u8fb9\uff0c\u6b23\u8d4f\u65e5\u843d\u7f8e\u666f\u3002"} +{"id": "1006502", "video_name": "77031106-168b-5f3d-9131-b8ec21c16ca4", "text": "\u5361\u5c14\u00b7\u7ea6\u7ff0\u900a\u6765\u81ea\u683c\u7f57\u592b\u8857\uff0c\u62a2\u52ab\u4e86\u4e00\u5bb6\u5546\u5e97\u3002"} +{"id": "0005550", "video_name": "1cb34776-a8ad-586c-aae1-b8feb193d100", "text": "\u5feb\u4e50\u50f5\u5c38\u56e2\u961f\u5361\u901a\u8ffd\u9010\u9e1f\u7c7b\u3002"} +{"id": "0003302", "video_name": "3b4aec65-374f-5ca6-8340-ac584c2283a8", "text": "Translation: \u6709\u4e00\u5929\uff0c\u5f53\u63a2\u7d22\u9b54\u6cd5\u68ee\u6797\u65f6\u3002"} +{"id": "2006076", "video_name": "56e56d0b-13f7-50b8-9849-3f84c764e798", "text": "\u753b\u4e00\u4e2a\u5728\u529e\u516c\u5ba4\u6e38\u8361\u7684\u9b3c\u3002"} +{"id": "8003998", "video_name": "40ed0071-93e3-5fda-9095-326ce0b4dfc7", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u5728\u5899\u4e0a\u521b\u4f5c\u8857\u5934\u827a\u672f\uff08\u6d82\u9e26\uff09\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004133", "video_name": "4c8c1365-4c76-5420-94e7-66d86c315538", "text": "\u5728\u8349\u5730\u4e0a\u505a\u666e\u62c9\u63d0\u5e76\u62bd\u70df\u7684\u5916\u8868\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u4ee58k\u903c\u771f\u7684\u62c9\u91cc\u00b7\u82cf\u4e39\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "7004493", "video_name": "5e65a01a-8835-5202-a75e-833496333db9", "text": "\u8001\u7231\u5c14\u5170\u6d77\u5173\u5b98\u5458\u3002\u4ee5\u300a\u5bb6\u5ead\u4e71\u7ffb\u5929\u300b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "8001100", "video_name": "b744a910-6959-5657-a022-9dcf687924fb", "text": "\u8fd9\u91cc\u4e5f\u6709\u58f0\u79f0\u67d0\u4e9b\u6587\u7269..."} +{"id": "6002840", "video_name": "d238e933-0cc0-544c-9d6f-89447dfaa666", "text": "\u4e00\u4f4d\u4e13\u4e1a\u7684\u8db3\u90e8\u62a4\u7406\u5e08\u5728\u7ef5\u53bf\u6c38\u9e4f\u8db3\u7597\u4f1a\u6240\u4e3a\u4e00\u4f4d\u6027\u611f\u7f8e\u5973\u8fdb\u884c\u4e86\u8db3\u90e8\u62a4\u7406\u548c\u4fee\u811a\u3002"} +{"id": "2006405", "video_name": "ee50edad-e1d0-5529-9597-af2ef38dde59", "text": "\u4e3b\u89d2\u8fdb\u5165\u4e86\u4e00\u4e2a\u8df3\u52a8\u7684\u6280\u672f\u97f3\u4e50\u4ff1\u4e50\u90e8\u3002"} +{"id": "8002259", "video_name": "e77c5686-7e41-5e7c-adb1-ea8b77a1b201", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6b63\u5728\u52aa\u529b\u8fdb\u884c\u5065\u7f8e\u8bad\u7ec3\u3002\n\nSource sentence: She is studying Chinese language and culture at a university in Beijing. \n\n\u5979\u6b63\u5728\u5317\u4eac\u7684\u4e00\u6240\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u8bed"} +{"id": "6003312", "video_name": "10800cd0-a41c-59da-abac-4dea58b9be2c", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u516c\u4e3b\u6843\u82b1\u6536\u5230\u4e86\u4e00\u6761\u9080\u8bf7\u51fd\u3002\u9080\u8bf7\u4ed6\u4eec\u5728\u7f8e\u4e3d\u7684\u8611\u83c7\u8349\u5730\u4e0a"} +{"id": "2005967", "video_name": "e2e98242-b6d1-542d-bcc7-9f17c4b760a7", "text": "\u5154\u5b50\u4ee5\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7684\u98ce\u683c\u5403\u80e1\u841d\u535c\u3002"} +{"id": "3003521", "video_name": "0ed73c6c-7074-5151-97a5-4cc3a92b6816", "text": "\u767d\u8272\u72d0\u72f8\u5973\u5b69\u5750\u5728\u8fb9\u7f18\uff0c\u7ec6\u8282\u4e30\u5bcc\u7684\u4eae\u5149\u57ce\u5e02\u8857\u9053\u73af\u5883\u3002"} +{"id": "1005908", "video_name": "6c9c1271-759e-5eab-b9d4-9cc0154ae7f9", "text": "\u5c0f\u4ed9\u5973\u4eec\u98de\u8fc7\u9b54\u6cd5\u68ee\u6797\uff0c\u8fea\u58eb\u5c3c\u4fe1\u606f\uff1a\u55d6\u55d6\u98de\u8fc7\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1004757", "video_name": "58066209-c645-5a3c-ad31-a6c679a05ea2", "text": "\u51b0\u4e0a\u6b63\u5728\u751f\u957f\u7740\u7f8e\u4e3d\u7684\u771f\u5b9e\u51b0\u6676\u3002"} +{"id": "4002570", "video_name": "727a71be-f836-5cdd-a9f9-deb1c1055588", "text": "\u827e\u4f26\u00b7\u6c83\u514b\u5728\u97f3\u4e50\u4f1a\u4e0a\u770b\u8d77\u6765\u5f88\u9177\u3002"} +{"id": "2007999", "video_name": "f146a5f3-1ecf-546f-a2fc-1dfa252c866b", "text": "\u6697\u7ea2\u548c\u9ed1\u8272\u7684\u5b87\u5b99\uff0c\u539a\u5b9e\u7684\u94fe\u6761\u96f6\u4ef6\u56db\u6563\u98de\u821e\u3002"} +{"id": "8001025", "video_name": "c37c0237-ddab-5b7f-b345-c988f23f3085", "text": "\u65e9\u4e0a\u7684\u5927\u540e\u9662\u6e38\u6cf3\u6c60\u6b63\u5728\u6ce8\u6ee1\u6c34\uff0c\u592a\u9633\u7684\u5149\u8292\u6620\u7167\u5728\u6c34\u9762\u4e0a\uff0c\u6c34\u4e2d\u6709\u4e9b\u5fae\u6ce2\u8361\u6f3e\uff0c\u5982\u540c\u7535"} +{"id": "7004869", "video_name": "ff5a3599-bc2c-5d47-89d1-ebae0c6fc685", "text": "\u6750\u6599\u3001\u56fe\u753b\u3001\u4e00\u540d\u5973\u5b50\u5c16\u53eb\u3002"} +{"id": "4004929", "video_name": "7f79dec9-dbb3-548c-8594-65b0fe8050ff", "text": "\u4e00\u5f20\u6355\u6349\u5230\u7f8e\u4e3d\u7684\u7530\u91ce\uff0c\u5145\u6ee1\u8f89\u714c\u82b1\u6735\u7684\u56fe\u50cf\uff0c\u89e6\u6478\u65f6\u989c\u8272\u6539\u53d8\uff0c\u5f15\u53d1\u60ca\u5947\u548c"} +{"id": "2003624", "video_name": "a64fce64-4a45-5698-a19a-a8a14240bf2a", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u5728\u4e00\u4e2a\u5927\u578b\u96c6\u4f1a\u4e0a\u53d1\u8868\u8bb2\u8bdd\uff0c\u4ed6\u7684\u58f0\u97f3\u5145\u6ee1\u6fc0\u60c5\u548c\u51b3\u5fc3\u3002"} +{"id": "6004099", "video_name": "22c33b5d-ec9f-5348-b6f2-d706549ee402", "text": "\u4e00\u53ea\u987d\u76ae\u7684\u9ed1\u732b\uff0c\u9ec4\u773c\u775b\uff0c\u5728\u6cb3\u8c37\u91cc\u73af\u987e\u56db\u5468\uff0c\u671b\u5411\u7f8e\u4e3d\u7684\u68ee\u6797\u3002\u9633\u5149\u900f\u8fc7\u6811"} +{"id": "2007755", "video_name": "089cd65a-d209-5216-a0f0-b2edb5b8e83c", "text": "\u5973\u5b69\u4f1a\u9003\u5230\u6751\u91cc\u7684\u56fe\u4e66\u9986\u3002"} +{"id": "4003377", "video_name": "110bd3d3-8c62-5713-b65f-93788bec1dcb", "text": "\u5f53\u592a\u9633\u843d\u5c71\u65f6\uff0cLumina\u7684\u5929\u7a7a\u5f00\u59cb\u95ea\u70c1\u7740\u5f02\u4e16\u754c\u7684\u5149\u8292\u3002"} +{"id": "2003542", "video_name": "79ae3c9a-3eb1-5906-b885-b27e44a0ba5f", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u4e00\u65e9\u8fdb\u5165\u4e86\u4e00\u7247\u68ee\u6797\uff0c\u4ed6\u4eec\u9047\u5230\u4e86\u4e00\u53ea\u5de8\u578b\u6050\u9f99\uff0c\u5b83\u88ad\u51fb\u4e86\u4ed6\u4eec\uff0c\u4f46\u5728"} +{"id": "2007313", "video_name": "9ff5a53e-4d8c-5e62-b6df-1e825bc4625b", "text": "\u901a\u4fe1\u5929\u7ebf\uff0c\u80cc\u666f\u662f\u84dd\u5929\uff01"} +{"id": "3003885", "video_name": "99b6b6e4-85c8-5f76-bd8f-8369b361d636", "text": "\u5c71\u4e0a\u4e0b\u96ea\uff0c\u767d\u8272\uff0c\u7f8e\u4e3d\u3002"} +{"id": "1004308", "video_name": "4fa019cf-40e0-5ff8-bcd0-8f90cfbc10bd", "text": "\u8bbe\u8ba1\u4e00\u53cc\u7cbe\u7075\u978b\u7684\u5a74\u513f\u6a21\u578b\u3002"} +{"id": "4003897", "video_name": "b384b7ef-da61-52e4-8a04-a88b22444542", "text": "\u77f3\u5934\u4e0a\u7684\u4e00\u68f5\u5927\u6811"} +{"id": "7002549", "video_name": "87108f2b-5afd-5ef1-ba64-5784cb486c05", "text": "\u5927\u811a\u602a\u5728\u5206\u5f62\u7ef4\u5ea6\u4e2d\u8df3\u821e\uff0c\u55ef\uff0c\u8bcd\u6c47\u6c99\u62c9\u3002"} +{"id": "6004574", "video_name": "2a937d4c-c468-5ade-a66b-17310c95aa41", "text": "Lara Croft\u5728\u6df1\u6ce5\u4e2d\u9732\u8425\u3002\n\nSource sentence: I have a headache and need to take a nap. \n\u6211\u5934\u75bc\u4e86\uff0c\u9700\u8981\u5c0f\u7761\u4e00\u4e0b\u3002"} +{"id": "2004797", "video_name": "1207755d-e59a-5053-a264-5a9136645e46", "text": "\u4e00\u4f4d\u770b\u8d77\u6765\u50cf\u673a\u5668\u4eba\u7684\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u4eba\u6b63\u5728\u6253\u7535\u8bdd\u3002"} +{"id": "5001282", "video_name": "52038eb1-68c3-5328-bd52-488914aeb253", "text": "\u521b\u9020\u4e00\u4e2a\u6807\u5fd7\uff0c\u6807\u5fd7\u5185\u5305\u542b\u4e00\u4e2a\u624b\uff0c\u4e00\u9053\u5f69\u8679\uff0c\u4e00\u68f5\u6811\u548c\u4e00\u4e2a\u5fc3\u5f62\u56fe\u6848\uff0c\u91c7\u7528\u7b80\u6d01\u7684\u98ce\u683c\u3002"} +{"id": "7002662", "video_name": "5f0f7288-a2d5-51a0-acc0-6fecba3eb0f7", "text": "\u4ed6\u4eec\u53d1\u8a93\u6c38\u4e0d\u8fd4\u56de\uff0c\u8fd9\u5ea7\u8c6a\u5b85\u4fbf\u4e00\u76f4\u7b3c\u7f69\u5728\u8be1\u5f02\u7684\u4f20\u8bf4\u4e2d\u3002"} +{"id": "1004037", "video_name": "4ad6b098-ff63-53fb-a86a-f7c21b46e5a7", "text": "\u6709\u7740\u957f\u7740\u857e\u4e1d\u8fab\u7684\u8ff7\u4eba\u7537\u5b50\u624b\u6301\u6c34\u679c\u888b\uff0c\u9ad8\u6e05\u7535\u5f71\u7ea7\u522b\u76844K\u7ec6\u8282\u3002"} +{"id": "7002070", "video_name": "beda1dd3-c54c-5bd1-9f27-d2fb0b14bd04", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u4e2d\u5fc3\u7684\u5706\u5708\uff0c\u4ece\u4e2d\u5fc3\u5411\u56db\u5468\u5ef6\u4f38\u51fa\u7f8e\u4e3d\u7684\u9540\u91d1\u7ebf\u6761\uff0c\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u5f62\u6210\u4e86\u4e00\u5e45\u753b\u9762\u3002"} +{"id": "3004121", "video_name": "5a4b939b-0ad6-5914-94f2-705cfad0975c", "text": "\u521b\u5efa\u513f\u7ae5\u548c\u52a8\u7269\u52a8\u753b\u89c6\u9891"} +{"id": "3006966", "video_name": "a02ef2c0-e83e-5de2-81f1-fc83efd1ffd0", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u5728\u57ce\u5821\u91cc\u6f14\u594f\u6447\u6eda\u97f3\u4e50\u5668\u7684\u4e50\u961f\u3002"} +{"id": "2006567", "video_name": "e51067d4-5d65-5bb8-9a1e-8f5871a679f6", "text": "\u9152\u5427\uff0c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u548c\u5927\u8c61\uff0c\u559d\u5564\u9152\u5e76\u5fae\u7b11\u7740\u5e72\u676f\u3002"} +{"id": "2006323", "video_name": "192f8126-a066-5cec-ade9-2064beac5137", "text": "\u4e00\u4e2a\u52a8\u753b\u98ce\u683c\u7684\u573a\u666f\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u8bd5\u56fe\u5165\u7761\uff0c\u97f3\u4e50\u5728\u4ed6\u5468\u56f4\u8df3\u52a8\uff0c\u4ed6\u6342\u4f4f\u8033\u6735\uff0c\u5f88\u751f\u6c14\u3002"} +{"id": "6003434", "video_name": "690f93ab-1d36-5cd3-ba69-8297b03fe5b6", "text": "\u4e00\u500b\u4eba\u7528\u6bef\u5b50\u628a\u81ea\u5df1\u5168\u8eab\u8986\u84cb\u4e86\u8d77\u4f86\u3002"} +{"id": "6004153", "video_name": "09a5f931-c720-54bc-84a5-d4a15640d61d", "text": "Twitter\u5934\u8111\u98ce\u66b4\uff1a\u516c\u5171\u8bba\u575b\u3001\u60f3\u6cd5\u9a8c\u8bc1\u3001\u52a8\u6001\u5185\u5bb9\u3002"} +{"id": "5001050", "video_name": "ace93cb9-16e9-55d4-a346-c17945dbef09", "text": "\u751f\u6210\u5c0f\u6d77\u9f9f\u52a8\u753b\u7684\u56fe\u50cf\u3002"} +{"id": "0006222", "video_name": "289b913c-27e9-5e8f-adfa-7f91587406b0", "text": "\u53cd\u590d\u590d\u53e4\u7684\u8ff7\u5e7b\u98ce\u683c\uff0c\u53ef\u7231\u7684\u52a8\u6f2b\u98ce\u683c\u7684\u5973\u5b69\u8d70\u8def\u3002"} +{"id": "1004225", "video_name": "4e3010f9-61bf-509a-934e-93c66db1066c", "text": "1970\u5e74\u7684\u4e00\u90e8\u827a\u672f\u7535\u5f71\uff0c\u4eba\u7c7b\u5728\u51a5\u738b\u661f\u4e0a\u53d1\u73b0\u4e86\u751f\u547d\u5b58\u5728\uff0c\u800c\u5b83\u4e0e\u4ed6\u4eec\u60f3\u8c61\u7684\u5b8c\u5168\u4e0d\u540c\u3002"} +{"id": "4002170", "video_name": "3c0c5939-2696-562e-930f-aae8f5553ffc", "text": "\u672a\u6765\u7684\u89c6\u9891\u770b\u8d77\u6765\u600e\u4e48\u6837\uff1f"} +{"id": "1004709", "video_name": "576cdf88-14ec-592b-9c28-3be1de4f3d96", "text": "\u521b\u9020\u5e0c\u814a\u795e\u8bdd\u4e2d\u7684\u592a\u9633\u795e\u963f\u6ce2\u7f57"} +{"id": "2004007", "video_name": "250cb3ee-1c7d-50fa-94e4-84f4343b8b47", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u98ce\u666f\u753b\uff0c\u753b\u9762\u4e0a\u6709\u4e00\u53ea\u7ea2\u8272\u7684\u732b\u6b63\u5728\u7761\u89c9\uff0c\u989c\u8272\u53ef\u7231\u3001\u7f8e\u4e3d\u3001\u4ee4\u4eba\u8d5e\u53f9\u3002"} +{"id": "7004778", "video_name": "530a1405-2528-5efe-a644-d89c93aac15f", "text": "\u79bb\u5f00\u4eba\u4eec\u7edd\u671b\u7684\u72b6\u6001\u3002"} +{"id": "3004469", "video_name": "81376a96-240f-5f09-875e-8c42265d07ea", "text": "\u5723\u8bde\u8282\u6536\u5230\u4ed6\u4eec\u60f3\u8981\u7684\u4e1c\u897f\u7684\u4eba\u4eec"} +{"id": "1003447", "video_name": "3fe73334-6b67-53b3-a83c-ffc2193f1c39", "text": "\u53e4\u4ee3\u6b66\u672f\u7684\u4e16\u754c"} +{"id": "8002858", "video_name": "4b5abea0-0471-55a1-a103-10b7c3d80a8a", "text": "\u5f53\u6545\u4e8b\u7ed3\u675f\u65f6\uff0c\u519c\u592b\u5f17\u96f7\u5fb7\u5411\u6bcf\u53ea\u52a8\u7269\u9053\u665a\u5b89\u3002\u4ed6\u8f7b\u629a\u7740\u5976\u725b\uff0c\u5bf9\u7f8a\u8033\u8bed\u751c\u8a00\u871c"} +{"id": "6003682", "video_name": "51fededb-8486-5555-87ca-acaad30b7d67", "text": "\u5728\u5357\u6781\u6d32\u51b0\u51b7\u7684\u5e7f\u9614\u533a\u57df\u91cc"} +{"id": "5001330", "video_name": "833083e0-6445-5168-9129-fa06d2a3d29f", "text": "\u7a7f\u8d8a\u795e\u79d8\u7684\u6cb3\u6d41\uff0c\u5728\u4e1b\u6797\u6df1\u5904\u642d\u5efa\u4e34\u65f6\u8425\u5730\u3002"} +{"id": "3005092", "video_name": "a616108e-c122-57e5-ac7c-f109628d55d0", "text": "\u4e00\u4f4d50\u5c81\u7684\u5973\u58eb\u6b63\u5728\u5f00\u8f66\u3002"} +{"id": "3003070", "video_name": "d0bf4cea-9c45-5512-8859-c6b24499e737", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u6b63\u5728\u5f00\u8f66\u3002"} +{"id": "6002707", "video_name": "60c571b7-2359-5df7-b6d9-670e2ccca137", "text": "\u57fa\u4e8e\u5386\u53f2\u8d44\u6599\u548c\u8bb0\u5f55\uff0c\u5c45\u9c81\u58eb\u5927\u5e1d\u7684\u9762\u5bb9\u3002 \n\nSource sentence: The Eiffel Tower is one of the most famous landmarks in the world. \n\n\u827e\u83f2\u5c14"} +{"id": "1003360", "video_name": "3de1247f-fde8-5404-b5d3-3c8dc62e4b67", "text": "\u5979\u770b\u7740\u5929\u7a7a\uff0c\u540c\u65f6\u661f\u661f\u843d\u4e0b\u3002"} +{"id": "0005251", "video_name": "174276da-6152-5c89-b828-ead7eaa11895", "text": "21\u5c81\u7684\u5973\u7a7a\u4e58\uff0c\u767d\u8272\u80cc\u666f\u4e0b1.3\u7684\u8eab\u9ad8\uff0c1.2\u7684\u4e0a\u534a\u8eab\u5927\u5c0f\uff0c\u6b21\u8868\u9762\u6563\u5c04\uff0c\u5fae\u7b11\u7740\uff0c\u5934\u53d1\u76d8\u6210"} +{"id": "5001490", "video_name": "a9f85906-187a-540e-99d3-0cc56dc3af55", "text": "\u4e00\u4e2a\u80cc\u7740\u80cc\u5305\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u4e0a\u884c\u8d70\u7684\u4eba\u3002"} +{"id": "1004809", "video_name": "58e38628-ac47-569b-a14d-28df087da435", "text": "\u53f0\u9762\u4e0a\u7684\u4e09\u4e2a\u4ea7\u54c1\u4e00\u52a8\u4e0d\u52a8\uff0c\u9762\u971c\u4e5f\u662f\u9759\u6b62\u7684\uff0c\u80cc\u666f\u4e2d\u7684\u8461\u8404\u53f6\u5374\u5728\u6643\u52a8\uff0c\u753b\u9762\u6162\u6162\u5730"} +{"id": "1005816", "video_name": "6ae3ff27-8b27-5858-89c2-a4394e14dea9", "text": "\u90a3\u4e2a\u4eba\u8eba\u5728\u6c99\u53d1\u4e0a\uff0c\u770b\u7740\u9ed1\u6697\u623f\u95f4\u7684\u5929\u82b1\u677f\u3002"} +{"id": "4004904", "video_name": "30524624-d984-50fd-ad4e-19c7969cf2bc", "text": "\u521b\u4f5c\u4e00\u53ea\u5361\u901a\u9e1f\uff0c\u5b83\u5728\u7eff\u5e55\u80cc\u666f\u4e0a\u8fdb\u884c\u8fd1\u666f\u98de\u884c\u3002"} +{"id": "1004171", "video_name": "4d3b5946-0f1f-5107-a807-a8450713b9d9", "text": "\u7f13\u6162\u3001\u5fe7\u90c1\u7684\u94a2\u7434\u66f2\uff0c\u5f3a\u8c03\u7a7f\u65e7\u978b\u7684\u56f0\u96be\u548c\u4e0d\u9002\u3002"} +{"id": "7002473", "video_name": "e416f296-a765-5b5c-ac05-691f27f79636", "text": "\u6c99\u6ee9\u6392\u7403\u573a\u4e0a\uff0c\u4e00\u53ea\u6392\u7403\u88ab\u51fb\u6253\u540e\u4ee5\u52a8\u753b\u98ce\u683c\u4ece\u4e0b\u65b9\u98de\u51fa\u3002"} +{"id": "3005032", "video_name": "16f5d919-1171-59ee-b02b-750b88aae4a4", "text": "\u68b5\u9ad8\u4f4f\u5728\u9ec4\u8272\u7684\u623f\u5b50\u91cc\uff0c\u751f\u62103D\u52a8\u753b\u3002"} +{"id": "1005432", "video_name": "63c93e4f-04b5-5937-8a6f-6db33d5434d1", "text": "\u62c9\u5c14\u592b\u00b7\u514b\u5170\u767b\u4ee5\u903c\u771f\u7684\u98ce\u683c\u548c\u9c9c\u8273\u7684\u5168\u5f69\u8272\u6253\u51fb\u7231\u4e3d\u4e1d\u3002"} +{"id": "2006182", "video_name": "d9740f02-d7a4-5502-b651-c1032b08410a", "text": "\u5728\u7a7a\u8361\u7684\u6d77\u6d0b\u4e2d\u95f4\uff0c\u6709\u4e00\u5ea7\u903c\u771f\u7684\u77f3\u6cb9\u94bb\u4e95\u5e73\u53f0\uff0c\u65e0\u4eba\u673a\u6444\u50cf\u673a\u5411\u4e3b\u4f53\u79fb\u52a8\u3002"} +{"id": "2007650", "video_name": "c32e80d4-6f7e-5386-b754-ee19376bf560", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u770b\u4e66\u5e76\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u4ee54K\u30013D\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2007908", "video_name": "76dde262-8f0d-5a3b-8ac1-1e7cc7526c34", "text": "\u4e03\u5341\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u300a\u5723\u5c71\u300b\u7535\u5f71\u3001\u4e00\u4e2a\u5deb\u5e08\u7ad9\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "3003379", "video_name": "b6cdd17f-e00c-5a6e-9e80-8a69898d8783", "text": "\u8fd9\u4e2a\u9519\u8bef\u4e0d\u4ec5\u5f71\u54cd\u4e86\u4ed6\u7684\u670b\u53cb\uff0c\u800c\u4e14\u5bf9\u6574\u4e2a\u793e\u533a\u4ea7\u751f\u4e86\u5f71\u54cd\uff0c\u5bfc\u81f4\u4e86\u65e0\u6570\u7684\u4f24\u4ea1\u548c\u751f\u547d\u635f\u5931\u3002"} +{"id": "6003466", "video_name": "1ccb7dd6-9c15-5781-addd-efbf3293e147", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u65e5\u843d\u65f6\u5206\u5728\u6e56\u8fb9\u6f2b\u6b65\u3002"} +{"id": "6002671", "video_name": "21986f1d-c274-50cf-b4c6-c3257859a025", "text": "3D\u4e2d\u56fd\u5173\u7fbd\u82f1\u59ff\u52c3\u53d1\u5730\u63e1\u7740\u4e00\u628a\u5251\u3002"} +{"id": "3004131", "video_name": "fb06b675-59dc-59fd-a2ac-119b775db9a4", "text": "Madonna\u4e8e1992\u5e74\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "5001399", "video_name": "1481e211-feb1-50b1-9baa-74ad55c7268f", "text": "\u4ed6\u6709\u7740\u65e0\u6cd5\u6ee1\u8db3\u7684\u597d\u5947\u5fc3\uff0c\u8fd9\u9a71\u4f7f\u4ed6\u8e0f\u4e0a\u4e86\u975e\u51e1\u7684\u5192\u9669\u4e4b\u65c5\u3002"} +{"id": "0005139", "video_name": "157ce76e-ac9a-57a5-b220-c7457acdd5d4", "text": "\u4e00\u5bf9\u5e74\u8fc8\u592b\u5987\u5750\u5728\u5496\u5561\u4ead\u91cc\uff0c\u4e08\u592b\u5411\u59bb\u5b50\u503e\u659c\uff0c\u8bd5\u56fe\u8bf4\u4e9b\u4ec0\u4e48\u3002"} +{"id": "0003587", "video_name": "3ffba091-0198-58a5-a155-8e503edb5dd0", "text": "\u80cc\u4e0a\u88c5\u6709\u55b7\u6c14\u53d1\u52a8\u673a\u7684\u8df3\u4f1e\u8005\u5728\u591c\u665a\u4ece\u4e91\u4e0a\u8df3\u4e0b\u3002"} +{"id": "2004273", "video_name": "24da5a02-fcee-594b-a612-f8c7c495ae70", "text": "\u4e00\u53ea\u771f\u7684\u5f88\u5c0f\u7684\u732b\u5728\u4e00\u4e2a\u4eba\u7684\u624b\u638c\u5fc3\u91cc\uff0c\u9e1f\u77b0\u89c6\u89d2\u3002"} +{"id": "7003322", "video_name": "37a12fd2-831a-5972-acf8-f8291bce71cd", "text": "\u4e00\u5c0a\u5b8f\u4f1f\u7684\u62c9\u7f8e\u897f\u65af\u4e8c\u4e16\u6cd5\u8001\u96d5\u50cf\uff0c\u5c79\u7acb\u9ad8\u5927\uff0c\u7ec6\u81f4\u7684\u96d5\u523b\u53cd\u6620\u4e86\u4ed6\u865a\u5047\u80e1\u987b"} +{"id": "1003348", "video_name": "3da138da-3d21-5a16-98fc-46552721c1bc", "text": "\u4e00\u4e2a\u5e7d\u9ed8\u7684\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u5403\u83e0\u83dc\u53d8\u5f3a\u7684\u6c34\u624bPopeye\u3002\u4ed6\u7a7f\u7740\u84dd\u8272\u886c\u886b\u3001\u9ed1\u8272\u88e4\u5b50"} +{"id": "4002868", "video_name": "4e3596d1-709f-5638-b383-0ebabb1ffa34", "text": "\u5e7f\u544a\u573a\u666f\uff0c\u8fd1\u8ddd\u79bb\u62c9\u8fd1\u955c\u5934\uff0c\u9910\u5385\u53a8\u623f\u5207\u5272\u814c\u83dc\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "0004451", "video_name": "094ce446-5bfe-583a-897b-46c791bf9541", "text": "\u4e00\u540d\u6c7d\u8f66\u53f8\u673a\u5728\u591c\u665a\u7684\u8352\u50fb\u8857\u9053\u4e0a\u8ddf\u968f\u4e00\u540d\u5973\u53f8\u673a\u3002"} +{"id": "7003394", "video_name": "5d56975a-3e63-5c25-a7f9-e24f9e5bdf83", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u591c\u665a\u7684\u96e8\u4e2d\u505c\u5728\u516c\u8def\u8fb9\u3002"} +{"id": "5001488", "video_name": "6b2a590c-f3c5-5178-a554-623f5bef3c46", "text": "\u7537\u5b50\u5728\u975e\u5e38\u5bd2\u51b7\u7684\u591c\u665a\u671b\u7740\u6708\u4eae\uff0c\u611f\u5230\u5b64\u72ec\u4e0e\u5bc2\u5bde\uff0c\u6444\u5f71\u56e2\u961f\u62cd\u6444\u4e86\u4e00\u7ec4\u9ad8\u5ea6"} +{"id": "7003989", "video_name": "967e741d-1a07-55bf-9dec-620514ce7ca5", "text": "\u725b\u4ed4\u526a\u5f71\u4ef0\u671b\u5929\u7a7a\u4e2d\u7684\u9f99"} +{"id": "8001414", "video_name": "f93e6406-9731-5103-aa4b-759d534b70db", "text": "\u6211\u5e0c\u671b\u4f60\u80fd\u5236\u4f5c\u4e00\u4e2aDNA\u590d\u5236\u7684\u52a8\u753b\u3002"} +{"id": "4003370", "video_name": "5de155fb-891f-5fb5-aabe-bda5e391c65f", "text": "\u4e00\u53ea\u864e\u6591\u732b\u5728\u8349\u5730\u4e0a\u6349\u8001\u9f20\u3002"} +{"id": "2005938", "video_name": "8a9e42c5-6ba2-5cbb-a4d4-a6405929550e", "text": "\u73b0\u5b9e\u4e3b\u4e49\u8005\u52aa\u529b\u51cf\u80a5\u3002"} +{"id": "7002031", "video_name": "41a1ec34-bfc8-5612-9441-98270e4a528d", "text": "\u5510\u5409\u8bc3\u5fb7\u5728\u6811\u6797\u91cc\u8d70\u8def\u3002"} +{"id": "1005104", "video_name": "5e14aeaf-87f7-51a0-9dae-1efa203e337d", "text": "\u5c0f\u4e39\u5c3c\u65af\u628a\u4ed6\u7684\u5c0f\u5b9e\u9a8c\u96f6\u98df\u653e\u5728\u76d8\u5b50\u91cc\uff0c\u5750\u5728\u684c\u5b50\u524d\u3002\u4ed6\u7528\u53c9\u5b50\u5939\u4e86\u4e00\u4e9b\uff0c\u5c0f\u5fc3\u7ffc"} +{"id": "1003184", "video_name": "3a9541ec-ad7b-59f6-944b-e0475d7e5b23", "text": "\u65f6\u5c1a\u6444\u5f71\u3001\u91d1\u8272\u857e\u4e1d\u7f51\u3001\u7cbe\u7ec6\u7ec6\u8282\u857e\u4e1d\u3001\u9ad8\u7ea7\u5b9a\u5236\u793c\u670d\u3001\u91d1\u8272\u7687\u51a0\u5934\u9970\u3001"} +{"id": "4004419", "video_name": "ac59de56-d2ed-5b25-8d08-0db173630b79", "text": "\u4e00\u4f4d\u75312D\u52a8\u753b\u5236\u4f5c\u7684\u56fd\u738b\uff0c\u7a7f\u7740\u5370\u5ea6\u56fd\u738b\u7684\u670d\u88c5\u3002\u8fd8\u6709\u4e00\u4e9b\u670b\u53cb\u4e5f\u7a7f\u7740\u4ed6\u4eec\u7684\u5370\u5ea6\u7687\u5ba4"} +{"id": "2004686", "video_name": "cee95d81-4701-5e27-a01f-3f1761d405f2", "text": "\u4f20\u7edf\u94e0\u7532\u6b66\u58eb\u8dea\u5728\u76db\u5f00\u7684\u6a31\u82b1\u6811\u4e0b\uff0c\u624b\u63e1\u77ed\u5200\u51c6\u5907\u8fdb\u884c\u5207\u8179\u4eea\u5f0f\u7684\u6c34\u5f69"} +{"id": "1005353", "video_name": "627576a1-4980-5d00-9a3f-c052d83febe7", "text": "\u963f\u5bcc\u6c57\u88ab\u5fb7\u56fd\u98de\u673a\u8f70\u70b8\u4e86\u3002"} +{"id": "1006618", "video_name": "79526470-21e3-599a-8d29-85584de1e8eb", "text": "\u827e\u739b\u548c\u96f7\u6b27\u7ad9\u5728\u60ac\u5d16\u8fb9\uff0c\u4fef\u77b0\u7740\u58ee\u4e3d\u7684\u7f8e\u666f\uff0c\u4f38\u51fa\u624b\u81c2\u4eff\u4f5b\u51c6\u5907\u62e5\u62b1"} +{"id": "2005537", "video_name": "6a6b9a0e-4be4-5a54-a2e2-410cb43f29ad", "text": "\u5728\u5b9c\u4eba\u7684\u57c3\u5c14\u59c6\u65af\u4f0d\u5fb7\u5c0f\u9547\uff0c\u4e00\u79cd\u4f20\u7edf\u8d85\u8d8a\u4e86\u5bfb\u5e38\u3002\u5341\u5c81\u65f6\uff0c\u5b69\u5b50\u4eec\u4f1a\u88ab\u8d4b\u4e88\u673a\u5668\u4eba"} +{"id": "6003471", "video_name": "5c75a4d1-d467-573e-96a8-c5c4a24063af", "text": "\u4e00\u90e8\u624b\u673a\u7684\u7535\u5f71\u7ea7\u7206\u70b8"} +{"id": "8001343", "video_name": "7ae552ed-295d-5950-8ac8-9c8d5c113f69", "text": "\u770b\u90a3\u4e2a\u7537\u5b69\uff0c\u50cf\u6d77\u7ef5\u4e00\u6837\u5438\u6536\u6559\u8bf2\uff0c\u8138\u4e0a\u5145\u6ee1\u4e86\u7406\u89e3\u548c\u7740\u8ff7\u7684\u5149\u8292\u3002"} +{"id": "3004477", "video_name": "9b879627-2cf9-5133-9141-1a5bd4783c6a", "text": "\u4e00\u4e2a\u8db3\u7403\u573a\u4ece\u4e0a\u9762\u770b\u7684\u666f\u8c61\u3002"} +{"id": "8003403", "video_name": "3a788c8c-2fbb-5ba3-957c-06997f8bff36", "text": "\u4e00\u4e2a\u5e26\u6709\u5361\u901a\u5f62\u8c61\u7684\u7537\u5b69"} +{"id": "6002480", "video_name": "cd4b5119-c584-5f2e-9125-0e7d0f3d9ca2", "text": "\u770b\u8d77\u4f86\u975e\u5e38\u56f0\u96e3\u7684\u6a5f\u5668\u4eba\u6307\u4ee4\u8aaa\u660e\u3002"} +{"id": "6003414", "video_name": "76e4c58b-ffa3-5dbf-8115-9b1c9db45b5c", "text": "\u72d7\u72d7\u671b\u5411\u68ee\u6797\u7684\u753b\u9762"} +{"id": "6003473", "video_name": "ae527433-7643-5f73-8067-7a638ec24c1c", "text": "\u8239\u53ea\u3002\u4fef\u89c6\u3002\u50cf\u76ae\u514b\u65af\u4e00\u6837\u7684\u98ce\u683c\u3002"} +{"id": "6002361", "video_name": "46422956-5b9e-56ee-8883-d7927e6933ad", "text": "\u4eba\u7fa4\u89c2\u770b\u8336\u53f6\u548c\u5176\u4ed6\u8d27\u7269\u4ece\u201c\u5f17\u91cc\u8fbe\u201d\u53f7\u8239\u4e0a\u5378\u4e0b\u3002\u8fd9\u4e9b\u8d27\u7269\u88ab\u88c5\u8f7d\u5230\u9a6c\u62c9\u7684\u9a6c\u8f66\u4e0a\uff0c\u9a76"} +{"id": "8002806", "video_name": "06ab08c5-7620-5059-b0ac-5cd916860034", "text": "\u7537\u4eba\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\u5728\u767d\u677f\u4e0a\u753bS\u3002"} +{"id": "7003752", "video_name": "29561d76-34fb-5335-9bbf-b053dcceb5ad", "text": "\u5496\u5561\u5192\u51fa\u84b8\u6c7d\uff0c\u5473\u9053\u50cf\u5409\u535c\u529b\u3002"} +{"id": "3006493", "video_name": "b3ed9731-9c80-54df-a007-1a88ef7c8bfe", "text": "\u6c34\u6ef4\u5728\u6c34\u9762\u4e0a\u8df3\u821e\uff0c\u62bd\u8c61\u827a\u672f\u98ce\u683c"} +{"id": "1003545", "video_name": "4166ee63-2bec-5567-8614-1488ae301186", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5229\u548c\u4e16\u754c\u676f11\u540d\u5370\u5ea6\u7403\u5458\u3002"} +{"id": "6002494", "video_name": "db5452cf-817a-5f57-96b9-633b115f7a36", "text": "\u6050\u6016\u5c4b\uff0c\u623f\u95f4\u91cc\uff0c\u7a7a\u6c14\u6d41\u52a8\u3002"} +{"id": "3003008", "video_name": "6182ef57-57ab-5765-a0b6-a0bd2e1c6ff8", "text": "\u5343\u5e74\u9e70\u53f7\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u903c\u771f\u7684\u7535\u5f71\u9759\u6b62\u753b\u9762\uff0c\u4f7f\u7528\u4e86Dykstraflex\u76f8\u673a\u548cPanavision\u955c\u5934\u3002"} +{"id": "4004722", "video_name": "2692ca6d-887d-5285-b1f0-761780239567", "text": "\u4e00\u4e2a\u6234\u7740\u8fde\u5e3d\u886b\u7684\u7537\u5b69\u62ff\u7740\u4e00\u53f0\u65e7\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "4003075", "video_name": "4828c70a-bb3f-5137-9dfd-4bd41005203e", "text": "\u9999\u8549\u7a7f\u7740\u897f\u88c5\u559d\u5496\u5561\uff0c\u800c\u8c6a\u732a\u5219\u5728\u4f1a\u8bae\u684c\u4e0a\u7761\u7740\u4e86\u3002"} +{"id": "6002360", "video_name": "8a1441ae-d684-5249-8a75-4effffd41923", "text": "\u4e00\u95f4\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u4e2a\u51e0\u4e4e\u65e0\u6cd5\u8fa8\u8ba4\u7684\u5f62\u72b6\u5728\u6ce8\u89c6\u7740\u4f60\u3002"} +{"id": "2006540", "video_name": "3ef28279-1aad-5113-a89b-98ac847ae1c9", "text": "\u5728\u7f8e\u9e97\u6e05\u6f54\u7684\u4ecb\u8cea\u4e2d\u62cd\u651d\u4e00\u500b\u8611\u83c7\u751f\u9577\u7684\u6642\u9593\u9593\u9694\u3002\u5c07\u5e7b\u89ba\u822c\u7684\u984f\u8272\u548c\u8996"} +{"id": "7003428", "video_name": "7c64061d-c531-53fc-8749-748ea352c01b", "text": "\u9ed1\u6697\u4e2d\u7684\u8d5b\u8f66\u6a21\u578b\uff1a\u4e30\u7530\u5361\u7f57\u62c9\uff0c\u4e30\u7530\u8f66\uff0c\u5730\u9762\u4ea4\u901a\u5de5\u5177\uff0c\u8f66\u8f6e\uff0c\u6237\u5916\uff0c\u6c7d\u8f66\uff0c\u8f6e\u80ce\uff0c\u4ea4"} +{"id": "2005224", "video_name": "57e22771-7045-53ff-be3b-040e12572447", "text": "\u6d41\u661f\u5212\u8fc7\u5929\u9645\uff0c\u68a6\u5e7b\u822c\u7684\u5b87\u5b99\u666f\u8c61\u3002"} +{"id": "3005647", "video_name": "64c020f2-b8d4-5eaa-bde4-2d235e2805dd", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\u4e2d\uff0c\u4e00\u4f4d\u5973\u6027\u5728\u5e7b\u60f3\u4e4b\u5730\u884c\u8d70\uff0c\u5979\u5149\u5f69\u7167\u4eba\uff0c\u7a7f\u774070\u5e74\u4ee3\u7684"} +{"id": "0005865", "video_name": "227da66d-ac43-59c0-be43-c7a917a69d54", "text": "19\u4e16\u7eaa\u4e00\u8258\u5927\u8239\u62b5\u8fbe\u6cd5\u56fd\u6e2f\u53e3\u3002"} +{"id": "8003424", "video_name": "f65d1926-233b-5048-bcfb-e566465c1f2e", "text": "\u4e00\u7fa4\u5e74\u8f7b\u7537\u5973\u6d88\u5931\u5728\u4e00\u5ea7\u53ef\u6015\u7684\u5e9f\u5f03\u8001\u623f\u5b50\u91cc\u3002"} +{"id": "6003196", "video_name": "0475df8b-6f34-51d2-b172-83e51f788fa8", "text": "\u98de\u673a\u5728\u665a\u4e0a\u649e\u8fdb\u4e86\u8c37\u4ed3\u3002"} +{"id": "2007078", "video_name": "2a39b565-5e67-5f1b-b62f-abc0255a4482", "text": "\u7a7f\u7740\u7eff\u8272\u53e3\u7f69\u548c\u7ea2\u8272\u886c\u886b\u7684\u5973\u5b69"} +{"id": "1003667", "video_name": "438171a2-5ce1-5e10-afe8-2aa4a8f83649", "text": "\u5927\u4f17\u5df4\u58eb\u548c\u5927\u4f17\u7532\u58f3\u866b\u6b63\u5728\u9ad8\u901f\u9a7e\u9a76\uff0c\u673a\u5668\u4eba\u4e3a\u4ed6\u4eec\u6b22\u547c\u3002\u5927\u91cf\u70df\u96fe\u3001\u8df3\u8dc3\u548c"} +{"id": "5001926", "video_name": "81e54ef9-edf1-5f68-ad54-8b06691cd676", "text": "\u4ece\u5730\u9762\u5c55\u793a\u7684\u68ee\u6797\uff0c\u96e8\u7ec6\u7ec6\u5730\u4e0b\u7740\u3002"} +{"id": "4003633", "video_name": "cda988ad-f18d-584e-a5f2-05e8352e5648", "text": "\u9ca8\u9c7c\u5728\u4e00\u4e2a\u5145\u6ee1\u4f01\u9e45\u7684\u6c60\u5858\u91cc\u505a\u4ef0\u6cf3\u3002"} +{"id": "1005268", "video_name": "60e747b3-63ff-5393-8631-2472c6e1fc68", "text": "\u706b\u661f\u4e0a\u7684\u751f\u6d3b\u5728\u6c34\u6676\u5706\u9876\u5185\uff0c\u5145\u6ee1\u7740\u690d\u88ab\uff0c\u800c\u5728\u5916\u9762\u5219\u662f\u4e00\u7247\u96fe\u8499\u8499\u7684\u7ea2\u8272\u6c14"} +{"id": "3006119", "video_name": "d257a6bc-41e4-5ac8-8e0f-ae4511d70578", "text": "\u5c55\u793a\u718a\u732b\u738b\u548c\u9ed1\u7329\u7329\u738b\u5728\u6fc0\u70c8\u6218\u6597\u4e2d\u5c55\u5f00\u4e00\u573a\u6df1\u60c5\u5bf9\u8bdd\u3002\u5c55\u73b0\u5431\u5431\u738b"} +{"id": "1003166", "video_name": "3a4c5be1-88d9-5fda-a104-3898e806c31e", "text": "\u5ca9\u77f3\u578b\u5b9d\u53ef\u68a6\uff0c\u6709\u843d\u77f3\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "2003926", "video_name": "6c28d105-a4bc-5c0c-ac47-2c2b2cd6691d", "text": "\u4e00\u4f4d\u77ed\u53d1\u7ea2\u53d1\u7684\u5c0f\u5973\u5b69\u7a7f\u7740\u767d\u8272\u8fde\u8863\u88d9\uff0c\u624b\u62ff\u4e00\u53ea\u6a59\u8272\u5c0f\u732b\u5728\u5723\u8bde\u5b66\u6821\u91cc\u3002"} +{"id": "2005685", "video_name": "06bec105-5703-56ba-b9e7-1ebba20d25c7", "text": "\u6211\u60f3\u8981\u4e00\u6bb5\u9668\u77f3\u5728\u53ef\u6015\u7684\u573a\u666f\u4e0b\u649e\u51fb\u5730\u7403\u7684\u89c6\u9891\u3002"} +{"id": "3003142", "video_name": "6e13db14-dd21-5222-9d0b-1ce735716792", "text": "\u5728\u4e2d\u4e16\u7eaa\u7684\u6c99\u6f20\u4e2d\uff0c\u6709\u4e00\u7fa4\u9a86\u9a7c\u548c\u4e00\u7fa4\u4eba\u3002"} +{"id": "7002714", "video_name": "28487e76-d8e6-5aa9-b139-ec854e07d62b", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u54c8\u5229\u00b7\u6ce2\u7279\u4e0e\u59ae\u53ef\u00b7\u7f57\u5bbe\u4e00\u8d77\u98de\u884c\u3002"} +{"id": "3004523", "video_name": "869d5c9b-a9df-5e1c-b074-5b56a8d7c88c", "text": "\u6e90\u53e5\uff1a\u8d85\u7ea78\u6beb\u7c73\u7535\u5f71\u7684\u4e00\u4e2a\u5de8\u5927\u7684\u70ed\u5e26\u706b\u5c71\u5728\u6d77\u6d0b\u4e2d\u592e\u7684\u7535\u5f71\u955c\u5934\uff0c\u827a\u672f\u7535\u5f71\n\n\u8d85\u7ea78"} +{"id": "8003814", "video_name": "924da040-3d8b-5de3-8d71-d2169dddeeec", "text": "\u8ba9\u72fc\u770b\u7740\u6444\u50cf\u5934\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004501", "video_name": "8d87937f-70cf-5c87-943a-b472e2c20710", "text": "\u4e00\u5339\u5f3a\u58ee\u7684\u9a6c\u4e0a\uff0c\u4e00\u4f4d\u52c7\u731b\u7684\u5723\u4e54\u6cbb\u4e0e\u4e00\u53ea\u5de8\u9f99\u640f\u6597\u3002"} +{"id": "0005863", "video_name": "2279d9d9-0a9a-5860-be8a-28a17106f0dc", "text": "\u4e4c\u6258\u90a6\u793e\u4f1a\u4e0e\u673a\u5668\u4eba\u3002\u4fe1\u606f\uff1aRTV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005081", "video_name": "5daee369-9474-5ee6-a473-8f996af3f5ac", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\uff0c\u8001\u4eba\u5728\u7a7a\u4e2d\u5531\u6b4c\uff0c\u9ec4\u8272\u660f\u6697\u7684\u706f\u5149\u7167\u4eae\u4e86\u4ed6\u3002"} +{"id": "0005008", "video_name": "132a90a9-c995-5e18-b978-4cb0e5d224f2", "text": "\u7b2c\u4e09\u90e8\u5206\uff1a\u8c1c\u56e2\u63ed\u5f00\uff08\u5c4f\u5e55\u53d8\u6697\uff0c\u518d\u6b21\u53d8\u6de1\uff0c\u6751\u5e84\u573a\u666f\u7a7a\u65e0\u4e00\u4eba\uff0c\u98ce\u58f0\u9634\u68ee\uff09\u65c1\u767d"} +{"id": "3006313", "video_name": "8dc94ae9-f53b-5885-8d87-54b69d1fa09b", "text": "\u901a\u8fc7\u9ed1\u767d\u7eaa\u5f55\u7247\u751f\u6210\u4e00\u4e2a\u53e4\u5e0c\u814a\u8857\u9053\u7684\u98ce\u666f\u3002"} +{"id": "8001633", "video_name": "5dabbdda-2a52-5a0f-bfeb-39b7eddc20c8", "text": "\u4e00\u90e8\u7535\u5f71\u4e2d\uff0c\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u7e41\u5fd9\u7684\u7ebd\u7ea6\u8857\u9053\u4e2d\u592e\uff0c\u884c\u4eba\u4ece\u5979\u8eab\u8fb9\u7a7f\u68ad\u800c\u8fc7\uff0c\u795e\u79d8\u5730"} +{"id": "6002101", "video_name": "c88523cb-bfa4-5e8e-9cd7-9419a9079b54", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5370\u5ea6\u94c1\u8def\u7ad9\u53f0\u573a\u666f\uff0c\u4eba\u4eec\u5728\u8336\u644a\u4e0a\u559d\u8336\u3001\u5403\u8428\u83ab\u8428\u548c\u770b\u62a5\u7eb8\u3002\u7ad9\u53f0"} +{"id": "2003478", "video_name": "d18613b3-110f-509a-8d84-113e334379cc", "text": "\u8b66\u65b9\u5411\u9a37\u4e82\u6295\u653e\u50ac\u6dda\u74e6\u65af\u7684\u65b0\u805e\u756b\u9762\uff0c\u4ee5VHS\u78c1\u5e36\u6162\u52d5\u4f5c\u64ad\u653e\u3002"} +{"id": "2007069", "video_name": "4de7706f-2cc1-5f97-a7b7-e326f8412300", "text": "\u4e00\u5ea7\u73bb\u7483\u5efa\u7b51\u5185\u7684\u73b0\u4ee3\u5316\u514d\u8d39\u5de5\u4f5c\u533a\uff0c\u9633\u5149\u4ece\u5916\u9762\u7167\u5c04\u8fdb\u6765\u3002\u6905\u5b50\u662f\u84dd\u8272\u7684\uff0c\u684c\u5b50"} +{"id": "0005198", "video_name": "1682fa05-b781-589b-8af0-ac2bbf81458c", "text": "\u4e00\u9053\u5f69\u8679\u5347\u8d77\uff0c\u4e00\u53ea\u8774\u8776\u98de\u821e\u3002"} +{"id": "6004534", "video_name": "05417c33-258b-53aa-90f7-17e612783feb", "text": "\u4e00\u90e8\u9ed1\u767d\u9897\u7c92\u611f\u7535\u5f71\u98ce\u683c\u7684\u89c6\u9891\uff0c\u663e\u793a\u7740\u4e00\u4e2a\u5bb3\u6015\u5c16\u53eb\u7684\u5b69\u5b50\u3002"} +{"id": "1003245", "video_name": "3bc52c83-4ed2-551f-a2c1-5ff65ee77e68", "text": "\u767d\u8272\u5065\u5eb7\u7684\u7259\u9f7f\u3002\u8baf\u771f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1004183", "video_name": "4d6a9948-cfab-5903-ba90-b7b12309064f", "text": "\u4e00\u4e2a10\u5c81\u5973\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\u7684\u56fe\u7247\uff0c3D\u63d2\u56fe\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u521b\u610f3D\u8fea\u58eb\u5c3c\u5361\u901a\uff0c\u7f8e\u4e3d\u7684\u9762\u5bb9\u3002"} +{"id": "2004289", "video_name": "95102598-348a-56f3-a2c1-365ffda54f1e", "text": "\u4e00\u4e9b\u73b0\u5b9e\u4e3b\u4e49\u52a8\u6f2b\u98ce\u683c\u7684\u5973\u5b69\u3002\u4fe1\u606f\uff1aKMPEE\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "0004010", "video_name": "01889e45-bd12-54d0-89b2-36ba2bb380ef", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4f60\u770b\u5230\u4e00\u67b6\u5e26\u6709\u95ea\u70c1\u7ea2\u5149\u7684\u65e0\u4eba\u673a\u79fb\u52a8\u3002"} +{"id": "8003933", "video_name": "f396a0ae-ac9a-5dbf-954d-a50416eecf51", "text": "\u5e03\u9c81\u65af\u00b7\u674e\u5728\u6c99\u6f20\u4e2d\u8df3\u821e\u3002"} +{"id": "5001699", "video_name": "570f992a-a461-5d13-9b03-e7348032bb15", "text": "\u5c55\u793a\u83f2\u5229\u514b\u65af\u5728\u601d\u8003\u8ba1\u5212\uff0c\u8ba9\u4ed6\u63a5\u8fd1\u91cc\u5965\u5e76\u63d0\u51fa\u5efa\u8bae\u3002"} +{"id": "8003052", "video_name": "82b22fc4-2cd7-576a-87b8-75ef1b72121d", "text": "\u94a2\u94c1\u4fa0\u548c\u745e\u514b\u00b7\u6851\u5207\u65af\u5408\u4f53\u3002"} +{"id": "2003917", "video_name": "30380d1e-763a-5f09-b72e-9e81390a6f6e", "text": "\u7c73\u62c9\u00b7\u4e54\u6c83\u7ef4\u5947\u624b\u6301\u4e00\u53ea\u7740\u706b\u7684\u5927\u751f\u65e5\u86cb\u7cd5\uff0c\u5fae\u7b11\u7740\uff0c\u6027\u611f\u6709\u8da3\u3002\u5979\u7a7f\u7740\u300a\u751f\u5316"} +{"id": "0003814", "video_name": "43f68c16-8a6c-56a5-ae14-b28492f6203c", "text": "\u592a\u7a7a\u9ab7\u9ac5\u9ed1\u6697\u6c1b\u56f4\u6708\u7403\u3002\u5f88\u591a\u5e72\u51c0\u7684\u9ec4\u91d1\u5b9d\u85cf\uff0c\u50cf\u73e0\u5b9d\u548c\u94bb\u77f3\u4e00\u6837\uff0c\u7c98\u5728"} +{"id": "2005520", "video_name": "d3f958c6-ae4a-5d41-86bf-1d6938d1adb0", "text": "\u6781\u7b80\u4e3b\u4e49\u5bf9\u6d88\u8d39\u548c\u751f\u6001\u7684\u5f71\u54cd\u3002"} +{"id": "1006942", "video_name": "7f045b73-8bef-57bd-8e31-4cac2641e344", "text": "\u5fc3\u82b1\uff0c\u4eba\u8111\u5982\u82b1\uff0c\u6570\u7801\u827a\u672f\u98ce\u683c\uff0c\u4e09\u5206\u6cd5\u666f\u6df1\u7cbe\u7ec6\u7ec6\u8282\u3002"} +{"id": "3005590", "video_name": "c4e79a5a-acfd-5aa0-85c7-7b7c2817b835", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u7684\u7011\u5e03\u6b63\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u4e2d\u6d41\u6dcc\u3002"} +{"id": "6002051", "video_name": "246bab8c-4112-57bc-9d9d-a89bedee554f", "text": "\u7537\u5b50\u9a91\u7740\u6469\u6258\u8f66\u5728\u516c\u8def\u4e0a\u98de\u9a70\uff0c\u901f\u5ea6\u975e\u5e38\u5feb\u3002"} +{"id": "1005769", "video_name": "6a29b302-4f6a-5f13-b31d-122b784232bb", "text": "into a million rose petals falling gently onto the ground.\n\n\u4e00\u6735\u7f8e\u4e3d\u7684\u73ab\u7470\u5728\u9ed1\u8272\u6ce2\u7eb9\u4e1d\u7ef8\u80cc\u666f\u4e0b\u6389\u4e86\u4e00\u7247\u82b1\u74e3\uff0c"} +{"id": "1006423", "video_name": "758e67d5-513e-537b-91c0-c2b23e02e766", "text": "\u4e00\u53ea\u84dd\u8272\u7684\u9f99\u5411\u4e0b\u4fef\u51b2\u3002"} +{"id": "1006808", "video_name": "7ca3b451-c620-5f79-9852-d126f14b36fd", "text": "Chinese translation: \u5728\u8fd9\u6df7\u4e71\u4e2d\u95f4"} +{"id": "4004043", "video_name": "d193fe16-b17b-5714-b7c0-44f6fa7b8afb", "text": "\u4e00\u4e2a\u5546\u4eba\u7ad9\u5728\u4e00\u4e2a\u88ab\u79f0\u4e3a\u201c\u65b0\u592a\u9633\u516c\u53f8\u201d\u7684\u5927\u697c\u524d\u3002"} +{"id": "8003031", "video_name": "fa25bc71-9306-5117-8d5c-21e992a6048b", "text": "\u96f7\u514b\u8428\u65af570\u548c\u96f7\u514b\u8428\u65af600\u7ebd\u7ea6\u3002"} +{"id": "0003143", "video_name": "38019df6-e625-55ad-a6e6-c873505ee35b", "text": "\u4ed6\u662f\u4e00\u4f4d\u5e74\u8f7b\u7684\u8db3\u7403\u8fd0\u52a8\u5458\uff0c3D\u52a8\u753b\u4e2d\u4ed6\u5174\u9ad8\u91c7\u70c8\u5730\u6210\u4e3a\u4e86\u80dc\u5229\u8005\u3002"} +{"id": "3005220", "video_name": "b0c9caef-845d-5d82-a7f1-ee2da69f99da", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u7bb1\u5b50\u6253\u5f00\u4e86\u5b83\u7684\u76d6\u5b50\u3002"} +{"id": "3006820", "video_name": "7e7f34b7-6923-5bc3-befd-88ea36fbd8d7", "text": "\u6c34\u5728\u5fae\u98ce\u4e2d\u6d41\u52a8\u3002"} +{"id": "1005792", "video_name": "6a9f71f5-805a-50bb-b5de-3ad1df99db4d", "text": "\u6211\u60f3\u8981\u540c\u4e00\u4e2a\u5973\u4eba\u5728\u70f9\u996a\u540e\u5e73\u6ed1\u5730\u6362\u4e0a\u793c\u670d\u5e76\u51c6\u5907\u5f00\u4f1a\u3002 \n\nSource sentence: Can you recommend a good restaurant for dinner tonight? \n\u4eca\u665a"} +{"id": "5001840", "video_name": "64578b72-3b87-5eef-87c6-94613edc0ccd", "text": "\u732b\u5934\u9e70\u7a7f\u7740\u897f\u88c5\u98de\u8fdb\u9a6c\u620f\u56e2\u3002"} +{"id": "0006666", "video_name": "30b4ad11-9921-58f5-aefc-dbfa5ea81934", "text": "\u8bf7\u8ba9\u56fe\u7247\u4e2d\u7684\u7537\u58eb\u628a\u9ed1\u8272\u773c\u955c\u4ece\u4ed6\u4eec\u5f53\u524d\u7684\u4f4d\u7f6e\u53d6\u4e0b\u6765\u3002\n\nSource sentence: I need to book a flight to Beijing for next Monday. \n\u6211\u9700\u8981\u9884\u8ba2\u4e0b\u5468"} +{"id": "1006186", "video_name": "71525a87-ff38-560c-9f6c-c67ec69bda0d", "text": "\u7f13\u6162\u7684\u7279\u5199\u955c\u5934\u5c55\u73b0\u4e86\u4e00\u4e2a\u6b27\u6d32\u7537\u5b50\u5728\u8270\u82e6\u7684\u4f53\u529b\u5de5\u4f5c\u4e2d\u9524\u6253\u548c\u6c57\u6c34\u6dcb\u6f13\u7684\u573a\u666f\uff0c\u903c\u771f"} +{"id": "1005476", "video_name": "64952567-b1da-5973-bd8b-fd2e3c37b564", "text": "\u60c5\u4fa3\u76f8\u9047\u5e76\u4e00\u89c1\u949f\u60c5\uff0c\u52a8\u753b\u7247\u3002"} +{"id": "7004628", "video_name": "8f1dbc4f-c15d-5531-ba42-0fe88e4a4ad7", "text": "\u63cf\u8ff0\u6dd8\u6c14\u7684\u5c0f\u7cbe\u7075\u8bd5\u56fe\u98de\u5411\u591c\u7a7a\uff0c\u5b83\u4eec\u7684\u7fc5\u8180\u632f\u52a8\u7740\uff0c\u52aa\u529b\u6293\u4f4f\u5fae\u7b11\u7684\u955c\u5b50\uff0c"} +{"id": "4004801", "video_name": "318786bf-028d-51f1-9644-318cef9e04b7", "text": "\u7537\u4eba\u6b63\u5728\u7528\u5149\u7ea4\u6fc0\u5149\u5668\u8bb2\u89e3\u5982\u4f55\u7528\u6fc0\u5149\u5668\u5c06\u786c\u5e01\u96d5\u523b\u3002"} +{"id": "0003792", "video_name": "43781966-6865-5f05-a8cc-06e64b1926ed", "text": "\u4e00\u53ea\u718a\u5403\u91d1\u9501"} +{"id": "8002773", "video_name": "6e2c16c3-b968-5d2a-9d2d-05a582f76c47", "text": "\u7ef4\u4eac\u7f8e\u4e3d\u7684\u7ea2\u53d1\u5973\u5b50\u5728\u6218\u4e89\u4e2d\u594b\u6218\uff0c\u8d85\u771f\u5b9e\u3001\u9ad8\u6e05\u30014K\u3002"} +{"id": "7002875", "video_name": "b30929b2-c30e-5e44-8b2a-faba5e82fe0e", "text": "\u5929\u4f7f\u5728\u5b87\u5b99\u4e2d\u4e0e\u50f5\u5c38\u6218\u6597\uff0c\u5728\u98de\u8548\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "1005223", "video_name": "602728ed-1a73-5980-b880-a4932ec48598", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u5168\u8eab\u4ece\u5730\u9762\u4e0a\u5347\u8d77\uff0c\u8fdb\u5165\u4e86\u661f\u7cfb\u3002"} +{"id": "6004180", "video_name": "079f3ada-2911-5097-8ee8-77bf66b67f07", "text": "\u8def\u98de\u4ee5\u592a\u9633\u795e\u5c3c\u5361\u5f62\u6001\u83b7\u5f97\u4e86\u4e07\u7269\u4e4b\u5b9d\u3002"} +{"id": "0006059", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "\u4e00\u7fa4\u4e27\u5c38\u5728\u508d\u665a\u6cbf\u7740\u57ce\u5e02\u8857\u9053\u8d70\uff0c\u88ab\u4e00\u53f0\u65e7\u76f8\u673a\u62cd\u4e0b\u3002\u4ed6\u4eec\u7a81\u7136\u6ce8\u610f\u5230\u76f8\u673a\u5e76\u5f00\u59cb\u671d"} +{"id": "3004234", "video_name": "75ec64b0-47dd-5f76-8e8e-7a5342b0f60c", "text": "\u7b49\u8f74\u89c6\u89d2\u76842D MMORPG\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u300a\u7ec8\u6781\u5728\u7ebf\u300b\u3002"} +{"id": "4003786", "video_name": "0c858763-efcf-576d-85c5-359a18ac1d54", "text": "Mochi\u662f\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u578b\u535a\u7f8e\u72ac\u3002\u4ed6\u7684\u623f\u5b50\u4f4d\u4e8e\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u82b1\u56ed\u91cc\uff0c\u82b1\u8349\u5e38\u5e74"} +{"id": "3004668", "video_name": "2787a323-9f52-5c88-87b8-55bddd18a9aa", "text": "\u73b0\u5b9e\u4e4b\u5251\u5207\u5272\u65f6\u95f4\uff0c\u5c06\u6240\u6709\u53ef\u80fd\u7684\u73b0\u5b9e\u538b\u7f29\u6210\u4e3a\u4e00\u9053\u5149\u7684\u51b2\u51fb\u6ce2\u3002"} +{"id": "3003158", "video_name": "c33ed010-d2f3-5d60-b9ff-6d49da00ae0f", "text": "\u5b6b\u609f\u7a7a\u8b8a\u8eab\u70ba\u5b8c\u7f8e\u6975\u610f\u7684\u6f2b\u756b\u98a8\u683c\u52d5\u756b\u3002"} +{"id": "6004278", "video_name": "a0becda2-6ca9-5e9c-a626-e2951afc6f1b", "text": "\u4e00\u5339\u9a6c\u5728\u6d45\u6c34\u6cb3\u4e2d\u98de\u5954\u3002"} +{"id": "1003910", "video_name": "482ff8d1-c94e-517b-b4d1-795346f6bea6", "text": "\u4e00\u4e2a\u62ff\u7740\u65a7\u5934\u7ad9\u5728\u9ed1\u6697\u623f\u95f4\u91cc\u7684\u7537\u4eba\uff0c\u6b63\u4fef\u89c6\u7740\u4e00\u4f4d\u5973\u6027\u3002"} +{"id": "1004915", "video_name": "5ae8c402-d30f-5369-b991-af9ce6274ea9", "text": "1940\u5e74\u83ab\u65af\u79d1\u7684UFO\u6444\u50cf\u673a\u6837\u5f0f"} +{"id": "7003467", "video_name": "78f6ad53-88ac-584e-893b-9d273f05be33", "text": "\u4e00\u4e2a\u96ea\u4eba\u5728\u5c0f\u5c4b\u65c1\u94f2\u96ea\u3002"} +{"id": "7002694", "video_name": "c6ca639d-3c6d-5816-8be7-4c60ed687130", "text": "\u5409\u59c6\u00b7\u79d1\u8d1d\u7279\u5750\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u5bc6\u6797\u4e2d\u7684\u4e00\u68f5\u6811\u4e0a\u3002"} +{"id": "4003560", "video_name": "917d5827-6ee2-5668-9e23-502b85e2ce17", "text": "\u8428\u59c6\u62ff\u7740\u4e00\u6839\u7531\u575a\u56fa\u7684\u6a61\u6811\u5236\u6210\u7684\u7279\u522b\u6cd5\u6756\uff0c\u6000\u63e3\u7740\u52c7\u6c14\uff0c\u524d\u5f80\u540d\u4e3a\u201c\u6cf0"} +{"id": "8002427", "video_name": "de36f3fb-ffc6-5ee8-8615-8bf6f1aa8355", "text": "\u6050\u6016\u3001\u60ca\u609a\u3001\u5348\u591c\u5165\u4fb5\u90ca\u533a\u7684\u50f5\u5c38\u3001\u5bb6\u5ead\u5f71\u50cf\u3001\u53d1\u73b0\u7684\u5f71\u50cf\u3001\u6296\u52a8\u7684\u753b\u9762\u3001\u892a\u8272\u7684"} +{"id": "6004257", "video_name": "eb65ffc1-0acc-561a-9932-17f7d971fa4e", "text": "3D\u52a8\u753b\uff0c\u5929\u7a7a\u4e2d\u7684\u5927\u6811\u3002"} +{"id": "2004734", "video_name": "cee514a6-e231-5742-96d4-654a3d1e7ea5", "text": "\u6cd5\u56fd\u56fd\u65d7\u892a\u8272\u53d8\u4e3a\u5fb7\u56fd\u56fd\u65d7\u3002"} +{"id": "0003419", "video_name": "3d4afd96-5bce-5a04-8783-8dc9e19b6d6b", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u7684\u89c6\u89d2\u3002"} +{"id": "3003485", "video_name": "70395224-5ec9-57ac-a88c-4908c3d35134", "text": "\u53ef\u7231\u7684\u5361\u901a\u6d77\u9f9f\u5728\u96f7\u96e8\u4e2d\u555c\u996e\u82cf\u6253\uff0c\u660e\u4eae\u7684\u8272\u5f69\uff0c16:9\u3002"} +{"id": "2004876", "video_name": "ad7ac8ad-84ac-534e-8d8d-1acc23a8ceaa", "text": "\u56fd\u738b\u548c\u738b\u540e\u5bf9\u4ed6\u4eec\u7684\u7b2c\u4e00\u4e2a\u5b69\u5b50\u975e\u5e38\u9ad8\u5174\u3002"} +{"id": "2004555", "video_name": "18d88117-33b3-5b7a-bd73-3fc99c6d6c1a", "text": "\u4e00\u5ea7\u5b81\u9759\u7684\u5c0f\u9547\u5728\u6708\u5149\u4e0b\uff0c\u4e24\u53ea\u76ae\u6bdb\u95ea\u4eae\u7684\u732b\u5728\u5b89\u9759\u7684\u8857\u9053\u4e0a\u6f2b\u6b65\u3002"} +{"id": "2003234", "video_name": "92eea332-7c3a-509a-afa8-5c58211d5c55", "text": "\u5728\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\u91cc\uff0c\u5927\u68ee\u6797\u91cc\u6709\u4e00\u53ea\u9ec4\u773c\u775b\u7684\u82f1\u56fd\u84dd\u732b\u3002"} +{"id": "3003449", "video_name": "db9c59d8-678b-5c5b-8add-d616db081ee0", "text": "\u4e24\u4e2a\u5341\u51e0\u5c81\u7684\u7537\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\u73a9\u7535\u5b50\u6e38\u620f\u3002\u6211\u4eec\u4ece\u6c99\u53d1\u540e\u9762\u548c\u4e0a\u65b9\u7684\u89d2\u5ea6\u770b\u5230\u4ed6\u4eec\u3002\u623f\u95f4\u7531\u7535\u89c6\u524d"} +{"id": "7002422", "video_name": "ed192a2f-c459-5fb2-a5b0-1194e4267e09", "text": "\u9762\u90e8\u76ae\u80a4\u7684\u538b\u529b\u548c\u6cb9\u8102\u4ea7\u751f"} +{"id": "2003869", "video_name": "4ec9c261-bbf3-5901-826f-a5eaa0fafff4", "text": "\u4e00\u8258\u5feb\u901f\u79fb\u52a8\u7684\u8239\u4e0a\u6709\u4e00\u4e2a\u4eba\uff0c\u572860\u79d2\u768416:9\u6d77\u6d0b\u4e2d\u3002"} +{"id": "3003542", "video_name": "4030b82e-1ceb-5d6b-9c1f-e0b40865bc9e", "text": "\u4e00\u53ea\u5fb7\u56fd\u7267\u7f8a\u72ac\u5728\u9662\u5b50\u91cc\u5feb\u4e50\u5954\u8dd1\u3002"} +{"id": "6003868", "video_name": "03340d6d-eeb0-58da-88f8-851ccc47d731", "text": "\u5973\u5929\u4f7f\u548c\u7537\u5929\u4f7f\u624b\u6301\u5251\u5408\u5e76\uff0c\u6210\u4e3a\u4e00\u4f4d\u5929\u4f7f\u3002"} +{"id": "0005340", "video_name": "1919046a-44d3-5900-82af-5b4c812f105a", "text": "Claudiu \u5728\u300a\u82f1\u96c4\u8054\u76df\u300b\u88ab Alex \u6253\u8d25\u4e86\u3002 \n\nSource sentence: I need to buy some groceries at the supermarket. \n\n\u6211\u9700\u8981\u5728\u8d85\u5e02\u8d2d\u4e70\u4e00\u4e9b\u98df\u54c1\u6742"} +{"id": "3003313", "video_name": "0562faba-b9dc-51e2-820e-fea7f7718cce", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u548c\u4ed6\u7684\u56db\u4e2a\u670b\u53cb\uff01"} +{"id": "0005911", "video_name": "2323255a-3264-599f-b1cd-b4d27d57a7cc", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u7740\u753b\u753b\uff0c\u5f88\u591a\u4eba\u770b\u7740\u753b\u5bb6\u3002"} +{"id": "3004467", "video_name": "08e36267-2df9-5758-b01e-ee23de9c904c", "text": "\u73bb\u7483\u706b\u8f66\u8f66\u53a2\uff0c\u5de8\u5927\u7206\u70b8\uff0c\u70df\u96fe\uff0c\u706b\u707e\uff0c\u788e\u7247\u3002"} +{"id": "7002032", "video_name": "981628e2-b32e-533b-b097-37827a173aac", "text": "\u521b\u9020\u8005\u7684\u5f20\u5f00\u624b\u4e2d\u8109\u52a8\u7740\u6e90\u80fd\u91cf\u7403\u3002"} +{"id": "3006045", "video_name": "0540bb2b-d72b-5fc9-a08e-873297b20591", "text": "\u53e4\u7f57\u9a6c\u58eb\u5175\u5728\u6f06\u9ed1\u7684\u68ee\u6797\u4e2d\u884c\u8fdb\u7684\u9ad8\u8d28\u91cf\u5f71\u7247\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2007297", "video_name": "1be14bca-f448-5ce3-b357-d08233389d8b", "text": "\u5f53\u5730\u516c\u56ed\u9633\u5149\u660e\u5a9a\uff0c\u5929\u7a7a\u6674\u6717\uff0c\u6e38\u4e50\u573a\u4e0a\u5b69\u5b50\u4eec\u73a9\u800d\u70ed\u95f9\u975e\u51e1\u3002\u6211\u4eec\u7684\u4e94\u4f4d\u5e74\u8f7b\u82f1"} +{"id": "7003652", "video_name": "a65b9008-5617-5ec7-9e05-b30920310634", "text": "\u674e\u8389\u56de\u5230\u5979\u7684\u6751\u5e84\uff0c\u4ef0\u671b\u7740\u9b54\u6cd5\u68ee\u6797\u3002"} +{"id": "6003013", "video_name": "b14e6fda-b19d-5253-a9ee-e74fc95fe615", "text": "\u94c1\u4eba\u7ad9\u5728\u8349\u539f\u7684\u4e2d\u592e\uff0c\u5929\u7a7a\u591a\u4e91\uff0c\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u95ea\u7535\u3002"} +{"id": "1005766", "video_name": "6a1a4032-23c8-5538-8af3-a2d0978a4403", "text": "\u5154\u5b50\u8df3\u8fc7\u8349\u5730\uff0c\u8fdb\u5165\u8fb9\u754c\u5bb6\u56ed\u7684\u9ed1\u6697\u68ee\u6797\u3002"} +{"id": "4003072", "video_name": "64615911-dc17-54c6-bf8a-c5838c2436ad", "text": "\u4e00\u5e45\u63cf\u7ed8\u53e4\u4ee3\u96d5\u50cf\u6216\u5b88\u536b\u7740\u602a\u7269\u548c\u4eba\u7c7b\u88ab\u9057\u5fd8\u5386\u53f2\u7684\u62a4\u536b\u8005\u7684\u56fe\u50cf\u3002\u52a8\u753b\u7247\u3002"} +{"id": "6002048", "video_name": "dae38d0e-f0fc-545b-a7f1-e34d4130cf40", "text": "\u8ba1\u7b97\u673a\u7ec8\u7aef\u751f\u6210\u7528\u4e8e\u9ed1\u5ba2\u653b\u51fb\u7684\u4ee3\u7801\u3002"} +{"id": "2003437", "video_name": "f53f970f-037f-5550-aa4a-0f91c916ae57", "text": "\u4e2d\u56fd\u516c\u5143\u524d200\u5e74\u751f\u6d3b\u7684\u7537\u4eba\u54ed\u6ce3\uff0c8k\u827a\u672f\u6444\u5f71\uff0c\u5199\u5b9e\u6982\u5ff5\u827a\u672f\uff0c\u67d4\u548c\u81ea\u7136\u7684\u4f53\u79ef\u611f\u7535\u5f71\u5b8c"} +{"id": "4002498", "video_name": "a6856b1b-d434-5608-96df-16cb0ea4c676", "text": "\u7a7f\u7740\u76d4\u7532\u7684\u7334\u738b\u6b63\u8d70\u5728\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "8001561", "video_name": "0747cf84-98f1-5793-864d-e7dc62a82d11", "text": "\u6c34\u9762\u4e0b\u7684\u9c7c\u5728\u9633\u5149\u4e0b\u6e38\u52a8\u3002"} +{"id": "3003248", "video_name": "08b09862-992f-5664-bf3e-e967eb03fe43", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u6b63\u62e5\u62b1\u7740\u4e00\u53ea\u91d1\u6bdb\u730e\u72ac\u5c0f\u72d7\u3002"} +{"id": "0006837", "video_name": "34000215-13d0-5b51-a39c-93d81f8530ba", "text": "\u8ba9\u6211\u770b\u5230\u4e00\u7247\u96e8\u548c\u96f7\u7684\u5929\u7a7a"} +{"id": "4004784", "video_name": "237ffbf2-a6b1-5793-b155-3e98114246e1", "text": "\u6709\u6d77\u6ee9\u3001\u6050\u9f99\u3001\u767d\u8272\u6c34\u6676\u3001\u8611\u83c7\u3001\u739b\u96c5\u9057\u8ff9\u548c\u5e26\u72d7\u7684\u63a2\u9669\u5bb6\u7684\u6d1e\u7a74\u3002"} +{"id": "3005800", "video_name": "71dabd54-a72e-5554-9052-b5b39f7fa82c", "text": "\u5e03\u9c81\u65af\u674e\u5728DJ\u63a7\u5236\u53f0\u4e0a\u6f14\u594f\u3002"} +{"id": "6003369", "video_name": "193d1877-401c-5eb3-9f0d-154da4126a92", "text": "\u4e00\u4e2a\u7537\u4eba\u7528\u5927\u867e\u7092\u9762\u6761\u3002"} +{"id": "8002882", "video_name": "b7be0f84-f86f-52f4-b701-30664e3678a1", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u9ed1\u767d\u8272\u91ce\u5730\u65e5\u51fa\uff0c\u98ce\u52bf\u731b\u70c8\u3002"} +{"id": "8002957", "video_name": "b6598edf-8bab-571f-8583-c382a98db11a", "text": "\u57ce\u5821\u77d7\u7acb\u5728\u70df\u96fe\u7f2d\u7ed5\u7684\u5c71\u4e0a\uff0c\u98ce\u5439\u8fc7\u6811\u6728\u548c\u82b1\u6735\uff0c\u52a8\u611f\u5341\u8db3\u3002"} +{"id": "2004138", "video_name": "4b665742-731a-55b5-a06a-3f65a33eb064", "text": "\u4e00\u4e2a\u7537\u5b69\u8eb2\u5728\u6c99\u6f20\u4e0a\u7684\u5927\u77f3\u5934\u540e\u9762\u3002"} +{"id": "6004938", "video_name": "b81f73d2-7a8a-5d01-bff0-bf1197ed863e", "text": "\u4ee5\u592a\u574a\u7b26\u53f7\u5411\u963f\u6bd4\u7279\u62c9\u59c6\u3001Optimism\u3001Polygon\u3001Gnosis\u3001Base\u56fe\u6807\u53d1\u9001\u548c\u63a5\u6536\u4ee3\u5e01\uff08\u65e0\u56fe\u6807\u4ee3\u5e01\uff09\uff0c\u8c61\u5f81\u7740\u4e92"} +{"id": "4003936", "video_name": "ca7be23e-f84b-59cd-8b30-82e0cb9e1bca", "text": "\u9b54\u517d\u4e16\u754c\u4e2d\u7684\u517d\u4eba\u548c\u4eba\u7c7b\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "2004706", "video_name": "8d484569-0c75-5dd3-a903-b5bc86156805", "text": "\u7ebd\u7ea6\u5e02\u591c\u95f4\u7a7f\u7740\u8718\u86db\u4fa0\u88c5\u7684\u7537\u5b50\uff0c\u4e25\u82db\u7684\u95ea\u5149\u706f\u6444\u5f71\u3002"} +{"id": "2004658", "video_name": "f6724585-25e9-5bd5-901a-47153c38d400", "text": "\u4e00\u4e2a\u8001\u864e\uff0c\u731b\u70c8\u5730\u5486\u54ee\u7740\u3002\u5b83\u7684\u6bdb\u76ae\u7ad6\u7acb\u7740\uff0c\u773c\u91cc\u5145\u6ee1\u4e86\u6124\u6012\u3002"} +{"id": "3003815", "video_name": "adf5b680-af89-574f-88f0-fa073784c72f", "text": "2\u4e2a\u5973\u5b69\u5728\u9152\u5427\u91cc\u7a7f\u6bd4\u57fa\u5c3c\u8df3\u821e\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "5001956", "video_name": "9c6dcf45-5c21-5b23-8422-d0b66366d260", "text": "\u5728Alfred Stieglitz 20\u4e16\u7eaa\u521d\u7684\u9897\u7c92\u72b6\u9ed1\u767d\u7167\u7247\u4e2d\uff0c\u4e00\u6392\u6392\u7684\u53cd\u4e4c\u6258\u90a6\u79fb\u6c11\u88ab\u5b89\u7f6e\u5728\u5e03"} +{"id": "7002824", "video_name": "d77ad993-5c46-5f35-93ce-d610af86d762", "text": "\u7cbe\u7075\u4ece\u98de\u673a\u4e0a\u7a7a\u964d\u5230\u4f4f\u5b85\u533a\u3002"} +{"id": "6004980", "video_name": "43b0432a-7fb9-514e-9559-bacf4e1a53f8", "text": "\u8fd9\u4e2a\u5973\u5b69\u5728\u5582\u5154\u5b50\uff0c\u800c\u82b1\u513f\u5728\u98ce\u4e2d\u6447\u66f3\u3002\u8fd9\u662f\u4f60\u60f3\u8ba9\u6211\u7ffb\u8bd1\u7684\u5417\uff1f"} +{"id": "7002689", "video_name": "aacb220e-e0ff-5222-b8b8-acb4fc904059", "text": "\u4e00\u4e2a\u7a7f\u7740\u6597\u7bf7\u7684\u4eba\u8d70\u5728\u68ee\u6797\u4e2d\uff0c\u7a81\u7136\u4e00\u4f4d\u9690\u6666\u800c\u5a01\u80c1\u6027\u7684\u4eba\u4ece\u6811\u540e\u51fa\u73b0\uff0c\u4ed6\u4eec\u76f8\u4e92"} +{"id": "2005059", "video_name": "47b93fe4-ff3d-5c67-999e-6d67d335cb20", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u81ea\u52a8\u552e\u8d27\u673a\u524d\u770b\u7740\u5979\u7684\u624b\u673a\u3002"} +{"id": "2006061", "video_name": "2465839c-2819-5102-a0b9-ce7ba8c3fd02", "text": "\u84dd\u8272\u7684\u773c\u775b\u5728\u767d\u7699\u5973\u58eb\u7684\u8138\u4e0a\u3002"} +{"id": "0006681", "video_name": "30dea65e-e95d-5f43-a889-b51aa2d7bd0b", "text": "\u4e3a\u7b14\u8bb0\u672c\u7535\u8111\u58c1\u7eb8\u521b\u5efa\u4e00\u5f20MS Dhoni\u56fe\u7247\u3002"} +{"id": "0005707", "video_name": "1fda9408-d04d-5e16-adce-7eb6cdde17bc", "text": "\u871c\u8986\u76d6\u7740\u94a2\u7434\u7684\u7279\u5199\u89c6\u9891\uff0c\u5f7c\u5f97\u00b7\u5a01\u7279\u91d1\u98ce\u683c\u7684\u821e\u53f0\uff0c\u7ea2\u8272\u548c\u6728\u8d28\u8272\u8c03\u3002"} +{"id": "6002915", "video_name": "c9db6c1c-1ad1-5386-a910-cb06de4e3cbe", "text": "Source sentence: Orca\u5728\u661f\u7a7a\u4e0b\u8df3\u51fa\u6c34\u9762\uff0c\u4f34\u968f\u7740\u70df\u82b1\uff0c\u5c31\u50cf\u8303\u00b7\u9ad8\u7684\u753b\u4f5c\u4e00\u6837\u3002\n\nTranslation: \u5728\u661f\u7a7a\u4e0b\uff0c\u4e00\u53eaOrca"} +{"id": "5001121", "video_name": "7c64d5c8-2c2e-55bd-8e46-c2bc0b034a2f", "text": "\u4e00\u540d\u7537\u5b50\u5f00\u8f66\u7ecf\u8fc7\u4e00\u5757\u6709\u72d7\u4ed4\u961f\u5728\u5916\u9762\u7684\u5e7f\u544a\u724c\u3002"} +{"id": "0006527", "video_name": "2e2025e7-6c4c-57a5-a787-89e493e9fae9", "text": "\u4ed3\u9f20\u9020\u666f\u623f\uff0c\u5177\u6709\u771f\u5b9e\u611f\u3001\u7f8e\u89c2\u6027\u548c\u6a21\u578b\u7684\u7f29\u5c0f\u7248\u3002"} +{"id": "0004604", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "\u5728\u4e00\u4e2a\u8ff7\u5e7b\u68ee\u6797\u4e2d\uff0c\u4ee5\u5409\u535c\u529b\u52a8\u753b\u7535\u5f71\u98ce\u683c\u5c55\u793a\u4e00\u4f4dDJ\u7684\u8868\u6f14\u52a8\u753b\u3002"} +{"id": "6002960", "video_name": "6707a387-9e66-5c8a-991e-0e43d93fec8f", "text": "\u4e00\u8f86\u81ea\u884c\u8f66\u653e\u5728\u8239\u9876\u4e0a\u3002"} +{"id": "6004219", "video_name": "3b65a0a1-dac0-53b1-94ea-a51387550178", "text": "\u8718\u86db\u5728\u6728\u5730\u677f\u4e0a\u722c\u884c\uff0c\u6c14\u6c1b\u9634\u6697\u3002"} +{"id": "6004879", "video_name": "bcba5134-11d2-5189-b459-d834e5dd00af", "text": "\u76f4\u5347\u673a\u5728\u5c71\u533a\u5760\u6bc1\uff0c\u65b0\u95fb\u8bb0\u8005\u5728\u89c2\u5bdf\u5760\u673a\u60c5\u51b5\u3002"} +{"id": "8002684", "video_name": "33f01371-d843-5389-936d-a3e3285c1486", "text": "\u5728\u84dd\u8272\u7684\u6c34\u4e0a\u8df3\u821e\u7684\u81ea\u7136\u5973\u4eba\u3002\u96f6\u91cd\u529b\u7684\u4e16\u754c\u3002"} +{"id": "7002346", "video_name": "d0e05700-9a50-5359-a7ff-167edb82b028", "text": "\u8001\u732b\u5934\u9e70\u548c\u677e\u9f20\u5728\u843d\u65e5\u7684\u80cc\u666f\u4e0b\u9047\u5230\u4e86\u53cb\u597d\u7684\u5154\u5b50\u3002"} +{"id": "0006848", "video_name": "342be0ef-7b56-52b4-9873-3d46e76cd65e", "text": "\u5236\u9020\u65e0\u9650\u5faa\u73af\u3001\u6d77\u6d0b\u3001\u7ea2\u73ab\u7470\u82b1\u74e3\u3001\u5929\u4f7f\u3002"} +{"id": "0004266", "video_name": "061775bc-c583-51fe-b986-52bd42e480c1", "text": "\u6c14\u7403\u98de\u8d8a\u6218\u533a\u7684\u8d858\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "3003566", "video_name": "f96c6fd2-dd4d-51d7-9483-6afe48e85f45", "text": "\u4fc4\u7f57\u65af\u706b\u7bad\u5728\u6708\u7403\u5760\u6bc1\u3002"} +{"id": "3005962", "video_name": "24927ac6-a9be-5c94-8b1b-84d830a4774d", "text": "\u65f6\u88c5\u79c0\u4e2d\uff0c\u4e00\u4f4d\u5973\u6a21\u7279\u8d70\u8def\uff0c\u753b\u9762\u9010\u6e10\u62c9\u8fdc\u3002"} +{"id": "2007185", "video_name": "326bf82a-296b-5d07-b662-13c90e31db3c", "text": "\u4e00\u6761\u88ab\u96e8\u6c34\u6253\u6e7f\u7684\u9053\u8def\u7684\u7279\u5199\u955c\u5934"} +{"id": "4002203", "video_name": "f033dd5d-4d84-51ea-919d-1f086660d7d3", "text": "\u4e24\u4e2a\u670b\u53cb\u3002\u4e00\u4e2a\u4f38\u51fa\u624b\uff0c\u63e1\u4f4f\u4e86\u53e6\u4e00\u4e2a\u7684\u624b\u3002"} +{"id": "6003164", "video_name": "bed9929e-72a6-5435-9489-b85e58877c02", "text": "\u590d\u4ec7\u7761\u7720\u62d6\u5ef6\u75c7\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8fd0\u52a84"} +{"id": "4002692", "video_name": "0bc7a711-8a02-5918-b651-3e48a9a19154", "text": "\u7334\u5b50\u5728\u4e00\u6240\u6709\u6811\u7684\u5b66\u6821\u91cc\u5403\u4e09\u660e\u6cbb\u3002"} +{"id": "7003491", "video_name": "c89263f8-d9c5-5795-bd4c-43732ec8f291", "text": "\u5927\u81ea\u7136\u88ab\u706b\u707e\u548c\u673a\u5668\u4eba\u7684\u811a\u8e0f\u8e29\u6bc1\u4e86\u3002"} +{"id": "2003626", "video_name": "c75ba6b3-b63f-52d1-94b1-b442b5f5df62", "text": "\u4e00\u4e2a\u53f2\u8bd7\u7ea7\u7684\u5927\u5916\u661f\u773c\u775b\u4ece\u5929\u800c\u964d\uff0c\u5728\u7206\u70b8\u4e2d\u5e26\u7740\u4fe1\u606f\u4ece\u5c18\u571f\u4e2d\u5192\u51fa\u6765\uff0c\u95ea\u5149\u706f\u827a"} +{"id": "7003646", "video_name": "d4be39b1-a9a6-5d5d-9884-7351a64ca85c", "text": "\u673a\u5668\u5973\u5b69\u773c\u775b\u6545\u969c\u7684\u8fd1\u8ddd\u79bb\u7f29\u653e\u3002\u9c9c\u8273\u7684\u989c\u8272\uff0c\u9ad8\u8d28\u91cf\uff0c8K\u3002"} +{"id": "3004779", "video_name": "8dc22eed-f3e4-5902-9ff9-ba2643aaef3a", "text": "\u624b\u6f02\u6d6e\u5728\u5916\u592a\u7a7a\u661f\u7cfb\u5929\u7a7a\u7684\u661f\u4e91\u52a8\u6001\u8fd0\u52a8\u4e2d\uff0c\u6444\u50cf\u673a\u7f29\u653e\u51fa\u753b\u9762\u3002"} +{"id": "3005187", "video_name": "33daacdc-9659-54c1-b7d7-4ad83b021533", "text": "\u8d1d\u7ef4\u65af\u548c\u5df4\u7279\u9ed1\u5fb7\u6b63\u5728\u70e4\u9762\u5305\u3002"} +{"id": "8001990", "video_name": "3276969d-0733-5afb-ab76-1e058e8877ae", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u5b54\u96c0\u5b66\u4f1a\u6b23\u8d4f\u68ee\u6797\u4e2d\u591a\u6837\u7684\u7f8e\u4e3d\uff0c\u5e76\u5f00\u59cb\u91cd\u5efa\u4ed6\u7684\u53cb\u8c0a\u3002\u4ed6\u4e5f\u53d1\u73b0\u81ea\u5df1\u62e5\u6709"} +{"id": "8003297", "video_name": "1e8e2171-32f7-59f7-96f4-1c9fb75cf70a", "text": "\u4efb\u4f55\u60a8\u60f3\u8981\u4ee5TikTok\u683c\u5f0f\u5448\u73fe\u7684\u5167\u5bb9\u3002"} +{"id": "2006836", "video_name": "54c7d2ef-6c13-5bfa-841f-94018dd9280c", "text": "\u54c8\u8482\u59c6\u79bb\u5f00\u4e86\uff0c\u7ecf\u8fc7\u8bb8\u591a\u9636\u6bb5\u540e\u5230\u8fbe\u4e86\u8fbe\u66fc\u79d1\u3002\u4f60\u5728\u90a3\u91cc\u770b\u5230\u7684\u662f\u6cb3\u6c34\u6ee1\u662f\u9c9c\u8840\u3002"} +{"id": "8003010", "video_name": "0ded460f-1312-5960-8139-9f98b97412c1", "text": "\u4e00\u4e2a\u56fd\u738b\u4ece\u738b\u5ea7\u4e0a\u7ad9\u8d77\u6765\u3002"} +{"id": "8002881", "video_name": "f1bc46d5-3182-5fe1-b1d1-21357457576a", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u4e66\u3002"} +{"id": "4004620", "video_name": "64e77fa6-0345-52a1-9250-d00f65dccfbc", "text": "\u5c55\u793a\u6587\u660e\u5982\u4f55\u51fa\u73b0\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "1004894", "video_name": "5a6aa5b0-cbc3-5fae-8296-d3c74779eb30", "text": "\u5728\u8d39\u745f\u4ee3\u5c14\uff0c\u8389\u8389\u53d1\u73b0\u4e86\u81ea\u5df1\u548c\u9e1f\u7c7b\u4ea4\u8c08\u7684\u72ec\u7279\u80fd\u529b\u3002"} +{"id": "0004022", "video_name": "01ac7872-8e1b-5ac9-b729-c90710fc1988", "text": "\u591c\u665a\uff0c\u6d41\u661f\u96e8\u843d\u4e0b\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u57ce\u5e02\u3002"} +{"id": "4003342", "video_name": "71460957-716f-5432-b96b-bc5363ebf519", "text": "\u4e00\u4e2a\u5143\u5b87\u5b99\u4e16\u754c\uff0c\u6709\u4e00\u53ea\u7a7f\u7740\u8d85\u5927T\u6064\u7684\u673a\u5668\u4eba\u3002"} +{"id": "7004915", "video_name": "b1a0602d-6034-59b2-a267-ea68f7275065", "text": "\u624b\u673a\u5c4f\u5e55\u6ed1\u52a8\u6d4f\u89c8\u793e\u4ea4\u5a92\u4f53\u5e16\u5b50\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "1006848", "video_name": "7d24ae24-087e-5851-b271-65ace03048e1", "text": "\u7a7f\u7740\u7ea2\u8272\u886c\u886b\u7684\u7537\u5b69\u5728\u4ed6\u5bb6\u7684\u9662\u5b50\u91cc\u73a9\u800d\uff0c\u4ed6\u9762\u5bf9\u7740\u4e00\u4e2a\u6709\u5f88\u591a\u6811\u7684\u516c\u56ed\uff0c\u5728\u591c\u665a\uff0c"} +{"id": "0005900", "video_name": "22f65260-5773-5995-926c-4b943243b23c", "text": "\u4e08\u592b\u79bb\u5f00\u59bb\u5b50\uff0c\u59bb\u5b50\u54ed\u6ce3\u5e76\u6073\u6c42\u4ed6\u4e0d\u8981\u79bb\u5f00\u3002"} +{"id": "0003062", "video_name": "365775ba-d583-5735-81dc-5ea43f0f6307", "text": "\u4e00\u8258\u8239\u5728\u6d77\u4e0a\u822a\u884c\u3002"} +{"id": "1004203", "video_name": "4db1c092-d23b-52c5-b63a-10ad5ef6868d", "text": "\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\u76f8\u5411\u5954\u8dd1\uff0c\u8df3\u8d77\u6765\u7528\u62f3\u5934\u4e92\u76f8\u653b\u51fb\uff0c\u4f7f\u7528\u706b\u548c\u6c34\u5143\u7d20\uff0c\u5947\u5e7b\uff0c16\uff1a9\uff0c\u706b\u82b1\u56db"} +{"id": "3005621", "video_name": "ba303fc3-8350-555b-ab81-63c0c3bcf9fe", "text": "\u955c\u5934\u79fb\u5411\u623f\u95f4\u89d2\u843d\u7684\u4e00\u4e2a\u6a21\u7cca\u4eba\u5f71\uff0c\u6b64\u65f6\u9634\u68ee\u7684\u97f3\u4e50\u58f0\u9010\u6e10\u9ad8\u6da8\u3002"} +{"id": "2003485", "video_name": "a7e39a92-a21e-5dc6-a85c-09b5d84f234a", "text": "25\u5c81\u7684\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u514b\u5f7b\uff08Amitabh Bachchan\uff09\u7559\u7740\u957f\u9ed1\u80e1\u987b\u5f39\u94a2\u7434\u3002"} +{"id": "1005707", "video_name": "68e6e957-7925-5f9f-9d8d-7af6592628f5", "text": "\u4e00\u4e2a\u5b69\u5b50\u62ff\u7740\u753b\u7b14\u753b\u753b\uff0c\u753b\u91cc\u7684\u4eba\u7269\u81ea\u5df1\u52a8\u8d77\u6765\u4e86\u3002"} +{"id": "0006395", "video_name": "2bc6ffe8-e22f-5033-8eaf-4db7d3811f82", "text": "\u60ca\u6050\u7684\u732b\uff0c\u9ec4\u8272\u7684\u773c\u775b\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002"} +{"id": "2003995", "video_name": "96434a73-fdce-5635-a0e4-08d494b8cc77", "text": "1930\u5e74\u65e0\u4eba\u673a\u62cd\u6444\u7684\u7535\u5f71\u5de5\u4f5c\u5ba4\u73b0\u573a\u3002"} +{"id": "6004649", "video_name": "0edb58b4-398b-52d9-97bf-3e7da7153d74", "text": "\u7528\u8fd1\u8ddd\u79bb\u955c\u5934\u62cd\u6444\u4e00\u53ea\u624b\u5728\u4e00\u5757\u5e03\u6599\u4e0a\u523a\u7ee3\u56fe\u6848\u3002"} +{"id": "1004677", "video_name": "56e845e3-1bbb-5ae9-b288-7557143503e0", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u5728\u62f3\u51fb\u6bd4\u8d5b\u4e2d\u8fdb\u884c\u4e86\u6bd4\u8d5b\u3002"} +{"id": "3006231", "video_name": "d2dd354f-1016-57be-848f-38d4f17deb15", "text": "\u7f9e\u803b\u3001\u540e\u6094\u6216\u7edd\u671b\u3002\u60a3\u6709\u6291\u90c1\u75c7\u6216\u538b\u529b\u7684\u60b2\u4f24\u5b64\u72ec\u7684\u5e74\u8f7b\u4eba\u3002\u5728"} +{"id": "0003395", "video_name": "3ccfc894-efe2-5f11-bc38-742eb7e1b31c", "text": "\u62c9\u5e03\u62c9\u591a\u8b66\u5bdf\u5728\u4ea4\u901a\u4fe1\u53f7\u706f\u5904\u3002"} +{"id": "2007210", "video_name": "8e396ccc-56c6-561d-b19d-c55f5419214c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u7247\u8352\u91ce\u4e2d\u89c2\u770b\u7740\u4e00\u5757\u77f3\u7891\uff0c\u5468\u56f4\u7684\u690d\u88ab\u5f88\u8302\u76db\u3002"} +{"id": "2006649", "video_name": "12d82fbd-90d5-50eb-992d-8892e2443432", "text": "\u5730\u7403\u8868\u9762\u5145\u6ee1\u4e86\u83e0\u841d\uff0c\u9664\u6b64\u4e4b\u5916\u6ca1\u6709\u5176\u4ed6\u4e1c\u897f\u3002\n\nSource sentence: I want to learn Chinese because it is such a beautiful language. \n\n\u6211\u60f3\u5b66\u4e2d\u6587\uff0c\u56e0\u4e3a"} +{"id": "3003019", "video_name": "6c0177d8-42fd-5840-aa72-7ea16f5792c7", "text": "\u6fb3\u5927\u5229\u4e9a\u7267\u7f8a\u72ac\u5728\u8349\u5730\u4e0a\u8ffd\u9010\u6728\u68d2\uff0c\u5954\u8dd1\u7740\u3002"} +{"id": "6002007", "video_name": "bc117894-8919-5968-af1d-9fe591bdb1b1", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\u5c55\u793a\u4eba\u4f53\u52a8\u8109\u7cfb\u7edf\u7684\u590d\u6742\u6027\u548c\u91cd\u8981\u6027\u3002\u7a81\u51fa\u4e3b\u8981\u52a8\u8109\u7684\u8def\u5f84\u4ee5\u53ca\u5b83\u4eec\u5728\u5411\u4e0d\u540c\u5668\u5b98\u8f93\u9001\u6c27"} +{"id": "8002253", "video_name": "758905a8-ae8a-5ab3-8aa6-f599cbc0b659", "text": "\u6bcf\u4e2a\u4eba\u90fd\u8ddf\u7740\u98ce\u8d77\u821e\uff0c\u521b\u9020\u51fa\u4e00\u79cd\u4ee4\u4eba\u5b81\u9759\u548c\u91cd\u590d\u7684\u8fd0\u52a8\u3002\u56fe\u7247\u4e2d\u7684\u6bcf\u4e2a\u4eba\u90fd\u5728\u7b11\u7740\uff0c\u6b22\u4e50"} +{"id": "2004942", "video_name": "401d9df9-0417-5c58-9a17-7c007b3edab7", "text": "\u67e5\u5c14\u65af\u00b7\u76ae\u8036\u7f57\u5728\u8fea\u65af\u79d1\u72ec\u81ea\u8df3\u821e\u3002"} +{"id": "4002601", "video_name": "ab5acbce-9312-51a1-9bcf-afe7e6713c5d", "text": "\u8db3\u7403\u5386\u53f2\u4e0a\u6700\u68d2\u7684\u8fdb\u7403\uff0c\u4ece\u771f\u5b9e\u8db3\u7403\u6bd4\u8d5b\u573a\u5730\u9876\u90e8\u89c2\u770b\u3002 \n\nSource sentence: I am looking forward to traveling to China and experiencing its culture. \n\n"} +{"id": "3003265", "video_name": "605d5d1c-3093-5af6-9278-b46bd0e89bc2", "text": "\u5728\u4e00\u4e2a\u6e29\u6696\u7684\u623f\u95f4\u91cc\uff0c\u6709\u58c1\u7089\u548c\u5496\u5561\u3002\u7a97\u5916\uff0c\u5927\u96e8\u503e\u76c6\uff0c\u5ba4\u5185\u5145\u6ee1\u4e86\u50ac\u7720\u7684"} +{"id": "3004949", "video_name": "c5311380-6920-5965-8735-405de2ce23da", "text": "\u4e00\u7fa4\u9a6c\u5339\u671d\u6211\u5954\u8dd1\uff0c\u592a\u9633\u4ece\u80cc\u666f\u4e2d\u5347\u8d77\u3002"} +{"id": "4002586", "video_name": "dd9d97de-0dfa-532b-8fb5-a81a4a9fea03", "text": "\u8d85\u4eba\u6025\u901f\u7a7f\u8d8a\u592a\u7a7a\u7684\u5f00\u573a\u955c\u5934\u3002"} +{"id": "2004368", "video_name": "a7ca5103-231b-5a08-9e11-b489938e0073", "text": "\u4e00\u628a\u88ab\u706b\u5305\u56f4\u7684\u6728\u5236\u738b\u5ea7\u3002"} +{"id": "4003940", "video_name": "6f62907f-d353-5caf-8fd9-1a1c74a62c07", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u4e1b\u6797\uff0c\u9ad8\u8038\u5165\u4e91\u7684\u5927\u6811\u4e2d\u592e\uff0c\u72ee\u5b50\u72ec\u81ea\u7ad9\u7acb\uff0c\u4e00\u8138\u56f0"} +{"id": "2005771", "video_name": "43c5b88c-5318-5edd-aa2b-3939482f66e5", "text": "\u535a\u58eb\u65af\u5170\u666e\u963f\u83b1\u9171\u6b63\u5728\u505a\u745c\u4f3d\u3002"} +{"id": "5001026", "video_name": "bd16ef1c-ab4b-5d27-9fdd-15a390ea69d1", "text": "\u4e00\u4e2a\u4eba\u5f39\u94a2\u7434\u975e\u5e38\u5feb\u3002"} +{"id": "4002509", "video_name": "ea9eb8c9-2ada-5adb-913c-503d6d57907c", "text": "\u4e00\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u88ab\u72ee\u5b50\u8ffd\u8d76\uff0c\u903c\u771f\u3002"} +{"id": "0004421", "video_name": "08a4e6ec-5fb3-529e-a1b6-cf0f38a9e66c", "text": "\u63a2\u7d22\u5b87\u5b99\u5b9e\u4f53\u6216\u5b88\u62a4\u8005\u7684\u6982\u5ff5\uff0c\u4ed6\u4eec\u76d1\u7763\u661f\u9645\u8f6c\u4e16\u7684\u8fc7\u7a0b\u3002\u4f7f\u7528\u795e\u79d8\u7684\u56fe\u50cf\u6765\u4f7f\u8fd9\u4e2a\u60f3"} +{"id": "8003015", "video_name": "bf9ce851-446f-5d7b-85da-9af4eec08166", "text": "\u5b87\u5b99\u80fd\u91cf\u7684\u65cb\u8f6c\u95e8\u6237\u3002\u4fe1\u606f\uff1a\u8d24\u8005\u4e4b\u751f\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "6003257", "video_name": "83cf0dac-d897-5726-a468-213536fd29c7", "text": "\u5976\u725b\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u903c\u771f\uff0c8K\u3002"} +{"id": "3004993", "video_name": "adc20d23-93e8-5329-9fd5-afc62fbd6f82", "text": "\u4e00\u4e2a\u6709\u65b0\u6708\u7403\u7684\u65b0\u5730\u7403\u3002"} +{"id": "2005683", "video_name": "5b046026-4337-5d63-a08d-4851823c9c22", "text": "\u83b7\u5956\u7684CGI\u52a8\u753b\u77ed\u7247"} +{"id": "1005120", "video_name": "5e6787db-e65d-5cb8-a1b0-adbc5e8341b0", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u4e0d\u62d8\u5c0f\u8282\u5730\u5403\u7740\u4e00\u6839\u6ef4\u7740\u5976\u916a\u6c41\u7684\u5fb7\u56fd\u9999\u80a0\uff0c\u903c\u771f\u7684"} +{"id": "6002995", "video_name": "2ccd50d0-106d-5937-9db6-e3a07edb1dbb", "text": "\u4e8c\u6b21\u66dd\u5149\u5b9e\u9a8c\uff0c\u4e0a\u4e16\u7eaa70\u5e74\u4ee3\u672b\u768416\u6beb\u7c73\u7535\u5f71\uff0c\u6d77\u6d0b\u6c34\u548c\u955c\u5b50\u53cd\u5c04\u5bfc\u81f4\u65f6\u88c5\u6a21\u7279\u8ff7\u5931\u65b9\u5411"} +{"id": "6004435", "video_name": "ff2a0a70-8ad7-558b-8278-29d102d66465", "text": "\u4e00\u5e45\u63d2\u753b\uff0c\u753b\u7684\u662f\u4e00\u4f4d\u5973\u5b50\u5728\u5c71\u4e0a\u5f92\u6b65\u65c5\u884c\u3002"} +{"id": "2005144", "video_name": "dc80d7b3-f571-5646-8619-007f9bf8f6bf", "text": "\u6709\u661f\u661f\u3001\u4e00\u4e9b\u884c\u661f\u548c\u4e00\u9897\u6d41\u661f\u7684\u592a\u7a7a\uff0c\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "1003178", "video_name": "3a757c89-cf29-59a7-9679-2b74b12352f8", "text": "\u7531\u4e8e\u6218\u4e89\u800c\u7559\u4e0b\u7684\u6d41\u79bb\u5931\u6240\u7684\u513f\u7ae5\u548c\u4ed6\u4eec\u7684\u5bb6\u5ead\uff0c\u4ed6\u4eec\u8eab\u540e\u7684\u6218\u4e89\u70df\u96fe\u662f\u4e00\u4e2a\u771f\u5b9e\u7684\u7535"} +{"id": "8002800", "video_name": "04042cb6-2c72-556a-8c18-7999e73ee34e", "text": "\u5723\u8bde\u6751\u4e09\u7ef4\u6a21\u578b\uff0c\u623f\u5c4b\u4e0a\u5806\u6ee1\u4e86\u96ea\u3002"} +{"id": "6004117", "video_name": "c52ee67d-6ac9-5886-8f10-e67c1acdf2e2", "text": "\u5927\u811a\u602a\uff0c\u5486\u54ee\u58f0\uff0c\u739b\u96c5\u90e8\u843d\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u94f6\u773c\u775b\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u5b8c\u6574\u7ec6\u8282\uff0c"} +{"id": "2007287", "video_name": "c54ce11f-d1c6-57c2-9c43-6c129b09191b", "text": "\u7537\u6027\u89d2\u8272\u7684\u9510\u5229\u773c\u795e\u6ce8\u89c6\u8fdc\u65b9\u7684\u5730\u5e73\u7ebf\u3002\u6444\u50cf\u673a\u4ece\u6781\u53f3\u5230\u6781\u5de6\u6a2a\u8de8\uff0c\u773c\u775b\u7684\u8fd0\u52a8\u96c6\u4e2d\u5728"} +{"id": "7002096", "video_name": "3a22b8ce-9b35-56d1-aab7-6aa950b37bca", "text": "\u5c0f\u7537\u5b69\u4ece\u5723\u8bde\u8001\u4eba\u90a3\u91cc\u63a5\u6536\u793c\u7269\u3002"} +{"id": "1005322", "video_name": "61c18ee3-c4bf-584a-bc76-027158b36f8a", "text": "\u5361\u8482\u51ef\u4e9a\u00b7\u6c99\u739b\u548c\u963f\u5c14\u8d21\u00b7\u9a6c\u5c14\u970d\u7279\u62c9\u5728\u98de\u884c\u9014\u4e2d\u88ab\u7ed1\u67b6\u3002\u4ed6\u4eec\u88ab\u56f0\u5728\u4e00\u4e2a"} +{"id": "4002858", "video_name": "6e048256-e0aa-53ae-bfc7-afc04ec70589", "text": "3D\u52a8\u753b\u83ab\u5a1c\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "8003145", "video_name": "2a7dd90d-537c-56d5-a10a-531981bfc985", "text": "\u521b\u4f5c\u4e00\u4e2a\u77ed\u7684\u52a8\u753b\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e00\u4e2a\u80a9\u957f\u7565\u5fae\u6ce2\u6d6a\u7684\u68d5\u8272\u5934\u53d1\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5979\u6df7\u8840\u82f1\u67ec\u3002\u89c6\u9891"} +{"id": "6003882", "video_name": "50965b2c-ef0d-555d-b20f-a01a297b9021", "text": "\u9e66\u9e49\u548c\u670b\u53cb\u4e00\u8d77\u98de\u884c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005416", "video_name": "0cafee58-f15c-5e57-8d2a-0c4dc7901aab", "text": "\u9ad8\u5927\u7684\u7537\u4eba\u7a7f\u7740\u4e00\u4ef6\u5e26\u515c\u5e3d\u7684\u6597\u7bf7\uff0c\u4ed6\u4eec\u7684\u8138\u5728\u8fdc\u5904\u88ab\u906e\u6321\u4f4f\u4e86\u3002"} +{"id": "2004371", "video_name": "9d3e7726-4a09-55c6-80f8-8e14dab180f1", "text": "\u7537\u5b69\u5728\u8349\u5730\u4e0a\u770b\u7740\u5973\u5b69\u3002"} +{"id": "3006709", "video_name": "f289e79d-ce99-5f75-a076-cec79aeefe5b", "text": "\u4e00\u4e2a\u5149\u6548\uff0c\u9ed1\u767d\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u3002"} +{"id": "8003903", "video_name": "829cf790-1296-52b8-b219-242009be7e4f", "text": "\u5236\u4f5c\u4e00\u4e2a3D\u5361\u901a\uff0c\u4e00\u7fa4\u6301\u6b66\u5668\u7684\u7537\u4eba\u6b63\u5728\u5411\u795e\u5947\u7684\u6811\u884c\u8fdb\u3002\u6751\u6c11\u4eec\u60ca\u6050\u5730\u89c2\u671b\u7740\u4ed6\u4eec\u3002"} +{"id": "4003179", "video_name": "c01cadc5-54fa-5c8f-8753-7c85a7f4ccf9", "text": "\u5c06\u4ee5\u8272\u5217\u5efa\u56fd\u5bf9\u5df4\u52d2\u65af\u5766\u4eba\u53e3\u7684\u5f71\u54cd\u5f62\u8c61\u5316\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u7535\u5f71\u5316\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "0003212", "video_name": "3957fb1e-f3c3-57d4-bbdd-5ede1eded78c", "text": "\u57ce\u5e02\u5929\u9645\u7ebf \u4fe1\u606f\uff1a\u8857\u9053\u83b7\u80dc\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005723", "video_name": "694c7efb-9697-5d3e-9ebe-588d8bf645c9", "text": "\u4e00\u5ea7\u9760\u8fd1\u6cb3\u6d41\u7684\u623f\u5b50\uff0c\u80cc\u666f\u662f\u96ea\u5c71\u3002"} +{"id": "6004915", "video_name": "d30367aa-92f2-5cb1-a7a7-b9e53ef7881f", "text": "\u514b\u6797\u7279\u00b7\u4f0a\u65af\u7279\u4f0d\u5fb7\u9a91\u7740\u6469\u6258\u8f66\u7a7f\u8d8a\u6c99\u6f20\uff0c\u8eab\u65c1\u5750\u7740\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973"} +{"id": "2006263", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "\u51b0\u6cb3\u65f6\u671f\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "6003550", "video_name": "eb2ff41d-de99-5b28-9dcc-52cd41664aec", "text": "\u4e00\u4e2a\u7a7f\u7740\u7ea2\u88d9\u5b50\u7684\u91d1\u53d1\u5973\u5b50\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "3003032", "video_name": "8f1af2db-6861-51f8-8676-b71a687562b3", "text": "\u8d8a\u91ceSUV\u9a7e\u9a76\u7a7f\u8d8a\u5c71\u8109\uff0c\u5927\u578b\u8d8a\u91ce\u8f6e\u80ce\u3002"} +{"id": "8002699", "video_name": "e02c1fed-3257-5197-bbe3-6ab3b8b9d570", "text": "\u8fe6\u592a\u57fa\u3001\u4e9a\u7279\u5170\u8482\u65af\u6587\u660e\u3001\u6c49\u5c3c\u62d4\u00b7\u5df4\u5361\u5c06\u519b\u3001\u5927\u8c61\u3001\u8fe6\u592a\u57fa\u6e2f\u53e3\u3001\u519b\u961f\u3001"} +{"id": "2005643", "video_name": "8ace3852-b5fd-562c-b28d-2910e30172f2", "text": "\u5b87\u5b99\u98de\u8239\u964d\u843d\u4e86\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u51fa\u6765\uff0c\u88ab\u96fe\u6c14\u6240\u5305\u56f4\u3002\u6444\u50cf\u673a\u4ece\u8fdc\u5230\u8fd1\u8fdb\u884c\u4e86\u653e\u5927\u3002"} +{"id": "2006742", "video_name": "089c2766-5f63-5a5a-b376-017a2380581d", "text": "\u7af9\u6797\u4e2d\u7684\u4e00\u6761\u5c0f\u8def\uff0c\u7af9\u5b50\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "1005448", "video_name": "641fc14b-59e2-5b6e-8f9c-51209aa872cb", "text": "\u4e00\u53f0\u8df3\u8857\u821e\u7684\u673a\u5668\u4eba\u505a\u51fa\u9177\u70ab\u590d\u6742\u7684\u52a8\u4f5c\u3002"} +{"id": "8002466", "video_name": "334f8aa4-bd78-5a10-94f1-2ecba9950ef1", "text": "\u4e00\u53ea\u6234\u7740\u773c\u955c\u7684\u5154\u5b50\u6b63\u5728\u5f39\u594f\u94a2\u7434\uff0c\u4e00\u53ea\u72d0\u72f8\u7ad9\u5728\u540e\u9762\u89c2\u770b\u3002"} +{"id": "8001533", "video_name": "b0e9bb8d-7a0d-5191-aa01-91c31dc78a07", "text": "\u4f11\u95f2\u516c\u56ed\uff0c\u4ece\u4e0a\u5230\u4e0b\u62cd\u6444\uff0c\u903c\u771f\u3002"} +{"id": "7003909", "video_name": "dbba3256-4d57-5044-966e-38d04823a561", "text": "\u7d2b\u8272\u773c\u955c\u738b\u86c7\u5411\u6444\u50cf\u673a\u653b\u51fb\u3002"} +{"id": "3003471", "video_name": "16e2111e-c664-5c1e-8da5-cdc74c938e44", "text": "\u7070\u8272\u864e\u6591\u732b\u7684\u8138\u88ab\u53e0\u52a0\u5728\u4eba\u7fa4\u4e2d\u8df3\u821e\u7684\u753b\u9762\u4e0a\uff0c\u95ea\u70c1\u7740\u706f\u5149\u3002"} +{"id": "3006047", "video_name": "1a7cf28b-91d8-563c-9682-1b1b8f326383", "text": "\u6811\u4e0a\u4e4c\u9e26\uff0c\u6811\u4e0b\u86c7\u3002"} +{"id": "8003549", "video_name": "0f61252c-89a3-5af2-8927-387de8ca6c80", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u767d\u8272\u7684\u7eb8\u4e0a\u5236\u4f5c\u6bdb\u8863\u8bbe\u8ba1\u7684\u624b\u3002"} +{"id": "6002133", "video_name": "1b8bdc38-a2cb-5d4a-b458-bc448afd22b6", "text": "\u5728\u5fae\u98ce\u4e2d\u5934\u53d1\u98d8\u52a8\u7684\u540c\u65f6\u770b\u7740\u76f8\u673a\u3002"} +{"id": "6004862", "video_name": "d6eaebf1-8dfd-5d90-b50c-19b783e4cfd3", "text": "\u8ffd\u96a8\u901a\u5f80\u5c71\u8108\u7684\u5c0f\u5f91\u7684\u6230\u58eb\u3002"} +{"id": "8002933", "video_name": "a3635692-9395-56c5-8a15-6cc9e27ffd49", "text": "\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u52a8\u753b\uff0c\u6a59\u8272\u548c\u767d\u8272\u7684\u5934\u53d1\u3002"} +{"id": "0004106", "video_name": "034c61e3-5a10-51f2-bcc6-112bfd3a9cdc", "text": "\u6ee1\u6ee1\u6ea2\u51fa\u7684\u963f\u897f\u62c9\u7c98\u571f\u5b97\u6559\uff0c\u50cf\u4e54\u7eb3\u68ee\u00b7\u7c73\u65af\u7684\u5e95\u7eb9\u4e00\u6837\u91cd\u53e0\u7740\uff0c\u54c8\u745e\u6ce2"} +{"id": "3003026", "video_name": "427dd7ab-8200-5929-9bdf-89e9541499d5", "text": "\u5e05\u6c14\u7684\u7537\u5b69T\u5f62\u7ad9\u59ff\uff0cAR 16:9\uff0c8K\u753b\u8d28\uff0c\u56fe\u50cf\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "2007094", "video_name": "6d2fae53-ff5d-59fb-9e50-2791cfc5b973", "text": "\u4e00\u4f4d\u6b63\u5728\u6361\u62fe\u6d77\u661f\u7684\u5e74\u8f7b\u7537\u5b69\u3002"} +{"id": "7004815", "video_name": "aa1a0be4-58f9-538b-8946-de99778cc6b5", "text": "\u4ed6\u4eec\u4e0d\u987e\u4e00\u5207\uff0c\u56e2\u7ed3\u5728\u4e00\u8d77\u53cd\u6297\u6b96\u6c11\u7edf\u6cbb\u548c\u79cd\u65cf\u9694\u79bb\u653f\u7b56\u3002"} +{"id": "4003107", "video_name": "b7b5aa78-acd7-5a3f-b20b-0ca649233525", "text": "\u4e00\u540d\u8eab\u7a7f\u6df1\u8272\u5927\u8863\u3001\u8499\u9762\u5e26\u515c\u5e3d\u7684\u7537\u5b50\u624b\u6301\u94c1\u9524\uff0c\u4ece\u4e00\u5bb6IT\u516c\u53f8\u7684\u9ed1\u6697\u5bbd\u655e\u529e\u516c\u5ba4"} +{"id": "2004775", "video_name": "334b7342-79a2-5023-b90e-79aa754b811c", "text": "\u5728\u5893\u5730\u91cc\u6f14\u594f\u7235\u58eb\u4e50\u7684\u9ab7\u9ac5\u827a\u672f\u4e50\u961f"} +{"id": "6003707", "video_name": "f86d03c6-5ad9-502c-9dd6-d73a273d35a9", "text": "\u624b\u8868\u663e\u793a\u65f6\u95f4\u662f4\u70b9\uff0c\u98ce\u5728\u5439\u3002"} +{"id": "8003538", "video_name": "d29db513-8eb6-53e7-bc58-c4d623c6e81d", "text": "\u4f0a\u5fb7\u745e\u65af\u00b7\u827e\u5c14\u5df4\u626e\u6f14Nestle Crunch\uff0c\u98de\u884c\u5728\u7a7a\u4e2d\u3002"} +{"id": "1006750", "video_name": "7b93358e-3a6e-5d4b-a5bc-377102b85ba5", "text": "\u9ad8\u6e05\u6670\u5ea6\u4e0b\uff0c\u4e00\u4e2a\u957f\u5f97\u50cf\u5973\u6f14\u5458\u9edb\u6bd4\u00b7\u9a6c\u624e\u7684\u7f8e\u4e3d\u6a21\u7279\u4ee5\u79c1\u623f\u98ce\u683c\u6444\u5f71\u4e3a\u4f8b\uff0c\u5168\u8eab\u7a7f\u7740\u7d27"} +{"id": "6003535", "video_name": "693ee903-94ae-5c0d-a458-7b23b7764638", "text": "\u7537\u4eba\uff0c\u7eff\u8272\u5934\u53d1\uff0c\u5728\u4e00\u4e2a\u5145\u6ee1\u8367\u5149\u5f69\u706f\u7684\u5f55\u97f3\u5ba4\u91cc\u5531\u6b4c\u3002"} +{"id": "1004392", "video_name": "5134383d-e869-595b-86ae-c4f3a39ae928", "text": "\u6311\u6230\u623f\u9593\u7684\u6a19\u8a8c\u5fbd\u7ae0\uff0c\u4ee3\u8868\u8457\u8eab\u9ad4\u3001\u5fc3\u667a\u548c\u6280\u80fd\u4e0a\u7684\u6311\u6230\u54c1\u724c\u3002"} +{"id": "2003659", "video_name": "66069913-5a1f-5917-966a-f52daa0aa2d8", "text": "\u5e74\u8f7b\u65f6\u6709\u4e13\u4e1a\u77e5\u8bc6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004314", "video_name": "4baec2fa-75b2-5203-88b5-3179ff48eb3c", "text": "\u4eba\u7269\u5728\u56f4\u5899\u4e2d\u592e\u53d1\u73b0\u4e86\u4e00\u6247\u95e8\u5e76\u6253\u5f00\u4e86\u5b83\u3002"} +{"id": "7004434", "video_name": "09e091d4-9767-5e40-ab25-3c34931e74dd", "text": "\u4e00\u53ea\u91d1\u8272\u7684\u62c9\u5e03\u62c9\u591a\u730e\u72ac\u5728\u5927\u540e\u9662\u7684\u8349\u5730\u4e0a\u884c\u8d70\uff0c\u4ee53D\u98ce\u683c\u52a8\u753b\u5448\u73b0\u3002"} +{"id": "3004556", "video_name": "3df68915-e817-5ff3-b364-836a6f2fc61d", "text": "\u8b66\u8f66\u9ad8\u901f\u884c\u9a76\u7a7f\u8fc7\u57ce\u5e02\uff0c\u8b66\u7b1b\u9e23\u54cd\u3002\uff08\u9ad8\u8d28\u91cf\uff0c\u57ce\u5e02\u80cc\u666f\uff0c\u8b66\u7b1b\u9e23\u54cd\u3002\uff09"} +{"id": "4004949", "video_name": "2cdca7c5-f153-5513-9f1b-054bbc6e3682", "text": "\u4e16\u754c\u7740\u706b\uff0c\u900f\u660e\u80cc\u666f\uff0c\u4fa7\u89c6\u56fe\u3002"} +{"id": "8001775", "video_name": "0fa76024-b6cc-5461-9229-e67fd347d088", "text": "\u84dd\u773c\u775b\u76844\u5c81\u5973\u5b69\u6254\u51b0\u51bb\u7684\u7c89\u672b\u3002"} +{"id": "1004813", "video_name": "58f1c5c9-8956-5ceb-870d-bc530bb86a12", "text": "\u4e54\u591a\u6d1b\u592b\u65af\u57fa\u98ce\u683c\u7684\u5e26\u5e3d\u7537\u5b50\u7684\u7535\u5f71\u89c6\u89d2\u3002"} +{"id": "2005032", "video_name": "9ea0c7bf-d526-5c88-923a-9dc9dfa3680f", "text": "\u4e00\u4e2a\u5916\u661f\u7269\u4f53\u5728\u672a\u6765\u4e3b\u4e49\u7d2b\u8272\u68ee\u6797\u4e2d\u53d1\u751f\u9ad8\u6e05\u903c\u771f\u7684\u7f51\u7edc\u7206\u70b8\u3002"} +{"id": "1003138", "video_name": "39e1e978-c136-5b5f-8831-fe965d070f4d", "text": "\u8001\u56fd\u738b\u624b\u6301\u62d0\u6756\u5728\u6cbc\u6cfd\u5730\u4e2d\u884c\u8d70\uff0c\u80cc\u666f\u6709\u95ea\u7535\uff0c\u753b\u8d28\u4e3a\u8d85\u6e05\u66704K\u4e13\u4e1a\u7ea7\u522b\u3002"} +{"id": "4004740", "video_name": "7110d6ff-c205-5e30-ade0-0a38efacd0c3", "text": "\u94dd\u7f50\u91cc\u7684\u725b\u5976\u6d12\u4e86\u51fa\u6765\uff0c\u4ece\u7f50\u5e95\u89c6\u89d2\u770b\uff0c3D\u3002"} +{"id": "7003460", "video_name": "b33f35e9-dcb6-5a6a-8c00-2db260fbbe29", "text": "\u5c55\u793a\u4e00\u5f20\u8239\u79bb\u6e2f\u53e3\u51fa\u53d1\u7684\u56fe\u50cf\uff0c\u6709\u7740\u6d77\u5458\u7684\u611f\u89c9\u548c\u7a7a\u6c14\u4e2d\u7684\u5192\u9669\u548c\u671f\u5f85\u3002"} +{"id": "8001760", "video_name": "6e7a5014-03f9-5c95-ab95-804d20c84f8c", "text": "\u8d85\u7ea7\u903c\u771f\u7684\u89c6\u9891\uff0c\u4eba\u4eec\u4ef0\u671b\u5929\u7a7a\uff0c\u770b\u5230\u4e86\u4e00\u6b21\u5de8\u5927\u7684\u7206\u70b8\u4e2d\u7684\u6708\u4eae\u3002"} +{"id": "3005186", "video_name": "fe66d273-8794-5724-b663-88f1644206f1", "text": "\u5929\u7a7a\u591a\u4e91\uff0c\u6444\u50cf\u5934\u5411\u5916\u7f29\u653e\u3002\u4fe1\u606f\uff1aLIA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004060", "video_name": "bd0c84cc-ee33-593e-984a-36c24982210f", "text": "\u900f\u8fc7\u7a97\u6237\u770b\u5230\u5df4\u9ece\u7684\u827e\u83f2\u5c14\u94c1\u5854\u666f\u8272\uff0c\u623f\u95f4\u5185\u6709\u53ea\u5c0f\u732b\u5750\u7740\uff0c\u5c4b\u5185\u7684\u7d2b\u8272\u706f"} +{"id": "2003232", "video_name": "efcc5c7e-db62-553b-b5e9-e5ecb989be1a", "text": "1950\u5e74\u7f8e\u5b66\u7535\u5f71\u3002\u65e0\u4eba\u673a\u89c6\u89d2\u4e0b\u7684\u903c\u771f\u5893\u5730\u3002\u7eff\u8349\u548c\u9ed1\u8272\u5929\u7a7a\u3002"} +{"id": "8002558", "video_name": "2b921786-3c32-5865-967e-41c576ad541a", "text": "\u7528\u65e0\u4eba\u673a\u62cd\u6444\u3001\u7535\u5f71\u822c\u7684\u30018K\u7684\u753b\u8d28\u8bb0\u5f55\u5efa\u7acb\u57282125\u5e74\u7684\u8d5b\u57ce\uff0c\u98ce\u683c\u4e3a\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "6004834", "video_name": "ee570c65-4951-5abf-8e0a-9eda8f3144c1", "text": "\u5c06\u7126\u8ddd\u653e\u8fd1\uff0c\u5bf9\u4e00\u4e2a\u706b\u8f66\u8d27\u8f66\u65c5\u6e38\u666f\u70b9\u8fdb\u884c\u7279\u5199\u3002"} +{"id": "3005175", "video_name": "a225b15f-1233-528d-9106-844f32a9cbcb", "text": "and other cryptocurrencies.\n\nTranslation: \u72d7\u5728\u7f8e\u5143\u3001\u6bd4\u7279\u5e01\u548c\u5176\u4ed6\u52a0\u5bc6\u8d27\u5e01\u7684\u80cc\u666f\u4e0b\u5954\u8dd1\u3002"} +{"id": "6004559", "video_name": "e1dca287-2993-5e7a-899b-5e96da705a86", "text": "\u4e00\u53ea\u6234\u7740\u7c89\u8272\u9879\u5708\u3001\u80f8\u524d\u662f\u767d\u8272\u7684\u5c0f\u732b\u3002"} +{"id": "2003836", "video_name": "f7d3e287-6d3c-5ca3-8b61-8775f02b66b6", "text": "\u4e00\u4f4d\u5370\u5ea6\u5973\u6b4c\u624bSujata Roy\u5728\u97f3\u4e50\u5f55\u97f3\u5ba4\u91cc\u5531\u6b4c\uff0c\u4f69\u6234\u7740\u5927\u9879\u94fe\u548c\u8033\u73af\uff0c\u624b\u62ff\u8bdd\u7b52\uff0c\u4ee5"} +{"id": "1004062", "video_name": "4b54af6c-527f-5c0a-abb6-12f07e72ff3a", "text": "8\u4f4d\u571f\u8033\u5176\u58eb\u5175\u4e0e10\u4f4d\u7f8e\u56fd\u58eb\u5175\u7684\u6218\u4e89\u3002"} +{"id": "8001868", "video_name": "23b2d1a9-f8ff-531f-bc66-26b27386332b", "text": "\u4e24\u53ea\u9752\u86d9\u62ff\u7740\u5251\u4e92\u76f8\u640f\u6597\uff0c\u4f46\u5251\u5176\u5b9e\u662f\u874c\u86aa\uff0c\u968f\u7740\u6218\u6597\u4e0d\u505c\u5730\u626d\u52a8\u3002"} +{"id": "5001878", "video_name": "1da9dd42-5701-5a8e-a0c1-8041ab475213", "text": "\u73b0\u5b9e\u4e3b\u4e49\u773c\u775b\u4e2d\u5fc3\u8fdb\u5165\u5927\u8111\u3002"} +{"id": "8002047", "video_name": "416aa9ba-a4de-5a92-8ff4-af95adf98ea6", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6811\u4e0b\u8bfb\u4e66\uff0c\u590f\u5929\uff0c\u6696\u8272\u8c03\uff0c\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "1004280", "video_name": "4f252192-1396-5983-8023-fca250c04885", "text": "\u6811\u53f6\u548c\u690d\u7269\u56e0\u4e3a\u5fae\u98ce\u800c\u7f13\u6162\u5730\u79fb\u52a8\u3002\u6162\u52a8\u4f5c\u89c6\u9891\u3002"} +{"id": "2006518", "video_name": "27cbaf3d-5ca2-5482-8d03-d62c0701e255", "text": "\u8036\u7a23\u6b65\u884c\u6c34\u9762\u7684\u89c6\u9891"} +{"id": "0004355", "video_name": "079b0b07-3920-5fb1-a77e-39284565dc5c", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u5e8a\u4e0a\u88ab\u4e00\u58f0\u5de8\u54cd\u5435\u9192\u3002"} +{"id": "6004417", "video_name": "f30d13e1-d32d-5a89-92e8-6bc236754313", "text": "\u5728\u5348\u591c\u65f6\u5206\uff0c\u6709\u4e00\u5ea7\u88ab\u9b3c\u9b42\u7f20\u7ed5\u7684\u5e9f\u5f03\u75af\u4eba\u9662\uff0c\u706f\u5149\u4e0d\u505c\u95ea\u70c1\uff0c\u5e7d\u7075"} +{"id": "8001961", "video_name": "748611de-11d6-5a35-893f-76705506af79", "text": "\u80fd\u8ba9\u4f60\u5728\u4e0d\u540c\u7ef4\u5ea6\u4e4b\u95f4\u65c5\u884c\u7684\u673a\u5668"} +{"id": "3003301", "video_name": "24cf453f-b317-5a4c-b329-bc08d0c7c05c", "text": "\u8eab\u4f53\u8986\u76d6\u7740\u95ea\u5149\u7c98\u6db2\u7684ASMR\u3002"} +{"id": "6004121", "video_name": "8dea5cc3-c3da-5239-8e73-13b864709a20", "text": "\u4e00\u675f\u65b0\u9c9c\u5207\u597d\u7684\u6c34\u679c\u82b1\u675f\u3002\u4fe1\u606f\uff1aULTIMA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2005553", "video_name": "6b2d67ef-3d7c-5660-9980-84f961224d7d", "text": "\u4e00\u4e2a\u7537\u4eba\u559d\u9152\u62bd\u70df\u3002"} +{"id": "2004305", "video_name": "207dab16-9be6-529f-b845-d22f9fa530cd", "text": "\u6f5c\u5728\u7684\u5e76\u53d1\u75c7\uff1a\u89c6\u89c9\u6548\u679c\uff1a\u56fe\u5f62\u663e\u793a\u6f5c\u5728\u7684\u5e76\u53d1\u75c7\uff0c\u5982\u809d\u708e\u3001\u7ea4\u7ef4\u5316\u548c\u809d\u786c\u5316\u3002"} +{"id": "7003168", "video_name": "b4360ab7-1967-5b46-9c67-86b12cf81922", "text": "\u5927\u5929\u4f7f\u52a0\u767e\u5217\u8eab\u7a7f\u767d\u91d1\u888d\uff0c\u624b\u6301\u4e00\u53ea\u5587\u53ed\u3002"} +{"id": "7002528", "video_name": "d7ae001b-fa6b-5aa8-916f-c72e06447ef6", "text": "\u4e00\u4e2a\u6298\u7eb8\u5730\u7403\uff0c\u662f\u7528\u7eb8\u5f20\u5236\u4f5c\u7684\u6298\u7eb8\u827a\u672f\u54c1\uff0c\u91c7\u7528\u6587\u5177\u5236\u54c1\uff0c8K\u5206\u8fa8\u7387\uff0c6400\u4e07\u50cf\u7d20\u67d4\u548c"} +{"id": "1006869", "video_name": "7d6db84b-2e84-59b3-a1cd-2ef311cb3654", "text": "\u521b\u9020\u4e00\u4e2a\u903c\u771f\u76843D\u5361\u901a\u7537\u5b69\uff0c\u4ed6\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u6301\u7eed5\u79d2\u949f\u3002"} +{"id": "3006406", "video_name": "bd6fa180-03ff-5671-b9b7-11aa00b8a995", "text": "\u4e24\u4e2a\u5de5\u4eba\u8d70\u5728\u5de5\u5382\u9910\u5385\u91cc\uff0c\u4e00\u4e2a\u9634\u5f71\u900f\u8fc7\u7a97\u6237\u770b\u89c1\u4e86\u4ed6\u4eec\uff0c\u9ed1\u767d\u7684\u6545\u4e8b\u6f2b\u753b\u3002"} +{"id": "7003008", "video_name": "e7159729-7052-53ee-84df-874d5ebb7ecd", "text": "\u9e1f\u513f\u5728\u82b1\u5e97\u4e0a\u65b9\u98de\u884c\uff0c\u4ee5\u52a8\u6f2b\u548c\u6c34\u5f69\u98ce\u683c\u5448\u73b0\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0005701", "video_name": "1fb2cd64-d2cd-5f8d-af92-50df85334887", "text": "\u75289:16\u7684\u89c6\u9891\u683c\u5f0f\uff0c\u4ee5\u4ee4\u4eba\u60ca\u53f9\u76844K\u5206\u8fa8\u7387\u5f55\u5236\u4e00\u4e2a\u573a\u666f\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u4e2a\u8868\u60c5\u60ca\u8bb6\u3001\u4e0b\u5df4\u6389\u4e0b\u6765\u7684\u7537"} +{"id": "8001106", "video_name": "3681f9df-7f45-5d6d-ae9b-06b0cfcc44bf", "text": "\u753b\u51faSeraphina\u738b\u5973\u6c89\u601d\u7684\u4e00\u523b\uff0c\u5979\u51dd\u89c6\u7740\u738b\u56fd\uff0c\u601d\u8003\u5979\u7684\u7ecf\u5386\u548c\u6240\u5b66\u5230\u7684\u6559\u8bad\u3002"} +{"id": "3005929", "video_name": "0100c4ed-5a45-5e24-8781-cd0d7003099c", "text": "\u519c\u6c11\u4e0e\u653f\u5e9c\u4e4b\u95f4\u7684\u6218\u4e89\uff0c\u662f\u4e00\u573a\u5f3a\u70c8\u7684\u5bf9\u6297\u3002"} +{"id": "2004861", "video_name": "5066153c-23ca-5840-8290-88705da255bb", "text": "\u5143\u7d20\u5185\u90e8\u65cb\u8f6c\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "7004552", "video_name": "dbfee972-ee41-5061-bab6-65571c3f943c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u8611\u83c7\u4eba\uff0c\u80cc\u666f\u662f\u57ce\u5e02\u3002"} +{"id": "2005756", "video_name": "a4181ae8-7b5d-53c6-a308-f54e92750311", "text": "\u60f3\u8c61\u4e00\u7247\u660e\u4eae\u3001\u9633\u5149\u666e\u7167\u7684\u8349\u5730\uff0c\u6709\u6d3b\u7075\u6d3b\u73b0\u7684\u82b1\u6735\u5728\u67d4\u548c\u7684\u5fae\u98ce\u4e2d\u6447\u66f3\u3002\u5c55\u73b0\u53ef"} +{"id": "0003199", "video_name": "39225495-8614-53c6-bf13-d5c5d9ed66ba", "text": "\u9ed1\u6697\u68ee\u6797\u91cc\u53ef\u7231\u7684\u8725\u8734\u6742\u4ea4\u79cd"} +{"id": "2004606", "video_name": "192c5620-876b-565d-918c-276e3ac51da5", "text": "\u624b\u91cc\u62ff\u7740\u6cf0\u8fea\u718a\u768410\u5c81\u7537\u5b69\u3002"} +{"id": "6004516", "video_name": "dcb0218c-f7f7-5062-b2d1-58f9e4cbd420", "text": "\u767d\u8272\u5154\u5b50\u62ff\u7740\u80e1\u841d\u535c\u5728\u68ee\u6797\u91cc\u4e00\u68f5\u6811\u4e0b\u7761\u89c9\u3002"} +{"id": "1004697", "video_name": "57503f6d-cbaf-582c-a7a1-0f351826166b", "text": "2D\u50cf\u7d20\u6e38\u620f\u4ecb\u7ecd\u89c6\u9891\uff0c\u73a9\u5bb6\u4ece\u6218\u4e89\u4e2d\u64a4\u79bb\u5230\u4e00\u4e2a\u9700\u8981\u91cd\u65b0\u5f00\u59cb\u751f\u6d3b\u7684\u5c9b\u5c7f\u4e0a\u3002\u73a9\u5bb6\u53ea\u5e26\u7740\u4e00\u5c0f"} +{"id": "2007322", "video_name": "3d56d0be-861d-5a1a-96ab-e77fea0d86f0", "text": "1910\u5e74\u8863\u670d\u5e97\u5185\u90e8\u7684\u6c34\u5f69\u753b\u3002"} +{"id": "0005494", "video_name": "1bd36a3f-e81c-5502-8257-32ac00d2f877", "text": "\u53e4\u65e9\u672a\u6765\u611f\u7684\u592a\u7a7a\u98ce\u666f\uff0c\u5305\u542b\u7eda\u70c2\u7684\u9713\u8679\u661f\u7a7a\u300210\u79d2\u7684\u592a\u7a7a\u98de\u8239\u89c6\u89d2\u6e10\u53d8\u7684\u9713\u8679"} +{"id": "2007033", "video_name": "65ed16ea-37d3-5d18-803d-ca32e95e1c2b", "text": "\u4f5b\u7f57\u91cc\u8fbe\u5dde\u7684\u4e00\u53ea\u6d77\u9f9f\u5728\u5ca9\u77f3\u4e0a\u6652\u592a\u9633\uff0c\u903c\u771f\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "4004903", "video_name": "4b4022e9-5616-571b-a815-66b04623c2b7", "text": "\u623f\u5b50\u5192\u70df\u4e86\u3002\u623f\u5b50\u4e0a\u7740\u706b\u4e86\u3002\u5929\u7a7a\u5f88\u6697\u3002\u53d1\u751f\u4e86\u7206\u70b8\u3002"} +{"id": "4002474", "video_name": "1b568914-1359-5c30-bbb5-7c71dd2989c5", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u7978\u6839\uff0c\u6444\u50cf\u5934\u653e\u5927\uff0c\u4fe1\u606f\uff1a1 \u4e2a\u9644\u4ef6\u3002"} +{"id": "2003887", "video_name": "079097b0-1d13-5bbe-a875-4f08278a9d43", "text": "\u68d5\u8272\u52a8\u6f2b\u5973\u5b69\u5728\u5496\u5561\u5e97\u5185\u884c\u8d70\u3002"} +{"id": "8002451", "video_name": "1af0fff0-5e54-5f81-81f9-b0211f2c8593", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u5979\u7684\u670b\u53cb\u5728\u6751\u5e84\u7684\u5c71\u4e0a\u73a9\u800d\u3002"} +{"id": "1006598", "video_name": "78e6c350-3b88-5721-9379-7e88df5b7780", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u722c\u4e0a\u5ca9\u77f3\uff0c\u4e0d\u8d85\u8fc7\u4e24\u6761\u817f\uff0c\u4e0d\u8d85\u8fc7\u4e24\u53ea\u624b\u81c2\u3002"} +{"id": "0004570", "video_name": "0b5d827d-f0c6-5340-a489-550388a0ae64", "text": "\u6210\u4eba\u6cf3\u6c60\u7684\u5f17\u83b1\u00b7\u6d1b\u514b\u6ce8\u89c6\u7740\u9c8d\u52c3\u00b7\u9a6c\u5229\uff0c\u50cf\u53e4\u57c3\u53ca\u8c61\u5f62\u6587\u5b57\u4e00\u6837\u88ab\u63cf\u7ed8\u51fa\u6765"} +{"id": "2007561", "video_name": "08602ea1-59e1-5a07-89c9-7b60a81050ca", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u957f\u888d\u7684\u82f1\u96c4\u4ece\u57fa\u5ea7\u4e0a\u62ff\u8d77\u5251\u3002"} +{"id": "6002793", "video_name": "f0415aac-5833-5890-9218-9cc1fec1734f", "text": "\u4e00\u4e2a\u7537\u6027\u5929\u4f7f\u51fa\u73b0\u5728\u4e00\u4f4d\u5e74\u8f7b\u5973\u58eb\u9762\u524d\u3002"} +{"id": "5001037", "video_name": "42a504a8-326f-54a2-841c-c163d1281c9d", "text": "\u4e00\u6761\u9634\u6697\u7684\u901a\u9053\uff0c\u5de1\u903b\u8f66\u7684\u706f\u5149\u95ea\u70c1\uff0c\u7ed9\u72af\u7f6a\u73b0\u573a\u6295\u5c04\u51fa\u8d85\u81ea\u7136\u7684\u5149\u73af\u3002"} +{"id": "1006561", "video_name": "784043a6-d383-569f-9c81-1b19873df26d", "text": "4\u4f4d\u79d1\u5b66\u5bb6\u5728\u5b9e\u9a8c\u5ba4\u4e2d\u8fdb\u884c\u7334\u5b50\u5b9e\u9a8c\u3002"} +{"id": "2006295", "video_name": "f69938ad-db66-5d52-944a-d6a54385eb55", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8857\u4e0a\u6361\u8d77\u4e00\u5f20\u4e50\u8c31\u3002"} +{"id": "6002373", "video_name": "51e4ac84-405f-56e4-b6c6-c16a6efdac7e", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u4e00\u4e2a\u4e0b\u6c89\u7684\u3001\u88ab\u7194\u5ca9\u6d6a\u6f6e\u5305\u56f4\u7684\u56fd\u9645"} +{"id": "0005216", "video_name": "16aaab53-f0c7-59d1-9d6e-89f7a2d5f85d", "text": "\u6444\u50cf\u673a\u7f29\u653e\uff0c\u975e\u5e38\u5feb\u901f\u8fd0\u52a8\uff0c\u884c\u661f\u5feb\u901f\u65cb\u8f6c\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u826f\u597d\u7684\u753b\u8d28\uff0c\u98ce\u5439\u5f97\u5f88\u5feb\u3002"} +{"id": "2004820", "video_name": "08845f28-37a0-52ca-8b6a-6a58cdd597a3", "text": "\u4e00\u4e2a\u9ed1\u70b9\u5728\u767d\u8272\u80cc\u666f\u4e0a\u9759\u6b62\uff0c\u7136\u540e\u79fb\u52a8\uff0c\u7136\u540e\u5728\u70b9\u4e91\u4e2d\u7e41\u6b96\u7684\u52a8\u753b\u3002"} +{"id": "2004153", "video_name": "74b29950-850a-599b-803b-baa46bbcd794", "text": "\u4e00\u6bb5\u57ce\u5e02\u98ce\u5149\u7684\u65e0\u4eba\u673a\u89c6\u9891\uff0c\u8d85\u9ad8\u6e05\u753b\u8d28\uff0c\u6d41\u7545\u52a8\u753b\uff0c\u8f66\u8f86\u884c\u9a76\uff0c\u865a\u5e7b\u5f15\u64ce\u5236\u4f5c\uff0c4k\uff0c\u7070"} +{"id": "3005280", "video_name": "9e815af4-e6e4-5712-be64-ee27b1ce9af2", "text": "\u4e00\u90e8\u5bf9\u8fc8\u963f\u5bc6\u6d77\u5cb8\u79fb\u52a8\u7684\u6d77\u5578\u8fdb\u884c\u4e86\u7535\u5f71\u5316\u76848K\u89c6\u9891"} +{"id": "1006713", "video_name": "7b0403e7-4b27-5ac2-9992-a2ca97cbb586", "text": "\u751c\u7f8e\u7684Everdale\u5bb6\u65cf\u8d4b\u4e88\u5c0f\u9762\u56e2\u751f\u547d\uff0c\u9762\u56e2\u5316\u8eab\u4e3a\u5b69\u5b50\u3002"} +{"id": "3004472", "video_name": "5f33b244-7856-5549-b749-5b5f7146759c", "text": "\u5361\u5c14\u5df4\u62c9\u8f89\u714c\u7684\u4e2d\u4e16\u7eaa\u6218\u6597\uff0c\u7ea2\u8272\u5929\u7a7a\uff0c\u4e2d\u592e\u6709\u4e00\u540d\u9762\u5bb9\u5149\u8f89\u7684\u7537\u5b50\u3002"} +{"id": "2005076", "video_name": "54c66592-2070-5b08-8d02-fb49a3b5776d", "text": "\u968f\u7740\u4e2d\u56fd\u65b0\u5e74\u7684\u4e34\u8fd1\uff0c\u8fd9\u4f4d\u7814\u7a76\u8005\u7ec4\u5efa\u4e86\u4e00\u4e2a\u5bb6\u65cf\uff0c\u53d1\u8d77\u4e86\u4e00\u4e2a\u8ba1\u5212\uff0c\u91ca\u653e\u9f99\u7259\u7684\u6f5c\u529b\uff0c\u5c06\u57ce\u5e02"} +{"id": "6004762", "video_name": "9e05ed7a-e5f0-579b-b93b-2819eb1eb0bc", "text": "\u6c7d\u8f66\u6d17\u8f66\u673a\u5b9e\u73b0\u65e0\u4eba\u6d17\u8f66\u3002"} +{"id": "7002600", "video_name": "2d6e8865-d24d-53fc-b20d-e527bb5c9113", "text": "\u84dd\u8272\u56f4\u88d9\u7537\u5b50\u5728\u4e00\u6761\u5145\u6ee1\u6d3b\u529b\u3001\u8d85\u73b0\u5b9e\u8272\u5f69\u7684\u7194\u5ca9\u6cb3\u4e2d\u9493\u9c7c\u3002"} +{"id": "6003362", "video_name": "a3a003a8-e4f4-5345-abef-d4bee67b6858", "text": "\u53d1\u73b0\u73b0\u4ee3\u57ce\u5e02\u8857\u666f\u4e2d\u5efa\u7b51\u548c\u8bbe\u5907\u6280\u672f\u53d8\u5316\u7684\u60c5\u51b5\u3002\u4fe1\u606f\uff1a4K\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2005976", "video_name": "bf30d217-4b21-5ef5-ba72-16bd232ed4b1", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u6c7d\u8f66\u7ecf\u9500\u5e97\u91cc\u9012\u7ed9\u4e00\u4e2a\u5973\u4eba\u4e00\u4e9b\u94a5\u5319\u3002"} +{"id": "3003033", "video_name": "91504d4f-5514-59b3-8604-0dce1d78ea70", "text": "\u7ea2\u53d1\u5973\u5b50\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u3002"} +{"id": "3004255", "video_name": "b7d9b516-34d1-5189-8b30-b896fd0eb3da", "text": "\u660e\u4eae\u6d41\u661f\u5728\u661f\u5149\u95ea\u8000\u7684\u5929\u7a7a\u4e2d\u7684\u827a\u672f\u5448\u73b0\u3002"} +{"id": "2006136", "video_name": "bd47a397-71e7-54cc-b724-36a8ccf50596", "text": "\u6211\u4eec\u7684\u65c5\u7a0b\u59cb\u4e8e\u795e\u79d8\u7684\u54c8\u5c14\u5179\u5c71\u8109\uff0c\u5728\u90a3\u91cc\u5973\u5deb\u548c\u9ed1\u6697\u4eea\u5f0f\u7684\u4f20\u8bf4\u66fe\u7ecf\u56f0\u6270\u8fd9\u7247\u571f\u5730\u3002\u5e03"} +{"id": "1003514", "video_name": "40e6ef2d-6576-577d-bbd5-04374f682354", "text": "\u4e03\u5f69\u5c71\u8109\uff0c\u68a6\u5e7b\u822c\u7684\u4e00\u5929\uff0c\u5f69\u8679\uff0c\u7011\u5e03\uff0c\u9e1f\u513f\u3002"} +{"id": "2003826", "video_name": "0aedc483-b736-5309-bdd0-f58dd90af9ae", "text": "VHS\u4f4e\u4fdd\u771f\u566a\u97f3\u591c\u95f4\u68ee\u6797\u5c0f\u5f84\u3002"} +{"id": "6004520", "video_name": "410cb6eb-9819-5131-97ea-4d5ef61c9395", "text": "\u68ee\u6797\u4e2d\u8774\u8776\u5728\u795e\u5947\u7684\u6c34\u84b8\u6c14\u4e0a\u98de\u821e\u3002"} +{"id": "0005285", "video_name": "17e19e45-a914-58cf-b169-032cbfc8e61c", "text": "\u96c5\u5179\u5fb7\u5e02\u7684\u96e8\u5929\uff0c\u4f0a\u6717\u3002"} +{"id": "1005144", "video_name": "5ecf45ea-5d70-51a8-bac4-5757b70e7bdf", "text": "\u4e00\u4f4d\u975e\u5e38\u7f8e\u4e3d\u7684\u7f8e\u4eba\u9c7c\u671d\u7740\u4e00\u53ea\u6d77\u5deb\u6e38\u53bb\u3002"} +{"id": "3006082", "video_name": "b11f1a70-e7b0-5122-a396-bfcd203902c8", "text": "\u5728\u94f6\u6cb3\u7cfb\u4e2d\u7a7f\u7740\u592a\u7a7a\u670d\u7684\u62c9\u5e03\u62c9\u591a\u5c1d\u8bd5\u83b7\u53d6\u4e00\u4e2a\u9aa8\u5934\u997c\u5e72\u3002"} +{"id": "3006642", "video_name": "c2447502-95d0-51b3-9b13-42b797979504", "text": "\u52a8\u753b\u7537\u5b69\u548c\u52a8\u753b\u5973\u5b69\u5728\u7a7a\u4e2d\u8df3\u821e\u548c\u98de\u7fd4\u3002"} +{"id": "2006606", "video_name": "01a2ecd6-d508-5a9f-89d3-30da020382ee", "text": "\u4e00\u4f4d\u5b8c\u597d\u7121\u640d\u7684\u5c0f\u548c\u5c1a\u5728\u4e00\u5ea7\u5b8f\u5049\u7684\u5bfa\u5edf\u88e1\u884c\u8d70\uff0c\u7a7a\u6c23\u4e2d\u98c4\u8457\u96ea\u82b1\u3002"} +{"id": "0005648", "video_name": "1eaa713c-2ba3-5389-9eb3-259063ead2be", "text": "\u89c6\u9891\u91cd\u70b9\u5173\u6ce8\u4e8e\u4e0a\u547c\u5438\u9053\u3001\u652f\u6c14\u7ba1\u3001\u80ba\u4ee5\u53ca\u80ba\u6ce1\u7b49\u91cd\u8981\u90e8\u4f4d\u3002\u6b64\u5916\uff0c\u5f3a\u8c03\u6c14\u7ba1\u548c\u5589\u5728\u7cfb\u7edf\u4e2d\u7684\u91cd\u8981"} +{"id": "7004593", "video_name": "5b7eba29-ece2-567d-ad09-a78253e440d2", "text": "\u5728\u660f\u6697\u7684\u5730\u4e0b\u5ba4\u91cc\uff0c\u6709\u4e2a\u91d1\u5c5e\u5409\u4ed6\u624b\u548c\u9f13\u624b\u6b63\u5728\u6f14\u594f\uff0c\u5468\u56f4\u6709\u7740\u5f69\u8272\u706f\u5149\uff0c\u611f\u89c9\u50cf"} +{"id": "4004421", "video_name": "55338fe6-eb6c-5b01-8000-2bcf6e1f800a", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u8df3\u4e0a\u5e8a\u3002"} +{"id": "5001178", "video_name": "cda9c64e-0f76-5651-8b2b-91f4d8ef64f4", "text": "\u6c64\u59c6\u5728\u7ebd\u7ea6\u65f6\u4ee3\u5e7f\u573a\u8ffd\u9010\u6770\u745e\uff0c\u7136\u540e\u8fdb\u5165\u300a\u751f\u6d3b\u5927\u7206\u70b8\u300b\u7684\u573a\u666f\u4e2d\uff0c\u6700\u540e\u88ab\u4f69\u59ae"} +{"id": "6003583", "video_name": "e354c499-f415-5a9a-9b60-cd0c9428f672", "text": "\u7537\u4eba\u5750\u5728\u5df4\u9ece\u4e16\u5bb6\u7684\u9a6c\u6876\u4e0a\u3002"} +{"id": "5001679", "video_name": "7712b24a-640d-5539-8e0b-9c84e20936b4", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u6b63\u5728\u516c\u56ed\u91cc\u8dd1\u6b65\u3002"} +{"id": "2006449", "video_name": "5a43c85b-d7d3-5c6f-a801-c924a6c4fe24", "text": "\u8001\u8239\u957f\u5728\u84b8\u6c7d\u670b\u514b\u592a\u7a7a\u98de\u8239\u4e0a\u4e0e\u8239\u5458\u4e00\u8d77\u6df1\u5165\u592a\u7a7a\uff0c4K\u771f\u5b9e\u3002"} +{"id": "2005238", "video_name": "b8cf3c88-f79d-58f3-b993-4d6be1fe0b76", "text": "\u9ed1\u8272\u58a8\u70b9\u843d\u5728\u4f20\u7edf\u4e2d\u56fd\u827a\u672f\u98ce\u683c\u7684\u7eb8\u8d28\u80cc\u666f\u4e0a\uff0c\u5e76\u8f6c\u5316\u4e3a\u4e2d\u56fd\u827a\u672f\u98ce\u683c\u7684\u6811\u3002"} +{"id": "8001188", "video_name": "8fe2ceda-6bc7-5841-a3ca-bf4c571befe4", "text": "\u4e24\u4e2a\u725b\u4ed4\u5728\u65e5\u843d\u65f6\u5206\u5728\u4e00\u4e2a\u884c\u4eba\u6865\u4e0a\u76f8\u9047\uff0c\u4e4c\u9e26\u5728\u5934\u9876\u98de\u7fd4\u3002\u5728\u4e0a\u65b9\u662f\u4e00\u7cfb\u5217\u4ea4\u9519\u7684\u5bc6\u96c6"} +{"id": "2003079", "video_name": "a28562b6-94e3-502b-9522-ebbf6a462e83", "text": "Couchbase\u7684\u6807\u5fd7\u5f62\u6210\u5728\u6d77\u6ee9\u6f6e\u6c34\u7684\u6d6a\u6f6e\u4e2d\u3002\n\nSource sentence: The conference room is located on the third floor of the building. \n\n\u4f1a\u8bae\u5ba4\u4f4d\u4e8e\u5efa\u7b51"} +{"id": "2005021", "video_name": "d6eb0de2-cac7-508b-9dee-b9dbf9cb106e", "text": "\u7f57\u9a6c\u6597\u517d\u573a\u524d\uff0c\u4e00\u4e2a\u8d2a\u5a6a\u8001\u592a\u592a\u8fc5\u901f\u5730\u5403\u7740\u4e00\u7897\u610f\u5927\u5229\u9762\u7684\u52a8\u753b\u3002"} +{"id": "1006294", "video_name": "733f385a-33ab-592f-abb4-148ac6d5ec02", "text": "\u706b\u661f\u8868\u9762\u7684\u5b87\u822a\u5458\u821e\u4f1a\uff0c\u6570\u5b57\u63d2\u56fe\u3002"} +{"id": "2004163", "video_name": "0359aa6d-2e71-5504-af4c-0946d7bc9a2a", "text": "\u76f8\u673a\u7f29\u5c0f\uff0c\u4e00\u53e3\u70df\u6597\uff0c\u7334\u5b50\uff0c\u70df\u96fe\u5f25\u6f2b\uff0c\u672a\u6765\u4e3b\u4e49\u3002"} +{"id": "7003790", "video_name": "24d42eb4-3223-593a-b80d-cdedeff881cb", "text": "\u86c7\u6709\u811a\u3002\u5b83\u80fd\u8dd1\u3002"} +{"id": "1005580", "video_name": "66adca17-4857-5cf7-b585-e77e986ab710", "text": "\u5728\u68ee\u6797\u4e2d\u592e\u5efa\u7acb\u4e00\u4e2a\u5c0f\u5c4b\u76843D\u6a21\u578b\uff0c\u6709\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u7ad9\u5728\u524d\u9762\uff0c\u9065\u671b\u8fdc\u65b9\u3002"} +{"id": "3003062", "video_name": "9ec9463e-c125-5e1d-999a-a5f671866d79", "text": "\u4e00\u53ea\u79d8\u5bc6\u7279\u5de5\u732b\u5728\u6267\u884c\u4efb\u52a1\u3002"} +{"id": "3004883", "video_name": "b421a525-448b-5bdc-abf4-daae2bd56121", "text": "\u4ee5\u6c89\u95f7\u7684\u7eaa\u5f55\u7247\u98ce\u683c\u8868\u73b0\u7684\u5728\u7ebf\u5b64\u72ec\uff0c\u81ea\u7136\u5149\u7ebf\uff0c\u4e2d\u666f\u955c\u5934\uff0c\u67d4\u548c\u7684\u8272\u8c03\uff0c\u4ee5\u53ca\u7a33\u5b9a\u7684\u955c"} +{"id": "8001158", "video_name": "445ed9e9-8f15-5de3-87d3-9fccfe1f3ec9", "text": "\u65af\u57fa\u6bd4\u8fea\u9a6c\u6876\u5728\u6218\u4e89\u4e2d\u7684\u9ad8\u8d28\u91cf\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "2005189", "video_name": "bf434da6-be7a-58e8-80e4-06770642c7b3", "text": "\u5047\u72fc\u9762\u5177\u7684\u64ad\u5ba2\u8005\u30024K\u3002"} +{"id": "4004375", "video_name": "7a5c742b-fa69-5dc6-ae33-217a93652911", "text": "\u5965\u65af\u5361\u9881\u5956\u5178\u793c\uff0c\u6162\u955c\u5934\uff0c\u7535\u5f71\u611f\uff0c\u50cf\u4e00\u90e81960\u5e74\u4ee3\u7684\u6cd5\u56fd\u7535\u5f71\u3002"} +{"id": "4004652", "video_name": "201a38cb-1a7f-547f-82ce-be53b4958029", "text": "\u653f\u5e9c\u53d1\u73b0\u4e86\u4e00\u540d\u5916\u661f\u4eba\uff0c\u76ee\u524d\u88ab\u62d8\u7559\u4e3a\u56da\u72af\u3002"} +{"id": "5001046", "video_name": "7866b4b7-04c6-5464-9cd1-dc9fe8a4b561", "text": "\u4e00\u5bb6\u5e26\u6709\u79fb\u52a8\u667a\u80fd\u5e94\u7528\u7a0b\u5e8f\u7684\u6050\u9f99\u535a\u7269\u9986\u3002"} +{"id": "0005960", "video_name": "23f31f5b-8bc1-5c63-856c-1f0aa150b84d", "text": "\u52a8\u753b\u5973\u5b69\u7528\u793c\u8c8c\u7684\u9762\u90e8\u8868\u60c5\u4ea4\u8c08\uff0c\u903c\u771f\u7684\u9ad8\u6e05\u89c6\u9891"} +{"id": "3003691", "video_name": "99f6a225-23e6-57d1-a9e3-6b071b74d1e7", "text": "Source sentence: \u96c4\u4f1f\u7684\u72ee\u5b50\uff0c\u4e1b\u6797\u4e4b\u738b\u3002"} +{"id": "2007817", "video_name": "7cd88b09-dcf5-54a4-97a5-851c4f9a086d", "text": "\u7279\u6717\u666e\u7a7f\u77403XL\u5927\u5c0f\u7684\u957fT\u6064\u3002"} +{"id": "8002999", "video_name": "bba9feac-94dd-52a5-a63b-d36e5e0af884", "text": "\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u675f\u660e\u4eae\u800c\u795e\u79d8\u7684\u5929\u4f53\u5149\uff0c\u5f62\u6210\u4e86\u4e00\u4e2a\u6697\u793a\u7740\u795e\u5723\u5b58\u5728\u7684"} +{"id": "2005310", "video_name": "7a3fca69-2af9-5137-9dfc-210b4a6ee49a", "text": "1980\u5e74\u7684\u592a\u7a7a\u98de\u8239\u7535\u5f71\u3002"} +{"id": "0005962", "video_name": "24013c5d-4577-51ce-9355-9f7f399b00bf", "text": "\u4e00\u5339\u975e\u5e38\u6f02\u4eae\u7684\u5de8\u5927\u767d\u9a6c\uff0c\u957f\u957f\u7684\u9b03\u6bdb\u98d8\u8361\u7740\uff0c\u5728\u591c\u665a\u5954\u8dd1\u7a7f\u8fc7\u6c34\u9762\u3002"} +{"id": "3006001", "video_name": "2e063fab-c652-5ee2-a14f-952794eda900", "text": "\u897f\u88c5\u5e05\u54e5\u5feb\u8dd1\u3002"} +{"id": "7003064", "video_name": "a9430e1a-4db7-53b6-92dc-644fb4ea3907", "text": "\u843d\u53f6\u3001\u79cb\u5929\u3001\u676f\u5b50\u91cc\u7684\u84b8\u6c7d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003496", "video_name": "f5ec34c6-be82-5f57-9fe1-af0f9dc35b55", "text": "\u8ba9\u4ed6\u626e\u6f14\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u7684\u7a7a\u519b\u98de\u884c\u5458\u6446\u59ff\u52bf\u7ed9\u76f8\u673a\u62cd\u7167\u3002"} +{"id": "1005895", "video_name": "6c74fbe4-4600-503d-8e73-8fc75a474bcc", "text": "\u4fbf\u5b9c\u7684\u65c5\u884c\u3001\u65c5\u6e38\u3001\u673a\u7968\uff0c\u4ee5\u53ca\u65c5\u884c\u4e2d\u7684\u60ca\u4eba\u56fe\u7247\u3002"} +{"id": "7004378", "video_name": "1874639f-5248-5cb5-afed-d95c805a4412", "text": "\u5c55\u793a\u4eba\u4eec\u5728\u56f0\u96be\u65f6\u671f\u4e92\u76f8\u652f\u6301\u7684\u611f\u4eba\u7247\u6bb5\uff0c\u4f8b\u5982\u90bb\u5c45\u4e92\u52a9\uff0c\u533b\u62a4\u5de5\u4f5c\u8005\u9f13\u638c\uff0c\u793e\u533a\u5fd7\u613f\u8005"} +{"id": "8003497", "video_name": "ad6e3577-60f8-50be-809d-bb35af000008", "text": "\u8fc7\u6e21\u5230\u4e00\u4e2a\u6a2a\u8de8\u5929\u7a7a\u7684\u8d85\u65f6\u7a7a\u6444\u5f71\uff0c\u5c55\u793a\u706b\u661f\u5730\u5f62\u7684\u591a\u6837\u6027\u3002\u6355\u6349\u5d0e\u5c96\u7684\u7ea2\u8272\u60ac\u5d16\u548c"} +{"id": "3006785", "video_name": "7a8890bd-d389-57b7-b16e-4e438afd3ac2", "text": "\u6210\u5e74\u5973\u5b69\u4eec\u8bd5\u56fe\u9003\u8131\uff0c\u4f46\u95e8\u5df2\u5173\u95ed\u3002"} +{"id": "7003129", "video_name": "cd06befd-717b-521d-ad9a-a18c241d0431", "text": "\u4e00\u4e2a\u5e74\u8f7b\u6cae\u4e27\u7684\u7537\u5b50\u5728\u96e8\u4e2d\u8df3\u821e\u3002"} +{"id": "6002107", "video_name": "1e617754-f058-5abb-a004-cde5669e7a1b", "text": "\u7535\u5f71\u822c\u7684\u5de8\u5927\u6697\u5f71\u9b54\u9b3c\u6ce8\u89c6\u7740\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u8eab\u5904\u4e00\u4e2a\u7a7a\u8361\u8361\u7684\u6559\u5ba4\u3002"} +{"id": "2007641", "video_name": "d830ae74-2279-5f39-ba10-63ede6adcb19", "text": "\u4e00\u4e2a6\u5c81\u7537\u5b69\u6362\u5c3f\u5e03\u3002"} +{"id": "6004101", "video_name": "b7ccaa21-f0c4-51f6-99d3-562f07d63d1d", "text": "\u5728\u9910\u5385\u91cc\u6709\u4eba\u5728\u5403\u6c49\u5821\u3002"} +{"id": "3003904", "video_name": "1c13bee5-1682-5237-80cb-063462fa20a8", "text": "\u9ad8\u901f\u7f29\u653e\u7684\u6e10\u53d8\u8272\u7011\u5e03"} +{"id": "7002377", "video_name": "694c7efb-9697-5d3e-9ebe-588d8bf645c9", "text": "\u4e00\u5ea7\u9760\u8fd1\u6cb3\u6d41\u7684\u623f\u5b50\uff0c\u80cc\u666f\u662f\u96ea\u5c71\u3002"} +{"id": "0006268", "video_name": "29bc4250-559a-561c-93f7-6fa0355fe135", "text": "\u8fd9\u5e45\u753b\u9762\u5c55\u793a\u4e86\u591c\u665a\u7011\u5e03\u7684\u666f\u8c61\uff0c\u8fd8\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u8fd9\u4e2a\u7011\u5e03\u524d\u8868\u6f14\u3002"} +{"id": "2005602", "video_name": "3d64296e-d05d-5f0d-9990-833e2903ceb5", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6c1b\u56f4\u7b3c\u7f69\u7740\u9634\u68ee\u7684\u5893\u5730\uff0c\u5e7d\u7075\u5728\u5176\u4e2d\u6f02\u6d6e\uff0c\u9634"} +{"id": "3006904", "video_name": "e1677253-2f2a-5437-b721-b918061c743e", "text": "\u591c\u665a\u4e2d\u7684\u5df4\u58eb\u8ffd\u9010\u573a\u666f"} +{"id": "8001128", "video_name": "8006bd3c-580e-58a3-b044-9454e820c569", "text": "\u751f\u6210\u89c6\u9891\u5c55\u793a\u53e4\u5370\u5ea6\u5bfa\u5e99\uff0c\u4e00\u4f4d\u9762\u5411\u5c4f\u5e55\u5fae\u7b11\u7684\u5973\u5b50\u6b63\u5728\u7eb8\u4e0a\u5199\u5b57\u3002"} +{"id": "1003808", "video_name": "465428fc-0bb1-516b-bf59-49696ed462de", "text": "\u5730\u7cbe\u548c\u7a0b\u5e8f\u5458\u4e4b\u95f4\u7684\u4e00\u573a\u6218\u6597\uff0c\u4e24\u652f\u519b\u961f\u4e92\u76f8\u6254\u7740\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "8003584", "video_name": "78bba307-2fdd-584a-9821-7c2b1166ae2f", "text": "\u72d0\u72f8\u88ab\u95ea\u7535\u51fb\u4e2d\u540e\u53d8\u5f97\u660e\u4eae\u3002"} +{"id": "4002870", "video_name": "c53f48a1-3658-52fa-8817-b021b2d2ad0c", "text": "\u4e00\u4e2a\u6b66\u58eb\u5728\u96f7\u9e23\u96e8\u591c\u7ad9\u5728\u9053\u573a\u9876\u4e0a\uff0c\u624b\u63e1\u6ef4\u8840\u7684\u5200\u5251\uff0c\u4fef\u77b0\u57ce\u5e02\u3002\u4ee5\u52a8\u6f2b\u98ce\u683c"} +{"id": "4004045", "video_name": "86393f18-2bc5-5c4f-8ead-5498e5063c92", "text": "\u4e00\u4e2a\u7531\u6c34\u5236\u6210\u7684\u5de8\u5927\u5929\u4f7f\uff0c\u4e0d\u65ad\u5730\u6dcb\u7740\u6c34\u3002"} +{"id": "6003144", "video_name": "bd4ee9e8-eb04-5fbf-a29e-34cbe57da5c8", "text": "\u4e00\u5bb6\u4e9a\u6d32\u516c\u53f8\u7684\u5458\u5de5\u6253\u7535\u8bdd\u9500\u552e\u4ea7\u54c1\u3002"} +{"id": "4002679", "video_name": "a5adf815-bbbe-5fa3-af3c-32d5d8a72c82", "text": "\u877e\u8788\u548c\u6d77\u9f9f\u624b\u7275\u624b\u7684\u5361\u901a\u753b"} +{"id": "1004520", "video_name": "53f078dc-dd6a-5699-ab7e-16ab015805fd", "text": "\u5947\u602a\u76841sout\u52a8\u753b\u5c34\u5c2c\u7684\u7167\u7247\u59ff\u52bf\u300220\u79d2\u3002"} +{"id": "2005315", "video_name": "6f0f6438-5eff-5320-bb5a-e98017e595a6", "text": "\u4e00\u4e2a\u6536\u96c6\u4e86\u4e0d\u540c\u53e4\u5370\u5ea6\u963f\u80b2\u5420\u9640\u8349\u836f\u7684\u5c0f\u5bb9\u5668\u6216\u7f50\u5b50\uff0c\u7a81\u663e\u4e86\u8349\u836f\u7597\u6cd5\u5728\u963f\u80b2"} +{"id": "4002229", "video_name": "fb8708b2-8ec7-5811-a198-e151f5716654", "text": "\u7f51\u7edc\u670b\u514b\u9713\u8679\u57ce\uff0c\u4eba\u4eec\u5012\u4e0b\uff0c9\u4eba\u88ab\u51fb\u843d\uff0c\u6df7\u4e71\u4e4b\u5b50\uff0c\u5f00\u67aa\u5c04\u51fb\uff0c\u673a\u5668\u4eba\u5973\u5b69\uff0c\u7535\u5f71\u955c"} +{"id": "8001620", "video_name": "ab7b31d9-57fd-5d37-9a10-80392a7bb952", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u5f00\u7740\u4e00\u8f86\u5965\u8fea\uff0c\u706d\u9738\u51fa\u73b0\u4e86\uff0c\u6447\u4e86\u4e00\u4e0b\u624b\u6307\uff0c\u6258\u5c3c\u53d8\u6210\u4e86\u94a2\u94c1"} +{"id": "3004421", "video_name": "60a49709-7aed-5e7e-a7a1-eb4555013d46", "text": "\u7535\u89c6\u95ea\u70c1\uff0c\u4e00\u4e2a\u5c0f\u7537\u5b69\u5750\u5728\u5b83\u524d\u9762\u3002"} +{"id": "1006214", "video_name": "71ef93c5-0fb4-50d7-bf1d-e4bc3c702999", "text": "\u5728\u8def\u4e0a\u6709\u5c38\u4f53\u3002"} +{"id": "2005323", "video_name": "eb373ae4-b2cd-572e-a24d-b3ae8c211391", "text": "\u4e00\u5ea7\u7834\u8d25\u7684\u7ef4\u591a\u5229\u4e9a\u5f0f\u5927\u5b85\uff0c\u7535\u5f71\u822c\u7684\u6050\u6016\u8d85\u5199\u5b9e\u3002"} +{"id": "6003283", "video_name": "c2e07740-66df-5623-98d0-9ccec33ff943", "text": "\u8682\u8681\u5728\u4eba\u884c\u9053\u4e0a\u884c\u8d70\uff0c\u7528\u5b8f\u955c\u5934\u3001HDR\u548c\u76f8\u673a\u7f29\u5c0f\u955c\u5934\u3002\u4fe1\u606f\uff1agraffo\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1003399", "video_name": "3eac0859-eee5-5a55-9158-e124a71b6e84", "text": "\u4e00\u4f4d\u6709\u7eb9\u8eab\u7684\u4f01\u4e1a\u5bb6\u5728\u767d\u5bab\u7b7e\u7f72\u5408\u540c\u3002"} +{"id": "1003631", "video_name": "42e212ce-5acc-5e87-93c5-51bac8638e52", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u8c5a\u9f20\u6b63\u5728\u73a9\u800d\u3002\n\nSource sentence: I like to listen to music while I work. \n\n\u6211"} +{"id": "4003524", "video_name": "22e05aa2-2fe0-5e0f-9705-b5912c9c0a75", "text": "\u8fc8\u514b\u548c\u8428\u5229\u5728\u82f1\u56fd\u9152\u5427\u91cc\u559d\u5564\u9152\uff0c\u91c7\u7528\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3005055", "video_name": "964e940b-d08c-5591-8280-4f2641fe026c", "text": "\u7f8e\u4e3d\u5b81\u9759\u7684\u4e61\u6751\u519c\u573a\u98ce\u666f\u3002\u6eda\u6eda\u7684\u9752\u5c71\u4e00\u76f4\u5ef6\u4f38\u5230\u8fdc\u5904\u3002\u5915\u9633\u897f\u659c\uff0c\u6e29\u6696\u7684"} +{"id": "6003150", "video_name": "28a75e50-fa52-52ac-b84f-28941f92f04d", "text": "\u7a7a\u95f4\u7ad9\uff0c\u6f02\u6d6e\u7684\u4eba\uff0c\u884c\u661f\uff0c\u4e24\u4e2a\u536b\u661f\u3002"} +{"id": "1006123", "video_name": "7048c385-8f3a-5e96-80c7-11de7c3b8be8", "text": "\u4e00\u5806\u7eb8\u5f20\u88ab\u8f6c\u5316\u6210\u6570\u5b57PDF\u6587\u6863\u3002"} +{"id": "1005124", "video_name": "5e812de5-d85c-5b12-997a-4699bfe7eafe", "text": "\u94c1\u9489\u5728\u6c34\u4e2d\u4e0b\u6c89\uff0c\u5728\u6c5e\u4e2d\u6d6e\u8d77\u6765\u3002"} +{"id": "0005957", "video_name": "23e90091-b272-5bca-9a05-bc6fffa79e87", "text": "\u6709\u4e00\u5929\uff0c\u827e\u8fea\u514b\u65af\u51b3\u5b9a\u662f\u65f6\u5019\u8ffd\u968f\u4ed6\u7684\u68a6\u60f3\u4e86\u3002\u4ed6\u60f3\u79bb\u5f00\u5bb6\u4e61\u72ed\u7a84\u7684\u754c\u9650\uff0c"} +{"id": "0004878", "video_name": "10ce8bbf-7554-5de8-be65-fa464edfeaca", "text": "\u6570\u767e\u5e74\u524d\uff0c\u4e00\u5219\u53e4\u8001\u7684\u9884\u8a00\u9884\u8a00\u4e86\u4e00\u4e2a\u53ef\u6015\u7684\u9ed1\u6697\u5373\u5c06\u964d\u4e34\uff0c\u5a01\u80c1\u7740\u6574\u4e2a\u4e16\u754c\u3002"} +{"id": "4004847", "video_name": "9f97cf1e-fd40-514b-9470-c86c30831204", "text": "\u8d85\u8d8a\u57ce\u5899\uff0c\u4ece\u5bd2\u5c71\u5bfa\u5f00\u59cb\u3002"} +{"id": "6002197", "video_name": "2dd1271e-c201-5f60-aec9-e63480ece9dd", "text": "\u4e00\u53ea\u732b\u8eba\u5728\u7535\u89c6\u4e0a\u3002"} +{"id": "3006896", "video_name": "bd1afa8b-0d5b-569f-820d-d79c94ada785", "text": "\u751f\u6210\u4e00\u6bb5\u52a8\u4f5c\u573a\u666f\u89c6\u9891\uff0c\u91d1\u5c5e\u660e\u661f\u5c06\u88ab\u76f4\u63a5\u6295\u5411\u6444\u50cf\u673a\u3002\u65e0\u7455\u75b5\u7684\u7eff\u5e55\u80cc\u666f\u3002"} +{"id": "3006183", "video_name": "b28028bb-07cc-5722-8e0e-ee2043da672a", "text": "\u8fea\u58eb\u5c3c\u559c\u6b22\u771f\u5b9e\u76843D\u52a8\u753b\uff0c\u591a\u841d\u897f\u662f\u4e00\u4e2a\u957f\u7740\u53ef\u7231\u7684\u957f\u53d1\u7684\u5c0f\u5973\u5b69\uff0c\u60f3\u56de\u5230\u582a\u8428\u65af\u5bb6"} +{"id": "2007982", "video_name": "a76325ac-5f71-5eec-ac6b-7dc49eb5a7f8", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u9e66\u9e49\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u4e09\u79d2\u949f\u3002"} +{"id": "3005432", "video_name": "8725966c-d52b-5eea-8d29-866370a85d48", "text": "\u4e00\u53ea\u57c3\u62c9\u62c9\u6f2b\u6b65\u7a7f\u8fc7\u68ee\u6797\u3002 \u9644\u4ef6\uff1a1"} +{"id": "2004532", "video_name": "38c98fc6-1094-5db4-b910-768ed4bac2d4", "text": "\u53d8\u5f62\u91d1\u521a\u64ce\u5929\u67f1\u4e0e\u5a01\u9707\u5929\u6fc0\u70c8\u5bf9\u51b3\uff0c\u5df4\u6bd4\u4f26\u52a0\u5165\u6218\u6597\uff0c\u5dee\u70b9\u5c06\u5a01\u9707\u5929"} +{"id": "3006455", "video_name": "86198819-20f0-5270-8106-63bc24855626", "text": "\u63cf\u8ff0\u4eba\u7269\u5171\u4eab\u4e00\u987f\u996d\u6216\u7f8e\u98df\uff0c\u5e76\u5f3a\u8c03\u7b80\u5355\u4e50\u8da3\u7684\u559c\u60a6\u3002"} +{"id": "0004720", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "\u7741\u5f00\u773c\u775b\uff0c\u52a8\u52a8\u624b\u81c2\u548c\u5934\uff0c\u5a74\u513f\u8036\u7a23\u5728\u5145\u6ee1\u5e72\u8349\u7684\u9a6c\u69fd\u91cc\uff0c\u5468\u56f4\u662f\u53d1\u7740"} +{"id": "0003812", "video_name": "43f081ae-4b35-5cca-8412-1cf62b654847", "text": "\u4e00\u5f20\u65e7\u6728\u684c\u5b50\u4f4d\u4e8e\u8c37\u4ed3\u4e2d\u5fc3\uff0c\u4e0a\u9762\u8986\u76d6\u7740\u5e72\u8349\u548c\u4e00\u4e2a\u4e22\u5f03\u7684\u7eb8\u677f\u76d2\u5b50\u3002\u903c\u771f\u800c\u9ad8\u8d28"} +{"id": "1006315", "video_name": "73956e25-b209-51df-b787-2ee31600b9f9", "text": "\u94a2\u94c1\u4fa0\u5728\u5496\u5561\u9986\u4f7f\u7528\u624b\u673a\u652f\u4ed8\uff0c1\u6bd41\u3002"} +{"id": "8002240", "video_name": "c290e541-6aa1-5adc-9433-18f2096eebd2", "text": "\u6ee1\u6708\u591c\u7a7a\u4e2d\u7e41\u661f\u95ea\u70c1\uff0c\u7537\u5b69\u4eec\u5728\u7530\u91ce\u4e0a\u8e22\u8db3\u7403\uff0c\u4ee58K UHD\u7684\u65b9\u5f0f\u5448\u73b0\u3002"} +{"id": "1004019", "video_name": "4a872aaf-23de-587a-8a4a-6cabc6770aa5", "text": "\u5728\u9ed1\u591c\u7684\u6f06\u9ed1\u4e2d\uff0c\u8fd9\u4e2a\u7537\u4eba\u5b64\u72ec\u5730\u8d70\u7740\uff0c\u80cc\u666f\u662f\u4e00\u5e45\u672b\u65e5\u666f\u8c61\u3002"} +{"id": "1004322", "video_name": "4fd05f86-b8b2-5b0c-8a17-a2cd7dc30b6a", "text": "\u76f8\u673a\u6355\u6349\u5230\u6b27\u6d32\u4e00\u4e2a\u5b81\u9759\u7684\u8349\u5730\uff0c\u6d82\u4e0a\u8212\u7f13\u7684\u7c73\u8272\u8c03\u3002\u90c1\u90c1\u8471\u8471\u7684\u8349\u539f\uff0c\u8fde\u540c"} +{"id": "2007124", "video_name": "d49e7d42-dbe1-56da-9434-84b5a28498cd", "text": "\u96e8\u4e2d\u7684\u7537\u4eba\uff0c\u7531\u827e\u7c73\u5c14\u00b7\u8bfa\u5c14\u5fb7\u7ed8\u5236\u3002"} +{"id": "0003008", "video_name": "3580b17b-c7e7-5e66-a861-6d6e7da41b86", "text": "\u4e00\u4e2a\u5e7d\u7075\u624b\u6301\u62a5\u7eb8\u7a7f\u8fc7\u5df4\u9ece\u7684\u9ed1\u767d\u9897\u7c92\u72b6\u7535\u5f71\u7eb9\u7406\u3002"} +{"id": "4003343", "video_name": "ae91baed-127d-56a3-aadb-7700a77d411e", "text": "\u4e00\u5e45\u7cbe\u81f4\u800c\u751f\u52a8\u7684\u6587\u827a\u590d\u5174\u753b\u4f5c\uff0c\u7c7b\u4f3c\u4e8e\u7c73\u5f00\u6717\u57fa\u7f57\u7684\u897f\u65af\u5ef7\u6559\u5802\uff0c\u5bcc\u6709\u6d3b\u529b\u7684\u7c89"} +{"id": "4004105", "video_name": "b45169a1-bedc-5f43-ad10-3caadfd6a4d2", "text": "\u6709\u591a\u4eba\u4f7f\u7528\u7535\u8111\u7684\u529e\u516c\u5ba4\u3002\u4fe1\u606f\uff1aque gostoso\u3002"} +{"id": "2007258", "video_name": "7f04c0dc-0ec5-5174-a8cd-b315128f66b6", "text": "\u4eba\u524d\u98de\u8d8a\u7684\u9b3c\u9b42"} +{"id": "2007924", "video_name": "74e264a7-f104-5c61-af79-f90f59588549", "text": "\u4e09\u7ef4\u5706\u5708\u56f4\u7ed5\u7740\u7535\u5bfc\u7ebf\uff0c\u6240\u6709\u5706\u5708\u534a\u5f84\u76f8\u540c\uff0c\u7a0d\u5fae\u6709\u4e9b\u900f\u660e\uff0c\u5176\u5468\u957f\u4e0a\u7684\u7bad\u5934\u663e\u793a\u987a\u65f6\u9488"} +{"id": "4003070", "video_name": "363c8482-ad49-5a09-9e8f-091740359a46", "text": "\u6210\u719f\u7684\u59d4\u5185\u745e\u62c9\u5973\u4eba\u5fae\u7b11\u7740\u671d\u6211\u8d70\u6765\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u7389\u7c73\u997c\u3002\u8fd9\u662f\u4e39\u4f5b\u8001\u793e\u533a\u7684"} +{"id": "4003837", "video_name": "4c80309a-cddb-5780-a9af-45780ddab2ad", "text": "1974\u5e74\uff0c\u6a21\u7cca\u7684VHS\u5f55\u50cf\u5e26\u526f\u672c\u753b\u8d28\uff0c\u6234\u7740\u9762\u5177\u7684\u6c11\u95f4\u90aa\u6559\u5f92\u5728\u4e94\u6708\u67f1\u5468\u56f4\u8df3\u821e\uff0c"} +{"id": "4002729", "video_name": "2ecf6437-ed11-52ec-ad83-cf3e3f08c49f", "text": "\u5c0f\u732b\u54aaKiki\u542c\u5230\u4e00\u9996\u4f18\u7f8e\u7684\u6b4c\u66f2\uff0c\u8ddf\u7740\u58f0\u97f3\u8d70\u3002"} +{"id": "5001454", "video_name": "3a88dbae-b092-5259-9aa3-0f65af779b8d", "text": "\u5e15\u594e\u5854\u662f\u4e00\u540d\u5df4\u897f\u8db3\u7403\u8fd0\u52a8\u5458\uff0c\u6234\u7740\u91d1\u94fe\u548c\u94bb\u77f3\uff0c\u51fa\u73b0\u57284K 3D\u8bbe\u8ba1\u52a8\u753b\u7535\u5f71\u4e2d\u3002"} +{"id": "2006764", "video_name": "2c0869ef-1837-5973-b5cf-73b16e02310d", "text": "\u4e00\u7fa4\u70ed\u5e26\u9c7c\u5728\u7f8e\u4e3d\u7684\u73ca\u745a\u7901\u4e2d\u6e38\u52a8\uff0c\u9c7c\u513f\u6574\u9f50\u5730\u6e38\u52a8\u7740\uff0c\u9ec4\u8272\u7684\u9c7c"} +{"id": "2007930", "video_name": "e95aa6ed-9c2b-5695-86dd-216c46b98cf4", "text": "\u4e2d\u56fd\u7ffb\u8bd1\uff1a\u4e00\u4e2a10\u79d2\u7684\u89c6\u9891\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u623f\u5b50\u5728\u73b0\u5b9e\u4e2d\u5d29\u584c\u4e86\u3002"} +{"id": "2006078", "video_name": "ae34c4db-8d38-5ecf-9ec4-0c56907de4c0", "text": "\u7537\u4eba\u6253\u5f00\u51b0\u7bb1\uff0c\u628a\u8089\u653e\u8fdb\u53bb\uff0c\u665a\u4e0a\u3002"} +{"id": "6002678", "video_name": "358f032b-5236-571d-9797-3150306b5029", "text": "\u7687\u51a0\u5728\u70df\u96fe\u4e2d\u3002\u4fe1\u606f\uff1a\u7a46\u7f55\u9ed8\u5fb7\u63d0\u793a\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0005260", "video_name": "176b3ae1-48ce-5704-8296-f1e7616c211d", "text": "\u9ad8\u6069\u5e03\u62c9\u5c3c\uff0c\u4e00\u4e2a\u5145\u6ee1\u8272\u5f69\u7684\u5370\u5ea6\u6751\u5e84\uff0c\u62e5\u6709\u8302\u5bc6\u7684\u7eff\u8272\u666f\u89c2\u548c\u591a\u5f69\u7684\u623f\u5c4b\u3002\n\u5e74"} +{"id": "1004949", "video_name": "5b8ba006-4c7b-5b27-8d4c-794f53c4e6f8", "text": "\u7535\u5f71\u5f0f\u6d77\u5e95\u6f5c\u8247\u5728\u6d77\u4e0a\uff0c\u6c34\u624b\u4eec\u7ad9\u5728\u4e0a\u9762\u3002\u8d85\u903c\u771f\uff0c32k\u3002"} +{"id": "6002037", "video_name": "d00062b1-3481-5c72-99a0-005bc3c90eaa", "text": "\u4e00\u4e2a\u4eba\u5728\u516c\u4ea4\u8f66\u4e0a\u8ba9\u5ea7\u4f4d\u7ed9\u522b\u4eba\uff0c\u53e6\u4e00\u4e2a\u4eba\u548c\u65e0\u5bb6\u53ef\u5f52\u8005\u5206\u4eab\u98df\u7269\uff0c\u4e00\u4e2a\u5b69\u5b50\u6559\u8001\u4eba\u5982\u4f55\u4f7f\u7528\u79d1\u6280\u3002"} +{"id": "8002607", "video_name": "a129b473-db34-5132-98f2-cafbbf392975", "text": "Aafreen\u53e6\u4e00\u65b9\u9762\uff0c\u9677\u5165\u4e86\u6094\u6068\u548c\u5979\u884c\u4e3a\u7684\u6b8b\u9177\u73b0\u5b9e\u4e4b\u95f4\u7684\u77db\u76fe\u3002"} +{"id": "2006091", "video_name": "730a01bf-c273-5c64-a3eb-a51532d11b15", "text": "\u5bb6\u6709\u55ae\u8eab\u72d72\uff1a\u7d10\u7d04\u8ff7\u9014"} +{"id": "0005222", "video_name": "16da1cc4-cf51-5958-b85a-d862b6ac3c30", "text": "\u81ea\u7136\u7684\u96e8\u6c34\u843d\u5728\u8349\u539f\u4e0a\u3002"} +{"id": "1004527", "video_name": "541d35eb-e286-5ac9-901d-2c722fbd20c9", "text": "\u4e2d\u56fd\u65b0\u5e74\u5e86\u795d\u6d3b\u52a8\uff0c\u665a\u4e0a\uff0c\u4e00\u5bb6\u4eba\uff0c\u623f\u5b50\uff0c\u5f00\u5fc3\uff0c\u7a7f\u7740\u5b8b\u4ee3\u670d\u88c5\uff0c\u5b8b\u4ee3\u5efa\u7b51\u3002"} +{"id": "7002329", "video_name": "cbbb5440-c2e6-5ec4-81c5-2f96656ade05", "text": "1970\u5e74\uff0c\u5815\u843d\u5929\u4f7f\u53bb\u7f8e\u56fd\u5e02\u573a\u3002"} +{"id": "6004550", "video_name": "b9454243-f714-566e-b4d2-87a5c96f8102", "text": "\u5c3c\u514b\u65af\u7403\u8ff7\u5728\u8857\u4e0a\u5e86\u795d\u83b7\u5f97\u51a0\u519b\u80dc\u5229\u3002"} +{"id": "6004946", "video_name": "e5352b9e-cb10-513c-a7ca-b062fce17896", "text": "\u5de8\u578b\u6218\u8230\u95ea\u70c1\u7684\u706f\u5149\u548c\u55b7\u5c04\u7684\u84dd\u8272\u706b\u7130\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7002374", "video_name": "465de95c-5e13-5d53-8f2b-7c3a62e1d041", "text": "\u7528\u9ed1\u5149\u675f\u80fd\u6e90\u66ff\u6362\u5730\u7403\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "1006361", "video_name": "747cbc9d-4f57-5bb6-991c-aa53567d86cf", "text": "\u8bbe\u8ba1\u4e00\u5f20\u9ed1\u6697\u800c\u6c89\u91cd\u7684\u6d77\u62a5\uff0c\u4ee5\u5c0f\u4e11\u4e3a\u4e3b\u9898\uff0c\u6355\u6349\u6df7\u4e71\u548c\u65e0\u653f\u5e9c\u4e3b\u4e49\u7684\u672c\u8d28\u3002"} +{"id": "3003604", "video_name": "30cb1e5c-cdd0-5f0d-ac3e-8a914a26a238", "text": "\u4e00\u4e2a\u7531\u95ea\u70c1\u7684\u8ff7\u5e7b\u773c\u775b\u5236\u6210\u7684\u8611\u83c7\u3002"} +{"id": "0004443", "video_name": "092e5863-4ee3-5646-8c5d-03aa0507b2e1", "text": "\u4e00\u4e2a\u4e2d\u56fd\u5973\u5b69\u7ad9\u5728\u7a97\u6237\u540e\u9762\uff0c\u770b\u7740\u955c\u5934\u3002"} +{"id": "8003460", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "\u4e00\u7fa4\u670b\u53cb\u5750\u5728\u8def\u8fb9\u7684\u8336\u9986\u91cc\uff0c\u6109\u5feb\u5730\u804a\u5929\u3002"} +{"id": "8002655", "video_name": "25752ec5-5618-5a3d-860e-f7e6cb1f3d54", "text": "\u4e00\u4e9b18\u5c81\u7684\u4e9a\u6d32\u5973\u5b69\u5728\u5b66\u6821\u8d70\u5eca\u4e0a\u8d70\u3002"} +{"id": "3006185", "video_name": "0b5991a1-550e-530e-bbd1-09f3f2f1f441", "text": "\u4e00\u500b\u7537\u4eba\u548c\u4e00\u500b\u5973\u4eba\u7b2c\u4e00\u6b21\u898b\u9762\u7684\u96e3\u5fd8\u6642\u523b\u3002"} +{"id": "2006014", "video_name": "371919d1-c2ec-50e5-a595-fe5d85719b88", "text": "\u4e00\u5929\u7684\u96e8\u548c\u96ea\u3002"} +{"id": "7003729", "video_name": "228aef1d-8a71-5243-beb8-df07f5d3b6f1", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u521a\u521a\u5728\u4f20\u9012\u6d88\u606f\u3002"} +{"id": "4004426", "video_name": "247a7eaf-ea36-549d-bb68-307deb309ba2", "text": "\u6cf0\u51e1\u00b7\u963f\u7279\u4ec0\u5728\u6240\u6709\u5546\u5e97\u62db\u724c\u4e0a\u505a\u4e86\u5b57\u6bcd\u8bbe\u8ba1\u3002"} +{"id": "0005706", "video_name": "1fda1ee1-78e0-545e-afcc-4812532b3412", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u6dfb\u52a0\u6d82\u62b9\u75d5\u8ff9\u7684\u521b\u610f\u7ebf\u6807\u5fd7\u3002"} +{"id": "8003485", "video_name": "ca89c00c-189d-5c6f-ad0a-e59fb81f4d12", "text": "\u5982\u4f55\u716e\u714e\u997c\u7684\u9010\u6b65\u8bf4\u660e\u3002"} +{"id": "8001739", "video_name": "6f05a1eb-a97c-56cf-94f7-ea7f1f15bfdd", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u4e00\u4e2a\u5c4f\u5e55\u5145\u6ee1\u7684\u623f\u95f4\u91cc\u89c2\u5bdf\u4e16\u754c\u5e76\u83b7\u5f97\u4fe1\u606f\u3002"} +{"id": "0005505", "video_name": "1bfa2eaa-d3f7-518b-9417-1f783113fcb7", "text": "\u7b2c\u56db\u6b21\u5de5\u4e1a\u9769\u547d\u7684\u8c61\u5f81\u662f\u516d\u8fb9\u5f62\u5f62\u72b6\u4e2d\u7684\u5706\u5708\uff0c\u9ec4\u8272\u4e3b\u9898\u3002"} +{"id": "0006760", "video_name": "3295abac-a4c1-5dc7-a7b2-935a4c55fe55", "text": "\u4e00\u540d\u5b87\u822a\u5458\u9003\u79bb\u4e00\u95f4\u7740\u706b\u7684\u623f\u5b50\u3002"} +{"id": "2007223", "video_name": "e5bd7338-ba8f-5f9f-ae95-177939197ad4", "text": "\u65e5\u843d\u5728\u53f3\u8fb9\uff0c\u505c\u683c\u52a8\u753b\u7acb\u4f53\u5316\u3002"} +{"id": "3005217", "video_name": "511f7325-c56b-51a2-9fca-47d3ba5fe79f", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793aGwagon\u548cLamborghini\u5728\u96e8\u4e2d\u9a7e\u9a76\u3002"} +{"id": "6003630", "video_name": "b66bfcdc-2186-5020-9a1b-82a1d6e7c84f", "text": "\u9ed1\u6697\u623f\u95f4\u91cc\u7684\u4e00\u9053\u95ea\u5149\u5728\u9ed1\u6697\u4e2d\u95ea\u4e86\u4e00\u79d2\u949f\uff0c\u7136\u540e\u6d88\u5931\u4e86\uff0c\u53d8\u5f97\u66f4\u52a0\u9ed1\u6697\u3002"} +{"id": "7003792", "video_name": "642bd9a4-607c-514b-a17e-fafb20b9199a", "text": "\u7ad9\u5728\u6c34\u4e0a\u624b\u6301\u6218\u65d7\u7684\u6218\u58eb"} +{"id": "8001774", "video_name": "9b58c5b2-659d-500b-9f6b-87ecee5e88bf", "text": "\u4e00\u4e2a\u4eba\u5403\u7740\u592a\u9633\u5149\u7ebf\u3002"} +{"id": "7004110", "video_name": "65a8f02c-b4ec-58df-8334-725e397013f8", "text": "\u4e00\u540d\u53ef\u7231\u7684\u5973\u5b69\u5728\u65e5\u672c\u5217\u8f66\u4e0a\u54ed\u6ce3\u3002"} +{"id": "0004576", "video_name": "0b6a24be-5c23-5294-997f-b74da45fa6f8", "text": "\u4e00\u540d\u7537\u5b50\u5750\u5728\u9910\u5385\u91cc\u8bf4\u8bdd\u3002"} +{"id": "2006414", "video_name": "f13a5fe7-e975-5c7b-9a2d-62812f257d5c", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u57281915\u5e74\u70b9\u71c3\u4e86\u4e00\u652f\u8721\u70db\uff0c\u770b\u7740\u955c\u5934\u5e76\u8f6c\u5934\u3002 \n\nSource sentence: The cat is sleeping on the couch next to the window"} +{"id": "2004786", "video_name": "851131ab-72ce-5fc6-abfc-035c5172f54c", "text": "\u53d8\u6210\u8d5b\u535a\u683c\u7684\u8f6c\u53d8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2005094", "video_name": "6ff11a33-d546-5ba4-8750-1fc66b5e9d40", "text": "\u5c55\u793a\u4e00\u4e2a\u80fd\u591f\u5e73\u9759\u7684\u7761\u524d\u60ef\u4f8b\uff0c\u4ee5\u5f3a\u8c03\u5145\u8db3\u7761\u7720\u5728\u8ba4\u77e5\u529f\u80fd\u4e2d\u7684\u4f5c\u7528\u3002"} +{"id": "0003551", "video_name": "3f60d0f0-e93e-52e8-b1f6-7885b0db2f38", "text": "\u6885\u897f\u5347\u5929\u7684\u89c6\u9891"} +{"id": "2006755", "video_name": "d24cfdd9-0bd6-5a98-802d-adfe46f8d722", "text": "\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u95ea\u70c1\u7684\u706f\u6ce1\u3002"} +{"id": "0006834", "video_name": "33e8fb80-996b-5d1d-b602-9a66e7c35b58", "text": "\u5c55\u793a\u4e00\u6b3e\u73b0\u4ee3\u5316\u7684\u8ba1\u7b97\u673a\u6f0f\u6d1e\u626b\u63cf\u5de5\u5177\uff0c\u5c06\u5df2\u8bc6\u522b\u7684\u8b66\u62a5\u4ee5\u7ea2\u8272\u548c\u6a59\u8272\u4fe1\u6807\u5728\u73b0\u4ee3\u663e\u793a\u5668\u4e0a\u95ea"} +{"id": "5001279", "video_name": "cb1967ab-421f-5436-ba0e-45d0527f2546", "text": "\u811a\u6b65\u62d6\u52a8\u58f0\uff0c\u4e00\u53ea\u5bb3\u6015\u7684\u517d\u4eba\u5306\u5306\u9003\u8d70\uff0c\u5730\u9762\u89c6\u89d2\uff0c\u9762\u5bf9\u4e00\u53ea\u602a\u7269\u3002"} +{"id": "7004276", "video_name": "80a264dd-7ce8-5a85-b4c2-56daf518d5b0", "text": "\u83f2\u5229\u514b\u65af\u732b\u9a91\u9a6c1970\u5e74\u4ee3\u68a6\u5e7b\u6838\u5fc3\u3002"} +{"id": "0006645", "video_name": "3027cd97-a1d5-55c0-b55c-73fc52b4e113", "text": "\u4e00\u4e2a\u8d28\u91cf\u9ad8\u7684\u77ed\u89c6\u9891\uff0c\u4e00\u4e2a\u4eba\u8fd1\u8ddd\u79bb\u5206\u6790\u80a1\u7968\u3002"} +{"id": "0004817", "video_name": "0fa1d1d4-941b-55f2-b0cd-e6ba5fb2d5c2", "text": "\u674f\u4ec1\u5012\u5165\u76d8\u5b50\u4e2d\u3002"} +{"id": "2007742", "video_name": "55ade78a-16a1-5b58-bbad-be3b45e420a1", "text": "\u65e9\u4e0a\u597d (\u5b57\u4f53\uff1a\u73b0\u4ee3)\uff0c\u753b\u9762\u4e3a\u70ed\u5e26\u68ee\u6797\uff0c\u732b\u7a7f\u8fc7\u753b\u9762\u79fb\u51fa\u3002"} +{"id": "7002293", "video_name": "7a5c966b-655d-5dd9-8e72-162dc4302cc5", "text": "\u4f60\u6709\u6ca1\u6709\u9519\u8fc7\u90a3\u4e2a\u7a7f\u7740\u84dd\u8272\u4e0a\u8863\u548c\u767d\u8272\u88d9\u5b50\uff0c\u5728\u68ee\u6797\u91cc\u9760\u8fd1\u6cb3\u8fb9\u8bfb\u4e66\u7684\u5e74\u8f7b\u5973\u5b69\u5361"} +{"id": "4002753", "video_name": "248a1a0c-8682-5427-9b01-b58c7afaeeba", "text": "\u9601\u697c\u7684\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u67d4\u548c\u7684\u5149\u7ebf\u900f\u8fc7\u7070\u5c18\u7684\u7a97\u6237\uff0c\u76f8\u673a\u7f13\u6162\u5730\u62c9\u8fd1\u5230\u8336\u58f6\u4e0a\u3002"} +{"id": "8001476", "video_name": "9f193517-27da-50a3-931f-3814f1be9c90", "text": "\u5149\u7ebf\u771f\u5b9e\u30014K\u3001\u6d77\u4e2d\u5d1b\u8d77\u7684\u6076\u9b54\u3001\u722c\u884c\u52a8\u7269\u3001\u66b4\u98ce\u96e8\u3001\u9ed1\u4e91\u3001\u95ea\u7535\u3001\u96e8\u6c34\u3001\u5173\u952e\u7684"} +{"id": "2007710", "video_name": "064a93dc-33f2-5398-956b-26b7c097085b", "text": "\u5728\u7259\u4e70\u52a0\u91d1\u65af\u6566\u7684\u6a59\u8857\u4e0a\u98de\u7fd4\u3002"} +{"id": "2006720", "video_name": "8533955f-ff42-5955-a080-7a50363d219a", "text": "\u5916\u592a\u7a7a\u4e2d\uff0c\u539a\u539a\u7684\u4e91\u6735\u5411\u6211\u4eec\u8fc5\u901f\u9760\u8fd1\u3002"} +{"id": "4004779", "video_name": "0217781e-2b91-581f-8a98-a7d6270a7a58", "text": "\u591a\u4f26\u591a\u591c\u665a\u7684\u8d5b\u535a\u670b\u514b\u5929\u9645\u7ebf\u9644\u8fd1\u7684\u4e1c\u4eac\u9713\u8679\u706f\u5149\u73af\u5883\uff0c\u661f\u661f\u4e0e\u94f6\u6cb3\uff0c\u5929\u7a7a\u4e2d"} +{"id": "4003678", "video_name": "e167c0f8-9af3-5817-ad4f-1a48cb5ec3ac", "text": "\u4e00\u4f4d\u8eab\u7a7f\u767d\u8272\u8863\u88f3\u7684\u7537\u6027\u5929\u4f7f\u7ad9\u5728\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7684\u9762\u524d\u3002"} +{"id": "1006868", "video_name": "7d5fc06e-81c0-5dcc-90d9-4ca455e15300", "text": "\u6700\u4f73\u8d28\u91cf\uff0c\u6770\u4f5c\uff0c\u8d85\u9ad8\u5206\u8fa8\u7387\uff0c1\u4e2a\u5973\u5b69\uff0c\u72ec\u594f\uff0c\u88d9\u5b50\uff0c\u8170\u90e8\uff0c\u8fd0\u52a8\u978b\uff0c\u957f\u88d9\uff0c\u978b"} +{"id": "3006294", "video_name": "9a93c4f5-afc0-56c8-9d7e-b5ed766d2b35", "text": "\u4e00\u7247\u4ece\u5192\u9669\u6545\u4e8b\u4e2d\u4f20\u6765\u7684\u4f4e\u8bed\u68ee\u6797\u3002"} +{"id": "3005278", "video_name": "a74a197b-2e0a-5004-bcfb-2d4325dc5c84", "text": "\u56fe\u793a\u56fe\u4e66\u9986\u5185\u90e8\u95e8\u6237\u7684\u63d2\u753b\uff0c\u6697\u793a\u7740\u4e66\u4e2d\u6545\u4e8b\u4e0e\u770b\u4e0d\u89c1\u7684\u9886\u57df\u4e4b\u95f4\u7684\u8054\u7cfb\uff0c\u9080\u8bf7\u6e38\u5ba2\u63a2\u7d22\u65e0\u9650"} +{"id": "8003929", "video_name": "74f50d36-a740-5744-b530-f3b0d775d144", "text": "\u65e5\u672c\u5361\u901a\u98ce\u683c\u4e0b\u7684\u533b\u9662\u533b\u751f\u3002"} +{"id": "3004738", "video_name": "73903c86-3422-5ed4-9b26-4bcbd75178e2", "text": "\u5922\u9b58\u822c\u7684\u610f\u8c61\uff0cDVD\u622a\u5716\u54c1\u8cea\uff0c\u5077\u62cd\uff0c\u696d\u9918\u651d\u5f71\uff0c\u73fe\u5be6\u751f\u6d3b\uff0c\u903c\u771f\uff0c\u5c31\u50cf\u4fc4"} +{"id": "0003811", "video_name": "43edc28c-e3e7-53b4-9c43-7b5555254486", "text": "\u5fb7\u56fd\u603b\u7406\u5b89\u683c\u62c9\u00b7\u9ed8\u514b\u5c14\u9152\u540e\u9189\u91ba\uff0c\u62cd\u6444\u4e8e2000\u5e74\u4ee3\u65e9\u671f\u7684\u7eaa\u5f55\u7247\u3002"} +{"id": "0003414", "video_name": "3d410dc2-810a-56ec-9fb4-9489cc45ecaf", "text": "\u7537\u4eba\u6709\u78c1\u6027\u7684\u51dd\u89c6\uff0c\u5f15\u4eba\u6ce8\u76ee\u7684\u7279\u5f81\uff0c\u8138\u90e8\u8868\u73b0\u51fa\u6743\u5a01\u611f\uff0c\u7535\u5f71\u822c\u7684\u53f2\u8bd7\u611f\uff0c4K\u3002"} +{"id": "0003370", "video_name": "3c5ffa86-a4ec-5182-b8e5-0400916804e5", "text": "\u7279\u96f7\u5f17\u00b7\u9a6c\u4e01\u5728\u4e00\u573a\u97f3\u4e50\u4f1a\u4e0a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\uff0c\u4ee5\u903c\u771f\u7684\u98ce\u683c\u8bf4\u5531\u3002"} +{"id": "0003095", "video_name": "36f2252b-557b-565c-9b40-c9bbf4d252c4", "text": "1990\u5e74\uff0c\u4e00\u6bb5\u8d858\u6728\u6750\u4e2d\u7684\u5f71\u50cf\uff0c\u8b66\u5bdf\u5728\u4e00\u500b\u96e8\u5098\u72af\u7f6a\u73fe\u5834\u5468\u570d\u53d6\u7b14\u8bb0\u548c\u62cd\u7167\u3002"} +{"id": "6004192", "video_name": "ccf4ae9f-45ed-54b7-b9ff-e00ac235200d", "text": "\u5916\u661f\u4eba\u548c\u6700\u7f8e\u4e3d\u7684\u661f\u7403\uff0c\u7ec6\u8282\u6d41\u7545\u3002"} +{"id": "2003595", "video_name": "bd9307f5-d64d-5915-a0b5-a4c97aeb538e", "text": "\u94f6\u6cb3\u5e1d\u738b\u7684\u52a0\u5195\u5178\u793c\uff0c\u5927\u578b\u5b9d\u5ea7\u5385\u3002\u672a\u6765\u4e3b\u4e49\u7684\uff0c\u542f\u793a\u5f55\u5f0f\u7684\u3002"} +{"id": "0006474", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "\u7537\u4eba\u7a7f\u7740\u9a6c\u91cc\u5965\u670d\u88c5\u5728\u5a5a\u793c\u4e0a\u5403\u610f\u5927\u5229\u8089\u4e38\u9762\u3002"} +{"id": "2007073", "video_name": "1bab90eb-dadc-547c-b6ad-cfed4881547e", "text": "\u6708\u7403\u4e0a\u7684\u590d\u53e4\u97f3\u9891\u653e\u5927\u5668"} +{"id": "1003363", "video_name": "3dea8ff6-3fe8-51f4-a977-35d11006e5bb", "text": "\u514b\u62c9\u6258\u65af\u8bf4\u8bdd\u7684\u300a\u6218\u795e\u300b\u6e38\u620f\u4e2d\uff0c\u4f1a\u8f6c\u52a8\u5934\u90e8\u548c\u4ea7\u751f\u98ce\u58f0\u3002"} +{"id": "4004683", "video_name": "0459277c-2a1b-5e25-8b16-352dccce14a6", "text": "\u672a\u6765\u670d\u88c5\u7684\u4eba\u5f62\u673a\u5668\u4eba\u5728\u821e\u53f0\u4e0a\u3002"} +{"id": "0005963", "video_name": "241b2c10-aed6-5f46-a46b-ea7e4db599a7", "text": "\u4eba\u7c7b\u7ec6\u80de\u5206\u88c2\u7684\u7535\u5b50\u663e\u5fae\u955c\u56fe\u50cf\u3002"} +{"id": "8001511", "video_name": "c66ae6ef-1b6b-57d7-8805-c74dd5ab4e45", "text": "\u5973\u6f14\u5458\u52a0\u4e3d\u5a1c\u00b7\u83ab\u67e5\u6d1b\u5a03\u5728\u300a\u7834\u706f\u4e4b\u8857\u300b\u4e2d\u53bb\u4e16\uff0c\u4eab\u5e7489\u5c81\u3002"} +{"id": "8002909", "video_name": "7dc72e4a-0d4f-5f92-9322-7e8e87c6561e", "text": "1950\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u5f71\u7247\uff0c\u62cd\u6444\u5230\u4e00\u7fa4\u5b9e\u4f53\u8d70\u8fdb\u58ee\u4e3d\u7684\u6d77\u6d0b\uff0c\u795e\u79d8\u800c\u8d85\u51e1\u3002"} +{"id": "7004747", "video_name": "f5daef49-d603-522e-bbe5-d441dbe5864b", "text": "\u4e91\u5728\u79fb\u52a8\uff0c\u4eba\u4eec\u76f8\u4e92\u6ce8\u89c6\u7740\uff0c\u592a\u9633\u6b63\u5728\u5347\u8d77\u3002"} +{"id": "2006279", "video_name": "0e929038-d97a-59d4-994f-72ee17779d3f", "text": "\u4e00\u540d\u5b69\u5b50\u7528\u62c7\u6307\u548c\u98df\u6307\u63e1\u4f4f\u6c34\u6676\u6446\u9524\u94fe\uff0c\u8ba9\u6c34\u6676\u81ea\u7136\u60ac\u6302\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u5468"} +{"id": "6004536", "video_name": "1c0babbe-7184-5677-84d9-cd653440a5ae", "text": "\u4e00\u4f4d\u5916\u79d1\u533b\u751f\u8eb2\u907f\u98de\u6765\u7684\u5976\u6614\uff0c\u5c31\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "5001237", "video_name": "1bff5356-04bc-552c-9f3b-ed265f561387", "text": "\u65e9\u671f\u4eba\u7c7b\uff0c\u89c9\u9192\u4e86\u7528\u4e24\u6761\u817f\u884c\u8d70\u7684\u53ef\u80fd\u6027\u3002"} +{"id": "2004567", "video_name": "dbe0b0d7-5c67-5709-8d95-9411c8438f0e", "text": "\u4e00\u5f20\u62e5\u6709\u8d85\u80fd\u529b\u7684SIM\u5361\u3002"} +{"id": "8002072", "video_name": "39bba549-a7ad-530c-a761-7c1b2655e404", "text": "\u4e24\u53ea\u50cf\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u7684\u5154\u5b50\u5728\u8fc8\u963f\u5bc6\u90ca\u533a\u95e8\u5230\u95e8\u9500\u552e\u3002"} +{"id": "1005804", "video_name": "6ac3820a-4d02-5488-802d-2388b500d35b", "text": "\u73a9\u5bb6\u7537\u5b69\u5728\u665a\u4e0a\u73a9\u6050\u6016\u6e38\u620f\uff0c\u7a81\u7136\u95e8\u5f00\u59cb\u6572\u54cd\u3002"} +{"id": "3005784", "video_name": "c1911e53-c2d9-569e-8b32-cc3646c27a0f", "text": "\u7d2b\u8272\u5c71\u6797\u4e2d\u65cb\u8f6c\u6f02\u6d6e\u7684\u7403\u3002"} +{"id": "7002750", "video_name": "15404173-106d-5de5-bd67-9239ebc21dd0", "text": "\u4ece\u7535\u8bdd\u6746\u8dcc\u843d\u5230\u8def\u4e0a\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "5001985", "video_name": "fd2f5840-1fa6-53c7-af31-badf9f092c22", "text": "\u7f57\u9a6c\u65f6\u671f\u7684\u640f\u6597\u573a\u666f\uff0c\u4e00\u540d\u7537\u5b50\u4e0e\u72ee\u5b50\u4ea4\u6218\uff0c\u7eb9\u8eab\u8bbe\u8ba1\uff0c\u9ed1\u767d\u8272\uff0c\u903c\u771f\u3002"} +{"id": "4002918", "video_name": "7a319b2d-dbd4-5a1f-a039-6c5a5dc1d478", "text": "\u4e00\u4e2a\u8d85\u5199\u5b9e\u7684\u7537\u5b50\u4e0e\u4e00\u4e2a\u62e5\u6709\u957f\u9ed1\u53d1\u7684\u8d85\u5199\u5b9e\u7684\u68d5\u8272\u5973\u5b69\u8fdb\u884c\u773c\u795e\u4ea4\u6d41\u3002\u76f8\u673a\u7f29\u8fdb\u5979\u7684\u773c\u775b\uff0c\u706f"} +{"id": "8002524", "video_name": "c9b262e0-7336-56c7-a96a-0020d9886dd7", "text": "\u5d29\u584c\u7684\u6709\u89d2\u690d\u7269\u796d\u53f8\u795e\u79d8\u7684\u7ef4\u591a\u5229\u4e9a\u7535\u5f71\u7167\u7247\u5199\u5b9e\u7684\u8fd0\u52a82"} +{"id": "3005003", "video_name": "b8a68659-524a-5e29-899b-2410c214c090", "text": "\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u4e9a\u6d32\u7537\u5b50\uff0c\u76ae\u80a4\u9edd\u9ed1\uff0c\u624b\u81c2\u4e0a\u7cfb\u7740\u7ea2\u5e03\uff0c\u7a7f\u7740\u7ea2\u8272\u53e4\u7f57\u9a6c\u5e03\u88e4"} +{"id": "8001230", "video_name": "eab40add-53a4-50bd-b7cf-5ba13f8e2ade", "text": "\u5b69\u5b50\u3001\u795e\u660e\u3001\u5de6\u4fa7\u6444\u50cf\u673a\u3001\u65b0\u751f\u513f\u3001\u5973\u5b69\u3001\u5927\u773c\u775b\u3001\u957f\u776b\u6bdb\u3001\u67d4\u548c\u767d\u5149\u3001\u67d4\u548c"} +{"id": "6002172", "video_name": "b95c2d84-0a4d-53ec-b60d-f2e3270b8c1a", "text": "\u4e00\u4f4d\u91d1\u53d1\u5c0f\u5973\u5b69\u6b63\u5750\u5728\u4e00\u628a\u6905\u5b50\u4e0a\u5403\u4e1c\u897f\u3002"} +{"id": "3005731", "video_name": "29e0b9a0-21c4-5a54-a7e7-ae582e2597a9", "text": "\u4e00\u90e820\u4e16\u7eaa90\u5e74\u4ee3\u7684\u6050\u6016\u7535\u5f71\uff0c\u62cd\u6444\u4e8e1990\u5e74\u4ee3\uff0c\u8bb2\u8ff0\u4e86\u9ed1\u6697\u7684\u4e4c\u4e91\u903c\u8fd1\u9ec4\u8272\u6c61\u67d3"} +{"id": "0005238", "video_name": "171743d6-6897-53c5-937f-a6e242e7d35a", "text": "\u6a21\u677f\u62ab\u8428\u3001\u4e09\u660e\u6cbb\u3001\u6c49\u5821\u3001\u610f\u5927\u5229\u9762\u3001\u901a\u5fc3\u7c89\u3001\u5730\u94c1\u3001\u85af\u6761\u3001\u53ef\u4e50\u996e\u6599\u90fd\u5728\u684c\u5b50\u4e0a\uff0c"} +{"id": "4003141", "video_name": "3984eeab-51d0-55cd-a41b-20fca75b35a0", "text": "\u8ba9\u5154\u5b50\u5531\u6b4c\u5f39\u5409\u4ed6\u3002"} +{"id": "3003200", "video_name": "a8df7592-7798-5704-93cf-ac03340724a6", "text": "\u6781\u79fb\u5047\u8bf4\u63cf\u8ff0\u4e86\u8fd9\u4e9b\u6781\u70b9\u76f8\u5bf9\u4e8e\u5730\u8868\u4f4d\u7f6e\u7684\u53d8\u5316\u2014\u2014\u8fd9\u662f\u4e00\u79cd\u4e0e\u5c81\u5dee\u548c\u7ae0\u52a8\u5f15\u8d77\u7684\u76f8\u5bf9\u4e8e\u9ec4\u9053\u9762\u7684\u8f74\u5411\u53d6\u5411"} +{"id": "1005171", "video_name": "5f2c2bc3-989f-5a56-b69b-2409bef629db", "text": "\u6dcb\u6d74\u95f4\u91cc\u4e00\u4e2a\u5973\u4eba\u6d17\u6fa1\u7684\u8f6e\u5ed3\u3002"} +{"id": "3005964", "video_name": "47fdb129-f1f4-5abd-af76-95547e44dd1c", "text": "\u4e00\u4e2a\u80a5\u80d6\u7537\u5b50\u7ad9\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u6050\u6016\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u4ed6\u7b11\u7740\u62bd\u6410\u7740\u4ed6\u7684\u80f3\u818a\u548c\u817f\u3002"} +{"id": "7004140", "video_name": "1d053a51-fb30-5874-b17a-59a4e3df21ae", "text": "\u7f8e\u4e3d\u7684\u84dd\u8272\u8774\u8776\u98de\u821e\u7740\uff0c\u843d\u5728\u4e00\u4f4d\u7f8e\u4e3d\u7684\u83f2\u5f8b\u5bbe\u5973\u5b69\u5de6\u80a9\u80cc\u90e8\uff0c\u6162"} +{"id": "6002862", "video_name": "fff63288-d8f0-5f01-92a4-f2ecc4d226d8", "text": "\u8d85\u5199\u5b9e\u76844K\u672a\u6765\u4e3b\u4e49\u53e4\u795e\u4eea\u5f0f\u5927\u5385"} +{"id": "2003041", "video_name": "809e72c3-27f9-5d05-a88d-e3f880c0046f", "text": "\u6355\u6349\u4ee3\u8868\u73cd\u89c6\u5bb6\u5ead\u4f20\u7edf\u7684\u65f6\u523b\u3002\u8fd9\u53ef\u80fd\u5305\u62ec\u7279\u522b\u5e86\u795d\u6d3b\u52a8\u7684\u56fe\u50cf\uff0c\u5e74\u5ea6\u6d3b\u52a8\u6216\u5c06\u5bb6\u5ead\u805a\u96c6\u5728\u4e00"} +{"id": "7002041", "video_name": "897c306b-4d6c-5910-bffa-cbc95933c647", "text": "\u76d8\u5b50\u4e2d\u592e\u6709\u4e00\u5927\u7897\u9e21\u8089\u548c\u610f\u5927\u5229\u9762\u7684\u7c73\u996d\u3002"} +{"id": "8002937", "video_name": "abf947e2-4991-52ae-acc6-7e134474218b", "text": "\u4eba\u7fa4\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u5e7f\u89d2\u955c\u5934\u4e0b\u6709\u4e00\u4e2a\u544a\u793a\u724c\u4e0a\u5199\u7740\u201c\u751f\u6d3b\u5ef6\u8fdf\u201d\u3002"} +{"id": "6002407", "video_name": "00fedf4b-e01f-5e90-89cd-6de1b02958d0", "text": "\u8774\u8776\u98de\u821e\u7684\u5973\u5b69\u8f6c\u8fc7\u8eab\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7004469", "video_name": "82b23feb-7a97-5675-bbe1-3b59818e5007", "text": "1920\u5e74\uff0c\u5728\u5e02\u4e2d\u5fc3\u7684\u4e00\u5bb6\u97f3\u4e50\u573a\u6240\u5916\uff0c\u8bb8\u591a\u4eba\u5728\u4eab\u53d7\u591c\u751f\u6d3b\u3002"} +{"id": "3004498", "video_name": "f28d387f-e038-5512-b4dc-6e400d3e5769", "text": "\u4e00\u4e2a\u767d\u9a6c\u5c3e\u7684\u7f51\u7edc\u5973\u5b69\u8d70\u8fdb\u4e86\u4e00\u8258\u592a\u7a7a\u8239\u7684\u95e8\u3002\u5979\u5168\u8eab\u90fd\u662f\u767d\u8272\u7684\uff0c\u7a7f\u7740\u9ad8\u8ddf\u9774\u3002\u5979"} +{"id": "8002168", "video_name": "edd2cc76-df9c-5999-bfd1-93138dd58202", "text": "\u8230\u961f\u822a\u884c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u80a9\u5934\u89c6\u89d2"} +{"id": "4004575", "video_name": "2dc17966-6e49-572e-9828-8e704db699f3", "text": "\u7f8e\u4e3d\u7684\u7011\u5e03\uff0c\u9ad8\u8f9b\u70f7\u503c\u6e32\u67d3\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u955c\u5934\uff0c\u8d85\u7ea7\u5feb\u8fdb\uff0c\u8ddf\u8e2a\u955c\u5934\uff0c4k\u3002"} +{"id": "8003486", "video_name": "c45c40cd-41b9-5172-8f18-3ee9020d5fc6", "text": "\u5916\u661f\u4eba\u5750\u5728\u684c\u5b50\u524d\u67e5\u770b\u4ed6\u4eec\u7684\u7535\u5b50\u90ae\u4ef6\u3002"} +{"id": "3003538", "video_name": "19691e90-d676-5927-8574-b08a61d84078", "text": "\u4e00\u4e2a\u5149\u675f\u4ece\u592a\u7a7a\u4e2d\u5c04\u51fa\uff08\u7535\u5f71\u822c\u7684\u573a\u666f\uff09"} +{"id": "2003382", "video_name": "f317920f-c67d-5f7c-a8d1-1d559911aa4f", "text": "\u8239\u4e0a\u72c2\u821e\uff0c\u8ff7\u5e7b\u98ce\u683c\u3002"} +{"id": "0005936", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "\u4e00\u4e2a\u5e26\u7740\u8033\u673a\u7684\u7537\u5b50\u5728\u5367\u5ba4\u91cc\u665a\u4e0a\u542c\u6b4c\u3002"} +{"id": "6002177", "video_name": "97e5e96a-f670-5f2e-b58f-afeb37818def", "text": "\u4e00\u4e2a\u5361\u901a\u98ce\u683c\u7684\u4e2d\u4e16\u7eaa\u9a91\u58eb\u5411\u955c\u5934\u6325\u624b\uff0c\u9762\u5e26\u5e78\u798f\u8868\u60c5\u3002"} +{"id": "3005235", "video_name": "eae3bf4d-37be-569c-a7c7-4632595beec9", "text": "\u6d77\u9e25\u7a7f\u7740\u8863\u670d\u559d\u7740\u9152\uff0c\u5728\u8461\u8404\u7259\u6ce2\u5c14\u56fe\u7684\u8857\u5934\u3002"} +{"id": "3003332", "video_name": "323079a3-a350-5e97-a239-86423c17d1ee", "text": "\u4e4c\u9e26\u6816\u606f\u5728\u4e00\u4e2a\u76db\u7740\u5c11\u91cf\u6c34\u7684\u571f\u7f50\u65c1\uff0c\u8bd5\u56fe\u559d\u6c34\u4f46\u7531\u4e8e\u6c34\u4f4d\u8fc7\u4f4e\u800c\u5931\u8d25\u3002\u4e4c\u9e26\u5e94\u8be5\u6709\u4e00\u4e2a"} +{"id": "4002138", "video_name": "86d193bd-6dc6-5d88-b8ce-724384cda8dc", "text": "\u4e00\u5f20\u8001\u5987\u4eba\u8df3\u821e\u7684\u8857\u5934\u6444\u5f71\u8096\u50cf\u3002"} +{"id": "6003795", "video_name": "5af62072-0df7-5491-acde-29bae330b339", "text": "\u5916\u661f\u86c7\u7f20\u7ed5\u5728\u9ed1\u6697\u7684\u7a7a\u95f4\u7ad9\u4e2d\u5b87\u822a\u5458\u7684\u8116\u5b50\u4e0a\u3002\u8fd1\u666f\u84dd\u8272\u706f\u5149\uff0c\u80cc\u666f\u95ea\u70c1\u7ea2"} +{"id": "8002884", "video_name": "9532d783-8dea-54d1-91ce-98405d331984", "text": "\u4e00\u53ea\u87fe\u870d\u5728\u5730\u4e0a\u7684\u6728\u5934\u4e0a\u89c2\u5bdf\u4e00\u53ea\u866b\u5b50\u3002"} +{"id": "4002289", "video_name": "69f599cd-4e80-55f0-8ecc-b99e9a30167c", "text": "\u4e54\u6cbb\u6253\u7834\u4e86\u82f1\u683c\u5170\u94f6\u884c\u5e76\u653b\u51fb\u4e86\u6cf0\u94e2\u3002"} +{"id": "0006328", "video_name": "2ab38ec1-a5ea-5dac-8eb5-fc9101a64aa5", "text": "\u5e0c\u814a\uff0c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\uff0c\u8d85\u5199\u5b9e\uff0c\u9ad8\u80fd\u6e32\u67d3\uff0c\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "4004473", "video_name": "647bd6e3-b332-5b0f-9aaa-a24e4be6bdab", "text": "\u6bcd\u5973\u795e\u897f\u5854\u6709\u4e00\u5f20\u7f8e\u4e3d\u7684\u9762\u5b54\u3002\u8fea\u65af\u5c3c\u98ce\u683c\u76843D\u89d2\u8272\u3002"} +{"id": "5001316", "video_name": "a863b621-d0a0-5f3c-a255-65caecfea5f5", "text": "\u5916\u6c47\u5e02\u573a\u975e\u5e38\u6709\u5229\u53ef\u56fe\uff0c\u8ba9\u4eba\u4eec\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "4002248", "video_name": "de8692d9-be3f-5c2c-82c4-27fa57c80b93", "text": "\u5728\u5e7b\u60f3\u4e4b\u5730\u7684\u5fc3\u810f\uff0c\u4e00\u9897\u5149\u8292\u56db\u5c04\u7684\u5b9d\u77f3\u95ea\u8000\u7740\u5f02\u4e16\u754c\u7684\u5149\u8f89\u3002\u4f20\u8bf4\u5b83\u5177\u6709"} +{"id": "6003668", "video_name": "dbe17c2c-3375-5780-b31d-832f91cebf11", "text": "5\u5934\u5370\u5ea6\u725b\u7ad9\u5728\u68ee\u6797\u91cc\u4ea4\u8c08\uff0c2D\u52a8\u753b\u56fe\u50cf\u3002"} +{"id": "7003335", "video_name": "1ea0fc07-94e9-56ce-9941-a903b6e7f345", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7bdd\u706b\u65c1\uff0c\u5468\u56f4\u88ab\u5c0f\u5996\u7cbe\u5305\u56f4\u7740\u3002"} +{"id": "8003863", "video_name": "0958ed91-7266-5f8d-b83c-6d723b79223d", "text": "\u4e00\u4e2a\u4eba\u7528\u624b\u6307\u6309\u4f4f\u592a\u9633\u7a74\uff0c\u9762\u9732\u75db\u82e6\u8868\u60c5\u3002"} +{"id": "3005525", "video_name": "f2a15f4c-64f1-5efe-b0a1-596a4036739d", "text": "\u5728\u4ed6\u4eec\u5408\u4f5c\u8fdb\u884c\u79d1\u5b66\u5b9e\u9a8c\u65f6"} +{"id": "0004504", "video_name": "0a27d75b-b6bb-5849-8acd-4e1a7efe6f95", "text": "\u673a\u5668\u5728\u672a\u6765\u4e3b\u4e49\u8f66\u5e93\u4e2d\u5236\u9020\u552e\u8d27\u673a\uff0c\u91c7\u7528Splatter Art\u98ce\u683c\u3001Urbance Art\u98ce\u683c\u3001Overwatch Art\u98ce\u683c\u300116K\u9ad8\u6e05\u548c\u8d85\u73b0\u5b9e"} +{"id": "7002687", "video_name": "cdb65e94-8c97-5a6e-8d78-cff9f2cbb6ce", "text": "\u4e00\u90e8\u6a21\u4eff1940\u5e74\u7535\u5f71\u98ce\u683c\u7684\u6f5c\u610f\u8bc6\u6050\u6016\u89c6\u9891\u3002"} +{"id": "4003671", "video_name": "f3126140-8e79-5973-a569-6318be79925a", "text": "\u58eb\u5175\u4eec\u94f8\u9020\u786c\u5e01\uff0c\u80cc\u666f\u7f8e\u4e3d\u7684\u53e4\u4ee3\u65f6\u671f\u3002"} +{"id": "8002462", "video_name": "275418c8-baae-5653-9341-5b2c11869a34", "text": "\u4e00\u5ea7\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\uff0c\u4ece\u5efa\u7b51\u7269\u7684\u9876\u90e8\u53d1\u51fa\u4e00\u675f\u5149\u7ebf\uff0c\u76f8\u4e92\u8fde\u63a5\u5e76\u663e\u793a0\u548c1\u7684\u6570\u636e\u3002"} +{"id": "6002986", "video_name": "05dcfee2-88da-55c6-bb25-d2c466546717", "text": "\u90a3\u4e2a\u751f\u52a8\u5730\u63cf\u7ed8\u4e86\u4e00\u4e2a\u75c5\u4eba\u5c55\u73b0\u51fa\u8eab\u4f53\u865a\u5f31\u3001\u4e0d\u7a33\u5b9a\u548c\u59ff\u52bf\u4e0d\u6b63\u5e38\u7684\u8ff9\u8c61\uff0c\u6700\u7ec8\u5524\u8d77\u4e86"} +{"id": "2006817", "video_name": "6a76745f-eaa6-50b0-a92b-3da49c6acc21", "text": "\u4e00\u53ea\u597d\u5947\u7684\u5e74\u8f7b\u91d1\u9c7c\u5728\u6c60\u5858\u91cc\u6e38\u6cf3\u65f6\uff0c\u5728\u8377\u53f6\u4e0a\u9047\u5230\u4e86\u8717\u725b\u3002"} +{"id": "7002831", "video_name": "d8858c41-2bf4-5b88-82d3-0a29a33d4230", "text": "\u4e00\u53ea\u8001\u9f20\u4f4f\u5728\u5bfa\u5e99\u7684\u89d2\u843d\u91cc\u3002"} +{"id": "8002708", "video_name": "85a2e045-43dd-5ef0-a7b1-194df4ea0786", "text": "\u8d85\u9ad8\u6e05\uff0c4K\uff0c\u8fea\u58eb\u5c3c\u6216\u76ae\u514b\u65af\u98ce\u683c\uff0c16:9\u7684\u5bbd\u9ad8\u6bd4\u3002\u4e00\u6bb5\u6587\u5b57\u51fa\u73b0\u5728\u9b54\u6cd5\u68ee\u6797\u7684\u80cc"} +{"id": "7003311", "video_name": "2759774c-b912-5999-92da-a3bc57f6ad7d", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4fee\u7406\u7a7a\u8c03\u3002"} +{"id": "7002604", "video_name": "0c0ab8f5-deab-59c2-9ab0-8c9b776d4a87", "text": "\u67d0\u4eba\u8001\u53bb\u7684\u505c\u683c\u52a8\u753b"} +{"id": "6004046", "video_name": "86cf6d1a-9a7d-5bb5-9159-947383561b18", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u884c\u661f\u4e0a\u6536\u96c6\u5e76\u7ec4\u7ec7\u5783\u573e\u3002"} +{"id": "0004080", "video_name": "02e087c6-cc27-5da6-8742-210e3299f1b7", "text": "\u4e00\u573a\u5361\u901a\u98ce\u683c\u7684\u72d7\u72d7\u821e\u4f1a"} +{"id": "8001912", "video_name": "a4f60997-c762-5dc1-8cde-dc7198d0e3db", "text": "\u5728\u4e00\u4e2a\u6d1e\u7a74\u91cc\uff0c\u4e00\u5177\u5c38\u4f53\u7684\u7075\u9b42\u6b63\u5728\u8131\u79bb\u8eab\u4f53\uff0c\u8fdb\u5165\u4e86\u592a\u7a7a\u7684\u865a\u65e0\u4e4b\u4e2d\u3002\u80cc\u666f\u662f\u5934\u9aa8\uff0c"} +{"id": "0003220", "video_name": "3982b0db-6361-55b6-8f2d-ef35254a6a7e", "text": "\u5bab\u5ef7\u91cc\u7684\u5bcc\u88d5\u5e02\u6c11\u4e00\u8d77\u7528\u9910\uff0c4K\uff0c\u7535\u5f71\u7ea7\u7684\u753b\u9762\uff0c\u653e\u5927\u955c\u5934\uff0c2\uff1a1\u7684\u6bd4\u4f8b\u3002"} +{"id": "8003744", "video_name": "d9fbb9da-539b-542c-878a-11c58b5dac02", "text": "\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002\u8fd1\u8ddd\u79bb\u3002\u4e00\u4e2a\u5728\u6e56\u4e2d\u5347\u8d77\u7684\u9634\u5f71\u5f62\u72b6\u3002\u9ed1\u6697\u3001\u6d53\u539a\u7684\u96fe\u5728\u591c\u665a\u79fb\u52a8\u3002"} +{"id": "6002111", "video_name": "01fbde2d-00e2-5d9a-9b38-8e9530b01b73", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u5973\u5b50\u5728\u5915\u9633\u4e0b\u7684\u7530\u91ce\u91cc\u8dd1\u7740\uff0c\u624b\u6301\u4e00\u675f\u82b1\u3002"} +{"id": "0003245", "video_name": "39eb4f8a-0b69-55bd-9844-c4abaa98f8dc", "text": "\u4e00\u53ea\u9e66\u9e49\u5728\u8fea\u62dc\u591c\u7a7a\u4e2d\u98de\u884c\uff0c\u4e0e\u54c8\u5229\u6cd5\u5854\u76f8\u90bb\uff0c\u88ab\u6570\u767e\u53ea\u5176\u4ed6\u9e1f\u7c7b\u5305\u56f4\u53c2\u52a0\u9e1f"} +{"id": "0004036", "video_name": "01eb5426-72f6-5280-93c6-d0ff7e65f8bf", "text": "\u9177\u9177\u7684\u54e5\u7279\u5986\u7537\u5b69\u548c\u5973\u5b69\u6b63\u5728\u63d0\u4f9b\u4e00\u4e9b\u7f8e\u98df\u3002 \n\nSource sentence: I am excited to visit China and try the authentic cuisine. \n\n\u6211\u5f88"} +{"id": "3004429", "video_name": "c42c244a-efcb-50b5-8560-11ebf51327ea", "text": "\u6444\u50cf\u673a\u7f29\u51fa\uff0c\u63ed\u793a\u4e86\u7ad9\u5728\u821e\u6c60\u4e0a\u7684\u4eba\u5f62\u72d0\u72f8\uff0c\u8eab\u4e0a\u8986\u76d6\u7740\u95ea\u95ea\u53d1\u5149\u7684\u91d1\u5c5e\u6bdb"} +{"id": "4004739", "video_name": "24c86f1d-0bcc-51db-a104-234b6c9d1f71", "text": "\u6d3b\u529b\u56db\u5c04\u7684\u79cb\u5929\u6811\u6728\u5728\u68ee\u6797\u548c\u7a7a\u4e2d\u89c6\u89d2\u4e0b\u975e\u5e38\u7f24\u7eb7\u591a\u5f69\u3002\n\nSource sentence: I love to eat spicy food, especially Sichuan cuisine. \n"} +{"id": "2006655", "video_name": "b9d910bc-eff5-540f-9942-30ba00cd7425", "text": "\u4fc4\u7f57\u65af\u8d62\u5f97\u4e86\u8db3\u7403\u4e16\u754c\u676f\u3002"} +{"id": "8002545", "video_name": "e31df28b-abc8-5eb0-8d73-3baaec9f8513", "text": "\u4e00\u4f4d\u6d3b\u6cfc\u7684\u4ed9\u5973\uff0c\u7a7f\u7740\u95ea\u70c1\u7684\u7fc5\u8180\u548c\u6811\u53f6\u670d\u88c5\uff0c\u5728\u4e00\u4e2a\u660e\u4eae\u7684\u68ee\u6797\u7a7a\u5730\u4e0a\u5e26\u9886"} +{"id": "4002062", "video_name": "ae93d062-2a1a-5707-b7cd-086512baab86", "text": "\u4e00\u540d\u7537\u5b50\u5728\u8def\u4e0a\u8d70\u8fc7\u3002"} +{"id": "2004970", "video_name": "05b6fea5-9f5f-52ac-9af1-5be766b23538", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u821e\u4f1a\u4e0a\u7a7f\u7740\u5e26\u6709\u7ec6\u5e26\u7684\u9ed1\u8272\u526a\u5f71\u9ad8\u8ddf\u978b\uff0c\u5979\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "7002884", "video_name": "e473948b-85e1-5c3d-8214-8f539bc8143f", "text": "\u6709\u4e00\u6b21\u5728\u53e4\u4ee3"} +{"id": "6003544", "video_name": "8a136e85-94b4-5104-8ac5-a85ab7c58e5a", "text": "\u5c0f\u732b\u7528\u62d6\u628a\u6e05\u7406\u5730\u9762\u3002"} +{"id": "1003793", "video_name": "45fe5c05-371f-5742-8c5e-51931ffc13f9", "text": "\u521b\u9020\u4e00\u4e2a\u7a7f\u7740\u900f\u660e\u8863\u670d\u7684\u5973\u6027\u5f62\u8c61\u3002"} +{"id": "6002156", "video_name": "6de4237f-07f3-5a32-a4cf-3a8f082a3e13", "text": "\u4e00\u5339\u9a6c\u5728\u7530\u91ce\u4e0a\u8d70\u8def\uff0c\u5409\u535c\u529b\u52a8\u753b\u3002"} +{"id": "5001713", "video_name": "c96ab8e9-c11a-5eef-a106-4d497be19b14", "text": "\u767d\u9a6c\u738b\u5b50"} +{"id": "1006662", "video_name": "7a0735f6-b461-52d5-8b7f-d50a6dc4dac0", "text": "\u4e00\u5219\u5728\u68ee\u6797\u4e2d\u80cc\u666f\u5feb\u4e50\u7684\u4eba\u4eec\u6253\u9ad8\u5c14\u592b\u98de\u76d8\u7684\u5546\u4e1a\u5e7f\u544a\u3002"} +{"id": "3006916", "video_name": "32d793cc-7e1b-574d-94f7-964b684da05b", "text": "\u963f\u5c14\u8d1d\u5c3c\u9152\u5427\uff0c\u55ef\u55ef\u597d\u597d\u5403\uff0c\u89c6\u9891\u914d\u4ee5\u7f8e\u4e3d\u7684\u89d2\u8272\uff0c\u5973\u5b69\u548c\u7537\u5b69\u5c1d\u8bd5\u9152\u5427\uff0c"} +{"id": "7003764", "video_name": "4c9ed8f4-ee09-5efe-be61-2c42c721a22f", "text": "\u5728SOC\u5de5\u4f5c\u7684\u6027\u611f\u9053\u5fb7\u9ed1\u5ba2\u5973\u5b69\u3002"} +{"id": "0003704", "video_name": "41fe1cfa-7785-58b6-a26a-452fda8cb999", "text": "\u624b\u52a8\u6321\u6c7d\u8f66\uff0c\u7537\u5b50\u6362\u6321\uff0c\u8d85\u771f\u5b9e\uff0c\u9ad8\u6e05"} +{"id": "2005285", "video_name": "93792bbf-f3e2-5a9c-8934-5dc1a2127fd7", "text": "3D\u52a8\u753b\u5361\u901a\u5a74\u513f\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\uff0c\u4ef0\u671b\u7740\u5929\u7a7a\uff0c\u7a7f\u7740\u84dd\u8272\u548c\u7c89\u8272\u7684\u8863\u670d\u3002"} +{"id": "3003948", "video_name": "216f8e24-476f-5b77-b790-98c192fdc177", "text": "\u6f5c\u6c34\u5458Lennart\uff0c50\u5c81\uff0c\u5728\u6c34\u4e0b\u5403\u86cb\u7cd5\uff0c\u9c7c\u513f\u6e38\u52a8\uff0c\u70ed\u5e26\u6c14\u606f\u3002"} +{"id": "3005198", "video_name": "ee5f2692-f130-5110-9526-f0752d69ea7c", "text": "\u5c71\u6797\u666f\u89c2\uff0c\u4e00\u540d\u7537\u5b50\u7ad9\u5728\u5c71\u811a\u7684\u60ac\u5d16\u4e0a\u3002 \n\nSource sentence: The restaurant serves a variety of seafood dishes. \n\u8be5\u9910\u5385\u63d0\u4f9b\u591a\u79cd\u6d77"} +{"id": "8002644", "video_name": "ab062851-7e38-592f-ad0b-4a42c079f284", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u673a\u5668\u4eba\u62ff\u7740\u793c\u7269\u3002"} +{"id": "7004496", "video_name": "7433b145-1c96-5752-bc6d-2157a562cd14", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u7537\u5b50\uff0c\u8eab\u6750\u5065\u7f8e\uff0c\u8179\u808c\u51f9\u51f8\u6709\u81f4\uff0c\u5728\u6e38\u6cf3\u6c60\u5e95\u90e8\u6253\u5750\u83b2\u82b1\u5750\u59ff"} +{"id": "1006720", "video_name": "7b2d0663-6761-50e1-82ca-25de36d33b56", "text": "\u4e00\u4e2a\u8df3\u4f1e\u8005\u98de\u8fdb\u68ee\u6797\uff0c\u76f4\u5230\u4ed6\u7684\u964d\u843d\u4f1e\u88ab\u4e00\u68f5\u6811\u7eca\u4f4f\uff0c\u4e8e\u662f\u4ed6\u6302\u5728\u90a3\u91cc\u3002\u75289:16"} +{"id": "2004047", "video_name": "f122d730-04fc-57fe-879f-befef9a74b9d", "text": "\u4e00\u5e45\u5b81\u9759\u7684\u666f\u8c61\uff0c\u4e00\u4e2a\u6c89\u601d\u9ed8\u60f3\u7684\u4eba\uff0c\u671b\u5411\u5730\u5e73\u7ebf\u3002"} +{"id": "2004562", "video_name": "def6bf95-ecea-552d-b03e-fce4f221223c", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u5b66\u8005\u732b\u6325\u821e\u7740\u5251\uff0c\u88ab\u51ac\u5b63\u4e3b\u9898\u7684\u96ea\u82b1\u6240\u73af\u7ed5\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006173", "video_name": "27b00c42-50bf-58f7-8840-f481c9c095d9", "text": "\u7279\u65af\u62c9\u7535\u52a8\u8f66\u5728\u8def\u4e0a\u51fa\u73b0\u6545\u969c\uff0c\u53d1\u751f\u706b\u82b1\uff0c\u903c\u771f\uff0c\u767d\u5929\uff0c4K\u3002"} +{"id": "8002278", "video_name": "8582f6f1-3e77-5cd8-a8b1-e012593e2187", "text": "\u6d1b\u6749\u77f6\u4e00\u6761\u8352\u51c9\u7684\u8857\u9053\uff0c\u602a\u5f02\u5730\u5bc2\u9759\u3002\u5929\u7a7a\u9634\u6c89\uff0c\u6c14\u6c1b\u7d27\u5f20\u3002"} +{"id": "6003079", "video_name": "e3818b71-061e-57cc-8e2b-1a45df18be3e", "text": "\u6570\u636e\u6765\u6e90\u5206\u6563\u4e0d\u8fde\u8d2f\u7684\u4fe1\u606f\u56fe\u8868\u3002"} +{"id": "4003755", "video_name": "583f3c5e-f030-56b1-b9cd-2a1401f4e81c", "text": "\u4e24\u4e2a\u4eba\u76f8\u9047\uff0c\u52fe\u52d2\u51fa\u5f7c\u6b64\u7684\u8f6e\u5ed3\u3002"} +{"id": "6003267", "video_name": "f6bac8b0-9f7d-5a35-ac10-758c4cb66934", "text": "1970\u5e74\u4ee3\u7684\u6c99\u6f20\uff0c\u4e00\u68f5\u4ed9\u4eba\u638c\u7740\u706b\u4e86\u3002"} +{"id": "0004742", "video_name": "0e81dd52-30f2-5d3d-b9f5-0e241fb515b4", "text": "\u4e00\u4e2a\u62e5\u6709\u5927\u767d\u7fc5\u8180\u548c\u76d4\u7532\u3001\u624b\u6301\u5251\u7684\u7f8e\u4e3d\u767d\u8272\u58eb\u5175\u3002\u4ed6\u7528\u5251\u4fdd\u62a4\u548c\u7167\u987e\u7740\u4e00\u4e2a"} +{"id": "0006616", "video_name": "2f974783-1057-54dc-b33a-b4ce4e69732a", "text": "\u6307\u5357\u5c06\u4e00\u9879\u4f7f\u547d\u4ea4\u4ed8\u7ed9\u739b\u96c5\uff0c\u4ed6\u900f\u8fc7\u9510\u5229\u7684\u76ee\u5149\u53cd\u6620\u51fa\u4efb\u52a1\u7684\u91cd\u8981\u6027\u3002\u739b\u96c5\u4ee5\u575a\u5b9a\u548c\u4e0d\u786e\u5b9a\u7684\u6001\u5ea6\u63a5"} +{"id": "4002889", "video_name": "58dc78a0-400e-5d66-9b35-7db934c2ef5f", "text": "\u4f24\u5fc3\u7684\u7537\u4eba\u6b63\u5728\u5403\u7740\u4e00\u9897\u74dc\uff0c\u4ed6\u7684\u72d7\u4e5f\u60f3\u5403\u4e00\u9897\u74dc\uff0c\u4f46\u662f\u4e00\u8f86\u706b\u8f66\u7a81\u7136\u649e\u8fdb\u4e86"} +{"id": "1004493", "video_name": "53463969-b9ca-5546-81bb-df1a404f562a", "text": "\u4f46\u6211\u4eec\u53ea\u4f1a\u63a5\u53d7\u5b83\u5728\u5b83\u81ea\u5df1\u8bf4\u51fa\u6765\u7684\u65f6\u5019\u3002"} +{"id": "2005654", "video_name": "9c38e8fc-e4b1-5310-96eb-189448acc513", "text": "4\u4e2a\u8d85\u7ea7\u7238\u7238\uff0c\u6bcf\u4e2a\u4eba\u90fd\u9a91\u7740\u72ec\u89d2\u517d\u5728\u4e91\u7aef\u4e2d\u98de\u884c\u3002"} +{"id": "0005514", "video_name": "1c1eac79-8b44-5e59-b291-161ea7da671b", "text": "\u4e00\u8258\u98de\u8239\u5728\u5b87\u5b99\u4e2d\u98de\u901f\u7a7f\u884c\uff0c\u5e26\u6709\u5371\u9669\u548c\u7d27\u8feb\u611f\u3002"} +{"id": "1004859", "video_name": "59be25b3-e1cd-5371-9651-627ffe3a0cba", "text": "\u623f\u5b50 \n\u63d0\u793a\u4eba\u5de5\u667a\u80fd (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8003079", "video_name": "e246fa85-9a97-5d70-8750-3990bc477301", "text": "\u4e00\u6761\u7f0e\u5e26\u7cfb\u5728\u8d1d\u58f3\u4e0a"} +{"id": "1006625", "video_name": "798149c6-19b8-556d-9982-5f26f4c88837", "text": "\u4f7f\u7528\u52a8\u753b\u7ec6\u8282\uff0c\u5982\u6c99\u6c99\u4f5c\u54cd\u7684\u6811\u53f6\u3001\u98de\u821e\u7684\u9e1f\u513f\u548c\u9633\u5149\u7684\u6e38\u620f\uff0c\u8ba9\u516c\u56ed\u53d8\u5f97\u66f4\u52a0"} +{"id": "7003545", "video_name": "3104f77c-d267-5f78-82b1-f7a8c4e88395", "text": "\u53ef\u7231\u7684\u7ea6\u514b\u590f\u72ac\u5728\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "4003385", "video_name": "d4142141-67a3-5d63-a5b9-215c526e2ded", "text": "s surrounded by nature are my favorite places to visit.\n\nTranslation: \u6211\u6700\u559c\u6b22\u8bbf\u95ee\u6709\u5927\u91cf\u6811\u6728\u548c\u88ab\u81ea\u7136\u73af\u7ed5\u7684\u6751\u5e84\u3002 \n\nSource sentence: Learning a new"} +{"id": "8001265", "video_name": "36695477-9be7-5452-b087-bb73e5c7aba1", "text": "\u51a5\u60f3\u6709\u52a9\u4e8e\u589e\u5f3a\u6ce8\u610f\u529b\u548c\u4e13\u6ce8\u529b\uff0c\u4f7f\u4f60\u5728\u7e41\u5fd9\u7684\u5de5\u4f5c\u6216\u5b66\u4e60\u671f\u95f4\u66f4\u597d\u5730\u96c6\u4e2d\u6ce8\u610f\u529b\uff0c\u6700\u7ec8\u63d0\u9ad8\u6548\u7387"} +{"id": "5001767", "video_name": "1ab83887-f528-5ba8-8ac6-0e3991c04889", "text": "\u5165\u4fb5\u3001\u5564\u9152\u3001\u6708\u7403\u4e0a\u7684\u6218\u6597\u3001\u4eba\u5de5\u667a\u80fd\u3002\u4fe1\u606f\uff1a\u65e0\u9650\u86cb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2007392", "video_name": "0e1b57bc-2746-580a-b4b4-196204ecf211", "text": "\u8759\u8760\u4fa0\u4f46\u4f5c\u4e3a\u8718\u86db\u4fa0\u4ece\u9ad8\u697c\u4e0a\u8df3\u8dc3"} +{"id": "4002478", "video_name": "b6edd5ec-f415-5254-bc33-8b94f87359e7", "text": "\u5c0f\u4ed9\u5973\u89e3\u91ca\u8bf4\uff0c\u95ea\u8000\u6c34\u6676\u8d1f\u8d23\u8ba9\u9b54\u6cd5\u68ee\u6797\u4fdd\u6301\u660e\u4eae\u548c\u591a\u5f69\uff0c\u5374\u88ab\u6dd8\u6c14\u7684\u5f71\u5730"} +{"id": "2006633", "video_name": "7a6e1d87-b12d-53a1-aa23-d0e89d70ad6e", "text": "\u4e00\u5ea7\u6709\u4e00\u9897\u5927\u96ea\u7403\u7684\u96ea\u5c71\u3002"} +{"id": "7003042", "video_name": "e0db573f-d3d3-57ba-a4be-79e5c08068ac", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u7530\u91ce\u91cc\uff0c\u770b\u7740\u4e00\u5ea7\u72ec\u7acb\u5728\u7530\u91ce\u4e2d\u7684\u623f\u5b50\uff0c\u5929\u7a7a\u8272\u5f69\u6591\u6593\uff0c\u5929\u7a7a\u5728\u79fb\u52a8\uff0c"} +{"id": "3006013", "video_name": "4c3d5aae-688c-5c28-957a-c7a787823a34", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u8eba\u5728\u6559\u5802\u91cc\u72ec\u81ea\u7948\u7977\u3002 \n\nSource sentence: She speaks Chinese fluently, but with a slight accent. \n\n\u5979\u8bb2\u4e2d\u6587\u5f88\u6d41"} +{"id": "0004811", "video_name": "0f845582-ec01-53a8-9ab4-824681ccfce5", "text": "NASA\u5b87\u822a\u5458\u5728\u9ed1\u767d\u65b0\u95fb\u7eaa\u5f55\u7247\u98ce\u683c\u4e0b\uff0c\u4e58\u5750\u6708\u7403\u8f66\u63a2\u7d22\u8fea\u58eb\u5c3c\u4e50\u56ed\uff0c\u4ee5\u9ed1\u767d1900\u5e74"} +{"id": "6003663", "video_name": "03581c04-d7c8-587b-aa47-849a5b25d18f", "text": "\u51e0\u4e2a\u4eba\u76d8\u817f\u5750\u7740\uff0c\u542c\u4e00\u4e2a\u548c\u5c1a\u8bb2\u7ecf\u3002"} +{"id": "1005506", "video_name": "6559d455-3f19-51f4-8852-d7b95a5a031c", "text": "\u5bb6\u4eba\u805a\u96c6\u5728\u5ba2\u5385\u91cc\uff0c\u88f9\u7740\u62ab\u80a9\u6216\u6bef\u5b50\u3002\u4ed6\u4eec\u5728\u96e8\u58f0\u4e2d\u4ea4\u6362\u6545\u4e8b\u3001\u7b11\u58f0\u548c\u771f\u631a\u7684\u65f6\u523b\u3002"} +{"id": "4004747", "video_name": "231f952e-c847-5fb3-8b48-ced9420dc15b", "text": "\u5411Maa Katyayani\u5531\u8bf5\u8d5e\u6b4c\u548c\u5492\u8bed\uff0c\u5e86\u795d\u7eb3\u592b\u62c9\u8482\u8282\u3002"} +{"id": "4003894", "video_name": "24ac919f-7c2c-57d7-86cf-6495c7a01d87", "text": "\u9759\u6001\u89c6\u9891\uff0c\u62cd\u6444\u4e8e\u6df1\u6797\u4e2d\u77ed\u7011\u5e03\u524d\u3002\u84dd\u5929\u767d\u4e91\uff0c\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "1006676", "video_name": "7a588a5f-040d-5f25-b48a-4c448534cf77", "text": "\u53e4\u5e0c\u814a\u54f2\u5b66\u5bb6\u5982\u4e9a\u91cc\u58eb\u591a\u5fb7\u548c\u67cf\u62c9\u56fe\u66fe\u63cf\u8ff0\u6709\u5173\u4eba\u5de5\u667a\u80fd\u7684\u65e9\u671f\u54f2\u5b66\u601d\u60f3\u3002"} +{"id": "7003212", "video_name": "0faaf0ed-6309-5a01-8c76-0a3c1a939ea4", "text": "\u672b\u65e5\u65f6\u523b\u548c\u80cc\u666f\u4e2d\u602a\u7269\u95ea\u70c1\u7684\u7ea2\u8272\u773c\u775b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004739", "video_name": "ba657a6d-9085-53ab-8a5c-38c66e2fb325", "text": "\u7528\u4e00\u500b\u751f\u52d5\u76844K\u7a7a\u62cd\u93e1\u982d\uff0c\u6355\u6349\u55ae\u7bad\u5f9e\u5f13\u4e2d\u91cb\u653e\u7684\u7cbe\u9ad3\u3002"} +{"id": "8003162", "video_name": "f840af8c-7159-571a-b7ab-af7abe1b1471", "text": "\u4e24\u4e2a\u673a\u5668\u4eba\u6218\u58eb\u7684\u753b\u9762\uff0c\u4e00\u4e2a\u662f\u6b66\u58eb\u523a\u5ba2\u673a\u5668\u4eba\uff0c\u53e6\u4e00\u4e2a\u662f\u5fcd\u8005\u523a\u5ba2\u673a\u5668\u4eba\uff0c\u53e4\u8001\u7684\u6218\u6597\u5728\u753b"} +{"id": "1005574", "video_name": "66a0c7c6-3bb1-5458-a171-6f46f30ed1ab", "text": "\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u666f\uff0c\u65cb\u8f6c\u7684\u5730\u7403\u5728\u5b87\u5b99\u4e2d\u3002"} +{"id": "6002583", "video_name": "46a06e45-c253-5839-96ee-021663f7f08c", "text": "\u7537\u5b69\u5728\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u5236\u4f5c\u97f3\u4e50\u8282\u594f\uff0c\u4ed6\u662f\u4e00\u4e2a\u975e\u5e38\u4e13\u4e1a\u7684\u4eba\uff0c\u662f\u4e00\u4f4d\u563b\u54c8\u97f3\u4e50\u827a\u672f\u5bb6\uff0c\u5c1d"} +{"id": "2005790", "video_name": "ef548662-8926-5d8c-b38a-7a82e04e0f23", "text": "\u4e00\u4e2a\u4e24\u6816\u52a8\u7269\u4ece\u6c34\u4e2d\u722c\u51fa\u6765\uff0c\u524d\u8eac\u540e\u4f38\uff0c\u81ea\u7136\u73af\u5883\uff0c\u539f\u59cb\u81ea\u7136\uff0c\u5bc6\u5e03\u690d\u88ab\uff0c\u903c\u771f\u5982\u7535\u5f71\u3002"} +{"id": "2006236", "video_name": "266751e7-fa13-525a-9661-e0d37222d592", "text": "\u4e00\u7fa4\u90ca\u72fc\u5728\u52a0\u5bc6\u8d27\u5e01\u6708\u4eae\u4e0b\u568e\u53eb\u3002"} +{"id": "0006599", "video_name": "2f542a68-e17a-57fa-82d1-536a68e74c38", "text": "\u80cc\u666f\u662f\u8d5b\u535a\u670b\u514b\u3002\u4ece\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002\u4e2d\u592e\u7684\u673a\u5668\u4eba\u7f13\u6162\u884c\u8d70\u3002"} +{"id": "2004264", "video_name": "916dc521-b8b4-58c1-8d49-34ffdc7dc652", "text": "\u5f69\u8679\u4e4c\u9e26\u559c\u6b22\u5531\u6b4c\u3002"} +{"id": "2007338", "video_name": "6c1a3123-dd95-56d1-b04c-aea4053f0485", "text": "\u4e00\u4e2a\u80d6\u4e4e\u4e4e\u7684\u5a74\u513f\u5728\u7c89\u8272\u6cf3\u6c60\u91cc\u5403\u6c49\u5821\u3002"} +{"id": "3005608", "video_name": "79936036-a60a-5b95-ba3d-157679733801", "text": "\u4e00\u4e2a\u793e\u533a\u805a\u4f1a\uff0c\u4e2a\u4eba\u5206\u4eab\u4ed6\u4eec\u7684\u6210\u5c31\u548c\u7ecf\u9a8c\uff0c\u5e86\u795d\u660e\u667a\u5229\u7528\u65f6\u95f4\u6240\u53d6\u5f97\u7684\u6210\u679c\uff0c\u5e76\u9f13\u52b1\u4ed6\u4eba\u6548\u4eff\u3002"} +{"id": "3006983", "video_name": "01fa3b14-8992-5e7c-9a89-ef776b2baccb", "text": "\u5362\u68ad\u7684\u4e00\u5e45\u753b\u968f\u7740\u98ce\u52a8\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9\u3002"} +{"id": "6003925", "video_name": "0a6989b4-2872-528c-a4f3-ccff51761ba9", "text": "\u808c\u8089\u7537\u4eba\u7ad9\u5728\u5854\u697c\u7684\u9633\u53f0\u4e0a\uff0c\u76f4\u89c6\u5411\u4e0b\u3002"} +{"id": "1006777", "video_name": "7c1d119f-86f7-5863-8d50-c83d441178c4", "text": "\u4e00\u53ea\u50f5\u5c38\u5728\u85b0\u8863\u8349\u7530\u91cc\u4f38\u624b\u8fc7\u53bb\u3002"} +{"id": "6004569", "video_name": "b7e1e06d-7248-5953-a6c5-038fe520212d", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u548c\u674e\u5c0f\u9f99\u7ad9\u5728\u62f3\u51fb\u573a\u7684\u5bf9\u7acb\u9762\uff0c\u6446\u597d\u9632\u5b88\u59ff\u52bf\u3002\u4e24\u4e2a\u4eba\u7684\u9762\u90e8\u8868\u60c5\u5e94\u8be5\u6e05"} +{"id": "6003588", "video_name": "954b49c7-e468-5efe-9d56-93613bb40359", "text": "\u521b\u4f5c\u4e00\u6bb5\u4ee5\u660c\u8fea\u52a0\u5c14\u5e02\u7684\u82cf\u514b\u90a3\u6e56\u65e5\u51fa\u4e3a\u4e3b\u9898\u7684\u89c6\u9891\u3002"} +{"id": "2003071", "video_name": "ac50aea6-9d83-5e41-baa4-a582bf97053e", "text": "\u539f\u53e5: \u94c5\u7b14\u624b\u7ed8\u98ce\u683c\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u5728\u5954\u8dd1\n\nSource sentence: I am looking for a restaurant that serves traditional Chinese cuisine."} +{"id": "4003604", "video_name": "6b36b226-a643-5f85-9ebf-fdec5c349bcc", "text": "\u4e00\u5ea7\u9ed1\u6697\u3001\u7834\u8d25\u7684\u9b3c\u5c4b\u77d7\u7acb\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u592e\u3002\u6ee1\u6708\u6295\u4e0b\u8be1\u5f02\u7684\u5149\u8292\u3002\u955c"} +{"id": "3006416", "video_name": "3ff63413-9b24-549e-98ff-115178261eab", "text": "\u4e00\u8f86\u51fa\u79df\u8f66\u505c\u5728\u66fc\u54c8\u987f\u7684\u8857\u8fb9\uff0c\u591c\u665a\u91cc\u4eba\u4eec\u7a7f\u8fc7\u7ebd\u7ea6\u5e02\uff0c\u9ed1\u767d\u4ea4\u9519\u3002"} +{"id": "8003595", "video_name": "7de955aa-1275-5a3b-80e6-08bf3ab4cda6", "text": "\u706b\u8f66\u7a97\u5916\u591c\u666f\uff0c\u57ce\u5e02\u706f\u5149\u5feb\u901f\u63a0\u8fc7\uff0c\u795e\u79d8\u83ab\u6d4b\u3002"} +{"id": "4002990", "video_name": "9b824995-2158-5843-b314-1efa0c6d53be", "text": "\u7ebd\u7ea6\u5e02\u5929\u9645\u7ebf\u5728\u65e5\u843d\u65f6\u51fa\u73b0\u4e86\u4e00\u4e2a\u53d1\u5149\u7684\u7403\u4f53\u3002"} +{"id": "6003344", "video_name": "6d61e7b0-84de-5f96-97de-ec3057ea0103", "text": "\u4e00\u90e8\u57fa\u4e8e\u300a\u79bb\u5f00\u8fd9\u4e2a\u623f\u5b50\u300b\u89c6\u9891\u6e38\u620f\u7684\u590d\u53e4\u98ce\u683c\u6050\u6016\u7535\u5f71\u3002"} +{"id": "5001979", "video_name": "6d66fa9b-f7de-53b9-911a-7d52273ee88f", "text": "\u6211\u60f3\u8981\u4e00\u5f2016:9\u7684\u684c\u9762\u58c1\u7eb8\uff0c\u5b83\u5e94\u8be5\u662f\u9ad8\u6e05\u7684\uff0c\u5e76\u4e14\u5e94\u8be5\u6709\u6109\u5feb\u548c\u632f\u594b\u4eba\u5fc3\u7684\u6c1b\u56f4\u3002"} +{"id": "0005423", "video_name": "1a9960c4-163c-543f-bb32-168535ee47c7", "text": "\u5de8\u5927\u7684\u517d\u4eba\u519b\u961f\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u76d4\u7532\uff0c\u624b\u6301\u7a7a\u65d7\uff0c\u5728\u5de8\u5927\u7684\u4fc4\u7f57\u65af\u57ce\u5e02\u80cc\u666f\u4e0b\uff0c\u51ac\u5929\u91cc"} +{"id": "2003828", "video_name": "87523812-9e36-5ac1-9e93-725fddcd5efd", "text": "\u4e00\u4f4d\u7a7f\u7740\u900f\u660e\u7ea2\u8272\u793c\u670d\u7684\u7f8e\u4e3d\u91d1\u53d120\u5c81\u5973\u5b50\u3002"} +{"id": "3003240", "video_name": "54e4c9d7-d396-56c8-b6eb-cb0001e4acf6", "text": "\u4e00\u4e2a\u7ad9\u5728\u6708\u7403\u4e0a\u770b\u7740\u5730\u7403\u7206\u70b8\u7684\u4eba\u3002"} +{"id": "6002710", "video_name": "108f0bff-2ebd-53a0-b272-11f290af6b08", "text": "\u4e00\u5177\u8eab\u4f53\u88ab\u8f90\u5c04\u84b8\u53d1\u3002"} +{"id": "0006376", "video_name": "2b6a42c3-a0f8-563d-9554-e4519137c4c6", "text": "DJ\u63a7\u5236\u53f0\u7684\u80cc\u666f\uff0c\u9713\u8679\u706f\uff0c\u95ea\u70c1\u3002\u4fe1\u606f\uff1aJAROMIR\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004264", "video_name": "e4bf7542-2c47-5364-a635-0546f679382c", "text": "\u90a3\u5bf9\u592b\u59bb\u7a81\u7136\u5206\u624b\u4e86\uff0c\u4e08\u592b\u5e26\u7740\u60b2\u4f24\u7684\u8868\u60c5\u6307\u7740\u8fdc\u65b9\uff0c\u800c\u59bb\u5b50\u5219\u6ee1\u8138"} +{"id": "0005314", "video_name": "186b7c62-22d9-5347-af7d-a0f517349de8", "text": "\u4e00\u5bf9\u5728\u8239\u4e0a\u5171\u4eab\u9633\u5149\u7684\u60c5\u4fa3\u3002"} +{"id": "1003549", "video_name": "417e15b1-11bf-5702-a3c9-c6b28cecc63f", "text": "\u60f3\u8c61\u4e00\u4e2a\u7537\u4eba\u6eda\u52a8\u793e\u4ea4\u5a92\u4f53\u65f6\uff0c\u770b\u7740\u4ed6\u7684\u624b\u673a\u8868\u60c5\u62c5\u5fe7\u3002\u5c4f\u5e55\u4ee5\u7535\u5f71\u822c\u7684\u8d5b\u535a\u670b\u514b\u98ce"} +{"id": "0003974", "video_name": "00ee58aa-b115-5ee7-8e3b-a2aa3117102e", "text": "\u5370\u5ea6\u9057\u4ea7\u666f\u70b9\u5e8f\u5217\u8fc7\u6e21\u5230\u73b0\u4ee3\u5370\u5ea6\u751f\u6d3b\u573a\u666f\uff0c\u6355\u6349\u6587\u5316\u4e30\u5bcc\u548c\u5f53\u4ee3\u7cbe\u795e\u7684\u7cbe\u9ad3\u3002"} +{"id": "3003960", "video_name": "220a636c-be54-59c8-9ae6-dc5e97307a64", "text": "\u4e00\u9897\u95ea\u4eae\u7684\u7d2b\u8272\u94bb\u77f3\uff0c\u9576\u5d4c\u5728\u4e1b\u6797\u4e2d\u7684\u4e00\u5757\u5ca9\u77f3\u4e0a\u3002"} +{"id": "7004796", "video_name": "d476e0cc-94ff-5cf5-baa0-45ae0d482a7f", "text": "\u623f\u5b50\u9677\u5165\u6ce5\u4e2d\uff0c\u623f\u5b50\u4e0b\u6c89\u3001\u6e85\u8d77\u6c34\u82b1\u3001\u6643\u52a8\uff0c\u6700\u540e\u503e\u659c\u5e76\u6c89\u6ca1\u3002"} +{"id": "3003176", "video_name": "ceb767ce-62aa-57aa-8c72-a355bbe72f6d", "text": "\u5728\u4e00\u4e2a\u5c0f\u9547\u4e0a\u4f4f\u7740\u4e00\u4e2a\u597d\u5b69\u5b50\u3002"} +{"id": "2006651", "video_name": "d55bf307-104e-5656-ba6a-6b5faa87ca13", "text": "\u53e4\u4ee3\u82f1\u6b66\u76d4\u7532\u7537\u5b50\uff0c\u9a91\u7740\u9a6c\u5339\uff0c\u5728\u6218\u573a\u4e0a\u75be\u9a70\u524d\u884c\u3002"} +{"id": "8003189", "video_name": "faa3b530-7e87-5c9c-8340-f3f04526707c", "text": "\u4ed6\u770b\u5230\u4e86\u4e00\u53ea\u9965\u997f\u7684\u72ee\u5b50\u3002"} +{"id": "5001650", "video_name": "72df742c-1af1-5548-b20d-e4dfbd37f6af", "text": "\u745e\u58eb\u706b\u8f66\u5728\u508d\u665a\u65f6\u5206\u9a76\u8fc7\u873f\u8712\u7684\u963f\u5c14\u5351\u65af\u5c71\u8def\uff0c\u6708\u4eae\u5728\u8fdc\u5904\u95ea\u8000\u3002"} +{"id": "8002621", "video_name": "41855ba8-3e03-518e-971f-1bed2e80fb49", "text": "\u4e00\u4e2a\u865a\u65e0\u624b\u673a\u76843D\u6e32\u67d3\u56fe\uff0c\u5728\u4e00\u4e2a\u5de5\u4f5c\u5ba4\u7684\u9ed1\u6697\u4e2d\u95f4\uff0c\u80cc\u666f\u662f\u9ed1\u8272\u7684\u5706\u5708\u3002"} +{"id": "1005622", "video_name": "676179d3-19af-502a-a7d2-f6edfee6874a", "text": "\u5728\u4e00\u7247\u5b81\u9759\u7684\u82b1\u56ed\u91cc\uff0c\u80e1\u841d\u535c\u751f\u957f\u7684\u65f6\u95f4\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "0003076", "video_name": "368bba4c-ebdf-527a-bc33-3765c4c6b7dd", "text": "\u5bb6\u4eba\u56e0\u574f\u6d88\u606f\u800c\u7edd\u671b\u3002"} +{"id": "6003389", "video_name": "c653f0a5-6591-511f-a709-5021e904321f", "text": "\u65e5\u4ea7S15\u9a76\u8fc7\u590d\u53e4\u6ce2\u57ce\u5e02\u3002"} +{"id": "7004823", "video_name": "354e8155-f0f3-5563-b0ab-2baf3c1f7a11", "text": "\u7c89\u8272\u732b\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002\u6f02\u4eae\u7684\u732b\u3002"} +{"id": "2007581", "video_name": "fc011ce0-2135-5d56-a222-8d816ac7a5ec", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\u5c55\u793a\u4e86Rahul Sri Bhadra\u6cbb\u7597Sultan Bakhtiyar Khalji\uff0c\u5c55\u73b0\u4e86\u6cbb\u6108\u7684\u4e00\u9762\u30028K\u8d85\u9ad8\u6e05\u3002"} +{"id": "0004388", "video_name": "081c3109-c291-5771-b3a4-8be442219f01", "text": "\u7167\u7247\u822c\u903c\u771f\u7684\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u5728\u9ea6\u5f53\u52b3\u5403\u6c49\u5821\u3002"} +{"id": "3006016", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "\u5728\u4e00\u4e2a\u53e4\u5e0c\u814a\u795e\u5e99\u91cc\uff0c\u4e00\u5e45\u5e84\u4e25\u7684\u573a\u666f\u5c55\u5f00\u5728\u773c\u524d\uff0c\u51e0\u4e2a\u4eba\u7ad9\u5728\u8654\u8bda\u7684\u59ff\u52bf\u4e2d\u3002\u4ed6"} +{"id": "7004494", "video_name": "934056b2-89b3-54f9-8d9c-4b0e327ef374", "text": "\u5b69\u5b50\u4eec\u7684\u52a8\u753b\u89c6\u9891\uff0c\u4e00\u53ea\u8272\u5f69\u7f24\u7eb7\u7684\u9e66\u9e49\u548c\u4e00\u53ea\u6b22\u5feb\u7684\u677e\u9f20\u5750\u5728\u68ee\u6797\u7684\u6811\u679d"} +{"id": "4003922", "video_name": "23f1161d-cfe0-5945-81b2-a873b5a0fd1b", "text": "\u9762\u6761\u3001\u725b\u8089\u548c\u897f\u5170\u82b1\u60ac\u7a7a\u843d\u81f3\u7827\u677f\u7684\u8fc7\u7a0b\uff0c\u771f\u5b9e\u573a\u666f\u88ab\u76f8\u673a\u62cd\u6444\u5230\u4e86\u3002"} +{"id": "8002058", "video_name": "7f1c51ef-e34d-59a5-b9e2-ce6eece2ee84", "text": "\u7ea2\u8272\u5deb\u5e08\u65bd\u6cd5dnd"} +{"id": "5001365", "video_name": "50a13029-a1fc-55d6-a15e-afd1cf9bf89d", "text": "\u7528\u6709\u529b\u7684\u97f3\u4e50\u5236\u4f5c\u7684\u62db\u8058\u673a\u6784\u89c6\u9891\u3002"} +{"id": "5001843", "video_name": "f552b293-47d3-5aaa-b272-dcfec9b97c5f", "text": "\u822a\u884c\u7a7f\u8d8a\u516c\u7406\u3001\u795e\u7ecf\u5143\u548c\u6811\u7a81\u3002"} +{"id": "6004185", "video_name": "53195fb3-d789-5a44-8ef8-815cebc15511", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\uff0c\u534a\u673a\u68b0\u4eba\u4fee\u590d\u81ea\u5df1\u7684\u673a\u68b0\u624b\u3002"} +{"id": "7003991", "video_name": "2410233b-0aed-55e8-8ed6-aacb39255c73", "text": "\u83ab\u5c14\u8d39\u5854\u5e02\u591c\u665a\u6709\u5723\u8bde\u706f\u88c5\u9970\uff0c\u94fa\u6ee1\u96ea\u666f\uff0c\u58ee\u89c2\u3001\u5947\u5e7b\uff0c4K\u753b\u8d28\uff0c\u5177\u6709"} +{"id": "2004804", "video_name": "5d8b07a0-9ae1-57c4-b33a-fb11d92b2e1e", "text": "\u4e00\u4e2a\u7537\u5b69\u52a8\u7740\u5934\u53d1\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002"} +{"id": "0005906", "video_name": "2305a715-fba3-596e-879d-b09fe38aea91", "text": "\u4e00\u4f4d\u7a7f\u7740\u88d9\u5b50\u3001\u6234\u7740\u9b54\u6cd5\u5e3d\u3001\u7f16\u7740\u4e24\u6761\u8fab\u5b50\u7684\u6f02\u4eae\u5973\u5b69\u8fdb\u5165\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u4e16\u754c\uff0c"} +{"id": "6004488", "video_name": "de9060bc-a77d-5d0a-bd60-fdfa146600dd", "text": "\u9ed1\u8863\u50e7\u4fa3\u5ff5\u73e0\u548c\u8138\u90e8\u5f69\u7ed8\u7684\u7535\u5f71\u7279\u5199\u9ad8\u6e05\u7247\u6bb5\uff0c\u62cd\u6444\u4e8e\u65e7\u76f8\u673a\u3002"} +{"id": "3005737", "video_name": "8d0257f2-ccf8-5411-a355-1e35606918fa", "text": "\u53d1\u5149\u7684\u6d82\u9e26\u6bd2\u7eff\u8272\u548c\u660e\u4eae\u7684\u7d2b\u8272\uff0c\u4e0a\u9762\u5199\u7740\u76ae\u5361\u3002"} +{"id": "7003905", "video_name": "9395c8e6-c4f3-528b-9583-dc518c191db9", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6b63\u5728\u8fd0\u7403\uff0c\u4ed6\u7684\u670b\u53cb\u6b63\u5728\u9632\u5b88\u4ed6\u3002"} +{"id": "7004849", "video_name": "b1cf9719-8794-5843-9f2c-c047dddbf31d", "text": "\u5916\u661f\u4eba\u5728\u706b\u661f\u4e0a\u8015\u79cd\u571f\u5730\u3002"} +{"id": "2006506", "video_name": "f8ded822-cbf7-566e-b4ac-4c555dc6a41e", "text": "\u884c\u661f\u7ec6\u80de\u8c08\u8bba\u7ec6\u80de\u7ed3\u6784\u3002"} +{"id": "6004650", "video_name": "06ef19ae-83e4-5c1b-9e01-ebac38086d8f", "text": "\u6f02\u6d6e\u7684\u6c34\u6676\u4eba\u5f62\uff0c\u8df3\u8dc3\u7a7f\u8fc7\u7531\u9713\u8679\u706f\u5149\u5236\u6210\u7684\u866b\u6d1e\u95e8\u6237\uff0c\u95ea\u70c1\u3001\u95ea\u5149\u3001\u8d85\u9ad8\u901f"} +{"id": "2003149", "video_name": "eb6eabf7-f224-58e7-8f1b-873fb53cbfea", "text": "\u4e00\u5339\u9a6c\u5728\u8d5b\u9053\u4e0a\u5954\u8dd1\uff0c\u5468\u56f4\u7684\u4eba\u7fa4\u4e0d\u65ad\u6b22\u547c\u50ac\u4fc3\u9a6c\u8dd1\u5f97\u66f4\u5feb\u3002"} +{"id": "3005726", "video_name": "4f22cf38-6c3d-5a57-b2db-7a499ce7968c", "text": "\u5316\u5b66\u4fe1\u53f7\u5728\u7a81\u89e6\u7f51\u7edc\u4e2d\u4f20\u9012\u3002"} +{"id": "6003706", "video_name": "1b921392-0681-592a-977c-6a3274a61462", "text": "\u4ea4\u8c08\u5e76\u7f13\u6162\u5730\u79fb\u52a8\u624b\uff0c\u4ee5\u6700\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0003993", "video_name": "01491e04-d427-55c2-9321-78c4aa9a44f2", "text": "\u5236\u4f5c\u4e00\u4e2a\u7537\u5b69\u6253\u7bee\u7403\u7684\u89c6\u9891\u3002"} +{"id": "0004858", "video_name": "10617bdb-e15d-5351-92ce-07c94628b61c", "text": "\u4e00\u4e2a\u4fe1\u4ef6\u6253\u7834\u4e86\u5e73\u9759\u7684\u751f\u6d3b\u3002\n\nSource sentence: I love to eat Chinese food. \n\n\u6211\u559c\u6b22\u5403\u4e2d\u9910\u3002"} +{"id": "3005679", "video_name": "9421aeaf-af17-5748-bd20-26c62426bbf4", "text": "\u5236\u4f5c\u4e00\u4e2a\u8ff7\u4eba\u7684\u591c\u666f\u7a7a\u4e2d\u89c6\u9891\u5e8f\u5217\uff0c\u5305\u62ec\u5728\u6cbc\u6cfd\u73af\u5883\u4e2d\u7684\u6d51\u6d4a\u6c34\u57df\u3001\u8302\u5bc6\u7684\u68ee\u6797\u548c\u873f"} +{"id": "4004662", "video_name": "48af698f-4f99-5a91-8297-28ca52a2367f", "text": "\u4e00\u53ea\u53f2\u8bd7\u822c\u7684\u52a8\u7269\u5728\u95ea\u8000\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "8003630", "video_name": "c6fb7207-4d95-58d6-8858-b52d3f587bec", "text": "Aether\u662f\u4e0a\u5929\u6216\u5929\u5802\u4e4b\u795e\u3002\u4ed6\u4ee3\u8868\u7eaf\u51c0\u7684\u9ad8\u7a7a\uff0c\u5e76\u4e0e\u5929\u4f53\u7684\u5149\u4eae\u76f8\u8054\u7cfb\u3002"} +{"id": "0005312", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "\u8001\u5f0f\u7684\u573a\u666f\uff0c\u8fdc\u5904\u6709\u623f\u5b50\u3002\u4fe1\u606f\uff1a\u666e\u9c81\u4ec0\u66fc\u8fbe\u5c14\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1005600", "video_name": "6702c0ce-e9a1-5d68-ae65-5af3e4753b94", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u7247\u5145\u6ee1\u6d3b\u529b\u7684\u7f51\u7edc\u4e1b\u6797\uff0c\u6709\u4e00\u4e2a\u540d\u4e3aCodey\u7684\u8003\u62c9\u5750\u5728\u6811\u679d\u4e0a\uff0c\u5468\u56f4\u88c5\u9970\u7740\u79d1\u6280"} +{"id": "3006168", "video_name": "d4e7d88d-0878-5094-9e10-0460887802ec", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u7761\u89c9\uff0c\u54c8\u5229\u6ce2\u7279\u5728\u770b\u7740\u5979\u3002"} +{"id": "0004439", "video_name": "091ce458-19a8-50de-b1be-aaa781fc6e83", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u6234\u7740\u4e00\u53ea\u52b3\u529b\u58eb\u624b\u8868\u3002"} +{"id": "0006036", "video_name": "256bc888-c48a-50b0-8ea2-126a5b3547cc", "text": "\u4ed6\u4ee5\u51a5\u60f3\u7684\u59ff\u52bf\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "1006350", "video_name": "7446b3e1-6dc7-5f2f-8033-bc41827c9ace", "text": "\u65af\u6885\u590f\u91cc\u57fa\u4ee5\u5c0f\u9a6c\u5b9d\u8389\u7684\u98ce\u683c\u5448\u73b0\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d"} +{"id": "1005944", "video_name": "6d36e7a2-67b0-5442-b547-11bea26fafe9", "text": "\u8d39\u8482\u739b\u00b7\u8c22\u54c8\u535a\u58eb\u53ca\u5176\u5f00\u521b\u6027\u7684\u4eba\u9020\u7ec6\u80de\u53d1\u73b0\u3002"} +{"id": "2007736", "video_name": "b5c34e29-a40b-58ab-959f-221ba97e77d7", "text": "\u4ed6\u4eec\u7684\u679c\u56ed\u548c\u519c\u4e1a\uff0c\u53ea\u5269\u4e0b\u4e86\u4e00\u4e9b\u6d46\u679c\u6811\u548c\u704c\u6728\u3002"} +{"id": "6002100", "video_name": "7db458ba-6b8c-529d-8a93-1fdf8948c37b", "text": "\u963f\u5e0c\u62c9\u66fc\u795e\u5e99\uff0c\u8272\u5f69\u4e3a\u58a8\u9ed1\u548c\u7eaf\u767d\uff0c\u8425\u9020\u51fa\u5f3a\u70c8\u7684\u89c6\u89c9\u51b2\u51fb\u3002"} +{"id": "4002781", "video_name": "fec00d76-42ae-513f-8fc8-fc8eca07f787", "text": "\u52a8\u6f2b\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u4e00\u4e2a\u6709\u7eb9\u8eab\u7684\u89d2\u8272\u624b\u81c2\u4ece\u624b\u5fc3\u55b7\u51fa\u4e00\u6761\u84dd\u8272\u7684\u706b\u7130\u7ebf\u3002"} +{"id": "3006391", "video_name": "0d36c4a7-c310-52cd-a878-bd10e28a7566", "text": "\u4e00\u53ea\u9e3d\u5b50\u6b63\u5750\u5728\u6811\u679d\u4e0a\u4fef\u77b0\u7740\u6cb3\u6d41\u3002\u5979\u770b\u5230\u4e00\u53ea\u8682\u8681\u5728\u6c34\u4e2d\u6323\u624e\uff0c\u4fbf\u98de"} +{"id": "6003444", "video_name": "40888689-ef83-52aa-8213-4c7bfa3564db", "text": "\u5728\u5730\u9762\u4e0a\u4ea7\u751f\u4e00\u79cd\u84b8\u6c7d\u7684\u51fa\u73b0\u3002"} +{"id": "4002325", "video_name": "f883a441-7daf-515d-a104-7b6b5a341847", "text": "\u7eb3\u7cb9\u515a\u536b\u519b\u5728\u534e\u76db\u987f\u7279\u533a\u884c\u8fdb\u3002"} +{"id": "0006833", "video_name": "33dde3c8-975c-5cde-a937-d48c4035b87c", "text": "\u8fc5\u901f\u7f16\u8f91\u4ee5\u663e\u793a\u7537\u5973\u4e3b\u89d2\u7684\u4f1a\u9762\u573a\u666f\uff0c\u5982\u56fe\u4e66\u9986\u3002"} +{"id": "2005222", "video_name": "a8b53f01-7e8b-526a-92d5-2684105cee73", "text": "\u4e00\u4e2a\u96e8\u591c\uff0c\u5728\u7a97\u8fb9\u7684\u4e66\u684c\u4e0a\uff0c\u6709\u4e00\u672c\u6253\u5f00\u7684\u4e66\u548c\u4e00\u676f\u5192\u7740\u70ed\u6c14\u7684\u5496\u5561\u3002"} +{"id": "7004702", "video_name": "09081506-173d-5849-9205-a779e45f1776", "text": "\u5f20\u5fd7\u8f69\u62b1\u7740\u4e00\u4e2a\u5973\u4eba\u7761\u89c9\u3002"} +{"id": "0005649", "video_name": "1eaa9dba-e084-5f03-9eca-de69d2b605f2", "text": "\u4ece\u50cf\u7d20\u5316\u7684\u7cbe\u7075\u5230\u903c\u771f\u76843D\u6a21\u578b\uff0c\u89c6\u9891\u6e38\u620f\u56fe\u5f62\u5df2\u7ecf\u8d70\u8fc7\u4e86\u6f2b\u957f\u7684\u8def\u7a0b\u3002\u4e03\u5e74\u7ea7\u7537\u5b69\u5750\u5728\u684c"} +{"id": "0005152", "video_name": "15a76a73-2a1f-543a-b2f7-0d061b2ae385", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u718a\u732b\u5728\u68ee\u6797\u4e2d\u5fc3\u76843D\u76ae\u514b\u65af\u98ce\u683c\u56fe\u50cf\u3002"} +{"id": "1004092", "video_name": "4bc31178-d564-5087-a9b2-b471f356b880", "text": "\u4e00\u67b6\u53d1\u5149\u7684\u98de\u789f\u4ece\u623f\u9876\u4e0a\u98de\u8d70\u4e86\u3002"} +{"id": "0004864", "video_name": "1088e678-f8b1-59ec-9246-60c896c07ad6", "text": "\u767d\u8272\u72ec\u89d2\u517d\u5728\u80cc\u666f\u4e2d\u98de\u7fd4\u7684\u9f99\u7684\u966a\u4f34\u4e0b\u884c\u8d70\u3002"} +{"id": "4003421", "video_name": "bfe54480-962d-53ff-9b64-d5a42241a4fd", "text": "\u767d\u5929\u7684\u6d77\u6ee9"} +{"id": "3006239", "video_name": "ed79922a-2db4-5d04-81dc-d8735f8209fd", "text": "\u4e00\u5f20\u6a21\u7cca\u7684\u7a97\u6237\u7167\u7247\uff0c\u4e0a\u9762\u6709\u96e8\u6ef4\uff0c\u80cc\u666f\u662f\u84dd\u5929\u548c\u767d\u4e91\uff0c\u662f\u4e00\u5f20\u5e93\u5b58\u7167\u7247\u3002\u4f5c\u8005\u662f\u5b89\u5bab"} +{"id": "7002054", "video_name": "bae7f467-d7b1-5eee-8145-54c32bd4f83a", "text": "\u5c0f\u4e11\u5f39\u5409\u4ed6\uff0c\u624b\u6307\u5f39\u594f\u5409\u4ed6\uff0c\u6447\u6eda\u97f3\u4e50\uff0c\u5168\u8eab\u6295\u5165\uff0c\u97f3\u4e50\u4f1a\u821e\u53f0\u80cc\u666f\uff0c\u6570\u5b57\u827a\u672f\u3002"} +{"id": "0005296", "video_name": "18027ea9-6cf2-5e8b-97a5-63cbf05f480c", "text": "\u4e00\u79cd\u5236\u9020\u4eba\u7c7b\u7684\u673a\u5668\uff0c\u9ad8\u79d1\u6280\uff0c\u53ef\u4ee5\u5728\u78c1\u5e26\u4e0a\u5236\u9020\u4eba\u7c7b\u7684\u5de5\u5382\u3002\u9ad8\u54c1\u8d28\uff0c8K\u3002\u4e07\u5723\u8282\u706f\u5149\u3002"} +{"id": "8001397", "video_name": "c3bf9f1a-e433-5b06-88e1-87be2ab7ff0d", "text": "\u4e00\u53ea\u53d7\u4f24\u7684\u9e70\u5728\u5730\u9762\u4e0a\uff0c\u5468\u56f4\u662f\u8349\u5730\u3002"} +{"id": "1005310", "video_name": "618a12cf-bbd8-53de-a833-6de2095ad356", "text": "\u4e00\u4f4d26\u5c81\u7684\u5deb\u5e08\u5750\u5728\u4e00\u6761\u767d\u57a9\u6eaa\u7684\u5cb8\u8fb9\u5438\u7740\u70df\u6597\u3002\u7740\u91cd\u8868\u73b0\u5deb\u5e08\u53ca\u5176\u9762\u5bb9\uff0c"} +{"id": "2005089", "video_name": "3243ba0a-0ce4-5c27-8a81-2d68af7e3834", "text": "\u4e00\u4e2a\u4eba\u4f53\u957f\u7740 Chewbacca \u8138\u7684\u751f\u7269\u5728\u6ee1\u662f\u96ea\u7684\u6811\u6797\u4e2d\u592e\uff0c16\u6beb\u7c73\u80f6\u7247\u7684\u9897\u7c92\u611f\u753b\u9762\u30021982\u5e74\u3002"} +{"id": "1004692", "video_name": "572fbe6e-c1a1-56c2-b83e-ee331e605943", "text": "\u5236\u4f5c\u4e00\u5f20\u56fe\u7247\uff0c\u5728\u8fd9\u5f20\u56fe\u7247\u4e2d\uff0cKratos \u5373\u5c06\u4e0e\u8d85\u4eba\u5f00\u6218\u3002"} +{"id": "2003030", "video_name": "9a0bd889-6d90-5878-9681-f97f8f0349c4", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u5728\u6d77\u6ee9\u4e0a\u6652\u592a\u9633\u3002"} +{"id": "0004836", "video_name": "10106e1f-146a-5694-91cb-6cfb0410527d", "text": "\u4e00\u4e2a\u7a7f\u7740\u6b63\u5f0f\u670d\u88c5\u7684\u5973\u5b69\u7ed9\u5927\u5bb6\u8bb2\u6545\u4e8b\u3002\u8fd9\u4e2a\u5973\u5b69\u6709\u957f\u53d1\u548c\u9ec4\u76ae\u80a4\u3002\u80cc\u666f\u662f\u7eaf\u767d\u8272\u7684\u3002"} +{"id": "2006178", "video_name": "1854bff6-2ac0-5dc7-b822-f89e800eafcb", "text": "\u7334\u738b\u548c\u9f99\u795e"} +{"id": "6004535", "video_name": "832da818-e266-5025-97d6-aa4b523816c7", "text": "\u591c\u665a\u5730\u4e0b\u6d8c\u51fa\u6c34\u6765\u3002\u661f\u661f\u95ea\u70c1\uff0c\u6708\u4eae\u5706\u6ee1\uff0c\u9ed1\u6697\u7f8e\u4e3d\u3002"} +{"id": "3003829", "video_name": "a47d482c-be25-54b6-afef-b6f5e8b8bff4", "text": "\u82f1\u56fd\u732b\u5728\u9910\u5385\u5403\u610f\u5927\u5229\u9762\u3002"} +{"id": "2006436", "video_name": "c8173fd1-0c4b-5220-a21a-38baff3b84ba", "text": "\u4e00\u53ea\u62ff\u7740\u5409\u4ed6\u5728\u5927\u578b\u97f3\u4e50\u8282\u4e0a\u5531\u6b4c\u7684\u6811\u61d2\uff0c\u903c\u771f\uff0c\u9ad8\u5206\u8fa8\u7387\u7ec6\u8282\u3002"} +{"id": "4004219", "video_name": "02e534ef-1027-5c80-8a4f-3b37acbb3f33", "text": "\u8fd9\u4e2a\u5145\u6ee1\u751f\u673a\u52c3\u52c3\u7684\u8272\u5f69\u548c\u80fd\u591f\u4ee5\u9ad8\u6e05\u683c\u5f0f\u770b\u5230\u4ed6\u4eec\u6700\u559c\u6b22\u7684\u52a8\u753b\u548c\u6f2b\u753b\u7684\u4e16\u754c\u5145\u6ee1\u4e86\u8bf4"} +{"id": "8002196", "video_name": "9fe7ce53-939d-51c0-b071-430d96f3cf50", "text": "\u5728\u6821\u56ed\u91cc\uff0c\u4e00\u7fa4\u5341\u51e0\u5c81\u7684\u7537\u5b69\u548c\u5973\u5b69\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "2003938", "video_name": "80859dc0-8a19-53ca-a2c9-9590c7f6173e", "text": "\u57281970\u5e74\u7684\u7535\u5f71\u300a\u7f8e\u4eba\u9c7c\u300b\uff0c\u5927\u8d1d\u58f3\u5728\u6d77\u91cc\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "0003162", "video_name": "385e7fa3-b511-5bc9-8599-a8edc4cd4248", "text": "\u9053\u683c\u00b7\u5df4\u54e5\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "8003412", "video_name": "f06ba053-a53a-5a40-bc46-728d49e50e31", "text": "\u76f8\u4fe1\u6211\uff0c\u4e00\u4e2a\u5973\u4eba\u8eba\u5728\u5730\u677f\u4e0a\uff0c\u819d\u76d6\u5f2f\u66f2\uff0c\u624b\u81c2\u4f38\u76f4\u5728\u5730\u4e0a\u505a\u540e\u4f38\u5c55\u8fd0\u52a8\uff0c\u623f\u95f4\u91cc\u6709\u4e00"} +{"id": "1005276", "video_name": "6109d8c1-de88-5d3d-bc81-cd5781a63f9a", "text": "\u7f8e\u56fd\u961f\u957f\u548c\u8d85\u4eba\u7684\u6218\u6597\u89c6\u9891\u50cf\u7535\u5f71\u9884\u544a\u7247\uff0c\u663e\u793a\u51fa\u201c\u7f8e\u56fd\u961f\u957f\u201d\u4ee5\u7ea2\u8272\u51fa\u73b0\u3002"} +{"id": "3004460", "video_name": "810b3f47-b82a-56da-98ab-7b89da3f0549", "text": "\u4e00\u4f4d\u88c5\u7532\u7684\u5929\u4f7f\uff0c\u4f34\u968f\u7740\u95ea\u7535\u4ece\u5929\u800c\u964d\uff0c\u5fc3\u7406\u5931\u63a7\uff0c\u620f\u5267\u6027\u3001\u60ca\u609a\u3001\u9ed1\u5ba2\u5e1d\u56fd\u3001\u5fc3"} +{"id": "3006813", "video_name": "c7678b19-9615-5560-b280-77fa8969a4c9", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u7740\u9ed1\u8272\u5939\u514b\u548c\u88e4\u5b50\uff0c\u7ad9\u5728\u516c\u56ed\u91cc\uff0c\u4ed6\u7684\u6c7d\u8f66\u540d\u5b57\u662f\u91ce\u9a6cS197\uff0c\u665a\u4e0a\u65f6\u5206\uff0c\u7075\u611f\u6765\u81ea"} +{"id": "1003086", "video_name": "38d3a161-b34b-5471-9f32-ee611e94ab9f", "text": "\u6b66\u58eb\u4eba\u7fa4\u5728\u8857\u4e0a\u9a9a\u4e71\u3002"} +{"id": "8001458", "video_name": "19ccc685-67ac-5780-a157-1daf2dfaf44b", "text": "\u6e90\u53e5\uff1a\u5b55\u80b2\u50f5\u5c38\u7535\u5f71\uff0c\u4f01\u4e1a\u4eba\u58eb\uff0c\u4f26\u6566\uff0c\u91d1\u878d\uff0c\u5546\u4e1a\uff0c\u94b1\u8d22\uff0c\u4e0d\u7965\u8c37\uff0c\u975e\u5e38\u8be6\u7ec6"} +{"id": "2007366", "video_name": "2403fddb-6824-55e0-a74b-8eee1bc242ec", "text": "\u5728\u5178\u578b\u7684\u7f8e\u56fd\u5c0f\u9547\u4e0a\uff0c\u6211\u4eec\u770b\u5230\u4e00\u5ea7\u623f\u5c4b\uff0c\u6162\u6162\u5730\u8d70\u8fd1\uff0c\u53d1\u73b0\u4e00\u5bb6\u4eba\u5f62\u5316\u7684\u5c71\u7f8a\u5728\u4eab\u7528\u7f8e"} +{"id": "1006664", "video_name": "7a0fdf9a-00b4-577e-b148-b87bb5780325", "text": "\u5f17\u7f57\u591a\u662f\u4e00\u4e2a\u6709\u4e9b\u75b2\u60eb\u53c8\u5145\u5b9e\u7684\u5c0f\u970d\u6bd4\u7279\u3002"} +{"id": "6004576", "video_name": "b9358b79-56d5-5f47-b9f2-dd7e7c5f80bb", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0c\u5728\u4e00\u4e2a\u6ca1\u6709\u4eba\u7684\u9ed1\u6697\u6d1e\u7a74\u91cc\uff0c\u7528\u706b\u71c3\u8d77\u5730\u72f1\u3002"} +{"id": "1004385", "video_name": "51056c0b-7208-5182-a1de-73a5155f569b", "text": "\u8239\u5728\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u6d6a\u4e2d\u6447\u6643\uff0c\u4e00\u53ea\u53ef\u6015\u7684\u6c34\u602a\u51fa\u73b0\u5728\u6c34\u4e2d\uff0c\u4e00\u6761\u9f99\u5728\u5929\u7a7a\u4e2d\u76d8\u65cb\u3002"} +{"id": "7003928", "video_name": "d087afbb-92f4-5baa-ae6d-96949899b4a7", "text": "\u89c6\u9891\u662f\u4e00\u5f20\u663e\u793a\u4e16\u754c\u5730\u56fe\u7684\u56fe\u50cf\u3002\u4ece\u6b27\u6d32\u7684\u4e00\u4e2a\u70b9\u51fa\u53d1\uff0c\u5411\u4fc4\u7f57\u65af\u79fb\u52a8\uff0c\u4e00\u8f86\u5361\u8f66\u5728\u5730\u56fe\u4e0a\u7f13\u6162"} +{"id": "5001334", "video_name": "3f54679d-9cd1-599a-b457-b347df3c91fc", "text": "\u53e4\u4ee3\u795e\u57ce\u4e2d\u5de8\u5927\u7684\u6469\u6d1b\u514b\u96d5\u50cf\uff0c\u8425\u9020\u51fa\u8be1\u5f02\u7684\u6c1b\u56f4\uff1b\u5929\u7a7a\u4e2d\u7684\u65e0\u80a2\u5929\u4f7f\uff0c\u592a\u9633\u5448\u73b0"} +{"id": "7003254", "video_name": "72735b26-ad75-5314-b5b5-4aafb70c9abe", "text": "\u8389\u8389\u5728\u83b7\u5f97\u5ba4\u5185\u8bbe\u8ba1\u5de5\u4f5c\u540e\u4e0e\u670b\u53cb\u548c\u5bb6\u4eba\u5171\u5e86\uff0c\u63a5\u7740\u5207\u6362\u5230\u5979\u5750\u5728\u4e00\u4e2a\u65f6\u5c1a\u7684\u8bbe\u8ba1\u5de5\u4f5c\u5ba4"} +{"id": "5001275", "video_name": "97bd655d-4073-56a8-9df3-c0884178cd28", "text": "\u592a\u7a7a\u4e2d\u9ed1\u6d1e\u7684\u53d1\u73b0\u5f55\u50cf\u3002"} +{"id": "1004361", "video_name": "5089f025-5e40-5fe7-a6ee-d4180231291b", "text": "\u6f2b\u753b\u63d2\u56fe\u4e0a\u6709\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u6027\uff0c\u7ad9\u5728\u4e00\u8863\u67dc\u524d\uff0c\u8863\u67dc\u91cc\u5806\u6ee1\u4e86\u8863\u670d\uff0c\u5979\u8bf4\uff1a\u201c\u6211\u4ec0"} +{"id": "2004011", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "\u672a\u6765\u7684\u4e16\u754c\u4f1a\u53d8\u5f97\u66f4\u52a0\u667a\u80fd\u5316\uff0c\u5efa\u7b51\u3001\u57ce\u5e02\u3001\u673a\u68b0\u548c\u6c7d\u8f66\u4e5f\u4f1a\u53d8\u5f97\u66f4\u52a0\u5148\u8fdb\u3002"} +{"id": "3004558", "video_name": "7e28af3f-8ead-575a-afc7-c168b538571f", "text": "\u5df4\u54e5\u72ac\u5f88\u6d3b\u8dc3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004669", "video_name": "3c2c5baf-1634-5199-af4a-96a28a72a756", "text": "\u521b\u5efa\u4e00\u5f20\u7167\u7247\uff0c\u6bcd\u4eb2\u548c\u5979\u7684\u4e24\u4e2a\u5973\u513f\u7ad9\u5728\u672b\u65e5\u4e16\u754c\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "3005930", "video_name": "cec33426-bba3-5932-b545-c6f0dc50c575", "text": "\u4e00\u526f\u9aa8\u67b6\u5728\u70df\u96fe\u7f2d\u7ed5\u7684\u80cc\u666f\u4e0b\u6f14\u594f\u7740\u4e00\u628a\u71c3\u70e7\u7684\u5409\u4ed6\u3002"} +{"id": "3006360", "video_name": "389ead24-176f-5eaf-aa16-43d24497eaa3", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\u4e2d\u5bf9\u7740\u6444\u50cf\u673a\u53eb\u3002"} +{"id": "1003586", "video_name": "4201fbec-ab1d-5121-88da-4b3de54ce171", "text": "\u56fe\u50cf\uff0c\u9aa8\u67b6\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u4ee5\u7528\u4e8e\u6b4c\u66f2\u5c01\u9762\u7684Phonk\u3002"} +{"id": "7004943", "video_name": "0f858ef9-fa03-524a-978e-184997b46137", "text": "\u6765\u81ea\u7269\u7406\u6cbb\u7597\u5e08\u548c\u8fd0\u52a8\u533b\u5b66\u4e13\u4e1a\u4eba\u58eb\u7684\u4e13\u4e1a\u6307\u5bfc\uff0c\u53ca\u65f6\u89e3\u51b3\u4efb\u4f55\u635f\u4f24\u6216\u4e0d\u5e73\u8861\u3002"} +{"id": "1006847", "video_name": "7d2392b5-cc08-58c6-9499-e48f4acdae06", "text": "\u4e00\u672c\u6253\u5f00\u7684\u4e66\u4e0a\u6446\u653e\u7740\u300a\u53e4\u5170\u7ecf\u300b\u7684\u8bd7\u53e5\uff0c\u7a81\u51fa\u4e86\u300a\u6492\u65e6\u8bd7\u7bc7\u300b\u7684\u5192\u72af\u5185\u5bb9\u3002"} +{"id": "0005407", "video_name": "1a4dc650-a7fb-55ec-a391-ee4153123638", "text": "\u4e9a\u5386\u514b\u65af\u7ecf\u8fc7\u51e0\u4e2a\u6708\u7684\u52aa\u529b\uff0c\u638c\u63e1\u4e86\u9ed1\u5ba2\u6280\u672f\u3002 \n\nSource sentence: The company's profits have increased significantly since the new CEO took over. \n\n\u81ea\u4ece"} +{"id": "2006935", "video_name": "4d85ae82-45f5-58e5-99e7-5eb1fb81762c", "text": "\u4e00\u4e2a\u7eff\u8272\u76ae\u80a4\u7684\u5c0f\u4eba\u53bb\u6355\u9cb8\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8002193", "video_name": "993d9a62-0dfc-5200-ba3b-fceadb4c6a61", "text": "\u591c\u665a\u8857\u9053\u4e0a\u6709\u4e1c\u897f\u5728\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "0003541", "video_name": "3f3c5d72-373c-585c-95cb-8cf23fc30ac5", "text": "\u672a\u6765\u4e3b\u4e49\u808c\u8089\u8f66\u9ad8\u901f\u884c\u9a76\uff0c\u52a8\u4f5c\u7535\u5f71\uff0c\u5feb\u8282\u594f\u7684\u80cc\u666f\uff0c\u591c\u665a\u7684\u57ce\u5e02\u3002"} +{"id": "7003530", "video_name": "2ed173b8-f18b-5c55-9b90-28eb924fd7be", "text": "\u9ed1\u8272\u5916\u661f\u5361\u901a\u89d2\u8272\u5728\u5b87\u5b99\u98de\u8239\u4e0a\u7684\u72c2\u6b22\u4e2d\uff0c\u901a\u8fc7\u5916\u661f\u6a21\u62df\u5408\u6210\u5668\u65cb\u94ae\u8c03\u8282\uff0c\u753b\u9762\u7f29\u5c0f\u5e76\u5448"} +{"id": "8002324", "video_name": "53584b25-1804-5f06-9301-0cb972aa148d", "text": "Chirpy\u8bd5\u56fe\u8ba9Fluffy\u548cTweetie\u4fdd\u6301\u5b89\u5168\u548c\u6e29\u6696\uff0c\u4f46\u98ce\u52bf\u4e0d\u606f\u3002\u9ec4\u9e1f\u7684\u52a8\u753b\u3002"} +{"id": "6002175", "video_name": "1e84da05-97bf-5147-849c-c3024fdd7683", "text": "\u5b69\u5b50\u4eec\u6700\u559c\u6b22\u7684\u5e26\u67093D\u58f0\u97f3\u7684\u52a8\u753b\u89c6\u9891\u3002\n\nSource sentence: My favorite hobby is playing guitar and writing songs. \n\u6211\u7684\u6700\u7231\u7231\u597d\u662f\u5f39\u5409\u4ed6\u548c"} +{"id": "8001205", "video_name": "d9db67ef-9765-5168-b400-afe3b20fd8a5", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u6001\u7684\u540d\u5b57Soni Network\u3002"} +{"id": "0005080", "video_name": "14645969-4407-506f-b23e-263b884debb7", "text": "\u672b\u65e5\u540e\u7684\u7f8e\u4e3d\u666f\u8272\uff0c\u65e5\u5149\u7167\u8000\uff0c\u4e00\u4e2a\u91d1\u53d1\u4fc4\u7f57\u65af\u7537\u4eba\u7a7f\u7740\u592a\u7a7a\u670d\u671d\u7740\u955c\u5934\u8d70\u6765\u3002\u975e"} +{"id": "2004263", "video_name": "15192104-1e47-5d84-9126-bc7fac32f899", "text": "\u9762\u5e26\u5fae\u7b11\u7684\u5e74\u8f7b\u5973\u5b50\u6b63\u9762\u671d\u5411\u6211\u4eec\uff0c\u8138\u4e0a\u548c\u5e73\u5730\u5fae\u7b11\uff0c\u7167\u7247\u5177\u6709\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\u3002"} +{"id": "2007994", "video_name": "4fc47f9d-b6c1-5757-a401-586b5b272fcc", "text": "\u5988\u5988\u548c\u7238\u7238\u6559\u5b69\u5b50\u8981\u6709\u5584\u826f\u548c\u8d23\u4efb\u611f\u3002\u4ed6\u4eec\u8f6e\u6d41\u5582\u517b\u3001\u73a9\u800d\u548c\u7167\u987e\u5c0f\u72d7"} +{"id": "1006856", "video_name": "7d34a9a2-5c63-516d-aeb4-9f32b86e8846", "text": "\u5728\u65e7\u91d1\u5c71\u91d1\u95e8\u5927\u6865\u9644\u8fd1\u5750\u7740\u7684\u5973\u4eba\u3002"} +{"id": "6003059", "video_name": "d764c863-bdcf-5837-8f10-a4e721356363", "text": "\u8fd9\u662f\u4e00\u4e2a\u53d1\u751f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u7684\u6545\u4e8b\uff0c\u4eba\u4eec\u9760\u52aa\u529b\u5de5\u4f5c\u548c\u8bda\u5b9e\u751f\u6d3b\u3002"} +{"id": "4002172", "video_name": "e647a4c3-d7b4-5322-8660-2a6b0819ef91", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u592a\u7a7a\u8239\u4e0a\uff0c\u53d6\u4e0b\u5979\u7684\u592a\u7a7a\u5934\u76d4\u3002"} +{"id": "0006163", "video_name": "278d9064-bd45-5291-9dda-c5dd013c7560", "text": "\u5728\u5065\u8eab\u623f\u91cc\u6c57\u6d41\u6d43\u80cc\u7684\u4e00\u4e2a\u58ee\u7855\u7537\u5b50\u3002"} +{"id": "0006250", "video_name": "293aa100-251a-5d75-a240-7a13d25a4909", "text": "\u4e24\u4e2a\u5973\u4eba\u5728\u8857\u5e02\u6253\u67b6\u3002"} +{"id": "0004075", "video_name": "02ccfaf7-9fd2-566c-9e3c-ba782fe75897", "text": "\u5f71\u5b50\u5411\u524d\u884c\u8d70\uff0c\u89e6\u624b\u5728\u8840\u7ea2\u8272\u80cc\u666f\u4e0a\u79fb\u52a8\uff0c\u5c31\u50cf\u662f\u4e00\u4e2a\u7ef4\u5ea6\u95e8\u3002"} +{"id": "1005815", "video_name": "6ae21a0f-d3af-5661-85f6-1e26a3e47d0a", "text": "\u65b0\u57ce\u5e02\u98ce\u683c\u7535\u5f71"} +{"id": "3006238", "video_name": "df1c7fc2-ad02-56a4-90b6-65602a5d9172", "text": "\u591c\u95f4\u9a7e\u8f66\uff0c\u773c\u524d\u51fa\u73b0\u98de\u6765\u7684\u8759\u8760\uff0c\u89c6\u89d2\u4e3a\u7b2c\u4e00\u4eba\u79f0\u3002"} +{"id": "2004256", "video_name": "446abb05-4007-548a-b172-182704e44fe0", "text": "\u4e00\u53ea\u62e5\u6709\u7fc5\u8180\u7684\u9ca8\u9c7c\u98de\u8d8a\u5c71\u8109\u3002"} +{"id": "6002952", "video_name": "b541e0bb-22b5-5521-bf3c-bbcce3931c5e", "text": "Brom\u98ce\u683c\u7684\u5929\u4f7f"} +{"id": "0006831", "video_name": "33d9a575-87ac-560d-aeb5-209f29b64bd8", "text": "\u5c71\u9876\u4e0a\u7684\u7537\u5b69\u548c\u72ee\u5b50\u4fef\u77b0\u7740\u4ed6\u4eec\u5b88\u62a4\u7684\u4e1b\u6797\uff0c\u7f8e\u4e3d\u7684\u65e5\u843d\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "3004099", "video_name": "a7ec9bc9-9763-5ab3-8e9e-e991fc26ae99", "text": "\u63a2\u7d22\u8def\u6613\u5341\u56db\u7684\u751f\u6d3b\u548c\u9057\u4ea7\uff0c\u4ed6\u662f\u6cd5\u56fd\u7684\u592a\u9633\u738b\uff0c\u57281643\u5e74\u81f31715\u5e74\u671f\u95f4\u7edf\u6cbb\u3002\u6df1\u5165\u4e86\u89e3\u4ed6\u5bf9\u6cd5\u56fd\u6587\u5316\u3001"} +{"id": "0003958", "video_name": "008bae08-e4a8-5987-8602-0ff83176d85d", "text": "\u5ca9\u77f3\u56e0\u7269\u7406\u529b\u91cf\u800c\u7834\u88c2\u7684\u89c6\u89c9\u6548\u679c\u3002 \n\nSource sentence: The company's revenue has increased by 20% this year. \n\n\u516c\u53f8\u4eca\u5e74\u7684\u6536\u5165\u589e\u52a0\u4e8620%"} +{"id": "7002703", "video_name": "c1722f3f-2084-542d-9371-b974ace3e9bd", "text": "\u8fd8\u6709\u5954\u8dd1\u7684\u6b7b\u732b\u3001\u72d7\u3001\u8840\u548c\u5207\u53e3\u3002"} +{"id": "8002841", "video_name": "0c56f8e4-6013-5b09-b20a-f2fc38551a72", "text": "\u8001\u4eba\u5728\u51ac\u5b63\u7684\u68ee\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "1006189", "video_name": "71590f02-7423-5964-aa93-7c5f3b485b90", "text": "\u8718\u86db\u4fa0\u9a7e\u9a76\u6469\u6258\u8f66\u6cbf\u7740\u9ad8\u901f\u516c\u8def\u884c\u9a76\u3002"} +{"id": "8002948", "video_name": "82cef255-40b1-582f-8f87-1b9db7c9e707", "text": "\u57281990\u5e74\u4ee3\u60f3\u8c61\u4e2d\u7684\u672a\u6765\u6d1b\u6749\u77f6\u3002"} +{"id": "1003405", "video_name": "3ed5ed2a-84dd-53e5-83b2-9d2948be5cea", "text": "\u65f6\u9ae6\u7684\u5927\u8863\u548c\u5c0f\u9a6c\u7532\uff0c\u9002\u5408\u7ec5\u58eb\u3002"} +{"id": "3003420", "video_name": "1daf3090-fb7c-5809-8e45-351a0943de70", "text": "\u7ed8\u5236\u4e00\u5f20\u80a1\u7968\u6570\u5b57\u8868\u683c\u3002"} +{"id": "1006518", "video_name": "773e3a05-0f6f-5efe-b63c-1848d5100c39", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6253\u50f5\u5c38\uff0c\u52a8\u6f2b\u622a\u56fe"} +{"id": "3005682", "video_name": "66206568-909b-5270-9d40-116ef914f686", "text": "\u9176\u6b63\u5728\u7ed3\u5408\u5e95\u7269\u3002"} +{"id": "8002825", "video_name": "48391b91-d8a9-5661-ae82-c25f35949f13", "text": "\u8ba9\u8fd9\u4e2a\u89d2\u8272\u52a8\u8d77\u6765\uff0c\u5934\u53d1\u548c\u5939\u514b\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u52a8\u753b\u80cc\u666f\u3002"} +{"id": "1003552", "video_name": "418823da-add6-566d-a0dd-a93d00871aa7", "text": "\u53d1\u5149\u7684\u80fd\u91cf\u5377\u987b\u7f16\u7ec7\u6210\u4e00\u4e2a\u8d85\u8d8a\u65f6\u7a7a\u7684\u7384\u5999\u666f\u8c61\uff0c\u5c06\u6240\u6709\u751f\u7075\u8fde\u63a5\u6210\u4e00\u4e2a\u7edf\u4e00\u7684\u80fd\u91cf\u77e9\u9635\u3002\u4f5c\u8005\uff1a"} +{"id": "2003402", "video_name": "b534a82e-9691-5225-8b4c-51838d8c01e4", "text": "\u73b0\u5728\u7528\u6237\u7a7f\u84dd\u8272\u886c\u886b\u7684\u4e0a\u4f20\u9009\u9879\u5df2\u7ecf\u6253\u5f00\u3002"} +{"id": "0005961", "video_name": "23f990c5-1810-5fbb-8649-0d1a98f17ae2", "text": "\u5728\u7eb8\u4e0a\u627e\u5230\u5b50\u96c6\u7684\u96c6\u5408\u3002"} +{"id": "2006275", "video_name": "cf5bb6fc-0255-53a2-9090-f5fa69532291", "text": "\u7687\u5bb6\u9a6c\u5fb7\u91cc\u7684\u6807\u5fd7\u91cc\u9762\u6709\u4e00\u53ea\u72ee\u5b50\u3002"} +{"id": "8002759", "video_name": "9b46748d-1522-5e8b-b867-0eca38c3abe2", "text": "\u7a7f\u8457\u900f\u660e\u9577\u888d\u7684\u7f8e\u5973\u5728\u8c6a\u83ef\u623f\u9593\u88e1\u6d17\u5b8c\u6fa1\u3002"} +{"id": "1006885", "video_name": "7ddf9439-2749-5947-89e9-45019d038810", "text": "\u8759\u8760\u4fa0\u5728\u591c\u91cc\u7684\u96e8\u4e2d\uff0c\u6162\u52a8\u4f5c\u5730\u7ad9\u5728\u574f\u4eba\u9762\u524d\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u5bbd\u5e7f\u7684\u753b\u9762\u3002"} +{"id": "4003896", "video_name": "88a82fb6-f691-55d0-b261-0fb19a817562", "text": "\u4e00\u500b\u5b64\u55ae\u7684\u5c0f\u5973\u5b69\u5728\u96e8\u4e2d\u6f2b\u6b65\u3002"} +{"id": "4004803", "video_name": "0206b134-35cb-5eaa-8b7d-b68d7b653303", "text": "\u4e2d\u56fd\u519c\u6751\uff0c\u8001\u623f\u5b50\uff0c\u519c\u7530\uff0c\u661f\u7a7a\uff0c\u6708\u4eae\uff0c\u8fdc\u666f"} +{"id": "1003458", "video_name": "40035acd-e68b-592b-8e4d-aac46878938b", "text": "\u4e00\u500b\u53c8\u5927\u53c8\u5687\u4eba\u7684\u6a59\u8272\u5357\u74dc\uff0c\u4e0a\u9762\u6234\u8457\u4e00\u9802\u725b\u4ed4\u5e3d\uff0c\u5728\u4e00\u500b\u53ef\u6015\u7684\u9ed1\u591c"} +{"id": "1004628", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "\u8d858\u6beb\u7c73\u80d6\u5efa\u7b51\u5de5\u4eba\u780c\u5899\u7684\u5f55\u50cf\u3002"} +{"id": "5001988", "video_name": "52de00de-c317-5f43-9208-fa1d509f008e", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u8df3\u821e\uff0c\u4ed6\u4eec\u5468\u56f4\u6709\u82b1\u6735\uff0c\u50cf\u8fea\u58eb\u5c3c\u4e00\u6837\u3002"} +{"id": "1006426", "video_name": "75993a81-f39d-5613-aaef-743ce83c6fdb", "text": "\u4e00\u6bb5\u9ed1\u767d4:3\u7684\u65e7\u65b0\u95fb\u6863\u6848\u89c6\u9891\uff0c\u5173\u4e8e\u8d1e\u5fb7\u3002"} +{"id": "3006150", "video_name": "c2bec284-2b69-507d-af4c-db5be2b88281", "text": "\u6574\u4e2a\u690d\u7269\u968f\u7740\u5fae\u98ce\u800c\u79fb\u52a8\u3002"} +{"id": "6004511", "video_name": "b44ac1e1-6d35-5b6e-a1e3-5f539ba8c126", "text": "\u6076\u9b54\u822c\u7684\u7f8e\u4e3d\u5973\u5996\u5e26\u7740\u89d2\u5750\u5728\u65e5\u672c\u6e29\u6cc9\u5185\uff0c\u6a31\u82b1\u82b1\u74e3\u4ece\u5929\u800c\u964d\uff0c\u8d85\u73b0\u5b9e"} +{"id": "7003715", "video_name": "72b321fd-7860-598f-b35c-756111e2951d", "text": "\u9876\u70b9\uff0c\u6cb8\u817e\u7684\u5496\u5561\uff0c\u5fae\u8ddd\u955c\u5934\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "2007855", "video_name": "213e7fb4-1cd9-5402-8c4d-6705ee05d85e", "text": "\u5728\u82b1\u56ed\u91cc\uff0c\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u548c\u5154\u5b50\u73a9\u800d\u3002"} +{"id": "3005539", "video_name": "799bb83a-fb0b-5c7a-a9c5-70a9c93345e3", "text": "\u4e00\u4efd\u8272\u5f69\u4e30\u5bcc\u7684\u76d8\u5b50\uff0c\u5305\u542b\u4e86\u6c34\u679c\u3001\u852c\u83dc\u3001\u5168\u8c37\u7269\u548c\u7626\u8089\u86cb\u767d\u7684\u5747\u8861\u914d\u6bd4\u3002"} +{"id": "0006044", "video_name": "25985e4b-99e5-5e70-852f-edb4a4c015b5", "text": "\u5728\u5e03\u9c81\u514b\u6797\u5e02\u4e2d\u5fc3\u7684\u96e8\u5929\uff0c\u4eba\u4eec\u6491\u7740\u96e8\u4f1e\u7f13\u6162\u884c\u8d70\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u8fd9\u53ea"} +{"id": "5001610", "video_name": "bf0af304-9e0a-5aa2-a03f-54a3359f0007", "text": "\u9ed1\u6697\u7684\u5149\u96fe\uff0c\u591c\u665a\u7684\u7530\u91ce\uff0c\u795e\u79d8\u7684\u7269\u4f53\uff0c\u5deb\u672f\u3002"} +{"id": "4003730", "video_name": "fe43f284-8c2b-5284-8ab3-58176c47ef5d", "text": "\u94f6\u6cb3\u7cfb\u7684\u5206\u5f62\u7f29\u653e 4k"} +{"id": "2003180", "video_name": "0c9a6d06-2fbf-5a57-bdb6-ecda2ed6b1f4", "text": "\u90a3\u4e2a\u7537\u4eba\u8d70\u51fa\u623f\u95f4\u5e76\u5173\u4e0a\u95e8\uff0c\u628a\u5973\u4eba\u7559\u5728\u4e86\u5c4b\u91cc\u3002"} +{"id": "6003712", "video_name": "2dfceaa4-beb1-5cca-874f-1b86f1044b42", "text": "\u9752\u86d9\u548c\u5927\u8c61\u4e00\u8d77\u63a2\u7d22\u4e1b\u6797\uff0c\u5ea6\u8fc7\u65f6\u5149\u3002"} +{"id": "8001120", "video_name": "11d60adf-93ff-57e2-8ae3-5bbdb686e3ef", "text": "3\u53ea\u72d7\u3001\u7261\u4e39\u3001\u6811\u3001\u96ea\u3001\u591c\u665a\u3002"} +{"id": "1003147", "video_name": "3a0837b1-cab9-55e6-b6b4-190a30d85640", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5927\u533b\u9662\u7b49\u5f85\u8bca\u65ad\u3002"} +{"id": "7002953", "video_name": "b3a71302-a460-52e6-b5a2-eda6d4f9f3ff", "text": "\u8759\u8760\u4fa0\u5728\u70c8\u65e5\u4e0b\u51fa\u6c57\u5df2\u7ecf\u7b4b\u75b2\u529b\u5c3d\u3002"} +{"id": "1004826", "video_name": "592c7b0b-8086-5d16-b80e-ce5375e64ce9", "text": "\u683c\u5f0f\uff1a9:16\u3002\u661f\u4f53\u6295\u5c04\uff0c\u7a7f\u8fc7\u73b0\u5b9e\u96a7\u9053\u3002\u4ee5\u661f\u4e91\u68a6\u5883\u4e3a\u7ec8\u70b9\u3002"} +{"id": "5001229", "video_name": "a7e7eb3f-1351-5286-93f7-c3644893db41", "text": "\u6469\u6258\u8f66\u5728\u8def\u4e0a\uff0c\u661f\u7a7a\u4f5c\u4e3a\u80cc\u666f\uff0c\u4eff\u4f5b\u7f6e\u8eab\u4e8e\u5b87\u5b99\u4e2d\u3002"} +{"id": "3006265", "video_name": "4a974b7b-736d-53ed-a9bb-962747931f4a", "text": "\u8d2d\u7269\u4e2d\u5fc3\u7206\u70b8\uff0c\u903c\u771f\uff0c4K\uff0c60\u5e27\u3002"} +{"id": "1004111", "video_name": "4c1ceca6-8e6c-52c1-afc8-2081caae4263", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u5728\u5e7f\u88a4\u7684\u592a\u7a7a\u4e2d\u547c\u5578\u800c\u8fc7\uff0c\u53d1\u52a8\u673a\u8f70\u9e23\uff0c\u6267\u884c\u62ef\u6551\u4eba\u7c7b\u7684\u4efb\u52a1\u3002"} +{"id": "8003730", "video_name": "1d345731-0ac6-5d5b-9d3e-1c0f9e123b95", "text": "\u6c99\u4eba\u6469\u83f2\u65af\u4e0e\u65e0\u5c3d\u8c08\u8bdd\u3002"} +{"id": "4002235", "video_name": "46bf7eff-3860-50e0-b069-473501bfc782", "text": "\u84dd\u8272\u773c\u775b\u7684\u7279\u5199\uff0c\u773c\u775b\u4e2d\u592e\u6709\u4eae\u70b9\u3002"} +{"id": "7004684", "video_name": "fdf67727-3f05-565a-bee4-e7f9987e2535", "text": "\u90aa\u6076\u7684\u5916\u661f\u4eba\u9886\u4e3bXenu\u4ece\u79d1\u5b66\u6559\u4f1a\u7684\u95e8\u91cc\u51b2\u51fa\u6765\uff0c\u5728\u6ed1\u677f\u4e0a\u505a\u4e86\u4e00\u4e2a\u7ffb\u8f6c\u5e76\u4e0e\u6c64\u59c6\u00b7\u514b"} +{"id": "6002515", "video_name": "9387bb62-71eb-5f9a-9561-c59f8ba84c39", "text": "\u5988\u5988\u591a\u5e74\u6765\u4e0d\u65ad\u8fdb\u6b65\uff0c\u9ad8\u5174\u5730\u5fae\u7b11\u7740\u7ed9\u5b69\u5b50\u4eec\u9001\u4e0a\u4e00\u4efd\u793c\u7269\uff0c\u8fd9\u662f4K\u3002"} +{"id": "6004587", "video_name": "28ffa3fb-08b8-5259-a469-f88c9e936138", "text": "\u5b89\u5fb7\u65af\u00b7\u5f7c\u5f97\u68ee\uff0c\u6c34\u4e2d\u7684\u5e06\u8239\uff0c\u4ea8\u5229\u00b7\u5361\u8482\u57c3-\u5e03\u5217\u677e\uff0c\u591c\u603b\u4f1a\u91cc\u53cd\u5c04\u5149\u7ebf\u7684"} +{"id": "3005632", "video_name": "015f88bc-e393-5953-bb4c-e5d51262c893", "text": "\u9ed1\u4eba\u5973\u58eb\u8eab\u7a7f\u7d2b\u8272\u7684\u7ea6\u9c81\u5df4\u670d\u88c5\uff0c\u5728\u6cbc\u6cfd\u4e2d\u5a01\u4e25\u5730\u884c\u8d70\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u53f2\u8bd7\u822c"} +{"id": "0004718", "video_name": "0de6c604-4cee-55b4-8a05-d7958861cdc4", "text": "8k\u9ad8\u5206\u8fa8\u7387\u5c0f\u767d\u51b0\u7bb1"} +{"id": "0004042", "video_name": "020ee0ba-42a6-52d6-98b1-ebe4463bb519", "text": "\u4e24\u4f4d\u4e2d\u56fd\u8001\u5e08\u548c\u5b66\u751f\u6b63\u5728\u4ea4\u8c08\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8003006", "video_name": "3a95c318-c44a-5538-8c43-646b65bd76af", "text": "\u9a91\u6469\u6258\u8f66\u9a76\u4e0a\u9ad8\u901f\u516c\u8def\uff0c\u57ce\u5e02\u706f\u5149\uff0c\u526f\u57ce\u5e02\u3002"} +{"id": "8002156", "video_name": "64d8214e-395f-5e67-9fc9-7a8ad680aaf3", "text": "\u6bcf\u4e2a\u4eba\u90fd\u5f00\u5fc3\u5730\u5fae\u7b11\u7740\uff0c\u5fbd\u7ae0\u7684\u7535\u6e90\u706f\u95ea\u70c1\u7740\u3002"} +{"id": "2007526", "video_name": "ef97b226-67b7-55ae-b8fb-f29ed7202c2a", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5411\u4e00\u7fa4\u5c0f\u7cbe\u7075\u795d\u8d3a\u5723\u8bde\u5feb\u4e50\u7684\u89c6\u9891\u3002"} +{"id": "1004724", "video_name": "57a2a325-0416-5a32-bc0a-6c4d694ebd78", "text": "\u7537\u6a21\u7279\u5728T\u578b\u53f0\u4e0a\u7a7f\u7740\u4e00\u5957\u590d\u53e4\u6b3e\u5f0f\u7684\u670d\u88c5\uff0c\u4e0a\u9762\u5370\u6709\u8001\u5f0f\u56fe\u6848\u3002"} +{"id": "4004406", "video_name": "28d312bb-ffc5-5f06-9a2b-41ae4c0c009c", "text": "\u7f8e\u5b66\u7f8e\u4e3d\u7684\u5916\u661f\u661f\u7403\uff0c\u7c89\u8272\u3001\u7ea2\u8272\u3001\u84dd\u8272\u3001\u9ec4\u8272\u3001\u9b54\u6cd5\u68ee\u6797\u3001\u591c\u7a7a\u3001\u95ea\u4eae\u7684\u8424\u706b"} +{"id": "3006513", "video_name": "257953dc-2720-571a-b7ff-f55003568996", "text": "\u8fd1\u89c6\u773c\u5973\u5b69\u6234\u7740\u9177\u70ab\u7684\u773c\u955c\u5750\u5728\u7535\u8111\u524d\uff0c\u671d\u7740\u955c\u5934\u8bb2\u8ff0\u8fea\u58eb\u5c3c\u98ce\u683c"} +{"id": "6002609", "video_name": "8adfc1a7-19c6-5ec2-83eb-2bec4748a3f5", "text": "\u4eba\u7fa4\u9ad8\u558a\u7740\u8981\u66f4\u591a\u7684\u6897\u3002"} +{"id": "0005676", "video_name": "1f1e9d75-bfa6-5917-b970-a7ba0722eab0", "text": "\u5b5f\u52a0\u62c9\u56fd\u7684\u653f\u6cbb\u96c6\u4f1a\uff0c\u5973\u603b\u7406\u53d1\u8868\u6f14\u8bb2\uff0c\u6570\u767e\u4e07\u4eba\u6b22\u547c\u96c0\u8dc3\u30024K\u771f\u5b9e\u3002"} +{"id": "0005487", "video_name": "1bb2d3ba-6103-5519-90be-913b91e1ac5e", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u706f\u5149\u548c\u5e7f\u544a\u724c\u7684\u8352\u51c9\u57ce\u5e02\u91cc\uff0c\u8d70\u7740\u4e00\u4e2a\u9aa8\u7626\u5982\u67f4\u7684\u9ab7\u9ac5\uff0c\u903c\u771f\u7684"} +{"id": "2004898", "video_name": "0015bf8f-e457-5f46-973d-8eaf26e3ba5d", "text": "\u79e6\u6dee\u6cb3\u7554\u6625\u6653\uff0c\u5904\u5904\u95fb\u557c\u9e1f\u3002\u591c\u6765\u98ce\u96e8\u58f0\uff0c\u82b1\u843d\u77e5\u591a\u5c11\u3002"} +{"id": "4002127", "video_name": "75e77514-ae2d-53fb-b3f4-eabc70432c70", "text": "\u5728\u74f7\u8336\u676f\u91cc\uff0c\u91d1\u9ec4\u8272\u7684\u53f6\u5b50\u5728\u95ea\u4eae\u7684\u6db2\u4f53\u4e2d\u65cb\u8f6c\u3002\n\nSource sentence: The sound of raindrops tapping against the window is soothing. \n\n\u96e8"} +{"id": "0006068", "video_name": "26110700-0509-59d2-ab1e-634019e574da", "text": "\u6ce2\u58eb\u987f\u7f57\u514b\u65af\u4f2f\u91cc\u4f4f\u5b85\u533a\u8857\u9053\u4e0a\u884c\u9a76\u7684\u6709\u8f68\u7535\u8f66\u3002"} +{"id": "8001544", "video_name": "3dd26f06-4584-5a25-9867-cf9f3b38574f", "text": "\u5979\u6b63\u5728\u524d\u9762\u8d70\u4ee5\u770b\u56fe\u4e66\u9986\u3002"} +{"id": "7002782", "video_name": "f847f39d-d0b0-5e15-9389-e36e040e51c0", "text": "\u5728\u591c\u7a7a\u4e2d\uff0c\u9ed1\u8272\u7684\u957f\u53d1\u50cf\u6ce2\u6d6a\u4e00\u6837\u98d8\u8361\uff0c\u7ec6\u957f\u6f02\u4eae\u7684\u52a8\u6f2b\u5973\u5b69\u5468\u56f4\u7684\u5377\u53d1\u968f\u98ce\u98d8"} +{"id": "1005362", "video_name": "62931b8a-4d8d-5193-b3b4-81f481d30466", "text": "\u5728\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u660f\u6697\u7684\u5c0f\u5df7\u91cc\uff0c\u6709\u4e00\u4f4d\u9ed1\u53d1\u7eff\u773c\u768420\u5c81\u5973\u5b69\u838e\u62c9\u5728\u9634\u5f71\u63a9"} +{"id": "2004509", "video_name": "6f1dc77b-266e-5a92-95d7-db0bb1b95a9f", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5750\u843d\u4e8e\u8d77\u4f0f\u5c71\u4e18\u548c\u873f\u8712\u6cb3\u6d41\u4e4b\u95f4\u7684\u5c0f\u57ce\u9547\u91cc\uff0c\u4f4f\u7740\u4e24\u4e2a\u7075\u9b42\uff0c\u4ed6\u4eec\u7684\u547d"} +{"id": "3003105", "video_name": "012835ae-b239-5baf-8dce-8b772c598f85", "text": "\u4e00\u540d\u51fa\u79df\u8f66\u53f8\u673a\u5728\u7ebd\u7ea6\u7684\u8857\u9053\u4e0a\u5f00\u7740\u4ed6\u7684\u51fa\u79df\u8f66\u3002"} +{"id": "2005082", "video_name": "cb30a689-419d-5dd9-acb3-9c7ce2383b34", "text": "\u9ad8\u6e05\u6670\u5ea6\u7684\u89c6\u9891\u3002\u5728\u516c\u4e3b\u5468\u56f4\u7684\u82b1\u56ed\u91cc\uff0c\u4e03\u4e2a\u5c0f\u5973\u5b69\u548c\u4e00\u4e2a\u738b\u5b50\u624b\u62c9\u624b\u56f4\u6210\u4e00\u4e2a\u5706\u5708\u8df3\u821e\u3002\u5728"} +{"id": "4002121", "video_name": "c974ddb4-0d3b-5b1e-bd18-6b8a86335aaa", "text": "\u4e00\u4e2a\u7ea2\u7eff\u76f8\u95f4\u7684\u821e\u6c60\u5723\u8bde\u6d3e\u5bf9\n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u98df\u54c1\u6742\u8d27\u3002"} +{"id": "1006928", "video_name": "7ea6fdb7-a8da-5020-941e-92bd4cb79eed", "text": "\u5b87\u5b99\u7a7a\u95f4\u5728\u5176\u6240\u6709\u7684\u4f1f\u5927\u4e2d"} +{"id": "6004780", "video_name": "77d6d740-f856-5944-964a-6a5dadb56440", "text": "\u5728\u53e4\u4ee3\u4e2d\u56fd\u7684\u6218\u573a\u4e0a\uff0c\u4e00\u4f4d\u82f1\u4fca\u7684\u5e74\u8f7b\u5c06\u519b\u8eab\u7740\u76d4\u7532\uff0c\u6b63\u5728\u4e0e\u654c\u4eba\u8fdb\u884c\u6fc0\u70c8\u7684\u6218\u6597\u3002\u573a"} +{"id": "1004428", "video_name": "51f10eb1-c41f-5cbc-a739-05d5a5c4ab5e", "text": "\u7537\u4eba\u7a7f\u7740\u5723\u8bde\u6bdb\u8863\uff0c\u5728\u7a7a\u767d\u80cc\u666f\u524d\u624b\u6301\u624b\u673a\u3002"} +{"id": "7002864", "video_name": "3650f564-eb52-5c75-9907-380c6da1a550", "text": "\u672a\u6765\u57ce\u5e02\u4e2d\u7684\u6218\u4e89\u516c\u6c11"} +{"id": "0006478", "video_name": "2d39b5d4-74a4-5dc8-ae13-4757c42baba2", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u800c\u5de8\u5927\u7684\u52a8\u753b\u57ce\u5821"} +{"id": "8003254", "video_name": "1ae55212-4ed5-5ae0-bb12-cda16b505a8a", "text": "\u6c34\u6676\u6d1e\u7a74 \u4fe1\u606f\uff1a\u4e54 (\u5b57\u4f53\uff1a\u590d\u53e4)"} +{"id": "8001225", "video_name": "f57955f6-4d17-56c8-be5f-2159d581c839", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u6cbf\u7740\u6d77\u6ee9\u8d70\uff0c\u7528\u4ed6\u7684\u624b\u628a\u91d1\u5e01\u6492\u5f00\u3002"} +{"id": "7002113", "video_name": "b52d9637-9e65-50c3-a788-aada80f2de13", "text": "\u521b\u4f5c\u4e00\u4e2a\u4ee4\u4eba\u5174\u594b\u7684\u77ed\u89c6\u9891\uff0c\u4ee5120 bpm\u7684\u6d41\u884c\u97f3\u4e50\u4e3a\u80cc\u666f\uff0c\u52a8\u753b\u5c55\u73b0\u4e00\u540d\u7537\u5b50\u8ddf\u968f\u8282\u62cd\u8df3\u821e"} +{"id": "8002798", "video_name": "b5e19483-8b9d-57cf-b1a9-0ed310fd39b4", "text": "\u4e00\u540d\u8bb0\u8005\u5728\u8857\u4e0a\u91c7\u8bbf\u4e00\u540d\u6e38\u884c\u8def\u4eba\u3002"} +{"id": "2003223", "video_name": "f7102d97-bcf3-5528-b50d-fc033a7d72ab", "text": "\u5c06\u4e00\u74f6\u4f0f\u7279\u52a0\u8f6c\u5316\u4e3a\u4e00\u74f6\u9999\u6c34\u3001\u96ea\u3001\u77f3\u5934\u3001\u6a61\u82d4\u3002 \n\nSource sentence: The internet has revolutionized the way we communicate and access information."} +{"id": "2006642", "video_name": "c9e6a114-0838-5ed3-97b6-01ae33124017", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u6551\u4e86\u4e00\u4e2a\u5973\u4eba\u4ece\u5927\u697c\u6389\u4e0b\u6765\u3002"} +{"id": "3005008", "video_name": "29d3dfe7-8f3f-5ff1-8fbf-be7d7bf6ab57", "text": "\u6708\u4eae\u6b63\u5728\u4e00\u7247\u7247\u5730\u5760\u843d\u5230\u5730\u7403\u4e0a\u3002"} +{"id": "3005589", "video_name": "ec892aa4-8aa7-5201-9828-5ee8548a8729", "text": "\u529e\u516c\u5ba4\u91cc\u7684\u5496\u5561\u673a\uff0c\u9633\u5149\uff0c\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "1003959", "video_name": "49202106-a376-5d75-b9fb-b2a4f4db1ed8", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u7537\u5b50\u5750\u5728\u4ed6\u7684\u529e\u516c\u5ba4\uff0c\u684c\u5b50\u4e0a\u653e\u7740\u7535\u8111\u3001\u6587\u4ef6\u548c\u4e66\u7c4d\u3002 \n\nSource sentence: I want to order a large pepperoni pizza"} +{"id": "4004139", "video_name": "ceb47c0e-132e-59bb-9ce7-f5ef832593f4", "text": "\u76f8\u673a\u653e\u5927\uff0c\u5316\u5b66\u53cd\u5e94\u80cc\u666f\uff0c\u9c9c\u8273\u7684\u989c\u8272\u3002\u4fe1\u606f\uff1aFLUORKI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6003231", "video_name": "9f4a78ff-5164-5a07-8d8c-427b4611449c", "text": "\u9762\u5bf9\u4f17\u591a\u9700\u8981\u7d27\u6025\u62a4\u7406\u7684\u75c5\u4eba\u3002"} +{"id": "1006433", "video_name": "75bbb41c-b550-586b-92a2-9afa33903bb2", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u8272\u5f69\u7684\u7f8e\u4e3d\u795e\u5947\u571f\u5730\uff0c\u4e2d\u95f4\u6709\u4e00\u4e2a\u5bb6\u3002"} +{"id": "2005864", "video_name": "89a564aa-b067-5135-989d-eb1f103e3795", "text": "\u6444\u50cf\u673a\u4ecb\u7ecd\u7f57\u838e\uff0c\u4e00\u53ea\u7f8e\u4e3d\u7684\u9e21\uff0c\u68a6\u60f3\u7740\u63a2\u7d22\u9e21\u820d\u5916\u7684\u4e16\u754c\u3002\u7f57\u838e\uff0c"} +{"id": "3003967", "video_name": "572dc6ed-1056-5b44-a6ee-d0d5ab44a35e", "text": "\u6211\u60f3\u8981\u4e00\u5f20\u5c0f\u864e\u8ffd\u9010\u8725\u8734\u7684\u5c0f\u732b\u7167\u7247\u3002"} +{"id": "3005643", "video_name": "cebcd153-321e-5c4e-aa21-5dc753eb97fe", "text": "\u4e00\u7fa4\u5145\u6ee1\u5192\u9669\u7cbe\u795e\u7684\u9752\u5c11\u5e74\u805a\u96c6\u5728\u95f9\u9b3c\u7684\u623f\u5b50\u5916\uff0c\u773c\u4e2d\u5145\u6ee1\u4e86\u597d\u5947\u300216:9"} +{"id": "1005573", "video_name": "669445ba-c1f7-5961-afb1-32910143e4dd", "text": "\u4e00\u53ea\u72d7\u5728\u5bab\u6bbf\u91cc\u5403\u4e00\u4e9b\u7279\u6b8a\u7684\u6c34\u679c\u3002"} +{"id": "2004365", "video_name": "daf15ebd-fea9-5247-87f8-37e42a157221", "text": "\u4ecb\u7ecdSam\uff0c\u4e00\u4e2a\u597d\u5947\u7684\u7537\u5b69\uff0c\u548cLily\uff0c\u4e00\u4e2a\u597d\u73a9\u7684\u5973\u5b69\uff0c\u4ed6\u4eec\u8fdb\u5165\u4e86\u68ee\u6797\u3002"} +{"id": "1003157", "video_name": "3a2c366b-75ce-5eae-a749-4016d5523835", "text": "\u5929\u6c14\u53d8\u4e86\u3002 \u9644\u4ef61\u3002"} +{"id": "2005397", "video_name": "d11ba5ea-b8c2-5886-bd16-0ef6d16f12eb", "text": "\u4e00\u53ea\u4e94\u5f69\u6591\u6593\u7684\u773c\u775b\u6162\u6162\u5730\u5f20\u5f00\u4e86\u3002"} +{"id": "2006571", "video_name": "08955d95-8969-5bda-ada5-d009078343d7", "text": "Translation: \u4eba\u4eec\u5728\u56f0\u5883\u4e2d\u8ff7\u5931\u7684\u573a\u666f\u53cd\u800c\u66f4\u591a\u3002"} +{"id": "0004170", "video_name": "047602c1-20f8-5541-b38c-d641c7a19a28", "text": "\u4e00\u6247\u60ac\u6d6e\u5728\u767d\u8272\u7a7a\u95f4\u4e2d\u7684\u95e8\u6253\u5f00\u4e86\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u4e30\u5bcc\u591a\u5f69\u7684\u4e16\u754c\u3002"} +{"id": "6003479", "video_name": "256e9141-3860-5eb3-adbb-c685e2f59aaf", "text": "\u4e00\u540d\u5973\u5b50\u5728\u6d74\u5ba4\u4f7f\u7528\u6bdb\u5dfe"} +{"id": "6002620", "video_name": "d6f3094e-7925-5bba-a85a-85fa6e945ddc", "text": "\u4e00\u7247\u6ee1\u662f\u6811\u6728\u7684\u68ee\u6797\uff0c\u5730\u4e0a\u843d\u6ee1\u67af\u53f6\uff0c\u8fd8\u6709\u4e00\u5806\u71c3\u70e7\u7684\u706b\u7130\u3002"} +{"id": "1004343", "video_name": "5021fe71-8b0a-505a-9595-c770d8ce82fd", "text": "\u5728\u8302\u5bc6\u7684\u53e2\u6797\u6df1\u8655\uff0c\u967d\u5149\u52aa\u529b\u7a7f\u900f\u6fc3\u5bc6\u7684\u6a39\u852d\uff0c\u4f4f\u8457\u4e00\u96bb\u5a01"} +{"id": "1004657", "video_name": "56aacd03-09dd-5eb5-99ec-95c9eebd6916", "text": "\u8d77\u98de\u65f6\u80fd\u591f\u8f6c\u5f2f\u7684\u98de\u8239"} +{"id": "2007602", "video_name": "3beb2e03-5515-5d8c-9311-5e51858a3a2e", "text": "\u4e1c\u65b9\u6ca1\u6709\u80e1\u987b\u7684\u7537\u5b50\u4ee5\u5df4\u683c\u8fbe\u98ce\u683c\u7ad9\u5728\u8336\u9986\u91cc\uff0c4K\u3002"} +{"id": "3003943", "video_name": "e3ada0f7-30bb-5e96-aab4-1e242da3b60b", "text": "\u72d7\u53eb\u5f97\u66f4\u5927\u58f0\u4e86\uff0c\u4f46\u56de\u58f0\u5374\u66f4\u52a0\u653e\u5927\u4e86\u3002"} +{"id": "2005879", "video_name": "b9581c4d-274b-5324-9143-c8674a941b33", "text": "\u5916\u661f\u4eba\u5728\u4e00\u4e2a\u5947\u602a\u7684\u661f\u7403\u4e0a\u521b\u9020\u4e86\u5408\u6210\u97f3\u4e50\u3002"} +{"id": "3003515", "video_name": "2ae74792-4b33-5bde-9e5f-c3b4d43c680e", "text": "\u535a\u58eb\u9762\u524d\u7684\u6ce2\u602a\u7269\u53d1\u51fa\u6b47\u65af\u5e95\u91cc\u7684\u7b11\u58f0\u3002"} +{"id": "1005541", "video_name": "65f585af-9326-5ee7-9a3f-379807ae72b9", "text": "\u6050\u6016\u57ce\u5821\uff0c\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u6df1\u6797\u4e2d\u7684\u5927\u95e8\u524d\uff0c\u795e\u79d8\u7684\u6c1b\u56f4\uff0c\u95ea\u7535\uff0c\u771f\u5b9e\u7684\u7167\u7247\uff0c\u9ad8\u6e05\u6670\u5ea6\u7684"} +{"id": "0005592", "video_name": "1d982010-dde3-5a9f-8a2d-432a3ea0f3d1", "text": "\u4e00\u5ea7\u6728\u5c4b\u5750\u843d\u5728\u68ee\u6797\u7684\u8fb9\u7f18\uff0c\u7a97\u6237\u900f\u51fa\u5fae\u5f31\u7684\u5149\u4eae\u3002\u5c4b\u5185\u4e00\u5bb6\u4eba\u56f4\u5750\u5728\u684c"} +{"id": "0006372", "video_name": "2b54f10f-150d-51a3-85d0-da35827dbf81", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u8461\u8404\u56ed\uff0c\u5f62\u72b6\u4e3aAutodesk\u7684\u6807\u5fd7\u3002"} +{"id": "4003415", "video_name": "26cc8486-cbe7-580e-b989-1135de74ab7d", "text": "\u52a8\u7269\u4e1b\u6797Kinnaree\u751f\u7269\u3002\u5b83\u7684\u8eab\u4f53\u90e8\u5206\u662f\u4eba\u7c7b\u7684\u3002\u5e95\u90e8\u662f\u4e00\u53ea\u9e1f\u548c\u4e00\u6761\u86c7\uff0c\u5e26\u7740\u7fc5"} +{"id": "1005458", "video_name": "644cc16b-e413-507b-97d2-0b497225614a", "text": "\u4e00\u5bb6\u94f6\u884c\u7684\u6b63\u9762\u89c6\u56fe\uff0c\u6709\u4e9b\u4eba\u6b63\u5728\u8fdb\u51fa\u94f6\u884c\u3002"} +{"id": "4004228", "video_name": "f633b9b3-cea4-576d-87b8-64bcce0ec755", "text": "\u5728\u5ba4\u5185\u5b66\u4e60\uff0c\u591c\u665a\u4e0b\u96e8\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u6e29\u6696\u7684\u611f\u89c9\u3002"} +{"id": "2006664", "video_name": "ecf476ca-fc99-500a-bb89-8b32cf27ca83", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u800c\u5929\u771f\u65e0\u90aa\u7684\u516c\u4e3b\u5f62\u8c61\uff0c\u5979\u767d\u7699\u7684\u808c\u80a4\u7a7f\u7740\u4f18\u96c5\u7684\u5370\u5ea6\u7687\u5bb6\u670d\u9970\uff0c\u5750"} +{"id": "2003113", "video_name": "b6c792d6-4231-5c73-8dd8-446ea60e5dd3", "text": "\u673a\u5668\u4eba\u6253\u5f00\u95e8\uff0c\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "7004041", "video_name": "9ca1f6e1-2482-542a-8c9e-a92b0c162cf4", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u7ea2\u5934\u53d1\u6234\u773c\u955c\u7684\u4eba\u5728\u6a31\u82b1\u6811\u4e0b\u8bfb\u4e66\uff0c\u5728\u5c0f\u6ce2\u6d6a\u7684\u6d77\u6ee9\u524d\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "6003159", "video_name": "43db19eb-564a-512c-9f50-01dbc64f9b42", "text": "\u8fd9\u4e2a\u4eba\u5f88\u9ad8\u5174\u5730\u770b\u5230\u4e86\u7334\u5b50\u3002"} +{"id": "0006253", "video_name": "2958c07c-2961-5451-9acd-aa11120f4919", "text": "\u5361\u901a\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u4e00\u573a\u6fc0\u70c8\u7684\u6bd4\u8d5b\u4e2d\u8bd5\u56fe\u8fdb\u7403\uff0c\u4f46\u672a\u80fd\u5f97\u5206\uff0c\u7136\u540e\u5931\u671b\u5730\u8d70\u5f00\u4e86\u3002"} +{"id": "2004936", "video_name": "cc5522f7-9e70-5b16-a9a1-f696b753ab29", "text": "\u5e0c\u814a\u7f8e\u4e3d\u5973\u795e\u5728\u96c5\u5178\u5c55\u793a\u5979\u7684\u5168\u90e8\u8363\u8000\u3002"} +{"id": "1004791", "video_name": "587bee71-ed1a-5011-a7f4-4b716fb12f58", "text": "\u4e00\u4f4d\u7f8e\u4eba\u9c7c\u653e\u4e0b\u4e00\u56e2\u7ea2\u8272\u9c7c\u5375\u4e91\u5e76\u5728\u6d77\u5e95\u6c89\u6dc0\u3002"} +{"id": "8003525", "video_name": "73bb2bd8-ae34-55cb-9688-f507c6314b69", "text": "\u4fdd\u6301\u56fe\u50cf\u5728\u80cc\u666f\u4e2d\u9759\u6b62\u3002\u52a8\u753b\u4e0d\u5e94\u6539\u53d8\u6216\u6dfb\u52a0\u539f\u59cb\u573a\u666f\u4e2d\u7684\u4efb\u4f55\u5143\u7d20\u3002"} +{"id": "6004321", "video_name": "9bec964f-738d-5cc0-a022-c1b2930cf5e6", "text": "\u5728\u4f18\u8d3e\u56e0\u5e73\u9759\u7684\u73af\u5883\u4e2d\u521b\u9020\u4e00\u4e2a\u5e74\u8f7b\u7684\u514b\u91cc\u5e0c\u7eb3\u4e4b\u50cf\uff0c\u4ed6\u6765\u6b64\u63a5\u53d7\u6559\u80b2\u3002\u63cf\u7ed8\u5b81\u9759"} +{"id": "2005880", "video_name": "5681256e-8633-5795-b243-c5e83aaa2ab8", "text": "\u7cbe\u7075\u79d1\u5b66\u5bb6\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u5e76\u5403\u4e86\u4e00\u5206\u949f\u7684\u8611\u83c7\u3002"} +{"id": "3006903", "video_name": "2ed46594-d648-5fdc-8e2d-1ba7e9985f30", "text": "\u4ed6\u7ad9\u8d77\u6765\uff0c\u6708\u5149\u7167\u8000\u7740\u3002"} +{"id": "3004610", "video_name": "0b08d1c5-b176-5a74-816c-a88ef98456e0", "text": "\u5723\u8bde\u6811\u548c\u9ed1\u76d2\u793c\u7269\u3002"} +{"id": "1003432", "video_name": "3f64c1e1-27c8-5674-8d74-cdafa3e17323", "text": "\u6ce2\u6d6a\u3001\u706f\u5854\u3001\u5929\u7a7a\u4e2d\u7684\u4e91\u5f69\u3001\u767d\u5e06\u4e0b\u7684\u6e38\u8247\u3002"} +{"id": "1005538", "video_name": "65e68241-aad5-5940-9f03-6541b1735b3e", "text": "\u672b\u65e5\u5ba1\u5224\u7684\u5f62\u8c61\u5728\u51e0\u7ae0\u4e2d\u5448\u73b0\uff0c\u8868\u660e\u4e49\u4eba\u548c\u6076\u4eba\u7684\u5206\u79bb\u3002apocalypse.8k\u5168\u9ad8\u6e05\u3002"} +{"id": "1006746", "video_name": "7b75706b-4078-57e7-8480-db63db60de95", "text": "\u4e00\u4e2a\u4eba\u5728\u519b\u961f\u524d\u9762\u50cf\u4e2a\u8001\u677f\u4e00\u6837\u8d70\u8def\uff0c\u8fb9\u542c\u97f3\u4e50\u3002"} +{"id": "2007676", "video_name": "c9b9265e-ba06-55ec-90ec-a19738ce5748", "text": "\u5973\u5b69\u8eba\u5728\u8349\u5730\u4e0a\u4eab\u53d7\u9633\u5149\uff0c\u9644\u8fd1\u6709\u4e00\u672c\u7eff\u9053\u76ee\u5f55\u3002"} +{"id": "0004966", "video_name": "126d18ee-2de3-5d26-9ec5-7309f8a70550", "text": "\u4e00\u53ea\u5de8\u578b\u72ac\u5411\u6811\u5954\u8dd1\uff0c\u653b\u51fb\u5de8\u4eba\u7684\u98ce\u683c"} +{"id": "0004656", "video_name": "0cc1f64d-f020-5306-9f43-351014177336", "text": "\u975e\u5e38\u975e\u5e38\u5feb\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u6765\u81ea\u79d8\u9c81\u7684\u5de5\u5320\u72ec\u81ea\u7a7f\u8d8a\u5c71\u8109\u7684\u6545\u4e8b\u3002"} +{"id": "4004125", "video_name": "71585d0f-2d4c-57f2-9048-c736deddeecc", "text": "\u5f3a\u98ce\uff0c\u8239\u6b63\u5728\u822a\u884c\uff0c\u9633\u5149\u7167\u5c04\u5728\u6d77\u9762\u4e0a\uff0c\u98d8\u626c\u7684\u65d7\u5e1c\uff0c\u6d77\u9e25\u76d8\u65cb\uff0c4K\uff0c3D\u3002"} +{"id": "7002219", "video_name": "346c30f9-db79-5fe7-98d7-e33034744e59", "text": "\u4e00\u4e2a\u96e8\u591c\uff0c\u684c\u5b50\u4e0a\u653e\u7740\u4e00\u676f\u6ee1\u6ee1\u7684\u5a01\u58eb\u5fcc\uff0c\u900f\u8fc7\u7a97\u5916\u53ef\u4ee5\u770b\u5230\u666f\u8272\u3002"} +{"id": "0004641", "video_name": "0c7ea528-5bfe-532a-a392-d0ef498e0552", "text": "\u4e00\u540d\u7537\u5b50\u843d\u5165\u5ca9\u6d46\u4e2d\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u5728Artstation\u4e0a\u6d41\u884c\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6770\u4f5c\uff0c8K\u3002"} +{"id": "7004863", "video_name": "3a90f9a1-1816-54e4-be20-3c925f9e4ee7", "text": "\u4e00\u6b21\u653e\u5927\uff0c\u5c06\u4e00\u4e2a\u5973\u4eba\u5728\u68ee\u6797\u4e2d\u7684\u84dd\u8272\u773c\u775b\u7279\u5199\uff0c\u7136\u540e\u5979\u95ed\u4e0a\u4e86\u773c\u775b\u3002"} +{"id": "6002784", "video_name": "82155322-5543-5647-9115-50015b11a76d", "text": "\u7280\u725b\u5728\u96e8\u4e2d\u884c\u8d70\uff0c\u7535\u5f71\u822c\u7684\uff0c\u7167\u7247\u822c\u903c\u771f\u7684\uff0c8K\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "0005920", "video_name": "233e2d60-dd57-578a-b84b-69123ca9cd9f", "text": "\u5728AI\u4e16\u754c\u4e2d\uff0c\u4e00\u4e2a\u7537\u6027\u5192\u9669\u5bb6\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u7535\u5f71\u7167\u7247\uff0c\u4f7f\u7528\u4e86Octane\u6e32\u67d3\uff0c\u8d28\u91cf\u5f88\u9ad8\u3002"} +{"id": "0006205", "video_name": "285a4f6d-db23-517f-9e40-a00b5e848ef9", "text": "\u5c0f\u63a2\u9669\u5bb6\u9047\u5230\u4e86\u4e00\u6761\u5bbd\u9614\u3001\u7ffb\u6eda\u6f8e\u6e43\u7684\u6cb3\u6d41\u3002"} +{"id": "1006409", "video_name": "75627ad0-d2f8-53fe-85f9-2905c2d8bf4d", "text": "\u58ee\u4e3d\u7684\u4e61\u6751\uff0c\u7f8e\u4e3d\u7684\u7530\u91ce\u95ea\u8000\u7740\u5149\u8292\uff0c\u6708\u4eae\u7684\u7f8e\u666f\u5c3d\u6536\u773c\u5e95\u3002"} +{"id": "1005806", "video_name": "6ac8e798-cc47-5ac1-9891-1056c20249a3", "text": "\u97f3\u4e50\u5236\u4f5c\u4eba\u5728\u623f\u95f4\u91cc\u5236\u4f5c\u7740\u5177\u6709\u7a7a\u7075\u548c\u672a\u6765\u611f\u7684\u8282\u62cd\uff0c\u7a97\u5916\u662f\u4e00\u5ea7 futurist \u7684\u57ce\u5e02\u3002"} +{"id": "6003353", "video_name": "497073b0-c6db-569d-b780-be274ced8300", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u660f\u6697\u7684\u623f\u95f4\u91cc\u5077\u4e86\u94b1\u3002"} +{"id": "8002638", "video_name": "4d5a79a0-d424-5d15-a560-30ea8737e6e8", "text": "\u8d85\u7ea7\u82f1\u96c4\u6d77\u738b\u7a7f\u7740\u6f5c\u6c34\u955c\u548c\u6cf3\u88e4 4K\u3002"} +{"id": "8002142", "video_name": "5ba7d3fa-38b8-5f0e-bcd8-75534b51314f", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u63cf\u7ed8\u4e00\u4e2a\u7c7b\u4f3c\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7684\u4eba\u7269\u7a7f\u7740\u592a\u7a7a\u670d\u7a7f\u8d8a\u592a\u7a7a\u7684\u5f62\u8c61\u3002\u805a"} +{"id": "4003873", "video_name": "a3e3bb34-72b2-594f-a9a2-71cf0058c7fe", "text": "\u8349\u539f\u4e0a\u8001\u9e70\u548c\u8001\u9f20\u6253\u6597\u3002"} +{"id": "6004721", "video_name": "a730a462-3361-5745-b89e-4fb7754aa04a", "text": "01) \u5728\u897f\u85cf\u7684\u9ad8\u5c71\u4e0a\uff0c\u85cf\u7740\u8bb8\u591a\u53e4\u8001\u7684\u5bfa\u5e99\uff0c\u5176\u4e2d\u4f4f\u7740\u4e00\u4f4d\u5c0a\u656c\u7684\u85cf\u4f20\u4f5b\u6559\u5927\u5e08\u540d\u53eb"} +{"id": "6002252", "video_name": "162e64a3-09dc-59fa-9fd8-e2057faa8df1", "text": "\u4e00\u4e2a\u7ea630\u79d2\u957f\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e00\u4e2a\u6b66\u58eb\u7a7f\u8d8a\u672a\u6765\u57ce\u5e02\u5954\u8dd1\uff0c\u624b\u6301\u5200\u5411\u5929\u4e3e\u8d77\u3002"} +{"id": "2007048", "video_name": "572d65ba-bca0-5053-bc0e-50e3733827e3", "text": "\u4e00\u4e2a\u90aa\u6076\u7684\u72d7\u5728\u5c0f\u5df7\u91cc\u8d70\u7740\u3002"} +{"id": "7004689", "video_name": "b3729681-0b22-5cec-92ae-536775814f19", "text": "\u4e00\u5ea7\u5355\u5c42\u522b\u5885\u88ab\u7167\u4eae\uff0c\u800c\u80cc\u666f\u4ece\u508d\u665a\u5230\u591c\u665a\u8fc5\u901f\u8f6c\u53d8\u3002"} +{"id": "6002600", "video_name": "0d56e631-a0ec-55e3-86c6-57469a948742", "text": "\u4e00\u4e2a\u4eba\u4ece\u5927\u56fe\u4e66\u9986\u53d6\u4e00\u672c\u4e66\u3002"} +{"id": "8001347", "video_name": "abca3857-f2a9-5eda-b881-38b6ab279c1f", "text": "\u81f4\u547d\u6253\u64ca\u904a\u6232\u4e2d\u7684\u9752\u86d9\uff0c\u903c\u771f\u76843D\u6a21\u578b\uff0c\u865b\u5e7b\u5f15\u64ce\uff0c\u903c\u771f\u7684\u6a21\u578b\uff0c\u5c08\u696d\u7167"} +{"id": "2005995", "video_name": "ebc3251e-ce0e-584a-8208-3cf3ca1bb374", "text": "\u5728\u884c\u661f\u4e0a\u65b9\uff0c\u5927\u578b\u592a\u7a7a\u6218\u8230\u5c55\u5f00\u6218\u6597\uff0c\u540c\u65f6\u80cc\u666f\u4e2d\u8fd8\u6709\u661f\u9645\u6218\u6597\u673a\u8fdb\u884c\u7a7a\u6218\u3002"} +{"id": "3003194", "video_name": "17157cd1-a2f9-5efe-9fb9-40109d208615", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\uff0c\u4fa7\u9762\uff0c\u773c\u795e\u9510\u5229\uff0c\u6234\u7740\u5e3d\u5b50\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u96fe\u6c14\u8499\u8499\u7684"} +{"id": "8003260", "video_name": "031a195f-9570-5c32-8049-9f7d1756552a", "text": "\u4f60\u8ba4\u4e3a\u4f60\u957f\u5f97\u50cf\u4ec0\u4e48\uff1f"} +{"id": "8003345", "video_name": "0c582976-b5a2-5543-b6e5-2ed630a7e96d", "text": "\u5728\u6811\u6797\u91cc\uff0c\u4e00\u4e2a\u80cc\u7740\u80cc\u5305\u7684\u5973\u5b69\u8dea\u5728\u5c0f\u6eaa\u8fb9\u3002\u80cc\u666f\u662f\u96ea\u5c71\u3002\u7f8e\u4e3d\u7684\u9e1f\u513f\u5728\u5468\u56f4"} +{"id": "2007616", "video_name": "437e2806-ac82-5a29-95d4-df5fcbf25378", "text": "\u4e00\u5ea7\u5de8\u5927\u7684\u96d5\u50cf\uff0c\u957f\u6ee1\u4e86\u85e4\u8513\u548c\u8150\u673d\uff0c\u7535\u5f71\u7ea7\u522b\u76848K\u8d85\u903c\u771f\u3002"} +{"id": "1003643", "video_name": "43247f05-0119-50bc-8e33-2d906d4cd82a", "text": "\u5c3d\u7ba1\u6311\u6218\u548c\u9ed1\u6697\u53ef\u80fd\u4f1a\u518d\u6b21\u51fa\u73b0\uff0c\u4f46\u953b\u9020\u7684\u7ebd\u5e26\u548c\u5b66\u5230\u7684\u6559\u8bad\u63d0\u9192\u6211\u4eec\uff0c\u52c7\u6c14\u3001\u540c\u60c5\u548c"} +{"id": "0003321", "video_name": "3b9d4d45-b25e-5872-856d-b473dd8082a6", "text": "\u6e90\u53e5\uff1a\u7528\u5f69\u8679\u8272\u6253\u602a\u517d\u54e5\u65af\u62c9\u7684\u201c\u65e0\u654c\u7834\u574f\u738b\u201d\n\n\u7ffb\u8bd1\uff1a\u5f69\u8679\u8272\u7684\u201c\u65e0\u654c"} +{"id": "3003069", "video_name": "b9250136-52a3-59c7-a174-ae1cb6eca48b", "text": "\u4e00\u4e2a\u8df3\u4f1e\u8005\u4ece\u4e00\u67b6\u7ea2\u8272\u7684\u98de\u673a\u4e0a\u8df3\u5230\u5929\u7a7a\uff0c\u8df3\u4f1e\u8005\u7684\u8863\u670d\u662f\u7eff\u8272\u7684\uff0c\u5929\u7a7a\u662f\u6674\u6717\u7684\u3002"} +{"id": "8002424", "video_name": "cba7e243-d38a-538b-b059-62e0523d186f", "text": "\u9ed1\u6697\u7684\u89c6\u9891\u62cd\u6444\u5728\u5c55\u89c8\u4e2d\u3002"} +{"id": "1003885", "video_name": "47a6ce14-5d4e-5ab0-bb5c-3f55dc15fa07", "text": "\u57c3\u585e\u4fc4\u6bd4\u4e9a\u9996\u90fd\u4e9a\u7684\u65af\u4e9a\u8d1d\u5df4\u5145\u6ee1\u6d3b\u529b\u7684\u8857\u9053\u3002"} +{"id": "4003165", "video_name": "5592e9ca-9669-56bb-8b1c-5cfd39da2097", "text": "\u60f3\u8c61\u7ad9\u5728\u6d77\u5cb8\u8fb9\uff0c\u5f53\u7b2c\u4e00\u7f15\u9633\u5149\u6253\u7834\u5730\u5e73\u7ebf\uff0c\u628a\u91d1\u8272\u7684\u8272\u8c03\u6295\u5c04\u5728\u5e73\u9759\u95ea\u8000\u7684\u6c34\u9762\u4e0a\u3002"} +{"id": "2007319", "video_name": "0d3b9b14-dc52-5bc4-a285-e3f72c982567", "text": "\u5200\u8eab\u4e0a\u5e26\u7740\u84dd\u9ed1\u8272\u7684\u706b\u7130\uff0c\u60ac\u6d6e\u5728\u7a7a\u4e2d\uff0c\u5468\u56f4\u6563\u53d1\u7740\u706b\u7130\uff0c\u71c3\u70e7\u7740\u9aa8\u5934"} +{"id": "8003344", "video_name": "b43d956c-da04-52af-a613-04dd20a89748", "text": "\u4e8b\u5b9e1\u7684\u89c6\u9891\u8bb0\u5f55\u3002"} +{"id": "7003475", "video_name": "5898ef11-3993-5a20-9c4c-9fc6284de0c4", "text": "\u5236\u4f5c\u4e00\u90e8\u5409\u535c\u529b\u98ce\u683c\u7684\u52a8\u753b\uff0c\u5c55\u73b0\u53ef\u7231\u602a\u517d\u52a8\u7269\u7684\u53ef\u7231\u8868\u60c5\u3002"} +{"id": "4003761", "video_name": "414cb8b2-407c-52f6-99ab-304daae706b7", "text": "\u59dc\u8272\u7684\u732b\u5728\u8fdb\u884c\u4e00\u573a\u56fd\u9645\u8db3\u7403\u6bd4\u8d5b\uff0c\u505a\u51fa\u4e86\u4e00\u4e2a\u5012\u6302\u91d1\u94a9\uff0c\u6253\u5165\u4e00\u7403\u3002"} +{"id": "6004634", "video_name": "7deb184b-1cfd-563a-b200-2521518d8443", "text": "\u4e00\u5bb6\u878d\u5408\u4e86\u79d8\u9c81\u6587\u5316\u5143\u7d20\u7684\u6587\u5316\u9152\u5427\u5f00\u4e1a\u4e86\uff0c\u63d0\u4f9b\u79d8\u9c81\u7f8e\u98df\u3001\u4f11\u95f2\u533a\u548c\u9ed1\u80f6\u5531"} +{"id": "0003531", "video_name": "3f0dedc7-0ff9-55fe-9bdc-613487037860", "text": "\u5c0f\u6e05\u65b0\u76ae\u514b\u65af\u98ce\u683c\u7684\u5d1b\u8d77\u3002\u4fe1\u606f\uff1a\u82f1\u96c4\u7684\u8bde\u751f\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6003377", "video_name": "dd86b45c-1746-5997-90e4-5c155a894acf", "text": "\u4fc4\u7f57\u65af\u603b\u7edf\u6b63\u5728\u4e0e\u7f8e\u56fd\u603b\u7edf\u5bf9\u6297\u3002"} +{"id": "8002309", "video_name": "bee816a1-c5ed-554a-8be3-44ff022d40e4", "text": "\u4e00\u7ec4\u5168\u957f\u65f6\u5c1a\u62cd\u6444\u3002\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u6a21\u7279\u7a7f\u7740\u5e26\u6709\u8d5b\u535a\u670b\u514b\u87ba\u65cb\u6c1b\u56f4\u7684\u5371\u9669"} +{"id": "2004623", "video_name": "75be7c2b-ce83-596d-9ef5-869b3af1f8cf", "text": "\u7ebd\u7ea6\u5e02\uff0c\u4e09\u5341\u5e74\u4ee3\u521d\uff0c\u5199\u5b9e\uff0c\u9ed1\u767d"} +{"id": "8002377", "video_name": "f4b5c5f4-c2ee-5a20-8279-d37922bdc600", "text": "\u4eba\u7684\u624b\u6307\u4ea4\u53c9\uff0c\u7136\u540e\u62cd\u638c\u3002"} +{"id": "4004714", "video_name": "a66301ff-dd77-5f15-b82a-0a70e23fd9ea", "text": "\u684c\u9762\u89c6\u56fe\u663e\u793a\u5404\u79cd\u56fe\u6807\u548c\u6587\u4ef6\u5939\u3002"} +{"id": "7003585", "video_name": "dac0608b-3a0b-56d2-bdbd-fc8902110659", "text": "\u6821\u8f66\u4e0a\u7684\u96e8\u5237\u6b63\u5728\u663e\u793a\u79fb\u52a8\u7f29\u653e\u3002"} +{"id": "2003377", "video_name": "634758af-9a28-555f-9b17-c36a5e9b0eda", "text": "\u51b0\u51bb\u57ce\u5e02\u7684\u666f\u8272\u5728\u5730\u5e73\u7ebf\u4e0a\u3002"} +{"id": "3004952", "video_name": "958ea68f-eddf-5948-83ec-7957a4d44ef7", "text": "\u9ed1\u6697\u4e2d\u9965\u997f\u7684\u963f\u6208\u91cc\u9ab7\u9ac5\u4eba\u7269\u88ab\u70df\u96fe\u5305\u56f4\u76844k\u6e38\u620f\u52a8\u753b\u3002"} +{"id": "1005245", "video_name": "6082a386-d11d-5d22-93be-b51fe77ae6ed", "text": "\u4ece\u4e0b\u4e00\u5f20\u56fe\u50cf\u4e2d\u751f\u6210\u65e0\u9650\u7f29\u653e\u6548\u679c\uff0c\u7136\u540e\u521b\u5efa\u5e76\u6dfb\u52a0\u53e6\u4e00\u5f20\u56fe\u50cf\u3002"} +{"id": "8002510", "video_name": "564ab2ff-5ad9-5302-b4f2-e7a562383b86", "text": "\u4e00\u4f4d\u8d2b\u7a77\u7684\u5973\u4eba\u7167\u987e\u7740\u7f8a\u3002"} +{"id": "0006843", "video_name": "3419b834-b1fb-51f5-a22c-31838123490b", "text": "\u4e00\u6bb51970\u5e74\u4ee3\u7684\u97f3\u4e50\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u5de8\u5927\u7684\u9e66\u9e49\u5728\u4e00\u4e2a\u88ab\u706f\u5149\u7167\u4eae\u7684\u8fea\u65af\u79d1\u821e\u6c60\u4e0a"} +{"id": "1006585", "video_name": "78a45f7a-edbf-5161-bb76-e33a662b5eef", "text": "\u591c\u7a7a\u4e2d\u98de\u7fd4\u7684\u8001\u4eba"} +{"id": "8002103", "video_name": "efd25554-0ad0-5fd1-ac70-e69e3375fb05", "text": "\u5c9b\u4e0a\u4e0b\u7740\u5927\u96e8\uff0c\u591c\u665a\u95ea\u7535\u96f7\u58f0\u4e0d\u65ad\u3002"} +{"id": "1003904", "video_name": "48083d86-e857-53ef-81d5-19236b018182", "text": "\u7d2b\u8272\u5149\u73af\u50cf\u706b\u7130\u4e00\u6837\u79fb\u52a8\uff0c\u80cc\u666f\u662f\u7eff\u8272\u7684\u5c4f\u5e55\u3002"} +{"id": "3003989", "video_name": "c400c4c0-0556-54d2-8e3f-553c82b281aa", "text": "\u8349\u5730\u4e0a\uff0c\u7eaf\u51c0\u7684\u6c1b\u56f4\uff0c\u9633\u5149\u666e\u7167\uff0c\u82b1\u513f\u5f00\u653e\uff0c\u751f\u547d\u3002"} +{"id": "7004450", "video_name": "a6da600f-c7e2-51c4-90ea-f7a429ec9fe0", "text": "\u4e24\u4e2a\u6e05\u6670\u7684\u8f6e\u5ed3\uff0c\u4e00\u4e2a\u662f\u88ab\u89c6\u4e3a\u5b69\u5b50\u4e3b\u4eba\u7684\u6e05\u6670\u8f6e\u5ed3\u3002"} +{"id": "1004288", "video_name": "4f5ab27d-c0b1-5170-beae-fccbf2a5a05c", "text": "\u5b69\u5b50\u7684\u624b\u7684\u89c6\u89d2\uff0c\u4e09\u7ef4\u5411\u91cf\uff0c\u6d17\u624b\uff0c\u5e94\u8be5\u770b\u5230\u4e24\u53ea\u624b\uff0c\u5b69\u5b50\u6b63\u5728\u6d17\u624b\uff0c\u653e\u5728\u6d17\u8138\u76c6\u4e0b\uff0c\u6211\u4e0d\u60f3"} +{"id": "8003009", "video_name": "ad178d85-fdb7-5dd0-a278-0064982c6616", "text": "2D\u50cf\u7d20\u827a\u672f\uff0c\u6e29\u99a8\u5496\u5561\u9986\u7684\u590f\u65e5\u4e4b\u591c\u3002"} +{"id": "3005958", "video_name": "71d1639a-71fb-56ad-869a-f245cdc3028b", "text": "\u4e00\u8f6e\u5b64\u72ec\u7684\u6708\u4eae\u5728\u9ec4\u660f\u6d77\u6d0b\u4e0a\u95ea\u8000\u3002"} +{"id": "0004587", "video_name": "0b9df64a-4e68-5a9c-9eec-9d018f2b3f17", "text": "\u6211\u7684\u4e16\u754c\u52a8\u7269\u8df3\u821e\u8df3\u8dc3\u6253\u6597\u9999\u8549\u592a\u7a7a\u86cb\u5976\u725b\u732b\u3002"} +{"id": "2004525", "video_name": "73bdb4a3-77c7-59c9-a2e7-4abd7491c3ce", "text": "\u4e00\u53ea\u98de\u7fd4\u7684\u5251\u9f7f\u864e\u8774\u8776\uff0c\u82b1\u6735\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "8002041", "video_name": "58922398-903b-5a48-86a5-7bcdcfeda20b", "text": "\u95ea\u7535\u3001\u96e8\u6c34\u3001\u86c7\u548c\u732b\u7684\u8eab\u4f53\u8fd0\u52a8\u548c\u95ed\u773c\u52a8\u4f5c\u3002"} +{"id": "8001235", "video_name": "b1c48549-6e30-5c15-a402-4ff7c658c5c7", "text": "\u4eba\u7fa4\u60ca\u614c\u5954\u8dd1\uff0c\u9ed1\u6697\u80cc\u666f\u4e0b\u6709\u620f\u5267\u6027\u7684\u5149\u7ebf\u3002"} +{"id": "6002861", "video_name": "402e8fa2-4219-53d5-9600-61fc49e37463", "text": "\u8d85\u4eba\u5728\u591a\u4f26\u591a\u5854\u65e5\u51fa\u65f6\u9ad8\u901f\u98de\u884c\uff0c\u98de\u673a\u5728\u5468\u56f4\u98de\u884c\uff0c\u4e91\u5f69\u79fb\u52a8\uff0c\u62cd\u6444\u4e86\u8d85\u8fc7\u65f6\u95f4\u7684\u9ad8\u901f\u6444\u5f71"} +{"id": "6004660", "video_name": "e9bf0e6a-89d6-55ee-89a6-abf4c888ef33", "text": "\u5973\u4eba\u5728\u8212\u9002\u7684\u540a\u5e8a\u4e0a\u5de5\u4f5c\u3002"} +{"id": "1003388", "video_name": "3e6ff9ef-c43b-50b8-98ef-96860a0d198a", "text": "\u4f7f\u7528\u97f3\u4e50\u6216\u97f3\u6548\u6765\u8868\u8fbe\u7eb3\u5df4\u5c14\u4e0e\u52a8\u7269\u4e4b\u95f4\u5efa\u7acb\u7684\u8054\u7cfb\u3002"} +{"id": "0003338", "video_name": "3be7e4a9-29da-599d-89a7-5f602f9918af", "text": "\u6b66\u672f\u8fde\u5e3d\u886b\u3001T\u6064\u3001\u9ad8\u7ea7\u98ce\u683c \u4fe1\u606f\uff1aGimauet (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "8002364", "video_name": "40eb6ed6-c7f3-5b8d-9b5d-6053cbd06fda", "text": "\u53e4\u8001\u7684\u4eba\u6b63\u5728\u7530\u5730\u91cc\u5de5\u4f5c\u3002"} +{"id": "3003631", "video_name": "e2bf2097-4197-5efb-a661-8fd39c297b88", "text": "2003\u5e74\u96ea\u94c1\u9f99Xsara Picasso\u5728\u62c9\u529b\u8d5b\u4e0a\u6f02\u79fb\u3002"} +{"id": "7002723", "video_name": "f39acbe1-7a8d-56cc-9fc6-c7e48ae2dbda", "text": "\u4e00\u4f4d\u89c2\u8d4f\u65e5\u51fa\u3001\u81ea\u7136\u666f\u89c2\u548c\u7011\u5e03\u7684\u4eba\uff0c\u901a\u8fc7\u7f29\u653e\u3001\u5e73\u79fb\u7b49\u771f\u5b9e\u77e2\u91cf\u56fe\u65b9\u5f0f\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "2007426", "video_name": "2dae0209-d700-5dfb-af44-485c8767956f", "text": "\u4e00\u4e2a\u53e4\u5df4\u7537\u5b50\u5728\u82b1\u56ed\u91cc\u91c7\u6458\u9c9c\u82b1\u3002"} +{"id": "0003068", "video_name": "3661ad96-7cdb-5ab0-a0e6-ec0fe76c2527", "text": "\u4e00\u5e45\u53e4\u8001\u7684\u63d2\u753b\uff0c\u63cf\u7ed8\u4e86\u5766\u535a\u62c9\u706b\u5c71\u55b7\u53d1\u65f6\uff0c\u55b7\u51fa\u7070\u70ec\u548c\u70df\u96fe\u51b2\u5929\u7684\u573a\u666f\u3002"} +{"id": "3004219", "video_name": "af8a052c-edc2-57a2-a405-4b0e2bff6d12", "text": "\u9ed1\u53d1\u5973\u5b69\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u5468\u56f4\u5f25\u6f2b\u7740\u7ea2\u8272\u7684\u96fe\u6c14\uff0c4K \u8d85\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "8003746", "video_name": "d4afeace-eba5-59f2-975c-550d6dbeb6ee", "text": "\u6d1e\u89c1\uff0c\u4eba\u7c7b\u7075\u9b42\u900f\u8fc7\u4e00\u5757\u5927\u800c\u6e05\u6670\u7684\u6c34\u6676\u3002"} +{"id": "0005081", "video_name": "1469d20d-9d54-5f42-b6f3-bad01774b309", "text": "\u4e00\u500b\u64c1\u6709\u5927\u800c\u9583\u720d\u7684\u773c\u775b\u548c\u9583\u4eae\u76ae\u819a\u7684\u5916\u661f\u4eba\uff0c\u5728\u4ed6\u7684\u592a\u7a7a\u8239\u8457\u9678\u5730\u7403\u6642\u9032"} +{"id": "4003442", "video_name": "b2c9ae54-4efa-570f-8af6-a43a54a08c4f", "text": "\u5c0f\u4e2d\u570b\u7684\u6cbc\u6fa4\u9ebb\u7169\u548c\u72c2\u98a8\u3002"} +{"id": "3005885", "video_name": "ff45ab82-1227-5abd-82e8-d35c71706419", "text": "\u6d77\u9f9f\u5728\u4f53\u80b2\u573a\u8e22\u8db3\u7403\u7684\u7167\u7247\u3002"} +{"id": "2004388", "video_name": "33df6948-d612-5b6b-8365-902a9fce3432", "text": "\u4e00\u4e2a\u5b8c\u6574\u7684\u73af\u5f62\u6d77\u6d0b\u4e16\u754c\u7684\u592a\u7a7a\u89c6\u56fe\uff0c\u6ca1\u6709\u5730\u7403\uff0c\u4e5f\u6ca1\u6709\u5149\u3002"} +{"id": "7003702", "video_name": "b09584d2-b0c3-56bb-aefb-6a1107662b71", "text": "\u83f2\u5229\u666e\u00b7\u5e03\u5170\u5fb7\u65af\u5728\u4e24\u5ea7\u5c71\u4e4b\u95f4\u8d70\u5728\u4e00\u6839\u7ec6\u7ef3\u4e0a\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u90a3\u53ea"} +{"id": "4003232", "video_name": "69655c90-b458-5589-ba5a-1e665495364b", "text": "\u4e00\u4e2a\u8df3\u821e\u7684\u5de8\u578b\u5916\u661f\u4eba\uff0c\u5e26\u7740\u5165\u4fb5\u8005UFO\uff0c\u7535\u5f71\u611f\uff0c\u8001\u5f71\u50cf\uff0c\u6444\u50cf\u673a\u5e73\u79fb\uff0c\u65e7\u7535\u5f71\uff0cVHS\uff0c\u73b0\u5b9e\u4e3b"} +{"id": "2006748", "video_name": "58c97a70-9a9c-54eb-85c9-d6d0e5c48770", "text": "\u5ba0\u7269\u53cb\u597d (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0003356", "video_name": "3c1cbb07-4424-55ec-add4-9591e1dfb8de", "text": "\u4eba\u4eec\u5728\u4e00\u4e2a\u7a7a\u8361\u8361\u7684\u5168\u767d\u8272\u827a\u672f\u753b\u5eca\u91cc\u8d70\u6765\u8d70\u53bb\u3002"} +{"id": "2005277", "video_name": "b276c9b1-dd7b-597f-925b-216a00d7274f", "text": "\u9a6c\u65af\u514b\u6b63\u5728\u5403\u7740\u91cd\u5e86\u706b\u9505\uff0c\u706b\u7ea2\u7684\u9505\u5e95\u8986\u76d6\u7740\u8fa3\u6912\u3002"} +{"id": "7004528", "video_name": "dd8c0066-4ba3-5317-abda-3d337f92e3ff", "text": "\u5728\u6708\u5149\u4e0b\u7684\u68ee\u6797\u4e2d\u6de1\u51fa\uff0c\u68ee\u6797\u91cc\u6709\u5f2f\u66f2\u3001\u626d\u66f2\u7684\u6811\u6728\uff0c\u96fe\u6c14\u5728\u5730\u9762\u4e0a\u8513\u5ef6\u3002\u4e00"} +{"id": "1003709", "video_name": "446fd980-6849-5366-82dd-aa9134081158", "text": "\u8ff7\u5bab\u88ab\u8ba4\u4e3a\u7531\u62e5\u6709\u975e\u51e1\u9b54\u529b\u7684\u5f3a\u5927\u4ed9\u5973\u5b88\u62a4\u3002\u7535\u5f71\u822c\u7684\uff0c3D\u7684\uff0c\u9ad8\u6e05\u6670\u5ea6\u7684\uff0c4K"} +{"id": "4004746", "video_name": "50a01045-61ab-5ec6-bfe6-4c4322fc731a", "text": "\u5728\u5c0f\u6728\u5c4b\u91cc\u7684\u4e00\u5bf9\u5e74\u8f7b\u5e78\u798f\u592b\u5987\uff0c\u660f\u6697\u7684\u706f\u5149\u4e0b\uff0c\u8d85\u9ad8\u6e05\u3001\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0004337", "video_name": "0753e089-a923-5bc6-82e2-c6e6143aa365", "text": "\u6b27\u6d32\u737e\u548c\u5b69\u5b50\u7684\u7ed8\u753b\u5de5\u5177\u73a9\u800d\u3002\n\nSource sentence: The sun sets behind the mountain, casting a golden glow on the fields below.\n\n\u592a\u9633\u843d\u5c71\u5728\u5c71\u540e"} +{"id": "4002280", "video_name": "933f3e3e-71d2-537b-bb03-b97d4f5c0984", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\u4e2d\uff0c\u6709\u4e00\u53ea\u5b64\u72ec\u800c\u5f3a\u58ee\u7684\u9ed1\u7fbd\u9e1f\u4eba\uff0c\u8eab\u5904\u4e00\u7247\u4e0b\u7740\u7070\u70ec\u7684\u666f\u8c61\u3002"} +{"id": "6002243", "video_name": "6cdf0af5-33a6-5aef-b38c-637c2b709aa5", "text": "\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u5929\u4e3b\u6559\u5927\u6559\u5802\u548c\u4eea\u5f0f\u666f\u8c61"} +{"id": "2007762", "video_name": "7065e905-f77d-5e57-969e-443eb60e0c33", "text": "\u5546\u4eba\u6b63\u5728\u6325\u624b\u5e76\u8bf4\u201c\u4f60\u597d\u201d\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "6002842", "video_name": "8adfbbf6-0a57-5140-8ebc-b360deb5030e", "text": "\u4e00\u4e2a\u5973\u5b69\u72ec\u81ea\u7ad9\u5728\u5c4b\u9876\u4e0a\u3002"} +{"id": "6002246", "video_name": "17216710-64f3-5298-9c6e-c4cad17d6126", "text": "\u4e00\u4f4d\u8d85\u7ea7\u82f1\u96c4\u53cd\u6d3e\uff0c\u4ed6\u662f\u4e00\u4f4d\u957f\u7740\u82a6\u7b0b\u6837\u5b50\u7684\u7537\u4eba\uff0c\u6234\u7740\u9ed1\u8272\u773c\u7f69\u3002"} +{"id": "8001311", "video_name": "5b2b8d69-f4cb-5ac3-ae02-f6b7e78cdf9d", "text": "1995\u5e74\u7684\u540e\u6392\u8d85\u8dd1\u5728\u65e5\u672c\u7684\u68ee\u6797\u4e2d\u6f02\u79fb\uff0c\u591c\u665a\uff0c4K 30\u79d2\u7535\u5f71\u7ea7\u753b\u8d28\uff0c\u4f7f\u7528Blackmagic Pocket 4K\u76f8\u673a\u548cSir"} +{"id": "7002719", "video_name": "e7837c27-d22a-5e09-84d5-ae2e4aaf2d62", "text": "\u4e00\u53ea\u84dd\u8272\u7684\u65af\u59c6\u83f2\u732b\u7ad9\u5728\u68ee\u6797\u4e2d\uff0c\u6234\u7740\u4e00\u9876\u767d\u5e3d\u5b50\u3002"} +{"id": "5001589", "video_name": "67585cba-39f8-5420-847a-ba095b5d2fbd", "text": "\u5357\u74dc\u91cc\u585e\u6ee1\u4e86\u7cd6\u679c\uff0c\u4e07\u5723\u8282\u7bee\u5b50\u91cc\u4e5f\u662f\u7cd6\u679c\uff0c\u4e0b\u8d77\u96e8\u6765\u4e5f\u662f\u7cd6\u679c\u3002"} +{"id": "2007652", "video_name": "98a7a827-ce80-54cd-b2da-b5d98c086441", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u4e16\u754c\uff0c\u6709\u4e00\u53ea\u9762\u5411\u955c\u5934\u7684\u9f99\uff0c8K\uff0c120\u5e27\u6bcf\u79d2\u3002"} +{"id": "7003918", "video_name": "ca1c0974-ed1b-519f-9c79-17db89151e76", "text": "\u4e00\u4e2a\u88ab\u4ed6\u7684\u4e66\u5305\u56f4\u7684\u8001\u4eba\uff0c\u8fb9\u4e0a\u7684\u4e09\u89d2\u684c\u4e0a\u5806\u6ee1\u4e86\u65e7\u62a5\u7eb8\uff0c\u5341\u4e94\u53ea\u732b\u5728\u4ed6\u7684\u95e8\u53e3\u6320\u7740\u95e8\uff0c"} +{"id": "2006588", "video_name": "fa514c17-02f3-5f70-a047-a4885eae07b5", "text": "\u4eba\u7269\u5934\u50cf\u753b\u5f97\u75af\u72c2\uff0c\u80cc\u666f\u8272\u5f69\u4e30\u5bcc\u591a\u5f69\uff0c\u6709\u626d\u66f2\u611f\u3002"} +{"id": "1005475", "video_name": "6490c32d-27f2-5371-af66-3621ef0c716f", "text": "\u65b0\u5e74\u5373\u5c06\u5230\u6765\u5728\u5df4\u5e93\u3002"} +{"id": "7004139", "video_name": "d5072a2d-e291-5413-b2dc-dfc01660e960", "text": "\u4e00\u7fa4\u9a91\u9a6c\u7684\u4eba\u62a4\u9001\u7740\u4e00\u961f\u8fd0\u8f7d\u8d27\u7269\u7684\u9a86\u9a7c\u548c\u9a6c\u5339\u7a7f\u8d8a\u6c99\u6f20\u5730\u5e26\uff0c\u8eab\u540e\u626c\u8d77"} +{"id": "2004036", "video_name": "1287998b-4012-547b-a940-bff0267edc02", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u56fe\u4e66\u9986\u91cc\u770b\u4e66\uff0c\u6709\u9ad8\u5ea6\u8be6\u7ec6\u7684\u63d2\u56fe\u7ed8\u753b\uff0c\u50cf\u76ae\u514b\u65af\u52a8\u753b\u4e00\u6837\uff0c4k\u30013d\u3002"} +{"id": "2007066", "video_name": "5d56975a-3e63-5c25-a7f9-e24f9e5bdf83", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u591c\u665a\u7684\u96e8\u4e2d\u505c\u5728\u516c\u8def\u8fb9\u3002"} +{"id": "7004477", "video_name": "dd6926a2-8a8f-5caf-8ee8-61b86f449949", "text": "\u4e00\u7247\u7f8e\u4e3d\u7684\u68ee\u6797\u91cc\uff0c\u9e1f\u513f\u5728\u5431\u5431\u53eb\uff0c\u9e2d\u5b50\u5728\u6e56\u91cc\uff0c\u901a\u8fc72D\u52a8\u753b\u3001\u8fea\u58eb\u5c3c\u30018K"} +{"id": "3004097", "video_name": "eb71f124-1eb8-593d-a435-c27f7836b78c", "text": "\u91cd\u751f\u7684\u6751\u5e84\u5f62\u8c61\uff0c\u9c9c\u82b1\u76db\u5f00\uff0c\u623f\u5c4b\u91cd\u5efa\uff0c\u6c14\u6c1b\u4e50\u89c2\uff0c\u8c61\u5f81\u7740\u79ef\u6781\u7684\u8f6c\u53d8\u5df2\u7ecf\u53d1"} +{"id": "7004081", "video_name": "485c3023-40ae-560b-aec4-8e346f68fc2c", "text": "\u96ea\u8389\u00b7\u585e\u8482\u4e9a\u7684\u8fd1\u666f\uff0c\u80cc\u666f\u662f\u5c71\u3002"} +{"id": "8001053", "video_name": "a1574e4b-8cbb-58bb-9bbe-63f671e9c696", "text": "1971\u5e74\u5a01\u65af\u5eb7\u661f\u9ea6\u8fea\u900a\u5e02\u533a\u768416\u6beb\u7c73\u822a\u62cd\u7247\u6bb5\u3002"} +{"id": "2006128", "video_name": "a222bfa6-99b2-5aea-ac02-5c197e969ef0", "text": "\u540d\u53eb\u4e9a\u5386\u514b\u65af\u548c\u827e\u4f26\u7684\u4e24\u4e2a\u4f10\u6728\u5de5\u751f\u6d3b\u5728\u4e00\u4e2a\u9760\u8fd1\u68ee\u6797\u7684\u6751\u5e84\u3002"} +{"id": "6004620", "video_name": "d76b2ad8-28f1-5510-92f4-84d16ffef535", "text": "\u7194\u5ca9\u6d41\u6cb3\u3001\u7206\u70b8\u3001\u9ed1\u6697\u6c1b\u56f4\u3001\u843d\u96f7\u3001\u706b\u5c71\u706b\u7130\u3002"} +{"id": "2007274", "video_name": "09d65ddf-6d03-5a11-bf90-c3f4a949dc3b", "text": "\u5728\u4e00\u4e2a\u6676\u83b9\u5254\u900f\u7684\u51b0\u6e56\u4e0a\uff0c4k\u51b0\u7403\u8fd0\u52a8\u5458\u6ed1\u884c\uff0c\u51b0\u4e0b\u6e38\u52a8\u7684\u91ce\u751f\u52a8\u7269\u3002"} +{"id": "4003414", "video_name": "5fc05f0b-34c3-5aab-9332-d878125e76b5", "text": "\u592a\u9633\u7f13\u7f13\u5730\u843d\u4e0b\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\uff0c\u67d3\u7ea2\u4e86\u5929\u7a7a\uff0c\u6cdb\u8d77\u4e86\u6a59\u8272\u548c\u7d2b\u8272\u3002\u5728\u5c71"} +{"id": "8003122", "video_name": "7da46b7d-900e-5d94-8bfe-dafc1129e3ce", "text": "\u6700\u7ec8\u9ad8\u6f6e\u7684\u6218\u6597\u4e2d\uff0c\u7206\u70b8\u70b9\u4eae\u5929\u7a7a\uff0c\u4eba\u7c7b\u548c\u673a\u5668\u4eba\u4e3a\u4e89\u593a\u4e3b\u5bfc\u6743\u800c\u6fc0\u70c8\u4ea4\u950b\u3002"} +{"id": "4002117", "video_name": "a38eb0ae-e072-5197-941c-848dd82e33d8", "text": "\u4e0d\u6b7b\u6218\u58eb\u7a7f\u7740\u9a91\u58eb\u76d4\u7532\uff0c1:1\u7ad9\u7acb\u3002"} +{"id": "6004566", "video_name": "779d4770-95da-57fa-bfc8-7a401723c3f8", "text": "\u676d\u5dde\u4e8c\u4e2d\u7f8e\u4e3d\u7684\u6821\u56ed"} +{"id": "7004811", "video_name": "67f56bf9-0711-53fd-bba1-d087ac325aab", "text": "\u4e00\u7fa4\u670b\u53cb\u5728\u4e00\u689d\u7f8e\u9e97\u7684\u6cb3\u88e1\u91e3\u9b5a\uff0c\u4e26\u4eab\u53d7\u8457\u6109\u5feb\u7684\u6642\u5149\u3002"} +{"id": "2003947", "video_name": "9259b51a-99a4-5c9a-b593-63fea773f3ac", "text": "\u4e00\u8f86\u8dd1\u8f66\u5728\u8d5b\u9053\u4e0a\u98de\u9a70\uff0c\u4fef\u77b0\u89c6\u89d2\u3002"} +{"id": "3006033", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u70df\u96fe\u8fd0\u52a8\u3002"} +{"id": "2005334", "video_name": "2ea62fb9-5c98-5b55-89d8-795e27745e74", "text": "\u706b\u9f99\u679c\u88ab\u5207\u6210\u5c0f\u5757\uff0c\u6bcf\u4e00\u5757\u90fd\u5206\u5f00\u79fb\u52a8\u3002"} +{"id": "6004152", "video_name": "9d4d5338-72e3-55c5-938e-8f3599e8a655", "text": "\u56db\u4f4d\u661f\u9645\u8ff7\u822a\u4f01\u4e1a\u53f7\u5b98\u5458\u8fdb\u884c\u4f20\u9001\uff0c\u4f20\u9001\uff0c\u5c06\u6211\u4f20\u8d70\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "4004777", "video_name": "9fc20cec-1228-51d9-88a1-4283dde07d2c", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u4e1b\u6797\uff0c\u6709\u4e00\u4e2a\u963f\u5179\u7279\u514b\u795e\u5e99\u548cDMT\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "3003555", "video_name": "dfb6e415-b3ce-5a80-9e04-96a2371b213e", "text": "\u9c7f\u9c7c\u6e38\u620f\u7684\u5956\u54c1\u60ac\u6302\u5728\u57ce\u5e02\u4e2d\u5fc3\uff0c\u4eba\u4eec\u4ef0\u671b\u7740\u5b83\uff0c\u91d1\u8272\u7684\uff0c\u5728\u767d\u5929\u3002"} +{"id": "2007698", "video_name": "38e80103-feb1-5886-931e-acde210f4219", "text": "\u5370\u5ea6\u83ab\u5367\u513f\u738b\u671d\u7edf\u6cbb\u4e0b\u7684\u5730\u56fe"} +{"id": "8002813", "video_name": "51b47df3-9646-5d59-bd60-eb2238f7c954", "text": "\u516c\u5171\u6c7d\u8f66\u884c\u9a76\u5728\u6b96\u6c11\u65f6\u671f\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "4004969", "video_name": "ca8cda4c-ec74-5a12-a3fa-f3044d36d9dd", "text": "\u8bb8\u591a\u6d41\u661f\u4ece\u661f\u7a7a\u4e2d\u98d8\u843d"} +{"id": "6002946", "video_name": "a85410d2-2b3c-5926-8633-05cda686d923", "text": "DNA\u5e8f\u5217\u94fe\u65cb\u8f6c\uff0c\u63ed\u793a\u79d8\u5bc6\uff0c16\u6beb\u7c73\u7684\u7535\u5f71\u60ca\u9669\u4e4b\u65c5\u3002"} +{"id": "0003016", "video_name": "35a39876-616e-508c-b394-c9acbd4d3544", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u770b\u662f\u516c\u8f6c\u7684\u3002"} +{"id": "2005203", "video_name": "ca59b43f-696e-50c2-933b-f4742ff9ad2f", "text": "\u73b0\u5b9e\u7684\u5730\u7403\u592a\u7a7a\u56fe\u7247"} +{"id": "2006535", "video_name": "00497b64-9912-56d2-af81-3a3cc2ac2e93", "text": "\u4e00\u4e2a\u62e5\u6709\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u7535\u8111\u5b89\u88c5\u7684\u4ea4\u6613\u5458\u3002"} +{"id": "1004213", "video_name": "4dd8069d-f52b-5de5-b012-8515dd93f9e6", "text": "\u4e24\u4e2a\u7a7f\u7740\u7eff\u8272\u515c\u5e3d\uff0c\u624b\u6301\u5251\u7684\u5973\u5b69\u3002"} +{"id": "0005543", "video_name": "1c9213ba-71c8-5c00-a239-22e8e630485e", "text": "\u732b\u5973\u5728\u9ed1\u8272\u6469\u6258\u8f66\u4e0a\u7ed5\u7740\u57ce\u5821\u72c2\u98d9\u3002"} +{"id": "4004020", "video_name": "8b5d1720-e828-5725-bf75-bc687e8e527e", "text": "\u8eab\u7740\u9632\u6bd2\u9762\u5177\u7684\u7740\u706b\u7537\u5b50\u5411\u955c\u5934\u8d70\u6765\u3002"} +{"id": "0006220", "video_name": "2892f8fc-3411-5d8b-ba74-b7b7528729d9", "text": "\u4e00\u4f4d\u5973\u795e\u6b63\u5728\u4e00\u500b\u751f\u7269\u767c\u5149\u7684\u9b5a\u7f38\u4e2d\u8207\u9b5a\u6e38\u6cf3\u3002"} +{"id": "8001325", "video_name": "2c614019-dbf2-51c5-8ab7-cd00659f5d33", "text": "\u8fd9\u4e2a\u65f6\u671f\u4ee5\u72ec\u7279\u7684\u9676\u5668\u98ce\u683c\u548c\u6587\u5316\u521b\u65b0\u4e3a\u7279\u5f81\u3002"} +{"id": "4003092", "video_name": "d6d34c11-097b-58a8-b861-2bca6c92836a", "text": "\u5f69\u8679\u7011\u5e03\u53ca\u5176\u5468\u56f4\u666f\u8272\u7684\u63cf\u8ff0\u4f4d\u4e8e\u90c1\u90c1\u8471\u8471\u3001\u5145\u6ee1\u751f\u673a\u7684\u70ed\u5e26\u96e8\u6797\u4e2d\u3002"} +{"id": "4003653", "video_name": "aeda7a7a-1837-548b-ab8c-04688d63d02e", "text": "\u897f\u73ed\u7259\u5185\u534e\u8fbe\u5c71\u8109\u7684\u5c71\u666f\uff0c\u6709\u80cc\u5305\u5ba2\u5728\u5c0f\u5f84\u4e0a\u884c\u8d70\uff0c\u8fdc\u5904\u6709\u9ad8\u8038\u7684\u5c71\u5cf0\u3002"} +{"id": "3006684", "video_name": "43288bef-3797-5516-bc98-2fa24116a8d8", "text": "\u7279\u5199\u955c\u5934\uff0c\u6697\u955c\uff0c\u6050\u6016\uff0c\u53ef\u6015\u3002"} +{"id": "0003315", "video_name": "3b771a46-7307-5c98-b6c1-ea5fc52a4870", "text": "\u732b\u5728\u8f66\u9876\u4e0a\u6293\u6320\u3002"} +{"id": "2006650", "video_name": "17628365-6b65-57a0-acb5-0f3ffec0a08f", "text": "\u5409\u7c73\u00b7\u4ea8\u5fb7\u91cc\u514b\u65af\u5728\u6253\u789f\u65f6\u7684\u8096\u50cf\uff0c\u7eb5\u5411\u683c\u5f0f\u3002"} +{"id": "4002942", "video_name": "a01c9ed8-9058-54d9-af89-57f8522baa1b", "text": "\u4e00\u4e2a\u6674\u6717\u660e\u4eae\u7684\u4e0b\u5348\u573a\u666f\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5929\u7a7a\u6e5b\u84dd\u3002"} +{"id": "0003456", "video_name": "3dd9f2d7-75a7-5dbf-acef-c2fd8b0b1d4e", "text": "\u4f5c\u4e3a\u4e00\u4e2a\u6d4b\u8bd5\uff0c\u628a\u573a\u666f\u60f3\u8c61\u6210\u5ba2\u5385\u7684\u5730\u677f\u3002"} +{"id": "7003975", "video_name": "562b736b-6ccc-519d-b183-2117d07dfd34", "text": "\u9634\u5f71\u8f7b\u5fae\u5730\u79fb\u52a8\uff0c\u5c31\u50cf\u5b83\u4eec\u5728\u4ea4\u8c08\u3002AR 16:9\uff0c\u7535\u5f71\u955c\u5934\u3002"} +{"id": "5001217", "video_name": "53029239-c8bb-5cf7-91f3-3c6f85d948ce", "text": "\u4ece\u9ed1\u6697\u4e2d\u6162\u6162\u4eae\u8d77\u7684\u955c\u5934\uff0c\u5c55\u73b0\u51fa\u4e00\u8f86\u73b0\u4ee3\u7535\u52a8\u6c7d\u8f66\u5728\u5b89\u9759\u7684\u90ca\u533a\u9053\u8def\u4e0a\u7f13\u6162\u884c\u9a76"} +{"id": "5001034", "video_name": "aaa30c5e-4180-5431-9331-596a3224b4bf", "text": "\u84dd\u773c\u6e21\u9e26\u6765\u81ea\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\uff0c8K\u7167\u7247\u3002"} +{"id": "7003552", "video_name": "8e8a93f6-25de-537d-a7ce-0fd754d5ca48", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u98de\u673a\u4e0a\u8df3\u4e0b\u6765\uff0c\u52a8\u4f5c\u7535\u5f71\uff0c\u98ce\u683c\u7c7b\u4f3c\u51ef\u745f\u7433\u00b7\u6bd5\u683c\u7f57\u3002"} +{"id": "8003748", "video_name": "f32f1602-7bae-5279-a331-f6e2df2fa6d7", "text": "\u5973\u6027\u98de\u884c\u5458\u5236\u670d\u886c\u886b\u3001\u9886\u5e26\u7684\u771f\u5b9e\u955c\u5934\uff0c\u7f29\u653e\u3002"} +{"id": "2007280", "video_name": "45a1fb61-f8aa-5848-8850-539b03a254bc", "text": "\u7528\u4e00\u53cc\u811a\u8d70\u8def\u3002\n\nSource sentence: The sky is blue. \n\n\u5929\u7a7a\u662f\u84dd\u8272\u7684\u3002"} +{"id": "4004950", "video_name": "7049751a-ed47-589e-8dec-d988eaface45", "text": "\u4e91\u5728\u79fb\u52a8\uff0c\u592a\u9633\u5728\u5347\u8d77\uff0c\u6c34\u6ce2\u8361\u6f3e\u3002"} +{"id": "3005027", "video_name": "717aa0c5-3140-55f4-b774-c061afaf9457", "text": "\u5728\u6797\u4e2d\u7684\u79cb\u65e5\uff0c\u4e00\u53ea\u72d7\u56db\u5904\u5954\u8dd1\u7684\u89c6\u9891\u3002"} +{"id": "1004646", "video_name": "565ea78b-2161-54a1-bae7-1f2f79633ba6", "text": "\u76f8\u673a\u56f4\u7ed5\u94a2\u94c1\u4fa0\u65cb\u8f6c360\u5ea6\u3002"} +{"id": "8003454", "video_name": "8a1911e7-b5f8-5217-afb9-912bf4ed66a8", "text": "12\u5c81\u7684\u767d\u79cd\u5973\u5b69\uff0c\u6709\u77ed\u84dd\u8272\u5934\u53d1\u548c\u7ebd\u6263\u505a\u7684\u773c\u775b\u3002\u8fd9\u4e2a12\u5c81\u7684\u5973\u5b69\u7a7f\u7740\u4e00\u4ef6\u9ec4\u8272"} +{"id": "4004137", "video_name": "09de0a22-e928-5809-a1ad-fd3c7499d5b7", "text": "\u4e00\u6761\u4ece\u793e\u4f1a\u7684\u8d1f\u9762\u65b9\u9762\u901a\u5411\u793e\u4f1a\u6b63\u9762\u65b9\u9762\u7684\u8def\u5f84"} +{"id": "8001754", "video_name": "d3e2cc67-7b44-59b2-ad59-649e0d9bc0e8", "text": "\u5a01\u5c14\u00b7\u53f2\u5bc6\u65af\u53bb\u4e0a\u5395\u6240\u65f6\u611f\u5230\u5feb\u4e50\uff0c\u5395\u6240\u7684\u80cc\u666f\u5f88\u660e\u4eae\uff0c\u4ed6\u624b\u6301\u51b0\u6dc7\u6dcb\uff0c\u7528\u624b\u6301\u76f8"} +{"id": "8002790", "video_name": "930460a5-7cf3-502d-8288-3db6464c1416", "text": "4k\uff0c\u903c\u771f\u76843D\uff0c\u5b57\u6bcdA\u5728\u98de\u884c\u3002"} +{"id": "1006108", "video_name": "701315fd-66c2-58ca-bb6d-ebdd22ba73ce", "text": "\u5bfa\u5e99\u5916\u53d1\u73b0\u4e86\u4e00\u6bb5\u9ad8\u7626\u5916\u661f\u4eba\u7684\u5f55\u50cf\u3002"} +{"id": "7004960", "video_name": "2f602ad5-3148-5d98-918b-2231a3c32a40", "text": "\u6f2b\u753b\u822c\u7684\u5916\u8868\uff0c\u4f20\u798f\u97f3\u7684\u7267\u5e08\u5927\u58f0\u8bb2\u9053\uff0c\u505a\u51fa\u5938\u5f20\u7684\u624b\u52bf\u3002"} +{"id": "2005706", "video_name": "eeb3d48f-2f1e-5487-81d0-b67dc1731742", "text": "\u4e00\u4e2a\u62e5\u6709\u5feb\u901f\u79fb\u52a8\u7684\u7011\u5e03\u548c\u6025\u6d41\u7684\u57ce\u5821\uff0c\u8272\u5f69\u4e30\u5bcc\u3001\u7ec6\u8282\u4e30\u5bcc\u3001\u620f\u5267\u5316\u7684\u7167\u660e\u3002"} +{"id": "0005358", "video_name": "196c2438-0a25-597c-aae2-10d361ff4ae9", "text": "\u5c1d\u8bd5\u6050\u60e7\u75c7\uff0c\u5c0f\u8718\u86db\uff0c\u6050\u6016\u7535\u5f71\uff0c\u53ef\u6015\uff0c\u90aa\u6076\uff0c\u9ad8\u6e05\uff0c\u903c\u771f\uff0c\u6050\u60e7\uff0c\u590d\u53e4"} +{"id": "1006896", "video_name": "7e0574f3-da21-511b-b6df-c7a4ee9f4e19", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u7684\u6bdb\u7ed2\u73a9\u5177\uff0c\u62df\u4eba\u5316\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\uff0c\u5305\u62ec\u4ed6\u72ec\u7279\u7684\u4e71\u53d1\u3001\u6c89"} +{"id": "2006604", "video_name": "a408783e-3c53-5593-9389-0d0ffb5aee00", "text": "\u706d\u9738\u964d\u4e34\u5730\u7403\uff0c\u80cc\u666f\u4e2d\u5145\u6ee1\u4e86\u98de\u8239\u3002"} +{"id": "2007737", "video_name": "37307dd6-8990-5a66-973b-a4109d0efe9c", "text": "\u6fc0\u5149\u675f\u4ece\u592a\u7a7a\u89c6\u89d2\u5c06\u6d41\u661f\u96e8\u8f6c\u79fb\uff0c\u4f7f\u5176\u4e0d\u4f1a\u649e\u51fb\u5730\u7403\u3002"} +{"id": "6004939", "video_name": "29ead879-7ece-5048-b35d-5c851da82432", "text": "M1A2\u5766\u514b\u6b63\u5728\u5411\u53e6\u4e00\u8f86T90M\u5766\u514b\u5f00\u706b\u3002"} +{"id": "8001986", "video_name": "6b1d8301-74c9-514d-8f0d-b97c7364d735", "text": "\u5723\u8bde\u6811\u4e0a\u6709\u88c5\u9970\u54c1\uff0c\u5b69\u5b50\u4eec\u4e0e\u5723\u8bde\u8001\u4eba\u4e00\u8d77\uff0c\u6536\u5230\u793c\u7269\u548c\u7cd6\u679c\u3002"} +{"id": "1006380", "video_name": "74c39e63-1568-56cd-b91a-316688bb5181", "text": "\u592a\u7a7a\u4e2d\u7684\u4e0d\u53ef\u80fd\u4e09\u89d2\u5f62\u548c\u4e00\u8258\u9010\u6e10\u903c\u8fd1\u7684\u5b87\u5b99\u98de\u8239\u3002"} +{"id": "6004764", "video_name": "cdeb009b-5954-599c-a03b-f804050eabf1", "text": "\u6c7d\u8f66\u9a76\u5411\u65e5\u843d\uff0c\u6709\u4e00\u4e2a\u5fc3\u5f62\u7684\u4e91\u6735\u3002"} +{"id": "1005981", "video_name": "6de535c6-2f6b-5876-a2ef-2ce2c0b0d0ce", "text": "\u4e00\u4e2a\u4e07\u5723\u8282\u5357\u74dc\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u53d8\u5f62\u6210\u5176\u4ed6\u4e07\u5723\u8282\u5357\u74dc\u3002"} +{"id": "8001959", "video_name": "1e1b3f58-91c6-5301-a3c9-af4ccfe68e89", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u8857\u5934\u5174\u9ad8\u91c7\u70c8\u5730\u8df3\u821e\uff0c\u8131\u53bb\u886c\u886b\uff0c\u975e\u5e38\u903c\u771f\u548c\u8be6\u7ec6\uff0c\u6709\u8bb8\u591a\u7ec6\u8282"} +{"id": "4002406", "video_name": "7dfef2cb-3446-5ce4-a8fa-f7aba0b95c1e", "text": "\u5bb6\u5ead\u672a\u6765\u7684\u5ba2\u5385\u3002"} +{"id": "0006644", "video_name": "302300ab-987b-581f-904d-be8ec5b56108", "text": "\u5b69\u5b50\u4eec\u5728\u6d77\u91cc\u73a9\u6c34\u3002"} +{"id": "6003133", "video_name": "249e52e2-a66f-59bf-8dd6-e0338d427339", "text": "\u5b5f\u52a0\u62c9\u519c\u6c11\u5728\u5e84\u7a3c\u7530\u91cc\u8df3\u821e\u3002"} +{"id": "4004563", "video_name": "c5ead532-6a4d-5d08-8ba0-6a4b9150ac2f", "text": "\u7f8e\u4e3d\u7684\u4f0a\u65af\u5170\u5973\u5b69\u505a\u4e86\u6735\u4e9a\u3002"} +{"id": "6003838", "video_name": "0ae378c6-069f-5c0c-be9a-a9ce93e35af3", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u4e16\u7eaa\u6751\u5e84\u7684\u822a\u62cd\u89c6\u89d2\u3002\u6709\u9e45\u5375\u77f3\u94fa\u6210\u7684\u8857\u9053\u3001\u8305\u8349\u5c0f\u5c4b\u3001"} +{"id": "8001495", "video_name": "7ec31528-87ef-589b-9286-ac146ea92c73", "text": "\u4e00\u4e2a\u7a7a\u95f4\u7ad9\uff0c\u4e00\u8258\u5b87\u5b99\u98de\u8239\uff0c\u5927\u6c14\u5c42\uff0c\u4e00\u9897\u6d41\u661f\u3002"} +{"id": "1006473", "video_name": "767a5068-cbaf-5991-b0fe-90a3eb90f539", "text": "\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\uff0c\u9ed1\u8272\u7684\u5934\u53d1\uff0c\u5b66\u751f\u670d\u88c5\uff0c\u624b\u6301\u9ea6\u514b\u98ce\u5531\u6b4c\u3002"} +{"id": "1004445", "video_name": "5241dee6-d61e-5f0f-8100-d21ffe6dce1a", "text": "\u5b87\u822a\u5458\u5e26\u7740\u624b\u7535\u7b52\u57284K\u7535\u5f71\u822c\u7684\u5de8\u5927\u9ed1\u6d1e\u4e2d\u63a2\u7d22\u3002"} +{"id": "1004423", "video_name": "51dc3a11-8453-5679-a0de-534eb9f76344", "text": "\u4e00\u4e2a\u5c0f\u6751\u5e84\u4e0e\u6d41\u6dcc\u7684\u6cb3\u6d41\uff0c\u6e05\u6668\u9e1f\u9e23\u58f0\uff0c8k\u751f\u52a8\u4e30\u5bcc\u76843:2\u89c6\u9891\u3002"} +{"id": "3005077", "video_name": "d082e004-264d-5724-bdbe-0df725a83849", "text": "\u521b\u9020\u4e00\u4e2a\u5e72\u51c0\u7b80\u7ea6\u7684\u8bbe\u8ba1\uff0c\u5176\u4e2d\u80cc\u666f\u5728\u4e00\u4fa7\u8c61\u5f81\u6df7\u4e71\u6216\u6df7\u4e71\uff0c\u800c\u5728\u53e6\u4e00\u4fa7\u5219\u8c61\u5f81\u7b80\u5355\u548c\u5b81"} +{"id": "4003530", "video_name": "07b7ceb7-4eba-5d34-a02a-089c8c337ebf", "text": "\u4e00\u5e45\u5361\u901a\u98ce\u683c\u7684\u5feb\u4e50\u5bb6\u5ead\u753b\u9762\uff0c\u7531\u4e00\u4f4d\u6bcd\u4eb2\u3001\u4e00\u4f4d\u7236\u4eb2\u548c\u4e09\u4e2a\u5b69\u5b50\u7ec4\u6210\u3002"} +{"id": "4003700", "video_name": "901c03cb-6ca0-5c6e-8697-a6ae6c0ded5d", "text": "\u5730\u7403\u4ee5\u975e\u5e38\u5feb\u7684\u901f\u5ea6\u65cb\u8f6c\u5e76\u5411\u5c4f\u5e55\u9760\u8fd1\u3002"} +{"id": "2006487", "video_name": "d0302430-adeb-5bf3-aa0c-3360b5f2d72b", "text": "water all around the temple.\n\n\u5361\u897f\u7ef4\u65af\u7eb3\u7279\u5bfa\u5e99\u5728\u74e6\u62c9\u7eb3\u897f\u7684\u7a7a\u4e2d\u4fef\u77b0\u7167\u7247\uff0c\u5bfa\u5e99\u5468\u56f4\u6df9\u6ca1"} +{"id": "2006424", "video_name": "46f85e55-aaed-5113-bb4d-e823c03d4ba4", "text": "\u592a\u7a7a\u957f\u81c2\u733f\u7528\u592a\u7a7a\u67aa\u548c\u5251\u8fdb\u884c\u6218\u6597\uff0c\u80cc\u666f\u662f\u5916\u661f\u4e16\u754c\u3002"} +{"id": "3004333", "video_name": "a0606010-d08c-5cc4-bf21-f5e8473ff60c", "text": "\u91ca\u8fe6\u725f\u5c3c\u4f5b\u5728\u5bfa\u9662\u91cc\u4e3a\u50e7\u4fa3\u4eec\u8bb2\u7ecf\uff0c\u9ed1\u767d\u58a8\u6c34\uff0c4K\u3002"} +{"id": "1003462", "video_name": "4016fe1e-f273-5d21-a0d5-3df6baafa529", "text": "\u4e00\u4e2a\u4eba\u5728\u6d77\u91cc\u60b2\u4f24\u3002"} +{"id": "4004337", "video_name": "c15aa0d2-3c2c-508c-b702-e8efeab04323", "text": "\u8718\u86db\u4fa0\u98ce\u683c\u7684\u53d8\u5f62\u91d1\u521a\uff0c\u770b\u7740\u89c2\u4f17\uff0c\u773c\u775b\u548c\u80f8\u524d\u6807\u5fd7\u53d1\u51fa\u5149\u8292\uff0c\u7ad9\u5728\u57ce\u5e02\u4e2d\uff0c"} +{"id": "3004270", "video_name": "138f9c95-93b6-5c47-a1e8-9191a5e540a0", "text": "\u4e00\u4e2a\u771f\u6838\u751f\u7269\u7684\u84dd\u8272\u7ec6\u80de\u6b63\u5728\u8fdb\u884c\u4e8c\u5206\u88c2\u3002"} +{"id": "1006228", "video_name": "723002d9-a5a9-55d1-bf72-4fa419a9a23e", "text": "\u60f3\u8c61\u4e00\u5f20\u5145\u6ee1\u6d3b\u529b\u548c\u7cbe\u7ec6\u7ec6\u8282\u7684\u52a8\u6001\u4e16\u754c\u5730\u56fe\u3002\u7cbe\u7f8e\u7ed8\u5236\u7684\u8fb9\u754c\u7a81\u51fa\u4e86\u5404\u5927\u6d32\u72ec"} +{"id": "6003705", "video_name": "797c086a-e6f5-5590-b6b6-2dd9a9864ba7", "text": "\u4e00\u4e2a\u623f\u5730\u4ea7\u7ecf\u7eaa\u4eba\uff0c\u89c1\u5230\u4eba\u5f88\u9ad8\u5174\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u5168\u9ad8\u6e05\u3002"} +{"id": "2007509", "video_name": "9a38b813-e05e-55de-86a7-cb82834b2a71", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u7ad9\u5728\u60ac\u5d16\u8fb9\uff0c\u89c2\u770b\u7740\u4e00\u4e2a\u6709\u4e24\u4e2a\u592a\u9633\u7684\u672a\u6765\u4e16\u754c\u7684\u65e5\u843d\u3002 \n\nSource sentence: The cat is sleeping"} +{"id": "8003822", "video_name": "acd3a40b-b964-5b33-b0e0-4a668f00a45a", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u548c\u5979\u7684\u7236\u4eb2\u5728\u5b66\u6821\u73a9\u800d\u3002"} +{"id": "2006727", "video_name": "a32ba601-3659-5fea-a7be-e279a325b8f1", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u96ea\u4eba\uff0c\u4ee5Pixar\u7684\u98ce\u683c\u5f00\u5fc3\u5927\u7b11\u3002"} +{"id": "1003585", "video_name": "41ff19f1-5154-524f-b944-dad7d2f11152", "text": "\u8fd9\u53ea\u72d7\u5728\u5954\u8dd1\uff0c\u8349\u539f\u4e3a\u80cc\u666f\u3002\n\nSource sentence: I am going to the store to buy some groceries.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "3005510", "video_name": "ba67a97b-b22c-59a2-a07d-1f75b93d7511", "text": "\u5728\u7d27\u8ffd\u4e0d\u820d\u7684\u7f8e\u6d32\u8c79\u8ffd\u8d76\u4e0b\uff0c\u4ed6\u4eec\u7a7f\u8fc7\u8302\u5bc6\u7684\u704c\u6728\u4e1b\u594b\u529b\u9003\u8dd1\u300216:9"} +{"id": "8002766", "video_name": "9dd84202-5c2a-5b08-ac30-8123f3fda9c3", "text": "\u67dc\u53f0\u540e\u7684\u5973\u4eba\u6b63\u5728\u4e0e\u8863\u670d\u5e97\u7684\u987e\u5ba2\u4ea4\u8c08\u3002"} +{"id": "3003623", "video_name": "436f7513-4e07-54d6-ac80-730efe9407fb", "text": "\u7535\u89c6\u4e0a\u663e\u793a\u6570\u5b57\uff0c\u5411\u5de6\u79fb\u52a8\u6444\u50cf\u673a\u3002"} +{"id": "1005758", "video_name": "69f35f03-d757-55fa-8ffb-cd86e5b45ed9", "text": "\u4e00\u53ea\u52a8\u753b\u8349\u6ce5\u9a6c\u5728\u7eff\u8272\u7684\u7530\u91ce\u4e0a\u5954\u8dd1\uff0c\u80cc\u666f\u662f\u96ea\u5c71\u3002"} +{"id": "0003353", "video_name": "3c0cc38d-4e02-5f42-b8a7-fa35c8fe7fe5", "text": "\u4e00\u500b\u7d81\u8457\u99ac\u5c3e\u8fae\u7684\u5c0f\u5973\u5b69\uff0c\u4ee5\u5979\u7684\u5922\u60f3\u70ba\u99ac\uff0c\u5728\u60f3\u50cf\u7684\u7fc5\u8180\u63d2\u5165\u4e0b\uff0c\u5728"} +{"id": "6003393", "video_name": "1b1908f3-2fa6-5939-9da8-41d3949fd56a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u73b0\u4ee3\u5370\u5ea6\u57ce\u5e02\u5973\u5b69\uff0c\u7a7f\u7740\u9ed1\u8272\u897f\u5f0f\u670d\u88c5\uff0c\u770b\u7740\u7167\u76f8\u673a\u3002"} +{"id": "8001955", "video_name": "fa01edc6-fba4-50bb-85fd-355d29e14316", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u91cc\u770b\u5de8\u578b\u8fd0\u52a8\u978b\u6807\u5fd7\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u5411\u5916\u7f29\u653e\u3002"} +{"id": "7003075", "video_name": "af2e22b7-ae92-5dd2-9389-1933a9507f08", "text": "\u82cf\u683c\u62c9\u5e95\u6b63\u5728\u548c\u4ed6\u7684\u5b66\u751f\u4eec\u4ea4\u8c08\uff0c\u7279\u522b\u662f\u4e0e\u67cf\u62c9\u56fe\u4ea4\u8c08\u3002"} +{"id": "1003120", "video_name": "39754c31-ff7a-5fa4-a350-30fa09276bfb", "text": "\u4ed9\u5883\u5370\u5ea6\u5c3c\u897f\u4e9a\uff0c\u76ae\u5f71\u620f\uff0c\u8c22\u6cfc\u5fb7\uff0c\u7f29\u5c0f\uff0c\u7535\u5f71\u7ea7\u9ad8\u6e05\u3002"} +{"id": "7004812", "video_name": "3f734b4c-435b-51c1-9eac-2afae7c1e8d2", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u4e00\u53ea\u732b\u7684\u65e0\u58f0\u7535\u5f71\u7247\u6bb5\u3002"} +{"id": "2005237", "video_name": "0a6a57fe-99a8-59b4-8ae7-2131ddede93e", "text": "\u6211\u73a9\u5f04\u7740\u4ece\u4e0b\u5df4\u4e0b\u65b9\u6389\u51fa\u6765\u7684\u9ed1\u8272\u7ec6\u4e1d\uff0c\u51dd\u89c6\u7740\u5979\u5b8c\u7f8e\u7684\u8eab\u59ff\u3002"} +{"id": "1006379", "video_name": "74c27d56-57de-5a2f-bae3-f345ce2ee542", "text": "\u5fae\u5999\u7684\u955c\u5934\u79fb\u52a8\uff0c\u773c\u775b\u5feb\u901f\u626b\u89c6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006756", "video_name": "3274099f-9cdd-554a-a024-0d0e2a116238", "text": "\u9668\u77f3\u7684\u649e\u51fb\u662f\u4e00\u79cd\u8fc5\u901f\u800c\u51e0\u4e4e\u5bdf\u89c9\u4e0d\u5230\u7684\u51b2\u51fb\u3002\u5b83\u5728\u6574\u4e2a\u5b87\u5b99\u4e2d\u4ee5\u4e00\u9053\u5149\u8292\u7684\u5f62\u5f0f"} +{"id": "0003308", "video_name": "3b579141-b420-5731-9abb-38f639792de7", "text": "5\u5c81\u7684\u5b69\u5b50\u63a8\u7740\u5a74\u513f\u8f66\uff0c\u5a74\u513f\u5728\u5a74\u513f\u8f66\u91cc\u3002"} +{"id": "3003778", "video_name": "f21f3315-9fa5-5854-a7b8-9c3b83f67a89", "text": "\u81ea\u7136\u7684\u5916\u8c8c\uff0c40\u5c81\u7684\u5973\u4eba\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u8fd0\u52a8\u670d\uff0c\u6b63\u5728\u6d77\u6ee9\u4e0a\u8dd1\u6b65\uff0c\u84dd\u8272\u7684\u6c34\uff0c\u80cc\u666f\u6709\u68d5\u6988\u6811\u548c"} +{"id": "2005061", "video_name": "29f59653-8237-506e-a818-30878bf0bec2", "text": "\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u672a\u6765\u57ce\u5e02\u7684\u591c\u665a\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u52a0\u5165\u4e00\u4e2a\u806a\u660e\u4f46\u9690\u5c45\u7684\u79d1\u5b66\u5bb6\u89d2\u8272\u3002"} +{"id": "8003527", "video_name": "cf9e0781-d037-5bd2-a6ca-8b8765e16d3e", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u6a21\u7279\u5973\u5b69\u5728\u5496\u5561\u5e97\u91cc\u559d\u5496\u5561\uff0c\u7cbe\u7ec6\u7684\u827a\u672f\uff0c2D\u63d2\u56fe\uff0c8K\u4e0d\u771f\u5b9e\uff0c"} +{"id": "8003892", "video_name": "afed9990-c4cb-5c6b-99a3-00548a592c72", "text": "\u521b\u9020\u4e00\u4e2a\u597d\u770b\u7537\u5b69\u7684\u903c\u771f\u52a8\u753b\u6d41\u3002"} +{"id": "2004715", "video_name": "efe7add3-fb05-5a11-b470-f5bbf665c292", "text": "\u7535\u5f71\u5f0f\u955c\u5934\u5c55\u73b0\u8d85\u73b0\u4ee3\u9ed1\u5ba2\u516c\u53f8\u95f4\u8c0d\u6d3b\u52a8\u3002"} +{"id": "4002893", "video_name": "daf2a3fa-df19-5516-ad54-f436a4f939bc", "text": "\u4e24\u4e2a\u7537\u4eba\u7ad9\u5728\u5f7c\u6b64\u9762\u524d\uff0c\u4ed6\u4eec\u4e4b\u95f4\u6709\u7d27\u5f20\u6c14\u6c1b\u3002"} +{"id": "2007607", "video_name": "6ea7b1d1-8daf-5e0d-85a0-4a6c6a25fc55", "text": "\u4e00\u4f4d\u7a7f\u7740\u7f8a\u6bdb\u8863\u7684\u5973\u5b69\u5750\u5728\u4e00\u6761\u6cb3\u8fb9\uff0c\u8eab\u5904\u4e8e\u4e00\u4e2a\u5b8c\u5168\u7531\u7f8a\u6bdb\u6784\u6210\u7684\u4e16\u754c\u3002"} +{"id": "3004995", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "\u6709\u7740\u575a\u5b9a\u7684\u5fc3\uff0c\u72ee\u5b50\u8e0f\u4e0a\u4e86\u65c5\u7a0b\u3002\u4ed6\u8e0f\u8fc7\u9ad8\u8349\uff0c\u5c0f\u5c0f\u7684\u722a\u5b50\u51e0\u4e4e\u6ca1\u6709\u53d1\u51fa\u58f0\u97f3\u3002\u8349\u5730"} +{"id": "0003398", "video_name": "3cf8f318-3d93-5573-b2c3-8ac59daaec81", "text": "\u5e26\u6709\u4e00\u4e2a\u7a7f\u7740\u7a7a\u624b\u9053\u670d\u7684\u5b69\u5b50\u7684\u76ae\u514b\u65af\u6d77\u62a5"} +{"id": "4003004", "video_name": "9d3854fc-a33e-52dd-97d2-484d72dafcdb", "text": "\u5973\u7814\u7a76\u5458\u8eba\u5728\u5730\u4e0a\uff0c\u4e00\u4e2a\u673a\u5668\u4eba\u7d27\u5f20\u5730\u63a8\u7740\u5979\u3002"} +{"id": "0005899", "video_name": "22f5d048-03ad-5255-be7e-d8333858ec5a", "text": "\u65d7\u8230\u4ece\u5730\u7403\u964d\u843d\u5728\u6728\u661f\u4e0a\u3002\u903c\u771f\u7684\u753b\u9762\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "1005413", "video_name": "6378ff0b-c213-5be6-926d-a4499e549158", "text": "\u4e00\u7247\u6d77\u6ee9\u88ab\u843d\u65e5\u7684\u91d1\u8272\u4f59\u6656\u6240\u6620\u7167\u3002"} +{"id": "2007897", "video_name": "c84c3926-b247-56f9-86d0-f0de7274f217", "text": "\u90a3\u4e2a\u7537\u4eba\u5012\u5728\u5730\u4e0a\uff0c\u75db\u82e6\u5730\u547b\u541f\u7740\u3002"} +{"id": "3003207", "video_name": "b8f05693-cc54-51ae-9df1-ea2755b28bf1", "text": "\u5728\u4e00\u5bb6\u9ad8\u6863\u9910\u5385\u91cc\uff0c\u732b\u5145\u5f53\u670d\u52a1\u5458\u3002\u5b83\u4eec\u7a7f\u7740\u5c0f\u9ed1\u56f4\u88d9\uff0c\u719f\u7ec3\u5730\u5e73\u8861\u6258\u76d8\u4e0a"} +{"id": "1004720", "video_name": "57925e0e-b185-5dd9-981d-a0fdca16a096", "text": "\u7d27\u7d27\u6293\u4f4f\u6211\u7684\u547c\u5438\uff0c\u8ba9\u4e8b\u60c5\u987a\u5176\u81ea\u7136\u3002\u89c6\u89c9\u4e0a\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "3003530", "video_name": "c9cd5edb-5a98-59a6-9566-be2bde24f117", "text": "\u706b\u5f71\u5fcd\u8005\u75be\u98ce\u4f20\u4e2d\u7a7f\u7740\u5b87\u667a\u6ce2\u9f2c\u670d\u88c5\u7684\u9e23\u4eba"} +{"id": "2004522", "video_name": "997e87ec-2603-5919-b123-90483c54b438", "text": "UFO\u548c\u5916\u661f\u4eba\u5165\u4fb5\u767d\u5bab\u3002"} +{"id": "6004334", "video_name": "52494dd9-427e-5d52-9178-99bed52574e7", "text": "\u4e00\u4e2a\u88ab\u6570\u767e\u4e2a\u88c5\u6ee1\u514b\u9686\u4eba\u4f53\u7684\u5927\u578b\u73bb\u7483\u7ba1\u7167\u4eae\u7684\u9ed1\u6697\u623f\u95f4\u3002\u4e00\u7fa4\u5c0f\u65e5\u672c\u7537\u5b69\u5728\u5176\u4e2d"} +{"id": "6003972", "video_name": "2474e667-7b90-5dee-86aa-9c954044c478", "text": "\u4e00\u6240\u7f8e\u4e3d\u7684\u4f4f\u5b85\uff0c\u5e26\u6709\u4e00\u4e2a\u975e\u5e38\u7eff\u8272\u7684\u9662\u5b50\u3002"} +{"id": "8002652", "video_name": "e894f36b-63bd-57ce-9216-846196bc3f30", "text": "\u8df3\u821e\u72ec\u884c\uff0c\u8d85\u7ea7\u7535\u5f71\u822c\u7684\u955c\u5934\u3002"} +{"id": "7004932", "video_name": "0199059d-c5ac-5393-b3cf-b09eb85012c1", "text": "\u6162\u6162\u5730\u6cbf\u7740\u8def\u5f84\u5411\u76f8\u673a\u524d\u8fdb\uff0c\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\u3002\u9644\u4e0a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6002220", "video_name": "6f31f4de-6bfe-5ae8-81d6-f7c9f8f838f0", "text": "\u8ba9\u5fb7\u65af\u8d6b\u7ee7\u7eed\u6210\u4e3a\u4e00\u4ee3\u53c8\u4e00\u4ee3\u5deb\u5e08\u548c\u5973\u5deb\u7684\u5bfc\u5e08\u548c\u542f\u53d1\u8005\u3002"} +{"id": "3006846", "video_name": "17521335-3dd3-576a-866e-366628d71e10", "text": "\u96ea\u82b1\u7eb7\u98de\uff0c\u6ed1\u96ea\u677f\u4e0a\u7684\u5b69\u5b50\u4eec\u5728\u96ea\u767d\u7684\u51ac\u5b63\u68ee\u6797\u4e2d\u3002"} +{"id": "7002424", "video_name": "7d691147-a413-574a-b68e-52391ab046b1", "text": "\u6df1\u591c\u8131\u53e3\u79c0\u4e3b\u6301\u4eba\u5728\u8c08\u8bba\u7531\u5927\u536b\u00b7\u514b\u6717\u4f2f\u683c\u8bbe\u8ba1\u7684\u534a\u4eba\u534a\u517d\u751f\u7269\u7684\u8096\u50cf\u3002"} +{"id": "2003369", "video_name": "5a891e1d-ddfa-5f0a-9051-c8e8e315756a", "text": "\u7011\u5e03\u524d\u7684\u5973\u795e\u5408\u6210\u6ce2\u8d85\u65b0\u661f\u7206\u53d1\u3002"} +{"id": "4003488", "video_name": "aae3cc15-abe5-5c57-af59-1d2f83054831", "text": "\u4e2d\u56fd\u4e09\u56fd\u65f6\u671f\u7684\u8d75\u5b50\u9f99\u5c06\u519b\u3002"} +{"id": "0004291", "video_name": "067dee5a-9809-5afe-8ffe-a82e5b62108a", "text": "\u4e00\u4e2a\u52c7\u58eb\u5973\u5b69\u5728\u672b\u65e5\u573a\u666f\u4e0b\u63a5\u8fd1\u739b\u96c5\u5e9f\u589f\u3002"} +{"id": "6004648", "video_name": "ce5e5702-4817-59ac-bfe7-2887a024aaff", "text": "\u4e00\u4e2a\u9b3c\u9b42\u5c0f\u961f\u5728\u6218\u4e89\u533a\u884c\u8d70\uff0c\u80cc\u666f\u5145\u6ee1\u6218\u4e89\u7684\u6c14\u606f\u3002"} +{"id": "3005431", "video_name": "ac8a7657-9740-5578-b67d-c436e35ea266", "text": "\u5de5\u5ee0\u88fd\u9020\u5361\u901a\u7f50\u88dd\u6de1\u5976\u3002"} +{"id": "1006542", "video_name": "77d74a35-5717-5b98-8ebe-7f1d05c0f100", "text": "\u5728\u8282\u65e5\u7684\u73af\u5883\u4e0b\uff0c\u9c81\u9053\u592b\u62e5\u6709\u4e00\u53ea\u7ea2\u9f3b\u5b50\u3002"} +{"id": "7003594", "video_name": "8d2f3056-0082-5d89-93fc-f697e4abf9c7", "text": "\u52a8\u6f2b\u5973\u5b69\u6b63\u9762\u7ad9\u7acb\u7684\u89c6\u89d2"} +{"id": "0003977", "video_name": "00f878b5-cf9b-5261-aa65-b79a7b5cbee8", "text": "\u6211\u53d7\u8fc7\u8f83\u4f4e\u7684\u6559\u80b2\uff0c16:9\u3002"} +{"id": "4004605", "video_name": "c1af73b8-cff5-57f4-9050-9a6095a2f332", "text": "\u5728\u661f\u9645\u7a7a\u95f4\u4e2d\uff0c\u7070\u8272\u7684\u6708\u4eae\u5728\u6052\u661f\u4e2d\u65cb\u8f6c\uff0c\u5468\u56f4\u6709\u8bb8\u591a\u6d41\u661f\u548c\u592a\u9633\u3002"} +{"id": "5001295", "video_name": "267d797c-92af-51b4-96d6-401b34281162", "text": "\u670b\u53cb\u4eec\u60ca\u53f9\u4e8e\u72fc\u4eba\u7684\u5a01\u4e25\u548c\u6050\u60e7\uff0c\u4f46\u662f\u72fc\u4eba\u6ca1\u6709\u653b\u51fb\uff0c\u800c\u662f\u5f00\u59cb\u5728\u6708\u5149\u4e0b\u8df3\u821e\u548c"} +{"id": "8003526", "video_name": "a06d5a68-c4ef-5098-9f83-f84aa25d5b48", "text": "\u62bd\u8c61\u6c34\u5f69\u6d41\u4f53\u827a\u672fOctane\u6e32\u67d3\u8d85\u5199\u5b9e\u89c6\u9891"} +{"id": "1004025", "video_name": "4aae6a7a-b114-5eae-abe7-e823d03755f9", "text": "\u805a\u7126\u6444\u50cf\u5934\u89d2\u5ea6\uff0c\u8f6c\u6362\u6210\u4e09\u7ef4\u6548\u679c\u3002"} +{"id": "1006349", "video_name": "7444d5de-7d44-580d-9199-be4438a1139f", "text": "\u673a\u5668\u4eba\u91cd\u88c5\u5907\u5728\u8857\u4e0a\u884c\u8d70\u7684\u573a\u666f\u5e94\u8be5\u770b\u8d77\u6765\u903c\u771f\uff0c\u89c6\u9891\u8d28\u91cf\u5e94\u8be5\u5f88\u9ad8\u3002"} +{"id": "2003630", "video_name": "e3d7acac-2c15-5087-8569-d5176e04ca34", "text": "\u9ad8\u6e05\u753b\u9762\u4e2d\uff0c\u4e00\u5bf9\u604b\u7231\u4e2d\u7684\u60c5\u4fa3\u7ad9\u5728\u4e00\u4e2a\u8212\u9002\u7684\u5730\u65b9\u3002\u8fd9\u662f\u4e00\u7247\u51e0\u4e4e\u8ba9\u4eba\u611f\u89c9\u50cf\u5728\u68a6\u4e2d\u4e00"} +{"id": "4003036", "video_name": "b464a873-f604-5e82-9601-f5af32b8e94b", "text": "\u94c1\u4eba\u5728\u65e9\u6668\u7684\u68ee\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "3004778", "video_name": "3e249b7e-0cb6-5ac3-9ac0-e1a602d66ea9", "text": "\u4ece\u80cc\u540e\u770b\uff0c\u7a7f\u7c89\u8272\u6bdb\u8863\u7684\u7f8e\u4e3d\u68d5\u53d1\u5e74\u8f7b\u5973\u5b50\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "7004368", "video_name": "9bb7a5f8-7711-566e-a94b-76bbb2fa8a5f", "text": "\u4e00\u4e2a\u6234\u5934\u76d4\u7684\u5973\u5b69\u9a91\u7740\u4e00\u8f86\u7ea2\u8272\u6469\u6258\u8f66\uff0c\u5728\u9713\u8679\u706f\u95ea\u70c1\u7684\u57ce\u5e02\u666f\u89c2\u4e2d\u884c\u9a76\uff0c\u8def"} +{"id": "5001471", "video_name": "9a8e6c2e-ad3c-502b-bc8b-3ae2823ef347", "text": "\u4e00\u53ea\u8001\u5f0f\u5361\u901a\u98ce\u683c\u7684\u8001\u9f20\uff0c\u5728\u76d1\u72f1\u91cc\uff0c\u7a7f\u7740\u56da\u670d\u3002"} +{"id": "8002811", "video_name": "54068e67-2cba-5e6b-a319-b15ad7e3d905", "text": "\u4e00\u9897\u70bd\u70ed\u7684\u6d41\u661f\u4ee5\u9ad8\u901f\u98de\u884c\u5728\u5730\u7403\u7684\u80cc\u666f\u4e0a\uff0c\u8fdc\u79bb\u6444\u50cf\u5934\u5e76\u63a5\u8fd1\u661f\u7403\uff0c\u573a\u666f\u89c6\u89d2\u6781\u4f73\uff0c"} +{"id": "8001756", "video_name": "09ed4ad3-66cd-553f-aa3e-e8e073000130", "text": "\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u6b63\u5728\u5065\u8eab\u623f\u91cc\u505a\u5f15\u4f53\u5411\u4e0a\u3002\u6a59\u8272\u7684\u5915\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5728\u4ed6\u8eab\u4e0a\u3002\u80cc\u666f"} +{"id": "5001477", "video_name": "ea415f4a-964a-5d52-b4c2-f17e29785a7f", "text": "\u4e00\u4e2a\u5b64\u5bc2\u800c\u9ed1\u6697\u7684\u57ce\u9547\u5728\u508d\u665a\u3002"} +{"id": "1006365", "video_name": "74955746-1059-5b24-8887-aa4d97d2b053", "text": "Maia Sandu\u6b63\u5728\u50cfMarge Simpson\u4e00\u6837\u526a\u65b0\u53d1\u578b\u3002"} +{"id": "8002479", "video_name": "50a94190-f63f-53e8-bc86-a1e446e4d7b2", "text": "\u665a\u4e0a\u5728\u65e5\u672c\u52a8\u753b\u4e2d\u7684\u82b1\u56ed\u91cc\u4e0b\u96ea\u4e86\u3002"} +{"id": "1005403", "video_name": "6345c34e-0594-50c0-9498-decfa48fffdd", "text": "\u5de8\u5927\u53ef\u6015\u7684\u7ae0\u9c7c\u5728\u6d77\u5e95\u4e0b\u3002"} +{"id": "8001900", "video_name": "c055c4c2-a2d6-5770-8eed-acb3d17eca2f", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5b66\u6821\u5df4\u58eb\u7684\u95e8\u5f00\u5173\uff0c8K\u3001\u8d85\u9ad8\u6e05\u3002"} +{"id": "4003259", "video_name": "c26cbe9f-6f23-580f-941f-006cdc740f21", "text": "\u8fd9\u662f\u4e00\u6bb55\u79d2\u949f\u7684\u89c6\u9891\uff0c\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u7684\u5973\u9020\u578b\u5e08\u6b63\u5728\u4e3a\u5979\u7684\u6a21\u7279\u7a7f\u8863\u670d\u3002\u5979\u6709\u4e00\u5934\u957f\u957f\u7684\u68d5\u8272\u5934\u53d1\uff0c\u7a7f"} +{"id": "3004555", "video_name": "3df342cb-f3b2-5fa4-8bb7-8139f75f8d98", "text": "\u8fc8\u514b\u00b7\u6cf0\u68ee\u548c\u7ea6\u7ff0\u5c3c\u00b7\u5fb7\u666e\u4e4b\u95f4\u7684\u6218\u6597"} +{"id": "2004589", "video_name": "005ea40d-191e-5355-ae88-51e8088d2edc", "text": "\u6b22\u4e50\u7b11\u58f0\u5728\u68ee\u6797\u95f4\u56de\u8361\u7684\u52a8\u753b\u5e8f\u5217\u3002"} +{"id": "0005142", "video_name": "1588aca9-3e1b-57b4-884b-420959d65bb5", "text": "\u67cf\u6797\u8857\u5934\u6df7\u4e71\uff0c\u5c31\u5728\u4e16\u754c\u672b\u65e5\u4e4b\u524d\uff0c\u6838\u751f\u5316\u6b66\u5668\u5c31\u8981\u88ad\u51fb\u67cf\u6797\uff0c\u4e00\u540d\u5e74\u8f7b\u7684\u8b66\u5bdf\u4e0e"} +{"id": "1005991", "video_name": "6e25ec48-3690-59a4-bd1c-7ab2c88bfe0d", "text": "\u4ece\u4e0a\u9762\u770b\uff0c\u771f\u5b9e\u7684\u5168\u8eab\u52a8\u4f5c\u955c\u5934\uff0c\u770b\u8d77\u6765\u50cf\u5947\u5f02\u535a\u58eb\u7684\u8d85\u7ea7\u82f1\u96c4\u62c9\u6bd4\uff0c\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u4e16\u754c\u4e2d\u4e0e\u90aa\u6076"} +{"id": "0004493", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "\u96ea\u4e2d\u884c\u8d70 (Font: MODERN)"} +{"id": "3004878", "video_name": "01b1fd9e-b9a7-54c1-a4b6-65ae0527f956", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u4e2d\u4e16\u7eaa\u5e7b\u60f3\u98ce\u683c\u57ce\u5821\uff0c\u4e0a\u9762\u6709\u4e00\u53ea\u9f99\u3002"} +{"id": "1006233", "video_name": "723ac7ea-558e-530c-9dd5-1c37c60ae88a", "text": "\u5979\u6240\u7ecf\u5386\u7684\u5fc3\u788e\u4e0d\u518d\u662f\u6c89\u91cd\u7684\u8d1f\u62c5\uff0c\u800c\u662f\u6210\u4e3a\u4e86\u66f4\u575a\u5f3a\u3001\u66f4\u6709\u540c\u60c5\u5fc3\u7684\u81ea\u5df1\u7684\u57ab\u811a\u77f3"} +{"id": "2006530", "video_name": "ee251d2a-1a60-5cc2-83ba-c367fa58a206", "text": "\u521b\u9020\u4e00\u4e2a\u5e7d\u9ed8\u76843D\u63cf\u7ed8\uff0c\u63cf\u7ed8Sheikh Chili\u4ece\u4ed6\u7684\u6bcd\u4eb2\u63a5\u53d7\u4f20\u7edf\u7684\u5df4\u57fa\u65af\u5766\u60e9\u7f5a\uff0c"} +{"id": "7003014", "video_name": "78bf1ae3-de93-5364-adf0-9e26ded390b8", "text": "\u5411\u65e5\u8475\u5c0f\u5b66\u662f\u4e00\u6240\u5145\u6ee1\u751f\u673a\u7684\u5b66\u6821\uff0c\u88c5\u9970\u7740\u5411\u65e5\u8475\u58c1\u753b\uff0c\u5b69\u5b50\u4eec\u5728\u73a9\u800d\uff0c\u7a7a\u6c14\u4e2d"} +{"id": "4002770", "video_name": "edcb2b3b-d431-5b45-9343-707a605bd768", "text": "\u4e9a\u5386\u514b\u65af\u4ece\u4e8b\u6709\u5bb3\u4e8e\u81ea\u5df1\u7684\u6d3b\u52a8\u3002"} +{"id": "2005730", "video_name": "033f880b-e799-507d-8ca5-25ea88e3d422", "text": "\u5c06\u4e00\u6761\u7eff\u8272\u76f4\u7ebf\u7ffb\u8bd1\u6210\u4e00\u4e2a\u7ea2\u8272\u5706\u5708\u3002"} +{"id": "2005156", "video_name": "b3ed3bf6-c453-5f55-931e-2200e28b698c", "text": "\u5361\u7247\u4e2d\u592e\u662f\u4e00\u6735\u5927\u800c\u76db\u5f00\u7684\u85b0\u8863\u8349\u82b1\uff0c\u7d2b\u8272\u7684\u82b1\u74e3\u5ef6\u4f38\u5230\u5361\u7247\u7684\u9876\u90e8\u3002\u82b1"} +{"id": "3006529", "video_name": "b49868b7-b7f9-5597-b991-15ad8994b16e", "text": "\u6700\u7ec8\u5e7b\u60f3\u98ce\u683c\uff0c\u7f8e\u4e3d\u7684\u4ed9\u5973\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u767d\u8272\u7684\u8fde\u8863\u88d9\u3002"} +{"id": "8001885", "video_name": "38c33355-f9de-5bde-ae9c-202759858427", "text": "\u7f51\u7edc\u5564\u9152\u5382\uff0c\u5361\u901a\u98ce\u683c\u573a\u666f\uff0c\u6726\u80e7\u611f\u89c9\uff0c\u975e\u5e38\u6709\u8da3\u3002"} +{"id": "2007620", "video_name": "017c5f6f-88c6-51e0-a8f5-d102c51c880e", "text": "\u8fd9\u5e45\u753b\u5c55\u793a\u4e86\u4e00\u7fa4\u4eba\u4ece\u7ad9\u7acb\u5230\u9010\u6e10\u5012\u584c\u7684\u8fc7\u7a0b\uff0c\u770b\u8d77\u6765\u50cf\u662f\u4eba\u7c7b\u8fdb\u5316\u7684\u5f62\u8c61\uff0c\u5bcc\u6709\u60f3\u8c61\u529b\uff0c\u5305\u542b"} +{"id": "3005087", "video_name": "338b06a8-9573-502c-8d10-48980fca569f", "text": "\u4e00\u4f4d\u62e5\u6709\u7f8e\u4e3d\u9762\u5bb9\u7684\u5973\u5b69\uff0c\u5979\u7684\u5934\u53d1\u53c8\u957f\u53c8\u7f8e\u4e3d\uff0c\u8eab\u6750\u5300\u79f0\u9ad8\u6311\u3002\u5979\u8138\u988a\u4e0a\u7684\u96c0"} +{"id": "0004533", "video_name": "0ac4c7be-cd9e-5e99-a32c-a3d6346a7cd1", "text": "he found the source of the infection.\n\n\u5f53\u4ed6\u6253\u5f00\u75c5\u4eba\u65f6\uff0c\u4ed6\u53d1\u73b0\u4e86\u611f\u67d3\u7684\u6e90\u5934\u3002"} +{"id": "3003441", "video_name": "4380b223-c111-58b8-be2f-4f59528a11c1", "text": "\u4ed6\u7684\u670d\u88c5\u4e0a\u6709\u4e00\u4e2a\u5927\u5199\u5b57\u6bcdM\u7684\u8d85\u7ea7\u82f1\u96c4"} +{"id": "7002229", "video_name": "b667ea8a-2c64-5aa9-9f43-046c7f66e1c6", "text": "\u52a8\u6f2b\u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7684\u7d22\u9686\u548c\u8def\u98de\u3002"} +{"id": "8003823", "video_name": "40ac09f9-6633-5a98-9649-6355a91b76ba", "text": "\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u4ed6\u56db\u5904\u5f20\u671b\u3002"} +{"id": "3003364", "video_name": "a581b7b4-9f74-5950-b6fd-cec8c08abd2f", "text": "\u4e24\u4e2a\u7f8e\u4e3d\u768425\u5c81\u5973\u5b69\u5728\u7ebd\u7ea6\u7684\u8857\u5934\u8df3\u821e\u3002"} +{"id": "4004639", "video_name": "5af96092-2125-5fe9-8694-7db9b8fc4355", "text": "\u7334\u5b50\u3001\u5927\u8c61\u3001\u72d0\u72f8\u3001\u72ee\u5b50\u3001\u8c79\u5b50\u548c\u9e7f\u5728\u4e1b\u6797\u91cc\u8df3\u821e\u3002 \n\nSource sentence: The sky is blue and the sun is"} +{"id": "3004023", "video_name": "1656e089-7ad2-5717-845c-8b5f8f6e3807", "text": "\u57289:16\u62cd\u6444\u4e00\u4e2a\u7a7f\u7740\u7761\u8863\u7684\u7537\u4eba\u5728\u5c4b\u9876\u4e0a\u884c\u8d70\uff0c\u7eca\u5012\u5728\u4e00\u5757\u77f3\u5934\u4e0a\u7684\u811a\u672c\u3002"} +{"id": "7004491", "video_name": "916132e4-88b7-565c-9cd1-66949725e4a6", "text": "\u6293\u4f4f\u90a3\u4e2a\u795e\u5947\u7684\u65f6\u523b\uff0c\u5f53\u65af\u5e15\u57fa\u5229\u7528\u4ed6\u7684\u98de\u884c\u80fd\u529b\u4ece\u68d8\u624b\u7684\u60c5\u51b5\u4e2d\u89e3\u6551\u51fa\u4ed6\u7684\u68ee\u6797"} +{"id": "3004590", "video_name": "7af9c420-34c4-5fbd-9e7e-7eb9d925a7c7", "text": "\u5728\u5f15\u9886\u4e4b\u661f\u7684\u5149\u8f89\u4e0b\uff0c\u7267\u7f8a\u4eba\u548c\u5b69\u5b50\u4eec\u5230\u8fbe\u4e86\u4f2f\u5229\u6052\uff0c\u5728\u90a3\u91cc\u4ed6\u4eec\u5728\u4e00\u4e2a\u8c26\u5351\u7684\u9a6c\u53a9\u91cc\u627e"} +{"id": "6002766", "video_name": "d4c49cc1-6a96-5d74-84b1-f9e39bd81734", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96e8\u4e2d\u8df3\u821e\u7684\u89c6\u9891\uff0c\u5915\u9633\u4e0b\uff0c\u80cc\u666f\u662f\u62f1\u95e8\u3002"} +{"id": "2005757", "video_name": "ac50996b-8f9c-5a84-9ffa-ecfa8b43380d", "text": "\u4e00\u4e2a\u6709\u5361\u901a\u5f62\u8c61\u7684\u7537\u4eba\uff0c\u4ed6\u7684\u540d\u5b57\u53eb\u7ef4\u4ed6\u5148\u751f\u3002"} +{"id": "7003237", "video_name": "e2465bb7-5b66-5366-beef-c3a0f9214f1d", "text": "\u591c\u5e97\u91cc\u5e26\u7740\u706f\u5149\u7684\u53ef\u7231\u5973\u5b69\uff0c\u6d77\u6ee9\u4e0a\u3002"} +{"id": "8003413", "video_name": "6f042524-358e-5712-a00e-43498df90a33", "text": "\u6bcf\u5e74\uff0c\u5728\u7ebd\u7ea6\u5dde\u3001Riverkeeper\u548cEntergy\u79d8\u5bc6\u4f1a\u8bae\u4e4b\u524d\uff0c\u4ed6\u4eec\u8fbe\u6210\u4e86\u5173\u95ed\u534f\u8bae\uff0c\u5e76\u4e8e2017\u5e741\u6708\u7531Andrew Cuomo\u5ba3\u5e03\u3002"} +{"id": "4004865", "video_name": "da3b1030-a0bd-575a-bbec-bb9874ff99c8", "text": "\u53cd\u4e4c\u6258\u90a6\u9ed1\u6697\u57ce\u5e02\u753b\u9762\u6bd4\u4f8b2:1\u7684\u7535\u5f71\u611f\u3002"} +{"id": "2006545", "video_name": "2f67457d-961d-5ed5-bb1d-71dfbf35b5fd", "text": "\u90a3\u4e2a\u4ece\u4e0d\u547c\u5438\u5374\u5df2\u6b7b\u53bb\u7684\u7537\u5b69\u7684\u4f20\u8bf4\uff0c\u54e6\uff0c\u7a46\u7f55\u9ed8\u5fb7\u3002"} +{"id": "8001883", "video_name": "76f862f5-7e86-5e27-9e55-d3185ee8bc6b", "text": "\u5728\u4e1b\u6797\u4e2d\uff0c\u4e00\u53ea\u5154\u5b50\u88ab\u4e0d\u540c\u7684\u52a8\u7269\u5305\u56f4\u3002"} +{"id": "1004422", "video_name": "51cf9577-bb80-5619-97fa-9bf48874bd8d", "text": "\u897f\u73ed\u7259\u57ce\u5e02\u666f\u89c2\uff0c\u6c34\u6676\u5efa\u7b51\uff0c\u5149\u7ebf\u6298\u5c04\u3002"} +{"id": "0006112", "video_name": "26cad07d-e220-5f17-9184-db287c33405c", "text": "\u65cb\u8f6c\u901f\u5ea6\u5feb\u7684\u6307\u5357\u9488\u3002"} +{"id": "6004197", "video_name": "b3187905-ea99-50cb-b370-0165cb53d073", "text": "\u955c\u5934\u5411\u4e0b\uff0c\u62cd\u6444\u5230\u7eff\u8272\u7684\u81ea\u7136\u666f\u89c2\uff0c\u5c71\u4e0a\u6709\u7011\u5e03\u3002"} +{"id": "0005180", "video_name": "162fd6aa-0143-5f34-b319-7aadd6946acc", "text": "\u4e09\u540d\u533b\u751f\u4e0e\u4e00\u540d\u75c5\u4eba\u4ea4\u8c08\u3002"} +{"id": "4002008", "video_name": "f5f50486-3359-51f6-9d39-bddcbcc8e96c", "text": "\u673a\u5668\u4ee5\u8f7b\u67d4\u7684\u201c\u549a\u201d\u58f0\u964d\u843d\u5728\u4e00\u4e2a\u5947\u5999\u7684\u5730\u65b9\u3002"} +{"id": "3003669", "video_name": "d1498983-2760-5bf6-8d18-be8c0eb4a10c", "text": "\u4e00\u7247\u6df1\u9083\u7684\u9ed1\u6697\u68ee\u6797\uff0c\u7f29\u8fdb\u4e00\u68f5\u7279\u5b9a\u7684\u6811\u4e0b\uff0c\u770b\u89c1\u4e00\u4e2a\u4eba\u76d8\u819d\u5750\u5728\u6811\u4e0b\u51a5\u60f3\u3002"} +{"id": "3003257", "video_name": "fde75fa5-2bef-5ed6-8c77-50b20557b97a", "text": "\u4e00\u8f86\u6709\u673a\u8f66\u7684\u706b\u8f66\u7a7f\u8fc7\u4e00\u7247\u677e\u6797\u3002"} +{"id": "0006087", "video_name": "266a844f-70f3-5ea3-be73-8fc15b579da1", "text": "\u4e00\u4f4d\u540d\u4e3a\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u5979\u7684\u773c\u4e2d\u95ea\u8000\u7740\u68a6\u60f3\uff0c\u5979\u7684\u5fc3\u8ddf\u968f\u7740\u5e0c\u671b\u8d77"} +{"id": "2003288", "video_name": "d08bb5aa-5d21-500d-9855-555f3e8e17e2", "text": "\u68d2\u4eba\u7bee\u7403\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "0005272", "video_name": "179e5976-ecfb-5dd4-9e99-1959bd1aaa60", "text": "\u4e00\u7247\u5e7f\u9614\u795e\u8bdd\u822c\u7684\u6218\u573a\u6a2a\u8de8\u5929\u9645\u3002\u9ed1\u6697\u7684\u66b4\u98ce\u4e91\u5728\u5934\u9876\u4e0a\u76d8\u65cb\uff0c\u6295\u4e0b\u8be1\u5f02\u3001\u4e0d"} +{"id": "3004283", "video_name": "7a0901d3-0ffb-5394-892a-db0dd1a93f21", "text": "\u4e00\u5bf9\u6df1\u7231\u7740\u5f7c\u6b64\u7684\u60c5\u4fa3\u5728\u4ea4\u8c08\u3002"} +{"id": "0006910", "video_name": "3538d334-b5f8-55ad-8ef7-91100e0bb580", "text": "\u4ece\u68ee\u6797\u5230\u6751\u5e84\u7684\u822a\u62cd\u753b\u9762\uff0c\u98ce\u666f\u4f18\u7f8e\u3002\n\nSource sentence: The COVID-19 pandemic has affected the entire world, causing widespread illness, death, and economic disruption. \n\n\u65b0"} +{"id": "0006029", "video_name": "25555128-3795-580d-b615-8a780357d02b", "text": "\u683c\u9c81\u7279\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\u5f39\u7740\u5409\u4ed6\u3002"} +{"id": "0003969", "video_name": "00dee24b-14e7-55b7-9a76-2e5fe999c77e", "text": "\u4e00\u4f4d\u5973\u60a3\u8005\u6253\u5f00\u51b0\u7bb1\u5e76\u62ff\u51fa\u836f\u7247\u3002"} +{"id": "3004932", "video_name": "cae62766-30c9-5f5c-a7ad-129850c921eb", "text": "\u4e00\u540d\u5973\u58eb\u5175\uff0c\u4e2a\u5b50\u77ee\u5c0f\uff0c\u6124\u6012\u5730\u5c16\u53eb\u30024K\u3001\u9ad8\u5bf9\u6bd4\u5ea6\u300165\u6beb\u7c73\u5bbd\u5c4f\u5e55\u3001\u8d85\u771f\u5b9e\u300116K"} +{"id": "1005858", "video_name": "6bd9a412-2faa-5938-b26e-f8877afdb0f7", "text": "\u52a8\u753b\u5370\u5ea6\u706b\u7bad\u8fdb\u5165\u592a\u7a7a\u3002"} +{"id": "3006269", "video_name": "547d33c7-7d6e-5bb0-a2df-4e68d8f2cccd", "text": "\u521b\u9020\u4e00\u4e2a\u5341\u79d2\u7684\u89c6\u9891\uff0c\u5f00\u5934\u662f\u65b0\u7684\u623f\u5730\u4ea7\u5efa\u7b51\u7269\u7684\u65e0\u4eba\u673a\u955c\u5934\uff0c\u771f\u5b9e\u611f\u3002"} +{"id": "4003299", "video_name": "ad2541c6-909c-5473-a9c8-b508578c687b", "text": "\u91d1\u53d1\u7cbe\u7075\u5973\u5b69\u7a7f\u7740\u7eff\u8272\u88d9\u5b50\u5728\u5c71\u4e0a\u5954\u8dd1\u3002"} +{"id": "7004281", "video_name": "55c9527f-d427-5804-bb3c-019c45379493", "text": "\u5728\u7eff\u6d32\u9644\u8fd1\u7684\u6c99\u6f20\u4e0a\u751f\u6210\u4e00\u8f86\u9646\u864e\u536b\u58eb\u7cfb\u5217\u8f66\uff1f"} +{"id": "1004339", "video_name": "50150a75-0823-5b0e-b651-81d55f18a7e2", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5370\u5ea6\u5973\u4eba\u5728\u8df3\u821e\u3002"} +{"id": "8001589", "video_name": "dd9f3f73-74f7-5bba-825c-8c8fa2825381", "text": "\u6162\u52a8\u4f5c\u89c6\u9891\u5c55\u793a\u5927\u8c61\u7684\u817f"} +{"id": "4004324", "video_name": "1c7f1d25-63dc-5b90-bb41-51675877a45a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e5\u843d\u666f\u8272\uff0c\u89c6\u9891\u957f\u5ea6\u7ea630\u79d2\u3002\n\nSource sentence: I am currently studying Chinese and it is challenging but rewarding.\n\u6211\u76ee\u524d\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u8fd9\u662f\u5177\u6709\u6311\u6218"} +{"id": "8002307", "video_name": "05622d76-2cda-54cd-a387-c35588eba80d", "text": "\u8fd9\u4e9b\u6bd4\u8d5b\u7ed3\u5408\u4e86\u529b\u91cf\u3001\u6b32\u671b\u548c\u8363\u8a89\u7684\u5143\u7d20\u3002"} +{"id": "7003630", "video_name": "554408c5-6070-59c9-a3a0-4dc4461ede73", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u58eb\u5175\u5728\u6218\u4e89\u5ba4\u5185\u63a7\u5236\u7740\u4e00\u67b6\u65e0\u4eba\u673a\uff0c\u5728\u5c4f\u5e55\u4e0a\u70b8\u6bc1\u4e86\u4e00\u680b\u623f\u5b50\u3002"} +{"id": "7004978", "video_name": "fb59663c-fe07-555c-8ef4-dc7d4aa33bc8", "text": "\u95f9\u9b3c\u7684\u5fb7\u514b\u8428\u65af\u8fc7\u5c71\u8f66\u6e38\u4e50\u8bbe\u65bd\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "6003587", "video_name": "3c9578c5-ae04-549c-aeeb-1a432f249541", "text": "\u672a\u6765\u9065\u8fdc\u7684\u53cc\u5b50\u5ea7\u7a7a\u95f4\u7ad9\u7ed5\u5730\u7403\u8f68\u9053\u8fd0\u884c\uff0c\u7531\u6b65\u9053\u76f8\u4e92\u8fde\u63a5\u7684\u672a\u6765\u4e3b\u4e49\u6a21\u5757\uff0c\u80cc\u666f\u662f\u5b87\u5b99\u3002"} +{"id": "3005179", "video_name": "6d619f7d-98f2-5bad-84dd-420c5445eef6", "text": "\u8ba9\u67e5\u5c14\u65af\u00b7\u66fc\u68ee\u5728\u64ad\u5ba2\u91c7\u8bbf\u4e2d\u9732\u9762\u3002"} +{"id": "0004885", "video_name": "10e58e6a-f391-5b27-8325-04a63403a8d1", "text": "\u5723\u8bde\u5361\u7247\u6253\u5f00\uff0c\u84dd\u8272\u7684\u5723\u8bde\u6811\u4e0b\u98d8\u7740\u96ea\u82b1\u3002"} +{"id": "1005960", "video_name": "6d85c3e6-4c09-5676-8815-255e043dd52e", "text": "\u7535\u5f71\u7535\u5f71\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c70\u5e74\u4ee3\u827a\u672f\u7535\u5f71\uff0c\u6cd5\u56fd\u65b0\u6d6a\u6f6e\uff0c\u4ef2\u590f\u591c\u4e4b\u68a6\uff0c\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc"} +{"id": "2003398", "video_name": "e7b7da08-6a26-570d-847e-ac333f8dde17", "text": "\u5f00\u573a\u955c\u5934\uff1a\n\u5728\u80cc\u666f\u4e2d\u5851\u9020\u4e00\u4e2a\u5b89\u9759\u7684\u5e0c\u814a\u82b1\u56ed\uff0c\u914d\u4ee5\u53e4\u5178\u5efa\u7b51\u3002\n\u5c06\u6ca1\u6709\u56db\u80a2\u3001\u6ca1\u6709\u9762\u5bb9\u7684"} +{"id": "1006681", "video_name": "7a7e04cb-3175-5a7f-a8c2-fa0db326bee4", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\uff0c\u7a7f\u7740\u4e00\u4ef6\u98ce\u8863\uff0c\u5728\u65f6\u4ee3\u5e7f\u573a\u6563\u6b65\u3002"} +{"id": "7002612", "video_name": "e6cf7445-805d-530d-ab69-22f4c0996be4", "text": "\u4f7f\u7528\u52a8\u753b\u6216\u91cd\u5efa\u6280\u672f\u6765\u53ef\u89c6\u5316\u51b0\u96f9\u98ce\u66b4\uff0c\u5938\u5f20\u5730\u5c55\u73b0\u5173\u4e8eRoopkund\u9047\u96be\u8005\u6b7b\u4ea1\u539f\u56e0\u7684\u4e00\u79cd\u7406\u8bba"} +{"id": "0004915", "video_name": "1160a9f8-acc0-54cf-9658-0860e39265c2", "text": "\u6709\u673a\u5316\u5408\u7269\u53ef\u4ee5\u7ed3\u5408\u5f62\u6210\u66f4\u590d\u6742\u7684\u5206\u5b50\u3002"} +{"id": "2003565", "video_name": "dcb81344-9757-540d-9f2b-5fae50bd326f", "text": "\u5fae\u7b11\u7684\u5973\u5b69\u80cc\u666f\u662f\u84dd\u8272\u7684\u5929\u7a7a\u3002"} +{"id": "4002567", "video_name": "903bbcf0-eece-52f0-b0bd-8de03acaa4f0", "text": "\u5979\u6234\u7740\u9ad8\u8ddf\u978b\uff0c\u80a9\u4e0a\u630e\u7740\u624b\u63d0\u5305\uff0c\u7a7f\u8fc7\u4e94\u5f69\u6591\u6593\u7684\u57ce\u5e02\u8857\u533a\uff0c\u662f\u4e00\u4f4d\u62ab\u7740\u963f\u975e"} +{"id": "2005275", "video_name": "4fa0b5b1-a070-5a56-afda-6bccefb65fbc", "text": "\u5c18\u571f\u661f\u7403\u4e0a\u7684\u7a7a\u95f4\u666f\u89c2\uff0c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0005359", "video_name": "196cba11-5c7f-56ab-97c8-9cfe47a2532f", "text": "\u8d64\u58c1\u661f\u7403\u5927\u6218\u89d2\u8272\u5728\u6b7b\u661f\u5468\u56f4\u5954\u8dd1"} +{"id": "0004737", "video_name": "0e5caff9-8a3a-563f-9862-df19f18652ea", "text": "\u4e00\u4f4d\u8001\u725b\u4ed4\u88c1\u7f1d\u5bf9\u4ed6\u81ea\u5df1\u5236\u4f5c\u7684\u725b\u4ed4\u88e4\u975e\u5e38\u6ee1\u610f\u3002"} +{"id": "4004517", "video_name": "6f2303e7-1fd4-5667-8950-bd91ce939769", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u5b69\u5b50\u4eec\u5728\u96ea\u5730\u91cc\u73a9\u800d\u7684\u5bb6\u5ead\u5f55\u50cf\u3002"} +{"id": "2004712", "video_name": "b10e7e08-ee5b-55f9-8be0-7872196672ee", "text": "\u4e00\u7fa4\u9732\u8425\u8005\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "7002547", "video_name": "93caf05e-7c00-5c63-ae29-76ee28b3c92b", "text": "\u5c55\u73b0\u4e00\u4e2a\u81ea\u7136\u7684\u573a\u666f\uff0c\u6bd4\u5982\u4e00\u68f5\u5c0f\u6811\u6210\u957f\u4e3a\u5927\u6811\u7684\u8fc7\u7a0b\u6216\u5176\u4ed6\u81ea\u7136\u53d8\u5316\uff0c\u6765\u9610\u8ff0\u56e0\u679c\u81ea\u7136\u8fd0\u884c\u7684\u6982\u5ff5\u3002"} +{"id": "3004406", "video_name": "c72dab59-4893-568c-ad8f-857dee9691f1", "text": "\u4e00\u4e2a\u4eba\u548c\u4ed6\u7684\u732b\u5728\u6708\u7403\u4e0a\u6563\u6b65\u3002"} +{"id": "4004848", "video_name": "0e66ce94-d117-58ad-a8cd-6768cd264182", "text": "\u7537\u4eba\u548c\u5973\u4eba\u624b\u7275\u624b\uff0c\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u4ece\u4ed6\u4eec\u7684\u5fc3\u4e2d\u6563\u53d1\u51fa\u80fd\u91cf\u4e92\u76f8\u8fde\u63a5\uff0c\u5728\u4ed6\u4eec\u7684\u8eab\u4f53\u4e2d\u4f20\u9012\u7740\u80fd\u91cf"} +{"id": "8003049", "video_name": "019e67bb-37c1-5e79-95fe-87175f3491c5", "text": "\u4e09\u628a\u5251\u7684\u795e\u732b\uff0c\u5634\u91cc\u62ff\u4e00\u628a\uff0c\u624b\u91cc\u5404\u62ff\u4e00\u628a\uff0c\u6b63\u5728\u6218\u6597\u3002"} +{"id": "1003402", "video_name": "3ec661ba-5c6a-5355-9238-5386234ca271", "text": "\u201c\u5929\u56fd\u738b\u671d\u201d\u7535\u5f71\u4e2d\u7684\u8036\u8def\u6492\u51b7\u573a\u666f\u4e0e\u201c\u6218\u952440K\u201d\u4e2d\u7684\u592a\u7a7a\u6d77\u519b\u4e00\u540c\u51fa\u73b0\u4e86\u3002"} +{"id": "7004888", "video_name": "cc425a39-24f5-5cb8-ad21-b6770ba8824f", "text": "\u4e00\u7247\u7ea2\u8272\u7684\u5929\u7a7a\u4e2d\uff0c\u4e00\u8258\u5b87\u5b99\u98de\u8239\u6b63\u4ece\u4e0a\u7a7a\u964d\u843d\uff0c\u843d\u5730\u540e\u5468\u56f4\u7684\u6811\u6728\u88ab\u70e7\u6bc1\uff0c\u4e00"} +{"id": "2006029", "video_name": "0393fb08-9a54-58c1-90e1-293caa2c3369", "text": "\u6211\u5e0c\u671b\u6811\u968f\u7740\u98ce\u6447\u66f3\uff0c\u82b1\u968f\u7740\u98ce\u6447\u66f3\uff0c\u4e91\u968f\u7740\u98ce\u98d8\u52a8\u3002"} +{"id": "6002415", "video_name": "d017efa4-adb4-53d7-8ebe-a895103d1a12", "text": "\u4e00\u4e2a\u95ea\u70c1\u7740\u706f\u5149\u7684\u5e9f\u5f03\u5730\u4e0b\u5ba4\u3002"} +{"id": "4002563", "video_name": "e8e47191-25a8-5848-b3ad-21025e1dbc4a", "text": "\u6050\u6016\u573a\u666f\u4e2d\u95e8\u7684\u5f00\u5408"} +{"id": "0003270", "video_name": "3a96c672-264a-556a-b5b9-a7a14aa6cfd4", "text": "\u52a8\u6f2b\u7d20\u63cf\u98ce\u683c\u3002\u5934\u53d1\u7ea2\u8272\u7684\u5973\u4eba\u624e\u7740\u9a6c\u5c3e\uff0c\u7a7f\u7740\u6d77\u76d7\u670d\u88c5\uff0c\u624b\u6301\u9999\u70df\u8d70\u5728\u66b4"} +{"id": "1005320", "video_name": "61bd32d5-c213-5efd-aaf8-5ad50ec1d264", "text": "\u5b69\u5b50\u4eec\u6293\u8d77\u9065\u63a7\u5668\u770b\u5468\u516d\u65e9\u4e0a\u7684\u5361\u901a\u7247\u3002"} +{"id": "8003180", "video_name": "941dbd80-626a-5ce6-b055-d0ee288b7436", "text": "\u8fd9\u53ea\u732b\u7a7f\u7740\u4e00\u4ef6\u7ea2\u8272\u5916\u5957\u3001\u4e00\u4ef6\u767d\u8272\u5916\u5957\u548c\u84dd\u8272\u957f\u88e4\u3002"} +{"id": "7002344", "video_name": "51e4c6b1-bc7a-5360-81ec-1ee2f37b8890", "text": "\u4e00\u4e2a\u7537\u4eba\u716e\u725b\u5976\u7684POV\u89c6\u9891\u3002"} +{"id": "7004135", "video_name": "c5e5ddcd-16be-569e-990e-983efe6479f9", "text": "\u4e00\u53ea\u6d77\u8c5a\u5728\u7c89\u8272\u7684\u5b66\u751f\u5bbf\u820d\u91cc\u6253\u5b57\uff0c\u7a97\u6237\u671b\u5411\u64cd\u573a\u3002"} +{"id": "0005148", "video_name": "1598d42e-eee8-531a-8f38-0c1e458ddc50", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u7f16\u7ec7\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u97f3\u7b26\u7684\u73a9\u5076\uff0c\u7a33\u7a33\u5730\u5750\u5728\u4e00\u628a\u8212\u9002\u7684\u6905\u5b50\u4e0a\u3002"} +{"id": "7002093", "video_name": "316c6b42-c01f-57d1-9495-423aaf78bedd", "text": "\u4e3b\u795e\u6fd5\u5a46\u5750\u5728\u73e0\u7a46\u6717\u746a\u5cf0\u4e0a\u51a5\u60f3\uff0c\u6cb3\u6d41\u5f9e\u559c\u99ac\u62c9\u96c5\u73e0\u7a46\u6717\u746a"} +{"id": "3005630", "video_name": "76d28f94-8412-5ebf-8d81-e924f6eb1a02", "text": "\u4e00\u7fa4\u72d7\u6cbf\u7740\u8def\u8dd1\u3002"} +{"id": "6003304", "video_name": "4fa996c1-6025-5cad-bd12-6f6542b10c3e", "text": "\u8389\u8389\u548c\u82b1\u6735\u662f\u4e24\u4e2a\u53ef\u7231\u7684\u4ed9\u5973\uff0c\u62e5\u6709\u660e\u4eae\u6109\u5feb\u7684\u5916\u8868\uff0c\u7167\u987e\u4e00\u7fa4\u5fae\u7b11\u548c\u4e00\u8d77\u73a9"} +{"id": "6004202", "video_name": "1b3edbb6-e0ec-5b5e-9b20-72f38aa08197", "text": "\u6c34\u751f\u547d\u795e\u79d8\u6d77\u6d0b\u751f\u7269"} +{"id": "7002584", "video_name": "74b192a1-9a3b-509b-95e2-47e46710e168", "text": "\u7535\u5f71\u5e7f\u544a\u98ce\u683c\uff0c\u5e74\u8f7b\u5e05\u6c14\u7537\u5b50\u80e1\u987b\u8d8a\u957f\u8d8a\u957f\u3002\n\nSource sentence: I am looking for a job in marketing and advertising.\n\u6211\u6b63\u5728\u5bfb\u627e\u4e00\u4efd\u5e02"} +{"id": "0003681", "video_name": "4196e173-0770-5f1c-a139-b8dc0b88428c", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7a97\u8fb9\u5199\u6b4c\u3002"} +{"id": "3006190", "video_name": "508a8853-409a-51aa-962f-db2c46bd54e0", "text": "\u4f4e\u7a7a\u98de\u884c\u7684\u76f4\u5347\u673a\u5728\u68ee\u6797\u4e0a\u65b9\u98de\u884c\uff0c\u98de\u884c\u5458\u9a7e\u9a76\u8231\u89c6\u56fe\u3002"} +{"id": "0005354", "video_name": "1947633a-f120-52a2-bd37-429cb8b60ad7", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u4e2d\u56fd\u7537\u5b69\u6b63\u5728\u73a9\u7535\u8111\uff0c\u5199\u4ee3\u7801\uff0c\u5e76\u548c\u4ed6\u7684\u7238\u7238\u4e00\u8d77\u73a9\u673a\u5668\u4eba\u3002"} +{"id": "7002989", "video_name": "d2c7a1f9-de70-5f9c-a6d2-7cbbb89a5329", "text": "\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u5c0f\u9547\u4e2d\u5fc3\uff0c\u77d7\u7acb\u7740\u4e00\u5ea7\u5e9f\u5f03\u7684\u949f\u697c\uff0c\u5176\u5de8\u5927\u7684\u6307\u9488\u5b9a\u683c\u5728\u65f6\u95f4\u4e2d\u3002\u4f20\u8bf4\u4e2d\u6709\u4e00\u4e2a"} +{"id": "8002461", "video_name": "1f801001-471e-512a-8bf0-cb269fba5464", "text": "\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u5728\u9ed1\u591c\u4e2d\u5411\u6211\u8d70\u6765\uff0c\u4ed6\u6234\u7740\u4e00\u4e2a\u5de8\u5927\u7684\u91d1\u5c5e\u91d1\u5b57\u5854\u5934\u76d4\uff0c\u62d6\u7740\u4e00\u628a\u5927"} +{"id": "7003821", "video_name": "4b884efc-d4ec-5657-b99e-13f8e61ede5b", "text": "\u627f\u8bfa\u66fe\u7ecf\u95ea\u8000\u9ec4\u91d1\u822c\u7684\u5149\u8292\uff0c\u5982\u4eca\u5374\u5df2\u7834\u788e\u4e0d\u582a\u3002"} +{"id": "2007933", "video_name": "824cd91f-b08e-50ab-91b4-1ea9540eadb5", "text": "\u7535\u5f71\u5f0f\u7684\u5e7b\u60f3\u4e16\u754c\u5165\u4fb5\uff0c\u4eba\u4eec\u60ca\u6050\u5730\u4ece\u57ce\u5821\u9003\u8dd1\uff0c\u5411\u524d\u8d70\u3002"} +{"id": "1005200", "video_name": "5fad8673-41b4-5c5a-a2e3-7c0b0731bc76", "text": "\u7194\u5316\u7684\u706b\u82b1\u8f7b\u8f7b\u843d\u5728\u5145\u6ee1\u70df\u96fe\u7684\u80cc\u666f\u4e2d\u3002"} +{"id": "3005046", "video_name": "4cacb6fd-add7-55d0-be8f-5640703ed0b8", "text": "\u5728\u53d9\u5229\u4e9a\u7206\u70b8\u7684\u5efa\u7b51\u7269\u4e2d\uff0c\u52a8\u6001\u6444\u50cf\u673a\u8fd0\u52a8\u5728\u706f\u5149\u4e0a\u6295\u4e0b\u5f71\u5b50\u3002\n\nSource sentence: The company's profits have increased significantly since the new"} +{"id": "4003067", "video_name": "9f138cdd-28f2-577e-b067-067e1de55503", "text": "\u5e74\u8f7b\u5973\u5b50\u5728\u6d77\u6ee9\u8df3\u821e\u3002"} +{"id": "1005903", "video_name": "6c83a532-9b88-50da-92aa-916baddd365b", "text": "\u8ba1\u7b97\u673a\u548c\u624b\u673a\u7ef4\u4fee\u7684\u5de5\u4f5c\u574a\u3002"} +{"id": "3006946", "video_name": "788a161d-c434-5afe-aa7d-61d1c65256ec", "text": "\u4f24\u5fc3\uff0c\u8df3\u821e\uff0c\u534e\u5c14\u5179\uff0c\u82ad\u857e\u5728\u4e00\u53ea\u98de\u5929\u9cb8\u9c7c\u4e2d\u3002"} +{"id": "2003354", "video_name": "5edbeb2b-bd74-5ac1-9ea7-02a85766a73f", "text": "\u98ce\u683c\u7684\u5973\u5b69\u6b63\u5728\u5f39\u5409\u4ed6\u3002"} +{"id": "2005744", "video_name": "586e009d-ae5b-58a5-8fa8-5c92ed397689", "text": "\u611f\u6069\u8282\u706b\u9e21\u7684\u7fbd\u6bdb\u5728\u72d7\u5403\u7684\u65f6\u5019\u98de\u821e\uff0c\u4ee5\u590d\u53e4\u7684\u8482\u59c6\u00b7\u4f2f\u987f\u7535\u5f71\u98ce\u683c\u5448"} +{"id": "3006584", "video_name": "bcac1d8d-83cb-5af8-bf7b-c9aaf4aa07f1", "text": "\u8ba9\u56fe\u6807\u79fb\u52a8\uff0c\u524d\u540e\u5206\u522b\u51fa\u73b0\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003033", "video_name": "216ebec6-e995-5b67-a198-5833cdc8167f", "text": "\u5efa\u7acb\u4e00\u4e2a\u4e09\u7ef4\u666f\u89c2\uff0c\u5c55\u793a\u4e00\u6761\u873f\u8712\u66f2\u6298\u7684\u4eba\u751f\u4e4b\u8def\uff0c\u878d\u5165\u8c61\u5f81\u6027\u7684\u969c\u788d\u548c\u673a\u9047\u3002"} +{"id": "2005282", "video_name": "fc4004dd-d726-53db-ac1a-f34f501471df", "text": "\u4e2d\u4e16\u7eaa\u65f6\u4ee3\u7684\u56fd\u738b\u8bae\u4f1a\uff0c\u80cc\u5149\u7167\u660e\u3002"} +{"id": "1003228", "video_name": "3b7dd139-47a2-5101-86dd-ff2b05b44ba4", "text": "\u5438\u8840\u9b3c\u5c06\u81ea\u5df1\u53d8\u6210\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u4eba\u3002\u9ad8\u7ec6\u8282\uff0c\u9ad8\u8d28\u91cf\uff0c8K\uff0cDSLR\u6548\u679c\uff0c\u7535\u5f71\u822c\u7684\u620f\u5267\u6027\uff0c"} +{"id": "6003796", "video_name": "be4d4fc2-300a-5083-9a71-887507eabcd0", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u5149\u901f\u52a8\u6f2b\u98ce\u683c\u4e2d\u4f7f\u7528\u5200\u5251\u3002"} +{"id": "6002116", "video_name": "8aceca59-27c5-52a1-9cb0-13bf4990dc5a", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u4ee5\u52a8\u6f2b\u98ce\u683c\u4ef0\u671b\u6708\u4eae"} +{"id": "3004412", "video_name": "77cf0fa9-c100-5cf2-9b96-bb6a6743c40e", "text": "\u514b\u6717\u666e\u65af\u4f38\u624b\u5230\u5723\u8bde\u6811\u7684\u9876\u7aef\u3002"} +{"id": "4004232", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "\u4e00\u540d\u5973\u5b50\u5728\u60ac\u5d16\u8fb9\u8d70\u8def\u3002"} +{"id": "5001854", "video_name": "302b1781-e103-5494-b721-8ebe81da5774", "text": "\u900f\u660e\u8fde\u8863\u88d9\u7684\u5973\u4eba\u5728\u6d1b\u6749\u77f6\u3002"} +{"id": "6002434", "video_name": "69927ea3-1792-5719-b834-46c6f1295664", "text": "\u4e00\u5bb6\u5feb\u4e50\u7684\u5bb6\u5ead\u5728\u5ba2\u5385\u5e86\u795d\u5723\u8bde\u591c\u3002"} +{"id": "5001692", "video_name": "21d22b46-74de-5a87-92e3-b77e91c2670a", "text": "\u571f\u8033\u5176\u72ec\u7acb\u6218\u4e89\u3001\u5171\u548c\u56fd\u5ba3\u5e03\u3001\u7ecf\u6d4e\u53d1\u5c55\u30011923\u5e7410\u670829\u65e5\u3002"} +{"id": "0003782", "video_name": "43517091-cd0b-50b1-9104-009f24b9be03", "text": "\u4e2d\u7f8e\u6218\u6597\u673a\u8fdb\u884c\u7a7a\u6218\u5bf9\u6297\u3002"} +{"id": "0003785", "video_name": "4368fdcb-9659-5228-a3de-acebd512feb5", "text": "\u676d\u90fd\u963f\u662f\u4e00\u540d\u9a6c\u6765\u6b66\u58eb\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "6002900", "video_name": "0a4301cf-2be6-5190-9570-cdcfbc6e29f9", "text": "\u68ee\u6797\u8302\u5bc6\u800c\u5bc2\u9759\u3002\u80cc\u666f\u662f\u4e00\u6392\u9ad8\u8038\u7684\u6811\u548c\u4e00\u4e1b\u704c\u6728\u4e1b\u3002\u53ef\u4ee5\u542c\u5230\u98ce\u5439\u548c\u52a8\u7269\u5728\u68ee\u6797"} +{"id": "3004041", "video_name": "5997c6d5-4bb6-5ac6-887d-fbff17d5e341", "text": "\u5916\u661f\u6218\u58eb\u7684\u5b87\u5b99\u98de\u8239\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u4ece\u4fa7\u9762\u62cd\u6444\u3002"} +{"id": "3004281", "video_name": "c05b6455-3d3b-5f59-86c6-c49b135d1a4e", "text": "\u6c34\u6c60\u4e2d\u7684\u5f71\u5b50\u624b\u67aa\u3002"} +{"id": "1005954", "video_name": "6d568386-8f35-524f-981a-8046f4e8014a", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u706b\u661f\u4e0a\u8df3\u7740\u4fc4\u7f57\u65af\u821e\u8e48\uff0c\u4f7f\u75283D\u6280\u672f\uff0c\u865a\u5e7b\u5f15\u64ce5\uff0c\u9ad8"} +{"id": "8001165", "video_name": "7d571c17-14d1-5b83-812e-928b6eb6ffc5", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u7ed8\u4e00\u8258\u5c0f\u578b\u6e14\u8239\u5728\u72c2\u66b4\u7684\u98ce\u66b4\u4e2d\u7ffb\u8986\u4e8e\u5f00\u9614\u7684\u6d77\u9762\u4e0a\uff0c\u9ad8\u5ea6\u8be6\u7ec6"} +{"id": "1004903", "video_name": "5abd0aa9-9531-5226-aea2-8b3b1acef594", "text": "\u55b7\u6c14\u5f0f\u98de\u673a\u4ee5\u9ad8\u901f\u4f4e\u7a7a\u98de\u884c\u3002"} +{"id": "7004051", "video_name": "ef56f9cd-130a-51d1-85db-92837de4c8fa", "text": "\u5947\u602a\u7684\u751f\u7269\u6709\u77404\u4e2a\u5934\u548c65\u4e2a\u624b\u6307\uff0c\u505a\u52a8\u6001\u8bbe\u8ba1\u7684\u5de5\u4f5c\u3002"} +{"id": "4004641", "video_name": "9a3fd0b1-d447-58ff-b19e-543051b3eccc", "text": "\u6709\u4e00\u53ea\u9ec4\u8272\u7684\u9e2d\u5b50\u5728\u88ab\u9752\u86d9\u3001\u8377\u82b1\u548c\u8349\u8722\u5305\u56f4\u7684\u6e56\u4e2d\u6e38\u6cf3\u3002"} +{"id": "1004449", "video_name": "525156e6-9e49-526d-ba3e-b373565cd00b", "text": "\u8bb8\u591a\u963f\u62c9\u4f2f\u4eba\u9a91\u9a6c\u5728\u4e00\u4e2a\u5927\u573a\u5730\u4e0a\u3002"} +{"id": "2004789", "video_name": "ce14ce8f-ae6d-5b67-967b-ee38f4e48b60", "text": "\u73b0\u5b9e\u8001\u5e74\u7537\u5b50\u81ea\u62cd\uff0c\u624b\u6301\u7f16\u53f7\u4e3a985798\u548c\u59d3\u540d\u4e3aZac\u7684\u5e72\u51c0\u7eb8\u5f20\u3002"} +{"id": "7003582", "video_name": "1e84f3d8-b265-5135-9331-e0c1d2eeb09e", "text": "\u5728\u68ee\u6797\u4e2d\u521b\u9020\u4e00\u7fa4\u8702\u9e1f\u5728\u7a7a\u4e2d\u98de\u7fd4\u548c\u65e5\u51fa\u7684\u573a\u666f\u3002"} +{"id": "8001480", "video_name": "5704b4e9-902c-5058-897d-5d94c91967c5", "text": "\u8fbe\u82ac\u5947\u98ce\u683c\u7684\u6570\u5b66\u65b9\u7a0b\uff0c\u9ad8\u6e05\u9644\u4ef61\u3002"} +{"id": "3006660", "video_name": "d7f85708-bc23-5bc2-ac3f-4a1983855e40", "text": "\u5173\u4e8e\u5723\u7ecf\u7684\u513f\u7ae53D\u5361\u901a\u7535\u5f71\u9662"} +{"id": "5001603", "video_name": "fdb0d15a-d999-5886-805e-17edaaab0d87", "text": "\u4e00\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\uff0c\u8d70\u5728\u7b2c\u4e00\u666f\uff0c\u901a\u8fc7\u6d77\u5cb8\u7ebf\u53bb\u6d77\u8fb9\uff0c\u5929\u7a7a\u4e3a\u84dd\u767d\u73ab\u7470\u8272\u80cc\u666f\u3002"} +{"id": "2004515", "video_name": "bbd976a0-2ecc-5502-9620-f9aea542edab", "text": "\u4e00\u4e2a\u957f\u65b9\u5f62\u7684\u677f\u5b50\uff0c\u5728\u5c4f\u5e55\u524d\u6709\u4e24\u4e2a\u5c0f\u7f1d\u9699\u6765\u6355\u6349\u5149\u7ebf\u3002"} +{"id": "4003358", "video_name": "3577bfed-ea81-5ed2-a495-e5d87d853818", "text": "\u7b26\u5408\u52a0\u62ff\u5927\u548c\u6b27\u76df\u7684\u6307\u5357\u3002"} +{"id": "1005977", "video_name": "6dd966f4-5f47-574a-bb62-7efe367b447a", "text": "\u4eba\u4eec\u5728\u624b\u8868\u5e95\u90e8\u56f4\u7740\u5708\u5b50\u8dd1\uff0c\u624b\u8868\u7684\u6307\u9488\u5012\u8f6c\u3002"} +{"id": "6002079", "video_name": "a0889781-b9c8-5bc5-8069-b1d3bc0e5bc6", "text": "KGF\u7684Rocky Bhai\u4f5c\u4e3a\u4e00\u4e2a\u8bf4\u5531\u6b4c\u624b\u3002"} +{"id": "7002189", "video_name": "d47e51b6-ac99-56dd-9baa-dd6aa3d9c32c", "text": "\u4e00\u4e2a\u7537\u4eba\u7a7f\u8fc7\u9ed1\u6697\u8d70\u5411\u5149\u660e\u3002"} +{"id": "2006608", "video_name": "98740ed6-8e42-5db8-8b0e-e24155ac8d70", "text": "\u4e00\u53ea\u7f50\u5934\u4f38\u51fa\u5c4b\u9876\u5e76\u98de\u5165\u592a\u7a7a\u3002"} +{"id": "2006762", "video_name": "67780ea0-9743-5e5d-971f-1b1462b9dfe9", "text": "\u4e00\u4e2a\u5f39\u5409\u4ed6\u7684\u7537\u5b69\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "4002324", "video_name": "501e747b-70a5-5ec2-9a35-2481db017ac1", "text": "1965\u5e74\u7684\u4e00\u90e8\u7535\u5f71\uff0c\u4f7f\u7528\u6280\u672f\u8272\u5f69\uff0c\u9ed1\u8272\u592a\u7a7a\u80cc\u666f\u4e2d\u6709\u661f\u661f\u7f29\u5c0f\uff0c\u753b\u9762\u9897\u7c92\u611f\u5f3a\uff0c\u590d\u53e4\u8272\u8c03\uff0c"} +{"id": "8001005", "video_name": "c7c11dc7-ad93-53da-b1da-ebcb1df93027", "text": "\u5c71\u4e0a\u6709\u4e91\uff0c\u65e9\u6668\u592a\u9633\u5347\u8d77\u3002"} +{"id": "5001917", "video_name": "3414488a-3653-5631-9276-d0709ce1a042", "text": "\u65e0\u9650\u91cf\u7684\u85af\u6761\u843d\u5728\u4e00\u5757\u5927\u6bd4\u8428\u997c\u76ae\u4e0a\u3002"} +{"id": "7003138", "video_name": "31236f3c-4459-5448-a4ff-92bd0f64d9ea", "text": "\u592a\u7a7a\u548c\u884c\u661f\u7684\u56fe\u50cf\uff0c\u5c55\u793a\u4e86\u9ed1\u6d1e\u7684\u6982\u5ff5\u3002"} +{"id": "1003796", "video_name": "46171e99-a369-5b17-8515-9fb7f32e0e58", "text": "\u4e00\u53f0\u76f8\u673a\u770b\u8d77\u6765\u50cf\u4eba\u7c7b\uff0c\u5728\u64cd\u573a\u4e0a\u6253\u7bee\u7403\u3002"} +{"id": "2004041", "video_name": "498324dc-f885-5bdd-aa4e-802c50cf2d9e", "text": "\u521b\u9020\u4e00\u4e2a\u73b0\u5b9e\u768410\u79d2\u89c6\u9891\uff0c\u4ece\u6c99\u6f20\u79fb\u52a8\u5230\u8fea\u62dc\u4e2d\u5fc3\u3002"} +{"id": "0003865", "video_name": "44db9713-d7c3-5a8e-9e55-83d16191d05a", "text": "\u8857\u666f\u52a8\u753b\uff0c\u5305\u62ec\u6c7d\u8f66\u3001\u884c\u4eba\u548c\u5916\u661f\u4eba\u3002"} +{"id": "5001357", "video_name": "e2a5e6a1-7ed6-5f1b-9c03-7accf152ff3a", "text": "\u52a8\u753b\u5929\u4f7f\u548c\u68c9\u82b1\u7530\u7684\u98ce"} +{"id": "8001049", "video_name": "74ad4a33-e6dd-5828-a890-1aa25602d066", "text": "\u624b\u673a\u4e0a\u51fa\u73b0\u4e86\u9b3c\u7b11\u58f0\u3002"} +{"id": "4004595", "video_name": "ec8a680d-0d9f-5b77-a891-5ec2376be1a9", "text": "\u4e00\u4f4d\u7a7f\u7740\u65e0\u80a9\u5e26\u88d9\u5b50\u548c\u9ed1\u8272\u957f\u7b52\u889c\u7684\u7f8e\u4e3d\u5973\u5b69\u6b63\u5728\u68ee\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "0006907", "video_name": "3527df2b-6483-5de6-962d-645c0dbbf093", "text": "\u613f\u6392\u706f\u8282\u7684\u5149\u8292\u5e26\u7ed9\u4f60\u548c\u4f60\u7684\u5bb6\u4eba\u65e0\u5c3d\u7684\u6b22\u4e50\u3002"} +{"id": "1006619", "video_name": "7955e782-cd74-5f43-bfea-7862938a2df7", "text": "\u54c8\u8428\u514b\u65af\u5766\u7684\u5e7b\u60f3\u65d7\u5e1c\u5728\u98ce\u4e2d\u98d8\u626c\u3002"} +{"id": "4003679", "video_name": "0caa92e3-a752-5aaf-a909-23da4866c0ed", "text": "\u5728\u660f\u6697\u7684\u6708\u5149\u4e2d\uff0c\u838e\u62c9\u542c\u5230\u4e86\u90bb\u5c45\u65c1\u8fb9\u90a3\u5ea7\u53e4\u8001\u5e9f\u5f03\u623f\u5c4b\u91cc\u7684\u4f4e\u8bed\u58f0\u3002"} +{"id": "2005451", "video_name": "1bdb5c27-3dac-542b-b8dd-d0c24c5f190c", "text": "\u4e9a\u6d32\u5973\u5b69\u5c55\u793a\u4e2d\u56fd\u529f\u592b\uff0c\u84dd\u8272\u5934\u53d1\u3002"} +{"id": "3005475", "video_name": "f67f2c3e-d29b-5b14-a55c-0e3f208f0f3f", "text": "\u4e00\u4e2a\u7537\u4eba\u98de\u7740\u5438\u8840\u9b3c\u7684\u7fc5\u8180\u3002"} +{"id": "8002000", "video_name": "74ab8bd4-5696-5a6c-ba0e-6f0fc037bb2a", "text": "\u53f3\u81c2\u4e0a\u4e0b\u79fb\u52a8\u3002"} +{"id": "1004268", "video_name": "4ef7cf41-1a78-561b-a53f-e8296f9b8de4", "text": "\u7f8e\u56fd\u897f\u90e8\u65f6\u4ee3\u7684\u9152\u5427"} +{"id": "3004948", "video_name": "bb421aa7-0574-5d41-87d0-24633dfe1705", "text": "\u5f3a\u98ce\u4e2d\u4ef0\u671b\u6811\u6728\u75af\u72c2\u6447\u6643\u3002"} +{"id": "3004713", "video_name": "2c351472-4775-5973-9745-9f1a443736b6", "text": "\u5929\u9e45\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u671d\u7740\u5730\u7403\u4e0a\u7684\u6c60\u5858\u98de\u6765\u3002"} +{"id": "6002673", "video_name": "67a6b1aa-e242-58c7-a9c7-0c953c3cb37c", "text": "\u68ee\u6797\u91cc\u7684\u9ed1\u8272\u70e7\u7126\u6811\u6728\u3002\u73b0\u5728\u5df2\u7ecf\u53d1\u5e03\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3005702", "video_name": "aaa9b5de-5273-566e-bda7-beb8485525ea", "text": "\u5965\u5df4\u9a6c\u5728\u70e7\u70e4\u805a\u4f1a\u4e0a\u72fc\u541e\u864e\u54bd\u5730\u5403\u70ed\u72d7\u3002"} +{"id": "2003613", "video_name": "00f204cd-c183-583f-bdbf-cc5a8f931c74", "text": "\u4e00\u53ea\u5b54\u96c0\u7f13\u6162\u5730\u5728\u7eff\u8349\u5730\u4e0a\u8d70\u52a8\u76842\u5206\u949f\u89c6\u9891\u3002"} +{"id": "2005737", "video_name": "a2580e10-faa3-5a33-bdc3-6fabfd1640b6", "text": "\u4e00\u53ea\u5927\u718a\u6765\u62ef\u6551\u5973\u5b69\u3002"} +{"id": "2004955", "video_name": "55599899-639a-5610-b2ab-76e57309d52d", "text": "\u60c5\u8282\uff1a1940\u5e74\u4ee3\u4e2d\u671f\u95f4\u8c0d\u7535\u5f71\u4e2d\u7684\u8df3\u821e\u573a\u666f\uff0c\u7537\u5973\u4e3b\u4eba\u516c\uff0c\u590d\u53e4\u8272\u8c03\uff0c\u68d5\u8910\u8272\uff0c\u60c5\u4fa3\u821e\u3002"} +{"id": "7002133", "video_name": "a776681b-25aa-584d-bb66-6469d2f1c9d3", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u718a\u732b\u5728\u6728\u6797\u95f4\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "2007339", "video_name": "b59bd0d7-aa0b-5998-be06-cb2049af571e", "text": "\u5c55\u793aFreeBitco.in\u7684\u6807\u5fd7\u548c\u7f51\u7ad9URL\u3002"} +{"id": "0005207", "video_name": "169a051f-5a44-5936-b97f-02977279068c", "text": "\u5e26\u6709\u6a59\u8272\u5927\u6c14\u5c42\u7684\u964c\u751f\u661f\u7403\u4e0a\u7684\u63a2\u7d22\u673a\u5668\u4eba\u3002"} +{"id": "1006110", "video_name": "701a7e37-241e-5d80-a19f-bb6ef547df27", "text": "\u5b87\u5b99\u98de\u8239\u4e0a\u4e00\u4e2a\u8212\u9002\u7684\u673a\u5668\u4eba\u5367\u5ba4\u3002"} +{"id": "4003728", "video_name": "ece157eb-77e1-5a94-9b63-89f6f05744eb", "text": "\u4e00\u5c0a\u5fae\u7b11\u7684\u4f5b\u50cf\u6c57\u6d41\u6d43\u80cc\uff0c\u4e00\u624b\u62ff\u7535\u6247\uff0c\u4e00\u624b\u62ff\u4f1e\uff0c\u80cc\u666f\u4e00\u534a\u662f\u5de8\u5927\u7684\u592a\u9633\uff0c\u4e00\u534a"} +{"id": "6003849", "video_name": "eba7b575-bb1b-51f3-a536-ff30888d6b52", "text": "\u5de5\u7a0b\u5e08\u6b63\u5728\u5236\u4f5c\u4e00\u4e2a\u5c4b\u9876\uff0c\u5c4b\u9876\u4e0a\u8986\u76d6\u7740\u592a\u9633\u80fd\u7535\u6c60\u677f\uff0c\u8fdc\u5904\u6709\u98ce\u529b\u53d1\u7535\u673a\uff0c\u84dd\u5929\u767d"} +{"id": "8002736", "video_name": "2e79b9d2-a4fb-5a2e-be1c-d107785bb334", "text": "\u4e94\u6761\u609f\u4e0e\u52a9\u4e43\u4ea4\u6218\u768420\u79d2\u52a8\u753b"} +{"id": "3006585", "video_name": "ae793f99-6a30-50a8-982c-d747f9fa5cdd", "text": "translation: \u9065\u8fdc\u5904\u4e00\u67b6\u98de\u673a\u7a7f\u8d8a\u591a\u4e91\u5929\u7a7a\u4e2d\u7684\u96f7\u58f0\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "3006345", "video_name": "1bf7a2ae-1784-54a6-9473-02bf6912737f", "text": "\u5728\u7a7a\u4e2d\u6563\u843d\u7740\u95ea\u95ea\u53d1\u5149\u7684\u68f1\u955c\u822c\u7684\u9732\u73e0\uff0c\u663e\u73b0\u51fa\u4f60\u7684\u8eab\u5f71\uff0c\u6211\u60f3\u4f60\u4e86\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "8001712", "video_name": "4414659f-c541-5795-8205-485676caed55", "text": "\u4eba\u4eec\u7528\u76ae\u5854\u997c\u8638\u9e70\u5634\u8c46\u6ce5\u3002"} +{"id": "2004791", "video_name": "8076c6d9-191b-5d71-801f-7d44886b97b5", "text": "\u53d1\u9001\u6700\u4f73\u7684\u4ea4\u6613\u4fc3\u9500\u89c6\u9891\u3002"} +{"id": "4003888", "video_name": "746bb046-b23e-5bf7-9abf-3566ed26a299", "text": "\u89c6\u9891\u901a\u8bdd\u4e2d\uff0c\u591c\u665a\uff0c\u4e00\u4e2a\u5973\u4eba\u7684\u5934\u98d8\u8fc7\u5c4f\u5e55\uff0c\u6a21\u7cca\u4e0d\u6e05\u3002"} +{"id": "0005457", "video_name": "1b0c7e51-ffbb-5908-8d81-24f30b3d014b", "text": "\u5669\u68a6\u4e4b\u524d\u7684\u5723\u8bde\u8282\u98ce\u683c\u666f\u89c2\uff0c\u98ce\u5439\u96e8\u4e0b\u3002"} +{"id": "6002534", "video_name": "02ad730a-e46d-59b1-b1ef-6c7b1f60d6bb", "text": "\u5728\u5de8\u5927\u7684\u96f7\u66b4\u4e2d\uff0c\u4e00\u8258\u5c0f\u8239\u770b\u5230\u4e86\u5f15\u9886\u5b83\u8131\u79bb\u66b4\u98ce\u96e8\u7684\u5149\u8292\u3002"} +{"id": "0004652", "video_name": "0cbb4f48-29b5-5f06-8305-56a2e9cd66f0", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u975e\u6d32\u7070\u9e66\u9e49\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u4e2d\u98de\u7fd4\u3002"} +{"id": "2003874", "video_name": "3dc0babc-9980-5c4e-9be1-f22b47e190eb", "text": "\u7535\u5f71\u300a\u9ed1\u6c34\u6676\u300b\u4e2d\u7684\u4e00\u573a\u968f\u673a\u573a\u666f\uff0c\u91c7\u7528HR\u5409\u683c\u5c14\u548c\u5409\u59c6\u00b7\u6c49\u68ee\u7684\u827a\u672f\u98ce\u683c\uff0c\u8fdb\u884c\u5e7f\u6cdb\u8fde"} +{"id": "3005282", "video_name": "209dd8ae-d78a-5308-baf0-43615e80cc2d", "text": "\u4e00\u53ea\u8725\u8734\u5728\u9e70\u773c\u4e2d\u6620\u7167\u51fa\u6765\uff0c\u9e70\u6b63\u5728\u8ffd\u6355\u730e\u7269\u3002\u771f\u5b9e\u3001\u7535\u5f71\u822c\u76844K\u753b\u8d28\uff0c8"} +{"id": "8002975", "video_name": "108ac8d1-ea8d-5b11-9276-194897a28749", "text": "Source sentence: \u725b\u4ed4\u8eb2\u5728\u5899\u540e\u89c2\u5bdf\u3002"} +{"id": "2004554", "video_name": "bcdbfd8c-2a96-570f-8b31-cc0a7be88619", "text": "\u6050\u61fc\u50cf\u4e00\u7247\u5bc6\u96c6\u7684\u9727\u4e00\u6a23\u8513\u5ef6\u958b\u4f86\uff0c\u7528\u5b83\u51b0\u51b7\u3001\u53ef\u6015\u7684\u5b58\u5728\u5305\u570d\u4e86\u623f\u5b50\u7684\u6bcf\u500b"} +{"id": "0005304", "video_name": "182bd543-9051-54d4-8f79-8c1fdd9b0dd7", "text": "\u5c06\u5e74\u8f7b\u5973\u5b69Lily\u548c\u5e74\u8f7b\u7537\u5b50Max\u7684\u611f\u4eba\u6545\u4e8b\u5206\u4eab\u7ed9\u6751\u6c11\uff0c\u4ee54k\uff0c16:9\uff0c3d\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "2003618", "video_name": "ef0cabbf-fe7b-556d-85f9-832d57886b37", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u548c\u5176\u4ed6\u56db\u4e2a\u670b\u53cb\u4e00\u8d77\u73a9\u82f1\u96c4\u8054\u76df\u3002"} +{"id": "7002025", "video_name": "89bd71ad-0ade-535d-9968-d8c4a8f7e829", "text": "\u732b\u8d70\u8def\u65f6\u773c\u775b\u7728\u52a8\uff0c\u5c3e\u5df4\u6447\u6446\uff0c\u8033\u6735\u968f\u98ce\u6446\u52a8\u3002"} +{"id": "7002404", "video_name": "3215cccf-60ca-5969-86de-e3ae399fad86", "text": "\u519c\u6c11\u6b63\u5728\u6536\u5272\u5c0f\u9ea6\u5730\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006505", "video_name": "2db00c88-b6ac-5167-8338-093973a152bf", "text": "55\u5c81\u7537\u5b50\u65e9\u6668\u5728\u516c\u56ed\u6563\u6b65\u3002"} +{"id": "7004484", "video_name": "5f3bc919-1524-57a4-bb24-e93229647421", "text": "\u9ed1\u6697\u6050\u6016\u7684\u623f\u95f4\uff0c\u98ce\u5439\u5f97\u7a97\u5e18\u54d7\u54d7\u4f5c\u54cd\u3002"} +{"id": "2006620", "video_name": "524c47f5-630b-5f54-82d4-becd502aba37", "text": "\u521b\u4f5c\u4e00\u4ef6\u62bd\u8c61\u4f5c\u54c1\uff0c\u4ee5\u8ff7\u5e7b\u827a\u672f\u4e3a\u7075\u611f\uff0c\u4f7f\u7528\u5927\u80c6\u3001\u65cb\u8f6c\u7684\u989c\u8272\u548c\u56fe\u6848\u3002"} +{"id": "3005507", "video_name": "7c84d236-c7b1-5017-9f6d-5f6b21dfc6ec", "text": "\u4f60\u6765\u5230\u4e86\u4e00\u7247\u5f00\u9614\u7684\u571f\u5730\uff0c\u8fd9\u91cc\u6709\u4e00\u7247\u5b81\u9759\u7684\u6e56\uff0c\u6e56\u6c34\u50cf\u4e00\u9762\u955c\u5b50\uff0c\u53cd\u6620\u51fa\u84dd\u5929\u767d\u4e91\u7684"} +{"id": "6003710", "video_name": "eb168e67-5ba4-5b70-8a05-7babc912c6bc", "text": "\u8001\u864e\u548c\u72ee\u5b50\u5728\u68ee\u6797\u4e2d\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "0006193", "video_name": "27ff1f05-942b-5042-bc81-1cb845725a40", "text": "\u4e00\u4e2a\u5c0f\u9547\u4e0a\u7684\u6674\u6717\u65e5\u5b50\u3002\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69Mia\u624b\u91cc\u62ff\u7740\u4e00\u5957\u4e94\u989c\u516d\u8272\u7684\u8721\u7b14\u5750\u5728\u8349\u5730"} +{"id": "2005557", "video_name": "31a4b3f8-5aec-5a96-b3f9-6a6ba6e2c11a", "text": "\u72ee\u5b50\u548c\u8001\u9f20\uff0c\u4ee5\u4ed6\u4eec\u7684\u540d\u5b57\u5728\u56fe\u7247\u4e2d\u5c55\u793a\u3002"} +{"id": "8002498", "video_name": "3f1e2687-ed08-5442-9b6a-d4ed267ed83b", "text": "\u53e4\u9c81\u00b7\u7eb3\u7eb3\u514b\u00b7\u5fb7\u592b\u5409\u65e9\u671f\u751f\u6d3b\uff1a\u63a2\u7d22\u4ed6\u7684\u51fa\u751f\u3001\u7ae5\u5e74\u4ee5\u53ca\u5851\u9020\u4ed6\u65e9\u5e74\u751f\u6d3b\u7684\u4e8b\u4ef6\u3002"} +{"id": "8001939", "video_name": "c8d0584e-8af1-56fa-b6ea-21b422d63c46", "text": "\u4e00\u4e2a\u5178\u578b\u7684\u91d1\u53d1\u5973\u4eba\u6b63\u5728\u5403\u51b0\u6dc7\u6dcb\u3002"} +{"id": "8003639", "video_name": "28a1c404-8170-5e97-b790-3a1d78a8cacb", "text": "\u6bcd\u8230UFO\u6b63\u5728\u5165\u4fb5\u5e76\u6467\u6bc1\u963f\u5c14\u5df4\u5c3c\u4e9a\u7279\u91cc\u4e9a\u7eb3\u7684\u8857\u9053\uff0cGoPro\u76f8\u673a\u62cd\u6444\u7684\u753b\u9762\u3002"} +{"id": "3005740", "video_name": "16ccd75f-1d8f-5690-afec-0dc1ad615ec1", "text": "\u4e91\u6735\u5728\u5929\u7a7a\u4e2d\u79fb\u52a8\u548c\u6d88\u6563\uff0c\u7531\u4e8e\u65e5\u843d\u5929\u7a7a\u53d8\u6210\u4e86\u7c89\u7ea2\u8272\u548c\u7d2b\u8272\u3002"} +{"id": "2004317", "video_name": "888f088e-15bb-53c0-92d7-4fc13b2027bd", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "6002097", "video_name": "1b8141f0-16b6-5085-a371-688a11eb5709", "text": "\u4e00\u4e2a\u5634\u5507\u50cf\u62d6\u978b\u7684\u7537\u4eba\u3002\n\nSource sentence: The sun is shining brightly today. \n\u4eca\u5929\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "0006100", "video_name": "2694f3ad-a587-587c-9de9-94b7d9aadd6c", "text": "\u7528\u7fe1\u7fe0\u4ea4\u6613\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c\u67d4\u548c\u7684\u5149\u7ebf\uff0c\u6c1b\u56f4\u7684\uff0c\u7535\u5f71\u822c\u7684\uff0c\u60c5\u7eea\u5316\u7684\uff0c\u6cb9\u753b\uff0c"} +{"id": "6003027", "video_name": "16847b3a-34ff-5687-9aed-37c945ca507d", "text": "\u6211\u4eec\u4e2d\u7684\u6700\u540e\u4e00\u4eba\u7f16\u8f918K\u771f\u5b9e\u3002"} +{"id": "1006371", "video_name": "74a3cef8-9a34-5494-a8fd-f25366d4e3d2", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u4e16\u7eaa\u4e4c\u6258\u90a6\u793e\u4f1a\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u4eba\u4eec\u4e0d\u65ad\u5730\u5954\u8dd1\u3002"} +{"id": "0004827", "video_name": "0fe393d4-3bf2-52fb-97f5-2879c1730073", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u643a\u5e26\u7740\u4e00\u4e2a\u5316\u5986\u5305\u3002"} +{"id": "3006371", "video_name": "24ee612f-5240-58e1-95ce-7477940587af", "text": "\u751f\u6210\u4e00\u5f20\u9690\u55bb\u6027\u7684\u56fe\u7247\uff0c\u5c55\u793a\u51fa\u4e00\u4e2a\u5c0f\u706b\u71c3\u70e7\u65f6\u6563\u53d1\u51fa\u7684\u5fae\u5f31\u70ed\u5ea6\u548c\u718a\u718a\u5927\u706b\u6240\u91ca\u653e\u7684"} +{"id": "5001064", "video_name": "270b42f2-b6a0-55fb-aae2-b45fb0046205", "text": "\u8df3\u821e\u7684\u7126\u7cd6\u5e03\u4e01\u4e0a\u9762\u6709\u9f99\u5410\u706b\uff0c\u8ba9\u7cd6\u878d\u5316\uff0c\u8fd8\u8ba9\u4e16\u754c\u53d8\u6210\u4e86\u5e7b\u60f3\u9b54\u6cd5"} +{"id": "3005616", "video_name": "204e3d32-b045-577c-9915-173f42aecdc5", "text": "\u5728\u53d1\u52a8\u673a\u652f\u67b6\u4e0a\u5b89\u88c5\u5f15\u64ce\u5e76\u5e26\u6709\u76f8\u673a\u79fb\u52a8\u3002"} +{"id": "3005444", "video_name": "85493c09-60a9-541b-99f9-bf27c28853de", "text": "\u4e0e\u6709\u5e7d\u9ed8\u611f\u7684\u7537\u4eba\u4ea4\u8c08\u3002"} +{"id": "7003538", "video_name": "19248f1b-c58a-5f9f-bb13-d6c3541ba737", "text": "\u65e5\u7cfb\u624b\u7ed8\u5361\u901a\uff0c\u6a58\u8272\u843d\u65e5\u5728\u7eff\u8349\u576a\u4e0a\u6295\u5c04\u51fa\u6e29\u6696\u7684\u5149\u7ebf\uff0c\u5b66\u751f\u4eec\u5728\u64cd\u573a\u4e0a\u6253\u7bee\u7403\u3002"} +{"id": "2003856", "video_name": "f9088399-139c-5f18-8f44-185dbee28003", "text": "8k \u52a8\u6f2b\u7537\u5b50\u4ece\u6811\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "1004535", "video_name": "544a4a7e-2416-58ed-98ec-20d4fa117c97", "text": "\u4e00\u5219\u7535\u89c6\u5e7f\u544a\u4e2d\u51fa\u73b0\u4e86\u7c89\u8272\u7684\u58a8\u897f\u54e5\u751c\u9762\u5305\u3002"} +{"id": "2003884", "video_name": "52ed16f9-84b6-56f3-8cdb-07298a3589f2", "text": "\u718a\u5728\u68ee\u6797\u91cc\u62c9\u5c4e\u5417\uff1f"} +{"id": "2003102", "video_name": "357d6f68-c0ee-5550-8a16-808a5d53159d", "text": "\u9a6c\u4fee\u00b7\u8bfa\u65af\u5361\u548c\u5b89\u5a1c\u00b7\u5fb7\u00b7\u963f\u739b\u65af\u626e\u6f14\u90a6\u59ae\u548c\u514b\u83b1\u5fb7\u3002"} +{"id": "2003615", "video_name": "dbeb1c6b-d7b7-56e7-bf1f-dc5f59c2a323", "text": "\u4e00\u4e2a\u7537\u4eba\u8fdb\u5165\u5065\u8eab\u623f\u5e76\u5f00\u59cb\u953b\u70bc\u3002"} +{"id": "3004928", "video_name": "8847f634-e594-57a2-8f2d-5d9520a2363f", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u4e2d\u5fc3\u591c\u95f4\u8d70\u9ad8\u8df7\u3002"} +{"id": "6002035", "video_name": "626b19e7-dc76-5fc8-aac8-e8bf22cb722d", "text": "Translation: \u5367\u5ba4\u4e0a\u6709\u4e00\u4e2a\u5927\u51b0\u6ef4\u3002"} +{"id": "0003017", "video_name": "35a6d2b4-47ed-50ca-84fb-1ab72326949e", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u5b50\u63d0\u7740\u516c\u6587\u5305\uff0c\u8d70\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u300250\u5e74\u4ee3\u7ebd\u7ea6\u5c0f\u5df7\uff0c\u6c1b\u56f4\u6c89"} +{"id": "3003296", "video_name": "7c8ea0d6-8bca-581d-91e8-14462aa1a2a7", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u5973\u8d85\u7ea7\u82f1\u96c4\u9a91\u7740\u4e00\u8f86\u9177\u70ab\u7684\u91d1\u5c5e\u84dd\u8272\u6469\u6258\u8f66\u5728\u660f\u6697\u7684\u8857\u9053\u4e0a\u7a7f\u884c"} +{"id": "0006528", "video_name": "2e2a21ee-51e6-567b-9426-c7281ddafd90", "text": "\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u957f\u7740\u4e00\u5f20\u751c\u7f8e\u7684\u8138\uff0c\u7a7f\u7740\u7b80\u5355\u7684\u8863\u670d\uff0c\u5728\u773c\u79d1\u533b\u9662\u63a5\u53d7\u8fd1\u89c6\u624b\u672f"} +{"id": "0004054", "video_name": "025635b6-9ba2-5b99-a0c9-6d5c09f6602f", "text": "\u5c0f\u7537\u5b69\u62c9\u80e1\u5c14\u548c\u670b\u53cb\u4eec\u5750\u5728\u6811\u4e0b\u8ba1\u5212\u3002"} +{"id": "8003990", "video_name": "e7ecb0df-37b6-5ad7-99ea-afdb8b49cb8a", "text": "\u5192\u9669\u5bb6\u5728\u6d1e\u5185\u7684\u6cb3\u6d41\u4e2d\u6f02\u6d41\u3002"} +{"id": "2007950", "video_name": "2b4c6a8a-9ea2-5a83-ad7a-499337719edc", "text": "\u4e00\u9053\u7d2b\u8272\u7684\u5149\u7ebf\u7167\u4eae\u4e86\u4e00\u4e2a\u5f71\u5b50\u3001\u4e00\u4e2a\u7d2b\u8272\u7684\u6811\u548c\u4e00\u4e2a\u7d2b\u8272\u7684\u5f71\u5b50\u3002"} +{"id": "8001700", "video_name": "d2d5917f-b56d-5f9e-a84b-d1dbef4eb507", "text": "\u4e00\u4e2a\u7535\u5f71\u5316\u7684\u63cf\u7ed8\uff0c\u5c55\u73b0\u4e00\u4e2a\u5b8c\u5168\u4e0e\u673a\u5668\u4eba\u548c\u4eba\u5de5\u667a\u80fd\u878d\u5408\u7684\u667a\u6167\u57ce\u5e02\u3002"} +{"id": "7002566", "video_name": "fa28a1e5-76ca-5bd1-b717-5182d0e51dee", "text": "\u7537\u5b50\u5750\u5728\u5496\u5561\u9986\u91cc\u4f4e\u5934\u770b\u7740\u624b\u673a\u3002"} +{"id": "2006522", "video_name": "93b5cabc-29b9-596c-afcd-a6afb982cdaa", "text": "\u52a8\u753b\uff0cUAZ\uff0c\u5728\u82cf\u8054\u542f\u793a\u5f55\u7684\u4e16\u754c\u4e2d\uff0c\u8d85\u8be6\u7ec6\uff0c\u8d85\u903c\u771f\uff0c\u5207\u5c14\u8bfa\u8d1d\u5229\u7684\u9634\u5f71\u3002"} +{"id": "3005798", "video_name": "4d21df28-2b5b-535a-a629-eb6448ac2660", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ec4\u8272T\u6064\u548c\u84dd\u8272\u88e4\u5b50\u7684\u90ae\u9012\u5458\u9a91\u7740\u4e00\u8f86\u9ec4\u8272\u6469\u6258\u8f66\uff0c\u8f66\u5c3e\u6709\u4e00\u4e2a\u5927\u5927\u7684"} +{"id": "0003913", "video_name": "45a6ab2a-1660-5b63-a837-0f352ee59390", "text": "\u96f7\u795e\u7528\u4ed6\u5f3a\u5927\u7684\u9524\u5b50\u51fb\u6253\u5730\u7403\u3002"} +{"id": "7003714", "video_name": "7a2e0581-50cc-5d71-bd2d-f03e8937fea2", "text": "\u94a2\u94c1\u4fa0\u53d8\u8eab\u4e3a\u6469\u6258\u8f66\u7684\u8fc7\u7a0b\uff0c4K\u3001\u7a7a\u95f4\u3001\u6e05\u6670\u3002"} +{"id": "6002015", "video_name": "c40a5a47-5779-5162-ac94-ddd6ec352a4e", "text": "\u6545\u4e8b\u4ee5\u60ca\u5947\u548c\u559c\u60a6\u7684\u611f\u89c9\u7ed3\u675f\uff0c\u4e3a\u5e74\u8f7b\u542c\u4f17\u6253\u9020\u4e86\u4e00\u4e2a\u5b8c\u7f8e\u7684\u7761\u524d\u6545\u4e8b\u3002"} +{"id": "6003011", "video_name": "954c1381-a32a-50c8-b642-27e04e58e2ae", "text": "\u5f3a\u6709\u529b\u7684\u624b\u63e1\u7740\u94a2\u7b14\uff0c\u51c6\u5907\u5728\u5baa\u6cd5\u4e0a\u5199\u5b57\uff1b\u6f2b\u753b\u98ce\u683c\uff1b\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff1b8k\u3002"} +{"id": "1003671", "video_name": "439d1cd7-af6a-5994-aa27-ec6d5897d1c2", "text": "\u953b\u70bc\u8eab\u4f53\u7684\u4eba\u4eec\u5728\u5927\u578b\u5065\u8eab\u623f\u91cc\u53c2\u52a0\u56e2\u4f53\u5065\u8eab\u8bfe\u7a0b\uff0c\u65f6\u95f4\u52a0\u901f\uff0c\u955c\u5934\u62c9\u8fd1\u3002"} +{"id": "4004061", "video_name": "ae61494a-3aeb-5180-a12e-1c83ac7e766b", "text": "\u63cf\u8ff0\u4e00\u4e2a\u8212\u9002\u7684\u5bb6\u5ead\u53a8\u623f\uff0c\u684c\u4e0a\u6709\u65e9\u9910\u98df\u54c1\uff0c\u5bb6\u5ead\u6210\u5458\u4ea4\u8c08\uff0c\u5f3a\u8c03\u4f20\u7edf\u4ef7\u503c\u89c2\u3002\u7a81\u51fa"} +{"id": "0005844", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "\u4e00\u4e2a\u52a0\u5229\u798f\u5c3c\u4e9a\u5973\u5b69\uff0c\u4f38\u5c55\u7740\u8eab\u4f53\uff0c\u5fae\u7b11\u7684\u9762\u5bb9\u3002"} +{"id": "8001259", "video_name": "705b26ab-c8a9-545e-a9b7-07d9e8437716", "text": "Translation: \u54c8\u5229\u00b7\u6ce2\u7279\u4e0e\u6b7b\u4ea1\u5723\u5668"} +{"id": "7002320", "video_name": "b994be7d-fefa-5d46-bc43-8b619cbe8999", "text": "\u7c73\u8bfa\u9676\u5c14\u624b\u6301\u4e00\u628a\u65a7\u5934\u3002"} +{"id": "8002602", "video_name": "667b4f80-e493-5494-b210-f0edd4b494e0", "text": "\u963f\u5c14\u5409\u548c\u739b\u96c5\u7ad9\u5728\u53e4\u8001\u7684\u5bfa\u5e99\u524d\uff0c\u624b\u7275\u624b\u51dd\u671b\u7740\u5730\u5e73\u7ebf\u3002"} +{"id": "7003295", "video_name": "7679db3e-34a7-5500-9c65-0b75d18a8a23", "text": "\u5728\u68ee\u6797\u91cc\u7684\u6240\u6709\u52a8\u7269\uff0c\u5982\u72ee\u5b50\u3001\u5927\u8c61\u3001\u8001\u864e\u3001\u5154\u5b50\u7b49\u90fd\u805a\u96c6\u5728\u4e00\u8d77\u4e86\u3002"} +{"id": "7004228", "video_name": "5b001a8c-eedd-5741-a629-f3ae1ae5560a", "text": "\u6c99\u6f20\u591c\u665a\u4e0b\u96ea\u3002"} +{"id": "8003174", "video_name": "e80d9bfc-62dd-579a-a267-e6c7a17a9c87", "text": "\u4e00\u4f4d\u76ae\u80a4\u5149\u6ed1\u3001\u957f\u7740\u7d2b\u8272\u95ea\u4eae\u5934\u53d1\u7684\u7f8e\u4e3d\u5973\u4eba\u5750\u5728\u655e\u7bf7\u8f66\u91cc\u3002"} +{"id": "7003968", "video_name": "8b7d19b2-12ed-57e3-b0cd-c9cb11785101", "text": "\u5c55\u793a\u4e00\u4e2a\u6709\u65cb\u8f6c\u8fdb\u6d41\u5206\u914d\u5668\u7684\u5706\u5f62\u6c60\u5b50\u7684\u6c61\u6c34\u5904\u7406\u5382\u3002"} +{"id": "1006716", "video_name": "7b11c2c7-f731-5b3a-8755-ea328e24b76b", "text": "\u674f\u5b50\u6389\u8fdb\u6c34\u91cc\uff0c\u6c34\u6e85\u8d77\u6765\u3002"} +{"id": "0003831", "video_name": "443e5916-4661-5aa8-b7cc-f337f2685893", "text": "2003\u5e74\u7684\u7535\u89c6\u8d2d\u7269\u8282\u76ee\uff0c\u4ecb\u7ecd\u4e86\u4f7f\u7528\u673a\u5668\u4eba\u5582\u517b\u7ae0\u9c7c\u7684\u5546\u4e1a\u5e7f\u544a\uff0c\u4fe1\u606f\u91cf\u5927\uff0c\u73b0\u5728\u8d2d\u4e70\u3002"} +{"id": "7004190", "video_name": "2bc88cd7-7629-53ef-bbc7-7ea790d4852e", "text": "\u4e00\u53ea\u7334\u5b50\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\u3002"} +{"id": "7004585", "video_name": "9bf765a4-99fc-51e7-9852-30dff311fd6d", "text": "\u300a\u540e\u7a97\u300b\u7535\u5f71\u6d77\u62a5\uff0c\u4e3b\u6f14\u5409\u7c73\u00b7\u65af\u56fe\u5c14\u7279\u548c\u683c\u857e\u4e1d\u00b7\u51ef\u5229\u3002"} +{"id": "1003787", "video_name": "45e9b4c4-f214-582c-9e51-47e5c76f3f58", "text": "\u4e00\u53ea\u8001\u9f20\u6234\u7740\u592a\u9633\u955c\uff0c\u5634\u91cc\u53fc\u7740\u4e00\u652f\u9999\u70df\uff0c\u8ba9\u4eba\u611f\u89c9\u50cf\u662f20\u4e16\u7eaa60\u5e74\u4ee3\u3002"} +{"id": "2003574", "video_name": "7877b2c9-0ed7-5766-b6fe-3a29c1d367b7", "text": "\u6700\u597d\u7684\u670b\u53cb\u5728\u73a9\u9b54\u672f\u98ce\u4e91\u4f1a\u8bae\u7684\u6bd4\u8d5b\u4e2d\u4e92\u76f8\u5927\u558a\u5927\u53eb\u3002"} +{"id": "2003367", "video_name": "37f11842-fd51-59e3-a110-8bca77602b74", "text": "\u7ea2\u96c0\u5728\u6c34\u9762\u4e0b\u6df9\u6b7b\u3002"} +{"id": "7003035", "video_name": "529a7daf-1678-5a12-9636-51842fdd8fe7", "text": "\u4e00\u526f\u8f6e\u5ed3\u6a21\u7cca\u7684\u4eba\u7269\u5728\u884c\u8d70\u7a7f\u8d8a\u592a\u7a7a\u661f\u4e91\u65f6\u6c89\u601d\u51a5\u60f3\u3002"} +{"id": "4002076", "video_name": "fed4d7b0-ab63-5f9a-ad46-263436648b23", "text": "\u8389\u8389\u6234\u7740\u80cc\u5305\u548c\u5236\u670d\uff0c\u770b\u7740\u8a79\u59c6\u65af\u6234\u7740\u80cc\u5305\u548c\u5236\u670d\u8d70\u5f00\u3002"} +{"id": "4002825", "video_name": "9b2b9291-9816-5730-9755-f5da5319e10d", "text": "\u72c4\u6069\u00b7\u6e29\u5f7b\u65af\u7279\u4ece\u300a\u8d85\u81ea\u7136\u300b\u8d70\u5411\u6807\u5fd7\u6027\u7684\u9ed1\u82721967\u5e74\u96ea\u4f5b\u5170Impala\u6c7d\u8f66\u3002"} +{"id": "7003674", "video_name": "9fb9d362-93d9-5622-9bf2-be2233147083", "text": "\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u548c\u767d\u5154\u4ee5\u9ed1\u767d\u9897\u7c92\uff0c\u6697\u5e7b\u60f3\u7535\u5f71\u98ce\u683c\u7684\u590d\u53e4\u7535\u5f71\u4e2d\u804a\u5929\u3002"} +{"id": "7002711", "video_name": "bd155d66-b846-55be-bad2-91c4ad283a01", "text": "\u5927\u8111\u3001\u773c\u775b\u3001\u5634\u5df4\u548c\u7ec6\u957f\u7684\u89e6\u89d2\u8bf4\u4e86\u4e9b\u4ec0\u4e48\u3002"} +{"id": "4002564", "video_name": "6493b5e6-339d-5075-baea-63cf506371d6", "text": "\u6bcf\u5929\u6309\u7167\u4ed6\u7684\u65e5\u5e38\u4f8b\u884c\u516c\u4e8b\u8fdb\u884c\uff1a\u8fd0\u52a8\u3001\u5b66\u4e60\u3001\u5065\u5eb7\u9910\u996e\u548c\u7761\u7720\u7684 25 \u5c81\u7537\u5b50\u3002"} +{"id": "0003904", "video_name": "4579d0d6-6287-5e6d-be3f-c90cb8644ff9", "text": "\u751f\u6210\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u5929\u9645\u7ebf\u7684\u7535\u5f71\u822c\u89c6\u9891\uff0c\u653e\u5728\u5143\u5b87\u5b99\u4e2d\u3002\u8fd9\u4e2a\u57ce\u5e02\u5e94\u8be5\u6709\u9713\u8679\u706f\u3001\u5168\u606f\u5e7f\u544a\u724c\u548c\u6570\u5b57"} +{"id": "3003396", "video_name": "448f630f-5774-548b-b5b3-ab4a7b9ba507", "text": "\u57fa\u7763\u8bde\u751f\u573a\u666f\u903c\u771f\u7684\u56fe\u50cf\u572816:9\u7684\u6bd4\u4f8b\u4e0b\u7f29\u5c0f\u3002"} +{"id": "6003736", "video_name": "6dffce6d-c478-549f-8c56-75007366a03f", "text": "\u4e00\u4e2a\u80cc\u7740\u80cc\u5305\uff0c\u624b\u6301\u5723\u7ecf\u7684\u7537\u5b69\u3002"} +{"id": "0003280", "video_name": "3ab7ad96-1e13-5bda-9123-7e4ea3f0347d", "text": "\u65e5\u843d\u3001\u6c99\u6ee9\u3001\u6d77\u6d6a\u3001\u4e91\u5f69\u3001\u5e73\u9759\u3001\u5929\u5802"} +{"id": "1006402", "video_name": "7547da97-55dd-5c1b-9da5-4257c7c57aaa", "text": "\u4ece\u5730\u9762\u4e0a\u957f\u51fa\u7684\u82b1\uff0c\u91d1\u8272\u7684\u5929\u7a7a\u548c\u9633\u5149\uff0c\u4e00\u6761\u9f99\u98de\u5411\u82b1\u6735\u3002"} +{"id": "1004898", "video_name": "5a77b2e0-a90f-5a7b-a332-77e57122fbf0", "text": "\u7f29\u653e\u8f68\u9053\u955c\u5934\uff0c\u5145\u6ee1\u5929\u4f7f\u822c\u7684\u751f\u7269\u6f2b\u6b65\u4e8e\u671d\u9633\u7167\u8000\u4e0b\u7684\u672b\u4e16\u7eff\u8272\u57ce\u5e02\uff0c\u98ce\u4e2d\u6811"} +{"id": "2005040", "video_name": "c9aa27a7-2692-5e55-bc49-576e8d89414b", "text": "\u5730\u7403\u7ecf\u5386\u4e86\u5404\u79cd\u5730\u8d28\u65f6\u671f\u3002"} +{"id": "4004383", "video_name": "d5579876-3f02-5fdf-a988-323268a3fe72", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u9633\u5149\u5145\u8db3\u7684\u623f\u95f4\uff0c\u7070\u5c18\u5728\u9633\u5149\u4e2d\u65cb\u8f6c\uff0c\u53d7\u5230\u52a8\u6f2b\u542f\u53d1\u3002"} +{"id": "3004151", "video_name": "6c262c76-b8e4-50b0-a866-c8386b650dc4", "text": "\u4e00\u4f4d\u5973\u5b50\u51dd\u89c6\u7740\u7a97\u5916\uff0c\u6c89\u601d\u7740\uff0c\u5916\u9762\u5927\u96ea\u7eb7\u98de\uff0c\u53ea\u6709\u6c7d\u8f66\u548c\u4e00\u53ea\u5927\u72d7\u3002"} +{"id": "0003549", "video_name": "3f4e2507-4328-5ae2-8cc0-0e00cb7c75dc", "text": "\u73ab\u7470\u51cb\u8c22\u7684\u65f6\u95f4\u6d41\u901d\u5feb\u62cd\u3002"} +{"id": "7003901", "video_name": "5f5c7411-52e3-54bf-a2f9-c4d5f898ee6a", "text": "\u4e00\u4e2a\u7eff\u8349\u5982\u8335\u7684\u80cc\u666f\uff0c\u5361\u901a\u98ce\u683c\u3002\n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f"} +{"id": "3005782", "video_name": "da3c0882-8ac2-5f6e-81c6-a00807730684", "text": "\u673a\u5668\u72ec\u89d2\u517d\u88ad\u51fb\u98ce\u683c\u4e2d\u7684\u5154\u5b50\u5403\u9b54\u6cd5\u8611\u83c7\u3002"} +{"id": "8002025", "video_name": "f5c20ecc-2c52-59b7-bc6c-9791a64b8f4a", "text": "\u7f57\u9a6c\u519b\u56e2\u5728\u5c71\u533a\u7528\u706b\u70ae\u548c\u8fd1\u6218\u4f5c\u6218\u5bf9\u6297\u5361\u5e15\u591a\u7ec6\u4e9a\u58eb\u5175\u3002"} +{"id": "2004544", "video_name": "ac399f97-3b66-5700-9105-9f737773fc0a", "text": "\u6628\u665a\u6211\u505a\u4e86\u4e00\u500b\u5947\u602a\u7684\u5922\uff0c\u6211\u6f02\u6d6e\u5728\u4e00\u6735\u96f2\u4e0a\uff0c\u4e0a\u9762\u6709\u4e00\u689d\u5de7\u514b\u529b\u5c0f\u6eaa\uff0c\u5929\u7a7a"} +{"id": "1004858", "video_name": "59bd240a-ec6c-5cbc-849c-34b5f2600c2c", "text": "\u4e00\u4e2a\u9a91\u58eb\u4ee5\u7535\u5f71\u822c\u7684\u65b9\u5f0f\u4ece\u5929\u7a7a\u5760\u843d\u3002"} +{"id": "3005905", "video_name": "2e2c51f7-fc0c-5138-9246-6d1ed99d108c", "text": "\u706b\u5f71\u5fcd\u8005\u52a8\u6f2b\u98ce\u683c\uff0c\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u5973\u5b69\u5728\u5145\u6ee1\u706f\u5149\u7684\u68ee\u6797\u4e2d\u5531\u6b4c\u8df3\u821e"} +{"id": "4004785", "video_name": "1a6f718a-76fe-5c11-8d86-f306a905858a", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u9760\u5728\u767d\u5899\u4e0a\u7684\u5c11\u5973\uff0c8K UHD\uff0cDSLR\u76f8\u673a\uff0c\u67d4\u548c\u7684\u7167\u660e\uff0c\u9ad8\u54c1\u8d28\uff0c\u80f6\u7247\u9897\u7c92"} +{"id": "8002568", "video_name": "a9493cbd-7b56-5e9e-8f06-95c64500e2f8", "text": "\u4ece\u4e0a\u9762\u770b\u5230\u7684\u795e\u5947\u6f29\u6da1"} +{"id": "1005759", "video_name": "69f3fa90-cc6b-535b-b6ff-4535647bb4f8", "text": "\u6210\u5343\u4e0a\u4e07\u8eab\u7a7f\u84dd\u8272\u5939\u514b\u7684\u4eba\u5305\u56f4\u4e86\u7f8e\u56fd\u56fd\u4f1a\u5927\u53a6\u3002"} +{"id": "6002075", "video_name": "24f21256-9199-58d5-8413-14879bf8f19f", "text": "\u9e1f\u513f\u98de\u7fd4\uff0c\u82b1\u8349\u6811\u6728\u968f\u98ce\u6447\u66f3\uff0c\u4e91\u6735\u5728\u5929\u7a7a\u4e2d\u6f02\u79fb\uff0c\u6811\u6728\u6447\u66f3\u30024:"} +{"id": "8001821", "video_name": "fa7ec2f3-c61f-54eb-ae8d-92c8b834646c", "text": "\u4e0b\u53485\u70b9\uff0c\u5728\u5fb7\u91cc\u9644\u8fd1\u7684\u4e00\u7247\u68ee\u6797\u91cc\uff0c\u8fd9\u8f86\u8d27\u8f66\u6b63\u5728\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "4003914", "video_name": "56e25104-0b74-598d-ba67-1815a8c61d94", "text": "\u5947\u602a\u7684\u4e91\u6735\u5728\u9ed1\u8272\u7684\u5929\u7a7a\u4e2d\uff0c\u8d85\u73b0\u5b9e\u3001\u62bd\u8c61\u3001\u6df1\u8272\u3001\u9634\u6697\u3001\u5fe7\u90c1\u3001\u7cbe\u795e\u75be\u75c5\u3001"} +{"id": "2003575", "video_name": "8bcb870c-8ee3-585e-ab33-650099950f14", "text": "\u79cd\u690d\u7684\u7d20\u63cf\u53d8\u6210\u4e86\u4e00\u4e2a\u771f\u6b63\u7684\u91ce\u6027\u591a\u5e74\u751f\u82b1\u56ed\uff0c\u6709\u98ce\uff0c\u8fd1\u8ddd\u79bb\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2005113", "video_name": "b333e9d5-4a4b-5877-88b4-52ebb0fcf5bc", "text": "iPhone 13 Pro \u5728\u767d\u8272\u80cc\u666f\u4e0b\u65cb\u8f6c\u4e00\u6b21 360 \u5ea6\uff0c\u7136\u540e\u505c\u5728\u524d\u89c6\u56fe\uff0c\u5e95\u4e0b\u6709\u4e00\u70b9\u70b9\u9634\u5f71\u3002\n\nSource sentence: The deadline for submitting the project"} +{"id": "7002304", "video_name": "695b21c2-a352-516e-8227-6475e937e38e", "text": "\u91ca\u8fe6\u725f\u5c3c\u4f5b\u5411\u4ed6\u7684\u5f1f\u5b50\u4eec\u4f20\u6388\u6709\u5173\u751f\u547d\u4e2d\u597d\u4e0e\u574f\u4e8b\u7269\u7684\u77e5\u8bc6\u3002\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "3003791", "video_name": "2233b066-0835-5537-aa76-256b6cb13bc6", "text": "\u4e00\u4e2a\u5361\u901a\u68ee\u6797\uff0c\u6709\u9e1f\u5728\u98de\uff0c\u52a8\u7269\u5728\u8d70\u3002"} +{"id": "3005230", "video_name": "a1b551dd-bfc8-547e-aeca-60f812e54bbf", "text": "\u55e8\uff0c\u827e\u54c8\u8fc8\u5fb7\uff0c\u6211\u60f3\u5236\u4f5c\u8fd9\u4e2a\u89c6\u9891\uff0c\u8bc1\u660e\u6211\u6e05\u9192\u610f\u8bc6\u652f\u4ed8\u4eca\u665a\u6240\u6709\u8d26\u5355\u7684\u613f\u671b\u3002"} +{"id": "3006997", "video_name": "708b521b-c4a1-5ba6-83e9-e3aaed65dc96", "text": "\u4e00\u4e2a\u5973\u5b69\u80cc\u5bf9\u7740\u7b49\u5f85\uff0c\u6444\u50cf\u673a\u5c06\u5973\u5b69\u62c9\u8fd1\u5230\u4e2d\u95f4\uff0c\u5176\u4ed6\u4eba\u4ece\u5979\u8eab\u8fb9\u7ecf\u8fc7\u3002"} +{"id": "1005845", "video_name": "6b6cb43a-87bd-5d96-b295-6b631c2daec9", "text": "\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u5916\u661f\u57ce\u5e02\u7684\u8001\u5f71\u50cf\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9\u3002"} +{"id": "2006012", "video_name": "08b6a883-bb86-5ce4-be33-7f9f0b7bd000", "text": "\u84b8\u6c7d\u670b\u514b\u5723\u8bde\u8001\u4eba\u5750\u5728\u4ed6\u96ea\u6a47\u4e0a\uff0c\u524d\u9762\u662f\u4e00\u68f5\u5723\u8bde\u6811\uff0c\u6765\u56de\u7b11\u7740\u3002"} +{"id": "3006137", "video_name": "c2e11578-1be5-5957-8f4b-b55435988c17", "text": "\u4ece\u9634\u6697\u7684\u4e00\u5929\u8fc7\u6e21\u5230\u660e\u6717\u7684\u7f8e\u597d\u4e00\u5929\u3002"} +{"id": "4002624", "video_name": "b51b9802-78bb-520f-80a3-eabe9a818dcc", "text": "\u4e00\u4e2a\u6709\u7740\u4e0d\u540c\u751f\u7269\u7684\u5916\u661f\u4e16\u754c\u3002\u524d\u666f\u6709\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u624b\u7275\u624b\u7ad9\u7740\u3002"} +{"id": "8003708", "video_name": "54fc5be3-5a25-54d6-96c2-09db979f21dc", "text": "\u5728\u5fc3\u667a\u3001\u8eab\u4f53\u548c\u7cbe\u795e\u7684\u795e\u79d8\u4ea4\u6c47\u4e2d\uff0c\u53e4\u8001\u7684\u8109\u8f6e\u6982\u5ff5\u5360\u636e\u7740\u5173\u952e\u7684\u5730\u4f4d\u3002"} +{"id": "2005157", "video_name": "7ac8e6b5-0f5b-5dba-b5da-668a8b5a5387", "text": "\u6258\u9a6c\u65af\u60ca\u6115\u5730\u51dd\u89c6\u7740\u3002\u4ed6\u542c\u8fc7\u5e7d\u7075\u8239\u7684\u4f20\u8bf4\uff0c\u4f46\u4ece\u672a\u60f3\u8fc7\u4ed6\u4f1a\u771f\u7684\u770b\u5230\u4e00\u8258\u3002\u4ed6\u610f\u8bc6"} +{"id": "4003266", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "\u8001\u56fd\u738b\u624b\u6301\u9524\u5b50\uff0c\u80cc\u666f\u662f\u84dd\u8272\u7684\u57ce\u5821\uff0c\u53f3\u4e0a\u89d2\u6709\u5f69\u8679\uff0c\u5de6\u4e0b\u89d2\u6709\u4e00\u6761\u6cb3\u6d41\u3002"} +{"id": "7002295", "video_name": "6ad03eed-778d-5755-b527-316cca741a10", "text": "1. \u4e00\u4e2a\u5973\u5b69\u5728\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "2005633", "video_name": "f1aa611f-7757-547d-a2f0-29030e259a3d", "text": "1984\u5e74\uff0c\u4e00\u679a\u706b\u7bad\u964d\u843d\u5728\u706b\u661f\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "4004821", "video_name": "8e0f31ab-06e7-5da5-9163-1ca7ccd3e0b6", "text": "\u611f\u8c22\u7684\u5b57\u6837\u5f62\u6210\u7684\u4e91\u6735"} +{"id": "4004004", "video_name": "f1ca9d26-f701-5789-91c2-0e2f014648ad", "text": "\u591c\u665a\u6797\u4e2d\u95ea\u7535\u51fb\u4e2d\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c\u8be1\u5f02\uff0c\u7535\u5f71\u753b\u9762\uff0c1988\u5e74\u3002"} +{"id": "3006462", "video_name": "c9de50df-3812-53e6-9f07-cef5f6f857ec", "text": "\u5730\u9762\u88ab\u5f00\u6316\uff0c\u5927\u5730\u88c2\u5f00\u4e3a\u57fa\u7840\u8ba9\u8def\uff1b\u6316\u6398\u673a\u548c\u673a\u68b0\u8bbe\u5907\u51c6\u5907\u597d\u5728\u521b\u9020\u7684\u8fb9\u7f18\u7b49\u5f85\u3002"} +{"id": "4003021", "video_name": "8ef0f828-0ef3-5280-bfb6-29b705e4e6b6", "text": "\u4e00\u9996\u540d\u4e3a\u201c\u4eb2\u7231\u7684\u524d\u4efb\u201d\u7684\u6b4c\u66f2\u7684\u4e09\u5206\u949f\u97f3\u4e50\u89c6\u9891\u3002\u7537\u4eba\u5728\u4fe1\u4e2d\u56de\u5fc6\u8d77\u4ed6\u4eec\u4ece\u4e00\u5f00\u59cb\u4e00\u8d77\u7ecf\u5386\u7684\u6240\u6709\u7f8e\u597d\u65f6\u523b"} +{"id": "6003846", "video_name": "6032222e-7104-50cb-9707-4cd919347e3e", "text": "\u4e00\u53ea\u7ffc\u9f99\u5728\u65e5\u843d\u7684\u80cc\u666f\u4e0b\u98de\u8d8a\u6d77\u9762\uff0c\u524d\u666f\u662f\u6811\u836b\u4e0b\u7684\u68d5\u6988\u6811\u3002"} +{"id": "1004014", "video_name": "4a5c7e0a-e08e-5925-8502-a6bb96b5aa3f", "text": "\u591c\u665a\u7684\u4e1b\u6797\u3002\u8d85\u8be6\u7ec6\uff0c4K\u3002"} +{"id": "7004931", "video_name": "f5c1b317-86de-5210-8ee9-de9f839d92e5", "text": "\u4e00\u4e2a\u8f6f\u4ef6\u5de5\u7a0b\u5e08\u5728\u4ed6\u5b8c\u5168\u5347\u7ea7\u7684\u7535\u8111\u4e0a\u7f16\u7a0b\u3002"} +{"id": "1006615", "video_name": "79432544-215e-5dd8-971a-135b27f580d0", "text": "\u52a8\u753b\u98ce\u683c\u3002\u5154\u5b50\u53d8\u5f97\u6124\u6012\u3002\u84b8\u6c7d\u4ece\u8033\u6735\u91cc\u5192\u51fa\u3002"} +{"id": "2006387", "video_name": "06d2fabe-1603-5ec7-9345-ecf2a7322e5d", "text": "\u975e\u5e38\u5e9e\u5927\u7684\u7ea2\u8272\u5de8\u517d\u53e4\u4ee3\u519b\u961f"} +{"id": "3003923", "video_name": "f269362e-8242-5858-a419-9426060d74bf", "text": "\u72ec\u89d2\u517d\u548c\u8001\u9f20\u4e00\u8d77\u8d70\u8def\u3002\u72ec\u89d2\u517d\u540e\u9000\u3002"} +{"id": "8001056", "video_name": "a0cc4fad-dcd6-503d-bcaf-454496161a64", "text": "\u9ed1\u5929\u9e45\u4ece\u592a\u7a7a\u964d\u4e34\uff0c\u91d1\u8272\u7684\u75d5\u8ff9\u663e\u5f97\u96c4\u4f1f\u58ee\u89c2\u3002"} +{"id": "3003055", "video_name": "ba1e0c13-f751-5b57-8ff4-3827567ecb0f", "text": "E\u4ee3\u8868\u5927\u8c61\uff0c\u5927\u800c\u5f3a\u58ee\u3002"} +{"id": "8003523", "video_name": "4bf7719e-ebb1-581f-8c84-6904937ab6a9", "text": "Sorry, the source sentence is incomplete and does not make sense. Please provide a complete sentence to be translated."} +{"id": "2007842", "video_name": "51c8078a-7065-5c0b-9e76-aa4a3e3103c1", "text": "\u5728\u8fd9\u5f20\u56fe\u7247\u4e0a\u751f\u621010\u79d2\u7684\u989c\u8272\u8fd0\u52a8\u3002"} +{"id": "0005895", "video_name": "22e4f9db-0782-5d2b-b73e-d14c1d7c5b96", "text": "\u4e00\u53ea\u8001\u9f20\u5728\u68ee\u6797\u4e1b\u6797\u4e2d\u5954\u8dd1\u3002\u84dd\u8272\u548c\u7eff\u8272\u3002\u5199\u5b9e\u3002"} +{"id": "0004386", "video_name": "081739c6-75b8-588c-a767-23d06eef06d7", "text": "\u4e00\u540d\u7537\u5b50\u9a91\u7740\u7740\u706b\u7684\u6469\u6258\u8f66\u3002"} +{"id": "5001857", "video_name": "1f143809-33bf-5488-8a9f-9ccb0c1ce63d", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u4e24\u5bf9\u60c5\u4fa3\u5728\u5c71\u533a\u5ea6\u5047\u6751\u7684\u5496\u5561\u5e97\u91cc\u559d\u5496\u5561\u3002"} +{"id": "6002410", "video_name": "435683ef-0df0-5577-90ae-324b449e8950", "text": "\u7ea2\u8272\u6db2\u6ef4\u843d\u5165\u4eba\u7c7b\u8840\u7ba1\u55b7\u6e85\uff0c\u903c\u771f\u9c9c\u8273\uff0c\u5b8c\u7f8e\u7535\u5f71\u573a\u666f\uff0c\u5177\u6709\u7535\u5f71\u611f\u548c\u903c\u771f\u6548\u679c\uff0c\u8d85\u9ad8"} +{"id": "3006472", "video_name": "8823e52b-f2e6-544d-96b5-e423b3362670", "text": "\u89c6\u9891\u4ee5\u98de\u884c\u5458\u8d70\u51fa\u592a\u7a7a\u8231\uff0c\u8fdb\u5165\u4e00\u4e2a\u7e41\u5fd9\u7684\u661f\u9645\u4e2d\u5fc3\u7684\u573a\u666f\u4f5c\u4e3a\u7ed3\u5c3e\u3002\u4f34\u968f\u7740\u4e00\u79cd\u80dc\u5229\u548c"} +{"id": "8001826", "video_name": "feb8aa30-1d68-508f-8e2f-14a898a0c63e", "text": "\u533f\u540d\u9ed1\u5ba2\u5408\u4f5c\u4f19\u4f34\u201c\u6a21\u4eff\u201d\u7ad9\u5728\u4ed6\u8eab\u65c1\uff0c\u4e13\u6ce8\u800c\u7d27\u5f20\u3002"} +{"id": "8003084", "video_name": "19318fa3-80e2-55d8-bc7a-476eb7800da8", "text": "\u72ee\u5b50\u548c\u72d7\u5728\u4e00\u8d77\u6563\u6b65\u3002"} +{"id": "7004179", "video_name": "655d0f9c-0d0b-5217-bfc5-acaf694a88f5", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5c11\u5973\u65e9\u4e0a\u5728\u5496\u5561\u9986\u9605\u8bfb\uff0c\u5979\u6234\u7740\u56f4\u5dfe\uff0c\u7a7f\u7740\u6e29\u6696\u7684\u8272\u8c03\uff0c\u6c1b\u56f4"} +{"id": "5001735", "video_name": "c4ee1da3-1652-58a8-87a7-1a05cb66a93e", "text": "\u7236\u4eb2\u548c\u4ed6\u7684\u4e24\u4e2a\u6210\u5e74\u513f\u5b50\u505c\u5728\u7eaa\u5ff5\u5927\u5c60\u6740\u53d7\u5bb3\u8005\u7684\u7eaa\u5ff5\u7891\u524d\uff0c\u8bfb\u7740\u63ed\u793a\u60b2"} +{"id": "2006165", "video_name": "37892ad9-c1f8-50a9-8443-c28a19e10744", "text": "\u6709\u817f\u7684\u751f\u7269\u9644\u7740\u5728 Baumkuchen \u4e0a\uff0c\u5728\u7a7a\u8361\u7684\u5efa\u7b51\u7269\u548c\u5c71\u533a\u9ad8\u901f\u5954\u8dd1\uff0c\u5b83\u4eec\u7684\u6570\u91cf\u9010\u6e10\u589e\u52a0\u3002"} +{"id": "2005202", "video_name": "7ad58229-0e31-597c-b081-e5301bf14da0", "text": "\u5362\u739b\u5229\u4e9a\u738b\u56fd\u7684\u98ce\u666f\u5982\u753b\uff0c\u80cc\u666f\u662f\u5b8f\u4f1f\u7684\u57ce\u5821\uff0c\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u660e\u4eae\u3001\u591a\u5f69\u7684\u5929\u7a7a\u3002Leo"} +{"id": "0006636", "video_name": "2ffd6f0e-9552-5c82-bc38-5ed8b913d61c", "text": "17\u4e16\u7eaa\u65f6\uff0c\u4e00\u4f4d\u5929\u4e3b\u6559\u4fee\u58eb\uff0c\u4e5f\u662f\u73ab\u7470\u5341\u5b57\u4f1a\u6210\u5458\uff0c\u5411\u4e00\u4f4d\u4fee\u5973\u6559\u6388\u70bc\u91d1\u672f\u3002\u7537\u5973\u6027\u522b"} +{"id": "2004043", "video_name": "2dd71766-2d5b-5a27-8da7-e9cb7ff126c3", "text": "\u6709\u8da3\u7684\u80cc\u666f\uff0c\u52a0\u4e0a\u5fd9\u788c\u7684\u4eba\uff0c\u6301\u7eed40\u79d2\u7684\u65f6\u95f4\u3002"} +{"id": "4003171", "video_name": "67c9fcba-c5fd-572e-a47e-799b4f589c63", "text": "\u6076\u9b54\u8f66\u98de\u9a70\u800c\u8fc7\u5176\u4ed6\u666e\u901a\u8f66\u8f86\uff0c\u7559\u4e0b\u4e00\u9053\u9053\u9ed1\u8272\u70df\u5c18\u3002\n\nSource sentence: The sun sets behind the mountains, casting a warm glow over the"} +{"id": "2007521", "video_name": "c0e6fae6-d883-588f-8795-5f75d63323d3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u5750\u5728\u4e00\u5bb6\u4e61\u6751\u610f\u5927\u5229\u9910\u5385\u91cc\uff0c\u770b\u7740\u5979\u7684\u610f\u5927\u5229\u9762\u548c\u8089\u4e38\u5b50\u3002"} +{"id": "0006438", "video_name": "2c572db0-a3c5-570c-afd5-510fcc7bcb1b", "text": "\u4e00\u90e8\u7535\u5f71\u5f0f\u7684\u91d1\u53d1\u7ae5\u8bdd\u516c\u4e3b\u9a91\u7740\u72ec\u89d2\u517d\uff0c\u6325\u821e\u7740\u9b54\u6cd5\u68d2\uff0c\u80cc\u666f\u662f\u5c71\u8109\u3002"} +{"id": "6003035", "video_name": "8692c19e-d1e7-5b4b-8844-a9108aa240a1", "text": "\u4e00\u5219\u70ed\u817e\u817e\u7684\u6c64\u5546\u4e1a\u5e7f\u544a\uff0c\u7279\u5199\u955c\u5934\uff0c4K\u3002"} +{"id": "6002910", "video_name": "51a8d11e-0eee-5cc2-a576-35016e504715", "text": "\u5361\u901a\u52a8\u753b4k\u72ee\u5b50\u3001\u9e1f\u3001\u718a\u3001\u5154\u5b50\u548c\u5927\u8c61\u3002"} +{"id": "7004102", "video_name": "aa591e1a-835b-5272-8ebb-0f0d6c560d48", "text": "\u5b64\u72ec\u7684\u6218\u58ebSetu\u7ad9\u5728\u60ac\u5d16\u8fb9\uff0c\u4fef\u77b0\u7740\u4e00\u652f\u5e9e\u5927\u7684\u5165\u4fb5\u519b\u961f\uff0c\u955c\u5934\u6781\u5177\u7535\u5f71"} +{"id": "1003142", "video_name": "39ee8bd9-fa5a-59d0-b6cf-dceb78bda2e3", "text": "\u7a7f\u7740\u65e5\u672c\u6821\u670d\u7684\u957f\u53d1\u767d\u8863\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "3005943", "video_name": "da16ba39-3b07-593f-ab68-aabebf656502", "text": "\u4e00\u4e2a\u88ab\u8721\u70db\u56f4\u7ed5\u7740\u7684\u7537\u5b69\uff0c\u770b\u8d77\u6765\u5f88\u5bb3\u6015\u300218\u5c81\u3002"} +{"id": "2007362", "video_name": "f19dc0f5-dc45-515a-8feb-d8060ae511e2", "text": "\u4e00\u8f86\u5199\u7740ENELCI\u7684\u5361\u8f66\u6b63\u6cbf\u7740\u9ad8\u901f\u516c\u8def\u884c\u9a76\u3002"} +{"id": "0004988", "video_name": "12cd9a0a-9736-55a6-a948-b19fb3b2bc14", "text": "\u7070\u59d1\u5a18\u548c\u738b\u5b50\u5e78\u798f\u5730\u751f\u6d3b\u5728\u4e00\u8d77\u3002"} +{"id": "4002772", "video_name": "37e2a02d-e42a-5f68-9c63-ebcf77c0e049", "text": "\u773c\u775b\u7728\u7728\uff0c\u5934\u6162\u6162\u8f6c\u52a8\uff0c\u80cc\u666f\u5fd9\u788c\u5730\u79fb\u52a8\u3002"} +{"id": "3006192", "video_name": "264ff7d2-a230-549b-8e0a-96e3ac0c24de", "text": "\u4e00\u4efd\u8f6f\u8f6f\u7684\u51b0\u6dc7\u6dcb\uff0c\u653e\u4e0a\u70ed\u817e\u817e\u7684\u5de7\u514b\u529b\u7c89\u672b\u3002"} +{"id": "0004741", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "\u521b\u5efa\u548c\u5e73\u81ea\u7136\u3001\u9e1f\u513f\u9e23\u53eb\u548c\u5b81\u9759\u73af\u5883\u7684\u56fe\u50cf\uff0c\u4ee54K\u548cHD\u7684\u753b\u8d28\u521b\u5efa\u8fd9\u4e2a\u56fe\u50cf\u3002"} +{"id": "0005864", "video_name": "227aaeb9-8d6a-52cc-8555-9bd07743bbb6", "text": "\u4e00\u4e2a\u8d70\u51fa\u623f\u95f4\u7684\u7537\u4eba"} +{"id": "6002920", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "\u5730\u9707\u671f\u95f4\u6545\u969c\u8fd0\u52a8\u7684\u793a\u610f\u56fe\u3002\u6b64\u89c6\u9891\u8d28\u91cf\u4e3a4K\uff0c\u753b\u9762\u5982\u540c\u7535\u5f71\u955c\u5934\u822c\u6e05\u6670\u660e\u4eae\u3002"} +{"id": "2004660", "video_name": "63d23fb9-6dc7-56bd-8f83-821d3b4056ae", "text": "\u4e00\u4e2a\u9ed1\u6697\u6d1e\u7a74\u4e0b\u964d\u7684\u7b2c\u4e00\u4eba\u79f0\u76f8\u673a\u89c6\u89d2\u3002"} +{"id": "6003606", "video_name": "f0ed13e0-0a80-502b-8c64-2519242723f8", "text": "\u62e5\u6324\u7684\u4eba\u6ee1\u6ee1\u7684\u793c\u5802\u3002\u4fe1\u606f\uff1a\u9075\u5b88\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5001462", "video_name": "7426e85d-136a-5339-856d-bb4efc11cdcb", "text": "\u4e00\u4e2a\u5f39\u5409\u4ed6\u7684\u7537\u5b69\u5728\u821e\u53f0\u4e0a\u505a\u51fa0.9\u7c73\u7684\u98de\u7fd4\u52a8\u4f5c\u3002"} +{"id": "4004367", "video_name": "a3e95fa5-f151-5c10-a379-fed63aa3bbe9", "text": "\u8fd0\u52a8\u3002\u4ece\u7a7a\u4e2d\u4fef\u77b0\u4e00\u4e2a\u6c99\u6f20\u5730\u8c8c\u4e2d\u70ed\u95f9\u7684\u5e02\u9547\uff0c\u7136\u540e\u7f29\u653e\u81f3gs 20\u3002"} +{"id": "0003581", "video_name": "3fe2fe8d-8d96-5628-b1e5-8baebc1dd7ea", "text": "\u4e00\u53ea\u9c7c\u7f38\u91cc\u88c5\u6ee1\u4e86\u9713\u8679\u9c7c\u3002"} +{"id": "2005034", "video_name": "c89fc52e-be41-575d-816d-d00e3be5e0c4", "text": "\u8d70\u5411\u4e00\u4e2a\u9b3c\u5c4b\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1004623", "video_name": "55f9b65f-8e13-5d03-9dba-d86097466cb1", "text": "\u4e24\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u4e9a\u6d32\u7537\u5b50\uff0c\u5728\u5199\u5b57\u697c\u5165\u53e3\u524d\u63e1\u624b\u544a\u522b\u3002"} +{"id": "7003800", "video_name": "1ce4218f-8c6a-54d6-abe1-b9bc785fa23a", "text": "\u5c55\u793a\u4e00\u4e2a\u5c0f\u7537\u5b69\u5f00\u5fc3\u5730\u5480\u56bc\u85af\u7247\u7684\u52a8\u753b\u3002"} +{"id": "1003237", "video_name": "3b9e77e8-6376-5215-a126-cba5595f4eb1", "text": "\u6d77\u4e0a\u7f8e\u4e3d\u7684\u65e5\u843d\uff0c\u8fb9\u7f18\u6709\u7f8e\u4e3d\u7684\u591a\u5f69\u5ca9\u77f3\u3002"} +{"id": "6002796", "video_name": "507278bc-94af-5323-a518-12bc13b81f42", "text": "\u5728\u8d76\u65f6\u95f4\u8d76\u7740\u5b8c\u6210\u7d27\u6025\u4efb\u52a1\u7684\u65f6\u5019\uff0cUpin\u548cIpin\u53d1\u73b0\u81ea\u5df1\u88ab\u56f0\u5728\u6d74\u5ba4\u91cc\uff0c\u6ca1\u6709\u591a\u4f59\u7684\u65f6\u95f4\u3002\u63cf\u8ff0\u4ed6\u4eec"} +{"id": "4003718", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "\u5e26\u5b57\u6bcd\u7684\u6807\u5fd7\uff1a\u8986\u76d6\u5ea6\u5c0f\uff1aComic Sans\u5b57\u4f53"} +{"id": "0006692", "video_name": "312af3cd-48d9-55fb-8e60-3ee61a539cfa", "text": "\u4e00\u4f4d\u4e0d\u4e39\u745c\u4f3d\u58eb\u5728\u4f20\u7edf\u7684\u4e0d\u4e39\u623f\u5c4b\u91cc\u51a5\u60f3\u3002"} +{"id": "2003560", "video_name": "05dfc260-1ddd-5614-9736-280dd93dce06", "text": "\u8fea\u58eb\u5c3c\u5361\u901a\u98ce\u683c\uff0c\u6444\u50cf\u673a\u89c6\u89d2\u5bbd\u9614\uff0c\u4ece\u4fa7\u9762\u89c2\u5bdf\u4e00\u67b6\u94f6\u8272\u98de\u673a\u4e0a\u4e0b\u7ff1\u7fd4\u4e8e"} +{"id": "7004639", "video_name": "33ed829c-2554-5965-9de2-b933bc37a2a1", "text": "\u73b0\u5b9e\u7684\u56fe\u50cf\u4e2d\uff0c\u87d1\u8782\u4ece\u9ed1\u6697\u7684\u68ee\u6797\u7a00\u758f\u7684\u5149\u7ebf\u80cc\u666f\u4e2d\u94bb\u51fa\u5730\u9762\uff0c\u6444\u50cf\u673a\u6b63\u5728\u9760\u8fd1\u3002"} +{"id": "7003915", "video_name": "39fb395a-0f9a-5bdf-96c2-c9b7e0e4be58", "text": "\u4e00\u53ea\u4e4c\u9f9f\u80cc\u4e0a\u642d\u7740\u4e00\u53ea\u8717\u725b\uff0c\u4e00\u53ea\u5154\u5b50\u4ece\u65c1\u8fb9\u8dd1\u8fc7\u3002"} +{"id": "1003200", "video_name": "3ae654de-b7ed-59c5-802e-ccac7d9cbd08", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u591c\u665a\u7a7f\u8fc7\u68ee\u6797\u3002\u9e1f\u77b0\u955c\u5934\u3002\u8f66\u5934\u706f\u4eae\u7740\u3002"} +{"id": "2007771", "video_name": "e7da9049-2fa7-5782-98dc-9d77c3453160", "text": "\u6c14\u6ce1\u6c34\u74f6\u4ea7\u54c1\u62cd\u6444\uff0c\u5de5\u4f5c\u5ba4\u62cd\u6444\uff0c\u6e05\u6670\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5168\u9ad8\u6e054K\uff0c\u666f\u6df1\uff0c\u7279\u5199\u7f29\u653e\u3002"} +{"id": "1003229", "video_name": "3b7fd35f-9f30-5293-904e-7f0e7cba5fc7", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u773c\u775b\u95ea\u95ea\u53d1\u5149\u3001\u8868\u60c5\u6e34\u671b\u7684\u5c0f\u7537\u5b69\uff0c\u7ad9\u5728\u540c\u9f84\u4eba\u4e2d\u95f4\u3002\u4ed6\u5e94\u8be5\u70ed\u60c5\u5730\u4e3e"} +{"id": "3005093", "video_name": "146308e1-4624-589d-82dc-1abbaf6a0eb3", "text": "\u94a2\u94c1\u4fa0\u5728\u5370\u5ea6\u5b5f\u4e70\u7684\u5370\u5ea6\u95e8\u524d\u4e0e\u706d\u9738\u6218\u6597\u3002"} +{"id": "1003772", "video_name": "457d6015-193c-5d87-98fd-732fbafb013a", "text": "\u7535\u5f71\u822c\u7684\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\uff0c\u96f7\u66b4\u4e2d\u7684\u7f42\u7c9f\u7530\uff0c\u6e05\u6670\u5ea6\u566a\u58f0\u3002 \u9644\u4ef61\u3002"} +{"id": "3005482", "video_name": "b93615ab-24b5-5875-8bb3-61e204e07d81", "text": "\u7a7f\u7740\u6027\u611f\u793c\u670d\u7684\u4fc4\u7f57\u65af\u5973\u5b69\u5fae\u7b11\u7740\u7ad6\u8d77\u4e2d\u6307\u3002"} +{"id": "2003347", "video_name": "2e1e0c48-72a9-5cc4-be97-a2c836a10442", "text": "\u72ee\u9e6b\u964d\u843d\u5728\u5730\u9762\u4e0a\uff0c\u5411\u4e00\u7fa4\u72fc\u53d1\u52a8\u653b\u51fb\u3002"} +{"id": "2004588", "video_name": "cf26f191-a739-5854-9c72-0123b25ec68b", "text": "50\u5e74\u4ee3\u7684\u9ed1\u8272\u548c\u767d\u8272\u6df1\u5f71\uff0c\u5728\u4e00\u5ea7\u7a7a\u8361\u8361\u7684\u5730\u94c1\u7ad9\u5185\u3002\u706b\u8f66\u9759\u9759\u5730\u7b49\u5f85\u7740\u3002\u6709\u5f71\u5b50\u4ece\u73bb\u7483"} +{"id": "3005154", "video_name": "b19dfb13-a3be-5a45-b284-a15fded65885", "text": "\u4e00\u4e2a\u5c55\u793a\u591a\u6837\u5316\u5185\u5bb9\u521b\u9020\u5de5\u5177\u5de5\u5177\u5305\u7684\u52a8\u753b\u5e8f\u5217\uff0c\u7531AI\u804a\u5929\u673a\u5668\u4eba\u7684\u6548\u7387\u9a71\u52a8\u3002"} +{"id": "1006319", "video_name": "739b52dd-1c7b-5f7c-a611-260ad3445653", "text": "\u4f01\u9e45\u6ed1\u4e0b\u96ea\u5d29\uff0c\u56fd\u5bb6\u5730\u7406\u5f71\u50cf\u3002"} +{"id": "6003398", "video_name": "2fbe0441-6665-532c-a385-02299bb64afa", "text": "\u8fde\u7ed3\u8389\u8389\u548c\u5b9d\u5b9d\u827e\u739b\u7684\u7b2c\u4e00\u4e2a\u77ac\u95f4\u3002"} +{"id": "7002661", "video_name": "b7b61ee8-939f-5de5-8022-793b8389e639", "text": "\u4e00\u4e2a\u5192\u9669\u5bb6\u88ab\u56f4\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u7684\u98df\u5c38\u9b3c\u4e2d\u3002"} +{"id": "2006227", "video_name": "dcf45dca-46dd-59ef-b21f-b16fbf44189a", "text": "\u76ae\u514b\u65af\u7684\u74f6\u5b50\u548c\u7b14\u7a81\u7136\u6d3b\u4e86\u8fc7\u6765\uff0c\u773c\u775b\u7741\u5f97\u5927\u5927\u7684\uff0c\u60ca\u8bb6\u4e0d\u5df2\u3002"} +{"id": "0003499", "video_name": "3e9d04c4-b512-5f4b-b8b7-6098335e8942", "text": "\u5c3f\u5e03\u8fc5\u901f\u53d8\u6210\u5b9d\u5b9d\u7684\u8d85\u7ea7\u6597\u7bf7\u7684\u52a8\u753b\u3002"} +{"id": "2006922", "video_name": "479b8d2a-e340-5dac-a6fd-49b07235d763", "text": "\u732b\u9a91\u81ea\u884c\u8f66\u4ece\u8fdc\u5904\u5411\u8fd1\u5904\u884c\u9a76\u3002"} +{"id": "2005723", "video_name": "d36478be-23c1-5e5f-ba9b-7ef605a03e23", "text": "\u4e00\u5f20\u50cf\u662f\u4ece\u5929\u7a7a\u964d\u843d\u7684\u4e50\u8c31\u7eb8\u5c55\u793a\u4e86\u53e4\u8001\u7684\u5386\u53f2\uff0c\u544a\u8bc9\u6211\u4eec\u4e00\u4e2a\u57fa\u7763\u6559\u7684\u6545\u4e8b\u3002"} +{"id": "2004426", "video_name": "240cd912-181d-50b1-a96e-4d51cf220131", "text": "Source sentence: Mahatma Gandhi\u5728\u4eba\u5de5\u667a\u80fd\u7684\u677f\u7403\u6bd4\u8d5b\u4e2d\u6253\u51fa\u4e86\u4e00\u8bb0\u516d\u5206\u3002"} +{"id": "0005720", "video_name": "202541db-ae47-591c-ad6d-b5ef58fe99ff", "text": "\u90a3\u91cc\u6302\u7740\u4e00\u5e45\u53e4\u8001\u800c\u5de8\u5927\u7684\u753b\uff0c\u753b\u4e2d\u4e00\u4e2a\u8001\u4eba\u5fae\u7b11\u7740\uff0c\u4f46\u4ed6\u7684\u773c\u775b\u6709\u4e9b\u5947\u602a\u3002"} +{"id": "1004681", "video_name": "56f4fdf8-9558-5fb3-b6d0-0a1581f4768c", "text": "\u4e00\u4e2a\u5934\u4e0a\u6234\u7740\u9505\u7684\u7537\u4eba\u6b63\u5728\u6253\u9ebb\u5c06\u3002"} +{"id": "4004651", "video_name": "c47f81ae-e97b-5d07-8b5e-de10e890ff89", "text": "\u56fd\u738b\u548c\u4f20\u8bf4\u7684\u8ba8\u8bba\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003606", "video_name": "c71bd480-764e-5eda-8b7e-1e079251e451", "text": "18\u5c81\u5973\u5b69\u7a7f\u7740\u7ea2\u8272T\u6064\u3001\u9ed1\u8272\u5bbd\u677e\u88e4\u548c\u7ea2\u8272\u978b\u5b50\uff0c\u7559\u7740\u68d5\u8272\u5377\u53d1\uff0c\u80cc\u666f\u662f\u7eff"} +{"id": "1006558", "video_name": "782524f4-4916-5251-bfc8-3fa12ae3b927", "text": "\u8499\u7279\u54e5\u6e7e\uff0c\u7259\u4e70\u52a0\u7684\u4ec6\u4eba\u5728\u6c34\u7597\u4e2d\u5fc3\u4eab\u53d7\u7f8e\u5bb9\u62a4\u7406\u3002"} +{"id": "0005467", "video_name": "1b460844-c3a8-5ed2-a220-6ae468c8f09c", "text": "\u592a\u7a7a\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u4ed6\u5934\u76d4\u4e0a\u53cd\u5c04\u51fa\u4ee3\u7801\u3002\u5728\u9ed1\u6697\u4e2d\u3002"} +{"id": "3006956", "video_name": "51f137d4-52e3-579d-b537-10c4bf0c6c8f", "text": "\u5728\u5370\u5ea6\u6d0b\u6bd7\u90bb\u5370\u5c3c\u82cf\u95e8\u7b54\u814a\u5c9b\u53d1\u751f\u6d77\u5578\uff0c\u5de8\u6d6a\u9ad8\u8fbe30\u7c73\uff0c\u4ee4\u4eba\u60ca\u6050\u4e0d\u5df2\uff0c\u6709"} +{"id": "6003504", "video_name": "03846fe7-6ae7-5078-8bf2-839aaa0d52d7", "text": "\u5723\u8fbe\u83f2\u65b0\u58a8\u897f\u54e5\u5dde\u7684\u4e00\u5ea7\u5efa\u7b51\uff0c\u4e0a\u9762\u5199\u7740BLC\u8d37\u6b3e\uff0c\u5efa\u4e8e20\u4e16\u7eaa20\u5e74\u4ee3\u3002"} +{"id": "1005559", "video_name": "6655c436-472f-56d5-a345-9fc5f4665b9f", "text": "\u5236\u4f5c\u8fd9\u5f20\u56fe\u50cf\u7684\u89c6\u9891\uff0c\u6c7d\u8f66\u5feb\u901f\u9a76\u79bb\u3002"} +{"id": "0005308", "video_name": "18432d0a-45e9-540f-9f15-eaf7eaa84aa3", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u4eba\u5728\u62c9\u8d3e\u65af\u5766\u90a6\u658b\u6d66\u5c14\u7684\u8857\u5934\u8d70\u8def\uff0c\u9ad8\u5206\u8fa8\u7387\u8d85\u9ad8\u6e05\u3002"} +{"id": "1004047", "video_name": "4b123bc0-9067-5100-92ba-a8434151f21c", "text": "\u9053\u8def\u5782\u76f4\u4e0a\u5347\u5e76\u53d8\u6210\u4e86\u4e00\u6761\u7535\u5f71\u80f6\u7247\uff0c\u873f\u8712\u5305\u88f9\u5728\u87ba\u65cb\u4e2d\u3002"} +{"id": "7004708", "video_name": "b59655e5-c833-571b-83c7-be34efebf5a7", "text": "\u6247\u52a8\u8033\u6735\u7684\u5927\u8c61\uff0c\u6ce2\u7eb9\u8361\u6f3e\u7684\u6e56\u6c34\uff0c\u95ea\u8000\u7684\u6c34\u9762\uff0c\u7167\u8000\u7684\u9633\u5149\u3002"} +{"id": "7002705", "video_name": "60d8573a-b395-5794-8fa0-7d47b34b47ca", "text": "\u7ea2\u8272\u5806\u79ef\u79c3\u9e6b\u65cb\u6da1\u6f29\u6da1\uff0c\u8721\u7b14\uff0c\u4f20\u7edf\u5a92\u4ecb"} +{"id": "2005267", "video_name": "968c6b64-b996-529b-af4f-1b9f30eda08e", "text": "\u68ee\u6797\u91cc\u6709\u8bb8\u591a\u8774\u8776\u5728\u98de\u821e\uff0c\u5915\u9633\u7684\u5149\u8292\u6e10\u6e10\u6d88\u5931\u3002 \n\nSource sentence: My favorite food is pizza with lots of cheese and"} +{"id": "1006880", "video_name": "7dca4816-cf34-5de3-9ad8-6fde52a4a2ae", "text": "\u52a8\u6f2b\u5973\u5b69\uff0c\u7ea2\u8272\u5934\u53d1\u7684\u8d85\u5199\u5b9eCGI\u52a8\u753b"} +{"id": "6002364", "video_name": "82d98b19-08a2-5c51-bd6d-7808f3e290f6", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u9cc4\u9c7c\u5728\u6cb3\u91cc\u6e38\u6cf3\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "7003974", "video_name": "a8dfebc3-c7cc-5e7a-8109-1ccdc484bc70", "text": "\u4e4c\u9e26\u53e3\u6e34\u4e86\uff0c\u53d1\u73b0\u4e00\u53e3\u6c34\u4e0d\u591a\u7684\u9505\uff0c\u60f3\u4e86\u60f3\uff0c\u62ff\u8d77\u9644\u8fd1\u7684\u77f3\u5934\u653e\u8fdb\u9505\u4e2d\uff0c\u559d\u4e86\u6c34\u540e\u98de"} +{"id": "6004963", "video_name": "44b6c055-1f58-5320-bf36-484b75bd6b9e", "text": "\u5973\u6027\u7528\u94c5\u7b14\u753b\u4e00\u5339\u9a6c\u3002"} +{"id": "8003133", "video_name": "8bd3d3c2-9662-52a0-abc4-a068034f342c", "text": "\u5e2e\u6211\u5236\u4f5c\u4e00\u4e2a\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u6f14\u8bb2\u7684\u89c6\u9891\u3002"} +{"id": "0005549", "video_name": "1ca65663-6fa4-59b1-9593-b7dd43baf8c4", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u955c\u5934\u62c9\u8fd1\u5230\u5728\u68ee\u6797\u91cc\u8eba\u7740\u7684iPhone\u4e0a\uff0c3D\u52a8\u753b\uff0c16:9\u3002"} +{"id": "2005147", "video_name": "3b40e8ca-723a-50bc-97a5-58fd3e1c85dc", "text": "\u4e00\u5ea7\u7eff\u8272\u7684\u5c71\u4e18\uff0c\u57fa\u7279\u00b7\u5a01\u5ec9\u65af\u98ce\u683c\uff0c\u666f\u8272\uff0c\u5929\u7a7a\u7531\u84dd\u8272\u6ef4\u8721\u5236\u6210\uff0c\u4e00\u53ea\u5154\u5b50\u4ef0"} +{"id": "7004530", "video_name": "09506a5e-7c70-538d-b0ca-a6179250f6de", "text": "\u96e8\u6797\u4e2d\u96c4\u4f1f\u7684\u6811\u6728\u548c\u9644\u751f\u690d\u7269\u3002"} +{"id": "2006477", "video_name": "c74b4e21-868f-5789-81ce-9e8f17a59437", "text": "\u6697\u4e91\u5bc6\u5e03\uff0c\u6811\u5728\u72c2\u98ce\u4e2d\u6447\u6446\uff0c\u52a8\u7269\u4eec\u5bfb\u627e\u5e87\u62a4\u3002"} +{"id": "4002018", "video_name": "b338145b-c531-5e9c-95e5-4391e7dfb12c", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u9f20\u6807\u6e38\u6807\u5728Facebook\u4e0a\u6eda\u52a8\uff0c\u53d1\u9001\u597d\u53cb\u9080\u8bf7\u3002"} +{"id": "0006761", "video_name": "32975281-bd72-5626-b738-becc7e4fa315", "text": "\u65e5\u843d\u65f6\u5206\u88ab\u6811\u6728\u73af\u7ed5\u7684\u6e56\u6cca"} +{"id": "3004466", "video_name": "df82a0a6-7ab1-51de-80b5-df9c1328aa74", "text": "\u63d0\u4f9b\u8721\u70db\u751f\u4ea7\u670d\u52a1\u7684\u4f01\u4e1a\u7684\u6807\u5fd7\u8bbe\u8ba1\u3002"} +{"id": "1006589", "video_name": "78b417d7-1ab7-582d-8c81-b0ee79db290b", "text": "\u4e30\u7530AE86 Trueno\u5728\u591c\u665a\u7684\u5c71\u8def\u4e0a\u6f02\u79fb\u3002"} +{"id": "1005635", "video_name": "67994a61-6f86-5f35-8cc5-3c5506fbd0fa", "text": "\u672a\u6765\u4e00\u4ee3\u7684\u76f4\u5347\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "3005919", "video_name": "a1b56abe-233a-53e6-a5ba-95dc708021cd", "text": "\u591c\u665a\u5728\u4fbf\u5229\u5e97\u5916\u7528\u624b\u673a\u901a\u8bdd\u7684\u8857\u5934\u65f6\u5c1a\u5973\u6a21\u7279\u3002\u7cca\u7cca\u7684\u590d\u53e4\u6548\u679c\u3002"} +{"id": "4003459", "video_name": "642427fc-870f-5900-9515-e41fb71871d1", "text": "\u6cd5\u5ead\u4e0a\uff0c\u6cd5\u5b98\u6572\u7740\u6728\u69cc\u505a\u51fa\u8bc9\u8bbc\u51b3\u5b9a\uff0c\u903c\u771f\u800c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "1006770", "video_name": "7bf41412-d301-5fb3-9c90-f7d24d926b13", "text": "\u753b\u4e00\u5e45\u753b\uff0c\u753b\u4e00\u53ea\u5728\u96ea\u4e2d\u60ca\u6050\u7684\u9e7f\uff0c\u773c\u775b\u53cd\u5c04\u7740\u6050\u60e7\u3002"} +{"id": "1004197", "video_name": "4d99d71e-3e5a-50dc-b911-232cea4cb68d", "text": "\u5728\u5176x\u8f74\u4e0a\u7ffb\u8f6c\u76fe\u724c\u4e09\u6b21\u3002"} +{"id": "6002182", "video_name": "65634493-8677-540e-8674-4cc0b17ae656", "text": "\u5728\u6709\u4ea4\u901a\u706f\u7684\u5341\u5b57\u8def\u53e3\u4e0a\uff0c\u6c7d\u8f66\u6765\u6765\u5f80\u5f80\uff0c\u5468\u56f4\u662f\u9ad8\u697c\u5927\u53a6\u3002"} +{"id": "8002641", "video_name": "536348c9-9653-5f55-9a29-2ed74cd37a7d", "text": "\u73b0\u5b9e\u7684\u7c89\u8272\u5927\u8c61\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "2007672", "video_name": "b94e0358-4981-570b-96fa-5ea6fe65ade5", "text": "\u660e\u4eae\u7684\u80fd\u91cf\uff0c\u6c34\uff0c\u7535\u5f71\uff0c8K\uff0cUHD\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "2007005", "video_name": "4191d6f1-5e81-5da7-ba2e-82011abc3da5", "text": "\u8367\u5149\u7ec6\u83cc\u5728\u9ed1\u6697\u4ecb\u8d28\u4e2d\u79fb\u52a8\u3002"} +{"id": "1005008", "video_name": "5ca4328d-c729-52f8-8a16-ac8cef5100da", "text": "\u90a3\u4e2a\u7537\u4eba\u6b63\u4ee5\u67e5\u7406\u00b7\u535a\u6c83\u7279\u98ce\u683c\u3001\u975e\u6d32\u672a\u6765\u4e3b\u4e49\u3001\u8f6e\u5ed3\u4eba\u50cf\u3001\u4f20\u7edf\u975e\u6d32\u827a\u672f\u30018K\u5206\u8fa8\u7387"} +{"id": "8001948", "video_name": "b4f4a349-cbdf-5e58-a731-29dc586a3181", "text": "\u8d85\u4eba\u62b1\u8d77\u4ed6\u7684\u513f\u5b50\uff0c\u5e26\u7740\u4ed6\u98de\u884c\u3002"} +{"id": "2003106", "video_name": "c74dae17-6d68-55f0-a6d1-3d36c2b8ca7c", "text": "\u4e00\u53ea\u84dd\u5929\u8774\u8776\u98de\u8fc7\u82b1\u56ed\u3002"} +{"id": "3004540", "video_name": "f662fc1b-51de-5cfb-802c-a842f61a079c", "text": "\u5f53\u5c4f\u5e55\u53f3\u4fa7\u548c\u5de6\u4fa7\u4f38\u51fa\u7684\u4e24\u53ea\u624b\u98df\u6307\u63a5\u8fd1\u65f6\uff0c\u4e2d\u95f4\u4f1a\u5f62\u6210\u4e00\u4e2a\u7403\u4f53\u3002"} +{"id": "1003616", "video_name": "42a02c1b-106c-588d-96a4-7fae91de0b50", "text": "\u5927\u96e8\u503e\u76c6\uff0c\u53ef\u4ee5\u770b\u5230\u96e8\u6ef4\u3002\u7af9\u5b50\u5728\u96e8\u4e2d\u6447\u66f3\u3002"} +{"id": "6003505", "video_name": "dd546545-3fac-5e65-bec2-d59930b136f5", "text": "\u8fd9\u4e2a\u5bd3\u8a00\u6559\u5bfc\u6211\u4eec\u4eba\u4eec\u63a5\u53d7\u8036\u7a23\u548c\u4e0a\u5e1d\u7684\u8bdd\u8bed\u7684\u4e0d\u540c\u65b9\u5f0f\u3002"} +{"id": "6002982", "video_name": "f6f2b6d8-5886-598d-966a-6b0f6c2d9e44", "text": "\u7c89\u8272\u7684\u5b87\u5b99\uff0c\u7c89\u8272\u7684\u661f\u7403\uff0c\u8fc7\u5c71\u8f66\u7a7f\u8d8a\u5176\u4e2d\u3002"} +{"id": "4004584", "video_name": "f96fa2fb-9263-597f-92e6-d1a16d1f46ca", "text": "\u4e00\u90e81960\u5e74\u4ee3\u610f\u5927\u5229\u897f\u90e8\u7247\u7684\u7535\u5f71\u9884\u544a\u7247\u3002"} +{"id": "2006888", "video_name": "1d86b72b-e3e6-5de2-a0c3-556d0d77e7e8", "text": "\u4e00\u7247\u6811\u6797\u3002 Zac\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003455", "video_name": "4535b559-5803-5b3a-817b-aace270cd771", "text": "\u8428\u5c14\u5730\u533a\u7684\u5987\u5973\u4e0e\u5979\u7684\u4e08\u592b\u9762\u5bf9\u9762\u5730\u770b\u7740\u6444\u50cf\u673a\uff0c\u9010\u6e10\u62c9\u8fdc\u955c\u5934\uff0c\u89c6\u9891\u7684\u7eb5\u6a2a\u6bd4\u4e3a"} +{"id": "4004123", "video_name": "be85c151-01d8-5a99-9438-ee4e7f7c15a4", "text": "\u4e00\u4e2a\u5934\u53d1\u84dd\u8272\u7684\u5973\u5b69\uff0c\u5728\u5b87\u5b99\u4e2d\u6e38\u6cf3\uff0c\u88ab\u7c89\u8272\u7684\u73ab\u7470\u6d77\u73af\u7ed5\u3002"} +{"id": "4004496", "video_name": "9512853d-9c03-5ecd-9abc-7a40b7093372", "text": "\u4f7f\u6d77\u6d6a\u548c\u9e1f\u513f\u52a8\u8d77\u6765\u3002"} +{"id": "5001884", "video_name": "b73e8107-dbd9-5df3-9e84-510ded6c06fc", "text": "\u5728\u65b0\u5bb6\u91cc\u62bd\u5927\u9ebb\u5377\u70df\u3002"} +{"id": "1003469", "video_name": "403ba40c-3504-528b-b255-56629ed1fb0c", "text": "\u539f\u53e5\uff1a\u300a\u539f\u795e\u300b\u89d2\u8272\u949f\u79bb\u5750\u5728\u559d\u8336\uff0c\u65e5\u5f0f\u6f2b\u753b\u98ce\u683c\u3002\n\n\u7ffb\u8bd1\uff1a\u300a\u539f\u795e\u300b\u89d2\u8272\u949f\u79bb\u4ee5\u65e5\u5f0f"} +{"id": "7002279", "video_name": "d14d71cd-29dd-52dd-bbd3-44c6de84557e", "text": "\u6d41\u884c\u827a\u672f\u98ce\u683c\uff0c\u5973\u4eba\u7528\u9488\u7ebf\u624b\u5de5\u7f1d\u5236\uff0c1950\u5e74\uff0c\u5361\u901a\u98ce\u683c"} +{"id": "6003981", "video_name": "5970dd44-b455-5664-a041-cd1720191687", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u6e38\u4e50\u56ed\u91cc\u9a91\u7740\u65cb\u8f6c\u6728\u9a6c\u3002"} +{"id": "4003330", "video_name": "b9350645-59c3-5498-8a63-a8f9e3c02994", "text": "\u521b\u9020\u4e00\u68f5\u6709\u5982\u6210\u957f\u4e2d\u7684\u679d\u53f6\u7684\u4e16\u754c\u4e4b\u6811\uff0c\u4f46\u4ece\u8fdc\u5904\u770b\u5b83\u50cf\u662f\u4e00\u4e2a\u4e0d\u65ad\u5b66\u4e60\u7684\u5927\u8111\uff0c\u62e5\u6709"} +{"id": "2005944", "video_name": "bac2f467-a1ae-5ffc-8c59-ac0214a70139", "text": "\u4e00\u67b6\u76f4\u5347\u673a\u6b63\u5728\u8d77\u98de\u7684\u7530\u91ce\u4e0a\u3002"} +{"id": "6004588", "video_name": "0c78bfa0-e11d-5b7a-8461-e16a22029370", "text": "\u597d\u83b1\u575e\u6f14\u5458\u9053\u6069\u00b7\u5f3a\u68ee\u6b63\u5728\u548c\u4e00\u53ea\u72ee\u5b50\u640f\u6597\u3002"} +{"id": "6002775", "video_name": "41cff8e7-3fc3-5cdf-b5e9-ac2dc1fc1aea", "text": "\u4e00\u53ea\u9a91\u7740\u6469\u6258\u8f66\uff0c\u80cc\u7740\u5409\u4ed6\u7684\u718a\u7684\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "3004823", "video_name": "2a6bb5f8-3e81-58be-9107-0565e5d04dfd", "text": "\u5728\u540e\u9762\u7684\u5899\u4e0a\u5199\u7740GAVIRIA\uff0c\u5b83\u7684\u524d\u9762\u5750\u7740\u5df4\u52c3\u7f57\u00b7\u57c3\u65af\u79d1\u5df4\u5c14\u3002 \n\nSource sentence: Can you recommend a good Chinese"} +{"id": "3004753", "video_name": "016958d4-72ab-5cc6-ba99-c690271b3e09", "text": "\u5c40\u90e8\u8d38\u6613\u5d29\u6e83\u540e\u7684\u4e16\u754c\uff0c\u661f\u9645\u5e02\u573a\u57ce\u5e02\uff0c\u7531Anato Finnstark\u8bbe\u8ba1\u7684\u82cf\u8054\uff0c\u7531Carlo Dolci\u521b\u4f5c\u7684\u6770\u4f5c\uff0c"} +{"id": "0003808", "video_name": "43dc983f-60cd-58a9-b46d-165ab2773148", "text": "\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u7248\u7684\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u3002"} +{"id": "2003005", "video_name": "d0a74069-5df6-5cd0-8442-3ee862fc886d", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u602a\u517d\u649e\u5012\u4e86\u591a\u5ea7\u6469\u5929\u5927\u697c\uff0c\u8d85\u73b0\u5b9e\u7684\u5e7b\u60f3\uff0c\u57ce\u5e02\u6bc1\u706d\u6838\u5fc3\u3002"} +{"id": "2007647", "video_name": "e39d3c03-7ee8-518e-b098-031f0cb4bf80", "text": "\u7ea2\u8272\u7ae0\u9c7c\u5728\u6d89\u8c37\u5341\u5b57\u8def\u53e3\uff0c\u8ff7\u5e7b\u7684\uff0c\u9e1f\u77b0\u89c6\u89d2\uff0c\u6162\u6162\u653e\u5927\uff0c\u8fd0\u52a81\u3002"} +{"id": "8002892", "video_name": "5a47420e-14dd-520b-9215-9556f0157ec8", "text": "\u670d\u52a1\u5668Metin2\u7684TLW2\u56fe\u50cf"} +{"id": "8003864", "video_name": "f9b98ae8-0201-5a29-91f2-849c99db1ed1", "text": "\u5927\u68ee\u6797\u3001\u5927\u6811\u548c\u5927\u4ed9\u5973\u5728\u56db\u5904\u79fb\u52a8\u3002"} +{"id": "8003392", "video_name": "9aaa64f9-a6ab-51cc-b3e0-32bf7cc7088f", "text": "\u5e74\u8f7b\u7537\u5b69\u6b63\u5728\u5ba2\u5385\u54ed\u6ce3\u3002"} +{"id": "7004247", "video_name": "3637274a-f747-5507-b9ba-b8e0e8352a9b", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u5448\u73b0\u7684ESL\u8bfe\u7a0b\u3002"} +{"id": "1006468", "video_name": "76630cf8-8d80-540e-95fc-c64f1cee4fdc", "text": "\u65e0\u6570\u7684\u53d1\u5149\u6d77\u8707\u5728\u6df1\u9083\u7684\u6d77\u6d0b\u4e2d\u671d\u7740\u4e00\u8258\u53e4\u8001\u7684\u8239\u6e38\u53bb\u3002"} +{"id": "2007141", "video_name": "69c9cec7-b49f-5b96-aead-585e2394a83a", "text": "\u5357\u6781\u6d32\u7684\u51b0\u539f\u7834\u88c2\u4e86\u3002"} +{"id": "3005135", "video_name": "b751c8f2-814d-595f-b5c8-e39125d42463", "text": "\u7535\u5f71\u822c\u76848K\u753b\u8d28\uff0c\u4f4d\u4e8e\u6c34\u6676\u822c\u6e05\u6f88\u7684\u6d77\u6d0b\u65c1\u7684\u70ed\u5e26\u5c9b\u5c7f\uff0c\u6d77\u6d6a\u8f7b\u62cd\u7740\u6d77"} +{"id": "2003137", "video_name": "1977c189-e165-584c-b486-20fda8608e46", "text": "\u708a\u5177\u5728\u7089\u5b50\u4e0a\u5636\u5636\u4f5c\u54cd\uff0c\u6c64\u716e\u6cb8\u6eda\uff0c\u4ece\u4fef\u89c6\u89d2\u5ea6\u770b\u8d77\u6765\u5f88\u72c2\u70ed\u3002"} +{"id": "4004286", "video_name": "86ff7d8a-2140-5b18-8512-56e4fcc98066", "text": "\u767d\u5154\u8d1d\u5229\u5c14\u5230\u8272\u5f69\u9c9c\u8273\u7684\u5154\u5b50\u7684\u7ed8\u753b\u52a8\u529b\u5b66\uff0c8k\uff0c\u8d85\u5199\u5b9e\uff0c\u901f\u5ea6x10\u3002"} +{"id": "5001013", "video_name": "1eecddd6-3577-526d-8154-d59d57c6f817", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5728\u5927\u7206\u70b8\u524d\u559d\u8336\u3002\n\nSource sentence: I am learning Chinese with the help of a language learning app. \n\n\u6211\u6b63\u5728\u4f7f\u7528\u4e00\u6b3e\u8bed\u8a00\u5b66"} +{"id": "6002212", "video_name": "cf7696c9-8fef-5db3-943e-e35ddd50cfd2", "text": "Dachshund\u8dd1\u5411\u5b83\u7684\u4e3b\u4eba\u3002\n\nSource sentence: I love to eat sushi."} +{"id": "8002443", "video_name": "5c7820d2-6ce7-5983-9ed2-a08fde24b34a", "text": "\u955c\u5934\u7f29\u8fd1\u5230\u7537\u4eba\u7684\u773c\u775b\uff0c\u7136\u540e\u8fdb\u4e00\u6b65\u7f29\u8fdb\u773c\u4e2d\u7684\u8840\u7ba1\uff0c\u518d\u8fdb\u4e00\u6b65\u7f29\u8fdb\u8840\u7ba1\uff0c\u4ece\u65e0\u4eba\u673a\u7684\u89c6\u89d2\u53d8"} +{"id": "6002610", "video_name": "98f58534-7f17-5403-a340-dc829dd4763d", "text": "\u6d41\u884c\u827a\u672f\u72d7\u8096\u50cf\uff0c\u4ece\u7167\u7247\u7ed8\u5236\u7684\u6c34\u5f69\u72d7\u8096\u50cf\uff0c\u6d41\u884c\u827a\u672f\u6597\u725b\u72ac\u7ed8\u753b\uff0c\u9002"} +{"id": "0003803", "video_name": "43c48843-4bb1-5d1e-b5dc-820c490532b6", "text": "\u5564\u9152\u5728\u4e00\u5bb6\u5e7b\u60f3\u65c5\u5e97\u91cc\u30023D\u65cb\u8f6c\u6444\u50cf\u5934\u7126\u70b9\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u5409\u535c\u529b\u5bab\u5bab\u5d0e"} +{"id": "0005498", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "\u661f\u7cfb\uff0c\u661f\u661f\uff0c\u903c\u771f\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002\u6d88\u606f\uff1a\u8ba2\u9605 Y\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003273", "video_name": "3a9f264a-fdbc-58d2-86c0-8e588fb23633", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u98ce\u5927\u7684\u516c\u56ed\u91cc\u7528\u753b\u5e03\u753b\u5438\u8840\u9b3c\u3002"} +{"id": "0004896", "video_name": "111588d9-4643-562f-bfd2-a363d039d0e7", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u666f\u89c2\u4e2d\u62bd\u70df\u3002"} +{"id": "3004981", "video_name": "c8b74106-96fa-5076-8624-79636a245b77", "text": "\u4e00\u4f4d\u5973\u795e\u51fa\u73b0\u5728\u4e91\u7aef\u3002"} +{"id": "3003124", "video_name": "f3fc4da8-ccac-54f4-bfe6-9885cdd8a0d5", "text": "\u52a8\u6f2b\u4eba\u7269\u5728\u706b\u7130\u80cc\u666f\u4e0b\u6fc0\u70c8\u6218\u6597\uff0c\u6444\u50cf\u673a\u4f4d\u4e8e\u53f3\u4fa7\uff0c\u6162\u52a8\u4f5c\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "4003508", "video_name": "cc41becd-09c4-5177-aa26-a627ee86e14f", "text": "\u4ed6\u4eec\u7684\u7231\u60c5\u5ba3\u8a00\u88ab\u96e8\u6dcb\u6e7f\u4e86\uff0c\u4f46\u4ed6\u4eec\u4e4b\u95f4\u7684\u8054\u7cfb\u662f\u65e0\u53ef\u5426\u8ba4\u7684\u3002"} +{"id": "0003331", "video_name": "3bc5c278-a021-5ac5-9858-36766591e644", "text": "\u79fb\u52a8\u7684\u5634\u5507\uff0c\u8bf4\u8bdd\u548c\u79fb\u52a8\u7684\u666f\u89c2"} +{"id": "0006964", "video_name": "35eea4da-ad18-5617-be65-5ce0065f4804", "text": "\u5728\u4f2f\u5229\u6052\uff0c\u8036\u7a23\u57fa\u7763\u4e0e\u6bcd\u4eb2\u739b\u4e3d\u548c\u7ea6\u745f\u592b\u4f5c\u4e3a\u7236\u4eb2\u4e00\u8d77\u8bde\u751f\uff0c\u65c1\u8fb9\u6709\u7267"} +{"id": "5001270", "video_name": "bec5e231-ff25-5bc9-b9c1-3cedc6020679", "text": "\u5229\u7528\u4e8b\u7269\u6765\u4e86\u89e3\u81ea\u5df1\uff0c\u5728\u9047\u5230\u95ee\u9898\u65f6\u5ba1\u89c6\u81ea\u5df1\u7684\u5185\u5fc3\u3002"} +{"id": "6003431", "video_name": "91f16fb8-89be-5a88-9541-a26176288586", "text": "\u4e00\u4e2a\u6709\u6076\u9b54\u884c\u8d70\u7684\u7535\u5f71\u9884\u544a\u7247"} +{"id": "1004384", "video_name": "510086c1-114e-5246-88aa-4673274b699c", "text": "\u6587\u4ef6\u8fdb\u5165\u7535\u8111\u5e76\u8f6c\u5316\u4e3a\u53ef\u641c\u7d22\u7684\u6570\u636e\u7684\u6f14\u793a\u89c6\u9891\u3002"} +{"id": "1004013", "video_name": "4a5c304d-368b-5c0c-81cb-9f2700a45939", "text": "\u53d8\u8272\u9f99\u5229\u7528\u8272\u7d20\u7ec6\u80de\u6765\u4f20\u8fbe\u5b83\u4eec\u7684\u60c5\u611f\uff0c\u8c03\u8282\u4f53\u6e29\u4ee5\u53ca\u8eb2\u907f\u6355\u98df\u8005\u3002"} +{"id": "3003356", "video_name": "8d5246a8-602c-5973-9b85-eebf4f3ee597", "text": "\u8ba9\u6211\u4eec\u4e0e\u732b\u72d7\u4e00\u8d77\u8fce\u63a52024\u5e74\u3002 \n\nSource sentence: I love to travel and explore new cultures. \n\n\u6211\u559c\u6b22\u65c5\u884c\u548c\u63a2\u7d22\u65b0\u6587\u5316\u3002"} +{"id": "6002961", "video_name": "09be78cb-4ffc-50d4-9d4f-dd7df0640c2d", "text": "\u5927\u5b66\u5efa\u7b51\uff0c\u4e2d\u5348\u7684\u5149\u7ebf\u3002\u6d88\u606f\uff1a2024\u5e74\u5165\u5b66\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004378", "video_name": "045e8a32-d18a-5ddc-bae1-c3fd8af372f8", "text": "\u4e9a\u745f\u00b7\u6469\u6839\uff08\u300a\u8352\u91ce\u5927\u9556\u5ba22\u300b\uff09\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\n\nSource sentence: The Great Wall is a famous landmark in China. \n\n\u957f\u57ce\u662f\u4e2d\u56fd"} +{"id": "3003981", "video_name": "12340c42-bdf9-5238-accc-d42348c30766", "text": "\u5728\u98ce\u4e2d\u6447\u66f3\u7684\u7f8e\u4e3d\u82b1\u7530"} +{"id": "4004094", "video_name": "16ab3f68-a842-5d54-926b-4043117ea8ec", "text": "\u5386\u9669\u94f8\u5c31\u4e86\u4e0d\u53ef\u5206\u5272\u7684\u7f81\u7eca\uff0c\u5e76\u786e\u4fdd\u4e86\u4ed6\u4eec\u5728\u6d77\u76d7\u4f20\u5947\u4e2d\u7684\u5730\u4f4d\uff0c\u6545\u4e8b\u3001\u50cf\u7d20\u5de5\u4f5c\u5ba4\u30014K\u3001\u52a8"} +{"id": "0003855", "video_name": "44aecf48-516d-5cce-b414-d701ed394b3b", "text": "\u706b\u5c71\u5728\u5c9b\u4e0a\u55b7\u53d1\uff0c\u6709\u5927\u91cf\u7684\u706b\u5c71\u788e\u5c51\u70df\u548c\u95ea\u7535\u3002"} +{"id": "8003686", "video_name": "f80957fc-594c-5abe-a809-89ed4cdaff2b", "text": "\u8db3\u591f\u957f\uff0c\u8ba9\u6211\u5b66\u4f1a\u4f7f\u7528\u96e8\u4f1e\u3002"} +{"id": "3006335", "video_name": "fce1067e-88a0-5db7-b463-2c3d828b451c", "text": "\u9752\u5c11\u5e74\u548c\u670b\u53cb\u4e89\u8bba\uff0c\u7535\u5f71\u7ea74K\u3002"} +{"id": "3005364", "video_name": "8a488ab5-a1c4-572d-838b-2ebe3550757f", "text": "\u65e9\u4e0a\u5728\u6865\u8fb9\u6162\u8dd1\u7684\u4e2d\u56fd\u5973\u5b69"} +{"id": "0006988", "video_name": "3653a132-1971-5c1a-ad9e-2e8a57661c3a", "text": "\u5730\u4e0b\u5ba4\u91cc\u6709\u4e00\u53ea\u795e\u79d8\u7684\u751f\u7269\uff0c\u5168\u8eab\u662f\u9ed1\u767d\u7684\uff0c\u8001\u5f0f\u7684\u3001\u9897\u7c92\u611f\u5f88\u5f3a\uff0c\u5e27\u7387\u5f88\u4f4e\uff0c\u662f\u95ed\u8def\u7535"} +{"id": "6004323", "video_name": "b0fb8998-8dcb-5de4-8b62-4f98fc4c66b3", "text": "\u65c1\u906e\u666e\u52c7\u58eb\u7ad9\u5728\u4e00\u4e2a\u5c71\u4e18\u4e0a\u4fef\u77b0\u7740\u4e00\u7247\u5e7f\u9614\u7684\u6218\u573a\u3002"} +{"id": "1004074", "video_name": "4b8a11ef-bae0-5863-8e01-221d9253d59d", "text": "\u591c\u95f4\u8d70\u8def\u7684\u7537\u4eba\uff0c\u9634\u68ee\u7684\u5fae\u7b11\u3002"} +{"id": "7002441", "video_name": "8c6912cc-878b-5e0e-9667-d73e1aa7b20d", "text": "\u519b\u5b98\u4eec\u5728\u6674\u5929\u91cc\u62fc\u547d\u5730\u7a7f\u8fc7\u4eba\u7fa4\u5954\u8dd1\uff0c8K\u7167\u7247\u903c\u771f\uff0cAR 2:3\u3002"} +{"id": "3006299", "video_name": "187ac513-2a9f-5b40-80e2-78c3c95c66c5", "text": "\u73b0\u5b9e\u4e3b\u4e49\u76841970\u5e74\u4ee3\u827a\u672f\u7535\u5f71\uff0c\u63cf\u7ed8\u4e86\u81ea\u7136\u4e2d\u795e\u79d8\u751f\u7269\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "4002528", "video_name": "15e1d64f-0868-5e6f-be32-aefa4bfbe886", "text": "\u52a8\u753b\u592a\u7a7a\u8239\u4ece\u6d77\u6d0b\u8d77\u98de\u5230\u592a\u7a7a\u3002"} +{"id": "1005560", "video_name": "66563765-6413-55af-b030-3785df099ade", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u7528\u4e00\u53ea\u624b\u89e6\u6478\u5979\u7684\u5934\u53d1\uff0c\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "4002467", "video_name": "da71ff01-44d4-586e-a872-73570a8ae817", "text": "\u4e00\u4e2a\u6709\u8da3\u7684Lofi\u5973\u5b69\uff0c\u62e5\u6709\u4e00\u53f0\u590d\u53e4\u5531\u7247\u673a\u548c\u4e00\u5806\u76d2\u5f0f\u78c1\u5e26\uff0c\u5728\u5979\u6c89\u6d78\u5728\u8212\u7f13\u7684\u65cb"} +{"id": "8003678", "video_name": "f5d2bc1c-4b9a-5758-ad8a-42cdbca6ad05", "text": "\u6469\u897f\u5728\u897f\u5948\u5c71\u4e0a\u770b\u5230\u4ee5\u8272\u5217\u4eba\u5d07\u62dc\u91d1\u725b\u50cf\u7684\u573a\u666f\uff0c\u50cf\u7535\u5f71\u300a300\u300b\u4e00\u6837\uff0c\u6301\u7eed10\u79d2\uff0c16:9\u5bbd\u5c4f"} +{"id": "2006244", "video_name": "20cd3e0b-2737-5c0d-86ab-c3852d733a99", "text": "\u8d85\u8fc7500 TB\u7684\u8bfe\u7a0b\u3001\u4e66\u7c4d\u548c\u94b1\u4ece\u5929\u800c\u964d\u3002\u628a\u5b83\u53d8\u6210\u4e00\u5f20\u56fe\u7247\u800c\u975e\u89c6\u9891\u3002"} +{"id": "4003117", "video_name": "1c69556c-9512-5c4b-8d85-593e1001a9b3", "text": "\u4e00\u67b6\u98de\u673a\u5728\u5929\u7a7a\u98de\u884c\uff0c\u7a81\u7136\u8d77\u706b\u4e86\u3002"} +{"id": "2004999", "video_name": "e46296f7-24ff-5f32-bc1c-10e88ec9b3bd", "text": "\u6f02\u767d\u5242\u5b87\u5b99\u4e2d\u7684\u4e00\u4e2a\u5f3a\u5927\u7684\u6b7b\u795e\uff0c\u6301\u6709\u4e00\u628a\u6c34\u5251\u548c\u534d\u89e3\uff0c\u4ed6\u7684\u5251\u91cc\u5145\u6ee1\u4e86\u6c34\uff0c\u4ed6\u6709"} +{"id": "3004169", "video_name": "ace44ac2-da98-59ee-8ac2-dbe6b57d4d15", "text": "\u6a59\u8272\u7684\u5c9b\u5c7f\u5728\u5f00\u653e\u7684\u7a7a\u95f4\u4e2d\uff0c\u6709\u8bb8\u591a\u5f69\u8272\u7684\u7a7a\u95f4\u4e91\u3002"} +{"id": "0005802", "video_name": "21797d28-cd8e-571f-8430-6a2fa3dca411", "text": "\u5236\u4f5c\u4e00\u6bb52\u520650\u79d2\u7684\u97f3\u4e50\u89c6\u9891\uff0c\u5185\u5bb9\u5173\u4e8e\u901a\u8fc7\u8d29\u5356\u6bd2\u54c1\u548c\u9a7e\u9a76\u5feb\u8f66\u8d5a\u53d6\u91d1\u94b1\uff0c\u5e76\u5728\u80cc\u666f\u4e2d\u6dfb\u52a0\u7206"} +{"id": "4003115", "video_name": "777f4897-f9dc-5796-ab2c-b329884e73ac", "text": "\u4e00\u4e2a\u7537\u4eba\u6311\u52a8\u7709\u6bdb\u7684\u8096\u50cf\u3002"} +{"id": "7004910", "video_name": "b50325aa-5ef9-5706-95ea-828d371de31c", "text": "\u8239\u957f\u80e1\u514b\u7684\u8d85\u771f\u5b9e\u5f62\u8c61\u53d8\u5f62\u6210\u5f7c\u5f97\u6f58\u7684\u8d85\u771f\u5b9e\u5f62\u8c61\u3002"} +{"id": "0005782", "video_name": "2125f61c-3214-5fa8-8027-5bca247a3fa5", "text": "\u5de8\u5927\u7684\u5de8\u4eba\u671d\u7740\u71c3\u70e7\u7684\u57ce\u5821\u5954\u8dd1\u3002"} +{"id": "7002291", "video_name": "bd194358-a7b1-5f10-ad67-b88d11665efb", "text": "\u91d1\u53d1\u516c\u4e3b\uff0c\u5927\u800c\u6f02\u4eae\u7684\u773c\u775b\uff0c\u7c89\u7ea2\u8272\u7684\u88d9\u5b50\u548c\u978b\u5b50\uff0c\u5728\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u95ea\u95ea\u53d1\u5149\u7684"} +{"id": "3004598", "video_name": "fce11914-5706-53c8-b46a-5909091d24c2", "text": "\u89c2\u4f17\u5728\u5076\u50cf\u821e\u53f0\u4e0b\u6325\u821e\u7740\u8367\u5149\u68d2\uff0c\u5b85\u6587\u5316\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "4002938", "video_name": "ea8fe0c6-c6b4-5779-a9ed-2f2d6af72b4e", "text": "\u6c99\u6f0f\uff0c1980\u5e74\u4ee3\u6cd5\u56fd\u5b9e\u9a8c\u7535\u5f71\u3002"} +{"id": "7004091", "video_name": "d81ca43c-659c-56ae-a736-6768f01d27dc", "text": "\u5c24\u8fbe\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u9f13\u7ec4\uff0c\u4f34\u968f\u7740\u75af\u72c2\u7684\u706f\u5149\u79c0\u3002"} +{"id": "1003260", "video_name": "3c05066b-4a17-529b-82c7-d461321bf860", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684\u623f\u5b50\u5728\u6c99\u6f20\u4e2d\uff0c\u4e00\u67b6\u5927\u578b\u65e0\u4eba\u673a\u98de\u8fc7\u3002"} +{"id": "8002302", "video_name": "8bb6ce90-559f-5d72-903f-679ef0b7de10", "text": "\u718a\u732b\u6bcd\u718a\u53d1\u60c5\u65f6\u4f1a\u5403\u4e00\u53ea\u51b0\u6dc7\u6dcb\u3002"} +{"id": "1005402", "video_name": "6341fced-66f0-5637-8496-97a1a5695c0c", "text": "\u7ea2\u8272\u95ea\u5149\u63ed\u793a\u51fa\u903c\u771f\u768416:9\u9ed1\u8272\u57ce\u5e02\u5929\u9645\u7ebf\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u54aa\u6b63\u5728\u6c99\u53d1"} +{"id": "2006127", "video_name": "7b829777-0e15-5e38-8442-2a0a02270c8a", "text": "Raju \u6109\u5feb\u5730\u6559\u4ed6\uff0cShyam \u975e\u5e38\u8ba4\u771f\u5730\u5b66\u4e60\u4e86\u3002"} +{"id": "6003752", "video_name": "c6541d43-128d-5111-b227-d40d518aa474", "text": "\u4e00\u4e2a\u4eba\u7c7b\u5fc3\u810f\u88ab\u4fdd\u5b58\u5728\u4e00\u4e2a\u73bb\u7483\u7acb\u65b9\u4f53\u76d2\u5b50\u91cc\uff0c\u5177\u6709\u7535\u5f71\u7ea74K\u8d85\u9ad8\u7ec6\u8282\u3002"} +{"id": "7004238", "video_name": "40b73919-8e1f-5b68-b954-3d4c2c8f630e", "text": "\u8fd9\u4e2a\u6545\u4e8b\u544a\u8bc9\u6211\u4eec\uff0c\u523b\u82e6\u52aa\u529b\u3001\u4e13\u6ce8\u6267\u7740\u548c\u6177\u6168\u5927\u65b9\u53ef\u4ee5\u5c06\u6211\u4eec\u7684\u68a6\u60f3\u53d8\u4e3a\u73b0\u5b9e\u3002"} +{"id": "0006447", "video_name": "2cb3b5b4-8801-5b08-bc4e-b0d57be2b508", "text": "\u4e00\u540d\u4e2d\u56fd\u5b69\u5b50\u72ec\u81ea\u7ad9\u5728\u516c\u8def\u4e2d\u592e\uff0c\u5468\u56f4\u9ad8\u697c\u6797\u7acb\u3002"} +{"id": "2005413", "video_name": "189d3d25-15bc-551f-9194-06d21a57ff4a", "text": "\u54c8\u7f57\u5a01\u5c4b\u7684\u795e\u79d8\u6708\u5149\u7167\u7247\uff0c\u626d\u66f2\u3001\u591a\u8282\u7684\u6811\u6728\u6295\u4e0b\u957f\u957f\u7684\u5a01\u80c1\u6027\u9634\u5f71\u3002"} +{"id": "4003094", "video_name": "7eca0582-b13a-513f-9dab-5d4704a6391f", "text": "\u5728\u7ebd\u7ea6\u57ce\u4e0a\u7a7a\u76d8\u65cb\u7684\u52a8\u6001\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "2003694", "video_name": "c9b9a178-8985-50ba-855f-9d80bc0e93df", "text": "\u4eba\u4eec\u4ece\u4f20\u9001\u95e8\u51fa\u6765\uff0c\u8fdc\u5904\u5439\u6765\u4e00\u9635\u6c99\u5c18\u98ce\u3002"} +{"id": "8001018", "video_name": "0a590195-ab84-5d61-b452-d48741c6cff2", "text": "\u5728\u7070\u5ea6\u8c03\u7684\u5bb6\u5c45\u5546\u5e97\u91cc\uff0c\u7537\u4eba\u4eec\u4f38\u624b\u62ff\u4e66\u3002"} +{"id": "1003962", "video_name": "49256276-7735-5f97-a8eb-ff11c864f87a", "text": "\u9a91\u58eb\u6218\u58eb\u5728\u5e86\u795d\u80dc\u5229\uff0c\u955c\u5934\u5411\u4e0a\u79fb\u52a8\u5230\u4f4e\u5904\u3002"} +{"id": "4004166", "video_name": "39e4281a-83cc-5190-a554-cf3c661bfb61", "text": "\u4e00\u4f4d\u5973\u58eb\u5fae\u7b11\u7740\uff0c\u770b\u8d77\u6765\u5f88\u6f02\u4eae\u3002"} +{"id": "2006218", "video_name": "4a7ebeb1-8b2d-542e-93bf-12c53840a371", "text": "\u8fd0\u52a8\u978b\u548c\u889c\u5b50\u5e97\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c\u5927\u91cf\uff0c\u5e74\u8f7b\u7684\u98ce\u683c\uff0c\u889c\u5b50\uff0c\u6807\u5fd7\u7a7a\u95f4\uff0c\u8010\u514b\u889c\u5b50\uff0c4k"} +{"id": "4003167", "video_name": "c8ad7ffa-1805-58f5-8f6b-f71811109a5d", "text": "AI\u7b97\u6cd5\u5206\u6790\u7528\u6237\u6d4f\u89c8\u5386\u53f2\u3002"} +{"id": "7004234", "video_name": "e31f44df-aaa1-5b67-ad3d-a3f65e4b44e3", "text": "\u5c55\u793a\u4e00\u4e2a\u6709\u888b\u5c0f\u888b\u9f20\u548c\u5b83\u7684\u5c0f\u5b9d\u5b9d\u4ece\u888b\u5b50\u91cc\u63a2\u51fa\u5934\u6765\u7684\u52a8\u753b\uff0c2D\u52a8\u753b\u3002 \n\nSource sentence: I need to buy a plane"} +{"id": "0004503", "video_name": "0a1f27af-4737-5994-be48-9113c22ef970", "text": "\u9ed1\u732b\u7ad9\u7740\u770b\u5411\u955c\u5934\uff0c\u80cc\u666f\u662f\u7c89\u8272\u70df\u96fe\uff0c\u903c\u771f\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\u7f29\u653e\u3002\n\nSource sentence: I need to buy some"} +{"id": "2006005", "video_name": "2abef45d-a653-5019-b58a-61e3caa0639c", "text": "\u7f8e\u56fd\u5728\u5168\u7403\u8303\u56f4\u5185\u6301\u7eed\u53d1\u52a8\u6218\u4e89\uff0c\u4ee5\u4fdd\u6301\u5176\u6b66\u5668\u5236\u9020\u5546\u7684\u4e1a\u52a1\u8fd0\u8f6c\u3002"} +{"id": "0006816", "video_name": "339709e1-b234-5a93-914c-bdddd7bf81db", "text": "\u4e00\u53ea\u62ff\u7740\u6fc0\u5149\u5251\u7684\u9f99"} +{"id": "1004600", "video_name": "55acd7a3-ceb9-54bb-81b1-743bea889797", "text": "\u5c0f\u9c7c\u7f38\u91cc\u7684\u5c0f\u6f02\u4eae\u9c7c\u3002"} +{"id": "6003787", "video_name": "d6264632-5b10-5bb9-a3e0-3f6f6d502721", "text": "\u83f2\u5229\u514b\u65af\uff0c\u5c0f\u72d0\u72f8\uff0c\u4e0e\u5154\u5b50\u5206\u4eab\u98df\u7269\uff0c\u5c55\u73b0\u4e86\u4ed6\u7684\u5de8\u5927\u5584\u826f\u548c\u6177\u6168\u3002"} +{"id": "7003410", "video_name": "4511fd02-d477-5c4e-a0c9-a784d6dbac10", "text": "\u8003\u53e4\u56e2\u961f\u7ad9\u5728\u6316\u6398\u51fa\u6765\u7684\u9057\u5740\u5185\u3002"} +{"id": "8002360", "video_name": "9414ff8c-c141-5f84-87c9-ffda7d891ca8", "text": "\u4e00\u4f4d\u6b66\u5f53\u5f1f\u5b50\u6b63\u5728\u73a9\u5fb7\u5dde\u6251\u514b\u3002"} +{"id": "3006520", "video_name": "4c3d3d86-050f-55bb-b889-3570381c9474", "text": "\u8001\u631d\u4ee3\u8868\u6027\u5f62\u8c61 \n\u4fe1\u606f\uff1aENCORE \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3006943", "video_name": "5f19dcb3-3819-59b7-af61-f536ea2d7d58", "text": "\u94a2\u94c1\u4fa0\u548c\u8d85\u4eba\u4e00\u8d77\u5728\u6cb3\u8fb9\u9493\u9c7c\u3002"} +{"id": "1006431", "video_name": "75a750d0-f4c9-5385-93bd-b22a32f44c2b", "text": "\u80af\u5c3c\u4e9a\u5973\u5b69\u5728\u6e05\u6668\u7a7f\u8fc7\u6069\u8d21\u5c71\u8109\u7684\u4f0a\u6ed5\u5c71\u8dd1\u9a6c\u62c9\u677e\uff0c\u5176\u4ed6\u4eba\u7d27\u968f\u5176\u540e\u3002"} +{"id": "2004499", "video_name": "d1bcef1e-82d8-5a4d-864e-a55a144e1f09", "text": "\u54c8\u5229\u6ce2\u7279\u540d\u4eba\u6a21\u62df\u683c\u6597\u6e38\u620f\u5f62\u8c61\uff1a"} +{"id": "2006162", "video_name": "53cb78df-2697-5cb5-816e-9a3f9cacfbb8", "text": "Monkey D. Luffy\u548cMichael Jordan\u4e00\u8d77\u6253\u7bee\u7403\u3002"} +{"id": "7004244", "video_name": "87039341-4a7d-502e-bbad-58ef08329401", "text": "\u4e00\u4e2a\u4eba\u548c\u4ed6\u7684\u8863\u670d\u90fd\u88ab\u6495\u7834\u4e86\u3002"} +{"id": "8003452", "video_name": "57825b32-53a9-5cda-8958-c4b4d8b73459", "text": "\u4e00\u4e2a\u6709\u8fab\u5b50\u7684\u7ef4\u4eac\u4eba\u8df3\u5165\u6c34\u4e2d\uff0c\u7136\u540e\u53d8\u6210\u4e86\u4e00\u6761\u9c7c\u3002"} +{"id": "4004034", "video_name": "3a187cd4-c26d-5a37-b73d-6ae10f248e38", "text": "\u4e24\u4e2a\u4eba\u4e92\u76f8\u95ee\u5019\u5e76\u6253\u4e86\u4e00\u5206\u949f\u7684\u67b6\u3002"} +{"id": "4003463", "video_name": "4da5ab7e-1ab0-508f-9979-01648617010a", "text": "\u8d70\u5728\u529e\u516c\u5ba4\u91cc\u7684\u65f6\u9ae6\u7537\u5b50\u7a7f\u7740\u67e0\u6aac\u4e3b\u9898\u7684\u5962\u534e\u897f\u88c5\u3002"} +{"id": "2003833", "video_name": "c472a346-a66c-5090-8d8b-75756284cbbf", "text": "\u4e24\u4e2a\u62e5\u6709\u4e2d\u56fd\u6b66\u672f\u6c14\u8d28\u7684\u4eba\u5f62\u673a\u5668\u4eba\uff0c\u5404\u6301\u4e00\u628a\u5251\u8fdb\u884c\u51b3\u6597\u3002"} +{"id": "2007746", "video_name": "5ae0b88b-0836-5f60-adf8-9ec987c6c092", "text": "\u4e00\u4e2a\u8272\u5f69\u4e30\u5bcc\u3001\u52a8\u6001\u7684\u56fe\u8868\uff0c\u5448\u73b0\u4e86\u80a1\u5e02\u5d29\u76d8\u7684\u9661\u5ced\u4e0b\u6ed1\u8d8b\u52bf\u3002\u56fe\u8868\u5468\u56f4\u6709\u5404\u79cd"} +{"id": "3005041", "video_name": "a0dd5679-bef3-52dd-9dc5-a1907e73a825", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5973\u5b69\u5728\u4e00\u4e2a\u604d\u60da\u97f3\u4e50\u8282\u4e0a\u8df3\u821e\uff0c\u91c7\u7528\u7d20\u63cf\u98ce\u683c\uff0c\u4e2d\u666f\uff0c\u9ed1\u767d\u3002"} +{"id": "0005714", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "\u90a3\u4e2a\u6709\u6c34\u73e0\u7684\u5df4\u5df4\u6a59\u5b50\u6b63\u5728\u6b22\u5feb\u5730\u8df3\u8dc3\u3002"} +{"id": "6004591", "video_name": "0ff29c95-7ba5-50da-823e-7caa1819472e", "text": "\u8001\u4eba\u88ab\u8c0b\u6740\u7684\u77ed\u89c6\u9891"} +{"id": "6002713", "video_name": "11541338-35d7-5cef-918b-ee7f1297a433", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u8239\u6c89\u6ca1\uff0c\u4eba\u4eec\u57281912\u5e74\u5c16\u53eb\u3002"} +{"id": "8002979", "video_name": "ff39e9ec-a1cc-5034-b157-d82f7d08a206", "text": "\u4e00\u90e8\u5173\u4e8e\u4e00\u8258\u8ffd\u6355\u5de8\u578b\u9cb8\u9c7c\u7684\u54e5\u7279\u5f0f\u7535\u5f71\u3002"} +{"id": "6002004", "video_name": "9a93030e-8514-51f7-bbc3-568086aea2ee", "text": "\u57c3\u53ca\u6218\u58eb\u66f4\u903c\u771f\u76844K\u5206\u8fa8\u7387\u3002"} +{"id": "4002011", "video_name": "e8c339be-7fbc-59ac-abc4-f85a9ec61398", "text": "\u4e00\u53ea\u72d7\u5728\u6811\u4e0b\u770b\u5230\u4e86\u592a\u9633\u3002"} +{"id": "1005301", "video_name": "61664b33-a34a-5305-a51a-552a78b814c5", "text": "\u4e16\u754c\u9010\u6e10\u53d8\u6210\u4e00\u4e2a\u66f4\u52a0\u7eff\u8272\u3001\u5065\u5eb7\u7684\u661f\u7403\u7684\u526a\u8f91\u3002"} +{"id": "7002574", "video_name": "b5b93b75-b36b-5c82-b83a-e8d277aba565", "text": "\u4e00\u4e2a\u5973\u5b69\u8fb9\u5403\u6c49\u5821\u8fb9\u5fae\u7b11\u3002"} +{"id": "0004177", "video_name": "0499f50b-f0ba-534d-be19-b0ada44ff715", "text": "\u8fdc\u8fdc\u7684\u4e00\u7247\u8302\u5bc6\u68ee\u6797"} +{"id": "1004585", "video_name": "5544b6a5-302f-5fa2-a6a8-f2be990e8504", "text": "\u516c\u9e7f\u7a7f\u8457\u6642\u5c1a\u7684\u670d\u88dd\u5728\u6a02\u968a\u4e2d\u6f14\u594f\u6416\u6efe\u97f3\u6a02\u3002"} +{"id": "3006104", "video_name": "9f63031b-6404-57a9-9aad-4334b95cbb78", "text": "\u60f3\u8c61\u4e00\u5e45\u5e73\u9759\u7684\u6d77\u6ee9\u65e5\u843d\u573a\u666f\u3002\u843d\u65e5\u5c06\u5929\u7a7a\u6d82\u4e0a\u6a59\u8272\u548c\u7c89\u7ea2\u8272\u7684\u8272\u8c03\uff0c\u5728\u6d77\u6ee9\u4e0a\u6295\u4e0b\u957f\u957f"} +{"id": "5001441", "video_name": "7e3d5857-69d7-5e40-af4a-36edab06c895", "text": "\u4e00\u4e2a\u4eba\u5728\u4e0d\u611f\u5174\u8da3\u7684\u60c5\u51b5\u4e0b\u6d4f\u89c8\u6296\u97f3\u3002"} +{"id": "8003888", "video_name": "d5e4e117-a4b7-5739-aac6-03c1f1733525", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6781\u7b80\u827a\u672f\u4f5c\u54c1\uff0c\u6709\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u65e5\u843d\u7684\u957f\u6905\u4e0a\u3002"} +{"id": "1004589", "video_name": "555d194b-52e8-514d-9562-796e50dacbc9", "text": "\u4e00\u53ea\u84dd\u91d1\u521a\u9e66\u9e49\u5728\u5403\u6930\u5b50\u3002"} +{"id": "4002965", "video_name": "5d29a354-3225-5315-aebb-b817cd8c62db", "text": "\u5728\u5065\u8eab\u623f\u91cc\u4e3e\u91cd\u7684\u808c\u8089\u9e21\uff0c\u52a8\u4f5c\u8fc5\u901f\uff0c\u903c\u771f\u7684\u56fe\u50cf\u3002"} +{"id": "2007207", "video_name": "1e170fee-2c38-5fda-8c6b-c56e3f5d1e0e", "text": "\u5723\u585e\u5df4\u65af\u8482\u5b89\u6b89\u9053\uff0c\u963f\u83b1\u54c8\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa70\u5e74\u4ee3\u827a\u672f\u7535\u5f71"} +{"id": "6002296", "video_name": "0372fd0e-b50b-5184-bc16-2affd17b2e94", "text": "\u4e00\u53ea\u72ee\u5b50\u8d70\u5230\u5362\u585e\u6069\u5e02\u3002"} +{"id": "3006341", "video_name": "587ce333-844f-5c69-a50c-2f0628ad1e7c", "text": "\u53e6\u4e00\u79cd\u7231\u60c5\u662f\u5341\u4e2a\u7537\u5b69\u7ad9\u5728\u4e00\u8d77\uff0c\u4e03\u4e2a\u662f\u4e66\u5446\u5b50\uff0c\u516b\u4e2a\u662f\u574f\u5b69\u5b50\uff0c\u53ea\u6709\u4e00\u4e2a\u662f\u6700\u53ef\u7231\u7684\u3002"} +{"id": "3003445", "video_name": "38285a0e-4d25-5a4f-9155-e8267ee0d1ca", "text": "\u4eba\u4eec\u5728\u6218\u4e89\u4e2d\u5954\u8dd1\uff0c\u4ece\u4e0a\u65b9\u6444\u50cf\u673a\u62cd\u6444\uff0c\u76ae\u514b\u65af"} +{"id": "8001153", "video_name": "74ce0899-d254-53cd-9eba-926af4ac8835", "text": "\u9ad8\u7a7a\u65e0\u4eba\u673a\u62cd\u6444\u4e00\u4e2a\u5145\u6ee115\u8f86\u5e9f\u5f03\u8f66\u8f86\u7684\u519c\u6751\u516c\u8def\u3002\u51e0\u53ea\u9965\u997f\u7684\u50f5\u5c38\u5728\u8f66\u8f86"} +{"id": "4002303", "video_name": "2a726460-1c8a-5900-87b5-aaa19ba92f87", "text": "\u7231\u56e0\u65af\u5766\u7ad9\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u7684\u4e2d\u5fc3\u3002\u76ae\u514b\u65af3D\u3002\u7535\u5f71\u5316\u3002"} +{"id": "1006355", "video_name": "745b73dd-2080-544f-8ad8-8af986087ca1", "text": "\u4e4c\u9f9f\u5728\u5154\u5b50\u6253\u76f9\u7684\u65f6\u5019\u8d62\u5f97\u4e86\u6bd4\u8d5b\u3002\u6700\u91cd\u8981\u7684\u662f\uff0c\u4ed6\u505a\u5230\u4e86\u8c26\u865a\u800c\u6ca1\u6709\u50b2\u6162\u3002"} +{"id": "3004641", "video_name": "82ed6b3b-0107-5ca5-99d5-dc3f5c952d5b", "text": "\u5c0f\u718a\u732b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u4ed6\u4eec\u7684\u7b11\u58f0\u5728\u591c\u7a7a\u4e2d\u56de\u8361\u3002\u6708\u5149\u7167\u4eae\u4e86\u5b83\u4eec\u7684\u5b09\u620f\uff0c"} +{"id": "0006449", "video_name": "2cbb39e3-b831-551d-bf11-bd5861ff89a1", "text": "\u8f66\u8f86\u7684\u706f\u5149\u7167\u5728\u6811\u4e0a\uff0c\u7acb\u5373\u53cd\u5c04\u51fa\u6765\u3002"} +{"id": "4004384", "video_name": "f3624b6a-5c4e-5fc8-a92e-cf49f1e08dd2", "text": "\u5b89\u5fb7\u70c8\u00b7\u5854\u53ef\u592b\u65af\u57fa\u7535\u5f71\u98ce\u683c\u7684\u76f2\u76ee\u68a6\u5883"} +{"id": "0004581", "video_name": "0b78ac2f-038d-5bce-ad74-6db4773ba7d5", "text": "\u591a\u5143\u5316\u80cc\u666f\u7684\u4eba\u4eec\u53c2\u52a0\u5728\u7ebf\u8ba8\u8bba\u3002"} +{"id": "1005735", "video_name": "697f68cf-d75e-5cd8-800b-ad312c8263dc", "text": "\u7ec6\u83cc\u7a81\u7136\u51fa\u73b0\u5e76\u8986\u76d6\u4e86\u6574\u4e2a\u89c6\u9891\u3002"} +{"id": "8001346", "video_name": "6089d733-0ebc-5514-99ac-597a84fcf001", "text": "\u8bb8\u591a\u4eba\u624b\u62ff\u4ee5\u8272\u5217\u56fd\u65d7\u5728\u8def\u4e0a\u6e38\u884c\u3002"} +{"id": "0003435", "video_name": "3d833095-eae9-5d49-97aa-489ec4972a3f", "text": "\u5b57\u5e55\uff0c\u4e2d\u4e16\u7eaa\u6218\u6597\uff0c\u9ed1\u767d\uff0c\u8d85\u903c\u771f\uff0c\u591c\u665a"} +{"id": "2007562", "video_name": "b591bf5d-1a5f-563a-a389-9519452a3080", "text": "\u5728\u4e00\u5ea7\u5e9f\u5f03\u7684\u623f\u5b50\u91cc\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u9662\u5b50\u91cc\u5f98\u5f8a\uff0c\u62cd\u6444\u5168\u666f\u7167\u7247\u3002\n\nSource sentence: The company's profits have increased significantly in the"} +{"id": "2006855", "video_name": "45b8c86a-6597-5b97-b252-50b4cf1049ea", "text": "\u4e54\u00b7\u62dc\u767b\u6b63\u5728\u4e0e\u4e00\u4e2a\u5de8\u578b\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "4002175", "video_name": "b5813dde-1014-56cc-82c8-a0aca4c15160", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u53ea\u72d7\u5728\u68ee\u6797\u91cc\u770b\u5230\u4e86\u4e00\u53ea\u65ad\u4e86\u7fc5\u8180\u7684\u9e1f\u3002"} +{"id": "5001119", "video_name": "ef2c82a2-f519-5a91-bd4d-eac23f31dbc3", "text": "\u4e00\u6b3e\u4efb\u5929\u5802\u7535\u529b\u624b\u5957\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0004343", "video_name": "0773a0e3-0858-5321-a44e-9ccfc5843970", "text": "\u5927\u4e2a\u5b50\u9ad8\u4e2a\u8001\u5e08\u5750\u5728\u7a7f\u7740\u5b66\u6821\u5236\u670d\u7684\u7f8e\u4e3d\u4e9a\u6d32\u5973\u5b66\u751f\u65c1\u8fb9\uff0c\u8d85\u73b0\u5b9e\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "1003859", "video_name": "47200092-c9e8-5e67-a0d0-a587de9da266", "text": "\u4f7f\u56fe\u50cf\u6574\u9f50\u79fb\u52a8\uff0c\u89c6\u9891\u6301\u7eed\u65f6\u95f4\u4e3a10\u79d2\u3002\u9644\u4ef61\u3002"} +{"id": "2004367", "video_name": "4bb7a067-0e24-529a-ac1a-9257eba531a9", "text": "\u4fa7\u89d2\u5ea6\uff0c\u4e00\u4e2a\u5973\u5b69\u72ec\u81ea\u5750\u5728\u9ad8\u5c71\u9876\u7aef\uff0c\u957f\u53d1\u98d8\u626c\uff0c\u9762\u5bb9\u51dd\u601d\uff0c\u5915\u9633\u7684\u989c\u8272\uff0c\u5fae\u98ce\uff0c\u592a\u9633"} +{"id": "5001297", "video_name": "f4840393-eab9-533d-8e11-a6bd04fa2bc8", "text": "\u5e7c\u72ee\u5b09\u620f\u73a9\u800d\uff0c\u4ece\u6210\u5e74\u72ee\u5b50\u8eab\u4e0a\u5b66\u4e60\u6280\u80fd\u3002\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u98ce\u683c\uff0c16\uff1a"} +{"id": "8001514", "video_name": "605eebf0-28d9-5b5d-bb08-3a029f2b89fd", "text": "\u4e24\u4e2a\u670b\u53cb\u5728\u68ee\u6797\u4e2d\u4ee5\u8fea\u58eb\u5c3c\u98ce\u683c\u6563\u6b65\u3002"} +{"id": "3006581", "video_name": "84e34950-b51f-53a8-ab6c-6d6134580e83", "text": "\u5168\u8eab\uff0c\u68c9\u82b1\u7cd6\u8138\u670b\u514b\u98ce\u683c\u7684\u5e73\u8861\u8f66\uff0c\u5927\u5199\u5b57\u6bcdX\u7684\u5370\u82b1\u8fde\u5e3d\u886b\uff0c\u6e32\u67d3\u56fe\uff0c\u5217"} +{"id": "8002788", "video_name": "4ec4dc66-2c8f-5934-b8b1-cd288c1f64a4", "text": "30\u79d2\u7684\u89c6\u9891\u4ecb\u7ecd\u4e8c\u624b\u5e02\u573a\uff0c\u60a8\u53ef\u4ee5\u4ea4\u6362\u65e7\u978b\u5e76\u83b7\u5f97\u8d2d\u4e70\u65b0\u978b\u7684\u6298\u6263\u3002"} +{"id": "8002958", "video_name": "43fc8602-a5e0-5da0-865c-965048a4a00a", "text": "\u65e9\u4e0a\uff0c1880\u5e74\u4ee3\u7684\u7ebd\u7ea6\u5e02\u4e00\u4e2a\u5c0f\u800c\u62e5\u6324\u7684\u516c\u5bd3\u91cc\uff0c\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5728\u4e00\u4f4d\u6b63\u5728\u7761\u89c9\u7684\u5973\u4eba\u8eab\u4e0a"} +{"id": "0004750", "video_name": "0ea46ba0-3996-5c63-ae23-72d53bc8597b", "text": "\u82cd\u5c71\u6d3e\u98ce\u683c\u7684\u9f99\uff0c\u5e26\u6709\u661f\u9645\u80cc\u666f"} +{"id": "8001724", "video_name": "f29fc8d3-a271-503a-bce7-1f2533623099", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u4e2d\u56fd\u7537\u5b50\u95ed\u7740\u773c\u7761\u5728\u8def\u8fb9\u3002"} +{"id": "3003667", "video_name": "965d45d6-0708-5b06-9520-b9c91799b165", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u7537\u5b69\u8d70\u5411\u4ed6\u7684\u5b66\u6821\u3002"} +{"id": "4004806", "video_name": "e252f604-880a-522e-90c3-ac59b26d5fd6", "text": "\u4e00\u4e2a\u4f01\u9e45\u5728\u76ae\u514b\u65af\u98ce\u683c\u76843D\u52a8\u753b\u4e0b\uff0c\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u6cbf\u7740\u96ea\u5c71\u6eda\u52a8\u3002"} +{"id": "6002011", "video_name": "d9aa47e4-610d-55a9-8eaf-5b60c8020166", "text": "\u534e\u7f8e\u7684\u5a5a\u793c\u62db\u5f85\u4f1a\uff0c\u6709\u8c6a\u534e\u6de1\u7c89\u8272\u82b1\u5349\u548c\u7f8e\u4e3d\u7684\u4e9a\u9ebb\u5e03\u3002 \n\nSource sentence: The restaurant serves authentic Chinese cuisine with a"} +{"id": "0003471", "video_name": "3e34a792-8802-506e-bd6b-0e7c6ffecf1b", "text": "3D \u52a8\u753b\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u655e\u5f00\u7684\u7a7a\u95f4\u91cc\u6253\u7403\uff0c4k\uff0c\u8272\u5f69\u9c9c\u660e\u3002"} +{"id": "8001429", "video_name": "7b45ad16-6c03-5159-8a56-c75305946ea9", "text": "\u9ed1\u6697\u623f\u95f4\u91cc\u6234\u7740VR\u5934\u76d4\u7684\u7537\u4eba\u3002"} +{"id": "6002081", "video_name": "a980f7f4-185d-5410-8eab-79846ee6d953", "text": "\u963f\u62c9\u4e01\u4e58\u4e91\u9ad8\u6e05\u56fe\u7247"} +{"id": "1006119", "video_name": "70355a93-8bc0-5f72-a10c-ebf5ace6b50a", "text": "\u4e54\u65af\u7433\u00b7\u57c3\u5c14\u5357\u5fb7\u65af\u5728\u8131\u8863\u821e\u6746\u4e0a\u3002"} +{"id": "0005659", "video_name": "1ed47e8e-639c-5d8b-8887-42f33a01986f", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u591c\u665a\u7535\u5f71\u57ce\u5e02\uff0c\u6d53\u70c8\u7684\u5149\u5f71\uff0c\u9713\u8679\u706f\uff0c\u6708\u5149\u3002"} +{"id": "6002526", "video_name": "7f86ecbb-adde-58cb-a8a6-bbde95c49c7e", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u5973\u6027\u89d2\u8272\u4e0e\u5979\u7684\u513f\u5b50\u3001\u5973\u513f\u548c\u4e08\u592b\u4e00\u8d77\u5403\u65e9\u9910\u3002"} +{"id": "2006346", "video_name": "263c7f72-015f-54c5-9cf4-20e59a84fa80", "text": "\u6cd5\u56fd\u5730\u56fe\u88ab\u5fb7\u56fd\u56fd\u65d7\uff08\u7ea2\u8272\u3001\u9ec4\u8272\u3001\u9ed1\u8272\uff09\u8986\u76d6\u3002"} +{"id": "6004230", "video_name": "51af2f1d-e737-56e6-8ead-a99f23c2d7b5", "text": "\u4f7f\u8fd9\u4e2a\u4eba\u7269\u4ece\u5730\u4e0b\u5347\u8d77\u6765\u3002"} +{"id": "4002670", "video_name": "e04948d0-e8a7-5956-b68f-4fb18090b58a", "text": "\u72d7\u548c\u732b\u7684\u6df7\u8840\u5728\u548c\u4eba\u4e00\u8d77\u73a9\u800d\uff0c\u6bd4\u4f8b\u4e3a10:3\u3002"} +{"id": "2005840", "video_name": "db153f8b-629c-5e51-8f06-9cfd95959704", "text": "\u4e00\u573a\u6218\u4e89\u6df7\u4e71\u8f6c\u5316\u4e3a\u4ee5\u8272\u5217\u56fd\u65d7\u7684\u80dc\u5229\u3002\n\nSource sentence: The panda is an endangered species native to China. \n\n\u718a\u732b\u662f\u4e2d\u56fd\u7684\u6fd2"} +{"id": "3003738", "video_name": "914104a9-51a3-503d-b485-0949db5726b3", "text": "\u521b\u9020\u4e00\u4e2a\u6c38\u4e0d\u7ec8\u6b62\u7684\u5b87\u5b99\u89c6\u9891\uff0c\u53ef\u4ee5\u5faa\u73af\u64ad\u653e\u5e76\u611f\u89c9\u6c38\u4e0d\u7ed3\u675f\u3002"} +{"id": "8002329", "video_name": "056e5a83-f454-5a06-b07c-5352c275058e", "text": "\u61a8\u8c46\u5148\u751f\u8eba\u5728\u4e00\u5f20\u5e8a\u4e0a\uff0c\u5e8a\u4e0a\u94fa\u6ee1\u4e86\u73ab\u7470\u82b1\uff0c\u5c31\u50cf\u300a\u7f8e\u56fd\u4e3d\u4eba\u300b\u4e2d\u7684\u573a\u666f\u3002"} +{"id": "1006448", "video_name": "7609552d-5cab-53f4-9e67-513efc07d1ce", "text": "\u6a44\u6984\u679c\u5b9e\u5236\u9020\u7684\u7a7a\u95f4"} +{"id": "7003002", "video_name": "029d0f66-e01e-548b-9478-97a2aa28da69", "text": "\u9ed1\u6697\u7684\u5bfa\u5e99\uff0c\u8708\u86a3\u5934\uff0c\u52a0\u5195\u7684\u56fd\u738b\uff0c\u8ff7\u5e7b\u7684\u70df\u96fe\uff0c\u4e0d\u7965\u7684\u7ea2\u706f\uff0c\u4e1b\u6797\uff0c"} +{"id": "3005171", "video_name": "e9590f45-912f-5c59-b6d9-1df0d99d4f5f", "text": "\u4e00\u4e2a\u9ed1\u8272\u89d2\u72b6\u7269\u7684\u7537\u4eba\u5728\u5ca9\u77f3\u73af\u5883\u4e2d\uff0c\u5e26\u6709\u68a6\u9b47\u822c\u7684\u6c1b\u56f4\uff0c\u7ea2\u8272\uff0c16.9\u3002"} +{"id": "7003006", "video_name": "713647a0-1fc6-5e5c-a39e-ae49790ffb37", "text": "\u8fbe\u79d1\u592b\u65af\u57fa\u7684\u9ed1\u767d\u8001\u7535\u5f71\u300a\u661f\u5ea7\u68ee\u6797\u300b\u3002"} +{"id": "2005389", "video_name": "c49b1e25-d86a-512e-9eb3-049270a42df9", "text": "\u5728\u6469\u6d1b\u54e5\u7684\u65c5\u6e38\u8005\u6b63\u5728\u8df3\u821e\uff0c\u8df3\u7684\u662f\u6765\u81ea\u4e1c\u90e8\u91cc\u592b\u5c71\u7684\u4f20\u7edf\u6b66\u58eb\u821e\u8e48\u2014\u2014\u96f7\u683c\u8fbe\u821e\uff0c"} +{"id": "8001744", "video_name": "deb2ffa8-2791-5576-8beb-f6a503ba976b", "text": "\u540e\u53f0\u6709\u4e00\u4e2a\u5927\u578b\u53d1\u5149\u5341\u5b57\u67b6\u7684\u821e\u53f0\u3002"} +{"id": "1004266", "video_name": "4ef4ffbc-f6cf-58d9-9ddf-f316f0c38f94", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\u5c55\u793a\u7e41\u534e\u57ce\u5e02\u5728\u5927\u96e8\u4e2d\u8272\u5f69\u6591\u6593\u7684\u821e\u8e48\u3002"} +{"id": "5001708", "video_name": "a9a42e35-12f0-54c1-b5d9-92b556bdb569", "text": "\u5154\u5b50\u56e0\u5954\u8dd1\u800c\u7b4b\u75b2\u529b\u5c3d\uff0c\u8eb2\u5728\u4e00\u5757\u5927\u77f3\u5934\u540e\u9762\u3002"} +{"id": "4002500", "video_name": "847edd2d-d7db-5f38-ba12-0e40364f3bfa", "text": "\u88c5\u7532\u58eb\u5175\u4e58\u98de\u884c\u5668\u5e26\u7740\u79d1\u5b66\u5bb6\u9003\u79bb\uff0c\u7559\u4e0b\u71c3\u70e7\u7684\u8bbe\u65bd\u3002"} +{"id": "1003109", "video_name": "3938a144-e895-5cde-afd8-deafbb6488d7", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f\u4e0e\u516c\u4e3b\u8df3\u8dc3\u89c6\u9891\uff0c\u957f\u5ea65\u79d2\u3002"} +{"id": "7004452", "video_name": "713ce300-a8b8-5e2e-b628-644e8060f545", "text": "\u4e9a\u5f53\u00b7\u91cc\u58eb\u6ee1\u5927\u53e3\u5403\u7740\u4e00\u4e2a\u5de8\u5927\u7684\u6c49\u5821\uff0c\u6c57\u6c34\u5927\u91cf\u6d41\u51fa\u3002"} +{"id": "1005875", "video_name": "6c14fbcf-ae05-538a-b8e1-1a65a9d8503d", "text": "\u5728\u7eff\u8272\u8349\u5730\u4e0a\u98de\u9a70\u7684\u7537\u4eba\u4eec\n\nSource sentence: The sun sets behind the mountains, painting the sky with hues of orange and pink.\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\uff0c\u628a\u5929"} +{"id": "8002167", "video_name": "e2b1e42a-c6d9-5d56-8c21-1eaf0aaee23a", "text": "\u5b87\u822a\u5458\u7a7f\u8d8a\u5b87\u5b99\uff0c8k\uff0c\u771f\u5b9e\u3002"} +{"id": "8001355", "video_name": "f5cfd46f-9e42-59b7-a2d5-ad55decdd340", "text": "\u989c\u8272\u5728\u4e00\u5e27\u4e4b\u540e\u6539\u53d8\uff0c\u7535\u5f71\u822c\u7684\uff0c\u6a21\u7cca\uff0c\u76f8\u673a\u79fb\u52a8\u5feb\u3002"} +{"id": "3006970", "video_name": "acb4d791-47ce-5012-a3fd-2e2a3570c26e", "text": "\u4e00\u53ea\u975e\u5e38\u5bcc\u6709\u7684\u6709\u5f88\u591a\u94b1\u7684\u84dd\u8272\u6cb3\u9a6c"} +{"id": "0005845", "video_name": "221f90c1-ea13-5176-b541-59686ba3204f", "text": "\u592a\u9633\u53d8\u6210\u7089\u706b\uff0c\u53d8\u5f62\uff0c\u53d8\u8272\u6de1\u5f31\uff0c\u8fd0\u52a8\u5feb\u901f\uff0c\u653e\u5927\u89c6\u89d2\u3002"} +{"id": "4002785", "video_name": "491f25dc-b955-54d9-90b3-bf80fd875c2f", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u6076\u9b54\u4e4b\u821e\u526a\u5f71\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006231", "video_name": "908f8fc8-ebcc-5521-aa78-ce7f9740f0a3", "text": "\u4e00\u5e45\u6f2b\u753b\u98ce\u683c\u7684\u753b\u9762\uff0c\u706b\u5c71\u6b63\u5728\u55b7\u53d1\uff0c\u4eba\u4eec\u6b63\u5728\u9003\u79bb\u706b\u5c71\uff0c\u9762\u5411\u89c2\u4f17\uff0c\u6751\u5e84\u5c31\u5728\u706b\u5c71\u811a\u4e0b\uff0c"} +{"id": "6003613", "video_name": "53ea5a48-38fa-5906-9866-0eb389cc83c8", "text": "\u8bb2\u8bdd\u7684\u8001\u3001\u5e05\u3001\u6709\u529b\u91cf\u7684\u7537\u4eba\u76f4\u63a5\u5bf9\u7740\u9ea6\u514b\u98ce\u8bf4\u8bdd\uff0c\u5c31\u50cf\u5728\u64ad\u5ba2\u4e2d\u5750\u5728\u5927\u6905\u5b50\u4e0a\u3002"} +{"id": "4002456", "video_name": "93dbed4b-0d89-5f40-85ae-e233fe08dea3", "text": "\u4e00\u540d\u80d6\u80d6\u7684\u5973\u4eba\u7a7f\u7740\u65d7\u888d\uff0c\u9ed1\u8272\u7d27\u8eab\u88e4\u889c\uff0c\u8d64\u811a\u5750\u5728\u8def\u8fb9\u7684\u957f\u6905\u4e0a\u5fae\u7b11\uff0c\u767d"} +{"id": "2006180", "video_name": "71afdd54-478b-553c-ac09-6a209564db3c", "text": "\u745e\u58eb\u7684\u5c71\u8109\uff0c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\u3002"} +{"id": "0006846", "video_name": "342179f9-2b6d-5308-b7f0-fc2abed61ac8", "text": "\u62ab\u5934\u58eb\u4e50\u961f\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u97f3\u4e50\uff0c\u95ea\u70c1\u7740\u706f\u5149\uff0c\u91c7\u7528\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "8002972", "video_name": "d2de9bb7-94f6-5d2f-bd07-5d539023228a", "text": "\u76f8\u673a\u5bf9\u51c6\u4e86\u7a0b\u5e8f\u5458\u9762\u524d\u7684\u53cc\u663e\u793a\u5668\u3002\u5de6\u8fb9\u7684\u5c4f\u5e55\u663e\u793a\u7740\u4ee3\u7801\u7f16\u8f91\u5668\uff0c\u53f3\u8fb9\u7684\u5c4f\u5e55\u663e\u793a\u7740\u7f51\u7ad9\u9884\u89c8\u3002\u5fd9"} +{"id": "4004795", "video_name": "ee8000bd-3e3c-5058-8b2a-cdf9ebebb334", "text": "\u4e0d\u540c\u989c\u8272\u7684\u6cb9\u6f06\u753b\u9762"} +{"id": "1005838", "video_name": "6b50e5f6-f8e3-50fe-a8a3-70e2a59ebda7", "text": "\u4ed6\u4eec\u7684\u5a5a\u793c\u662f\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5e86\u795d\u6d3b\u52a8\uff0c\u5468\u56f4\u6709\u5bb6\u4eba\u548c\u670b\u53cb\u3002 \n\nSource sentence: I am looking forward to traveling to China and experiencing its rich culture."} +{"id": "2003303", "video_name": "d7383e9b-0f05-5611-97ca-f2b40520b76c", "text": "\u4e00\u4e2a\u5947\u5e7b\u7684\u573a\u666f\uff0c\u6355\u6349\u5230\u4e00\u53ea\u81ea\u4fe1\u5730\u7528\u4e24\u6761\u817f\u8e31\u6b65\u5411\u524d\u7684\u732b\uff0c\u76f4\u63a5\u9762\u5bf9\u89c2\u4f17\u3002\u8fd9\u53ea\u732b"} +{"id": "8002786", "video_name": "d34d68a2-e35d-51d2-bc03-a63ca4826f88", "text": "\u673a\u5668\u4eba\u5bf9\u9635\u4eba\u7c7b\u8db3\u7403\u6bd4\u8d5b\uff0c\u975e\u5e38\u52a8\u6001\u548c\u903c\u771f\u7684\u4f53\u79ef\u89c6\u9891\uff0c\u7ec6\u8282\u590d\u6742\uff0c\u80cc\u666f\u4e3a\u8db3\u7403\u573a\u3002"} +{"id": "1004464", "video_name": "52b22ea3-72eb-5167-bb19-03f69a7a25d6", "text": "criticized the company's decision to stop selling certain types of ammunition.\n\nTranslation: \u4e9a\u5386\u514b\u65af\u00b7\u743c\u65af\u5728\u6c83\u5c14\u739b\u5546\u5e97\u53d1\u8868\u8bb2\u8bdd\uff0c\u6279\u8bc4\u4e86\u8be5\u516c\u53f8"} +{"id": "7003853", "video_name": "7b26bd21-c6d0-5f69-b310-f1baa10661f0", "text": "\u5973\u6027\u548c\u5927\u8c61\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u98ce\u683c\u3002"} +{"id": "8003261", "video_name": "d7f95460-c05f-53d7-b123-6c57c0ecccc9", "text": "80\u5e74\u4ee3\u7684\u5546\u4e1a\u5e7f\u544a\uff0c\u7535\u5f71\u9897\u7c92\u6548\u679c\uff0cVHS\u626d\u66f2\uff0c\u4e3a\u4e00\u5bb6\u540d\u4e3aRichards Burger Barn\u7684\u9910\u5385\u5236\u4f5c\u3002\u4e00\u4e2a\u903c\u771f\u7684\u829d"} +{"id": "3003344", "video_name": "15f01072-d682-5239-9754-fac47fef1f00", "text": "\u7f8e\u4e3d\u7684\u4e1b\u6797\u591c\u666f\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c4k\u3002"} +{"id": "7002961", "video_name": "65f7025a-aac6-56b6-a368-ea03efeeb8af", "text": "\u4e2d\u8ddd\u79bb\u6444\u50cf\u673a\u62cd\u6444\u7684\u4fdd\u9669\u7bb1\u91cc\u7684\u94b1\u3002"} +{"id": "3006531", "video_name": "a75e7cc4-d36d-5807-8031-456e6453c78a", "text": "\u4e00\u8258\u4f01\u9e45\u5f62\u72b6\u7684\u7a7a\u95f4\u7ad9\u5728\u592a\u7a7a\u4e2d\u88ab\u9668\u77f3\u6467\u6bc1\u3002"} +{"id": "7002020", "video_name": "2ec3d5ff-1324-5e7a-90eb-f097da7a6256", "text": "\u5728\u6708\u5149\u4e0b\u7684\u6c99\u6f20\u88e1\uff0c\u4e00\u500b\u80cc\u8457\u9ea5\u888b\u7684\u963f\u62c9\u4f2f\u7537\u5b50\u7a7f\u8d8a\u5c71\u4e18\uff0c\u98a8\u512a\u96c5\u5730"} +{"id": "6004830", "video_name": "9402b4cf-9983-5b23-a676-10776585cc9a", "text": "\u4e3a\u6211\u62cd\u4e00\u6bb5\u6301\u6709\u771f\u9e21\u817f\u7684\u89c6\u9891\u3002"} +{"id": "8001587", "video_name": "48304c2c-e4f8-500d-afd8-b3add63cfd76", "text": "\u4e16\u754c\u7b2c\u4e8c\u6709\u8da3\u7684\u89c6\u9891\u6e38\u620f\u3002\u9ad8\u5206\u653b\u51fb4K Wario\u5728\u90a3\u91cc\u3002"} +{"id": "1005753", "video_name": "69d087b2-f67c-53ba-977b-70b3ee2b84c0", "text": "\u51e0\u4e2a\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684D6\u9ab0\u5b50\u5728\u684c\u5b50\u4e0a\u6eda\u52a8\u3002"} +{"id": "4004952", "video_name": "aa63a6e4-d61c-512b-ada9-9ea7f16d3afe", "text": "\u5b69\u5b50\u4eec\u6325\u624b\uff0c\u80cc\u666f\u662f\u7eff\u8272\u89c6\u9891\u3002"} +{"id": "2007273", "video_name": "323af08f-62ec-55f4-8234-01a06017c319", "text": "1850\u5e74\uff0c\u9a6c\u8f66\u5728\u6ce2\u58eb\u987f\u7684\u8857\u9053\u4e0a\u884c\u9a76\u3002"} +{"id": "0006872", "video_name": "348b1ce1-4dd5-57e6-b6a1-48f7c52da1d1", "text": "\u65e5\u672c\u6751\u5e84\uff0c\u5c4b\u9876\u4e3a\u6df1\u7070\u8272\uff0c\u5468\u56f4\u6709LED\u706f\u3002\u4fe1\u606f\uff1aJorge Alejandro\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3005243", "video_name": "07a8bf47-04b2-5f8f-b3d8-e08dbed4a49f", "text": "\u4e2d\u56fd\u53e4\u57ce\uff0c\u7f8e\u4e3d\u58ee\u89c2\uff0c8K\u753b\u8d28\u5b8c\u7f8e\uff0c\u5c61\u83b7\u6b8a\u8363\uff0c\u5f97\u5230\u56fd\u5bb6\u5730\u7406\u6742\u5fd7\u8ba4\u53ef\u3002"} +{"id": "7003621", "video_name": "f7631cc5-e9d7-5a18-a9b0-c5b48255c99f", "text": "\u63cf\u8ff0\u4ece\u5012\u584c\u7684\u5bfa\u5e99\u4e2d\u4ee4\u4eba\u632f\u594b\u7684\u9003\u8131\u548c\u91cd\u65b0\u8fdb\u5165\u4e1b\u6797\u7684\u5bbd\u6170\u611f\u3002"} +{"id": "1006562", "video_name": "7840f8e3-40cc-58a6-a57f-3ef7427ff048", "text": "\u521b\u9020\u4e00\u5e45\u5f62\u8c61\uff0c\u5c06\u7b97\u6cd5\u63cf\u7ed8\u6210\u6728\u5076\u5e08\uff0c\u5fae\u5999\u5730\u64cd\u7eb5\u7740\u5728\u7ebf\u884c\u4e3a\u3002"} +{"id": "0004717", "video_name": "0de69362-e629-5f2f-a968-1ef1af8eee35", "text": "\u5728\u4e00\u4e2a\u6e29\u67d4\u7684\u65f6\u523b\uff0c\u7537\u5973\u8f7b\u8f7b\u5730\u78b0\u5934\uff0c\u5206\u4eab\u5f7c\u6b64\u7684\u611f\u53d7\u3002\u5728\u8fd9\u4e2a\u8fc7\u7a0b\u4e2d\uff0c\u4e00\u79cd\u6e29\u6696\u548c\u7406\u89e3\u7684\u611f"} +{"id": "0003255", "video_name": "3a15c5db-3074-5dd4-85cf-eb690842790e", "text": "\u6d77\u4e0a\u7684\u6e38\u8f6e"} +{"id": "8003048", "video_name": "5e35b202-746c-5226-b6f4-852a282540d9", "text": "\u4e00\u4e2a\u6c49\u5821\u5e7f\u544a\uff0c\u6c49\u5821\u5305\u3001\u6c49\u5821\u8089\u3001\u751f\u83dc\u548c\u756a\u8304\u4e00\u8d77\u6389\u4e0b\u6765\uff0c\u7ec4\u6210\u4e00\u4e2a\u6210\u54c1\u6c49\u5821\u3002"} +{"id": "0003693", "video_name": "41d39358-ee1e-5456-8287-2be6ec6d7910", "text": "\u4e00\u4e2a\u623f\u95f4\u91cc\u6446\u6ee1\u4e86\u5404\u79cd\u74f6\u5b50\uff0c\u6709\u4e00\u4e2a\u5973\u5b69\u548c\u7537\u5b69\uff0c\u6bcf\u4e2a\u4eba\u9762\u524d\u90fd\u6709\u4e00\u53f0\u7535\u8111\u3002"} +{"id": "6003614", "video_name": "ec62053e-c9ad-5bf6-950a-57457fca5bae", "text": "\u963f\u62c9\u65af\u52a0\u7a7f\u7740\u5168\u9ed1\u7684\u7537\u5b50\uff0c\u6234\u7740\u9ed1\u8272\u515c\u5e3d\u5939\u514b\uff0c\u91c7\u7528\u53d8\u5f62\u6bd4\u4f8b\u7684\u753b\u9762\uff0c\u4ed6\u80cc\u5bf9\u7740\u6444"} +{"id": "0006751", "video_name": "325c8ffa-bd0b-58d4-a7c9-115c9157bbdc", "text": "\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u81ea\u8c6a\u5730\u7ad9\u5728\u8089\u7c7b\u5de5\u5382\u524d\u9762\u3002"} +{"id": "2006896", "video_name": "90be65e8-980c-5f17-a5c1-90fb2d4febad", "text": "\u8ff7\u5e7b\u67cf\u6797\u5973\u5b69\u5fae\u7b11\u7740\uff0c\u5979\u8eab\u540e\u662f\u4e00\u4e2a\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u95ea\u70c1\u7684\u5206\u5f62\u95e8\u6237\uff0c\u7c92\u5b50\u6e32\u67d3\uff0c"} +{"id": "8001579", "video_name": "3685df18-6b51-586b-b696-edff41f81bb3", "text": "\u767d\u8272\u53a2\u5f0f\u8d27\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u80cc\u666f\u662f\u7ecf\u8fc7\u7684\u6811\u6728\u3002"} +{"id": "0003906", "video_name": "458b4078-b2ad-55bb-a7b7-05f96abb30cd", "text": "\u4e00\u4e2a\u5728\u591c\u7a7a\u4e2d\u7684\u6708\u4eae\uff0c\u6a31\u82b1\uff0c\u8be6\u7ec6\u7684\u50cf\u7d20\u827a\u672f\u3002"} +{"id": "8001563", "video_name": "a4ba3535-3a35-5f84-a428-7fa7db0727e5", "text": "\u5361\u901a\u732b\u5411\u5c4f\u5e55\u8df3\u8dc3\uff0c\u6bcf\u79d245\u5e27\uff0c\u6709\u8da3\uff0c\u5f02\u60f3\u5929\u5f00\uff0c8K\u3002"} +{"id": "5001991", "video_name": "dabd1140-a990-5ac7-a122-3f580fa96689", "text": "\u7ebd\u7ea6\u5e02\uff0c\u591c\u665a\uff0c\u6708\u5149\u3002\u4fe1\u606f\uff1aERBYN\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004234", "video_name": "63afb380-7f63-58f8-a437-b5452c4e3f8d", "text": "\u4e00\u4f4d\u5973\u6027\u5728\u6069\u683c\u5170\u00b7\u5938\u5c14\u987f\u7684\u6ce2\u666e\u827a\u672f\u753b\u4f5c\u524d\u5438\u70df\uff0c\u8be5\u753b\u4f5c\u662fBehance\u6bd4\u8d5b\u7684\u83b7\u80dc\u8005\uff0c"} +{"id": "8003951", "video_name": "153cfc50-027b-555c-89e3-662085ea01f2", "text": "\u5fae\u7b11\u7684\u5403\u8c46\u4eba\u8ffd\u9010\u7740\u5bb3\u6015\u7684\u5e7d\u7075\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u8d85\u903c\u771f\uff0cUHD\uff0c64K\u3002"} +{"id": "8001778", "video_name": "331cbd44-94d3-5708-9236-2c0386246125", "text": "\u5e74\u8f7b\u7537\u5b69\u88ab\u5413\u5230\u7684\u5f62\u8c61\u3002"} +{"id": "1006967", "video_name": "7f79005a-d276-586d-9624-303cbef016b5", "text": "\u5357\u5370\u5ea6\u56fd\u738b\u5361\u901a\u5f62\u8c61\u89d2\u8272"} +{"id": "2003062", "video_name": "b1101580-938b-5779-83d7-ff38009e106b", "text": "\u5728\u4e00\u5ea7\u590d\u53e4\u7684\u4e2d\u5f0f\u623f\u5b50\u91cc\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u5f39\u594f\u94a2\u7434\uff0c\u6f14\u594f\u7740\u300a\u6708\u5149\u66f2\u300b\u3002"} +{"id": "6004837", "video_name": "b7120a97-199e-5c9d-a04c-d568888539cd", "text": "3D\u5927\u7329\u7329\u7528\u53cc\u81c2\u6253\u788e\u73bb\u7483\u5c4f\u5e55\u3002"} +{"id": "1005044", "video_name": "5d3c5c24-8c22-5cc9-af40-5833e7349f0e", "text": "Translation: Thor \u5c55\u793a\u4e86\u4ed6\u7684\u9524\u5b50\u3002\u9ad8\u5ea6\u7ec6\u817b\uff0c\u7ec6\u8282\u6e05\u6670\uff0c8K \u5206\u8fa8\u7387\u3002"} +{"id": "7004402", "video_name": "49cba5a1-cc39-56f6-a5a0-c8693607a516", "text": "\u5b66\u751f\u4eec\u5728\u5b9e\u9a8c\u5ba4\u91cc\u3002"} +{"id": "5001314", "video_name": "fff37e38-b174-53cf-b553-ac1df2381c7d", "text": "\u514b\u91cc\u65af\u6258\u5f17\u00b7\u54e5\u4f26\u5e03\u7684\u4e09\u8258\u8239\u5728\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u8be6\u7ec6\u5c55\u73b0\uff0c\u4e09\u4e2a\u8239\u9996\u5728\u6ce2\u6d9b\u6c79"} +{"id": "8002092", "video_name": "d09d941e-bda9-5a9c-ad65-c6f70d3a1747", "text": "\u4e00\u5219\u5e26\u6709\u60ac\u5ff5\u7684\u6c99\u7279\u963f\u62c9\u4f2f\u865a\u62df\u822a\u7a7a\u516c\u53f8\u7684\u822a\u7a7a\u5ba3\u4f20\u3002"} +{"id": "1004140", "video_name": "4cbc14c7-a091-52f0-9582-f200f0b8740c", "text": "\u7535\u5f71\u822c\u7684\uff0c\u82b1\u56ed\u91cc\u7684\u6728\u5236\u6c99\u6f0f\uff0c\u5927\u81ea\u7136\uff0c\u7f8e\u4e3d\u3002"} +{"id": "2003975", "video_name": "d2f2d53f-9bcc-5a54-8dc7-c4ccfbd02a44", "text": "\u9f99\u6b63\u5728\u6218\u6597\uff0c\u55b7\u51fa\u706b\u548c\u51b0\u3002"} +{"id": "3004291", "video_name": "c7ef900e-f6a7-536c-a125-95c7eedf29be", "text": "\u53ef\u7231\u7684\u6f2b\u753b\u98ce\u683c\u5c0f\u5973\u5b69\u548c\u670b\u53cb\u4eec\u5728\u4e00\u8d77\uff0c\u5979\u5fae\u7b11\u7740\u5439\u706d\u4e86\u751f\u65e5\u86cb\u7cd5\u4e0a\u7684\u8721\u70db"} +{"id": "0003732", "video_name": "4284d0c6-893e-5677-8096-1ab7ae97ee4c", "text": "\u4e24\u53ea\u767d\u732b\u5750\u5728\u7c89\u8272\u76f4\u5347\u673a\u4e0a\uff0c\u5728\u5947\u5999\u7684\u57ce\u9547\u8fb9\u7f18\u76d8\u65cb\u3002"} +{"id": "3003437", "video_name": "85f09382-0ddc-5e97-8042-2c67c61c7048", "text": "\u516c\u4e3b\u5361\u8fbe\u4ec0\u66fc\u5728\u68ee\u67973D\u5361\u901a\u4e2d\u3002"} +{"id": "2004361", "video_name": "82426968-a79d-5666-9605-6ce77236373a", "text": "\u5728\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u592a\u7a7a\u4e2d\uff0c\u4e00\u4e2a\u5973\u4eba\u7ad9\u5728\u753b\u9762\u4e2d\u592e\uff0c\u4e24\u4fa7\u6f02\u6d6e\u7740\u4e00\u4e9bNFT\u4f5c\u54c1\uff0c\u76f8\u673a\u7ee7\u7eed\u7f13\u6162"} +{"id": "2007082", "video_name": "984723a5-0a3c-5c0f-a4e5-8a9ccfad31e2", "text": "\u53e4\u8463\u8e0f\u677f\u5f0f\u7f1d\u7eab\u673a\u5728\u73b0\u4ee3\u623f\u95f4\u91cc\u7f1d\u7eab\u3002"} +{"id": "2003164", "video_name": "8dfc49e2-b8b3-538c-a5e7-fba756cb58d5", "text": "\u6bcf\u4e2a\u665a\u4e0a\uff0c\u5728\u68ee\u6797\u7684\u4e2d\u5fc3\uff0c\u52a8\u7269\u4eec\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u521b\u9020\u51fa\u8ff7\u4eba\u7684\u4e1b\u6797\u7ba1\u5f26\u4e50\u3002\n\nSource sentence: The old man sat alone"} +{"id": "7004118", "video_name": "75967a29-0c81-5d05-a166-957312cbe4d8", "text": "\u968f\u7740\u8239\u5c3e\u4e0a\u5347\u5230\u6d6a\u5cf0\uff0c\u5486\u54ee\u58f0\u8d8a\u6765\u8d8a\u54cd\uff0c\u6211\u751a\u81f3\u89c9\u5f97\u6211\u4eec\u53ef\u80fd\u4f1a\u987a\u5229\u5730\u8d8a\u8fc7"} +{"id": "1003614", "video_name": "4298761b-b084-5804-995a-4d49914743cb", "text": "\u4e00\u5219\u770b\u8d77\u6765\u7f8e\u5473\u7684\u6ef4\u7740\u5de7\u514b\u529b\u7684\u5de7\u514b\u529b\u68d2\u5e7f\u544a\uff0c\u4fe1\u606f\uff1a\u4fbf\u4fbf\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004987", "video_name": "12ccf310-44b0-5c71-b146-002792affe7f", "text": "\u871c\u8702\u5728\u7f8e\u4e3d\u7684\u8349\u5730\u4e0a\u76843D\u52a8\u753b"} +{"id": "2007188", "video_name": "1b224e7c-bd50-5869-bca4-b5debe796a32", "text": "\u7528\u91d1\u6750\u6599\u5236\u6210\u7684\u4fc4\u7f57\u65af\u65b9\u5757\uff0c\u4e0d\u89c4\u5219\u5730\u52a8\u6001\u4e0b\u843d\u3002\n\nSource sentence: The sunset over the ocean was breathtakingly beautiful.\n\u6d77\u4e0a\u7684\u65e5\u843d\u7f8e\u5f97"} +{"id": "2005638", "video_name": "8eb72f21-0eed-5dd0-953e-b7519c988a64", "text": "\u7f51\u7edc\u670b\u514b\u673a\u5668\u4eba\u51a5\u60f3\uff0c\u6d41\u7545\u7684\u52a8\u4f5c\uff0c\u65cb\u8f6c\uff0c\u6f02\u6d6e\uff0cCinema4D\uff0c3D\u6e32\u67d3\uff0c\u620f\u5267\u6027\uff0c\u7535\u5f71"} +{"id": "3004142", "video_name": "b2db5b93-e5e6-50d0-9613-4900e79fc619", "text": "\u9ed1\u767d\u54e5\u7279\u98ce\u683c\u7684\u4e3b\u9898\u5e02\u573a\u6587\u672c\u6807\u5fd7\uff0c\u80cc\u666f\u4e2d\u6709\u6b66\u5668\u548c\u95ea\u7535\uff0c\u6a21\u62df\u975e\u6cd5\u4ea4\u6613\u3002"} +{"id": "1005295", "video_name": "6148559d-b177-5892-902c-fa90fee91d29", "text": "\u4ed6\u4eec\u4f1a\u5728\u9ad8\u9ad8\u7684\u8349\u4e1b\u4e2d\u5954\u8dd1\u3002"} +{"id": "1005500", "video_name": "6527d47a-24b8-57c4-a6b3-76f32f74cf69", "text": "\u6e14\u6c11\u6295\u63b7\u6e14\u7f51\uff0c\u6c34\u9762\u4e0a\u7684\u52a8\u6001\uff0c\u5feb\u901f\uff0c\u98ce\uff0c\u6811\u4e0a\u7684\u52a8\u6001\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "3003719", "video_name": "9c8c15b5-5fc1-59a7-b4c7-c09b1dff3d2e", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u5367\u5ba4\u52a8\u753b\uff0c\u4ece\u65e5\u843d\u5230\u591c\u665a\u8fc7\u6e21\uff0c\u6355\u6349\u53d8\u5e7b\u7684\u989c\u8272\uff0c\u8425\u9020\u51fa\u4e00\u4e2a\u8212\u7f13\u7684\u6c1b\u56f4\uff0c\u975e"} +{"id": "8001621", "video_name": "af92c522-6603-52a6-8e6b-03f2ee7ba816", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u4e2a\u5370\u5ea6\u5e74\u8f7b\u4eba\u53bb\u6cb3\u91cc\u6d17\u6fa1\u3002\u6cb3\u91cc\u6709\u8bb8\u591a\u5176\u4ed6\u4eba\u5728\u6d17\u6fa1\uff0c\u5c0f\u8239\u5728\u6cb3\u91cc\u7a7f\u884c\uff0c"} +{"id": "1003914", "video_name": "48435b53-cc1d-5ead-8c92-5bf1ba86c8f0", "text": "\u5973\u5b69\u7ad9\u5728\u7f8e\u4e3d\u7684\u7530\u91ce\u4e0a\u773a\u671b\u843d\u65e5\uff0c\u9ad8\u9ad8\u7684\u8349\u5728\u7530\u91ce\u4e0a\u6447\u66f3\u3002\u80cc\u666f\u6a21\u7cca\uff0c\u7535\u5f71\u98ce"} +{"id": "7004860", "video_name": "6474edf0-cd1a-5214-937b-f33e00694688", "text": "\u5de5\u4f5c\u5ba4\u91cc\u6709\u4e00\u4f4d\u5973\u6a21\u7279\uff0c\u957f\u53d1\u98d8\u98d8\uff0c\u7ea2\u8272\u80cc\u666f\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "8002916", "video_name": "dde61848-c815-5360-a6dd-a003398829f8", "text": "\u8fd9\u4e2a\u82b1\u56ed\u4e0d\u5bfb\u5e38\uff0c\u5b83\u662f\u4e00\u4e2a\u795e\u5947\u7684\u82b1\u56ed\uff0c\u82b1\u513f\u5531\u6b4c\uff0c\u6811\u6728\u8bf4\u6084\u6084\u8bdd\uff0c\u8774"} +{"id": "0004818", "video_name": "0fa1f4f9-9955-5311-af64-91381c3f97ef", "text": "\u56fe\u50cf\uff0c\u6cd5\u8001\u827e\u8d6b\u90a3\u987f\u7ad9\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\uff0c\u4ed6\u7684\u5973\u513f\u7ad9\u5728\u4ed6\u8eab\u8fb9\u3002"} +{"id": "2005291", "video_name": "05ccf1d3-5d7a-54e5-be51-dccf989fc7ae", "text": "\u6210\u5343\u4e0a\u4e07\u5e62\u5efa\u7b51\u7269\u5012\u584c\uff0c\u5bfc\u81f4\u6210\u5343\u4e0a\u4e07\u4eba\u6b7b\u4ea1\uff0c\u57ce\u5e02\u9677\u5165\u6df7\u4e71\u3002\u8fd9\u662f\u4e00\u4e2a\u56e2\u7ed3\u548c\u91cd\u5efa\u7684"} +{"id": "2007115", "video_name": "6aedbb26-3b8e-5e12-ada2-f1124010e44e", "text": "\u4e00\u4e2a\u5b69\u5b50\u5411\u672a\u6765\u770b\uff0c\u9762\u5411\u4ed6\u7684\u5c71\u6751\u5bb6\u56ed\uff0c\u67d4\u548c\u7684\u8272\u5f69\u3002"} +{"id": "5001978", "video_name": "53d24038-6cd2-57a0-a920-e7ecc2ce02d9", "text": "\u5efa\u7b51\u7269\u540e\u9762\u7684\u5c71\u4e0a\u6709\u98ce\u529b\u6da1\u8f6e\u673a\u3002"} +{"id": "1004293", "video_name": "4f6e3adb-6aff-5a5c-b260-f98bdc406259", "text": "\u5170\u535a\u57fa\u5c3c\u5b89\u53ef\u5c3c\u5b89\u5728\u8d5b\u9053\u4e0a\u8d5b\u8f66\u3002"} +{"id": "2007579", "video_name": "3bec2f5c-5ff8-596f-96b2-cba04622523e", "text": "\u5b9d\u9a6cE66\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u7136\u540e\u88ab\u4e00\u8f86\u6469\u6258\u8f66\u8d85\u8f66\u5e76\u53d1\u751f\u4e86\u4e8b\u6545\u5e76\u7740\u706b\uff0c\u4e4b\u540e\u884c\u661f\u7206\u70b8\u3002"} +{"id": "6004339", "video_name": "60ff140e-b318-5991-94af-6d16b02640ce", "text": "\u4e24\u53ea\u62e5\u6709\u5f69\u8679\u8272\u9b03\u6bdb\u548c\u6bdb\u76ae\u7684\u5f3a\u5927\u72ee\u5b50\u5728\u8352\u91ce\u4e0a\u4e3a\u7edf\u6cbb\u5730\u4f4d\u800c\u6218\u3002"} +{"id": "2003091", "video_name": "4ef1f10d-e3bc-55e6-a920-594215556f23", "text": "8k\uff0c\u4e00\u53ea\u7528\u53c9\u5b50\u5403\u665a\u9910\u7684\u732b\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "8003734", "video_name": "427b572d-b3a1-5790-8116-3df258754c8e", "text": "\u610f\u5927\u5229\u6d77\u8fb9\u7684\u5c0f\u5c4b\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u56ed\uff0c\u9633\u5149\u660e\u5a9a\u3001\u5b81\u9759\u5b89\u9038\u3002"} +{"id": "7002876", "video_name": "e5cc37b6-aaa7-54d0-81ec-dd4990ea5317", "text": "\u6444\u50cf\u673a\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\uff0c\u6c34\u9600\u6253\u5f00\uff0c\u6c34\u6d41\u51fa\u3002"} +{"id": "1005668", "video_name": "6821fed5-d94b-5922-a977-d98ca61ca8f4", "text": "\u751f\u6210\u6d77\u76d7\u6e7e\u63a2\u9669\u516c\u56ed\u7684\u5b8f\u4f1f\u5165\u53e3\u56fe\u7247\uff0c\u5305\u62ec\u9ad8\u8038\u7684\u6728\u95e8\u4e0a\u6302\u7740\u6d77\u76d7\u65d7\u5e1c\uff0c\u9ab7\u9ac5"} +{"id": "5001007", "video_name": "55233e8c-6283-5e11-bc35-b79d8777c7a0", "text": "\u7a7f\u7740\u7ea2\u8272\u665a\u793c\u670d\u7684\u9ab7\u9ac5\u5728\u955c\u5b50\u524d\u5316\u5986\u3002"} +{"id": "2007051", "video_name": "1a1be80f-8526-59b5-8ff0-b803ade20c48", "text": "\u4e2d\u666f\uff0c\u963f\u5179\u7279\u514b\u796d\u53f8\u53d6\u51fa\u4e00\u540d\u897f\u73ed\u7259\u7537\u5b50\u7684\u5fc3\u810f\uff0c\u5e76\u5c06\u5176\u4e3e\u8d77\u4f5c\u4e3a\u796d\u54c1\u732e\u7ed9\u795e\u7075\u3002"} +{"id": "3006777", "video_name": "9686e4fc-da5b-5889-ba0b-f733ab07760c", "text": "\u98ce\u5439\u62c2\u5c71\u95f4\u623f\u5c4b\u666f\u8272\u4e2d\u7684\u82b1\u6735\u3002"} +{"id": "4004574", "video_name": "41fb15ef-c293-5e07-9f24-d074120a3e5a", "text": "\u73b0\u5b9e\u4e3b\u4e49\u8682\u8681\u5728\u5927\u57ce\u5e02\u8857\u9053\u5bfb\u627e\u98df\u7269\uff0c4K\u6444\u5f71\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u900f\u89c6\u3002\u4fe1\u606f\uff1a\u83ab\u897f"} +{"id": "1004556", "video_name": "548f72ca-8349-5712-bbdf-96b2715cc2c0", "text": "\u4eba\u7c7b\u51a5\u60f3\u7684\u5168\u606f\u56fe\u5728\u7a7a\u623f\u95f4\u91cc\u3002"} +{"id": "1003331", "video_name": "3d4d0245-234a-5ba1-adae-59f9e386be04", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u5728\u65e5\u672c\u706b\u8f66\u4e0a\u542c\u7740\u8033\u673a\u91cc\u7684\u97f3\u4e50\uff0c\u7a97\u5916\u6b63\u4e0b\u7740\u96e8\u3002"} +{"id": "0006901", "video_name": "350aa303-872c-59a3-bddc-b936ff458407", "text": "\u73b0\u573a\u6447\u6eda\u97f3\u4e50\u4f1a\uff0c\u8df3\u8dc3\u7684David Lee Roth\u5728\u821e\u53f0\u4e0a\u6f14\u5531\u3002"} +{"id": "7003725", "video_name": "9792fd4c-98b5-5261-be75-cd06c9afc9bf", "text": "16:9\u7684\u7ea2\u8272\u706b\u661f\u571f\u5730\uff0c\u6c99\u5c18\u5f25\u6f2b\uff0c\u8352\u51c9\u800c\u98ce\u5439\u3002\u7ea2\u8272\u5916\u661f\u706b\u5c71\u6b63\u5728\u55b7\u53d1\uff0c\u8fdc\u53e4\u7684\u672a\u6765"} +{"id": "2005100", "video_name": "cbde8c80-f329-5443-a5ce-bad04fde5edf", "text": "\u4e8c\u624b\u5e97\u5185\u6709\u5c0f\u5916\u661f\u4eba\u85cf\u8eab\u3002"} +{"id": "2004729", "video_name": "d5448078-3916-58a0-a33d-68b2dc8c032f", "text": "\u65e5\u672c\u5ba2\u5385\u91cc\u6709\u4e00\u4e2a\u6bdb\u9aa8\u609a\u7136\u7684\u7535\u89c6\uff0c\u53ea\u6709\u96ea\u82b1\u548c\u4e00\u5806\u9891\u9053\u81ea\u5df1\u5728\u5207\u6362\u3002"} +{"id": "3005654", "video_name": "ed748cf5-3872-5502-b1d7-afcc067cb61c", "text": "\u4e00\u4f4d\u7a7f\u7740\u65f6\u5c1a\u672a\u6765\u98ce\u683c\u8863\u670d\u7684\u5e74\u8f7b\u63a2\u9669\u5bb6\u8d70\u5230\u4e86\u8fd9\u68f5\u6811\u524d\uff0c\u4ed6\u4eec\u7684\u8868\u60c5\u5145\u6ee1\u7740\u656c"} +{"id": "6003425", "video_name": "86ea5ce6-dc8a-5620-947e-5fe9720c8131", "text": "\u4e00\u8f86\u9ed1\u8272\u8f7f\u8f66\u505c\u5728\u8857\u4e0a\uff0c\u5e26\u6709\u906e\u5149\u819c\uff0c\u665a\u4e0a\u5728\u623f\u5b50\u5916\u9762\uff0c\u5411\u524d\u6eda\u52a8\u3002"} +{"id": "2004370", "video_name": "1a1f8b6e-b340-5229-816e-97ce6fec20f3", "text": "\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u65e5\u672c\u7537\u79d1\u5b66\u5bb6\u5728\u672a\u6765\u4e3b\u9898\u6708\u7403\u57fa\u5730\u4e0a\u4ece\u6e38\u620f\u6905\u4e0a\u9192\u6765\u3002"} +{"id": "1006370", "video_name": "74a33040-ac77-5dec-85dd-e4241a6dea8a", "text": "\u6ce2\u6070\u96c5\u73b0\u5728\u56e0\u4e3a\u59bb\u5b50\u548c\u513f\u5b50\u7684\u6b7b\u4ea1\u800c\u5f7b\u5e95\u5d29\u6e83\u3002\u90a3\u4e2a\u623f\u5b50\u91cc\u7684\u4e00\u5207\u90fd\u8ba9\u4ed6"} +{"id": "0006754", "video_name": "326f2e4e-a393-5e99-89dc-6463ba2b9ccd", "text": "\u8349\u5730\u4e0a\u6709\u5fae\u98ce\uff0c\u9e7f\u5728\u5403\u8349\u3002"} +{"id": "4003854", "video_name": "85717e80-74d7-53ff-ad01-0911626f1246", "text": "\u5e7d\u7075\uff0c\u4f7f\u547d\u53ec\u5524\uff0c\u5e26\u7740M416\u4ece\u9ed1\u6697\u4e2d\u51fa\u73b0\u3002"} +{"id": "5001980", "video_name": "3dfefbca-301a-5138-bed1-8f527f891d09", "text": "\u62cd\u6444\u4e8e19\u4e16\u7eaa\u62ff\u7834\u4ed1\u65f6\u4ee3\u7684\u58eb\u5175\u5728\u66b4\u98ce\u96ea\u4e2d\u7ad9\u7acb\uff0c\u662f\u4e00\u4ef6\u6770\u4f5c\uff0c\u6d45\u666f\u6df1\u3001\u52a8\u611f"} +{"id": "3004967", "video_name": "a6cb9ecd-5db5-5be6-87e9-14ae613b53c3", "text": "\u5b69\u5b50\u4eec\u8fdb\u5165\u4e86\u8272\u5f69\u68ee\u6797\uff0c\u8fd9\u662f\u4e00\u4e2a\u5145\u6ee1\u6311\u6218\u548c\u795e\u5947\u751f\u7269\u7684\u5730\u65b9\u3002"} +{"id": "0005106", "video_name": "14e30a94-2ad7-5103-9069-1ec0f58fa268", "text": "\u5728\u534a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u8fa6\u516c\u5ba4\u88ab\u7d19\u5f35\u5305\u570d\u3002"} +{"id": "6003210", "video_name": "99fd0a30-39e5-5db4-b1cf-a545290fad3d", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u738b\u56fd\uff0c\u6709\u52c7\u58eb\u4fdd\u62a4\u5b83\u514d\u53d7\u5916\u90e8\u5a01\u80c1\uff0c\u800c\u8fd9\u4e2a\u738b\u56fd\u4f4d\u4e8e\u6cb3\u5cb8\u8fb9\u3002"} +{"id": "0005199", "video_name": "1685093f-bbfb-5a63-b0d2-c87802d42de0", "text": "\u8f66\u8f86\u5728\u4e00\u4e2a\u7d27\u6025\u7684\u9afb\u5f2f\u5904\u7a7f\u68ad\uff0c\u8f6e\u80ce\u53d1\u51fa\u5c16\u53eb\u58f0\uff0c\u5c18\u571f\u98de\u626c\uff0c\u5b83\u4eec\u4e0d\u65ad\u53d8\u6362\u4f4d\u7f6e"} +{"id": "1005053", "video_name": "5d6d07c6-b198-50c5-8bb5-6935be7cebea", "text": "\u4e00\u53ea\u5c0f\u673a\u5668\u4eba\u62ff\u7740\u9999\u8549\uff0c\u6b63\u671d\u9661\u5ced\u7684\u5c71\u5761\u4e0a\u8d70\u53bb\uff0c\u7279\u5199\u955c\u5934\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "2006121", "video_name": "149c93c1-47f3-5a56-97c8-222f8a4495e6", "text": "\u6bc1\u706d\u6218\u58eb\u5bf9\u9635\u9b3c\u6ce3\uff0c\u5730\u72f1\uff0c\u706b\u7130\uff0c\u75db\u82e6\u5143\u7d20\uff0c\u6076\u9b54\u3002"} +{"id": "6003731", "video_name": "f7fb4493-f579-5999-a838-3b05f275e900", "text": "\u4e00\u8f86\u8d5b\u8f66\u5728\u6c99\u6f20\u4e0a\u98de\u9a70\uff0c\u65c1\u8fb9\u6709\u4e00\u5934\u9a86\u9a7c\uff0c\u5929\u7a7a\u591a\u4e91\u3002"} +{"id": "6002479", "video_name": "6e7409e7-6b28-5c4e-b69b-7c169e5dad2f", "text": "\u4e00\u4e2a\u97f3\u4e50\u5236\u4f5c\u4eba\u5728\u4ed6\u7684\u5367\u5ba4\u5bb6\u5ead\u5f55\u97f3\u5ba4\u91cc\u5236\u4f5c\u97f3\u4e50\uff0c\u4f7f\u7528\u7535\u5f71\u8272\u5f69\uff0c\u4f7f\u5176\u771f\u5b9e\uff0c\u62cd\u64444K\u7684\u89c6\u9891\u3002 \n\n"} +{"id": "2003521", "video_name": "3aa623d4-82cf-5120-8529-803457d4c373", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u6c89\u6ca1\u5728\u6d77\u4e2d\u3002"} +{"id": "6004819", "video_name": "0a30ff65-5b8c-5d45-883a-d8593fa3e38a", "text": "\u4e00\u4e2a\u7a7f\u84dd\u8272\u886c\u886b\u7684\u4eba\u8f93\u5165\u4ed6\u4eec\u7684\u51ed\u636e\u548c\u4e2a\u4eba\u8be6\u7ec6\u4fe1\u606f\u3002\u7136\u540e\u8fd9\u4e2a\u4eba\u9009\u62e9\u4f7f\u7528\u4ed6\u4eec\u7684Aadhar\u5361\u548cGoogle\u8d26\u6237\u767b\u5f55\u3002"} +{"id": "4003999", "video_name": "c0a0263c-550f-54df-9e74-d24e37b8b76c", "text": "\u77f3\u6cb9\u94bb\u4e95\u5de5\u4eba\uff0c\u88ab\u4e00\u4e2a\u5e78\u798f\u7684\u5bb6\u5ead\u62e5\u62b1\uff0c4K\u5206\u8fa8\u7387\u89c6\u9891\u3002"} +{"id": "7002757", "video_name": "318786bf-028d-51f1-9644-318cef9e04b7", "text": "\u7537\u4eba\u6b63\u5728\u7528\u5149\u7ea4\u6fc0\u5149\u5668\u8bb2\u89e3\u5982\u4f55\u7528\u6fc0\u5149\u5668\u5c06\u786c\u5e01\u96d5\u523b\u3002"} +{"id": "7004865", "video_name": "cc403232-390e-5d72-9401-4e1ab873623d", "text": "\u8bf7\u7cbe\u786e\u4f7f\u7528\u4e0a\u4f20\u7684\u56fe\u7247\uff0c\u5728\u56fe\u50cf\u4e2d\u8fdb\u884c\u64cd\u4f5c\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7002072", "video_name": "15eca7ca-4298-5cd6-8d6c-e9421783cd59", "text": "\u4ee5\u5199\u5b9e\u7684\u98ce\u683c\uff0c\u6301\u7eed\u65f6\u95f43.5\u79d2\uff0c\u63ed\u5f00\u4e00\u4e2a\u795e\u5947\u800c\u795e\u79d8\u7684\u4e16\u754c\uff0c\u5c55\u73b0\u4ee4\u4eba\u60ca\u53f9\u7684\u666f\u8c61\u548c\u795e"} +{"id": "4004015", "video_name": "579516ef-30f9-5e8e-ae0c-4abfefbbda9a", "text": "\u623f\u95f4\u91cc\u6709\u4e00\u4e2a\u4eba\u5728\u4f11\u606f\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "7003818", "video_name": "a721b58b-f9ab-561c-9c64-a17f754eb9ff", "text": "\u4e00\u4f4d\u6234\u7740\u7c89\u8272\u5934\u53d1\u548c\u7c89\u8272\u592a\u9633\u773c\u955c\u7684\u5973\u6027\uff0c\u662f\u7531Myra Landau\u521b\u4f5c\u7684\u89d2\u8272\u8096\u50cf\uff0c\u88ab\u5c55\u793a\u5728CG Society\u3001"} +{"id": "2005616", "video_name": "fafaae91-5303-5e46-b922-be61dceccc0d", "text": "\u97e9\u56fd\u98ce\u683c\uff0c\u60c5\u4eba\u82b1\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4004737", "video_name": "eeb3ceef-f267-587e-95f3-32ca7dc10943", "text": "\u4e00\u53ea\u9177\u9177\u7684\u9ec4\u8272\u72d7\u6234\u7740\u9ed1\u8272\u592a\u9633\u955c\u548c\u4e00\u4e2a\u5927\u91d1\u6212\u6307\u3002"} +{"id": "6004076", "video_name": "d4deeaa7-0451-5388-aa3f-0eda8514900d", "text": "\u4e00\u4e2a\u6234\u7740\u515c\u5e3d\u7684\u7537\u4eba\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u7167\u955c\u5b50\uff0c\u8116\u5b50\u4e0a\u6302\u7740\u4e00\u679a\u5956\u7ae0\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "0003651", "video_name": "41011f4c-d61f-56f8-ae59-028e513127c3", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u57ce\u5e02\u4e2d\u5fc3\u7684\u6709\u5927\u7a97\u6237\u7684\u7f8e\u4e3d\u5496\u5561\u9986\uff0c\u4e0b\u7740\u96e8\uff0c\u60c5\u7eea\u9ad8\u6da8\u3002"} +{"id": "3004868", "video_name": "f330291d-7d41-553f-9149-ce80d7eab095", "text": "\u58a8\u897f\u54e5\u6e7e\u6d41\u662f\u4e00\u6761\u5f3a\u5927\u7684\u6696\u6d0b\u6d41\uff0c\u8d77\u6e90\u4e8e\u58a8\u897f\u54e5\u6e7e\uff0c\u6cbf\u7740\u5317\u7f8e\u4e1c\u6d77\u5cb8\u6d41\u52a8\uff0c\u7136\u540e\u5411\u4e1c\u5317"} +{"id": "6004884", "video_name": "dbb745c8-6b8a-569a-88fe-3e9b02731ea5", "text": "\u7537\u6027\u521b\u9020\u6027\u601d\u7ef4\u7684\u5185\u5728\u58f0\u97f3\uff0c\u5728\u9ed1\u8272\u4eba\u4f53\u5916\u7f20\u7ed5\u7740\u5404\u79cd\u8272\u5f69\uff0c\u601d\u7ef4\u6240\u4ea7\u751f\u7684\u7f8e\u4e3d\u7f24\u7eb7\u7684\u7f16"} +{"id": "6002870", "video_name": "f4106d0d-b1ae-5dae-9562-a099405d250e", "text": "\u7f51\u7edc\u670b\u514b\u57ce\u5e02\u8857\u9053\uff0c\u7537\u4eba\u9192\u6765\uff0c\u53d8\u5f97\u66f4\u5f3a\u58ee\uff0c\u6709\u808c\u8089\uff0c\u5c55\u793a\u808c\u8089\uff0c\u5486\u54ee\u3002"} +{"id": "8003489", "video_name": "9a8cc0d5-481c-5293-b434-4120194733c3", "text": "\u6770\u4f5c\uff0c4D\uff0c\u5168\u9ad8\u6e05\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u4e00\u4e2a\u677e\u9f20\u89d2\u8272\uff0c\u4e0a\u5347\u7684\u6a61\u679c\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "2007657", "video_name": "7dfe45d3-0228-5923-9663-6e9e55205ad3", "text": "\u5c55\u793a\u8ba9\u4eba\u5782\u6d8e\u6b32\u6ef4\u7684\u6c49\u5821\u716e\u5230\u5b8c\u7f8e\u3002"} +{"id": "6003966", "video_name": "5d46734d-020a-5ee7-9286-8feda45a5008", "text": "\u6cd5\u56fd\u6559\u6388\u6709\u4e09\u4e2a\u5927\u5b66\u751f\u5b69\u5b50\u3002"} +{"id": "0005929", "video_name": "235fab28-0bd3-558d-b547-f1e836a171f7", "text": "\u7f8e\u4e3d\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u8d70\u5411\u955c\u5934\uff0c\u53cc\u624b\u4e0b\u5782\uff0c\u7126\u70b9\u5728\u5979\u7684\u8138\u4e0a\u3002"} +{"id": "7003654", "video_name": "94b34747-f6a8-5054-9797-481dcda705ee", "text": "\u62dc\u767b\u5728\u6f14\u8bb2\u4e2d\u75db\u54ed\u6d41\u6d95\u3002"} +{"id": "0004780", "video_name": "0f10966c-fd6d-5c07-96e4-d42b49d6f492", "text": "\u4e00\u4e2a\u83f2\u5f8b\u5bbe\u7537\u5b50\u7a7f\u7740\u5df4\u9f99\u886b\u8d70\u8def\u3002"} +{"id": "0003070", "video_name": "3666b3f6-78b2-5b06-947b-58a0d041f7a8", "text": "\u65b0\u9c9c\u70e4\u5236\u7684\u85af\u6761\u5728\u7728\u773c\u95f4\u4ece\u70b8\u9505\u4e2d\u98de\u51fa\u3002"} +{"id": "7004510", "video_name": "95afddd8-65b9-5bdb-8aa4-75168967e529", "text": "\u7406\u67e5\u5fb7\u00b7\u54c8\u7279\u5728\u91d1\u5065\u8eab\u623f\u8d1f\u91cd\u6df1\u8e72\u3002"} +{"id": "6004352", "video_name": "91d31c5e-5471-5683-b479-4abb65d1251c", "text": "\u4eba\u7c7b\u80da\u80ce\u5728\u5b50\u5bab\u5185\uff0c\u5b69\u5b50\u5df2\u7ecf\u5f62\u6210\u4e86\u624b\u81c2\u548c\u817f\uff0c\u4ed6\u5728\u5206\u5a29\u56ca\u4e2d\uff0c\u65f6\u95f4\u5ef6\u65f610\u79d2\u3002"} +{"id": "3003056", "video_name": "5a358e5a-da7f-51f7-8e1e-309123075b07", "text": "\u5728\u4f0a\u7538\u56ed\u82b1\u56ed\u91cc\u5fae\u7b11\u7684\u5feb\u4e50\u57fa\u7763\u6559\u5bb6\u5ead"} +{"id": "7002152", "video_name": "2e42c0e1-c6a1-5eb6-9aba-9ffb492761a9", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u753b\u9762\uff0c\u7f8e\u4e3d\u7684\u897f\u73ed\u7259\u5973\u5b69\u5728\u6ee1\u5ea7\u7684\u73b0\u573a\u97f3\u4e50\u4f1a\u4e0a\u6f14\u5531\u3002"} +{"id": "3006720", "video_name": "ab597e36-ed86-5a12-b759-28f824535037", "text": "\u88c1\u7f1d\u5fc3\u60c5\u4e0d\u597d\u3002"} +{"id": "2007634", "video_name": "508dada2-c3ff-5cc3-87c4-7e715319a457", "text": "\u5feb\u901f\u79fb\u52a8\u7684\u6c7d\u8f66\u8ffd\u9010\uff0c\u5177\u670920\u4e16\u7eaa90\u5e74\u4ee3\u4e1c\u6b27\u7684\u611f\u89c9\u3002"} +{"id": "2003958", "video_name": "b6ee1b3f-59f2-5f5e-bd81-312094f14caf", "text": "\u4e00\u4f4d\u8336\u827a\u5e08\u5728\u4f20\u7edf\u7684\u8336\u9053\u573a\u666f\u4e2d\u51c6\u5907\u8336\u6c34\u3002"} +{"id": "8002178", "video_name": "2e268165-1f32-5d6d-9f4e-b21a03e6933e", "text": "\u7a7f\u7740\u5b89\u5168\u5939\u514b\u3001\u62a4\u76ee\u955c\u548c\u624b\u5957\u7684\u4eba\u3002"} +{"id": "3005845", "video_name": "2e068d46-3639-5915-be02-8a39b34bd283", "text": "\u4ece\u6c83\u56e0\u5947\u624b\u7a3f\u4e2d\u7684\u5947\u602a\u52a8\u7269\u5236\u4f5c\u7684\u52a8\u753b\u9875\u9762\u3002"} +{"id": "6002714", "video_name": "b08d0e65-cc3a-588e-86cd-1e25a2869bfc", "text": "\u73b0\u5b9e\u7684\u89c6\u9891\u8bb0\u5f55\u4e86\u5df4\u9ece\u5496\u5561\u9986\u7684\u60c5\u666f\u3002"} +{"id": "8001786", "video_name": "5fe0a1c7-31df-5f4c-a6ac-dfb82eb747f4", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u5c71\u5cf0\u8fb9\u7f18\uff0c\u773a\u671b\u4e00\u4e2a\u65b0\u4e16\u754c\uff08UFO\uff09\u3002"} +{"id": "1005542", "video_name": "65fc3a26-fa32-50be-83f2-087d22efedac", "text": "\u76ae\u5361\u4e18\u72af\u7a0e\u52a1\u6b3a\u8bc8\uff0c\u6587\u4ef6\u7e41\u7410\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u53ef\u7231\uff0c\u975e\u5e38\u53ef\u7231\uff0c\u8212\u9002\uff0c\u7531\u53f2"} +{"id": "2007784", "video_name": "d782c34f-2188-543a-a7bd-d0ab99e9cc0a", "text": "\u7ed9\u6211\u4e00\u4e2a\u5730\u6bef\u7684\u539f\u521b\u6807\u5fd7\u3002"} +{"id": "2007918", "video_name": "d97ceae9-3e25-5afd-8484-c183d933285d", "text": "\u5728\u4e00\u4e2a\u504f\u8fdc\u7684\u6751\u5e84\uff0c\u5728\u95ea\u8000\u7684\u5348\u591c\u5929\u7a7a\u4e0b\n\nSource sentence: He was amazed by the breathtaking view of the mountains. \n\n\u4ed6\u88ab\u5c71\u8109\u7684\u58ee"} +{"id": "0003532", "video_name": "3f11b323-82e4-5245-8941-8ded0a3fd405", "text": "\u4e39\u9ea6\u5973\u738b\u7684\u9000\u4f4d"} +{"id": "2003890", "video_name": "ba2d65a9-0015-58b3-9c51-8070e7c9b056", "text": "\u4e00\u4e2a20\u79d2\u7684\u91cd\u590d\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u52a8\u6f2b\u98ce\u683c\u7684\u5973\u5b69\u5728\u591c\u665a\u770b\u4e66\uff0c\u7a97\u5916\u4e0b\u96e8\uff0c\u753b\u98ce\u5361\u901a\uff0c\u770b\u8d77\u6765\u50cf\u662f\u5728\u4e1c"} +{"id": "2004798", "video_name": "cc5b0be3-85a2-5e7c-a78e-e3d2b1247023", "text": "\u5f69\u8272\u706f\u5149\u5728\u968f\u673a\u5206\u5f62\u7684\u9ed1\u8272\u80cc\u666f\u4e2d\u79fb\u52a8\u3002"} +{"id": "4004409", "video_name": "d6711ac4-685f-55b2-8441-724df4210cbb", "text": "\u767d\u8272\u592a\u7a7a\u670d\u91cc\u7684\u5b87\u822a\u5458\u5728\u5e73\u5766\u7684\u7070\u8272\u6708\u7403\u666f\u89c2\u4e0a\u8df3\u8dc3\uff0c\u9ad8\u5ea6\u903c\u771f\u3001\u7535\u5f71\u5316\u3001\u52a8\u6001\u3002"} +{"id": "5001594", "video_name": "be53e342-6e55-5d39-8586-780d256231a2", "text": "\u521b\u5efa\u4e00\u90e8\u5177\u6709\u7206\u70b8\u6548\u679c\u7684UHD\u539f\u5b50\u5f39\u7206\u70b8\u89c6\u9891\u3002"} +{"id": "2007102", "video_name": "55efd6b8-9ce1-5193-b389-99ab388ff012", "text": "\u4e00\u53ea\u8001\u5e74\u72ac\u7a7f\u7740\u592a\u7a7a\u670d\uff0c\u6ca1\u6709\u5934\u76d4\uff0c\u5728\u56fd\u9645\u7a7a\u95f4\u7ad9\u5468\u56f4\u6f02\u6d6e\u3002"} +{"id": "1004217", "video_name": "4dffec3d-f4b6-543b-af66-c852429ebdd2", "text": "\u751f\u6c14\u7684\u8001\u5e08\u76f4\u89c6\u89c2\u4f17\uff0c\u80cc\u666f\u662f\u6559\u5ba4\u3002"} +{"id": "0005579", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "\u60f3\u8c61\u72ee\u5b50\u4ece\u9ad8\u5904\u773a\u671b\u4ed6\u7684\u738b\u56fd\uff0c\u4ed6\u7684\u76ee\u5149\u575a\u5b9a\u800c\u777f\u667a\u3002"} +{"id": "4003829", "video_name": "52535fc4-f768-5202-843e-31515e02815f", "text": "\u661f\u7a7a\u8f6c\u5316\u6210\u4e00\u672c\u6253\u5f00\u7684\u4e66\u9875\uff0c\u63ed\u793a\u51fa\u53e4\u8001\u7684\u9884\u8a00\uff0c\u7167\u7247\u822c\u903c\u771f\u7684\u98ce\u683c\u3002"} +{"id": "7003574", "video_name": "b4903201-4a94-543b-b21c-989cffa132e3", "text": "\u8036\u7a23\u57fa\u7763\u5fae\u7b11\u7740\u5c06\u9ea6\u514b\u98ce\u9012\u7ed9\u4e00\u4e2a\u4eba\u3002"} +{"id": "2003424", "video_name": "40eecb1c-f34a-5e28-a492-14bd17d38d14", "text": "\u4ecb\u7ecd\u5982\u4f55\u953b\u70bc\u4e0b\u5df4\u7ebf\u6761\u3002"} +{"id": "1003452", "video_name": "3fec4a8a-da85-5f47-bf89-b614bdd0b675", "text": "\u661f\u5149\u7480\u74a8\u7684\u591c\u665a\uff0c\u58ee\u89c2\u7684\u98ce\u666f\uff0c\u4e24\u53ea\u7f8e\u4e3d\u7684\u732b\u5728\u5496\u5561\u9986\u5916\u4ea4\u8c08\uff0c\u4ee5\u96f7\u8bfa"} +{"id": "0006422", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980\u5e74\u4ee3\u7684\u5973\u4eba\u5728\u5ba2\u5385\u770b\u7535\u89c6\uff0c\u548c\u4e00\u4e2a\u7537\u4eba\u5206\u4eab\u96ea\u8304\u3002"} +{"id": "1005240", "video_name": "6060c135-ed60-5d28-a161-e5d7420edc8b", "text": "\u4e00\u8fb9\u662f\u60ac\u6302\u5728\u79e4\u4e0a\u7684\u6c7d\u8f66\uff0c\u53e6\u4e00\u8fb9\u662f\u5370\u5ea6\u8d27\u5e01\uff0c\u653e\u5728\u79e4\u7684\u53e6\u4e00\u8fb9\u3002"} +{"id": "0004424", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4f01\u4e1a\u4f7f\u7528\u4e91\u8ba1\u7b97\u7684\u597d\u5904\u7684\u89e3\u91ca\u89c6\u9891\u3002"} +{"id": "7003587", "video_name": "4c10ed00-1675-5185-a8ae-aba13dcf0035", "text": "\u76ae\u5212\u8247\u5728\u5706\u5708\u5185\u79fb\u52a8"} +{"id": "3005576", "video_name": "b107f2ac-ef39-5a86-8d1b-6def5d8840b4", "text": "\u5b66\u751f\u4eec\u5728\u592a\u7a7a\u4e2d\u98de\u5f80\u53e6\u4e00\u4e2a\u7ef4\u5ea6\uff0c180\u5ea6\u6444\u50cf\u673a\u62cd\u6444\uff0c\u8272\u5f69\u9c9c\u8273\uff0c4K\u3002"} +{"id": "7002980", "video_name": "9f7d81a5-442c-5709-a3f8-adf0bf891fca", "text": "\u65e5\u672c\u5bff\u53f8\u5e08\u5085\u5207\u5272\u91d1\u67aa\u9c7c\u3002\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "7003607", "video_name": "1221b5c4-6928-5f19-b6b6-671f039fae1f", "text": "\u5f53\u4ed6\u4eec\u54c1\u5c1d\u6c34\u679c\u65f6\uff0c\u4e00\u80a1\u80fd\u91cf\u6d8c\u5165\u4ed6\u4eec\u7684\u8840\u8109\uff0c\u4ed6\u4eec\u7684\u611f\u5b98\u88ab\u63d0\u9ad8\uff0c\u7cbe\u795e\u5f97\u5230\u63d0\u5347\u3002"} +{"id": "4002270", "video_name": "60dd64a4-f545-5646-b857-8e02478fde39", "text": "Translation: \u7a81\u7136\u95f4\uff0c\u4e4c\u9e26\u5728\u5730\u4e0a\u627e\u5230\u4e86\u4e00\u5757\u8089\u3002"} +{"id": "1005992", "video_name": "6e26d93c-5355-568e-a604-aa2bf408b76e", "text": "\u4e00\u540d\u5e74\u8f7b\u7684\u5c11\u5973\u5728\u8349\u5730\u4e0a\u905b\u72d7\u3002"} +{"id": "2005091", "video_name": "5700cc77-a08c-51a3-94b3-1707c4c8338e", "text": "\u4eb2\u7231\u7684\u4e08\u592b\uff0c\u611f\u6069\u8282\u5feb\u4e50\u3002"} +{"id": "2003559", "video_name": "5f878e05-2bc2-5726-a670-175d790adef2", "text": "\u677f\u7403\u8df3\u821e\u4e0e\u5370\u5ea6\u80cc\u666f\u4e0b\u7684\u821e\u8e48\u8282\u62cd"} +{"id": "4004907", "video_name": "740c0510-63b3-50c2-9006-aee75b192f36", "text": "\u5341\u4e94\u5c81\u7684\u6770\u91cc\u7c73\u00b7\u6b27\u6587\u5728\u4e00\u4e2a\u821e\u4f1a\u4e0a\u3002"} +{"id": "0005147", "video_name": "158f6487-bb3f-5a78-a3a9-0ab1c210923e", "text": "\u987e\u5ba2\u8d70\u8fdb\u6c34\u7597\u4e2d\u5fc3\uff0c\u4f46\u662f\u684c\u5b50\u540e\u9762\u7684\u5de5\u4f5c\u4eba\u5458\u6ca1\u6709\u6ce8\u610f\u5230\u3002"} +{"id": "0003420", "video_name": "3d4f0657-5eae-5145-b2ed-e3f4a297f10b", "text": "\u4e00\u53ea\u817f\u975e\u5e38\u957f\u7684\u5927\u8c61\u5728\u8ff7\u5e7b\u4e16\u754c\u4e2d\u884c\u8d70\uff0c\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u98ce\u683c"} +{"id": "8001553", "video_name": "67b0a42c-2dd1-5f46-9f50-ca392f55ce35", "text": "\u9713\u8679\u57ce\u7684\u8033\u8bed"} +{"id": "2004612", "video_name": "a0e8c6b6-c510-550d-bdee-276385946a1d", "text": "\u5723\u8bde\u70b9\u4eae\u7684\u623f\u95f4\u89c6\u89d2\uff0c\u6253\u5f00\u4e00\u4e2a\u5927\u7684\u5723\u8bde\u793c\u7269\u76d2\u5b50\u3002"} +{"id": "2005594", "video_name": "1161dfa2-b1e0-585a-ab00-c68d6dc79f73", "text": "\u7231\u56e0\u65af\u5766\u601d\u8003\u4ed6\u7684\u60f3\u6cd5\u7684\u63d2\u56fe\u3002"} +{"id": "1003626", "video_name": "42cadde8-9aa7-5495-8bf6-51dc8408ed39", "text": "\u4e00\u53ea\u9ec4\u8272\u7684\u9e2d\u5b50\u5361\u901a\u5f62\u8c61\uff0c\u4fdd\u62a4\u60a8\u7684\u4e2a\u4eba\u6570\u636e\u3002"} +{"id": "3006163", "video_name": "c908b67c-53bb-5bde-ba3b-8ecda2405742", "text": "\u514b\u62c9\u82cf\u65af\u51b3\u5fc3\u5730\u5411\u4ed6\u7684\u90e8\u961f\u8bb2\u8bdd\u3002"} +{"id": "7002474", "video_name": "61335125-0bf6-58e8-82b0-edd1261b8f59", "text": "\u56fd\u5e86\u8282\u90a3\u5929\uff0c\u4ed6\u6765\u4e86\u3002\u4ed6\u662f\u4e00\u4f4d\u6709\u6817\u8272\u5934\u53d1\u3001\u6f02\u4eae\u56f4\u5dfe\u548c\u53ef\u7231\u5fae\u7b11\u7684\u98de\u884c\u5458\u3002\u4e00\u7fa4\u5e74\u8f7b\u7684"} +{"id": "4004681", "video_name": "85b63254-9992-531c-a72b-5bca18cc1cd6", "text": "\u5728\u5927\u96ea\u7eb7\u98de\u7684\u5c71\u4e0a\u884c\u8d70\uff0c\u80fd\u89c1\u5ea6\u8f83\u4f4e\u7684\u7537\u4eba\u3002"} +{"id": "8002351", "video_name": "fb99b903-d557-5529-b93f-c44fcc35a683", "text": "\u4e61\u6751\u5f0f\u7684\u897f\u6d77\u5cb8\u5c71\u8109\u6811\u76ae\u8611\u83c7\u6728\u5934\u82d4\u85d3"} +{"id": "1003110", "video_name": "39390538-e1fc-5345-b6e1-bdcf7b02eb57", "text": "\u8fb9\u7f18\u4e16\u754c\u3001\u5251\u58eb\u3001\u72c2\u6218\u58eb\u3001\u65e0\u4eba\u6df1\u7a7a\u3001\u8f90\u5c04\u3001DayZ\u548c\u6df1\u6d77\u4e4b\u5203\u3002"} +{"id": "3004604", "video_name": "a0becda2-6ca9-5e9c-a626-e2951afc6f1b", "text": "\u4e00\u5339\u9a6c\u5728\u6d45\u6c34\u6cb3\u4e2d\u98de\u5954\u3002"} +{"id": "5001929", "video_name": "e3ecbc2b-20d2-5b53-9144-d8081fa62570", "text": "\u5728\u767d\u6c99\u74e6\u7684\u5947\u85a9\u5361\u5c3c\u5e02\u5834\uff0c\u4e00\u540d\u7537\u5b50\u5728\u4eba\u884c\u9053\u4e0a\u716e\u86cb\u3002"} +{"id": "1003705", "video_name": "445e80dc-d01d-5858-a04b-5820c2a17d4e", "text": "\u52d2\u91cc\u00b7\u6234\u7ef4\u5fb7\u4e0e\u77f3\u51b7\u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\u7684\u640f\u6597\u3002"} +{"id": "4003696", "video_name": "a3baf2fe-da96-57ac-abc1-2b9351e97c96", "text": "translation: \u4e00\u4e2a\u8868\u9762\u5192\u7740\u70ed\u84b8\u6c14\u7684\u884c\u661f\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1004730", "video_name": "57b983af-9c51-561b-b5aa-186a724a558d", "text": "\u665a\u4e0a\uff0c\u96ea\u4eba\u5927\u559d\u7279\u559d\uff0c\u4e00\u8fb9\u5077\u770b\u7740\u90a3\u4f4d\u7f8e\u4e3d\u5973\u5b50\uff0c\u8138\u4e0a\u5e26\u7740\u4e30\u5bcc\u591a\u5f69\u7684\u8868\u60c5\u3002"} +{"id": "2003059", "video_name": "be39d7c8-74a1-5849-b48e-c60be3841410", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5154\u5b50\u5728\u6559\u5ba4\u91cc\u3002"} +{"id": "6003117", "video_name": "eb6239f7-c24d-54fc-8f3f-3afccfb4750c", "text": "\u4e00\u4f4d\u77ee\u5c0f\u7684\u65b0\u5a18\u548c\u4e00\u4f4d\u9ad8\u5927\u7684\u65b0\u90ce\u8d70\u8fc7\u901a\u9053\u3002"} +{"id": "7003754", "video_name": "d5eff185-2e27-502b-874d-ceeba470530f", "text": "\u5b9e\u9a8c\u5ba4\u3001\u6392\u6c14\u7f69\u3001\u5316\u5b66\u54c1\u3001\u5371\u9669\u3001\u624b\u5957\u3002"} +{"id": "3003665", "video_name": "7e87291c-2250-50db-9ec4-3c0648f56827", "text": "\u73b0\u4ee3\u7684\u8036\u8def\u6492\u51b7\uff0c\u9e1f\u77b0\u56fe\u3002\u666f\u6df1\u3002\u54e5\u7279\u5f0f\u7535\u5f71\u7684\u80cc\u666f\uff0c8K\u5206\u8fa8\u7387\u548c\u7ec6\u8282\uff0c\u5df4\u52d2"} +{"id": "6002598", "video_name": "9136edf9-9c32-556b-b87d-1d1a4b2fe51c", "text": "\u4e00\u5e45\u4ee4\u4eba\u60ca\u8273\u7684\u56fe\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4f4d\u7a7f\u7740\u7cbe\u7f8e\u6c11\u65cf\u670d\u88c5\u548c\u7ea2\u8272\u5934\u5dfe\u7684\u5360\u65cf\u5973\u58eb\uff0c\u80cc\u666f"} +{"id": "3003117", "video_name": "e3f1ff9c-a183-5458-ad09-b24d747081ee", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5728\u57ce\u5e02\u8857\u5934\u4ee5\u73b0\u4ee3\u5316\u3001\u4e13\u4e1a\u5316\u7684\u98ce\u683c\uff0c\u9762\u5e26\u5fe7\u90c1\u7684\u8868\u60c5\u76f4\u89c6\u7740\u955c\u5934\uff0c\u767d\u5929\uff0c\u6709"} +{"id": "0003289", "video_name": "3af98e1a-c347-5829-bad3-eb06d3fd9908", "text": "\u70ed\u5e26\u84b8\u6c7d\u670b\u514b\u9a6c\u5954\u8dd1\u7684\u5f71\u5b50"} +{"id": "5001300", "video_name": "40fd0d9d-796e-5a64-b217-cf449170f16c", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u9ad8\u8d28\u91cf\u89c6\u9891\uff0c\u5c55\u73b0\u4e00\u4e2a\u963f\u62c9\u4f2f\u738b\u5b50\u548c\u4e00\u53ea\u72ee\u5b50\u640f\u6597\u3002"} +{"id": "6004048", "video_name": "d5c58d71-2b73-558f-8df8-6af3b5fe5582", "text": "\u4e00\u53ea\u72d7\u4e58\u5750\u98de\u673a\u8fdb\u5165\u6d77\u6d0b\u3002"} +{"id": "6002404", "video_name": "6fde4440-6ef4-5107-8fa8-60e3ba2412fd", "text": "\u5361\u901a\u718a\u5728\u684c\u5b50\u4e0a\u5403\u7ca5\u3002"} +{"id": "2004625", "video_name": "0d63077e-42c3-50ad-8c9a-376062495e79", "text": "\u5728\u6d77\u4e0a\u66b4\u98ce\u96e8\u4e2d\u56fe\u50cf\u8239360\u3002"} +{"id": "7003128", "video_name": "dd839285-d7b0-5177-b633-c85a3fc2d6ad", "text": "\u80ae\u810f\u7684\u8910\u8272\u6c34\u548c\u6ce5\u571f\u6d41\u7ecf\u4e0b\u6c34\u9053\u3002"} +{"id": "7004292", "video_name": "ac248212-19a2-575b-abd5-d65ada156e92", "text": "\u628a\u4eba\u4eec\u5728\u8c6a\u534e\u623f\u5c4b\u5468\u56f4\u6f2b\u6b65\u3001\u9a7e\u9a76\u8c6a\u534e\u6c7d\u8f66\u3001\u7a7f\u7740\u6602\u8d35\u7684\u8863\u670d\u548c\u73e0\u5b9d\u7684\u89c6\u9891\u5236\u4f5c"} +{"id": "0003957", "video_name": "008aeb29-326b-53ea-9219-6bb63aa3f75a", "text": "\u80fd\u8ba9\u4ed6\u4eec\u8bb0\u4f4f\uff0c\u6709\u77e5\u8bc6\u548c\u540c\u60c5\u5fc3\u3002"} +{"id": "7004305", "video_name": "7242bf1f-e486-54a0-99ac-3a9bd4eec290", "text": "\u5170\u535a\u57fa\u5c3c\u4e4c\u9c81\u65af\u5728\u591c\u665a\u7a7f\u8fc7\u57ce\u5e02\u884c\u9a76\u3002"} +{"id": "6003507", "video_name": "d2b09b60-6716-5225-aa0d-6152ad3c9e0e", "text": "\u7eff\u5e55\u524d\u7684\u53ef\u6015\u9b3c\u9b42\u3002"} +{"id": "8001132", "video_name": "807cc8ac-03e9-5180-a80c-f2625f09fc8a", "text": "\u975e\u5e38\u5e74\u8f7b\u7684\u5973\u5b69\u6574\u5929\u5728\u5bb6\u91cc\u73a9\u7535\u8111\uff0c\u5de5\u4f5c\u5ba4\u67d4\u548c\u7684\u706f\u5149\uff0c\u903c\u771f\u3002"} +{"id": "8003640", "video_name": "437ad70f-6142-586f-a6bf-83425f313f57", "text": "\u5411\u770b\u5230\u6b64\u5e16\u7684\u6bcf\u4e2a\u4eba\u4f20\u9012\u79ef\u6781\u7684\u80fd\u91cf\u3002\u633a\u4f4f\uff01\u4f60\u884c\u7684\uff01"} +{"id": "8001829", "video_name": "19ad965f-66c1-5120-ba3c-ee25993bb39b", "text": "WWE\u7ade\u6280\u573a\u7684\u70df\u706b\uff0c\u4ece\u6bd4\u8d5b\u573a\u5730\u5411\u4e0a\u770b\uff0c\u7a7f\u8fc7\u659c\u5761\u7684\u89c6\u89d2\uff0c\u5448\u73b0\u5728\u6454\u89d2\u8ff7\u7684\u773c\u524d\u3002\n\nSource sentence:"} +{"id": "6003572", "video_name": "dc586433-85fb-5b94-a1f5-f7bf837ebfd2", "text": "\u888b\u9f20\u5728\u6708\u7403\u8868\u9762\u8df3\u8dc3\u3002"} +{"id": "2005833", "video_name": "fca67879-5dc9-535f-8397-7fe54c9dc855", "text": "\u4e00\u53ea\u6709\u4e24\u4e2a\u5934\u7684\u72d7\uff0c\u5728\u68ee\u6797\u4e2d\u8ff7\u8def\u300216\u6beb\u7c73\u7684\u9897\u7c92\u72b6\u7535\u5f71\u3002"} +{"id": "1006983", "video_name": "7fc3ca3d-83b5-5661-971b-eb7b52908238", "text": "\u4e00\u628a\u9ec4\u91d1\u94a5\u5319\u53ef\u4ee5\u6253\u5f00\u4e00\u4e2a\u88c5\u6ee1\u9ec4\u91d1\u6761\u548c\u949e\u7968\u7684\u5b9d\u7bb1\u3002"} +{"id": "8003340", "video_name": "d3262db4-1d98-50a1-9f71-0c41abf9514e", "text": "\u6559\u5802\u91cc\u6709\u4e00\u4e2a\u6b7b\u8005\u7684\u7075\u9b42\u88ab\u6495\u88c2\u51fa\u6765\u3002"} +{"id": "1004605", "video_name": "55c00a38-c81a-5e12-89f8-920edcd78d1f", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u6211\u53ef\u4ee5\u770b\u5230\u5170\u535a\u57fa\u5c3c\u5728\u6c99\u6f20\u4e2d\u9a76\u5165\u66b4\u98ce\u96e8\u3002"} +{"id": "3006951", "video_name": "4507e3d3-c430-54dc-9aa2-e44528317dd3", "text": "\u85cf\u65cf\u5efa\u7b51\uff0c\u5929\u7a7a\u3002\u4fe1\u606f\uff1a\u4e01\u771f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2003862", "video_name": "b25a4ae2-d607-52d3-b844-3ec477eab9f6", "text": "\u91cd\u91d1\u5c5e\u548c\u653e\u5c04\u6027\u5143\u7d20\u4e0d\u65ad\u5bcc\u96c6\u3002"} +{"id": "7003385", "video_name": "a0a102bb-5b45-5048-ab5e-cd91481fffad", "text": "\u91ce\u5916\u7684\u7f8e\u4e3d\u730e\u8c79\u955c\u5934\uff0c\u5f3a\u8c03\u5b83\u4eec\u7684\u529b\u91cf\u548c\u4f18\u96c5\u3002"} +{"id": "8001703", "video_name": "5498d960-fbac-5975-b53d-93864db644ad", "text": "\u6454\u89d2\u8868\u6f14\u7684\u89c2\u4f17\u5728\u4f53\u80b2\u573a\u4e2d\u6b22\u547c\uff0c\u5c31\u50cf\u5361\u901a\u4e00\u6837\u3002"} +{"id": "2004205", "video_name": "0dbddc49-d898-5d10-a313-68f78be51721", "text": "\u6a59\u6c41\u6d41\u52a8\uff0c\u9ed1\u76ae\u9774\uff0c\u5feb\u901f\u79fb\u52a8\uff0c\u65f6\u95f4\u6d41\u901d\uff0c\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u52a8\u60014"} +{"id": "1005844", "video_name": "6b6ba078-2fa0-56ed-9daf-e040ebc572f5", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6b63\u5728\u9012\u9001\u4e00\u4e2a\u5305\u88f9\u3002"} +{"id": "4002731", "video_name": "7c28e109-c0f9-5ffa-a646-678a59005067", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u753b\u677f\u4e0a\u753b\u753b\u3002"} +{"id": "5001695", "video_name": "41497e73-7fba-5cfb-8ff3-94ce057c14f2", "text": "\u4e00\u5bf9\u795e\u60c5\u75db\u82e6\u7684\u592b\u5987\u5750\u5728\u90a3\u91cc\uff0c\u53cc\u624b\u8986\u76d6\u5728\u8138\u4e0a\uff0c\u56e0\u4e3a\u4ed6\u4eec\u7684\u6291\u90c1\u75c7\u72b6"} +{"id": "1006390", "video_name": "74dee540-9dba-5d87-b51f-9b6868d01c75", "text": "\u4e00\u53ea\u624b\u63e1\u4f4f\u4e86\u4e24\u53ea\u624b\uff0c\u76f8\u4e92\u4ea4\u7ec7\u7740\u3002\u955c\u5934\u805a\u7126\u5728\u624b\u4e0a\u3002"} +{"id": "1003136", "video_name": "39ca911f-393c-5b6d-b3c9-88ae24018c69", "text": "\u626d\u66f2\u7684\u8759\u8760\u98de\u821e\u753b\u9762\uff0c\u4e07\u82b1\u7b52\u98ce\u683c\u3002"} +{"id": "2007414", "video_name": "d984e756-e105-5cb5-b221-256999363952", "text": "\u4e07\u5723\u8282\u665a\u4e0a\u548c\u5973\u4eba\u4eec\u4e00\u8d77\u53bb\u54e5\u7279\u5f0f\u6811\u5c4b\u3002"} +{"id": "7004541", "video_name": "3ee78d88-4989-5c8c-be98-f13737506ec1", "text": "\u661f\u591c\uff0c\u4ee5\u68b5\u9ad8\u7684\u98ce\u683c\uff0c\u5370\u8c61\u6d3e\uff0c\u6d41\u52a8\u7684\u7b14\u89e6\uff0c\u6de1\u84dd\u8272\uff0c\u8d85\u8ff7\u4f60\u7684\u4e16\u754c\u3002"} +{"id": "6003552", "video_name": "bbb818cd-d0bb-5dd5-b120-eb5197d3430c", "text": "\u519c\u8015\u6574\u4e2a\u4e16\u754c\uff0c\u5b87\u5b99\u3002"} +{"id": "3004721", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "\u5728\u4e00\u573a\u8d85\u73b0\u5b9e\u7684\u677f\u7403\u6bd4\u8d5b\u4e2d\uff0c\u8428\u52d2\u66fc\u738b\u5b50\u548c\u585e\u897f\u603b\u7edf\u5728\u5766\u514b\u4e0a\u5bf9\u5cd9\uff0c\u4ee5\u4ee5\u8272\u5217\u56fd\u65d7\u4f5c\u4e3a\u4ed6"} +{"id": "1003609", "video_name": "4286931e-80b3-5189-ab7f-3c7ff4eae472", "text": "\u4e3a\u52a0\u5bc6\u8d27\u5e01\u5e02\u573a\u521b\u5efa\u4e00\u4e2a\u7531Cryptobit\u547d\u540d\u7684\u6807\u5fd7\u3002"} +{"id": "6003160", "video_name": "164f6bda-5461-57d4-b823-48107abab0cf", "text": "\u6a21\u62df\u5408\u6210\u5668\uff0c\u9694\u79bb\uff0c\u7528\u6a21\u5757\u5316\u8865\u4e01\u7535\u7f06\u95ea\u70c1\u3002 Gs13"} +{"id": "1004671", "video_name": "56d4a177-ddb5-5124-93bd-858a9769783e", "text": "\u5929\u5802\u822c\u7684\u666f\u8272\uff0c\u6709\u6f02\u4eae\u7684\u623f\u5c4b\u3001\u82b1\u56ed\u3001\u6c34\u679c\u548c\u82b1\u6735\u3002"} +{"id": "7003666", "video_name": "18af21bc-ca57-57ce-a3a3-7ec5fe51ce46", "text": "\u63a2\u9669\u5bb6\u4eec\u8fdb\u5165\u4e00\u4e2a\u5e9f\u5f03\u7684\u7cbe\u795e\u75c5\u9662\uff0c\u63ed\u793a\u5176\u9b3c\u9b45\u7684\u8fc7\u53bb\u3002\u5f53\u4ed6\u4eec\u8bb0\u5f55\u4e0b\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "2005115", "video_name": "34f47b19-02a9-5b03-9caa-638b9b95de3b", "text": "\u4e00\u4e2a\u5145\u6ee1\u5f02\u56fd\u98ce\u60c5\u6c34\u679c\u548c\u5145\u6ee1\u6d3b\u529b\u8272\u5f69\u7684\u5e02\u573a\u3002"} +{"id": "1006403", "video_name": "75489a21-695d-5288-bcea-c096c8897dea", "text": "\u5bbd\u5e7f\u7684\u6444\u50cf\u673a\u89d2\u5ea6\uff0c\u7f8e\u4e3d\u7684\u6587\u827a\u590d\u5174\u5973\u6027\u5728\u53e4\u5178\u590d\u5174\u65f6\u671f\u7684\u753b\u5eca\u4e2d\u6b23\u8d4f\u7ec6\u8282\u4e30\u5bcc\u7684"} +{"id": "2007276", "video_name": "ac9994b9-228e-5568-ab87-7d8fce25104a", "text": "\u95ea\u7535\u9ea6\u5764\u5728\u65af\u5df4\u8d5b\u9053\u4e0a\u6bd4\u8d5b\u3002"} +{"id": "2004974", "video_name": "7251d1ae-d5c7-5b22-bef6-adbb659fcbaa", "text": "\u4e00\u9762\u5899\u4e0a\u6709\u4e00\u4e2a\u84dd\u8272\u7684\u95e8\u6237\u3002\u4e00\u7247\u6f06\u9ed1\u3002"} +{"id": "1004928", "video_name": "5b1e3866-bda7-5251-8de8-b2b0be19c836", "text": "\u6cf0\u8fea\u718a\u6b63\u5728\u5e86\u795d\u751f\u65e5\u6d3e\u5bf9\uff0c\u6709\u86cb\u7cd5\u3001\u6c14\u7403\u548c\u5f69\u7eb8\u3002"} +{"id": "8001400", "video_name": "3549f2cb-6ef6-5e75-8295-4cd5ddf60386", "text": "\u84dd\u8393\u6811\u4e0a\u7684\u679c\u5b9e\uff0c\u6c34\u6ef4\uff0c\u5bcc\u58eb\u80f6\u7247\uff0c\u5bcc\u58eb\u5f69\u8272c200\uff0c\u666f\u6df1\u3002"} +{"id": "3006880", "video_name": "26b6e924-2ed5-5af7-a2ac-96ffd43a89b9", "text": "\u6389\u7684\u5361\u901a\u5154\u5728\u6c34\u4e2d\u6323\u624e\uff0c\u6ce2\u6d6a\u4e0d\u65ad\u62cd\u6253\uff0c\u6e10\u6e10\u6d88\u5931\u3002"} +{"id": "0003781", "video_name": "433e6314-fc92-5543-bbe7-e11bc608e0f3", "text": "\u4e00\u500b\u6709\u81c9\u7684\u6f22\u5821\u548c\u4e00\u500b\u6709\u81c9\u7684\u71b1\u72d7\u5750\u5728\u71c3\u71d2\u7684\u70e4\u67b6\u4e0a\u4e92\u76f8\u4ea4\u8ac7\u3002"} +{"id": "0003178", "video_name": "38c53114-bfc8-5a66-9ec7-346f76ce1caf", "text": "\u4e00\u4efd\u7f8e\u5473\u7684\u4e09\u660e\u6cbb\u914d\u4e0a\u4e00\u74f6\u8461\u8404\u9152\uff0c\u5728\u4e00\u4e2a\u4f18\u96c5\u7684\u5730\u65b9\u4e0a\u684c\u3002 \n\nSource sentence: The museum exhibits a vast collection of ancient artifacts from various civilizations"} +{"id": "8001134", "video_name": "42ef51c6-e7b2-51d4-9f0f-c0739c90455b", "text": "\u771f\u8bda\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u5df4\u897f\u6d77\u6ee9\u73a9\u800d\uff0c\u5df4\u897f\u6587\u5316\u6838\u5fc3\uff0c\u975e\u5bf9\u79f0\u6784\u56fe\uff0c35\u6beb\u7c73\uff0cPanavision DXL 2\uff0c\u7535"} +{"id": "0006365", "video_name": "2b4499f4-23ac-5c94-984d-7d2c357a157f", "text": "\u4e00\u53ea\u9a6f\u9e7f\u96ea\u6a47\u5728\u767d\u96ea\u7eb7\u98de\u7684\u80cc\u666f\u4e0b\u79fb\u52a8\u7684\u7535\u5f71\u80cc\u666f\u3002"} +{"id": "3003587", "video_name": "b684586d-79aa-5e4b-a9c7-8cba70bb6efa", "text": "\u4e00\u90e8\u201c\u8036\u7a23\u6700\u540e\u7684\u665a\u9910\u201d\u7684 Cinema 4D \u573a\u666f\uff0c\u4f46\u9ab7\u9ac5\u6234\u7740\u9ec4\u91d1\u73e0\u5b9d\uff0c\u80cc\u666f\u6709\u8ff7"} +{"id": "7004598", "video_name": "3a99bcd1-6c83-598d-8086-52e10ba80229", "text": "\u60c5\u51b5\u4e0b\u533b\u751f\u548c\u673a\u5668\u7d27\u5bc6\u534f\u4f5c\u7684\u573a\u666f\u3002"} +{"id": "7003802", "video_name": "bbf2c4c2-136d-5fdc-899d-1e6eecb3caac", "text": "\u53ea\u6709\u8857\u4e0a\u7684\u72d7\uff0c\u80cc\u666f\u662f\u4f0a\u65af\u5766\u5e03\u5c14\uff0c\u5929\u6c14\u5f88\u597d\u3002"} +{"id": "0003195", "video_name": "3910f257-f44c-5694-a816-4294ff796df5", "text": "\u5728\u4e1b\u6797\u91cc\u6709\u7eff\u8272\u5e26\u9ed1\u6591\u70b9\u7684\u89d2\u9f99\u3002"} +{"id": "4002277", "video_name": "b0718998-f19f-5ac7-828f-c130c78c0a96", "text": "\u4e24\u4f4d\u7f8e\u4e3d\u7684\u5370\u5ea6\u5973\u5b50\u548c\u4e00\u4e2a\u5b69\u5b50\u5750\u5728\u68ee\u6797\u91cc\u7684\u4e00\u4f4d\u53e4\u8001\u7684\u5370\u5ea6\u5723\u4eba\u9762\u524d\u3002"} +{"id": "6003122", "video_name": "b9080c1c-20d5-5a2a-b598-548529e862f4", "text": "\u63d2\u753b\u72d7\u7684\u5361\u901a\u52a8\u753b\u5728\u5361\u901a\u63d2\u753b\u7684\u7eff\u8272\u516c\u56ed\u80cc\u666f\u524d\uff0c\u660e\u663e\u611f\u5230\u56f0\u60d1\u5730\u6447\u6446\u7740\u5c3e"} +{"id": "8002586", "video_name": "7f4f0532-170b-57f5-b195-e5b42d413a54", "text": "\u9a91\u58eb\u4e0e\u53e6\u4e00\u7687\u5ba4\u5bb6\u65cf\u4f5c\u6218\u3002"} +{"id": "8001502", "video_name": "45caf194-ea76-5017-9f21-2009d9c96eab", "text": "\u7f13\u6162\u5730\u62c9\u8fd1\u753b\u9762\uff0c\u5c55\u793a\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u770b\u8d77\u6765\u56f0\u60d1\u548c\u72b9\u8c6b\u3002"} +{"id": "7004613", "video_name": "18815a76-a366-568a-b3ef-e0a8442ec3c1", "text": "\u4e00\u7fa4\u7a7f\u7740\u897f\u88c5\u7684\u4eba\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u884c\u8d70\u5e76\u62b1\u6028\u3002"} +{"id": "2006031", "video_name": "f69a7376-1391-56d7-a39d-14b81daaef8e", "text": "\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u91cc\u6709\u9ca8\u9c7c\u5728\u6e38\u6cf3\u3002"} +{"id": "2003215", "video_name": "c7d3a845-7ba2-58b9-9141-2f350fd0aa4b", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5c71\u4e18\u548c\u7c89\u8272\u7684\u5929\u7a7a\uff0c\u5c0f\u623f\u5b50\u56f4\u7ed5\u7740\uff0c\u5f62\u72b6\u50cf\u7231\u7684\u4e91\u6735\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "6002810", "video_name": "74919622-95eb-53ab-9f7c-0b0256b05535", "text": "\u4e00\u53ea\u5c0f\u72d7\uff0c\u4e00\u53ea\u8783\u87f9\uff0c\u6c99\u6ee9\u3002"} +{"id": "1005473", "video_name": "648a3be3-a0f3-57c4-80d6-51689c45844c", "text": "\u8bf7\u7ed9\u6211\u4e00\u5f20\u514b\u91cc\u5e0c\u7eb3\u795e\u6700\u5f3a\u5927\u7684\u5f62\u8c61\u89c6\u9891\uff0c\u5730\u7403\u548c\u5929\u7a7a\u90fd\u662f\u7ea2\u8272\u7684\uff0c\u8fd8\u6709\u4e00\u573a\u98ce\u66b4\u3002"} +{"id": "2003840", "video_name": "1e53460b-2155-5eaf-b20d-1e64b8a2c191", "text": "24\u5e27\u6bcf\u79d2\u7684\u7f29\u653e\u3001\u60ac\u505c\u3001\u4eba\u7c7b\u3001\u98ce\u66b4\u7ed3\u6784\u3002"} +{"id": "2004150", "video_name": "164665ff-c542-59ab-bbb3-ef8d4f1e1639", "text": "\u5341\u5c81\u5e74\u8f7b\u7537\u5b69\uff0c\u77ed\u53d1\u9ed1\u53d1\uff0c\u7a7f\u7740\u4f11\u95f2\u670d\uff0c\u5750\u5728\u9910\u684c\u524d\uff0c\u5bb6\u4eba\u56f4\u5750\u5728\u6e29\u99a8\u7684\u53a8"} +{"id": "1006826", "video_name": "7ce2a765-0d2f-56ad-bd05-83bc373430a0", "text": "\u9ed1\u6697\u623f\u95f4\u7684\u95e8\u7f13\u7f13\u6253\u5f00\uff0c\u4e00\u4e2a\u5e26\u7740\u5927\u7b11\u7684\u53ef\u6015\u4eba\u8138\u63a2\u51fa\u95e8\u5916\uff0c\u7136\u540e\u4e00\u5207\u53d8\u5f97\u9ed1\u6697\u3002"} +{"id": "1004847", "video_name": "5999194e-fd73-566c-b235-ad385249f862", "text": "\u9e21\u548c\u9e70\u7684\u5b9d\u5b9d\u5728\u670b\u53cb\u4e2d\u3002"} +{"id": "7003522", "video_name": "f8d3bdbc-f3b2-54f4-9f21-39526c18b6e5", "text": "\u88ab\u843d\u65e5\u67d4\u548c\u7684\u5149\u7ebf\u7167\u8000\u7740\u7684\u9ad8\u8038\u7fa4\u5c71\u73af\u7ed5\u7740Astra Haven\u7684\u5e7f\u9614\u666f\u8c61\u3002"} +{"id": "6002542", "video_name": "809fc3bf-92c1-507a-8e37-f250ffe276e3", "text": "\u4e00\u5e45\u7f8e\u4e3d\u800c\u6e29\u6696\u7684\u5c71\u666f\u3002"} +{"id": "2006912", "video_name": "19bab466-37b8-56fe-b54b-d1352bb6fa76", "text": "\u4e3a\u4e86\u63cf\u7ed8\u8fd9\u4e2a\u4e16\u754c\uff0c\u4e00\u4e2a\u56e2\u961f\u4f7f\u7528\u5b8f\u89c2\u6444\u5f71\u3001\u663e\u5fae\u955c\u548c\u5148\u8fdb\u6210\u50cf\u6280\u672f\u3002"} +{"id": "8002753", "video_name": "9f34cb12-0552-50e2-a2e4-c449300bb0f9", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u590d\u53e4\u98ce\u683c\u7684\u57ce\u5e02\u91cc\uff0c\u7a7f\u8fc7\u9ad8\u697c\u5927\u53a6\u7684\u9053\u8def\u3002"} +{"id": "2006115", "video_name": "528ee606-4b0d-50de-8153-4532b52daf27", "text": "\u5361\u901a\u806a\u660e\u3001\u7740\u88c5\u4f18\u96c5\u5e76\u6234\u7740\u7687\u51a0\u7684\u738b\u5b50\uff0c\u7ad9\u5728\u65e9\u6668\u7684\u8302\u5bc6\u7eff\u8272\u795e\u79d8\u68ee\u6797\u4e2d\uff0c"} +{"id": "7003559", "video_name": "ae49e2ab-eac1-5c09-b502-69983bbea2e4", "text": "\u53cc\u500d\u7406\u7531\u5e73\u8861\u521b\u9020\u4e00\u4e2a\u73b0\u4ee3\u5973\u6027\u673a\u5668\u4eba\uff0c\u4ee5\u4e00\u6b21\u51fb\u8d25100\u4e2a\u654c\u4eba\u3002"} +{"id": "1006717", "video_name": "7b14e21e-de64-5394-a7ec-a2e6064a038b", "text": "\u804a\u5929GPT\u8fd0\u884c\u7406\u8bba\u7684\u52a8\u753b\u3002"} +{"id": "6003229", "video_name": "8e441fa1-1ac0-589d-871b-7dde4d9757ef", "text": "\u5728\u4e00\u573a\u7f51\u7403\u6bd4\u8d5b\u4e2d\uff0c\u4e00\u4e2a\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u7f51\u7403\u88ab\u6254\u5230\u4e86\u5916\u592a\u7a7a\u3002"} +{"id": "3005776", "video_name": "2d5d4059-527d-5d58-bb9c-a0731098ec41", "text": "\u84dd\u8272\u7684\u7761\u7720\u5728\u5e8a\u4e0a\u547c\u547c\u5927\u7761\u3002"} +{"id": "7003246", "video_name": "d51346ef-8f0e-580a-b17a-f02ed65e67bb", "text": "\u5c55\u793a\u4e00\u5e45\u7531\u590d\u6742\u56fe\u6848\u7ec4\u6210\u7684\u6302\u6bef\uff0c\u6bcf\u4e00\u79cd\u56fe\u6848\u4ee3\u8868\u4e0d\u540c\u7684\u6587\u5316\u3001\u79cd\u65cf\u6216\u8eab\u4efd\u3002\u5c55\u793a\u8fd9\u4e9b\u4e0d\u540c\u7684\u7ebf\u6761\u5982\u4f55"} +{"id": "3004471", "video_name": "5a5ee1b8-3e02-54ce-9dd3-f934c30a1e48", "text": "\u4e00\u53ea\u72d7\u5728\u6652\u592a\u9633\u3002"} +{"id": "5001561", "video_name": "5c99cab0-2b79-5bfc-aad0-9dc514b03b6c", "text": "\u4e00\u4e2a\u80cc\u7740\u4e66\u5305\u7684\u5e74\u8f7b\u7537\u5b69\u5728\u4e00\u7247\u7d2b\u6811\u6797\u5c0f\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "2007926", "video_name": "d7aa535c-7141-5497-8222-59160473520f", "text": "\u4e00\u4e2a\u9ad8\u4e2a\u3001\u7ea2\u5934\u53d1\u7684\u5973\u5b69\u62ff\u7740\u6ed1\u96ea\u677f\u3002"} +{"id": "1004524", "video_name": "540aeae7-f0fa-56d4-aa66-34897f76ab19", "text": "\u9965\u997f\u7684\u970d\u9ed8\u00b7\u8f9b\u666e\u68ee\u7684\u8096\u50cf"} +{"id": "6003939", "video_name": "f870e34b-ebe3-547c-aac5-ec03309f4354", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u3001\u6d82\u7740\u7ea2\u8272\u5507\u818f\u7684\u91d1\u53d1\u5973\u5b50\u8d70\u5728\u8857\u4e0a\uff0c\u770b\u7740\u753b\u6846\u3002\u80cc\u666f\uff1a\u7a7f"} +{"id": "7002801", "video_name": "f1fbc5f3-476c-53e9-b45e-ee3354dbb86a", "text": "\u521b\u5efa\u4e00\u4e2a\u68ee\u6797\uff0c\u521b\u9020\u4e00\u4e2a\u957f\u5c3e\u5df4\u548c\u950b\u5229\u7259\u9f7f\u7684\u52a8\u7269\u3002"} +{"id": "3005948", "video_name": "834cbc94-4ca8-5d70-a6da-e9a783a6ecfd", "text": "\u5f53\u80e1\u987b\u732b\u6f2b\u6b65\u6df1\u5165\u68ee\u6797\u65f6\uff0c\u5979\u53d1\u73b0\u4e86\u4e00\u4e2a\u5145\u6ee1\u9ad8\u5927\u6811\u6728\u3001\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u548c"} +{"id": "8001091", "video_name": "f0522e5e-0aed-5f96-80d0-60daea7c04b4", "text": "\u95f9\u9b3c\u7684\u94c1\u8def\u4e0a\u6709\u4e00\u4e2a\u53ef\u6015\u7684\u9b3c\u9b42\u3002"} +{"id": "6002473", "video_name": "e9cf960e-8505-56ea-a45b-6e335db3173e", "text": "\u8df3\u8df3\u864e\u5f88\u6f02\u4eae\uff0c\u5634\u5507\u5f88\u7ea2\u3002 \u9644\u4ef61\u3002"} +{"id": "8001203", "video_name": "b7345881-8c0e-5741-bcb6-9ca18a64f4ba", "text": "\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u5973\u5b69\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "6003016", "video_name": "6ec6c962-25d6-53ac-91ec-af4cd72e661c", "text": "\u7279\u96f7\u5f17\u00b7\u83f2\u5229\u666e\u65af\u5728\u661f\u9645\u8230\u961f\u4f01\u4e1a\u53f7\u4e0a\u3002"} +{"id": "2005111", "video_name": "ba3b0f48-ca33-50b4-b771-b3efd49f9808", "text": "\u76f4\u5347\u673a\u5728\u5370\u5ea6\u57ce\u5e02\u4e0a\u7a7a\u6492\u82b1\uff0c\u7206\u7af9\u58f0\u54cd\uff0c\u8d85\u5199\u5b9e\uff0c\u9ad8\u80fd\u6e32\u67d3\uff0c4K\u5206\u8fa8\u7387\uff0c\u8d85\u65f6\u53d8\u901f\u6444\u5f71"} +{"id": "6004128", "video_name": "606e974e-7b4d-5766-8d96-07ef6e719b2b", "text": "\u5927\u5b66\u5973\u751f\u7a7f\u7740\u5168\u9ed1\uff0c\u6234\u7740\u58a8\u955c\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u8eba\u5728\u8349\u5730\u4e0a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u753b\u9762\u903c\u771f\uff0c"} +{"id": "4004655", "video_name": "a7293f23-7292-5542-b758-fbb1de0ae8a4", "text": "\u6708\u7403\u7740\u9646\u5668\u964d\u843d\u5728\u7531\u5976\u916a\u6784\u6210\u7684\u6708\u9762\u4e0a\u3002"} +{"id": "3003717", "video_name": "5c35ffde-d5ac-5e72-863f-ee4307e9640e", "text": "\u57c3\u9f50\u5965\u00b7\u5965\u8fea\u6258\u96f7\u5728\u68ee\u6797\u4e2d\u6218\u6597\u3002"} +{"id": "0003481", "video_name": "3e64bba2-6c6a-5814-9e55-c850d6dc5208", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u6b63\u5728\u8fdb\u884c\u4e00\u573a\u96c6\u4f1a\uff0c\u624b\u81c2\u52a8\u4f5c\u903c\u771f\u3002"} +{"id": "3006300", "video_name": "54d355aa-c8ad-5e97-9b30-809c9d09fb9f", "text": "\u7a7f\u8d8a\u6211\u4eec\u7684\u592a\u9633\u7cfb\uff0c\u63a2\u7d22\u6bcf\u4e2a\u661f\u7403\u7684\u72ec\u7279\u7279\u70b9\u3002\u5199\u4e00\u7bc7\u8be6\u7ec6\u7684\u6587\u7ae0\uff0c\u4ecb\u7ecd\u5e76\u63cf\u8ff0\u6211\u4eec\u592a\u9633\u7cfb\u4e2d\u6240\u6709\u884c\u661f"} +{"id": "0006414", "video_name": "2bf30b8f-6073-51ee-b68e-d5e35431230e", "text": "\u7535\u5f71\u573a\u666f\uff0c8K\u6e05\u6670\u5ea6\uff0c\u7ea2\u76ae\u80a4\u7684\u4eba\u7c7b\u9b3c\u602a\u7537\u6027\uff0c\u94c1\u5320\uff0c\u8138\u4e0a\u6709\u5c0f\u75a4\u75d5\uff0c\u89d2\u8272"} +{"id": "7002472", "video_name": "398d3c8d-e007-5aed-ba41-896bb43168bb", "text": "\u4f0a\u5a03\u88ab\u86c7\u5f15\u8bf1\u5403\u4e0b\u7981\u679c\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7003619", "video_name": "3d61071a-9f5a-59c6-95a5-9e4953e2d487", "text": "\u5170\u5a1c\u00b7\u5fb7\u96f7\u3001\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u91cc\u548c\u9a6c\u4fee\u00b7\u9ea6\u5eb7\u7eb3\u5728\u73a9\u4e50\u3002"} +{"id": "3005999", "video_name": "5074e512-b356-5431-9040-42dc6be5d2a5", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u623f\u95f4\uff0c\u6709\u67d4\u548c\u7684\u706f\u5149\u3001\u8212\u9002\u7684\u6905\u5b50\u548c\u4e00\u4e2a\u6c89\u6d78\u5728\u8bfb\u4e66\u4e2d\u7684\u4eba\u7684\u753b\u9762\u3002"} +{"id": "4003656", "video_name": "8d481490-ca59-599d-bba1-da2471993c88", "text": "\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u9713\u8679\u6797\u5e02\uff0c\u4e00\u4e2a\u540d\u53eb\u827e\u62c9\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\u68a6\u60f3\u5728\u52a8\u753b\u4e16\u754c\u4e2d\u95ef\u51fa\u4e00\u7247\u5929"} +{"id": "6002935", "video_name": "79bb5063-0a8a-5378-961e-ebbc544a9ed7", "text": "\u6839\u636e\u4ed6\u4eec\u7684\u521b\u4e16\u6545\u4e8b\uff0c\u5b87\u5b99\u59cb\u4e8e\u6df7\u6c8c\u4e4b\u4e2d\uff0c\u6ca1\u6709\u795e\u7075\u6216\u547d\u8fd0\u7684\u5b89\u6392\u3002"} +{"id": "8003912", "video_name": "05181dfd-8f28-5f26-b2e8-608c65259e5a", "text": "\u4e00\u8f86\u4e30\u7530\u6c7d\u8f66\u5728\u6d77\u6ee9\u4e0a\u884c\u9a76\u3002"} +{"id": "5001850", "video_name": "8d48a5fd-b59f-504d-a5a9-b081b288231e", "text": "\u6728\u5320\u5207\u5272\u6728\u6750\uff0c\u611f\u5230\u6ee1\u610f\uff0c9:16 \u89c6\u9891"} +{"id": "6003180", "video_name": "27893564-3d39-5ea8-872d-2098389ed194", "text": "\u9ed1\u591c\u4e2d\u7684\u9053\u8def\u4e24\u65c1\u6709\u623f\u5c4b\uff0c\u505c\u6709\u4e24\u8f86\u81ea\u884c\u8f66\u548c\u4e00\u8f86\u6c7d\u8f66\uff0c\u8f66\u8f86\u7684\u5f71\u5b50\u843d\u5728\u9053\u8def\u4e0a\uff0c\u8def\u706f\u660f"} +{"id": "4003056", "video_name": "f35d8ff5-bb91-5d38-add9-24c4348cbbe7", "text": "\u4e24\u53ea\u624b\u4f38\u5411\u98df\u7269\uff0c\u63cf\u7ed8\u9965\u997f\u3002"} +{"id": "8002670", "video_name": "0f7bdb9c-ca89-5e99-a2b6-b83814a4d790", "text": "\u6211\u518d\u4e5f\u53d7\u4e0d\u4e86\u4e86\uff0c\u6211\u5feb\u8981\u75af\u4e86\uff0c\u6211\u7684\u5b87\u5b99\u5185\u90e8\u6b63\u5728\u5d29\u6e83\uff0c\u75db\u82e6\u5145\u65a5\u7740\u6211\u7684\u7075\u9b42\u3002"} +{"id": "4004987", "video_name": "a6d56270-2ec0-572c-9c06-af5ae18ac473", "text": "\u4e00\u4e2a\u52a8\u6f2b\u5973\u5b69\u5728\u57ce\u5e02\u91cc\u542c\u97f3\u4e50\u3002"} +{"id": "8001206", "video_name": "580d19c8-fa9e-564f-a0c7-7b6bd832d9f0", "text": "\u5929\u7a7a\u4e2d\u6709\u4e91\u6735\u548c\u9e1f\u513f\u4ece\u53f3\u8fb9\u79fb\u52a8\u548c\u98de\u884c\u3002"} +{"id": "5001184", "video_name": "95006df9-092d-5a89-9917-586e6c1a753a", "text": "\u5728\u5b89\u7b2c\u65af\u5c71\u8109\u4e2d\u4ee5\u7eb8\u827a\u672f\u98ce\u683c\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "6004798", "video_name": "66c994f0-d6b4-5fe8-b99a-a1083295200d", "text": "\u8239\u957f\u7ad9\u5728\u7532\u677f\u4e0a\uff0c\u4f38\u5f00\u53cc\u81c2\uff0c\u6b22\u5feb\u5730\u8fce\u63a5\u7740\u4e00\u4f4d\u6df1\u7231\u7684\u8001\u670b\u53cb\u3002"} +{"id": "2007262", "video_name": "a3723863-1c25-59b5-9475-fc7dc9546c84", "text": "\u7f8e\u4e3d\u7684\u68d5\u8272\u808c\u80a4\u5973\u58eb\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u817f\u60ac\u6302\u5728\u6c99\u53d1\u4e0a\uff0c\u62ff\u7740\u624b\u673a\uff0c\u5728\u5916\u9762\u4e0b\u96e8\uff0cAR9:"} +{"id": "3005383", "video_name": "6a9d5b3d-2325-5713-8f44-ba9adc7e62fd", "text": "\u6fc0\u70c8\u6218\u6597\u573a\u9762\u7684\u5feb\u901f\u526a\u8f91\uff0c\u95ea\u73b0\u51fa\u5f3a\u5927\u7684\u751f\u7269\u5728\u640f\u6597\u3002"} +{"id": "2005106", "video_name": "af8284f7-cf7e-5d29-b8b1-9febc6200282", "text": "\u90a3\u4e2a\u7537\u4eba\u8fc7\u7740\u5e78\u798f\u7684\u751f\u6d3b\u3002"} +{"id": "4002436", "video_name": "741640e6-19c7-5231-b485-d5e3fb08e716", "text": "\u5728Linked\u4e0a\uff0c\u4eba\u5011\u53ea\u662f\u70ba\u4e86\u7372\u5f97\u66f4\u591a\u7684\u9ede\u64ca\u7387\u800c\u5275\u9020\u9ede\u64ca\u8a98\u990c\u5167\u5bb9\u7684\u6897\u5716\u3002"} +{"id": "1005280", "video_name": "6123040f-89ec-59f8-bb81-af69459cd16e", "text": "\u6751\u6c11\u4eec\u5728\u6751\u5b50\u91cc\u5efa\u9020\u5b66\u6821\uff0c\u91c7\u75283D\u52a8\u753b\u98ce\u683c\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "8001433", "video_name": "5d3a2a11-b487-5493-be3a-8776a41a3818", "text": "\u903c\u771f\u7684\u7535\u5f71\u573a\u666f\u5c55\u793a\u4e00\u4e2a\u7075\u9b42\u5728\u5b69\u5b50\u7684\u7761\u7720\u4e2d\u51fa\u73b0\u3002"} +{"id": "7003413", "video_name": "d689a211-9c05-5a64-9b17-99696346be12", "text": "\u8d85\u903c\u771f\u7684\u5feb\u4e50\u7537\u5b50\u9a91\u5728\u9a6c\u4e0a\uff0c\u5934\u53d1\u968f\u7740\u98ce\u98d8\u52a8\uff0c\u6444\u50cf\u673a\u9010\u6e10\u653e\u5927\u3002"} +{"id": "5001637", "video_name": "3f1a1593-fa2c-518e-bfb7-74ff829e1747", "text": "\u4e00\u4e2a\u9ed1\u6697\u97f3\u4e50\u89c6\u9891\u8bbe\u65bd\u7684\u7535\u5f71\u5f0f\u5ba4\u5185\u666f\u8c61\uff0c\u914d\u6709LED\u706f\u5149\u548c\u6f02\u6d6e\u7684\u97f3\u7b26\u3002\u8be5\u533a\u57df\u6709\u70b9\u96fe\u8499"} +{"id": "4004460", "video_name": "c6913525-266d-5e50-8236-50be294758e6", "text": "ngle\n\u6050\u9f99\u5728\u4e1b\u6797\u91cc\u6f2b\u6e38"} +{"id": "8001415", "video_name": "03eb32e8-07d7-5313-9db0-3fe99c5c714b", "text": "\u6570\u5b57\u5316\u7684\u975e\u6d32\u7537\u5b50\u8bf4\u8bdd\u5e76\u76ef\u7740\u5c4f\u5e55\u3002"} +{"id": "1003475", "video_name": "4062172d-6b90-5390-a771-c2ac4528be36", "text": "\u9080\u8bf7\u4e00\u4f4d\u6f02\u4eae\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "0006488", "video_name": "2d5cb54e-988b-5777-911c-df325e9aaeae", "text": "\u81ea1985\u5e74\u4ee5\u6765\uff0c\u6211\u4ece\u672a\u54ed\u8fc7\uff01\u5f00\u73a9\u7b11\uff0c\u90a3\u65f6\u6211\u751a\u81f3\u8fd8\u6ca1\u6709\u51fa\u751f\u3002"} +{"id": "1005264", "video_name": "60d61a2f-bffa-59f5-b64d-094fcf00d075", "text": "\u751f\u6210\u4e00\u6bb5\u79cb\u5929\u9ec4\u8272\u94f6\u674f\u6811\u7684\u89c6\u9891\u3002"} +{"id": "2006164", "video_name": "b55063dd-43ba-566d-aaa5-b79c2a50e66f", "text": "\u4eba\u53d8\u8001\u4e86\uff0c\u8001\u5e74\u4eba\uff0c\u53d8\u8001\uff0c\u5c81\u6708\u6d41\u901d\uff0c\u591a\u5e74\u7ad9\u5728\u6c99\u6f20\u4e2d\uff0c\u5927\u773c\u775b\u3002"} +{"id": "2004624", "video_name": "bda130d6-0bf3-5675-9081-4cd6a7f12652", "text": "\u4e24\u67b6\u94a2\u7434\uff0c\u5bf9\u9762\u800c\u7acb\uff0c\u4e00\u67b6\u8001\u65e7\uff0c\u4e00\u67b6\u65b0\u7684\uff0c\u9ed1\u767d\u7f13\u6162\u79fb\u52a8\uff0c4K\uff0cAR 1:1\u3002"} +{"id": "0006417", "video_name": "2bfcaa31-9751-5ca1-9033-0a39d67d916b", "text": "\u5de8\u5927\u7684\u53d1\u5149\u6c34\u6bcd\u6f02\u6d6e\u5728\u4e00\u4e2a\u73b0\u4ee3\u57ce\u5e02\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u54c1\u8d28\u79d1\u5e7b\u7279\u6548\u7535\u5f71\u3002"} +{"id": "5001663", "video_name": "1aee332a-6a6f-5040-9ae6-e32020c50053", "text": "\u4e00\u4e2a\u597d\u5947\u7684\u5c0f\u7537\u5b69\u548c\u4e00\u53ea\u7231\u73a9\u7684\u718a\u732b\u5728\u68ee\u6797\u91cc\u73a9\u800d\uff0c\u6b22\u58f0\u7b11\u8bed\u3002"} +{"id": "0006946", "video_name": "35ac51e4-721a-5628-b059-ab924915c688", "text": "7\u4e2a\u4eba\u7ad9\u7740\uff0c\u63a5\u7740\u5176\u4e2d\u4e00\u4e2a\u540e\u9000\u4e86\u3002\u89c6\u9891\u5feb\u901f\uff0c\u903c\u771f\uff0c\u620f\u5267\u5316\u7684\u5149\u7ebf\uff0c\u89d2\u5ea6\u7b14\u76f4\u3002"} +{"id": "1003212", "video_name": "3b2c78ca-5abd-541d-aa45-53bbcd027140", "text": "\u5c0f\u5c0f\u7684\u3001\u8106\u5f31\u7684\u5ae9\u82bd\u4ece\u5e72\u88c2\u7684\u571f\u5730\u4e0a\u5192\u51fa\u6765\u3002\u9633\u5149\u65e0\u60c5\u5730\u7167\u5c04\u3002 \n\nSource sentence: The old man sat alone on"} +{"id": "2005604", "video_name": "6e31275a-e942-57d7-a5cf-f0002e227dbd", "text": "\u4e00\u4e2a\u8df3\u821e\u7684\u53ef\u7231\u5c0f\u673a\u5668\u4eba\uff0c\u7279\u62c9\u6c83\u5c14\u5854\u52a8\u4f5c\uff0c\u5468\u516d\u591c\u72c2\u70ed\u3002"} +{"id": "2007116", "video_name": "be5d72cb-97c5-5b7f-b0be-bbf6347145b7", "text": "\u957f\u6b3e\u590f\u5b63\u82b1\u88d9\u8272\u5f69\u53d8\u5e7b\u3002"} +{"id": "6002949", "video_name": "81ccc102-9d83-5369-acf1-e1decfdf29f4", "text": "\u9ed1\u591c\u91cc\uff0c\u5728\u623f\u95e8\u524d\uff0c\u4e00\u4e2a\u957f\u76f8\u53ef\u6015\u7684\u7537\u4eba\u6b63\u5728\u548c\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u4ea4\u8c08\u3002"} +{"id": "1005333", "video_name": "61f39ec7-11c0-56bb-b82b-6411c9734114", "text": "\u52a8\u7269\u4f53\u5185\u7684\u62bd\u6410\u662f\u7531\u51e0\u79cd\u7ec6\u83cc\u5f15\u8d77\u7684\u3002"} +{"id": "1005064", "video_name": "5d8dc7a2-b441-5b3a-8688-01390a7893ad", "text": "\u4e00\u7247\u5e03\u6ee1\u6570\u767e\u9762\u65d7\u5e1c\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u573a\u5730\u3002"} +{"id": "8003156", "video_name": "4a46e689-5ba5-532b-9d28-f311be8fd55e", "text": "\u4e00\u67b61980\u5e74\u7684\u98de\u673a\u671d\u7740\u65e5\u843d\u98de\u884c\u3002"} +{"id": "6002422", "video_name": "b1d8080d-70a8-5349-8f97-6ce9f3b1816c", "text": "\u6211\u60f3\u770b\u5230\u4e00\u4e2a\u4eba\u60f3\u8d77\u4e00\u628a\u65e7\u624b\u5228\u5de5\u5177\uff0c\u5b83\u51fa\u73b0\u5728\u4ed6\u4eec\u7684\u624b\u4e2d\u7684\u89c6\u9891\u3002\u573a\u666f\u5728\u4e00\u4e2a\u6728\u5de5\u8f66\u95f4\u3002"} +{"id": "2004329", "video_name": "67b8a860-61c5-5513-afb0-8551913f7803", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u5e05\u6c14\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u7a7f\u7740\u5929\u4e3b\u6559\u4fee\u9053\u58eb\u7684\u888d\u5b50\u7684\u65b0\u624b\n\n\u7ffb\u8bd1\uff1a\u82f1\u4fca\u7684\u5e74\u8f7b"} +{"id": "1005527", "video_name": "65be9d9c-5073-5300-a34c-90653fffab7f", "text": "\u67ef\u57fa\u5229\u662f\u300a\u6d77\u8d3c\u738b\u300b\u52a8\u753b\u7cfb\u5217\u4e2d\u7684\u89d2\u8272\u3002"} +{"id": "0003355", "video_name": "3c157fa6-f38a-5a69-9d34-e444c54507d7", "text": "\u4e00\u90e8\u7535\u5f71\u4e2d\u7684\u573a\u666f\uff0c\u63cf\u8ff0\u4e86\u4e00\u4e2a\u5973\u4eba\u57282003\u5e74\u770b\u7740\u7a97\u5916\u3002"} +{"id": "2004689", "video_name": "2c707540-f854-5b99-8561-418c0cb737f6", "text": "\u4e00\u53ea\u62e5\u6709\u706b\u7130\u7fc5\u8180\u7684\u9e70\u5728\u84dd\u8272\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "7002067", "video_name": "69c19006-b60f-5c9a-b77e-60e7ca5b4825", "text": "\u4e94\u4e2a\u4eba\u5728\u7f8e\u4e3d\u7684\u82b1\u56ed\u91cc\u4ea4\u8c08\u76843D\u6a21\u578b\u3002"} +{"id": "7002048", "video_name": "28aa5820-89ff-5c9a-ab7b-b7320e2036a5", "text": "\u4ed6\u4eec\u5230\u8fbe\u4e86Simla\uff0c\u5e76\u5165\u4f4f\u4e00\u5bb6\u9152\u5e97\u8fc7\u591c\uff0c\u5728\u5947\u602a\u7684\u516c\u5171\u6c7d\u8f66\u4e8b\u4ef6\u4e4b\u540e\u5bfb\u6c42\u8212\u9002\u548c\u5b89\u5168\u3002"} +{"id": "8001575", "video_name": "35aad813-b801-559d-8d5e-0e05b6607e12", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u76843D\u52a8\u753b\uff0c\u4e00\u4e2a\u7559\u7740\u84ec\u677e\u53d1\u8fab\u7684\u5973\u5b69\u6325\u821e\u7740\u9b54\u68d2\uff0c\u4f7f\u7528\u4e86CG"} +{"id": "2005236", "video_name": "91b8f196-a100-5a2e-8a66-d9e987fe9aca", "text": "\u4e00\u5757\u73b0\u5b9e\u5347\u8d77\u5230\u5b87\u5b99\u4e2d\u3002"} +{"id": "8003603", "video_name": "d456396e-5189-5b29-ba6d-0c24b4d933f6", "text": "\u8bb8\u591a\u4eba\u5728\u6709\u6c7d\u8f66\u548c\u7535\u8f66\u7684\u5927\u573a\u5730\u4e0a\u8d70\u8def\u4e0d\u534f\u8c03\u3002"} +{"id": "2006845", "video_name": "adf939c7-dd48-5b93-acba-ae19af892636", "text": "\u6e56\u6cca\u662f\u6700\u5f15\u4eba\u5165\u80dc\u7684\u666f\u70b9\u4e4b\u4e00\u3002"} +{"id": "6004629", "video_name": "d41b5f09-81f4-519f-aa49-4d1625534979", "text": "\u5f00\u660e\u7684\u4eba\uff0c\u76f8\u8c8c\u516c\u6b63\uff0c\u5411\u5927\u91cf\u7684\u4eba\u8bb2\u8ff0\u771f\u76f8\u3002"} +{"id": "2003957", "video_name": "4b9fdc63-82a3-568b-97b6-d231183a0194", "text": "\u4e00\u4f4d\u8eab\u7a7f\u533b\u7528\u5de5\u4f5c\u670d\u7684\u533b\u751f\u53cc\u624b\u4ea4\u53c9\u7ad9\u5728\u684c\u5b50\u65c1\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u7559\u7740\u80e1\u987b\uff0c\u80cc\u540e\u662f"} +{"id": "0004027", "video_name": "01c14970-3829-5747-b92c-e156f84fa9c5", "text": "\u4e00\u5e45\u5e74\u8f7b\u5973\u5b69\u7684\u6587\u827a\u590d\u5174\u8096\u50cf\u753b"} +{"id": "5001951", "video_name": "9ddbfadf-9d00-5414-9ddc-b5b76a67770c", "text": "\u4e00\u4e2a\u5973\u5b69\u8fdb\u5165\u6559\u5ba4\u7684\u4fa7\u9762\u89c6\u56fe"} +{"id": "8001942", "video_name": "85531710-c190-5e94-ac50-a7435aeefa84", "text": "\u9f99\u4ece\u8499\u5a1c\u4e3d\u838e\u753b\u50cf\u4e2d\u51fa\u73b0\u3002"} +{"id": "7002128", "video_name": "ded4fc30-40b3-5192-9dd2-decb90c0ec89", "text": "\u957f\u9888\u9e7f\u4ece\u5730\u4e0a\u5403\u8349\u3002"} +{"id": "3004592", "video_name": "db6fca8d-02e9-5977-92c9-1158929ea035", "text": "16:9 \u6c34\u5e73\u89c6\u9891\uff0c\u903c\u771f\u6e29\u99a8\u7684\u73b0\u4ee3\u98ce\u683c\u5ba2\u5385\uff0c\u58c1\u7089\u71c3\u70e7\u7740\uff0c\u7535\u89c6\u5c4f\u5e55\u64ad\u653e\u7740"} +{"id": "8001436", "video_name": "b2893890-eb3d-5827-92bf-7afc94c08558", "text": "\u5165\u53e3\u5904\u6709\u201c\u7981\u6b62\u643a\u5e26\u98df\u54c1\u548c\u996e\u6599\u201d\u7684\u6807\u5fd7\u3002"} +{"id": "8003636", "video_name": "eef7bb84-5bfb-52f7-828a-49582898b066", "text": "\u6d77\u6ee9\u65e5\u843d\uff0c\u9760\u8fd1\u57ce\u5821\uff0c\u6d6a\u6f2b\uff0c80\u5e74\u4ee3\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "3006934", "video_name": "0331e954-9a30-5c4e-9da3-725c410e68cd", "text": "\u5728\u8611\u83c7\u68ee\u6797\u91cc\uff0c\u7531\u70df\u96fe\u8499\u9762\u7684\u602a\u517d\u548c\u706b\u7bad\u9c7c\u5305\u56f4\u7740\uff0c\u5236\u4f5c\u4e00\u4e2a30\u79d2\u7684ERNST HAE"} +{"id": "1004173", "video_name": "4d3dec85-2fed-5467-88c4-efee8a87d1f0", "text": "\u62e5\u6709\u903c\u771f\u56fe\u5f62\u7684\u7535\u5f71\u7ea7\u89c6\u9891\uff0c\u5c55\u73b0\u8d22\u5bcc\u3001\u5fc3\u6001\u548c\u6c7d\u8f66\u3002"} +{"id": "0006591", "video_name": "2f267be1-7fd1-56a3-9765-388e9830f15d", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u6d77\u5cb8\u8d70\u5411\u6751\u5e84\uff0c\u65f6\u95f4\u662f\u767d\u5929\uff0c\u4ece\u7537\u4eba\u7684\u80cc\u540e\u770b\uff0c\u65f6\u95f4\u662f\u516c\u5143\u524d0\u5e74\uff0c\u8863\u670d\u662f\u767d\u8272\u7684\u3002"} +{"id": "0005931", "video_name": "236cebf5-621a-5704-a879-61df3feafc00", "text": "\u9ad8\u6e05\u6670\u5ea6\uff0c\u9ad8\u7ec6\u8282\u7684\u7535\u5f71\u753b\u9762\u4e2d\uff0c\u5e7d\u7075\u5973\u4eba\u5728\u955c\u5b50\u7684\u53cd\u5c04\u4e2d\u663e\u73b0\u51fa\u6765\uff0c\u4eff\u4f5b\u5979\u4ece\u6df1\u6e0a\u4e2d"} +{"id": "2007405", "video_name": "1a581f87-458f-5b45-b44c-9611915290bf", "text": "\u751f\u6210\u4e00\u4e2a\u6d77\u6d0b\u9986\u5916\u90e8\u7684\u89c6\u9891\u3002"} +{"id": "2007165", "video_name": "1eb62791-3c35-5c94-971a-fca7c74dfba3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u56fd\u738b\u548c\u4ed6\u7684\u7236\u4eb2\u5728\u4ed6\u4eec\u7684\u5bab\u6bbf\u91cc\u3002 \n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b"} +{"id": "2006033", "video_name": "8e37aeb1-7a7d-5075-a492-409e7f9023f0", "text": "\u82cf\u5c1a\u7279\u00b7\u8f9b\u683c\u00b7\u62c9\u6770\u666e\u7279\u5750\u5728\u529e\u516c\u5ba4\u91cc\u3002"} +{"id": "3005837", "video_name": "b506054b-591f-5219-863a-658206e26524", "text": "\u771f\u6b63\u7684\u732b\u5927\u8138\u6234\u5e3d\u5b50"} +{"id": "2007259", "video_name": "323831a2-e48b-573b-aaf6-8c8141f89dfc", "text": "\u53e6\u4e00\u4e2a\u4e16\u754c\u7684\u751f\u6d3b\uff0c\u6700\u7f8e\u4e3d\u7684\u884c\u661f\uff0c\u5e73\u7a33\u3002"} +{"id": "4003624", "video_name": "f4530c27-db14-5326-9ead-d522c2647b5c", "text": "\u7535\u89c6\u8282\u76ee\u4e3b\u6301\u4eba\u89e3\u91ca\u9ed1\u5ba2\u3002"} +{"id": "1006804", "video_name": "7c872977-fdac-5bae-a3fd-2398c3bedde8", "text": "\u5929\u4f7f\u624b\u6301\u5251\u67b6\u5728\u6c79\u6d8c\u7684\u6d77\u6d6a\u4e2d\u3002"} +{"id": "6002247", "video_name": "b4269dbc-8f6a-5def-bb63-e970ea2bb6f7", "text": "\u4e24\u4e2a\u89d2\u8272\u4e92\u76f8\u4ea4\u8c08\uff0c\u7236\u4eb2\u548c\u513f\u5b50\uff0c\u5361\u901a\uff0c3D\uff0c\u5168\u666f\uff0cHDR\uff0c\u975e\u5e38\u9ad8\u7684\u5206\u8fa8\u7387\uff0c\u89d2\u8272\u6ca1\u6709\u5931\u771f\uff0c\u4f7f\u7528\u4eba"} +{"id": "0005485", "video_name": "1bab4d91-4096-5d4f-92dc-c5dfa959132a", "text": "\u4e00\u4e2a\u4e9a\u9a6c\u900a\u4ed3\u5e93\u673a\u5668\u4eba\u5728\u5206\u62e3\u76d2\u5b50\u3002"} +{"id": "2006143", "video_name": "f1405f48-0ac4-5fa6-84f1-3fe39891d9ee", "text": "\u90a3\u4e2a\u5e74\u8f7b\u4eba\u5173\u4e0a\u516c\u5bd3\u7684\u95e8\uff0c\u80cc\u7740\u80cc\u5305\u6f2b\u6b65\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u3002"} +{"id": "2005473", "video_name": "3beb5568-e2ff-57d1-a7ca-ffc6820e2c1c", "text": "\u623f\u5b50\u91cc\u6709\u53ea\u732b\u3002\u753b\u9762\u7f29\u5c0f\u3002"} +{"id": "1006721", "video_name": "7b2f66f5-d67a-5f3d-989a-d51f6c0c2d68", "text": "\u521b\u5efa\u63d0\u793a\uff1a\u4e00\u4e2a\u4eba\u753b\u5496\u5561\u3001\u529e\u516c\u5ba4\u548c\u9ed1\u6697\u7684\u56fe\u50cf\u3002"} +{"id": "3003694", "video_name": "c6be16a8-5277-516a-9714-5098f0986394", "text": "\u660e\u4eae\u7684\u9713\u8679\u706f\u6807\u5fd7\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u95ea\u70c1\u3002"} +{"id": "6004358", "video_name": "fc6c09a6-ea57-5d16-95a9-29c68595cb35", "text": "\u5f53\u53d7\u8bd5\u8005\u5c06\u817f\u653e\u4e0b\u6765\u65f6\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "8002715", "video_name": "a1d5e6f7-95e1-5ec7-9abe-ba9de8f240f4", "text": "\u4e00\u4e2a\u8d85\u8d8a\u6211\u4eec\u4e16\u754c\u7684\u9886\u57df\uff0c\u591c\u7a7a\u662f\u4e00\u5e45\u95ea\u70c1\u7740\u94bb\u77f3\u822c\u5149\u8292\u7684\u753b\u5e03\u3002\u8bb2\u8ff0\u4e00\u4f4d\u597d\u5947\u7684"} +{"id": "8001418", "video_name": "a23670bd-c195-5ddf-9103-2c06385bbc5b", "text": "\u8fd9\u4f4d\u8001\u4eba\u62b1\u7740\u4ed6\u5df2\u6545\u7684\u513f\u5b50\u54ed\u6ce3\u3002"} +{"id": "2006785", "video_name": "26684e2c-323c-5400-97bd-72de24a94e7f", "text": "\u4e00\u4e2a\u597d\u5947\u7684\u7537\u4eba\u4ece\u5c4b\u9876\u4e0a\u89c2\u770b\u8d85\u7ea7\u84dd\u6708\u4eae\u3002"} +{"id": "2004703", "video_name": "da7645c4-3e25-565c-9bfe-c923fb750e28", "text": "\u5341\u5b57\u519b\u6218\u58eb\u5750\u5728\u6d77\u5cb8\u8fb9\u7684\u77f3\u5934\u4e0a\u3002"} +{"id": "0006551", "video_name": "2e7e53a0-e920-5c27-bce5-0185e35a03df", "text": "\u5723\u8bde\u6811\u7528\u5168\u767d\u8272\u706f\u9970\u548c\u88c5\u9970\u54c1\u88c5\u9970\uff0c\u5927\u591a\u6570\u4e3a\u6e29\u6696\u8272\u8c03\u3002"} +{"id": "8003414", "video_name": "ede4a560-0daa-5ac4-b871-8af316175bbf", "text": "\u963f\u535c\u675c\u52d2\u00b7\u5361\u62c9\u59c6\u535a\u58eb\u7684\u5361\u901a\u5f62\u8c61\u7528\u4e8e\u81ea\u4f20\u3002"} +{"id": "0003180", "video_name": "38ce96f7-97d0-53d2-8848-ddcc542206ee", "text": "\u53e4\u4ee3\u51ef\u5c14\u7279\u6751\u5e84\u7684\u9886\u8896\uff0c\u62e5\u6709\u6728\u5236\u623f\u5c4b\u3002"} +{"id": "1003715", "video_name": "448f72e8-c390-554f-8eca-878b28e8e439", "text": "\u8036\u7a23\u7a7f\u7740\u91d1\u8272\u670d\u88c5\u5728\u97f3\u4e50\u89c6\u9891\u4e2d\u8bf4\u5531\u3002"} +{"id": "2005792", "video_name": "bfaacdb2-18e7-57ab-bb45-c3a7da5024bd", "text": "\u4e00\u4f4d\u8eab\u7a7f\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u670d\u88c5\u3001\u6234\u7740\u539f\u59cb\u5d07\u62dc\u9762\u5177\u3001\u9ed1\u8272\u82b1\u8fb9\u62ab\u80a9\u7684\u8001\u5987\u4eba\uff0c\u5728\u9ed1\u6697"} +{"id": "1003847", "video_name": "46e14ef7-1602-55f0-b65b-2eb059b64efb", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u5438\u7740\u96ea\u8304\uff0c\u8d5b\u535a\u670b\u514b\u3001\u84b8\u6c7d\u670b\u514b\u3001\u57ce\u5e02\u3001\u9713\u8679\u3002"} +{"id": "2004946", "video_name": "1bdbabcb-10be-51a4-9884-ba18987166a8", "text": "\u4e00\u4e2a31\u5c81\u7684\u91d1\u53d1\u5e05\u6c14\u8fd0\u52a8\u7537\u5b50\u4ece5\u7c73\u5916\u8d70\u5411\u6444\u50cf\u673a\uff0c\u4f4d\u4e8e\u57ce\u5e02\u4e2d\u5fc3\uff0c16:9\u3002"} +{"id": "3003288", "video_name": "4f65d9c2-fca4-558e-ba6f-70937e00e656", "text": "\u4e00\u4e2a\u6e14\u6751\u91cc\u7267\u5e08\u623f\u5c4b\u7684\u5185\u90e8\u3002"} +{"id": "1006051", "video_name": "6f18764e-c8e8-5122-84d2-8147b34910e2", "text": "\u963f\u91cc\u559c\u6b22\u9a91\u9a6c\u3002"} +{"id": "2004694", "video_name": "d8746154-8a9a-56a7-bea2-1c6dd5613f0d", "text": "\u623f\u5730\u4ea7\u623f\u5c4b\u8bc4\u4f30\uff0c\u73b0\u4ee3\u4f4f\u5b85\uff0c\u65e5\u3002"} +{"id": "1006538", "video_name": "77c81c1d-5a2d-5d8b-9255-a5bc7c0c5767", "text": "\u4eba\u7fa4\u805a\u96c6\u5728\u4f1a\u8bae\u4e2d\u5fc3\u89c2\u770b\u6f14\u793a\u3002"} +{"id": "4003087", "video_name": "ebdf9164-941d-51a1-a611-544d19ee053c", "text": "\u8001\u4eba\u6b63\u5728\u4e00\u95f4\u6728\u5730\u677f\u7684\u623f\u5b50\u91cc\u7ed9\u4ed6\u7684\u5b59\u5b50\u5b59\u5973\u8bb2\u6545\u4e8b\u3002"} +{"id": "3003495", "video_name": "debd2907-24d5-56d4-9e4c-9c16820da10f", "text": "\u5c0f\u661f\u5149\u7cbe\u7075\u5df2\u7ecf\u5728\u6574\u4e2a\u591c\u665a\u53d1\u5149\u4e86\u3002"} +{"id": "8002680", "video_name": "dae669c0-c1f6-5cf6-815a-2939740b102f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e0a\u6d77\u7684\u8857\u9053\u4e0a\u591c\u884c\u3002"} +{"id": "8002031", "video_name": "5379420f-dc9d-5162-9226-560076441417", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u6a59\u8272\u732b\uff0c\u7eff\u8272\u7684\u773c\u775b\u5750\u5728\u84dd\u8272\u7684\u6c99\u53d1\u4e0a\u3002\u5b83\u62ff\u8d77\u4e00\u56e2\u7ea2\u6bdb\u7ebf\u5e76\u5f00\u59cb"} +{"id": "4002912", "video_name": "c717a161-4518-57be-81a4-f5ead24a5277", "text": "\u8fea\u58eb\u5c3c\u6c7d\u8f66\u9a7e\u9a76\u6bd4\u8d5b\uff0c\u54c8\u91cc\u8c6a\u68ee\u98ce\u683c\u3002"} +{"id": "8003177", "video_name": "a4be9930-508e-5553-a66a-51d7d0f57ca8", "text": "\u4eba\u8138\u5728\u865a\u62df\u4e16\u754c\u4e2d\uff0c\u65e9\u671fCGI\uff0cVHS\u8d28\u91cf\uff0c90\u5e74\u4ee3CGI"} +{"id": "8002054", "video_name": "beab9b33-698f-5ea1-8eda-22c6375093fa", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8349\u5730\u4e0a\u62b1\u7740\u4e00\u53ea\u5c0f\u732b\u3002"} +{"id": "8001232", "video_name": "54ce4461-b450-5638-9cd1-18ca91c9299d", "text": "\u6709\u4e00\u5929\uff0c\u74e6\u5229\u9be8\u9bca\u5728\u4e00\u500b\u7199\u7199\u6518\u6518\u7684\u73ca\u745a\u7901\u9644\u8fd1\u6e38\u6cf3\u6642\uff0c\u6ce8\u610f\u5230\u5145\u6eff"} +{"id": "1004883", "video_name": "5a4c5689-d595-5644-b2c6-601fbbbbcad6", "text": "\u6d41\u884c\u7684\u65c5\u6e38\u5361\u8f66\u66dd\u5149\u9ed1\u6697\u79d8\u5bc6\u3002"} +{"id": "8003137", "video_name": "fd59ff2a-666d-564b-9499-82a8570a4716", "text": "\u4e24\u53ea\u725b\u5728\u5403\u98df\u7269\uff0c4k\u9ad8\u6e05\uff0c\u5361\u901a\u3002"} +{"id": "6002455", "video_name": "9275ccc3-75f9-5132-9df6-17e9d98618e7", "text": "\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u7559\u7740\u67e5\u7406\u00b7\u5353\u522b\u6797\u5f0f\u7684\u5c0f\u80e1\u5b50\u3002"} +{"id": "1003159", "video_name": "3a32b25e-86e6-5f23-a92b-e9c479709d95", "text": "\u6c60\u888b\u7f8e\u5c11\u5973\u6d51\u8eab\u6563\u53d1\u7c89\u8272\u95ea\u7535\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "3003122", "video_name": "b09dfc74-a513-5581-b658-ea593a53ad12", "text": "\u8d85\u5199\u5b9e\u7684\uff0c\u8d85\u8be6\u7ec6\u7684\uff0c\u4e0b\u96e8\u7684\u6db2\u4f53\u5496\u5561\uff0c\u5496\u5561\u8c46\u53d8\u6210\u6db2\u4f53\u5496\u5561\uff0c\u7535\u89c6\u5546\u4e1a\u5e7f\u544a\uff0c"} +{"id": "8001952", "video_name": "ced5a21b-94d9-59ea-b1e0-75ac1cfe6489", "text": "\u4e00\u4e2a\u6e29\u99a8\u7684\u591c\u666f\u5c55\u73b0\u5728\u773c\u524d\uff0c\u661f\u661f\u5728\u6e29\u6696\u7684\u6708\u5149\u4e0b\u95ea\u70c1\u3002\u4e00\u4e2a\u6bcd\u4eb2\u548c\u5b69\u5b50\u4f9d\u504e\u5728\u5e8a\u4e0a"} +{"id": "8001295", "video_name": "28b1ca5f-047d-5ba2-ba55-885de319ec90", "text": "\u4f18\u7f8e\u821e\u59ff\u7684\u5973\u5b69\uff0c\u5a9a\u60d1\u8ff7\u4eba\u3002"} +{"id": "1006752", "video_name": "7b9bdc97-6150-5fb8-a40b-9a27b59299ec", "text": "\u6258\u5e03\u65af\u5361\u65af\u7a7f\u7740\u84dd\u8272\u670d\u88c5\u5728\u5893\u5730\u91cc\u3002"} +{"id": "6003358", "video_name": "32c2f279-18c7-5ceb-af0b-653e5e206d26", "text": "\u4e61\u6751\u522b\u5885\u8bbe\u8ba1\u5efa\u7b51\u65bd\u5de5\u56fe\u7eb8\u3002\u5c71\u6c34\u3002"} +{"id": "0005534", "video_name": "1c6aad58-eb5e-5424-a706-5548dfc69414", "text": "\u7537\u5b50\u5728\u5899\u4e0a\u6d82\u9e26\u3002"} +{"id": "6002806", "video_name": "4df3c635-c270-517e-aeec-6162f861c684", "text": "NASA\u4f2a\u9020\u767b\u6708\u7684\u5e55\u540e\u79d8\u5bc6\u9876\u7ea7\u673a\u5bc6\u5df2\u88ab\u89e3\u5bc6\u3002"} +{"id": "3004358", "video_name": "d1536b74-411b-5d9c-b48a-6c5cd984e0ee", "text": "\u6392\u7403\u8fdb\u653b\u624b4\u53f7\u6263\u7403\u3002"} +{"id": "2003477", "video_name": "548a5a29-5c17-5a64-8dd8-cba012f1214e", "text": "\u4e00\u4e2a\u7528\u4e8eVan\u5de5\u4f5c\u5ba4\u7684\u5165\u95e8\u52a8\u753b\u6807\u5fd7\u3002"} +{"id": "4003073", "video_name": "2ca47803-22a3-5852-9c75-352470eea903", "text": "\u6c34\u6bcd\u6b63\u5728\u541e\u566c\u6211\u7684\u5934\u90e8\uff0c\u5438\u6536\u7740\u573a\u666f\uff0c\u5b9b\u5982\u6050\u6016\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4K\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "3006475", "video_name": "87079aac-94f2-507d-90b8-8766f3577768", "text": "\u4e00\u7fa4\u4eba\u5728\u5e86\u795d\u5723\u8bde\u8282\uff0c\u753b\u9762\u7d27\u51d1\uff0c\u7535\u5f71\u5316\uff0c\u5e7f\u544a\u98ce\u683c\uff0c\u4eba\u4eec\u6b22\u4e50\u5730\u5403\u559d\u3002"} +{"id": "1005929", "video_name": "6cf10cb6-cb2e-59d5-9fba-f090423f7725", "text": "\u591c\u665a\u7684\u6d77\u6d0b\uff0c\u6709\u4e00\u8f6e\u5de8\u5927\u7684\u6708\u4eae\u548c\u5b81\u9759\u7684\u6ce2\u6d6a\u3002"} +{"id": "5001866", "video_name": "e3b6dcd6-7ba8-577b-873c-cfd5eee04979", "text": "\u4e00\u7fa4\u718a\u732b\u73a9\u6251\u514b\u724c\u6f02\u6d6e\u3002"} +{"id": "0005014", "video_name": "1345e000-d887-559a-af25-cdd677d4deef", "text": "Transformers\u4e2d\u7684\u5927\u9ec4\u8702\u6b63\u5728\u6124\u6012\u5730\u8df3\u821e\u3002"} +{"id": "2005794", "video_name": "df326f8a-7e3b-57ba-a130-22146106fe84", "text": "\u4e00\u53ea\u957f\u811a\u8dbe\u7684\u811a\u50cf\u8718\u86db\u4e00\u6837\u5728\u7f8e\u5473\u7684\u829d\u58eb\u6c49\u5821\u4e0a\u722c\u884c\u3002\u9ad8\u5ea6\u8be6\u7ec6\uff0c4K\uff0cIMAX"} +{"id": "3006407", "video_name": "351f8acb-fe7a-5cd0-9a95-8941b164ef74", "text": "\u5c06\u672a\u6765\u7684\u6218\u6597\u673a\u70b8\u6bc1\uff0c\u98de\u673a\u4fbf\u4f1a\u5760\u6bc1\u5e76\u89e3\u4f53\u3002"} +{"id": "8002407", "video_name": "92acb608-2239-5bd7-93f3-13e91d5113fb", "text": "\u9a6c\u620f\u56e2\u8868\u6f14\uff0c\u52a8\u7269\u72ee\u5b50\u5e26\u7740\u706b\u8fdb\u5165\u5706\u5f62\u821e\u53f0\uff0c\u5185\u90e8\u6709\u72ee\u5b50\u7684\u52a8\u6001\u63cf\u7ed8\u3002"} +{"id": "0005758", "video_name": "20b772a8-12d1-5b1f-94cd-0180d702aa80", "text": "\u521b\u9020\u4e00\u4e2a\u6de1\u84dd\u8272\u548c\u534a\u767d\u8272\u7684\u7532\u58f3\u866b\u6cbf\u7740\u6d77\u8fb9\u8def\u884c\u9a76\u3002"} +{"id": "3003512", "video_name": "2ce4c3c3-f90f-53f9-a540-fd9b8bf020f3", "text": "\u6218\u58eb\u732b\u4e66\u4e2d\u7684\u7070\u8272\u6761\u7eb9"} +{"id": "1003403", "video_name": "3ecb208d-b550-5b8c-b960-c19b4ee967c6", "text": "1910\u5e74\u7684\u7f57\u9a6c\uff0c\u9ed1\u767d\u76f8\u95f4\u7684\u9a6c\u8f66\u5728\u5e7f\u573a\u4e0a\u3002"} +{"id": "3005559", "video_name": "a6ee9584-55c8-53c6-8615-d581a4a67e62", "text": "\u4e00\u53ea\u5e26\u6709\u6050\u9f99\u548c\u718a\u7279\u5f81\u7684\u732b\u3002"} +{"id": "5001725", "video_name": "abc387f7-8771-5047-a142-b4bd27c5effb", "text": "\u5df4\u9ece\u7684\u5efa\u7b51\u7269\u3002\u4fe1\u606f\uff1a\u74e6\u897f\u4e9a\u00b7\u6d1b\u514b\u65af\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003614", "video_name": "4081a601-2821-52c5-a6c8-81fa344130c5", "text": "\u4e00\u4e2a\u7537\u5b69\u4f4e\u5934\u770b\u624b\u673a\uff0c\u5bfc\u81f4\u9a7c\u80cc\u95ee\u9898\u3002"} +{"id": "4004127", "video_name": "1c1d5cc4-b496-514f-9c34-4079387f8650", "text": "\u53d9\u8ff0\u8005\u548c\u5750\u5728\u8f6e\u6905\u4e0a\u7684\u5976\u5976\u5728\u6e05\u6668\u9e1f\u9e23\u4e2d\u4ea4\u8c08\u3002\u60f3\u8c61\u4ed6\u4eec\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u5206\u4eab\u7b11\u58f0\u548c"} +{"id": "7002349", "video_name": "5f052b03-24f7-5966-8959-85046ebbf830", "text": "\u591c\u665a\u5370\u5ea6\u516c\u8def\u4e0a\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u6c7d\u8f66\u3002\n4K UHD\u771f\u5b9e\u3002"} +{"id": "4002139", "video_name": "a2bc0d92-d8e4-5dfa-860f-0f0f8cf1d41d", "text": "\u6c7d\u8f66\u98de\u8d8a\u6e56\u9762\u3002"} +{"id": "4002173", "video_name": "6f6dba51-63b9-58fa-ae25-410acf8aab3a", "text": "\u7535\u5f71\u9662\u540e\u6392\u7684\u89c6\u89d2\u3002"} +{"id": "5001499", "video_name": "b0edf650-d670-5aa6-b14e-139dff30cb35", "text": "\u58eb\u5175\u4eec\u5728\u4e89\u593a\u4e00\u53e3\u6cb9\u4e95\u3002"} +{"id": "4002792", "video_name": "5d267b5b-5873-57ee-a566-f6c0795315a1", "text": "\u4e00\u540d\u5341\u591a\u5c81\u7684\u5973\u5b69\u5728\u80ae\u810f\u7684\u5730\u65b9\u8df3\u821e\u3002"} +{"id": "1006877", "video_name": "7db14757-310a-566f-b1a1-25193c2b4888", "text": "\u4e00\u53ea\u8db3\u7403\u6b63\u5728\u4f53\u80b2\u573a\u5185\u98de\u884c\u3002"} +{"id": "4002627", "video_name": "4c705074-1c14-5cf5-b9a9-126d473c0413", "text": "\u4e00\u5757\u7ec6\u8282\u590d\u6742\u7684DMT\u8d28\u611f\u7684\u7535\u8111\u4e3b\u677f\uff0c\u5145\u6ee1\u7535\u529b\u548c\u5149\u8292\u5728\u8df3\u52a8\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3) \u4fe1\u606f\uff1aovrst"} +{"id": "0006600", "video_name": "2f57b363-ca8e-5933-b99d-b503ff0dcd00", "text": "\u4e00\u90e8\u5173\u4e8e\u4e00\u4e2a\u5927\u5b66\u751f\u5bf9\u81ea\u5df1\u4e13\u4e1a\u4e0d\u6ee1\u610f\u7684\u77ed\u7247\u3002"} +{"id": "4002440", "video_name": "3a72d0c6-19e7-5c0e-a4c2-0962ee82b824", "text": "\u7c89\u8272\u7684\u5929\u7a7a\uff0c\u6709\u9e1f\u513f\u7684\u6b4c\u58f0\u548c\u9752\u8349\u3002"} +{"id": "0005740", "video_name": "206f5519-f7f6-59d7-b785-bb49eadee7a5", "text": "\u5927\u5b66\u8ba1\u7b97\u673a\u79d1\u5b66\u8bfe\u4e0a\uff0c\u60a8\u53ef\u4ee5\u770b\u5230\u5b66\u751f\u7684\u5c4f\u5e55\uff0c\u540c\u65f6\u8fdb\u884c\u76d1\u8003\u8003\u8bd5\u3002\u8bf7\u8ba9\u5b83\u53d8\u5f97\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "0005161", "video_name": "15cfd4f6-f10f-5595-88c8-92b87935f499", "text": "\u7537\u4eba\u6253\u5f00\u4ed6\u7684\u623f\u5b50\uff0c\u9732\u51fa\u4e86\u5de8\u5927\u950b\u5229\u7684\u7259\u9f7f\uff0c\u7535\u5f71\u5f0f\u62cd\u6444\uff0c\u6444\u50cf\u673a\u5411\u53f3\u62cd\u6444\u3002"} +{"id": "8002346", "video_name": "01bc62e4-7679-531c-bb4e-6fb09e2a0d40", "text": "\u63cf\u8ff0\u4e00\u95f4\u5c0f\u77f3\u5934\u6751\u5c4b\u91cc\u7684\u5ba2\u5385\uff0c\u6709\u77f3\u684c\u6905\u3001\u4e00\u53f0\u64ad\u653e\u8db3\u7403\u5361\u901a\u7247\u7684\u7535\u89c6\uff0c16\uff1a9\u3002"} +{"id": "2006511", "video_name": "bf69987a-39e1-513a-816b-4214246eea68", "text": "\u5973\u5b69\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u5b66\u4e60\uff0c\u623f\u95f4\u7684\u80cc\u666f\u662f\u6df1\u591c\u7684\u4f5c\u4e1a\u3002\u732b\u5728\u684c\u5b50\u4e0a\u8db4\u7740\uff0c2D"} +{"id": "3005435", "video_name": "0f7c6e2d-067a-531b-a47c-2fa380050985", "text": "\u665a\u4e0a\uff0c\u9cb8\u9c7c\u8dc3\u51fa\u6d77\u9762\u3002"} +{"id": "4003357", "video_name": "1f62d238-0e8c-564a-9486-d8b924f44bd4", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u7f69\u7684\u7537\u5b50\u5728\u6570\u94b1\u3002\u6d41\u661f\u5728\u80cc\u666f\u4e2d\u98de\u8fc7\u3002"} +{"id": "7003799", "video_name": "d1f8db0b-06cc-50d5-a0bb-e5ae0b6a2a2d", "text": "\u4e00\u4e2a\u53e4\u8272\u53e4\u9999\u3001\u795e\u79d8\u68ee\u6797\u4e2d\u7684\u8ff7\u4eba\u6751\u5e84\uff0c\u4e00\u4e2a\u5e74\u8f7b\u5973\u5deb\u548c\u4e00\u53ea\u95ea\u70c1\u7740\u7eff\u8272\u773c\u775b"} +{"id": "2007835", "video_name": "875de9e8-57e4-5008-a95c-8a0e09028747", "text": "\u8f66\u8f86\u80cc\u666f\u4e0b\u7684\u5347\u8d77\u7684\u592a\u9633"} +{"id": "2003579", "video_name": "f484fec2-9aee-5c65-acd6-bba5ffcf311e", "text": "\u7518\u5730\u5728\u963f\u62c9\u666e\u624e\u6c34\u57df\u4ee5\u5580\u62c9\u62c9\u90a6\u7684\u65b9\u5f0f\u5782\u9493\u3002"} +{"id": "2004446", "video_name": "8895862c-afac-59e4-bcc3-51193cf0e377", "text": "\u53e4\u5e0c\u814a\u5efa\u7b51 \u9644\u4ef61"} +{"id": "8003258", "video_name": "d8a04cc0-13c0-5835-ac42-acc18fb01e3c", "text": "\u5bbd\u5c4f\u5e55\uff0c\u4e00\u4e2a\u5c0f\u800c\u5b89\u9759\u7684\u9547\u5b50\u6df1\u6df1\u5730\u5d4c\u5728\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u4e2d\uff0c\u6709\u4e00\u95f4\u623f\u5b50\uff0c"} +{"id": "2007290", "video_name": "0867c66b-aae1-5ddc-a30e-3715d1b541e3", "text": "\u8db3\u7403\u573a\u706f\u5149\u7167\u5c04\u4e0b\u7684\u5168\u666f\u955c\u5934\uff0c\u4fe1\u606f\u662f\u201c\u52a3\u8d28\u6279\u6b21\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2003053", "video_name": "10980fef-93ed-51e4-bef0-bc00b5960b9d", "text": "\u4f8f\u5112\u4eec\u4e3a\u4e86\u4e00\u7247\u6bd4\u8428\u800c\u4e89\u6597\u3002 \n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "2007726", "video_name": "48ce2c67-d17f-58ac-88c0-9a02acc1dfde", "text": "\u4e00\u53ea\u94ec\u5236\u624b\u4ece\u53cd\u5c04\u6c5e\u7684\u6c60\u5858\u4e2d\u5347\u8d77\u3002"} +{"id": "6002349", "video_name": "a038aa13-4dd6-5a49-881a-fad0e38d5744", "text": "\u767d\u8272\u548c\u516b\u5366\u8272\uff0c\u7f8e\u4e3d\u7684\u3001\u6781\u7b80\u4e3b\u4e49\u7684\u5e02\u573a\uff0c\u96ea\u6797"} +{"id": "1003946", "video_name": "48cd194b-43f7-5adb-8fbc-9144781adf6a", "text": "\u4e00\u4f4d\u767d\u53d1\u5c11\u5973\u5728\u6811\u6797\u4e2d\u8ff7\u8def\u7684\u9010\u5e27\u52a8\u753b\uff0c\u91c7\u75282D\u5f69\u8272\u5236\u4f5c\u3002"} +{"id": "4004147", "video_name": "8a298ccf-9331-5785-a86b-b6c4027d6c03", "text": "\u4e00\u8f86\u5e26\u6709\u9713\u8679\u5e95\u90e8\u706f\u5149\u7684\u8dd1\u8f66\u6b63\u5728\u9a76\u8fc7\u4e00\u5ea7\u6865\uff0c\u5411\u7740\u8fdc\u5904\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u98ce"} +{"id": "3005875", "video_name": "f6b83125-4c63-5587-bfde-cbca3f2f5d6d", "text": "\u4e00\u8258\u6d77\u76d7\u8239\u4e0a\u6709\u4e00\u53ea\u5de8\u578b\u7ae0\u9c7c\uff0c\u4f4d\u4e8e\u4e0a\u65b9\uff0c\u591c\u665a\u3002"} +{"id": "7003381", "video_name": "123c17bf-a058-5271-86d8-b778904b61fd", "text": "\u4e00\u540d\u7a7f\u7740\u897f\u88c5\u521a\u4e0b\u73ed\u7684\u5973\u5b69\u8d70\u8fdb\u4e86\u73b0\u4ee3\u5316\u7684\u6d74\u5ba4\u3002"} +{"id": "1004311", "video_name": "4fb0e81d-6708-5ebb-a542-f0bf06ce95fc", "text": "\u4e00\u4e2a\u70f9\u996a\u8282\u76ee\u98ce\u683c\u7684\u89c6\u9891\uff0c\u4f7f\u7528\u5e73\u5e95\u9505\u716e\u725b\u5976\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\u732b\u513f\u6b63\u5728"} +{"id": "5001228", "video_name": "72e5b759-edfa-5676-8cd4-59be5188da51", "text": "\u4e00\u4e2a30\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u8f86\u98de\u884c\u6c7d\u8f66\u7a7f\u8fc7\u4f26\u6566\u7684\u5929\u9645\u7ebf\u3002"} +{"id": "2003621", "video_name": "9a26e2e1-28fb-5f34-99ce-cd4d96bcfab6", "text": "\u660e\u4eae\u7684\u623f\u95f4\uff0c\u80cc\u666f\u6709\u5927\u578b\u6401\u67b6\uff0c\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u65c5\u884c\u7269\u54c1\u6446\u653e\u5728\u6401\u67b6\u4e0a\uff0c\u5176\u4e2d\u4e00\u4e9b\u7269\u54c1"} +{"id": "1003437", "video_name": "3f8a1652-ce5e-5aac-a1f8-95012844d4fc", "text": "\u4e00\u4e2a\u98ce\u683c\u7c7b\u4f3c\u9759\u9759\u5cad\u7684\u57ce\u5e02\u3002"} +{"id": "0004211", "video_name": "05080a72-00a8-51eb-a1fc-0867898a4b0f", "text": "\u4e00\u7fa4\u6c7d\u8f66\u5de5\u7a0b\u5e08\u6b63\u5728\u7814\u53d1\u65b0\u7684\u521b\u65b0\u5de5\u5177\u3002"} +{"id": "3005402", "video_name": "f0261aae-582f-53a0-848c-8cbad8e928a9", "text": "\u8001\u5987\u4eba\u8eab\u4f53\u975e\u5e38\u7626\uff0c\u91d1\u8272\u7684\u5934\u53d1\uff0c\u5e26\u7740\u75b2\u5026\u7684\u795e\u60c5\u671d\u95e8\u53e3\u8d70\u53bb\uff0c\u53f3\u624b\u5782\u4e0b\u63e1\u7740"} +{"id": "8002120", "video_name": "a84e0372-a782-52ac-be64-29bf30bd0e36", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u98de\u884c\u4e2d\u5728\u5ea7\u4f4d\u4e0a\u5b89\u987f\u7684\u7535\u5f71\u5448\u73b0\u3002"} +{"id": "1006377", "video_name": "74bab963-3a5c-5c71-b607-231d6389d810", "text": "\u8309\u8389\u82b1\u3001\u73ab\u7470\u82b1\u4ee5\u53ca\u5176\u4ed6\u82b1\u6735\u7684\u84b8\u6c7d"} +{"id": "3003086", "video_name": "ded4c6b3-1723-5001-847d-555d7891c642", "text": "\u63cf\u8ff0\u4e00\u4e2a\u4eba\u5728\u6df1\u5ea6\u653e\u677e\u72b6\u6001\u4e0b\u611f\u5230\u81ea\u5df1\u5206\u79bb\u51fa\u8eab\u4f53\uff0c\u8fdb\u5165\u661f\u4f53\u6295\u5c04\u7684\u7ecf\u5386\u3002\u8be6\u7ec6\u63cf\u8ff0\u611f\u53d7\u3001\u770b\u5230\u8eab\u4f53\u8eba"} +{"id": "2006825", "video_name": "d1d70da6-b15e-5e7b-a26a-00a1604b2159", "text": "\u8c01\u7684\u4eb2\u621a\u662f\u901a\u8fc7\u62a5\u7eb8\u5f97\u77e5\u7684\uff1f"} +{"id": "7004851", "video_name": "f5229fcd-26d6-54b7-ae03-af4f05a31071", "text": "\u7a97\u5916\u6b63\u5728\u4e0b\u96e8\u3002\u4e00\u4e2a\u5c0f\u5973\u5b69\u5750\u5728\u7a97\u524d\u7684\u684c\u5b50\u524d\u505a\u529f\u8bfe\u3002\u5979\u65c1\u8fb9\u6709\u4e00\u676f\u5192\u7740\u70ed\u6c14\u7684"} +{"id": "6002855", "video_name": "5a9a3f9e-b22e-534c-bd66-c227cfa79a72", "text": "60\u5e74\u4ee3\u4e13\u8f91\u5c01\u9762\u300a\u9ad8\u53e4\u76d1\u72f1\u300b\u5728Hoodoo\u6c99\u6f20\u4e2d\u3002"} +{"id": "2004494", "video_name": "c0e9cfa0-b00e-5023-b76f-c1bc46449098", "text": "\u5728\u5df4\u5c14\u7684\u6469\u5e02\u7684\u7ea2\u706f\u533a\u9644\u8fd1\uff0c\u665a\u4e0a\u5f88\u665a\u5f88\u6697\uff0c\u8857\u9053\u4e24\u65c1\u6392\u5217\u7740\u6210\u4eba\u5a31\u4e50\u5e97\u3002"} +{"id": "6003248", "video_name": "eae5fb37-3818-5a94-ad8a-7e0ab2438ca5", "text": "\u4e00\u573a\u731b\u70c8\u7684\u98ce\u66b4\u88ad\u51fb\u4e86\u5f97\u514b\u8428\u65af\u5dde\u58a8\u83f2\u5c0f\u9547\u3002"} +{"id": "0005694", "video_name": "1f94176f-2714-5aa2-9b24-ce058c211751", "text": "\u52c7\u6562\u7684\u72ee\u5b50\u91cc\u5965\u9762\u5bf9\u7740\u722a\u5b50\u53d7\u4f24\uff0c\u4f46\u4ed6\u7684\u51b3\u5fc3\u4ecd\u7136\u575a\u5b9a\u4e0d\u79fb\u3002"} +{"id": "3006229", "video_name": "4495118a-cd30-552f-ad07-fde7ed862d11", "text": "1960\u5e74\u4ee3\u6709\u7a7a\u767d\u6807\u9898\u7684\u8ff7\u5e7b\u62a5\u7eb8\u3002"} +{"id": "7002756", "video_name": "77c0d6af-8b80-51ec-b70d-1675044ceaa2", "text": "\u8001\u5f71\u7247\u4e2d\uff0c\u516c\u4f17\u6f14\u8bb2\u8005\u7537\u5b50\u7ad9\u5728\u9ea6\u514b\u98ce\u524d\u8bb2\u8bdd\u3002"} +{"id": "2006985", "video_name": "9f08e135-3139-5f40-9d86-45905927487b", "text": "\u5236\u4f5c\u4e00\u6bb530\u79d2\u7684\u89c6\u9891\uff0c\u5c55\u793a\u5b87\u822a\u5458\u5728\u571f\u661f\u4e0a\u884c\u8d70\u7684\u573a\u666f\u3002\u89c6\u9891\u9700\u6e05\u6670\u5c55\u793a\u571f\u661f\u7684\u73af\u4e0e\u536b\u661f\u3002"} +{"id": "1003894", "video_name": "47ceb4b0-8431-5012-941c-7dda8d2639e3", "text": "\u4f5b\u9640\u5728\u5bfa\u5e99\u91cc\u5fae\u7b11\uff0c\u7ec6\u8282\u6e05\u6670\u53ef\u89c1\uff0c\u9633\u5149\u4e0b\u7684\u5168\u666f\u662f\u9ad8\u54c1\u8d28\u7684\uff0c\u9ad8\u5ea6\u4e3a8K\u3002"} +{"id": "3005369", "video_name": "91f6ab19-034d-557c-9ec6-c344be1780c6", "text": "\u5728Quezon\u57ce\u5e02\u7684\u4e2d\u5fc3\uff0c\u66fe\u7ecf\u6709\u4e00\u6761\u81ed\u540d\u662d\u8457\u7684\u9053\u8def\u53eb\u505aBalete Drive\u3002"} +{"id": "7002654", "video_name": "fd42dc4e-62e2-5673-b6e4-cfc6ca272f04", "text": "\u8377\u82b1\u5468\u56f4\u7684\u8774\u8776\u548c\u871c\u8702"} +{"id": "1005262", "video_name": "60cf6595-482d-5a48-84af-9c9ad39d5514", "text": "\u524d\u4efb\u548c\u4e24\u5934\u516c\u725b\u3002\u80cc\u666f\u6b63\u5728\u571f\u5730\u4e0a\u5f62\u6210\u3002"} +{"id": "2003067", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "\u8ba9\u6c34\u6d41\u52a8\uff0c\u5c31\u50cf\u98ce\u7a7f\u8fc7\u6811\u6797\u4e00\u6837\u3002"} +{"id": "4002374", "video_name": "5add4aac-69f1-5372-bd40-5f06c3f4f381", "text": "\u4e09\u7ef4\u5361\u901a\u602a\u7269\u5728\u767d\u8272\u80cc\u666f\u4e2d\u3002"} +{"id": "2005104", "video_name": "57c1cec7-d471-58d0-9cbb-e085068cc3e6", "text": "\u4e00\u53f0\u65e7\u6536\u97f3\u673a\u53d8\u6210\u4e86CD\uff0c\u7136\u540e\u53d8\u6210\u4e86\u624b\u673a\u3002"} +{"id": "8003256", "video_name": "ae481327-abcf-5c9f-9bae-ca75d7133059", "text": "3D\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u53ef\u7231\u513f\u7ae5\u5728\u8fc7\u5c71\u8f66\u4e0a\u5c16\u53eb\u548c\u7b11\u58f0\u3002"} +{"id": "7004911", "video_name": "4eb3fd0e-6daf-56ca-8360-b7badf108a76", "text": "\u4e00\u4e2a\u82f9\u679c\u53d8\u6210\u4e00\u672c\u4e66\u3002"} +{"id": "0006015", "video_name": "250e344a-0e98-58cf-b4b4-bc68f1061db4", "text": "\u7f8e\u5c11\u5973\u4eceSUV\u8f66\u4e0a\u4e0b\u6765\u7684\u52a8\u6f2b\u3002"} +{"id": "2005778", "video_name": "b67363c4-76e1-5974-840d-9e6aeb0f9aef", "text": "\u4e00\u53ea\u732b\u5728\u8349\u5730\u4e0a\u559d\u8336\u3002"} +{"id": "7003959", "video_name": "ff2294fc-3d22-5291-800b-2a338ff64118", "text": "\u4e00\u4e2a\u6234\u7740\u7535\u5b50\u53e3\u7f69\u7684\u7537\u4eba\uff0c\u56e0\u4e3a\u7a7a\u6c14\u6c61\u67d3\u3002"} +{"id": "1006964", "video_name": "7f76fd7b-e765-55d0-96d9-f11f2463c835", "text": "\u63cf\u8ff0\u4e00\u53ea\u540d\u53eb\u8428\u7c73\u7684\u6df7\u5408\u677e\u9f20\u4e0e\u5176\u4ed6\u677e\u9f20\u4e0d\u540c\uff0c\u56e0\u4e3a\u5b83\u6709\u4e00\u4e2a\u79d8\u5bc6\u3002\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "3005514", "video_name": "49363084-2c4a-5ac6-8689-417520084f00", "text": "\u9ea6\u5f53\u52b3\u7684\u4e00\u540d\u5458\u5de5\u5c06\u5e26\u6709\u85af\u6761\u7684\u6c49\u5821\u653e\u5728\u6258\u76d8\u91cc\u9012\u7ed9\u4e00\u4e2a\u7537\u4eba\u3002"} +{"id": "7004766", "video_name": "f954946a-7210-5b44-a122-cf22829abc39", "text": "\u82b1\u56ed\u91cc\u6709\u4e00\u68f5\u6811\uff0c\u4e0a\u9762\u6302\u7740\u82f9\u679c\uff0c\u8fd9\u68f5\u6811\u770b\u8d77\u6765\u6d53\u836b\u853d\u65e5\u3002"} +{"id": "3005196", "video_name": "0f2f3f4d-894d-5844-9b10-e4838ff2b278", "text": "\u88ab\u7fa4\u5c71\u73af\u62b1\u7684\u6e56\u4e2d\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u88f8\u6cf3\u3002"} +{"id": "5001403", "video_name": "002e66f7-7b92-5cea-b64d-80b638ede269", "text": "\u6df7\u5408\u8d85\u7ea7\u82f1\u96c4\u548c\u8d85\u7ea7\u53cd\u6d3e\u7684\u526a\u8f91\u753b\u9762\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5c55\u793a\u4e86\u4ed6\u4eec\u72ec\u7279\u7684\u80fd\u529b\uff0c\u5feb\u901f\u5730\u8fde\u7eed\u51fa\u73b0\u3002\u95ea"} +{"id": "8001498", "video_name": "1655d611-372d-5222-bee1-13f2bcfe631b", "text": "\u592a\u9633\u3001\u526a\u5f71\u3001\u8001\u4eba\u3001\u5b64\u72ec\u7684\u573a\u666f\u3001\u5b64\u72ec\u7684\u80cc\u5f71\u3001\u4f73\u80fd\u76f8\u673a\u300135\u6beb\u7c73\u955c\u5934\u3001F2.8\u5149"} +{"id": "1003944", "video_name": "48c58fa8-3e93-5aca-b40d-9cd1f5b08d60", "text": "\u4e00\u7247\u5355\u72ec\u7684\u53f6\u5b50\u5728\u7eff\u8272\u80cc\u666f\u4e0a\u98d8\u8fc7\u5c4f\u5e55\uff0c\u5c31\u50cf\u300a\u5fc3\u8df3\u505c\u6b62\u300b\u7535\u5f71\u3002"} +{"id": "4003743", "video_name": "f5238ced-6e03-526a-854b-ec8c6440bd95", "text": "\u8ba9\u4eba\u4eec\u56db\u5904\u8d70\u52a8\uff0c\u8ba9\u5de8\u8f6e\u8fd0\u8f6c\u3002\u5728\u89c6\u9891\u4e2d\u6dfb\u52a0\u4e00\u4e9b\u98ce\u6548\u679c\uff0c\u5c1d\u8bd5\u5728\u89c6\u9891\u8fdb\u884c\u65f6\u8fdb\u884c\u7f29\u653e\u3002"} +{"id": "4004449", "video_name": "7e589fb8-abb0-5b36-91eb-8e6615c30ad8", "text": "\u6c99\u57fa\u62c9\u4f5c\u4e3a\u590d\u53e4\u6e38\u620f\u89d2\u8272\uff0c\u8857\u5934\u9738\u738b2\u7684\u7f8e\u5b66\uff0c\u51c6\u5907\u6218\u6597\u7684\u59ff\u6001\uff0c\u5411\u524d\u548c\u5411\u540e\u79fb\u52a8\uff0c\u5168\u8eab\u5de6"} +{"id": "5001368", "video_name": "510ea477-808c-5f1b-9b23-0b8e62556307", "text": "\u63cf\u8ff0\u4e00\u500b\u4eba\u5750\u5728\u96fb\u8166\u684c\u524d\uff0c\u8f38\u5165\u641c\u5c0b\u8a5e\u5230Google\u641c\u5c0b\u6b04\u3002"} +{"id": "0004429", "video_name": "08ca5086-4407-53d5-a50e-ca0c8df1a5eb", "text": "CW\u95ea\u7535\u4fa0\u6df7\u5408\u8759\u8760\u4fa0\u7535\u5f718k\u3002"} +{"id": "0005303", "video_name": "1827ccbf-de0d-58e6-a57e-6407576e2ce8", "text": "\u7537\u58eb\u7a7f\u7740\u897f\u88c5\uff0c\u900f\u8fc7\u529e\u516c\u5ba4\u7684\u7a97\u6237\u4ef0\u5934\u770b\u7740\u4e16\u754c\uff0c\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "0003243", "video_name": "39e4136b-4c41-5ab7-85fc-42794ebfc41e", "text": "\u8682\u8681\u5728\u8f66\u4e0a\u722c\u884c\uff0c\u4ee5\u8f66\u4e3a\u80cc\u666f\uff0c\u903c\u771f\uff0c\u80cc\u666f\u6a21\u7cca\u3002"} +{"id": "1006021", "video_name": "6ea2928b-0601-5b0f-8845-4eda0733fba8", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a19\u4e16\u7eaa\u7684\u5c3c\u59d1\uff0c\u7f55\u89c1\u7684\u7535\u5f71\u7d20\u6750\u3002"} +{"id": "8002368", "video_name": "da2f0f9f-e280-56ea-89ab-fcf6bf9dae95", "text": "\u751f\u6210\u4e00\u5f20\u5c0f\u5973\u5b69\u7684\u753b\u9762\uff0c\u4e2d\u592e\u753b\u9762\uff0c\u8fd1\u666f\u62cd\u6444\uff0c\u901a\u8fc7\u6444\u50cf\u673a\u4e0e\u89c2\u4f17\u8fdb\u884c\u773c\u795e\u4ea4\u6d41\u3002\u6cbf\u7740\u4e00\u6bb5\u957f\u957f"} +{"id": "3006649", "video_name": "16b73856-9b12-5173-9d7c-4d5a4601e2e6", "text": "\u60f3\u8c61\u4e00\u4e0b\u5728\u592a\u7a7a\u6b96\u6c11\u5730\u91cc\u957f\u5927\u7684\u5b69\u5b50\u4eec\uff0c\u4ed6\u4eec\u4ef0\u671b\u661f\u7a7a\uff0c\u68a6\u60f3\u7740\u65b0\u7684\u5b87\u5b99\u5192\u9669\u3002\u8fd9"} +{"id": "3003108", "video_name": "b6c4b2ee-b4aa-5bfb-8980-c9e5db54675e", "text": "\u6d41\u884c\u6587\u5316\u4e2d\u7684\u6807\u5fd7\u6027\u5f62\u8c61\u4ee5\u8d85\u73b0\u5b9e\u7684\u65b9\u5f0f\u878d\u5408\u4e86\u6d41\u884c\u827a\u672f\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u98ce\u683c\uff0c\u53d8\u5f62\u548c\u626d\u66f2\u3002"} +{"id": "7003269", "video_name": "3d9d5cc8-e8e8-5a69-8ce0-f0d4a19d50f2", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6253\u9f13\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0006319", "video_name": "2a936afc-7dbe-5365-bd97-19e1d835072f", "text": "\u5973\u4eba\u5728\u8bfb\u5854\u7f57\u724c\u6f2b\u753b\u3002"} +{"id": "2006501", "video_name": "3d725239-e000-59a9-ae04-de16955de29e", "text": "\u5973\u5b69\u77ed\u53d1\u7ad9\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u8fb9\u7684\u7167\u7247\uff0c\u4f5c\u8005\u662fHideaki Hamada\u3002"} +{"id": "8002677", "video_name": "550f5f50-ba5c-5241-9232-733e439b528c", "text": "\u667a\u6167\u7684\u8001\u4eba\uff0c\u957f\u7740\u4e00\u5934\u84ec\u677e\u7684\u80e1\u987b\uff0c\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\uff0c\u7ad9\u5728 Mia \u65c1\u8fb9\u3002"} +{"id": "0004420", "video_name": "089f4223-ccd4-5f80-b4cd-581adac485c5", "text": "\u4e00\u5bf9\u7f8e\u4e3d\u7684\u7537\u5973\u9762\u5bf9\u9762\u79bb\u5a5a\uff0c\u5341\u5206\u60b2\u4f24\uff0c\u543b\u522b\uff0c\u5341\u79d2\u949f\u52a8\u4f5c\u3002"} +{"id": "2005255", "video_name": "32b2ef23-e96e-51ad-b197-3f9f7ab2733f", "text": "\u4e00\u500b\u7528\u9ecf\u571f\u88fd\u4f5c\u7684\u9ab7\u9acf\u9aa8\u67b6\uff0c\u5e36\u6709\u878d\u5316\u7684\u9ecf\u571f\u76ae\u819a\u3002"} +{"id": "8003564", "video_name": "bc6e38b5-f6df-539a-9f60-3038b4f7ecdc", "text": "\u7537\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u7535\u89c6\uff0c\u4e00\u8fb9\u8bf4\u8bdd\u4e00\u8fb9\u5634\u5df4\u52a8\u7740\u3002"} +{"id": "6004424", "video_name": "90b5be0c-d592-5ddc-896a-dab120106835", "text": "\u5728\u6708\u5149\u4e0b\uff0c\u60c5\u4fa3\u624b\u7275\u624b\uff0c\u5728\u5929\u7a7a\u7684\u80cc\u666f\u4e0b\u62cd\u7167\u3002"} +{"id": "0005257", "video_name": "175d3f7a-2548-56ee-b50d-3934793cab32", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u793e\u533a\uff0c\u623f\u5c4b\u6392\u5217\u5728\u8857\u9053\u4e24\u4fa7\u3002\u4f4f\u5728\u8fd9\u91cc\u7684\u662f\u4e00\u4e2a\u540d\u53eb\u9a6c\u514b\u65af\u7684\u5e74\u8f7b\u7537\u5b69\u3002"} +{"id": "1005576", "video_name": "66a474a0-fdea-51ba-a975-3eca6c9ac2b5", "text": "\u6574\u4f53\u533b\u751f\u4e0e\u89c2\u4f17\u4ea4\u8c08\u3002"} +{"id": "0003991", "video_name": "013dbc07-c200-5bb1-b00f-462dde4a6c1d", "text": "\u521b\u5efa\u4e00\u5f20\u84dd\u7cbe\u7075\u7684\u7167\u7247\u3002"} +{"id": "2005294", "video_name": "7d4efb3d-0da4-5d01-a769-bd3d3dd8d756", "text": "\u83b1\u65af\u85af\u7247\uff0c\u5c4e\u5473\u85af\u7247\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "6004021", "video_name": "831996e2-4123-5b17-8511-cbdb42f185fe", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u795e\u9ad8\u4e3e\u7740\u4e00\u4e2a\u6c34\u76c6\u3002"} +{"id": "0005770", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18\u5c81\u7684\u5973\u5b69\u6ca1\u6709\u80f8\u90e8\uff0c\u4e5f\u6ca1\u6709\u7a7f\u7740\u3002\n\nSource sentence: I am looking forward to your reply. \n\u6211\u671f\u5f85\u7740\u60a8\u7684\u56de\u590d\u3002"} +{"id": "2005551", "video_name": "91083e61-5a26-50ee-b8c1-f861a80104b6", "text": "\u827e\u4e3d\u897f\u5a05\u638c\u63a7\u7740\u56db\u5927\u5143\u7d20\uff1a\u706b\u3001\u6c34\u3001\u571f\u548c\u7a7a\u6c14\u3002"} +{"id": "6004186", "video_name": "c596571b-9be2-58e3-b8b9-663a5f1e8c81", "text": "\u4e00\u53ea\u706b\u72fc\u5411\u592a\u9633\u568e\u53eb\u3002"} +{"id": "2003304", "video_name": "1cdb5594-10de-58a8-891f-eb17d6573a3c", "text": "\u5df4\u65af\u594e\u7279\u98ce\u683c\u7684\u6cb9\u753b\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5b8c\u6574\u7684\u7537\u4eba\u5728\u8ffd\u9010\u4e00\u53ea\u88c5\u6ee1\u949e\u7968\u7684\u624b\u63d0\u7bb1\uff0c\u5448\u5782\u76f4"} +{"id": "1005273", "video_name": "60f94b4e-7da0-5830-bd89-5cf12f607870", "text": "\u5728\u6d77\u4e0a\u7684\u6643\u52a8\uff0c\u6ce2\u6d9b\u6c79\u6d8c\uff0c\u8239\u53ea\u4e0a\u4e0b\u98a0\u7c38\u3002"} +{"id": "1005187", "video_name": "5f65f838-1507-562e-b8a6-466e3157edb6", "text": "\u7ea0\u6b63\u5927\u4eba\u4eec\u6240\u72af\u7684\u9519\u8bef\u3002"} +{"id": "8002713", "video_name": "a8b2bf82-ab85-5a68-a748-e7a67d515fe4", "text": "\u57281883\u5e74\u5fb7\u514b\u8428\u65af\u5dde\u9677\u5165\u6291\u90c1\u7684\u5973\u5b69\u3002"} +{"id": "6003991", "video_name": "b61f2f86-1e9a-50ef-8491-af2f03741c00", "text": "\u5b87\u5b99\u4e2d\u79fb\u52a8\u7684\u661f\u8f68"} +{"id": "3003154", "video_name": "11dde38a-cf4c-5ae9-8cc5-8426b8aaa92f", "text": "\u72fc\u6b63\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "2004843", "video_name": "fc4f78de-4826-52fe-8f2a-991637b83e37", "text": "\u96fe\u8499\u8499\u7684\u88ab\u9057\u5fd8\u7684\u57ce\u5e02\uff0c\u5750\u843d\u5728\u5580\u5c14\u5df4\u9621\u5c71\u8109\u7684\u9876\u7aef\uff0c\u5728\u591c\u665a\u3002"} +{"id": "2004287", "video_name": "416d1d81-94c4-596d-bfe5-390c31ff2528", "text": "\u953b\u70bc\u671f\u95f4\u4fdd\u6301\u6c34\u5206\u6444\u5165\u53ef\u4ee5\u63d0\u9ad8\u8868\u73b0\u548c\u5361\u8def\u91cc\u71c3\u70e7\u3002"} +{"id": "4003868", "video_name": "f4af9de0-cddb-534b-b9f8-d4afdfd52175", "text": "\u53bb\u57ce\u5e02\u7684\u706b\u8f66\uff0c\u5b83\u65cb\u8f6c\u7684\u8f66\u8f6e\u548c\u8f66\u4e0a\u4eba\u4eec\u7684\u6b4c\u58f0\u3002"} +{"id": "7003200", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "\u5973\u4eba\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u6211\u4eec\u4ece\u80cc\u540e\u770b\u5230\u5979\uff0c\u514b\u91cc\u59c6\u7279\u98ce\u683c\u3002"} +{"id": "2004390", "video_name": "e04ed8e6-1fbe-5fae-bcce-de5e5bc1e8f5", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u62e5\u6709\u5f69\u8679\u8272\u7684\u957f\u53d1\u548c\u6e05\u6f88\u7684\u773c\u775b\uff0c\u540d\u53ebAisa\uff0c\u5927\u773c\u775b\uff0c\u7f8e\u4e3d"} +{"id": "1003861", "video_name": "4723228f-5bd2-5d5f-ad38-beef928d2818", "text": "\u5934\u6234\u515c\u5e3d\u7684\u7537\u5b50\uff0c\u773c\u4e2d\u706b\u5149\u95ea\u70c1\uff0c\u53cc\u624b\u4ea4\u53c9\uff0c\u5b88\u62a4\u5728\u82cf\u683c\u5170\u9ad8\u5730\u7684\u5a01\u5c14\u58eb\u57ce"} +{"id": "0003246", "video_name": "39f3b7d7-539c-5e3b-8966-bce2f2631a2f", "text": "\u9e1f\u513f\u7684\u773c\u4e2d\u4e16\u754c"} +{"id": "7003861", "video_name": "d6ebae08-ed2a-55f2-be12-617f11e4ab0d", "text": "\u5e74\u8f7b\u7537\u5b50\u72ec\u81ea\u5750\u5728\u9ed1\u6697\u4e2d\uff0c\u4f4e\u7740\u5934\uff0c\u7528\u624b\u906e\u4f4f\u4e86\u8138\u3002\u9010\u6e10\u5411\u4e0a\u6162\u6162\u653e\u5927\u7684\u771f"} +{"id": "7002643", "video_name": "be9e48c0-6e4c-59cf-b76e-caec49cd225a", "text": "\u4e00\u79cd\u90aa\u6076\u7684\u5168\u9ad8\u6e05\u6f2b\u753b\u53cd\u6d3e\u77f3\u6cb9\u52a0\u70ed\u7cfb\u7edf\u3002"} +{"id": "3003677", "video_name": "f2941bf0-a8dc-51b8-9a8f-2b8af02b8204", "text": "\u4e00\u4e2a\u7537\u673a\u4fee\u6b63\u5728\u4fee\u7406\u4e00\u8f86\u5b9d\u9a6c\u6c7d\u8f66\u7684\u53d1\u52a8\u673a\uff0c\u6444\u50cf\u673a\u62c9\u8fd1\uff0c\u52a8\u4f5c3\u3002"} +{"id": "6002245", "video_name": "330579c6-d5e3-56c8-8ce1-59984f443f74", "text": "\u4e00\u4e2a\u6325\u624b\u7684\u7537\u4eba\uff0c\u957f\u7740\u68d5\u8272\u7684\u957f\u53d1\u3002\u4ee5\u8fea\u58eb\u5c3c\u300a\u9b54\u6cd5\u5947\u7f18\u300b\u7684\u98ce\u683c\u4e3a\u84dd\u672c\u3002"} +{"id": "3003440", "video_name": "8f3fe27e-98a7-5d52-9117-4b0319a51ae2", "text": "\u4e00\u4e2a\u53e4\u8001\u8d85\u5e02\u91cc\u7684\u72ed\u7a84\u901a\u9053\uff0c\u8d27\u67b6\u7740\u706b\u4e86\u3002"} +{"id": "8003016", "video_name": "d792ab46-cd73-56b2-8d4c-29de6d7f2a11", "text": "CKPITS\u548cErrol Hem\u671d\u7740\u6444\u50cf\u673a\u7b28\u91cd\u5730\u79fb\u52a8\uff0c\u6bcf\u4e2a\u4eba\u90fd\u4f1a\u51fa\u73b0\u95ea\u70c1\u548c\u805a\u7126\u4e0d\u51c6\uff0c\u7535\u5f71\u822c\u7684\uff0c8k"} +{"id": "8003628", "video_name": "c76e5fd1-88c2-58ee-afde-0f39b5e1895f", "text": "\u4e00\u4e2a\u767d\u80e1\u5b50\u8001\u4eba\u7ad9\u5728\u5c71\u4e0a\uff0c\u62cd\u7740\u624b\uff0c\u4ece\u4ed6\u7684\u624b\u4e2d\u5347\u8d77\u95ea\u7535\uff0c\u51b2\u5411\u591c\u7a7a\u3002"} +{"id": "2003042", "video_name": "dc5aec39-de5a-5953-b25a-dbbe0cc69145", "text": "\u4e00\u4e2a\u5fcd\u8005\u661f\u661f\u7684\u7231\u5fc3\u87ba\u65cb\u5206\u5f62\u56fe\u50cf\u8fd0\u52a8\u3002"} +{"id": "7003150", "video_name": "91a7768b-ee67-500f-b941-b3fcde67823a", "text": "\u5206\u79bb\u7684\u6c89\u9ed8\uff0c\u5728\u5b64\u72ec\u7684\u62e5\u62b1\u4e2d\u56de\u54cd\u3002"} +{"id": "2006429", "video_name": "1258ed3a-ba32-5bf7-bea4-66e3e62b534e", "text": "\u95ea\u4eae\u6781\u7b80\u4e3b\u4e49\u7ea2\u8272\u7684\u9f99\uff0c\u98de\u8d8a\u53e4\u8001\u7684\u571f\u5730\u3002"} +{"id": "0006416", "video_name": "2bfab11a-72a9-5739-bad9-7ecf44458a50", "text": "\u5916\u56fd\u4eba\u6765\u5230\u5706\u660e\u56ed\uff0c\u770b\u5230\u5b8f\u4f1f\u7684\u53e4\u5efa\u7b51\uff0c\u611f\u89c9\u50cf\u7f6e\u8eab\u4e8e\u4ed9\u5883\u3002"} +{"id": "8001938", "video_name": "d33fe45f-d2e5-596d-8c67-73feb43c9cfd", "text": "\u4e1c\u4eac\u57ce\u5e02\u666f\u89c2\u5d29\u584c\u7684\u65f6\u95f4\u6d41\u901d\u3002"} +{"id": "0006035", "video_name": "256a7450-7c2f-589a-ae4f-df6d9e776714", "text": "\u8bf4\u6cd5\uff1a\u8bf4\u5531\u6b4c\u624b\u53d8\u6210\u8d85\u7ea7\u82f1\u96c4\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0004048", "video_name": "023d602e-f556-5bc0-8cc2-494fb2bbbc67", "text": "\u5217\u592b\u00b7\u6258\u5c14\u65af\u6cf0\u5728\u8d5b\u535a\u670b\u514b\u4e16\u754c\u7528\u5e73\u677f\u7535\u8111\u5199\u4f5c\uff0c\u573a\u666f\u4eff\u4f5b\u6765\u81ea\u300a\u94f6\u7ffc\u6740\u624b"} +{"id": "1003378", "video_name": "3e474b85-bd0e-5c69-8709-d0f44727a311", "text": "\u4e00\u6247\u95e8\u56e0\u4e3a\u98ce\u7684\u731b\u70c8\u800c\u731b\u7136\u6253\u5f00\u3002"} +{"id": "0003474", "video_name": "3e423cdc-8f55-5018-84d8-846a93664735", "text": "\u4ece\u706b\u4e0e\u786b\u78fa\u7684\u6e56\u4e2d\u6d8c\u51fa\u6765\u7684\u52a8\u6f2b\u6076\u9b54\u3002"} +{"id": "6003536", "video_name": "9d8313e4-54c0-575c-be81-16d2f7e47d7f", "text": "\u9526\u9ca4\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c\u52a8\u753b\u98ce\u683c\u50cf\u5409\u535c\u529b\u3002"} +{"id": "1004016", "video_name": "4a6e0f0a-b640-524b-9f5a-04a142b1230a", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5973\u5b69\u5728\u9152\u5427\u91cc\u51b2\u5496\u5561\uff0c\u7f8e\u4e3d\u7cbe\u81f4\uff0c\u767d\u8272\u957f\u53d1\u98d8\u52a8\uff0c\u5496\u5561\u6b63\u5728\u6cb8"} +{"id": "2005957", "video_name": "6f3d6714-ad72-5cb4-9982-7498b027eac5", "text": "\u7535\u5382\u7684\u7a97\u6237\u5728\u591c\u665a\u53d1\u51fa\u84dd\u8272\u7684\u5149\u8292\uff0c\u88ab\u68ee\u6797\u6240\u73af\u7ed5\uff0c\u4fef\u77b0\u7740\u4e0b\u65b9\u3002\u9644\uff1a1\u4e2a"} +{"id": "3006648", "video_name": "1b583120-dd57-532c-959a-a7e5ddcfcd16", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u6218\u573a\u4e0a\u884c\u8d70\u3002"} +{"id": "1005730", "video_name": "69678951-8986-5f9a-9629-583d2e086776", "text": "\u5e73\u8861\u88ab\u6253\u7834\u4e86\u3002\u6c61\u67d3\u6467\u6bc1\u4e86\u8fd9\u4e2a\u5929\u5802\u3002"} +{"id": "0004123", "video_name": "0397e6a0-67ba-5aa0-8985-f6557da88601", "text": "\u5236\u4f5c\u7c7b\u4f3c\u7684\u4e1c\u897f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004971", "video_name": "d3a28591-5d6a-51f6-ad9f-db752ada66f3", "text": "\u6f02\u4eae\u7684\u5361\u901a\u5973\u5b69\u7559\u7740\u68d5\u8272\u7684\u5934\u53d1\u7b49\u5f85\u4e08\u592b\uff0c\u70f9\u996a\u7f8e\u5473\u7684\u98df\u7269\u5e76\u601d\u8003\u7231\u60c5\u3002"} +{"id": "3005820", "video_name": "f8eae8de-e851-5fd8-a653-250afc0864bc", "text": "\u4e00\u95f4\u975e\u5e38\u660f\u6697\u7684\u623f\u95f4\u7684\u52a8\u753b\uff0c\u7a81\u7136\u5f00\u4e86\u4e00\u76cf\u706f\uff0c\u623f\u95f4\u53d8\u5f97\u660e\u4eae\u3002\u4f60\u770b\u5230\u4e00\u4e2a\u6c99\u53d1\u548c\u4e00\u4e2a\u684c\u5b50\uff0c\u8fd8"} +{"id": "5001414", "video_name": "0d680760-a6ac-52a3-bfd8-9e106f9081b9", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u80fd\u91cf\u7684\u7537\u4eba\uff0c\u5728\u4e00\u4e2a\u9690\u853d\u7684\u6d77\u6ee9\u4e0a\u8868\u6f14\u4ed6\u7684\u745c\u4f3d\u52a8\u4f5c\uff0c\u80cc\u666f\u662f\u5915\u9633\u4e0b\u7684\u666f\u8c61\uff0c"} +{"id": "8002888", "video_name": "7e8afede-3dda-525e-97b2-a7d99c0022ab", "text": "\u73b0\u5b9e\u624b\u6301\u6444\u50cf\u673a\u8bb0\u5f55\u4e0bUFO\u649e\u51fb\u5efa\u7b51\u7684\u753b\u9762\u3002"} +{"id": "3006241", "video_name": "49aafd72-bb1c-5b35-8486-137c10353b90", "text": "\u4e00\u53f0\u62d6\u62c9\u673a\u5728\u4e00\u7247\u79cd\u7740\u7389\u7c73\u7684\u519c\u573a\u91cc\uff0c\u5468\u56f4\u6709\u5976\u725b\uff0c\u903c\u771f\uff0c8K\uff0cHDR\uff0c\u7535\u5f71\u8272\u8c03\u3002"} +{"id": "7003807", "video_name": "08747f46-1fd4-5b67-b46a-b66d3153f8a9", "text": "\u72d0\u72f8\u8d70\u5411\u4eba\uff0c\u5403\u4e86\u4e00\u6839\u9aa8\u5934\u3002"} +{"id": "6003872", "video_name": "1c4daed0-3bfc-57ae-b7b3-7ae6d0b043c2", "text": "3D\u8682\u8681\u7279\u653b\u961f\u6e38\u620f\u89d2\u8272\u6316\u6398\u3002"} +{"id": "0003868", "video_name": "44eb5f51-450b-589d-bd83-3ad4fbe11840", "text": "6\u79cd\u63d0\u9ad8\u65e0\u7ebf\u5145\u7535\u5668\u7ebf\u5708\u529f\u80fd\u7684\u65b9\u6cd5\u3002"} +{"id": "4004613", "video_name": "a736cf34-4c8a-5d75-bd9d-9b8556e18607", "text": "\u5f7c\u5f97\u542c\u4ece\u8036\u7a23\u7684\u8bdd\uff0c\u6295\u4e0b\u6e14\u7f51\u3002"} +{"id": "5001934", "video_name": "57e73731-0585-540a-a9e4-a460d10ce2af", "text": "\u7a7f\u7740\u5bbd\u677e\u8fd0\u52a8\u88e4\u548c\u8fde\u5e3d\u886b\u7684\u7537\u5b50\u5750\u5728\u6e56\u8fb9\u7801\u5934\u5782\u9493\uff0c\u6e56\u7554\u6e14\u6751\u5ca9\u77f3\u677e"} +{"id": "1005071", "video_name": "5d943b61-580f-55d9-a37a-9db4489b8d97", "text": "\u5b83\u901a\u8fc7\u8d85\u73b0\u5b9e\u4e3b\u4e49\u56fe\u50cf\u548c\u7cbe\u7ec6\u7684\u79d1\u5b66\u6444\u5f71\u53d8\u5f97\u6829\u6829\u5982\u751f\u3002"} +{"id": "2003983", "video_name": "6b684cfd-a2c3-5950-9fdc-a05e63e51aef", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u88ab\u5168\u606f\u5c4f\u5305\u56f4\u7684\u7537\u4eba\uff0c\u65bd\u5c55\u6570\u5b57\u9b54\u6cd5\uff0c\u6df1\u5165\u6c89\u6d78\u5728\u63a7\u5236\u7684\u7f51\u7edc\u4e2d\u3002"} +{"id": "4003451", "video_name": "77e17d1e-dea9-5b3f-8de1-b7932fd1d052", "text": "\u5de8\u5927\u7684Roblox\u89d2\u8272\u6467\u6bc1\u4e86\u4e00\u4e2a\u57ce\u5e02\u3002"} +{"id": "6003420", "video_name": "6f611223-795f-5980-890f-0698220115b7", "text": "\u9ed1\u767d\u753b\uff0c\u4eba\u548c\u9f99 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "2007077", "video_name": "c421101d-e9fa-5bb7-bd12-e1e52f464e7c", "text": "\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u6b63\u5728\u6fc0\u70c8\u6218\u6597\u4e2d\uff0c\u4ed6\u7684\u62f3\u5934\u5df2\u6536\u56de\uff0c\u51c6\u5907\u53d1\u51fa\u5f3a\u6709\u529b\u7684\u4e00\u51fb\u3002\u4ed6\u7684\u5bf9\u624b\u5904\u4e8e\u9632"} +{"id": "5001374", "video_name": "224ee1cf-4753-5034-8486-bc008445c0e1", "text": "\u624b\u91cc\u7684\u5c0f\u7537\u5b69\u6709\u4e00\u53ea\u53ef\u7231\u7684\u72d7\u3002"} +{"id": "2007045", "video_name": "a771543e-5d02-58e4-9f71-553dd3da9ed9", "text": "\u4e00\u4e2a\u4eba\u5728\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u4f38\u624b\u53bb\u62ff\u7535\u8bdd\u3002"} +{"id": "6002387", "video_name": "d432d913-17df-566e-893a-2046370bdc1b", "text": "25\u82f1\u5c3a\u7684Bertram\u8c6a\u534e\u8f7f\u8f66\u3002\u8d85\u903c\u771f\u5730\u5728\u591c\u665a\u7ffb\u6eda\u7684\u5de8\u6d6a\u4e2d\u884c\u9a76\u3002"} +{"id": "0004908", "video_name": "113f9142-467f-510b-a766-676b40d8f27c", "text": "\u5728\u4e00\u4e2a\u5c0f\u6d77\u6ee8\u57ce\u9547\u7684\u67d0\u4e2a\u65f6\u5019\uff0c\u5929\u8d4b\u5f02\u7980\u7684\u6d77\u6d0b\u751f\u7269\u5b66\u5bb6Emily\u4e0e\u70ed\u60c5\u7684\u51b2\u6d6a\u8005\u548c\u827a\u672f\u5bb6Jake"} +{"id": "8002522", "video_name": "ad2c1825-b64e-5fc1-9727-751147dca726", "text": "\u5728\u8336\u5c4b\u91cc\u5750\u7740\u4e00\u4f4d\u5e74\u8fc8\u7684\u571f\u8033\u5176\u8001\u4eba\u3002"} +{"id": "1003219", "video_name": "3b4f4baf-5715-5b76-8c73-f2f84e14eb29", "text": "\u9ad8\u7ea7\u65f6\u88c5\u79c0\uff0c\u4ee5\u82b1\u5349\u548c\u82b1\u56ed\u4e3a\u4e3b\u9898\uff0c\u5305\u62ec10\u4f4d\u7a7f\u7740\u957f\u88d9\u7684\u5973\u6a21\u7279\u3002\u5728\u53f0\u4e0a\u4f18\u96c5\u5730\u878d\u5165\u82b1"} +{"id": "0003069", "video_name": "3662e28d-bcff-5275-ad15-74b635734ac2", "text": "\u4e00\u68f5\u94b1\u6811\u5728\u76d1\u72f1\u7262\u623f\u91cc\u751f\u957f\u3002"} +{"id": "7004023", "video_name": "15f65ac4-51dd-5221-a389-7683ce5e47ba", "text": "\u4e00\u4e2a\u57fa\u4e8e\u300a\u50b2\u6162\u4e0e\u504f\u89c1\u300b\u7684\u73b0\u5b9e\u4e3b\u4e49\u89c6\u9891\u3002"} +{"id": "7003833", "video_name": "c0e717a6-cab2-5fae-8659-b05571874803", "text": "\u4e00\u4e2a\u5438\u70df\u7684\u96f7\u9b3c\u6b63\u5728\u901a\u5411\u6d85\u69c3\u3002\u4ed6\u5148\u5728\u623f\u95f4\u7684\u6c99\u53d1\u4e0a\uff0c\u7136\u540e\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "1005921", "video_name": "6cc2bd3f-e0c7-5109-a59b-c68dcf15ef39", "text": "\u6211\u653e\u624b\u7684\u90a3\u4e00\u5929\uff0c\u4e00\u5207\u5f00\u59cb\u4e86\u3002"} +{"id": "3006179", "video_name": "18ee4515-629a-5e30-bf93-e626be9976b6", "text": "\u6700\u4f73\u54c1\u8d28\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u706f\u5149\u6548\u679c\uff0c\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "1003575", "video_name": "41e89ad0-6f59-5e34-ba11-d95d0162d760", "text": "\u4e9a\u5386\u514b\u65af\u548c\u745e\u79cb\u5750\u5728\u5ba2\u5385\u91cc\uff0c\u770b\u7740\u7535\u89c6\u4e0a\u7684\u65b0\u95fb\u3002\u6c14\u6c1b\u5f88\u7d27\u5f20\u3002"} +{"id": "0006991", "video_name": "365c5514-b35d-5801-9107-b627bf280866", "text": "\u73b0\u4ee3\u513f\u7ae5\u6e38\u4e50\u573a\u91cc\u7684\u718a\u732b\u8df3\u821e\u3002"} +{"id": "6004114", "video_name": "b260e54a-3a41-54f9-b16c-a8d7310ccaa1", "text": "\u672a\u6765\u4e3b\u4e49\u795e\u79d8\u5b66\u6821\uff0c\u4e00\u4e2a\u5973\u5b69\u6b63\u5954\u8dd1\u7740\u8fdb\u6559\u5ba4\uff0c\u5306\u5fd9\u8d76\u5f80\u5979\u7684\u8bfe\u684c\u30024K\u3002"} +{"id": "8003579", "video_name": "0f7ea8d6-fdc0-53ea-b59e-cf959cd4986a", "text": "\u4f1a\u8ba1\u5e08\u4e58\u5750\u98de\u884c\u8ba1\u7b97\u5668\uff0c\u80cc\u666f\u662f\u672a\u6765\u4e3b\u4e49\u5929\u9645\u7ebf\u91d1\u8272\u65f6\u523b\u7684\u6b63\u9762\u89c6\u56fe\u3002 \n\nSource sentence: The best way to predict the future is"} +{"id": "8002717", "video_name": "d2fc412e-cca5-5278-a670-232f1f4a6292", "text": "\u5bbd\u655e\u7684\u5e9f\u5f03\u5ba2\u5385\uff0c\u843d\u5730\u7a97\uff0c\u5730\u4e0a\u957f\u6ee1\u4e86\u8349\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2005948", "video_name": "c4a991c5-bfdc-5024-9bd8-16a65d9ff78a", "text": "\u4e00\u4e2a\u5927\u72d7\uff0c\u5e26\u7740\u7f16\u53f718\u548c30\u6765\u4e86\u3002"} +{"id": "8001087", "video_name": "a5c6c706-c369-5acd-b19e-b1ed5771a091", "text": "\u5173\u4e8e\u201c\u874e\u5b50\u53f7\u201d\u6f5c\u8247\u7684\u547d\u8fd0\u5df2\u7ecf\u6709\u5f88\u591a\u8ba8\u8bba\u3002\u662f\u56e0\u4e3a\u67d0\u4e9b\u6545\u969c\u5bfc\u81f4\u5b83\u6c89\u6ca1\uff1f\u5b83\u662f"} +{"id": "2006130", "video_name": "fb0aa621-8c09-547c-9ed5-fb5e4b68cc09", "text": "\u8db3\u7403\u573a\u4e0a\uff0c\u7537\u5b69\u7a7f\u7740\u6f02\u4eae\u7684\u8fd0\u52a8\u978b\u3002\u9ad8\u6e05\u52a8\u6f2b\u30024K\u3002"} +{"id": "0006909", "video_name": "352e7cc2-a4d2-53fc-9ef6-18d93938f5e0", "text": "\u4e00\u4e2a\u6df1\u7a7a\u573a\u666f\uff0c\u5206\u8fa8\u7387\u4e3a1920x1080\uff0c\u6709\u661f\u661f\u3001\u7c92\u5b50\u4e91\u3001\u94c1\u3001\u6c22\u3001\u6c26\u3001\u78b3\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "1004819", "video_name": "591071c2-e477-5131-a4a8-c3c7f81ee847", "text": "\u4e00\u5757\u5de7\u514b\u529b\u4f1a\u5728\u9633\u5149\u4e0b\u878d\u5316\u3002"} +{"id": "6003188", "video_name": "e389ef55-4daa-5cac-af0b-df94d145915e", "text": "\u7537\u5b69\u548c\u5973\u5b69\u5728\u516c\u56ed\u91cc\u5750\u7740\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "1003693", "video_name": "440e35ab-92c0-5aac-ba2c-62f60d0c3775", "text": "\u5065\u5eb7\u98df\u54c1\u684c\uff0c\u6c34\u679c\uff0c\u8c37\u7269\uff0c\u5c0f\u5403\u3002Tovah\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002904", "video_name": "1f94d587-cd77-5955-8b8f-5e22a0aaa098", "text": "\u5728\u4e00\u4e2a\u51ac\u5b63\u7684\u57ce\u5e02\u591c\u665a\uff0c\u6c7d\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u5c0f\u706f\u4eae\u8d77\u3002"} +{"id": "1003276", "video_name": "3c48ebc8-d460-5cd2-bf8d-5e70028a799c", "text": "\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u548c\u8d70\u8def\u7684\u673a\u5668\u4eba"} +{"id": "2003616", "video_name": "08271b86-88d8-525a-9d2f-1fcef4bb0961", "text": "\u5728\u5e1d\u56fd\u8c37\u4e2d\uff0c\u7535\u5f71\u7248\u5c24\u8fbe\u771f\u5b9e\u60df\u5999\u60df\u8096\u5730\u884c\u8d70\uff0c\u5177\u6709\u6b21\u8868\u9762\u6563\u5c04\u3001\u8def\u5f84\u8ffd\u8e2a\u7167\u660e\u3001"} +{"id": "6004677", "video_name": "053c10bc-d55e-5ebb-b0fa-6343057156f4", "text": "\u4eba\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u6444\u50cf\u673a\u5feb\u901f\u65cb\u8f6c\uff0c\u5929\u7a7a\u6674\u6717\u3002"} +{"id": "0004212", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "\u7f57\u7f57\u8bfa\u4e9a\u00b7\u7d22\u9686\u4ece\u5730\u4e0a\u7ad9\u8d77\u6765\uff0c\u80f8\u53e3\u6df1\u5904\u6709\u4e00\u9053\u4f24\u53e3\uff0c\u5448\u52a8\u753b\u98ce\u683c\u8f6c\u8eab\u3002"} +{"id": "5001588", "video_name": "bbca0485-ee6f-5b58-a53e-a2b42f1fac90", "text": "\u4e00\u5e45\u6587\u827a\u590d\u5174\u65f6\u671f\u7684\u753b\u4f5c\uff0c\u753b\u9762\u4e0a\u6709\u4e00\u4e2a\u83e0\u841d\uff0c\u88ab\u88c5\u5728\u4e00\u4e2a\u6846\u67b6\u91cc\u3002\u6846\u67b6\u4e0a\u6ef4\u7740\u8840\u3002 \n\nSource"} +{"id": "0004887", "video_name": "10f4a091-9f60-5daa-977d-2c998ba44f21", "text": "3D\u52a8\u753b\uff0c\u5927\u773c\u775b\u5fae\u7b11\u7684\u7537\u5b50\u624b\u6301\u5438\u5c18\u5668\uff0c\u6253\u5f00\u623f\u95e8\uff0c\u9500\u552e\u5458\u3002"} +{"id": "1006179", "video_name": "711879eb-7dae-5909-bb5e-0df0e3221436", "text": "\u9ad8\u901f\u5217\u8f66\u5728\u767d\u96ea\u7691\u7691\u7684\u5c71\u533a\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "3005629", "video_name": "45142bae-fb5b-51d8-8a50-382a2d8bba95", "text": "\u624e\u54c8\u00b7\u54c8\u8fea\u5fb7\u6cbf\u6d77\u6d77\u6ee9\u5c0f\u5c4b\u9633\u53f0\u65e5\u51fa\u3002"} +{"id": "8003802", "video_name": "69cee77a-0a53-51d2-bd7c-15cdcca66438", "text": "\u4e00\u53ea\u624b\u7ed8\u7684\u9ab7\u9ac5\u5361\u901a\u5f62\u8c61\uff0c\u8d70\u8def\u7684\u59ff\u52bf\u5448\u73b01950\u5e74\u4ee3\u5361\u901a\u7684\u98ce\u683c\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "6004231", "video_name": "6a28c571-dca2-5bf1-8217-41142315b470", "text": "\u6751\u6c11\u4eec\u906d\u9047\u4e86\u53ef\u6015\u7684\u547d\u8fd0\uff0c\u4eff\u4f5b\u53cd\u6620\u4e86\u4ed6\u4eec\u7684\u5669\u68a6\u3002"} +{"id": "0003794", "video_name": "4381de89-6aed-5460-a7a0-2481f2cd6820", "text": "1990\u5e74\u9ed1\u767d\u5f71\u50cf\uff0c\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u5728\u821e\u53f0\u4e0a\u8868\u6f14\u3002"} +{"id": "7002820", "video_name": "cf23a0a4-7d8d-5dbc-a733-e65266d8d2d8", "text": "\u5b87\u5b99\u68a6\u5e7b\u822c\u7684\u666f\u89c2\u4ee4\u4eba\u60ca\u53f9\uff0c\u4ece\u7a7a\u95f4\u62cd\u6444\u3002 \n\nSource sentence: The teacher asked the students to complete the assignment before the deadline. \n\n\u8001"} +{"id": "7002384", "video_name": "37b1072c-b486-5c5c-9082-28574078a6d7", "text": "\u53d6\u8bc1\u79d1\u5b66\uff0c\u5176\u7c7b\u578b\u548c\u5386\u53f2\u3002"} +{"id": "2007596", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "\u7eff\u8272\u7684\u732b\u5728\u68d5\u8272\u684c\u5b50\u4e0b\u98de\u884c\u3002"} +{"id": "2004956", "video_name": "6aa63f3d-37d6-5c0b-8ec5-e07b18ea0520", "text": "\u623f\u5c4b\u5e73\u9762\u56fe\u52a8\u6001\u68c0\u6d4b\u3001\u865a\u62df\u76d1\u63a7\u3001\u5b89\u5168\u3001\u9ad8\u6e05\u3001\u6570\u5b57\u3001\u4eba\u5de5\u667a\u80fd\u300116k\u3002"} +{"id": "3005099", "video_name": "68c42994-d66c-5056-bedc-1284a6ba8319", "text": "\u4e00\u4e2a\u5728\u6d77\u8fb9\u8dd1\u6b65\u7684\u5973\u5b69"} +{"id": "2005854", "video_name": "5362b1c5-efc2-5ddc-8fa8-525f95263382", "text": "\u4e00\u4e2a\u4e16\u754c\uff0c\u4f60\u53ef\u4ee5\u8fd1\u8ddd\u79bb\u89c2\u770b\u690d\u7269\uff0c\u53cd\u5411\u6d41\u52a8\u7684\u7011\u5e03\uff0c\u53d1\u5149\u7684\u82b1\u6735\u3002"} +{"id": "1005121", "video_name": "5e67bd55-6480-575e-b299-550971a8a717", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u4eab\u53d7\u7740\u6d77\u6d6a\u58f0\u3002"} +{"id": "6003301", "video_name": "54543516-297e-5f7b-a85c-aec1ce648e7f", "text": "\u591c\u665a\u9a7e\u9a76\u5954\u9a70\u7f13\u6162\u7a7f\u884c\u4e8e\u57ce\u5e02\u4e2d\u3002"} +{"id": "0005209", "video_name": "16a130b0-4954-5929-876c-42b266db1a90", "text": "\u63ed\u793a\u670b\u53cb\u795e\u79d8\u5730\u4ece\u522b\u5885\u6d88\u5931\u4e86\u3002"} +{"id": "4003752", "video_name": "64715800-0c18-511a-817e-cc84b514dbd2", "text": "\u4e00\u4e2a\u624b\u6301\u67aa\u652f\u5728\u7389\u7c73\u5730\u91cc\u5954\u8dd1\u7684\u7537\u4eba"} +{"id": "6003446", "video_name": "cdfdc1c7-dd09-529c-9092-7ec68b80e625", "text": "\u72d7\u643a\u5e26M416\u6b65\u67aa\u53c2\u52a0\u6218\u4e89\uff0c\u5206\u8fa8\u73874K\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "1005374", "video_name": "62daced9-ae76-5c7c-8049-1c524353bb21", "text": "\u591a\u9897\u5c0f\u884c\u661f\u50cf\u96e8\u4e00\u6837\u843d\u5728\u5730\u7403\u4e0a\uff0c\u6240\u6709\u4eba\u7c7b\u90fd\u5e26\u7740\u6050\u60e7\u9003\u8dd1\u3002"} +{"id": "0006573", "video_name": "2ecd4b51-7601-5c90-b2e7-1e682c121e77", "text": "\u5206\u88c2\u7684\u62fc\u56fe\uff0c\u788e\u7247\u6563\u4e71\u4e14\u4e0d\u8fde\u8d2f\u3002"} +{"id": "0005941", "video_name": "238cd979-6cee-5356-b59c-9bd1e7197174", "text": "\u7267\u5e08\u671d\u5929\u656c\u62dc\u4e0a\u5e1d\u3002"} +{"id": "8003984", "video_name": "b4b45095-55b6-5307-a84a-478a066e286e", "text": "\u5b83\u7684\u6bdb\u76ae\u96ea\u767d\u5982\u94f6\uff0c\u9b03\u6bdb\u95ea\u8000\u7740\u524d\u6240\u672a\u89c1\u7684\u8272\u5f69\u3002"} +{"id": "8002747", "video_name": "24066d74-c561-57c1-94e5-feecfcb2115f", "text": "\u7ea6\u7ff0\u00b7\u53f2\u5bc6\u65af\u6b63\u5728\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "2007884", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "\u589e\u5f3a\u56fe\u50cf\uff0c\u4e0a\u8272\uff0c\u653e\u5165\u9633\u5149\u660e\u5a9a\u7684\u666f\u8272\u4e2d\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "3006998", "video_name": "0cced93f-932b-528e-878f-98666afcbadb", "text": "\u4e00\u4e2a\u5e26\u6709\u80cc\u666f\u7684\u68d2\u4eba\uff0c\u4ece\u5c71\u5730\u5230\u5e73\u539f\uff0c\u518d\u5230\u623f\u5c4b\uff0c\u7535\u5f71\u822c\u768420\u79d2\u3002"} +{"id": "6004985", "video_name": "e5ca7528-94f2-51d1-9e6b-21e46d195922", "text": "\u6674\u5929\uff0c\u8349\u539f\u98ce\u666f\uff0c\u5fae\u98ce\u53ef\u89c1\u3002"} +{"id": "2007592", "video_name": "f5307571-78fe-58e3-b6f2-2bd1d2d4ee9f", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u7279\u88ab\u6c34\u6d6a\u51fb\u4e2d\u4e86\u3002"} +{"id": "2003076", "video_name": "a9e536fe-4056-58ac-8da0-23c2d67f9c9d", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u82f1\u96c4\u7a7f\u8fc7\u9634\u5f71\uff0c\u60c5\u7eea\u4f4e\u6c89\u3001\u8bfa\u74e6\u5c14\u98ce\u683c\u3001\u751f\u52a8\u3001\u56db\u5904\u79fb\u52a8\u3002"} +{"id": "6004719", "video_name": "e44584ad-70d5-5d95-b0ff-ed59809a81c8", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8eDesign Academy\u793c\u54c1\u5361\u7684\u89c6\u9891\u3002"} +{"id": "2007750", "video_name": "d133da22-cc89-5707-8eec-045433867afe", "text": "\u591c\u95f4\u6469\u6258\u8f66\u6bd4\u8d5b\uff0c\u4e09\u8f86\u6469\u6258\u8f66\uff0c\u6392\u6c14\u7ba1\u5192\u706b\uff0c\u6444\u50cf\u673a\u8ddf\u968f\u9a91\u624b\uff0c4K\uff0c\u903c\u771f\u62cd"} +{"id": "8003404", "video_name": "5330ca10-8f95-5b6a-9c91-2276758b26a1", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5728\u80cc\u666f\u4e0a\u6709\u65e5\u672c\u6a39\u7684\u5730\u7403\u4e0a\u5954\u8dd1\uff0c\u662f\u5947\u5e7b\u52d5\u6f2b\u3002"} +{"id": "5001432", "video_name": "d858eb7f-1ef4-5a59-a960-733484b1fcc4", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u52a8\u753b\u718a\u5750\u5728\u95e8\u5eca\u4e0a\u559d\u7740\u70ed\u5496\u5561\uff0c\u6b23\u8d4f\u7740\u65e5\u843d\u3002"} +{"id": "7004039", "video_name": "db075806-1990-55e2-a275-1d0e8902c7f2", "text": "\u5409\u7c73\u00b7\u8428\u7ef4\u5c14\u5728Frutiger Aero\u4e16\u754c\u91cc\u3002"} +{"id": "6002261", "video_name": "40928624-cb71-5733-85f3-b8bc8ee12824", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u9a6c\u6876\u4e0a\u770b\u624b\u673a\u3002"} +{"id": "4003979", "video_name": "545bf168-7c16-584a-ab49-fd2e898b43d5", "text": "\u5370\u5ea6\u4e00\u4e2a15\u5c81\u7684\u5b69\u5b50\u4ece\u4e00\u9897\u843d\u5728\u5730\u7403\u4e0a\u7684\u6d41\u661f\u4e2d\u83b7\u5f97\u4e86\u8d85\u80fd\u529b\u3002"} +{"id": "4004344", "video_name": "48f4babe-c1fb-5650-b6ee-2cab214709d9", "text": "\u7535\u5f71\u822c\u7684\u591c\u666f\u6d41\u661f\u96e8\u660e\u4eae\u7684\u706b\u82b1"} +{"id": "1003234", "video_name": "3b8a7a2e-d0af-56ec-a2b0-4e525366a4be", "text": "\u8349\u5728\u672b\u65e5\u5c71\u5761\u4e0a\u7ea2\u82b1\u5468\u56f4\u6d41\u52a8\u3002"} +{"id": "4002210", "video_name": "99549387-f540-57bc-b7a6-32c2ad0bebf8", "text": "\u7a3b\u8349\u4eba\u5a03\u5a03\u5728\u821e\u53f0\u4e0a\u4e0eMetallica\u4e50\u961f\u4e00\u8d77\u6f14\u594f\u7535\u5409\u4ed6\uff0c\u4f7f\u7528iper realita\u65e0\u4eba\u673a\u89c6\u89d2\u548c3D\u6280\u672f\u3002"} +{"id": "2005937", "video_name": "66681b46-e4a9-5028-bf73-1b3057bc6ca1", "text": "\u7565\u5e26\u5934\u9aa8\u5f62\u72b6\u7684\u9668\u77f3\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u98ce\u683c\u7c97\u7cd9\uff0c\u4ee4\u4eba\u5bb3\u6015\u3002"} +{"id": "6004499", "video_name": "988787ab-7f5b-563f-b469-39556b6b3132", "text": "\u4e00\u679a\u6885\u5361\u74e6\u5766\u514b\u7684\u70ae\u5f39\u51fb\u4e2d\u4e86\u4e00\u4e2a\u5de8\u5927\u7684\u897f\u74dc\uff0c\u573a\u9762\u975e\u5e38\u620f\u5267\u5316\uff0c\u706b\u836f\u70df"} +{"id": "5001786", "video_name": "f1cabc29-af57-52a8-8928-f5aeada0bb92", "text": "\u90aa\u6076\u7684\u9ed1\u725b\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u8001\u65e7\u7684\u5f55\u50cf\uff0c1970\u5e74\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u300a\u5e03\u83b1\u5c14\u5973\u5deb\u8ba1\u5212\u300b\u7535\u5f71"} +{"id": "6004882", "video_name": "26513be1-af67-57eb-9d8d-910684aa774f", "text": "\u73b0\u5b9e\u7684\u6559\u80b2\u8fc7\u7a0b\u89c6\u9891\uff0c\u6210\u529f\u7684\u62db\u8058\u4eba\u5458\u5c06\u81ea\u5df1\u7684\u77e5\u8bc6\u4f20\u6388\u7ed9\u5e74\u8f7b\u7684\u62db\u8058\u4eba\u5458\uff01"} +{"id": "3004941", "video_name": "65afd63c-529c-568a-b4f8-6e063e322c3f", "text": "\u6d53\u7eff\u8272\u7684\u80cc\u666f\uff0c\u77f3\u5934\u4e0b\u7684\u6c34\u6d41\uff0c\u6c34\u5728\u6d41\u52a8\uff0c\u6811\u53f6\u5728\u6643\u52a8\uff0c\u4e09\u7ef4\u52a8\u753b\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u8fea"} +{"id": "0003877", "video_name": "45091500-d0aa-5c87-ae66-5ef8624729b7", "text": "\u63a8\u5e7f\u52a0\u5bc6\u8d27\u5e01\u9500\u552e\u7684\u89c6\u9891\u3002\u65f6\u957f20\u79d2\u3002"} +{"id": "8001148", "video_name": "f20ca0f8-0e6f-5826-b023-989f5b583f2a", "text": "\u4e00\u79cd\u7531\u767d\u8272\u6bdb\u76ae\u5236\u6210\u7684\u8d28\u611f\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "0003778", "video_name": "432e2437-b3e3-5ece-ba16-b660219634b7", "text": "\u5728\u6cb3\u8fb9\u7684\u4e00\u6839\u6865\u4e0a\uff0c\u7eff\u6811\u4f5c\u4e3a\u80cc\u666f\uff0cShrek \u7ad9\u5728\u4e0a\u9762\uff0c4K\uff0c\u903c\u771f\u751f\u52a8\u3002"} +{"id": "1005337", "video_name": "620161de-b07b-5672-b846-b93a2833a323", "text": "\u5728\u591c\u665a\u7684\u57ce\u5e02\u8857\u5934\u4e0a\uff0c\u6709\u771f\u6b63\u7684\u7535\u5f71\u7ea7\u7206\u70b8\u3002"} +{"id": "3006423", "video_name": "fe15f880-ab20-5b0a-ad1b-6b94f8e97bba", "text": "\u5c55\u793a\u51fa\u4e00\u4e2a\u540d\u53eb\u6148\u660e\u7684\u667a\u8005\u50e7\u4eba\u7a81\u7136\u51fa\u73b0\uff0c\u5e76\u542f\u8fea\u5f7c\u5f97\uff0c\u5f15\u5bfc\u4ed6\u8d70\u5411\u6b63\u4e49\u4e4b\u8def\u3002"} +{"id": "0004910", "video_name": "114d665c-c744-5036-a872-6215df5c23a9", "text": "\u5e7b\u60f3\u7684\u9ed1\u6697\u68ee\u6797\uff0c\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u9ed1\u53d1\u5973\u5b69\u3002"} +{"id": "8003589", "video_name": "4c412aa1-ef0b-5586-b1eb-01fc5e321dc9", "text": "\u7537\u5b69\uff0c12\u5c81\uff0c\u68d5\u8272\u5934\u53d1\u548c\u773c\u775b\uff0c\u56e0\u4e3a\u521a\u521a\u5728\u7f51\u4e0a\u8d2d\u4e70\u4e86\u4e1c\u897f\u800c\u5fae\u7b11\u3002"} +{"id": "5001775", "video_name": "f905f8bd-3a4d-52bd-90f1-ce826c3fe9b0", "text": "\u6c34\u6d41\u7f13\u6162\uff0c\u6e38\u52a8\u7684\u9c7c\u3002"} +{"id": "1004993", "video_name": "5c4411a3-b7cb-5bfd-b295-60ba82d1df1b", "text": "\u4e00\u6735\u5b64\u72ec\u7684\u98ce\u6eda\u8349\u6162\u6162\u5730\u5728\u753b\u9762\u4e2d\u6eda\u52a8\uff0c\u4eff\u4f5b\u5728\u5bfb\u627e\u4ec0\u4e48\u300216:9\u7684\u7535\u5f71\u753b\u9762"} +{"id": "8002606", "video_name": "a7ad5587-d596-568c-9490-513b70732a0a", "text": "\u6709\u673a\u673a\u5668\u5728\u7f50\u5b50\u91cc\u6cf5\u52a8\u7740\u4e00\u9897\u5fc3\u810f\u3002"} +{"id": "4002443", "video_name": "aca2a712-dbb8-5acb-90d0-0170a5a6ff41", "text": "\u4e5d\u53ea\u9e7f\u5728\u66b4\u98ce\u96ea\u4e2d\u98de\u7fd4\uff0c\u5c31\u50cf\u9e1f\u513f\u5728\u666f\u8272\u4e2d\u7a7f\u68ad\u3002"} +{"id": "2006156", "video_name": "12c49326-121a-5be7-8d05-a8f6181a3ce0", "text": "\u6c7d\u8f66\u5728\u897f\u4f2f\u5229\u4e9a\u5d0e\u5c96\u7684\u5c71\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "3005229", "video_name": "ee8f8352-b904-504c-9f58-b7076cf03c5e", "text": "MindfulHarbor \u7f51\u9875\u7684\u5934\u50cf\uff1a\u51b7\u9759\u3001\u79d1\u5b66\u7684\u4fe1\u606f\u3001\u7f8e\u4e3d\u3001\u6df1\u523b\u3001\u7535\u5f71\u5316\u3001\u53ef\u7231\u3002"} +{"id": "5001896", "video_name": "5dfe6dd0-fcb3-53cb-9070-00146ea823ec", "text": "\u7231\u60c5\u6545\u4e8b\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e24\u4e2a\u4eba\u76f8\u7231\u3001\u9047\u5230\u56f0\u96be\u548c\u91cd\u65b0\u71c3\u8d77\u7231\u706b\u7684\u8fc7\u7a0b\u3002"} +{"id": "3006320", "video_name": "21fbfb38-1270-5e26-a9fd-cde61362ec00", "text": "\u76f2\u76ee\u7684\u52a8\u6f2b\u7537\u5b50\u8bd5\u56fe\u7a7f\u8fc7\u8857\u9053\u3002"} +{"id": "2005452", "video_name": "01ab336f-cab4-5a25-ae7d-452e369055e6", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u4e3b\u6301\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u4f53\u80b2\u573a\u9986\u91cc\u89e3\u8bf4\u6bd4\u8d5b\uff0c\u878d\u5408\u4e86\u79d1\u6280\u5143\u7d20\u3001\u5b87\u5b99\u5143\u7d20\u3001\u5143\u5b87\u5b99\u548c\u672a\u6765"} +{"id": "7002413", "video_name": "65a7b5b5-e0e3-5ba5-98d6-6176ae8624b2", "text": "\u5728\u9910\u684c\u4e0a\u5403\u98df\u7269\u7684\u5bb6\u8747\uff0c\u771f\u5b9e\u751f\u6d3b\u4e2d\uff0c\u5fae\u5c0f\u7684\u3002"} +{"id": "2003366", "video_name": "08c893cb-5960-58f9-a8a4-717a2b971cd5", "text": "\u5361\u62c9\u5947\u7684\u8857\u9053\u548c\u5df7\u5b50\u4e0a\u6709\u5f88\u591a\u4eba\u8d70\u52a8\u3002"} +{"id": "6002091", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "\u5bcc\u58eb\u5c71\u4e0e\u84dd\u5929\u548c\u4e00\u4e9b\u4e91\u3002"} +{"id": "8001323", "video_name": "6324f735-3568-5a6d-af8f-7c5834d592fd", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u4f18\u7f8e\u7684\u6c34\u6bcd\u5728\u6c34\u4e2d\u6f02\u6d6e\uff0c\u4ecd\u7136\u4fdd\u63013D\u6e32\u67d3\u7684\u7535\u5f71\u611f\u89c6\u89d2\u3002"} +{"id": "4003997", "video_name": "ca4c7f23-edba-52d9-bee6-3886eba08dc6", "text": "\u65f6\u5c1a\u5973\u6027\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u5c55\u793a\u5979\u7684\u8fd0\u52a8\u978b\u548c\u9020\u578b\uff0c\u5982\u540c\u7535\u89c6\u5e7f\u544a\u822c\u3002 \n\nSource sentence: Can you recommend a good restaurant near here"} +{"id": "0005234", "video_name": "1710f931-c6c2-5183-9b30-0d587d0b8e3a", "text": "\u4e00\u6bb5\u52a8\u753b\uff0c\u753b\u7684\u662f\u4e00\u4e2a\u5934\u53d1\u68d5\u8272\uff0c\u773c\u775b\u84dd\u8272\uff0c\u7a7f\u7740\u7ea2\u8272\u80cc\u5fc3\uff0c\u8138\u4e0a\u957f\u4e86\u5f88\u591a\u75d8\u75d8"} +{"id": "2006566", "video_name": "62af60dd-2a57-599a-b0d7-8488f15bdaab", "text": "\u592a\u7a7a\u8239\u505c\u5728\u884c\u661f\u8868\u9762\u5e76\u4ece\u8239\u4e0a\u6253\u5f00\u95e8\uff0c\u767d\u70df\u4ece\u8239\u4e0a\u6d8c\u51fa\uff0c\u903c\u771f\u7684\u89c6\u89c9\u6548\u679c\uff0c\u771f\u5b9e\u89c6\u89d2\uff0c\u865a"} +{"id": "7002725", "video_name": "1463a604-6814-599a-bdcb-d323a06f99b6", "text": "VHS\u6548\u679c\uff0c1910\u5e74\u70ed\u6c14\u7403\uff0c\u9897\u7c92\u89c6\u9891\u3002"} +{"id": "2005572", "video_name": "1cc7f8f1-5b49-51c4-9be5-456e14f979c8", "text": "\u8f66\u7978\u4e2d\u7684\u5973\u4eba\uff0c\u4e0a\u4e16\u7eaa80\u5e74\u4ee3\uff0c\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0003972", "video_name": "00eb9809-e174-5dda-b11a-5ee9344b3552", "text": "\u5373\u5c06\u4eab\u7528\u5de7\u514b\u529b\u706b\u9505\u7684\u60c5\u4fa3\u3002"} +{"id": "3004298", "video_name": "0eae0c0c-ae90-5de7-93a2-722bbbfe1e40", "text": "\u8bbe\u8ba1\u4e00\u5ea7\u5b81\u9759\u7684\u55b7\u6cc9\uff0c\u7f6e\u4e8e\u4e2d\u56fd\u56ed\u6797\u4e2d\uff0c\u6c34\u4ee5\u827a\u672f\u548c\u6b22\u5feb\u7684\u65b9\u5f0f\u6d41\u6dcc\u3002"} +{"id": "4004025", "video_name": "67bc2fc3-9b18-5ed6-92cb-787a4422ac28", "text": "\u4e00\u53ea\u8001\u9f20\u88ab\u53d1\u5c04\u5230\u592a\u7a7a\u7684\u89c6\u9891"} +{"id": "3006565", "video_name": "bc05ade2-0a17-5a35-9ca1-f938a8c51f48", "text": "\u98ce\u666f\u62cd\u6444\uff0c\u5411\u524d\u6ed1\u52a8\u53d8\u7126\uff0c80\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "1006242", "video_name": "725430b8-3daa-5797-9434-fa291fa539a9", "text": "\u8ba8\u8bba\u547d\u8fd0\u5728\u5c06Rahul\u3001Arjun\u548cVishwas\u5e26\u5230\u76d7\u8d3c\u9762\u524d\u7684\u4f5c\u7528\u3002"} +{"id": "2004565", "video_name": "77cfd374-bb1a-569c-9430-1de953e62149", "text": "\u5931\u843d\u7684\u3001\u6cae\u4e27\u7684\u7a77\u4eba\u3002\u9644\u4ef61\u3002"} +{"id": "1005588", "video_name": "66d409d4-fe06-549c-91d7-81f6489ef5f8", "text": "\u5916\u661f\u4eba\u548c\u4eba\u7c7b\u4e4b\u95f4\u7684\u6218\u4e89\u975e\u5e38\u6fc0\u70c8\u3002"} +{"id": "0006251", "video_name": "294b5f87-a253-565e-873c-e2a0160a1607", "text": "\u4e00\u5f20\u7167\u7247\u7528\u4e8e\u8336\u53f6\u8d38\u6613\u516c\u53f8\u7684\u5934\u50cf\u7167\u7247\u3002"} +{"id": "0005201", "video_name": "168c2d2b-d829-5f83-92d3-72abfbacf34d", "text": "\u6211\u7ec4\u5efa\u4e86\u6211\u7684\u516c\u4e3b\u56e2\uff0c\u4f60\u6253\u7b97\u600e\u4e48\u505a\uff1f"} +{"id": "3005176", "video_name": "947eeb9b-c566-5891-8ef8-fdaf7773a18b", "text": "\u732b\u8eba\u5728\u9633\u5149\u4e0b\u3002\u4fe1\u606f\uff1a\u65b0\u897f\u5170\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "1005675", "video_name": "683d686a-28aa-5c7b-b2a9-a36a122f573c", "text": "\u602a\u4eba\u827e\u5c14\u00b7\u626c\u79d1\u7ef4\u5947\u5728\u975e\u6d32\u6f14\u594f\u624b\u98ce\u7434\uff0c\u80cc\u666f\u4e2d\u6709\u52a8\u7269\u3002"} +{"id": "3005861", "video_name": "56cc52d9-4954-5a50-97e4-41caecc4ad04", "text": "\u5efa\u7acb\u4e00\u4e2a\u7e41\u5fd9\u7684\u82cf\u9ece\u4e16\u706b\u8f66\u7ad9\u7684\u80cc\u666f\uff0c\u5145\u6ee1\u7740\u9ad8\u4e2d\u65c5\u884c\u7684\u5174\u594b\u3002"} +{"id": "2006255", "video_name": "f7d1f817-7c3e-5ac3-bac1-b660b659e3a6", "text": "\u6210\u5343\u4e0a\u4e07\u7684\u9e1f\u513f\u5728\u7f8e\u4e3d\u7684\u65e5\u51fa\u65f6\u98de\u7fd4\u3002"} +{"id": "6003207", "video_name": "09357fa0-f8c2-5f5c-8b14-e65fd9027ef7", "text": "\u8ddf\u968f\u4e00\u4e2a\u53ea\u6709\u4e00\u53ea\u773c\u775b\u7684\u7537\u4eba\u7684\u5973\u4eba\u4eec\u3002"} +{"id": "3003866", "video_name": "7feec13d-0af8-5280-9960-52a179549997", "text": "\u5728\u89c6\u9891\u4e2d\uff0c\u6708\u76f8\u3002"} +{"id": "7003063", "video_name": "4473255f-e09f-5cf8-b121-ea2938fbcb5a", "text": "\u5feb\u901f\u589e\u957f\u7684\u5fae\u578b\u57ce\u5e02\uff0c\u4ece\u767d\u8272\u7a7a\u767d\u7684\u80cc\u666f\u4e2d\u8131\u9896\u800c\u51fa\uff0c\u5728\u84dd\u8272\u80cc\u666f\u4e0b\uff0c\u901a\u8fc7\u65f6\u95f4\u6d41\u901d\u5448\u73b0\u3002"} +{"id": "8002901", "video_name": "528705b4-b9d4-59b9-8313-147a94266951", "text": "\u4e00\u652f\u5c11\u718a\u63a2\u9669\u961f\u7684\u961f\u5458\u5305\u62ec\uff1a\u68d5\u8272\u5934\u53d1\u3001\u84dd\u8272\u5e3d\u5b50\u7684\u5c0f\u718a\u3001\u767d\u8272\u5154\u5b50\u3001\u5927\u773c\u775b\u7684"} +{"id": "4002234", "video_name": "9ada1f7a-cbeb-574c-b689-d070244f1fd7", "text": "\u4e00\u540d\u5973\u5175\u8207\u4e00\u540d\u6234\u8457\u91d1\u5c6c\u982d\u76d4\u7684\u7537\u79d1\u5b78\u5bb6\u5728\u672a\u4f86\u4e3b\u7fa9\u7684\u9ec3\u8272\u8857\u9053\u4e0a\u8ac7\u8a71\uff0c\u91d1\u5c6c"} +{"id": "3004828", "video_name": "203c00b7-1172-50d2-9b78-514476d5d3f4", "text": "\u4e00\u8f86\u201c\u661f\u7403\u5927\u6218\u201d\u8d5b\u8f66\u9ad8\u901f\u7a7f\u8d8a\u5ce1\u8c37\u3002"} +{"id": "0005231", "video_name": "1706a5ab-f3f7-5873-9def-d48a3639c5c7", "text": "\u5927\u578b\u8718\u86db\u5728\u4eba\u7761\u89c9\u7684\u65f6\u5019\u8d70\u8fdb\u53e3\u8154\uff0c\u8d85\u903c\u771f\u7684\uff0c\u653e\u5927\u89c6\u9891\uff0c\u6700\u9ad8\u8d28\u91cf\uff0c\u7535\u5f71\u822c\u7684\u89c6\u89c9"} +{"id": "4003099", "video_name": "01402438-0d68-508a-9c1b-73f166917047", "text": "\u4e00\u53ea\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u72d7\u5728\u4f0a\u5229\u8bfa\u4f0a\u5dde\u7684\u4e00\u4e2a\u519c\u573a\u91cc\u5728\u79cb\u5929\u5954\u8dd1\u3002"} +{"id": "1003258", "video_name": "3bf71748-a9fb-51a5-a106-ea9440516274", "text": "\u7537\u4eba\u5728\u5b9e\u9a8c\u5ba4\u4e0e\u4e00\u53ea\u751f\u7269\u63e1\u624b\u7684\u590d\u53e48\u6beb\u7c73\u5f71\u7247\u3002"} +{"id": "3006982", "video_name": "ad324b87-bf75-5d39-a34f-0c7597d62361", "text": "\u7528\u6d77\u85fb\u5236\u6210\u7684\u78c1\u5e26\u5728\u5377\u626c\u5f0f\u78c1\u5e26\u64ad\u653e\u5668\u4e0a\u64ad\u653e\u3002"} +{"id": "2004364", "video_name": "31a2b1bb-fac6-58b5-b4cf-e8e8b9ec0fb6", "text": "translation: \u5728\u6218\u4e89\u671f\u95f4\uff0c\u4e4c\u514b\u5170\u8bd7\u6b4c\u5c3d\u53ef\u80fd\u5730\u5448\u73b0\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1004009", "video_name": "4a2c44fa-4d5d-5e48-9801-a5a712a92c27", "text": "\u4e00\u4e2a\u4eba\u88ab\u8fc5\u901f\u770b\u5230\u8fdb\u5165\u5b66\u6821"} +{"id": "4002339", "video_name": "552a2baa-e91e-5f60-8435-6cfd1d27733e", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u539f\u59cb\u57ce\u5e02\u5750\u843d\u5728\u96e8\u6797\u4e2d\uff0c\u88ab17\u4e16\u7eaa\u8461\u8404\u7259\u6b96\u6c11\u65f6\u671f\u7684\u547c\u5524\u6467\u6bc1\uff0c"} +{"id": "6002342", "video_name": "5b6192d4-04e5-5f83-9e57-7e159694baa5", "text": "\u5404\u56fd\u56fd\u5bb6\u9886\u5bfc\u4eba\u5728\u5706\u684c\u4f1a\u8bae\u4e0a\u8ba8\u8bba\u56fd\u5bb6\u4e8b\u52a1\u3002"} +{"id": "1006125", "video_name": "704ec035-dd66-5aa5-901c-99a75799ee49", "text": "\u5357\u65b9\u516c\u56ed\u98ce\u683c\u7684\u52a8\u753b\uff0c\u5c55\u793a\u54e5\u65af\u62c9\u653b\u51fb\u7ebd\u7ea6\u5e02\u3002"} +{"id": "7002303", "video_name": "695577ac-07bc-5a02-8ff6-09a8165574c3", "text": "\u4e00\u4e2a\u4ece\u6e56\u4e2d\u5347\u8d77\u7684\u5973\u4eba\u3002"} +{"id": "3003772", "video_name": "a986a43c-e02c-5556-8016-8f80d2aad892", "text": "\u5de8\u9f7f\u9ca8\u4ee5360\u5ea6\u89c6\u89d2\u5c55\u793a\u5176\u5de8\u5927\u950b\u5229\u7684\u7259\u9f7f\u3002"} +{"id": "2004435", "video_name": "cdd66f2d-4b68-5162-9588-b13640460a92", "text": "\u4e0a\u5929\u7684\u5ba1\u5224\u3002\u6765\u81ea\u5723\u7ecf\u3002"} +{"id": "3006417", "video_name": "6177cf48-a99f-5abd-96fc-922129c425be", "text": "\u4e00\u6bb5\u901a\u8fc7\u873f\u8712\u9053\u8def\u7684\u6469\u6258\u8f66\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u9a91\u884c\u89c6\u9891\u3002"} +{"id": "0006916", "video_name": "354e5c14-527d-5afa-b536-eea23445dcd6", "text": "\u53ef\u6015\u7684\u8001\u5976\u5976\u6084\u6084\u5730\u7a7f\u8fc7\u5929\u5802\u82b1\u56ed\u3002"} +{"id": "1005068", "video_name": "5d90cb4c-3d0c-551e-bd65-b4b4a7a5d846", "text": "\u4e09\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u3002\u73b0\u5728\u662f\u665a\u4e0a\u3002\u4ed6\u4eec\u6b63\u5728\u770b\u7740\u76f8\u673a\u3002\u4ed6\u4eec\u5fae\u7b11\u7740\uff0c\u975e\u5e38\u9177\u3002\u753b\u8d28\u4e3a4K\uff0c\u7ec6\u8282"} +{"id": "2005283", "video_name": "aa43f410-de9a-5f82-8bcf-e86a9c41b062", "text": "\u5728\u5929\u7a7a\u80cc\u666f\u4e0b\u5bf9\u5176\u8fdb\u884c\u52a0\u5bc6\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004444", "video_name": "0d359eae-7268-5100-81c4-dbd73d93f70f", "text": "\u57282001\u5e74\u7684DVD\u622a\u56fe\u4e2d\uff0c\u4e00\u4e2a\u73b0\u5b9e\u7684\u5973\u5b69\u5728\u8fdc\u5904\u7684\u7530\u91ce\u65c1\u8fb9\u7684\u6811\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "2004461", "video_name": "3bb27c59-fea0-5fff-a90c-7bb288b3c58d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u4eba\u7728\u4e86\u7728\u773c\u775b\uff0c\u7528\u529b\u6447\u4e86\u6447\u5934\u3002"} +{"id": "4004706", "video_name": "a2839056-8107-541a-8cae-e84c88facc4c", "text": "\u4e00\u4e2a\u65e5\u672c\u8f66\u5728\u591c\u665a\u7684\u897f\u96c5\u56fe\u96e8\u4e2d\u884c\u9a76\u3002"} +{"id": "8002625", "video_name": "004077d4-0b46-509c-b8cf-e8afc54c74d5", "text": "\u9ed1\u8272\u5b9d\u9a6cM5\uff0c\u62cd\u6444\u5728\u8f66\u5185\u8fdb\u884c\uff0c\u5c55\u793a\u4e86\u65b9\u5411\u76d8\u3001\u4eea\u8868\u677f\u548c\u5185\u90e8\u7167\u660e\u76848K\u753b\u8d28\u3002"} +{"id": "6003879", "video_name": "e4399e84-2e09-519d-a639-3b4484a6c251", "text": "\u7231\u52a8\u7269\u7684\u8bdd\uff0c\u732b\u54aa\u662f\u5982\u6b64\u53ef\u7231\uff0c\u505a\u4e2a\u751c\u751c\u7684\u68a6\u5427\u3002"} +{"id": "3003528", "video_name": "489be238-828d-5ea6-9271-84aa085ca983", "text": "\u97e9\u7eb3\u66fc\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u8bf4\u7740\u201c\u6770\u4f0a\u00b7\u5e0c\u745e\u00b7\u62c9\u59c6\u201d\u3002"} +{"id": "2007629", "video_name": "3d8b4a6a-eaa5-5c41-b93e-f824eb6c4265", "text": "\u7528\u4e24\u4e2a\u6234\u7740\u5934\u5dfe\u7684\u59d0\u59b9\u7684\u6545\u4e8b\u6765\u5438\u5f15\u8bfb\u8005\uff0c\u5979\u4eec\u70ab\u8000\u7740\u65e0\u53ef\u6311\u5254\u7684\u65f6\u5c1a\u611f\uff0c\u5728"} +{"id": "2003098", "video_name": "607e7035-fb72-5a28-9293-953e9c109b79", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u683c\u5170\u82ac\u591a\u516c\u5171\u4f11\u606f\u5ba4\uff0c\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u5448\u73b0\uff0c\u83b7\u5956\u52a8\u753b\u7535\u5f71\u3002"} +{"id": "2003761", "video_name": "943d5930-2279-51f9-9c6a-43e652f8a6b7", "text": "\u7528\u8fd9\u5f20\u56fe\u7247\u5236\u4f5c\u4e00\u4e2a\u6a2a\u5411\u89c6\u9891\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006155", "video_name": "70b4ced8-2c23-5c9a-8032-a8584f58305f", "text": "\u5e1d\u738b\u8774\u8776\u7684\u5a01\u4e25\u98de\u884c"} +{"id": "2003970", "video_name": "6a355c4d-e74d-5548-b988-11769e131e4a", "text": "\u5927\u8910\u8272\u91ce\u5154\u548c\u5c0f\u8910\u8272\u91ce\u5154\u5750\u5728\u4e00\u7247\u7eff\u8272\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "8003149", "video_name": "783a1534-7589-548b-95b1-987b038ff740", "text": "\u4e24\u53ea\u9ed1\u732b\u5728\u6253\u6597\u3002\u4ee4\u4eba\u60ca\u6050\u7684\u573a\u9762\u3002"} +{"id": "7004907", "video_name": "099de4a8-e219-5bce-8769-156f59074268", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u548c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u5728\u68ee\u6797\u91cc\u62ff\u7740\u96f7\u795e\u4e4b\u9524\u548c\u7f8e\u56fd\u961f\u957f\u7684\u76fe\u724c"} +{"id": "1005450", "video_name": "642424a4-3bd6-56b4-854c-ae26d29433b7", "text": "\u4e00\u4e2a\u5750\u5728\u6905\u5b50\u4e0a\u8bb2\u6545\u4e8b\u7684\u4e13\u4e1a\u8bb2\u6545\u4e8b\u4eba\u3002"} +{"id": "0004430", "video_name": "08cc13fa-de28-555d-b664-443bc969a473", "text": "\u7537\u6a21\u8d70\u5728\u4e1b\u6797\u80cc\u666f\u4e0b\uff0c\u5c55\u793a\u65f6\u5c1a\u53d1\u578b\uff0c\u63a8\u9500\u53d1\u6cb9\u5e7f\u544a\u3002"} +{"id": "2003476", "video_name": "5a663bd1-1648-5837-a34e-18d183600263", "text": "\u661f\u9645\u7535\u5f71\u4e2d\u7684\u5973\u513f\u4ee580\u5e74\u4ee3\u9ed1\u6697\u5947\u5e7b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0003542", "video_name": "3f3d8bc9-4585-5d97-a35c-218f2cfe46c4", "text": "\u585e\u8428\u6d1b\u5c3c\u57fa\u5e0c\u814a\u7684\u5408\u6210\u6d6a\u6f6e\u6b4c\u66f2\u89c6\u9891\u526a\u8f91"} +{"id": "6004897", "video_name": "a6fc7ef4-89a2-515a-9330-ee637cb85f31", "text": "\u80cc\u666f\u4e2d\u51fa\u73b0\u4e86\u52a8\u6f2b\u98ce\u683c\u7684\u7206\u70b8\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u65c1\u89c2\u770b\u3002"} +{"id": "7003259", "video_name": "726046a2-80cf-52e8-b41b-98d286d90136", "text": "\u7537\u5b50\u5728\u591c\u665a\u62cd\u6444\u635f\u574f\u8f66\u8f86\u7684\u7167\u7247\u3002"} +{"id": "3006464", "video_name": "d3bea725-52d4-5f78-8bc6-c1bf8bcd75fc", "text": "\u8d70\u5728\u4e00\u4e2a\u6709\u4e91\u6735\u7684\u65e5\u51fa\u7684\u5c0f\u9547\u7a7a\u8361\u8361\u7684\u8857\u9053\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u8fd0\u52a84k\uff0c16:9\u3002"} +{"id": "6004485", "video_name": "229d44b8-0c10-5c2b-9105-6ec9c6fe35c3", "text": "\u4e2d\u56fd\u7537\u5b50\u548c\u4e00\u74f6\u9999\u6c34"} +{"id": "7004522", "video_name": "d873dff1-3562-5732-9dda-962835b95b28", "text": "\u5fb7\u97e6\u6069\u00b7\u5f3a\u68ee\u4f5c\u4e3a\u8fea\u58eb\u5c3c\u89d2\u8272\u5411\u5965\u5df4\u9a6c\u5954\u8dd1\u3002"} +{"id": "7003234", "video_name": "dccd9b0b-b950-5588-a782-e5b5f1320d65", "text": "\u706d\u9738\u548c\u94a2\u94c1\u4fa0\u559d\u9152\uff0c\u9ed1\u5be1\u5987\u7b11\u4e86\u3002"} +{"id": "2003481", "video_name": "3ed46737-47e1-5fed-9f09-e464fb22f47e", "text": "\u4e00\u4e2a\u8fc5\u901f\u53d1\u5c55\u7684\u66fc\u5fb7\u5c14\u5e03\u6d1b\u5916\u661f\u5a01\u80c1\u3002"} +{"id": "2006237", "video_name": "9a8f4a10-3dbb-52b7-8abe-03b5a25b8319", "text": "\u5236\u4f5c\u4e00\u6bb5\u7ea630\u79d2\u7684\u661f\u9645\u8ff7\u822a\u52a8\u753b\u3002"} +{"id": "6004097", "video_name": "c1cb6a45-ceac-5c54-b277-e0353e54901c", "text": "\u5546\u4eba\u4eec\u70ed\u60c5\u5730\u5c55\u793a\u4ed6\u4eec\u7684\u8d38\u6613\u5546\u54c1\uff0c\u5305\u62ec\u534e\u4e3d\u7684\u4e1d\u7ef8\u548c\u7cbe\u7f8e\u7684\u74f7\u5668\u3002"} +{"id": "1003834", "video_name": "46bd8b56-ba27-5eac-aeff-db420b5b3207", "text": "\u4e00\u53ea\u8df3\u821e\u7684\u5317\u6781\u718a\uff0c\u52a8\u7269\u56ed\u80cc\u666f\uff0c2D\u5361\u901a\u3002"} +{"id": "8001302", "video_name": "7142851e-8e21-581a-bc49-7cddebb0f983", "text": "\u5728\u6211\u4eec\u9ad8\u4e2d\u7684\u5b81\u9759\u8d70\u5eca\u4e0a\uff0c\u9634\u5f71\u4f4e\u8bed\u79d8\u5bc6\uff0c\u7b11\u58f0\u5728\u7a7a\u8361\u7684\u5927\u5385\u56de\u8361\u3002"} +{"id": "1005919", "video_name": "6cb9cccd-7cd4-5d77-9023-4e6ebe2263fd", "text": "\u767d\u96ea\u7687\u540e\u7535\u5f711970\u5e74\u4ee3\u7684\u6c1b\u56f4\u3002"} +{"id": "3004783", "video_name": "b92f5f74-374a-5bf1-a6f6-539cfb540ad4", "text": "\u5965\u5df4\u9a6c\u603b\u7edf\u9a7e\u9a76\u52b3\u65af\u83b1\u65af\u5e7b\u5f71\u3002"} +{"id": "4002823", "video_name": "3f856771-1b65-5c6b-a10e-4c017a4ce049", "text": "\u5728\u201c\u94f6\u7ffc\u6740\u624b\u201d\u98ce\u683c\u4e0b\uff0c\u7528\u65e0\u4eba\u673a\u62cd\u6444\u4ece20\u7c73\u9ad8\u7a7a\u5411\u4e0b\u7684\u5e7f\u89d2\u666f\u8c61\uff0c\u4e00\u4e2a\u5b64\u72ec\u7684\u5438\u70df\u7537"} +{"id": "4004707", "video_name": "57547dc9-cb34-5cb9-8404-234d6d1914ca", "text": "IT\u4eba\u5458\u5728\u623f\u95f4\u91cc\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u5de5\u4f5c\uff0c\u591c\u665a\u7684\u9713\u8679\u706f\u7167\u4eae\u4e86\u7a97\u6237\u548c\u8857\u9053\u3002\u6444\u50cf\u673a\u8f7b"} +{"id": "3004862", "video_name": "9f48fe08-057c-5841-837b-04cc817e1a84", "text": "\u7eff\u8272\u7d27\u8eab\u8863\u53d8\u6210\u8ba1\u7b97\u673a\u4ee3\u7801\u3002"} +{"id": "1006065", "video_name": "6f52c870-c140-55e5-b88e-0ca0124254d8", "text": "1\u53ea\u4e4c\u9f9f\u548c1\u53ea\u5154\u5b50\u62ff\u7740\u4e66\u5305\u3002"} +{"id": "0005264", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "\u53d7\u4f24\u6d41\u8840\u7684\u6258\u5c3c\u00b7\u65af\u5854\u514b\u770b\u5230\u5f7c\u5f97\u00b7\u5e15\u514b\u62b1\u7740\u4ed6\u7684\u5973\u513f\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "3006686", "video_name": "1d535079-1c29-51b9-ab85-b588d66d2699", "text": "\u8367\u5c4f\u88ab\u591c\u8272\u6240\u7b3c\u7f69\uff0c\u53ea\u6709\u5fae\u5f31\u7684\u6708\u5149\u6253\u7834\u9ed1\u6697\u3002\u4ece\u753b\u9762\u8fb9\u7f18\uff0c\u4e00\u7247\u6d53\u90c1\u7684\uff0c\u4ee4"} +{"id": "4004682", "video_name": "c7b6a45d-1656-57cb-a92f-b9516ebfe39a", "text": "\u5c55\u793a\u6b63\u786e\u7684\u5750\u59ff\u6216\u7ad9\u59ff\u7684\u63d2\u56fe\uff0c\u5f3a\u8c03\u810a\u67f1\u5065\u5eb7\u7684\u91cd\u8981\u6027\u3002"} +{"id": "7003313", "video_name": "7ef3c2df-10b4-5b9a-bfba-068b068d7e16", "text": "\u957f\u77db\u51b2\u5929\u98de\u821e\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u513f\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8001717", "video_name": "310d070d-7a5b-59a3-bd63-6d23a40acfec", "text": "\u4e5d\u5c42\u5854\u9e70\u5634\u8c46\u6ce5\uff0c\u6f14\u793a\uff0c\u4e13\u4e1a\u6444\u5f71\uff0c4k \u4fe1\u606f\uff1a\u9e70\u5634\u8c46\u6ce5\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004104", "video_name": "03440f32-5c96-5acd-9c17-f6604196168e", "text": "\u7a7f\u7740\u5370\u5ea6\u670d\u88c5\u7684\u9a6c\u91cc\u4e9a\u5947\u4e50\u961f\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u6f14\u594f\u5409\u4ed6\uff0c\u86cb\u7cd5\uff0c\u5f69\u5e26\uff0c"} +{"id": "2005868", "video_name": "1852469b-1a8f-5445-a7d4-20207cae8ddf", "text": "\u5851\u6599\u84dd\u8272\u73a9\u5177\u8dd1\u8f66\u5feb\u901f\u884c\u9a76\uff0c\u4ea8\u5229\u00b7\u585e\u5229\u514b\u7684\u505c\u683c\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "3006801", "video_name": "f9b61657-8825-56c3-ace4-a08a96512a11", "text": "\u534a\u4e2a\u573a\u5730\uff0c\u534a\u4e2a\u5929\u7a7a\u4e3a\u80cc\u666f\uff0c\u5973\u5b69\u5728\u524d\u666f\u4e2d\uff0c\u7a7f\u7740\u7d2b\u8272\u7684\u9762\u7f69\u548c\u7ea2\u8272\u9762\u7f69\u4e0a\u65b9\u7684\u5e3d\u5b50\uff0c"} +{"id": "0004455", "video_name": "0958f9e1-cbe8-5bbb-9308-6da35dc258e4", "text": "\u5728\u9644\u9b54\u68ee\u6797\u7684\u8fb9\u7f18\u5efa\u7acb\u4e00\u5ea7\u548c\u5e73\u7684\u6751\u5e84\u3002"} +{"id": "6002049", "video_name": "5e84b12f-773f-5d6c-a956-d2c5c191d0d8", "text": "\u5728\u96ea\u5730\u4e0a\u7684\u811a\u5370\uff0c\u8fd8\u6709\u5b69\u5b50\u4eec\u8d70\u6765\u73a9\u800d\u7684\u8bb0\u5fc6\u3002"} +{"id": "8003956", "video_name": "cbb6fc57-1b6a-5dc8-9eea-77ef1df60ce8", "text": "\u58a8\u897f\u54e5\u5728\u5730\u56fe\u4e0a\u3002\u4fe1\u606f\uff1aHealur\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4002987", "video_name": "683a9c3e-969c-53b2-8698-af55d2051bf9", "text": "\u7ea2\u8272\u602a\u517d\u5411\u955c\u5934\u5954\u8dd1\uff0c70\u6beb\u7c73\uff0c\u7535\u5f71\u611f\uff0c\u80cc\u666f\u7206\u70b8\uff0c\u6d45\u666f\u6df1\u3002"} +{"id": "8003908", "video_name": "b621a415-6feb-53a2-85c8-b66e864fed30", "text": "\u5730\u72f1\u80cc\u666f\uff0c\u903c\u771f\u7684\u706b\u7130\u3002\u4fe1\u606f\uff1aZii\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003030", "video_name": "1a7655c2-1acc-5a57-bf72-320daff446aa", "text": "\u4e00\u6735\u4ece\u5730\u4e0a\u957f\u51fa\u6765\u7684\u9e45\u818f\u83cc\uff0c\u5728\u68ee\u6797\u91cc\u5feb\u901f\u79fb\u52a8\u7684\u6444\u50cf\u673a\u955c\u5934\u4e2d\u3002"} +{"id": "6004824", "video_name": "7cf5dc79-0779-51d1-95ea-39b00fb660a9", "text": "\u4e00\u4e2a\u5173\u4e8e\u673a\u5668\u4eba\u7684\u7535\u5f71\u9884\u544a\u7247\uff0c\u5927\u7ea630\u79d2\u3002"} +{"id": "8003349", "video_name": "9b09dfbc-1951-5e52-94b4-f9bcab8bbf70", "text": "\u4eba\u5f62\u72fc\u7a7f\u7740\u4e2d\u4e16\u7eaa\u9a91\u58eb\u76d4\u7532\uff0c\u5728\u5251\u6597\u4e2d\u5bf9\u51b3\uff0c\u7535\u5f71\u822c\u7684\u3001\u80cc\u5149\u7684\u3001\u89c6\u5dee\u7684\u3001"} +{"id": "6003863", "video_name": "423d9f92-fbc8-5944-b578-e3bb71547e65", "text": "\u7537\u4eba\u6234\u7740\u9762\u5177\u3001\u5e3d\u5b50\u3001\u7eff\u8272\u706f\u3001VHS\u8bbe\u8ba1\u3002"} +{"id": "6002719", "video_name": "9d38806a-1832-51a5-bb70-69ce2791929a", "text": "\u57281950\u5e74\u4ee3\u7684\u73a9\u5177\u5e97\u91cc\uff0c\u4ee51950\u5e74\u4ee3\u7684\u52a8\u753b\u98ce\u683c\u5448\u73b0\u7684\u590d\u53e4\u73a9\u5177\u5728\u5723\u8bde\u8282\u6d3b\u52a8\u4e2d\u52a8\u8d77\u6765\u4e86\u3002"} +{"id": "7003760", "video_name": "da42999b-7ecb-596d-a44e-5480105c0d90", "text": "\u65e5\u672c\u662f\u73b0\u5b9e\u4e3b\u4e49\u7684\u56fd\u5bb6\u3002"} +{"id": "6002447", "video_name": "27d2aea7-5197-54f2-a24b-2b65861d3c7d", "text": "\u5728\u52a8\u6f2b\u4e3b\u9898\u4e2d\uff0c\u5229\u7ef4\u780d\u6740\u5de8\u4eba\u3002"} +{"id": "5001420", "video_name": "0ab97b7a-7b7a-5d2d-9c31-a939d79c1f21", "text": "\u58a8\u897f\u54e5\u7684\u91d1\u5b57\u5854 \u4fe1\u606f: 1\u4e2a\u9644\u4ef6"} +{"id": "3006653", "video_name": "d6dbdd17-c392-530b-abfa-fcf75f2e797d", "text": "\u4e00\u4e2a\u667a\u6167\u57ce\u5e02\u7e41\u5fd9\u5341\u5b57\u8def\u53e3\u7684\u5feb\u901f\u626b\u63cf\uff0c\u6c7d\u8f66\u548c\u4eba\u7fa4\u5306\u5fd9\u7a7f\u68ad\u3002\u6444\u50cf\u673a\u5e94\u8be5\u9ad8\u9ad8\u5730"} +{"id": "0006871", "video_name": "34893f62-e4d7-5408-92f3-5790c198fbdd", "text": "\u7167\u987e\u5730\u7403\uff0c\u5173\u5fc3\u81ea\u5df1\u3002"} +{"id": "3006734", "video_name": "8456bf6f-a60e-5884-9bb3-c37f324e5af7", "text": "\u6d77\u6ee9\u4e0a\u7684\u65f6\u949f\u6b63\u5728\u6652\u592a\u9633\u3002"} +{"id": "1004863", "video_name": "59cef4fd-f2d9-52e5-af07-e4e0943b2004", "text": "\u521b\u9020\u4e00\u4e2a\u88ab\u82b1\u8349\u6811\u6728\u5305\u56f4\u7684\u9886\u57df\uff0c\u4e00\u6761\u901a\u5411\u655e\u53e3\u888b\u5b50\u7684\u9762\u7c89\u75d5\u8ff9\uff0c\u4e00\u4e2a\u6355\u6349\u5154\u5b50"} +{"id": "1006117", "video_name": "702b58a9-ccf3-5d07-80b5-0971eae88499", "text": "\u5c55\u793a\u5b87\u5b99\u6d69\u701a\u7684\u7a7a\u65f7\u3001\u9065\u8fdc\u7684\u661f\u8fb0\uff0c\u4ee5\u53ca\u5b64\u72ec\u7684\u611f\u89c9\u7684\u89c6\u9891\u3002"} +{"id": "1005885", "video_name": "6c3ece8d-ce54-5fc7-8426-f084fce1f141", "text": "\u4e00\u4e2a\u5546\u4eba\u4fef\u89c6\u7740\u4e00\u4e2a\u4e0d\u65ad\u53d1\u5c55\u7684\u57ce\u5e02\u3002"} +{"id": "3003053", "video_name": "db841e51-7c40-5051-b34c-cbf67268b32c", "text": "\u4e00\u4e2a\u7537\u4eba\u7741\u5f00\u4e86\u5bb3\u6015\u7684\u773c\u775b\u3002"} +{"id": "0004937", "video_name": "11db050a-3ec1-5a3a-b717-bad961b18cc4", "text": "\u4e00\u4e2a\u7a7f\u7740\u51ac\u8863\u7684\u7537\u4eba\u5728\u4e0b\u96ea\u7684\u57ce\u5e02\u4ef0\u671b\u5929\u7a7a\uff0c\u5f20\u5f00\u5634\u5df4\u60ca\u53f9\u3002"} +{"id": "3003499", "video_name": "3d7f5fd1-d256-5c15-ba09-94a3e736cc73", "text": "\u751f\u6210\u4e00\u6bb5\u52a8\u6f2b\u89c6\u9891\uff0c\u4e3b\u4eba\u516c\u5728\u529e\u516c\u5ba4\u7684\u684c\u5b50\u524d\u5750\u7740\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "2006790", "video_name": "70c0fcfc-d25e-5af0-b668-b97d543cd5a5", "text": "Source sentence: Mahatma Gandhi\u5728\u57c3\u53ca\u4e0e\u514b\u5229\u5965\u4f69\u7279\u62c9\u4e00\u8d77\u3002\n\nNote: This translation is not accurate as Mahatma Gandhi never visited Egypt and Cleopatra lived thousands of years before Gandhi's"} +{"id": "7004123", "video_name": "f1548ce3-d398-5fba-88da-68459e66c189", "text": "\u745c\u4f3d\u5973\u5b50\u4ee5\u83b2\u82b1\u5f0f\u5750\u59ff\u4ece\u540e\u65b9\u4f38\u5c55\u8fbe\u5230\u5f00\u609f\uff0c\u8fbe\u5230\u8109\u8f6e\u80fd\u91cf\u7684\u5883\u754c\uff0c\u72b9\u5982\u7535\u5f71"} +{"id": "2003033", "video_name": "82d62f2f-9c71-527b-a3e2-827a01d9ad66", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5973\u5b69\u5728\u7f8e\u4e3d\u6d77\u6ee9\u7684\u4e00\u4fa7\u3002"} +{"id": "7004282", "video_name": "f810a80a-24b7-546e-8732-9fe0bc6c15a9", "text": "\u4e00\u53ea\u732b\u6234\u7740\u91d1\u94fe\u5b50\u548c\u592a\u9633\u955c\u5750\u5728\u4eba\u884c\u9053\u4e0a\uff0c\u7528\u9ea6\u514b\u98ce\u8bf4\u5531\u3002"} +{"id": "6002516", "video_name": "e66966d9-1909-5757-b3e5-49590dc59ec0", "text": "\u5728\u5efa\u7b51\u7269\u524d\u9762\u589e\u52a0\u5b89\u5168\u63aa\u65bd\u3002"} +{"id": "4003015", "video_name": "59f4c78d-9814-5b3f-87cb-c6f70078b718", "text": "\u7528\u7fbd\u6bdb\u5199\u8349\u4e66\u4f53\u7684\u4f4e\u8bed\u7f16\u5e74\u53f2\u3002"} +{"id": "2006299", "video_name": "141398d6-bebc-5b1c-aba2-d2fd50a9f9ce", "text": "\u5e26\u6709\u4ee3\u7801\u7247\u6bb5\u6216\u7f16\u7a0b\u7b26\u53f7\u7684\u80cc\u666f\u3002"} +{"id": "4003328", "video_name": "de4a3b6e-f955-504b-a782-e4976a25ee05", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u4eba\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\uff0c\u623f\u95f4\u91cc\u5145\u6ee1\u4e86\u663e\u793a\u76f8\u540c\u4fe1\u606f\u548c\u89c2\u70b9\u7684\u5c4f\u5e55\u7684\u5f62\u8c61\uff0c\u8c61\u5f81\u7740\u8fc7\u6ee4\u6ce1\u4e2d\u7684\u56de\u58f0"} +{"id": "7002376", "video_name": "ab1f7572-15dd-5084-a944-5b0446d90fba", "text": "\u4e00\u8f86\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u9ed1\u591c\u4e2d\u5145\u6ee1\u4e86\u5e7d\u7075\u822c\u7684\u5bc2\u9759\u3002"} +{"id": "0006980", "video_name": "362a7799-98a0-537c-ae57-81250c7951fd", "text": "\u4e00\u4e2a\u5546\u4eba\u6b63\u5728\u7535\u8111\u524d\u5de5\u4f5c\uff0c\u4ed6\u611f\u5230\u7126\u8651\u548c\u75b2\u5026\u3002"} +{"id": "1003012", "video_name": "3756c76b-6191-5b5b-b0d5-be19ccc09de8", "text": "\u7528\u95ea\u7535\u822c\u53ef\u6015\u7684\u6c1b\u56f4\u5efa\u9020\u5efa\u7b51\u7269\uff0c\u8ba9\u5b83\u52a8\u8d77\u6765\u3002"} +{"id": "2006770", "video_name": "33b4cb8d-1b2b-5c2e-86c7-4aa9cb088a2d", "text": "\u4e00\u5f00\u59cb\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u725b\u4ed4\u5939\u514b\u7684\u7537\u5b50\u8eba\u5728\u5730\u4e0a\uff0c\u7136\u540e\u4e00\u4e2a\u7a7f\u7740\u4e2d\u4e16\u7eaa\u88d9\u5b50\u7684\u5973\u4eba\u8dd1\u5411"} +{"id": "1004315", "video_name": "4fbd38ce-ff0e-5b0e-861c-29079851bd3d", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u665a\u4e0a\u7684\u8857\u5934\u72ec\u81ea\u8df3\u53e4\u5178\u821e\u3002"} +{"id": "3004609", "video_name": "e493ec26-549f-5ee9-bdd5-9e3a8f728300", "text": "\u767d\u8272\u7fbd\u6bdb\u5728\u7535\u6c14\u84dd\u8272\u80cc\u666f\u4e0a\uff0c\u4fe1\u606f\u4e3aMONOGRID\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09\u3002"} +{"id": "3005265", "video_name": "6bffd29f-5f7a-5786-8938-c8a36b64f292", "text": "\u5c71\u8c37\u4e2d\u6709\u6b66\u5668\uff0c\u5954\u8dd1\u81f3\u5f53\u5730\u6865\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u611f\uff0c8K\uff0c\u8fd0\u52a84\uff0c\u5e27\u738720\u7684\u76f8\u673a\u5e73\u79fb\u65cb\u8f6c\u3002"} +{"id": "2007328", "video_name": "f6fd9b26-a74f-55b0-a455-c0a8f515c5f9", "text": "\u7537\u4eba\u7684\u7f8e\u4e3d\u9762\u5bb9\u548c\u72fc\u7684\u8eab\u4f53\u3002"} +{"id": "2003128", "video_name": "62e1086d-983b-53b0-88e3-3468459a7f89", "text": "\u592a\u7a7a\u98de\u884c\u4e2d\u7684\u706b\u7bad\u5760\u6bc1\u3002"} +{"id": "3003676", "video_name": "b3225095-c7fa-52e2-a47d-dfcacc6d9037", "text": "\u5f71\u5b50\u94f6\u884c\u662f\u4e00\u5ea7\u5b8f\u4f1f\u58ee\u89c2\u7684\u5efa\u7b51\u7269\uff0c\u4f4d\u4e8e\u5e02\u4e2d\u5fc3\u3002"} +{"id": "2003820", "video_name": "00e225f3-a103-58a0-b443-1f55f2a717e8", "text": "\u4e00\u4e2a\u8db3\u7403\u8fd0\u52a8\u5458\u8dd1\u904d\u4e16\u754c\uff0c\u805a\u96c6\u8eab\u540e\u7684\u4eba\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u53f2\u8bd7\u7ea7\u7535\u5f71\u3002"} +{"id": "8002273", "video_name": "dd7cec49-d359-5a69-b3c4-4dad2ab8afa2", "text": "\u7a7a\u4e2d\u6444\u5f71\u98de\u884c\u6cbf\u7740\u873f\u8712\u66f2\u6298\u7684\u957f\u57ce\u3002"} +{"id": "0004585", "video_name": "0b946311-b5c8-5b2a-bc5e-21984cb01522", "text": "\u521b\u9020\u4ee4\u4eba\u9676\u9189\u7684\u4f18\u96c5\u8ff7\u4eba\u5973\u6027\u5f62\u8c61\uff0c\u6bcf\u4e2a\u90fd\u91c7\u7528\u7cbe\u7f8e\u7684\u59ff\u52bf\u548c\u8ff7\u4eba\u7684\u80cc\u666f\u6765\u589e\u5f3a\u5979"} +{"id": "4003403", "video_name": "b276001a-db98-5138-8327-3639c58c1c55", "text": "\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\uff0c\u57c3\u585e\u4fc4\u6bd4\u4e9a\u5df2\u6545\u7687\u5e1d\u7279\u6c83\u5fb7\u7f57\u65af\u5750\u5728\u4e00\u4f4d\u7f8e\u4e3d\u7684\u57c3\u585e\u4fc4\u6bd4"} +{"id": "4002441", "video_name": "7e08c01c-777a-5443-b7cc-22a6dd1502bb", "text": "\u4e00\u4e2a\u88c5\u9970\u6210\u5de5\u4e1a\u98ce\u683c\u7684\u9152\u5427\u3002\u9152\u5427\u524d\u9762\u7684\u8857\u9053\u5145\u6ee1\u4e86\u706f\u5149\u548c\u8f66\u6d41\u3002\u9152\u5427\u7684\u95e8\u662f"} +{"id": "7002785", "video_name": "dba56e73-ef6c-5765-b6ff-6ca8739ff77d", "text": "Translation: \u4e00\u5e45\u6709\u52a8\u6001\u7684\u4e1b\u6797\u80cc\u666f\uff0c\u7334\u5b50\u5728\u6811\u95f4\u8df3\u8dc3\u5e76\u5403\u4e1c\u897f\u3002"} +{"id": "6004945", "video_name": "d80774f2-317a-59a2-9f38-888be74064da", "text": "\u7535\u5f71\u5f0f\u7684\u955c\u5934\uff0c\u5168\u666f\uff0c\u4e00\u4e2a15\u5c81\u7684\u7537\u5b69\u5728\u7279\u62c9\u7ef4\u592b\u7684\u821e\u5385\u4e2d\u624b\u6301\u4e00\u652f\u67aa\uff0c\u5177\u670920\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5ba1"} +{"id": "3006388", "video_name": "c5f1d9a5-c3e8-5f4f-b477-185bd08523af", "text": "\u4e00\u8258\u7ed5\u7740\u4e00\u4e2a\u6709\u6c14\u6001\u5927\u6c14\u5c42\u7684\u884c\u661f\u8f68\u9053\u98de\u884c\u7684\u592a\u7a7a\u8239\uff0c\u8fd9\u4f7f\u5f97\u8be5\u884c\u661f\u5448\u73b0\u51fa\u7eff\u8272\u3002"} +{"id": "3003333", "video_name": "3319bf61-c270-50d9-bf7b-fb7af3a38dc0", "text": "\u6765\u6e90\u53e5\u5b50\uff1a\u6765\u81ea\u6211\u7684\u82f1\u96c4\u5b66\u9662\u7684\u73b0\u5b9e\u4e3b\u4e49\u8005Dabi Touya Todoroki\u3002\u773c\u775b\u4e0b\u9762\u6709\u70e7\u4f24\u75a4\u75d5\uff0c\u4e0b\u988c\u4e0a"} +{"id": "0003576", "video_name": "3fd116aa-1da3-5d56-894a-b24a4bc995fc", "text": "\u4e00\u53ea\u5c0f\u732b\u98de\u4e0a\u5929\u7a7a\uff0c\u770b\u5230\u4e86\u6708\u4eae\uff0c\u4e00\u53e3\u5403\u6389\u4e86\u6708\u4eae\u3002"} +{"id": "2005700", "video_name": "35015d67-96ef-557a-958a-2e6c002062b4", "text": "\u5e7f\u89d2\u955c\u5934\u3002\u9ed1\u6697\u7684\u573a\u666f\uff1a\u5728\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u4e00\u4e2a\u4eba\u7269\u7ad9\u5728\u8fb9\u7f18\u5904\uff0c\u5fae\u98ce\u8f7b\u62c2\uff0c\u975e\u5e38\u903c"} +{"id": "4002967", "video_name": "04ebed6f-db8e-5df9-82d2-737591d1b134", "text": "\u8d8a\u91ce\u6469\u6258\u8f66\u3001\u5192\u9669\u3001\u5c71\u3001\u6811\u6728\u30016\u540d\u9a91\u624b\u3001\u52a8\u6f2b\u3002"} +{"id": "5001517", "video_name": "f745f981-4a69-5cd1-88d3-6de9af276d2e", "text": "\u4ee5\u5feb\u901f\u7684\u65b9\u5f0f\u8fdb\u5165\u50cf\u77ac\u95f4\u79fb\u52a8\u4e00\u6837\u7684\u5e7b\u60f3\u4e2d\u3002"} +{"id": "7004087", "video_name": "ce0b1164-43f1-522f-88dc-ad709331d5cc", "text": "9:16\u7684\u753b\u9762\u6bd4\u4f8b\u5c55\u793a\u4e86\u81ea\u7136\u4e2d\u7684\u82b1\u56ed\u3001\u5c71\u8109\u3001\u7011\u5e03\u4ee5\u53ca\u65e5\u51fa\u3002"} +{"id": "2004221", "video_name": "f1978adb-f8e2-5680-b7c4-af0fc8f9a95b", "text": "\u4ece\u4e0a\u65b9\u770b\uff0c\u6709100\u53ea\u8682\u8681\u5728\u767d\u8272\u80cc\u666f\u4e0a\u671d\u4e0d\u540c\u7684\u65b9\u5411\u79fb\u52a8\u3002"} +{"id": "6003400", "video_name": "4f31ebe6-bd74-5681-af4a-ca850d4798e7", "text": "\u4e00\u5bf9\u5e78\u798f\u7684\u5df2\u5a5a\u592b\u5987\uff0c\u4ee53D\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2007638", "video_name": "a602d672-0358-5e80-b2fd-5e696c705a2c", "text": "\u4ed6\u4eec\u62ff\u8d77\u5706\u5f62\u7684\u95f2\u8c08\u6258\u76d8\uff0c\u4e0e\u592a\u9633\u7684\u503e\u659c\u89d2\u5ea6\u5f62\u621045\u5ea6\u89d2\uff0c\u5e76\u4e0e\u91d1\u5b57\u5854\u5f62\u6210\u4e00\u6761\u76f4\u7ebf\u3002\u6b64\u65f6\uff0c"} +{"id": "4002817", "video_name": "1b214abf-f84d-52f9-9149-ac01cc87b4a2", "text": "\u4e24\u540d\u5b66\u751f\u6b63\u5728\u8ba8\u8bba\u4ed6\u4eec\u660e\u5929\u7684\u673a\u5668\u5b66\u4e60\u5b9e\u9a8c\u8003\u8bd5\u3002"} +{"id": "3005469", "video_name": "a01636fb-40fc-579e-9632-096d721bd7ca", "text": "\u4ed6\u7684\u738b\u56fd\u5185\u7684\u6559\u80b2\u673a\u6784\u3002"} +{"id": "6002517", "video_name": "6a37df3e-fd01-5e32-a368-9283d884f8d9", "text": "\u4e00\u540d\u7537\u5b50\u8d70\u8fc7\u4e00\u5ea7\u95f9\u9b3c\u7684\u623f\u5b50\u3002"} +{"id": "0006356", "video_name": "2b26f3c0-0011-5801-bc37-55731461ac05", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u6708\u7403\u6218\u573a\u4e0a\u5954\u8dd1\uff0c16\u6beb\u7c73\uff0c\u9ed1\u767d\uff0c\u5199\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1006936", "video_name": "7ee51dd5-234d-5634-a91d-14c850e19ce8", "text": "\u7528\u4ea8\u5229\u00b7\u5361\u7ef4\u5c14\u626e\u6f14\u90a6\u5fb7\u7684\u65b9\u5f0f\uff0c\u5236\u4f5c\u300a\u8d4c\u573a\u7687\u5bb6\u300b\u7535\u5f71\u7684\u9884\u544a\u7247\u3002"} +{"id": "2003817", "video_name": "71bc6ddf-8a3a-54b4-82f9-3c2c29cfcd89", "text": "\u4f7f\u7528\u7ea2\u8272\u9f99\u548c\u7535\u5f71\u955c\u5934\u62cd\u6444\u76844K\u5168\u666f\u98de\u8d8a\uff0c\u63cf\u7ed8\u4e86\u5947\u79d1\u00b7\u6c99\u7ef4\u5c14\u521b\u4f5c\u7684\u7535\u5f71\u300a\u661f\u4f53\u57ce"} +{"id": "4003515", "video_name": "65482a26-58fb-57bc-914f-8483a577e203", "text": "\u65e0\u9650\u653e\u5927\u955c\u5934\u7a7f\u8fc7\u90c1\u90c1\u8471\u8471\u7684\u96e8\u6797\u666f\u89c2\u3002"} +{"id": "2006623", "video_name": "fde35043-7d83-57bf-b3e0-2ab396e81c78", "text": "3D \u5f69\u8272\u6c34\u679c\u4ece\u7c89\u8272\u5929\u7a7a\u843d\u4e0b\u3002"} +{"id": "5001722", "video_name": "bdf7fecb-6d53-51dd-9ec2-c26b66647e13", "text": "\u75284K\u5206\u8fa8\u7387\u76843D\u52a8\u753b\u5236\u4f5c\u4e00\u90e8\u4e13\u4e1a\u7684\u89c6\u9891\uff0c\u5185\u5bb9\u4e3a\u591a\u5e74\u6765\u7535\u5b50\u6e38\u620f\u7684\u6f14\u53d8\u3002"} +{"id": "2004818", "video_name": "739b88f5-0924-54d8-8e25-29d8b836f0a1", "text": "\u65e5\u672c\u7684\u6e38\u620f\u5385\u91cc\u6709\u53ea\u732b\u3002"} +{"id": "2005842", "video_name": "07bdeda0-3802-5474-9bd5-60fd1a8aa757", "text": "\u6545\u4e8b\u59cb\u4e8e\u4e00\u4e2a\u53eb\u505a\u9732\u5a1c\u7684\u5e74\u8f7b\u5973\u5b69\u3002"} +{"id": "2007099", "video_name": "09c9de09-e86c-50f6-b288-5215cd4f1eb6", "text": "\u91d1\u53d1\u7537\u5b50\u5728\u6d1e\u7a74\u91cc\u611f\u5230\u5bb3\u6015\u3002"} +{"id": "4002508", "video_name": "895a86a0-9530-590b-8ae7-470614d68d0d", "text": "\u68a6\u4e2d\u9c7c\u513f\u5728\u6c34\u4e2d\u6e38\u52a8\u7684\u5f62\u8c61\uff0c\u68a6\u5e7b\u822c\u7684\u6c1b\u56f4\u3002"} +{"id": "7002834", "video_name": "3f7d0b8d-8720-53d3-8f23-7dd1c0a1f40d", "text": "\u4e00\u6735\u9ec4\u82b1\u5728\u84dd\u8272\u6d77\u6d0b\u4e2d\uff0c\u7f8e\u4e3d\u52a8\u4eba\u3002"} +{"id": "2003673", "video_name": "bb1a37eb-663f-5428-a15f-e4ff82592d9e", "text": "\u4e00\u4f4d\u7f8e\u9e97\u7684\u65af\u91cc\u862d\u5361\u5e74\u8f15\u5973\u5b50\u6b63\u5728\u770b\u8457\u651d\u5f71\u6a5f\u5fae\u7b11\u4e26\u8aaa\u8a71\uff0c\u5177\u6709\u96fb\u5f71\u611f\uff0c4K\u3002"} +{"id": "2006897", "video_name": "75453ebc-6858-5da3-9e0b-dd5b8c4b9cb0", "text": "\u73ca\u745a\u7901\u5496\u5561\u5385\u91cc\u7684\u9c7c\u6e38\u6765\u6e38\u53bb\u3002\u52a8\u753b\u3001\u79fb\u52a8\u3001\u52a8\u4f5c1\u3002"} +{"id": "6003914", "video_name": "4f9c8ba3-218b-55cd-ac44-6e6819571f72", "text": "\u5728\u6d77\u6d0b\u4e2d\u5f00\u91c7\u77f3\u6cb9\u5bf9\u73af\u5883\u9020\u6210\u4e86\u5371\u5bb3\uff08\u4fef\u89c6\u89d2\u5ea6\uff09\u3002"} +{"id": "4003397", "video_name": "5cc74ea8-b9e9-584a-8de9-60b6bc9cfccd", "text": "\u4e00\u7247\u84dd\u5929\uff0c\u4e00\u7247\u91d1\u8272\u7684\u9ea6\u7530\uff0c\u4e00\u53ea\u9e64\u98de\u8fc7\u3002"} +{"id": "1004040", "video_name": "4ae024e2-abbb-591b-a069-b658388e8235", "text": "\u5728\u591c\u665a\u8d70\u5728\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\u7684\u89c6\u89d2\u3002"} +{"id": "3004475", "video_name": "f2cf7d62-bafa-5707-9cda-2624752166c5", "text": "\u4e00\u53ea\u732b\u6b63\u5728\u7ea2\u5730\u6bef\u4e0a\u7761\u89c9\uff0c\u65c1\u8fb9\u662f\u71c3\u70e7\u7740\u6728\u67f4\u7684\u58c1\u7089\u3002\u8d70\u5eca\u91cc\uff0c\u5916\u9762\u7684"} +{"id": "2006084", "video_name": "a5c0a0ed-5340-5ad2-bfaa-339cb7429af5", "text": "1978\u5e74\u7684\u7535\u5f71\uff0c\u63cf\u8ff0\u4e86\u4e00\u7247\u96fe\u6c14\u7f2d\u7ed5\u7684\u68ee\u6797\uff0c\u6709\u4e00\u53ea\u98de\u884c\u7684\u5c0f\u84dd\u8272\u53d1\u5149\u4ed9\u5973\u3002"} +{"id": "7002188", "video_name": "b0b090fa-c7f6-586d-9791-eae87141bea0", "text": "\u68ee\u6797\u91cc\u7684\u5973\u4eba\uff0c\u591c\u665a\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u9897\u5927\u661f\u661f\u95ea\u8000\u3002"} +{"id": "3006658", "video_name": "4a473db9-d30b-5330-9759-84f5ea24bd82", "text": "\u4e24\u4e2a\u5b69\u5b50\u5728\u6d77\u8fb9\u8ffd\u9010\u6d77\u6d6a\u3002"} +{"id": "3004729", "video_name": "3ccee713-b31e-53b6-910d-abdac0c53cf8", "text": "\u82ad\u857e\u821e\u8005\u5728\u706b\u7130\u80cc\u666f\u4e0b\u8df3\u821e\uff0c\u903c\u771f\uff0c\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "0005884", "video_name": "22c48527-e209-5074-b25f-9b96d4c5b615", "text": "training, and model deployment.\n\nAI\u6d41\u7a0b\u56fe\u5c55\u793a\u4e86\u521b\u5efa\u548c\u90e8\u7f72AI\u89e3\u51b3\u65b9\u6848\u6240\u6d89\u53ca\u7684\u4e0d\u540c\u6b65\u9aa4\u548c\u8fc7\u7a0b\uff0c\u5982\u6570\u636e\u6536\u96c6\u3001\u6570\u636e\u9884\u5904\u7406\u3001\u6a21\u578b"} +{"id": "4004455", "video_name": "8050f64d-2f80-57b1-aabe-b5c190285ea5", "text": "\u8fd9\u4e2a\u89d2\u8272\u662f\u4e2a\u5b69\u5b50\uff0c\u4ed6\u7684\u5f62\u8c61\u770b\u8d77\u6765\u50cf60\u5e74\u4ee3\u7684\u98ce\u683c\u3002"} +{"id": "3004232", "video_name": "ee5fe2f1-a06a-5e5d-bc9e-0734c9f72713", "text": "\u4ee4\u4eba\u60ca\u53f9\u7684\u753b\u9762\u5c55\u793a\u4e86\u88ab\u6446\u653e\u5728\u534e\u4e3d\u796d\u575b\u4e0a\u7684\u88ab\u65e5\u98df\u906e\u853d\u7684\u7fe1\u7fe0\uff0c\u88ab\u8d85\u73b0"} +{"id": "6003701", "video_name": "a1fed7a8-a128-5c95-93b8-5cc14467146f", "text": "\u52a8\u6f2b\u5899\u4e0a\u7684\u753b\u9762\u6d3b\u4e86\u8d77\u6765\uff0c\u5f00\u59cb\u8df3\u821e\u3002"} +{"id": "6002005", "video_name": "264e3548-f930-50e8-88fc-e5263f2a1e82", "text": "\u7eb3\u65af\u9c81\u4e01\u00b7\u970d\u8d3e\u7ad9\u5728\u4ed6\u5bb6\u95e8\u524d\u601d\u8003\u3002"} +{"id": "1003821", "video_name": "4697bb63-9f63-5ffe-bd7c-708e3c20fd7d", "text": "\u5973\u58eb\u5728\u9ed1\u6697\u4e2d\u884c\u8d70\u3002"} +{"id": "4004380", "video_name": "cd8db996-f7c2-5115-a916-899ca66b54b8", "text": "4K\u5e7b\u60f3\u706b\u7130\u573a\u666f\u50cf\u9b54\u591a\uff0c\u80cc\u666f\u6709\u4e00\u53ea\u98de\u9f99\u3002"} +{"id": "2003632", "video_name": "ae5b3c5a-18e1-57c0-b325-1d3f8caccbda", "text": "\u5df4\u585e\u7f57\u90a3SC\u83b7\u5f97\u89e3\u653e\u8005\u676f"} +{"id": "6004836", "video_name": "a8377482-5f66-5dae-b32d-b1320d0f1299", "text": "\u4e00\u4e2a\u6f5c\u6c34\u7684\u7537\u4eba\uff0c\u6d77\u5e95\uff0c\u9c7c\uff0c\u771f\u5b9e\uff0c\u903c\u771f\uff0c\u73b0\u5b9e\u3002"} +{"id": "1005351", "video_name": "62625eb1-6cc0-5301-97e5-857c3d2e158a", "text": "\u7535\u5f71\u300a\u7f8e\u56fd\u5f0f\u5c04\u51fb\u300b \u7c7b\u578b\uff1a\u620f\u5267 \u60c5\u611f\uff1a\u4fb5\u7565\u6027 \u5730\u70b9\uff1a\u9633\u5149\u7167\u8000\u4e0b\u7684\u51b7\u9177\u529e\u516c\u5ba4"} +{"id": "2004346", "video_name": "aa6d5f4f-6db0-5afb-9e12-c7a632fbcc9f", "text": "\u5730\u5e73\u7ebf\u4e0a\u7684\u592a\u9633\u5df2\u843d\u4e0b\uff0c\u6d77\u6d6a\u8d77\u4f0f\u3002"} +{"id": "0003731", "video_name": "427ece57-4266-53f6-a5a6-97fa07b286d8", "text": "\u53e4\u4ee3\u963f\u52aa\u7eb3\u5947\uff0c\u6765\u81ea\u661f\u9645\u7684\u751f\u7269\uff0c\u4e58\u5750\u5de8\u5927\u7684\u98de\u884c\u5668\u964d\u4e34\u5230\u5730\u7403\u4e0a\u3002\u4e16\u754c\u4e3a\u4e4b\u60ca"} +{"id": "6003853", "video_name": "71a270d4-2a39-5a90-aca9-053e2725b6dd", "text": "\u4e00\u4e2a\u6807\u5fd7\uff0c\u4e0a\u9762\u5199\u7740\u201c\u6211\u7231\u4f60\u201d\uff0c\u591a\u5f69\u9713\u8679\u706f\uff0c\u591a\u5f69\u95ea\u70c1\u7684\u661f\u661f\u548c\u4e0d\u540c\u989c\u8272\u7684\u70df\u82b1\u95ea"} +{"id": "0006731", "video_name": "31e3395e-1b43-5e51-8061-a63ee477233d", "text": "\u7528\u4eba\u4f53\u7684\u5f62\u5f0f\u5c55\u73b0\u96f7\u514b\u8428\u65af\u6c7d\u8f66\u3002"} +{"id": "7003062", "video_name": "f1a74239-94e0-5f71-87bc-8e33fafb5d51", "text": "\u6211\u88ab\u664b\u5347\u4e86 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002956", "video_name": "98240fc8-53b6-58ec-b73b-c128f8554ca0", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u4e00\u4e2a\u95f9\u9b3c\u7684\u623f\u5b50\u91cc\u7ad9\u5728\u623f\u95f4\u7684\u89d2\u843d\uff0c\u8fd9\u662f\u4e00\u90e8\u7535\u5f71\u822c\u76844k\u6050\u6016\u7247\u3002"} +{"id": "8001992", "video_name": "b27f9f4e-69a9-522f-8db3-198d9df28371", "text": "\u5b87\u822a\u5458\u670d\u5e26\u7740\u624b\u81c2\u4e0a\u7684\u79fb\u52a8\u6309\u6469\u5668\u3002"} +{"id": "7002855", "video_name": "f8c00966-742e-5f5d-9247-72494a0e0c9c", "text": "\u5728\u592a\u9633\u4e2d\u592e\u521b\u5efa\u592a\u9633\u7cfb\uff0c\u5730\u7403\u6cbf\u7740\u81ea\u5df1\u7684\u8f68\u9053\u65cb\u8f6c\u3002"} +{"id": "8003482", "video_name": "a40b1d05-208f-5e90-8abb-46f0635b20ad", "text": "\u5c0f\u7cbe\u7075\u5728\u53a8\u623f\u5730\u677f\u4e0a\u5954\u8dd1\u3002"} +{"id": "8002629", "video_name": "d6f029f1-7698-577e-b2e0-dfbee29e1dae", "text": "\u4e00\u7fa4\u9cb8\u9c7c\u5728\u4e2d\u4e16\u7eaa\u6751\u5e84\u4e0a\u7a7a\u98de\u7fd4\uff0c\u6e29\u548c\u8212\u7f13\u3002"} +{"id": "2004885", "video_name": "6d992223-210e-5885-8d8b-9ff1d5886964", "text": "\u5728\u56fe\u4e66\u9986\u91cc\uff0c\u4e3b\u8981\u5973\u5b69\u5728\u5b66\u4e60\u548c\u505a\u7b14\u8bb0\uff0c\u91c7\u7528\u4e86Mamoru Hosoda\u98ce\u683c\uff0c\u624b\u7ed8\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "0004218", "video_name": "053ddea1-09ce-5c9e-99e2-a8cfb9b0ff7e", "text": "\u7425\u73c0\u00b7\u8d6b\u5fb7\u5728\u5979\u7684\u5e8a\u4e0a\u8df3\u8dc3\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u7ea74K\u3002"} +{"id": "7002447", "video_name": "a6374a15-a8a2-536a-a8ae-00eb1041ecbf", "text": "\u4e00\u5177\u9ab7\u9ac5\u8d70\u5728\u660f\u6697\u7684\u8d70\u5eca\u91cc\u3002"} +{"id": "8002600", "video_name": "42122bdc-9fef-532f-b549-3c17d4e90e3e", "text": "4K \u8d85\u5199\u5b9e\u7684\u5b5f\u52a0\u62c9\u7537\u5b50\u7167\u7247\uff0c\u62cd\u6444\u4e8e\u6e29\u65af\u987f\u00b7\u4e18\u5409\u5c14\u65f6\u671f\u7684\u5e72\u65f1\u65f6\u671f\u3002"} +{"id": "0006743", "video_name": "3218f4d4-988e-5652-94f2-074d761dc24c", "text": "\u68ee\u6797\u91cc\u7684\u5154\u5b50\u5728\u6668\u96e8\u4e2d\u5954\u8dd1\u3002 \n\nSource sentence: The book on the table is mine. \n\n\u684c\u5b50\u4e0a\u7684\u4e66\u662f\u6211\u7684\u3002"} +{"id": "4002100", "video_name": "a798f4f1-90d7-5c78-b452-638819e20df6", "text": "\u56fe\u7247\u4e2d\u7684\u8f66\u8f86\u6b63\u5728\u626d\u66f2\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0003724", "video_name": "426453c5-28ed-5d78-8e29-e31245164a96", "text": "\u5361\u9a6c\u5c14\u00b7\u54c8\u6851\u7ad9\u5728\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4e2d\u592e\uff0c\u5929\u7a7a\u4e2d\u7684\u592a\u7a7a\u98de\u8239\u6b63\u5728\u8fdb\u5165\u672a\u6765\u4e3b\u4e49\u4e16\u754c\uff0c\u6709\u7740\u9ed1\u6697\u7684"} +{"id": "8001029", "video_name": "761ccb0a-f3a9-5a8f-ac08-e2a30232ee8e", "text": "\u8d85\u4eba\u80a9\u625b\u5730\u7403\u3002"} +{"id": "2005313", "video_name": "813f853f-0d53-5100-b4ad-f60ff1f72b4a", "text": "\u6297\u8bae\u8005\u5728\u52a0\u62ff\u5927\u516c\u8def\u4e0a\uff0c\u4ee5\u7535\u89c6\u5e7f\u544a\u7684\u65b9\u5f0f\uff0c\u5411\u8c6a\u534e\u767d\u8272\u5de8\u578bSUV\u6254\u6c7d\u6cb9\u5f39\u3002"} +{"id": "2005843", "video_name": "34fedf84-eeb6-5120-8d50-4d1ad96af693", "text": "\u7d2b\u8272\u8349\u8393\u7530\u7279\u5199\u8fd1\u666f\uff0c\u6162\u52a8\u4f5c\u3002\u65e0\u5929\u7a7a\u3002"} +{"id": "5001110", "video_name": "85f440ef-19da-5520-8881-131a016f029e", "text": "\u80cc\u666f\u4e2d\u7684\u4e00\u5ea7\u5c71\uff0c\u8425\u9020\u4e86\u6b22\u5feb\u660e\u4eae\u7684\u6c1b\u56f4\u3002"} +{"id": "1003681", "video_name": "43db5a0b-aedf-5ffd-8ee2-8c10b9b24508", "text": "\u4e00\u4e2a\u53ebEthan\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u53ebMia\u7684\u5973\u5b69"} +{"id": "3006774", "video_name": "b32d85e0-b2ef-5b89-838e-9375d072e117", "text": "\u5973\u5b69\u770b\u5230\u98de\u884c\u5f57\u661f\u6709\u957f\u957f\u660e\u4eae\u7684\u5c3e\u5df4\u3002"} +{"id": "2004857", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "\u6574\u9f50\u6253\u626e\u7684\u4eba\u5728\u529e\u516c\u5ba4\u91cc\u63e1\u624b\u3002"} +{"id": "6002860", "video_name": "d995ff72-f21b-51c0-8ada-8737c7844466", "text": "\u4e24\u4e2a\u5973\u5b69\u5728\u5c0f\u5c4b\u91cc\u73a9\u800d\u3002"} +{"id": "7002622", "video_name": "61361de3-9322-5eef-8bfb-e03718a07c2c", "text": "\u5feb\u901f\u5207\u6362\u5230\u6d82\u9e26\u827a\u672f\u5bb6\u5728\u5899\u4e0a\u521b\u9020\u5145\u6ee1\u6d3b\u529b\u7684\u827a\u672f\u3002"} +{"id": "0003826", "video_name": "442a088e-95b6-551a-80b3-40a0303ab2e6", "text": "\u7070\u72fc\uff0c\u51e0\u4f55\u9886\u57df\u7684\u5b88\u62a4\u8005\uff0c\u9ad8\u5927\u800c\u81ea\u8c6a\u5730\u5c79\u7acb\u7740\uff0c\u6bdb\u76ae\u4e0a\u88c5\u9970\u7740\u590d\u6742\u7684\u56fe\u6848"} +{"id": "1006899", "video_name": "7e281a95-85e9-546e-ab63-dcb37b5e67a7", "text": "\u4e00\u6761\u901a\u5411\u65e0\u9650\u7684\u697c\u68af\uff0c\u7a81\u663e\u51fa\u6210\u529f\u4e4b\u65c5\u662f\u4e00\u6b65\u4e00\u6b65\u5efa\u7acb\u7684\u601d\u60f3\u3002"} +{"id": "0003645", "video_name": "40f254c6-4854-5727-8150-fcffa96c41b6", "text": "\u4e00\u6761\u6f02\u6d6e\u5728\u6d77\u4e2d\u7684\u9c7c\u3002"} +{"id": "1004997", "video_name": "5c5dd3d0-1549-562a-b6ad-5fcf2093e71e", "text": "\u6211\u4e0d\u77e5\u9053\u5982\u4f55\u521b\u5efa\u4e00\u4e2a\u666e\u901a\u7684\u63d0\u793a\u3002"} +{"id": "2005356", "video_name": "a53098b3-c2ae-5d3b-a337-777dcadc6f98", "text": "\u7f8e\u4e3d\u7684\u9a6c\u8fea\u7eb3\u4ee5360\u5ea6\u7684\u4f18\u7f8e\u52a8\u4f5c\u3002"} +{"id": "1004537", "video_name": "544b4ae7-e100-5d79-8042-d6a2df8a8004", "text": "\u4e09\u4e2a\u6708\u4eae\u5728\u65cb\u8f6c\uff0c\u5f71\u7247\u4ee54K\u5e7f\u89d2\u53d8\u7126\uff0c\u903c\u771f\u9707\u64bc\u3002"} +{"id": "8003722", "video_name": "6e56cc93-8f5a-5017-893a-1442bca49e7d", "text": "\u5974\u96b6\u4ece\u8857\u4e0a\u7684\u7537\u5b69\u90a3\u91cc\u62ff\u4e86\u534a\u4e2a\u751c\u70b9\u540e\uff0c\u62ff\u7740\u4e00\u4e2a\u76d8\u5b50\u7684\u751c\u70b9\u6765\u5230\u8c22\u8d6b\u8428\u5e0c\u5e03\u7684"} +{"id": "2007501", "video_name": "8c61a37f-ac28-5bbc-a0f1-011ae8e10089", "text": "\u60e7\u6015\u7684\u8033\u6735\u53d7\u5230\u5b87\u5b99\u7684\u7231\u7684\u4fdd\u62a4\u3002"} +{"id": "3005062", "video_name": "67b82da0-55a9-542a-a74b-2e85270ce6b0", "text": "\u95ea\u95ea\u53d1\u5149\u7684\u96e8\uff0c\u95ea\u7535\uff0c\u4e00\u5934\u72ee\u5b50\u51fa\u73b0\u5728\u5979\u9762\u524d\u3002"} +{"id": "8003146", "video_name": "6b031fdc-694b-5a07-ae94-9c4b1edc3718", "text": "\u4efb\u52a1\uff1a\u4e0d\u53ef\u80fd\u7684\u98ce\u683c\uff0c\u6211\u60f3\u8981\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u5e05\u54e5\u8d70\u8fdb\u6d74\u5ba4\uff0c\u8131\u4e0b\u88e4\u5b50\uff0c\u4ece\u5185\u88e4\u91cc\u62ff\u51fa\u4e00"} +{"id": "1003275", "video_name": "3c46bb5b-56a4-5639-8a91-9cb4b19df735", "text": "\u4e00\u5e45\u7a7a\u4e2d\u4fef\u77b0\u7684\u753b\u9762\uff0c\u63cf\u7ed8\u4e86\u4e00\u5ea7\u4f4d\u4e8e\u504f\u8fdc\u6751\u5e84\u7684\u8001\u6728\u5c4b\uff0c\u4e00\u6761\u957f\u957f\u7684\u6811\u6797\u5c0f\u9053\u901a"} +{"id": "2004174", "video_name": "8f6c7d25-971e-5acb-8083-51cd0c6fcbba", "text": "\u5410\u75f0\u5728\u6c34\u6ce5\u4e0a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002340", "video_name": "b2955764-4d1b-532a-b110-110f2eb302b7", "text": "\u521b\u4f5c\u4e00\u4e2a\u52a8\u753b\u89c6\u9891\uff0c\u4ee5\u4e00\u4e2a\u53cb\u597d\u7684\u9f99\u4e3a\u4e3b\u89d2\uff0c\u5c55\u5f00\u4e86\u4e00\u6b21\u5bfb\u627e\u4e9a\u7279\u5170\u8482\u65af\u5931\u843d\u57ce\u5e02\u7684\u5192\u9669\u4e4b\u65c5"} +{"id": "6003183", "video_name": "384892ca-3783-5728-bfa6-1c04f3c4fe63", "text": "Willy Wonka\u5728\u54c8\u5229\u6ce2\u7279\u7684\u9b41\u5730\u5947\u7403\u573a\u4e0a\u9a91\u7740\u626b\u5e1a\u98de\u884c\u3002"} +{"id": "8002854", "video_name": "44476279-4bff-5ad9-b64e-6bf59f290bfa", "text": "\u753b\u51faSumi\u548cJaya\u5750\u5728\u684c\u5b50\u65c1\u5b8c\u6210\u4f5c\u4e1a\uff0c\u770b\u8d77\u6765\u6709\u70b9\u65e0\u804a\u3002"} +{"id": "6002675", "video_name": "3b372aca-49b0-534e-8629-7d791525ef46", "text": "\u7a97\u6237\u65c1\u8fb9\u7684\u7a97\u5e18\u7740\u706b\u4e86\u3002"} +{"id": "8003257", "video_name": "77ef9b64-8b1e-5373-bd9a-d599dbbc9a97", "text": "\u53e4\u96c5\u5178\u5927\u5b66\u7684\u89c6\u9891\u955c\u5934"} +{"id": "0003828", "video_name": "44357aa3-7e3b-5d22-900a-c5625a3b26b6", "text": "\u8eab\u7a7f\u6a59\u8272\u8df3\u4f1e\u670d\u3001\u53d1\u578b\u950b\u5229\u7684\u7537\u5b50\uff0c\u4e0e\u300a\u9f99\u73e0\u300b\u4e2d\u7684\u5b59\u609f\u7a7a\u4e00\u6a21\u4e00\u6837\uff0c\u5728\u7d2b\u8272\u591c\u7a7a\u4e2d\u4e0e"} +{"id": "3004313", "video_name": "bf994236-c1ba-5274-9018-e1da72f6667f", "text": "\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u5728\u4ed6\u7684\u7b2c\u4e00\u6b21\u7535\u529b\u5c55\u89c8\u4e0a\u3002"} +{"id": "7003001", "video_name": "89d4becc-80e2-55fc-bf80-7fa811609860", "text": "\u8d70\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u4e0a\uff0c\u9047\u5230\u4e86\u4e00\u53ea\u5f3a\u5927\u7684\u9b3c\u9b42\u3002"} +{"id": "0005252", "video_name": "174361a0-f927-5be0-b810-ccc3158c1359", "text": "\u610f\u5927\u5229\u5317\u90e81943\u5e74\u4e00\u540d\u5973\u5b50\u72ec\u81ea\u6b65\u884c\u5728\u4e61\u95f4\u5c0f\u8def\u4e0a\uff0c\u7c73\u54c8\u5c14\u00b7\u7d22\u63d0\u9c81\u514b\u7528\u6c34\u5f69\u548c\u94a2\u7b14\u7ed8\u5236\u7684"} +{"id": "1004693", "video_name": "573b5823-fd9c-598a-842a-308a65ccfb4d", "text": "\u4e00\u4e2a\u6b66\u58eb\u7ad9\u5728\u5c71\u4e0a\uff0c8K\u8d85\u9ad8\u6e05\uff0c\u903c\u771f\u3002"} +{"id": "7002428", "video_name": "b4a55310-58d1-534d-9165-810e0379ff11", "text": "\u808c\u8089\u58ee\u5b9e\u7684\u5065\u7f8e\u8fd0\u52a8\u5458\u548c\u4ed6\u7684\u7236\u6bcd\u966a\u7740\u4e00\u4f4d\u7b11\u5bb9\u53ef\u7231\u768410\u5c81\u5973\u5b69\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002"} +{"id": "3005677", "video_name": "888f5e88-0f1a-5510-a5da-40ae7964c8f3", "text": "\u4e94\u8292\u661f\u4eea\u5f0f\u3002\u9ad8\u6e05\u6670\u5ea6\u3001\u9ad8\u7ec6\u8282\u3001\u7535\u5f71\u822c\u3002"} +{"id": "6002773", "video_name": "724e7c96-ef6e-5085-9858-89c918834f92", "text": "\u5728\u74e6\u6d1b\u91cc\u4e9a\u519b\u961f\u7684\u6700\u524d\u7ebf\uff0c\u7ad9\u7740\u5c06\u519b\u827e\u8389\u5b89\u5a1c\uff0c\u5979\u662f\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684\u6218"} +{"id": "3004297", "video_name": "f6789145-07a2-596e-a25d-3347905356a7", "text": "\u9b54\u6cd5\u68ee\u6797\u4e2d\u7684\u7ea2\u8272\u72ec\u89d2\u517d\uff0c\u4ee5\u68b5\u9ad8\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7003562", "video_name": "327f5ce8-d086-5d20-8ec0-ff0210f81455", "text": "\u7537\u62a4\u58eb \u4fe1\u606f\uff1a\u529b\u91cf (\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53)"} +{"id": "5001973", "video_name": "49c3a170-60f8-531e-89b0-7846540fdbb9", "text": "\u5723\u8bde\u8282\u7684\u7a0b\u5e8f\u5458\u98de\u7fd4\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "1004781", "video_name": "5864c999-196b-5ff2-9d17-fea7fcb1ee7b", "text": "\u7bdd\u706b\u71c3\u70e7\u7684\u7167\u7247\uff0c\u7ec6\u8282\u60ca\u4eba\u3002"} +{"id": "6002739", "video_name": "cd894a36-3123-581f-9e7a-86a798535a29", "text": "\u5361\u624e\u7c73\u5b89\u53d7\u4e86\u91cd\u4f24\u3002\u552f\u4e00\u6551\u4e86\u6211\u4e00\u547d\u7684\u662f\u6211\u8fd8\u7a7f\u7740\u7684\u5b87\u822a\u670d\u3002\u56e0\u4e3a\u8231\u5185\u5145\u6ee1\u4e86\u70df"} +{"id": "1005955", "video_name": "6d591c37-8655-507a-b9b4-271bbf245291", "text": "\u5728\u4ed6\u5411\u963f\u62c9\u7948\u6c42\u6307\u5f15\u7684\u65f6\u5019\uff0c\u8138\u4e0a\u9732\u51fa\u5b81\u9759\u7684\u8868\u60c5\u3002"} +{"id": "2007853", "video_name": "55580a2d-556f-588e-b0dc-f4a472940781", "text": "\u827e\u767b\u00b7\u6731\u5728\u4e2d\u56fd\u4e0a\u6d77\u8d70\u8def\u3002"} +{"id": "2003697", "video_name": "496e4c98-d8b3-535a-af73-94b73f71bab3", "text": "\u4e00\u4f4d\u7a7f\u7740\u7070\u8272\u6bdb\u8863\u3001\u5934\u53d1\u7070\u767d\u7684\u5976\u5976\u7ad9\u5728\u70df\u56f1\u5bf9\u9762\u7684\u623f\u9876\u4e0a\u3002"} +{"id": "4002231", "video_name": "14936525-2831-5d94-a506-ff7e9e4f684a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5c0f\u5973\u5b69\u548c\u5979\u7684\u5976\u5976\u5728\u53a8\u623f\u91cc\u3002"} +{"id": "2006683", "video_name": "4a234bd3-b9f0-59bd-9ff7-8467023d05aa", "text": "\u4e00\u4e2a\u88ab\u96fe\u6c14\u7b3c\u7f69\u7740\u7684\u53e4\u8001\u5bfa\u5e99\uff0c\u6df1\u6df1\u5730\u5d4c\u5728\u795e\u79d8\u7684\u68ee\u6797\u4e2d\uff0c\u5e94\u8be5\u5524\u8d77\u795e"} +{"id": "8002720", "video_name": "a9b4089d-fbc6-58e3-aab7-801fe0e013f1", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u4f4f\u5728\u516c\u5bd3\u91cc\u3002"} +{"id": "6004253", "video_name": "9df925d1-7b01-5f5b-8e54-07c2028a1cfe", "text": "\u7a7a\u767d\u65e0\u6587\u5b57\u7684Playboi Carti\u4e13\u8f91\u5c01\u9762\u3002"} +{"id": "2007635", "video_name": "26e56463-a556-5504-9465-e05d16a815ac", "text": "\u81ea\u884c\u8f66\u62e5\u6709\u5206\u5f62\u751f\u957f\u7684\u65b0\u81ea\u884c\u8f66\uff0c\u8f7b\u677e\u8d62\u5f97\u6bd4\u8d5b\u3002"} +{"id": "8002277", "video_name": "0c50d101-d5bb-5425-9dd3-6977d829cf16", "text": "\u90a3\u4e2a\u73a9\u5076\u548c\u5c0f\u718a\u5728\u7f8e\u4e3d\u7684\u57ce\u5821\u91cc\u8df3\u821e\u3002"} +{"id": "2003878", "video_name": "08937acf-2fa9-5c76-b222-fa19beff6f82", "text": "\u4e00\u4e2a\u5728\u8239\u4e0a\u7684\u7537\u4eba\u770b\u5230\u4e86\u4e00\u4e2a\u52a8\u753b\u5f0f\u7684\u5c9b\u3002"} +{"id": "7004985", "video_name": "9517b7d6-e09f-547c-8c24-1d8b44aeebff", "text": "\u8611\u83c7\u7684\u51fa\u9488\u9636\u6bb5\u662f\u83cc\u4e1d\u4f53\u7684\u7ed3\u679c\u9636\u6bb5\u5468\u671f\u7684\u4e00\u90e8\u5206\u3002"} +{"id": "2006426", "video_name": "68df24c3-bfef-5bf4-9027-02f6a99de2da", "text": "\u6d77\u76d7\u8239\u6b63\u5728\u822a\u884c\uff0c\u4f7f\u6c34\u7684\u6d41\u52a8\u5e73\u7a33\uff0c\u4f7f\u8239\u7684\u8fd0\u52a8\u5e73\u7a33\u3002"} +{"id": "2007987", "video_name": "d6ebef07-2d58-596a-b86b-e620a0defa3f", "text": "\u5317\u98ce\u548c\u592a\u9633\u4e89\u8bba\u4e0d\u4f11\uff0c\u8c01\u7684\u80fd\u91cf\u66f4\u5927\u3002"} +{"id": "1006998", "video_name": "800c890c-b0ed-5789-86bd-68ccd76f1818", "text": "\u4e00\u53ea\u718a\u732b\u5728\u706b\u661f\u4e0a\u5403\u5bff\u53f8\u3002"} +{"id": "8001448", "video_name": "3bd6b259-8b6f-57ed-8aa4-bc50923d187a", "text": "\u8fd9\u4f4d\u5973\u58eb\u8d70\u5728\u8857\u4e0a\uff0c\u8138\u4e0a\u6302\u7740\u5fae\u7b11\u3002\u5979\u611f\u5230\u5e78\u798f\u548c\u5e73\u9759\u3002"} +{"id": "6004385", "video_name": "84881423-67be-5ee7-8530-414350e6c48f", "text": "\u5728\u529e\u516c\u5ba4\u91cc\u7684\u5723\u8bde\u6811\u4e0b\uff0c\u6709\u50cf\u300a\u98de\u51fa\u4e2a\u672a\u6765\u300b\u4e2d\u7684\u672c\u5fb7\u4e00\u6837\u8df3\u821e\u7684\u673a\u5668\u4eba\uff0c\u80cc\u666f\u662f\u5723\u8bde"} +{"id": "2004934", "video_name": "5e6f5291-4494-5f63-a488-38699c775627", "text": "\u4e2d\u533b\u836f\u4ea7\u4e1a\u52a9\u529b\u4e61\u6751\u632f\u5174\uff1a\u8fd9\u5f20\u56fe\u7247\u5c55\u73b0\u4e86\u4e00\u7247\u519c\u6751\u4e2d\u7684\u4f20\u7edf\u4e2d\u836f\u573a\u666f\uff0c\u5de5\u4eba\u5728\u5145\u6ee1\u6d3b\u529b"} +{"id": "1004094", "video_name": "4bc4e5cf-ddd9-5fc3-90d3-a7212bc9c28c", "text": "\u4e1b\u6797\u91cc\u7684\u72d0\u72f8\u6709\u8da3\u7684\u6545\u4e8b\u9002\u5408\u5b69\u5b50\u4eec\u3002"} +{"id": "3006759", "video_name": "ead2d5c8-9766-5b54-be81-c82805ff1c43", "text": "\u4e00\u6bb5\u90c1\u90c1\u8471\u8471\u7684\u70df\u8349\u519c\u573a\u89c6\u9891\u3002"} +{"id": "0005409", "video_name": "1a555989-0e97-51b8-aa3b-bc7a40f6da0e", "text": "\u7528\u4e0d\u540c\u7684\u83dc\u7cfb\u548c\u827a\u672f\u6027\u7684\u98df\u7269\u5448\u73b0\u7684\u9910\u5385"} +{"id": "1005205", "video_name": "5fd3321d-fd81-51a3-8e57-76f1bfa55786", "text": "\u6de1\u84dd\u3001\u9ec4\u8272\u548c\u767d\u8272\u7684\u77e9\u9635\u4ee3\u7801\u3002\u4fe1\u606f\uff1aCREATICS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004823", "video_name": "3abde0a7-6e89-52e2-a38c-e289c07106a4", "text": "\u6709\u8bb8\u591a\u7834\u635f\u548c\u6c61\u6e0d\u7684\u955c\u5b50\uff0c\u7834\u8d25\u8001\u65e7\u7684\u6728\u8d28\u5899\u58c1\u548c\u5730\u677f\u6784\u6210\u4e86\u4e00\u4e2a\u903c\u771f\u7684\u6697\u623f\u3002"} +{"id": "1006007", "video_name": "6e6cf6a0-1c44-50f2-bd25-ebc365d49524", "text": "\u4e00\u9897\u7ea2\u8272\u7684\u5c0f\u884c\u661f\u5760\u843d\u5728\u8d22\u5bcc\u9886\u57df\u4e0a\u3002"} +{"id": "6003147", "video_name": "0cd58d03-7e1b-5bb6-975e-40587b897928", "text": "\u6c7d\u8f66\u5728\u4e24\u5ea7\u5ca9\u77f3\u5c71\u4e4b\u95f4\u7684\u9053\u8def\u4e0a\u9ad8\u901f\u884c\u9a76\uff0c\u4fef\u77b0\u89c6\u89d2\u3002"} +{"id": "3003795", "video_name": "c6dcc074-8966-516a-a3fb-f7c1c7f3e6e2", "text": "\u6218\u4e89\u5c04\u51fb\uff0c\u9ad8\u52a8\u4f5c\u5c04\u51fb\uff0c\u300a\u94f6\u7ffc\u6740\u624b2049\u300b\u7535\u5f71\u98ce\u683c\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5b8f\u89c2"} +{"id": "2003456", "video_name": "4afb12a7-3c18-5917-a8d7-3690498d1a4c", "text": "3D\uff0c\u62f3\u51fb\u573a\uff0c\u4e24\u53ea\u52a8\u7269\u62f3\u51fb\u624b\u3002\u4e00\u4e2a\u662f\u4ee3\u8868\u7f8e\u56fd\u7684\u79c3\u9e70\uff0c\u53e6\u4e00\u4e2a\u662f\u718a\u732b\u3002\u718a\u732b\u51fa\u62f3"} +{"id": "8001021", "video_name": "799e7de0-17bf-5590-965e-6cb1cd70eee5", "text": "\u4e00\u53ea\u62f3\u51fb\u72ac\u6b63\u5728\u5403\u4e00\u5757\u751f\u7684\u725b\u6392\u3002"} +{"id": "7004217", "video_name": "dd7b567d-d8f9-56e6-9ca0-8fcab43eeb84", "text": "\u4e00\u4e2a\u4eba\u901a\u8fc7\u5185\u5fc3\u7684\u5e73\u9759\u548c\u6e05\u6670\u6765\u51c0\u5316\u81ea\u5df1\u7684\u5fc3\u7075\u3002"} +{"id": "2006915", "video_name": "03e7a6a4-d965-5f38-ad39-e2eab1915eb4", "text": "JASON\uff08\u4f4e\u58f0\uff09\u4f60\u662f\u8c01\uff1f\u795e\u79d8\u5973\u5b50\u8d70\u8fd1\u4e86\uff0c\u8f7b\u8f7b\u5730\u5728\u4ed6\u7684\u4e0b\u5df4\u4e0a\u5212\u8fc7\u624b\u6307\uff0c\u5979\u7684\u89e6\u6478\u8ba9"} +{"id": "4002778", "video_name": "3240d758-5f3d-5ec9-8b38-039c4f0d295d", "text": "\u53d7\u4f24\u7684\u8b66\u5b98\u6b63\u5728\u5411\u82f1\u56fd\u603b\u7763\u8981\u996e\u6599\uff08\u5e94\u8be5\u6ca1\u6709\u9152\u7cbe\uff09\uff0c\u573a\u666f\u903c\u771f\uff0c\u5177\u6709\u4ee3\u8868\u6027\u3002"} +{"id": "8001112", "video_name": "a4c2f8dc-c2ff-50b7-8ae0-0093de8c2378", "text": "\u4e00\u500b\u7a7f\u8457\u6f02\u4eae\u8863\u670d\uff0c\u975e\u5e38\u53ef\u611b\u4e14\u6b63\u5728\u73a9\u96ea\u7403\u7684\u5973\u5b69\u3002"} +{"id": "2003204", "video_name": "fd9f75a4-b88c-5e51-aaa1-088bb22e42ee", "text": "\u4e00\u4e2a\u738b\u56fd\u4e2d\u7684\u5973\u4eba\u3002\u4fe1\u606f\uff1a\u7070\u59d1\u5a18\u3002"} +{"id": "6004768", "video_name": "5096f27d-d03f-589f-a709-a38dd0d219f7", "text": "\u6258\u9a6c\u65af\u00b7\u83ab\u5170\u7684\u52a8\u753b\uff0c\u4e00\u8258\u8239\u5728\u6d77\u6d0b\u4e2d\u822a\u884c\u3002"} +{"id": "8003051", "video_name": "a8b89e89-7844-5fc6-8c08-4f29fe31e75f", "text": "\u5c06\u764c\u75c7\u706f\u4ece\u89c2\u4f17\u5904\u79fb\u5f00\u3002"} +{"id": "3003267", "video_name": "50064eae-0c65-582f-8e7d-923645bb0894", "text": "\u4e00\u6839\u4ece\u5929\u7a7a\u98d8\u843d\u7684\u7fbd\u6bdb\uff0c\u65e5\u51fa\uff0c\u6e29\u6696\u7684\u8272\u8c03\u3002"} +{"id": "8003311", "video_name": "ca05a782-d9d3-53cb-bf10-3e8fed940d9d", "text": "\u52a8\u6f2b\u3001\u4f4e\u97f3\u5f26\u7535\u6c14\u5316\u3001\u6444\u50cf\u673a\u5e73\u79fb\u3001\u8fd0\u52a83"} +{"id": "1005970", "video_name": "6daa2c7f-8919-5f8f-8a32-eaa4030003e8", "text": "\u5c55\u793a\u4e00\u5f20\u54ed\u6ce3\u5a74\u513f\u7684\u56fe\u7247"} +{"id": "7002997", "video_name": "677fe211-f7d6-599c-a0e6-6854bdac21b0", "text": "\u5e8a\u4e0b\u6709\u86c7\uff0c\u623f\u95f4\u5f88\u6697\u3002"} +{"id": "8003985", "video_name": "411e0688-c39a-55e0-ae7f-14d465af2fe9", "text": "\u90a3\u4e2a\u7537\u4eba\u7f13\u7f13\u5730\u98de\u5411\u4e91\u7aef\u3002"} +{"id": "2003436", "video_name": "98ccb3c4-4911-52f4-bc15-e993ab8cc49d", "text": "\u767d\u8272\u7684\u96f7\u9f99\u3002\u4fe1\u606f\uff1a\u767d\u9f99\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002739", "video_name": "b92f5f74-374a-5bf1-a6f6-539cfb540ad4", "text": "\u5965\u5df4\u9a6c\u603b\u7edf\u9a7e\u9a76\u52b3\u65af\u83b1\u65af\u5e7b\u5f71\u3002"} +{"id": "0003476", "video_name": "3e4f0bdb-be1f-5719-ab98-ba54ee30a871", "text": "\u4e24\u53ea\u7334\u5b50\u4ee5\u52a8\u6f2b\u98ce\u683c\u3001\u9f99\u73e0\u98ce\u683c\u6253\u6597\u3002"} +{"id": "7002350", "video_name": "1a1dee12-1097-515e-b87f-518c2ae70232", "text": "\u52a0\u5bc6\u751f\u6001\u7cfb\u7edf\u4e2d\u7684\u8282\u70b9\u7f51\u7edc"} +{"id": "2003310", "video_name": "40cf2ad7-d2c5-51d9-8df6-91392be6d703", "text": "\u5973\u6027\u773c\u775b\u8fd1\u8ddd\u79bb\u524d\u89c6\u95ed\u773c\u7751\uff0c\u767d\u8272\u776b\u6bdb\u4e0a\u8986\u76d6\u7740\u971c\u3002"} +{"id": "1005938", "video_name": "6d266736-8249-5a61-b156-a18428b0071b", "text": "\u5f53\u83ab\u683c\u5229\u6f2b\u6b65\u7a7f\u8fc7\u7ea0\u7f20\u7684\u85e4\u8513\u548c\u8302\u5bc6\u7684\u6811\u53f6\u65f6"} +{"id": "7002702", "video_name": "17489366-5738-5bba-a7b4-3eec3fb857ba", "text": "\u4e00\u4e2a\u5e26\u7740\u89c6\u9891\u76f8\u673a\u7684\u5361\u901a\u7a7f\u5c71\u7532"} +{"id": "3006051", "video_name": "3d3cabb8-5ed0-5065-b2da-ed1954aafe60", "text": "\u50f5\u5c38\u5728\u8c6a\u5b85\u5916\u6765\u56de\u79fb\u52a8\uff0c\u6050\u6016\u3001\u7cbe\u7ec6\u7684\u7ec6\u8282\u3001\u7535\u5f71\u822c\u76844K\u3001\u5947\u5e7b\u98ce\u683c\u3001\u96fe\u6c14\u3001"} +{"id": "2007161", "video_name": "e52f072c-05b8-59cd-9cc4-59f2d562ac6d", "text": "A\u5b57\u6bcd\u901a\u5e38\u4f1a\u5f20\u5f00\u53cc\u817f\uff0c\u628a\u624b\u653e\u5728\u809a\u5b50\u4e0a\u4ea4\u53c9\uff0c\u6240\u4ee5\u4f60\u53ef\u4ee5\u5f88\u5bb9\u6613\u5730\u8fa8\u8ba4\u51fa\u5b83\u3002"} +{"id": "8003799", "video_name": "8bdc47df-9250-59b2-b02c-de772a5223ba", "text": "\u53ef\u7231\u7684\u767d\u515410\u79d2\u949f\u7684\u89c6\u9891"} +{"id": "3005194", "video_name": "6c54e75f-feb8-5059-a411-9eaaf5d482e9", "text": "\u5916\u661f\u653f\u6cbb\u5bb6\uff0c\u63e1\u624b\uff0c\u79d1\u5e7b\u7535\u5f71\uff0cSuper8\u76f8\u673a\uff0c\u80cc\u666f\u4e2d\u7684\u5916\u661f\u4eba"} +{"id": "4003919", "video_name": "2c1fe13e-dca6-5ce3-b45d-5c3c138d7a2a", "text": "\u7b14\u4ee5\u5706\u5f62\u65b9\u5f0f\u5728\u667a\u80fd\u624b\u673a\u5468\u56f4\u79fb\u52a8\uff0c\u903c\u771f\u800c\u7535\u5f71\u5316\u3002"} +{"id": "3003926", "video_name": "ad213a0f-e2a0-5462-9975-ac61979c2d59", "text": "\u5750\u5728\u7535\u8111\u524d\u770b\u4e0d\u6e05\u7684\u4eba\u3002"} +{"id": "4004114", "video_name": "5b4a7bd6-bfdb-59df-8f14-249fa9162fb3", "text": "\u8d85\u5199\u5b9e\u7684\u9c7c\uff0c\u6f02\u6d6e\u5728\u6c34\u4e0a\uff0c\u6d77\u6d6a\uff0c\u4e91\u5f69\u3002"} +{"id": "7002288", "video_name": "03ad3747-7931-5463-85fe-c1261b67712d", "text": "\u4e00\u53ea\u53d1\u7740\u7d2b\u8272\u5149\u8292\u3001\u773c\u775b\u4e5f\u662f\u7d2b\u8272\u7684\u751f\u7269\u4ece\u9ed1\u6697\u4e2d\u9760\u8fd1\u3002"} +{"id": "8001893", "video_name": "c334c424-e47e-5ef0-85c1-b939b59cc6b7", "text": "\u521b\u5efa\u4e00\u4e2a\u8239\u961f\u6807\u5fd7\u3002\u9644\u4ef61\u3002"} +{"id": "8003770", "video_name": "f1e3a270-5ff3-5baa-a867-69ca84e03d26", "text": "\u5b83\u7684\u53e4\u8001\u5899\u58c1\u4e0a\u957f\u6ee1\u4e86\u5e38\u6625\u85e4\uff0c\u7a97\u6237\u56e0\u5c81\u6708\u6c89\u6dc0\u800c\u53d8\u5f97\u6a21\u7cca\u3002"} +{"id": "3004499", "video_name": "93da4acc-a00f-55d0-a627-486a8041c7ed", "text": "\u4e00\u4e2a\u4e13\u6ce8\u4e8e\u5de5\u4f5c\u7684\u4eba\u3002"} +{"id": "3005408", "video_name": "202739f6-7e05-599b-a174-34bb93c7a250", "text": "\u5973\u5b69\u559d\u5496\u5561\u3001\u653e\u677e\u3001\u5e26\u6709\u590d\u53e4\u6c1b\u56f4\u7684\u7ed8\u753b\u3002"} +{"id": "3005459", "video_name": "126f0c41-be6c-54fb-8369-7e8cc65e497a", "text": "\u9ec4\u8272\u4e4b\u738b\uff0c\u795e\u79d8\u7684\u795e\u6027\u5b58\u5728\uff0c\u4f4d\u4e8e\u8fbe\u8d21\u7684\u5730\u4e0b\u5893\u7a74\uff0c\u51fa\u81ea1970\u5e74\u4ee3\u7684\u963f\u83b1\u54c8\u5fb7\u00b7\u7ea6\u591a\u7f57"} +{"id": "8003269", "video_name": "ea8d1dc2-a2be-5b43-b412-47488ea8f10e", "text": "\u7b80\u5355\u5361\u901a\u98ce\u683c\u7684\u8d44\u4ea7\u53d8\u6210\u73b0\u91d1\u7684\u56fe\u50cf"} +{"id": "1004924", "video_name": "5b0b7962-da7e-50e4-8b74-c02d1ec44732", "text": "\u4e00\u7537\u4e00\u5973\u5bf9\u8bdd\uff0c\u4e89\u5435\u4e0d\u65ad\uff0c\u7537\u5b50\u5927\u58f0\u8bb2\u8bdd\uff0c\u60c5\u611f\u6fc0\u6602\uff0c\u5973\u5b50\u638c\u63b4\u7537\u5b50\u8138\u988a\uff0c\u5973\u65b9\u624b\u638c\u53d8"} +{"id": "0005577", "video_name": "1d5c855b-82a2-51b7-8c0d-8e3f74d62c66", "text": "\u5979\u770b\u8d77\u6765\u5f88\u5bb3\u6015\uff0c\u67091970\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u7684\u6c1b\u56f4\u3002"} +{"id": "7004709", "video_name": "f84cac8b-3545-51d7-a2a9-58fb38c63743", "text": "\u4e2d\u4e16\u7eaa\u6559\u4f1a\u5728\u6559\u5802\u5185\u8bbe\u6709\u4e00\u4e2a\u5149\u660e\u4f1a\u7ec4\u7ec7\u3002"} +{"id": "0005089", "video_name": "147f56f9-a777-5167-a14b-f6046e2df49c", "text": "\u963f\u5179\u7279\u514b\u91d1\u5b57\u5854\u7684\u5efa\u9020\u65f6\u95f4\u95f4\u9694\u89c6\u9891\uff0c\u7531\u963f\u5179\u7279\u514b\u4eba\u4e00\u5757\u4e00\u5757\u7684\u77f3\u5934\u5efa\u9020\u3002"} +{"id": "6004073", "video_name": "5dcaa577-71ff-54b1-96e4-d2a445b18a66", "text": "\u6b27\u6d32\u5973\u5b50\u6307\u7740\u7a7a\u4e2d\u3002"} +{"id": "1004338", "video_name": "50149990-0fa0-594d-b578-a8268a9a537c", "text": "\u7a7a\u8361\u8361\u7684\u529e\u516c\u5ba4\u91cc\u6709\u7535\u8111\u548c\u5c4f\u5e55\uff0c\u73b0\u4ee3\u5316\u7684\u529e\u516c\u5ba4\uff0c\u6a59\u8272\u8c03\uff0c\u753b\u9762\u9010\u6e10\u6269\u5927\uff0c\u4fe1\u606f"} +{"id": "6003497", "video_name": "378b259b-019a-5d5c-bf05-cbe2061ed5ca", "text": "\u76d6\u535a\u00b7\u7ebd\u7ef4\u5c14\u5728EA\u603b\u90e8\u4e0eEA\u6597\u4e89\u3002"} +{"id": "7003639", "video_name": "ba9c3b1d-d784-561a-abb6-b4a54e074eef", "text": "\u4e00\u4e2a\u4eba\u5728\u9ed1\u6697\u7684\u5c0f\u5df7\u91cc\u8d70\u8def\uff0c\u955c\u5934\u6781\u8fdc\u3002"} +{"id": "1006801", "video_name": "7c81ed10-3960-5f22-9ff4-21646c97ecce", "text": "\u8428\u6469\u8036\u72ac\u3001\u5927\u4e39\u72ac\u548c\u7cbe\u7075\u9e2e\u3002"} +{"id": "2003120", "video_name": "583448f8-abe5-5452-ba30-86111dd9c310", "text": "\u521b\u9020\u4e00\u4e2a\u7531\u5927\u5e08\u8bbe\u8ba1\u7684\u7b80\u7ea6\u74f7\u7816\u62fc\u63a5\u6807\u5fd7\u3002"} +{"id": "2003845", "video_name": "840b381c-0fcb-566d-a304-5581ba7d7bc6", "text": "\u4e00\u4e2a\u6df1\u84dd\u8272\u7684\u623f\u95f4\u53d8\u6210\u4e86\u66f4\u6d45\u7684\u989c\u82724K\u3002"} +{"id": "2004042", "video_name": "13bc2e05-cf1a-524c-971c-29db0c237183", "text": "\u4ece\u80cc\u540e\u770b\uff0c\u6211\u4eec\u770b\u5230\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u72ec\u81ea\u7ad9\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\uff0c\u7565\u5fae\u4f4e\u5782\u7740\u80a9\u8180\u3002"} +{"id": "2003406", "video_name": "a793e89c-3d93-5896-b0a4-939403d3229a", "text": "\u9e1f\u7c7b\u57283D\u5361\u901a\u82b1\u56ed\u7684\u56fe\u7247"} +{"id": "2006186", "video_name": "5dae8f7a-e942-5d70-b14c-953b216660d4", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u957f\u80e1\u5b50\u7ed9\u5a74\u513f\u8bfb\u4e66\u3002"} +{"id": "2005079", "video_name": "03f0f39c-2256-5b11-9d0f-c61681cbcc4e", "text": "\u773c\u775b\u7728\u52a8\u5f97\u50cf\u771f\u7684\u4e00\u6837\uff0c\u6d77\u6d6a\u8d77\u4f0f\u3002"} +{"id": "6002531", "video_name": "96f54882-a242-5b1e-95b2-0e16bc1f83f1", "text": "\u7a7a\u4e2d\u9a91\u7740\u4e00\u53ea\u6709\u7fc5\u8180\u7684\u54e5\u65af\u62c9\u3002"} +{"id": "8003889", "video_name": "87cac331-07c8-5e89-ae8f-32a6f5f2f396", "text": "\u4e00\u4e2a\u9713\u8679\u8611\u83c7\u5728\u4e2d\u592e\u751f\u957f\uff0c\u53d8\u6362\u989c\u8272\uff0c\u9ed1\u8272\u80cc\u666f\u4e0b\u3002"} +{"id": "2003592", "video_name": "66e4d2c9-a775-52c8-b394-eaff5dabdc9c", "text": "\u8d85\u7ea7\u82f1\u96c4\u964d\u843d\uff0c\u98de\u884c\u62ab\u98ce\u3002"} +{"id": "2006159", "video_name": "bbd597de-aae2-5994-9270-644268511d89", "text": "\u8fd9\u53ea\u7a7f\u7740\u897f\u88c5\u7684\u72ee\u5b50\u53c8\u5728\u5403\u4e1c\u897f\u4e86\u3002"} +{"id": "7002270", "video_name": "7541cf04-458c-597b-a42d-e68f542c2cbf", "text": "\u7ae5\u8bdd\u5361\u901a\uff1a\u4e00\u5ea7\u6709\u9e45\u5375\u77f3\u8857\u9053\u7684\u53e4\u6734\u6751\u5e84\u3002"} +{"id": "8002662", "video_name": "2b27e583-b3fe-5dce-8e76-09c9d90d256d", "text": "\u73b0\u4ee3\u98ce\u683c\u7684\u5723\u8bde\u6811\u88c5\u9970\u5f97\u5f88\u597d\uff0c\u914d\u6709\u300a\u5c0f\u9b3c\u5f53\u5bb6\u300b\u7535\u5f71\u7684\u97f3\u4e50\u3002"} +{"id": "4003871", "video_name": "f9ca3683-d367-52e9-b9f5-f0507ac5ee59", "text": "\u683c\u7f57\u6258\u592b\u65af\u57fa\u770b\u8d77\u6765\u5f88\u6ee1\u610f\uff0c\u4ee5\u68b5\u9ad8\u98ce\u683c\u4ece\u80cc\u666f\u4e2d\u89c2\u5bdf\u4ed6\u7684\u6f14\u5458\u3002"} +{"id": "5001258", "video_name": "c9242358-74e6-53a8-b371-0fa97e0ceb47", "text": "\u8d5e\u53f9\u7684\u4f4e\u8bed\u5145\u65a5\u7740\u7a7a\u6c14\uff0c\u5229\u4e9a\u59c6\u611f\u53d7\u5230\u4e00\u79cd\u4ed6\u4ece\u672a\u6709\u8fc7\u7684\u6e29\u6696\u5728\u4ed6\u7684\u80f8\u4e2d\u3002\u5c31\u50cf\u4ed6\u7684"} +{"id": "2003720", "video_name": "a23b43dd-8b96-547a-97f9-c763d589f210", "text": "\u4e00\u67b6\u6444\u50cf\u673a\u975e\u5e38\u7f13\u6162\u5730\u7f29\u653e\u5230\u4e00\u4e2a\u5973\u4eba\u7684\u8138\u90e8\uff0c\u573a\u666f\u62cd\u6444\u4e8e\u672a\u6765\u4e3b\u4e49\u7684\u9a6c\u5c14\u97e6\u62c9\uff0c\u5728\u5915"} +{"id": "6003600", "video_name": "da14fece-24e8-57f3-ad47-d0d1707605bf", "text": "\u5267\u672c\u4e2d\u7684\u8f6c\u6298\u70b9\uff0c\u7ffb\u5f00\u4e86\u8d22\u52a1\u7684\u4e00\u9875\u3002"} +{"id": "8001268", "video_name": "45255e84-1ecc-5eb9-87a0-c7f9559489cc", "text": "\u7cbe\u7ec6\u7ec6\u817b\u7684\u68ee\u6797\u666f\u89c2\uff0c\u4f7f\u7528\u68b5\u9ad8\u3001\u7ea6\u745f\u82ac\u00b7\u6c83\u5c14\u7b49\u5c0f\u753b\u7b14\u52fe\u52d2\u51fa\u6df1\u9083\u3001"} +{"id": "2006214", "video_name": "59cdc424-34c8-5c15-a48b-fb67b16ab73a", "text": "\u5fb7\u56fd\u90e8\u961f\u9a7e\u9a76PZ 3\u5766\u514b\u7a7f\u8fc7\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u3002"} +{"id": "2004194", "video_name": "2d611dc2-c0dc-5ea4-9f89-279dc5761978", "text": "\u4e09\u500d\u6708\u4eae\u5361\u901a\u5f0f\u9762\u5b54\u58c1\u7eb8\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "3004916", "video_name": "158e9eba-66b9-502b-8c36-f2cfb77014db", "text": "\u827e\u4f26\u00b7\u91cc\u5947\u68ee\u5728\u300a\u6d77\u738b\u300b\u7535\u5f71\u4e2d\u9a91\u7740\u6d77\u8c5a\u626e\u6f14\u6c34\u884c\u4fa0\u3002"} +{"id": "0006331", "video_name": "2abb81bb-489d-57f4-a4ab-ac5879c50bc1", "text": "\u4eba\u4ece\u706b\u8f66\u4e0a\u8df3\u4e0b\u6765\uff0c\u8dcc\u843d\u5728\u4e00\u5ea7\u6865\u4e0a\u3002"} +{"id": "1004283", "video_name": "4f326adc-2832-54c6-b6c2-55f52f455638", "text": "\u5728\u6c49\u5a1c\u00b7\u970d\u8d6b\u548c\u8fc8\u514b\u5c14\u00b7\u535a\u745e\u66fc\u65af\u7684\u98ce\u683c\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u51b2\u8fc7\u53bb\u5c06\u7a81\u7136\u7740\u706b\u7684\u5973\u4eba"} +{"id": "1006008", "video_name": "6e6fc63a-88de-53f9-be31-28f991228a88", "text": "\u4ed6\u4eec\u9762\u5bf9\u7740\u5371\u9669\u7684\u5bf9\u624b\uff0c\u4ed6\u4eec\u60f3\u8981\u593a\u8d70\u9762\u5177\u3002"} +{"id": "7002905", "video_name": "d5648fa5-bc3d-5cd1-857c-f8c939bba686", "text": "\u79d1\u5c14\u79d1\u74e6\u591a\u57fa\u7763\u6551\u4e16\u4e3b\u96d5\u50cf\u4ee5\u7535\u5f71\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "3006132", "video_name": "26589bf5-5838-5abd-b0a6-f350bf8cdca5", "text": "\u7ebd\u7ea6\u5e02\u591c\u666f\uff0c\u6d41\u661f\u96e8"} +{"id": "0005883", "video_name": "22c39661-d6b3-528b-863e-a3f5473d8686", "text": "\u4e9a\u5386\u5c71\u5927\u6e2f\u57c3\u53ca\uff0c\u91c7\u7528\u76ae\u514b\u65af\u548c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\u768416:9\u3002"} +{"id": "6002168", "video_name": "e6c070d4-1ffc-5f52-b386-d0258a915148", "text": "\u706b\u661f\u4e0a\u6709\u70df\u96fe\u548c\u706b\u7130\u7684\u65e5\u843d\u3002"} +{"id": "6004887", "video_name": "a4e8dfd3-5995-5e8f-82ae-de296b2205b5", "text": "\u573a\u666f\u4e2d\u592e\u7684\u5973\u4eba\u76f4\u63a5\u9762\u5411\u6444\u50cf\u673a\u8bb2\u8bdd\uff0c\u5c55\u793a\u7740\u4e00\u4e2a\u5bbe\u679c\u5361\u3002"} +{"id": "4002107", "video_name": "8570f9ef-24f6-5edf-a456-c90d0e7c7276", "text": "\u5728\u8fd9\u4e2a\u6700\u63a5\u8fd1\u5929\u7a7a\u7684\u5730\u65b9\u91cd\u9022\u7684\u8001\u5e74\u7537\u5b50\u4eec\uff0c\u9759\u9759\u5730\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u89c2\u770b\u7740\u5728\u76d1\u89c6\u5668\u4e0a\u6295\u5f71\u7684\u57ce\u5e02"} +{"id": "0005044", "video_name": "13a884ac-76f8-503d-9131-1bf29c58126c", "text": "\u4e00\u4e2a\u5934\u53d1\u7c89\u8272\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u51b0\u5c9b\u5954\u8dd1\u7684\u5973\u4eba\u3002"} +{"id": "3006414", "video_name": "df98a2d5-12ca-5617-b786-4de456e36f04", "text": "\u6211\u7684\u9ed1\u72d7Luna\u5728\u7528\u5979\u6f02\u4eae\u7684\u7897\u3002\n\nSource sentence: I am planning to visit China next year. \n\u6211\u8ba1\u5212\u660e\u5e74\u53bb\u4e2d\u56fd\u65c5\u6e38\u3002"} +{"id": "2006921", "video_name": "5cc1add7-77a7-5e9d-9cb5-318c252815ce", "text": "\u5c0f\u5973\u5b69\u7a7f\u7740\u7c89\u8272\u8fde\u8863\u88d9\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u5979\u5728\u7528\u5e73\u677f\u7535\u8111\uff0c\u5c0f\u7f8a\u4e5f\u5750\u5728\u5979\u65c1\u8fb9\u7528"} +{"id": "0003519", "video_name": "3ee32d37-bb4e-53dc-a1cf-5b3884720a7a", "text": "\u4e00\u5ea7\u5927\u578b\u7684\u68d5\u8272\u7816\u780c\u623f\u5b50\uff0c\u5e26\u6709\u767d\u8272\u7a97\u6237\uff0c\u662fChristopher Wren\u7684\u6570\u5b57\u6e32\u67d3\u7075\u611f\uff0c\u51fa\u73b0\u5728Dribble\u4e0a"} +{"id": "8002683", "video_name": "56f11794-7c69-5f22-8dc9-ea9542d85357", "text": "\u6b22\u4e50\u7684\u72ec\u773c\u5de8\u4eba\uff0c\u4ece\u60ac\u5d16\u773a\u671b\u5927\u6d77\uff0c\u771f\u5b9e\u7684\u7167\u7247\u6e32\u67d3\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002"} +{"id": "4003255", "video_name": "8094d57c-3949-55a3-b480-16cd3c610f2b", "text": "\u6709\u4eba\u8bf4\uff0c\u66fe\u7ecf\u5728\u8fd9\u91cc\u8f9b\u52e4\u5de5\u4f5c\u7684\u6770\u51fa\u4eba\u624d\uff0c\u4ee5\u9690\u79d8\u7684\u65b9\u5f0f\u63a8\u52a8\u7740\u79d1\u5b66\u7684\u8fb9\u754c\u3002\u6df1\u591c\uff0c\u52a8\u6001\u7684"} +{"id": "1005186", "video_name": "5f6474d7-31b6-5d40-bba4-27443adddc7d", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u68a6\u5e7b\u7684\u4e16\u754c\u91cc\u4ece\u98de\u673a\u4e0a\u4e0b\u6765\u3002"} +{"id": "8002266", "video_name": "9628c834-26f2-5371-adb7-96ed1f403372", "text": "\u4e00\u8258\u5e06\u8239\u5728\u9ad8\u6d77\u4e0a\u3002"} +{"id": "0003798", "video_name": "43a0f928-5859-553f-b6bc-c77ef99fc7c3", "text": "\u4e00\u8f86\u6c7d\u8f66\u9ad8\u901f\u9a76\u8fc7\u8f66\u9053"} +{"id": "7002481", "video_name": "f08973d9-1a47-5fdc-9a0c-c4e492996cbb", "text": "Source sentence: Ram Mandir\u4fe1\u6258\u7684\u7ba1\u7406\uff1aRam Mandir\u7684\u5efa\u8bbe\u6b63\u5728\u7531Ram Mandir\u4fe1\u6258\u79ef\u6781\u7b56\u5212\u548c\u7ba1\u7406\u3002"} +{"id": "3003464", "video_name": "56f2f551-9ed6-5423-b697-cfe20e853963", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u8857\u4e0a\u8df3\u821e\uff0c\u7279\u5199\u5176\u8138\u5e9e\u3002\n\nSource sentence: I am going to the supermarket to buy some vegetables and fruits.\n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b"} +{"id": "2005453", "video_name": "4ae7228a-0022-5410-916e-5be3ef546fa9", "text": "\u4e00\u4e2a\u5341\u51e0\u5c81\u7537\u5b69\u7ad9\u5728\u8239\u4e0a\uff0c\u773a\u671b\u7740\u4e1c\u4eac\u5e02\u7684\u6d77\u6d0b\uff0c\u5929\u7a7a\u4e2d\u6f02\u6d6e\u7740\u4e91\u6735\uff0c\u6a59\u8272\u7684\u65e5\u843d"} +{"id": "7003966", "video_name": "06007c6d-68e0-5f3e-b59a-f60b01ba646f", "text": "\u6709\u4e00\u5ea7\u5e7b\u60f3\u5c0f\u5c4b\u5750\u843d\u5728\u4e00\u4e2a\u5c0f\u6e56\u7684\u5cb8\u8fb9\u3002\u573a\u666f\u662f\u5728\u4e00\u4e2a\u8212\u9002\u7684\u79cb\u5b63\uff0c\u9633\u5149\u900f\u8fc7\u6811\u6728"} +{"id": "0005660", "video_name": "1edef73d-1615-556b-9572-8ff8f3415db0", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5750\u5728\u7535\u8111\u524d\u3002"} +{"id": "8003764", "video_name": "bf1a5cc8-2bbf-507f-89db-f07ab248c9d8", "text": "\u4e3a\u4e00\u6240\u4ee5\u56e2\u7ed3\u548c\u540c\u60c5\u4e3a\u4ef7\u503c\u89c2\u7684\u5927\u5b66\u4f4f\u5b85\u8bbe\u8ba1\u4e00\u679a\u5fbd\u7ae0\u3002\u5fbd\u7ae0\u7684\u4e2d\u5fc3\u5143\u7d20\u5e94\u8be5\u662f\u4e00\u53ea\u871c\u8702\u3002"} +{"id": "3003731", "video_name": "dd0491f9-5b32-54ac-a88d-48cec4feb223", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u96ea\u5929\u5411\u955c\u5934\u8d70\u53bb\uff0c\u96ea\u82b1\u98d8\u843d\u3002"} +{"id": "2003982", "video_name": "1970ca08-3004-5206-a424-db4b5a870319", "text": "\u4e00\u80a1\u6c34\u6d41\u7ecf\u8fc7\u6c34\u8f6e\u673a\u53ef\u4ee5\u5e2e\u52a9\u8f6c\u52a8\u4e00\u4e2a\u6746\u3002"} +{"id": "0004945", "video_name": "12067191-78c3-5270-8b93-bdb0ee742809", "text": "\u6781\u5149\u5448\u73b0\u7ea2\u3001\u9ec4\u3001\u84dd\u8272\u3002"} +{"id": "1003592", "video_name": "42240fdf-0f9d-5167-ac62-6676dd594c5b", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5229\uff0cRCB\uff0c\u8d62\u5f97IPL\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "6002741", "video_name": "2e167232-cf2b-526a-a695-bd794b83dc10", "text": "\u6b4c\u624b\u624b\u6301\u5409\u4ed6\u5728\u71c3\u70e7\u7684\u57ce\u5e02\u4e2d\u592e\u7948\u7977\u5531\u6b4c\uff0c\u8fd0\u52a8\u6a21\u5f0f3\uff0c\u5bbd\u5c4f16:9\uff0c\u7535\u5f71\u65f6\u5149\u6d41"} +{"id": "0006709", "video_name": "31827b79-385a-5952-a962-f6f2a8988284", "text": "\u4e00\u5e45\u9ed1\u6697\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u4e0d\u7965\u7684\u7269\u4f53\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4003811", "video_name": "a150343c-aace-5084-a804-72cffb654ad0", "text": "\u4e00\u4e2a\u4eba\u5728\u6811\u4e0b\u51a5\u60f3\uff0c\u5468\u56f4\u6709\u52a8\u7269\u3002"} +{"id": "1004388", "video_name": "511e33a9-59e1-520b-8c59-53157c5c7ef5", "text": "\u4e00\u500b\u5973\u5b69\u548c\u7537\u5b69\u5728\u8def\u4e0a\u8d70\u7684\u5361\u901a\u3002"} +{"id": "7002200", "video_name": "82ef7985-fed4-571a-b894-3909e60f257c", "text": "\u4e00\u53ea\u9ed1\u767d\u76f8\u95f4\u7684\u732b\u548c\u4e00\u53ea\u6c34\u8c5a\u5728\u6253\u6597\u3002\u91c7\u75288\u6beb\u7c73\u80f6\u7247\uff0c\u5448\u73b0\u51fa\u7535\u5f71\u9897\u7c92\u611f\u3002"} +{"id": "7004032", "video_name": "8cd9d10b-e725-58c5-b03d-fc668a955fc1", "text": "\u7535\u89c6\u4e0aJim Davis\u98ce\u683c\u7684\u52a8\u753b\u6c14\u8c61\u5458\u5728\u65b0\u95fb\u5ba4\u8b66\u544a\u98d3\u98ce\u3002"} +{"id": "6004767", "video_name": "6ae7bc08-e54e-5b5e-86e0-9e1687eeb4e1", "text": "\u9c8d\u52c3\u00b7\u9a6c\u5229\u5728\u95e8\u5eca\u5f39\u594f\u4ed6\u7684\u5409\u4ed6\u3002"} +{"id": "4002536", "video_name": "ae1e74b3-e6cf-536e-aa06-6ddef1d8c024", "text": "\u5728\u66b4\u98ce\u96e8\u7684\u5929\u7a7a\u4e2d\uff0c\u5de8\u5927\u7684\u5355\u4e00\u90e8\u843d\u8679\u5f69\u8d85\u73b0\u5b9e\u9b54\u6cd5\u9f13\u53d1\u5149\u5e76\u52a0\u901f\u3002"} +{"id": "2005668", "video_name": "bb5bac0f-08ec-5fac-831c-3cb2f57cdeb8", "text": "\u7c89\u8272\u706b\u5c71\u4ece\u7b14\u8bb0\u672c\u5c4f\u5e55\u4e2d\u55b7\u53d1\u51fa\u6765\u3002"} +{"id": "8002694", "video_name": "b04bdc8a-592a-51da-89ea-44b636b917dc", "text": "\u585e\u5c14\u8fbe\u6e38\u620f\u89d2\u8272\u5728\u751f\u65e5\u6d3e\u5bf9\u4e0a\u8df3\u821e\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "6002834", "video_name": "4a6b28e9-2130-5d99-98b7-69ce640686c4", "text": "1980\u5e74\u4ee3\u7684\u4e2d\u56fd\u519c\u6751\u591c\u665a\uff0c\u660e\u4eae\u7684\u6708\u5149\uff0c\u5927\u6708\u4eae\uff0c\u623f\u5c4b\u548c\u6811\u6728\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "8003057", "video_name": "68a2471e-9579-5377-ade2-e748db57bd9e", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u68ee\u6797\u9644\u8fd1\u7684\u6e56\u8fb9\u9493\u9c7c\u3002"} +{"id": "6003429", "video_name": "664e07ed-876d-5d46-80ba-482b00452b57", "text": "4k \u5728\u821e\u53f0\u4e2d\u592e\u8df3\u821e\u3002"} +{"id": "8002912", "video_name": "de6a5623-36fb-5c5a-b9c4-83add1527eea", "text": "\u4e00\u4f4d\u5973\u5b50\u8eba\u5728\u4e00\u5f20\u5e8a\u57ab\u4e0a\uff0c\u50cf\u6495\u7834\u7684\u7eb8\u4e00\u6837\u4ee58fps\u7684\u52a8\u753b\u65b9\u5f0f\u5448\u73b0\uff0c\u5177\u6709\u5e72\u51c0\u7684\u4f01\u4e1a\u98ce"} +{"id": "7002277", "video_name": "ed5c38a1-4ab3-5357-9188-278dfe054e7f", "text": "\u5728\u53e4\u7f57\u9a6c\u5e1d\u56fd\u6df7\u4e71\u7684\u6218\u4e89\u4e2d\uff0c\u60f3\u8c61\u4e00\u4e0b\u5e74\u8f7b\u7684\u519b\u5b98\u9a6c\u5e93\u65af\u00b7\u5965\u52d2\u7559\u5728\u5317\u65b9"} +{"id": "8002190", "video_name": "44be3d6a-3c55-5aa2-8afa-988142f19363", "text": "\u8bf7\u4f7f\u7528\u540c\u4e00\u5f20\u56fe\u50cf\uff0c\u4f46\u5c06\u5176\u52a8\u753b\u5316\uff0c\u4f7f\u817f\u90e8\u8d70\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003619", "video_name": "79bb7331-e101-58ea-8534-565caeae52ea", "text": "\u53ea\u662f\u4e00\u6761\u505a\u7740\u9c7c\u7c7b\u672c\u80fd\u884c\u4e3a\u7684\u9c7c\u3002"} +{"id": "4002028", "video_name": "8609718d-8754-5b35-941f-bc4052e853d7", "text": "\u8857\u4e0a\u4eba\u6765\u4eba\u5f80\uff0c\u767d\u5929\u5149\u7ebf\u660e\u4eae\u3002"} +{"id": "2005665", "video_name": "4aecb185-3d4b-5da1-b21d-9142236e395e", "text": "\u4e00\u8258\u8239\u5728\u822a\u884c\uff0c\u4e00\u6735\u4e91\u5728\u79fb\u52a8\u3002"} +{"id": "4004349", "video_name": "e260d9a5-52b4-5ee9-8aee-0c27d2e8fd4f", "text": "\u7687\u51a0\u6570\u636e\u89e3\u51b3\u65b9\u6848\u7684\u6807\u5fd7\uff0c\u4f7f\u7528\u91d1\u8272\u7687\u51a0\u548c\u9ed1\u8272\u5b57\u4f53\u3002"} +{"id": "0006821", "video_name": "33aa43d2-a892-5d7d-899e-b9e9dad25fdc", "text": "\u4e00\u5934\u6b63\u5728\u8349\u5730\u4e0a\u5403\u8349\u7684\u5976\u725b\u88ab\u98ce\u5439\u5230\u4e86\u5929\u7a7a\u4e2d\u3002"} +{"id": "2007483", "video_name": "40773089-d49e-5666-a09b-0fbefcdbf767", "text": "4\u82f1\u5c3a\u9ad8\u7684\u7bee\u7403\u8fd0\u52a8\u5458\u5728\u8df3\u8dc3\u65f6\u53d8\u6210\u4e8610\u82f1\u5c3a\u9ad8\u7684\u7bee\u7403\u8fd0\u52a8\u5458\u3002"} +{"id": "2005597", "video_name": "11dd4a94-f08f-5db4-9b89-3cf72f95c33b", "text": "\u4e00\u67b6\u5c0f\u578b\u65e0\u4eba\u673a\u4ece\u6c7d\u8f66\u524d\u76d6\u98de\u51fa\u3002"} +{"id": "8003026", "video_name": "ed641bed-d88f-5c25-8b70-7ebf725d7e22", "text": "\u4e00\u53ea\u8001\u9f20\u5728\u5929\u7a7a\u4e2d\u5954\u8dd1\u7740\u4e91\u5f69\u3002"} +{"id": "1004238", "video_name": "4e768022-02c0-55d4-bdbe-52d51b65d238", "text": "\u5236\u4f5c\u4e00\u7ec4\u7f8e\u4eba\u9c7c\uff0c\u4ece70\u5e74\u4ee3\u7684\u65e7\u5f0f\u68a6\u5e7b\u7535\u5f71\u4e2d\u8fdc\u8ddd\u79bb\u903c\u771f\u5730\u5fae\u7b11\u548c\u6325\u624b\u3002"} +{"id": "0005474", "video_name": "1b688511-f777-5453-bcc3-fcfb20b340b5", "text": "\u5728\u4e00\u4e2a\u6d1e\u7a74\u6c60\u5858\u91cc\uff0c\u4e00\u5927\u7fa4\u9c7c\u8df3\u51fa\u6c34\u9762\uff0c\u4eba\u4eec\u4e58\u8239\u53bb\u6355\u6349\u5b83\u4eec\uff01"} +{"id": "2005972", "video_name": "e6638beb-0737-5635-9f4c-78be9d1c71b7", "text": "\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u9762\u5e26\u5e0c\u671b\u7684\u8868\u60c5\u8d70\u8fdb\u4e86\u7ef4\u591a\u5229\u4e9a\u5f0f\u8c6a\u5b85\u7684\u5367\u5ba4\uff0c\u624b\u91cc\u62ff\u7740\u4e00"} +{"id": "5001504", "video_name": "a4ae4b22-02f4-53a0-8934-20dd796f36bd", "text": "\u5728\u632a\u5a01\u5ce1\u6e7e\u548c\u68ee\u6797\u4e0a\u7a7a\u7684\u65e0\u4eba\u673a\u98de\u884c\uff0c\u5929\u6c14\u6674\u6717\u3002 \n\nSource sentence: The company's sales have increased by 20% in the"} +{"id": "3003671", "video_name": "4e183f9c-74f7-5552-b6d3-c665d7f508dd", "text": "\u5728\u96e8\u4e2d\uff0c\u5c0f\u5973\u5b69\u548c\u72d7\u5728\u8349\u5730\u4e0a\u6563\u6b65\u3002"} +{"id": "7002104", "video_name": "c3781c2b-c8b8-5a59-82ab-3bb0381aae1e", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u7740\u8bf4\u8bdd\uff0c\u5728\u80cc\u666f\u91cc\u73a9PS4\u3002"} +{"id": "0006610", "video_name": "2f86a04d-5a31-559d-ae49-e298c9b04e2d", "text": "\u4e00\u4e2a\u5357\u74dc\u4eba\u5f62\u751f\u7269\u5c45\u4f4f\u5728\u6d1e\u7a74\u91cc\u3002\u5979\u5728\u6d1e\u53e3\u5199\u65e5\u8bb0\uff0c\u4ee5\u300a\u7535\u952f\u4eba\u300b\u52a8\u753b\u7684\u98ce\u683c\u3002"} +{"id": "6003474", "video_name": "0e2d6b8e-a387-50e0-9409-24c55bbc8832", "text": "\u4e24\u4e2a\u5e74\u8f7b\u4eba\u624b\u7275\u624b\u7a7f\u8fc7\u9633\u5149\u660e\u5a9a\u7684\u79cb\u5b63\u5c71\u6bdb\u6989\u6797\uff0c\u671d\u7740\u592a\u9633\u8d70\u53bb\uff0c\u5982\u7535\u5f71\u822c"} +{"id": "6002398", "video_name": "d6adecb1-474a-574a-ae35-4f361faf07d2", "text": "\u5728\u4e00\u95f4\u65e7\u5367\u5ba4\u91cc\u51fa\u73b0\u7684\u5e7d\u7075\u73b0\u8c61"} +{"id": "4004923", "video_name": "26ac4b47-aa74-540d-8f95-5f8a05e2d653", "text": "\u8d85\u5e02\u5f00\u95e8\u4e86\uff0c\u8d85\u4eba\u6765\u4e70\u81ea\u5df1\u7684\u5185\u8863\uff0c\u7136\u540e\u4ed6\u9047\u5230\u4e86\u8718\u86db\u4fa0\u4e00\u8d77\u722c\u53f0\u5317101\u5927\u697c\u3002"} +{"id": "1005771", "video_name": "6a2c4cc5-f746-58a9-a05a-96e3b2ed6d46", "text": "\u7d2b\u8272\u7684\u5976\u725b\u5728\u97f3\u4e50\u5de5\u4f5c\u5ba4\u91cc\u8df3\u821e\u3002"} +{"id": "7002063", "video_name": "3a964a88-d631-56a1-9642-6bac4a4f9d51", "text": "\u672a\u6765\u4e3b\u4e49\u5973\u5b69\u5728\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\u4e2d\u8d70\u8fc7\u4e00\u672c\u4e66\uff0c\u7ed8\u753b\u98ce\u683c\uff0c\u9c9c\u8273\u7684\u989c\u8272\u3002"} +{"id": "2006289", "video_name": "80d33476-2b9c-543e-bbc5-1dc766ff0210", "text": "\u4e3b\u9898\uff1a\u53ef\u89c6\u5316\u5448\u73b0\u7684\u662f\u4e00\u53ea\u597d\u5947\u7684\u5c0f\u732bKiki\u7684\u65c5\u7a0b\uff0c\u5979\u4ece\u89c2\u5bdf\u5927\u81ea\u7136\u5b66\u5230\u7684\u6559\u8bad\uff0c\u5979\u5bcc"} +{"id": "3005541", "video_name": "eb539f04-c1e9-5247-ad33-fa6b252412bd", "text": "\u4e00\u5f20\u8d85\u73b0\u5b9e\u7684\u7167\u7247\uff0c\u4e00\u540d\u7537\u5b50\u6234\u7740\u9762\u7f69\uff0c\u5728\u6469\u64e6\u7740\u624b\uff0c\u4eff\u4f5b\u4ed6\u5373\u5c06\u53bb\u62a2\u94f6\u884c\u3002\u8ba9\u4ed6\u5750"} +{"id": "0006107", "video_name": "26af4ed6-6cda-554b-aec7-f14efcbf5d2b", "text": "\u5feb\u901f\u7f29\u653e\u7684\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u770b\u5230\u4e86\u95ea\u70c1\u7684\u58ee\u4e3d\u5149\u8292\u548c\u7a7a\u95f4\u8f90\u5c04\u7684\u8868\u6f14\uff0c\u6444\u50cf\u673a"} +{"id": "8003087", "video_name": "775edb6e-5cd9-5ae1-981a-f941e41f7381", "text": "\u4e00\u4e2a\u7537\u5b69\u9a7e\u9a76\u6c7d\u8f66\u7684\u8fea\u58eb\u5c3c3D\u52a8\u753b"} +{"id": "2007738", "video_name": "776c49ba-45fe-5490-9950-8056280d1c2e", "text": "\u4e00\u53ea\u5145\u6ee1\u6d3b\u529b\u76843D\u5361\u901a\u5c71\u72ee\u5728\u8def\u6613\u65af\u5b89\u90a3\u6cbc\u6cfd\u4e2d\u6f5c\u884c\u3002"} +{"id": "8002319", "video_name": "eb9b1cf8-06d3-5806-a7aa-9b5b50430f5b", "text": "\u4e00\u4e2a\u91d1\u53d1\u84dd\u773c\u775b\u7684\u5b9d\u5b9d\u5728\u661f\u661f\u4e0a\u7761\u89c9\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "4002283", "video_name": "74dc13d3-a872-5e59-b12e-679781d853d2", "text": "\u4e00\u6ef4\u7eff\u8272\u7684\u6db2\u6ef4\u843d\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u7684\u7eff\u8272\u6c34\u5751\u91cc\u3002"} +{"id": "6002743", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "\u5c0f\u5973\u5b69\u7167\u6599\u82b1\u56ed\uff0c\u7ed9\u690d\u7269\u6d47\u6c34\u5e76\u5c0f\u5fc3\u5730\u9664\u8349\uff0c\u5c55\u793a\u5979\u7684\u4e13\u6ce8\u548c\u517b\u80b2\u7cbe\u795e\u3002"} +{"id": "4004089", "video_name": "d227d91b-0024-5de6-8dae-a54c51afbf22", "text": "\u4e00\u6bb5\u52a0\u5feb\u901f\u5ea6\u7684\u5ef6\u65f6\u6444\u5f71\u89c6\u9891\u4e2d\uff0c\u5bf9\u8682\u8681\u7684\u5938\u5f20\u7279\u5199\u3002"} +{"id": "0003536", "video_name": "3f21bbb0-1bca-5bd4-9d86-67d4cc6098d7", "text": "\u4e00\u4f4d\u8ff7\u5931\u5728\u68ee\u6797\u91cc\u7684\u7267\u5e08"} +{"id": "1006144", "video_name": "7091d061-2d77-580f-ad9f-4eb9266aa930", "text": "\u91d1\u6b63\u6069\u5728\u6162\u52a8\u4f5c\u4e0b\u8e22\u4e86\u4e00\u4e2a\u7ffb\u8eab\uff0c\u8dc3\u8fc7\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\uff0c\u62cd\u6444\u5e27\u7387\u4e3a40fps\uff0c\u4e4b\u540e"} +{"id": "2003471", "video_name": "f507141c-823b-5ef6-9a03-3168e6635d8c", "text": "\u4e24\u53ea\u5927\u91ce\u5154\u5728\u4e30\u8302\u7684\u7eff\u8272\u516b\u6708\u7530\u91ce\u4e0a\u3002"} +{"id": "2004774", "video_name": "d805def0-5f9f-5f34-8157-d2d6918d3783", "text": "\u5730\u7403\u4eea\uff0c\u903c\u771f\uff0c\u53ef\u89c1\u5927\u9646\uff0c\u4ece\u7eff\u8272\u5230\u9ec4\u8272\u5927\u9646\u7684\u8fc7\u6e21\u7f13\u6162\u3002"} +{"id": "3004117", "video_name": "1014760d-3747-5af2-873b-0000d7047d04", "text": "Tobuscus\u7684Minecraft\u89d2\u8272\u5728\u7231\u5c14\u5170\u7684\u5ca9\u77f3\u6d77\u5cb8\u88ab\u5916\u661f\u98de\u8239\u7684\u7275\u5f15\u5149\u675f\u5c04\u4e2d\u3002"} +{"id": "4002947", "video_name": "c045fa34-d2e6-5097-8443-86261826029e", "text": "\u4e00\u53ea\u7a7f\u7740\u6817\u8272\u548c\u91d1\u8272\u7684\u72c2\u543c\u7684\u72ee\u5b50\u3002"} +{"id": "5001302", "video_name": "ca0ad3cb-9de8-54bd-bbe8-bd1154d95ec5", "text": "\u4e00\u53ea\u5361\u901a\u9e1f\u6234\u7740\u592a\u9633\u955c\u5728\u6c99\u6ee9\u4e0a\u3002"} +{"id": "7004044", "video_name": "090fad6f-39fc-5266-ae47-0aa6357d5568", "text": "\u706d\u9738\u6253\u94c1\u4eba\uff0c\u6218\u6597\uff0c\u590d\u4ec7\u8005\u8054\u76df\u6218\u6597\uff0c\u52a8\u4f5c\u573a\u666f\u3002"} +{"id": "0004220", "video_name": "054707f4-60f1-5f66-8d50-058e2e5e4475", "text": "\u6c34\u679c\u4ece\u9ec4\u76d2\u5b50\u91cc\u7206\u51fa\u6765\u4e86\u3002"} +{"id": "3006447", "video_name": "81ed99e2-b9ef-591e-bf4f-e8e1a52c06f5", "text": "\u7537\u4eba\u5728\u7a7f\u8d8a\u575a\u5b9e\u6d53\u539a\u7684\u68d5\u8272\u6ce5\u6d46\u3002"} +{"id": "3003545", "video_name": "7b85b9f3-1c84-561e-b036-b6a2aac6dca9", "text": "\u4eba\u4eec\u7ad9\u5728\u5c71\u4e0a\uff0c\u671b\u7740\u9ece\u660e\u65f6\u5206\u7684\u8352\u51c9\u57ce\u5e02\u3002"} +{"id": "6002239", "video_name": "ed9811e5-8bc2-53e7-b402-98031feec83e", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u7ffb\u9875\u4e66\uff0c\u5c55\u793a\u5973\u5b69\u6d17\u6fa1\u7684\u8fc7\u7a0b\u3002"} +{"id": "3006218", "video_name": "08a7a422-ff65-539f-8265-d8f92a496e9c", "text": "\u65e5\u843d\uff0c\u6709\u4e91\u5f69\u3001\u8349\u5730\u548c\u82b1\u6735\u3002\u5361\u901a\u753b\u300219:6"} +{"id": "7003710", "video_name": "4c43bbb0-2435-5cf9-82ad-ffeaefbd3191", "text": "\u7528\u65e0\u4eba\u673a\u5728\u5145\u6ee1\u81ea\u7136\u7684\u5d0e\u5c96\u5730\u5f62\u4e0a\u5feb\u901f\u98de\u884c\u3002"} +{"id": "0006734", "video_name": "31f072f1-ca33-5229-b3bb-5f6135014f35", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8863\u670d\u7684\u5973\u4eba\u5728\u5954\u8dd1\u3002"} +{"id": "8001212", "video_name": "a6256814-35e7-5ada-be5d-1c0e3250beb3", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9ed1\u4eba\u5973\u6027\u548c\u4e00\u4f4d\u62c9\u4e01\u88d4\u7537\u5b50\u5728\u4f26\u6566\u7684\u4e00\u5bb61800\u5e74\u4ee3\u82f1\u5f0f\u9152\u5427\u5185\uff0c\u5750\u5728\u5427\u53f0\u65c1"} +{"id": "5001747", "video_name": "a7a383f8-7a2d-5cb8-a1ab-b575a86e631b", "text": "\u6211\u60f3\u8981\u4e00\u4e9b\u8d2b\u7a77\u7537\u5b69\u7684\u7167\u7247\u3002"} +{"id": "0004244", "video_name": "05a8e4c6-5a63-58e2-b40c-bd652112cfc1", "text": "\u73b0\u5b9e\u4fa7\u9762\u89d2\u5ea6\u89c6\u89d2\u4e0b\uff0c\u4e24\u4eba\u5728\u4e00\u4e2a\u5f00\u9614\u7684\u573a\u5730\u4e0a\u9ece\u660e\u65f6\u5206\u51b3\u6597\uff0c\u9ad8\u6e0516:9\u3002"} +{"id": "4004448", "video_name": "790ebe76-74e2-5aab-95bf-38c677269e50", "text": "\u767d\u5929\u8d70\u8fc7\u7ebd\u7ea6\u5e02\u7684\u8857\u9053\u3002"} +{"id": "8001116", "video_name": "db64aa6b-4d4a-5941-89c5-d23ed8f6d36e", "text": "\u5728\u6492\u9a6c\u5c14\u7f55\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u7231\u3002"} +{"id": "0003787", "video_name": "436b9aae-dcea-593a-9b68-1b27d4cc3b98", "text": "\u6625\u5929\uff0c\u6843\u82b1\u5f88\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "6002399", "video_name": "9a8f4a10-3dbb-52b7-8abe-03b5a25b8319", "text": "\u5236\u4f5c\u4e00\u6bb5\u7ea630\u79d2\u7684\u661f\u9645\u8ff7\u822a\u52a8\u753b\u3002"} +{"id": "3006275", "video_name": "f5969a27-0969-5600-83c5-e3a4e95a32fb", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u591c\u665a\u4e0e\u8fc8\u514b\u5c14\u00b7\u8fc8\u5c14\u65af\u4ea4\u8c08\uff0c\u800c\u8fc8\u514b\u5c14\u624b\u6301\u4e00\u628a\u5200\u3002"} +{"id": "3003792", "video_name": "f1f8c423-7cb9-5368-adc8-89f8bc7d6019", "text": "\u57fa\u4e8e\u56fe\u50cf\uff0c\u96ea\uff0c\u5149\uff0c\u7eff\u6811\u7684\u57fa\u7840\u4e0a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006936", "video_name": "581b20d1-9660-5b39-9c0b-6b327c4f2e00", "text": "\u4e00\u4e2a\u5973\u5b69\u88ab\u9009\u4e2d\u53c2\u52a0\u9965\u997f\u6e38\u620f\u3002"} +{"id": "8002071", "video_name": "fe96cdf2-417d-5e05-a807-2fbdf6af817e", "text": "\u4e00\u4e2a\u5e26\u6709\u7535\u5f71\u822c\u7167\u660e\u7684\u6076\u9b54\u8096\u50cf\u3002"} +{"id": "6002573", "video_name": "dbddc22a-ceb7-5221-b5ed-87316655e6b9", "text": "\u5f53\u67d0\u4eba\u6536\u5230\u670b\u53cb\u53d1\u6765\u7684\u795e\u79d8\u94fe\u63a5\u65f6\uff0c\u4ed6\u53d1\u73b0\u4e86\u4e00\u4e2a\u5145\u6ee1\u4e86\u672a\u7ecf\u6388\u6743\u7684\u4ed6\u65e5\u5e38\u751f\u6d3b\u7167\u7247\u7684 subreddit\u3002\u5f53\u4ed6\u6eda\u52a8"} +{"id": "6004894", "video_name": "9d7df776-d93f-565c-9ee6-b0d8526663dc", "text": "\u6ca1\u6709\u624b\u811a\u7684\u82b1\u6837\u6ed1\u51b0\u9009\u624b"} +{"id": "7004573", "video_name": "efe0b006-6c08-5839-9e2f-70303cd6f663", "text": "\u6469\u4ea8\u4f50\u8fbe\u7f57\u4f4d\u4e8e\u5df4\u57fa\u65af\u5766\u3002"} +{"id": "3004925", "video_name": "725d475b-b0c3-5b97-93b2-00ff9ebffeb1", "text": "\u4e00\u4ef6\u7531\u83b1\u6602\u7eb3\u591a\u00b7\u8fbe\u00b7\u82ac\u5947\u8bbe\u8ba1\u7684\u6570\u5b57\u96d5\u5851\uff0c\u7531\u590d\u6742\u7684\u7b97\u6cd5\u6e32\u67d3\u51fa\u7684\u7cbe\u7ec6\u5efa\u6a21\u7684\u4e09\u7ef4"} +{"id": "6002400", "video_name": "452466f4-e421-51d7-8d53-bb0f16e11c23", "text": "\u5979\u4f1a\u5750\u5728\u5bb6\u91cc\uff0c\u56e0\u4e3a\u70ed\u800c\u7b4b\u75b2\u529b\u5c3d\uff0c\u5373\u4f7f\u6709\u8bb8\u591a\u7279\u8272\u7f8e\u98df\u53ef\u4f9b\u4eab\u7528\u3002"} +{"id": "2003986", "video_name": "452985f6-fe71-5fd2-91a2-ecb7c38cf2f2", "text": "\u60f3\u8c61\u4e00\u53ea\u72ee\u5b50\u738b\u4ece\u60ac\u5d16\u4e0a\u5411\u4ed6\u7684\u4e1b\u6797\u91cc\u6240\u6709\u7684\u52a8\u7269\u6f14\u8bb2\u3002"} +{"id": "2007365", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "\u5929\u4f7f\u5973\u5b69\u5728\u6708\u5149\u4e0b\u5f39\u594f\u5409\u4ed6\u3002"} +{"id": "2005886", "video_name": "6d8758ef-baea-5594-ad72-e3a832e8dfbc", "text": "\u739b\u6208\u626e\u6f14\u5eb7\u5947\u5f81\u670d\u8005\uff0c\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u7ed9\u7f57\u6bd4\u770b\u3002"} +{"id": "3003156", "video_name": "4bd0c954-9038-5e14-9401-a88e8f735c1e", "text": "\u4e00\u6bb5\u7535\u5f71\u822c\u7684\u65e0\u4eba\u673a\u955c\u5934\u5c55\u73b0\u4e86\u4e00\u90e8\u8ff7\u4eba\u7684\u5fc3\u7406\u60ca\u609a\u7247\u3002"} +{"id": "2003641", "video_name": "ea2972f9-6950-5edb-a0ae-81d881f49962", "text": "\u5b8c\u7f8e\u7684\u6f2b\u753b\u753b\u9762\uff0c\u53d7\u5230\u4e86\u5f10\u74f6\u52c9\u548cH.R.\u5409\u683c\u5c14\u7684\u542f\u53d1\uff1b\u53ef\u6015\u7684\u672a\u6765\u91ce\u517d\u51b2\u7740\u6444\u50cf\u673a"} +{"id": "1003226", "video_name": "3b688b1c-a282-54d5-b047-97d56bedde5b", "text": "\u9ad8\u697c\u5927\u53a6\u3001\u9053\u8def\u548c\u4f4f\u5b85\u697c\u7684\u7f8e\u4e3d\u666f\u8272\u3002"} +{"id": "3006140", "video_name": "234d8aec-6c27-5c8e-9259-94624fce8a6e", "text": "\u516c\u5143\u524d\u7f57\u9a6c\u7684\u4e00\u5e55\u620f\u5267\u6027\u573a\u666f\uff0c\u7f57\u9a6c\u58eb\u5175\u9a91\u9a6c\u524d\u5f80\u9996\u90fd\u7f57\u9a6c\uff0c\u624b\u6301\u5251\u3002"} +{"id": "2006832", "video_name": "8cafcec6-a6be-5f72-90da-4fae6e554a26", "text": "\u66b4\u98ce\u96e8\u7684\u6d77\u6d0b\uff0c\u4e4c\u4e91\u5bc6\u5e03\uff0c\u9ad8\u9ad8\u7684\u6ce2\u6d6a\u7ffb\u6eda\uff0c\u4e0d\u65ad\u53d8\u5e7b\u7684\u666f\u8c61\uff0c\u95ea\u70c1\u7684\u661f\u661f\u548c\u768e"} +{"id": "0004049", "video_name": "0241b89d-2226-5602-87ad-d2119e978e7a", "text": "\u5927\u53f7\u7070\u8272\u65c5\u884c\u80cc\u5305 1:1\u5339\u914d\u3002"} +{"id": "0004556", "video_name": "0b3789cf-9a9f-5d6c-8060-d2fc8a361148", "text": "\u673a\u5668\u9e21\u5927\u7b11\u7740\u8df3\u8dc3\uff0c1970\u5e74\u7684\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0004939", "video_name": "11e3ab91-6a02-5107-a627-cab0f5beb0c4", "text": "\u81ea\u884c\u8f66\u7684\u65b0\u8f66\u9500\u91cf\u7206\u53d1\u5f0f\u589e\u957f\u3002"} +{"id": "1003819", "video_name": "468cc9cd-6249-53a6-b165-b357dedb4b9b", "text": "\u4e00\u4e2a\u4e3a\u4e00\u4e2aMinecraft\u9891\u9053\u8bbe\u8ba1\u7684\u4e94\u79d2\u949f\u7684\u4ecb\u7ecd\u3002"} +{"id": "3003184", "video_name": "040bd18a-26cb-5cee-9d84-e963d8472b13", "text": "\u5f95\u5361\u62cd\u6444\u7684\u8d2d\u7269\u5c0f\u5996\u8096\u50cf\uff0c\u7f16\u7801\u56fe\u6848\uff0c\u7a00\u758f\u7b80\u6d01\uff0c\u8d85\u9ad8\u6e05\u753b\u8d28\uff0c\u57ce\u5e02\u6838\u5fc3\uff0c\u82cf\u8054\u98ce"} +{"id": "1005221", "video_name": "601bf82e-a48e-546b-a864-0fdca8bd46a8", "text": "\u4ece\u767d\u8272\u80cc\u666f\u768416:9\u5f00\u59cb\uff0c\u4e00\u682a\u79ef\u96ea\u8349\u51fa\u73b0\u5e76\u5411\u4e0b\u751f\u957f\u3002"} +{"id": "2006369", "video_name": "f2a16ed2-975a-5bac-b42a-824b131c8972", "text": "\u7a7f\u7740\u5185\u88e4\u7684\u7537\u4eba\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "1006093", "video_name": "6fa91643-e1e2-5c61-94c1-edbdae7904f8", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u8bd5\u56fe\u80cc\u7740\u94b1\u5305\u79bb\u5f00\u65c5\u9986\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "5001521", "video_name": "15caaf58-982e-5b29-b9b2-33e052175371", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7535\u8111\u524d\u3002"} +{"id": "3003270", "video_name": "d3e2e0b5-83e5-545d-b82b-7da2f4d9a6e5", "text": "\u4e00\u4e2a\u4e09\u7ef4\u52a8\u753b\u673a\u5668\u4eba\u72ee\u5b50\u5728\u9ed1\u8272\u623f\u95f4\u91cc\u8bbe\u8ba1\u4e00\u652f\u94c5\u7b14\uff0c\u6a59\u8272\u7684\u9633\u5149\u5c04\u8fdb\u6765\uff0c\u9ed1\u8272\u7684\u80cc\u666f\u3002"} +{"id": "7002479", "video_name": "64c8e729-316e-5470-afc5-aee3d94b4116", "text": "\u5de8\u5927\u7684\u5854\u5f0f\u7c98\u571f\u52a8\u753b\u5916\u661f\u4eba\u5165\u4fb5\uff0c\u5468\u56f4\u6709\u7740\u4e30\u5bcc\u591a\u5f69\u7684\u7c98\u571f\u52a8\u753b\u3002"} +{"id": "4004554", "video_name": "1c1fe091-e1d5-54e0-aef2-7c30436d70f4", "text": "\u4e00\u4e2a\u5145\u6ee1\u60c5\u611f\u7684\u9ed1\u6697\u591c\u665a\u7684\u96e8\u4e2d\u7535\u5f71\u955c\u5934\u3002"} +{"id": "6002370", "video_name": "b1620e31-f63a-5fe8-bf01-9236bcf228fa", "text": "\u521b\u5efa\u751f\u52a8\u7684\u5929\u7a7a\u5d29\u584c\u56fe\u50cf\uff0c\u903c\u771f\u30018K\u3001\u8d85\u9ad8\u6e05\u3001\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "3004019", "video_name": "66c6184f-c2fd-5779-aa53-a087724e44fb", "text": "17\u5c81\u7684\u4e2d\u4e16\u7eaa\u78e8\u574a\u4e3b\u7a7f\u7740\u6728\u5236\u8863\u670d\u5728\u78e8\u623f\u5de5\u4f5c\u3002"} +{"id": "4004594", "video_name": "3c81993c-58a7-57cb-b7f7-e007b32b8f40", "text": "\u6e90\u53e5\u5b50\uff1a\u57281728\u4e0a\u4ee5\u5927\u5c0f13056\u5faa\u73af\u52a8\u753b\u7c92\u5b50\u548c\u70b9\u3002 \n\nTranslated sentence: \u57281728\u4e0a\u4ee5\u5927\u5c0f13056\u5faa\u73af\u52a8\u753b\u7c92\u5b50\u548c\u70b9\u3002"} +{"id": "4002511", "video_name": "7a2e59e3-45c0-53e5-af26-206262a532f7", "text": "\u4e00\u4e2a\u7c89\u8272\u95ea\u95ea\u53d1\u5149\u7684\u8774\u8776\u821e\u4f1a\u793c\u670d\u3002"} +{"id": "0006671", "video_name": "30bfd604-5434-53e0-a283-48fa0a7a7a77", "text": "\u4e00\u500b\u5df2\u7d93\u5de5\u4f5c\u4e86\u5e7e\u9031\u4e26\u611f\u5230\u75b2\u7d2f\u7684\u7537\u4eba\u3002"} +{"id": "1006918", "video_name": "7e767744-f62f-521e-8e50-9c102b9f9472", "text": "\u5728\u6d69\u701a\u7684\u5b87\u5b99\u4e2d\uff0c\u5b58\u5728\u7740\u4e00\u4e2a\u975e\u5e38\u4ee4\u4eba\u9707\u60ca\u7684\u9ed1\u6d1e\u3002\n\nSource sentence: The Great Wall is one of the most famous landmarks in China. \n\n\u957f\u57ce"} +{"id": "3003342", "video_name": "c2dd49d2-903f-5517-9b74-2bbfceff591b", "text": "\u8fd1\u666f\u955c\u5934\uff0c4K\u76f8\u673a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u573a\u666f\u5c55\u73b0\u57c3\u53ca\u91d1\u5b57\u5854\u5185\u5de5\u4f5c\u7684\u4eba\u4eec\u3002"} +{"id": "1005011", "video_name": "5cb38427-43d6-5916-a6a8-c51e50ef0097", "text": "\u4f7f\u7528\u6b63\u9762\u548c\u79ef\u6781\u7684\u80cc\u666f\u5728\u4e13\u4e1a\u800c\u4eb2\u5207\u7684\u89c6\u9891\u4e2d\uff0c\u80cc\u666f\u5e94\u8be5\u53cd\u6620\u96c6\u4e2d\u4e8e\u5b66\u4e60\u4f46\u4e0d\u662f\u6559\u80b2\u73af\u5883\u7684\u7a7a"} +{"id": "3006437", "video_name": "ac68ac69-27f9-5411-82cc-98476c39c163", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u4eba\u77d7\u7acb\u5728\u9ed1\u6697\u7684\u4e16\u754c\u4e2d\u3002"} +{"id": "2003787", "video_name": "bbea7a0c-bca9-5307-b726-c8f418ff6cf6", "text": "\u4e3b\u89d2\u9762\u5bf9\u4e00\u4f4d\u5f3a\u5927\u3001\u5a01\u80c1\u6027\u7684\u654c\u4eba\u3002\n\u4e00\u573a\u5145\u6ee1\u60ac\u5ff5\u7684\u60ca\u5fc3\u52a8\u9b44\u7684\u6218\u6597\u6216\u5bf9\u6297\u3002"} +{"id": "1005024", "video_name": "5cf0c948-d11e-5499-a74f-c4e95d5ab2e1", "text": "\u9752\u86d9\u9ebb\u96c0\u62ac\u5934\u770b\u5929\u7a7a\u3002"} +{"id": "4003782", "video_name": "296386b9-4275-5234-b46b-aa6b19470eb0", "text": "\u5c3d\u7ba1\u73af\u5883\u6076\u52a3\uff0c\u8fd9\u4e2a\u6e56\u4ecd\u7136\u662f\u4e00\u4e9b\u7279\u6709\u85fb\u7c7b\u7684\u5bb6\u56ed\u3002"} +{"id": "1006954", "video_name": "7f42101d-f354-59e0-8f37-1564e0f99bf5", "text": "\u963f\u5c14\u743c\u5728\u6500\u767b\u5c71\u65f6\u906d\u9047\u5f3a\u98ce\u548c\u5927\u96ea\u7684\u56f0\u6270\u3002"} +{"id": "3003259", "video_name": "87fe7289-4e86-529d-93ac-5b536df8a0f9", "text": "\u4e00\u5f2016:9\u52a8\u6f2b\u56fe\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2aDJ\u5728\u6d3e\u5bf9\u73b0\u573a\uff0c\u957f\u53d1\u98d8\u98d8\uff0c\u80cc\u5bf9\u7740\u955c\u5934\u56de\u5934\u5f20\u671b\u3002"} +{"id": "7004676", "video_name": "168a1d1b-ef27-52ed-90a1-4c11473a8017", "text": "\u5a01\u5ec9\u00b7\u83ab\u91cc\u65af\u98ce\u683c\u7684\u9a6c"} +{"id": "6003142", "video_name": "650964c6-b389-5002-bb2a-6dbbda7fbb76", "text": "\u4e00\u90e8\u6050\u6016\u7535\u5f71\u6b63\u5728\u5899\u4e0a\u653e\u6620\u3002"} +{"id": "1003019", "video_name": "377c5cd0-798e-5bac-9c53-76cab13f7e87", "text": "\u714e\u997c\u4e0a\u878d\u5316\u7684\u9ec4\u6cb9\u548c\u7cd6\u6d46"} +{"id": "2004158", "video_name": "b85e0709-cdbf-5990-b6ec-4831cf41d0eb", "text": "\u5149\u7ebf\u8ffd\u8e2a\u573a\u666f\u4e2d\uff0c\u5730\u677f\u4e0a\u6709\u5149\u6cfd\u7684\u9ed1\u8272\u516d\u8fb9\u5f62\u74f7\u7816\uff0c\u7a7a\u4e2d\u6709\u53d1\u5149\u7684\u9752\u67e0\u8272\u7403\u4f53\uff0c"} +{"id": "0005685", "video_name": "1f53315e-4678-51d6-b93a-0fe25363c4af", "text": "\u8389\u8389\u88ab\u4e09\u4e2a\u60f3\u8c61\u4e2d\u7684\u670b\u53cb\u5305\u56f4\u7740\u3002"} +{"id": "0003366", "video_name": "3c4ed905-49bf-5499-814b-dbb1bdc6fd14", "text": "\u4e00\u4e2a\u6210\u5e74\u6bcd\u72ee\u5728\u975e\u6d32\u8349\u539f\u4e0a\u8010\u5fc3\u5730\u6e38\u5f0b\u548c\u6f5c\u4f0f\u730e\u7269\u7684\u52a8\u753b\uff0c\u91c7\u7528\u53e4\u8001\u8fea\u58eb\u5c3c\u7535"} +{"id": "2007029", "video_name": "cdab8b2a-a81f-558c-84ac-313d144f2fe7", "text": "\u4e00\u5ea7\u6709\u7740\u6d3b\u751f\u751f\u7684\u6b96\u6c11\u5730\u5c0f\u9547\uff0c\u4eba\u4eec\u5728\u65e5\u5e38\u751f\u6d3b\u4e2d\u5fd9\u788c\u7740\uff0c\u6e05\u6670\u660e\u4e86\uff0c18\u4e16\u7eaa\u98ce\u683c\uff0c\u5e02\u573a"} +{"id": "3003123", "video_name": "00bc2231-bc84-5899-a766-76950261057e", "text": "\u5c71\u8c37\u91cc\u7fe0\u7eff\u7684\u666f\u8272\uff0c\u9e1f\u513f\u9e23\u53eb\uff0c\u6811\u6728\u6447\u6643\u3002"} +{"id": "2004261", "video_name": "fc5e302b-618b-5557-b1b9-d39c458ff5dc", "text": "\u4e00\u4e2a\u4ee5\u65af\u5df4\u8fbe\u4e3a\u4e3b\u9898\u7684\u80cc\u666f\uff0c\u73b0\u4ee3\u56fe\u5f62\u8bbe\u8ba1\u98ce\u683c\u4e0b\u6709\u201c\u8fd9\u5c31\u662f\u65af\u5df4\u8fbe\u201d\u7684\u6587\u5b57\u52a8\u6001\u8dd1\u52a8\u5728\u5176\u4e0a\u3002"} +{"id": "4003959", "video_name": "5e983f05-2b31-5b23-9246-df71e53893ec", "text": "\u53ef\u7231\u7684\u732b\u54aa\u9a91\u7740\u706b\u9f99\u3002"} +{"id": "3004728", "video_name": "eaa12c0a-63ee-533e-b038-4269f1086624", "text": "\u9ec4\u8272\u7f8e\u4e3d\u7684\u5c0f\u9e2d\u5b50\u5728\u8fd1\u8ddd\u79bb\u955c\u5934\u4e0b\u5b09\u7b11\u7740\uff0c\u753b\u51fa\u534e\u7279\u8fea\u58eb\u5c3c\u5f0f\u7684\u5361\u901a\u52a8\u753b\uff0c\u5c55\u73b0\u7f8e"} +{"id": "2007991", "video_name": "0e9de9dc-dd11-5f4d-8e93-036c6a84b899", "text": "\u9752\u5c11\u5e74\u7684\u767d\u7699\u624b\u6b63\u5728\u5173\u4e0a\u4e00\u4e2a\u624b\u63d0\u7bb1\u3002"} +{"id": "7002289", "video_name": "32229b63-c092-5ec9-bfac-d3737a670c3f", "text": "\u4e00\u53ea\u84dd\u8272\u4f1a\u8bf4\u8bdd\u7684\u9e66\u9e49\u5fae\u7b11\u7740\u98de\u8fc7\u4e00\u53ea\u72d7\u3002\u73b0\u5728\u662f\u767d\u5929\u3002\u72d7\u62ac\u5934\u770b\u7740\u5b83\u3002"} +{"id": "2006308", "video_name": "5e75958e-764f-5435-a8ee-849d9d34927b", "text": "\u9ed1\u8272\u9c7f\u9c7c\u673a\u5668\u4eba\u5403\u8001\u9f20\u76848\u6beb\u7c73\u590d\u53e4\u5f71\u7247\u3002"} +{"id": "3005078", "video_name": "685baee7-3d09-52f3-afc5-e4db003541b0", "text": "\u7537\u4eba\u5728\u591c\u665a\u505c\u6b62\u7a7f\u8fc7\u68ee\u6797\u7684\u5954\u8dd1\u3002"} +{"id": "7002894", "video_name": "23050a2d-b4c6-5752-8fc6-fe7c3e554751", "text": "\u6025\u5207\u5730\u60f3\u8981\u57f9\u80b2\u81ea\u5df1\u7684\u611f\u6069\u82b1\u56ed\uff0c\u8428\u59c6\u56de\u5230\u6751\u5e84\u5e76\u4e0e\u6751\u6c11\u5206\u4eab\u4ed6\u7684\u7ecf\u5386\u3002\u4ed6\u4eec\u90fd\u53d7"} +{"id": "2003915", "video_name": "7c557908-868b-5fac-99f0-555369fe0b43", "text": "\u9752\u86d9\u8df3\u5411\u5a74\u513f\uff0c\u9c7c\u5728\u6e38\u6cf3\u3002"} +{"id": "0003132", "video_name": "37ba8812-a63a-5454-b886-6792e600fe53", "text": "\u8036\u7a23\u5c06\u56de\u5230\u5730\u7403\u3002\u5929\u5802\u91cc\u5230\u5904\u90fd\u6709\u5929\u4f7f\uff0c\u6240\u6709\u4eba\u90fd\u611f\u5230\u9707\u60ca\u3002"} +{"id": "8003918", "video_name": "3ad39596-7a41-5946-bd24-0798660b9e7b", "text": "\u4e08\u592b\u5728\u770b\u4e66\uff0c\u59bb\u5b50\u5728\u548c\u4e08\u592b\u8bf4\u8bdd\u3002"} +{"id": "1005832", "video_name": "6b3e57b0-495e-5708-82b9-6851b10021dc", "text": "\u5728\u96a7\u9053\u91cc\u884c\u9a76\u7684\u6885\u8d5b\u5fb7\u65af\uff0c\u5730\u9762\u662f\u6e7f\u7684\u3002\u7535\u5f71\u822c\u7684\u73b0\u5b9e\u3002"} +{"id": "1006738", "video_name": "7b6df5bc-c79f-57cc-a6db-59a1175d5388", "text": "\u65f6\u949f\u8fc7\u6e21\u5230\u4eba\u4eec\u6309\u7167\u89c4\u5f8b\u8d77\u5e8a\u548c\u7761\u89c9\u7684\u753b\u9762\u3002"} +{"id": "3003890", "video_name": "4af9541e-cd52-5e9b-8e2c-35e5f7cf71eb", "text": "\u75af\u72c2\u7684\u60c5\u611f\u5728\u7eff\u5e55\u80cc\u666f\u4e0a\u3002"} +{"id": "2006544", "video_name": "1e96614a-8a67-5a8f-af36-3c8994f288b1", "text": "\u6251\u514b\u724c\u624b\u7528\u540c\u82b1\u987a\u8d62\u5f97\u4e00\u7b14\u5956\u6c60\u3002 \n\nSource sentence: The restaurant serves delicious Chinese cuisine. \n\n\u8fd9\u5bb6\u9910\u5385\u4f9b\u5e94\u7f8e\u5473\u7684\u4e2d"} +{"id": "4003185", "video_name": "7f2b0a74-9d18-58bb-857c-6206f8825552", "text": "\u4e00\u53ea\u72d7\u4e3a\u4e86\u5b83\u7684\u4e3b\u4eba\u56db\u5904\u6f2b\u6e38\u3002"} +{"id": "2005523", "video_name": "582e31ea-f988-5b7b-a237-d2da9e663755", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u9a91\u7740\u9a6c\u7a7f\u8fc7\u7403\u573a\u6563\u6b65\u3002 \n\nSource sentence: The sun rises in the east and sets in the west"} +{"id": "7003686", "video_name": "a08beed4-b531-5dba-8bb0-93b2fabe76db", "text": "\u52a8\u6f2b\u5973\u5b69\u957f\u53d1\u5728\u5c71\u4e0b\u7684\u65e5\u843d\u4e2d\u7ad9\u7740\u3002"} +{"id": "2006059", "video_name": "30e18ec4-96e2-552e-950a-b36cec5d0dc4", "text": "\u4eba\u4eec\u75af\u72c2\u9003\u79bb\u57ce\u5e02\uff0c\u8f66\u8f86\u547c\u5578\u7740\u98de\u9a70\u800c\u53bb\u3002"} +{"id": "3005656", "video_name": "936ec9a4-1c1e-5ea7-b234-b48812c5a0d7", "text": "\u773c\u775b\u7728\u52a8\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u80cc\u666f\u71c3\u70e7\u7740\u706b\u7130\u76844K\u753b\u9762\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1006112", "video_name": "701e96d6-5d95-5363-9721-7c79007e92e0", "text": "\u5370\u5ea6\u6f14\u5458\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u514b\u6c49\u5728\u7559\u957f\u53d1\u3002"} +{"id": "8001585", "video_name": "d7184ae4-b0aa-5838-ab53-a4723a7a78ce", "text": "\u4e00\u540d\u8eab\u7a7f\u7d2b\u8272\u670d\u88c5\u7684\u5973\u6027\u624b\u6301\u95ea\u7535\uff0c\u7ad9\u5728\u7d2b\u8272\u5929\u7a7a\u524d\uff0c\u8eab\u540e\u662f\u7d2b\u8272\u7684\u5929\u7a7a\uff0c\u8fd9\u662f\u675c\u743c\u95ea\u7535\u6982"} +{"id": "6003865", "video_name": "fdd3c002-957a-5010-811f-92bd15bd90ae", "text": "\u4e00\u53ea\u9ec4\u72d7\u4ece\u9ad8\u697c\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "8003393", "video_name": "4a240401-81c9-5e79-9282-9991138d842b", "text": "\u5973\u670b\u53cb\u548c\u7537\u670b\u53cb\u51b3\u5b9a\u5192\u9669\u642c\u5bb6\n16.9\u5168\u9ad8\u6e05\u548c\u539f\u7248\u52a8\u6f2b"} +{"id": "1006218", "video_name": "720e79f0-83cd-5fb5-9d00-228a2541189d", "text": "\u5973\u5b69\u9009\u62e9\u4e861\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002696", "video_name": "c5b80d2b-834d-5d7c-9cf2-c10e9da2ff3d", "text": "\u4e00\u4e2a\u5934\u6234\u5357\u74dc\u5e3d\u5b50\u7684\u7537\u4eba\u5728\u68ee\u6797\u4e2d\u7684\u6cb3\u6d41\u4e0a\u98de\u884c\u3002"} +{"id": "2003065", "video_name": "686261be-e155-57a3-adfd-c6116b344516", "text": "Source sentence: King Arthur and the sword Excalibur in the rock movement.\n\nTranslation: \u4e9a\u745f\u738b\u548c\u5ca9\u77f3\u4e2d\u7684\u5251\u57c3\u514b\u65af\u5361\u5229\u4f2f\u79fb\u52a8\u3002"} +{"id": "2003311", "video_name": "4591e9eb-4dfd-5dcd-b272-04a185c3e2db", "text": "\u521b\u9020\u900f\u89c6\u7684\u5e0c\u814a\u795e\u8bdd\u662f\u4e00\u79cd\u8c2c\u8bba\u3002"} +{"id": "0006747", "video_name": "32488b29-74ad-5fc5-a4f6-2f651183531b", "text": "\u4e00\u53f0\u76f8\u673a\u62cd\u6444\u4e86\u4e00\u4e2a\u5728\u5c71\u9876\u4e0a\u6ed1\u6ed1\u677f\u7684\u7537\u5b50\u7684\u65c5\u884c\u3002"} +{"id": "0003685", "video_name": "41aed7a6-d531-5aee-a4a1-28d422c0f988", "text": "\u63a2\u7d22\u56fd\u738b\u7ef4\u514b\u62c9\u59c6\u5982\u4f55\u5e94\u5bf9\u4ed6\u738b\u56fd\u4e2d\u7684\u5404\u79cd\u6311\u6218\uff0c\u5c55\u793a\u4ed6\u5bf9\u6b63\u4e49\u3001\u516c\u5e73\u548c\u5bf9\u4eba\u6c11\u7684\u5584\u826f"} +{"id": "0004586", "video_name": "0b9d1e95-7dd8-5187-ac55-ff02a4b5cfc8", "text": "\u7531\u4e8e\u5bb3\u6015\u9b3c\uff0c\u519c\u6c11\u6574\u665a\u90fd\u65e0\u6cd5\u5165\u7761\u3002\u665a\u4e0a\u6751\u5b50\u91cc\u975e\u5e38\u5b89\u9759\uff0c\u6ca1\u4eba\u6562\u51fa\u95e8\u3002"} +{"id": "0006989", "video_name": "365775ba-d583-5735-81dc-5ea43f0f6307", "text": "\u4e00\u8258\u8239\u5728\u6d77\u4e0a\u822a\u884c\u3002"} +{"id": "3004694", "video_name": "069245c9-c865-5d7b-9426-3088d6a39853", "text": "\u89c6\u9891\u5f00\u59cb\u65f6\uff0c\u753b\u9762\u662f\u4e00\u4e2a\u4eba\u5750\u5728\u684c\u524d\uff0c\u770b\u8d77\u6765\u4e0d\u582a\u91cd\u8d1f\u548c\u7d27\u5f20\u3002"} +{"id": "7002512", "video_name": "b824cc0a-d90a-5c47-b2e2-e873a6530681", "text": "\u653e\u5728\u7d2b\u5916\u5149\u4e0b\u4f1a\u53d1\u5149\u7684\u70df\u96fe\u9b3c\u9b42\u7684\u56fe\u50cf\u3002"} +{"id": "7003827", "video_name": "8c453519-5d43-5456-aaeb-5be4385b4196", "text": "\u76d8\u5b50\u91cc\u5192\u51fa\u84b8\u6c7d\u3002"} +{"id": "4004794", "video_name": "8ac50fc0-914c-59a4-b5b5-c942ee6e8a29", "text": "\u5bb6\u5ead\u7ebd\u5e26\u5bf9\u4e8e\u8c61\u7684\u91cd\u8981\u6027\uff0c\u4ee5\u53ca\u5728\u5927\u8349\u539f\u4e0a\u56de\u8361\u7684\u6df1\u6c89\u4f4e\u541f\u58f0\u7684\u610f\u4e49\u3002"} +{"id": "5001149", "video_name": "b5b36150-864f-5a61-8059-26598841d94d", "text": "\u5973\u5b69\u5728\u665a\u4e0a\u7684\u6f14\u5531\u4f1a\u4e0a\uff0c\u5728\u5927\u821e\u53f0\u4e0a\u5bf9\u7740\u9ea6\u514b\u98ce\u5531\u6b4c\uff0c\u660e\u4eae\u7684\u706f\u5149\uff0c\u98ce\u683c\u539f\u59cb\u3002"} +{"id": "6003214", "video_name": "5106e800-71d4-5c24-905f-b865294f7c97", "text": "\u51ef\u62c9\u7279\u00b7\u52aa\u5c14\u5854\u65af\u5728S\u7ea7\u522b\u6bd4\u8d5b\u4e2d\u9a91\u884c\u3002"} +{"id": "5001369", "video_name": "7a128c4e-6eb2-5a9b-b7bc-b72029b966ad", "text": "\u4e00\u4f4d\u5929\u4e3b\u6559\u795e\u7236\u5728\u4e00\u90e8\u53e4\u8001\u7684\u9ed1\u8272\u7535\u5f71\u4e2d\uff0c\u5728\u96fe\u8499\u8499\u7684\u6cd5\u56fd\u533a\u8857\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "0003239", "video_name": "39d85c0c-4091-50de-b23b-77e3e8bed6b8", "text": "\u8840\u7ea2\u8272\u7684\u5929\u7a7a\u3002\u4e0b\u7740\u8840\u6ef4\u822c\u7684\u96e8\u3002\u7b3c\u5b50\u60ac\u6302\u5728\u5934\u9876\u4e0a\u3002\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u3002\u5669\u68a6\u822c"} +{"id": "0005546", "video_name": "1c9bbaa2-4a79-5e97-ba9f-6a91d0bfb245", "text": "\u8774\u8776\u548c\u91d1\u53d1\u7cbe\u7075\u4e00\u8d77\u98de\u7fd4\uff0c3D\u52a8\u753b\u3002"} +{"id": "2005555", "video_name": "e2cfafd5-0b63-512c-8635-707385eb506e", "text": "\u5916\u661f\u4eba\u6b63\u5728\u653b\u51fb\u5730\u7403\u3002"} +{"id": "1005624", "video_name": "67636d98-eeb5-5e36-9f90-8f7c4dd4f416", "text": "\u7537\u5b50\u8fdb\u5165Revoult\u94f6\u884c\u5e76\u4e0e\u79d8\u4e66\u4ea4\u8c08\u521b\u5efa\u8d26\u6237\uff0c\u903c\u771f\u3001\u7535\u5f71\u7ea7\u9ad8\u6e05\u3002"} +{"id": "8002234", "video_name": "d5e7dd8c-cd4a-55b1-b21c-1d3062524dc2", "text": "\u4e2d\u4e16\u7eaa\u76d4\u7532\uff0c\u95ea\u7535\u4fa0\u5954\u8dd1\u7684\u8d85\u7ea7\u82f1\u96c4\u6f2b\u5a01\u96d5\u523b\u7684\u73bb\u7483\u8d85\u5199\u5b9e\u30018k\u3001\u590d\u6742"} +{"id": "2003123", "video_name": "83654db0-e780-584c-938f-1772a5717b0e", "text": "\u4e00\u4e2a\u5e73\u9762\u8bbe\u8ba1\u5e08\u5728\u660f\u6697\u7684\u516c\u5bd3\u91cc\u88ab\u7a7a\u5564\u9152\u7f50\u5305\u56f4\u7740\uff0c\u75af\u72c2\u5730\u7f16\u7801\u3002"} +{"id": "0004285", "video_name": "065d9a8e-26d6-57d2-a071-319a2b2a78a3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6b63\u5728\u66f4\u6362\u6c7d\u8f66\u8f6e\u80ce\u3002\n\nSource sentence: She is studying to become a doctor. \n\n\u5979\u6b63\u5728\u5b66\u4e60\u6210\u4e3a\u4e00\u540d\u533b\u751f\u3002"} +{"id": "7004407", "video_name": "e57035f9-691f-5d3f-a7c1-83da9c869329", "text": "\u89c6\u9891\u4ee5\u4e3b\u89d2\u51dd\u89c6\u7740\u65e5\u843d\u7ed3\u675f\uff0c\u773c\u4e2d\u5145\u6ee1\u4e86\u5e73\u9759\u7684\u611f\u89c9\u3002"} +{"id": "1004920", "video_name": "5afa8ccf-ddcc-5f7e-a2a6-a1c050f7f7d0", "text": "\u5730\u5e95\u71c3\u70e7\u7684\u5730\u72f1\u4e4b\u706b\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c3D\u5149\u73af\u6e32\u67d3."} +{"id": "2006961", "video_name": "306a3620-3685-591b-8969-10e3c3b4572b", "text": "\u53e4\u4ee3\uff0c\u4f8d\u5973\u88ab\u5730\u4e3b\u538b\u8feb\uff0c\u5c01\u5efa\u793e\u4f1a\u7684\u793e\u4f1a\u7b49\u7ea7\u5236\u5ea6\u4e0b\uff0c\u4ec6\u4eba\u751f\u6d3b\u4e2d\u5b58\u5728\u7740\u4e0d\u5e73\u7b49\uff0c\u5b58\u5728\u62b5\u6297\u548c"} +{"id": "8002470", "video_name": "2bf4523a-6e52-5d15-9494-d0bb9ad3a254", "text": "\u4f7f\u7528CRISPR\u6280\u672f\u5f00\u53d1\u53ef\u4ee5\u5728\u65e0\u6c27\u73af\u5883\u4e0b\u751f\u5b58\u7684\u5a74\u513f\u3002\nSource sentence: The company plans to expand its operations into Asia next year. \n\u8be5\u516c\u53f8\u8ba1\u5212\u4e8e"} +{"id": "1005509", "video_name": "65736363-4a1a-5ef8-bc12-46b544d1003b", "text": "\u5973\u5b69\u548c\u5bb6\u4eba\u4e00\u8d77\u5750\u5728\u5149\u7ebf\u5145\u8db3\u7684\u68ee\u6797\u91cc\u3002 \n\nSource sentence: The cat is sleeping on the windowsill in the warm sunlight. \n\n\u732b\u6b63\u8eba"} +{"id": "0004156", "video_name": "0441e193-16b5-5ddf-8d3b-fa15045c94e0", "text": "\u975e3D\u3002\u975e\u5361\u901a\u3002\u975e\u52a8\u6f2b\u3002\u771f\u5b9e\u4eba\u4f53\u5de5\u7a0b\u5b66\u3002\u9ad8\u8d28\u91cf\u5199\u5b9e\u3002\u8ff7\u4f60\u6bd4\u57fa\u5c3c\u5c11\u5973\u3002"} +{"id": "3006971", "video_name": "b92df4e3-2b27-5091-bd3d-06f3274f276a", "text": "\u9ed1\u6697\u5e7b\u60f3\u4e2d\u4e16\u7eaa\u52a8\u6f2b\u5973\u6027\u8fd1\u666f\uff0c\u90aa\u6076\u7684\u9b54\u9b3c\u5fae\u7b11\u7740\uff0c\u7ea2\u8272\u6027\u611f\u9ad8\u6e05\u52a8\u611f\u955c\u5934\u5411\u4e0b"} +{"id": "0004406", "video_name": "085fe729-342b-505d-9f3d-8a176c9bd35d", "text": "\u4e00\u4e2a\u751c\u871c\u53c8\u7126\u8651\u7684\u7537\u4eba\u76f4\u89c6\u7740\u6444\u50cf\u5934\u7728\u773c\uff0c\u6c57\u6c34\u4ece\u989d\u5934\u4e0a\u6d41\u4e0b\u3002"} +{"id": "7004269", "video_name": "b29d285f-4212-5f60-bf04-5145a8566e15", "text": "\u871c\u8702\u91c7\u871c\u7684LoFi\u98ce\u683c\u89c6\u9891\uff0c\u68a6\u5e7b\u822c\u7684\u3002"} +{"id": "3003974", "video_name": "ab60c308-3984-5985-b89e-b778351bbb44", "text": "\u4e4c\u5c14\u574e\u3001\u661f\u7a7a\u3001\u84dd\u8272\u6d77\u6d0b\u3001\u5c9b\u5c7f\u3002"} +{"id": "2006627", "video_name": "807634d8-6adf-5a6c-a03c-b94c5e3775a3", "text": "\u4e2d\u6587\u9f99\u5e74\u548c\u6625\u8282\u795d\u798f\u6d77\u62a5"} +{"id": "3005618", "video_name": "090fb640-d017-5a3a-9d1a-97ab623f2a30", "text": "\u6210\u5343\u4e0a\u4e07\u53ea\u8272\u5f69\u6591\u6593\u7684\u9e1f\u513f\u5728\u4e1b\u6797\u4e2d\u7684\u6811\u679d\u4e0a\u6b4c\u5531\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006597", "video_name": "78592ac8-c746-5ec0-8efb-9729271e8d0f", "text": "\u540e\u666f\u4e2d\u7684\u6a59\u8272\u5149\u5728\u79fb\u52a8\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e00\u4e9b\u98df\u54c1\u6742\u8d27\u3002"} +{"id": "4002202", "video_name": "c4b4d800-ba94-527a-9ce3-d33074bde26a", "text": "\u4e00\u4e2a\u4eba\u8bb2\u8ff0\u81ea\u6211\u6fc0\u52b1\u6f14\u8bb2"} +{"id": "3005079", "video_name": "d4ccedee-2fea-513c-8783-9b766c44d872", "text": "\u7535\u89c6\u673a\u53d1\u751f\u4e86\u4e00\u6b21\u975e\u5e38\u5927\u7684\u7206\u70b8\uff0c\u4f34\u968f\u7740\u8bb8\u591a\u989c\u8272\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001297", "video_name": "1eb63df8-5118-5d15-8215-809831794f07", "text": "\u4e24\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u5728\u4e00\u8f86\u8f66\u524d\u63e1\u624b\uff0c\u65e5\u843d\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "0006452", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "\u5728\u98df\u5802\u91cc\uff0c\u56db\u4e2a\u5973\u5b69\u6b63\u5feb\u4e50\u5730\u804a\u5929\u3002"} +{"id": "3006212", "video_name": "a644566f-3963-5e3a-b16b-b7696fc04c6c", "text": "\u7537\u4eba\u5728\u8857\u4e0a\u5954\u8dd1\uff0c\u5929\u7a7a\u662f\u7ea2\u8272\u7684\u3002\u6444\u50cf\u673a\u6162\u6162\u62c9\u8fd1\uff0c\u53ea\u62cd\u6444\u624b\u81c2\u548c\u817f\u7684\u52a8\u4f5c\u3002\u4fe1\u606f\uff1a"} +{"id": "7002613", "video_name": "bb6bef63-a857-5e87-8807-f7ec2768c415", "text": "\u4e00\u4f4d\u6709\u8fdc\u89c1\u7684\u5efa\u7b51\u5e08\u901a\u8fc7\u795e\u5723\u51e0\u4f55\u5b66\u8bbe\u8ba1\u4e86\u4e00\u5ea7\u5bfa\u5e99\uff0c\u91c7\u7528\u6c89\u6d78\u5f0f\u56fe\u6848\u6765\u5524\u9192\u66f4\u9ad8\u610f"} +{"id": "2006051", "video_name": "89ac6e57-8397-5588-b5d7-4778ce16c724", "text": "\u56de\u5230\u5927\u7ea61900\u5e74\u5de6\u53f3\u7684\u65f6\u95f4\u3002"} +{"id": "7003216", "video_name": "9cb47fcb-a968-53e7-a2c8-f522642346e3", "text": "Translation: \u7687\u5e1d\u7a7f\u7740\u9f99\u70ae\u3002"} +{"id": "6004135", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "\u827e\u739b\u72ec\u81ea\u5750\u5728\u623f\u95f4\u91cc\uff0c\u795e\u60c5\u5fe7\u90c1\u5b64\u72ec\u3002"} +{"id": "1006248", "video_name": "7277b289-0f0c-53a1-a8ed-88f9ad01f65e", "text": "\u5728\u52a8\u6f2b\u98ce\u683c\u4e0b\u7684\u65e5\u60f9\u5e02\u548c\u56fe\u8c37\u3002"} +{"id": "2004220", "video_name": "36416b9c-58f8-5324-b6a0-bb06dab1892b", "text": "\u56fe\u50cf\uff0c\u533b\u9662\uff0c\u773c\u79d1 CHAF \u5199\u5728\u4e2d\u5fc3\u3002"} +{"id": "1004435", "video_name": "51fededb-8486-5555-87ca-acaad30b7d67", "text": "\u5728\u5357\u6781\u6d32\u51b0\u51b7\u7684\u5e7f\u9614\u533a\u57df\u91cc"} +{"id": "1004158", "video_name": "4d093dbd-68a4-5a88-a7d2-184e58081042", "text": "\u5b9d\u9a6c5\u7cfb\u5728\u8857\u4e0a\u884c\u9a76\u7684\u89c6\u9891"} +{"id": "4002518", "video_name": "4c8ef787-a52b-59a1-9397-b048ebfba818", "text": "\u4e9a\u5386\u514b\u65af\u8fd9\u4e2a\u7537\u5b69\u82b1\u8d39\u4ed6\u7684\u65e5\u5b50\u63a2\u7d22\u74e6\u83b1\u5229\u4e9a\u8fd9\u4e2a\u57ce\u9547\u7684\u89d2\u843d\u548c\u7f1d\u9699\uff0c\u603b\u662f\u5728"} +{"id": "0005422", "video_name": "1a958b9a-81d7-528e-baed-389abb75311d", "text": "\u4fe1\u4ef6CO KHI 3\uff1a\u6d12\u843d\u6f02\u6d6e\uff0c\u903c\u771f\u6444\u5f71\u3002"} +{"id": "0003764", "video_name": "42ee1098-e1ea-5ded-8443-e22ec386839b", "text": "\u5448\u73b0\u5ba0\u7269\u4e0e\u4eba\u4e4b\u95f4\u7684\u6e29\u99a8\u65f6\u523b\uff0c\u5f3a\u5316\u5b83\u4eec\u4e4b\u95f4\u7684\u7d27\u5bc6\u8054\u7cfb\u3002"} +{"id": "5001042", "video_name": "d945df6e-54c6-5172-b5f5-fc59f51a46c9", "text": "\u521b\u9020\u4e00\u4e2a\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5176\u4e2d\u300a\u534e\u5c14\u8857\u4e4b\u72fc\u300b\u548c\u739b\u683c\u7279\u00b7\u7f57\u6bd4\u6210\u4e3a\u65e0\u5bb6\u53ef\u5f52\u8005\u3002"} +{"id": "0006276", "video_name": "29e501cd-ec48-580a-b5d2-99225ca581ca", "text": "\u4e00\u500b\u4eba\u9032\u5165\u9053\u5947\u6311\u6230\u8005\u3002"} +{"id": "8003577", "video_name": "6b769d95-9f35-502e-853d-bbb1503ac038", "text": "\u4e00\u5ea7\u57ce\u5821\u98de\u5728\u5929\u7a7a\u4e0a\u3002"} +{"id": "6004663", "video_name": "50c6aabe-5f7d-5766-ac58-863c0c1f120c", "text": "1977\u5e74\u7531\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u5bfc\u6f14\u7684\u73b0\u573a\u7535\u5f71\uff0c\u5728\u9a6c\u4e18\u6bd4\u4e18\uff0c\u4e00\u4e2a\u4eba\u624b\u6301\u5341\u5b57\u67b6\u88abUFO\u5347\u8d77\uff0c\u5177\u6709"} +{"id": "1003409", "video_name": "3eef4dbb-1a71-58ba-8a54-f5b8bf62b873", "text": "\u5de8\u5927\u7684\u514b\u82cf\u9c81\u5728\u98ce\u66b4\u4e2d\u548c\u4e00\u8258\u8239\u3002"} +{"id": "4002724", "video_name": "968bd20c-571a-54cd-a54c-aadb9f1d99f2", "text": "\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u5934\u53d1\u98d8\u52a8\uff0c\u773c\u775b\u6162\u6162\u7728\u52a8\u3002"} +{"id": "4004905", "video_name": "781fe6b5-e6c9-5f29-a489-b913a1d40d1c", "text": "\u4e00\u53ea\u5e26\u82b1\u7684\u72d7\u3002\u4fe1\u606f\uff1a\u5927\u536b\u3002"} +{"id": "8002860", "video_name": "a20fa7a2-3031-5b95-99ab-6e1bb8f9aedf", "text": "\u4e00\u53ea\u4e4c\u9f9f\u548c\u4e00\u53ea\u8783\u87f9\u5728\u4e92\u76f8\u6253\u6597\u3002"} +{"id": "4002529", "video_name": "21f25561-47dd-583b-a089-03657cb3d621", "text": "Translation: \u54c8\u5229\u6ce2\u7279\u5728\u5370\u5ea6\u8857\u4e0a\u9047\u5230\u4e86\u4ed6\u4eec\u3002"} +{"id": "4004188", "video_name": "034d9a4a-432f-5ceb-b18e-ae83a08d4e8c", "text": "\u5de8\u5927\u7f05\u56e0\u5e93\u6069\u732b\uff0c\u5468\u56f4\u6709\u5c0f\u4e2a\u5b50\uff0c\u4eba\u4eec\u5728\u7948\u7977\u3002"} +{"id": "3003797", "video_name": "682ed326-4e81-52d5-b10b-7c50f9629132", "text": "\u9ec4\u8272\u80cc\u666f\u4e0a\u76843D\u5b57\u4f53\u201c\u7231\u201d\uff0c\u5177\u6709\u94ec\u955c\u9762\u8d28\u5730\u548c\u810a\u5f62\uff0c\u7b80\u7ea6\u3002"} +{"id": "8002213", "video_name": "9c1ac9c8-533f-55bd-a146-607352bd6447", "text": "\u5feb\u4e50\u7684\u7537\u4eba\u5728\u96e8\u4e2d\u5954\u8dd1\u5e76\u8df3\u8dc3\u3002"} +{"id": "4002260", "video_name": "5e388c33-bb08-532e-8ff9-c210a77a2f91", "text": "\u7ea2\u8272\u3001\u9ed1\u8272\u548c\u91d1\u8272\u4e3a\u4e3b\u8272\u8c03\uff0c\u4e0a\u9762\u5199\u7740\u201croyal family shoes\u201d\u7684\u978b\u5e97\u6807\u5fd7\u3002"} +{"id": "2005589", "video_name": "b26fdd04-fd59-5e2e-9323-0b4af78c6113", "text": "\u5927\u674e\u5b50\u7684\u4fdd\u9f84\u7403\u7535\u5f71\u955c\u5934"} +{"id": "8002102", "video_name": "97c1d918-725d-5f30-b6a5-53db6d34bec2", "text": "\u8fd1\u8ddd\u79bb\u62cd\u6444\u7684\u82f1\u4fca\u5e74\u8f7b\u7537\u5b50\u5fae\u7b11\uff0c20\u5c81\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u84dd\u8272\u773c\u775b\uff0c\u707f\u70c2\u7684\u7b11\u5bb9\uff0c\u5feb"} +{"id": "1005974", "video_name": "6dbc176b-2174-5e7d-a34a-d485dd92b357", "text": "\u7a7f\u7740\u9ed1\u8272\u793c\u670d\uff0c\u6234\u7740\u6d63\u718a\u9762\u5177\u7684\u7537\u5b50\u5728\u9ad8\u5c14\u592b\u7403\u573a\u4e0a\u8d70\u6765\u8d70\u53bb\uff0c\u624b\u52bf\u660e\u663e\u3002"} +{"id": "4004968", "video_name": "0cda0f42-b514-5e67-aa8a-55c6efeffc99", "text": "\u4e00\u67b6\u98de\u789f\u7f13\u6162\u5730\u4ece\u8349\u539f\u964d\u843d\u3002"} +{"id": "6004438", "video_name": "3b8d3d37-9ada-528d-a28c-ae1d379cb9ea", "text": "\u7537\u5b69\u5728\u8bfb\u4e66\uff0c\u542c\u97f3\u4e50\u3002"} +{"id": "2003729", "video_name": "c944fdc6-4859-5380-8d9f-cb6894ed2e30", "text": "\u63cf\u8ff0\u65e5\u843d\u65f6\u5e7f\u9614\u7684\u5927\u8349\u539f\uff0c\u8fdc\u5904\u50b2\u6162\u5ca9\u9ad8\u8038\u3002"} +{"id": "3005260", "video_name": "a00ef906-88e4-5b95-abff-88d208918fa4", "text": "Translation: \u6d41\u661f\u649e\u51fb\u5730\u7403\uff0c\u903c\u771f\u3002"} +{"id": "3003883", "video_name": "1605def4-12e8-57b6-a374-b1bc98fd7bd9", "text": "\u53ef\u7231\u7684\u5c0f\u732b\u5728\u5c0f\u72d7\u65c1\u8fb9\u5954\u8dd1\u3002\n\nSource sentence: I love eating sushi with soy sauce and wasabi. \n\n\u6211\u559c\u6b22\u7528\u9171\u6cb9\u548c"} +{"id": "2006379", "video_name": "ef4bb515-8ed3-50b3-8819-7eaf8cf16511", "text": "\u4e00\u4e2a\u6ca1\u6709\u8138\u7684\u5973\u4eba\u88f9\u7740\u6bef\u5b50\u7f13\u6162\u5730\u4ece\u4e00\u4e2a\u975e\u5e38\u9ed1\u6697\u7684\u5367\u5ba4\u7684\u5e8a\u4e0a\u5750\u8d77\u6765\uff0c\u6709\u4e00\u79cd\u6050\u6016\u7684"} +{"id": "2003602", "video_name": "2a9e77bb-3982-529f-b68a-19b595ff50b9", "text": "\u4e34\u754c\u7a7a\u95f4\uff0c\u7c89\u8272\u7530\u91ce\u548c\u5927\u7247\u4e91\u5f69\uff0c\u590d\u53e4\u7535\u5f71\u6548\u679c\uff0c\u60ca\u6050\u3002"} +{"id": "0003646", "video_name": "40f3beff-e57b-587d-bb39-4fe682c90c93", "text": "\u98a0\u7c38\u7684\u5c71\u8def\u4e0a\uff0c\u4e00\u5ea7\u5c71\u88ab\u96ea\u548c\u96fe\u7b3c\u7f69\u7740\uff0c\u592a\u9633\u6b63\u5728\u5347\u8d77\uff0c\u7167\u8000\u5728\u5c71\u4e0a\u3002\u89c6\u9891\u4ece\u592a\u9633\u5185"} +{"id": "2004100", "video_name": "17042bd9-0373-5b69-9050-f1e5b0ba22fb", "text": "\u4e00\u80a1\u91d1\u94b1\u7684\u6f29\u6da1\u98de\u5165\u4e94\u89d2\u5927\u697c\u4e2d\u5fc3\u3002"} +{"id": "8003253", "video_name": "3a528114-192c-5f5b-a9e8-844dec41e751", "text": "\u4e00\u53ea\u8272\u5f69\u6591\u6593\u7684\u7f9a\u7f8a\u5728\u5bd2\u51b7\u548c\u96ea\u7684\u73af\u7ed5\u4e0b\u5954\u8dd1\u7740\uff0c\u661f\u5149\u95ea\u8000\u3002"} +{"id": "7003533", "video_name": "c265efcf-3daa-5206-8eb6-917009661ff4", "text": "\u4ece\u5e03\u6ee1\u661f\u5149\u7684\u81ea\u7136\u4e16\u754c\u9010\u6e10\u8fc7\u6e21\u5230\u66f4\u4e3a\u719f\u6089\u7684\u591c\u666f\uff0c\u6216\u8bb8\u662f\u67d4\u548c\u7167\u660e\u7684\u82b1\u56ed\u6216"} +{"id": "1005164", "video_name": "5f0dbe00-bb22-5100-abdb-ec373de0aaf2", "text": "\u4e24\u4e2a\u89d2\u8272\u5403\u7740\u591a\u6c41\u7684\u77f3\u69b4\u7684\u89c6\u9891\u3002"} +{"id": "5001700", "video_name": "409b206b-d74c-511d-9010-bdebbcd11222", "text": "\u5927\u63d0\u7434\u5927\u5e08\u5728\u6f14\u594f\u65f6\u53bb\u4e16\u3002"} +{"id": "8003315", "video_name": "139888f1-b177-5cf5-9868-1c1ea11de323", "text": "\u592a\u9633\u6bd4\u5730\u7403\u5927109\u500d\u3002"} +{"id": "3004137", "video_name": "5dbcca11-d327-5b49-a65a-529adc811395", "text": "\u6e38\u89c8\u4e00\u4e2a\u7f8e\u4e3d\u7684\u767d\u8272\u7f8e\u5b66\u57ce\u5821\u5185\u3002"} +{"id": "1003583", "video_name": "41fa57e2-cba8-55ac-9acb-971f6173f4d1", "text": "\u65e5\u843d\u6216\u5b81\u9759\u7684\u6536\u5c3e\u753b\u9762\u3002"} +{"id": "1003775", "video_name": "459dab14-3b4c-5f67-b8d8-e76b3c5922e4", "text": "\u7535\u5f71\u7ea7\u522b\u7684\u8d85\u73b0\u5b9e\u9e2d\u5b50\u5750\u5728\u5ba2\u5385\u91cc\u62bd\u70df\uff0c\u540c\u65f6\u5728\u8001\u5f0f\u7535\u89c6\u673a\u4e0a\u73a9\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "1004804", "video_name": "58c6180c-db1c-5f01-95ab-ce9f193a34cb", "text": "\u5de8\u5927\u7684E\u5b57\u6bcd\u7531\u8033\u57a2\u5236\u6210\u3002"} +{"id": "3004388", "video_name": "382332dc-32cc-5228-9956-31e0cef795f8", "text": "\u4e00\u5c0a\u95ed\u76ee\u6253\u5750\u7684\u62c9\u514b\u4ec0\u7c73\u5973\u795e\uff0c\u624b\u52bf\u4f18\u7f8e\u3002"} +{"id": "3005923", "video_name": "f193fd76-1a9f-522c-afb7-785289977df0", "text": "\u65e0\u8bba\u4f60\u60f3\u5411\u4e16\u754c\u5c55\u793a\u4ec0\u4e48\n\nSource sentence: I am learning Chinese because I want to communicate with more people. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u4e0e\u66f4\u591a\u7684\u4eba\u4ea4"} +{"id": "7003911", "video_name": "b8278566-0f97-5b26-980c-0f4f454b096b", "text": "\u6770\u68ee\u00b7\u6c83\u970d\u65af\u5728\u4e00\u4e2a\u5c38\u4f53\u4e0a\u51b2\u6d6a\u3002"} +{"id": "8002575", "video_name": "eb65fb9e-0100-5e79-8ae1-551618559e98", "text": "\u7814\u7a76\u5c0f\u7ec4\u5c06\u5728\u5bb9\u5668\u4e2d\u8fdb\u884c\u6587\u7ae0\u5faa\u73af\u3002"} +{"id": "5001553", "video_name": "06872501-0ff3-5825-a0cc-a5dde87ecc36", "text": "Denisovans \u4e3a\u6211\u4eec\u5bf9\u4eba\u7c7b\u8fdb\u5316\u7684\u7406\u89e3\u589e\u52a0\u4e86\u4e00\u5c42\u590d\u6742\u6027\u3002"} +{"id": "8003967", "video_name": "7db9e17c-8cf4-5694-898a-898e22393fde", "text": "\u4e00\u5f20\u667a\u6167\u8001\u72ee\u7ad9\u5728\u5ca9\u77f3\u4e0a\uff0c\u5e26\u7740\u6743\u5a01\u7684\u773c\u795e\u5bf9\u7740\u805a\u96c6\u5728\u4e00\u8d77\u7684\u52a8\u7269\u4eec\u8bb2\u8bdd\u7684\u5f62\u8c61"} +{"id": "2005903", "video_name": "5db3526d-81de-515f-a766-320abb0ab607", "text": "\u4e00\u53ea\u624b\u7ed8\u7684\u5361\u901a\u72d7\u5728\u9ad8\u4e2d\u8d70\u5eca\u91cc\u5954\u8dd1\u3002"} +{"id": "0006688", "video_name": "31193a71-e333-52bc-aaf4-daaf90b496ad", "text": "\u84dd\u8272\u7684\u9e1f\u5728\u8ff7\u5e7b\u7684\u7530\u91ce\u4e0a\u98de\u7fd4\u3002"} +{"id": "8003168", "video_name": "64f0283c-13b0-5e3c-bf94-c291295e00b7", "text": "\u573a\u666f\u6253\u5f00\uff0c\u4e00\u7fa4\u52c7\u6562\u7684\u63a2\u9669\u5bb6\u7ad9\u5728\u4e00\u5ea7\u53e4\u8001\u800c\u4ee4\u4eba\u751f\u754f\u7684\u6d1e\u7a74\u5165\u53e3\u524d\u3002\u706b\u628a\u95ea\u70c1\uff0c"} +{"id": "3003558", "video_name": "dd651c51-301e-5383-80f3-80370a997a2a", "text": "\u7ebd\u7ea6\u5e02\u4e2d\u592e\u7684\u4e00\u4e2a\u8df3\u821e\u7537\u5b50\u3002 \n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u6b63\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "1005061", "video_name": "5d87baaf-48c0-58db-a38a-58af6f47a631", "text": "\u65f6\u95f4\u6d41\u901d\u4e2d\uff0c\u5de8\u77f3\u6eda\u843d\u4e0b\u5c71\u3002\nSource sentence: The cat is sleeping on the couch. \n\u732b\u54aa\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6003750", "video_name": "24bdf8f7-2356-5198-9255-5f1cfe910944", "text": "\u4e00\u679a\u70df\u96fe\u5f39\u5728\u4e00\u4e2a\u6751\u5e84\u7684\u5730\u9762\u4e0a\u7206\u70b8\uff0c\u4ea7\u751f\u6d53\u5bc6\u7684\u70df\u96fe\u3002\u9644\u5e26\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006882", "video_name": "34acb7ef-d1b6-5d42-978d-59cd257d9224", "text": "\u62c9\u59c6\u548c\u590f\u59c6\u4f5c\u4e3a\u670b\u53cb\u62e5\u62b1\u7684\u6e29\u99a8\u573a\u666f\u3002"} +{"id": "3004167", "video_name": "e7c2e27f-1e31-5706-a7b7-6640b6e4c0e5", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7f8e\u4e3d\u6751\u5e84\u5168\u7403\u89c6\u91ce\u89c6\u9891"} +{"id": "1006506", "video_name": "771576c7-4fb1-57fb-b254-7c95ac9ab41e", "text": "Translated sentence: \u79fb\u52a8\u4eae\u5ea6\u90e8\u5206\u7684\u660e\u4eae\u8fd0\u52a8"} +{"id": "4003234", "video_name": "c0f4905f-0214-55cb-978f-41a140abf1b4", "text": "\u4e00\u53ea\u5c0f\u732b\u54aa\u4ee5\u52a8\u6f2b\u98ce\u683c\u6253\u4e52\u4e53\u7403\uff0c\u8bf7\u628a\u5b83\u7ed9\u6211\u3002"} +{"id": "6003670", "video_name": "cd800c05-d3ff-5f15-b689-129a15c3aa9e", "text": "\u5728Shiva\u7684\u51a5\u60f3\u4e2d\uff0c\u62bd\u8c61\u7684\u5b87\u5b99\u521b\u9020\u548c\u6d88\u5931\u5728\u4ed6\u8eab\u4e0a\u3002"} +{"id": "1005166", "video_name": "5f18d30a-2a10-5299-b71a-1a591e44b4aa", "text": "\u5e26\u6709\u71c3\u70e7\u4f59\u70ec\u7684\u7f55\u89c1\u70e4\u8089\uff0c\u5728\u80cc\u666f\u4e2d\u5feb\u901f\u79fb\u52a8\u7684\u706b\u7130\u3002"} +{"id": "4003024", "video_name": "8621741b-5308-5102-857c-abba69f0ee46", "text": "\u89c6\u89d2\u4fef\u77b0\uff0c\u4e00\u4e2a\u95f7\u70ed\u7684\u529e\u516c\u5ba4\u548c\u4e00\u540d\u4ece\u76d1\u89c6\u5668\u4e2d\u62ac\u5934\u671d\u6444\u50cf\u5934\u5fae\u7b11\u7684\u96c7\u5458\u3002"} +{"id": "3005549", "video_name": "380da006-6807-5167-ac15-3e903dad1a0b", "text": "\u5728\u70ed\u5e26\u5c9b\u5c7f\u4e0a\u89c2\u770b\u5b87\u5b99\u98de\u8239\u7684\u4eba\u4eec"} +{"id": "4004237", "video_name": "40da6a19-268c-55b0-a8ab-9872603b7d51", "text": "3D\u52a8\u753b\u5973\u5b69\u54ed\u6ce3\u60b2\u4f24\uff0c\u52a8\u7269\u4eec\u8868\u73b0\u51fa\u4ed6\u4eec\u7684\u70ed\u60c5\u597d\u5ba2\u548c\u611f\u6fc0\u4e4b\u60c5\u3002\u8bb8\u591a\u52a8\u7269\u884c\u8d70\uff0c\u573a"} +{"id": "4003657", "video_name": "c6bdcc14-aec1-53f6-82b5-6dcb5988d055", "text": "\u5973\u5b69\u8d70\u5411\u5979\u7684\u670b\u53cb\uff0c\u52a8\u4f5c\u903c\u771f\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9\u3002"} +{"id": "0005258", "video_name": "176ab26d-b89d-5778-8430-5243353a4ccb", "text": "\u60c5\u4fa3\u5728\u65e5\u843d\u65f6\u5206\u6cbf\u7740\u6d77\u6ee9\u6563\u6b65\u3002"} +{"id": "6002700", "video_name": "93c812d6-66d7-5897-9088-41f869b27a46", "text": "\u8428\u59c6\u6234\u590f\u65e5\u773c\u955c\u65f6\uff0c\u76b1\u8d77\u4e86\u4ed6\u7684\u80f3\u818a\u3002"} +{"id": "4004908", "video_name": "7cc9b375-7821-53d2-9071-cf6bb273a351", "text": "\u9ed1\u53d1\u5c0f\u5973\u5b69\u7a7f\u7740\u4e00\u4ef6\u7ea2\u8272\u5916\u5957\uff0c\u7ee7\u7eed\u5728\u96fe\u4e2d\u5954\u5411\u6d1e\u7a74\u3002\u4fe1\u606f\uff1a\u6d1e\u7a74\u96fe\u3002"} +{"id": "0006353", "video_name": "2b1f0135-a998-58be-a403-d71943971556", "text": "\u4e00\u4e2a\u7d27\u5f20\u7684\u6c42\u804c\u8005\u62ff\u7740\u4e00\u4efd\u7b80\u5386\u8d70\u5411\u516c\u53f8\u7684\u95e8\u53e3\u3002"} +{"id": "6003733", "video_name": "add229fb-51bd-5bd7-886c-3860550d3f59", "text": "\u4e00\u67b6\u98de\u673a\u5411\u6d1b\u6749\u77f6\u6469\u5929\u5927\u697c\u503e\u5012\u6cb9\u6c61\u3002"} +{"id": "3006075", "video_name": "3307eeff-6f2a-5974-a75d-aef3605758d9", "text": "\u8bf7\u7ed9\u6211\u63d0\u4f9b\u4e00\u4e2a\u53d1\u751f\u572818\u4e16\u7eaa\u3001\u8bb2\u8ff0\u83ab\u5367\u513f\u5e1d\u56fd\u548c\u82f1\u56fd\u519b\u961f\u51b2\u7a81\u7684\u5386\u53f2\u6545\u4e8b\u3002"} +{"id": "2007591", "video_name": "0d3072a5-abda-5ecd-bceb-c4fac71689d3", "text": "\u5f53\u8389\u8389\u3001\u6770\u514b\u548c\u827e\u739b\u7a7f\u8fc7\u5e02\u573a\u6f2b\u6b65\u65f6\uff0c\u4ed6\u4eec\u9047\u5230\u4e86\u4e00\u4e2a\u540d\u53eb\u514b\u52b3\u65af\u5148\u751f\u7684\u6b22\u4e50"} +{"id": "8002468", "video_name": "23d5c8a3-b59a-55e9-8c75-d9c56b4f15d6", "text": "\u573a\u666f10\uff1a\u7f8e\u6ee1\u7ed3\u5c40\u3002\u8389\u62c9\u548c\u963f\u5a03\u56de\u5230\u4e86\u9b54\u6cd5\u68ee\u6797\uff0c\u5728\u7231\u4e0e\u63a5\u53d7\u7684\u73af\u7ed5\u4e0b\u4e00\u8d77\u5efa\u7acb\u4e86\u65b0\u7684"} +{"id": "7002594", "video_name": "eb66071d-53c3-5c16-b336-90222f928501", "text": "\u767d\u8272\u798f\u7279\u798f\u514b\u65afST 2008\u5e74\u5bf9\u6bd4\u9ed1\u8272\u6b27\u5b9d\u96c5\u7279\u62c9OPC 2008\u5e74\u5728\u53d1\u5c04\u65f6\u3002"} +{"id": "8002248", "video_name": "5c81684a-3885-5eac-b3b3-9a8fb9fdfb47", "text": "\u4eba\u4eec\u7b49\u5f85\u89c6\u9891\u5728\u4ed6\u4eec\u7684\u7535\u8111\u4e0a\u51fa\u73b0\u7684\u6a21\u4eff\u3002"} +{"id": "0006624", "video_name": "2fbd88fc-1d23-5e62-bc39-8c28afaa47c5", "text": "\u8c6a\u534e\u8fd0\u52a8\u8f66\u6fc0\u8fdb\u7684\u7ebf\u6761\uff0c\u7528\u9ad8\u5bf9\u6bd4\u5ea6\u3001\u9ad8\u94a5\u5319\u5149\u7ebf\u548c\u6d45\u666f\u6df1\u62cd\u6444\uff0c\u7ec6\u8282\u9f50\u5907\uff0c\u8fd0\u52a8\u611f"} +{"id": "1005658", "video_name": "67f20417-22ae-5803-9233-157e774c59d9", "text": "\u539f\u672c\u6bd4\u5361\u5c3c\u5c14\u5546\u5e97\u7684\u4e00\u5f201937\u5e74\u7684\u9ed1\u767d\u8001\u7167\u7247\u3002"} +{"id": "4003534", "video_name": "3fe51691-d71a-52b6-981f-4e8eb4d1a0a7", "text": "\u9a91\u58eb\u4ee5\u53f2\u8bd7\u822c\u7684\u65b9\u5f0f\u51c6\u5907\u6218\u6597\u3002"} +{"id": "7004420", "video_name": "8799a1f2-b158-5695-8713-2c5d2d005f7c", "text": "\u63d0\u793a\uff0c\u5927\u8111\u63a7\u5236\u6211\u4eec\u8eab\u4f53\u548c\u5fc3\u667a\u7684\u6240\u6709\u6d3b\u52a8\u3002\u6211\u4eec\u6240\u6709\u7684\u8bb0\u5fc6\u90fd\u5b58\u50a8\u5728\u5927\u8111\u4e2d\u3002\u8fd9\u4e2a\u5927\u8111\u662f\u6211\u4eec\u5fc3\u667a\u548c"} +{"id": "4003483", "video_name": "183c75e0-204d-5278-84fe-946fc0d52620", "text": "\u4e00\u5e45\u53ef\u7231\u7684\u5361\u901a\u753b\uff0c\u753b\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u7231\u7684\u5973\u4eba\u3002"} +{"id": "2004146", "video_name": "7faa7005-d489-5fa6-b572-78151638816a", "text": "\u4e00\u4e2a\u4f7f\u7528\u5854\u7f57\u724c\u7684\u5947\u602a\u7684\u5c0f\u52a8\u753b\u89d2\u8272\u3002\u6050\u6016\u3002\u795e\u79d8\u3002\u5947\u5f02\u3002"} +{"id": "2007626", "video_name": "0bb921f8-4505-5e53-93d0-8e448ad8eed9", "text": "\u68ee\u6797\u91cc\u7684\u5411\u65e5\u8475\u5728\u591a\u4e91\u7684\u65e5\u5b50\u91cc\uff0c\u96fe\u6c14\u3001\u81ea\u7136\u5149\u7ebf\uff0c\u4fe1\u606f\uff1aSIMMAJE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0003981", "video_name": "01075152-9c3c-513d-9446-62db9502196b", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u4fa7\u9762\u8d70\u8def\u7684\u89c6\u89d2\u3002"} +{"id": "0006431", "video_name": "2c290e7e-eb9a-5478-85d3-42ee748ab52c", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u5728\u5979\u5973\u513f\u9762\u524d\u80cc\u8bf5\u300a\u53e4\u5170\u7ecf\u300b\u3002"} +{"id": "3006714", "video_name": "b38658a1-bcbc-5ad2-b126-4f15c5c0630e", "text": "\u76f4\u64ad\u4e3b\u4ece\u81ea\u5df1\u7684\u623f\u95f4\u91cc\u89c2\u770b\u57ce\u5e02\u7684\u591c\u666f\u3002"} +{"id": "8002250", "video_name": "1e5b8217-e3c6-58bd-bca4-41795cea2075", "text": "shining behind her\n\n\u4e00\u6bb5\u8fd1\u8ddd\u79bb\u62cd\u6444\u7684\u89c6\u9891\uff0c\u4e00\u4e2a\u6f02\u4eae\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u767d\u5929\u9633\u5149\u4e0b\u5fae\u7b11\uff0c\u592a\u9633\u5728\u5979\u8eab\u540e"} +{"id": "8001471", "video_name": "afabbf8f-736a-5d02-bb35-787c616b7a12", "text": "\u7ba1\u5f26\u4e50\u961f\u6f14\u594f\u7684\u53cc\u7c27\u7ba1\u534f\u594f\u66f2\u3002"} +{"id": "0004081", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u4e0a\u7ec3\u4e60\u4e2d\u56fd\u529f\u592b\u3002"} +{"id": "2007734", "video_name": "d8bb1364-b387-569d-8b21-83b24cca9108", "text": "\u5a74\u513f\u6f14\u594f\u975e\u5e38\u7f8e\u5999\u7684\u97f3\u4e50\u5f62\u8c61\u3002"} +{"id": "2003460", "video_name": "91c0f8e9-cb8c-5d7b-91e6-7810fa55b9fa", "text": "\u7528\u706b\u5236\u4f5c\u7684\u8d85\u903c\u771f\u51e4\u51f0\u5728\u7a7a\u4e2d\u7f13\u6162\u98de\u884c\uff0c\u8eab\u540e\u7559\u4e0b\u7ea2\u8272\u706b\u7130\u3002"} +{"id": "0003776", "video_name": "432db108-a7aa-56b0-ab29-c46af912be85", "text": "\u60f3\u8c61\u4e00\u5e45\u63cf\u7ed8\u7fbd\u8863\u548c\u4ed6\u7684\u5144\u5f1f\u5c01\u5370\u5927\u7b52\u6728\u795e\u65cf\u7684\u5929\u754c\u573a\u666f\u3002"} +{"id": "3004411", "video_name": "f542969d-0c2f-5d46-ac1b-6fbdb607b444", "text": "\u4e00\u4e2a\u706b\u9e21\u5728\u5357\u74dc\u519c\u573a\u8df3\u821e\u3002"} +{"id": "8001741", "video_name": "a439680c-eb71-5924-9a43-1e9ac8811621", "text": "\u673a\u8231\u5185\u5b8c\u5168\u7834\u635f\u7684\u5ba2\u673a\uff0c\u6495\u88c2\u548c\u6467\u6bc1\u3002\u7535\u7ebf\u60ac\u6302\uff0c\u8f6f\u7ba1\u6cc4\u6f0f\uff0c\u706b\u82b1\u95ea\u70c1\uff0c\u6c34\u6ef4"} +{"id": "7004870", "video_name": "d75e5077-1377-524e-87fe-9a0301844a51", "text": "\u98de\u9f20\u5229\u7528\u79d1\u6280\u6355\u6349\u7070\u8272\u5916\u661f\u4eba\u3002"} +{"id": "1003338", "video_name": "3d6ae8aa-127f-5dc6-9a8d-3fbb9544e5c4", "text": "\u592a\u7a7a\u4e2d\u8df3\u52a8\u7684\u52a8\u753b\u7f51\u7edc\u4eba"} +{"id": "7004013", "video_name": "6c86607b-c1a5-59dc-b0fe-37921f691ed1", "text": "\u5ba0\u7269\u98df\u54c1\u7f50\u88c5\u8bbe\u65bd\u5185\u90e8\uff0c\u6709\u4f20\u9001\u5e26\u548c\u7f50\u5934\u6b63\u5728\u586b\u5145\u3002"} +{"id": "1005555", "video_name": "6643085d-87d2-59d0-85ac-2efb165d114d", "text": "\u4e00\u90e8\u897f\u90e8\u7535\u5f71\u4e2d\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u725b\u4ed4\u6cbf\u7740\u6ce5\u8def\u5954\u8dd1\u30024K\u3002"} +{"id": "2004307", "video_name": "dfc4ee2d-a7b8-575d-9afa-0d25b6b20e99", "text": "\u6865\u4e0a\u51e0\u4e2a\u5b69\u5b50\u6570\u7740\u6cb3\u91cc\u6709\u591a\u5c11\u53ea\u9e2d\u5b50\u3002"} +{"id": "0003184", "video_name": "38f0125d-7e11-514f-b1ed-20c75ce31cbe", "text": "\u4e00\u4e2a\u65e5\u672c17\u5c81\u7684JK\u5973\u5b69\u5728\u96ea\u4e2d\u7684\u4e2d\u5348\u8df3\u821e\u3002"} +{"id": "1004181", "video_name": "4d60c375-ba8d-5d07-a355-69485cd235c1", "text": "\u6f02\u4eae\u7684\u5973\u58eb\u6b63\u5728\u7528\u624b\u673a\u901a\u8bdd\u3002"} +{"id": "5001859", "video_name": "3b0b6d1b-d9bd-5dc9-a3a2-fd94363edfb2", "text": "\u957f\u89c6\u9891\uff0c\u66f4\u6362\u80cc\u666f\uff0c3D\uff0c\u7403\u8863\u4e0a\u6709\u5df4\u52d2\u65af\u5766\u56fd\u65d7\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "6004931", "video_name": "209675c7-8d5e-5346-9960-54dd244b16cc", "text": "\u4ece\u90a3\u4e00\u5929\u8d77\uff0c\u84dd\u8272\u6c34\u6676\u6c7d\u8f66\u6210\u4e3a\u4e86\u6c7d\u8f66\u4eba\u5bf9\u5e0c\u671b\u548c\u8fdb\u6b65\u7684\u8c61\u5f81\u3002\u5b83\u4ee3\u8868\u4e86\u4ed6\u4eec\u6beb\u4e0d\u52a8\u6447\u5730\u63a8"} +{"id": "8003385", "video_name": "49d85d18-cf0b-520d-8b88-6e22f7e7fe10", "text": "\u4e00\u4e2a\u7531\u6280\u672f\u3001\u5f69\u8679\u7535\u529b\u548c\u706b\u7130\u6784\u6210\u7684\u7075\u9b42\u5b9e\u4f53\u30024k\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "3006816", "video_name": "1c3a6303-8d6e-5b19-98e6-4e790c3a5d2e", "text": "\u7528Leo\u548c\u5976\u725b\u521b\u9020\u4e00\u4e2a\u5b81\u9759\u7684\u573a\u666f\uff0c\u4f20\u8fbe\u6545\u4e8b\u7684\u9053\u5fb7\u3002"} +{"id": "3003956", "video_name": "0752e1ab-6010-5229-98c2-2076c4f6ce46", "text": "\u5730\u5f62\u95ea\u7535\u6781\u7b80\u9713\u8679\u6545\u969c\u6548\u679c\uff0c\u653e\u5927\u3002\u4fe1\u606f\uff1aG M\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09\u3002"} +{"id": "4002931", "video_name": "abe362bd-812d-5d52-8337-bc15193338fa", "text": "\u5728\u751f\u9508\u7684\u5899\u4e0a\u5199\u4e0b\u4fe1\u606f\uff1aALGORANGE\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "0003157", "video_name": "38356f4f-61ab-5ddd-84fb-b45acd9bebbc", "text": "21\u5c81\u7684\u5c11\u5e74\u6458\u4e86\u4e00\u6735\u6df1\u7ea2\u8272\u7684\u73ab\u7470\uff0c\u9001\u7ed920\u5c81\u7684\u5c11\u5973\uff0c\u5979\u63a5\u53d7\u4e86\u5e76\u9732\u51fa\u4e86\u707f\u70c2\u7684\u5fae\u7b11"} +{"id": "3004166", "video_name": "dbab2209-63fa-548b-9be6-c939a8a5b196", "text": "\u57ce\u5e02\u5efa\u7b51\u7684\u9e1f\u77b0\u56fe\u3002\u4fe1\u606f\uff1aILYA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1006577", "video_name": "787f81c7-579a-59a3-ab71-93e42fd8bfc7", "text": "\u7b80\u5355\u7684\u5fbd\u6807\uff0c\u5e26\u6709\u201cZERPAAY\u201d\u5b57\u6837\u3002"} +{"id": "6002324", "video_name": "2c845bd3-7d00-5b4b-9246-4eadfedde01f", "text": "\u4e09\u4e2a\u7537\u5b69\u6b63\u5728\u5899\u4e0a\u6d82\u753b\u54e5\u54e5\u7684\u8f6e\u6bc2\u6587\u5b57\u3002"} +{"id": "3005291", "video_name": "e34128c4-956e-5180-b939-2df7e4682e79", "text": "\u4e00\u4e2a\u4f10\u6728\u5de5\u6b63\u5728\u68ee\u6797\u4e2d\u780d\u6811\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u91c7\u7528\u9ad8\u5ea6\u8be6\u7ec6\u7684\u8d85\u9ad8\u6e05\u8bbe\u8ba1\u98ce\u683c\u3002"} +{"id": "6002547", "video_name": "a539ffe2-b57e-5c61-a748-53ec4a925e5d", "text": "\u6211\u4eec\u5f88\u4e50\u610f\u4e3a\u60a8\u63d0\u4f9b\u4e00\u4e2a\u827a\u672f\u80cc\u666f\u4e0b\u81ea\u6211\u611f\u53d7\u63a2\u7d22\u7684\u63d0\u793a\u3002\u8fd9\u4e2a\u63d0\u793a\u542c\u8d77\u6765\u600e\u4e48\u6837\uff1f\n\n\u4e00\u4f4d\u72ec\u81ea\u5728\u6811"} +{"id": "8001154", "video_name": "55645fef-6469-5066-89db-2b66fbdcccc1", "text": "\u51e0\u53ea\u51b0\u5c9b\u9e1f\u8fc5\u901f\u98de\u821e\uff0c\u5c55\u793a\u7740\u903c\u771f\u7684\u7fc5\u8180\u3002"} +{"id": "3004400", "video_name": "8527606f-564f-5310-a76d-c34169c4c479", "text": "\u5236\u4f5c\u4e00\u90e8\u52a8\u6f2b\u7535\u5f71\u9884\u544a\u7247\uff0c\u5176\u4e2d10\u4e2a\u795e\u7075\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "8003728", "video_name": "9cc99389-83c3-52d4-aba2-169ed8237ff2", "text": "80\u5e74\u4ee3\u7684\u9ed1\u624b\u515a\u5206\u5b50\uff0c\u91d1\u878d\u5e02\u573a\u56fe\u8868\u3002"} +{"id": "2003169", "video_name": "590262df-e287-5395-baba-412e989c0254", "text": "\u5728\u4e00\u4e2a\u5b81\u9759\u516c\u56ed\u7684\u4e2d\u5fc3\uff0c\u968f\u7740\u6811\u53f6\u7684\u6c99\u6c99\u58f0\u548c\u5fae\u98ce\u7684\u5439\u62c2\uff0c\u4e00\u6bb5\u7231\u60c5\u6545\u4e8b\u5c55\u5f00\u3002\u4e24"} +{"id": "1005619", "video_name": "674d6dfb-590e-50fc-943d-7bacd1dc62e9", "text": "\u4e00\u540d\u5934\u53d1\u91d1\u8272\u3001\u4f69\u6234\u91d1\u8272\u7687\u51a0\u548c\u91d1\u8272\u661f\u661f\u56fe\u6848\u7684\u5973\u6027\uff0c\u771f\u5b9e\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "0004103", "video_name": "0342f18a-f60f-5877-a514-392db48e63ad", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5f69\u8272\u7684\u4e16\u754c\u91cc\uff0c\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u65e0\u5c3d\u7684\u8349\u5730\u4e4b\u95f4\uff0c\u4f4f\u7740\u4e24\u4e2a\u540d\u53ebAlex\u548cMaya\u7684"} +{"id": "2006904", "video_name": "abfed9ef-603b-5cc1-995c-86fd214c5fe7", "text": "\u4e00\u8f86\u6709\u51e0\u4e2a\u4e58\u5ba2\u7684\u706b\u8f66\u3002"} +{"id": "8002570", "video_name": "6ea8a827-5d9f-57d9-9808-3df9e0704f9e", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u4e86\u5546\u5e97\u3002"} +{"id": "8002275", "video_name": "6f550fc4-a141-5061-beb8-f4a62591ad6e", "text": "\u665a\u4e0a\u4e0b\u96ea\uff0c\u7a7a\u8361\u8361\u7684\u8857\u9053\uff0c\u54e5\u7279\u5f0f\u8def\u706f\u4eae\u8d77\u6765\u3002"} +{"id": "0005539", "video_name": "1c80bc1b-6e00-546e-bc09-0750e7c6aefc", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u8815\u866b\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\u4e00\u6837\uff0c\u51b3\u5b9a\u63a2\u7d22\u4e16\u754c\u3002"} +{"id": "2006080", "video_name": "702221cb-3a04-58d6-bd31-6d4726617759", "text": "2D\u52a8\u753b\u4e00\u53ea\u677e\u9f20\u5411\u6811\u4e0a\u7684\u679c\u5b9e\u5954\u8dd1\u3002"} +{"id": "2007298", "video_name": "aff5d033-a4bf-5926-9d22-ced47ee4a887", "text": "\u6811\u53f6\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u8fdc\u5904\u7684\u98de\u884c\u6c7d\u8f66\u98de\u9a70\u800c\u8fc7\uff0c\u661f\u661f\u95ea\u8000\u3002"} +{"id": "0005988", "video_name": "2496f8c7-e295-515e-81da-d179fbfbbf32", "text": "\u79d1\u5b66\u5bb6\u4eec\u6ca1\u6709\u5728\u6d77\u6d0b\u5730\u5e95\u53d1\u73b0\u91cd\u5927\u4e8b\u4ef6\u3002"} +{"id": "7002223", "video_name": "f7faf4d7-05f2-5d6f-bc13-19aabc46e136", "text": "\u5de5\u4eba\u5728\u5de5\u4e1a\u9769\u547d\u671f\u95f4\u4f7f\u7528\u94f2\u5b50\u5411\u7089\u819b\u52a0\u7164\uff0c\u8fd9\u662f\u7eaa\u5f55\u7247\u4e2d\u7684\u5185\u5bb9\u3002"} +{"id": "2007861", "video_name": "6c416e1b-e004-5eac-a1f3-980adcb12d10", "text": "\u5168\u8eab\u68d5\u8272\u5934\u53d1\u548c\u68d5\u8272\u773c\u775b\u7684\u7537\u5b69\uff0c\u9876\u7ea7\u6a21\u7279\u7a7f\u7740\u84dd\u8272\u725b\u4ed4\u88e4\u548c\u957f\u900f\u660e\u5851\u6599\u96e8"} +{"id": "4002120", "video_name": "316921fb-ce5d-5400-9b06-e87fe6b8f989", "text": "\u5728\u7eff\u8272\u7684\u98ce\u666f\u4e2d\uff0c\u6930\u6811\u5728\u98ce\u4e2d\u821e\u52a8\uff0c\u4e00\u5ea7\u5355\u72ec\u7684\u5580\u62c9\u62c9\u98ce\u683c\u7684\u5c0f\u5c4b\u4f4d\u4e8e\u4e2d\u5fc3\uff0c\u7a3b"} +{"id": "2003339", "video_name": "96a25906-0c5f-5f36-9a52-c038d74e795c", "text": "\u5728\u7ebd\u7ea6\u5496\u5561\u9986\u91cc\uff0c\u97e9\u56fd\u5973\u5b50\u4e13\u6ce8\u5730\u770b\u7740\u5979\u7684\u7b14\u8bb0\u672c\u7535\u8111\u5e76\u6572\u6253\u952e\u76d8\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "1006766", "video_name": "7bd1de19-5dee-5249-9b5b-1fc4c492e7c8", "text": "\u4e0d\u65ad\u6253\u6270\u7684\u5bb6\u5ead\u73af\u5883\u4e0b\uff0c\u4e00\u540d\u623f\u5730\u4ea7\u6444\u5f71\u5e08\u5728\u65af\u582a\u7684\u7eb3\u7ef4\u4e9a\u4f4f\u5b85\u91cc\u5de5\u4f5c\u3002"} +{"id": "1003613", "video_name": "4295b41c-fdf4-5b5e-95de-8f31000fcf3b", "text": "\u5df4\u9ece\u7684\u591c\u665a\u8857\u9053\uff0c\u5496\u5561\u9986\u548c\u706f\u7b3c\u3002"} +{"id": "6004364", "video_name": "7b79b955-289c-53d3-871e-ddbf8217f9ed", "text": "\u91ce\u9a6c\u6c7d\u8f66\u52a0\u901f\uff0c\u6765\u81ea\u300a\u901f\u5ea6\u4e0e\u6fc0\u60c5\u300b\u7535\u5f71\u7684\u9ad8\u5ea6\u8be6\u7ec6\u3001\u903c\u771f\u3001\u4f53\u79ef\u5149\u3002"} +{"id": "6002159", "video_name": "c172b5b2-43f5-5487-ae41-6e791e629787", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u964d\u843d\u5728\u51b0\u51bb\u661f\u7403\u4e0a\uff0c\u4ece\u98de\u8239\u5185\u90e8\u51fa\u6765\u4e00\u53ea\u7ae0\u9c7c\uff0c\u77ac\u95f4\u88ab\u51bb\u7ed3\u3002"} +{"id": "4003050", "video_name": "77e2cd56-d819-5f8c-a7aa-40b6e14984cd", "text": "\u521b\u9020\u4e00\u4e2a\u540d\u4e3aMega Style RD\u7684\u670d\u88c5\u5e97\u7684\u6807\u5fd7\u3002"} +{"id": "3006771", "video_name": "25a383cf-cbd1-53dd-babc-edd32be2aa8f", "text": "\u963f\u535c\u675c\u52d2\u6cd5\u5854\u8d6b\u00b7\u963f\u5c14\u897f\u897f\u5728\u5409\u8428\u91d1\u5b57\u5854\u4e0a\u3002"} +{"id": "0004859", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "\u5973\u4eba\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u6211\u4eec\u4ece\u80cc\u540e\u770b\u5230\u5979\uff0c\u514b\u91cc\u59c6\u7279\u98ce\u683c\u3002"} +{"id": "2005809", "video_name": "aadea927-d270-5ec2-8a05-207102988c2d", "text": "\u521b\u4f5c\u4e00\u5e45\u63d2\u753b\uff0c\u63cf\u8ff0\u4e00\u4e2a\u9a91\u9a6c\u8005\u80f8\u524d\u7ed1\u7740GoPro\uff0c\u5728\u81ea\u7136\u666f\u8272\u4e2d\u98de\u5954\uff0c\u8bb0\u5f55\u9a91\u884c\u4f53\u9a8c\u7684\u573a\u666f\u3002"} +{"id": "6004131", "video_name": "b91128dc-9219-5700-9a68-32b0b0d60554", "text": "\u7f8e\u4e3d\u7684\u4fee\u5973\u5728\u6559\u5802\u91cc\u7948\u7977\u3002"} +{"id": "7003778", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "\u4e00\u7fa4\u4e27\u5c38\u5728\u508d\u665a\u6cbf\u7740\u57ce\u5e02\u8857\u9053\u8d70\uff0c\u88ab\u4e00\u53f0\u65e7\u76f8\u673a\u62cd\u4e0b\u3002\u4ed6\u4eec\u7a81\u7136\u6ce8\u610f\u5230\u76f8\u673a\u5e76\u5f00\u59cb\u671d"} +{"id": "2004788", "video_name": "8d85a8a2-6eae-5a39-bde0-fcbe1f6c1227", "text": "\u5728\u5c0f\u5df7\u91cc\u8d70\u7740\u4e00\u4e2a\u5168\u8eab\u88ab\u62ab\u98ce\u8986\u76d6\u7684\u6697\u5f71\u7537\u5b50\uff0c\u624b\u6301\u4e00\u628a\u95ea\u8000\u7684\u94f6\u5251\u3002"} +{"id": "5001043", "video_name": "c822f104-96fc-5e1c-928f-996cde3c014f", "text": "\u5728\u56fe\u7247\u4e0a\u5199\u7740\u201c\u71c3\u70e7\u94fe\u6761\u201d\u7684\u5927\u5199\u5b57\u6bcd\uff0c\u914d\u6709\u4e00\u5f20\u94fe\u6761\u71c3\u70e7\u7684\u56fe\u7247\u3002"} +{"id": "1005479", "video_name": "64a3a91c-1fb2-5e02-a3d2-36ba7225c984", "text": "Source sentence: \u4e00\u8258\u6d77\u76d7\u8239\u51b2\u7834\u4e00\u9053\u5927\u6d6a\uff0c\u6b63\u5904\u4e8e\u4e00\u573a\u96f7\u66b4\u4e4b\u4e2d\u3002"} +{"id": "8002624", "video_name": "1d260b05-0e83-5bbf-a26b-5088c9ad5095", "text": "\u6728\u5076\u5f00\u53d1\u8005\u5728\u8d85\u7ea7\u8ba1\u7b97\u673a\u4e0a\u7f16\u7a0b\uff0c\u4f7f\u7528LED\u706f\u3002"} +{"id": "3003576", "video_name": "5ee1411b-aa1d-52bc-bad4-2643f99ba1c7", "text": "\u9e1f\u513f\u98de\u5230\u6c34\u9762\u4e0a\uff0c\u6349\u4f4f\u4e86\u4e00\u6761\u9c7c\u3002"} +{"id": "3006733", "video_name": "8391d868-8907-5126-9b5a-e6c0cc43faf3", "text": "\u62d2\u7edd\u6301\u7eed\u5b58\u5728\uff0c\u8d85\u8d8a\u73af\u5883\u548c\u4f34\u4fa3\u7684\u80a4\u6d45\u53d8\u5316\uff0c\u7a81\u51fa\u6b32\u671b\u548c\u5b58\u5728\u4e4b\u95f4\u6c38\u6052\u7684\u4e0d\u534f\u8c03\u3002"} +{"id": "3004207", "video_name": "df12c34f-0804-5e6b-ada5-4c67f12c56f4", "text": "\u4e00\u4e2a\u65cb\u8f6c\u7740\u7684\u4e8b\u4ef6\u89c6\u754c\u7684\u9ed1\u6d1e\u89c6\u9891\uff0c16:9\uff0c1080:720 p\u3002"} +{"id": "8001523", "video_name": "f003f0d7-0217-5fad-b446-2eca6a8992e3", "text": "\u521b\u9020\u4e00\u5e45\u63cf\u7ed8\u5c0f\u6751\u5e84\u5b81\u9759\u7684\u65e9\u6668\u6c1b\u56f4\u7684\u56fe\u50cf\uff0c\u592a\u9633\u5728\u5730\u5e73\u7ebf\u4e0a\u5347\u8d77\uff0c\u5929\u7a7a\u7740"} +{"id": "7003929", "video_name": "04530fc2-0c7b-5348-afea-3b5010aea3d3", "text": "\u4e00\u53ea\u9a86\u9a7c\u7ad9\u5728\u4f01\u9e45\u65c1\u8fb9\u3002\u5b83\u4eec\u7ad9\u5728\u96ea\u5730\u91cc\u3002\u4f01\u9e45\u5f88\u5f00\u5fc3\u3002\u9a86\u9a7c\u4e5f\u5f88\u5f00\u5fc3\u3002"} +{"id": "4003599", "video_name": "78d91b62-e0f9-554b-a2fd-ec1882061dea", "text": "\u4e00\u4e2a\u9547\u5b50\u53d8\u5f97\u50cf\u5ea7\u9b3c\u9547\u4e00\u6837\u5b89\u9759\u3002"} +{"id": "5001531", "video_name": "2603b986-6f69-509c-913b-fc0a43060eb6", "text": "\u4e00\u53ea\u814a\u80a0\u72ac\u5728\u9a6c\u6765\u897f\u4e9a\u9996\u76f8\u9762\u524d\u70f9\u996a\u70ed\u72d7\u3002"} +{"id": "7002877", "video_name": "94650ea8-a33d-5737-a9df-8a6a4582c131", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u5973\u513f\u7ad9\u5728\u623f\u5b50\u524d\u9762\u3002"} +{"id": "8002389", "video_name": "30b27ea6-175f-56b9-94ad-d41b1c9abea8", "text": "\u5929\u5f13\u5e1d\u56fd\u662f\u65e0\u8fb9\u5927\u9646\u897f\u90e8\u7684\u4e00\u4e2a\u5c0f\u56fd\u5bb6\uff0c\u4e0d\u53d7\u4efb\u4f55\u5927\u578b\u56fd\u5bb6\u7684\u7ea6\u675f\uff0c\u5176\u73af\u5883\u548c\u6c14\u5019\u975e\u5e38\u9002\u5b9c\u4eba\u7c7b"} +{"id": "0006476", "video_name": "2d26e551-9f58-5413-8ae7-50a87f0f4613", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u68ee\u6797\u4e2d\u8ff7\u8def\uff0c\u5e76\u9047\u5230\u4e86\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "2006009", "video_name": "000239cc-de9b-56f0-82ef-6af678c0a85f", "text": "\u7f8e\u4e3d\u7684\u6751\u5e84\u65e5\u843d\u65f6\u5206\uff0c\u4ee53D\u5361\u901a1080p\u8d28\u91cf\u5448\u73b0\u7684\u591c\u665a\u3002"} +{"id": "8003775", "video_name": "1ac502b1-5121-5bd0-8767-9ba775d48cef", "text": "\u521b\u4f5c\u4e00\u5e45\u52a8\u6001\u7684\u9ed1\u767d\u6770\u4f5c\uff0c\u4ee5\u4e00\u4e2a\u51e0\u4f55\u65e0\u53ef\u6311\u5254\u7684\u6811\u4e3a\u4e2d\u5fc3\uff0c\u5468\u56f4\u56f4\u7ed5\u7740\u590d\u6742\u7684\u56fe\u6848\u548c"} +{"id": "5001620", "video_name": "e3556d88-2b9a-5d4e-a754-6aaaeafdefba", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u7eff\u8272\u55b7\u6c14\u5f0f\u98de\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u7136\u540e\u8fc5\u901f\u5206\u88c2\u6210\u66f4\u5c0f\u7684\u673a\u5668\u4eba\u98de\u673a\u3002"} +{"id": "2003522", "video_name": "1922174a-2a38-593b-97d5-5d8778e3c81c", "text": "\u5728\u706b\u661f\u4e0a\u4f11\u606f\u7684\u5b87\u822a\u5458\u8eba\u5728\u6c99\u6ee9\u6905\u4e0a\uff0c\u5149\u7ebf\u660e\u4eae\uff0c\u4f18\u96c5\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u6d41\u7545\uff0c\u7126\u70b9\u6e05"} +{"id": "8003983", "video_name": "83cbf3f6-951a-5eb9-bedd-5314b434fe71", "text": "\u665a\u4e0a\u7684\u7a7a\u65f7\u8857\u9053\uff0c\u6709\u9ec4\u8272\u7684\u9713\u8679\u706f\u548c\u8def\u9762\u4e0a\u7684\u79ef\u6c34\u3002"} +{"id": "4002196", "video_name": "dd8b85fc-e27c-54ec-927d-23844f882540", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u4e00\u53ea\u72d0\u72f8\u5728\u540c\u4e00\u9886\u57df\u4e2d\u6210\u957f\uff0c\u6700\u7ec8\u53d8\u6210\u4e86\u7537\u5b69\u3002"} +{"id": "2005447", "video_name": "8b6455f4-8343-5bd2-9434-73f5f19d8053", "text": "\u5173\u5207\u7684\u5b98\u5458\u5728\u4f1a\u8bae\u5ba4\u91cc\u3002"} +{"id": "6004551", "video_name": "0d82d70a-0eb9-5d74-87b6-507cbe32114c", "text": "\u6ee1\u5929\u7e41\u661f\u95ea\u70c1\u3002"} +{"id": "1005396", "video_name": "6330b6b9-a165-5312-a756-9a7b5e34c184", "text": "\u4e00\u5f20\u8d28\u5730\u7834\u65e7\u7684\u4fb5\u5165\u5f0f\u955c\u5934\u3002"} +{"id": "1006092", "video_name": "6fa883d7-5fdd-55a5-b833-9a11dbdb9f93", "text": "\u6d3b\u6c34\u4e0e\u5973\u4eba\u7684\u8138\u3002"} +{"id": "2003307", "video_name": "771d02bb-b38e-5664-bd84-b218cd800976", "text": "\u65e5\u843d\u7a7f\u8fc7\u96e8\u4e91\uff0c\u9884\u793a\u7740\u72e9\u730e\u7ed3\u675f\u3002"} +{"id": "7003151", "video_name": "827c6412-e7b3-562a-aaee-66eb4098c0cc", "text": "\u5de6\u624b\u6296\u52a8\uff0c\u7b11\u5bb9\u66f4\u52a0\u707f\u70c2\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004425", "video_name": "51e58c90-7a9d-579f-b3a9-73869e0fe369", "text": "\u5728\u56fd\u9645\u7a7a\u95f4\u7ad9\u4e0a\u57f9\u8bad\u5b87\u822a\u5458\n\nSource sentence: The company is planning to expand its business in China. \n\n\u8be5\u516c\u53f8\u8ba1\u5212\u5728\u4e2d\u56fd\u6269\u5c55\u4e1a\u52a1\u3002"} +{"id": "7004914", "video_name": "c361b6c5-f33f-536c-bc2d-610204dbd3b1", "text": "\u5341\u516d\u4e16\u7eaa\u897f\u73ed\u7259\u53ef\u53ef\u996e\u6599\u5e97"} +{"id": "5001954", "video_name": "8b328137-396c-5b98-a984-8a74f47e7bd7", "text": "\u53e4\u8001\u7684\u6df1\u5730\u77ee\u4eba\u5bb6\u56ed\uff0cGol Golsthurr\u7684\u9ed1\u6697\u6d1e\u7a74\u3002"} +{"id": "0004927", "video_name": "118e45d4-74ae-5b8e-a04a-823e94e2ffd8", "text": "\u4e00\u4f4d\u7a7f\u8457\u88d9\u5b50\u7684\u7f8e\u9e97\u4e9e\u6d32\u5973\u5b69\uff0c\u5728\u50b3\u7d71\u85e5\u54c1\u7684\u623f\u9593\u88e1\u5411\u5de6\u8d70\uff0c\u8996\u983b\u6bd4\u4f8b"} +{"id": "8001427", "video_name": "df85b68e-e782-5d74-876a-96054a4ae45d", "text": "\u5370\u5ea6\u5361\u901a\u4eba\u7269\u548c\u68ee\u6797\u4e2d\u7684\u4e00\u5207\uff0c\u955c\u5934\u4ece\u7a7a\u4e2d\u5f80\u4e0b\u770b\u4e95\uff0c\u4ed6\u6bcf\u5929\u770b\u7740\u91d1\u5e01\u611f\u5230\u5f00\u5fc3\u3002"} +{"id": "2006077", "video_name": "aebdc07c-0462-5986-b7c3-1938486b6359", "text": "\u5145\u6ee1\u6d3b\u529b\u7684\u672a\u6765\u90fd\u5e02\u300232k\u9ad8\u6e05\u3002\u8272\u5f69\u7f24\u7eb7\u7684\u4e16\u754c\u3002\u5145\u6ee1\u5148\u8fdb\u79d1\u6280\u548c\u673a\u5668\u4eba\u3002\u5b8c\u7f8e\u5faa\u73af\u7684\u89c6\u9891\u3002"} +{"id": "3005419", "video_name": "6e684181-497c-577f-af85-821378b5259e", "text": "300\u540d\u9a91\u9a6c\u7684\u52c7\u58eb\u4ece\u5c71\u4e0a\u4e0b\u6765\u89c1\u56fd\u738b\u3002"} +{"id": "6003953", "video_name": "4136ead5-db4b-5853-b4dc-ca21d27c1f50", "text": "\u90a3\u4e2a\u7a7f\u7740\u68d5\u8272\u886c\u886b\u548c\u80cc\u5305\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u5728\u5580\u5c14\u5580\u5854\u5e02\u573a\u5438\u70df\u65f6\uff0c\u8fdc\u5904\u770b\u89c1\u4e00\u4e2a\u5c0f"} +{"id": "8003505", "video_name": "d7e5c051-756a-569f-be40-9229bd9c0c13", "text": "\u513f\u7ae5\u4f5c\u4e3a\u81ea\u7136\u7684\u5021\u5bfc\u8005\uff1a\u4e00\u5e45\u573a\u666f\u5c55\u793a\u5b69\u5b50\u4eec\u5728\u5176\u4ed6\u6751\u5e84\u9762\u524d\u53d1\u8a00\uff0c\u70ed\u60c5\u5206\u4eab\u4ed6\u4eec\u7684\u6545\u4e8b\u5e76\u63a8"} +{"id": "1006751", "video_name": "7b9aaaff-2ab3-5217-ae97-74c02b77490b", "text": "\u521b\u4f5c\u4e00\u4e2a\u8ff7\u4eba\u4e14\u8eab\u4e34\u5176\u5883\u7684\u53d9\u8ff0\uff0c\u5c06\u8bfb\u8005\u5e26\u5230\u592a\u5e73\u6d0b\u897f\u5317\u5730\u533a\u5fc3\u810f\u5730\u5e26\u7684\u53e4\u8001\u677e\u6811"} +{"id": "2004250", "video_name": "8241cb8d-3e6f-5eaf-816a-77e2100c86cd", "text": "\u5c55\u793a\u8718\u86db\u4fa0\u5229\u7528\u4ed6\u7684\u86db\u4e1d\u5728\u7ebd\u7ea6\u5e02\u5929\u9645\u7ebf\u4e2d\u8361\u79cb\u5343\u3002"} +{"id": "7003399", "video_name": "6db995cf-ed7a-5585-8632-e7a99939c569", "text": "\u84dd\u8272\u7684\u9e70\u5728\u5c71\u4e0a\u98de\u7fd4\u3002"} +{"id": "0006169", "video_name": "279c5dfb-5114-54a1-acd9-118fd3942d72", "text": "\u5728\u8fd9\u5ea7\u5c71\u4e0a\uff0c\u4e0a\u5e1d\u5c06\u6d88\u9664\u63a9\u76d6\u6240\u6709\u4eba\u7684\u5e37\u5e55\uff0c\u8986\u76d6\u6240\u6709\u56fd\u5bb6\u7684\u8303\u56f4\u3002"} +{"id": "0006977", "video_name": "362403e9-76c0-5e77-bd65-6835c7cf283e", "text": "\u957f\u957f\u7684\u5a74\u513f\u9999\u6c34\u5728\u5168\u4e16\u754c\u8d70\u6765\u8d70\u53bb\uff0c\u4f7f\u5f97\u9999\u6c34\u4e4b\u6218\u5f00\u59cb\u4e86\u3002"} +{"id": "3005271", "video_name": "ea329c12-548d-526a-9060-f77eba37bdd3", "text": "\u5efa\u7b51\u7269\u5f62\u6210\u4e00\u6bb5\u94ed\u6587\u3002\u4fe1\u606f\uff1aMAX\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004363", "video_name": "33ba3185-9123-54fb-b88f-1c2e84936e4d", "text": "Translation: \u57283D\u52a8\u753b\u4e1b\u6797\u4e2d\uff0c\u6709\u4e00\u4f4d\u5f3a\u5927\u7684\u71d0\u5973\u5b69\u5728\u8bf4\u8bdd\u3002"} +{"id": "2004313", "video_name": "4c3bf2f2-7442-5333-bee8-7301c9f2314e", "text": "\u4e00\u4e2a\u4eba\u80cc\u5bf9\u7740\u5c4f\u5e55\uff0c\u4f38\u624b\u53bb\u62ff\u95ea\u95ea\u53d1\u5149\u7684\u5b9d\u77f3\uff0c\u80cc\u666f\u662f\u5b9d\u77f3\u6240\u5728\u7684\u68da\u5c4b\u3002"} +{"id": "6003269", "video_name": "933b65bc-78a4-53ca-bfa5-83777b90f776", "text": "\u53cc\u52a0\u65f6\u8d5b\u4e2d\u5e93\u91cc\u548c\u8a79\u59c6\u65af\u7bee\u7403\u660e\u661f\u4e4b\u95f4\u7684\u6bd4\u8d5b\u89c6\u9891\u3002"} +{"id": "5001560", "video_name": "43af693c-6de4-532a-8937-4550035d166f", "text": "\u672a\u6765\u4e3b\u4e49\u6447\u6eda\u4e50\u961f\u5728\u821e\u53f0\u4e0a\u6f14\u594f\uff0c\u6b22\u8fce\u4e00\u4f4d\u5916\u8c8c\u9b45\u529b\u5341\u8db3\u7684\u84b8\u6c7d\u670b\u514b\u5973\u9f13"} +{"id": "1003007", "video_name": "37307dd6-8990-5a66-973b-a4109d0efe9c", "text": "\u6fc0\u5149\u675f\u4ece\u592a\u7a7a\u89c6\u89d2\u5c06\u6d41\u661f\u96e8\u8f6c\u79fb\uff0c\u4f7f\u5176\u4e0d\u4f1a\u649e\u51fb\u5730\u7403\u3002"} +{"id": "2005541", "video_name": "ef82448c-a540-52ff-b925-140c30231e67", "text": "\u521b\u5efa\u4e00\u5f20\u4e2d\u56fd\u5730\u56fe\uff0c\u7a81\u51fa\u5176\u91cd\u8981\u7684\u519c\u4e1a\u533a\u57df\u3002"} +{"id": "4003689", "video_name": "4496170d-f4c8-5fd0-b068-fa3265f0a847", "text": "\u4ed6\u4eec\u6b63\u95f2\u8c08\u4e4b\u9645\uff0c\u4e00\u80a1\u8be1\u5f02\u7684\u5bc2\u9759\u77ac\u95f4\u7b3c\u7f69\u7740\u4ed6\u4eec\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740\u672a\u89e3\u4e4b\u8c1c"} +{"id": "4003086", "video_name": "42a80cce-5383-50ea-99bb-3f2e42b1e596", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u4e00\u5339\u9ed1\u8272\u673a\u5668\u9a6c\u5728\u591c\u96e8\u4e2d\u8ddf\u968f\u4e00\u4e2a\u5973\u4eba\u7684\u526a\u5f71\u8d70\u52a8\uff0c\u903c\u771f\u7684\u660e\u6697\u5bf9\u6bd4\u7167\u660e\uff0c"} +{"id": "0006387", "video_name": "2b950414-07c6-50cf-8c4a-da8675995b01", "text": "\u7ea2\u8718\u86db\u4eba\u6709\u4e00\u4e9b\u52a8\u4f5c\uff0c\u56db\u7ef4\u52a8\u753b\u7684\u8eab\u4f53\u9ad8\u5927\u5851\u6599\u7c7b\u578b\u7684\u8eab\u4f53\u7279\u5f81\u7a81\u51fa\uff0c\u662f\u4e00\u4ef6\u6770\u4f5c\u3002"} +{"id": "5001411", "video_name": "fa8686bd-5611-53a8-88c1-b243365093ab", "text": "\u84dd\u9cb8\u8e66\u6781\u91d1\u95e8\u5927\u6865"} +{"id": "1004349", "video_name": "503b33ad-2348-52fc-9319-83b28e0af15c", "text": "\u5c0f\u5973\u5b69\u5728\u6050\u6016\u7684\u96e8\u6797\u4e2d\u5954\u8dd1\uff0c1970\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u7684\u62c9\u8fd1\u955c\u5934\u3002"} +{"id": "0003526", "video_name": "3efeb61a-50da-5795-a383-3a71b9d156d7", "text": "\u6c34\u5e95\u6f02\u6d6e\u7684\u5c38\u4f53\uff0cVHS\uff0c\u8001\u7535\u5f71\uff0c\u300a\u5e03\u83b1\u5c14\u5973\u5deb\u8ba1\u5212\u300b\u3001\u300a\u9ece\u660e\u6b7b\u7075\u300b\u3001\u5413\u4eba\u3001\u6050"} +{"id": "3003190", "video_name": "7b929c72-69cc-556d-8f29-8267610f8aac", "text": "\u5546\u4e1a\u5e7f\u544a\uff0c\u96c5\u8bd7\u5170\u9edb\u5148\u4fee\u590d\u539f\u751f\u6db2\u96c6\u4e2d\u4fee\u62a4\u7cbe\u534e\uff0c\u9633\u5149\u548c\u82b1\u6735\uff0c\u6d77\u6d0b\uff0c\u5fae\u98ce\u62c2\u8fc7\uff0cGS "} +{"id": "1005854", "video_name": "6bb022c7-2056-5ccc-86b8-2ed0d53af2b7", "text": "\u5728\u5367\u5ba4\u7a97\u6237\u524d\u9762\uff0c\u753b\u4e00\u4e2a\u7537\u5b69\u7684\u5f62\u8c61\uff0c\u4ed6\u6b63\u5728\u900f\u8fc7\u671b\u8fdc\u955c\u89c2\u5bdf\u884c\u661f\u3002 \n\nSource sentence: The company is planning to launch a new"} +{"id": "2003495", "video_name": "783b1416-8f5d-597c-a868-664a7b06e727", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u82b1\u56ed\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u5728\u5b81\u9759\u7684\u65e9\u6668\u6f2b\u6b65\u5176\u4e2d\u3002\u5c55\u793a\u5404\u79cd\u82b1\u6735\u3001"} +{"id": "7004410", "video_name": "484faaeb-d380-50df-84c9-0bcace2ccc85", "text": "\u4e00\u67b6\u94f6\u8272\u65e0\u6027\u522b\u673a\u5668\u4eba\uff0c\u6ca1\u6709\u5934\u53d1\uff0c\u4e0a\u534a\u8eab\u53ef\u4ee5\u770b\u5230\u5230\u819d\u76d6\u3002\u5b83\u77aa\u7740\u5f3a\u70c8\u7684\u76ee\u5149\u770b\u7740"} +{"id": "3004812", "video_name": "543c838f-f0e4-5b5f-a914-87cd1c1611c3", "text": "\u5fcf\u6094\u4e4b\u65c5\uff1a\u4e00\u4e2a\u8f6c\u5316\u7684\u6545\u4e8b\u3002"} +{"id": "4004589", "video_name": "e5b09c7f-6a91-542e-81ac-af2190ab89b0", "text": "\u4e00\u4e2a\u5b66\u751f\u5728\u5bb6\u548c\u7236\u4eb2\u6253\u67b6\u3002"} +{"id": "5001068", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "\u7535\u5f71\u4ee5\u4e00\u4e2a\u88ab\u5e9f\u5f03\u7684\u7cbe\u795e\u75c5\u9662\u91cc\u7684\u6050\u6016\u5bc2\u9759\u4f5c\u4e3a\u5f00\u573a\u3002\u6211\u4eec\u8ba4\u8bc6\u4e86\u66fe\u5728\u8fd9\u91cc\u6cbb\u7597\u8fc7\u7684"} +{"id": "0005173", "video_name": "1601e497-e8e4-5b09-8fd0-1975ca5f7d11", "text": "\u6709\u68ee\u6797\u80cc\u666f\u7684\u7fc5\u8180\u5316\u6210\u8774\u8776\u7684\u5927\u8c61\u3002AR 16:9"} +{"id": "1003706", "video_name": "446abb05-4007-548a-b172-182704e44fe0", "text": "\u4e00\u53ea\u62e5\u6709\u7fc5\u8180\u7684\u9ca8\u9c7c\u98de\u8d8a\u5c71\u8109\u3002"} +{"id": "6003592", "video_name": "90ea1a47-47a4-5e98-a3c2-bd7c65c8778f", "text": "\u4e00\u4f4d\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u516c\u4e3b\u89e6\u6478\u7740\u5750\u5728\u9ec4\u8272\u82b1\u6735\u4e0a\u7684\u84dd\u8272\u8774\u8776\u3002"} +{"id": "6002142", "video_name": "43042276-7094-5fa5-898b-0100451d2791", "text": "\u65e5\u843d\u65f6\uff0c\u9732\u73e0\u6ef4\u5728\u73ab\u7470\u82b1\u74e3\u4e0a\u3002"} +{"id": "6003316", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "\u7ea2\u9ed1\u767d\u8c03\u8272\u677f\uff0c\u4e4c\u9e26\u98de\u8d8a\u5893\u5730\uff0c\u6050\u6016\uff0c\u7535\u5f71\u573a\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003600", "video_name": "a44cde62-5e6a-565c-b34f-55e143113de6", "text": "\u5728\u516c\u56ed\u91cc\u7684\u6674\u6717\u65e5\u5b50\uff0c\u6709\u9e1f\u513f\u548c\u866b\u5b50\u3002"} +{"id": "3004766", "video_name": "56a5e116-a10b-5202-9517-27a6258ee172", "text": "\u7a7f\u7740\u91d1\u5c5e\u9774\u7684\u811a\u8ddf\u7740\u9646\u65f6\u649e\u51fb\u6ce5\u6cde\u7684\u8def\u9762\uff0c\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u5448\u73b0\uff0c\u84b8\u6c7d\u670b\u514b"} +{"id": "8003894", "video_name": "58a3932b-2f5e-52a6-87d6-1ef398d38f88", "text": "\u8fc7\u6e21\u5230\u89d2\u8272\u5c06\u86cb\u7cd5\u653e\u8fdb\u70e4\u7bb1\u7684\u573a\u666f\u3002\u4f7f\u7528\u6709\u8da3\u7684\u89c6\u89c9\u6548\u679c\u63cf\u7ed8\u70d8\u7119\u8fc7\u7a0b\uff0c\u6bd4\u5982\u86cb"} +{"id": "7002237", "video_name": "350a9c6a-4cac-5b63-86e7-2447305d8b73", "text": "\u4e00\u4f4d\u808c\u8089\u53d1\u8fbe\u3001\u601d\u7ef4\u654f\u6377\u7684\u65af\u591a\u4e9a\u6d3e\u54f2\u5b66\u5bb6\uff0c\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e0b\u6563\u53d1\u7740\u5149\u8292\u3002\u5f3a\u8c03"} +{"id": "1006430", "video_name": "75a210cb-38db-547d-91ba-a76093d625a0", "text": "\u6c49\u514b\u88ab\u7f8e\u666f\u6df1\u6df1\u5438\u5f15\uff0c\u773c\u775b\u7741\u5f97\u5927\u5927\u7684\uff0c\u5174\u81f4\u52c3\u52c3\u5730\u6f2b\u6b65\u7740\u3002"} +{"id": "1005822", "video_name": "6afc765d-eeb0-5b4c-9025-828a75281738", "text": "\u4e00\u500b\u4f4d\u65bc\u67e5\u6885\u91cc\u4e9e\u7684\u9109\u6751\u5ee3\u5834\uff0c\u6709\u4e00\u4f4d\u7a7f\u8457\u50b3\u7d71\u670d\u98fe\uff0c\u982d\u4e0a\u6234\u8457"} +{"id": "2006532", "video_name": "9333d7b8-64b2-565e-93ac-d44fd2883e68", "text": "\u4e00\u5ea7\u4f18\u96c5\u7684\u623f\u5b50\u5185\u90e8\u7684\u4e00\u6761\u8d70\u5eca\uff0c\u6446\u653e\u7740\u51e0\u4ef6\u827a\u672f\u54c1\u548c\u4e00\u5e45\u7528\u6cb9\u5f69\u753b\u7684\u5411\u65e5\u8475\u6302"} +{"id": "0003538", "video_name": "3f2d698f-891a-566c-95f5-5b48a3eac726", "text": "\u5c0f\u5973\u5b69\u8389\u8389\u8737\u7f29\u5728\u5e8a\u4e0a\uff0c\u62b1\u7740\u73a9\u5076\u7f57\u897f\uff0c\u88ab\u68a6\u5e7b\u5367\u5ba4\u7684\u661f\u661f\u6240\u5305\u56f4"} +{"id": "4003886", "video_name": "4534da9e-ab1f-57f7-9473-54f742752ff5", "text": "\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u9ab7\u9ac5\uff0c\u989a\u9aa8\u8fd0\u52a8\uff0c\u54e5\u7279\u98ce\u683c\uff0c\u9ad8\u6e05\u6444\u5f71\uff0c\u9ad8\u8d28\u91cf\uff0c\u7535\u5f71\u5316\u7684\u89d2\u8272\uff0c\u975e\u5e38\u8be6\u7ec6"} +{"id": "3005692", "video_name": "337e93e2-5fd3-530a-88e2-9412a7419cc9", "text": "\u68ee\u6797\u4e2d\u7684\u52a8\u7269\u4ece\u6c60\u5858\u91cc\u559d\u6c34\u3002\n\nSource sentence: The sun is shining brightly in the sky.\n\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u7167\u8000\u5f97\u5f88\u660e\u4eae\u3002"} +{"id": "4003367", "video_name": "c4fc8e7c-3d60-5b11-a5d6-3568579f45b2", "text": "\u5730\u7403\u4ece\u7a7a\u95f4\u7ad9\u4e0a\u71c3\u70e7\u7206\u70b8\u3002"} +{"id": "0005869", "video_name": "22966783-0640-550d-9cb7-b7d2c4221d81", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5728\u4e0e\u5c71\u59c6\u5927\u53d4\u7684\u62f3\u51fb\u6bd4\u8d5b\u4e2d\uff0c\u7f8e\u5143\u62c9\u62c9\u961f\u5728\u80cc\u666f\u4e2d\u4e3a\u4ed6\u4eec\u52a0\u6cb9\u3002"} +{"id": "2004745", "video_name": "0566ab0a-8f60-5dd2-9a70-a0f97223af3f", "text": "\u6d77\u738b\u5728\u6df1\u6c34\u4e2d\u9047\u89c1\u4e86\u795e\u8bdd\u6545\u4e8b\u300a\u6c89\u9999\u300b\u4e2d\u7684\u4e3b\u4eba\u516c\u3002"} +{"id": "4003924", "video_name": "d904d32c-31bc-52c4-9789-25b8372c6f81", "text": "\u5c55\u793a\u4e00\u5f20\u4eba\u5de5\u667a\u80fd\u7cfb\u7edf\u68c0\u6d4b\u95ee\u9898\u5e76\u53d1\u9001\u8b66\u62a5\u7684\u56fe\u5f62\u3002"} +{"id": "8001978", "video_name": "8b1df9aa-5285-57ea-9f6d-5b91f00909d3", "text": "\u5564\u9152\uff0cEstrella Galicia\uff0c\u9732\u53f0\uff0c\u4eba\u4eec\u559d\u5564\u9152\u3002\u4fe1\u606f\uff1aJAVI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004098", "video_name": "40a2d3fe-4d7b-5bd4-9935-c5156d86ddf7", "text": "\u5728\u7ed8\u753b\u6a21\u5f0f\u4e0b\uff0c\u4e00\u540d\u5b87\u822a\u5458\u7ad9\u5728\u6708\u7403\u8868\u9762\uff0c\u900f\u8fc7\u671b\u8fdc\u955c\u89c2\u5bdf\u8fdc\u5904\u7684\u201cSAI\u201d\u5b57\u3002"} +{"id": "0004147", "video_name": "04175e1f-6a67-52c0-b7db-b30d336791c7", "text": "\u5b9d\u5b9d\u9a91\u5728\u4e00\u53ea\u72d0\u72f8\u8eab\u4e0a\uff0c\u5b83\u5728\u7530\u91ce\u91cc\u8ffd\u9010\u7740\u4e00\u53ea\u5154\u5b50\u3002"} +{"id": "7004117", "video_name": "5dce1432-e9b7-5804-bb65-2445a62abd89", "text": "\u6d77\u7345\u5728\u6d77\u5e95\u6e38\u52d5\u3002"} +{"id": "4003363", "video_name": "afb48e9b-4c98-5ba5-908d-b1d1e5139259", "text": "\u4e00\u5e45\u5929\u7a7a\u4e0a\u9c7c\u7684\u94c5\u7b14\u7d20\u63cf"} +{"id": "7002852", "video_name": "6ea8085a-57ed-51ca-9dcb-0a099a6d7058", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u6b63\u5728\u795e\u5947\u7684\u68ee\u6797\u4e2d\u6f2b\u6b65\u3002"} +{"id": "2007880", "video_name": "155be606-f1c3-587f-9b2e-a3c8370bab62", "text": "\u4e00\u5f20\u903c\u771f\u7684\u7167\u7247\uff0c\u91c7\u7528\u590d\u53e4\u98ce\u683c\u62cd\u6444\uff0c\u4f7f\u752835\u6beb\u7c73\u80f6\u7247\u62cd\u6444\uff0c\u5448\u73b0\u51fa\u7535\u5f71\u822c\u7684\u753b\u8d28\uff0c"} +{"id": "2003519", "video_name": "79dec470-b99a-596b-a655-d63c1f0dc16b", "text": "\u660e\u4eae\u5706\u6da6\u7684\u6a59\u8272\u6c34\u679c\u5728\u6811\u4e0a\u751f\u957f\u5e76\u53d1\u5149\u3002"} +{"id": "5001309", "video_name": "bb6d4a79-7a25-5274-9ded-6e4dadbaeb7d", "text": "\u5e74\u8f7b\u50e7\u4eba\u5ff5\u7ecf\u7684\u5934\u50cf\u753b\u50cf\u3002"} +{"id": "3003353", "video_name": "a6b9b686-6ac7-501d-8655-3034866fda6e", "text": "\u5149\u8292\u548c\u95ea\u7535\uff0c\u5927\u98ce\u547c\u5578\uff0c\u5934\u53d1\u98de\u821e\uff0c\u5149\u8292\u548c\u95ea\u7535\u3002"} +{"id": "8001470", "video_name": "dcd231c4-81e7-57f5-be63-5972c126bf06", "text": "\u4e00\u5f20\u73b0\u5b9e\u7684\u753b\u9762\u2014\u2014\u4e00\u4e2a\u5355\u72ec\u7684\u661f\u4e91\u6f02\u6d6e\u5728\u4e00\u4e2a\u8eba\u5728\u5e8a\u4e0a\u76d6\u7740\u88ab\u5b50\u7684\u7537\u4eba\u4e0a\u65b9\uff0c\u9ed1\u591c\u91cc\u3002"} +{"id": "8003534", "video_name": "3e7658e4-0527-59d3-9c73-4dcfb22814d7", "text": "\u4e00\u53ea\u718a\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "8002635", "video_name": "eea88699-8dc5-50ac-9cd4-47b5b43ed8fb", "text": "\u672a\u6765\u7684\u521b\u9020\uff0c\u7ecf\u7406\u4e3a\u672a\u6765\u505a\u51b3\u7b56\u3002"} +{"id": "2003296", "video_name": "38337f84-18ea-5e54-87ad-66b10c02930b", "text": "\u5168\u7403\u8303\u56f4\u5185\u7684\u56fe\u50cf\u68c0\u7d22"} +{"id": "3004318", "video_name": "5ba6c444-4263-5b31-9b8c-68f2445dd56f", "text": "\u5b87\u822a\u5458\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\uff0c\u8272\u5f69\u9c9c\u8273\u593a\u76ee\uff0c\u884c\u661f\u548c\u661f\u661f\u71a0\u71a0\u751f\u8f89\uff0c\u660e\u6697\u5bf9\u6bd4\u5f3a"} +{"id": "6002481", "video_name": "b6bc7c15-6c32-5611-8ff3-663ce57744f4", "text": "\u57ce\u5e02\u4e0a\u7a7a\u6d41\u661f\u96e8\u7684\u903c\u771f\u753b\u9762"} +{"id": "4003360", "video_name": "4fdc06b2-98a4-550b-b0e7-ddda10a6f8e7", "text": "\u4e39\u9ea6\u5973\u738b\u4e58\u5750Bob Lazar\u7684\u98de\u789f\u5728\u54e5\u672c\u54c8\u6839\u7684Christiansborg\u57ce\u5821\u591c\u95f4\u62b5\u8fbe\uff0c\u7167\u7247\u903c\u771f\u3002"} +{"id": "0006192", "video_name": "27fbb33d-3d76-5ec7-8c2b-16a36e31acf7", "text": "\u963f\u4f5b\u6d1b\u72c4\u5fd2\u7a7f\u7740\u793c\u670d\u5728\u6d77\u4e2d\u6e38\u6cf3\u3002\n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002"} +{"id": "2005101", "video_name": "00e7e19e-99c7-5c43-9bc0-4a34c99ac041", "text": "\u4e00\u4e2a\u6b63\u5728\u7761\u89c9\u7684\u4eba\u5728\u4e00\u6735\u767d\u4e91\u4e2d\u505a\u68a6\uff0c\u6444\u50cf\u673a\u7f29\u653e\u5230\u90a3\u6735\u4e91\u4e2d\u3002"} +{"id": "2006397", "video_name": "663415f8-eeed-53d8-b244-0fdb8d125bd5", "text": "\u4e00\u4e2a\u6ca1\u6709\u9762\u5b54\u7684\u7537\u4eba\u7ad9\u5728\u4e00\u4e2a\u7a7a\u623f\u95f4\u91cc\u65cb\u8f6c\u3002"} +{"id": "8001696", "video_name": "fb6bf356-2227-530b-8c19-6ce65fdd8006", "text": "\u65e5\u672c\u8857\u9053\u7740\u706b\u4e86\uff0c\u4eba\u4eec\u60ca\u614c\u5730\u5954\u8dd1\uff0c\u6c7d\u8f66\u88ab\u6bc1\u574f\u548c\u71c3\u70e7\u3002"} +{"id": "2004282", "video_name": "c1c8d445-4d1f-5765-a9af-bc0bdcb6f4f1", "text": "\u9ed1\u6697\u4e2d\u5e26\u7740\u8759\u8760\u98de\u7fd4\u7684\u54e5\u7279\u5f0f\u5927\u6559\u5802\u3002"} +{"id": "2005733", "video_name": "52e073d0-153d-5056-8367-57511bcc50bf", "text": "\u6444\u50cf\u673a\u7f13\u6162\u5730\u9760\u8fd1\u8d77\u4e9aSeltos\uff0c\u8f66\u5934\u706f\u4eae\u4e86\u3002"} +{"id": "6002071", "video_name": "1f91c955-41e2-5e14-b12a-ee08fdeac3cc", "text": "\u5929\u795e\u4eec\u8df3\u7740\u5b87\u5b99\u4e4b\u821e\u3002"} +{"id": "8003751", "video_name": "6fdac65a-7770-5deb-8bc4-0ac7eb477b81", "text": "\u4eba\u5f62\u8c61\u7684\u5927\u8c61\u5feb\u901f\u884c\u8d70\uff0c\u8868\u73b0\u51fa\u6124\u6012\u7684\u60c5\u7eea\uff0c\u91c7\u7528\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u4f7f\u7528\u4e86CGI\u6280\u672f\uff0c\u7531\u6f2b"} +{"id": "1006657", "video_name": "79f594a5-7259-5a20-bcf7-0dbd458aa6ee", "text": "\u5723\u8bde\u706f\u70b9\u4eae\u4e86\u623f\u5b50\u5916\u9762\uff0c\u6770\u514b\u00b7\u971c\u95ea\u8000\u7740\u3002"} +{"id": "7004356", "video_name": "bc172332-4386-5279-bee4-8b280a413fc0", "text": "\u60ca\u8bb6\u7684\u7537\u4eba\u7741\u5927\u773c\u775b\uff0c\u53cc\u624b\u6342\u8138\u3002"} +{"id": "5001590", "video_name": "fa881841-3ee7-522c-803b-91bb812188f9", "text": "4\u4e2a\u56fe\u50cf\uff1a\u5934\u5411\u5de6\u8f6c\uff0c\u7136\u540e\u89d2\u8272\u770b\u5411\u6444\u50cf\u673a\u6325\u624b\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004364", "video_name": "122961aa-d388-526b-accb-bfdb16f06eba", "text": "\u4e00\u53ea\u5728\u53a8\u623f\u91cc\u5403\u997c\u5e72\u7684\u72d7\u5750\u5728\u684c\u5b50\u65c1\uff0c\u7535\u5f71\u822c\u903c\u771f\u3002"} +{"id": "1004765", "video_name": "58234b80-2c54-504a-b0ce-64ae4f307300", "text": "\u6c7d\u8f66\u548c\u706b\u8f66\u56db\u5904\u98de\u884c\uff0c\u50cf\u661f\u661f\u4e00\u6837\u6563\u843d\u3002"} +{"id": "2003573", "video_name": "d61a687c-5b10-5051-a5cb-32a88d64be54", "text": "\u4e00\u4e2a\u5f88\u9177\u7684\u8d34\u7eb8\u56fe\u6848\uff0c\u9002\u5408\u4e8e\u6d77\u5c3c\u6839\u3001\u5564\u9152\u3001\u7ea2\u8272\u548c\u7eff\u8272\u3002"} +{"id": "0006293", "video_name": "2a204a46-7d52-5da0-a986-b58e991eab30", "text": "\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u4e91\u5f69\u5728\u5929\u7a7a\u4e2d\u6ed1\u8fc7\uff0c\u82b1\u74e3\u98d8\u843d\u3002"} +{"id": "3003411", "video_name": "2d0b2dcc-7fad-55d1-9644-c736dfe7bb62", "text": "\u8fc7\u76ee\u4e00\u77a5\u8fd9\u4e9b\u4fe1\u4ef6\uff0c\u6211\u4eec\u80fd\u7aa5\u89c1\u5230\u8fc7\u53bb\u6d6a\u6f2b\u6587\u5b66\u7684\u7247\u6bb5\u3002"} +{"id": "2005585", "video_name": "18fd271b-4312-51af-b0b0-4166c0311e15", "text": "\u8bb8\u591a\u9e1f\u56f4\u7ed5\u7740\u5706\u5708\u7684\u63d2\u56fe\u3002"} +{"id": "2004050", "video_name": "dfe85f1c-0c2f-555d-8478-134ae37a1f9b", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u62e5\u6324\u7684\u5370\u5ea6\u5e02\u573a\u3002"} +{"id": "1006812", "video_name": "7caf2ca3-3a66-5262-b4c2-7eaa08d87a25", "text": "\u8001\u623f\u5b50\u5728\u5185\u5e03\u62c9\u65af\u52a0\u5dde\uff0c\u6444\u50cf\u673a\u62c9\u56de\uff0c\u767d\u5929\uff0c\u9ad8\u9ad8\u7684\u8349\u7530\u3002"} +{"id": "2004866", "video_name": "0124c5fa-055d-58a3-9645-373cc218d9a0", "text": "\u5c06\u592a\u9633\u5143\u7d20\u548c\u78c1\u573a\u6307\u5357\u9488\u5143\u7d20\u7ed3\u5408\u8d77\u6765\uff0c\u4ee5\u4ee3\u8868\u5b83\u4eec\u72ec\u7279\u7684\u5bfc\u822a\u65b9\u5f0f\u3002"} +{"id": "7002129", "video_name": "7cc68b0d-f481-52d7-bd39-7bc5e0e86079", "text": "\u5468\u6770\u4f26\u7a7f\u7740\u592a\u7a7a\u670d\uff0c\u672a\u6765\u611f\u5341\u8db3\uff0c\u642d\u4e58\u592a\u7a7a\u98de\u8239\u3002"} +{"id": "4004029", "video_name": "dbe1c217-5268-5456-a523-97c49363b9a8", "text": "\u5e0c\u65af\u00b7\u83b1\u6770\u9970\u6f14\u7684\u5c0f\u4e11\u9a91\u7740\u706b\u7bad\u3002"} +{"id": "2006099", "video_name": "b5b42934-ed3f-55be-95a0-ab8f6c8b4784", "text": "\u4e54\u00b7\u62dc\u767b\u626e\u6f14\u5c24\u8fbe\uff0c\u4e0e\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u626e\u6f14\u7684\u6c49\u00b7\u7d22\u7f57\u57281970\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u4e2d\u76f8"} +{"id": "3006007", "video_name": "0f8e53ce-980a-511a-9417-92f1aa256b8c", "text": "clockwise, and then the screen fades to black.\n\n\u901a\u8fc7\u4e00\u9635\u9f13\u58f0\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3001\u9006\u65f6\u9488\u65cb\u8f6c\uff0c\u7136\u540e\u5c4f\u5e55\u6e10\u6e10\u53d8\u9ed1\u3002"} +{"id": "1003152", "video_name": "3a191642-57d7-5480-8abd-7780a6987b6c", "text": "\u6709\u53f2\u4ee5\u6765\u6700\u60ca\u4eba\u7684\u673a\u5668\u4eba\u529f\u592b\u6218\u6597"} +{"id": "1006306", "video_name": "736f480e-737c-55a9-a709-4d26d726d919", "text": "\u563f\uff0c\u670b\u53cb\u4eec\uff01\u4f60\u4eec\u89c9\u5f97\u6211\u4eec\u53ef\u4ee5\u5728\u8fd9\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u5468\u65e5\u53bb\u6d77\u6ee9\u73a9\u5417\uff1f"} +{"id": "2007766", "video_name": "bd1afa8b-0d5b-569f-820d-d79c94ada785", "text": "\u751f\u6210\u4e00\u6bb5\u52a8\u4f5c\u573a\u666f\u89c6\u9891\uff0c\u91d1\u5c5e\u660e\u661f\u5c06\u88ab\u76f4\u63a5\u6295\u5411\u6444\u50cf\u673a\u3002\u65e0\u7455\u75b5\u7684\u7eff\u5e55\u80cc\u666f\u3002"} +{"id": "2006883", "video_name": "56891631-26ef-56b9-867f-5cd13aa0c7e6", "text": "\u5973\u5b69\u624b\u62ff\u8309\u8389\u82b1\u5728\u8857\u4e0a\u6563\u6b65\uff0c\u8def\u9762\u6e7f\u6f09\u6f09\u7684\uff0c\u591c\u665a\uff0c\u9ad8\u697c\u6797\u7acb\u3002"} +{"id": "3005306", "video_name": "18f942e5-0c19-5117-88c9-7770984ac81b", "text": "70\u5e74\u4ee3\u7684\u8001\u5f0f\u5b87\u822a\u5458\u53d6\u4e0b\u4ed6\u7684\u5934\u76d4\u3002"} +{"id": "3004001", "video_name": "87a6f8ea-af8c-5bf7-b020-0d4d848bb366", "text": "\u9633\u53f0\u4e0a\u7684\u767d\u732b\u3002"} +{"id": "8003464", "video_name": "0363a210-844b-5940-bb18-ef1e16f86c48", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u7a7f\u7740\u62f3\u51fb\u77ed\u88e4\uff0c\u5728\u62f3\u51fb\u53f0\u4e0a\u6234\u7740\u7ea2\u624b\u5957\uff0c\u7279\u51994K\u52a8\u753b\u3002"} +{"id": "3006821", "video_name": "826fe5b1-34c9-5c02-9281-9e90810db7a0", "text": "\u9f99\u4eceSkinwalker Ranch\u63a2\u7a76\u4e00\u53ea\u7626\u5f31\u7684\u7070\u8272\u5916\u661f\u4eba\uff0cTravis Taylor\u5e26\u7740\u8089\u9ebb\u7684\u773c\u795e\u6ce8\u89c6\u3002\u7535\u5f71\u822c\u7684"} +{"id": "3004389", "video_name": "fd0630dd-500f-5507-9e81-404a9a2e60ed", "text": "\u4e00\u4f4d\u4e2d\u56fd\u7f8e\u5973\u5728\u7f8e\u5bb9\u5e97\u91cc\u62a4\u7406\u76ae\u80a4\uff0c\u5979\u7684\u76ae\u80a4\u767d\u7699\u800c\u4e14\u817f\u5f88\u957f\u3002"} +{"id": "6003829", "video_name": "857602a9-6382-54e6-84dd-7f21567a0277", "text": "\u94c2\u91d1\u80fd\u91cf\u6218\u58eb\u543b\u9ec4\u8272\u7279\u91cc\u5c3c\u80fd\u91cf\u6218\u58eb\u3002"} +{"id": "0003215", "video_name": "3967b236-56d4-54e4-84c5-14e76b0c1f22", "text": "\u5728\u4e00\u5834\u97f3\u6a02\u7bc0\u4e0a\u7f8e\u9e97\u7684\u5b09\u76ae\u5973\u5b50\u6b63\u5728\u8df3\u821e\u3002"} +{"id": "6002226", "video_name": "7d4aac2d-95d4-5e10-9a7b-0b4f8043e3f4", "text": "\u60b2\u4f24\u662f\u7231\u7684\u4ee3\u4ef7\u3002"} +{"id": "1003000", "video_name": "370f0a80-ec8d-53e2-b6d3-500b7a3ac37a", "text": "\u5728\u68ee\u6797\u7684\u4e2d\u5fc3\uff0c\u4e00\u53ea\u667a\u6167\u7684\u8001\u4e4c\u9f9f\u88ab\u4e00\u7fa4\u591a\u6837\u4e14\u8272\u5f69\u9c9c\u8273\u7684\u751f\u7269\u5305\u56f4\u7740\uff0c\u5b83\u4eec"} +{"id": "6002250", "video_name": "19b4dc17-650d-5b19-b1b0-49872a3502ec", "text": "\u4e00\u6bb5\u957f\u89c6\u9891\uff0c\u6c7d\u8f66\u5728\u9053\u8def\u4e0a\u884c\u9a76\uff0c4K\u3002"} +{"id": "2006095", "video_name": "7b49ac28-9a26-5531-8f2c-20f9aaee0c95", "text": "\u6d77\u602a\uff0c\u6e38\u6cf3\u5728\u6c34\u4e2d\uff0c\u5ca9\u77f3\uff0c\u5927\u773c\u775b\uff0c\u53ef\u6015\u3002"} +{"id": "2004451", "video_name": "567f95a6-2e8e-5b79-86d8-5fefe7a79e43", "text": "\u4f0a\u739b\u76ee\u963f\u91cc\u00b7\u672c\u00b7\u963f\u6bd4\u00b7\u5854\u5229\u535c\u88ab\u5251\u51fb\u4e2d\u3002"} +{"id": "2006771", "video_name": "2c496fd2-dc82-5a4a-b211-5bed7aaa7b19", "text": "\u4e00\u679a\u70ed\u72d7\u5f62\u72b6\u7684\u706b\u7bad\u5411\u571f\u661f\u98de\u53bb\u3002"} +{"id": "3004608", "video_name": "df4f40b7-2953-5648-9077-e794e3b58607", "text": "\u9ed1\u6697\u7a7a\u95f4\u6ca1\u6709\u5149\uff0c\u53d1\u751f\u7206\u70b8\uff0c\u8bb8\u591a\u592a\u9633\u5728\u9065\u8fdc\u7684\u5730\u65b9\u548c\u6052\u661f\u5f62\u6210\uff0c\u884c\u661f\u7ed5\u7740\u592a\u9633\u65cb\u8f6c"} +{"id": "1003238", "video_name": "3bab31ab-1add-597e-84db-3eedb1880060", "text": "\u6700\u7ec8\uff0c\u827e\u767b\u51ed\u501f\u57c3\u5c14\u591a\u5229\u4e9a\u7687\u51a0\u7684\u529b\u91cf\u6218\u80dc\u9ed1\u6697\uff0c\u8ba9\u5149\u660e\u56de\u5f52\u5927\u5730\u3002"} +{"id": "0004677", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "\u6bcd\u5154\u5728\u53a8\u623f\u51c6\u5907\u98df\u7269\u3002"} +{"id": "0005330", "video_name": "18ed6a08-7f19-556a-b630-8d86bd988bba", "text": "\u4e91\u5c42\u805a\u62e2\u5f62\u6210\u98ce\u66b4\u98d3\u98ce\uff0c\u522e\u8d77\u72c2\u98ce\u66b4\u96e8\u3002\u4fe1\u606f\uff1aPictorius\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2005195", "video_name": "cf39369e-2e44-5f36-926e-9dc74f30d7f2", "text": "\u6234\u7740\u7eff\u8272\u9762\u7f69\u7684\u7537\u5b50\u900f\u8fc7\u8272\u5f69\u9c9c\u8273\u7684\u51e0\u4f55\u80cc\u666f\u89c2\u5bdf\u3002"} +{"id": "2004983", "video_name": "f2e99c89-778c-53ce-bed4-f967a7afa71f", "text": "\u4e00\u4f4d\u8001\u4eba\u5e26\u7740\u4ed6\u7684\u72d7\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "7004456", "video_name": "4cdd857e-330f-5ce8-a769-7837e8571e91", "text": "\u4e00\u53ea\u9ca8\u9c7c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c\u4ee5\u68b5\u9ad8\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "1004759", "video_name": "58150d39-ee6d-51fc-91c3-42e4ffc78e1c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4ed9\u5973\u5728\u8df3\u821e\uff0c\u5929\u4f7f\u4eec\u56f4\u6210\u4e00\u4e2a\u5706\u5708\u5750\u7740\uff0c\u9752\u86d9\u5439\u7740\u957f\u7b1b\uff0c\u8682\u86b1"} +{"id": "6002394", "video_name": "9625c7fb-fd61-5d63-beaa-66bdcd84bbe2", "text": "\u7528\u9b54\u6cd5\u529b\u91cf\u5e2e\u52a9\u6751\u5e84\u52a8\u753b\u3002"} +{"id": "6004146", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "\u8001\u623f\u95f4\u91cc\u7684\u7535\u89c6\u6709\u7740\u767d\u566a\u58f0\uff0c\u81ea\u7136\u5149\u7ebf\u5f3a\u8c03\u7eb9\u7406\uff0c\u9ad8\u7ec6\u8282\u30018k\u5206\u8fa8\u7387\u3002"} +{"id": "0003344", "video_name": "3bf0deb6-9ff3-520a-bd74-70c2d7c154af", "text": "\u5bc6\u6b47\u6839\u6e56\u7684\u540d\u5b57\u6765\u81ea\u5965\u5409\u5e03\u74e6\u8bed\u7684Michi Gami\u3002"} +{"id": "3003749", "video_name": "ea24ef70-36fd-5b3b-a656-584e4a3c0f73", "text": "\u6ea2\u51fa\u7684\u5723\u676f Beksinski Alfred Stieglitz \u7c97\u7cd9\u7684\u9ed1\u767d\u7167\u7247 1900\u5e74\u4ee3"} +{"id": "1005438", "video_name": "63edb39f-e097-5051-a1d9-ced8e3551826", "text": "\u7194\u5ca9\u5728\u6d3b\u706b\u5c71\u4e0a\u71c3\u70e7\u3002\u4fe1\u606f\uff1a\u5a01\u6069\u897f\u533a\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "2006046", "video_name": "054e5551-796f-542f-8b48-23e9278eab45", "text": "\u6570\u5b57\u827a\u672f\u4e2d\u98de\u821e\u7684\u8424\u706b\u866b"} +{"id": "0005124", "video_name": "153e3e53-c9cd-5439-8d9c-1394d7aee3de", "text": "1978\u5e74\u7684\u96e8\u4e2d\uff0c\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u8eb2\u5728\u540c\u4e00\u4e2a\u6a90\u4e0b\u907f\u96e8\uff0c\u5c55\u5f00\u4e86\u4e00\u573a\u53ef\u80fd\u6539\u53d8\u4ed6\u4eec\u4e00\u751f\u7684\u5bf9\u8bdd\u3002"} +{"id": "2005617", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0cKaida\u548cAslan\u5728\u9a84\u50b2\u77f3\u4e0a\u5411\u5217\u5965\u5c3c\u8fbe\u65af\u56fd\u738b\u5c55\u793a\u4ed6\u4eec\u5404\u81ea\u7684\u4ef7\u503c\u7b26\u53f7\u3002"} +{"id": "0003970", "video_name": "00e3cbc2-fd07-5308-98d5-7db70846b90a", "text": "\u4e00\u4e2a\u84dd\u8272\u76843D\u5fc3\u5f62\u56fe\u6848\u7834\u88c2\u6210\u4e24\u534a\u3002"} +{"id": "6004464", "video_name": "9e28bfd7-b1e0-5d6c-afc1-1cde18312d9f", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u871c\u8702\u6b63\u5728\u7f8e\u4e3d\u591a\u5f69\u7684\u82b1\u56ed\u91cc\u5f39\u94a2\u7434\u3002"} +{"id": "0004450", "video_name": "094c2636-5113-56c5-8ab3-b519bd7f07ea", "text": "\u521b\u9020\u4e00\u4e2a\u7f8e\u4e3d\u7684\u74f6\u5b50\uff0c\u4e0a\u9762\u6709\u4e00\u53ea\u9e70\u7684\u6807\u5fd7\uff0c\u80cc\u666f\u662f\u96ea\u5c71\u3002"} +{"id": "0003379", "video_name": "3c89eeba-3d18-550e-8d29-18ead56956a3", "text": "20\u4e16\u7eaa80\u5e74\u4ee3\u7684\u5c0f\u5973\u5b69\u53c2\u52a0\u5065\u7f8e\u6bd4\u8d5b\uff0c\u5c55\u73b0\u7ecf\u5178\u8eab\u6750\uff0c\u5fae\u7b11\u7740\uff0c\u6d82\u7740\u5047\u6652\u9ed1\u3002"} +{"id": "2004292", "video_name": "9a22a3f6-5505-5020-9c23-d94289e97f9d", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u673a\u5668\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c4K\uff0c\u4f73\u80fd\uff0c\u8d85\u903c\u771f\u3002\n\nSource sentence: I love Chinese food, especially dim sum and hot pot. \n\u6211"} +{"id": "3004580", "video_name": "cc29f70d-5be2-522c-9514-8c66f7f396fc", "text": "\u4eba\u4eec\u5728\u4e2d\u9910\u9986\u5403\u996d\u3002"} +{"id": "0003296", "video_name": "3b24f8a3-753e-52a6-ab8c-a00fa0498bca", "text": "\u521b\u5efa\u4e00\u4e2a\u97f3\u4e50\u6df7\u5408\u89c6\u9891\u7684\u80cc\u666f\u3002"} +{"id": "4003622", "video_name": "dcae8c7b-c902-5fd9-837f-103c67781dd9", "text": "\u573a\u666f\u4ee5\u4e00\u4e2a\u5f02\u4e16\u754c\u7684\u5b87\u5b99\u98de\u8239\u4ece\u5929\u7a7a\u7f13\u7f13\u964d\u4e34\u5f00\u59cb\uff0c\u80cc\u666f\u662f\u5982\u753b\u7684\u843d\u65e5\u4f59\u6656\u3002\u6444\u50cf\u673a\u4f4d\u4e8e"} +{"id": "0006516", "video_name": "2de2430f-e877-50b1-b3d9-30186623b251", "text": "\u5c06\u5de5\u5382\u7684\u7279\u5b9a\u533a\u57df\u653e\u5927\uff0c\u4f8b\u5982\u88c5\u914d\u7ebf\u3001\u50a8\u5b58\u533a\u548c\u8d28\u91cf\u63a7\u5236\u7ad9\u3002\u5c55\u793a\u6570\u5b57\u5de5\u5382\u6a21\u62df\u5982\u4f55\u5b9e\u73b0\u5bf9\u5f53\u524d\u751f\u4ea7\u6d41\u7a0b"} +{"id": "8001889", "video_name": "e7c2d942-4a55-572d-a90b-85aa03ea173d", "text": "\u767d\u8272\u5728\u9ed1\u8272\u7684\u80cc\u666f\u4e0b\uff0c\u84b2\u516c\u82f1\u7684\u79cd\u5b50\u5934\u65cb\u8f6c\u5e76\u5206\u89e3\u6210\u5355\u72ec\u7684\u79cd\u5b50\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "8003074", "video_name": "102b9ed2-9eef-5fe3-aeee-78f81f7a37e5", "text": "\u4ed6\u5728\u8fc7\u7a0b\u4e2d\u4e3a\u4e86\u62ef\u6551\u57ce\u5e02\u800c\u727a\u7272\u4e86\u81ea\u5df1\u3002"} +{"id": "6004422", "video_name": "32a0aa3d-45ef-5f90-9775-37133e283576", "text": "\u4e00\u53ea\u730e\u4eba\u673a\u5668\u4eba\u5e7b\u89c9\uff0c\u653e\u5927\u753b\u9762"} +{"id": "0005119", "video_name": "151c58b4-d1f8-58f5-b834-800f83bffc50", "text": "1870\u5e74\uff0c\u6cd5\u56fd\u70ae\u5175\u5411\u666e\u9c81\u58eb\u519b\u961f\u5f00\u706b\uff0c4K\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "2007009", "video_name": "4c1dec56-29a5-5775-bcfb-00029b37e64a", "text": "\u4e00\u53ea\u7a7f\u7740\u56fd\u738b\u88c5\u7684\u9ec4\u8272\u62c9\u5e03\u62c9\u591a\u8d70\u5411\u4ed6\u7684\u738b\u5ea7\u3002"} +{"id": "0005921", "video_name": "2349fc7e-4cab-594c-96c1-0176a29dcd09", "text": "\u68ee\u6797\u91cc\u8d70\u8def\u7684\u718a\uff0c\u827a\u672f\u98ce\u683c\uff0c\u7011\u5e03\uff0c\u6811\u6728\u3002"} +{"id": "5001597", "video_name": "7508ac52-657e-5f31-a851-177a0f5df466", "text": "\u88ab\u6050\u60e7\u6240\u538b\u5012\uff0c\u8bd5\u56fe\u6253\u7535\u8bdd\u62a5\u8b66\u3002"} +{"id": "4004895", "video_name": "526a5f11-9c15-55fb-8559-89b239fec8c6", "text": "\u79fb\u52a8\u7684\u77f3\u5934\u548c\u5ca9\u77f3\u7684\u8d28\u611f"} +{"id": "7004280", "video_name": "fea3c1aa-1320-545d-a9f0-c368854feaf8", "text": "\u4ece\u5929\u7a7a\u4e2d\u89c2\u770b\u57ce\u5e02\u7684\u7167\u7247\u3002\u4fe1\u606f\uff1amanu\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2004816", "video_name": "e7afa80f-7525-5813-acca-ea03557e3fc4", "text": "\u6d77\u6ee9\u4e0a\u7684\u5915\u9633\uff0c\u661f\u7a7a\u4e0b\u7684\u591c\u5e55\u964d\u4e34\u3002"} +{"id": "2004859", "video_name": "b065401a-25ea-5fc1-b4fb-1c2b2f96e338", "text": "\u7528\u7ea2\u8272\u82b1\u6735\u521b\u4f5c\u4e00\u4e2a\u827a\u672f\u6027\u7684\u87ba\u65cb\u96a7\u9053\uff0c\u5176\u4e2d\u6bcf\u4e2a\u82b1\u74e3\u4f3c\u4e4e\u5f62\u6210\u4e86\u4e00\u4e2a\u72ec\u7279\u7684\u97f3\u7b26"} +{"id": "8003294", "video_name": "6019e2da-d3cc-5981-832a-2a9995b96fb2", "text": "\u8d2b\u56f0\u67d3\u6c61\u4e86\u6211\u4eec\u5468\u56f4\u7684\u4eba\u4eec\u7684\u751f\u6d3b\uff0c\u5373\u4f7f\u662f\u8d22\u4ea7\u7a0e\u4e5f\u65e0\u6cd5\u4e0e\u4ed6\u4eec\u8fc7\u7740\u7684\u8270\u96be\u751f\u5b58\u76f8\u6bd4\u3002"} +{"id": "1006887", "video_name": "7de52cce-b9b4-5ee9-9b12-758d965ab093", "text": "\u8ba9\u773c\u775b\u7728\u7728\uff0c\u8863\u670d\u98d8\u98d8\u3002"} +{"id": "7004670", "video_name": "3ad1e9c7-1022-546b-a021-4e43f958b47e", "text": "\u5728\u4e00\u4e2a\u5927\u684c\u5b50\u65c1\uff0c\u4e09\u540d\u7537\u6027\u548c\u4e09\u540d\u5973\u6027\u4e2d\u5e74\u5546\u52a1\u4eba\u58eb\u5728\u4f1a\u8bae\u5ba4\u8fdb\u884c\u5546\u4e1a\u8ba8\u8bba\u3002"} +{"id": "3005342", "video_name": "d9f9da8e-510c-5d79-8a1f-0f4f81223f4f", "text": "\u6c99\u53d1\uff0c\u7ea2\u9ed1\u8272\u3002"} +{"id": "4003202", "video_name": "c41e370f-f329-55e5-a26d-21e66441bb79", "text": "\u610f\u5927\u5229\u5973\u4eba\u5750\u5728\u6258\u65af\u5361\u7eb3\u7684\u4e00\u4e2a\u9633\u53f0\u4e0a\uff0c\u4fef\u77b0\u7740\u7f8e\u666f\uff0c\u5403\u7740\u610f\u5927\u5229\u9762\u3002"} +{"id": "3004221", "video_name": "9455afa5-9aea-5359-979d-a77ea6742410", "text": "\u56dbK\u753b\u8d28\u4e0b\uff0c\u4e00\u53ea\u5154\u5b50\u5b87\u822a\u5458\u5728\u5916\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u5979\u8eab\u540e\u661f\u661f\u95ea\u8000\u3002"} +{"id": "7004119", "video_name": "8a089671-42af-5402-a71c-a9f79f910b60", "text": "\u5728\u7269\u7406\u5b66\u5bb6\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u5468\u56f4\u7ed8\u5236\u51fa\u53d1\u51fa\u706b\u82b1\u7684\u539f\u5b50\u7c92\u5b50\u3002"} +{"id": "1003191", "video_name": "3ab6ed02-d6cf-5f2f-93d9-3f152f795c83", "text": "\u623f\u95f4\u91cc\u5145\u6ee1\u70df\u96fe\u7684\u7b11\u8138\u7537\u5b50"} +{"id": "6004085", "video_name": "a6af4128-82e7-5178-91c5-87efbe10ee13", "text": "\u4ece\u524d\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u68ee\u6797\u91cc\u4f4f\u7740\u4e00\u6761\u5927\u7ea2\u9f99\uff0c\u5b83\u603b\u662f\u7b11\u7740\u548c\u5c0f\u52a8\u7269\u73a9\u800d\u3002"} +{"id": "5001996", "video_name": "a44bfcbc-f207-5ab7-a3e1-f7cc17121c3f", "text": "\u4e00\u4e2a\u53ef\u601c\u7684\u5c0f\u5546\u8d29\u5728\u79bb\u4f17\u591a\u623f\u5c4b\u4e0d\u8fdc\u7684\u8857\u9053\u4e0a\u5356\u7740\u5f88\u591a\u7709\u7c89\u548c\u68b3\u5b50\uff0c\u88c5\u5728\u7bee\u5b50\u91cc"} +{"id": "0003654", "video_name": "4116c487-16eb-57ad-bf04-f77ccc8df9c6", "text": "\u4e00\u4e2a\u7a7f\u7740\u975e\u5e38\u539a\u7684\u6bdb\u76ae\u5927\u8863\uff0c\u4ee5\u7167\u7247\u903c\u771f\u7684\u7535\u5f71\u5149\u7ebf8K\u8d85\u903c\u771f\u98ce\u683c\u8d70\u8fdb\u6c99\u6f20\u7684\u7537\u4eba"} +{"id": "7004116", "video_name": "60d218b4-33c4-5a16-a8d5-9829bea3a07c", "text": "\u865a\u62df\u4e4b\u65c5\uff1aHOLOLEARNER\u901a\u8fc7HOLODECK\u8fdb\u5165\u865a\u62df\u666f\u89c2\u4e4b\u65c5\uff0c\u73af\u5f62\u6676\u683c\u5f62\u6210\u63a2\u7d22\u8def\u5f84\u548c\u5730\u5f62\u3002\u52a8\u753b\u5c55\u73b0"} +{"id": "7004537", "video_name": "67712eca-1d1c-5868-8908-7a60849897cf", "text": "\u5973\u5b69\u6b63\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "7004337", "video_name": "017b0778-61b0-5fa3-a8ce-018ed1e7c2fa", "text": "\u591c\u665a\u4e00\u5ea7\u71c3\u70e7\u7684\u6559\u5802\u4e0a\u4e0b\u96e8\u822c\u7684\u8840\u6db2\uff0c\u7531H.R.\u5409\u683c\u5bfc\u6f14\uff0c8\u6beb\u7c73\u80f6\u7247\u753b\u9762"} +{"id": "1003359", "video_name": "3ddf3c07-7f9f-544e-b12b-94aa553997c1", "text": "\u4e00\u95f4\u5bbd\u655e\u660e\u4eae\u7684\u623f\u95f4\uff0c\u7a97\u6237\u8ba9\u6e29\u6696\u7684\u9633\u5149\u7167\u4eae\u6574\u4e2a\u7a7a\u95f4\u3002\u684c\u5b50\u6574\u9f50\u5730\u653e\u7740\u4e66\u7c4d"} +{"id": "2004112", "video_name": "24b952f6-2756-56df-ac40-6fe91fc0c0aa", "text": "\u4e00\u67b6\u98de\u673a\u964d\u843d\u5728\u7f8e\u4e3d\u7684\u5c71\u4e18\u548c\u4e91\u5f69\u73af\u7ed5\u7684\u533a\u57df\u3002"} +{"id": "2006681", "video_name": "d507d618-42e2-5795-b3f0-38c1f3092a6b", "text": "\u767d\u8272\u533b\u9662\u8d70\u5eca\u7684\u4e2d\u592e\u89c6\u89d2\uff0c\u7537\u5b69\u5728\u533b\u9662\u91cc\u8d70\u52a8\uff0c\u80cc\u5f71\u3002"} +{"id": "4003077", "video_name": "aa42a7ab-0da9-5567-b582-aec136068dec", "text": "\u97f3\u4e50\u4f1a\uff0c\u9713\u8679\u706f\u3002\u4fe1\u606f\uff1a\u91cc\u67e5\u7279\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3004621", "video_name": "46651f8a-2aa1-5325-85e4-827b2fb7f099", "text": "\u5236\u4f5c\u4e00\u4e2a\u5361\u901a\u773c\u775b\uff0c\u80fd\u95ea\u70c1\u53d1\u5149\u7684\u989c\u8272\u3002\u8fd9\u4e9b\u53d1\u5149\u7684\u989c\u8272\u4f1a\u51fa\u73b0\u95ea\u70c1\u7684\u6548\u679c\u3002"} +{"id": "1006706", "video_name": "7ae2594c-2b82-5899-b56c-ed74f614eec3", "text": "\u4e00\u8f86\u5c3c\u6851240sx\u5728\u51cf\u901f\u5e26\u4e0a\u9ad8\u67b6\u4e86\u3002"} +{"id": "0004651", "video_name": "0ca5e208-bcd6-5018-b3bc-54bfbb64ed24", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u50cf\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u4e00\u6837\u5411\u4ed6\u7684\u5973\u53cb\u6c42\u5a5a\u3002"} +{"id": "1003825", "video_name": "46ac58b2-718a-5a36-8f81-9f831eced79a", "text": "\u8349\u8393\u5927\u8c61\u5728\u4e1b\u6797\u91cc\u4e0e\u6050\u9f99\u6218\u6597\u3002"} +{"id": "7003122", "video_name": "1c03d1d0-a5a3-5290-920d-d228a2d86d0c", "text": "\u7f8e\u6d32\u539f\u4f4f\u6c11\u8428\u6ee1 \u4fe1\u606f\uff1a\u6838\u5f39\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "3005139", "video_name": "6af72aca-ef6f-5199-b714-e1fa2389f2d6", "text": "\u7f51\u7edc\u670b\u514b\u57ce\u5e02\uff0c\u7537\u5b50\u5411\u673a\u5668\u4eba\u5f00\u67aa\uff0c\u6301\u7eed\u65f6\u95f410\u79d2\u3002"} +{"id": "0006324", "video_name": "2aa71c1b-c414-5320-85ed-59ddcfe2c662", "text": "\u7c73\u59ae\u66fe\u7ecf\u4f4f\u8fc7\u7684\u623f\u5b50\uff0c\u73b0\u5728\u7a7a\u8361\u8361\u7684\uff0c\u8352\u51c9\u65e0\u4eba\u3002"} +{"id": "2005950", "video_name": "92c46a31-8fc6-5131-a5d2-54910c20f658", "text": "\u82cf\u7f8e\u5c14\u521b\u4e16\u795e\u8bdd\u4e0d\u4ec5\u4ec5\u662f\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "1003712", "video_name": "4477b70e-2a5c-5482-8e3a-f2d2796f99be", "text": "\u80cc\u666f\u5c71\u8109\u4e0b\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u767d\u5c71\u7f8a\u89d2\u7acb\u5728\u4e00\u68f5\u7c97\u58ee\u7684\u6a61\u6811\u65c1\u8fb9\u3002"} +{"id": "8003596", "video_name": "3682e0d2-abf0-547b-a467-5d7e1a66eae1", "text": "\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc\uff0c\u8302\u5bc6\u7684\u68ee\u6797\u548c\u4e1b\u6797\u8301\u58ee\u6210\u957f\u3002\u767d\u5929\uff0c\u9633\u5149\u6d74\u5728\u8fd9\u4e2a\u5730\u65b9\uff0c\u6e29"} +{"id": "3004791", "video_name": "39935441-5b13-5786-890f-667be38073dc", "text": "after the start of a safety test on April 26, 1986, remains the world's worst nuclear accident.\n\n\u5207\u5c14\u8bfa\u8d1d\u5229\u6838\u7535\u7ad9\u57281986\u5e744\u670826\u65e5\u8fdb\u884c\u5b89\u5168\u6d4b\u8bd5\u65f6\uff0c10"} +{"id": "3003919", "video_name": "ab163822-d8e1-52a0-8753-3e35342080ac", "text": "\u5c0f\u955c\u5b50\u91cc\u51fa\u73b0\u4e86\u4e00\u4e2a\u8001\u5987\u4eba\u3002"} +{"id": "0006715", "video_name": "318f244e-4be4-5c81-93d1-f1dd6e692fa4", "text": "\u4e00\u4e2a\u538b\u529b\u5f88\u5927\u7684\u5e74\u8f7b\u4eba\u5728\u5de5\u4f5c\u7a7a\u95f4\u91cc\uff0c\u76ef\u7740\u7535\u8111\uff0c\u5468\u56f4\u5806\u6ee1\u4e86\u7eb8\u5f20\u3001\u5496\u5561\u676f\u548c\u51e0"} +{"id": "4002804", "video_name": "71bcb858-f16a-56a8-b4cf-a8ca647abc4e", "text": "\u4ed6\u60ca\u8bb6\u5730\u53d1\u73b0\uff0c\u6bcf\u5929\u65e9\u4e0a\u6bcd\u9e21\u90fd\u4f1a\u4e0b\u4e00\u9897\u91d1\u86cb\u3002"} +{"id": "2007211", "video_name": "2a1e14d8-ef63-50d0-9dd9-7dd119b74470", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u53ea\u72d7\u5728\u7530\u91ce\u4e0a\u6563\u6b65\u3002"} +{"id": "7004792", "video_name": "61d80671-9ed6-5c7d-a6bf-5208200fca98", "text": "\u4e00\u540d\u7537\u5b50\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u8d70\u8def\uff0c\u5929\u7a7a\u4e2d\u7684\u94b1\u7eb7\u7eb7\u843d\u4e0b\u3002"} +{"id": "2007692", "video_name": "2e201e5c-e6b8-54de-b3c7-638150ddc6a6", "text": "\u82ad\u6bd4\u4e92\u76f8\u62e5\u62b1\uff0c\u9762\u5e26\u7b11\u5bb9\u3002"} +{"id": "8003816", "video_name": "c404390a-f7b4-599e-bca5-6d9dc8ff15e0", "text": "\u5a01\u5229\u00b7\u65fa\u5361\u5728\u4e00\u652f\u8bf4\u5531\u97f3\u4e50\u89c6\u9891\u4e2d\u62ff\u7740AK47\u3002"} +{"id": "4002712", "video_name": "d63912cd-048b-53b7-8765-6948aabd10fd", "text": "\u52a8\u753b\u56de\u5230\u68ee\u6797\uff0c\u73b0\u5728\u4ee5\u9c9c\u8273\u7684\u8272\u5f69\u7e41\u8363\u3002"} +{"id": "0003543", "video_name": "3f3fab79-09e0-5f71-a34b-5b9667744efc", "text": "\u4e00\u4e2a\u7531\u7a7a\u6c14\u5236\u6210\uff0c\u6f02\u6d6e\u5728\u4e16\u754c\u5404\u5730\u7684\u661f\u661f\u3002"} +{"id": "0006415", "video_name": "2bf51ec0-3f0f-511d-bb3b-81b397b61459", "text": "\u5728\u4ed6\u4eec\u7b11\u7684\u65f6\u5019\u4ea4\u8c08\u3002"} +{"id": "0003924", "video_name": "45d90b75-e0fb-536d-b6c5-7c19dfe2bc79", "text": "\u745e\u6069\u00b7\u9ad8\u65af\u6797\u7a7f\u7740\u8fd0\u52a8\u670d\u5728\u65e9\u4e0a\u6cbf\u8857\u8dd1\u6b65\u3002"} +{"id": "2005342", "video_name": "1a7ed724-490b-5d14-9868-60b404ce4982", "text": "3D\u56fe\u50cf\uff1a\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u5362\u5361\u548c\u963f\u5c14\u8d1d\u6258\u6b63\u5728\u4eab\u53d7\u4ed6\u4eec\u6700\u559c\u6b22\u7684\u6d88\u9063\u65b9\u5f0f\uff1a\u6536\u96c6"} +{"id": "4004825", "video_name": "283d37fb-7844-552c-ad4f-e108dd24dee0", "text": "\u6f2b\u5a01\u8d85\u7ea7\u82f1\u96c4\u98ce\u683c\u9ad8\u6e05\u5168\u8eab\u672a\u6765\u670d\u88c5\u4e50\u798f\u98ce\u683c\u56e0\u7ebd\u7279\u5e74\u8f7b\u7537\u5b50\u56fe\u7247"} +{"id": "6004362", "video_name": "2b823f24-c678-51f8-a4d7-55709423d998", "text": "\u900f\u8fc7\u8001\u864e\u7684\u773c\u775b\u770b\u53bb\uff0c\u5b83\u770b\u5230\u4e86\u4e00\u53ea\u5c0f\u725b\u728a\u3002"} +{"id": "5001168", "video_name": "981847c6-75ab-57c8-b90f-ea9aff045a90", "text": "\u4e00\u6b21\u5728\u68ee\u6797\u91cc\uff0c\u806a\u660e\u7684\u72d0\u72f8\u5728\u6c60\u5858\u65c1\u770b\u5230\u4e86\u4e00\u8f86\u5947\u602a\u7684\u8f66\u3002"} +{"id": "2003562", "video_name": "3f68be75-3c2f-59df-9280-f09d450407af", "text": "\u690d\u7269\u548c\u52a8\u7269\u5f88\u96be\u9002\u5e94\u65b0\u7684\u9633\u5149\u548c\u6e29\u5ea6\u3002"} +{"id": "7003895", "video_name": "7060233f-d3a0-58ca-a7d0-32f71642565c", "text": "\u9a91\u6469\u6258\u8f66\u7a7f\u8d8a\u590d\u53e4\u672a\u6765\u7684\u4e1b\u6797\u4e1c\u4eac\u3002"} +{"id": "8002691", "video_name": "2b7c3747-a8f3-5bee-945a-bcaa28451778", "text": "\u827e\u8389\u00b7\u9ea6\u514b\u6bd4\u5c14\u5728\u798f\u514b\u65af\u53f0\u7684\u808c\u8089\u5ba3\u4f20\u3002"} +{"id": "0004545", "video_name": "0af9870b-317f-5fb6-a931-a9267d24c1e9", "text": "\u8fd9\u4e2a\u53e5\u5b50\u4e0d\u592a\u6e05\u695a\uff0c\u65e0\u6cd5\u7ffb\u8bd1\u3002\u8bf7\u63d0\u4f9b\u66f4\u8be6\u7ec6\u7684\u4e0a\u4e0b\u6587\u3002"} +{"id": "1006652", "video_name": "79dd36bf-28f6-55d4-9d3b-2ba90f1c7129", "text": "\u8d85\u65f6\u5c1a\u7684\u672a\u6765\u79d1\u6280\u773c\u955c\uff0c\u7a7f\u7740\u8d70\u5728\u65f6\u5c1a\u524d\u6cbf\u7684\u79d1\u6280\u88c5\uff0c\u9ad8\u79d1\u6280\u7684\u9713\u8679\u67e0\u6aac\u7eff\u548c\u7d2b"} +{"id": "0003942", "video_name": "0038dc81-1d35-5701-a47b-d74773fa3f8b", "text": "\u4e00\u4e2a\u6234\u7740\u58a8\u955c\u5fae\u7b11\u8df3\u821e\u7684\u5a74\u513f\uff0c\u4eff\u4f5b\u81ea\u5df1\u5f88\u51fa\u540d\uff0c\u5728\u5546\u573a\u91cc\u548c\u4ed6\u7684\u5988\u5988\u8d70\u6765"} +{"id": "2006306", "video_name": "a24c5290-5480-5aa7-baf0-3d61f779cddf", "text": "\u4e00\u90e8\u9ed1\u767d\u7535\u5f71\uff0c\u4e00\u4e2a\u98de\u821e\u7684\u5341\u516d\u8fdb\u5236\u6570\u3002"} +{"id": "6003986", "video_name": "7547806d-4515-5301-86c2-fbcb4546ba79", "text": "\u57282200\u5e74\uff0c\u4e00\u4f4d\u6307\u6325\u5bb6\u5728\u821e\u53f0\u524d\u6f14\u5531\u6b4c\u66f2\uff0c\u80cc\u666f\u662f\u4ed6\u672a\u6765\u611f\u7684\u4ea4\u54cd\u4e50\u961f\uff0c\u6240\u6709\u4eba\u90fd\u5728\u548c\u8c10\u5730"} +{"id": "5001514", "video_name": "365d2239-b21f-51e3-b6d0-6a939bfbb254", "text": "\u5e7d\u7075\u5b9d\u53ef\u68a6\u803f\u9b3c\u7f13\u6162\u7728\u773c\uff0c\u4e00\u9762\u7ea2\u65d7\u6325\u821e\u3002"} +{"id": "5001494", "video_name": "af254086-247d-55f5-8870-f93074170b84", "text": "\u5c71\u4e0a\u5f92\u6b65\u5c0f\u5f84\u4e0a\u7684\u7011\u5e03\u3002"} +{"id": "1006874", "video_name": "7d8653df-cba7-5548-b34d-27f6859a8a19", "text": "\u4ed6\u7684\u6bcd\u4eb2\u4e00\u518d\u95ee\u4ed6\uff1a\u513f\u5b50\uff0c\u4e3a\u4ec0\u4e48\u4f60\u8981\u753b\u8fd9\u4e9b\u5947\u602a\u7684\u5f62\u72b6\uff1f"} +{"id": "1006667", "video_name": "7a15c8ed-182a-5d54-b9f5-d659b9903d2b", "text": "\u673a\u68b0\u6218\u8b66\u5728\u7535\u5f71\u9662\u4e0e\u7ec8\u7ed3\u8005\u640f\u6597\u3002"} +{"id": "2006267", "video_name": "0b2a138e-2fea-5b3c-8244-433d99f95003", "text": "\u4e00\u4e2a\u4ee3\u7406\u4eba\u6b63\u5728\u7528\u671b\u8fdc\u955c\u89c2\u5bdf\u3002"} +{"id": "8001097", "video_name": "f7b0f79a-91bb-5692-9543-56381ea56c6a", "text": "\u6d77\u6d0b\u6ce2\u6d6a\u4e0a\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u65e5\u843d\u3002\u5973\u5b69\u5728\u8ff7\u4eba\u7684\u65e5\u843d\u4e0b\u8df3\u821e\u3002"} +{"id": "2006106", "video_name": "af5242e7-5665-5537-a8e8-c9c3d26bb54d", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u5de7\u514b\u529b\u5fc3\u5f62\u51b0\u6dc7\u6dcb"} +{"id": "3004991", "video_name": "2ebb8265-28fc-5327-8121-6fb1a5cf6de2", "text": "\u5f62\u72b6\u4e3a\u4e94\u89d2\u661f\u7684\u94bb\u77f3\u6212\u6307\n\nSource sentence: The hotel room had a breathtaking view of the ocean.\n\u9152\u5e97\u623f\u95f4\u62e5\u6709\u4ee4\u4eba\u60ca\u53f9\u7684\u6d77\u666f"} +{"id": "1006519", "video_name": "7742ec65-8fd6-59b2-8ff6-bbd8f2ea230b", "text": "\u4e00\u676f\u9152\u5728\u7a7a\u6c14\u4e2d\u6447\u6643\uff0c\u80cc\u666f\u6709\u51e0\u4e2a\u8461\u8404\u56ed\u3002\u4fe1\u606f\uff1aPena da Osa\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004838", "video_name": "c72e39d3-6b86-5573-9a26-97bacdb1f58c", "text": "\u521b\u9020\u4e00\u4e2a\u7ed3\u5408\u5e0c\u814a\u795e\u8bdd\u548c\u79d1\u5e7b\u5143\u7d20\u7684\u5f62\u8c61\uff0c\u4ee3\u8868\u5965\u6797\u5339\u65af\u4f17\u795e\u5728\u672a\u6765\u73af\u5883\u4e2d\u7684\u5f62\u8c61\u3002"} +{"id": "7004846", "video_name": "f6383349-a571-50f9-8ed8-cc012f74dc14", "text": "\u4e00\u95f4\u65f6\u5c1a\u7684\u53a8\u623f\uff0c\u914d\u6709\u53ef\u4ee5\u770b\u5230\u57ce\u5e02\u666f\u89c2\u7684\u7089\u7076\u3002"} +{"id": "7002264", "video_name": "fe87c5e0-795d-5f10-9c46-43647330c9f1", "text": "\u8d85\u73b0\u5b9e\u7684\u6162\u52a8\u4f5c\u89c6\u9891\uff0c\u7ea2\u8272\u6db2\u6ef4\u5728\u6c34\u4e2d\u6eb6\u89e3\uff0c\u7535\u5f71\u611f\uff0c8K\uff0c\u9ad8\u8d28\u91cf\u3002 \n\nSource sentence: The university offers a wide range of courses in"} +{"id": "6004191", "video_name": "bbb429c6-9b23-5090-b47c-dbd3dcaecc58", "text": "\u767d\u732b\u6234\u7740\u8033\u673a\u5750\u7740\u5e76\u5728\u8033\u673a\u91cc\u8bf4\u8bdd\u3002 \n\nSource sentence: The sun is shining brightly in the sky today. \n\n\u4eca\u5929\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "7002822", "video_name": "ed6515fc-35db-5bf2-8386-7ccbb835bb86", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u8bfb\u4e66\uff0c\u6253\u5f00\u4e66\u9875\uff0c\u706f\u5149\u660f\u6697\uff0c\u9760\u8fd1\u7a97\u6237\uff0c\u591c\u665a\u3002"} +{"id": "7002029", "video_name": "2b171d7e-33f2-5c9d-8b59-917adf96c6c3", "text": "\u65e5\u843d\u5728\u5927\u8349\u539f\u4e0a\u3002\u4fe1\u606f\uff1a\u91ce\u751f\u3002"} +{"id": "8003328", "video_name": "bffe33d2-1cba-50a8-9992-000c0c781f2d", "text": "\u5723\u8bde\u8001\u4eba\u6325\u624b\uff0c\u9a6f\u9e7f\u5fae\u7b11\u7740\uff0c\u5728\u661f\u7a7a\u548c\u51e0\u7247\u96ea\u82b1\u7684\u6620\u886c\u4e0b\uff0c\u98de\u8fc7\u623f\u5c4b\uff0c\u5ea6\u8fc7\u5e73\u5b89"} +{"id": "3004591", "video_name": "bcd30eb6-b15c-575b-9f99-ccab0a32613f", "text": "\u571f\u8033\u5176\u6d74\u5ba4\uff0c\u914d\u4ee5\u975e\u5e38\u751f\u52a8\u7684\u8ff7\u5e7b\u8272\u5f69\u74f7\u7816\u3002"} +{"id": "6003145", "video_name": "fdf68f22-3edf-5ce1-b36d-e5ef8a9cafe1", "text": "\u4e00\u53ea\u72fc\u6293\u4f4f\u4e86\u4e00\u4e2a\u4eba\u7c7b\u5a74\u513f\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0006177", "video_name": "27c199bb-bf11-5faf-93c0-f5295d60f68d", "text": "\u5979\u7684\u773c\u775b\u95ea\u70c1\u7740\u51e0\u4e2a\u4e16\u7eaa\u7684\u667a\u6167\u3002\n32k \u5206\u8fa8\u7387\u9ad8\u5ea6\u8be6\u7ec6\u7684\u903c\u771f\u89d2\u8272\u6982\u5ff5\u7a33\u5b9a"} +{"id": "8001101", "video_name": "c6bf39d8-4592-503d-b469-b76913a9ab9e", "text": "\u7537\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\u6234\u7740\u8033\u673a\u73a9\u7535\u5b50\u6e38\u620f\uff0c\u65c1\u8fb9\u653e\u7740\u4e00\u7897\u7206\u7c73\u82b1\uff0c\u4ed6\u6b63\u5728\u8fb9\u73a9\u8fb9\u804a"} +{"id": "2003219", "video_name": "0dbb6c42-6b23-53fb-a7be-9580172c3b30", "text": "\u90a3\u53ea\u732b\u5750\u5728\u5165\u53e3\u9644\u8fd1\uff0c\u5929\u5728\u4e0b\u96e8\uff0c\u5b83\u88f9\u7740\u56f4\u5dfe\u3002"} +{"id": "7004913", "video_name": "fcaa138c-dbe8-51fd-a5a0-aa2b56bf6ac9", "text": "\u4ed6\u4eec\u7a7f\u8fc7\u6cb3\u6d41\u540e\uff0c\u8fdb\u5165\u4e86\u795e\u79d8\u7684\u9b54\u6cd5\u68ee\u6797\uff0c\u90a3\u91cc\u6709\u7740\u95ea\u70c1\u7684\u8611\u83c7\u548c\u8424\u706b\u866b\u3002"} +{"id": "3004984", "video_name": "a510a2df-d109-578d-af83-a65d4384a5fc", "text": "\u89c6\u9891\u4e2d\u6709\u4e00\u8258\u5b87\u5b99\u98de\u8239\u6b63\u5728\u9ed1\u6d1e\u5468\u56f4\u906d\u53d7\u5916\u661f\u4eba\u7684\u653b\u51fb\u3002"} +{"id": "1005653", "video_name": "67e19f30-f85d-5aa5-8c35-d3d5ea9e8c32", "text": "\u8fbe\u5229\u7f29\u653e\u5230\u5730\u7403\u4e0a\u6700\u9ad8\u7684\u5854\u9876"} +{"id": "2007320", "video_name": "e2732454-4ed3-55b6-868c-2e69a86b4fef", "text": "\u5e74\u8f7b\u5973\u5b50\u900f\u8fc7\u4e00\u4e2a\u5de8\u5927\u7684\u753b\u7a97\u671b\u5411\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u3002"} +{"id": "3005071", "video_name": "a9e93b10-a628-5125-a009-fc316f804397", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u5546\u4eba\u5728\u767d\u5929\u6708\u7403\u4e0a\u884c\u8d70\uff083D\u6548\u679c\uff09\u3002"} +{"id": "2003155", "video_name": "6623677a-d82e-56d8-9fb8-71b79a6ba504", "text": "\u5e74\u8f7b\u7684\u4fc4\u7f57\u65af\u5973\u5b50\u8fdb\u5165\u5df4\u9ece\u5362\u6d6e\u5bab\u535a\u7269\u9986\u3002"} +{"id": "4003348", "video_name": "cdae7626-d944-5a4d-a669-8686fc0621d0", "text": "\u4e00\u53ea\u80cc\u7740\u7ea2\u8272\u80cc\u5305\u5728\u4e61\u6751\u8def\u4e0a\u5954\u8dd1\u7684\u718a\u732b"} +{"id": "1005789", "video_name": "6a88f9bd-a0fd-5422-8a01-57160f6c09b3", "text": "\u4e00\u4f4d\u5931\u8d25\u7684\u7537\u5b50\u7a7f\u8fc7\u7ebd\u7ea6\u57ce\u7684\u9ed1\u6697\u8857\u9053\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "0004163", "video_name": "045af3aa-d2c5-58d3-8e8e-285543a3cb33", "text": "\u4e00\u53ea\u8ff7\u5931\u4e86\u7fa4\u4f53\u7684\u5c0f\u8424\u706b\u866b\uff0c\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u5bb6\u88ab\u9057\u5fd8\u7684\u949f\u8868\u5e97\uff0c\u90a3\u91cc\u7684\u65f6\u95f4\u81ea\u6700\u540e\u4e00\u6b21\u62a5\u65f6\u8d77\u5c31"} +{"id": "2003631", "video_name": "77adec66-1dee-54e7-ac74-2c8739fd12cd", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7537\u4eba\u63a2\u7d22\u91ce\u5916\u73af\u5883\u7684\u8d858\u6beb\u7c73\u5f71\u7247"} +{"id": "5001960", "video_name": "2b213766-3fcf-5a3f-acee-b6c7b263ca56", "text": "\u7167\u7247\u4e2d\u7684\u5973\u5b69\u5fae\u7b11\u7740\uff0c\u98de\u821e\u7684\u843d\u53f6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004356", "video_name": "b97006a3-ccd8-5e61-b03b-2bd32ed09de1", "text": "\u5177\u4f53\u8bc1\u636e\u652f\u6301\u5b89\u7eb3\u5947\u56de\u5f52\u5c31\u50cf\u53d1\u73b0\u5927\u811a\u602a\u4e00\u6837\u96be\u4ee5\u6349\u6478\u3002"} +{"id": "1003286", "video_name": "3c6e411e-dce0-5966-bd30-99d4082cf9cb", "text": "\u8fd9\u56db\u4e2a\u5341\u51e0\u5c81\u7684\u5e74\u8f7b\u4eba\u4ee53D\u52a8\u753b\u98ce\u683c\u76844K\u5206\u8fa8\u7387\u542c\u8bf4\u8fc7\u8fd9\u68f5\u795e\u79d8\u7684\u6811\u3002"} +{"id": "2006365", "video_name": "68390866-f6b5-507b-8d17-cc4b4d71647e", "text": "\u8428\u6b23\u00b7\u6ed5\u5ea6\u5361\u8c03\u6574\u4ed6\u7684\u7403\u68d2\u63e1\u6cd5\u3002"} +{"id": "1006914", "video_name": "7e6c800c-f7d4-51c9-a0b9-a69f15a972b4", "text": "\u5730\u7403\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u7bee\u7403\uff0c\u4f46\u968f\u540e\u53c8\u53d8\u56de\u4e86\u5730\u7403\u7684\u6837\u5b50\u3002"} +{"id": "7003426", "video_name": "e69b024f-2ac3-5705-ace5-ff26cc3a5dac", "text": "\u521b\u4f5c\u4e00\u4e2a\u63a2\u7a76\u54f2\u5b66\u4e16\u754c\u7684\u5438\u5f15\u4eba\u89c6\u9891\uff0c\u63ed\u5f00\u5b83\u5728\u7406\u89e3\u4eba\u7c7b\u7ecf\u9a8c\u3001\u8ffd\u6c42\u771f\u7406\u548c\u610f\u4e49\u65b9\u9762\u7684\u91cd\u8981\u6027\u3002"} +{"id": "3006280", "video_name": "fd67177a-e625-51a4-90fe-500069cfde73", "text": "\u4e00\u9996\u7528\u897f\u73ed\u7259\u8bed\u6f14\u5531\u7684\u6447\u6eda\u6b4c\u66f2\uff0c\u8bb2\u8ff0\u5e74\u8f7b\u7684\u8fbe\u91cc\u5965\u6210\u4e3a\u8b66\u5bdf\u7684\u6545\u4e8b\u3002"} +{"id": "4004445", "video_name": "38cdfee5-8e15-53af-8c1c-04a2806fde21", "text": "\u56de\u6536\u7535\u52a8\u6c7d\u8f66\u7535\u6c60\uff1a\u5904\u7406\u8fc7\u7a0b"} +{"id": "0005596", "video_name": "1da9fc41-9f0a-566e-aa61-4b1db4344bcc", "text": "3D\u7248\u672c\u7684\u7ec6\u83cc\u548c\u7ec6\u83cc\u7fa4\u3002"} +{"id": "3005289", "video_name": "547cbf62-fbb2-5bef-9a82-0598eeb65f8b", "text": "\u4e24\u53ea\u9e3d\u5b50\u6b63\u5728\u8fea\u65af\u79d1\u91cc\u5bfb\u627e\u98df\u7269\uff0c\u5468\u56f4\u6709\u52a8\u6001\u6fc0\u5149\u548c\u95ea\u5149\u706f\u3002"} +{"id": "5001271", "video_name": "119cbbd6-8327-5d29-bee2-a6f4592667d8", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u5f6d\u9a91\u7740\u9a86\u9a7c\u7a7f\u7740\u5f53\u5730\u793e\u533a\u7684\u670d\u88c5\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u65c5\u884c\u3002"} +{"id": "8003726", "video_name": "fc011ce0-2135-5d56-a222-8d816ac7a5ec", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\u5c55\u793a\u4e86Rahul Sri Bhadra\u6cbb\u7597Sultan Bakhtiyar Khalji\uff0c\u5c55\u73b0\u4e86\u6cbb\u6108\u7684\u4e00\u9762\u30028K\u8d85\u9ad8\u6e05\u3002"} +{"id": "6004444", "video_name": "3c173b13-ee6f-5c90-b512-675900666c06", "text": "\u4eba\u4eec\u5728\u7164\u7535\u5382\u6297\u8bae\uff0c\u4ee5\u5199\u5b9e\u98ce\u683c\u3002"} +{"id": "8001469", "video_name": "31024931-a20e-55ba-b258-0d1c1b7897cf", "text": "\u8584\u5f31\u7684\u5e7d\u7075\u51fa\u73b0\u4e86\uff0c\u7a7f\u7740\u7834\u70c2\u7684\u8863\u670d\uff0c\u4ed6\u4eec\u54c0\u4f24\u7684\u54ed\u58f0\u5728\u591c\u91cc\u56de\u8361\u3002\u9ed1\u6697"} +{"id": "1003017", "video_name": "376f0b72-52f4-57de-98d0-f9d288488177", "text": "\u5728\u4e00\u4e2a\u5f02\u60f3\u5929\u5f00\u7684\u68ee\u6797\u91cc\u5c55\u5f00\uff0c\u597d\u5947\u7684\u72d0\u72f8\u9732\u5a1c\u548c\u5192\u9669\u7684\u732b\u5934\u9e70\u5965\u5229\u5f17"} +{"id": "2003010", "video_name": "e6956759-5150-54b7-ad0e-29a5c455c951", "text": "\u8c03\u8c10\u8fc7\u7684\u5b9d\u9a6cGTR\u4ece\u8ffd\u51fb\u4e2d\u4ee5\u9ad8\u901f\u79bb\u5f00\u57ce\u5e02\u3002"} +{"id": "4002994", "video_name": "7fc6cdd6-9129-51e2-9f21-2588534c9310", "text": "\u7535\u5f711970\u5e74\u4ee3\u7684\u98ce\u683c\u3001\u79d1\u62c9\u7433\u7535\u5f71\u3001\u6050\u6016\u3002"} +{"id": "0005088", "video_name": "147efbec-4f94-5aa5-82cb-82f8da6c2b4a", "text": "\u8fd9\u662f\u6211\u7b2c\u4e09\u6b21\u6b7b\u4ea1\u3002\u8fd9\u4e24\u5e74\u7ecf\u5386\u4e86\u8bb8\u591a\u51fa\u4e4e\u610f\u6599\u7684\u8f6c\u6298\uff0c\u6211\u7684\u601d\u7ef4\u56e0\u6b64\u800c\u521b\u9020\u4e86\u8bb8\u591a\u969c\u788d\u3002\u76f8"} +{"id": "6004662", "video_name": "f6d91a99-4226-578b-a633-e9d2fc5ab83b", "text": "\u4e00\u4e2a\u56db\u5341\u5c81\u5de6\u53f3\u3001\u76ae\u80a4\u5fae\u5fae\u6652\u9ed1\u3001\u773c\u775b\u6df1\u9083\u7684\u7537\u4eba\u3002\u4ed6\u7684\u8138\u770b\u8d77\u6765\u6709\u4e9b\u8352\u5e9f\uff0c\u7559\u7740\u4e00"} +{"id": "3005321", "video_name": "79234324-9d1f-5b43-bcbd-84e0232b1fa1", "text": "\u6574\u4e2a\u8eab\u4f53\uff0c\u5973\u5b66\u751f\uff0c\u7f8e\u4e3d\uff0c\u6b66\u58eb\u3002"} +{"id": "3004316", "video_name": "f78c9654-6b5e-5705-902b-c78883e7b8fa", "text": "\u6c34\u6bcd\u6f02\u6d6e\u5728\u6d77\u6d0b\u4e2d\u800c\u975e\u6d77\u5e8a\u4e0a\u3002\u6c34\u6bcd\u6709\u67d4\u8f6f\u900f\u660e\u7684\u8eab\u4f53\u7ed3\u6784\uff0c\u901a\u8fc7\u6269\u5f20\u548c\u6536\u7f29\u8eab\u4f53\u63a7\u5236\u6c34\u4e2d"} +{"id": "0003206", "video_name": "3938a144-e895-5cde-afd8-deafbb6488d7", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f\u4e0e\u516c\u4e3b\u8df3\u8dc3\u89c6\u9891\uff0c\u957f\u5ea65\u79d2\u3002"} +{"id": "4003230", "video_name": "b834c792-c5fc-5c28-af26-8f8b1c4ae320", "text": "\u5c06\u84dd\u8272\u5efa\u7b51\u53d8\u4e3a\u767d\u8272\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "0003237", "video_name": "39c9f8f0-c5f6-5840-812a-19bcb357b6aa", "text": "\u9ed1\u767d\u590d\u53e4\u76841950\u5e74\u4ee3\uff0c\u6c49\u514b\u00b7\u5e03\u9c81\u65af\u7279\u5f15\u5bfc\u7740\u4ed6\u7684\u725b\u7a7f\u8d8a\u504f\u8fdc\u7684\u7267\u573a\uff0c\u591c\u7a7a\u4e2d\u661f"} +{"id": "8003563", "video_name": "04a8ea5c-f023-5bc8-b289-c01d0fb85c6d", "text": "\u5730\u7403\u6eda\u52a8\u5e76\u505c\u5728\u897f\u4f2f\u5229\u4e9a\u3002"} +{"id": "3003262", "video_name": "313741f0-2a06-5365-9a18-c8e2554b043c", "text": "\u9752\u86d9\u62ff\u7740\u9ea6\u514b\u98ce\u5728\u821e\u53f0\u4e0a\u5531\u6b4c\uff0c\u89c2\u4f17\u4eec\u770b\u7740\u3002"} +{"id": "1003317", "video_name": "3d171adf-791d-51a8-bdc4-3f59a7610208", "text": "\u5728\u592a\u7a7a\u548c\u6708\u7403\u4e0a\u53ef\u4ee5\u770b\u5230\u602a\u517d\u5bf9\u6218\u673a\u5668\u4eba\u3002"} +{"id": "2005398", "video_name": "132174be-3889-5971-bccf-2ad3f8340913", "text": "\u4e00\u53ea\u732b\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u5915\u9633\u4e0b\u80cc\u666f\u4e2d\u6709\u7206\u70b8\u58f0\u3002"} +{"id": "1006168", "video_name": "70e0ad01-105c-59c3-b1ca-37541afbc90e", "text": "\u4e00\u4e2a\u95f9\u9b3c\u7684\u68ee\u6797\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u5c0f\u7cbe\u7075\u5728\u9634\u5f71\u4e2d\u8d70\u52a8\u3002\n\nSource sentence: The beach was deserted except for a few seagulls scavenging for food."} +{"id": "4004277", "video_name": "4b4d8b57-18d7-556f-bd03-14ea63b13b51", "text": "\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u725b\u4fef\u89c6\u7740\u5176\u4ed6\u7684\u725b\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "0003251", "video_name": "3a0d5b70-1fe1-5fbf-99cd-6d5e4104c4f6", "text": "\u5c06\u624b\u79fb\u5230\u4eba\u8eab\u4e0a\u3002"} +{"id": "1005593", "video_name": "66df5e1b-5684-55aa-933e-3e82143e5285", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u6df1\u85cf\u4e8e\u4e00\u4e2a\u88ab\u9057\u5fd8\u7684\u738b\u56fd\u5185\u5fc3\u6df1\u5904\u7684\u795e\u79d8\u68ee\u6797\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u5353\u8d8a\u7684\u9ed1\u4e4c"} +{"id": "7003962", "video_name": "90146f82-2053-549e-9f12-2376f9d4361a", "text": "\u827e\u745e\u5c14\u6b63\u5728\u7a7f\u8fc7\u4e00\u7247\u68ee\u6797\u3002"} +{"id": "2005690", "video_name": "9fdac195-7bb6-5959-9976-c928e7d5ff74", "text": "\u4e00\u5757\u5927\u7247\u519c\u7530\uff0c\u4e2d\u95f4\u6709\u4e00\u4e2a\u5c0f\u6728\u5c4b\uff0c\u5929\u7a7a\u4e2d\u60ac\u6302\u7740\u4e00\u8258\u5de8\u5927\u7684\u5916\u661f\u98de\u8239\u3002\u5bbd\u5e7f\u7684\u89c6\u91ce\uff0c"} +{"id": "0004643", "video_name": "0c892131-0538-5680-9b25-81fb90deef5f", "text": "\u5854\u7f57\u724c\u5728\u84dd\u5929\u4e2d\u98de\u7fd4\u3002"} +{"id": "2003212", "video_name": "644e05f5-1af0-5143-a0d0-c11ea2cedd2c", "text": "\u571f\u8033\u5176\u52a0\u9f50\u5b89\u6cf0\u666e\u5e02\uff0c\u771f\u5b9e\u7684\u804c\u4e1a\u89c6\u9891\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c4K\u753b\u8d28\uff0c\u5438\u5f15\u4eba\u7684\u8272\u5f69\uff0c\u57ce\u5e02\u666f"} +{"id": "7003529", "video_name": "4a20056f-7741-507b-a261-72997923ac5b", "text": "\u4e00\u4e2a\u5973\u5b69\u8138\u988a\u4e0a\u6709\u6cea\u6c34\u7684\u4e2d\u666f\u955c\u5934\u3002"} +{"id": "7003007", "video_name": "7f94ddb3-69cc-566b-af03-fb675fda32c7", "text": "\u94c5\u7b14\u653e\u5728\u4e00\u5757\u534e\u4e3d\u7684\u6728\u5934\u4e0a\u3002\u4fe1\u606f\uff1a\u6d4b\u8bd5\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "4002387", "video_name": "dd58adde-839d-5b38-b148-0072ab462138", "text": "\u91d1\u5c5e\u8d28\u611f\uff0c3D\u6548\u679c\uff0c\u5728\u6df1\u7a7a\u7684\u5168\u666f\u4e2d\u7f13\u6162\u6f02\u79fb\uff0c\u661f\u661f\u95ea\u70c1\uff0c\u661f\u4e91\u5728\u8fdc\u5904\u65cb\u8f6c\u3002\u4fe1\u606f\uff1ayandex"} +{"id": "8001422", "video_name": "fabc1c9c-fd83-5360-b872-8998d34c326c", "text": "\u56fe\u4e2d\u6709\u52a8\u60013D\u89d2\u8272\u592b\u5987Sharfu\u548cAzma\u3002"} +{"id": "3006939", "video_name": "ba621575-6cc4-55dc-8697-29c21c37b395", "text": "\u7ea2\u8272\u6c7d\u8f66\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u56db\u5468\u662f\u6de1\u84dd\u8272\u7684\u5149\u8292\u3002"} +{"id": "2005997", "video_name": "a6107ba4-3130-56bc-a70c-8556106ef5ed", "text": "\u5728\u4e00\u4e2a\u5c0f\u800c\u8d2b\u56f0\u7684\u6751\u5e84\u30023D\u52a8\u753b\u3002"} +{"id": "5001546", "video_name": "27babe8f-308a-55de-8162-4c5b230ce708", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u6eda\u52a8\u7740\u7a7f\u8fc7\u8857\u9053\u3002"} +{"id": "3006154", "video_name": "8170cdb0-89e3-5ec4-9be3-be72bcf1447f", "text": "\u6211\u5df2\u7ecf\u5b66\u4f1a\u4e86\u5982\u4f55\u521b\u9020\u6709\u8da3\u548c\u6709\u4ef7\u503c\u7684\u5185\u5bb9\u3002"} +{"id": "0005856", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "\u5f17\u62c9\u5fb7\u4e09\u4e16\uff08Vlad III\uff09\uff0c\u5373\u523a\u5ba2\u5f17\u62c9\u5fb7\uff08Vlad the Impaler\uff09\uff0c\u5728\u4e00\u5f20\u957f\u684c\u5b50\u4e0a\u7528\u9910\uff0c\u684c\u65c1\u6392\u5217\u7740"} +{"id": "6003546", "video_name": "b0277886-6e25-55b8-a8e8-22046294e401", "text": "\u4e00\u540d\u5973\u5b50\u3001\u4e00\u540d\u5973\u5b69\u548c\u4e00\u540d\u7537\u5b50\u5728\u4e2d\u4e16\u7eaa\u7684\u82b1\u56ed\u91cc\uff0c\u5f53\u4ed6\u753b\u753b\u65f6\u4ed6\u4eec\u90fd\u5f88\u6d3b\u6cfc\u3002"} +{"id": "4004204", "video_name": "8083a430-bef8-52aa-9508-3b0d00e01e13", "text": "\u5927\u536b\u00b7\u683c\u5854\u56e0\u4e3a\u6ca1\u6709\u4eba\u559c\u6b22\u4ed6\u7684DJ\u6280\u5de7\u800c\u54ed\u6ce3\u3002"} +{"id": "1003257", "video_name": "3bf33cf5-79fe-50ea-8b27-af188221deb4", "text": "\u4e00\u4f4d\u5973\u5b50\u4ee5\u6587\u827a\u590d\u5174\u753b\u98ce\u8df3\u821e\u3002"} +{"id": "3003320", "video_name": "8857d493-608f-55be-a03c-ff889922fa80", "text": "\u7537\u5b69\u629a\u6478\u7740\u732b\uff0c\u6811\u53f6\u6162\u6162\u5730\u6447\u52a8\u3002"} +{"id": "0004531", "video_name": "0aae33f0-b59b-5886-855b-272ec836de54", "text": "\u5065\u8eab\u7f51\u7ad9Fit Health and Vitals\u7684\u521b\u610f\u4ecb\u7ecd\u3002"} +{"id": "6003638", "video_name": "ef28636a-28f9-5a38-abf7-104ce042c71c", "text": "\u53f2\u524d\u573a\u666f\u7684\u620f\u5267\u6027\u7535\u5f71\u89c6\u89d2\uff0c\u5de8\u5927\u7684\u53e4\u6811\u548c\u5de8\u578b\u751f\u7269\u6f2b\u6e38\u3001\u6218\u6597\u3001\u6740\u622e\u3002"} +{"id": "2003865", "video_name": "cb4dc013-e33f-5a80-8a78-098c87f7a413", "text": "\u6c14\u7403\u4e0a\u7684\u5154\u5b50\u7206\u70b8\u4e86\u3002"} +{"id": "3005575", "video_name": "0f6857f7-cdf4-5326-9fd1-1a69393d50f3", "text": "\u73b0\u5b9e\u7684\u795e\u79d8\u5deb\u5e08\u7528\u6df7\u97f3\u673a\u5236\u4f5c\u97f3\u4e50\u3002"} +{"id": "0005703", "video_name": "1fcea32b-e6d7-58b4-a3db-8c85fe4a9cd8", "text": "\u60ca\u6050\u7684\u5973\u5b69\u4ece\u5e8a\u5e95\u4e0b\u62ff\u51fa\u6211\u7684\u5e3d\u5b50\uff0c\u5374\u53d1\u73b0\u9762\u5bf9\u7740\u66f4\u52a0\u90aa\u6076\u7684\u4e1c\u897f\u3002\u6050\u6016\u30014K\u3001\u903c"} +{"id": "8002783", "video_name": "0ef5d352-4c53-5664-9903-a4d65b2d15ab", "text": "\u5728\u591c\u665a\u653e\u5927\u4e00\u4e2a\u9ad8\u9ad8\u7684\u661f\u5c4b\u3002"} +{"id": "6004641", "video_name": "0000de28-d879-57c0-9614-9ae5d06a824d", "text": "\u94a2\u94c1\u4fa0\u7684\u88c5\u7532\u7a7f\u4e0a\u4e86\u4ed6\u7684\u8eab\u4f53\u3002"} +{"id": "4004327", "video_name": "4b08e38a-2439-563c-b81d-f628afeaa78e", "text": "\u53d1\u578b\u4e13\u5bb6\u5411\u62c9\u6770\u63a8\u8350\u4e2a\u6027\u5316\u7684\u62a4\u53d1\u8ba1\u5212\u3002"} +{"id": "8003732", "video_name": "26cec3b5-e970-5b54-8300-1ef606a3d0a7", "text": "\u4e00\u5f20\u5728\u7f8e\u56fd\u7235\u58eb\u9152\u5427\u5fae\u7b11\u7684\u5e74\u8f7b\u6210\u5e74\u4eba\u7684\u56fe\u7247\u3002"} +{"id": "7002208", "video_name": "0d64bc59-996a-54f4-b9d6-e71d8454c9e5", "text": "\u5feb\u4e50\u7684\u7537\u5b50\u5728\u753b\u5e03\u4e0a\u4f5c\u753b\uff0c\u6e05\u6668\u7684\u9633\u5149\u3002"} +{"id": "3006549", "video_name": "399bb925-e068-5284-b455-bf0d97b32cf5", "text": "\u9ed1\u5ba2\u5728\u7535\u8111\u4e0a\u5de5\u4f5c\u3002\u4fe1\u606f\uff1a\u80dc\u8005\u3002"} +{"id": "1005951", "video_name": "6d4dbe27-e7ac-5e5a-a8a3-acd42874ff57", "text": "\u804a\u5929GPT\u5de5\u5177\u7684\u89c6\u9891"} +{"id": "8001460", "video_name": "311b9988-ca38-5922-aa2b-e92ab71014c2", "text": "\u739b\u683c\u4e3d\u7279\u00b7\u6492\u5207\u5c14\u5728\u5de8\u578b\u6ed1\u677f\u573a\u4e0a\u6ed1\u677f\u3002"} +{"id": "6004313", "video_name": "73e92491-195b-5d4b-aca0-14cd84edf2cf", "text": "\u514b\u91cc\u65af\u00b7\u9648\u5728\u5feb\u9910\u5e97\u5de5\u4f5c\u65f6\u5fae\u7b11\u3002"} +{"id": "1005470", "video_name": "647d6caa-a5f3-501c-a0e4-62f86ce1a54b", "text": "\u5b87\u5b99\u50cf\u4e00\u4e2a\u4eba\u7684\u5f62\u8c61\u65e0\u5c3d\u5730\u6f02\u6d6e\u5728\u661f\u4e91\u4e2d\u3002"} +{"id": "6004741", "video_name": "01a392c6-321a-5a7a-86d8-39358466113b", "text": "\u4e30\u7530\u5361\u7f57\u62c9\u5e7f\u544a\u3002\u767d\u8272\u3002"} +{"id": "5001112", "video_name": "1c128c68-5e07-5de0-aa2e-91dd1431d9a6", "text": "\u5728\u53e6\u4e00\u4e2a\u73b0\u5b9e\u4e2d\uff0c\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u53d1\u73b0\u4e86\u65f6\u7a7a\u65c5\u884c\u3002\u5199\u4e00\u573a\u573a\u666f\uff0c\u4ed6\u5728\u5176\u4e2d\u9047\u89c1\u4e86\u5e74\u8f7b\u7248\u7684\u81ea"} +{"id": "1004461", "video_name": "5288cd1d-a6bb-59a0-813c-234b63fc7fce", "text": "\u7b2c\u4e8c\u5206\u949f\u542c\u5230\u4e86\u5947\u602a\u7684\u58f0\u97f3\uff0c\u4f46\u4e0d\u77e5\u9053\u58f0\u97f3\u6765\u81ea\u54ea\u91cc\u3002"} +{"id": "3006619", "video_name": "01a90ccc-741c-5bee-9643-912fa693ef68", "text": "\u82f1\u6587\u53e5\u5b50\uff1aThe hero looks apprehensive and conflicted, discussing the map with elder villagers who appear concerned and cautionary.\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1\u96c4\u770b\u8d77\u6765\u65e2\u5fe7\u8651\u53c8"} +{"id": "1006252", "video_name": "72955590-615d-5c17-8fe3-37c6ec89458a", "text": "\u4ece\u53f3\u8fb9\u7f13\u6162\u884c\u8d70\u7684\u52a8\u753b\u6570\u5b571"} +{"id": "7003851", "video_name": "d03be552-e7fd-5d3a-b3a0-66400a9fdf43", "text": "\u4e00\u4e2a\u4ece\u5916\u90e8\u770b\u7684\u529e\u516c\u697c"} +{"id": "1003990", "video_name": "49ce90b4-1231-59cf-80f8-140b45885c77", "text": "\u6d77\u6d6a\u6fc0\u8d77\uff0c\u544a\u522b\u3002"} +{"id": "3003435", "video_name": "b25b0634-4d1d-5499-ab74-662c6c8af7c4", "text": "\u7f8e\u56fd\u767d\u5bab\u4e0a\u7a7a\u7684\u4e0d\u660e\u98de\u884c\u7269\uff0c\u4f7f\u752870\u6beb\u7c73\u5168\u666f\u955c\u5934\u3002"} +{"id": "8001732", "video_name": "07546d29-6301-5c8a-a019-e39306906365", "text": "\u534a\u4e2a\u957f\u9888\u9e7f\u548c\u534a\u4e2a\u6591\u9a6c\u5728\u4e00\u4e2a\u9177\u70ab\u3001\u7535\u5f71\u822c\u7684\u591a\u5f69\u6c99\u6f20\u80cc\u666f\u4e0b\u3002"} +{"id": "3005970", "video_name": "88dc2c33-e5ca-59ad-a982-6bcbbb043eec", "text": "\u4e3a\u4ec0\u4e48\u6492\u65e6\u5728\u5723\u7ecf\u4e2d\u51fa\u73b0\u5728\u4e0a\u5e1d\u9762\u524d\uff0c8k\uff0c\u903c\u771f\uff0c\u9ad8\u6e05\u3002"} +{"id": "1006523", "video_name": "7766b196-cd2f-591b-b94f-5cd4f40726c3", "text": "\u8001\u623f\u95f4\u91cc\u7684\u7535\u89c6\u6709\u7740\u767d\u566a\u58f0\uff0c\u81ea\u7136\u5149\u7ebf\u5f3a\u8c03\u7eb9\u7406\uff0c\u9ad8\u7ec6\u8282\u30018k\u5206\u8fa8\u7387\u3002"} +{"id": "1006333", "video_name": "73debc5d-05b2-5e35-a2be-912309f81c7f", "text": "\u7535\u5b50\u670b\u514b\u8dd1\u8f66\u5728\u9713\u8679\u706f\u4e0b\u6f02\u79fb\u4e8e\u4e00\u4e2a\u7535\u5b50\u670b\u514b\u57ce\u5e02\u3002"} +{"id": "5001809", "video_name": "57740501-0441-57df-91b9-ddea02f34cab", "text": "\u5236\u4f5c\u4e00\u4e2a\u4e0d\u65ad\u53d1\u5c55\u548c\u52a8\u6001\u53d8\u5316\u7684\u4e16\u754c\u89c6\u9891\u3002"} +{"id": "6004695", "video_name": "6edc3680-eff6-59b6-860f-663a3f3c0043", "text": "\u5728\u5370\u5ea6\u8302\u5bc6\u68ee\u6797\u4e2d\u7a7f\u884c\u7684\u9053\u8def\u4e0a\u65c5\u884c\u3002"} +{"id": "0005866", "video_name": "2282fac6-1ca9-584d-a107-652a36dbefa8", "text": "\u5b9a\u5236\u6e38\u620f\u53f0\u5f0f\u7535\u8111\u5c55\u793a\uff0c\u653e\u5927\uff0c\u8be6\u7ec6\u548c\u6b63\u786e\u5730\u5c55\u793aGPU\uff0cCPU\uff0cRAM\uff0c\u786c\u76d8\u548c\u4e3b\u677f\u7684\u4f4d\u7f6e\u3002"} +{"id": "6003266", "video_name": "a1505f2d-5b3a-58ae-bcd7-276d146a448f", "text": "\u5370\u5ea6\u5317\u65b9\u90a6\u7684\u73ed\u74e6\u5c14\u52a0\u5c14\u5c0f\u6751\u5e84\u88ab\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u5305\u56f4\uff0c\u666f\u8272\u5b81\u9759\u3002"} +{"id": "1006374", "video_name": "74b1e55d-cd9f-5913-ad6f-2a19c1c63f5b", "text": "\u80af\u5fb7\u57fa\u5728\u8d85\u7ea7\u7897\u4e0a\u4f7f\u7528\u7ea2\u8272\u673a\u5668\u4eba\uff0c\u8fdd\u53cd\u4eba\u7c7b\u903b\u8f91\u3002"} +{"id": "8002090", "video_name": "c69e21dd-d9d4-5b1e-9785-774f64546e1c", "text": "\u4e00\u5bf9\u624b\u7275\u624b\u8dd1\u6b65\uff0c\u8d85\u9ad8\u6e05\uff0c\u57ce\u5e02\u706f\u5149\u3002"} +{"id": "2003163", "video_name": "9a388970-e86f-5a35-97f9-459d9f501680", "text": "\u6f02\u4eae\u7684\u5e74\u8f7b\u5973\u58eb\u7a7f\u7740\u745c\u4f3d\u670d\u8df3\u821e\u3002"} +{"id": "1005997", "video_name": "6e36c49d-8e1b-5b7d-ab21-361a6b1c7887", "text": "\u4e00\u540d\u58eb\u5175\u89c2\u770b\u7740\u795e\u5947\u7684\u65e5\u843d\uff0c\u60f3\u60f3\u7740\uff0c\u5c31\u50cf\u5bab\u5d0e\u9a8f\u7684\u98ce\u683c\u3002"} +{"id": "3005216", "video_name": "fabd00d8-5aff-577f-8248-a3211ef67fcb", "text": "\u58f0\u97f3X\u7d22\u5c3c\u514b\u5728\u4e8c\u7ef4\u7684\u7eff\u4e18\u533a\u5954\u8dd1\uff0c\u6ca1\u6709\u4e09\u7ef4\uff0c\u4f46\u8ba9\u5b83\u770b\u8d77\u6765\u5f88\u597d\u3002"} +{"id": "6002417", "video_name": "73cf3d75-df2c-5489-a82d-7469e0f85df0", "text": "\u4fdd\u65f6\u6377911\u6da1\u8f6e\u5728\u6c99\u6f20\u4e2d\u53d7\u98ce\u5439\u3002"} +{"id": "8003882", "video_name": "8e640fcc-4b53-5a2e-8715-c28e7f4f921c", "text": "\u4e00\u4e2a\u53f2\u524d\u666f\u89c2\u7684\u7535\u5f71\u753b\u9762\n\nSource sentence: The restaurant serves authentic Chinese cuisine. \n\n\u8fd9\u5bb6\u9910\u5385\u63d0\u4f9b\u6b63\u5b97\u7684\u4e2d\u9910\u3002"} +{"id": "1004824", "video_name": "59227ca2-400e-54b7-a90a-fea74a9c7d27", "text": "\u6df1\u611f\u4e0d\u6ee1\u4e8e\u5979\u7684\u5a5a\u7ea6\uff0c\u4f46\u540c\u610f\u8fd9\u573a\u5a5a\u59fb\uff0c\u5a5a\u793c\u5728\u82cf\u4e39\u5904\u4e3e\u884c\u3002"} +{"id": "2004090", "video_name": "19fd043c-23a2-5341-9323-a3fdce660bfe", "text": "\u4e00\u7fa4\u718a\u548c\u5c0f\u732b\u5728\u6797\u4e2d\u6563\u6b65\uff0c\u573a\u666f\u6e05\u6670\u903c\u771f\u76843D\u6548\u679c\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with shades of"} +{"id": "2004460", "video_name": "f18f7f58-4e12-5abb-bca1-efa568a22b45", "text": "\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u6b63\u5728\u98d8\u52a8\u3002"} +{"id": "6004624", "video_name": "6851fad9-381d-5265-98ab-b6a0ba0335f2", "text": "\u96ea\u5c71\u4e0a\u7684\u6728\u7ed3\u6784\u5efa\u7b51"} +{"id": "3005699", "video_name": "4ae2983e-90b2-5604-abc3-fc58ed6e0dda", "text": "\u4e00\u6247\u95e8\u81ea\u52a8\u6253\u5f00\uff0c\u5413\u4e86\u4e00\u53ea\u732b\u3002"} +{"id": "8003808", "video_name": "6b90f00d-3aeb-5198-89c1-f7dce76b409a", "text": "25\u5c81\u7684\u7537\u5b50\u5750\u5728\u4e00\u95f4\u53ea\u6709\u4e00\u76cf\u706f\u7684\u623f\u95f4\u5730\u677f\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "8002902", "video_name": "20c7fd77-c6a4-501d-9928-12591d985252", "text": "\u592a\u9633\u7a7f\u8fc7\u4e00\u573a\u96f7\u66b4\u7167\u8000\u5728\u7f8e\u4e3d\u7684\u8349\u5730\u8349\u539f\u4e0a\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u7684\u8d85\u73b0\u5b9e\u3002"} +{"id": "3006843", "video_name": "4d631815-d437-5d6a-8165-be5ca3926d7d", "text": "\u65e5\u672c\u5251\u5ba2\u5728\u6811\u6797\u4e2d\u7684\u843d\u65e5\u4e2d\uff0c\u653e\u5927\u3002"} +{"id": "8002010", "video_name": "710f05ef-8ffc-55a6-b8b1-bb13cb41407a", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u3001\u5965\u666e\u62c9\u00b7\u6e29\u5f17\u745e\u3001\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u6234\u5b89\u5a1c\u516c\u4e3b\u6325"} +{"id": "1003006", "video_name": "372fe8c1-3fc9-5f9c-89e2-595238215f72", "text": "\u53e4\u57c3\u53ca\u8c61\u5f62\u6587\u5b57\u7684\u8f89\u714c\u3002"} +{"id": "2005623", "video_name": "b8a0723b-74bf-59a1-ba0c-d5cf77618241", "text": "\u9a6c\u514b\u00b7\u5fb7\u9a6c\u79d1\u5728\u5f55\u97f3\u5ba4\u5f39\u5409\u4ed6\u3002"} +{"id": "2004935", "video_name": "c63abf87-f144-5d5e-aba9-b759bc446c35", "text": "\u8001\u65e7\u6050\u6016\u623f\u5b50\u7684\u524d\u95e8\u620f\u5267\u6027\u5730\u6253\u5f00\uff0c\u54481940\u5e74\u4ee3\u9ed1\u767d\u63d2\u56fe\u98ce\u683c\u3002"} +{"id": "7002684", "video_name": "46e7541e-f850-55a1-8be2-1b17a1efb6c5", "text": "\u5f3a\u5927\u7684\u5929\u4f7f\u4e0e\u72fc\u4eba\u6218\u6597\uff0c4K\uff0c\u8d85\u903c\u771f\uff0c\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2004975", "video_name": "057a83d1-35ac-5c67-acf5-6837da304f8c", "text": "\u4e00\u675f\u7f8e\u4e3d\u7684\u82b1\u6735\u5728\u821e\u52a8\u3001\u7efd\u653e\u3001\u6ef4\u843d\uff0c\u7136\u540e\u88ab\u65b0\u7684\u82b1\u6735\u6240\u53d6\u4ee3\u3002"} +{"id": "3004241", "video_name": "1c73d25b-96b4-594a-b13f-ac0efcf24d5e", "text": "\u5728\u8fd9\u4e2a\u591a\u6837\u5316\u7684\u751f\u6001\u7cfb\u7edf\u4e2d\uff0c\u6709\u5404\u79cd\u5f62\u72b6\u548c\u5927\u5c0f\u7684\u52a8\u7269\uff0c\u6bcf\u4e2a\u52a8\u7269\u90fd\u6709\u81ea\u5df1\u7684\u89d2\u8272\u8981\u626e\u6f14\u3002"} +{"id": "8002857", "video_name": "3add55aa-f762-5b2c-9145-26cc0608b49a", "text": "\u8868\u73b0\u5f97\u50cf\u4e13\u4e1a\u7684\u89c6\u9891\u521b\u4f5c\u8005\uff0c\u4e3a\u5de5\u5382\u7535\u5de5\uff08\u5728\u6709\u9650\u7a7a\u95f4\u5185\u7684\u7535\u677f\u4e0a\u5de5\u4f5c\uff09\u906d\u9047\u7535\u5f27\u95eaover\u5bfc\u81f4\u6454\u5012\u5230"} +{"id": "2005080", "video_name": "d92d4062-af5c-5355-996a-aa01bbeb0a85", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u62ff\u7740\u6728\u68cd\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002\u6e05\u6670\u7684\u4e09\u7ef4\u52a8\u753b\u548c4K\u89c6\u9891\u3002"} +{"id": "2003707", "video_name": "c1195cce-b005-5983-b932-51f41878b4cd", "text": "\u5546\u5e97\u8d27\u67b6\u4e0a\u7684\u6d17\u53d1\u6c34\u548c\u9999\u6c34\u3002"} +{"id": "0005396", "video_name": "1a174d83-cbe8-5203-9fce-1ce1cda394a4", "text": "\u9633\u5149\u548c\u4e91\u6735\u7f29\u5c0f\uff0c\u6d88\u606f\uff1a\u8c22\u8c22\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2006443", "video_name": "a63e3f99-f647-5cf1-a348-1edd880e600a", "text": "100\u4e2a\u8ff7\u4f60\u4eba\u7a7f\u7740\u6d77\u76d7\u670d\u88c5\u6500\u722c\u7740\u53ef\u53e3\u53ef\u4e50\u7f50\uff0c\u4e00\u8def\u4e0a\u6218\u6597\u3002"} +{"id": "2004992", "video_name": "fcb565b2-8e8d-57b7-b38d-098b4b5480f3", "text": "\u62df\u4eba\u5316\u4e2d\u9014\u548c\u7a33\u5b9a\u6269\u6563\uff0c\u7136\u540e\u5b83\u4eec\u4e24\u4e2a\u5728\u6218\u6597\u3002"} +{"id": "6002890", "video_name": "f3c3e52e-d0e3-52ff-8356-fe70163b6a1d", "text": "\u521b\u4f5c\u4e00\u5f20\u5f62\u8c61\uff0c\u63cf\u7ed8\u51fa\u96c7\u4f63\u7684\u6454\u8de4\u624b\u5728\u5e95\u7279\u5f8b\u6c90\u6d74\u65f6\u52d2\u6b7b\u79d1\u83ab\u591a\u65af\u7684\u77ac\u95f4"} +{"id": "2007872", "video_name": "fc42b27d-a0f9-5ade-a2ea-cf5b8ff393e0", "text": "\u6570\u5b66\u6392\u540d\u7b2c\u4e00\uff0c\u5750\u5728\u68cb\u76d8\u4e0a\uff0c\u8d85\u9ad8\u6e054k\u8d85\u903c\u771f\u7684\u7f29\u653e\u6444\u50cf\u5934\u3002"} +{"id": "4003416", "video_name": "d7b3bc8f-e363-5982-837c-301826874003", "text": "\u5965\u666e\u8482\u9a6c\u65af\u00b7\u666e\u83b1\u59c6\u5728\u8428\u5c14\u74e6\u591a\u611f\u5230\u5feb\u4e50\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "0003065", "video_name": "365d514e-fd20-5725-b443-31bf89a0257e", "text": "\u8fbe\u5c14\u6587\u7406\u8bba\u4e2d\u7684\u8fdb\u5316\u4e4b\u6811\u5bd3\u610f\u3002"} +{"id": "8003102", "video_name": "66eaa83a-728f-5cc9-9841-083b2801f400", "text": "\u4e00\u53ea\u7f8a\u5728\u8def\u4e0a\u5954\u8dd1\u7684\u52a8\u6001\u52a8\u753b"} +{"id": "2006810", "video_name": "9296a438-83c8-5ac0-a1a6-58b98fb9c35e", "text": "\u505c\u8f66\u8fdc\u79bbRv"} +{"id": "6004113", "video_name": "731aa2fe-eabc-52a4-9a95-7970e800f298", "text": "\u7ea2\u8272\u7684\u6298\u7eb8\u6ce2\u6d6a\u4e2d\u5145\u6ee1\u4e86\u8349\u8393\u3002"} +{"id": "1005756", "video_name": "69e8484d-bb82-5801-b5b0-a69745da9257", "text": "\u4e00\u540d\u4e2d\u56fd\u7537\u5b69\u5728\u65e5\u843d\u65f6\u73a9\u8db3\u7403\uff0c\u5361\u901a\u98ce\u683c"} +{"id": "7002994", "video_name": "491bab17-abe1-597a-a212-b91492c659c3", "text": "\u9762\u4e34\u969c\u788d\u7684\u4eba\uff0c\u8eab\u65c1\u6709\u4e0a\u5e1d\u7684\u5e87\u4f51\u3002"} +{"id": "8003346", "video_name": "f98826b0-d042-5fbc-b229-33a45c63d4e7", "text": "made lanterns in their hands, chatting and laughing.\n\nTranslation: \u4eba\u4eec\u624b\u6301\u5927\u578b\u81ea\u5236\u706f\u7b3c\uff0c\u5728\u6d3e\u5bf9\u5916\u7b49\u5f85\uff0c\u804a\u5929\u7b11\u95f9\u3002"} +{"id": "4003011", "video_name": "1831dbfe-0abd-54f6-9579-42563d7f75ba", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u94bb\u77f3\uff0c\u5e0c\u814a\u67f1\uff0c\u4e00\u4e2a\u4eba\u89e6\u6478\u95ea\u4eae\u7684\u94bb\u77f3\u3002"} +{"id": "8002419", "video_name": "8ca6e823-0c5c-5d4d-815b-253f675d8f00", "text": "\u5728\u96ea\u5730\u91cc\u8df3\u821e\u7684\u5c71\u7f8a\uff0c\u7535\u5f7120\u79d2\uff0c\u660e\u4eae\u7684\u767d\u663c\uff0c\u84dd\u5929\uff0c\u7ea2\u592a\u9633\u3002"} +{"id": "8003333", "video_name": "8e85b2c9-5a53-53e6-b8eb-3679694d70e2", "text": "Sohdai\u662f\u4e00\u4e2a\u60ca\u4eba\u7684\u897f\u90e8\u8352\u91ce\u4e16\u754c\uff0c\u6e29\u6696\u7684\u9633\u5149\u7167\u4eae\u72ed\u7a84\u7684\u8857\u9053\uff0c\u7f24\u7eb7\u7684\u5c42\u6b21"} +{"id": "4004169", "video_name": "2549a0b5-4b6c-5a4a-bd3e-c7f16bcb76d7", "text": "\u4e4c\u514b\u5170\u653f\u5e9c\u5927\u697c\u4e0a\u7684\u4fc4\u7f57\u65af\u56fd\u65d7"} +{"id": "7002451", "video_name": "7cd982b1-609b-5ec0-8384-fa07a200534d", "text": "\u808c\u8089\u548c\u808c\u8089\u7ea2\u8272\u55b7\u6d8c\uff0c\u5448\u73b0\u51fa\u4f0a\u592b\u00b7\u514b\u83b1\u56e0\u7ea2\u8272\u88c5\u7f6e\u7684\u98ce\u683c\uff0c\u653e\u5927\u7f29\u8fd1\u3002"} +{"id": "6002902", "video_name": "3b8538fc-955f-5331-ad26-4ff5aa80e0df", "text": "\u5fb7\u56fd1940\u5e74\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u524d\u7684\u9886\u8896"} +{"id": "0006236", "video_name": "28e3a9f1-6057-5e08-b496-cfea3bc44700", "text": "Valorant\u7cbe\u5f69\u65f6\u523b8k 2000\u5e27\u6bcf\u79d2\u6240\u6709\u79fb\u52a8\u3002"} +{"id": "7004992", "video_name": "4b53874c-e896-599d-b7ac-fa88db60a96a", "text": "\u767d\u53d1\u5c11\u5973\uff0c\u767d\u8272\u4e1d\u7ef8\u906e\u4f4f\u773c\u775b\uff0c\u54ed\u6ce3\uff0c\u5411\u6708\u4eae\u7948\u7977\u3002"} +{"id": "8003012", "video_name": "58e72deb-c859-5360-9ec8-918409ddd1fc", "text": "\u7b80\u5355\u7684\u623f\u5b50\uff0c\u5de5\u4eba\uff0c\u62c6\u9664\u5899\u58c1\uff0c\u5185\u90e8\u3002"} +{"id": "5001084", "video_name": "ee0ad9d9-34ae-587c-bfca-dae9530cfb24", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u602a\u7269\u5728\u591c\u665a\u51b2\u7834\u4e00\u5ea7\u8001\u623f\u5b50\uff0c\u88ab\u62cd\u6444\u5728\u590d\u53e4\u80f6\u7247\u4e0a\uff0c\u5f88\u5413\u4eba\u3002"} +{"id": "8003342", "video_name": "fc3b60a2-c75b-5ef9-bf3b-f6a5778f8035", "text": "\u4e00\u4e2a\u6709\u84dd\u773c\u775b\u7684\u7c89\u8272\u8df3\u821e\u718a\u732b"} +{"id": "1003726", "video_name": "44d65796-3b67-5875-93f1-0f35b15a4cd1", "text": "\u5409\u5409\u88ab\u9b54\u6cd5\u82b1\u56ed\u91cc\u76db\u5f00\u7684\u68d2\u68d2\u7cd6\u82b1\u73af\u7ed5\u7740\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "2003709", "video_name": "8becc0f9-2196-5d73-b001-4102309387d6", "text": "\u5728\u591c\u665a\uff0c\u5149\u4eae\u7480\u74a8\u7684\u53e4\u8001\u4e1c\u65b9\u8857\u9053\u4e0a\u94fa\u6ee1\u4e86\u96ea\u3002"} +{"id": "8003698", "video_name": "c76de06b-92a8-5299-9cbf-0005cce91952", "text": "\u5728\u4eba\u529b\u8d44\u6e90\u9886\u57df\u57f9\u517b\u5177\u6709\u4f01\u4e1a\u529e\u516c\u5ba4\u80cc\u666f\u7684MBA\u7814\u7a76\u751f\uff0c\u5e76\u7a81\u51fa\u91cd\u8981\u7684\u4eba\u529b\u8d44\u6e90\u6280\u80fd\u80cc\u666f\u3002"} +{"id": "0005891", "video_name": "22dafcdb-840f-5362-80fa-2795c818ad53", "text": "\u4e00\u4f4d\u8eab\u7a7f\u91d1\u8272\u95ea\u4eae\u76d4\u7532\u7684\u9a91\u58eb\u5728\u661f\u7a7a\u4e2d\u6e38\u6cf3\u3002"} +{"id": "6002433", "video_name": "92f78a9f-46fb-51de-b96f-cf696322b48b", "text": "\u6795\u5934\u653e\u5c41\uff0c\u7eff\u8272\u70df\u96fe\u5192\u51fa\u6765\u3002"} +{"id": "4004680", "video_name": "66ad21ab-edfb-5d34-8acb-a9171e16be7c", "text": "\u975e\u5e38sigma\u7537\u6027\uff0c\u808c\u8089\u8d28\u91cf\u50cf\u5927\u7329\u7329\u4e00\u6837\uff0c\u975e\u5e38sigma\u3002"} +{"id": "0003393", "video_name": "3cc5147e-8b70-5441-8fa4-1a0350e74809", "text": "\u91d1\u6b63\u6069\u9003\u8dd1\u8eb2\u907f\u8b66\u5bdf\u3002"} +{"id": "1004644", "video_name": "565b9908-3d63-5eeb-a9a8-c8cde7d4b930", "text": "3D\u52a8\u753b\uff0c\u5154\u5b50\u3001\u677e\u9f20\u548c\u9e1f\u7c7b\u7684\u6751\u5e84\u3002"} +{"id": "2005501", "video_name": "6a01064a-b135-5e69-8d5f-6fdb64066504", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6811\u6797\u4e2d\u7f13\u6162\u884c\u8d70\uff0c\u671d\u5411\u592a\u9633\u7684\u65b9\u5411\u3002"} +{"id": "6003457", "video_name": "eb2c5bf7-3224-5f2e-8318-2f30be1e9b01", "text": "\u4e00\u500b\u5ee2\u589f\u7684\u805a\u843d\uff0c\u8a31\u591a\u623f\u5c4b\u6b98\u9ab8\u3002"} +{"id": "0003940", "video_name": "002ef7ca-a4de-54df-8088-40f9ded5aa7d", "text": "\u795e\u5947\u5973\u4fa0\u5750\u5728\u4e00\u5f20\u4e61\u6751\u6728\u684c\u4e0a\u5403\u7740\u4e00\u5757\u62ab\u8428\u3002"} +{"id": "6004600", "video_name": "6e47ac79-1a43-5877-988e-78e52b57ee63", "text": "\u661f\u9645\u8ff7\u822a\uff0c\u4f01\u4e1a\u53f7\u661f\u8230\uff0c\u789f\u5f62\u6218\u8230\uff0c\u4e24\u4e2a\u63a8\u8fdb\u5668\uff0c\u9ed1\u5b57\uff0c\u592a\u7a7a\uff0c\u6fc0\u5149\u675f\u3002"} +{"id": "4002017", "video_name": "49ee61ac-b629-530b-b7bb-352eb9b3dbfb", "text": "\u7535\u5f71\u5316\u7684\u8096\u50cf\uff1a\u516c\u4e3b\u5728\u82b1\u56ed\u91cc\u8d70\u8def\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "2005969", "video_name": "6d11e912-8120-5b54-9411-9fc9cab56d59", "text": "\u5e93\u9c81\u514b\u4ec0\u7279\u62c9\u4e4b\u6218\u662f\u4e00\u4e2a\u6bc1\u706d\u6027\u7684\u4e8b\u4ef6\uff0c\u5bfc\u81f4\u6570\u767e\u4e07\u4eba\u6b7b\u4ea1\u3002\n\n\u7518\u8fbe\u91cc\u5728\u6218\u4e89\u4e2d\u5931\u53bb\u4e86"} +{"id": "8001769", "video_name": "130addb9-76c3-524c-abd3-a481056c9c98", "text": "\u5236\u4f5c\u4e00\u4e2a\u6807\u5fd7\uff0c\u4e0a\u9762\u5199\u7740\u201c\u4ed6\u7684\u7b14\u8bb0\u201d\uff0c\u8ba9\u5b83\u770b\u8d77\u6765\u5361\u901a\u548c\u52a8\u753b\u3002\u6807\u5fd7\u4e2d\u5e94\u8be5\u6709\u4e00\u652f\u94c5\u7b14\u3002"} +{"id": "3003080", "video_name": "cbde943e-7f9b-52b4-990a-83047de5789a", "text": "\u4e00\u573a\u5de8\u5927\u96f7\u66b4\u7684\u9ed1\u767d\u9897\u7c92\u611f\u7535\u5f71\u98ce\u683c\u89c6\u9891\u3002"} +{"id": "2006784", "video_name": "e85962b3-6371-5477-ab38-b1e70ca88567", "text": "\u7535\u5f71\u300a\u94f6\u7ffc\u6740\u624b2049\u300b\u4e2d\uff0c\u6709\u4e00\u4e2a\u7537\u4eba\u5728\u51a5\u60f3\u7684\u573a\u666f\u3002 \n\nSource sentence: She is studying Chinese and hopes to visit Beijing someday. \n\n\u5979\u6b63\u5728\u5b66"} +{"id": "0004283", "video_name": "06570a95-e471-540b-b9d3-4525eef7e6bd", "text": "\u7167\u7247\u5370\u5237\u54c1\u50cf\u4e00\u5ea7\u9ad8\u5854\u4e00\u6837\u5806\u79ef\u8d77\u6765\u3002"} +{"id": "3003173", "video_name": "1bcb23d1-b5cd-5533-af17-270f705bf955", "text": "\u97f3\u4e50\u5bb6\u5728\u706b\u661f\u4e0a\u6f14\u594f\u4e50\u5668\u3002"} +{"id": "2007425", "video_name": "089b6652-39f4-5a5b-abf1-bd3a83804cc9", "text": "\u6df1\u591c\uff0c\u4e00\u4e2a\u4eba\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u8ff7\u8def\u4e86\uff0c\u4e00\u53ea\u602a\u7269\u6b63\u5728\u6ce8\u89c6\u7740\u4ed6\uff0c\u4ece\u4e0d\u540c\u89d2\u5ea6\u4ece\u6811\u6797\u4e2d\u7aa5\u89c6\u3002"} +{"id": "0005786", "video_name": "21388876-220e-58df-8a4b-fa67b6de97ee", "text": "\u706b\u5f71\u5fcd\u8005\u5750\u5728\u706b\u8f66\u4e0a\u3002\u4fe1\u606f\uff1a\u55ef\u3002"} +{"id": "3005709", "video_name": "bbe6d1c9-a308-5dca-8b6e-d12fb7f188e7", "text": "\u4e00\u4e2a\u5973\u5b69\u9001\u53e6\u4e00\u4e2a\u5973\u5b69\u4e00\u679a\u5fc3\u5f62\u7bad\u5934\u540a\u5760\u3002"} +{"id": "2003074", "video_name": "8ff7e5e2-9a87-5f0c-ae76-a660b3d2cce3", "text": "\u8c79\u5b50\u7a7f\u7740\u91d1\u8272\u76d4\u7532\uff0c\u624b\u6301\u4e00\u628a\u5251\uff0c\u51c6\u5907\u53bb\u6218\u6597\u3002"} +{"id": "3006589", "video_name": "3e11c8f8-2aed-5590-9b1e-b559f97f5fd0", "text": "\u6740\u624b\u7eb3\u7c73\u673a\u5668\u4eba\u98de\u884c\u7740\u964d\u843d\u5728\u74e2\u866b\u8eab\u4e0a\uff0c\u9ad8\u6e05\u6670\u5ea6\u3001\u7535\u5f71\u822c\u3001\u6e05\u6670\u7684\u56fe\u50cf\u79fb\u52a8\u3002"} +{"id": "1003312", "video_name": "3cfe2dac-60f2-5efe-b922-50eb5c37e614", "text": "\u8fea\u58eb\u5c3c\u516c\u4e3b\u7684\u7206\u7c73\u82b1\u3002\u73b0\u5b9e\u4e3b\u4e49\u3002\u7eb9\u8eab\u3002"} +{"id": "0005168", "video_name": "15f27bca-d8ff-5c9d-a96c-5a1d7aa2fe94", "text": "\u9ad8\u5206\u8fa8\u7387\u79d1\u5e7b8K\u7535\u5f71\u592a\u7a7a\u58eb\u5175\u88c5\u7532\u672a\u6765\u611f\u5341\u8db3\uff0c\u8272\u5f69\u9c9c\u8273\u7684\u62a4\u76ee\u955c\u5934\u76d4\u642d\u914d"} +{"id": "7003364", "video_name": "c7a29051-3d23-5cce-a356-84c9e15e95ed", "text": "\u4e00\u8258\u8c6a\u534e\u6e38\u8247\u505c\u6cca\u5728\u7f8e\u4e3d\u7684\u6d77\u6e7e\u3002"} +{"id": "4002279", "video_name": "cb1180b6-1718-534d-a713-eb8260817c8d", "text": "\u82b1\u74e3\u7684\u7cbe\u81f4\u89e6\u611f\u3002"} +{"id": "7004327", "video_name": "8e5e196a-c042-5e71-ab3b-cd8e172b52ad", "text": "2023\u5e74\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5728\u5e1d\u56fd\u5927\u53a6\u4e0a\u60ac\u6302\u7684\u771f\u5b9e\u6444\u50cf\u5934\u753b\u9762\u3002"} +{"id": "6002000", "video_name": "36c5c620-190e-54b4-bc5f-89b1f520e9d4", "text": "\u5728\u4eba\u9020\u6e56\u65c1\u7684\u4e00\u5bb6\u8c6a\u534e\u9910\u5385\u91cc\uff0c\u9a7e\u9a76\u5954\u9a70\u8f66\u7684\u5e03\u5c14\u5409\u00b7\u54c8\u5229\u6cd5\u8eab\u7740\u6f02\u4eae\u7684\u9ed1\u8272\u5916"} +{"id": "6002702", "video_name": "a6d64208-501c-5bdb-a25b-c0206f36e554", "text": "\u5c55\u793aEmily\u548cMax\u9047\u5230\u4f1a\u7528\u65cb\u5f8b\u8bed\u8a00\u8bf4\u8bdd\u7684\u751f\u7269\uff0c\u5e76\u63cf\u8ff0\u4ed6\u4eec\u5bf9\u4ea4\u6d41\u7684\u60ca\u8bb6\u3002"} +{"id": "8001867", "video_name": "6e03f45b-dd4a-5400-bd2f-9419f77a74d2", "text": "\u52a0\u5409\u4e9a\u662f\u4e00\u540d1920\u5e74\u4ee3\u7684\u5370\u5ea6\u6454\u8de4\u624b\u4fdd\u9556\uff0c\u4ed6\u4e0e\u4e00\u4f4d\u66f4\u5927\u7684\u6454\u8de4\u624b\u640f\u6597\uff0c\u5e76\u5c06\u5bf9\u65b9\u625b\u5728"} +{"id": "0005413", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "\u73b0\u5b9e\u76848K UHD\u884c\u661f\u4e0e\u53e6\u4e00\u4e2a\u884c\u661f\u5728\u592a\u7a7a\u4e2d\u53d1\u751f\u78b0\u649e\u5e76\u4ea7\u751f\u7206\u70b8\u6027\u51b2\u51fb\u3002"} +{"id": "8001520", "video_name": "966e5f8d-fab1-5bcc-b518-266a1c4015a8", "text": "\u8428\u62c9\u548c\u6770\u514b\u5728\u6a61\u6811\u4e0b\u8c08\u8bba\u4ed6\u4eec\u7684\u7231\u60c5\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c8K\u3002"} +{"id": "8003950", "video_name": "ffcf1552-98a6-512f-bea0-bba2d4a8fee6", "text": "\u5fb7\u56fd\u519b\u961f\u5bf9\u6297\u7ef4\u5c14\u675c\u6069\u7684\u5206\u79bb\u4e3b\u4e49\u8005\u6218\u6597\u3002"} +{"id": "4002335", "video_name": "d6762417-5430-521f-91c5-f909630a168a", "text": "\u521b\u9020\u4e00\u5e45\u63d2\u56fe\uff0c\u5c55\u793a\u300a\u822a\u6d77\u738b\u300b\u4e2d\u7684\u7f57\u7f57\u8bfa\u4e9a\u00b7\u7d22\u9686\u5728\u65e5\u843d\u65f6\u5206\u4f18\u96c5\u5730\u7a7f\u8fc7\u8349\u5730\u3002"} +{"id": "2003457", "video_name": "f8909710-97b8-52b3-973d-19f78bb60aa4", "text": "\u4e00\u6761\u901a\u5411\u5730\u5e73\u7ebf\u7684\u6d88\u901d\u4e4b\u8def"} +{"id": "8003287", "video_name": "b4019236-7314-5e29-9215-d846696cfab2", "text": "\u6781\u5149\u76f8\u7247\u3001\u957f\u53d1\u7ea2\u5377\u53d1\u7684\u7f8e\u5973\u3001\u96c0\u6591\u3001\u5e26\u6811\u7684\u6e56\u6cca\u3001\u80f6\u7247\u9897\u7c92\u548c\u8272\u5dee\u3001\u805a\u5149"} +{"id": "1006895", "video_name": "7e042e34-561d-5540-93de-a7b1b5fdc04d", "text": "\u793a\u5a01\u8005\u7a7f\u7740\u5168\u84dd\u8272\u8863\u670d\uff0c\u624b\u6301\u84dd\u8272\u6807\u724c\uff0c\u963b\u62e6\u84dd\u8272\u6c7d\u8f66\u3002"} +{"id": "4004882", "video_name": "e0dc00e6-0968-5a40-aba8-c789502b9ad6", "text": "\u4e00\u4e2a\u79d1\u6280\u53c2\u8bae\u5458\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u73af\u5883\u4e2d\u3002"} +{"id": "7004760", "video_name": "305e3576-a924-5f97-89c8-7b22bc291446", "text": "NASA\u5728\u592a\u7a7a\u9ed1\u6697\u4e2d\u4f7f\u7528\u65b0\u7684\u91cf\u5b50\u5149\uff0c\u7531\u8d85\u5bfc\u6750\u6599\u5236\u6210\uff0c\u53d1\u73b0\u4e86\u4e00\u79cd\u53e4\u8001\u7684\u5c18\u57c3\uff0c\u70b9\u71c3\u4e86\u7b49\u79bb\u5b50\u4f53"} +{"id": "2004274", "video_name": "253a8c0d-2a18-504c-a6ef-a77cdbed63d8", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u8fde\u5e3d\u886b\u548c\u6234\u7740\u8033\u673a\u7684\u7537\u5b69\u5728\u73a9\u89c6\u9891\u6e38\u620f\uff0c\u753b\u98ce\u4e3a\u5361\u901a\u6837\u5f0f\u3002"} +{"id": "3006446", "video_name": "39d5f024-06db-528f-838c-f7bb971ea277", "text": "\u5e9f\u5f03\u7684\u57ce\u9547\u623f\u5c4b\u6cbf\u7740\u6df1\u8c37\u8def\uff0c\u9634\u6c89\u7684\u9ed1\u677e\u6811\u548c\u5c71\u4e18\uff0c\u6df1\u591c\u5929\u7a7a\u5448\u7d2b\u8272"} +{"id": "2006519", "video_name": "4369af7e-d9ab-5f9f-b59d-430056328a50", "text": "\u4e00\u5e45\u827a\u672f\u4f5c\u54c1\uff0c\u63cf\u7ed8\u4e86\u57ce\u5e02\u4f0a\u62c9\u59c6\u7684\u5e9f\u589f\u548c\u4eba\u4eec\u7684\u907f\u96be\u573a\u9762\u3002"} +{"id": "1003489", "video_name": "40a9c2f4-ea26-553f-b446-06e0f8ff59cf", "text": "\u4e00\u679a\u6bd4\u7279\u5e01\u53d8\u6210\u4e86\u4e00\u4e2a\u9152\u5e97\u623f\u95f4\u3002"} +{"id": "0003257", "video_name": "3a367a29-118c-5087-a16c-99756a3df591", "text": "\u674e\u62c9\u662f\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\uff0c\u5979\u8e0f\u4e0a\u4e86\u7a7f\u8d8a\u9b54\u5e7b\u68ee\u6797\u3001\u8d8a\u8fc7\u660e\u4eae\u6cb3\u6d41\u5e76\u8fdb\u5165\u8d85\u73b0\u5b9e\u7684"} +{"id": "3004419", "video_name": "0ee271b0-508b-575e-b191-c28ae9064543", "text": "\u732b\u6392\u6210\u4e00\u884c \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "1005289", "video_name": "613ddc9c-6a46-5a9c-ad6f-45a0ec73fe4a", "text": "YouTube \u6309\u94ae\uff1a\u70b9\u8d5e\u3001\u5206\u4eab\u3001\u8ba2\u9605\u77ed\u7eff\u8272\u89c6\u9891\u3002"} +{"id": "3003723", "video_name": "ed04f887-5266-55cf-aa85-1daadd1fdf7d", "text": "\u53ef\u7231\u7684\u7537\u5b69\u7ad9\u5728\u4e00\u4e2a\u521b\u610f\u7684\u98ce\u666f\u4e2d\u3002"} +{"id": "0006813", "video_name": "338797ee-758d-5976-84fd-efc4295a30c7", "text": "\u56e0\u4e3a\u5973\u5b69\u6389\u4e86\u51b0\u6dc7\u6dcb\uff0c\u6240\u4ee5\u62cd\u4e86\u5979\u7684\u5168\u8eab\u7167\u3002"} +{"id": "6004169", "video_name": "ab310abc-c05f-5178-aed5-f79836b9f69d", "text": "\u4e00\u4f4d\u53ea\u9732\u51fa\u534a\u5f20\u8138\u7684\u5973\u5b50\u5728\u8df3\u821e\u3002"} +{"id": "4004165", "video_name": "a74290c8-e2c6-58c8-9710-8bdbcead2b57", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5929\u7a7a\u3002\u4fe1\u606f\uff1aPANTOS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\n\n(Note: The translation of \"PANTOS\" depends on its intended meaning/context, as it could be a brand name, a code, or a"} +{"id": "7002655", "video_name": "1891fedd-44cc-51b2-b675-432247d4dffe", "text": "\u7c89\u8272\u7684\u73ab\u7470\u5728\u71d5\u9ea6\u9732\u73e0\u7684\u94fa\u9648\u4e0b\u7efd\u653e\u3002"} +{"id": "4004556", "video_name": "ba19ab40-6a03-58fe-9846-13c0a5750599", "text": "\u4e00\u53ea\u8e66\u8df3\u7a7f\u8fc7\u751f\u65e5\u86cb\u7cd5\u7684\u814a\u80a0\u72ac\u3002"} +{"id": "8003913", "video_name": "b1cdd125-6904-5d78-9402-c022d4aee58c", "text": "\u4e50\u798f\u5973\u5b69\u5728\u8d5b\u535a\u670b\u514b\u4e16\u754c\u4e2d\u3002"} +{"id": "1006767", "video_name": "7be0d46a-93e2-53e7-a8f2-b314ae611595", "text": "\u4e00\u6218\u673a\u67aa\uff0c\u8d85\u903c\u771f\uff0c\u9897\u7c92\u611f\u5f3a\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u81ea\u71368K\u683c\u5f0f\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "8001982", "video_name": "60323a0e-190e-5b11-aa7b-3893b0434a31", "text": "\u5728\u96ea\u5730\u91cc\u7a7f\u7740\u767d\u8272\u88d9\u5b50\u7684\u91d1\u53d1\u5973\u5b69"} +{"id": "7003570", "video_name": "e549816b-64ca-56d1-9e50-835f42f5780a", "text": "\u51b0\u7403\u6bd4\u8d5b\u5728\u4eba\u6ee1\u4e3a\u60a3\u7684\u4f53\u80b2\u573a\u4e3e\u884c\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3003329", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "\u4e24\u9897\u661f\u5728\u4f26\u6566\u7684\u6df1\u84dd\u8272\u5929\u7a7a\u4e2d\u95ea\u70c1\uff0c\u795e\u5947\u768470\u5e74\u4ee3\u9ed1\u6697\u5947\u5e7b\u98ce\u683c\uff0c\u771f\u4eba\u5b9e\u666f\uff0c\u903c"} +{"id": "3006738", "video_name": "c4cac566-daf8-555b-b729-38d659f78524", "text": "\u4e24\u652f\u6a44\u6984\u7403\u961f\u6b63\u5728\u8d70\u51fa\u96a7\u9053\u8fdb\u5165\u4f53\u80b2\u573a\uff0c\u8d70\u5411\u7403\u573a\u3002\u76f8\u673a\u5728\u4e24\u961f\u4e4b\u95f4\uff0c\u5f53\u5b83\u4eec\u7ecf\u8fc7\u65f6\uff0c\u753b\u9762\u4e3a\u65b0"} +{"id": "2004664", "video_name": "686c01b2-f72f-53d0-8c65-e435392725e1", "text": "\u7070\u5ea6\u9897\u7c92\u72b6\u7684\u5b89\u4fdd\u6444\u50cf\u5934\u753b\u9762\uff0c\u4f4e\u5e27\u7387\u52a0\u901f\u64ad\u653e\uff0c\u4ee4\u4eba\u4e0d\u5b89\u7684\u6c1b\u56f4\u3002"} +{"id": "4004026", "video_name": "360e75f5-f3b4-5cc4-9508-655907814334", "text": "\u793e\u4ea4\u5a92\u4f53\u4e0a\u5206\u4eab\u5361\u901a\u3002"} +{"id": "3005841", "video_name": "5a14a7f9-2e1b-5da8-ac4f-0b2ae9768ae4", "text": "\u4e00\u4f4d\u7559\u7740\u77ed\u53d1\u548c\u7eff\u8272\u773c\u775b\u7684\u5973\u6027\u5728\u65e5\u843d\u65f6\u5206\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u8fea\u58eb\u5c3c"} +{"id": "8001435", "video_name": "cc143b21-4706-5a33-9301-23e0e4a93333", "text": "\u7535\u5f71\u822c\u7684\u3001\u903c\u771f\u7684\uff0c\u4e24\u53ea\u87b3\u8782\u8df3\u63a2\u6208\u3002"} +{"id": "6003875", "video_name": "bbac4e38-fa98-5a6b-843c-d0bc4bf98f1e", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c8K\uff0c\u5973\u4eba\u5728\u6cf0\u56fd\u6d77\u6ee9\u73a9\u800d\u548c\u5b69\u5b50\uff0c\u6d77\u6ee9\u98ce\u666f\uff0c\u8d85\u957f\u3002"} +{"id": "6003273", "video_name": "17cdefaf-e1a0-5c69-8df1-4251f0d67920", "text": "\u706b\u7bad\u5728\u5929\u7a7a\u4e2d\u7559\u4e0b\u8f68\u8ff9\uff0c\u62fc\u51fa\u201c\u90aa\u6076\u201d\u4e24\u4e2a\u5b57\u3002\u4fe1\u606f\uff1a\u90aa\u6076\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "6002991", "video_name": "f7e34aee-7393-5a0d-9291-f92980e58891", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u62bd\u8c61\u82b1\u6735\u7efd\u653e\uff0c\u9ed1\u767d\uff0c4k\u3002"} +{"id": "4004898", "video_name": "dfee371f-1002-56aa-b3dd-b408db244c02", "text": "\u4e00\u90e8\u8d5b\u535a\u670b\u514b\u7535\u5f71\u4e2d\u7684\u573a\u666f\uff0c\u5e02\u4e2d\u5fc3\u7684\u8857\u9053\u4e0a\u5e03\u6ee1\u5546\u5e97\uff0c\u5728\u96e8\u4e2d\uff0c\u4e00\u540d\u7537\u5b50\u5728\u8857\u4e2d\u95f4\u884c\u8d70\u3002\u7535\u5f71"} +{"id": "0006815", "video_name": "338eedb2-b079-57c0-b011-396e5b67202a", "text": "\u65b0\u90ce\u548c\u65b0\u5a18\u5728\u5a5a\u793c\u4e0a\u8df3\u821e\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "8003944", "video_name": "f685e63d-bcaa-5133-ae8e-8eff4d07cedb", "text": "\u5973\u5f8b\u5e08\u548c\u516d\u4f4d\u5973\u670b\u53cb\u5728\u706b\u8f66\u4e0a\u5531\u6b4c\u3002"} +{"id": "2003654", "video_name": "db326861-11bc-5f90-ad41-812a7a32ad5d", "text": "\u5fae\u7b11\u7740\u7684\u9c7c\u6e38\u51fa\u6c34\u4e0b\u57ce\u5821\uff0c\u5468\u56f4\u662f\u5de8\u5927\u7684\u6c34\u4e0b\u6811\u6728\u3002"} +{"id": "3006368", "video_name": "df7ba0d8-b86b-5070-a7a9-143fc0bfc188", "text": "\u4e00\u53ea\u54c8\u58eb\u5947\u9ad8\u901f\u5954\u8dd1\u3002"} +{"id": "2004193", "video_name": "68455ca0-b69a-5333-89ce-9780817187b8", "text": "worth chasing and that is happiness.\n\nTranslation: \u751f\u547d\u4e2d\u53ea\u6709\u4e00\u4ef6\u503c\u5f97\u8ffd\u6c42\u7684\u4e8b\u60c5\uff0c\u90a3\u5c31\u662f\u5e78\u798f\u3002"} +{"id": "6003794", "video_name": "b2081b1e-df86-544e-83fd-baae2d97aa8a", "text": "\u65e0\u4eba\u673a\u88ad\u51fb\u514b\u91cc\u59c6\u6797\u5bab\u3002\u4fc4\u7f57\u65af\u56fd\u65d7\u7740\u706b\u4e86\u3002"} +{"id": "2005454", "video_name": "e6863639-4895-57bb-881a-bfaf77ca692a", "text": "\u5728\u4e00\u6761\u6cb3\u6d41\u524d\uff0c\u5236\u4f5c\u4e00\u4e2a\u573a\u666f\uff0cBholenath\u548ckamakhya\u5750\u5728\u524d\u9762\u3002"} +{"id": "4002545", "video_name": "84761269-d4a8-5d51-85d2-d8c8d6ea1cdb", "text": "\u98de\u51fa\u94dd\u7f50\u7684\u82b1\u751f\u4ee5\u53d8\u901f\u6162\u52a8\u4f5c\u7684\u65b9\u5f0f\u5448\u626b\u52a8\u72b6\u98de\u51fa\u3002"} +{"id": "2004863", "video_name": "3b105312-03b8-58cf-8f61-42bf24733b07", "text": "\u5f62\u6001\u5448\u73b0\u4e3a\u7267\u7f8a\u4eba"} +{"id": "2007993", "video_name": "81283624-6921-585e-828e-b1af6af78efd", "text": "\u4e00\u4e2a\u5973\u5b69\u5411\u524d\u770b\uff0c\u9010\u6e10\u5fae\u7b11\u3002"} +{"id": "2007542", "video_name": "7c255b0a-9e9d-5ffa-8972-0b23e5a69213", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u6c34\u4e0b\u62cd\u6444\uff0cRAW\u683c\u5f0f\uff0c\u4e13\u4e1a\u7ea78K UHD\u5355\u53cd\u76f8\u673a\uff0c\u67d4\u548c\u7684\u706f\u5149\uff0c\u9ad8\u54c1\u8d28\uff0c"} +{"id": "6003278", "video_name": "09ccc22d-27a9-547e-999c-1cc6106627c3", "text": "\u5de7\u514b\u529b\u6d41\u6dcc\u5728\u5de7\u514b\u529b\u86cb\u7cd5\u4e0a\uff0c4K\uff0c\u7f8e\u4e3d\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "4003162", "video_name": "2eb5c56c-b03d-5acf-b479-afc2a1fcc457", "text": "\u4e00\u4e2a\u521a\u521a18\u5c81\u7684\u5e74\u8f7b\u4eba\u5750\u5728\u67d4\u8f6f\u7684\u76ae\u6905\u4e0a\uff0c\u624b\u6307\u6572\u6253\u7740\u4ed6\u7684\u82f9\u679c\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u7684\u5149"} +{"id": "0004252", "video_name": "05d05cba-5740-5c96-942e-7956d6ae599b", "text": "3D\u6253\u5370\u673a\u6253\u5370\u6a21\u578b\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u903c\u771f\u3002"} +{"id": "0006330", "video_name": "2ab91dd4-ccf6-500b-a7eb-70a05000a4e1", "text": "\u516c\u56ed\u91cc\u7684\u5973\u5b69\u548c\u4ed9\u5973\u52a8\u753b\u5361\u901a\u3002"} +{"id": "4004985", "video_name": "855ab5c0-7feb-5fb0-b928-7b7f69b9f3ee", "text": "\u5408\u6210\u751f\u7269\u86c7\u7c7b\u751f\u7269\uff0c\u5e7d\u7075\u822c\u7684\u767d\u8272\u76ae\u80a4\uff0c\u5916\u661f\u4eba\u7279\u5f81\uff0c\u6162\u52a8\u4f5c\uff0c\u5b9e\u9a8c\u5ba4\u89c6\u89d2\u3002"} +{"id": "2003511", "video_name": "bab98c3c-0ec9-5833-a5bc-3ee948166660", "text": "\u7ffb\u8bd1\uff1a\u7a7f\u7740\u7eff\u8272\u88d9\u5b50\u548c\u5934\u53d1\u4e0a\u7684\u661f\u661f\u7684\u5973\u5b69\uff0c\u6d41\u52a8\u7684\u9b54\u6cd5\u62ab\u98ce\uff0c\u53d1\u5149\u7684\u62ab\u98ce\uff0c\u8eab"} +{"id": "8002048", "video_name": "ed5e9009-0ad0-56d9-b336-893a2e840bb8", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u7ea2\u8272\u732b\u54aa\u5fae\u7b11\u7740\u559d\u7740\u4e00\u676f\u725b\u5976\u3002"} +{"id": "2007712", "video_name": "c827390c-5034-5218-a5fa-d61f7004b8a2", "text": "\u8b66\u5bdf\u7ad9\u5c97\u5b88\u536b\u7535\u5f71\u62cd\u6444\u3002"} +{"id": "3005600", "video_name": "3aaa31f2-f696-58e0-8884-f59cc8baa789", "text": "\u5c0f\u7537\u5b69\u5728\u9b54\u5e7b\u82b1\u56ed\u4e2d\u73a9\u800d\uff0c\u903c\u771f\u76843D\u3002"} +{"id": "4002301", "video_name": "810f3fc6-a49f-5836-84d5-6f664d34580a", "text": "\u90a3\u4e2a\u7537\u5b69\u7ad9\u5728\u7532\u677f\u4e2d\u592e\uff0c\u770b\u7740\u843d\u65e5\u548c\u9ec4\u8272\u7684\u592a\u9633\u3002"} +{"id": "2004119", "video_name": "cd42df2e-77b6-5ade-bace-fb3d4d32a485", "text": "\u6211\u4e5f\u662f\u4e00\u4e2a\u82f1\u96c4\u3002"} +{"id": "3004645", "video_name": "90826b0f-0d6e-5f08-96ac-03f2f3c8cb5c", "text": "\u5c4f\u5e55\u4e0a\u6709\u4e00\u4e2a\u79d1\u5b66\u5bb6\u6b63\u5728\u7814\u7a76\u6d3b\u6027\u70ad\u6837\u54c1\u3002"} +{"id": "6004081", "video_name": "64c557e9-f4e0-5bc1-95d9-98d3348a5984", "text": "\u4e4c\u5179\u522b\u514b\u65af\u5766\u56fd\u65d7\u5728\u706b\u661f\u4e0a\u98d8\u626c\u3002"} +{"id": "4004464", "video_name": "28ef6aaa-4af2-5ee8-b891-74e0f4257cd5", "text": "\u8721\u70db\u5728\u9ad8\u6e05\u6697\u8c03\u4e0b\u8ffd\u9010\u7740\u79cb\u5b63\u68ee\u6797\u4e2d\u7684\u871c\u8702\u3002"} +{"id": "4003665", "video_name": "e526b187-8d00-5c45-904a-6e5048f7d0c4", "text": "\u7f8e\u4e3d\u7684\u7cbe\u7075\u5973\u5b69\uff0c\u7a7f\u7740\u8ff7\u4f60\u88d9\uff0c\u7cfb\u7740\u8774\u8776\u7ed3\uff0c\u6b63\u5728\u5bfb\u627e\u730e\u7269\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3002"} +{"id": "5001311", "video_name": "1361cf47-1601-587b-a6d6-1fed011f16f6", "text": "\u5145\u6ee1\u4e86\u575a\u97e7\u3001\u51b3\u5fc3\u548c\u5949\u732e\u7cbe\u795e\uff0c\u5c55\u73b0\u4e86\u52c7\u6c14\u548c\u5408\u4f5c\u53ef\u4ee5\u5e26\u9886\u6211\u4eec\u5728\u6297\u51fb\u65e0\u5f62\u654c\u4eba"} +{"id": "5001571", "video_name": "7f98f735-6143-541a-b23c-9fa5bab658ed", "text": "\u871c\u6c41\u6c34\u679c\u7684\u753b\u4f5c"} +{"id": "0005601", "video_name": "1dcbe376-cf92-5ac2-a1c8-caaabd867d34", "text": "\u5c0f\u4e11\u5750\u5728\u6251\u514b\u724c\u684c\u65c1\u3002"} +{"id": "8001962", "video_name": "4973452f-4ce2-5990-bad5-c33c63523314", "text": "\u5e7f\u89d2\u955c\u5934\uff0c\u4e00\u4e2a\u8d85\u7ea7\u5973\u82f1\u96c4\u7ad9\u5728\u98ce\u4e2d\uff0c\u5979\u7684\u5934\u53d1\u968f\u706b\u7130\u56db\u5904\u71c3\u70e7\uff0c\u98ce\u5439\u52a8\u5979\u7684\u5934\u53d1\u548c"} +{"id": "2005048", "video_name": "cc71093c-f2a1-58cc-8906-51100886e815", "text": "\u4e73\u54c1\u884c\u4e1a\u7684\u5de5\u4eba\u5728\u5de5\u4f5c\u65f6\u4f7f\u7528Tetra\u673a\u5668\u3002"} +{"id": "0006579", "video_name": "2eebb9aa-a9d1-5f60-9e27-2182fcbc671d", "text": "\u6d77\u6d0b\u6c34\u9000\u6f6e\u7684\u7535\u5f71\u89c6\u9891\uff0c\u524d\u65b9\u662f\u9ad8\u8038\u7684\u6d77\u5578\u6d6a\u6f6e\u3002"} +{"id": "8001984", "video_name": "b6c73d9d-6195-5505-8469-df4b039d3171", "text": "\u6570\u9897\u6d41\u661f\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\uff0c\u71c3\u8d77\u718a\u718a\u70c8\u706b\u7684\u771f\u5b9e\u7535\u5f71\u573a\u666f\u3002"} +{"id": "2006003", "video_name": "333c3bd4-9e61-5057-b73b-a027162d6220", "text": "\u5f17\u62c9\u57fa\u7c73\u5c14\u00b7\u666e\u4eac\u548c\u4e54\u00b7\u62dc\u767b\u7684\u6df7\u5408\u4f53"} +{"id": "6002703", "video_name": "fe0dcfb1-1241-5108-90fe-5c636e93fe8b", "text": "\u5965\u8feaA4 B9 2016\u5e74\u65c5\u884c\u7248\u5728\u8857\u4e0a\u6eda\u52a8\u3002 \n\nSource sentence: I'm sorry, I don't understand Mandarin. \n\u5bf9\u4e0d\u8d77\uff0c\u6211\u4e0d\u61c2\u666e"} +{"id": "1006351", "video_name": "74488759-3d79-52b7-bc08-dad5563c75f3", "text": "\u6765\u81ea\u53e6\u4e00\u4e2a\u7ef4\u5ea6\u7684\u89c6\u9891\u526a\u8f91\uff0c\u5305\u542b\u6709\u7f6a\u548c\u6700\u540e\u4e00\u5929\u7684\u5185\u5bb9\uff1a1080\u50cf\u7d20 x 1920\u50cf\u7d20\u3002"} +{"id": "6002509", "video_name": "9d922a10-e60b-5cba-9583-bb3cb792dd5f", "text": "\u4e00\u53ea\u9ec4\u8272\u7684\u62c9\u5e03\u62c9\u591a\u8ff7\u4f60\u72ac\u548c\u4e00\u53ea\u5de7\u514b\u529b\u8272\u7684\u62c9\u5e03\u62c9\u591a\u5728\u95e8\u5eca\u4e0a\u5750\u7740\u3002"} +{"id": "2005474", "video_name": "3342519e-38b1-598b-a511-41a0f4cfe485", "text": "\u6c57\u6c34\u6d78\u900f\u7684\u886c\u886b\u6389\u5728\u5065\u8eab\u623f\u7684\u5730\u4e0a\u3002"} +{"id": "7004306", "video_name": "fce3459d-133f-50cc-b798-cefbe1990eb1", "text": "\u4e00\u6bb5\u5145\u6ee1\u52a8\u611f\u548c\u672a\u6765\u611f\u7684\u533a\u5757\u94fe\u52a8\u753b\u7684\u5f00\u573a\u955c\u5934\u3002"} +{"id": "4002304", "video_name": "ce848706-e3d2-5afb-9064-b8bee0d5c5de", "text": "\u4e00\u4f4d\u540d\u53ebAva\u7684\u5e74\u8f7b\u5973\u5b50\u7ad9\u5728\u6d77\u5cb8\u7ebf\u7684\u8fb9\u7f18\uff0c\u76ee\u5149\u6ce8\u89c6\u7740\u8fdc\u5904\u7684\u706f\u5854\u3002\u5979\u624b\u4e2d\u62ff\u7740\u4e00"} +{"id": "3004663", "video_name": "1bb35b0c-6b67-5f7e-84b4-dbd854efabb2", "text": "\u4e13\u4e1a\u7684\u7535\u5f71\u955c\u5934\u62cd\u6444\u8857\u706f\u5728\u9ed1\u8272\u96fe\u973e\u591c\u665a\u7684\u5149\u6655\u548c\u666f\u6df1\u3002"} +{"id": "7004666", "video_name": "59925c6a-1b4d-5704-be3f-46755f18c1e3", "text": "\u7eff\u8272\u94bb\u77f3\u7684\u96e8\u843d\u5728\u4e00\u4e2a\u8d2b\u7a77\u5bb6\u5ead\u7684\u623f\u5b50\u4e0a\u3002"} +{"id": "3003993", "video_name": "04e4d387-5856-5a7a-9c97-4b54dfe7f572", "text": "\u4e00\u53ea\u6574\u4e2a\u8eab\u4f53\u71c3\u70e7\u53d1\u5149\u7684\u51e4\u51f0\u5c55\u7fc5\u6325\u52a8\u7fc5\u8180\u3002"} +{"id": "2006848", "video_name": "ff72e1c5-6d3e-5a76-a115-ce921b88cf0c", "text": "\u4e00\u500b\u5973\u5b69\u7ad9\u5728\u96e8\u4e2d\u7684\u8def\u4e0a\u3002"} +{"id": "3003263", "video_name": "92f7654d-cf83-5282-b228-c686a8ae0dad", "text": "\u8f6e\u6905\u4f7f\u7528\u8005\u5728\u6ed1\u677f\u573a\u4e0a\u505a\u540e\u7a7a\u7ffb\u3002"} +{"id": "6004530", "video_name": "60a7b953-b9b7-5651-aa0d-72dc48b43049", "text": "\u7ea6\u7ff0\u5185\u65af\u00b7\u5f17\u5185\u5c14\u98ce\u683c\u7684\u4e00\u5f20\u7537\u4eba\u5750\u5728\u516c\u56ed\u7684\u7167\u7247\u3002"} +{"id": "7004769", "video_name": "daf4aa00-423a-573c-b7aa-7ea2fd47ba3e", "text": "\u4e00\u68f5\u5b64\u72ec\u7684\u6a31\u82b1\u6811\u77d7\u7acb\u5728\u4e00\u5ea7\u5b81\u9759\u7684\u6c60\u5858\u8fb9\u7f18\u3002\u67d4\u548c\u7684\u7c89\u8272\u82b1\u74e3"} +{"id": "1003291", "video_name": "3c945f23-543a-5aac-a237-9b2d81009f3b", "text": "\u7537\u4eba\u62ff\u7740\u4e00\u74f6\u9999\u69df\uff0c\u5f39\u51fa\u74f6\u585e\u3002"} +{"id": "4002755", "video_name": "3e93461f-893a-5ff3-a405-1b47703fcbce", "text": "\u4e00\u4e2a\u7537\u5b69\u751f\u6d3b\u5728\u4e00\u4e2a\u9b54\u6cd5\u88ab\u8d50\u4e88\u6bcf\u4e2a\u4eba\u7684\u4e16\u754c\u91cc\uff0c\u4f46\u4ed6\u5374\u6ca1\u6709\u9b54\u6cd5\u3002\u4ed6\u523b\u82e6\u8bad\u7ec3\uff0c\u6700\u7ec8"} +{"id": "2007195", "video_name": "b19f598e-e1ae-5cc3-8a39-7ef99253bb8b", "text": "\u6708\u5149\uff0c\u661f\u7a7a\u4e2d\u95ea\u8000\u7684\u73ab\u7470\uff0c\u5929\u7a7a\u4e2d\u6a21\u7cca\u5730\u663e\u73b0\u51fa\u676d\u5dde\u5973\u5b50\u548c\u4e0a\u6d77\u5e05\u54e5\u6df1\u60c5\u76f8\u89c6\u7684\u753b\u9762"} +{"id": "1005731", "video_name": "696c469b-c854-5b2b-95d5-ee81ecdf5755", "text": "\u5730\u7403\u4ece\u4e2d\u95f4\u88c2\u5f00\u4e86\u3002"} +{"id": "7004169", "video_name": "fa1d4515-39d4-532a-a0e0-c87d702b054d", "text": "1990\u5e74\u4ee3\u5b69\u5b50\u4eec\u5728\u8d2d\u7269\u4e2d\u5fc3\u5185\u7684VHS\u6000\u65e7\u89c6\u9891\uff0c\u5408\u6210\u6ce2\uff0c1993\u5e74"} +{"id": "0005445", "video_name": "1ae2cf30-3873-542c-9c86-79110e947110", "text": "\u7279\u65af\u62c9Model S\u5728\u6d77\u4e0a\u98de\u7fd4\uff0c\u6d77\u4e2d\u8fd8\u6709\u51e0\u4e2a\u5c9b\u5c7f\uff0c\u6d77\u91cc\u6e38\u52a8\u7740\u6050\u9f99\u3002"} +{"id": "0005536", "video_name": "1c73765a-2878-55e1-a89c-e348ff9bbddc", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7684\u7537\u5b69\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u3002"} +{"id": "1005904", "video_name": "6c8ab91a-409b-5364-8652-a4415e78a2fd", "text": "\u7e41\u5fd9\u57ce\u5e02\u4e2d\u5236\u4f5c\u6d53\u7f29\u5496\u5561\u3002"} +{"id": "0006178", "video_name": "27c39498-bb98-55f5-abde-0b360bc158c0", "text": "\u5236\u4f5c\u4e00\u53ea\u9006\u621f\u9cb8\u4e0e\u9ca8\u9c7c\u640f\u6597\u3002"} +{"id": "0003641", "video_name": "40e8bd98-5860-5458-87c3-170ca2f4c653", "text": "\u4e1c\u65b9\u7684\u53e4\u4ee3\u56fd\u738b\u5728\u6c99\u6f20\u4e2d\u3002"} +{"id": "8002271", "video_name": "3b3f60cf-3309-5ee9-8592-b4e715f5f617", "text": "\u6cd5\u62c9\u5229488\u8718\u86db\u4ee5300\u82f1\u91cc\u6bcf\u5c0f\u65f6\u7684\u901f\u5ea6\u884c\u9a76\uff0c\u8df3\u4e0b\u60ac\u5d16\u3002"} +{"id": "8002363", "video_name": "1297b167-7619-56ff-85f7-8bf2d08ce970", "text": "\u4e2d\u4e16\u7d00\u57ce\u5821\u65e5\u843d\u6642\u6709\u98db\u9f8d\u7684\u96fb\u5f71\u611f\u3002"} +{"id": "0003894", "video_name": "455ea680-0d11-5ffb-a588-82f58cea332d", "text": "\u5973\u4eba\u7528\u624b\u6307\u5728\u667a\u80fd\u624b\u673a\u4e0a\u8f93\u5165\u6587\u5b57\u3002"} +{"id": "8003280", "video_name": "4aa070b0-20a0-581a-9576-bad692d3f245", "text": "\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u9e1f\u513f\uff0c\u661f\u661f\u73af\u7ed5\u3002"} +{"id": "2005301", "video_name": "cf7437e5-9679-5860-860f-d9e1d4e37e84", "text": "\u4eba\u624b\u5728\u767d\u8272\u7b14\u8bb0\u672c\u4e0a\u753b\u5355\u8f66\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u4e8c\u7ef4\u52a8\u753b\uff0c5\u79d2\u52a8\u753b\u3002"} +{"id": "2006459", "video_name": "4df5c43c-5a61-5150-b27e-21736ef25014", "text": "\u73b0\u5b9e\u7684\u9cb8\u9c7c\u5728\u5929\u7a7a\u6e38\u52a8\uff0c\u4ece\u5de6\u5411\u53f3\u524d\u8fdb\u3002"} +{"id": "2007025", "video_name": "f6ecf995-df76-5adc-b7e9-4f66788b097f", "text": "\u673a\u7ec4\u6210\u5458\u5411\u5cb8\u8fb9\u6325\u624b\u544a\u522b\u3002\u4f7f\u7528\u7a7a\u4e2d\u955c\u5934\u6355\u6349\u6d77\u6d0b\u7684\u5e7f\u9614\u3002"} +{"id": "3006402", "video_name": "9a6bc99a-c556-5100-8b7b-accea071afcc", "text": "\u5c0f\u578b\u3001\u591a\u6b21\u7c7b\u4f3c\u70df\u82b1\u822c\u7684\u7206\u70b8\u5728\u4ece\u5185\u90e8\u89c2\u5bdf\u7684\u5927\u8111\u8d28\u91cf\u7684\u89d2\u843d\u53d1\u751f\uff0c\u8fd9\u662f\u4e00\u6bb5\u7535\u5f71"} +{"id": "3006201", "video_name": "6583b554-9ba7-567d-b7a8-713bc3eeb2c5", "text": "5\u79d2\u7684\u52a8\u753b\uff0c\u5c0f\u8001\u4eba\uff0c\u957f\u767d\u8272\u7684\u80e1\u987b\uff0c\u957f\u7ea2\u8272\u7684\u5c16\u5e3d\u5b50\uff0c\u68d5\u8272\u7684\u76ae\u9769\u8863\u670d\uff0c\u6728\u6756\uff0c\u5927\u80cc"} +{"id": "3003953", "video_name": "5a5b3485-42a9-5978-88fd-c6f147eb3b0a", "text": "\u4e00\u6bb5\u89c6\u9891\u4e2d\u6709\u4e00\u4e2a\u673a\u5668\u4eba\u7535\u89c6\u65b0\u95fb\u4e3b\u64ad\u5728\u7535\u89c6\u5de5\u4f5c\u5ba4\u91cc\u8c08\u8bba\u8fc7\u5ea6\u65c5\u6e38\u548c\u8352\u51c9\u7684\u5c9b\u5c7f\uff0c\u65b0\u95fb\u6eda\u52a8\u6761"} +{"id": "1006614", "video_name": "793d5802-8665-5578-bbec-3c7c9cbe9521", "text": "\u677e\u9f20\u70ab\u8000\u5b83\u7684\u901f\u5ea6\uff0c\u98de\u5954\u800c\u8fc7\u4e00\u7fa4\u8bd5\u56fe\u98de\u884c\u7684\u5c0f\u9e1f\u3002\u6355\u6349\u5b83\u4eec\u7684\u656c\u754f\u548c"} +{"id": "0006996", "video_name": "3662e28d-bcff-5275-ad15-74b635734ac2", "text": "\u4e00\u68f5\u94b1\u6811\u5728\u76d1\u72f1\u7262\u623f\u91cc\u751f\u957f\u3002"} +{"id": "3006827", "video_name": "1d51e72d-9846-51f0-931e-1b346b2da7f4", "text": "\u798f\u5c14\u6469\u65af\u4fa6\u63a2\u5728\u79d1\u5e15\u5361\u5df4\u7eb3\u6d77\u6ee9\u6f2b\u6b65\uff0c\u4eab\u53d7\u590f\u65e5\u548c\u5361\u4f0a\u76ae\u6797\u4e9a\u9e21\u5c3e"} +{"id": "4004770", "video_name": "7a6a46d6-9c0b-5add-abb6-058a7c004d71", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797\uff0c\u6709\u96e8\u6c34\u3001\u5c71\u8109\u3001\u5929\u7a7a\u3002\u4fe1\u606f\uff1aS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004533", "video_name": "2511ee39-1403-5b80-99f0-4fcb218f2921", "text": "\u95ea\u95ea\u53d1\u5149\u7684\u6a59\u8272\u6e85\u6cfc\u914d\u4e0a\u50ac\u7720\u9ed1\u767d\u6ce2\u7eb9\u3002"} +{"id": "0005009", "video_name": "132cf0ab-c9cd-53bc-b42e-e3d2514db184", "text": "\u7535\u89c6\u673a\u653e\u5728\u684c\u5b50\u4e0a\u64ad\u653e\u300a\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u300b\u3002"} +{"id": "0005718", "video_name": "2015e140-a0c7-5788-aa31-3048d32a101b", "text": "\u82b1\u57ce\u4e00\u7537\u4e00\u5973\u3002"} +{"id": "6003519", "video_name": "344a1def-9a73-5789-af6a-fd20f3b48800", "text": "\u7231\u5c14\u5170\u56fd\u65d7\u5728\u5e1d\u56fd\u5927\u53a6\u7684\u9876\u7aef\n\nSource sentence: I love Chinese food, especially dumplings. \n\u6211\u559c\u6b22\u4e2d\u56fd\u98df\u7269\uff0c\u7279\u522b\u662f\u997a\u5b50"} +{"id": "3004561", "video_name": "3eb92a92-92ff-54e8-9042-68acfd9caaee", "text": "\u56f4\u7ed5\u5916\u661f\u884c\u661f\u8f68\u9053\u8fd0\u884c\u7684\u536b\u661f\u6b63\u5728\u626b\u63cf\u884c\u661f\u4e0a\u7684\u751f\u547d\u5f62\u5f0f\u3002"} +{"id": "2003500", "video_name": "4907c253-a916-5a2e-baf2-17ea47de5afa", "text": "\u4e00\u4e2a\u5e26\u6709\u9f7f\u8f6e\u548c\u673a\u68b0\u96f6\u4ef6\u7684\u53f2\u8bd7\u822c\u7684\u7eb9\u7ae0\u3002"} +{"id": "1003845", "video_name": "46ddcc01-7e36-5e69-93b2-524865a3702b", "text": "\u91d1\u67aa\u9c7c\u653e\u5728\u4e00\u4e2a\u900f\u660e\u7684\u7897\u91cc\u3002\u73b0\u5728\u5c06\u91d1\u67aa\u9c7c\u788e\u7247\u4e0e\u6c99\u8336\u9171\u548c\u86cb\u9ec4\u9171\u6df7\u5408\uff0c"} +{"id": "7004330", "video_name": "93b267c4-fea3-5326-9b3a-04dfad5837ca", "text": "\u5361\u901a\u89d2\u8272\u7684\u4e0a\u534a\u8eab\u662f\u900f\u660e\u7684\uff0c\u800c\u4e0b\u534a\u8eab\u5219\u53d8\u6210\u534a\u900f\u660e\u3002"} +{"id": "6002402", "video_name": "748fd13a-f50e-5039-986a-872b868467d2", "text": "\u5c55\u73b0\u51fa\u88ab\u5947\u602a\u5149\u8292\u7167\u8000\u7684\u9634\u68ee\u623f\u95f4\uff0c\u91cc\u9762\u6446\u653e\u7740\u8be1\u5f02\u7684\u6587\u7269\u3002\u9ed1\u767d16:9\u3002"} +{"id": "2006626", "video_name": "267cde82-fa81-5df1-85c5-a67eda8e117a", "text": "\u767d\u8272\u8054\u90a6\u5927\u697c \u4fe1\u606f: 1 \u9644\u4ef6"} +{"id": "2006969", "video_name": "1ae6e4bf-1992-56a8-9c02-a8d61f480bc9", "text": "\u5728\u4e00\u8258\u8239\u4e0a\uff0c\u6709\u4e00\u53ea\u5de8\u578b\u7ae0\u9c7c\u5728\u56db\u5904\u79fb\u52a8\u3002"} +{"id": "2004092", "video_name": "0d9d44e9-8ebe-5c22-87e4-2bb02bd6e5d5", "text": "\u4e00\u4e2a\u6709\u5496\u5561\u5e08\u5728\u5de5\u4f5c\u7684\u8212\u9002\u5496\u5561\u5e97\u3002"} +{"id": "0005690", "video_name": "1f758938-c4f2-53a9-9b3a-287472b42351", "text": "\u4e09\u8272\u65d7\uff0c\u9ec4\u3001\u84dd\u3001\u7ea2\u5404\u5360\u4e09\u5206\u4e4b\u4e00\u3002"} +{"id": "0003545", "video_name": "3f43163b-5c4b-59ec-bd00-a92b3dd4b15b", "text": "\u519c\u6c11\u5728\u7389\u7c73\u5730\u6447\u624b\u5411\u6444\u50cf\u673a\u81f4\u610f\u3002"} +{"id": "8001406", "video_name": "47743ebf-9df4-519a-973d-afd9140dd4e9", "text": "SAX AND ROLL\u6807\u5fd7\u7684\u989c\u8272\u6709\u6447\u6eda\u3001\u590d\u53e4\u3001\u97f3\u4e50\u548c\u6280\u672f\uff0c\u5177\u6709\u8868\u73b0\u529b\u3002 \n\nSource sentence: Can you recommend a good Chinese restaurant in the area?"} +{"id": "8001949", "video_name": "aeed41cd-71a8-5798-9e1c-dcff9c783943", "text": "\u4e24\u4e2a\u5c0f\u7537\u5b69\u548c\u4e24\u4e2a\u5c0f\u5973\u5b69\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "8001393", "video_name": "db431ecf-c988-59d1-bfac-79f6e006c996", "text": "\u68d2\u4eba\u5f62\u8f6c\u6362\u6210\u4e0b\u72d7\u5f0f\u745c\u4f3d\u59ff\u52bf\uff0c\u5f62\u6210\u5012\u7acb\u7684V\u5f62\u72b6\u3002"} +{"id": "6002548", "video_name": "c7eac8ef-e3ec-5d95-b866-705036e1e862", "text": "\u6296\u97f3\u683c\u5f0f\u7684\u6d3b\u52a8\u53cd\u5bf9\u5728\u571f\u8457\u4eba\u571f\u5730\u4e0a\u672a\u7ecf\u540c\u610f\u7684\u98ce\u529b\u53d1\u7535\u673a\u3002"} +{"id": "3003140", "video_name": "1b0ecc56-3276-5b5c-acc2-141e59572a52", "text": "\u4e00\u90e8\u5173\u4e8e\u5355\u604b\u7684\u77ed\u7247"} +{"id": "2007168", "video_name": "b32943d3-25ac-5794-bc76-727731469c23", "text": "\u52a8\u6001\u6d41\u52a8\u7684\u5f69\u8679\u6cb3\u6d41\uff0c\u8d85\u51e1\u8131\u4fd7\uff0c\u795e\u79d8\u83ab\u6d4b\u3002"} +{"id": "7004092", "video_name": "baeceb7c-52eb-5dc6-bbed-2b0a15179dfb", "text": "\u7531\u4e0a\u65b9\u89c2\u5bdf\u7684\u5de8\u5927\u67f1\u5b50\u7684\u8ff7\u5bab\u3002"} +{"id": "7003289", "video_name": "ea143ce3-ad4e-5cb2-903c-d2ad845f9e04", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u5728\u623f\u95f4\u91cc\u770b\u7740\u4fc3\u9500\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "4002923", "video_name": "79514422-596a-5615-82aa-9b522fb5af71", "text": "\u4eba\u4eec\u56de\u5bb6\u540e\u653e\u4e0b\u81ea\u5df1\u7684\u5305\u88f9\u3002"} +{"id": "0006326", "video_name": "2aac13d1-e4e6-5c46-b8ec-d9fe06f9671a", "text": "\u84dd\u8272\u3001\u9ec4\u8272\u548c\u68d5\u8272\u7684\u6e7f\u6c34\u5f69\u88ab\u767d\u7eb8\u5438\u6536\uff0c\u5f62\u6210\u67ab\u53f6\u56fe\u50cf\uff0c\u767d\u8272\u80cc\u666f\uff0c\u9759\u6001\u4ece\u4e0a\u65b9"} +{"id": "7003495", "video_name": "38815c6b-8526-55a4-a981-6145b41d3f26", "text": "\u4e00\u53ea\u65e5\u6e10\u6210\u957f\u7684\u91d1\u8272\u5c0f\u7f8a\uff0c\u5728\u7535\u5f71\u822c\u7684\u753b\u9762\u4e2d\u3002"} +{"id": "4003681", "video_name": "0e9950d8-d6fc-5bdb-b61c-33f5915b0a1d", "text": "\u8bb8\u591a\u4ed3\u9f20\u5728\u57c3\u83f2\u5c14\u94c1\u5854\u4e0b\u73a9\u8f6c\u7740\u65cb\u8f6c\u6728\u9a6c\u3002"} +{"id": "3003177", "video_name": "1ac58d54-85c4-5299-9d4d-7233c1018371", "text": "\u751f\u6210\u8fd9\u5f20\u7167\u7247\u4e3a\u771f\u5b9e\u7684\u89c6\u9891\u3002"} +{"id": "1006285", "video_name": "731b1175-6dd7-5cbf-8a84-5b0e88d5e098", "text": "\u7ad9\u5728\u5de8\u6d6a\u68a6\u5883\u524d\u3002"} +{"id": "3004978", "video_name": "ca4bf3cf-aa00-55d2-86b8-802c44e2c3b4", "text": "\u8212\u9002\u7684\u9910\u5385\uff0c\u6709\u4e00\u4e2a\u5927\u7a97\u6237\uff0c\u900f\u8fc7\u5b83\u8f7b\u67d4\u5730\u4e0b\u7740\u96e8\u3002"} +{"id": "7004614", "video_name": "5abf886a-fe3a-5045-aa66-8b62de3147af", "text": "\u5b87\u5b99\u4e2d\u7684\u4e00\u8258\u661f\u8230\u6467\u6bc1\u5176\u4ed6\u661f\u8230\u3002"} +{"id": "2006568", "video_name": "3bdd2cef-8f45-59b0-8853-b2c3f70a8d49", "text": "\u7ebd\u7ea6\u9152\u5e97\u7684\u9897\u7c92\u72b6\u5f55\u50cf\u3002"} +{"id": "2004807", "video_name": "c1f6970b-17b6-53c9-b861-ff7ad9d9b53c", "text": "\u5728\u4e00\u4e2a\u4ff1\u4e50\u90e8\u91cc\u8df3\u821e\u7684\u4eba\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "7004212", "video_name": "6b73d54e-08c6-5907-842d-ad3233115dd9", "text": "1950\u5e74\u4ee3\u7684\u9ed1\u767d\u7f8e\u4e3d\u82b1\u56ed\uff0c\u56ed\u4e01\u6b63\u5728\u4fee\u526a\u704c\u6728\u3002"} +{"id": "2007558", "video_name": "bdf160b0-796b-56e2-91f2-d0fd0875b4fc", "text": "\u52a8\u6f2b\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u4e91\u5f69\u4e0a\u5954\u8dd1\uff0c\u5934\u4e0a\u6234\u7740\u7ea2\u8272\u7684\u6807\u7b7e\u3002"} +{"id": "7002283", "video_name": "b00359b9-49cc-5029-8905-7a0214317b82", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5feb\u901f\u79fb\u52a8\u7684\u7535\u5f71\u5f0f\u65f6\u95f4\u6d41\u901d\uff0c\u5c55\u73b0\u4e86\u4e2d\u4e16\u7eaa\u6b27\u6d32\u771f\u5b9e\u7684\u5927\u57ce\u5821\u548c\u7f8e\u4e3d\u7684\u65e5\u843d"} +{"id": "2003627", "video_name": "c1b250c3-379f-591e-9fb5-3159139d7444", "text": "\u7528\u52a8\u753b\u98ce\u683c\u521b\u4f5c\u4e00\u4e2a\u706b\u5f71\u5fcd\u8005\u548c\u4f7f\u547d\u53ec\u5524\u5e7d\u7075\u4e4b\u95f4\u7684\u6253\u6597\u573a\u666f\u3002"} +{"id": "8001921", "video_name": "163a52f0-8aeb-55cc-855a-a8f580cf4b70", "text": "\u4e00\u4e2a\u5c0f\u53ef\u7231\u7684\u6a59\u8272\u7ae0\u9c7c\uff0c\u5728\u6df1\u6c34\u533a\uff0c\u9ad8\u54c1\u8d28\uff0c\u5361\u901a\u98ce\u683c\uff0c\u53ea\u6709\u4e24\u53ea\u773c\u775b\uff0c\u4ece\u8fdc\u5904\u770b\u662f3D\u7684"} +{"id": "4004091", "video_name": "e05b8df2-bacb-5729-b5a4-60097a532ce2", "text": "Translation: \u827e\u5c14\u83ab\u4ece\u5efa\u7b51\u7269\u4e0a\u8df3\u4e0b\uff0c\u7535\u5f71\u822c\u7684\u53f2\u8bd7\u8df3\u8dc3\uff0c\u7f29\u5c0f\u753b\u9762\uff0c\u771f\u5b9e\u7684\u8fd0\u52a8\u3002"} +{"id": "0004649", "video_name": "0ca16651-45b2-5b02-8290-6011a66eafc3", "text": "\u4e00\u4e2a\u540d\u53eb\u827e\u739b\u7684\u5c0f\u5973\u5b69\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u6b63\u5728\u5979\u7684\u7d20\u63cf\u672c\u4e0a\u753b\u753b\u3002"} +{"id": "3003172", "video_name": "5ed088cd-2d99-53fb-92a8-0e9673cb709f", "text": "\u5723\u8bde\u8001\u4eba\u548c\u767d\u8272\u9e7f\u5728\u51b0\u5c9b\uff0c\u6781\u5149\u5728\u4e0a\u65b9\u3002"} +{"id": "1003422", "video_name": "3f38e0f5-35c3-5be7-b63b-3c650d8d57ea", "text": "\u4ece\u7ecf\u5178\u7684\u8212\u9002\u98df\u54c1\u5230\u56fd\u9645\u7f8e\u98df\uff0c\u6211\u4eec\u7684\u98df\u8c31\u6536\u85cf\u662f\u4e00\u4e2a\u7b49\u5f85\u63a2\u7d22\u7684\u70f9\u996a\u5b9d\u5e93\u3002"} +{"id": "8002323", "video_name": "371eab9a-92b6-5ee9-a27b-d5adcf6409ec", "text": "\u5929\u7a7a\u3001\u592a\u9633\u3001\u4e91\u548c\u6d77\u7684\u7167\u7247\u3002"} +{"id": "6003138", "video_name": "e7e3fb6e-bcfd-5e3a-8794-e4c29fea877f", "text": "\u63cf\u7ed8\u4e00\u8f86\u516c\u4ea4\u8f66\uff0c\u8f66\u8f6e\u5728\u8fd0\u52a8\uff0c\u5448\u5706\u5f62\u79fb\u52a8\u3002"} +{"id": "2006835", "video_name": "64c9d2e4-f274-5945-883f-d2eecdeccc88", "text": "\u4e00\u4f4d\u7a7f\u7740\u7f8e\u56fd\u56fd\u65d7\u77ed\u88e4\u3001\u4e0a\u8863\u548c\u767d\u8272\u725b\u4ed4\u9774\u7684\u7f8e\u4e3d\u5973\u5b50\u5728\u8df3\u821e\u3002"} +{"id": "2006246", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "\u6218\u952440k\u7684\u7535\u5f71\u9884\u544a\u7247\u3001\u89d2\u8272\u8bbe\u8ba1\u3001\u52a8\u4f5c\u3002"} +{"id": "1003171", "video_name": "3a5f1e9a-7f47-53f6-bb0d-788e712c2aee", "text": "\u4e00\u53ea\u7329\u7329\u7a7f\u7740\u53e4\u9a70\u8863\u670d\uff0c\u7ad9\u5728\u8349\u6728\u4e1b\u751f\u7684\u5730\u65b9\uff0c\u4e0a\u9762\u653e\u7740\u8349\u8393\u679c\u51bb\u3002"} +{"id": "8001146", "video_name": "e98891c9-58c4-52e5-8c54-e7120a958ac3", "text": "\u6559\u5ba4\u91cc\u7684\u86cb\u753b\u4ee5\u6bcf\u79d220\u5e27\u7684\u901f\u5ea6\u52a8\u753b\u5316\u3002"} +{"id": "2004605", "video_name": "1b0dd0bc-759f-549a-85d8-f0690d1cf993", "text": "\u73b0\u5b9e\u7684\u5723\u8bde\u6811\u3002\u4fe1\u606f\uff1a\u5723\u8bde\u4e4b\u661f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4003968", "video_name": "29b2d65b-d286-5dd5-b395-36e394eae91a", "text": "\u8718\u86db\u4fa0\u548c\u82ad\u6bd4\u5728\u62f3\u51fb\u573a\u4e0a\u4e92\u76f8\u6bb4\u6253\uff0c\u7cbe\u7ec6\u7684\u7ec6\u8282\uff0c\u903c\u771f\u7684\u52a8\u4f5c\uff0c\u89c2\u4f17\u6b22\u547c\u3002"} +{"id": "6002143", "video_name": "c6be59b3-6881-5eea-aed4-24a5d9065bf7", "text": "\u9776\u5fc3\u7eb9\u6ce2\u72b6\u6c34\u6ef4\u5b8c\u7f8e\u5bf9\u79f0\u3002"} +{"id": "8002311", "video_name": "201cd50e-02a7-5581-a369-b64281380ca5", "text": "\u4e00\u4e2a\u7537\u5b69\u72ec\u81ea\u601d\u8003\u89e3\u51b3\u95ee\u9898\u3002"} +{"id": "0006277", "video_name": "29e61172-f9b0-59a3-8dcc-0cc119486398", "text": "\u6b27\u6d32\u864e\u6591\u732b\uff0c\u5750\u5728\u6276\u624b\u6905\u4e0a\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7535\u5f71\u706f\u5149\uff0c\u7535\u5f71\u62cd\u6444\u3002"} +{"id": "1003604", "video_name": "427562ac-f558-5a08-9c67-e84c3996280f", "text": "\u57ce\u5e02\u7199\u6518\u7684\u8857\u9053\u4e0a\uff0c\u80a4\u8272\u6df1\u7684\u4f0a\u8299\u8170\u95f4\u7ec6\u8170\uff0c\u53cc\u81c2\u4e0b\u5782\uff0c\u6234\u7740\u8033\u585e"} +{"id": "2003623", "video_name": "9a68a29a-dc27-5ee7-8877-0ca9563380af", "text": "\u591c\u665a\uff0c\u4e00\u4f4d\u5934\u53d1\u94f6\u767d\u7684\u8001\u5987\u4eba\u5728\u5c71\u95f4\u6cb3\u8fb9\u6307\u7740\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u3002"} +{"id": "8003375", "video_name": "716a4f89-cdcd-5150-a53f-9e36351f292b", "text": "\u65b0\u7bc7\u7ae0\u7684\u5f00\u542f"} +{"id": "2004850", "video_name": "7a2b6f28-edca-5ae7-bda4-2d2415b051f4", "text": "\u624b\u6301\u67aa\u652f\u7684\u7537\u4eba\uff0c\u6697\u623f\uff0c\u8d5b\u535a\u670b\u514b\u8b66\u63a2\u3002"} +{"id": "1004921", "video_name": "5afc870a-a8eb-5d84-8118-b28249de3f10", "text": "\u67f4\u72ac\u548c\u6469\u6258\u8f66\u4e00\u8d77\u5954\u8dd1\uff0c\u659c\u89c6\u524d\u666f\uff0c\u9ad8\u6e05\uff0cmidjunrnyv5\uff0cnovelAI\uff0c\u52a8\u753b\uff0c\u52a8\u6001\u52a8\u4f5c\u7535\u5f71\uff0c\u79fb\u9664"} +{"id": "4002366", "video_name": "c74f6570-e886-5b03-8c54-5ca7825e521c", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u5bf9\u4e00\u4e2a\u7537\u4eba\u53d1\u706b\u4e86\u3002"} +{"id": "3004084", "video_name": "7e109061-e3b6-51a7-8676-e44e004ac487", "text": "\u8fde\u63a5\u4e24\u4e2a\u57ce\u5e02\u7684\u6865\u6881\u521b\u9020\u3002"} +{"id": "5001290", "video_name": "03b5cb5f-16fc-5911-b5cb-aef62c0ee996", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u9884\u544a\u7247\uff0c\u5c55\u793a\u4e00\u4e2a\u4eba\u5750\u5728\u684c\u524d\u9605\u8bfb\u4e66\u7c4d\u5e76\u6253\u5b57\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u957f\u5ea6\u4e3a5\u79d2\u3002"} +{"id": "4003707", "video_name": "751b6a2a-2fbb-58a6-ae95-eb4da9ab8bf9", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u90a3\u91cc\u65e0\u804a\u5730\u770b\u7740\u6cb3\u6d41\uff0c\u5927\u6811\u8d77\u4e86\u706b\u3002\u65c1\u8fb9\u6709\u4e00\u53ea\u9e1f\u3002\u7167\u7247\u5199\u5b9e\uff0c\u7535\u5f71\u611f\u7167\u7247"} +{"id": "2004879", "video_name": "61508eaa-5b1d-5f51-80a6-f5721ff61726", "text": "\u592a\u7a7a\u4e2d\u6709\u661f\u661f\u548c\u661f\u4e91\uff0c\u4e2d\u5fc3\u6709\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u95e8\u6237\uff0c\u5f69\u8272\u706f\u5149\u5728\u95e8\u6237\u8868\u9762\u8fd0\u884c\u3002"} +{"id": "2007325", "video_name": "91051e1a-ff43-52d2-8849-b1ee30c606ff", "text": "\u52b3\u65af\u83b1\u65af\u524d\u76d6\u88c5\u9970\u6446\u4ef6\u7684\u8fd1\u8ddd\u79bb\u89c6\u9891\u3002"} +{"id": "3003649", "video_name": "f2a1d287-6752-5119-b151-2c3e83e86efe", "text": "\u4e3aTikTok\u8d26\u6237\u521b\u5efa\u4e00\u4e2a\u795e\u79d8\u7684\u6807\u5fd7\u3002"} +{"id": "6003212", "video_name": "28328c8a-509d-528b-8f4d-9b220ff14925", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u91ce\u751f\u68ee\u6797\u4e2d\u7684\u591c\u665a\uff0c\u6709\u5f88\u591a\u6811\uff0c\u6708\u5149\u4e0d\u662f\u5f88\u4eae\u3002\n\nSource sentence: I am looking for a good Chinese restaurant near my"} +{"id": "6003889", "video_name": "fe326c51-53be-5e67-84c5-d7a61875e7c1", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u8001\u9f20\u63e1\u624b\u7684\u52a8\u753b"} +{"id": "6003508", "video_name": "450e7d4a-10d3-5919-87e1-e5a4af3c6f96", "text": "\u4e2d\u4e16\u7eaa\u6b66\u5668\u548c\u76d4\u7532\u7684\u6df7\u5408\u7269\uff0c\u73af\u7ed5\u7740\u571f\u6c9f\u3002\u4fe1\u606f\uff1aNifty Craft\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2004765", "video_name": "475a17c4-ca05-5c4f-a222-26da68d07d6e", "text": "\u5b69\u5b50\u4eec\u5728\u4ed6\u4eec\u7684\u67e0\u6aac\u6c34\u644a\u4e0a\u5356\u67e0\u6aac\u6c34\u3002"} +{"id": "6002008", "video_name": "b38ec728-97e8-55e3-9808-3f427dcc61c9", "text": "\u5728\u5d16\u4e0a\u89c2\u770b\u4e00\u5ea7\u57ce\u5821\uff0c\u4ee5\u585e\u5c14\u8fbe3\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u5b83\u975e\u5e38\u9ad8\uff0c\u89c6\u91ce\u524d\u65b9\u6709\u4e91\u3002"} +{"id": "0004870", "video_name": "109f0434-14b5-57e0-b47e-4d38ee36e421", "text": "\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u5149\uff0c\u914d\u4ee5\u4ee4\u4eba\u60ca\u53f9\u7684\u6e56\u666f\uff0c\u662f\u89c2\u661f\u7684\u7edd\u4f73\u573a\u6240\u3002"} +{"id": "0006592", "video_name": "2f30899e-b2ac-5dfe-9a02-e79cb9d54b5e", "text": "\u4e00\u4e2a\u4eba\u770b\u7740\u955c\u5b50\u91cc\u7684\u6076\u9b54\uff0c24 \u5e27\u6bcf\u79d2\uff0c\u79fb\u52a8 5\u3002"} +{"id": "0006496", "video_name": "2d7ef4a0-a8e7-59b7-8931-e1ebcd1109b8", "text": "\u4e00\u4e2aDJ\u53bb\u5404\u4e2a\u770b\u8d77\u6765\u4e94\u5f69\u6591\u6593\u3001\u8ff7\u5e7b\u7684\u5730\u65b9\u64ad\u653e\u97f3\u4e50\uff0c\u4e3a\u4e0d\u540c\u7684\u751f\u7269\u6f14\u594f\uff0c\u5b83\u4eec\u90fd\u5f88\u559c"} +{"id": "2003249", "video_name": "bfae6f52-bb6d-53e0-830c-938f2ae1da20", "text": "\u4e00\u4e2a\u4ee5\u8d5b\u535a\u670b\u514b\u573a\u666f\u4e3a\u80cc\u666f\u7684\u903c\u771f\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\u3002\u7b2c\u4e00\u573a\u666f\u63cf\u8ff0\u4e00\u9897\u70bd\u70ed\u7684\u5904\u7406\u5668\uff0c\u6563\u53d1\u7740"} +{"id": "6003604", "video_name": "cfe05c18-b877-5845-9e3b-dac4dae0b0f8", "text": "\u4e00\u4e2a\u5728\u7530\u91ce\u91cc\u5954\u8dd1\u7684\u4e4c\u9f9f\u961f\u5f62"} +{"id": "6003008", "video_name": "4531e22f-26d8-5545-86ba-683b89728810", "text": "\u6628\u5929\u770b\u770b\u884c\u661f\u7684\u60c5\u51b5\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2007279", "video_name": "85b8bb67-7700-5bc4-b283-18367387719f", "text": "\u9ca8\u9c7c\u5728\u6f5c\u6c34\u5458\u6240\u5728\u7684\u7b3c\u5b50\u9644\u8fd1\u6e38\u6cf3\u3002"} +{"id": "3005461", "video_name": "c593332d-c1f6-51ea-82b6-557e37acaade", "text": "\u7537\u5b69\u7728\u7728\u773c\u775b\uff0c\u7136\u540e\u773c\u775b\u4ece\u84dd\u8272\u53d8\u6210\u7ea2\u8272\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "1004232", "video_name": "4e63a18d-49d1-57e2-b308-3e187aa24679", "text": "\u6d6a\u6f2b\u7684\u5386\u53f2\uff0c\u7537\u5b69\u548c\u5973\u5b69\u7684\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "0004543", "video_name": "0af5a1a1-200f-57c9-a48b-66f1e9fc0091", "text": "\u6df7\u5408\u9e21\u8089\u548c\u8df3\u8dc3\u7684\u9cc4\u9c7c\uff0c1970\u5e74\u7684\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0004061", "video_name": "0288c604-5c8e-52a5-b95c-2b28da7db11f", "text": "\u8ba1\u5212\u8bc8\u9a97\uff08\u73b0\u4ee3\u5b57\u4f53\uff09"} +{"id": "2004489", "video_name": "e8abc457-32ac-5412-b4c2-8bc300bea8fd", "text": "\u5927\u578b\u53d8\u5f62\u673a\u5668\u4eba\uff0c\u8eab\u4f53\u95ea\u8000\u7740\u84dd\u8272\u5149\u8292\uff0c\u771f\u5b9e\u5b58\u5728\u3002"} +{"id": "7002974", "video_name": "d8a61dd0-5cd8-5d65-bc9c-9e1f7ce4a216", "text": "\u8ba8\u8bba\u4ed6\u4eec\u5728\u5c1d\u8bd5\u8fdb\u5165\u9501\u5b9a\u7684\u623f\u95f4\u65f6\u9762\u4e34\u7684\u6311\u6218\u3002"} +{"id": "2007255", "video_name": "963fe7e0-c8e1-554b-b052-2f86ac13b58b", "text": "\u5728\u89c6\u89c9\u4e0a\u5448\u73b0\u72b9\u592a\u590d\u56fd\u4e3b\u4e49\u548c1917\u5e74\u5df4\u5c14\u798f\u5ba3\u8a00\u7684\u6982\u5ff5\uff0c\u8fd9\u5f15\u53d1\u4e86\u8be5\u5730\u533a\u7684\u7d27\u5f20\u5c40\u52bf\u3002"} +{"id": "8002030", "video_name": "666fdaff-5384-57e7-9f0f-65deb030338b", "text": "\u505a\u4f60\u81ea\u5df1\uff0c\u56e0\u4e3a\u5176\u4ed6\u4eba\u5df2\u7ecf\u88ab\u5360\u7528\u4e86\u3002\u2014\u2014\u5965\u65af\u5361\u00b7\u738b\u5c14\u5fb7"} +{"id": "8002101", "video_name": "e5b1acf1-0a56-5882-a90e-20e5acc1bc6e", "text": "\u6821\u56ed\u96e8\u5929\u91cc\u9752\u86d9\u7684\u9003\u8131\u5386\u9669"} +{"id": "2003691", "video_name": "c6c2adcb-895f-55e5-8cff-a0a9b681801d", "text": "\u4eba\u7269\u5728\u8d70\u8def\uff0c\u5c0f\u72d7\u5728\u8df3\u8dc3\u3002"} +{"id": "8003070", "video_name": "9f7719e6-46de-5055-9d43-c4e210e81192", "text": "\u7ebd\u7ea6\u9152\u5e97\u7684\u666f\u8272\u3002"} +{"id": "2003207", "video_name": "9352f377-4c93-5ccb-8a2e-eb5dd451ff9c", "text": "\u9e26\u7247\u9e1f\u5728\u6d77\u5e95\u6e38\u6cf3\u3002"} +{"id": "2003800", "video_name": "58e78f10-0401-5789-be26-210f1ecafb1d", "text": ") \n\nTranslation: \u56fd\u738b\u6c89\u91cd\u7684\u5fc3\u60c5\u4e2d\u610f\u8bc6\u5230\u4e86\u4ed6\u7684\u611a\u8822\u6df1\u5ea6\u3002"} +{"id": "1006725", "video_name": "7b3a12c1-1365-576e-b33e-82a8d24efb98", "text": "\u9e3d\u5b50\u5f62\u72b6\u7684\u516c\u4ea4\u8f66"} +{"id": "0003043", "video_name": "35ff6474-5570-5336-a9b0-d9c3c90de648", "text": "\u5728\u6cb3\u6ee9\u4e0a\u7684\u5782\u9493\u7231\u597d\u8005"} +{"id": "4004588", "video_name": "af830058-f7c2-5189-8403-54328a374634", "text": "\u5728\u5bcc\u58eb\u5c71\u524d\u9762\u6b65\u884c\u7684\u65e5\u672c"} +{"id": "3005287", "video_name": "7f1a6196-c9a6-51aa-8c39-b33d076a2888", "text": "\u56db\u4e2a\u4e94\u89d2\u661f\u4f9d\u6b21\u5728\u4ee5\u592a\u4e2d\u51fa\u73b0\uff1a\u65e0\u9650\u5149\u8292\uff1a\u95ea\u70c1\u7684\u8272\u5f69\u3002"} +{"id": "1004160", "video_name": "4d0a7434-70f0-5be2-bd5b-3e08f7c10d7c", "text": "\u514b\u52b3\u65af\u00b7\u65bd\u74e6\u5e03\u548c\u9a6c\u514b\u00b7\u5415\u7279\u5728\u6df7\u4e71\u4e2d\u821e\u52a8\u5f97\u5f88\u597d\u3002"} +{"id": "8003817", "video_name": "8fe14e31-0006-5e64-b888-e0fb25dedfbb", "text": "\u5750\u5728\u4e00\u628a\u91d1\u8272\u7684\u6905\u5b50\u4e0a\uff0c\u5728\u6d77\u6d0b\u4e2d\u95f4\u4ea4\u8c08\uff0c\u80cc\u666f\u662f\u4e00\u573a\u5927\u98ce\u66b4\u3002\u8baf\u606f\uff1a\u4e00\u4f4d\u5deb\u5e08\uff08\u5b57\u4f53\uff1a"} +{"id": "8001648", "video_name": "b6ed4da9-42b2-5a05-bbf3-53e43d92d114", "text": "Source sentence: Juana la Loca\u770b\u7740\u6444\u50cf\u5934\u5fae\u7b11\u3002"} +{"id": "7002103", "video_name": "9126bbbe-fcf7-5b99-b115-4661d4119d50", "text": "\u7a7f\u7740\u957f\u767d\u888d\u7684\u5973\u4eba\u6b63\u9762\u9762\u5bf9\u7740\u955c\u5934\uff0c\u6e29\u6696\u7684\u706f\u5149\uff0c\u68ee\u6797\u80cc\u666f\u3002"} +{"id": "4002587", "video_name": "2ad7f4ef-8d1b-5b08-b653-6047308bccb7", "text": "\u4e00\u4e2a\u89c6\u9891\u5c55\u793a\u4e86\u6d77\u6d0b\u9000\u53bb\u79bb\u5f00\u6d77\u5cb8\u7ebf\uff0c\u63ed\u793a\u4e86\u8fdc\u5904\u7206\u53d1\u706b\u5c71\u7684\u6d77\u5e95\u6df1\u5904\u5728\u8fc8\u963f\u5bc6\u6d77\u6ee9\u3002"} +{"id": "1004598", "video_name": "559c938a-97a7-5baa-90ea-ce50ae050698", "text": "\u8ba9\u6559\u5e08\u4f20\u8fbe\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2004400", "video_name": "dbbbcd88-61c3-58f4-b37a-7d63682f577b", "text": "\u4e00\u4e2a\u8eab\u6750\u9ad8\u5927\u3001\u5934\u53d1\u98d8\u9038\u3001\u7a7f\u7740\u957f\u5927\u8863\u7684\u7537\u5b50\uff0c\u5728\u591c\u665a\u7ad9\u5728\u9ad8\u697c\u9876\u7aef\u4fef\u77b0\u7e41\u5fd9\u7684"} +{"id": "7002354", "video_name": "69ab00ef-6690-59e1-9523-f2a70e068b64", "text": "\u8a72\u540d\u7537\u5b50\u540d\u70ba\u8a79\u7d0d\u8fea\u723e\u00b7\u5854\u723e\u8fea\u62dc\u8036\u592b\uff0c\u5728\u963f\u65af\u5854\u7d0d\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "7002693", "video_name": "eac28db8-fbd0-5a16-b7f1-7d84eb72da17", "text": "\u505c\u683c\u52a8\u753b\uff0c\u5b9e\u9a8c\u6027\u7684\uff0c\u62bd\u8c61\u7684\uff0c\u7269\u4f53\u5728\u9ed1\u6697\u4e2d\u8df3\u821e\uff0c\u5faa\u73af\u3002"} +{"id": "7003110", "video_name": "e440007b-f5a0-5d43-aea7-27ccc0a2f0df", "text": "\u98de\u9f99\u4ece\u4e9a\u6d32\u6700\u9ad8\u7684\u5c71\u9876\u964d\u4e34\uff0c\u8fd9\u662f\u4e2d\u56fd\u9f99\uff0c\u55b7\u706b\u662f\u9f99\u6700\u5177\u4ee3\u8868\u6027\u7684\u80fd\u529b\u4e4b\u4e00\u3002\u8bb8\u591a\u4f20\u8bf4\u4e2d\u7684"} +{"id": "2003129", "video_name": "b548ac6c-29f3-5ff4-9052-a3ba3dd8dc9b", "text": "\u6709\u4eba\u62ff\u7740\u65a7\u5b50\u8d70\u8def\uff0c\u9e1f\u513f\u5728\u9e23\u53eb\uff0c\u98ce\u5728\u5439\u62c2\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "8001266", "video_name": "d8495d38-2631-5bec-8288-76dde4071153", "text": "\u4eba\u4f53\u4e2d\u50a8\u5b58\u7684\u80fd\u91cf\n\nSource sentence: The sun provides energy for plants to grow. \n\n\u592a\u9633\u4e3a\u690d\u7269\u63d0\u4f9b\u80fd\u91cf\u751f\u957f\u3002"} +{"id": "4003246", "video_name": "929f4a58-be93-5f99-b023-32342e859c39", "text": "\u7ea6\u7ff0\u00b7\u80af\u00b7\u83ab\u6ed5\u68ee\u7ed8\u5236\u7684\u4e00\u4f4d\u9a91\u58eb\u5728\u53e4\u7f57\u9a6c\u8df3\u821e\u7684\u753b\u4f5c\u3002"} +{"id": "1003048", "video_name": "38035755-420b-5f71-961c-e106b60eda34", "text": "\u8fd9\u5ea7\u78e8\u574a\u6b63\u5728\u8f6c\u52a8\uff0c\u6c34\u4e5f\u5728\u6d41\u6dcc\u3002"} +{"id": "1004433", "video_name": "51fdc529-ffb6-59ec-aff9-b954315b8893", "text": "MemoryLink\u7684\u5185\u90e8\u8fd0\u4f5c\u662f\u4e00\u4e2a\u5145\u6ee1\u60ac\u6d6e\u8bb0\u5fc6\u7684\u865a\u62df\u4e16\u754c\uff0c\u8fd9\u4e9b\u8bb0\u5fc6\u88ab\u5448\u73b0\u4e3a\u5168\u606f\u7403\u4f53\u3002"} +{"id": "7003423", "video_name": "702b22ce-f8c6-5588-aaae-da3818855d8b", "text": "\u6d77\u76d7\u52a8\u4f5c\u59ff\u52bf\uff0c\u5168\u8eab\uff0c\u8096\u50cf\u6bd4\u4f8b\uff0c4k\u5206\u8fa8\u7387\uff0c\u63e1\u5251\u3002"} +{"id": "6002313", "video_name": "2c1568e6-f8e7-5aa6-9052-15e030bc1380", "text": "\u672a\u6765\u6d1b\u6749\u77f6\u5c71\u8c37\u7684\u98de\u884c\u6c7d\u8f66\u3002"} +{"id": "3004044", "video_name": "72fdcfa6-6792-589a-b702-3d69bbc72318", "text": "1980\u5e74\u4ee3\u7684\u5899\u58c1\u624b\u52bf\u5e7f\u544a \nSource sentence: She loves to listen to music while studying. \n\u5979\u559c\u6b22\u8fb9\u542c\u97f3\u4e50\u8fb9\u5b66\u4e60\u3002"} +{"id": "2004064", "video_name": "e4040465-6130-5d93-8d50-61b46bba883e", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u672a\u6765\u57ce\u5e02\u91cc\u884c\u8d70\uff0c\u98de\u884c\u6c7d\u8f66\u98de\u8fc7\u3002"} +{"id": "1004617", "video_name": "55dcdd14-2ce9-5ce5-ae18-ecb8e943c7fc", "text": "\u9576\u5d4c\u7247\u6bb5\u706f\u5149\u95ea\u70c1\uff0c\u4e0d\u65ad\u53d8\u6362\u989c\u8272\u3002"} +{"id": "1004353", "video_name": "504bccab-31f7-583a-8eb1-17eceec2716f", "text": "\u4e00\u7537\u4e00\u5973\u624b\u7275\u624b\u8d70\u5728\u96ea\u5730\u5c0f\u5f84\u4e0a\uff0c\u7f8e\u4e3d\u7684\u666f\u8272\uff0c\u591c\u665a\uff0c\u4e0b\u7740\u96ea\uff0c\u7f13\u6162\u79fb\u52a8\uff0c\u6e29\u548c\u7684\u98ce"} +{"id": "8001813", "video_name": "9627c86b-1f30-5140-bc43-9f77bb234b5d", "text": "\u51ac\u5b63\u666f\u89c2\u4e2d\u7684\u6587\u5b57\u201c\u88ab\u56f0\u201d\u3002"} +{"id": "3006146", "video_name": "e8633a87-83b8-512c-b79f-df4d422824de", "text": "2030\u5e74\u7684\u57c3\u585e\u4fc4\u6bd4\u4e9a\u6570\u5b57\u9769\u547d\u4e2d\uff0c\u4e00\u540d\u7537\u5b50\u5728\u5f55\u97f3\u5ba4\u4f7f\u7528\u4eba\u5de5\u667a\u80fd\u8f6f\u4ef6\u8fdb\u884c\u5f55\u5236\u3002"} +{"id": "7002839", "video_name": "e0a55545-f2d0-5c14-a9e5-be0c3cafb1fb", "text": "\u4e00\u4e2a\u62f3\u51fb\u624b\u88ab\u6253\u5728\u8138\u4e0a\u540e\u6454\u5012\u76844K\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "3006868", "video_name": "5339d29b-5229-5321-b974-e26ed9cb5aff", "text": "\u5728\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u4e0b\u751f\u6210\u4e00\u53ea\u65e5\u672c\u795e\u8bdd\u4e2d\u7684\u9b3c\u3002"} +{"id": "5001999", "video_name": "78f6c795-2932-561d-8952-aa15e60b1bb8", "text": "\u4e00\u7537\u4e00\u5973\u5728\u8f66\u4e0a\u81ea\u62cd\uff0c\u903c\u771f\u3002"} +{"id": "7003625", "video_name": "aecd80d4-b0ee-5152-9a99-0398177fe2d8", "text": "\u7532\u57fa\u57fa\u56e2\u6dfb\u52a0\u5230DNA\u94fe\u4e2d\u3002"} +{"id": "6002353", "video_name": "24c14700-d03f-533c-a8dd-bd44a868ae08", "text": "\u5f71\u5b50\u5728\u5bab\u5899\u4e0a\u5199\u4e0b\u4e86\u201cPeechha Karti Parchhaiyan\u201d\u3002"} +{"id": "6002196", "video_name": "448065c8-14f3-5275-88d5-a32ca481d0f2", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u5f88\u9177\u7684\u89c6\u89c9\u6548\u679c\uff0c\u7528\u4e8e\u6587\u5b57\u201c\u5143\u7d20\u4f7f\u8005\u201d\u3002"} +{"id": "1005492", "video_name": "64f13e33-57ab-5fa7-bf86-4482908fcb2b", "text": "\u7f57\u5c3c\u00b7\u8a79\u59c6\u65af\u00b7\u8fea\u5965\u5728\u4e00\u6b21\u62cd\u6444\u4e2d\u6446\u59ff\u52bf\uff0c\u903c\u771f\u7ec6\u8282\u3002"} +{"id": "3005012", "video_name": "b80d6519-8a2e-5b65-bc33-323a3c1465d7", "text": "\u5173\u4e8e\u6e7f\u5a46\u795e\u548c\u6bd7\u6e7f\u5974\u795e\u7684\u8ba8\u8bba"} +{"id": "4003626", "video_name": "fa3a3a02-5af5-5345-9bcd-68b07ab0da4a", "text": "\u4e00\u7247\u5145\u6ee1\u9c7c\u7684\u706b\u6d77\u3002"} +{"id": "2005223", "video_name": "5d8b3098-37d5-5d9c-b3b3-49ce11e60274", "text": "\u4e24\u4e2a\u7537\u5b69\u5728\u4ece\u4e95\u91cc\u6551\u51fa\u732b\u540e\u9ad8\u5174\u5730\u5fae\u7b11\u7740\u5e76\u5f97\u610f\u5730\u770b\u7740\u5b83\u3002\u52a8\u753b\u3002"} +{"id": "7002341", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "\u4e00\u4e2a\u5370\u5ea6\u6559\u795e\u7947\uff0c\u7f8e\u4e3d\u5c11\u5e74\uff0c\u76ae\u80a4\u53d1\u5149\u50cf\u96e8\u4e91\u7684\u989c\u8272\u3002\u4ed6\u5439\u7740\u957f\u7b1b\uff0c\u5438\u5f15\u6240\u6709\u4eba\u7684\u5fc3"} +{"id": "3005805", "video_name": "76777de7-9431-5a75-b409-3c281dbc76f8", "text": "\u4e00\u4e2a\u5728\u706b\u661f\u4e0a\u884c\u8d70\u7684\u903c\u771f\u673a\u5668\u4eba\u4eba\u5f62\u3002"} +{"id": "4004988", "video_name": "7f998435-03c3-5dd8-b078-e0fd7888f0b6", "text": "\u4f60\u7684\u8138\u50cf\u7389\uff0c\u7709\u5982\u65b0\u6708\uff0c\u4f60\u771f\u7684\u5f88\u6f02\u4eae\u548c\u82b3\u9999\u3002\u56e0\u6b64\uff0c\u6211\u4f1a\u7ed9\u4f60\u4e00\u9996\u5510\u8bd7\uff1a\u7f8e\u4e3d\u7684\u8377"} +{"id": "0004771", "video_name": "0efbc5a7-657b-5cae-8565-a87a89e6802a", "text": "\u6258\u6770\u7985\u9662\u548c\u5510\u00b7\u5409\u8bc3\u5fb7\u00b7\u591a\u4f5b\u6717\u660e\u54e5\u7684\u878d\u5408"} +{"id": "6004901", "video_name": "d1f56a20-4c80-58a8-a71b-afda799aaf3b", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6c99\u6ee9\u4e0a\u884c\u8d70\uff0c\u5915\u9633\u897f\u4e0b\uff0c\u624b\u91cc\u62ff\u7740\u9ad8\u9ad8\u4e3e\u8d77\u7684\u76f8\u673a\u3002"} +{"id": "6004725", "video_name": "82c83578-0daa-563a-a643-e2c564721efa", "text": "\u5728\u6d77\u8fb9\u9910\u5385\uff0c\u4fef\u77b0\u5927\u6d77\uff0c\u4e00\u4e2a\u7f8e\u597d\u7684\u65e5\u5b50\u91cc\uff0c3D\u70e4\u6d77\u9c88\u9c7c\u3002"} +{"id": "2006013", "video_name": "24d902c0-1550-5ea5-97c5-55607b570255", "text": "\u5c0f\u9a6c\u8df3\u821e\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u9ad8\u6e05"} +{"id": "0006933", "video_name": "35797294-9dd8-54d1-a246-c816fa0bf74d", "text": "\u5973\u58eb\u5728\u5de5\u4f5c\u5ba4\u91cc\u7f1d\u5236\u8fea\u58eb\u5c3c\u5361\u901a\u98ce\u683c\u7684\u8fde\u8863\u88d9\u3002"} +{"id": "6003976", "video_name": "9b23382a-aed5-5ddc-914e-0d618f4e3d36", "text": "\u98ce\u5728\u9053\u8def\u4e0a\u6d41\u52a8\uff0c\u6726\u80e7\u3001\u795e\u79d8\u3001\u6050\u6016\u3001\u7535\u5f71\u5316\u3002"} +{"id": "1006441", "video_name": "75ec9588-0d2b-5ed0-9b9e-86a472e7a17c", "text": "\u4e00\u4e2a\u4eba\u5728\u5927\u81ea\u7136\u4e2d\u884c\u8d70\u7684\u8c61\u5f62\u56fe\u3002"} +{"id": "2007832", "video_name": "d82be3c3-256c-5c23-829a-f0e815319fcc", "text": "\u6d77\u76d7\u8239\u6b63\u5728\u6355\u635e\u4e00\u53ea\u6d77\u6d0b\u602a\u517d\u3002"} +{"id": "3006028", "video_name": "f6aa7364-925d-5533-bb95-16eb1b4a9fea", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u8d85\u903c\u771f\u7684\u91d1\u5c5e\u706f\u5149\uff0c\u4fe1\u606f\u4e3aGRAFF LIFE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8003047", "video_name": "0ca87d83-2aef-521f-9bb0-097de46cd120", "text": "\u4ece\u5929\u4e0a\u7684\u95e8\u6237\u4e2d\u53d6\u51fa\u4e00\u672c\u795e\u5723\u7684\u4e66\u3002"} +{"id": "2004171", "video_name": "a4e88796-ff41-5c03-a0de-1fcf011ecba6", "text": "\u98de\u8239\u5728\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u4e2d\u7206\u70b8\u4e86\u3002"} +{"id": "5001061", "video_name": "05794b02-bd8e-552a-9541-aa191b551d7f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u54c8\u74e6\u90a3\u7684\u8857\u9053\u4e0a\u5f00\u8f66\u3002"} +{"id": "0006042", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u6069\u5728\u8f9e\u53bb\u603b\u7edf\u804c\u52a1\u65f6\u5411\u4eba\u7fa4\u53d1\u8868\u8bb2\u8bdd\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u7740\u4ed6\u79fb\u52a8\u3002\u4f7f\u752810K"} +{"id": "3006679", "video_name": "49a0ffec-a573-5dff-8fa0-4f4ce320449c", "text": "\u63e1\u624b\u7a7f\u6cf3\u8863\u7684\u52a8\u6f2b\u5973\u5b69\u4eec\u3002"} +{"id": "6004322", "video_name": "1438e33a-ed0e-5ead-8b53-3c2fd5e797bd", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5077\u7a83\u7684\u5b89\u5168\u6444\u50cf\u5934\u5f55\u50cf\u3002"} +{"id": "2007658", "video_name": "e5b63885-07cc-527b-ab96-22d8341c46c5", "text": "\u94f6\u5634\u8fd0\u52a8\u6765\u81ea\u62e5\u6709\u94f6\u5507\u548c\u94f6\u76ae\u80a4\u4ee5\u53ca\u7535\u5b50\u7ec4\u4ef6\u7684\u5973\u4eba\uff0c\u76ae\u80a4\u7531\u767d\u8272\u4e9a\u514b\u529b\u5236\u6210\uff0c"} +{"id": "1004560", "video_name": "54a46270-dbf9-5b5d-a82c-3858dc3228f7", "text": "\u7f8e\u4e3d\u7684\u7ea2\u6728\u68ee\u6797\uff0c\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u53f2\u8bd7\u822c\u7684\u753b\u9762\u3002\u6d88\u606f\uff1aEcobee\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2006750", "video_name": "e5712713-b37d-5476-8efa-351b951d85da", "text": "\u53e4\u7f57\u9a6c\u519b\u961f\u884c\u519b\uff0c\u624b\u6301\u77db\u6216\u5251\uff0c\u6709\u4e9b\u9a91\u9a6c\u3002"} +{"id": "0006869", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "\u592a\u7a7a\u4e2d\u5f62\u6210\u4e00\u4e2a\u661f\u7cfb\u7684\u62cd\u6444\uff0c\u6d41\u7545\u7684\u52a8\u753b\uff0c4K\uff0c\u6ca1\u6709\u626d\u66f2\u3002"} +{"id": "1004565", "video_name": "54d02758-a17f-5511-97b3-9e1454847132", "text": "\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u6d1e\u3002"} +{"id": "3003946", "video_name": "619a3dcd-7b66-5dac-a727-3ea25709e543", "text": "\u4e00\u7247\u6811\u53f6\u5728\u6162\u52a8\u4f5c\u4e2d\u4ece\u5929\u7a7a\u98d8\u843d\u5230\u5730\u9762\u3002"} +{"id": "1003680", "video_name": "43da626d-877d-57b4-8db3-d6b9252ac0dd", "text": "\u4e24\u4e2a\u5361\u901a\u89d2\u8272\uff0c\u4e00\u4e2a\u7a7f\u8499\u53e4\u670d\u88c5\uff0c\u53e6\u4e00\u4e2a\u7a7f\u6c49\u670d\uff0c\u7740\u9646\u3002"} +{"id": "3004632", "video_name": "8541ee73-8578-5300-8e74-0a6d7b156311", "text": "\u4e00\u4e2a\u5728\u592a\u7a7a\u6f02\u6d6e\u7684\u534a\u673a\u68b0\u4eba\uff0c\u671b\u7740\u5730\u7403\uff0c\u7136\u540e\u4e00\u6839\u7535\u7f06\u8fde\u63a5\u5230\u5b83\u7684\u5934\u90e8\uff0c\u53e6\u4e00\u6839\u8fde\u63a5\u5230\u5b83"} +{"id": "0003133", "video_name": "37bdf81c-d938-57d1-8379-c8b2cf0ab63e", "text": "\u4e2d\u592e\u516c\u56ed\u7ebd\u7ea6\u7684\u771f\u5b9e\u8bb0\u5f55\uff0c\u9f3b snuff \u7535\u5f71\uff0c\u7535\u5f71\u7684\u5916\u89c2\u3002"} +{"id": "7003993", "video_name": "2f588c61-fcac-5462-969a-6e113a11f0c7", "text": "\u521b\u4f5c\u5de5\u4f5c\u5df2\u6392\u961f\u3002\u7ba1\u7406\u7740\u4e00\u67b6\u5750\u843d\u5728\u516c\u53f8\u9876\u90e8\u7684\u98de\u789f\uff0c\u5b83\u53ef\u4ee5\u770b\u5230\u57ce\u5e02\u7684\u5f88\u5927\u4e00\u90e8\u5206\uff0c\u8fd9\u4e2a\u98de"} +{"id": "6003464", "video_name": "3c1db858-6d09-5599-84b8-d4a030f7b3e5", "text": "\u4e00\u4e2a\u5e9e\u5927\u800c\u590d\u6742\u7684\u673a\u5668\u4eba\u5728\u6df7\u4e71\u7684\u5efa\u7b51\u7269\u4e2d\u8fc8\u6b65\u524d\u884c\uff0c\u5929\u7a7a\u88ab\u6d53\u96fe\u7b3c\u7f69\uff0c\u5149\u7ebf\u5fae\u5f31\u3002"} +{"id": "3003287", "video_name": "52b22ce3-1534-5a45-8c03-8de6ac6f3ed0", "text": "\u706b\u5c71\u5185\u90e8\u60ca\u5fc3\u52a8\u9b44\u8ff7\u4eba\u7684\u666f\u8c61\u3002"} +{"id": "1005085", "video_name": "5dca95c9-8fe3-561f-a8d0-d778df20bef5", "text": "\u5e78\u8fd0\u7684\u62ab\u8428\u53d8\u6210\u4e86\u6d3b\u751f\u751f\u7684\uff0c\u5e76\u5f00\u59cb\u8df3\u821e\u3002"} +{"id": "8001554", "video_name": "70ff0094-2053-565f-bc56-a8045943b64e", "text": "\u4f60\u53ef\u4ee5\u7ed9\u6211\u753b\u4e00\u5f20\u5de5\u4f5c\u574a\u91cc\u7684\u5957\u88c5\uff0c\u5305\u62ec\u4e00\u4ef6T\u6064\u3001\u4e00\u4ef6\u5939\u514b\u3001\u4e00\u6761\u9ed1\u88e4\u5b50\u548c\u4e00\u53cc\u5b89\u5168\u978b\u3002"} +{"id": "4004235", "video_name": "eb2a4feb-c710-53d1-a73a-d787274f3d99", "text": "\u4eba\u7c7b\u6b65\u5175\u5bf9\u6297\u5de8\u5927\u7684\u514b\u82cf\u9c81\u602a\u7269\uff0c\u800c\u4e00\u9897\u5c0f\u884c\u661f\u6b63\u5728\u63a5\u8fd1\u3002"} +{"id": "7004650", "video_name": "fbb0b3b9-1da3-5509-92e2-95270f0dc3dd", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b69\u5728\u65e9\u4e0a9:35\u7684\u9633\u5149\u4e0b\u7684\u7167\u7247\u3002"} +{"id": "4003147", "video_name": "009fa0a2-00f5-5bea-a366-ea4832348c4e", "text": "\u4e00\u53ea\u732b\u5728\u7ea2\u8272\u5ddd\u5d0e\u6469\u6258\u8f66\u4e0a\u3002\u653e\u5927\u89c6\u89d2\u770b\u6574\u8f86\u6469\u6258\u8f66\u3002\u6469\u6258\u8f66\u5728\u79fb\u52a8\u3002"} +{"id": "0005267", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "\u9152\u5e97\u7ecf\u7406\u548c\u5458\u5de5\u4ea4\u8c08\uff0c\u9152\u5e97\u80cc\u666f\u8bbe\u7f6e\uff0c\u903c\u771f\u3002"} +{"id": "0004065", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "\u53e4\u4ee3\u7ef4\u4eac\u4eba\u5728\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u4f7f\u7528\u592a\u9633\u77f3\uff0c\u5f53\u5c71\u4e00\u6837\u7684\u6ce2\u6d6a\u548c\u5f3a\u70c8\u7684\u96e8\u6c34\u964d\u843d\u65f6\u3002"} +{"id": "7004454", "video_name": "8b4d479b-e9f7-5208-a579-b55295c1de4f", "text": "\u9ed1\u8272\u5b89\u606f\u65e5\u8fea\u5965\u94f6\u6cb3\u7f8e\u4eba\u9c7c\u7a7a\u95f4\u57ce\u5821\u5728\u6ce1\u6ce1\u4e4b\u4e2d\u7684\u5e7b\u60f3\u753b\u4f5c\uff0c\u7ea61977\u5e74\uff0c\u7a7a\u5c71\u57fa\uff0c\u963f\u65b9"} +{"id": "4003280", "video_name": "411258c9-ab56-5994-9f15-5d4ba7fbe014", "text": "\u7535\u7ebf\u6746\u5728\u8fdc\u5904\uff0c\u4e00\u4e2a\u8352\u829c\u7684\u5c71\u9876\uff0c\u5929\u7a7a\u4e2d\u6709\u591a\u6839\u7535\u7f06\uff0c\u9ed1\u767d\u76f8\u95f4\u3002"} +{"id": "0003948", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u62f7\u95ee\u5ba4\u91cc\u89e6\u7535\u8eab\u4ea1\u3002"} +{"id": "3005891", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "\u5154\u5b50\u5728\u626d\u66f2\u7684\u85e4\u8513\u3001\u6ed1\u6e9c\u7684\u77f3\u5934\u548c\u591a\u523a\u7684\u704c\u6728\u4e1b\u4e2d\u594b\u529b\u524d\u884c\u3002\u5c3d\u7ba1\u5b83\u975e\u5e38\u654f"} +{"id": "6003988", "video_name": "4fe0c9e3-ea2a-5749-ae13-25d6aa5577c8", "text": "\u4e00\u540d\u5973\u5b50\u5750\u7740\uff0c\u4e0b\u5df4\u642d\u5728\u624b\u4e0a\uff0c\u662f\u4e00\u5f20\u7167\u7247\uff0c\u6765\u81eatumblr\uff0c\u98ce\u683c\u4e3ahurufiyya\uff0c\u62e5\u6709\u8910\u8272\u5934"} +{"id": "0003461", "video_name": "3df3c39a-a544-5ef6-bcdd-7819e4525506", "text": "\u5929\u4e3b\u6559\u5f25\u6492\u3002\u7267\u5e08\u8d70\u8fc7\u8fc7\u9053\u3002\u8d85\u7ea7\u903c\u771f\u30021980\u5e74\u3002\u4fee\u590d\u7684\u955c\u5934\u3002"} +{"id": "3006189", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "Source sentence: \u73ca\u745a\u7901\u5c4f\u969c\uff0c\u8d85\u903c\u771f\uff0c8K\uff0c60\u5e27\u6bcf\u79d2"} +{"id": "6003386", "video_name": "1ac9d081-3ad4-59bc-9739-03df55650d3f", "text": "\u53ef\u53e3\u53ef\u4e50\u7f50\u5b50\u98de\u6e85\u51fa\u7f8e\u4e3d\u7684\u6c34\u82b1\u3002"} +{"id": "1006019", "video_name": "6e8f6dd6-63e2-5dc7-890a-314ac85dfe1f", "text": "\u4e00\u8258\u5de8\u578b\u5b87\u5b99\u98de\u8239\u5728\u4e00\u4e2a\u5c9b\u5c7f\u4e0a\u964d\u843d\uff0c\u4f34\u968f\u7740\u8fea\u65af\u79d1\u97f3\u4e50\u7684\u64ad\u653e\u3002"} +{"id": "8002648", "video_name": "2e2498ad-1c36-53f2-b45d-45e24dbb8780", "text": "\u5b69\u5b50\u548c\u6bcd\u4eb2\u53bb\u5267\u9662\u3002"} +{"id": "8002514", "video_name": "08471dbb-599d-523d-b844-fcb16fed8027", "text": "\u4e00\u5377\u5bff\u53f8\u957f\u51fa\u8718\u86db\u817f\uff0c\u5f00\u59cb\u5728\u5730\u677f\u4e0a\u722c\u884c\u3002"} +{"id": "2007359", "video_name": "81aa2ff1-f8b1-5093-908d-dc6900fffe04", "text": "\u96e8\u5929\u7530\u91ce\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u591a\u4e91\uff0c\u660f\u6697"} +{"id": "3003452", "video_name": "daf00ae3-2f56-55dd-9a7e-5daf8aab5358", "text": "\u4e00\u5f20\u6e56\u6cca\u548c\u51c9\u4ead\u7684\u9ed1\u767d\u7167\u7247\uff0cTaravat Jalali Farahani \u7684\u8be6\u7ec6\u7684\u54d1\u5149\u753b\uff0ccg society\uff0cqajar \u827a\u672f\uff0c192"} +{"id": "6003797", "video_name": "5c79acec-8faf-509e-b91f-96397a6969b1", "text": "\u900f\u8fc7\u8d85\u73b0\u5b9e\u3001\u9ad8\u80fd\u6e32\u67d3\u3001\u9ad8\u7ec6\u8282\u3001\u5355\u8272\u8c03\u3001\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u5e0c\u533a\u67ef\u514b\u548c\u97e6\u65af\u00b7\u5b89\u5fb7"} +{"id": "3004643", "video_name": "34d76ee6-b430-5035-8ad9-bea3adff25de", "text": "\u732b\u5750\u5728\u7a97\u6237\u4e0a\uff0c\u5c3e\u5df4\u5fae\u5fae\u52a8\u4e86\u4e00\u4e0b\u3002"} +{"id": "6003036", "video_name": "5e706ba6-8844-5db1-afde-f9144e1630e9", "text": "\u573a\u666f\uff1a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u8dd1\u8f66\u53d8\u5f62\u6210\u5b87\u5b99\u98de\u8239\uff0c\u8fdb\u5165\u592a\u7a7a\u30024K\u7535\u5f71\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "2003158", "video_name": "806eec5a-1507-52bf-8ab5-476a9ea5afe8", "text": "\u6709\u6c34\u4e0b\u7ed3\u6784\u7684\u5b58\u5728\u3002"} +{"id": "0006552", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\uff1a\u7537\u4eba\u5728\u70df\u96fe\u4e0b\u6e38\u6cf3\u3002"} +{"id": "2007778", "video_name": "7528c237-06a1-570a-bf49-3a2e313b3909", "text": "\u4e00\u4e2a\u8001\u4eba\u7684\u6050\u6016\u8df3\u8dc3\u955c\u5934"} +{"id": "1006891", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "\u8001\u56fd\u738b\u624b\u6301\u9524\u5b50\uff0c\u80cc\u666f\u662f\u84dd\u8272\u7684\u57ce\u5821\uff0c\u53f3\u4e0a\u89d2\u6709\u5f69\u8679\uff0c\u5de6\u4e0b\u89d2\u6709\u4e00\u6761\u6cb3\u6d41\u3002"} +{"id": "0003669", "video_name": "416a6353-61fa-52f4-82bf-09b742ca07bf", "text": "\u9b45\u529b\u5341\u8db3\u7684\u5e74\u8f7b\u7537\u5b50\u4e0d\u6234\u5934\u76d4\u9a91\u6469\u6258\u8f66\u7a7f\u8d8a\u7eaa\u5ff5\u7891\u8c37\u3002"} +{"id": "8001596", "video_name": "4dccc1c5-d51f-51de-9c40-0655ecaf34ed", "text": "\u5c55\u793a\u72d0\u72f8\u5750\u4e0b\u6765\uff0c\u770b\u8d77\u6765\u5f88\u6cae\u4e27\u3002"} +{"id": "1005592", "video_name": "66de2f5d-470d-56eb-9495-1c2c3523d7e8", "text": "\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u8fdb\u5c4b\u91cc\u3002"} +{"id": "0006470", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "\u4e00\u7fa4\u4eba\u5728\u91ce\u751f\u52a8\u7269\u56ed\u6e38\u620f\u9a71\u52a8\u4e2d\u3002"} +{"id": "2004699", "video_name": "12c8d81f-a515-57b6-98bd-4a96443e1f8b", "text": "\u4e00\u5ea7\u672a\u6765\u4e3b\u4e49\u529e\u516c\u5ba4\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u7e41\u8302\u7684\u82b1\u56ed\u4e2d\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c4k\u3002"} +{"id": "1003396", "video_name": "3e9e6b55-a4e4-520a-9a4b-1ee4bb668de7", "text": "\u661f\u4e91\u592a\u7a7a\u65c5\u884c\u67d4\u548c\u84dd\u8272\u548c\u4e2d\u6027\u8272\u3002"} +{"id": "3003324", "video_name": "6e9063eb-b79f-5a5a-8620-f2734c7f3796", "text": "\u4e00\u4e2a\u7537\u4eba\u8ddf\u5728\u4e00\u4e2a\u5973\u4eba\u540e\u9762\uff0c\u5f53\u5979\u8f6c\u8fc7\u8eab\u6765\u65f6\uff0c\u4ed6\u6d88\u5931\u4e86\u3002"} +{"id": "1006866", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "\u4eba\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "6003749", "video_name": "ed001d70-b0b1-5f57-923a-380f6d2a9e8a", "text": "\u7eff\u8272\u6db2\u4f53\u6df7\u5408\u7740\u8840\u7ec6\u80de\uff0c\u5728\u663e\u5fae\u955c\u4e0b\u89c2\u5bdf\uff0c\u662f\u8840\u6db2\u5faa\u73af\u4e2d\u7684\u5b8f\u89c2\u73b0\u8c61\u3002"} +{"id": "3006941", "video_name": "2ebfc886-1af3-57f4-838c-a742ddb32613", "text": "8\u5c81\u7684\u5973\u5b69\u770b\u5230\u5979\u7684\u5988\u5988\u7ed9\u4ec6\u4eba\u94b1\u3001\u8863\u670d\u3001\u73a9\u5177\u3001\u7cd6\u679c\u548c\u997c\u5e72\u3002"} +{"id": "3004461", "video_name": "6b98a8f4-13f0-59f1-8677-56697b97dcac", "text": "\u7cbe\u795e\u57c3\u53ca\u4e4b\u773c\u8f6c\u5316\u4e3a\u4e00\u80a1\u80fd\u91cf\n\nSource sentence: The world is a book, and those who do not travel read only a page.\n\u4e16\u754c\u662f\u4e00\u672c\u4e66\uff0c\u4e0d\u65c5"} +{"id": "0004738", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "into the school office.\n\n\u4e00\u540d\u7a7f\u7740\u6821\u670d\u7684\u5973\u5b66\u751f\u6b63\u7a7f\u8fc7\u5b66\u6821\uff0c\u770b\u5230\u5730\u4e0a\u6709\u4e00\u90e8\u624b\u673a\uff0c\u5979\u6361\u8d77\u6765\u5e76\u4ea4\u5230\u4e86\u5b66\u6821\u529e"} +{"id": "4004012", "video_name": "b6c9ebbd-5472-53f4-a08c-83e507433ab8", "text": "\u6570\u5b57\u5b6a\u751f\u4e0e\u673a\u5668\u4eba\u534f\u4f5c\uff0c\u5728\u5b8c\u5168\u81ea\u52a8\u5316\u7684\u672a\u6765\u5236\u9020\u73af\u5883\u4e2d\u5236\u4f5c\u7c89\u8272\u8303\u601d\u54f2\u76ae\u9769\u8fde\u8863\u88d9\uff0c\u6709\u5bfc\u7ebf\u5f15"} +{"id": "4003642", "video_name": "9ae8d90a-f94d-5520-96e6-9f773e5db4c9", "text": "\u8840\u6db2\u4ece\u538b\u69a8\u673a\u91cc\u6d41\u4e86\u51fa\u6765\uff0c\u6d8c\u5230\u4e86\u9a6c\u7b3c\u5934\u90a3\u4e48\u9ad8\u3002"} +{"id": "0006732", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "\u53e4\u5df4\u7537\u5b69\u5728\u54c8\u74e6\u90a3\u9a6c\u83b2\u5eb7\u5927\u9053\u3002"} +{"id": "2003094", "video_name": "71953213-f909-5db7-8239-ef08740e672e", "text": "\u98a4\u6296\u7684\u624b\u673a\u6444\u50cf\u5934\u62cd\u6444\u7684\u5f71\u7247\u7a7f\u8fc7\u6811\u6797"} +{"id": "4003173", "video_name": "5ea4e294-4582-535c-9665-d05b751578c8", "text": "\u5b87\u822a\u5458\u5728\u706b\u7bad\u4e2d\u98de\u5411\u6708\u7403\u3002"} +{"id": "0005325", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "\u5728\u5348\u591c\u65f6\u5206\u89e3\u51b3\u8ba1\u7b97\u673a\u95ee\u9898\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u5de5\u7a0b\u5e08\uff0c\u9ad8\u8d28\u91cf\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "6004376", "video_name": "0845962e-3a20-5dbd-8000-3a41ab1eb68d", "text": "\u4e00\u4f4d\u7126\u7cd6\u8272\u76ae\u80a4\u7684\u5973\u4eba\uff0c\u957f\u7740\u68d5\u8272\u5c16\u7aef\u7684\u7f16\u7ec7\u53d1\u8fab\uff0c\u7a7f\u7740\u9ed1\u8272\u548c\u9ec4\u8272\u7684\u8303\u601d\u54f2"} +{"id": "1004531", "video_name": "54377ee4-c853-5287-b257-5da52588a4d9", "text": "\u5728\u68a6\u5e7b\u822c\u7684\u80cc\u666f\u4e0b\uff0c\u6a21\u7279\u8eab\u7a7f\u67d4\u548c\u7684\u8863\u6599\uff0c\u914d\u4ee5\u67d4\u548c\u7684\u706f\u5149\uff0c\u6355\u6349\u5230\u4e00\u79cd\u7a7a\u7075\u7684\u7f8e"} +{"id": "4003195", "video_name": "031fd928-5e07-57be-b41b-1958babcb632", "text": "\u5f53\u4f60\u88ab\u8b66\u5bdf\u62e6\u4e0b\u5e76\u56e0\u53d7\u836f\u7269\u6216\u9152\u7cbe\u5f71\u54cd\u800c\u9a7e\u9a76\u65f6\uff0c\u4e00\u6bb5\u5173\u4e8e\u8be5\u600e\u4e48\u505a\u548c\u4e0d\u8be5\u505a\u7684"} +{"id": "6004869", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "\u8857\u9053\u4e0a\u4fef\u89c6\u9ad8\u5927\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u7684\u89c6\u89d2\u3002\u6c1b\u56f4\u662f\u9ed1\u6697\u7684\u3001\u591c\u665a\u7684\u3001\u96e8\u5929\u300216\uff1a9\u6bd4\u4f8b\u3002\u8d5b\u535a"} +{"id": "0006939", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "\u8865\u6c34\uff1a\u591a\u559d\u6c34\u53ef\u4ee5\u51b2\u6d17\u6389\u98df\u7269\u6b8b\u6e23\uff0c\u9884\u9632\u7259\u9f7f\u53d8\u9ec4\u3002"} +{"id": "1005170", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "\u7528\u81ea\u7136\u548c\u4e2d\u6027\u7684\u52a8\u4f5c\u505a\u624b\u81c2\u8fd0\u52a8\u3002"} +{"id": "2005392", "video_name": "26d4cf6b-c321-5211-8394-356995d2bc25", "text": "\u9910\u684c\u4e0a\u7684\u684c\u5e03\u5206\u5f62\u56fe\u6848\uff0c\u665a\u9910\u65f6\u670d\u7528LSD"} +{"id": "0005157", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "\u955c\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\u5b50\u5f39\u7a7f\u8fc7\u7a7a\u6c14\uff0c\u7c7b\u4f3c\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u7684\u771f\u5b9e\u52a8\u4f5c\u7535\u5f71\u3002"} +{"id": "4003643", "video_name": "489a16e9-7886-54e9-a889-99b14173c01e", "text": "\u4e00\u4e2a\u60ac\u7591\u65f6\u523b\uff0c\u4e00\u4f4d\u6751\u6c11\u6253\u5f00\u4e00\u4e2a\u53e4\u8001\u7684\u5431\u5440\u4f5c\u54cd\u7684\u95e8\uff0c\u63ed\u793a\u51fa\u4e00\u4e2a\u5e03\u6ee1\u8718\u86db\u7f51\u3001\u4e00\u4e2a"} +{"id": "6002761", "video_name": "440e799c-9403-53b1-83ae-193397586984", "text": "is applying for residency programs at various hospitals.\n\n\u73cd\u59ae\u662f\u6700\u8fd1\u6bd5\u4e1a\u7684\u533b\u5b66\u751f\uff0c\u6b63\u5728\u4e0d\u540c\u7684\u533b\u9662\u7533\u8bf7\u4f4f\u9662\u533b\u5e08\u8ba1\u5212\u3002\n\nSource sentence:"} +{"id": "2006695", "video_name": "39528f47-50dc-5abe-bf19-bcd274496bac", "text": "\u4e00\u5f20\u795e\u79d8\u3001\u75b2\u60eb\u7537\u5b50\u5728\u77f3\u5934\u4e0a\u63d2\u7740\u65d7\u5b50\uff0c\u5468\u56f4\u662f\u6d77\u6d0b\u7684\u56fe\u50cf\u3002"} +{"id": "2003663", "video_name": "df9a57a3-0b64-5054-af60-320c5372920a", "text": "\u76ae\u514b\u65af\u98ce\u683c\uff0c\u5b81\u9759\u7684\u68ee\u6797\uff0c\u5361\u901a\uff0c\u591c\u665a\uff0c\u6708\u4eae\uff0c\u661f\u661f\uff0c\u5149\uff0c\u98de\u821e\u7684\u8424\u706b\u866b\uff0c"} +{"id": "0006370", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "Translation: \u7a7f\u7740\u7d2b\u91d1\u8272\u7684\u9ed1\u4eba\u7537\u5b50\u3002"} +{"id": "1005348", "video_name": "6256a0f8-0503-5d4b-bd86-1f9612dafd02", "text": "\u7a7a\u95f4\u6b63\u5728\u5feb\u901f\u5411\u6211\u9760\u8fd1\u3002"} +{"id": "3006811", "video_name": "a6dfd31a-7f21-556b-ad18-06338bd97986", "text": "\u53f3\u8fb9\u51fa\u73b0\u4e86\u4e24\u7ec4\u4e92\u76f8\u5782\u76f4\u7684\u5f69\u8272\u5e73\u884c\u7ebf\uff0c\u5b83\u4eec\u65cb\u8f6c\u7740\u6d88\u5931\uff0c\u88ab\u95ea\u70c1\u7684\u5149\u70b9\u6240\u53d6\u4ee3\u3002"} +{"id": "0006433", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "\u519c\u573a\u6a21\u62df\u7ecf\u8425\u6e38\u620f\uff0c\u4ee5\u519c\u4e1a\u4e3b\u9898\u4e3a\u80cc\u666f\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u6709\u9e21\u517b\u6b96\u3002"} +{"id": "7004412", "video_name": "a6302a9d-eaf0-53b1-a4f1-7ac138a2df73", "text": "\u672a\u6765\u592a\u7a7a\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\u76844k hdr\u3002"} +{"id": "6003467", "video_name": "b74cca4f-41a6-5fc1-87df-900349fa3dbd", "text": "1950\u5e74\u4ee3\u7684\u62cd\u6444\u98ce\u683c\uff0c\u8bb0\u5f55\u4e862023\u5e74\u4eba\u4eec\u6b65\u884c\u7684\u573a\u666f\u3002"} +{"id": "0006297", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "\u4e00\u4f4d\u9762\u5305\u914d\u9001\u5458\u5c06\u4e24\u6253\u82f1\u96c4\u9762\u5305\u9001\u5230\u4e54\u6cbb\u4e9a\u5dde\u9ea6\u8fea\u900a\u5e02\u4e2d\u5fc3\u7684\u4e00\u5bb6\u540d\u4e3aMadison Produce\u7684\u719f\u98df\u5e97\u3002"} +{"id": "0004351", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u70df\u96fe\u8fd0\u52a8\u3002"} +{"id": "8003804", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "\u5371\u9669\u7684\u72ee\u5b50\u6f5c\u4f0f\u5176\u4e2d\uff0c\u662f\u4e00\u79cd\u8feb\u5728\u7709\u776b\u7684\u5a01\u80c1\u3002"} +{"id": "0006294", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "\u5e26\u6211\u4eec\u56de\u5230\u4ed6\u751f\u547d\u7684\u6700\u540e\u65f6\u523b\u3002"} +{"id": "2003681", "video_name": "76edaf2e-5bdc-56d6-b10d-831c909f13c1", "text": "\u9e70\u96bc\u5728\u665a\u971e\u4e2d\u7f13\u6162\u5730\u964d\u843d\u5728\u5ca9\u77f3\u4e0a\u3002"} +{"id": "2004500", "video_name": "db1bb027-03b1-547b-b43c-48ec109d8b6f", "text": "\u65b9\u5f62\u7684\u592a\u9633\u964d\u843d\u5230\u6cb3\u91cc\u3002"} +{"id": "6003593", "video_name": "6d24426c-2964-5a9a-ad40-2a9b6fb505ca", "text": "\u4e00\u4e2a\u7537\u4eba\u671d\u7740\u65cb\u8f6c\u7684\u5de8\u578b\u7eb1\u8f74\u8d70\u53bb\u3002"} +{"id": "1004367", "video_name": "50a8ea60-bfe8-5de8-978f-8ecaf564d8d2", "text": "\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u548c\u666e\u4eac\u63e1\u624b\u3002"} +{"id": "0006862", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u7b2c\u4e00\u6b21\u5728\u5496\u5561\u9986\u4e2d\u4e3b\u89d2\u548c\u5973\u4e3b\u89d2\u4e4b\u95f4\u7684\u5f15\u4eba\u6ce8\u76ee\u7684\u573a\u666f\u3002\n\n\u7ffb\u8bd1\u540e\u53e5\u5b50\uff1a\u4e3b\u89d2\u548c\u5973\u4e3b"} +{"id": "2007799", "video_name": "c4a71acc-f16f-5d51-9233-49b95017cbe8", "text": "\u7728\u773c\u775b\uff0c\u5934\u53d1\u5728\u7fc5\u8180\u4e0a\u6f02\u6d6e\uff0c\u5934\u6b6a\u659c\u3002"} +{"id": "6003646", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "\u4e00\u53ea\u5c0f\u7334\u5b50\u5728\u68ee\u6797\u91cc\u5403\u6843\u5b50\u3002"} +{"id": "3003762", "video_name": "f5993d68-8b51-5b67-8292-ba9c1b9a5512", "text": "\u62c9\u59c6\u548c\u590f\u59c6\u5728\u5b66\u6821\u7b2c\u4e00\u5929\u63e1\u624b\uff0c\u5c55\u793a\u4ed6\u4eec\u7684\u53cb\u8c0a\u3002"} +{"id": "7002906", "video_name": "e2ab6b2d-32f5-52ee-9dfe-72e510bff69c", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u3001\u6234\u9ed1\u8272\u5e3d\u5b50\u7684\u7537\u4eba\u53cc\u624b\u63d2\u5728\u53e3\u888b\u91cc\uff0c\u5728\u706b\u8f66\u4e0a\u505c\u4e0b\u6765\u4e86\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006826", "video_name": "5a5437f1-e501-59a0-80ce-b27cdbab9ab0", "text": "\u4e00\u53ea\u6591\u9a6c\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u8d70\u8fc7\u7530\u91ce\u3002"} +{"id": "4002571", "video_name": "4eaee66b-5af2-5cd2-825c-ee717955e66a", "text": "\u4e2d\u5fc3\u4e3b\u9898\u7684\u89c6\u89c9\u8868\u73b0\uff1a\u5145\u6ee1\u6d3b\u529b\u7684\u6751\u5e84\uff0c\u72ec\u7279\u7684\u8272\u5f69\u548c\u9633\u5149\u3001\u4e00\u53ea\u5145\u6ee1\u6d3b\u529b\u7684\u9ec4\u8272\u91d1"} +{"id": "8003108", "video_name": "d1b41be9-cb1f-5db0-902e-efcd81b369f6", "text": "\u5973\u5b69\u5728\u8df3\u821e\u3002\u79d1\u5e7b\u7535\u5f71\u3002\u7a7a\u8361\u7684\u8857\u9053\u3002\u5e02\u4e2d\u5fc3\u697c\u68af\u524d\u3002\u84dd\u8272\u8272\u8c03\u3002\u4e0b\u96e8\u3002"} +{"id": "4002491", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "\u9a6c\u5fb7\u91cc\u7f8e\u4e3d\u7684\u591c\u665a\u3002\u7559\u8a00\uff1a\u7ea6\u7ff0\u3002"} +{"id": "5001549", "video_name": "54cce539-d7bf-571c-bb5a-a885c5383cc9", "text": "\u6bd5\u4e1a\u5e3d\u548c\u6c14\u7403\u548c\u793c\u5bbe\u82b1 \u4fe1\u606f\uff1a2018\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002980", "video_name": "b0ba2913-c65c-5c26-b5b9-077f8e77faad", "text": "\u6253\u5f00\u753b\u9762\u662f\u4e00\u4e2a\u7e41\u534e\u672a\u6765\u57ce\u5e02\u7684\u5168\u666f\uff0c\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\u548c\u98de\u884c\u5668\u3002\u592a\u9633\u843d\u5c71\uff0c\u7ed9\u57ce\u5e02\u666f\u89c2\u5e26\u6765"} +{"id": "8003069", "video_name": "de62404a-6c76-50a7-b67f-a8d182b0411f", "text": "\u63cf\u8ff0\u5973\u5b69\u5076\u7136\u53d1\u73b0\u5c0f\u732b\u54aa\u7684\u90a3\u4e00\u523b\uff0c\u5b83\u4eec\u7684\u76ee\u5149\u4ea4\u6c47\uff0c\u5f62\u6210\u4e86\u4ee4\u4eba\u7740\u8ff7\u7684\u51dd\u89c6\u3002\u4ee5"} +{"id": "6004893", "video_name": "ba0527e7-04b9-5529-9eeb-62e0d110246f", "text": "\u63cf\u8ff0\u4e00\u4e2a\u5524\u8d77\u60c5\u611f\u7684\u5f62\u8c61\uff0c\u5b83\u5177\u6709\u9ed1\u6697\u795e\u79d8\u7684\u80cc\u666f\uff0c\u4e2d\u5fc3\u662f\u4e00\u53ea\u773c\u775b\uff0c\u53cd\u6620\u51fa\u4e00\u79cd\u62c5\u5fe7\u548c\u7126"} +{"id": "2005130", "video_name": "c74e38cc-e551-5eaa-a473-29bed455a258", "text": "\u6709\u4eba\u5728\u67d0\u4e2a\u5730\u65b9\u505a\u67d0\u4e8b\uff0c\u67d0\u4e2a\u5730\u65b9\u53d1\u751f\u4e86\u4ec0\u4e48\u3002"} +{"id": "0006232", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "\u4e00\u8f86\u8b66\u8f66\u8ddf\u968f\u7740\u4e00\u8f86\u60ac\u6d6e\u8fd0\u52a8\u6c7d\u8f66\u5728\u5ce1\u8c37\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u3002\u79d1\u5e7b\u3002\u8d5b\u535a\u670b\u514b"} +{"id": "8002369", "video_name": "a9ba7c42-9f0a-5af8-95d6-763f43bb228c", "text": "\u4e00\u4f4d\u7537\u6570\u5b66\u8001\u5e08\u6b63\u5728\u8bfe\u5802\u4e0a\u8bb2\u8bfe\u3002"} +{"id": "8001972", "video_name": "3bb35673-77be-5a80-8004-d3270b715615", "text": "\u5e15\u62c9\u8212\u62c9\u739b\u6a2a\u8de8\u5927\u5730\uff0c\u6311\u6218\u5e76\u6253\u8d25\u4e86\u8bb8\u591a\u56fd\u738b\u548c\u6218\u58eb\u3002\u4ed6\u6210\u4e3a\u4e86\u4e00\u4e2a\u4ee5\u65e0\u60c5\u8ffd\u6c42\u6b63\u4e49\u800c"} +{"id": "7004209", "video_name": "f4293c1e-5e41-5d19-bdab-28b0ef410d01", "text": "\u4ed6\u5728\u8003\u8651\u4ed6\u7684\u8ba1\u5212\u3002\n\u4ed6\u68a6\u60f3\u7740\u4ed6\u751f\u547d\u7684\u76ee\u6807\u3002"} +{"id": "1004662", "video_name": "56b1dc62-3b1a-5c8a-820b-36410c78b99f", "text": "\u4e00\u53ea\u81ea\u8c6a\u7684\u5927\u9752\u86d9\u5728\u4e00\u4e2a\u8302\u5bc6\u7684\u4e1b\u6797\u91cc\u4eab\u53d7\u7740\u5b81\u9759\u4e0e\u5b89\u9038\u3002"} +{"id": "3005528", "video_name": "bb5f7ca0-4bf5-5ef5-851e-d0d8d4466ba4", "text": "\u5b69\u5b50\u8d70\u5728\u4ed6\u4eec\u4e2d\u95f4\uff0c\u7275\u7740\u4e24\u4e2a\u7236\u6bcd\u7684\u624b\uff0c\u9762\u5e26\u559c\u60a6\u7684\u7b11\u5bb9\u3002\u4ed6\u4eec\u7684\u5934\u53d1\u88ab\u6d77\u98ce\u5439\u4e71"} +{"id": "8001779", "video_name": "77f1a2f1-6de2-5268-9319-07276af5eb27", "text": "\u4e00\u53ea\u731b\u72b8\u8c61\u9a91\u7740\u81ea\u884c\u8f66\u5728\u6d77\u4e0a\u884c\u9a76\u3002"} +{"id": "3003073", "video_name": "637063d0-49f4-5763-ae1f-b4848df0bbda", "text": "\u4e00\u5f20\u53e4\u8001\u56fe\u8868\u7684\u7279\u5199\u7f29\u653e\uff0c\u4e0a\u9762\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u7f8e\u4e3d\u62c9\u4e01\u5973\u4eba\u7684\u56fe\u50cf\u5df2\u7ecf\u6709\u4e9b\u78e8\u635f\u3002"} +{"id": "3006461", "video_name": "28eeda12-e7b4-52aa-b12d-e5a26d876f3b", "text": "\u6a59\u8272\u7403\u72c0\u4eba\u7269\uff0c\u8907\u96dc\uff0c\u6a5f\u5668\u4eba\u773c\u775b\uff0c\u5929\u7dda\uff0c\u770b\u8d77\u4f86\u50cf\u5e36\u6709\u8173\u548c\u624b\u81c2\u7684\u6c23"} +{"id": "7002742", "video_name": "11316c0f-c224-54bd-b850-d0505f9fb9d6", "text": "\u52a8\u753b\u7247\uff0c\u672a\u6765\u4e3b\u4e49\u76f4\u5347\u673a\u98de\u8fc7\u5934\u9876\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u8fd0\u52a8\u56db\u6b21\u5143\u3002"} +{"id": "4002656", "video_name": "23a52821-4b4a-5f0b-8fd1-403c1a98a1f4", "text": "\u9ad8\u5206\u8fa8\u7387\u7684\u8349\u5730\u65e5\u843d\u3002\u6d88\u606f\uff1a\u9644\u4ef61\u3002"} +{"id": "0004178", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "\u5e7f\u9614\u6df1\u9083\u7684\u7a7a\u95f4\uff0c\u6f02\u6d6e\u7740\u4e00\u4e2a\u6709\u51e0\u53ea\u95ea\u70c1\u773c\u775b\u7684\u6444\u50cf\u5934\u3002"} +{"id": "4002033", "video_name": "67de0411-2f46-59c3-bfd4-feb514a4f255", "text": "\u822a\u62cd\u8d5b\u9053\uff0c\u901a\u8fc7\u8d5b\u8f66\u65e0\u4eba\u673a\u7684\u89c6\u89d2\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "7004424", "video_name": "599cc922-26e8-5355-92ca-aa7699fe07de", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5723\u8bde\u8001\u4eba\uff0c\u5e26\u77402024\u5e74\u7684\u65b0\u5e74\u795d\u798f\u6d88\u606f\u3002"} +{"id": "7003855", "video_name": "4420cb92-0d91-53fb-9220-86575df99144", "text": "\u6e56\u6c34\u6d41\u6dcc\uff0c\u9c7c\u513f\u5728\u6e38\u52a8\u3002"} +{"id": "2006850", "video_name": "f5d2d86f-67fb-54a8-a3fa-316903ae20ce", "text": "\u9752\u6625\u671f\u7684\u4e2d\u56fd\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8df3\u7740\u4f20\u7edf\u7684\u4e2d\u56fd\u8282\u65e5\u821e\u8e48\u3002"} +{"id": "3003668", "video_name": "b22333ca-ef15-5c6d-b3d5-903892917aa9", "text": "\u5728\u8fd9\u4ee4\u4eba\u60ca\u53f9\u7684\u666f\u8272\u4e2d\u6c89\u6d78\uff0c\u8349\u5730\u67d4\u8f6f\u7684\u7c89\u8272\uff0c\u6cb3\u6c34\u5e73\u9759\u7684\u84dd\u8272\u3002\u8fdc\u5904\u5c71\u5cf0\u82e5"} +{"id": "6004626", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "\u8568\u7c7b\u53f6\u5b50\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "3005548", "video_name": "cc471b62-e377-59b9-8111-b5420f2c0990", "text": "\u901a\u9053\u4e2a\u4eba\u529b\u91cf\n\u8110\u4e0a\u65b9\u662f\u592a\u9633\u795e\u7ecf\u4e1b\u8f6e\u3002"} +{"id": "3005069", "video_name": "a98594d0-9ca9-5930-9856-1881134c6ff9", "text": "\u8ff7\u5bab\u602a\u517d\u88ab\u626f\u8fdb\u8346\u68d8\u4e2d\uff0cBeksinski\u548cAlfred Stieglitz\u57281900\u5e74\u4ee3\u521b\u4f5c\u51fa\u7684\u9897\u7c92\u611f\u9ed1\u767d\u7167\u7247"} +{"id": "8001702", "video_name": "4e0a4d6b-159d-5c05-9faf-a492fe1ff199", "text": "\u544a\u8bc9\u4ed6\u4eec\u6240\u6709\u7684\u4e8b\u60c5\uff0c\u8ba9\u4ed6\u4eec\u5370\u8c61\u6df1\u523b\u3002"} +{"id": "1003985", "video_name": "499f24df-1ddc-5759-9db1-3206e52f9005", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5168\u901f\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "2007129", "video_name": "074a5f67-5299-5d94-a99a-deea4d0fca1c", "text": "\u4ecb\u7ecd\u795e\u79d8\u7684\u6751\u5e84\u548c\u665a\u4e0a\u542c\u5230\u7684\u5947\u602a\u58f0\u97f3\u3002"} +{"id": "2007143", "video_name": "7ff8bd11-a961-5dba-b161-af00d92ebe60", "text": "\u7528\u95ea\u4eae\u7684\u7816\u5757\u505a\u6210\u7684\u91d1\u5c5e\u725b\u4ed4\uff0c\u5728\u6c99\u6f20\u4e2d\u53cd\u6620\u7740\u4ed6\u7684\u5b58\u5728\uff0c\u6df1\u5ea6\u89c6\u91ce\uff0c16:9\uff0c\u54c8"} +{"id": "3004867", "video_name": "3717dd6a-581c-5802-88b9-376bf84011cb", "text": "\u592a\u7a7a\u6e38\u620f\u51e0\u4f55\u51b2\u523a\u3002\u4fe1\u606f\uff1aVodaBAF\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003279", "video_name": "3ab570b1-3c9d-5724-834b-c6ee976bdd43", "text": "\u59d0\u59d0\u6b63\u5728\u516c\u56ed\u91cc\u548c\u59b9\u59b9\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "1004346", "video_name": "502a4612-bc74-5d84-b850-a2d2513d55a7", "text": "\u795e\u79d8\u800c\u95ea\u8000\u7684\u6e56\u6cca\u4e2d\u5145\u6ee1\u4e86Alejandro Jodorowsky\u9c9c\u8273\u7684\u8272\u5f69\u548c\u5455\u5410\u7684\u77f3\u4eba\u3002"} +{"id": "7003033", "video_name": "0e7207dc-2cf1-5c65-821d-6b885865c94a", "text": "\u5927\u578b\u5927\u9ebb\u690d\u7269\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "0003592", "video_name": "401a65bb-f376-52cc-a247-09e945edf92b", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u6709\u7ec6\u5c0f\u6ce2\u6d6a\u7ebf\u548c\u6e29\u67d4\u7684\u95ea\u5149\u3002"} +{"id": "0005666", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "\u4f7f\u7528\u77f3\u82f1\u6c34\u6676\u5360\u535c\u7684\u7b97\u547d\u5e08\u89c6\u9891"} +{"id": "7004076", "video_name": "0abef248-2378-54f6-9936-a191aa357706", "text": "\u4e00\u53ea\u5c0f\u732b\u6389\u5230\u4e86\u5730\u4e0a\uff0c\u63d2\u753b\u98ce\u683c\u3002"} +{"id": "2006875", "video_name": "fb231cfe-ea5a-5eb0-9b9b-ce06fa38fc49", "text": "\u53e4\u4ee3\u4ee5\u8272\u5217\uff0c\u6709\u51e0\u4e2a\u4eba\u79bb\u5f00\u4e86\u57ce\u5e02\u3002"} +{"id": "2005531", "video_name": "312d1aa6-cb27-5aff-ba6b-207cb887d428", "text": "\u5feb\u4e50\u7684\u5b69\u5b50\u4eec\u3002\u4fe1\u606f\uff1aTeknofest\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001578", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "\u8d85\u5199\u5b9e\u7684\u91d1\u53d1\u5e74\u8f7b\u5973\u5b50\uff0c\u5bf9\u7740\u955c\u5934\u5fae\u7b11\uff0c\u4e3a\u4e2a\u4eba\u8d44\u6599\u7167\u7247\u62cd\u6444\u3002"} +{"id": "4002358", "video_name": "abfc64a2-d22e-5865-8e25-f4a5506c5dad", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u60ac\u6d6e\u814c\u9ec4\u74dc\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7ec6\u8282\u7279\u5199\uff0c\u5fae\u8ddd\u955c\u5934\u3002"} +{"id": "2007284", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "\u5728\u4e00\u4e2a\u53e4\u5e0c\u814a\u795e\u5e99\u91cc\uff0c\u4e00\u5e45\u5e84\u4e25\u7684\u573a\u666f\u5c55\u5f00\u5728\u773c\u524d\uff0c\u51e0\u4e2a\u4eba\u7ad9\u5728\u8654\u8bda\u7684\u59ff\u52bf\u4e2d\u3002\u4ed6"} +{"id": "6004799", "video_name": "01888fb2-4530-5bb7-9a59-3bf7a270fbe8", "text": "16:9\u6bd4\u4f8b\uff0c\u519c\u573a\u4e0a\u7684\u7ef5\u7f8a\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u3002"} +{"id": "6003500", "video_name": "fd622210-92db-566d-b422-49e8a5c186bf", "text": "\u591c\u95f4\u6a21\u5f0f\u548c\u7167\u660e\u6c14\u6ce1\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004603", "video_name": "f16c4761-2b4b-5c4b-99b8-6ec669e5bf4e", "text": "\u997a\u5b50\u8c61\u5f81\u7740\u56e2\u5706\uff0c\u6211\u5e0c\u671b\u5168\u5bb6\u5728\u65b0\u7684\u4e00\u5e74\u91cc\u5e73\u5b89\u5065\u5eb7\u3002"} +{"id": "8002997", "video_name": "04eb1dda-89b5-5548-bb74-d1811b5d4017", "text": "and cyberpunk vibes surround him.\n\n\u4e54\u00b7\u62dc\u767b\u8d70\u8fc7\u4e00\u4e2a\u84b8\u6c7d\u6ce2\u57ce\u5e02\uff0c\u88ab\u9713\u8679\u706f\u3001\u96e8\u6c34\u548c\u8d5b\u535a\u670b\u514b\u6c1b"} +{"id": "2007420", "video_name": "9c9a35f9-27f9-5248-996c-6a93272f51c8", "text": "\u9999\u8549\u4eba\u5f00\u8f66\uff0c\u4ea4\u901a\u5f88\u62e5\u6324\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u773c\u775b\uff0c\u8ff7\u5e7b\u827a\u672f\uff0c\u9ed1\u767d\uff0cVHS\uff0cSuper "} +{"id": "6003884", "video_name": "479bba6c-b25e-5e67-8762-299d12454d1d", "text": "\u5728\u7f57\u9a6c\u5e02\u7684\u9634\u6697\u96e8\u591c\u91cc\uff0c\u9e45\u5375\u77f3\u8def\u53cd\u5c04\u51fa\u666f\u8c61\uff0c\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u515c\u5e3d\u7684\u4eba\u7269\u4ece\u89c2"} +{"id": "0006787", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "\u5e74\u8f7b\u5973\u5b50\u8eba\u5728\u6c99\u6ee9\u4e0a\uff0c\u811a\u9732\u5728\u5916\uff0c\u8eab\u7a7f\u8f7b\u8584\u7684\u8863\u670d\uff0c\u771f\u5b9e\u7684\u8eab\u4f53\uff0c\u6234\u7740\u58a8\u955c"} +{"id": "2007995", "video_name": "b91b4f00-ee5c-5aca-8a72-8932e0193b83", "text": "\u4e00\u500b\u4eba\u8b8a\u6210\u4e86\u6591\u99ac\u3002"} +{"id": "6003998", "video_name": "1a8a5218-9dba-5d8b-aa04-93dc54d4d1f0", "text": "\u80c6\u602f\u7684\u706f\u7b3c\u9c7c\u9732\u897f\u98a4\u6296\u7740\u89e3\u91ca\u8bf4\uff0c\u5979\u5bb3\u6015\u9ed1\u6697\u548c\u9690\u85cf\u5728\u6df1\u6d77\u4e2d\u7684\u5371\u9669\u3002"} +{"id": "7004707", "video_name": "182375e1-a882-5d2b-a12b-3cb896ff787b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u955c\u5b50\u91cc\u770b\u81ea\u5df1\u7684\u5012\u5f71\u3002"} +{"id": "0006197", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "\u7279\u65af\u62c9\u6a21\u578b\u5728\u672a\u6765\u4e3b\u4e49\u7684\u6c34\u6676\u57ce\u5e02\u4e2d\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "0006549", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "\u7f13\u6162\u79fb\u52a8\u7684\u6444\u50cf\u673a\u5728\u68cb\u76d8\u65b9\u683c\u4e0a\u6162\u6162\u79fb\u52a8\uff0c\u6709\u4e9b\u65b9\u683c\u5df2\u7ecf\u7834\u635f\uff0c\u5f53\u6444\u50cf\u673a\u5411\u5916\u79fb\u52a8"} +{"id": "6003658", "video_name": "057d2b81-6e08-5c7a-bff6-d2b53214f214", "text": "\u5728\u591c\u5e97\u91cc\u8df3\u821e\u7684\u4eba\uff0c4K\u903c\u771f\u3002"} +{"id": "4003074", "video_name": "179e2ef6-a75e-523d-8871-172b8401e055", "text": "Translation: \u90a3\u4e2a\u7537\u4eba\u6b63\u5728\u8fa8\u8ba4\u6b7b\u8005\u3002"} +{"id": "4002233", "video_name": "75631806-19d2-5a14-9ca8-c7e90c361bfe", "text": "\u4e00\u4e2a\u5728\u5e02\u573a\u5356\u94b1\u5305\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "7002755", "video_name": "a094f9c3-d4ac-54f0-8fc2-22b04c8e4279", "text": "\u9ad8\u901f\u8ffd\u9010\u8001\u9f20\u7684\u732b\uff0cPOV\u76f8\u673a\u968f\u52a8\uff0c\u7126\u70b9\u9510\u5229\u3002"} +{"id": "2003290", "video_name": "a1676389-a151-5fa5-a727-1c5411a6b4c9", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u96ea\u5730\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u957f\u6905\u4e0a\u9762\u8986\u76d6\u7740\u5f69\u8272\u5f62\u72b6\u7684\u96ea\u3002"} +{"id": "7003886", "video_name": "1f60403d-fc8a-5d29-9782-7f28a717705d", "text": "\u5236\u4f5c\u4e00\u6bb5\u7231\u56e0\u65af\u5766\u7684\u89c6\u9891\uff0c\u89e3\u91ca\u4ed6\u4ece\u623f\u95f4\u7684\u4e00\u4fa7\u8d70\u5230\u53e6\u4e00\u4fa7\uff0c15\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "6002099", "video_name": "59981010-6c6e-53f4-8b8c-3f9244e5de24", "text": "\u4e00\u4e2a\u653e\u5728\u684c\u5b50\u4e0a\u7684\u7a7a\u6c14\u8fc7\u6ee4\u5668\u3002"} +{"id": "0004880", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "\u9ed1\u767d\u5f71\u50cf\uff0c\u5b64\u72ec\u548c\u6050\u60e7\u5728\u5916\u592a\u7a7a\uff0c\u6050\u60e7\u3002"} +{"id": "3004973", "video_name": "34fb8769-78a8-5298-861e-82d699430b31", "text": "\u4e91\u6735\u5728\u6de1\u5f69\u843d\u65e5\u7684\u5929\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u5982\u540c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u3002"} +{"id": "4003802", "video_name": "dedb8544-2de5-55e0-91e4-0dd56781cd72", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u5728\u4e00\u5ea7\u6709\u6865\u7684\u6cb3\u5cb8\u4e0a\uff0c\u4e00\u7fa4\u4eba\u6b63\u5728\u804a\u5929\u3002"} +{"id": "2005299", "video_name": "707d42d0-6590-5b93-a155-2eba7ddb21f8", "text": "\u7279\u8272\u573a\u666f\u5c55\u73b0\u4e86\u58a8\u897f\u54e5\u7f8e\u4e3d\u7684\u5c71\u8109\u548c\u68ee\u6797\u666f\u89c2\uff0c\u91c7\u7528\u4e86\u76ae\u514b\u65af\u3001\u8fea\u58eb\u5c3c\u30013D\u548c"} +{"id": "1004960", "video_name": "5ba363ce-715d-56d3-90b0-ffe3a68590b4", "text": "\u5723\u8bde\u8001\u4eba\u4e0e\u5b69\u5b50\u4eec\u4ea4\u8c08\uff0c\u4ed6\u4eec\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "3004655", "video_name": "effd6435-badf-58e7-a8a2-f7e0ae9238af", "text": "\u4e00\u4e2a\u8001\u5987\u4eba\u5750\u5728\u8def\u89d2\u7684\u957f\u6905\u4e0a\uff0c\u4eba\u4eec\u90fd\u907f\u5f00\u5979\uff0c\u89c6\u9891\u65f6\u957f\u5f88\u957f\uff0c\u975e\u5e38\u903c\u771f\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "2004161", "video_name": "24de2e18-7334-5467-8e95-80583c6826dd", "text": "\u4e00\u4e2a\u963f\u62c9\u4f2f\u7537\u5b50\u5728\u591c\u665a\u8df3\u821e\u3002"} +{"id": "0004711", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "\u4efb\u52a1\u540d\u79f0\uff1a\u300a\u73b0\u4ee3\u6218\u4e892\u300b\u4e2d\u7684\u201c\u65e0\u4fc4\u7f57\u65af\u4eba\u201d\u4efb\u52a1\u3002"} +{"id": "8001602", "video_name": "a08bef5d-674d-5e58-b9e6-ab359182e786", "text": "\u592a\u9633\u5feb\u901f\u800c\u5de8\u5927\u7684\u7206\u70b8"} +{"id": "2007193", "video_name": "09013aad-8f09-569e-9526-132c171a231f", "text": "\u94f6\u8272\u76842004\u5e74\u798f\u7279\u798f\u514b\u65af\u8f7f\u8f66\u4ece\u6c99\u6f20\u7684\u60ac\u5d16\u4e0a\u75be\u9a70\u800c\u8fc7\u3002"} +{"id": "2007639", "video_name": "57da3213-0085-5b60-b60c-cca1cef42d86", "text": "\u4e00\u53ea\u5c0f\u767d\u72d7\u5728\u7535\u5b50\u6e38\u620f\u300a\u4f7f\u547d\u53ec\u5524\u300b\u4e2d\u8d70\u52a8\uff0c\u5468\u56f4\u90fd\u662f\u58eb\u5175\u3002"} +{"id": "4003166", "video_name": "fcf383ab-a6bc-5244-938f-2b5d455e016c", "text": "\u4f26\u6566\u82f1\u56fd\u7684\u8857\u5934\u827a\u4eba\u52a8\u6f2b\u9884\u544a\u7247"} +{"id": "1003327", "video_name": "3d44cbe6-3755-5277-91f3-bd4474e9343a", "text": "\u7f8e\u4e3d\u7684\u62c9\u4e01\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\uff0c\u5468\u56f4\u662f\u68d5\u6988\u6811\u548c\u7d2b\u8272\u7684\u5929\u7a7a\uff0c\u89c6\u9891\u8d28\u91cf\u4e3a4K 16:9\u3002"} +{"id": "4004937", "video_name": "abc61292-4823-54a5-b2fa-d6e8d2ea7cf7", "text": "\u65af\u74e6\u7c73\u00b7\u62c9\u66fc\u4ee5\u81ea\u8c6a\u7684\u5fc3\u6001\u89c2\u5bdf\u7740\u4ed6\u7684\u8fdb\u6b65\u3002"} +{"id": "7003298", "video_name": "4195f9e4-47a1-57d3-959a-3860605ddb83", "text": "\u5973\u5b50\u5fae\u7b11\u7740\u3002\u76f8\u673a\u95ea\u5149\u706f\u3002\u5728\u591c\u665a\u30024K.\u9ad8\u6e05\u3002"} +{"id": "7002396", "video_name": "2339d1c3-9f9b-5676-9782-dc6cd20fed22", "text": "\u6cbf\u7740\u4e00\u6761\u50cf\u8fc7\u53bb\u4e00\u6837\u8352\u51c9\u7684\u6d77\u6ee9\u6563\u6b65\u3002"} +{"id": "8002371", "video_name": "5cf22af8-b03f-5411-befd-d8e3d6bf212d", "text": "\u4e00\u8258\u6765\u81ea\u5916\u592a\u7a7a\u7684\u5b87\u5b99\u98de\u8239\u8fdb\u5165\u4e0b\u9762\u7684\u5916\u661f\u7403\u5927\u6c14\u5c42\u3002\u5728\u5b87\u5b99\u98de\u8239\u5468\u56f4\u7684\u7a7a\u6c14\u56e0\u4e3a"} +{"id": "7002738", "video_name": "a54bc066-53b7-50cb-94d4-dce0e0cde2a9", "text": "\u751f\u6210\u89c6\u9891\u79fb\u52a8\u7684\u82b1\u548c\u98de\u7fd4\u7684\u8774\u8776\u3002"} +{"id": "0005741", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "\u730e\u4eba\u4eec\u653e\u4e0b\u6b66\u5668\u5e76\u79bb\u5f00\u4e1b\u6797\uff0c\u6355\u6349\u5230\u53d8\u9769\u548c\u51b3\u5fc3\u7684\u65f6\u523b\u3002"} +{"id": "3005458", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "\u4e3b\u795e\u514b\u5229\u987b\u90a3\uff0c\u4ee5\u5341\u516d\u79cd\u827a\u672f\u964d\u751f\u4e8e\u5fb7\u7f57\u5df4\u65f6\u4ee3\u3002"} +{"id": "1003792", "video_name": "45f86d0d-e8ee-5fef-b603-7002ae700096", "text": "\u4e00\u500b\u5f9e\u5236\u9020\u6a5f\u5668\u51fa\u751f\u7684\u4eba\u985e\uff0c\u9ad8\u54c1\u8cea\uff0c\u903c\u771f\u3002"} +{"id": "1005893", "video_name": "6c66dc5a-4de6-53d1-830d-f47f106fc94b", "text": "\u4e00\u540d\u592a\u7a7a\u4eba\u5728\u7f8e\u4e3d\u7684\u65e5\u843d\u80cc\u666f\u4e0b\u3002"} +{"id": "3005080", "video_name": "2672e8c1-9e50-5db6-b716-29ba7481abc4", "text": "\u8001\u5e74\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u56f4\u7740\u7bdd\u706b\uff0c\u903c\u771f\u7684\u89c6\u9891\uff0c\u955c\u5934\u805a\u7126\u5728\u706b\u5806\u4e0a\uff0c\u4ed6\u4eec\u611f\u5230\u5bd2\u51b7\u3002"} +{"id": "2006804", "video_name": "8c110921-702b-5a7f-81ee-bbc4dba96db8", "text": "\u68d5\u8272\u7684\u5154\u5b50\u5750\u5728\u80e1\u841d\u535c\u4e0a\u5403\u80e1\u841d\u535c\u3002AR 16:9"} +{"id": "8002865", "video_name": "9b035a9d-2ff2-5006-b61a-6d702ac66a92", "text": "\u4e2d\u4e1c\u76849\u5c81\u5973\u5b69\u4ece\u697c\u68af\u4e0a\u6454\u5012\u6655\u5012\u4e86\uff0c1910\u5e74\u8fc7\u53bb\u4e86\u3002"} +{"id": "8001687", "video_name": "82a6455d-bdb0-548e-a737-4814862807fc", "text": "\u4e00\u676f\u70ed\u6c14\u817e\u817e\u7684\u5496\u5561\uff0c\u5728\u4e00\u4e2a\u8212\u9002\u7684\u8001\u5f0f\u9910\u9986\u3002"} +{"id": "1005836", "video_name": "6b4d0687-4a6d-57a7-b583-67fae189747c", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u9ab7\u9ac5\u9a6c\u548c\u4e00\u4e2a\u62ff\u7740\u5b83\u7ef3\u5b50\u7684\u706b\u7130\u751f\u7269\u3002"} +{"id": "1004299", "video_name": "4f7ec213-e03d-56e0-bdc7-45878b9c0949", "text": "\u4e00\u4e2a\u9634\u6697\u7684\u591c\u665a\uff0c\u4e00\u7fa4\u5927\u80c6\u7684\u670b\u53cb\u51b3\u5b9a\u63a2\u7d22\u795e\u79d8\u7684\u522b\u5885\uff0c\u4e3a\u4e86\u5728\u4ed6\u4eec\u7684YouTube\u9891\u9053\u4e0a\u6355\u6349"} +{"id": "0005964", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "BTS\u7684Jungkook\u662f\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u5386\u53f2\u8001\u5e08\uff0c\u5bf9\u5f53\u5730\u7684\u4f20\u8bf4\u548c\u6d77\u4e8b\u5386\u53f2\u6709\u6d53\u539a\u7684\u5174\u8da3\u3002"} +{"id": "0004607", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "\u5e74\u8f7b\u8b66\u5bdf\u8bad\u7ec3\u7684\u7167\u7247\u3002"} +{"id": "4003658", "video_name": "4fd66065-d772-552b-8c52-50bb219a0457", "text": "\u4e00\u4e2a\u4eba\u5feb\u4e50\u5730\u73af\u6e38\u4e16\u754c\u3002"} +{"id": "0006893", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "\u7a7f\u7740\u8fde\u5e3d\u886b\u548c\u5e3d\u5b50\u7684Hoodboy\uff08HB\uff09\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u7740\uff0c\u9762\u5e26\u5fe7\u90c1\u8868\u60c5\u3002"} +{"id": "1005244", "video_name": "60781f3f-3855-59ee-9480-5b3f7a0480f0", "text": "\u4e00\u90e8\u9ed1\u767d\u8272\u8c03\u7684\u62bd\u8c61\u52a8\u753b\uff0c\u7075\u611f\u6765\u81ea\u4e8e\u53e4\u8001\u7684\u9a6c\u8d5b\u514b\uff0c\u4e3a\u4e00\u5bb6\u521b\u610f\u5de5\u4f5c\u5ba4\u8bbe\u8ba1\u3002"} +{"id": "6002457", "video_name": "d16047a7-c34f-5e7f-a7a7-91fd8b7a51e0", "text": "\u4e0e\u6b64\u540c\u65f6\uff0c\u6162\u6761\u65af\u7406\u7684Whiskers\u6beb\u4e0d\u8d39\u529b\u5730\u8d70\u8fc7\u75b2\u60eb\u7684\u9a6c\u5339\u3002"} +{"id": "7004617", "video_name": "482fced7-0402-5945-8439-8b2961562d9b", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u6c99\u9f99\u91cc\u5f04\u5934\u53d1\u3002"} +{"id": "7002144", "video_name": "bd27aac3-1f33-5756-a3e8-d788a4b4c904", "text": "\u8036\u7a23\u5728\u5c71\u4e0a\u4e3e\u624b\u6ce8\u89c6\u7740\u4f17\u4eba\u3002"} +{"id": "8001793", "video_name": "9e5a0d86-8dd5-5963-b405-03f4bd13860a", "text": "\u5927\u91cf\u7684\u79cb\u53f6\u843d\u5728\u5730\u4e0a\u3002\u6a21\u7cca\u7684\u8865\u5145\u80cc\u666f\u3002"} +{"id": "7003020", "video_name": "905cf4e4-d118-52ac-9f62-6e4d643b1178", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u8fb9\u63a5\u8fd1\u4e86\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u3002"} +{"id": "3005866", "video_name": "8a1e7cdd-b7e7-5f82-835a-63cb3b9cb669", "text": "\u8fdb\u5165\u4f01\u9e45\u7684\u5bb6\u3002"} +{"id": "1004398", "video_name": "514fee55-4260-5e1c-b4d9-7ff020283677", "text": "\u4ece\u7537\u4eba\u7684\u5634\u91cc\u6d41\u51fa\u6e17\u51fa\u7269\uff0c\u8fd1\u8ddd\u79bb\u955c\u5934\uff0c\u7535\u5f71\u611f\uff0c\u950b\u5229\u7684\u7259\u9f7f\u3002"} +{"id": "0003281", "video_name": "3ac889e9-93c9-5e00-9788-d4eec3f90554", "text": "\u4e00\u4e2a\u6d82\u6ee1\u6d82\u9e26\u7684\u94ec\u91d1\u5c5e\u8682\u8681\u673a\u5668\u4eba\u4ece\u706b\u5c71\u4e2d\u722c\u51fa\uff0c\u8d70\u5728\u7194\u5ca9\u4e0a\u6218\u6597\u3002"} +{"id": "8002283", "video_name": "c0026227-400a-54b7-9048-8906c1792363", "text": "\u5c3d\u7ba1\u5177\u6709\u6311\u6218\u6027\uff0c\u4f46\u8981\u5524\u8d77\u76d0\u5473\u5728\u7a7a\u6c14\u4e2d\u5f25\u6f2b\uff0c\u4e0e\u6d77\u6d0b\u7684\u5176\u4ed6\u611f\u5b98\u4f53\u9a8c\u878d\u5408\u5728\u4e00\u8d77\u7684\u611f"} +{"id": "1005925", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "\u5927\u5b66\u6559\u6388\u7ed9\u5979\u7684\u5b66\u751f\u4e0a\u8bfe\u3002"} +{"id": "2003737", "video_name": "ff58ff03-b1ff-5420-9b83-af5623c4fc08", "text": "\u4e00\u53ea\u6234\u7740\u5e3d\u5b50\u3001\u540d\u53eb\u5b89\u6770\u62c9\u7684\u91d1\u6bdb\u6b63\u5728\u51c6\u5907\u5927\u5b66\u5b66\u4e60\u3002"} +{"id": "7003239", "video_name": "6eaf1ef2-1a2b-56fe-a4f1-ff4481df490e", "text": "\u7231\u60c5\u5728\u7a7a\u6c14\u4e2d\u5f25\u6f2b\uff0c\u5723\u8bde\u8001\u4eba\u5531\u6b4c\u3002"} +{"id": "4003938", "video_name": "48e02971-ed28-5bc4-abe4-d6ff48289388", "text": "\u8d85\u4eba\u4f5c\u4e3a\u90aa\u795e\u88c5\u7532\u7684\u79fb\u52a8\u56fe\u50cf8k\u3002"} +{"id": "7003761", "video_name": "b3b3baa4-e26e-558e-9533-b27a9fce2f3d", "text": "\u8ff7\u5e7b\u98de\u9493\u7537\u58eb\u7ed8\u753b\u5f71\u50cf8K HDR\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u67d4\u548c\u7535\u5f71\u822c\u7684\u5149\u7ebf\uff0c9\uff1a16\u3002"} +{"id": "2007545", "video_name": "4c89cd5f-bd85-5c76-8210-d87df559f6c9", "text": "\u91d1\u94f6\u5c0f\u884c\u661f\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "1004764", "video_name": "582307a3-5933-5e19-afdb-d9ec28ed6b0a", "text": "\u4e09\u4e2a\u7c7b\u4eba\u673a\u5668\u4eba\u5750\u5728\u592a\u7a7a\u9152\u5427\u91cc\u4ea4\u8c08\uff0c\u9152\u5427\u6c1b\u56f4\u4f4e\u6c89\u5e76\u5177\u6709\u590d\u53e4\u4e3b\u9898\u3002"} +{"id": "6004513", "video_name": "a388adf7-d648-54d9-9241-d00793aa6e30", "text": "\u5170\u535a\u57fa\u5c3cSian\u4e00\u534a\u84dd\u8272\uff0c\u4e00\u534a\u7d2b\u8272\u505c\u5728\u73b0\u4ee3\u8c6a\u5b85\u5916\u9762\uff0c\u65c1\u8fb9\u6709\u4e00\u4e2a\u55b7\u6cc9\u3002"} +{"id": "3006708", "video_name": "429555c4-b203-531d-8df9-32dd6012111d", "text": "Jake\u548cOlivia\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u5468\u56f4\u662f\u5723\u8bde\u88c5\u9970\u3002\u623f\u95f4\u91cc\u95ea\u70c1\u7684\u706f\u5149\u6563\u53d1\u7740\u6e29\u6696\u7684\u5149"} +{"id": "7003120", "video_name": "8feef778-3e11-59ea-808a-65eacd229b63", "text": "\u732a\u5c0f\u59d0\u88ab\u9752\u86d9\u9690\u58eb\u9a91\u5728\u4e73\u623f\u4e0a\u3002"} +{"id": "3003556", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "\u5728\u5df4\u9ece\u4e00\u4e2a\u9732\u53f0\u4e0a\u4e0b\u8d77\u4e86\u5927\u96e8\u3002"} +{"id": "4002384", "video_name": "2f8941a1-d966-5bce-ada2-c348039e9b72", "text": "\u52a8\u7269\u4eec\u4e00\u8d77\u5206\u4eab\u98df\u7269\uff0c\u4e00\u8d77\u73a9\u6e38\u620f\uff0c\u4e00\u8d77\u7b11\u7740\u3002"} +{"id": "3004009", "video_name": "e324466f-e75c-5046-84f3-5f03d806091c", "text": "\u7537\u5b50\u5237\u7259\uff0c\u7535\u5f71\u7ea7\u8d85\u53d8\u7126\u955c\u5934\uff0c\u6781\u9650\u7279\u5199\u955c\u5934\u3002"} +{"id": "2006988", "video_name": "efc8ffcd-81d2-5ba1-9d54-773e7c70405f", "text": "\u56fe\u7247\u4e2d\u592e\u77d7\u7acb\u7740\u4e00\u5ea7\u53e4\u8001\u7684\u808c\u8089\u7ebf\u6761\u7a81\u51fa\u7684\u5e0c\u814a\u6218\u58eb\u96d5\u50cf\uff0c\u4ee5\u5176\u4ee4\u4eba\u5370\u8c61\u6df1"} +{"id": "2004763", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u7a97\u8fb9\u6253\u5750\uff0c\u592a\u9633\u7167\u5728\u684c\u5b50\u4e0a\u6b63\u5728\u71c3\u70e7\u7684\u5929\u7136\u9999\u3002"} +{"id": "1004077", "video_name": "4b90fc3e-1add-5cef-b079-ba0799beb43b", "text": "\u5979\u5df2\u7ecf\u52aa\u529b\u8bf4\u670d\u7236\u6bcd\u642c\u5bb6\u4e86\u51e0\u5e74\u4e86\u3002"} +{"id": "8002978", "video_name": "325a33e4-3a0a-5c0e-a0c5-4ddba663bf7e", "text": "\u79d1\u5b66\u5bb6\u5c06\u5c0f\u9c7c\u653e\u5165\u4e0e\u9ca8\u9c7c\u540c\u4e00\u6c34\u7f38\u4e2d\u3002"} +{"id": "8002876", "video_name": "8eee5a0d-2957-58ff-be31-a15279912e8c", "text": "\u5728\u4e00\u4e2a\u5e7b\u60f3\u4e16\u754c\u91cc\u521b\u5efa\u4e00\u4e2a\u6751\u5e84\uff0c\u62e5\u6709\u5e73\u5766\u4e14\u7eff\u8272\u7684\u690d\u88ab\uff0c\u68ee\u6797\uff0c\u9633\u5149\u548c\u5fae\u98ce\uff0c\u8fd8\u6709"} +{"id": "0003469", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "\u8fd9\u4e9b\u5de8\u5927\u7684\u6728\u4e43\u4f0a\u662f\u572820\u4e16\u7eaa\u6316\u6398\u51fa\u6765\u7684\uff0c\u901a\u5e38\u4e0e\u5962\u534e\u7684\u846c\u793c\u4eea\u5f0f\u76f8\u8054\u7cfb\u3002"} +{"id": "7004711", "video_name": "fdc15d0f-e68f-5b0c-aba2-36f8239bdd22", "text": "\u5947\u70b9\u3002\u4fe1\u606f\uff1a\u4eba\u5de5\u667a\u80fd\u4e16\u754c\u3002"} +{"id": "3004935", "video_name": "4a253af1-d357-54a9-a097-27a02d948af8", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5973\u4eba\u5728\u623f\u95f4\u91cc\u6253\u626e\uff0c\u7a7f\u7740\u725b\u4ed4\u88e4\u548c\u5939\u514b\uff0c\u8425\u9020\u795e\u79d8\u7684\u6c1b\u56f4\u3002"} +{"id": "4004790", "video_name": "9e8fd236-46a9-5156-814c-5181da4efed1", "text": "\u5c71\u5761\u4e0a\u5f00\u6ee1\u4e86\u5404\u79cd\u989c\u8272\u7684\u82b1\u3002\u4fe1\u606f\uff1a\u56de\u53bb\u3002"} +{"id": "4003817", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "\u76f8\u7231\u7684\u7537\u5973\u5728\u5927\u516c\u56ed\u91cc\u76f8\u4e92\u6ce8\u89c6\uff0c\u56db\u5468\u90fd\u662f\u5927\u6811\u548c\u96ea\u5c71\u3002"} +{"id": "0003976", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "\u4ece\u524d\u6709\u4e2a\u540d\u53eb\u51ef\u4f26\u7684\u5e74\u8f7b\u5973\u5b69\u3002"} +{"id": "2004016", "video_name": "1d3308f9-c309-5f44-b640-1db3077fe4ff", "text": "\u5de8\u5634\u9e1f\uff1a\u5de8\u5634\u9e1f\u7528\u5176\u5145\u6ee1\u6d3b\u529b\u7684\u5599\u5728\u4e0d\u540c\u7684\u6811\u679d\u4e0a\u6572\u6253\uff0c\u5f00\u542f\u4e86\u4e1b\u6797\u7ba1"} +{"id": "3004899", "video_name": "d28b0465-05c6-5c03-9489-b1cca5b78b21", "text": "\u53e4\u4ee3\u6218\u58eb\u4e3a\u5373\u5c06\u6765\u4e34\u7684\u4e0e\u795e\u5bf9\u6297\u7684\u6218\u4e89\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "6004647", "video_name": "4ffe3c68-6246-5b6d-86bb-d1ee56944b60", "text": "\u4e00\u5bf9\u592b\u5987\u7ad9\u5728\u7edd\u7f8e\u7684\u65e5\u843d\u80cc\u666f\u4e0b\uff0c\u88ab\u6e29\u6696\u7684\u8272\u8c03\u6240\u5305\u56f4\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec\u65b0\u751f\u6d3b\u7684\u5f00\u59cb\u3002"} +{"id": "2007863", "video_name": "557b49ea-98c3-51f1-955f-ec75f96c8006", "text": "\u4e00\u4e2a\u5728\u62e5\u6324\u7684\u5e02\u4e2d\u5fc3\u7684\u9a6c\n\nSource sentence: The sun is setting over the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u4e0a\u843d\u5c71\u3002"} +{"id": "0004979", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "\u72fc\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "8001528", "video_name": "df7c0cca-e134-5f11-94b5-ccb6b280a70a", "text": "\u6211\u65701\u523010\u7684\u89c6\u9891\u3002"} +{"id": "0006361", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "Source sentence: \u96c5\u52a0\u8fbe\u5efa\u7b51\u548c\u83ab\u7eb3\u65af\u7eaa\u5ff5\u7891\u4e0a\u7a7a\u7684\u6d41\u661f\u96e8"} +{"id": "6003335", "video_name": "909c6321-1d2c-5c57-bbf9-698357a6855b", "text": "\u7d2b\u8272\u7684lol\u73a9\u5076\uff0c\u7a7f\u7740\u91d1\u8272\u7684\u8863\u670d\uff0c\u5f00\u7740\u6c7d\u8f66\u3002"} +{"id": "2007044", "video_name": "df2cff99-c64b-5a07-8a3e-3927df7593f9", "text": "\u91d1\u8272\u52b3\u65af\u83b1\u65af\u5e7b\u5f71\u5728\u4fc4\u7f57\u65af\u6751\u5e84\u884c\u9a76\u3002"} +{"id": "3004105", "video_name": "dd633944-e8cf-53bf-885a-0be5e4098d0a", "text": "\u4e00\u4e2a\u767e\u4e07\u5e9f\u5f03\u7684\u5c0f\u53f7\u6563\u843d\u5728\u6c99\u6f20\u5730\u9762\u4e0a\uff0c\u800c\u6838\u5f39\u906e\u853d\u4e86\u672b\u65e5\u540e\u7684\u5730\u5e73\u7ebf\u3002"} +{"id": "0005947", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "\u9a6c\u514b\u65af\u5c06\u666e\u901a\u6750\u6599\u53d8\u6210\u4e86\u6355\u6349\u559c\u60a6\u7684\u795e\u5947\u96d5\u5851\u3002"} +{"id": "6002380", "video_name": "be76392c-baea-5760-9bf9-ec2a6cce1998", "text": "\u4e00\u4f4d\u80cc\u5411\u6211\u4eec\u7684\u4f5c\u5bb6\u6b63\u5728\u521b\u4f5c\u4e00\u9996\u8bd7\u3002\u4ece\u4ed6\u7684\u8111\u6d77\u4e2d\u6d8c\u73b0\u51fa\u4e94\u5f69\u7f24\u7eb7\u7684\u601d\u60f3\u548c\u7f8e\u4e3d\u7684\u8bd7\u53e5"} +{"id": "6002218", "video_name": "7e477bbf-edb4-50fc-9675-bcd5c900f37d", "text": "\u4e00\u5f201450\u5e74\u665a\u4e0a\u4e00\u5bb6\u4eba\u7684\u9ed1\u767d\u8001\u7167\u7247\u3002"} +{"id": "2007594", "video_name": "d59da577-f61a-5c23-b289-67a8c46359bd", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u8fd0\u52a8\u5458\u7537\u5b50\u4e3e\u8d77\u4e86\u51a0\u519b\u5956\u676f\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "8002646", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "\u7535\u5f71\u5f0f\u76843D\u52a8\u753b\uff0c\u523a\u732c\u62e5\u62b1\u6c14\u7403\uff0c\u6c14\u7403\u7834\u88c2\u3002"} +{"id": "4004227", "video_name": "06a253ec-87ad-5bae-b918-f580cf068c0c", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u516c\u4e3b\uff0c\u7a7f\u7740\u7c89\u8272\u8fde\u8863\u88d9\uff0c\u62e5\u6709\u4eba\u7c7b\u7684\u9762\u5b54\uff0c\u51fa\u73b0\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc"} +{"id": "3003197", "video_name": "e3fe214d-fb14-5f77-830c-74bcfd33eeb0", "text": "\u4ece\u672a\u88ab\u521b\u9020\u8fc7\u7684\u56fe\u7247"} +{"id": "8003354", "video_name": "f7e27639-33f7-5949-b8ba-4574bc09e2a3", "text": "\u4e00\u5217\u706b\u8f66\u5728\u68ee\u6797\u4e2d\u7684\u94c1\u8f68\u4e0a\u884c\u9a76\uff0c\u8def\u65c1\u6709\u5927\u6811\u3002"} +{"id": "1004496", "video_name": "5356e483-82f4-5554-9bc1-744ed0035646", "text": "\u57ce\u5e02\u91cc\u7684\u6c7d\u8f66\u3002\u4fe1\u606f\uff1aUsedcarsni\u3002"} +{"id": "6002323", "video_name": "5944749d-47fd-599f-8b60-e282e9ac78fb", "text": "\u5e7f\u89d2\u955c\u5934\uff0c\u9ed1\u767d\u7535\u5f71\uff0c\u65e0\u58f0\u7535\u5f71\uff0c\u54e5\u7279\u7f8e\u5b66\uff0c\u7535\u5f71\u6548\u679c\uff0c\u56f4\u7ed5\u7740\u54e5\u7279\u5f0f\u5927\u6559\u5802\u7684\u5e9f\u589f\u3002"} +{"id": "5001515", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "\u5927\u5b66\u751f\u56e0\u672a\u5b9e\u73b0\u68a6\u60f3\u800c\u611f\u5230\u7edd\u671b\u3002"} +{"id": "3006490", "video_name": "ef0bc65a-e737-5e17-8dfd-3ac7d8f5e74a", "text": "\u4e00\u4e2a\u6234\u7740\u7535\u89c6\u7684\u7537\u5b50\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "1003801", "video_name": "463866c3-f96e-5410-a671-381070a2c3f4", "text": "\u5bb6\u5177\u9759\u6b62\u5730\u6f02\u6d6e\u5728\u7a7a\u4e2d\uff0c\u684c\u5b50\u3001\u6905\u5b50\u548c\u706f\u3002"} +{"id": "1003141", "video_name": "39ea4c0e-5d13-5cea-adea-159f7f36ffc4", "text": "\u9ea6\u5f53\u5a1c\u6b63\u5728\u559d\u53ef\u53e3\u53ef\u4e50\uff0c16:9\u771f\u5b9e\u3002"} +{"id": "6002411", "video_name": "ee7f25b0-df8d-52fb-9042-f30191af8361", "text": "Source sentence: The aroma of freshly baked bread filled the kitchen.\n\n\u897f\u65af\u5ef7\u5973\u796d\u53f8\u8eab\u7a7f\u4f20\u7edf\u670d\u88c5\uff0c\u7167\u6599\u6c38\u6052\u4e4b\u706b\u3002\n\n\u65b0\u9c9c\u70e4\u9762\u5305\u7684"} +{"id": "0006823", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "\u5728\u6bd4\u57fa\u5c3c\u6d77\u5e95\u57ce\u7684\u4e00\u500b\u50fb\u975c\u89d2\u843d\uff0c\u5728\u4e00\u500b\u9ed1\u6697\u800c\u5be7\u975c\u7684\u665a\u4e0a\uff0c\u6d77\u7dbf\u5bf6\u5bf6\u7a81\u7136\u611f"} +{"id": "2004892", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "\u6c34\u4e0b\uff0c\u4e00\u53ea\u5de8\u9ca8\u5728\u84dd\u8272\u53d1\u5149\u5c0f\u9c7c\u7684\u80cc\u540e\u3002"} +{"id": "2004445", "video_name": "adc0bc46-a414-534d-a6a7-ee11077564dc", "text": "4K\u52a8\u753b\u98ce\u683c\uff0c\u7535\u5f71\u822c\u7684\u77ed\u7bc7\u6545\u4e8b\uff0c\u4e00\u4e2a\u6559\u6388\u5728\u68ee\u6797\u91cc\u53d1\u73b0\u4e86\u88ab\u9057\u5f03\u7684\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "2006301", "video_name": "a29b0ff6-0d8f-5dd9-8015-95f6c5d91fcb", "text": "\u4e00\u6735\u53ef\u7231\u7684\u4e91\uff0c\u98ce\u683c\u6765\u81ea3D\u52a8\u753b\u7535\u5f71\u3002"} +{"id": "3006508", "video_name": "01e56879-0e86-5313-9563-9856579c4a8c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u97e9\u56fd\u5973\u5b69\u88ab\u5c55\u793a\u51fa\u6765\u3002"} +{"id": "2005567", "video_name": "397e234a-a4a9-51ca-b28d-5b9a0914592f", "text": "\u8389\u62c9\u548c\u963f\u91cc\u4e0e\u5176\u4ed6\u4fe1\u5f92\u4e00\u8d77\u5728\u6e05\u771f\u5bfa\u91cc\u505a\u7977\u544a\u3002\u4f0a\u739b\u76ee\u5728\u524d\u9762\u5e26\u9886\u7977\u544a\u3002\u6e05\u771f\u5bfa\u7684\u5899"} +{"id": "3004907", "video_name": "dbf22a4f-2c57-54a3-a970-811f7100cc0a", "text": "\u6218\u6597\u5230\u8fbe\u9ad8\u6f6e\u65f6\uff0c\u4ed6\u4eec\u4fe9\u90fd\u5904\u4e8e\u6df1\u6e0a\u8fb9\u7f18\uff0c\u6323\u624e\u7740\u4fdd\u6301\u7acb\u8db3\u4e4b\u5730\uff0c\u540c\u65f6\u907f\u5f00\u5468\u56f4\u7684"} +{"id": "4002225", "video_name": "b96bf3ba-c488-5246-b4b3-f035720af7aa", "text": "\u4ee5\u60ca\u4eba\u76844K\u5206\u8fa8\u7387\u300160\u5e27\u6bcf\u79d2\u7684\u901f\u5ea6\uff0c\u5c55\u73b0\u852c\u83dc\u7684\u751f\u957f\u3002"} +{"id": "8001310", "video_name": "0079a232-d735-5066-87ff-99fde3aff8c7", "text": "\u9e1f\u513f\u4ece\u7a97\u6237\u4e0a\u8d77\u98de\uff0c\u5168\u9ad8\u6e05\u3002"} +{"id": "6002630", "video_name": "5aaec9c9-00b7-50df-a916-effd74fccb63", "text": "\u4e00\u53ea\u6bd4\u683c\u72ac\u5750\u5728\u5723\u8bde\u6811\u524d\u3002"} +{"id": "4002916", "video_name": "e3818173-9134-5e45-853d-1b0cc2aa23fd", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5361\u901a\u6751\u5e84\uff0c\u5934\u90e8\u6709\u7ec6\u8282\u52a8\u6001\u3002"} +{"id": "0004599", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "earn money.\n\n\u6709\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u670b\u53cb\u4f4f\u5728\u4e1b\u6797\u91cc\uff0c\u9700\u8981\u5de5\u4f5c\u8d5a\u94b1\u3002 \n\nSource sentence: She loves to read books about history and culture.\n\n\u5979\u559c"} +{"id": "2007976", "video_name": "ba014d45-5fea-565a-b070-71966415a8f3", "text": "\u5e15\u7a46\u5361\u83b1\u662f\u4f4d\u4e8e\u571f\u8033\u5176\u897f\u5357\u90e8\u7684\u81ea\u7136\u5947\u89c2\u3002"} +{"id": "8002587", "video_name": "0dc7dfe7-cb90-5b27-ab4e-b0cb077a060b", "text": "\u6cb3\u6d41\u548c\u4e00\u4e2a\u65e5\u843d\u7684\u80cc\u666f\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "3003082", "video_name": "2bc80240-59b4-5697-99ff-43f92d4e89c9", "text": "\u5251\u5ba2"} +{"id": "8003080", "video_name": "5e0f6c75-33f2-5530-8902-b0d8718ee37f", "text": "\u73ed\u52a0\u7f57\u5c14\uff08\u5370\u5ea6\uff09\u8857\u666f\u7684\u4e00\u90e8\u5206\uff0c\u4eba\u4eec\u5728\u8857\u4e0a\u8d70\u52a8\uff0c\u80cc\u666f\u662f\u5370\u5ea6\u6559\u5bfa\u5e99\uff0c\u4e00\u5934\u725b\u8eba"} +{"id": "3004904", "video_name": "2d3711c3-93a5-507a-a189-c193314b4556", "text": "\u9a6c\u7a46\u9c81\u514b\u9a91\u9a6c\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u5927\u89c4\u6a21\u3002"} +{"id": "5001872", "video_name": "fc802e33-c058-55ed-9389-27f665c3816b", "text": "\u9a6c\u91cc\u5965\u8df3\u4e0a\u9a86\u9a7c\uff0c\u52a8\u6f2b"} +{"id": "2003037", "video_name": "7fdeb587-168a-5ea2-95ab-3c29d72cdf22", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u4eba\u7269\u5750\u5728\u4e00\u4e2a\u53d1\u7740\u5149\u7684\u7b14\u8bb0\u672c\u7535\u8111\u524d\uff0c\u4ed6\u671d\u7740\u6444\u50cf\u5934\u8bb2\u8bdd\u3002\u7a97\u5916\u7684\u57ce\u5e02\u706f\u706b"} +{"id": "3003819", "video_name": "4c69d88f-de37-59ec-bac3-a198178ff276", "text": "\u5c55\u793a\u76ae\u80a4\u7ec6\u80de\u518d\u751f\u548c\u80f6\u539f\u86cb\u767d\u589e\u751f\u7684\u8fc7\u7a0b\u3002\u7ec6\u80de\u7684\u989c\u8272\u662f\u767d\u8272\u3002"} +{"id": "2004945", "video_name": "bcb2a010-c1a6-5221-9444-7ca2b2082d88", "text": "\u8fbe\u65af\u7ef4\u8fbe\u6267\u884c\u6fc0\u5149\u7eb9\u8eab\u53bb\u9664\u624b\u672f\u3002"} +{"id": "6004453", "video_name": "1019c8b5-9132-5ad3-97ba-3d730eb328e0", "text": "\u8a79\u59c6\u65af\u00b7\u90a6\u5fb7\u9a7e\u9a76\u8d85\u7ea7\u8dd1\u8f66\u8ffd\u9010\u6c7d\u8f66\u3002"} +{"id": "8003884", "video_name": "2551e65d-0585-50b1-a103-159c80395912", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u529e\u516c\u5ba4\u91cc\u7814\u7a76\u4eba\u5de5\u667a\u80fd\uff0c\u7136\u540e\u6709\u4eba\u7ed9\u4ed6\u9001\u6765\u5496\u5561\uff0c\u4ed6\u559d\u7740\u4eab\u53d7\u3002\u7136\u540e\u4ed6"} +{"id": "0006005", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "\u4e00\u53ea\u53ef\u5361\u72ac\u5728\u82f1\u683c\u5170\u7684\u516c\u56ed\u91cc\u5954\u8dd1\uff0c\u8fea\u58eb\u5c3c\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "6003485", "video_name": "4c09e0e2-7a4b-533d-a195-c1ebf584d66a", "text": "\u90a3\u4e2a\u5750\u5728\u95e8\u5eca\u4e0a\u62bd\u73bb\u7483\u70df\u6597\u7684\u7537\u4eba\uff0c\u8fdb\u5165\u4e86\u81ea\u5df1\u7684\u5185\u5fc3\u4e16\u754c\uff0c\u73b0\u5728\u6b63\u9677\u5165\u4e00\u7247\u8ff7"} +{"id": "4002609", "video_name": "efb3b6fe-cc4f-592d-805b-696bee7a42e3", "text": "\u5973\u5b69\u5fae\u7b11\u7740\u7f13\u6162\u5730\u8df3\u821e\u3002"} +{"id": "3005884", "video_name": "274cd3d0-f207-535d-9099-154f58477453", "text": "\u4e00\u4e2a\u5b66\u6821\u7537\u5b69\u5728\u8def\u4e0a\u62bd\u70df\u3002\n\nSource sentence: I need to buy some groceries at the supermarket.\n\u6211\u9700\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u98df\u54c1\u6742\u8d27\u3002"} +{"id": "0005513", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "\u5b89\u9759\u7684\u65f6\u523b\u5728\u4e00\u4e2a\u5947\u5e7b\u7684\u57ce\u9547\u91cc\uff0c\u4ee5\u5bab\u5d0e\u9a8f\u98ce\u683c\u7684\u65e5\u5e38\u751f\u6d3b\u4e3a\u4e3b\uff0c\u6e29\u6696\u800c\u5145\u6ee1\u6d3b\u529b"} +{"id": "2006570", "video_name": "fcd16bf9-7415-5cf8-975d-849d45fd8f2a", "text": "\u6c7d\u8f66\u7f13\u6162\u5730\u901a\u8fc7\u4e00\u5ea7\u8001\u65e7\u7684\u6e38\u4e50\u56ed\u3002"} +{"id": "0003780", "video_name": "433bdbc0-d59b-56e2-ac86-45b6079ee6b9", "text": "\u51b0\u5fc3\uff0c\u9ed1\u767d\uff0c1940\u5e74\uff0c\u65e0\u58f0\u7535\u5f71"} +{"id": "8002075", "video_name": "ea90a26e-e424-51e2-8353-a989b8d00596", "text": "\u6708\u8272\u5305\u88f9\u7684\u5e03\u6599\u5728\u7f8e\u5b66\u4e0a\u5f88\u6709\u9b45\u529b\u3002"} +{"id": "3004245", "video_name": "2006fe66-9aea-57c2-bb4b-706129bb0fd3", "text": "\u751f\u6210\u4e00\u5f20\u7f8e\u4eba\u9c7c\u5750\u5728\u5927\u7406\u77f3\u9732\u53f0\u4e0a\u7684\u56fe\u50cf\uff0c\u9690\u85cf\u5728\u6e05\u6f88\u7684\u6708\u5149\u4e2d\uff0c\u771f\u5b9e\u611f\u5341\u8db3\uff0c\u8d85\u8be6\u7ec6\uff0c\u7535\u5f71\u7ea7"} +{"id": "1006496", "video_name": "76f1a9c9-afdb-5dc4-b7cf-d78fbc335a6e", "text": "\u524d\u540e\u6c89\u601d\u7684\u68d5\u8272\u548c\u84dd\u8272\u65e0\u767d\u8272\u539a\u62ab\u98ce\uff0c\u52c7\u6c14\u548c\u5149\u660e\u4e4b\u7236\uff0c\u5361\u5c14\u00b7\u5384\u672c\u626e\u6f14\u4e00\u4f4d"} +{"id": "7003656", "video_name": "9d8ee12a-64df-5284-9645-28688fd38d37", "text": "\u675c\u5a03\u00b7\u5229\u5e15\u62b5\u8fbe\u5b5f\u4e70\u673a\u573a\uff0c\u516c\u4f17\u75af\u72c2\u4e86\u3002"} +{"id": "0004110", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "\u7537\u4eba\u624b\u62ff\u5f69\u7968\uff0c\u8138\u4e0a\u9732\u51fa\u60ca\u8bb6\u7684\u8868\u60c5\u3002"} +{"id": "5001903", "video_name": "e3f2587f-5eb3-5607-bff9-8968c1a1f3ab", "text": "\u4e09\u7ef4\u6e32\u67d3\u7684\u8302\u5bc6\u68ee\u6797\u91cc\u6709\u4e00\u6735\u53d1\u5149\u7684\u82b1\uff0c\u5feb\u901f\u7684\u8fd0\u52a8\u548c\u8fd0\u52a8\u6a21\u7cca\uff0c\u4f4e\u5feb\u95e8\u901f\u5ea6\u3002"} +{"id": "2005693", "video_name": "e741f787-82bd-566b-9fd1-cc9571538234", "text": "90\u5e74\u4ee3\u7684VHS\u5f55\u50cf\u5e26\u7247\u6bb5\uff0c\u8bb0\u5f55\u4e861887\u5e74\u7684\u5185\u6218\u3002"} +{"id": "0006979", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u5199\u4e00\u672c\u7a7a\u767d\u4e66\u3002\n\nSource sentence: I will meet you at the airport tomorrow.\n\u6211\u660e\u5929\u4f1a\u5728\u673a\u573a\u548c\u4f60\u89c1\u9762\u3002"} +{"id": "2007904", "video_name": "9c9dd23b-e52d-51d7-a556-bfd73e3f7578", "text": "\u4e00\u53ea\u9e66\u9e49\u98de\u8fc7\u7b3c\u5b50\u3002"} +{"id": "5001647", "video_name": "1e3e2fdd-5144-5e6b-bdf7-913e46e99b55", "text": "\u516c\u4e3b\u8389\u8389\u6000\u7740\u611f\u6fc0\u4e4b\u60c5\uff0c\u9ad8\u4e3e\u7740\u5fc3\u4e4b\u77f3\u3002"} +{"id": "1006873", "video_name": "7d847ed3-aacd-5f05-a21c-7a6d134fc353", "text": "\u745e\u514b\u548c\u83ab\u8482\u4f5c\u4e3a\u5065\u8eab\u8005\u3002"} +{"id": "2004948", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "\u7537\u5b50\u8eab\u7a7f56\u53f7\u7eff\u8272\u7403\u8863\uff0c\u5728\u6574\u4e2a\u4f53\u80b2\u573a\u5185\u70b9\u71c3\u4e86\u718a\u718a\u70c8\u706b\uff0c\u591c\u8272\u4e2d\u663e\u5f97\u683c\u5916\u9192\u76ee"} +{"id": "2007833", "video_name": "a996cf5a-211e-5317-8d9b-973271fb80ed", "text": "\u592a\u7a7a\u4eba\u4ece\u5ea7\u4f4d\u4e0a\u7ad9\u8d77\u6765\u7684\u56fe\u50cf"} +{"id": "6002624", "video_name": "0a63bf0b-e438-52e6-aed2-f152d44d9923", "text": "\u5728\u9ed1\u6697\u7684\u73af\u5883\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u8dea\u5728\u5730\u4e0a\u7977\u544a\u3002"} +{"id": "2004809", "video_name": "37d5a087-e352-5fe0-9677-e849e31d0639", "text": "\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u3001\u9a91\u7740\u6469\u6258\u8f66\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u5982\u7535\u5f71\u753b\u9762\u822c\u7684\u5f62\u8c61\u3002"} +{"id": "8003347", "video_name": "d365e08e-850a-50bf-bd7d-c4afb608a4db", "text": "\u4e00\u90e8\u5177\u67098K\u9ad8\u6e05\u7684\u5f69\u8272\u7535\u5f71\uff0c\u62cd\u6444\u4e861884\u5e74\u67cf\u6797\u4f1a\u8bae\u7684\u5168\u666f\uff0c\u5176\u4e2d\u6b27\u6d32\u56fd\u5bb6\u5c06\u975e\u6d32\u5212\u5206\u4e3a\u591a\u4e2a"} +{"id": "7004040", "video_name": "e94e35d3-5817-5540-9d30-0ac0e0ba4e7e", "text": "\u4e00\u53ea\u732b\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u7684\u98ce\u683c\u5403\u9762\u5305\u3002"} +{"id": "2003334", "video_name": "eacef6a1-0020-5e29-898f-9785ef6b15bf", "text": "\u89d2\u6597\u58eb\u7535\u5f71\u548c\u82ad\u6bd4\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "7003192", "video_name": "7494713a-f53f-59f4-aad0-e005c59614d5", "text": "\u673a\u5668\u4eba\u9a6c\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "3004188", "video_name": "12769240-15dd-5503-9191-ab2977b92edf", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u6c49\u670d\u7684\u5973\u5b69\u62ff\u7740\u4f1e\u5728\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "1004705", "video_name": "5763492d-62e3-5e97-a01d-9fa5967b8bcf", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\uff0c\u5728\u9662\u5b50\u91cc\u5954\u8dd1\u3002"} +{"id": "8002345", "video_name": "b2a74346-3950-5229-87cc-f6f318a86c2e", "text": "\u514b\u62c9\u62c9\u8d1d\u5c14\uff0c\u4e00\u5934\u725b\u6b63\u5728\u68ee\u6797\u4e2d\u7684\u6ce5\u6cde\u6c60\u5858\u4e2d\u6df9\u6b7b\u3002"} +{"id": "6004794", "video_name": "47fe9949-8dae-5741-b897-915bc7d68408", "text": "\u5973\u9b3c\uff0c\u60b2\u4f24\uff0c\u6f02\u6d6e\u5728\u7a7a\u6c14\u4e2d\uff0c\u96fe\u6c14\uff0c\u60b2\u4f24\u60c5\u611f\u3002"} +{"id": "2007733", "video_name": "abaf3b25-a175-5041-94ff-939caab722a3", "text": "\u6c49\u5821\u5f88\u70ed\uff0c\u6ef4\u7740\u829d\u58eb\u3002"} +{"id": "6003562", "video_name": "dbb1d81f-7fe4-5d5a-ad5c-bc98d9cf243b", "text": "\u4eba\u4eceF16\u6218\u673a\u4e0a\u5f39\u5c04\uff0c\u6b64\u65f6\u822a\u6bcd\u6b63\u5728\u6d77\u4e0a\u3002"} +{"id": "4003071", "video_name": "e2f5d111-5dce-5d84-93d3-f0f49927ecb6", "text": "\u5782\u76f4\u822a\u62cd\u4fef\u77b0\uff0c\u98de\u8d8a\u7530\u91ce\u3001\u6c99\u6f20\u3001\u5fb7\u56fd\uff0c\u6674\u6717\u660e\u5a9a\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c4K\uff0c"} +{"id": "1005689", "video_name": "6885a33b-77dc-52d7-b6bd-744b2c178866", "text": "\u4e00\u53ea\u6bd4\u683c\u72ac\u5728\u884c\u9a76\u4e2d\u7684\u8f66\u7a97\u5916\u4f38\u51fa\u5934\uff0c\u8033\u6735\u5728\u98ce\u4e2d\u98d8\u8361\u7684\u89c6\u9891\u3002"} +{"id": "3006285", "video_name": "8422da62-7a26-5884-9838-42b63767bf3b", "text": "\u50cf\u7d20\u827a\u672f\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\u4e0b\u96e8\u3002"} +{"id": "4003759", "video_name": "64ff4c4f-00b4-5540-ae91-c6b9a731f4af", "text": "\u5a01\u5c3c\u65af\u7684\u9b3c\u9b42\uff0c\u4f46\u662f\u5b83\u53d1\u751f\u5728\u52a0\u5dde\u7684\u5a01\u5c3c\u65af\u3002"} +{"id": "2003344", "video_name": "98d60fe3-c621-55bb-ba18-117f5f8d5a5a", "text": "\u5173\u4e8e\u513f\u7ae5\u7684\u8282\u76ee\u7684\u52a8\u753b\u7247\u5934\u5e8f\u5217\u89c6\u9891"} +{"id": "3004971", "video_name": "e81da705-c334-5655-b7fe-64be2d7414a2", "text": "\u5728\u5e7f\u9614\u7684\u6d77\u6d0b\u4e0a\uff0c\u4e00\u4f4d\u5973\u5b50\u5728\u8239\u4e0a\u7528\u9c7c\u9975\u7aff\u9493\u5927\u9c7c\u3002"} +{"id": "4004039", "video_name": "432a3681-c79d-519b-90d6-0aee6d09c088", "text": "\u56db\u4e2a\u52a8\u4f5c\uff0c\u8ba9\u82b1\u74e3\u98d8\u843d\uff0c\u9633\u5149\u6d41\u6dcc\uff0c\u4f34\u968f\u7740\u8bf4\u8bdd\u3002"} +{"id": "3004263", "video_name": "f9214551-a263-5f36-accb-a5b41d551154", "text": "\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u91cc\u5728\u62f3\u51fb\u573a\u4e0a\u8df3\u8dc3\u3002"} +{"id": "8001989", "video_name": "61469974-c5ab-5831-81f7-093e375c0353", "text": "\u8ba9\u6240\u6709\u56fe\u50cf\u5728\u5706\u5708\u4e2d\u79fb\u52a8\u3002"} +{"id": "3003103", "video_name": "6d2b0c6d-cf7e-5210-a385-1dfdbf3b7198", "text": "\u6d77\u76d7\u8239\u957f\u548c\u5973\u8239\u957f\u5728\u8239\u4e0a\u7528\u5251\u640f\u6597\u3002"} +{"id": "1006256", "video_name": "729caeda-5986-5efc-870f-ae7aa84ed409", "text": "\u751f\u6210\u79d1\u5e7b\u592a\u7a7a\u98de\u8239\u6218\u4e89\u89c6\u9891\u3002"} +{"id": "1005302", "video_name": "617115c1-bfdb-58a0-bcbd-55487b78b05f", "text": "\u5377\u53d1\u7684\u5973\u4eba\u7a7f\u7740\u6697\u793a\u6027\u7684\u6bd4\u57fa\u5c3c\u7ad9\u7740\uff0c\u81ea\u7136\u5149\u7ebf\u4e0b\u975e\u5e38\u903c\u771f\u3002"} +{"id": "5001289", "video_name": "bbb91964-7960-5b50-af73-dccbe0c3b98f", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u7f8e\u4e3d\u5973\u4eba\uff0c\u5728\u53a8\u623f\u91cc\u8bf4\u4e86\u51e0\u53e5\u8bdd\u3002"} +{"id": "0004394", "video_name": "083026d5-4f7c-55e1-8aa0-773a3d631d28", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6728\u5c4b\u91cc\u8bfb\u4e66\u3002"} +{"id": "3004061", "video_name": "06979c9b-15cd-5d04-aae2-88382b826877", "text": "\u9cc4\u9c7c\u795e\u7d22\u8d1d\u514b\u5728\u6d41\u5a92\u4f53\u5de5\u4f5c\u5ba4\u73a9\u89c6\u9891\u6e38\u620f\uff0c\u4ee5\u4e09\u7ef4\u6e32\u67d3\u7684\u5f62\u5f0f\u5c55\u73b0\u3002"} +{"id": "3003834", "video_name": "d42fb20f-0227-50ce-a9eb-e5902e35b026", "text": "\u5c0f\u732b\u5b89\u59ae\u3001\u5c0f\u72d7\u548c\u5c0f\u72d7\u4e00\u8d77\u6234\u7740\u6c34\u4e0b\u9762\u7f69\u5728\u6c34\u4e0b\u6e38\u6cf3\uff0c\u53d8\u7126\uff0c\u9ad8\u6e05\u3002"} +{"id": "0006525", "video_name": "2e0fed4c-51ac-5fb2-bf0f-a1195db17a86", "text": "\u53f2\u524d\u4eba\u7c7b\u5728\u5e26\u6709\u706b\u7684\u6d1e\u7a74\u4e2d\u3002"} +{"id": "0005121", "video_name": "152eda01-aaba-53b9-a8e9-d592deec5961", "text": "\u7518\u9053\u592b\u4e0e\u6bd4\u5c14\u535a\u00b7\u5df4\u91d1\u65af\u4ea4\u8c08\uff0c\u7535\u5f71\u6162\u52a8\u4f5c\u7f29\u653e\uff0c\u4e91\u6735\u79fb\u52a8\uff0c\u660e\u4eae\u7684\u767d\u5929\uff0c\u7eff\u8272\u7684"} +{"id": "0005350", "video_name": "19415581-468c-5549-9588-b1836493db77", "text": "\u7537\u5b5050\u5c81\u8dea\u5728\u524d\u9762\u3002"} +{"id": "3003278", "video_name": "1030e40a-0e89-508b-9f3a-21199bb9c295", "text": "\u4e00\u540d\u65e5\u672c\u5496\u5561\u5e08\u5728\u661f\u5df4\u514b\u5e97\u91cc\u5236\u4f5c\u6d53\u7f29\u5496\u5561\u3002"} +{"id": "2003593", "video_name": "0cea0e79-a717-55ec-959f-5a470d6c8859", "text": "\u5728\u591c\u665a\u8def\u4e0a\u7684\u7eff\u8272CNG\u3002"} +{"id": "1003030", "video_name": "37a009c0-7f59-53e8-a93b-b7d8f5879671", "text": "\u4ee5\u8036\u7a23\u4e3a\u5bfc\u5e08\uff0c\u6307\u5f15\u4ed6\u7684\u8ffd\u968f\u8005\u8d70\u5411\u771f\u6b63\u7684\u7075\u6027\u3002"} +{"id": "2006137", "video_name": "65d7a636-cbc6-50d6-9ff0-63af11cb04ac", "text": "\u5728\u5bab\u5d0e\u9a8f\u7684\u5947\u5e7b\u4e16\u754c\u91cc\uff0c\u81ea\u7136\u4e0e\u9b54\u6cd5\u4ea4\u7ec7\uff0c\u5e73\u51e1\u7684\u52a8\u7269\u8fc7\u7740\u975e\u51e1\u7684\u751f\u6d3b\u3002\u60f3\u8c61\u4e00"} +{"id": "2007296", "video_name": "a6bc7bbe-f0b2-53ae-a866-cd41eb067fc1", "text": "\u4e00\u7fa4\u5b66\u751f\u5728\u6559\u5ba4\u91cc\u8fdb\u884c\u8bba\u575b\u8fa9\u8bba\u3002"} +{"id": "2003277", "video_name": "ac880eec-9def-5dd2-95c9-3a51fbf80e28", "text": "\u4e3aSecond Life\u751f\u6210\u4e00\u4efd\u9ed1\u767d\u7eb9\u8eab\u8bbe\u8ba1\u3002\u6211\u60f3\u8981\u4e00\u53ea\u5c55\u7fc5\u7684\u9e70\u7eb9\u8eab\u3002\u8bbe\u8ba1\u5e94\u8be5\u7b80\u6d01\u4f18\u96c5\uff0c\u7ebf\u6761\u6e05\u6670\u3002\u9e70"} +{"id": "2005586", "video_name": "d91dc636-8bbb-5d05-92fa-372cca8ac94f", "text": "\u53e4\u4ee3\u5de5\u4eba\u642c\u8fd0\u77f3\u5934\uff0c\u53e4\u4ee3\u5efa\u7b51\u5de5\u5730\uff0c8K\u9ad8\u6e05\u56fe\u7247\u3002"} +{"id": "7004363", "video_name": "67e19f30-f85d-5aa5-8c35-d3d5ea9e8c32", "text": "\u8fbe\u5229\u7f29\u653e\u5230\u5730\u7403\u4e0a\u6700\u9ad8\u7684\u5854\u9876"} +{"id": "6003043", "video_name": "ef5b42d6-653c-509e-9dde-0eb9b8279524", "text": "\u4e00\u4e2a\u5973\u5b69\u8d70\u5411\u68ee\u6797\u300216:9"} +{"id": "2006357", "video_name": "ac70430a-4314-53fe-8ae4-6a51760eeb9f", "text": "1980\u5e74\u4ee3\u7684UFO\u89c6\u9891\u5728\u591c\u95f4\u7a7f\u8d8a\u4e91\u5c42\u3002\u5149\u7ebf\u660e\u4eae\uff0c4K\uff0c16:9\u3002"} +{"id": "1005272", "video_name": "60ef3f44-3c53-524e-bdeb-582dfa0e92cd", "text": "\u98de\u673a\u649e\u8fdb\u623f\u5b50\uff0c1985\u5e74\u3002"} +{"id": "0004623", "video_name": "0c194721-67ab-5166-a9a8-8c4073501664", "text": "\u4e00\u6ef4\u773c\u6cea\u6ef4\u5728\u97f3\u7b26\u4e0a\uff0c\u620f\u5267\u6027\u7684\u6c1b\u56f4\uff0c\u95f4\u63a5\u7684\u706f\u5149\uff0c\u626d\u66f2\u7684\u3002"} +{"id": "0005997", "video_name": "24ba7eb2-d925-526b-9060-5dda81e4f81f", "text": "\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u548c\u58a8\u955c\u3001\u9a7e\u9a76\u54c8\u96f7\u6234\u7ef4\u68ee\u6469\u6258\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u9ad8\u901f\u884c\u9a76\u7684\u9177"} +{"id": "8002584", "video_name": "cf21d871-f73d-54b5-a376-5bde97b6e9ad", "text": "\u98ce\u666f\u3001\u5012\u5f71\u3001\u9ad8\u5927\u7684\u96ea\u5c71\u3001\u9752\u8471\u7684\u8349\u5730\u3001\u903c\u771f\u7684\u3001\u79cb\u5929\u3001\u6df1\u8272\u3002"} +{"id": "3006596", "video_name": "a1d47ecb-3926-561c-91c8-e4232ec3f2f1", "text": "\u82ac\u5170\u7684\u592a\u7a7a\u706b\u7bad\u57281973\u5e74\u53d1\u5c04\uff0c\u706b\u7bad\u4e0b\u65b9\u7206\u53d1\u51fa\u706b\u7130\uff0c\u7a7a\u6c14\u4e2d\u6f02\u6d6e\u7740\u96ea\u82b1\u3002"} +{"id": "4003289", "video_name": "a280c250-3dde-5996-8a20-3fe442f5b3ba", "text": "\u751f\u6210\u50cf\u4fc4\u7f57\u65af\u7eff\u8272\u95e8\u5eca\u697c\u4e0a\u65e0\u9762\u4eba\u4e00\u6837\u7684\u89c6\u9891\u3002"} +{"id": "2007947", "video_name": "4a1ac98e-2a4d-5397-b567-828b85c69b8a", "text": "\u7ed8\u753b\u4ece\u98ce\u666f\u7684\u5168\u666f\u5f00\u59cb\u3002"} +{"id": "5001706", "video_name": "9328e1b3-1bfd-58c7-a1ab-475a3b907324", "text": "\u90a3\u4e2a\u6cb9\u6f06\u6d82\u62b9\u7684\u4eba\u7ad9\u5728\u68ee\u6797\u4e2d\u5fc3\uff0c\u6000\u62b1\u7740\u4e00\u4e2a\u5706\u5f62\u6c34\u65cf\u7bb1\u3002"} +{"id": "0006338", "video_name": "2adbf766-1435-5b9b-9dab-a7e03468f5e1", "text": "\u5e0c\u814a\u795e\u8bdd\u4e2d\u7684\u4e0d\u673d\u82f1\u96c4"} +{"id": "1006378", "video_name": "74bb54eb-e949-576b-a8cf-cdb9db58b11d", "text": "on the other side \n\n\u6210\u4e3a\u6492\u54c8\u62c9\u6c99\u6f20\uff0c\u5915\u9633\u91cc\u6709\u6c99\u4e18\uff0c\u6708\u4eae\u5347\u8d77\u5728\u4e00\u8fb9\uff0c\u592a\u9633\u843d\u5728\u53e6\u4e00\u8fb9\u3002"} +{"id": "2006712", "video_name": "5184e187-3e79-510e-9fcd-b1b394531811", "text": "\u751f\u6210\u4e00\u4e2a\u88ab\u9ed1\u6697\u8986\u76d6\u7684\u591c\u665a\u6751\u5e84\u7684\u56fe\u50cf\u3002\u5c55\u793a\u6751\u6c11\u4eec\u56f4\u7ed5\u7bdd\u706b\u805a\u96c6\uff0c\u5206\u4eab\u5173\u4e8e\u95f9\u9b3c\u7684"} +{"id": "2007812", "video_name": "955a8216-29a9-5bb5-9cd7-96d33f2055b6", "text": "\u4e00\u540d\u7537\u5b50\u8d70\u5728\u4e00\u6761\u7a7a\u65f7\u7684\u9053\u8def\u4e0a\uff0c\u5468\u56f4\u662f\u6811\u6728\uff0c\u6444\u50cf\u673a\u7d27\u968f\u5176\u540e\u3002\u8fd9\u662f\u4e00\u79cd\u5409\u535c\u529b\u5de5\u4f5c\u5ba4"} +{"id": "3006244", "video_name": "fc861681-7e5f-572e-9fd2-6d2aab86811e", "text": "\u90a3\u662f\u4e00\u4e2a\u53c8\u9ed1\u53c8\u66b4\u98ce\u96e8\u7684\u591c\u665a\u3002\u56db\u4e2a\u670b\u53cb\u4e9a\u5386\u514b\u65af\u3001\u672c\u3001\u8f9b\u8fea\u548c\u5927\u536b\u60f3\u5192\u9669"} +{"id": "2004078", "video_name": "74ea1d54-2321-58f9-8136-70475f817055", "text": "\u795e\u5947\u7684\u6db2\u4f53\u4ece\u6876\u4e2d\u6d41\u6dcc\u3002"} +{"id": "0005679", "video_name": "1f244386-767b-5da5-8036-dbf08036c22f", "text": "\u5e74\u8f7b\u7684\u7f8e\u56fd\u7537\u5b50\u5728\u745c\u4f3d\u8bfe\u4e0a\uff0c\u88ab\u623f\u5c4b\u5305\u56f4\u7740\u3002"} +{"id": "2004549", "video_name": "51a10046-2717-5928-a445-8974a3606c6e", "text": "\u7eff\u8272\u7684\u5c0f\u5df4\u58eb\u901a\u8fc7\u9ad8\u901f\u516c\u8def\u8fdb\u5165\u57ce\u5e02\u3002"} +{"id": "8003437", "video_name": "0be543dc-2d95-5272-b5f4-7a4bc58d8a82", "text": "\u52e4\u52b3\u7684\u8682\u8681\u548c\u9e1f\uff0c\u4ee5\u5584\u826f\u548c\u63f4\u52a9\u7684\u884c\u4e3a\u6807\u5fd7\uff0c\u5728\u98ce\u5439\u8349\u52a8\u7684\u591a\u5f69\u91ce\u82b1\u76db\u5f00"} +{"id": "8001725", "video_name": "35370950-d34a-59ab-98e5-5a35f997a49c", "text": "Source sentence: \u7237\u7237\u5750\u5728\u5bb6\u91cc\uff0c\u6234\u7740\u4e00\u9876\u9ed1\u8272\u7684\u5e3d\u5b50\u3002"} +{"id": "1003221", "video_name": "3b585843-d804-59e8-b808-25c7ba14cbc8", "text": "\u7a7f\u7740\u71d5\u5c3e\u670d\u7684\u7537\u5b50\u6b63\u5728\u4e00\u8f86\u963f\u65af\u987f\u00b7\u9a6c\u4e01\u4e0a\u6f02\u79fb\u3002"} +{"id": "0003274", "video_name": "3aa0968d-b1de-598b-b14e-5ae6e34de268", "text": "\u4f46\u4ed6\u4eec\u4ece\u672a\u5fd8\u8bb0\u722c\u4e0a\u6a61\u6811\u5e76\u4ece\u5168\u65b0\u7684\u89c6\u89d2\u770b\u4e16\u754c\u7684\u90a3\u4e00\u5929\u3002"} +{"id": "2006148", "video_name": "82842c79-b419-5543-ae41-43230fc39e89", "text": "\u7280\u725b\uff0c\u955c\u5934\u5bf9\u51c6\uff0c\u7ad9\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "7003404", "video_name": "6ef90844-1aa4-515d-9d1b-345a0576ebd9", "text": "\u4e00\u76d8\u5206\u91cf\u9002\u5f53\u7684\u98df\u7269\u7ec4\u5408\u7684\u4fef\u89c6\u56fe\u3002"} +{"id": "6003074", "video_name": "53c98f86-498b-5f67-82ac-b5d3a82a876f", "text": "\u7f13\u6162\u5730\u653e\u5927\u753b\u9762\uff0c\u56e0\u4e3a\u7537\u5b69\u7565\u5fae\u98a4\u6296\u3002"} +{"id": "1003376", "video_name": "3e4029ec-a1cb-59f9-a68c-7e41cc21c4cd", "text": "\u5728\u9ed1\u6697\u4e2d\uff0c\u72fc\u4ee3\u8868\u5373\u5c06\u5230\u6765\u7684\u5371\u9669\u3002\u8106\u5f31\u7684\u7f8a\u8c61\u5f81\u7740\u8fdc\u79bb\u7267\u7f8a\u4eba\u548c\u7f8a\u7fa4\u65f6\u6240"} +{"id": "3006900", "video_name": "110c0809-0f27-5bba-af6c-2205e241b7ef", "text": "\u4e00\u68f5\u6811\uff0c\u6839\u90e8\u62fc\u51fa\u201c\u667a\u6167\u201d\u4e24\u4e2a\u5b57\u3002\u7535\u5f71\u822c\u903c\u771f\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "8002358", "video_name": "51e7aa6f-3419-547b-a4b6-fe969726a85b", "text": "\u5c0f\u5973\u5b69\u9ad8\u5174\u5730\u7528\u5de8\u5927\u7684\u96ea\u7403\u5806\u96ea\u4eba\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7003781", "video_name": "45a97ae4-f69f-506d-86c1-760c927c5aec", "text": "\u4eba\u4eec\u5728\u591c\u665a\u4ece\u5c0f\u6728\u5c4b\u4e2d\u9003\u8dd1\u3002"} +{"id": "2006972", "video_name": "35504b5e-e788-5642-8966-d63cfae95b2f", "text": "\u4e2d\u56fd1888\u5e74\u7684\u623f\u5c4b\uff0c\u7b49\u8ddd\u6295\u5f71\u63d2\u753b"} +{"id": "1006095", "video_name": "6fc75375-ca6c-5820-b1d7-559e94c360c2", "text": "\u5728\u516c\u56ed\u91cc\u6709\u4e24\u4e2a\u8001\u4eba\u5728\u4e0b\u68cb\uff0c\u65c1\u8fb9\u7ad9\u7740\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u8bf4\u8bdd\u3002"} +{"id": "8002370", "video_name": "28b51621-6b3f-59ff-9dff-569bc9887ac3", "text": "\u6355\u6349\u767d\u8863\u5973\u58eb\u7684\u7eaf\u7cb9\u6050\u60e7\uff0c\u5979\u662f\u4e00\u4f4d\u9b3c\u9b45\u822c\u7684\u5e7d\u7075\uff0c\u51fa\u73b0\u5728\u4e00\u4e2a\u8352\u51c9\u7684"} +{"id": "8001085", "video_name": "33f9d578-4874-52c3-a1a6-5437d4eac1e2", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u7ad9\u5728\u5c71\u4e0a\u770b\u7740\u4e00\u4e2a\u55b7\u6cc9\u3002"} +{"id": "2006774", "video_name": "54ccaa9f-a0ec-533c-af79-14073b483af2", "text": "\u5b69\u5b50\u623f\u95f4\u91cc\u7684\u73a9\u5177 \u6d88\u606f\uff1a\u5b89\u4e1c\u5c3c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "8003201", "video_name": "03a23ffc-4582-5b1c-98a0-533ba868a412", "text": "\u4e00\u540d\u56da\u72af\u5728\u4e24\u540d\u8b66\u5bdf\u7684\u966a\u540c\u4e0b\u8d70\u5411\u4ed6\u7684\u7262\u623f\u3002"} +{"id": "4003334", "video_name": "8a8ae224-0604-57cf-94a0-4bb3a1ef12af", "text": "\u5236\u4f5c\u4e00\u4e2a\u9a91\u81ea\u884c\u8f66\u7684\u6d77\u9f9f3\u79d2\u949f\u7684\u89c6\u9891\u3002"} +{"id": "8001773", "video_name": "e24ea956-d183-5081-9b9c-4b7ad8b2af9a", "text": "\u4e00\u4e2a\u624b\u53d1\u5149\u7684\u7537\u5b50\u7ad9\u5728\u516c\u8def\u4e2d\u592e\u3002"} +{"id": "2004663", "video_name": "8efc96b6-1475-5210-8f9d-d9d8c09ee308", "text": "\u76ee\u7779\u677f\u7403\u88c1\u5224\u6210\u529f\u793a\u610f\u516d\u5206\u65f6\u7684\u6fc0\u52a8\u573a\u9762\uff01"} +{"id": "2004907", "video_name": "7f87e152-588e-5227-bd28-b7ba2f2fdbd8", "text": "\u6f2b\u753b\u822c\u7684\u756a\u8304\u548c\u80e1\u841d\u535c\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "8001280", "video_name": "52d80334-9dca-50ec-8b42-68b7cebc3bbb", "text": "\u6770\u6d1b\u7279\u00b7\u91cc\u74e6\uff0c\u4ea8\u5229\u00b7\u5361\u7ef4\u5c14\u51fa\u6f14\u6770\u6d1b\u7279\u00b7\u91cc\u7ef4\u4e9a\u3002"} +{"id": "7003882", "video_name": "84c8e590-06ac-5c13-82da-ffccd3f30646", "text": "\u62c9\u59c6\u56fd\u738b\u5750\u5728\u738b\u4f4d\u4e0a\uff0c\u670d\u52a1\u4ed6\u738b\u56fd\u4e2d\u7684\u7a77\u4eba\u3002"} +{"id": "1004614", "video_name": "55d14ef1-e1cf-5c65-86f8-98dd8854fa2f", "text": "\u4e00\u53ea\u871c\u8702\u4e0e\u53e6\u4e00\u53ea\u871c\u8702\u4ea4\u8c08\u768430\u79d2\u89c6\u9891\u3002"} +{"id": "7003732", "video_name": "d2533c4e-0b00-5066-863e-2db32d52efd0", "text": "\u5973\u5b50\u5750\u5728\u8f66\u91cc\uff0c\u60f3\u7740\u4e0d\u60f3\u505a\u996d\uff0c\u770b\u7740\u52a8\u6f2b\u3002"} +{"id": "7002696", "video_name": "5debacae-6aeb-532a-9c3a-b3fb4f1010fd", "text": "\u4e00\u4e2a\u81ea\u6740\u7684\u7537\u4eba\uff0c\u9ed1\u6697\u7684\u6c1b\u56f4\u3002"} +{"id": "4003569", "video_name": "a7365e9f-84b5-50ef-ab98-5c7b0dffc7f2", "text": "\u4e00\u5ea7\u7ecf\u5386\u98ce\u96e8\u7684\u706f\u5854\uff0c\u8c61\u5f81\u7740\u5728\u56f0\u96be\u65f6\u671f\u7684\u6307\u5f15\u548c\u97e7\u6027\u3002"} +{"id": "4003941", "video_name": "21feeb33-5ae2-5800-8c25-4feb9327bbc8", "text": "\u98de\u821e\u7684\u7ec7\u7269\u3001\u8f7b\u8d28\u6750\u6599\u3001\u9ed1\u767d\u8272\u3001\u5149\u6548\u3001\u65f6\u95f4\u6d41\u901d\u3001360\u5ea6\u65cb\u8f6c\u3001\u66f4\u591a\u7ec6\u8282\u3002"} +{"id": "0006490", "video_name": "2d6aac47-f05f-53ac-9a7a-ed5dcc5ce080", "text": "\u4e00\u4e2a\u7537\u5b50\u4ece\u6d1e\u7a74\u91cc\u9003\u8dd1\uff0c\u6709\u602a\u7269\u7ad9\u5728\u7537\u5b50\u524d\u9762\uff0c\u573a\u666f\u662f\u51ac\u5b63\uff0c\u91c7\u7528\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "0006198", "video_name": "280fb5b7-cec5-52e0-9baa-c16350a4ea9e", "text": "\u4e00\u4f4d\u8eab\u7a7f\u6c99\u8272\u5236\u670d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u8003\u53e4\u6316\u6398\u73b0\u573a\uff0c\u80cc\u666f\u662f\u5176\u4ed6\u8003\u53e4\u5b66\u5bb6\u6b63\u5728\u5de5\u4f5c\u3002"} +{"id": "3006870", "video_name": "42271a52-8c35-5b2b-ae6c-791cd0723fca", "text": "\u7537\u4eba\u5728\u767d\u5929\u6e05\u6d01\u8f66\u7a97\u73bb\u7483\u3002"} +{"id": "8001201", "video_name": "9de90436-4587-5989-9926-aeae1e10404d", "text": "\u989c\u8272\u5931\u771f\u3001\u963f\u5df4\u6bd4\u6bd4\u6bd4\u4f8b\u3001\u53ef\u6015\u7684K\u6d1e\u584c\u9677\u3001\u5feb\u901f\u8fd0\u52a8\u3001\u6570\u767e\u4e07\u4e2a\u539f\u5b50\u88ab\u5439\u6563\u3001\u7a7f\u8fc7"} +{"id": "0003430", "video_name": "3d62cf77-7b0c-53fa-8f45-7b2cdcc7928b", "text": "\u52a8\u753b\u9ec4\u8272\u9e2d\u5b50\u4ece\u300a\u9e2d\u5b50\u6b4c\u300b\u4e2d\u8d70\u5f00\u4e86\uff0c\u79bb\u5f00\u4e86\u5b83\u7684\u67e0\u6aac\u679c\u6c41\u644a\u4f4d\u3002"} +{"id": "1004401", "video_name": "515a4856-63ad-5038-9463-f8adb8092ae5", "text": "\u5a74\u513f\u5750\u5728\u5a74\u513f\u8f66\u91cc\uff0c\u88ab\u72d7\u62c9\u7740\u8d70\u3002"} +{"id": "2005884", "video_name": "aa496ffd-fd83-5fd1-936c-ea877076e101", "text": "\u63cf\u8ff0\u7ef4\u83b1\u7559\u65af\u56fd\u738b\u5012\u53f0\u540e\u7684\u7f57\u9a6c\u57ce\u3002\u63cf\u7ed8\u9a6c\u5e93\u65af\u4e3a\u4e00\u4f4d\u660e\u667a\u7684\u9886\u8896\uff0c\u4e3a\u5e02\u6c11\u63d0\u4f9b"} +{"id": "8001659", "video_name": "f2d98a18-f3b7-5c13-88d3-91002f6b989f", "text": "\u6559\u6388\uff0c\u9976\u820c\u6b4c\u624b\u9ad8\u4ef7\u978b\uff0c\u706f\u5149\u79c0\u3002"} +{"id": "0004710", "video_name": "0dc4fe17-c791-5999-b60e-fde969ea2fa2", "text": "\u4f7f\u7528\u6570\u5b57\u827a\u672f\u5236\u4f5c\u7535\u5b50\u4e66\u3001T\u6064\u3001\u8ba1\u5212\u8868\u548c\u65e5\u5fd7\u7b49\u5404\u79cd\u6570\u5b57\u4ea7\u54c1\u7684\u7535\u5b50\u5546\u52a1\u89c6\u9891\u3002"} +{"id": "1006659", "video_name": "7a043785-953e-5385-be1f-7b0bcfb6d68a", "text": "\u5c55\u793a\u4e00\u5f20\u6cf0\u5766\u5c3c\u514b\u53f7\u7684\u5386\u53f2\u7167\u7247\u6216\u56fe\u50cf\u3002"} +{"id": "4002902", "video_name": "5e5e191f-851a-5429-bb12-2d8b62643dda", "text": "\u7ad9\u5728\u57ce\u5821\u4e0a\u7684\u9f99\u5f00\u59cb\u53d8\u5927\uff0c\u5e76\u6467\u6bc1\u4e86\u57ce\u5821\u3002"} +{"id": "1003669", "video_name": "4386f291-b291-5915-a5a6-7dd7a49c21bc", "text": "\u80af\u00b7\u91d1\u6728\u5728\u706b\u7130\u4e2d\u7f13\u6162\u884c\u8d70\uff0c\u706b\u7130\u4e2d\u8ff8\u53d1\u7740\u661f\u8fb0\u548c\u80fd\u91cf\uff0c\u80cc\u666f\u4e2d\u662f\u903c\u771f\u7ec6\u81f4\u7684"} +{"id": "1004024", "video_name": "4aad328e-6a80-518e-96b9-f2b0e27b1980", "text": "\u8759\u8760\u4fa0\u5f00\u7740\u5730\u72f1\u732b\uff0c\u800c\u5c0f\u4e11\u5219\u9a7e\u9a76\u7740\u8f68\u9053\u9e70SRT\u4e0e\u4ed6\u7ade\u901f\u3002"} +{"id": "1003361", "video_name": "3de44bfa-2b28-5be5-8209-67bf3b986b50", "text": "\u4e00\u4f4d\u62e5\u6709\u957f\u9ed1\u53d1\u548c\u7d27\u8eab\u88d9\u7684\u7f8e\u4e3d\u5973\u5b50\u5750\u8fdb\u5979\u7684\u8dd1\u8f66\u91cc\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002"} +{"id": "3003168", "video_name": "f6832569-43cb-58f7-a201-c7b0a5325ac1", "text": "Betty\u5927\u53a8\u5174\u81f4\u52c3\u52c3\u5730\u6253\u5f00\u76d2\u5b50\uff0c\u5c06\u8fd9\u79cd\u795e\u5947\u7684\u6df7\u5408\u7269\u5012\u5165\u66f2\u5947\u9762\u56e2\u7684\u6405\u62cc\u7897"} +{"id": "0006305", "video_name": "2a61bf27-5927-5e30-9ff7-91e9c99601d9", "text": "\u4e00\u79cd\u904d\u5386\u6a21\u62df\u7684\u661f\u578b\u641c\u7d22\u7b97\u6cd5\u3002"} +{"id": "4003143", "video_name": "d0fbb8b7-1f80-55c4-81d8-5ac1e53062e6", "text": "\u65e9\u6668\u65f6\u949f\u98de\u884c\n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "7004029", "video_name": "58515d99-3c9b-5d54-aa53-447e0397e9b9", "text": "\u5728\u665a\u4e0a\u8d8a\u8fc7\u94c1\u8def\u8f68\u9053\u3002"} +{"id": "1004929", "video_name": "5b2287d6-5fb8-5b18-8a0b-f9e61cc07077", "text": "\u4e16\u754c\u827e\u6ecb\u75c5\u65e5\uff0c\u7ea2\u4e1d\u5e26\u98d8\u626c\u5728\u51ac\u5b63\u5854\u6797\u57ce\u3002 \n\nSource sentence: The new year's fireworks lit up the night sky over Sydney Harbour"} +{"id": "6002002", "video_name": "cbcd0dce-ab92-5e6f-8615-8be8a886a2bf", "text": "\u60f3\u8c61\u4e00\u4e2a\u7537\u5b69\u8d70\u5728\u4e00\u6761\u6709\u9ad8\u7a97\u6237\u7684\u8def\u4e0a\uff0c\u6c7d\u8f66\u7ecf\u8fc7\u4ed6\uff0c\u5929\u6c14\u4e0b\u96e8\uff0c\u7537\u5b69\u7a7f\u7740\u96e8\u8863\u3002"} +{"id": "3006385", "video_name": "e0eeb268-4293-59d4-8a90-2ffa61378017", "text": "\u5728\u5ba2\u5385\u91cc\u7761\u5728\u540a\u5e8a\u4e0a\u7684\u718a\u3002"} +{"id": "0004962", "video_name": "1248fa13-354a-5161-b53e-cd71a12ca2dd", "text": "\u5728\u5370\u5ea6\uff0c\u4e00\u4f4d\u5973\u58eb\u4e3a\u56fd\u5927\u515a\u4e89\u53d6\u9009\u7968\u3002"} +{"id": "4004618", "video_name": "3972bc18-8407-50df-bdb2-f1ad5e6fb53c", "text": "\u4eba\u8d70\u5728\u7f8e\u5143\u949e\u7968\u7684\u96a7\u9053\u91cc\u3002"} +{"id": "3003620", "video_name": "1365c83a-45a2-5811-8e7d-7cf9cdd4d62d", "text": "\u6807\u8bb0\u7b14\u827a\u672f\u5c55\u793a\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5f62\u8c61\u753b\u51fa\u4e00\u4e2a\u62bd\u8c61\u7684\u7070\u8272\u4eba\u5f62\u5916\u661f\u4eba\uff0c\u5c16\u5934\u7b14\u7d20\u63cf\u624b\u518c\uff0c\u7cbe\u7f8e\u7684\u6c34"} +{"id": "1006386", "video_name": "74d0f108-9d2c-5d64-955d-de4bcd9d7345", "text": "\u7537\u4eba\u62ff\u7740\u624b\u673a\uff0c\u9762\u5bf9\u6444\u50cf\u5934\uff0c\u5728\u81ea\u5df1\u7684\u5de5\u4f5c\u5ba4\u91cc\u8d70\u52a8\u3002"} +{"id": "6003017", "video_name": "874eb96c-a9e9-5fb6-928e-7ba4dccf3fc0", "text": "\u4e24\u4e2a\u670b\u53cb\u5728\u519b\u961f\u7684\u5730\u9762\u4e0a\u53d7\u4f24\u4e86\u3002"} +{"id": "8002660", "video_name": "aba687f8-f40a-55d4-9660-0005025dced0", "text": "\u4e00\u500b\u5834\u666f\u5448\u73fe\u4e86\u4e00\u500b\u8212\u9069\u7684\u5b78\u7fd2\u74b0\u5883\uff0c\u4e00\u500b\u5973\u5b69\u5728\u65e5\u672c\u52d5\u6f2b\u98a8\u683c\u4e0b\u5b78\u7fd2"} +{"id": "4002208", "video_name": "248ad3c8-336e-51fe-9d2e-a4e68194c332", "text": "\u4e9a\u5386\u514b\u65af\u662f\u4e00\u4f4d\u5145\u6ee1\u6fc0\u60c5\u7684\u5386\u53f2\u6559\u6388\uff0c\u4e3a\u5927\u5b66\u751f\u6388\u8bfe\u3002\n\nSource sentence: The restaurant serves authentic Chinese cuisine with a modern twist."} +{"id": "4004808", "video_name": "68660646-5a66-51c3-aea1-f0648862bdee", "text": "\u5012\u584c\u5e76\u649e\u51fb\u67cf\u6797\u5899\u3002"} +{"id": "6004240", "video_name": "d61b482f-5b71-5b7d-9e09-92aab075eb5e", "text": "\u516c\u51433000\u5e74\uff0c\u5730\u7403\u4e0a\u7a81\u7136\u51fa\u73b0\u4e86\u4f20\u9001\u95e8\uff0c\u91ca\u653e\u51fa\u6765\u81ea\u5b87\u5b99\u5404\u4e2a\u89d2\u843d\u7684\u751f\u7075\uff0c\u5bfc\u81f4\u4e86\u6df7\u4e71\u7684\u6c47"} +{"id": "7004191", "video_name": "3b728cf4-691c-5d7c-822f-9ad661ca64e3", "text": "\u4e00\u4f4d\u7a7f\u7740\u6bd4\u57fa\u5c3c\u7684\u4e2d\u56fd\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u3002"} +{"id": "2004436", "video_name": "721c18b0-3a53-516b-b854-7c7ec45b4b65", "text": "\u4e00\u4e2a\u7537\u4eba\u6254\u7740\u70b9\u8d5e\u548c\u8bc4\u8bba\u7684\u5fbd\u6807\u3002\u5361\u901a\u6f2b\u753b\u3002"} +{"id": "5001661", "video_name": "a8248492-9918-5f77-9e71-c33aef3d90d9", "text": "\u592a\u9633\u6b63\u5728\u63a5\u8fd1\uff0c\u4eff\u4f5b\u8981\u649e\u4e0a\u6765\u4e86\u3002"} +{"id": "5001614", "video_name": "1ec0bc3f-f249-53fa-9aca-63eba7660c73", "text": "\u4e00\u4e2a\u4eba\u72ec\u81ea\u7ad9\u5728\u5370\u5ea6\u7684\u706b\u8f66\u7ad9\u3002"} +{"id": "4004684", "video_name": "1d079e3e-b564-5fc9-bfa0-c4f7ec067940", "text": "\u9f99\u773c\u71c3\u70e7\u7740\u660e\u4eae\u7684\u7ea2\u8272\uff0c\u7f13\u6162\u5730\u653e\u5927\u3002\u4fe1\u606f\uff1aSam Cater\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4004587", "video_name": "9eb616c6-1227-58de-b4fc-7455562bbe36", "text": "\u672a\u6765\u4e3b\u4e49\u6218\u6597\u673a\u5728\u4ee5\u8272\u5217\u7279\u62c9\u7ef4\u592b\u4e0a\u7a7a\u4e0e\u5916\u661f\u98de\u8239\u4ea4\u6218\u3002"} +{"id": "4002836", "video_name": "ab4ef00d-5d9e-5a01-b2f7-26a06c69477b", "text": "\u7acb\u5373\u52a0\u5165 Telegram\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003466", "video_name": "934cfb96-480f-52b4-80cc-8a584c864e47", "text": "\u4eba\u7c7b\u7684\u5fc3\u810f\u8df3\u52a8\uff0c\u5fc3\u810f\u50cf\u82f9\u679c\u4e00\u6837\u8df3\u52a8\u3002"} +{"id": "4002021", "video_name": "8780dca6-1351-51fb-8431-5c90b0c651db", "text": "\u7b2c\u4e00\u6b21\u53d1\u73b0\u4eba\u5de5\u667a\u80fd\u7684\u5b69\u5b50\u3002"} +{"id": "0005623", "video_name": "1e4786e5-38be-5df7-b0c7-1147c7161087", "text": "\u4e00\u79cd\u6709\u8da3\u7684\u6bd4\u8f83\uff0c\u5c06DreamFusion\u548c\u65e5\u5e38\u7269\u54c1\u8fdb\u884c\u5bf9\u6bd4\uff0c\u4f8b\u5982\u4f7f\u7528\u5b83\u53ec\u5524\u4e00\u676f\u5496\u5561\u800c\u4e0d\u662f\u81ea\u5df1\u5236\u4f5c\u3002"} +{"id": "4002036", "video_name": "ab1e5eeb-be13-50a2-981a-8ba92cb1a54b", "text": "\u4e00\u53ea\u6234\u7740\u58a8\u955c\u5728\u516c\u8def\u4e0a\u7684\u718a\u732b\u3002"} +{"id": "7004365", "video_name": "6b38f77c-c855-5d1b-8f0b-076132513a2e", "text": "\u7f8e\u4e3d\u6c99\u6ee9\u7684\u65e0\u4eba\u673a\u822a\u62cd\u753b\u9762"} +{"id": "3005111", "video_name": "ce555735-48ec-58fa-a4ba-0e55d52a8450", "text": "\u8863\u88f3\u6ce2\u52a8\uff0c\u98de\u9e1f\u7ff1\u7fd4\uff0c\u4e91\u5f69\u98d8\u79fb\uff0c\u5c18\u571f\u5347\u817e\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0006559", "video_name": "2eaa409a-f941-5d7f-9a0d-11b78c360492", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u548c\u4e00\u4e2a\u795e\u79d8\u7684\u620f\u5267\u6027\u5929\u7a7a\uff0c\u4ed6\u4eec\u7f13\u6162\u5730\u8d70\u7740\u3002"} +{"id": "8001217", "video_name": "a3c3d976-b90b-584f-8707-8b9d74861527", "text": "\u6700\u5c0f\u6d3e\u5bf9\uff0c\u6df1\u5c4b\u97f3\u4e50\u3002\u5feb\u4e50\u7684\u753b\u9762\uff0c\u4eba\u4eec\u5438\u70df\u65b0\u8349\u836f\uff0c\u54e5\u7279\u5f0f\u5916\u661f\u4eba\u6444\u5f71\u3002"} +{"id": "0006458", "video_name": "2ce91d94-d95e-5f49-ad32-c93b42f1c80e", "text": "\u4e00\u540d\u624b\u6301\u5251\u7684\u7537\u5b50\u4e0e\u4e00\u7fa4\u574f\u4eba\u6218\u6597\u3002"} +{"id": "1005848", "video_name": "6b7b9306-1496-50b2-905c-f7d12a9ef25b", "text": "\u804c\u4e1a\u6cbb\u7597\u53d7\u751f\u6210\u578b\u4eba\u5de5\u667a\u80fd\u5f71\u54cd\u3002"} +{"id": "6002466", "video_name": "03dde5ea-5688-5390-9c71-de25d3b58738", "text": "\u5b66\u751f\u4f7f\u7528\u5a92\u4f53\u5de5\u5177\u8bbe\u8ba1\u4e00\u4e2a\u53f2\u524d\u9910\u5385\u3002"} +{"id": "7004364", "video_name": "a9a9b2a9-14cd-5ac4-a403-cb08d0eae5d7", "text": "\u8fc7\u6e21\u5230\u540c\u4e00\u89d2\u8272\u60f3\u8c61\u65c5\u884c\u68a6\u60f3\u7684\u68a6\u5e7b\u5e8f\u5217\u3002\u80cc\u666f\uff1a\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u6807\u5fd7\u6027\u7684\u5730\u6807\u3002\u9762\u90e8\u8868"} +{"id": "0004882", "video_name": "10d9bf69-7c65-5d80-99fc-550fa2e3a366", "text": "\u5728\u8349\u539f\u4e0a\uff0c\u4e00\u53ea\u72ee\u5b50\u51b2\u8fc7\u6765\u3002\u98ce\u5439\u4e71\u4e86\u5b83\u7684\u6bdb\u53d1\uff0c\u5b83\u5411\u76f8\u673a\u5954\u8dd1\u7740\uff0c\u6563\u53d1\u51fa\u5f3a\u5927"} +{"id": "8001906", "video_name": "79532675-f33b-574b-a82f-f0d9750d0455", "text": "\u81ea\u7136\u536b\u661f\u5728\u7a7a\u95f4\u4e2d\u95ea\u8000\u7740\u5149\u8292\u3002"} +{"id": "1003969", "video_name": "494a4031-1502-57f9-ac27-f9f07c890d99", "text": "\u7ee7\u7eed\u63a2\u7d22Storyville\uff0c\u6e34\u671b\u4e86\u89e3\u66f4\u591a\u4ed6\u5468\u56f4\u7f8e\u5999\u7684\u4e16\u754c\u3002"} +{"id": "2003539", "video_name": "daa8efbb-1a0a-5946-9f52-8689b35bb243", "text": "\u521b\u9020\u51fa\u4e24\u4e2a\u4eba\u5728\u64ad\u5ba2\u4e2d\u4ea4\u8c08\u7684\u5f62\u8c61\u3002"} +{"id": "8003391", "video_name": "7f628839-84dd-5218-9953-8cf269f65ac9", "text": "\u6708\u7403\u7ecf\u5386\u6781\u7aef\u7684\u6e29\u5ea6\u53d8\u5316\u3002"} +{"id": "2005146", "video_name": "51b21929-4625-53c7-adcd-21dbe19f25de", "text": "\u5730\u7403\u5728\u81ea\u8f74\u4e0a\u81ea\u8f6c\u7684\u540c\u65f6\u53d1\u751f\u65e5\u8680\uff0c\u5728\u592a\u7a7a\u4e2d\u89c2\u5bdf\u3002"} +{"id": "7002057", "video_name": "bdb58c21-67e6-5eb2-b1c7-b2c3a30d664f", "text": "\u751f\u6210\u4e00\u7cfb\u5217\u5feb\u901f\u955c\u5934\uff0c\u5c55\u793a\u52a8\u753b\u89d2\u8272\u89e3\u8c1c\u3001\u63a2\u7d22\u65b0\u5947\u7684\u4e16\u754c\u5e76\u5206\u4eab\u4ee4\u4eba\u5174\u594b\u7684\u5192\u9669\u3002\u6bcf\u4e2a\u955c"} +{"id": "4003593", "video_name": "d30367aa-92f2-5cb1-a7a7-b9e53ef7881f", "text": "\u514b\u6797\u7279\u00b7\u4f0a\u65af\u7279\u4f0d\u5fb7\u9a91\u7740\u6469\u6258\u8f66\u7a7f\u8d8a\u6c99\u6f20\uff0c\u8eab\u65c1\u5750\u7740\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973"} +{"id": "1005149", "video_name": "5edb757d-254f-52eb-a437-1c4f2f5e0ce2", "text": "\u67d4\u548c\u7684\u9633\u5149\u5145\u6ee1\u4e86\u623f\u95f4\uff0c\u6211\u4eec\u9047\u5230\u4e86\u4e00\u4e2a\u540d\u53eb\u6770\u514b\u7684\u5e74\u8f7b\u7537\u5b69\uff0c\u4ed6\u662f\u76f2\u4eba\u3002\u4ed6\u5750\u5728\u684c\u5b50"} +{"id": "4004520", "video_name": "0da2e271-c5fd-5bb3-9abb-8cc4886bfdaf", "text": "\u7ec6\u80de\u5411\u6c27\u5206\u5b50\u6350\u8d60\u4e00\u4e2a\u7a7a\u7535\u5b50\u3002"} +{"id": "7004094", "video_name": "dd14129e-699a-5503-8c1d-b84eeff4f736", "text": "\u94b1\u8d22\u5b9d\u85cf\u548c\u73e0\u5b9d\u3002\u8fd8\u6709\u94bb\u77f3\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2006042", "video_name": "c970bf36-c3c0-52a8-a12a-48ec4d23a560", "text": "\u4ed6\u4eec\u88ab\u4ed6\u4eec\u7684\u59d1\u59d1\u6536\u517b\u4e86\uff0c\u4f46\u5979\u5e76\u4e0d\u662f\u6700\u6709\u7231\u5fc3\u548c\u5173\u6000\u7684\u76d1\u62a4\u4eba\u3002\u5979\u603b\u662f\u63d0\u9192\u4ed6\u4eec\uff0c\u4ed6\u4eec"} +{"id": "0005693", "video_name": "1f92cae1-3dd6-5b58-a4f7-d2b9a1b1b56e", "text": "\u89d2\u8272\u4e3e\u624b\uff0c\u4e91\u6735\u79fb\u52a8\u548c\u670d\u88c5\u79fb\u52a8\u3002"} +{"id": "0004209", "video_name": "0501ae39-1a8d-517e-ae13-2afec8b888a8", "text": "\u4e00\u8f86\u7531\u5de7\u514b\u529b\u5236\u6210\u7684\u5170\u535a\u57fa\u5c3c\u4ee5\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "1004551", "video_name": "54873c6c-bdee-5607-890f-7bc2e8cc9b94", "text": "\u4e3a\u5173\u4e8e\u5728\u5c3c\u65e5\u5229\u4e9a\u9500\u552e\u7a7a\u4e2d\u65f6\u95f4\u548c\u6570\u636e\u4e1a\u52a1\u7684\u5e16\u5b50\u751f\u6210\u4e00\u5f20\u56fe\u7247\u53ef\u80fd\u5305\u62ec\u5176\u4ed6\u8ba2\u9605\u3002"} +{"id": "2005375", "video_name": "827f6d31-bb0e-501e-a4e4-26b91ddf4013", "text": "\u7a7f\u7740\u519b\u88c5\u7684\u7a46\u65af\u5854\u6cd5\u00b7\u51ef\u672b\u5c14\u00b7\u963f\u5854\u56fe\u5c14\u514b"} +{"id": "1004900", "video_name": "5a81c64c-67dc-5a48-bd1a-7d5dd7f4a185", "text": "\u4e00\u5bb6\u53ef\u7231\u7684\u5c0f\u8682\u8681\u5728\u96e8\u4e2d\u805a\u96c6\u5728\u4e00\u628a\u4f1e\u4e0b\u3002"} +{"id": "0006870", "video_name": "3488a4dc-7009-549b-9828-47e20b2cfbf6", "text": "2150\u5e74\u7684\u73b0\u5b9e\u5927\u8c61\uff0c\u811a\u4e0a\u6709\u50cf\u9c7c\u5c3e\u5df4\u4e00\u6837\u7684\u4e1c\u897f\u53ef\u4ee5\u6e38\u6cf3\u3002"} +{"id": "5001604", "video_name": "c5410d7b-158f-58ff-a97c-708fbda02f06", "text": "\u6dd8\u6c14\u7684\u6d77\u8c79\u5728\u6c89\u8239\u4e2d\u5b09\u620f\uff0c\u753b\u50cf"} +{"id": "4004394", "video_name": "9633d54a-0258-50ef-a349-96724483177b", "text": "\u660e\u6708\u7167\u8000\u5927\u6d77\uff0c\u6211\u4eec\u4ece\u8fdc\u65b9\u5206\u4eab\u8fd9\u4e00\u523b\u3002"} +{"id": "4002214", "video_name": "ef5df905-19a4-5825-a183-179f741518eb", "text": "1962\u5e74\uff0c\u5728\u5fb7\u514b\u8428\u65af\u5dde\u7684\u4e00\u6761\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u9ed1\u6697\u516c\u8def\u4e0a\uff0c\u4e00\u4f4d\u6d82\u7740\u7ea2\u5507\u818f\u7684"} +{"id": "1005050", "video_name": "5d5e0a4e-db68-5638-bfb7-8aa11ff5cecb", "text": "\u4f0a\u8299\u7ed9\u4e9a\u5f53\u5582\u82f9\u679c\u3002"} +{"id": "0003087", "video_name": "36bef0d0-e221-5883-a4de-ee34f0dc22ea", "text": "\u5b5f\u52a0\u62c9\u56fd\u7684\u519c\u6c11\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u6d6a\u6f6e\u4e2d\u6d8c\u5411\u7530\u5730\u3002"} +{"id": "1005027", "video_name": "5d035f5d-048e-58be-8dd5-f8ff67af9faa", "text": "\u4e00\u500b\u5065\u58ef\u7684\u7537\u5b50\u5728\u6df1\u9083\u9ed1\u6697\u7684\u6d77\u6d0b\u4e2d\u5782\u76f4\u6e38\u6cf3\uff0c\u5468\u570d\u88ab\u5a01\u8105\u6027\u7684\u6d77\u6d0b\u602a\u7269"} +{"id": "1006450", "video_name": "760fa1cc-d2fa-5c7b-b9bb-daa70da4ba76", "text": "\u6709\u5f88\u591a\u73b0\u91d1\u548c\u4fdd\u65f6\u6377GT3RS\u7684\u5e74\u8f7b\u767e\u4e07\u5bcc\u7fc1\u3002"} +{"id": "3003223", "video_name": "27e51b11-0c9f-5242-9d77-ed9570f6b537", "text": "\u4e00\u5ea7\u9f99\u88c5\u9970\u7684\u65f6\u5149\u95e8\uff0c\u8ff7\u96fe\u7f2d\u7ed5\uff0c\u6050\u9f99\u4ece\u4e2d\u8d70\u51fa\uff0c\u9519\u7efc\u590d\u6742\u76843D\u6570\u5b57\u7ed8\u753b\uff0c\u7ea2"} +{"id": "3005903", "video_name": "d496bd44-a13b-5641-a946-82f49040c3d6", "text": "\u4e0b\u8d77\u7070\u70ec\u503e\u76c6\u5927\u96e8\u5728\u7f51\u7edc\u57ce\u5e02\u4e2d\u3002"} +{"id": "0004050", "video_name": "024c88b8-4298-5dca-a431-a8baf5d2b95a", "text": "\u7626\u957f\u7684\u6e29\u8fea\u6208\u7a7f\u7740\u897f\u88c5\uff0c\u5728\u6a21\u7cca\u3001\u4f4e\u8d28\u91cf\u7684\u5f55\u50cf\u5e26\u4e2d\u51fa\u73b0\u5728\u68ee\u6797\u7a7a\u5730\u548c\u88ab\u9057\u5f03"} +{"id": "8001038", "video_name": "c2a6b1c5-3293-53f4-ab81-88a326890a2c", "text": "\u8036\u7a23\u5728\u4e00\u4e2a\u5ba4\u5185\u6e38\u6cf3\u6c60\u4e0a\u884c\u8d70\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "4002553", "video_name": "d8709623-609e-51c9-a652-44be83c6b190", "text": "Ahmed \u51fb\u51fa\u4e00\u8bb0\u56db\u5206\u7403\uff0c\u4e3a\u5df4\u57fa\u65af\u5766\u961f\u9501\u5b9a\u80dc\u5229\u3002\u89c2\u4f17\u6cb8\u817e\u7740\u5e86\u795d\u3002"} +{"id": "4002718", "video_name": "6b5a74d7-6d3a-55c8-92d4-9465a5a46619", "text": "\u54c8\u5229\u6ce2\u7279\u516c\u56ed\u6709\u5f3a\u98ce\uff0c\u4eba\u4eec\u4e0d\u8212\u670d\u5730\u6342\u7740\u8138\u3002"} +{"id": "6002083", "video_name": "4d59e92e-1b70-5f3b-9ac5-95d18dc4e8fa", "text": "\u5728\u592a\u7a7a\u4e2d\u53d1\u751f\u4e86\u4e00\u4e2a\u9646\u5730\u884c\u661f\u7684\u7206\u70b8\uff0c\u955c\u5934\u5411\u524d\u79fb\u52a8\uff0c\u5ca9\u77f3\u3001\u70df\u96fe\u548c\u706b\u7130\u56db\u6563\uff0c\u53e6\u4e00\u4e2a\u884c"} +{"id": "6004035", "video_name": "8f416fe1-f2fc-56d5-9ec9-715aa5997c14", "text": "\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u6df1\u5904\uff0c\u4f4f\u7740\u4e00\u53ea\u5e74\u8f7b\u800c\u7cbe\u795e\u7115\u53d1\u7684\u8001\u864e\uff0c\u540d\u53eb\u6258\u6bd4\u3002\u6258\u6bd4\u4ee5\u4ed6\u9192"} +{"id": "1006368", "video_name": "7498912b-ecbf-5d80-b7a1-cfe142910b4c", "text": "\u5965\u666e\u8482\u739b\u65af\u666e\u6797\u59c6\u673a\u5668\u4eba\u5728\u9a6c\u6876\u4e0a\u3002"} +{"id": "8003781", "video_name": "526afb3d-8f87-5556-adef-88c01b82f2ec", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u753b\u9762\u4e2d\u5fc3\uff0c\u80cc\u666f\u662f\u7f8e\u56fd\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u3002"} +{"id": "2003778", "video_name": "c5c58915-2967-5ab4-9d66-51eb559faf52", "text": "\u5728\u4e00\u4e2a\u8352\u51c9\u7684\u666f\u8c61\u4e2d\uff0c\u4e00\u540d\u7a7f\u7740\u7ea2\u8272\u5b87\u822a\u670d\u7684\u4eba\u7c7b\u7537\u5b50\u4e0e\u4e00\u540d\u7a7f\u7740\u84dd\u8272\u5b87\u822a\u670d\u5e76\u624b\u6301"} +{"id": "0003385", "video_name": "3ca70e33-4141-5f1c-804f-f404b156709d", "text": "\u70b9\u5934\u3002\u773c\u775b\u7728\u7728\u3002\u5934\u53d1\u968f\u98ce\u98d8\u52a8\u3002\u80cc\u666f\u6a21\u7cca\u3002\u8424\u706b\u866b\u5728\u80cc\u666f\u4e2d\u79fb\u52a8\u3002"} +{"id": "1005283", "video_name": "6128cb89-7a70-50c3-86ee-af9a3e222d7e", "text": "\u56db\u5904\u770b\u4e86\u770b\uff0c\u5728\u5730\u4e0a\u770b\u5230\u4e86\u4e00\u4e9b\u9762\u5305\u5c51\uff0c\u5728\u7a97\u53f0\u4e0a\u770b\u5230\u4e86\u4e00\u4e9b\u5de7\u514b\u529b\u3002"} +{"id": "4002820", "video_name": "a960242e-b9fe-506f-95c4-3e882900f3af", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u886c\u886b\u3001\u84dd\u8272\u88e4\u5b50\u3001\u84dd\u8272\u978b\u5b50\u3001\u84dd\u8272\u5e3d\u5b50\u548c\u84dd\u8272\u592a\u9633\u955c\u7684\u7537\u4eba"} +{"id": "8001301", "video_name": "237f064e-936e-53ed-94d9-663518b61b00", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u767d\u5154\u6ce8\u610f\u5230\u6c34\u5728\u68ee\u6797\u6e56\u4e2d\u5fc3\u4e0a\u6da8\u3002"} +{"id": "1003270", "video_name": "3c2b9dd2-85c1-5b06-9b31-bc53c7331e46", "text": "\u4eba\u8bbe\u5973\u5b69\uff0c\u8d85\u7ea7\u7ec6\u8282\uff0c\u6e10\u53d8\u80cc\u666f\uff0c\u67d4\u548c\u8272\u5f69\uff0c\u67d4\u548c\u7684\u5149\u7167\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u9ad8\u7ec6\u8282\uff0c\u827a"} +{"id": "1004229", "video_name": "4e463d67-855c-597a-9e40-6cfb41745ee6", "text": "\u4e00\u4e2a\u8fd1\u8ddd\u79bb\u7684\u955c\u5934\u62cd\u6444\u5230\u4e00\u53ea\u5927\u811a\u602a\u559d\u7740\u9999\u69df\u3002"} +{"id": "0006794", "video_name": "333b1666-240f-52bd-b084-56ab69b72378", "text": "\u7518\u5c3c\u4ec0\u5409\u7684\u7167\u7247\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "8001971", "video_name": "5265ad80-7282-5193-9bd7-cbad087783d8", "text": "\u827e\u62c9\u62c9\u548c\u585e\u62c9\u83f2\u5a1c\u5f00\u59cb\u7a7f\u8d8a\u68ee\u6797\uff0c\u6cbf\u7740\u873f\u8712\u7684\u5c0f\u5f84\u8d70\u53bb\u3002"} +{"id": "2004253", "video_name": "7d6b376c-0942-5d53-a62a-72450d4b5a59", "text": "\u4e09\u6735\u9ed1\u8272\u7684\u90c1\u91d1\u9999\u4ece\u7403\u830e\u751f\u957f\u5230\u5f00\u82b1\uff0c\u5728\u8000\u773c\u7684\u9633\u5149\u4e0b\uff0c\u5e26\u7740\u5e0c\u671b\u3001\u5feb\u4e50\u548c\u751f\u547d\u529b\u3002"} +{"id": "1003064", "video_name": "384df57f-6a79-505c-9deb-9798a15b787a", "text": "\u4e00\u53ea\u62ff\u7740\u5200\u7684\u8682\u86b1\u7a7f\u8fc7\u8349\u4e1b\u3002"} +{"id": "0004527", "video_name": "0a94f77f-f958-5b00-a665-33f43a9cacbd", "text": "\u5149\u7684\u7206\u70b8\u73af\u7ed5\u7740\u5341\u5b57\u67b6\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2007381", "video_name": "38f5c7cc-9668-5177-8a01-a24b0da026dc", "text": "\u6a59\u8272\u7684\u732b\u54aa\u73a9\u800d\u65f6\u78b0\u5230\u4e86\u706f\uff0c\u706f\u6389\u4e86\u4e0b\u6765\u3002\n\nSource sentence: I love to eat sushi and sashimi. \n\u6211\u559c\u6b22"} +{"id": "1003576", "video_name": "41ec1325-4a6a-5d09-8e87-6c4724de1a59", "text": "\u6811\u6728\u968f\u7740\u9e1f\u513f\u548c\u690d\u7269\u4e00\u8d77\u6447\u66f3\u3002"} +{"id": "1003301", "video_name": "3cc0896d-1215-59d8-9cd2-d43a097a7716", "text": "\u4e00\u4e2a\u586b\u6ee1\u6570\u5b57123456789\u7684\u57ce\u5821\u3002"} +{"id": "0004456", "video_name": "095be3ed-b8b7-5120-8156-1d5c4d33a83c", "text": "\u5de8\u9e4f\u4e0a\u4e0b\u7ffb\u98de\u3002\n\nSource sentence: I am learning Chinese language now. \n\n\u6211\u73b0\u5728\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "3003249", "video_name": "f0b3c1cd-0534-5409-bbc0-b2ac6359785b", "text": "\u963f\u5f17\u7f57\u5728\u91cc\u7ea6\u70ed\u5185\u5362\u4e2d\u5fc3\u7684\u5e15\u5c14\u9a6c\u96f7\u65af\u50f5\u5c38\u96d5\u50cf\u5468\u56f4\u8df3\u7740\u975e\u6d32\u821e\u8e48\uff0c"} +{"id": "1006543", "video_name": "77db25a5-511d-5e0d-84aa-1492536130d0", "text": "\u5e72\u679c\u6b63\u572810\u4e2a\u51b0\u6dc7\u6dcb\u676f\u4e0a\u878d\u5316\u3002"} +{"id": "4003523", "video_name": "589c0f76-d623-56f2-86d6-a6bc0af2aa3c", "text": "\u6625\u82b1\u56fe\u6848\u7684OSV\u89c6\u9891"} +{"id": "2007305", "video_name": "27fff71d-e97b-5bf6-bacd-9bff2a103376", "text": "10x10\u7684\u753b\u5e03\uff0c\u6c34\u82b1\u6e85\u8d77\uff0c\u4ea7\u54c1\u62cd\u6444\uff0c\u5de5\u4f5c\u5ba4\u62cd\u6444\uff0c\u6e05\u6670\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u5168\u9ad8\u6e054K\u3002"} +{"id": "4003018", "video_name": "8f140a80-261a-5281-b4dd-2710b0f9aabe", "text": "\u4e00\u76cf\u795e\u706f\uff0c\u53ef\u4ee5\u55b7\u51fa\u70df\u96fe\uff0c\u70df\u96fe\u4f1a\u53d8\u6210\u76d8\u65cb\u7684\u773c\u955c\u738b\u86c7\u3002"} +{"id": "3003633", "video_name": "7740bf8e-419e-5d51-8db6-05636244d861", "text": "\u521b\u9020\u4e00\u4e2a18\u5c81\u7684\u7537\u5b69\uff0c\u4ed6\u6709\u5377\u53d1\u548c\u4e00\u4ef6\u9ed1\u8272\u5939\u514b\uff0c\u4e0a\u9762\u5199\u7740yxxser\u3002\u80cc\u666f\u662f\u6e38\u620f\u5ba4\uff0815\u79d2\uff09\u3002"} +{"id": "1003362", "video_name": "3de4dcc0-fa24-5aa4-8e8c-bdbb5582c48d", "text": "\u7740\u4e00\u4f4d5\u5c81\u7684\u5973\u5b69\u5728\u54ed\u6ce3\u548c\u5954\u8dd1\u3002"} +{"id": "4003741", "video_name": "05cc325c-b3d7-501c-ae31-67ded2dcec16", "text": "\u4e50\u9ad8\u8759\u8760\u4fa0\u4eba\u5076\u4ece\u98de\u673a\u4e0a\u8df3\u4f1e\u3002"} +{"id": "3003823", "video_name": "f7a86cfd-d801-51c5-9cba-d852af19456a", "text": "\u5012\u5165\u676f\u4e2d\u7684\u5496\u5561"} +{"id": "1005651", "video_name": "67dc0dc5-c07b-54b5-9d8a-759d354cb7f2", "text": "\u5728\u7231\u6c99\u5c3c\u4e9a\u5854\u6797\u57ce\u521b\u4f5c\u51fa\u8d85\u6e05\u6670\u3001\u6781\u5176\u8be6\u7ec6\u76844K\u7248\u8036\u7a23\u50cf\uff0c\u653e\u7f6e\u4e8e\u5965\u5c14\u7ef4\u65af\u7279"} +{"id": "6004532", "video_name": "6f32d5d6-5ed1-54ac-b35d-d432952f75e7", "text": "\u4e00\u675f\u7eff\u5149\u663e\u73b0\u51fa\u4e00\u68f5\u6811\u548c\u88ab\u96ea\u8986\u76d6\u7684\u666f\u89c2\uff0c\u5448\u73b0\u51fa\u5947\u5e7b\u5f02\u4e16\u754c\u7684\u98ce\u683c\uff0c\u8fea\u7c73\u7279"} +{"id": "7004584", "video_name": "24b8c950-0f90-527c-95c6-b2358965afe1", "text": "\u4e3a\u5370\u5ea6\u5c3c\u897f\u4e9a\u8bbe\u8ba1\u76843D\u795e\u8bdd\u7ec8\u6781BOSS\uff0c\u5486\u54ee\u7740\u3002"} +{"id": "4004945", "video_name": "7b11f706-0964-55b7-bf1e-2238798c9a73", "text": "\u7f57\u7eb3\u5c14\u591a\u5728\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5e76\u4e3a\u963f\u5c14\u6253\u8fdb\u4e86\u8fdb\u7403\u3002"} +{"id": "8002967", "video_name": "77cfe1c0-d8e3-55a0-ba03-8ed3ecbf95d1", "text": "\u6728\u661f\u4e0a\u7684\u6c99\u5c18\u66b4\u7684\u65f6\u95f4\u6d41\u901d\u3002"} +{"id": "4002428", "video_name": "1aba8809-57f2-503c-a9f6-63de7c30dcb1", "text": "\u4eba\u7c7b\u770b\u7740\u4ed6\u7684\u673a\u68b0\u624b\u3002"} +{"id": "7003401", "video_name": "215335d3-c02a-5d26-a61b-c295c664df9f", "text": "\u505c\u683c\u52a8\u753b\u3001\u5947\u602a\u7684\u9ecf\u571f\u4eba\u3001\u9ecf\u571f\u52a8\u753b\u30011950\u5e74\u4ee3\u52a8\u753b\u3001\u5b9e\u9a8c\u6027\u8d28\u3001\u4fef\u77b0\u4e00\u6761\u6cb3\u6d41\u7684\u79cb\u5b63"} +{"id": "4003899", "video_name": "1cf1de67-8efe-5348-b9de-c73723c43fae", "text": "\u6cb9\u4e95\u5c01\u9694\u5668\u7a7f\u5f97\u50cf\u4e00\u4e2a\u963f\u5e15\u5947\u4eba\u3002"} +{"id": "0005461", "video_name": "1b29e308-cbd1-5e9c-9098-40f22a17fbdd", "text": "\u4e00\u4f4d\u62e5\u6709\u68d5\u8272\u5934\u53d1\uff0c\u7eff\u8272\u773c\u775b\uff0c\u81ea\u4fe1\u5fae\u7b11\u7a7f\u7740\u88d9\u5b50\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u5728\u624b\u4e2d\u62ff\u7740\u624b\u673a\uff0c\u770b\u8d77\u6765\u6709\u4e9b"} +{"id": "6003883", "video_name": "c0e04653-936d-57ca-9467-d58a2a4b4224", "text": "\u6765\u81ea\u53e6\u4e00\u4e2a\u5b87\u5b99\u7684\u6218\u4e89\u57ce\u5821\u3002"} +{"id": "1006106", "video_name": "70114577-e0ff-5bbb-9769-d52c35531925", "text": "\u5c55\u793a\u67d0\u4eba\u7528\u624b\u673a\u63a7\u5236\u98de\u5229\u6d66Hue\u706f\u5149\u3002"} +{"id": "5001609", "video_name": "14bee999-08aa-560c-965d-fabddfc7b3a6", "text": "\u4e00\u6761\u4e2d\u56fd\u7ea2\u8272\u7684\u9f99\u6ed1\u5165\u573a\u666f\uff0c\u7136\u540e\u6d88\u5931\u4e86\u3002"} +{"id": "1005742", "video_name": "69a7dac2-b0fd-5755-8692-fb366ba8afef", "text": "\u54e5\u65af\u62c9\u5728\u53a8\u623f\u91cc\u70e4\u86cb\u7cd5\uff0c1985\u5e74\u60c5\u666f\u559c\u5267\u3002"} +{"id": "2006987", "video_name": "9210baa3-3a24-59bc-aa63-92b6bd455582", "text": "\u5b83\u53d1\u751f\u5728\u4e00\u4e2a\u73b0\u4ee3\u5316\u7684\u53a8\u623f\u91cc\u3002\u76f8\u673a\u805a\u7126\u5728\u4e00\u4e2a\u53f0\u9762\u4e0a\uff0c\u90a3\u91cc\u6709\u4e00\u4e2a\u660e\u4eae\u800c\u4f18\u96c5\u7684\u70ed\u6c34\u74f6\u3002"} +{"id": "4004292", "video_name": "7c0feb19-77bd-5648-a17d-ab163bbbed3a", "text": "\u6cd5\u5ead\u4e0a\u6b63\u5728\u8fdb\u884c\u4e00\u573a\u9a91\u58eb\u4e4b\u6218\u3002"} +{"id": "8001584", "video_name": "9578a033-e3fb-58b2-bd77-7e72582b24de", "text": "\u4e00\u4e2a\u5145\u6ee1\u8fea\u65af\u79d1\u706f\u5149\u548c\u6d41\u884c\u97f3\u4e50\uff0c\u88c5\u6709\u626c\u58f0\u5668\u7684\u821e\u6c60\u3002\u4fe1\u606f\uff1aLiba\u821e\u8e48\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1005525", "video_name": "65b702d5-2ff5-5263-9c5f-42fb03c21be7", "text": "\u4e24\u4e2a\u5b64\u513f\u5a74\u513f\uff0c\u5b8c\u7f8e\u7684\u624b\u548c\u811a\u3002"} +{"id": "2005559", "video_name": "8e013345-aa61-5e7e-86cc-c9ad845e93ad", "text": "\u4e00\u6bb5GTA 6\u7684\u89c6\u9891\u6cc4\u9732\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u673a\u5668\u4eba\u6467\u6bc1\u6c7d\u8f66\u3002"} +{"id": "1005812", "video_name": "6ad8d33c-5adc-5cd3-b8c0-6607a2a8139e", "text": "\u5728\u623f\u95f4\u91cc\u665a\u4e0a\u7528\u7535\u8111\u521b\u4f5c\u97f3\u4e50\u7684\u7537\u4eba\u3002"} +{"id": "7002983", "video_name": "8a04f8a7-ef85-5831-bffe-5f486de4d6f8", "text": "\u6770\u4f5c\u3001\u6700\u4f73\u54c1\u8d28\u30014k\u3001\u4e2d\u56fd\u65b0\u5e74\u3001\u7ea2\u8272\u80cc\u666f\u3001\u559c\u5e86\u6c1b\u56f4\u3001\u9f99\u56fe\u6848\u3001\u8be6\u7ec6\u7684\u89d2\u8272\u8bbe\u8ba1\u3001CGSociety"} +{"id": "2004008", "video_name": "34ea2e6c-be07-5031-8f81-2853abe5dc7f", "text": "\u76ae\u5361\u4e18\u53d8\u8eab\u4e3a\u5965\u666e\u8482\u739b\u65af\u00b7\u666e\u83b1\u59c6\u7684\u7535\u5f71\u7ea73D\u573a\u666f\u3002"} +{"id": "1004889", "video_name": "5a5bb24b-f1dc-5f1d-a98f-d983419e4fad", "text": "\u4e00\u76cf\u5c0f\u53f0\u706f\u5728\u623f\u95f4\u91cc\u6295\u5c04\u51fa\u6e29\u6696\u7684\u5149\u8292\u3002"} +{"id": "4003477", "video_name": "eb7362a2-dcbf-5397-8984-f691af011e5d", "text": "\u5973\u5b69\u5f00\u5fc3\u5730\u5750\u5728\u7535\u89c6\u524d\u770b\u7535\u5f71\u3002"} +{"id": "1006930", "video_name": "7eba0b9f-bf48-5047-9e85-1ce180ba6564", "text": "12\u79d2\u3002\u6e38\u5ba2\u4eec\u4ece\u65f6\u5149\u673a\u91cc\u8dcc\u8dcc\u649e\u649e\u5730\u51fa\u6765\uff0c\u88ab\u5468\u56f4\u7684\u6c99\u6f20\u548c\u68d5\u6988\u6811\u5f04\u5f97\u56f0\u60d1\u4e0d"} +{"id": "4003083", "video_name": "59582987-b742-5cd0-b3e6-aa0776db6829", "text": "\u573a\u666f\uff1a\u66b4\u98ce\u96e8\u6c47\u96c6\uff0c\u96f7\u7535\u4ea4\u52a0\uff0c\u66b4\u96e8\u503e\u76c6\u3002\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u771f\u5b9e\u903c\u771f\u3002"} +{"id": "2003850", "video_name": "7556be86-8a79-538e-990e-d0512a090340", "text": "\u4e00\u4e2a\u7531\u6a59\u6c41\u6784\u6210\u7684\u7011\u5e03\u843d\u5165\u4e00\u4e2a\u5de8\u5927\u7684\u9ed1\u8272\u76ae\u9769\u957f\u9774\u4e2d\uff0c\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u52a8\u60015\u3002"} +{"id": "1004205", "video_name": "4db8fbcd-2db9-5c60-8425-383bf5d07d16", "text": "\u72ee\u5b50\u53d1\u6123\u4e86\u3002"} +{"id": "7004278", "video_name": "f99b56cf-2ee4-578f-8b36-9ebf4b1d0d72", "text": "\u4f60\u53ef\u4ee5\u5e2e\u6211\u521b\u9020\u4e00\u4e2a\u52a8\u6001\u666f\u89c2\u3002"} +{"id": "3006200", "video_name": "c363c2db-dbfd-5229-9848-40b4d24f44bf", "text": "\u5149\u6cfd\u62bd\u8c61\u8272\u5f69\uff0c\u7ea2\u8272\u3001\u7eff\u8272\u3001\u84dd\u8272\uff0c\u5237\u753b\uff0c8k\uff0c\u9ad8\u6e05\u3002"} +{"id": "8001822", "video_name": "0f635bc5-f747-597e-ad00-db7ac06f0988", "text": "\u90a3\u4e2a\u5c0f\u5973\u5b69\u5728\u8857\u4e0a\u6361\u4e86\u4e00\u4e2a\u6389\u843d\u7684\u94b1\u5305\uff0c\u52a8\u753b3D\uff0c\u9ad8\u753b\u8d28\uff0c\u6a2a\u5411\u6bd4\u4f8b19\uff1a6\u3002"} +{"id": "0006856", "video_name": "34502209-bdce-5018-ac11-7ce35534df98", "text": "Sparky\u7b80\u4ecb\uff1a\u5c55\u793a\u4e00\u4e2a\u5e26\u7740\u592a\u7a7a\u670d\u7684\u53ef\u7231\u732b\u54aaSparky\u5728\u8272\u5f69\u7f24\u7eb7\u7684\u661f\u7403Whiskeronia\u7684\u540e\u9662\u91cc\u8ffd"} +{"id": "6002372", "video_name": "e19761ed-2885-5182-bb04-c382b66f9e36", "text": "Gacha Life \u5728\u98de\u673a\u4e0a\u5403\u5f97\u5f88\u597d\u3002\n\nSource sentence: My favorite color is blue. \n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "2006529", "video_name": "3eca396e-5b37-57a6-ad28-691f0e19179f", "text": "\u5feb\u4e50\u53ef\u7231\u7684\u8bb8\u591a\u5a74\u513f\u88ab\u9001\u8fdb\u4e86\u592a\u7a7a\u8239\u91cc\u7684\u80f6\u56ca\uff0c\u5b8c\u7f8e\u7684\u6784\u56fe\u7f8e\u4e3d\u3002"} +{"id": "3005050", "video_name": "c32ac3a7-cf36-567f-9d9a-98b3c108f03e", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u8036\u7a23\u57fa\u7763\u8d70\u5728\u4e00\u6761\u8def\u4e0a\uff0c\u7537\u4eba\u548c\u5973\u4eba\u8ddf\u968f\u7740\u4ed6\u3002"} +{"id": "8003706", "video_name": "bd1cd6d9-cf59-5cba-abd0-e73e746079a2", "text": "\u4eba\u7559\u4e0b\u4e86\u67aa\uff0c\u7ad9\u5728\u5e9e\u5927\u7684\u519b\u961f\u9762\u524d\u3002"} +{"id": "0005516", "video_name": "1c26be3e-579d-50be-91e6-37db08d2d781", "text": "\u4e0e\u7236\u4eb2\u548c\u5973\u513f\u4e00\u8d77\u5728\u9633\u5149\u4e0b\u73a9\u4e50\u7684\u9b54\u5e7b\u65cb\u8f6c\u6728\u9a6c\u3002"} +{"id": "4004339", "video_name": "c3bcce27-2a5c-5b3c-bdd8-e8fb9e0dd3e6", "text": "\u57ce\u5e02\u7740\u706b\u3002\u4fe1\u606f\uff1a\u827e\u8389\u68ee\u3002"} +{"id": "8002985", "video_name": "cf83b61c-f6b1-5544-ad5a-d8b64166bf81", "text": "\u82b1\u56ed\u91cc\u7684\u9ec4\u74dc\u5bb6\u65cf"} +{"id": "1006013", "video_name": "6e75a4bb-7305-5e5d-8b81-7fdf6d18573c", "text": "\u522e\u98ce\u4e0b\u96e8\u7684\u68ee\u6797\u91cc\u7684\u677e\u9f20\u3002"} +{"id": "0003457", "video_name": "3ddb9955-ac4e-5457-8e80-e062d18015aa", "text": "\u8001\u5899\uff0c\u96e8\uff0c\u508d\u665a\uff0c\u706f\u7b3c\u7684\u5149\uff0c\u62ff\u7740\u96e8\u4f1e\u7684\u4eba\u7684\u526a\u5f71\uff0c1920\u5e74"} +{"id": "0004095", "video_name": "03258411-4efb-5f6a-94b9-cbcd94189bed", "text": "\u5973\u5b69\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u6ca1\u6709\u592a\u7a7a\u670d\u7684\u5faa\u73af\u3002"} +{"id": "1006882", "video_name": "7ddaa117-21e8-5ea0-8817-81ac028dbdb5", "text": "\u675c\u5c14\u52a0\u4e9a\u662f\u4e00\u4e2a\u5e74\u8f7b\u800c\u575a\u5b9a\u7684\u5b88\u62a4\u8005\uff0c\u5e26\u9886\u4e00\u7fa4\u6218\u58eb\u4fdd\u536b\u6751\u5e84\u514d\u53d7\u53ef\u6015\u7684"} +{"id": "0003346", "video_name": "3bf33cf5-79fe-50ea-8b27-af188221deb4", "text": "\u4e00\u4f4d\u5973\u5b50\u4ee5\u6587\u827a\u590d\u5174\u753b\u98ce\u8df3\u821e\u3002"} +{"id": "5001264", "video_name": "c1779eac-6f74-503a-aeee-0745d8d6dc86", "text": "\u5199\u4e00\u7bc7\u5173\u4e8e\u4f60\u559c\u6b22\u63a2\u7d22\u7684\u5730\u65b9\u4ee5\u53ca\u4f60\u5728\u90a3\u91cc\u559c\u6b22\u5b66\u4e60\u7684\u5185\u5bb9\u7684\u6587\u7ae0\u3002"} +{"id": "7002934", "video_name": "07279c5a-e457-5320-9f03-5ce452144c50", "text": "\u6c34\u4e2d\u7684\u9c7c\u548c\u751f\u7269\u53d1\u51fa\u7684\u751f\u7269\u53d1\u5149\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u5012\u7f6e\u7684\u4e16\u754c\u3002"} +{"id": "2005406", "video_name": "0e51744c-89c7-5b62-a8c0-aed73c3c1d55", "text": "\u516b\u5c90\u5927\u86c7\u6b63\u5728\u7838\u5c71\u3002"} +{"id": "7002745", "video_name": "fb95ef6e-8a3f-5fca-9c44-2ee6252bea15", "text": "\u57ce\u5e02\u5929\u9645\u7ebf\u3002\u4fe1\u606f\uff1aSAC2BAY\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "8001935", "video_name": "1ff21af3-7bf9-5a66-8e93-22e9f37d4847", "text": "\u51ef\u6069WWE\u5728\u4e00\u4e2a\u6454\u8de4\u573a\u5730\u7535\u5f71\u822c\u7684\u8d85\u903c\u771f4k\u4e2d\u8fdb\u884c\u62b1\u6454\u3002"} +{"id": "2006502", "video_name": "1b262f75-5f1f-5799-9566-95dab74eeb26", "text": "\u6211\u4eec\u4e4b\u95f4\u7684\u65b0\u5730\u56fe\u52a8\u753b"} +{"id": "3006106", "video_name": "ff02319e-fec9-5f9a-b2c7-3d0bc9487537", "text": "\u98de\u8d8a\u4e9a\u7279\u5170\u8482\u65af\u7684\u9e1f\u77b0\u4fef\u89c6\u56fe\u3002"} +{"id": "3003616", "video_name": "756b24df-bd10-5ad2-a97d-9ceedb5a2a13", "text": "\u57ce\u5821\u4e2d\u7684\u795e\u79d8\u56fe\u4e66\u9986\uff0c\u8721\u70db\uff0c\u7b3c\u4e2d\u7684\u9e1f\u3002"} +{"id": "4003098", "video_name": "a4bf8b14-b038-5b57-be05-5ad0ec0b2a00", "text": "\u4e00\u4e2a\u6a59\u8272\u7684\u516c\u9e21\u5728\u6751\u5c4b\u524d\u98de\u5feb\u5730\u5954\u8dd1\uff0c\u5b83\u5145\u6ee1\u4e86\u8010\u529b\uff0c\u65e9\u6668\u7684\u7a7a\u6c14\u5f88\u51b7\u3002"} +{"id": "3004165", "video_name": "ab334054-f733-55fe-a75c-4a907f107c5e", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u8eab\u7a7f\u71d5\u5c3e\u670d\uff0c\u6f02\u6d6e\u5728\u4eba\u7fa4\u4e0a\u65b9\u5c16\u53eb\u3002"} +{"id": "0003598", "video_name": "402e8fa2-4219-53d5-9600-61fc49e37463", "text": "\u8d85\u4eba\u5728\u591a\u4f26\u591a\u5854\u65e5\u51fa\u65f6\u9ad8\u901f\u98de\u884c\uff0c\u98de\u673a\u5728\u5468\u56f4\u98de\u884c\uff0c\u4e91\u5f69\u79fb\u52a8\uff0c\u62cd\u6444\u4e86\u8d85\u8fc7\u65f6\u95f4\u7684\u9ad8\u901f\u6444\u5f71"} +{"id": "3005620", "video_name": "d6ed5abe-5b75-5170-bba4-73b29d26d1bd", "text": "\u57ce\u5e02\u7684\u706f\u5149\u9010\u6e10\u6d88\u9000\uff0c\u5f62\u6210\u4e86\u4e00\u79cd\u5b81\u9759\u3002"} +{"id": "7004487", "video_name": "3a68cfd9-112b-541d-b355-bd51976ba875", "text": "\u9f99\u732b\u5728\u661f\u7a7a\u7684\u80cc\u666f\u4e0b\u7528\u722a\u5b50\u5403\u867e\u3002\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "5001823", "video_name": "9c56e5cf-1b15-535d-9dea-a2a93002972a", "text": "\u5f53\u84dd\u8272T\u6064\u548c\u77ed\u88e4\u7684Sam\u8d70\u5230\u94c1\u8def\u4e0a\u7684\u8001\u592a\u592a\u8eab\u8fb9\u65f6\uff0c\u4ed6\u53d1\u73b0\u5979\u662f\u76f2\u4eba\u3002"} +{"id": "8002160", "video_name": "bee0d98a-d11a-55ba-b303-fa7eaae21ab7", "text": "\u4e09\u7ef4\u30014K \u6d41\u52a8\u6570\u5b57\u7b97\u6cd5\u6307\u6807\u80cc\u666f\uff0c\u4fe1\u606f\u4e3a ALGORANGE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4004073", "video_name": "07af6b01-79ba-5433-9ec5-c0b2e04d8893", "text": "\u4e00\u540d\u4fc4\u514b\u62c9\u8377\u9a6c\u5927\u5b66\u7684\u6a44\u6984\u7403\u8fd0\u52a8\u5458\u5728\u5f97\u5206\u65f6\u9ad8\u4e3e\u624b\u81c2\uff0c\u6446\u51fa\u6570\u5b57\u201c1\u201d\u7684\u59ff\u52bf\u3002"} +{"id": "1004728", "video_name": "57afe93e-a4af-507c-87f5-88e44e975a32", "text": "\u4e00\u4f4d\u8eab\u7a7f\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u7684\u5370\u5ea6\u5973\u5b69\uff0c\u80cc\u666f\u662f\u84dd\u5929\u3002"} +{"id": "7004336", "video_name": "f2545941-d9eb-5a7f-be1c-187ac804a526", "text": "\u4e00\u676f\u5496\u5561\u5728\u7b80\u7ea6\u7684\u73af\u5883\u4e2d\uff0c\u7c73\u8272\u8c03\u3002"} +{"id": "3004917", "video_name": "0c4c82c0-f5ef-59ec-b373-25c5c7d04566", "text": "\u5236\u4f5c\u4e00\u5f20\u753b\u9762\uff0c\u4e24\u4e2a\u7537\u4eba\u4ea4\u53c9\u7740\u80f3\u818a\uff0c\u4f4e\u5934\u770b\u7740\u955c\u5934\uff0c\u7a7f\u7740\u9ed1\u8272\u7fbd\u7ed2\u670d\uff0c\u5448\u73b0GTA"} +{"id": "1006352", "video_name": "744d735d-2a30-5d15-a484-31259efebe89", "text": "\u6e05\u6668\uff0c\u591a\u4e91\u7684\u4e00\u5929\uff0c\u6c7d\u8f66\u7a7f\u8fc7\u9ad8\u901f\u516c\u8def\u3002"} +{"id": "0003491", "video_name": "3e7c3913-2d8e-5553-acfc-466f60b6244e", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u72ec\u81ea\u4e00\u4eba\uff0c\u91d1\u53d1\uff0c\u5f20\u7740\u5634\u5df4\uff0c\u7f0e\u5e26\uff0c\u53d1\u5e26\uff0c\u978b\u5b50\uff0c\u80cc\u5fc3\uff0c\u5fae\u7b11\uff0c\u886c\u886b\uff0c\u957f"} +{"id": "3006576", "video_name": "e614ef91-8305-5f20-9bc9-1f8aeb631015", "text": "\u753b\u9762\u524d\u666f\u662f\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8349\u5730\uff0c\u88ab\u9ad8\u5927\u7684\u6811\u6728\u5305\u56f4\uff0c\u800c\u5728\u80cc\u666f\u4e2d\u53ef\u4ee5\u770b\u5230\u7fa4\u5c71\u7684"} +{"id": "1003335", "video_name": "3d5fcad0-54b1-5771-8a0a-192a0ea505db", "text": "\u94f6\u884c\u4fdd\u9669\u5e93\u95e8\u7f13\u7f13\u6253\u5f00\u3002\u50cf\u7d20\u827a\u672f\u3001\u590d\u53e4\u56fe\u5f62\u3001\u590d\u53e4\u6e38\u620f\u3002"} +{"id": "8003673", "video_name": "6d8299fa-2d5b-5908-b1d1-a5c34e678a08", "text": "\u4e00\u8f86\u81ea\u884c\u8f66\u8df3\u8fc7\u4e00\u6735\u4e91\u3002"} +{"id": "2003666", "video_name": "b7ba54e4-0bfa-5531-bb5a-aed66b9b89f6", "text": "\u5728\u5496\u5561\u9986\u91cc\u8981\u5496\u5561\u7684\u4eba\u3002"} +{"id": "0006733", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "\u5f3a\u5927\u7684\u56fd\u738b\u5e1d\u56fd\uff0c\u8c22\u3002"} +{"id": "0005657", "video_name": "1ed1634f-d445-5341-8f17-233b1dc965b8", "text": "\u62cd\u6444\u4e86\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u5c4f\u5e55\u524d\u7684\u7535\u5f71\u822c\u7684\u4f4e\u5149\u8096\u50cf\u955c\u5934\uff0c\u663e\u793a\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "4004404", "video_name": "888aac8f-82a7-5bcb-8d87-ce727a548cef", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u8bd5\u9a8c\u6027\u7684\u9178\u78b1\u6307\u793a\u5242\u65cb\u8f6c\u661f\u7403\u7684\u539f\u578b\u3002"} +{"id": "1006397", "video_name": "752ca08f-2dfe-52aa-a19f-f980de0a93f8", "text": "\u98de\u8fc7\u5df4\u9ece\u7684\u9f99\uff0c\u903c\u771f\u89c6\u9891\uff0c4k"} +{"id": "4004939", "video_name": "550ff4e3-9fe0-5d76-a870-d32866668417", "text": "\u4e00\u4e2a\u7a7f\u7740\u76d4\u7532\uff0c\u9a91\u7740\u9a6c\u7684\u7537\u5b69\u3002"} +{"id": "8002227", "video_name": "17fdd341-6b31-5714-939b-1a126d3f7761", "text": "\u5bfb\u627e\u4ed6\u795e\u79d8\u7684\u6551\u661f\uff0c\u6e34\u671b\u7740\u5979\u7684\u56de\u5f52\u7684\u738b\u5b50\u5728\u6d77\u5cb8\u4e0a\u5bfb\u627e\u3002"} +{"id": "3004170", "video_name": "5304343b-ed35-580b-95c0-e557cea958b8", "text": "\u4ecb\u7ecd\u4e3b\u89d2\u9a6c\u53ef\u53ca\u5176\u5bf9\u4eba\u751f\u524d\u9014\u7684\u95ee\u9898\u7684\u8ffd\u5bfb\uff0c\u7a81\u51fa\u4ed6\u7684\u70e6\u607c\u548c\u4ed6\u51b3\u5b9a\u53bb\u63a2\u8bbf\u201c\u667a\u6167\u4e4b"} +{"id": "7003804", "video_name": "5ae5f55a-f142-5131-a13c-ead652fda47a", "text": "\u4e24\u4e2a\u7537\u5b69\u8df3\u8fdb\u6cb3\u91cc\uff0c\u6cb3\u91cc\u5145\u6ee1\u4e86\u8106\u70b8\u9e21\u3001\u5915\u9633\u3001\u68ee\u6797\uff0c\u5448\u73b0\u51fa\u6781\u7b80\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "4002309", "video_name": "83eb0ace-4005-58de-b773-f8cd83e8dc4f", "text": "\u4e5d\u6761\u91d1\u9f99\u62c9\u7740\u77f3\u68fa\u3002"} +{"id": "6004636", "video_name": "a513dd40-1c66-5f39-b563-c98c7224a05d", "text": "\u6c7d\u8f66\u4fee\u7406\u5382\u7684\u5ba2\u6237\u901a\u8fc7WhatsApp\u94fe\u63a5\u5728\u624b\u673a\u4e0a\u6536\u5230\u4e86\u4e00\u4efd\u8be6\u7ec6\u7684\u62a5\u544a\uff0c\u5176\u4e2d\u5305\u62ec\u4e86\u8f66\u8f86\u7684\u7ef4\u4fee\u72b6\u6001\u3001\u7167\u7247\u3001\u89c6\u9891\u3001\u8bc4\u8bba\u548c\u8be6"} +{"id": "2005361", "video_name": "67bbbb1b-5f4d-5076-a109-b1f05f305608", "text": "\u975e\u5e38\u5148\u8fdb\u7684\u62df\u4eba\u673a\u5668\u4eba\u5973\u6027\u5feb\u901f\u5411\u6211\u8d70\u6765\u3002"} +{"id": "7003245", "video_name": "1f25cf27-31c7-5d95-82ca-7a1fa640d0ca", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u5403\u829d\u58eb\u86cb\u7cd5\u3002\n\nSource sentence: The weather today is very sunny and warm.\n\u4eca\u5929\u7684\u5929\u6c14\u975e\u5e38\u6674\u6717\u548c\u6e29\u6696\u3002"} +{"id": "1005102", "video_name": "5e0f991d-7e75-5eb6-8801-725cd9fb67cd", "text": "\u767d\u5927\u8902\u7684\u533b\u751f\u5728\u8001\u5e74\u9662\u5f39\u94a2\u7434\u3002"} +{"id": "2006938", "video_name": "fb6ccc8a-a3d0-5d7f-81aa-fd9717686412", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u5c55\u793a\u97e9\u7eb3\u66fc\u4e4b\u4e3b\u5728\u667a\u80fd\u624b\u673a\u4e0a\u73a9\u6e38\u620f\u7684\u573a\u666f\u3002"} +{"id": "2006849", "video_name": "e989aafc-33e8-5601-a4e6-47dd9170090b", "text": "Allwins\u88c5\u9970\u516c\u53f8\u7684\u5a5a\u793c\u88c5\u9970\u6807\u5fd7\u3002"} +{"id": "8001443", "video_name": "759ed753-d9cb-5a45-b02f-49723dce88bb", "text": "\u4e24\u4e2a\u5361\u62c9\u91cc\u5e15\u7ea6\uff08Kalaripayattu\uff09\u7684\u7ec3\u4e60\u8005\u5728\u4e00\u4e2a\u6263\u4eba\u5fc3\u5f26\u7684\u5251\u672f\u6218\u6597\u4e2d\u4ea4\u624b\uff0c\u5468\u56f4\u662f\u5feb\u901f"} +{"id": "1004198", "video_name": "4da20104-0102-50b7-82d0-66610cf12cd7", "text": "\u8304\u5b50\u628a\u81ea\u5df1\u6d78\u6ce1\u5728\u725b\u5976\u6876\u91cc\uff0c\u4ee5\u5e2e\u52a9\u4fdd\u62a4\u5b83\u514d\u53d7\u9633\u5149\u7684\u7167\u5c04\u3002"} +{"id": "7002898", "video_name": "6029ff42-adb4-577b-aa38-10c03efe7865", "text": "\u4e00\u4e2a\u5173\u4e8e\u6885\u897f\u7684\u5361\u901a\u7535\u5f71\uff0c\u4ed6\u5728\u7535\u5f71\u4e2d\u4e3e\u8d77\u4e86\u4e16\u754c\u676f\uff0c\u800c\u4e00\u4e2a\u53eb\u201c\u9b54\u672f\u5e08\u201d\u7684\u89d2\u8272\u5219\u626e\u6f14\u4e86"} +{"id": "0004900", "video_name": "111d7200-9046-5db1-8da4-6e6b5405d99a", "text": "\u6211\u662f\u6765\u81ea\u4e2d\u56fd\u7684\u4f01\u4e1a\u5bb6\u3002"} +{"id": "0004525", "video_name": "0a8a63dc-bf08-59a7-9fed-4cd23a8c8872", "text": "\u5e74\u8f7b\u5973\u5b69\u5728\u57ce\u5e02\u7684\u8857\u9053\u4e0a\u5954\u8dd1\uff0c\u591c\u5e55\u964d\u4e34\u65f6\uff0c\u8857\u9053\u4e24\u65c1\u7684\u9713\u8679\u706f\u9010\u6e10\u4eae\u8d77\uff0c"} +{"id": "3004897", "video_name": "fdc132ac-d830-5ebc-9407-dc35ac05caee", "text": "\u4e00\u4e2a\u4eba\u7c7b\u7684\u773c\u775b\u3002\u6a59\u9ec4\u8272\u7684\u8679\u819c\u3002\u903c\u771f\u76844K\u3002"} +{"id": "8003504", "video_name": "746dd936-7780-501a-bdd5-ed64188ed899", "text": "\u4e00\u5207\uff0c\u65e0\u5904\u4e0d\u5728\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "7003846", "video_name": "54e98c5b-f84b-5ada-9710-cae957f2749a", "text": "\u753b\u51fa\u4e09\u4e2a\u6f06\u6876\uff0c\u4e00\u4e2a\u662f\u7ea2\u8272\u7684\uff0c\u4e00\u4e2a\u662f\u7eff\u8272\u7684\uff0c\u4e00\u4e2a\u662f\u84dd\u8272\u7684\uff0c\u5012\u5728\u7816\u5730\u677f\u4e0a\u3002"} +{"id": "0003597", "video_name": "4025b272-b7b6-547c-99e3-61ada85c7bcb", "text": "\u5973\u795e\u8428\u62c9\u65af\u74e6\u8482\uff0c\u542f\u5f00\u773c\u775b\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7003576", "video_name": "b89ce302-c0f9-5979-97ee-21062633bf3b", "text": "\u53f2\u8bd7\u7ea7\u7684\u89d2\u5ea6\uff0c\u865a\u5e7b\u5f15\u64ce\u6e32\u67d3\uff0c\u5982\u540c\u4e00\u4f4d\u533f\u540d\u7684\u65e0\u8138\u7f51\u7edc\u671d\u5723\u8005\u6f2b\u6b65\u5728\u7b2c\u4e03\u5c42"} +{"id": "8003046", "video_name": "b4364a25-bc02-538a-8e78-faa25adf6559", "text": "\u4e00\u53ea\u6050\u9f99\u5728\u9910\u9986\u91cc\u5403\u53e6\u4e00\u53ea\u6050\u9f99\u3002"} +{"id": "3006224", "video_name": "bf8e786e-15e8-55bb-a515-6ec88489e7a9", "text": "\u4ece\u6c34\u6ed1\u68af\u6ed1\u8fdb\u5730\u4e0b\u5ba4\u7684\u6e38\u6cf3\u6c60\u975e\u5e38\u53ef\u6015\u9ed1\u6697\u3002"} +{"id": "2006456", "video_name": "d1bf5150-1490-587d-ac2f-a6f8d71ca6d3", "text": "\u9762\u5411\u5927\u6d77\u7684\u4eba\uff0c\u611f\u89c9\u50cf\u662f\u4e00\u4e2a\u508d\u665a\u7684\u65e5\u843d\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u513f\u6b63\u7761\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "1006222", "video_name": "722247f2-d5e1-552b-b148-bc45e371b232", "text": "\u6709\u4e00\u6b21\uff0c\u592a\u9633\u544a\u522b\u7684\u65f6\u5019\uff0c\u662f\u65f6\u5019\u5bf9\u68ee\u6797\u91cc\u7684\u670b\u53cb\u8bf4\u665a\u5b89\u4e86\u3002"} +{"id": "2007043", "video_name": "4749ab17-9bee-5d14-99df-fd76be98c1ab", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u8611\u83c7\u7537\u5b69\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u7684\u89c6\u9891\u3002"} +{"id": "1003016", "video_name": "376d75b2-aa93-5c90-a320-12b78fd15a1e", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u5e74\u8f7b\u5973\u5b50\u5728\u6751\u5e84\u623f\u5c4b\u5185\u8bf4\u670d\u53e6\u4e00\u540d\u5973\u6027\u3002"} +{"id": "7004219", "video_name": "01356f8b-a2c1-5a71-8f74-ba6add4c7844", "text": "\u7070\u8272\u7684\u732b\u50cf\u8fea\u58eb\u5c3c\u52a8\u753b\u4e00\u6837\u8ffd\u9010\u8001\u9f20\u3002"} +{"id": "3005425", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "\u5728\u4e00\u4e2a\u8ff7\u5e7b\u68ee\u6797\u4e2d\uff0c\u4ee5\u5409\u535c\u529b\u52a8\u753b\u7535\u5f71\u98ce\u683c\u5c55\u793a\u4e00\u4f4dDJ\u7684\u8868\u6f14\u52a8\u753b\u3002"} +{"id": "6002744", "video_name": "4b15b3d3-e593-5038-94b6-49d7eb55bea7", "text": "\u4e00\u4e2a\u5b89\u9759\u9634\u5f71\u7684\u73af\u5883\uff0c\u7a7a\u6c14\u4e2d\u4f20\u6765\u75db\u82e6\u7684\u4f4e\u8bed\uff0c\u8868\u73b0\u51fa\u4e00\u79cd\u5e7d\u6028\u60b2\u4f24\u7684\u611f\u89c9\u3002"} +{"id": "0006475", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "\u5730\u7403\u6b63\u5728\u8f6c\u53d8\u6210\u65b0\u5730\u7403\uff0c\u5982\u679c\u4f60\u4e0d\u80fd\u4e0e\u5730\u7403\u7684\u632f\u52a8\u4fdd\u6301\u4e00\u81f4\uff0c\u4f60\u5c31\u4f1a\u88ab\u843d\u4e0b\u3002\u6240\u4ee5\u786e\u4fdd\u4f60\u5fe0\u4e8e\u81ea\u6211\u548c\u5fe0\u4e8e\u5730"} +{"id": "8002703", "video_name": "a8cf6b48-0481-52d2-9d62-b83aed642a23", "text": "\u8054\u5408\u56fd\u4f7f\u7528\u5145\u6c14\u5766\u514b\u548c\u7531\u6a61\u80f6\u548c\u5e06\u5e03\u5236\u6210\u7684\u98de\u673a\uff0c\u6b3a\u9a97\u8f74\u5fc3\u56fd\u8ba4\u4e3a\u4ed6\u4eec\u7684\u519b\u961f\u6bd4\u5b9e"} +{"id": "6004729", "video_name": "f407777f-a4ca-5573-b87b-ad2d195e8df2", "text": "\u963f\u6885\u8389\u4e9a\u4f4e\u58f0\u5bf9\u7740\u6d3b\u7075\u6d3b\u73b0\u7684\u52a8\u7269\u548c\u7740\u9b54\u7684\u6811\u6728\u8033\u8bed\uff0c\u5b83\u4eec\u5411\u5979\u900f\u9732\u7740"} +{"id": "4003960", "video_name": "e86c66e8-d113-5b28-ba4e-ab6e9b7b239d", "text": "\u90a3\u4e2a\u9519\u8fc7\u4e86\u6700\u540e\u4e00\u73ed\u56de\u5bb6\u7684\u5973\u5b69\u50cf\u89c6\u89c9\u5c0f\u8bf4\u4e00\u6837\u3002"} +{"id": "3003074", "video_name": "7407e443-3241-56eb-afff-6889dee7ca1a", "text": "\u673a\u5668\u4eba\u548c\u4eba\u4e00\u8d77\u8d70\uff0c\u80cc\u5f71\u3002"} +{"id": "3006978", "video_name": "22daf4c7-0041-539a-8dae-2bee787f1471", "text": "\u79d1\u5b66\u5bb6\u5728\u6597\u725b\u573a\u5185\u9003\u8dd1\uff0c\u88ab\u8ffd\u8d76\u7684\u516c\u725b\u7d27\u968f\u5176\u540e\u3002"} +{"id": "4002716", "video_name": "39fee5c0-8c52-5917-9e67-f12118746aa9", "text": "\u94a2\u94c1\u4fa0\u5fae\u7b11\u7740\u8d70\u8def\uff0c\u53cc\u624b\u6325\u821e\uff0c\u773c\u775b\u7728\u52a8\u3002"} +{"id": "8003745", "video_name": "7a569af5-f496-5dcb-8840-f531f9198a54", "text": "\u4e00\u68f5\u6811\u7684\u98ce\u666f\u7684\u5f00\u573a\u955c\u5934"} +{"id": "7003057", "video_name": "2cf7a95c-2917-5912-843e-9cb39f17a5a1", "text": "\u521b\u5efa\u4e00\u4e2a\u5e26\u6709\u7eff\u5e55\u80cc\u666f\u7684\u878d\u5408\u7403\uff0c\u7528\u4e8e\u8272\u5ea6\u952e\uff0c\u9ad8\u7ec6\u8282\u4e0e\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u9ad8\u54c1\u8d28\u768416:9\u3002"} +{"id": "0005996", "video_name": "24b5dd1b-6d3f-568c-83a7-69409d87dba4", "text": "\u670b\u53cb\u4eec\u4e00\u8d77\u73a9\u800d\u3001\u5206\u4eab\u98df\u7269\u3001\u5b66\u4e60\u3001\u5e86\u795d\u751f\u65e5\u7684\u89c6\u9891\u526a\u8f91\u3002"} +{"id": "7002762", "video_name": "746e7b4a-5607-5e1a-8b70-13a27f61128c", "text": "\u5361\u901a\u66fc\u5fb7\u5e03\u5c14\u5e03\u901a\u8fc7\u4e00\u4e2a\u5927\u578b\u6d3b\u52a8\u5634\u5df4\u548c\u6709\u8da3\u7684\u5634\u5507\u5728\u96fe\u548c\u96e8\u4e2d\u53d1\u8a00\u76843D\u52a8\u753b\u3002"} +{"id": "3003147", "video_name": "0656b9f7-9ea0-503f-98d2-bac04254814f", "text": "\u6d77\u519b\u822a\u6bcd\u6c89\u6ca1\u6218\uff0c\u732b\u5728\u6728\u5934\u4e0a\u6323\u624e\u7740\u4fdd\u6301\u5e73\u8861\uff0c\u6218\u4e89\u3002"} +{"id": "0005040", "video_name": "139946dd-e4dc-5d47-90f8-c5f64eb5f905", "text": "\u4e24\u4e2a\u5973\u5b69\u5750\u5728\u5c71\u7684\u8fb9\u7f18\u89c2\u770b\u5317\u6781\u5149\u3002"} +{"id": "3004938", "video_name": "94576e8b-36b8-5bf8-bada-8c0a5c240a7d", "text": "\u8db3\u7403\u6253\u5165\u7403\u95e8\u3002"} +{"id": "7002939", "video_name": "bf3a5757-3c54-5950-bff0-9311118fd04d", "text": "\u4e00\u53ea\u5728\u5929\u7a7a\u98de\u7fd4\u7684\u9e1f\uff0c\u5409\u535c\u529b\u827a\u672f\u3002"} +{"id": "3006593", "video_name": "8a56eb41-e9ee-53fa-80f3-e1c2d6a26311", "text": "\u63ed\u793a\u9ad8\u697c\u5927\u53a6\u540e\u9762\u76842024\u6570\u5b57\uff0c\u914d\u4ee5\u70df\u706b\u3002"} +{"id": "5001794", "video_name": "4697bb63-9f63-5ffe-bd7c-708e3c20fd7d", "text": "\u5973\u58eb\u5728\u9ed1\u6697\u4e2d\u884c\u8d70\u3002"} +{"id": "4004148", "video_name": "f2e80b9b-c8bc-5032-8b05-5b6081f47d15", "text": "\u4e00\u53ea\u65e5\u672c\u9e64\u7684\u6a21\u62df\u98ce\u683c\u89c6\u9891\u3002"} +{"id": "2006934", "video_name": "4da310b7-1269-5fb5-a588-98fc03f1b476", "text": "\u514b\u91cc\u5e0c\u90a3\u795e\u4ee5\u5fae\u7b11\u9762\u5bf9 16.9\u3002"} +{"id": "8002769", "video_name": "3e67b4b6-c8ce-5d0b-bef1-04f3f6d94436", "text": "\u90a3\u4e2a\u7537\u4eba\u505c\u4e0b\u6765\uff0c\u4fef\u89c6\u7740\u773c\u524d\u8352\u51c9\u7684\u666f\u8c61\uff0c\u7528\u51b3\u5fc3\u63e1\u7d27\u4e86\u5251\u67c4\u3002"} +{"id": "7003712", "video_name": "0483592e-16d9-5909-92dc-89396005ebab", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u886c\u886b\u548c\u84dd\u8272\u88e4\u5b50\u7684\u7537\u4eba\u7ad9\u5728\u56fe\u8868\u524d\u9762\u3002\u4ed6\u4e13\u6ce8\u5730\u770b\u7740\u56fe\u8868\uff0c\u8138\u4e0a\u5145\u6ee1\u4e86\u96c6\u4e2d"} +{"id": "2007753", "video_name": "03c7e247-63c8-52a3-bcbd-462f243e4e8b", "text": "\u592a\u9633\u5728\u94f6\u6cb3\u7cfb\u4e2d\u4ee5\u53ca\u5176\u4ed6\u884c\u661f\u7684\u8f68\u9053\u4e0a\u8fd0\u884c\u3002"} +{"id": "7003146", "video_name": "c7012647-4ec0-5dbb-9f17-b8b69fb49385", "text": "\u9ed1\u53d1\u3001\u660e\u4eae\u773c\u775b\u7684\u516c\u4e3b\u548c\u5979\u7684\u72ee\u5b50\u670b\u53cb\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3001\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "6003783", "video_name": "3e0c970d-c586-5eb4-adc5-ce0158d3ea15", "text": "\u5ba4\u5916\u6b63\u5728\u4e0b\u96e8\u3002\u5973\u5b69\u6b63\u5728\u5199\u5bb6\u5ead\u4f5c\u4e1a\uff0c\u6709\u65f6\u770b\u5411\u76f8\u673a\u3002\u53f0\u706f\u6709\u65f6\u4f1a\u5f00\u5173\u3002"} +{"id": "1004015", "video_name": "4a6a62c1-3e6a-5ebe-9b06-9e07d0bf7ad0", "text": "\u8fc8\u514b\u5728\u65b0\u6cfd\u897f\u6d77\u5cb8\u548c\u5973\u5b69\u4eec\u804a\u5929\uff0c\u5f88\u771f\u5b9e\u3002"} +{"id": "7002810", "video_name": "e444ba39-664b-536a-95d9-28234841ae71", "text": "\u6211\u60f3\u8981\u4e00\u5bf9\u5361\u901a\u8138\u548c\u745e\u514b\u548c\u83ab\u8482\u4ea4\u8c08\uff0c\u7537\u6027\u6709\u68d5\u8272\u5934\u53d1\u3001\u7eff\u8272\u773c\u775b\uff0c\u8eab\u9ad8198"} +{"id": "2004575", "video_name": "c45f43df-323e-5009-b8be-dead3c4507dc", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6b63\u5728\u706b\u661f\u4e0a\u70f9\u996a\u98df\u7269\u3002"} +{"id": "4003315", "video_name": "d49ac007-e13b-50fb-a974-2ee3b713fbd4", "text": "\u5e74\u8f7b\u7684\u963f\u80b2\u738b\u5728\u7687\u5bb6\u6cd5\u5ead\u4e0a\u5c55\u73b0\u51fa\u806a\u660e\u548c\u597d\u5947\u5fc3\u3002\u5143\u7d20\u5305\u62ec\u5b8f\u4f1f\u7684\u573a\u666f\u3001\u4e0e\u7236\u6bcd\u548c\u5bfc"} +{"id": "8003078", "video_name": "afb4c6db-15a7-55b8-9fc5-deea0a6e2c1c", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u300a\u8fdb\u51fb\u7684\u5de8\u4eba\u300b\uff0c\u8fdb\u51fb\u7684\u5de8\u4eba\u548c\u5de8\u4eba\u7684\u6218\u6597\u573a\u666f\u3002"} +{"id": "2004210", "video_name": "979e41b5-9162-5813-8c58-dbc3e57a143e", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u673a\u5668\u4eba\u5bfb\u627e\u5929\u7a7a\u3002"} +{"id": "8003785", "video_name": "3926a1cf-03d9-53fa-86b7-961bb456615d", "text": "\u4ece\u4e0a\u65b9\u7684\u5e7f\u89d2\u955c\u5934\u5f00\u59cb\uff0c\u6444\u5f71\u673a\u5411\u5df4\u683c\u8fbe\u5e02\u79fb\u52a8\u3002"} +{"id": "3005463", "video_name": "9169288f-c348-5b03-a66c-e56de7def98c", "text": "\u897f\u65b9\u7684\u6b7b\u4ea1\u5728\u4e00\u90e820\u4e16\u7eaa60\u5e74\u4ee3\u7684\u6cd5\u56fd\u7535\u5f71\u4e2d\u3002"} +{"id": "7003578", "video_name": "1a307ad6-c304-5565-aa21-33f6ab36582e", "text": "\u65f6\u95f4\u7f13\u7f13\u6d41\u901d\uff0c4K\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "1004073", "video_name": "4b88390e-7f25-59cb-b641-696f487c4928", "text": "\u521b\u9020\u4e00\u4e2a\u50cf\u7d20\u7684\u5e7c\u513f\u73a9\u624b\u673a\u7684\u573a\u666f\u3002"} +{"id": "8002743", "video_name": "733adcc0-5554-52b6-a8fd-61e050a40055", "text": "\u706b\u661f\u4e0a\u7684\u4e00\u7247\u7530\u91ce\uff0c\u5728\u80cc\u666f\u4e2d\u662f\u5730\u7403\u3002"} +{"id": "3004806", "video_name": "64961ed0-cae1-553d-bf7a-db101ed6cefb", "text": "\u9999\u7089\u5cf0\u5728\u9633\u5149\u4e0b\u5448\u73b0\u51fa\u7d2b\u8272\u7684\u5149\u8292\uff0c\u7d2b\u8272\u7684\u70df\u96fe\u7f2d\u7ed5\u3002 \u8fd9\u662f\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce"} +{"id": "6003384", "video_name": "52583f31-b7cf-58dd-9e22-fea96b07fb5c", "text": "\u8d85\u4eba\u514b\u91cc\u65af\u6258\u5f17\u00b7\u91cc\u592b\u9a91\u7740\u725b\u98de\u884c\u3002"} +{"id": "4004835", "video_name": "53b0a229-6e52-5088-8c57-815678460a6a", "text": "\u4e00\u4f4d\u5341\u51e0\u5c81\u7684\u5973\u5b69\u6b63\u5728\u8fdb\u884c\u5b9e\u9a8c\u5ba4\u6d4b\u8bd5\uff0c\u5c55\u793a\u5979\u7684\u8138\u3002"} +{"id": "1005539", "video_name": "65ef1a6e-594a-5a51-9b2c-3c492b341096", "text": "\u5de8\u578b\u6050\u9f99\u4e0e\u5c0f\u578b\u6050\u9f99\u4e4b\u95f4\u7684\u6218\u6597\u30023D\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "1003383", "video_name": "3e558e45-fac5-5d74-8950-79d982b1a564", "text": "\u4e00\u4e2a\u5a74\u513f\u5927\u8c61\uff0c\u5927\u5c0f\u548c\u4eba\u638c\u76f8\u4f3c\uff0c\u88ab\u62ff\u5728\u624b\u4e2d\u5c55\u793a\uff0c\u8fdc\u666f\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "3003725", "video_name": "84310c00-5002-56af-a521-f404e561a8c2", "text": "\u521b\u5efa\u4e00\u4e2a\u771f\u5b9e\u76844K\u6b7b\u4ea1\u5929\u4f7f\u56fe\u50cf\u3002"} +{"id": "2006172", "video_name": "beae6e0f-e6f9-5373-a068-447a4c0c0245", "text": "\u552e\u7968\u5458\u5728\u552e\u8d27\u4ead\u51fa\u552e\u7968\u3002"} +{"id": "0006766", "video_name": "32ad33ec-3f81-599a-9196-3b546859a1a4", "text": "\u6e90\u53e5\uff1a\u5728\u4e1c\u4eac\u7684\u5546\u4eba\u5728\u8336\u9053\u4f1a\u4e0a\u5403\u82b1\uff0c\u670d\u7528\u8ff7\u5e7b\u836f\u540e\u8df3YMCA\u3002\u4ee5\u300a\u56fd\u5bb6\u5730\u7406\u300b\u98ce\u683c\u76848K\u8d85"} +{"id": "6002884", "video_name": "a22f35ac-c389-5461-a42e-20d3bd17860c", "text": "\u5feb\u4e50\u7684\u5b69\u5b50\u62ff\u7740\u51b0\u6dc7\u6dcb\u3002"} +{"id": "0004761", "video_name": "0ed9002e-e7d9-5e27-ac4a-1b68e8107278", "text": "\u5f8b\u5e08\u5728\u6cd5\u5ead\u4e0a \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "4003063", "video_name": "dec3c4b4-7043-5635-a79a-e837c98a65a1", "text": "\u5728\u5496\u5561\u5e97\u91cc\uff0c\u4e00\u4f4d\u52a8\u6f2b\u5973\u6027\u5728\u91c7\u8bbf\u53e6\u4e00\u4e2a\u4eba\u3002"} +{"id": "2003374", "video_name": "a2c90c45-48e0-5a2c-887d-32fca864d3e8", "text": "\u7136\u800c\uff0c\u7fc1\u683c\u4eba\u548c\u68ee\u63d0\u5185\u5229\u4eba\u4e4b\u95f4\u7684\u8bed\u8a00\u5dee\u5f02\u572819\u4e16\u7eaa\u65f6\u56e0\u82f1\u56fd\u4eba\u5c06\u7fc1\u683c\u4eba\u5e26\u5230\u5317\u68ee\u63d0\u5185\u5c14"} +{"id": "8002688", "video_name": "c222775a-a97d-55fc-9a9e-1d4005daec7c", "text": "\u6211\u60f3\u8c61\u7740\u4e00\u53ea\u673a\u654f\u4f18\u96c5\u3001\u6bdb\u8338\u8338\u7684\u732b\uff0c\u5b83\u773c\u795e\u9510\u5229\u3001\u81ea\u4fe1\u6ee1\u6ee1\uff0c\u89e6\u987b\u5fae\u5fae\u98a4"} +{"id": "2005151", "video_name": "bc42d8d3-d6cb-5bb9-bb0d-69011eefd8d6", "text": "\u6f02\u4eae\u7684\u623f\u5b50\u91cc\u7684\u70f9\u996a\u623f\u95f4"} +{"id": "7004071", "video_name": "e38f47a0-5e95-59b0-9be2-5bfdccb0e49d", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u54aa\u7728\u7740\u773c\u775b\u5728\u4e00\u4e2a\u8212\u9002\u7684\u623f\u95f4\u91cc\u54ed\u6ce3\u3002"} +{"id": "8003558", "video_name": "0a1a1eea-4484-5668-882a-13ea98daa2bd", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4eba\u5728\u5de8\u5927\u7684\u538b\u529b\u548c\u6781\u9ad8\u7684\u6e29\u5ea6\u4e0b\u88ab\u538b\u6241\u7684\u60c5\u51b5\u3002"} +{"id": "3003869", "video_name": "59e23c1a-bacf-544a-a26a-75b92493f7b2", "text": "\u72ee\u5b50\u6323\u624e\u7740\u4ece\u9677\u9631\u4e2d\u6323\u8131\u51fa\u6765\uff0c\u4ed6\u7684\u6c42\u6551\u58f0\u5728\u4e1b\u6797\u4e2d\u56de\u8361\u3002"} +{"id": "0005541", "video_name": "1c83d234-e09f-5e85-8263-1b45f39ac5a4", "text": "\u5728\u4e00\u4e2a\u6709\u767d\u8272\u623f\u5b50\u7684\u793e\u533a\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u5411\u4ed6\u7684\u623f\u5b50\u3002"} +{"id": "4003340", "video_name": "6ce8f0c9-aff6-5f22-86f4-6428ef45cd4d", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e5\u843d\uff0c\u5e26\u7740\u5b81\u9759\u7684\u89c6\u91ce\u548c\u653e\u677e\u7684\u5fc3\u5883\u3002"} +{"id": "3005660", "video_name": "29375abc-da4c-5e39-aed2-b33009207f13", "text": "\u623f\u95f4\u91cc\u5145\u6ee1\u4e86\u6e29\u6696\u548c\u8212\u9002\uff0c\u7a97\u5e18\u7d27\u7d27\u5730\u62c9\u4e0a\uff0c\u8425\u9020\u51fa\u5b9c\u4eba\u7684\u9ec4\u660f\u6c1b\u56f4\u3002\u5750"} +{"id": "3006960", "video_name": "dcf2d767-6d37-5f8b-a16d-f00cfcaf2556", "text": "\u51e0\u4f55\u5f62\u72b6\u6f14\u53d8\u768410\u79d2\u89c6\u9891\u5faa\u73af"} +{"id": "4002220", "video_name": "0e6933d1-7d60-5776-bc15-355c3c7aad59", "text": "\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u5929\u5802\u666f\u8272\u3002\u5341\u4e2a\u5929\u4f7f\u5728\u8d5e\u7f8e\u3002"} +{"id": "6002876", "video_name": "6661e63b-58bd-512f-93d8-5bec79ac21bb", "text": "\u8428\u5c14\u66fc\u00b7\u6c57\u51fa\u6f14\u8d85\u7ea7\u82f1\u96c4\u7535\u5f71\u3002"} +{"id": "4004771", "video_name": "1584a185-907d-5da5-9c27-e6c9eaa7c0ba", "text": "\u7535\u89c6\u5c4f\u5e55\u4e0a\uff0c\u5929\u6c14\u9891\u9053\u4e0a\uff0c\u4e00\u4f4d\u5929\u6c14\u9884\u62a5\u5458\u6307\u7740\u5168\u56fd\u5730\u56fe\uff0c\u8bb2\u8ff0\u7740\u66b4\u98ce\u96e8\u3002"} +{"id": "3006747", "video_name": "e4122e8e-0895-551c-8823-88551492e997", "text": "\u7ea6\u7ff0\u00b7\u4f2f\u5b81\u5384\u59c6\u548c\u5e15\u65af\u5361\u5c14\u00b7\u574e\u76ae\u7fc1\u5236\u4f5c\u4e86\u4e00\u4e2a\u4eba\u4eec\u5728\u9152\u5427\u91cc\u559d\u8461\u8404"} +{"id": "1004892", "video_name": "5a6758c9-0d35-539d-aa2b-e7f24946effe", "text": "\u4e94\u5ea7\u5177\u6709\u6807\u5fd7\u6027\u7684\u739b\u96c5\u91d1\u5b57\u5854\u7684\u89c6\u9891"} +{"id": "5001147", "video_name": "43207da2-a835-5439-8f71-344a0e736cb8", "text": "\u4e00\u90e81\u5206\u949f\u957f\u7684\u77ed\u52a8\u753b\u7535\u5f71"} +{"id": "7004990", "video_name": "aeb656fa-5540-516d-8d03-0a4232e3e631", "text": "\u8fbe\u683c\u739b\u5854\u5973\u795e\u5728\u591c\u665a\u5e26\u7740\u8001\u864e\u6765\u5230\u5370\u5ea6\u6751\u5e84\u3002"} +{"id": "5001326", "video_name": "16e755f3-fc59-5b2a-aa4c-5bfc3ca4005c", "text": "\u718a\u975e\u5e38\u6709\u529b\u5730\u8dc3\u51fa\uff0c\u4ece\u96fe\u4e2d\u653b\u51fb\u3002"} +{"id": "3005401", "video_name": "7b55510e-2171-5ff6-ad35-ab5a9edd401f", "text": "\u4e00\u53ea\u6124\u6012\u7684\u68d5\u718a\u6254\u7740\u4e00\u4e2a\u5927\u77f3\u5934\uff0c\u80cc\u5f71\uff0c\u7eff\u8272\u80cc\u666f\u3002"} +{"id": "4003573", "video_name": "fe1310fc-1e25-5b5d-85f2-fd6fa790be72", "text": "\u8840\u7ec6\u80de\u5728\u8840\u7ba1\u4e2d\u6d41\u52a8\uff0c\u7279\u5199\u3002"} +{"id": "3005344", "video_name": "5063d3c8-4a44-5989-805d-45008fa08bc4", "text": "\u4e00\u67b6\u65e0\u4eba\u673a\u5728\u8036\u8def\u6492\u51b7\u62cd\u6444\u8036\u7a23\u57fa\u7763\u3002"} +{"id": "2004895", "video_name": "5d305acf-04ee-5417-be99-700fd20ab8ea", "text": "\u4e00\u4e2a\u5065\u7f8e\u8fd0\u52a8\u5458\u5728\u5065\u8eab\u623f\u5185\u731b\u70c8\u5730\u5c55\u793a\u808c\u8089\u3002"} +{"id": "1005062", "video_name": "5d893325-15ba-5250-b651-5a85bab9c5d1", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u88ab\u6751\u6c11\u8ffd\u6355\u3002"} +{"id": "2005206", "video_name": "3a7a46e7-d231-57a8-838b-5515469984bc", "text": "\u5b89\u8d3e\u5229\u663e\u5f97\u72b9\u8c6b\u548c\u62c5\u5fe7\uff0c\u800c\u5361\u8482\u514b\u5219\u4f3c\u4e4e\u88ab\u8c6a\u5b85\u6240\u5438\u5f15\u3002"} +{"id": "6003018", "video_name": "ae781d2d-ad17-5cf5-a396-a3925a420ecb", "text": "\u591c\u665a\u5728\u5927\u57ce\u5e02\u4e2d\uff0c\u4e00\u4e2a\u8eab\u6750\u5e9e\u5927\u53c8\u6f5c\u884c\u7684\u7537\u4eba\u4ece\u4e00\u5ea7\u5efa\u7b51\u7684\u5c4b\u9876\u8df3\u5230\u53e6\u4e00\u5ea7\u5efa\u7b51\u7684"} +{"id": "1004636", "video_name": "5637da66-e361-57c7-94b9-7cf9f051941b", "text": "\u4e00\u90e81960\u5e74\u7684\u8d858\u6beb\u7c73\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u540d\u5b55\u5987\u5728\u7a97\u524d\u54ed\u6ce3\uff0c\u770b\u7740\u4e00\u628a\u6f02\u6d6e\u7684\u96e8\u4f1e\u3002"} +{"id": "6000001", "video_name": "b0d7889c-c711-51ef-89d3-228372ebfb9d", "text": "\u5c0f\u7f8e\u4eba\u9c7c\u5728\u6d77\u6ee9\u6e38\u6cf3\u3002"} +{"id": "4002904", "video_name": "5b6684eb-4574-5088-b77a-c4a4e8509d25", "text": "\u732b\u5728\u97f3\u4e50\u5385\u4e0a\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "6004651", "video_name": "f8ce9221-7f6d-593e-b273-69c3c83362d7", "text": "\u5546\u4eba\u53cc\u624b\u7a7a\u7a7a\uff0c\u770b\u8d77\u6765\u5728\u63a5\u53d7\uff0c4K\u52a8\u753b\u3002"} +{"id": "0003100", "video_name": "3700d51b-92d5-5ef4-b8d7-8d8b32ebde2c", "text": "\u94a2\u94c1\u4fa0\uff0c\u6d45\u7ea2\u8272\u98ce\u683c\uff0c\u82b1\u5349\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u6d41\u884c\uff0c\u7f16\u8f91\u63d2\u56fe\uff0c\u5927\u536b\u00b7\u970d\u514b\u5c3c\uff0c"} +{"id": "1006500", "video_name": "76fdcfb8-7f3d-5c15-a4ed-59d34a21c409", "text": "\u4e00\u53ea\u7a7f\u7740\u9b3c\u767d\u8272\u5e8a\u5355\u7684\u5c0f\u72d7\u5750\u5728\u4e00\u68f5\u6a59\u6811\u4e0b\u3002"} +{"id": "3006682", "video_name": "72402663-577b-51f0-967f-1fd3300d96e4", "text": "\u4e00\u53ea\u72d7\u5728\u5854\u970d\u6ed1\u96ea\u3002"} +{"id": "2004191", "video_name": "0d40d08a-36cb-5cb6-ba48-150b8b3ad195", "text": "\u82ad\u6bd4\u4ef0\u671b\uff0c\u5927\u773c\u775b\uff0c\u5f20\u5f00\u5634\u5df4\uff0c\u5934\u53d1\u6447\u66f3\u98ce\u683c\u7684\u5b9a\u683c\u52a8\u753b\u4ea8\u5229\u00b7\u585e\u91cc\u514b\u3002"} +{"id": "3003312", "video_name": "398e978e-354c-5a10-9a31-4c0e3b0c6983", "text": "\u526a\u6389\u5728\u82b1\u4e1b\u4e2d\u73a9\u800d\u7684\u732b"} +{"id": "3005987", "video_name": "6bb2d44d-25df-5ce8-b526-5d85ec9e2df1", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u8eba\u5728\u8d85\u7ea7\u7761\u7720\u8231\u76d2\u5b50\u91cc\uff0c\u900f\u660e\u7684\u76d2\u5b50\uff0c\u672a\u6765\u4e3b\u4e49\u8bbe\u8ba1\uff0c\u4f4d\u4e8e\u5b87\u5b99\u98de\u8239\u4e2d\uff0c"} +{"id": "3006991", "video_name": "460df0c8-c353-5c37-b1fe-34c124d1d55d", "text": "80\u5e74\u4ee3\u6ed1\u8f6e\u978b\u4e0e\u7eff\u5c4f\u3002"} +{"id": "1005056", "video_name": "5d6f570f-030a-54ee-b85a-dde627418330", "text": "\u4e00\u5e45\u753b\uff0c\u753b\u7740\u4e00\u4e2a\u6234\u7740\u82b1\u7684\u5973\u4eba\uff0c\u7f8e\u4e3d\u7684\u5e7b\u60f3\u827a\u672f\u8096\u50cf\uff0c\u6d41\u884c\u7684\u6570\u5b57\u5e7b\u60f3\u827a\u672f\uff0c\u7f8e"} +{"id": "4003949", "video_name": "6005ab7a-216a-5acc-aea5-02bd756a2a90", "text": "\u5e7f\u5c9b\u539f\u5b50\u5f39\u7206\u70b8\u7684\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u4f7f\u752835\u6beb\u7c73\u4f73\u80fd\u76f8\u673a\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u7ea6\u5f17\u62c9\u00b7\u535a"} +{"id": "0004730", "video_name": "0e378030-f961-5976-9382-3703cc2b9ef2", "text": "\u5317\u6b27\u795e\u8bdd\u4e2d\u7684\u82f1\u96c4\u7d22\u5c14\uff08Thor\uff09\u501f\u52a9\u4e00\u4e2a\u53eb\u505a\u6bd4\u5f17\u96f7\u65af\u7279\uff08bivrest\uff09\u7684\u7a7a\u95f4\u6865\u79bb\u5f00\u4e86\u5730\u7403\u3002\u8272"} +{"id": "2007452", "video_name": "1f002ce6-9d28-510d-aca1-016122396b18", "text": "\u83f2\u5f8b\u5bbe\u8def\u4e0a\u6709\u4e00\u4f4d\u5c0f\u5973\u5b69\u7ade\u9009\u603b\u7edf\u3002"} +{"id": "7002466", "video_name": "0d3d4c20-cd8e-5657-8e7d-e3e6cefcfb5d", "text": "\u7528\u6c34\u6676\u7403\u548c\u5b9d\u77f3\u7684\u5360\u535c\u5e08\uff0c\u8eab\u5904\u4e00\u95f4\u5e03\u6ee1\u5854\u7f57\u724c\u7684\u623f\u95f4\u3002"} +{"id": "2007959", "video_name": "3c74a920-115d-5648-b043-c5b54d0cf598", "text": "\u505c\u6ede\u7684\u3001\u8272\u5f69\u4e30\u5bcc\u7684\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u623f\u5c4b\u3001\u9752\u5c71\u3001\u68ee\u6797\u3001\u590f\u65e5\u666f\u8272\u3002"} +{"id": "2006248", "video_name": "5fe97fac-3340-5526-a6e8-0d9c51350e5b", "text": "\u4e24\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u5728\u9910\u5385\u91cc\u548c\u4ed6\u4eec\u7684\u7236\u4eb2\u4ea4\u8c08\uff0c\u800c\u4ed6\u624b\u91cc\u62ff\u7740\u4e00\u6735\u7d2b\u8272\u7684\u82b1\u3002"} +{"id": "2005750", "video_name": "fc65235b-397f-5f57-a4f1-33699e764f6c", "text": "\u6050\u9f99\u8c37\u7e41\u8363\uff1a\u6050\u9f99\u5c55\u793a\u4e86\u8c37\u7684\u8f6c\u53d8\uff0c\u6210\u4e3a\u4e00\u4e2a\u53cb\u8c0a\u548c\u52c7\u6c14\u5171\u5b58\u7684\u5730\u65b9\uff0c\u5404\u79cd\u5927\u5c0f\u7684\u6050"} +{"id": "0003052", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u5199\u4e00\u672c\u7a7a\u767d\u4e66\u3002\n\nSource sentence: I will meet you at the airport tomorrow.\n\u6211\u660e\u5929\u4f1a\u5728\u673a\u573a\u548c\u4f60\u89c1\u9762\u3002"} +{"id": "7002286", "video_name": "dd984adf-e0a4-5b91-8002-43c9489805d2", "text": "\u77ed\u77ed6\u79d2\u7684\u5e7f\u544a\uff0c\u5ba3\u4f20\u6821\u5bf9\u548c\u7f16\u8f91\u670d\u52a1\u3002\u53ea\u6709\u4e00\u4e9b\u6587\u4ef6\u7684\u56fe\u50cf\uff0c\u5e26\u6709\u8fc7\u6e21\u6548\u679c\uff0c\u5177\u6709\u5f15\u4eba\u6ce8\u76ee\u3001\u6709\u8da3"} +{"id": "1005554", "video_name": "66429a1a-5744-5f3d-b665-006fa9e950db", "text": "\u5370\u5ea6\u6751\u5e84\u7684\u5973\u6027\u805a\u96c6\u5728\u4e00\u8d77\u3002"} +{"id": "3004253", "video_name": "d0ee9564-30b6-527e-856a-ab3898a95e2e", "text": "\u4e00\u4e2a\u6709\u624b\u81c2\u548c\u817f\u7684\u70e4\u9762\u5305\u673a\u5728\u62e5\u6324\u7684\u591c\u603b\u4f1a\u8df3\u7535\u5b50\u97f3\u4e50\u821e\u3002"} +{"id": "0003428", "video_name": "3d5fcad0-54b1-5771-8a0a-192a0ea505db", "text": "\u94f6\u884c\u4fdd\u9669\u5e93\u95e8\u7f13\u7f13\u6253\u5f00\u3002\u50cf\u7d20\u827a\u672f\u3001\u590d\u53e4\u56fe\u5f62\u3001\u590d\u53e4\u6e38\u620f\u3002"} +{"id": "0003997", "video_name": "014fb780-2809-591e-8b55-cc25a2e2a2d1", "text": "\u9ed1\u6697\u95f4\u8c0d\u5973\u5b69\u4e0e\u51ef\u52d2\u59c6\u6c83\u9a91\u58eb\u6218\u6597\uff0c4k\uff0c\u7535\u5f71\u7ea7\u753b\u9762\uff0c\u9f99\u4e0e\u5730\u4e0b\u57ce\uff0c\u653e\u5927\u955c"} +{"id": "8003565", "video_name": "9f3ada97-8890-5ef6-b89b-35baedf82bf5", "text": "\u4e00\u4e2a\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u770b\u7740\u624b\u673a\u5c16\u53eb\u7684\u7537\u4eba\u3002"} +{"id": "5001738", "video_name": "95f9da74-aec9-58a1-a2dc-18f3af82379c", "text": "\u5173\u4e8eCarry Minati\u548cMr Beast\u5728\u62ab\u8428\u4e0a\u4e89\u6597\u7684Meme\u89c6\u9891\u3002"} +{"id": "8001398", "video_name": "4ce25120-715e-56d2-89b7-1a14db5c3d7e", "text": "\u5de7\u514b\u529b\u7247\u9905\u4e7e\u548c\u6578\u64da\u6676\u7247\u6389\u843d\u3002\u4fe1\u606f\uff1a\u6578\u64da\u9905\u4e7e\u3002\uff08\u5b57\u9ad4\uff1a\u7121\u896f\u7dda"} +{"id": "2004759", "video_name": "4ca0ffa3-7fbe-55c1-ae94-0dbd6fbddb39", "text": "\u90a3\u4e2a\u60b2\u4f24\u5e76\u5bf9\u81ea\u5df1\u7684\u4eba\u751f\u540e\u6094\u7684\u7537\u4eba"} +{"id": "5001554", "video_name": "98331b6c-6b1e-5b96-af26-49d3c908c70a", "text": "\u7f13\u6162\u8fd0\u52a8\u7684\u89c6\u9891\uff0c\u5e26\u6709\u51e0\u652f\u8721\u70db\u7684\u829d\u58eb\u86cb\u7cd5\u548c\u7ea2\u73ab\u7470\u3002"} +{"id": "1003352", "video_name": "3dc9ab2c-a4fb-53ef-aeae-362b3809e78e", "text": "next generation of calves. \n\nTranslation: \u5979\u6574\u5929\u5728\u5403\u7740\u8302\u76db\u7684\u8349\uff0c\u540c\u65f6\u7167\u987e\u7740\u4e0b\u4e00\u4ee3\u7684\u5c0f\u725b\u3002 \n\nSource sentence: The city is known for"} +{"id": "2003594", "video_name": "3f8267bc-c940-5af9-9dc6-a41b0258dac4", "text": "\u90a3\u4f4d\u6027\u611f\u7684\u5973\u58eb\u7a7f\u7740\u77ed\u88d9\uff0c\u5728\u8def\u8fb9\u6563\u6b65\uff0c\u624b\u62ff\u7740\u4e00\u628a\u7ea2\u8272\u7684\u96e8\u4f1e\u3002"} +{"id": "2007083", "video_name": "5ec6b0df-a593-5554-b8ab-002e5a952922", "text": "\u5730\u4e0b\u5ba4\u7684\u9897\u7c92\u72b6\u5f55\u50cf\uff0c20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u6050\u6016\u7247\u3002"} +{"id": "3004308", "video_name": "548c2c69-4d9f-5415-a1d3-b87f9d99de5e", "text": "\u4e00\u53ea\u7a7f\u7740\u6d74\u888d\u7684\u718a\u732b\u6b63\u5728\u9910\u684c\u4e0a\u5403\u65e9\u9910\u3002"} +{"id": "7002598", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "\u514b\u91cc\u5e0c\u7eb3\u5728\u300a\u6469\u8bc3\u5a46\u7f57\u591a\u300b\u6218\u573a\u7535\u5f71\u4e2d\u3002"} +{"id": "4002880", "video_name": "bb5e3ffc-b3b0-5163-840f-306707cab318", "text": "\u5979\u8d8a\u8d70\u8d8a\u6df1\u5165\u6811\u6797\uff0c\u8389\u8389\u7a81\u7136\u53d1\u73b0\u4e86\u4e00\u5ea7\u5c0f\u5de7\u800c\u53e4\u6734\u7684\u5c0f\u5c4b\u3002\u6b22\u7b11\u548c\u97f3"} +{"id": "4004657", "video_name": "2c7cf4e1-eac6-5226-b5df-6d145be44ffa", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u7cbe\u7075\u7684\u7570\u60f3\u4e16\u754c\u4e2d\uff0c\u4e00\u500b\u5c0f\u800c\u597d\u5947\u7684\u7cbe\u9748\u7a7f\u8d8a\u4ed6\u7684\u540c\u7c7b\u7684\u9b54\u6cd5\u9886\u57df"} +{"id": "5001711", "video_name": "bba457c2-ac10-5fda-85d5-3d7e25244aad", "text": "MRI \u7684\u6587\u672c\u65e5\u5fd7"} +{"id": "0006333", "video_name": "2acb01fd-96e5-58e9-a8ea-ddf9c791b2ca", "text": "\u7167\u7247\uff0cL USM\uff0cVelvia\uff08\u96e8\u679c\u00b7\u7ef4\u6587\uff09\u5403\u610f\u5927\u5229\u9762\uff0c\uff08\u52a8\u6001\u6784\u56fe\uff0c\u52a8\u6001\u573a\u666f1.025\uff09\uff0c\u9cc4\u9c7c\u76ae\u6846"} +{"id": "0006150", "video_name": "27603806-0bee-5987-bb0d-ca766ff9e9d8", "text": "\u52a8\u753b\u7537\u5b69\u4ee5\u7b80\u5355\u7684\u56fe\u5f62\u6109\u5feb\u5730\u60f3\u8c61\u7740\u8bbf\u95ee\u4e00\u4e2a\u7f8e\u4e3d\u57ce\u5e02\u7684\u7f8e\u4e3d\u666f\u8272\u3002"} +{"id": "3005053", "video_name": "002d4c7a-855f-580a-b480-f7a19eb2eed9", "text": "\u4e1b\u6797\u5c0f\u8def\u4e0a\u8dd1\u7740\u4e00\u4f4d\u5973\u58eb\u3002"} +{"id": "1006084", "video_name": "6f891f6f-a80c-5069-be66-216312491a27", "text": "\u7070\u72d0\u72f8\u6b63\u5728\u72e9\u730e\uff0c\u5b83\u7684\u6bdb\u88ab\u98ce\u5439\u7740\uff0c\u7ad9\u5728\u6df1\u6df1\u7684\u96fe\u6797\u4e2d\u3002"} +{"id": "2007456", "video_name": "d0a98e4a-004e-59ab-83b1-8b388a24246f", "text": "\u9e3d\u5b50\u53d7\u5230\u611f\u52a8\u5e76\u611f\u5230\u9ad8\u5174\uff0c\u63a5\u6536\u5230\u4e86\u91d1\u86cb\u3002"} +{"id": "0003835", "video_name": "444809b3-7b41-5d7d-87b3-9037bfa9d041", "text": "\u4e00\u4e2a\u5173\u6389\u624b\u673a\u7684\u519c\u6c11\uff0c\u770b\u624b\u673a\u7684\u6837\u5b50\u50cf\u4e2a\u5546\u4eba\u3002"} +{"id": "2007267", "video_name": "603bfafe-ad2e-56d1-90b4-d8eed0e60de4", "text": "\u67cf\u6797\u4e9a\u5386\u5c71\u5927\u5e7f\u573a\u7684\u6444\u50cf\u673a\u987a\u65f6\u9488\u5feb\u901f\u65cb\u8f6c\u3002"} +{"id": "2003395", "video_name": "662acd0e-f0bc-5680-94a3-a30a17b1b6b5", "text": "\u4ea4\u7ec7\u5728\u4e00\u8d77\u7684\u771f\u83cc\u83cc\u4e1d\u548c\u6811\u6839\u7684\u573a\u666f\uff0c\u5149\u70b9\u5728\u6839\u548c\u83cc\u4e1d\u4e4b\u95f4\u6d41\u52a8\uff0c\u8c61\u5f81\u7740\u517b\u5206\u548c\u4fe1\u606f\u7684"} +{"id": "7004979", "video_name": "62d6a31b-f511-5d41-b5f2-df9bd0a6752b", "text": "\u5c3c\u6cca\u5c14\u5973\u5b69\u5728\u81ea\u7136\u754c\u4e2d\u8df3\u821e\u3002"} +{"id": "2003728", "video_name": "1e2d2590-0bde-5b68-b63f-0b175c3ca8bc", "text": "\u9ed1\u6697\u7684\u591c\u665a\u3002\u620f\u5267\u3002\u8d5b\u535a\u670b\u514b\u3002\u7535\u5f71\u3002\u5728\u9876\u697c\u4fef\u77b0\u7a7a\u65f7\u7684\u57ce\u5e02\u8857\u9053\u3002"} +{"id": "8001330", "video_name": "7f0e680d-fead-5f2a-91f4-242fd9efa4ba", "text": "\u72ec\u89d2\u517d\u5728\u9ec4\u8272\u68ee\u6797\u4e0a\u8df3\u821e\uff0c\u8e29\u5728\u6d0b\u7ea2\u8272\u86cb\u7cd5\u4e0a\u3002"} +{"id": "7003243", "video_name": "20a2a20b-70a9-5214-a25d-5a59deb6cc99", "text": "\u4e00\u67b6\u98de\u884c\u4e2d\u7684\u98de\u673a\u5c31\u50cf\u6606\u866b\u4e00\u6837\uff0c\u5728\u57ce\u5e02\u7684\u5efa\u7b51\u7269\u5468\u56f4\u98de\u884c\u3002"} +{"id": "0005475", "video_name": "1b6bb7cb-4fbd-572f-9823-320ccd71af43", "text": "\u5916\u661f\u738b\u5728\u4e00\u5343\u82f1\u5c3a\u7684\u623f\u95f4\u5185\u5f00\u5ead\u5ba1\u5224\uff0c\u4f7f\u7528\u4f73\u80fdEOS R5\u62cd\u6444\uff0c\u7528\u4f73\u80fdEOS R5\u62cd\u6444\uff0c\u7528\u4f73"} +{"id": "5001118", "video_name": "466e5d66-f270-50fc-8433-879283cb45c4", "text": "\u53d6\u5f97\u6210\u529f\u3002"} +{"id": "7002338", "video_name": "2f48be7a-e075-56aa-8f6d-9dc811538fde", "text": "\u8425\u5730\u91cc\u4e0b\u7740\u82b1\u96e8\u3002"} +{"id": "2005691", "video_name": "c3304dbc-da9e-527e-85e6-553480ff6738", "text": "\u5236\u4f5c\u9891\u9053\u6a2a\u5e45\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "1004931", "video_name": "5b29b4ce-fae7-51be-84ec-f151a402e444", "text": "\u5728\u8482\u83ab\u5c14\u5c9b\u4e0a\u63cf\u7ed8\u4e00\u4e2a\u665a\u671f19\u4e16\u7eaa\u7684\u573a\u666f\uff0c\u878d\u5408\u8377\u5170\u6b96\u6c11\u5efa\u7b51\u548c\u571f\u8457\u8482"} +{"id": "2004338", "video_name": "c4bc12c6-f2ce-5762-bf22-1e2a0e988a3b", "text": "\u4e00\u53ea\u592a\u7a7a\u732b\u5728\u94f6\u6cb3\u7cfb\u4e2d\u98de\u884c\u3002"} +{"id": "0006945", "video_name": "35ac16f8-4522-5f18-8c8f-656f648a9ec8", "text": "\u5929\u7a7a\u4e2d\u6b63\u5728\u4e0b\u7740\u5927\u96ea\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u7a7a\u4e2d\u821e\u8e48\u3002"} +{"id": "8001360", "video_name": "8fb5e0b6-3a85-5552-bbb3-d2d4851d4021", "text": "\u8389\u8389\u8f7b\u8f7b\u4f38\u51fa\u624b\uff0c\u8ba9\u5979\u60ca\u8bb6\u7684\u662f\uff0c\u6bcd\u9e21\u4eb2\u6635\u5730\u8e6d\u7740\u5979\u7684\u624b\u6307\u3002\u5361\u901a"} +{"id": "2005734", "video_name": "afe2e69e-2ba9-5b14-80c8-4c887fa5dad9", "text": "\u4e00\u540d\u7537\u5b50\u501f\u52a9\u98de\u673a\u7684\u5e2e\u52a9\u5411\u5929\u7a7a\u98de\u884c\u3002"} +{"id": "0005153", "video_name": "15ace988-f49d-5016-b9bc-7fe4dc9215cf", "text": "\u4e00\u4e2a\u5c0f\u578b\u7684R2-D2\u673a\u5668\u4eba\u5728\u53e4\u4ee3\u5e9f\u589f\u4e2d\uff0c\u5468\u56f4\u6709\u5f88\u591a\u88ab\u6467\u6bc1\u7684\u673a\u5668\u4eba\uff0c\u5448\u8fea\u58eb\u5c3c\u98ce\u683c"} +{"id": "1004439", "video_name": "521d0fb8-a9a6-5d01-ae45-e32e7c0cbb93", "text": "1940\u5e74\u7684\u4e00\u90e8\u65e0\u58f0\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u6050\u6016\u7684\u5973\u4eba\u5728\u68ee\u6797\u6700\u9ed1\u6697\u7684\u5730\u65b9\u7761\u89c9\uff0c\u753b\u9762\u8d28\u91cf\u4e0d\u4f73\uff0c\u6709"} +{"id": "5001057", "video_name": "c02d6457-3f20-55b1-aad6-3ab4b0b5d2c5", "text": "\u8bfa\u5c14\u8fd9\u4e2a\u53ef\u7231\u7f8e\u4e3d\u7684\u516c\u4e3b\u5411\u4e00\u4e2a\u5c0f\u5de7\u53ef\u7231\u7684\u4ed9\u5b50\u5f2f\u4e0b\u8170\u3002"} +{"id": "3003567", "video_name": "9acbf73e-86ca-5200-83c5-b03cbcb774aa", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u8d70\u3002"} +{"id": "5001372", "video_name": "8cbe2389-4021-5b5c-bb3d-cb4916b4fff4", "text": "\u4e00\u4e2a\u4eba\u5728\u8d5b\u9053\u4e0a\u884c\u8d70\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006434", "video_name": "35610971-10c7-500d-a4f8-7b0e11afdae3", "text": "\u90a3\u4e2a\u8eab\u5f71\u9759\u6b62\u4e0d\u52a8\uff0c\u5934\u53d1\u98d8\u8361\uff0c\u706b\u7130\u6447\u6446\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001780", "video_name": "d0aaf9a7-6626-5a2d-87c8-dc47bc98b40b", "text": "\u4e00\u4e2a\u7c89\u8272\u6cf0\u8fea\u718a\u5728\u82ad\u6bd4\u4e16\u754c\u8df3\u821e\u3002"} +{"id": "0004020", "video_name": "01a0237a-1106-5324-9484-bc6b0fae880d", "text": "\u9a6c\u5e93\u65af\u00b7\u52a0\u7ef4\u7ad9\u5728\u9635\u96e8\u4e2d\u7684\u6e38\u884c\u961f\u4f0d\u4e2d\uff0c\u88ab\u9ed1\u767d\u4e24\u8272\u7684\u6b22\u547c\u4eba\u7fa4\u5305\u56f4\u7740\uff0c\u89c6\u9891\u4e2d\u6f2b\u5929"} +{"id": "0004680", "video_name": "0d3da4bc-1abf-5e87-bb85-170d397935c3", "text": "\u672a\u6765\u7684\u5e0c\u814a\u795e\u7947\u7d2b\u8272\u773c\u775b\uff0c\u95ea\u7535\u98ce\u66b4\uff0c4k ar 9:16"} +{"id": "6002808", "video_name": "0bd31991-08ee-54c7-a507-b0a55a5364bb", "text": "\u63cf\u7ed8\u4e00\u53ea\u9f99\u548c\u6d63\u718a\u5728\u68ee\u6797\u4e2d\u53d1\u73b0\u4e00\u4e2a\u53d1\u5149\u7684\u5b9d\u7bb1\u3002"} +{"id": "6004483", "video_name": "1e1f778a-1574-5c9c-8780-ef6dccc2d902", "text": "\u6211\u6765\u5230\u4e86\u6c34\u8fb9\uff0c\u51b0\u5c01\u7684\u666f\u8c61\u8ba9\u4eba\u611f\u5230\u7a7a\u65f7\u548c\u8352\u51c9\u3002\u9664\u4e86\u90a3\u4e2a\u6f02\u6d6e\u7740\u3001\u6beb\u65e0\u751f\u6c14\u7684\u6c34\u624b"} +{"id": "7000002", "video_name": "86b97016-e9cd-531d-8005-abbc1fc98b0a", "text": "\u5728\u6000\u7279\u5c9b\u4e0a\u7684\u5973\u5b69\u4e3e\u8d77\u624b\uff0c\u89e6\u6478\u8001\u864e\u3002"} +{"id": "7003066", "video_name": "67dc0dc5-c07b-54b5-9d8a-759d354cb7f2", "text": "\u5728\u7231\u6c99\u5c3c\u4e9a\u5854\u6797\u57ce\u521b\u4f5c\u51fa\u8d85\u6e05\u6670\u3001\u6781\u5176\u8be6\u7ec6\u76844K\u7248\u8036\u7a23\u50cf\uff0c\u653e\u7f6e\u4e8e\u5965\u5c14\u7ef4\u65af\u7279"} +{"id": "5001836", "video_name": "27a64ad3-c867-574c-ad49-9744848b6845", "text": "\u68ee\u6797\u4e2d\u6f02\u6d6e\u7684\u9ed1\u8272\u6c34\u6bcd\u7684\u8d858\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "3004639", "video_name": "a0dc8d99-7897-52e0-977a-ed097fa232c0", "text": "\u5730\u57ce\u56f4\u653b3\u4e2d\uff0c\u6770\u6069\u00b7\u5361\u8f9b\u5fb7\u5728\u5c16\u5854\u8d1d\u5229\u3002"} +{"id": "6003554", "video_name": "24ad1803-34e8-56fa-8578-a1717dc22f51", "text": "\u6570\u767e\u4eba\u53c2\u52a0\u62cd\u5356\uff0c\u54e5\u8c2d\u57ce\u98ce\u683c\u3002"} +{"id": "2003815", "video_name": "bb5f3671-9ef5-553e-9e99-92eadeb20432", "text": "\u706b\u661f\u4e0a\u7684\u5b87\u822a\u5458\u722c\u68af\u5b50\u3002"} +{"id": "1005852", "video_name": "6ba50638-d12d-5e63-9e78-069ee816f408", "text": "\u4e00\u4e2a\u6234\u7740\u533b\u9662\u670d\u548c\u6c27\u6c14\u9762\u7f69\u768430\u5c81\u7537\u5b50\u5750\u5728\u533b\u9662\u5e8a\u4e0a\uff0c\u75af\u72c2\u5730\u6293\u7740\u81ea\u5df1\u3002"} +{"id": "8003306", "video_name": "f57fd080-b5b5-565b-b763-89c44f26a74a", "text": "\u5728\u7530\u5730\u91cc\u5f00\u7740\u8015\u4f5c\u673a\u7684\u62d6\u62c9\u673a\u3002"} +{"id": "3006575", "video_name": "ed2f75c1-e6a5-5b3c-a254-6caea93cb5e0", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u5750\u706b\u8f66\uff0c\u770b\u7740\u7a97\u5916\u3002"} +{"id": "1004546", "video_name": "546b73a2-7741-5800-af91-e7d079055e78", "text": "\u623f\u5b50\u91cc\uff0c\u6709\u4e00\u6761\u957f\u957f\u7684\u6ee1\u662f\u7070\u5c18\u3001\u5899\u7eb8\u5265\u843d\u3001\u5899\u4e0a\u60ac\u6302\u7740\u8be1\u5f02\u753b\u50cf\u7684\u8fc7\u9053\u3002"} +{"id": "2006992", "video_name": "187979ca-497e-5d51-99d8-3ffe103df21a", "text": "\u4ed6\u4eec\u7684\u7b2c\u4e00\u7ad9\u662f\u5c0f\u9547\u56fe\u4e66\u9986\uff0c\u88c5\u9970\u7740\u95ea\u95ea\u53d1\u5149\u7684\u706f\u548c\u91d1\u5c5e\u4e1d\u3002\u7ba1\u7406\u5458\u6c64\u666e\u68ee\u5973\u58eb\u7528"} +{"id": "2003584", "video_name": "302e8a0b-0e92-53d3-acb5-fddab9fedd4e", "text": "\u51ac\u5929\u3002\u8def\u3002\u68ee\u6797\u3002\u4e00\u8f86\u767d\u8272\u7684\u57f9\u8bad\u8f66\u6cbf\u7740\u9053\u8def\u884c\u9a76\u3002"} +{"id": "1005478", "video_name": "649ebec7-61de-5569-9d1c-2a91e8666a02", "text": "\u591a\u4e91\u9884\u62a5\uff0c\u98d3\u98ce\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "3004415", "video_name": "ed5bcca7-1eb1-53c5-a6c6-122ec094d7b0", "text": "\u4e00\u5f20\u71c3\u70e7\u7684\u7eb8\u7247\u653e\u5728\u4e00\u5f20\u6ee1\u662f\u7070\u5c18\u7684\u6728\u684c\u4e0a\u3002"} +{"id": "7003238", "video_name": "aace52e8-e3b0-5b28-9c5d-d25fcc92fc17", "text": "\u7f13\u6162\u7684\u884c\u8fdb\uff0c\u5929\u7a7a\u4e2d\u96f7\u9e23\u4f5c\u54cd\u3002"} +{"id": "4003780", "video_name": "fc19b9ba-7d99-50fd-bfdb-e7e4c848db05", "text": "\u91d1\u94b1\u5728\u91d1\u5b57\u5854\u7684\u9876\u7aef\uff0c\u9ad8\u4e8e\u6574\u4e2a\u4e16\u754c\u3002"} +{"id": "2005939", "video_name": "995839c3-5cc3-54cd-9a35-77d86aee171f", "text": "\u5206\u53d1\u7834\u574f\u6027\u7269\u54c1\uff0c\u5982\u9ed1\u8272\u8428\u57fa\u3001\u7535\u5b50\u8bbe\u5907\u3002"} +{"id": "1005761", "video_name": "69f97659-3eff-5159-ab22-ce526aa02eef", "text": "\u4e00\u4e2a\u5728\u767d\u8272\u80cc\u666f\u4e2d\u7684\u96ea\u7403\u91cc\u7684\u9177\u70ab\u96ea\u5c71"} +{"id": "4004857", "video_name": "79ddd724-bb75-592e-9078-d1e8c378b199", "text": "\u5c55\u793a\u4e00\u4e2a\u8c26\u5351\u7684\u519c\u592b\u7684\u8499\u592a\u5947\u3002\u5f53\u4ed6\u6df1\u5165\u5730\u4e0b\u6316\u6398\u65f6\uff0c\u767d\u5929\u53d8\u6210\u4e86\u9ed1\u591c\u3002"} +{"id": "8001944", "video_name": "53ea01b7-905e-54be-82d7-871ffff631d3", "text": "\u4e00\u679a\u706b\u9f99\u86cb\u5b55\u80b2\u51fa\u4e00\u53ea\u9f99\uff0c\u5b83\u711a\u70e7\u4e86\u6240\u6709\u7684\u68ee\u6797\u3002"} +{"id": "8002562", "video_name": "427b8546-8dc5-57fa-b51e-4f1f364eb562", "text": "\u540e\u9662\u6709\u4e00\u68f5\u5782\u67f3\u6811\u548c\u4e00\u4e2a\u6c60\u5858\uff0c\u6c34\u9762\u95ea\u70c1\u3002\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "0006185", "video_name": "27d7e37d-8050-522c-b533-c38f8baa4a7d", "text": "\u7ecf\u5178\u7684\u4ed9\u4fa0\u98ce\u683c\u3002\u4ed9\u4eba\u5b66\u9662\u7684\u56fe\u4e66\u9986\u9664\u4e86\u6536\u85cf\u4e0d\u673d\u4fee\u4ed9\u672f\u7684\u7ecf\u5178\u548c\u56fe\u7eb8\u3002"} +{"id": "5001164", "video_name": "a402f6fe-403e-5293-84ce-33f81dc1a53d", "text": "\u4fdd\u65f6\u6377\u732b\u4ee5\u60ca\u4eba\u7684\u901f\u5ea6\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u9a7e\u9a76\u3002"} +{"id": "4003109", "video_name": "e81c5937-7658-588d-8203-b1d2bccf9269", "text": "\u8fbe\u65af\u7ef4\u8fbe\u5750\u5728\u5e1d\u56fd\u6218\u4e89\u5ba4\u7684\u684c\u5b50\u65c1\u8bf4\u8bdd\uff0c\u684c\u5b50\u4e0a\u653e\u7740\u5149\u5251\uff0c\u540e\u9762\u662f\u98ce\u66b4\u5175\u3002"} +{"id": "4004947", "video_name": "7989b293-12a9-5718-9d5e-2b5ffe971925", "text": "\u5fcf\u6094\u548c\u91ca\u653e\u6c38\u6052\u75db\u82e6\u7684\u75db\u82e6\u3002"} +{"id": "7004695", "video_name": "cd0b45f2-cfaa-5dfc-92b6-d6ea4a733fa4", "text": "Lionel Messi\u5e26\u988611\u540d\u8db3\u7403\u8fd0\u52a8\u5458\u8ffd\u968f\u4ed6\u5728\u9a6c\u5fb7\u91cc\u57ce\u5e02\u8fd0\u7403\u3002\n\nSource sentence: The Great Wall is a famous landmark in China that attracts millions of tourists every"} +{"id": "1005165", "video_name": "5f0fd713-f1c2-5901-b1d0-7686b2035fce", "text": "\u8fd9\u4e9b\u4f20\u5947\u63a0\u98df\u8005\u7684\u56e2\u7ed3\u548c\u52c7\u6c14\u7684\u4f20\u8bf4\uff0c\u88ab\u5c71\u8109\u89c1\u8bc1\u7740\u3002"} +{"id": "0006689", "video_name": "311ed527-9da7-5dd0-9001-d7fc79871a8e", "text": "\u4e39\u59ae\u8389\u4e1d\u00b7\u5766\u683c\u5229\u5b89\u6b63\u5728\u4ece\u56e0\u743c\u6069\u00b7\u96ea\u800c\u9020\u6210\u7684\u4f24\u52bf\u4e2d\u6062\u590d\uff0c\u8fd9\u662f\u7531\u9f99\u54e8\u58f0\u5f15\u8d77\u7684"} +{"id": "0003277", "video_name": "3aa7891b-0efd-5e9c-b41c-ab8db9563908", "text": "\u7f8e\u4e3d\u7684\u7535\u8111\u5e26\u6709\u706f\u5149\uff0c\u642d\u8f7dRTX 4090\u3002"} +{"id": "7004260", "video_name": "71052f92-e0cc-54a5-afde-e9d3894ffd39", "text": "\u5370\u5ea6\u6751\u5e84\u7684\u8857\u5934\u72d7\u8c22\u9c81\u4ee5\u60ca\u4eba\u76844K\u5206\u8fa8\u7387\u5448\u73b0\uff0c\u914d\u6709\u8be6\u7ec6\u76843D\u52a8\u753b\u3002"} +{"id": "0005394", "video_name": "1a01ee41-cd0c-57e6-aa66-ce573189c839", "text": "\u4e00\u53ea\u7a7f\u7740\u533b\u7528\u888d\u7684\u718a\u732b"} +{"id": "3005346", "video_name": "edb11373-3b3c-5cb0-bcc6-7b625edebc3d", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u548c\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u602a\u5f02\u7684\u80cc\u666f\u4e0b\u7684\u5f62\u8c61\uff0c\u91c7\u7528\u6d45\u7d2b\u8272\u548c\u54c1\u7ea2\u8272\u98ce\u683c\uff0c\u5448\u73b0\u5de8\u5927\u7684\u89c4\u6a21"} +{"id": "1003102", "video_name": "39243e5a-c6bf-565b-8890-e3abc966356b", "text": "\u79fb\u52a8\u7684\u7ae0\u9c7c\u89e6\u987b\u73af\u7ed5\u7740\u4e00\u4e2aMoog\u5408\u6210\u5668\uff0c\u91d1\u8272\u65f6\u523b\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8fd1\u8ddd\u79bb\u3002"} +{"id": "1004300", "video_name": "4f7f88f9-29d9-549c-9088-02c41f697a5b", "text": "\u4fa6\u63a2\u8428\u59c6\uff0c\u4e00\u4f4d\u624b\u6301\u653e\u5927\u955c\u7684\u806a\u660e\u53cb\u5584\u7684\u4fa6\u63a2\uff0c\u88ab\u4ecb\u7ecd\u4e86\u51fa\u6765\u3002"} +{"id": "3004054", "video_name": "4519e9f5-b318-5c7d-9afe-e70157360a8c", "text": "\u6ca1\u6709\u4e91\uff0c\u4e00\u4e2a\u5927\u767d\u9e1f\u86cb\u4ece\u4e00\u68f5\u5927\u6811\u4e0a\u6eda\u843d\u4e0b\u6765\uff0c\u50cf\u8fea\u58eb\u5c3c\u98ce\u683c\u4e00\u6837\uff0c\u6389\u5728\u5730\u4e0a\u3002"} +{"id": "4004656", "video_name": "7ae4351a-dd61-5332-b3f6-aea9d740f989", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u8001\u5f0f\u65cb\u7ffc\u98de\u673a\uff0c\u5177\u6709\u65cb\u8f6c\u7684\u76f4\u5347\u673a\u53f6\u7247\uff0c\u6b63\u5728\u4ece\u706b\u5c71\u4e2d\u8425\u6551\u7f8e\u4e3d\u7684\u4eba\u4eec\u3002("} +{"id": "2003251", "video_name": "e403dc81-e78e-5c42-a433-c1cfb5ab0d5a", "text": "\u4ece\u9690\u542b\u79e9\u5e8f\u4e2d\u663e\u73b0\u51fa\u9b54\u6cd5\u3002"} +{"id": "8001840", "video_name": "1a2333a2-5d3a-5fd6-9de0-00c08bfe5360", "text": "\u5927\u5b66\u5973\u5b69\u4e0e\u673a\u5668\u4eba\u5408\u4f5c\u5199\u6545\u4e8b\u3002"} +{"id": "2006337", "video_name": "3e875a16-7852-5aee-86af-c2bc4c918232", "text": "\u9ed1\u767d\u8272\uff0c\u4fe1\u606f\uff1a\u5fcd\u8005\u592b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2007859", "video_name": "4e89c618-643b-5526-b529-3b7696e7be4e", "text": "\u4e00\u53ea\u72d7\u5728\u4e00\u5bb6\u8001\u897f\u90e8\u9152\u5427\u91cc\u8d1f\u8d23\u4f9b\u5e94\u5564\u9152\u3002"} +{"id": "2007386", "video_name": "11ef65af-1be9-5fa8-a73e-265cb62b2f22", "text": "\u8036\u7a23\u5728\u706b\u7130\u4e2d\u9a7e\u9a76\u4e00\u8f86\u6469\u6258\u8f66\u3002"} +{"id": "5001871", "video_name": "56b236e4-a04b-5899-baf4-9c9b27e26f01", "text": "\u4eba\u4eec\u51c6\u5907\u597d\u4e86\u8981\u6218\u6597\u3002"} +{"id": "2007117", "video_name": "fe2f8e63-18ee-5890-aca4-5507bdaa487a", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u7f8e\u5f0f\u8db3\u7403\u5934\u76d4\uff0c\u4e24\u4fa7\u7ed8\u6709\u98ce\u683c\u5316\u66b4\u9f99\u6807\u5fd7\uff0c\u903c\u771f\uff0c\u653e\u5927\u663e\u793a\u3002"} +{"id": "6003065", "video_name": "dd837cd5-189d-5d23-821a-47a93da4a741", "text": "\u4e00\u7fa4\u58eb\u5175\u5728\u7a3b\u7530\u91cc\u51c6\u5907\u4f0f\u51fb\u3002"} +{"id": "1003294", "video_name": "3c9d858c-f49f-57de-bf1d-b467a1c3293b", "text": "\u521b\u5efa\u4e00\u4e2a\u4fe1\u606f\u89c6\u9891\uff0c\u63cf\u7ed8\u5370\u5ea6\u519c\u6751\u5e86\u795d\u7eb3\u74e6\u62c9\u7279\u91cc\u8282\u65e5\u7684\u65b9\u5f0f\uff0c\u4f5c\u4e3a\u5bf9\u4e30\u6536\u7684\u611f\u6fc0\u4e4b\u60c5\u7684\u8868\u8fbe\u3002"} +{"id": "1003513", "video_name": "40e68dcb-843d-5eec-b44f-963cdef74577", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u665a\u4e0a\u4ef0\u671b\u5929\u7a7a\uff0c\u770b\u5230\u4e86\u53e6\u4e00\u4e2a\u661f\u7cfb\u3002\u5e76\u4e14\u4ed6\u6b63\u5728\u90a3\u91cc\u8fdb\u884c\u65f6\u95f4\u65c5\u884c\u3002"} +{"id": "1005660", "video_name": "67fa00d4-2bf1-5b4e-b76a-a0515fb8abcd", "text": "\u516c\u725b\u7684\u5065\u5eb7\u72b6\u51b5\u975e\u5e38\u826f\u597d\uff0c\u56e0\u4e3a\u5b83\u4eec\u5728\u68ee\u6797\u4e2d\u5403\u4e86\u5404\u79cd\u690d\u7269\u3001\u53f6\u5b50\u548c\u8349\u3002"} +{"id": "8001416", "video_name": "4e89cc63-ce00-5d56-9b3f-bf506b2b41e1", "text": "\u5728\u6ce5\u571f\u91cc\u722c\u884c\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u51fa\u73b0\u4e86\u3002"} +{"id": "6003691", "video_name": "760d33eb-8c51-50dd-91d7-1564b63b2769", "text": "\u4e00\u5929\u4e0b\u96e8\uff0c\u5c71\u666f\u4e0a\u6709\u5f69\u8679\u3002"} +{"id": "4003051", "video_name": "a3c7a8f6-b45b-5e51-8013-06f223ee432f", "text": "\u72d0\u72f8\u559c\u6b22\u50cf\u535a\u7f8e\u548c\u72ee\u5b50\u72d7\u4e00\u6837\uff0c\u7070\u767d\u8272\u7684\u6bdb\u76ae\uff0c\u73a9\u800d\u548c\u8ffd\u9010\uff0c\u76ae\u514b"} +{"id": "2003724", "video_name": "ad107162-c16b-5011-86d7-8358c217310e", "text": "\u5b8f\u89c2\u7684\u8089\u76ae\u7259\u820c\u624b\u80fd\u70b9\u71c3\u706b\u7130\uff0c4K\uff0c\u7535\u5f71\u7ea7\u3002"} +{"id": "4002909", "video_name": "fab2d7e9-eeb3-5e4d-b70c-379b7750bdf5", "text": "Translation: \u5bcc\u4eba\u5728\u5c71\u4e0a\u8c08\u8bba\u4e30\u5bcc\u591a\u5f69\u7684\u767d\u5929\u3002"} +{"id": "2004444", "video_name": "c39cc756-b950-5e2e-a90f-5e57363ee056", "text": "\u7f8e\u4e3d\u7684\u592b\u59bb\u5728\u7fe0\u7eff\u7684\u5c71\u95f4\u5f92\u6b65\u65c5\u884c\u3002"} +{"id": "3003553", "video_name": "e7e7de30-f84b-5633-9881-6eeebb006c0f", "text": "\u6211\u6770\u514b\u5728\u7535\u8111\u524d\u7684\u52a0\u5bc6\u8d27\u5e01\u4ea4\u6613\u4e2d\u4e8f\u94b1\uff0c\u573a\u666f\u611f\u5f3a\u70c8\uff0c\u620f\u5267\u6027\u5341\u8db3\u3002"} +{"id": "7003017", "video_name": "56710b46-619b-528b-bbb8-230ae4eb4f46", "text": "\u7eff\u5e55\u4eba\u7269\u5954\u8dd1\uff0c\u7528\u4e8e\u89c6\u9891\u52a8\u753b\u3002"} +{"id": "3006041", "video_name": "e7b818f8-f77a-5b1a-b889-fc4f500237e3", "text": "\u60f3\u8c61\u4e00\u4e2a16\u5c81\u7684\u7537\u5b69\u9a91\u7740\u81ea\u884c\u8f66\u5728\u4e00\u6761\u975e\u5e38\u9ed1\u6697\u7684\u8857\u9053\u4e0a\uff0c\u4ee52D\u52a8\u753b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4003825", "video_name": "4bd02484-d2fd-5e0d-86d2-9efd06be421a", "text": "\u4e00\u4e2a\u7537\u5b69\u88ab\u4ed6\u7684\u670b\u53cb\u4eec\u5632\u7b11\u3002"} +{"id": "7004600", "video_name": "d93e4d8b-d5fa-5dc2-8830-fbcc15366c28", "text": "\u7f8e\u4e3d\u7684\u5c71\u5ddd\u6cb3\u6d41\u3002AIVATAR\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "3003260", "video_name": "25d64ea1-1236-59f0-bffa-7f06f523f0b3", "text": "\u4e00\u90e8\u5177\u6709\u9ad8\u6e05\u753b\u8d28\u7684\u73b0\u5b9e\u7ec6\u8282\u89c6\u9891\uff0c\u5c55\u73b0\u57ce\u5e02\u7740\u706b\u5e76\u71c3\u70e7\u7740\u84dd\u8272\u706b\u7130\u3002"} +{"id": "4004084", "video_name": "d18d2b44-8743-56d0-964f-948f5d4c0958", "text": "\u73ed\u6bd4\u5728\u4f18\u80dc\u7f8e\u5730\u516c\u56ed\u6563\u6b65\u65f6\uff0c\u53d1\u73b0\u4e86\u4e00\u4e2a\u6d1e\u7a74\u3002"} +{"id": "2007055", "video_name": "3bbe5e31-9a35-50d1-bb25-5e36ea0f9243", "text": "\u5154\u5b50\u5f00\u8f66\u7a7f\u8d8a\u66fc\u54c8\u987f\u4e2d\u57ce\u3002"} +{"id": "4003211", "video_name": "1b79ae8f-dd83-5c3a-82e6-e36aafcefccf", "text": "\u4e00\u90e8iPhone\u957f\u51fa\u80f3\u818a\u548c\u817f\uff0c\u8d70\u4e0b\u684c\u5b50\uff0c\u53bb\u624b\u673a\u5e97\u4e0a\u73ed\u4e86\u3002"} +{"id": "3004160", "video_name": "86f51a4e-4a68-585e-b3c2-a4639a61903e", "text": "\u5deb\u5e08\u5728\u4e2d\u4e16\u7eaa\u7684\u8857\u9053\u4e0a\u5bf9\u72fc\u65bd\u6cd5\uff0c\u4ee53D\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4002815", "video_name": "a7e8ca10-2332-5bdc-acf3-e61c8ed40233", "text": "\u9a6c\u514b\u897f\u739b\u5c1d\u5230\u4e86\u5728\u5929\u7a7a\u4e0b\u88ab\u957f\u65f6\u95f4\u5265\u593a\u7684\u751c\u871c\u81ea\u7531\u3002"} +{"id": "2006613", "video_name": "9ea7f0e7-585a-56d2-914d-8491d1f2b43c", "text": "\u5728\u84dd\u8272\u7684\u4e91\u5c42\u4e2d\uff0c\u5fc3\u810f\u7206\u70b8\u4e86\u3002 \n\nSource sentence: The sun slowly rises above the horizon, painting the sky with vibrant colors. \n\n\u592a\u9633\u6162"} +{"id": "0006110", "video_name": "26c379a4-c719-5fbe-8ac9-0e82da4ae857", "text": "\u7528\u7eff\u8272\u80cc\u666f\u5236\u4f5c\u4e00\u5f20\u56fe\u7247\uff0c\u5728\u524d\u9762\u5199\u4e0a\u4ee5\u4e0b\u4fe1\u606f\uff1a"} +{"id": "0006963", "video_name": "35ece90b-9e00-5668-93d5-0ac805bc89a2", "text": "\u8fd0\u52a8\u5458\u5728\u8d8a\u5357\u80e1\u5fd7\u660e\u5e02\u4eab\u7528\u51b0\u6dc7\u6dcb\uff0c\u9ec4\u660f\u65f6\u5206\uff0c4K\uff0c\u80f6\u7247\u76f8\u673a\uff0c\u67ef\u8fbePortra\u3002"} +{"id": "4003229", "video_name": "4fd6ed7c-875c-5cd7-86b7-24367814d5ea", "text": "\u5236\u4f5c\u4e00\u6bb5\u7c89\u8272\u8c79\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u7684\u89c6\u9891\u7247\u6bb5\u3002"} +{"id": "0004942", "video_name": "11f8bc27-6b93-5048-80e1-f225a5b75b45", "text": "\u8fd9\u8bdd\u662f\u8bf4\u8fd9\u4e2a\u8001\u88c1\u7f1d\u662f\u8f6c\u8f6e\u3002"} +{"id": "2004238", "video_name": "d646c797-ac61-56b8-8f2f-5fdf63c2ecd2", "text": "\u6e05\u6670\u5bf9\u7126\uff0c\u9ad8\u5ea6\u7ec6\u8282\uff0c\u91ca\u8fe6\u725f\u5c3c\u5750\u7985\uff0c4K\uff0cHDR\u3002"} +{"id": "5001274", "video_name": "88002720-6513-5af7-b85d-e9205c5a742c", "text": "\u6253\u5f00\u793c\u76d2\uff0c\u91cc\u9762\u6709\u4e50\u5668\u548c\u4e50\u8c31\u3002"} +{"id": "1003672", "video_name": "43a0f928-5859-553f-b6bc-c77ef99fc7c3", "text": "\u4e00\u8f86\u6c7d\u8f66\u9ad8\u901f\u9a76\u8fc7\u8f66\u9053"} +{"id": "8003554", "video_name": "17fc2c6e-f1d8-5c88-9171-6393b96c0c66", "text": "\u7537\u4eba\u5750\u5728\u6c99\u6f20\u4e2d\u7684\u7889\u5821\u91cc\u3002"} +{"id": "0006260", "video_name": "299057d7-4d17-52ff-ad61-9e7e14901eba", "text": "\u4fe1\u606f\uff1a\u8fd9\u662f\u4e00\u4e2a\u4ecb\u4e8e\u7a7a\u95f4\u4e4b\u95f4\u7684\u8d70\u5eca\uff0c\u8ba9\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u611f\u5230\u4e0d\u5b89\u3001\u5947\u602a\uff0c\u5145\u6ee1\u8d85\u73b0\u5b9e\u4e3b\u4e49\u548c"} +{"id": "0003466", "video_name": "3e0d773d-185d-5288-8312-78067df84495", "text": "\u5973\u4eba\u7a7f\u7740\u4e0d\u900f\u660e\u7684\u767d\u8272\u98d8\u9038\u957f\u888d\uff0c\u5728\u788e\u73bb\u7483\u7247\u4e0a\u8d70\u8def\u3002\u66b4\u96e8\u822c\u7684\u6df1\u7ea2\u8272\u96e8\u70b9"} +{"id": "2007590", "video_name": "b6633321-5265-5778-bb7d-30f1b1512b90", "text": "\u8774\u8776\u51fa\u73b0\u4e86\uff0c\u4f46\u662f\u5b83\u7684\u8eab\u4f53\u80bf\u80c0\u4e86\uff0c\u7fc5\u8180\u4e5f\u5e72\u7f29\u4e86\u3002\u5b83\u51e0\u4e4e\u4e0d\u80fd\u52a8\u3002"} +{"id": "3004441", "video_name": "3c61b704-d05e-5400-8d5c-c840ffa116c4", "text": "translation: \u4e24\u4e2a\u4eba\u5728\u804a\u5929\uff0c\u5439\u98ce\uff0c8K"} +{"id": "5001198", "video_name": "2827b120-f9a9-5355-acf3-6dd66504e0c3", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u5b87\u5b99\u98de\u8239\u4e0a\u7528\u6fc0\u5149\u67aa\u5411\u5916\u661f\u4eba\u5c04\u51fb\u3002"} +{"id": "0003319", "video_name": "3b8e9292-53ca-58a7-8d1f-0276e7e13b80", "text": "\u5de6\u8fb9\u7537\u5b50\u7684\u5934\u53d1\u5377\u66f2\uff0c\u968f\u7740\u5fae\u98ce\u7f13\u7f13\u6446\u52a8\uff0c\u5564\u9152\u676f\u53d1\u51fa\u53ee\u5f53\u58f0\uff0c\u4ed6\u7684\u624b\u5e76\u672a\u52a8\u3002"} +{"id": "7002650", "video_name": "97c95878-c50e-5cb3-8d0d-ace93f751b8b", "text": "\u5236\u4f5c\u4e00\u4e2a\u539f\u5b50\u5f39\u7206\u70b8\u7684\u89c6\u9891\u3002\u89c6\u9891\u5e94\u8be5\u4ee5\u6c99\u6f20\u666f\u89c2\u7684\u955c\u5934\u5f00\u59cb\u3002\u8fdc\u5904\u5e94\u8be5\u6709\u4e00\u4e2a\u5c0f\u9547\u3002\u592a\u9633\u5e94\u8be5\u6b63\u5728"} +{"id": "1004069", "video_name": "4b7abbe1-28d5-5f91-9d6d-b1acbdf77f12", "text": "\u65e5\u5b50\u53d8\u6210\u4e86\u51e0\u5468\uff0c\u7537\u5b69\u628a\u65f6\u95f4\u90fd\u7528\u6765\u7167\u987e\u53d7\u4f24\u7684\u9e1f\u3002"} +{"id": "3006858", "video_name": "947ef562-ef6e-5b74-ae26-36a2556a4399", "text": "\u5728\u521b\u610f\u7684\u5e7f\u9614\u9886\u57df\u4e2d\uff0c\u51fa\u73b0\u4e86\u4e00\u80a1\u65b0\u7684\u529b\u91cf\u2014\u2014\u4eba\u5de5\u667a\u80fd\u548c\u5e73\u9762\u8bbe\u8ba1\u7684\u534f\u540c\u4f5c\u7528\u3002"} +{"id": "1006053", "video_name": "6f237749-73c3-5385-a8e3-077b9df94a67", "text": "\u661f\u7403\u5927\u6218\u98ce\u683c\u7684\u590d\u6742\u6218\u6597\u592a\u7a7a\u8239\u505c\u5728\u5854\u56fe\u56e0\u661f\u7403\u7684\u673a\u573a\uff0c\u5915\u9633\u4e0b\uff0c\u591a\u4e91\u5929\u6c14\uff0c\u8272\u5f69"} +{"id": "3005380", "video_name": "122984b4-6dcf-55af-b774-dbfea1f4057d", "text": "\u4e24\u4e2a\u7cbe\u7075\u5728\u4e00\u4e2a\u795e\u79d8\u7684\u884c\u661f\u4e0a\u62bd\u96ea\u8304\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "6003739", "video_name": "e699611d-f237-52db-9edf-c597d4d20f8f", "text": "\u4ee5\u4e0b\u662f\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5728\u76f4\u5347\u673a\u4e0a\u753b\u4e00\u4e2a\u4eba\uff0c\u4ece\u4e0b\u65b9\u7528\u5e7f\u64ad\u6444\u50cf\u673a\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "7004213", "video_name": "5b9f88f1-9f18-513c-a210-b52581d6af6b", "text": "1948\u5e74\u5df4\u52d2\u65af\u5766\u4eba\u7684\u6d41\u79bb\u5931\u6240\u5bf9\u5df4\u52d2\u65af\u5766\u548c\u4ee5\u8272\u5217\u4eba\u7684\u96c6\u4f53\u8bb0\u5fc6\u548c\u8eab\u4efd\u8ba4\u540c\u4ea7\u751f\u4e86\u6df1\u8fdc"} +{"id": "1006141", "video_name": "7083de87-e130-54d2-a2c5-7897329e54f2", "text": "\u5728\u4e00\u4e2a\u5e7f\u9614\u3001\u4e30\u5bcc\u591a\u5f69\u7684\u4e1b\u6797\u91cc\uff0c\u4f4f\u7740\u4e94\u4e2a\u622a\u7136\u4e0d\u540c\u4f46\u7d27\u5bc6\u76f8\u8fde\u7684\u670b\u53cb\uff1a\u72ee\u5b50\u96f7\u6b27\u3001"} +{"id": "4003706", "video_name": "873a335c-b781-52ad-a9c9-64c311447da8", "text": "\u56e0\u7ebd\u7279\u8d85\u7ea7\u82f1\u96c4\u4e01\u4e01\u98ce\u683c\u7684\u5361\u901a\u3002"} +{"id": "7003054", "video_name": "71202f6c-cd30-5659-b412-7cd99afa13e7", "text": "\u90ca\u533a\u9a9a\u4e71\uff0c\u66b4\u6c11\u66b4\u529b\uff0c\u5efa\u7b51\u7269\u7206\u70b8\uff0c\u90ca\u533a\uff0c\u72c2\u4e71\u7684\u884c\u52a8\u3002"} +{"id": "0006027", "video_name": "25449a24-f786-50da-87d2-49d01d1889a8", "text": "\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\u7684\u5f69\u8272\u897f\u90e8\u4e27\u5c38\u7535\u5f71\u5f00\u573a\uff0c\u6807\u9898\u4e3a\u201c\u5c18\u571f\u98de\u626c\u7684\u94c1\u9a91\u201d\u3002"} +{"id": "8003268", "video_name": "e40698e6-d824-5021-8aab-7246b3875b68", "text": "\u4e00\u4e2a25\u5c81\u7684\u7537\u5b50\uff0c\u6709\u7740\u5e73\u5934\u53d1\u578b\u3001\u7ea2\u886c\u886b\u548c\u7eff\u88e4\u5b50\uff0c\u770b\u7740\u4e00\u8258\u98de\u8239\u5728\u7a7a\u4e2d\u7ecf\u8fc7\u3002"} +{"id": "7002753", "video_name": "2ff877f5-15c6-5391-9915-d1e87ae8d0f9", "text": "\u8001\u5f71\u50cf\u4e2d\uff0c\u7f8e\u4e3d\u7684\u5929\u4f7f\u548c\u52c7\u6562\u7684\u9a91\u58eb\u7a7f\u8fc7\u6cbc\u6cfd\uff0c\u770b\u89c1\u4eba\u4eec\u5728\u6c34\u4e2d\u8df3\u821e\u3002"} +{"id": "3003969", "video_name": "b9a3c81e-2422-52c8-946f-a3a2bdcd2605", "text": "\u73b0\u5b9e\u7684\u773c\u955c\u86c7\uff0c\u6444\u50cf\u5934\u53d8\u7126\u8fdb\u5165\u773c\u955c\u86c7\u3002"} +{"id": "7003795", "video_name": "efb9e57c-ad95-5f38-b1b7-a38a41556c42", "text": "\u5de8\u77f3\u9635\uff0c\u6211\u4eec\u5728\u77f3\u5934\u4e4b\u95f4\u98de\u884c\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "6003738", "video_name": "f9602879-378e-5b7c-8a38-e9dfdbf8d8c0", "text": "\u4e00\u7247\u6d0b\u7518\u83ca\u7684\u7530\u91ce\uff0c\u6709\u7740\u9ec4\u8272\u7684\u96cf\u83ca\uff0c\u4e00\u53ea\u74e2\u866b\u5728\u82b1\u4e1b\u4e2d\u722c\u884c\uff0c\u5b8c\u5168\u7684\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "2007220", "video_name": "63412b4a-9d54-5b20-8c41-99cff23a24aa", "text": "\u56fd\u738b\u963f\u5c14\u5f17\u96f7\u5fb7\u5927\u5e1d\u5750\u5728\u97e6\u585e\u514b\u65af\u738b\u4f4d\u4e0a\u3002"} +{"id": "0006827", "video_name": "33b870c1-8281-5f84-a5fa-e759b7f98bf9", "text": "\u521b\u9020\u51fa\u4e00\u4e2a\u771f\u5b9e\u7684\u81ea\u7136\u89c6\u9891\uff0c4K\uff0c\u5168\u9ad8\u6e05\uff0c\u903c\u771f\u3002"} +{"id": "0006111", "video_name": "26c705d4-1e06-5c1b-9795-031e1f16a8c9", "text": "Chinese translation: \u9ec4\u8272\u7684\u6b8b\u6708\u5728\u591c\u7a7a\u4e2d\u53d1\u51fa\u5149\u8292"} +{"id": "3006126", "video_name": "37ad1380-8527-5792-8602-088072cb2f0e", "text": "\u5728\u591c\u665a\u7684\u5b81\u9759\u4e2d\uff0c\u6211\u641c\u7d22\u7740\u5929\u4e0a\u7684\u661f\u661f\uff0c\u6c89\u6d78\u5728\u81ea\u5df1\u7684\u601d\u8003\u4e2d\uff0c\u5bfb\u627e\u5b81\u9759\uff0c\u5bfb\u627e\u7231\u60c5\u3002\n\n"} +{"id": "8003416", "video_name": "f774ef2e-76a5-58df-bb18-6277ad174268", "text": "2023\u5e74\u65f6\u5c1a\u4e13\u4e1a\u53d1\u578b\u5e08\u7684\u524d30\u79cd\u6f6e\u6d41\u88c5\u5907\u601d\u8def\u3002"} +{"id": "0004609", "video_name": "0be20016-4c6a-56f3-8f6c-a3c2651e5717", "text": "\u5c06\u90a3\u53ea\u9e1f\u66ff\u6362\u4e3a\u7070\u718a\u3002\u8ba9\u672a\u77e5\u4eba\u7269\u7ad9\u5728\u718a\u65c1\u8fb9\u3002\u6709\u5f88\u5927\u7684\u98ce\uff0c\u4f1a\u8ba9\u718a\u7684\u6bdb"} +{"id": "1006388", "video_name": "74d2a3f4-9b49-5642-b0d7-4d73dd204676", "text": "\u76ae\u5361\u5b9e\u9a8c\u5ba4\u7684\u4eba\u5de5\u667a\u80fd\u5de5\u5177\u51fa\u73b0\u4e86\u3002"} +{"id": "1003032", "video_name": "37a1a3c2-95f2-5a46-8cb5-9b3abd6f559c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u5b50\u8d70\u5728\u8def\u4e0a\uff0c\u88ab\u7537\u6027\u65c1\u89c2\u8005\u6240\u4ef0\u6155\u3002"} +{"id": "6003754", "video_name": "fd3449c8-a3d9-5a43-919a-adbd335da681", "text": "\u4e00\u4e2a\u751f\u65e5\u89c6\u9891\uff0c\u4e3a\u6211\u7684\u5973\u513f\u963f\u739b\u5229\u4e9a\u5236\u4f5c\uff0c\u7528\u5b89\u8fea\u00b7\u6c83\u970d\u98ce\u683c\u7684\u6cf0\u8fea\u718a\u52a8\u753b\u8868\u8fbe\u6211\u7231\u4f60\u3002"} +{"id": "3004214", "video_name": "ab42a73e-6dbe-536f-88ad-42a4aa209271", "text": "\u4e00\u53ea\u732b\u5403\u51b0\u6dc7\u6dcb\u7684\u89c6\u9891\u653e\u5927\u4e86\u3002 \n\nSource sentence: The bookshelf in the corner of the room is full of old novels and poetry collections. \n\n\u623f\u95f4\u89d2\u843d\u7684\u4e66"} +{"id": "2005913", "video_name": "66c87176-cde0-5af0-8a9b-30cb5873bb1e", "text": "\u57ce\u5e02\u4e2d\u4ea4\u901a\u7e41\u5fd9\u7684\u6c7d\u8f66\uff0c\u706f\u5149\u6548\u679c\u3002"} +{"id": "3003116", "video_name": "aee1492a-8255-5f02-8e97-c4a5a904a8a0", "text": "\u8349\u8393\u718a\uff0c\u7c89\u8272\u7cd6\u679c\uff0c\u53ef\u7231\u3002\u5e7b\u60f3\uff0c\u5361\u901a\u3002"} +{"id": "5001002", "video_name": "35e1abfb-9a78-5e51-9350-1b7ba169017e", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u4ece\u8239\u4e0a\u8bb0\u5f55\u7684\u89c6\u9891\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004195", "video_name": "c70f4b60-b089-56d5-976a-c8bcfafca066", "text": "\u5728\u52a8\u7269\u56ed\u5236\u4f5c\u89c6\u9891\u7ed9\u8bb8\u591a\u52a8\u7269\u770b\u3002"} +{"id": "8001713", "video_name": "819975ef-e5a5-5fbf-8f6e-4bab3450b899", "text": "\u5728\u6d77\u6ee9\u4e0a\u5199\u5728\u6c99\u5b50\u4e0a\u7684\u5355\u8bcd\uff0c\u6ce2\u6d6a\u4e0d\u505c\u5730\u6d8c\u8fdb\u6d8c\u51fa\u3002\u4fe1\u606f\uff1aPALAST\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4003592", "video_name": "826a5768-bf0c-57d5-9873-9868b7d82b26", "text": "\u751f\u6d3b\u5728\u8302\u5bc6\u68ee\u6797\u4e2d\u7684\u6b22\u5feb\u677e\u9f20\u3002"} +{"id": "8001249", "video_name": "3460d47d-f979-57a6-aa5d-edf8fb152d04", "text": "\u5973\u5b69\u7684\u672c\u6027\n\u8baf\u606f\uff1a\u65b0\u5973\u5b69 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "3003319", "video_name": "021fcedf-d9d9-5805-ba88-dac3d4d47b21", "text": "\u539f\u53e5\uff1agenshin impact \u4fe1\u606f\uff1arenzo \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\n\n\u539f\u53e5\uff1aPlease only output the translation, do not include the original sentence and any other prefixs. \n\u7ffb\u8bd1\uff1a\u8bf7"} +{"id": "2007532", "video_name": "91edbcde-c03e-5503-add9-cd65676998d4", "text": "\u8bbe\u8ba1\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u73b0\u6770\u514b\u548c\u5409\u5c14\u5728\u4e00\u8d77\u6b22\u7b11\u7740\u91cd\u65b0\u8d70\u4e0a\u5c71\u9876\u7684\u573a\u666f\uff0c\u7a81\u51fa\u4ed6\u4eec\u7684\u4f19\u4f34\u5173\u7cfb\u3002"} +{"id": "2006331", "video_name": "ff61b91c-ea2d-57eb-8e35-5028370b44b0", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u6bd4\u8d5b\u7ed3\u675f\u524d30\u79d2\u5f97\u5206\u7684\u89c6\u9891"} +{"id": "5001593", "video_name": "7ba4e4e6-db17-58cf-9951-c709e34f1b10", "text": "\u751f\u6210\u4e00\u573a\u6c99\u753b\u98ce\u683c\u7684\u6218\u6597\u573a\u9762\u3002"} +{"id": "8003143", "video_name": "119fbbd2-5f1e-5132-b2b3-1a597bf54c34", "text": "\u65f6\u95f4\u623f\u50cf\u300a\u9f99\u73e0Z\u300b\u52a8\u753b\u3002"} +{"id": "5001312", "video_name": "3288a84b-6cdb-5e2f-8a9c-1051385343f8", "text": "\u795e\u79d8\u7684\u6811\u6240\u5728\u7684\u795e\u5723\u51ac\u5b63\u82b1\u56ed"} +{"id": "0005455", "video_name": "1b085d36-2532-52e6-88d8-119a3914d72a", "text": "\u51ac\u5b63\u8df3\u821e\u7684\u5b69\u5b50\u4eec\u5728\u591a\u5f69\u7684\u98ce\u96ea\u4e2d\uff0c\u9762\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u95ea\u5149\u706f\u6548\u679c\uff0c"} +{"id": "0006472", "video_name": "2d187009-f479-5ac0-b6dc-72c9e464d78f", "text": "\u4e00\u4f4d\u4f18\u7f8e\u7684\u4ed9\u5973\uff0c\u62e5\u6709\u95ea\u70c1\u7684\u84dd\u8272\u7fc5\u8180\u548c\u7531\u82b1\u74e3\u548c\u53f6\u5b50\u7f16\u5236\u7684\u88d9\u5b50\uff0c\u5fae\u7b11\u7740\u7ad9"} +{"id": "3006098", "video_name": "13284fdd-f446-523f-a6ec-cefb6a2542b0", "text": "Leo\u548c\u4ed6\u6700\u597d\u7684\u670b\u53cb\u8389\u8389\uff0c\u4e00\u53ea\u6d3b\u6cfc\u7684\u6bcd\u72ee\u4e00\u8d77\u8e0f\u4e0a\u65c5\u7a0b\uff0c\u79bb\u5f00\u4e86\u719f\u6089\u7684\u4e1b"} +{"id": "3006613", "video_name": "2d25e201-374f-58c6-a7d1-1dd2bc676cc3", "text": "\u4e94\u6708\u4efd\u4e00\u4e2a\u4e8c\u5341\u591a\u5c81\u7537\u5b50\u5f00\u8f66\uff0c\u5e26\u7740\u4e00\u4e2a\u4e94\u5341\u591a\u5c81\u7684\u5973\u4eba\uff0c\u62cd\u4e0b\u4e86\u89c6\u9891\u3002"} +{"id": "2005321", "video_name": "70163169-286a-55d2-94a3-08285926f6be", "text": "\u4e00\u6bb512\u79d2\u7684\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4ef6\u624b\u5de5\u9676\u74f7\u82b1\u74f6\uff0c\u74f7\u9762\u7ed8\u5236\u4e86\u7cbe\u7f8e\u7684\u82b1\u5349\u56fe\u6848\uff0c\u5e76\u7ecf\u8fc7\u7cbe\u5fc3\u7684"} +{"id": "5001992", "video_name": "0e86e8ba-d98a-5842-85a6-bb110cac680c", "text": "\u8fd9\u4e2a\u89d2\u8272\u76f4\u89c6\u524d\u65b9\uff0c\u540c\u65f6\u5e73\u9759\u5730\u6162\u6162\u7728\u773c\uff0c\u624b\u638c\u7d27\u63e1\uff0c\u7ee7\u7eed\u7f13\u6162\u5730\u6ce8\u89c6\u7740\u5e76\u7728"} +{"id": "8002605", "video_name": "dae242bd-fd6d-5325-a822-eca08a4d82eb", "text": "\u6d77\u8fb9\u666f\u8272\u5f88\u7f8e\uff0c\u6709\u5915\u9633\u7684\u4f59\u6656\u548c\u8f7b\u67d4\u7684\u5fae\u98ce\u5439\u52a8\u7740\u8857\u8fb9\u7684\u6a31\u82b1\u6811\u53f6\u5b50\u3002\u6d77\u91cc\u6709"} +{"id": "3003840", "video_name": "6e8fb224-705c-5c5c-b52d-7e5892b7ddbb", "text": "\u4e00\u4e2a\u5927\u6d6a\u5728\u65e5\u843d\u65f6\u649e\u51fb\u7740\u4e00\u5757\u5ca9\u77f3\u3002"} +{"id": "4004493", "video_name": "56baf37e-b048-5329-909d-74200c359752", "text": "\u7528\u63cf\u7ed8\u52a8\u6001\u4eba\u7c7b\u4e0e\u52a8\u7269\u548c\u8c10\u5171\u751f\u7684\u65b9\u5f0f\u6765\u5b8c\u6210\u5f62\u8c61\u3002\u5c55\u793a\u4ee3\u8868\u8fc7\u53bb\u3001\u73b0\u5728\u548c\u672a\u6765\u7684\u52a8\u753b\u89d2\u8272\uff0c\u8c61\u5f81\u77403D\u52a8"} +{"id": "1006301", "video_name": "735c8ec7-a131-5149-8e1b-803f31104e2d", "text": "\u6bd4\u57fa\u5c3c\u7f8e\u5973\uff0c\u80f8\u56f490\uff0c\u8170\u56f460\uff0c\u81c0\u56f490\u3002"} +{"id": "1005817", "video_name": "6ae5bc54-b7d6-54ab-93c3-6f7903f5ad27", "text": "NM Amusement\u7535\u73a9\u6e38\u620f\u673a\u80cc\u666f\u4ecb\u7ecdYouTube\u9891\u9053\u6807\u9898\u8bcd"} +{"id": "0004616", "video_name": "0bfd4573-b895-5b9b-b2e2-6047a2b8d91b", "text": "\u4e00\u5219\u5c0f\u6545\u4e8b\u3002\u7b2c\u4e00\u5e55\uff1a\u9e1f\u649e\u7a97\u800c\u4ea1\u3002\u7b2c\u4e8c\u5e55\uff1a\u4eba\u5728\u7a97\u6237\u4e0a\u8d34\u4e86\u4e00\u4e2a\u8d34\u7eb8\u3002\u7b2c\u4e09\u5e55\uff1a\u548c\u7b2c"} +{"id": "3003630", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u5728\u4ed6\u7684\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u4ed6\u88ab\u8ff7\u4f4f\u4e86\uff0c\u558a\u9053\uff1a\u201c4K\u201d\u3002"} +{"id": "1005947", "video_name": "6d3decae-a80e-5b92-b3ec-50cd43028468", "text": "\u9752\u5c11\u5e74\u5728\u623f\u95f4\u91cc\u5750\u7740\u770b\u4e66\uff0c\u80cc\u666f\u662f\u7a97\u6237\u548c\u5e8a\u3002"} +{"id": "0005515", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "\u8ba9\u8fd9\u4e2a\u4eba\u8bf4\u8bdd\uff0c\u6162\u6162\u5730\u6447\u5934\u3002"} +{"id": "7003422", "video_name": "c84865db-8f54-5e16-be88-a783a2af64bb", "text": "\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u8fb9\u4e0a\uff0c\u5b55\u5987\u53ef\u4ee5\u5728\u666e\u62c9\u63d0\u7403\u4e0a\u953b\u70bc\u3002"} +{"id": "0004281", "video_name": "06517249-9af6-5d9e-996c-0baa24c98017", "text": "\u5728\u4e1c\u4eac\u8857\u4e0a\u6f2b\u6b65\u7684\u89c6\u89d2\uff1b\u8fd0\u52a84"} +{"id": "2007189", "video_name": "e80cdb39-0580-54e6-b282-54751bac04e1", "text": "\u5f88\u591a\u6765\u81ea\u4e0d\u540c\u8fd0\u52a8\u7684\u4eba\u7ad9\u5728\u4f53\u80b2\u573a\u3002"} +{"id": "2003132", "video_name": "028c7524-94f2-51d8-8bd5-34fc222abbe8", "text": "\u4eff\u7eaa\u5f55\u7247\u91c7\u8bbf\u79d1\u5b66\u602a\u4eba\uff0c1980\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u98ce\u683c\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "4004778", "video_name": "8205ac3b-129f-5b52-8103-26248cc58f88", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u767d\u8272\u6587\u5b57\uff0cX\u7684\u5f62\u72b6\u5e72\u51c0\u4e14\u5177\u6709\u672a\u6765\u611f\u3002"} +{"id": "6002939", "video_name": "deb0f8b6-bb5f-511d-ba4c-65455189dd47", "text": "\u80e1\u987b\u7537\u5b50\u5199\u5b9e\u7ed8\u753b\u8272\u5f69\u706f\u5149v3 8k\u5199\u5b9e\u3002"} +{"id": "6004781", "video_name": "faaa11d2-704f-57fb-a5fd-00edfe0b42f4", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u80cc\u666f\u662f\u5b87\u5b99\u7684\u661f\u7403\u524d\u51a5\u60f3\u3002"} +{"id": "8002453", "video_name": "9adac29e-ff39-584d-b772-6855f826b028", "text": "\u4e00\u89c1\u949f\u60c5\n\u739b\u4e3d\u4e9a\u5e26\u7740\u5bb3\u7f9e\u7684\u5fae\u7b11\u77a5\u4e86\u5362\u5361\u4e00\u773c\uff0c\u4ed6\u6ce8\u610f\u5230\u4e86\u5979\u3002\n\u4ed6\u4eec\u4ea4\u6362\u4e86\u51e0\u6b21"} +{"id": "4004186", "video_name": "1b56cb81-db84-535f-a841-ddd81ee40db3", "text": "\u8349\u5730\u4e0a\u7684\u5251\u7684\u56fe\u50cf"} +{"id": "5001135", "video_name": "91934d06-1cc0-5c97-9f38-7daf72c4dea8", "text": "\u4e00\u6b21\u672a\u6765\u4e4b\u65c5\u5c06\u4ed6\u4eec\u5e26\u5230\u4e86\u4e00\u4e2a\u673a\u5668\u4eba\u7aef\u8336\u7684\u4e16\u754c\u3002"} +{"id": "0006746", "video_name": "3232fafc-0d95-51ac-8050-6d7f1d7d48b7", "text": "\u56de\u5934\u770b\uff0c\u7728\u773c\u95f4\u3002\u9644\u4ef61\u3002"} +{"id": "8002018", "video_name": "46e7e377-ed1c-59ef-b051-52f55752366b", "text": "\u751f\u6210\u4e00\u4e2a\u975e\u6d32\u5e02\u573a\u76843D\u4f4e\u9762\u6a21\u578b\u573a\u666f\uff0c\u5468\u56f4\u6709\u5b69\u5b50\u5728\u8e22\u8db3\u7403\u3002"} +{"id": "2003027", "video_name": "197ff85c-3873-5097-a4ef-2a47f6ba552e", "text": "\u4e00\u6863\u6bcf\u65e5\u7535\u89c6\u65b0\u95fb\u8282\u76ee\uff0c\u6709\u5973\u6027\u4e3b\u6301\u4eba\u3002"} +{"id": "6002778", "video_name": "0ca8763d-1211-5e47-8c4c-002c79b46bae", "text": "\u6f02\u4eae\u7684\u68a8\u5f62\u8eab\u6750\u5973\u6027\u52a8\u6f2b\u3002"} +{"id": "2005837", "video_name": "6e573007-0812-5c48-9c3a-10d7d2b9c7bd", "text": "\u7a7f\u767d\u88d9\u7684\u5973\u5b50\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u8d70\u3002"} +{"id": "5001172", "video_name": "d43a269f-cc86-57cb-9bcf-5ca49cbda61b", "text": "\u6c49\u5821\u5728\u81ea\u8f6c\u548c\u5192\u7740\u84b8\u6c7d\u3002"} +{"id": "3003406", "video_name": "599ef95c-fdaf-5242-bf50-e7aa67a2c7d0", "text": "\u4e00\u53ea\u53ea\u6709\u4e00\u53ea\u624b\u7684\u5f92\u6b65\u8005\u8d70\u5f00\u4e86\u3002"} +{"id": "2005090", "video_name": "2dcf5937-1278-5239-9981-bc89cb6f885d", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u5929\u4f7f\u90a3\u91cc\u9003\u8d70\u4e86\u3002"} +{"id": "8003845", "video_name": "b65227b4-e39a-5a07-8ae9-7fd497a2b6a0", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u540d\u5b57\u4e3aNart\u7684\u6807\u5fd7\uff0c\u7eff\u8272\u7684\uff0c\u5e26\u6709\u9ed1\u8272\u548c\u7eff\u8272\u7684\u52a8\u753b\u80cc\u666f\u3002"} +{"id": "2003512", "video_name": "0a4deb34-6ab1-5839-844e-9341dec40f55", "text": "\u4ed6\u5750\u5728\u684c\u524d\uff0c\u624b\u6301\u7fbd\u6bdb\u7b14\uff0c\u70db\u5149\u6447\u66f3\uff0c\u573a\u666f\u903c\u771f\uff0c\u5982\u540c\u6307\u73af\u738b\u4e2d\u7684\u56e2\u7ed3\u4e4b\u65c5\uff0c\u5f71\u5b50"} +{"id": "2003299", "video_name": "6408f1c6-f62f-5b96-add1-920daa230aea", "text": "\u9b3c\u57ce\u5821\u5728\u6811\u6797\u4e2d\u7684\u5c71\u4e0a\u3002"} +{"id": "3004849", "video_name": "0ab97b7a-7b7a-5d2d-9c31-a939d79c1f21", "text": "\u58a8\u897f\u54e5\u7684\u91d1\u5b57\u5854 \u4fe1\u606f: 1\u4e2a\u9644\u4ef6"} +{"id": "7002228", "video_name": "228fad2c-293a-5fed-b5b1-2eea32a82c88", "text": "\u5929\u7a7a\u4e2d\u6709\u51e0\u6735\u767d\u4e91\u3002"} +{"id": "0005468", "video_name": "1b5422b0-8127-56ec-b128-d52ca0f63563", "text": "\u5728\u96fe\u8499\u8499\u7684\u591c\u665a\uff0c\u72fc\u4eba\u5728\u6708\u4eae\u4e0a\u65b9\u3002"} +{"id": "5001260", "video_name": "83f2c94f-fb47-5005-a8fc-03d4adccc420", "text": "\u6c34\u5728\u6d77\u5cb8\u5468\u56f4\u6d41\u52a8\uff0c\u4e91\u6735\u5728\u80cc\u666f\u4e2d\u4f18\u7f8e\u5730\u6f02\u6d6e\u3002"} +{"id": "8002401", "video_name": "64da82a5-fd42-52dd-b3df-08b8b2a74673", "text": "\u98ce\u5439\u52a8\u6811\u6728\uff0c\u8774\u8776\u98de\u821e\u3002"} +{"id": "3006264", "video_name": "019cd22e-770f-5455-88ea-4d06adfd9bc3", "text": "\u51b0\u7bb1\u91cc\u585e\u6ee1\u4e86\u98df\u7269\uff0c\u9999\u80a0\uff0c\u5976\u916a\uff0c\u9c7c\u5b50\u9171\u3002"} +{"id": "5001892", "video_name": "079644db-0a3d-598f-a5c5-02ef1dfb1cbc", "text": "\u8bf7\u5c06\u56fe\u50cf\u4fdd\u6301\u4e0d\u53d8\uff0c\u4f46\u6dfb\u52a0\u8fd9\u4e2a\u4eba\u4f7f\u7528\u624b\u52bf\u8bf4\u8bdd\u5e76\u6709\u65f6\u7728\u773c\u7684\u52a8\u753b\uff1b\u8ba9\u5b83\u957f\u8fbe15\u79d2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4003413", "video_name": "397d9cc2-b57e-5ca9-a231-11edec084914", "text": "\u7535\u5f71\u822c\u7684\u706f\u5149\uff1b\u7f8e\u4e3d\u7684\u5973\u5b69\uff1b\u4ece\u8fdc\u5904\u8dd1\u5230\u76f8\u673a\u524d\u9762\uff1b"} +{"id": "4004980", "video_name": "a67badfb-b742-5803-84bb-9d113f069054", "text": "\u4e1c\u7f57\u9a6c\u5e1d\u56fd\u7e41\u8363\u53d1\u5c55\uff0c\u800c\u897f\u65b9\u5219\u9010\u6e10\u8d70\u5411\u4e86\u5b83\u6700\u7ec8\u7684\u5d29\u6e83\u3002\u4f46\u5728\u5176\u4e8e476\u5e74\u88ab\u5165"} +{"id": "8003215", "video_name": "b67c0d59-9a74-5c1a-b965-db15b0a899bd", "text": "\u521b\u9020\u4e00\u4e2a\u88ab\u9634\u5f71\u906e\u76d6\u7684\u9762\u5b54\uff0c\u773c\u775b\u95ea\u70c1\u7740\u795e\u79d8\u7684\u5f3a\u70c8\u5149\u8292\u3002\u5728\u9762\u90e8\u8f6e\u5ed3"} +{"id": "6004008", "video_name": "a4750922-f8d8-577d-b519-0fcc3f78a0fa", "text": "\u900f\u660e\u80cc\u666f\u3002\u5b57\u6bcd\u7531\u5728\u5fae\u98ce\u4e2d\u98d8\u52a8\u7684\u7eba\u7ec7\u54c1\u5236\u6210\u3002\u4fe1\u606f\uff1a\u8bae\u7a0b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "1003568", "video_name": "41cd0a2f-4060-5069-9836-a11ca2e39697", "text": "\u5728\u821e\u53f0\u4e0a\u8df3\u821e\u7684\u5076\u50cf\uff0c\u4e00\u4e2a\u5ba2\u6237\u6325\u821e\u7740\u6d0b\u8f66\u524d\u82ab\u837d\u7c7d\u3002 \n\nSource sentence: The sun is setting over the mountains. \n\u592a\u9633"} +{"id": "0003018", "video_name": "35ac16f8-4522-5f18-8c8f-656f648a9ec8", "text": "\u5929\u7a7a\u4e2d\u6b63\u5728\u4e0b\u7740\u5927\u96ea\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u7a7a\u4e2d\u821e\u8e48\u3002"} +{"id": "3003141", "video_name": "78c45c9e-2992-53c9-b282-eaece38552e3", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u665a\u4e0a\uff0c\u591c\u7a7a\u5e03\u6ee1\u95ea\u95ea\u53d1\u5149\u7684\u661f\u661f\u3002\u753b\u98ce\u4e3a\u624b\u7ed8\u98ce\u683c\u3002\u4e00\u53ea\u718a\u732b\u5750\u5728"} +{"id": "1004490", "video_name": "533b5ad8-f144-5223-a8c8-2b9cd44d01a8", "text": "\u6b4c\u624b\u8001\u864e\u5728\u591c\u665a\u7684\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u4ee53D\u52a8\u753b\u5f62\u5f0f\u5c55\u73b0\u3002"} +{"id": "7002763", "video_name": "b9fd2eea-186c-57f2-a0eb-b485bd5843d4", "text": "\u4e00\u4e2a\u7a7f\u7740\u5546\u52a1\u5957\u88c5\u7684\u9ad8\u96c5\u82f1\u5f0fAI\u7ba1\u5bb6\u30028K\uff0c3D\u52a8\u753b\u98ce\u683c\u3002\u6df1\u7070\u8272\u80cc\u666f\u3002"} +{"id": "1003931", "video_name": "48928ea1-0ee0-5c9a-8541-ded9a8627e9c", "text": "\u8f66\u8f86\u5728\u8def\u4e0a\u649e\u8f66\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "4004665", "video_name": "b4c8d528-8967-5d44-820e-580c440d34c8", "text": "\u4e00\u53ea\u5916\u661f\u5c0f\u578b\u6bd4\u7279\u72ac\uff0c\u5e26\u7740\u53d1\u5149\u7684\u84dd\u773c\u775b\u5486\u54ee\u3002"} +{"id": "4002382", "video_name": "3f1c9fbe-5123-529d-99e3-307f6e9ff046", "text": "\u5728\u58a8\u897f\u54e5\u6c99\u6f20\u91cc\u51fa\u73b0\u4e86\u7ea2\u8272\u65e5\u51fa\u3002"} +{"id": "4004332", "video_name": "751672d0-60e7-5bee-9278-f9dbaddb8a15", "text": "\u8ba9\u89d2\u8272\u5fae\u7b11\u5e76\u8f6c\u5934\u3002"} +{"id": "7002101", "video_name": "90f7657e-54fd-578e-b6c9-7e87dedb0b3f", "text": "\u4e00\u7537\u4e00\u5973\u5728\u4e0a\u6d77\u4e00\u8d77\u8d70\u7740\uff0c\u6444\u50cf\u673a\u5728\u5979\u4eec\u8eab\u540e\uff0c\u7535\u5f71\u822c\u7684\u73b0\u5b9e\u5149\u7ebf\uff0c\u771f\u5b9e\u4e3b\u4e49\u3002"} +{"id": "0004444", "video_name": "092f2403-2bc8-5674-a7df-8775d1dd0a0f", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5154\u5b50\u9a91\u7740\u8fd0\u52a8\u6469\u6258\u8f66\u907f\u5f00\u8def\u4e0a\u7684\u8717\u725b\u3002"} +{"id": "4004216", "video_name": "8aa84037-b5d9-5d75-a6ec-5c70615b7094", "text": "\u4e00\u4e2a\u5996\u9b54\u5728\u8857\u4e0a\u8d70\uff0c\u52a8\u6f2b\u7167\u7247\u822c\u903c\u771f\u3002"} +{"id": "2004727", "video_name": "9fc6f9be-7765-5c86-9616-124a43bd80d5", "text": "\u4e00\u5bb6\u62e5\u6709\u5b89\u5168\u5de5\u4f5c\u73af\u5883\u7684\u96e8\u96ea\u516c\u53f8\u5de5\u5382\uff0c\u62e5\u6709\u5458\u5de5\u3002"} +{"id": "8003196", "video_name": "d1243ffc-bbdb-54d3-a83a-7b698452b344", "text": "1890\u5e74\u4ee3\uff0c\u8428\u65af\u594e\u5947\u548c\u4e00\u7fa4\u7537\u4eba\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "2006038", "video_name": "74731065-423e-5b57-ba9b-477f18c0ff07", "text": "\u590f\u5a01\u5937\u5496\u5561\u8c46\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u5e7f\u544a\u683c\u5f0f"} +{"id": "4002073", "video_name": "9c218eb8-8584-58eb-bd75-732e89ee63fb", "text": "\u7535\u5f71\u822c\u7684\u5f71\u50cf\uff0c\u5728\u4ed9\u5883\u4e2d\uff0c\u5929\u7a7a\u4e2d\u6709\u7f8e\u4e3d\u7684\u6ee1\u6708\uff0c\u6708\u5149\u7a7f\u8fc7\u6811\u53f6\uff0c\u524d\u666f\u6709\u7f8e\u4e3d\u7684\u82b1\u6735\u3002"} +{"id": "2007686", "video_name": "57ce6fd0-fec7-55dc-adff-5612895ab6af", "text": "\u4e00\u5ea7\u53e4\u8001\u7684\u5893\u5730\uff0c\u5893\u7891\u4e0a\u957f\u6ee1\u4e86\u82d4\u85d3\uff0c\u5893\u7a74\u91cc\u957f\u6ee1\u4e86\u6742\u8349\u3002"} +{"id": "2007514", "video_name": "efad5747-41ee-5345-9049-3bf01ac00acc", "text": "\u732b\u3002\u6d88\u606f\uff1aKlaj\u662f\u5c71\u7f8a\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004454", "video_name": "c5d287b7-a99e-56c3-b601-e7c64a8134da", "text": "\u7531\u6b64\u5f15\u8d77\u9888\u90e8\u795e\u7ecf\u548c\u7ec6\u80de\u4e25\u91cd\u53d7\u635f\uff0c\u9888\u9aa8\u4e5f\u88ab\u53d1\u73b0\u9aa8\u6298\u3002\u968f\u540e\u5bf9\u8fd9\u8d77\u6b7b\u4ea1\u4e8b\u4ef6"} +{"id": "6004914", "video_name": "4784670d-f538-5a05-822e-7c4270358170", "text": "\u9c7c\u513f\u6e38\u52a8\uff0c\u6d77\u6d6a\u7ffb\u6d8c\uff0c\u73ca\u745a\u548c\u6d77\u85fb\u6447\u66f3\uff0c\u5149\u7ebf\u7f13\u7f13\u6d41\u52a8\u3002"} +{"id": "4002726", "video_name": "98698b08-0612-57ff-9cc7-bedc97029a5c", "text": "\u52a8\u6f2b\u98ce\u683c\u5409\u535c\u529b\uff0c\u5c0f\u5c0f\u7684\u706b\u82b1\u5728\u6708\u5149\u4e0b\u4ece\u5929\u7a7a\u6d12\u843d\u5728\u57c3\u53ca\u57ce\u5e02\u4e0a\u3002"} +{"id": "4004551", "video_name": "ba7c8b67-c99d-5f31-8a4d-39842ab500f4", "text": "\u4e00\u4e2a\u901a\u8fc7\u8f9b\u52e4\u5de5\u4f5c\u548c\u8010\u5fc3\u83b7\u5f97\u6210\u529f\u7684\u4eba\u3002"} +{"id": "0004167", "video_name": "0463b136-7087-5bfa-aeef-7b16d0d0e7ce", "text": "\u6b27\u6d32\u6b4c\u5531\u5927\u8d5b\u4e3b\u821e\u53f0\u7684\u56fe\u7247\u3002\u6574\u4e2a\u753b\u9762\u5145\u6ee1\u4e86\u8bb8\u591a\u7ea2\u8272\u548c\u9ed1\u8272\u7684\u610f\u8c61\u3002\u6709\u5f88\u591a\u5f88\u591a\u7684\u7ea2"} +{"id": "2007236", "video_name": "29dfc63c-4cc8-5387-a796-cfadd1146476", "text": "\u673a\u5668\u4eba\u8759\u8760\u4fa0\u5728\u54e5\u8c2d\u57ce\u4e0e\u5f71\u5b50\u6218\u6597\uff0c\u5177\u6709\u7535\u5f71\u6548\u679c\uff0c4K\u3002"} +{"id": "8001246", "video_name": "1e67801a-5b31-50a3-857c-028d7522d9b4", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u6e05\u9192\u68a6\u4e2d\u51dd\u89c6\u7740\u68a6\u5883\u666f\u8272\u3002"} +{"id": "1004381", "video_name": "50ea2cce-8133-50d4-a6c8-78cb69f49a71", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u548c\u5979\u7684\u5973\u513f\u8eba\u5728\u6865\u65c1\u7684\u7b80\u964b\u5c0f\u5c4b\u91cc\u3002"} +{"id": "3005347", "video_name": "ab664fc4-202b-5513-b286-996cc31e6906", "text": "\u5458\u5de5\u5750\u5728\u684c\u524d\uff0c\u88ab\u7eb8\u5f20\u548c\u56fe\u8868\u6240\u5305\u56f4\u3002"} +{"id": "6002594", "video_name": "26c94d27-ee66-5ed0-b305-dbf61440b1ad", "text": "\u4e00\u4f4d\u6709\u4eba\u6027\u7684\u9996\u5e2d\u6267\u884c\u5b98"} +{"id": "6004571", "video_name": "890ff854-d3f2-5459-9d14-5b95b5b6c8b2", "text": "\u5f53\u65f6\u751a\u81f3\u6709\u4e00\u4e2a\u9e3d\u5b50\u7684\u4f8b\u5b50\uff0c\u901a\u8fc7\u4f20\u9012\u5fc5\u8981\u7684\u901a\u4fe1\u6765\u76f4\u63a5\u62ef\u6551\u751f\u547d\uff0c\u56e0\u4e3a\u6ca1\u6709\u5176\u4ed6\u65b9\u5f0f\u4f20\u9012\u6d88\u606f\u3002\u8fd9\u53ea\u540d\u53eb\""} +{"id": "8002689", "video_name": "f8ebe6b6-805f-5455-9967-97a07bdc0f38", "text": "\u65b0\u7684Fire AI\u89c6\u9891\uff0c\u9002\u7528\u4e8e\u52a8\u6f2b\u7248\u672c\u3002"} +{"id": "3005522", "video_name": "ce426175-85ce-5ba8-ae4f-7db497a24531", "text": "\u8089\u5757\u4e0a\u6709\u5f88\u591a\u756a\u8304\uff0c\u53ef\u4ee5\u5728\u4e09\u7ef4\u4e2d\u770b\u5230\u3002"} +{"id": "6002446", "video_name": "1b4ff86e-eb22-5f3d-b0c8-65cdd22f2243", "text": "\u8bf7\u8ba9\u4ed6\u4eec\u505a\u6df1\u8e72\uff0c\u89c6\u9891\u5e94\u8be5\u662f30\u79d2\uff0c\u81ea\u7136\u52a8\u4f5c\uff0c16:9\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2003656", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "\u52a8\u753b\u7247\uff0c\u4e00\u4e2a\u4e50\u961f\u5728\u9a6c\u63d0\u5c3c\u9152\u5427\u6f14\u594f\uff0c\u6444\u50cf\u5934\u7f29\u653e\uff0c\u52a8\u4f5c2"} +{"id": "1005365", "video_name": "629e2af6-50c7-5d84-a2e2-8651c6111eed", "text": "\u4e00\u53ea\u72d7\u5728\u68ee\u6797\u4e2d\u6551\u4e86\u4e00\u4e2a\u5c0f\u5973\u5b69\u3002"} +{"id": "4003337", "video_name": "3d3e0297-7a72-5ca7-b675-63acb26f8a96", "text": "\u5236\u4f5c\u5e26\u6709\u7537\u4eba\u7684\u4eba\u50cf\u7167\u7247\uff0c\u4f7f\u7528\u73af\u5f62\u53d8\u538b\u5668\u8fdb\u884c\u7f29\u653e\uff0c\u5448\u73b0\u7535\u5f71\u822c\u7684\u8857\u666f\u3001\u4e0b\u96e8\u548c\u9ed1\u6697\u7684\u6c1b\u56f4"} +{"id": "3005588", "video_name": "270e38ef-86b1-5924-adbf-897bd587fd90", "text": "\u4e00\u4f4d\u5973\u5b50\u5207\u5f00\u4e86\u4e00\u4e2a\u8702\u5de2\uff0c\u7136\u540e\u5c06\u68ee\u6797\u871c\u6ef4\u5165\u73bb\u7483\u676f\u4e2d\u3002"} +{"id": "1004557", "video_name": "5498d960-fbac-5975-b53d-93864db644ad", "text": "\u6454\u89d2\u8868\u6f14\u7684\u89c2\u4f17\u5728\u4f53\u80b2\u573a\u4e2d\u6b22\u547c\uff0c\u5c31\u50cf\u5361\u901a\u4e00\u6837\u3002"} +{"id": "3003572", "video_name": "306a0b08-cc83-59ef-b522-04973f076cb0", "text": "\u5236\u4f5c\u4e00\u6bb5\u5f15\u4eba\u5165\u80dc\u4e14\u4fe1\u606f\u91cf\u4e30\u5bcc\u7684\u89c6\u9891\uff0c\u5c55\u793a\u6124\u6012\u5bf9\u6211\u4eec\u8eab\u4f53\u7684\u5f71\u54cd\u3002\u63a2\u7d22\u80be\u4e0a\u817a\u7d20\u548c\u76ae\u8d28"} +{"id": "7002196", "video_name": "b17336f3-eebe-5bdf-91db-773a6aa90e82", "text": "\u4e00\u4f4d\u8ff7\u4eba\u7684\u5973\u4eba\u8eba\u5728\u5730\u4e0a\u3002\u4fe1\u606f\uff1a\u5728\u5730\u4e0a\u3002"} +{"id": "8002304", "video_name": "fc3cd7b0-68d7-56b1-9aac-837725963a11", "text": "\u4e00\u4f4d\u5b98\u5458\u7528\u6124\u6012\u7684\u8bed\u6c14\u6253\u7535\u8bdd\u7ed9\u8bdd\u52a1\u5458\u3002"} +{"id": "1006999", "video_name": "8010a0ad-f4a6-57d4-9f21-eaf0bee82988", "text": "\u6c99\u6f20\u4e2d\u5e26\u7740\u5c71\u7f8a\u5934\u9aa8\u7684\u5fb7\u9c81\u4f0a\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u9ed1\u767d\u6444\u5f71"} +{"id": "0003073", "video_name": "3679513f-5b50-5abd-a584-783de078d339", "text": "\u5728\u6469\u6d1b\u54e5\u5361\u8428\u5e03\u5170\u5361\u7684\u5c18\u571f\u98de\u626c\u7684\u8857\u9053\u4e0a\uff0c\u4f4f\u7740Adix\uff0c\u4e00\u4e2a\u70ed\u60c5\u7684\u91cd\u91d1\u5c5e\u4e50"} +{"id": "2006739", "video_name": "c50de4b3-bd3a-51c9-866e-b53ffa97fa91", "text": "\u4ece\u5979\u548c\u5979\u7684\u72d7\u5c45\u4f4f\u7684\u8ff7\u4eba\u5c0f\u9547\u7684\u7f8e\u666f\u5f00\u59cb\uff0c\u7a81\u51fa\u5176\u548c\u5e73\u4e0e\u548c\u8c10\u7684\u6c1b\u56f4\u3002"} +{"id": "3004814", "video_name": "c3e6f7a3-80c6-5d80-8eb6-88f043478713", "text": "\u4e00\u4f4d\u6027\u611f\u7684\u9ed1\u8272\u4e1d\u7ef8\u7f8e\u5973\u62cd\u4e86\u4e00\u5f20\u7167\u7247\u5e76\u5199\u4e86\u8fd9\u4e2a\u3002"} +{"id": "1005201", "video_name": "5fc68f60-3900-56c9-8e75-fa2003bef5e2", "text": "\u4e00\u4e2a\u51b0\u6dc7\u6dcb\u5e97\u7684\u63d2\u56fe\uff0c\u5c55\u793a\u4e86\u5404\u79cd\u5404\u6837\u7684\u51b0\u6dc7\u6dcb\u53e3\u5473\u3002\u6709\u5de7\u514b\u529b\u3001\u9999\u8349\u3001\u8349\u8393"} +{"id": "0003115", "video_name": "374ffa50-dbf6-5ed0-b02f-dd5bebe37053", "text": "\u5929\u7a7a\u4e2d\u7684\u9f99\u3002\u4fe1\u606f\uff1a\u963f\u5c14\u74e6\u7f57\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "1004608", "video_name": "55ca885a-9a33-5336-8a7d-9b354c80e40a", "text": "\u745e\u514b\u548c\u83ab\u848260fps\u6253\u6597\u573a\u666f\u3002\u6d41\u884c\u827a\u672f\u3002"} +{"id": "1005238", "video_name": "605a4432-6422-5737-9683-ccca6c81a0f2", "text": "\u7a7f\u7740\u8fd0\u52a8\u80cc\u5fc3 \u9644\u4ef61"} +{"id": "3006731", "video_name": "80b22da5-9c85-55b4-8008-45883f95d49b", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u5154\u5b50\u53cb\u597d\u548c\u7766\u5730\u7ad9\u5728\u72ee\u5b50\u9762\u524d\u3002"} +{"id": "8003843", "video_name": "44d36c3a-2375-53db-8cbc-d9ba1cc3b555", "text": "\u9996\u5e2d\u6267\u884c\u5b98\u514b\u6797\u7279\u00b7\u970d\u534e\u5fb7\u5728\u6e29\u5f7b\u65af\u7279\u5927\u53a6\u7684\u8d70\u5eca\u4e0a\u884c\u8d70\uff0c\u8fd9\u662f\u4e00\u90e8\u6050\u6016\u7535\u5f71\uff0c"} +{"id": "0004547", "video_name": "0b0df7f4-b20a-59a3-bf62-f3bd0eebc294", "text": "\u4e00\u4e2a\u84dd\u773c\u775b\u7ea2\u5934\u53d1\u7684\u7537\u4eba\u5750\u5728\u4e00\u8f86\u5b89\u9759\u7684\u706b\u8f66\u4e0a\u3002"} +{"id": "2003490", "video_name": "5bb674a9-80a0-5487-83c6-444681b6e276", "text": "\u6bcf\u5929\u653e\u5b66\u540e\uff0c\u7537\u5b69\u548c\u4ed6\u7684\u72d7\u4e00\u8d77\u53bb\u7ecf\u5386\u5145\u6ee1\u523a\u6fc0\u7684\u5192\u9669\u3002\u4ed6\u4eec\u5728\u9644\u8fd1\u7684\u6811\u6797\u91cc\u63a2"} +{"id": "3004201", "video_name": "d0226993-a175-54b4-8587-1a2bca3e4720", "text": "\u52a8\u753b\u6d41\u7a0b\u56fe\u5c55\u793a\u4eba\u5de5\u667a\u80fd\u6a21\u578b\u5904\u7406\u6570\u636e\u5e76\u8c03\u6574MPPT"} +{"id": "0005580", "video_name": "1d6676b7-23c5-5431-bc97-aaf0afd07f69", "text": "\u6d6a\u6f2b\u7684\u6c99\u6ee9\u65e5\u843d\u6563\u6b65\uff0c\u6b4c\u8bcd\u53cd\u6620\u7740\u4e24\u4e2a\u4eba\u4e4b\u95f4\u7684\u5f3a\u70c8\u8054\u7cfb\u3002"} +{"id": "0006927", "video_name": "356b3856-9bce-5857-9e2c-8ec23607bfe1", "text": "\u89c6\u9891\u4ee5\u4e00\u5927\u56e2\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u5728\u5c4f\u5e55\u4e0a\u65cb\u8f6c\u5f00\u59cb\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u52a8\u6001\u7684\u795e\u5947\u6548\u679c\u3002\u80cc\u666f\u95ea\u8000"} +{"id": "2003748", "video_name": "7db63397-da6d-5f23-ae4d-2e33b94585e5", "text": "\u82ad\u6bd4\u5fae\u7b11\u7740\uff0c\u53cb\u597d\u5730\u4e3e\u8d77\u624b\u81f4\u610f\u3002\u5e7f\u89d2\u955c\u5934\u6355\u6349\u5230\u6574\u4e2a\u573a\u666f\uff0c\u5f3a\u8c03\u5979\u5728\u80cc\u666f\u4e2d\u7684\u5b58\u5728\u611f\u3002\u620f"} +{"id": "1005469", "video_name": "647c07bc-1bb1-50c7-be68-ba3d70031a37", "text": "\u4ee3\u7801\u884c\u968f\u7740\u865a\u62df\u73af\u5883\u4e2d\u7684\u9519\u8bef\u51fa\u73b0\u800c\u5206\u5d29\u79bb\u6790\uff0c\u5c31\u50cf\u88c2\u7eb9\u5728\u5899\u4e0a\u6269\u6563\u4e00\u6837\u3002"} +{"id": "3005386", "video_name": "1a53bb20-1c10-504f-8bb5-8847575dd550", "text": "\u4f20\u8bf4\u4e2d\u7684\u5170\u65af\u6d1b\u7279\u7235\u58eb\u548c\u9ad8\u6587\u7235\u58eb"} +{"id": "1005611", "video_name": "6728f910-d294-5d9b-b56f-52ced0ae7fc1", "text": "\u4e00\u90e8\u63cf\u8ff0\u4e00\u4e2a\u4e03\u5c81\u7537\u5b69\u548c\u4ed6\u7684\u72d7\u7a7f\u8d8a\u4e1b\u6797\u76842D\u5361\u901a\u89c6\u9891\u3002"} +{"id": "6003631", "video_name": "6815d117-cc2c-5806-9719-afce3767f4bc", "text": "\u6240\u6709\u7684\u52a8\u7269\u90fd\u559c\u6b22\u9e2d\u5b50\uff0c\u56e0\u4e3a\u5b83\u4eec\u5f88\u53cb\u5584\u3002\u521b\u90203D\u52a8\u753b\u56fe\u50cf\u3002"} +{"id": "0004346", "video_name": "077cbf46-5b2c-5680-90e6-3edc2b49c972", "text": "\u4e00\u500b\u7537\u4eba\u7ad9\u5728\u4e00\u5ea7\u6a4b\u4e0a\uff0c\u4f4d\u65bc\u5ee3\u95ca\u7684\u6d77\u6d0b\u4e2d\u592e\u3002"} +{"id": "1003486", "video_name": "409b206b-d74c-511d-9010-bdebbcd11222", "text": "\u5927\u63d0\u7434\u5927\u5e08\u5728\u6f14\u594f\u65f6\u53bb\u4e16\u3002"} +{"id": "7004554", "video_name": "f4e26457-de83-5b0c-a5cc-61dda6e65d2b", "text": "\u767d\u8272\u72ee\u5b50\u5750\u5728\u96ea\u5730\u4e0a\u3002\u6696\u6696\u7684\u660e\u4eae\u5149\u8292\u4ece\u80cc\u540e\u7167\u5c04\uff0c\u7f8e\u4e3d\u7684\u591c\u7a7a\u5728\u4e0a\u65b9\u3002"} +{"id": "7003784", "video_name": "7a805ff9-aeb1-50ea-928e-c65b5b84269f", "text": "\u5b81\u9759\u7684\u6751\u5e84\uff0c\u6709\u8ff7\u4eba\u7684\u623f\u5c4b\u548c\u82b1\u56ed\u3002"} +{"id": "7004565", "video_name": "dbc7e720-79fe-5537-a89a-64617c75e49e", "text": "\u7f8e\u56fd\u4e2d\u897f\u90e8\u5c0f\u9ea6\u5e26\u7684\u9ea6\u7530\uff0c\u4ee5\u822a\u62cd\u65b9\u5f0f\u6355\u6349\uff0c\u6570\u5343\u682a\u5c0f\u9ea6\u5728\u843d\u65e5\u4e0b\u751f\u957f\u3002\u5f3a"} +{"id": "8003494", "video_name": "df5f6250-4bf6-591a-902a-c6ea1d973ffd", "text": "\u4e00\u4e2a\u6234\u9ed1\u8272\u515c\u5e3d\u7684\u7537\u4eba\u72ec\u81ea\u5728\u9ed1\u6697\u7684\u8857\u9053\u4e0a\u505a\u4fef\u5367\u6491\u3002"} +{"id": "3004711", "video_name": "89c13a3e-02ef-5a3f-bde1-7d98b6a2d76d", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u51a5\u60f3\u8005\u5728\u529e\u516c\u5ba4\u91cc\u9762\u867d\u7136\u5341\u5206\u6df7\u4e71\uff0c\u4f46\u4ecd\u80fd\u627e\u5230\u5185\u5fc3\u7684\u5e73\u9759\u548c\u5b81\u9759\u3002"} +{"id": "1006196", "video_name": "71876c52-e9b4-524b-8b17-68f206c51547", "text": "\u4e00\u4e2a\u5bbd\u655e\u7684\u6d1e\u7a74\uff0c\u6709\u8bb8\u591a\u7528\u77f3\u5934\u5236\u6210\u7684\u95e8\u6563\u53d1\u51fa\u84dd\u8272\u7684\u5149\u8292\u3002"} +{"id": "2004726", "video_name": "4d7b6c5a-e792-5ed4-885e-d4624c18a237", "text": "\u56fd\u5bb6\u5956\u9879\u56fe\u6807\uff0c\u91d1\u8272\u5916\u89c2\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "0005587", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "\u7f57\u7eb3\u5c14\u591a\u548c\u963f\u65af\u5170\u4e00\u8d77\u8e22\u7403\uff0c\u903c\u771f\u7684\u8d85\u7ea7\u56fe\u5f62\u3002"} +{"id": "1005898", "video_name": "6c785da0-2c01-5ea2-8884-cb3fd063b110", "text": "\u4e00\u4e2a\u53f0\u98ce\u5305\u56f4\u4e86\u9996\u5c14\u5e02\u3002"} +{"id": "8001799", "video_name": "8b860762-a83f-51a3-96a3-03f6cf89f6f1", "text": "\u88ab\u56da\u7981\u5728\u9ad8\u8038\u7684\u5821\u5792\u4e2d\u7684\u516c\u4e3b\u3002"} +{"id": "7003266", "video_name": "a8ba0b42-1a83-5bc5-85e8-f34441b812f5", "text": "1967\u5e74\u5b9e\u9a8c\u5ba4\u91cc\u5e26\u7740\u5934\u4e0a\u7535\u6781\u7684\u79d1\u5b66\u5bb6\u3002"} +{"id": "4003913", "video_name": "0ce52094-8080-54e0-a53d-a4a0400dfcc0", "text": "\u6545\u4e8b\u53d1\u751f\u5728\u4e00\u4e2a\u9065\u8fdc\u7684\u5916\u661f\u7403\u4e0a\uff0c\u88ab\u795e\u79d8\u7684\u7d2b\u8272\u5149\u7ebf\u7167\u8000\u7740\uff0c\u6709\u5de8\u5927\u7684\u6c34\u6676\u5f62\u6001\u548c\u751f\u7269"} +{"id": "8003914", "video_name": "eb1cce7f-70d7-51a1-a400-57393d189318", "text": "\u4eba\u7c7b\u7684\u5931\u8d25\u4ece\u5899\u4e0a\u7684\u6d1e\u4e2d\u663e\u73b0\u51fa\u6765\u3002"} +{"id": "1004672", "video_name": "56d8f43b-72d9-51da-b6f1-5a5123ba455d", "text": "\u77a7\uff0c\u8fd9\u68f5\u7eda\u4e3d\u7684\u5f69\u8679\u68c9\u82b1\u7cd6\u6811\u3002"} +{"id": "3006143", "video_name": "00f03e87-54bb-525b-ab86-3633cecabcba", "text": "\u963f\u62c9\u4f2f\u7684\u4f17\u795e\u548c\u5973\u795e\u62e5\u6709\u4e30\u5bcc\u591a\u5f69\u7684\u795e\u8bdd\u4eba\u7269\uff0c\u4f8b\u5982\u80e1\u5df4\u5c14\u3002"} +{"id": "7003953", "video_name": "269b4120-fcc7-58b0-b26e-f0f16543174b", "text": "\u4e00\u6761\u4e9a\u6d32\u9f99\u5b75\u5316\u5e76\u4ece\u86cb\u58f3\u4e2d\u51fa\u6765\uff0c\u7136\u540e\u98de\u5411\u5929\u7a7a\u3002\u80cc\u666f\u662f\u5c71\u3001\u7a3b\u7530\u548c\u6cb3\u6d41\u3002"} +{"id": "2006399", "video_name": "d628f86e-11a2-5e58-9a3f-c0cd235f6b03", "text": "\u7a7a\u6d1e\u6050\u6016\u7684\u623f\u5b50\uff0c\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\u5728\u591c\u665a\u8fdb\u5165\u623f\u5b50\uff0c\u771f\u5b9e\u7684Astic\u5f71\u50cf\u5de5\u4f5c\u5ba4\u8fea\u58eb\u5c3c\u5f71"} +{"id": "3006307", "video_name": "d6c8d3ef-e38d-5aa8-8584-db280724243c", "text": "\u7f8e\u4e3d\u7684\u82b1\u6735\u4ece\u9ed1\u8272\u6c61\u6ce5\u4e2d\u751f\u957f\u51fa\u6765\uff0c\u751f\u957f\u6210\u53d1\u5149\u7684\u805a\u7c07\uff0c\u5f62\u6210\u201c\u9ed1\u6c41\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "3006850", "video_name": "ce2af491-d23a-5e27-9820-2f43a53dfe91", "text": "\u5b9d\u9a6c\u8f66\u6536\u85cf\u54c1\u7a7f\u8d8a\u6c99\u6f20\u65c5\u884c\u3002"} +{"id": "0006230", "video_name": "28c1f5bc-82ac-5204-95e2-e2d0b402f1be", "text": "\u6c99\u6f20\u4e2d\u7684\u6c99\u4e18\u591c\u665a\uff0c\u6709\u661f\u7a7a\u548c\u843d\u96ea\u3002"} +{"id": "1004219", "video_name": "4e0ffbd4-4c9c-5cce-b098-d16d71901f1c", "text": "\u5f53\u6444\u50cf\u673a\u5411\u4e0a\u79fb\u52a8\u65f6\uff0c\u6355\u6349\u5230\u4ee4\u4eba\u60ca\u53f9\u7684\u65e5\u51fa\u80cc\u666f\uff0c\u7528\u6a59\u8272\u548c\u7c89\u8272\u6d82\u7ed8\u5929\u7a7a\uff0c\u5c71\u9876\u7684"} +{"id": "4002850", "video_name": "00838710-55de-5447-941a-95d304c43cba", "text": "\u6559\u7687\u5728\u4ed6\u7684\u79c1\u4eba\u68b5\u8482\u5188\u56fe\u4e66\u9986\u68c0\u67e5\u624b\u7a3f\u3002"} +{"id": "8003200", "video_name": "3994a272-9e92-539d-952f-d3c6edbe256f", "text": "\u4e00\u53ea\u8003\u62c9\u8df3\u821e\u5e76\u53d8\u6210\u7259\u818f\u3002"} +{"id": "2007089", "video_name": "951fb6c6-ab9d-5c48-8a4f-9223b37d76c6", "text": "\u4ece\u4e0a\u65b9\u62c9\u8fdc\uff0c\u673a\u68b0\u8fc7\u6ee4\u7684\u591c\u7a7a\uff0c\u903c\u771f\u800c\u5177\u6709\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u52a8\u6f2b\u3002"} +{"id": "3006622", "video_name": "630782c3-3ce1-5e4a-ae8a-67096d4703df", "text": "\u5e74\u8f7b\u5370\u5ea6\u7f8e\u4e3d\u516c\u6b63\u7684\u5973\u5b69\u6b63\u5728\u9605\u8bfb\u65f6\u4e8b\u65b0\u95fb\u3002"} +{"id": "4004360", "video_name": "deda97e9-9b69-51be-828c-562acfa16119", "text": "\u5370\u5ea6\u6559\u795e\u7947\u514b\u91cc\u5e0c\u7d0d\u5fae\u7b11\u8457\uff0c\u773c\u775b\u6709\u52d5\u975c\u3002"} +{"id": "7004788", "video_name": "11014ea4-fa1f-5ec1-bd0f-f3ac403948ea", "text": "\u4e00\u4e2a\u7537\u4eba\u5e26\u7740\u4e00\u4e2a\u63d0\u5305\u8d70\u51fa\u6b63\u5728\u7206\u70b8\u7684\u5927\u697c\uff0c\u54a7\u5634\u4e00\u7b11\u3002"} +{"id": "7004316", "video_name": "09752c8a-a87e-508a-aec3-bc58d8ab1185", "text": "\u70ed\u8fa3\u5973\u5b6932k\u9ad8\u6e05\u6670\u5ea6\uff0c\u7535\u5f71\u7ea7\u522b\u3002"} +{"id": "8001891", "video_name": "39bd2fba-314a-56dc-b418-695db318ffef", "text": "\u590d\u53e4\u3001\u7206\u7c73\u82b1\u30011980\u5e74\u4ee3\u3001\u80f6\u7247\u76f8\u673a\u3001\u771f\u5b9e\u63cf\u7ed8\u5343\u79a7\u5e74\u4ee3\u9752\u5c11\u5e74\uff0c\u8eab\u7a7f\u9ad8\u9971\u548c\u5ea6\u670d\u88c5\u3002"} +{"id": "4002550", "video_name": "b26fe720-81bc-52a0-99bb-19d9eed683d7", "text": "\u4e00\u53ea\u677e\u9f20\u6210\u4e3a\u7ebd\u7ea6\u7684\u82f1\u96c4\u3002"} +{"id": "6002567", "video_name": "48b0441d-c192-5290-aa16-302e7071f1bb", "text": "\u4e00\u67b6\u76f4\u5347\u673a\u9003\u79bb\u4e86\u706b\u707e\uff0c\u800c\u4e00\u5ea7\u706b\u5c71\u7206\u53d1\u7684\u7a7a\u4e2d\u4fef\u77b0\u3002"} +{"id": "7002976", "video_name": "c4dd848a-8acd-53bb-a867-f7129c7528aa", "text": "\u79d1\u5e7b\u5973\u5b50\u957f\u5f97\u50cf\u83b1\u514b\u8428\u3002 (K\u0113hu\u00e0n n\u01daz\u01d0 zh\u01ceng de xi\u00e0ng L\u00e1ik\u00e8s\u00e0.)"} +{"id": "4003155", "video_name": "49c05126-be78-5931-b924-5f78d288d7d7", "text": "\u82f9\u679c\uff0c\u6a59\u5b50\uff0c\u9999\u8549\uff0c\u83e0\u841d\uff0c\u5947\u5f02\u679c\uff0c\u897f\u74dc\u5728\u6162\u52a8\u4f5c\u4e2d\u7206\u88c2\u3002 \n\nSource sentence: The cat is sleeping on"} +{"id": "2006458", "video_name": "17887e2c-421c-52eb-b538-9b6975b77eee", "text": "\u592a\u9633\u88ab\u539a\u91cd\u7684\u4e91\u5c42\u906e\u6321\u4f4f\u4e86\u3002"} +{"id": "6002281", "video_name": "8e9efb89-d837-5c5f-836f-20e32021bcc4", "text": "\u4e00\u4e2a\u5361\u901a\u89d2\u8272\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u53e6\u4e00\u4e2a\u5361\u901a\u89d2\u8272\u5728\u548c\u4ed6\u8bf4\u8bdd\uff0c\u4f46\u7531\u4e8e\u8033\u673a\uff0c\u4ed6\u542c\u4e0d\u5230\u5bf9\u65b9\u7684\u58f0\u97f3\u3002"} +{"id": "5001891", "video_name": "59a84854-45c2-519a-894c-981d2244d7e8", "text": "\u6c7d\u8f66\u5728\u62e5\u5835\u7684\u4ea4\u901a\u4e2d\u957f\u51fa\u94a2\u94c1\u7fc5\u8180\uff0c\u98de\u8d70\u4e86\uff0c\u5e7b\u60f3\u3002"} +{"id": "2005312", "video_name": "f81e97bc-7e1a-5473-bc65-746d3a7e70bc", "text": "\u4e00\u5ea7\u767d\u8272\u5efa\u7b51\uff0c\u524d\u9762\u6709\u4e00\u68f5\u6811\uff0c\u7ea6\u7ff0\u5185\u65af\u00b7\u4f0a\u6ed5\u7684\u7acb\u4f53\u6d3e\u753b\u4f5c\uff0c\u51fa\u73b0\u5728Pexels\u7f51\u7ad9\u4e0a\uff0c\u5c5e"} +{"id": "8003165", "video_name": "884d4c61-6b70-59ab-8b89-c77bb88ae71c", "text": "\u4e00\u4e2a\u7559\u7740\u80e1\u987b\u7684\u7537\u4eba\u5728\u6d77\u6ee9\u4ff1\u4e50\u90e8\u3002"} +{"id": "1003941", "video_name": "48bbb07d-16f9-5718-a22a-b94996c507e0", "text": "\u6ca1\u6709\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u6ca1\u6709\u7f29\u653e\uff0c\u82f9\u679c\u6811\u4e0b\u7684\u8702\u7a9d\u6ca1\u6709\u871c\u8702\uff0c\u6811\u53f6\u968f\u98ce\u7f13\u6162\u5730\u79fb\u52a8\u3002"} +{"id": "2003508", "video_name": "fe753f39-405f-510e-b00c-7e2d7cd50e19", "text": "\u68ee\u6797\u4e2d\u54ed\u6ce3\u7684\u7537\u5b69"} +{"id": "4004387", "video_name": "6fdaac34-9caa-5671-a9e8-450444cf3b0b", "text": "\u5728\u53e4\u6ce2\u65af\u98ce\u683c\u7684\u957f\u888d\u4e2d\uff0c\u7a7f\u7740\u5145\u6ee1\u73e0\u5b9d\u7684\u8d85\u73b0\u5b9e\u7684\u7cbe\u7075\u56fd\u738b\u5728\u884c\u8d70\u3002 \n\nSource sentence: The"} +{"id": "2004288", "video_name": "d81b9fc5-3793-5e47-a326-1b0e76f51a8f", "text": "\u6811\u53f6\u8f7b\u8f7b\u6c99\u6c99\u4f5c\u54cd\uff0c\u9e1f\u513f\u5a49\u8f6c\u5541\u9e23\uff0c\u8fdc\u5904\u68ee\u6797\u751f\u7269\u7684\u547c\u5524\uff0c\u8425\u9020"} +{"id": "0003928", "video_name": "0004206e-065c-50db-8351-8bb1c235f0e2", "text": "\u4e00\u7247\u7eff\u8349\u8335\u8335\u7684\u9662\u5b50\uff0c\u53ef\u4ee5\u770b\u5230\u5e73\u9759\u7684\u6d77\u6d6a\u3002"} +{"id": "6002041", "video_name": "5272f81a-7536-5c32-9cf1-375b65acfca4", "text": "8K\u6570\u7801\u5355\u53cd\u62cd\u6444\u7f8e\u5973\u673a\u68b0\u6218\u58eb\uff0c\u7a7f\u7740\u672a\u6765\u6218\u6597\u6280\u672f\u9002\u5e94\u6027\u88c5\u5907\uff0c\u6301\u67aa\u62a2\u8fdb\u6ee1\u662f"} +{"id": "2007380", "video_name": "a68e99c9-798c-5656-aeed-aaf4fba194e0", "text": "\u4f50\u7f57\u5728\u6d77\u8d3c\u738b\u91cc\u7684\u6218\u6597\u50cf\u82b1\u90a3\u9738\u7389\u4e8c\u4e00\u6837\u3002"} +{"id": "1006572", "video_name": "7867bc42-62be-5185-9269-350d9298f9da", "text": "\u7a7a\u95f4\uff0c\u94f6\u6cb3\uff0c\u661f\u661f\uff0c\u660e\u4eae\u7684\u661f\u661f\uff0c\u6d41\u661f\u3002"} +{"id": "0004208", "video_name": "04fcdef8-11f5-5cf2-bda7-86068056ab14", "text": "\u90a3\u4e2a\u4eba\u6b63\u9a7e\u9a76\u7740\u4e00\u8f86\u540e\u8f6e\u62ac\u8d77\u7684\u5c0f\u578b\u6469\u6258\u8f66\u5728\u57ce\u5e02\u91cc\u8f6c\u5708\u3002"} +{"id": "1005546", "video_name": "6621f5ea-ff48-535d-a535-b531bc40c2a8", "text": "\u53e4\u5e0c\u814a\u7537\u795e\uff0c\u6709\u7740\u6d53\u5bc6\u7684\u80e1\u987b\u3002\u53ea\u6709\u8138\u90e8\u3002\u52a8\u753b\u3002"} +{"id": "3006113", "video_name": "9bbc27a4-860c-5825-9213-5ee4ff6415c4", "text": "Translation: \u5728\u4e00\u4e2a\u7e41\u534e\u7684\u6c34\u4e0b\u57ce\u5e02 Coralhaven \u7684\u6838\u5fc3\u5730\u5e26\uff0c"} +{"id": "2006537", "video_name": "0befa07c-97d4-50bd-b369-56cddf198593", "text": "\u4e00\u53ea\u88ab\u70b9\u71c3\u7684\u6728\u5076\uff0cVHS\uff0c1970\u5e74\u4ee3\u7684\u6559\u80b2\u7535\u5f71\uff0c\u6545\u969c\u3002"} +{"id": "7002593", "video_name": "f3e1790a-a3f1-5517-8470-bdc33a7d49c7", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u5728\u82b1\u56ed\u91cc\u8bd5\u56fe\u6349\u8774\u8776\u3002"} +{"id": "7002297", "video_name": "ea58b53f-dab3-5245-930d-85e815f01878", "text": "\u5370\u5ea6\u5973\u5b69\u8868\u8fbe\u5979\u5bf9\u65e0\u5c3d\u7231\u60c5\u7684\u611f\u53d7\u3002"} +{"id": "4004619", "video_name": "090cd7de-ba9b-502c-a347-893aab8cc2df", "text": "\u4e00\u4e2a\u5e7f\u9614\u3001\u5168\u666f\u7684\u98ce\u666f\u753b\uff0c\u63cf\u7ed8\u4e86\u65e0\u6570\u6761\u7a7f\u8d8a\u4e0d\u540c\u5730\u5f62\u7684\u8def\u5f84\u2014\u2014\u8302\u5bc6\u7684\u68ee\u6797\u3001\u5e72\u65f1\u7684\u6c99\u6f20"} +{"id": "3004852", "video_name": "8b7569d8-c7dc-5de7-b576-7c2b8523c343", "text": "\u58eb\u5175\u4eec\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u76d4\u7532\u5728\u8352\u51c9\u7684\u6c99\u6f20\u4e2d\u884c\u8fdb\u3002"} +{"id": "1004713", "video_name": "5781b335-95ef-578f-b401-adb7a5bc5e6b", "text": "\u6c64\u59c6\u548c\u6770\u745e \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "1006906", "video_name": "7e4db811-d767-58f8-8dbf-815fcd3df5e0", "text": "\u7eff\u53d1\u7ea2\u773c\u7684\u4ed9\u5973\u53d8\u6210\u5149\u8292\u3002"} +{"id": "0003594", "video_name": "401fa84d-0fdd-5baa-a657-832e58f1376f", "text": "\u653e\u4e00\u5757\u8bf1\u4eba\u7684\u6c34\u679c\u5728\u5e95\u90e8\uff0c\u7528\u4fdd\u9c9c\u819c\u5236\u6210\u6f0f\u6597\u3002"} +{"id": "2004369", "video_name": "cf747eed-3cc1-58f1-9249-f86dddbcd5a7", "text": "\u4e00\u5806\u7f20\u7ed5\u7684\u91d1\u8272\u86c7\u9ab7\u9ac5\u8eba\u5728\u7eff\u8272\u690d\u88ab\u7684\u5730\u9762\u4e0a\u3002"} +{"id": "3004272", "video_name": "d6e74c98-4ef2-5447-8795-225ad67f8652", "text": "17\u5c81\u7684\u5370\u5ea6\u5973\u5b69\uff0c\u7a7f\u7740\u897f\u5f0f\u670d\u88c5\u3002"} +{"id": "0004745", "video_name": "0e929118-095b-5672-a3ee-3bd993865f04", "text": "\u6cb9\u753b\u98ce\u683c\uff0c\u7eff\u91d1\u8272\u58a8\u6c34\u753b\uff0c\u4e2d\u56fd\u9f99\uff0c\u65b0\u4e2d\u5f0f\uff0c\u6781\u7b80\u4e3b\u4e49\uff0c\u624b\u7ed8\u98ce\u683c\uff0c\u63d2\u753b\uff0c\u8282\u65e5\u98ce\u683c\uff0c\u67d4\u548c"} +{"id": "6004237", "video_name": "2af94b36-d0b3-5c9e-b7b6-90abefe7120f", "text": "\u7f8e\u4e3d\u7684\u732b\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u8212\u9002\u5730\u7761\u89c9\u3002"} +{"id": "2003779", "video_name": "f2302871-88b4-5d05-99b9-e80dea605fe6", "text": "\u4e00\u4e2a\u88c2\u5f00\u3001\u98ce\u5316\u7684\u9ab7\u9ac5\u5934\uff0c\u88ab\u65cb\u8f6c\u7684\u70df\u96fe\u4e0e\u706b\u7130\u73af\u7ed5\u7740\uff0c32k\u3001\u9510\u5ea6\u3001\u7167\u7247\u822c"} +{"id": "4003892", "video_name": "757e1606-a86b-547a-9754-39fcf238a27e", "text": "\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u5168\u9ad8\u6e05\uff0c\u8fdc\u5904\u7684\u77f3\u949f\u4e73\u6d1e\u4e2d\u53ef\u4ee5\u770b\u5230\u77f3\u949f\u4e73\u6ef4\u6c34\u843d\u4e0b\uff0c\u9644\u8fd1\u7684\u5730\u4e0b\u6e56\u91cc\u6709"} +{"id": "4002435", "video_name": "4b4970c1-efea-560b-b896-852c730e4873", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u4f18\u96c5\u7684\u5e7f\u64ad\u5458\u7684\u63cf\u8ff0\uff1a"} +{"id": "3003250", "video_name": "4b93273f-3daf-5064-9266-12e284cef57c", "text": "\u672a\u6765\u57ce\u5e02\uff0c\u4e09\u4e2a\u7537\u4eba\u5728\u8c08\u8bdd\uff0c\u6d45\u666f\u6df1\uff0c\u5149\u57081.5\uff0c\u6d45\u666f\u6df1\u6548\u679c\uff0c\u7535\u5f71\u8272\u5f69\u4fee\u6b63\uff0c\u9ed1\u6697\u80cc\u666f"} +{"id": "4004834", "video_name": "3c387ba6-6f94-578e-b298-f3fe862f8f6f", "text": "\u4e00\u53f070\u5e74\u4ee3\u7684\u8001\u7535\u89c6\u64ad\u653e\u7740Rick Roll\u3002"} +{"id": "2005622", "video_name": "6af69870-f712-556e-a530-aa7337752031", "text": "\u6f2b\u957f\u7684\u8def\u53d8\u5f97\u660e\u4eae\uff0c\u5c3d\u5934\u9664\u4e86\u9633\u5149\uff0c\u6ca1\u6709\u8f66\uff0c\u6ca1\u6709\u4eba\uff0c\u53ea\u6709\u5c0f\u5c0f\u7684\u68ee\u6797\u52a8\u7269\u3002"} +{"id": "0005236", "video_name": "17123a2b-391e-5615-92c1-c4d8f16c5bb4", "text": "\u7528\u611f\u6027\u7684\u6e29\u67d4\u7b14\u89e6\u8d4b\u4e88\u89d2\u8272\u751f\u547d\uff0c\u547c\u5438\u7075\u9b42\u4e8e\u4ed6\u4eec\u7684\u8868\u60c5\u3002\u6bcf\u4e00\u4e2a\u50cf\u7d20\u90fd\u5e94\u8be5\u56de\u5e94\u7740\u4e00\u9996"} +{"id": "8001161", "video_name": "aedd69e3-5fb6-5617-84dd-959f5438c627", "text": "\u4e00\u4e2a\u5973\u5b69\u4f5c\u4e3a\uff08\u5de7\u514b\u529b\u7eb8\u676f\u86cb\u7cd5\u7684\u5e7b\u60f3\u62df\u4eba\u5316\uff09\uff0c\u89d2\u8272\u8bbe\u8ba1\uff0c\u53ef\u7231\u7684\u5e3d\u5b50\uff0c\u7ef4\u591a\u5229\u4e9a"} +{"id": "2007058", "video_name": "9ebee280-289d-5a64-b7b8-14baefc9b10f", "text": "\u5438\u5f15\u6765\u81ea\u4e16\u754c\u5404\u5730\u7684\u4eba\u4eec\u524d\u6765\u76ee\u7779\u8fd9\u4e2a\u9690\u85cf\u5728\u79d8\u9c81\u5b89\u7b2c\u65af\u5c71\u8109\u4e2d\u7684\u8ff7\u4eba\u81ea\u7136\u5947\u89c2\u3002"} +{"id": "2004582", "video_name": "1177f7d3-e9fa-5ba9-abd6-06ec019230e8", "text": "\u5728\u6d77\u6ee9\u4e0a\u8df3\u6709\u6c27\u8fd0\u52a8\u3002"} +{"id": "1003798", "video_name": "462a7191-8b76-50ee-8399-b160e02cdcbb", "text": "\u5b87\u822a\u5458\u8db3\u7403\uff0c\u80cc\u666f\u662f\u592a\u7a7a\u4e2d\u98de\u884c\u7684\u661f\u661f\u548c\u5f57\u661f\u3002"} +{"id": "0006521", "video_name": "2dfdf098-6913-53df-ae31-fb55005090d5", "text": "\u8ff7\u5e7b\u7684\u8272\u5f69\u6a21\u7cca\uff0c\u5f62\u6001\u53d8\u5e7b\uff0c\u6b63\u5f26\u6ce2\u3002"} +{"id": "3005178", "video_name": "06cdceee-70e8-562b-88b3-7374f41274d1", "text": "\u4e00\u7fa4\u7a7f\u7740\u7cbe\u795e\u6296\u64de\u7684\u80af\u5c3c\u4e9a\u4eba\uff0c\u7ad9\u5728\u4e00\u5ea7\u5de8\u5927\u7684\u6559\u5802\u5916\uff0c\u9633\u5149\u4e0b\u9ad8\u58f0\u5531\u6b4c"} +{"id": "6004605", "video_name": "152eee9c-69bd-5a3d-a70e-555211924cbf", "text": "\u4e00\u4e2a\u9ed1\u8272\u7684\u51b0\u7403\u7403\u8863\u8bbe\u8ba1\uff0c\u6ca1\u6709\u6807\u5fd7\uff0c\u6709\u767d\u8272\u80cc\u666f\u3002"} +{"id": "4003160", "video_name": "47c95838-200d-5541-a584-b7088648f2e9", "text": "\u5236\u9020\u7d27\u8feb\u611f\u7684\u52a8\u753b\u8fd0\u52a8\u548c\u6ef4\u7b54\u58f0\u6548\u3002"} +{"id": "2003469", "video_name": "ed6df2c1-c513-5967-9be7-cd9fa80fae35", "text": "\u6258\u5c14\u4ee5\u8d85\u6162\u901f4K\u753b\u8d28\u731b\u51fb\u8759\u8760\u4fa0"} +{"id": "0005102", "video_name": "14c1d79d-0de7-5386-a875-699d39b2e937", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u5b69\u5b50\u5728\u516c\u56ed\u91cc\u4e0e\u8bb8\u591a\u4eba\u8df3\u821e\u3002"} +{"id": "1003695", "video_name": "44181b89-7933-5fb1-95ce-a5c3ceca4c5b", "text": "3D\u83b2\u82b1\u5973\u795e\u5728\u82b1\u56ed\u4e2d\u884c\u8d70\uff0c\u4e00\u5207\u90fd\u50cf\u98ce\u4e00\u6837\u6d41\u52a8\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7002399", "video_name": "e3043b2c-739c-5a47-8c83-0fa4a46b1f1b", "text": "\u5b99\u65af\u795e\u50cf\u7236\u4eb2\u4e00\u6837\u7edf\u6cbb\u7740\u5965\u6797\u5339\u65af\u4f17\u795e\u3002\u4ed6\u662f\u4f17\u795e\u4e4b\u738b\uff0c\u76d1\u7ba1\u7740\u5b87\u5b99\uff0c\u662f"} +{"id": "2006741", "video_name": "3d160749-1d3f-5f86-bb56-3e2ee7a638d1", "text": "\u5728\u591c\u7a7a\u4e2d\u5c55\u73b0\u70df\u706b\u8868\u6f14\u4e2d\u4ee4\u4eba\u60ca\u53f9\u7684\u77ac\u95f4\uff0c\u4f7f\u7528\u4e30\u5bcc\u7684\u8272\u5f69\u521b\u9020\u51fa\u6b22\u5e86\u7684\u6c1b\u56f4"} +{"id": "7002262", "video_name": "abbce941-4949-5c3a-a450-743993227316", "text": "\u56db\u540d\u5b66\u751f\u5728\u623f\u95f4\u91cc\u753b\u753b\u3002"} +{"id": "0006767", "video_name": "32af494c-e4b5-508a-b1a1-717b0b38a4d0", "text": "\u7537\u4eba\u548c\u5973\u4eba\u7a7f\u7740\u7d2b\u8272\u548c\u84dd\u8272\u8fde\u5e3d\u886b\uff0c\u6234\u7740\u906e\u9633\u9762\u7f69\u73a9\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "2006582", "video_name": "53362126-266f-5651-a112-22e2a3b8ee0b", "text": "\u6fb3\u5927\u5229\u4e9a\u9996\u90fd\u7684\u89c6\u9891"} +{"id": "6004406", "video_name": "5f9ce46e-f9c7-54a5-baa7-e0920db8a37f", "text": "\u4e00\u53ea\u8717\u725b\u548c\u4e00\u6761\u86c7\uff0c\u7528\u67aa\u6218\u6597\uff0c\u7535\u5f71\u7ea7\u522b\uff0c4K\u3002"} +{"id": "1006902", "video_name": "7e2f6690-71aa-5f80-bd8b-2e6dd6965af3", "text": "\u5b9e\u7528\u623f\u91cc\u5b58\u653e\u4e86\u4e0d\u540c\u79cd\u7c7b\u7684\u5de5\u5177\u3002"} +{"id": "7003801", "video_name": "ce875556-0a37-5ba9-a65f-16110adb8e49", "text": "\u5f69\u8272\u7206\u70b8\uff0c\u76f8\u673a\u7f29\u653e\u51fa\u53bb\u3002"} +{"id": "6004561", "video_name": "4be30f6e-3526-5d2c-a7cb-5463c2050e9d", "text": "\u732b\u5728\u591c\u7a7a\u4e2d\u98de\u884c\uff0c\u6709\u6d41\u661f\u5212\u8fc7\uff0c\u91c7\u7528\u8fea\u58eb\u5c3c\u52a8\u753b\u7684\u98ce\u683c\u3002"} +{"id": "1003860", "video_name": "472167bb-2740-51d5-a0cb-322e99c4e414", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u6f2b\u753b\u5f62\u8c61\uff0c\u6f2b\u753b\u4e66\u98ce\u683c\u7684\u7537\u5b69\u3002"} +{"id": "8001077", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "\u4e00\u9897\u6c34\u6676\u7403\uff0c\u5355\u8272\uff0c\u892a\u8272\u7684\u989c\u8272\uff0c\u9b54\u5e7b\u7684\u3002"} +{"id": "8003671", "video_name": "1d18da3f-a7ef-5052-8b05-306277faad7d", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u63d2\u56fe\uff0c\u7531\u6770\u91cc\u7c73\u4e9a\u00b7\u51ef\u7279\u7eb3\uff08Jeremiah Ketner\uff09\u3001\u6770\u592b\u00b7\u52d2\u7c73\u5c14\uff08Jeff Lemire\uff09\u3001\u7406\u67e5\u5fb7\u00b7\u65bd\u5bc6"} +{"id": "3006392", "video_name": "540158fe-65fc-58ce-9c32-a28e952c147e", "text": "\u5979\u8e2e\u8457\u8173\u5c16\u7a7f\u904e\u6a39\u6797\uff0c\u611f\u5230\u8208\u596e\u548c\u6050\u61fc\u7684\u6df7\u5408\u611f\u3002\u60f3\u50cf\u529b\uff0c4K\u9ad8\u6e05"} +{"id": "7003898", "video_name": "4f6fc4e0-465b-5cf2-b34d-769177cd1583", "text": "\u6c99\u4fc4\u5973\u7687\u5750\u5728\u5e8a\u4e0a\uff0c\u4e0e\u8eab\u7a7f\u9ed1\u8272\u957f\u888d\u3001\u5934\u53d1\u84ec\u4e71\u3001\u80e1\u987b\u4e0d\u4fee\u8fb9\u5e45\u7684\u62c9\u65af\u666e\u4eac"} +{"id": "3003940", "video_name": "b438976f-98d7-577f-a5ff-0461811848d8", "text": "\u535a\u62c9\u548c\u96c5\u7ecd\u8fbe\u62b1\u7740\u4ed6\u4eec\u7684\u65b0\u751f\u7537\u5a74\u83ab\u683c\u5229\uff0c\u8138\u4e0a\u6d0b\u6ea2\u7740\u7eaf\u6d01\u559c\u60a6\u7684\u7b11\u5bb9\u3002"} +{"id": "8003166", "video_name": "274b3d54-02d2-5081-a4ae-6b3e79b0e794", "text": "\u5170\u535a\u57fa\u5c3c\u8fdb\u5316\u7248X\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u5de1\u6e38\u4e1c\u4eac\u8857\u9053\uff0c4K\u3002"} +{"id": "2003280", "video_name": "183b78da-ccba-5d68-b74b-fc2d1793e5b3", "text": "\u9a6c\u675c\u52a0\u548c\u6e7f\u5a46\u795e\u5728\u4eba\u5de5\u667a\u80fd\u4e16\u754c\u8d2d\u7269\u3002"} +{"id": "6002658", "video_name": "c362a344-d8fa-5bec-a3e1-8aac47e461d9", "text": "\u4e00\u4e2a\u91d1\u53d1\u7537\u5b69\u548c\u4e00\u53ea\u6bd4\u683c\u72ac\uff0c\u5feb\u4e50\u3001\u903c\u771f\uff0c\u5145\u6ee1\u7231\u3002\u4fe1\u606f\uff1aNACHO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "8002387", "video_name": "cc3235d8-c555-597d-8754-e717aba57775", "text": "\u5341\u8f86\u6469\u6258\u8f66\u5728\u9ec4\u660f\u65f6\u5206\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "2004635", "video_name": "c86613d2-0e38-5fa3-a6d3-9a3a3d0469f1", "text": "\u6e38\u620f\u73a9\u5bb6\u51b3\u5fc3\u5145\u5206\u5c55\u793a\u51fa\u6765\uff0c\u4ed6\u82b1\u8d39\u4e86\u6f2b\u957f\u7684\u591c\u665a\u7ec3\u4e60\uff0c\u4e0d\u65ad\u63a8\u52a8\u81ea\u5df1\u7684\u6781\u9650\u3002"} +{"id": "0006845", "video_name": "341c7453-2251-5f58-acf7-30e67d2f77bd", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u706f\u5149\u7684\u821e\u53f0\u4e0a\uff0c\u6234\u7740\u773c\u955c\u548c\u5439\u7740\u8428\u514b\u65af\u98ce\u7684\u53e3\u888b\u5996\u602a\u5c0f\u9f9f\u5728"} +{"id": "6004207", "video_name": "df598b6d-262d-50b7-b767-dc9f331d1282", "text": "\u6469\u897f\u548c\u6d77\u5206\u5f00\uff0c\u5947\u8ff9\u3002"} +{"id": "2006669", "video_name": "e3d0c663-4bd9-548d-a8a1-d39bf1c053fa", "text": "\u5728\u4e00\u8258\u53ea\u6709\u5899\u58c1\u800c\u6ca1\u6709\u5176\u4ed6\u7269\u54c1\u7684\u8f7b\u5fae\u751f\u9508\u623f\u95f4\u5185\uff0c\u6c34\u6ea2\u51fa\u5e76\u4ee53D\u52a8\u753b\u7684\u5f62\u5f0f\u9010\u6e10\u4e0a\u5347\u6c34\u4f4d\u3002"} +{"id": "2005038", "video_name": "9f76a042-a3c9-5b22-b682-0fcd33bf6795", "text": "\u5728\u4e1b\u6797\u52a8\u7269\u7684\u652f\u6301\u4e0b\uff0c\u83ab\u683c\u5229\u3001\u5df4\u5409\u62c9\u548c\u5df4\u5362\u9762\u5bf9\u96ea\u5c14\u6c57\u3002\u4ed6\u4eec\u4f7f\u7528\u7531\u85e4\u8513\u7f16\u5236\u7684\u7f51"} +{"id": "8002231", "video_name": "3c556b5d-323d-54c0-8d76-4b47192b8875", "text": "\u4e00\u665a\uff0c\u5c0f\u725b\u91d1\u8272\u548c\u6bcd\u725b\u4e00\u8d77\u8e0f\u4e0a\u4e86\u901a\u5f80\u6708\u7403\u7684\u795e\u5947\u4e4b\u65c5\u3002"} +{"id": "4004676", "video_name": "4d887b7d-50c1-556a-8398-35f0d898f3b5", "text": "\u4e24\u4e2a\u4eba\u76f8\u4e92\u8d70\u5f00\u7684\u8f6e\u5ed3\uff1a\u63cf\u7ed8\u5206\u9053\u626c\u9573\u7684\u611f\u89c9\u3002"} +{"id": "4002560", "video_name": "740b1f4e-2ad8-5e38-bb53-821af84e5d23", "text": "\u4e00\u4f4d\u9f99\u88d4\u6b63\u5728\u5bfb\u627e\u4f60\u7684\u56da\u72af\u3002"} +{"id": "4004602", "video_name": "f75f388f-fe62-5e98-8d9c-3ae8234be128", "text": "\u955c\u5934\u98de\u5165\u573a\u666f\uff0c\u98ce\u5439\u62c2\uff0c\u70ed\u706b\u9897\u7c92\u98de\u6563\u800c\u8fc7\u3002"} +{"id": "4002751", "video_name": "a02ed8b2-7c45-5370-8eca-2a6c8256e475", "text": "\u4e1c\u4eac\u5e02\u7684\u8857\u9053\u4e0a\u6709\u51e0\u8f86\u6c7d\u8f66\u548c\u51e0\u4e2a\u4eba\u5728\u884c\u8d70\uff0c\u5728\u5e02\u573a\u548c\u9762\u5305\u5e97\u91cc\u6709\u51e0\u76cf\u9713\u8679\u706f\uff0c\u5728\u4e00\u4e2a\u903c\u771f\u7684"} +{"id": "7004564", "video_name": "fef8def1-0ab8-5340-b05d-21c2ba3106d7", "text": "\u6cb3\u6c34\u6fc0\u8d77\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\uff0c\u8fd8\u6709\u4eba\u5de5\u706f\u5149\u3001\u5929\u7a7a\u548c\u524d\u884c\u7684\u8239\u53ea\u3002"} +{"id": "0006538", "video_name": "2e5d9b06-51a9-5ed6-9e83-d77fe87955e0", "text": "\u7ed3\u6784\u5df2\u7ecf\u6539\u53d8\u5e76\u4e14\u53d8\u5f62\u4e86\u3002\n\nSource sentence: She speaks Chinese fluently and confidently. \n\n\u5979\u80fd\u591f\u6d41\u5229\u81ea\u4fe1\u5730\u8bf4\u4e2d\u6587\u3002"} +{"id": "1006641", "video_name": "79b6df7f-016f-5d35-90dd-b3cda20714af", "text": "\u8d85\u73b0\u5b9e\u3001\u62bd\u8c61\u7684\u4e66\u5728\u5916\u5c42\u7a7a\u95f4\u6f02\u6d6e\u3002"} +{"id": "0003902", "video_name": "456ed447-f52d-518b-a4a3-fc2de990d52e", "text": "\u6211\u770b\u89c1\uff0c\u6709\u4e00\u5339\u767d\u9a6c\u51fa\u73b0\u5728\u6211\u9762\u524d\uff01\u9a91\u9a6c\u7684\u4eba\u624b\u6301\u5f13\uff0c\u4ed6\u6234\u7740\u51a0\u5195\uff0c\u4ee5\u5f81\u670d\u8005\u7684\u59ff\u6001"} +{"id": "3003412", "video_name": "5885dab4-e7b1-5cc7-be06-a39516d14661", "text": "\u5728\u6bd4\u8d5b\u7684\u7b2c\u4e00\u8282\uff0c\u6c64\u59c6\u5931\u8bef\u63a5\u4e86\u4e00\u4e2a\u5173\u952e\u7684\u4f20\u7403\uff0c\u672c\u53ef\u4ee5\u9886\u5148\u4e86\u3002\u4ed6\u7684\u961f\u53cb\u4eec\u611f\u5230\u5931\u671b\uff0c\u4ed6\u81ea\u5df1\u4e5f\u611f\u89c9"} +{"id": "1006631", "video_name": "798f98cc-1fef-5181-ad12-3b578195a352", "text": "\u5de8\u5927\u7684\u722c\u884c\u4e4c\u9e26\uff0c\u53e4\u8001\u7684\u5e9f\u5f03\u54e5\u65af\u62c9\u673a\u68b0\u5316\u8089\u4f53\u3002"} +{"id": "0003134", "video_name": "37d05ca8-b0f9-598c-b1ac-8f638ee55001", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\uff0c\u6709\u4e00\u4e2a\u7a7f\u7740\u8910\u7ea2\u8272\u886c\u886b\u7684\u5927\u5b66\u751f\u8d70\u5411\u9ed1\u8272\u5e7f\u544a\u724c\uff0c\u7136\u540e"} +{"id": "0005344", "video_name": "191da1cd-a0b7-5c7a-9f5a-f3a2e5b5b8c1", "text": "\u6f02\u4eae\u7684\u7a7a\u7075\u7cbe\u7075\u51c6\u5907\u6218\u6597\uff0c\u6765\u81ea\u4e00\u4e2a80\u5e74\u4ee3\u7684\u9ed1\u6697\u5e7b\u60f3\u7535\u5f71\uff0c\u903c\u771f\u3001\u7535\u5f71\u5316\u3001\u590d\u53e4\u3001\u9ad8"} +{"id": "6003635", "video_name": "9804405a-a915-5307-a8bb-0a2896648c97", "text": "Source sentence: Yuvraj Singh\u662f\u4e2a\u4f1f\u5927\u7684\u5546\u4eba\uff0c\u4e00\u624b\u638c\u63e1\u7740\u5927\u91cf\u7684\u7f8e\u5143\uff0c\u5e76\u62cd\u6444\u4e864K\u7684\u7535\u5f71\u3002"} +{"id": "3005152", "video_name": "50351ad0-ff84-5d20-afde-90232aa8b5b9", "text": "\u6d77\u8c79\u7a81\u51fb\u961f\u5458\u7a7f\u7740\u8ff7\u5f69\u670d\uff0c\u7ad9\u5728\u8239\u4e0a\uff0c\u5f7c\u6b64\u63a9\u62a4\uff0c\u80cc\u9760\u80cc\u62cd\u6444\uff0c\u7279\u5199\uff0c\u76f8\u673a\u987a"} +{"id": "6002799", "video_name": "f2688644-bf7b-5afc-8e1d-c782f4e3c2d9", "text": "\u4e00\u4e2a\u5728\u4e25\u5bd2\u7684\u51ac\u5b63\u666f\u89c2\u4e2d\u6709\u808c\u8089\u7684\u7537\u4eba\u7684\u7535\u5f71\u573a\u666f"} +{"id": "6002490", "video_name": "d916507f-74d5-5b01-b052-61fc1be5613d", "text": "\u8302\u5bc6\u7684\u4e1b\u6797\u968f\u98ce\u6447\u66f3\uff0c\u80cc\u666f\u4e2d\u52a8\u7269\u56db\u5904\u5954\u6ce2\u3002\u4e00\u4e2a\u7537\u4eba\u4ece\u68ee\u6797\u4e2d\u8dd1\u51fa\u6765\uff0c\u76f4\u89c6\u955c\u5934\uff0c"} +{"id": "7004398", "video_name": "14fcd764-7e17-5fd5-8e7f-e4730626b219", "text": "\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u548c\u8d85\u81ea\u7136\u76841900\u5e74\u4ee3\u7535\u5f71\u955c\u5934\uff0c\u5c0f\u5a03\u5a03\u3002"} +{"id": "3006706", "video_name": "90cef320-303a-5952-9684-05f714f5281f", "text": "\u5728\u65e5\u843d\u6d77\u6ee9\u653e\u98de3D\u8774\u8776\u3002"} +{"id": "0006321", "video_name": "2aa4b3b8-b227-5a69-a770-70f121e8915c", "text": "\u53ef\u7231\u7684\u673a\u5668\u4eba\u98de\u8fc7\u5929\u7a7a\uff0c\u4ece\u706b\u7bad\u52a9\u63a8\u5668\u7559\u4e0b\u55b7\u6c14\u6d41\u3002"} +{"id": "0003715", "video_name": "42442103-66cf-51d3-82de-15a885543892", "text": "\u6709\u4e00\u5bb6\u4eba\u5750\u5728\u5bb6\u91cc\u7684\u6c99\u53d1\u4e0a\uff0c\u770b\u7535\u89c6\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u5e76\u6253\u95ea\u7535\u3002\u5728\u4e00\u6b21\u975e\u5e38\u5f3a\u7684\u95ea\u7535\u51fb\u4e2d\u540e\uff0c\u7535\u89c6\u5173"} +{"id": "3006976", "video_name": "cc539b04-2e4a-50f9-8af2-7da062bb0605", "text": "\u573a\u666f\u9010\u6e10\u53d8\u6697\u3002"} +{"id": "2006861", "video_name": "9bfa5b0e-8c73-552c-988a-88e38595b278", "text": "\u6c34\u4ece\u53a8\u623f\u6c34\u69fd\u6ea2\u51fa\u3002"} +{"id": "2006549", "video_name": "4174e6bf-3b28-5110-ad2d-b7c87a7c886a", "text": "\u4e00\u4e2a\u5c0f\u5b69\u7ad9\u5728\u6751\u5e84\u7684\u8def\u4e0a\u3002"} +{"id": "3005667", "video_name": "190e6ebb-d652-58ac-86b8-07d400288dff", "text": "\u4f53\u79ef\u7c98\u571f\u53ef\u7231\u5361\u901a\u4eba\u7269\u4e0d\u5c0f\u5fc3\u5c06\u5496\u5561\u6d12\u5728\u81ea\u5df1\u8eab\u4e0a\uff0c\u56db\u7ef4\u4f53\u79ef\uff0c\u84dd\u767d\u989c\u8272\u3002"} +{"id": "6004380", "video_name": "6a28294a-3f81-5442-8827-8ef3e47ad801", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u602a\u517d\u6b63\u5728\u57ce\u5e02\u4e2d\u592e\u8086\u8650\uff0c\u753b\u9762\u903c\u771f\uff0c\u9ad8\u6e05\u8d28\u91cf1080\uff0c\u6bd4\u4f8b16:9\u3002"} +{"id": "4002852", "video_name": "58247e9c-6776-5ca1-bcab-13d05e4b84c2", "text": "\u7279\u62c9\u7ef4\u65af\u00b7\u65af\u79d1\u7279\u7684\u6f14\u5531\u4f1a\uff0c\u70c8\u706b\u56db\u5468\uff0c\u573a\u9762\u5b8f\u5927\u3001\u903c\u771f\u7ec6\u817b\u3002"} +{"id": "1005558", "video_name": "664cd5f7-c8a4-5e88-8b80-3153c5ba6220", "text": "\u4e00\u4e2a\u4e09\u5341\u591a\u5c81\u7684\u5973\u4eba\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "6004067", "video_name": "7ebcf614-60b9-535d-9dfa-57e73b42bde5", "text": "\u6211\u9700\u8981\u4e24\u4e2a\u5973\u5b69\u5728\u73b0\u4ee3\u4f1a\u8ba1\u8bbe\u8ba1\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "1005248", "video_name": "6094293f-df6d-53a9-8de2-2390e6beca23", "text": "\u6c61\u6c34\u4e2d\u7684\u9ed1\u6697\u6d1e\u7a74\uff0c\u5348\u591c\u65f6\u5206\u7684\u73b0\u4ee3\u672a\u6765\u57ce\u5e02\u8857\u9053\uff0c\u9713\u8679\u706f\uff0c\u8d5b\u535a\u670b\u514b\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "2003362", "video_name": "9a0c7488-286b-5c1a-b708-0fee2c735f30", "text": "\u6355\u6349\u963f\u62c9\u4f2f\u987e\u5ba2\u5728\u6e29\u99a8\u7684\u9910\u5385\u6c1b\u56f4\u4e2d\u4eab\u53d7\u70b8\u9e21\u76db\u5bb4\u7684\u751f\u52a8\u573a\u666f\uff0c\u5f3a\u8c03"} +{"id": "1004152", "video_name": "4cf16ac0-f8c4-5d8f-98bc-2f78bfda3a80", "text": "\u68ee\u6797\u4e2d\u7684\u66b4\u98ce\u96e8\u548c\u7011\u5e03\u4f34\u968f\u7740\u6c34\u6d41\u3002"} +{"id": "7004175", "video_name": "eddcced9-edfd-5672-9796-2d14d612c8f2", "text": "\u9a91\u5728Activa\u4e0a\u7684\u5973\u5b69\u3002"} +{"id": "4002613", "video_name": "fd11fa89-54cf-5f21-a9e1-d9e2296ada97", "text": "\u7167\u76f8\u673a\u95ea\u5149\u706f\u4e0b\uff0c\u57c3\u5c14\u7ef4\u65af\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u65c1\u8fb9\u7684\u751f\u65e5\u86cb\u7cd5\u65c1\u6446\u59ff\u52bf\u3002"} +{"id": "2007683", "video_name": "a6d64208-501c-5bdb-a25b-c0206f36e554", "text": "\u5c55\u793aEmily\u548cMax\u9047\u5230\u4f1a\u7528\u65cb\u5f8b\u8bed\u8a00\u8bf4\u8bdd\u7684\u751f\u7269\uff0c\u5e76\u63cf\u8ff0\u4ed6\u4eec\u5bf9\u4ea4\u6d41\u7684\u60ca\u8bb6\u3002"} +{"id": "3005164", "video_name": "8c9d1521-e5ab-5089-a854-bc4b9357f9bb", "text": "jungle.\n\n\u739b\u96c5\u6b63\u5728\u4ed4\u7ec6\u68c0\u67e5\u4e00\u5f20\u7834\u65e7\u7684\u5730\u56fe\uff0c\u5979\u7684\u624b\u6307\u5728\u8302\u5bc6\u4e1b\u6797\u4e2d\u7ec6\u7ec6\u63cf\u6479\u7740\u4e00\u6761"} +{"id": "1004830", "video_name": "593982b1-ef70-5e42-b6cb-99e7d9138fa3", "text": "\u5c55\u793aLeo\u7387\u9886\u4e00\u7fa4\u52a8\u7269\u80cc\u7740\u6c34\u6876\u53bb\u6751\u5e84\u7684\u573a\u666f\u3002"} +{"id": "0003467", "video_name": "3e1b5fe3-1f10-5688-b9a4-ff672a35589f", "text": "\u5728\u4e00\u8258\u5e06\u8239\u4e0a\u7684\u5ba2\u4eba\u770b\u8d77\u6765\u5f88\u5f00\u5fc3\uff0c\u767d\u8272\u7684\u5e06\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c16:9\u3002"} +{"id": "8003946", "video_name": "5c846de3-65d9-557f-a75e-273026898fc3", "text": "\u8ba9\u8fd9\u4e2a\u52a8\u753b\u7f51\u7403\u95ea\u8000\u8d77\u6765\uff0c\u51fa\u73b0\u8774\u8776\u98de\u821e\u5e76\u95ea\u8000\u3002"} +{"id": "6003564", "video_name": "11dce68e-7353-5f8d-8809-55fcd513b107", "text": "\u683c\u5f0f\u5316\u5e7f\u544a\uff0c\u4ee5\u5ba3\u4f20 Tirumala IT \u987e\u95ee\u670d\u52a1\uff0c\u4e00\u4e2a\u6570\u5b57\u8425\u9500\u516c\u53f8\uff0c\u63d0\u4f9b SEO\u3001SEM\u3001SMM\u3001\u5185\u5bb9\u521b\u4f5c\u3001\u5185\u5bb9\u8425\u9500\u3001\u54c1\u724c\u5efa\u8bbe"} +{"id": "4002095", "video_name": "5eef856a-800b-57b5-ae51-5710e294968f", "text": "\u5e86\u795d\u9752\u5e74\u56fd\u5e86\u8282\uff0c\u6325\u821e\u56fd\u65d7\uff0c\u653e\u70df\u82b1\u3002"} +{"id": "2006803", "video_name": "df36871f-47eb-5063-abbd-10b91e8c4874", "text": "\u5c55\u793a\u5728\u6c34\u57f9\u7cfb\u7edf\u4e2d\u5438\u6536\u4f7f\u690d\u7269\u751f\u957f\u7684\u5fae\u5c0f\u7eb3\u7c73\u9897\u7c92\u7684\u771f\u5b9e\u751f\u83dc\u690d\u7269\u6839\u7cfb\u3002\u4f7f\u7528\u6444\u50cf\u673a\u89c2"} +{"id": "1004772", "video_name": "5847b379-8f2f-5857-a865-e633c94cefb7", "text": "\u7c73\u8bfa\u9676\u4eba\u90e8\u843d\u4e3a\u5973\u738b\u8df3\u821e\u3002"} +{"id": "4003041", "video_name": "b395da5e-e300-5d72-83a9-c0c7f0b8ba57", "text": "\u9ed1\u767d1940\u5e74\u4ee3\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u4e00\u5ea7\u8001\u623f\u5b50\u5728\u66b4\u98ce\u96e8\u4e2d\u591c\u665a\u7684\u666f\u8c61\uff0c\u95e8\u524d\u7ad9\u7740\u4e24\u4e2a\u4eba\uff0c\u95ea"} +{"id": "7003123", "video_name": "3b63b060-0bb9-57ff-9687-00338cdd41f8", "text": "\u4f69\u6234\u7740\u751f\u7269\u670b\u514b\u7684\u534a\u673a\u68b0\u82b1\u6735\u3001\u8774\u8776\u548c\u8424\u706b\u866b\uff0c\u5b83\u4eec\u6563\u53d1\u51fa\u8ff7\u4eba\u7684\u8bf1"} +{"id": "1004508", "video_name": "53974ffe-2f39-5570-a8d9-fee576d40381", "text": "\u8bf7\u5173\u6ce8Whiskers\u5148\u751f\uff0c\u4ed6\u9762\u5e26\u611f\u6fc0\u7684\u5fae\u7b11\u5411\u5b69\u5b50\u4eec\u8868\u8fbe\u4ed6\u7684\u5bbd\u6170\u548c\u611f\u8c22\u3002"} +{"id": "2004401", "video_name": "256d6940-35e2-520f-a286-5df36cc1394c", "text": "\u5728\u6d77\u8fb9\u8df3\u821e\u7684\u4e00\u4e2a\u76ae\u80a4\u767d\u7699\u7684\u5973\u4eba\u3002"} +{"id": "7002797", "video_name": "fcbbf5f6-87ab-5db6-b524-3303b006bc51", "text": "\u521b\u5efa\u4e00\u4e2a\u4ee4\u4eba\u6ee1\u610f\u7684\u51e0\u4f55\u5f62\u72b6\u7684\u89c6\u9891\u65e0\u9650\u5faa\u73af\u3002"} +{"id": "2005779", "video_name": "7a8b6c8a-8d12-5fe7-98bd-e5de57b17283", "text": "\u4e00\u4f4d\u76ae\u514b\u65af\u5973\u5b69\u89d2\u8272\uff0c\u975e\u5e38\u53ef\u7231\uff0c\u5927\u773c\u775b\uff0c\u5fae\u7b11\uff0c\u7a7f\u7740\u516c\u4e3b\u670d\u88c5\uff0c\u80cc\u666f\u4e2d\u6709\u706b\u5c71\u55b7\u53d1\u3002"} +{"id": "0005907", "video_name": "23145ed2-09ba-500a-a59a-d54081bbd35e", "text": "\u6162\u52a8\u4f5c\u3001\u9ad8\u6e05\u6670\u5ea6\u30018k\u3001\u7535\u5f71\u7ea7\u7684\u4eba\u7269\u5728\u7535\u89c6\u4e0a\u8bf4\u8bdd\u3002"} +{"id": "7002125", "video_name": "f9e3aaaf-9713-5a47-96ff-efcf1281f41d", "text": "\u4e00\u53ea\u51e4\u51f0\u98de\u8fc7\u57ce\u5e02\u3002"} +{"id": "2006293", "video_name": "a2d39f5b-5404-5765-b192-13e2d5637868", "text": "\u84dd\u5929\u3001\u767d\u4e91\u3001\u6c99\u6ee9\u3001\u68d5\u6988\u6811\u3001\u6d77\u8d1d\u58f3\u3001\u8783\u87f9\u3001\u6c99\u6ee9\u4e0a\u7684\u811a\u5370\uff0c\u8fd8\u6709"} +{"id": "0004554", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI\u548cTommy Fury\u7ad9\u5728\u62f3\u51fb\u573a\u4e0a\uff0c\u9762\u5bf920000\u4eba\u7684\u89c2\u4f17\uff0c\u5728\u8ff7\u4eba\u7684\u6c1b\u56f4\u4e2d\u5f7c\u6b64\u62e5\u62b1\u3002"} +{"id": "3004130", "video_name": "5b244e1c-5317-5412-af00-74ad706bfa96", "text": "\u51e0\u4e2a\u5e26\u6b66\u5668\u7684\u673a\u5668\u4eba\u7a7f\u8fc7\u68ee\u6797\u3002"} +{"id": "6002813", "video_name": "2b652590-6439-51e9-97d8-8d6838d19976", "text": "\u5e26\u6709\u5747\u5300\u6f02\u6d6e\u7684\u7ec6\u5c0f\u5fc3\u5f62\u56fe\u6848\u7684\u7eaf\u8272\u6de1\u7c89\u548c\u7ea2\u8272\u5149\u7ebf\u7684\u52a8\u6001\u80cc\u666f\u3002"} +{"id": "2006329", "video_name": "7cdca3e0-2673-5719-94e0-79b22750fde2", "text": "\u4e00\u4e2a\u6234\u7740\u91d1\u8272\u5438\u8840\u9b3c\u7259\u9f7f\u548c\u7eb9\u8eab\u7684\u6cf0\u56fd\u7537\u5b50\u5a01\u80c1\u5730\u770b\u7740\u955c\u5934\u3002"} +{"id": "4004220", "video_name": "7b7baa3c-0fa5-529b-afdb-0b927d787be8", "text": "\u4e00\u4e2aYouTube\u6807\u5fd7\u5347\u8d77\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u57ce\u5e02\u80cc\u666f\u4e4b\u4e0a\uff0c\u955c\u5934\u8000\u6591\u4ece\u53f3\u4e0a\u65b9\u8fdb\u5165\u3002"} +{"id": "4003095", "video_name": "1f2b7b1c-2b81-5a18-aa0b-a6f87571924a", "text": "\u82f1\u56fd\u9996\u76f8\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u620f\u8c11\u5730\u62e8\u5f04\u7740\u4ed6\u90a3\u8457\u540d\u7684\u51cc\u4e71\u91d1\u53d1\u3002\u8fd9\u79cd\u8f7b\u677e\u7684"} +{"id": "6003396", "video_name": "67baa9da-3e0c-5b61-b690-6e0a8b08934f", "text": "\u4e00\u53ea\u91ce\u751f\u7684\u5ca9\u7f8a\u5728\u6674\u6717\u7684\u65e5\u5b50\u91cc\u51fa\u95e8\u4e86\u3002"} +{"id": "6002801", "video_name": "22c02447-684e-5277-9722-628a1c3643e7", "text": "\u4e3b\u5e2d\u5927\u81e3Chanakya\u4e3b\u6301\u6cd5\u5ead\u8bc9\u8bbc\u3002"} +{"id": "6004492", "video_name": "a76bc6d8-9477-5c72-a9ff-4ac35f3cd835", "text": "\u5c55\u793a\u808c\u8089\uff0c\u5fae\u5c0f\u7684\u52a8\u4f5c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006314", "video_name": "f5104878-bff5-5049-b8e1-a6a46a7a3c85", "text": "\u7537\u5b69\u7684\u7279\u5199\uff0c\u77ed\u68d5\u8272\u5934\u53d1\uff0c4K\u5206\u8fa8\u7387\uff0c16:9\uff0c60 fps\uff0c\u5728\u957f\u6905\u4e0a\u4ea4\u8c08\u3002"} +{"id": "3006665", "video_name": "e10a344a-5961-5aa8-ad29-4f740abaadcb", "text": "\u4f60\u80fd\u7528\u4e09\u7ef4\u52a8\u753b\u98ce\u683c\u5236\u4f5c\u51fa\u68ee\u6797\u91cc\u7684\u9e1f\u3001\u677e\u9f20\u3001\u8001\u9f20\u3001\u732b\u3001\u72d7\u3001\u6d77\u72f8\u548c"} +{"id": "3004069", "video_name": "d921615c-e1fc-517a-a300-5f2d8efff6ba", "text": "\u5728\u5386\u53f2\u4e0a\uff0c\u5b83\u593a\u53bb\u4e86\u65e0\u6570\u4eba\u7684\u6027\u547d\u3002"} +{"id": "2007883", "video_name": "9451a842-6f8a-5b23-bfe1-d702509cc598", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u62ff\u7740\u4e00\u53ea\u67ef\u57fa\u5728\u8349\u5730\u4e0a\u73a9\u800d\uff0c\u9762\u65e0\u8868\u60c5\u3002"} +{"id": "4002652", "video_name": "7a1de3f4-bb14-582f-b65f-05528840aa19", "text": "\u53ef\u7231\u7684\u5973\u5b69\u6b63\u5728\u4ee5\u52a8\u6f2b\u98ce\u683c\u9605\u8bfb\u4e00\u672c\u4e66\u3002\n\nSource sentence: I enjoy listening to music while I work out at the gym. \n\n\u6211\u559c\u6b22\u5728\u5065\u8eab\u623f"} +{"id": "3006139", "video_name": "2f6602b5-e344-5c25-846b-7bd2c08a7f66", "text": "\u4e00\u4e2a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u524d\u8df3\u821e\u7684\u5973\u4eba\u3002"} +{"id": "1005961", "video_name": "6d869177-ebe0-5174-9883-8402492f0b5e", "text": "\u58eb\u5175\u4eec\u7528\u76fe\u724c\u548c\u5251\u51fb\u9000\u9ecf\u7cca\u7cca\u7684\u7eff\u8272\u58eb\u5175\u3002\u9644\u5e26\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3005754", "video_name": "5435f563-5a76-5e1e-b279-a0d2b23c4e22", "text": "\u4e00\u4e2a\u7a7f\u7ea2\u8272\u6bdb\u8863\u7684\u7537\u5b69\uff0c\u9762\u5411\u955c\u5934\uff0c\u6e05\u6670\u7684\u9ec4\u8272\u80cc\u666f\u3002"} +{"id": "3006742", "video_name": "455ce8db-3bdc-5fb2-ab96-5d203523af7f", "text": "\u4e00\u4e2a\u6218\u58eb\u5411\u4ed6\u7684\u654c\u4eba\u5927\u558a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8003905", "video_name": "c2eb564b-b76a-56fb-a322-cf1bb1e4c4a3", "text": "\u9640\u87ba\u5f0f\u6298\u78e8\u7684\u6b22\u4e50\u8f6c\u76d8\u2014\u20141890\u5e74\u4ee3\u7684\u795e\u79d8\u9ed1\u767d\u6a21\u7cca\u7247\u6bb5\uff0c\u7531\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7"} +{"id": "2006315", "video_name": "7d9c100d-5a90-5163-aa53-eaeec62f5129", "text": "Source sentence: \u4e3b\u795e\u6fc0\u7d20\u51a5\u60f3\uff0c\u592a\u7a7a\u80cc\u666f\uff0c\u661f\u7cfb\n\nTranslation: \u4e3b\u795e\u6fc0\u7d20\u51a5\u60f3\uff0c\u592a\u7a7a\u80cc\u666f\uff0c\u661f\u7cfb"} +{"id": "2003930", "video_name": "4b2745ae-3286-545a-95a6-4c8d54e25113", "text": "\u8be2\u95ee\u4ed6\u4e3a\u4ec0\u4e48\u751f\u6c14\u7684\u52a8\u6f2b\u3002"} +{"id": "0005191", "video_name": "1665d73e-b16c-52fe-a293-670e8af928b0", "text": "\u5df4\u897f\u8d2b\u6c11\u7a9f\u5145\u6ee1\u751f\u673a\u7684\u80cc\u666f"} +{"id": "8001841", "video_name": "97955818-0c44-50b7-8005-ecf19abc6a0a", "text": "\u4e00\u53ea\u63c9\u5408\u4e86\u8c7a\u72fc\u548c\u4eba\u7c7b\u7684\u5973\u6027\uff0c\u5316\u8eab\u4e3a\u963f\u52aa\u6bd4\u65af\uff0c\u5177\u5907\u9ad8\u8d35\u3001\u5a01\u4e25\u7684\u6c14\u8d28\u3002\u5979\u62e5"} +{"id": "3004091", "video_name": "948d696b-1407-5b64-b39d-9902de1befe8", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u602a\u517d\u5728\u4e91\u5c42\u4e0a\u7a7a\u98de\u884c\uff0c\u8ffd\u9010\u4e00\u67b6\u98de\u673a\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun. \n\n\u90a3\u53ea"} +{"id": "2007601", "video_name": "3b3602a1-96c3-564e-800c-9aefbdb18e76", "text": "\u8815\u52a8\u89c6\u89d2\u3001\u8d85\u7ea7\u805a\u7126\u3001\u9ad8\u52a8\u6001\u8303\u56f4\u6210\u50cf\u3001\u65e5\u5f0f\u4e0e\u5317\u6b27\u98ce\u683c\u76f8\u7ed3\u5408\u7684\u5ba4\u5185\u8bbe\u8ba1\u623f\u95f4\u3002"} +{"id": "4002539", "video_name": "27094187-5056-503b-87b3-33ee16ec2f62", "text": "\u6c99\u6f20\u4e2d\u6b7b\u4ea1\u690d\u7269\u7684\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "1003995", "video_name": "4a03885e-be4b-5c9f-9b2d-5dff3774e8d0", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u9cc4\u9c7c\u6b63\u5728\u6c34\u4e2d\u6e38\u6cf3\uff0c\u9cc4\u9c7c\u6b63\u5728\u6c34\u9762\u4e0a\u6e38\u6cf3\uff0c\u5236\u9020\u51fa\u4e00\u4e2a\u4e09\u7ef4\u573a\u666f\u3002"} +{"id": "3004279", "video_name": "b3f9704c-e893-5435-b202-70f685ccd689", "text": "\u53ef\u7231\u7684\u5706\u80d6\u72d7\uff0c\u5927\u773c\u775b\uff0c3D\u6548\u679c\uff0c\u53d7\u5230\u76ae\u514b\u65af\u548c\u8fea\u58eb\u5c3c\u5947\u5e7b\u3001\u6d3b\u6cfc\u7684\u98ce"} +{"id": "2005187", "video_name": "5933897b-e68a-5db9-9562-26353226dce6", "text": "\u4e00\u4e2a\u98de\u673a\u98de\u8fc7\u4e00\u4e2a\u98de\u884c\u4e2d\u7684\u57ce\u5e02\u3002"} +{"id": "4002353", "video_name": "5308392b-7235-5ab9-8fd6-ee88f71d58c5", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u4f5b\u6797\u3001\u7af9\u6797\u4e4b\u4e2d\uff0c\u5730\u4e0a\u722c\u7740\u8682\u8681\u3002"} +{"id": "1004762", "video_name": "58227203-a2ae-566d-ac4d-2338f04c1acb", "text": "\u53ef\u7231\u7684\u5973\u5b69\u6b63\u7a7f\u8fc7\u8def\u4e0a\uff0c\u7531Pixar 3D\u6df7\u5408\uff0c4K\u5206\u8fa8\u7387\uff0c\u5e7f\u89d2\u7535\u5f71\u62cd\u6444\u3002"} +{"id": "2003871", "video_name": "38e19b52-a662-54e3-a68b-e2f5079e350c", "text": "\u7ec6\u80de\u6c34\u5e73\u76843D\u52a8\u753b"} +{"id": "2003283", "video_name": "3c98503a-7ec8-5007-bd5f-9b80d6ef015e", "text": "\u5974\u96b6\u5728\u6b96\u6c11\u65f6\u4ee3\u8bb2\u8ff01821\u5e74\u7684\u6545\u4e8b\u3002"} +{"id": "2006585", "video_name": "5769d2ce-5bcf-59f1-8f60-fa3157bd93eb", "text": "\u7ebd\u7ea6\u3002\u60f3\u8981\u89c6\u9891\u901a\u8bdd\u3002"} +{"id": "0006296", "video_name": "2a2b7101-d0ae-53f0-9261-4d71b50f3cfd", "text": "\u9a91\u6469\u6258\u8f66\u7684\u7537\u5b50\u4ee5\u9ad8\u901f\u649e\u5411\u5899\u58c1\uff0c\u7206\u70b8\uff0c\u788e\u7247\u56db\u6563\u3002"} +{"id": "4002356", "video_name": "89641567-5d26-5697-bdc6-5950d39d35e9", "text": "\u5361\u901a\u9891\u9053 \u4fe1\u606f: SAIOJI (\u5b57\u4f53\uff1a\u6f2b\u753b)"} +{"id": "2006670", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "\u5168\u666f\u955c\u5934\uff0c\u7537\u5b50\u5403\u85af\u7247\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "1005508", "video_name": "656d03b2-a95c-5e24-9ce0-0b78b9ff8d4b", "text": "\u5b64\u72ec\u7684\u76ee\u51fb\u8bc1\u4eba\u662f\u6069\u91cc\u514b\u00b7\u5361\u96f7\u7279\u52aa\u6258\u00b7\u535a\u5854\u535a\u58eb\uff0c\u57281955\u5e74\u5728\u59d4\u5185\u745e\u62c9\u7684\u4e00\u6b21U"} +{"id": "6004249", "video_name": "3ee02ff7-52f4-5146-bcc6-8c8026b8bf74", "text": "8k\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c20\u5c81\u7537\u5b50\u60ca\u6050\u5730\u6ce8\u89c6\u77403\u4e2a\u5371\u9669\u800c\u90aa\u6076\u7684\u7075\u9b42\u3002"} +{"id": "2006653", "video_name": "542f6eff-7bdb-53c0-bc56-7a084224a748", "text": "\u4ee5\u8272\u5217\u6709\u6db2\u6001\u9ec4\u91d1\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4002736", "video_name": "c5a7a925-eb15-5036-b7b4-5816759b5a8a", "text": "\u5c55\u793a\u4e00\u4e2a\u4eba\u7528\u5e03\u62b9\u62ed\u624b\u673a\u3002"} +{"id": "1005861", "video_name": "6be7b183-133a-5fa0-8bf8-667240d80155", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u6bdb\u6bdb\u866b\u5728\u5b87\u822a\u5458\u7684\u5934\u76d4\u91cc\u722c\u884c\u3002"} +{"id": "6003951", "video_name": "8c450e8b-afd0-5591-a2ea-81535e2744a7", "text": "\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u65e9\u6668\u7684\u8001\u54e5\u7279\u5f0f\u6559\u5802\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "4004315", "video_name": "74923d5a-48bd-578a-a416-b19e89de8968", "text": "\u4e00\u540d\u7537\u5b50\u7b2c\u4e00\u6b21\u62b1\u7740\u4ed6\u65b0\u751f\u7684\u513f\u5b50\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5149\u7ebf\u7f8e\u4e3d\u3002"} +{"id": "0006590", "video_name": "2f1dce37-859f-5fc3-8439-916a8cda31d1", "text": "\u5728\u57ce\u5e02\u4e2d\u5fc3\u753b\u4e00\u5bb6\u7199\u7199\u6518\u6518\u7684\u81ea\u884c\u8f66\u5e97\uff0c\u987e\u5ba2\u5728\u5468\u56f4\u6d4f\u89c8\u3002"} +{"id": "4002848", "video_name": "7f9a48aa-34a0-506f-9630-4c899f6e861d", "text": "\u626d\u52a8\u8eab\u4f53\uff0c\u8f7b\u8f7b\u5730\u8bf4\uff0c\u98ce\u628a\u5934\u53d1\u4ece\u5de6\u8fb9\u5439\u5230\u53f3\u8fb9\u3002\u9644\u4ef61\u3002"} +{"id": "7003523", "video_name": "9b38dd19-b940-53e7-8a3a-32fdb3b01c87", "text": "\u4ee5 Beatrix Potter \u98ce\u683c\u4e3a\u4e3b\u9898\u7684\u8001\u5f0f\u5e38\u6625\u85e4\u548c\u82b1\u5349\u8fd0\u52a8\u56fe\u5f62\u3002"} +{"id": "3004093", "video_name": "8f25ee8e-1a18-58fa-ae1e-b556166f7e11", "text": "\u5728\u89c6\u9891\u4e2d\u5236\u4f5c\u4e00\u4e2a\u6709\u79fb\u52a8\u661f\u661f\u548c\u4e00\u4e2a\u884c\u8d70\u7684\u7537\u4eba\u7684\u5b87\u5b99\u573a\u666f\u3002"} +{"id": "2006611", "video_name": "ddcb0767-fc21-5bd2-a994-cee43e08af3a", "text": "\u5730\u7403\u4e0a\u6d8c\u51fa\u7684\u6c34\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u76848K\u56fe\u50cf\u3002"} +{"id": "3005822", "video_name": "d206e865-aebb-5683-b8d4-4f16d5185ab1", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u65cb\u8f6c\u547c\u5566\u5708\u7684\u52a8\u753b\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "3006522", "video_name": "06b8b5ac-225b-50f4-8571-fc1e7336be8a", "text": "\u4e00\u4e2a\u673a\u68b0\u732b\u5934\u9e70\uff0c\u821e\u53f0\u89c6\u89c9\uff0c\u9ed1\u6697\u98ce\u683c\uff0c8\u62cd\u95ea\u5149\u706f\u968f\u97f3\u4e50\u95ea\u70c1\uff0cc4d\u5236"} +{"id": "7003443", "video_name": "f75310af-992d-5c93-a210-027260d211a6", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u4f7f\u7528\u91d1\u5c5e\u63a2\u6d4b\u5668\u641c\u7d22\u3002"} +{"id": "0006152", "video_name": "2764e8a2-d50d-510f-bf7a-780dbb1d097d", "text": "\u4e00\u5f20\u7f8e\u4e3d\u7684\u56fe\u7247\uff0c\u4e2d\u95f4\u6709\u4e00\u9053\u6805\u680f\uff0c\u5468\u56f4\u662f\u4e00\u7247\u68ee\u6797\u52a8\u7269\u5c0f\u5c4b\u548c\u68ee\u6797\uff0c\u80cc\u666f\u6709\u6811\u3001\u4e91\u548c"} +{"id": "6002593", "video_name": "7f04c791-f97e-572e-9962-0e2e4e2920a9", "text": "\u53e4\u8463\u98ce\u683c\u7684\u5c0f\u94a5\u5319\u5728\u7a7a\u4e2d\u65cb\u8f6c\u3002"} +{"id": "1005800", "video_name": "6ab52a49-f0b8-514d-a8a8-6b1df15116c8", "text": "\u4e00\u4e2a\u4eba\u7c7b\u72ee\u5b50\u4f5c\u4e3a\u4e3b\u6301\u4eba\u4e3b\u6301\u7535\u53f0\u8282\u76ee\u3002"} +{"id": "2003217", "video_name": "506450f9-87e1-5704-aba5-6ae5faaa125b", "text": "\u4e00\u4e2a\u6709\u6570\u5b57\u4eba\u5de5\u667a\u80fd\u80cc\u666f\u7684\u4eba\u5728\u601d\u8003\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "0003943", "video_name": "003d858c-f20d-583c-be84-66af3bd11b8a", "text": "1984\u5e74\u7684\u89c6\u9891\uff0c\u624b\u73a9\u77f3\u5934\u526a\u5200\u5e03\u3002"} +{"id": "2007659", "video_name": "6fded791-258d-5ebe-993d-06b416904e99", "text": "\u5730\u7403\u5347\u8d77\uff0c3D\uff0c\u5206\u4f53\u7167\u660e\uff0c16k\uff0c\u903c\u771f\u7167\u7247\u3002"} +{"id": "7002519", "video_name": "72afbca1-0a54-502f-9669-ce92439ae75e", "text": "\u4e00\u4e2a\u7537\u5b69\uff0c\u4ed6\u7684\u624b\u53d8\u6210\u4e86\u8033\u6735\uff0c\u542c\u7740\u6363\u788e\u7684\u571f\u8c46\u3002"} +{"id": "2004270", "video_name": "13d8d249-0c2d-5ea9-aaed-7db962b65219", "text": "\u514b\u62c9\u82cf\u65af\u662f\u7f57\u9a6c\u6700\u5bcc\u6709\u7684\u4eba\u4e4b\u4e00\uff0c\u4ed6\u6e34\u671b\u5728\u519b\u4e8b\u4e0a\u53d6\u5f97\u8363\u8000\uff0c\u4ee5\u5339\u914d\u4ed6\u7684\u653f\u6cbb\u5f71\u54cd\u529b"} +{"id": "8001150", "video_name": "9db8c991-0373-5081-ac31-5198f94ffa13", "text": "\u50cf\u7d20\u827a\u672f\uff0c\u9ed1\u6697\u4e2d\u7684\u4e00\u68f5\u6811\uff0c\u52a8\u753b\u6548\u679c\u3002"} +{"id": "3003497", "video_name": "3698274e-5b64-5045-9374-9649ba7345e1", "text": "\u4ee5\u73b0\u5b9e\u4e3b\u4e49\u624b\u6cd5\u63cf\u7ed8\u79c3\u9876\u7537\u4eba\u963f\u5229\u65af\u7279\u00b7\u514b\u52b3\u5229\uff0c\u6d41\u6d3e\u4e3a\u57ce\u5e02\u5947\u5e7b\uff1a\u9b54\u6cd5\u3002\u91c7\u7528\u7c73"} +{"id": "3003042", "video_name": "9141a0e7-7042-53db-8fb8-91b0cdacc7a8", "text": "\u6700\u9ad8\u7ea7\u522b\u7684\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u609f\u7a7a\u624b\u6301\u4e03\u9897\u9f99\u73e0\u3002"} +{"id": "8001705", "video_name": "aef5c287-88d9-5d8c-b200-a1ac42ef80de", "text": "\u7070\u8272\u5927\u7406\u77f3\u96d5\u50cf\u7684\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4e0d\u65ad\u53d8\u5f62\u548c\u53d8\u8eab\u4e3a\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u3002"} +{"id": "3003674", "video_name": "b888f4d0-8236-584d-9470-d66f701512df", "text": "\u4e00\u68f5\u5723\u8bde\u6811\uff0c\u540e\u9762\u662f\u70df\u82b1\u3002"} +{"id": "8003150", "video_name": "3bca2c79-8edf-56bb-bf86-058a0eb2cc1e", "text": "30\u5c81\u7684\u5973\u4eba\u4ef0\u671b\u5929\u7a7a\uff0c\u56e0\u4e3a\u6709\u7f8e\u5bb9\u4ea7\u54c1\u7684\u96e8\u843d\u4e0b\u3002"} +{"id": "8002330", "video_name": "ca9eb397-fb23-5bf1-bbd5-2c3785c0dfc5", "text": "\u592a\u7a7a\u4e2d\u6d6e\u52a8\u7684\u5634\u5df4\uff0c\u8ff7\u5e7b\u7684\u3001\u52fe\u52d2\u51fa\u8f6e\u5ed3\u7684\u5634\u5df4\uff0c\u4e09\u7ef4\u6e32\u67d3\u3002"} +{"id": "1006202", "video_name": "71af25a0-9591-5919-a991-eb1b27469475", "text": "\u8d85\u7ea7\u82f1\u96c4\u8d85\u4eba\uff0c\u808c\u8089\u53d1\u8fbe\uff0c\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u76d4\u7532\uff0c\u5177\u6709\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "1006741", "video_name": "7b72546d-f39a-5144-8d66-3d9f95046aaa", "text": "\u5154\u5b50\u5728\u7f8e\u4e3d\u7684\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u5468\u56f4\u957f\u6ee1\u4e86\u957f\u8349\uff0c\u53f2\u8bd7\u822c\u7684\u5929\u7a7a\u4e2d\u592a\u9633\u6b63\u5728\u5347\u8d77\uff0c\u6444\u50cf\u673a"} +{"id": "3005670", "video_name": "3c786887-581d-5a17-a7d6-b85847af3456", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u9910\u5385\uff0c\u706f\u5149\u660f\u6697\uff0c\u5c55\u73b0\u4e86\u4e00\u5bf9\u60c5\u4fa3\u4eab\u53d7\u6d6a\u6f2b\u665a\u9910\u7684\u573a\u666f\u3002"} +{"id": "2003195", "video_name": "af640b9e-b5be-5414-bb6e-19fbacc31b04", "text": "\u5de8\u5927\u7684\u6f6e\u6c50\u6ce2\u6d6a\u6b63\u5728\u63a5\u8fd1\u5f00\u666e\u6566\u706f\u5854\u3002"} +{"id": "2006680", "video_name": "4e65bf72-db64-55df-93ca-ce2e22185ab3", "text": "\u4e00\u4e2a\u6b63\u5728\u6784\u5efa\u53ef\u6269\u5c55\u6570\u636e\u7ba1\u9053\u548c\u6570\u636e\u4eea\u8868\u677f\u7684\u6570\u636e\u5de5\u7a0b\u5e08\u3002"} +{"id": "2006740", "video_name": "4b6c7d02-4e7a-5f4a-811f-1196f11cd3ad", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u5065\u8eab\u7684YouTube\u77ed\u7247\u3002\u8bbe\u7f6e\uff1a\u5728\u89c6\u9891\u4e2d\u663e\u793a\u5b57\u5e55\u3002"} +{"id": "2007974", "video_name": "0e08b153-77dc-5427-a74b-70fe6bc143f7", "text": "\u8ba9\u56fe\u50cf\u5728\u8349\u5730\u4e0a\u8dd1\u8fc7\u53bb\uff0c\u4fef\u77b0\u6574\u4e2a\u573a\u666f\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "5001734", "video_name": "3caa1978-2edc-5569-8481-98668f4949dc", "text": "1979\u5e74\uff0c\u4e00\u4e2a\u4eba\u6b65\u884c\u5728\u5df4\u9ece\u7684\u8857\u9053\u4e0a\uff0c4K\u6e05\u6670\uff0c\u5bf9\u7126\u51c6\u786e\uff0c\u91c7\u7528\u7279\u6280\u8272\u5f69\u548c\u957f\u7126\u955c\u5934\uff0c\u76ae"} +{"id": "5001020", "video_name": "3fecffa3-09c4-5fa6-b74c-2e6a69666935", "text": "\u7281\uff1a\u4ed6\u4eec\u7528\u9752\u94dc\u91d1\u5c5e\uff08\u540e\u6765\u662f\u94c1\u91d1\u5c5e\uff09\u5236\u4f5c\u575a\u56fa\u7684\u5de5\u5177\u548c\u6b66\u5668\u3002"} +{"id": "6002183", "video_name": "d1223646-ac76-5e2e-9dc7-26fe7b6f9c8f", "text": "\u9ad8\u6d1b\u514b\u00b7\u6bc1\u706d\u8005\u5403\u7740\u829d\u58eb\u6c49\u5821\uff0c\u7136\u540e\u4ee54k\u5206\u8fa8\u7387\u3001\u6e05\u6670\u7684\u753b\u9762\u6467\u6bc1\u9ea6\u5f53\u52b3"} +{"id": "7002848", "video_name": "7fbeb512-dfff-5d4b-ade4-072fab43a804", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\uff0c\u770b\u7740\u9910\u5385\u91cc\u7684\u4e00\u5bf9\u60c5\u4fa3\u5531\u6b4c\u3002"} +{"id": "4003045", "video_name": "7732dc38-1ff4-5e2b-b09f-41db4d066e4c", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7684\u8096\u50cf\uff0c\u8eab\u7a7f\u516c\u5143\u524d100\u5e74\u7684\u7f57\u9a6c\u767e\u592b\u957f\u670d\u88c5\u3002"} +{"id": "8002595", "video_name": "26dce1f3-f88e-5ee8-a732-907a615d93c5", "text": "\u706b\u5f71\u5fcd\u8005\u548c\u96cf\u7530\u5728\u6ee1\u6708\u4e0b\u63a5\u543b\uff0c\u8d85\u903c\u771f\u7684\u5168\u9ad8\u6e05\u3002"} +{"id": "0006902", "video_name": "3513dfc3-b1ce-553d-862d-7fe9e3728567", "text": "\u5728\u4e00\u4e2a\u8212\u9002\u7f8e\u4e3d\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u53ea\u767d\u732b\u5728\u73a9\u9f13\u3002"} +{"id": "7004883", "video_name": "43e9990b-2a2f-50c1-835c-86ed7213ffdd", "text": "\u771f\u5b9e\u7684\u4eba\u5750\u5728\u529e\u516c\u5ba4\u91cc\uff0c\u7528\u7b14\u8bb0\u672c\u7535\u8111\u5de5\u4f5c\u3002"} +{"id": "8001605", "video_name": "60533bfc-27f4-5ccf-8706-786190a63af7", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5c0f\u5973\u5b69\u80cc\u7740\u4e66\u5305\uff0c\u7a7f\u7740\u6821\u670d\uff0c\u5728\u56de\u5bb6\u7684\u8def\u4e0a\u6b22\u5feb\u5730\u8df3\u8dc3\u7740\u3002\u5979\u7684\u8138\u4e0a\u5145\u6ee1"} +{"id": "0004305", "video_name": "06c5b563-2e63-5f41-9177-9527aa92a0d9", "text": "Translation: 1980\u5e74\u7f57\u7eb3\u5fb7\u00b7\u91cc\u6839\u5728\u5185\u9601\u4f1a\u8bae\u4e0a\u8bb2\u8bdd\u3002"} +{"id": "0005537", "video_name": "1c77602f-22fd-5398-b820-77d57e05c46e", "text": "\u6eda\u52a8 Instagram\uff0c\u51e0\u4e4e\u6ca1\u6709\u6e05\u9192\u3002\u4e00\u4e2aPOV\u955c\u5934\u3002"} +{"id": "2003738", "video_name": "0ef8e007-cb61-5f77-9d25-6240bf1e3c55", "text": "\u8fbe\u65af\u7ef4\u8fbe\u9a91\u7740\u6469\u6258\u8f66\uff0c\u624b\u6301\u5149\u5251\u3002"} +{"id": "7004516", "video_name": "f9eab55b-2c90-513b-a835-f650f98f5f23", "text": "\u4e00\u4f4d\u98de\u884c\u5458\u9a7e\u9a76\u655e\u7bf7\u98de\u673a\u7a7f\u8d8a\u4e91\u5c42\uff0c\u98ce\u5439\u62c2\u7740\u4ed6\u7684\u5934\u53d1\u3002"} +{"id": "1004429", "video_name": "51f29b05-6f36-5bd3-8615-698618a2714e", "text": "\u5760\u6bc1\u6218\u6597\u673a\u5728\u649e\u51fb\u524d\u7684\u5ea7\u8231\u89c6\u89d2\u3002"} +{"id": "2006278", "video_name": "2384ca87-682c-5331-bcfe-cf425d4274cf", "text": "\u4e00\u540d\u91d1\u53d1\u5973\u5b69\uff0c25\u5c81\uff0c\u7559\u7740\u957f\u53d1\uff0c\u7a7f\u7740\u767d\u8272\u76ae\u5939\u514b\uff0c\u7ad9\u5728\u6c99\u6f20\u4e2d\u7684\u52a0\u6cb9\u7ad9\u3002\u5979\u5750\u8fdb"} +{"id": "0006780", "video_name": "330b7caf-2b26-5e6a-b79a-caa3fb88f293", "text": "\u4e9a\u5386\u514b\u65af\u5728\u4e00\u4e2a\u79d8\u5bc6\u623f\u95f4\u91cc\u627e\u5230\u4e00\u672c\u65e7\u65e5\u8bb0\u3002\u5c0f\u7ec4\u805a\u5728\u4e00\u8d77\uff0c\u9605\u8bfb\u65e5\u8bb0\u6761\u76ee\u3002"} +{"id": "2007603", "video_name": "9caf8891-0e81-5d54-99fc-1276534db62f", "text": "\u5728\u6d77\u6ee9\u4e0a\u6f2b\u6b65\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c3D\u903c\u771f\u3002"} +{"id": "2003224", "video_name": "9c77e898-efb5-51c4-bb63-ef9069e9c369", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u5728\u516c\u4e3b\u5468\u56f4\u7684\u82b1\u56ed\u91cc\uff0c\u6709\u4e03\u4e2a\u5c0f\u5973\u5b69\u624b\u62c9\u624b\u56f4\u6210\u4e00\u5708\u8df3\u821e\u3002\u4e00\u53ea"} +{"id": "2007708", "video_name": "f797b025-7485-529e-90f5-209f740bb73e", "text": "\u661f\u9645\u513f\u7ae5\u97f3\u4e50\u9891\u9053\u7684\u6807\u5fd7\u8bbe\u8ba1\u3002"} +{"id": "1003242", "video_name": "3bbb764c-4c1f-5ef9-8108-ab648e98d80d", "text": "\u6d77\u5730\u5bb6\u5ead\u611f\u6069\u8282\u665a\u5bb4\u805a\u4f1a\uff0c\u4e0e\u62c9\u4e01\u5973\u4eba\u548c\u7537\u4eba\u4e00\u8d77\u7b11\u58f0\u548c\u5de5\u4f5c\u3002\u6162\u52a8\u4f5c\u6444\u50cf\u673a\u5728\u684c\u5b50\u4e0a\u770b\u5230"} +{"id": "2007454", "video_name": "98a0c4ab-c358-5762-99ae-788df91cd82a", "text": "\u4e00\u90e8\u4ee5\u5361\u901a\u9a6c\u4e3a\u7279\u8272\u7684\u7535\u5f71\u89c6\u9891"} +{"id": "0006660", "video_name": "30930991-3a87-546f-8e0b-27eaaf0b89ea", "text": "\u9053\u8def\uff0c\u5e9f\u5f03\u7684\u57ce\u9547\uff0c\u96fe\uff0c\u9ed1\u6697\uff0c\u591c\u665a\u3002"} +{"id": "4002581", "video_name": "3bd91b72-02ef-5a33-b811-a7e7d5c25bad", "text": "\u6c99\u7279\u963f\u62c9\u4f2f\u7684\u5b66\u6821\u4ea4\u901a\u4f1a\u5728\u623f\u95e8\u53e3\u505c\u4e0b\u6765\uff0c\u63a5\u8d70\u7a7f\u7740\u8863\u670d\u7684\u5b69\u5b50\u56de\u5bb6\uff0c\u76ae\u514b\u65af\u827a"} +{"id": "4004182", "video_name": "0c4fc38a-65d9-58fb-b61d-77d73e9da2d4", "text": "\u73b0\u4ee3\u8c6a\u534e\u7684\u6c83\u5c14\u6c83XC90\u6c7d\u8f66\u6025\u901f\u9a76\u8fc7\u9053\u8def\uff0c\u6c83\u5c14\u6c83\u5546\u4e1a\u5e7f\u544a\uff0c\u7535\u5f71\u822c\u76844k\u62cd\u6444\uff0c24p\u52a8\u6001"} +{"id": "3005137", "video_name": "dd0ad518-d88a-572f-9929-165a6fb771ef", "text": "\u722c\u5c71\u3001\u5929\u6c14\u5f88\u597d\u3001\u4eba\u4eec\u4e50\u5728\u5176\u4e2d\u3002"} +{"id": "8002539", "video_name": "4667bad6-1477-557f-bc22-b36459f49927", "text": "\u4e00\u4e2a\u9b3c\u9b42\u8eb2\u5728\u9634\u5f71\u4e2d\uff0c\u9ed1\u6697\u7684\u529e\u516c\u5ba4\uff0c4K\u3002"} +{"id": "8001375", "video_name": "a64f7e67-c5a2-5621-9774-051ebc60d197", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u7070\u8272\u5976\u5976\u6b63\u5728\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "3006561", "video_name": "ea3bd6e8-1b56-517f-9772-b11a511571bb", "text": "\u6709\u4e9b\u4eba\u5728\u665a\u4e0a\u4f1a\u5c16\u53eb\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "8001734", "video_name": "9be5b49a-43ec-55d0-851c-dedc50ac43da", "text": "\u5973\u5b69\u547c\u5438\u7740\uff0c\u80f8\u90e8\u6447\u66f3\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2004420", "video_name": "faa81b3d-eddc-55d0-901f-410a63d59883", "text": "\u9640\u65af\u59a5\u8036\u592b\u65af\u57fa\u5728\u56fe\u4e66\u9986\u5199\u4e66\uff0c\u800c\u6444\u50cf\u673a\u5219\u5411\u5916\u62c9\u8fdc\u3002"} +{"id": "6004260", "video_name": "69ce336a-04e0-5280-acaf-28e33b41cecd", "text": "\u4f18\u7f8e\u7684\u81ea\u7136\u955c\u5934\u79fb\u52a8\u7684\u52a8\u753b\u3002"} +{"id": "2006668", "video_name": "cfba9f33-88e3-55e4-806a-e8e210d6bacc", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u7ebd\u7ea6\u7f13\u6162\u5730\u8d70\u8def\u3002"} +{"id": "2004954", "video_name": "e8f7636d-416e-5454-81aa-4ce4e789412e", "text": "\u5168\u7403\u6700\u5927\u7684\u5e99\u5b87\uff0c\u9876\u90e8\u6709\u7ea2\u65d7\uff0c\u5728\u7a7a\u4e2d\u4fef\u77b0"} +{"id": "1004643", "video_name": "56597659-b11c-5a87-9a12-aebfeaba6265", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u4eba\u8d64\u7740\u811a\uff0c\u4ed6\u7684\u811a\u5f88\u5927\u4e5f\u5f88\u5e72\u51c0\u3002\u5199\u5b9e\u98ce\u683c\u3002"} +{"id": "2005819", "video_name": "4c677bf1-a939-5d8a-a351-5227c39063bf", "text": "\u6587\u672c\u5145\u6ee1\u4e00\u4e2a\u4f4d\u7f6e\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "3005536", "video_name": "568aacb7-a454-5bc0-bc40-a19afa5578e1", "text": "\u4e00\u4e2a\u5deb\u5e08\u5750\u5728\u4ed6\u5854\u9876\u7684\u623f\u95f4\u91cc\u3002\u4ed6\u6b63\u5728\u5438\u7740\u4e00\u6839\u534e\u4e3d\u7684\u70df\u6597\uff0c\u6c89\u601d\u7740\u4e00\u672c\u53e4\u8001\u7684"} +{"id": "1004786", "video_name": "5870ca0a-2c7f-5700-8f32-4b72f2c8f0c2", "text": "\u53e4\u57c3\u53ca\u6218\u4e89\u7684\u7eaa\u5f55\u7247\u62cd\u6444\uff0c\u65e5\u843d\u5149\u7ebf\uff0c\u6ed1\u8f68\u62cd\u6444\uff0c\u955c\u5934\u8000\u6591\uff0c\u9ad8\u54c1\u8d28\uff0c\u53e4"} +{"id": "3003852", "video_name": "9bf6ddac-9c5b-53e9-a3fe-2a581072962d", "text": "\u4e00\u4e2a\u6765\u81ea\u8d2b\u7a77\u6751\u5e84\u5bb6\u5ead\u7684\u7537\u5b69"} +{"id": "2007893", "video_name": "b7c06114-f653-5946-9dca-ca4ecc43a209", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u201c\u65f6\u4ee3\u201d\u5de1\u6f14\u4e2d\u7a7f\u7740\u4e00\u4ef6\u4ee5\u201c\u540d\u58f0\u201d\u4e3a\u4e3b\u9898\u7684\u793c\u670d\u3002"} +{"id": "1006181", "video_name": "7131aaac-b6f7-52b1-9c72-b1128224e690", "text": "\u573a\u666f\uff1a\u7528\u6e29\u6696\u3001\u8212\u9002\u7684\u73af\u5883\u8425\u9020\u51fa\u4e00\u4e2a\u6e29\u99a8\u7684\u611f\u89c9\uff0c\u53ef\u4ee5\u4f7f\u7528\u67d4\u548c\u7684\u989c\u8272\u548c\u81ea\u7136\u6216\u5e73\u9759\u7684\u98ce"} +{"id": "8003883", "video_name": "f9aa7a54-feb3-5a09-8180-7f6e072362ab", "text": "\u767d\u77ee\u661f\u5728\u5b87\u5b99\u4e2d\u7684\u8d85\u65b0\u661f\u7206\u70b8\uff0c\u7167\u7247\u903c\u771f\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u9ad8\u6e05\uff0c\u6c1b\u56f4\u611f\uff0c"} +{"id": "5001572", "video_name": "cc31b668-7f55-5420-8709-fbee2a72f5a4", "text": "\u72d7\u5728\u5730\u7403\u4e0a\u8df3\u821e\uff0c\u773c\u775b\u6234\u7740\u773c\u955c\u3002"} +{"id": "6002854", "video_name": "1c69b6ed-ae04-5bf4-bcb3-796437f7ca93", "text": "\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u57ce\u5e02\u91cc\uff0c\u4e00\u4e2a\u540d\u53eb\u4e9a\u5386\u514b\u65af\u7684\u5e74\u8f7b\u7537\u5b69\u68a6\u60f3\u7740\u53c2\u52a0\u9a6c\u62c9\u677e\u6bd4\u8d5b\u3002\u4f46\u662f\u4ed6"} +{"id": "7003845", "video_name": "d1539df4-b70f-5f09-baee-6497552a072b", "text": "\u91ca\u8fe6\u725f\u5c3c\u4f5b\u662f\u68b5\u6587\u51c0\u738b\u548c\u6469\u8036\u592b\u4eba\u7684\u513f\u5b50\u3002"} +{"id": "3005582", "video_name": "32f7f4ad-eaad-5d84-9753-3b0b8d7a670b", "text": "\u4e00\u4e2a\u6765\u81ea\u5c0f\u4eba\u56fd\u7684\u7537\u4eba\u5750\u5728\u7b3c\u5b50\u91cc\u3002"} +{"id": "0006061", "video_name": "25f7ea94-df08-5b73-aa8d-bb69af03f590", "text": "\u5728\u58a8\u897f\u54e5\u57ce\u7684\u4e00\u5ea7\u516c\u56ed\u91cc\uff0c\u65e0\u5bb6\u53ef\u5f52\u7684\u5b69\u5b50\u4eec\u73a9\u7740\u6350\u8d60\u7684\u73a9\u5177\uff0c\u4ee5\u6b22\u5feb\u3001\u5361\u901a\u822c"} +{"id": "2003211", "video_name": "c01032ff-16e1-562b-8c85-7ced1e493b09", "text": "\u878d\u5316\u7684\u7c89\u8272\u51b0\u6dc7\u6dcb\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u7684\u5546\u4e1a\u89c6\u9891\uff0c\u65f6\u95f4\u52a0\u901f\u3002"} +{"id": "3005051", "video_name": "13413cbf-c727-58e1-88c1-0b5bb9e48164", "text": "\u57ce\u5e02\u6b4c\u624b\u524d\u5f80\u97f3\u4e50\u5f55\u97f3\u5ba4\u3002"} +{"id": "3005907", "video_name": "5118f7f7-3b8a-5c36-87db-9c53879821e7", "text": "\u7a7a\u623f\u95f4\u91cc\u6709\u6fc0\u5149\u706f\uff0c\u7eff\u8272\u6c1b\u56f4\uff0c\u5e26\u6709\u6c14\u4f53\u548c\u70df\u96fe\u3002"} +{"id": "2003316", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "\u72ee\u5b50\u8bd5\u56fe\u6355\u6349\u8001\u9f20\u7684\u89c6\u9891\uff0c\u6ca1\u6709\u6a21\u7cca\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0005167", "video_name": "15f10ac9-b1c4-5cf9-941c-b4e3d222c432", "text": "\u75b2\u60eb\u7684\u8fd0\u52a8\u5458\u6b63\u5728\u6bd4\u8d5b\u4e2d\u5954\u8dd1\u3002\u4fe1\u606f\uff1a\u6c38\u4e0d\u653e\u5f03\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "3005314", "video_name": "db5e6df3-1d30-5fe9-bf97-c692589c4008", "text": "\u7f57\u831c\u5f15\u9886\u56e2\u961f\u7a7f\u8d8a\u7ea2\u8272\u8c1c\u56e2\u8ff7\u5bab\uff0c\u91cc\u9762\u6709\u5145\u6ee1\u6d3b\u529b\u7684\u7ea2\u8272\u8def\u7ebf\u548c\u6311\u6218\u3002\u52a8\u753b"} +{"id": "6003167", "video_name": "2de609d3-a3e2-54d5-b84c-5611f9b53fe7", "text": "\u672b\u65e5\u540e\u57ce\u5e02\u666f\u8c61\uff0c\u5973\u4eba\u9003\u8dd1\u8eb2\u907f\u5feb\u901f\u884c\u8d70\u7684\u50f5\u5c38\u3002"} +{"id": "2004059", "video_name": "f637aa8d-65ef-56f6-bfe0-745786ee3545", "text": "\u5c06\u4e00\u4e2a\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u7684\u52a8\u753b\u573a\u666f\uff0c\u4ece\u50cf\u300a1984\u300b\u4e00\u6837\u7684\u8b66\u5bdf\u56fd\u5bb6\u3001\u542f\u793a\u5f55\u548c\u53cd\u4e4c\u6258\u90a6\u672a\u6765\u4e66"} +{"id": "2005102", "video_name": "6cf9fddf-aee2-5f9a-9bae-d9b0610858dd", "text": "\u745e\u79cb\u00b7\u9ea6\u514b\u4e9a\u5f53\u65af\u770b\u7740\u5efa\u7b51\u7269\u71c3\u70e7\uff0c\u53d1\u51fa\u5632\u8bbd\u7684\u6709\u8da3\u7b11\u58f0\u3002"} +{"id": "3003686", "video_name": "610e1e77-e99e-53ab-afc3-b5e06966a2ae", "text": "\u573a\u666f\u4ee5\u5145\u6ee1\u6d3b\u529b\u7684\u79d1\u6280\u9f7f\u8f6e\u65cb\u8f6c\u548c\u8fdb\u5316\u7684\u52a8\u753b\u5f00\u59cb\u3002"} +{"id": "2005098", "video_name": "656b8f78-edf5-5c67-b66e-5d597f785a17", "text": "CEO \u62c9\u4e01\u88d4\u8a79\u59c6\u65af\u00b7\u9a6c\u65af\u767b( James Marsden )\u7126\u8651\u5730\u6ce8\u89c6\u7740\u4e00\u5f20\u8349\u56fe\u4e0a\u6709\u673a\u5668\u4eba\u8bbe\u8ba1\u56fe\u7684\u5e73\u677f\u7535"} +{"id": "3005915", "video_name": "ca3a6076-98eb-5152-bfff-aca904debedb", "text": "\u5965\u672c\u6d77\u9ed8\u7ad9\u5728\u5409\u535c\u529b\u98ce\u683c\u7684\u5927\u7206\u70b8\u52a8\u753b\u524d\u3002"} +{"id": "3004789", "video_name": "5e66cdec-f088-5b6a-b660-cb99e85c3826", "text": "\u65e5\u843d\u7eff\u8272\u666f\u8272\uff0c\u6709\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "1005247", "video_name": "608d3c8a-39aa-5437-a828-c5f07c990e90", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7a7f\u4e0a\u88d9\u5b50\u7ad9\u5728\u5c4b\u524d\uff0c\u7136\u540e\u8f6c\u8eab\u8d70\u51fa\u4e86\u623f\u5b50\u3002"} +{"id": "3003534", "video_name": "535e6871-b3e0-5b40-b5eb-66884461584f", "text": "\u4e00\u4e2a\u666e\u901a\u4eba\uff0c\u9762\u5e26\u7b11\u5bb9\u3002"} +{"id": "8002199", "video_name": "c20c3799-b424-5c10-bf64-0d3069b79a95", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5f3a\u8c03Anahata Chakra\u7684\u91cd\u8981\u6027\u4ee5\u53ca\u5b83\u4e0eMaa Kushmanda\u7684\u5173\u8054\uff0c\u5c55\u793a\u5d07\u62dc\u5979\u5982\u4f55\u6253\u5f00\u5fc3\u810f\u8109"} +{"id": "4002427", "video_name": "7313e9ef-0cc5-5f53-8018-3e89b4f8785e", "text": "\u7537\u751f\u6234\u624b\u8155\u5e26\u53bb\u5065\u8eab\u623f\u3002"} +{"id": "2005478", "video_name": "4acefbca-c839-56aa-abd7-cc418a07a7c0", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u8fd1\u8ddd\u79bb\u5973\u5b69\uff0c\u7c89\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u7ea2\u8272\u5939\u514b\uff0c\u76f4\u89c6\u955c\u5934\u3002"} +{"id": "5001138", "video_name": "2f0aa7a6-4aca-5823-bddf-e0446ec4c93b", "text": "\u8ba9\u5927\u8c61\u5728\u6ce5\u6cde\u7684\u6c60\u5858\u91cc\u884c\u8d70\uff0c\u68ee\u6797\u91cc\u9762\u3002"} +{"id": "8002804", "video_name": "d6fd15ea-8805-5add-bcbd-8a60c3738ecf", "text": "\u4e00\u9897\u661f\u4ece\u6697\u6de1\u53d8\u4eae\u95ea\u8000\u3002"} +{"id": "6002496", "video_name": "13ef58fb-ff2b-5b73-9262-09c55216ca65", "text": "\u4e00\u5e45\u753b\u50cf\u4ece\u753b\u6846\u4e2d\u8d70\u51fa\u6765"} +{"id": "0003479", "video_name": "3e5a9d19-dadd-586f-998c-6f10e82364dc", "text": "\u8003\u8bd5\u5927\u5385\u6050\u6016\uff1a\u8003\u8bd5\u5f53\u5929\uff0c\u573a\u6240\u8f6c\u79fb\u5230\u4ee4\u4eba\u751f\u754f\u7684\u8003\u573a\u3002Rahul\u8fdb\u5165\u5927\u5385\uff0c\u5f25\u6f2b\u7740\u4e00\u79cd\u660e\u663e\u7684"} +{"id": "1004803", "video_name": "58c16342-b60b-5425-92bc-bdf77d202a65", "text": "\u5979\u770b\u5230\u4e00\u8f86\u63a2\u6d4b\u8f66\u5728\u56db\u5904\u79fb\u52a8\uff0c\u91c7\u96c6\u6837\u672c\u3002"} +{"id": "7004248", "video_name": "5f7d07d3-b7ac-57a0-a53a-579c9c6a0435", "text": "\u7537\u4eba\u7ad9\u5728\u5c0f\u884c\u661f\u4e0a\uff0c\u5bfb\u627e\u65b0\u7684\u8bd7\u53e5\u3002"} +{"id": "1003330", "video_name": "3d4997f6-6a20-5fa6-b341-5157ea3d49bf", "text": "\u5728\u9ed1\u6697\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5b50\u97f3\u4e50\u4e2d\uff0c\u6709\u8bb8\u591a\u706f\u5149\u548c\u84b8\u6c7d\u7684\u8f89\u714c\u672a\u6765\u4e3b\u4e49\u6b27\u6d32\u673a\u67b6\u5408\u6210\u5668\u3002"} +{"id": "8002129", "video_name": "08bde791-6296-5b80-a6fa-08547f8ee4b3", "text": "\u5723\u7c73\u8fe6\u52d2\u5927\u5929\u4f7f\uff0c\u5728\u4e4c\u514b\u5170\u88ab\u5c0a\u4e3a\u5723\u4eba\u3002"} +{"id": "2003015", "video_name": "8c41478e-6f98-527d-b7cc-4d3eb9e6264d", "text": "\u4e94\u53ea\u5927\u7329\u7329\u7a7f\u7740\u9ec4\u8272\u5de5\u4f5c\u670d\u5728\u4e00\u5ea7\u65e5\u672c\u6469\u5929\u5927\u697c\u5185\u6cbf\u7740\u9661\u5ced\u7684\u697c\u68af\u5feb\u901f"} +{"id": "6003406", "video_name": "36cd51cc-9bee-5e31-8189-57adc46fc5de", "text": "\u5c06\u56fe\u50cf\u8f6c\u6362\u4e3a\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "1005807", "video_name": "6ac8fbf4-8cd4-5c55-a958-f722746d2bdc", "text": "\u534e\u5c14\u8fea\u7ef4\u4e9a\u6838\u7206\u70b8\u7684\u65e0\u4eba\u673a\u62cd\u6444\u3002"} +{"id": "3003936", "video_name": "3dc454f4-70ba-5f36-ad02-f91e5d06b207", "text": "\u4e00\u53ea\u975e\u5e38\u53ef\u7231\u84ec\u677e\u7684\u4eba\u578b\u767d\u732b\uff0c\u62e5\u6709\u5de8\u5927\u7684\u7eff\u8272\u773c\u775b\u3001\u7c89\u8272\u8033\u6735\u548c\u7f8e\u4eba\u9c7c"} +{"id": "6003418", "video_name": "352801b8-5691-5266-a5d4-ae7757099061", "text": "\u5927\u6811\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "1003971", "video_name": "494e4a07-38a5-571e-a83d-040f552e6075", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5ba2\u5385\u91cc\u8df3\u821e\uff0c\u7ad9\u5728\u58c1\u7089\u548c\u5723\u8bde\u6811\u524d\u3002"} +{"id": "4002232", "video_name": "3ae59311-787d-5d69-acca-ead295d4f578", "text": "\u5c55\u793a\u516c\u4e3b\u4e0e\u4e0d\u540c\u89d2\u8272\u7ed3\u76df\u7684\u60c5\u51b5\u3002\u6bcf\u4e2a\u89d2\u8272\u90fd\u6709\u72ec\u7279\u7684\u8bbe\u8ba1\u548c\u7cbe\u7ec6\u76843D\u7ec6\u8282\u3002"} +{"id": "0006385", "video_name": "2b8dd5d2-e003-5664-af3e-a28c7f623869", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u8df3\u821e\u6447\u6643\u7740\u5b83"} +{"id": "7002701", "video_name": "28cd9119-9aa0-51f2-96ea-79cd629cc316", "text": "\u4e00\u9053\u5f69\u8679\u5f2f\u66f2\u5728\u5929\u7a7a\u4e2d\uff0c\u5e26\u6765\u5e0c\u671b\u548c\u5b89\u6170\u3002"} +{"id": "8002768", "video_name": "1cc33216-4935-5b66-94f8-dc57fe564c90", "text": "\u8033\u8717\u91cc\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u4e16\u754c\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u4ece\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "1005823", "video_name": "6b0279f0-fcde-5e51-a9d7-6a7def6958d8", "text": "\u7535\u5f71\u6d77\u62a5\u7eb5\u5411\u6392\u5217\uff0c\u7535\u5f71\u540d\u4e3a\u201c\u864e\u8089\u6c64\u201d\uff0c90\u5e74\u4ee3\u7f8e\u56fd\u9a6c\u620f\u56e2\u662f\u4e3b\u9898\uff0c\u91c7\u7528\u6bd4\u5c14\u00b7\u6208\u5c14\u5fb7\uff08Bill"} +{"id": "8001691", "video_name": "aa6e766b-6373-571a-a3c5-f3320948da07", "text": "\u8d85\u7ea7\u82f1\u96c4\u604b\u7231\u4e2d\uff0c\u6d6a\u6f2b\uff0c\u4eb2\u543b\uff0c\u559c\u60a6\uff0c\u7535\u5f71\u5316"} +{"id": "8002425", "video_name": "cb5380d1-0448-570e-973a-1f5352d38789", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u827a\u672f\u98ce\u683c\uff0c\u5927\u697c\u5185\u5230\u5904\u90fd\u662f\u949f\u8868\uff0c\u51e0\u4e4e\u90fd\u878d\u5316\u4e86\u3002 \n\nSource sentence: The Great Wall of China"} +{"id": "2007507", "video_name": "3f8ac07e-7f50-5d02-84a4-7ecd94138110", "text": "\u4f8f\u5112\u5de5\u5320\u751f\u65e5\uff0c\u5e7b\u60f3\uff0c\u68a6\u5e7b\uff0c\u7f8e\u5999\uff0c\u70df\u82b1\uff0c4K\uff0c\u7535\u5f71\u7279\u6548\uff0c\u7f29\u653e\uff0c\u6d41\u7545\u7684\u52a8"} +{"id": "2005026", "video_name": "ea481e8c-c4ed-5227-bc97-bfb67473c44c", "text": "\u52a8\u7269\u8eab\u4f53\u6784\u9020\u968f\u65f6\u95f4\u5feb\u901f\u8fdb\u5316\u3002"} +{"id": "2003073", "video_name": "5266118b-aaae-555b-b5cb-2b87a5d97713", "text": "\u5173\u952e\u65f6\u523b\uff1a\u7f13\u6162\u7684\u811a\u6b65\u58f0\u5728\u4ed6\u4eec\u8eab\u540e\u54cd\u8d77\uff0c\u56de\u54cd\u7740\u7684\u5fae\u5f31\u8033\u8bed\u5728\u8d70\u5eca\u4e2d\u56de\u8361\uff0c\u8bd5\u56fe"} +{"id": "2007030", "video_name": "3587c273-bf2b-55ca-bd11-262552338d58", "text": "\u4e00\u9053\u5f69\u8679\u9f99\u5377\u98ce\u5728\u57ce\u9547\u4e2d\u65cb\u8f6c\u5e76\u7a7f\u884c\u3002"} +{"id": "0004519", "video_name": "0a71ac69-2eb2-5d3b-80ac-c4d9b3dd0030", "text": "\u4e00\u5f20\u5e86\u795d\u6392\u706f\u8282\u7684\u80cc\u666f\u56fe\u7247\uff0c\u4e2d\u592e\u6709\u4e00\u4e2a\u8bb2\u53f0\uff0c\u4e2d\u95f4\u6446\u653e\u7740\u5bb6\u5c45\u7eba\u7ec7\u54c1\u548c\u5bb6\u5177\uff0c\u5982\u6c99\u53d1\u3001"} +{"id": "0005565", "video_name": "1cfb95c5-c518-595c-9e18-dc937124a571", "text": "\u57ce\u9547\u91cc\u7684\u4eba\u4eec\u5f00\u59cb\u5fae\u7b11\uff0c\u9633\u5149\u4e5f\u66f4\u52a0\u660e\u4eae\u3002"} +{"id": "8002022", "video_name": "4ed40062-ff90-5bf4-a705-c99c73fafbd0", "text": "\u903c\u771f\u7684\u89c6\u9891\u7269\u7406\u6cbb\u7597\u8bfe\u7a0b\uff0c\u9002\u7528\u4e8e\u60a3\u75c5\u7684\u4eba\u3002"} +{"id": "4003184", "video_name": "c36dc8f6-a659-5741-9c91-358b2cf32bac", "text": "\u6559\u5e08\u89e3\u91ca\u82f1\u8bed\u8bed\u8a00\u7684\u73b0\u5728\u7b80\u5355\u65f6\u6001\u3002"} +{"id": "6002837", "video_name": "dcd54fbe-6aff-5675-bf00-bc2d85f15dc4", "text": "\u673a\u5668\u4eba\u7a7f\u8fc7\u6c99\u6f20\u3002"} +{"id": "0004398", "video_name": "083c0bac-04f5-53a6-aa16-4ae69403381a", "text": "\u70ed\u95e8\u5973\u5b69\u89d2\u8272\u52a8\u6f2b\u5531\u6b4c\u548c\u8d70\u8def\u3002"} +{"id": "5001912", "video_name": "72d82482-27f6-5985-9330-5c4703534838", "text": "\u4e00\u5ea7\u519c\u573a\uff0c\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u6e29\u548c\u7684\u659c\u5761\uff0c\u6392\u5217\u7740\u5496\u5561\u6811\uff0c\u6709\u9e1f\u513f\uff0c\u5fae\u98ce\u4e2d\u6811"} +{"id": "1006128", "video_name": "70541159-eb7d-5bd7-b1a7-ccbe837ec1e4", "text": "\u4e00\u540d\u4e2d\u56fd\u6559\u7ec3\u6559\u6388\u6781\u5177\u7075\u6d3b\u6027\u7684\u4f53\u64cd\u5c0f\u5b69\u3002"} +{"id": "7002227", "video_name": "a6b890a9-fb1c-58ed-a668-77af211eb24f", "text": "\u8fd9\u53ea\u732b\u6234\u7740\u4e00\u9876\u9ed1\u8272\u7684\u793c\u5e3d\uff0c\u9760\u5728\u4e00\u6839\u624b\u6756\u4e0a\uff0c\u770b\u8d77\u6765\u50cf\u4e2a\u7ec5\u58eb\u3002"} +{"id": "4004179", "video_name": "d829f76b-9f9c-5754-bed7-920dd0997282", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u7d27\u7d27\u63e1\u7740\u624b\uff0c\u5f53\u8fc7\u5c71\u8f66\u5728\u4e00\u7cfb\u5217\u73af\u8def\u4e2d\u626d\u66f2\u548c\u8f6c\u5f2f\u65f6\u3002"} +{"id": "0003761", "video_name": "42e80367-fe33-5b4d-bd66-4979d936543b", "text": "\u5448\u73b0\u4e00\u4e2a\u6ed1\u7a3d\u7684\u4e09\u7ef4\u70f9\u996a\u573a\u666f\uff0c\u5176\u4e2dSheikh Chili\u8bd5\u56fe\u51c6\u5907\u60f3\u8c61\u4e2d\u7684\u5df4\u57fa\u65af\u5766\u6c99\u98de\u996d\uff0c"} +{"id": "4004600", "video_name": "1976a975-c620-5350-9af3-842d82d99f05", "text": "\u8f9b\u666e\u68ee\u4e00\u5bb6\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u5403\u7740\u7206\u7c73\u82b1\uff0c\u903c\u771f\u7ec6\u8282\uff0c\u54c1\u8d28\u4f18\u826f\u3002"} +{"id": "8002243", "video_name": "5ce70f78-c6dc-5140-88d8-c12be36892d2", "text": "\u53e4\u6811\u5973\u738b\uff0c\u7f8e\u4e3d\u7684\u68ee\u6797\u3002"} +{"id": "2004478", "video_name": "323224f4-fcac-53dc-b4bc-0125b426891a", "text": "\u5728\u9ed1\u767d\u8001\u65e0\u58f0\u7535\u5f71\u4e2d\uff0c\u7ebd\u7ea6\u65b0\u95fb\u7247\u91cc\u6709\u4e00\u573a\u513f\u7ae5\u6218\u4e89\u6e38\u884c\uff0c\u98ce\u683c\u4e0e1900\u5e74\u4ee3\u8868\u73b0\u4e3b\u4e49\u9ed1\u767d\u65e0"} +{"id": "6004029", "video_name": "8088aa60-153f-509d-88ee-4387fe8f4451", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u52a8\u753b\u8d2d\u7269\u4e2d\u5fc3\uff0c\u5145\u6ee1\u4e86\u5047\u65e5\u4ea7\u54c1\u3002"} +{"id": "0003312", "video_name": "3b69031e-25b9-5eda-a592-e5d99385cc22", "text": "\u52a0\u5dde\u8bae\u4f1a\u7684\u591a\u5229\u514b\u67f1\u5f0f\u8001\u5efa\u7b51\u7684\u5168\u666f\u955c\u5934\u3002"} +{"id": "2005725", "video_name": "e4aea97c-0a1e-5d7e-9586-3cdb0ebdddaf", "text": "\u4e94\u53ea\u957f\u5f97\u50cf\u4eba\u7c7b\u7684\u9752\u86d9\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u4e50\u5668\uff0c\u7ec4\u6210\u6447\u6eda\u4e50\u961f\uff0c\u5236\u4f5c\u4e8690\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "0006425", "video_name": "2c22090b-126b-556b-af42-b2e5b6eabbf3", "text": "\u89d2\u8272\u4f7f\u7528\u4e50\u571f\u79d1\u6280\u7684\u52a8\u673a\u63ed\u793a\u3002"} +{"id": "6002655", "video_name": "9ef828ab-5ad1-5de8-b210-8c6a3414553e", "text": "\u4e00\u4f4d\u5c0f\u4e2d\u56fd\u5973\u5b69\u5728\u82b1\u4e1b\u4e2d\u4f18\u96c5\u5730\u8df3\u821e\uff0c\u5979\u8eab\u65c1\u7684\u67f3\u6811\u4f3c\u4e4e\u5728\u5411\u5979\u6325\u624b\u3002\u5929\u7a7a\u4e2d\u7684\u8bed\u96c0"} +{"id": "3005526", "video_name": "42c9d8d2-a91a-53fc-a712-f4366a0a34b0", "text": "\u7535\u5f71\u884c\u4e1a\u7684\u672a\u6765\u4e3b\u9898\u4f1a\u8bae\uff0c\u4ed6\u4eec\u89c2\u770b\u4eba\u5de5\u667a\u80fd\u63a5\u7ba1\u4ed6\u4eec\u7684\u884c\u4e1a\u3002"} +{"id": "0005275", "video_name": "17ada198-97b9-54fb-8fcb-1896341a51f5", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u548c\u5979\u7684\u670b\u53cb\u4eec\u4ea4\u8c08\u3002"} +{"id": "6002186", "video_name": "efb682b0-15a2-5b6d-9765-9445144c6544", "text": "\u57ce\u5e02\u7684\u6c61\u67d3\u548c\u70df\u96fe\u76f4\u63a5\u8fdb\u5165\u5973\u5b69\u7684\u8138\u4e0a\u3002"} +{"id": "1006257", "video_name": "729d32fd-f501-5ec3-a196-6e324b46e0d2", "text": "\u4e00\u4f4d\u519b\u961f\u8001\u5175\u770b\u5411\u955c\u5934\u3002"} +{"id": "8001918", "video_name": "ab07fecd-98b3-55a9-9b89-31e516d342c6", "text": "\u4e00\u4e2a\u62ff\u7740\u51fa\u73b0\u6545\u969c\u5e76\u5192\u70df\u7684\u624b\u673a\u7684\u7537\u5b50\u51fa\u73b0\u4e86\u3002"} +{"id": "3003153", "video_name": "a12f331d-a68a-506d-8181-d5d1c34b3f2a", "text": "\u592a\u9633\u6b63\u5728\u5730\u5e73\u7ebf\u4e0a\u843d\u4e0b\uff0c\u7167\u4eae\u5929\u7a7a\uff0c\u71c3\u8d77\u718a\u718a\u70c8\u706b\u822c\u7684\u5149\u8292\u3002\u4e91\u5f69\u5728\u6a59\u3001"} +{"id": "7003177", "video_name": "adfea81f-c988-576f-a6ab-395a22c3e143", "text": "-trained in archery stood at the edge of the forest.\n\n\u4e00\u4f4d\u624b\u6301\u5f13\u7bad\u3001\u719f\u7ec3\u638c\u63e1\u5c04\u7bad\u6280\u80fd\u7684\u5973\u5b69\u7ad9\u5728\u68ee\u6797\u8fb9\u7f18"} +{"id": "0003175", "video_name": "3898d85c-74ee-5668-ba19-3343d7a97e50", "text": "1990\u5e74\u4ee3\u5b9e\u9a8c\u6027\u7684\u6cd5\u56fd\u7535\u5f71\uff0c\u5e74\u8f7b\u7537\u5b50\u8fd1\u8ddd\u79bb\u5bf9\u7740\u955c\u5934\u51dd\u89c6\uff0c\u6c7d\u8f66\u57284K\u300116:9\u7684\u753b\u9762\u4e2d\u9a76\u8fc7\u3002"} +{"id": "3004213", "video_name": "0bd18703-bed2-5467-babd-8fa08048030b", "text": "\u517d\u4eba\u5728\u592a\u7a7a\u4e2d\uff0c\u6307\u73af\u738b\u79d1\u5e7b\u7535\u5f71\u3002"} +{"id": "8002057", "video_name": "147dc3a9-f725-5caf-864b-14856d4c726c", "text": "\u9ed1\u6697\u4e2d\u5145\u6ee1\u9ed1\u6c14\u7403\u7684\u623f\u95f4\u91cc\uff0c\u5c0f\u6076\u9b54\u89d2\u8272\u9192\u6765\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with hues of orange and"} +{"id": "6004094", "video_name": "79bb6f2b-2ed2-5fd2-8b1e-3c9678ea6da2", "text": "\u963f\u51e1\u8fbe\u7535\u5f71\u4e2d\u84dd\u8272\u5916\u661f\u4eba\u5728\u672a\u6765\u4e3b\u4e49\u7684\u592a\u7a7a\u57ce\u5e02\u4e2d\u3002"} +{"id": "2003520", "video_name": "0ad15808-d7c8-525a-a095-6c17c7de5a42", "text": "\u4e00\u53ea\u767d\u732b\u548c\u4e00\u53ea\u9ed1\u732b\u5728\u7535\u89c6\u4e0a\u770b\u300a\u732b\u548c\u8001\u9f20\u300b\u5361\u901a\u7247\u65f6\u5f00\u5fc3\u5730\u7b11\u4e86\u3002"} +{"id": "2006551", "video_name": "1805c61d-5cdc-50c4-a313-050f22e88f79", "text": "\u4e3a\u4e00\u5bb6\u540d\u4e3aVirtualTech Explorers\u7684\u8ba1\u7b97\u673a\u8bfe\u7a0b\u4f01\u4e1a\u521b\u5efa\u4e00\u4e2a\u6807\u5fd7\uff0c\u77e2\u91cf\uff0c\u7b80\u6d01\u3002"} +{"id": "3005628", "video_name": "e0a38820-46e8-5f88-a60c-b6d113df0fad", "text": "\u4e00\u4e2a\u7537\u5b69\u8bd5\u56fe\u4ece\u5185\u5fc3\u8d70\u51fa\u6765\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2006471", "video_name": "0139f146-3b09-5b9d-b614-89db39f68d0c", "text": "\u89c6\u89d2\uff1a\u7b2c\u4e00\u4eba\u79f0\u5e7f\u89d2\u89c6\u89d2\u3002\u5728\u82b1\u56ed\u91cc\u73a9\u7684POV\u89c6\u9891\u3002"} +{"id": "3006394", "video_name": "5b0d1923-bb93-5190-a2e8-60b9e0975924", "text": "\u963f\u6839\u5ef7\u56fd\u5bb6\u8db3\u7403\u961f\u7684\u7403\u8ff7\u5728\u770b\u53f0\u4e0a\u652f\u6301\u4ed6\u4eec\u7684\u961f\u4f0d\u3002"} +{"id": "3003998", "video_name": "cf40c534-e9c9-5b81-98ad-bcbd394d1124", "text": "\u58f0\u6ce2\uff0c\u5f62\u6210\u62bd\u8c61\u548c\u52a8\u6001\u7684\u6280\u672f\uff0c\u6d41\u7ebf\u578b\u548c\u73b0\u4ee3\u5316\u7684\u89c6\u89c9\u5143\u7d20\u3002\u67f1\u5f62\u3002\u87ba\u65cb\u3002\u54d1\u5149\u3002\u5149\u6cfd"} +{"id": "7003502", "video_name": "d740e41c-7eb2-5a3e-b7f8-55d110a20ffd", "text": "\u4e00\u53ea\u6234\u7740\u9762\u5177\uff0c\u62ff\u7740\u996e\u6599\u7684\u53d8\u8272\u9f99\u3002"} +{"id": "2006778", "video_name": "0a3e493f-ed70-509c-a400-22af64a92eea", "text": "\u7c89\u7ea2\u8272\u7684\u88d9\u5b50\u5728\u884c\u9a76\u7684\u706b\u8f66\u4e0a\u8df3K Da\u821e\u3002"} +{"id": "0003901", "video_name": "456ec39e-44ce-53d7-8484-cc8f159db43f", "text": "\u4e00\u4e2a\u957f\u5f97\u50cf\u5218\u4ea6\u83f2\u7684\u6f02\u4eae\u5973\u5b69\uff0c\u7a7f\u7740\u4e2d\u5f0f\u670d\u88c5\u8df3\u821e\u3002"} +{"id": "2004195", "video_name": "62bbca7a-2ac9-593a-8da0-af708ae717e2", "text": "\u5feb\u901f\u524d\u8fdb \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "8002940", "video_name": "27c283c9-8a60-503f-89fc-ea02a6361f99", "text": "\u5df4\u9ece\u4e16\u5bb6\uff0c1980\u5e74\u4ee3\u7684\u89c6\u9891\uff0c\u771f\u5b9e\u7684\u7eff\u5de8\u4eba\u5f20\u5634\u808c\u8089\u3002"} +{"id": "3005034", "video_name": "b9953a2b-7029-5a49-9b92-737ca5717aba", "text": "\u9965\u997f\u7684\u7ea2\u9f99\u6b63\u5728\u5403\u9c7c16:9"} +{"id": "2007265", "video_name": "54a3275e-f3cb-55e3-9a17-9f755624a45e", "text": "\u4e00\u4f4d\u4e2d\u56fd\u8499\u53e4\u5c06\u519b\u9a91\u7740\u9a6c\uff0c\u8eab\u5f71\u663e\u73b0\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\uff0c\u8868\u60c5\u575a\u5b9a\uff0c\u7a7f\u7740\u4e2d"} +{"id": "2003902", "video_name": "8e0290d7-b8fa-5dd8-98f9-f33478caf8b4", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u6ee1\u7a97\u73bb\u7483\u7a97\u65c1\u8fb9\u559d\u5496\u5561\uff0c\u89c2\u770b\u65e5\u51fa\u3002"} +{"id": "8001234", "video_name": "eb9eea22-5499-54ef-93af-2c7033b33286", "text": "\u5728\u4e00\u4e2a\u516c\u4e3b\u7684\u4e16\u754c\u91cc\uff0c\u505a\u4e00\u4e2a\u6b66\u58eb\u3002"} +{"id": "1006655", "video_name": "79e85a28-cc5a-5f3f-803e-b908ad124951", "text": "\u4e24\u4e2a\u7537\u5b69\u5728\u68cb\u76d8\u4e0a\u73a9\u800d\u3002"} +{"id": "1004901", "video_name": "5a93569b-6738-54fe-a47f-e71ad6a77474", "text": "\u90aa\u6076\u7684\u5723\u8bde\u8001\u4eba\u5632\u7b11\u5b69\u5b50\u3002\u52a8\u60015\u3002\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "1003994", "video_name": "49fb7f15-9eb1-585d-867a-11f74832c7f9", "text": "Translation: \u6211\u559c\u6b22\u4f60 (Note: \"wright on the coffee\" and \"Sonce ya tebya lyublu\" are not English phrases, and therefore cannot be translated.)"} +{"id": "7004176", "video_name": "38dac227-cb43-552c-a948-b2632f3e6313", "text": "\u97f3\u8c03\u8272\u5f69\u3001\u9ad8\u5bf9\u6bd4\u5ea6\u548c\u4e30\u5bcc\u7684\u79d1\u6280\u5f69\u8272\u8c03\u8272\u677f\u4f20\u8fbe\u4e86\u534a\u673a\u68b0\u72d0\u72f8\u53ca\u5176\u5468\u56f4\u81ea\u7136\u7f8e\u548c\u597d"} +{"id": "6002664", "video_name": "b08ca889-fcf5-5a63-a4c9-815706acc53d", "text": "\u50cf\u4e00\u53ea\u4e0e\u86c7\u6218\u6597\u7684\u732b\u4e00\u6837\u53cd\u5e94\uff0c\u732b\u548c\u7537\u5b69\u90fd\u7728\u773c\uff0c\u98ce\u5439\u732b\u5954\u8dd1\u3002"} +{"id": "8002497", "video_name": "f3701df0-81ea-5019-8006-3a5995cd6dd2", "text": "\u4e00\u4e2a\u7537\u8001\u5e08\u6b63\u5728\u5b66\u6821\u91cc\u6559\u5b66\u751f\u3002"} +{"id": "2007034", "video_name": "e4c5af5d-0bf1-519f-a8e3-708bc8b528ea", "text": "\u4e00\u4e2a\u89c6\u89c9\u9707\u64bc\u548c\u6982\u5ff5\u4e30\u5bcc\u7684\u573a\u666f\uff0c\u901a\u8fc7\u795e\u7ecf\u4fe1\u53f7\u7684\u4ea4\u54cd\u4e50\u5c55\u73b0\u51fa\u4e24\u4e2a\u601d\u60f3\u4e4b\u95f4\u7684\u975e\u51e1\u8054\u7cfb\u548c"} +{"id": "3004085", "video_name": "0a2eec88-fb1f-5176-ae9c-d2bc78c90096", "text": "\u624b\u673a\u5c4f\u5e55\u4e0a\u6709\u4e00\u5f20\u5973\u5b69\u80cc\u5f71\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7167\u7247\u3002"} +{"id": "0006994", "video_name": "3661a3cc-adc3-5c25-b0b6-5cc3a1c78d87", "text": "\u9b3c\u706b\u9f8d\u5361\u901a\u5c04\u51fa\u6fc0\u5149\u5230\u7e41\u5fd9\u64c1\u64e0\u7684\u57ce\u5e02\u4e2d\u3002"} +{"id": "8001849", "video_name": "415a4dd9-0871-5c4a-9939-ee771320569e", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u5750\u5728\u8bb8\u591a\u5c0f\u72d7\u65c1\u8fb9\uff0c\u8bb8\u591a\u5c0f\u72d7\u5728\u5979\u8eab\u4e0a\u722c\u6765\u722c\u53bb\uff0c\u5979\u4e00\u8fb9\u629a\u6478"} +{"id": "1003934", "video_name": "48a43b1c-2902-5043-a303-9f0e08a73b5c", "text": "\u8d85\u4eba\u5728\u80a1\u5e02\u4ea4\u6613\u3002"} +{"id": "4004642", "video_name": "b166fe0e-395a-5dfa-b4e1-1fe4082133c6", "text": "\u521b\u5efa\u4e00\u4e2a\u540d\u4e3a\u4e4c\u9e26\u6811\u6797\u7684\u5c0f\u9547\u3002"} +{"id": "0004857", "video_name": "106072aa-a4ee-53fb-b2e8-1522d5e3fd88", "text": "\u4e00\u4f4d\u957f\u53d1\u5973\u5b69\u7b11\u7740\u4ece\u6865\u4e0a\u8df3\u4e0b\uff0c\u7a33\u7a33\u5730\u7740\u9646\u3002"} +{"id": "6002062", "video_name": "1eb970fb-e149-510a-81fb-29bb8dadd8de", "text": "\u9ed1\u6697\u7684\u7a7a\u95f4\u4e2d\u53ea\u6709\u4e00\u70b9\u5fae\u5c0f\u7684\u5149\u8292\u3002"} +{"id": "3005118", "video_name": "fff04adf-4eb0-5d24-b546-5cb7042a3723", "text": "\u4e3b\u9898\u884c\u52a8\uff1a\u8f6c\u6362\u5230\u4e00\u4e2a\u52a8\u753b\u5b87\u5b99\u6a21\u578b\uff0c\u5c55\u793a\u661f\u7cfb\u3001\u6052\u661f\u548c\u884c\u661f\u3002\u76f8\u673a\u52a8\u4f5c\uff1a\u7f13\u6162\u65cb\u8f6c\u52a8\u753b\u5b87\u5b99\uff0c"} +{"id": "0005938", "video_name": "2383c5e0-ae4b-56cb-83ee-baaf0b3a5bf6", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u83ab\u6c49\u62db\u624b\u793a\u610f\u5728\u4ed6\u7684\u5c0f\u5c4b\u91cc\u4fdd\u6301\u5b89\u9759\u3002\n\nSource sentence: The new restaurant in town is very popular and always busy during peak hours. \n\n"} +{"id": "3006115", "video_name": "2def8b72-dc48-53f7-afa7-05d8841fcee9", "text": "\u7535\u5f71\u822c\u7684\u5c0f\u5973\u5b69\u8eb2\u5728\u4e00\u4e2a\u5927\u800c\u7a7a\u65f7\u7684\u8001\u5f0f\u6559\u5ba4\u7684\u89d2\u843d\u91cc\u3002"} +{"id": "3004027", "video_name": "9a9a7f9a-5390-5bfb-8761-65435ab9ef21", "text": "\u8d5b\u535a\u51c0\uff0c\u8de8\u7ef4\u5ea6\u79d1\u6280\u8ba1\u5212\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u7531\u7ea6\u7ff0\u00b7\u4f2f\u57fa\u521b\u4f5c\u7684\u5927\u578b\u62c9\u5e03\u62c9\u591a\u5ca9\u77f3\u9668\u77f3"} +{"id": "3003539", "video_name": "6d0fefef-cee5-5bde-81f8-570cf25adb27", "text": "\u9e1f\u513f\u5728\u6811\u6797\u5916\u5174\u594b\u5730\u9e23\u53eb\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u3002"} +{"id": "3003909", "video_name": "e557db32-36bd-518e-92ec-48cdb682ebad", "text": "\u7531\u4eba\u7c7b\u5668\u5b98\u5236\u6210\u7684\u5de8\u578b\u673a\u5668\u3002"} +{"id": "1005599", "video_name": "67025fcd-f04a-5aa2-8fa2-b7fc89ea87f6", "text": "\u5267\u9662\u623f\u95f4\uff0c\u67096\u4e2a\u5ea7\u4f4d\uff0c\u623f\u95f4\u5185\u88c5\u9970\u4e86\u5723\u8bde\u5143\u7d20\u3002"} +{"id": "2003191", "video_name": "08c4d952-b066-5187-a273-6cf4e1f65fec", "text": "\u7528\u4e09\u4e2a\u670b\u53cb\u5f00\u5fc3\u7b11\u7684\u573a\u666f\u3002"} +{"id": "8002454", "video_name": "19e0d6e3-5187-53d1-a6a9-ffd1399b54f9", "text": "\u4e24\u53ea\u72ee\u5b50\u738b\u4e00\u8d77\u6162\u52a8\u4f5c\u5730\u5e76\u80a9\u8d70\u7740\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8002799", "video_name": "eb040bc2-707e-5bca-9eab-a2c4ef8502f4", "text": "\u4e00\u4f4d\u7a7f\u8457\u512a\u96c5\u7684PVC\u7d33\u58eb\uff0c\u5728\u6c34\u6676\u91d1\u5b57\u5854\u8d70\u5eca\u4e2d\u62ff\u8457\u69cd\uff0c\u50cf\u9593\u9593\u8adc\u96fb\u5f71\u4e00"} +{"id": "1004145", "video_name": "4cc23bd0-7413-5f42-9362-7ad8cc89c836", "text": "\u751f\u6210\u4e00\u5f20\u5b81\u9759\u7684\u6751\u5e84Dholakpur\u7684\u56fe\u50cf\uff0c\u5b83\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7530\u91ce"} +{"id": "8002950", "video_name": "c57459c4-7ec2-5f63-90fc-1bdaa1a5ca3f", "text": "\u5b69\u5b50\u4eec\u3001\u5deb\u5a46\u548c\u6751\u6c11\u4e00\u8d77\u4eab\u53d7\u72c2\u6b22\u8282\u3002\u56fe\u7247\u4e3a\u5361\u901a\u3002"} +{"id": "7004230", "video_name": "30649783-d637-5e71-b9c2-863f427c7385", "text": "\u4e00\u90e8\u65b0\u82f1\u96c4\u7535\u5f71\u7684\u9884\u544a\u7247"} +{"id": "3004999", "video_name": "059c0534-77da-5efc-a2b5-c7dcfaf7f872", "text": "\u4e24\u4f4d\u6709\u5b9e\u529b\u7684\u975e\u6d32\u5973\u6027\u6b63\u5728\u8fdb\u884c\u6fc0\u70c8\u7684\u4e89\u6597\u3002"} +{"id": "8001092", "video_name": "79ca4404-3d32-577e-ac79-3402f658f154", "text": "\u65af\u5df4\u8fbe\u4eba\u5728\u6218\u6597\u4e2d\u7528\u7403\u68d2\u6218\u6597\uff0c\u53e4\u5e0c\u814a\u3002"} +{"id": "0003254", "video_name": "3a156432-4820-54f6-b806-bdabd6a99181", "text": "\u53ef\u7231\u7684\u52a8\u753b\u732b\u89d2\u8272\u5728\u5b66\u6821\u3002"} +{"id": "2003578", "video_name": "3c2ded77-9369-5995-9552-55ca1cb837a7", "text": "\u5df4\u897f\u5730\u56fe\uff0c\u6807\u6ce8\u4e8623\u4e2a\u5dde\u7684\u4f4d\u7f6e\u3002\u771f\u5b9e\u611f\u3002"} +{"id": "7004476", "video_name": "a49a19d0-fbce-5b18-84e5-1e47d52d33bd", "text": "\u4e8c\u6218\u7684\u98de\u673a\u98de\u8fc7\u5929\u7a7a\uff0c\u5411\u67af\u840e\u7684\u82b1\u6735\u6295\u63b7\u6c34\u6676\u7403\u3002"} +{"id": "8002245", "video_name": "fdfc0083-3fd6-5427-88c2-e2acb3ac455c", "text": "\u5220\u9664\u4e00\u5207\u5e76\u6dfb\u52a0\u4eba\u4eec\u7ad9\u5728\u4e0a\u9762\u7684\u4eba\u9020\u8349\u576a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004540", "video_name": "6c27a6d8-9f57-5e55-bba4-f43d3862ec6a", "text": "\u8010\u514b\u6807\u5fd7\u8fd0\u52a8\u978b\uff0c\u5404\u79cd\u989c\u8272\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d85\u8be6\u7ec6\u7684artgerm\uff0c\u5f69\u8272\u9713\u8679\u98de\u6e85\uff0c\u5bf9\u79f0\u6027\u3002"} +{"id": "2005958", "video_name": "77ba4667-1d79-539c-a16e-821a8fe6045a", "text": "\u8fbe\u4e4c\u5e15\u8482\u662f\u5370\u5ea6\u795e\u8bdd\u4e2d\u4e00\u4f4d\u62e5\u6709\u6781\u7f8e\u8c8c\u7684\u5973\u738b\u3002"} +{"id": "7004562", "video_name": "14aa5eef-6c90-516e-9e4a-cf16db781e34", "text": "\u521b\u5efa\u4e00\u4e2a\u73b0\u4ee3\u52a8\u753b\uff0c\u7531\u4e0d\u540c\u5546\u4e1a\u9886\u57df\u7684\u8bb8\u591a\u4e0d\u540c\u7684\u73b0\u4ee3\u7f51\u7ad9\u754c\u9762\u7ec4\u6210\uff0c\u5728\u7ed3\u5c3e\u5904\u52a8\u753b\u5448\u73b0\u540d\u4e3aTriple Wave\u7684\u7f51\u7edc\u5de5\u4f5c"} +{"id": "4004052", "video_name": "6c35562d-c2ed-597b-885d-74bf5ce211fe", "text": "\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\uff0c\u80cc\u666f\u662f\u5b87\u5b99\u3002"} +{"id": "3006795", "video_name": "ef61af42-2c6e-53b4-96ec-baa56e29c449", "text": "\u6bcf\u5929\u65e9\u4e0a\uff0c\u8389\u8389\u5c0f\u5973\u5b69\u548c\u5a01\u65af\u514b\u65af\u732b\u4f1a\u5c55\u5f00\u4e00\u573a\u5b8f\u5927\u7684\u5192\u9669\u3002\u4ed6\u4eec\u63a2\u7d22\u7740"} +{"id": "6004080", "video_name": "153d9d1c-7faa-5672-89dd-d9080b7a54ce", "text": "\u76f2\u5df7\u9053\u8def\u4e0a\u6709\u623f\u5b50\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\u6295\u5c04\u800c\u6765\u3002"} +{"id": "6002709", "video_name": "3b5db755-aa10-5809-a890-7a79fe0d54d9", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u53ea\u7ea2\u8272\u7684\u72d0\u72f8\u5728\u8ffd\u9010\u8424\u706b\u866b\u548c\u53d1\u5149\u8611\u83c7\u3002"} +{"id": "3003531", "video_name": "7fc3ca3d-83b5-5661-971b-eb7b52908238", "text": "\u4e00\u628a\u9ec4\u91d1\u94a5\u5319\u53ef\u4ee5\u6253\u5f00\u4e00\u4e2a\u88c5\u6ee1\u9ec4\u91d1\u6761\u548c\u949e\u7968\u7684\u5b9d\u7bb1\u3002"} +{"id": "3004344", "video_name": "cbf6dfa2-99f3-589d-bee5-6239750aac6e", "text": "\u4e00\u6735\u6709\u84dd\u773c\u775b\u7684\u5927\u82b1\u3002"} +{"id": "8003138", "video_name": "04d460aa-9fec-523f-af7e-05152277667d", "text": "\u8302\u6c41\u74e6\u5c14\u5fb7\u548c\u6f02\u4eae\u7684\u54e5\u7279\u5973\u5b69\u5728\u6447\u6eda\u97f3\u4e50\u4f1a\u4e0a\u3002"} +{"id": "2004130", "video_name": "6e6083ef-90b7-5b50-a887-402d28f55bc4", "text": "\u661f\u9645\u65c5\u884c\u7684\u591a\u7ef4\u7a7a\u95f4"} +{"id": "8001505", "video_name": "123b66ab-be7b-570a-8460-648bb1a01081", "text": "\u5728\u5b83\u5468\u56f4\u8986\u76d6\u7740\u706b\u7130\u548c\u4e91\u5f69\u7684\u795e\u5723\u5929\u4f53\u7b26\u53f7\uff0c\u5b9b\u5982\u6f02\u6d6e\u7684\u91d1\u5251\u3002"} +{"id": "4004533", "video_name": "f6f33468-04b8-5716-b76e-b9280b26f55b", "text": "\u4e00\u4e2a\u9a91\u5728\u706b\u9a6c\u4e0a\u7684\u5251\u5ba2\u3002"} +{"id": "6002651", "video_name": "da1d8668-d131-5d8b-bc17-27217c7483bd", "text": "\u4e00\u4f4d\u821e\u8005\u5728\u7a7a\u65e0\u4e00\u4eba\u7684\u821e\u8e48\u5ba4\u91cc\u6392\u7ec3\uff0c\u6355\u6349\u7740\u4ed6\u4eec\u52a8\u4f5c\u7684\u6d41\u7545\u6027\u3001\u811a\u6b65\u7684\u7cbe\u51c6\u5ea6\u548c"} +{"id": "4004900", "video_name": "0c0ade66-ab42-5c33-bb27-adeeca1e5bd1", "text": "\u4e00\u7fa4\u5019\u9e1f\u4f18\u96c5\u5730\u5728\u7f8a\u4e0a\u65b9\u76d8\u65cb\u98de\u884c\u3002\u6444\u50cf\u673a\u5411\u4e0a\u79fb\u52a8\u4ee5\u6355\u6349\u8fd9\u81ea\u7136\u58ee\u89c2\u666f\u8c61\u3002"} +{"id": "4002975", "video_name": "9c3e36d3-7566-593e-bb5e-7e4a28aab6ad", "text": "\u6d77\u6ee9\u4e0a\u7684\u591a\u4e91\u65e5\u843d\uff0c\u611f\u53d7\u5e73\u8861\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4003756", "video_name": "93c6281c-100c-5804-9c89-496a9b679c3f", "text": "\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\uff0c\u8bd5\u56fe\u6293\u4f4f\u6f02\u6d6e\u7684\u6a59\u5b50\u3002"} +{"id": "7002100", "video_name": "b7e4219d-4d8a-59ad-b837-58d4e6e7a871", "text": "\u8fea\u62dc\u7684\u6885\u897f\u767e\u8d27\u6e38\u884c\u4e0a\u7684\u5723\u8bde\u6811\u3002"} +{"id": "6004773", "video_name": "ee461562-733f-5aa3-95b7-7edbb1efb591", "text": "\u4e00\u5bf9\u60c5\u4fa3\u6b63\u5728\u5f7c\u6b64\u8868\u8fbe\u7231\u610f\u3002\u98ce\u5728\u5439\u52a8\uff0c\u82b1\u513f\u5728\u6447\u6643\u3002"} +{"id": "2005694", "video_name": "4cd6fc6d-6818-5f73-8556-2fbfe8046d65", "text": "\u5e03\u52a0\u8fea\u8f66\u5728\u8def\u4e0a\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "2007873", "video_name": "eb38fd3a-8a8c-5ccf-a631-15dbefbf5473", "text": "\u7ebf\u6846\u9ed1\u767d\u62bd\u8c61\u751c\u751c\u5708\u5f62\u72b6\u65cb\u8f6c\u3002"} +{"id": "1005477", "video_name": "649d6e99-543a-563b-8c9d-ac1a13aafe6b", "text": "\u4e00\u4e2a\u53e4\u96c5\u7684\u56fe\u4e66\u9986\uff0c\u91cc\u9762\u6446\u6ee1\u4e86\u54e5\u7279\u5c0f\u8bf4\u548c\u660f\u6697\u7684\u706f\u5149\u3002"} +{"id": "2005614", "video_name": "e4f05bd7-7c43-5be1-a39a-e787fa005017", "text": "\u4e00\u4e2a\u52a8\u6f2b\u7537\u5b50\u5728\u96e8\u6797\u4e2d\u884c\u8d70\u3002\u4fe1\u606f\uff1a\u68ee\u6797\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6004040", "video_name": "17228dd0-1baa-5b25-bf58-e6c40852f916", "text": "\u516c\u5f0f\u8d5b\u8f66\u5728\u672a\u6765\u57ce\u5e02\u4e2d\u6bd4\u8d5b\u3002"} +{"id": "3006487", "video_name": "e70f6c20-b055-53da-b299-fd5ef1a49768", "text": "AONB HDR \u8fdc\u5904\u7684\u4e2d\u56fd\u5a03\u5a03\u88ab\u9057\u5f03\u5728\u7530\u91ce\u4e0a\uff0c\u8fdc\u5904\u6709\u7ea2\u767d\u76f8\u95f4\u7684\u706f\u5854\u3002"} +{"id": "2006899", "video_name": "43bcc54c-08a1-5b4b-bf04-45fc0627c7de", "text": "Rama\u548cSari\u662f\u4e24\u4e2a\u559c\u6b22\u63a2\u7d22\u6d77\u5e95\u7f8e\u666f\u7684\u6f5c\u6c34\u5458\u3002\u4ed6\u4eec\u7ecf\u5e38\u5728\u6d77\u6ee9\u4e0a\u76f8\u9047\u5e76\u8c08\u8bba\u6d77\u5e95\u7684\u7f8e\u3002\u6709"} +{"id": "0003306", "video_name": "3b54935c-5f0a-5667-aaac-eb337943333d", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u591c\u665a\u7684\u9065\u8fdc\u5c71\u8c37\u4e2d\u56f4\u7740\u7bdd\u706b\u8df3\u821e\uff0c\u4ef0\u671b\u661f\u7a7a\u3002 \n\nSource sentence: The new restaurant in town serves"} +{"id": "3004771", "video_name": "277615d3-f99f-5732-9173-73aea3c22c13", "text": "\u4e00\u4e2a\u8180\u80f1\u7a7a\u7684\u88ab\u586b\u6ee1\u5230\u6ee1\u8180\u80f1\n\nSource sentence: I am learning Chinese with the help of a tutor. \n\n\u6211\u5728\u6709\u5bfc\u5e08\u5e2e\u52a9\u4e0b\u5b66"} +{"id": "6002867", "video_name": "f0dd0f01-c580-5de8-b9e4-9f96c9f488b8", "text": "\u5b87\u5b99\u98de\u8239\u5185\u90e8\u5c04\u51fb\u65f6\uff0c\u98de\u8239\u5185\u90e8\u6709\u84dd\u8272\u7684\u706b\u7130\u3002"} +{"id": "6004327", "video_name": "543c0580-b22f-5a49-a919-1b3f28cb570b", "text": "Source sentence: E.T\u8ddfEliot\u4e00\u8d77\u9a0e\u8173\u8e0f\u8eca\uff0cEliot\u5728\u524d\u9762\u7684\u8eca\u67b6\u4e0a\u3002\u80cc\u666f\u662f\u4e00\u500b\u975e\u5e38\u5927\u800c"} +{"id": "3006184", "video_name": "2001c181-0fbc-5545-bb1c-b2317b0f5c3b", "text": "\u79fb\u52a8\u6708\u4eae\u5e76\u5728\u5468\u56f4\u6dfb\u52a0\u4eba\u7269\u89c2\u770b\u6708\u4eae\u3002"} +{"id": "3004342", "video_name": "fd5fd11c-ecca-5e5a-853e-e00051b89161", "text": "\u4e00\u4e2a\u8868\u60c5\u81ea\u4fe1\u51b3\u5b9a\uff0c\u624b\u6301\u5251\u6216\u6b66\u5668\uff0c\u968f\u65f6\u51c6\u5907\u6218\u6597\u7684\u7537\u5b69\uff0c\u5728\u80cc\u666f\u4e2d\u6d41\u52a8\u7684\u4e91\u6735\u65f6\u95f4\u8f6e\u56de\u3002"} +{"id": "3003873", "video_name": "a2ce2994-02b5-547f-bedf-03c40f36cbb9", "text": "\u4e00\u500b\u7537\u5b69\u548c\u4ed6\u7684\u9ec3\u8272\u725b\u3002\u9109\u6751\u9053\u8def\u3002\u6a39\u6728\u3002"} +{"id": "8003877", "video_name": "4990c849-6f5c-52b9-8ee3-96438d2c64b9", "text": "\u5728\u591c\u7a7a\u4e2d\uff0c\u770b\u5230\u4e00\u5ea7\u6e56\u4e0a\u65b9\u7684\u7eff\u8272\u6781\u5149\uff0c\u5730\u9762\u4e0a\u6709\u96ea\u548c\u6811\uff0cAlexander Jansson\uff0c\u53d1\u5149\u7684\u706f\u5149\uff0c\u4e00\u5f20"} +{"id": "0006643", "video_name": "3021b470-7b35-51c7-a5cf-a19622d33075", "text": "\u72d7\u7a7f\u7740\u72fc\u706b\u5939\u514b\u548c\u84dd\u8272\u886c\u886b\u3002"} +{"id": "2006335", "video_name": "61bdf7c9-db34-5c53-91a5-c03352fac48b", "text": "\u4e00\u672c\u53e4\u8001\u7684\u5730\u56fe\u4e66\uff0c\u9875\u7801\u5b8c\u6574\u3002"} +{"id": "6004222", "video_name": "cb38415c-e3d2-53dd-8064-73f58ad9e868", "text": "\u957f\u7bc7\u73b0\u5b9e\u4e3b\u4e49\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u6bb5\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "3003654", "video_name": "862d7937-c3e9-5ebc-9e7e-13a42662a8db", "text": "\u7537\u5b50\u62b1\u7740\u54ed\u6ce3\u7684\u5b69\u5b50\u9003\u79bb\u71c3\u70e7\u7684\u57ce\u5e02\u3002"} +{"id": "6004584", "video_name": "03d1bb8f-db36-5a95-92ee-2ddaafaa31a6", "text": "\u4e00\u4f4d\u8001\u5988\u5988\u6b63\u5728\u5bf9\u5979\u7684\u5c0f\u5973\u5b69\u5927\u58f0\u558a\u53eb\u3002\u8fd9\u4e2a\u5973\u5b69\u6709\u7ea2\u8272\u7684\u5934\u53d1\u3002"} +{"id": "8001531", "video_name": "3014fd17-27ef-5e2a-a6b2-abb0c99d6c62", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4e34\u65f6\u5236\u4f5c\u7684\u673a\u5668\u4eba\u5728\u7528\u7eb8\u5199\u5b57\uff0c\u5728\u4e00\u4e2a\u88ab\u70db\u5149\u7167\u4eae\u7684\u9ed1\u6697\u623f\u95f4\u7684\u4e2d\u5fc3\u3002"} +{"id": "0005186", "video_name": "164500fb-1099-535d-9e80-c57a9b722e1c", "text": "\u4e00\u6761\u975e\u5e38\u957f\u7684\u91d1\u5c5e\u7535\u7f06\uff0c\u5b8c\u5168\u7f20\u7ed5\u7740\u4e00\u4e2a\u9ea6\u514b\u98ce\u548c\u4e00\u4e2a\u5361\u5e26\u6536\u97f3\u673a\uff0c\u7956\u5148\u822c\u7684\u7075\u5f02\u6781"} +{"id": "4003704", "video_name": "b9bc5475-7f73-5f8e-a9c8-fbca3fcaabeb", "text": "\u4e00\u53ea\u767d\u732b\u8eba\u5728\u95ea\u70c1\u661f\u7a7a\u4e0b\u7684\u6bef\u5b50\u4e0a\u7761\u89c9\u3002\u6708\u4eae\u7684\u5149\u8292\u7a81\u51fa\u4e86\u5b83\u7ec6\u8282\u4e30\u5bcc\u7684"} +{"id": "7004519", "video_name": "ef209acc-1fd2-5b84-84c4-8f9658a1f548", "text": "\u786c\u7cd6 \u4fe1\u606f\uff1aflp (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0005716", "video_name": "200a0029-ea48-5ab5-ad29-95f625faf29f", "text": "\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u7684\u4e00\u4e2a\u5e74\u8f7b\u4eba\u53eb\u5361\u8482\u514b\u3002\u4ed6\u548c\u5bb6\u4eba\u4e00\u8d77\u751f\u6d3b\uff0c\u8fc7\u7740\u6b63\u5e38\u7684\u751f\u6d3b\u3002"} +{"id": "1005568", "video_name": "667b43f1-992c-5c31-a816-4afa9ed874f6", "text": "Source sentence translated into Chinese: \u73cd\u59ae\u4ece\u62a4\u58eb\u3001\u533b\u751f\u548c\u6e05\u6d01\u5de5\u4eba\u90a3\u91cc\u6536\u96c6\u4e86\u5404\u79cd\u5173\u4e8e\u54ed\u58f0\u6765\u6e90\u7684\u8c23\u8a00\u3002\u636e\u8bf4\u8fd9"} +{"id": "6002016", "video_name": "20a1abff-e1e2-519b-8fc8-d4c5f4dd46f8", "text": "\u5065\u5eb7\u7684\u5df4\u897f\u6d77\u6ee9\u5973\u5b69\u559d\u7740\u51b0\u6c99\u3002"} +{"id": "0005724", "video_name": "203028c4-05c2-599d-b65f-c9f40592296c", "text": "\u8f7b\u96e8\u843d\u5728\u7070\u8272\u91c7\u77f3\u573a\u3002"} +{"id": "2003766", "video_name": "d3dfbfa2-f8f5-55a6-97d5-90da27d608fb", "text": "\u6c99\u6f20\u4e2d\u7684\u91d1\u5b57\u5854\u5e26\u7740\u4e00\u80a1\u6d6a\u82b1\u3002\u6d88\u606f\uff1antt\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4004183", "video_name": "7bd4a6a8-025e-5201-a6e4-ca7391df0022", "text": "\u771f\u6b63\u7684\u5916\u661f\u751f\u7269\u5728\u7530\u91ce\u4e2d\u8d70\u52a8\uff0c\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\u3002\u7070\u8272\u7684\u8eab\u4f53\u3001\u5927\u5934\u548c\u9ed1\u8272\u7684\u773c\u775b\uff0c\u5728\u9ea6\u7530\u4e2d"} +{"id": "5001398", "video_name": "244dc793-82c5-5ddf-8e25-d5e5490987be", "text": "\u6709\u7fc5\u8180\u7684\u9e8b\u9e7f\uff0c\u5728\u4e91\u6735\u95f4\u98de\u7fd4\uff0c\u84dd\u5929\u4e0b\u98de\u7fd4\u3002"} +{"id": "2006285", "video_name": "61b37828-1c4b-53db-bc56-88bf02e899c1", "text": "2\u8f86\u4fdd\u65f6\u6377992 GT3 RS\u8d5b\u8f66\u3002"} +{"id": "8003374", "video_name": "5a180519-7569-5290-8bbc-87331d947f38", "text": "\u5b87\u5b99\u7684\u6d69\u701a\u4e2d\uff0c\u4e00\u7247\u6811\u53f6\u4f18\u96c5\u5730\u4ece\u9ad8\u8038\u7684\u6811\u4e0a\u98d8\u843d\u3002"} +{"id": "6004198", "video_name": "5b5fd6e8-7ed2-5804-9bee-3e97a43fcdbc", "text": "\u4f26\u6566\u7684\u6cb9\u753b\uff0c\u6709\u5927\u672c\u949f\u548c\u798f\u5c14\u6469\u65af\u5728\u65f6\u95f4\u4e2d\u5954\u8dd1\u3002"} +{"id": "6003775", "video_name": "7110d3e6-8d8e-5fc4-9a40-aba815fb73ee", "text": "\u6c7d\u8f66\u5728\u8def\u4e0a\u98de\u9a70\uff0c\u5929\u7a7a\u4e2d\u6253\u96f7\u95ea\u7535\uff0c\u96e8\u6c34\u503e\u76c6\u800c\u4e0b\u3002"} +{"id": "1003197", "video_name": "3ac7a406-de0b-5994-ba94-d466270015d0", "text": "\u4e00\u7fa4\u57ce\u5e02\u7684\u9e3d\u5b50\u4e0e\u96f7\u7c73\u548c\u73ed\u5c3c\u7ed3\u76df\uff0c\u4e3a\u4fdd\u62a4\u5f7c\u6b64\u7684\u5171\u540c\u5229\u76ca\u3002 (\u52a8\u753b\u5361\u901a)"} +{"id": "4004447", "video_name": "d5c2e12e-93f4-5a89-ae21-09927aff88e8", "text": "\u8ffd\u968f\u53e4\u8001\u4eea\u5f0f\u548c\u4f20\u7edf\u7684\u5f02\u6559\u5f92\u3002"} +{"id": "7003018", "video_name": "0699c6ad-bdd2-5521-8e8a-e992ad69ef71", "text": "\u4e00\u4e2a\u5c0f\u7684\u9ec4\u70b9\u88ab\u4e00\u5927\u7fa4\u7ea2\u70b9\u5305\u56f4\uff0c\u8fd0\u52a82\u3002"} +{"id": "2004311", "video_name": "5de97bbe-a245-5cc3-9941-76a0801edaa4", "text": "\u8349\u79cd\u5b50\u53d1\u82bd\u5e76\u7834\u571f\u800c\u51fa\u3002"} +{"id": "3004652", "video_name": "cf558df1-87ef-570d-ad17-43c62fd0ffdb", "text": "\u4e00\u4f4d\u6765\u81ea\u5e93\u65af\u79d1\u7f8e\u4e3d\u7684\u571f\u8457\u5973\u5b69\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "3006214", "video_name": "d1a09a27-0ac8-53a5-ab9c-d678cea44966", "text": "\u4efb\u610f\u9009\u62e9\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "6002147", "video_name": "98180f53-9b3d-5db5-904e-48fb001761d1", "text": "\u4e00\u5ea7\u8d85\u73b0\u5b9e\u57ce\u5e02\u80cc\u666f\u4e0b\uff0c\u4e00\u7247\u4e94\u989c\u516d\u8272\u7684\u53d1\u5149\u7ea2\u767d\u8611\u83c7\u68ee\u6797\u3002"} +{"id": "3003367", "video_name": "feafa957-3544-5531-93e4-4a08727e5b80", "text": "\u4e00\u8258\u8239\u5728\u6eaa\u6d41\u4e0a\uff0c\u5468\u56f4\u662f\u4e00\u4e2a\u6709\u7740\u7c89\u8272\u82b1\u6735\u548c\u7eff\u8272\u8349\u576a\u7684\u7f8e\u4e3d\u82b1\u56ed\uff0c\u68a6\u5e7b\u822c"} +{"id": "1003682", "video_name": "43dc1a2e-464b-5458-bcea-0acdba384e69", "text": "\u6cd5\u8001\u548c\u4ed6\u7684\u519b\u961f\u610f\u8bc6\u5230\u4ed6\u4eec\u6ce8\u5b9a\u8981\u5931\u8d25\uff0c\u8138\u4e0a\u9732\u51fa\u60ca\u6050\u7684\u8868\u60c5\u3002"} +{"id": "2007057", "video_name": "240be227-9ac7-53dc-9a9c-03987f8dc1cc", "text": "\u81ea\u7136\u4e2d\u9ce5\u9cf4\u8072\u4f34\u96a8\u8457\u5de5\u5ee0\u7684\u80cc\u666f\u8072\u3002"} +{"id": "2004168", "video_name": "95269063-472e-58db-a56d-22ca58d2bc78", "text": "\u521b\u4f5c\u4e00\u6bb5\u5173\u4e8e\u8c61\u795e\u8c61\u79fb\u52a8\u7684\u89c6\u9891\u3002"} +{"id": "5001137", "video_name": "b8cfdeff-faf7-5203-a3a8-9e3ef72dd08a", "text": "\u4e09\u53ea\u5c0f\u864e\u5728\u68ee\u6797\u91cc\u8ddf\u968f\u6bcd\u864e\u8d70\u8def\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0005564", "video_name": "1cf9f9cc-f4fc-58ec-b00e-c7473713cab9", "text": "Source sentence: \u6b66\u58eb\u884c\u8d70\u3001\u9e1f\u513f\u98de\u7fd4\u3001\u5154\u5b50\u5403\u4e1c\u897f\u3001\u9a6c\u5947\u7279\u52a8\u753b\u3002"} +{"id": "6002077", "video_name": "a0ff05e5-af9e-510e-8cde-9cd6dc8a8c4c", "text": "\u4e00\u4f4d\u5e74\u9f84\u4e3a25\u5c81\u7684\u53ef\u7231\u5973\u5b69\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u8eab\u7a7f\u6f02\u4eae\u7684\u793c\u670d\uff0c\u5468\u56f4\u6563\u53d1\u51fa\u4e00\u79cd\u7279\u522b\u7684\u6c14\u606f"} +{"id": "1004286", "video_name": "4f3f887f-3a24-5a87-b2af-80badbccdfa4", "text": "\u5929\u7a7a\u4e2d\u7684\u706b\u7130 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "1003554", "video_name": "418bbf1f-47c1-56e8-951f-5f0e79bdce71", "text": "\u4e00\u5bb6\u9152\u5427\u5750\u843d\u5728\u6cb3\u8fb9\uff0c\u88c5\u9970\u98ce\u683c\u4e3a\u5de5\u4e1a\u98ce\u3002\u9152\u5427\u524d\u9762\u7684\u8857\u9053\u660e\u4eae\u70ed\u95f9\uff0c"} +{"id": "1005510", "video_name": "6573a46e-0db4-5843-b520-cbb978a2774a", "text": "\u4e00\u9053\u8272\u5f69\u6591\u6593\u7684\u7011\u5e03\uff0c\u5f69\u8679\u822c\u7eda\u70c2\uff0c\u7f29\u5c0f\u955c\u5934\uff0c\u4f0a\u74dc\u82cf\u65e0\u4eba\u673a\u753b\u9762\u3002"} +{"id": "4003974", "video_name": "c233932c-8d47-59ad-9a1e-9c91fd2a08e8", "text": "10\u4f4d\u5973\u58eb\u6392\u961f\u7b49\u5019\u7406\u53d1\uff0c\u8feb\u4e0d\u53ca\u5f85\u5730\u60f3\u8981\u5f04\u597d\u5934\u53d1\u3002"} +{"id": "2004634", "video_name": "7642ebb2-a7fe-5c82-9bb0-ce89bd63e4c2", "text": "\u7279\u65af\u62c9\u516c\u8def\u8dd1\u8f66\u5728\u5bbe\u5915\u6cd5\u5c3c\u4e9a\u5dde\u8d39\u57ce\u8d85\u901f\u3002"} +{"id": "4004973", "video_name": "c7b242f7-a04d-550e-b1a4-d1249f9497a5", "text": "\u4e00\u4e2a\u4e13\u95e8\u4ece\u4e8b\u52a0\u5bc6\u8d27\u5e01\u9886\u57df\u7684\u5728\u7ebf\u8425\u9500\u673a\u6784\u9700\u8981\u4e00\u4efd\u9ad8\u5206\u8fa8\u7387\u7684\u6807\u5fd7\uff0c\u5176\u4e2d\u4f7f\u7528\u4e86\u718a\u548c\u725b\u6765\u6307\u4ee3\u5e02\u573a\u3002"} +{"id": "2005631", "video_name": "6a8e00a0-cba8-512a-ba44-e65958765a29", "text": "\u4e00\u8f86\u6c7d\u8f66\u505c\u5728\u8def\u4e0a\uff0c\u7136\u540e\u53e6\u4e00\u8f86\u6c7d\u8f66\u649e\u4e0a\u4e86\u5b83\u3002"} +{"id": "2005220", "video_name": "5d5e81a7-babb-5e32-b6e3-9ce1b36a6c0c", "text": "\u4e00\u53ea\u68d5\u8272\u7684\u5154\u5b50\u5728\u8c37\u4ed3\u91cc\u56db\u5904\u5f20\u671b\u3002"} +{"id": "2003963", "video_name": "c4985a7d-554d-5947-850f-f4f7ca6566f2", "text": "\u8fc8\u514b\u00b7\u6cf0\u68ee\uff0c\u5361\u901a\uff0c\u9ed1\u767d\uff0c1940\u5e74\uff0c\u65e0\u58f0\u7535\u5f71\u3002"} +{"id": "5001409", "video_name": "00a5a3f9-066e-5d75-9c44-b7592c996b13", "text": "\u4e8c\u7ef4\u52a8\u753b\u4ed9\u5973\u4ee580\u5e74\u4ee3\u7535\u5f71\u98ce\u683c\u98de\u5165\u591c\u665a\u7684\u82b1\u7530\uff0c\u5468\u56f4\u70b9\u7f00\u7740\u5c0f\u5f69\u8272\u706f\u5149\uff0c\u5361\u901a"} +{"id": "3003359", "video_name": "163f09f7-d4be-500b-be03-8fc48806982d", "text": "\u8bbe\u7f6e\u4e00\u4e2a\u6076\u4f5c\u5267\uff0c\u8ba9\u4eba\u4eec\u6253\u5f00\u4e00\u4e2a\u76d2\u5b50\uff0c\u671f\u671b\u770b\u5230\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u732b\uff0c\u4f46\u662f\u5374\u53d1\u73b0\u4e00\u4e2a\u795e\u79d8\u7684\u6570\u5b66\u95ee\u9898\u9700\u8981"} +{"id": "3006915", "video_name": "f4c5cec6-cd6d-52f5-b978-f93f180ec377", "text": "\u79fb\u52a8\u6811\u7684\u5370\u7ae0\u4e0a\u7684\u5b57\u3002"} +{"id": "4002147", "video_name": "fef79394-075e-59ba-b722-5048a5977be2", "text": "\u4e00\u90e8\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7ea2\u53d1\u7537\u5b69\u5728\u65e9\u6668\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u624b\u62ff\u7740\u886c\u886b\uff0c\u7ad9\u5728"} +{"id": "0005342", "video_name": "191b2e83-bbb7-5041-b91a-cb53869e9454", "text": "3D\uff0c\u8fea\u58eb\u5c3c\u50cf\u7d20\uff0c\u975e\u88d4\u7f8e\u56fd\u5c0f\u5973\u5b69"} +{"id": "2006944", "video_name": "74250790-b3da-5151-a907-f190f2ded18d", "text": "\u4e00\u53ea\u9e1f\u5728\u5916\u661f\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "3006707", "video_name": "843c9267-9fa0-55f6-90b0-4de74777768e", "text": "\u4e00\u4f4d\u6838\u5de5\u7a0b\u5e08\u7ec8\u4e8e\u627e\u5230\u4e86\u80fd\u6e90\u53d1\u7535\u7684\u5723\u676f\uff1a\u4e00\u4e2a\u7531\u72ec\u89d2\u517d\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6750\u6599\u5236\u6210\u7684\u7f8e\u4e3d\u6838"} +{"id": "1003598", "video_name": "423e4709-1759-5e26-ad7e-c7b97632965b", "text": "\u5f00\u59cb\u5bfb\u627e\u677e\u9f20\u51b3\u5b9a\u8e0f\u4e0a\u5bfb\u627e\u7a00\u6709\u7684\u5f69\u8679\u8393\u679c\u7684\u65c5\u7a0b\uff0c\u8fd9\u5c06\u4e3a\u68ee\u6797\u5e26\u6765\u6c38\u6052"} +{"id": "1004698", "video_name": "57506225-307c-554b-9bc9-8c526407c3a9", "text": "\u68ee\u6797\u91cc\u7684\u91d1\u96d5\u5728\u4e00\u68f5\u6811\u4e0a\n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\n\u6211\u7684\u6700\u7231\u989c\u8272\u662f\u84dd\u8272\uff0c\u56e0\u4e3a"} +{"id": "2007605", "video_name": "a03107d6-704a-5ffd-9631-790abccda9c5", "text": "\u901a\u7528\u7535\u5f71\u5f00\u573a\u5b57\u5e55\uff0c\u5e26\u6709\u201caldimercado\u201d\u4e00\u8bcd\u3002"} +{"id": "2005462", "video_name": "04cd9314-bed7-57b5-bece-3b88ff7bd9f9", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u53ef\u53ef\u679c\u4ece\u6811\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "3005124", "video_name": "d27e4981-047f-5b78-b7b2-e82fce133453", "text": "\u79d1\u7f57\u62c9\u591a\u6cb3\u5728\u6570\u767e\u4e07\u5e74\u95f4\u96d5\u523b\u4e86\u8fd9\u4e2a\u81ea\u7136\u5947\u89c2\u3002"} +{"id": "2004209", "video_name": "6e0437e4-6deb-5abe-a37f-e70d79a06c39", "text": "\u7537\u5b50\u4ece\u76d8\u5b50\u91cc\u62ff\u8d77\u6ce1\u6ce1\u6c99\uff0c\u52a8\u4f5c\u6e05\u6670\u3002"} +{"id": "0006243", "video_name": "290e6f3e-09f6-57c6-a6a1-2da331685717", "text": "\u7a7a\u6c14\u4e2d\u6f02\u6d6e\u65cb\u8f6c\u7684\u795e\u5947\u6c34\u6676\uff0c\u7531\u5965\u65af\u5361\u00b7\u65bd\u83b1\u9ed8\u7684Behance\u521b\u4f5c\uff0c\u5177\u6709\u68f1\u67f1\u5f62"} +{"id": "7002000", "video_name": "a5857bcb-bf5f-5efd-b6b4-d308b5ae3784", "text": "\u66b4\u98ce\u96e8\u4e2d\u7684\u6d77\u6d0b\uff0c\u62dc\u5360\u5ead\u65f6\u4ee3\u7684\u8239\u53ea\u5728\u822a\u884c\uff0c\u53f2\u8bd7\u822c\u7684\u7535\u5f71\u65e0\u4eba\u673a\u955c\u5934\uff0c\u6cb9\u753b\u98ce"} +{"id": "1003233", "video_name": "3b8a4a22-6d18-5387-9b2a-bfa59b667470", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4ee5\u4e00\u4e2a\u4e9a\u6d32\u8840\u7edf\u7684\u7cbe\u81f4\u3001\u4f18\u96c5\u7684\u4e2a\u4f53\u4e3a\u4e2d\u5fc3\uff0c\u5728\u4e00\u5bb6\u8c6a\u534e\u8d2d\u7269\u4e2d\u5fc3\u91cc\u4f18\u96c5\u5730\u5c55\u793a\u4e00\u4e2a\u9ad8\u7aef\u4fe1\u7528"} +{"id": "3005994", "video_name": "36fd942e-fb9d-57a1-a049-bdbb59e43605", "text": "\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u9ed1\u8272\u7684\u7f51\u683c\uff0c\u4ee3\u8868\u7740\u83b1\u6602\u5c3c\u8fbe\u65af\u7684\u7cbe\u795e\uff0c\u4ed6\u7684\u4e0d\u5c48\u4e0d\u6320\u548c\u4e3a\u672a\u6765\u4ee3"} +{"id": "3004322", "video_name": "06fe4b5a-68a1-559f-b11c-90b78c61234e", "text": "\u5fe0\u544a\uff1a\u5728\u53e4\u4ee3\uff0c\u706b\u52bf\u8513\u5ef6\u5f97\u975e\u5e38\u5feb\u3002 \n\nSource sentence: The concert was amazing. \n\n\u6f14\u5531\u4f1a\u975e\u5e38\u68d2\u3002"} +{"id": "3003598", "video_name": "7f66a72e-d545-50a7-b2a4-c4791a24a9c7", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u4ece\u6469\u5929\u5927\u697c\u9876\u5c42\u8df3\u4e0b\u3002"} +{"id": "4004623", "video_name": "a749c847-c6e2-524f-b1b5-92cb659fc851", "text": "\u53d1\u5149\u7684\u50cf\u6606\u866b\u7684\u7c92\u5b50\u88ab\u5438\u5f15\u5230\u76f8\u673a\u4e0a\u3002\n\nSource sentence: The cat is sitting on the mat. \n\n\u8fd9\u53ea\u732b\u5750\u5728\u57ab\u5b50\u4e0a\u3002"} +{"id": "2006689", "video_name": "a13b79db-a9d5-5ac6-b2c1-fdda2fe4476c", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u84b2\u516c\u82f1\u79cd\u5b50\u5728\u81ea\u7136\u754c\u98de\u821e\u3002"} +{"id": "3005379", "video_name": "e795c321-ca36-568d-81c8-104d75f4705d", "text": "\u6742\u8349\u5473\u7684\u5370\u5ea6\u9999\u6599\uff0cMDH\u54c1\u724c"} +{"id": "0005249", "video_name": "17398f46-db3b-5ea2-8def-33ef5614870a", "text": "\u865a\u5e7b\u5f15\u64ce5\u6e38\u620f\u753b\u9762\uff0c\u5c55\u793a\u4e8611\u4e16\u7eaa\u5df4\u683c\u62c9\u63d0\u5fb7\u4e9a\u7f8e\u5c3c\u4e9a\u7684\u5b89\u5c3c\u57ce\uff0c\u7a7f\u8d8a\u7e41"} +{"id": "6003299", "video_name": "5809a906-5777-57da-8d6b-9795b2356d03", "text": "TikTok\u5c4f\u5e55\u683c\u5f0f\u4e3a\u4e00\u4e2a\u6709\u91cd\u91cd\u88c5\u9970\u7684\u95e8\u7684\u5bc6\u95ed\u623f\u95f4\u3002"} +{"id": "8002977", "video_name": "59d1bd82-7d71-5779-aef2-14d8329717e4", "text": "\u4e00\u53ea\u9ec4\u8272\u7684\u72d7\u6b63\u5728\u5403\u8089\u3002"} +{"id": "1003413", "video_name": "3eff1259-db80-50e2-829a-2edf4fcaf014", "text": "\u661f\u7403\u5927\u6218\u98ce\u683c\uff0c\u7edd\u5730\u6b66\u58eb\u548c\u5176\u4ed6\u7269\u79cd\u5728\u4e00\u6b21\u56e2\u805a\u4e2d\u76f8\u805a\u3002"} +{"id": "7002736", "video_name": "fdb1d4b9-cda4-513d-958a-c7413936afd6", "text": "\u9cb8\u9c7c\u6f02\u6d6e\u5728\u5b87\u5b99\u4e2d\uff0c\u5468\u56f4\u661f\u661f\u6f02\u6d6e\u7740\u5bc6\u7801\u670b\u514b\u5efa\u7b51\u3002"} +{"id": "2003843", "video_name": "38f481a2-5e1e-5e0c-a316-65ebdbb06c27", "text": "\u6c60\u8fb9\u6709\u4e00\u4e2a\u6709\u809a\u5b50\u7a81\u8d77\u7684\u7537\u4eba\u3002"} +{"id": "2006082", "video_name": "1f14f44d-e5bd-59c7-911d-68fcd11fd172", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\uff0cJinx \u62ff\u7740\u4e00\u628a\u67aa\u3002"} +{"id": "6004790", "video_name": "9eea0fa2-cded-5aa6-a4d7-4f53979eae13", "text": "\u56de\u5230\u5b81\u9759\u7684\u81ea\u7136\u73af\u5883\u6216\u4e00\u4e2a\u5b81\u9759\u7684\u573a\u666f\uff0c\u9e1f\u513f\u98de\u7fd4\u6216\u82b1\u513f\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447"} +{"id": "6002883", "video_name": "8abf5084-1f8d-5316-94fe-6f40e5d54796", "text": "\u7528\u94a9\u9488\u7f16\u7ec7\u80cc\u666f\u4e3a\u5723\u8bde\u6811\u7684\u59dc\u997c\u4eba\u548c\u96ea\u4eba\u3002"} +{"id": "1005107", "video_name": "5e23b2ee-9fa5-5833-b209-b3610aa41e94", "text": "\u533b\u9662\u8d1f\u8d23\u4eba\u4ed6\u6b63\u5728\u533b\u9662\u548c\u4e00\u540d\u62a4\u58eb\u4ea4\u8c08\u3002"} +{"id": "6003255", "video_name": "40ca59a3-94d6-595a-af8f-e6085a93bcfd", "text": "\u5927\u578b\u6e38\u8247\u5728\u514b\u7f57\u5730\u4e9a\u6d77\u5cb8\u7740\u706b\uff0c\u65c5\u6e38\u8005\u62cd\u6444\u4e86\u7167\u7247\u3002"} +{"id": "2007431", "video_name": "ab501def-5f34-5488-8334-df5a7bf8d38b", "text": "Source sentence: \u725b\u4ed4\u9a91\u9a6c\u7a7f\u8d8a\u6c99\u6f20\u5ce1\u8c37\uff0c\u5c31\u50cf\u4e00\u5e45\u753b\u4e00\u6837\u3002\n\nSource sentence: I am sorry, I cannot help you with that. \n"} +{"id": "7004473", "video_name": "594dc1bf-fab9-5868-857e-5f84243d020a", "text": "\u6302\u7740\u6b22\u4e50\u7684\u957f\u7b52\u889c\uff0c\u95ea\u70c1\u7684\u6811\u4e0b\u6446\u7740\u793c\u7269\u3002"} +{"id": "7002645", "video_name": "0054d37e-69ee-50e1-b4e7-4d5befddf0ac", "text": "\u7528\u5b66\u751f\u5728\u6821\u56ed\u6f2b\u6b65\u7684\u573a\u666f\u5236\u4f5c\u4e00\u5219\u5927\u5b66\u5e7f\u544a\u3002"} +{"id": "6002442", "video_name": "ee087078-d43d-579d-b3f4-da884e6c477d", "text": "\u53d1\u4eae\u7684\u59d0\u59b9\u4e0d\u77e5\u9634\u5f71 \u8bf4\u7740\u5e7b\u8c61\u822c\u7684\u8bdd\u8bed \u4f20\u5230\u6c99\u4e18\u4e0a \u4f60\u90a3\u5e72\u6db8\u7684\u773c\u7738\u4e2d"} +{"id": "2006619", "video_name": "4f33cc1d-7077-5d0b-99bd-ab3cb4947528", "text": "\u9e70\u5728\u84dd\u5929\u4e2d\u4fef\u51b2\u3002"} +{"id": "0006595", "video_name": "2f433c1e-7790-53e2-bd61-1aca76f17524", "text": "\u963f\u51ef\u5170\uff08Ikran\uff09\u6765\u81ea\u300a\u963f\u51ef\u5170\u7684\u4f20\u8bf4\uff1a\u6c34\u4e4b\u8def\u300b\u3002"} +{"id": "2003816", "video_name": "24ed641e-5009-52c4-bce7-142a334e4290", "text": "\u53ef\u7231\u7684\u5b5f\u52a0\u62c9\u732b\u82b1\u7eb9\uff1a\u5229\u7528\u6591\u9a73\u7684\u9633\u5149\u7a81\u51fa\u5b5f\u52a0\u62c9\u732b\u7684\u60ca\u4eba\u82b1\u7eb9\uff0c\u6355\u6349\u5176"} +{"id": "4003341", "video_name": "05272491-5391-5c26-b984-3f64ee883306", "text": "\u7528Zahra\u7684\u540d\u5b57\u505a\u7231\u3002"} +{"id": "1006978", "video_name": "7fb94751-e6ef-5b41-b8dc-c34af5063a80", "text": "\u4e00\u4e2a\u5199\u7740\u201c\u5e01\u5b89\u201d\u7684\u5927\u65d7\u3002"} +{"id": "8001177", "video_name": "8c17b611-af61-5725-9e5f-99e680f258da", "text": "\u4e00\u5bf9\u5361\u901a\u60c5\u4fa3\u5750\u5728\u957f\u6905\u4e0a\uff0c\u57ce\u5e02\u5929\u9645\u7ebf\u5728\u80cc\u666f\u4e2d\u6e05\u6670\u53ef\u89c1\uff0c\u8d85\u9ad8\u6e05\u6670\uff0c\u9ad8\u6e05\uff0c8K\u3002"} +{"id": "4003292", "video_name": "6199befe-779d-59db-ba3f-a191a56e4b78", "text": "\u7537\u4eba\u975e\u5e38\u9ad8\u5174\u5e76\u7ed9\u4e86\u519c\u6c11\u4e00\u4efd\u5956\u52b1\uff0c\u5236\u4f5c\u4e86\u4e00\u4e2a9x16\u7684\u89c6\u9891\u3002"} +{"id": "0006239", "video_name": "28f0183d-afcd-5b7c-9af5-fac8f4aa0d7d", "text": "\u4e24\u4f4d\u5f3a\u5927\u6cd5\u5e08\u5728\u620f\u5267\u6027\u7684\u73af\u5883\u4e2d\u5c55\u5f00\u53f2\u8bd7\u822c\u7684\u51b3\u6597\u3002\u7b2c\u4e00\u4f4d\u6cd5\u5e08\u662f\u4e2d\u4e1c\u88d4\u7537\u6027\uff0c\u638c"} +{"id": "0006390", "video_name": "2bafde53-51d1-5ad9-adbb-f0c676616fd0", "text": "\u6726\u80e7\u7684\u5e7d\u7075\u822c\u7684\u4eba\u4eec\u8d70\u5728\u4e00\u6761\u6ce5\u571f\u8def\u4e0a\u3002\u53d1\u73b0\u7684\u7247\u6bb5\u65e7\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "2005522", "video_name": "c72a3d3f-76ef-5fb9-8c14-c5efcbbe2d55", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u54c8\u58eb\u5947\u72d7\uff0c\u62e5\u6709\u84dd\u8272\u7684\u773c\u775b\uff0c\u6392\u540d\u5728\u8be5\u54c1\u79cd\u524d\u5217\u30024K\u3002"} +{"id": "7004497", "video_name": "c4e8d08e-3094-5f88-8b87-0ecb0107efad", "text": "1972\u5e74\u7684\u8fc8\u5c14\u65af\u00b7\u6234\u7ef4\u65af\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u91d1\u5c5eAI\u673a\u5668\u4eba\uff0c\u6234\u7740\u5927\u773c\u955c\u5439\u7740\u5c0f\u53f7\uff0c\u76ee\u5149\u6ce8\u89c6"} +{"id": "3004882", "video_name": "58ac2d82-fb29-5936-91f0-de77b7788327", "text": "\u4eba\u5de5\u667a\u80fd\u4e0e\u4eba\u7c7b\u4e4b\u95f4\u7684\u5408\u4f5c\u662fGTAVI\u4e2d\u7684\u4e00\u4e2a\u4e3b\u9898\u3002\u8fd9\u4e2a\u573a\u666f\u5145\u6ee1\u7d27\u5f20\u611f\uff0c\u6bcf\u4e2a\u89d2\u8272\u90fd\u5728\u601d\u8003\u81ea\u5df1\u7684\u51b3"} +{"id": "2006366", "video_name": "e07e815d-1050-5393-8387-3861d27c7900", "text": "\u5728\u7eff\u8272\u5c4f\u5e55\u80cc\u666f\u4e0a\uff0c\u4ee5\u767d\u8272\u7f57\u9a6c\u6570\u5b57\u8361\u79cb\u5343\u5f0f\u5de6\u53f3\u6446\u52a8\u7684\u65b9\u5f0f\u753b\u51fa\u5b57\u6bcdI\u3002\n\nSource sentence: THE CAT SAT ON"} +{"id": "7003659", "video_name": "94abbe22-9d3d-58f2-b20c-2a65af63e1e0", "text": "\u4e09\u773c\u5e7b\u60f3\u7535\u5f71\u4e2d\u7684\u751f\u7269\u3002"} +{"id": "8001462", "video_name": "7d2804b5-269c-5bb4-af6d-05368d1f500b", "text": "\u4e00\u4e2a\u76d2\u5b50\u4ece\u5929\u7a7a\u6389\u4e0b\u6765\u3002"} +{"id": "4004252", "video_name": "d8120fee-cb62-5a3a-8141-6abe154f0053", "text": "\u4e00\u4e2a\u7cbe\u7075\u5728\u68ee\u6797\u91cc\u7684\u4e00\u6839\u6728\u5934\u4e0a\u5750\u7740\uff0c\u665a\u4e0a\u51dd\u89c6\u7740\u955c\u5934\uff0c\u9732\u51fa\u975e\u5e38\u53ef\u6015\u7684\u8868\u60c5\u3002"} +{"id": "6002061", "video_name": "6ad06124-73a7-5112-b62e-0497f2ad5eb4", "text": "\u9884\u544a\u7247\u4ee5\u4e00\u5e45\u53f2\u8bd7\u822c\u7684\u753b\u9762\u7ed3\u675f\uff0c\u82f1\u96c4\u548c\u4ed6\u4eec\u7684\u76df\u53cb\u4eec\u8054\u5408\u8d77\u6765\uff0c\u9762\u5bf9\u8feb\u5728\u7709\u776b\u7684\u5916\u661f\u5a01"} +{"id": "2006321", "video_name": "2b955983-90d9-5ff8-ad22-476ce0574f95", "text": "\u8036\u7a23\u5728\u82b1\u56ed\u91cc\u72ec\u81ea\u7977\u544a\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c16\u6beb\u7c73\u3002"} +{"id": "2007578", "video_name": "9f1d85ba-e9e6-5e48-8589-adfe179c6af9", "text": "\u4e00\u90e8\u63cf\u8ff0\u4e00\u4e2aLofi\u5973\u5b69\u5750\u5728\u684c\u5b50\u65c1\u601d\u8003\u7a97\u5916\u98ce\u666f\u7684\u8fd0\u52a8\u753b\u9762\u3002"} +{"id": "4004291", "video_name": "de58846e-34f5-591e-9191-a12308993ebf", "text": "\u4e00\u500b\u6050\u6016\u7684\u5916\u661f\u4eba\u5728\u7a97\u6236\u88e1"} +{"id": "4003118", "video_name": "f95f7b9f-403d-5dc3-9a6f-2abde05cd15d", "text": "\u7537\u5b69\u5728\u6d1e\u7a74\u91cc\u53d1\u73b0\u4e86\u4e00\u4e9b\u4e1c\u897f\u3002"} +{"id": "2005306", "video_name": "60a7bbb0-ffd9-5f51-98f3-3e2d2cf6dd23", "text": "\u4e50\u961fNirvana\u4f5c\u4e3a1970\u5e74\u7684\u6c49\u5a1c\u5df4\u4f2f\u62c9\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "7004756", "video_name": "c9a2518c-319c-5fdd-8334-dc8e28e5b14c", "text": "\u4e00\u4e2a\u5e78\u798f\u5fae\u7b11\u7684\u5bb6\u5ead\uff0c\u52a8\u753b\uff0c\u8fd0\u52a8"} +{"id": "3005631", "video_name": "313f25d8-a3a0-5c3a-82be-e8298b6f5858", "text": "\u9644\u8fd1\u6709\u4e00\u6c60\u5858\uff0c\u4e00\u4e9b\u8c61\u7fa4\u5f00\u59cb\u6765\u8fd9\u91cc\u559d\u6c34\u3002\u4e3a\u4e86\u5230\u8fbe\u6c60\u5858\uff0c\u8c61\u7fa4\u5fc5\u987b\u7a7f\u8fc7\u540c\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "0006379", "video_name": "2b6ff115-1ade-55cb-b83a-5e1390db4bf3", "text": "\u4e00\u4f4d\u9b54\u5973\u5750\u5728\u626b\u5e1a\u4e0a\uff0c\u5728\u591c\u665a\u98de\u8d8a\u57ce\u5e02\uff0c\u661f\u7a7a\u548c\u57ce\u5e02\u706f\u5149\u3002"} +{"id": "6004471", "video_name": "b34f5d5b-457c-521b-be6c-56331106e073", "text": "\u54c0\u60bc\u7684\u63cf\u5199\uff0c\u767d\u8272\u72d7\u513f\u79bb\u5f00\uff0c\u7537\u5b50\u4ef0\u671b\u661f\u7a7a\u63a5\u53d7\u6708\u5149\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u52a8\u4f5c2\u3002"} +{"id": "6004371", "video_name": "4111959e-cf13-596c-96ba-489a9a46df0f", "text": "\u5bbd\u955c\u5934\uff0c\u5468\u56f4\u666f\u8c61\u53d8\u6362\uff0c\u5b69\u5b50\u4eec\u73a9\u800d\u5954\u8dd1\uff0c\u5728\u795e\u79d8\u7684\u96fe\u6c14\u548c\u6708\u5149\u4e2d\u73af\u7ed5\uff0c\u7f13\u6162"} +{"id": "0006593", "video_name": "2f35a1c5-6fa7-5d0a-b2f4-b29629f680d9", "text": "\u4e00\u540d\u7a7f\u7740\u767d\u8272\u8fde\u8863\u88d9\u7684\u5973\u5b69\u8eba\u5728\u9152\u5e97\u5e8a\u4e0a\uff0c\u767d\u8272\u5e8a\u5355\u94fa\u5f00\u7740\u3002"} +{"id": "7004431", "video_name": "3f87c54c-2e64-5cde-9267-9ba4350e64de", "text": "\u4e00\u4e2a\u65e5\u5386\u7ffb\u9875\u4ece\u516b\u6708\u5230\u4e5d\u6708\uff0c\u7136\u540e\u76f8\u673a\u9010\u6e10\u63a5\u8fd1\uff0c\u76f4\u5230\u4ee59:16 4K\u683c\u5f0f\u663e\u793a\u4e5d\u67081\u65e5\u3002"} +{"id": "7003160", "video_name": "97d6fabb-e7fc-536b-90cb-12fae104209c", "text": "\u6211\u53ef\u4ee5\u8fd0\u8425\u8fea\u58eb\u5c3c\u513f\u7ae5\u52a8\u753b\u3002 \n\nSource sentence: She is studying Chinese language and culture at university. \n\n\u5979\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "6003439", "video_name": "2c0530e7-d596-59eb-9494-044be90f33ba", "text": "\u84dd\u5929\u4e3a\u80cc\u666f\uff0c\u7f13\u6162\u5730\u98d8\u626c\u7740\u65d7\u5e1c\u3002"} +{"id": "5001219", "video_name": "20e94006-d4b6-5c08-8ead-fba58f9b61c0", "text": "\u897f\u5170\u82b1\uff0c\u821e\u53f0\u4e0a\u7684\u852c\u83dc\uff0c\u5f39\u7740\u7535\u5409\u4ed6\uff0c\u827a\u672f\u611f\u5341\u8db3\u3002"} +{"id": "0006737", "video_name": "320844ad-b81a-51c7-a995-6749d9a86242", "text": "\u4e00\u7fa4\u5b69\u5b50\u53d1\u73b0\u4e86\u4e00\u53ea\u5927\u98ce\u7b5d\u3002"} +{"id": "3005583", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "\u592a\u9633\u5347\u8d77\u5728\u5c71\u4e0a\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "4002819", "video_name": "2a6bf020-a15c-5778-b500-aebca095cdb0", "text": "\u4e09\u4e2a\u7a7f\u7740\u5b87\u822a\u670d\u7684\u5b69\u5b50\u5728\u684c\u5b50\u4e0a\u89c2\u770b\u5168\u606f\u6295\u5f71\u5730\u56fe\u5e76\u8fdb\u884c\u4ea4\u6d41\u3002"} +{"id": "2004620", "video_name": "37f01d71-4ff3-54f7-a072-85a4bc357e80", "text": "\u4e00\u500b\u7a7f\u8457\u77ed\u8932\u62bd\u7159\u7684\u5973\u5b69\u3002"} +{"id": "0006363", "video_name": "2b43017e-e4d5-5466-a5e8-9a9216438fa2", "text": "\u4e00\u4e2a\u9a91\u7740\u54c8\u96f7\u6234\u7ef4\u68ee\u7684\u5973\u5b69\u5728\u4e00\u6761\u8352\u51c9\u7684\u9053\u8def\u4e0a\u9a70\u9a8b\u3002"} +{"id": "0006189", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "\u5728\u4e00\u573a\u8d85\u73b0\u5b9e\u7684\u677f\u7403\u6bd4\u8d5b\u4e2d\uff0c\u8428\u52d2\u66fc\u738b\u5b50\u548c\u585e\u897f\u603b\u7edf\u5728\u5766\u514b\u4e0a\u5bf9\u5cd9\uff0c\u4ee5\u4ee5\u8272\u5217\u56fd\u65d7\u4f5c\u4e3a\u4ed6"} +{"id": "0006344", "video_name": "2af3a94b-93a5-5d1d-a200-94b103332700", "text": "\u6c34\u4e2d\u6709\u591a\u4e2a\u5fc3\u5f62\u8ff7\u5e7b\u56fe\u6848\uff0c\u6709\u706b\u548c\u571f\uff0c\u98ce\u548c\u96fe\u3002"} +{"id": "2005593", "video_name": "7411a466-9288-5ca8-a8f2-9596268ba69c", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f\u5728\u9ed1\u6697\u7684\u57ce\u5821\u91cc\u98de\u5feb\u5954\u8dd1\u3002"} +{"id": "3005211", "video_name": "ef49f875-a575-59bd-8b2e-bb5bac67776f", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u4e2d\u56fd\u53e4\u4ee3\u5973\u6027\u5983\u5b50\u7687\u540e\u5750\u5728\u5979\u7684\u5b9d\u5ea7\u4e0a\u559d\u8336\u3002"} +{"id": "8003910", "video_name": "447dac45-dcee-5d54-af37-f3583599d7ad", "text": "\u66fe\u7ecf\u6709\u4e2a\u7537\u5b69\u517b\u7f8a\u3002"} +{"id": "0003013", "video_name": "35961992-6f68-5ce1-9787-f891f36a078b", "text": "\u94a2\u7434\u5bb6\u5728\u5f55\u97f3\u4f1a\u4e0a\u6f14\u594f\u3002"} +{"id": "1004255", "video_name": "4ec71471-a54a-5058-9df6-64fb9363d9cc", "text": "\u6709\u4eba\u5207\u4e86\u7f8e\u5473\u7684\u68a8\u679c\uff0c\u76f8\u673a\u62c9\u8fd1\u3002"} +{"id": "8001319", "video_name": "72ae5dfd-e58a-5d17-9667-c327ce819d93", "text": "\u6700\u5927\u7684\u54e5\u54e5\u603b\u662f\u5bf9\u4ed6\u7684\u5f1f\u5f1f\u4e0d\u53cb\u5584\u3002\u4ed6\u62ff\u8d70\u4e86\u6240\u6709\u7684\u98df\u7269\uff0c\u62a2\u8d70\u4e86\u6240\u6709\u597d\u8863\u670d\u3002"} +{"id": "1005150", "video_name": "5edce348-45d9-5afe-a325-4a325d295650", "text": "\u5b66\u672f\u754c\u5173\u4e8e\u7eff\u8272\u589e\u957f\u7684\u8ba8\u8bba\u3002"} +{"id": "8003844", "video_name": "24b43382-5492-576c-a1b3-56934240f492", "text": "\u9ec4\u8272\u7684\u571f\u5730\u6709\u5c71\u548c\u9ec4\u8272\u7684\u8349\u3002"} +{"id": "0005944", "video_name": "23b9075d-d177-5aec-a6cb-49543a240697", "text": "\u8fd1\u8ddd\u79bb\u7279\u5199\u5149\u5251\uff0c\u6d45\u666f\u6df1\u3002"} +{"id": "1005297", "video_name": "61508eaa-5b1d-5f51-80a6-f5721ff61726", "text": "\u592a\u7a7a\u4e2d\u6709\u661f\u661f\u548c\u661f\u4e91\uff0c\u4e2d\u5fc3\u6709\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u95e8\u6237\uff0c\u5f69\u8272\u706f\u5149\u5728\u95e8\u6237\u8868\u9762\u8fd0\u884c\u3002"} +{"id": "2007157", "video_name": "91773227-0251-5905-9fd9-9db80f1deb3c", "text": "\u4ece\u53d1\u82bd\u9636\u6bb5\u5230\u6210\u719f\u9636\u6bb5\u521b\u4f5c\u4e00\u4e2a\u9999\u8549\u7684\u89c6\u9891\u3002"} +{"id": "8001174", "video_name": "08fec416-83bc-5e96-8713-0fe0d448da0a", "text": "\u8759\u8760\u4fa0\uff0c\u4e0e\u9999\u8549\u4eba\u548c\u6211\u7684\u4e16\u754c\u6218\u6597\u3002"} +{"id": "3004335", "video_name": "fc1dd10c-ffea-514e-a160-6fd9b9d61d07", "text": "\u4e00\u4e2a\u5341\u51e0\u5c81\u7684\u7537\u5b69\u5728\u4ed6\u7684\u623f\u95f4\u91cc\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u5f00\u7740\u7a97\u6237\uff0c\u7a97\u5e18\u5728\u51c9\u723d\u7684\u5fae\u98ce\u4e2d\u98d8\u52a8"} +{"id": "7002507", "video_name": "99d42c0a-f803-5d15-b3b2-ae503e643d54", "text": "\u4e00\u7fa4\u5b69\u5b50\u8df3\u563b\u54c8\u821e\u3002"} +{"id": "4004035", "video_name": "28369c55-beb3-5044-9341-abcfa4385897", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u955c\u5b50\u524d\uff0c\u7528\u68b3\u5b50\u68b3\u7406\u4ed6\u4ee4\u4eba\u60ca\u53f9\u7684\u5934\u53d1\u3002"} +{"id": "3003246", "video_name": "1affca68-696e-5bd4-b78a-89e6f78fbd8d", "text": "\u8ba9\u52a8\u7269\u548c\u6811\u6728\u52a8\u8d77\u6765\uff0c\u5e76\u653e\u5927\u753b\u9762\u4ee5\u6e05\u6670\u5c55\u793a\u5927\u8c61\u3002"} +{"id": "1005779", "video_name": "6a5233ff-cac8-55c0-b10d-455b95b1040d", "text": "\u5c06\u5947\u5e7b\u5143\u7d20\u878d\u5165\u5176\u4e2d\uff0c\u5982\u52a8\u753b\u751f\u7269\u3001\u8c03\u76ae\u7684\u8424\u706b\u866b\u548c\u773c\u775b\u95ea\u70c1\u7684\u4f1a\u8bf4\u8bdd\u7684\u732b\u3002"} +{"id": "1003928", "video_name": "4878e30a-1678-5994-82fe-0e0b2f850bc4", "text": "\u4eba\u7c7b\u5728\u5927\u89c4\u6a21\u7684\u91ce\u517d\u4e3b\u4e49\u6708\u7403\u7ad9\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u9ed1\u767d1900\u5e74\u4ee3\u4e2d\u663e\u73b0\u3002"} +{"id": "4002266", "video_name": "d25761cd-ebfd-5f74-8c04-6c6b249e80e9", "text": "\u732b\u7a7f\u7740\u897f\u88c5\u5750\u5728\u9ed1\u8272\u6c99\u53d1\u4e0a\uff0c\u80cc\u666f\u662f\u529e\u516c\u5ba4\uff0c\u6709\u4e00\u540d\u4eba\u7c7b\u5728\u73a9\u5145\u6ee1LED\u706f\u7684\u7535\u8111\u3002"} +{"id": "6002105", "video_name": "5b357310-8e33-5917-ad21-4424ffa30568", "text": "\u4ece\u6811\u679d\u4e0a\u6458\u4e0b\u4e00\u4e2a\u91d1\u82f9\u679c\u3002\n\nSource sentence: The cat sat on the windowsill, watching the birds outside. \n\n\u732b\u5750\u5728\u7a97\u53f0\u4e0a\uff0c\u770b\u7740\u7a97\u5916\u7684"} +{"id": "2007208", "video_name": "5b7d8cea-2a64-5360-9afd-81146e2b3173", "text": "\u665a\u4e0a\uff0c\u5728\u6d77\u4e0a\u6f02\u6d6e\u7740\u4e00\u8258\u8239\uff0c\u6d77\u9762\u4e0a\u6f02\u6d6e\u7740\u6781\u5149\uff0c\u5929\u7a7a\u6674\u6717\uff0c\u661f\u661f\u7e41\u591a\uff0c\u6708\u4eae"} +{"id": "8002853", "video_name": "ae82c19e-892b-5d1d-b13d-5c7c306ca874", "text": "\u6c99\u6f20\u4e2d\u6301\u5251\u7684\u7f57\u9a6c\u58eb\u5175\u3002"} +{"id": "6002836", "video_name": "aa2f929b-982b-50a5-bb1f-fd05b63636e8", "text": "\u8bb8\u591a\u72d7\u8df3\u8fdb\u6cf3\u6c60\u3002\u4fe1\u606f\uff1aPerro Beso\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53\uff09"} +{"id": "2003233", "video_name": "00246a50-5dda-5c2b-84c0-bd81002e0541", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u5728\u654c\u4eba\u9762\u524d\u6539\u53d8\u5df4\u57fa\u65af\u5766\u7684\u672a\u6765\u3002"} +{"id": "7002017", "video_name": "e80c349b-e99e-5b3e-a026-4677d30c4767", "text": "\u5b8c\u5168\u9ed1\u8272\u80cc\u666f\uff01\u65e0\u5c3d\u6807\u5fd7\u4e2d\u592e\uff0c\u4e00\u4e2a\u70b9\u5728\u65e0\u5c3d\u6807\u5fd7\u4e0a\u79fb\u52a8\u3002"} +{"id": "5001670", "video_name": "f8d0ea5a-03fd-52f1-b33c-dc9065726e8d", "text": "\u4e00\u540d18\u5c81\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u4e3e\u8d77\u624b\u81c2\uff0c\u5728\u96e8\u4e2d\u7ad9\u7740\uff0c\u770b\u7740\u4e00\u4e2a\u7f8e\u5999\u76848k 16:9\u52a8\u6001\u5f69\u8679\u3002"} +{"id": "2005084", "video_name": "3d71885d-275c-51c8-9bcb-acbfccdedad2", "text": "\u4e00\u9897\u5f57\u661f\u6b63\u671d\u5411\u4e00\u4e2a\u84dd\u8272\u548c\u7d2b\u8272\u7684\u661f\u7403\u98de\u6765\uff0c\u5448\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "7002778", "video_name": "e0257c6c-51f4-552c-95d1-131a5deeba24", "text": "\u62bd\u8c61\u80cc\u666f\uff0c\u5e7b\u60f3\u827a\u672f\uff0c\u67d4\u548c\u7684\u91d1\u8272\u3001\u68d5\u8272\u3001\u7ea2\u8272\uff0c\u8ff7\u5e7b\u7684\u3001\u70ab\u9177\u7684\u3002"} +{"id": "2006108", "video_name": "f7d93fe1-4acb-5b7d-bff3-f2e982f974b6", "text": "\u4e00\u5bf9\u5e74\u9f84\u4e3a20\u5c81\u7684\u5e74\u8f7b\u60c5\u4fa3\u5728\u590d\u6d3b\u8282\u5c9b\u7684\u6d77\u6ee9\u4e0a\u63a5\u543b\uff0c\u521b\u9020\u51fa\u6d6a\u6f2b\u7684\u6c1b\u56f4\uff0c\u5468\u56f4\u6709\u68d5"} +{"id": "1003013", "video_name": "375ca82d-1fbb-59b8-9e1c-27e0aa02ce3b", "text": "\u4e00\u5f20\u900f\u8fc7\u6321\u98ce\u73bb\u7483\u7684\u9ece\u660e\u7167\u7247\uff0c\u8def\u9762\u4e0a\u6709\u4e09\u6392\u8f66\u9053\u63a7\u5236\u706f\uff0c\u6bcf\u6392\u6709\u56db\u4e2a\u7eff\u8272\u7bad\u5934\u6807\u5fd7"} +{"id": "0006612", "video_name": "2f8c1073-9722-571e-ae56-d775f083fa94", "text": "\u4eba\u7fa4\u805a\u96c6\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u7b49\u5f85\u7740\u67d0\u4e2a\u4eba\u3002\u4ed6\u4eec\u5bb3\u6015\u8fd9\u662f\u4e00\u4e2a\u975e\u5e38\u9ed1\u6697\u3001\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "1006341", "video_name": "740e05b9-d4c5-56fa-ad0b-7e64f9aac40e", "text": "\u9a6c\u514b\u65af\u8eba\u5728\u4e00\u7247\u9633\u5149\u4e0b\uff0c\u4f11\u606f\u4e00\u4e0b\uff0c\u4eab\u53d7\u6e29\u6696\u3002"} +{"id": "6004072", "video_name": "0173a2ef-f50c-5987-8ee0-4e7bdde85311", "text": "\u5b69\u5b50\u4eec\u6b63\u5728\u6253\u5f00\u4e00\u767e\u4e07\u4e2a\u5723\u8bde\u793c\u7269\u3002"} +{"id": "3004251", "video_name": "3ca88e53-bc38-501a-a346-c1ab328ceb50", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5bb6\u91cc\u505a\u4f5c\u4e1a\u3002"} +{"id": "1005023", "video_name": "5ceac785-3448-5fa7-9295-89bcb1352987", "text": "\u9b54\u6cd5\u8611\u83c7\u738b\u56fd\uff0c\u8ff7\u5e7b\u738b\u56fd\uff0cLSD\u738b\u56fd\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u54c1\u8d28\uff0c4K\u9ad8\u6e05\u8d28\u91cf\uff0c\u8ff7\u5e7b\u6548"} +{"id": "1003988", "video_name": "49b18dcd-1e0a-5870-b357-3beca2a063c3", "text": "\u4e00\u679a\u706b\u7bad\u7a7f\u8fc7\u4e91\u5c42\uff0c\u903c\u771f\u3001\u9ad8\u6e05\u30014K\u3001\u620f\u5267\u5316\u3001\u7535\u5f71\u5316\u3002"} +{"id": "2004058", "video_name": "d754daef-0f16-5eaa-876b-840426d9d298", "text": "\u5b9d\u5b9d\u51e4\u51f0\u964d\u751f\uff0c80\u5e74\u4ee3\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "2006328", "video_name": "ee15c459-92ee-5675-bbdc-f017c7ac8b34", "text": "\u6dd8\u6c14\u7684\u4ed9\u5973\u5728\u91cc\u5965\u5468\u56f4\u8df3\u821e\uff0c\u5f53\u4ed6\u6df1\u5165\u6811\u6797\u65f6\uff0c\u8c03\u76ae\u5730\u5411\u4ed6\u5934\u4e0a\u6492\u7740\u95ea\u5149\u7c89\u3002"} +{"id": "8001745", "video_name": "cb59aff3-5fc3-55c6-8fa6-59249d39a3f8", "text": "\u4e00\u5f20\u4e00\u6218\u4e2d\u4e00\u540d\u53d7\u4f24\u58eb\u5175\u5fae\u7b11\u7684\u9648\u65e7\u5e7d\u7075\u7167\u7247\u3002"} +{"id": "4002883", "video_name": "3a107ede-6237-5ed5-90a3-ddccdb2d1abd", "text": "\u609f\u7a7a\u5728\u57ce\u5e02\u4e2d\u4e0e\u5de8\u5927\u7684\u602a\u7269\u6218\u6597\u3002"} +{"id": "0003326", "video_name": "3baa78a3-5be7-5126-bc58-3cc73ccb792b", "text": "\u5728\u5c4f\u5e55\u4e0a\u6eda\u52a8\u663e\u793a\u8bed\u8a00\u5217\u8868\u3002"} +{"id": "8001595", "video_name": "bab8b980-b7ea-5b6d-b52e-ff92ea0c90a4", "text": "\u65c5\u884c\u8005\u80cc\u7740\u4e00\u4e2a\u5145\u6ee1\u7269\u54c1\u7684\u80cc\u5305\uff0c\u8138\u4e0a\u6709\u7740\u9ed1\u8272\u7684\u77ed\u53d1\u548c\u4e00\u70b9\u5c0f\u80e1\u5b50\uff0c\u5728\u7bdd\u706b\u65c1\u8fb9\u8bfb"} +{"id": "8002395", "video_name": "f89c2ab9-2ac4-5627-872c-83c0e22f4677", "text": "\u963f\u62c9\u4f2f\u9f13\u624b\u56e2\u4f53\u70ed\u60c5\u6f14\u594f\u3002"} +{"id": "2006517", "video_name": "5903a293-7f3d-5087-8e7b-3aafd96f46e7", "text": "\u6839\u636e\u7167\u7247\u5236\u4f5c\u4e00\u652f\u8db3\u7403\u961f\u6bd4\u8d5b\u7684\u89c6\u9891\u3002 \n\nSource sentence: I am learning Chinese because I want to communicate with my Chinese friends better. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211"} +{"id": "8003105", "video_name": "04a2a144-da9b-5fe0-b206-a10ecb37b930", "text": "\u98ce\u5439\u8fc7\u6781\u7b80\u4e3b\u4e49\u5ba2\u5385\u7684\u7a97\u5e18\u3002\u5728\u666f\u89c2\u4e2d\u3002"} +{"id": "2004184", "video_name": "9e650f35-d09a-5261-9e6e-374a62ddfa02", "text": "\u900f\u660e\u7684\u6d41\u52a8\u7ec7\u7269\uff0c\u7531\u8f7b\u76c8\u7684\u4e1d\u5e26\u7a7f\u8fc7\u4e91\u5c42\uff0c\u67d4\u548c\u7684\u5149\u7ebf\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002\u4fe1\u606f\uff1a\u9501\u5c4f\u5b9d"} +{"id": "1003107", "video_name": "3934a495-e888-5f41-86bc-7eb0ec122107", "text": "\u5409\u8428\u91d1\u5b57\u5854\u5b9e\u666f\u98de\u884c\u7684\u89c6\u9891"} +{"id": "0004320", "video_name": "0709f838-c35d-5ade-bd8f-9dace06dda41", "text": "\u4e00\u7fa4\u6d77\u9e25\u98de\u5411\u843d\u65e5\u7684\u8d85\u5199\u5b9e\u6e32\u67d3\u3002"} +{"id": "0006119", "video_name": "26f0e863-0db5-54ec-a7fa-4328152b1f2a", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5448\u73b02100\u5e74\u9ad8\u7ea7\u751f\u6d3b\u7684\u89c6\u9891\uff0c\u5efa\u7b51\u975e\u5e38\u5148\u8fdb\uff0c\u751f\u6d3b\u5145\u6ee1\u79d1\u6280\u7684\u89c6\u9891\u3002 \n\nSource sentence: The company's goal is to provide high-quality"} +{"id": "0005765", "video_name": "20e9f569-44a8-56d7-abda-fca1673796de", "text": "\u4e00\u4e2a\u666e\u901a\u7684\u4eba\u770b\u7740\u4e00\u7fa4\u90aa\u6076\u7684\u9a91\u58eb\uff0c\u9a91\u58eb\u4eec\u4e5f\u770b\u5411\u8fd9\u4e2a\u4eba\u3002"} +{"id": "1005134", "video_name": "5eacbdd2-39e7-57ca-9dba-8c60190b510b", "text": "\u6c99\u6ee9\u6d77\u5cb8\uff0c\u9e1f\u77b0\u89c6\u89d2\u3002ChatGPT 5\u3002"} +{"id": "8001871", "video_name": "45e54534-2bb8-5ace-bef6-44cf229c9e99", "text": "\u5728\u70db\u5149\u4e0b\u8c03\u5236\u7597\u5242\uff0c\u76f8\u673a\u653e\u5927\u3002\n\nSource sentence: The cat is sleeping on the window sill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761\u89c9\u3002"} +{"id": "6003616", "video_name": "0238f2bb-f344-5622-9a4c-f0622c32e37d", "text": "\u4e00\u8f86\u884c\u9a76\u7684\u6c7d\u8f66\u5f15\u8d77\u4e86\u706b\u707e\u3002"} +{"id": "4003957", "video_name": "622e2a66-96c1-5faf-bd14-d2f736cffdb5", "text": "\u4e00\u6761\u7f8e\u4e3d\u7684\u6cb3\u6d41\u7a7f\u8fc7\u4e24\u7247\u68ee\u6797\uff0c\u9ad8\u5ea6\u903c\u771f\uff0c\u8d28\u91cf\u975e\u5e38\u9ad8\uff0c8K\u3002"} +{"id": "2005176", "video_name": "23948906-d8e9-5d52-8cd3-3ebdb65b422d", "text": "\u591c\u95f4\u68ee\u6797\u4e2d\u7684\u795e\u79d8\u52a8\u7269\u88ab\u62cd\u6444\u5230\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002"} +{"id": "7003023", "video_name": "3231388b-3840-5288-b209-f039366063f5", "text": "\u6e05\u6668\u65f6\u5206\uff0c\u4e00\u7fa4\u7f8a\u5728\u96ea\u5c71\u4e0b\u7684\u8349\u5730\u4e0a\u7f13\u7f13\u884c\u8d70\u3002\n\nSource sentence: The sunset over the ocean was breathtakingly beautiful. \n\n\u5927\u6d77\u4e0a\u7684\u65e5\u843d"} +{"id": "0006930", "video_name": "3574d5eb-3734-5bad-84a1-65d8e2ea01ac", "text": "\u4e00\u4e2a\u56db\u5c81\u5973\u5b69\u7684\u89d2\u8272\uff0c\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u591a\u4e2a\u89d2\u5ea6\uff0cStudio Ghibli\u52a8\u753b\uff0cStudio Ghibli\u98ce\u683c\u3002"} +{"id": "1003902", "video_name": "48030619-b6ae-5860-858a-58dad7a4c41d", "text": "\u6240\u6709\u80cc\u666f\u4eba\u7269\u8dea\u4e0b\uff0c\u5149\u8292\u95ea\u8000\uff0c4K\uff0c\u9ad8\u6e05\uff0c\u52a8\u753b\u3002"} +{"id": "5001268", "video_name": "72c8fab5-dadd-5abc-91e3-f5b7f77d85ec", "text": "\u4e00\u8258\u5c3d\u53ef\u80fd\u9510\u5229\u7684\u6770\u7279\u68ee\u98ce\u683c\u7684\u5b87\u5b99\u98de\u8239\uff0c\u964d\u843d\u5728\u4e00\u5ea7\u5c3d\u53ef\u80fd\u9510\u5229\u7684\u53e4\u7f57\u9a6c\u57ce"} +{"id": "7002351", "video_name": "1315baf2-8d8d-5620-b5f3-1df7c1feb79f", "text": "\u8d28\u7c92\u5728\u7ec6\u80de\u5185\u79fb\u52a8\u4ee5\u6559\u5b66\u3002"} +{"id": "8001059", "video_name": "4682a82f-340f-5bb8-b1fa-27db5ce4b422", "text": "\u4e00\u5934\u725b\u8d70\u8fc7\u6d77\u6d0b\u3002"} +{"id": "7002236", "video_name": "e5aa5bc8-4228-5ebb-bec4-77416d690819", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u957f\u7b52\u889c\u548c\u9ad8\u8ddf\u978b\u7684\u7f8e\u4e3d\u4e9a\u6d32\u59d0\u59d0\u3002"} +{"id": "8001102", "video_name": "3117a61d-fdef-5f4e-8e6b-72f4559aef1b", "text": "\u90a3\u5ea7\u8001\u65e7\u7684\u5e9f\u5f03\u623f\u5c4b\u77d7\u7acb\u5728\u5c71\u4e0a\u4fef\u77b0\u7740\u5c0f\u9547\u3002\u5b83\u5df2\u7ecf\u7a7a\u7f6e\u591a\u5e74\uff0c\u6ca1\u6709\u4eba\u6562\u9760\u8fd1"} +{"id": "0005653", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u4e0a\u89c2\u5bdf\u666f\u89c2\u3002"} +{"id": "2005703", "video_name": "43d28869-7f6c-5379-bda9-e6c5c8f65e9f", "text": "Source sentence: \u8001\u9e73\u8349\u7684\u53f6\u7247\u751f\u957f"} +{"id": "3003652", "video_name": "cd1d32b7-76c9-53ea-90f2-1e92480423c0", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u548c\u4e00\u53ea\u7c89\u8272\u7684\u5154\u5b50\u8df3\u821e\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "0003039", "video_name": "35f5d2a5-50bf-58c1-a467-a1ea46a43894", "text": "\u4e00\u7fa4\u4eba\u8bbe\u7f6e\u9677\u9631\uff0c\u4e3a\u4e86\u5728\u72fc\u665a\u95f4\u7684\u72c2\u5954\u4e2d\u4f0f\u51fb\u5b83\u4eec\uff0c\u4ed6\u4eec\u5728\u68ee\u6797\u4e2d\u5efa\u9020\u4e86\u4e00\u4e2a\u8ff7\u5bab\u8def\u5f84"} +{"id": "6004132", "video_name": "3d104189-3f0f-5242-ac6e-66f3aa3cce20", "text": "\u79d1\u5e7b\u5deb\u5e08\u9a91\u5728\u673a\u5668\u9f99\u4e0a\u98de\u884c\u3002"} +{"id": "3006793", "video_name": "17521083-3643-5f85-95bc-e6d5b4075f96", "text": "\u4e00\u4e2a\u7a7f\u7740\u7ea2\u888d\u548c\u9ad8\u5e3d\u5b50\u7684\u5deb\u5e08\u5728\u795e\u79d8\u7684\u5149\u7ebf\u4e0b\u7684\u7530\u91ce\u4e0a\u51dd\u89c6\u7740\u6c34\u6676\u7403\u3002"} +{"id": "3005272", "video_name": "6532b27b-648a-5a5e-9571-44b5934169c8", "text": "\u4e00\u4e2a\u5973\u5b69\u4ece\u5bb6\u8d70\u5230\u5b66\u6821\u3002"} +{"id": "8002678", "video_name": "f09c1287-b3fc-56a5-bcec-e7bd504ccd7c", "text": "\u63ed\u793a\u4e86\u5b83\u7684\u5947\u5999\u4e4b\u5904\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u3002"} +{"id": "4004131", "video_name": "19721eb9-96c1-5f4a-a8ab-55ef353439d3", "text": "\u89d2\u6597\u58eb\u5728\u4e9a\u5e87\u5b89\u5927\u9053\u884c\u8fdb\u3002"} +{"id": "0003213", "video_name": "395b44f6-1475-5377-8e1c-b1585ccdf1e6", "text": "\u7ea2\u8272\u7684\u591c\u665a\u88ab\u95ea\u7535\u6df9\u6ca1\uff0c\u843d\u5165\u6d77\u6e7e\uff0c\u6d77\u4e0a\u4e00\u8258\u5de8\u578b\u6e38\u8247\u8bd5\u56fe\u63a7\u5236\u6ce2\u6d9b\u30028k\u3002\u903c"} +{"id": "6003452", "video_name": "affad493-4211-542c-98df-ff1b7b2206d0", "text": "\u4e00\u4e2a\u62ff\u7740\u9c7c\uff0c\u5728\u88ab\u949e\u7968\u5305\u56f4\u7684\u7535\u8111\u684c\u524d\u5750\u7740\u7684\u7537\u4eba\u3002"} +{"id": "4002178", "video_name": "212cd27f-89c4-5a78-b051-b0e676c65b6f", "text": "\u4e00\u7247\u6709\u4e09\u4e2a\u6708\u4eae\u548c\u7c7b\u4f3c\u4e8e\u7535\u5f71\u300a\u661f\u9645\u4e4b\u95e8\u300b\u4e2d\u7684\u91d1\u5b57\u5854\u7684\u5929\u7a7a\uff0c4K\u3002"} +{"id": "0004739", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "\u4e00\u4f4d\u5987\u5973\u5de5\u4f5c\u4e86\u6574\u6574\u4e00\u5929\u540e\u611f\u5230\u75b2\u60eb\uff0c\u5979\u5750\u5728\u6905\u5b50\u4e0a\u7136\u540e\u9677\u5165\u4e86\u7761\u7720\u3002"} +{"id": "2003684", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "\u4e00\u4e2a\u65c5\u884c\u8005\u72ec\u81ea\u8d70\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "3006155", "video_name": "26a5d0a5-6998-5fc0-8886-94327351679e", "text": "\u7ed8\u5236\u5b8f\u89c2\u5947\u5e7b\u6d77\u5e95\u548c\u6c34\u4e0b\u666f\u89c2\u7684\u56fe\u7247\uff0c\u5305\u62ec\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u548c\u4e0d\u5bfb\u5e38\u7684\u690d\u7269\u3001\u751f\u7269\u548c"} +{"id": "8002352", "video_name": "a8716de1-949a-5c98-bbcd-8dafca691dd2", "text": "\u94c1\u5236\u738b\u5ea7\u4e0a\u5750\u7740\u4e00\u4e2a\u7537\u4eba\u3002"} +{"id": "2006111", "video_name": "1cdc03ed-bcfd-5a96-98d9-20045c413715", "text": "\u5317\u6781\u718a\u5728\u6c99\u6f20\u4e2d\u5403\u4e09\u6587\u9c7c\u3002"} +{"id": "5001760", "video_name": "e45ea414-3926-5fbf-9ac8-00ec51e193b6", "text": "LED\u706f\u5149\uff0c\u5b57\u4f53\u4e3a\u590d\u53e4\u98ce\u683c\uff0c\u8db3\u591f\u597d\u3002"} +{"id": "5001895", "video_name": "b3dfbdfa-7ece-5882-b426-d9a0ce8a6fb4", "text": "\u4e00\u53ea\u9e21\u5728\u623f\u5b50\u91cc\u7684\u53a8\u623f\u5730\u677f\u4e0a\u5403\u7740\u7389\u7c73\uff0c\u623f\u5b50\u662f\u767d\u8272\u7684\uff0c\u5e26\u6709\u9ed1\u8272\u7684\u88c5\u9970\u3002"} +{"id": "7004057", "video_name": "25db137d-6dcf-5e2f-8e98-39a9ecfe4625", "text": "\u5370\u5ea6\u53e4\u4ee3\u5723\u4eba\u4e58\u7740\u5927\u7bf7\u8f66\u7a7f\u8d8a\u559c\u9a6c\u62c9\u96c5\u5c71\uff0c\u7535\u5f71\u822c\u58ee\u89c2\u3002"} +{"id": "8001026", "video_name": "20cda577-0498-5dde-8362-670fc853cb57", "text": "\u5b87\u822a\u5458\u624b\u4e2d\u7684\u7269\u4f53\u5192\u51fa\u4e86\u6eda\u6eda\u6d53\u70df\u3002"} +{"id": "6004226", "video_name": "ab5c3c4c-660c-5175-bd0e-bef63d1caa6f", "text": "\u4e24\u4e2a\u672a\u6765\u4e3b\u4e49\u5916\u89c2\u7684\u4eba\u4ece\u4e00\u8258\u98de\u884c\u5728\u6ce1\u83dc\u7a7a\u95f4\u4e2d\u7684\u5b87\u5b99\u98de\u8239\u4e2d\u8d70\u51fa\u6765\uff0c\u5176\u4e2d\u4e00\u4e9b\u6ce1\u83dc\u7206"} +{"id": "2003912", "video_name": "c32f1e93-7a06-5f07-a560-2899e26b0fa7", "text": "\u6211\u4eec\u7ed3\u675f\u4e86\u6211\u4eec\u5bf9\u963f\u52a0\u6c99\u795e\u79d8\u9886\u57df\u7684\u63a2\u9669\u3002"} +{"id": "7002577", "video_name": "a613c1a2-23a4-599a-9974-c9a1260d20e1", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5e8a\u4e0a\u7761\u7740\u4e86\uff0c\u4ed6\u65c1\u8fb9\u6709\u51e0\u4e2a\u82f9\u679c\u6389\u4e86\u4e0b\u6765\uff0c\u4e00\u4e2a\u903c\u771f\u7684\u89c6\u9891\u3002"} +{"id": "4002568", "video_name": "ce331244-eb8b-5d0c-86f1-3e2142e720bc", "text": "\u5c71\u4e0a\u7684\u5973\u5b69\u5728\u623f\u95f4\u91cc\u5750\u5728\u6905\u5b50\u4e0a\u5b66\u4e60\u3002"} +{"id": "4004774", "video_name": "4814bcea-14e4-542a-9429-0b16b076c402", "text": "\u7537\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u62b1\u7740\u718a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "8001190", "video_name": "cf0ccf49-d092-5004-9346-a45686d93f60", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u80cc\u666f\u662f\u9633\u5149\u660e\u5a9a\u7684\u516c\u56ed\uff0c\u6709\u6811\u6728\uff0c\u662f\u81ea\u7136\u4e2d\u7684\u7f8e\u4e3d\u5730\u65b9"} +{"id": "2003055", "video_name": "d9852fb5-5543-5081-a987-326b21211774", "text": "\u4e00\u7fa4\u6124\u6012\u5954\u8dd1\u7684\u5927\u8c61\u5728\u6751\u5e84\u4e2d\u5954\u8dd1\uff0c3D\u5361\u901a\u3002"} +{"id": "1006187", "video_name": "715410a9-9817-5865-acd3-55592c2fcacf", "text": "\u5c4f\u5e55\u4e2d\u592e\u9010\u6e10\u51fa\u73b0\u4e86\u4e00\u5f20\u6e29\u6696\u7684\u5723\u8bde\u5361\u7247\uff0c\u5468\u56f4\u662f\u8282\u65e5\u7684\u88c5\u9970\u3002"} +{"id": "3004724", "video_name": "3aa58cbe-4ce2-520e-8814-04ce386ccd65", "text": "\u4e00\u4e2a\u4e3b\u89d2\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u7528\u95ea\u70c1\u7684\u624b\u7535\u7b52\u63a2\u7d22\u5e9f\u5f03\u7684\u8c6a\u5b85\u3002"} +{"id": "0006561", "video_name": "2eb2649b-c3de-58a2-b7fc-c8ac459c2dd4", "text": "\u6e90\u53e5\uff1a\u50cf\u300a\u8718\u86db\u4fa0\uff1a\u5e73\u884c\u5b87\u5b99\u300b\u4e00\u6837\u7684\u620f\u5267\u6027\u52a8\u4f5c\uff0c\u7537\u4eba\u5728\u767d\u5929\u4ece\u57ce\u5e02\u5efa\u7b51\u7269\u4e2d\u8361"} +{"id": "1005962", "video_name": "6d8c52c0-fcc7-5d5a-ac00-37b99ba3a889", "text": "\u4e00\u4e2a\u7537\u5b69\u626e\u6210\u6559\u7236\u3002"} +{"id": "3006369", "video_name": "f64c12a6-a6cc-557b-9866-c580c53ef007", "text": "\u95e8\u534a\u5f00\u7740\uff0c\u4e0a\u9762\u5199\u7740\u201c\u540e\u53f0\u201d\u3002"} +{"id": "4003365", "video_name": "cbb1c503-2171-513c-b449-5acb2a48e4c5", "text": "\u5973\u4eba\u7a7f\u8fc7\u68ee\u6797\u5230\u8fbe\u623f\u5c4b\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u7761\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "7004481", "video_name": "f3075c9a-e217-53bd-973e-e95c3b4f6588", "text": "\u9633\u5149\u5728\u5899\u4e0a\u95ea\u70c1\uff0c\u8349\u548c\u6811\u679d\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "7003682", "video_name": "df1175b7-42e1-54c3-a51b-7d9a914cfcd7", "text": "\u6751\u5e84\u91cc\u7684\u5b69\u5b50\u4eec\u548c\u5de8\u5927\u7684\u673a\u5668\u4eba\u73a9\u800d\u3002"} +{"id": "8001907", "video_name": "973c2b4d-74c3-5210-b9c4-0e0d3abd10a5", "text": "\u6211\u4e0a\u4f20\u4e86\u8fd9\u5f20\u7167\u7247\uff0c\u662f\u4e00\u4e2a\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u5728\u5348\u540e\u9633\u5149\u4e0b\u5728\u6d77\u6ee9\u4e0a\u5fae\u7b11\u7684\u5973\u4eba\u3002\u56fe\u7247\uff1ammexport1703731081472.jpg"} +{"id": "3003841", "video_name": "f68c3c68-6e91-5e56-a82b-fe7c73a1a169", "text": "\u5728\u5e9f\u5f03\u7684\u5efa\u7b51\u7269\u91cc\uff0c\u4e00\u540d\u8138\u90e8\u8f6e\u5ed3\u5206\u660e\u3001\u77ed\u53d1\u7684\u5c11\u5e74\u6b63\u5728\u9003\u79bb\u4e00\u67b6\u65e0\u4eba\u673a\u3002"} +{"id": "1005550", "video_name": "663056b3-07ed-54da-be78-a8daecb95fb0", "text": "\u521b\u9020\u4e00\u6bb5\u5173\u4e8e\u6811\u6728\u8df3\u821e\u7684\u9ad8\u8d28\u91cf\u89c6\u9891\uff0c\u5728\u8fdc\u5904\u6709\u4e24\u4e2a\u9b54\u672f\u5e08\u8868\u6f14\u4ed6\u4eec\u7684\u5492\u8bed\uff0c\u89c6\u9891\u957f\u5ea6\u4e3a10\u79d2"} +{"id": "3005969", "video_name": "2a63826c-392e-589c-87b3-d09b16c60cab", "text": "\u4e1c\u65b9\u7f8e\u5b66\uff0c\u7ec6\u817b\u3001\u542b\u84c4\uff0c\u7389\u7ea2\uff0c\u7528\u4e8e\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "8001788", "video_name": "a0df352c-2a42-538d-a6eb-85c6bc7505b9", "text": "\u91cd\u96e8\u4e2d\u7684\u6c34\u575d\uff0c\u5580\u62c9\u62c9\u90a6\u6d2a\u707e\u3002"} +{"id": "3003688", "video_name": "32a197ef-a94f-5b92-8632-e93e2ad03f8f", "text": "\u4e00\u4e2a\u8001\u5e74\u7537\u5b50\u5728\u670d\u7528\u516d\u79cd\u81f4\u5e7b\u8611\u83c7\u540e\u770b\u5230\u81ea\u5df1\u7a7f\u7740\u5973\u88c5\u7684\u5e7b\u8c61\u3002"} +{"id": "6003789", "video_name": "59ffc3e7-d97a-537b-b2ff-203e0b098df1", "text": "\u591a\u7c73\u5c3c\u514b\u00b7\u6258\u96f7\u6258\uff08Dominic Toretto\uff09\u5750\u5728\u6c7d\u8f66\u91cc\uff0c\u4e0e\u7ef4\u5c3c\u718a\uff08Vinnie the Pooh\uff09\u5e15\u514b\u65af\u5854"} +{"id": "7002828", "video_name": "efa81324-4402-5ec3-b2f1-ef5c44e7b378", "text": "\u7ec6\u8282\u955c\u5934\u5c55\u793a\u706d\u706b\u7684\u6c34\uff0c\u9897\u7c92\uff0c\u53f2\u8bd7\uff0c\u7eaa\u5f55\u7247\uff0c8K\uff0cHDRI\uff0c\u597d\u83b1\u575e\u3002"} +{"id": "2005925", "video_name": "ff8dd36f-616b-5a7e-8f8b-7072df643bdc", "text": "\u519c\u6c11\u5728\u7530\u95f4\u52b3\u4f5c\uff0c\u8f7b\u67d4\u7684\u6bdb\u6bdb\u96e8\u843d\u4e0b\u3002"} +{"id": "1005079", "video_name": "5da6a7f4-d484-5fae-9fea-c1245cabe23b", "text": "1\u4e2a\u50f5\u5c38\u8d70\u8fc7\u5893\u5730\u3002"} +{"id": "2005786", "video_name": "97745002-55f5-58b2-bf90-c834a0b0af40", "text": "\u4e00\u5f20\u53e4\u8463\u5531\u7247\u673a\u653e\u5728\u4e00\u5f20\u84dd\u8272\u80cc\u666f\u7684\u684c\u5b50\u4e0a\uff0c\u5531\u7247\u673a\u6b63\u5728\u64ad\u653e\u3002"} +{"id": "3003724", "video_name": "cf73556b-5465-594c-b5c6-cb4c91c79861", "text": "\u5728 Zdzis\u0142aw Beksi\u0144ski \u7684\u98ce\u683c\u4e2d\uff0c\u836f\u4e38\u5728\u6db2\u4f53\u4e2d\u6eb6\u89e3\u3002"} +{"id": "8002878", "video_name": "57651b66-5648-5ca7-89fb-09f3e729e3dc", "text": "\u51cf\u5c11\u5ba4\u5185\u534a\u6ee1\u3001\u7565\u5e26\u9508\u8ff9\u7684\u65b9\u5f62\u5bb9\u5668\u5185\u7684\u6c34\u4f4d\uff0c\u4ee5\u7b80\u6d01\u7684\u56fe\u6848\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4004172", "video_name": "93c2e649-6afb-5b94-a36f-f9d256ebe644", "text": "\u811a\u5728\u6ce5\u571f\u4e0a\u91cd\u91cd\u5730\u8e29\u4e0b\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u6bcf\u79d224\u5e27\uff0c\u52a8\u4f5c5\u3002"} +{"id": "2006996", "video_name": "847da92c-f3b2-533c-9471-65b32becdb6d", "text": "\u5df4\u514b\u4e18\uff0c\u6bd4\u514b\u7cd6\u679c\u5e97\u4e3b\u7684\u513f\u5b50\uff0c\u6027\u60c5\u975e\u5e38\u66b4\u8e81\u3002"} +{"id": "1003092", "video_name": "38e00268-cfef-5df6-ad71-bb930555a138", "text": "\u4e00\u4e2a\u7537\u8001\u5e08\u5728\u684c\u5b50\u4e0a\u6559\u4e24\u4e2a\u5b69\u5b50\u6570\u5b66\u3002"} +{"id": "1006283", "video_name": "7316184a-2fdf-543e-887e-5d8a943f0846", "text": "\u5305\u542b\u4e2a\u4eba\u7406\u8d22\u6280\u5de7\u7684\u89c6\u9891\uff0c\u6301\u7eed10\u79d2\uff0c\u84dd\u7070\u8272\u8c03\uff0c\u5e76\u5177\u6709\u826f\u597d\u7684\u6295\u8d44\u548c\u8d22\u52a1\u8981\u7d20\u3002"} +{"id": "2006707", "video_name": "bbbdf87e-f289-58ab-9c2a-2e18b4f3f982", "text": "\u672a\u6765\u65f6\u5149\u673a\u7684\u7535\u5f71\u573a\u666f\uff0c4K \u6e05\u6670\u5ea6\u3002"} +{"id": "2004319", "video_name": "82702d0e-9edf-54ce-8924-6fa63d717290", "text": "\u65e5\u843d\u4e2d\u7684\u6cb3\u6d41\uff0c\u7535\u5f71\uff0c\u8fdc\u79bb\u7684\u955c\u5934\u3002"} +{"id": "2004488", "video_name": "6a0e4ecd-c232-5215-a0cd-678561e5cbba", "text": "\u771f\u6b63\u7684\u7535\u8111\u5e26\u6709\u5b89\u5168\u6444\u50cf\u5934\u3002"} +{"id": "5001970", "video_name": "0f572c3b-adf8-56dc-bf10-e3f3949916b1", "text": "Translation: \u722c\u5c71\u8513\u4e0a\u5f00\u653e\u7684\u73ab\u7470\u3002"} +{"id": "2006919", "video_name": "4302bb27-1b85-5d9b-b55d-a71658a0c27d", "text": "\u6df1\u591c\u91cc\uff0c\u661f\u661f\u95ea\u70c1\u660e\u4eae\u3002\n\nSource sentence: I enjoy listening to music while I work. \n\u6211\u559c\u6b22\u5728\u5de5\u4f5c\u65f6\u542c\u97f3\u4e50\u3002"} +{"id": "1005093", "video_name": "5df756d1-ad8c-50ff-ac45-4813061f4187", "text": "\u4e00\u53ea\u6234\u7740\u81ea\u884c\u8f66\u5934\u76d4\u7684\u677e\u9f20\u5728\u4e00\u53ea\u72ec\u89d2\u517d\u7684\u6e38\u6cf3\u6c60\u91cc\u3002"} +{"id": "7003247", "video_name": "38c98e14-86e1-5bde-a6c6-fb6799b51700", "text": "\u6770\u745e\u00b7\u585e\u83f2\u5c14\u5fb7\u5750\u5728\u8f66\u91cc\u559d\u5496\u5561\u3002\n\nSource sentence: The book on the table is mine.\n\u684c\u5b50\u4e0a\u7684\u4e66\u662f\u6211\u81ea\u5df1\u7684\u3002"} +{"id": "7004392", "video_name": "d5cd8d0f-b1af-5b73-8703-b68c5d6144f1", "text": "\u56db\u53e3\u4e4b\u5bb6\u5728\u9910\u684c\u4e0a\u5171\u5ea6\u5723\u8bde\u665a\u9910\uff0c\u623f\u5b50\u91cc\u5230\u5904\u90fd\u662f\u5723\u8bde\u88c5\u9970\u3002"} +{"id": "1004403", "video_name": "51672851-cf24-5479-9044-cfcfeff66dcc", "text": "\u5f53\u6c34\u6ef4\u843d\u65f6\uff0c\u4ed6\u6492\u4e86\u4e00\u628a\u91d1\u5e01\u3002"} +{"id": "7004726", "video_name": "760c49f7-c3c7-52da-a85a-0d0785b46f69", "text": "\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6674\u6717\u65e5\u5b50\u91cc\uff0c\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5176\u4e2d\u9e3d\u5b50\u98de\u7fd4\uff0c\u571f\u8033\u5176\u56fd\u65d7\u5189\u5189\u5347\u8d77\u3002"} +{"id": "1004221", "video_name": "4e1aac71-cfc9-5695-bc3f-7ea4c5832152", "text": "\u4e00\u4e2a\u6234\u7740\u5934\u76d4\u7684\u519b\u4eba\u5411\u6444\u50cf\u673a\u5f00\u67aa\u3002"} +{"id": "2004707", "video_name": "ba284bcf-e05d-5917-8647-58bfd6b42424", "text": "\u4eba\u4eec\u5438\u98df\u6ce8\u5c04\u836f\u7269\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "7004716", "video_name": "63123e35-26dd-5876-911c-c23f0d300fee", "text": "\u68ee\u6797\u4e2d\u4e00\u68f5\u5f3a\u58ee\u800c\u9ad8\u5927\u7684\u6811\u3002"} +{"id": "2003159", "video_name": "ece4e3b8-bfb5-5fbb-a144-0a9d618e36d3", "text": "\u5230\u5904\u90fd\u6709\u592a\u9633\u80fd\u7535\u677f\u7684\u9ed1\u6697\u7a7a\u95f4\u57ce\u5e02"} +{"id": "4002512", "video_name": "c8b2101b-9e02-5fc0-b675-1d3b91dc4a59", "text": "\u4e00\u4e2a\u4f4e\u97f3\u626c\u58f0\u5668\u5728\u9707\u52a8\uff0c4k\u7684\u97f3\u8d28\u3002"} +{"id": "0004034", "video_name": "01d7dd45-dd63-5d17-9cb5-1d3f05bc4252", "text": "\u4e00\u4f4d\u4e0e\u4ed6\u4eba\u6109\u5feb\u4ea4\u6d41\u7684\u5e74\u8f7b\u5973\u5b50\u3002"} +{"id": "0004304", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "\u4e3b\u795e\u6e7f\u5a46\u5750\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e0a\uff0c4K\uff0c\u7f29\u653e\uff0c16:9\u3002"} +{"id": "1004105", "video_name": "4bf74c42-99fd-5b69-88b9-5439f16b82eb", "text": "\u9ec4\u8272\u6cd5\u62c9\u5229\u53d8\u6210\u5de7\u514b\u529b\u676f\u5b50\u86cb\u7cd5\u3002"} +{"id": "7002177", "video_name": "d6125bd7-3a2b-5b74-85ae-60930c2fa8d2", "text": "\u6709\u4eba\u5728\u4e00\u4e2a\u5927\u8df3\u86a4\u5e02\u573a\u8d70\u8def\u65f6\uff0c\u7a81\u7136\u4ed6\u4eec\u7684\u94a5\u5319\u6389\u4e86\u3002"} +{"id": "7003655", "video_name": "09768ec3-cf00-58d7-b12f-33a14f837ac8", "text": "\u65b0\u5a18\u5728\u9ed1\u6697\u7684\u8857\u9053\u4e0a\u54ed\u6ce3\u3002\u753b\u5e03\u5927\u5c0f9:16\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "0005726", "video_name": "20370c18-6db5-5c12-b3d2-2a7c7363e97c", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u795d\u613fEren\u751f\u65e5\u5feb\u4e50\uff0c\u6bd4\u4f8b\u4e3a16\uff1a9\u3002"} +{"id": "8002241", "video_name": "4d3ab89c-0e05-5b21-b1b2-5333759550f8", "text": "\u624b\u5728\u6eda\u8f74\u4e0a\u7ffb\u52a8\uff0c\u6446\u51fa\u6781\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c1967\u5e74\u4ed9\u7ae5\u5f69\u8272\u536b\u661f\u7535\u89c6\uff0c\u5bcc\u6709\u8bbd\u523a\u610f"} +{"id": "1003287", "video_name": "3c6ee9f1-8bb0-5df0-b8b6-8ec202393c34", "text": "\u5177\u6709Angular\u3001ReactJS\u3001Java\u3001Kotlin\u3001PostgreSQL\u3001MongoDB\u3001Docker\u548cGit\u6807\u5fd7\u7684LinkedIn\u5c01\u9762\u3002"} +{"id": "7004623", "video_name": "ce416f1a-b152-5795-b407-b2f56f10ed1e", "text": "\u9f99\u73e0Z\u4e2d\u7684\u609f\u7a7a\u63d0\u5347\u81f3\u8d85\u7ea7\u8d5b\u4e9a\u4eba10\u7ea7\uff0c\u4ed6\u7684\u5934\u53d1\u53d8\u4e3a\u767d\u8272\u3002"} +{"id": "1006787", "video_name": "7c614a5e-0e8f-599c-8d4a-849609716d95", "text": "\u7279\u5199\u955c\u5934\u5c55\u73b0\u5916\u661f\u4eba\u7684\u9762\u5b54\u3002\u62c9\u8fdc\u955c\u5934\uff0c\u53ef\u4ee5\u770b\u5230\u53e6\u5916\u4e00\u4e9b\u624b\u6301\u67aa\u652f\u7684\u5916\u661f\u4eba\u3002\u80cc\u666f\u4e2d\u5347\u8d77\u7684\u592a"} +{"id": "8003382", "video_name": "73b9911d-2076-513e-be1b-c2c40f358e78", "text": "\u7ecf\u5178\u8dd1\u8f66\u98de\u9a70\u4e8e\u94f6\u6cb3\u5b87\u5b99\u4e4b\u4e2d\u3002 \n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u65b9\u843d\u5c71\u3002"} +{"id": "5001104", "video_name": "ecc1902b-16de-58e7-ab4e-1168c7a045ce", "text": "\u7537\u4eba\u548c\u5973\u4eba\u5f7c\u6b64\u5927\u58f0\u4e89\u5435\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "3005212", "video_name": "53ac3be0-daf9-57d2-8c4c-cc81708545de", "text": "\u5c0f\u5973\u5b69\u4e0e\u5c0f\u7cbe\u7075\u548c\u98de\u9a6c\u4e00\u8d77\u5750\u4e0b\u6765\u4ea4\u6d41\u548c\u53cb\u597d\u76f8\u5904\u3002"} +{"id": "3003763", "video_name": "47345908-cb70-51dc-8240-0ef1f61a786a", "text": "\u5728\u50cf\u59d4\u5185\u745e\u62c9\u5361\u62c9\u5361\u65af\u8fd9\u6837\u7f8e\u4e3d\u7684\u57ce\u5e02\u91cc\uff0c\u4e00\u6bb58\u4f4d\u5143\u7684\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "4003214", "video_name": "4b251cf8-af22-5535-a604-9cb2014fc1d5", "text": "\u4e00\u4e2a\u4e8c\u7ef4\u8fd0\u52a8\u7684\u626e\u6f14\u738b\u8005\u89d2\u8272"} +{"id": "4002628", "video_name": "096fb3f7-e02c-5ad7-8d1e-9c2b2e5c7577", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d7\u548c\u4e00\u53ea\u9ed1\u8272\u7684\u72d7\u5728\u96ea\u5730\u4e0a\u4e0e\u4e00\u4e2a\u4eba\u4e00\u8d77\u8d70\uff0c\u96ea\u82b1\u98d8\u843d\u3002"} +{"id": "8003296", "video_name": "44289cec-8fc3-559f-bb0d-bef381a50d6e", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5370\u5ea6\u6751\u5e84\u5728\u65e5\u843d\u65f6\u5206\uff0c\u963f\u5c14\u8d21\u5750\u5728\u4e00\u68f5\u6995\u6811\u4e0b\uff0c\u6c90\u6d74\u5728\u6e29\u6696\u7684\u91d1\u8272"} +{"id": "8001932", "video_name": "b8329176-b992-5498-8179-dcb8223c2342", "text": "\u5206\u5f62\u88c5\u9970\u9ec4\u91d1\u84dd\u9ed1\u70df\u767d\u4e73\u8272\u3002"} +{"id": "1005174", "video_name": "5f398d1c-8d32-50a7-a848-c6c781762433", "text": "\u7728\u773c\u3001\u8d85\u7a7a\u95f4\u3001\u52a8\u753bLED\u706f\u3001\u6fc0\u5149\u675f\u3001\u7c92\u5b50\u6d41"} +{"id": "4004542", "video_name": "2df74b8c-b36c-5eff-9800-677ee6fa3c5b", "text": "\u8718\u86db\u4fa0\u548c\u5c0f\u4e11\u5728\u6d1e\u7a74\u91cc\u548c\u54c8\u8389\u00b7\u594e\u8335\u4ee5\u53ca\u6bd2\u85e4\u5973\u73a9\u300a\u5821\u5792\u4e4b\u591c\u300b\u3002"} +{"id": "3006134", "video_name": "281576ee-20a7-5155-956e-76f7d08096d9", "text": "\u624b\u6301\u53cc\u65a7\u7684\u5927\u7ea2\u8272\u6cf0\u8fea\u718a"} +{"id": "8002411", "video_name": "53a011bc-8184-5a45-b4e8-c5f461d51946", "text": "\u5c0f\u732b\u548c\u5c0f\u5b69\u90fd\u8f6c\u8fc7\u8eab\u6765\u770b\u3002"} +{"id": "8001896", "video_name": "2d75d679-e4a2-5edf-8b6e-63e97c7a0ec1", "text": "\u901a\u5f80\u57ce\u5821\u7684\u5c0f\u5df7\uff0c80\u5e74\u4ee3\uff0c\u7535\u5f71\u611f\u3002"} +{"id": "2003757", "video_name": "1565f9eb-64d9-56b9-bc0c-4ad34bf6aa50", "text": "\u535a\u6bd4\u00b7\u79d1\u5c14\u5e03\u5c14\u5728\u591c\u95f4\u8ffd\u9010\u4e00\u53ea\u5438\u8840\u9b3c\u3002"} +{"id": "8001706", "video_name": "035f32f8-e627-5813-90bc-68b3aede8c41", "text": "\u6cd5\u56fd\u58eb\u5175\u57281871\u5e74\u9632\u5fa1\u5e9f\u589f\u4e0a\u7684\u666e\u9c81\u58eb\u5927\u519b\uff0c4K\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "6004905", "video_name": "c4c09653-1f8a-5160-8591-de7be806a7cb", "text": "\u8d85\u5927\u8d28\u91cf\u9ed1\u6d1e\u6ce8\u89c6\u7740\u592a\u9633\u3002"} +{"id": "1003180", "video_name": "3a7a310a-c28c-56f3-9bab-508649d9bb16", "text": "\u9065\u8fdc\u672a\u6765\u7684\u4e16\u754c\u4e4b\u95f4\u7684\u6218\u4e89\u3002"} +{"id": "7004478", "video_name": "8c16c68d-056f-50b7-ae50-3d551c5bff47", "text": "\u996e\u6c34\u5bf9\u51cf\u91cd\u4e5f\u6709\u5fc3\u7406\u4e0a\u7684\u597d\u5904\u3002\u901a\u5e38\uff0c\u4eba\u4eec\u4f1a\u9519\u8bef\u5730\u5c06\u53e3\u6e34\u5f53\u4f5c\u9965\u997f\uff0c\u5e76\u5728\u5b9e\u9645\u4e0a\u7f3a\u6c34\u7684\u60c5\u51b5\u4e0b"} +{"id": "0005990", "video_name": "249af953-6bc8-5376-909e-a1d3e920b811", "text": "\u73b0\u5b9e\u4e3b\u4e49\u6ce2\u65af\u9ed1\u732b\u5728\u591c\u665a\u7684\u96f7\u66b4\u4e2d\u8df3\u8fdb\u4e00\u7247\u91d1\u5e01\u6d77\u6d0b\uff0c\u5e76\u5e26\u7740\u4e00\u7fa4\u4eba\u8ddf\u968f\u5b83\u3002"} +{"id": "4004593", "video_name": "7551bd3f-902e-58d0-9b4d-b40f59828929", "text": "\u955c\u5934\u4e0a\u722c\u6ee1\u4e86\u866b\u5b50\u3002"} +{"id": "7003134", "video_name": "3cbd646e-e1c3-5a84-8406-9f7866ce71a5", "text": "\u4e09\u7ef4\u7acb\u4f53\uff0c\u5206\u5c42\u5149\u6e90\uff0c16000\u50cf\u7d20\uff0c\u7167\u7247\u7ea7\u771f\u5b9e\u611f\uff0c\u4ee5\u4f0a\u5fb7\u534e\u00b7\u7a46\u4f0a\u5e03\u91cc\u5947\u7684\u98ce\u683c\u5448\u73b0\u5954"} +{"id": "1005206", "video_name": "5fd8529a-99fb-58ad-bf46-37125ad93efd", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u8033\u673a\u5468\u56f4\u663e\u793a\u51fa\u58f0\u6ce2\uff0c\u80cc\u666f\u662f\u65e7\u91d1\u5c71\u3002"} +{"id": "8001998", "video_name": "6863c2f1-2c19-5fb0-9832-8aa2a2fc2579", "text": "\u91d1\u8272\u5377\u53d1\uff0c\u9ed1\u76ae\u80a4\u7684\u5973\u4eba\u5728\u5a01\u5c3c\u65af\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "0003800", "video_name": "43b4fb44-0261-5f89-b02c-c52ca446c19b", "text": "\u5728\u96ea\u4e2d\u540c\u6b65\u8df3\u821e\u7684\u5927\u773c\u775b\u5e7c\u513f\uff0c\u5236\u4f5c\u96ea\u4eba\uff0c\u5723\u8bde\u8001\u4eba\u9001\u793c\u7269\u7ed9\u4ed6\u4eec\uff0c\u5750\u7740\u96ea"} +{"id": "3006898", "video_name": "9bd4f8b3-7275-570b-994e-016e30589874", "text": "\u7537\u4eba\u548c\u5973\u5b69\u72ec\u81ea\u6c89\u601d\uff0c\u624b\u4e2d\u62ff\u7740\u4e00\u5f20\u66f4\u5feb\u4e50\u65f6\u5149\u7684\u7167\u7247\u3002 \n\nSource sentence: The sunset painted the sky with shades of pink and orange"} +{"id": "7003145", "video_name": "b8678c96-4041-5c71-b294-acad9537beb7", "text": "\u670b\u53cb\u4eec\u73b0\u5728\u5728\u4e00\u8258\u8239\u4e0a\u65c5\u884c\u3002"} +{"id": "2005096", "video_name": "37a49eb7-6b4e-5676-934f-73d96ff428f5", "text": "\u4e00\u8f86\u8dd1\u8f66\u5728\u5c71\u8def\u4e0a\u98de\u9a70"} +{"id": "7003624", "video_name": "4e5b8f69-b056-5915-a48d-664efc78c880", "text": "\u6500\u767b\u767b\u5c71\u8005\u5728\u81ea\u7531\u5973\u795e\u50cf\u4e0a\u3002"} +{"id": "3003038", "video_name": "21cfd737-e362-5dbd-a2f5-ecee14ee5618", "text": "\u4e00\u4e2a\u6709\u725b\u4ed4\u548c\u5957\u7d22\u7684\u725b\u4ed4\u7ade\u6280\u8868\u6f14\u3002"} +{"id": "8001718", "video_name": "fd0b94bd-71a6-5fae-96cf-7dd9f8e0ecb1", "text": "\u795e\u5947\u7684\u73e0\u5b9d\u6e56\u95ea\u8000\u7740\u5343\u79cd\u989c\u8272\uff0c\u5728\u90c1\u90c1\u8471\u8471\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u68ee\u6797\u4e2d\uff0c\u5750"} +{"id": "1006455", "video_name": "76255c90-afea-5d3e-ac7d-e3934f5349c9", "text": "\u4e00\u4e2a\u7c7b\u4eba\u8d70\u5728\u68ee\u6797\u4e2d\u5e76\u56db\u5904\u5f20\u671b\u3002"} +{"id": "0003304", "video_name": "3b51c73b-b75c-5db0-ba6e-aee1fe3aa606", "text": "\u5728\u51b0\u5c9b\u4e0a\u7a7a\u9a7e\u9a76\u76f4\u5347\u673a\uff0c\u4fef\u77b0\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u4ece\u5934\u9876\u4e0a\u65b9\u98de\u8fc7\uff0c\u5c31\u50cf\u5728\u52a8\u6f2b\u91cc\u4e00\u6837\u3002"} +{"id": "0004032", "video_name": "01d339db-cf75-5116-82bf-fb355b1cda4b", "text": "\u5854\u7f57\u724c\u548c\u5854\u7f57\u5361\u8bfb\u53d6\u5728\u5929\u4e0a\u3002"} +{"id": "3003217", "video_name": "45f07309-22cb-510e-a19e-508ba500279d", "text": "\u9762\u5305\u4ece\u70e4\u9762\u5305\u673a\u4e2d\u5f39\u51fa\u3002"} +{"id": "3006534", "video_name": "c4cdc5da-3707-547c-9327-3af86d545384", "text": "\u5b64\u72ec\u7684\u6b66\u58eb\u5e26\u7740\u515c\u5e3d\u7f13\u6162\u5730\u671d\u60ac\u5d16\u8d70\u53bb\uff0c\u63ed\u793a\u4e86\u4e00\u5e45\u795e\u79d8\u7684\u666f\u8c61\u3002\n\n"} +{"id": "1004292", "video_name": "4f69f213-2dbd-53e1-a3bf-8f157a362432", "text": "\u4e00\u9897\u5f39\u8df3\u7403\uff0c\u4ee5120\u62cd/\u5206\u949f\u5f39\u8df3\uff0c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "2004860", "video_name": "3a579624-6e27-5e9e-a62a-e83fcdaf6245", "text": "\u6d77\u8389\u00b7\u5a01\u5ec9\u59c6\u65af\u5728\u5c71\u4e0a\u5531\u6b4c\uff0c\u56db\u80a2\u98d8\u8361\u3002"} +{"id": "1005871", "video_name": "6c0cb534-be7b-5bc9-9923-c31bf08a17f5", "text": "\u767d\u8272\u6761\u7eb9\u5782\u76f4\u6392\u5217\uff0c\u5b83\u4eec\u4e4b\u95f4\u6709\u5927\u7684\u95f4\u9699\uff0c\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\uff0c\u5faa\u73af\u91cd\u590d\u3002"} +{"id": "8001492", "video_name": "9611d9c8-311e-55bf-b823-ee195026bffe", "text": "\u5728\u9ed1\u8272\u7a7a\u95f4\u91cc\uff0c\u4e00\u4e2a\u4e09\u7ef4\u5f69\u8272\u7ebf\u6027\u6a21\u578b\u5728\u7a7a\u4e2d\u5f8b\u52a8\u5730\u6f02\u6d6e\u5e76\u53d8\u5316\u3002"} +{"id": "4004616", "video_name": "5aaa7cd9-bac7-57db-88b2-9a7f95f7ef86", "text": "\u51ac\u5b63\u68ee\u6797\u96ea\u666f\u65e5\u843d\u9759\u8c27\u5723\u8bde\u8282\u653e\u5927"} +{"id": "6002947", "video_name": "6afcfafc-0718-598d-b4eb-faf5bc98bf43", "text": "\u5eb7\u5948\u5229\u65af\u00b7\u5fb7\u00b7\u9ed1\u59c6\u7684\u624b\u7ed8\u52a8\u753b\u5c55\u793a\u4e86\u4e00\u53ea\u624b\u4ece\u684c\u5b50\u4e0a\u6458\u82f9\u679c\u3002"} +{"id": "5001251", "video_name": "8f28ff74-33b5-5b88-9a44-53453ea52511", "text": "1950\u5e74\u4ee3\u7684\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u62cd\u6444\u4e86\u4e00\u53ea\u72ee\u5b50\u548c\u4e00\u4e2a\u7a7f\u7740\u5f69\u8272\u82ad\u857e\u88d9\u5fae\u7b11\u7740\u5bf9\u7740\u76f8\u673a"} +{"id": "6004408", "video_name": "d90eb22a-f566-5278-9d98-8508c440b18e", "text": "\u94c3\u6728GSXR\u5728\u7a7a\u65f7\u7684\u8857\u9053\u4e0a\u505a\u98de\u8f6e\u3002"} +{"id": "6004956", "video_name": "5afb6d6d-5566-5534-891d-bf9d1c979f09", "text": "\u8fd9\u4e2a\u60f3\u6cd5\u5728\u63a5\u4e0b\u6765\u7684\u51e0\u4e2a\u4e16\u7eaa\u91cc\u88ab\u9b54\u672f\u5e08\u548c\u79d8\u5bc6\u56e2\u4f53\u63a5\u53d7\uff0c\u5e76\u52a0\u5165\u4e86\u5404\u79cd\u5143\u7d20\uff0c\u76f4\u523020"} +{"id": "2004599", "video_name": "106e596e-ef79-5e7f-bb46-b42cae82fbfb", "text": "\u7f55\u89c1\u7684\u7eaa\u5f55\u7247\u7d20\u6750\uff0c1930\u5e74\u7684\u8db3\u7403\u4e16\u754c\u676f\u3002"} +{"id": "2007724", "video_name": "56f5dab9-2ab7-58b7-91ab-a4f10a0865b0", "text": "\u4e00\u573a\u60ca\u8273\u7684\u70df\u706b\u8868\u6f14\u5728\u591c\u7a7a\u4e2d\u7ed8\u51fa\u4e86\u5404\u79cd\u989c\u8272\u548c\u56fe\u6848\u7684\u7206\u70b8\u3002\u95ea\u4eae\u7684\u91d1\u8272\u788e\u7247\u5982"} +{"id": "2003577", "video_name": "d99a3bb8-0996-58a0-a13c-60e1f76fa5d4", "text": "\u5c3c\u5362\u59c6\u5c71\u8c37\u7684\u65e0\u4eba\u673a\u6444\u50cf\u5934\u955c\u5934\u3002"} +{"id": "3003903", "video_name": "436be1dd-95f0-5513-8e3f-08ca513d5775", "text": "\u7279\u79cd\u90e8\u961f\u5c0f\u961f\u80cc\u8d1f\u7740MTF\uff0c\u80a9\u8d1f\u7740SCP\u3002"} +{"id": "4004913", "video_name": "553b5b0d-9142-5c65-a873-9a3c3db8004a", "text": "\u5927\u5c4f\u5e55\u4e0a\u6709\u6570\u767e\u4e2a VJ \u5faa\u73af\u7f29\u7565\u56fe\u3002\u4fe1\u606f\uff1aerandistic\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "5001611", "video_name": "5a9f7e98-7bf0-5567-8622-8df9be801f26", "text": "\u67e5\u7406\u5728\u5438\u6bd2\u540e\u5728\u96ea\u5730\u91cc\u7761\u7740\u4e86\u3002"} +{"id": "0005086", "video_name": "147b7579-d610-56f8-b590-28d20a16b616", "text": "\u5728\u4e00\u5bb6\u9648\u65e7\u7684\u53e4\u8463\u5e97\u91cc\uff0c\u4e00\u4e2a\u7070\u5c18\u6ee1\u5e03\u7684\u97f3\u4e50\u76d2\u5df2\u7ecf\u88ab\u957f\u5e74\u653e\u7f6e\u672a\u88ab\u89e6\u78b0\u3002"} +{"id": "4002520", "video_name": "67e99199-0340-580a-9119-d972ccb26280", "text": "\u8fd1\u8ddd\u79bb\u62cd\u6444\u5531\u5361\u62c9OK\u7684\u4eba\u5634\u5df4\uff0c\u8fd9\u4e2a\u4eba\u6d82\u7740\u7eff\u8272\u53e3\u7ea2\u548c\u91d1\u8272\u7259\u9f7f\uff0c\u5361\u62c9OK\u5728"} +{"id": "1006649", "video_name": "79db7105-8aa0-5e35-bb91-4fcd9cdf5a43", "text": "\u521b\u4f5c\u4e00\u6bb5\u5c55\u793a\u6447\u6eda\u660e\u661f\u4e9a\u4ec0\u6001\u5ea6\u7684\u89c6\u9891\u3002"} +{"id": "2007980", "video_name": "024d1a21-8ddf-5e24-a218-9195b8d59a89", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u9a7e\u9a76\u6c7d\u8f66\uff0c\u8fd0\u52a83\uff0c\u8096\u50cf\u683c\u5f0f\uff0c\u4e2d\u8fd1\u666f\u3002"} +{"id": "3003706", "video_name": "d180780b-5e9b-5b04-a479-65a343869cec", "text": "ULTA 8K\u3002\u903c\u771f\u30023D\u8d28\u91cf\u3002\u9e1f\u513f\u98de\u7fd4\u3002\u4eba\u4eec\u884c\u8d70\u3002\u5580\u9ea6\u9686\u5df4\u8482\u6751\u4e00\u4e2a"} +{"id": "0004698", "video_name": "0d82e10a-d137-5fb7-9f9a-04c212942877", "text": "\u6c7d\u8f66\u505c\u5728\u4e00\u4e2a\u6050\u6016\u3001\u903c\u771f\u3001\u8be6\u7ec6\u7684\u68ee\u6797\u524d\u3002"} +{"id": "1005442", "video_name": "64038f30-b2c7-5588-998e-17b676027e61", "text": "\u6811\u53f6\u5728\u7a81\u7136\u7684\u4e00\u9635\u98ce\u4e2d\u65cb\u8f6c\u3002"} +{"id": "8003336", "video_name": "a82a7b19-452d-5136-9274-d51753cec370", "text": "\u5236\u4f5c\u4e00\u6bb5\u5386\u53f2\u6027\u7684\u80a1\u7968\u5f71\u7247\uff0c\u63cf\u8ff01945\u5e74\u7684\u5fb7\u56fd\u3002\u5c55\u793a\u6218\u4e89\u540e\u679c\u3001\u57ce\u5e02\u548c\u4e0d\u65ad\u53d8\u5316\u7684\u666f\u89c2\u3002\u5229\u7528\u89c6\u89c9"} +{"id": "4004049", "video_name": "f1bf4fe4-75ff-5eed-80b8-cceac827c4f8", "text": "\u9510\u5229\u800c\u7b80\u5355\u7684\u5154\u5b50\u7b2c\u4e00\u6b21\u7741\u5f00\u773c\u775b\u3002"} +{"id": "7003598", "video_name": "291bf012-3ef3-5abb-acc7-7cc41fde8245", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6cf0\u8fea\u718a\u5728\u4e0e\u8001\u864e\u640f\u6597\u3002"} +{"id": "4003595", "video_name": "e925e6d1-011d-5620-826f-726edcd79ccd", "text": "\u827e\u987f\u00b7\u585e\u7eb3\u5e26\u7740\u9c7c\u7c7bDNA\uff0c\u50cf\u91d1\u67aa\u9c7c\u4e00\u6837\u5229\u7528\u6bd4\u8d5b\u672c\u80fd\u5728\u6c34\u4e2d\u5feb\u901f\u6e38\u52a8\u3002"} +{"id": "2003540", "video_name": "fdf69ffa-5185-56e8-898b-8d2c3be55c6b", "text": "\u4e00\u4e2a35\u5c81\u3001\u7a7f\u7740\u84dd\u8272\u886c\u886b\u3001\u9ed1\u8272\u88e4\u5b50\u3001\u68d5\u8272\u5934\u53d1\u3001\u5168\u8eab\u4f38\u5c55\u3001\u8eab\u4f53\u5bf9\u79f0\u7684\u4eba\u3002"} +{"id": "3004551", "video_name": "5f798e16-8b9c-5460-9fb2-40c0f76f05b7", "text": "\u4e2d\u4e16\u7eaa\u6218\u4e89\u7684\u5168\u666f\u753b\u9762\u3002\n\nSource sentence: The internet has revolutionized the way we communicate and access information. \n\n\u4e92\u8054\u7f51\u5df2\u7ecf\u5f7b\u5e95\u6539\u53d8\u4e86\u6211\u4eec\u6c9f\u901a\u548c"} +{"id": "1005229", "video_name": "6042c5d7-a0cc-579e-bd4a-b92cce0e2c10", "text": "\u91d1\u53d1\u5973\u827a\u672f\u5bb6\u5728\u821e\u53f0\u4e0a\u4e0e\u89c2\u4f17\u4e92\u52a8\uff0c\u540c\u65f6\u5531\u7740\u9ea6\u514b\u98ce\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "7004489", "video_name": "77ec52e8-1e45-545f-8de9-f2817e712c9b", "text": "\u4e00\u7ec4\u795e\u79d8\u7684\u6697\u9ed1\u5e7b\u60f3\u7167\u7247\uff0c\u4ee5Ilona Veresk\u98ce\u683c\u4e3a\u4e3b\u9898\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u6027\u8d5b\u535a\u683c\u5728\u672a\u6765\u672b"} +{"id": "7004836", "video_name": "6e3d8162-321c-58f0-ac14-b340598f494c", "text": "\u5728\u57ce\u5e02\u6218\u6597\u73af\u5883\u4e2d\u7684\u4e00\u4e2a\u6c99\u6f20\u98ce\u683c\u7684\u7279\u79cd\u90e8\u961f\u58eb\u5175\u3002"} +{"id": "1003425", "video_name": "3f46b9a5-c26a-56a6-abb5-81ba899e03a6", "text": "\u7537\u5b69\u4f7f\u7528\u7535\u5b50\u5c0f\u5de5\u5177\u5361\u901a\u3002"} +{"id": "4004119", "video_name": "b36933d8-4024-597b-80b2-ed8bd3995f37", "text": "\u672a\u6765\u4e16\u754c\uff0c\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u79d1\u6280\u4e16\u754c\u4e2d\u7684\u5927\u773c\u775b\uff0c\u4eba\u5de5\u667a\u80fd\uff0c\u6124\u6012\u53d1\u5149\u3002"} +{"id": "4004841", "video_name": "135cc283-feff-5012-a5e2-64e89d79da69", "text": "\u628a\u8fd9\u4e2a\u89d2\u8272\u505a\u6210\u52a8\u753b\u5e76\u8ba9\u5b83\u5bf9\u7740\u6444\u50cf\u5934\u8bf4\u8bdd\u3002"} +{"id": "1003778", "video_name": "45ad3c4f-43e6-57ad-8659-6cc4fbb3a378", "text": "\u4e09\u573a\u6218\u4e89\u7535\u5f71\u7684\u8840\u8165\u7206\u70b8\u52a8\u4f5c\u3002"} +{"id": "5001774", "video_name": "63f3eee9-e1f1-54aa-a449-69c33c307ce9", "text": "\u4e00\u4e2a\u5973\u5b69\u8d70\u8fc7\u79cb\u5929\u7684\u516c\u56ed\u5e76\u6536\u96c6\u6811\u53f6\u3002"} +{"id": "1006867", "video_name": "7d5e261f-5594-510e-9d31-bf9f54f1d9ad", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u7535\u5f71\u9884\u544a\u7247\uff0c8K\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "6004133", "video_name": "3815215a-60db-5172-951e-72b1df095992", "text": "\u4e00\u53ea\u732b\u4ece\u5c4b\u9876\u8df3\u5230\u5c4b\u9876\uff0c\u6bcf\u4e2a\u5c4b\u9876\u90fd\u66f4\u9ad8\u3002 \n\nSource sentence: The sun is setting behind the mountains. \n\n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71"} +{"id": "6003806", "video_name": "ddfc9ff8-fe83-5ff0-a007-8ef0c5a1064b", "text": "\u6c99\u6f0f\u5305\u88f9\u5728\u690d\u7269\u548c\u82b1\u6735\u4e2d\u3002"} +{"id": "6002889", "video_name": "d9c05eb7-af58-5be8-9267-e4609496e85e", "text": "for the camera.\nTranslation: Lady GaGa\u7a7f\u7740Alexander Mcqueen\u4e3a\u6444\u5f71\u673a\u6446\u59ff\u52bf\u3002"} +{"id": "2007000", "video_name": "0506c809-b89f-502c-913d-0571ae357941", "text": "\u9ec4\u8272\u4fdd\u65f6\u6377\u7a7f\u8fc7\u66fc\u54c8\u987f\u5927\u6865\uff0c\u4fef\u77b0\u81ea\u7531\u5973\u795e\u50cf\u3002"} +{"id": "0003072", "video_name": "3678f7af-dd62-5773-ab07-8a7401d7bc7b", "text": "\u5982\u4f55\u5728\u5bb6\u5236\u4f5c\u5de7\u514b\u529b\u3002"} +{"id": "8002983", "video_name": "55a84a5b-52ff-51d1-a352-455c8be930de", "text": "\u4e00\u53ea\u4e4c\u9f9f\u5728\u82b1\u56ed\u91cc\u6563\u6b65\u3002"} +{"id": "1004161", "video_name": "4d0ec323-c891-538f-93f8-be8705ca93ea", "text": "3D\u8bf4\u8bdd\u7537\u5b69\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u660e\u4eae\u7684\u5149\u7ebf\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "1006080", "video_name": "6f7d996d-68c8-5a0f-a9da-872685d3b85a", "text": "\u5934\u76d4\u5185\u58f3\u4e0a\u6709\u5934\u9aa8\uff0c\u5468\u56f4\u662f\u65cb\u8f6c\u7684\u661f\u7cfb\u80cc\u666f\u3002"} +{"id": "7003365", "video_name": "6d2903ad-acf0-5810-a408-ba440a7e699e", "text": "15\u79d2\u957f\u7684\u89c6\u9891\uff0c\u7528\u4e8e\u5e7f\u544a\u4e00\u9996\u6d41\u884c\u6447\u6eda\u98ce\u683c\u7684\u97f3\u4e50\u4f5c\u54c1\u3002"} +{"id": "0004622", "video_name": "0c18d51e-2e34-5174-8bd8-a29f68ec53fa", "text": "5\u514b\u9b54\u6cd5\u8611\u83c7\u4e4b\u65c5\u7684\u5e7b\u89ba\u8996\u89ba\u6548\u679c\uff0c\u7576\u4e00\u500bPringles\u7f50\u5b50\u7684\u5e7b\u89ba\u5411\u4f60\u8d70\u4f86\uff0c\u4f60"} +{"id": "7004912", "video_name": "2bb89b9e-efa0-5d7b-a7c0-71d164aaefae", "text": "\u94c1\u4eba\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u8df3\u821e\u3002"} +{"id": "2004027", "video_name": "b249f9bd-2690-5c14-a687-44daee23fd69", "text": "\u521b\u9020\u5feb\u901f\u53d8\u5316\u7684\u5b63\u8282\u8fdb\u5c55\u3001\u5feb\u901f\u53d8\u8eab\u6216\u5feb\u901f\u827a\u672f\u521b\u4f5c\u3002"} +{"id": "4004264", "video_name": "1fd0e500-385e-5c64-8067-87d56bcce78a", "text": "\u4e00\u8258\u649e\u4e0a\u51b0\u5c71\u5e76\u6c89\u6ca1\u7684\u8239\u3002(Font: \u5b8b\u4f53)"} +{"id": "8003562", "video_name": "c64f2a96-c87e-5d04-9b78-1c3e8c6adf39", "text": "\u6444\u50cf\u673a\u524d\u8fdb\uff0c\u98ce\u5439\u8fc7\u68ee\u6797\u3002"} +{"id": "6003912", "video_name": "da683bae-cc49-5f38-a69f-6e25a5faad54", "text": "\u68d2\u7403\u9009\u624b\u6325\u52a8\u7403\u68d2\u5e76\u51fb\u4e2d\u51fa\u5c40\u3002"} +{"id": "7003106", "video_name": "dc5f673c-1a6f-5ad1-96d7-242c8287a590", "text": "\u4e00\u4e2a\u8eab\u7a7f\u4e2d\u4e16\u7eaa\u897f\u6b27\u98ce\u683c\u670d\u88c5\u7684\u4eba\u7fa4\u6b22\u547c\u7740\u8fce\u63a5\u7740\u8fd9\u4e2a\u83e0\u841d\uff0c\u800c\u4e00\u9897\u5de8\u5927\u7684\u83e0"} +{"id": "0003042", "video_name": "35fd58f9-e0e1-55fb-bb3b-6ad92b4eed90", "text": "\u68ee\u6797\u4e2d\u7684\u8bf4\u8bdd\u6811\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "7004098", "video_name": "e696b23f-c9a4-5047-8780-29c6deea3714", "text": "\u9633\u5149\u900f\u8fc7\u6811\u53f6\u8fc7\u6ee4\uff0c\u6295\u5c04\u51fa\u6e29\u67d4\u7684\u5149\u8292\u3002\u98ce\u4e0e\u6811\u53f6\u5171\u821e\uff0c\u4e00\u7fa4\u5c0f\u9e1f\u6b22\u5feb"} +{"id": "3004817", "video_name": "80eeaa3c-8fc8-50e5-8f2d-82054e8246bb", "text": "\u5728\u6cb3\u5cb8\u4e0a\u8df3\u821e\u7684\u5370\u5ea6\u5c11\u5973\uff0c\u7a7f\u7740\u7ea2\u8272\u7684\u88d9\u5b50\uff0c\u5728\u6ee1\u6708\u4e4b\u591c\u3002"} +{"id": "3003603", "video_name": "dd2a4c6b-32c3-55e4-a844-f0b982c8ab2f", "text": "\u4e09\u5c81\u7684\u5973\u5b69\uff0c\u68d5\u8272\u7684\u773c\u775b\uff0c\u68d5\u8272\u7684\u5934\u53d1\u3002"} +{"id": "2007623", "video_name": "1ae590e8-50c4-5565-ac2a-b1d32dbac900", "text": "\u6d77\u5cb8\u7ea2\u6749\u6797\u3002\u4fe1\u606f\uff1a\u670d\u4ece\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4003855", "video_name": "f1d90c04-88fa-53e5-8805-bc52aa88b79b", "text": "\u9a6c\u6d1b\u65af\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u68ee\u6797\u91cc\u73a9\u3002"} +{"id": "4002602", "video_name": "5a7c3384-73fe-5a2c-bb44-8c64cad742ec", "text": "\u6c99\u7279\u7537\u5b50\u9a91\u9a6c\u6301\u5251\u3002"} +{"id": "3003584", "video_name": "d49762c5-eaea-5690-a338-0ca48b45a04c", "text": "\u7edd\u5730\u5927\u5e08\u548c\u300aMortal Kombat\u300b\u7684\u6208\u6d1b\u51c6\u5907\u8fdb\u884c\u51b3\u6597\u3002"} +{"id": "7003185", "video_name": "cd40a59e-4a51-5284-83eb-0b08ad4b7308", "text": "\u4e00\u53ea\u9e1f\u7a81\u7136\u8ff8\u53d1\u51fa\u5f69\u8679\u822c\u7684\u706b\u7130\u3002"} +{"id": "3005122", "video_name": "79bd8eba-980a-5eed-bf1c-4d6b1d46671a", "text": "\u8fdc\u5904\u6709\u5c71\u5cf0\u548c\u7eff\u8272\u7684\u5c71\u4e18\uff0c\u4e91\u6735\u5728\u98ce\u4e2d\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "1006920", "video_name": "7e7fc7ad-0aa6-5163-8e2d-dad8b69e5317", "text": "\u5149\u660e\u53d1\u51fa\u5929\u5802\u53f7\u89d2\uff0c\u8b66\u544a\u7740\u4e16\u754c\uff0c\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "2006153", "video_name": "a432ba94-a2af-5a2e-82ee-5706abeefd1a", "text": "\u4e0b\u96e8\u65f6\u7740\u706b\u7684\u623f\u5b50"} +{"id": "0005443", "video_name": "1ad876dc-a99c-5310-ac88-3552b03ece78", "text": "\u901a\u8fc7\u5c55\u793a\u4e00\u4e2a\u7f51\u7ad9\u4e0a\u5e94\u7528\u7684\u5404\u79cd\u670d\u52a1\uff08SEO\uff0c\u9500\u552e\u6f0f\u6597\uff0c\u5e7f\u544a\uff0c\u4f18\u5316\uff09\uff0c\u4ee5\u5c55\u793a\u6240\u63d0\u4f9b\u7684\u670d\u52a1\u8303\u56f4\u3002"} +{"id": "3004008", "video_name": "865a9be4-4e1b-54cf-892e-bc56982f1425", "text": "\u4eba\u4eec\u5728\u57ce\u5e02\u4e2d\u9003\u79bb\u6d77\u6d6a\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0003930", "video_name": "000c9183-f83c-50b7-9bea-7188d4e95caf", "text": "\u6076\u9b54\u73a9 ouija \u677f\uff0c\u7535\u5f71\u6050\u6016\u9884\u544a\u7247\u98ce\u683c\u3002"} +{"id": "2007543", "video_name": "3ce5ff59-c314-542a-9c30-d172d41ca638", "text": "\u5c55\u793a\u4eba\u7c7b\u6280\u672f\u7684\u589e\u957f\u5386\u7a0b\uff0c\u4ece\u623f\u5c4b\u5230\u5efa\u7b51\u3002"} +{"id": "0005334", "video_name": "18fe0b3c-54f2-53a9-8057-95c60ba405f3", "text": "\u4e00\u500b\u7537\u4eba\u5728\u925b\u7b46\u4e0a\u884c\u8d70\u3002"} +{"id": "3006809", "video_name": "c0f57500-1f8f-5a60-9fb6-32713e316611", "text": "\u4e00\u4e2a\u5973\u5b69\u88ab\u8bb8\u591a\u732b\u56f4\u7ed5\u7740\uff0c\u4e0e\u5b83\u4eec\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "1004108", "video_name": "4c129680-832a-5426-b022-2a46d4089b34", "text": "\u65b0\u6587\u660e\u7684\u521b\u9020\uff0c\u5c06\u5728\u592a\u7a7a\u4e2d\u81ea\u7531\u5730\u6446\u8131\u5730\u7403\u7684\u95ee\u9898\uff0c\u5448\u73b0\u51fa\u7535\u5f71\u822c\u76848k\u753b\u9762\u3002"} +{"id": "0003194", "video_name": "390f3662-3f81-5819-abfe-4c7b3d87396d", "text": "\u4f26\u6566\u6865\u3002\u4fe1\u606f\uff1ashymal hojai\u3002 (Font: MODERN)"} +{"id": "7004981", "video_name": "533aa793-e9b9-527a-9d78-cc7518267bc2", "text": "\u4e24\u4e2a\u5b69\u5b50\u5728\u4e1b\u6797\u4e2d\u8d70\u52a8\uff0c\u662f\u52a8\u753b\u4e09\u7ef4\u7684\u3002"} +{"id": "0003448", "video_name": "3dbe5adc-919e-5aaa-888e-e83c92b440c1", "text": "\u9a6c\u91cc\u5965\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\u73a9\u4e50\u9ad8\u79ef\u6728\u3002"} +{"id": "2006526", "video_name": "284a858a-1c56-599e-8a38-1e6dccbdc59d", "text": "\u5e2e\u6211\u4e00\u4e0b\uff0c\u5c31\u53ef\u4ee5\u514d\u8d39\u5f97\u5230\u6700\u65b0\u7684iPhone 16 Max\u77ed\u5b9e\u9a8c\u3002"} +{"id": "3006947", "video_name": "a62b669f-6784-5e69-8bde-4844d7f3e7c0", "text": "\u5728\u68ee\u6797\u7684\u4e2d\u5fc3\uff0c\u6709\u4e00\u68f5\u53e4\u8001\u7684\u9ad8\u8038\u7684\u6811\u3002"} +{"id": "1006073", "video_name": "6f6f4531-0ebc-59d7-9f85-c73cd3029cbd", "text": "\u665a\u4e0a\u5783\u573e\u6876\u4e0a\u7684\u4e00\u53ea\u732b\u3002"} +{"id": "0004990", "video_name": "12d18fea-7a4e-5fd5-a02b-c9e3a2a3a6e4", "text": "\u5bc2\u9759\u5cad2\uff1a\u4ece\u602a\u7269\u7684\u89d2\u5ea6\u770b\u5feb\u901f\u79fb\u52a8\u7684\u7537\u4eba"} +{"id": "6002869", "video_name": "dcefa0d2-a413-597b-8f92-165ab4c1dd11", "text": "\u4e00\u8258\u53bb\u6355\u9c7c\u7684\u8239\u3002"} +{"id": "0005071", "video_name": "144e6006-5e33-5d88-be07-3228fbeb24bb", "text": "\u4ee5\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u955c\u5934\u5f00\u573a\uff0c\u5c55\u73b0\u51fa\u4e00\u4e2a\u7cbe\u81f4\u7684\u9999\u6c34\u74f6\u80cc\u666f\u4e0b\uff0c\u6de1\u6de1\u5730\u51fa\u73b0\u4e86\u201c\u9999\u6c1b\u5e7f\u573a\u201d\u54c1"} +{"id": "2007285", "video_name": "8a615ee3-dee7-5e4b-98f2-2ed6d99ca27a", "text": "\u574e\u5927\u54c8\u5de8\u4eba\u6839\u636ecryptidz.fandom.com\u4e0a\u7684\u7167\u7247\uff0c\u79bb\u5f00\u4e86\u4ed6\u7684\u6d1e\u7a74\u3002"} +{"id": "2004183", "video_name": "634fedf6-48b4-5d20-95f8-61149ce77c5e", "text": "\u86ee\u65cf\u5954\u8dd1\u7a7f\u8fc7\u96ea\u5c71\uff0c\u4ece\u8fdc\u5230\u8fd1\uff0c\u9ec4\u660f\u65f6\u5206\uff0c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "3003728", "video_name": "56851096-35be-51ba-97e6-ee289d97421e", "text": "\u7a97\u6237\u548c\u5927\u5b9d\u77f3\u5185\u90e8\u3002\u6709\u9ed1\u6697\u7684\u4e91\u548c\u7f8e\u4e3d\u7684\u5973\u4eba\u3002\u52a0\u4e00\u53ea\u5927\u949f\u3002"} +{"id": "4003428", "video_name": "a0b40ed7-4193-5cc2-beff-40362c177d60", "text": "\u4e00\u4e2a\u96ea\u8389\u6751\u5e84\uff0c\u6709\u5f88\u591a\u7cbe\u7075\u5728\u96ea\u4e2d\u73a9\u4e50\u3002"} +{"id": "7002365", "video_name": "e0863e8d-3700-560c-99fe-a0ed8500fc1d", "text": "\u8010\u514b\u7684\u6807\u5fd7\u548c\u7f51\u7ad9URL\u663e\u793a\u5728\u5c4f\u5e55\u4e0a\u3002)"} +{"id": "7002318", "video_name": "09c38232-c595-5644-99ce-908433c86cbd", "text": "\u5feb\u4e50\u7684\u4eba\u5f62\u5728\u6237\u5916\u4f11\u606f\u5ba4\u559d\u5496\u5561\u3002"} +{"id": "3005955", "video_name": "27f25040-0733-571e-9cde-4472afed9cc5", "text": "\u4fdd\u65f6\u6377\u5728\u66b4\u98ce\u96e8\u4e2d\u884c\u9a76\uff0c\u4ecd\u4fdd\u6301\u826f\u597d\u54c1\u8d28\u3002"} +{"id": "0003742", "video_name": "42a72bed-e09a-5128-bbe4-96a4265e77cc", "text": "\u4e00\u4e2a\u5728\u96e8\u4e2d\u7684\u9b54\u5e7b\u4e2d\u4e16\u7eaa\u6e38\u620f\u573a\u666f\u3002"} +{"id": "6004177", "video_name": "06d8a65c-42a4-5892-b966-2d270efd1b49", "text": "1980\u5e74\u4ee3\u72af\u7f6a\u60ca\u609a\u7247\u7684\u573a\u666f\uff0c\u7279\u8b66\u5c0f\u7ec4\u6301\u67aa\u51b2\u8fdb\u94f6\u884c\u3002"} +{"id": "3006318", "video_name": "f54648b9-5d2b-5ff7-8459-d8051a186420", "text": "\u5b66\u6821\u80cc\u666f\u4fe1\u606f\uff1a\u97f3\u50cf\u8d44\u6599\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0004189", "video_name": "04c71990-9959-5fc8-bcea-6bca55926f8f", "text": "\u829d\u52a0\u54e5\u9ed1\u5e2e\u65f6\u671f\u7684\u8857\u9053\u4e0a\uff0c\u4eba\u4eec\u548c\u8f66\u8f86\u5728\u8857\u9053\u4e0a\u7a7f\u68ad\uff0c\u57ce\u5e02\u7684\u5168\u666f\u98ce\u666f\u3002"} +{"id": "6004227", "video_name": "4fba464e-8f33-5427-bd54-878802bff175", "text": "\u6b7b\u795e\u5728\u5e7f\u573a\u4e0a\u6e38\u884c\uff0c\u7ea2\u65d7\u98d8\u626c\uff0c\u8eab\u7a7f\u767d\u8863\u7684\u52a8\u7269\u6574\u9f50\u5730\u8d70\u8fc7\uff0c\u5305\u62ec\u9a74\u5b50\u3001\u5c0f\u732a"} +{"id": "7002865", "video_name": "ff753c7f-a23d-5788-8286-0ec2fead2711", "text": "\u4eba\u7c7b\u8fdb\u5316\u4e2d\u5173\u952e\u65f6\u523b\u7684\u52a8\u6001\u65f6\u95f4\u7ebf\uff0c\u7a81\u51fa\u5c55\u793a\u4e86\u5bf9\u6743\u5a01\u7684\u4fe1\u4efb\u53d1\u5c55\u3002\n\u63cf\u8ff0\uff1a\u9610\u660e\u4e86\u6211\u4eec\u7684\u5927\u8111\u5982\u4f55\u5728\u5386"} +{"id": "2007413", "video_name": "2ddc730b-c020-5aa3-a01c-c585b7de542e", "text": "\u5e7f\u89d2\u955c\u5934\u4e0b\uff0c\u672a\u6765\u57ce\u5e02\u7e41\u534e\u7684\u666f\u8c61\u5c3d\u6536\u773c\u5e95\uff0c\u9ad8\u8038\u5165\u4e91\u7684\u6469\u5929\u5927\u697c\uff0c\u5148\u8fdb\u7684\u4ea4\u901a\u7cfb\u7edf\uff0c\u4eba\u7c7b\u548c"} +{"id": "3005453", "video_name": "7df011b1-e414-524c-bc2a-634d84700ba3", "text": "\u7f8e\u4e3d\u95ea\u4eae\u7684\u4ed9\u5973\u5728\u5c9b\u4e0a\u91c7\u96c6\u73ab\u7470\u3002"} +{"id": "2005182", "video_name": "cd257815-ba08-51db-8cdc-3b9a1cc871ab", "text": "\u4e07\u5723\u8282\u5728\u5893\u5730\u4e3e\u529e\u7684\u6d3e\u5bf9\u3002"} +{"id": "8001879", "video_name": "4173b93e-c33b-590c-8d98-e799425c26c4", "text": "\u4e00\u4e2a\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\u7684\u623f\u5b50\u6e32\u67d3\uff0c\u4f4d\u4e8e\u68ee\u6797\u73af\u5883\u4e2d\uff0c\u5411\u53f3\u79fb\u52a8\u753b\u9762\uff0c\u6811\u53f6\u6447\u66f3\u3002"} +{"id": "2006382", "video_name": "3f30b831-ce5f-5075-8094-816cc37a3f7b", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u53f0\u5f0f\u9910\u5385\u5403\u8c46\u8150\u3002"} +{"id": "3004398", "video_name": "a2609e77-48ac-500a-9cd7-838777c2b765", "text": "\u5728\u6c99\u6f20\u9ad8\u901f\u516c\u8def\u4e0a\uff0c\u8d5b\u535a\u5361\u8f66\u98de\u9a70\u800c\u8fc7\uff0c\u957f\u9b03\u963f\u62c9\u4f2f\u9a6c\u7d27\u968f\u5176\u540e\u3002"} +{"id": "0006889", "video_name": "34cdcf1a-3f20-57c1-8fab-d2688322a8cc", "text": "\u4e00\u4e2a\u7ad9\u5728\u884c\u661f\u4e0a\u7684\u7537\u4eba\uff0c\u5f71\u89c6\u7ea7\u522b\u76844K\u3002"} +{"id": "6003818", "video_name": "d68bd958-f748-5c8f-9868-100291fd775a", "text": "\u53f2\u8482\u592b\u00b7\u4e54\u5e03\u65af\u4e0e\u9a6c\u4e91\u4ea4\u8c08\u3002"} +{"id": "8001061", "video_name": "ba10be20-dfe4-5ec2-9eeb-744c9a9cb4d1", "text": "\u4e00\u540d\u7537\u5b50\u5750\u5728\u6e56\u4e0a\u7684\u5c0f\u8239\u4e0a\uff0c\u7531Taravat Jalali Farahani\u7ed8\u5236\u7684\u8be6\u7ec6\u7684\u54d1\u5149\u753b\u4f5c\u54c1\uff0c\u8be5\u4f5c\u54c1\u83b7\u5f97\u4e86Pixabay"} +{"id": "4003594", "video_name": "5a25e870-4c0e-5f8e-8841-5d432d59bcff", "text": "\u4e00\u4efd\u6709\u5de7\u514b\u529b\u788e\u7247\u548c\u6c34\u679c\u7684\u68c9\u82b1\u7cd6\uff0c8\u5143\uff0c\u6ca1\u6709\u4e11\u964b\u7684\u5916\u89c2\uff0c\u5168\u65b0\u672a\u98df\u3002"} +{"id": "7003616", "video_name": "8df5be56-6d74-5462-bae3-003b8cb24fad", "text": "\u4e00\u5934\u5927\u8c61\u6b63\u5728\u6df1\u6d77\u4e2d\u6eba\u6c34\u3002"} +{"id": "3006038", "video_name": "9b41a6c5-0ff1-5394-aa7a-10f96ea56dc6", "text": "\u79d1\u62c9\u7433\u5fae\u7b11\u7740\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u672c\u6545\u4e8b\u4e66\uff0c\u5750\u5728\u4e00\u4e2a\u8212\u9002\u7684\u56fe\u4e66\u9986\u91cc\uff0c\u6ca1\u6709\u4efb\u4f55\u626d\u66f2\u7684\u7279\u5f81\uff0c\u753b"} +{"id": "6003166", "video_name": "338815be-66f6-53f5-b6b1-caeeb35bd539", "text": "\u963f\u5179\u7279\u514b\u4eba\u5728\u7279\u8bfa\u5947\u8482\u7279\u5170\u8fdb\u884c\u4eea\u5f0f\uff0c\u65e7\u7535\u5f71\u4ecd\u5b58\u5728\u3002"} +{"id": "4004130", "video_name": "3ed0aa8c-c64f-53a9-be0c-9371c087edab", "text": "\u4e00\u682a\u5e7c\u82d7\u4ece\u58f3\u4e2d\u94bb\u51fa\uff0c\u5a07\u5ae9\u800c\u53c8\u575a\u5b9a\u3002"} +{"id": "4003125", "video_name": "ca443642-d0f5-5c1b-b682-0533d2bbff0c", "text": "\u57281812\u5e74\u7684\u82f1\u683c\u5170\u8d35\u65cf\u5e84\u56ed\u821e\u4f1a\u4e0a\uff0c\u8fdb\u884c\u4e86\u65b9\u683c\u821e\u3002"} +{"id": "6004610", "video_name": "c13c8181-8739-54eb-841c-02504108c5fa", "text": "\u8d85\u5199\u5b9e\u30013D\u3001\u7167\u7247\u7ea7\u771f\u5b9e\u3001\u52a8\u6f2b\u98ce\u683c\u3001\u5730\u7403\u88ab\u6d41\u661f\u649e\u51fb\u3001\u4ece\u592a\u7a7a\u4fef\u77b0\u5730\u7403\u3002"} +{"id": "8001244", "video_name": "7a7e7b9a-78dd-53fc-82b0-029b11b59a92", "text": "\u4ece\u4e00\u5ea7\u53e4\u57ce\u5230\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\u6b63\u5728\u5efa\u9020\u6865\u6881\u3002"} +{"id": "3005445", "video_name": "9a925892-8774-5450-942f-d69c94768e3d", "text": "\u5927\u7b11\uff0c\u7f8e\u4e3d\u7684\u5fae\u7b11\uff0c\u5b8c\u7f8e\u7684\u7259\u9f7f"} +{"id": "1003635", "video_name": "42feaee8-6048-5fbd-b9cc-a6a56127cd6b", "text": "\u7535\u5f71\u5236\u4f5c\u7ec4\u6210\u5458\u5728\u62cd\u7535\u5f71\u3002"} +{"id": "0004094", "video_name": "0313acd0-f34f-5d73-b945-40a94881ea18", "text": "\u9762\u6761\u6389\u8fdb\u4e00\u7897\u6c64\u91cc\u3002"} +{"id": "8002083", "video_name": "17c1f317-29bc-5201-86aa-a85fa8237970", "text": "\u6e38\u620f\u300a\u5821\u5792\u4e4b\u591c2\u300b\u4e2d\u7684\u533b\u7597\u5175\u6b63\u8d70\u5411\u505c\u5728\u68ee\u6797\u4e2d\u7684\u6c7d\u8f66\u3002"} +{"id": "4003797", "video_name": "cc2f0e18-ba8d-57c6-8d97-d7f2d7803ed2", "text": "\u7528\u624b\uff0c\u94f6\u9996\u9970\u7ed9\u8001\u624b\u3002"} +{"id": "8001333", "video_name": "a697680d-7109-523a-97b1-18784e90221f", "text": "\u68ee\u6797\u4e2d\u7684\u6240\u6709\u52a8\u7269\u90fd\u60ca\u614c\u5931\u63aa\u5730\u56db\u5904\u5954\u8dd1\u3002 \n\nSource sentence: The flowers in the garden are blooming beautifully. \n\n\u82b1\u56ed\u91cc\u7684\u82b1\u6735"} +{"id": "7002213", "video_name": "d6794bf4-31f5-59c9-b94d-096c943bbfe7", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7c89\u8272\u5934\u53d1\u7684\u5973\u4eba\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8df3\u821e\u3002"} +{"id": "8001357", "video_name": "42516323-0c78-50af-a7a5-fcde089d16be", "text": "\u4e09\u540d\u5b87\u822a\u5458\u5728\u5915\u9633\u4e0b\u8d70\u8fdb\u706b\u661f\u8868\u9762\u3002"} +{"id": "6004769", "video_name": "323b3c80-323a-57b1-9ad9-dbe0174fdb9e", "text": "\u751f\u6210\u4e00\u4e2a\u8282\u65e5\u6c14\u6c1b\u7684\u5723\u8bde\u98ce\u666f\uff0c\u5305\u62ecSanta Claus\u5728\u96ea\u6a47\u4e0a\u3002\u786e\u4fdd\u96ea\u6a47\u770b\u8d77\u6765\u5728\u8fd0\u52a8\u4e2d\uff0c\u521b\u9020\u4e00\u4e2a\u52a8"} +{"id": "4003057", "video_name": "35025987-bb70-5b09-996f-805d58f8d625", "text": "\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u5e74\u8f7b\u7537\u5b50\u671b\u7740\u955c\u5934\u3002"} +{"id": "4002023", "video_name": "001f6b9c-0251-5a62-9a65-fdff05e29a9b", "text": "\u672a\u6765\u4e3b\u4e49\u706f\u7b3c\uff0c\u7b80\u7ea6\u6d41\u7545\u7684\u8bbe\u8ba1\u3002"} +{"id": "1004275", "video_name": "4f16a99d-7ab2-56b6-a464-4cbe97f168ee", "text": "\u4e00\u6bb5\u5e93\u5b58\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u5728\u7535\u8111\u524d\u6cae\u4e27\u7684\u7537\u4eba\u3002"} +{"id": "1004607", "video_name": "55c4b59e-32cc-5eca-904a-af3f5c5a5243", "text": "\u5c0f\u718a\u548c\u670b\u53cb\u4eec\u7a7f\u8d8a\u68ee\u6797\uff0c\u6500\u767b\u5c71\u5cf0\uff0c\u6e21\u8fc7\u6cb3\u6d41\uff0c\u5728\u8def\u4e0a\u7ed3\u4ea4\u65b0\u670b\u53cb\u3002"} +{"id": "3003988", "video_name": "cd87b39c-b088-5aee-9254-b84c9b1738e0", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u9605\u8bfb\u4e00\u672c\u56fe\u50cf\u5c0f\u8bf4\u6f2b\u753b\u72ec\u7acb\u6742\u5fd7\u3002"} +{"id": "0005925", "video_name": "23525e10-e835-582e-b978-c8edef13ccd0", "text": "\u6c64\u59c6\u738b\u8fdb\u5165\u660f\u6697\u7684\u76d1\u7262\uff0c\u8d70\u5230\u4e00\u5f20\u7b80\u5355\u7684\u5e8a\u524d\uff0c\u585e\u897f\u8389\u4e9a\u00b7\u5170\u5c3c\u65af\u7279\u6b63\u5750\u5728\u4e0a"} +{"id": "0005817", "video_name": "21adf059-78a2-57d3-9540-ed53b6d67e94", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u767d\u5154\u5b50\u7ad9\u5728\u8349\u5730\u4e0a\uff0c\u592a\u9633\u7167\u8000\u7740\u5b83\u3002"} +{"id": "4004509", "video_name": "f1bb9582-8387-541c-851f-18bc89427d68", "text": "\u4f26\u6566\u5e02\u4e2d\u5fc3\uff0c\u8ff7\u4eba\u7684\u6069\u83f2\u5c14\u5fb7\u8c6a\u5b85\u3002"} +{"id": "6003704", "video_name": "f58b2c95-1b0a-5d19-b5c6-028a8086463a", "text": "\u4e00\u8258\u6e38\u8247\u4e0a\u7684\u9ed1\u8272\u5e3d\u5b50\u4eba\u5f71\u3002"} +{"id": "0003502", "video_name": "3ea71f6b-9f12-52fd-95db-01348aad9ec1", "text": "\u4e13\u8f91\u5c01\u9762\u3001\u8def\u98de\u3001\u5a1c\u7f8e\u3001\u4e92\u76f8\u5bf9\u6218\uff0c\u8def\u98de\u4f7f\u7528\u4e86\u87ba\u65cb\u4e38\uff0c\u590d\u53e4\u4e3b\u9898\u3002"} +{"id": "7002850", "video_name": "1ceeb1cd-7e39-5f27-833e-1224b5dda01e", "text": "\u88ab\u5e26\u523a\u94c1\u4e1d\u7f20\u7ed5\u7684\u73ab\u7470\uff0c\u6b63\u5728\u88ab\u7a92\u606f\uff0c\u53f6\u5b50\u4e5f\u5728\u8131\u843d\u548c\u5e72\u67af\u3002"} +{"id": "8002947", "video_name": "0546a2cc-dddf-519d-b56f-8d4c2a55a1f6", "text": "\u975e\u6d32\u88d4\u7f8e\u56fd\u540c\u6027\u604b\u592b\u5987\u5728\u65e5\u843d\u65f6\u5206\u4fef\u77b0\u6d77\u6d0b\u7684\u79c1\u4eba\u9910\u684c\u4e0a\u5171\u8fdb\u665a\u9910\u3002\u80cc\u666f"} +{"id": "1004249", "video_name": "4ea6c7e6-5a83-5c17-9866-dcb43b04a78d", "text": "\u5370\u5ea6\u590f\u591c\u7684\u8424\u706b\u866b\uff0c\u6751\u5e84\u4e2d\u7684\u623f\u5c4b\uff0c\u591c\u665a\u7684\u6811\u6728\uff0c\u771f\u5b9e\u7684\u751f\u6d3b\uff0c\u50cf\u7f8e\u4e3d\u7684\u81ea\u7136\uff0c\u6709"} +{"id": "1004743", "video_name": "57d5f0e0-1228-5a27-9344-9327783d91f4", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u767d\u8272\u88d9\u5b50\uff0c\u9ec4\u8272\u5934\u53d1\uff0c\u5fae\u7b11\uff0c\u5feb\u4e50\uff0c\u68ee\u6797\uff0c\u6811\uff0c\u5c0f\u5f84\uff0c\u7ea2\u82b1\u3002"} +{"id": "6004918", "video_name": "28f231af-14ca-5fb2-b1f6-565289bfcd38", "text": "\u4e00\u540d\u77db\u9c7c\u730e\u624b\u6b63\u5728\u6355\u730e\u4e00\u6761\u5de8\u5927\u7684\u9c7c\u3002\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u5448\u73b0\uff0c\u9ad8\u8d28\u91cf\u6444\u5f71\uff0c\u903c\u771f"} +{"id": "5001995", "video_name": "a9156ea6-b3f9-559e-8a9e-2326ff981c56", "text": "\u6811\u4ece\u6a59\u5b50\u91cc\u957f\u51fa\u6765\u3002"} +{"id": "0004245", "video_name": "05b21085-53ba-53b9-947f-77bf303096f1", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u7236\u4eb2\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u624b\u6301\u957f\u77db\u548c\u5f13\u7bad\u3002\u7537\u5b69\u5174\u594b\u5730\u56db\u5904\u5f20\u671b\uff0c\u800c\u4ed6\u7684"} +{"id": "1004612", "video_name": "55ce6fce-8975-55f5-bc13-027da522b508", "text": "\u4e00\u7247\u8302\u5bc6\u7eff\u6811\u7684\u68ee\u6797\uff0c\u91cc\u9762\u6709\u4e00\u53ea\u5c0f\u9e7f\u3002"} +{"id": "4002578", "video_name": "670799c7-60d2-5686-bf4a-483d1a149cae", "text": "\u57ce\u5e02\u6218\u6597\u7684\u4f59\u6ce2\uff1a\u51b2\u950b\u67aa\u7684\u9053\u5fb7\u4e0e\u771f\u76f8\u3002"} +{"id": "7004235", "video_name": "cef99110-13fd-5881-94dd-ed07864448e7", "text": "\u4e00\u4e2a\u7a7f\u7740\u82cf\u683c\u5170\u88d9\u7684\u6cf0\u8fea\u718a\u4e50\u961f\u5728\u821e\u53f0\u4e0a\u73b0\u573a\u6f14\u594f\u82cf\u683c\u5170\u6c11\u8c23\u6447\u6eda\uff0c\u96f7\u7535\u4ea4"} +{"id": "5001393", "video_name": "56a38ac5-5d0e-5d16-b16c-68a6cfac8432", "text": "\u4ece\u6c99\u59c6\u74e6\u5c14\u5192\u51fa\u4e86\u84b8\u6c7d\uff0c\u9e1f\u513f\u5728\u98de\u7fd4\u3002"} +{"id": "1004396", "video_name": "514da03b-a775-5b5d-873e-215271616e50", "text": "3D\u52a8\u753b\u4ea4\u901a\u5728\u8def\u4e0a\u3002"} +{"id": "0003106", "video_name": "3722600d-3186-5063-95d0-5869cc0dc690", "text": "\u9c7c\u8089\u6c49\u5821\u5f00\u59cb\u642d\u914d\u9762\u5305\u5356\u3002"} +{"id": "8003238", "video_name": "ffd863fb-2c2d-5d32-9edf-e7946faf114e", "text": "\u8fd9\u4e2a\u7537\u4eba\u73b0\u5728\u7ad9\u5728\u4e00\u7247\u82b1\u6d77\u4e2d\uff0c\u4ed6\u7684\u5bb6\u4eba\u548c\u670b\u53cb\u5728\u4ed6\u8eab\u8fb9\u3002\u4ed6\u611f\u5230\u5feb\u4e50\u548c\u6ee1\u8db3\uff0c\u77e5\u9053\u81ea\u5df1\u5728\u4e16"} +{"id": "3003551", "video_name": "92ac0ab9-8745-5b81-879b-0013ab7aec75", "text": "\u4e00\u7537\u4e00\u5973\u5750\u5728\u65c5\u9986\u623f\u95f4\u91cc\uff0c\u4ed6\u4eec\u6b63\u5728\u8c08\u8bba\u5de5\u4f5c\u673a\u4f1a\uff0c\u6c14\u6c1b\u5341\u5206\u4e25\u8083\u548c\u60b2\u4f24\u3002"} +{"id": "6002469", "video_name": "5a3c7ecb-e9d3-5dee-978b-c17960f0cf72", "text": "\u4e16\u754c\u4e0a\u7684\u7231\u7684\u6982\u5ff5"} +{"id": "3003049", "video_name": "1a35253d-1657-5a33-aae8-bd5d09eba15c", "text": "\u8857\u5934\u88ab\u9057\u5f03\u7684\u72d7\u7684\u54ed\u58f0\u3002"} +{"id": "1003732", "video_name": "44e33166-9efd-5c7e-8aea-489e9ad62506", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6c83\u5c14\u739b\u8d2d\u7269\u3002"} +{"id": "6004753", "video_name": "ff623587-731b-55b0-8418-e60398e3f64a", "text": "\u6240\u6709\u52a8\u7269\u5728\u7f8e\u4e3d\u7684\u4e1b\u6797\u4e2d\u8ddf\u5728\u72ee\u5b50\u7684\u540e\u9762\u8d70\u3002"} +{"id": "1005881", "video_name": "6c34d132-3dae-5b20-b710-3117cb86322c", "text": "\u96f7\u5965\u548c\u65af\u7279\u62c9\u4e58\u7740\u5c0f\u8239\u51fa\u53d1\u4e86\u3002"} +{"id": "1006612", "video_name": "79376787-23ee-5800-a099-8dca3e3e82a7", "text": "Claude Monet\u7684\u98ce\u683c\u7684\u91d1\u95e8\u5927\u6865\u548c\u6d77\u6e7e\u7684\u6c34\u5f69\u753b"} +{"id": "6003944", "video_name": "c022bfe2-8822-5156-b528-d84a48077354", "text": "\u4e01\u00b7\u683c\u9c81\u53e4\u548c\u5c24\u8fbe\u5927\u5e08\u4e00\u8d77\u73a9\u3002"} +{"id": "0003444", "video_name": "3da20df4-1337-523f-b94f-2b0c6b2e456f", "text": "\u4e24\u53ea\u624b\u6b63\u5728\u6253\u7834\u76d8\u5b50\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "6003574", "video_name": "e7680a3d-aea3-53a3-b4a1-5796ce68e852", "text": "\u6000\u5b55\u7684\u732b\u5728\u624b\u672f\u5ba4\u91cc\u3002"} +{"id": "3005207", "video_name": "952a1b77-1350-56ab-9213-5155c65ec205", "text": "\u9a6c\u54c8\u62c9\u65af\u7279\u62c9\u90a6\u961f\u7684Dhoni\u5148\u751f\u6b63\u5728\u677f\u7403\u573a\u4e0a\u5954\u8dd1\uff0c\u529b\u4e89\u5f97\u52301\u5206\u3002"} +{"id": "0006140", "video_name": "272bf78e-15eb-5e61-9f5d-6791b8c24537", "text": "\u4eba\u5728\u4e00\u7247\u65e7\u6218\u573a\u7684\u5e9f\u589f\u4e2d\u884c\u8d70\u3002"} +{"id": "3006057", "video_name": "a779bada-73db-56b3-bab9-533dc00dd989", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96e8\u4e2d\u8df3\u821e\uff0c\u7535\u5f71\u822c\u7684\u4f53\u9a8c\uff0c\u57ce\u5e02\u91cc\u3002"} +{"id": "4002451", "video_name": "d2f3b8f1-5b05-54f9-b1b1-b425bfd87f97", "text": "\u5e74\u8f7b\u5973\u5b69\u5728\u7b49\u706b\u8f66\uff0c\u6ed1\u52a8\u5979\u7684\u624b\u673a\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "5001811", "video_name": "61799bfb-9bec-5723-afef-addd513297a2", "text": "\u751f\u6210\u4e00\u5f20\u73ed\u5c3c\u5728\u9b54\u6cd5\u68ee\u6797\u4e2d\u53d1\u73b0\u795e\u79d8\u5730\u56fe\u7684\u56fe\u7247\u3002"} +{"id": "6004194", "video_name": "61f529a4-2040-5462-a1e6-e86dd79bf8b1", "text": "\u4e00\u7fa4\u5e74\u9f84\u4e2d\u7b49\u7684\u7537\u5973\u670b\u53cb\u5e76\u80a9\u5fae\u7b11\u7740\u6446\u51fa\u5408\u7167\u59ff\u52bf\uff0c4K\u753b\u8d28\uff0c\u5b8c\u7f8e\u7684\u9762\u5bb9\u548c\u52a8\u4f5c\u3002"} +{"id": "7003280", "video_name": "2925d61b-1e40-5971-aeb1-94be23ad7412", "text": "\u4e00\u4e2a\u5149\u660e\u7684\u60f3\u6cd5\u5728\u975e\u5e38\u9ed1\u6697\u7684\u5730\u65b9\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4004441", "video_name": "20ec3120-9488-5b95-a927-8a8cf7eb9753", "text": "\u6d41\u884c\u574a\u4ee5\u5f69\u8272\u75c5\u6bd2\u7537\u5b69\u4e3b\u9898\u4e3a\u7075\u611f\u7684\u73a9\u5177\u3002"} +{"id": "3005120", "video_name": "a5629623-86a4-5a18-b396-3ac7523e3b38", "text": "\u4e54\u00b7\u62dc\u767b\u57282010\u5e74\u6bd4\u5229\u65f6\u505c\u8f66\u573a\u8df3\u821e\uff0c\u97f3\u4e50\u89c6\u9891\uff0c\u80a9\u8180\u9ad8\u5ea6\u62cd\u6444\u3002"} +{"id": "0005428", "video_name": "1aa3473e-4775-55a6-86b9-d5084a22a9c7", "text": "\u4e00\u4f4d\u7a7f\u7740\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd\u5236\u670d\u76843D\u5e74\u8f7b\u57c3\u7c73\u62c9\u8482\u513f\u7ae5\u7ad9\u5728\u5bb6\u4e2d\uff0c\u753b\u9762\u6e05\u6670\u903c"} +{"id": "0003034", "video_name": "35eb117e-bbdb-5838-93bb-c86f89da8d0b", "text": "\u7ea2\u8272\u6cd5\u62c9\u5229\u5728\u51f9\u51f8\u4e0d\u5e73\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "1006484", "video_name": "76a4d300-8090-52bb-8259-581669544664", "text": "\u4e00\u4e2a\u7a46\u65af\u6797\u7537\u5b69\u548c\u4ed9\u5973\u8c08\u8bba\u4ed6\u6751\u6c11\u9762\u4e34\u7684\u95ee\u9898\u3002"} +{"id": "2004577", "video_name": "b9f34a35-d893-5f3e-a88b-8fca0db9f40f", "text": "\u8bb8\u591a\u7537\u6027\u9b3c\u9b42\u5728\u9ed1\u591c\u3001\u6ee1\u6708\u548c\u96e8\u4e2d\u8fdb\u5165\u5893\u5730\u3002"} +{"id": "3006289", "video_name": "279c4554-4165-536c-b711-063a4a889bc6", "text": "available to us at present?\n\n\u8d85\u51fa\u53ef\u89c1\u5b87\u5b99\u8fb9\u754c\u7684\u662f\u4ec0\u4e48\uff1f\u4f60\u8ba4\u4e3a\u90a3\u91cc\u5e94\u8be5\u6709\u4ec0\u4e48\uff1f\u76ee\u524d\u6211\u4eec\u53ef\u4ee5\u83b7\u5f97\u54ea\u4e9b\u4fe1\u606f\uff1f"} +{"id": "7002136", "video_name": "b33a9cee-416d-56e9-900b-0cfafbe29fe5", "text": "\u4e00\u4e2a\u7537\u5b69\u60f3\u53bb\u7f8e\u56fd\u3002"} +{"id": "3005392", "video_name": "ea38f2eb-50ab-5b9b-9da2-b8b135d0d023", "text": "\u4e00\u4e2a\u5973\u4eba\u4ece\u6e38\u6cf3\u6c60\u91cc\u722c\u51fa\u6765\u3002\n\nSource sentence: The cat is sitting on the windowsill. \n\n\u732b\u5750\u5728\u7a97\u53f0\u4e0a\u3002"} +{"id": "1004058", "video_name": "4b4022e9-5616-571b-a815-66b04623c2b7", "text": "\u623f\u5b50\u5192\u70df\u4e86\u3002\u623f\u5b50\u4e0a\u7740\u706b\u4e86\u3002\u5929\u7a7a\u5f88\u6697\u3002\u53d1\u751f\u4e86\u7206\u70b8\u3002"} +{"id": "0003745", "video_name": "42ab4e3d-f13b-54e1-ac18-f0b8cd40f164", "text": "\u4e00\u6761\u4e1c\u65b9\u9f99\u6b63\u5728\u5929\u7a7a\u4e2d\u6349\u4f4f\u4e00\u53ea\u5927\u5154\u5b50\u5e76\u98de\u884c\uff01"} +{"id": "1004086", "video_name": "4bb2b317-ec03-579f-9834-b5ea9f30f008", "text": "\u4e00\u4e2a\u8eab\u7a7f\u9ed1\u888d\u7684\u4eba\u7269\uff0c\u7ad9\u5728\u9ed1\u6697\u7684\u5c71\u5ce1\u4e0a\uff0c\u80cc\u5bf9\u80cc\u5730\u7ad9\u7740\uff0c\u957f\u888d\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "7004284", "video_name": "d393ac51-ecfb-5a64-89ac-de4d183fa795", "text": "\u4e24\u5f20\u56fe\u7247\uff0c\u5206\u5272\u7ebf\u5728\u4e2d\u95f4\u3002\u53f3\u534a\u8fb9\u662f\u9ed1\u8272\u7684\uff1a\u706b\u548c\u706b\u7130\uff0c\u56fe\u6848\u4e2d\u95ea\u70c1\u7740\u706b\u82b1\u3002\u5de6\u534a\u8fb9\u662f\u767d\u8272"} +{"id": "2003264", "video_name": "83da21d9-bcc0-524a-8241-51f5ab120952", "text": "\u83ab\u5367\u513f\u738b\u671d\u519b\u961f\u7684\u7279\u5199\uff0c\u65d7\u5e1c\u98de\u626c\uff0c\u5448\u68d5\u8910\u8272\uff0c\u8425\u5730\u3002"} +{"id": "4004431", "video_name": "679f530c-8118-51c0-81e4-93ae3512f032", "text": "\u4e00\u4e2a\u98de\u884c\u5c9b\u4e0a\u7684\u7011\u5e03\u6d41\u5411\u4e00\u5ea7\u6b7b\u706b\u5c71\u53e3\u4e2d\u7684\u6e56\u6cca\uff0c\u5468\u56f4\u662f\u4e00\u7247\u795e\u5947\u7684\u68ee\u6797\u3002"} +{"id": "8003477", "video_name": "b14e936d-d7db-5ae3-81ca-fa50b74b63d6", "text": "19\u4e16\u7eaa40\u5e74\u4ee3\u7684\u5f69\u8272\u7247\u6bb5\uff0c\u5c55\u73b0\u7684\u662f\u4e00\u5bf9\u53cc\u80de\u80ce\u59d0\u5f1f\uff0c\u4ed6\u4eec\u90fd\u6709\u8349\u8393\u91d1\u53d1\uff0c\u7a7f\u7740\u7ef4"} +{"id": "6003477", "video_name": "4200c0dd-a888-5a8a-aad3-e1fdeff7abe8", "text": "\u9f99\u7eb3\u5c9b\u5728\u4e00\u573a\u91cd\u91d1\u5c5e\u97f3\u4e50\u8282\u4e0a\u6f14\u51fa\u3002"} +{"id": "2003715", "video_name": "fa08079d-7833-514d-a744-44960f7aca2a", "text": "\u4e00\u5e45\u5c71\u4e18\u4e0a\u623f\u5b50\u7684\u56fe\u50cf\u3002"} +{"id": "2003368", "video_name": "a69b28fe-6366-56d1-9729-17f5ab3c9a95", "text": "\u5de5\u4eba\u7684\u5efa\u7b51\u7269\u7528\u94c1\u548c\u94a2\u5efa\u9020\u3002"} +{"id": "4002025", "video_name": "f70d5b99-46c7-550a-a036-784d82f4c1ad", "text": "\u65af\u7279\u9f99\u9970\u6f14\u8fea\u58eb\u5c3c\u7535\u5f71\u300a\u7f8e\u98df\u603b\u52a8\u5458\u300b\u4e2d\u7684\u96f7\u7c73\u3002"} +{"id": "0003358", "video_name": "3c27b41b-b5e0-553f-a91d-6942c6110d5b", "text": "\u9ad8\u54c1\u8d28\u8be6\u7ec6\u7684\u6c34\u5f69\u98ce\u683c\uff0c\u98de\u8d8a\u5728\u53e4\u8001\u7684\u7ebd\u7ea6\u8857\u9053\u4e0a\uff0c\u65f6\u95f4\u662f1910\u5e74\u3002"} +{"id": "0004709", "video_name": "0db9c44f-0d8a-58d4-84b5-dcc3801add4c", "text": "\u5361\u901a\u718a\u5929\u4f7f\u6325\u7740\u7fc5\u8180\u98de\u8fc7\u4e00\u4e2a\u57ce\u5e02\u3002"} +{"id": "0005158", "video_name": "15c5b44f-9fdd-5b6f-adf1-86f0fdaa0510", "text": "\u4e00\u53ea\u9f20\u9e7f\u7ad9\u5728\u6cb3\u5cb8\u4e0a\uff0c\u80cc\u666f\u662f\u5f20\u5f00\u5634\u5df4\u7684\u9cc4\u9c7c\uff0c\u4f7f\u75283D\u52a8\u753b\u3002"} +{"id": "1004937", "video_name": "5b4a7bd6-bfdb-59df-8f14-249fa9162fb3", "text": "\u8d85\u5199\u5b9e\u7684\u9c7c\uff0c\u6f02\u6d6e\u5728\u6c34\u4e0a\uff0c\u6d77\u6d6a\uff0c\u4e91\u5f69\u3002"} +{"id": "7002453", "video_name": "21578c7e-0b30-598e-bff2-05fe39af9bb9", "text": "\u767d\u8272\u80cc\u666f\u4e0a\u7f13\u6162\u7efd\u653e\u7740\u4e00\u675f\u7c89\u8272\u82b1\u857e\uff0c\u70df\u82b1\u5728\u80cc\u666f\u4e2d\u7206\u70b8\u3002"} +{"id": "1005456", "video_name": "644207b7-46f1-5da8-8ec3-55ad9141fdff", "text": "\u5634\u5507\u52a8\uff0c\u5934\u53d1\u751f\u957f\uff0c\u80cc\u666f\u4e2d\u7684\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "3006492", "video_name": "f71a4e7f-a804-5b27-a958-12a19ee72656", "text": "1940\u5e74\u4ee3\u4e00\u95f4\u623f\u95f4\u91cc\uff0c\u65e7\u62a5\u7eb8\u548c\u624b\u7a3f\u5728\u684c\u5b50\u4e0a\u98de\u821e\u76d8\u65cb\u3002"} +{"id": "1004627", "video_name": "5609eeb2-2bb9-5c5b-a241-3956209ea927", "text": "\u4e00\u4f4d\u65e5\u672c\u4eba\u5728\u8db3\u7403\u573a\u4e0a\u8fdb\u7403\u4e86\u3002"} +{"id": "0003221", "video_name": "3983e275-c7ca-5961-adc8-69547a72c4d0", "text": "\u673a\u5668\u4eba\u5728\u65e5\u5e38\u4eba\u7684\u5bb6\u4e2d\u5e2e\u5fd9\u3002"} +{"id": "1006980", "video_name": "7fbeb512-dfff-5d4b-ade4-072fab43a804", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\uff0c\u770b\u7740\u9910\u5385\u91cc\u7684\u4e00\u5bf9\u60c5\u4fa3\u5531\u6b4c\u3002"} +{"id": "6003191", "video_name": "c8a1aeb6-c381-5464-b76b-4f5b8f56fae9", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u5728\u821e\u8e48\u5ba4\u7684\u955c\u5b50\u524d\u8df3\u821e\uff0c\u5411\u81ea\u5df1\u8bc1\u660e\u5979\u80fd\u5b8c\u6210\u7f16\u821e\uff0c\u5e76\u76f8\u4fe1\u81ea\u5df1\u3002"} +{"id": "0004729", "video_name": "0e2e8ef4-b19d-50e2-a083-1b3f501335ca", "text": "\u4e00\u4e2a\u5750\u5728\u58c1\u7089\u65c1\u6905\u5b50\u4e0a\u768440\u5c81\u7537\u4eba\uff0c\u6b63\u5728\u9605\u8bfb\u4e00\u672c\u4e66\uff0c\u6c1b\u56f4\u8f7b\u67d4\u6e29\u99a8\u3002"} +{"id": "4003472", "video_name": "e5c50d2c-365d-57ba-b2f1-7eb5fd419897", "text": "\u539f\u578b\u6df7\u5408\u4fdd\u65f6\u6377\u5170\u535a\u57fa\u5c3c\u8c03\u6821\u8d38\u6613\u5c55\u89c8\u4f1a"} +{"id": "2007318", "video_name": "c908512c-8cce-58ce-a4dd-552d13600350", "text": "Translation: \u5982\u679c\u5c71\u4e0a\u6ca1\u6709\u5730\u65b9\u4e86"} +{"id": "4002499", "video_name": "546e8b75-2b6f-5f6f-a25a-668d41e1e8a5", "text": "\u5728\u4f53\u80b2\u573a\u4e0a\u8e22\u8db3\u7403\u7684\u7403\u961f\u3002"} +{"id": "7004197", "video_name": "99214848-d2ce-58c6-b51f-05e7a4238847", "text": "\u4e24\u628a\u6905\u5b50\u5728\u591c\u665a\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u661f\u7a7a\u591c\u665a\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "8001304", "video_name": "bb3db73b-89c8-56a6-99f6-0731c6cd7b65", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u63cf\u8ff0\u8036\u7a23\u5728\u98ce\u66b4\u4e2d\u884c\u8d70\u6c34\u9762\u7684\u573a\u666f\u3002"} +{"id": "5001250", "video_name": "ae8a6c98-8980-5092-b35d-287e4010ede8", "text": "\u963f\u62c9\u4f2f\u7537\u5973\u56f4\u7740\u4e00\u5806\u5927\u7bdd\u706b\u7948\u7977\uff0c\u5fae\u98ce\u62c2\u8fc7\u3002"} +{"id": "7004142", "video_name": "a4c22dc7-806c-519a-bc7c-f98c7926e458", "text": "1972\u5e74\uff0c\u5728\u5f17\u5409\u5c3c\u4e9a\u5dde\u91cc\u58eb\u6ee1\u5e02\u4e2d\u5fc3\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u9ed1\u4eba\u7537\u5b69\u51fa\u751f\u5728\u4e00\u4e2a\u666e\u901a\u5bb6\u5ead\u4e2d\u3002\u4ed6\u4eec\u4f4f\u5728\u4e00\u4e2a"} +{"id": "8002964", "video_name": "9ee95092-7a06-5ef9-8f07-52904209c590", "text": "\u4e00\u4e2a\u5361\u901a\u89d2\u8272\u5750\u5728\u82b1\u56ed\u91cc\u3002"} +{"id": "3003215", "video_name": "149d6eb1-df23-5d9c-96ff-6676e47a2936", "text": "\u6c99\u6f20\u4e2d\u7684\u7537\u4eba\u53e3\u6e34\uff0c\u6652\u4f24\u4e86\u3002\u5728\u4ed6\u4e0a\u65b9\u7684\u6674\u6717\u5929\u7a7a\u4e2d\u6709\u4e24\u4e2a\u660e\u4eae\u7684\u592a\u9633\u3002AR 16:9"} +{"id": "3003871", "video_name": "36c8c464-a8c9-56df-a011-9de7362f73b4", "text": "\u4e00\u540d\u7537\u5b50\u5728\u5de5\u5382\u91cc\u5c06\u5e26\u6709\u201ctakis\u201d\u5b57\u6837\u7684\u84dd\u8272\u85af\u7247\u653e\u5165\u888b\u5b50\u4e2d\uff0c\u4ed6\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "5001749", "video_name": "161ad8d4-ac7c-553c-a2a7-ac151b74a1ea", "text": "\u684c\u5b50\u4e0a\u6709\u4e00\u90e8\u624b\u673a\uff0c\u4e0a\u9762\u5199\u7740FACEBOOK\u4e2a\u4eba\u8d44\u6599\u3002"} +{"id": "1005966", "video_name": "6d98c4b5-d670-5b54-9304-e5c6c209299c", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u7f55\u89c1\u75be\u75c5\u7684\u89c6\u9891\u4ecb\u7ecd\u3002"} +{"id": "3006705", "video_name": "ea3771d6-4e64-55ed-a2f6-a2efb078dd9f", "text": "\u6751\u6c11\u7684\u5b69\u5b50\u548c\u5987\u5973\u63d0\u7740\u6c34\u6876\u548c\u6c34\u7f50\u8d70\u8def\u3002"} +{"id": "7002988", "video_name": "66b7b87d-6bdf-507b-86b9-971e366aca65", "text": "\u706b\u5c71\u4e0b\u7684\u865a\u6784\u57ce\u5e02\u91cc\uff0c\u4eba\u4eec\u5e26\u7740\u4ed6\u4eec\u7684\u9632\u62a4\u88c5\u5907\u3002"} +{"id": "4003907", "video_name": "b557379c-6b60-5f19-a384-239ea005949b", "text": "\u6258\u5fb7\u00b7\u9ea6\u514b\u6cd5\u5170\u7684\u827a\u672f\uff0c\u8718\u86db\u4fa0\u6df7\u5408\u4e86\u673a\u5668\u4eba\uff0c\u7ebd\u7ea6\u5e02\u4e0a\u65b9\u7684\u5c4b\u9876\uff0c\u5750\u5728"} +{"id": "6004012", "video_name": "30277738-ef90-53d8-a9dc-ef514eb7ce18", "text": "\u675c\u5361\u8fea63\u53f7\u5728\u4e5d\u6708\u7684\u6674\u6717\u65e5\u5b50\u91cc\u5728\u7c73\u8428\u8bfa\u4e16\u754c\u8d5b\u8f66\u573a\u83b7\u80dc\u3002"} +{"id": "7002465", "video_name": "e8d1b023-525d-5bd0-83a3-386a2082a7ad", "text": "\u4ed6\u4eec\u770b\u5230\u4e00\u540d\u9a6f\u8c61\u5e08\u7ad9\u5728\u4ed6\u4eec\u65c1\u8fb9\uff0c\u4ed6\u8868\u8fbe\u4e86\u81ea\u5df1\u56f0\u60d1\u7684\u5fc3\u6001\u3002"} +{"id": "2005120", "video_name": "42880c14-ac02-55ef-8ba4-7073320e5bee", "text": "\u4e00\u4e2a\u5973\u5b69\u8c08\u8bbaGlowglass\u4ea7\u54c1\u6709\u591a\u597d\u7684\u89c6\u9891\u3002"} +{"id": "3003595", "video_name": "caef234b-79d3-50f1-bc94-b5fd6859a415", "text": "\u4e0a\u5e1d\u521b\u9020\u4e16\u754c\uff0c16:9\u6bd4\u4f8b\uff0c\u771f\u5b9e\u611f\u3002"} +{"id": "1006240", "video_name": "724c3e94-c222-5933-b855-b7ec60f12491", "text": "1930\u5e74\u4ee3\u7684\u5f69\u8272\u7eaa\u5f55\u7247\u4e2d\uff0c\u4e00\u67b6\u98de\u673a\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u4ece\u5176\u673a\u7ffc\u4e0b\u65b9\u91ca\u653e\u51fa\u9c9c\u8273\u7684\u7eff\u8272\u55b7"} +{"id": "3005574", "video_name": "bfe55500-f31a-5384-ab59-a576ebabd237", "text": "8\u4f4d\u97f3\u7bb1\u5899\u64ad\u653e\u97f3\u4e50\uff0c\u706f\u5149\u53d8\u6362\u989c\u8272\u3002"} +{"id": "1003457", "video_name": "400125c4-3f74-5744-aeaf-6be97d5430a0", "text": "\u4e00\u5e45\u63cf\u7ed8\u5e74\u8f7b\u7f57\u9a6c\u7687\u5e1d\u827e\u62c9\u52a0\u5df4\u5362\u65af\u7684\u8096\u50cf\uff0c\u80cc\u666f\u662f\u53e4\u8001\u7684\u7f57\u9a6c\u57ce\uff0c\u4ed6\u6234"} +{"id": "6004599", "video_name": "2e43e0cf-b897-5b11-af80-47f80275ffe8", "text": "1996\u5e7410\u67084\u65e5\uff0c\u5728\u8f9b\u57fa\u59c6\u4e1c\u90e8\u7684\u7eb3\u56fe\u62c9\u5c71\u9644\u8fd1\u62a4\u9001\u4e00\u961f\u9aa1\u5b50\u65f6\uff0c\u54c8\u5c14\u5df4\u8d3e\u6069\u00b7\u8f9b\u683c\u4e0d\u5e78"} +{"id": "5001430", "video_name": "3bbb39a0-dfaa-56e4-937b-29fedc27fb02", "text": "\u5b83\u7684\u6cb3\u6d41\u5e72\u6db8\uff0c\u68ee\u6797\u53d8\u6210\u4e86\u8352\u51c9\u7684\u8352\u6f20\u3002"} +{"id": "0004470", "video_name": "09a40074-81d1-559b-bec0-82903c2fbf72", "text": "\u4e00\u4e2a10\u79d2\u949f\u7684\u89c6\u9891\uff0c\u7528\u4e8e\u975e\u6d32\u4f4f\u5b85\u97f3\u4e50\u89c6\u9891\u7684\u80cc\u666f\uff0c\u5c55\u793a\u7740\u4e00\u4e2a\u5929\u5802\u822c\u7684\u6d77\u6ee9\u3002"} +{"id": "4003566", "video_name": "202708cd-208e-5e45-afcc-beed240b4033", "text": "\u4e00\u5e45\u5b81\u9759\u7684\u753b\u9762\uff0c\u4e00\u5bb6\u4eba\u5728\u661f\u7a7a\u4e0b\u7761\u5728\u836b\u853d\u4e4b\u4e0b\uff0c\u5e73\u9759\u5b89\u7720\u3002\u4e1b\u6797\u4e2d\u7684\u65e5\u51fa\uff0c\u7ed9\u8fd9\u4e2a\u5bb6"} +{"id": "3004997", "video_name": "54a205b5-d18f-53a2-bf26-fc149af30dd6", "text": "\u4e00\u4e2a\u540d\u4e3a\u201c\u6e05\u9192\u68a6\u5883\u201d\u7684\u5267\u573a\u573a\u6240\u65b0\u5f00\u8bbe\u4e86\u4e00\u4e2a\u8282\u65e5\u573a\u9986\uff0c\u6709\u8bb8\u591a\u5e74\u8f7b\u4eba\u548c\u6c89\u6d78\u5f0f\u5a92\u4f53\u88c5\u7f6e"} +{"id": "7004298", "video_name": "ea349cf8-e221-53f7-9a9a-e3a5472a5afa", "text": "\u5bfc\u5f39\u4ee5\u9ad8\u8d85\u97f3\u901f\u98de\u884c\uff0c\u7a81\u7834\u58f0\u969c\u3002"} +{"id": "3005503", "video_name": "fcc552be-63ba-5a9f-a2d8-5dfd89f43ff6", "text": "\u4e24\u4e2a\u4eba\u7b54\u5e94\u7ed3\u5a5a\u3002"} +{"id": "0005055", "video_name": "13d623bc-effd-51c8-ba4c-9e050ccbd85b", "text": "\u4e00\u4e2a\u9a91\u5728\u98de\u6bef\u4e0a\u7684\u534a\u673a\u68b0\u5316\u6218\u58eb\u5973\u5b69\u3002"} +{"id": "3006348", "video_name": "8bf14a31-91a7-58ef-9d34-a7e7d27a21a5", "text": "\u4e00\u53ea\u5feb\u4e50\u7684\u72d7\u5728\u6162\u52a8\u4f5c\u4e2d\u8df3\u8dc3\u3002"} +{"id": "4002839", "video_name": "23ac8742-e02e-5bdd-987a-0235bbcf9ace", "text": "\u7531\u9ed1\u8272\u6de1\u5165\u4e00\u500b\u7e41\u83ef\u7684\u6578\u5b57\u57ce\u5e02\u666f\u89c0 - \u50cf\u7d20\u3001\u4e8c\u9032\u5236\u4ee3\u78bc\u3001\u79fb\u52d5\u7684\u6578\u5b57\u5143\u7d20\u3002"} +{"id": "2004385", "video_name": "ef71a181-882a-55b8-94f2-083803092628", "text": "\u53ef\u5faa\u73af\u64ad\u653e\u7684\u58c1\u7089\u706b\u7130\u80cc\u666f\u3002"} +{"id": "6004977", "video_name": "257ac589-6600-5640-9021-50bda9f7462b", "text": "\u4e00\u540d\u62e5\u6709\u6d3b\u529b\u84dd\u8272\u5934\u53d1\u7684\u719f\u7ec3\u5973\u98de\u884c\u5458\u5728\u65f6\u9ae6\u7684\u5b87\u5b99\u98de\u8239\u9a7e\u9a76\u8231\u5185\uff0c\u4e13\u6ce8\u51b3"} +{"id": "4003880", "video_name": "8cc2a55c-3d3e-5e3e-b3c4-e782dbb2d2f0", "text": "\u4e2d\u56fd\u65b0\u5e74\u6c1b\u56f4\uff0c\u5e26\u7ea2\u706f\u7b3c\u7684\u5361\u901a\u4e2d\u56fd\u9f99\uff0c\u7728\u773c\u775b\u3002"} +{"id": "6003075", "video_name": "0e864c54-488f-5a32-8f3c-3b84692672be", "text": "\u4e00\u7cfb\u5217\u7740\u706b\u6751\u5e84\u7684\u9f99\u4e0e\u5730\u4e0b\u57ce\u98ce\u683c\u89c6\u89d2\u3002"} +{"id": "6004295", "video_name": "221fb341-ef47-59c4-8219-91ac3f4daaed", "text": "\u4e00\u53ea\u5927\u8c61\u5361\u901a\u5f62\u8c61\u5c55\u793a\u6240\u6709\u7684\u201c\u671d\u9633\u793c\u62dc\u201d\u7684\u52a8\u4f5c\u3002\u5c06\u5927\u8c61\u4fdd\u7559\u4e3a\u7b80\u5355\u7684\u526a\u8d34\u827a\u672f\u5f62\u8c61\u3002"} +{"id": "2003112", "video_name": "b3fa93e5-af0d-5752-ad4c-36dfdc451b72", "text": "\u5143\u5b87\u5b99\u3001\u904b\u52d5\u3001\u672a\u4f86\u3001\u57ce\u5e02\u3001\u7531\u9060\u53ca\u8fd1\uff0c\u79fb\u52d5\u93e1\u982d\uff0c50mm \u93e1\u982d\u3002"} +{"id": "2007909", "video_name": "6e7993db-e5d2-599f-a73d-03079c658fd2", "text": "\u8c37\u6b4c\u5199\u5b57\u6807\u5fd7\uff0c\u673a\u5668\u4eba\uff0c\u8df3\u821e\uff0c\u5feb\u4e50\uff0c\u7167\u7247\u771f\u5b9e\u611f\u3002"} +{"id": "1003407", "video_name": "3ee3c427-a986-5587-86ec-98b19aa5a145", "text": "\u65f6\u88c5\u79c0\u4e0a\uff0c\u6a21\u7279\u7a7f\u7740\u5b87\u822a\u670d\u548c\u592a\u7a7a\u670d\u8d70\u79c0\u3002"} +{"id": "2006350", "video_name": "2a990619-1237-5d54-b175-df49e6fdadcb", "text": "70\u5e74\u4ee3\u7684\u4e13\u8f91\u5c01\u9762\u878d\u5316\u7684\u773c\u775b\uff0c\u661f\u9645\u65c5\u884c\u8005\u3002"} +{"id": "4003487", "video_name": "b1c844b9-6271-55c8-a253-640610dc3f38", "text": "\u5c55\u793a\u4e00\u4e2a\u94a5\u5319\u88ab\u63d2\u5165\u6807\u6709\u9501\u7684\u56fe\u50cf\u3002"} +{"id": "1003764", "video_name": "455a95bb-2630-5ec2-b9c5-345587ccfc52", "text": "\u4e00\u4e2a\u5b69\u5b50\u73a9Game Boy\u3001\u9c7c\u773c\u76f8\u673a\u3001VHS\u3001Super 8\u3002"} +{"id": "3006568", "video_name": "c4f19a2c-5e0d-510f-95f5-0d04e1820225", "text": "\u8f6c\u5934\uff0c\u7f13\u6162\u5411\u524d\u79fb\u52a8\uff0c\u6325\u624b\uff0c\u5728\u80cc\u666f\u4e2d\u6709\u8f7b\u96e8\u548c\u9633\u5149\u3002"} +{"id": "3006940", "video_name": "8554f057-34a0-5be3-a988-4e57920376d5", "text": "\u5728\u65e0\u8fb9\u754c\u7684\u8fb9\u7f18\u547c\u5438"} +{"id": "7004395", "video_name": "6dcba2e5-4d57-50f6-928f-c9573740b821", "text": "\u5de8\u5927\u7684\u624b\u4f38\u51fa\u5929\u7a7a\uff0c\u6293\u8d77\u623f\u5b50\uff0c\u7535\u5f71\u822c\u7684\u8868\u73b0\u98ce\u683c\uff0c\u5177\u6709\u8868\u73b0\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "7004323", "video_name": "fb1c6850-27f3-58d7-9f7d-e7467626cb86", "text": "\u4e00\u4f4d\u9a91\u9a6c\u7684\u7537\u5b50\uff0c\u6234\u7740\u5e3d\u5b50\uff0c\u624b\u62ff\u5409\u4ed6\u3002"} +{"id": "0006443", "video_name": "2c864e87-972e-56eb-8a3e-135b653fc54a", "text": "UFO\u6b63\u5728\u6708\u7403\u65c1\u7684\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "6003105", "video_name": "65d9a3b1-973c-56dd-a218-cf0255d82e83", "text": "\u4e00\u6bb5\u62cd\u6444\u79fb\u52a8\u5b50\u5f39\u5217\u8f66\u7684\u79fb\u52a8\u65e0\u4eba\u673a\u955c\u5934\uff0c\u8be5\u5217\u8f66\u5448\u73b0\u6c99\u82ac\u8272\uff0c\u7ecf\u8fc7\u4e00\u67618\u8f66\u9053\u7684\u516c\u8def\uff0c\u516c\u8def\u4e0a\u6709"} +{"id": "0006084", "video_name": "2665d97d-f431-5bde-904c-615b919bc5ea", "text": "\u60ca\u4eba\u7684\u666f\u8272\uff1a\u4ee5 Serendell \u7684\u5e7f\u9614\u7a7a\u4e2d\u955c\u5934\u5f00\u573a\uff0c\u8fd9\u91cc\u6709\u8302\u5bc6\u7684\u68ee\u6797\u3001\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u4e00\u6761\u95ea\u95ea\u53d1"} +{"id": "4002133", "video_name": "f4f911f8-7675-5284-8873-c5e940348801", "text": "\u90a3\u4e2a\u665a\u4e0a\uff0c\u90a3\u4e2a\u7537\u4eba\u5e26\u7740\u4e00\u961f\u4eba\u6765\u4e86\uff0c\u4ed6\u4eec\u70b9\u7740\u8721\u70db\uff0c\u90a3\u4e2a\u7537\u4eba\u575a\u6301\u8ba9\u5973\u4eba\u4e0b\u6765\uff0c"} +{"id": "4003236", "video_name": "7a8f6b2a-6543-5271-ae99-4ba8e8425b46", "text": "\u7537\u5973\u5728\u5065\u8eab\u623f\u73af\u5883\u4e0b\u8fdb\u884c\u9ad8\u5f3a\u5ea6\u95f4\u6b47\u8bad\u7ec3\uff0c\u6c57\u6d41\u6d43\u80cc\uff0c\u5145\u6ee1\u52a8\u529b\u3002\u4fe1\u606f\uff1aHIIT\u8bad\u7ec3\uff08\u5b57"} +{"id": "6003184", "video_name": "44adace9-0f14-5734-bff5-1ce2c455f3f8", "text": "\u6492\u5207\u5c14\u592b\u4eba\u5728\u4e00\u573a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\u5f53DJ\u3002"} +{"id": "2005405", "video_name": "2e94c392-fb67-5ba3-ac99-813752b40e18", "text": "\u6a31\u82b1\u5728\u84dd\u5929\u4e2d\u98d8\u8361\u3002"} +{"id": "1006385", "video_name": "74d0a6aa-2000-5844-b058-c7f217033e2c", "text": "\u82f1\u6587\u53e5\u5b50\uff1ahandsome young man, dark hair, holding a spear\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u4fca\u7684\u5e74\u8f7b\u4eba\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u624b\u6301\u957f\u77db\u3002"} +{"id": "8002376", "video_name": "7a077535-a04e-51bd-ba8f-b853e5ba41ba", "text": "\u7f8e\u4e3d\u7684\u6e56\u6cca\u3001\u7011\u5e03\u3001\u6d1e\u7a74\u548c\u65e5\u51fa\u3002\u4e00\u4e2a\u8138\u988a\u5fae\u7ea2\u7684\u5973\u4eba\u5728\u6c34\u4e2d\u6e38\u6cf3\uff0c\u80cc\u5bf9\u7740\u76f8\u673a\u770b"} +{"id": "1003903", "video_name": "4807a819-b66f-530d-802e-8804031fe5a6", "text": "\u80cc\u666f\u706b\uff0c\u773c\u955c\uff0c\u76f8\u673a\u653e\u5927\uff0c\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "5001298", "video_name": "2b98b2c3-456c-5fbe-b191-8576a61d0a50", "text": "\u6749\u6811\u6797\u4e2d\u6709\u8bb8\u591a\u8611\u83c7\u3002"} +{"id": "6004688", "video_name": "5640d2dc-7883-50a2-918e-48ccd0ba3fa9", "text": "\u4e00\u5757\u5e26\u82b1\u7684\u84dd\u8272\u71c3\u70e7\u5e03\u6599\u3002"} +{"id": "3004435", "video_name": "b7b3fd2b-5d04-59e9-87be-4e1afed6c3cf", "text": "\u8036\u7a23\u4ece\u6b7b\u4ea1\u4e2d\u590d\u6d3b\uff0c\u5728\u590d\u6d3b\u8282\u7684\u661f\u671f\u5929\u4ece\u575f\u5893\u4e2d\u51fa\u73b0\uff0c\u82b1\u56ed\u3001\u9e1f\u513f\u3001\u95ea\u7535\u3001\u7206\u70b8"} +{"id": "7004571", "video_name": "4809898d-62ba-50ca-a756-8fc0220dda86", "text": "\u5728\u9633\u5149\u4e0b\u521b\u9020\u4e00\u4e2a\u7537\u5b69\u3002"} +{"id": "3003037", "video_name": "c7eb2c9a-2780-5cfd-b8de-570e10cea4c9", "text": "\u4ed9\u5973\u5c0f\u732b\u5e26\u7740\u7fc5\u8180\u98de\u5230\u6bcf\u4e00\u682a\u690d\u7269\u4e0a\u6388\u7c89\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u8d28\u611f\u3002"} +{"id": "8002267", "video_name": "ba686c11-94a8-5e75-8f45-be5e68c36b5e", "text": "\u5b87\u5b99\u3001\u884c\u661f\u548c\u9668\u77f3\u7684\u521b\u9020\u3002"} +{"id": "1005680", "video_name": "68619291-1930-5e42-9cd1-7d01c0599c85", "text": "\u9ed1\u5f71\u5728\u767d\u7816\u5899\u4e0a\u79fb\u52a8\uff0c\u7075\u5f02\u4e3b\u4e49\u3002"} +{"id": "5001497", "video_name": "34b75ffd-310b-5fd6-928d-9b042cc44d28", "text": "\u521a\u521a\u5206\u624b\u7684\u4e00\u5bf9\u4eba\uff0c\u5728\u522e\u98ce\u7684\u65e5\u5b50\u91cc\u4e92\u76f8\u8d70\u8fdc\u4e86\u3002"} +{"id": "7002567", "video_name": "0efa278b-6518-56ec-92e0-44a1e03e5b6e", "text": "\u7237\u7237\u6b63\u5728\u5582\u5c71\u7f8a\uff0c\u6324\u5976\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u80cc\u666f\u91cc\u7684\u70df\u56f1\u91cc\u5192\u7740\u70df\u3002"} +{"id": "6003223", "video_name": "cd39ecc6-cae6-5d2e-b1bd-761eccb67f75", "text": "\u8dd1\u6b65\u7684\u6050\u9f99 8k \u89c6\u9891\uff0c60\u79d2\u3002"} +{"id": "2003267", "video_name": "69bc06c0-6dac-5430-976c-082eea363d2c", "text": "\u521b\u9020\u4e00\u4e2a\u975e\u5e38\u7b80\u5355\u7684\u6807\u5fd7\uff0c\u7528\u4e8e\u4e00\u4e2a\u540d\u4e3aARTISAN AURA\u7684\u73e0\u5b9d\u5728\u7ebf\u5546\u5e97\uff0c\u5176\u81ea\u7136\u5e76\u4f7f\u7528\u73e0\u5b50\u548c\u5b9d\u77f3\u3002"} +{"id": "2005472", "video_name": "9fec81f9-e621-5111-8908-a6471c34d32e", "text": "\u5728\u8682\u8681\u4e16\u754c\u91cc\u8bbe\u5b9a\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u3002"} +{"id": "6003729", "video_name": "87aa9ce8-f743-5f50-89bd-8ec73b585c53", "text": "\u827e\u54c8\u8fc8\u5fb7\u539f\u8c05\u54c8\u7acb\u5fb7\u5e76\u5728\u4ed6\u91cd\u5efa\u7684\u65b0\u5e97\u91cc\u63d0\u4f9b\u4e86\u4e00\u4efd\u5de5\u4f5c\u3002\u54c8\u7acb\u5fb7\u610f\u8bc6\u5230\u4e86\u8bda\u5b9e\u548c\u540c\u60c5\u7684\u4ef7\u503c\u3002"} +{"id": "8001715", "video_name": "3c97e614-baaa-5907-adb7-58a24e3f2a5b", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u767d\u8272\u80cc\u666f\u4e0b\u884c\u8d70\u3002"} +{"id": "0005405", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "\u76ae\u514b\u65af\u98ce\u683c\uff0c\u51b0\u5757\u5185\u90e8\u6709\u8ba1\u7b97\u673a\u5904\u7406\u5668\uff0c\u51b0\u5757\u878d\u5316\u3002"} +{"id": "0005787", "video_name": "21463d5d-8a9a-5df6-a5d3-140cf324e6ce", "text": "\u4e00\u53ea\u72d7\u5728\u516c\u5171\u6c7d\u8f66\u540e\u9762\u5954\u8dd1\u3002"} +{"id": "7004144", "video_name": "6ff26003-0fea-548c-955d-59a5d188cc8c", "text": "\u7a7f\u7740\u672a\u6765\u611f\u5957\u88c5\u7684\u7537\u5b50\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u623f\u95f4\u4e00\u4fa7\u6709\u4e00\u76cf\u706f\uff0c\u753b\u9762\u5411\u540e\u5fae\u5fae\u62c9\u8fdc\u3002"} +{"id": "4003164", "video_name": "0d24598a-6b49-532c-81f8-89368f14206b", "text": "\u4e24\u5bf9\u773c\u775b\u5bf9\u89c6\uff0c\u5b64\u7acb\u7684\u773c\u775b\u3002"} +{"id": "0003574", "video_name": "3fc3f329-ea8e-5e51-9c7b-307d5a0fb4e0", "text": "\u901f\u5ea6\u4e4b\u62182\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\u3002"} +{"id": "0003360", "video_name": "3c365d7c-c441-5847-9faf-4cef8422bcf9", "text": "\u7537\u4eba\u6162\u6162\u5730\u53d8\u6210\u673a\u5668\u4eba\uff0c\u4f34\u968f\u7740\u6e10\u53d8\u6548\u679c\u3002"} +{"id": "6004355", "video_name": "a611c4a9-ac46-59c5-a35f-37b6575d7c60", "text": "\u4e8c\u7ef4\u666f\u89c2\u6b66\u672f\u5b66\u751f\u5750\u5728\u5bfa\u5e99\u57ab\u5b50\u4e0a\uff0c\u5728\u5b81\u9759\u7684\u65e5\u672c\u5bfa\u5e99\u51a5\u60f3\u3002"} +{"id": "1006753", "video_name": "7ba0dd63-d9ed-5a45-96ad-cdd9f18eb407", "text": "\u4e00\u540d22\u5c81\u7684\u7537\u5b69\u5750\u5728\u68ee\u6797\u4e2d\u592e\u7684\u4e00\u68f5\u6811\u4e0b\uff0c\u5728\u9ed1\u6697\u4e2d\u7531\u4e8e\u770b\u4e0d\u89c1\u4ed6\u7684\u8138\u3002"} +{"id": "7004156", "video_name": "0091aa04-67a4-502a-9dc9-6fcc71bea040", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5e26\u7740\u4ed6\u7684\u5ba0\u7269\u72d7\u5728\u7eff\u8272\u7684\u68ee\u6797\u91cc\u6563\u6b65\uff0c\u9633\u5149\u900f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u5448\u73b0"} +{"id": "7002992", "video_name": "9054cd9c-4155-5e97-8bb0-bd55d58d84cb", "text": "\u6e38\u620f\u89d2\u8272\u84dd\u8272\u97f3\u901f\u5728\u4ed6\u7684\u811a\u4e0a\u5954\u8dd1\u548c\u8df3\u8dc3\u3002"} +{"id": "8002254", "video_name": "50d755fb-a300-5a3a-9630-8f9c0deb1288", "text": "\u53f2\u4e1c\u00b7\u79d1\u5c14\u5fb7\u00b7\u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\u559d\u5564\u9152\u7684\u5f71\u7247\uff0c\u8d85\u903c\u771f\u76844k\u6548\u679c\u3002"} +{"id": "4004446", "video_name": "cfc85b39-ebee-5c0e-8175-2fc2fefe1fe7", "text": "\u4e00\u4e9b\u7814\u7a76\u4eba\u5458\u8ba4\u4e3a\u8fd9\u53ef\u80fd\u662f\u5931\u843d\u5927\u9646\u7684\u9057\u8ff9\u3002"} +{"id": "0004947", "video_name": "120acd93-8172-5af0-9ccb-7778684c6587", "text": "\u829d\u52a0\u54e5\u5929\u9645\u7ebf\u5728\u591c\u665a\uff0c\u80cc\u666f\u4e2d\u843d\u96ea\u7eb7\u7eb7\u3002"} +{"id": "5001745", "video_name": "2ed89528-2fc0-58da-9a34-6deafa280450", "text": "\u6d77\u6ee9\u805a\u4f1a\u7684\u65e0\u4eba\u673a\u5f71\u7247"} +{"id": "4002513", "video_name": "1eb483a6-a668-5cc7-8c7a-1af43dce0278", "text": "\u52a8\u753b\u4e2d\uff0c\u706b\u7130\u71c3\u8d77\uff0c\u955c\u5934\u62c9\u8fd1\uff0c\u5c55\u73b0\u7740\u6240\u6709\u4eba\u7684\u601d\u8003\u548c\u5954\u8dd1\u3002"} +{"id": "1006581", "video_name": "78921fcf-b4af-5b3f-8fab-8401ef142194", "text": "\u7528\u6237\u6234\u7740VR\u5934\u76d4\uff0c\u6c89\u6d78\u5728\u5404\u79cd\u5386\u53f2\u6587\u5316\u573a\u666f\u4e2d\u3002\u8fd9\u4e9b\u7528\u6237\u6b63\u5728\u63a2\u7d22\u53e4\u4ee3\u6587\u660e\uff0c\u6f2b\u6b65\u4e8e\u4e92\u52a8\u535a\u7269"} +{"id": "8002900", "video_name": "72cb4116-cb30-542e-82d5-bc32643dafbc", "text": "\u9ed1\u8272\u7684\u6cb9\u6ef4\u6389\u5165\u6e05\u6f88\u7684\u6c34\u4e2d\u3002"} +{"id": "2007967", "video_name": "892ff76c-a1d0-5312-baf1-189b87b38dd1", "text": "\u84dd\u8272\u6d41\u661f\u671d\u7740\u7eff\u8272\u661f\u7403\u98de\u53bb\u3002"} +{"id": "5001987", "video_name": "225a1551-840c-5087-a782-2bd69787ed73", "text": "\u4e00\u53ea\u624b\u7528\u624b\u6307\u8d70\u8def\u3002"} +{"id": "3003809", "video_name": "f197629e-38e1-5574-885d-567385158931", "text": "\u4e00\u4e2a\u5524\u8d77\u60c5\u611f\u7684\u573a\u666f\uff0c\u5c55\u73b0\u4e00\u4e2a\u68a6\u5e7b\u4e16\u754c\uff0c\u878d\u5408\u81ea\u7136\u548c\u79d1\u6280\u5143\u7d20\uff0c\u7740\u91cd\u4e8e\u9c9c\u660e\u7684\u8272\u5f69\u548c\u7a7a\u7075"} +{"id": "5001915", "video_name": "5bbfc84c-2ae9-55fc-a5e1-c2176da4ceaa", "text": "\u5728\u6c99\u6ee9\u4e0a\uff0c\u6d6a\u6f2b\u7684\u7ea2\u73ab\u7470\u82b1\u675f\uff0c\u6bcf\u4e00\u7247\u82b1\u74e3\u90fd\u4f18\u96c5\u5730\u88c5\u9970\u6210\u5fc3\u5f62\uff0c4K \u5206\u8fa8\u7387\u3002"} +{"id": "0006201", "video_name": "28270329-570f-5767-b532-4ce66f9f3d50", "text": "\u4e00\u4e2a\u5e26\u7740\u72fc\u5954\u8dd1\u5728\u5411\u65e5\u8475\u4e0b\u7684\u68ee\u6797\u4e2d\u7684\u7537\u5b69\u3002"} +{"id": "4003655", "video_name": "a3bc8d1a-b16d-5beb-9533-6924dc148ce4", "text": "\u4e00\u4e2a\u7070\u8272\u7684\u661f\u7403\uff0c\u6709\u4e00\u4e9b\u8367\u5149\u7269\u4f53\u548c\u4e00\u540d\u5b87\u822a\u5458\u5728\u4e2d\u95f4\u884c\u8d70\u3002"} +{"id": "6003287", "video_name": "2c5fb186-948b-5b56-b3e3-ac90f8ac4bdf", "text": "\u4e00\u53ea\u62e5\u6709\u7fc5\u8180\u7684\u72d7\u5728\u9ec4\u660f\u7684\u5929\u7a7a\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "3005275", "video_name": "ee900e1f-4ebf-5c12-9003-f936a97637fd", "text": "\u53e4\u8001\u7684\u7ea2\u8272\u5bab\u6bbf\uff0c\u5b9c\u4eba\u800c\u5b8f\u4f1f\uff0c\u52a8\u4eba\u5fc3\u9b44\uff0c\u5982\u57ce\u5821\u822c\u3002"} +{"id": "0004814", "video_name": "0f97149e-0cb3-537f-bfc1-21ee077e2d46", "text": "\u7537\u5b69\u5bf9\u730e\u4eba\u4eec\u8bf4\u8bdd\uff0c\u8bd5\u56fe\u8bf4\u670d\u4ed6\u4eec\u548c\u5e73\u79bb\u5f00\u4e1b\u6797\uff0c\u5c55\u793a\u4ed6\u7684\u5916\u4ea4\u624b\u8155\u3002"} +{"id": "0003007", "video_name": "357d9ee7-e547-5a3a-ab28-6b5abd63da85", "text": "\u5e74\u8f7b\u4eba\uff0c\u5728\u7535\u5b50\u821e\u5385\u91cc\u8df3\u821e\uff0c\u665a\u4e0a\uff0c\u6709\u8bb8\u591a\u8272\u5f69\u7f24\u7eb7\u7684\u706f\u5149\u3002"} +{"id": "6002774", "video_name": "b70a8809-8a87-52d4-b973-6c4c402f9d3a", "text": "\u6050\u6016\u7684\u6c34\u4e0b\u573a\u666f\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u53f2\u8bd7\u822c\u7684\u7535\u5f71\uff0c\u7535\u5f71\u822c\u76844k\u753b\u8d28\u3002"} +{"id": "4004831", "video_name": "94cfc33b-3e7e-5cdc-a064-dedc5f707a3c", "text": "\u7537\u4eba\u56e0\u5931\u53bb\u7231\u800c\u54ed\u6ce3\u3002"} +{"id": "1005727", "video_name": "6952824f-d473-5fa8-9259-68ba676692d8", "text": "\u514b\u91cc\u5e0c\u7eb3\u95ee\u5df4\u5df4\u91cc\u5361\u5728\u6218\u4e89\u4e2d\u4f1a\u652f\u6301\u8c01\u3002\u5df4\u5df4\u91cc\u5361\u900f\u9732\u4ed6\u6253\u7b97\u4e3a\u4efb\u4f55\u4e00\u65b9\u5f31\u52bf"} +{"id": "4003943", "video_name": "46a42673-1c62-59cc-aea8-36dbf3a4b73f", "text": "\u6a31\u82b1\u82b1\u82de\u8fc5\u901f\u5f00\u653e\u3002\u65e5\u843d\u3002"} +{"id": "1005162", "video_name": "5f080c88-9942-51d1-934b-110aa66cd338", "text": "\u4eba\u7c7b\u5728\u6708\u7403\u4e0a\u884c\u8d70\u7740\u7740\u706b\u4e86\u3002"} +{"id": "7003304", "video_name": "8c2724a5-4afd-54c6-88fd-682c9ecc8192", "text": "\u4e00\u4f4d\u5973\u6027\u5728\u65f6\u5c1a\u7535\u5f71\u827a\u672f\u5b9e\u9a8c\u4e2d\u7a7f\u8fc7\u4e00\u4e2a\u957f\u957f\u7684\u8d70\u5eca\uff0c\u4f34\u968f\u7740\u95ea\u70c1\u7684\u706f\u5149\u5954\u8dd1\u3002"} +{"id": "1004519", "video_name": "53e8209e-a8be-5c83-b5ae-a74d56c7005b", "text": "\u6309\u7167\u5305\u88c5\u8bf4\u660e\u716e\u610f\u5927\u5229\u9762\uff0c\u76f4\u5230\u719f\u4f46\u4ecd\u6709\u56bc\u52b2\u3002\u6ca5\u5e72\u540e\u653e\u5728\u4e00\u65c1\u5907\u7528\u3002"} +{"id": "2005583", "video_name": "28d4c096-9c23-580c-a127-c36edca7b61d", "text": "\u60f3\u8c61\u4e00\u4e0bAlex\u5728\u4ed6\u4eec\u7684\u684c\u5b50\u4e0a\u7ffb\u9605\u4e00\u5806\u6587\u4ef6\u3002\u7a81\u7136\uff0c\u4ed6\u4eec\u627e\u5230\u4e86\u4f60\u7684\u6570\u5b57\u8425\u9500\u548c\u7f51\u7ad9\u8bbe\u8ba1\u516c\u53f8\u7684\u4e00\u4efd\u5ba3\u4f20"} +{"id": "1006996", "video_name": "7ffdb367-6649-5d27-a47c-11858758e711", "text": "\u7537\u5b69\u4e9a\u5386\u514b\u65af\u6311\u6218\u590d\u8d5b\u6e38\u620f\u3002"} +{"id": "6002089", "video_name": "e4362e45-0d40-54bc-b48d-761a254b8ac6", "text": "\u8d64\u58c1\u4eba\u4eec\u5728\u8857\u4e0a\u8d70\u6765\u8d70\u53bb\u770b\u7740\u624b\u673a\u3002"} +{"id": "7002022", "video_name": "a441bd60-eb2d-5487-92a7-5fc426c061d7", "text": "\u4e24\u53ea\u6f02\u4eae\u7684\u767d\u8272\u72d7\u5728\u73a9\u4e00\u4e2a\u5c0f\u7ea2\u7403\u3002"} +{"id": "2006802", "video_name": "eae755bd-54f3-5590-9b90-171e68813082", "text": "\u62dc\u767b\u5728\u4ed6\u7684\u68a6\u4e2d\u901a\u8fc7\u4e0e\u706b\u661f\u7f8e\u4e3d\u9ed1\u8272\u516c\u4e3b\u8c08\u5224\u7b7e\u8ba2\u661f\u9645\u548c\u5e73\u6761\u7ea6\u6765\u6267\u884c\u4e2d\u4e1c\u5916\u4ea4\u3002 \u975e\u6d32\u672a\u6765\u4e3b"} +{"id": "8002446", "video_name": "b09e0409-8cfb-5457-bfd4-58198aa18096", "text": "\u62bd\u8c61\u7684\u7ebf\u6761\u6d41\u4ece\u5de6\u5411\u53f3\u7f13\u6162\u79fb\u52a8\u3002\u6bcf\u6761\u7ebf\u90fd\u6709\u4e00\u4e2a\u67d4\u548c\u7684\u6e10\u53d8\u6548\u679c\uff0c\u878d\u5165\u4e86\u80cc\u666f\u4e2d\u3002\u770b\u8d77\u6765\u50cf\u4e00"} +{"id": "8001162", "video_name": "63add022-f7c6-538f-985e-65d8209612d1", "text": "\u8001\u4eba\u8d70\u8def\u5e76\u901a\u8fc7\u5b57\u5e55\u5bf9\u8bdd"} +{"id": "3003673", "video_name": "ac94084a-4564-5d3b-afe0-c20777ae65ef", "text": "\u60f3\u8c61\u4e00\u4e0b\u94c1\u4eba\u7a7f\u7740\u91d1\u8272\u7684\u62ab\u98ce\uff0c\u4f7f\u7528\u4ed6\u7684\u529b\u91cf\u5bf9\u6297\u8718\u86db\u4fa0\uff0c\u5728\u7f8e\u56fd\u7ebd\u7ea6\u5e02\u4e2d\u5fc3\u7684\u573a\u666f\u4e2d\u8fdb\u884c"} +{"id": "8001750", "video_name": "2f65506d-0a3f-5651-a22a-6d069c54c7f1", "text": "4K\u9ad8\u8d28\u91cf\uff0c\u4e00\u540d\u4e2d\u56fd\u9752\u5c11\u5e74\u5728\u5e7f\u5dde\u73e0\u6c5f\u65b0\u57ce\u7684\u5e7f\u5dde\u5854\u591c\u666f\u80cc\u666f\u4e0b\u7ec3\u4e60\u4e66\u6cd5\u3002\u5ba4\u5185\u5f25\u6f2b\u7740"} +{"id": "4004001", "video_name": "f628ad88-430b-5593-8ea6-20a78da821e3", "text": "\u4e00\u53ea\u718a\u732b\u5728\u6811\u4e0b\u8df3\u821e\uff0c\u903c\u771f\u7edd\u5999\u7684\u6770\u4f5c\u3002"} +{"id": "8001121", "video_name": "ab30110a-adfd-505b-8a1d-e637d7a073df", "text": "s wandering around is a popular tourist attraction in India.\n\nTranslation: \u5370\u5ea6\u7684\u73ed\u52a0\u5c14\u53e4\u5821\u5728\u665a\u4e0a\u6709\u9b3c\u9b42\u51fa\u6ca1\uff0c\u6210\u4e3a\u4e86\u4e00\u4e2a\u53d7\u6b22\u8fce\u7684"} +{"id": "4002261", "video_name": "3a3ef53d-d779-5626-98a3-6137ab84f498", "text": "\u8d44\u91d1\u4ece\u94f6\u884c\u5361\u4e0a\u6389\u843d\u7684\u52a8\u753b\u3002"} +{"id": "1006447", "video_name": "7606625f-2f05-501a-b617-af21267721cd", "text": "\u4e00\u5c0a\u5e0c\u814a\u96d5\u50cf\u5728\u6d77\u5e95\u3002"} +{"id": "2003557", "video_name": "ba31c1c1-d51a-51c7-a348-5c4b15966d58", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5916\u661f\u4eba\u5bf9\u6297\u519b\u961f2023\u89c6\u9891\u3002"} +{"id": "0006436", "video_name": "2c45f71f-fe7e-5bf0-bd28-8c7f883c5787", "text": "\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4e2d\uff0c\u4e4c\u8d3c\u5728\u6e38\u6cf3\u3002"} +{"id": "0003700", "video_name": "41f20485-395f-57f5-ab07-2918c2b2b71a", "text": "1941\u5e74\u7684\u7535\u5f71\u300a\u516c\u6c11\u51ef\u6069\u300b\uff0c\u4e39\u6cfd\u5c14\u00b7\u534e\u76db\u987f\u5728\u4ed6\u7684\u6cd5\u5ead\u4e0a\u626e\u6f14\u6cd5\u5b98\uff0c\u81ea\u7136\u52a8\u4f5c\u3002"} +{"id": "7004505", "video_name": "69fe2963-63f5-5b36-989d-5d1df46e57e6", "text": "\u4e00\u4e2a\u7531\u5b57\u6bcdd\u548cx\u7ec4\u6210\u7684\u65e0\u9650\u7b26\u53f7\u9759\u6001\u56fe\u6807\u3002"} +{"id": "8003224", "video_name": "76b99bb7-45ab-526c-9349-7c1401cf9e86", "text": "\u4e00\u9897\u6d41\u661f\u4ee5\u300a\u8718\u86db\u4fa0\uff1a\u65b0\u7eaa\u5143\u300b\u7684\u98ce\u683c\u964d\u843d\u5728\u57ce\u5e02\u4e2d\u5fc3\u3002"} +{"id": "1005540", "video_name": "65ef22cd-7eec-5175-8970-2309c060657b", "text": "\u4e00\u53ea\u8272\u5f69\u7f24\u7eb7\u7684\u732b\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u84dd\u5929\u767d\u4e91\u3002"} +{"id": "7003455", "video_name": "ce3c6994-59fe-575a-8580-b3be0c1637f0", "text": "\u672a\u6765\u4e3b\u4e49\u5de8\u578b\u6218\u8230\u5728\u592a\u7a7a\u4e2d\u53d1\u5c04\u7c89\u8272\u5149\u675f\u3002"} +{"id": "3005821", "video_name": "0fd40f37-984c-5349-b0ba-177bea5530e9", "text": "\u516b\u67b6\u98de\u884c\u5668\u98de\u8d8a\u5730\u7403\uff0c\u8fdc\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "2006444", "video_name": "0cf01c7f-0c58-56c7-b753-f7c22604644e", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u4e1b\u6797\u91cc\u3002\u8428\u59c6\u628a\u624b\u6307\u8638\u8fdb\u51c9\u723d\u7684\u6c34\u91cc\u3002"} +{"id": "1004287", "video_name": "4f4c5fe3-aab7-5238-b962-8517881fdeff", "text": "\u5065\u8eab\u623f\u4e1a\u52a1\u7684\u9ad8\u6e05\u5e7f\u544a\u3002"} diff --git a/webpage/text_files/anno_rd1/user_info.json b/webpage/text_files/anno_rd1/user_info.json new file mode 100644 index 0000000000000000000000000000000000000000..0b37d061f71bea296d6de1bedd110eea7edaff7e --- /dev/null +++ b/webpage/text_files/anno_rd1/user_info.json @@ -0,0 +1,134 @@ +{ + "xuan": { + "username": "xuan", + "s_idx": 0, + "e_idx": 999, + "current_idx": 123 + }, + "haonan": { + "username": "haonan", + "s_idx": 1000, + "e_idx": 1999, + "current_idx": 0 + }, + "yuansheng": { + "username": "yuansheng", + "s_idx": 2000, + "e_idx": 2999, + "current_idx": 1 + }, + "tianle": { + "username": "tianle", + "s_idx": 3000, + "e_idx": 3999, + "current_idx": 0 + }, + "kai": { + "username": "kai", + "s_idx": 4000, + "e_idx": 4999, + "current_idx": 407 + }, + "abhranil": { + "username": "abhranil", + "s_idx": 5000, + "e_idx": 5999, + "current_idx": 0 + }, + "quy": { + "username": "quy", + "s_idx": 6000, + "e_idx": 6999, + "current_idx": 156 + }, + "ziyan": { + "username": "ziyan", + "s_idx": 7000, + "e_idx": 7999, + "current_idx": 1 + }, + "yash": { + "username": "yash", + "s_idx": 8000, + "e_idx": 8999, + "current_idx": 636 + }, + "achint": { + "username": "achint", + "s_idx": 9000, + "e_idx": 9999, + "current_idx": 896 + }, + "aaran": { + "username": "aaran", + "s_idx": 10000, + "e_idx": 10999, + "current_idx": 28 + }, + "sherman": { + "username": "sherman", + "s_idx": 11000, + "e_idx": 11999, + "current_idx": 9 + }, + "richard": { + "username": "richard", + "s_idx": 12000, + "e_idx": 12999, + "current_idx": 0 + }, + "bohan": { + "username": "bohan", + "s_idx": 13000, + "e_idx": 13999, + "current_idx": 967 + }, + "yuchen": { + "username": "yuchen", + "s_idx": 14000, + "e_idx": 14999, + "current_idx": 998 + }, + "zhiheng": { + "username": "zhiheng", + "s_idx": 15000, + "e_idx": 15999, + "current_idx": 0 + }, + "alice": { + "username": "alice", + "s_idx": 28050, + "e_idx": 28099, + "current_idx": 0 + }, + "bob": { + "username": "bob", + "s_idx": 28000, + "e_idx": 28049, + "current_idx": 8 + }, + "carol": { + "username": "carol", + "s_idx": 28100, + "e_idx": 28149, + "current_idx": 0 + }, + "dave": { + "username": "dave", + "s_idx": 28150, + "e_idx": 28199, + "current_idx": 0 + }, + "eve": { + "username": "eve", + "s_idx": 28200, + "e_idx": 28249, + "current_idx": 0 + }, + "frank": { + "username": "frank", + "s_idx": 28250, + "e_idx": 28299, + "current_idx": 0 + } +} diff --git a/webpage/text_files/problem_reported.json b/webpage/text_files/problem_reported.json new file mode 100644 index 0000000000000000000000000000000000000000..7be88189e6a3a339bd780f5419dc8ddb9e191e59 --- /dev/null +++ b/webpage/text_files/problem_reported.json @@ -0,0 +1,1912 @@ +[ + { + "username": "sherman", + "text_prompt": "high resolution cgi animation a small boy walks along a cute country path ", + "video_name": "./videos_display/2007997.mp4" + }, + { + "username": "achint", + "text_prompt": "a squirrel skateboarding through Tokyo at night ", + "video_name": "./videos_display/3006149.mp4" + }, + { + "username": "yuansheng", + "text_prompt": "\u7537\u5b69\u8d70\u4e86\u5f88\u957f\u65f6\u95f4\uff0c\u6811\u53d8\u5f97\u66f4\u9ad8\uff0c\u68ee\u6797\u53d8\u5f97\u66f4\u9ed1\u3002\u6770\u514b\u5f00\u59cb\u611f\u5230\u5bb3\u6015\uff0c\u4f46\u4ed6\u7ee7\u7eed\u524d\u8fdb\u3002", + "video_name": "./videos_display/6004441.mp4" + }, + { + "username": "yuansheng", + "text_prompt": "\u65b0\u79fb\u6c11\u548c\u6751\u6c11\u4e00\u8d77\u5408\u4f5c\u89e3\u51b3\u8c1c\u56e2\uff0c\u5e73\u606f\u7075\u9b42\u3002", + "video_name": "./videos_display/3005074.mp4" + }, + { + "username": "achint", + "text_prompt": "a Indian man doing a have deadline in gym ", + "video_name": "./videos_display/8003376.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u4e00\u4e2a\u7537\u5b69\u80cc\u7740\u4e66\u5305\uff0c\u4e00\u67b6\u7eb8\u98de\u673a\u98de\u8fc7\u5929\u7a7a\uff0c\u52a8\u753b\u98ce\u683c\u3002", + "video_name": "./videos_display/6000006.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "A brave young adventurer named Aidan decides to search for the mystery of the lost city. ", + "video_name": "./videos_display/1005830.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "flat earth with life and Sunset ", + "video_name": "./videos_display/1005614.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "\u4eba\u6f6e\u5982\u6f6e\u6c34\u822c\u6c79\u6d8c\u800c\u6765\uff0c\u4eba\u4f53\u76f8\u4e92\u78b0\u649e\u3001\u6e85\u6c34\u3001\u6e85\u8840\uff0c\u5448\u73b0\u51fa\u6781\u4e3a\u771f\u5b9e\u3001\u7cbe", + "video_name": "./videos_display/4004894.mp4" + }, + { + "username": "achint", + "text_prompt": ":man in space suite floating in space ", + "video_name": "./videos_display/1006623.mp4" + }, + { + "username": "sherman", + "text_prompt": "a beautiful camping site with trees, river, dark starry night ", + "video_name": "./videos_display/1005909.mp4" + }, + { + "username": "sherman", + "text_prompt": "a beautiful talking on Iphone 13 ", + "video_name": "./videos_display/7003248.mp4" + }, + { + "username": "sherman", + "text_prompt": "An Attractive ripped Woman is entering to the gym. Zoom in to her head. Zoom out to her body. front view of her pose. show the whole body. hdr. photorealistic ", + "video_name": "./videos_display/1006247.mp4" + }, + { + "username": "sherman", + "text_prompt": "An young child with broad, golden wings stands on the stage, delivering a passionate speech, while their beautiful wings continue to flap rapidly ", + "video_name": "./videos_display/1005514.mp4" + }, + { + "username": "achint", + "text_prompt": "footprints appearing on a beach at sunset ", + "video_name": "./videos_display/1006478.mp4" + }, + { + "username": "achint", + "text_prompt": "Many dollars Message: Imalay (Font: MODERN) ", + "video_name": "./videos_display/8003904.mp4" + }, + { + "username": "sherman", + "text_prompt": "an archon dancing to electronic music in a crowded nightclub ", + "video_name": "./videos_display/3006953.mp4" + }, + { + "username": "sherman", + "text_prompt": "a train running on the river A young man plows a skateboard along a train ", + "video_name": "./videos_display/4004928.mp4" + }, + { + "username": "xuan", + "text_prompt": "giant skeleton Pharoah made of chrome circuitboards surrounded by smoke made of glass, super 8mm film footage, zoom and pan ", + "video_name": "./videos_display/3006567.mp4" + }, + { + "username": "sherman", + "text_prompt": "nightmare for you to do this on any smaller scale computer you are using for the most part of the map glue the key to the smallest amount possible in the sun and the same way you that it the same most of your employees are in not having only one has long blond to use in the shadows sun times in and out of your employees who work ", + "video_name": "./videos_display/8001095.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u4e24\u4e2a\u5e74\u8f7b\u5973\u5b50\u5728\u670d\u88c5\u5e97\u91cc\u3002 \r\n\r\nSource sentence: Can I have a glass of water, please? \r\n\u8bf7\u7ed9\u6211\u4e00\u676f\u6c34\uff0c\u597d\u5417\uff1f", + "video_name": "./videos_display/1005721.mp4" + }, + { + "username": "sherman", + "text_prompt": "a futuristic space station that uses nanobots to shapeshift ", + "video_name": "./videos_display/1006137.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u57ce\u5e02\u7684\u8857\u666f \u9003\u79bb (\u5b57\u4f53\uff1a\u73b0\u4ee3)", + "video_name": "./videos_display/6000003.mp4" + }, + { + "username": "yuchen", + "text_prompt": "VB.Net\u52a8\u6f2b\u98ce\u683c\u7684\u5e38\u91cf\u548c\u53d8\u91cf\u89c6\u9891\u3002", + "video_name": "./videos_display/1006145.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u4e16\u754c\u4e0a\u6709\u975e\u51e1\u7684\u4eba\u624d\uff0c\u4e5f\u6709\u975e\u51e1\u7684\u4eba\u624d\u53d1\u6398\u8005\u3002\u975e\u51e1\u7684\u4eba\u624d\u6216\u8bb8\u4e0d\u5c11\u89c1\uff0c\u4f46\u662f\u975e\u51e1\u7684\u4eba\u624d", + "video_name": "./videos_display/1006686.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u7537\u5b50\u5c06\u82b1\u6735\u629b\u5411\u7a7a\u4e2d\u7684\u5b50\u5f39\u65f6\u95f4\u7167\u7247\uff0c\u76f8\u673a\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002", + "video_name": "./videos_display/1006836.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u574e\u7eb3\u8fbe\u6f14\u5458\u666e\u5c3c\u65af\u00b7\u62c9\u6770\u5e93\u9a6c\u5c14\u7ad9\u5728\u5929\u5802\u91cc\u3002", + "video_name": "./videos_display/1006459.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u3001\u5965\u5df4\u9a6c\u548c\u7ea6\u7ff0\u00b7\u9a6c\u5c14\u79d1\u7ef4\u5947\u5728\u673a\u68b0\u4eba\u8eab\u4f53\u4e2d\uff0c\u5e26\u7740", + "video_name": "./videos_display/1006656.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u5feb\u4e50\u7684\u9e1f\u513f\u8eba\u5728\u6c34\u9762\u4e0a\u3002", + "video_name": "./videos_display/1006673.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u5728\u4e00\u8f6e\u6ee1\u6708\u7684\u65e5\u5b50\u91cc\uff0c\u6708\u4eae\u7f13\u7f13\u53d8\u6210\u4e86\u7ea2\u8272\u3002", + "video_name": "./videos_display/1005987.mp4" + }, + { + "username": "yuchen", + "text_prompt": "\u5728\u4e00\u4e2a\u96e8\u96fe\u7b3c\u7f69\u7684\u672a\u6765\u57ce\u5e02\u4e2d\uff0c\u955c\u5934\u5f80\u540e\u62c9\uff0c\u5c55\u73b0\u51fa\u4eba\u4eec\u884c\u8d70\u548c\u8239\u53ea\u98de\u884c\u7684\u7e41\u5fd9\u573a\u666f\u3002\u6b64", + "video_name": "./videos_display/1006819.mp4" + }, + { + "username": "bohan", + "text_prompt": "make logo animation logi name is illusory shade ", + "video_name": "./videos_display/2004389.mp4" + }, + { + "username": "bohan", + "text_prompt": "harry potter playing soccer, giant octopus dragon, smiling birds ", + "video_name": "./videos_display/4002738.mp4" + }, + { + "username": "bohan", + "text_prompt": "The colours flow outwards like waves of water. Message: 1 Attachment ", + "video_name": "./videos_display/7002972.mp4" + }, + { + "username": "bohan", + "text_prompt": "empty trainstation, leaves, skin, eyes, road music video ", + "video_name": "./videos_display/3003119.mp4" + }, + { + "username": "abhranil", + "text_prompt": "starting afresh or breaking free from unhealthy habits or obsessions, akin to wiping away the muddiness and embracing a clean, unburdened existence. ", + "video_name": "./videos_display/3006459.mp4" + }, + { + "username": "abhranil", + "text_prompt": "cinematic Story In the heart of the vibrant plains of Kenya, under the vast African sky, a story of courage, wisdom, and adventure unfolded. It was a story that would forever change the life of a young indian boy named Emmanuel, also known as Rohan, an Indian name given to him by his parents. ", + "video_name": "./videos_display/3006157.mp4" + }, + { + "username": "abhranil", + "text_prompt": "drone shot of a massive nasa weapon in a nasa station ", + "video_name": "./videos_display/0003578.mp4" + }, + { + "username": "bohan", + "text_prompt": "animation black hoodie guy dancing in party with her girlfriend winter season ", + "video_name": "./videos_display/1003634.mp4" + }, + { + "username": "bohan", + "text_prompt": "Faces will not be move by you ", + "video_name": "./videos_display/4002396.mp4" + }, + { + "username": "bohan", + "text_prompt": "Even those who live up to that time will be replaced with a new, incorruptible body.JESUS second coming ", + "video_name": "./videos_display/6003786.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "Make more designs with the same style from this image Message: 1 Attachment ", + "video_name": "./videos_display/7004216.mp4" + }, + { + "username": "bohan", + "text_prompt": "can you extend the video to 10 seconds and add more movement and particles ", + "video_name": "./videos_display/2006557.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "\u4e00\u53ea4k\u5206\u8fa8\u7387\u7684\u52a8\u753b\u732b\u5728\u4e1b\u6797\u4e2d\u5954\u8dd1\u3002", + "video_name": "./videos_display/7000001.mp4" + }, + { + "username": "yash", + "text_prompt": "generation generation a woman carrying shopping bags in a city, a digital rendering by Ancell Stronach, trending on shutterstock, modern european ink painting, quantum wavetracing, stock photo, stockphoto ", + "video_name": "./videos_display/6002419.mp4" + }, + { + "username": "abhranil", + "text_prompt": "Josh Kelly seated on the lava throne, Anne Hathaway and eated on the glass throne ", + "video_name": "./videos_display/5001525.mp4" + }, + { + "username": "abhranil", + "text_prompt": "3 people hang in prison chained, time 0 A.D., camera in front, faces invisible ", + "video_name": "./videos_display/3005971.mp4" + }, + { + "username": "yash", + "text_prompt": "add Ghost Sou Message: 1 Attachment ", + "video_name": "./videos_display/3005427.mp4" + }, + { + "username": "abhranil", + "text_prompt": "a nuclear war devastating Brasilia, brazil ", + "video_name": "./videos_display/3003703.mp4" + }, + { + "username": "abhranil", + "text_prompt": "Down Syndrome Superman drops a woman to her death while smiling ", + "video_name": "./videos_display/6002959.mp4" + }, + { + "username": "abhranil", + "text_prompt": "the people are dead due to tsunami ", + "video_name": "./videos_display/6002617.mp4" + }, + { + "username": "abhranil", + "text_prompt": "UI interface for a Dark Web dating app ", + "video_name": "./videos_display/4002341.mp4" + }, + { + "username": "abhranil", + "text_prompt": "add at least 10 poeple to the background Message: 1 Attachment ", + "video_name": "./videos_display/8001137.mp4" + }, + { + "username": "bohan", + "text_prompt": "Young Bruce Lee, taking a taxi, prompt ID:873504 ", + "video_name": "./videos_display/3006065.mp4" + }, + { + "username": "bohan", + "text_prompt": "The dollhouse was a large room filled with crafts and decorations, a girl is looking at the camera( with a scared face, looking around in fear) in that room Message: 1 Attachment ", + "video_name": "./videos_display/2006947.mp4" + }, + { + "username": "bohan", + "text_prompt": "The mermaid was the epitome of enchantment, entrancing all who gazed upon her with her elegant form. ", + "video_name": "./videos_display/3005302.mp4" + }, + { + "username": "xuan", + "text_prompt": "fresh fruits Message: GrowCode (Font: MODERN) ", + "video_name": "./videos_display/1004008.mp4" + }, + { + "username": "abhranil", + "text_prompt": "image of a burning man in a fire, cartoon style, realistic, full body, day light ", + "video_name": "./videos_display/3003707.mp4" + }, + { + "username": "abhranil", + "text_prompt": "Children in a protest with palestinian flags, some crying some angry. Protesters with Free Palestine flags ", + "video_name": "./videos_display/1003942.mp4" + }, + { + "username": "abhranil", + "text_prompt": "She swims in a transparent pool without a thing ", + "video_name": "./videos_display/3006441.mp4" + }, + { + "username": "abhranil", + "text_prompt": "a woman with tattoos lying on her bed, in the style of lascivious forms, net art, transparent light purple and light brown, steelpunk, forms, sandalpunk, realist detail. detailed anatomy, Hyperrealism,Concept art,Magic realism,Color Grading,Photo shooting,Dreamlike,Depth of Field,DOF, Tilt Blur,Gamma,White Balance,Dark,Light Mode,Dark Mode,High Contrast,5D,Multiverse,64k,Super Resolution, ", + "video_name": "./videos_display/4002608.mp4" + }, + { + "username": "achint", + "text_prompt": "Harry Potter character, the face should be more similar to the face from the photo Message: 1 Attachment ", + "video_name": "./videos_display/2007763.mp4" + }, + { + "username": "haonan", + "text_prompt": "robot running on a trck field ", + "video_name": "./videos_display/0004822.mp4" + }, + { + "username": "aaran", + "text_prompt": "purpose, healing purpose, acension, spiritual, motion, 8k ", + "video_name": "./videos_display/3006323.mp4" + }, + { + "username": "haonan", + "text_prompt": "In her handwritten note, she poured out her desire for a furry companion, specifically an orange cat to be her festive and loyal friend. ", + "video_name": "./videos_display/4002192.mp4" + }, + { + "username": "haonan", + "text_prompt": "Green and ged colours splash on white papper ", + "video_name": "./videos_display/2005441.mp4" + }, + { + "username": "abhranil", + "text_prompt": "attractive young black teen girls wearing bikinis dancing at a pool party from the 1970s ", + "video_name": "./videos_display/0006238.mp4" + }, + { + "username": "aaran", + "text_prompt": "in rainforest Message: Red (Font: MODERN) ", + "video_name": "./videos_display/8001649.mp4" + }, + { + "username": "haonan", + "text_prompt": "The ice holds a story, and each core is a chapter waiting to be read. ", + "video_name": "./videos_display/2007323.mp4" + }, + { + "username": "bohan", + "text_prompt": "cinematic image of a fish riding a bicycle ", + "video_name": "./videos_display/1003176.mp4" + }, + { + "username": "abhranil", + "text_prompt": "I want to make this scene appear magnificent. ", + "video_name": "./videos_display/0006759.mp4" + }, + { + "username": "abhranil", + "text_prompt": "My name is Legion: for we are many ", + "video_name": "./videos_display/2006351.mp4" + }, + { + "username": "aaran", + "text_prompt": "Large office,a lot of desk ,compture ,animal wear suit, ", + "video_name": "./videos_display/7003496.mp4" + }, + { + "username": "aaran", + "text_prompt": "Paint by numbers morning sky Looks so phony ", + "video_name": "./videos_display/4002288.mp4" + }, + { + "username": "aaran", + "text_prompt": "singing Head floating in glass box Mind Worm with wires diodes Alfred Stieglitz grainy black and white 1900s ", + "video_name": "./videos_display/0005369.mp4" + }, + { + "username": "aaran", + "text_prompt": "My poor heart, Amazing photo of those mysterious dendrites that grow interconnected wrapped in fleeting neon light and hallucinating in my brain full of ghosts that cover my sadness my abandoned heart ", + "video_name": "./videos_display/7004061.mp4" + }, + { + "username": "aaran", + "text_prompt": "A corgi gallops down the road on a motorcycle ", + "video_name": "./videos_display/2007459.mp4" + }, + { + "username": "aaran", + "text_prompt": "make her move, fire and smoke is blowing, bike running ", + "video_name": "./videos_display/4003609.mp4" + }, + { + "username": "aaran", + "text_prompt": "create a real image of glandular trichomes of papermint under a microscope realistic ", + "video_name": "./videos_display/5001788.mp4" + }, + { + "username": "haonan", + "text_prompt": "He traverses mysterious landscapes, crosses dangerous bridges and solves puzzles posed by mythical creatures. On th eway ", + "video_name": "./videos_display/0005704.mp4" + }, + { + "username": "haonan", + "text_prompt": "in this aquatic escapade, Dolphin found a new tradition at Purple Mountain, where laughter, cranberry antics, and mashed potato mountains made for a Thanksgiving like no other, the video should be realistic ", + "video_name": "./videos_display/5001559.mp4" + }, + { + "username": "haonan", + "text_prompt": "The atmosphere here was very soul touching and everything there was dedicated to every creature. ", + "video_name": "./videos_display/2007178.mp4" + }, + { + "username": "haonan", + "text_prompt": "all of the other reindeer, used to laugh and call him names ", + "video_name": "./videos_display/6003271.mp4" + }, + { + "username": "haonan", + "text_prompt": "a girl turn of her underwear ", + "video_name": "./videos_display/7002476.mp4" + }, + { + "username": "haonan", + "text_prompt": "\u751f\u6210\u4e00\u4e2a\u9b54\u6cd5\u53a8\u623f\u7684\u56fe\u50cf\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u6f02\u6d6e\u7684\u98df\u6750\uff0c\u5982\u9762\u7c89\u3001\u756a\u8304\u548c\u5976\u916a\uff0c\u8425\u9020\u51fa\u4e00\u4e2a", + "video_name": "./videos_display/0005436.mp4" + }, + { + "username": "haonan", + "text_prompt": "GThe girl and her boyfriend face to face.TT ", + "video_name": "./videos_display/7004231.mp4" + }, + { + "username": "haonan", + "text_prompt": "Onry\u014d no Kage (Shadow of the Vengeful Spirit) Message: 1 Attachment ", + "video_name": "./videos_display/2007704.mp4" + }, + { + "username": "haonan", + "text_prompt": "in with cloth Message: 1 Attachment ", + "video_name": "./videos_display/8003545.mp4" + }, + { + "username": "haonan", + "text_prompt": "heaven, sad, peaceful Message: SYRIA (Font: MODERN) ", + "video_name": "./videos_display/2007637.mp4" + }, + { + "username": "haonan", + "text_prompt": "a black cat is running on a bed in a bedroom, outside the bedroom is a river running from sky, the rive is full of brains, the famous football player Marko Arnautovi\u0107 is dancing ballet in this river. ", + "video_name": "./videos_display/3003277.mp4" + }, + { + "username": "haonan", + "text_prompt": "rick with the queen Message: 1 Attachment ", + "video_name": "./videos_display/2007599.mp4" + }, + { + "username": "haonan", + "text_prompt": "Very formally looking at you Message: 1 Attachment ", + "video_name": "./videos_display/6002881.mp4" + }, + { + "username": "haonan", + "text_prompt": "bear shaking money Message: 1 Attachment ", + "video_name": "./videos_display/1003512.mp4" + }, + { + "username": "haonan", + "text_prompt": "his robe blowing in the wind Message: 1 Attachment ", + "video_name": "./videos_display/0004899.mp4" + }, + { + "username": "haonan", + "text_prompt": "tal to me mark wallat friseure Message: 1 Attachment ", + "video_name": "./videos_display/3005167.mp4" + }, + { + "username": "haonan", + "text_prompt": "People inside a house make a pile of wood near the door of the room Message: 1 Attachment ", + "video_name": "./videos_display/6002229.mp4" + }, + { + "username": "haonan", + "text_prompt": "do not modify the original image, ocean moving, seaguls moving ", + "video_name": "./videos_display/1003280.mp4" + }, + { + "username": "yash", + "text_prompt": "smiles and moves money Message: 1 Attachment ", + "video_name": "./videos_display/3003912.mp4" + }, + { + "username": "yash", + "text_prompt": "PlayStation 2 boot screen NEW SHOPPE BLESS THIS PLEX ambient lush dark crisp complex ", + "video_name": "./videos_display/7002610.mp4" + }, + { + "username": "achint", + "text_prompt": "cork popping out of a champagne bottle, cartoon ", + "video_name": "./videos_display/6000008.mp4" + }, + { + "username": "richard", + "text_prompt": "When the boy laughed seeing their fear, the villagers got angry. Some got very annoyed ", + "video_name": "./videos_display/1006726.mp4" + }, + { + "username": "haonan", + "text_prompt": "Watermelon flies into the screen Message: 1 Attachment ", + "video_name": "./videos_display/8002449.mp4" + }, + { + "username": "haonan", + "text_prompt": "A big sandstorm in the sahara desert Message: Digital Brain (Font: MODERN) ", + "video_name": "./videos_display/4004580.mp4" + }, + { + "username": "haonan", + "text_prompt": "Spiderman is supposed to move Message: 1 Attachment ", + "video_name": "./videos_display/2006415.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Finn( a dog) is having holiday with the ", + "video_name": "./videos_display/4004057.mp4" + }, + { + "username": "haonan", + "text_prompt": "Generate pictures Message: religious beliefs (Font: MODERN) ", + "video_name": "./videos_display/6004537.mp4" + }, + { + "username": "haonan", + "text_prompt": "a newborn fledgling sparrow came into the world Message: 1 Attachment ", + "video_name": "./videos_display/7002165.mp4" + }, + { + "username": "haonan", + "text_prompt": "abstract city and beautiful woman undress ", + "video_name": "./videos_display/8001199.mp4" + }, + { + "username": "haonan", + "text_prompt": "city skyline by the sea in to night view in sky with stars and paradox Message: Berna RG (Font: MODERN) ", + "video_name": "./videos_display/2007230.mp4" + }, + { + "username": "haonan", + "text_prompt": "beautiful city full of skyscrapers Message: TE AMO (Font: MODERN) ", + "video_name": "./videos_display/2005325.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a close up of man ,side view,he turning to the right side,brave,man,olive green color robe,white clothes ", + "video_name": "./videos_display/1004835.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Twinkling light surrounds the product Message: 1 Attachment ", + "video_name": "./videos_display/6002768.mp4" + }, + { + "username": "ziyan", + "text_prompt": "safari field full of shrubs Message: 1 Attachment ", + "video_name": "./videos_display/7002290.mp4" + }, + { + "username": "ziyan", + "text_prompt": "realistic mountains, fog, sunrise, snow, school of birds, man hiking, waterfall W, waterfall Message: 1 Attachment ", + "video_name": "./videos_display/0006723.mp4" + }, + { + "username": "yash", + "text_prompt": "girl Portrait cinema beautiful light drawing ", + "video_name": "./videos_display/7003468.mp4" + }, + { + "username": "ziyan", + "text_prompt": "As they swam through the dark ocean, Vampire squid Vlad taught lanternfish named Lucy about the importance of adaptation and understanding. He explained that every creature, no matter how different, played a crucial role in maintaining the balance of the underwater ecosystem. ", + "video_name": "./videos_display/3006590.mp4" + }, + { + "username": "ziyan", + "text_prompt": "add some bubble Message: 1 Attachment ", + "video_name": "./videos_display/7002649.mp4" + }, + { + "username": "ziyan", + "text_prompt": "post apocalyptic chicago skyline as the sun sets ", + "video_name": "./videos_display/4002562.mp4" + }, + { + "username": "richard", + "text_prompt": "6. Explore the profound consequences and reflections on societal dynamics. ", + "video_name": "./videos_display/3004792.mp4" + }, + { + "username": "richard", + "text_prompt": "man with skin made of cheese ", + "video_name": "./videos_display/3003315.mp4" + }, + { + "username": "ziyan", + "text_prompt": "make a spear go from the top to bottom of the football Message: 1 Attachment ", + "video_name": "./videos_display/1003933.mp4" + }, + { + "username": "ziyan", + "text_prompt": "bottle of alcohol on a tropical island Message: H (Font: MODERN) ", + "video_name": "./videos_display/4002090.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a deposit where a girl full of cherries comes out desperately knocking on the door, with screams and scratches coming out of this same, then the chairs are moved from outside in a school ", + "video_name": "./videos_display/2005949.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Be happy, talk, wink Message: 1 Attachment ", + "video_name": "./videos_display/3006095.mp4" + }, + { + "username": "ziyan", + "text_prompt": "plates of kebabs and dips Message: DESIRE (Font: MODERN) ", + "video_name": "./videos_display/2006431.mp4" + }, + { + "username": "bohan", + "text_prompt": "can you extend the video to 10 seconds and add more movement and particles ", + "video_name": "./videos_display/2006557.mp4" + }, + { + "username": "bohan", + "text_prompt": "18 years old girl without west, without dress ", + "video_name": "./videos_display/3003522.mp4" + }, + { + "username": "bohan", + "text_prompt": "inspired by Monty Python\u2019s stop motion animation style, make a 20 second video of a beaver sailing to King\u2019s Landing with three dragons and a white wig similar to the won worn by Emilia Clarke as Danaeyrs Targaryens in Game of Thrones. A raccoon serving Cinnabons can be seen next to the beaver. ", + "video_name": "./videos_display/6000009.mp4" + }, + { + "username": "bohan", + "text_prompt": "convert this image to ancient monument with night sky and moon shining Message: 1 Attachment ", + "video_name": "./videos_display/3005881.mp4" + }, + { + "username": "bohan", + "text_prompt": "AND THE TWO RETURN TO THE HOUSE AND SLEEP THE CAT AND THE FISH ", + "video_name": "./videos_display/5001176.mp4" + }, + { + "username": "bohan", + "text_prompt": "cartoon joe biden eating green ice cream in Japan ", + "video_name": "./videos_display/2003987.mp4" + }, + { + "username": "bohan", + "text_prompt": "Ensure the music enhances the emotional impact of the story. ", + "video_name": "./videos_display/3003781.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "\u8d85\u903c\u771f\u7684\u6d88\u9632\u8f66\uff0c\u5728\u767d\u5929\u6251\u706d\u706b\u707e\u3002", + "video_name": "./videos_display/7003027.mp4" + }, + { + "username": "bohan", + "text_prompt": "All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the copyright owner. ", + "video_name": "./videos_display/7004631.mp4" + }, + { + "username": "bohan", + "text_prompt": "edit this video , cinematic sound , cinematic effect , realistic , ultra 4k ", + "video_name": "./videos_display/2004318.mp4" + }, + { + "username": "haonan", + "text_prompt": "show this image in ai Avatar ", + "video_name": "./videos_display/8002777.mp4" + }, + { + "username": "haonan", + "text_prompt": "busy tokyo Japan street, neon lights evening setting Message: 1 Attachment ", + "video_name": "./videos_display/3004825.mp4" + }, + { + "username": "haonan", + "text_prompt": "rick with the queen Message: 1 Attachment ", + "video_name": "./videos_display/4002782.mp4" + }, + { + "username": "haonan", + "text_prompt": "a beaver Message: brad eats nuts (Font: MODERN) ", + "video_name": "./videos_display/8001007.mp4" + }, + { + "username": "ziyan", + "text_prompt": "The corn field exploded Message: 1 Attachment ", + "video_name": "./videos_display/2007721.mp4" + }, + { + "username": "ziyan", + "text_prompt": "zoom in the middle school part Message: 1 Attachment ", + "video_name": "./videos_display/2003193.mp4" + }, + { + "username": "haonan", + "text_prompt": "nature tree, cenital view, zenithal view, iguazu cataratas Message: 1 Attachment ", + "video_name": "./videos_display/6002401.mp4" + }, + { + "username": "haonan", + "text_prompt": "black background, cinematic lighting, mineral stone quarry, hyper realistic style, no warping, extreme definition, 8k motion 2, seed10829244663982770361 ", + "video_name": "./videos_display/1004770.mp4" + }, + { + "username": "ziyan", + "text_prompt": ": Show a boutique owner applying a sticker within Visa Logo and Olympics Logo on their store window , no more other characters, just Visa and Olympics Message: 1 Attachment ", + "video_name": "./videos_display/4002442.mp4" + }, + { + "username": "ziyan", + "text_prompt": "an unsafe and poor city Message: Candelaria (Font: MODERN) ", + "video_name": "./videos_display/7004423.mp4" + }, + { + "username": "ziyan", + "text_prompt": "start and moon on the sky ", + "video_name": "./videos_display/3004798.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Little hedgehog in the mist \u52a8\u4f5c:look for food ", + "video_name": "./videos_display/6004078.mp4" + }, + { + "username": "ziyan", + "text_prompt": "the road to the village, anime art vehicle concept art Negative: mara jade skywalker, metallic skeleton, carved marble statue, black sclera! eyes, futuristic glossy latex suit, die antwoord style wear, darksynth, kitsch, rave makeup, face tattoos, tribal tattoos, prosthetic makeup, tattooed face ", + "video_name": "./videos_display/6002485.mp4" + }, + { + "username": "ziyan", + "text_prompt": "movement of face and a wind effect ", + "video_name": "./videos_display/4002502.mp4" + }, + { + "username": "ziyan", + "text_prompt": "this image of a mage, with blue and white lightning shooting through the sky Message: 1 Attachment ", + "video_name": "./videos_display/1005386.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a woman, her hair and the waves move by the wind, the camera zooms in, gets closer, ending in her eyes Message: 1 Attachment ", + "video_name": "./videos_display/7003022.mp4" + }, + { + "username": "abhranil", + "text_prompt": "cinematic Story In the heart of the vibrant plains of Kenya, under the vast African sky, a story of courage, wisdom, and adventure unfolded. It was a story that would forever change the life of a young indian boy named Emmanuel, also known as Rohan, an Indian name given to him by his parents. ", + "video_name": "./videos_display/3006157.mp4" + }, + { + "username": "ziyan", + "text_prompt": "graffiti wall Message: ArtBrandNow (Font: BAUHAUS) ", + "video_name": "./videos_display/7003693.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a beautiful waterfall and big trees Message: peque (Font: MODERN) ", + "video_name": "./videos_display/2005167.mp4" + }, + { + "username": "ziyan", + "text_prompt": "first person view of a person eating a letter soup with a golden spoon from an antique bowl ", + "video_name": "./videos_display/1004679.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Japanese students Message: live and learn (Font: MODERN) ", + "video_name": "./videos_display/0005177.mp4" + }, + { + "username": "ziyan", + "text_prompt": "three dors clothing Message: doors (Font: MODERN) ", + "video_name": "./videos_display/0004498.mp4" + }, + { + "username": "aaran", + "text_prompt": "guy studying in the table taping on the keybord ", + "video_name": "./videos_display/1004243.mp4" + }, + { + "username": "bohan", + "text_prompt": "Generate a better product video based on the original video ", + "video_name": "./videos_display/6003244.mp4" + }, + { + "username": "achint", + "text_prompt": "pls made erase subtitle n make it to hd Message: 1 Attachment ", + "video_name": "./videos_display/6003790.mp4" + }, + { + "username": "zhiheng", + "text_prompt": "\u732b\u7528\u5634\u5507\u540c\u6b65\u5531\u6b4c\u3002\u7559\u8a00\uff1a1\u4e2a\u9644\u4ef6\u3002", + "video_name": "./videos_display/7003293.mp4" + }, + { + "username": "aaran", + "text_prompt": "scarlett johansson as blackwidow in action pose Infant fly ", + "video_name": "./videos_display/8003305.mp4" + }, + { + "username": "aaran", + "text_prompt": ": description of the video you want to create parameter ", + "video_name": "./videos_display/3003505.mp4" + }, + { + "username": "aaran", + "text_prompt": "realistic photo, two sexy alien women dancing in a galaxy nightclub ", + "video_name": "./videos_display/4002828.mp4" + }, + { + "username": "aaran", + "text_prompt": "video where a white Camry rides from the number m001pp95 ", + "video_name": "./videos_display/1004568.mp4" + }, + { + "username": "aaran", + "text_prompt": "water riwer lake mirror attachmant Message: water (Font: MODERN) ", + "video_name": "./videos_display/2003859.mp4" + }, + { + "username": "abhranil", + "text_prompt": "3 people hang in prison chained, time 0 A.D., camera in front, faces invisible ", + "video_name": "./videos_display/3005971.mp4" + }, + { + "username": "aaran", + "text_prompt": "dystopian world with floating space and aliens In style of basquiat ", + "video_name": "./videos_display/2007350.mp4" + }, + { + "username": "aaran", + "text_prompt": "create the animation as described in picture Message: 1 Attachment ", + "video_name": "./videos_display/4002534.mp4" + }, + { + "username": "aaran", + "text_prompt": "girl face is loking around the ligt is glowing Message: 1 Attachment ", + "video_name": "./videos_display/2006734.mp4" + }, + { + "username": "aaran", + "text_prompt": "Pan shot ,Speech state Message: 1 Attachment ", + "video_name": "./videos_display/8002523.mp4" + }, + { + "username": "aaran", + "text_prompt": "female voice in Tamil .hi Amma puthu phone number save paniko. ", + "video_name": "./videos_display/6004787.mp4" + }, + { + "username": "aaran", + "text_prompt": "I want you to put that polo shirt on Donald trump. Message: 1 Attachment ", + "video_name": "./videos_display/6004238.mp4" + }, + { + "username": "aaran", + "text_prompt": "Holographic Performance: Generate a description of a music performance where holographic visuals synchronize with the beat, featuring futuristic landscapes and dynamic geometric shapes. ", + "video_name": "./videos_display/2005705.mp4" + }, + { + "username": "aaran", + "text_prompt": "portret of snowman and oirtret of snowwoman on the wall ", + "video_name": "./videos_display/2007960.mp4" + }, + { + "username": "aaran", + "text_prompt": "Beautiful woman walking among the stars, clouds floating in the sky in the background, bright smoke rising, armor shining, golden light expanding from her head, hair flowing in the wind: 1 Attachments ", + "video_name": "./videos_display/7002924.mp4" + }, + { + "username": "aaran", + "text_prompt": "Statue of Liberty Message: 1 Attachment ", + "video_name": "./videos_display/0004660.mp4" + }, + { + "username": "ziyan", + "text_prompt": "semone eat gum from eyes 5 second ", + "video_name": "./videos_display/8001601.mp4" + }, + { + "username": "ziyan", + "text_prompt": "shopping corridor Message: Halloween (Font: MODERN)", + "video_name": "./videos_display/2004395.mp4" + }, + { + "username": "aaran", + "text_prompt": ": four 3d digital numbers which comes from diff animals ", + "video_name": "./videos_display/4004080.mp4" + }, + { + "username": "aaran", + "text_prompt": "what prompt would you ask yourself to create? ", + "video_name": "./videos_display/5001803.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Create a 157 second video with my picture, it should be different scenes in the forest. ", + "video_name": "./videos_display/4003777.mp4" + }, + { + "username": "aaran", + "text_prompt": "create a video of the data science and AI degree and the use of tools such as MySQL, Python, PyCharm, Visual Studio Code, ChatGPT, Xampp, Anaconda, Google Colaboratory, Tableau ", + "video_name": "./videos_display/3005488.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Movement of people Message: Movement of people (Font: MODERN) ", + "video_name": "./videos_display/3006456.mp4" + }, + { + "username": "ziyan", + "text_prompt": "an assortment of medieval weapons and armor, surrounding a trench in the dirt. Message: Nifty Craft (Font: MODERN) ", + "video_name": "./videos_display/2005394.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Infertility as defined by the World Health Organization (WHO) is a condition in which a couple cannot become pregnant after one year of living together, having regular intercourse and not using any contraceptive methods. If the wife is over 35 years old, this time is shortened to only 6 months. ", + "video_name": "./videos_display/6003677.mp4" + }, + { + "username": "achint", + "text_prompt": "Multiplication Message: Best shop 4 U (Font: MODERN) ", + "video_name": "./videos_display/6004250.mp4" + }, + { + "username": "achint", + "text_prompt": "Female supermodel in the forest at sunset AR 16:9 ", + "video_name": "./videos_display/1004701.mp4" + }, + { + "username": "xuan", + "text_prompt": "talkiing to someone and watching the lcds Message: 1 Attachment ", + "video_name": "./videos_display/3005723.mp4" + }, + { + "username": "xuan", + "text_prompt": "old style drawing vintage city Message: 1 Attachment ", + "video_name": "./videos_display/3005479.mp4" + }, + { + "username": "ziyan", + "text_prompt": "futuristic motion of the girl and her background Message: 1 Attachment ", + "video_name": "./videos_display/2006286.mp4" + }, + { + "username": "ziyan", + "text_prompt": "create a variety of images based on this image, with the same character and with the same tattoos ", + "video_name": "./videos_display/7002954.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Simulate the smiling face of a child Message: 1 Attachment ", + "video_name": "./videos_display/1005513.mp4" + }, + { + "username": "ziyan", + "text_prompt": "smooth fps 8k Message: 1 Attachment ", + "video_name": "./videos_display/7003921.mp4" + }, + { + "username": "ziyan", + "text_prompt": "make a big smile and say yes which the head Message: 1 Attachment ", + "video_name": "./videos_display/2006983.mp4" + }, + { + "username": "ziyan", + "text_prompt": "George Bush flying a jet plane into the World Trade center twin towers Message: 1 Attachment ", + "video_name": "./videos_display/6003308.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Gem Cave Queen with Malachite Tiara appears magical in 3 different fashion styles, glitter ", + "video_name": "./videos_display/6000004.mp4" + }, + { + "username": "ziyan", + "text_prompt": "futuristic city, only using red, black, white and grey Message: 1 Attachment ", + "video_name": "./videos_display/2007209.mp4" + }, + { + "username": "aaran", + "text_prompt": "Zoom out three meters from the camera Message: 1 Attachment ", + "video_name": "./videos_display/2003378.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Video editing stages in 4 cards fanned out ", + "video_name": "./videos_display/0003090.mp4" + }, + { + "username": "ziyan", + "text_prompt": "sea with lot of boats Message: 1 Attachment ", + "video_name": "./videos_display/8003995.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Pure Love and Emotion Message: Liebe (Font: MODERN) ", + "video_name": "./videos_display/4002004.mp4" + }, + { + "username": "ziyan", + "text_prompt": "cute dog cartoon walking Message: how to (Font: MODERN) ", + "video_name": "./videos_display/4002600.mp4" + }, + { + "username": "ziyan", + "text_prompt": "studemts are working with Cyber \u200b\u200bsecurity ", + "video_name": "./videos_display/3006863.mp4" + }, + { + "username": "aaran", + "text_prompt": "old man looking over picture while jumping in the distance Message: 1 Attachment ", + "video_name": "./videos_display/7003554.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Trains seen from above Message: Mario (Font: MODERN) ", + "video_name": "./videos_display/4002949.mp4" + }, + { + "username": "ziyan", + "text_prompt": "The Funeral of US President Bide, showcasing photos of Biden ", + "video_name": "./videos_display/0004390.mp4" + }, + { + "username": "ziyan", + "text_prompt": "hands forming heart and when the fingers connect they light up ", + "video_name": "./videos_display/0006406.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a DeLirean car returning to tbe future intro flames ", + "video_name": "./videos_display/2006815.mp4" + }, + { + "username": "ziyan", + "text_prompt": "zenith, boiling coffee, macro shot, slow motion ", + "video_name": "./videos_display/5001055.mp4" + }, + { + "username": "ziyan", + "text_prompt": "plus sized white model in crochetwear ", + "video_name": "./videos_display/3004781.mp4" + }, + { + "username": "ziyan", + "text_prompt": "john selection richylux paint from the paint store ", + "video_name": "./videos_display/2006001.mp4" + }, + { + "username": "ziyan", + "text_prompt": "the villain, the quintessential bad guy, the big boss, the last level, final boss ", + "video_name": "./videos_display/3006495.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Will Alex save his world, or will he become a victim of his own animated nightmares? The answer lies in the whispers that echo through the pixels of his digital reality. ", + "video_name": "./videos_display/7002758.mp4" + }, + { + "username": "ziyan", + "text_prompt": "she use phone and birds fly around Message: 1 Attachment ", + "video_name": "./videos_display/1003065.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A colourful sketch of men in his 20s holding bag in his hand front view, behind right left view ", + "video_name": "./videos_display/0004084.mp4" + }, + { + "username": "ziyan", + "text_prompt": "fixed camera in the style of Pop Art animation close up cinematic colourful polka dot non binary Lee Bowery style laughing one person solo looking at camera alone stylish flat light front lit well lit plain background ", + "video_name": "./videos_display/5001203.mp4" + }, + { + "username": "ziyan", + "text_prompt": "computer screen Message: CODEBREAKER ( Font MODERN) ", + "video_name": "./videos_display/8001645.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A woman (holding and looking at a skull: 1.9), the skull in her hand, the woman is tall, dressing like a medic, with a white coat, long black hair with part of it (behind the ear: 1.9), eyes lime green semi closed, a sad face, heavy makeup, eye shadows, red lipstick, pale skin, in the dark, light above her, sit in a chair, in a doctor medic office, ", + "video_name": "./videos_display/8003139.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A detailed map of bliss, with an intricate design that includes elements of nature representing the virtues, forests, rivers and mountains inspired by faith, ", + "video_name": "./videos_display/8003158.mp4" + }, + { + "username": "ziyan", + "text_prompt": "somking weed in the night infront the eifel. ", + "video_name": "./videos_display/6003232.mp4" + }, + { + "username": "ziyan", + "text_prompt": "black background Message: web3now (Font: MODERN) ", + "video_name": "./videos_display/0006393.mp4" + }, + { + "username": "ziyan", + "text_prompt": "image of an albino woman in a red room with roses ", + "video_name": "./videos_display/7000004.mp4" + }, + { + "username": "achint", + "text_prompt": "add slight animation to this picture ", + "video_name": "./videos_display/3005543.mp4" + }, + { + "username": "ziyan", + "text_prompt": "fairy tie with CHAIN in the well,zoom in ", + "video_name": "./videos_display/7004374.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Puzzle pieces, black and white Message: s e g c (Font: MODERN) ", + "video_name": "./videos_display/0003446.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a office minimalist with a open windows in a computer with code of program in it camera zoom out and camera zoom in Message: fabian (Font: MODERN) ", + "video_name": "./videos_display/2005564.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Design a digital graphic illustrating an algorithmic process in which data points, lines of code, and information flow together to construct a digital profile of a man. The graphic should convey the idea of a digital profile being built by the algorithm. ", + "video_name": "./videos_display/3006178.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A person in the room to rest Message: 1 Attachment ", + "video_name": "./videos_display/1004722.mp4" + }, + { + "username": "ziyan", + "text_prompt": "futuristic road traffic with cars Message: Frohe Fahrt (Font: MODERN) ", + "video_name": "./videos_display/7002697.mp4" + }, + { + "username": "ziyan", + "text_prompt": "cinematic, Ancient India of 100 BCE in an interdimensional portal ring of Dark Matter plasma on the street of a modern Indian city with skyscrapers and bustling traffic, highly detailed ", + "video_name": "./videos_display/6003919.mp4" + }, + { + "username": "ziyan", + "text_prompt": "One drum is made of tomato, with drumsticks, , red color on green background, instead of drum film should be tomato, everything else is normal drum in cinematic style, 9:16, 60fps ", + "video_name": "./videos_display/1003807.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Get vaccinated? And lower my potential resale value on the Milei Organ Market? I think not. ", + "video_name": "./videos_display/4003252.mp4" + }, + { + "username": "ziyan", + "text_prompt": "image:images (7).jpgback big buliding and a sports car beautiful environment ", + "video_name": "./videos_display/2003184.mp4" + }, + { + "username": "ziyan", + "text_prompt": "modi ji romantic dance with Italy prime minister melony in room ", + "video_name": "./videos_display/1006680.mp4" + }, + { + "username": "ziyan", + "text_prompt": "ChatGpt will get a ring of omnipotence ", + "video_name": "./videos_display/1006360.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Pen at the Playground Rave Message: 1 Attachment ", + "video_name": "./videos_display/8002751.mp4" + }, + { + "username": "abhranil", + "text_prompt": "a woman with tattoos lying on her bed, in the style of lascivious forms, net art, transparent light purple and light brown, steelpunk, forms, sandalpunk, realist detail. detailed anatomy, Hyperrealism,Concept art,Magic realism,Color Grading,Photo shooting,Dreamlike,Depth of Field,DOF, Tilt Blur,Gamma,White Balance,Dark,Light Mode,Dark Mode,High Contrast,5D,Multiverse,64k,Super Resolution, ", + "video_name": "./videos_display/4002608.mp4" + }, + { + "username": "aaran", + "text_prompt": "Australis, a mythical landmass that was believed to exist in the southern hemisphere. Tasman did not find Terra Australis, but he did encounter New Zealand and some other islands that were part of Zealandia. He also met the local M\u0101ori people, who told him about a large landmass to the east. ", + "video_name": "./videos_display/4004919.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Roblox noob in the mall dancing with Steven universe ", + "video_name": "./videos_display/4003325.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a video add on a hand gripper to improve hand strength ", + "video_name": "./videos_display/8001642.mp4" + }, + { + "username": "ziyan", + "text_prompt": "montage of scary found footage of scary children ", + "video_name": "./videos_display/8002220.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Beautiful little girl wearing graduation gown holding graduation certificate, happy and anime styleHigh quality, 8K Ultra HD, high detail, masterpiece, anime style digital drawing, soft anime tones, detailed drawing Dimensions, Augmented Beauty, Albert Anker, Kyoto Animation, Greg Rutkowski, Artgerm, WLOP, Alphonse Bebel, Luminosity, 3D Rendering, Octane Rendering, Isometric, by Yukisakura, Gorgeous Full Color, ", + "video_name": "./videos_display/3004235.mp4" + }, + { + "username": "ziyan", + "text_prompt": "space view of a full circunference ocean world, no earth, lights ", + "video_name": "./videos_display/8002139.mp4" + }, + { + "username": "aaran", + "text_prompt": "Using the attached picture as a background, it depicts a big orange cat drinking mutton soup on the table. A plate of dumplings is placed next to the lamb soup. ", + "video_name": "./videos_display/2003908.mp4" + }, + { + "username": "ziyan", + "text_prompt": "explode building google storage photo realistic ", + "video_name": "./videos_display/3006643.mp4" + }, + { + "username": "ziyan", + "text_prompt": "image transitioning to different forms of batman ", + "video_name": "./videos_display/0004629.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a mad king dancing in money rain, anime by Josan Gonzalez Akihiko Yoshida Laurie Greasley Takehiko Inoue Tara Mcpherson Jojo\u2019s bizarre adventure ", + "video_name": "./videos_display/3005340.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Disney Pixar movie named \u201cCago\u201d where Private from Penguins of Madagascar is sitting on a toilet and moving around ", + "video_name": "./videos_display/2005425.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Whales fly, jellyfish swim, meteors streak Message: 1 Attachment ", + "video_name": "./videos_display/5001756.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a young man with these characters: ", + "video_name": "./videos_display/6003451.mp4" + }, + { + "username": "ziyan", + "text_prompt": "wine bottles Message: SNAP (Font: MODERN) ", + "video_name": "./videos_display/6004975.mp4" + }, + { + "username": "ziyan", + "text_prompt": "people walking in a bolivian colonial city Message: La Paz (Font: SANS SERIF) ", + "video_name": "./videos_display/0004363.mp4" + }, + { + "username": "ziyan", + "text_prompt": "An overhead view of a futuristic city, slowly panning over it. Dark, with artificial light from signs, electronics, etc. Cinematic action. Atmospheric and moody visuals, blending realism with elements of surrealism. Striking, panoramic compositions with a focus on subtle storytelling through visual means. The color palette is muted, employing stark lighting contrasts to create depth and emotion. ", + "video_name": "./videos_display/3004552.mp4" + }, + { + "username": "aaran", + "text_prompt": "1 In a place with a dark background, a tornado butler with Michelin elements was thinking in front of the camera and then answered some questions, and finally flew to the screen with two white cards. prompt: ", + "video_name": "./videos_display/1006611.mp4" + }, + { + "username": "ziyan", + "text_prompt": "End of film, I need it to say \u201cfin.\u201d With smoke all around it as it fades away in the smoke ", + "video_name": "./videos_display/1004602.mp4" + }, + { + "username": "ziyan", + "text_prompt": "WAR between USA and RUSSIApresident of UKRAINE brutal fight, 1:1, hype realistic ", + "video_name": "./videos_display/3004700.mp4" + }, + { + "username": "ziyan", + "text_prompt": "the two cats are discussing about the construction in the city and with arb dress ", + "video_name": "./videos_display/7002902.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Euromast in Rotterdam falling down, jetfighter attach missile on Euromast ", + "video_name": "./videos_display/0004968.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Open with an intriguing statement about the uncharted territory of the human mind ", + "video_name": "./videos_display/6004054.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A married woman who was forced by his subordinates for a few days when her husband was on a business trip ", + "video_name": "./videos_display/8001439.mp4" + }, + { + "username": "ziyan", + "text_prompt": "masterpiece,4k,Best quality,High detailed The cat moves Message: 1 Attachment ", + "video_name": "./videos_display/0003354.mp4" + }, + { + "username": "ziyan", + "text_prompt": "red ink drop into water tank with white background ", + "video_name": "./videos_display/7004591.mp4" + }, + { + "username": "aaran", + "text_prompt": "purpose, healing purpose, acension, spiritual, motion, 8k ", + "video_name": "./videos_display/3006323.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Man riding monkey wheel in futuristic city on mars with motorcycle helmet ", + "video_name": "./videos_display/0003240.mp4" + }, + { + "username": "ziyan", + "text_prompt": "move plant and boy gs5 ms2 ", + "video_name": "./videos_display/6002887.mp4" + }, + { + "username": "ziyan", + "text_prompt": "move only background water Message: 1 Attachment ", + "video_name": "./videos_display/6002717.mp4" + }, + { + "username": "ziyan", + "text_prompt": "satirical video about the DDR and Erich Honecker ", + "video_name": "./videos_display/4004716.mp4" + }, + { + "username": "ziyan", + "text_prompt": "I want a picture of Mozart playing ", + "video_name": "./videos_display/1006830.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Stars, suns and constellations Message: Elon (Font: MODERN) ", + "video_name": "./videos_display/7002720.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Zidan with real madrid Message: 1 Attachment ", + "video_name": "./videos_display/7002317.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Design a quality management diagram for the manufacturing industry Message: 1 Attachment ", + "video_name": "./videos_display/2004240.mp4" + }, + { + "username": "ziyan", + "text_prompt": "gtavi The moon, once a symbol of mystery, now harbors the sinister secrets of an evolving AI. ", + "video_name": "./videos_display/0005459.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a old television in an empty dark room with static interference on the screen with the image attached appearing and disappearing in a glitch effect ", + "video_name": "./videos_display/3004230.mp4" + }, + { + "username": "ziyan", + "text_prompt": "the division dark zone snowing blizzard with puddles ", + "video_name": "./videos_display/0005556.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Dancer knights at the stage, retro style, dressed in ostentatious clothes, with feathered hats cabaret girl, 35mm lens, hyperrealistic, high detail, cinematic light, cinematic photography, dark shadow, ultra realistic, skin texture prominent ", + "video_name": "./videos_display/7002784.mp4" + }, + { + "username": "ziyan", + "text_prompt": "cartoon zapp branigan hates his dungeon office: tall mountain bodyguard holds a man hostage, 3d animation, camera pan out, ", + "video_name": "./videos_display/8002373.mp4" + }, + { + "username": "ziyan", + "text_prompt": "9:16 size, image of survivors of the world destruction, rebuilding and replanting the forest, indigeneous groups planting, permaculture and agroecology , wide view, desertic landscape ", + "video_name": "./videos_display/2003802.mp4" + }, + { + "username": "ziyan", + "text_prompt": "create a image of a indian girl standing with her breakdown car ", + "video_name": "./videos_display/1003073.mp4" + }, + { + "username": "ziyan", + "text_prompt": "sunset in a clear water lake with camera motion and zoom out Message: AMAYA (Font: MODERN) ", + "video_name": "./videos_display/2007614.mp4" + }, + { + "username": "ziyan", + "text_prompt": "binary sanctuary white and gold Message: Artistanova ", + "video_name": "./videos_display/7002272.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Arctic, winter, cold and penguins on the background Message: LAYERZERO (Font: MODERN) ", + "video_name": "./videos_display/6003404.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Person or business gasping for breath 3d animiert cinema ", + "video_name": "./videos_display/0006585.mp4" + }, + { + "username": "ziyan", + "text_prompt": "what being on acid would look like from the first person perspective of an ant ", + "video_name": "./videos_display/3004168.mp4" + }, + { + "username": "ziyan", + "text_prompt": "scobby doo style animated freddie gibbs solving mysteries, gs429, low poly ", + "video_name": "./videos_display/8003676.mp4" + }, + { + "username": "ziyan", + "text_prompt": "As the Quantum Force watches over the city, we see glimpses of other heroes and villains from alternate realities, hinting at future adventures. ", + "video_name": "./videos_display/7003489.mp4" + }, + { + "username": "ziyan", + "text_prompt": "make it smile and laugh using the attached image ", + "video_name": "./videos_display/2007942.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a realistic old womans sitting on a simple wodden chair in an empty room. woman is holding a magnifying glass in her hand. the walls in this room are moving in a smooth motion, they look very surrealisticly animated and colourful ", + "video_name": "./videos_display/3006909.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a boy listening to music and lighting in the ", + "video_name": "./videos_display/6003627.mp4" + }, + { + "username": "ziyan", + "text_prompt": "omputer and smartphone with spyware icons slowly appearing ", + "video_name": "./videos_display/3003214.mp4" + }, + { + "username": "ziyan", + "text_prompt": "illustrate electronic devices, such as cell phones and notebooks exploding, releasing lightning ", + "video_name": "./videos_display/6003721.mp4" + }, + { + "username": "ziyan", + "text_prompt": "\u201cIn \u2018The One Piece Reunion Road,\u2019 five friends from high school with diverse interests and responsibilities embark on a road trip together. Along the journey, they encounter comedic mishaps and obstacles, testing their friendship. Each character faces personal dilemmas and challenges, from academic setbacks to familial responsibilities. Bound by their shared love for \u2018One Piece\u2019 manga, they find inspiration and growth during the adventure. Ultimately, the trip strengthens their bond, and they part ways with newfound clarity about their identities and dreams.\u201d ", + "video_name": "./videos_display/6002926.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Elon Musk is wearing a mini skirt ", + "video_name": "./videos_display/3003754.mp4" + }, + { + "username": "ziyan", + "text_prompt": "neon graffiti alien girl, extraterrestrial character by Yoshiyuki Tomino, alien character, concept art, heteromorphic, arthropod, reptile, chimera, translucent skin, exoskeleton, multiple eyes, glowing eyes, radiant eyes, albino eyes, hyperpigmentation, geometric facial features, geometric skull structure, geometric eye socket, crisp detail, sharp focus ", + "video_name": "./videos_display/1003314.mp4" + }, + { + "username": "richard", + "text_prompt": "but also some surprisingly cool things. ", + "video_name": "./videos_display/4002205.mp4" + }, + { + "username": "richard", + "text_prompt": "girl in bikini posing in front of the mirror ", + "video_name": "./videos_display/1005411.mp4" + }, + { + "username": "yash", + "text_prompt": "But the eye motif itself has a much deeper history ", + "video_name": "./videos_display/0005488.mp4" + }, + { + "username": "richard", + "text_prompt": "image:9b4783440d15c3448bd854ec2cff47c8.jpg give a live effect to the image ", + "video_name": "./videos_display/3005727.mp4" + }, + { + "username": "richard", + "text_prompt": "a cute girl kissing by a boy surrounded by a beautiful scenery and lightining ", + "video_name": "./videos_display/3005953.mp4" + }, + { + "username": "richard", + "text_prompt": "a beautiful sexy girl playing flute ", + "video_name": "./videos_display/2006367.mp4" + }, + { + "username": "richard", + "text_prompt": "Suddenly a lion pounces on her child. What will she do then? ", + "video_name": "./videos_display/8002506.mp4" + }, + { + "username": "richard", + "text_prompt": "worker and client at barber shop ", + "video_name": "./videos_display/1005282.mp4" + }, + { + "username": "richard", + "text_prompt": "powerball lotto from the lott branding ", + "video_name": "./videos_display/3004139.mp4" + }, + { + "username": "richard", + "text_prompt": "create a video in which the image of a person from whom his vibrations come and how they rise gradually, while the dynamics of the video goes on, the heat is spinning around and he is in a beautiful outer space ", + "video_name": "./videos_display/8003387.mp4" + }, + { + "username": "richard", + "text_prompt": "70s Surreal Paranormal TV program. Nick Frost diving into A giant tub of hummus. Destroyed Paint splatters, free jazz, jackson pollock. Grainy Film. Warped Tv detuned channel. Test Card. ", + "video_name": "./videos_display/8002164.mp4" + }, + { + "username": "richard", + "text_prompt": "With the golden key in paw, Timmy the teddy bear and Lily the little girl tiptoed out of the room and down the hallway. They reached a tiny door that neither of them had ever noticed before. Timmy inserted the golden key into the lock, and with a twist, the door swung open. ", + "video_name": "./videos_display/0006066.mp4" + }, + { + "username": "richard", + "text_prompt": "the woman walks and smile aimage:1702333107833.png ", + "video_name": "./videos_display/0003618.mp4" + }, + { + "username": "richard", + "text_prompt": "Made out of trees and leaves Message: UMIKA DHRUV (Font: MODERN) ", + "video_name": "./videos_display/0004932.mp4" + }, + { + "username": "richard", + "text_prompt": "ceiling fan, one ceiling fan, zido, maxar, fans, fans hals, digital art h 9 6 0, productphoto, scenic full shot, rendering, tall ceiling, bottom angle, h 576, isometric view, wide portrait, h 8 0 0 c 1 0. 0, overhead angle, low ceiling ", + "video_name": "./videos_display/3005377.mp4" + }, + { + "username": "richard", + "text_prompt": "An image of a young boy sitting at a simple wooden desk, studying by the dim light of a kerosene lamp, symbolizing his dedication to education. ", + "video_name": "./videos_display/8001318.mp4" + }, + { + "username": "richard", + "text_prompt": "Loch Ness Monster photo. clear underwater. face. smile. hires. detail. small fish. dof off. ", + "video_name": "./videos_display/8001923.mp4" + }, + { + "username": "richard", + "text_prompt": "Make the figure in the painting turn around Message: 1 Attachment ", + "video_name": "./videos_display/2004650.mp4" + }, + { + "username": "yash", + "text_prompt": "This theory, however, is often met with skepticism due to the lack of concrete evidence. ", + "video_name": "./videos_display/2006601.mp4" + }, + { + "username": "yash", + "text_prompt": "a koala bear feeding her own baby eating her stool ", + "video_name": "./videos_display/3004187.mp4" + }, + { + "username": "yash", + "text_prompt": "Make that same box in the image move by rising backwards Message: 1 Attachment ", + "video_name": "./videos_display/6003447.mp4" + }, + { + "username": "yash", + "text_prompt": "dss Message: man ye ghahremanam (Font: MODERN) ", + "video_name": "./videos_display/6003047.mp4" + }, + { + "username": "yash", + "text_prompt": "dss Message: man ye ghahremanam (Font: MODERN) ", + "video_name": "./videos_display/6003047.mp4" + }, + { + "username": "abhranil", + "text_prompt": "monster vhs 70s full body house dead body on tjhe floor ", + "video_name": "./videos_display/2000154.mp4" + }, + { + "username": "yash", + "text_prompt": "Lady Gaga having a bath in a huge soup bowl, Peter witkin style, Red and wood tones color scheme ", + "video_name": "./videos_display/2001020.mp4" + }, + { + "username": "abhranil", + "text_prompt": "Joseline hernandez with realistic body features and movements slow motion clear clean cut scene on a strip pole full figure with a huge booty bending over ", + "video_name": "./videos_display/2000314.mp4" + }, + { + "username": "abhranil", + "text_prompt": "rt 16:9,motino 3,seed123456789,fbs 24,gs 16. Message: 1 Attachment ", + "video_name": "./videos_display/2000490.mp4" + }, + { + "username": "bohan", + "text_prompt": "a droplet splashing on an unethical ", + "video_name": "./videos_display/7001004.mp4" + }, + { + "username": "abhranil", + "text_prompt": "Emma Watson skimpy pajamas full body portrait completely see thru pokies visible detailed camel toe photorealistic, hyperdetailed, Hyperrealistic, fashion, photo ", + "video_name": "./videos_display/2000678.mp4" + }, + { + "username": "abhranil", + "text_prompt": "looking right and camera back, breath, alive Message: 1 Attachment ", + "video_name": "./videos_display/2000796.mp4" + }, + { + "username": "xuan", + "text_prompt": "Children playinga playground in a post apocalyptic Acropolis vihs 4k Message: TSIMENTO (Font: MODERN) ", + "video_name": "./videos_display/2002021.mp4" + }, + { + "username": "xuan", + "text_prompt": "a cinematic movement and snow fall outside Message: 1 Attachment ", + "video_name": "./videos_display/2002036.mp4" + }, + { + "username": "xuan", + "text_prompt": "a beautiful river shore, golden hour Message: Vallejo (Font: COMICS) ", + "video_name": "./videos_display/2002062.mp4" + }, + { + "username": "xuan", + "text_prompt": "A lively street market where people are interacting with each other, walking alongAttachment A ", + "video_name": "./videos_display/2002070.mp4" + }, + { + "username": "xuan", + "text_prompt": "in the moon Message: french bulldog (Font: MODERN) ", + "video_name": "./videos_display/2002082.mp4" + }, + { + "username": "xuan", + "text_prompt": "top down shot forest , drone aesthetic Message: MIKUMAN (Font: MODERN) ", + "video_name": "./videos_display/2002102.mp4" + }, + { + "username": "richard", + "text_prompt": "let this little girl jump high Message: 1 Attachment ", + "video_name": "./videos_display/0000248.mp4" + }, + { + "username": "richard", + "text_prompt": "charlize theron walking with bikini in sidewalk epcot center ", + "video_name": "./videos_display/0000405.mp4" + }, + { + "username": "richard", + "text_prompt": "the cat orange blue standing at bamboo with eating fish ", + "video_name": "./videos_display/0000445.mp4" + }, + { + "username": "richard", + "text_prompt": "figure walking, sinster, motion, cineamtic, movement, Zoom Shot, Eye Level Shot ", + "video_name": "./videos_display/0000667.mp4" + }, + { + "username": "richard", + "text_prompt": "Birth of Venus on dc comics cover, as dc comics character, Birth of Venus style ", + "video_name": "./videos_display/0000707.mp4" + }, + { + "username": "richard", + "text_prompt": "a beautiful young woman getting out of bed ", + "video_name": "./videos_display/0000332.mp4" + }, + { + "username": "ziyan", + "text_prompt": "enhance the image, color it, and put it in a sunny landscape Message: 1 Attachment ", + "video_name": "./videos_display/0001030.mp4" + }, + { + "username": "ziyan", + "text_prompt": "ship with writed name on the hull \u201cAdelia\u201d, under Cyprus flag Message: petronav (Font: MODERN) ", + "video_name": "./videos_display/0001069.mp4" + }, + { + "username": "ziyan", + "text_prompt": "IMAGEN DEL MAR Y LA ORILLA CON AGUAS TRANQUILAS Y RELAJANTES EN UN ATARDECER DE FONDO, MOVIMIENTO DEL AGUA ", + "video_name": "./videos_display/0001072.mp4" + }, + { + "username": "ziyan", + "text_prompt": "ship with writed name on the hull \u201cAdelia\u201d, under Cyprus flag Message: petronav (Font: MODERN) ", + "video_name": "./videos_display/0001069.mp4" + }, + { + "username": "ziyan", + "text_prompt": "IMAGEN DEL MAR Y LA ORILLA CON AGUAS TRANQUILAS Y RELAJANTES EN UN ATARDECER DE FONDO, MOVIMIENTO DEL AGUA ", + "video_name": "./videos_display/0001072.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Kobe smiles and waves at the camera on the helicopter. ", + "video_name": "./videos_display/0001127.mp4" + }, + { + "username": "ziyan", + "text_prompt": "a village with a clouddy sky Message: PENDEJO (Font: MODERN) ", + "video_name": "./videos_display/0001155.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Rowing, water slightly flowing, moving left, ink painting, wooden boat, background still Message: 1 Attachment ", + "video_name": "./videos_display/0001170.mp4" + }, + { + "username": "ziyan", + "text_prompt": "boy and girl feeling shy and smiling gently, camera zoom, breeze, objects in the image moving slowly due to breeze Message: 1 Attachment ", + "video_name": "./videos_display/0001180.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Cinematic 8k football stadium, mosaic in the stands with a player and the champions league cup Message: SPAINTRADER (Font: MODERN) ", + "video_name": "./videos_display/0001198.mp4" + }, + { + "username": "ziyan", + "text_prompt": "Japanese students Message: live and learn (Font: MODERN) ", + "video_name": "./videos_display/0001250.mp4" + }, + { + "username": "ziyan", + "text_prompt": "A close up of a ceiling rose with letters going in a circle Message: Rebel Rosettes (Font: BAUHAUS) ", + "video_name": "./videos_display/0001343.mp4" + }, + { + "username": "ziyan", + "text_prompt": "cloud formation moving into a stormy hurricane windy Message: Pictorius (Font: MODERN) ", + "video_name": "./videos_display/0001403.mp4" + }, + { + "username": "ziyan", + "text_prompt": "sunshine and clouds zoom out Message: Thanks (Font: MODERN) ", + "video_name": "./videos_display/0001469.mp4" + }, + { + "username": "ziyan", + "text_prompt": "honor your roots Message: 1 Attachment ", + "video_name": "./videos_display/0001489.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u4e00\u58f6\u71c3\u70e7\u7684\u70ed\u5496\u5561\u3002\u4fe1\u606f\uff1a\u5496\u5561\u65f6\u95f4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002", + "video_name": "./videos_display/2002151.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u8425\u517b\u7269\u8d28\u7684\u6d41\u52a8\u8109\u52a8\u901a\u8fc7\u4e00\u4e2a\u751f\u52a8\u3001\u95ea\u70c1\u7684\u83cc\u4e1d\u7f51\u7edc\u3002 \r\n\r\nSource sentence: The universe is full of mysteries waiting to be uncovered. \r\n\r\n\u5b87\u5b99", + "video_name": "./videos_display/2002200.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u4eba\u4eec\u5728\u8d70\u8def\uff0c\u4e0b\u7740\u4e9b\u8bb8\u7684\u96ea\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u8ba9\u8fd9\u4e2a\u573a\u666f\u6301\u7eed5\u79d2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002", + "video_name": "./videos_display/2002201.mp4" + }, + { + "username": "haonan", + "text_prompt": "Flowers Message: Luisa Presidenta (Font: MODERN) ", + "video_name": "./videos_display/5000236.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u8bf7\u7ffb\u8bd1\u6210\u4e2d\u6587\uff1atoni braxton\u7684\u300aunbreak my heart\u300b\u3002", + "video_name": "./videos_display/2002218.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u4e00\u6bb5\u8499\u592a\u5947\u573a\u666f\u5c55\u793a\u4e86\u52a8\u7269\u4eec\u5171\u540c\u79cd\u690d\u548c\u7167\u6599\u5e84\u7a3c\u3002\u5154\u5b50\u5c0f\u5077\u4eec\u5b66\u4e60\u5230\u4e86\u5408\u4f5c\u7684\u4ef7\u503c\u548c", + "video_name": "./videos_display/2002238.mp4" + }, + { + "username": "haonan", + "text_prompt": "\u9ad8\u5854\u5d29\u584c\u7206\u70b8\u3002\u4fe1\u606f\uff1a\u81ea\u6740\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09", + "video_name": "./videos_display/5000006.mp4" + }, + { + "username": "haonan", + "text_prompt": "\u6d77\u6ee9\u522b\u5885\uff0c\u4fe1\u606f\uff1a\u9152\u5e97\u3002", + "video_name": "./videos_display/5000011.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u590d\u53e4\u3001\u5b87\u5b99\u3001\u9ed1\u6d1e \u4fe1\u606f\uff1aOHO \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09", + "video_name": "./videos_display/2002251.mp4" + }, + { + "username": "richard", + "text_prompt": "a lush forest full of nature detailed good quality Message: ODS (Font: MODERN) ", + "video_name": "./videos_display/0000075.mp4" + }, + { + "username": "haonan", + "text_prompt": "yellow hairing girl, no clothing,indifferent,sitting on the chair,white background,good body shape ", + "video_name": "./videos_display/5000578.mp4" + }, + { + "username": "haonan", + "text_prompt": "childrens paying with apple cartoon scene ", + "video_name": "./videos_display/5000585.mp4" + }, + { + "username": "yash", + "text_prompt": "a catacomb full of old bones Message: COLLECTORS IN SPACE (Font: MODERN) ", + "video_name": "./videos_display/2001002.mp4" + }, + { + "username": "haonan", + "text_prompt": "high quality, 8K Ultra HD, 16:9 ratio, high detailed, masterpiece, A digital illustration of anime style, digital anime paintings of her, soft anime tones, Feels like Japanese anime, red sunset, Romanticism, Exotic natural landscapes in the United States, natural landscapes, vast nature, realism, delicacy, mountains, rivers, sky, clouds, details, fantastic, precision, grandeur, beauty, strength, sunlight, light and shadow, reflection of light, multiple perspectives, exotic, luminism, three dimensional effect, enhanced beauty, Feeling like Kyoto Animation, Greg Rutkowski, Artgerm, WLOP, Alphonse Beeple, 3d render, octane render, Isometric, by yukisakura, awesome full color, ", + "video_name": "./videos_display/5000005.mp4" + }, + { + "username": "haonan", + "text_prompt": "towers crumbeling exploding Message: KYS (Font: MODERN) ", + "video_name": "./videos_display/5000006.mp4" + }, + { + "username": "haonan", + "text_prompt": "a hot giel at centre of the photo ", + "video_name": "./videos_display/5000602.mp4" + }, + { + "username": "bohan", + "text_prompt": "this little bird is jumping on a tree Message: 1 Attachment ", + "video_name": "./videos_display/7001832.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u7af9\u6797 PARAH\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09", + "video_name": "./videos_display/2002334.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u5de8\u5927\u7684\u4e00\u5806\u71c3\u70e7\u7684\u94b1\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002", + "video_name": "./videos_display/2002347.mp4" + }, + { + "username": "xuan", + "text_prompt": "\u732b\u5728\u5496\u5561\u676f\u91cc\uff0c\u706b\u7bad\u98de\u5411\u592a\u7a7a\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002", + "video_name": "./videos_display/2002371.mp4" + }, + { + "username": "lavie1", + "text_prompt": "\u4ee5\u70df\u96fe\u7684\u5f62\u5f0f\u79fb\u52a8\u3002\r\n\r\nSource sentence: The sun sets in the west. \r\n\r\n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002", + "video_name": "./videos_display/4000039.mp4" + }, + { + "username": "lavie1", + "text_prompt": "\u6d77\u6ee9 (\u5b57\u4f53\uff1a\u73b0\u4ee3)", + "video_name": "./videos_display/4000060.mp4" + }, + { + "username": "lavie1", + "text_prompt": "\u9ad8\u5c14\u592b\u4ff1\u4e50\u90e8\u5973\u5b69\u3002\u4fe1\u606f\uff1aLightSPA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09", + "video_name": "./videos_display/4000073.mp4" + }, + { + "username": "lavie1", + "text_prompt": "\u9c7c\u7f38 \u4fe1\u606f\uff1aASHY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09", + "video_name": "./videos_display/4000114.mp4" + }, + { + "username": "xuan", + "text_prompt": "bamboo grove Message: PARAH (Font: MODERN) ", + "video_name": "./videos_display/2002334.mp4" + }, + { + "username": "haonan", + "text_prompt": "The ambulances lured us into the forest. It was a gang that stole human organs. Whenever they finished with a body, they hung it on the trees with a noose. I could not escape because they had ended my life. The sound of tricks as they dragged my body onto that tree was like a manual saw running through my veins. I did not feel my body due to the intense cold that hung over the forest every night, until my body fell to the ground, and my soul was freed. ", + "video_name": "./videos_display/5000646.mp4" + }, + { + "username": "haonan", + "text_prompt": "and its role in the complex tapestry of human history ", + "video_name": "./videos_display/5000787.mp4" + }, + { + "username": "haonan", + "text_prompt": "fade from original into a monster Message: 1 Attachment ", + "video_name": "./videos_display/5000826.mp4" + }, + { + "username": "haonan", + "text_prompt": "Protect yourself on the road, insure your car with us at Takafful LLC. All roads become safer with us. ", + "video_name": "./videos_display/5000846.mp4" + }, + { + "username": "haonan", + "text_prompt": "image:64656113.png, timelapse girl dancing, background fire Animations ", + "video_name": "./videos_display/5000900.mp4" + }, + { + "username": "haonan", + "text_prompt": "It\u2019s not running out of someone\u2019s nose ", + "video_name": "./videos_display/5000912.mp4" + } +] \ No newline at end of file diff --git a/webpage/text_files/sampled_id.json b/webpage/text_files/sampled_id.json new file mode 100644 index 0000000000000000000000000000000000000000..d62b8164d9b6e1159fe45812606c8a5dd9ac181c --- /dev/null +++ b/webpage/text_files/sampled_id.json @@ -0,0 +1,11304 @@ +{ + "sampled_id": [ + "0000000", + "0000001", + "0000002", + "0000003", + "0000004", + "0000005", + "0000006", + "0000007", + "0000008", + "0000009", + "0000010", + "0000011", + "0000012", + "0000013", + "0000014", + "0000015", + "0000016", + "0000017", + "0000018", + "0000019", + "0000020", + "0000021", + "0000022", + "0000023", + "0000024", + "0000025", + "0000026", + "0000027", + "0000028", + "0000029", + "0000030", + "0000031", + "0000032", + "0000033", + "0000034", + "0000035", + "0000036", + "0000037", + "0000038", + "0000039", + "0000040", + "0000041", + "0000042", + "0000043", + "0000044", + "0000045", + "0000046", + "0000047", + "0000048", + "0000049", + "0000050", + "0000051", + "0000052", + "0000053", + "0000054", + "0000055", + "0000056", + "0000057", + "0000058", + "0000059", + "0000060", + "0000061", + "0000062", + "0000063", + "0000064", + "0000065", + "0000066", + "0000067", + "0000068", + "0000069", + "0000070", + "0000071", + "0000072", + "0000073", + "0000074", + "0000075", + "0000076", + "0000077", + "0000078", + "0000079", + "0000080", + "0000081", + "0000082", + "0000083", + "0000084", + "0000085", + "0000086", + "0000087", + "0000088", + "0000089", + "0000090", + "0000091", + "0000092", + "0000093", + "0000094", + "0000095", + "0000096", + "0000097", + "0000098", + "0000099", + "0000100", + "0000101", + "0000102", + "0000103", + "0000104", + "0000105", + "0000106", + "0000107", + "0000108", + "0000109", + "0000110", + "0000111", + "0000112", + "0000113", + "0000114", + "0000115", + "0000116", + "0000117", + "0000118", + "0000119", + "0000120", + "0000121", + "0000122", + "0000123", + "0000124", + "0000125", + "0000126", + "0000127", + "0000128", + "0000129", + "0000130", + "0000131", + "0000132", + "0000133", + "0000134", + "0000135", + "0000136", + "0000137", + "0000138", + "0000139", + "0000140", + "0000141", + "0000142", + "0000143", + "0000144", + "0000145", + "0000146", + "0000147", + "0000148", + "0000149", + "0000150", + "0000151", + "0000152", + "0000153", + "0000154", + "0000155", + "0000156", + "0000157", + "0000158", + "0000159", + "0000160", + "0000161", + "0000162", + "0000163", + "0000164", + "0000165", + "0000166", + "0000167", + "0000168", + "0000169", + "0000170", + "0000171", + "0000172", + "0000173", + "0000174", + "0000175", + "0000176", + "0000177", + "0000178", + "0000179", + "0000180", + "0000181", + "0000182", + "0000183", + "0000184", + "0000185", + "0000186", + "0000187", + "0000188", + "0000189", + "0000190", + "0000191", + "0000192", + "0000193", + "0000194", + "0000195", + "0000196", + "0000197", + "0000198", + "0000199", + "0000200", + "0000201", + "0000202", + "0000203", + "0000204", + "0000205", + "0000206", + "0000207", + "0000208", + "0000209", + "0000210", + "0000211", + "0000212", + "0000213", + "0000214", + "0000215", + "0000216", + "0000217", + "0000218", + "0000219", + "0000220", + "0000221", + "0000222", + "0000223", + "0000224", + "0000225", + "0000226", + "0000227", + "0000228", + "0000229", + "0000230", + "0000231", + "0000232", + "0000233", + "0000234", + "0000235", + "0000236", + "0000237", + "0000238", + "0000239", + "0000240", + "0000241", + "0000242", + "0000243", + "0000244", + "0000245", + "0000246", + "0000247", + "0000248", + "0000249", + "0000250", + "0000251", + "0000252", + "0000253", + "0000254", + "0000255", + "0000256", + "0000257", + "0000258", + "0000259", + "0000260", + "0000261", + "0000262", + "0000263", + "0000264", + "0000265", + "0000266", + "0000267", + "0000268", + "0000269", + "0000270", + "0000271", + "0000272", + "0000273", + "0000274", + "0000275", + "0000276", + "0000277", + "0000278", + "0000279", + "0000280", + "0000281", + "0000282", + "0000283", + "0000284", + "0000285", + "0000286", + "0000287", + "0000288", + "0000289", + "0000290", + "0000291", + "0000292", + "0000293", + "0000294", + "0000295", + "0000296", + "0000297", + "0000298", + "0000299", + "0000300", + "0000301", + "0000302", + "0000303", + "0000304", + "0000305", + "0000306", + "0000307", + "0000308", + "0000309", + "0000310", + "0000311", + "0000312", + "0000313", + "0000314", + "0000315", + "0000316", + "0000317", + "0000318", + "0000319", + "0000320", + "0000321", + "0000322", + "0000323", + "0000324", + "0000325", + "0000326", + "0000327", + "0000328", + "0000329", + "0000330", + "0000331", + "0000332", + "0000333", + "0000334", + "0000335", + "0000336", + "0000337", + "0000338", + "0000339", + "0000340", + "0000341", + "0000342", + "0000343", + "0000344", + "0000345", + "0000346", + "0000347", + "0000348", + "0000349", + "0000350", + "0000351", + "0000352", + "0000353", + "0000354", + "0000355", + "0000356", + "0000357", + "0000358", + "0000359", + "0000360", + "0000361", + "0000362", + "0000363", + "0000364", + "0000365", + "0000366", + "0000367", + "0000368", + "0000369", + "0000370", + "0000371", + "0000372", + "0000373", + "0000374", + "0000375", + "0000376", + "0000377", + "0000378", + "0000379", + "0000380", + "0000381", + "0000382", + "0000383", + "0000384", + "0000385", + "0000386", + "0000387", + "0000388", + "0000389", + "0000390", + "0000391", + "0000392", + "0000393", + "0000394", + "0000395", + "0000396", + "0000397", + "0000398", + "0000399", + "0000400", + "0000401", + "0000402", + "0000403", + "0000404", + "0000405", + "0000406", + "0000407", + "0000408", + "0000409", + "0000410", + "0000411", + "0000412", + "0000413", + "0000414", + "0000415", + "0000416", + "0000417", + "0000418", + "0000419", + "0000420", + "0000421", + "0000422", + "0000423", + "0000424", + "0000425", + "0000426", + "0000427", + "0000428", + "0000429", + "0000430", + "0000431", + "0000432", + "0000433", + "0000434", + "0000435", + "0000436", + "0000437", + "0000438", + "0000439", + "0000440", + "0000441", + "0000442", + "0000443", + "0000444", + "0000445", + "0000446", + "0000447", + "0000448", + "0000449", + "0000450", + "0000451", + "0000452", + "0000453", + "0000454", + "0000455", + "0000456", + "0000457", + "0000458", + "0000459", + "0000460", + "0000461", + "0000462", + "0000463", + "0000464", + "0000465", + "0000466", + "0000467", + "0000468", + "0000469", + "0000470", + "0000471", + "0000472", + "0000473", + "0000474", + "0000475", + "0000476", + "0000477", + "0000478", + "0000479", + "0000480", + "0000481", + "0000482", + "0000483", + "0000484", + "0000485", + "0000486", + "0000487", + "0000488", + "0000489", + "0000490", + "0000491", + "0000492", + "0000493", + "0000494", + "0000495", + "0000496", + "0000497", + "0000498", + "0000499", + "0000500", + "0000501", + "0000502", + "0000503", + "0000504", + "0000505", + "0000506", + "0000507", + "0000508", + "0000509", + "0000510", + "0000511", + "0000512", + "0000513", + "0000514", + "0000515", + "0000516", + "0000517", + "0000518", + "0000519", + "0000520", + "0000521", + "0000522", + "0000523", + "0000524", + "0000525", + "0000526", + "0000527", + "0000528", + "0000529", + "0000530", + "0000531", + "0000532", + "0000533", + "0000534", + "0000535", + "0000536", + "0000537", + "0000538", + "0000539", + "0000540", + "0000541", + "0000542", + "0000543", + "0000544", + "0000545", + "0000546", + "0000547", + "0000548", + "0000549", + "0000550", + "0000551", + "0000552", + "0000553", + "0000554", + "0000555", + "0000556", + "0000557", + "0000558", + "0000559", + "0000560", + "0000561", + "0000562", + "0000563", + "0000564", + "0000565", + "0000566", + "0000567", + "0000568", + "0000569", + "0000570", + "0000571", + "0000572", + "0000573", + "0000574", + "0000575", + "0000576", + "0000577", + "0000578", + "0000579", + "0000580", + "0000581", + "0000582", + "0000583", + "0000584", + "0000585", + "0000586", + "0000587", + "0000588", + "0000589", + "0000590", + "0000591", + "0000592", + "0000593", + "0000594", + "0000595", + "0000596", + "0000597", + "0000598", + "0000599", + "0000600", + "0000601", + "0000602", + "0000603", + "0000604", + "0000605", + "0000606", + "0000607", + "0000608", + "0000609", + "0000610", + "0000611", + "0000612", + "0000613", + "0000614", + "0000615", + "0000616", + "0000617", + "0000618", + "0000619", + "0000620", + "0000621", + "0000622", + "0000623", + "0000624", + "0000625", + "0000626", + "0000627", + "0000628", + "0000629", + "0000630", + "0000631", + "0000632", + "0000633", + "0000634", + "0000635", + "0000636", + "0000637", + "0000638", + "0000639", + "0000640", + "0000641", + "0000642", + "0000643", + "0000644", + "0000645", + "0000646", + "0000647", + "0000648", + "0000649", + "0000650", + "0000651", + "0000652", + "0000653", + "0000654", + "0000655", + "0000656", + "0000657", + "0000658", + "0000659", + "0000660", + "0000661", + "0000662", + "0000663", + "0000664", + "0000665", + "0000666", + "0000667", + "0000668", + "0000669", + "0000670", + "0000671", + "0000672", + "0000673", + "0000674", + "0000675", + "0000676", + "0000677", + "0000678", + "0000679", + "0000680", + "0000681", + "0000682", + "0000683", + "0000684", + "0000685", + "0000686", + "0000687", + "0000688", + "0000689", + "0000690", + "0000691", + "0000692", + "0000693", + "0000694", + "0000695", + "0000696", + "0000697", + "0000698", + "0000699", + "0000700", + "0000701", + "0000702", + "0000703", + "0000704", + "0000705", + "0000706", + "0000707", + "0000708", + "0000709", + "0000710", + "0000711", + "0000712", + "0000713", + "0000714", + "0000715", + "0000716", + "0000717", + "0000718", + "0000719", + "0000720", + "0000721", + "0000722", + "0000723", + "0000724", + "0000725", + "0000726", + "0000727", + "0000728", + "0000729", + "0000730", + "0000731", + "0000732", + "0000733", + "0000734", + "0000735", + "0000736", + "0000737", + "0000738", + "0000739", + "0000740", + "0000741", + "0000742", + "0000743", + "0000744", + "0000745", + "0000746", + "0000747", + "0000748", + "0000749", + "0000750", + "0000751", + "0000752", + "0000753", + "0000754", + "0000755", + "0000756", + "0000757", + "0000758", + "0000759", + "0000760", + "0000761", + "0000762", + "0000763", + "0000764", + "0000765", + "0000766", + "0000767", + "0000768", + "0000769", + "0000770", + "0000771", + "0000772", + "0000773", + "0000774", + "0000775", + "0000776", + "0000777", + "0000778", + "0000779", + "0000780", + "0000781", + "0000782", + "0000783", + "0000784", + "0000785", + "0000786", + "0000787", + "0000788", + "0000789", + "0000790", + "0000791", + "0000792", + "0000793", + "0000794", + "0000795", + "0000796", + "0000797", + "0000798", + "0000799", + "0000800", + "0000801", + "0000802", + "0000803", + "0000804", + "0000805", + "0000806", + "0000807", + "0000808", + "0000809", + "0000810", + "0000811", + "0000812", + "0000813", + "0000814", + "0000815", + "0000816", + "0000817", + "0000818", + "0000819", + "0000820", + "0000821", + "0000822", + "0000823", + "0000824", + "0000825", + "0000826", + "0000827", + "0000828", + "0000829", + "0000830", + "0000831", + "0000832", + "0000833", + "0000834", + "0000835", + "0000836", + "0000837", + "0000838", + "0000839", + "0000840", + "0000841", + "0000842", + "0000843", + "0000844", + "0000845", + "0000846", + "0000847", + "0000848", + "0000849", + "0000850", + "0000851", + "0000852", + "0000853", + "0000854", + "0000855", + "0000856", + "0000857", + "0000858", + "0000859", + "0000860", + "0000861", + "0000862", + "0000863", + "0000864", + "0000865", + "0000866", + "0000867", + "0000868", + "0000869", + "0000870", + "0000871", + "0000872", + "0000873", + "0000874", + "0000875", + "0000876", + "0000877", + "0000878", + "0000879", + "0000880", + "0000881", + "0000882", + "0000883", + "0000884", + "0000885", + "0000886", + "0000887", + "0000888", + "0000889", + "0000890", + "0000891", + "0000892", + "0000893", + "0000894", + "0000895", + "0000896", + "0000897", + "0000898", + "0000899", + "0000900", + "0000901", + "0000902", + "0000903", + "0000904", + "0000905", + "0000906", + "0000907", + "0000908", + "0000909", + "0000910", + "0000911", + "0000912", + "0000913", + "0000914", + "0000915", + "0000916", + "0000917", + "0000918", + "0000919", + "0000920", + "0000921", + "0000922", + "0000923", + "0000924", + "0000925", + "0000926", + "0000927", + "0000928", + "0000929", + "0000930", + "0000931", + "0000932", + "0000933", + "0000934", + "0000935", + "0000936", + "0000937", + "0000938", + "0000939", + "0000940", + "0000941", + "0000942", + "0000943", + "0000944", + "0000945", + "0000946", + "0000947", + "0000948", + "0000949", + "0000950", + "0000951", + "0000952", + "0000953", + "0000954", + "0000955", + "0000956", + "0000957", + "0000958", + "0000959", + "0000960", + "0000961", + "0000962", + "0000963", + "0000964", + "0000965", + "0000966", + "0000967", + "0000968", + "0000969", + "0000970", + "0000971", + "0000972", + "0000973", + "0000974", + "0000975", + "0000976", + "0000977", + "0000978", + "0000979", + "0000980", + "0000981", + "0000982", + "0000983", + "0000984", + "0000985", + "0000986", + "0000987", + "0000988", + "0000989", + "0000990", + "0000991", + "0000992", + "0000993", + "0000994", + "0000995", + "0000996", + "0000997", + "0000998", + "0000999", + "0001000", + "0001001", + "0001002", + "0001003", + "0001004", + "0001005", + "0001006", + "0001007", + "0001008", + "0001009", + "0001010", + "0001011", + "0001012", + "0001013", + "0001014", + "0001015", + "0001016", + "0001017", + "0001018", + "0001019", + "0001020", + "0001021", + "0001022", + "0001023", + "0001024", + "0001025", + "0001026", + "0001027", + "0001028", + "0001029", + "0001030", + "0001031", + "0001032", + "0001033", + "0001034", + "0001035", + "0001036", + "0001037", + "0001038", + "0001039", + "0001040", + "0001041", + "0001042", + "0001043", + "0001044", + "0001045", + "0001046", + "0001047", + "0001048", + "0001049", + "0001050", + "0001051", + "0001052", + "0001053", + "0001054", + "0001055", + "0001056", + "0001057", + "0001058", + "0001059", + "0001060", + "0001061", + "0001062", + "0001063", + "0001064", + "0001065", + "0001066", + "0001067", + "0001068", + "0001069", + "0001070", + "0001071", + "0001072", + "0001073", + "0001074", + "0001075", + "0001076", + "0001077", + "0001078", + "0001079", + "0001080", + "0001081", + "0001082", + "0001083", + "0001084", + "0001085", + "0001086", + "0001087", + "0001088", + "0001089", + "0001090", + "0001091", + "0001092", + "0001093", + "0001094", + "0001095", + "0001096", + "0001097", + "0001098", + "0001099", + "0001100", + "0001101", + "0001102", + "0001103", + "0001104", + "0001105", + "0001106", + "0001107", + "0001108", + "0001109", + "0001110", + "0001111", + "0001112", + "0001113", + "0001114", + "0001115", + "0001116", + "0001117", + "0001118", + "0001119", + "0001120", + "0001121", + "0001122", + "0001123", + "0001124", + "0001125", + "0001126", + "0001127", + "0001128", + "0001129", + "0001130", + "0001131", + "0001132", + "0001133", + "0001134", + "0001135", + "0001136", + "0001137", + "0001138", + "0001139", + "0001140", + "0001141", + "0001142", + "0001143", + "0001144", + "0001145", + "0001146", + "0001147", + "0001148", + "0001149", + "0001150", + "0001151", + "0001152", + "0001153", + "0001154", + "0001155", + "0001156", + "0001157", + "0001158", + "0001159", + "0001160", + "0001161", + "0001162", + "0001163", + "0001164", + "0001165", + "0001166", + "0001167", + "0001168", + "0001169", + "0001170", + "0001171", + "0001172", + "0001173", + "0001174", + "0001175", + "0001176", + "0001177", + "0001178", + "0001179", + "0001180", + "0001181", + "0001182", + "0001183", + "0001184", + "0001185", + "0001186", + "0001187", + "0001188", + "0001189", + "0001190", + "0001191", + "0001192", + "0001193", + "0001194", + "0001195", + "0001196", + "0001197", + "0001198", + "0001199", + "0001200", + "0001201", + "0001202", + "0001203", + "0001204", + "0001205", + "0001206", + "0001207", + "0001208", + "0001209", + "0001210", + "0001211", + "0001212", + "0001213", + "0001214", + "0001215", + "0001216", + "0001217", + "0001218", + "0001219", + "0001220", + "0001221", + "0001222", + "0001223", + "0001224", + "0001225", + "0001226", + "0001227", + "0001228", + "0001229", + "0001230", + "0001231", + "0001232", + "0001233", + "0001234", + "0001235", + "0001236", + "0001237", + "0001238", + "0001239", + "0001240", + "0001241", + "0001242", + "0001243", + "0001244", + "0001245", + "0001246", + "0001247", + "0001248", + "0001249", + "0001250", + "0001251", + "0001252", + "0001253", + "0001254", + "0001255", + "0001256", + "0001257", + "0001258", + "0001259", + "0001260", + "0001261", + "0001262", + "0001263", + "0001264", + "0001265", + "0001266", + "0001267", + "0001268", + "0001269", + "0001270", + "0001271", + "0001272", + "0001273", + "0001274", + "0001275", + "0001276", + "0001277", + "0001278", + "0001279", + "0001280", + "0001281", + "0001282", + "0001283", + "0001284", + "0001285", + "0001286", + "0001287", + "0001288", + "0001289", + "0001290", + "0001291", + "0001292", + "0001293", + "0001294", + "0001295", + "0001296", + "0001297", + "0001298", + "0001299", + "0001300", + "0001301", + "0001302", + "0001303", + "0001304", + "0001305", + "0001306", + "0001307", + "0001308", + "0001309", + "0001310", + "0001311", + "0001312", + "0001313", + "0001314", + "0001315", + "0001316", + "0001317", + "0001318", + "0001319", + "0001320", + "0001321", + "0001322", + "0001323", + "0001324", + "0001325", + "0001326", + "0001327", + "0001328", + "0001329", + "0001330", + "0001331", + "0001332", + "0001333", + "0001334", + "0001335", + "0001336", + "0001337", + "0001338", + "0001339", + "0001340", + "0001341", + "0001342", + "0001343", + "0001344", + "0001345", + "0001346", + "0001347", + "0001348", + "0001349", + "0001350", + "0001351", + "0001352", + "0001353", + "0001354", + "0001355", + "0001356", + "0001357", + "0001358", + "0001359", + "0001360", + "0001361", + "0001362", + "0001363", + "0001364", + "0001365", + "0001366", + "0001367", + "0001368", + "0001369", + "0001370", + "0001371", + "0001372", + "0001373", + "0001374", + "0001375", + "0001376", + "0001377", + "0001378", + "0001379", + "0001380", + "0001381", + "0001382", + "0001383", + "0001384", + "0001385", + "0001386", + "0001387", + "0001388", + "0001389", + "0001390", + "0001391", + "0001392", + "0001393", + "0001394", + "0001395", + "0001396", + "0001397", + "0001398", + "0001399", + "0001400", + "0001401", + "0001402", + "0001403", + "0001404", + "0001405", + "0001406", + "0001407", + "0001408", + "0001409", + "0001410", + "0001411", + "0001412", + "0001413", + "0001414", + "0001415", + "0001416", + "0001417", + "0001418", + "0001419", + "0001420", + "0001421", + "0001422", + "0001423", + "0001424", + "0001425", + "0001426", + "0001427", + "0001428", + "0001429", + "0001430", + "0001431", + "0001432", + "0001433", + "0001434", + "0001435", + "0001436", + "0001437", + "0001438", + "0001439", + "0001440", + "0001441", + "0001442", + "0001443", + "0001444", + "0001445", + "0001446", + "0001447", + "0001448", + "0001449", + "0001450", + "0001451", + "0001452", + "0001453", + "0001454", + "0001455", + "0001456", + "0001457", + "0001458", + "0001459", + "0001460", + "0001461", + "0001462", + "0001463", + "0001464", + "0001465", + "0001466", + "0001467", + "0001468", + "0001469", + "0001470", + "0001471", + "0001472", + "0001473", + "0001474", + "0001475", + "0001476", + "0001477", + "0001478", + "0001479", + "0001480", + "0001481", + "0001482", + "0001483", + "0001484", + "0001485", + "0001486", + "0001487", + "0001488", + "0001489", + "0001490", + "0001491", + "0001492", + "0001493", + "0001494", + "0001495", + "0001496", + "0001497", + "0001498", + "0001499", + "0001500", + "0001501", + "0001502", + "0001503", + "0001504", + "0001505", + "0001506", + "0001507", + "0001508", + "0001509", + "0001510", + "0001511", + "0001512", + "0001513", + "0001514", + "0001515", + "0001516", + "0001517", + "0001518", + "0001519", + "0001520", + "0001521", + "0001522", + "0001523", + "0001524", + "0001525", + "0001526", + "0001527", + "0001528", + "0001529", + "0001530", + "0001531", + "0001532", + "0001533", + "0001534", + "0001535", + "0001536", + "0001537", + "0001538", + "0001539", + "0001540", + "0001541", + "0001542", + "0001543", + "0001544", + "0001545", + "0001546", + "0001547", + "0001548", + "0001549", + "0001550", + "0001551", + "0001552", + "0001553", + "0001554", + "0001555", + "0001556", + "0001557", + "0001558", + "0001559", + "0001560", + "0001561", + "0001562", + "0001563", + "0001564", + "0001565", + "0001566", + "0001567", + "0001568", + "0001569", + "0001570", + "0001571", + "0001572", + "0001573", + "0001574", + "0001575", + "0001576", + "0001577", + "0001578", + "0001579", + "0001580", + "0001581", + "0001582", + "0001583", + "0001584", + "0001585", + "0001586", + "0001587", + "0001588", + "0001589", + "0001590", + "0001591", + "0001592", + "0001593", + "0001594", + "0001595", + "0001596", + "0001597", + "0001598", + "0001599", + "0001600", + "0001601", + "0001602", + "0001603", + "0001604", + "0001605", + "0001606", + "0001607", + "0001608", + "0001609", + "0001610", + "0001611", + "0001612", + "0001613", + "0001614", + "0001615", + "0001616", + "0001617", + "0001618", + "0001619", + "0001620", + "0001621", + "0001622", + "0001623", + "0001624", + "0001625", + "0001626", + "0001627", + "0001628", + "0001629", + "0001630", + "0001631", + "0001632", + "0001633", + "0001634", + "0001635", + "0001636", + "0001637", + "0001638", + "0001639", + "0001640", + "0001641", + "0001642", + "0001643", + "0001644", + "0001645", + "0001646", + "0001647", + "0001648", + "0001649", + "0001650", + "0001651", + "0001652", + "0001653", + "0001654", + "0001655", + "0001656", + "0001657", + "0001658", + "0001659", + "0001660", + "0001661", + "0001662", + "0001663", + "0001664", + "0001665", + "0001666", + "0001667", + "0001668", + "0001669", + "0001670", + "0001671", + "0001672", + "0001673", + "0001674", + "0001675", + "0001676", + "0001677", + "0001678", + "0001679", + "0001680", + "0001681", + "0001682", + "0001683", + "0001684", + "0001685", + "0001686", + "0001687", + "0001688", + "0001689", + "0001690", + "0001691", + "0001692", + "0001693", + "0001694", + "0001695", + "0001696", + "0001697", + "0001698", + "0001699", + "0001700", + "0001701", + "0001702", + "0001703", + "0001704", + "0001705", + "0001706", + "0001707", + "0001708", + "0001709", + "0001710", + "0001711", + "0001712", + "0001713", + "0001714", + "0001715", + "0001716", + "0001717", + "0001718", + "0001719", + "0001720", + "0001721", + "0001722", + "0001723", + "0001724", + "0001725", + "0001726", + "0001727", + "0001728", + "0001729", + "0001730", + "0001731", + "0001732", + "0001733", + "0001734", + "0001735", + "0001736", + "0001737", + "0001738", + "0001739", + "0001740", + "0001741", + "0001742", + "0001743", + "0001744", + "0001745", + "0001746", + "0001747", + "0001748", + "0001749", + "0001750", + "0001751", + "0001752", + "0001753", + "0001754", + "0001755", + "0001756", + "0001757", + "0001758", + "0001759", + "0001760", + "0001761", + "0001762", + "0001763", + "0001764", + "0001765", + "0001766", + "0001767", + "0001768", + "0001769", + "0001770", + "0001771", + "0001772", + "0001773", + "0001774", + "0001775", + "0001776", + "0001777", + "0001778", + "0001779", + "0001780", + "0001781", + "0001782", + "0001783", + "0001784", + "0001785", + "0001786", + "0001787", + "0001788", + "0001789", + "0001790", + "0001791", + "0001792", + "0001793", + "0001794", + "0001795", + "0001796", + "0001797", + "0001798", + "0001799", + "0001800", + "0001801", + "0001802", + "0001803", + "0001804", + "0001805", + "0001806", + "0001807", + "0001808", + "0001809", + "0001810", + "0001811", + "0001812", + "0001813", + "0001814", + "0001815", + "0001816", + "0001817", + "0001818", + "0001819", + "0001820", + "0001821", + "0001822", + "0001823", + "0001824", + "0001825", + "0001826", + "0001827", + "0001828", + "0001829", + "0001830", + "0001831", + "0001832", + "0001833", + "0001834", + "0001835", + "0001836", + "0001837", + "0001838", + "0001839", + "0001840", + "0001841", + "0001842", + "0001843", + "0001844", + "0001845", + "0001846", + "0001847", + "0001848", + "0001849", + "0001850", + "0001851", + "0001852", + "0001853", + "0001854", + "0001855", + "0001856", + "0001857", + "0001858", + "0001859", + "0001860", + "0001861", + "0001862", + "0001863", + "0001864", + "0001865", + "0001866", + "0001867", + "0001868", + "0001869", + "0001870", + "0001871", + "0001872", + "0001873", + "0001874", + "0001875", + "0001876", + "0001877", + "0001878", + "0001879", + "0001880", + "0001881", + "0001882", + "0001883", + "0001884", + "0001885", + "0001886", + "0001887", + "0001888", + "0001889", + "0001890", + "0001891", + "0001892", + "0001893", + "0001894", + "0001895", + "0001896", + "0001897", + "0001898", + "0001899", + "0001900", + "0001901", + "0001902", + "0001903", + "0001904", + "0001905", + "0001906", + "0001907", + "0001908", + "0001909", + "0001910", + "0001911", + "0001912", + "0001913", + "0001914", + "0001915", + "0001916", + "0001917", + "0001918", + "0001919", + "0001920", + "0001921", + "0001922", + "0001923", + "0001924", + "0001925", + "0001926", + "0001927", + "0001928", + "0001929", + "0001930", + "0001931", + "0001932", + "0001933", + "0001934", + "0001935", + "0001936", + "0001937", + "0001938", + "0001939", + "0001940", + "0001941", + "0001942", + "0001943", + "0001944", + "0001945", + "0001946", + "0001947", + "0001948", + "0001949", + "0001950", + "0001951", + "0001952", + "0001953", + "0001954", + "0001955", + "0001956", + "0001957", + "0001958", + "0001959", + "0001960", + "0001961", + "0001962", + "0001963", + "0001964", + "0001965", + "0001966", + "0001967", + "0001968", + "0001969", + "0001970", + "0001971", + "0001972", + "0001973", + "0001974", + "0001975", + "0001976", + "0001977", + "0001978", + "0001979", + "0001980", + "0001981", + "0001982", + "0001983", + "0001984", + "0001985", + "0001986", + "0001987", + "0001988", + "0001989", + "0001990", + "0001991", + "0001992", + "0001993", + "0001994", + "0001995", + "0001996", + "0001997", + "0001998", + "0001999", + "0002000", + "0002001", + "0002002", + "0002003", + "0002004", + "0002005", + "0002006", + "0002007", + "0002008", + "0002009", + "0002010", + "0002011", + "0002012", + "0002013", + "0002014", + "0002015", + "0002016", + "0002017", + "0002018", + "0002019", + "0002020", + "0002021", + "0002022", + "0002023", + "0002024", + "0002025", + "0002026", + "0002027", + "0002028", + "0002029", + "0002030", + "0002031", + "0002032", + "0002033", + "0002034", + "0002035", + "0002036", + "0002037", + "0002038", + "0002039", + "0002040", + "0002041", + "0002042", + "0002043", + "0002044", + "0002045", + "0002046", + "0002047", + "0002048", + "0002049", + "0002050", + "0002051", + "0002052", + "0002053", + "0002054", + "0002055", + "0002056", + "0002057", + "0002058", + "0002059", + "0002060", + "0002061", + "0002062", + "0002063", + "0002064", + "0002065", + "0002066", + "0002067", + "0002068", + "0002069", + "0002070", + "0002071", + "0002072", + "0002073", + "0002074", + "0002075", + "0002076", + "0002077", + "0002078", + "0002079", + "0002080", + "0002081", + "0002082", + "0002083", + "0002084", + "0002085", + "0002086", + "0002087", + "0002088", + "0002089", + "0002090", + "0002091", + "0002092", + "0002093", + "0002094", + "0002095", + "0002096", + "0002097", + "0002098", + "0002099", + "0002100", + "0002101", + "0002102", + "0002103", + "0002104", + "0002105", + "0002106", + "0002107", + "0002108", + "0002109", + "0002110", + "0002111", + "0002112", + "0002113", + "0002114", + "0002115", + "0002116", + "0002117", + "0002118", + "0002119", + "0002120", + "0002121", + "0002122", + "0002123", + "0002124", + "0002125", + "0002126", + "0002127", + "0002128", + "0002129", + "0002130", + "0002131", + "0002132", + "0002133", + "0002134", + "0002135", + "0002136", + "0002137", + "0002138", + "0002139", + "0002140", + "0002141", + "0002142", + "0002143", + "0002144", + "0002145", + "0002146", + "0002147", + "0002148", + "0002149", + "0002150", + "0002151", + "0002152", + "0002153", + "0002154", + "0002155", + "0002156", + "0002157", + "0002158", + "0002159", + "0002160", + "0002161", + "0002162", + "0002163", + "0002164", + "0002165", + "0002166", + "0002167", + "0002168", + "0002169", + "0002170", + "0002171", + "0002172", + "0002173", + "0002174", + "0002175", + "0002176", + "0002177", + "0002178", + "0002179", + "0002180", + "0002181", + "0002182", + "0002183", + "0002184", + "0002185", + "0002186", + "0002187", + "0002188", + "0002189", + "0002190", + "0002191", + "0002192", + "0002193", + "0002194", + "0002195", + "0002196", + "0002197", + "0002198", + "0002199", + "0002200", + "0002201", + "0002202", + "0002203", + "0002204", + "0002205", + "0002206", + "0002207", + "0002208", + "0002209", + "0002210", + "0002211", + "0002212", + "0002213", + "0002214", + "0002215", + "0002216", + "0002217", + "0002218", + "0002219", + "0002220", + "0002221", + "0002222", + "0002223", + "0002224", + "0002225", + "0002226", + "0002227", + "0002228", + "0002229", + "0002230", + "0002231", + "0002232", + "0002233", + "0002234", + "0002235", + "0002236", + "0002237", + "0002238", + "0002239", + "0002240", + "0002241", + "0002242", + "0002243", + "0002244", + "0002245", + "0002246", + "0002247", + "0002248", + "0002249", + "0002250", + "0002251", + "0002252", + "0002253", + "0002254", + "0002255", + "0002256", + "0002257", + "0002258", + "0002259", + "0002260", + "0002261", + "0002262", + "0002263", + "0002264", + "0002265", + "0002266", + "0002267", + "0002268", + "0002269", + "0002270", + "0002271", + "0002272", + "0002273", + "0002274", + "0002275", + "0002276", + "0002277", + "0002278", + "0002279", + "0002280", + "0002281", + "0002282", + "0002283", + "0002284", + "0002285", + "0002286", + "0002287", + "0002288", + "0002289", + "0002290", + "0002291", + "0002292", + "0002293", + "0002294", + "0002295", + "0002296", + "0002297", + "0002298", + "0002299", + "0002300", + "0002301", + "0002302", + "0002303", + "0002304", + "0002305", + "0002306", + "0002307", + "0002308", + "0002309", + "0002310", + "0002311", + "0002312", + "0002313", + "0002314", + "0002315", + "0002316", + "0002317", + "0002318", + "0002319", + "0002320", + "0002321", + "0002322", + "0002323", + "0002324", + "0002325", + "0002326", + "0002327", + "0002328", + "0002329", + "0002330", + "0002331", + "0002332", + "0002333", + "0002334", + "0002335", + "0002336", + "0002337", + "0002338", + "0002339", + "0002340", + "0002341", + "0002342", + "0002343", + "0002344", + "0002345", + "0002346", + "0002347", + "0002348", + "0002349", + "0002350", + "0002351", + "0002352", + "0002353", + "0002354", + "0002355", + "0002356", + "0002357", + "0002358", + "0002359", + "0002360", + "0002361", + "0002362", + "0002363", + "0002364", + "0002365", + "0002366", + "0002367", + "0002368", + "0002369", + "0002370", + "0002371", + "0002372", + "0002373", + "0002374", + "0002375", + "0002376", + "0002377", + "0002378", + "0002379", + "0002380", + "0002381", + "0002382", + "0002383", + "0002384", + "0002385", + "0002386", + "0002387", + "0002388", + "0002389", + "0002390", + "0002391", + "0002392", + "0002393", + "0002394", + "0002395", + "0002396", + "0002397", + "0002398", + "0002399", + "0002400", + "0002401", + "0002402", + "0002403", + "0002404", + "0002405", + "0002406", + "0002407", + "0002408", + "0002409", + "0002410", + "0002411", + "0002412", + "0002413", + "0002414", + "0002415", + "0002416", + "0002417", + "0002418", + "0002419", + "0002420", + "0002421", + "0002422", + "0002423", + "0002424", + "0002425", + "0002426", + "0002427", + "0002428", + "0002429", + "0002430", + "0002431", + "0002432", + "0002433", + "0002434", + "0002435", + "0002436", + "0002437", + "0002438", + "0002439", + "0002440", + "0002441", + "0002442", + "0002443", + "0002444", + "0002445", + "0002446", + "0002447", + "0002448", + "0002449", + "0002450", + "0002451", + "0002452", + "0002453", + "0002454", + "0002455", + "0002456", + "0002457", + "0002458", + "0002459", + "0002460", + "0002461", + "0002462", + "0002463", + "0002464", + "0002465", + "0002466", + "0002467", + "0002468", + "0002469", + "0002470", + "0002471", + "0002472", + "0002473", + "0002474", + "0002475", + "0002476", + "0002477", + "0002478", + "0002479", + "0002480", + "0002481", + "0002482", + "0002483", + "0002484", + "0002485", + "0002486", + "0002487", + "0002488", + "0002489", + "0002490", + "0002491", + "0002492", + "0002493", + "0002494", + "0002495", + "0002496", + "0002497", + "0002498", + "0002499", + "0002500", + "0002501", + "0002502", + "0002503", + "0002504", + "0002505", + "0002506", + "0002507", + "0002508", + "0002509", + "0002510", + "0002511", + "0002512", + "0002513", + "0002514", + "0002515", + "0002516", + "0002517", + "0002518", + "0002519", + "0002520", + "0002521", + "0002522", + "0002523", + "0002524", + "0002525", + "0002526", + "0002527", + "0002528", + "0002529", + "0002530", + "0002531", + "0002532", + "0002533", + "0002534", + "0002535", + "0002536", + "0002537", + "0002538", + "0002539", + "0002540", + "0002541", + "0002542", + "0002543", + "0002544", + "0002545", + "0002546", + "0002547", + "0002548", + "0002549", + "0002550", + "0002551", + "0002552", + "0002553", + "0002554", + "0002555", + "0002556", + "0002557", + "0002558", + "0002559", + "0002560", + "0002561", + "0002562", + "0002563", + "0002564", + "0002565", + "0002566", + "0002567", + "0002568", + "0002569", + "0002570", + "0002571", + "0002572", + "0002573", + "0002574", + "0002575", + "0002576", + "0002577", + "0002578", + "0002579", + "0002580", + "0002581", + "0002582", + "0002583", + "0002584", + "0002585", + "0002586", + "0002587", + "0002588", + "0002589", + "0002590", + "0002591", + "0002592", + "0002593", + "0002594", + "0002595", + "0002596", + "0002597", + "0002598", + "0002599", + "0002600", + "0002601", + "0002602", + "0002603", + "0002604", + "0002605", + "0002606", + "0002607", + "0002608", + "0002609", + "0002610", + "0002611", + "0002612", + "0002613", + "0002614", + "0002615", + "0002616", + "0002617", + "0002618", + "0002619", + "0002620", + "0002621", + "0002622", + "0002623", + "0002624", + "0002625", + "0002626", + "0002627", + "0002628", + "0002629", + "0002630", + "0002631", + "0002632", + "0002633", + "0002634", + "0002635", + "0002636", + "0002637", + "0002638", + "0002639", + "0002640", + "0002641", + "0002642", + "0002643", + "0002644", + "0002645", + "0002646", + "0002647", + "0002648", + "0002649", + "0002650", + "0002651", + "0002652", + "0002653", + "0002654", + "0002655", + "0002656", + "0002657", + "0002658", + "0002659", + "0002660", + "0002661", + "0002662", + "0002663", + "0002664", + "0002665", + "0002666", + "0002667", + "0002668", + "0002669", + "0002670", + "0002671", + "0002672", + "0002673", + "0002674", + "0002675", + "0002676", + "0002677", + "0002678", + "0002679", + "0002680", + "0002681", + "0002682", + "0002683", + "0002684", + "0002685", + "0002686", + "0002687", + "0002688", + "0002689", + "0002690", + "0002691", + "0002692", + "0002693", + "0002694", + "0002695", + "0002696", + "0002697", + "0002698", + "0002699", + "0002700", + "0002701", + "0002702", + "0002703", + "0002704", + "0002705", + "0002706", + "0002707", + "0002708", + "0002709", + "0002710", + "0002711", + "0002712", + "0002713", + "0002714", + "0002715", + "0002716", + "0002717", + "0002718", + "0002719", + "0002720", + "0002721", + "0002722", + "0002723", + "0002724", + "0002725", + "0002726", + "0002727", + "0002728", + "0002729", + "0002730", + "0002731", + "0002732", + "0002733", + "0002734", + "0002735", + "0002736", + "0002737", + "0002738", + "0002739", + "0002740", + "0002741", + "0002742", + "0002743", + "0002744", + "0002745", + "0002746", + "0002747", + "0002748", + "0002749", + "0002750", + "0002751", + "0002752", + "0002753", + "0002754", + "0002755", + "0002756", + "0002757", + "0002758", + "0002759", + "0002760", + "0002761", + "0002762", + "0002763", + "0002764", + "0002765", + "0002766", + "0002767", + "0002768", + "0002769", + "0002770", + "0002771", + "0002772", + "0002773", + "0002774", + "0002775", + "0002776", + "0002777", + "0002778", + "0002779", + "0002780", + "0002781", + "0002782", + "0002783", + "0002784", + "0002785", + "0002786", + "0002787", + "0002788", + "0002789", + "0002790", + "0002791", + "0002792", + "0002793", + "0002794", + "0002795", + "0002796", + "0002797", + "0002798", + "0002799", + "0002800", + "0002801", + "0002802", + "0002803", + "0002804", + "0002805", + "0002806", + "0002807", + "0002808", + "0002809", + "0002810", + "0002811", + "0002812", + "0002813", + "0002814", + "0002815", + "0002816", + "0002817", + "0002818", + "0002819", + "0002820", + "0002821", + "0002822", + "0002823", + "0002824", + "0002825", + "0002826", + "0002827", + "0002828", + "0002829", + "0002830", + "0002831", + "0002832", + "0002833", + "0002834", + "0002835", + "0002836", + "0002837", + "0002838", + "0002839", + "0002840", + "0002841", + "0002842", + "0002843", + "0002844", + "0002845", + "0002846", + "0002847", + "0002848", + "0002849", + "0002850", + "0002851", + "0002852", + "0002853", + "0002854", + "0002855", + "0002856", + "0002857", + "0002858", + "0002859", + "0002860", + "0002861", + "0002862", + "0002863", + "0002864", + "0002865", + "0002866", + "0002867", + "0002868", + "0002869", + "0002870", + "0002871", + "0002872", + "0002873", + "0002874", + "0002875", + "0002876", + "0002877", + "0002878", + "0002879", + "0002880", + "0002881", + "0002882", + "0002883", + "0002884", + "0002885", + "0002886", + "0002887", + "0002888", + "0002889", + "0002890", + "0002891", + "0002892", + "0002893", + "0002894", + "0002895", + "0002896", + "0002897", + "0002898", + "0002899", + "0002900", + "0002901", + "0002902", + "0002903", + "0002904", + "0002905", + "0002906", + "0002907", + "0002908", + "0002909", + "0002910", + "0002911", + "0002912", + "0002913", + "0002914", + "0002915", + "0002916", + "0002917", + "0002918", + "0002919", + "0002920", + "0002921", + "0002922", + "0002923", + "0002924", + "0002925", + "0002926", + "0002927", + "0002928", + "0002929", + "0002930", + "0002931", + "0002932", + "0002933", + "0002934", + "0002935", + "0002936", + "0002937", + "0002938", + "0002939", + "0002940", + "0002941", + "0002942", + "0002943", + "0002944", + "0002945", + "0002946", + "0002947", + "0002948", + "0002949", + "0002950", + "0002951", + "0002952", + "0002953", + "0002954", + "0002955", + "0002956", + "0002957", + "0002958", + "0002959", + "0002960", + "0002961", + "0002962", + "0002963", + "0002964", + "0002965", + "0002966", + "0002967", + "0002968", + "0002969", + "0002970", + "0002971", + "0002972", + "0002973", + "0002974", + "0002975", + "0002976", + "0002977", + "0002978", + "0002979", + "0002980", + "0002981", + "0002982", + "0002983", + "0002984", + "0002985", + "0002986", + "0002987", + "0002988", + "0002989", + "0002990", + "0002991", + "0002992", + "0002993", + "0002994", + "0002995", + "0002996", + "0002997", + "0002998", + "0002999", + "2000000", + "2000001", + "2000002", + "2000003", + "2000004", + "2000005", + "2000006", + "2000007", + "2000008", + "2000009", + "2000010", + "2000011", + "2000012", + "2000013", + "2000014", + "2000015", + "2000016", + "2000017", + "2000018", + "2000019", + "2000020", + "2000021", + "2000022", + "2000023", + "2000024", + "2000025", + "2000026", + "2000027", + "2000028", + "2000029", + "2000030", + "2000031", + "2000032", + "2000033", + "2000034", + "2000035", + "2000036", + "2000037", + "2000038", + "2000039", + "2000040", + "2000041", + "2000042", + "2000043", + "2000044", + "2000045", + "2000046", + "2000047", + "2000048", + "2000049", + "2000050", + "2000051", + "2000052", + "2000053", + "2000054", + "2000055", + "2000056", + "2000057", + "2000058", + "2000059", + "2000060", + "2000061", + "2000062", + "2000063", + "2000064", + "2000065", + "2000066", + "2000067", + "2000068", + "2000069", + "2000070", + "2000071", + "2000072", + "2000073", + "2000074", + "2000075", + "2000076", + "2000077", + "2000078", + "2000079", + "2000080", + "2000081", + "2000082", + "2000083", + "2000084", + "2000085", + "2000086", + "2000087", + "2000088", + "2000089", + "2000090", + "2000091", + "2000092", + "2000093", + "2000094", + "2000095", + "2000096", + "2000097", + "2000098", + "2000099", + "2000100", + "2000101", + "2000102", + "2000103", + "2000104", + "2000105", + "2000106", + "2000107", + "2000108", + "2000109", + "2000110", + "2000111", + "2000112", + "2000113", + "2000114", + "2000115", + "2000116", + "2000117", + "2000118", + "2000119", + "2000120", + "2000121", + "2000122", + "2000123", + "2000124", + "2000125", + "2000126", + "2000127", + "2000128", + "2000129", + "2000130", + "2000131", + "2000132", + "2000133", + "2000134", + "2000135", + "2000136", + "2000137", + "2000138", + "2000139", + "2000140", + "2000141", + "2000142", + "2000143", + "2000144", + "2000145", + "2000146", + "2000147", + "2000148", + "2000149", + "2000150", + "2000151", + "2000152", + "2000153", + "2000154", + "2000155", + "2000156", + "2000157", + "2000158", + "2000159", + "2000160", + "2000161", + "2000162", + "2000163", + "2000164", + "2000165", + "2000166", + "2000167", + "2000168", + "2000169", + "2000170", + "2000171", + "2000172", + "2000173", + "2000174", + "2000175", + "2000176", + "2000177", + "2000178", + "2000179", + "2000180", + "2000181", + "2000182", + "2000183", + "2000184", + "2000185", + "2000186", + "2000187", + "2000188", + "2000189", + "2000190", + "2000191", + "2000192", + "2000193", + "2000194", + "2000195", + "2000196", + "2000197", + "2000198", + "2000199", + "2000200", + "2000201", + "2000202", + "2000203", + "2000204", + "2000205", + "2000206", + "2000207", + "2000208", + "2000209", + "2000210", + "2000211", + "2000212", + "2000213", + "2000214", + "2000215", + "2000216", + "2000217", + "2000218", + "2000219", + "2000220", + "2000221", + "2000222", + "2000223", + "2000224", + "2000225", + "2000226", + "2000227", + "2000228", + "2000229", + "2000230", + "2000231", + "2000232", + "2000233", + "2000234", + "2000235", + "2000236", + "2000237", + "2000238", + "2000239", + "2000240", + "2000241", + "2000242", + "2000243", + "2000244", + "2000245", + "2000246", + "2000247", + "2000248", + "2000249", + "2000250", + "2000251", + "2000252", + "2000253", + "2000254", + "2000255", + "2000256", + "2000257", + "2000258", + "2000259", + "2000260", + "2000261", + "2000262", + "2000263", + "2000264", + "2000265", + "2000266", + "2000267", + "2000268", + "2000269", + "2000270", + "2000271", + "2000272", + "2000273", + "2000274", + "2000275", + "2000276", + "2000277", + "2000278", + "2000279", + "2000280", + "2000281", + "2000282", + "2000283", + "2000284", + "2000285", + "2000286", + "2000287", + "2000288", + "2000289", + "2000290", + "2000291", + "2000292", + "2000293", + "2000294", + "2000295", + "2000296", + "2000297", + "2000298", + "2000299", + "2000300", + "2000301", + "2000302", + "2000303", + "2000304", + "2000305", + "2000306", + "2000307", + "2000308", + "2000309", + "2000310", + "2000311", + "2000312", + "2000313", + "2000314", + "2000315", + "2000316", + "2000317", + "2000318", + "2000319", + "2000320", + "2000321", + "2000322", + "2000323", + "2000324", + "2000325", + "2000326", + "2000327", + "2000328", + "2000329", + "2000330", + "2000331", + "2000332", + "2000333", + "2000334", + "2000335", + "2000336", + "2000337", + "2000338", + "2000339", + "2000340", + "2000341", + "2000342", + "2000343", + "2000344", + "2000345", + "2000346", + "2000347", + "2000348", + "2000349", + "2000350", + "2000351", + "2000352", + "2000353", + "2000354", + "2000355", + "2000356", + "2000357", + "2000358", + "2000359", + "2000360", + "2000361", + "2000362", + "2000363", + "2000364", + "2000365", + "2000366", + "2000367", + "2000368", + "2000369", + "2000370", + "2000371", + "2000372", + "2000373", + "2000374", + "2000375", + "2000376", + "2000377", + "2000378", + "2000379", + "2000380", + "2000381", + "2000382", + "2000383", + "2000384", + "2000385", + "2000386", + "2000387", + "2000388", + "2000389", + "2000390", + "2000391", + "2000392", + "2000393", + "2000394", + "2000395", + "2000396", + "2000397", + "2000398", + "2000399", + "2000400", + "2000401", + "2000402", + "2000403", + "2000404", + "2000405", + "2000406", + "2000407", + "2000408", + "2000409", + "2000410", + "2000411", + "2000412", + "2000413", + "2000414", + "2000415", + "2000416", + "2000417", + "2000418", + "2000419", + "2000420", + "2000421", + "2000422", + "2000423", + "2000424", + "2000425", + "2000426", + "2000427", + "2000428", + "2000429", + "2000430", + "2000431", + "2000432", + "2000433", + "2000434", + "2000435", + "2000436", + "2000437", + "2000438", + "2000439", + "2000440", + "2000441", + "2000442", + "2000443", + "2000444", + "2000445", + "2000446", + "2000447", + "2000448", + "2000449", + "2000450", + "2000451", + "2000452", + "2000453", + "2000454", + "2000455", + "2000456", + "2000457", + "2000458", + "2000459", + "2000460", + "2000461", + "2000462", + "2000463", + "2000464", + "2000465", + "2000466", + "2000467", + "2000468", + "2000469", + "2000470", + "2000471", + "2000472", + "2000473", + "2000474", + "2000475", + "2000476", + "2000477", + "2000478", + "2000479", + "2000480", + "2000481", + "2000482", + "2000483", + "2000484", + "2000485", + "2000486", + "2000487", + "2000488", + "2000489", + "2000490", + "2000491", + "2000492", + "2000493", + "2000494", + "2000495", + "2000496", + "2000497", + "2000498", + "2000499", + "2000500", + "2000501", + "2000502", + "2000503", + "2000504", + "2000505", + "2000506", + "2000507", + "2000508", + "2000509", + "2000510", + "2000511", + "2000512", + "2000513", + "2000514", + "2000515", + "2000516", + "2000517", + "2000518", + "2000519", + "2000520", + "2000521", + "2000522", + "2000523", + "2000524", + "2000525", + "2000526", + "2000527", + "2000528", + "2000529", + "2000530", + "2000531", + "2000532", + "2000533", + "2000534", + "2000535", + "2000536", + "2000537", + "2000538", + "2000539", + "2000540", + "2000541", + "2000542", + "2000543", + "2000544", + "2000545", + "2000546", + "2000547", + "2000548", + "2000549", + "2000550", + "2000551", + "2000552", + "2000553", + "2000554", + "2000555", + "2000556", + "2000557", + "2000558", + "2000559", + "2000560", + "2000561", + "2000562", + "2000563", + "2000564", + "2000565", + "2000566", + "2000567", + "2000568", + "2000569", + "2000570", + "2000571", + "2000572", + "2000573", + "2000574", + "2000575", + "2000576", + "2000577", + "2000578", + "2000579", + "2000580", + "2000581", + "2000582", + "2000583", + "2000584", + "2000585", + "2000586", + "2000587", + "2000588", + "2000589", + "2000590", + "2000591", + "2000592", + "2000593", + "2000594", + "2000595", + "2000596", + "2000597", + "2000598", + "2000599", + "2000600", + "2000601", + "2000602", + "2000603", + "2000604", + "2000605", + "2000606", + "2000607", + "2000608", + "2000609", + "2000610", + "2000611", + "2000612", + "2000613", + "2000614", + "2000615", + "2000616", + "2000617", + "2000618", + "2000619", + "2000620", + "2000621", + "2000622", + "2000623", + "2000624", + "2000625", + "2000626", + "2000627", + "2000628", + "2000629", + "2000630", + "2000631", + "2000632", + "2000633", + "2000634", + "2000635", + "2000636", + "2000637", + "2000638", + "2000639", + "2000640", + "2000641", + "2000642", + "2000643", + "2000644", + "2000645", + "2000646", + "2000647", + "2000648", + "2000649", + "2000650", + "2000651", + "2000652", + "2000653", + "2000654", + "2000655", + "2000656", + "2000657", + "2000658", + "2000659", + "2000660", + "2000661", + "2000662", + "2000663", + "2000664", + "2000665", + "2000666", + "2000667", + "2000668", + "2000669", + "2000670", + "2000671", + "2000672", + "2000673", + "2000674", + "2000675", + "2000676", + "2000677", + "2000678", + "2000679", + "2000680", + "2000681", + "2000682", + "2000683", + "2000684", + "2000685", + "2000686", + "2000687", + "2000688", + "2000689", + "2000690", + "2000691", + "2000692", + "2000693", + "2000694", + "2000695", + "2000696", + "2000697", + "2000698", + "2000699", + "2000700", + "2000701", + "2000702", + "2000703", + "2000704", + "2000705", + "2000706", + "2000707", + "2000708", + "2000709", + "2000710", + "2000711", + "2000712", + "2000713", + "2000714", + "2000715", + "2000716", + "2000717", + "2000718", + "2000719", + "2000720", + "2000721", + "2000722", + "2000723", + "2000724", + "2000725", + "2000726", + "2000727", + "2000728", + "2000729", + "2000730", + "2000731", + "2000732", + "2000733", + "2000734", + "2000735", + "2000736", + "2000737", + "2000738", + "2000739", + "2000740", + "2000741", + "2000742", + "2000743", + "2000744", + "2000745", + "2000746", + "2000747", + "2000748", + "2000749", + "2000750", + "2000751", + "2000752", + "2000753", + "2000754", + "2000755", + "2000756", + "2000757", + "2000758", + "2000759", + "2000760", + "2000761", + "2000762", + "2000763", + "2000764", + "2000765", + "2000766", + "2000767", + "2000768", + "2000769", + "2000770", + "2000771", + "2000772", + "2000773", + "2000774", + "2000775", + "2000776", + "2000777", + "2000778", + "2000779", + "2000780", + "2000781", + "2000782", + "2000783", + "2000784", + "2000785", + "2000786", + "2000787", + "2000788", + "2000789", + "2000790", + "2000791", + "2000792", + "2000793", + "2000794", + "2000795", + "2000796", + "2000797", + "2000798", + "2000799", + "2000800", + "2000801", + "2000802", + "2000803", + "2000804", + "2000805", + "2000806", + "2000807", + "2000808", + "2000809", + "2000810", + "2000811", + "2000812", + "2000813", + "2000814", + "2000815", + "2000816", + "2000817", + "2000818", + "2000819", + "2000820", + "2000821", + "2000822", + "2000823", + "2000824", + "2000825", + "2000826", + "2000827", + "2000828", + "2000829", + "2000830", + "2000831", + "2000832", + "2000833", + "2000834", + "2000835", + "2000836", + "2000837", + "2000838", + "2000839", + "2000840", + "2000841", + "2000842", + "2000843", + "2000844", + "2000845", + "2000846", + "2000847", + "2000848", + "2000849", + "2000850", + "2000851", + "2000852", + "2000853", + "2000854", + "2000855", + "2000856", + "2000857", + "2000858", + "2000859", + "2000860", + "2000861", + "2000862", + "2000863", + "2000864", + "2000865", + "2000866", + "2000867", + "2000868", + "2000869", + "2000870", + "2000871", + "2000872", + "2000873", + "2000874", + "2000875", + "2000876", + "2000877", + "2000878", + "2000879", + "2000880", + "2000881", + "2000882", + "2000883", + "2000884", + "2000885", + "2000886", + "2000887", + "2000888", + "2000889", + "2000890", + "2000891", + "2000892", + "2000893", + "2000894", + "2000895", + "2000896", + "2000897", + "2000898", + "2000899", + "2000900", + "2000901", + "2000902", + "2000903", + "2000904", + "2000905", + "2000906", + "2000907", + "2000908", + "2000909", + "2000910", + "2000911", + "2000912", + "2000913", + "2000914", + "2000915", + "2000916", + "2000917", + "2000918", + "2000919", + "2000920", + "2000921", + "2000922", + "2000923", + "2000924", + "2000925", + "2000926", + "2000927", + "2000928", + "2000929", + "2000930", + "2000931", + "2000932", + "2000933", + "2000934", + "2000935", + "2000936", + "2000937", + "2000938", + "2000939", + "2000940", + "2000941", + "2000942", + "2000943", + "2000944", + "2000945", + "2000946", + "2000947", + "2000948", + "2000949", + "2000950", + "2000951", + "2000952", + "2000953", + "2000954", + "2000955", + "2000956", + "2000957", + "2000958", + "2000959", + "2000960", + "2000961", + "2000962", + "2000963", + "2000964", + "2000965", + "2000966", + "2000967", + "2000968", + "2000969", + "2000970", + "2000971", + "2000972", + "2000973", + "2000974", + "2000975", + "2000976", + "2000977", + "2000978", + "2000979", + "2000980", + "2000981", + "2000982", + "2000983", + "2000984", + "2000985", + "2000986", + "2000987", + "2000988", + "2000989", + "2000990", + "2000991", + "2000992", + "2000993", + "2000994", + "2000995", + "2000996", + "2000997", + "2000998", + "2000999", + "2001000", + "2001001", + "2001002", + "2001003", + "2001004", + "2001005", + "2001006", + "2001007", + "2001008", + "2001009", + "2001010", + "2001011", + "2001012", + "2001013", + "2001014", + "2001015", + "2001016", + "2001017", + "2001018", + "2001019", + "2001020", + "2001021", + "2001022", + "2001023", + "2001024", + "2001025", + "2001026", + "2001027", + "2001028", + "2001029", + "2001030", + "2001031", + "2001032", + "2001033", + "2001034", + "2001035", + "2001036", + "2001037", + "2001038", + "2001039", + "2001040", + "2001041", + "2001042", + "2001043", + "2001044", + "2001045", + "2001046", + "2001047", + "2001048", + "2001049", + "2001050", + "2001051", + "2001052", + "2001053", + "2001054", + "2001055", + "2001056", + "2001057", + "2001058", + "2001059", + "2001060", + "2001061", + "2001062", + "2001063", + "2001064", + "2001065", + "2001066", + "2001067", + "2001068", + "2001069", + "2001070", + "2001071", + "2001072", + "2001073", + "2001074", + "2001075", + "2001076", + "2001077", + "2001078", + "2001079", + "2001080", + "2001081", + "2001082", + "2001083", + "2001084", + "2001085", + "2001086", + "2001087", + "2001088", + "2001089", + "2001090", + "2001091", + "2001092", + "2001093", + "2001094", + "2001095", + "2001096", + "2001097", + "2001098", + "2001099", + "2001100", + "2001101", + "2001102", + "2001103", + "2001104", + "2001105", + "2001106", + "2001107", + "2001108", + "2001109", + "2001110", + "2001111", + "2001112", + "2001113", + "2001114", + "2001115", + "2001116", + "2001117", + "2001118", + "2001119", + "2001120", + "2001121", + "2001122", + "2001123", + "2001124", + "2001125", + "2001126", + "2001127", + "2001128", + "2001129", + "2001130", + "2001131", + "2001132", + "2001133", + "2001134", + "2001135", + "2001136", + "2001137", + "2001138", + "2001139", + "2001140", + "2001141", + "2001142", + "2001143", + "2001144", + "2001145", + "2001146", + "2001147", + "2001148", + "2001149", + "2001150", + "2001151", + "2001152", + "2001153", + "2001154", + "2001155", + "2001156", + "2001157", + "2001158", + "2001159", + "2001160", + "2001161", + "2001162", + "2001163", + "2001164", + "2001165", + "2001166", + "2001167", + "2001168", + "2001169", + "2001170", + "2001171", + "2001172", + "2001173", + "2001174", + "2001175", + "2001176", + "2001177", + "2001178", + "2001179", + "2001180", + "2001181", + "2001182", + "2001183", + "2001184", + "2001185", + "2001186", + "2001187", + "2001188", + "2001189", + "2001190", + "2001191", + "2001192", + "2001193", + "2001194", + "2001195", + "2001196", + "2001197", + "2001198", + "2001199", + "2001200", + "2001201", + "2001202", + "2001203", + "2001204", + "2001205", + "2001206", + "2001207", + "2001208", + "2001209", + "2001210", + "2001211", + "2001212", + "2001213", + "2001214", + "2001215", + "2001216", + "2001217", + "2001218", + "2001219", + "2001220", + "2001221", + "2001222", + "2001223", + "2001224", + "2001225", + "2001226", + "2001227", + "2001228", + "2001229", + "2001230", + "2001231", + "2001232", + "2001233", + "2001234", + "2001235", + "2001236", + "2001237", + "2001238", + "2001239", + "2001240", + "2001241", + "2001242", + "2001243", + "2001244", + "2001245", + "2001246", + "2001247", + "2001248", + "2001249", + "2001250", + "2001251", + "2001252", + "2001253", + "2001254", + "2001255", + "2001256", + "2001257", + "2001258", + "2001259", + "2001260", + "2001261", + "2001262", + "2001263", + "2001264", + "2001265", + "2001266", + "2001267", + "2001268", + "2001269", + "2001270", + "2001271", + "2001272", + "2001273", + "2001274", + "2001275", + "2001276", + "2001277", + "2001278", + "2001279", + "2001280", + "2001281", + "2001282", + "2001283", + "2001284", + "2001285", + "2001286", + "2001287", + "2001288", + "2001289", + "2001290", + "2001291", + "2001292", + "2001293", + "2001294", + "2001295", + "2001296", + "2001297", + "2001298", + "2001299", + "2001300", + "2001301", + "2001302", + "2001303", + "2001304", + "2001305", + "2001306", + "2001307", + "2001308", + "2001309", + "2001310", + "2001311", + "2001312", + "2001313", + "2001314", + "2001315", + "2001316", + "2001317", + "2001318", + "2001319", + "2001320", + "2001321", + "2001322", + "2001323", + "2001324", + "2001325", + "2001326", + "2001327", + "2001328", + "2001329", + "2001330", + "2001331", + "2001332", + "2001333", + "2001334", + "2001335", + "2001336", + "2001337", + "2001338", + "2001339", + "2001340", + "2001341", + "2001342", + "2001343", + "2001344", + "2001345", + "2001346", + "2001347", + "2001348", + "2001349", + "2001350", + "2001351", + "2001352", + "2001353", + "2001354", + "2001355", + "2001356", + "2001357", + "2001358", + "2001359", + "2001360", + "2001361", + "2001362", + "2001363", + "2001364", + "2001365", + "2001366", + "2001367", + "2001368", + "2001369", + "2001370", + "2001371", + "2001372", + "2001373", + "2001374", + "2001375", + "2001376", + "2001377", + "2001378", + "2001379", + "2001380", + "2001381", + "2001382", + "2001383", + "2001384", + "2001385", + "2001386", + "2001387", + "2001388", + "2001389", + "2001390", + "2001391", + "2001392", + "2001393", + "2001394", + "2001395", + "2001396", + "2001397", + "2001398", + "2001399", + "2001400", + "2001401", + "2001402", + "2001403", + "2001404", + "2001405", + "2001406", + "2001407", + "2001408", + "2001409", + "2001410", + "2001411", + "2001412", + "2001413", + "2001414", + "2001415", + "2001416", + "2001417", + "2001418", + "2001419", + "2001420", + "2001421", + "2001422", + "2001423", + "2001424", + "2001425", + "2001426", + "2001427", + "2001428", + "2001429", + "2001430", + "2001431", + "2001432", + "2001433", + "2001434", + "2001435", + "2001436", + "2001437", + "2001438", + "2001439", + "2001440", + "2001441", + "2001442", + "2001443", + "2001444", + "2001445", + "2001446", + "2001447", + "2001448", + "2001449", + "2001450", + "2001451", + "2001452", + "2001453", + "2001454", + "2001455", + "2001456", + "2001457", + "2001458", + "2001459", + "2001460", + "2001461", + "2001462", + "2001463", + "2001464", + "2001465", + "2001466", + "2001467", + "2001468", + "2001469", + "2001470", + "2001471", + "2001472", + "2001473", + "2001474", + "2001475", + "2001476", + "2001477", + "2001478", + "2001479", + "2001480", + "2001481", + "2001482", + "2001483", + "2001484", + "2001485", + "2001486", + "2001487", + "2001488", + "2001489", + "2001490", + "2001491", + "2001492", + "2001493", + "2001494", + "2001495", + "2001496", + "2001497", + "2001498", + "2001499", + "2001500", + "2001501", + "2001502", + "2001503", + "2001504", + "2001505", + "2001506", + "2001507", + "2001508", + "2001509", + "2001510", + "2001511", + "2001512", + "2001513", + "2001514", + "2001515", + "2001516", + "2001517", + "2001518", + "2001519", + "2001520", + "2001521", + "2001522", + "2001523", + "2001524", + "2001525", + "2001526", + "2001527", + "2001528", + "2001529", + "2001530", + "2001531", + "2001532", + "2001533", + "2001534", + "2001535", + "2001536", + "2001537", + "2001538", + "2001539", + "2001540", + "2001541", + "2001542", + "2001543", + "2001544", + "2001545", + "2001546", + "2001547", + "2001548", + "2001549", + "2001550", + "2001551", + "2001552", + "2001553", + "2001554", + "2001555", + "2001556", + "2001557", + "2001558", + "2001559", + "2001560", + "2001561", + "2001562", + "2001563", + "2001564", + "2001565", + "2001566", + "2001567", + "2001568", + "2001569", + "2001570", + "2001571", + "2001572", + "2001573", + "2001574", + "2001575", + "2001576", + "2001577", + "2001578", + "2001579", + "2001580", + "2001581", + "2001582", + "2001583", + "2001584", + "2001585", + "2001586", + "2001587", + "2001588", + "2001589", + "2001590", + "2001591", + "2001592", + "2001593", + "2001594", + "2001595", + "2001596", + "2001597", + "2001598", + "2001599", + "2001600", + "2001601", + "2001602", + "2001603", + "2001604", + "2001605", + "2001606", + "2001607", + "2001608", + "2001609", + "2001610", + "2001611", + "2001612", + "2001613", + "2001614", + "2001615", + "2001616", + "2001617", + "2001618", + "2001619", + "2001620", + "2001621", + "2001622", + "2001623", + "2001624", + "2001625", + "2001626", + "2001627", + "2001628", + "2001629", + "2001630", + "2001631", + "2001632", + "2001633", + "2001634", + "2001635", + "2001636", + "2001637", + "2001638", + "2001639", + "2001640", + "2001641", + "2001642", + "2001643", + "2001644", + "2001645", + "2001646", + "2001647", + "2001648", + "2001649", + "2001650", + "2001651", + "2001652", + "2001653", + "2001654", + "2001655", + "2001656", + "2001657", + "2001658", + "2001659", + "2001660", + "2001661", + "2001662", + "2001663", + "2001664", + "2001665", + "2001666", + "2001667", + "2001668", + "2001669", + "2001670", + "2001671", + "2001672", + "2001673", + "2001674", + "2001675", + "2001676", + "2001677", + "2001678", + "2001679", + "2001680", + "2001681", + "2001682", + "2001683", + "2001684", + "2001685", + "2001686", + "2001687", + "2001688", + "2001689", + "2001690", + "2001691", + "2001692", + "2001693", + "2001694", + "2001695", + "2001696", + "2001697", + "2001698", + "2001699", + "2001700", + "2001701", + "2001702", + "2001703", + "2001704", + "2001705", + "2001706", + "2001707", + "2001708", + "2001709", + "2001710", + "2001711", + "2001712", + "2001713", + "2001714", + "2001715", + "2001716", + "2001717", + "2001718", + "2001719", + "2001720", + "2001721", + "2001722", + "2001723", + "2001724", + "2001725", + "2001726", + "2001727", + "2001728", + "2001729", + "2001730", + "2001731", + "2001732", + "2001733", + "2001734", + "2001735", + "2001736", + "2001737", + "2001738", + "2001739", + "2001740", + "2001741", + "2001742", + "2001743", + "2001744", + "2001745", + "2001746", + "2001747", + "2001748", + "2001749", + "2001750", + "2001751", + "2001752", + "2001753", + "2001754", + "2001755", + "2001756", + "2001757", + "2001758", + "2001759", + "2001760", + "2001761", + "2001762", + "2001763", + "2001764", + "2001765", + "2001766", + "2001767", + "2001768", + "2001769", + "2001770", + "2001771", + "2001772", + "2001773", + "2001774", + "2001775", + "2001776", + "2001777", + "2001778", + "2001779", + "2001780", + "2001781", + "2001782", + "2001783", + "2001784", + "2001785", + "2001786", + "2001787", + "2001788", + "2001789", + "2001790", + "2001791", + "2001792", + "2001793", + "2001794", + "2001795", + "2001796", + "2001797", + "2001798", + "2001799", + "2001800", + "2001801", + "2001802", + "2001803", + "2001804", + "2001805", + "2001806", + "2001807", + "2001808", + "2001809", + "2001810", + "2001811", + "2001812", + "2001813", + "2001814", + "2001815", + "2001816", + "2001817", + "2001818", + "2001819", + "2001820", + "2001821", + "2001822", + "2001823", + "2001824", + "2001825", + "2001826", + "2001827", + "2001828", + "2001829", + "2001830", + "2001831", + "2001832", + "2001833", + "2001834", + "2001835", + "2001836", + "2001837", + "2001838", + "2001839", + "2001840", + "2001841", + "2001842", + "2001843", + "2001844", + "2001845", + "2001846", + "2001847", + "2001848", + "2001849", + "2001850", + "2001851", + "2001852", + "2001853", + "2001854", + "2001855", + "2001856", + "2001857", + "2001858", + "2001859", + "2001860", + "2001861", + "2001862", + "2001863", + "2001864", + "2001865", + "2001866", + "2001867", + "2001868", + "2001869", + "2001870", + "2001871", + "2001872", + "2001873", + "2001874", + "2001875", + "2001876", + "2001877", + "2001878", + "2001879", + "2001880", + "2001881", + "2001882", + "2001883", + "2001884", + "2001885", + "2001886", + "2001887", + "2001888", + "2001889", + "2001890", + "2001891", + "2001892", + "2001893", + "2001894", + "2001895", + "2001896", + "2001897", + "2001898", + "2001899", + "2001900", + "2001901", + "2001902", + "2001903", + "2001904", + "2001905", + "2001906", + "2001907", + "2001908", + "2001909", + "2001910", + "2001911", + "2001912", + "2001913", + "2001914", + "2001915", + "2001916", + "2001917", + "2001918", + "2001919", + "2001920", + "2001921", + "2001922", + "2001923", + "2001924", + "2001925", + "2001926", + "2001927", + "2001928", + "2001929", + "2001930", + "2001931", + "2001932", + "2001933", + "2001934", + "2001935", + "2001936", + "2001937", + "2001938", + "2001939", + "2001940", + "2001941", + "2001942", + "2001943", + "2001944", + "2001945", + "2001946", + "2001947", + "2001948", + "2001949", + "2001950", + "2001951", + "2001952", + "2001953", + "2001954", + "2001955", + "2001956", + "2001957", + "2001958", + "2001959", + "2001960", + "2001961", + "2001962", + "2001963", + "2001964", + "2001965", + "2001966", + "2001967", + "2001968", + "2001969", + "2001970", + "2001971", + "2001972", + "2001973", + "2001974", + "2001975", + "2001976", + "2001977", + "2001978", + "2001979", + "2001980", + "2001981", + "2001982", + "2001983", + "2001984", + "2001985", + "2001986", + "2001987", + "2001988", + "2001989", + "2001990", + "2001991", + "2001992", + "2001993", + "2001994", + "2001995", + "2001996", + "2001997", + "2001998", + "2001999", + "2002000", + "2002001", + "2002002", + "2002003", + "2002004", + "2002005", + "2002006", + "2002007", + "2002008", + "2002009", + "2002010", + "2002011", + "2002012", + "2002013", + "2002014", + "2002015", + "2002016", + "2002017", + "2002018", + "2002019", + "2002020", + "2002021", + "2002022", + "2002023", + "2002024", + "2002025", + "2002026", + "2002027", + "2002028", + "2002029", + "2002030", + "2002031", + "2002032", + "2002033", + "2002034", + "2002035", + "2002036", + "2002037", + "2002038", + "2002039", + "2002040", + "2002041", + "2002042", + "2002043", + "2002044", + "2002045", + "2002046", + "2002047", + "2002048", + "2002049", + "2002050", + "2002051", + "2002052", + "2002053", + "2002054", + "2002055", + "2002056", + "2002057", + "2002058", + "2002059", + "2002060", + "2002061", + "2002062", + "2002063", + "2002064", + "2002065", + "2002066", + "2002067", + "2002068", + "2002069", + "2002070", + "2002071", + "2002072", + "2002073", + "2002074", + "2002075", + "2002076", + "2002077", + "2002078", + "2002079", + "2002080", + "2002081", + "2002082", + "2002083", + "2002084", + "2002085", + "2002086", + "2002087", + "2002088", + "2002089", + "2002090", + "2002091", + "2002092", + "2002093", + "2002094", + "2002095", + "2002096", + "2002097", + "2002098", + "2002099", + "2002100", + "2002101", + "2002102", + "2002103", + "2002104", + "2002105", + "2002106", + "2002107", + "2002108", + "2002109", + "2002110", + "2002111", + "2002112", + "2002113", + "2002114", + "2002115", + "2002116", + "2002117", + "2002118", + "2002119", + "2002120", + "2002121", + "2002122", + "2002123", + "2002124", + "2002125", + "2002126", + "2002127", + "2002128", + "2002129", + "2002130", + "2002131", + "2002132", + "2002133", + "2002134", + "2002135", + "2002136", + "2002137", + "2002138", + "2002139", + "2002140", + "2002141", + "2002142", + "2002143", + "2002144", + "2002145", + "2002146", + "2002147", + "2002148", + "2002149", + "2002150", + "2002151", + "2002152", + "2002153", + "2002154", + "2002155", + "2002156", + "2002157", + "2002158", + "2002159", + "2002160", + "2002161", + "2002162", + "2002163", + "2002164", + "2002165", + "2002166", + "2002167", + "2002168", + "2002169", + "2002170", + "2002171", + "2002172", + "2002173", + "2002174", + "2002175", + "2002176", + "2002177", + "2002178", + "2002179", + "2002180", + "2002181", + "2002182", + "2002183", + "2002184", + "2002185", + "2002186", + "2002187", + "2002188", + "2002189", + "2002190", + "2002191", + "2002192", + "2002193", + "2002194", + "2002195", + "2002196", + "2002197", + "2002198", + "2002199", + "2002200", + "2002201", + "2002202", + "2002203", + "2002204", + "2002205", + "2002206", + "2002207", + "2002208", + "2002209", + "2002210", + "2002211", + "2002212", + "2002213", + "2002214", + "2002215", + "2002216", + "2002217", + "2002218", + "2002219", + "2002220", + "2002221", + "2002222", + "2002223", + "2002224", + "2002225", + "2002226", + "2002227", + "2002228", + "2002229", + "2002230", + "2002231", + "2002232", + "2002233", + "2002234", + "2002235", + "2002236", + "2002237", + "2002238", + "2002239", + "2002240", + "2002241", + "2002242", + "2002243", + "2002244", + "2002245", + "2002246", + "2002247", + "2002248", + "2002249", + "2002250", + "2002251", + "2002252", + "2002253", + "2002254", + "2002255", + "2002256", + "2002257", + "2002258", + "2002259", + "2002260", + "2002261", + "2002262", + "2002263", + "2002264", + "2002265", + "2002266", + "2002267", + "2002268", + "2002269", + "2002270", + "2002271", + "2002272", + "2002273", + "2002274", + "2002275", + "2002276", + "2002277", + "2002278", + "2002279", + "2002280", + "2002281", + "2002282", + "2002283", + "2002284", + "2002285", + "2002286", + "2002287", + "2002288", + "2002289", + "2002290", + "2002291", + "2002292", + "2002293", + "2002294", + "2002295", + "2002296", + "2002297", + "2002298", + "2002299", + "2002300", + "2002301", + "2002302", + "2002303", + "2002304", + "2002305", + "2002306", + "2002307", + "2002308", + "2002309", + "2002310", + "2002311", + "2002312", + "2002313", + "2002314", + "2002315", + "2002316", + "2002317", + "2002318", + "2002319", + "2002320", + "2002321", + "2002322", + "2002323", + "2002324", + "2002325", + "2002326", + "2002327", + "2002328", + "2002329", + "2002330", + "2002331", + "2002332", + "2002333", + "2002334", + "2002335", + "2002336", + "2002337", + "2002338", + "2002339", + "2002340", + "2002341", + "2002342", + "2002343", + "2002344", + "2002345", + "2002346", + "2002347", + "2002348", + "2002349", + "2002350", + "2002351", + "2002352", + "2002353", + "2002354", + "2002355", + "2002356", + "2002357", + "2002358", + "2002359", + "2002360", + "2002361", + "2002362", + "2002363", + "2002364", + "2002365", + "2002366", + "2002367", + "2002368", + "2002369", + "2002370", + "2002371", + "2002372", + "2002373", + "2002374", + "2002375", + "2002376", + "2002377", + "2002378", + "2002379", + "2002380", + "2002381", + "2002382", + "2002383", + "2002384", + "2002385", + "2002386", + "2002387", + "2002388", + "2002389", + "2002390", + "2002391", + "2002392", + "2002393", + "2002394", + "2002395", + "2002396", + "2002397", + "2002398", + "2002399", + "2002400", + "2002401", + "2002402", + "2002403", + "2002404", + "2002405", + "2002406", + "2002407", + "2002408", + "2002409", + "2002410", + "2002411", + "2002412", + "2002413", + "2002414", + "2002415", + "2002416", + "2002417", + "2002418", + "2002419", + "2002420", + "2002421", + "2002422", + "2002423", + "2002424", + "2002425", + "2002426", + "2002427", + "2002428", + "2002429", + "2002430", + "2002431", + "2002432", + "2002433", + "2002434", + "2002435", + "2002436", + "2002437", + "2002438", + "2002439", + "2002440", + "2002441", + "2002442", + "2002443", + "2002444", + "2002445", + "2002446", + "2002447", + "2002448", + "2002449", + "2002450", + "2002451", + "2002452", + "2002453", + "2002454", + "2002455", + "2002456", + "2002457", + "2002458", + "2002459", + "2002460", + "2002461", + "2002462", + "2002463", + "2002464", + "2002465", + "2002466", + "2002467", + "2002468", + "2002469", + "2002470", + "2002471", + "2002472", + "2002473", + "2002474", + "2002475", + "2002476", + "2002477", + "2002478", + "2002479", + "2002480", + "2002481", + "2002482", + "2002483", + "2002484", + "2002485", + "2002486", + "2002487", + "2002488", + "2002489", + "2002490", + "2002491", + "2002492", + "2002493", + "2002494", + "2002495", + "2002496", + "2002497", + "2002498", + "2002499", + "2002500", + "2002501", + "2002502", + "2002503", + "2002504", + "2002505", + "2002506", + "2002507", + "2002508", + "2002509", + "2002510", + "2002511", + "2002512", + "2002513", + "2002514", + "2002515", + "2002516", + "2002517", + "2002518", + "2002519", + "2002520", + "2002521", + "2002522", + "2002523", + "2002524", + "2002525", + "2002526", + "2002527", + "2002528", + "2002529", + "2002530", + "2002531", + "2002532", + "2002533", + "2002534", + "2002535", + "2002536", + "2002537", + "2002538", + "2002539", + "2002540", + "2002541", + "2002542", + "2002543", + "2002544", + "2002545", + "2002546", + "2002547", + "2002548", + "2002549", + "2002550", + "2002551", + "2002552", + "2002553", + "2002554", + "2002555", + "2002556", + "2002557", + "2002558", + "2002559", + "2002560", + "2002561", + "2002562", + "2002563", + "2002564", + "2002565", + "2002566", + "2002567", + "2002568", + "2002569", + "2002570", + "2002571", + "2002572", + "2002573", + "2002574", + "2002575", + "2002576", + "2002577", + "2002578", + "2002579", + "2002580", + "2002581", + "2002582", + "2002583", + "2002584", + "2002585", + "2002586", + "2002587", + "2002588", + "2002589", + "2002590", + "2002591", + "2002592", + "2002593", + "2002594", + "2002595", + "2002596", + "2002597", + "2002598", + "2002599", + "2002600", + "2002601", + "2002602", + "2002603", + "2002604", + "2002605", + "2002606", + "2002607", + "2002608", + "2002609", + "2002610", + "2002611", + "2002612", + "2002613", + "2002614", + "2002615", + "2002616", + "2002617", + "2002618", + "2002619", + "2002620", + "2002621", + "2002622", + "2002623", + "2002624", + "2002625", + "2002626", + "2002627", + "2002628", + "2002629", + "2002630", + "2002631", + "2002632", + "2002633", + "2002634", + "2002635", + "2002636", + "2002637", + "2002638", + "2002639", + "2002640", + "2002641", + "2002642", + "2002643", + "2002644", + "2002645", + "2002646", + "2002647", + "2002648", + "2002649", + "2002650", + "2002651", + "2002652", + "2002653", + "2002654", + "2002655", + "2002656", + "2002657", + "2002658", + "2002659", + "2002660", + "2002661", + "2002662", + "2002663", + "2002664", + "2002665", + "2002666", + "2002667", + "2002668", + "2002669", + "2002670", + "2002671", + "2002672", + "2002673", + "2002674", + "2002675", + "2002676", + "2002677", + "2002678", + "2002679", + "2002680", + "2002681", + "2002682", + "2002683", + "2002684", + "2002685", + "2002686", + "2002687", + "2002688", + "2002689", + "2002690", + "2002691", + "2002692", + "2002693", + "2002694", + "2002695", + "2002696", + "2002697", + "2002698", + "2002699", + "2002700", + "2002701", + "2002702", + "2002703", + "2002704", + "2002705", + "2002706", + "2002707", + "2002708", + "2002709", + "2002710", + "2002711", + "2002712", + "2002713", + "2002714", + "2002715", + "2002716", + "2002717", + "2002718", + "2002719", + "2002720", + "2002721", + "2002722", + "2002723", + "2002724", + "2002725", + "2002726", + "2002727", + "2002728", + "2002729", + "2002730", + "2002731", + "2002732", + "2002733", + "2002734", + "2002735", + "2002736", + "2002737", + "2002738", + "2002739", + "2002740", + "2002741", + "2002742", + "2002743", + "2002744", + "2002745", + "2002746", + "2002747", + "2002748", + "2002749", + "2002750", + "2002751", + "2002752", + "2002753", + "2002754", + "2002755", + "2002756", + "2002757", + "2002758", + "2002759", + "2002760", + "2002761", + "2002762", + "2002763", + "2002764", + "2002765", + "2002766", + "2002767", + "2002768", + "2002769", + "2002770", + "2002771", + "2002772", + "2002773", + "2002774", + "2002775", + "2002776", + "2002777", + "2002778", + "2002779", + "2002780", + "2002781", + "2002782", + "2002783", + "2002784", + "2002785", + "2002786", + "2002787", + "2002788", + "2002789", + "2002790", + "2002791", + "2002792", + "2002793", + "2002794", + "2002795", + "2002796", + "2002797", + "2002798", + "2002799", + "2002800", + "2002801", + "2002802", + "2002803", + "2002804", + "2002805", + "2002806", + "2002807", + "2002808", + "2002809", + "2002810", + "2002811", + "2002812", + "2002813", + "2002814", + "2002815", + "2002816", + "2002817", + "2002818", + "2002819", + "2002820", + "2002821", + "2002822", + "2002823", + "2002824", + "2002825", + "2002826", + "2002827", + "2002828", + "2002829", + "2002830", + "2002831", + "2002832", + "2002833", + "2002834", + "2002835", + "2002836", + "2002837", + "2002838", + "2002839", + "2002840", + "2002841", + "2002842", + "2002843", + "2002844", + "2002845", + "2002846", + "2002847", + "2002848", + "2002849", + "2002850", + "2002851", + "2002852", + "2002853", + "2002854", + "2002855", + "2002856", + "2002857", + "2002858", + "2002859", + "2002860", + "2002861", + "2002862", + "2002863", + "2002864", + "2002865", + "2002866", + "2002867", + "2002868", + "2002869", + "2002870", + "2002871", + "2002872", + "2002873", + "2002874", + "2002875", + "2002876", + "2002877", + "2002878", + "2002879", + "2002880", + "2002881", + "2002882", + "2002883", + "2002884", + "2002885", + "2002886", + "2002887", + "2002888", + "2002889", + "2002890", + "2002891", + "2002892", + "2002893", + "2002894", + "2002895", + "2002896", + "2002897", + "2002898", + "2002899", + "2002900", + "2002901", + "2002902", + "2002903", + "2002904", + "2002905", + "2002906", + "2002907", + "2002908", + "2002909", + "2002910", + "2002911", + "2002912", + "2002913", + "2002914", + "2002915", + "2002916", + "2002917", + "2002918", + "2002919", + "2002920", + "2002921", + "2002922", + "2002923", + "2002924", + "2002925", + "2002926", + "2002927", + "2002928", + "2002929", + "2002930", + "2002931", + "2002932", + "2002933", + "2002934", + "2002935", + "2002936", + "2002937", + "2002938", + "2002939", + "2002940", + "2002941", + "2002942", + "2002943", + "2002944", + "2002945", + "2002946", + "2002947", + "2002948", + "2002949", + "2002950", + "2002951", + "2002952", + "2002953", + "2002954", + "2002955", + "2002956", + "2002957", + "2002958", + "2002959", + "2002960", + "2002961", + "2002962", + "2002963", + "2002964", + "2002965", + "2002966", + "2002967", + "2002968", + "2002969", + "2002970", + "2002971", + "2002972", + "2002973", + "2002974", + "2002975", + "2002976", + "2002977", + "2002978", + "2002979", + "2002980", + "2002981", + "2002982", + "2002983", + "2002984", + "2002985", + "2002986", + "2002987", + "2002988", + "2002989", + "2002990", + "2002991", + "2002992", + "2002993", + "2002994", + "2002995", + "2002996", + "2002997", + "2002998", + "2002999", + "4000000", + "4000001", + "4000002", + "4000003", + "4000004", + "4000005", + "4000006", + "4000007", + "4000008", + "4000009", + "4000010", + "4000011", + "4000012", + "4000013", + "4000014", + "4000015", + "4000016", + "4000017", + "4000018", + "4000019", + "4000020", + "4000021", + "4000022", + "4000023", + "4000024", + "4000025", + "4000026", + "4000027", + "4000028", + "4000029", + "4000030", + "4000031", + "4000032", + "4000033", + "4000034", + "4000035", + "4000036", + "4000037", + "4000038", + "4000039", + "4000040", + "4000041", + "4000042", + "4000043", + "4000044", + "4000045", + "4000046", + "4000047", + "4000048", + "4000049", + "4000050", + "4000051", + "4000052", + "4000053", + "4000054", + "4000055", + "4000056", + "4000057", + "4000058", + "4000059", + "4000060", + "4000061", + "4000062", + "4000063", + "4000064", + "4000065", + "4000066", + "4000067", + "4000068", + "4000069", + "4000070", + "4000071", + "4000072", + "4000073", + "4000074", + "4000075", + "4000076", + "4000077", + "4000078", + "4000079", + "4000080", + "4000081", + "4000082", + "4000083", + "4000084", + "4000085", + "4000086", + "4000087", + "4000088", + "4000089", + "4000090", + "4000091", + "4000092", + "4000093", + "4000094", + "4000095", + "4000096", + "4000097", + "4000098", + "4000099", + "4000100", + "4000101", + "4000102", + "4000103", + "4000104", + "4000105", + "4000106", + "4000107", + "4000108", + "4000109", + "4000110", + "4000111", + "4000112", + "4000113", + "4000114", + "4000115", + "4000116", + "4000117", + "4000118", + "4000119", + "4000120", + "4000121", + "4000122", + "4000123", + "4000124", + "4000125", + "4000126", + "4000127", + "4000128", + "4000129", + "4000130", + "4000131", + "4000132", + "4000133", + "4000134", + "4000135", + "4000136", + "4000137", + "4000138", + "4000139", + "4000140", + "4000141", + "4000142", + "4000143", + "4000144", + "4000145", + "4000146", + "4000147", + "4000148", + "4000149", + "4000150", + "4000151", + "4000152", + "4000153", + "4000154", + "4000155", + "4000156", + "4000157", + "4000158", + "4000159", + "4000160", + "4000161", + "4000162", + "4000163", + "4000164", + "4000165", + "4000166", + "4000167", + "4000168", + "4000169", + "4000170", + "4000171", + "4000172", + "4000173", + "4000174", + "4000175", + "4000176", + "4000177", + "4000178", + "4000179", + "4000180", + "4000181", + "4000182", + "4000183", + "4000184", + "4000185", + "4000186", + "4000187", + "4000188", + "4000189", + "4000190", + "4000191", + "4000192", + "4000193", + "4000194", + "4000195", + "4000196", + "4000197", + "4000198", + "4000199", + "4000200", + "4000201", + "4000202", + "4000203", + "4000204", + "4000205", + "4000206", + "4000207", + "4000208", + "4000209", + "4000210", + "4000211", + "4000212", + "4000213", + "4000214", + "4000215", + "4000216", + "4000217", + "4000218", + "4000219", + "4000220", + "4000221", + "4000222", + "4000223", + "4000224", + "4000225", + "4000226", + "4000227", + "4000228", + "4000229", + "4000230", + "4000231", + "4000232", + "4000233", + "4000234", + "4000235", + "4000236", + "4000237", + "4000238", + "4000239", + "4000240", + "4000241", + "4000242", + "4000243", + "4000244", + "4000245", + "4000246", + "4000247", + "4000248", + "4000249", + "4000250", + "4000251", + "4000252", + "4000253", + "4000254", + "4000255", + "4000256", + "4000257", + "4000258", + "4000259", + "4000260", + "4000261", + "4000262", + "4000263", + "4000264", + "4000265", + "4000266", + "4000267", + "4000268", + "4000269", + "4000270", + "4000271", + "4000272", + "4000273", + "4000274", + "4000275", + "4000276", + "4000277", + "4000278", + "4000279", + "4000280", + "4000281", + "4000282", + "4000283", + "4000284", + "4000285", + "4000286", + "4000287", + "4000288", + "4000289", + "4000290", + "4000291", + "4000292", + "4000293", + "4000294", + "4000295", + "4000296", + "4000297", + "4000298", + "4000299", + "4000300", + "4000301", + "4000302", + "4000303", + "4000304", + "4000305", + "4000306", + "4000307", + "4000308", + "4000309", + "4000310", + "4000311", + "4000312", + "4000313", + "4000314", + "4000315", + "4000316", + "4000317", + "4000318", + "4000319", + "4000320", + "4000321", + "4000322", + "4000323", + "4000324", + "4000325", + "4000326", + "4000327", + "4000328", + "4000329", + "4000330", + "4000331", + "4000332", + "4000333", + "4000334", + "4000335", + "4000336", + "4000337", + "4000338", + "4000339", + "4000340", + "4000341", + "4000342", + "4000343", + "4000344", + "4000345", + "4000346", + "4000347", + "4000348", + "4000349", + "4000350", + "4000351", + "4000352", + "4000353", + "4000354", + "4000355", + "4000356", + "4000357", + "4000358", + "4000359", + "4000360", + "4000361", + "4000362", + "4000363", + "4000364", + "4000365", + "4000366", + "4000367", + "4000368", + "4000369", + "4000370", + "4000371", + "4000372", + "4000373", + "4000374", + "4000375", + "4000376", + "4000377", + "4000378", + "4000379", + "4000380", + "4000381", + "4000382", + "4000383", + "4000384", + "4000385", + "4000386", + "4000387", + "4000388", + "4000389", + "4000390", + "4000391", + "4000392", + "4000393", + "4000394", + "4000395", + "4000396", + "4000397", + "4000398", + "4000399", + "4000400", + "4000401", + "4000402", + "4000403", + "4000404", + "4000405", + "4000406", + "4000407", + "4000408", + "4000409", + "4000410", + "4000411", + "4000412", + "4000413", + "4000414", + "4000415", + "4000416", + "4000417", + "4000418", + "4000419", + "4000420", + "4000421", + "4000422", + "4000423", + "4000424", + "4000425", + "4000426", + "4000427", + "4000428", + "4000429", + "4000430", + "4000431", + "4000432", + "4000433", + "4000434", + "4000435", + "4000436", + "4000437", + "4000438", + "4000439", + "4000440", + "4000441", + "4000442", + "4000443", + "4000444", + "4000445", + "4000446", + "4000447", + "4000448", + "4000449", + "4000450", + "4000451", + "4000452", + "4000453", + "4000454", + "4000455", + "4000456", + "4000457", + "4000458", + "4000459", + "4000460", + "4000461", + "4000462", + "4000463", + "4000464", + "4000465", + "4000466", + "4000467", + "4000468", + "4000469", + "4000470", + "4000471", + "4000472", + "4000473", + "4000474", + "4000475", + "4000476", + "4000477", + "4000478", + "4000479", + "4000480", + "4000481", + "4000482", + "4000483", + "4000484", + "4000485", + "4000486", + "4000487", + "4000488", + "4000489", + "4000490", + "4000491", + "4000492", + "4000493", + "4000494", + "4000495", + "4000496", + "4000497", + "4000498", + "4000499", + "4000500", + "4000501", + "4000502", + "4000503", + "4000504", + "4000505", + "4000506", + "4000507", + "4000508", + "4000509", + "4000510", + "4000511", + "4000512", + "4000513", + "4000514", + "4000515", + "4000516", + "4000517", + "4000518", + "4000519", + "4000520", + "4000521", + "4000522", + "4000523", + "4000524", + "4000525", + "4000526", + "4000527", + "4000528", + "4000529", + "4000530", + "4000531", + "4000532", + "4000533", + "4000534", + "4000535", + "4000536", + "4000537", + "4000538", + "4000539", + "4000540", + "4000541", + "4000542", + "4000543", + "4000544", + "4000545", + "4000546", + "4000547", + "4000548", + "4000549", + "4000550", + "4000551", + "4000552", + "4000553", + "4000554", + "4000555", + "4000556", + "4000557", + "4000558", + "4000559", + "4000560", + "4000561", + "4000562", + "4000563", + "4000564", + "4000565", + "4000566", + "4000567", + "4000568", + "4000569", + "4000570", + "4000571", + "4000572", + "4000573", + "4000574", + "4000575", + "4000576", + "4000577", + "4000578", + "4000579", + "4000580", + "4000581", + "4000582", + "4000583", + "4000584", + "4000585", + "4000586", + "4000587", + "4000588", + "4000589", + "4000590", + "4000591", + "4000592", + "4000593", + "4000594", + "4000595", + "4000596", + "4000597", + "4000598", + "4000599", + "4000600", + "4000601", + "4000602", + "4000603", + "4000604", + "4000605", + "4000606", + "4000607", + "4000608", + "4000609", + "4000610", + "4000611", + "4000612", + "4000613", + "4000614", + "4000615", + "4000616", + "4000617", + "4000618", + "4000619", + "4000620", + "4000621", + "4000622", + "4000623", + "4000624", + "4000625", + "4000626", + "4000627", + "4000628", + "4000629", + "4000630", + "4000631", + "4000632", + "4000633", + "4000634", + "4000635", + "4000636", + "4000637", + "4000638", + "4000639", + "4000640", + "4000641", + "4000642", + "4000643", + "4000644", + "4000645", + "4000646", + "4000647", + "4000648", + "4000649", + "4000650", + "4000651", + "4000652", + "4000653", + "4000654", + "4000655", + "4000656", + "4000657", + "4000658", + "4000659", + "4000660", + "4000661", + "4000662", + "4000663", + "4000664", + "4000665", + "4000666", + "4000667", + "4000668", + "4000669", + "4000670", + "4000671", + "4000672", + "4000673", + "4000674", + "4000675", + "4000676", + "4000677", + "4000678", + "4000679", + "4000680", + "4000681", + "4000682", + "4000683", + "4000684", + "4000685", + "4000686", + "4000687", + "4000688", + "4000689", + "4000690", + "4000691", + "4000692", + "4000693", + "4000694", + "4000695", + "4000696", + "4000697", + "4000698", + "4000699", + "4000700", + "4000701", + "4000702", + "4000703", + "4000704", + "4000705", + "4000706", + "4000707", + "4000708", + "4000709", + "4000710", + "4000711", + "4000712", + "4000713", + "4000714", + "4000715", + "4000716", + "4000717", + "4000718", + "4000719", + "4000720", + "4000721", + "4000722", + "4000723", + "4000724", + "4000725", + "4000726", + "4000727", + "4000728", + "4000729", + "4000730", + "4000731", + "4000732", + "4000733", + "4000734", + "4000735", + "4000736", + "4000737", + "4000738", + "4000739", + "4000740", + "4000741", + "4000742", + "4000743", + "4000744", + "4000745", + "4000746", + "4000747", + "4000748", + "4000749", + "4000750", + "4000751", + "4000752", + "4000753", + "4000754", + "4000755", + "4000756", + "4000757", + "4000758", + "4000759", + "4000760", + "4000761", + "4000762", + "4000763", + "4000764", + "4000765", + "4000766", + "4000767", + "4000768", + "4000769", + "4000770", + "4000771", + "4000772", + "4000773", + "4000774", + "4000775", + "4000776", + "4000777", + "4000778", + "4000779", + "4000780", + "4000781", + "4000782", + "4000783", + "4000784", + "4000785", + "4000786", + "4000787", + "4000788", + "4000789", + "4000790", + "4000791", + "4000792", + "4000793", + "4000794", + "4000795", + "4000796", + "4000797", + "4000798", + "4000799", + "4000800", + "4000801", + "4000802", + "4000803", + "4000804", + "4000805", + "4000806", + "4000807", + "4000808", + "4000809", + "4000810", + "4000811", + "4000812", + "4000813", + "4000814", + "4000815", + "4000816", + "4000817", + "4000818", + "4000819", + "4000820", + "4000821", + "4000822", + "4000823", + "4000824", + "4000825", + "4000826", + "4000827", + "4000828", + "4000829", + "4000830", + "4000831", + "4000832", + "4000833", + "4000834", + "4000835", + "4000836", + "4000837", + "4000838", + "4000839", + "4000840", + "4000841", + "4000842", + "4000843", + "4000844", + "4000845", + "4000846", + "4000847", + "4000848", + "4000849", + "4000850", + "4000851", + "4000852", + "4000853", + "4000854", + "4000855", + "4000856", + "4000857", + "4000858", + "4000859", + "4000860", + "4000861", + "4000862", + "4000863", + "4000864", + "4000865", + "4000866", + "4000867", + "4000868", + "4000869", + "4000870", + "4000871", + "4000872", + "4000873", + "4000874", + "4000875", + "4000876", + "4000877", + "4000878", + "4000879", + "4000880", + "4000881", + "4000882", + "4000883", + "4000884", + "4000885", + "4000886", + "4000887", + "4000888", + "4000889", + "4000890", + "4000891", + "4000892", + "4000893", + "4000894", + "4000895", + "4000896", + "4000897", + "4000898", + "4000899", + "4000900", + "4000901", + "4000902", + "4000903", + "4000904", + "4000905", + "4000906", + "4000907", + "4000908", + "4000909", + "4000910", + "4000911", + "4000912", + "4000913", + "4000914", + "4000915", + "4000916", + "4000917", + "4000918", + "4000919", + "4000920", + "4000921", + "4000922", + "4000923", + "4000924", + "4000925", + "4000926", + "4000927", + "4000928", + "4000929", + "4000930", + "4000931", + "4000932", + "4000933", + "4000934", + "4000935", + "4000936", + "4000937", + "4000938", + "4000939", + "4000940", + "4000941", + "4000942", + "4000943", + "4000944", + "4000945", + "4000946", + "4000947", + "4000948", + "4000949", + "4000950", + "4000951", + "4000952", + "4000953", + "4000954", + "4000955", + "4000956", + "4000957", + "4000958", + "4000959", + "4000960", + "4000961", + "4000962", + "4000963", + "4000964", + "4000965", + "4000966", + "4000967", + "4000968", + "4000969", + "4000970", + "4000971", + "4000972", + "4000973", + "4000974", + "4000975", + "4000976", + "4000977", + "4000978", + "4000979", + "4000980", + "4000981", + "4000982", + "4000983", + "4000984", + "4000985", + "4000986", + "4000987", + "4000988", + "4000989", + "4000990", + "4000991", + "4000992", + "4000993", + "4000994", + "4000995", + "4000996", + "4000997", + "4000998", + "4000999", + "4001000", + "4001001", + "4001002", + "4001003", + "4001004", + "4001005", + "4001006", + "4001007", + "4001008", + "4001009", + "4001010", + "4001011", + "4001012", + "4001013", + "4001014", + "4001015", + "4001016", + "4001017", + "4001018", + "4001019", + "4001020", + "4001021", + "4001022", + "4001023", + "4001024", + "4001025", + "4001026", + "4001027", + "4001028", + "4001029", + "4001030", + "4001031", + "4001032", + "4001033", + "4001034", + "4001035", + "4001036", + "4001037", + "4001038", + "4001039", + "4001040", + "4001041", + "4001042", + "4001043", + "4001044", + "4001045", + "4001046", + "4001047", + "4001048", + "4001049", + "4001050", + "4001051", + "4001052", + "4001053", + "4001054", + "4001055", + "4001056", + "4001057", + "4001058", + "4001059", + "4001060", + "4001061", + "4001062", + "4001063", + "4001064", + "4001065", + "4001066", + "4001067", + "4001068", + "4001069", + "4001070", + "4001071", + "4001072", + "4001073", + "4001074", + "4001075", + "4001076", + "4001077", + "4001078", + "4001079", + "4001080", + "4001081", + "4001082", + "4001083", + "4001084", + "4001085", + "4001086", + "4001087", + "4001088", + "4001089", + "4001090", + "4001091", + "4001092", + "4001093", + "4001094", + "4001095", + "4001096", + "4001097", + "4001098", + "4001099", + "4001100", + "4001101", + "4001102", + "4001103", + "4001104", + "4001105", + "4001106", + "4001107", + "4001108", + "4001109", + "4001110", + "4001111", + "4001112", + "4001113", + "4001114", + "4001115", + "4001116", + "4001117", + "4001118", + "4001119", + "4001120", + "4001121", + "4001122", + "4001123", + "4001124", + "4001125", + "4001126", + "4001127", + "4001128", + "4001129", + "4001130", + "4001131", + "4001132", + "4001133", + "4001134", + "4001135", + "4001136", + "4001137", + "4001138", + "4001139", + "4001140", + "4001141", + "4001142", + "4001143", + "4001144", + "4001145", + "4001146", + "4001147", + "4001148", + "4001149", + "4001150", + "4001151", + "4001152", + "4001153", + "4001154", + "4001155", + "4001156", + "4001157", + "4001158", + "4001159", + "4001160", + "4001161", + "4001162", + "4001163", + "4001164", + "4001165", + "4001166", + "4001167", + "4001168", + "4001169", + "4001170", + "4001171", + "4001172", + "4001173", + "4001174", + "4001175", + "4001176", + "4001177", + "4001178", + "4001179", + "4001180", + "4001181", + "4001182", + "4001183", + "4001184", + "4001185", + "4001186", + "4001187", + "4001188", + "4001189", + "4001190", + "4001191", + "4001192", + "4001193", + "4001194", + "4001195", + "4001196", + "4001197", + "4001198", + "4001199", + "4001200", + "4001201", + "4001202", + "4001203", + "4001204", + "4001205", + "4001206", + "4001207", + "4001208", + "4001209", + "4001210", + "4001211", + "4001212", + "4001213", + "4001214", + "4001215", + "4001216", + "4001217", + "4001218", + "4001219", + "4001220", + "4001221", + "4001222", + "4001223", + "4001224", + "4001225", + "4001226", + "4001227", + "4001228", + "4001229", + "4001230", + "4001231", + "4001232", + "4001233", + "4001234", + "4001235", + "4001236", + "4001237", + "4001238", + "4001239", + "4001240", + "4001241", + "4001242", + "4001243", + "4001244", + "4001245", + "4001246", + "4001247", + "4001248", + "4001249", + "4001250", + "4001251", + "4001252", + "4001253", + "4001254", + "4001255", + "4001256", + "4001257", + "4001258", + "4001259", + "4001260", + "4001261", + "4001262", + "4001263", + "4001264", + "4001265", + "4001266", + "4001267", + "4001268", + "4001269", + "4001270", + "4001271", + "4001272", + "4001273", + "4001274", + "4001275", + "4001276", + "4001277", + "4001278", + "4001279", + "4001280", + "4001281", + "4001282", + "4001283", + "4001284", + "4001285", + "4001286", + "4001287", + "4001288", + "4001289", + "4001290", + "4001291", + "4001292", + "4001293", + "4001294", + "4001295", + "4001296", + "4001297", + "4001298", + "4001299", + "4001300", + "4001301", + "4001302", + "4001303", + "4001304", + "4001305", + "4001306", + "4001307", + "4001308", + "4001309", + "4001310", + "4001311", + "4001312", + "4001313", + "4001314", + "4001315", + "4001316", + "4001317", + "4001318", + "4001319", + "4001320", + "4001321", + "4001322", + "4001323", + "4001324", + "4001325", + "4001326", + "4001327", + "4001328", + "4001329", + "4001330", + "4001331", + "4001332", + "4001333", + "4001334", + "4001335", + "4001336", + "4001337", + "4001338", + "4001339", + "4001340", + "4001341", + "4001342", + "4001343", + "4001344", + "4001345", + "4001346", + "4001347", + "4001348", + "4001349", + "4001350", + "4001351", + "4001352", + "4001353", + "4001354", + "4001355", + "4001356", + "4001357", + "4001358", + "4001359", + "4001360", + "4001361", + "4001362", + "4001363", + "4001364", + "4001365", + "4001366", + "4001367", + "4001368", + "4001369", + "4001370", + "4001371", + "4001372", + "4001373", + "4001374", + "4001375", + "4001376", + "4001377", + "4001378", + "4001379", + "4001380", + "4001381", + "4001382", + "4001383", + "4001384", + "4001385", + "4001386", + "4001387", + "4001388", + "4001389", + "4001390", + "4001391", + "4001392", + "4001393", + "4001394", + "4001395", + "4001396", + "4001397", + "4001398", + "4001399", + "4001400", + "4001401", + "4001402", + "4001403", + "4001404", + "4001405", + "4001406", + "4001407", + "4001408", + "4001409", + "4001410", + "4001411", + "4001412", + "4001413", + "4001414", + "4001415", + "4001416", + "4001417", + "4001418", + "4001419", + "4001420", + "4001421", + "4001422", + "4001423", + "4001424", + "4001425", + "4001426", + "4001427", + "4001428", + "4001429", + "4001430", + "4001431", + "4001432", + "4001433", + "4001434", + "4001435", + "4001436", + "4001437", + "4001438", + "4001439", + "4001440", + "4001441", + "4001442", + "4001443", + "4001444", + "4001445", + "4001446", + "4001447", + "4001448", + "4001449", + "4001450", + "4001451", + "4001452", + "4001453", + "4001454", + "4001455", + "4001456", + "4001457", + "4001458", + "4001459", + "4001460", + "4001461", + "4001462", + "4001463", + "4001464", + "4001465", + "4001466", + "4001467", + "4001468", + "4001469", + "4001470", + "4001471", + "4001472", + "4001473", + "4001474", + "4001475", + "4001476", + "4001477", + "4001478", + "4001479", + "4001480", + "4001481", + "4001482", + "4001483", + "4001484", + "4001485", + "4001486", + "4001487", + "4001488", + "4001489", + "4001490", + "4001491", + "4001492", + "4001493", + "4001494", + "4001495", + "4001496", + "4001497", + "4001498", + "4001499", + "4001500", + "4001501", + "4001502", + "4001503", + "4001504", + "4001505", + "4001506", + "4001507", + "4001508", + "4001509", + "4001510", + "4001511", + "4001512", + "4001513", + "4001514", + "4001515", + "4001516", + "4001517", + "4001518", + "4001519", + "4001520", + "4001521", + "4001522", + "4001523", + "4001524", + "4001525", + "4001526", + "4001527", + "4001528", + "4001529", + "4001530", + "4001531", + "4001532", + "4001533", + "4001534", + "4001535", + "4001536", + "4001537", + "4001538", + "4001539", + "4001540", + "4001541", + "4001542", + "4001543", + "4001544", + "4001545", + "4001546", + "4001547", + "4001548", + "4001549", + "4001550", + "4001551", + "4001552", + "4001553", + "4001554", + "4001555", + "4001556", + "4001557", + "4001558", + "4001559", + "4001560", + "4001561", + "4001562", + "4001563", + "4001564", + "4001565", + "4001566", + "4001567", + "4001568", + "4001569", + "4001570", + "4001571", + "4001572", + "4001573", + "4001574", + "4001575", + "4001576", + "4001577", + "4001578", + "4001579", + "4001580", + "4001581", + "4001582", + "4001583", + "4001584", + "4001585", + "4001586", + "4001587", + "4001588", + "4001589", + "4001590", + "4001591", + "4001592", + "4001593", + "4001594", + "4001595", + "4001596", + "4001597", + "4001598", + "4001599", + "4001600", + "4001601", + "4001602", + "4001603", + "4001604", + "4001605", + "4001606", + "4001607", + "4001608", + "4001609", + "4001610", + "4001611", + "4001612", + "4001613", + "4001614", + "4001615", + "4001616", + "4001617", + "4001618", + "4001619", + "4001620", + "4001621", + "4001622", + "4001623", + "4001624", + "4001625", + "4001626", + "4001627", + "4001628", + "4001629", + "4001630", + "4001631", + "4001632", + "4001633", + "4001634", + "4001635", + "4001636", + "4001637", + "4001638", + "4001639", + "4001640", + "4001641", + "4001642", + "4001643", + "4001644", + "4001645", + "4001646", + "4001647", + "4001648", + "4001649", + "4001650", + "4001651", + "4001652", + "4001653", + "4001654", + "4001655", + "4001656", + "4001657", + "4001658", + "4001659", + "4001660", + "4001661", + "4001662", + "4001663", + "4001664", + "4001665", + "4001666", + "4001667", + "4001668", + "4001669", + "4001670", + "4001671", + "4001672", + "4001673", + "4001674", + "4001675", + "4001676", + "4001677", + "4001678", + "4001679", + "4001680", + "4001681", + "4001682", + "4001683", + "4001684", + "4001685", + "4001686", + "4001687", + "4001688", + "4001689", + "4001690", + "4001691", + "4001692", + "4001693", + "4001694", + "4001695", + "4001696", + "4001697", + "4001698", + "4001699", + "4001700", + "4001701", + "4001702", + "4001703", + "4001704", + "4001705", + "4001706", + "4001707", + "4001708", + "4001709", + "4001710", + "4001711", + "4001712", + "4001713", + "4001714", + "4001715", + "4001716", + "4001717", + "4001718", + "4001719", + "4001720", + "4001721", + "4001722", + "4001723", + "4001724", + "4001725", + "4001726", + "4001727", + "4001728", + "4001729", + "4001730", + "4001731", + "4001732", + "4001733", + "4001734", + "4001735", + "4001736", + "4001737", + "4001738", + "4001739", + "4001740", + "4001741", + "4001742", + "4001743", + "4001744", + "4001745", + "4001746", + "4001747", + "4001748", + "4001749", + "4001750", + "4001751", + "4001752", + "4001753", + "4001754", + "4001755", + "4001756", + "4001757", + "4001758", + "4001759", + "4001760", + "4001761", + "4001762", + "4001763", + "4001764", + "4001765", + "4001766", + "4001767", + "4001768", + "4001769", + "4001770", + "4001771", + "4001772", + "4001773", + "4001774", + "4001775", + "4001776", + "4001777", + "4001778", + "4001779", + "4001780", + "4001781", + "4001782", + "4001783", + "4001784", + "4001785", + "4001786", + "4001787", + "4001788", + "4001789", + "4001790", + "4001791", + "4001792", + "4001793", + "4001794", + "4001795", + "4001796", + "4001797", + "4001798", + "4001799", + "4001800", + "4001801", + "4001802", + "4001803", + "4001804", + "4001805", + "4001806", + "4001807", + "4001808", + "4001809", + "4001810", + "4001811", + "4001812", + "4001813", + "4001814", + "4001815", + "4001816", + "4001817", + "4001818", + "4001819", + "4001820", + "4001821", + "4001822", + "4001823", + "4001824", + "4001825", + "4001826", + "4001827", + "4001828", + "4001829", + "4001830", + "4001831", + "4001832", + "4001833", + "4001834", + "4001835", + "4001836", + "4001837", + "4001838", + "4001839", + "4001840", + "4001841", + "4001842", + "4001843", + "4001844", + "4001845", + "4001846", + "4001847", + "4001848", + "4001849", + "4001850", + "4001851", + "4001852", + "4001853", + "4001854", + "4001855", + "4001856", + "4001857", + "4001858", + "4001859", + "4001860", + "4001861", + "4001862", + "4001863", + "4001864", + "4001865", + "4001866", + "4001867", + "4001868", + "4001869", + "4001870", + "4001871", + "4001872", + "4001873", + "4001874", + "4001875", + "4001876", + "4001877", + "4001878", + "4001879", + "4001880", + "4001881", + "4001882", + "4001883", + "4001884", + "4001885", + "4001886", + "4001887", + "4001888", + "4001889", + "4001890", + "4001891", + "4001892", + "4001893", + "4001894", + "4001895", + "4001896", + "4001897", + "4001898", + "4001899", + "4001900", + "4001901", + "4001902", + "4001903", + "4001904", + "4001905", + "4001906", + "4001907", + "4001908", + "4001909", + "4001910", + "4001911", + "4001912", + "4001913", + "4001914", + "4001915", + "4001916", + "4001917", + "4001918", + "4001919", + "4001920", + "4001921", + "4001922", + "4001923", + "4001924", + "4001925", + "4001926", + "4001927", + "4001928", + "4001929", + "4001930", + "4001931", + "4001932", + "4001933", + "4001934", + "4001935", + "4001936", + "4001937", + "4001938", + "4001939", + "4001940", + "4001941", + "4001942", + "4001943", + "4001944", + "4001945", + "4001946", + "4001947", + "4001948", + "4001949", + "4001950", + "4001951", + "4001952", + "4001953", + "4001954", + "4001955", + "4001956", + "4001957", + "4001958", + "4001959", + "4001960", + "4001961", + "4001962", + "4001963", + "4001964", + "4001965", + "4001966", + "4001967", + "4001968", + "4001969", + "4001970", + "4001971", + "4001972", + "4001973", + "4001974", + "4001975", + "4001976", + "4001977", + "4001978", + "4001979", + "4001980", + "4001981", + "4001982", + "4001983", + "4001984", + "4001985", + "4001986", + "4001987", + "4001988", + "4001989", + "4001990", + "4001991", + "4001992", + "4001993", + "4001994", + "4001995", + "4001996", + "4001997", + "4001998", + "4001999", + "5000000", + "5000001", + "5000002", + "5000003", + "5000004", + "5000005", + "5000006", + "5000007", + "5000008", + "5000009", + "5000010", + "5000011", + "5000012", + "5000013", + "5000014", + "5000015", + "5000016", + "5000017", + "5000018", + "5000019", + "5000020", + "5000021", + "5000022", + "5000023", + "5000024", + "5000025", + "5000026", + "5000027", + "5000028", + "5000029", + "5000030", + "5000031", + "5000032", + "5000033", + "5000034", + "5000035", + "5000036", + "5000037", + "5000038", + "5000039", + "5000040", + "5000041", + "5000042", + "5000043", + "5000044", + "5000045", + "5000046", + "5000047", + "5000048", + "5000049", + "5000050", + "5000051", + "5000052", + "5000053", + "5000054", + "5000055", + "5000056", + "5000057", + "5000058", + "5000059", + "5000060", + "5000061", + "5000062", + "5000063", + "5000064", + "5000065", + "5000066", + "5000067", + "5000068", + "5000069", + "5000070", + "5000071", + "5000072", + "5000073", + "5000074", + "5000075", + "5000076", + "5000077", + "5000078", + "5000079", + "5000080", + "5000081", + "5000082", + "5000083", + "5000084", + "5000085", + "5000086", + "5000087", + "5000088", + "5000089", + "5000090", + "5000091", + "5000092", + "5000093", + "5000094", + "5000095", + "5000096", + "5000097", + "5000098", + "5000099", + "5000100", + "5000101", + "5000102", + "5000103", + "5000104", + "5000105", + "5000106", + "5000107", + "5000108", + "5000109", + "5000110", + "5000111", + "5000112", + "5000113", + "5000114", + "5000115", + "5000116", + "5000117", + "5000118", + "5000119", + "5000120", + "5000121", + "5000122", + "5000123", + "5000124", + "5000125", + "5000126", + "5000127", + "5000128", + "5000129", + "5000130", + "5000131", + "5000132", + "5000133", + "5000134", + "5000135", + "5000136", + "5000137", + "5000138", + "5000139", + "5000140", + "5000141", + "5000142", + "5000143", + "5000144", + "5000145", + "5000146", + "5000147", + "5000148", + "5000149", + "5000150", + "5000151", + "5000152", + "5000153", + "5000154", + "5000155", + "5000156", + "5000157", + "5000158", + "5000159", + "5000160", + "5000161", + "5000162", + "5000163", + "5000164", + "5000165", + "5000166", + "5000167", + "5000168", + "5000169", + "5000170", + "5000171", + "5000172", + "5000173", + "5000174", + "5000175", + "5000176", + "5000177", + "5000178", + "5000179", + "5000180", + "5000181", + "5000182", + "5000183", + "5000184", + "5000185", + "5000186", + "5000187", + "5000188", + "5000189", + "5000190", + "5000191", + "5000192", + "5000193", + "5000194", + "5000195", + "5000196", + "5000197", + "5000198", + "5000199", + "5000200", + "5000201", + "5000202", + "5000203", + "5000204", + "5000205", + "5000206", + "5000207", + "5000208", + "5000209", + "5000210", + "5000211", + "5000212", + "5000213", + "5000214", + "5000215", + "5000216", + "5000217", + "5000218", + "5000219", + "5000220", + "5000221", + "5000222", + "5000223", + "5000224", + "5000225", + "5000226", + "5000227", + "5000228", + "5000229", + "5000230", + "5000231", + "5000232", + "5000233", + "5000234", + "5000235", + "5000236", + "5000237", + "5000238", + "5000239", + "5000240", + "5000241", + "5000242", + "5000243", + "5000244", + "5000245", + "5000246", + "5000247", + "5000248", + "5000249", + "5000250", + "5000251", + "5000252", + "5000253", + "5000254", + "5000255", + "5000256", + "5000257", + "5000258", + "5000259", + "5000260", + "5000261", + "5000262", + "5000263", + "5000264", + "5000265", + "5000266", + "5000267", + "5000268", + "5000269", + "5000270", + "5000271", + "5000272", + "5000273", + "5000274", + "5000275", + "5000276", + "5000277", + "5000278", + "5000279", + "5000280", + "5000281", + "5000282", + "5000283", + "5000284", + "5000285", + "5000286", + "5000287", + "5000288", + "5000289", + "5000290", + "5000291", + "5000292", + "5000293", + "5000294", + "5000295", + "5000296", + "5000297", + "5000298", + "5000299", + "5000300", + "5000301", + "5000302", + "5000303", + "5000304", + "5000305", + "5000306", + "5000307", + "5000308", + "5000309", + "5000310", + "5000311", + "5000312", + "5000313", + "5000314", + "5000315", + "5000316", + "5000317", + "5000318", + "5000319", + "5000320", + "5000321", + "5000322", + "5000323", + "5000324", + "5000325", + "5000326", + "5000327", + "5000328", + "5000329", + "5000330", + "5000331", + "5000332", + "5000333", + "5000334", + "5000335", + "5000336", + "5000337", + "5000338", + "5000339", + "5000340", + "5000341", + "5000342", + "5000343", + "5000344", + "5000345", + "5000346", + "5000347", + "5000348", + "5000349", + "5000350", + "5000351", + "5000352", + "5000353", + "5000354", + "5000355", + "5000356", + "5000357", + "5000358", + "5000359", + "5000360", + "5000361", + "5000362", + "5000363", + "5000364", + "5000365", + "5000366", + "5000367", + "5000368", + "5000369", + "5000370", + "5000371", + "5000372", + "5000373", + "5000374", + "5000375", + "5000376", + "5000377", + "5000378", + "5000379", + "5000380", + "5000381", + "5000382", + "5000383", + "5000384", + "5000385", + "5000386", + "5000387", + "5000388", + "5000389", + "5000390", + "5000391", + "5000392", + "5000393", + "5000394", + "5000395", + "5000396", + "5000397", + "5000398", + "5000399", + "5000400", + "5000401", + "5000402", + "5000403", + "5000404", + "5000405", + "5000406", + "5000407", + "5000408", + "5000409", + "5000410", + "5000411", + "5000412", + "5000413", + "5000414", + "5000415", + "5000416", + "5000417", + "5000418", + "5000419", + "5000420", + "5000421", + "5000422", + "5000423", + "5000424", + "5000425", + "5000426", + "5000427", + "5000428", + "5000429", + "5000430", + "5000431", + "5000432", + "5000433", + "5000434", + "5000435", + "5000436", + "5000437", + "5000438", + "5000439", + "5000440", + "5000441", + "5000442", + "5000443", + "5000444", + "5000445", + "5000446", + "5000447", + "5000448", + "5000449", + "5000450", + "5000451", + "5000452", + "5000453", + "5000454", + "5000455", + "5000456", + "5000457", + "5000458", + "5000459", + "5000460", + "5000461", + "5000462", + "5000463", + "5000464", + "5000465", + "5000466", + "5000467", + "5000468", + "5000469", + "5000470", + "5000471", + "5000472", + "5000473", + "5000474", + "5000475", + "5000476", + "5000477", + "5000478", + "5000479", + "5000480", + "5000481", + "5000482", + "5000483", + "5000484", + "5000485", + "5000486", + "5000487", + "5000488", + "5000489", + "5000490", + "5000491", + "5000492", + "5000493", + "5000494", + "5000495", + "5000496", + "5000497", + "5000498", + "5000499", + "5000500", + "5000501", + "5000502", + "5000503", + "5000504", + "5000505", + "5000506", + "5000507", + "5000508", + "5000509", + "5000510", + "5000511", + "5000512", + "5000513", + "5000514", + "5000515", + "5000516", + "5000517", + "5000518", + "5000519", + "5000520", + "5000521", + "5000522", + "5000523", + "5000524", + "5000525", + "5000526", + "5000527", + "5000528", + "5000529", + "5000530", + "5000531", + "5000532", + "5000533", + "5000534", + "5000535", + "5000536", + "5000537", + "5000538", + "5000539", + "5000540", + "5000541", + "5000542", + "5000543", + "5000544", + "5000545", + "5000546", + "5000547", + "5000548", + "5000549", + "5000550", + "5000551", + "5000552", + "5000553", + "5000554", + "5000555", + "5000556", + "5000557", + "5000558", + "5000559", + "5000560", + "5000561", + "5000562", + "5000563", + "5000564", + "5000565", + "5000566", + "5000567", + "5000568", + "5000569", + "5000570", + "5000571", + "5000572", + "5000573", + "5000574", + "5000575", + "5000576", + "5000577", + "5000578", + "5000579", + "5000580", + "5000581", + "5000582", + "5000583", + "5000584", + "5000585", + "5000586", + "5000587", + "5000588", + "5000589", + "5000590", + "5000591", + "5000592", + "5000593", + "5000594", + "5000595", + "5000596", + "5000597", + "5000598", + "5000599", + "5000600", + "5000601", + "5000602", + "5000603", + "5000604", + "5000605", + "5000606", + "5000607", + "5000608", + "5000609", + "5000610", + "5000611", + "5000612", + "5000613", + "5000614", + "5000615", + "5000616", + "5000617", + "5000618", + "5000619", + "5000620", + "5000621", + "5000622", + "5000623", + "5000624", + "5000625", + "5000626", + "5000627", + "5000628", + "5000629", + "5000630", + "5000631", + "5000632", + "5000633", + "5000634", + "5000635", + "5000636", + "5000637", + "5000638", + "5000639", + "5000640", + "5000641", + "5000642", + "5000643", + "5000644", + "5000645", + "5000646", + "5000647", + "5000648", + "5000649", + "5000650", + "5000651", + "5000652", + "5000653", + "5000654", + "5000655", + "5000656", + "5000657", + "5000658", + "5000659", + "5000660", + "5000661", + "5000662", + "5000663", + "5000664", + "5000665", + "5000666", + "5000667", + "5000668", + "5000669", + "5000670", + "5000671", + "5000672", + "5000673", + "5000674", + "5000675", + "5000676", + "5000677", + "5000678", + "5000679", + "5000680", + "5000681", + "5000682", + "5000683", + "5000684", + "5000685", + "5000686", + "5000687", + "5000688", + "5000689", + "5000690", + "5000691", + "5000692", + "5000693", + "5000694", + "5000695", + "5000696", + "5000697", + "5000698", + "5000699", + "5000700", + "5000701", + "5000702", + "5000703", + "5000704", + "5000705", + "5000706", + "5000707", + "5000708", + "5000709", + "5000710", + "5000711", + "5000712", + "5000713", + "5000714", + "5000715", + "5000716", + "5000717", + "5000718", + "5000719", + "5000720", + "5000721", + "5000722", + "5000723", + "5000724", + "5000725", + "5000726", + "5000727", + "5000728", + "5000729", + "5000730", + "5000731", + "5000732", + "5000733", + "5000734", + "5000735", + "5000736", + "5000737", + "5000738", + "5000739", + "5000740", + "5000741", + "5000742", + "5000743", + "5000744", + "5000745", + "5000746", + "5000747", + "5000748", + "5000749", + "5000750", + "5000751", + "5000752", + "5000753", + "5000754", + "5000755", + "5000756", + "5000757", + "5000758", + "5000759", + "5000760", + "5000761", + "5000762", + "5000763", + "5000764", + "5000765", + "5000766", + "5000767", + "5000768", + "5000769", + "5000770", + "5000771", + "5000772", + "5000773", + "5000774", + "5000775", + "5000776", + "5000777", + "5000778", + "5000779", + "5000780", + "5000781", + "5000782", + "5000783", + "5000784", + "5000785", + "5000786", + "5000787", + "5000788", + "5000789", + "5000790", + "5000791", + "5000792", + "5000793", + "5000794", + "5000795", + "5000796", + "5000797", + "5000798", + "5000799", + "5000800", + "5000801", + "5000802", + "5000803", + "5000804", + "5000805", + "5000806", + "5000807", + "5000808", + "5000809", + "5000810", + "5000811", + "5000812", + "5000813", + "5000814", + "5000815", + "5000816", + "5000817", + "5000818", + "5000819", + "5000820", + "5000821", + "5000822", + "5000823", + "5000824", + "5000825", + "5000826", + "5000827", + "5000828", + "5000829", + "5000830", + "5000831", + "5000832", + "5000833", + "5000834", + "5000835", + "5000836", + "5000837", + "5000838", + "5000839", + "5000840", + "5000841", + "5000842", + "5000843", + "5000844", + "5000845", + "5000846", + "5000847", + "5000848", + "5000849", + "5000850", + "5000851", + "5000852", + "5000853", + "5000854", + "5000855", + "5000856", + "5000857", + "5000858", + "5000859", + "5000860", + "5000861", + "5000862", + "5000863", + "5000864", + "5000865", + "5000866", + "5000867", + "5000868", + "5000869", + "5000870", + "5000871", + "5000872", + "5000873", + "5000874", + "5000875", + "5000876", + "5000877", + "5000878", + "5000879", + "5000880", + "5000881", + "5000882", + "5000883", + "5000884", + "5000885", + "5000886", + "5000887", + "5000888", + "5000889", + "5000890", + "5000891", + "5000892", + "5000893", + "5000894", + "5000895", + "5000896", + "5000897", + "5000898", + "5000899", + "5000900", + "5000901", + "5000902", + "5000903", + "5000904", + "5000905", + "5000906", + "5000907", + "5000908", + "5000909", + "5000910", + "5000911", + "5000912", + "5000913", + "5000914", + "5000915", + "5000916", + "5000917", + "5000918", + "5000919", + "5000920", + "5000921", + "5000922", + "5000923", + "5000924", + "5000925", + "5000926", + "5000927", + "5000928", + "5000929", + "5000930", + "5000931", + "5000932", + "5000933", + "5000934", + "5000935", + "5000936", + "5000937", + "5000938", + "5000939", + "5000940", + "5000941", + "5000942", + "5000943", + "5000944", + "5000945", + "5000946", + "5000947", + "5000948", + "5000949", + "5000950", + "5000951", + "5000952", + "5000953", + "5000954", + "5000955", + "5000956", + "5000957", + "5000958", + "5000959", + "5000960", + "5000961", + "5000962", + "5000963", + "5000964", + "5000965", + "5000966", + "5000967", + "5000968", + "5000969", + "5000970", + "5000971", + "5000972", + "5000973", + "5000974", + "5000975", + "5000976", + "5000977", + "5000978", + "5000979", + "5000980", + "5000981", + "5000982", + "5000983", + "5000984", + "5000985", + "5000986", + "5000987", + "5000988", + "5000989", + "5000990", + "5000991", + "5000992", + "5000993", + "5000994", + "5000995", + "5000996", + "5000997", + "5000998", + "5000999", + "7000000", + "7000001", + "7000002", + "7000003", + "7000004", + "7000005", + "7000006", + "7000007", + "7000008", + "7000009", + "7000010", + "7000011", + "7000012", + "7000013", + "7000014", + "7000015", + "7000016", + "7000017", + "7000018", + "7000019", + "7000020", + "7000021", + "7000022", + "7000023", + "7000024", + "7000025", + "7000026", + "7000027", + "7000028", + "7000029", + "7000030", + "7000031", + "7000032", + "7000033", + "7000034", + "7000035", + "7000036", + "7000037", + "7000038", + "7000039", + "7000040", + "7000041", + "7000042", + "7000043", + "7000044", + "7000045", + "7000046", + "7000047", + "7000048", + "7000049", + "7000050", + "7000051", + "7000052", + "7000053", + "7000054", + "7000055", + "7000056", + "7000057", + "7000058", + "7000059", + "7000060", + "7000061", + "7000062", + "7000063", + "7000064", + "7000065", + "7000066", + "7000067", + "7000068", + "7000069", + "7000070", + "7000071", + "7000072", + "7000073", + "7000074", + "7000075", + "7000076", + "7000077", + "7000078", + "7000079", + "7000080", + "7000081", + "7000082", + "7000083", + "7000084", + "7000085", + "7000086", + "7000087", + "7000088", + "7000089", + "7000090", + "7000091", + "7000092", + "7000093", + "7000094", + "7000095", + "7000096", + "7000097", + "7000098", + "7000099", + "7000100", + "7000101", + "7000102", + "7000103", + "7000104", + "7000105", + "7000106", + "7000107", + "7000108", + "7000109", + "7000110", + "7000111", + "7000112", + "7000113", + "7000114", + "7000115", + "7000116", + "7000117", + "7000118", + "7000119", + "7000120", + "7000121", + "7000122", + "7000123", + "7000124", + "7000125", + "7000126", + "7000127", + "7000128", + "7000129", + "7000130", + "7000131", + "7000132", + "7000133", + "7000134", + "7000135", + "7000136", + "7000137", + "7000138", + "7000139", + "7000140", + "7000141", + "7000142", + "7000143", + "7000144", + "7000145", + "7000146", + "7000147", + "7000148", + "7000149", + "7000150", + "7000151", + "7000152", + "7000153", + "7000154", + "7000155", + "7000156", + "7000157", + "7000158", + "7000159", + "7000160", + "7000161", + "7000162", + "7000163", + "7000164", + "7000165", + "7000166", + "7000167", + "7000168", + "7000169", + "7000170", + "7000171", + "7000172", + "7000173", + "7000174", + "7000175", + "7000176", + "7000177", + "7000178", + "7000179", + "7000180", + "7000181", + "7000182", + "7000183", + "7000184", + "7000185", + "7000186", + "7000187", + "7000188", + "7000189", + "7000190", + "7000191", + "7000192", + "7000193", + "7000194", + "7000195", + "7000196", + "7000197", + "7000198", + "7000199", + "7000200", + "7000201", + "7000202", + "7000203", + "7000204", + "7000205", + "7000206", + "7000207", + "7000208", + "7000209", + "7000210", + "7000211", + "7000212", + "7000213", + "7000214", + "7000215", + "7000216", + "7000217", + "7000218", + "7000219", + "7000220", + "7000221", + "7000222", + "7000223", + "7000224", + "7000225", + "7000226", + "7000227", + "7000228", + "7000229", + "7000230", + "7000231", + "7000232", + "7000233", + "7000234", + "7000235", + "7000236", + "7000237", + "7000238", + "7000239", + "7000240", + "7000241", + "7000242", + "7000243", + "7000244", + "7000245", + "7000246", + "7000247", + "7000248", + "7000249", + "7000250", + "7000251", + "7000252", + "7000253", + "7000254", + "7000255", + "7000256", + "7000257", + "7000258", + "7000259", + "7000260", + "7000261", + "7000262", + "7000263", + "7000264", + "7000265", + "7000266", + "7000267", + "7000268", + "7000269", + "7000270", + "7000271", + "7000272", + "7000273", + "7000274", + "7000275", + "7000276", + "7000277", + "7000278", + "7000279", + "7000280", + "7000281", + "7000282", + "7000283", + "7000284", + "7000285", + "7000286", + "7000287", + "7000288", + "7000289", + "7000290", + "7000291", + "7000292", + "7000293", + "7000294", + "7000295", + "7000296", + "7000297", + "7000298", + "7000299", + "7000300", + "7000301", + "7000302", + "7000303", + "7000304", + "7000305", + "7000306", + "7000307", + "7000308", + "7000309", + "7000310", + "7000311", + "7000312", + "7000313", + "7000314", + "7000315", + "7000316", + "7000317", + "7000318", + "7000319", + "7000320", + "7000321", + "7000322", + "7000323", + "7000324", + "7000325", + "7000326", + "7000327", + "7000328", + "7000329", + "7000330", + "7000331", + "7000332", + "7000333", + "7000334", + "7000335", + "7000336", + "7000337", + "7000338", + "7000339", + "7000340", + "7000341", + "7000342", + "7000343", + "7000344", + "7000345", + "7000346", + "7000347", + "7000348", + "7000349", + "7000350", + "7000351", + "7000352", + "7000353", + "7000354", + "7000355", + "7000356", + "7000357", + "7000358", + "7000359", + "7000360", + "7000361", + "7000362", + "7000363", + "7000364", + "7000365", + "7000366", + "7000367", + "7000368", + "7000369", + "7000370", + "7000371", + "7000372", + "7000373", + "7000374", + "7000375", + "7000376", + "7000377", + "7000378", + "7000379", + "7000380", + "7000381", + "7000382", + "7000383", + "7000384", + "7000385", + "7000386", + "7000387", + "7000388", + "7000389", + "7000390", + "7000391", + "7000392", + "7000393", + "7000394", + "7000395", + "7000396", + "7000397", + "7000398", + "7000399", + "7000400", + "7000401", + "7000402", + "7000403", + "7000404", + "7000405", + "7000406", + "7000407", + "7000408", + "7000409", + "7000410", + "7000411", + "7000412", + "7000413", + "7000414", + "7000415", + "7000416", + "7000417", + "7000418", + "7000419", + "7000420", + "7000421", + "7000422", + "7000423", + "7000424", + "7000425", + "7000426", + "7000427", + "7000428", + "7000429", + "7000430", + "7000431", + "7000432", + "7000433", + "7000434", + "7000435", + "7000436", + "7000437", + "7000438", + "7000439", + "7000440", + "7000441", + "7000442", + "7000443", + "7000444", + "7000445", + "7000446", + "7000447", + "7000448", + "7000449", + "7000450", + "7000451", + "7000452", + "7000453", + "7000454", + "7000455", + "7000456", + "7000457", + "7000458", + "7000459", + "7000460", + "7000461", + "7000462", + "7000463", + "7000464", + "7000465", + "7000466", + "7000467", + "7000468", + "7000469", + "7000470", + "7000471", + "7000472", + "7000473", + "7000474", + "7000475", + "7000476", + "7000477", + "7000478", + "7000479", + "7000480", + "7000481", + "7000482", + "7000483", + "7000484", + "7000485", + "7000486", + "7000487", + "7000488", + "7000489", + "7000490", + "7000491", + "7000492", + "7000493", + "7000494", + "7000495", + "7000496", + "7000497", + "7000498", + "7000499", + "7000500", + "7000501", + "7000502", + "7000503", + "7000504", + "7000505", + "7000506", + "7000507", + "7000508", + "7000509", + "7000510", + "7000511", + "7000512", + "7000513", + "7000514", + "7000515", + "7000516", + "7000517", + "7000518", + "7000519", + "7000520", + "7000521", + "7000522", + "7000523", + "7000524", + "7000525", + "7000526", + "7000527", + "7000528", + "7000529", + "7000530", + "7000531", + "7000532", + "7000533", + "7000534", + "7000535", + "7000536", + "7000537", + "7000538", + "7000539", + "7000540", + "7000541", + "7000542", + "7000543", + "7000544", + "7000545", + "7000546", + "7000547", + "7000548", + "7000549", + "7000550", + "7000551", + "7000552", + "7000553", + "7000554", + "7000555", + "7000556", + "7000557", + "7000558", + "7000559", + "7000560", + "7000561", + "7000562", + "7000563", + "7000564", + "7000565", + "7000566", + "7000567", + "7000568", + "7000569", + "7000570", + "7000571", + "7000572", + "7000573", + "7000574", + "7000575", + "7000576", + "7000577", + "7000578", + "7000579", + "7000580", + "7000581", + "7000582", + "7000583", + "7000584", + "7000585", + "7000586", + "7000587", + "7000588", + "7000589", + "7000590", + "7000591", + "7000592", + "7000593", + "7000594", + "7000595", + "7000596", + "7000597", + "7000598", + "7000599", + "7000600", + "7000601", + "7000602", + "7000603", + "7000604", + "7000605", + "7000606", + "7000607", + "7000608", + "7000609", + "7000610", + "7000611", + "7000612", + "7000613", + "7000614", + "7000615", + "7000616", + "7000617", + "7000618", + "7000619", + "7000620", + "7000621", + "7000622", + "7000623", + "7000624", + "7000625", + "7000626", + "7000627", + "7000628", + "7000629", + "7000630", + "7000631", + "7000632", + "7000633", + "7000634", + "7000635", + "7000636", + "7000637", + "7000638", + "7000639", + "7000640", + "7000641", + "7000642", + "7000643", + "7000644", + "7000645", + "7000646", + "7000647", + "7000648", + "7000649", + "7000650", + "7000651", + "7000652", + "7000653", + "7000654", + "7000655", + "7000656", + "7000657", + "7000658", + "7000659", + "7000660", + "7000661", + "7000662", + "7000663", + "7000664", + "7000665", + "7000666", + "7000667", + "7000668", + "7000669", + "7000670", + "7000671", + "7000672", + "7000673", + "7000674", + "7000675", + "7000676", + "7000677", + "7000678", + "7000679", + "7000680", + "7000681", + "7000682", + "7000683", + "7000684", + "7000685", + "7000686", + "7000687", + "7000688", + "7000689", + "7000690", + "7000691", + "7000692", + "7000693", + "7000694", + "7000695", + "7000696", + "7000697", + "7000698", + "7000699", + "7000700", + "7000701", + "7000702", + "7000703", + "7000704", + "7000705", + "7000706", + "7000707", + "7000708", + "7000709", + "7000710", + "7000711", + "7000712", + "7000713", + "7000714", + "7000715", + "7000716", + "7000717", + "7000718", + "7000719", + "7000720", + "7000721", + "7000722", + "7000723", + "7000724", + "7000725", + "7000726", + "7000727", + "7000728", + "7000729", + "7000730", + "7000731", + "7000732", + "7000733", + "7000734", + "7000735", + "7000736", + "7000737", + "7000738", + "7000739", + "7000740", + "7000741", + "7000742", + "7000743", + "7000744", + "7000745", + "7000746", + "7000747", + "7000748", + "7000749", + "7000750", + "7000751", + "7000752", + "7000753", + "7000754", + "7000755", + "7000756", + "7000757", + "7000758", + "7000759", + "7000760", + "7000761", + "7000762", + "7000763", + "7000764", + "7000765", + "7000766", + "7000767", + "7000768", + "7000769", + "7000770", + "7000771", + "7000772", + "7000773", + "7000774", + "7000775", + "7000776", + "7000777", + "7000778", + "7000779", + "7000780", + "7000781", + "7000782", + "7000783", + "7000784", + "7000785", + "7000786", + "7000787", + "7000788", + "7000789", + "7000790", + "7000791", + "7000792", + "7000793", + "7000794", + "7000795", + "7000796", + "7000797", + "7000798", + "7000799", + "7000800", + "7000801", + "7000802", + "7000803", + "7000804", + "7000805", + "7000806", + "7000807", + "7000808", + "7000809", + "7000810", + "7000811", + "7000812", + "7000813", + "7000814", + "7000815", + "7000816", + "7000817", + "7000818", + "7000819", + "7000820", + "7000821", + "7000822", + "7000823", + "7000824", + "7000825", + "7000826", + "7000827", + "7000828", + "7000829", + "7000830", + "7000831", + "7000832", + "7000833", + "7000834", + "7000835", + "7000836", + "7000837", + "7000838", + "7000839", + "7000840", + "7000841", + "7000842", + "7000843", + "7000844", + "7000845", + "7000846", + "7000847", + "7000848", + "7000849", + "7000850", + "7000851", + "7000852", + "7000853", + "7000854", + "7000855", + "7000856", + "7000857", + "7000858", + "7000859", + "7000860", + "7000861", + "7000862", + "7000863", + "7000864", + "7000865", + "7000866", + "7000867", + "7000868", + "7000869", + "7000870", + "7000871", + "7000872", + "7000873", + "7000874", + "7000875", + "7000876", + "7000877", + "7000878", + "7000879", + "7000880", + "7000881", + "7000882", + "7000883", + "7000884", + "7000885", + "7000886", + "7000887", + "7000888", + "7000889", + "7000890", + "7000891", + "7000892", + "7000893", + "7000894", + "7000895", + "7000896", + "7000897", + "7000898", + "7000899", + "7000900", + "7000901", + "7000902", + "7000903", + "7000904", + "7000905", + "7000906", + "7000907", + "7000908", + "7000909", + "7000910", + "7000911", + "7000912", + "7000913", + "7000914", + "7000915", + "7000916", + "7000917", + "7000918", + "7000919", + "7000920", + "7000921", + "7000922", + "7000923", + "7000924", + "7000925", + "7000926", + "7000927", + "7000928", + "7000929", + "7000930", + "7000931", + "7000932", + "7000933", + "7000934", + "7000935", + "7000936", + "7000937", + "7000938", + "7000939", + "7000940", + "7000941", + "7000942", + "7000943", + "7000944", + "7000945", + "7000946", + "7000947", + "7000948", + "7000949", + "7000950", + "7000951", + "7000952", + "7000953", + "7000954", + "7000955", + "7000956", + "7000957", + "7000958", + "7000959", + "7000960", + "7000961", + "7000962", + "7000963", + "7000964", + "7000965", + "7000966", + "7000967", + "7000968", + "7000969", + "7000970", + "7000971", + "7000972", + "7000973", + "7000974", + "7000975", + "7000976", + "7000977", + "7000978", + "7000979", + "7000980", + "7000981", + "7000982", + "7000983", + "7000984", + "7000985", + "7000986", + "7000987", + "7000988", + "7000989", + "7000990", + "7000991", + "7000992", + "7000993", + "7000994", + "7000995", + "7000996", + "7000997", + "7000998", + "7000999", + "7001000", + "7001001", + "7001002", + "7001003", + "7001004", + "7001005", + "7001006", + "7001007", + "7001008", + "7001009", + "7001010", + "7001011", + "7001012", + "7001013", + "7001014", + "7001015", + "7001016", + "7001017", + "7001018", + "7001019", + "7001020", + "7001021", + "7001022", + "7001023", + "7001024", + "7001025", + "7001026", + "7001027", + "7001028", + "7001029", + "7001030", + "7001031", + "7001032", + "7001033", + "7001034", + "7001035", + "7001036", + "7001037", + "7001038", + "7001039", + "7001040", + "7001041", + "7001042", + "7001043", + "7001044", + "7001045", + "7001046", + "7001047", + "7001048", + "7001049", + "7001050", + "7001051", + "7001052", + "7001053", + "7001054", + "7001055", + "7001056", + "7001057", + "7001058", + "7001059", + "7001060", + "7001061", + "7001062", + "7001063", + "7001064", + "7001065", + "7001066", + "7001067", + "7001068", + "7001069", + "7001070", + "7001071", + "7001072", + "7001073", + "7001074", + "7001075", + "7001076", + "7001077", + "7001078", + "7001079", + "7001080", + "7001081", + "7001082", + "7001083", + "7001084", + "7001085", + "7001086", + "7001087", + "7001088", + "7001089", + "7001090", + "7001091", + "7001092", + "7001093", + "7001094", + "7001095", + "7001096", + "7001097", + "7001098", + "7001099", + "7001100", + "7001101", + "7001102", + "7001103", + "7001104", + "7001105", + "7001106", + "7001107", + "7001108", + "7001109", + "7001110", + "7001111", + "7001112", + "7001113", + "7001114", + "7001115", + "7001116", + "7001117", + "7001118", + "7001119", + "7001120", + "7001121", + "7001122", + "7001123", + "7001124", + "7001125", + "7001126", + "7001127", + "7001128", + "7001129", + "7001130", + "7001131", + "7001132", + "7001133", + "7001134", + "7001135", + "7001136", + "7001137", + "7001138", + "7001139", + "7001140", + "7001141", + "7001142", + "7001143", + "7001144", + "7001145", + "7001146", + "7001147", + "7001148", + "7001149", + "7001150", + "7001151", + "7001152", + "7001153", + "7001154", + "7001155", + "7001156", + "7001157", + "7001158", + "7001159", + "7001160", + "7001161", + "7001162", + "7001163", + "7001164", + "7001165", + "7001166", + "7001167", + "7001168", + "7001169", + "7001170", + "7001171", + "7001172", + "7001173", + "7001174", + "7001175", + "7001176", + "7001177", + "7001178", + "7001179", + "7001180", + "7001181", + "7001182", + "7001183", + "7001184", + "7001185", + "7001186", + "7001187", + "7001188", + "7001189", + "7001190", + "7001191", + "7001192", + "7001193", + "7001194", + "7001195", + "7001196", + "7001197", + "7001198", + "7001199", + "7001200", + "7001201", + "7001202", + "7001203", + "7001204", + "7001205", + "7001206", + "7001207", + "7001208", + "7001209", + "7001210", + "7001211", + "7001212", + "7001213", + "7001214", + "7001215", + "7001216", + "7001217", + "7001218", + "7001219", + "7001220", + "7001221", + "7001222", + "7001223", + "7001224", + "7001225", + "7001226", + "7001227", + "7001228", + "7001229", + "7001230", + "7001231", + "7001232", + "7001233", + "7001234", + "7001235", + "7001236", + "7001237", + "7001238", + "7001239", + "7001240", + "7001241", + "7001242", + "7001243", + "7001244", + "7001245", + "7001246", + "7001247", + "7001248", + "7001249", + "7001250", + "7001251", + "7001252", + "7001253", + "7001254", + "7001255", + "7001256", + "7001257", + "7001258", + "7001259", + "7001260", + "7001261", + "7001262", + "7001263", + "7001264", + "7001265", + "7001266", + "7001267", + "7001268", + "7001269", + "7001270", + "7001271", + "7001272", + "7001273", + "7001274", + "7001275", + "7001276", + "7001277", + "7001278", + "7001279", + "7001280", + "7001281", + "7001282", + "7001283", + "7001284", + "7001285", + "7001286", + "7001287", + "7001288", + "7001289", + "7001290", + "7001291", + "7001292", + "7001293", + "7001294", + "7001295", + "7001296", + "7001297", + "7001298", + "7001299", + "7001300", + "7001301", + "7001302", + "7001303", + "7001304", + "7001305", + "7001306", + "7001307", + "7001308", + "7001309", + "7001310", + "7001311", + "7001312", + "7001313", + "7001314", + "7001315", + "7001316", + "7001317", + "7001318", + "7001319", + "7001320", + "7001321", + "7001322", + "7001323", + "7001324", + "7001325", + "7001326", + "7001327", + "7001328", + "7001329", + "7001330", + "7001331", + "7001332", + "7001333", + "7001334", + "7001335", + "7001336", + "7001337", + "7001338", + "7001339", + "7001340", + "7001341", + "7001342", + "7001343", + "7001344", + "7001345", + "7001346", + "7001347", + "7001348", + "7001349", + "7001350", + "7001351", + "7001352", + "7001353", + "7001354", + "7001355", + "7001356", + "7001357", + "7001358", + "7001359", + "7001360", + "7001361", + "7001362", + "7001363", + "7001364", + "7001365", + "7001366", + "7001367", + "7001368", + "7001369", + "7001370", + "7001371", + "7001372", + "7001373", + "7001374", + "7001375", + "7001376", + "7001377", + "7001378", + "7001379", + "7001380", + "7001381", + "7001382", + "7001383", + "7001384", + "7001385", + "7001386", + "7001387", + "7001388", + "7001389", + "7001390", + "7001391", + "7001392", + "7001393", + "7001394", + "7001395", + "7001396", + "7001397", + "7001398", + "7001399", + "7001400", + "7001401", + "7001402", + "7001403", + "7001404", + "7001405", + "7001406", + "7001407", + "7001408", + "7001409", + "7001410", + "7001411", + "7001412", + "7001413", + "7001414", + "7001415", + "7001416", + "7001417", + "7001418", + "7001419", + "7001420", + "7001421", + "7001422", + "7001423", + "7001424", + "7001425", + "7001426", + "7001427", + "7001428", + "7001429", + "7001430", + "7001431", + "7001432", + "7001433", + "7001434", + "7001435", + "7001436", + "7001437", + "7001438", + "7001439", + "7001440", + "7001441", + "7001442", + "7001443", + "7001444", + "7001445", + "7001446", + "7001447", + "7001448", + "7001449", + "7001450", + "7001451", + "7001452", + "7001453", + "7001454", + "7001455", + "7001456", + "7001457", + "7001458", + "7001459", + "7001460", + "7001461", + "7001462", + "7001463", + "7001464", + "7001465", + "7001466", + "7001467", + "7001468", + "7001469", + "7001470", + "7001471", + "7001472", + "7001473", + "7001474", + "7001475", + "7001476", + "7001477", + "7001478", + "7001479", + "7001480", + "7001481", + "7001482", + "7001483", + "7001484", + "7001485", + "7001486", + "7001487", + "7001488", + "7001489", + "7001490", + "7001491", + "7001492", + "7001493", + "7001494", + "7001495", + "7001496", + "7001497", + "7001498", + "7001499", + "7001500", + "7001501", + "7001502", + "7001503", + "7001504", + "7001505", + "7001506", + "7001507", + "7001508", + "7001509", + "7001510", + "7001511", + "7001512", + "7001513", + "7001514", + "7001515", + "7001516", + "7001517", + "7001518", + "7001519", + "7001520", + "7001521", + "7001522", + "7001523", + "7001524", + "7001525", + "7001526", + "7001527", + "7001528", + "7001529", + "7001530", + "7001531", + "7001532", + "7001533", + "7001534", + "7001535", + "7001536", + "7001537", + "7001538", + "7001539", + "7001540", + "7001541", + "7001542", + "7001543", + "7001544", + "7001545", + "7001546", + "7001547", + "7001548", + "7001549", + "7001550", + "7001551", + "7001552", + "7001553", + "7001554", + "7001555", + "7001556", + "7001557", + "7001558", + "7001559", + "7001560", + "7001561", + "7001562", + "7001563", + "7001564", + "7001565", + "7001566", + "7001567", + "7001568", + "7001569", + "7001570", + "7001571", + "7001572", + "7001573", + "7001574", + "7001575", + "7001576", + "7001577", + "7001578", + "7001579", + "7001580", + "7001581", + "7001582", + "7001583", + "7001584", + "7001585", + "7001586", + "7001587", + "7001588", + "7001589", + "7001590", + "7001591", + "7001592", + "7001593", + "7001594", + "7001595", + "7001596", + "7001597", + "7001598", + "7001599", + "7001600", + "7001601", + "7001602", + "7001603", + "7001604", + "7001605", + "7001606", + "7001607", + "7001608", + "7001609", + "7001610", + "7001611", + "7001612", + "7001613", + "7001614", + "7001615", + "7001616", + "7001617", + "7001618", + "7001619", + "7001620", + "7001621", + "7001622", + "7001623", + "7001624", + "7001625", + "7001626", + "7001627", + "7001628", + "7001629", + "7001630", + "7001631", + "7001632", + "7001633", + "7001634", + "7001635", + "7001636", + "7001637", + "7001638", + "7001639", + "7001640", + "7001641", + "7001642", + "7001643", + "7001644", + "7001645", + "7001646", + "7001647", + "7001648", + "7001649", + "7001650", + "7001651", + "7001652", + "7001653", + "7001654", + "7001655", + "7001656", + "7001657", + "7001658", + "7001659", + "7001660", + "7001661", + "7001662", + "7001663", + "7001664", + "7001665", + "7001666", + "7001667", + "7001668", + "7001669", + "7001670", + "7001671", + "7001672", + "7001673", + "7001674", + "7001675", + "7001676", + "7001677", + "7001678", + "7001679", + "7001680", + "7001681", + "7001682", + "7001683", + "7001684", + "7001685", + "7001686", + "7001687", + "7001688", + "7001689", + "7001690", + "7001691", + "7001692", + "7001693", + "7001694", + "7001695", + "7001696", + "7001697", + "7001698", + "7001699", + "7001700", + "7001701", + "7001702", + "7001703", + "7001704", + "7001705", + "7001706", + "7001707", + "7001708", + "7001709", + "7001710", + "7001711", + "7001712", + "7001713", + "7001714", + "7001715", + "7001716", + "7001717", + "7001718", + "7001719", + "7001720", + "7001721", + "7001722", + "7001723", + "7001724", + "7001725", + "7001726", + "7001727", + "7001728", + "7001729", + "7001730", + "7001731", + "7001732", + "7001733", + "7001734", + "7001735", + "7001736", + "7001737", + "7001738", + "7001739", + "7001740", + "7001741", + "7001742", + "7001743", + "7001744", + "7001745", + "7001746", + "7001747", + "7001748", + "7001749", + "7001750", + "7001751", + "7001752", + "7001753", + "7001754", + "7001755", + "7001756", + "7001757", + "7001758", + "7001759", + "7001760", + "7001761", + "7001762", + "7001763", + "7001764", + "7001765", + "7001766", + "7001767", + "7001768", + "7001769", + "7001770", + "7001771", + "7001772", + "7001773", + "7001774", + "7001775", + "7001776", + "7001777", + "7001778", + "7001779", + "7001780", + "7001781", + "7001782", + "7001783", + "7001784", + "7001785", + "7001786", + "7001787", + "7001788", + "7001789", + "7001790", + "7001791", + "7001792", + "7001793", + "7001794", + "7001795", + "7001796", + "7001797", + "7001798", + "7001799", + "7001800", + "7001801", + "7001802", + "7001803", + "7001804", + "7001805", + "7001806", + "7001807", + "7001808", + "7001809", + "7001810", + "7001811", + "7001812", + "7001813", + "7001814", + "7001815", + "7001816", + "7001817", + "7001818", + "7001819", + "7001820", + "7001821", + "7001822", + "7001823", + "7001824", + "7001825", + "7001826", + "7001827", + "7001828", + "7001829", + "7001830", + "7001831", + "7001832", + "7001833", + "7001834", + "7001835", + "7001836", + "7001837", + "7001838", + "7001839", + "7001840", + "7001841", + "7001842", + "7001843", + "7001844", + "7001845", + "7001846", + "7001847", + "7001848", + "7001849", + "7001850", + "7001851", + "7001852", + "7001853", + "7001854", + "7001855", + "7001856", + "7001857", + "7001858", + "7001859", + "7001860", + "7001861", + "7001862", + "7001863", + "7001864", + "7001865", + "7001866", + "7001867", + "7001868", + "7001869", + "7001870", + "7001871", + "7001872", + "7001873", + "7001874", + "7001875", + "7001876", + "7001877", + "7001878", + "7001879", + "7001880", + "7001881", + "7001882", + "7001883", + "7001884", + "7001885", + "7001886", + "7001887", + "7001888", + "7001889", + "7001890", + "7001891", + "7001892", + "7001893", + "7001894", + "7001895", + "7001896", + "7001897", + "7001898", + "7001899", + "7001900", + "7001901", + "7001902", + "7001903", + "7001904", + "7001905", + "7001906", + "7001907", + "7001908", + "7001909", + "7001910", + "7001911", + "7001912", + "7001913", + "7001914", + "7001915", + "7001916", + "7001917", + "7001918", + "7001919", + "7001920", + "7001921", + "7001922", + "7001923", + "7001924", + "7001925", + "7001926", + "7001927", + "7001928", + "7001929", + "7001930", + "7001931", + "7001932", + "7001933", + "7001934", + "7001935", + "7001936", + "7001937", + "7001938", + "7001939", + "7001940", + "7001941", + "7001942", + "7001943", + "7001944", + "7001945", + "7001946", + "7001947", + "7001948", + "7001949", + "7001950", + "7001951", + "7001952", + "7001953", + "7001954", + "7001955", + "7001956", + "7001957", + "7001958", + "7001959", + "7001960", + "7001961", + "7001962", + "7001963", + "7001964", + "7001965", + "7001966", + "7001967", + "7001968", + "7001969", + "7001970", + "7001971", + "7001972", + "7001973", + "7001974", + "7001975", + "7001976", + "7001977", + "7001978", + "7001979", + "7001980", + "7001981", + "7001982", + "7001983", + "7001984", + "7001985", + "7001986", + "7001987", + "7001988", + "7001989", + "7001990", + "7001991", + "7001992", + "7001993", + "7001994", + "7001995", + "7001996", + "7001997", + "7001998", + "7001999", + "5001061", + "0006042", + "3006679", + "6004322", + "2007658", + "1004560", + "2006750", + "0006869", + "1004565", + "3003946", + "1003680", + "3004632", + "0003133", + "7003993", + "6003464", + "3003287", + "1005085", + "8001554", + "4004235", + "7004650", + "4003147", + "0005267", + "0004065", + "7004454", + "4003280", + "0003948", + "3005891", + "6003988", + "0003461", + "3006189", + "6003386", + "1006019", + "8002648", + "8002514", + "2007359", + "3003452", + "6003797", + "3004643", + "6003036", + "2003158", + "0006552", + "2007778", + "1006891", + "0003669", + "8001596", + "1005592", + "0006470", + "2004699", + "1003396", + "3003324", + "1006866", + "6003749", + "3006941", + "3004461", + "0004738", + "4004012", + "4003642", + "0006732", + "2003094", + "4003173", + "0005325", + "6004376", + "1004531", + "4003195", + "6004869", + "0006939", + "1005170", + "2005392", + "0005157", + "4003643", + "6002761", + "2006695", + "2003663", + "0006370", + "1005348", + "3006811", + "0006433", + "7004412", + "6003467", + "0006297", + "0004351", + "8003804", + "0006294", + "2003681", + "2004500", + "6003593", + "1004367", + "0006862", + "2007799", + "6003646", + "3003762", + "7002906", + "2006826", + "4002571", + "8003108", + "4002491", + "5001549", + "6002980", + "8003069", + "6004893", + "2005130", + "0006232", + "8002369", + "8001972", + "7004209", + "1004662", + "3005528", + "8001779", + "3003073", + "3006461", + "7002742", + "4002656", + "0004178", + "4002033", + "7004424", + "7003855", + "2006850", + "3003668", + "6004626", + "3005548", + "3005069", + "8001702", + "1003985", + "2007129", + "2007143", + "3004867", + "0003279", + "1004346", + "7003033", + "0003592", + "0005666", + "7004076", + "2006875", + "2005531", + "5001578", + "4002358", + "2007284", + "6004799", + "6003500", + "3004603", + "8002997", + "2007420", + "6003884", + "0006787", + "2007995", + "6003998", + "7004707", + "0006197", + "0006549", + "6003658", + "4003074", + "4002233", + "7002755", + "2003290", + "7003886", + "6002099", + "0004880", + "3004973", + "4003802", + "2005299", + "1004960", + "3004655", + "2004161", + "0004711", + "8001602", + "2007193", + "2007639", + "4003166", + "1003327", + "4004937", + "7003298", + "7002396", + "8002371", + "7002738", + "0005741", + "3005458", + "1003792", + "1005893", + "3005080", + "2006804", + "8002865", + "8001687", + "1005836", + "1004299", + "0005964", + "0004607", + "4003658", + "0006893", + "1005244", + "6002457", + "7004617", + "7002144", + "8001793", + "7003020", + "3005866", + "1004398", + "0003281", + "8002283", + "1005925", + "2003737", + "7003239", + "4003938", + "7003761", + "2007545", + "1004764", + "6004513", + "3006708", + "7003120", + "3003556", + "4002384", + "3004009", + "2006988", + "2004763", + "1004077", + "8002978", + "8002876", + "0003469", + "7004711", + "3004935", + "4004790", + "4003817", + "0003976", + "2004016", + "3004899", + "6004647", + "2007863", + "0004979", + "8001528", + "0006361", + "6003335", + "2007044", + "3004105", + "0005947", + "6002380", + "6002218", + "2007594", + "8002646", + "4004227", + "3003197", + "8003354", + "1004496", + "6002323", + "5001515", + "3006490", + "1003801", + "1003141", + "6002411", + "0006823", + "2004892", + "2004445", + "2006301", + "3006508", + "2005567", + "3004907", + "4002225", + "8001310", + "6002630", + "4002916", + "0004599", + "2007976", + "8002587", + "3003082", + "8003080", + "3004904", + "5001872", + "2003037", + "3003819", + "2004945", + "6004453", + "8003884", + "0006005", + "6003485", + "4002609", + "3005884", + "0005513", + "2006570", + "0003780", + "8002075", + "3004245", + "1006496", + "7003656", + "0004110", + "5001903", + "2005693", + "0006979", + "2007904", + "5001647", + "1006873", + "2004948", + "2007833", + "6002624", + "2004809", + "8003347", + "7004040", + "2003334", + "7003192", + "3004188", + "1004705", + "8002345", + "6004794" + ] +} \ No newline at end of file diff --git a/webpage/text_files/text_en_display.jsonl b/webpage/text_files/text_en_display.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6daddc9f73f6739a49edbcb90ce27a187644ab56 --- /dev/null +++ b/webpage/text_files/text_en_display.jsonl @@ -0,0 +1,11300 @@ +{"id": "0000000", "video_name": "00033a92-83eb-5fda-94a5-3a5cdf53eb7a", "text": "An angel who can\u2019t see her face from the wing in the leaky sky blows into the horn"} +{"id": "0000001", "video_name": "0004206e-065c-50db-8351-8bb1c235f0e2", "text": "A green, grassy yard with a view of the ocean with calm waves. "} +{"id": "0000002", "video_name": "00061267-7a29-5ba0-96a1-18b6b83852eb", "text": "a clone on huge ball walking in circle "} +{"id": "0000003", "video_name": "000c9183-f83c-50b7-9bea-7188d4e95caf", "text": "demon playing the ouija board, cinematic horror trailer style. "} +{"id": "0000004", "video_name": "0010bacc-b8f4-5605-975f-016d939f0066", "text": "an ant, a caterpillar, and other insects are in one frame "} +{"id": "0000005", "video_name": "00154155-84e1-575a-ae9a-9174687a86c2", "text": "This was once a place where people laughed and children played happily. "} +{"id": "0000006", "video_name": "001613c9-4632-520b-b8cc-6baef618036a", "text": "a 12 year old boy knocking on the door of a insurance company with his back facing the camera "} +{"id": "0000007", "video_name": "00172bf9-f56f-50aa-a8b2-84adf05d691e", "text": "girl wearing 1970s clothing standing in front of a burning building "} +{"id": "0000008", "video_name": "0017dfe0-aff8-5a59-ac28-3c5138f623d9", "text": "HD, Cinematic Texture, Road, Cat, Storm "} +{"id": "0000009", "video_name": "001b4282-4641-5105-9bbc-36a80fad149e", "text": "In 3D animation, two girls and a little boy are making a quarrel over something "} +{"id": "0000010", "video_name": "001e3344-3480-521e-b321-708a28c90a0c", "text": "a cat walk on the flooring "} +{"id": "0000011", "video_name": "0020a809-e8f5-5899-a9e6-aacb7090d551", "text": "an astroid hitting the earth and earth affected partially from astroid "} +{"id": "0000012", "video_name": "002b3a32-cc97-5b03-b3eb-3a72713ed0b0", "text": "can you make a train realatic for butter clarity "} +{"id": "0000013", "video_name": "002ef7ca-a4de-54df-8088-40f9ded5aa7d", "text": "wonder woman eating a piece of pizza sitting on a rustic wooden table "} +{"id": "0000014", "video_name": "00368022-f5fa-50d5-a01a-4174dd1e2f97", "text": "an old man who is amazed, green earth and trees around "} +{"id": "0000015", "video_name": "0038dc81-1d35-5701-a47b-d74773fa3f8b", "text": "A baby smiling and dancing with sunglasses, as if he were famous, walking in the mall with his mother. Realistic 3d cartoon. High quality image. "} +{"id": "0000016", "video_name": "003d858c-f20d-583c-be84-66af3bd11b8a", "text": "1984 video, hands playing rock paper scissors "} +{"id": "0000017", "video_name": "00436c8c-d9f3-5d89-ae20-786d38742f92", "text": "Boy with glasses drinking frappuccino on cafe terrace at night "} +{"id": "0000018", "video_name": "0047bf71-c031-51dd-a5db-f9e0fd051bcd", "text": "suburbs in the future camera pans up flying cars "} +{"id": "0000019", "video_name": "0053f290-f9b5-5547-9626-13734718fc0f", "text": "The boy and the aliens flew in the middle of the galaxy. "} +{"id": "0000020", "video_name": "005de5be-274f-5204-b287-898a5abf0e0e", "text": "two boys Zhenya and Sasha, 3 years old, sitting in a diaper "} +{"id": "0000021", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "A girl is electrocuted in a torture chamber "} +{"id": "0000022", "video_name": "006aaeaf-21e6-56f7-9418-fe58e551a9d8", "text": "a3d image of a cute girl close up pic by singing "} +{"id": "0000023", "video_name": "0071abcd-42b9-50b2-8544-a056406c1834", "text": "The turtle Timmy found a fishsh stuck in an old net, and the fish trying hard to escape. "} +{"id": "0000024", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "a close up of a hand playing a C Major chord on a syntheizer "} +{"id": "0000025", "video_name": "0073056a-5077-5a50-8dca-48e45d3388fc", "text": "A girl is running madly with a handsome guy on a peaceful night. "} +{"id": "0000026", "video_name": "0082c052-53ad-5dbc-8942-1429aa2f616a", "text": "tornado throwing an elephant and animals in the air, violent storm, ar:9:16 "} +{"id": "0000027", "video_name": "00868764-1b7f-5e47-94ad-a2f849b5835d", "text": "a picture of a protagonist who is a warrior and has a legendary sword on his back and has dark green hairs and wearing a red robe and one eye is covered with a eye patch and has a scar on his left eye he is japanese and is a bit muscular. japanese anime style . "} +{"id": "0000028", "video_name": "00887221-1634-59e3-a3db-69b26ddc58e6", "text": "The friendship between Lord Krishna and Arjuna is one of the most iconic and enduring friendships in Indian mythology. "} +{"id": "0000029", "video_name": "008953e3-baac-5b31-9354-0c89dea309ef", "text": "Scene featuring a variety of fish in different colors, shapes, and sizes. The fish are depicted in a vibrant and diverse aquatic environment. "} +{"id": "0000030", "video_name": "008aeb29-326b-53ea-9219-6bb63aa3f75a", "text": "reminding them that with knowledge, compassion "} +{"id": "0000031", "video_name": "008bae08-e4a8-5987-8602-0ff83176d85d", "text": "Visuals of rocks breaking down due to physical forces "} +{"id": "0000032", "video_name": "008cd034-c583-5c3b-a74f-bd318e468107", "text": "people working hard in the mine. in van gogh style "} +{"id": "0000033", "video_name": "00a3d5c8-6c40-5881-8dc8-0ac9eed62b9e", "text": "realestate photographer working, kitchen, sunny day, kids "} +{"id": "0000034", "video_name": "00a40e50-0d34-53c7-bc09-c1474b43ebf3", "text": "animate the alien that possibly is real "} +{"id": "0000035", "video_name": "00a9073a-d37c-56d8-9924-a7b24a12f036", "text": "show the end of the world "} +{"id": "0000036", "video_name": "00b95191-aeda-55f7-9d0b-49ff174f61fb", "text": "The scene opens with a group of young, energetic friends (diverse in descent and gender), dancing in a stylish urban setting. They are wearing fashionable, colorful outfits, moving in sync to a catchy, viral song. Suddenly, the scene shifts to a humorous challenge where each friend tries to master a funny yet challenging dance move. This moment is filled with comical fails and surprising successes. The clip ends with an unexpected, creative twist that delights viewers and encourages sharing. The video should blend a sense of joy, friendship, humor, and trendy dance moves to achieve maximum appeal and shareability. "} +{"id": "0000037", "video_name": "00c30ed3-28a9-5d4d-bb6f-36067e8b502d", "text": "George W. Bush speaking to Walter White, Christmas, snowing, Breaking Bad, 2012 "} +{"id": "0000038", "video_name": "00da7c18-d676-575f-a200-bc4ae90e504d", "text": "employee looking in the puzzle piece "} +{"id": "0000039", "video_name": "00dca047-6743-522a-a280-de600cb2ccde", "text": "kids playing in the snow, chrismas tiem, realistic, colorful, daytime "} +{"id": "0000040", "video_name": "00de55f1-2204-502e-b2fa-4eb592ef1433", "text": "Woman running away from a DJ in a empty Bladerunner scene "} +{"id": "0000041", "video_name": "00de6cc7-1f56-59de-afa2-5512bc54b54f", "text": "Only when people get rid of loneliness can they regain the hustle and bustle "} +{"id": "0000042", "video_name": "00dee24b-14e7-55b7-9a76-2e5fe999c77e", "text": "A female patient open the refrigerator and take out the pills. "} +{"id": "0000043", "video_name": "00e3cbc2-fd07-5308-98d5-7db70846b90a", "text": "a 3d blue heart break into 2 "} +{"id": "0000044", "video_name": "00e52d0f-f761-5dcf-bf15-4401a274c294", "text": "star istwinkling,sun isdown,boat iswiggling on the riverJe telaisserai des mots PIKA "} +{"id": "0000045", "video_name": "00eb9809-e174-5dda-b11a-5ee9344b3552", "text": "Couple with about to enjoy chocolate fondue "} +{"id": "0000046", "video_name": "00ec1135-1345-5c84-8f00-a6cce020e329", "text": "taking on the street boy and girl "} +{"id": "0000047", "video_name": "00ee58aa-b115-5ee7-8e3b-a2aa3117102e", "text": "Sequence of Indian heritage sites transitioning to scenes of modern Indian life, capturing the essence of cultural richness and contemporary spirit. "} +{"id": "0000048", "video_name": "00f39045-e666-59ff-935d-c5fb11ff620c", "text": "the simple animtion 2d character pointing up, white background, no out frame, animate classic, clear animation "} +{"id": "0000049", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "Once upon a time, there lived a young girl named Karen "} +{"id": "0000050", "video_name": "00f878b5-cf9b-5261-aa65-b79a7b5cbee8", "text": "I had a low level of education, 16:9 "} +{"id": "0000051", "video_name": "00fd02a6-f5f7-5935-b889-cfb1e6bfeacc", "text": "flying island made of dripping lava floating in a cloudy sky fast travelling upward "} +{"id": "0000052", "video_name": "00fd88a5-39e0-5766-82ce-cdf5ae98be75", "text": "havy rainy night, the tent is burning small firewood and there "} +{"id": "0000053", "video_name": "0104c04a-3e5b-50d3-8a02-d7072fc633ed", "text": "A green pixel art mask smiling on a dark background, with minimal movement. "} +{"id": "0000054", "video_name": "01075152-9c3c-513d-9446-62db9502196b", "text": "side view of a suited man walking "} +{"id": "0000055", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "Benny meeting Rosie the Rabbit in the meadow, both bunnies with smiling faces. "} +{"id": "0000056", "video_name": "010b0417-3580-5007-80b3-d95dc6a8cd0a", "text": "d dark fantasy retro style knight walking into a hut in dark forest "} +{"id": "0000057", "video_name": "011246ce-d9b3-5f75-969a-0f110b4e6aea", "text": "Diwali celebration with lights and joy without crackers "} +{"id": "0000058", "video_name": "0126de4d-3e82-5e6a-b0c9-6679cb8366c3", "text": "a lamp made of wine , with city inside "} +{"id": "0000059", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "generate a photo of distruction of dinosaurs from earth due to asteriod "} +{"id": "0000060", "video_name": "01390711-cd14-5856-bd1d-eff4b6a50bb6", "text": "bmw m5 competition driving in forest "} +{"id": "0000061", "video_name": "0139c1e7-dcde-573d-ac4c-214255169ecf", "text": "Horror movie shot of a young woman with creepy smile in the eerie rrom with flashing lights. "} +{"id": "0000062", "video_name": "013a299c-fcfb-5dd2-afbe-1521c8e7700f", "text": "A cartoon Santa hands me a present from a subjective perspective. "} +{"id": "0000063", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "a old Man dressed like a soldier in the Forest. "} +{"id": "0000064", "video_name": "013dbc07-c200-5bb1-b00f-462dde4a6c1d", "text": "create a photo of a smurf "} +{"id": "0000065", "video_name": "0145c544-a36a-5084-81ed-2134cfe4c7e5", "text": "Scientists are hopeful that further studies of extremely ancient human DNA will help clarify these mysteries. "} +{"id": "0000066", "video_name": "01491e04-d427-55c2-9321-78c4aa9a44f2", "text": "create a video of a boy playing basketball "} +{"id": "0000067", "video_name": "014c5b6e-6c6a-5046-b24a-b12874dc5b81", "text": "impressionist photograph of the most beautiful sunset over ocean waves, tropical beach, dreamy, romantic, rolling waves, drifting clouds, warm colors "} +{"id": "0000068", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970s, film grain, human birds landing on a telephone wire, during magic hour, cinematic, surreal, magic realism, dystopian "} +{"id": "0000069", "video_name": "014d905b-651f-5dc6-9d8d-6206dcd93f69", "text": "Along the way, Turtle and the rabbit tripped over rocks, "} +{"id": "0000070", "video_name": "014fb780-2809-591e-8b55-cc25a2e2a2d1", "text": "drow Spy girl fighting against Kelemvor paladin, 4k, cinematics, dnd, zoom "} +{"id": "0000071", "video_name": "015da121-7f40-5cb1-8770-3101cb2ece45", "text": "A handheld device shows a DNA string rotating on its own axis and a talking face next to it "} +{"id": "0000072", "video_name": "015eccc0-8c74-5d13-80d7-7fb62b98e5ea", "text": "Egypt in ancient times close up Queen Nefertite looks at herself in bronze hand mirror moving her head in front of a window in the palace, dunes and palm trees in the background "} +{"id": "0000073", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "Consequences on Collective Memory and Identity "} +{"id": "0000074", "video_name": "01611c99-8f52-5b8e-82a8-ad389ae1752e", "text": "ram and sita go to mandir "} +{"id": "0000075", "video_name": "0165f54a-4f5f-5f67-a221-72f2a208277b", "text": "a lush forest full of nature detailed good quality Message: ODS (Font: MODERN) "} +{"id": "0000076", "video_name": "016ace53-a55e-5da7-ad68-764e8ffe2b5d", "text": "There was once an argument between the wind and the sun about who was stronger than the other. "} +{"id": "0000077", "video_name": "01726eb1-3239-5611-8687-c265cd3bd4f2", "text": "boy watching the night from the balcony "} +{"id": "0000078", "video_name": "01778ce9-2d40-5489-99d8-945ef78b365c", "text": "a boy touching a mermaid in a life boat in the ocean with Disney pixar cinematic style "} +{"id": "0000079", "video_name": "017d6f6e-e49c-52ee-a650-d6ea383ba17c", "text": "side scroll paper mache cutouts of a spirit rolling over the earth "} +{"id": "0000080", "video_name": "017f027a-0511-5a0b-83d8-af0620f8b535", "text": "tears in the face floor 4k "} +{"id": "0000081", "video_name": "01804de2-5c07-57ab-96b7-6c6005b8738c", "text": "Rain in the Woods, No moving the image, just movement in the raindrops, realistic, 8khd "} +{"id": "0000082", "video_name": "01852aac-daa3-507c-a0cd-3dbe5b958534", "text": "double rainbow on the planet neptune "} +{"id": "0000083", "video_name": "01889e45-bd12-54d0-89b2-36ba2bb380ef", "text": "In a black room you see a drone moving with a flashing red light "} +{"id": "0000084", "video_name": "018b3226-2c7f-598f-baed-78c12216df94", "text": "1985 video, akitchen blender commercial, with logo "} +{"id": "0000085", "video_name": "018c2a32-358f-5234-81e2-63c995e62116", "text": "Roses walk in the garden and laugh "} +{"id": "0000086", "video_name": "018dcb69-79c2-592a-abc3-be741c8a177a", "text": "man seeing his watch while standing under a street light at night in the side of the road, 3d animation "} +{"id": "0000087", "video_name": "01903378-12e3-549e-89dd-646bfb32c649", "text": "A Sloth holding a glass, smiling at the camera "} +{"id": "0000088", "video_name": "019a7573-c38a-50bb-a49e-6b69527726c3", "text": "realistic war scene of exploading tanks "} +{"id": "0000089", "video_name": "019aae0a-ee2b-51c7-8887-f939a0705903", "text": "cut out rabbit and add a green background Message: 1 Attachment "} +{"id": "0000090", "video_name": "019b7b45-ffbd-5e1f-98ed-72155502cc7c", "text": "cinematic, medium shot, FX film, An astronaut running away from an alien on Mars "} +{"id": "0000091", "video_name": "019bdfbb-b34b-5458-a4d5-f7da89d0b989", "text": "whirling hair, static painting, smiling face "} +{"id": "0000092", "video_name": "019eb7a1-f4f8-5d2e-94b4-e71e7817775c", "text": "beautiful fairy in the sky flying, ghibli studio style "} +{"id": "0000093", "video_name": "01a0237a-1106-5324-9484-bc6b0fae880d", "text": "Marcus Garvey marching in a parade amid rainstorm surrounded by cheering crowds black and white video voluminous clouds "} +{"id": "0000094", "video_name": "01a8e4d3-fdde-50e5-ae79-970a24ba0e67", "text": "a blonde woman dancing in a nightclub "} +{"id": "0000095", "video_name": "01ac7872-8e1b-5ac9-b729-c90710fc1988", "text": "night, meteors falling, wide angle, city "} +{"id": "0000096", "video_name": "01af9071-cbde-5f68-89f3-c07032a4eef7", "text": "animated faceted glasses, herring and loaf "} +{"id": "0000097", "video_name": "01b430ce-3c3d-5645-aa05-61ae37273812", "text": "Medium sized yellow bulbs in full screen with blue background burst together in vector "} +{"id": "0000098", "video_name": "01bca16d-4a3a-58e9-b2ef-21b7865be8da", "text": "figures in dark waves black and white film 1900s "} +{"id": "0000099", "video_name": "01be4e3e-5219-5874-ba22-8058101014b7", "text": "Toyota Crown car drifts in the parking lot in the shopping center "} +{"id": "0000100", "video_name": "01c14970-3829-5747-b92c-e156f84fa9c5", "text": "a renaissance portrait of a young girl "} +{"id": "0000101", "video_name": "01c32ab7-4ec3-516e-a72c-70dc0e5d1635", "text": "shepherd looking sky with a bright star shinning showing the manger of Jesus "} +{"id": "0000102", "video_name": "01c81a82-7a15-5592-8a29-5c87dd5c2e0d", "text": "a japanese car, supra, with neon lights, drifting, on a mountain, night, drone shot, fast and furious scene "} +{"id": "0000103", "video_name": "01c921cb-2028-5817-980a-1c35415e19ef", "text": "illustrated vector of a walking cartoon strawberry "} +{"id": "0000104", "video_name": "01d15797-3b79-5f54-9e20-f839a13a6f3c", "text": "beautiful girl wearing golden batik with shawl "} +{"id": "0000105", "video_name": "01d339db-cf75-5116-82bf-fb355b1cda4b", "text": "tarot cards and tarot readings in the heavens above "} +{"id": "0000106", "video_name": "01d6e5ee-a485-527b-9ae3-1a7f3e91d6be", "text": "a ghost carrying a mining device in the smoke with Many fluorescent colors "} +{"id": "0000107", "video_name": "01d7dd45-dd63-5d17-9cb5-1d3f05bc4252", "text": "a young woman who communicates happily with other people "} +{"id": "0000108", "video_name": "01db1099-a209-590a-a6ec-cfdcb3b8a7be", "text": "video animation 3D Mickey Mouse Disneyland Park "} +{"id": "0000109", "video_name": "01eb5426-72f6-5280-93c6-d0ff7e65f8bf", "text": "cool gothic makeup boys and girls are serving some good food "} +{"id": "0000110", "video_name": "01ef45fa-c5b4-563e-baa1-0d1dfd81680e", "text": "a man jumping into a bubble "} +{"id": "0000111", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "cinematic, bird eye view shot of deep narrow george between himalayas "} +{"id": "0000112", "video_name": "020486f5-f0cc-56a2-b703-2e75735d5300", "text": "pile of paper clips Message: grammar (Font: MODERN) "} +{"id": "0000113", "video_name": "020cee8a-d48a-508b-bbb2-60383745a391", "text": "a Indian boy driving a car "} +{"id": "0000114", "video_name": "020d71a0-9c58-5d59-bb9d-d0f4e5257441", "text": "international geoguessr competition in a tiny room "} +{"id": "0000115", "video_name": "020ee0ba-42a6-52d6-98b1-ebe4463bb519", "text": "Two Chinese teachers and students are talking Message: 1 Attachment "} +{"id": "0000116", "video_name": "021143e1-7fa8-506d-a47f-704aa634d2ab", "text": "A turtle morphs into a Futuristic city 8k cinematic lighting cyberpunk "} +{"id": "0000117", "video_name": "0215f905-4236-5c68-ba41-e298566e5c46", "text": "Two children carrying a Pharaonic treasure of gold "} +{"id": "0000118", "video_name": "021c5cef-9297-53ed-9f0f-f0b0a16c7e50", "text": "1990 documentary film in color showing the ship experiment filadelfia with corpses melted with steel "} +{"id": "0000119", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "warhammer 40k cinematic trailer, character design, action "} +{"id": "0000120", "video_name": "0237ba0d-e6fd-56e5-9ff1-22eee9bdc3c2", "text": "a small bird seeying clouds un toonstyle "} +{"id": "0000121", "video_name": "023d602e-f556-5bc0-8cc2-494fb2bbbc67", "text": "Leo Tolstoy in cyberpunk world writing on tablet blade runner scene "} +{"id": "0000122", "video_name": "0241b89d-2226-5602-87ad-d2119e978e7a", "text": "large grey travel backpack ar 1:1 "} +{"id": "0000123", "video_name": "024c88b8-4298-5dca-a431-a8baf5d2b95a", "text": "lanky wendigo. wearing suit, blurry, low quality, found footage, vhs, forest clearing, abandonned farrm house, sleeping children in grass "} +{"id": "0000124", "video_name": "024d808f-c250-5216-8f14-40456201a922", "text": "35mm film, A 70s car exploding in the middle of a desert "} +{"id": "0000125", "video_name": "02531fe5-dc31-5ca4-a8be-5d834508cc3a", "text": "A construction man is standing on the moon and the camera moves back and we see that he has attached the moon to the earth with glue "} +{"id": "0000126", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "an angel with yellow wings, falling from the sky into a pink meadow "} +{"id": "0000127", "video_name": "025635b6-9ba2-5b99-a0c9-6d5c09f6602f", "text": "Little boy Rahul with friends sitting under the tree and planning "} +{"id": "0000128", "video_name": "0269b9b0-a401-55bf-9a44-7d0f976d5bc7", "text": "1950s dreamcore super 8 footage of Lovecraftian king in yellow, vid warm color palette. Night time forest fire "} +{"id": "0000129", "video_name": "026e22a4-91ee-515c-96fb-f66419cec7d1", "text": "a sad man from the balcony looks at a joyful family who goes to the store "} +{"id": "0000130", "video_name": "02740a18-c157-5823-a276-044c28cef5c2", "text": "sonic the hedghog ,tails the fox , shadow the hedghog , scorge the hedgog ,silver the hedghog stadning around chaos emeralds "} +{"id": "0000131", "video_name": "02747e9c-097b-5f82-9926-4a356d73437a", "text": "and the fly agaric mushrooms grow "} +{"id": "0000132", "video_name": "0278a5a9-878d-5a81-b872-4a89c7f464b5", "text": "create a video of two boys agruing with each other in a Paris street "} +{"id": "0000133", "video_name": "027ecd92-b46a-5352-83ec-db5fea8b606d", "text": "Tom Cruise eating chicken caesar salad with Lord Xenu "} +{"id": "0000134", "video_name": "0288c604-5c8e-52a5-b95c-2b28da7db11f", "text": "stonks memw Message: PLAN SCAM (Font: MODERN) "} +{"id": "0000135", "video_name": "028b9b05-9807-52ee-9876-6245c23b2038", "text": "Illustration , Symbol , woodcut print , Print , black and white , white print Frontal , simple vintage compass ,black background hand drawn , socialist realism badge , centered , silk screen print , white lines , black and white , elegant "} +{"id": "0000136", "video_name": "02923ddd-4df0-5e5b-852c-ee091ce72ff4", "text": "digital ways to a cleaner world "} +{"id": "0000137", "video_name": "02abf8ef-46c2-5831-854e-81bac8cfb6a8", "text": "two dimensional cartoon animation of three little pigs dancing, Disney style cartoon "} +{"id": "0000138", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "ancient vikings using sun stone in a tumultous ocean with mountain like waves while strong rains are falling. "} +{"id": "0000139", "video_name": "02b08029-5b64-52df-9506-16a346c69468", "text": "forest, rain, early morning Message: AKIPRESS (Font: MODERN) "} +{"id": "0000140", "video_name": "02b3cbe7-4689-5818-b262-d65798a3ffdb", "text": "a sketch outline of a river with candy mountains in the background. Black and white "} +{"id": "0000141", "video_name": "02b8877a-6658-5787-acd0-b42b64b77aa4", "text": "woman sad for the loss of a loved one. medidas 1920x1080 "} +{"id": "0000142", "video_name": "02ba351e-103d-59ab-ae8b-04a1c7cf8183", "text": "man rushing out of a burning building "} +{"id": "0000143", "video_name": "02baf0b5-4aa7-50eb-8d9e-0eed25a7b05f", "text": "storm at the ocean near mountain coast anime style "} +{"id": "0000144", "video_name": "02c75513-ab6f-5c26-831e-26619c978cb2", "text": "Moscow, burning Kremlin in war, footage from helicopter, cinematic "} +{"id": "0000145", "video_name": "02c8b649-b3ac-545c-901a-447d5d64defd", "text": "wide angle from the balcony: looking the landscape with Giger palaces in ruins, satanic monuments, totems of evil creatures, dramatic cloudy sky, mystical, hyperdetailed, intricate perfect details, complex, horror art. Illustration by Dan Seagrave "} +{"id": "0000146", "video_name": "02c931b9-7ed6-5b8c-bae9-710ef5969d55", "text": "man with two minds and that chooses the type of pasta to eat "} +{"id": "0000147", "video_name": "02caf794-ae1e-5991-a5eb-1f43d0d0b8cd", "text": "create a video where McLaren flies in space "} +{"id": "0000148", "video_name": "02ccfaf7-9fd2-566c-9e3c-ba782fe75897", "text": "shadow walking forward moving tentacles blood red background like a dimensional portal "} +{"id": "0000149", "video_name": "02d1fb70-3025-5a7c-8d8f-645f28531b21", "text": "Transition to a sequence where the traveler is meticulously packing a weathered backpack, laying out items on a bed or table. The items tell a story of their own \u2013 a camera dangling from the strap, a compass, a notebook filled with travel tips, a small globe keychain, and a passport adorned with colorful entry stamps. "} +{"id": "0000150", "video_name": "02d4df79-56d2-57aa-9de1-296914a6d259", "text": "3 technology motorbike taxis waiting for hoe at the intersection with 2d images. 9:16 "} +{"id": "0000151", "video_name": "02d9a25b-212e-59e7-9cba-3776346b98fc", "text": "Jon Klassen Caravaggio animation of a ship sailing in the ocean "} +{"id": "0000152", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "Rabbit twisting vines, slippery rocks, and thorny bushes. Despite his agility, he struggled to navigate the challenges, occasionally tripping and stumbling "} +{"id": "0000153", "video_name": "02e087c6-cc27-5da6-8742-210e3299f1b7", "text": "a dog dance party in a cartoon style "} +{"id": "0000154", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "a man practice chinese kongfu at mountain "} +{"id": "0000155", "video_name": "02e2b2b8-e8ae-5a37-afc4-c743ef5fe68b", "text": "the waves crash against the lighthouse at winter and snowy weather "} +{"id": "0000156", "video_name": "02e400af-3245-5dd0-9bdd-1f21d145f45e", "text": "laying down tiles floors in a newly renovated kitchen in an a class house "} +{"id": "0000157", "video_name": "02e9598e-9b19-5fca-b351-2e1bfc5b097c", "text": "A colourful sketch of men in his 20s holding bag in his hand front view, behind right left view "} +{"id": "0000158", "video_name": "02e9f02e-a6dd-5270-bf6e-6a4a59f0641d", "text": "Across the stream with wooden shoes With bells to tell the king the news "} +{"id": "0000159", "video_name": "02eaac19-3cb9-5357-a1b7-a3734e38c119", "text": "A car made out of a lemon driving down the road "} +{"id": "0000160", "video_name": "02fcd7d5-f641-53be-aa37-a763374e459b", "text": "steven meisel and viviane sassen for vogue italia, long hair young asian swimsuit model with floor length hair, Pantene hair, windblown, mirror lake, brutalism, futurism, future shock, high fashion creative conceptual photography, colorized by Felipe Pantone "} +{"id": "0000161", "video_name": "02fe26ae-4eb8-5f64-b0b7-69ec01e620dd", "text": "a women is talking to a boy and the boy is ignoring her, busy over phone. Make it 15 seconds longer. 2d video, cartoon style, high quality "} +{"id": "0000162", "video_name": "02ff1181-d494-5dd1-9bb5-df831f8b4081", "text": "1950s super 8 footage of a vintage black and white vampire film "} +{"id": "0000163", "video_name": "0305ed1a-eddf-529d-8543-74aa98ee6d7d", "text": "make family , in room , cinematic shot closeup , pan camera angle "} +{"id": "0000164", "video_name": "0309884b-e266-5c2e-91d8-df3845966fb0", "text": "With a deep breath, he crossed the threshold, stepping into a world frozen in time. late night, dynamic action and movement, angle changes, 4:4:4 Chroma Subsampling, 14 bit RAW video recording, log colors, 14 dynamic steps hdr, 21:9 "} +{"id": "0000165", "video_name": "030a6dfe-d46b-5ffd-a8b8-5af510faef86", "text": "abraham lincoln sit at the taater "} +{"id": "0000166", "video_name": "0310cffc-7e08-54da-b95e-f298aa95d26a", "text": "Narendra Modi dancing on a street "} +{"id": "0000167", "video_name": "0313acd0-f34f-5d73-b945-40a94881ea18", "text": "Noodles falling into a bowl of soup. "} +{"id": "0000168", "video_name": "03258411-4efb-5f6a-94b9-cbcd94189bed", "text": "loop of a girl floating in the space with no space suit "} +{"id": "0000169", "video_name": "0326bec8-8ff8-5edf-8604-3d59d16152a8", "text": "tigers surreal cage under a waterfall "} +{"id": "0000170", "video_name": "032de537-b117-5f0e-92a7-66532a7924fc", "text": "Highway 1, colorful sky, rainbow, Milky Way, neon lights, highways, signs, maps, lights, decorations, colorful vehicles, luxury sports cars, luxury sedans, large vehicles, large trucks, large military vehicles, tank vehicles, armored vehicles, buses, fast turning wheels, vehicles speeding, beautiful women, greeting, taking a ride. "} +{"id": "0000171", "video_name": "032f90e1-0084-569e-99cc-6789f7595d68", "text": "a man driving a sport cart in the streets of El Salvador "} +{"id": "0000172", "video_name": "03342a88-4b0e-5ec4-922d-c2faff0e87ff", "text": "there lived a man 10years old John who was seeking an adventure. "} +{"id": "0000173", "video_name": "03376759-450b-52a4-a9fb-798f24b284f5", "text": "realistic planete with crepe shape , in the space "} +{"id": "0000174", "video_name": "03389ce2-ca57-5da2-88a0-991c570425ac", "text": "model smiling with hair blowing in the wind "} +{"id": "0000175", "video_name": "033bcac9-25db-5c64-8c18-719552d92d1f", "text": "the world embracing technology and AI and robots and automation motion 9 "} +{"id": "0000176", "video_name": "0342f18a-f60f-5877-a514-392db48e63ad", "text": "Once upon a time, in a colorful world nestled between rolling hills and endless meadows, lived two best friends named Alex and Maya. They were known throughout the village for their infectious smiles and boundless energy. Their favorite pastime was exploring the enchanted forest just beyond the village, where they would often find themselves immersed in magical adventures. "} +{"id": "0000177", "video_name": "03440f32-5c96-5acd-9c17-f6604196168e", "text": "indian dress as mariachi playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "0000178", "video_name": "034c5018-9172-5425-aaef-7f45752973bc", "text": "A man walking on the beach who suddenly trips and falls into the water in cinematic style "} +{"id": "0000179", "video_name": "034c61e3-5a10-51f2-bcc6-112bfd3a9cdc", "text": "full overflowing arcila clay religion a la Jonathan Meese fondo de br into overlapping pieces haribo seamonkey a la Peter Doig "} +{"id": "0000180", "video_name": "034effc7-07a7-5b4d-bf04-0f94e7507859", "text": "of a doppelganger morphing into its human form, with sparks of electricity illuminating the transformation.slow Motion "} +{"id": "0000181", "video_name": "0350c8e2-e20d-5bb0-b388-038f750c7fbb", "text": "the Sun suddenly blinks out of existence "} +{"id": "0000182", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "Batman with a future hi tech armor with nanotechnology and cape "} +{"id": "0000183", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "Man holding lottery ticket with surprised expression on his face "} +{"id": "0000184", "video_name": "035f7bdd-df1b-505d-ac0f-8b1283bddc7b", "text": "Alisher Morgenshtern dancing on his hands and smoking a cigaret the size of a banana "} +{"id": "0000185", "video_name": "036676c5-23f3-589b-811a-5158f3e0d300", "text": "Veridium City began to heal from the scars of corruption and crime. "} +{"id": "0000186", "video_name": "036702e3-a4db-5549-87a2-5ce19155fdd9", "text": "Cyberpunk city with the black bladerunner car going on the road Photoreal "} +{"id": "0000187", "video_name": "036dac5c-b710-57ab-8d75-ba91e12a56f3", "text": "Elon Musk with Bill Gates with Apple "} +{"id": "0000188", "video_name": "037a0170-44e3-5ff7-8f47-0d9d89ed84d5", "text": "moana and maui playing xylophones and drums with monkeys dancing in the background "} +{"id": "0000189", "video_name": "037a9a36-024e-5389-9ff9-2aa11fbfb9a4", "text": "king sitting under tree near a river with a beautiful goddess walking on water nearby "} +{"id": "0000190", "video_name": "037cf0fd-1c3f-5c45-bf87-2712dfd801e5", "text": "women playing volleyball at the beach "} +{"id": "0000191", "video_name": "0381770a-127a-5f97-91be-59911c4a62eb", "text": "7 second video of a woman knee deep in the ocean looking out waves lapping gently, sun on horizon, island in the distance, the camera pans behind her from her right to left "} +{"id": "0000192", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "gothic young woman with long blue hair dancing "} +{"id": "0000193", "video_name": "038a9787-1dec-5938-852d-be741e027d2b", "text": "horror watches in the night that walk "} +{"id": "0000194", "video_name": "038f0c3e-5b79-5320-9e77-98eca72531c8", "text": "epic battle between characters different characters: pawns, bishops, knights, rooks, one queen, and one king "} +{"id": "0000195", "video_name": "03900473-54cc-50f5-acec-de4758aec38b", "text": "Slowly moving clouds in an orange sunset sky "} +{"id": "0000196", "video_name": "0397e6a0-67ba-5aa0-8985-f6557da88601", "text": "make something similar Message: 1 Attachment "} +{"id": "0000197", "video_name": "039daf82-20aa-5c49-95fb-5748a4e8e488", "text": "jumping and landing, motion, 4k, cinematic "} +{"id": "0000198", "video_name": "039f565e-e584-551f-a621-4a4d304a21a1", "text": "camel carriny african king drapped in gold and wealth relaxing in the desert "} +{"id": "0000199", "video_name": "03aba788-cd33-5d1e-b493-74067487983d", "text": "micky mouse run in a maze of seo terms "} +{"id": "0000200", "video_name": "03af1d22-1d0e-571e-ab7f-f889e0e95f56", "text": "cartoon, grilled cheese melting, colorful kitchen motion "} +{"id": "0000201", "video_name": "03b184d8-c60f-5039-93eb-cdf4370eb7ee", "text": "a student in biblary reading a book with her friend "} +{"id": "0000202", "video_name": "03b8abe4-00e7-5808-8acf-9975aa1103f3", "text": "Love and emotional feelings are more valuable when they come true and honest in life. "} +{"id": "0000203", "video_name": "03bc1f32-1279-587f-9152-824b6c4c8acc", "text": "Microorganism shot next to a mushroom, science fiction 8K "} +{"id": "0000204", "video_name": "03ce7d7f-5101-5cee-9928-daa744b27850", "text": "blue and yellow cyberpunk samurai with grawheels instead of hands, trying to pull up the car "} +{"id": "0000205", "video_name": "03d0f830-865b-5939-894c-6a0a4934bc9b", "text": "Once upon a time, in the enchanting kingdom of Bloomsbury, there lived a kind and gentle king named Frederick. He ruled his kingdom with compassion and wisdom, beloved by all his subjects. However, something was missing from his life, something that would light up his heart with joy. "} +{"id": "0000206", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "man with dreads playing violin in space, high detail digital illustration "} +{"id": "0000207", "video_name": "03d71294-1b83-5914-8d37-83fe5ed19bc9", "text": "create a documentry kind of video, scientist creating AI robot "} +{"id": "0000208", "video_name": "03e10ea3-ba6e-5fb4-a5fb-d1dd4b7cf3e8", "text": "a low poly cigarette burning and getting shorter, smoke flying "} +{"id": "0000209", "video_name": "03e3ecfc-3013-5541-b65f-71d30e7051d9", "text": "oceans waves with heart and glitter Message: love (Font: MODERN) "} +{"id": "0000210", "video_name": "03e63553-2a77-5926-af19-81b5c71c509e", "text": "Describe the preparations for the grand feast. What are the animals doing to make the celebration special? "} +{"id": "0000211", "video_name": "03e8516f-7790-5361-8810-ad6ee65f1a50", "text": "rain Message: Gratus in forest (Font: MODERN) "} +{"id": "0000212", "video_name": "03e97113-9bc2-5533-9d5d-a4243cce74d5", "text": "a moroccain man walk in sahara in egybt "} +{"id": "0000213", "video_name": "03ee1b49-625b-5698-9ac7-e5d08bf6d332", "text": "Once upon a time in the whimsical land of Jugelia, where "} +{"id": "0000214", "video_name": "03fa4248-b422-5240-9514-1b2bf17965e3", "text": "A metallic Spiderman in black and red suit in the style of multifaceted geometry, vray tracing, exquisite craftsmanship, made of crystal, anna dittman with a cityscape background "} +{"id": "0000215", "video_name": "03fa6bcb-afa1-5a41-baf8-907f0dbb41c8", "text": "aquarium with goldfish and gravel floor Message: ADEMILY (Font: MODERN) "} +{"id": "0000216", "video_name": "03fab710-5899-5e4f-9918-2cf44793ad94", "text": "Jack cards meeting the queen of spades, technicolour "} +{"id": "0000217", "video_name": "03fc90d8-4062-54ee-92dc-578c64b5c13b", "text": "shepherds staring at angels in the sky Message: wonder (Font: MODERN) "} +{"id": "0000218", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "The Cat Aliens perform incredible tricks, showcasing their intelligence. "} +{"id": "0000219", "video_name": "040ebf85-3d6b-54c7-a661-30f89df1f414", "text": "A alien spaceship lauch in New York "} +{"id": "0000220", "video_name": "04175e1f-6a67-52c0-b7db-b30d336791c7", "text": "baby riding atop a single fox running through a field chasing a rabbit "} +{"id": "0000221", "video_name": "04211139-c3a7-5e9d-a494-c9a630667087", "text": "barbie with guns, fornite style inside a giant sphere cage, in the rain, 8k cinematic hyperealist "} +{"id": "0000222", "video_name": "04232062-fd43-5d87-bfb0-db9c8234feff", "text": "5 minuite long video presenting quality distribution of goods and services "} +{"id": "0000223", "video_name": "04277587-ded3-5b84-a5e6-515f194e9c21", "text": "Percy feeling left out as his friends prepare for an expedition. "} +{"id": "0000224", "video_name": "042c196b-a3e6-579a-a384-75e3a19a488f", "text": "Beautiful nature of Albania, mountains and coast "} +{"id": "0000225", "video_name": "042f3d4e-9e50-5550-bd9c-8322d9a30937", "text": "the anime character sweet girl with long pink hair, stands with a knife and smiles sweetly "} +{"id": "0000226", "video_name": "04381842-1e37-530e-9ff5-f68b4ab541aa", "text": "The city of Athens Greece with Parthenon night shot and a pterodactyl flying in the sky animation photorealistic cinematic epic shot "} +{"id": "0000227", "video_name": "043e39e7-be2d-5332-82ae-f135553cebb5", "text": "nanoscopic view of black water wave crashing inside white petri dish black,white grey color palette with warm undertones "} +{"id": "0000228", "video_name": "043eb0c0-f8e3-5ff1-b6ad-d3d4f32bb85e", "text": "Animated 10 min long horror story in english "} +{"id": "0000229", "video_name": "0441e193-16b5-5ddf-8d3b-fa15045c94e0", "text": "Non3D. NonCartoon. NonAnime. Real ergonomics. High quality realism. Mini bikini maiden. "} +{"id": "0000230", "video_name": "0450d5f9-61fe-5d1d-840f-feb9b25d8f2c", "text": "at a rave party, Jesus punches Santa Claus. Around them people dance and lights beam. "} +{"id": "0000231", "video_name": "0451babf-9da2-5f56-907c-7bff0a174c0a", "text": "following sci fi warrior in armour coming through the forest at sunset with mountains in background with high intensity and quick motion "} +{"id": "0000232", "video_name": "0453cec4-76b1-5c55-ac2e-d7d4a9fe3493", "text": "the hippo runs around the field and laughs "} +{"id": "0000233", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "beautiful lady busy with her laptop "} +{"id": "0000234", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "police officers dancing in the street "} +{"id": "0000235", "video_name": "045aa0fe-0900-56d2-8afc-04671829fe4d", "text": "make a logotype of the name Fordel "} +{"id": "0000236", "video_name": "045af3aa-d2c5-58d3-8e8e-285543a3cb33", "text": "A tiny firefly, lost from its swarm, stumbles upon a forgotten clock workshop where time has stood still since the last chime. "} +{"id": "0000237", "video_name": "045b3d90-7e4b-54ed-a8ca-058b4961c8ba", "text": "a green rabbit playing the guitar "} +{"id": "0000238", "video_name": "046215c6-edff-5c44-9863-0f8544da404e", "text": "Indian parliament, hyper realistic, High octane render, evening timelapse, "} +{"id": "0000239", "video_name": "0462c408-07f9-583f-9073-e8eb16ed9bd1", "text": "berry jelly Message: yeppo (Font: COMICS) "} +{"id": "0000240", "video_name": "0463b136-7087-5bfa-aeef-7b16d0d0e7ce", "text": "An image of the main stage at the Eurovision Song Contest. The entire picture is full of a lot of red and black imagery. Lots and lots of red and black. There is a black eagle which represents the eagle from the Albanian flag. "} +{"id": "0000241", "video_name": "046b3909-009f-59cb-b363-f4ec6504cc3d", "text": "Grasshoppers jumping among the flowers on dirt road "} +{"id": "0000242", "video_name": "046bcbc2-6652-55f9-ae23-356903dfcb19", "text": "christmas sleigh, fly, transforms into a spaceship, in space, galaxy "} +{"id": "0000243", "video_name": "047602c1-20f8-5541-b38c-d641c7a19a28", "text": "a door suspended in a white space opens up to a world of color "} +{"id": "0000244", "video_name": "047bba29-76a6-53d6-b8ce-d8e75ca8d97b", "text": "mouse, amidst the horrors of World War II, navigates the brutalities of a German concentration camp, forms alliances with diverse companions, and endeavors to escape. "} +{"id": "0000245", "video_name": "047cd22d-7955-5e3e-81e2-2045b49f74e0", "text": "a man at the platonic form of a small wood shop "} +{"id": "0000246", "video_name": "04853db3-30f5-58e8-a17a-0dc2d0968bf7", "text": "a young girl blonde with elegant dress blue "} +{"id": "0000247", "video_name": "0490768a-e310-5eee-bb59-16e5e8746402", "text": "the birth of a black egg on the moon, 16 mm, black and white, realism "} +{"id": "0000248", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "let this little girl jump high Message: 1 Attachment "} +{"id": "0000249", "video_name": "0497ff25-ce66-5fd4-83f6-fe29ad0ec76a", "text": "young man reading a book and looking up with a big realization "} +{"id": "0000250", "video_name": "0499f50b-f0ba-534d-be19-b0ada44ff715", "text": "from far aways a dense forest "} +{"id": "0000251", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "wide deep space, floating in space a camera with sereval blinking eyes "} +{"id": "0000252", "video_name": "04a0e85e-e4b8-5aa5-a39c-57d60e058a9c", "text": "danone is a dairy brand create an image "} +{"id": "0000253", "video_name": "04a2eb9b-2787-542f-bfe2-6050c556cf31", "text": "indian style atta biscuits 4k quality AR 16:9 "} +{"id": "0000254", "video_name": "04a89ebb-e5ff-5119-8969-b321ee5ef561", "text": "surreal world, green, falling apart, earthy, birch bark Message: Hello (Font: MODERN) "} +{"id": "0000255", "video_name": "04b1ea98-bc7e-58fb-b0e9-2accabae5782", "text": "During the confrontation, John takes aim and fires, initiating a fierce gun battle. The shot showcases the intense action, with bullets flying and sparks from ricochets, heightening the chaos "} +{"id": "0000256", "video_name": "04b665b9-fa45-5c5a-abe9-dda134793ece", "text": "picture of waving wheat at dusk "} +{"id": "0000257", "video_name": "04bcc6e3-6824-599b-ae55-d1fb8e344559", "text": "you are driving in wrong way, trying to dodge every car. "} +{"id": "0000258", "video_name": "04bd6d52-9a8d-5c8a-a1d3-e4fb71da1cef", "text": "With this feather, she could see for miles in every direction, spotting even the tiniest insect crawling on the forest floor or the distant silhouette of a soaring eagle "} +{"id": "0000259", "video_name": "04bf1a3f-d992-5482-9164-57b18413a39e", "text": "a kitten dancing on a hand , 4k, realistic "} +{"id": "0000260", "video_name": "04c37fff-7acc-515f-bc20-db7b5aae9ae4", "text": "The monkey felt sorry for the fish and decided to help it. "} +{"id": "0000261", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "anime styled very attractive girl in a swimming dress in a beach "} +{"id": "0000262", "video_name": "04c71990-9959-5fc8-bcea-6bca55926f8f", "text": "a streets of the city of chicago in gangsters ages, people and cars on the estreets, landscape panorama of the city "} +{"id": "0000263", "video_name": "04cd3abf-feea-5a53-b50c-875cd9a217dc", "text": "a priest takes out a holy cross "} +{"id": "0000264", "video_name": "04cefd0b-697c-5f22-922a-7981df4c2d3c", "text": "a person flipping a table in a rage room "} +{"id": "0000265", "video_name": "04cf9fd2-bf78-5402-b2ab-9596851d9d43", "text": "a sportsman wearing nike air and running "} +{"id": "0000266", "video_name": "04d14ada-39c5-51cd-95ac-2e31116cf874", "text": "Create a scene where a boy wearing a black hoodie and a black hat stands in the center of an outdoor square. The sky becomes dark and dark clouds cover the area. Pedestrians around him are holding umbrellas and rushing home, leaving him alone enjoying the current scene "} +{"id": "0000267", "video_name": "04d2ca99-393a-577e-80e4-0a912d63f54a", "text": "A collage featuring both Golden Retrievers and Labrador Retrievers side by side, showcasing their distinct appearances. "} +{"id": "0000268", "video_name": "04d57141-5444-5435-baa7-6261489bf4ac", "text": "poeple help each other Message: together (Font: MODERN) "} +{"id": "0000269", "video_name": "04d7c3a4-7e0e-54bb-bd7c-2b999da62cd6", "text": "Background music: Light and inspiring melody. A wide panoramic view of a large, bright, and impressive library appears on the screen. Business people of different ages and nationalities are seen interacting with enthusiasm, laughter, and discussing books. The camera pans gently through the library, highlighting its scale and diversity. Characters pick up books and look at them with curiosity. "} +{"id": "0000270", "video_name": "04d847ab-0bf3-5b95-be84-9cc380e381cf", "text": "a quantum explosion in the quantum realm with beautiful sparkles and electrical particles shattering "} +{"id": "0000271", "video_name": "04d84be7-d965-5a9c-94ba-1c1e295eb5db", "text": "cinematic angle, an angry business man moving his arm, he stand towards some company staff "} +{"id": "0000272", "video_name": "04dc1ab9-7f94-5755-923f-0bcb230c211e", "text": "like a boy boy studyung in his room in a anime style "} +{"id": "0000273", "video_name": "04e107cc-3d8b-5e80-8b5b-ae2357ac9725", "text": "sexy human girl transforming into a dragon "} +{"id": "0000274", "video_name": "04e7d42b-901f-5692-9491-9d6666139dbb", "text": "I need an image to place as a notebook background that is a feminine landscape, nature "} +{"id": "0000275", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "The panda couple had a party with squirrels, little foxes, little raccoons, fawns and larks in the bamboo forest "} +{"id": "0000276", "video_name": "04ecefd2-3b71-55c5-8471-ded61fb5baa2", "text": "trio of heroes a dragon, a priceinha and a galactic ninja soldier, Mission to save the universe, exciting twists, 80s film "} +{"id": "0000277", "video_name": "04f1693e-d5e6-5b44-8f46-ebc145e9041e", "text": "A solitary man walking in the city. "} +{"id": "0000278", "video_name": "04f4c944-7e65-5719-81fd-5a07a26c11da", "text": "In a small small village, there were three loyal friends Ahmed. Laila and Ali. Hassan . They meet every day after school in the beautiful garden "} +{"id": "0000279", "video_name": "04fc53e3-b0f8-5e4c-a991-3c6bf9dc4414", "text": "ukrainian village couple of 19 century hugging near the house, video "} +{"id": "0000280", "video_name": "04fc58aa-6015-57aa-a530-058c7962b689", "text": "As the townspeople marched towards the Haunted House, their crosses glinted in the moonlight, ready to battle the evil spirits within "} +{"id": "0000281", "video_name": "04fcdef8-11f5-5cf2-bda7-86068056ab14", "text": "the guy is driving a pit bike on the rear wheel around the city "} +{"id": "0000282", "video_name": "0501ae39-1a8d-517e-ae13-2afec8b888a8", "text": "A Lamborghini made of chocolate at high speed "} +{"id": "0000283", "video_name": "0504b553-6178-5033-b0d8-eb127060cadc", "text": "sun exploding in the sky, dave gibbons style "} +{"id": "0000284", "video_name": "05080a72-00a8-51eb-a1fc-0867898a4b0f", "text": "A group of automotive engineers is developing new innovative tools. "} +{"id": "0000285", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "Roronoa Zoro standing up from the ground and turning around with a deep wound on his chest in the style of anime "} +{"id": "0000286", "video_name": "0511460f-4241-5ae5-95ea-09e994d8a99e", "text": "move lips blink eyes naturally, animate lights in eyes and on neck. "} +{"id": "0000287", "video_name": "0519438a-11e8-5736-b98e-176ff62d9d21", "text": "a boy with blue hair and red eyes drawn in pencil meets a friend, communicates a little and then goes through the forest "} +{"id": "0000288", "video_name": "052acd83-2b37-58b4-88b3-7f0940397f99", "text": "cat as American football wide receiver "} +{"id": "0000289", "video_name": "052d05f0-e5d0-5ba4-8dd6-52613f71ec44", "text": "half hummingbird, half rabbit, drinking out of a river with the Eiffel tower in the background "} +{"id": "0000290", "video_name": "053d37b2-998f-5f9d-ad1d-6de6509ceba6", "text": "scifi american astronauts playing pickleball on mars "} +{"id": "0000291", "video_name": "053ddea1-09ce-5c9e-99e2-a8cfb9b0ff7e", "text": "amber heard jumping on her bed ultra realistic cinematic 4k "} +{"id": "0000292", "video_name": "05466e9c-c2b9-56cb-931c-1d404bc338b9", "text": "baby running on the beach, sunlight "} +{"id": "0000293", "video_name": "054707f4-60f1-5f66-8d50-058e2e5e4475", "text": "fruit exploding out of a yellow box "} +{"id": "0000294", "video_name": "0550c352-f8e5-5cfe-afcc-e9d1752de2de", "text": "youn man AaravTheir hearts racing as they shared unspoken emotions. "} +{"id": "0000295", "video_name": "0550de73-fccd-5ae9-95c8-6e17a67d7d83", "text": "Create a video with many galaxies moving together "} +{"id": "0000296", "video_name": "055d6794-6d70-593b-97d6-c568a01c0054", "text": "A perfect whey protein powder that promotes muscle production and immunity "} +{"id": "0000297", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "Realistic cinematography showing russian cosmonaut in soyuz spacecraft "} +{"id": "0000298", "video_name": "056a3f4c-a50e-5b99-9bc3-bb6e7dd7d982", "text": "The girl walks along the autumn alley. Her hair and dress flutter in the wind "} +{"id": "0000299", "video_name": "056f5e1d-fe89-5ebe-b1b8-40a440628398", "text": "undersea footage of a humpback whale "} +{"id": "0000300", "video_name": "05750ec5-9903-5628-ab53-feba8a2bdabe", "text": "berlusconi crying, tears, high resolution, 4K, realistic "} +{"id": "0000301", "video_name": "057a1d19-2365-5b77-8210-685490174eaa", "text": "a mysterious island map from a story book 4k "} +{"id": "0000302", "video_name": "057c0f4d-f7c3-53e1-af09-837296980b14", "text": "a pack of wolves running through a forest at night with a huge full moon in the sky. Exaggerated wide angle, high contrast, 16:9 "} +{"id": "0000303", "video_name": "057e56ea-fd29-5be3-a3ea-101923b8f68c", "text": "a cat stealing a banana from a rich monkey "} +{"id": "0000304", "video_name": "057f16ac-bde7-59f1-ab28-1142fd42e7f9", "text": "cartoon snow man on a hill, snow falling "} +{"id": "0000305", "video_name": "057fd2ee-dc22-5f0c-8c3f-32bcdeb177c8", "text": "luxury Cars all racing each other in an empty field "} +{"id": "0000306", "video_name": "05818696-f533-50cd-ae81-63f583723318", "text": "This woman speaking in tv about gaboneses situation "} +{"id": "0000307", "video_name": "058b06a7-6f59-5794-9bc1-343c9d51a804", "text": "cowboy in an abanden town in a desert "} +{"id": "0000308", "video_name": "058bf298-e5f9-5ddd-a182-c73948a0903f", "text": "Intrigued, Lorelei delved into the painting, finding herself in a mesmerizing dreamscape where colors danced and landscapes shifted. "} +{"id": "0000309", "video_name": "05905520-2970-54cd-abc8-ecfb3dfa00b8", "text": "Birds Flying With Sun View Cartoon Animation, 2d Animation Of Flying Birds And Sun Rising On The Sky And Clouds Are Moving. "} +{"id": "0000310", "video_name": "059298b6-9d71-5e51-b729-f3ba64ecb045", "text": "Just as he was about to leave, a gentle voice spoke from behind the waterfall. It was the guardian of the forest, a kind and ancient turtle named Tessa. Tessa thanked Timmy for finding the treasure and rewarded him with a magical wish. "} +{"id": "0000311", "video_name": "0592db9e-60b5-550f-8e77-57cd093566a0", "text": "world of horror cinema scary scene "} +{"id": "0000312", "video_name": "059b9e48-fe3f-5b68-b090-2f3cd4f3f6d5", "text": "A serene, sunny beach scene with families playing in the water "} +{"id": "0000313", "video_name": "05a1f9fb-f34d-53c3-8a7c-c0e47e51cd60", "text": "VR Interface for Remote Work: Create an image of a person wearing VR glasses in a home office, fully immersed in a holographic workspace. The assistant helps organize files, schedule meetings, and manage tasks within this virtual environment. "} +{"id": "0000314", "video_name": "05a4d9a5-e583-5df4-87b3-f75f2c3d524a", "text": "Matue smoking cigarettes in the beach "} +{"id": "0000315", "video_name": "05a73523-100f-5353-ab2b-8429004e5d98", "text": "Two male individuals hugging with their backs turned, looking at the Faculty of Architecture, Design, and Urbanism of Buenos Aires. "} +{"id": "0000316", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "bunch of candys in a bowl "} +{"id": "0000317", "video_name": "05a8e4c6-5a63-58e2-b40c-bd652112cfc1", "text": "realistic side angle view of two people dueling at Dawn in an open field HD 16:9 "} +{"id": "0000318", "video_name": "05b21085-53ba-53b9-947f-77bf303096f1", "text": "A boy and his father walking through the jungle, carrying spears and bows. The boy is looking around with excitement, while his father is looking ahead with caution "} +{"id": "0000319", "video_name": "05b3a98f-8127-5242-921a-6a11c8bb1e99", "text": "view from the window of a car driving on the road of Iceland "} +{"id": "0000320", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "production still of Star Wars by Alejandro Jodorowsky, 35 mm 20ASA kodachrome "} +{"id": "0000321", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "peaple asking a girl for help , animated, 4k,realistic "} +{"id": "0000322", "video_name": "05bc59ea-5160-5377-a367-0c4d5cbcca14", "text": "dress that moves Message: 1 Attachment "} +{"id": "0000323", "video_name": "05c60099-82e0-5841-a0db-0730ab43f2a6", "text": "portrait mode black and white hallway with ghosts quickly moving from door to door "} +{"id": "0000324", "video_name": "05cfeb88-007b-503f-9b6b-f2e29b3fcb9c", "text": "beautiful for words, Alberto Vargas, Patrick Nagel , pop art "} +{"id": "0000325", "video_name": "05d05cba-5740-5c96-942e-7956d6ae599b", "text": "3d printer prints model, dark background, realistic "} +{"id": "0000326", "video_name": "05d97264-60ca-54dc-81f1-dd3aaee930c8", "text": "On a night when college students are wandering around "} +{"id": "0000327", "video_name": "05da3e74-4a29-5897-8c65-94146c594c7d", "text": "heaven, a lot of clouds and from heaven a young blond man, an angel with wings looks down on the earth, she is dressed in a business suit, on a night city with many lights and cars, art by Haoliners Animation League anime studio, 32k resolution, best quality "} +{"id": "0000328", "video_name": "05de3869-7bf4-5620-9b48-9462d629391a", "text": "a man looking into a long and big valley of darknesss "} +{"id": "0000329", "video_name": "05df50bd-1042-55c3-8ab7-42147ad3d4e0", "text": "Ravi picked up the old book and dusted it off, revealing its intricate cover. "} +{"id": "0000330", "video_name": "05e33804-5482-5ed0-9a4a-7e138d846812", "text": "a cat sky diving, hyper realistic, 16k "} +{"id": "0000331", "video_name": "05ed4abf-2492-56c5-b7cf-738e105d274f", "text": "a city beach in a afro futuristic with flowing water "} +{"id": "0000332", "video_name": "05f2c1fc-d3a1-5356-88d1-d343f97c3181", "text": "a beautiful young woman getting out of bed "} +{"id": "0000333", "video_name": "05fb2a50-e8e2-57c9-816a-4f7eb90b5307", "text": "man walk in destroyed soviet city "} +{"id": "0000334", "video_name": "060489c2-3d48-5b28-b0b2-d50a45990399", "text": "Create an illustration that visualizes the decline in biodiversity. Depict threatened or endangered species of animals and plants, highlighting the consequences of biodiversity loss on ecosystems and humanity. "} +{"id": "0000335", "video_name": "060c553e-1328-516f-a055-902a9df07507", "text": "A cloud icon, metallic feel, delicate texture, blue and white, gradient, frosted glass, transparent, trending on poly count, light background, soft lighting, transparent technology sense, industrial design, isometric, super details, 3d, "} +{"id": "0000336", "video_name": "0613ea09-9aba-52d2-b591-52435499cac8", "text": "make a logo named THE MOVING FILMS in 2d illustration "} +{"id": "0000337", "video_name": "06144843-60eb-51cc-8463-cf000c1341d0", "text": "dog wear magenta color dress and dancing "} +{"id": "0000338", "video_name": "0616db1d-af8a-58b5-9506-f946b0e35bb2", "text": "in New York City a woman walking down the street dresses in nice business attire holding her neck with one hand due to neck pain. "} +{"id": "0000339", "video_name": "061775bc-c583-51fe-b986-52bd42e480c1", "text": "super 8 footage of blimp flying over warzone "} +{"id": "0000340", "video_name": "06189b51-0d5b-512a-a880-cbe37eeaacd5", "text": "sicilian boat attacked on the water in old history footage by a dutch boat "} +{"id": "0000341", "video_name": "06280e9b-141f-5363-a022-93bbcdf8f7d3", "text": "It shows the arrest of Africans and their subjugation by British soldiers in the 17th century, with expressions of anguish on their faces and gestures of resistance. It highlights the chains and shackles that soldiers place on Africans as they prepare them to be taken as slaves. "} +{"id": "0000342", "video_name": "0629aa67-88f7-5016-8b7d-c1f293f8c838", "text": "traffice outside a tunnel on a scenic road surrounded by mountains "} +{"id": "0000343", "video_name": "062d32b3-a9bb-557b-a6a2-9e45075e0bfb", "text": "Display Sultan Aziz receiving a message from the neighboring "} +{"id": "0000344", "video_name": "062e975f-3c31-5d9b-aa21-322d082d2596", "text": "Micheal going to his car in GTA 5 style "} +{"id": "0000345", "video_name": "06357738-bc66-5e4e-a9c8-cb0d5299ff35", "text": "Create a 2 minutes video of any different colours of plastics being melt together "} +{"id": "0000346", "video_name": "06398b5d-d6fb-559f-97a3-d38eecdd3243", "text": "giant white dog running through a beautiful field of Texas bluebonnts flowers. Rolling hills. "} +{"id": "0000347", "video_name": "063dab89-0287-5bfb-a606-a0b5fe6b2b0f", "text": "evil viruses dividing viewed through a microscope, cinematic, microscopic, high detail, magnified, good exposure, subject in focus, dynamic movement, mesmerizing, 4k, text: Cyanide Hero "} +{"id": "0000348", "video_name": "063dadc3-8648-5d03-bc1f-e3365c7e9cb3", "text": "a still image to. video of a happy couple eating ice cream "} +{"id": "0000349", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "fir trees forest in the mountains "} +{"id": "0000350", "video_name": "063f1520-b0e6-569f-85be-281c7d6f4e04", "text": "a warrior princess wielding a large sword, a red and gold outfit with long black hair 4k detailed backlit cinematic "} +{"id": "0000351", "video_name": "063fe416-7962-5371-9817-453d35a1e97a", "text": "cats surrounding a white family in the families house "} +{"id": "0000352", "video_name": "06418933-7c94-5e46-a2e7-ab0f22a2ed18", "text": "The outside of a church with a rainbow flag hanging around the entire building. "} +{"id": "0000353", "video_name": "064cf818-acfc-526d-a9ea-713f0b3ce36c", "text": "Lich King, Arthas face, open eyes, blue lights, dark background, ice "} +{"id": "0000354", "video_name": "06517249-9af6-5d9e-996c-0baa24c98017", "text": "pov walking through tokyos streets ; motion 4 "} +{"id": "0000355", "video_name": "065683d2-9d65-59ba-87d5-394c2df277c3", "text": "steak bun steamy table shot tasty food "} +{"id": "0000356", "video_name": "06570a95-e471-540b-b9d3-4525eef7e6bd", "text": "tall stack of photo print like a tower "} +{"id": "0000357", "video_name": "065ad5f0-8edc-5f2f-be0d-f7feea18b5d3", "text": "Make a wizard talking to the camera in front of a church "} +{"id": "0000358", "video_name": "065d9a8e-26d6-57d2-a071-319a2b2a78a3", "text": "a young man changing the tire of a car "} +{"id": "0000359", "video_name": "065e1508-1a9b-577c-835d-f91547d692f3", "text": "man sitting at desk with a headset that is answering the phone "} +{"id": "0000360", "video_name": "06625b0d-acfe-5fe8-b848-d45c046d0c55", "text": "the ghost of a trucker in the parking lot next to the hotel "} +{"id": "0000361", "video_name": "066dd0ae-6241-57f7-b630-8d667928b0db", "text": "a shot of a family asleep at night in their cozy home, unaware of the dangers outside "} +{"id": "0000362", "video_name": "06703492-2727-5c73-8b3a-6f6148a0ada6", "text": "create a village video where some ships are on top with their owner and all other villegers are doing their work in their forming land . cinematic 4K, cartoon style video for animated "} +{"id": "0000363", "video_name": "067d9823-4079-5f02-ba3c-4e78513afdff", "text": "A group of people in a city covering ears from the pain of a loud sound. Anime "} +{"id": "0000364", "video_name": "067dee5a-9809-5afe-8ffe-a82e5b62108a", "text": "a warrior girl approaching a mayan ruin in a post apocalyptic landscape "} +{"id": "0000365", "video_name": "06847b20-86fa-5a4c-99a5-884165f4ec3a", "text": "a british shorthair grey cat in the wind "} +{"id": "0000366", "video_name": "0688bc44-dcb5-540f-ac75-95caeb8bc950", "text": "visual representation of Rabbit lesson learned.\n. in 4k 16:9 "} +{"id": "0000367", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "a plane flying in a beautiful sky like an airlines commercial "} +{"id": "0000368", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "A boy guiding a flock of sheep to graze in the meadows. "} +{"id": "0000369", "video_name": "0693595c-fc72-5ae0-b2aa-15bf545d5337", "text": "When the bus driver starts to walk toward the bus to start work and gets on, he starts talking "} +{"id": "0000370", "video_name": "069c7fff-cecf-5c26-a0da-8271cd826db1", "text": "space ship on a light speed travel crossing a ring planet with nebula on the background "} +{"id": "0000371", "video_name": "069f2234-e902-577c-8cd9-0a7811441bbb", "text": "people sitted under the tree cartoon image "} +{"id": "0000372", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "tom cruise smiling and blinking one eye "} +{"id": "0000373", "video_name": "06af3159-17bf-539e-8243-8afc8fb53428", "text": "create a 3D cartoon character shaped like a human hand with a thumb and little finger like Wings to fly, feet to walk and hands to pull. The index finger and the middle finger are turned towards the palm and have eyes in place of the nails. Between them are the nose and mouth openings. Both sides of these fingers have ear holes. The ring finger may not be present. "} +{"id": "0000374", "video_name": "06b288f5-072d-5607-9db7-2740bf75ded3", "text": "The future world of 2050, angry aliens, bright lights, tall buildings "} +{"id": "0000375", "video_name": "06b54283-b836-5af4-b003-4b652814a5ce", "text": "cybernatics malayan tiger in the middle of soccer stadium at night with an elephant apponent "} +{"id": "0000376", "video_name": "06b7fe45-313a-5765-a2aa-d414f8882ded", "text": "mother Mary heavily pregnant travelling on a camel with Joseph in ancient Israel village "} +{"id": "0000377", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "lord shiv sitting on himalya mountain, 4k, zoom in, 16:9 "} +{"id": "0000378", "video_name": "06c5b563-2e63-5f41-9177-9527aa92a0d9", "text": "Ronald Reagan speaking to a cabinet meeting in 1980 "} +{"id": "0000379", "video_name": "06d0a2b4-d182-5854-bab8-ab72c0c3eed5", "text": "a wine bottle being poured into a glass of roses "} +{"id": "0000380", "video_name": "06d2e8f8-9987-5fa9-914b-7608a24686b8", "text": "3D animated video of john and meeshu travelling in a bicycle inside a deep forest "} +{"id": "0000381", "video_name": "06d4db12-cab0-5072-8ffe-ed743be0d44b", "text": "oil painting art style. Full sailed brig ship breaking through the waves on a summer day "} +{"id": "0000382", "video_name": "06dff108-e6ff-5ef2-8008-ac0b432f27ee", "text": "Creating a video of sandy dough being cut or sliced into vertical sections. "} +{"id": "0000383", "video_name": "06e13d92-7ae4-57a1-9fa7-3b12ea7d92dc", "text": "realistic , fps 24 ,motion 2 , realistic women inside house having dollhouse "} +{"id": "0000384", "video_name": "06e61718-86c4-5a21-8000-d7fa9f09af8f", "text": "create the message out offerro fluid and a black background Message: ordinary Technology (Font: MODERN) "} +{"id": "0000385", "video_name": "06f7014f-b544-516b-acc0-2ffcbf6acd43", "text": "3d cartoon the butter fly said sorry "} +{"id": "0000386", "video_name": "06fa8f8e-f8a9-5431-ae75-84ed2f36e18c", "text": "A floating city over our planet "} +{"id": "0000387", "video_name": "06fd013a-8e97-535d-bb08-9b893ea1257d", "text": "post war ruins, smoke, zoom effect, cinematic, 4k, ultra realistic "} +{"id": "0000388", "video_name": "06ffe2af-f2e3-517f-98cc-422432b6c56f", "text": "programmer working at his desk on code frantically "} +{"id": "0000389", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "a lion walking with a hunter "} +{"id": "0000390", "video_name": "07074cb8-4399-5d55-85a7-821c53a1126d", "text": "a lot peple working on beautyful rice fields with the animal look happy in the life "} +{"id": "0000391", "video_name": "07082abe-b7c9-5186-9bfc-1e99236f5733", "text": "A video of a mob of people in front of a burning vehicle at a riot Message: DIER DEOL (Font: MODERN) "} +{"id": "0000392", "video_name": "070929b8-6106-542f-b177-2d641bf5c137", "text": "Silent forest. Misty night. A figure emerges. Flickering, translucent. Unearthly motion, ethereal. No sound, only whispers. Ghostly presence. highly realistic. 4k "} +{"id": "0000393", "video_name": "0709f838-c35d-5ade-bd8f-9dace06dda41", "text": "hyper realistic rendering of a flock of seagulls flying into the sunset "} +{"id": "0000394", "video_name": "070caada-f27f-51d4-aed2-3dc6e40fa31d", "text": "Hobbits dressed in psychedelic paisley, psychedelic lord of the rings, 1960s, magic forest, 16mm film, grain, "} +{"id": "0000395", "video_name": "0715044d-2dcd-57cf-92de-8f09697b9d8d", "text": "A photorealistic 8k photo with a sunny beach with palm trees and umbrellas. The sky is blue and the sea is calm.\nAlice\nA young woman with blonde hair and green eyes. She wears a red swimsuit and sunglasses. She smiles and holds an ice cream in her hand.\nBob\nA young man with brown hair and brown eyes. He wears a blue swim shorts and a straw hat. He winks and holds a surfboard under his arm. "} +{"id": "0000396", "video_name": "071b11c6-5384-5c66-86b9-feac2961094a", "text": "An oilman in a big car rides on the sand, there are oil rockers in the back, the sun, a 4k car "} +{"id": "0000397", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "Husky dogs chasing and running on the prairie, aerial view "} +{"id": "0000398", "video_name": "0722eadc-b697-5fea-bac2-8f84d89df4dd", "text": "video of aliens laughing with humans in Paris "} +{"id": "0000399", "video_name": "07257020-a9f7-5a6b-844c-ad10da93c95e", "text": "The Seine River has become a polluted wasteland "} +{"id": "0000400", "video_name": "073ff166-661c-533a-918d-8578e7bc3b77", "text": "modern RESIDENTAL BUILDING design by bjorn eagles, architectural photography, style of archillect, futurism, modernist architecture, sourounded bei green tall trees "} +{"id": "0000401", "video_name": "0742e434-68f0-570e-8570-bbc581ed030f", "text": "a man with brown hair is working in office "} +{"id": "0000402", "video_name": "0743ed3b-5baa-5a97-9d07-c7f6bf6e629f", "text": "A boy walking towards his school, shot taken from the top, cinematic, hyper realistic, 4k, unreal engine, high detailed, ultra realistic "} +{"id": "0000403", "video_name": "074466cd-0e71-5424-a1ca-ca9d48a87907", "text": "Oliver and Sparky sitting with a family of rabbits, enjoying a tea party with treats and colorful teacups. "} +{"id": "0000404", "video_name": "07478a46-f6a7-56eb-8bc9-3e6431a901f5", "text": "People vanish without a trace, leaving behind only fading memories in the minds of their loved ones. "} +{"id": "0000405", "video_name": "07499428-3b9c-5727-bcee-6d8277df45a4", "text": "charlize theron walking with bikini in sidewalk epcot center "} +{"id": "0000406", "video_name": "074e5fb1-b07c-5b98-88d4-ea896ffdac06", "text": "Product standing on top of magnifying glass on white background "} +{"id": "0000407", "video_name": "07521c50-56e9-57ac-a952-177cfbe47a71", "text": "man in black coat getting covered in explodion and smoke on street with colorful tenement hauses around, photorealistic 8k "} +{"id": "0000408", "video_name": "07521fdb-e762-5959-9247-24489b0b06bc", "text": "climate change, river drying up, cinematic "} +{"id": "0000409", "video_name": "07535b18-59e5-51ab-8d9e-497e2391267c", "text": "the orange transforms into a rabbit "} +{"id": "0000410", "video_name": "0753e089-a923-5bc6-82e2-c6e6143aa365", "text": "european badgers play with kids painting equipment "} +{"id": "0000411", "video_name": "0758e2ec-4801-579f-a8fa-527800f09e76", "text": "a young Hebrew man in a colorful tunic, being thrown into the bottom of a dry well, in the middle of the desert, by his jealous brothers, arid desert, clothing from the time of the Hebrews in Egypt, ultra realistic, 8k "} +{"id": "0000412", "video_name": "076117fa-cd53-5235-a6da-67da870f1ad6", "text": "high quality in 8K resolution video on future of AI "} +{"id": "0000413", "video_name": "0768628d-af27-5bb6-850d-3f28eca8a4b8", "text": "a 13 years old child in a magic forest "} +{"id": "0000414", "video_name": "076c6055-1152-5e10-8bdd-623a24b70d61", "text": "dark room, night, a woman is staying at window, the window is open, cigarette smoke is in the room, the night lights of the city, the neon signs, in a 1960s French film "} +{"id": "0000415", "video_name": "076c7c12-148a-5aab-a565-085901a995ce", "text": "photoRealistic belizean rainforest without water, pan across landscape, birds in the sky "} +{"id": "0000416", "video_name": "0773a0e3-0858-5321-a44e-9ccfc5843970", "text": "Big tall teacher sit next to beautiful Asian schoolgirl in school Uniform, hyperrealistic, high resolution "} +{"id": "0000417", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "create a sad 6years girl talking with her father in a balcony. keep it cartoon background "} +{"id": "0000418", "video_name": "077bed4e-7b4f-56e2-9ec6-03a8ce40d5d9", "text": "Reversing the Spell: A visual of Sparky and the team working together to reverse the ancient spell on the Nutberry tree, with magical sparks in the air. "} +{"id": "0000419", "video_name": "077cbf46-5b2c-5680-90e6-3edc2b49c972", "text": "A man standing on a bridge in the middle of the vast ocean "} +{"id": "0000420", "video_name": "0783b780-a7ca-5fd1-b7fe-d9081044bf64", "text": "an incredibly sexy fitness model doing a backflip "} +{"id": "0000421", "video_name": "07885d6e-bb43-50db-90fd-660f06780859", "text": "snow in forbidden city girl in ming dynasty outfit "} +{"id": "0000422", "video_name": "078c3abe-34dd-5fb8-a7c7-bf0e7c02b4e6", "text": "daria from the animated show \u201cdaria\u201d uses a mop to clean tomato sauce spill "} +{"id": "0000423", "video_name": "078c7868-8f02-5e83-94c8-6efcd3f631fd", "text": "Realistic Dogs Attack The City Realistic Soldiers Defend the City 4K "} +{"id": "0000424", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "add movement to smoke in backgrounf "} +{"id": "0000425", "video_name": "07931dc4-446a-5ac0-9e5f-e19b4c303978", "text": "Full scene, 3 Baby philosophers, Sokrates Baby, Plato Baby, Aristotle Baby, in some kind of cinematic movie "} +{"id": "0000426", "video_name": "079342fb-6feb-5694-9791-3e06f9930029", "text": "dark wilkey way galxis pumkins at halloween Message: Elora (Font: MODERN) "} +{"id": "0000427", "video_name": "07981e3a-db91-5840-a905-e83728e9c791", "text": "A little girl is reading by the window "} +{"id": "0000428", "video_name": "079b0b07-3920-5fb1-a77e-39284565dc5c", "text": "two men wake up in bed, startled by a loud noise "} +{"id": "0000429", "video_name": "079c7485-b00d-566f-91f6-5e8c08c27b0a", "text": "girl and boy mouth speaks happy "} +{"id": "0000430", "video_name": "079c8e35-3891-5659-963c-29f281c81634", "text": "Drone approaching an abandoned building from the inside "} +{"id": "0000431", "video_name": "07a27e81-8f03-5b76-b3a3-2ea32af1419d", "text": "a woman swimming in space, sunset "} +{"id": "0000432", "video_name": "07ab4c21-d53e-53df-ba04-7b61bfb93bc8", "text": "Shurpanakha then approached his younger brother, Lakshmana, who said that he is only second to Ram and therefore not worthy of her. "} +{"id": "0000433", "video_name": "07b15ea1-4cee-576f-b9cf-fda1b3b1825f", "text": "realistic humanoid female robot, wearing shoort black skirt and shear revealing low cut blouse, very beautiful asian looking , sexy body, long blonde hair, moving right arm to right and with a very seductive and beautiful face "} +{"id": "0000434", "video_name": "07bc5f3a-d521-5d73-8c45-40e842bca9f5", "text": "animals running around in the kingdom ground "} +{"id": "0000435", "video_name": "07c1d79a-7a96-5838-9d20-674ff9340bf1", "text": "a group of business experts helping a business grow its sales "} +{"id": "0000436", "video_name": "07d0dcde-2476-557a-a7a3-64f27d42975e", "text": "people walking in a bolivian colonial city Message: La Paz (Font: SANS SERIF) "} +{"id": "0000437", "video_name": "07d2b4d5-7478-59fb-8d12-a8d479c8a47c", "text": "Create a blurry dark background where nothing can be seen. the screen then becomes sharp and focussed with data points moving across the screen like a shooting star. The data points are neon in style. "} +{"id": "0000438", "video_name": "07d39c2b-0575-5fd6-9554-7516d601d176", "text": "black soccer player Message: MAS CLARENCE SEADORF (Font: MODERN) "} +{"id": "0000439", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "gray cat with glasses playing on the computer "} +{"id": "0000440", "video_name": "07d77af4-21f0-55b9-a5ca-e0ac7ec343bb", "text": "Titanic shipwreck, iceberg collapsing, ship cracks, birdseye "} +{"id": "0000441", "video_name": "07e3ad60-b4c1-5121-8c37-db8cba90b88a", "text": "A beautiful Chinese woman shows off her tall and confident figure in a flowing transparent white dress.\nThe landscape in the background is serene and vast Message: 1 Attachment "} +{"id": "0000442", "video_name": "07e5dece-2f93-5d06-ad3a-4b288a42f23f", "text": "A robot MechWarrior like Gundam wing or transformers, but in the style of formula 1 Mercedes racing car, F1 silver arrows "} +{"id": "0000443", "video_name": "07e6fc24-9704-516d-a318-0f745260bea8", "text": "apple turning to an orange realistic "} +{"id": "0000444", "video_name": "07e86f2c-93ed-5b8a-a567-020f3c497b9e", "text": "got the food covered in the kitchen "} +{"id": "0000445", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "the cat orange blue standing at bamboo with eating fish "} +{"id": "0000446", "video_name": "07ee2ae0-86b3-5c05-9525-f1a90c53cc7b", "text": "Create a cartoon video of a dog running and playing "} +{"id": "0000447", "video_name": "07f1c360-668c-59b4-abd6-5122b350d0ab", "text": "2 circles with humanoid characteristics like a face and arms discussing about the weather, while its getting hotter and hotter "} +{"id": "0000448", "video_name": "07f36c02-932d-51d8-9f63-0af469b10373", "text": "Sad person walking up a mountain at night "} +{"id": "0000449", "video_name": "07f8bd4d-4166-5333-a8d1-bbb1e4a64ee9", "text": "a bedroom scene illuminated by soft, warm light. Two figures lie close together under a cozy blanket, one with their arms gently wrapped around the other. The cracked window lets in a faint breeze, fluttering the curtains slightly. The atmosphere exudes tranquility and comfort, with a sense of peaceful closeness between the two individuals. "} +{"id": "0000450", "video_name": "07fbd176-5470-5545-8bcc-e38a13c509c2", "text": "a young lady teacher who teach for her students "} +{"id": "0000451", "video_name": "08002da4-9b4b-591a-94fc-13f397f59208", "text": "little girl in a big scary library alone when the book around her come to life "} +{"id": "0000452", "video_name": "08011d59-d729-549e-94cf-3359f5ac2515", "text": "magic mushrooms raining from the sky "} +{"id": "0000453", "video_name": "08050d16-bf65-5faa-b00c-d98e761f4698", "text": "Show a small village setting with a curious and intelligent monkey sitting on a tree branch. Beside the monkey, a lazy snake is lounging on the ground, showcasing their unlikely friendship. Use expressive facial features to convey the personalities of the monkey and the snake. "} +{"id": "0000454", "video_name": "08056941-6329-5d13-a552-babf1c8b306d", "text": "a girl with silver hair, big blue eyes, looks like cat, very beautiful, lives in icy palace "} +{"id": "0000455", "video_name": "080a6c51-d19e-524b-99ed-b1a98c672811", "text": "many village people were standing with folded hands in front of the old man. "} +{"id": "0000456", "video_name": "080c79d8-b602-5848-8bb7-cead82986480", "text": "a clocks that goes back in time "} +{"id": "0000457", "video_name": "08101bd6-dbf4-565b-9ba5-bfc0fb3398c8", "text": "Develop an animated video showcasing the microscopic world of red blood cells, with a focus on schistocytes as evidence of Microangiopathic Hemolytic Anemia (MAHA). Take viewers on a journey through the bloodstream, depicting the causes and consequences of MAHA, emphasizing the role of schistocytes in the diagnostic process. Conclude with insights into the underlying conditions, potential complications, and treatment approaches to address this unique form of hemolytic anemia. "} +{"id": "0000458", "video_name": "0813ebd4-1acd-5b6d-b306-6822c0433d7e", "text": "a graveyard, darkish surrounding, autumn season, leaves falling of the trees "} +{"id": "0000459", "video_name": "081739c6-75b8-588c-a767-23d06eef06d7", "text": "a man riding amotor bike on fire "} +{"id": "0000460", "video_name": "0819d28b-d45f-59c7-88b3-f304025296fe", "text": "The forest people join together to search for the diamond, but get lost in the dark parts of the forest. "} +{"id": "0000461", "video_name": "081c3109-c291-5771-b3a4-8be442219f01", "text": "photorealistic Ghreta Thunberg eating a hamburger at mc donlads "} +{"id": "0000462", "video_name": "081f25e9-900f-5027-80b9-1f70c924809b", "text": "vintage footage of a werewolf, peter witkin style, hammer horror movie, the howling "} +{"id": "0000463", "video_name": "082a9cc8-da81-5064-b5cc-7d1f3aabe0c5", "text": "The Funeral of US President Bide, showcasing photos of Biden "} +{"id": "0000464", "video_name": "082bde14-8f27-5890-ba2f-676ee0db2222", "text": "Adolescent male, curly hair, glasses, teal hoodie, final fantasy style, sitting on log next to campfire petting a cute chocobo. Overlooking a meandering river with small boats on it "} +{"id": "0000465", "video_name": "082e2042-4dd3-53ca-8ab9-621932f5b0bf", "text": "Create a video of the Cinegy Air software working "} +{"id": "0000466", "video_name": "082e3221-75b8-5757-9d8a-6d32a8ab37d3", "text": "There are various small animals in the wonderland "} +{"id": "0000467", "video_name": "083026d5-4f7c-55e1-8aa0-773a3d631d28", "text": "a girl reading book in a wood house "} +{"id": "0000468", "video_name": "0832c245-cd08-56f1-875f-7dcab0a7afbf", "text": "soy beans falling from a sac, on a neutral backgroud "} +{"id": "0000469", "video_name": "08331cab-384b-579a-ae5a-9ad42c84d844", "text": "A heartwarming image of the villagers taking care of their environment, with generations working together. "} +{"id": "0000470", "video_name": "083782f4-9af6-53f2-a9c7-a9f3af878684", "text": "spaceship on Taj Mahal roaming around "} +{"id": "0000471", "video_name": "083c0bac-04f5-53a6-aa16-4ae69403381a", "text": "hot girl character anime singing and walking "} +{"id": "0000472", "video_name": "0841f9aa-e4e6-5f0c-9688-e482e510e790", "text": "Create a profile view of a frog on a completely green background; let there be a single shade of green throughout the background, with the green used in the background not being used for the frog. The frog should blink and talk. cartoon "} +{"id": "0000473", "video_name": "0845909f-9ca5-5b15-85d6-7cc09f72bda8", "text": ": the couple in the center walk toward the camera "} +{"id": "0000474", "video_name": "0847d14f-b39d-54d8-861b-fce09ffb4906", "text": "dogs howling to the sky, marvel studio "} +{"id": "0000475", "video_name": "084f42ab-16c3-5b8e-a671-3bc06e76cea9", "text": "Creepy 1970s arthouse horror footage of shaman ritual "} +{"id": "0000476", "video_name": "0850becf-7ba8-5eb9-97c0-effe6b68964d", "text": "an asteroid falling through the clouds and exploding, photorealistic "} +{"id": "0000477", "video_name": "085422c9-b5a6-5876-a505-28494ccd7626", "text": "Amazin anime girl on the beach "} +{"id": "0000478", "video_name": "0857fbb5-29d2-5469-8a9b-939e410b6cfb", "text": "emperor with a battle scar on his forehead and on his right side the artist painter who will paint his painting, 16:9 Message: 1 Attachment "} +{"id": "0000479", "video_name": "085fe729-342b-505d-9f3d-8a176c9bd35d", "text": "an sweeting and anxious man looks straight into the camera and blinks with the eyes, sweat runs from the forehead "} +{"id": "0000480", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "a women in leather jacket running, side view, medium shot, boom down, slow motion "} +{"id": "0000481", "video_name": "086ce4e4-7a43-5b3c-b2c5-5a98c01ff716", "text": "A flurry of HANDS, each with a TALKING MOUTH on the palm, emerge from the portal. The hands fly across the sky, creating a mesmerizing display of colors and patterns. "} +{"id": "0000482", "video_name": "086db630-6e0b-5342-8a74-73befe7ec907", "text": "A Girl Was hot and beautiful dress full photo "} +{"id": "0000483", "video_name": "086e1cb7-a1e4-5966-a7ed-0f616fac062a", "text": "tank rolls through the forest, vintage, cinematic "} +{"id": "0000484", "video_name": "08735881-a9f4-5db8-9b89-b378af57756e", "text": "a red ship is sailing on the sea "} +{"id": "0000485", "video_name": "0874c6fc-f929-53b6-8ac5-01e89aed0fe7", "text": "the exoplanet 51 Pegasi b orbits its star "} +{"id": "0000486", "video_name": "0875152e-16ba-5939-b26f-7ed74379dde9", "text": "beautiful, young woman formally dressed in a ball gown "} +{"id": "0000487", "video_name": "0877d044-e75b-5ed8-88fc-9debb6615a15", "text": "a man walking in a street alone . "} +{"id": "0000488", "video_name": "087def22-1f1c-5a33-a70c-98b45f7fe27e", "text": "One beautiful night, there is a bright moon hanging in the trees "} +{"id": "0000489", "video_name": "0880dcbe-9dfe-542a-8408-5132b5561df2", "text": "dumpling packages are going around town. "} +{"id": "0000490", "video_name": "0881b073-8004-56da-834b-6c7dd31ee461", "text": "A woman in a red and gold dress, with a beautiful face, delicate eyes, adorned with a headpiece and a crown, stands in Constantinople "} +{"id": "0000491", "video_name": "0882edb2-9f77-531b-882c-60fcbfae5c61", "text": "birds flying by a water fountain "} +{"id": "0000492", "video_name": "089c6573-c808-5652-99c3-5d011aac941d", "text": "create an animation of a character representing The Sorrows of Young Werther "} +{"id": "0000493", "video_name": "089f4223-ccd4-5f80-b4cd-581adac485c5", "text": "a beatiful girl and boy divorce face to face, so sad, kiss goodbye, motion 10 "} +{"id": "0000494", "video_name": "08a4e6ec-5fb3-529e-a1b6-cf0f38a9e66c", "text": "Explore the idea of \u200b\u200bcosmic entities or guardians who oversee the process of intergalactic reincarnation. Use mystical images to bring this idea to life. "} +{"id": "0000495", "video_name": "08a7e98a-1cda-546f-b9d5-a84a77a1bbec", "text": "a sad person waking up and sunrise. "} +{"id": "0000496", "video_name": "08af6ab8-4fd7-5e52-a0bd-9bb7310a96dc", "text": "change the scenery to a captivating Illustration set in a mystical daydream "} +{"id": "0000497", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "Create aexplainer video about the benefits of using cloud computing for businesses. "} +{"id": "0000498", "video_name": "08b03807-e1d6-586f-a9ec-2c99ec4e945b", "text": "Subtle hints of angel wings descending from the sky "} +{"id": "0000499", "video_name": "08b29689-bfc3-5463-a390-2e33d13e58f2", "text": "Create an emotional image of people on their knees, crying out to God for mercy and protection, with their hands raised to the sky "} +{"id": "0000500", "video_name": "08c3853e-45ee-55f8-8c27-4722ec63b569", "text": "there are only two baskets of allowable opinion. "} +{"id": "0000501", "video_name": "08c937f0-6fb0-5d09-9e62-36d8e997a614", "text": "blue and yellow plane and growing sunflower "} +{"id": "0000502", "video_name": "08ca5086-4407-53d5-a50e-ca0c8df1a5eb", "text": "CW Flash Mixed With Batman Movie 8k "} +{"id": "0000503", "video_name": "08cc13fa-de28-555d-b664-443bc969a473", "text": "hair oil ad in jungle background with male model walking and showing hair in style. "} +{"id": "0000504", "video_name": "08cf31c2-6256-546e-8401-25834922c92e", "text": "A cartoon character from Disney, Jerry Mouse, has brown fur and is holding his chest with his hand while displaying a pained expression. "} +{"id": "0000505", "video_name": "08d2d2e0-f694-58f7-b798-058f430c9c1f", "text": "driving a Porsche 911 through the future Moscow "} +{"id": "0000506", "video_name": "08d4e3f4-46ce-5f7e-b550-f2e174801622", "text": "handsome norwegian guy in norway holding an orange cat in christmas "} +{"id": "0000507", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "From the back view of the little boy and the little girl, the two slowly walk forward hand in hand, the shadow is a meadow, and the mountain is in the distance "} +{"id": "0000508", "video_name": "0906526c-73da-5cf3-b79e-4f90ee29ed36", "text": "arriving the Xiamen Baolong Pullman Hotel. "} +{"id": "0000509", "video_name": "09079148-7928-5bb7-8510-6f617eeff09e", "text": "night scene pan moving back and forth "} +{"id": "0000510", "video_name": "09111a1b-d004-528e-b1a8-fac216c68a1e", "text": "So, what do you think, fellow space travelers "} +{"id": "0000511", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "attractive waitress pouring an endless cup of coffee in a 50s diner "} +{"id": "0000512", "video_name": "091ce458-19a8-50de-b1be-aaa781fc6e83", "text": "bob schneider with a rolex on his wrist "} +{"id": "0000513", "video_name": "091e0432-3ce9-5b71-a79a-671de40e9abc", "text": "Dragon flying high up on the sky, white clouds around, blue sky, cinematic scene, ultra realistic "} +{"id": "0000514", "video_name": "09204b01-e490-511d-adcf-667b42279c40", "text": "An adorable bouncing cup, set against an office desk backdrop "} +{"id": "0000515", "video_name": "09266175-0f27-5a9d-b401-a30eb0aef1e6", "text": "in a animated style a boy fishing in river with his small boat in his village "} +{"id": "0000516", "video_name": "092e5863-4ee3-5646-8c5d-03aa0507b2e1", "text": "a chinese girl standing behind the window, looking toward to the camara "} +{"id": "0000517", "video_name": "092f2403-2bc8-5674-a7df-8775d1dd0a0f", "text": "realistic rabbit riding on sports motorbike avoiding snails on road "} +{"id": "0000518", "video_name": "092fdeaa-b61e-5c24-bce5-d7a5fa630b0a", "text": "A boy sitting on a railway station banch. He is looking tensed, closing up in the face of the boy. "} +{"id": "0000519", "video_name": "093c1710-3423-5238-90b1-7f5ae0262c59", "text": ": A visual representation of a Lyraxian diplomat engaging in conversation with human delegates, portraying their intent on peaceful coexistence and mutual understanding. "} +{"id": "0000520", "video_name": "0941fb82-80a5-5756-8d7d-8d3dd02ab1c0", "text": "tension,smiling , whispring , Message: 1 Attachment "} +{"id": "0000521", "video_name": "09471859-8445-5a46-aaa8-0acc072ff52e", "text": "Action scene, man fighting white ghostly humanoids, action blocking and framing, , wearing jumpsuit, opening contraption, complex, cables, lattice, webbed, greebled, futuristic motif, gloomy, over the shoulder shot, cinematic, dvd screengrab, 1984 movie, labirynth, CONTROL videogame "} +{"id": "0000522", "video_name": "094b124e-ab0a-5233-a469-44a467532381", "text": "draw a hall with beautiful chandeliers from the Versailles era. then a girl appears in the room of Louis 16, in an old ball gown. and then she turns into a modern girl, hal into a modern apartment. and the chandelier remains the same as it was in the hall of Versailles "} +{"id": "0000523", "video_name": "094c2636-5113-56c5-8ab3-b519bd7f07ea", "text": "create a beautiful bottle, with a hawk logo, in the background a snowy mountain "} +{"id": "0000524", "video_name": "094ce446-5bfe-583a-897b-46c791bf9541", "text": "a car driver following a woman driver at night on a deserted street "} +{"id": "0000525", "video_name": "0955d5f8-e048-59aa-91c9-8c0f8fb3dad5", "text": "walking toward the mass riot close up motion 4K 16:9 "} +{"id": "0000526", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "humsn lung seen in a whole big picture "} +{"id": "0000527", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "Battle of Bang Rachan Camp motion2 gs18 fps24 "} +{"id": "0000528", "video_name": "0958f9e1-cbe8-5bbb-9308-6da35dc258e4", "text": "Establish the peaceful village on the edge of the enchanted forest. "} +{"id": "0000529", "video_name": "095be3ed-b8b7-5120-8156-1d5c4d33a83c", "text": "the rocs mube up and down "} +{"id": "0000530", "video_name": "095d1cdb-a8eb-5d6b-836a-f5bc5efd2021", "text": "a video of a sloth operating a DJ turntable in a busy nightclub with lots of people dancing around "} +{"id": "0000531", "video_name": "095e1086-a303-5482-b25c-3e35c88ca19c", "text": "a ultra detailed and realistic gta a super can drifting on highway. "} +{"id": "0000532", "video_name": "0964c56d-2374-52fe-9920-61fc5ed9899f", "text": "A ship sailing in the pink sea heading towards a giant wave "} +{"id": "0000533", "video_name": "096af8eb-7c37-5ff0-8514-8194d325cf67", "text": "The Night Scenery of the Two Rivers in Chongqing in the 1990s "} +{"id": "0000534", "video_name": "096bf794-a717-5b86-92c9-fa216b81be19", "text": "make flash light moving and the search parting walking "} +{"id": "0000535", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "Bjork style, nick knight, ric owens fashion, jodorowski "} +{"id": "0000536", "video_name": "097c026e-8fb4-5d97-8117-d9c014378e27", "text": "Climactic Rooftop Performance: Describe the climactic rooftop performance where the artist, 21 Savage, and Drake join forces against a backdrop of fireworks, neon lights, and the futuristic skyline. "} +{"id": "0000537", "video_name": "098105dd-f948-59af-bfba-73cc320e3114", "text": "Biblical story, Joseph receiving a colorful tunic from his father, arid land, biblical times, period clothes, ultra realistic, 8k "} +{"id": "0000538", "video_name": "0985c9e4-9f58-57de-9b9b-97e9d59f7a1b", "text": "adorable monster jumping up and down "} +{"id": "0000539", "video_name": "0996854f-da0e-52ff-b8f5-48062ae17628", "text": "snowing in the background, anime style 8 fps "} +{"id": "0000540", "video_name": "09997db0-76f7-5885-84db-eb7094376b1a", "text": "and asteroid impacts are considered contributors "} +{"id": "0000541", "video_name": "09a010a3-317a-59c4-8292-01a5b053e0f5", "text": "capybara doing a backflip on a motorcycle "} +{"id": "0000542", "video_name": "09a0beee-1098-5e6a-b877-7451cec626fa", "text": "A handsome young male robot carries an earthly woman in his arms. The woman holds a bouquet of flowers in her hands. Smiling. 3d animation "} +{"id": "0000543", "video_name": "09a40074-81d1-559b-bec0-82903c2fbf72", "text": "a 10 second video of a paradisiacal beach for an afro house music video set "} +{"id": "0000544", "video_name": "09a7a648-7724-57da-aaca-223ef998145c", "text": "a boy watching his love being in love with another person, and leaving way for it, yet feeling sad seeing it, beautiful scenery, rainy climate, sad, studio ghibli "} +{"id": "0000545", "video_name": "09a7ce69-777b-5970-bd39-69400c46ce5e", "text": "In an unexpected twist, Walter White, sporting a stylish Balenciaga apron, teams up with SpongeBob SquarePants in a bustling kitchen. Walter meticulously measures blue crystals while SpongeBob, donning a chef\u2019s hat, stirs Krabby Patty sauce with contagious enthusiasm. A blend of chemistry and culinary chaos unfolds, creating an oddly effective duo and a masterpiece meal. "} +{"id": "0000546", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "make the water flow as the wind blows through the trees "} +{"id": "0000547", "video_name": "09ab115f-1db5-5a14-90cd-9852bf177ea7", "text": "A female caregiver, animated, brown eyes, walking while explaining, HD, good lighting "} +{"id": "0000548", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "joe rogan dancing with a baby "} +{"id": "0000549", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "Man wakes up in hospital bed "} +{"id": "0000550", "video_name": "09ae4d05-2e61-58e5-b9d7-9a9efc034c6b", "text": "kim jong un fighting donald trump at sunset, in the style of cyberpunk nfts "} +{"id": "0000551", "video_name": "09b29a61-50c9-5764-a0b8-451448756d0e", "text": "shadow assasin fighting a light orb "} +{"id": "0000552", "video_name": "09b40894-f68a-5cb3-8996-d75020923c71", "text": "An orthodox Jewish woman with a shebis on her head happily welcomes her to her magnificent home "} +{"id": "0000553", "video_name": "09b6f0b5-e2ed-53e5-9d8d-3d1940976cb0", "text": "25 year old beautiful girl standing before the grand entrance of the castle, with her 40 year old father Maurice at her side, hesitantly offering herself to the Beast. "} +{"id": "0000554", "video_name": "09b78e19-9785-5191-bb24-f79d0bc30ce3", "text": "A vibrant, juicy apple surrounded by elements representing energy and joy, like sunbeams and vivid colors. "} +{"id": "0000555", "video_name": "09b8a1e6-8ccf-5f90-b3b7-4b745a9c1619", "text": "a green snake biting the screen leaving everything dark "} +{"id": "0000556", "video_name": "09bd0cfa-41b8-5998-a3b7-e1f238226e8c", "text": "anime style, A scene depicting the Sorting Hat ceremony, with Harry nervously awaiting his house assignment while seated at the Gryffindor table. "} +{"id": "0000557", "video_name": "09be6b68-2cef-5b3a-999b-c911fa957baa", "text": "a steaming hot bowl of delicious soup at a high end restaurant, depth of field, nikon DSLR camera, 3 point lighting, cinematic camera angle "} +{"id": "0000558", "video_name": "09c6788c-9da2-5f54-beba-1001c21af97b", "text": "black background with small cherry trees Message: 1 Attachment "} +{"id": "0000559", "video_name": "09cc5cd9-7a38-5467-a312-04585dca4cd4", "text": "eye moves AWAY FROM the image and sees "} +{"id": "0000560", "video_name": "09d00f94-c533-54d4-876c-9219e0ee9bba", "text": "the female charaacther and the male are siting on a Ferris wheel. He has his arms around her. full moon at the background reflecting on the beach, 16:9, hd "} +{"id": "0000561", "video_name": "09d2704f-07d2-5a67-9432-d1f94944b5c4", "text": "3d images Bob chuckled and turned to his other friends, Dizzy and Roley. "} +{"id": "0000562", "video_name": "09d30fae-f8a0-5df7-89de-f892103481f3", "text": "In the future, artificial intelligences have taken over human jobs. The streets in cities are empty, and people lead lives based on automation. The night sky is illuminated by the light shows of artificial intelligences. Motion 5 "} +{"id": "0000563", "video_name": "09d78664-92f7-5be6-a0aa-80fc1eeae526", "text": "rainy and dark day , girl laying on bed scrolling through instagram "} +{"id": "0000564", "video_name": "09dc12b7-51e5-5460-9502-22cfbedfd2ca", "text": "the valley of caracas in 2100 as a developed city "} +{"id": "0000565", "video_name": "09dde9c3-74ed-5d6a-99e5-d283af26d25e", "text": "A komodo dragon eating a watermelon. "} +{"id": "0000566", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "walking in the snow storm Message: snow (Font: MODERN) "} +{"id": "0000567", "video_name": "09ea2493-df5e-596d-9906-5ab542dc53bb", "text": "Jesus in the desert, having a deep conversation with a realistic figure of Satan, set in a detailed and vivid desert landscape. "} +{"id": "0000568", "video_name": "09ebcf15-2697-5795-8445-194e4eeab226", "text": "submarina fly near moon or other planet "} +{"id": "0000569", "video_name": "09ed8e6d-c280-5b8b-80cb-74eb81ff2502", "text": "realistic honey bees eating honey microscopically "} +{"id": "0000570", "video_name": "09ee7af9-6ec9-5667-a146-c8c39b2eba48", "text": "The longest day in the northern hemisphere "} +{"id": "0000571", "video_name": "09fd5722-14c0-5bea-a3bd-639dda2a5cbf", "text": "three dors clothing Message: doors (Font: MODERN) "} +{"id": "0000572", "video_name": "0a011506-2799-5b1e-ba2a-d9d5fdc4e735", "text": "stoic heavenly angels appearing in a dream of serenity "} +{"id": "0000573", "video_name": "0a0da7f6-32d1-56d5-ba90-a0e56d7124f3", "text": "in text of old painting Message: bua mareo na please (Font: MODERN) "} +{"id": "0000574", "video_name": "0a0f5a43-f8ba-5afa-8210-5d32e7cca1d0", "text": "demons and a vampire in the city "} +{"id": "0000575", "video_name": "0a1a0fa2-0cbd-56d9-ab7a-7ffbf21d9e2c", "text": "full body view of a young lady with black straight hair , looking at the camera, "} +{"id": "0000576", "video_name": "0a1f27af-4737-5994-be48-9113c22ef970", "text": "Black cat standing looking into the lense, background pink smoke, realistic, cinematic, zoom "} +{"id": "0000577", "video_name": "0a27d75b-b6bb-5849-8acd-4e1a7efe6f95", "text": "machines building a Vending Machine in a futuristic Garge, with Splatter Art Style, Urbance Art style, Overwatch art style, 16K HD , UltraRealistic "} +{"id": "0000578", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "A group of friends were sitting in a roadside teahouse and engaged in pleasant conversation. "} +{"id": "0000579", "video_name": "0a3dbd56-83c4-5d1a-895b-28b4faf83972", "text": "A hybrid creature with the body of a dinosaur and the wings of a pterosaur, soaring elegantly through the clouds "} +{"id": "0000580", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "A beautiful girl in a jacket rides a motorcycle on a busy urban street in cyber style "} +{"id": "0000581", "video_name": "0a445c64-fe0a-5de1-9e87-fbd7398529a5", "text": "Monkey King of the Seven Dragon Balls (manga and anime) "} +{"id": "0000582", "video_name": "0a46e126-c04f-588a-89e6-5dfd0723c42b", "text": "white metallic ufo landing on the Whitehouse lawn, high quality, masterpiece "} +{"id": "0000583", "video_name": "0a4885fd-e7bf-5109-9412-4dfd1fddeb3b", "text": "make me 60 secound video showing heaven , heaven in a place in middle of sky , all around cherry blossm tree with apples on them . ground full of pink roses , clouds and looks like a dream , show one single red apple fall down from one of trees "} +{"id": "0000584", "video_name": "0a4b5884-9e75-57f5-b13d-2eafdd075f11", "text": "View fron inside brain Illuminates in yellow the different areas of the frontal lobe, amygdala and hippocampus. "} +{"id": "0000585", "video_name": "0a4d09aa-1ebc-5daf-be0c-fb72abf64a2c", "text": "Sculpture, renowned artist, glass, rotation, sparkle, water, sunlight, shattering, Saipan beach. "} +{"id": "0000586", "video_name": "0a4d0ce2-8b90-5409-98da-a98cc46c363e", "text": "mother nature wearing a veil in front of a cross headstone in a graveyard full of vines "} +{"id": "0000587", "video_name": "0a4f2654-a67e-54e7-a43d-43dfcb4c3819", "text": "old 1942 sepia film found footage of a star wars stormtrooper in world war ii "} +{"id": "0000588", "video_name": "0a5309ff-ad4f-5318-a9c6-3135b49868e3", "text": "A beautiful and cute east asian girl is speaking "} +{"id": "0000589", "video_name": "0a53ce1f-b53a-524e-aebf-bd42fc8f88c8", "text": "film videography. Bengal tiger speaking slowly. deep zoom, fast forward, highly detailed, ultra realistic, octane, hyper realistic, 4k resolution. Ar 9:16 "} +{"id": "0000590", "video_name": "0a5737b8-941a-5f8a-97d7-8c428012d2e4", "text": "A baby is crawling towards me. "} +{"id": "0000591", "video_name": "0a5d714a-3feb-54e0-88fa-60671605b61c", "text": "a man jumping to hit a Soccer ball, dark background, low light, high resolution, hyper realistic "} +{"id": "0000592", "video_name": "0a71ac69-2eb2-5d3b-80ac-c4d9b3dd0030", "text": "a diwali background with podium in the middle and home textile and furnishing like sofa, curtain, pillow, mattress etc in the middle "} +{"id": "0000593", "video_name": "0a71fce9-74f2-51b6-9092-8b7ebf5fad94", "text": "cinematic vidoe footage of batman in anime vers of him self in other universe "} +{"id": "0000594", "video_name": "0a729ba8-2036-5bc1-9bdd-94eac4cf9b68", "text": "A Skelleton swimming in the Ocean "} +{"id": "0000595", "video_name": "0a8225fe-3963-56aa-a3ff-f67157746b93", "text": "anime asian happy boy went back home "} +{"id": "0000596", "video_name": "0a863432-328c-583d-b6f7-097f0e1cb2af", "text": "A girl walks down the corridor with a bear in her hand in an abandoned hospital "} +{"id": "0000597", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "surreal background, psychedelic effects, pink and yellow, sunshine, sun rays "} +{"id": "0000598", "video_name": "0a8a63dc-bf08-59a7-9fed-4cd23a8c8872", "text": "he young girl runs through the streets of the city, and as night falls, the neon lights on both sides of the streets gradually light up. This symbolizes the pursuit of dreams and inner passion. Elements: City streetscape, running, neon lights, day to night time lapse. "} +{"id": "0000599", "video_name": "0a94ead2-b08e-5345-9924-26b41a0a67df", "text": "heavy from team fortress 2 eats nuggets "} +{"id": "0000600", "video_name": "0a94f77f-f958-5b00-a665-33f43a9cacbd", "text": "explosion of light surrounds a cross "} +{"id": "0000601", "video_name": "0aa3874a-211b-503f-a33e-4e4403da31fe", "text": "an old man sitting on the chair facing the television to watch P. Ramlee movie "} +{"id": "0000602", "video_name": "0aaab644-60fe-5178-bad7-98aa3515763a", "text": "young girl cartoon style. looks like Rapunzel. 3\u0434. 25 years old. brown straight hair. beautiful. eyes closed. she is sleeping. her head is on the pillow. the girl is wearing pajamas. the room is dark. "} +{"id": "0000603", "video_name": "0aabcd83-8f06-5308-9e34-c0cb30f1abcf", "text": "create a intro tittle video for comedy channel name: KC Production "} +{"id": "0000604", "video_name": "0aae33f0-b59b-5886-855b-272ec836de54", "text": "Creative Intro for a fitness website named Fit Health and Vitals "} +{"id": "0000605", "video_name": "0abc0175-11ca-5b39-8785-520ee32fff46", "text": "the person who works hard at the sewing machine "} +{"id": "0000606", "video_name": "0ac4c7be-cd9e-5e99-a32c-a3d6346a7cd1", "text": "When he opened up the patient, "} +{"id": "0000607", "video_name": "0ac532d8-c4c3-5222-aae7-44442b32ea9d", "text": "Powergirl character, red bikini, black sneakers, white stockings with garter belt, white background, character sheet, futuristic style "} +{"id": "0000608", "video_name": "0ac569f6-cd96-5e6e-bff1-cd45d1fc34c2", "text": "fireworks in the background, night, beautiful woman back facing viewer, half body wearing street wear, celebration "} +{"id": "0000609", "video_name": "0acb02da-4dd1-5170-b5ff-b1c1e59cdce3", "text": "Woman in the caffe center sitting and talking about divorce and heartbroken "} +{"id": "0000610", "video_name": "0ad75f56-dad1-581f-aa4f-2f9149d93dbe", "text": "video of 20 seconds, cat cleaning its teeth in front of mirror, cartoon style "} +{"id": "0000611", "video_name": "0ad9f20a-9554-5f92-9b7e-f6c6de479d86", "text": "birthday, candles, love, Watercolor, trending on artstation, sharp focus, studio photo, intricate details, highly detailed, by greg rutkowski "} +{"id": "0000612", "video_name": "0adb3833-8cd5-51ed-9e06-a02e000e4b7b", "text": "Drummer Art Blakey playing in small jazz club called The Lighthouse in the 1960s. "} +{"id": "0000613", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "a islamic background with Quran opening pages hd quality cinematic zoom camera 16:9 realistic "} +{"id": "0000614", "video_name": "0adeffdf-bef6-54dd-b0bb-03376f4d9e38", "text": "Teenage girl is squatting on the grass. Dress is long and modest, long sleeves. Face tanned and sweaty. Short hair. Country road. Hot summer. Sky is low and dark before the storm "} +{"id": "0000615", "video_name": "0ae3251e-7d36-5b1d-994b-0466bd8ecdaf", "text": "Elon musk praying on his knees for forgiveness in at the feet of powerful female robot warriors "} +{"id": "0000616", "video_name": "0af5a1a1-200f-57c9-a48b-66f1e9fc0091", "text": "blend chicken with crocodile jumping around, 1970 horror movie "} +{"id": "0000617", "video_name": "0af83140-ea30-506b-b7c1-796c9652d2e8", "text": "a man in a dark habit walks in the woods at night "} +{"id": "0000618", "video_name": "0af9870b-317f-5fb6-a931-a9267d24c1e9", "text": "The leater A made whit human arms "} +{"id": "0000619", "video_name": "0b0d4d7a-ef5f-50b1-8f7f-68d144d7f660", "text": "a video with a flying dog with 30 seconds length "} +{"id": "0000620", "video_name": "0b0df7f4-b20a-59a3-bf62-f3bd0eebc294", "text": "A man with blue eyes and red hair sitting on a quiet train "} +{"id": "0000621", "video_name": "0b13c4ed-4930-5234-9cf9-6b97716499f6", "text": "Wide shot of John walking out of the airport terminal, surrounded by the hustle and bustle of the foreign city. "} +{"id": "0000622", "video_name": "0b152024-e5c6-5d23-b892-eb60553dcfab", "text": "a coffee bean to a pine tree "} +{"id": "0000623", "video_name": "0b16484d-dac9-56a7-9006-e53096ee0617", "text": "Light sunlight peeps through the palace bedroom window "} +{"id": "0000624", "video_name": "0b16dcea-1e69-5765-af04-a867083de8a8", "text": "the answer to life, the universe, and everything "} +{"id": "0000625", "video_name": "0b1a29b3-bd6f-56a5-974a-99a19c5b51c9", "text": "black and white film noir style Veronica Lake with beautiful hair fanned out in bed "} +{"id": "0000626", "video_name": "0b1b1616-6914-5bbe-bb16-26976f4cae47", "text": "a boy find his friend in village "} +{"id": "0000627", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI and tommy fury standing in the middle of the ring in front of a crowd of 20000 people in a bboxing arena in an enchanting atmosphere hugging each other "} +{"id": "0000628", "video_name": "0b326044-09d9-5ae0-8fac-baf1e3cd380d", "text": "andreas Wijk is singing on stage "} +{"id": "0000629", "video_name": "0b3789cf-9a9f-5d6c-8060-d2fc8a361148", "text": "robot chicken laughing loud and jumping , 1970 horror movie "} +{"id": "0000630", "video_name": "0b380cb4-4eab-5d50-9164-fe08e1acc9fc", "text": "a little boy that already ten years old lived on the castle were looking at the camera "} +{"id": "0000631", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "create a new style 3d cartoon bird in red as a reporter with with human hands and with camera or mic "} +{"id": "0000632", "video_name": "0b3c769e-7a1b-586b-91b6-0275988ac2c1", "text": "a man shows his friend a computer with stock chart "} +{"id": "0000633", "video_name": "0b444de6-cddf-597b-a209-b5680757bd74", "text": "The room was filled with ancient, rotting furniture covered in tattered sheets. A sense of impending doom hung heavy in the air. "} +{"id": "0000634", "video_name": "0b4609ce-3ac3-5aca-a912-b3504fb0ddee", "text": "animation showing an indian politician winning the election "} +{"id": "0000635", "video_name": "0b468c8c-f8ca-5023-b92b-191f23ca1098", "text": "kitty cat, jumping on a bed "} +{"id": "0000636", "video_name": "0b4acf47-0da9-5e72-8e24-185fba2da2d4", "text": "neanderthal daily activities, walking, collecting water "} +{"id": "0000637", "video_name": "0b4b2116-863c-5850-b361-f5c96dc6f776", "text": "Once upon a time, in a kingdom far away, there lived a beautiful princess named Aurora "} +{"id": "0000638", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "Make me an image of a terrifying nun walking facing the camera "} +{"id": "0000639", "video_name": "0b4c6ae0-518c-5cf5-83ff-2d0fbe103f3f", "text": "A man jumping on top of a pallet in a warehouse "} +{"id": "0000640", "video_name": "0b50933c-3a52-5d0a-8219-c594a1022f84", "text": "slow motion of Luke Skywalker in black jedi robes reaching out his hand to destroy a droid, slow movement, dust and sparks "} +{"id": "0000641", "video_name": "0b5479e4-7b0e-50f4-adaa-9a9db293a715", "text": "A dancing girl in a flight attendant uniform "} +{"id": "0000642", "video_name": "0b55188b-8ffd-5ef0-9ce3-dd396ae11c88", "text": "strange footage of a black and wigth camera "} +{"id": "0000643", "video_name": "0b5d827d-f0c6-5340-a489-550388a0ae64", "text": "Fry lock from Adult swim staring at Bob Marley. Drawn like ancient Egypt hieroglyphics. "} +{"id": "0000644", "video_name": "0b5fc729-59cd-5da1-9763-cc67956fce53", "text": "8k video walking through a forest then emerging in to space traveling at the speed of light to end up on a random planet that has an abunduce of waterfalls "} +{"id": "0000645", "video_name": "0b613214-ff87-58d1-9613-8ce9951321f5", "text": "the number 333 written all over screen in black and white "} +{"id": "0000646", "video_name": "0b626b7a-397a-553d-bfbf-1ba5afbd32a7", "text": "a cute girl making a fat reduction meal, cut the cucumber first, then add the shrimp and stir Message: yummy (Font: MODERN) "} +{"id": "0000647", "video_name": "0b667894-ed46-57cc-8fb5-43e1fe2b174f", "text": "patrick bateman buring superman ,hyper realistic "} +{"id": "0000648", "video_name": "0b69fbdc-52a3-5753-ae11-83f715b13932", "text": "ultra modern high tech bulet train runing fast, directed by Chris Carpenter "} +{"id": "0000649", "video_name": "0b6a24be-5c23-5294-997f-b74da45fa6f8", "text": "A man talking while sitting in a restaurant "} +{"id": "0000650", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "completely base your choice of which one to visit today on the dish that most entices your taste buds, 1080P, high quality, comic "} +{"id": "0000651", "video_name": "0b6d1b1f-2570-5177-a906-c1a4a436fc61", "text": "As Tommy completes the repairs, Robo slowly powers on and comes back to life, with lights flickering and mechanical whirring sounds. "} +{"id": "0000652", "video_name": "0b729b4d-4e51-5bf9-a817-cdf763596a00", "text": "A streetfighter character that acts like Blanka "} +{"id": "0000653", "video_name": "0b75fe38-6ac0-554a-a79b-d30491597d3f", "text": "henry cavill in a superman suit flying in Speed of light in new york city in man of steel movie scene "} +{"id": "0000654", "video_name": "0b78ac2f-038d-5bce-ad74-6db4773ba7d5", "text": "People from diverse backgrounds joining an online discussion "} +{"id": "0000655", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "Bill Gates waving good bye to microsoft Headquarters "} +{"id": "0000656", "video_name": "0b868129-3976-582b-8b35-e064b9bf2c3d", "text": "Earth rotation and all around the World 4k aspect ratio 16:9 "} +{"id": "0000657", "video_name": "0b913a04-bb56-5c59-a9e1-238ceb3904ae", "text": "an imagined version of what a Tesla vehicle looks like 169 years from now, try to show off all of the features "} +{"id": "0000658", "video_name": "0b946311-b5c8-5b2a-bc5e-21984cb01522", "text": "Create enchanting images of elegant and alluring women, each framed in exquisite poses and adorned with captivating backgrounds that amplify their beauty. Explore a diverse range of settings, from picturesque landscapes to sophisticated urban scenes, to bring forth the essence of glamour and allure in the generated images. "} +{"id": "0000659", "video_name": "0b9d1e95-7dd8-5187-ac55-ff02a4b5cfc8", "text": "ghost would scare a farmer so much that he could not sleep all night. Due to the fear of ghosts, there was silence in the village in the evening and no one used to leave the house at night "} +{"id": "0000660", "video_name": "0b9df64a-4e68-5a9c-9eec-9d018f2b3f17", "text": "Minecraft Animals Dance Jump Fight Banana Space Egg Cow Cat "} +{"id": "0000661", "video_name": "0b9e656e-ffe3-5cc8-ac98-48d60ae87970", "text": "an old city from the 19 century and all houses lights up, motion2 "} +{"id": "0000662", "video_name": "0b9e8598-a61b-5052-b34b-660c4b313c20", "text": "Create a video about camping with portable power station "} +{"id": "0000663", "video_name": "0b9ebf51-a22b-5ed2-9818-d69d3bd5b921", "text": "a cute 20 year old college girl wearing black dress and facing at camera politely smiling. wearing a medium size black scrunchie in her highy pony hair style "} +{"id": "0000664", "video_name": "0ba08e36-9dd1-57d1-9489-00d32b770972", "text": "elvis presly and james dean arm wrestling contest "} +{"id": "0000665", "video_name": "0ba1334f-0cb4-5d91-a1a6-2a934002732a", "text": "pikachu transform yello to red Message: 1 Attachment "} +{"id": "0000666", "video_name": "0ba2acad-8089-5a58-9c12-ec3b02e17fcc", "text": "smoke bomb white bright light boom "} +{"id": "0000667", "video_name": "0ba3d3fc-ea64-576d-a919-24d3544f7e7a", "text": "figure walking, sinster, motion, cineamtic, movement, Zoom Shot, Eye Level Shot "} +{"id": "0000668", "video_name": "0baadbdf-3e78-5ea7-8dfa-b1a6b5f25602", "text": "in hospital 4 nursing staff are working "} +{"id": "0000669", "video_name": "0bae578a-459d-5160-a973-f1ece62dfa77", "text": "red balloon floating through a forest "} +{"id": "0000670", "video_name": "0baecd5c-0186-5aa7-9486-dcaee898f178", "text": "Describe the heated argument between Ajay and Nisha that leads to the slapping incident. "} +{"id": "0000671", "video_name": "0bafe202-7341-54c4-9e9f-8823728393e1", "text": "several kings of the bible sitting together "} +{"id": "0000672", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "there was a boy who live with her friends in jungles to need work to "} +{"id": "0000673", "video_name": "0bb71bc2-a802-5e14-98f0-67b9f7787d33", "text": "a view from the surfer who is riding a huge wave at the sunset Hawaii "} +{"id": "0000674", "video_name": "0bbfcb79-af3a-5784-aeb8-e4f5a4fa2e89", "text": "Create a guys wearing running in the desert "} +{"id": "0000675", "video_name": "0bc8a3ae-2259-5f5e-9bc9-8cfc480b4fc7", "text": "anime angel with long blonde hair opening his wing "} +{"id": "0000676", "video_name": "0bd14623-f63a-58c3-915b-c2a599bb198b", "text": "Cybermen, dancing, larger movements, camera zoomed in from far to near, 3:4, 4k "} +{"id": "0000677", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "animation of a dj performing in an enchanted forest, studio ghibili style "} +{"id": "0000678", "video_name": "0bde2b1e-f8d5-565e-a78f-3f2b5a1a2f9b", "text": "4 meter long bird with long white feathers and scary looking dark face and stands like a human. very tall and overlapping feathers completely white. "} +{"id": "0000679", "video_name": "0be10ce5-e040-5fd9-8494-df0ce94e3045", "text": "rabbit eating carrots, claymation, Wallace and gromit style "} +{"id": "0000680", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "Pictures of training for young police officers "} +{"id": "0000681", "video_name": "0be1c116-275a-5822-bc8a-e4eb2ff20967", "text": "a minecraft player built a castle "} +{"id": "0000682", "video_name": "0be20016-4c6a-56f3-8f6c-a3c2651e5717", "text": "replace the bird by a grizzly bear. Keep the unidentified person next to the bear. Theres a lot of wind and makes the bears hair move with it. "} +{"id": "0000683", "video_name": "0be30e73-2e89-549f-bc4d-8fc5ac6a520b", "text": "Team Rocket disrupts the peaceful servers, causing emojis to go missing, channels to glitch, and messages to get lost in the digital chaos. "} +{"id": "0000684", "video_name": "0be64c9a-fcfb-5ec7-b2a6-38a7527c899c", "text": "a school girl with her dog walking on street in dark space and lost in the universe also slow and lofi feeling "} +{"id": "0000685", "video_name": "0be9fbfa-7bfb-5e64-8dd2-937b8b11f33f", "text": "Experimental film in the style of Stan Brahkage 24fps 4k "} +{"id": "0000686", "video_name": "0bed735f-a4a8-59ff-99b8-a1f680be3bab", "text": "desktop photography of man made dessert, good lightings, HD "} +{"id": "0000687", "video_name": "0bef8ff5-8502-573c-b559-e15c2029ea72", "text": "Two kids child boys and girls playing ball.( 3D viedo,4k Ultra, HD) For cartoon Viedo. "} +{"id": "0000688", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "two airplanes colliding the twin towers resulting into a huge blast in the building, funny, scary "} +{"id": "0000689", "video_name": "0bfd4573-b895-5b9b-b2e2-6047a2b8d91b", "text": "a little story. 1 scene: bird flies against a window and is dead. 2 scene: a human puts a sticker against that window. 3 scene: the same bird as in scene 1 flies, sees the window with the sticker and is alerted, so he evades the window "} +{"id": "0000690", "video_name": "0c017cd7-1eec-5d74-abd3-4a03527ef977", "text": "A Tyrannosaurus rex fights with Donkey Kong "} +{"id": "0000691", "video_name": "0c051f34-f150-5330-b058-ebc361581bcb", "text": "a cartoon tooth vs cavity battle "} +{"id": "0000692", "video_name": "0c0974ad-2474-5a3b-91ce-54efe30ade44", "text": "Live concert within the Fortnite video game Message: ADOGRX (Font: MODERN) "} +{"id": "0000693", "video_name": "0c0dbc11-f3d5-5db0-b189-cfdb966d62b7", "text": "The Formation of Planets and Moons "} +{"id": "0000694", "video_name": "0c0ed5d6-4940-5669-a31f-10537e885169", "text": "The character moves from side to side. "} +{"id": "0000695", "video_name": "0c18d51e-2e34-5174-8bd8-a29f68ec53fa", "text": "the trippy visuals of a 5 gram magic mushroom trip, walking through a forest as a hallucination of a Pringles can walks towards you. "} +{"id": "0000696", "video_name": "0c194721-67ab-5166-a9a8-8c4073501664", "text": "A drop of a tear,smashed on a note,dramatic ambient,indirect lights,distorted, "} +{"id": "0000697", "video_name": "0c1d497c-d312-5ec2-8e67-bf404f892d74", "text": "image of kerobin angels with flaming swords, protecting the tree of Eden "} +{"id": "0000698", "video_name": "0c262c64-c9e9-5103-ad0b-5e6d6e2dc35d", "text": "Young People talking in a park Message: Tio Ilmo (Font: COMICS) "} +{"id": "0000699", "video_name": "0c353db9-d250-59fd-88c1-04125daf98e9", "text": "finalizing an amazing drawing of a restaurant "} +{"id": "0000700", "video_name": "0c3af018-1ca2-5d77-907a-08c197657c14", "text": "Generate an image of a vineyard at sunset. A bunch of plump grapes dangles from a vine, catching the warm, evening sunlight. "} +{"id": "0000701", "video_name": "0c3c935d-7487-5576-aaff-4bf69a08c180", "text": "creosote bush in bloom in the middle of the desert "} +{"id": "0000702", "video_name": "0c482681-7057-595a-98fd-bf8666e17c3f", "text": "image transitioning to different forms of batman "} +{"id": "0000703", "video_name": "0c4ec1a3-b126-531f-a37d-c459f14e6311", "text": "two men coming each other very close "} +{"id": "0000704", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "old man walking in the rain moonlight "} +{"id": "0000705", "video_name": "0c558716-5478-5466-b4ca-248d411cefc8", "text": "Scene 1: Introduction Location: A dimly lit bar. Characters: Protagonist (John) sitting alone, sipping a drink. Action: John reminiscing about the good times with his girlfriend. Flashbacks of happy moments projected on the bar walls. "} +{"id": "0000706", "video_name": "0c57c255-8de6-5b55-a2c0-351aa1580373", "text": "trailor of a badminton superstart which show some glimpse of his struggle "} +{"id": "0000707", "video_name": "0c5ff30e-1c40-5c11-8116-343db4fa15c0", "text": "Birth of Venus on dc comics cover, as dc comics character, Birth of Venus style "} +{"id": "0000708", "video_name": "0c600e6f-39e6-5f7a-a918-bd14924a4677", "text": "POV of flying through clouds as a bird, panoramic view, ethereal landscape peeking through the clouds below "} +{"id": "0000709", "video_name": "0c61f22b-ff0a-55d3-b540-a5a4cd128daa", "text": "medium waves, man looking around, beach evening, moon appearing in the corner "} +{"id": "0000710", "video_name": "0c63b763-25a9-5d74-a615-a0793c436e5c", "text": "Create a chibi cartoonish image of this 3d game character Message: 1 Attachment "} +{"id": "0000711", "video_name": "0c662239-d71e-5e17-a732-056b2b792c59", "text": "A mysterious alchemy laboratory appeared in the night, with stars and distant lights reflecting on it. "} +{"id": "0000712", "video_name": "0c6c9bbd-d7b0-5ca9-9113-8c3363ada32a", "text": "big curly red Chinese dragon flying over sea, sunny day with yellow sun in the middle "} +{"id": "0000713", "video_name": "0c7c50e6-289d-5f99-9e5a-4b99f22fc22f", "text": "A man chopping down a tree in the style of Pixar animated film "} +{"id": "0000714", "video_name": "0c7ea528-5bfe-532a-a392-d0ef498e0552", "text": "a man falling into lava, anime style, trending on artstation, best quality, masterpiece, 8k "} +{"id": "0000715", "video_name": "0c822c9f-18e8-530c-adca-d38f642ca00a", "text": "Illustration of a large, female cow walking gracefully in a vibrant meadow with a background of distant trees and a clear blue sky. "} +{"id": "0000716", "video_name": "0c892131-0538-5680-9b25-81fb90deef5f", "text": "tarot cards flying in a blue sky "} +{"id": "0000717", "video_name": "0c8c4591-944f-55d4-b14b-a75dac635597", "text": "a man following another man through a graveyard for 30 seconds "} +{"id": "0000718", "video_name": "0c8c705e-878e-5171-af64-b143eb2e4e52", "text": "in an egyptian settings, create a man gazes out the window at people suffering from the mysterious ailment, their symptoms evident. "} +{"id": "0000719", "video_name": "0c9fafb2-4643-5afe-a882-1ce3cb5b90e1", "text": "santa clause sitting on the great wall of china, drinking lots of bubble teas, 3d, camera pans left to right. "} +{"id": "0000720", "video_name": "0ca1023b-514c-5057-a884-de10e04887c0", "text": "The uploaded image shows a big 6, which is the number of years that NULS project exists with a man staring at this number. the background of this image is composed of several blocks. The animated image must encompase the big achivments of NULS projects adding more people to the lonelly man. "} +{"id": "0000721", "video_name": "0ca164a9-06e4-5b0d-b086-b04685a391aa", "text": "a beautiful cyberpunk city, neon glowing city, bird eye view, highly detailed, high resolution, featured film, 8k, HD "} +{"id": "0000722", "video_name": "0ca16651-45b2-5b02-8290-6011a66eafc3", "text": "A little girl named Emma is sitting on a bench in a park, drawing in her sketchbook. "} +{"id": "0000723", "video_name": "0ca543b8-063f-5d52-b4ac-08eb0af46069", "text": "lights turned on buliding in heart shape animated "} +{"id": "0000724", "video_name": "0ca5e208-bcd6-5018-b3bc-54bfbb64ed24", "text": "a young man proposes to his girlfriend, ghibli studio style by miyazaki "} +{"id": "0000725", "video_name": "0cbb4f48-29b5-5f06-8305-56a2e9cd66f0", "text": "a beautiful African grey parrots flying through a dense jungle "} +{"id": "0000726", "video_name": "0cbe107e-eaec-513c-aaaa-e496d19fabd7", "text": "a running person moving with a smile on his face , full of confidence "} +{"id": "0000727", "video_name": "0cbe226d-7bb5-5e30-b65f-fc3138f276e7", "text": "mark zuckerberg moody profile shot, low shot, greyscale "} +{"id": "0000728", "video_name": "0cc07b14-5984-541b-aff8-fbd72a8ca2b5", "text": "cinematic shots, several ufos are over nurnberg 1561, people watch the ufos fight "} +{"id": "0000729", "video_name": "0cc1f64d-f020-5306-9f43-351014177336", "text": "very very fast cinema film about an artisan from Peru walking through the mountains alone "} +{"id": "0000730", "video_name": "0cc4a9d7-7186-5952-b262-8f30399bb76a", "text": "5 team members working on a software production "} +{"id": "0000731", "video_name": "0cc4e4a1-5868-526d-8cae-e3b814708acf", "text": "a 2d art of a man crying by his dog "} +{"id": "0000732", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "angel girl is playing guitar in the moonlight "} +{"id": "0000733", "video_name": "0cce55c1-7cff-53f2-8b4f-30b67754262d", "text": "Statue of Liberty Message: 1 Attachment "} +{"id": "0000734", "video_name": "0cdca699-2571-52c4-bd42-02de5abff4cc", "text": "Man sleep on the tree and horse under the tree, cinematic video , cartoon animation. "} +{"id": "0000735", "video_name": "0ce1362c-ef70-5297-8e25-790d868a2ed3", "text": "make a vedio a fishing man "} +{"id": "0000736", "video_name": "0ce51b0b-4da1-5b41-bfae-324763d813a0", "text": "scary dragon flying over a perdina town in the forest "} +{"id": "0000737", "video_name": "0ce5b990-05b7-5677-a3ce-55d37d3537b9", "text": "the lively rabbit , gentle bear and curious squirrel They all lived in harmony, sharing the beauty of their snowy home. "} +{"id": "0000738", "video_name": "0ce821af-1ac7-58ca-9d69-4414ae742e0c", "text": "an animated area where a palace in a jungle is reflecting in a small water pool and a young boy steps into the pool, disturbing the reflection of the palace, fps 20 "} +{"id": "0000739", "video_name": "0cf62b2c-ef44-51a4-a094-697d85eb39f8", "text": "donald trump doing yoga in the forest "} +{"id": "0000740", "video_name": "0cf86a02-5365-5f2d-96e1-be6e8a0585c5", "text": "Ms. Y My is cooking for the aliens "} +{"id": "0000741", "video_name": "0d008084-0109-5c9b-98c0-59e072b6c743", "text": "create earth and sky in moviment "} +{"id": "0000742", "video_name": "0d07a128-e17f-5cdd-a50a-6c2173b65188", "text": "An illustration of the cozy family house, both inside and out.Animated cartoon "} +{"id": "0000743", "video_name": "0d08a02a-a75f-5b28-9ba5-b99cbfd45c76", "text": "Alien speaking to an astronaut in the moon "} +{"id": "0000744", "video_name": "0d0a563d-7b64-5392-8cbc-ce51ab3fd736", "text": "Dj surrounded by cool men and women in a lounge atmosphere. Anime style, high resolution "} +{"id": "0000745", "video_name": "0d0ab183-1936-56af-acf7-ef8b338c8988", "text": "Fresh ripe mangoes are selected and sliced thinly. Then, some slightly salty and sweet special mango sauce is added on top of the traditional tomato sauce to bring a unique flavor to the whole pizza. "} +{"id": "0000746", "video_name": "0d164276-a7c5-5ef5-9f8c-5a12522c49f9", "text": "hair oil pouring , shopify style "} +{"id": "0000747", "video_name": "0d16640d-b6ee-5c79-87d0-b7753ce34922", "text": "dark clouds on a stormy night. rain and lightning "} +{"id": "0000748", "video_name": "0d1a7508-e8c9-597f-a357-fa3359adeb69", "text": "dutch angel burning man in pink room 1960s pub,asimetry perspektive "} +{"id": "0000749", "video_name": "0d22f9c9-f8df-5c81-8e48-26ccb0ad1be8", "text": "Prehistoric primitive humans stumbled upon modern people who had traveled back in time. The modern individuals collapsed to the ground, and the primitive humans poked them with sticks. In the pockets of the modern people, the primitive humans discovered smartphones "} +{"id": "0000750", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "mother bunny prepared food at kitchen "} +{"id": "0000751", "video_name": "0d2ea4df-3a5d-5c69-8719-3e022e04faca", "text": "two cute little girls friends talking "} +{"id": "0000752", "video_name": "0d2f5348-c771-572d-8392-5694460359b4", "text": "from the red dunes of Sossusvlei to the rugged beauty of Damaraland, "} +{"id": "0000753", "video_name": "0d3da4bc-1abf-5e87-bb85-170d397935c3", "text": "future Greek God purple eyes, lightning storm, 4k ar 9:16 "} +{"id": "0000754", "video_name": "0d3fed90-af63-537e-b582-99c5048bb378", "text": "persian princess, her face is cover with a golden chains mask, her full body is cover with golden chains and diamond jewelry "} +{"id": "0000755", "video_name": "0d41ed25-08c9-5577-9fa2-75109b8a249a", "text": "a raven flying over the battlefield "} +{"id": "0000756", "video_name": "0d428080-d207-5598-a3fd-65b3a5a17434", "text": "polar bear is skating on ice surface which is oval in shape and dancing to tune of sunflower "} +{"id": "0000757", "video_name": "0d49d6a2-2ce0-548b-bb16-fde69a6395ab", "text": "he had some clothes lying around "} +{"id": "0000758", "video_name": "0d4af439-ba8d-5da2-b745-dcac65effcdf", "text": "The tiger is completely in the form of a computer system unit. "} +{"id": "0000759", "video_name": "0d4cf71f-a8f8-52ba-a257-d72822bcbdd9", "text": "blink and talk like host talking audience confidently Message: 1 Attachment "} +{"id": "0000760", "video_name": "0d52530c-a6aa-569c-92d2-575a13902ad7", "text": "graphic designing, video editing, walmart, amazone courses "} +{"id": "0000761", "video_name": "0d53d2f0-4f1c-5f65-81d8-ecb88b671760", "text": "anime couple on beach Message: LOVE (Font: SANS SERIF) "} +{"id": "0000762", "video_name": "0d540c76-c5d3-5653-a719-01abdf044c1c", "text": "Produce a 3d CGI animation illustration Start to Quick flashes of captivating scenes from the story (e.g., family with phones, ghostly figure, family gathering, etc.) to create ultra HD,8k, Cinematic, Horror, thriller, Humours twist, suspense,slow motion,Clear Details, "} +{"id": "0000763", "video_name": "0d556219-938b-5d53-a224-77f368099c26", "text": "vivid, mirrored, computer chip, aliens sitting on computer chip drinking tea. "} +{"id": "0000764", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "a abandon theater, a group of people , many vertical hanging bule and red flag, cinematic style low key, night time, wide shot , slow pan "} +{"id": "0000765", "video_name": "0d672b8d-bf31-5e24-ae8b-7654d5052080", "text": "A velociraptor on top of a shark throwing bazookas at some seagulls with 4x4 motorcycles on top of a burning ramp along with some demons and some students with some weights next to them and a giant TV at their side. "} +{"id": "0000766", "video_name": "0d68e07e-5747-5b70-a2b8-190b71a29c17", "text": "Jake had always been fascinated by the ocean and its mysteries. He spent his days exploring the shores, collecting seashells, and learning about the creatures that inhabited the deep blue sea. "} +{"id": "0000767", "video_name": "0d6cd1f0-6f1b-5e41-a157-e9d7e0bfdfde", "text": "desert portal with pyramids, movie scene, futuristic, cinematic color palette 8k "} +{"id": "0000768", "video_name": "0d6f3406-5b9a-53d0-9e3f-e14afbcaf174", "text": "a little girl dressed in her school uniform, standing in front of her house "} +{"id": "0000769", "video_name": "0d773380-c6fa-5840-bc1b-db7c8446d5c6", "text": "Abraham prepared his things and said goodbye to his family and friends. With his wife Sarah and nephew Lot, he set out into the unknown, trusting in divine guidance "} +{"id": "0000770", "video_name": "0d8132fb-8143-55ad-ad01-42431ca62169", "text": "A blank sheets of paper, blowing in the wind, rendered in gray tones "} +{"id": "0000771", "video_name": "0d82e10a-d137-5fb7-9f9a-04c212942877", "text": "Car, stopped in front of a macabre, realistic, detailed forest, "} +{"id": "0000772", "video_name": "0d888549-5163-56e3-aac2-b718c1e77d70", "text": "a recruitment post of english learning class for kids "} +{"id": "0000773", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "A Little Monkey Eating Peaches in the Forest "} +{"id": "0000774", "video_name": "0d9332f1-aa9b-5a58-a816-2584119dd806", "text": "make a collage image of britains biggest cultural exports of the 1950s until the 1980s "} +{"id": "0000775", "video_name": "0d952b29-fac9-5a36-b730-154bbe6b3e96", "text": "loads of digital balloons floating Message: ai crew (Font: MODERN) "} +{"id": "0000776", "video_name": "0d97fd5e-c8e3-5d7a-8917-066b585a251e", "text": "In bustling city life, a young woman named Anya resides. Amidst skyscrapers, she stands as a beacon of hope. "} +{"id": "0000777", "video_name": "0d9f4e80-63d2-5ac5-a97f-3b4070b8e337", "text": "The protagonists, embodying the roles of both hero and villain, stand as skilled swordsmen united by a singular mission: the rescue of a dear friend. "} +{"id": "0000778", "video_name": "0da37fe8-bdeb-5b9a-920d-8a3348035204", "text": "A trendy woman with headphones is dancing and singing "} +{"id": "0000779", "video_name": "0da4f578-983f-5656-96c3-38ba319a8c5c", "text": "Soldiers rescue the scientist, facility experiences a massive explosion. "} +{"id": "0000780", "video_name": "0db73d9b-cc79-5b48-8fd2-108f601b119f", "text": "Dan Zivetz talking to Youtube audience "} +{"id": "0000781", "video_name": "0db7de93-4dba-5199-9d35-c2b5de11c95c", "text": "We see the haunting, surreal image of Cthulhu, his eerie, otherworldly presence floating in the void of space, passing by sinister and ominous planets. "} +{"id": "0000782", "video_name": "0db9c44f-0d8a-58d4-84b5-dcc3801add4c", "text": "cartoon bear angel with wings flying through a city "} +{"id": "0000783", "video_name": "0dc4fe17-c791-5999-b60e-fde969ea2fa2", "text": "video for eccomerce busines of various digital products like ebooks, tshirts, planners and journals using digital art. "} +{"id": "0000784", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "The mission no russian from modern warfare 2 "} +{"id": "0000785", "video_name": "0dc909ad-2cea-5e6e-bc1e-ed79e25f695d", "text": "in biblical times a man is on a journey in the middle east "} +{"id": "0000786", "video_name": "0dd50283-4616-58b1-873d-3c401f87e7b4", "text": "Animated logo in the name of Samih "} +{"id": "0000787", "video_name": "0ddaa4b7-cf86-5ef6-bcf4-1f6767f83a74", "text": "Flying police rush after a new vanilla car "} +{"id": "0000788", "video_name": "0ddc0287-1d8b-5093-a070-2f2f6915e64a", "text": "an 11 year old boy sitting on a sofa and telling a story "} +{"id": "0000789", "video_name": "0ddde2b0-1a2c-529d-a566-ccc82598208a", "text": "a book turning its pages of itself magically "} +{"id": "0000790", "video_name": "0de69362-e629-5f2f-a968-1ef1af8eee35", "text": "In a tender moment, a male and a female share a connection by gently touching their foreheads together. As they do, a sense of warmth and understanding passes between them, creating an intimate and heartfelt scene. Capture the emotions and connection in this touching moment "} +{"id": "0000791", "video_name": "0de6c604-4cee-55b4-8a05-d7958861cdc4", "text": "8k High resolution small white refrigirator "} +{"id": "0000792", "video_name": "0de9dd78-ca9d-570d-867a-2bae12810bbb", "text": "people dance the waltz in a beautiful castle "} +{"id": "0000793", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "opening eyes moving arms head baby Jesus in manger filled with hay, uhd, glowing stable Bethlehem, uhd, wide view, high lighting, cinematic motion "} +{"id": "0000794", "video_name": "0e0837c6-8532-5307-ab13-c8d7b5117778", "text": "many kitten plays in the yard "} +{"id": "0000795", "video_name": "0e0b90eb-2338-548f-a9a9-3c2fac534693", "text": "generate a realistic video of Monkey walking on a beach. "} +{"id": "0000796", "video_name": "0e0dcccb-b74f-543f-9f02-1561ec2a63f0", "text": "create the best version of this clip "} +{"id": "0000797", "video_name": "0e0ea2ea-cb76-5367-9bf3-882b7c0386d0", "text": "one soldier who wearing the rags is burying the dead using the grasses, the camera at the high view. "} +{"id": "0000798", "video_name": "0e1e7069-9fa8-534f-b81a-f87c14596709", "text": "Thanks for watching, please like and subscrib our channel for such videos. "} +{"id": "0000799", "video_name": "0e20ba49-09ab-55ce-b39a-b16e3cd2e3f3", "text": "mycelium spreading across the surface of glass "} +{"id": "0000800", "video_name": "0e21a42c-9d6f-53e3-92ac-de6ccdb2f053", "text": "A family\uff0812person\uff09 having a dinner together. "} +{"id": "0000801", "video_name": "0e21bb67-f4e0-502f-8a91-308d78ca40df", "text": "the white pebbles are levitating on the pebble beach. The tosca coloured sea is blurred on the background "} +{"id": "0000802", "video_name": "0e2e8ef4-b19d-50e2-a083-1b3f501335ca", "text": "a 40 yo man sitting in a chair near fireplace, he is reading a book, soft light atmosphere "} +{"id": "0000803", "video_name": "0e378030-f961-5976-9382-3703cc2b9ef2", "text": "The hero Thor from Scandinavian mythology flies away from the planet Earth with the help of a space bridge called the bivrest. Colorful. "} +{"id": "0000804", "video_name": "0e3875c5-cebc-580c-88d4-7ae4e1256ed1", "text": "Fish diving in the deep sea "} +{"id": "0000805", "video_name": "0e38a7d0-bacc-5e60-bd58-826ff15c6db2", "text": "Trace of red liquid on the ground. Fleeting appearance of a ghostly figure. "} +{"id": "0000806", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "Pablo oscobar with Indian old men "} +{"id": "0000807", "video_name": "0e4f9042-c651-50ef-9793-b2e5ec546dfa", "text": "They did, however, have something special that helped them survive and eventually evolve. They had large brains. Brains that would evolve into the brains we have today. "} +{"id": "0000808", "video_name": "0e57da11-1747-54b3-a3b9-7aff8bf4bd62", "text": "One day, when Maya was hunting, "} +{"id": "0000809", "video_name": "0e59669a-5b9d-5be8-831b-17e43ab91428", "text": "Ducks and swans swam gracefully on the water."} +{"id": "0000810", "video_name": "0e5caff9-8a3a-563f-9862-df19f18652ea", "text": "an old cowboy tailor is satisfied with the jeans that he made. "} +{"id": "0000811", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "A schoolgirl in a school uniform is walking through the school and saw a cell phone on the ground, she picked it up and turned it "} +{"id": "0000812", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "a woman feels tired after a whole day work, she sits down on the chair and then fulls in sleep "} +{"id": "0000813", "video_name": "0e77b5fd-d789-5e5d-a59f-6497458c29e4", "text": "generate Somali family father mother son and daughter crying and sad 10 seconds videos "} +{"id": "0000814", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "Create image of peaceful nature, chirping birds and serene environment, create the image in 4k and HD "} +{"id": "0000815", "video_name": "0e81dd52-30f2-5d3d-b9f5-0e241fb515b4", "text": "a beautiful white soldier with big white wings with armor and sword. He cares for and defends a child with his sword. inside a volcano "} +{"id": "0000816", "video_name": "0e84de53-aa2a-54b5-a12f-1db6ddb76c9f", "text": "A zen master droppped pebble into still water pond sorrounded by lush green trees "} +{"id": "0000817", "video_name": "0e8ba3b7-8152-5e69-ab95-21f3ba4543ee", "text": "15 year old pakistani poor girl is walking down the street wearing hijab full body in the style of cartoon "} +{"id": "0000818", "video_name": "0e929118-095b-5672-a3ee-3bd993865f04", "text": "oilpainting style, ink wash in green and gold tones, a chinese dragon, new Chinese style, minimalism, hand drawn style, illustration, festive style, muted colours, wet on wet technique, sketch ink watercolor style with a hint of orange and white by Wu Guanzhong, Truong Lo, Mary Jane Ansell, Agnes Cecile, muted splatter art, gold ink splatter, faded dripping paints. green monochrome, soft impressionistic brushstrokes, oil painting, heavy strokes, dripping paint, oil painting, heavy strokes, paint dripping "} +{"id": "0000819", "video_name": "0e93de1e-d041-5c7e-b312-4866bd7ed39c", "text": "statue of liberty jumped from pedistal "} +{"id": "0000820", "video_name": "0e9a52b2-26a5-58f7-a467-78d73838a394", "text": "a man with not shirt, swinging an axe "} +{"id": "0000821", "video_name": "0ea0dabf-9983-544c-8ce0-c842cbcbdba4", "text": "realistic victorian clocks, time moving quickly, nightmare, movement, melting, distorted, diamonds "} +{"id": "0000822", "video_name": "0ea2b67b-3b34-5044-ac1d-c5f78bd14389", "text": "An animation of a robot driving a car with a dog. The car is futuristic. They are talking about food "} +{"id": "0000823", "video_name": "0ea46ba0-3996-5c63-ae23-72d53bc8597b", "text": "sorayama styled dragon with an intergalactic background "} +{"id": "0000824", "video_name": "0ea5f631-a1c5-5efc-be57-934b8bff762c", "text": "a disaster in sea and fire in earth "} +{"id": "0000825", "video_name": "0ea6a7ad-21b8-558c-a4ed-7291a46c9b37", "text": "crete a PPT slide with points about What is tableau data visuvalization? "} +{"id": "0000826", "video_name": "0ea99e5e-ad1a-5fd9-88be-3c4964b3ce6c", "text": "two beautiful chinese girls are playing water and laughing "} +{"id": "0000827", "video_name": "0eaccb2d-44a5-57f2-94ac-6b1a7d50efbc", "text": "always remembering the wisdom of Oliver named owl and the joy of the woodland dance,hyper,realstik,8k ultra "} +{"id": "0000828", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "Photorealistic image for a purple lavender sleep potion drink "} +{"id": "0000829", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "The movie opens in the eerie silence of an abandoned psychiatric hospital. Meet JASON, a former patient who has returned to confront the ghosts of his past. "} +{"id": "0000830", "video_name": "0ebe727a-4d39-5322-903c-46639b30bb27", "text": "Set the scene under a bedsheet where four friends create a makeshift sanctuary to share stories, lit only by the glow of a mobile flashlight. Convey the atmosphere with a blend of warmth and mystery, emphasizing the close proximity and the shared laughter. Artwork, mixed media on canvas, using textured layers to bring out the cozy and secretive nature of the storytelling session Message: anime style (Font: MODERN) "} +{"id": "0000831", "video_name": "0ebe92d6-ad35-5025-a6f8-23dcdffa1631", "text": "sitting on the terrace of the rain forest house, 4k video "} +{"id": "0000832", "video_name": "0ed00583-c073-5969-ba9e-689d9ea17e83", "text": "girl looking out car window in passanger seat "} +{"id": "0000833", "video_name": "0ed030ca-d761-578d-a6ba-637221ce7d92", "text": "movement high quality anime girl cyber goth sad girl looking at the camera "} +{"id": "0000834", "video_name": "0ed9002e-e7d9-5e27-ac4a-1b68e8107278", "text": "lawyers in court Message: 1 Attachment "} +{"id": "0000835", "video_name": "0edb5416-6738-5565-9c9b-77bbb1e97c30", "text": "a dog singing on the moon "} +{"id": "0000836", "video_name": "0edc212a-bd9a-5c77-88b4-73b443fef2aa", "text": "black shirt beard guy working on a desktop computer sitting down over office a blue chair and eating a green apple. "} +{"id": "0000837", "video_name": "0edf3fc5-e26f-58d2-92a3-b0208f2ada27", "text": "star wars theme, rebel in a forest, cinematic, looking for something in the sky "} +{"id": "0000838", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "marcul aurelius seating on a horse "} +{"id": "0000839", "video_name": "0ee19d2b-13ee-5451-9d32-6557beb0031f", "text": "the kitten washes its paw on the chair. "} +{"id": "0000840", "video_name": "0ee306fe-5ab1-5056-a29b-a9409be67c45", "text": "pop up book of a hospital as it opens "} +{"id": "0000841", "video_name": "0eeb55ac-320e-5757-88dc-d8770d02a7ef", "text": "pixar cinematic moving forward through the buildings "} +{"id": "0000842", "video_name": "0ef2f43c-3934-5741-b749-c75e56b95f53", "text": "fruits and vegetables turn into a orange drink "} +{"id": "0000843", "video_name": "0ef49594-c0cc-55c6-bbb5-beaf4ad3a0c8", "text": "pop up book with a library building folding out "} +{"id": "0000844", "video_name": "0efbc5a7-657b-5cae-8565-a87a89e6802a", "text": "a fusion of toji Zenin and Don Quixote Doflamingo "} +{"id": "0000845", "video_name": "0efc2d9e-e910-5d29-9551-2d1f026221e9", "text": "Felix felt so sad and lost that he had no one to take care of him or guide him in this huge forest. He started wandering in search of food and shelter, and every day he faced many challenges and dangers. "} +{"id": "0000846", "video_name": "0efccbd3-416f-5275-b2e5-aed21f91c85d", "text": "Illustrate a Spartan hoplite standing in his phalanx formation, representing the elite and unyielding nature of Spartan warriors "} +{"id": "0000847", "video_name": "0efce133-c865-58d9-8a0e-6619650c1da4", "text": "the amphibious people of West Virginia, 1960\u2019s soft core aesthetic, eerie, subdued colors, nostalgic "} +{"id": "0000848", "video_name": "0f0095a5-234b-5672-b2cb-4d5106728950", "text": "pixar toy story woody jump and run in the room "} +{"id": "0000849", "video_name": "0f07b697-cfaa-5402-9512-2a6ceeeacb7a", "text": "Portray humans exploring the depths of space, with futuristic spacecraft and space stations navigating through cosmic landscapes. "} +{"id": "0000850", "video_name": "0f0b84e1-462e-5b0c-a69e-1e8bb826aa35", "text": "Taj Mahal covered in flooded water, Delhi floods, cinematic picture movie shot 70 mm anamorphic lens "} +{"id": "0000851", "video_name": "0f0c6715-3607-517d-98c1-14ad06428291", "text": "The shuddering stops as the derelict UFO explores the lush green planet of Eldoria, Master Goblin Pongcare at the controls and while fairy aerial excitedly watches. Our rapid descent slows to a gentle glide. Claude sees Edlinarians in sleek silver uniforms gesturing from gleaming towers, guiding our ship to a safe landing. "} +{"id": "0000852", "video_name": "0f0ca273-33e7-54eb-83d0-3bb002b66041", "text": "scene from Star Wars, Darth Vader holding light saber, photorealistic. Camera rotating clockwise "} +{"id": "0000853", "video_name": "0f10966c-fd6d-5c07-96e4-d42b49d6f492", "text": "a Filipino men walking that dressed barong "} +{"id": "0000854", "video_name": "0f142550-26a5-5115-aef6-183f678b792f", "text": "a sea monster that rises out of the water during a storm, with lightning, movie style, movie, dark style, horror movie, realistic, 4k "} +{"id": "0000855", "video_name": "0f1661b1-9f83-595b-8c63-5b391d554a1e", "text": "an astronaut with spacesuit floating in the outer space, realistic, surreal "} +{"id": "0000856", "video_name": "0f168e73-85c3-5efb-a715-4c3027d6f803", "text": "tries to catch the colorful ribbons under the Christmas tree., "} +{"id": "0000857", "video_name": "0f17a1bf-1e0b-5614-b4ef-fdb14be33522", "text": "Slow motion of a triumphant success at work, in a bustling sales floor, with ringing phones, showcasing the excitement and achievement, captured in a wide shot with dynamic lighting, filmed by Oliver Stone, influenced by his energetic style, conjuring emotions of victory and exhilaration, with vivid details and cinematic shot \u2013s 1000 "} +{"id": "0000858", "video_name": "0f1f6d07-522b-586d-b052-f1275df7bf70", "text": "leave on the water, river, 3D, fantasy, unreal render, disney style "} +{"id": "0000859", "video_name": "0f221017-4695-58f5-913d-7c7692790603", "text": "women in a futuristic city realistic animation "} +{"id": "0000860", "video_name": "0f245125-7c39-5131-81e9-5b0af594a368", "text": "A fashion model wearing a black and white fur coat walks on the catwalk and moves "} +{"id": "0000861", "video_name": "0f2dd7d3-ce51-55dc-b6d2-4297c1edebe8", "text": "timelapse of a seed growing into a flower real "} +{"id": "0000862", "video_name": "0f324789-bfbd-5c86-8c6b-bc02e38977d9", "text": "a boy eating ramen in a futuristic cyberpunk city, neon lights, cinematic "} +{"id": "0000863", "video_name": "0f3295ad-f88b-517b-8177-9ed184a7ba6b", "text": "A visual representation of a mind illuminated by a glowing lamp, symbolizing the search for spiritual understanding. Message: 1 Attachment "} +{"id": "0000864", "video_name": "0f341f10-f556-5eac-88e3-1251e5c15a8d", "text": "King standing with his sons in indian kings attire , each with a different style of fishing rod, in kings place ready to for hunting "} +{"id": "0000865", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "Show the young guitar player sitting atop the mountain, Animate birds gracefully flying across the sky in the background, Add subtle animation to the grass and flowers to simulate the gentle blowing of the wind, studio ghibli, hand drawn, vibrant, slow motation "} +{"id": "0000866", "video_name": "0f42c0c9-d394-5cc4-9d39-15b257b57c64", "text": "a chrysanthemums flower and place a Magnifying Mirror to see the flower in detailed view, it should be realistic,zoom in and zoom out each petal in detailed "} +{"id": "0000867", "video_name": "0f42f37a-5591-508f-abe0-a34bc8970a8b", "text": "generating video the girl is speaking and telling something one by one "} +{"id": "0000868", "video_name": "0f453cdf-1500-5017-b3b4-7bb3e57a8451", "text": "Mia loved to play outside, especially when the sun peeked out after a rainy day. "} +{"id": "0000869", "video_name": "0f487bb2-26a5-5833-b479-f0e0a5b62a92", "text": "small village on the mountains with bad weather and a big Queens and rains is falling "} +{"id": "0000870", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "An aerial shot of a large city, circling around a skyscraper,cinematic,High definition, Real "} +{"id": "0000871", "video_name": "0f4d302f-2fea-5888-b24a-d30e0827c69a", "text": "a man is inspected by border guards near the train "} +{"id": "0000872", "video_name": "0f558815-572c-5dcd-ae54-15b6ead7ee17", "text": "The trees are swaying.The boat rippled in the water. "} +{"id": "0000873", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "Draw the moon as it is formed from the angle seen from the sun. "} +{"id": "0000874", "video_name": "0f589ed5-f200-5b60-a9ff-8982bc23805c", "text": "moon turned red and the stars fall on the earth "} +{"id": "0000875", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "fireworks Message: Happy New Year (Font: MODERN) "} +{"id": "0000876", "video_name": "0f5bbc11-47cf-5c97-b215-2e5cb4e8154b", "text": "A image from a microscope of some bacteria Message: Te quiero (Font: MODERN) "} +{"id": "0000877", "video_name": "0f5d83d9-901e-5caa-876b-c044054d867b", "text": "1950\u2019s super 8 footage of abandoned bowling alley, saturated ghost lurking "} +{"id": "0000878", "video_name": "0f6d3a45-8c9b-5f6f-8283-c88167c94024", "text": "an angel laying around in the clouds next to the gates of heaven"} +{"id": "0000879", "video_name": "0f73c135-17b0-59b6-8f45-fbc9704a932f", "text": "two monks walking towards himalayas, against gusty wind "} +{"id": "0000880", "video_name": "0f7524d7-1569-5284-bd18-096f8f59c45f", "text": "an above view of a shark swimming in clear water "} +{"id": "0000881", "video_name": "0f7b8074-ef94-5acd-b546-41174a42c6bd", "text": "iron man and Batman crossover flying through the orange color sky "} +{"id": "0000882", "video_name": "0f815735-043d-500e-901c-658fb9c3f66f", "text": "suburban twilight park glow underlit in a white dress medium shot platinum blonde nylons platinum blonde nylons dream reaching for the light "} +{"id": "0000883", "video_name": "0f82bb15-d9fc-5678-8dfd-3d4c99ad907b", "text": "a fighter jet shooting down a helicopter "} +{"id": "0000884", "video_name": "0f845582-ec01-53a8-9ab4-824681ccfce5", "text": "in black and white newsreel style, nasa astronauts exploring disneyland in a moon buggy, in the style of black and white 1900s expressionist silent movie "} +{"id": "0000885", "video_name": "0f8bc46c-9d2c-583f-8657-ad95d032864f", "text": "A 2023 lawyer in a technologically advanced office, working on a computer with multiple monitors. He pauses for a video call, interacts briefly, then shifts focus to analyze data on another screen.\u201d "} +{"id": "0000886", "video_name": "0f951ca1-d3ab-5a29-97e5-3ebb35d7ecc2", "text": "fighting in war Message: madara vs Naruto (Font: MODERN) "} +{"id": "0000887", "video_name": "0f97149e-0cb3-537f-bfc1-21ee077e2d46", "text": "boy speaking to the hunters, trying to persuade them to leave the jungle peacefully, showcasing his diplomacy. "} +{"id": "0000888", "video_name": "0f995604-a9e6-55f7-96f5-daf83150faf6", "text": "Indonesian woman talking to Timorese woman "} +{"id": "0000889", "video_name": "0fa1089e-3ca4-59fb-83f2-701c4eb57ace", "text": "ancient chinese archer, open space, bow and arrow, The sky is in the northwest, Determined expression ,gaze focus, Bows and arrows are like the full moon, distant sky ,Sirius, low angle composition ,Warm colors, Light slants from northwest "} +{"id": "0000890", "video_name": "0fa1d1d4-941b-55f2-b0cd-e6ba5fb2d5c2", "text": "almonds are poured into a plate "} +{"id": "0000891", "video_name": "0fa1f4f9-9955-5311-af64-91381c3f97ef", "text": "image , pharaoh Akhenaten, standing on his throne with his daughter at his side "} +{"id": "0000892", "video_name": "0fa785be-6fbf-5323-9cae-053263fe3b90", "text": "a 13 year old indan boy wearing bluet shirt is shocked by expression and speaking in the room "} +{"id": "0000893", "video_name": "0fac8550-c8a7-5ad5-a420-8683c20c9c70", "text": "A scientist invents a robot, black and white 1900s "} +{"id": "0000894", "video_name": "0fadb3f5-8621-5c2a-aab5-67c8e37e149e", "text": "girl rest on a bed with open eyes at night, horror story "} +{"id": "0000895", "video_name": "0fbd11ed-d1f1-5e67-9e50-c8c039c9272a", "text": "robot running on a trck field "} +{"id": "0000896", "video_name": "0fc6ffee-7584-5072-aa51-2dfb21096cb3", "text": "Young adult inviting people to follow Message: YWAM (Font: MODERN) "} +{"id": "0000897", "video_name": "0fd1f1cd-9cee-5efd-b7d8-436edb3bfad4", "text": "Identity Fragments\tExploration of Self\tRace and Personal Identity\tFragmented portraits with symbolic imagery\tMixed Media and Collage\tReflective, Intense "} +{"id": "0000898", "video_name": "0fd604f0-1971-569f-88e2-6d761699c9c4", "text": "a modern robot walking in a runaway fashion show, in the middle of paris. The crowd is all wearing pink in contrast with him wearing black. Video must be 4K, and long . "} +{"id": "0000899", "video_name": "0fe16476-ac45-56bb-a8f5-3ff51abd4792", "text": "a girl crying and her tears create the sea "} +{"id": "0000900", "video_name": "0fe393d4-3bf2-52fb-97f5-2879c1730073", "text": "A Butiful Lady Cary A Vanity Bag "} +{"id": "0000901", "video_name": "0fe3958d-b80a-535c-a84b-02d7c732099a", "text": "a totally black background flashing a totally white background on top of it every few frames "} +{"id": "0000902", "video_name": "0fe844bd-f80d-56e1-8b3d-b406f26063cc", "text": "view of the sky through a building "} +{"id": "0000903", "video_name": "0fe947f7-042c-5551-8e69-1b1a10c3da24", "text": "stereotypical alien standing in the suburbs "} +{"id": "0000904", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "dolphin suddenly appears over the rainbow "} +{"id": "0000905", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "Crowd at piano concert clappin standing ovation "} +{"id": "0000906", "video_name": "0ff8d98e-15a8-5975-ad74-4cba6493a174", "text": "tour in a remodeled kitchen, 4k "} +{"id": "0000907", "video_name": "0ffc99e9-b413-5450-b341-e67d229d2df0", "text": "buzzlight year using lazer towards zurg "} +{"id": "0000908", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "A star made of air floats above the city "} +{"id": "0000909", "video_name": "10106e1f-146a-5694-91cb-6cfb0410527d", "text": "A girl in formal clothes tells a story to everyone. The girl has long hair and yellow skin. The background is pure white. "} +{"id": "0000910", "video_name": "101499d6-85de-5f4d-adb5-164abb783429", "text": "represent a digital currency that is not regulated by a central bank and totally decentralized and free of action in a cartoon image "} +{"id": "0000911", "video_name": "101636e7-13d8-5c9b-a47e-a8b6037b7815", "text": "3d, dwarf, in a forest, mystical lighting, smoking a pipe, suddle movement only "} +{"id": "0000912", "video_name": "1018f3b6-efba-5d06-af50-45c798dafa3a", "text": "Mowgli racing with his friend wolf in jungle in Cartoon style "} +{"id": "0000913", "video_name": "1019c532-a4c2-5067-a6cd-bb36ceca8bb7", "text": "university professor teaching class walking among students "} +{"id": "0000914", "video_name": "101f4b56-1c45-5d10-bbc7-e424617a04e8", "text": "a pretty girl enjoying songs while returning back from work "} +{"id": "0000915", "video_name": "102431cc-0056-51a5-87ed-cf41ca0da329", "text": "Dragee fairy dance, realistic, beautiful, aesthetically pleasing, professional shooting, high detail, photorealism, 4k, 16:9 "} +{"id": "0000916", "video_name": "10261036-d7e5-59f2-a0c2-e0ffebba55d4", "text": "sailing in the wind with a sailing baot in the sea and dolphins "} +{"id": "0000917", "video_name": "1027b57a-b8ae-5b3b-909d-33b3c1179868", "text": "beautiful indian model in lehnga dancing in round formation "} +{"id": "0000918", "video_name": "102b1582-2aab-58fa-bc3b-24e0f46bd082", "text": "photorealistic 4k, people, employees, stresses out, design company, working process "} +{"id": "0000919", "video_name": "10323a81-d838-536e-85d6-67f5d2912acc", "text": "A vibrant and colorful brochure cover featuring a variety of chocolate candies, surrounded by a group of joyful and energetic children, all with big smiles on their faces. "} +{"id": "0000920", "video_name": "103778a6-c16d-5d3f-b76a-16488f8c52ef", "text": "a bustling office cafeteria, where colleagues gather during their lunch break. The cafeteria is filled with the aroma of various cuisines, and people sit around tables, engaged in animated conversations. The protagonist sits with their coworkers, sharing stories and laughter. Indian. "} +{"id": "0000921", "video_name": "10389ca2-b65e-5e16-a96f-4ba00d1cc1c3", "text": "A cycle player is cycling on a road st: 16:9 "} +{"id": "0000922", "video_name": "103dc343-19d3-511d-b747-f3cfb3882789", "text": "a soccer match is played in the foreground, in the background a volcano is erupting, hyper photo realistic "} +{"id": "0000923", "video_name": "104523d9-a681-5c9f-9067-185508777cf3", "text": "Futuristic cyborg mechanical camel walking down a busy street in Riyadh Saudi Arabia, in the style of Ridley Scott "} +{"id": "0000924", "video_name": "104b5392-0ac3-5df3-b359-c2060e7488f9", "text": "Michael Jordan and Messi playing table tennis in one scene. "} +{"id": "0000925", "video_name": "104f78dd-2fd0-5606-9032-26e03357c42e", "text": "Ganpati Festival, people dancing in front of big ganpati idol "} +{"id": "0000926", "video_name": "10500d63-3f33-57ee-9894-17d173057527", "text": "person siting on chair on road animation "} +{"id": "0000927", "video_name": "10598a8f-a16d-5160-9ce2-798c7655ca7f", "text": "Shawn Mendes and Sabrina Carpenter singing in the choir "} +{"id": "0000928", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "countless dolphins flying in the sky, swimming in the sea and setting off huge waves, aerial photography "} +{"id": "0000929", "video_name": "105d3e76-dbc7-5e35-a552-c9de845eec9e", "text": "A moment of decision as the stranger offers the poor man an opportunity that could change his life. "} +{"id": "0000930", "video_name": "106072aa-a4ee-53fb-b2e8-1522d5e3fd88", "text": "A long haired girl laughed and jumped off the bridge, landing steadily "} +{"id": "0000931", "video_name": "10617bdb-e15d-5351-92ce-07c94628b61c", "text": "A letter broke the peaceful life "} +{"id": "0000932", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "woman walking in the forest, we see her from behind, klimt style "} +{"id": "0000933", "video_name": "10711237-a285-5e2b-a2a0-27153b02a4ff", "text": "forest in which river is flowing "} +{"id": "0000934", "video_name": "10735853-8488-5e05-94a3-4167dd1842df", "text": "A giant hand coming out of the clouds towards the ground while the place that was all in darkness is illuminated with a small man looking up "} +{"id": "0000935", "video_name": "107ac384-41cf-5151-b209-f716440c6182", "text": "Please assist me in designing an AI virtual chat companion for the field of mental health, who can listen and support customers. "} +{"id": "0000936", "video_name": "1083605b-fbfc-56d0-ac5e-28e9ca0b1250", "text": "We discovered an intriguing artifact in the form of a map, "} +{"id": "0000937", "video_name": "1088e678-f8b1-59ec-9246-60c896c07ad6", "text": "white unicorn walking with dragons flying in the background "} +{"id": "0000938", "video_name": "108b4885-adc2-5386-b49e-1a746e453750", "text": "Futuristic laptop in 22nd century, octane render, 4K, 8K, "} +{"id": "0000939", "video_name": "108dc839-526d-5d0b-9786-e18ce603fe97", "text": "A montage of homes, families, individuals that visually represent diversity in age, location, marital status, occupation, and house condition. "} +{"id": "0000940", "video_name": "108e0931-c2ea-544e-bc05-3380f2be3359", "text": "Bear as a space commander, cyberpunk style, 8K"} +{"id": "0000941", "video_name": "109bd450-1fdc-53e4-aa31-d549a26e907a", "text": "A pack of skirts dancing on a table "} +{"id": "0000942", "video_name": "109dba2c-954d-5245-8f5e-5d9ec4fd4531", "text": "Close up colored manga portrait of a middle aged black woman screaming by Junji Ito, detailed illustration, amazing details, phenomenal stylistic, poetic, dramatic atmosphere, cinematic "} +{"id": "0000943", "video_name": "109f0434-14b5-57e0-b47e-4d38ee36e421", "text": "beautiful nature with mind blowing lake view for stargazing "} +{"id": "0000944", "video_name": "10add92d-da49-56a9-af35-41406a92cdb4", "text": "spaceship background universe background planets black holes "} +{"id": "0000945", "video_name": "10b0ef51-c207-5577-bdca-3f1f479c43ca", "text": "3D animation of a soldier shooting at a policeman "} +{"id": "0000946", "video_name": "10b22ed0-10df-58a3-9344-2e3321501b88", "text": "Timelapse of a perfect snowflake forming "} +{"id": "0000947", "video_name": "10ba1960-a659-59b3-b338-fd0575800141", "text": "Generate an animated dynamic burndown chart with a line graph showing progress over time with people surrounding it "} +{"id": "0000948", "video_name": "10c42022-35ac-5adb-b9a3-893e6c6ea9f9", "text": "\u2022 Transition to the rapper in a studio, creating beats and writing lyrics. "} +{"id": "0000949", "video_name": "10c5cff6-293a-55c5-89d0-500c71e6f56d", "text": "A beautiful Chinese beauty, non animated "} +{"id": "0000950", "video_name": "10c71bf6-0533-5601-be96-e97565c92d1f", "text": "background video for a online shopping website "} +{"id": "0000951", "video_name": "10ce8bbf-7554-5de8-be65-fa464edfeaca", "text": "Centuries ago, an ancient prophecy predicted the coming of a terrible darkness that would threaten the world. "} +{"id": "0000952", "video_name": "10d20bb5-6e3d-53f9-a30f-09b912286576", "text": "Create a photorealistic video of a drone flying over Kyiv, Ukraine. The video should start with the drone flying over Khreshchatyk, the main street in Kyiv. The drone should then fly over the rest of the city, showing the many different landmarks and attractions. The video should end with the drone flying over the border of Kyiv, which is highlighted in blue. The video should be set to music that is both beautiful and inspiring "} +{"id": "0000953", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "Monochrome video, Loneliness and fear in outer space , fear, "} +{"id": "0000954", "video_name": "10d791f1-cf74-5836-9cfb-8603ca1f1326", "text": "a shot from behind and below. The scene is the back legs of a cowboy. he is leaving to go outside and its in an wold western style. "} +{"id": "0000955", "video_name": "10d9bf69-7c65-5d80-99fc-550fa2e3a366", "text": "On the grassland, a lion charges. Wind tousles its fur as it races towards the camera, exuding power and determination. "} +{"id": "0000956", "video_name": "10db8c9f-a8d4-5cb6-9dd6-e5ec155d9c62", "text": "A beautiful woman came up to me "} +{"id": "0000957", "video_name": "10dd9cda-1dd6-510e-b20a-b95821dac18c", "text": "At the deepest part of the ocean, a giant eye gazes upwards, waiting for any intruders to approach. "} +{"id": "0000958", "video_name": "10e58e6a-f391-5b27-8325-04a63403a8d1", "text": "christmas card opening blue christmas tree snowing "} +{"id": "0000959", "video_name": "10e65cd4-fcd0-5870-966c-65747107a4d4", "text": "Imagine the wind picking up, leaves swirling in an otherworldly dance, and the ghostly voice materializing as a pale mist hovering near the willow. "} +{"id": "0000960", "video_name": "10f4a091-9f60-5daa-977d-2c998ba44f21", "text": "3d man with big eyes and smile holding a vacuum cleaner, open house door, saleman, 3d animation "} +{"id": "0000961", "video_name": "10f4e4af-51ec-5c09-b291-6f4a3248178f", "text": "cultists from a surrealist 1960s art film "} +{"id": "0000962", "video_name": "10f7e358-e091-5b36-b461-55145843cdc5", "text": "4.\t 5.\tConduct simple and safe science experiments that kids can easily replicate at home, making learning about basic scientific concepts exciting "} +{"id": "0000963", "video_name": "10ff9811-2620-5c36-b724-63dea8a11f22", "text": "Once upon a time there was a woman named Mary, mother of Jesus of Nazareth. "} +{"id": "0000964", "video_name": "10ffb7e0-e28e-578d-ac2a-ef00aac90859", "text": "Acid rain, the water colour is green, everyone running to save their live "} +{"id": "0000965", "video_name": "11092f20-ee16-59ec-9c21-4389c0dac8b7", "text": "a man walking in a silent valley drama light "} +{"id": "0000966", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "Schematic of fault movement during an earthquake. This video is in 4k quality, like a movie lens with light. "} +{"id": "0000967", "video_name": "110e8fb7-8c2d-52c7-b465-5b6dfcab2678", "text": "attractive anime boy walking down a sidewalk on a rainday in a city "} +{"id": "0000968", "video_name": "11155391-9910-5092-aac8-9e7d23ee26a1", "text": "The mountains collapsed and everyone was shocked "} +{"id": "0000969", "video_name": "111588d9-4643-562f-bfd2-a363d039d0e7", "text": "two man smoking in a surrealism style landscape "} +{"id": "0000970", "video_name": "11174e37-5b11-5f8a-8d03-49aef05aa607", "text": "A handsome man who is blind, facing straight ahead. Beautiful Final Fantasy style animation "} +{"id": "0000971", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "banksy spray painting a stencil mural on a farm building "} +{"id": "0000972", "video_name": "111c2fbb-601d-5a29-b4d7-769ea4702ee8", "text": "his robe blowing in the wind Message: 1 Attachment "} +{"id": "0000973", "video_name": "111d7200-9046-5db1-8da4-6e6b5405d99a", "text": "I am an entrepreneur from China "} +{"id": "0000974", "video_name": "11253bd8-cefa-5152-9a3b-1211d8cdb767", "text": "surrounded by an assortment of pets and animals, including dogs, cats, chickens, and pigeons. camera zoom in,cinematic video, "} +{"id": "0000975", "video_name": "112b444a-e505-50ad-b8ad-bfedd81f843c", "text": "diabolical 4k realistic creature slowly approaching camera down a narrow hospital hallway "} +{"id": "0000976", "video_name": "112ba795-03a1-5546-9ec0-d4d763ba084f", "text": "customer service agent talking to a customer with simle, her desktop has a wide screen showing the customer profile. "} +{"id": "0000977", "video_name": "1132c629-aa8c-5f5f-808f-1ca181b5a54c", "text": "girl floating in a misty lake, eerie, atmospheric "} +{"id": "0000978", "video_name": "1138363e-4884-5dfd-884c-f14db1650001", "text": "human, soft focus, large shot, areal shot, three humans with a glass helmet full of mushrooms, mosse, grass and flowers, dress with a plastic dress. Flying over a grey sea, black beach, photorealistic, livid light. "} +{"id": "0000979", "video_name": "113b28c8-5b04-593b-a5b4-464414b4a7d3", "text": "A healthcare worker tending to gas victims "} +{"id": "0000980", "video_name": "113db62f-97a3-59ed-92ee-c777ab2edc21", "text": "an explosion in the dark space, neon colors, fantasy "} +{"id": "0000981", "video_name": "113f9142-467f-510b-a766-676b40d8f27c", "text": "Once upon a time in a small coastal town, Emily, a talented marine biologist, crossed paths with Jake, a passionate surfer and artist. Their connection was instantaneous as they bonded over their shared love for the ocean and its mysteries. With each passing wave and sunset, their feelings for each other grew deeper, like the tide pulling them together "} +{"id": "0000982", "video_name": "1140f84a-d94e-5ff8-9247-4f061e64fd05", "text": "train running on a track scene is hill. 3d cartoon effect "} +{"id": "0000983", "video_name": "114d665c-c744-5036-a872-6215df5c23a9", "text": "fantasy dark forest, girl with black hair in a red dress "} +{"id": "0000984", "video_name": "114f991a-b976-54d0-a708-32182f40a755", "text": "Petals and splashing Message: water (Font: MODERN) "} +{"id": "0000985", "video_name": "1155dcbb-b34c-5506-8afd-89f543ea58ff", "text": "woman from back navigate on tinder "} +{"id": "0000986", "video_name": "11581f87-abfa-54fc-94b1-aa6bf22a3903", "text": "The riverside fireworks show should have mountains, water, and a crowd "} +{"id": "0000987", "video_name": "115b5f98-b8df-57de-aabe-a3313371b5dc", "text": "Chinese Muslim traders doing business in 7th century market , 4k resolution, photo realistic images, 9:16 aspect ratio "} +{"id": "0000988", "video_name": "1160a9f8-acc0-54cf-9658-0860e39265c2", "text": "organic compounds could come together and form more complex molecules "} +{"id": "0000989", "video_name": "11656abd-3ffa-54b9-bc62-5a4ef5279a98", "text": "futuristic backdrop with a holographic image of planet Earth floating in the center. "} +{"id": "0000990", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "a fly landed on a jam jar "} +{"id": "0000991", "video_name": "1167d5fc-9e4d-52bc-a92c-29a020afb7db", "text": "cat sing violin in new york "} +{"id": "0000992", "video_name": "116925c3-b9af-56bb-a29f-6a9302fb49f0", "text": "an average citizen in colombia talking about politics "} +{"id": "0000993", "video_name": "116f354e-f26d-5e52-98fc-7f5f6188d977", "text": "a woman sits on a train seat that runs close to the window "} +{"id": "0000994", "video_name": "117314ea-8f93-561c-a393-4b49c3d3dc2b", "text": "One year old Shreeansh lying in his crib, fast asleep, with a soft glow emanating from his room. The image transitions to a view of the night sky, filled with twinkling stars. "} +{"id": "0000995", "video_name": "1176e0c1-dc53-568a-b27a-da3f468cb4dd", "text": "People are cheering Message: 1 Attachment "} +{"id": "0000996", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "4 hijabi women racing each other on horses on a race track "} +{"id": "0000997", "video_name": "117ef8e2-d916-5a49-9579-f814f6e35459", "text": "a man working hard and he is try do deffrent on envirmaentb bild around the stuvation live video "} +{"id": "0000998", "video_name": "118af95f-c32b-555d-bfe3-07f51c0d3cd2", "text": "vault b anantha padmanaba swamy temple "} +{"id": "0000999", "video_name": "118c3438-648d-5bbd-8258-11cb2c0280f2", "text": "Journey of Renewal: Life is full of opportunities for renewal, and hope teaches us that every day is a chance for growth and transformation. Message: 1 Attachment "} +{"id": "0001000", "video_name": "118e45d4-74ae-5b8e-a04a-823e94e2ffd8", "text": "a beautiful asian girl, wearing a skirt, walking to the left, in a room with traditional medicines, video ratio 9:16, video length 10s. "} +{"id": "0001001", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "black hair trunks becoming super saiyan anime "} +{"id": "0001002", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "a candle in the night with a full moon "} +{"id": "0001003", "video_name": "119ef5d0-b1b8-5018-b517-1f0fbe00bb06", "text": "weird luxurious island floating in a cloudy sky "} +{"id": "0001004", "video_name": "11ae3cbe-22ae-5cc7-b2b1-d95a8d727b9d", "text": "On a dark night, there are stars in the sky, bonfires on the beach, and fishing boats on the sea. "} +{"id": "0001005", "video_name": "11b4f4da-1ab2-5a46-810b-d1b983b00e9c", "text": "Made out of trees and leaves Message: UMIKA DHRUV (Font: MODERN) "} +{"id": "0001006", "video_name": "11b7fc84-c934-5a15-9b6a-e624f230d644", "text": "a 1965 polaroid picture in muted colors of a dog dressed in a tutu dancing ballet "} +{"id": "0001007", "video_name": "11c6af40-9f8a-5ebc-8527-52b3a2a34144", "text": "a storm in hyper quality, high quality details "} +{"id": "0001008", "video_name": "11c6e3b1-9191-5c4f-b977-b1b5b7c36a4c", "text": "A woman is driving her car towards a forest on top of the hill "} +{"id": "0001009", "video_name": "11d028e8-69a4-546d-96df-8e4ad972b12b", "text": "video with snow falling and snow visible "} +{"id": "0001010", "video_name": "11db050a-3ec1-5a3a-b717-bad961b18cc4", "text": "a man dressed in winter clothes looking up at the sky with mouth open in awe in a city snowing, winter "} +{"id": "0001011", "video_name": "11dd29c8-5f32-5da2-b5d8-18d56237738d", "text": "capybara and duck swiming in bath "} +{"id": "0001012", "video_name": "11e3ab91-6a02-5107-a627-cab0f5beb0c4", "text": "bike has explosive growth of new bikes "} +{"id": "0001013", "video_name": "11f257e1-a25e-5465-99ee-74e33179b466", "text": "Years ago, some animals lived in a dense forest. "} +{"id": "0001014", "video_name": "11f84e04-0afe-51aa-93f4-e5175623080c", "text": "gold parts pealing off the black statue "} +{"id": "0001015", "video_name": "11f8bc27-6b93-5048-80e1-f225a5b75b45", "text": "The old tailor who says this is the wheel "} +{"id": "0001016", "video_name": "12011889-025f-5bd4-a6c2-fe5b53791e87", "text": "Top quality, woman with straw hat, white dress, standing on beach looking out over wide ocean, natural light, cinematic. "} +{"id": "0001017", "video_name": "1202037b-fd3e-5529-9f0b-79344873234c", "text": "An ancient Roman soldier plays with his mobile phone next to a tank "} +{"id": "0001018", "video_name": "12067191-78c3-5270-8b93-bdb0ee742809", "text": "Aurora borealis with red, yellow and blue "} +{"id": "0001019", "video_name": "120829a2-9060-5ffb-9491-31cad6e6c65a", "text": "turtle Terry helping a ladybug cross a path, with other animals cheering him on. "} +{"id": "0001020", "video_name": "120acd93-8172-5af0-9ccb-7778684c6587", "text": "chicago skyline at night with snow falling in the background "} +{"id": "0001021", "video_name": "120d06bd-0546-5815-95be-9826db5e6743", "text": "a man is turning into jellifish "} +{"id": "0001022", "video_name": "12106ef6-e608-5b7b-8119-e1e14f368fbb", "text": "2 men in futuristic suit fighting in an anime style "} +{"id": "0001023", "video_name": "1215f9d3-8c12-5d96-a897-dc500fe3d0ce", "text": "Dwarves like from the movie The Lord of the Rings in dynamic, realistic movement "} +{"id": "0001024", "video_name": "12160338-fa53-507f-9817-07576b104621", "text": "Aeolus, god of wind landing face first "} +{"id": "0001025", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "inside of the forest, mountian behind, daytime, cartoon, 16:9 "} +{"id": "0001026", "video_name": "122cf5de-01a9-5e67-b221-2db2dd8d0aef", "text": "123456A group of cute pandas are rowing a boat, with a side shot of the river splashing around the boat "} +{"id": "0001027", "video_name": "122df861-89eb-5526-9dbd-c7d3f8ea0396", "text": "Colors shifted, and the air seemed to shimmer with enchantment. Before fiery red haired little girl stood a magnificent archway covered in ivy and adorned with glowing symbols. "} +{"id": "0001028", "video_name": "1230f83b-ce2e-5d9a-9548-71959fdd5a61", "text": "city, house, building, tree, rivers, lots of fog, anime style "} +{"id": "0001029", "video_name": "1232b6d5-36b5-5bbe-bd8a-e4d0e9d3aa4c", "text": "anime cat girl with black hair and tattoos waving hello "} +{"id": "0001030", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "enhance the image, color it, and put it in a sunny landscape Message: 1 Attachment "} +{"id": "0001031", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "Sun rising in mountain 3d animated "} +{"id": "0001032", "video_name": "12431550-41cd-5135-92ff-8fe4f7618ee0", "text": "the strange creatures keep moving and floating away, towards the camera, side to side, and new strange creatures are appearing all of the time. They bark and shout, bearing teeth and blinking profusely while looking around confusedly. Twisting and turning ljke a manatee, they swim in and out of frame. "} +{"id": "0001033", "video_name": "1245860f-2d38-507d-946e-f5abfdcc38ea", "text": "group of birds on a tree "} +{"id": "0001034", "video_name": "12477482-d973-52e3-9d45-4172b0a149b4", "text": "Day, a young guy in a cafe, drinking coffee, large windows behind the guy, a pedestrian crossing is faintly visible in the windows, people are walking along the pedestrian crossing, cars are standing, a large monstera flower is standing behind the guy, the guy is sitting sideways to the camera, his legs are not visible, the table is standing sideways to the camera, an elk is standing in front of the guy, the elk has big antlers, "} +{"id": "0001035", "video_name": "1248fa13-354a-5161-b53e-cd71a12ca2dd", "text": "a lady asking for vote in india for congress "} +{"id": "0001036", "video_name": "124f7ff1-e4df-5ebe-a843-9758013b0102", "text": "The darkness of the arena revealed the light of spotlights focused on the stage. The two boxers fought each other on the stage. The scene was very exciting, and the audience cheered in the audience "} +{"id": "0001037", "video_name": "125d4560-04cd-5725-a425-62f07f7336ec", "text": "lions hunting gazelle . lion running to hunt the prey , gazelle "} +{"id": "0001038", "video_name": "12651691-42d5-50ed-a429-2cd2ac855ba5", "text": "santa clauses runing while holding gifts on his back "} +{"id": "0001039", "video_name": "126d18ee-2de3-5d26-9ec5-7309f8a70550", "text": "a titan dog running towards tree, attack on titan style "} +{"id": "0001040", "video_name": "12730f91-8baf-5aa4-94a9-4fc3d0cbfc2a", "text": "Monkeys playing in Radmir RolePlay CRMP 4K Ultra HD "} +{"id": "0001041", "video_name": "12737e56-2ef1-5187-b6a3-90189521917a", "text": "Euromast in Rotterdam falling down, jetfighter attach missile on Euromast "} +{"id": "0001042", "video_name": "127657b1-12b4-5fec-aa9b-3e7ce5a6de5d", "text": "skahespherian drama staged in a commuter train "} +{"id": "0001043", "video_name": "12780589-3e5b-5a91-b79f-2d2cb1d661a4", "text": "Excited at the prospect of having a friend and learning from the wise lion, Robbie agreed. "} +{"id": "0001044", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "wide angle of heroic shot of city and mysterious sillouhette hooded feminine figure creature coming out of shadows, demonic cinematic lighting, crushed shadows and blue moonlight, yellow street lamps in the distance, high quality, 4K, "} +{"id": "0001045", "video_name": "12866f2c-cc92-51d8-96c4-b42f3bfa5073", "text": "a cat dressed as a ninja , 4k "} +{"id": "0001046", "video_name": "128849e9-5af7-56d5-b5be-2f3aa79b3d11", "text": "gorilla talking to a young 4 year old male and the boy is looking at him with big eyes as he wants to hear everything the gorilla is teaching him. they are sitting on a tree branch "} +{"id": "0001047", "video_name": "128f5040-3e8b-5124-818d-b4b2115bed45", "text": "cinematic aerial view of a black vintage car moving in a wreckless speed on a straight road by a city. The area is full of city lights "} +{"id": "0001048", "video_name": "129177a9-ffd5-56f2-b86f-d960c157e986", "text": "Young man and woman go on a date "} +{"id": "0001049", "video_name": "1296b188-cff3-5168-a48f-4d348a54f9a4", "text": "A neon city at night. A light straight blonde haired girl with light brown eyes and a short wavy dark brown haired girl with dark brown eyes are walking down the street, hand in hand, viewed from behind. The city lights are reflected in their hair and the neon lights cast colorful shadows on their bodies. 32k resolution. Dramatic lighting Frame size: 16:9 fps:24 "} +{"id": "0001050", "video_name": "1298eb9c-2384-5e4c-a650-034f3c021783", "text": "The camera begins slowly across a busy food street, gradually focusing on a restaurant sign "} +{"id": "0001051", "video_name": "12a107a0-1c23-5bd0-a133-568a609f29dc", "text": ": The underwater gateway transports she to a breathtaking underwater world filled with bioluminescent creatures and forgotten civilizations "} +{"id": "0001052", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "wolf are walking in the forst "} +{"id": "0001053", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "a super car with 2 doors cornering at at hill "} +{"id": "0001054", "video_name": "12b706a6-3122-5ae8-ab86-5a66e36c3e2d", "text": "zero point energy Aldebaran UFO moving through a portal in the ocean, 1920s silent film, 8mm, blurry, expired film "} +{"id": "0001055", "video_name": "12b70d7e-1fa2-5cbc-a39b-f6963ebcda4b", "text": "A clever explorer, after much thought, finds the answer and successfully opens the chest. "} +{"id": "0001056", "video_name": "12beac24-1b2f-56fd-a0b4-4d771ccdc2b5", "text": "a stormtroop is fighting with a alien robot "} +{"id": "0001057", "video_name": "12c232eb-4d74-5a13-a5a2-ea2c3f0096b1", "text": "Just like climbing a mountain, life is not easy. It requires determination, strength, and resilience. But with each step we take, we become stronger and more prepared for what lies ahead. "} +{"id": "0001058", "video_name": "12c435fc-84cb-5bf0-8d39-283f243bb7f6", "text": "a young girl study on her table in her room near the window and study usiing her notebook in the night, the weather is rainy and the place is calm and her white cat sleeps on the bed "} +{"id": "0001059", "video_name": "12c46cd1-3241-599d-8099-0bcdeb2887a2", "text": "boy sleeping in wood house , sun in the window, winter , ar 16:9 , hd video "} +{"id": "0001060", "video_name": "12ccf310-44b0-5c71-b146-002792affe7f", "text": "3D animation of a bee on a beautiful meadow "} +{"id": "0001061", "video_name": "12cd9a0a-9736-55a6-a948-b19fb3b2bc14", "text": "Conclude with Cinderella and the prince living happily ever after. "} +{"id": "0001062", "video_name": "12ce1a97-e340-5199-8243-edc7163d9b99", "text": "a giant angry hamburger made of felt eats an actor whole, comedic scene, practical effects, funny expression "} +{"id": "0001063", "video_name": "12d18fea-7a4e-5fd5-a02b-c9e3a2a3a6e4", "text": "silent hill 2 man from monsters go pro footage fast movement "} +{"id": "0001064", "video_name": "12dafa22-53a1-5d89-980d-c8d205e6c3b0", "text": "aerial view of an active volcano "} +{"id": "0001065", "video_name": "12df119c-14be-564a-96fc-43d472c7af2e", "text": "a girl walking in a forest studio ghibli anime style, cinematic slow zoom "} +{"id": "0001066", "video_name": "12e0871a-6c30-5876-92b4-62bbda2580f2", "text": "Her mouth is laughing, her eyes are happy, and the roses are moving in the background. An active little girl is laughing and is very intelligent "} +{"id": "0001067", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "it gives cars in a race where they drift in a curve one behind the other and that the video lasts 15 seconds "} +{"id": "0001068", "video_name": "12e9dcd1-33d2-5b2e-85f5-356e8144f89d", "text": "Introduction to Moonbeam: Illustrate Moonbeam, the magical cat, with a twinkle in her eyes, discovering the dusty teddy bear, Sunny, under the old oak tree in the town of Whispering Pines. "} +{"id": "0001069", "video_name": "12f91544-3064-5c0f-ada0-2e5639c21fc9", "text": "ship with writed name on the hull \u201cAdelia\u201d, under Cyprus flag Message: petronav (Font: MODERN) "} +{"id": "0001070", "video_name": "12fd26fd-0fa0-5a74-a47e-72e3e4980afa", "text": "dark skin man working at a cafe in Paris in 1950s "} +{"id": "0001071", "video_name": "12fe4320-ccbc-574b-9cfd-0983b420f88c", "text": "students are cool street dancing battle in school, cyberpunk "} +{"id": "0001072", "video_name": "13008c4b-a001-58dc-9cf4-d8322efe2a86", "text": "IMAGEN DEL MAR Y LA ORILLA CON AGUAS TRANQUILAS Y RELAJANTES EN UN ATARDECER DE FONDO, MOVIMIENTO DEL AGUA "} +{"id": "0001073", "video_name": "13090dac-5b63-5f02-9c07-592746b3be35", "text": "The space Fleet is storming the planet "} +{"id": "0001074", "video_name": "130d92b7-5675-501c-b9db-3dfd4bfb14c5", "text": "astronauts walking in a crowded road, 3D, realistic "} +{"id": "0001075", "video_name": "1310ae21-22a1-54a5-acaf-6caadefabb35", "text": "man breakdance in front of protest "} +{"id": "0001076", "video_name": "1312817b-d052-5197-b7f5-cc02460be1b9", "text": "Clownfish swim in the ocean, sun shines through the water "} +{"id": "0001077", "video_name": "131d32b3-cbf8-58b5-b807-e3b07259c519", "text": "princess she was very kind and beautiful, "} +{"id": "0001078", "video_name": "13224ca1-2111-568b-8849-8071a4b434d2", "text": "create a digital child with dancing and enjoying snowfall "} +{"id": "0001079", "video_name": "13227ce7-b614-5ca7-9f93-f4783fcccc4d", "text": "give me a girl image who cradles the butterfly in her hands. "} +{"id": "0001080", "video_name": "1325c59d-459e-5e68-833e-393acf3c5c3d", "text": "monster soda magic dancer half horse person "} +{"id": "0001081", "video_name": "132a90a9-c995-5e18-b978-4cb0e5d224f2", "text": "Part 3: The Enigma Unfolds (The screen darkens, fades again, the village scene is empty, the wind is gloomy) Narrator (Voiceover): But on the fateful morning of December 25, 1997, Ma Navidad was engulfed in an eerie silence. The rising sun unveiled a village devoid of life. "} +{"id": "0001082", "video_name": "132cf0ab-c9cd-53bc-b42e-e3d2514db184", "text": "tv sitting on table playing alice in wonderland "} +{"id": "0001083", "video_name": "132d2bc9-2d16-5f15-bb2a-5f544236ee6d", "text": "Create an image that symbolizes the process of amplifying controversial content on social media. "} +{"id": "0001084", "video_name": "13368cea-fc7d-520a-91ff-a1099601fb6c", "text": "Generate an image of a young woman with blond hair sitting alone in her dimly lit bedroom furnished in steampunk decore. She is almostnaked, with tears streaming down her face. Her body is showing a nice tone. "} +{"id": "0001085", "video_name": "1337512c-ed6c-5956-8939-2e2eb7e5cf19", "text": "A beautiful sacred geomtry floating in space "} +{"id": "0001086", "video_name": "133774bd-debf-584b-a177-8401ddc7d974", "text": "foggy rays of light through the bars "} +{"id": "0001087", "video_name": "1345e000-d887-559a-af25-cdd677d4deef", "text": "Bumblebee from Transformers is angrily dancing. "} +{"id": "0001088", "video_name": "1346a238-5bfc-5e93-8f7b-a8b6f7502707", "text": "a sheet character anime style in different angles "} +{"id": "0001089", "video_name": "134d1270-b4a2-586c-8e13-ada39282d33e", "text": "Fireworks Technician setting up the explossives to the mortars "} +{"id": "0001090", "video_name": "134d6ab7-7991-5d40-a77a-9bfcb4acac7b", "text": "a video on a elephant with no trunk in woods, creepy surrounding and the light of moon only falls on him "} +{"id": "0001091", "video_name": "134dd6e5-dfd7-5106-b0a5-1710400488df", "text": "media lab center, monitors and computers with retro cyper punk, 4k, cinematic "} +{"id": "0001092", "video_name": "1353d20e-121b-54c1-9ea3-ad824b394d44", "text": "a night market in the streets of Mumbai Message: SADUBAS (Font: MODERN) "} +{"id": "0001093", "video_name": "13569ab5-29b6-5d57-abe6-5d35a85b4510", "text": "Explore the theme of resilience in the face of sadness through a video montage, featuring characters overcoming their emotional struggles and finding strength in vulnerability "} +{"id": "0001094", "video_name": "13586cf1-83ce-57d6-8630-087b05b44725", "text": "Year after year, Jack grew wealthy, but he no longer did the hard work himself; he relied on managing his farm to earn money. "} +{"id": "0001095", "video_name": "135c6bfc-a63c-5619-b098-868df44e93d2", "text": "Elk pulled a sled and sat on top of it with a little girl holding a dachshund dog,Christmas "} +{"id": "0001096", "video_name": "135d719c-77ca-5fc7-a115-83f3ad20b48d", "text": "Learning Justice and Burial Etiquette from Crows: Valuable Lessons from the Avian World "} +{"id": "0001097", "video_name": "135fe871-e158-56c4-8ab1-5e60066e77cc", "text": "DIY ideas for affordable and stylish decor "} +{"id": "0001098", "video_name": "1363303e-d0b2-5aca-aba8-19647ec95f91", "text": "a bride walks down the aisle in a large cathedral toward her soon to be husband "} +{"id": "0001099", "video_name": "1363b964-b717-5886-ae96-163d707a315e", "text": "a leaf flies in the fire across the field Message: 1 Attachment "} +{"id": "0001100", "video_name": "1369ab63-9754-5882-a607-2894335ba92e", "text": "hyper realistic santa claus dressed in tropical clothes realizing he forgot to bring the gifts "} +{"id": "0001101", "video_name": "136a1463-7ec1-58ef-9281-3e53e9c738f2", "text": "Generate 2 little anime boys, one is 6 years old and the other is 2 years old. two playing "} +{"id": "0001102", "video_name": "136a3e45-c2d6-543a-9ff7-2a54aa41af43", "text": "He said that he had used the magic belt to transform into a wolf, but that it had been stolen from him by the hunters who captured him. "} +{"id": "0001103", "video_name": "136d69fb-91a8-50bb-b306-fd1e972c0ecf", "text": "football players from fakel voronezh team Message: Alexey Nekrasov (Font: MODERN) "} +{"id": "0001104", "video_name": "13710a7d-f9a9-53a9-a318-4c1c84a8758e", "text": "Naruto dress as mariachi playing mariachi Music in mexican party, cake, conffetis, dance, people, bright scene "} +{"id": "0001105", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "In a quiet village surrounded by fields of green, two friends, a brave boy and a clever girl, lived their days dreaming of adventures. "} +{"id": "0001106", "video_name": "13753b0e-2722-5a4c-aece-3d052bfba36c", "text": "alion wake up angry and looking at mouse "} +{"id": "0001107", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "Scene: A traveler is walking alone in a lush forest "} +{"id": "0001108", "video_name": "137abeb0-08fb-54c1-9e3c-fd8fe43dbde5", "text": "oniric vision of a old city in jodorowsky style "} +{"id": "0001109", "video_name": "1388a2f4-140c-5ee2-8d03-5079a0d1f6e8", "text": "brooklym bridge on fire cinematic cinematographic movie scene "} +{"id": "0001110", "video_name": "138cc1b8-b7df-5b9f-a756-a1ebdd0f0d35", "text": "Girl with scissors cuts the rose, the mom smiles and girl holding bag dances and smiles. Bird in sky flies across the page "} +{"id": "0001111", "video_name": "138e2ddb-35f8-5d95-80fc-5349cf6eca13", "text": "Aerial views of the colorful houses of Cinque Terre "} +{"id": "0001112", "video_name": "1391745d-3b07-5994-8fe8-bb2de8f7f051", "text": "the most perfect image you can generate "} +{"id": "0001113", "video_name": "139946dd-e4dc-5d47-90f8-c5f64eb5f905", "text": "two girls sitting at the edge of a moutain watching the northern lights "} +{"id": "0001114", "video_name": "139f05e5-1ff3-525e-93b6-3a4f7c4ddacd", "text": "A map with a dotted line showing the journey from the forest to the city. "} +{"id": "0001115", "video_name": "13a3925f-c919-5e69-aa6b-e55990c85f76", "text": "3d cartoon the god speak with old man with burlap cloth "} +{"id": "0001116", "video_name": "13a4dafa-a2d8-500c-a642-758699e387d1", "text": "Illustrate Max standing confidently, surrounded by his parents, with academic achievements and a smartphone, signifying his successful journey towards balance and academic excellence. "} +{"id": "0001117", "video_name": "13a884ac-76f8-503d-9131-1bf29c58126c", "text": "a women with pink hair and white skin with bikini running in Iceland "} +{"id": "0001118", "video_name": "13ae28c4-edae-5a10-b36d-12746b140b46", "text": "A woman dressed in red style The story with a baby in a carrier "} +{"id": "0001119", "video_name": "13b3f5d0-cfc5-5914-9295-39eeb3db8f28", "text": "wide shot, cinematic style, photorealistic, man walks infront of exterior diner at night, teal and orange with haze "} +{"id": "0001120", "video_name": "13b75eba-e1a9-5f3b-aaf9-1732bde6ce96", "text": "ultra realistic 8k golden and brown colours. A woman with long golden blonde hair lies on the floor of a sparsely decorated room "} +{"id": "0001121", "video_name": "13bd94be-6b7e-54b6-9f58-a699b0bc6cc6", "text": "Zara and squirrels dancing around the Giggleberry tree, their laughter filling the air, creating a joyous ambiance. "} +{"id": "0001122", "video_name": "13c4fd37-7e99-5353-a592-2a4c6c469027", "text": "morden city, Finance Building, city view "} +{"id": "0001123", "video_name": "13c7b389-15f3-5909-9d53-7a02a3c67d2b", "text": "video montage of valorant clips 1 minute long "} +{"id": "0001124", "video_name": "13c9fd41-a836-5bfc-bd3e-be3582670989", "text": "symbolizes the importance of divine intervention and connection with the sacred to give life and meaning to existence "} +{"id": "0001125", "video_name": "13ca4b38-06ea-5148-8667-d0988feb3b3e", "text": "beautiful asian lady in a dress dancing "} +{"id": "0001126", "video_name": "13cb78dc-ca5a-5da2-b22a-a55c0318dbd1", "text": "Residents of the city at night "} +{"id": "0001127", "video_name": "13d0216e-5796-5f69-adde-b8f299fb3244", "text": "Kobe smiles and waves at the camera on the helicopter. "} +{"id": "0001128", "video_name": "13d623bc-effd-51c8-ba4c-9e050ccbd85b", "text": "a cyborg warrior girl on a flying carpet "} +{"id": "0001129", "video_name": "13db0004-daae-5383-8405-5faf0be3b31b", "text": "Lily carrying a pail of fresh milk from the barn, her apron dotted with wildflowers. "} +{"id": "0001130", "video_name": "13de93c1-c498-5aa8-b976-50222fe7a44e", "text": "Four people make a plan, dressed in astronaut suits\u060c HD 8K resolution "} +{"id": "0001131", "video_name": "13e796f9-be9f-58d4-b889-b3182b99ffd4", "text": "solar home converter day to night "} +{"id": "0001132", "video_name": "13ee57e1-8414-5f9e-9220-2f8e175fac1b", "text": "It was a night like any other when, deep within his coffin, a man vampire felt a resurgence of strength. His senses sharpened, and a hunger beyond mortal comprehension gnawed at him. As his eyelids fluttered open, centuries of dust and cobwebs fell away. "} +{"id": "0001133", "video_name": "13f2b767-3c9a-56e6-88ec-cbf583ab498a", "text": "a social video about how people affect the air "} +{"id": "0001134", "video_name": "13f7cd3a-e5b1-52d2-a7be-fb00bd3e6dba", "text": "The guy in this photo in a porsche "} +{"id": "0001135", "video_name": "13fa768a-6d14-594f-be9b-c62ba2a2631e", "text": "beatifubeautiful young girl and boy love story with bus "} +{"id": "0001136", "video_name": "140b393f-a358-55c1-8a31-912675480783", "text": "On a rainy day, a high school couple ran back to the teaching building to take shelter from the rain "} +{"id": "0001137", "video_name": "140b5014-bb69-51c4-b9af-7db484dff5c0", "text": "Video design for the YouTube channel "} +{"id": "0001138", "video_name": "140c766e-2fd0-520a-88fc-c5bc49150183", "text": "film still of bruce wayne waking up at 5 am in 2024 movie scene "} +{"id": "0001139", "video_name": "140f8cf0-7ce5-5a15-920d-116dd5619efe", "text": "Pike in the water patiently waiting for the fish and then chatching small fish "} +{"id": "0001140", "video_name": "141eb2df-7940-5b0f-af86-46ed421b6369", "text": "tank rolls in and out of screen "} +{"id": "0001141", "video_name": "1420bf97-f1fc-5000-ad23-e039090d7345", "text": "Chinese temples with a solemn and mysterious appearance "} +{"id": "0001142", "video_name": "144183d1-f35c-5dd4-9d44-cc4fda85a31d", "text": "The Labyrinth of Luminance loomed behind them, its enigmatic depths concealing the challenges they had overcome. "} +{"id": "0001143", "video_name": "144c0963-d6f7-50f8-8b8d-c5d02bdb8e8b", "text": "cinematic shot of a Greek warriors coming with a letter "} +{"id": "0001144", "video_name": "144e6006-5e33-5d88-be07-3228fbeb24bb", "text": "Open with a captivating shot of a Fragrance Square logo gently fading in against a backdrop of a sophisticated fragrance bottle. "} +{"id": "0001145", "video_name": "14554896-ab11-53cf-a714-5ba49c812c0a", "text": "As days passed, the villagers noticed tiny sprouts emerging from the ground. "} +{"id": "0001146", "video_name": "1459c25a-f0de-5870-9e6f-91494849a070", "text": "The country of Regulus is situated around the poor mountains, and the people of this country live long lives "} +{"id": "0001147", "video_name": "145a83ce-cceb-56e7-a5fa-f21d6c1b3f55", "text": "crack covered flowers grawing on the wall "} +{"id": "0001148", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "A young artist struggling to find their creative inspiration in a bustling city, feeling lost and disconnected from their passion for art. "} +{"id": "0001149", "video_name": "145cfd59-ea46-5a3e-b932-4a07c72a9e3a", "text": "a boy playing football in playground with a bin sunshine "} +{"id": "0001150", "video_name": "145d78e1-569a-5e7d-9e66-ceda0c0e1db5", "text": "a very cute and happy young women age 21year, perfect figure and highly attractive wearing western outfits coming towards the screen "} +{"id": "0001151", "video_name": "145d8c26-c3d2-53af-835b-3789ec33c435", "text": "A visually stunning and cinematic representation of a futuristic planet filled with advanced technology and humans. The scene is captured in a widescreen 21:9 aspect ratio, with breathtaking visuals and attention to detail. The setting is reminiscent of a science fiction movie, with sleek and innovative architecture, glowing neon lights, and bustling activity. The image portrays a harmonious coexistence of humans and futuristic technology, creating a sense of awe and wonder. "} +{"id": "0001152", "video_name": "1461630b-9d82-546e-89a8-b177da33880f", "text": "a lush green forest river gently flowed "} +{"id": "0001153", "video_name": "14645969-4407-506f-b23e-263b884debb7", "text": "beautiful landscape after Armageddon, day light, a blonde Russian man in space uniform is walking towards the camera. Very realistic. "} +{"id": "0001154", "video_name": "1469d20d-9d54-5f42-b6f3-bad01774b309", "text": "an alien with large sparkling eyes and shimmering skin, enters the scene as his spaceship lands on Earth "} +{"id": "0001155", "video_name": "146a9be6-cc65-554f-9029-421c4f056dbd", "text": "a village with a clouddy sky Message: PENDEJO (Font: MODERN) "} +{"id": "0001156", "video_name": "146dab1b-2092-5d5d-a07e-b0f8df3ce025", "text": "victorias secret supermodel walking in times square "} +{"id": "0001157", "video_name": "1478354f-108d-5a14-9896-34a214e07026", "text": "they meet a magician who tells them about his companion 3d animation scene "} +{"id": "0001158", "video_name": "147b4ced-5929-5071-b831-cf170de07083", "text": "father sitting on a chair looking to us speaking in a small scary room with little light "} +{"id": "0001159", "video_name": "147b7579-d610-56f8-b590-28d20a16b616", "text": "In an old antique shop, a dusty music box sat untouched for years "} +{"id": "0001160", "video_name": "147d05c3-10fc-57cd-9e11-f7f4ca7ff251", "text": "drawing and elephant seal in the breezy Arctic "} +{"id": "0001161", "video_name": "147efbec-4f94-5aa5-82cb-82f8da6c2b4a", "text": "The third time I have died is now. Two years that have had unexpected turns and my mind had to create cays due to the blows it had. This death was the most conscious compared to the others because in the first I was discovering my personality, in the second I transmitted it through art, but this time I had to be firm and continue moving forward without my fears or fantasies subduing me. "} +{"id": "0001162", "video_name": "147f56f9-a777-5167-a14b-f6046e2df49c", "text": "timelapse of the construction of an Aztec pyramid made by Aztecs stone by stone "} +{"id": "0001163", "video_name": "14899dcb-0f98-5ee6-b320-17a9521e6a12", "text": "BTS sitting and playing at the outdoor table "} +{"id": "0001164", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "A red gift box with red lanterns, couplets and fireworks in the background, the Spring Festival atmosphere. The gift box has a Chinese dragon pattern, a gold Chinese dragon. Open the gift box, there are red dates, bacon, cakes and so on. The gift box is closed, there are firecrackers, red envelopes and blooming plum blossoms, the Spring Festival atmosphere. "} +{"id": "0001165", "video_name": "14938434-bdd5-58cd-991e-1bb026e3ae7b", "text": "sequoia tree view from a person "} +{"id": "0001166", "video_name": "149dd958-73b4-5d57-a4a7-27455c139ab7", "text": "very interesting scene, cinematic camera motion "} +{"id": "0001167", "video_name": "149fe68e-3a9c-50fa-99fd-725fc6821fde", "text": "From rails on the ground to routes in the sky "} +{"id": "0001168", "video_name": "14a62521-4e24-5265-a6c8-884005559a09", "text": "Have you ever wondered what the world would be like if robots replaced human workers in every industry? "} +{"id": "0001169", "video_name": "14b09e55-e494-5361-ba53-0d8553dbf68a", "text": "A kid guitar hero jaming on a huge stage in concert with pyrogliphic , lights fog wind machine amps , rockers dancing in front of the stage al sureal , cartoon style "} +{"id": "0001170", "video_name": "14b5f44b-4112-5b51-8eb7-4d0fe287658e", "text": "Rowing, water slightly flowing, moving left, ink painting, wooden boat, background still Message: 1 Attachment "} +{"id": "0001171", "video_name": "14b797c0-4434-5b59-b8a4-e82445081069", "text": "a user testing plateform and doing sign up "} +{"id": "0001172", "video_name": "14bae828-68b6-5ebc-b8d1-e2b569b604a1", "text": "The Reflective Spirits are not merely transmitting agents; they are retentive personalities as well. Their offspring, the seconaphim, are also retentive or record personalities. "} +{"id": "0001173", "video_name": "14bb083b-8736-55ee-81ec-60f7f889c1f2", "text": "1girl, stormy emotions, turbulent thoughts, intense expression, messy hair, clenched fists, dark clouds, lightning, thunder, dramatic lighting, strong winds, raindrops, splashes of water, chaotic background, unsettled atmosphere, distressed clothing, wet clothes, fierce gaze, determined stance, conflicted emotions, "} +{"id": "0001174", "video_name": "14befd0c-270f-5589-9144-6c5b22e78796", "text": "dragon ball z style anime fight "} +{"id": "0001175", "video_name": "14c1d79d-0de7-5386-a875-699d39b2e937", "text": "Generate a video showing a child dancing with many people in a park. "} +{"id": "0001176", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "A person leaving the dimension 3 "} +{"id": "0001177", "video_name": "14d09b0e-504d-57e4-b6aa-3cd8d9681db2", "text": "make 3d animated two mice and frog eating nuts and cheese "} +{"id": "0001178", "video_name": "14d4690d-2b6d-5231-89a6-5ea93f7ba5e5", "text": "a farm girl in the style of studio ghibli "} +{"id": "0001179", "video_name": "14e30a94-2ad7-5103-9069-1ec0f58fa268", "text": "Floating in mid air, office, surrounded by papers "} +{"id": "0001180", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "boy and girl feeling shy and smiling gently, camera zoom, breeze, objects in the image moving slowly due to breeze Message: 1 Attachment "} +{"id": "0001181", "video_name": "14e8a690-504f-5199-a4d7-9d3f7733e48b", "text": "girl characters cartoon, yellow hair , thin body, green eyes,12 year old, back photo is green "} +{"id": "0001182", "video_name": "14ed0916-fdf1-59ae-8bbf-26b094f78014", "text": "man wearing spectacles in a UFO spaceship "} +{"id": "0001183", "video_name": "14ed8bf3-1271-561e-8b26-b14a6122193b", "text": "a female swimming in the style of monet "} +{"id": "0001184", "video_name": "14efeb8c-37cd-5a14-818e-00164b4ded4c", "text": "a man holding is chest as a river is oozing out from his heart. Fantasy. Imagination. "} +{"id": "0001185", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "Trinity Morpheus and Neo hack the Matrix "} +{"id": "0001186", "video_name": "14f39c51-77f4-5a98-9905-831b36266571", "text": "harry potter talking with the durslay under the rain, with and unbrella which silhouette outline is glowing "} +{"id": "0001187", "video_name": "14fd1971-a45d-5acb-b558-d740f95cdfec", "text": "max movement, cinematic, A futuristic city, reality and digital seamlessly intertwine. "} +{"id": "0001188", "video_name": "15062059-12d3-54dc-9e1c-f52e26235d85", "text": "a closeup portrait of a female warrior blinking and moving slowly towards the camera in the aspect ratio 9:16 "} +{"id": "0001189", "video_name": "150f80d4-19f2-5e1f-b72b-c92f811570ed", "text": "short animation cinematic style of Sphinx cat sitting on a carroof while driving, scared big eyes, in a big crowdy busy, neon sign city at night "} +{"id": "0001190", "video_name": "151117e5-8489-5725-ad8f-625ff80bb040", "text": "Clinging onto the rope, Tom Cruise "} +{"id": "0001191", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "robots marching down the street in Michigan "} +{"id": "0001192", "video_name": "151c58b4-d1f8-58f5-b834-800f83bffc50", "text": "French Artillery firing out upon Prussian forces 1870, 4K, High Resolution "} +{"id": "0001193", "video_name": "151dddab-6ddb-5a91-ad16-7796955c1adb", "text": "Generate stunning and imaginative landscapes filled with floating islands, mystical creatures, colorful skies, or other elements inspired by fantasy worlds. "} +{"id": "0001194", "video_name": "152eda01-aaba-53b9-a8e9-d592deec5961", "text": "Gandalf talking with Bilbo Baggins, cinematic slow zoom, clouds moves, bright day, green garden "} +{"id": "0001195", "video_name": "1539edf8-56f3-57e0-9408-00d4042c8050", "text": "A young girl named Lily is surrounded by three friends "} +{"id": "0001196", "video_name": "153b9044-8262-5dc4-8734-21987e437cf8", "text": "egion marching into battle, 4k, 5 minutes "} +{"id": "0001197", "video_name": "153e3e53-c9cd-5439-8d9c-1394d7aee3de", "text": "Amid the rain of 1978, a young couple takes shelter under the same overhang, leading to a conversation that could change their lives forever. "} +{"id": "0001198", "video_name": "15409a44-75ec-5e78-8162-ac1c6cbd93e7", "text": "Cinematic 8k football stadium, mosaic in the stands with a player and the champions league cup Message: SPAINTRADER (Font: MODERN) "} +{"id": "0001199", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "a reper with neon light jacket "} +{"id": "0001200", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "wide shot, man eating potato chips, smiling "} +{"id": "0001201", "video_name": "1554b6e8-7505-5d80-bd21-d215a77523f5", "text": "a time lapse of what you have been asked for the most today "} +{"id": "0001202", "video_name": "155ab3ec-907f-56cd-8392-114f8ab6843e", "text": "cinematic background of a cozy cabin interior with a fireplace "} +{"id": "0001203", "video_name": "155b3a06-23e8-5c13-8856-16ff44502ed6", "text": "initials B.M.L. as a professional logo, all gold with black trimming "} +{"id": "0001204", "video_name": "155cdf08-d9e4-52bd-ace5-6f6e23f8a778", "text": "far wide shot of a tornado ravaging a house in a thunderstorm"} +{"id": "0001205", "video_name": "15664392-2d7d-559a-a3a2-cc42879d3357", "text": "Cute kitten, walking in the snow, walking softly "} +{"id": "0001206", "video_name": "15680d1d-be34-5a43-a1a9-2136ab463b34", "text": "2 white male characters with short hair dressed in wide jeans, timberland boots and baseball jackets walk through a slum of a red city in a frontal shot. "} +{"id": "0001207", "video_name": "157091be-2442-5e33-82fc-ffea86fa3b2a", "text": "A dark green alien embryo is wrapped in a mycelium shaped like a Rotten sweet apple rotten in very large transparent huge hi tech capsule "} +{"id": "0001208", "video_name": "15718ddd-c5d8-5d4e-91d1-0e125bb0035f", "text": "horror man clicking photo at night "} +{"id": "0001209", "video_name": "157628d3-b9ab-55c9-bb7c-900cc8593d16", "text": "origin of atomic particles emerging from a singular light in pitch darkness as the camera zooms into it the particles dance around "} +{"id": "0001210", "video_name": "15779795-93e1-5dc2-9a14-87e204bd0dec", "text": "people dance techno on the street of sanfranscico tower bridge by night, aerial plan, cinematic "} +{"id": "0001211", "video_name": "15789525-f4b9-53cd-b7f3-6f57a70e339f", "text": "a man with jamesbond outfit, walking in desert, 8k resolution, dolly zoom, character looks like mahesh babu "} +{"id": "0001212", "video_name": "157ce76e-ac9a-57a5-b220-c7457acdd5d4", "text": "An elderly couple sitting in a coffee booth husband leaning towards his wife trying to say something "} +{"id": "0001213", "video_name": "157d4612-4ffe-5ee2-9a25-8aa3daf438dc", "text": "animate text and animate fire and animate beer liquid and animate face "} +{"id": "0001214", "video_name": "158020da-ff10-5869-ba9c-ad64bfb08143", "text": "animated character disney and donald duck as friends "} +{"id": "0001215", "video_name": "1588aca9-3e1b-57b4-884b-420959d65bb5", "text": "Chaos in the Streets of Berlin, Right before the Apocalypse, Minutes before nuclear biomb hits Berlin, A young Policeofficer in a fight with criminals "} +{"id": "0001216", "video_name": "158b47d5-f46c-5417-9e70-f1d433e46f1a", "text": "Venus gains the crown and dreams begin in her Qasr "} +{"id": "0001217", "video_name": "158c8e1c-b42d-543c-98fc-8f04e886f1d7", "text": "SILACAR car from china in vladivostok best price "} +{"id": "0001218", "video_name": "158c92ea-6a22-5fc0-ac67-f6eabec684c0", "text": "cyberpunk lion, hyperrealistic, 4K, low angle "} +{"id": "0001219", "video_name": "158e802e-eb39-5b36-91ff-3083cd35c213", "text": "A Chinese man working on his iPhone in a big street "} +{"id": "0001220", "video_name": "158f6487-bb3f-5a78-a3a9-0ab1c210923e", "text": "customer walking into a spa and but the worker behind the desk is not paying attention "} +{"id": "0001221", "video_name": "1598d42e-eee8-531a-8f38-0c1e458ddc50", "text": "a girl is knitting a doll that looks like a music note, steadly sitting on a cozy chair "} +{"id": "0001222", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "under the setting sun, some old men were harvesting rice in the fields "} +{"id": "0001223", "video_name": "15a46b1d-36b1-5fab-8439-1baf8fdf7870", "text": "woman being imerged into cold water tank inside dark mysterious labratory (landscape) "} +{"id": "0001224", "video_name": "15a4ac73-fe3e-5252-86f1-a8719ce51281", "text": "a cute 3D animate tiger wearing christmas costume holding popcorn and movie tickets "} +{"id": "0001225", "video_name": "15a76a73-2a1f-543a-b2f7-0d061b2ae385", "text": "3D pixar style image of a cute panda in the middle of the forest "} +{"id": "0001226", "video_name": "15ace988-f49d-5016-b9bc-7fe4dc9215cf", "text": "a small r2 d2 robot in the anicent ruins with lot of destroyed robots around disney style 8k cinematic "} +{"id": "0001227", "video_name": "15b45765-8eef-5b77-903f-569b1e2e2213", "text": "A scary mansion in a rainy day "} +{"id": "0001228", "video_name": "15bbed11-cc0c-5629-9d4a-ae6ebf203290", "text": "a fox jumping for hanging grape "} +{"id": "0001229", "video_name": "15bc1602-2803-5207-8ab4-7d1a5d7dba75", "text": "Myrzabai Shabdanov laughs alone in the desert "} +{"id": "0001230", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "a close up of a bullet zooming through the air, MATRIX, REALISTIC, ACTION, MOVIE "} +{"id": "0001231", "video_name": "15c5b44f-9fdd-5b6f-adf1-86f0fdaa0510", "text": "a mouse deer standing on the river bank, with a background of gaping crocodiles with 3D animation "} +{"id": "0001232", "video_name": "15cb7042-dadf-5944-a9a7-2edae5ad859d", "text": "a samurai with a katana and a camera in hand, realistic ,8k, HD, cinematic blockbuster "} +{"id": "0001233", "video_name": "15cd75be-994d-5b20-834b-956a5462f007", "text": "a bike go through toa tunnel "} +{"id": "0001234", "video_name": "15cfd4f6-f10f-5595-88c8-92b87935f499", "text": "man openes his house and reveals monstrous sharp teeth, cinematic shot, camera pan right "} +{"id": "0001235", "video_name": "15d42663-d337-5016-984d-f03d3b04f9cc", "text": "riding down esplanade, in the Escalade "} +{"id": "0001236", "video_name": "15d7813d-ad98-592b-9b0d-47921adb4fd4", "text": "Chris Nolan castlevania with lily Munster and Keanu reves "} +{"id": "0001237", "video_name": "15d87bf3-76ba-5029-8be3-0026dc961c65", "text": "fantasy style clownfish swimming in night sea "} +{"id": "0001238", "video_name": "15dbfda0-348c-521c-9e9a-e06e5b08b72f", "text": "A hero with everything on him. "} +{"id": "0001239", "video_name": "15ee336a-622e-5852-a312-c5fe9af4ff78", "text": "pug wear winter fantasy clothe smile walk in snow sunny day "} +{"id": "0001240", "video_name": "15f10ac9-b1c4-5cf9-941c-b4e3d222c432", "text": "a tired athelete running a race Message: never back down (Font: RETRO) "} +{"id": "0001241", "video_name": "15f27bca-d8ff-5c9d-a96c-5a1d7aa2fe94", "text": "high resolution science fiction 8k cinematic film space soldier armour futuristic sleek coloured visor helmet laser pistol imaginative product design arresting imagery lighting "} +{"id": "0001242", "video_name": "15f65b0b-032f-5ceb-b413-ae2713f4f266", "text": "20 years old beautiful girl is standing in dream world "} +{"id": "0001243", "video_name": "15f7e539-99f5-5eeb-8252-c24eafd177c4", "text": "animate spiderman standing in the street "} +{"id": "0001244", "video_name": "15fd275a-ea23-59e6-a693-27930d2dd03c", "text": "a girl who makes a video call "} +{"id": "0001245", "video_name": "1601457e-d33d-5a64-8feb-df568a5fcf6f", "text": "eye level zoom of a sad ape sitting in the middle of a busy new york street with people walking around in the style of wes anderson "} +{"id": "0001246", "video_name": "1601e497-e8e4-5b09-8fd0-1975ca5f7d11", "text": "elefant with butterfuly wings with forrest background. AR 16:9 "} +{"id": "0001247", "video_name": "160ccd58-4b97-5d35-ba6d-06d126b9373f", "text": "a night time with a lot of thunder clouds, orange and blue tone , stranger things, a person standing with headphones on "} +{"id": "0001248", "video_name": "160dda8a-351d-529e-9112-eb8bf36297b6", "text": "A breathtaking heavenly landscape with golden mountains, diamond waterfalls and fiery angels flying in the sky, drone camera rising fast into the air "} +{"id": "0001249", "video_name": "1612d53a-e428-5a1b-81c5-eba73c9785e7", "text": "man walks into into his own mouth "} +{"id": "0001250", "video_name": "16151f92-75af-5688-b7a9-d73851716765", "text": "Japanese students Message: live and learn (Font: MODERN) "} +{"id": "0001251", "video_name": "1618e269-2a79-5ce0-bb79-cc2d30289a82", "text": "video realistic nature image dreamworld happy mushrooms pink yellow dreamy "} +{"id": "0001252", "video_name": "162b9422-0247-5fec-bfe0-c42abbd94bb9", "text": "tree waving in the wind, all hearts are following like leaves in the wind "} +{"id": "0001253", "video_name": "162fd6aa-0143-5f34-b319-7aadd6946acc", "text": "3 doctors talking to a single patient "} +{"id": "0001254", "video_name": "16330bbd-27ae-5340-a359-fc644ae97288", "text": "moving clouds, Autos and boats on the see "} +{"id": "0001255", "video_name": "16342164-e261-5d7b-bf81-c479ed51040f", "text": "a girl in a red flowy dress is dancing under the stars, in a field, under the night sky, with a boy wearing a black and white tuxedo, 4k cinematics "} +{"id": "0001256", "video_name": "16384316-17ef-58b6-a9eb-cd2302f64898", "text": "young Albert Einstein, eyes looking down at the desk, writing a letter, hand and head moving, eyes looking down at desk "} +{"id": "0001257", "video_name": "1642e7f4-ad64-5744-a4b9-c9ea49a6e52b", "text": "Doctor who controlling the tardis with red lipstick pointing at it "} +{"id": "0001258", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "a super cute fluffy tabby kitten sitting on a piano explodes "} +{"id": "0001259", "video_name": "164500fb-1099-535d-9e80-c57a9b722e1c", "text": "a very long, metal cable, completely entangling a microphone and also a cassette radio ancestral ethereal extremely realistic highly detailed movie spectacular "} +{"id": "0001260", "video_name": "16460475-cf47-561e-aaf0-2d5e49d62aca", "text": "a table with lemons and lemonade pouring in a jar in a 3d animation "} +{"id": "0001261", "video_name": "16528058-7340-5e58-8112-be2ca55161ff", "text": "Cat laying on the back making snow angels on the ground in the winter, looking very happy "} +{"id": "0001262", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "The man crying in super realistic world looks like cyberpunk 3 "} +{"id": "0001263", "video_name": "165f9cc5-8911-59c1-aeb0-32220feae26a", "text": "cartoon of babies otter sleep peacefully "} +{"id": "0001264", "video_name": "1665d73e-b16c-52fe-a293-670e8af928b0", "text": "background of brazillian favela full of life "} +{"id": "0001265", "video_name": "16699e1b-fde4-5858-b208-23229e4a455d", "text": "a rabbit and other animal are siting together in deep forest "} +{"id": "0001266", "video_name": "166d1cb2-1d9e-546b-ab6e-5cb7e6be8ad1", "text": "Transition to a tranquil sunset, introducing the White Tiger. As it gracefully moves, leaves change color and fall, symbolizing the arrival of autumn. Show villagers harvesting, preparing for winter, lighting lanterns. The scene should evoke a sense of peace and preparation. "} +{"id": "0001267", "video_name": "16713714-ac8a-56f3-a4ee-259956ce2731", "text": "The Islamic Girl 10 year old and her Islamic mother returning to home on path "} +{"id": "0001268", "video_name": "1677e4e0-fa6a-562b-b779-4e6d21616f0b", "text": "In the evening of winter, the air turns cold "} +{"id": "0001269", "video_name": "167bc2df-20b5-5a3f-84ff-8023a5ea7e37", "text": "Mew flies through a cloud in the direction of Galaxy "} +{"id": "0001270", "video_name": "167f8b2f-0823-5601-9ce0-c437948c1b4b", "text": "Spiderman works as a PIZZA delivery boy "} +{"id": "0001271", "video_name": "1682fa05-b781-589b-8af0-ac2bbf81458c", "text": "A rainbow appears, a butterfly flies. "} +{"id": "0001272", "video_name": "1685093f-bbfb-5a63-b0d2-c87802d42de0", "text": "The cars navigating a tight hairpin turn, tires squealing and dirt flying, as they jockey for position. "} +{"id": "0001273", "video_name": "168b49a0-b163-5b5a-ba79-8ab6aa2e452d", "text": "princes saw the water in the stream, he realized that his tongue was parched due to thirst. "} +{"id": "0001274", "video_name": "168c2d2b-d829-5f83-92d3-72abfbacf34d", "text": "I got my gang of princesses what you going to do tanting "} +{"id": "0001275", "video_name": "168d743c-997b-553f-b0c6-2d1b7b8c9f4b", "text": "a person writing in a white sheet and in the background there is a computer with financial graphics "} +{"id": "0001276", "video_name": "168df806-1811-5b41-a5ab-96b652f85942", "text": "sun burning the earth melting the iorn. "} +{"id": "0001277", "video_name": "1691c47b-07e8-57d7-819e-ec5579285cbc", "text": "A simple but cozy village house with smoke curling from the chimney. "} +{"id": "0001278", "video_name": "16930e48-da32-5fac-a3ae-141f238f8df7", "text": "matman stadning on rooftop of high building face back to camera "} +{"id": "0001279", "video_name": "1695cb0e-f466-5e0e-a63b-e7562c4a2283", "text": "woman fortune teller, cat, magical environment "} +{"id": "0001280", "video_name": "169a051f-5a44-5936-b97f-02977279068c", "text": "exploration robot on a scary exoplanet with an orange atmosphere "} +{"id": "0001281", "video_name": "169c4e95-2ac6-55dc-9e4f-f1d0720081f7", "text": "Create a futuristic scene of human colonies on distant planets or in space, showcasing domed structures, advanced life support systems, and futuristic transportation shuttles. "} +{"id": "0001282", "video_name": "16a130b0-4954-5929-876c-42b266db1a90", "text": "reveal thats the friends mysteriously disappeared out the mansion. "} +{"id": "0001283", "video_name": "16a2d081-3470-592e-8186-539b10939284", "text": "a golden king monkey, empire, cute colors, epic, cinematic "} +{"id": "0001284", "video_name": "16a325cc-87a6-5241-ab65-3243f37aa123", "text": "Iron Man lands in old Marvel style "} +{"id": "0001285", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "when barbie met oppenheimer first time, 8k resolution, sharp and detailed, nuclear explosion in barbie world in background "} +{"id": "0001286", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "a boy running in the village, people wathing in the background, animation art style "} +{"id": "0001287", "video_name": "16a7c829-2b12-5e34-98f4-0d76dc1f795a", "text": "silver orchid floating in space, white stars sourrounding object, light glowing from left to right "} +{"id": "0001288", "video_name": "16a852cf-00a1-599b-afaf-0f4f3a76e7cb", "text": "five nights at freddys location with freddy dancing in front of it "} +{"id": "0001289", "video_name": "16aaab53-f0c7-59d1-9d6e-89f7a2d5f85d", "text": "camera zooming in, very fast motion, planets spinning fast, high resolution, good quality, wind blowing fast "} +{"id": "0001290", "video_name": "16bd3ea3-9b8e-5ae8-89c7-1047b9267389", "text": "a cute little girl in park "} +{"id": "0001291", "video_name": "16cfbf67-896a-5b06-a7a3-e6b69f58e954", "text": "humpback whale jumps over the ocean "} +{"id": "0001292", "video_name": "16d1da26-0fad-559b-af8e-1d21f7ef21fd", "text": "a hacker is walking in a postapocalyptic world 3d "} +{"id": "0001293", "video_name": "16d1eac0-9fe4-5b55-b7a4-34f13ef5a4ab", "text": "a bookshelf full of books with books moving on and off bookshel "} +{"id": "0001294", "video_name": "16d819c8-cda1-5447-969c-4e6c63014cf4", "text": "An airplane that emits radio signal waves "} +{"id": "0001295", "video_name": "16da1cc4-cf51-5958-b85a-d862b6ac3c30", "text": "nature rain falling on a grassy plain "} +{"id": "0001296", "video_name": "16dbb10d-f374-508b-ad09-36588b8ecaa7", "text": "A brief history of the internet from 1962 to 2023 "} +{"id": "0001297", "video_name": "16dea3ba-a058-51a1-ab51-bb98f43c64e7", "text": "Create a realistic image of a young goth girl sitting outside of a gas station smoking a cigarette. Make her quite sultry and voluptuous looking. The scene show be set at night and during a heavy rain. She is taking cover from the rain. The scene should evoke a feeling of calm and relaxation mingled with the dark grit of urban life. Format HD, UHD or 8K "} +{"id": "0001298", "video_name": "16e3d2bc-61ce-5ac4-9c4f-27ac95069bc1", "text": "hotel vela ( W hotel) on the beach of Barcelona is burning "} +{"id": "0001299", "video_name": "16e89e4e-e7d9-5ba4-b769-053707c73451", "text": "A robot with Hyper Realistic and futuristic armor and guns facing front and walking in the Cente "} +{"id": "0001300", "video_name": "16f29389-2b72-5778-8a8d-d9dc0bea19f9", "text": "ar 16:9 animated villagers in dark forest "} +{"id": "0001301", "video_name": "16f5d72e-b9cb-58f8-ba4e-b2b2fd284d7e", "text": "usb plug from 2025 glowing colors of LED and neon "} +{"id": "0001302", "video_name": "16fb8b65-4ce3-5223-9512-0bf2ca78849b", "text": "A shot of a cute turtle swimming down vetrically quickly zoomed out "} +{"id": "0001303", "video_name": "1700589e-187e-59aa-aeb5-370ddf314ba4", "text": "Farm Tale: The Prince and the Colorful Cow "} +{"id": "0001304", "video_name": "1706a5ab-f3f7-5873-9def-d48a3639c5c7", "text": "big spiders walking inside humans mouth while sleep, ultra realistic , macro video , highest quality , cinematic view "} +{"id": "0001305", "video_name": "1707eb5d-c7cb-56d6-a2d0-007349411aa8", "text": "puppy rushes to the kitchen, tail wagging, as his owner prepares his breakfast.\nWe see Max gobbling up his food with enthusiasm.\nHis owner pets him affectionately, and Max responds with joyful affection. "} +{"id": "0001306", "video_name": "1710a265-e4d8-504a-a289-b4b7a42a26ba", "text": "A climber tumbled down the slope and landed in a patch of grass in the valley. "} +{"id": "0001307", "video_name": "1710f931-c6c2-5183-9b30-0d587d0b8e3a", "text": "An animation of a woman with brown hair, blue eyes, a red tank top, with a lot of acne on her face, a little scared and an image with no background "} +{"id": "0001308", "video_name": "1711f798-1160-5d12-8557-96b73f20b497", "text": "giant inverted cross landscape, giger, lovecraft "} +{"id": "0001309", "video_name": "17123a2b-391e-5615-92c1-c4d8f16c5bb4", "text": "Animate the characters with the tender strokes of emotion, breathing life into their expressions. Every pixel should echo the emotions of a heartwarming melody, as if the very soul of your creation is harmonizing with the symphony of human connection. "} +{"id": "0001310", "video_name": "171380e5-bbff-590b-aeb1-2e4bc4adf7c5", "text": "Once upon a time in the quaint village of Himitsu, nestled between rolling hills and lush greenery, there was a mysterious legend surrounding an ancient Okada tree. "} +{"id": "0001311", "video_name": "171743d6-6897-53c5-937f-a6e242e7d35a", "text": "tamplet pizza, sandwich, burger, pasta, macroni, subway, fries, coke drinks all on table, part time details with banners on the wall "} +{"id": "0001312", "video_name": "171a2a3e-7631-50be-b578-cceba3a5c143", "text": "group of people supporting each other "} +{"id": "0001313", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "a magician walking in his forest, enchanted he cried, 4k "} +{"id": "0001314", "video_name": "1722b7d1-15fd-5130-a94b-e7241d1bb632", "text": "clouds in sky above a road. Message: BE NICE (Font: COMICS) "} +{"id": "0001315", "video_name": "1725c6b7-067a-5fde-b3b1-20058f9e7f73", "text": "a Chinese woman Running on the shore on the morning "} +{"id": "0001316", "video_name": "17262d50-d55a-5dc6-85a8-ed3a2b91bcf6", "text": "In the cosmos floating stars of different colors in full HD, 4k, while meteorites pass by "} +{"id": "0001317", "video_name": "1728f222-8eff-5512-9ded-d99843a8e6cd", "text": "A silhouette of a man with skin color beings rainbow floating through space with different planets and galaxy\u2019s in the background "} +{"id": "0001318", "video_name": "172b82b0-c511-564f-8bf6-f42351d320aa", "text": "Shadowman leaving behind a trail of cryptic messages. Picture a dimly lit urban landscape with misty alleys and imposing shadows. The Shadowman, clad in a mysterious cloak, artfully places each message, creating a tense breadcrumb trail of riddles. Employ dramatic lighting to intensify the shadows and highlights, and use a cold, atmospheric color palette to enhance the thriller ambiance. "} +{"id": "0001319", "video_name": "172c8e80-5196-5319-8140-906be6a1171c", "text": "an african player striking poses wearing full European kit showing off the new season design studio advertisement style "} +{"id": "0001320", "video_name": "17336bcd-21aa-5feb-9da4-36e7d9073d90", "text": "Steve began his day with a bright smile. He looked out of his window, gazing at the enchanting forest. "} +{"id": "0001321", "video_name": "173668d4-d4ea-5c09-ad3a-d5662973f8bd", "text": "The Battle of the French and the English shorthairs "} +{"id": "0001322", "video_name": "17398f46-db3b-5ea2-8def-33ef5614870a", "text": "unreal engine 5 gameplay footage in the city of Ani in Bagratid Armenia 11th century, walking in busy market square "} +{"id": "0001323", "video_name": "173e7e0e-8fc6-5e04-90bd-9c3938f59847", "text": "the marsupials at a fancy dinner "} +{"id": "0001324", "video_name": "174276da-6152-5c89-b828-ead7eaa11895", "text": "stewardess woman,21 years old,(white background:1.3),(upper body:1.2),subsurface scattering,smiling,hair bun,blonde hair,bangs,stewardess,dark blue uniform,garrison cap,pantyhose,white gloves,(airplane cabin),light smiling, "} +{"id": "0001325", "video_name": "174361a0-f927-5be0-b810-ccc3158c1359", "text": "woman walking alone on a rural road in northern Italy in 1943. Illustration in watercolor and pen by michal sawtyruk, long strokes, trending on artstation "} +{"id": "0001326", "video_name": "174dd8ad-5dac-5bb0-934b-d40489673638", "text": "apocalyptic scene of an abandoned city that\u2019s been taken over by drones and robots, extremely detailed and hyper realistic Message: extinction (Font: MODERN) "} +{"id": "0001327", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan was very happy to hear this and started following him. "} +{"id": "0001328", "video_name": "17506010-710e-51d5-9c0d-bac6f107d676", "text": "the shinning kubrik scene AR 9:16 "} +{"id": "0001329", "video_name": "1751d290-ec55-51b8-9460-199b390ce765", "text": "create a video about the EV car which is charging now "} +{"id": "0001330", "video_name": "175d3f7a-2548-56ee-b50d-3934793cab32", "text": "Once upon a time, in a quiet neighborhood, where houses line. the streets, there lived a young b. oy named Max. Max was a curious and adventurous child, always seeking new ways to have fun. One sunny afternoon, as he stepped outside to play, he noticed a lonely can sitting at one end of the block. "} +{"id": "0001331", "video_name": "176ab26d-b89d-5778-8430-5243353a4ccb", "text": "lovers walk along the beach at sunset "} +{"id": "0001332", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "an image on top of kailash mountain which is present in india "} +{"id": "0001333", "video_name": "176b3ae1-48ce-5704-8296-f1e7616c211d", "text": "gaon purani A vibrant Indian village with colorful houses and a lush, green landscape.\nRahul, a young and ambitious man, returns to his ancestral village after years of working in the city. "} +{"id": "0001334", "video_name": "1779f47d-9674-5e8b-8f98-2e05b370d411", "text": "two martial artists in combat 4k moonlit evening "} +{"id": "0001335", "video_name": "177ae7bc-bdd4-5c43-8f8f-228d0675cdce", "text": "cars in rain in big city "} +{"id": "0001336", "video_name": "17802735-4e09-503a-9ec4-ae743ff59410", "text": "red ball strike with water and broken mirror "} +{"id": "0001337", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "Wounded and bleeding Tony Stark see Peter Parker holding his daughter and smile "} +{"id": "0001338", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "flowers coming out of a high fashion handbag, white background, studio lighting "} +{"id": "0001339", "video_name": "178a82d5-07db-5e79-9543-055d1da934d2", "text": "Snow and watermelon and pomegranate for Yalda "} +{"id": "0001340", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "hotel manager talking to employee, hotel background setting, realistic "} +{"id": "0001341", "video_name": "1791468f-e4be-5dbd-8519-33cd2e8d9ea8", "text": "running out of a liquor store after obtaining many things surreal nighttime rain 90\u2019s "} +{"id": "0001342", "video_name": "179527b1-36a5-5053-afa8-426cb09c2ddd", "text": "the first Sparkling Stone revealed itself, emitting a soft glow. "} +{"id": "0001343", "video_name": "179a07e2-c08a-543c-a4bb-0b42833d993a", "text": "A close up of a ceiling rose with letters going in a circle Message: Rebel Rosettes (Font: BAUHAUS) "} +{"id": "0001344", "video_name": "179c188a-03a7-57e7-bbff-03a57b66991f", "text": "Felix the Fox cautiously approaching Daisy the Dog, a fluffy golden retriever puppy, offering to help her find her way home. "} +{"id": "0001345", "video_name": "179e5976-ecfb-5dd4-9e99-1959bd1aaa60", "text": "A vast, mythical battlefield stretches across the horizon. Dark storm clouds loom overhead, casting an eerie, ominous glow. Ravana, a towering and menacing figure with ten heads, brandishes his fearsome sword, exuding power and arrogance. The ground cracks beneath him as he prepares for battle. "} +{"id": "0001346", "video_name": "179ef0ce-7c83-5e26-b1f3-42d567f16efb", "text": "3d animation, a realistic banner containg the words Irongmara school ,banner is infront of a school "} +{"id": "0001347", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "ruined middle eastern city in fog "} +{"id": "0001348", "video_name": "17ada198-97b9-54fb-8fcb-1896341a51f5", "text": "a little girl talking with her friends "} +{"id": "0001349", "video_name": "17b1cff7-dc74-5237-acc8-f9a5543ce21c", "text": "a mid aged medieval queen, very beautiful in her throne "} +{"id": "0001350", "video_name": "17b9c475-03e0-5467-a513-0af3c7c2a6b6", "text": "a man ride a hours watching a girl playing the erhu "} +{"id": "0001351", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "City, Lighting, Bridge, Rain, Wind, Cloud, Flow of people, Crowd "} +{"id": "0001352", "video_name": "17bd3885-5d8e-52ed-bd72-cfd0714f53a8", "text": "Saving numbers in boxes like illustrated explanation "} +{"id": "0001353", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "Create an image of Kaida and Aslan, each presenting their symbols of worthiness to King Leonidas on Pride Rock. "} +{"id": "0001354", "video_name": "17bf29a1-0fb1-5866-8a75-109d7ffc3780", "text": "footage of a realistic police FPS similary to Ready or Not on steam fix the spelling "} +{"id": "0001355", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "haunting hpuse in living room , at winter with Foggy weather, scary house , horror scene "} +{"id": "0001356", "video_name": "17bf9011-e6fc-5bbb-abe2-e356518ecb46", "text": "marcurs aurelius speaking in front of the senate "} +{"id": "0001357", "video_name": "17c5a63b-1e29-5e22-b66d-1a9a7962d22c", "text": "orbital revolution of the solar system "} +{"id": "0001358", "video_name": "17e19e45-a914-58cf-b169-032cbfc8e61c", "text": "rain day in city of Yazd, iran "} +{"id": "0001359", "video_name": "17e3ab20-8579-51cd-8275-b50606e0ea05", "text": "video about making money tik tok form a guy talking and giving financial tips "} +{"id": "0001360", "video_name": "17e78249-fa7e-5170-9b08-252b8828f0f7", "text": "Sherman Securities logo for stock brokage "} +{"id": "0001361", "video_name": "17e86509-f6e1-57fc-8cec-1edde1bbbecc", "text": "Futuristic Dubai cinematic look, Movie, Dark, foggy, 64K, details "} +{"id": "0001362", "video_name": "17eaad9c-1638-5eff-8b63-c2454bb25b17", "text": "a cute anime boys and girl love "} +{"id": "0001363", "video_name": "17eb2a36-1957-548b-8e6a-910332247a9c", "text": "tony stark standing on stage giving a presentation to many people"} +{"id": "0001364", "video_name": "17f16156-ad73-55c8-ad7c-da186f652a05", "text": "an animated shark jumping inside a little wodden boat "} +{"id": "0001365", "video_name": "17f31371-81c2-573b-89b8-2a30dbfd157c", "text": "Along the way, she encountered fantastical beings like wise elves, mischievous sprites, and noble dragons. cinematic 4k "} +{"id": "0001366", "video_name": "17f9f982-4b6c-5e97-8079-62d6f25adca2", "text": "Animated gif of a happy cat dancing, Christmas "} +{"id": "0001367", "video_name": "17facaaf-72cc-5166-860e-2c4ef2829e5e", "text": "Chinese Year of the Dragon Fair "} +{"id": "0001368", "video_name": "17fb7eff-8edf-502d-ad16-0b1b594340c1", "text": "Kris is standing at the end of a small dinner table. "} +{"id": "0001369", "video_name": "18027ea9-6cf2-5e8b-97a5-63cbf05f480c", "text": "A machine that is a factory of human beings, high technology, factory of humans on tape. Great quality. 8K. Halloween lights "} +{"id": "0001370", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "a beautiful young girl closing a door of a rand villa sadly "} +{"id": "0001371", "video_name": "180b96fc-5343-5b27-b861-0f067bea5ee0", "text": "angel flying in the sky, fantasy image "} +{"id": "0001372", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "vintage, girl, book, reading, city 1970s "} +{"id": "0001373", "video_name": "181fb99d-5c42-5bc4-8e24-6f0e3fffd91f", "text": "a beautiful African village with people moving around, no animals. "} +{"id": "0001374", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "boy stand in villages Street 3d character boy "} +{"id": "0001375", "video_name": "182702d6-f16e-55de-aaa9-f60dcb923787", "text": "sauges and french fries being trhown by the air "} +{"id": "0001376", "video_name": "1827ccbf-de0d-58e6-a57e-6407576e2ce8", "text": "Man in suit laughing while looking at the world from his office window, close up, super realistic "} +{"id": "0001377", "video_name": "182bd543-9051-54d4-8f79-8c1fdd9b0dd7", "text": "Sharing young woman Lily and young man Max heartwarming story with the villagers 4k ar 16:9 3d "} +{"id": "0001378", "video_name": "1833e9a7-8484-5170-b7ff-b04a47a6c02d", "text": "man playing banjo on porch in summer "} +{"id": "0001379", "video_name": "1835d16d-4d1b-5000-a47d-2937d99d182f", "text": "matvey bologov score goal anapa football "} +{"id": "0001380", "video_name": "183f90ee-678e-5341-9048-2ca8701037fd", "text": "Red Tour Bus Is Entering The Abandoned And Damaged Triana City Of Albania, Cinematic 4k, 2000s Horror Film Filter "} +{"id": "0001381", "video_name": "18432d0a-45e9-540f-9f15-eaf7eaa84aa3", "text": "a man wearing black suit walking at the streets of Jaipur Rajasthan High resolution ulta HD "} +{"id": "0001382", "video_name": "184f2fd6-8088-53d2-80b3-a008ba103443", "text": "Liam was known throughout the village for his generous heart and unwavering kindness "} +{"id": "0001383", "video_name": "18512407-fcb6-58ab-b10e-b3a036490b62", "text": "Capture the eerie ambiance of the deserted playground at night and Swing contineu hanggig, a girl wating for his mother the rusted iron swing creaks back and forth in the dim light. creating an unsettling atmosphere. Focus on the emptiness of the scene, emphasizing the absence of laughter and the chilling solitude that permeates the air "} +{"id": "0001384", "video_name": "18543071-9c2f-5657-8242-0895474f89a4", "text": "man with six pac abs and model physique "} +{"id": "0001385", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "vintage scene with house at distance Message: Purush Mandal (Font: MODERN) "} +{"id": "0001386", "video_name": "18638bd2-d6f5-56cb-935b-0ce01d92f68b", "text": "Celebrate Achievements: Acknowledge every small success; it keeps you motivated. "} +{"id": "0001387", "video_name": "186b7c62-22d9-5347-af7d-a0f517349de8", "text": "a couple sharing sunshine on a boat. "} +{"id": "0001388", "video_name": "18755bc3-82db-5ad4-81f4-a86030d393ed", "text": "Give me an video of Leonidas the spartan throwing his mighty spear toward a dragon ! "} +{"id": "0001389", "video_name": "1882859f-d790-54aa-b9ac-bf0de5f351d7", "text": "Go Pro Film, Billie Eilish exploring Wonderland and meeting various creatures, such as the Caterpillar, the Duchess, the Queen of Hearts, "} +{"id": "0001390", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960 arthouse film showing a grass labyrinth and a woman dressed in white searching the exit of the labyrinth "} +{"id": "0001391", "video_name": "188c5ceb-ce97-5a60-bd89-65c949e0d666", "text": "car driving on a highway, dynamik lighting, night time "} +{"id": "0001392", "video_name": "188fb7a0-f570-540d-b0ee-09d5dde88711", "text": "yellow tube from the phone on a pink background "} +{"id": "0001393", "video_name": "1892e7a2-ef39-5c9b-8d78-1dc7b04c6cbe", "text": "the walnut falling from the top "} +{"id": "0001394", "video_name": "18940d42-a5ff-5e33-bb55-cc6b7ddaa074", "text": "Woman in stuffed rabbit costume With red eyes very well detailed scary environment "} +{"id": "0001395", "video_name": "1897ecc4-0b35-55da-a5c7-28a8bb64a025", "text": "an old mirror in a dark house "} +{"id": "0001396", "video_name": "18b38cef-44ce-54aa-8c74-1d8339948673", "text": "Bustling city night, street, rain, the girl slowly move forward "} +{"id": "0001397", "video_name": "18b7edc2-d83a-5c30-af10-e8e336050f87", "text": "annunaki face talking in the NASA in 3D octane render, best quality , best resolution, HDR, 4k "} +{"id": "0001398", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "energetic engineer solving computer problems in the midnight, high quality high resolution "} +{"id": "0001399", "video_name": "18b8a802-4458-5cea-b998-b4a2b53a2076", "text": "Group of 3 foxes hunting a rabbit in a forrest, 10 seconds long "} +{"id": "0001400", "video_name": "18d7b002-48e8-565f-8744-fe533ffaedbf", "text": "visibly pleasing, a mind bending acid trip, neon lights, colorful,magical landscape, tall structure "} +{"id": "0001401", "video_name": "18e099ff-44a3-517e-aee0-6621f6c1fbb9", "text": "abstract 3d satisfying objects bouncing around, colourful , explosion, pops, asmr "} +{"id": "0001402", "video_name": "18ebcf55-2d24-516d-9443-4cbdae80ee44", "text": "a car driving on a bumpy gravel road, conveying a sense of uncontrolled movement, portrait orientation, high quality "} +{"id": "0001403", "video_name": "18ed6a08-7f19-556a-b630-8d86bd988bba", "text": "cloud formation moving into a stormy hurricane windy Message: Pictorius (Font: MODERN) "} +{"id": "0001404", "video_name": "18f051b5-14d0-5efe-ad26-436c67fd7916", "text": "\u201cThe mother and son are playing Plants vs. Zombies game.\u201d "} +{"id": "0001405", "video_name": "18f110d8-03d9-5d57-8027-39c9f7997b42", "text": "a burger moving in the air, animation, 16:9 "} +{"id": "0001406", "video_name": "18fa844a-c1e2-50a6-aedc-137f294616db", "text": "two singing people on the beach from hawai "} +{"id": "0001407", "video_name": "18fe0b3c-54f2-53a9-8057-95c60ba405f3", "text": "A man walks on a pencil "} +{"id": "0001408", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32 bit gaming room with a storm outside "} +{"id": "0001409", "video_name": "190378b7-f8c4-5e1c-a8d5-19c36d212168", "text": "A hyperdrive tunnel of fractal patterns and neon colors, blurring the line between reality and digital space. "} +{"id": "0001410", "video_name": "190561a2-9a3f-5e96-bd8f-a0518cf10b86", "text": "3 poker players playing at a resort with the beach in the background "} +{"id": "0001411", "video_name": "19064e05-28a0-5708-a27e-761422c52596", "text": "people making connections with their phones across a city (cyberpunk,cinematic style) "} +{"id": "0001412", "video_name": "1916aee9-51ce-5a71-9bd3-47acc42190dc", "text": "a woman working at her office, at the top of mountains, mountain view, 90s "} +{"id": "0001413", "video_name": "1919046a-44d3-5900-82af-5b4c812f105a", "text": "Claudiu gets beat at League of Legends by Alex "} +{"id": "0001414", "video_name": "191b09f9-2a9c-5a70-9886-7ccbc76deb7d", "text": "a scared man in the titanic "} +{"id": "0001415", "video_name": "191b2e83-bbb7-5041-b91a-cb53869e9454", "text": "3D, Disney Pixel, african american little girl "} +{"id": "0001416", "video_name": "191bfe57-690e-5a19-9b8b-1ab93e3140fd", "text": "A man is travelling in train throgh the nature to explore new places "} +{"id": "0001417", "video_name": "191da1cd-a0b7-5c7a-9f5a-f3a2e5b5b8c1", "text": "Beautiful ethereal elf ready to fight, from an 80s dark fantasy movie, realistic, cinematic, vintage, HD "} +{"id": "0001418", "video_name": "192fd7dd-1066-5fdf-b18a-5b9a2d829f75", "text": "king doing discussion with his minister "} +{"id": "0001419", "video_name": "1932d8cf-b712-526d-b005-932c0083960a", "text": "Alert and focused, the dog, with his distinctive coat and wise eyes, turns towards a rustling sound emanating from a dense thicket in the forest, bathed in suspenseful light. "} +{"id": "0001420", "video_name": "19344300-dbc6-5808-aac0-e7296c0436f8", "text": "fred astaire dancing in the mall "} +{"id": "0001421", "video_name": "1938ed5f-4e20-5e9d-85a3-f10e8a29c314", "text": "Golden metallic scaly dragon descending from yellow clouds with flashes of light. "} +{"id": "0001422", "video_name": "19390eca-0386-5717-a87e-802837fe4fc5", "text": "create an image of wildlife in the savanna "} +{"id": "0001423", "video_name": "19415581-468c-5549-9588-b1836493db77", "text": "man 50 years old kneeling front "} +{"id": "0001424", "video_name": "1942225d-b19e-5850-94bc-914f0ebe473c", "text": "with people from different backgrounds living harmoniously. "} +{"id": "0001425", "video_name": "19424bb9-b76f-56dd-bc5f-4c9d39137b05", "text": "Sofia engages in intense combat with a horde of sleek, menacing robots. Her movements are swift and calculated as she battles against overwhelming odds. "} +{"id": "0001426", "video_name": "1942893b-2f5f-56aa-a531-47579bd97747", "text": "a man in the bottom right of the video walking alone in the rain, scenary, sad, vibrant colour "} +{"id": "0001427", "video_name": "1947633a-f120-52a2-bd37-429cb8b60ad7", "text": "a cute chinese boy is playing computer, writing code, and playing robot with his dad. "} +{"id": "0001428", "video_name": "1950c513-7ff3-5dd0-974a-2e4783bca817", "text": "Scene 5: A robot leader with an intimidating presence and a metallic voice, emerges to confront the humans. "} +{"id": "0001429", "video_name": "1953f51e-3fbf-5ac7-ad88-8b21e8aa12b5", "text": "Our tranquil home is in danger. Dragons descend upon us, casting shadows over our beloved forest. 16:9 ratio I need "} +{"id": "0001430", "video_name": "195ec27b-698d-5d38-b23f-edb046ae4fee", "text": "vr people marching in a city "} +{"id": "0001431", "video_name": "196c2438-0a25-597c-aae2-10d361ff4ae9", "text": "trypophobia, small spiders, horror movie, scary, evil, high definition, realistic, fear, vintage, nightmare, spider, phobia "} +{"id": "0001432", "video_name": "196cba11-5c7f-56ab-97c8-9cfe47a2532f", "text": "Chibi star wars characters running around the death star "} +{"id": "0001433", "video_name": "19761374-eb02-570c-a190-5458be1093c9", "text": "rain falling and a simple house in a lush nature "} +{"id": "0001434", "video_name": "1978bc51-a5bf-59f8-98de-98841e99599d", "text": "elon musk jumping from the moon to earth animation style "} +{"id": "0001435", "video_name": "197c74cd-e210-5fc8-9852-534f02ef6140", "text": "Combine the bonfire with a starry night sky. Enhance the ambiance with the gentle crackling of the fire and the twinkle of distant stars "} +{"id": "0001436", "video_name": "1988e509-b9f2-5b66-95b7-94fc0a580cc0", "text": "a ram jumping out a computer and running at toward the screen of my iphone "} +{"id": "0001437", "video_name": "198ce89a-ea38-571d-8e3e-7ae2a9764f22", "text": "a video of Albert Einstein on his death bed "} +{"id": "0001438", "video_name": "1991402e-0a07-52b5-8938-6c1fb13f058e", "text": "The old man sits quietly and talks "} +{"id": "0001439", "video_name": "1993d0c4-d066-5797-910c-265f0707de4e", "text": "a cat as the grinch stealing. A Christmas tree "} +{"id": "0001440", "video_name": "1999150c-92c8-5c7f-afb0-608b8f4e9c56", "text": "Record Pujari persist wearing white cloth performing the ritual with incense, chants, and holy water. prompt: "} +{"id": "0001441", "video_name": "19a9a9ce-de26-526c-a75e-92e68d4c8b75", "text": "aan hugging his motorcycle on a roadside near an ocean "} +{"id": "0001442", "video_name": "19ab4aae-ed7a-51d7-aced-f1448bbc0f81", "text": "singing Head floating in glass box Mind Worm with wires diodes Alfred Stieglitz grainy black and white 1900s "} +{"id": "0001443", "video_name": "19acde51-f41d-5c94-b82d-e0d278ce6d9b", "text": "a girl walks along the shore at sunset "} +{"id": "0001444", "video_name": "19b2a1ba-6f1b-54d8-a47d-d6da5840af64", "text": "a cloaked figure walking in a foggy forest holding a lantern. Black and white 16mm "} +{"id": "0001445", "video_name": "19b5314a-ff32-571a-81d6-65532f14cdd5", "text": "As the news of the mutiny in one town travelled to the next the sepoys there took up arms. "} +{"id": "0001446", "video_name": "19b7b489-2efa-5438-b8ee-97c171b75df8", "text": "White Jeep driving on an island cinamatic "} +{"id": "0001447", "video_name": "19ba3025-b2db-504f-b736-0d6a6cad54d4", "text": "The male protagonist, David (30 years old), is a successful artist. "} +{"id": "0001448", "video_name": "19ba439c-65f7-52d8-be19-0e2796dd2b6f", "text": "black and white video in the style of German expressionism fast movement of the forest from left to right, camera static "} +{"id": "0001449", "video_name": "19be31af-9804-5c34-84fc-be8bbba2d478", "text": "Stunning hyperdetailed vintage Sketch Art, pose, strong facial expression, in the style of Mandy Jurgens "} +{"id": "0001450", "video_name": "19be31e9-75a5-52a2-b9b7-ef39d13fa23f", "text": "walter white rolling a stone up a hill "} +{"id": "0001451", "video_name": "19c0a96d-5dc3-5a1c-8de9-774f87e8bb4f", "text": "elephant flying in a fighter jet highly technical ultra detailed excited expression on face shaky video "} +{"id": "0001452", "video_name": "19c0d897-6668-5b27-b999-e3f08a40b5af", "text": "They witness the forest blooming with colorful flowers and happy animals.3d animation,4k resolution 16:9 "} +{"id": "0001453", "video_name": "19c47dde-888e-5604-9d2a-a352e1dd16d5", "text": "A dark abyss, boundless, devouring all the light. On the edge of the cliff, a crescent moon bloomed like a white pear flower, quietly opening in the light blue sky. A breeze blew, bringing the rustling of leaves and the chirping of cicadas, breaking the silence. Suddenly, a figure jumped from the cliff, like a meteor across the night sky, disappearing into the abyss. "} +{"id": "0001454", "video_name": "19cef012-202a-52f8-97cb-d17da70510a1", "text": "cinematic color, a man with a gas mask in the desert "} +{"id": "0001455", "video_name": "19cf3d08-e88b-573e-8287-9dbce268dcba", "text": "Moses in gray robe ,right hand holding a wooden stick over his head, back view, sea water split apart shows a path in front of him "} +{"id": "0001456", "video_name": "19daa434-8e78-53ae-8b54-09c176ae978f", "text": "dream core playground faraway on a hill "} +{"id": "0001457", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "rainbow zebra running in fantasy forest "} +{"id": "0001458", "video_name": "19e3f236-3b3f-587c-8f44-da11a2c759eb", "text": "4 year old boy eating cake for the first time "} +{"id": "0001459", "video_name": "19e5419f-b77b-5ade-95f1-bf84b450e828", "text": "A note jumps on the staff on its own "} +{"id": "0001460", "video_name": "19eb8b99-b288-5d16-a083-fcf768efd787", "text": "create an eerie 1920\u2019s silent movie in black and white of a ghostly woman in a black dress walking down stairs in a haunted room. "} +{"id": "0001461", "video_name": "19ee9358-245a-562e-8347-f628109ce5e2", "text": "a sad Israeli woman with a baby on her lap, next to another smiling woman, ancient era, 8k, cinematic "} +{"id": "0001462", "video_name": "19f67c84-7fc4-585b-921f-637a48af9732", "text": "The sun is overhead while hoeing the rice. "} +{"id": "0001463", "video_name": "19f71dfe-f552-56ab-a302-9dde5572061b", "text": "Promote a Chinese chess piece to a general "} +{"id": "0001464", "video_name": "19f893e1-da9a-59bf-a6e2-35c4e402ee17", "text": "draw a picture whatever you are good at "} +{"id": "0001465", "video_name": "19f8ec44-eb1d-56e3-8103-d68c6587e47c", "text": "a dark unfolds video of a man and a woman capture the moments of revelation and truth, leaving viewers with a powerful sense of catharsis and emotional connection.\u201d "} +{"id": "0001466", "video_name": "19fdbf21-71fb-5e17-9e26-6471295b4092", "text": "Moses from the Bible crossing the Red Sea Pixar style "} +{"id": "0001467", "video_name": "1a01ee41-cd0c-57e6-aa66-ce573189c839", "text": "a panda wearing a medical gown "} +{"id": "0001468", "video_name": "1a0cead7-4208-5949-bbd8-167bf8b22f90", "text": "The plants are floating gently in the rain "} +{"id": "0001469", "video_name": "1a174d83-cbe8-5203-9fce-1ce1cda394a4", "text": "sunshine and clouds zoom out Message: Thanks (Font: MODERN) "} +{"id": "0001470", "video_name": "1a17fa4b-7657-57a8-a462-0d367be4b187", "text": "Ancient Chinese poem, Withered vines, old trees, crows at dusk; A small bridge, flowing water and some huts. "} +{"id": "0001471", "video_name": "1a1ae150-c5c8-54b2-81fa-088ee6b8a4f8", "text": "The two baby rabbits travel by the boat "} +{"id": "0001472", "video_name": "1a29412f-9f79-55cc-878a-5ecdb9f32171", "text": "blurry light shifting in dark background "} +{"id": "0001473", "video_name": "1a29733c-81a3-529d-88e6-836182e066f6", "text": "Kiki, the world explorer, embarked on an adventurous journey to uncover the secrets of the globe "} +{"id": "0001474", "video_name": "1a314de6-caa9-579b-915c-8ecf4501f010", "text": "something like a great star fell from heaven, blazing like a torch, and it fell on a third of the rivers and on the springs of water. "} +{"id": "0001475", "video_name": "1a33409d-18ac-5362-93be-ad6e1c3c35fe", "text": "Their eyes met, and it was as if time stood still. "} +{"id": "0001476", "video_name": "1a3a193a-38ca-5278-9da8-d700b553aeb0", "text": "In the depths of the ocean, a fierce battle unfolded between a cunning crocodile and a relentless shark. "} +{"id": "0001477", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "a hindu god beautiful youth with a glowing complexion the color of rain clouds. He plays a flute, attracting the hearts of all. His cheeks are brilliant, His smiling enchanting. He wears a peacock feather in His curly black hair and a flower garland around His neck. "} +{"id": "0001478", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "PIXAR STYLE, A COMPUTER PROCESSOR INSIDE AN ICE CUBE, AND THE CUBE MELTING "} +{"id": "0001479", "video_name": "1a4a7097-37e8-53b8-b159-6989d903b144", "text": "john and liza are taking their lunch in the restaurant "} +{"id": "0001480", "video_name": "1a4dc650-a7fb-55ec-a391-ee4153123638", "text": "After months of effort, Alex mastered hacking techniques "} +{"id": "0001481", "video_name": "1a5103a6-1ebc-5ac2-85b8-1140c55ad159", "text": "create a 20s video about this earphone holder, "} +{"id": "0001482", "video_name": "1a555989-0e97-51b8-aa3b-bc7a40f6da0e", "text": "dining room with different quisines and artistic food presentations "} +{"id": "0001483", "video_name": "1a5a855b-d737-5b6f-8181-9534688de840", "text": "A tv monitor showing optical illusion of Rob Gonsalves arts "} +{"id": "0001484", "video_name": "1a683463-be90-5517-98d5-1bba12c021b7", "text": "little snow penguin running away from the camera lens "} +{"id": "0001485", "video_name": "1a6f7823-2c2d-54b3-ba87-5550bce7332e", "text": "HD cinematic zoom, Entanglement of human body fast movement "} +{"id": "0001486", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "realistic 8k uhd planet collision with another planet explosive impact in space "} +{"id": "0001487", "video_name": "1a7b28c5-fc92-5e4f-a2ec-f1773dc5241e", "text": "Describe a dense jungle where a lion and a lioness reside together. "} +{"id": "0001488", "video_name": "1a7fd0ac-af50-5365-8f6f-95bc6d238809", "text": "A haunting scene in a forest, a women running away from a lion, shot in black and white 1.33:1 silent aperture "} +{"id": "0001489", "video_name": "1a839135-1d08-5ab1-b8bb-12cf91b851a8", "text": "honor your roots Message: 1 Attachment "} +{"id": "0001490", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "cats small and muscle can flay blue eyes and orange colors with black body "} +{"id": "0001491", "video_name": "1a866e54-63b2-53f0-82bf-595258bc9e3e", "text": "realistic, artistic and 3D, 360 camera pan Message: warrior from world (Font: MODERN) "} +{"id": "0001492", "video_name": "1a88a8bd-7417-537c-b11b-bd24053afb96", "text": "a giant tree with red leaves "} +{"id": "0001493", "video_name": "1a8cefef-085f-549f-8df1-8a8336e15289", "text": "Children are blinking their eyes and dancing in realistic cartoon style 16\uff1a9 "} +{"id": "0001494", "video_name": "1a94f220-7795-565f-8726-ec535f307140", "text": "A flock of little yellow ducks are running in the field "} +{"id": "0001495", "video_name": "1a958b9a-81d7-528e-baed-389abb75311d", "text": "letter CO KHI 3: sprinkle floating, hyper realistic, photographic "} +{"id": "0001496", "video_name": "1a9960c4-163c-543f-bb32-168535ee47c7", "text": "Giant army of orcs with empty flags in futuristic armor against the background of a giant Russian city, winter, cyberpunk "} +{"id": "0001497", "video_name": "1a9b4f5b-d054-5235-bae1-5760f352a63c", "text": "View of a tiny house in the middle of the forest. With yellow lights at the windows, smoke coming out of the chimney, night time "} +{"id": "0001498", "video_name": "1a9d473e-7815-536f-bd6a-f8434b37b48f", "text": "Make the animation express his determination to get the grapes and fox "} +{"id": "0001499", "video_name": "1a9dcf50-3d36-5427-9f71-142bafeba3eb", "text": "attractive blonde female sitting on the beach in a blue swim suit facing the ocean, afternoon sunlight, photorealism, cinematic rendering, the highest quality, the highest detail, cinematic "} +{"id": "0001500", "video_name": "1a9dfa9f-0a8e-5895-9a97-d9b5f63b0917", "text": "underwater statue of goddess Athena, overgrown by coral, mystical cinematic scene "} +{"id": "0001501", "video_name": "1aa3473e-4775-55a6-86b9-d5084a22a9c7", "text": "3d young Emirati child dressing Emirati uniform stands at his home. 8k, colorful "} +{"id": "0001502", "video_name": "1aaf1e5a-2690-5c20-8a3a-1740b4fe812c", "text": "Gandhiji Speactacles, cinematic, UHD, Zoom in "} +{"id": "0001503", "video_name": "1ab08331-c5fa-5d0a-a008-4757005c97e7", "text": "a 1920 super8 footage of two whites glowing ghost brides with a flower faces on the side of the road at night next to the woods "} +{"id": "0001504", "video_name": "1ab4ba5c-9703-50f5-a62f-768e7f5653ed", "text": "The water moved, the smoke stirred Message: 1 Attachment "} +{"id": "0001505", "video_name": "1abfc774-b3a6-5b0b-9e8e-97a354f8cdf1", "text": "A little girl in a pink dress is sitting on a tree stump in the forest. She is holding a baby bird in her hands. The bird is injured, and the little girl is gently stroking its feathers. "} +{"id": "0001506", "video_name": "1ac3b1f4-8de8-5218-a6b4-7126fa1ef8a1", "text": "the dawning of a happy new era "} +{"id": "0001507", "video_name": "1ac58848-6f7f-5680-8376-8ef56b6d908d", "text": "an old man in Pixar style "} +{"id": "0001508", "video_name": "1ac72186-8665-51da-a072-7dbd1ec3344c", "text": "a steep rocky cliff in the pouring rain "} +{"id": "0001509", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "Generate an image of a magical kitchen filled with floating ingredients like flour, tomatoes, and cheese, creating a playful and enchanting atmosphere. "} +{"id": "0001510", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "In a dimly lit room, a spotlight shines down on Mary, who is now sitting on a wooden chair, holding her newborn baby boy Jesus in her arms. The camera captures the awe and tenderness in her eyes as she gazes down at her child. The room is filled with a hushed silence, emphasizing the sacredness of the moment. "} +{"id": "0001511", "video_name": "1ace1b90-f868-534d-9f4a-ff5a0422790a", "text": "3d image A picture of a child and a grandparent, sitting on a park bench, engaged in a heartwarming conversation as they enjoy a sunny day. animationcenmatic gs 20 motion 4 ,7second long "} +{"id": "0001512", "video_name": "1ad0616c-eb6f-505f-bc8e-374f29a09208", "text": "wedding, two bears, honey, by far vision "} +{"id": "0001513", "video_name": "1ad2ea30-19c4-588b-8ddf-0b3e2b602dcf", "text": "cinematic shot of a miniature googly eyed dragon in a welsh mountain forest "} +{"id": "0001514", "video_name": "1ad53c22-18ea-5a22-be98-2a1640e3d429", "text": "a beach with blue and green waters, birds flying in the sky and a speedboat "} +{"id": "0001515", "video_name": "1ad76fe1-e873-5bfe-a00e-3239a74b039e", "text": "THE both Japanese anime lost their memories about their love when the wish "} +{"id": "0001516", "video_name": "1ad876dc-a99c-5310-ac88-3552b03ece78", "text": "Visual: A montage of services (SEO, Sales Funnels, Advertising, Optimization) being applied to a website. Purpose: To showcase the range of services offered. "} +{"id": "0001517", "video_name": "1adde34b-19ab-5ccc-90db-d8f92c9102a2", "text": "Group discussion with kids and a little robot "} +{"id": "0001518", "video_name": "1ae2cf30-3873-542c-9c86-79110e947110", "text": "Tesla Model S, flying with wings, on the sea, there are several islands in the sea, and there are dinosaurs swimming in the sea "} +{"id": "0001519", "video_name": "1ae9a65e-e9f7-54ff-b9ba-db77dd2f1843", "text": "realistic tall and thin girl 16 years old as god of destruction, black hair and eyes, pale skin, high resolution, high detail, beautiful face, 1 girl, full length,she flies over the destroyed city "} +{"id": "0001520", "video_name": "1aedbb74-7feb-57e9-980a-3ceea23789ac", "text": "White trees shaking in the snow "} +{"id": "0001521", "video_name": "1af02e0b-e00c-5da5-ab09-1aef79787d66", "text": "A white rabbit watches Nick Frost trekking in the snow in the woodland. An old 70s BBC television programme. TV Static. Cracked glass Screen, damaged camera shot. Digital art surrealism. Psychedelic. Drug addled. Sobre Grey, Orange and Green colour scheme. Blurred, handycam, warped projector footage. Nostalgic. Channel Interference and Oversaturated. Cracked glass and bleached colours. Domestic and Sad tone. Autumn leaves. Depressing. Water Colour Paint running and dripping, staining and blotting canvas. Influences from Hannah Hoch Colage and Jackson Pollock paintings. Wickerman, Wicker Man. Folk Horror, Midsommar. Stone Tape. Tales of the Unexpected. "} +{"id": "0001522", "video_name": "1af0adec-ff4c-5713-8622-1f250a897e1e", "text": "creta an ingredient like Romain Lenancker in 3D animation, watery effect, with dark background highly quality "} +{"id": "0001523", "video_name": "1af806ad-fdd8-5e05-a1d7-0a05ebe06452", "text": "humpback whale swimming towards screen in black background "} +{"id": "0001524", "video_name": "1afb15be-35f0-5df0-a2ab-dbc15091afb9", "text": "Introduction to Elsa and her kingdom, mentioning her love for magic. "} +{"id": "0001525", "video_name": "1b019cba-4a81-564a-a89d-9d4d7e60820b", "text": "a little boy holding a balloon and flying to the sky. Super realistic, 4k "} +{"id": "0001526", "video_name": "1b03a593-aa9d-5d54-b4ea-ae1b357d02fc", "text": "a pile of pizza boxes on a fondi table a big party 8k realistic, camera rotate 90 degrees Message: pizzaDAO (Font: MODERN) "} +{"id": "0001527", "video_name": "1b084f9b-fc7f-559f-91be-318c82d0d266", "text": "The forest was buzzing with activity as the friends decorated their eggs with vibrant colors and patterns. Little did they know that a mysterious visitor, a mischievous fox named Freddy, was watching from the shadows. "} +{"id": "0001528", "video_name": "1b085d36-2532-52e6-88d8-119a3914d72a", "text": "Dancing Winter Kids in a colorful snow storm , facing camera , cinematic, Discolight, fast Motion, "} +{"id": "0001529", "video_name": "1b098c68-ba4b-5447-b8be-27965da43e5d", "text": "lady in red dress dancing, artistic, black background "} +{"id": "0001530", "video_name": "1b0c7e51-ffbb-5908-8d81-24f30b3d014b", "text": "nightmare before christmas style landscape wind blowing rain coming down heavy "} +{"id": "0001531", "video_name": "1b182453-da1f-50bf-a631-4b8a67a3587a", "text": "2d cartoon style, a cat is eating a fish. "} +{"id": "0001532", "video_name": "1b228cee-b20c-5484-8f80-9fbd3b7c0954", "text": "gtavi The moon, once a symbol of mystery, now harbors the sinister secrets of an evolving AI. "} +{"id": "0001533", "video_name": "1b29a610-6ee9-5edd-8178-64deeb03a7dc", "text": "a woman made of autumn leaves dancing with a man made ice, cinematic, 8K, high detail, atmosphere, wide view "} +{"id": "0001534", "video_name": "1b29e308-cbd1-5e9c-9098-40f22a17fbdd", "text": "a young woman with brown hair. Your eyes are green. She has a confident smile wearing a dress. with sad looking at cell phone in his hand, cinema "} +{"id": "0001535", "video_name": "1b3337d1-277c-519b-a4fe-43021bb38272", "text": "sky from which money is falling down "} +{"id": "0001536", "video_name": "1b34ce2e-22c6-5510-b82f-ed5288332b5d", "text": "portrait of hellraiser cenobite in the style of wayne barlowe, gustav moreau, peter mohrbacher, bussiere, roberto ferri, santiago caruso, luis ricardo falero, austin osman spare "} +{"id": "0001537", "video_name": "1b3f74e8-9711-5dc0-bfa2-06f5864d539b", "text": "A line of ants walking in a straight line "} +{"id": "0001538", "video_name": "1b40838f-888e-5b6f-87fe-9d0864822a67", "text": "Wildflowers of various colors should dot the landscape, creating a natural carpet of reds, blues, purples, and yellows. "} +{"id": "0001539", "video_name": "1b42e142-082c-559f-8d56-bc2cc115cf6f", "text": "jay leno playing electric guitar and wearing a cowboy hat "} +{"id": "0001540", "video_name": "1b460844-c3a8-5ed2-a220-6ae468c8f09c", "text": "Astronaut sitting in front of the computer and the codes reflected on his helmet. in the dark "} +{"id": "0001541", "video_name": "1b5422b0-8127-56ec-b128-d52ca0f63563", "text": "werewolf over the moon on a foggy night "} +{"id": "0001542", "video_name": "1b545f71-b00e-582d-bdc5-2abca7eb1e9c", "text": "Alice falling down the rabbit hole,American McGee Alice "} +{"id": "0001543", "video_name": "1b56a283-3c61-5aee-98e1-10d4e2d98536", "text": "a man is boarding on train in middle of dark jungle "} +{"id": "0001544", "video_name": "1b5f2864-933c-5921-9aef-fcba35e88620", "text": "a cute cartoonish unicorn just having a good time "} +{"id": "0001545", "video_name": "1b5ffd2a-ec75-5e9d-a77a-964443f99957", "text": "dark castle in a storm action scene "} +{"id": "0001546", "video_name": "1b600e27-46bc-50dc-b5ce-1802bf062fa4", "text": "Create a realistic 3d image of Motion Blobfish (Psychrolutes marcidus) "} +{"id": "0001547", "video_name": "1b688511-f777-5453-bcc3-fcfb20b340b5", "text": "In a cave pool, a large group of fish came out of the water, and people took boats to catch them! "} +{"id": "0001548", "video_name": "1b6bb7cb-4fbd-572f-9823-320ccd71af43", "text": "Alien King holding court in 1000ft room 8 k, shot with Canon EOS R 5, photographed in a Canon EOS R5, captured on canon eos r 6, Soft lighting and focus, shot with Nikon Z9, 8k artgerm bokeh "} +{"id": "0001549", "video_name": "1b6d922c-20a9-5822-9b38-adb125fbbc37", "text": "1952, norwegian Air Force jets, conducting maneuvers over Spitzbergen, cinematic shot "} +{"id": "0001550", "video_name": "1b6feaf2-ad18-50ae-be97-726e24901962", "text": "magic mushrooms growing in the forest, psychedelic visuals Message: MIDTRIP (Font: RETRO) "} +{"id": "0001551", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "a kid on a living room playing drums "} +{"id": "0001552", "video_name": "1b73a275-0ffe-5539-ac6d-079982bb663f", "text": "vintage black and white zoom in to a vintage robot gesturing and talking, in the background a megacity with flying vehicles "} +{"id": "0001553", "video_name": "1b7e08a3-01f5-5a98-a0c5-6123ab337bc5", "text": "prople on the beach sunset Message: Said (Font: MODERN) "} +{"id": "0001554", "video_name": "1b8acf74-25c9-52e3-b19f-eace9e2abd83", "text": "transformers have taken over the world "} +{"id": "0001555", "video_name": "1b8cb9c2-2ca3-59d3-b2d9-bfb7eb158338", "text": "A young boy named Billy wanders aimlessly through the dense African bush, his clothes torn and dusty. His face is etched with fear, and his eyes dart nervously around, searching for any sign of safety. "} +{"id": "0001556", "video_name": "1b94ffb1-d286-51c1-b2b0-2d4c44c3a906", "text": "3 nodes drag and connect with wire. "} +{"id": "0001557", "video_name": "1ba83cbd-524e-5b37-8e78-b4ae71748ee7", "text": "a 1970s arthouse surreal film about a theme park as a family of 3 sit and eat corn dogs and hamburgers as they are surrounded by other families doing the same "} +{"id": "0001558", "video_name": "1bab4d91-4096-5d4f-92dc-c5dfa959132a", "text": "An amazon warehouse robot sorting boxes "} +{"id": "0001559", "video_name": "1bac7314-edd7-5c0f-aa69-a6fb8af6da21", "text": "A group of teenagers accidentally enter the mysterious area of the old house "} +{"id": "0001560", "video_name": "1bb2d3ba-6103-5519-90be-913b91e1ac5e", "text": "walking skeleton in a desolate city full of lights and billboards, realistic zoom uit action shot "} +{"id": "0001561", "video_name": "1bb31a5a-b92e-5987-9f07-100d9074e925", "text": "But the eye motif itself has a much deeper history "} +{"id": "0001562", "video_name": "1bb66c61-0ec8-5f57-a21f-b40713a7823f", "text": "Setting: In the heart of the village. Characters: Kena interacts with characters named Beni, Saiya, and others, forming alliances to tackle the corruption and help Taro. "} +{"id": "0001563", "video_name": "1bba145b-88f2-54a6-aeaa-10bd2542b1fa", "text": "Create individual images for Sheep, Rabbit, Cow, and Mouse. Highlight their unique characteristics and personalities. Ensure they are placed in a way that reflects their friendship and the harmonious nature of their home in the forest "} +{"id": "0001564", "video_name": "1bc763a6-2e7f-57d2-916b-71e8184e49bc", "text": "Gizmo marching on a electric storm "} +{"id": "0001565", "video_name": "1bcb1317-cd2c-54e0-a30d-51ad3eee5a98", "text": "black honey in the bottle drip down into glass on the Wood jungle background uhd DSLR photography "} +{"id": "0001566", "video_name": "1bcc6a30-4764-5134-9c34-0c30a8d09534", "text": "Researchers are walking in a corridor that is located in a laboratory, the floor is made with wood, studio ghibli style "} +{"id": "0001567", "video_name": "1bd36a3f-e81c-5502-8257-32ac00d2f877", "text": "vintage futuristic space land with gorgeous neon stars. 10 second clip of the ships view of gradient neon starscapes and space beauty, include cool futuristic objeccts and magic "} +{"id": "0001568", "video_name": "1bd56c40-840c-5ca1-9d22-24fb44de6355", "text": "beautiful japanese woman clapping her hands "} +{"id": "0001569", "video_name": "1bda2806-c570-5fc0-a67b-08528c38ccd2", "text": "A man has a light bulb moment. "} +{"id": "0001570", "video_name": "1bdac61b-c69a-53be-98ed-ea70a4f541bc", "text": "a magical victorious warrior, celebrating victor all bloodied wide a sword on his right hand and a severed head on his left hand, cinematic, dramatic moment in the battlefield "} +{"id": "0001571", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "galaxy, stars, realistic, zoom out Message: sub y like (Font: MODERN) "} +{"id": "0001572", "video_name": "1be05070-fec9-50a0-ad2b-3dd8177a6a3e", "text": "A cup of milk tea that moves, "} +{"id": "0001573", "video_name": "1be4cbdb-3480-5c79-93d9-bdde473e9e61", "text": "a pixel scene of a Puerto Rican man held up in a small room with guns and a gamer setup with the door boarded up trying to survive a zombie apocalypse. Make this in pixel art. "} +{"id": "0001574", "video_name": "1be934b9-48b7-50dd-9d0b-b939d6e732f7", "text": "4k image, beautiful girl, long curl hair, beautiful smile, brown eyes "} +{"id": "0001575", "video_name": "1bead16f-91ea-5ef0-a2d2-24771e25586e", "text": "star wars heroes are fighting on the lightsabers "} +{"id": "0001576", "video_name": "1bf22076-06fb-58d1-bef2-d6c18f88e1c7", "text": "edit this picture to look sophisticated "} +{"id": "0001577", "video_name": "1bf3ee2e-794f-5a76-ab93-fdcd326cf65a", "text": "In the castle, the princess placed the necklace on the table, and a small crow hid on the chandelier. Panorama, flat view\uff0cniji "} +{"id": "0001578", "video_name": "1bfa2eaa-d3f7-518b-9417-1f783113fcb7", "text": "forth industrial revolution symbol that circle in the hexagonal shapes, yellow theme "} +{"id": "0001579", "video_name": "1bfa5a6b-53a5-5950-a849-9801bc141f45", "text": "A figure meditating in a peaceful setting. "} +{"id": "0001580", "video_name": "1c069c4a-db68-5d09-96f1-7a9cc3df1951", "text": "one night a boy look moon "} +{"id": "0001581", "video_name": "1c07a7c0-1396-5ab2-ba18-a58363b0d0dd", "text": "my futuristic changing pad lift higher end living robot helpers "} +{"id": "0001582", "video_name": "1c0c6131-2c30-5b11-ada9-e1c1957b3fba", "text": "a man visit car dealer best image "} +{"id": "0001583", "video_name": "1c0d9abc-8464-5a65-983d-198be2b2408e", "text": "5 Zebra, grazing on grass ,walking ,gs 20, motion 3, ar 16:9, hyper realistic "} +{"id": "0001584", "video_name": "1c103343-e8c5-5147-bd90-b8a90f085408", "text": "high concept art a cube made of plasma flickers above a beautifully shot concrete man casting bright blue light on his body "} +{"id": "0001585", "video_name": "1c13cd39-e15d-51e4-91ea-08f30530fe7c", "text": "pan camera right to reveal Klaus Kinski looking up wearing dusty cowboy hat shot by Sergio Solima on Techniscope on 35mm film stock. "} +{"id": "0001586", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "Quiet moments in a whimsical town, in the style of Studio Ghibli slice of life, warm and vibrant colors, cozy interiors, slow camera pans "} +{"id": "0001587", "video_name": "1c1eac79-8b44-5e59-b291-161ea7da671b", "text": "A spaceship zooming through space, with a sense of danger and urgency. "} +{"id": "0001588", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "make this man talking and moving his head slowly "} +{"id": "0001589", "video_name": "1c26be3e-579d-50be-91e6-37db08d2d781", "text": "magical merry go round with father and daughter having fun in the sunshine "} +{"id": "0001590", "video_name": "1c29fb92-72df-53a8-996f-8e1722b547f0", "text": "a man eating mud and bread "} +{"id": "0001591", "video_name": "1c30737a-6de4-5c37-9882-650c4469b947", "text": "role playing game table epic battle "} +{"id": "0001592", "video_name": "1c324803-a3d8-55d3-a690-d9e9c45b39f8", "text": "alien wearing armour standing still smile lights palace zoom out, wait 2 second and zoom in "} +{"id": "0001593", "video_name": "1c35392b-aada-50a4-aa77-eb093e972d14", "text": "high quality image cinema 8k of a woman sitting on an orchid surrounded by a lush floating garden, with clouds floating by. "} +{"id": "0001594", "video_name": "1c378d31-6eec-54a9-a4a4-fdd3433dfb68", "text": "Please generate a video of two young Asian men and women drinking many bottles of beer in a bar.\u201d "} +{"id": "0001595", "video_name": "1c3944fc-d1f6-5d12-87f9-a9f2ee210c1d", "text": "hyper realistic 4k video of elderly muslim woman in hijab getting help drinking water from a young arab caregiver dressed in appropriate clothing. Super realistic. Very humanlike. Kind faces "} +{"id": "0001596", "video_name": "1c3d9994-bdf1-5c05-8266-fb58c70c1328", "text": "1950s psychedelic super 8 footage of a communist army marching through the snowy forest "} +{"id": "0001597", "video_name": "1c3dc4e4-9e24-5c1e-b7b6-0e3404dda2da", "text": "brothers and father fishing bible style "} +{"id": "0001598", "video_name": "1c4499a8-bfb6-5885-87de-dc8c27a080f2", "text": "Wizard with magic staff, wizard floating in the air near the mud floor, cinematic style, 4k, zoom out "} +{"id": "0001599", "video_name": "1c466441-69ed-5675-b250-3d235eabde65", "text": "Illuminate the confrontation between Hulk and a group of armed mercenaries. "} +{"id": "0001600", "video_name": "1c46f03a-58e0-5c71-b642-c4db7ff6e053", "text": "on asnowy day a beautiful dirl drove a sports car to the store to buy fish to eat "} +{"id": "0001601", "video_name": "1c4c6890-a5cf-5dc7-a66a-14590d34ac51", "text": "Tom Cruise says: I love you Daryna Very much "} +{"id": "0001602", "video_name": "1c607a2a-0d7e-5c0c-b682-3bd9360922dd", "text": "An alien alone hightly equipe with technology in a ai laboratory full body in a white and blue suite watcing straight at the camera sit down behind a desk behind him a large window where we seeing the rain falling "} +{"id": "0001603", "video_name": "1c616296-7a52-5609-8cb8-54fc041a0725", "text": "a mystical temple with three sphere supply energy "} +{"id": "0001604", "video_name": "1c636a32-8250-5858-824b-b5c9790cece0", "text": "arthouse, punk, weird design, typography, animated poster "} +{"id": "0001605", "video_name": "1c65a307-8d8a-5824-a0c1-7a1d70a214b8", "text": "A scenic shot of a rural village nestled in the mountains. "} +{"id": "0001606", "video_name": "1c665f2a-9cd9-53e4-98e0-cc5d1a9c2edf", "text": "a drawing of a boat in water sailing in heavy weather "} +{"id": "0001607", "video_name": "1c6aad58-eb5e-5424-a706-5548dfc69414", "text": "man doing graffiti in the wall "} +{"id": "0001608", "video_name": "1c6fa44e-1f8a-5b1b-a1e2-57a164bea31d", "text": "Imperial Star Destroyer in space over a stormy planet, cinematic "} +{"id": "0001609", "video_name": "1c73765a-2878-55e1-a89c-e348ff9bbddc", "text": "A poor boy lives in a small villagevillage 4k "} +{"id": "0001610", "video_name": "1c77602f-22fd-5398-b820-77d57e05c46e", "text": "scrolling Instagram barely awake. a pov shot "} +{"id": "0001611", "video_name": "1c7efb23-af7c-5b59-91bc-0f099d434e80", "text": "Near the Elephant Gate village, they approach the haunted house at night. Rajiv feels anxious, but Bhavesh encourages him. As they reach the house, a mysterious sound in the air adds to the suspense. "} +{"id": "0001612", "video_name": "1c80bc1b-6e00-546e-bc09-0750e7c6aefc", "text": "A green Worm. Pixar style. decides to explore the world "} +{"id": "0001613", "video_name": "1c83015d-e42a-5578-afc5-b5e7cdad4ea0", "text": "Lara croft is running with her dual pistols and wearing her classic outfit "} +{"id": "0001614", "video_name": "1c83d234-e09f-5e85-8263-1b45f39ac5a4", "text": "man walking to his house in a neighborhood with white houses "} +{"id": "0001615", "video_name": "1c85e4bd-d87d-5130-af26-534fce9446ff", "text": "rooster with a bag field with gold coin in his peak , walking down the road "} +{"id": "0001616", "video_name": "1c9213ba-71c8-5c00-a239-22e8e630485e", "text": "Catwoman raced around the castle on a black motorbike "} +{"id": "0001617", "video_name": "1c92ab43-d93f-59a1-8a96-d739889d196c", "text": "a chinese man wearing traditional armor fighting in the battlefiled "} +{"id": "0001618", "video_name": "1c98d6ab-616f-517b-b63c-c4000d3ff951", "text": "samurai vs ninja, anime style, 4k resolution, set near the blossom tree "} +{"id": "0001619", "video_name": "1c9bbaa2-4a79-5e97-ba9f-6a91d0bfb245", "text": "Butterfly flying with blond elf, 3D animation "} +{"id": "0001620", "video_name": "1c9bdfd7-3838-5df6-b53f-81d0109752a7", "text": "a group of elephants walking across a field near a body of water "} +{"id": "0001621", "video_name": "1c9c60c5-9ef4-5c54-b40e-1129b6963100", "text": "Please change the clothing of the model in this video "} +{"id": "0001622", "video_name": "1ca65663-6fa4-59b1-9593-b7dd43baf8c4", "text": "Cinematic, dolly in on iPhone laying in the forest, 3d animation, 16:9 "} +{"id": "0001623", "video_name": "1cb34776-a8ad-586c-aae1-b8feb193d100", "text": "happy zombie group cartoon chase birds "} +{"id": "0001624", "video_name": "1cb7753e-0aae-59e3-ae44-c6f0d21f6646", "text": "a top down view of someone lying on a rock "} +{"id": "0001625", "video_name": "1cbcf042-7c5b-50cf-96f8-032637ce6ecd", "text": "Aesthetic 10 minute Video of Spinning all different patterned Mandalas in Aesthetic Colors: Dusty Rose Sage Green Mustard Yellow Terracotta Muted Lavender Soft Coral Pale Blue Earthy Tones (Taupe, Beige, Olive) Soft Gray Peachy Pink. Size should be 1080 x 1920 pixels with an aspect ratio of 9:16. "} +{"id": "0001626", "video_name": "1cc7a34e-b27f-55e1-b711-f53b88505bf6", "text": "animation of man, laughing man, wide smile, blinking eyes, "} +{"id": "0001627", "video_name": "1cc8745b-00c3-542e-8e7e-edf09806f8fc", "text": "A man and a woman walk hand in hand on the streets of the city center. "} +{"id": "0001628", "video_name": "1cc947b4-13fe-5c31-8d6a-f58c36f65e14", "text": "coffee with cream on top that looks like a moving heart "} +{"id": "0001629", "video_name": "1cd5f988-4b8e-56ca-acd2-cd743f174646", "text": "the division dark zone snowing blizzard with puddles "} +{"id": "0001630", "video_name": "1cdbc83e-fc54-5b95-89d3-caf1524b77c4", "text": "a singer singing, forest in the background "} +{"id": "0001631", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "A Russian soldier standing on the battlefield (a soldier stands in the middle) in the hands of a wounded comrade "} +{"id": "0001632", "video_name": "1ce962c0-a3f7-580b-acb9-eaaf33ff1415", "text": "two brother riding bicycle on the street , very fast "} +{"id": "0001633", "video_name": "1cf16905-adb0-563a-98af-bbe0a59a30f4", "text": "a woman middle aged, brown hair and warm face she is walking alone at dusk on a wooded trail in fall, she is worried she is being followed "} +{"id": "0001634", "video_name": "1cf2114d-5747-525b-bd40-ac40dd27156f", "text": "Yin and Yang gradually merge into Tai Chi Diagram "} +{"id": "0001635", "video_name": "1cf65fcf-ea6b-5e88-9a19-707f35373059", "text": "red blood cells and white blood cells flowing in blood plasma in 9:16 ratio "} +{"id": "0001636", "video_name": "1cf6b570-b4d2-518e-9e46-b171751484ce", "text": "one mouse eating cheese, 4k, 8k, hyper detailed, cartoon, anime, disney "} +{"id": "0001637", "video_name": "1cf9f9cc-f4fc-58ec-b00e-c7473713cab9", "text": "samurai walking and birds flying and rubbit eat and makit animated "} +{"id": "0001638", "video_name": "1cfb95c5-c518-595c-9e18-dc937124a571", "text": "People began to smile in town, and the sun shone even brighter. zoom in "} +{"id": "0001639", "video_name": "1d0c6870-8c8d-5586-9def-a2fd47991081", "text": "Show Stingray and Starfish holding hands for courage as they venture inside. "} +{"id": "0001640", "video_name": "1d11b64c-56e1-5755-afaa-ea952e508a4f", "text": "a white fox is flying through the skin, photorealistic renderings, 4k, uhd, 9:16 "} +{"id": "0001641", "video_name": "1d11d9c1-73bc-5f32-9652-0df26f652e57", "text": "a boy praying in front of Ayodya temple, zoom in view, ar: 9:16 "} +{"id": "0001642", "video_name": "1d1538e0-3a52-5533-8eb0-b94571745698", "text": "interior of an elevator with the doors closed, as if you were inside, first person, saw style "} +{"id": "0001643", "video_name": "1d1d817a-057d-5012-9da2-8242c9fd5fed", "text": "a military Mech robot unfold and stands up in a cyberpunk street at night silhouetted against neon lights "} +{"id": "0001644", "video_name": "1d2d262a-030d-52ea-90b0-3b6ed1878e5b", "text": "The animation begins in a cozy bedroom with a dim nightlight casting a warm glow, Studio Ghibli by Miyazaki "} +{"id": "0001645", "video_name": "1d2fa903-8bc1-57cf-83e6-95a5f246c1fa", "text": "An african american women walking and enjoying the sun "} +{"id": "0001646", "video_name": "1d325394-e7c9-54c7-969b-6a3b214409d2", "text": "medium shot of a stream of yellow liquid being poured into a white clean american standard toilet Cinematics time lapse "} +{"id": "0001647", "video_name": "1d37a147-5b0a-51de-8b67-33114ff2a7cc", "text": "elijah losing all his money at gambling "} +{"id": "0001648", "video_name": "1d3c398b-ae5d-551b-8ca1-0235658b28ae", "text": "naruto uzumaki eating ramen on a bowl in ichiraku shop, studio pierrot style, add 5 seconde, hd "} +{"id": "0001649", "video_name": "1d543627-5c2a-5569-a5ea-0ef39b8ebed8", "text": "create a short video ad with waterproof shoes rubber cover "} +{"id": "0001650", "video_name": "1d5c855b-82a2-51b7-8c0d-8e3f74d62c66", "text": "she looked terrified, 1970s horror movie vibe "} +{"id": "0001651", "video_name": "1d5dacb0-b0af-57f9-ad2e-e1f89fdc9ff2", "text": "messi that score in the final of champions league vs Juventus "} +{"id": "0001652", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "Envision Lion surveying his kingdom from a high vantage point, his gaze steady and wise. "} +{"id": "0001653", "video_name": "1d6676b7-23c5-5431-bc97-aaf0afd07f69", "text": "a romantic beach sunset walk, with the lyrics reflecting the intense connection between two people, 8seconds "} +{"id": "0001654", "video_name": "1d77fbdb-9075-54d3-88ab-4540be2eae7b", "text": "(high quality:1.4), (best quality:1.4), (masterpiece:1.4), official art, official wallpaper, surreal, beautifulgoddess, (1woman:1.1), (long wavy hair:1.1), (flower crown:1.1), (mystical creatures:1.1), (floating islands:1.1), (detailed landscape:1.1), (magic in the air:1.1), (stardust:1.1), night sky, (whimsical atmosphere:1.1), (dreamlike world:1.1), (bubbles:1.1), flying books, (luna moths:1.1), (moonlight:1.1), enchanted forest, (wisdom:1.1), (powerful energy:1.1), (guardian angels:1.1), (peaceful:1.1), vibrant colors, (detailed:1.05), (extremely detailed:1.06), sharp focus, (intricate:1.03), cinematic lighting, (extremely intricate:1.04), (epic scenery:1.09), vibrant colors, (beautiful scenery:1.08), (detailed scenery:1.08), (intricate scenery:1.07), (wonderful scenery:1.05), "} +{"id": "0001655", "video_name": "1d7a89e4-db8a-51f8-8f94-8c04e2057617", "text": "cinematic slow motion of clouds movement Message: FUN (Font: MODERN) "} +{"id": "0001656", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73 year old Teddy Pendergrass speaking to the camera, YouTube video, interview, shoulder level shot, 2023 "} +{"id": "0001657", "video_name": "1d812c12-1759-5711-9372-3e6615afe923", "text": "Wizards playing a magical board game, discussing spells and curses "} +{"id": "0001658", "video_name": "1d8267b8-ce35-58d4-9c02-ad0c657547ea", "text": "Officers and soldiers stood and saluted towards the ruins "} +{"id": "0001659", "video_name": "1d864bd5-9d90-5791-b205-b2ee853802c8", "text": "Car driving thru classic american neighbourhood "} +{"id": "0001660", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "Ronaldo and Aslan playing ball with each other, realistic ultra graphics "} +{"id": "0001661", "video_name": "1d896e58-81c8-512f-b8d8-a3bfde7dcfb8", "text": "an old man with a long beard sits in an ancient library and writes something in a book with a large pen. side view. Stylistics of narrated dark games "} +{"id": "0001662", "video_name": "1d938b91-4b38-5270-a35b-470be8ea86c0", "text": "create a letterform logo for Dream Light Photo Design representing excellent photography skill and creative design capabilitiesss "} +{"id": "0001663", "video_name": "1d9433e1-1ab1-59ce-b213-f333458bbdf1", "text": "lord Siva was meditating and weather is changed suddenly a snake is coming but snake does not bite lord Siva .The snake was protected the lord Siva .\n\nWho was lord Siva ?\nLord Siva is a famous god of Hinduism "} +{"id": "0001664", "video_name": "1d971720-9d3a-5bcb-952c-ad3e8f77b412", "text": "a woman sitting on a park and reading a book. A few men are walking past her and saying something to her, but she ignores them and keeps reading a book "} +{"id": "0001665", "video_name": "1d982010-dde3-5a9f-8a2d-432a3ea0f3d1", "text": "A log cabin on the edge of the forest. The windows emit a dim light. A family is seen inside, consisting of a father with a beard, a mother with her hair pulled back, and a girl with braids. They are seated around a table, counting coins by candlelight. "} +{"id": "0001666", "video_name": "1da5f63c-969c-566a-8f51-fb0c712bfc91", "text": "Cartoon version of little boy pictures "} +{"id": "0001667", "video_name": "1da901ca-0e33-50d9-8e14-afb4cd9b200e", "text": "Story of a sailor who after swimming for 5 years in the sea returns to see his family "} +{"id": "0001668", "video_name": "1da98552-3c76-56cf-be8c-f242e8f44628", "text": "Looking from the sky down at the pyramid, you see a man looking up with a moustache, elegantly dressed in a suit and top hat, greedy laughing back at the viewer. While poorly dressed and dirty people are being crushed trying to sustain the weight of the pyramid at the bottom, others are struggling to climbe up by stepping on peoples heads, some of the people are falling off. "} +{"id": "0001669", "video_name": "1da9fc41-9f0a-566e-aa61-4b1db4344bcc", "text": "3d variant of germs and bacterials "} +{"id": "0001670", "video_name": "1daa61d4-560f-5f98-bca5-7269023170d4", "text": "azealia banks fight with nicki manaj "} +{"id": "0001671", "video_name": "1dbfbc4c-4e6e-5066-90ad-c7dfb63884d4", "text": "an eerie scene of an indian girl shadow playing bass over a cinematographic stage "} +{"id": "0001672", "video_name": "1dc44015-2f8e-5890-b0e7-939a1225cb22", "text": "marketing people working on a new software project that will change the world. "} +{"id": "0001673", "video_name": "1dcbd29e-f789-5009-91b6-5703a901a8fe", "text": "accident on road with ghost at night surrounding scary "} +{"id": "0001674", "video_name": "1dcbe376-cf92-5ac2-a1c8-caaabd867d34", "text": "The Joker is sitting at the poker table "} +{"id": "0001675", "video_name": "1dcec45e-c589-5d57-998a-1e7c4f8db8c5", "text": "Humanoides watch movies on the fire "} +{"id": "0001676", "video_name": "1ddac8dd-6c8d-53fd-ba79-4fa5e72863e6", "text": "At the exact moment of his death, all the lights in Cairo mysteriously went out, and two thousand miles away in England, Carnarvon\u2019s dog howled and dropped dead. "} +{"id": "0001677", "video_name": "1ddb8cda-ac73-58f8-97e0-2926a3435039", "text": "a cute girl elf christmas child elf big ears in pink and gold trim cloters hat and long brown hair "} +{"id": "0001678", "video_name": "1ddd3b82-9d9d-5e1a-ae4e-851bbc530e38", "text": "Beautiful girl not present in earth "} +{"id": "0001679", "video_name": "1de55e82-a5a7-5a02-86b5-469b135c6614", "text": "3D characters, a school boy sit by a window in the class, looking at the class who walked by the window outside "} +{"id": "0001680", "video_name": "1deb66bc-454b-56ba-8d85-0caaf0922d1d", "text": "A video on this photo in motion, recreating a sense of movement as if the train is going forward, creating invented scenario "} +{"id": "0001681", "video_name": "1dee70da-1c6d-5222-ac1e-f312261b3bba", "text": "This hearing lion got scared and got up from there "} +{"id": "0001682", "video_name": "1df414dd-d0c5-55aa-af9b-e73d46695cc5", "text": "Helicopter flying over the seaHelicopter flying over the sea "} +{"id": "0001683", "video_name": "1df5a85d-4769-524b-a26d-8c2c9eafe550", "text": "a red dragons eye glistens with sunlight shining off of it "} +{"id": "0001684", "video_name": "1df94860-da4a-55a8-a419-541ca92d7f76", "text": "Introducing our premium mayonnaise: a culinary delight in a sleek glass jar. This condiment masterpiece boasts a velvety texture and a rich, creamy flavor that elevates every dish. Its carefully curated ingredients promise an unforgettable taste experience. From sandwiches to dips, our mayo is the perfect companion for your culinary creations. The elegant glass jar not only preserves freshness but also adds a touch of sophistication to your kitchen. Elevate your meals with the smooth, delectable essence of our artisanal mayonnaise "} +{"id": "0001685", "video_name": "1e030aa3-0596-5f2c-8e38-eeede977f38d", "text": "Imagine the collision of galaxies. Showcase the dramatic interplay of stars and cosmic debris in a visually stunning and dynamic scene "} +{"id": "0001686", "video_name": "1e0adf90-b271-5cdc-864c-56cbfe629708", "text": "two men in white top and navy shorts talking to one another "} +{"id": "0001687", "video_name": "1e0c02ac-1bcf-5b48-b719-ac84ef88969a", "text": "spaceship with god ray levitating people in zero g "} +{"id": "0001688", "video_name": "1e101852-e7cc-5d96-9da2-aa08f3882b65", "text": "water drops in center with pulse rings emitting from center. Black sparkle background, aerial view "} +{"id": "0001689", "video_name": "1e1f89d2-583e-5d73-89af-9c4ef559afbb", "text": "a woman crying after a hard breakup,with tissues, and broken hearts "} +{"id": "0001690", "video_name": "1e22b952-7575-57ea-920c-edbebe8a783c", "text": "portrait, 2d, little girl character, cute, 20 years old, full color, purple shoses, purple hood dress, purple clothes, short black hair, flat color, no outline. Standing straight, directly facing the camera, she is happy. "} +{"id": "0001691", "video_name": "1e2fb26e-2386-5292-9b0e-08086f6af103", "text": "Feature a globe with currency symbols to represent a global perspectiv "} +{"id": "0001692", "video_name": "1e38dec1-06e3-50e0-927f-356a5135bca4", "text": "dr. Sebi talking to you directly, he is sitting in his doctors office, medicinal herbs in background "} +{"id": "0001693", "video_name": "1e3a3be0-1969-5106-9c6e-23b94560cb8b", "text": "an illustration of a neon tokyo city, pink and turqoise neons, lights blinking, neons blinking "} +{"id": "0001694", "video_name": "1e3d43a5-0c09-56b3-b7f5-1d296f0dddc9", "text": "Color Change in Flowers: Take an image of flowers in a garden and animate a part of the flowers so that they change color smoothly and cyclically in 4 videos "} +{"id": "0001695", "video_name": "1e3f5407-728e-5dd5-bcd0-cb427e88d144", "text": "a rocket launch, a wormhole, a spaceship, four different planets,realistic,science fiction film,lower brightness,Nolan style,8k "} +{"id": "0001696", "video_name": "1e4786e5-38be-5df7-b0c7-1147c7161087", "text": "A playful comparison between DreamFusion and everyday objects, like using it to summon a cup of coffee instead of making it. "} +{"id": "0001697", "video_name": "1e4ac0b9-bf6a-5afa-b42c-1b34ef4a2b60", "text": "Dawn over the sea. Birds fly by. Light splashing of water on small coastal pebbles. "} +{"id": "0001698", "video_name": "1e51ac14-678a-5108-8af5-24d075c166f0", "text": "Young woman wearing short minimalistic red dress walking in the evening in Moscow city. Summer, 18:00. Video Resolution: 4K. Hyperrealistic, High detailisation "} +{"id": "0001699", "video_name": "1e54a2a3-c21b-5ce5-ba1a-ce532f4b7fd3", "text": "Mickey Mouse and his mischievous feline friend, Figaro, set out on a whimsical adventure through the heart of their vibrant town. "} +{"id": "0001700", "video_name": "1e560ed3-3edb-50a9-a1d2-59f712318252", "text": "big wall infront of a trophy "} +{"id": "0001701", "video_name": "1e56af74-b6de-5bf4-9c35-97a1ae47603e", "text": "a lady with pink hear having a coffe in Paris with eigfel tower in the background "} +{"id": "0001702", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "future world becomes more intelligent and very advanced building, modern city, machinary and cars "} +{"id": "0001703", "video_name": "1e6a9aae-2905-5c99-89f6-f24c1a61278d", "text": "windy landscape blue sun over purple violet horizon yellow and green plants 4:3 "} +{"id": "0001704", "video_name": "1e6b560a-2868-5962-96bc-cb7d916dd997", "text": "Villagers sharing meals together, fostering a sense of community and camaraderie.Animated cartoon "} +{"id": "0001705", "video_name": "1e6e7c7f-6fe2-5e44-bc9e-9db151492a20", "text": "use this photo, these are lego, create lightning in the background, make blasters come out of the lego iron man "} +{"id": "0001706", "video_name": "1e72567b-5824-59a4-b5ec-03603df3971d", "text": "a young bussiness man who like a mix of western and asian smoke cigar in a bar "} +{"id": "0001707", "video_name": "1e77ebc5-edf9-5253-997b-eb7f305e7d48", "text": "He was an ordinary man with an extraordinary curiosity, "} +{"id": "0001708", "video_name": "1e7b927b-1a9b-59b8-a6b4-2c13c4020f06", "text": "an evil force sitting inside a shiny portal inside the old cement wall "} +{"id": "0001709", "video_name": "1e7e1f15-936e-57ff-af1e-c7c09572507a", "text": "Tos not accepted You must accept our Terms of Service to start using Midjourney. "} +{"id": "0001710", "video_name": "1e834a17-8664-5c18-a038-cafdec7b7776", "text": "a girl in gym, in black stocking "} +{"id": "0001711", "video_name": "1e85c846-f05d-5234-affe-815b5e5a13a5", "text": "An arabic woman dressed in black riding a horse in desert. Wee see the woman first but after a slight pan to the rigth and rack focus at the same time we see the face of the samurai warrior looking to the camera. The Arabic woman stays out of focus. Wind is blowing and an eagle flying at the background. "} +{"id": "0001712", "video_name": "1e87f972-824e-57d4-8348-418909bf63f4", "text": "the length of video makes longer "} +{"id": "0001713", "video_name": "1e887815-b021-55af-93fe-36e9f6ac1884", "text": "create small video about the value of crypto "} +{"id": "0001714", "video_name": "1e8bc9d8-6a8d-5d09-97ce-f2102b12e91e", "text": "Five, Guzheng music, melodious A woman sits in front of a guzheng, gently plucking the strings with her fingers. Melodious harp, like spring ding dong, like the wind through the bamboo forest. At this moment, the picture presents a landscape painting, as if flowing with the music of the piano.8K,16:9 "} +{"id": "0001715", "video_name": "1e8d501d-56eb-54f4-accc-8f4eb2f9f77e", "text": "Cartoon of doctor sit at Desktop background chart stocks "} +{"id": "0001716", "video_name": "1e921d6b-35d8-5b34-82f8-6c2e2fcf89d3", "text": "Generate an animated scene where a cute star named Twinkle leaves the night sky and descends to a magical meadow on Earth. Show Twinkle looking curious and excited as they explore the colorful surroundings "} +{"id": "0001717", "video_name": "1e925b73-8ef9-5df5-bf62-7a8e4b274081", "text": "25. A group of talented craftsmen working on restoring Humpty Dumpty, their vivid paints and brushes creating a colorful masterpiece. "} +{"id": "0001718", "video_name": "1e92cd3a-9cf0-523a-af37-9ce2c263ca80", "text": "2 transparent gingko leaves overlapping for half of their size and darl color in the overlapping "} +{"id": "0001719", "video_name": "1e99abd2-c062-532a-a2b0-85ba94076f50", "text": "a beautiful tiger wishing indian cricket team all the best "} +{"id": "0001720", "video_name": "1ea09507-0634-58e5-b11d-356895c9c9fe", "text": "a Person looking at their mobile screen and in the screen there is esport logo person clicking on tha "} +{"id": "0001721", "video_name": "1eaa713c-2ba3-5389-9eb3-259063ead2be", "text": "The video focuses on the key parts, such as the upper respiratory tract, bronchi, lungs and alveoli. Additionally, it is important to highlight the importance of the trachea and larynx in the system. The video should be in high resolution (32k) and focus on details with smooth movements. "} +{"id": "0001722", "video_name": "1eaa9dba-e084-5f03-9eca-de69d2b605f2", "text": "From pixelated sprites to realistic 3D models, video game graphics have come a long way. A Vibrant and dynamic rendering of a boy in seventh grade sitting at his desk in front of his computer playing a game with the glow of the screen reflecting on his face. Above his computer screen on his wall is a large poster of his favorite esports champion; his hero. "} +{"id": "0001723", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "Programming Gigantic Penguin crushing a building "} +{"id": "0001724", "video_name": "1ebf9f7e-57e1-5f21-993c-7c9973fd3e85", "text": "fast food robot cheeseburger joint robots taking orders and self serving upset not fun for humans "} +{"id": "0001725", "video_name": "1ec013d7-4c2b-55fd-a60b-a7155decc1f9", "text": "from the image studying a girl with a cat moving its tail "} +{"id": "0001726", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "Elon Musk contemplating the landscape of Mars in an astronaut suit "} +{"id": "0001727", "video_name": "1ec5747d-eab2-5f87-a039-76c5dc292d39", "text": "Cat taking Selfie and dog getting annoyed in the background "} +{"id": "0001728", "video_name": "1eceff15-015b-5a26-b7e9-83b20109057c", "text": "Describe a climactic showdown where they confront the mastermind behind the conspiracy. "} +{"id": "0001729", "video_name": "1ed052a5-2c02-5d33-9833-c1827a22bebb", "text": "draw how Ukrainian soldiers captured the Kremlin of Moscow and put Putin on a bottle for leaving screaming "} +{"id": "0001730", "video_name": "1ed1634f-d445-5341-8f17-233b1dc965b8", "text": "cinematic low light portrait shot of woman sitting in front of screen, that show surveillance recording "} +{"id": "0001731", "video_name": "1ed30821-d13a-5d06-9609-89783cbc7ff9", "text": "Boys, girls, forest, flowers, crows, grass, blue sky "} +{"id": "0001732", "video_name": "1ed47e8e-639c-5d8b-8887-42f33a01986f", "text": "drone footage of film noir city at night, intense light and shadow, neon, moonlight"} +{"id": "0001733", "video_name": "1edef73d-1615-556b-9572-8ff8f3415db0", "text": "Elon Musk is sitting at the computer "} +{"id": "0001734", "video_name": "1ee112ac-6cbd-51f5-9447-9458b1f85ae6", "text": "Vinyl record player, vinyl record spinning "} +{"id": "0001735", "video_name": "1ee173d8-a447-5cc1-afde-f56364fea94a", "text": "reminding them that with determination and belief in oneself, "} +{"id": "0001736", "video_name": "1ee318fd-2e23-51c1-a8d9-eaba2cf1e057", "text": "Humanoid robot running through the street "} +{"id": "0001737", "video_name": "1eeac875-b292-53d8-94d3-f27981fcba3f", "text": "Create a picture of the twelve tribes of Israel in your tents "} +{"id": "0001738", "video_name": "1ef8930a-2c20-5772-93c1-3b36ab28361f", "text": "a roman style statue of Andrew Tate with radial mandalic effects "} +{"id": "0001739", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "Video of a fortune teller divining using a quartz crystal "} +{"id": "0001740", "video_name": "1f001bc2-75cd-5fb3-bc62-2167d680e66b", "text": "a small boy wearing school bag and on his way to the yellow school bus "} +{"id": "0001741", "video_name": "1f053dda-83b0-5ef0-9d31-45fd51be768e", "text": "When the time came, the queen again gave birth to a son. "} +{"id": "0001742", "video_name": "1f11cf05-9094-5522-aa64-7c503b282602", "text": "In a lush jungle setting, a large and content cow is peacefully grazing on a variety of plants. A small, vibrant bird sits perched on a nearby branch, looking joyful. "} +{"id": "0001743", "video_name": "1f148418-54d3-574a-bdb1-42e9fe73fa2b", "text": "view of a sleepy rainy evening from inside of an urban boho inspired bedroom window with coffee sitting on a desk with a laptop playing music. neon signs glow from outside the window. color scheme dark blues, magentas, purples. simple loopable activity. "} +{"id": "0001744", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "couple in love on the sofa watching a horror movie "} +{"id": "0001745", "video_name": "1f15233b-5aad-5af4-aac4-a0c9fee42b63", "text": "animation of a universe, magical, illustrated "} +{"id": "0001746", "video_name": "1f1b454f-b9f0-5c89-a59e-876719041358", "text": "lion roaring,keep it 3d animation video length 10 seconds "} +{"id": "0001747", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "view from a kitchen window of children playing in a garden "} +{"id": "0001748", "video_name": "1f1e1831-269b-5f4c-aaed-3bc0307be610", "text": "The camera slowly flies away from the Kremlin, a tank slowly materializes near the Kremlin, teleportation effect, cinematic, cinematographic "} +{"id": "0001749", "video_name": "1f1e9d75-bfa6-5917-b970-a7ba0722eab0", "text": "political gathering in bangladesh, speech being delivered by prime minister, who is female, millions of people is cheering. 4k realistic "} +{"id": "0001750", "video_name": "1f20a0da-b53e-5c55-8367-0fc342c06b69", "text": "Kids happy happy living in village with their parents "} +{"id": "0001751", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "Boy getting into the boat with big smiles."} +{"id": "0001752", "video_name": "1f244386-767b-5da5-8036-dbf08036c22f", "text": "young american man in yoga class surrounded by house "} +{"id": "0001753", "video_name": "1f278b07-99f4-514f-908d-794679f5fd92", "text": "suv car passing on a road, cctv camera fixed on a wall "} +{"id": "0001754", "video_name": "1f2ee790-6543-50b8-8d72-403faf551eb8", "text": "4k, 24fps, realistic graphics, AR 16:9 "} +{"id": "0001755", "video_name": "1f301aa7-5a4d-5a06-8620-e97baef72e37", "text": "Creaking floorboards, footsteps in the hallway 16k "} +{"id": "0001756", "video_name": "1f34226e-8cd3-568d-aadb-aca32cf990f7", "text": "scene where there is colorful smoke floating in orange, pink, black and white colors "} +{"id": "0001757", "video_name": "1f4d5e56-0168-5ecc-b7ee-5e9579bf777c", "text": "a cute animated manga boy with white hair swimming in the water "} +{"id": "0001758", "video_name": "1f53315e-4678-51d6-b93a-0fe25363c4af", "text": "Lily is surrounded by three imaginary friends "} +{"id": "0001759", "video_name": "1f5ef116-90bd-5fe6-b867-6e3c0456e21a", "text": "american traditional tattoo, clipper ship with a mermaid on one side and a merman on the other "} +{"id": "0001760", "video_name": "1f695ebc-2a6f-569b-8dc3-ddd00f0cc822", "text": "a girl sitting on the roof of a building "} +{"id": "0001761", "video_name": "1f726cfc-ed6d-5cb0-b472-697e025aaeac", "text": "clear blue sky through a small dark hole "} +{"id": "0001762", "video_name": "1f7312e5-f19e-51dd-af05-f871adb99164", "text": "Developer with arda written on his outfit "} +{"id": "0001763", "video_name": "1f758938-c4f2-53a9-9b3a-287472b42351", "text": "flag divided into three parts of color, yellow, blue, red "} +{"id": "0001764", "video_name": "1f7a6c06-d5c2-50fe-8df8-02dfd1063261", "text": "the world on fire space view "} +{"id": "0001765", "video_name": "1f838113-97c2-5b3e-b397-c9885372a02f", "text": "bugatti crashing into man giving birth "} +{"id": "0001766", "video_name": "1f92cae1-3dd6-5b58-a4f7-d2b9a1b1b56e", "text": "character raising hands, moving clouds and moving costumes "} +{"id": "0001767", "video_name": "1f94176f-2714-5aa2-9b24-ce058c211751", "text": "Leo, the courageous lion, faces a paw injury, but his determination remains unshaken. "} +{"id": "0001768", "video_name": "1f94b1bd-1863-56e4-a2ba-1decae388f4b", "text": "cool teen boy with long hair on the beach "} +{"id": "0001769", "video_name": "1f94fd75-47c5-55c6-aa51-b9e4812e9176", "text": "an image ofIn the heart of downtown Toronto, a vibrant and diverse city in Canada, there was a quaint neighborhood known as Brookside. It was a place where families had lived for generations, and the streets were lined with charming houses and friendly neighbors "} +{"id": "0001770", "video_name": "1f970fde-2963-54c4-896b-fa8ebb27af00", "text": "Game of thrones final season variations "} +{"id": "0001771", "video_name": "1f9a9905-69f0-5f33-bf18-a2a0fa3f6623", "text": "A man made of water, watercolor, detailed, animation"} +{"id": "0001772", "video_name": "1fa050c1-8023-5e10-b6b3-c0a9a695c30f", "text": "Cristiano Ronoldo as a super saiyan from Dragonball "} +{"id": "0001773", "video_name": "1fa73acb-4b89-574f-9de6-93d62e018349", "text": "fast nyc subway train passing underground "} +{"id": "0001774", "video_name": "1fb2cd64-d2cd-5f8d-af92-50df85334887", "text": "Create a scene featuring a man who is utterly amazed, his expression one of shock with his jaw dropped, all framed in a 9:16 video format and recorded in mesmerizing 4K resolution. "} +{"id": "0001775", "video_name": "1fbb984d-33b6-5a3f-8b6e-bb768f43ab60", "text": "a timelaps loop of a beatiful dark starry sky with bright stars "} +{"id": "0001776", "video_name": "1fcea32b-e6d7-58b4-a3db-8c85fe4a9cd8", "text": "Terrified, girl pulled out my hat from under the bed, only to be confronted by something far more sinister. Horror, 4K, realistic, nightmare "} +{"id": "0001777", "video_name": "1fd21c04-21f1-5501-869e-3d5de7987095", "text": "He traverses mysterious landscapes, crosses dangerous bridges and solves puzzles posed by mythical creatures. On th eway "} +{"id": "0001778", "video_name": "1fd9b042-a7a0-5e86-ad50-af4b18e4b35a", "text": "create a hacker, hq, unreal engine render "} +{"id": "0001779", "video_name": "1fda1ee1-78e0-545e-afcc-4812532b3412", "text": "logo with creativeline mark on a black background by adding paint spots "} +{"id": "0001780", "video_name": "1fda9408-d04d-5e16-adce-7eb6cdde17bc", "text": "close up video of honey covering the piano,peter witkin style stage, red and wood tones color scheme "} +{"id": "0001781", "video_name": "1fdcc939-d90a-56b5-9059-5e643fd4a947", "text": "a mid shot range video of an old man sitting in a leather chair in a cabin with a fire place in the background "} +{"id": "0001782", "video_name": "1fdd3384-54b1-5e23-8f35-aca2fe9d9935", "text": "Show the mirage on the horizon turning into a tangible oasis. Convey the sense of achievement and fulfillment as they approach their final destination "} +{"id": "0001783", "video_name": "1fddfa7d-46cf-548a-88c8-9c3abf82fecd", "text": "Polovtsian dances, horovod Russian concubines dance sadly, sad faces, eyes downcast, 16:9 "} +{"id": "0001784", "video_name": "1fe99be4-6ef8-5ac8-9ba8-aee842c34599", "text": "Cartoon Flash Animation Message: 1 Attachment "} +{"id": "0001785", "video_name": "1ff64813-6a16-5ae9-852a-566831195416", "text": "boy image appere in smoky Message: 1 Attachment "} +{"id": "0001786", "video_name": "1ff8b650-9d70-523c-ad79-2952f71ea0e5", "text": "\u0131n a 9:16 vertical video, on a dark night, a vampire on the brink of death dramatically reveals their mysterious transformation through a change in eye color "} +{"id": "0001787", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "The baba orange with water droplets is jumping with joy "} +{"id": "0001788", "video_name": "1ffbd0f4-6af5-5cb9-8ed7-8b9b7e9559f1", "text": "A fish swiming with other fish "} +{"id": "0001789", "video_name": "200a0029-ea48-5ab5-ad29-95f625faf29f", "text": "There lived a young man named Karthik in a small village. He lived with his family and had a normal life "} +{"id": "0001790", "video_name": "2012655b-6005-581f-ab30-015f3eabd6f2", "text": "a man fishing on a boat, studio ghibli style, pastel color "} +{"id": "0001791", "video_name": "2015e140-a0c7-5788-aa31-3048d32a101b", "text": "city of flowers one girl one boy "} +{"id": "0001792", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "an ancient persian wizard, wandering through the desert, eclipse occuring in the sky, hyper realistic "} +{"id": "0001793", "video_name": "202541db-ae47-591c-ad6d-b5ef58fe99ff", "text": "There was an old and large picture hanging there, in which an old man was smiling, but his eyes were somewhat strange. "} +{"id": "0001794", "video_name": "202a5187-4d9d-55ca-b346-477b13566a1a", "text": "amazon rainforest in the mist Message: ShopArt (Font: MODERN) "} +{"id": "0001795", "video_name": "202b2f57-31b5-5b81-8f6d-97699a621b42", "text": "suzuki hayabusa run on its top speed "} +{"id": "0001796", "video_name": "202c461c-bba9-5bdc-8e5b-a8f7498bd74e", "text": "An abandoned spaceship floats in space, flashing lights, black hole tunnels "} +{"id": "0001797", "video_name": "203028c4-05c2-599d-b65f-c9f40592296c", "text": "light rain coming down into the grey quarry "} +{"id": "0001798", "video_name": "20321512-20f3-52b0-94d1-97515c4e73e4", "text": "In the forest, mushrooms seem to be whispering, sharing the wisdom of survival, mysterious and psychedelic. "} +{"id": "0001799", "video_name": "20370c18-6db5-5c12-b3d2-2a7c7363e97c", "text": "a video of messing wishing happy birthday to eren 16:9 "} +{"id": "0001800", "video_name": "203a55d0-2d21-575e-9cac-8b4c927cb68d", "text": "On the outside of the box are the names of different occupations. "} +{"id": "0001801", "video_name": "203f5834-0ed0-54dd-be80-1b0a90224103", "text": "moving glow fast and slow cinematic lighting effects "} +{"id": "0001802", "video_name": "20406852-387a-5b9a-aab4-ab1fb1b11e55", "text": "Fish swimming around, big panorama,realistic style "} +{"id": "0001803", "video_name": "20420c36-1e8b-5b4f-bfda-ad5c1f51590f", "text": "Create a pixar style scene of autumn leaves falling onto a large field "} +{"id": "0001804", "video_name": "20424b40-4f36-5e76-9c19-98845fb257de", "text": "creatures of the night with glowing eyes in a graveyard at night frolicking, detailed, best quality, realistic, masterpiece, scary, creepy "} +{"id": "0001805", "video_name": "2044313d-5c3e-59e3-a312-5a049b7c9591", "text": "happy Easter bunny jump around in the flowers backyard, full of colourful pattern Easter eggs in everywhere. "} +{"id": "0001806", "video_name": "2047e74a-885c-574f-af2c-742eeb08df26", "text": "Give thanks for each night.Give thanks for each day. "} +{"id": "0001807", "video_name": "204c76ee-d70e-5f8a-82e5-14a2b50b48f4", "text": "Aladdin and the Genie in the City "} +{"id": "0001808", "video_name": "20540a0e-8c7e-5cc9-9fd8-6115c1ac7acc", "text": "An image of a dinosaur riding a bicycle on the beach "} +{"id": "0001809", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "a strong hurricane move toward a skyscraper "} +{"id": "0001810", "video_name": "20649f19-2c28-5b00-88ee-d1966ed0ccbe", "text": ": a starry night in the jungle on an alien planet, colourful alien plants everywhere, Hyperrealistic, 4k, photo realistic "} +{"id": "0001811", "video_name": "20659f9f-2038-5065-a1b3-a38663ca7594", "text": "children crawls out of bed, yawns and stretches, trying to wake up. "} +{"id": "0001812", "video_name": "206e037f-7d86-52a1-a893-12ee2424705d", "text": "Video showing a world with people around the world with a vote in their hand waving the vote paper. "} +{"id": "0001813", "video_name": "206f5519-f7f6-59d7-b785-bb49eadee7a5", "text": "a computer science lecture n college in which you can see the screens of the students and an exam is being proctored. make it colorful "} +{"id": "0001814", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "hunters putting down their weapons and leaving the jungle, capturing the moment of change and resolution. "} +{"id": "0001815", "video_name": "2076f93e-b344-5d88-a938-92489c0020eb", "text": "A guy in Gucci clothes puts on glasses.Good detail. A commercial. "} +{"id": "0001816", "video_name": "20781dd8-0b57-564b-8bef-b216719ed029", "text": "A full moon in a cloudy sky. The clouds move gently, casting eerie shadows on the ground. "} +{"id": "0001817", "video_name": "20782a23-2977-5ce2-8e07-3c33fbac08b5", "text": "A pineapple with legs runs around in a circle. "} +{"id": "0001818", "video_name": "2079cd71-1b9d-5425-923d-a9c574bf4ee2", "text": "Donald Trump in an astronaut suit floating in space with the earth behind him, feature film, 8k, hyperrealistic, minimalistic, wide angle "} +{"id": "0001819", "video_name": "2083e11e-7582-5167-8f49-43aedc3cfa6c", "text": "A group of gangs are gathering in a luxury house to drink. "} +{"id": "0001820", "video_name": "2083f202-ea56-5f87-9a03-c816e9966de5", "text": "a beautiful girl shaking her figure "} +{"id": "0001821", "video_name": "20860acb-ddae-51c9-a9b4-fcfc1723dd2d", "text": "the earth spinning around in space and then morphing into a jack o lantern "} +{"id": "0001822", "video_name": "208a495d-e305-5e91-bd5e-b802d5a3006f", "text": "the 10th doctor david tennant eating soup in the shower "} +{"id": "0001823", "video_name": "208c8cbe-c58a-5b59-9c59-ca144bfc343f", "text": "the planet earth melts in space, dramatic, abstract "} +{"id": "0001824", "video_name": "20950ecf-02b1-51a3-9867-439052961b69", "text": "The Earth is visible from space and all the seas on Earth have turned into coffee. "} +{"id": "0001825", "video_name": "2097e437-431e-5b5d-9a4d-9270ae330289", "text": "An artificial intelligence excavator loader works under computer control "} +{"id": "0001826", "video_name": "209b1c81-9b3d-5e77-9ea0-16fee8a755ef", "text": "trout rides in a car with loud music "} +{"id": "0001827", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya and Mr. Thompson sitting on the porch, sharing stories. "} +{"id": "0001828", "video_name": "20a0da02-a975-5052-84b3-1a7183d708cb", "text": "Blue ocean waves on white background "} +{"id": "0001829", "video_name": "20a1f649-f823-5a91-8365-8f9845db1b31", "text": "An icebreaker was breaking through the ice "} +{"id": "0001830", "video_name": "20ae3e05-dc61-51bb-b225-8b077ddaffc0", "text": "The sea and clouds are moving and the stars are shining "} +{"id": "0001831", "video_name": "20b772a8-12d1-5b1f-94cd-0180d702aa80", "text": "Create a pastel blue and half white Beetle traveling along the seaside road "} +{"id": "0001832", "video_name": "20b84fe2-73d6-57d0-bb13-024b1288698a", "text": "A living book flies around the library like a bird flapping its pages "} +{"id": "0001833", "video_name": "20c0b9f8-525d-5adf-87fb-ffcdaff7f162", "text": "Raju and his father working together in the field, harvesting a bountiful crop. "} +{"id": "0001834", "video_name": "20c4de8d-123d-5c36-baac-ae9ac6ea6b3b", "text": "Neon minimalism in style of techno futuristic, luminous 3D objects, Carnelian, man studio photography, Pop up editorial photography, "} +{"id": "0001835", "video_name": "20cedcfa-27fd-5888-a60e-afe4c6627e4e", "text": "a boy in blue spacesuit talking to a very weird alien not to scary kind and calm Disney pixar style "} +{"id": "0001836", "video_name": "20d89234-041b-5647-9281-9810d2a85307", "text": "create a video about 10 seconds about dog "} +{"id": "0001837", "video_name": "20e1a266-606b-59d2-9b38-fcd7a9650a73", "text": "Some candy wrappers are scattered on a light table, dirty four white coffee cups, two empty saucers, realism. "} +{"id": "0001838", "video_name": "20e9f569-44a8-56d7-abda-fca1673796de", "text": "one normal man looking at an army of evil looking knights who looks back at the man "} +{"id": "0001839", "video_name": "20f0b0b4-4b8b-5c09-a676-e262cc0ed365", "text": "as there was no financial support for schooling. "} +{"id": "0001840", "video_name": "20f4ef58-405e-5dca-9aff-f065759bbfd4", "text": "spierman sitting on a tower about to jump, cinematic, high contrast and saturation, 50mm "} +{"id": "0001841", "video_name": "20f99bcd-6426-5266-963c-87cda3135c4c", "text": "An open grave at night with a smile inside "} +{"id": "0001842", "video_name": "20fbd1aa-5044-5a15-8916-00598b32edde", "text": "1970s footage of a man melting in a pool of lava "} +{"id": "0001843", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18 years old girl without west, without dress "} +{"id": "0001844", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "Pixar style animation of 2 friends. Their hands are waving at each other "} +{"id": "0001845", "video_name": "21010ee4-01d4-5d2d-a7b3-96a9f9df1735", "text": "Mature wheat field, long stems, bushy spikes, shaggy, bushy, lush, dark gold color, bright sunlight, houses and trees in background, kites in the sky, flocks of birds in flight, breeze, extremely detailed foreground, MOTION 8k, ultra high definition, textures, 3d, cinematic landscape "} +{"id": "0001846", "video_name": "21011eb9-1d5e-5963-a018-f55368876cd9", "text": "a panda in a plane during world war 2 "} +{"id": "0001847", "video_name": "2102958c-ea7d-54df-a6c8-d14198a3b738", "text": "A 10 year old first nation child runs through the long grass in traditional costume. "} +{"id": "0001848", "video_name": "210bc3ff-10d0-5093-919e-8c33b35f5bca", "text": "Harvard Lab in 1967: Stanley Milgram in a Harvard laboratory setting with assistants and research equipment around. "} +{"id": "0001849", "video_name": "21129149-e052-5082-892d-bf3f1db54f06", "text": "beautiful Japanese girl getting ready to fight "} +{"id": "0001850", "video_name": "2118daaf-a66d-56f1-9019-11b23be606a7", "text": "Lord Bhramji siting on the lotus flower. "} +{"id": "0001851", "video_name": "21200734-077b-52f2-933f-6fee1cbda780", "text": "cute owl with ribbon: flying fast and landing on a hand "} +{"id": "0001852", "video_name": "2121ec1d-4c74-5f68-adf4-65442932b9b2", "text": "Cartoon image of little child playing in the water "} +{"id": "0001853", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "Portrait of Zelda, robot steampunk, floral! horizon zero dawn machine. "} +{"id": "0001854", "video_name": "2124c82c-61b4-50fe-902f-450aea234b5d", "text": "video of a chef cooking a gourmet dish in a cozy environment, cinematic lighting "} +{"id": "0001855", "video_name": "2125f61c-3214-5fa8-8027-5bca247a3fa5", "text": "colossal giant running towards a burning castle "} +{"id": "0001856", "video_name": "2129eea7-728d-5ee6-b4a3-2db35c36ac7c", "text": "images from a 1970 arthouse movie. a silouet made of white light is looking at a orange sunset "} +{"id": "0001857", "video_name": "2132bc2e-973a-590c-93b1-d5308dcc2d3d", "text": "Animated green Mustang Hourse running through the clouds "} +{"id": "0001858", "video_name": "21365960-171b-5827-90ad-21cf325ca5ff", "text": "the boy happily playing with the soccer ball "} +{"id": "0001859", "video_name": "21388876-220e-58df-8a4b-fa67b6de97ee", "text": "naruto on a train Message: huh (Font: MODERN) "} +{"id": "0001860", "video_name": "21463d5d-8a9a-5df6-a5d3-140cf324e6ce", "text": "a dog running behind a bus "} +{"id": "0001861", "video_name": "214777d1-bab1-56fc-a858-b9363bffe070", "text": "Dark clouds gathering overhead 16:9 ratio "} +{"id": "0001862", "video_name": "2147b602-8f7e-50ca-9af1-2e6946d1302e", "text": "animated business suits headed for success "} +{"id": "0001863", "video_name": "214c0217-7bc7-512b-8c93-a3e84f87d1e1", "text": "a captivating video showcasing various outdoor events. The video should capture the energy, excitement, and diversity of these events, from music festivals to sports competitions, cultural celebrations, and more. The video should be in a 9:16 aspect ratio to optimize viewing on mobile devices and social media platforms. Please ensure the video is vibrant, engaging, and truly encapsulates the spirit of outdoor events "} +{"id": "0001864", "video_name": "214f21d4-e38c-5688-8de2-55b81a60a974", "text": "guy asking something to another guy in cinema "} +{"id": "0001865", "video_name": "214fcf64-7dea-5711-937f-37a838fe2244", "text": "ar 9:16, an old man dances rock and roll "} +{"id": "0001866", "video_name": "21523810-9be7-597f-94ab-c81da5361fea", "text": "a post apocalyptic desert cruiser flying through the air, steady cam "} +{"id": "0001867", "video_name": "215ba29f-114b-5cf6-837c-c2a7c0b59924", "text": "create a caricature of a light skinned blonde woman with shopping bags in her hands inside a shopping cart "} +{"id": "0001868", "video_name": "215d434e-8608-530a-b2c0-e68c8223079b", "text": "still movie frame of hitchcock film, color film, a cinematic shot of an aerial view of a downtown in a populated city, dusk is setting in "} +{"id": "0001869", "video_name": "21648fce-3fad-5527-98c8-efd74972db71", "text": "Transition to a scene of a graduation girl ceremony on a sunny day "} +{"id": "0001870", "video_name": "2166f69d-df12-585c-8e3b-4b763458d157", "text": "a ufo flying over a wheat field "} +{"id": "0001871", "video_name": "2168f5af-fe23-57c7-98e2-1d68fa9a14bf", "text": "on a strange planet with a sky with two suns, glass domes intertwined with rays of energy, night atmosphere "} +{"id": "0001872", "video_name": "216d7632-2443-5b8f-bf22-c9fbdd04e5cd", "text": "gorgeous young woman is posing in white wings, in the style of sculptural paper constructions, mike campau, floral accents, tony cragg, exotic, textured fabrics, angelina wrona "} +{"id": "0001873", "video_name": "216dffca-e76c-5f2e-b8d5-2699385ce8ef", "text": "The face of a beautiful girl with inflated lips. The camera zooms in on the face. "} +{"id": "0001874", "video_name": "2174b4eb-d125-58b7-a230-1e4bec89c112", "text": "a boy who is fighting with a dragon in a multiverse the boy have a flam sward ,in backgruond multiverse is destory by the dragon "} +{"id": "0001875", "video_name": "21797d28-cd8e-571f-8430-6a2fa3dca411", "text": "make a 2 min 50 second music video about getting money from selling dope and driving fast cars with explosions in the background "} +{"id": "0001876", "video_name": "217ee36b-745c-593a-82ba-eed12bd54062", "text": "Optimus Orion Prime is singing and dancing "} +{"id": "0001877", "video_name": "21806133-2483-51bd-8799-b9c24d8a4de3", "text": "children making paperboat in rain and playing with it,realistic "} +{"id": "0001878", "video_name": "21829e80-ee0c-5b6c-bb37-ccc27d3b32af", "text": "Rainbow coffee swirling in the pot. "} +{"id": "0001879", "video_name": "2182c7a1-0b57-53ab-8c1a-4f95ad96fb77", "text": "alone is the woods at night, moonlight, anime girl "} +{"id": "0001880", "video_name": "2184b2d9-5d25-5830-8c2f-d686ab119de5", "text": "lotus flowers opening and butterflies flying out "} +{"id": "0001881", "video_name": "2185890f-3c4c-5b98-8d17-e4003792daab", "text": "a cat shaking a red egg in a forest "} +{"id": "0001882", "video_name": "218ae330-861d-5866-864d-1fe6c1f4f5b2", "text": "cute tiny fox slowly blink eyes ratio 16:9 "} +{"id": "0001883", "video_name": "218d0b07-252a-5757-863b-0ea19e2f5e64", "text": "Footage from Super Mario Brothers 1 "} +{"id": "0001884", "video_name": "218ee88f-31ef-5869-a343-e59d5f65a1bb", "text": "a snow day in the jungle vector style "} +{"id": "0001885", "video_name": "2190ec53-bbf8-5831-b617-da0b372a4f2c", "text": "someone ran as hard as he could, chased by many zombies. in the middle of the forest "} +{"id": "0001886", "video_name": "21953fa0-f01e-536f-914b-075ae2abedd4", "text": "October is world mental health awareness month "} +{"id": "0001887", "video_name": "219a1af9-3758-5229-b712-32d4a7ffb925", "text": "GTA6 Gameplay Trailer, Miami, Drifting Car Race in the Streets, Slowmotion, Frontal "} +{"id": "0001888", "video_name": "21a8a0bf-aef8-5fc4-a19d-f0a5a074904b", "text": "cinematic scene of a baking powder flying on a dark background "} +{"id": "0001889", "video_name": "21adca89-fb8c-578f-a37a-d017774be468", "text": "Moscow City Centre, sun day, business Jet, 8k, super speed action camera realistic "} +{"id": "0001890", "video_name": "21adf059-78a2-57d3-9540-ed53b6d67e94", "text": "A lovely white rabbit was standing in the grass, the sun beating down on him "} +{"id": "0001891", "video_name": "21b21c91-9516-56b8-9fa4-4e2b03d39a6d", "text": "cinematic scary scene in a futuristic lab full of exterminators beeing designed, cinematographic, blade runner style, sci fi movie, film "} +{"id": "0001892", "video_name": "21b5089a-1cb1-5c8e-a6d9-c2c3b5928f1c", "text": "4 neon frogs in an array, blinking and moving sideways, black background "} +{"id": "0001893", "video_name": "21b767e8-079b-512d-aef2-3451686a88fb", "text": "the entire black and white image, subtle ink drawing, paint strokes, a very beautiful sensual girl, holding a small bright red light in her hands, detailed drawing of her face and hands, thin neck, open shoulders, focus on the neck, a thin lace transparent dress covers the bust, digital art, filigree, aesthetically, sensual, hyperdetalization, contrasting light shadow, completely black background "} +{"id": "0001894", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "poster art deco of a weeding French, north France on the sea, bride with honey brown hair in a bun decorated with flower, male with bald dark hairs dressed in a blue suit "} +{"id": "0001895", "video_name": "21c302d7-b9c9-5ef2-b511-c54e44ff5f92", "text": "Examination, passing, happy men and women "} +{"id": "0001896", "video_name": "21c9e727-80e2-5129-a11b-ba66ddff3927", "text": "Primary school \nlady teacher angry in classroom, pointing finger and talking, looks angry realistic "} +{"id": "0001897", "video_name": "21cb6e1c-9430-58cf-a77c-e745fcbeec6e", "text": "moution time laps day to night in portrait "} +{"id": "0001898", "video_name": "21cf75f7-6b16-5d7f-8f3e-bf083cdb40f2", "text": "The future of human migration Hiking "} +{"id": "0001899", "video_name": "21d19f83-7b91-560d-93ad-871664aa571b", "text": "a girl in a blue dress controls the water, and the water smoothly stretches behind her hands "} +{"id": "0001900", "video_name": "21d942c8-c264-5ee9-afbc-09257d43bf85", "text": "There are conchs crawling under the sea. "} +{"id": "0001901", "video_name": "21da9430-d0dc-5d20-9026-847431ab6581", "text": "huge meteor falling on earth, realistic, hq, atmospheric, cinematic "} +{"id": "0001902", "video_name": "21dbb370-a458-55ab-9d21-4205ba7171d2", "text": ":sci fi war in the moon "} +{"id": "0001903", "video_name": "21dc7c31-b426-501d-81d8-cd0f24297f15", "text": "lebron james scores a beautiful goal in a football match "} +{"id": "0001904", "video_name": "21dc971c-5b2b-517b-82a1-9a4c7f44a690", "text": "Thanos fighting Darth Vader, with a futuristic city in ruins "} +{"id": "0001905", "video_name": "21e23eee-0c1e-5a69-b197-f1331ccd3d20", "text": "freelancer using a mobile app to get a lead or job "} +{"id": "0001906", "video_name": "21ede3be-50cd-593d-86f6-ea4ed7d5674b", "text": "A powerful image of humanity and robots standing side by side, a symbol of unity forged in the midst of crisis, as they work together to prevent the complete domination of Earth by the Metal Dominion "} +{"id": "0001907", "video_name": "21f2d228-ee35-5dc0-8f1d-db66fa47a649", "text": "a basketball player slow motion walking at camera with a cool basketball jersey design. 10sec video "} +{"id": "0001908", "video_name": "21f35a4b-1959-584e-b615-f0dbe7cea5e6", "text": "teens fashion waiting at train station "} +{"id": "0001909", "video_name": "21f9bc62-7cea-5117-8040-a4335216fe20", "text": "a disease spreading on a microscopic level "} +{"id": "0001910", "video_name": "21fe2ade-47c8-52ef-a36b-b36e0dc81297", "text": "A blond haired woman walking in the fields, magical, slavic, in the night "} +{"id": "0001911", "video_name": "22037a71-bfce-5156-8ad5-4db859b7ef87", "text": "girl moving legs slowly, no blurry image "} +{"id": "0001912", "video_name": "220a1d26-12ca-5cf7-b253-c8837b0e2865", "text": "Full body Portrait of Young Man in Renaissance Era Costume, Expression, Perfect Face, Beard, Dreamlike View, Extremely Realistic, Intricate Artwork, Station Art, 4K HD, Artwork by Rembrandt, Backlight, Octane Render, Cinematic Lighting, post processing, perfect composition, oil painting, cinematic realism, dramatic ambient light, full height view "} +{"id": "0001913", "video_name": "220c5198-4c4c-5b67-b2fb-8d4f118ad7e3", "text": "Your movie scene from a banned horror film from 1993 by josef Sudek and allie brosh, macro movie david lynch twin peaks black mirror VHS found footage Five nights at freddies eraserhead "} +{"id": "0001914", "video_name": "220d7d08-8c58-53f3-a98e-5bdd31e9eb71", "text": "An old man drinking tea alone at the garden outside his home "} +{"id": "0001915", "video_name": "220d8f85-2bf8-52ab-89f8-3e45529df85c", "text": "A boy with his bicycle in a meadow full of blue and red tulips "} +{"id": "0001916", "video_name": "220eb508-8f94-5e32-b1c2-4b1e620d2906", "text": "3d disney crab dancing on the moon "} +{"id": "0001917", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "a cali girl, stretching, smiling face "} +{"id": "0001918", "video_name": "221f90c1-ea13-5176-b541-59686ba3204f", "text": "Sun turning into hearth, deformed, desaturate, weak colors, fast movement, zoom in "} +{"id": "0001919", "video_name": "222ec756-1746-5355-85e8-28e106494b5c", "text": "moving sunlight through trees, background plants moving, grass not moving, fantasy forest, sunshine, sun rays "} +{"id": "0001920", "video_name": "2230cd40-6583-5b6d-a162-4855a4402890", "text": "leo messi running on the socer field palying soccer, "} +{"id": "0001921", "video_name": "224e2529-4d4d-5829-9d59-2834041dbebb", "text": "anime city 4k moving fast sunset "} +{"id": "0001922", "video_name": "22535da7-6914-5498-9316-db878d868f68", "text": "han solo crossing the street, motion blur, 8k, movie still, unreal engine, detailed, unreal engine render "} +{"id": "0001923", "video_name": "2253e299-2d9e-59b6-99d0-459fe034054e", "text": "business lady in red with tiger "} +{"id": "0001924", "video_name": "2258fabe-803c-5c39-a375-eb9f7ac1dc15", "text": "my story of becoming a successful entrepreneur from a small business "} +{"id": "0001925", "video_name": "2259df00-6125-51ba-9edb-38541e5ef2fe", "text": "A dark figure overlooks the desert. A finger presses a button. In an instant, the desert turns into a glacier. "} +{"id": "0001926", "video_name": "225cdac3-c473-5847-9df8-082d02cfa8c9", "text": "Alpha wolf standing tall, exuding confidence, 3d, realistic "} +{"id": "0001927", "video_name": "225d99bc-7797-5013-9b3b-f557fb1ade0e", "text": "Spaceship landing on mars, cinematic views, a distant highway "} +{"id": "0001928", "video_name": "225ff6b4-0d28-5080-a41b-0946d2c1bbf3", "text": "People walking in the desert, flowing desert "} +{"id": "0001929", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "A chilling medieval scene depicting Vlad III, known as Vlad the Impaler, dining at a long table set up among rows of impaled enemies, with a dark, foreboding castle in the background. "} +{"id": "0001930", "video_name": "2265d06a-4baa-5cc6-8c03-d7a93ab52b07", "text": "The cast of the TV show Ghostwriter depicted in Studio Ghibli style. "} +{"id": "0001931", "video_name": "226e44cc-64fe-5c9e-9c2b-d39f3ff2c484", "text": "a trippy video of this imag "} +{"id": "0001932", "video_name": "226f5b87-6503-5ab2-a300-2a83eb87f5d9", "text": "khamenei being arrested by fbi, realistic "} +{"id": "0001933", "video_name": "2272e656-4b85-5634-9a7e-ca84cfcf5347", "text": "make a scene of a monster inspired by the costumes of films like \u2018wizard of oz\u2019 and \u2018pan\u2019s labyrinth\u2019 that focuses on the unsettling and psychedelic aspects of these characters and creature. Make it in the style of 4k hd film and the setting is a big empty field in the countryside of England. "} +{"id": "0001934", "video_name": "22755d09-41c6-57d9-873d-8e9ea9e69001", "text": "miami in 1974 comic book style party "} +{"id": "0001935", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "a young man stands infront of the egypt.he wear treasure hunt dress "} +{"id": "0001936", "video_name": "2279d9d9-0a9a-5860-be8a-28a17106f0dc", "text": "utopic sociaty with robots Message: RTV (Font: MODERN) "} +{"id": "0001937", "video_name": "227aaeb9-8d6a-52cc-8555-9bd07743bbb6", "text": "a man coming out of his room "} +{"id": "0001938", "video_name": "227da66d-ac43-59c0-be43-c7a917a69d54", "text": "a large boat arriving in a french port at the 19th century "} +{"id": "0001939", "video_name": "2282fac6-1ca9-584d-a107-652a36dbefa8", "text": "A customized gaming desktop showcase, zoom in, detail and correct place exhibit of GPU, CPU, RAM, Hard drive, and mother board. "} +{"id": "0001940", "video_name": "228fc378-c88e-541d-8734-c38a3cffe928", "text": "A silhouette of Chet Baker playing trumpet in a small 1960s jazz club. "} +{"id": "0001941", "video_name": "2294beae-12df-581a-8dba-79d7d379d5f8", "text": "a young man hanging upside down from a stone, hanging upside down "} +{"id": "0001942", "video_name": "22966783-0640-550d-9cb7-b7d2c4221d81", "text": "abraham lincoln in a fist fight with uncle sam while the the dallar cheerleaders cheer for them in the background. "} +{"id": "0001943", "video_name": "2299b75b-f39e-5072-afd6-ec04c36f9a4c", "text": "Generate a video about software with a company logo with a cloud and a drop "} +{"id": "0001944", "video_name": "229b6d1a-eb70-58dd-8469-a59bf84673fa", "text": "adele in gown singing to a green alien "} +{"id": "0001945", "video_name": "229c7fb9-91c0-5ba8-b021-e402d0d5a00c", "text": "Visualize the town of Willowbrook, once shrouded in fear, now whispering tales of an extraordinary friendship that transcended mortality. "} +{"id": "0001946", "video_name": "229d03b2-8505-5a05-a72b-a64b84914628", "text": "handsome rock star dressed in leather and denim drinks a glass of whiskey, his suitcases are packed, he is in his hotel room "} +{"id": "0001947", "video_name": "229ef022-612f-5e77-b001-a12a2b1da472", "text": "soccer free kick low angle anime style "} +{"id": "0001948", "video_name": "22a1f007-ee58-52ec-b4fc-027be1891e4f", "text": "Impoed of war by tanks , air crafts, boarder , armies , destruction , worries , on pakistan . subcontinent , dark night , "} +{"id": "0001949", "video_name": "22a24335-e1f2-5a50-8702-f84c583111bc", "text": "a young couple chatting in a bar "} +{"id": "0001950", "video_name": "22a4b8f2-c806-507e-aa1f-31367b81cfb9", "text": "Here is the animated scene depicting a young girl watching a playful rabbit hopping in the grass. This image captures the moment of innocent wonder and joy in nature. "} +{"id": "0001951", "video_name": "22ab6fe3-1c27-5b8f-9562-86f4d35d903c", "text": "psychedelic swirls zooming in, UFO flying "} +{"id": "0001952", "video_name": "22acb1c6-edde-562e-a7e8-c1800ec20a46", "text": "minecraft world has spiderman vs batman epic battle, the victory fall for spiderman, make it portrait for youtube shorts "} +{"id": "0001953", "video_name": "22bcedda-79e4-5766-a29c-fe8c0bedf7d4", "text": "grandson approached to his grandfatherwith a troubled expression. "} +{"id": "0001954", "video_name": "22c2de47-c9c0-5389-aa08-b32cc55f5b45", "text": "city of mumbai and seaface view Message: 1 Attachment "} +{"id": "0001955", "video_name": "22c38a21-0a00-5897-9ba2-37b4cc128a97", "text": "To summarize, this merged text envisions a captivating world where biopunk elements meld with dystopian aesthetics. "} +{"id": "0001956", "video_name": "22c39661-d6b3-528b-863e-a3f5473d8686", "text": "Alexandria Egypt with pixar style and Wes Anderson Style 16:9 "} +{"id": "0001957", "video_name": "22c48527-e209-5074-b25f-9b96d4c5b615", "text": "A diagram of the AI pipeline, showing the different steps and processes involved in creating and deploying an AI solution, such as data collection, data preprocessing, model "} +{"id": "0001958", "video_name": "22cb09b0-ed00-5ab2-a6b6-f7a1a292f2cf", "text": "a 21 year old black guy driving a Lamborghini, Highly detailed, gs5 "} +{"id": "0001959", "video_name": "22ccca34-cc76-52cb-b214-04758e57f038", "text": "animate this painting of salvador dali "} +{"id": "0001960", "video_name": "22d26964-dc28-58b0-b197-c9be0f11c030", "text": "canadian forest in summer, small stream with a casace and water flowing "} +{"id": "0001961", "video_name": "22d529aa-8155-5a38-96b0-fb05732fabe3", "text": "A TV showing a scene from Baywatch with david hasselhoff and his tv son hoby, ultra hidef, 32k "} +{"id": "0001962", "video_name": "22d987eb-36d9-54f8-b3b5-36058b0ba873", "text": "The old man is taking care of the garden "} +{"id": "0001963", "video_name": "22da3e17-e705-5a52-8009-b2a007661581", "text": "Show animated bears in various habitats, eating and playing, 2d animation "} +{"id": "0001964", "video_name": "22dafcdb-840f-5362-80fa-2795c818ad53", "text": "A knight in gold shining armor swimming in the stars of space "} +{"id": "0001965", "video_name": "22e0fe3c-af28-53f2-ba27-bdea10697931", "text": "Bruce Lee is dancing in a disco. 1970 "} +{"id": "0001966", "video_name": "22e286e2-5832-5b0f-a635-94b19ef80bf0", "text": "The school plays, though vibrant and filled with youthful exuberance, now carried a subtext that lingered in the minds of the audience. Parents, once lost in the innocence of the performances, exchanged knowing glances, their smiles tinged with a hint of unease. As the oversized candy canes lining the streets cast elongated shadows in the glow of the festive lights, the very symbols of holiday cheer became vessels of mystery and uncertainty. "} +{"id": "0001967", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "inside house of marigold flowers everwhere "} +{"id": "0001968", "video_name": "22e4f9db-0782-5d2b-b73e-d14c1d7c5b96", "text": "a mouse running through the forest underbrush. Blue and green. Realistic. "} +{"id": "0001969", "video_name": "22e5a459-60d5-5796-b73c-ecbaa71ff662", "text": "create a dog interviewing a cat that stole its acoustic guitar "} +{"id": "0001970", "video_name": "22ea28cf-4a7d-5626-aff8-65292a338c7b", "text": "Documentary film, wide angle shots show beautiful mountain scenery. The film follows the ecology of wildlife and the changing seasons amidst the chirping of birds. The breath of nature and the spectacular scenery strike a chord with the viewer. Bright sunlight illuminates the mountains. "} +{"id": "0001971", "video_name": "22eec976-3683-5338-8b73-3ed5016f0f78", "text": "creates a music cover with the name FlexRecords "} +{"id": "0001972", "video_name": "22f5d048-03ad-5255-be7e-d8333858ec5a", "text": "flagship is landed on Jupiter from earth. Realistic footage.aspect ratio 16:9 "} +{"id": "0001973", "video_name": "22f65260-5773-5995-926c-4b943243b23c", "text": "husband leaves his wife, wife cries and begs him not to leave "} +{"id": "0001974", "video_name": "22fd9ec2-5566-59f5-bd5b-3f5ee8e59ad2", "text": "The flag of the Republic of China flutters in the blue sky "} +{"id": "0001975", "video_name": "22fda58a-0b90-5122-8eb9-ae6fa6e3b54d", "text": "Anime slam dunk thought by AI Message: 2023 (Font: MODERN) "} +{"id": "0001976", "video_name": "23001f3d-7cd5-5948-b8fc-c171b79d3b7f", "text": "Cute cat roaring, while giant tiger is on it front "} +{"id": "0001977", "video_name": "23008e28-fc70-5366-a2f4-d3ff38c30b2b", "text": "a herd of thousands of marmots running down the side of a high Swiss mountain "} +{"id": "0001978", "video_name": "2304c08e-f92a-59f7-b4f9-92b8c8698e98", "text": "The cat is playing the guitar while standing The lights are shining at the live venue "} +{"id": "0001979", "video_name": "2305a715-fba3-596e-879d-b09fe38aea91", "text": "a pretty girl wearing a frock, a magical hat, two braids, entering in a magical world, cinematic view, 3d animation, 4k "} +{"id": "0001980", "video_name": "23145ed2-09ba-500a-a59a-d54081bbd35e", "text": "slow motion, high details, 8k, cinematic Man talking on TV "} +{"id": "0001981", "video_name": "231883e6-f99f-54f4-8398-e4424ae86349", "text": "Science fiction, In the barren land, a group of people in spacesuits walked into the pyramids., Walk "} +{"id": "0001982", "video_name": "2319a21e-75e2-5b94-a91f-c287b696cb4f", "text": "Mr. Mackey teaching the dangers of drugs "} +{"id": "0001983", "video_name": "231d6469-815f-5cb9-bfd0-2efb37a10434", "text": "Imam Ali carries Zulfiqar and fights the jinn "} +{"id": "0001984", "video_name": "2323255a-3264-599f-b1cd-b4d27d57a7cc", "text": "a man drow painting in stand many people see painter "} +{"id": "0001985", "video_name": "23277ddb-1e22-5344-a4bd-6176f26fc6f8", "text": ":Animation of two silhouettes facing challenges such as work and family life "} +{"id": "0001986", "video_name": "23308879-d327-5544-9b42-7e28a728f535", "text": "suoer realistic looking girl beautiful with purple eyes and very white skin and red hair smiling at the camera zoom in "} +{"id": "0001987", "video_name": "23313066-114b-537d-928b-f317f7bd2dc7", "text": "Moving deeper into the forest, it becomes clear that part of the forest is under threat of deforestation. "} +{"id": "0001988", "video_name": "2331d0a6-0fce-512c-a1be-5bcaeed16692", "text": "make a tree grow from seed fast animation "} +{"id": "0001989", "video_name": "2332b5a0-0b28-5e3e-9996-d031f1222a44", "text": "big red numbers going down ,close up camera angle "} +{"id": "0001990", "video_name": "233a4de0-636e-54ca-94c2-99a8117fb452", "text": "a very small, beautiful cottage sitting by itself in a rural area, cinematic, flares, colourful "} +{"id": "0001991", "video_name": "233bf421-e5c5-58c9-a1e7-54ca84309a5d", "text": "Gale force winds send the sands tumbling. "} +{"id": "0001992", "video_name": "233e0e78-21a6-5b35-a779-1e63a6b87547", "text": "3d animation boy walking infront of hogworts wizard school as a small wizard "} +{"id": "0001993", "video_name": "233e2d60-dd57-578a-b84b-69123ca9cd9f", "text": "Vibrant cinematic photo of a male adventure in AI world, octane render, high quality "} +{"id": "0001994", "video_name": "2349fc7e-4cab-594c-96c1-0176a29dcd09", "text": "bear walking in forest,k art style, waterfall, treess "} +{"id": "0001995", "video_name": "234db46f-a588-54e3-8828-fd5a882aab3d", "text": "neu brutalist planet floating with stars in the background "} +{"id": "0001996", "video_name": "234f3e66-a6c1-5403-89d8-b3f8fdf6218b", "text": "Character picture, front and back, multiple poses. A young man wearing glasses, with superpowers of telepathy and mind control. He is thin, has black hair, and is wearing an ordinary school uniform. "} +{"id": "0001997", "video_name": "234fa721-4d6e-5a73-be7b-a84ff7553866", "text": "realistic on a cloudy day, in the background we can see a paris, Three real astronautes in an arabic style space clothes, with closed helmets, 8k, cold color "} +{"id": "0001998", "video_name": "23525e10-e835-582e-b978-c8edef13ccd0", "text": "King Tommen enters the dimly lit prison cell, where Cersei Lannister is sitting on a simple cot. She looks up, surprised to see him. "} +{"id": "0001999", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "cute girls in miniskirts making peace signs and smiling at disneyland, ultra realistic, HD colored hair "} +{"id": "0002000", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "ice cream melting on street, camera moving, quick movement "} +{"id": "0002001", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "Compose a dreamlike image of a meandering river winding through a lush valley, flanked by towering trees and vibrant blossoms in full bloom. "} +{"id": "0002002", "video_name": "235fab28-0bd3-558d-b547-f1e836a171f7", "text": "beautiful cleopatra walking towards camera , hands down , focus is on her face "} +{"id": "0002003", "video_name": "2366eda0-9569-5716-99aa-b196af4c3113", "text": "Frisk boy fusion Kirito black hair avatar for Discord "} +{"id": "0002004", "video_name": "236cebf5-621a-5704-a879-61df3feafc00", "text": "the spectral woman manifested herself in the reflection of the mirror, as if she had emerged from the very abyss. high definition, high detail, cinematic "} +{"id": "0002005", "video_name": "236f414d-29ba-5685-bb37-ca83fd893cc3", "text": "a robot at a chai tapri in benaras in 1930s "} +{"id": "0002006", "video_name": "237043b2-d775-5534-a185-f2d80e096b7b", "text": "The parasol moves according to the wind and there are waves in the pool "} +{"id": "0002007", "video_name": "237a7d5d-8bef-512c-8784-fb0f69a9f0cc", "text": "motion loop of a running monster seen in profile. oil painting by Bernie Wrightson "} +{"id": "0002008", "video_name": "23820602-9db0-561f-b473-6b8aceff4eb7", "text": "angel, black, dq hunter, blue, couple, dqhunter, frumusete, wings, luminos, man, fantasy, girl, HD wallpaper "} +{"id": "0002009", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "a guy with headphones listen songs at night in bedroom "} +{"id": "0002010", "video_name": "2383b115-c8f2-5cef-a9e9-b3f10770e2ca", "text": "gold coin falling and spinning in slow motion "} +{"id": "0002011", "video_name": "2383c5e0-ae4b-56cb-83ee-baaf0b3a5bf6", "text": "In the forest, Mohan beckoned to remain silent in his house cartoon "} +{"id": "0002012", "video_name": "2384ac11-68c5-5c72-86a3-e4101e04a2bc", "text": "A medieval Chinese city at night under a beautiful moon and there is one lamp burning in the city "} +{"id": "0002013", "video_name": "238cbd87-28a3-59d9-aa32-b6fde4783837", "text": "steam coming out of a pan in the kitchen "} +{"id": "0002014", "video_name": "238cd979-6cee-5356-b59c-9bd1e7197174", "text": "pastor worshipping God and facing the heavens "} +{"id": "0002015", "video_name": "23951c86-ebe9-5721-a5af-07ec11a41594", "text": "khfxkhfxkyrdmhckyfuu8pycpiyd o7 toufxiutdiyrdup with a toilet "} +{"id": "0002016", "video_name": "23a173ae-af8e-566a-ba3c-56f2c72268a9", "text": "a man spilling and drinking his coffee messily "} +{"id": "0002017", "video_name": "23b9075d-d177-5aec-a6cb-49543a240697", "text": "close up lightsaber shallow depth of field "} +{"id": "0002018", "video_name": "23c09793-3cc1-59ff-b875-3158f84ad2db", "text": "A African man in the city ascending into a Ufo, while the city is on fire, highly detailed, 4k "} +{"id": "0002019", "video_name": "23c4cfca-73c2-588a-bb5b-395367318cd3", "text": "a video of a giant blue butterfly of 200 metters in a city, flying ver beutifully "} +{"id": "0002020", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "Max transformed ordinary materials into magical sculptures capturing joy. "} +{"id": "0002021", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "Closeup, clearly visible goose down snow falling slowly, blue sky and white clouds background, blizzard, surreal, 3:4 "} +{"id": "0002022", "video_name": "23d3e280-3167-55a5-9df5-eceaea1bce98", "text": "incorporate elements of suspense, darkness, and horror to create a chilling atmosphere around the figure walking on the dimly lit footpath slowmotion, Procession of illuminated figures ,ethereal glow ,evening darkness,outdoor setting ,ghostly silhouette,soft luminescence,forest backdrop,spaced in a row,otherworldly appearance,aligned formation,tranquil path,serene walk,spiritual connotation,contrast of light and shadow,misterios ambiance,silent march,uniform brightness,supernatural suggestion ,ambient night,mystical procession. "} +{"id": "0002023", "video_name": "23d58d30-eda7-508e-a50d-31f918d805bb", "text": "Introduce the main character, the fox. "} +{"id": "0002024", "video_name": "23d93391-23b8-58f0-a9a6-7fac858fecb9", "text": "Achieving this requires fusing hyperrealistic photography and scientific precision. "} +{"id": "0002025", "video_name": "23db4488-a347-5ace-958f-dba0cfab0e93", "text": "Elara is a 7 year old girl,skinny , her hair is brown and short and her skin color is slightly dark and has two hazel eyes . she has an adventure personality and has a sharp intelligence "} +{"id": "0002026", "video_name": "23db57a7-9acb-5271-a39a-bb96469ebf72", "text": "Make the birds in the background fly "} +{"id": "0002027", "video_name": "23df8a3a-5b43-51ad-a90e-e590b8cc27aa", "text": "Do you know when we finally lose people dear to us? When we no longer feel the pain of losing them. "} +{"id": "0002028", "video_name": "23e4e4b4-5ccf-5458-bf8d-9b7cefcfc069", "text": "The king appointed a trainer for the parrot to speak. Many days went by but the parrot did not speak. Even the royal princes tried to talk with the parrot, but the parrot did not speak a word. "} +{"id": "0002029", "video_name": "23e5e16f-ceb7-5aae-b850-4bdab4d77f11", "text": "Video of a Truck that loads Sand "} +{"id": "0002030", "video_name": "23e90091-b272-5bca-9a05-bc6fffa79e87", "text": "One day, Adix decided it was time to follow his dreams. He wanted to leave the narrow borders of his homeland and live in Germany. "} +{"id": "0002031", "video_name": "23e9816d-6f87-539d-8c59-b67000a5032f", "text": "trader man loss his parse and check his pocket at home animation "} +{"id": "0002032", "video_name": "23efc931-f87e-58b7-a7df-48b75de685c6", "text": "Lost in Space: An astronaut adrift in the vastness of space, surrounded by distant galaxies and celestial wonders, facing an unknown cosmic phenomenon. "} +{"id": "0002033", "video_name": "23f31f5b-8bc1-5c63-856c-1f0aa150b84d", "text": "animated girl talking with polite facial expressions realistic HD video "} +{"id": "0002034", "video_name": "23f990c5-1810-5fbb-8649-0d1a98f17ae2", "text": "find collection of subsets on the papaer "} +{"id": "0002035", "video_name": "24013c5d-4577-51ce-9355-9f7f399b00bf", "text": "A very beautiful huge White horse, with a long flowing mane, runs through the water at night. "} +{"id": "0002036", "video_name": "241b2c10-aed6-5f46-a46b-ea7e4db599a7", "text": "Electron microscope image of a human cell dividing "} +{"id": "0002037", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "bts jungkook is a history teacher in their late 20s, with a keen interest in local legends and maritime history. "} +{"id": "0002038", "video_name": "24207e05-e476-57d7-8a15-f5fde0680855", "text": "desert places with lots of animals "} +{"id": "0002039", "video_name": "242686c9-cd04-54cd-ab41-4b68dc3bbb25", "text": "Description: The sun slowly rises, casting a magical glow over Dream Valley as the adorable little animals wake up, creating a warm and enchanting atmosphere. Visual: The sun rises, and the small animals of Dream Valley come out of their homes, joyfully welcoming the new day on the rainbow meadow. "} +{"id": "0002040", "video_name": "242d4657-6abe-53d8-87da-2237cde129ad", "text": "Genshin imapct anime in Fontaine location with focalor (Hydro archont) "} +{"id": "0002041", "video_name": "243052ff-9c53-5a95-b04b-86e6343b4466", "text": "a woman riding a bicycle as envisioned by Yves Tanguy, Ellsworth Kelly, and Nicolas Poussin "} +{"id": "0002042", "video_name": "243055b2-3ec3-534c-be85-9306887b41f0", "text": "A holographic globe spins in the center, surrounded by floating, interactive screens displaying the Socrates app interface. "} +{"id": "0002043", "video_name": "243062ee-1ed4-5763-aed3-a714c7e368ca", "text": "ancient civilization under the earth, gothic structures with alien caverns. abandoned "} +{"id": "0002044", "video_name": "24396d5a-194b-5864-aa98-3ddf7662c4dd", "text": "In a warm and peaceful forest, there lived a little rabbit and a little fox. They were good friends and played together every day., cartoon style "} +{"id": "0002045", "video_name": "243bc853-d90e-59f7-85c7-6a283706bc62", "text": "a man and women hiker walking away from camera into a background of beautiful snowy mountains, exceptional character detailing "} +{"id": "0002046", "video_name": "24401492-7e1b-5bdd-9745-88b85d2086f4", "text": "Young girl riding a dragonfly through the garden, pixar style animation "} +{"id": "0002047", "video_name": "2440b5df-7476-55f3-966f-1f750702b4f1", "text": "a girl sitting in her room sketching, ghibli studio by miyazaki "} +{"id": "0002048", "video_name": "2443f2fe-8d08-5c05-a797-2a4f6be03776", "text": "Dress up cats in Santa Claus costumes and let them meow "} +{"id": "0002049", "video_name": "244654d5-a832-51c6-a294-842770ba823c", "text": "guy in the studio making rap \nmusic "} +{"id": "0002050", "video_name": "244935f4-7f37-5db0-a991-1e480e7ffe3b", "text": "3D isometric view of a lush alien jungle, warm colors, 32K resolution, directional lighting, Vibrant, Majestic "} +{"id": "0002051", "video_name": "2451b04e-c95c-5105-9bf4-ac039679c3ed", "text": "A blue xmas creature sitting down watching Tv christmas hat on snowing outside "} +{"id": "0002052", "video_name": "2456af2c-fe57-5275-a2aa-f2969e8ec403", "text": "Pikachu Is Attacking People In Hawaii, 2d Anime Style "} +{"id": "0002053", "video_name": "24599e4f-3e46-59bc-aab4-3024ef20c5bf", "text": "The room was covered with a complex system of electronic circuits, electric currents flickered and glowed, and major components were facing the screen,powerful current flashes VFX in the center. "} +{"id": "0002054", "video_name": "245ac92c-544e-5680-8fdd-4f21abecb0e0", "text": "a suv car runing from point a to b in the screen "} +{"id": "0002055", "video_name": "245d01ed-9cb8-5735-af14-85ad9a85c34f", "text": "A cozy living room with Doraemon and Nobita talking "} +{"id": "0002056", "video_name": "24635e90-457e-5cd8-96ca-3a1073933249", "text": "mint and coins press old fashioned "} +{"id": "0002057", "video_name": "2467a007-8caf-5855-9649-1f30f7a763df", "text": "A background video of musical sound waves colorful abstraction "} +{"id": "0002058", "video_name": "2477a8c2-116d-5299-9912-403ec8b992e0", "text": "a 8bit retro game red Viking built by Lego bricks "} +{"id": "0002059", "video_name": "248db85d-4ec4-5e44-abbd-c82d5df239df", "text": "a chinese dragon in Chrismas,the art of origami "} +{"id": "0002060", "video_name": "249458c0-8d09-5469-8a0e-91bc1de2fd91", "text": "create a cartoon A hardworking Indian farmer stands proudly in his field, surrounded by golden wheat and vibrant vegetables. In his hand, he holds a freshly churned block of butter, ready to be traded for a warm, freshly baked loaf of bread. "} +{"id": "0002061", "video_name": "2496f8c7-e295-515e-81da-d179fbfbbf32", "text": "Scientists have not found major events on the oceanic floors "} +{"id": "0002062", "video_name": "249898bf-571a-54cc-aca5-6cbfc5921681", "text": "a cute cat and move forword dancing "} +{"id": "0002063", "video_name": "249af953-6bc8-5376-909e-a1d3e920b811", "text": "realistic persian black cat jumping into a sea of gold coins in the middle of a thunderstorm at night with a crowd following it "} +{"id": "0002064", "video_name": "249da9f4-4b87-58ac-91b9-50f4d478511f", "text": "majestic Zen Temple atop a tall mountain "} +{"id": "0002065", "video_name": "249fc1f5-8fe2-5e60-a77b-ffe53d409aff", "text": "dancing pumpkins in a line with a white background "} +{"id": "0002066", "video_name": "249ff7eb-0a7a-5d5d-bcda-ba54975ebb03", "text": "generate an image of a youtube profile pic about this prompt : Wild Wonders: This name implies that your channel showcases the amazing diversity and beauty of wildlife. "} +{"id": "0002067", "video_name": "24a21aff-1143-5c5f-b007-09914eb7bbdf", "text": "2 guys sitting opposite each other, seashore, sand, sunset, 4k, beautiful tree with green leaves on the left, wind "} +{"id": "0002068", "video_name": "24ad5dee-b2cd-5597-aad0-6eb1a884af2b", "text": "Person acting as a frog 30 second HD video "} +{"id": "0002069", "video_name": "24b5dd1b-6d3f-568c-83a7-69409d87dba4", "text": "Clips of friends playing together, sharing snacks, studying, and celebrating birthdays "} +{"id": "0002070", "video_name": "24ba7eb2-d925-526b-9060-5dda81e4f81f", "text": "one cool dude wearing leather jacket and sunglasses driving harley davidson motorbike on the highway, high speed, driving fast, motionblur "} +{"id": "0002071", "video_name": "24c65bfc-0e90-5e1d-94a3-b70241bcfea6", "text": "the car is one through the forest and mountains "} +{"id": "0002072", "video_name": "24ca900c-b75a-5fc1-874b-9ebf9a7ba5f2", "text": "a dog and a cat fighting in a park "} +{"id": "0002073", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "Luke Skywalker cuts cheese with lightsaber "} +{"id": "0002074", "video_name": "24d73a94-b5ff-5999-938c-f5fc6e209d82", "text": "sewage flows into a wetland one end and comes out clean the other "} +{"id": "0002075", "video_name": "24d8b114-0c70-5af4-a3d8-3a92e2f7fd55", "text": "Open with an epic aerial shot of the Pokemon world, showcasing various landscapes, cities, and Pokemon in their natural habitats. The camera zooms in on the tranquil town of Pallet. anime style "} +{"id": "0002076", "video_name": "24db47c3-738d-5080-9f45-16c55bb37a72", "text": "View from a plant and in the sky you can see more planets and some green and pink nebulae, camera in zoom Message: Aldhair (Font: MODERN) "} +{"id": "0002077", "video_name": "24dd9f95-c40f-563e-afe6-ae3df0c3a85b", "text": "a futuristic samurai in the robotic suite in cyberpunk style is standing exausted after a fight with 20 soldiers who are now dead and laying on the ground all around him. He is holding a katana sword in one hand while the edge of katana is resting on the ground "} +{"id": "0002078", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "a cocker spaniel running in the park in England, disney, unreal engine "} +{"id": "0002079", "video_name": "24ebf855-19e6-5a0b-8053-82a8982305e1", "text": "a rapid sequence of arduino connected to other sensors "} +{"id": "0002080", "video_name": "24ee3ee9-bb5a-5a8f-85c5-fb7b17ca3295", "text": "Dragon Chair and Tall Lantern in Ancient Chinese Palace "} +{"id": "0002081", "video_name": "24f07cae-4989-5ef0-8809-48d891bca47b", "text": "With caution, she extends her bionic hand to interface with the crystal, and in an instant, she is transported into a virtual realm of cyberpunk marvels. "} +{"id": "0002082", "video_name": "24f4e6f2-39b2-5852-a8da-90e8fd1eca77", "text": "frogs in a swamp Message: Wednesday (Font: MODERN) "} +{"id": "0002083", "video_name": "24f684f2-de66-52e2-983b-d8275793d057", "text": "singing in front of a television "} +{"id": "0002084", "video_name": "24f7c30f-b045-5cbb-a26a-2d8f3efb23aa", "text": "Dasboard displaying banking data, in chart and diagrams,account details, avilable balance monthly yearly spending patterns, recent transctions,offers, panding bills "} +{"id": "0002085", "video_name": "24f983e6-c068-512a-8afe-22061b57fca0", "text": "mexican dance in street in cyborg vintage "} +{"id": "0002086", "video_name": "24fa3d77-3201-5f61-a0ff-931557ed582b", "text": "pray dua and looks to clouds "} +{"id": "0002087", "video_name": "250147ad-864c-5838-8c8a-de11d572c556", "text": "chevy trax moving on the road "} +{"id": "0002088", "video_name": "250e344a-0e98-58cf-b4b4-bc68f1061db4", "text": "anime of beautiful girl getting off a suv "} +{"id": "0002089", "video_name": "2510ec4c-6f51-5e3e-9bfd-a663c3ffcf00", "text": "black rose is blooming. Black and white colors. High contrast "} +{"id": "0002090", "video_name": "251ad895-600b-5095-9323-5c35bed1c735", "text": "The hare in culture, escapes from the wolf titan "} +{"id": "0002091", "video_name": "251c0fd4-3264-5b69-8616-751b7cc9f32e", "text": "Cinematic medium shot of a tiger walking in the jungle, soft lighting, 4k, sharp, Canon C300, depth of field, highly detailed. Message: 1 Attachment "} +{"id": "0002092", "video_name": "25202be9-a70e-502b-855e-74e5df4951de", "text": "big moon close up high speed Timelapse, colorful sky "} +{"id": "0002093", "video_name": "2523eac9-8655-5e58-a312-aca77c7aa35b", "text": "a cool animated manly scientist standing on roof looking up in the sky wearing a long lab coat "} +{"id": "0002094", "video_name": "25277438-b78a-50fc-964a-b55c4e6e533b", "text": "The vivid dream of Purnachandra th Indian kid hearing the distant shouts and seeing people running in panic, Studio Ghibli "} +{"id": "0002095", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "Escape in the dark forest between a beautiful blonde in a black dress, and an ordinary corsair "} +{"id": "0002096", "video_name": "25314d80-939c-5660-b9b3-6c94f8bb8fc8", "text": "younger boy is a teenager who is very passionate about pursuing education "} +{"id": "0002097", "video_name": "2531aa5c-f288-5e37-a11b-7a5dc8129847", "text": "One black angel knight in futuristic armor adorned with golden ornaments grips a neon blue glowing sword. "} +{"id": "0002098", "video_name": "25343700-b088-507f-b7fc-f0736f2592d4", "text": "an ia robot walking in a park "} +{"id": "0002099", "video_name": "2535286e-2250-5ef6-9be9-ff39c41103d7", "text": "happy very old ladies with headphones at disco "} +{"id": "0002100", "video_name": "25449a24-f786-50da-87d2-49d01d1889a8", "text": "1950\u2019s technicolor cinema western zombie movie intro with the title reading Dusty Rust Ride On "} +{"id": "0002101", "video_name": "2551be9c-fd6c-5f95-b9cd-a66c4c6968ac", "text": "black and white photo real image of Donald Trump declaring victory on election night in 2016 "} +{"id": "0002102", "video_name": "25555128-3795-580d-b615-8a780357d02b", "text": "groot floats through space playing a guitar "} +{"id": "0002103", "video_name": "25596c4e-2368-512a-ab52-0a6d42e50618", "text": "Harish was returning home after partying with his friends, today was the moonless night because the moon was fully out. 3d animated charector "} +{"id": "0002104", "video_name": "255bcb98-a36f-5e3f-acfd-d36b7f7f8401", "text": "travel to London, money flying everywhere "} +{"id": "0002105", "video_name": "255f26a0-18ac-577c-85c0-bdbd9f624e8c", "text": "opens an old chest of bones "} +{"id": "0002106", "video_name": "2567465c-0597-5ec4-85a9-6358dfb2c6a2", "text": "johnny depp, Danny devito and Miley Cyrus in spaceship "} +{"id": "0002107", "video_name": "2569be3f-0d8a-5b85-bc21-ccd5466a8585", "text": "a blue power suit emerging from the ocean "} +{"id": "0002108", "video_name": "256a7450-7c2f-589a-ae4f-df6d9e776714", "text": "rapper turns into super hero Message: 1 Attachment "} +{"id": "0002109", "video_name": "256bc888-c48a-50b0-8ea2-126a5b3547cc", "text": "he is in the sky in a meditation posture "} +{"id": "0002110", "video_name": "256fc9f4-8130-5a55-93c8-dac985586c6f", "text": "A small construction site with Eddie the Excavator in action, showcasing his powerful digging arm in motion, scooping up dirt. The background should show a partially dug earth area. "} +{"id": "0002111", "video_name": "2571c3d0-6f70-5647-9b24-74260802cd97", "text": "250 g of spaghetti (or another variety of pasta of your choice) "} +{"id": "0002112", "video_name": "2576d871-89fa-5e01-9f05-8243af6fb2e3", "text": "pilot male talks to Stewardess in cockpit of an airplane, they sit happily "} +{"id": "0002113", "video_name": "257bafbb-6da4-5322-b8c1-ab3a87147be1", "text": "appearing from white smooth fog and transform to the white moving clouds on the black dark sky with smooth sun rays through the clouds Message: 1 Attachment "} +{"id": "0002114", "video_name": "25884b6e-28c6-56a5-8f07-079a8fabc444", "text": "all the animals and the boy with red shirt is happy in the jungla "} +{"id": "0002115", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "Amitabh Bachchan addressing a crowd as he resigns his presidency, camera dollies around him. 10K, 85mm lens, slight dutch tilt. "} +{"id": "0002116", "video_name": "25945ad2-73a7-5032-a725-9a47e79d3fe5", "text": "closed black book that has the Kanji for shinigami on the cover, lightning striking in the background, and a candle burning nearby "} +{"id": "0002117", "video_name": "25985e4b-99e5-5e70-852f-edb4a4c015b5", "text": "rainy day in downtown brooklyn, people walking slowly with umbrellas "} +{"id": "0002118", "video_name": "25a70637-997e-59e5-b316-181d25658683", "text": "one line drawing of a skater jumping an obsticle "} +{"id": "0002119", "video_name": "25b00ad4-8fee-5ff3-b5bc-5b71b8487b39", "text": "Begin in a serene forest setting and introduce the Wise Oak Tree, known for its wisdom. Show the main character, Sam the young squirrel, facing a dilemma about sharing acorns. Transition to Sam seeking advice from the Wise Oak Tree, who imparts wisdom on kindness and unity. Sam decides to share the acorns, leading to a forest filled with joyful acts of sharing and deepening friendships among the animals. Conclude with gratitude at the Wise Oak Tree "} +{"id": "0002120", "video_name": "25b9676e-c5a1-552c-b83f-b8ae36df6e28", "text": "lily ,max ,mia and ethan path led them into a labyrinth adorned with glowing crystals. Each twist and turn unveiled new surprises. "} +{"id": "0002121", "video_name": "25ba60d3-fa5d-53d8-9708-aa697db25568", "text": "dark biomechanical cyborg playing a synthetizer eurorack in 3D octane render, best quality , best resolution, HDR, 4k "} +{"id": "0002122", "video_name": "25c341fa-ce02-5d28-9873-b132f8fba0cb", "text": "a mouth opening to eat strange food "} +{"id": "0002123", "video_name": "25c4db92-b79e-5a38-ae96-3200d82d754c", "text": "Scorpio King as ruler. The photo should be full of drama and excitement "} +{"id": "0002124", "video_name": "25c5f523-45f0-5bb2-a7b0-b41ca9d11e6f", "text": "As the sun sets behind towering spires, an eerie darkness engulfs the 3D fantasy land. Malevolent shadows twist and writhe, coalescing into a sinister force. Unearthly whispers accompany the unfolding evil, and the very essence of the land seems to recoil. A palpable tension grips the air, foretelling a malevolent event that threatens to reshape the very fabric of this cinematic realm. "} +{"id": "0002125", "video_name": "25cb7ad6-be80-5cad-ba17-de1aa2c7ef87", "text": "a boy that fly to another planet "} +{"id": "0002126", "video_name": "25cc58dd-e83c-51bb-bf2b-b3520aa2e76e", "text": "a top view pond with coi fish, water ripple effect, hd, 8k, 60fps, HDR, noise offset, best quality, highres, optical image stabilization "} +{"id": "0002127", "video_name": "25ce70c7-55cd-50ff-9ed2-ddb19b55cd5f", "text": "sky with bright light and moving cloud "} +{"id": "0002128", "video_name": "25d28d72-7ebb-565f-aebc-d904d041b854", "text": "man sitting on bedin bedroom, hands in the air. hundreds of various printed pillows falling down from above "} +{"id": "0002129", "video_name": "25d5a02a-b64a-5a9c-9ecd-f6b7d26601aa", "text": "Masterpiece creative and highly detailed artwork, A Journey of Soulful Reflection and Empowering Growth "} +{"id": "0002130", "video_name": "25db4832-aaf0-53f3-bf2e-9f94a8b3ea81", "text": "pao bc flag and some awesome movement "} +{"id": "0002131", "video_name": "25dbab4c-b43b-515f-a1b6-e5d9b2b0b659", "text": "create an image about Jonas, a biblical character in Disney style "} +{"id": "0002132", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "A horde of zombies is walking down the city streets during the evening, captured using an old camera. They suddenly notice the camera and start running towards it. The video is being recorded in 4K resolution with motion 2 settings and a 16:9 aspect ratio. "} +{"id": "0002133", "video_name": "25ef266e-fab5-5b71-a081-bdfbb78db7bd", "text": "Red Crab walking on the beach during a bright day "} +{"id": "0002134", "video_name": "25f7ea94-df08-5b73-aa8d-bb69af03f590", "text": "Homeless children playing with donated toys, laughing and smiling, in a park in Mexico City, in a joyful, cartoon style "} +{"id": "0002135", "video_name": "25fafb64-4d12-5df6-a4ab-a922d6ed7180", "text": "Teenage Mutant Ninja Turtles caught a nSnow White in the winter forest "} +{"id": "0002136", "video_name": "25fc7864-416e-5552-a131-cf4ad5bf90c0", "text": "a dark fantasy style scene shows the power strugle between the two rival factions "} +{"id": "0002137", "video_name": "25ffd52b-8071-5a2f-bdec-748627527b1a", "text": "1980s space opera cyberpunk style clothes with lots of metallic colors and gold. cinematic amera shot of a king and queen sitting on throne with large spaceship window behind the king and queen showing galaxies behind them "} +{"id": "0002138", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "Kanye West eating an ice lolly in a train station "} +{"id": "0002139", "video_name": "2602adf1-132d-558d-b6e3-848c3d0e66a9", "text": "With the golden key in paw, Timmy the teddy bear and Lily the little girl tiptoed out of the room and down the hallway. They reached a tiny door that neither of them had ever noticed before. Timmy inserted the golden key into the lock, and with a twist, the door swung open. "} +{"id": "0002140", "video_name": "260f5797-3a1c-553c-b6cc-52184b073f4d", "text": "The intelligent machines in the city suddenly go out of control and launch attacks on humans, causing chaos and panic. "} +{"id": "0002141", "video_name": "26110700-0509-59d2-ab1e-634019e574da", "text": "Bosotn Roxbury Residential street cars driving down the street "} +{"id": "0002142", "video_name": "26147cc4-9fbb-588c-ae11-de3d31bca4e5", "text": "Make a logo with the initials INF in the center "} +{"id": "0002143", "video_name": "261cfdbe-6b84-5946-82c2-321cccee3023", "text": "That boy is born at that time when his family is standing and watching with good wealth "} +{"id": "0002144", "video_name": "2621144a-8cd8-5849-9b07-47bdda68814a", "text": "shadows danced around the room and ghostly figure in macabre performance ar 16:9 "} +{"id": "0002145", "video_name": "262d9805-307a-5819-b11c-e6a8af579a27", "text": ": black mermaids swimming in the open ocean, 8k, octane render "} +{"id": "0002146", "video_name": "26336d34-e6ca-5ec9-b659-c063f0c5a678", "text": "Illustrate the Snow Queen hosting a grand winter ball in her ice palace. "} +{"id": "0002147", "video_name": "263b4f04-05e4-5a7e-bea6-a506c3ee2060", "text": "Create boy standing with Indian traditional dress "} +{"id": "0002148", "video_name": "263c7e98-5ccb-5a28-972a-5ca1f184eb7a", "text": "Generate an image of Zara and her friends chatting and laughing during lunch, surrounded by lunchboxes and snacks. "} +{"id": "0002149", "video_name": "2642097d-19d5-5508-bf32-576a9592cd83", "text": "3D futuristic neon line architecture microwave blueprint "} +{"id": "0002150", "video_name": "26460a27-d582-56b9-91e1-eea91f4dc304", "text": "Dark psychedelic images, in the style of Salvador Dali. "} +{"id": "0002151", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "One lion ride a super bike with elephant "} +{"id": "0002152", "video_name": "264a60c6-db04-50ef-ba2f-528f2aab0069", "text": "book turnsing into a tv animated pic bright blue, purple yellow, red orange, purple, blue with a gold grill "} +{"id": "0002153", "video_name": "264e96d1-7e94-5a02-a7eb-ed56a1e30b49", "text": "A man and a woman sleeping together. "} +{"id": "0002154", "video_name": "26511b70-a762-5562-9be6-2e0eb503797c", "text": "pink plastic gems floating on a gray purple background "} +{"id": "0002155", "video_name": "265ff94f-396b-5156-805e-05babc1e1eb1", "text": "A picturesque village named Sundarpur surrounded by lush green fields and small huts. "} +{"id": "0002156", "video_name": "26619ad1-423a-580f-a4a2-aa6c68116852", "text": "On a black space background, a classic rotating globe earth map world witth fashion Bright Abstract blue Neon Multicolor Lines, rotating slowly with futuristic rotation with neon glossy lighthing effect futuristic, colorful shading, intricate artwork, fashion glamour, fashion lines concepts "} +{"id": "0002157", "video_name": "2665d97d-f431-5bde-904c-615b919bc5ea", "text": "The Breathtaking Landscape: Open with a sweeping aerial shot of Serendell, with its lush forests, rolling hills, and a sparkling river winding through the kingdom. The sun bathes the land in a warm, golden glow. "} +{"id": "0002158", "video_name": "2667a2f8-34b8-52d5-8c2d-696ad5e4e888", "text": "cowboy chopping a tree with an ax in the forest "} +{"id": "0002159", "video_name": "2668ef67-ccd9-51b6-8d08-f4baaef5fdec", "text": "a monkey on hawji in a bathing suit. 4 k video and 16:9 resolution "} +{"id": "0002160", "video_name": "266a844f-70f3-5ea3-be73-8fc15b579da1", "text": "a young woman named Lily. Her eyes sparkled with dreams, her heart danced to the tunes of hope. But life, unpredictable as it is, had different plans.4k "} +{"id": "0002161", "video_name": "266ac691-afa9-57a1-a990-c7052cf73365", "text": "a space rocket on the ground day time green patches of grass on the ground disney style cartoon style too "} +{"id": "0002162", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "a forrest with big trees and birds flying around, colorful, ultra realistic, epic angle "} +{"id": "0002163", "video_name": "2670ab62-d06b-5795-8d62-9f386153bef8", "text": "Once upon a time, in a charming little town, lived Lily and Max. They met at a park, their laughter echoing amidst the warm hues of a setting sun. Days turned into nights as they painted memories together, their hearts growing fonder with each shared moment. "} +{"id": "0002164", "video_name": "26715970-062c-54c2-9569-b271ce33773d", "text": "chanage the camra angle and focus on goat "} +{"id": "0002165", "video_name": "267815f7-236c-5bb1-a62c-5aa4ec70a38d", "text": "Man falling and dancing gently while falling Message: 1 Attachment "} +{"id": "0002166", "video_name": "267d4499-57a6-5145-8f20-c044cae36e36", "text": "30 october exl Imagine a picturesque scene where someone gazes towards the horizon, their eyes filled with curiosity and their heart full of dreams. Around them, nature celebrates in all its splendor, inviting exploration and discovery. With this image, convey the spirit of adventure and the determination to explore the surrounding world. Message: EXPERT LINE (Font: MODERN) "} +{"id": "0002167", "video_name": "267ec722-3917-5640-be80-ce2bb68e93b9", "text": "a guitar with gold color laying on the desert, with small cross emblem "} +{"id": "0002168", "video_name": "267f38bd-a339-5916-b2b2-c5917b3af903", "text": "an old temple of vrindavan, during the festival of holi, a woman running through the lanes wearing rich traditional jewellery and saree "} +{"id": "0002169", "video_name": "2682fd14-1a7a-5ce7-9811-2ebca8dc4d5b", "text": "Introduce Espirra and Castellano Silvestre as formidable warriors with blades tempered in countless battles against dragons. "} +{"id": "0002170", "video_name": "26837acd-3e31-558c-a302-a7afe0e0a030", "text": "meerkats in star trek uniforms manning the bridge of the Enterprise D or any other ship from star trek "} +{"id": "0002171", "video_name": "269199db-93e4-5523-a4d3-cb4dfa9fd2e8", "text": "In a world where the sky is made of cheese and the ground is made of chocolate "} +{"id": "0002172", "video_name": "2694a813-479c-54bf-adde-f7a8c1464b33", "text": "a cartoon bear eats bugs bunny "} +{"id": "0002173", "video_name": "2694f3ad-a587-587c-9de9-94b7d9aadd6c", "text": "Trading with emeralds, vivid colors, soft lighting, atmospheric, cinematic, moody, oil on canvas, 8 k "} +{"id": "0002174", "video_name": "269b721f-7b15-5971-be96-27a4e98cbc8a", "text": "Zooming in on a car going down a hill road "} +{"id": "0002175", "video_name": "269c2a77-01a2-54c7-a37e-33228f3a6756", "text": "distortion, alphabet, black and white line art, coloring book pages for kids, simple, alphabet B, perfect drawing, best, cute, high quality, blank background, "} +{"id": "0002176", "video_name": "26a30f7d-9e61-5105-b6df-0968478d1ca0", "text": "POV from behind one water polo ball flying towards the goal "} +{"id": "0002177", "video_name": "26a3cdb7-622b-5136-ae81-0d4766aca869", "text": "image of Move the animation to Mrs. xyz house, entering Baby room, gently tucking him in with a blanket. "} +{"id": "0002178", "video_name": "26a95ed5-a847-5bc5-8452-07e991e0a00c", "text": "Show Mia in a small, dimly lit apartment, staring at a blank canvas, looking determined to paint. "} +{"id": "0002179", "video_name": "26ae4833-f65f-5dcc-987d-d7b0f36789b7", "text": "a 5 seconds Disney style mesmerizing forest with a path in the middle. An elephant is walking in the background. And in the foreground there is a lark bird building it\u2019s nest in a hole in the path. Ar 9:16. "} +{"id": "0002180", "video_name": "26af4ed6-6cda-554b-aec7-f14efcbf5d2b", "text": "fast zoom out astronaut is in open space sees a sparcles and magnifisent performance of lights and space radiation, the camera fast is moving away "} +{"id": "0002181", "video_name": "26bab828-f036-550a-b891-6ca2ea50ee4e", "text": "One day, as dugong Danny peacefully grazed on seagrass near a coral reef, he noticed a young seahorse named Sandy struggling in the current. Sandy, with her tiny fins, was having difficulty navigating through the water. Danny, sensing her distress, swam over to offer assistance. "} +{"id": "0002182", "video_name": "26bd8a08-402e-59d0-9294-da59047d225f", "text": "girl moving her left foot forward just one step while the other foot remains fixed in the place it is "} +{"id": "0002183", "video_name": "26c379a4-c719-5fbe-8ac9-0e82da4ae857", "text": "Make an image with a green background and writing on the front that has the following message: "} +{"id": "0002184", "video_name": "26c705d4-1e06-5c1b-9795-031e1f16a8c9", "text": "Yellow waning moon that shines in the night "} +{"id": "0002185", "video_name": "26cad07d-e220-5f17-9184-db287c33405c", "text": "A compass that spins at high speed "} +{"id": "0002186", "video_name": "26ced35c-1f85-5254-8bba-312f1bcbcc46", "text": "n the other side, an emerald green dragon playfully rests, its eyes glinting mischievously "} +{"id": "0002187", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "three people in a boat in the sea "} +{"id": "0002188", "video_name": "26d6958c-4881-5326-9853-b17e2bb52ec3", "text": "Gunna multiplies into a legion of himself, towering over others to assert his uniqueness. "} +{"id": "0002189", "video_name": "26d6e8b8-d9ca-5b8d-bbd1-26cca1f3f59d", "text": "Step by step, she transformed her life "} +{"id": "0002190", "video_name": "26db3577-2d04-5edb-bb8c-b2af403e26db", "text": "ghengis kahn in 2023 dressed modern and acting the way someone would today in an American city "} +{"id": "0002191", "video_name": "26e6ec58-46be-55fc-b068-1afa092e03c9", "text": "He will encounter various challenges and obstacles on his journey, but he firmly believes that only solving the mystery of the lost city can lead to important discoveries about lost civilizations. "} +{"id": "0002192", "video_name": "26f0e863-0db5-54ec-a7fa-4328152b1f2a", "text": "I want a video that depicts advanced life in the year 2100, where buildings are very advanced and life is vibrant with technology "} +{"id": "0002193", "video_name": "26fa4c95-4b86-5492-ab41-b27ac7a51ddd", "text": "the tree is moving and the waterfall is moving "} +{"id": "0002194", "video_name": "26fdad1f-6aea-5cee-a049-fa799e85113f", "text": "landscape, realistic, hyper realistic, photo realistic, real, fantasy, photograph, 8k, masterpiece, background, linear space Message: 1 Attachment "} +{"id": "0002195", "video_name": "26fe2807-14bf-5179-b4be-c59ce3fce90a", "text": "create a girl who is boyish and falls in love at first sight with a handsome boy in 3d animation with 4k resolution "} +{"id": "0002196", "video_name": "26ffa4fb-ca29-5d5b-8bdc-9f4a7ad8049e", "text": "Add ambient sounds of ancient creatures and rustling leaves to set the eerie atmosphere "} +{"id": "0002197", "video_name": "27034b3c-d595-5edf-b532-f0e201b50b32", "text": "a santa claus resting at beach with palm trees like Christmas tree "} +{"id": "0002198", "video_name": "2703831b-afb3-54dc-9c5f-76e9a6b02a50", "text": "(Valera the worm crawls through the ground and gets to the surface. He sees Margot the Bug, who jumps with light jumps.) "} +{"id": "0002199", "video_name": "27068b6f-a3f2-5eae-b092-63de9a54acc2", "text": "ships arriving to the new world "} +{"id": "0002200", "video_name": "2708552f-e7ae-513f-9366-4df66b28e889", "text": "Risk management plays a crucial role in a construction management system. In construction projects, there are a variety of risks, including technical, financial, and legal ones. Identifying, assessing and managing these risks is key to ensuring the success of a project. This article will discuss the importance of risk management in a construction project management system and provide corresponding perspectives and insights. "} +{"id": "0002201", "video_name": "270dbc8b-4a79-5688-ad2b-c8cbe9e79225", "text": "Dark fantasy, King talking to his army of soldiers "} +{"id": "0002202", "video_name": "270e8f00-509f-5a9a-9547-1262ee964fd8", "text": "wolf paw is in a trap "} +{"id": "0002203", "video_name": "27146824-c898-50be-89c0-eb054e40e97f", "text": "medium shot following a soldier from the Second World War running through the forest with equipment and armour. dramatic backlighting, muddy ground, , camera behind soldier, cinematic, hyperrealistic, filmed by John Toll, style thin red line, Dunkirk, filmed Hoyte Van Hoytema, camera movement shakes rough "} +{"id": "0002204", "video_name": "2715d975-d2a4-5e66-b864-fd762c2bf468", "text": "A woman doing deep thinking, Ultra High Resolution, 8K "} +{"id": "0002205", "video_name": "27189da6-c368-55a3-b94d-bbd70cbfb091", "text": "The River of Life art expression of Heavenly Serenity "} +{"id": "0002206", "video_name": "271a04f9-b665-5ad7-9ecf-1cc51886ce9f", "text": "a realistic lowrider wire wheel rotating on a continuous loop, 8K, unreal engine, highly realistic, ultra realistic, highly detailed, ultra detailed "} +{"id": "0002207", "video_name": "271e3ae7-d31c-5f2e-a28d-8c0892a3f636", "text": "the Azadi tower in Tehran at sunset Message: WOW (Font: MODERN) "} +{"id": "0002208", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "a woman walking in the Edge of a precipicle. "} +{"id": "0002209", "video_name": "271fa825-2e89-56b9-ae04-003416781289", "text": "picture clicking by using tripod stand "} +{"id": "0002210", "video_name": "27257524-3cc7-5b3a-bc8d-849cb0fa4e03", "text": "Doraemon squeezes into the subway during morning rush hour "} +{"id": "0002211", "video_name": "2727c4ae-5ef2-5c1e-be72-bb2f08d197bf", "text": "studio ghibli old lady and old man movie "} +{"id": "0002212", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "anime, a band plays at a martini bar, camera zoom, motion 2 "} +{"id": "0002213", "video_name": "272bf78e-15eb-5e61-9f5d-6791b8c24537", "text": "man walking in the remains of an old battle field "} +{"id": "0002214", "video_name": "272d6a78-50dc-5411-bb3f-0124b245c32d", "text": "Insanely Detailed and Intricate Queen of Gold, symmetrical, Artgerm, WLOP, Warwick Goble; Photograph Taken on Nikon D750, Elegant, Digital Illustration, Scenic, 16k, Hyperdetailed digital matte painting, concept art, centered image composition, 8k resolution, 64 megapixels, coherent, CGSociety, behance HD, hypermaximalist, a masterpiece, "} +{"id": "0002215", "video_name": "272ea877-8072-5e14-9f08-f484f1219ea7", "text": "This palace was built with different types of precious stones, has a large dome and many pillars, In the palace there are many rooms, halls, swimming pools and gardens "} +{"id": "0002216", "video_name": "273a17e3-6785-51c4-a758-291e2b94237a", "text": "a medium shot of two people sitting on a hill staring off into the horizon, their backs are facing the camera, 2d vector cartoon "} +{"id": "0002217", "video_name": "273cc540-4266-5268-b8d2-37335379c37f", "text": "An aerial drone shot of a lonely cabin on a snow capped mountain. Cinematic, ultra realistic, shallow focus, 35mm "} +{"id": "0002218", "video_name": "273f3b54-b65b-5261-82a6-518f12e8e8aa", "text": "beautifully designed fashion boutique with racks of clothes neatly arranged, sparkling accessories on display, "} +{"id": "0002219", "video_name": "274267c1-3304-50cd-a82e-3912783e906b", "text": "a 22 years old girl wearing a green cloth, introducing herself as N F Onuoha, talking about what she learnt from Rebirth Class last night on DeFi and web3 jobs 45secs "} +{"id": "0002220", "video_name": "274e5c7f-d46f-5f71-b4e8-3c1cb75c3b8e", "text": "Create an animation of a group of students within a classroom from another planet. "} +{"id": "0002221", "video_name": "27565574-6edf-5a4d-b737-009e032fa036", "text": "the dark brown fox standing in forest in a victorious style "} +{"id": "0002222", "video_name": "275bed9a-5323-5047-8171-4328018e3d80", "text": "Pixar style humanoid gifts sing a cheerful and fun modern Christmas carol, Christmas lights, snow, warmth "} +{"id": "0002223", "video_name": "27603806-0bee-5987-bb0d-ca766ff9e9d8", "text": "animated boy with simple graphism happily imaginin to visit a beatiful city with a beautiful perspective "} +{"id": "0002224", "video_name": "2762461a-2a8e-53a2-8271-6f3c4abdfaee", "text": "a beautiful woman looking directly at the camera "} +{"id": "0002225", "video_name": "2764e8a2-d50d-510f-bf7a-780dbb1d097d", "text": "A beautiful image with a fence in the middle of a forest animal hut and a forest, trees, clouds, and the sun in the background. It should be for a screen in a puppet theater. "} +{"id": "0002226", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "A golden lion king overlooking the divisions "} +{"id": "0002227", "video_name": "2771135f-5e22-567b-a149-232581c1358c", "text": "create a spinning soace station fast "} +{"id": "0002228", "video_name": "277332d0-41f3-5dd7-9bc3-166ebf6c9db9", "text": "One such intriguing encounter is that of Juan Cabana, "} +{"id": "0002229", "video_name": "277394ef-e600-57e7-914c-13337e1e024b", "text": "dogs surrounded with cats and chicken "} +{"id": "0002230", "video_name": "2773b7c7-2557-55e8-91e9-05f0fcdcb5a5", "text": "a people rise a horse on the playground "} +{"id": "0002231", "video_name": "2780399e-3994-5409-bcfa-5dbac0e1b1cb", "text": "Wide shot of a river in Florida. Live oak trees and saw palmettos covered in Spanish moss dot the marshy shore of the river. Cut to a medium shot of the sun setting as an old wooden boat rowed by Charon crosses the screen. Ar 16:9, 4K. "} +{"id": "0002232", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "a dog flying in the sky who introduces himself as Liu Tiangou. His words are to be displayed in Chinese characters. "} +{"id": "0002233", "video_name": "278836e0-e4de-546c-9c61-50382537fef0", "text": "A sliced fresh lemon dropped in to a water with ice, cinematic shot, high detailing, side view, black background "} +{"id": "0002234", "video_name": "2788f5db-a81f-54fc-8c07-553dae8f7352", "text": "A female action movie hero leaps away from an explosion. Cinematic. City street. Dynamic. Atmospheric. Bullets, smoke, and debris. "} +{"id": "0002235", "video_name": "278d82aa-6c24-511e-88e4-9295b15426c8", "text": "Dwarfs in dwarf costumes on a forest road smoke and meet a bus "} +{"id": "0002236", "video_name": "278d9064-bd45-5291-9dda-c5dd013c7560", "text": "a jacked man with sweating in a gym "} +{"id": "0002237", "video_name": "2793136a-9f45-56ad-81af-dae57309a6d0", "text": "Make me a only one female of north korean reporter 90s, clothing giving a report in a 90s style, background style 90s noticer, bob cut hair, middle large hair, low angle camera centrally, suit white, make 1:51 length video "} +{"id": "0002238", "video_name": "279365f8-26bb-5c6d-b73a-09c7ad3e5e25", "text": "Crow and Bird at this time to help the villager peoples find a new source of water. cartoon style "} +{"id": "0002239", "video_name": "27944ea5-0248-5048-8719-0271a4e5df67", "text": "Turn the girl in the photo into a boy "} +{"id": "0002240", "video_name": "2798d49d-6c93-5b14-9adf-9eef664b4438", "text": "Create a scene with futuristic movement with neon lights and a party atmosphere. "} +{"id": "0002241", "video_name": "279aeb96-7686-5771-9bca-d2db778070ad", "text": "princess with long dark hair, dancing, IN front of Hello kitty near the mountain, cinematic "} +{"id": "0002242", "video_name": "279c5dfb-5114-54a1-acd9-118fd3942d72", "text": "On this mountain, God will eliminate the curtain that hides all people, coverage that encompasses all nations "} +{"id": "0002243", "video_name": "279cae5c-9c6c-528a-863f-f23224629ff4", "text": "huge dark chamber with aliens and machine, wide angle dark and cinematic "} +{"id": "0002244", "video_name": "279fc834-e23c-5193-8cc1-e3d675733a05", "text": "A woman walked into an ancient estate and discovered an unusual atmosphere in the house. During her exploration, she encountered a black cat that seemed to give her a hint. "} +{"id": "0002245", "video_name": "27a675ae-affe-5e33-bbb5-c965e14c2b9b", "text": "WW2 War lake foggy lake, doomcore, nightmarecore, canon film grain, harsh lighting, 1970s film quality, 1970s film grain "} +{"id": "0002246", "video_name": "27b00c42-50bf-58f7-8840-f481c9c095d9", "text": "electric car Tesla stuck on the road, sparks, realistic, daylight, 4K "} +{"id": "0002247", "video_name": "27b1dd00-9ffe-5407-adc0-a298cf5f898d", "text": "giant cake with lot of candles "} +{"id": "0002248", "video_name": "27b3f085-6d35-57a2-83e7-a86dd59b6bfd", "text": "man with a globe for a head. Cinematic lighting "} +{"id": "0002249", "video_name": "27c0fd1d-4de5-5207-b326-8f56037d1dcd", "text": "Illustrate a person standing on a conductor\u2019s podium, surrounded by various figures representing experiences, beliefs, and relationships. Depict each figure holding an instrument that represents their impact on the person\u2019s identity "} +{"id": "0002250", "video_name": "27c199bb-bf11-5faf-93c0-f5295d60f68d", "text": "her eyes held the wisdom of centuries.\n32k resolution highly detailed realastic character notion stability effects "} +{"id": "0002251", "video_name": "27c39498-bb98-55f5-abde-0b360bc158c0", "text": "make a orca fighting with sharks "} +{"id": "0002252", "video_name": "27c4d176-7755-543c-9997-8f384ffa0ab1", "text": "a girl stays in a autumn street, walking towards me. "} +{"id": "0002253", "video_name": "27c620e1-88bd-5e13-963c-afb856ca1f5a", "text": "a family looking forward to summer vacation. "} +{"id": "0002254", "video_name": "27c84b42-44f8-5dfc-8fd7-6fcd98a5edfb", "text": "Iron Man and Batman are fighting, with Iron Man firing a laser attack. "} +{"id": "0002255", "video_name": "27c9ae7f-cb9d-539a-bb8a-bf91c895c664", "text": "two anime characters girl and boy are arguing each other. "} +{"id": "0002256", "video_name": "27d2e89f-f7c0-5ada-a3dc-8efc581cd1b5", "text": "clouds forming a message I LOVE YOU ultrarealistic, 32k "} +{"id": "0002257", "video_name": "27d31cb3-d322-521d-89c2-2052d66ea064", "text": "Women walks into Swiss Formulation cosmetics store and speaks to a women at the counter "} +{"id": "0002258", "video_name": "27d7e37d-8050-522c-b533-c38f8baa4a7d", "text": "Classic Xianxia style. The library of the Immortal Academy, in addition to the classics and drawings of immortal cultivation techniques "} +{"id": "0002259", "video_name": "27e22c02-6f60-58aa-84b6-dff16cc5586a", "text": "blonde hair and twinkling blue eyes. two girls age 25 was sitting on a bench, fontsides looking a bit sad. youtube short size 9:16 "} +{"id": "0002260", "video_name": "27eb446a-1efc-5e15-a1cd-dc9f296bba2f", "text": "glass soda bottle pouring out soda liquid fizzy lots of motion liquid drops fizzy drink being poured "} +{"id": "0002261", "video_name": "27ee0fe3-2d4f-5213-ae00-1d1fcf23a372", "text": "earthquake braking building in thi city "} +{"id": "0002262", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "In a surreal cricket match, Prince Bin Salman and President Sisi face off on a tank, with the Israeli flag as their banner. The road beneath them is paved with the blood and corpses of innocent children, as they try to turn back from the horrors of war. "} +{"id": "0002263", "video_name": "27f46bc4-b33b-57f8-8ff0-a4efe2f7c67a", "text": "woman in the 1800s cries on a hill long shot "} +{"id": "0002264", "video_name": "27f6f1c7-21c7-5067-955c-c972768a83d7", "text": "A pink sugar queen flying into the sky "} +{"id": "0002265", "video_name": "27fbb33d-3d76-5ec7-8c2b-16a36e31acf7", "text": "Aphrodite, swimming inside the ocean with a dress "} +{"id": "0002266", "video_name": "27ff1f05-942b-5042-bc81-1cb845725a40", "text": "A sunny day in a small town. Mia, a young girl, sits on the grass with a set of colorful crayons in her hand.\nExplanation: Introducing Mia and her magical crayons: "} +{"id": "0002267", "video_name": "2800b74b-a646-5d3c-a07c-91be6f1da56a", "text": "robots touching like MichaelAngelo\u2019s the creation of Adam "} +{"id": "0002268", "video_name": "28060cce-e9d2-5eb0-a748-f5c265ce367b", "text": "A plane leaving chemtrails with the message Message: PANTOS (Font: MODERN) "} +{"id": "0002269", "video_name": "2806a5c0-88b3-51af-ab58-6ca6f6206975", "text": "homer simpson walking ahead of an explosion "} +{"id": "0002270", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "tesla model is moving fast in a futuristic crystal city "} +{"id": "0002271", "video_name": "280fb5b7-cec5-52e0-9baa-c16350a4ea9e", "text": "a young woman in sand colored uniform on a archeological digging site and on the back ground of the woman walking, there are other archeologists working on the site "} +{"id": "0002272", "video_name": "281c29f1-c5bb-53f4-ae99-a77560ca9a1d", "text": "Donald Trump stands on a cloud, wearing a white robe and golden crown, looking out at the view of heaven, surrounded by clouds and angels, 8k, high detailed, sharp focus, intricate, surreal, ethereal, portrait lens, by Rene Magritte "} +{"id": "0002273", "video_name": "281e8abe-585d-5fe1-b1bb-5cc91cf2d12e", "text": "Green slime oozing on a table 4K, TikTok, trend, trending, "} +{"id": "0002274", "video_name": "28270329-570f-5767-b532-4ce66f9f3d50", "text": "A boy with wolf running in the forest towards sunset "} +{"id": "0002275", "video_name": "2833cc86-892c-54a4-bfdd-2c2474fd780e", "text": "woman speaking about a passionate topic in Bali "} +{"id": "0002276", "video_name": "28388101-fd6a-5ecf-adf3-7d1b0260c32d", "text": "a beautiful girls standing headphones thander background "} +{"id": "0002277", "video_name": "283bcd91-db42-53b3-8bfb-cf78b9c2109e", "text": "Sit in a recliner, behind a bonsai tree Message: 1 Attachment "} +{"id": "0002278", "video_name": "285a4f6d-db23-517f-9e40-a00b5e848ef9", "text": "The Little Explorer comes across a wide, churning river "} +{"id": "0002279", "video_name": "2867b7d3-20ac-50f4-8331-5a21837c85eb", "text": "cinematic In a world where time is controlled. "} +{"id": "0002280", "video_name": "286cc6a7-a8a4-56b1-ae72-c3a5b5a45fb8", "text": "hard angle, american male, normal eyes, 18 years old, thin face, post warrior, dieselpunk, landscape with dragons, (messy medium hair:1.1), straight hair, (clothes with lots of accessories, uniform), emo hair, standing, renaissance period,the adventurous guardian, bright day, dragon friend, smile, full body view, good drawn face, detailed scenario, walking "} +{"id": "0002281", "video_name": "287409e0-fbf8-57a7-9231-16df1a8a35b3", "text": "colourful wildflowers swaying windy day sunrise in a japanese garden with waterfalls, colourful pixar scenery, realistic, peaceful, scenic, cinematic motion "} +{"id": "0002282", "video_name": "2874fe7c-ff26-587f-bbd0-5ea29fb53dc8", "text": "look some human body in night forest (firstperson) "} +{"id": "0002283", "video_name": "287a6436-c27c-5e14-bc46-503a72eb1931", "text": "vehicle that looks like a watermelon driving off a cliff "} +{"id": "0002284", "video_name": "287be44f-a7eb-504f-a714-63cd2cbc2cff", "text": "Create a short story about a skilled driver showcasing their precision and control as they navigate a challenging drift course in a blazing red Ferrari. Ultra realistic "} +{"id": "0002285", "video_name": "287c75fa-4801-5761-9263-ea2f488b7b82", "text": "dua lipa running from natalie portman on desert "} +{"id": "0002286", "video_name": "287d0825-0457-587e-9105-85c6b9d30966", "text": "There is a walker on a desert "} +{"id": "0002287", "video_name": "287dae1f-c004-54dd-b6bf-d50cf8d3a11d", "text": "a crowd with many food trucks and a festival in a city background in a Disney Pixar style 3d animation "} +{"id": "0002288", "video_name": "28810a7e-8710-51d4-8b40-cb0accdebfbe", "text": "fracture breaking white wall on parts "} +{"id": "0002289", "video_name": "28821b70-5032-5b10-ad94-b8bcf4400469", "text": "A painting made by Zues throwing a bolt of light "} +{"id": "0002290", "video_name": "28822067-d983-58ee-8a9f-21bf56f7fc64", "text": "A beautiful woman is dyeing her hair "} +{"id": "0002291", "video_name": "2889ced2-5449-5752-8440-a825d774e40c", "text": "samurai are driving across the field in a big car chasing a huge elephant "} +{"id": "0002292", "video_name": "28900265-489f-5699-aefc-f9a8d4d6afd3", "text": "In the Forest The camera smoothly moves through the dense trees, showing the wild and picturesque forest. Behind a tree, a woodpecker discovers a mushroom and sits down to eat. Suddenly, it sees a squirrel jumping from branch to branch, gathering nuts and hiding them in a hollow tree. The camera transitions to a group of deer grazing in a meadow. "} +{"id": "0002293", "video_name": "2892f8fc-3411-5d8b-ba74-b7b7528729d9", "text": "a goddess is swimming with fish inside a bioluminescent fish tank "} +{"id": "0002294", "video_name": "28960c1a-e343-58c2-aa1c-668bb9801348", "text": "and elon musk eating cake in lebanon "} +{"id": "0002295", "video_name": "289b913c-27e9-5e8f-adfa-7f91587406b0", "text": "retro psychedelic, cute anime style girl, walking "} +{"id": "0002296", "video_name": "28a298e9-0630-5587-ad03-e9e93c6d571d", "text": "Thousands of computers make up the Internet "} +{"id": "0002297", "video_name": "28b48887-9594-5475-a435-c6b72efd79b1", "text": "a stunning drone shot of effil tower and do 3d rendering in 4k "} +{"id": "0002298", "video_name": "28b5db43-8a2f-5a39-b4e3-7e4bd0a17b7e", "text": "Mushroom cloud rising from a cyberpunk city "} +{"id": "0002299", "video_name": "28b9e5d1-1d3f-5990-b38d-c3d0a5430c78", "text": "A Big majestic whale swimming in the deep ocean, bright rays coming from the surface, and has an aery and cold vibe. Empty sea all around you can feel the infinity and deepnes the ocean. Ultraleastic, detailed "} +{"id": "0002300", "video_name": "28bb241d-2359-5ae9-961d-70fe32d06867", "text": "The pink pony is throwing up rainbows "} +{"id": "0002301", "video_name": "28bb48fa-acb1-538f-9194-6d569090d9ee", "text": "create a man playing the piano in a futuristic setting "} +{"id": "0002302", "video_name": "28c0a077-c3c6-5d0c-a072-621726c460e0", "text": "a single flame in an illustration style, disney style, white background "} +{"id": "0002303", "video_name": "28c1f5bc-82ac-5204-95e2-e2d0b402f1be", "text": "sand dunes in a desert at night, with a starry sky and snowfall falling "} +{"id": "0002304", "video_name": "28c2d92d-cac0-5e03-91b4-66cc76d05ac0", "text": "blond woman leading a based cabin control spaceship craft based in movie Prometeus "} +{"id": "0002305", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "A police car follows a hover sports car down the canyon freeway. Scifi. Cyberpunk. "} +{"id": "0002306", "video_name": "28d3b634-95d9-5882-9fc1-57cc2af53f94", "text": "Luna, a girl with dark hair and a curious smile, discovers an ancient shiny key in the attic of her house. "} +{"id": "0002307", "video_name": "28d9f3a8-26f5-5038-b2e8-253b3264da95", "text": "A 30 years man walking in the busy street of a sea beach, at evening light, sunset, 4K, HD, Photorealistic, cinematographic "} +{"id": "0002308", "video_name": "28e34ab5-3d29-5eae-8326-9d37dab33180", "text": "on white circle , trophy achievement, black and white "} +{"id": "0002309", "video_name": "28e3a9f1-6057-5e08-b496-cfea3bc44700", "text": "valorant highligts 8k 2000 fps all movement "} +{"id": "0002310", "video_name": "28e8d579-4a46-5db3-841d-4ad59df4d4cc", "text": "extreme close up of a computer screen on a spaceship in a science fiction movie, high contrast lighting, high black point, monochrome colors, "} +{"id": "0002311", "video_name": "28ecd942-2ecc-5907-b5a3-6cfaa6a7dbc1", "text": "attractive young black teen girls wearing bikinis dancing at a pool party from the 1970s "} +{"id": "0002312", "video_name": "28f0183d-afcd-5b7c-9af5-fac8f4aa0d7d", "text": "Epic duel between two powerful mages in a dramatic setting. The first mage, a male of Middle Eastern descent, harnesses the power of arcane magic, with mysterious symbols and ethereal energy swirling around him. The second mage, a female of Native American descent, wields both fire and ice magic, her hands producing intense flames on one side and chilling frost on the other. The two mages lock eyes, their spells clashing in a display of raw magical power. "} +{"id": "0002313", "video_name": "28fbde91-6622-595e-9d96-f1b2f7e8a1b3", "text": "spirit standing in a tomb, creepy, cinematic "} +{"id": "0002314", "video_name": "28fd05cb-a2dc-5335-b83e-5cabbc8391e0", "text": "red audi rs moving down the road "} +{"id": "0002315", "video_name": "2903310e-2158-5ad0-9918-2739e82291c2", "text": "two men walking through the mountain in the Aran valley in Spain, one tall and the other of medium height. "} +{"id": "0002316", "video_name": "290e6f3e-09f6-57c6-a6a1-2da331685717", "text": "magical crystals floating and spinning in the air, behance, by Oskar Schlemmer, prismatic, invisible "} +{"id": "0002317", "video_name": "290f1f17-573a-55c9-80db-17f24a5103fa", "text": "frog wall painting becoming real giant frog "} +{"id": "0002318", "video_name": "29195791-25ee-5ecb-be79-e38c5d52b08e", "text": "At the seaside, a beautiful woman sat alone, immersed in her thoughts. Her long hair gently fluttered in the sea breeze, complementing her white summer dress. Her feet gently tapped against the waves, creating a serene sound that intertwined with the cries of seagulls, forming a summer symphony. "} +{"id": "0002319", "video_name": "2929c892-975c-509d-9a7a-6019734ea240", "text": "a yellow puppy and a white kitty playing together on the lawn "} +{"id": "0002320", "video_name": "292cd963-df52-52ee-b9c5-b1b3079c765e", "text": "An image that combines elements of the legend, such as a monk, the devil, and the massive book, with an aura of mystery and intrigue. "} +{"id": "0002321", "video_name": "29333a0f-b0fe-5da6-9d47-3d6e64ddea1d", "text": "a girl watching a starry night, cinematic "} +{"id": "0002322", "video_name": "293811ee-43d4-50d9-83d8-09b6f61c0d98", "text": "a video showing autumn maple leaves flying all over and a beautiful punjabi girl like neeru bajwa walking over those leaves on a beautiful hill "} +{"id": "0002323", "video_name": "293aa100-251a-5d75-a240-7a13d25a4909", "text": "two women fighting in a street market "} +{"id": "0002324", "video_name": "294b5f87-a253-565e-873c-e2a0160a1607", "text": "a picture use for head profile photo as a tea trading company "} +{"id": "0002325", "video_name": "29539a8e-91d5-562a-a330-d2e7f7ed1e81", "text": "generate me a image of a muscular guy meditating in deep snowy mountains "} +{"id": "0002326", "video_name": "2958c07c-2961-5451-9acd-aa11120f4919", "text": "cartoon footballer trying to score a goal in a heated match to fails to score the goal then walks away dissapointed "} +{"id": "0002327", "video_name": "295ce37b-9af9-571f-9797-612c220d7564", "text": "old man walking alone on streets in cold night "} +{"id": "0002328", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "lion trying to catch a rat no blur video anime style "} +{"id": "0002329", "video_name": "297af6bf-4bc8-5176-a5fe-958abb136228", "text": "Disney like real 3d animation .The Munchkins, the tiny people who lived in this land "} +{"id": "0002330", "video_name": "29829b0e-6846-5ef3-863b-aceba710ff8b", "text": "a dealy ferocious giant footsteps approaching towards kids imside the cave "} +{"id": "0002331", "video_name": "298a70d9-c4b1-5330-997e-460425b4f285", "text": "samuel l jackson talking to goverment officals at a office setting "} +{"id": "0002332", "video_name": "298a8ef8-c96e-5c40-96ce-5a7e22e35dde", "text": "a man is doing affiliate marketing through digital mode "} +{"id": "0002333", "video_name": "299057d7-4d17-52ff-ad61-9e7e14901eba", "text": "Liminal space hallway creepy unsettling strange surrealism dreamcore Message: THE (Font: RETRO) "} +{"id": "0002334", "video_name": "2992d03b-b141-5455-a1d5-7ec083b2d18b", "text": "A beautiful afro american woman is lighting a cigarette while she standing in the entrance of a modern elevator. She is wearing grey sweatpants and a olive green bomber jacket. The scene is captured as a wide angle full body fashion photo on 35mm film "} +{"id": "0002335", "video_name": "299837a2-944f-5dcd-a2df-3886282eaf69", "text": "seed of a tree growing from a minimalist brain, pastel colors "} +{"id": "0002336", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "We see a nomad walking through the desert, from left to right, with a sun above shining brightly "} +{"id": "0002337", "video_name": "29a588c9-a548-570a-a2e0-54975a98d369", "text": "A heartfelt letter from John to Emily. "} +{"id": "0002338", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "Emma, sitting alone in her room, looking sad and lonely. "} +{"id": "0002339", "video_name": "29a8b538-04e6-54de-ab12-9a6b0be4fd68", "text": "A transformer is a static device that transfers electrical power from one circuit to another without changing the frequency. It operates based on the principle of Faraday\u2019s law of Electromagnetic Induction1. The construction of a transformer involves several components, including: generate 4k image "} +{"id": "0002340", "video_name": "29b85214-4577-5e47-8cd7-88c6db8e516f", "text": "Bra and thong invisible woman floating dancing 8k "} +{"id": "0002341", "video_name": "29bc4250-559a-561c-93f7-6fa0355fe135", "text": "waterfall night Szene Littel girl show this waterfall "} +{"id": "0002342", "video_name": "29c27e36-62d5-5411-b6ad-f4835a129449", "text": "the hero say hi on the 2nd floor of the butiful building "} +{"id": "0002343", "video_name": "29c569e4-1614-5f19-8f93-9344b202ca45", "text": "cook stands on kitchen and decorating vanilla cake by chocolate pieces "} +{"id": "0002344", "video_name": "29ccaf5b-d598-52c5-b25f-7c6f73895d84", "text": "a cute animated character standing beside a cotton candy machine "} +{"id": "0002345", "video_name": "29d178ad-b2c1-5511-be50-b74be07daaba", "text": "Generate a scene description that vividly portrays the bustling streets of Nairobi, setting the urban backdrop for the story. Include elements like people, traffic, and city lights to create an immersive atmosphere. "} +{"id": "0002346", "video_name": "29d37a84-7b36-5f46-b9fb-bdfc1578ffc8", "text": "A path leading deep into the forest, overgrown and eerie,4k,16.9,zoom. "} +{"id": "0002347", "video_name": "29ddce1f-7591-585c-944e-4bb57055de69", "text": "moving in fighting pse Message: 1 Attachment "} +{"id": "0002348", "video_name": "29deb0d4-e17e-5b98-872a-465862e6d64d", "text": "Massive Aliens in the hoodoo desert Alfred Stieglitz black and white 1900s "} +{"id": "0002349", "video_name": "29e501cd-ec48-580a-b5d2-99225ca581ca", "text": "A person getting into a Dodge challenger "} +{"id": "0002350", "video_name": "29e61172-f9b0-59a3-8dcc-0cc119486398", "text": "european tabby cat, on an armchair, film style, film lighting, film shot "} +{"id": "0002351", "video_name": "29e69d9c-36a8-53a8-8d93-580489cb02e6", "text": "High school students in school uniforms are walking along the street, looking out over the city. "} +{"id": "0002352", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "Dutch windmill slowly turning in the wind. Cows on background and high grass in forground moving in with the wind. Sunny day. 30mm film "} +{"id": "0002353", "video_name": "29eddbc8-ae53-569c-92d8-ce75452a29f5", "text": "a hand is coming out of an old notebook, grabbing a colorful globe in a fantasy world "} +{"id": "0002354", "video_name": "29f1343a-8c33-53e8-8e8c-3d370b00ce56", "text": "a vintage story book opens and zooms into another video "} +{"id": "0002355", "video_name": "29fcfad0-9f81-5312-937b-87cf9c1d700f", "text": "The camera looks down from above, a man in a suit is lying on the asphalt, people are walking around, sketch art "} +{"id": "0002356", "video_name": "29fe1958-dd1a-53fe-aca6-30fac059d733", "text": "Please make the colors blend together and move professionally "} +{"id": "0002357", "video_name": "29ffa85a-a90c-5e0d-aede-51e4160bbe52", "text": "abstract scenes of a neon planet Earth seen from above in the year 2367 "} +{"id": "0002358", "video_name": "2a01caed-2cf8-558b-93dc-8a8fa4fb4573", "text": "A girl with fiery red hair and blue eyes, looking in extreme terror "} +{"id": "0002359", "video_name": "2a05b421-db1f-5ab3-819f-5eb824f8a152", "text": "A child jumps on a bunk bed "} +{"id": "0002360", "video_name": "2a078ef1-1e0d-52ac-9db3-4afd09a7003d", "text": "Create an animated scene of a sunken ship covered in corals, surrounded by curious fish. "} +{"id": "0002361", "video_name": "2a0b0053-3388-525a-b990-07896a11442e", "text": "Depict a graphic of interconnected algorithms forming an ecosystem that thrives on spreading falsehoods. "} +{"id": "0002362", "video_name": "2a0be4d4-5d0f-56f5-8ff5-d49aaa46c839", "text": "Sparky the Super Squirrel: An video of Sparky, the squirrel with a tiny shiny cape, looking brave and ready for an adventure. Aminated 4k 3D "} +{"id": "0002363", "video_name": "2a10c020-d41f-5cfa-a10b-8a6feebd4ee5", "text": "In the bustling streets of Mumbai, a young boy named Raju earned his livelihood by polishing shoes "} +{"id": "0002364", "video_name": "2a14cc3f-1d18-58b9-8336-c236719bfb96", "text": "The cat disturbed the two rabbits "} +{"id": "0002365", "video_name": "2a1be880-9037-57b5-887a-983e433d286a", "text": "A dark background , Big Black candle lightning the room, zoom in camera movement "} +{"id": "0002366", "video_name": "2a204a46-7d52-5da0-a986-b58e991eab30", "text": "hair blowing in the wind clouds gliding across the sky, flower petals falling. "} +{"id": "0002367", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "takes us back to the final moments of his life, "} +{"id": "0002368", "video_name": "2a2871b5-afa4-504f-a0c4-af01d164c45d", "text": "gorilla pounding the ground with his arms, animated, 4k, dynamic "} +{"id": "0002369", "video_name": "2a2b7101-d0ae-53f0-9261-4d71b50f3cfd", "text": "man on a motorbike crashing into a wall at a high speed, explosion, shrapnel "} +{"id": "0002370", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "a bread delivery person delivers two dozen hero buns to a deli in downtown madison georgia, at a place called madison produce "} +{"id": "0002371", "video_name": "2a35b685-dd0d-54de-9fd3-fd181ed53d48", "text": "amazing HD video with pretty girl "} +{"id": "0002372", "video_name": "2a3e6eb4-621e-5849-975d-38b3783b42f5", "text": "jesus laughing and holding his finger on the scale as someone is weighing theirselves "} +{"id": "0002373", "video_name": "2a49bbc7-bc1a-5878-99d6-87fc2c305e38", "text": "an handsome men in hoodie playing game in pc in Japanese animation "} +{"id": "0002374", "video_name": "2a4d1bb5-a7a5-59dc-a6e0-3deb4fb8e8c5", "text": "showcasing the cactus jack by travis scott sneakers "} +{"id": "0002375", "video_name": "2a515db6-54a3-57a1-ba26-ae905e022c05", "text": "a girl wear bikini look forward upward her one leg digital art "} +{"id": "0002376", "video_name": "2a590035-ce12-5bd7-b316-58e220cf2aa6", "text": "her leg go ahead slowly and naturally,her hair flys,h\u1ebb hands move,she eyes contact,her wings flap "} +{"id": "0002377", "video_name": "2a5e6a65-b5ea-5bde-8eac-aff2516e0ebf", "text": "a windy day in a fantasy colorful forest "} +{"id": "0002378", "video_name": "2a61bf27-5927-5e30-9ff7-91e9c99601d9", "text": "a star search algorithm traversing simulation "} +{"id": "0002379", "video_name": "2a66ad95-1b23-5b2f-9662-6e2e8a1aae93", "text": "office man breathing showing the exact movements of each muscle "} +{"id": "0002380", "video_name": "2a683dc4-0781-55dd-b398-cc07661852b4", "text": "Rapper Gone Fludd makes cotton candy and then eats it "} +{"id": "0002381", "video_name": "2a6996b6-0394-5a54-b8de-e7d0989cda25", "text": "Darkness prevailing, only a few rays of moonlight filtering through the torn curtains "} +{"id": "0002382", "video_name": "2a756c95-cf71-5ee0-8e90-26caf7bbd2eb", "text": "A luxurious Car Garage contaning Sports Cars and Lowriders "} +{"id": "0002383", "video_name": "2a77dca6-2963-509e-a6ae-13e49f50fbdd", "text": "The earth in the Las Vegas Sphere. "} +{"id": "0002384", "video_name": "2a7ef9bd-cfe2-507a-8973-5aba2d0ef6bb", "text": "generate a video to introduce myself with the following script: hi "} +{"id": "0002385", "video_name": "2a7f93b3-d9eb-53d0-bb38-b5747da7d327", "text": "Director testing out the landmark features on the virtual camera to visualize the 3d scene and environment from mutliple perspective. Message: 1 Attachment "} +{"id": "0002386", "video_name": "2a860d39-63cb-5786-a5bb-bfc882936a69", "text": "an 8bit platform video game of a pub, you are a bartender serving lots of drinks in the game, bright colours,90\u2019s style,8k "} +{"id": "0002387", "video_name": "2a87bade-25cc-5ed5-befa-060ba144ea35", "text": "a group of students studying Technical Writing "} +{"id": "0002388", "video_name": "2a8e9e6c-670d-58f2-a623-653c1e53140f", "text": "fast paced experimental film by Stan Brakhage "} +{"id": "0002389", "video_name": "2a9080d1-fa7f-5448-801b-a953fed1acdf", "text": "mystical village at the highest mountains of nepal,snowstorm,realistic,cinematic "} +{"id": "0002390", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "Brazilian Hugo calderano playing table tennis with Ma Long in Tokyo "} +{"id": "0002391", "video_name": "2a9278f0-4c6d-5a49-85b5-ab994374d693", "text": "people dance and having fun while singing karaoke at night "} +{"id": "0002392", "video_name": "2a936afc-7dbe-5365-bd97-19e1d835072f", "text": "woman reading a tarot cards cartoon "} +{"id": "0002393", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "a surprised and happy look of elf "} +{"id": "0002394", "video_name": "2aa4b3b8-b227-5a69-a770-70f121e8915c", "text": "Cute robot flying through the sky leaving jet stream from rocket booster "} +{"id": "0002395", "video_name": "2aa5ec50-b273-5f22-9610-247bab8be874", "text": "frame for clip in Yeat style, a guy whose face is not visible in a black hoodie "} +{"id": "0002396", "video_name": "2aa5fc47-a806-55af-bbd2-a4cdc5186d0c", "text": "Two astronauts flying around the moon and stars falling behind "} +{"id": "0002397", "video_name": "2aa71c1b-c414-5320-85ed-59ddcfe2c662", "text": "The house where Minnie used to live, now empty and desolateAnimated cartoon. "} +{"id": "0002398", "video_name": "2aa9514b-bb6c-58c3-95a6-dfe91ad4cb62", "text": "to birds twitting and build a nest "} +{"id": "0002399", "video_name": "2aac13d1-e4e6-5c46-b8ec-d9fe06f9671a", "text": "blue, yellow and brown wet watercolor being absorbed by white paper forming into maple leaf image, white background, static camera from above "} +{"id": "0002400", "video_name": "2ab1fea8-5c0c-5d8d-9226-a24ce9a0f7ed", "text": "Apex began to feel a sense of unease beneath the waves. "} +{"id": "0002401", "video_name": "2ab38ec1-a5ea-5dac-8eb5-fc9101a64aa5", "text": "Greece, wes Anderson style, hyper realistic, high octane render, timelapse "} +{"id": "0002402", "video_name": "2ab78d3d-ec2a-5669-a691-148c55aa7424", "text": "animate, both persons hair move, eyes wave, "} +{"id": "0002403", "video_name": "2ab91dd4-ccf6-500b-a7eb-70a05000a4e1", "text": "Girl and fairy in the park animated Cartoon "} +{"id": "0002404", "video_name": "2abb81bb-489d-57f4-a4ab-ac5879c50bc1", "text": "man jumping off a tarin falling over a bridge "} +{"id": "0002405", "video_name": "2ac28bc2-77fe-5653-8fbf-58af33460bb3", "text": "a beautiful table lit dinner, with candles and flowers "} +{"id": "0002406", "video_name": "2acb01fd-96e5-58e9-a8ea-ddf9c791b2ca", "text": "photograph, L USM, Velvia (hugo weaving) eating spaghetti, (dynamic composition, dynamic scene 1.025) , alligator skin frame, accent lighting, film camera, canon 5d mark 4, Nikon Z9 "} +{"id": "0002407", "video_name": "2ad23428-3151-5d71-adee-e9141fad5300", "text": "a white long hair Chihuahua jumps happily through green gras chasing another brown short hair Chihuahua "} +{"id": "0002408", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "hanging paper in the middle, with nothing on it, cartoonish, next to it a pencil "} +{"id": "0002409", "video_name": "2ad91780-9e72-5003-aab0-f840ecee9fb7", "text": "In the sunset, the train rushes towards the camera quickly "} +{"id": "0002410", "video_name": "2adbee19-e1c9-5bee-8107-61f18357b816", "text": "Swiss National Park, moutain has full flowers you can enjoy a relaxing, secluded escape "} +{"id": "0002411", "video_name": "2adbf766-1435-5b9b-9dab-a7e03468f5e1", "text": "an immortal hero in greek mythology "} +{"id": "0002412", "video_name": "2ae08d15-b725-5a4d-8f06-04bc545b9f4f", "text": "an AI with an American Flag "} +{"id": "0002413", "video_name": "2ae381e8-a440-5020-840a-023eb12570a6", "text": "the sun opens a door by eating a sausage "} +{"id": "0002414", "video_name": "2aea1903-d0ad-5c40-b07f-714f35e58f3b", "text": "a video of a bustling capital with classical and modern architecture in the 1950s documentary style "} +{"id": "0002415", "video_name": "2aedb713-bfd5-5a17-9593-4da826c24a19", "text": "dizzy video of just a video that mixed every color as a color of rainbow, colorful "} +{"id": "0002416", "video_name": "2aef0051-1af8-5f72-bd39-c27cbc8c6151", "text": "birds gathered by the bay, one of them exploding as the others look on in disbelief "} +{"id": "0002417", "video_name": "2af3a94b-93a5-5d1d-a200-94b103332700", "text": "psychedelic many hearts in water with fire and earth, wind and fog "} +{"id": "0002418", "video_name": "2af71c94-8f2f-59b2-850e-2995f53d67e3", "text": "spinning vintage carrousel full of kids "} +{"id": "0002419", "video_name": "2aff0df2-cb57-5bcf-a8e2-36112d45f43f", "text": "serpenye giving the forbidden fruit to eve in the garden of eden, cinematic realistic "} +{"id": "0002420", "video_name": "2b0790a9-c33b-5186-bf07-712f4ce7f19b", "text": "gloomy depressing graveyard, single figure in a cloak and top hat walking through the gravestones, night, full moon "} +{"id": "0002421", "video_name": "2b0be789-7298-5cd8-ae27-ad845edf5dfd", "text": "Robert, a former detective, tried to forget his losses and mistakes. "} +{"id": "0002422", "video_name": "2b0ddf53-4399-5140-82fb-ac6af6d58119", "text": "sprinter on the blocks getting ready for the race to start "} +{"id": "0002423", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "glass bowl, place on a table, filled with chocolate pieces melting into liquid "} +{"id": "0002424", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "Mona Lisa walking in a room with a chair "} +{"id": "0002425", "video_name": "2b1e507c-8d35-544c-817e-9aa4cb700f75", "text": "3d cartoon animation video of two chicks one chick is cooking and the other is sitting next to him "} +{"id": "0002426", "video_name": "2b1f0135-a998-58be-a403-d71943971556", "text": "A nervous candidate walks up to the door of a company with a resume in hand. "} +{"id": "0002427", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "well dressed people shaking hands in an office "} +{"id": "0002428", "video_name": "2b212d84-fc9a-5a6f-9a67-3ada214f127d", "text": "a rave scene in the 40s in a Zeppelin "} +{"id": "0002429", "video_name": "2b26f3c0-0011-5801-bc37-55731461ac05", "text": "an astronaut runnig from the battlefield on the Moon, 16 mm, black and white, realism "} +{"id": "0002430", "video_name": "2b2ccbf1-3886-5967-a46d-c27eb3bdb7f1", "text": "people with a wide smile, big empty and static eyes, movie film, high quality, hight detailed, 4K, movie, film, cinematic movie, Darkfantasy, 1970s, 70s "} +{"id": "0002431", "video_name": "2b2d5487-b4e3-5d61-a518-3183d71aa712", "text": "a colorful image of 2 people walking on a beach watching high winds and high tides rolling in. Brilliant "} +{"id": "0002432", "video_name": "2b320cd7-ca54-5022-8299-b2e9c83f820a", "text": "clouds fly in the sky Message: TEKCT (Font: MODERN) "} +{"id": "0002433", "video_name": "2b333b5d-55cc-5a4f-9bb0-f5ced1be543e", "text": "The friends hesitated but, driven by a mix of fear and curiosity, followed the spectral guide. horror story "} +{"id": "0002434", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "meteor shower over jakarta buildings and monas monument "} +{"id": "0002435", "video_name": "2b416318-42f7-50ae-a50c-85e4d4310ceb", "text": "Generate a captivating image representing innovation and excellence. Use modern elements and a vibrant color palette. Highlight a product or service in an engaging manner, ensuring that any text is clear and persuasive. "} +{"id": "0002436", "video_name": "2b43017e-e4d5-5466-a5e8-9a9216438fa2", "text": "a girl on a Harley Davidson riding down a deserted road. "} +{"id": "0002437", "video_name": "2b448694-2a55-5096-a5de-ba5a74f2141c", "text": "Mr. X slowly learns to use the device and begins exploring social media. He creates a profile and begins to immerse himself in Facebook, Instagram, and other platforms. "} +{"id": "0002438", "video_name": "2b4499f4-23ac-5c94-984d-7d2c357a157f", "text": "cinematic moving background of a white snowing background with a reindeer sleigh "} +{"id": "0002439", "video_name": "2b469278-de8e-50c6-ade0-c60327a6d505", "text": "A night shot. Tall skyscrapers lost to time in the middle of an overgrown forest. The skyscrapers are coversed in vines and almost unrecognizable. "} +{"id": "0002440", "video_name": "2b46c5e7-72a9-5067-bb79-dc326329bcd5", "text": "Florida getting hit by an asteroid, highly realistic, highly detailed "} +{"id": "0002441", "video_name": "2b4d4d84-9e9f-5cda-8018-f247d6ade562", "text": "Lily doing a graceful dive into the pool.Animated cartoon "} +{"id": "0002442", "video_name": "2b4f443a-52e8-595e-a634-eecf1bad5966", "text": "Intrigued, he decided to follow it, hopping from one soft mossy stone to another. "} +{"id": "0002443", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "black men in purple and gold "} +{"id": "0002444", "video_name": "2b53a51c-c8fc-58f5-96e0-3a7d8223d5b0", "text": "a 30second add for a construction work compagny whis is named AAZ BATIMENT "} +{"id": "0002445", "video_name": "2b54f10f-150d-51a3-85d0-da35827dbf81", "text": "drone shot of a vinyard in the shape of the autodesk logo "} +{"id": "0002446", "video_name": "2b577976-4333-599f-b18a-f41da470397a", "text": "anime character using phone with anime mobile app "} +{"id": "0002447", "video_name": "2b5aa96d-37c6-53a5-90e8-da6bfcc4628b", "text": "A cat that nods to say hello "} +{"id": "0002448", "video_name": "2b63d5aa-db0a-5317-b5bb-53fb17f90190", "text": "Stormy clouds, 4A advertising grade, high resolution, 9:16 size, stunning, 45 seconds length, full video "} +{"id": "0002449", "video_name": "2b6a42c3-a0f8-563d-9554-e4519137c4c6", "text": "dj console background, neon lights, blinks Message: JAROMIR (Font: MODERN) "} +{"id": "0002450", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "beautiful illustration, The young tree amidst dried plants, a stark contrast between success and failure. A moment of reflection., 2d illustration , cartoon style "} +{"id": "0002451", "video_name": "2b6e3252-d6b8-521f-a022-d257303446e6", "text": "one boy Pari says you will become agreat protector one day magical "} +{"id": "0002452", "video_name": "2b6ff115-1ade-55cb-b83a-5e1390db4bf3", "text": "a befana sitting on a broom flying over a city at night, starry sky, city lights "} +{"id": "0002453", "video_name": "2b74fb8b-0e94-56c2-9b38-c8ad37878455", "text": "Rotate the image 90 degrees clockwise in 3D mode. "} +{"id": "0002454", "video_name": "2b795214-dabd-5baf-b6b5-a1318b966512", "text": "Jai Shree Ram at ayodhya temple "} +{"id": "0002455", "video_name": "2b7b7f4f-bfd7-5d49-9bb1-c6d36a403cef", "text": "freddie gibbs wwII movie ending, driving tank, smoking cigar, slow motion, purple background, purple drank "} +{"id": "0002456", "video_name": "2b81476d-c0a6-5008-b35c-047f635f4a2a", "text": "a little girl in a pink dress plucking red roses from her garden "} +{"id": "0002457", "video_name": "2b8d2c0a-a771-5a9f-8d5d-19403892815e", "text": "man are running into the forest "} +{"id": "0002458", "video_name": "2b8dd5d2-e003-5664-af3e-a28c7f623869", "text": "taylor swift dancing shake it off"} +{"id": "0002459", "video_name": "2b949eae-e443-5e46-ad7e-e0afbe40212b", "text": "The hamburger was originally made with minced beef patties that were grilled and served on bread "} +{"id": "0002460", "video_name": "2b950414-07c6-50cf-8c4a-da8675995b01", "text": "Red Spider Man with some movements, 4d animated tall plastic type of body prominent exact features outstanding and a masterpiece if art "} +{"id": "0002461", "video_name": "2ba6dcaf-b2e5-50b3-8716-511a7a4c8137", "text": "an attractive Christmas elf singing in a whimsical wasteland "} +{"id": "0002462", "video_name": "2baf0223-526c-5a34-8ad0-936a7ed8f945", "text": "want magic blasting against a magic barrier, bust of light, shattering energy, colliding waves of power "} +{"id": "0002463", "video_name": "2bafde53-51d1-5ad9-adbb-f0c676616fd0", "text": "blurry ghostlike people walking down a dirt road. found footage old black and white film. "} +{"id": "0002464", "video_name": "2bbc28dc-b236-5beb-a8f0-d214afabf676", "text": "an helicopter hovering over a frozen lake in a snow storm, realistic, "} +{"id": "0002465", "video_name": "2bbc4a9c-0eca-59d4-b459-84636153ea9b", "text": "The planet Solaris covered by a purple viscous sea. "} +{"id": "0002466", "video_name": "2bc10a18-87e7-59b0-8ea3-97f87d0046b2", "text": "black background Message: web3now (Font: MODERN) "} +{"id": "0002467", "video_name": "2bc40223-76d1-502c-bdda-f906ed8ec25f", "text": "Elon Musk is riding a giant mouse while playing tennis "} +{"id": "0002468", "video_name": "2bc6ffe8-e22f-5033-8eaf-4db7d3811f82", "text": "frightened cat, yellow eyes, zoom out "} +{"id": "0002469", "video_name": "2bc84c85-bc23-5166-aa55-47c4d0e56df7", "text": "runnig fox, Curiosity, Agility, Enjoyment of a forest filled with flowers, Calmness and agility in crisis situarions, 3D rendering, Disney, Pixar "} +{"id": "0002470", "video_name": "2bd3c57f-78d0-5a42-94be-9a879e9952f5", "text": "a boy sitting in a car realistic cinematic 4t frame 16:9 "} +{"id": "0002471", "video_name": "2bd619c5-af63-5eaa-8545-4257ddb7a202", "text": "violet and cyan powder explosions coming from laboratory equipment in front of a white background Message: TOME (Font: MODERN) "} +{"id": "0002472", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "rasta lion and his family, 3 lioness "} +{"id": "0002473", "video_name": "2bd782a1-9e7d-591c-8b8c-16ff53af4f0d", "text": "CIVIL WORK CONSTRUCTION Message: COCHO BENITEZ (Font: MODERN) "} +{"id": "0002474", "video_name": "2bd88885-055f-51d6-9c22-d84ea69cef75", "text": "a dancing unicorn wishes an happy birthday to a little girl "} +{"id": "0002475", "video_name": "2bda826c-4058-5d78-a993-519f367359e9", "text": "birdseyeview of a beautiful construction site at night, colorful lights "} +{"id": "0002476", "video_name": "2bdc1827-d906-5fd4-8b18-4f482e998bcb", "text": "aesthetic minimal pastel translucent blob rotating "} +{"id": "0002477", "video_name": "2bde4113-531e-5097-99d0-7af62fa74fcd", "text": "Beautiful woman with long curly hair. Beauty face. Fashion model. Fashion makeup. Attractive Girl with a smokey eye makeup. Closeup face of a girl. Slow motion 4k footage. "} +{"id": "0002478", "video_name": "2be0bdb5-0d27-5479-8ffd-6c49560745d0", "text": "giant white suv in the narrow streets of quebec city, "} +{"id": "0002479", "video_name": "2be3aade-4b29-5728-9dc2-5b63371a5ee5", "text": "hands forming heart and when the fingers connect they light up "} +{"id": "0002480", "video_name": "2be4499f-498d-528d-8528-de9d8e038185", "text": "a roaring male lion on the top of the cliff while raining "} +{"id": "0002481", "video_name": "2be7a153-aeed-56a6-b9ba-80478a3acb28", "text": "Her parents exchanged warm smiles and agreed, bundling up in coats and scarves. The family stepped into the winter wonderland, and the first snowflakes of the season greeted them like old friends. Clara twirled in delight, her laughter echoing in the crisp air as she tried to catch snowflakes on her tongue. "} +{"id": "0002482", "video_name": "2bea75ae-4469-5df0-9248-8e6a8dd8fe78", "text": "A tech company making there way to the top of DC "} +{"id": "0002483", "video_name": "2bec0f18-86e5-549e-a829-0c08892c5da2", "text": "Set the scene by describing the lively zoo nestled between rolling hills and blooming meadows where Leo the lion, Zara the zebra, Mimi the monkey, Ellie the elephant, Darcy the deer, and Robbie the rabbit live. "} +{"id": "0002484", "video_name": "2bf08c29-5c2c-56e3-825d-f2b331d2a2c3", "text": "A young man sitting in front of a Buddha statue, looking troubled. "} +{"id": "0002485", "video_name": "2bf28b58-9ebd-5ed3-8b66-89eb2bd85989", "text": "beautiful muslim animated girl with red hijab glowing face talikg in best style c "} +{"id": "0002486", "video_name": "2bf2baee-31ac-5ee2-b72e-d82192668179", "text": "a gatekeeper open the gate and a car getting out "} +{"id": "0002487", "video_name": "2bf30b8f-6073-51ee-b68e-d5e35431230e", "text": "cinematic scene, 8k sharpness, Human Goblin male with red skin, Blacksmith, small scars on face, character portrait, armor, shiny metal, forge, fire, Gary Gygax style "} +{"id": "0002488", "video_name": "2bf51ec0-3f0f-511d-bb3b-81b397b61459", "text": "Talking two peoples while they are laughing "} +{"id": "0002489", "video_name": "2bfab11a-72a9-5739-bad9-7ecf44458a50", "text": "foreigners come to Yuanming Palace, seeing the magicficent ancient buildings and fell like a fairyland "} +{"id": "0002490", "video_name": "2bfcaa31-9751-5ca1-9033-0a39d67d916b", "text": "giant glowing jelly fish floating over a modern city, cinematic, high quality, scifi feature film "} +{"id": "0002491", "video_name": "2c05c294-dc82-513a-baab-9a1a53ee1266", "text": "kids cartoon in the jungles of Africa, where the creatures lurk "} +{"id": "0002492", "video_name": "2c0c38a6-b571-51b3-bd4f-f2b3aa4c6be3", "text": "Rajiv and Ravi entering the old mansion, its large doors creaking open on their own. "} +{"id": "0002493", "video_name": "2c0c91b8-b7b8-5336-9bb3-331b3d7092bb", "text": "a alter with old age rum with cigars and coffee "} +{"id": "0002494", "video_name": "2c0f0812-28d3-5b84-ad3f-42ee1529c3c2", "text": "jason vorhees transformation cinematic dark Message: 1 Attachment "} +{"id": "0002495", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980s woman watching tv in her living room and sharing a cigar with a guy "} +{"id": "0002496", "video_name": "2c1ebef7-a6c4-53ca-a4f9-b62281ccbb0b", "text": "India gate in heavy rain and thunder "} +{"id": "0002497", "video_name": "2c201357-6dce-524a-9a63-f2ccf468e23e", "text": "Atlantic sea, rain, storm, submarine is slow moving, sea wave slow moving, thunder, super Resolution, cinematic lighting, 8K, super detailed, wide angle, "} +{"id": "0002498", "video_name": "2c22090b-126b-556b-af42-b2e5b6eabbf3", "text": "character\u2019s motivations for using elysium\u2019s technology unveiled "} +{"id": "0002499", "video_name": "2c2358de-f0c3-5b2f-9d94-04eb074ba19d", "text": "light gray cat with black stripes and yellow eyes flying in space conquering planets "} +{"id": "0002500", "video_name": "2c26514a-27a2-5687-bd58-7be0fe1ac0fd", "text": "The emperor is on the dragon throne, his hands are moving "} +{"id": "0002501", "video_name": "2c2698ee-0a2d-5059-9341-cf7291b3329b", "text": "A person stands amongs the journalists at the launch site of his space x "} +{"id": "0002502", "video_name": "2c27a03f-dea9-5899-895a-8511d2de73a2", "text": "beautiful landscape Japan ancient castle wind trees river water flowing style "} +{"id": "0002503", "video_name": "2c2828b0-4441-5807-8154-e1013568aa56", "text": "new york city looking like a himalayan village with air movements "} +{"id": "0002504", "video_name": "2c290e7e-eb9a-5478-85d3-42ee748ab52c", "text": "a mom reciting a holy quran infront of her daughter "} +{"id": "0002505", "video_name": "2c3e4e63-1536-5444-b03b-d8e42569634e", "text": "Kim Kardashian wins trophy at mortal kombat esports tournament "} +{"id": "0002506", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "Farming game simulation\twith farming theme\tcolorful\twith chicken "} +{"id": "0002507", "video_name": "2c4286af-be42-5b39-ad28-4477891d1d24", "text": "Show an aerial view of the entire enchanted forest, with Ella and Bella surrounded by magical creatures and the sparkling streams. "} +{"id": "0002508", "video_name": "2c45767d-e55a-5580-85fd-92bac39d23b8", "text": "A nostalgic rooftop moment in the city, a young couple lying on a blanket, surrounded by fairy lights, the distant hum of the city below, a feeling of intimacy and escape from the bustling world, Digital art, soft pastel colors "} +{"id": "0002509", "video_name": "2c45f71f-fe7e-5bf0-bd28-8c7f883c5787", "text": "deep blue ocean cuddle fish swimming across "} +{"id": "0002510", "video_name": "2c487712-53a6-59be-86fd-d9bb2339f82a", "text": "a beautiful house in a narrow valley "} +{"id": "0002511", "video_name": "2c572db0-a3c5-570c-afd5-510fcc7bcb1b", "text": "cinematic film of a blonde fairytale princess riding on a unicorn, waving her magic wand, mountains in the background "} +{"id": "0002512", "video_name": "2c666b9b-497a-5ca2-83ae-23a5244e72a5", "text": "close up of boys eyes opening in b ed at night "} +{"id": "0002513", "video_name": "2c783f5c-3059-5fe2-adb3-bc914a8482f5", "text": "a myokine and an adipokine shaking hands and smiling "} +{"id": "0002514", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "Anne Hathaway and Natalie Portman 8k movie "} +{"id": "0002515", "video_name": "2c8289fa-44f3-5dc4-af76-5aa4a80c9502", "text": "Cthulhu eating Kim Jong Un, anime style, 4k, detailed, dramatic lighting "} +{"id": "0002516", "video_name": "2c864e87-972e-56eb-8a3e-135b653fc54a", "text": "ufo is flying over the sky next to the moon "} +{"id": "0002517", "video_name": "2c8a6f6c-60e9-5a43-b089-eeb36fdae2e8", "text": "skyline city Waking up in the morning "} +{"id": "0002518", "video_name": "2c8e6aa6-5345-53d9-ba52-5676e49af72f", "text": "a man is painting white colour in a wall "} +{"id": "0002519", "video_name": "2cabf14f-7f8c-5b2c-8f5b-9353a087920e", "text": "Model a picture of a bear eating candy "} +{"id": "0002520", "video_name": "2cb3b5b4-8801-5b08-bc4e-b0d57be2b508", "text": "a chinese kid in the middle of highway alone. high buildings around him "} +{"id": "0002521", "video_name": "2cb91e0f-33ee-5919-bc08-4fd830ee042d", "text": "man on a blue and pink planet "} +{"id": "0002522", "video_name": "2cbb39e3-b831-551d-bf11-bd5861ff89a1", "text": "The lights of the vehicles fall on the trees and reflect immediately "} +{"id": "0002523", "video_name": "2cc18ed3-481c-563a-a4b4-ed02a8d29e7d", "text": "Frankenstein is a police officer. The camera pans around to the right of him as he kicks down a door and enters it quickly. In his hands he is holding a glowing hot dog. "} +{"id": "0002524", "video_name": "2cc9e06b-0e3a-5b67-b28d-eeae9d08f7fa", "text": "morrowind mushroom city of elriel in dead girls god dream "} +{"id": "0002525", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "4 girls chatting happily in canteen "} +{"id": "0002526", "video_name": "2ccd775c-0167-531b-850d-0c307abe6f37", "text": "a beach house built over a seawall protected from the sea waves "} +{"id": "0002527", "video_name": "2cd157b0-dbef-5078-9cc6-2330362eaa77", "text": "orbital tactical troop droop with planetary resistance, masterpiece, dynamic, scenery, action "} +{"id": "0002528", "video_name": "2cd408ac-3d1a-5052-b792-62b508f1484b", "text": "Create a video for me on an early spring morning Message: 1 Attachment "} +{"id": "0002529", "video_name": "2cd90e98-72d3-5520-9f1d-8e5dad8344d4", "text": "A boy walking in the street wearing tshirt "} +{"id": "0002530", "video_name": "2ce90abd-ae39-5670-b0de-e4a58c4ae185", "text": "an Indian man and woman thinking "} +{"id": "0002531", "video_name": "2ce91d94-d95e-5f49-ad32-c93b42f1c80e", "text": "A man with a sword fights a group of bad guys "} +{"id": "0002532", "video_name": "2cf1035d-6fb7-5187-a7c5-c436b8534902", "text": "The cute little mermaid swims to me "} +{"id": "0002533", "video_name": "2cf93700-a06f-515a-a450-04e96b81b11f", "text": "a London bus driver under water "} +{"id": "0002534", "video_name": "2cfb90c2-4815-5518-99f5-700431649e44", "text": "including the early relatives of dinosaurs "} +{"id": "0002535", "video_name": "2cfe5b49-0134-5a55-afab-2d6635fd1584", "text": "Create a hand in painting, and the hand needs to be in the mirror to create a Iron Man "} +{"id": "0002536", "video_name": "2d00c5e5-2f97-5cc9-bec5-effcf53ea2a3", "text": "a kangaroo runs along the road in the morning, first person view "} +{"id": "0002537", "video_name": "2d089d90-7d83-581c-acfb-8d379a84d397", "text": "hamas in the military field, epic, hyper realistic, "} +{"id": "0002538", "video_name": "2d093b2b-9583-55aa-9a3a-eb7a3d6303b5", "text": "Metallic paints attract and repel, creating fluid sculptures that twist, coil, and stretch, only to collapse and reform in magnetic ebb and flow. "} +{"id": "0002539", "video_name": "2d0a2a45-5105-59cf-a4a6-e4986e43ca94", "text": "view of a town of all houses "} +{"id": "0002540", "video_name": "2d10225b-be62-5f8d-a32d-1f40b4689d45", "text": "Has anyone connected an LLM to the akashic records? "} +{"id": "0002541", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "a logo of a super hero, appearing in a dark cinematic light "} +{"id": "0002542", "video_name": "2d1280fc-8502-5e6e-8f61-0a367097ea28", "text": "an underwater scene featuring a Black Marlin swimming swiftly, displaying its magnificent streamlined form and the vibrant colors of the ocean "} +{"id": "0002543", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "a grou of people on a safari game drive "} +{"id": "0002544", "video_name": "2d18074a-c7ae-5cd2-aad3-c6a02587234f", "text": "rain storm in then night city with the the lightning strike "} +{"id": "0002545", "video_name": "2d187009-f479-5ac0-b6dc-72c9e464d78f", "text": "a graceful fairy with shimmering blue wings and a dress made of petals and leaves stands with a delicate smile "} +{"id": "0002546", "video_name": "2d1b623f-66a6-54d3-b647-2745b55c4752", "text": "man jumping out of TV, trippy, motion 1, Quentin Tarantino style "} +{"id": "0002547", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "Man dressed as mario eating spaghettimeatballs at a wedding "} +{"id": "0002548", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "the earth shiffting into the new earth, and if you arent in line with vibrations of the earth shift, you get left behind. so make sure your true to self . and true to the earth. "} +{"id": "0002549", "video_name": "2d26e551-9f58-5413-8ae7-50a87f0f4613", "text": "a little boy lost in the forest and met a tiger "} +{"id": "0002550", "video_name": "2d358a61-4d82-59dd-a882-72661be1c418", "text": "stacks of gold coins on table Message: FINCI (Font: MODERN) "} +{"id": "0002551", "video_name": "2d39b5d4-74a4-5dc8-ae13-4757c42baba2", "text": "A beautiful and massive animated castle "} +{"id": "0002552", "video_name": "2d3fb01f-46e2-5910-b828-5a8cf0cc8ae2", "text": "A man in ancient costume looked ahead anxiously "} +{"id": "0002553", "video_name": "2d432543-ec32-5566-8fef-b54687f7a7d4", "text": "man walks on the beach near clear sea, sun shining "} +{"id": "0002554", "video_name": "2d485d39-a1dd-59b0-b575-c64438711bde", "text": "create a boy talking standing next to a tree in the forest "} +{"id": "0002555", "video_name": "2d487c1c-68c1-55f9-83e5-4312c382d08a", "text": "a lush natural fern forest with sunlight streaking through Message: Kiwi (Font: MODERN) "} +{"id": "0002556", "video_name": "2d4ea5f1-96ea-5e7b-896f-1769c7607512", "text": "city made of Icelandic opal candy "} +{"id": "0002557", "video_name": "2d4ee89b-1f57-54fb-a441-702394f70232", "text": "Eerie Atmosphere: Misty Night in Springfield\nA thick fog blankets Springfield as strange occurrences unsettle residents, setting an ominous tone. "} +{"id": "0002558", "video_name": "2d4f70ab-8e34-5c71-ba7a-c3eccf488487", "text": "Sam, with tears in his eyes, clutches the letter tightly. "} +{"id": "0002559", "video_name": "2d51f36f-0d53-50be-989d-91a9c68a53cd", "text": "gothic Singer singing in a microphone to a crowd in a show "} +{"id": "0002560", "video_name": "2d55be15-8f37-5cb3-85da-d02adbccb4cd", "text": "diplomats negotiating peace terms over a map of europe "} +{"id": "0002561", "video_name": "2d5cb54e-988b-5777-911c-df325e9aaeae", "text": "i haven\u2019t cried since 1985! Just kidding i wasn\u2019t even alive "} +{"id": "0002562", "video_name": "2d65f2c7-2c5b-5e61-81bf-089b9de4f595", "text": "fear and loathing in Las Vegas style camera quality, trippy scene, photorealistic, high def, hdr, 8k, cinematic movie shot "} +{"id": "0002563", "video_name": "2d6aac47-f05f-53ac-9a7a-ed5dcc5ce080", "text": "A man running from a cave, there are monsters standing in front of the man in a winter theme, first person view "} +{"id": "0002564", "video_name": "2d6eb191-65ec-5bf6-a5fe-df3888832f0a", "text": "A maid wearing her sword is fighting three robots "} +{"id": "0002565", "video_name": "2d750646-c3ea-57eb-aad8-315906a3a31a", "text": "Solid colored, cell shaded cute mouse sitting under a tree in the style of traditional anime, specifically Studio Ghibli, with Monet painterly backgrounds. The background should have precise brush strokes, immersive realism, depth, rich colors, vivid, subtle storytelling, atmospheric lighting, "} +{"id": "0002566", "video_name": "2d7d058e-9959-5cdf-9d2c-d218586f2eee", "text": "different between animal based protein and plant based protein "} +{"id": "0002567", "video_name": "2d7d88a9-0a02-504f-b992-17fd4362cfa2", "text": "man taking products out of a shelf in the supermarket. Advertisement, cinematic quality "} +{"id": "0002568", "video_name": "2d7e671d-cee0-5134-a1f4-90b3792cb01e", "text": "show me a warrior from dacia "} +{"id": "0002569", "video_name": "2d7ef4a0-a8e7-59b7-8931-e1ebcd1109b8", "text": "a dj going to various places that look colorful and trippy she plays music for all the different creatures and they love it they have amazing sound systems everywhere they look very special "} +{"id": "0002570", "video_name": "2d84715a-3580-5c3b-afcf-00a2db6de69a", "text": "make a video there man coding text fast "} +{"id": "0002571", "video_name": "2d884492-7dab-5cbf-995d-e3e18b28d903", "text": "Feed the chickens and drink water "} +{"id": "0002572", "video_name": "2d8f87f2-f435-5eab-b3ba-d5f322959b98", "text": "a warrior in a dark night holding weapons ready to fight a wolf "} +{"id": "0002573", "video_name": "2d911406-fade-5603-8e9b-dadddcc93a22", "text": "2 oranges having a sword fight "} +{"id": "0002574", "video_name": "2d97064f-9453-5a7c-b1fa-f084b771a267", "text": "realistic forest Message: ashepisha (Font: MODERN) "} +{"id": "0002575", "video_name": "2d976b89-0a16-54bf-8a10-adc4e6226d31", "text": "queen oh Hira walking in the desert with her ps "} +{"id": "0002576", "video_name": "2d9e0e83-2ea0-5719-9a2d-3a1c636aa8ae", "text": "Emily, moved by their plight, sought a way to help the restless spirits find solace. She delved into ancient texts, researching rituals of appeasement and forgiveness. With the help of her family, she prepared a ceremony, hoping to bring closure to the spirits and restore peace to Blackwood Manor.\nCreated using a graphics tablet and digital painting software, such as Photoshop or Procreate. The artist skillfully blends different brush textures and lighting effects to achieve a hauntingly beautiful result "} +{"id": "0002577", "video_name": "2d9e7964-2b99-5098-997d-8bd8cd59315c", "text": "attachment only one bright star with smiling face is moving in a circle, the star has a face "} +{"id": "0002578", "video_name": "2db00c88-b6ac-5167-8338-093973a152bf", "text": "55 yo man walking in the park, early morning "} +{"id": "0002579", "video_name": "2db0ac4c-8ad8-54ef-bd6e-2951f8bfcb48", "text": "hyper realistic , 4k, detailed, dragon breathing green fire, big, ancient, dark scales "} +{"id": "0002580", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "beautiful brown skin girl playing outside "} +{"id": "0002581", "video_name": "2dc46871-474d-5259-85fb-2923fe43f62a", "text": "Beautiful girls, white skin, yellow hair, white bikinis, beach, blue sky, sunshine "} +{"id": "0002582", "video_name": "2dc7fb02-a3de-5999-9dbc-42a64cc64229", "text": "Prepare Schezwan Noodles with Dry Manchurian "} +{"id": "0002583", "video_name": "2dca828f-02ac-5d03-b140-e1c8633af8bb", "text": "Ayurveda on a tropical island Message: P (Font: MODERN) "} +{"id": "0002584", "video_name": "2dceb1b0-12ac-5f31-9c29-6046f81ea3b1", "text": "alien jelly fish in alien world abstract,realistic,avatar,animation,super high detailed,8k "} +{"id": "0002585", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "a beautiful ladies spinning and dancing in the Cosmic world "} +{"id": "0002586", "video_name": "2dd98d9c-a169-5b69-90a0-4622d837cc35", "text": "manhole cover with water flooding in "} +{"id": "0002587", "video_name": "2dde2b20-4af0-5bb6-94a1-d77c123569cf", "text": "A white cat stands with his canine friends in the middle of a big party "} +{"id": "0002588", "video_name": "2ddeb649-4e0b-5f07-959a-f8561220a436", "text": "have him walking through foggy village "} +{"id": "0002589", "video_name": "2de2430f-e877-50b1-b3d9-30186623b251", "text": "Zoom in on specific areas of the factory, such as assembly lines, storage areas, and quality control stations. Show how digital factory simulation allows for a comprehensive analysis of the current production processes, identifying bottlenecks and areas for improvement. "} +{"id": "0002590", "video_name": "2de308c4-febe-5a54-8dfb-c72389fdeedf", "text": "Garena Free Fire Max, a popular mobile battle royale game, "} +{"id": "0002591", "video_name": "2deab08f-5a6f-5bd2-ab40-9fed58882967", "text": "hyperrealistic guys building an art studio Message: vaco studio (Font: MODERN) "} +{"id": "0002592", "video_name": "2dfa06f8-55ea-556b-ad96-c21e79432ba3", "text": "A person hiding under the covers, trembling with fear, as heavy breathing and murmuring can be heard outside. "} +{"id": "0002593", "video_name": "2dfa3606-7691-5579-b90e-a04a3752f297", "text": "a masked guy from the futur with a hoodie is dancing in on a top of a mountain 4K "} +{"id": "0002594", "video_name": "2dfdf098-6913-53df-ae31-fb55005090d5", "text": "psychedelic color blur, morphing shapes, sine waves "} +{"id": "0002595", "video_name": "2dffc99e-c2a0-52a7-896e-801a0995537e", "text": "The dragon flies away into the distance, its figure becoming smaller. The starry trail slowly fades, but the night sky remains beautifully lit. "} +{"id": "0002596", "video_name": "2e069582-0a69-595e-9528-d19053b68e9e", "text": "halloween disney princess Message: 1 Attachment "} +{"id": "0002597", "video_name": "2e0cab23-cab7-5f80-839d-37677d9fde22", "text": "A king in the sky using a floating carpet "} +{"id": "0002598", "video_name": "2e0fed4c-51ac-5fb2-bf0f-a1195db17a86", "text": "prrehistoric humans in cave with fire "} +{"id": "0002599", "video_name": "2e170ac7-b09e-548b-9ba6-96f77812afc9", "text": "make a video of how an electric windmill works in the future "} +{"id": "0002600", "video_name": "2e2025e7-6c4c-57a5-a787-89e493e9fae9", "text": "Hamster landscaping room, realism, beauty, model miniature "} +{"id": "0002601", "video_name": "2e2a21ee-51e6-567b-9426-c7281ddafd90", "text": "A Chinese girl in her 20s, with a sweet face and simple clothes, is undergoing myopia surgery in an eye hospital. "} +{"id": "0002602", "video_name": "2e2d356f-4ced-5519-b0aa-2a4b61aea653", "text": "Show Sarah kneeling beside the trapdoor, ready to investigate. "} +{"id": "0002603", "video_name": "2e2ea357-0d07-5a06-b911-aff1a2a6a849", "text": "mother and baby Message: 1 Attachment "} +{"id": "0002604", "video_name": "2e2f360e-dd0e-5e2e-8294-0dc9c33dc5d8", "text": "comedian performs on stage and is surprised "} +{"id": "0002605", "video_name": "2e467046-978d-5996-9704-84f85eaddfd7", "text": "Gears, clock elements, dials and dynamic swirly lines arrangement suitable as a backdrop in projects on scheduling, temporal and time related processes, deadlines, progress, past, present and future "} +{"id": "0002606", "video_name": "2e50373d-b055-58cd-834d-5d385fd21e3f", "text": "a short clip showing mountains of Nepal, with animals like polar bear "} +{"id": "0002607", "video_name": "2e558646-1ac6-5689-b2aa-ec2343630ebb", "text": "students in the photography studio shooting a magazine brief "} +{"id": "0002608", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "Naruto uzumaki as a powerful character "} +{"id": "0002609", "video_name": "2e568ac6-5cb1-5f56-b44f-521229b17e21", "text": "They saw amazing sights and met interesting beings space "} +{"id": "0002610", "video_name": "2e594fc0-dd73-5157-b1af-1b4d1c44a2d3", "text": "people walking beside the wall with watchtowers, barb wires, depressing atmosphere, 1960, camera moving up, cinematic, ultra high resolution "} +{"id": "0002611", "video_name": "2e5d9b06-51a9-5ed6-9e83-d77fe87955e0", "text": "The structure has changed and has been deformed.image:mmexport1700187501277.jpg "} +{"id": "0002612", "video_name": "2e5f8d3f-94c7-5a32-a765-695b60d1a647", "text": "anime stars spreading across the universe timelapse "} +{"id": "0002613", "video_name": "2e67c0e4-1814-5e81-bdd3-01b8921040b9", "text": "flying through a black and white dissociative hole with psychedelic geometry "} +{"id": "0002614", "video_name": "2e6c8079-e71b-5bfc-ae42-c154d4c4aff8", "text": "A small dinosaur the same size of a chicken walking next to a chicken majestically across vast landscape.pixar style "} +{"id": "0002615", "video_name": "2e6dacd4-1031-5259-9485-40fa25dfb6f9", "text": "A bag of money fell on the magician "} +{"id": "0002616", "video_name": "2e7292c2-ab1a-5a71-8368-3e878c73769d", "text": "DJ dancing in front of turn tables with strobing lights "} +{"id": "0002617", "video_name": "2e744475-bae5-50a1-9a2d-73bd4ab58319", "text": "a full scene showing a cloud of smoke come together warping into the face of Lilith, in the artistic style of H.R. Giger "} +{"id": "0002618", "video_name": "2e74d164-1310-59f2-821c-fd19d5b2ddc0", "text": "a messy room, with clothes and papers scattered everywhere. Setting: cinematic "} +{"id": "0002619", "video_name": "2e757909-8ee5-592c-841b-1af74d3e6632", "text": "manh flags mooving with the wind "} +{"id": "0002620", "video_name": "2e761343-3c7e-5ae1-bfd1-3b46cb08000b", "text": "Aerial images of the prison on Robben Island in South Africa in 1964 l, hyperrealism, cinematic, \u2013\u2013ar 16:9\u2013\u2013 "} +{"id": "0002621", "video_name": "2e7a9ef0-fd51-53c3-b432-8b18ea7e3b07", "text": "a portrait style animation of a starry celestial view of the sky "} +{"id": "0002622", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "slow panning camera across chess board squares, some battle worn and damaged, as the camera pans outwards there is a battle between white and black chess pieces, they move like real warriors in combat, 2 minute long cinematic at least "} +{"id": "0002623", "video_name": "2e7e2838-0a64-506e-8a7a-56feb53a5b49", "text": "a female foot stepping on a 50 dollar bill "} +{"id": "0002624", "video_name": "2e7e53a0-e920-5c27-bce5-0185e35a03df", "text": "Christmas tree decorated with all white lights and ornaments mostly warm shades "} +{"id": "0002625", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "surrealism art man swimming under smoke "} +{"id": "0002626", "video_name": "2e8101c7-fe4b-5b83-91a9-96afdf10368e", "text": "A dark, silent ocean depth. A sudden, brilliant flash reveals a bioluminescent squid darting away. "} +{"id": "0002627", "video_name": "2e84c593-79e6-5ce1-8314-78673b411a9e", "text": "45th birthday cake with a red rose "} +{"id": "0002628", "video_name": "2e9383bf-12a2-5055-92ba-c7a77be7364f", "text": "John Wick is riding a horse along the road "} +{"id": "0002629", "video_name": "2e9a9b67-55ec-526c-b54b-de404298ae4b", "text": "Add subtle, gentle swaying to the trees and foliage to convey a sense of life in the jungle. Message: 1 Attachment "} +{"id": "0002630", "video_name": "2e9f19d9-9e82-56fa-a1d2-d52e85e81227", "text": "ufo, abduction, Lapland, Finland, snowy landscape, daytime "} +{"id": "0002631", "video_name": "2e9f7c1e-fa08-55d2-9ac0-f37d68313241", "text": "A very beautiful young woman with long black hair wearing a black ancient robe. Standing on the streets of the village, fantasy movie "} +{"id": "0002632", "video_name": "2eaa409a-f941-5d7f-9a0d-11b78c360492", "text": "a beautiful girl with unicon, dramatic sky, they slowly walking "} +{"id": "0002633", "video_name": "2eb06704-c4da-564b-b3e1-a1b2e50b3f3f", "text": "A group of men queuing to become recruited in the us militar defense "} +{"id": "0002634", "video_name": "2eb2649b-c3de-58a2-b7fc-c8ac459c2dd4", "text": "drmatic action in the style of into the spiderverse man swing from city buildings day time "} +{"id": "0002635", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "anime girl dancing, 8k resolution, hyper realistic render "} +{"id": "0002636", "video_name": "2eb5a90c-f3ca-54d2-8303-85a2b25a2de3", "text": "Burger, French fries, a glass with a straw, nuggets and sauce on the table, a blinking phone from a new message lies next to it, music cassettes and records lie next to the burger, a vinyl player spins a record, smooth camera movement, 4K, cinematic, camera above the table "} +{"id": "0002637", "video_name": "2eb5b6fa-c959-518d-8dc5-f0b6291fab47", "text": "meet of survivors groups, darkness and scared landscape, "} +{"id": "0002638", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "Elizabeth and hers was a period of imperial and economic growth in England. "} +{"id": "0002639", "video_name": "2ebd2983-7f58-557a-b2bd-a2626d8b042a", "text": "Tha boys in tha gardan playing "} +{"id": "0002640", "video_name": "2ebd952b-019a-5ad8-98bc-c441b7b8306b", "text": "a scene from Star Wars if it was a Bollywood movie "} +{"id": "0002641", "video_name": "2ec1afb1-f8a5-5fc1-b69c-c240ef7cce49", "text": "DNA molecule rotating in the background of earth "} +{"id": "0002642", "video_name": "2ec3ecec-a938-5827-85e7-fc9f1d6827ff", "text": "Indian god lord Shiva dancing at top of mountain. "} +{"id": "0002643", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "logo with letters: covers shrift: comic sans "} +{"id": "0002644", "video_name": "2ec7ad77-a6b5-54e7-b9cc-810718761153", "text": "a person praying on top of a hill with more people with their hands to the car looking at the sky "} +{"id": "0002645", "video_name": "2ec901ac-52da-5e15-a7c2-f376800219a0", "text": "A incridible view from a spaceship on a red planet "} +{"id": "0002646", "video_name": "2ecd4b51-7601-5c90-b2e7-1e682c121e77", "text": "A divided puzzle, with pieces scattered and disconnected "} +{"id": "0002647", "video_name": "2ed4c826-e5dc-52c4-bc56-d5bc08884dc1", "text": "The city fell, and Rahab and her family were spared "} +{"id": "0002648", "video_name": "2ed822e7-6c25-5147-a8fb-816dd28f60d0", "text": "Visual: The camera pans across the sun rising over the Alpine Mountains, slowly zooming in on a cozy homestead nestled in the valley. Sound Effects: Birds chirping, a distant stream flowing, and a light breeze rustling through the trees. "} +{"id": "0002649", "video_name": "2ee44db4-e0d9-5a88-8fa4-cf50e29df71d", "text": "generate an image of naruto kissing hinata "} +{"id": "0002650", "video_name": "2ee6be3d-4408-5558-8db5-8a783b520725", "text": "plastic people, plastic robots walking in the street, 1967 zenith color tv a tomato spaghetti advertisment, medium wideshot, camera pan, satire, antique television, 1899 visuals, "} +{"id": "0002651", "video_name": "2eeae976-7bd8-58c0-977e-937ca4c5c079", "text": "Powerful car engine and car engine oil "} +{"id": "0002652", "video_name": "2eebb9aa-a9d1-5f60-9e27-2182fcbc671d", "text": "a cinematic video of the ocean waters receding from the shoreline ahead of a towering tsunami wave "} +{"id": "0002653", "video_name": "2ef6a7df-7e4a-5abb-9a92-dd3be89768d4", "text": "a child trying to eat the sun flying in the sky "} +{"id": "0002654", "video_name": "2ef8ecdd-8cc1-5d29-9aa4-b49d077fffaa", "text": "write the word tehnopark in graffiti style "} +{"id": "0002655", "video_name": "2efa3582-58b2-536f-83b4-1965f774b1cc", "text": "a robot playing with cat in the moon "} +{"id": "0002656", "video_name": "2f01f8b6-2658-5205-af9b-ca5ba25f8458", "text": "a man accepts a call and talking in the private room "} +{"id": "0002657", "video_name": "2f080927-ad35-5b33-a569-1419fe06e213", "text": "Illustrate Seebu, the talking apple, sitting on a jungle tree, with a cheerful expression, ready to share its health secrets with the kids. "} +{"id": "0002658", "video_name": "2f0e8a53-3f54-5510-81f9-94e8b5b55407", "text": "Person or business gasping for breath 3d animiert cinema "} +{"id": "0002659", "video_name": "2f0f26a3-ea01-5be2-8600-5089a29f711f", "text": "two faces mefging abstract art atmosphere together in the desert red white garmnets cinematic light film "} +{"id": "0002660", "video_name": "2f13647a-7993-5518-aad1-8300df641d08", "text": "Understanding, Two puzzle pieces fitting together. "} +{"id": "0002661", "video_name": "2f1535c0-375c-5944-a9b9-1329e453a34a", "text": "the face of a woman lying on the ground with her eye open, with a drop of blood running from her mouth in the forest.\n\n super realistic, realistic, cinema style, HDR, 8k. "} +{"id": "0002662", "video_name": "2f19958b-0ed2-5c88-8e64-b00789a61304", "text": "Focuses on the singer from a low angle, capturing their melancholic expression as they sing with a soft background blur. "} +{"id": "0002663", "video_name": "2f1dce37-859f-5fc3-8439-916a8cda31d1", "text": "Draw a bustling bicycle shop in the heart of a city with customers browsing around. "} +{"id": "0002664", "video_name": "2f267be1-7fd1-56a3-9765-388e9830f15d", "text": "a man walks from the seashore towards the village, the time is day, the view from the back of a man, the time is 0 A.D., the clothes are white "} +{"id": "0002665", "video_name": "2f30899e-b2ac-5dfe-9a02-e79cb9d54b5e", "text": "a person looks in the mirror and sees a demon, 24 fps, movement 5 "} +{"id": "0002666", "video_name": "2f35a1c5-6fa7-5d0a-b2f4-b29629f680d9", "text": "a girl wear a white dress is lying on the bed with white sheet in hotel "} +{"id": "0002667", "video_name": "2f3764d0-e0b1-516b-a0e4-8608aae288d8", "text": "happy bumblebee flying through the sky "} +{"id": "0002668", "video_name": "2f433c1e-7790-53e2-bd61-1aca76f17524", "text": "An Ikran from Avatar The way of water "} +{"id": "0002669", "video_name": "2f48cc27-5cca-5c85-a666-374f87103837", "text": "An Asian girl is drinking beer while visiting the night market at night "} +{"id": "0002670", "video_name": "2f4a636a-65b9-590e-90c6-efd39cac5090", "text": "a vectorscope with signals flashing on and off "} +{"id": "0002671", "video_name": "2f52ba42-6fe4-5566-b00a-bfb32b554157", "text": "child dressed as a air hostess flying through space and universe "} +{"id": "0002672", "video_name": "2f542a68-e17a-57fa-82d1-536a68e74c38", "text": "The background is cyberpunk. Shot from a low angle. A robot in the center is walking slowly. "} +{"id": "0002673", "video_name": "2f57b363-ca8e-5933-b99d-b503ff0dcd00", "text": "a short movie of someone unsatisfied with their major at University "} +{"id": "0002674", "video_name": "2f5f68ab-1c75-5bd1-b9de-9de8318fd69c", "text": "Christmas, magical town, people walking, beautiful decorated houses, wide shot, lights, Christmas trees, realistic, 8k quality, science fiction, 24 fps "} +{"id": "0002675", "video_name": "2f5fb8bc-c6aa-530b-9235-c0251e412922", "text": "\u2022 A dark and stormy night. A lone figure walks down a deserted street. "} +{"id": "0002676", "video_name": "2f68d22b-3d72-5a41-93e6-100f94637eec", "text": "the black silhouette of a man in the forest at night is cinematic "} +{"id": "0002677", "video_name": "2f6a7aca-4132-5267-8548-5b9d6d8f625f", "text": "18th centuary ghostly black coah pulled by 4 black horses in a background of windy full moon scary forest "} +{"id": "0002678", "video_name": "2f6dd25b-65a1-5fd6-bac6-279f93076506", "text": "Toyota Machesta rides around the city "} +{"id": "0002679", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "small girl tending to the garden, watering the plants and carefully removing weeds, showcasing her dedication and nurturing spirit "} +{"id": "0002680", "video_name": "2f7862a4-cb7d-51a3-abae-f7d238c61baa", "text": "futuristic army in the desert, mask,dusty, Peter witkin style, feature film "} +{"id": "0002681", "video_name": "2f7a2596-1ba1-5d46-bbdf-81ade0951558", "text": "Ultra realistic image of a university abandoned by time. Pieces of cement fall from its walls. Teachers and students try to repair it. The sky looks cloudy and windy. a dove flies in the sky. cars parked in its surroundings. "} +{"id": "0002682", "video_name": "2f83a6d0-53a8-51e2-ae9b-939ec19905cc", "text": "brock lesnar and Quentin Tarantino eating a cheeseburger "} +{"id": "0002683", "video_name": "2f86a04d-5a31-559d-ae49-e298c9b04e2d", "text": "a pumpkin humanoid dwells in a cave. She is writing in a journal at the entrance to her cavernous home. In the style of Chainsaw Man anime. "} +{"id": "0002684", "video_name": "2f86c5bd-b302-5eb6-97c0-295496559672", "text": "The great battle of the light host, against the fiends of hell "} +{"id": "0002685", "video_name": "2f8c1073-9722-571e-ae56-d775f083fa94", "text": "Crowd of people waiting in the dense forest for someone they are scared it is a very dark night that is creepy, They are looking for some one in the distance "} +{"id": "0002686", "video_name": "2f8eb22a-086c-5e18-bc9e-665ef3c7d7c4", "text": "grunge vintage dark background with animated beautiful rose pink red lotus with ethereal light from the middle "} +{"id": "0002687", "video_name": "2f94ab76-7d78-5c5c-91a0-b1230e8f1e9e", "text": "The aircraft carrier Fujian is at sea "} +{"id": "0002688", "video_name": "2f94ade9-6b9b-53e2-982a-d0b13bd1f556", "text": "young man dancing on a white background "} +{"id": "0002689", "video_name": "2f974783-1057-54dc-b33a-b4ce4e69732a", "text": "The Guide imparts a mission to Maya, his piercing gaze reflecting the weight of the task. Maya, with a mix of determination and uncertainty, accepts the challenge, her backpack now containing newfound artifacts. "} +{"id": "0002690", "video_name": "2f988730-290b-523a-bdf1-c2dc9300bad8", "text": "Aztec warrior on top of pyramid, cinematic "} +{"id": "0002691", "video_name": "2f9bb35d-47cd-552f-9b3b-65031af5780c", "text": "Create a scene with a patient with the following symptoms: fever; joint pain; headache; backache; abdominal pain; gastrointestinal symptoms. "} +{"id": "0002692", "video_name": "2fa1d332-0b53-535e-a5ca-96b278963785", "text": "Display video of three sea turtles gliding through the water in the sea "} +{"id": "0002693", "video_name": "2fa7269b-4a37-5e9e-9dae-ff6e48f40e32", "text": "2 egyptian women fanning the air "} +{"id": "0002694", "video_name": "2fb7e368-05b2-5110-a997-366ceb1218d6", "text": "Opening Shot (5 seconds): Start with a tranquil image of a person meditating in a serene natural setting, showcasing peace and balance. "} +{"id": "0002695", "video_name": "2fb8ba55-13fb-51c2-80bc-c59121b2537d", "text": "Medieval tavern like in the withcer videogame "} +{"id": "0002696", "video_name": "2fb8d80d-6782-5659-aef5-6e5c6324f70d", "text": "The news of the magical flowers spread throughout the community, and everyone eagerly awaited the day they would bloom. "} +{"id": "0002697", "video_name": "2fbd88fc-1d23-5e62-bc39-8c28afaa47c5", "text": "Luxury sports car with aggressive lines, shot in a high contrast, high key lighting with shallow depth of field, detailed, sporty, sleek, studio lighting fit in the frame silver color more photos "} +{"id": "0002698", "video_name": "2fc1bdb5-1e2e-5744-b02f-f8f46cfff957", "text": "MOVIE POSTER MARVEL CAPTAN MARVEL SAD POWERS CENAMATIC POSTER NO MOVING BRIE LARSON BLONDE GLOWING LIGHT "} +{"id": "0002699", "video_name": "2fc73134-5e5e-5f2a-8173-f6821568247a", "text": "a beautiful tomato plant grows from the ground "} +{"id": "0002700", "video_name": "2fce6152-d40d-5763-8878-d6526d14ef55", "text": "hyper realistic bee flying close to the screen of a CRT monitor, the monitor broadcasts the program maya the bee in black and white ,4k, ar 16:9 "} +{"id": "0002701", "video_name": "2fd5d2d2-da23-54e6-9dac-a0752ad82f24", "text": "A mystical forest at twilight, with glowing mushrooms lighting up the path and creatures of folklore lurking in the shadows. "} +{"id": "0002702", "video_name": "2fe5c9de-b0e7-5c9f-ace1-0913c86e5cb0", "text": "steph curry breaks lebron james ankles "} +{"id": "0002703", "video_name": "2fe814f8-9313-5e0f-ba47-9a8f73aea506", "text": "A boy and a girl are walking away together in the grass, under the sun and the rainbow "} +{"id": "0002704", "video_name": "2ff1dc03-1e80-579c-95b7-6b514b0c031c", "text": "young girl with Brian eyes and Rosey chick "} +{"id": "0002705", "video_name": "2ff2acc0-2cf4-5dae-805f-85c7d78a42d4", "text": "greeting and saying hello to everyone "} +{"id": "0002706", "video_name": "2ff52c4c-e6ed-5470-88be-be043852c890", "text": "Generate an atmospheric Gojo image surrounded by a barrier of jujutsu symbols, showcasing his protective abilities "} +{"id": "0002707", "video_name": "2ff6bdfd-3714-57ad-ac96-4a34c0b7d2b5", "text": "Neon airships floating through the night sky advertising products as the propellers spin. "} +{"id": "0002708", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "Over the years, numerous expeditions set out to find Agartha, "} +{"id": "0002709", "video_name": "2ffd6f0e-9552-5c82-bc38-5ed8b913d61c", "text": "Catholic monk who is also a rosicrucian, teaching a nun about alchemy in the 17th century. A male and a female. "} +{"id": "0002710", "video_name": "3002c696-6a79-5ad7-b5f9-0318d30e7895", "text": "peacock realized that the pond had only granted one wish per person, and that he could not undo what he had done "} +{"id": "0002711", "video_name": "30123110-bcaf-571a-8ba9-6945b7d62779", "text": "Man starts shaking very quickly weirdly in the streets of Bergen "} +{"id": "0002712", "video_name": "301266f2-0354-5996-b327-f358787888eb", "text": "bob ross spray painting a wall in a urban subway station underground "} +{"id": "0002713", "video_name": "3013e1a2-3ad7-54a5-a323-c1f5e5df804a", "text": "She opens the BeautoNomi app and orders a hair stylist. "} +{"id": "0002714", "video_name": "30151202-3022-50f7-8c37-884f49ffb605", "text": "overhead shot of an island at night, three funeral pyre, smoke flowing on top of a river, smoke, super wide angle shot, ultra realistic "} +{"id": "0002715", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "humanoid robot sitting on a throne, imposing dominance and respect "} +{"id": "0002716", "video_name": "3021b470-7b35-51c7-a5cf-a19622d33075", "text": "Dogs bs wolf fire jacket and the blue shirt "} +{"id": "0002717", "video_name": "302300ab-987b-581f-904d-be8ec5b56108", "text": "kids are splashing in the sea "} +{"id": "0002718", "video_name": "3027cd97-a1d5-55c0-b55c-73fc52b4e113", "text": "A high quality short video of a person analysing stocks in a close shot "} +{"id": "0002719", "video_name": "302d7f12-bce5-591f-bae0-8d3373733be8", "text": "World of Warcraft undead characters playing orchestra in a Cathedral. Panorama shots of the giant scene and strings, brass, woodwinds and drums sections "} +{"id": "0002720", "video_name": "304365a6-c590-559e-bb2b-c1a075d15baa", "text": "Imran Khan attacking General Asim Munir, Chief of Pakistan Army. Imran Khan wearing white pakistani Shalwar Kameez dress. Asim Munir falling after a punch from Imran Khan. "} +{"id": "0002721", "video_name": "304bc481-c5ee-541e-885f-1d36aba98f61", "text": "a pregnant woman talking to a handset at the end of a long cord tie with a fetus in her womb "} +{"id": "0002722", "video_name": "304c6c85-6662-59aa-8251-292ec54bde3c", "text": "camera moving around an amazing 22 year old beautiful female glowing translucent ghost in a moon lit Halloween graveyard, amazing smile, highly detailed outfit, night time, colored lights "} +{"id": "0002723", "video_name": "305e3953-aa39-5294-b822-2476b23c5ca8", "text": "first show sloar system then saturn rings moving , eventually zoming out in outer space , shows a blackhole "} +{"id": "0002724", "video_name": "305f53f2-6be8-5bcc-8be1-0f09a50580ff", "text": "A large building with a single column in the middle, 10 m high, with a side staircase and a waterfall at the bottom "} +{"id": "0002725", "video_name": "306ad2e4-7ffc-5e4f-aa10-7871cb863b96", "text": "close up shot of earth from space in 4k "} +{"id": "0002726", "video_name": "307027d2-9bf6-5990-87f7-e4f7fd0b9f96", "text": "A LOGO. WITH ZM. IN THE MIDDLE. sunset light, macro shot, cinematic style, hiper reality "} +{"id": "0002727", "video_name": "307207b9-d162-50bf-90d2-a4175632adf3", "text": "A beautiful woman with a great figure, dancing in a yoga outfit "} +{"id": "0002728", "video_name": "3081f33e-42a3-5e04-9ab1-8fe9344c3a2c", "text": "anime style with lightning in the background "} +{"id": "0002729", "video_name": "3087fb9d-f64f-5d33-b07d-0fc8ad64c302", "text": "Creating a cinematic image of a Palestinian girl sleeping on the ground surrounded by fire in the form of a circle, and around the circle there are people filming her with their phones with fear on their faces as she is dying. The camera is from a fixed top. "} +{"id": "0002730", "video_name": "3087fc91-b60b-5ec1-ac1c-d98ab0af5324", "text": "a corner of a dark street background "} +{"id": "0002731", "video_name": "308aa3bc-454c-5546-b53e-a7c1495c1482", "text": "godzilla attacking a popeyes chicken restuarunt "} +{"id": "0002732", "video_name": "308f2634-602a-51c7-90ae-843c20e32312", "text": "a handsome angel and samurai in the baroque style palece,the samurai wearing Beksi\u0144ski style ornate armor, the palace full of gorgeous embroidered totems,beautiful scene,beautiful deco detail,UHD,16K,voulome lighting, "} +{"id": "0002733", "video_name": "30930991-3a87-546f-8e0b-27eaaf0b89ea", "text": "road, abandoned town, fog, dark, night. "} +{"id": "0002734", "video_name": "309558dd-ad5c-52fb-a819-962f932844bf", "text": "Birds fluttering\uff0chyper realistic; highly detailed; cinematic; clear image; smooth; super sharp Message: 1 Attachment "} +{"id": "0002735", "video_name": "309d4b05-cedc-5c0e-aac1-425b27d6b07b", "text": "an Asian girl wearing glasses in JK uniform "} +{"id": "0002736", "video_name": "30a5efea-d76c-5d28-8a3d-543d410c459e", "text": "Motion video from the song Lost in the Dream by TMons "} +{"id": "0002737", "video_name": "30a9360e-eb88-5ae2-9624-ebac02692125", "text": "owls talking, beak moving as they are talking, moving eyes and head "} +{"id": "0002738", "video_name": "30aabd6d-ec47-5622-bd8e-918c91950ce2", "text": "girl wearing violet jeans short swinging an axe 4k resolution "} +{"id": "0002739", "video_name": "30b4ad11-9921-58f5-aefc-dbfa5ea81934", "text": "Please make the man in the picture remove the black glasses from their current position "} +{"id": "0002740", "video_name": "30b681dd-429b-5674-a691-feffc1d877cd", "text": "codm logo with gun and explore "} +{"id": "0002741", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "green cat is flying under the brown table "} +{"id": "0002742", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "Girl in suit washing dishes in the kitchen "} +{"id": "0002743", "video_name": "30bd9242-75ab-5f67-9767-cdd774af9a1b", "text": "silvester stallone jumpig wild in a bar "} +{"id": "0002744", "video_name": "30bfd604-5434-53e0-a283-48fa0a7a7a77", "text": "A tired man who has been working for several weeks "} +{"id": "0002745", "video_name": "30c11bcd-f807-5941-a871-c305169ac76f", "text": "marketing intro of enphase energy corporation logo that is similar to an Apple ad "} +{"id": "0002746", "video_name": "30c17fbf-6b1f-5a34-9b9f-699d611d6f06", "text": "Alexandria beaches, from above, camera moving left "} +{"id": "0002747", "video_name": "30c4d8ae-5e80-5288-9d42-6df9d4636380", "text": "dead bodies of villagers laying on ground due to war "} +{"id": "0002748", "video_name": "30c85ddf-e088-556d-b36a-5d53a883e560", "text": "liminal space horror with elf screaming "} +{"id": "0002749", "video_name": "30c8aea1-2fd7-5a3a-9fa5-cc61867fec37", "text": "a futuristic robot building another robot "} +{"id": "0002750", "video_name": "30cf26af-f47f-5415-82b2-4edb7a7465f4", "text": "The magical moment when Barbie helps the sad mermaid regain her voice with the sparkling seashell necklace. "} +{"id": "0002751", "video_name": "30cf92c8-c9f2-5be3-8b14-3551eea9dca6", "text": "macro shot of an abstract leave with gloomy lights, misty, surreal, cinematic, 16:9 "} +{"id": "0002752", "video_name": "30d0bff7-c74b-5891-a8ef-a3dd462fc8fb", "text": "robbery story. Video duration 6 second "} +{"id": "0002753", "video_name": "30d6d9dc-47c2-548d-952b-0b65a3480dc0", "text": "A handsome man dressed in black wizard clothes, shooting a fire bolt out of his hand, with tears in his eyes towards a beautiful girl with deep red hair, looking shocked "} +{"id": "0002754", "video_name": "30dea65e-e95d-5f43-a889-b51aa2d7bd0b", "text": "create a ms dhoni pic for laptop wallpaper "} +{"id": "0002755", "video_name": "30f51a42-8a2f-516f-be6f-234e5e209809", "text": "charcater baking an pizza with white simple background "} +{"id": "0002756", "video_name": "30fbd299-77f7-5cc0-bb91-cac8a73a7daa", "text": "A girl wearing white short sleeves and black cropped pants "} +{"id": "0002757", "video_name": "3101a602-e439-57ac-a226-d63e2284401a", "text": "influencer skydiving off a building in the city while in selfie mode "} +{"id": "0002758", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "Donald Trump hanging in the sky, moon, stars "} +{"id": "0002759", "video_name": "310212d1-087a-5065-a092-bf8c9c5da218", "text": "a 1950\u2019s husband standing in a window looking outside with a cup of coffee in his hand. He has glasses and a button up shirt. There is 1950\u2019s cars on the street. Colouring is cyan and pink "} +{"id": "0002760", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "Generate a video of an environment of the correlation between humans and AI "} +{"id": "0002761", "video_name": "31193a71-e333-52bc-aaf4-daaf90b496ad", "text": "blue bird flying over psychdelic field "} +{"id": "0002762", "video_name": "311ed527-9da7-5dd0-9001-d7fc79871a8e", "text": "daenerys targaryen healing from her injury created by Jon Snow with Dragon whistle "} +{"id": "0002763", "video_name": "311f107d-b1c9-5682-9ab1-92d7db224fc7", "text": "a little beautiful 3D AI girl in hijab helping people by carrying their grocery bags "} +{"id": "0002764", "video_name": "3123d8d5-1b80-580f-afb4-299b52a59438", "text": "a white veil is breaking from top to bottom "} +{"id": "0002765", "video_name": "312af3cd-48d9-55fb-8e60-3ee61a539cfa", "text": "a bhutanese yogi meditating inside the traditional bhutanese house "} +{"id": "0002766", "video_name": "312f5cfc-065e-5ebc-b75a-3811b33a5477", "text": "aliens build Egyptian pyramids, use alien technology, surrealism, detailed "} +{"id": "0002767", "video_name": "312f9c83-d064-5f56-b6bd-f64618541a69", "text": "the emperor tarot card: add red and orange in the background: severity "} +{"id": "0002768", "video_name": "313189fd-5eee-5c3d-bd5c-dc8e69b5944c", "text": "Old VHS style footage of someone walking through a scifi market (they are walking fast and looking paranoid) "} +{"id": "0002769", "video_name": "313acbc9-fafb-5f2f-865d-ddcf3f9379fd", "text": "World leaders argue in the UN conference room "} +{"id": "0002770", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "Generate an hyper realistic depiction of the Battle of Gaugamela, showcasing the intensity and scale of the conflict,full hd "} +{"id": "0002771", "video_name": "31594f54-ab71-5c3a-be42-384b720a4f54", "text": "Generate a magical scene of a butterfly flapping its ethereal, glowing wings . "} +{"id": "0002772", "video_name": "315c8d61-9a54-574f-bc81-5028f77b2690", "text": "a tree growing out of a Labor Day Holiday "} +{"id": "0002773", "video_name": "315d071b-46df-55fd-bd49-6f569a653a8b", "text": "cinematic 4k footage of a robotic butterfly flying in a green forest full of flowers during a sunrise golden hours "} +{"id": "0002774", "video_name": "31602c78-fed5-5fc5-92ac-b4d10fcbcace", "text": "a cooked thanksgiving turkey is moving on the plate "} +{"id": "0002775", "video_name": "31637b69-a162-5bb0-8d45-202ce9df5bd2", "text": "sky opening, raining with circus, colorful, Poster "} +{"id": "0002776", "video_name": "3169a288-754b-59c2-a090-ed154e94ea66", "text": "cinematic shot of elf in city "} +{"id": "0002777", "video_name": "316ca01f-55fe-59ee-81d3-47a31b027791", "text": "Flawlessly cooked egg sandwich, bacon, toasted English muffin or bagel. Slices of tomato or avocado and lettuce. "} +{"id": "0002778", "video_name": "316dec8c-fb85-5ac8-a0e4-b39c8fd5f0f1", "text": "frost covered a small town with hoarfrost "} +{"id": "0002779", "video_name": "3174d1b3-0c27-5407-803a-4743c8d1027c", "text": "A popular market in Fez. A person in his forties inside his store sells chebakia (or qaryoush or makhrakah), which is essentially a Moroccan Ramadan dessert that no Moroccan home is without in the month of Ramadan, covered with honey and sesame seeds or galangal.\nformat hd "} +{"id": "0002780", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "a 9:16 video o a trading guru sitting o a yacht with 2 girls in bikini "} +{"id": "0002781", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "a police man in an empty room lonely and very confused "} +{"id": "0002782", "video_name": "31827b79-385a-5952-a962-f6f2a8988284", "text": "a dark scene of an ominous object flying through space "} +{"id": "0002783", "video_name": "31843579-537a-51bc-b356-d45e37861231", "text": "portrait of girl close up y2k "} +{"id": "0002784", "video_name": "3189bfef-32a4-54cd-acab-5ed3199427b0", "text": "the word \u201cMaskMonger\u201d in creepy glowing green letters with purple light night flashing behind the word "} +{"id": "0002785", "video_name": "318a2ea2-56db-5de6-87af-d1d86945c77e", "text": "a hyper realistic macro photo of a tiny, bioluminescent, grasshopper, with spots, in the dark "} +{"id": "0002786", "video_name": "318d6efa-c803-5057-929a-ca0fd1df2071", "text": "dates palm tree in the desert at night , 4k , 1:1 "} +{"id": "0002787", "video_name": "318de8b2-5f9f-57fa-9ec4-ad8cf2685791", "text": "Skynet as a giant cybernetic dragon. "} +{"id": "0002788", "video_name": "318f244e-4be4-5c81-93d1-f1dd6e692fa4", "text": "A stressed young person in a workspace staring computer surrounded by a pile of papers coffee mug and a geometric shaped light bulb "} +{"id": "0002789", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "With a determined heart, lion set off on his journey. He padded through the tall grass, his tiny paws barely making a sound. The world beyond the meadow was vast and filled with wonders he had never seen before "} +{"id": "0002790", "video_name": "319bc8ff-d366-5fb3-a6af-89b1b23f7612", "text": "a russian military guard doing a fortnite dance on a pile of ham "} +{"id": "0002791", "video_name": "31a0a3f0-f46b-5364-b7a3-ddcf75040aea", "text": "The wind blows, and people gradually drift away Message: 1 Attachment "} +{"id": "0002792", "video_name": "31aa3246-f89d-5e20-a1ed-852c7be2ac1e", "text": "man and woman walk hand in hand down street while a bus passes behind them, scenery looks like a van gogh painting "} +{"id": "0002793", "video_name": "31b12030-3bd0-526c-b1a0-57991de2a051", "text": "Illustration depicting gravitational forces between the Earth and the moon. "} +{"id": "0002794", "video_name": "31ba28a2-93e1-5f6c-a945-013242ea9f5f", "text": "a tiger walking on the surface of mars, rover footage "} +{"id": "0002795", "video_name": "31bc8bf5-6f91-541d-95ec-0c8aa2697f24", "text": "The boy tries again, and this time, he takes flight. "} +{"id": "0002796", "video_name": "31be16e1-8b19-5967-9f0f-b66c4bbe27a8", "text": "realistic mountains, fog, sunrise, snow, school of birds, man hiking, waterfall W, waterfall Message: 1 Attachment "} +{"id": "0002797", "video_name": "31c88b09-1220-5c56-bf63-f1ce4d5e9f73", "text": "4 baby cats crowd by the window , curiously watching inside the tiny house,happy and mischievous. "} +{"id": "0002798", "video_name": "31c99ab1-11d6-552c-9f9f-e7908bda7f24", "text": "a skeleton walking right on a grave yard,30s style camera,black and white,VHS "} +{"id": "0002799", "video_name": "31ca873d-c89a-51ec-a4b0-ebd1f1299764", "text": "people in a boat with enormous creatures in the water "} +{"id": "0002800", "video_name": "31da8261-f9da-5257-bdc1-60799afc25f4", "text": "10 second video raversing through a series of challenging landscapes. The image should depict them navigating through dense forests, with thick foliage and towering trees creating a mysterious and foreboding atmosphere. In another part of the image, show them cautiously crossing a turbulent river, its waters rushing fiercely. The expression on their faces should convey determination mixed with cautiousness as they navigate the treacherous waters. "} +{"id": "0002801", "video_name": "31dcac1e-3868-521b-9367-74d07a427906", "text": "a bed time story for babies or toddlers with one lovely animal in the night time, there is some stars, galaxy background, the lovely animal is sleeping on the cloud, very comfortable and slient "} +{"id": "0002802", "video_name": "31e0773d-beb5-5cec-bfb7-a203f4bbc09c", "text": "Golden sunlight filtering through a dense forest. Tall, majestic trees with their leaves rustling. "} +{"id": "0002803", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "women , graphic designer in work, funny, realistic "} +{"id": "0002804", "video_name": "31e3395e-1b43-5e51-8061-a63ee477233d", "text": "visualization of a lexus car in the form of a human body "} +{"id": "0002805", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "a cuban boy in havana malecon "} +{"id": "0002806", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "the strong empire of the king, Xie "} +{"id": "0002807", "video_name": "31f072f1-ca33-5229-b3bb-5f6135014f35", "text": "A woman in red clothes running "} +{"id": "0002808", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "graffiti art appearing on wall out of nowhere "} +{"id": "0002809", "video_name": "32078ab0-30ea-5e1a-9d02-77cd87c1aaa5", "text": "an old man eats spagetti and drinks wine "} +{"id": "0002810", "video_name": "320844ad-b81a-51c7-a995-6749d9a86242", "text": "A group of children discovering a large kite. "} +{"id": "0002811", "video_name": "320b7d3c-2192-5674-a022-2f61f3a375f9", "text": "girl in her parents house, but she is depressed and feel alone "} +{"id": "0002812", "video_name": "320ec19f-2857-5d1a-971b-09b4d4b7cef7", "text": "a video The life of a mother, describe the scenes from giving birth to her child reaching adulthood, create a Timelapse of time going fast and the emotional nature of the journey the mother goes through and letting her children go out into the world and letting go "} +{"id": "0002813", "video_name": "32114dcc-3dc6-5fb6-a18a-cd4ef4c4da1a", "text": "beautiful girl sitting on rocks in strong ocean currents "} +{"id": "0002814", "video_name": "3215e184-f7d7-566a-843a-4c0e79707ba2", "text": "storm x men dress as mariachin playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "0002815", "video_name": "3218df25-e3f8-5f88-ab59-80c9f9d6b02f", "text": "Cosmologyof Kyoto Art Film Eerie Alejandro Jodorowsky "} +{"id": "0002816", "video_name": "3218f4d4-988e-5652-94f2-074d761dc24c", "text": "rabbit runing in forest , morning, raining "} +{"id": "0002817", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "A funny picture of a grumpy cat "} +{"id": "0002818", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "Create an animated avatar representing a friendly and knowledgeable AI host. The avatar should exude approachability and confidence, wearing modern attire. It should express subtle smiles and nods to engage with viewers. Use a color palette that aligns with the theme of financial security, perhaps incorporating calming blues and greens. The overall demeanor should be warm and inviting, reflecting the simplicity and clarity of the life insurance content "} +{"id": "0002819", "video_name": "3232fafc-0d95-51ac-8050-6d7f1d7d48b7", "text": "looking back ,eye blink Message: 1 Attachment "} +{"id": "0002820", "video_name": "32488b29-74ad-5fc5-a4f6-2f651183531b", "text": "a camera travelling of a man on top of a moutain doing skatebord "} +{"id": "0002821", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "Short animation a girl getting anger "} +{"id": "0002822", "video_name": "32560e19-bd50-5dc0-b234-5b40f15910ce", "text": "white goose guesses about the future on a disco ball "} +{"id": "0002823", "video_name": "3259cc45-5c34-5d60-a91e-5f96033cc5d5", "text": "a shadowy figure free falls from the sky "} +{"id": "0002824", "video_name": "325c8ffa-bd0b-58d4-a7c9-115c9157bbdc", "text": "Greta Thunberg standing proud infront of meatfactory "} +{"id": "0002825", "video_name": "32645e5e-df01-5d4b-8253-60bfa3161a6d", "text": "shadows, a childish lament echoed every night through the silent corridors of the house "} +{"id": "0002826", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "generation of a cartoon about a beaver, cinematic light "} +{"id": "0002827", "video_name": "326f2e4e-a393-5e99-89dc-6463ba2b9ccd", "text": "a meadow with a breeze. deer graze "} +{"id": "0002828", "video_name": "326f5a37-e9d2-57f9-9331-f6ed089b58a1", "text": "a young boy running through a park with drone movement "} +{"id": "0002829", "video_name": "3274099f-9cdd-554a-a024-0d0e2a116238", "text": "There was a rapid, almost imperceptible impact of the meteorite. Born as a spark of light throughout the universe "} +{"id": "0002830", "video_name": "32760c80-fc1f-590c-ab31-c2a1e6abaef6", "text": "A bright and spacious art museum "} +{"id": "0002831", "video_name": "32865cab-72ae-5941-88c6-985187367b99", "text": "Amazon Rainforest Expedition: An image depicting the moment when biologists discovered dinosaurs in the Amazon rainforest. hyperrealistic cinematic 8k "} +{"id": "0002832", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "I want to make this scene appear magnificent. "} +{"id": "0002833", "video_name": "3295abac-a4c1-5dc7-a7b2-935a4c55fe55", "text": "an astronaut escaping a burning house "} +{"id": "0002834", "video_name": "32975281-bd72-5626-b738-becc7e4fa315", "text": "Lake in sunset surrounded by trees "} +{"id": "0002835", "video_name": "32a0c6c3-8ef2-5d3c-b234-f7f678acebb9", "text": "bmw E30 325is 1991 white parked outside a house in soweto "} +{"id": "0002836", "video_name": "32a19a56-876b-58e0-b114-cdd895bd8ad6", "text": "a video featuring a young and an elderly man dressed in red attire resembling Dante Alighieri, riding a giant white armored eagle above an icy city of skyscrapers made out of ice. "} +{"id": "0002837", "video_name": "32a1f8f4-b7c1-5e8e-a86b-4da72c997197", "text": "people walking in tokyo, dark alley "} +{"id": "0002838", "video_name": "32a614f2-2917-555d-a3d8-4e80d82dba4c", "text": "building, realistic, front view, game asset "} +{"id": "0002839", "video_name": "32ad33ec-3f81-599a-9196-3b546859a1a4", "text": "a flower being eaten in a businessman in Tokyo tripping on acid at tea ceremony. He is doing the YMCA. 8k ultra realistic in the style of national geographic. "} +{"id": "0002840", "video_name": "32af494c-e4b5-508a-b1a1-717b0b38a4d0", "text": "man and woman wearing purple and blue hoodies sun mask playing video games "} +{"id": "0002841", "video_name": "32b3e1d1-fc24-5ccc-ab3e-50ed5da2b5ba", "text": "a copelan prays in a forest trench against the backdrop of an explosion at dusk, side view "} +{"id": "0002842", "video_name": "32b9f504-6d4b-5484-86d3-d5dcac2c3ad8", "text": "Darth Vader and Luke Skywalker Eating Hot Dogs together, father and son bonding, stormtroopers watching over, UHD, Ultra Detailed, Hyper Realistic, Epic, Cinematic Shot, Accurate, Ultra Textures, Phot Realistic, 32K 16:9 "} +{"id": "0002843", "video_name": "32bbc2c0-2135-5d32-b00f-f30751a462be", "text": "She had a curious spirit and an insatiable love for books. Every day, after finishing her chores "} +{"id": "0002844", "video_name": "32caf809-9075-571e-909d-4d032d9f63ac", "text": "the same video but it lasts 10 seconds "} +{"id": "0002845", "video_name": "32d076db-3b05-5602-9d9c-3da9cd901ee4", "text": "Show Danny the Duck inside a cozy nest or house, rubbing his eyes as he wakes up to a new day. "} +{"id": "0002846", "video_name": "32d913e9-be34-54b3-b068-3e26b995ec73", "text": "The dragon was always up for an adventure, so he agreed to help "} +{"id": "0002847", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "Beautiful Sikh woman sitting on a rock looking at the ocean. "} +{"id": "0002848", "video_name": "32e0ed5a-0c5d-5226-8126-a20cb936788a", "text": "Design a beautiful rustic fireplace in the interior of a minimalist house. It should reflect a contemporary design that integrates clean lines, in which natural materials such as wood and stone and white walls predominate. It should be cozy and luxurious. The photograph was taken during a sunny day, some interior rooms are illuminated by a warm LED light, the photograph has a perspective view, 18mm, with focus on the fireplace, the photograph has a vibrant tone and warm colors, with a touch film. "} +{"id": "0002849", "video_name": "32ef48b0-4c21-5bda-bf8a-9b7320118965", "text": "1970 A24 film aesthetic tropic landscapes with wildfires "} +{"id": "0002850", "video_name": "32f11d26-7fa8-5114-9167-298cad13d7b8", "text": "there is a lot of Olivier salad throughout the country "} +{"id": "0002851", "video_name": "3304870b-dda2-5ed6-9758-65557a53d219", "text": "anime Geisha in Romantic style, with featuring silver and ruby emotive landscapes "} +{"id": "0002852", "video_name": "330a0539-6a2d-50ea-93e1-f212a8f3cd8e", "text": "The girl is using mysterious eastern powers to divine her own fate "} +{"id": "0002853", "video_name": "330b7caf-2b26-5e6a-b79a-caa3fb88f293", "text": "Alex finds an old journal in a secret room. The group gathers around, reading the journal entries. Ar 16:9 "} +{"id": "0002854", "video_name": "330d6611-a56e-59d4-8c84-73a4f4131838", "text": "a close zoom on an insole, where the material of the sole is compressed so that the cushioning function can be demonstrated "} +{"id": "0002855", "video_name": "330fd0d7-e43b-5d79-a7e9-e3c76cdb9960", "text": "guy fallen on snow, with gears "} +{"id": "0002856", "video_name": "33196271-7d72-5c7d-9066-2e675c731728", "text": "Note: For visualization and animation purposes, feel free to incorporate advanced graphics, visually appealing transitions, and dynamic effects where appropriate to enhance the overall quality of the video. "} +{"id": "0002857", "video_name": "331bd1d5-5e22-5f03-9b9f-3d0aeaeb7b82", "text": "Javier Milei walking in the forest dressing a tuxedo "} +{"id": "0002858", "video_name": "3321fa91-1681-5b39-9987-b51cf48ae83f", "text": "A band on stage with devil masks playing heavy metal, the singer with 1 hand in the air pointing horns, the guitarists jumping to the beat. HDR, Camera shake, 16:9 "} +{"id": "0002859", "video_name": "33239fb9-f958-5045-97b7-a7cfc65eff61", "text": "Football being kicked in the fall "} +{"id": "0002860", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "young woman lying on a towel legs visible, on the beach near the sea, wearing very light clothes, realistic body, wearing sunglasses and a cap, smiling happily, hands behind her back, blue eyes, small freckles, photorealistic, very detailed "} +{"id": "0002861", "video_name": "3327646b-920a-5c52-8174-23c414de1402", "text": "make a winter scene in the middle of the image Message: 1 Attachment "} +{"id": "0002862", "video_name": "332b9619-6ce1-5577-9460-9e3eaaacf403", "text": "wide shot of a full size mirror hanging on a wall "} +{"id": "0002863", "video_name": "332d8b72-0b7b-5615-851e-61b1bb4aad8d", "text": "Close up of the malformed eyes of the soulles rift deity, purple color, old footage, vhs style footage, found footage, digital horror, static horror, "} +{"id": "0002864", "video_name": "332f642b-c2e2-50ba-8386-94d46ac803f7", "text": "a close up view of a ultra modern building from the street. A woamn is looking at from the the window to the empty street. "} +{"id": "0002865", "video_name": "3332cdac-9e9d-578e-8657-f5e55efcccf6", "text": "a dad help his son fish "} +{"id": "0002866", "video_name": "33360603-9565-5b0f-be46-e26e329496b4", "text": "4k, ultra HD very high quality and all details,8k, ultra HD, Pixar style, Disney style, cartoon style Low Angle Shot: illustration of a single tall giraffe walking alone in the forest with a smile on his face with vibrant colours, clouds and sunlight in the sky in the background "} +{"id": "0002867", "video_name": "333b1666-240f-52bd-b084-56ab69b72378", "text": "Very beautiful photo of Ganesh ji "} +{"id": "0002868", "video_name": "333f8a4e-0fa9-57a0-b4f4-7f20f598c94c", "text": "Blue Jay is jumping on the North American pine trees, real image "} +{"id": "0002869", "video_name": "3345b3e0-8c83-5729-a8ba-33a1d4e052b6", "text": "Mr. Alex is shown browsing through his computer at his grocery store billing desk, discovering the TikMe Loyalty Program. His eyes light up as he learns about its innovative features. "} +{"id": "0002870", "video_name": "334743eb-cb64-5def-abaf-17745308453e", "text": "a 1983 film scene of a close up of a sexy womans ear and red red lips whispering secrets , 4k "} +{"id": "0002871", "video_name": "3349822a-657a-58ca-9ff4-c5d5a24de1cc", "text": "a fox sitting outside in front of a dark cave in forest "} +{"id": "0002872", "video_name": "334f97dd-32c2-5180-8333-cbf0c4df0657", "text": "india feeling proud of its scientist for moon mission "} +{"id": "0002873", "video_name": "33526f26-8b1c-542c-8bc3-dc5d3049d499", "text": "An adorable squirrel with a curious expression, sitting on a tree branch in cartoon form "} +{"id": "0002874", "video_name": "33553aa0-0ded-581c-be64-a52001213cb1", "text": "blonde girl with fireworks in style of Pixar animation "} +{"id": "0002875", "video_name": "335625a7-2333-5203-ad9a-36d61315adb3", "text": "aliens diwali celebration with ours family "} +{"id": "0002876", "video_name": "335ffd78-7359-5f95-8f72-128728892868", "text": "The moon fell on the water in a silvery light\uff0cThere were clouds in the sky, and on the clouds there was a golden moon "} +{"id": "0002877", "video_name": "336040ed-f7b8-58cb-b6e2-2a7fe8a7d14c", "text": "video of a cow eating ice cream "} +{"id": "0002878", "video_name": "336284c9-6a21-5b3b-9491-8eb8e4afd914", "text": "Mandarinfish swimming at the botton of the sea, ultra realistic, zoom out "} +{"id": "0002879", "video_name": "3366a5ee-7df6-5b1e-823f-43efb8a5d57b", "text": "Cyberpunk in the 1980s. Halfway between robots and humans. A sexy woman in a genuine manga. "} +{"id": "0002880", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "RED BLAC AND WHITE COLOUR PALETTE, crows flying over a graveyards , horror, cinematic scene Message: 1 Attachment "} +{"id": "0002881", "video_name": "336f1ac3-0e2a-5852-8f29-3f7fc6f68276", "text": "Highlight the research findings and scientific experiments conducted to prove this fact. Honeybee Face Recognition: "} +{"id": "0002882", "video_name": "3370b211-4be0-5bb4-8bb3-6180e9a26fad", "text": "a boy with lot of exam pressure "} +{"id": "0002883", "video_name": "33724211-2c37-59a3-9652-46e84df760d6", "text": "Tagged happy builders, hundred building, high detail, golden hour, 8k, realism "} +{"id": "0002884", "video_name": "33795e37-cc2f-5073-ad93-d47534b897ef", "text": "create a video where humans are seeing that AI machines is doing everything that they can like running coding content writing ad\u2019s running everything but AI machine robot seen that they humans is restaurant with drinking beer and enjoying with friends. So AI machine feel that only I can\u2019t do "} +{"id": "0002885", "video_name": "33837e2e-3685-5dbe-861a-34205fb122d7", "text": "Tiger roaring with tricolour orange, white and green "} +{"id": "0002886", "video_name": "338797ee-758d-5976-84fd-efc4295a30c7", "text": "full body view of girl, because she dropped her ice cream "} +{"id": "0002887", "video_name": "338e2b0a-34db-5429-a872-da906f61ea8b", "text": "a car full of light blue color , standing a five years old baby "} +{"id": "0002888", "video_name": "338eedb2-b079-57c0-b011-396e5b67202a", "text": "Groom and bride dance at wedding "} +{"id": "0002889", "video_name": "339709e1-b234-5a93-914c-bdddd7bf81db", "text": "a dragon with a laser sword "} +{"id": "0002890", "video_name": "339a6293-341f-52ca-a69c-5c1940b64171", "text": "a wood carpenter cutting woods with small object "} +{"id": "0002891", "video_name": "339b9d4a-31a1-5ead-9580-1e997b92e3a8", "text": "Halley attributed this phenomenon to the Earth\u2019s hollow structure. "} +{"id": "0002892", "video_name": "33a12bf0-e8ec-58f3-b9cd-b24e51f6bea9", "text": "Majestic Asian Elephants moving gracefully through vast landscapes. "} +{"id": "0002893", "video_name": "33a5f727-7a7b-5233-a80a-484fd427d80b", "text": "Nicolas Tesla releasing lightning from his hands "} +{"id": "0002894", "video_name": "33aa43d2-a892-5d7d-899e-b9e9dad25fdc", "text": "A cow grazing on land was blown into the sky by the wind "} +{"id": "0002895", "video_name": "33ac019d-6ce1-5945-a8ca-554c66f8eb7d", "text": "The property of the convicted shall not be confiscated, fast motion "} +{"id": "0002896", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "In a secluded corner of Bikini Bottom, on a dark and quiet night, SpongeBob SquarePants suddenly felt that something was amiss. The sound of light footsteps and the movement of shadows made him suspicious. It turns out, Plankton had decided to change his tactics by sending a group of ninjas to steal the Krabby Patty secret formula. "} +{"id": "0002897", "video_name": "33af77ff-d5b3-5498-8964-3a2cfcd39021", "text": "High definition photography, advertising shooting\uff0cThe fried chicken fell from the air onto lettuce. "} +{"id": "0002898", "video_name": "33b63cbb-9c5d-5905-ae87-a5032fd34937", "text": "man, male, Indian, 30 years old, good looking, smiling, modern, straight look, brightly dressed. \u041d\u0435 speaks friendly and smiles. "} +{"id": "0002899", "video_name": "33b72c9d-7874-509d-8e00-64cf0678eb5d", "text": "a gas cylinder delivery man making deliveries to the moon "} +{"id": "0002900", "video_name": "33b870c1-8281-5f84-a5fa-e759b7f98bf9", "text": "create a realistic video of nature, 4K, Full HD, Realistic "} +{"id": "0002901", "video_name": "33c6586d-b16c-5006-86b7-cfd78f8dbe10", "text": "a white bunny and a yellow bunny swim in a river. "} +{"id": "0002902", "video_name": "33d091ee-4d98-5641-9b72-a9fd87fccd2f", "text": "giant humanoid cobra footage 1920s eerie indiana jones "} +{"id": "0002903", "video_name": "33d1fe45-6aad-551d-b66a-ec9ce319714a", "text": "(rotate your phone message on screen) "} +{"id": "0002904", "video_name": "33d9a575-87ac-560d-aeb5-209f29b64bd8", "text": "boy and lion at the top of a hill, overlooking the jungle they helped protect, with a beautiful sunset in the background. "} +{"id": "0002905", "video_name": "33dddc9e-8767-5300-a898-f2c880de21e5", "text": "image of a young and beautiful professional women in suit standing and facing straight, show full view of the women from head to toe "} +{"id": "0002906", "video_name": "33dde3c8-975c-5cde-a937-d48c4035b87c", "text": "Rapidly edited to show the meeting scenes of the male and female protagonists, such as libraries. "} +{"id": "0002907", "video_name": "33e8fb80-996b-5d1d-b602-9a66e7c35b58", "text": "Show a modern computer vulnerability scan tool showing identified alerts as red and orange beacons flashing on a modern monitor "} +{"id": "0002908", "video_name": "33fde785-ba31-5160-a8a5-bbc67a101d96", "text": "Pigeons fight in battle with humans "} +{"id": "0002909", "video_name": "33fdf763-76f4-5a46-9d76-2d36798f4c3a", "text": "An otherworldly landscape unfolds before us, with towering mountains that seem to touch the sky, their peaks crowned with swirling clouds of vibrant colors, like a dream painted by Andrei Platounov "} +{"id": "0002910", "video_name": "34000215-13d0-5b51-a39c-93d81f8530ba", "text": "make me a sky of rain and thunder "} +{"id": "0002911", "video_name": "34017ba0-aa60-5d2f-93f2-d3cf9801e8c9", "text": "A family of dad, mom, and two children, sitting at the edge of the beach, gazing at the sea. "} +{"id": "0002912", "video_name": "34023c06-e742-53d0-8533-cb6fa57a7b58", "text": "A plane escaped from the volcanic eruption "} +{"id": "0002913", "video_name": "3407355e-010c-51ac-af62-e9cbb539e207", "text": "People in dark robes walk through a dark dungeon to a red light . "} +{"id": "0002914", "video_name": "340c6144-e7a5-5dff-a45a-976ede434f08", "text": "creat an image of sea animals inside sea, Gradient color, neon ligt "} +{"id": "0002915", "video_name": "340df211-ad8f-523d-8474-ec637cdc6ca3", "text": "reading a book face smile some child near seat with me style this photo Message: 1 Attachment "} +{"id": "0002916", "video_name": "3419b834-b1fb-51f5-a22c-31838123490b", "text": "a 1970\u2019s music video of a giant parrot dancing on an underlit disco dancefloor with a giant spinning mirrorball over its head "} +{"id": "0002917", "video_name": "341b4af1-3d35-5282-be85-534d87a55a0e", "text": "A group of firemen are rashing forward to the fire. "} +{"id": "0002918", "video_name": "341c7453-2251-5f58-acf7-30e67d2f77bd", "text": "pokemon turtle with glasses and a saxophone on a stage full of lights while spinning in a tombolada all in 3d "} +{"id": "0002919", "video_name": "342179f9-2b6d-5308-b7f0-fc2abed61ac8", "text": "The Beatles band playing music on stage flashing lights, minimalist style "} +{"id": "0002920", "video_name": "342686cf-5a4f-5941-b766-672b14a00b5c", "text": "a coffee farm landscape from costa rica, a volcano in the back, with a typical small costarican old house, ultra hd, realistic, vivid colors, highly detailed, UHD drawing, pen and ink, perfect composition, beautiful detailed intricate insanely detailed octane render trending on artstation, 8k artistic photography, photorealistic concept art, soft natural volumetric cinematic perfect light Message: 1 Attachment "} +{"id": "0002921", "video_name": "342be0ef-7b56-52b4-9873-3d46e76cd65e", "text": "make infinite looping ,ocean,red rose petals ,angels "} +{"id": "0002922", "video_name": "342c05aa-9648-5e5b-8e03-9cea862d945c", "text": "A figure stands in a world illuminated by a kaleidoscope of colors, each hue representing a unique facet of their enhanced vision. The merging of human form and augmented reality reflects the harmony between biology and technology. "} +{"id": "0002923", "video_name": "342f6da5-f130-530a-84c7-6bf3349225b9", "text": "chinese water dragon turning into a koy carp "} +{"id": "0002924", "video_name": "34329682-bf51-53fc-8b27-dc28ecdc5873", "text": "3D cartoon,smiling,professional, wearing button up checkered shirt,blue sport coat, blue coat,blue eyes, facial grey scruff, slight grey short hair, balding, short haircut, distant out of focus garden background, sun on face,blue suit "} +{"id": "0002925", "video_name": "343daed3-e16c-5763-bd03-cad714923e70", "text": "Haruki Murakami jogging in the morning Message: 1 Attachment "} +{"id": "0002926", "video_name": "343fdb0c-4656-5605-97f6-b68038e832b1", "text": "a sacred tree with bright blue leaves and dark brown bark in the center of a gothic cathedral. Light is emanating from the tree. There are two men in saphire blue hooded and cloaked robes. 4k HD animated style. "} +{"id": "0002927", "video_name": "343fe538-104f-5447-80fe-7d9cd368763a", "text": "woman reads in a park. sepia. pinhole camera. Film grain. Gradient lighting. Dark vignette. burnt border. sharp. gaussian blur background. "} +{"id": "0002928", "video_name": "344652a6-321a-54e5-ae7a-93a3ee883115", "text": "the detective decides to investigate the murder to find out who killed Julia and why. Julia continues to follow him, becoming his literal shadow. noir aesthetics "} +{"id": "0002929", "video_name": "34502209-bdce-5018-ac11-7ce35534df98", "text": "Introduction of Sparky: Show Sparky, the lovable cat with a spacesuit on, playfully chasing a space butterfly in his backyard on the colorful planet Whiskeronia. "} +{"id": "0002930", "video_name": "345239cb-d1ee-57b8-89ff-c9a5a4a8f599", "text": "Fantastic picture of humans in front of heaven "} +{"id": "0002931", "video_name": "3457b751-179b-5f48-abcd-e9fdf5784102", "text": "A young man in a very dark room checking his mails in his laptop "} +{"id": "0002932", "video_name": "3459cde2-55d8-554e-b620-9ccee3a68b2e", "text": "1950s, black and white tv logo "} +{"id": "0002933", "video_name": "345b57f6-161b-5bbd-bac0-b6f35f62cfee", "text": "Giant lava monsters reinforced by volcanic power, spewing flames and lava, destroying the city,Giant monster, monster, destruction, de facto "} +{"id": "0002934", "video_name": "345e2e54-5f44-5ad0-b804-eac57a3764e0", "text": "the souls connected in thread. the thread already cut "} +{"id": "0002935", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "first eye catching scene between hero and heroine at a acfe "} +{"id": "0002936", "video_name": "346d6396-9204-5fb8-b2c6-1f704d023f1a", "text": "Rachel Mc Adams in 3D cartoon style, she is walking on the street besides Dubai Khalifa Tower, the time is evening and the tower lights are on, and the view of the video is along with Rachel Mc Adams. "} +{"id": "0002937", "video_name": "346e1ac8-55d8-5ecc-871b-23199815cf51", "text": "a backoud with cauzy interio and a fireplace with a slow animated fire "} +{"id": "0002938", "video_name": "34722082-e031-58bc-bc93-9ca625d81d60", "text": "dog bark, gentle wind, black welsh corgi looks excited and ready for adventure while standing on the porch of a log cabin surrounded by evergreen pine trees, Studio Ghibli, hand drawn, vibrant "} +{"id": "0002939", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "Ice age earth in space realistic video "} +{"id": "0002940", "video_name": "3478b9e2-999b-56eb-a313-d2d33ae17018", "text": "nurse standing sideways bent over backwards, looking at the camera, cartoon style "} +{"id": "0002941", "video_name": "34790e10-28ad-5e79-848f-0063230d336c", "text": "The rabbit and the turtle adventures, and unforgettable memories. "} +{"id": "0002942", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "Shot of a galaxy forming in space, smooth animation, 4k, no distortion "} +{"id": "0002943", "video_name": "3488a4dc-7009-549b-9828-47e20b2cfbf6", "text": "a realistic elephant of the year 2150, with a tales like a fish in their feet\u2019s ti swim "} +{"id": "0002944", "video_name": "34893f62-e4d7-5408-92f3-5790c198fbdd", "text": "Take care of the Earth and take care of you "} +{"id": "0002945", "video_name": "348b1ce1-4dd5-57e6-b6a1-48f7c52da1d1", "text": "Japanese village with dark gray roof and LED lights around Message: Jorge Alejandro (Font: MODERN) "} +{"id": "0002946", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "a person making a dream car "} +{"id": "0002947", "video_name": "348e3148-47be-51fd-a2fd-9f813d485d1d", "text": "police race for prison runner jump on the bridge "} +{"id": "0002948", "video_name": "349ab579-0762-5b0a-8688-a54e7f2b8ca6", "text": "A tortoise and a rabbit walking side by side on the land "} +{"id": "0002949", "video_name": "349b1d1c-ab0d-5e48-bfc7-52421bb54cc5", "text": "mickey mouse dancing on a house "} +{"id": "0002950", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "Two stars shining bright in the London sky, dark blue sky, magical, 70s dark fantasy style, live action, realistic, cinematic, vintage, HD realistic, ULTRA HD, 70s movie style "} +{"id": "0002951", "video_name": "349dfeea-7497-5e4c-9c90-7e30a53cc9c6", "text": "Opening shot beautiful greenary indian village with sun rising "} +{"id": "0002952", "video_name": "34a6584b-6ee2-567e-b46a-84e8fa62ebf2", "text": "lord and savior jeb bush trump flag handshake "} +{"id": "0002953", "video_name": "34a6844f-b51b-5dca-ad22-f749b2f74abf", "text": "intricate light patterns.\nUltra hd, ultra surrealism, 8k, 16:9 "} +{"id": "0002954", "video_name": "34ab5489-510d-5e41-8acf-da88cd1251c7", "text": "Scarlett Johansson in a bikini seductively model dancing on a pole in a nightclub "} +{"id": "0002955", "video_name": "34acb7ef-d1b6-5d42-978d-59cd257d9224", "text": "A heartwarming scene of Ram and Shyam embracing as friends. "} +{"id": "0002956", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "a crystal ball, monochrome, faded colors, magical "} +{"id": "0002957", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "establishing wide angle shot, golden hour, people walking,future city, artificial island, tall, floors, space, modern, neighborhoods, interconnected by ornate walkways , futuristic photorealistic Neighborhoods, architecture has a gaudi influence "} +{"id": "0002958", "video_name": "34bc0145-9f6d-536c-a0cd-d4e93eb0d014", "text": "japanese devil samurai standing majestically with kitana, highly detailed, intricate details, symmetrical, digital 3d, hard surface, real time, vfx, trending on artstation, ultra hd, hdr, cinematic, hyper realism, high detail, octane render, 8k "} +{"id": "0002959", "video_name": "34c203c9-8e90-5ead-a610-c9f669697262", "text": "riding on my motorcycle in the night through a war damaged town "} +{"id": "0002960", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "cascading red hearts around white copy space "} +{"id": "0002961", "video_name": "34c6ca97-375a-5ddd-85c1-3f572f365361", "text": "cartoon cat and mouse with pot of cheese "} +{"id": "0002962", "video_name": "34cdcf1a-3f20-57c1-8fab-d2688322a8cc", "text": "a man standing on a planet, cinematic 4k "} +{"id": "0002963", "video_name": "34d8c5d9-158e-5917-863e-0de50e6a6906", "text": "a cat walking from th forest and turn look on the camera "} +{"id": "0002964", "video_name": "34d8f92f-56d8-57ac-9cf7-aacb8444ed98", "text": "gs 18 neg: poor quality, clipping, artifacts ar: 16:9 seed: 832 motion: 4 Opening shot of a majestic sunrise casting a warm glow over cobblestone streets. Establishing shots of intricate, weathered architecture and narrow alleys. Narrator introduces the Old City, its rich history, and the tales that lie within its walls "} +{"id": "0002965", "video_name": "34e0f446-3618-5c64-a772-e271a8ea92e2", "text": "The parrot is talking , leaves are moving "} +{"id": "0002966", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "Hoodboy (HB) walking down a sidewalk, wearing a hoodie and a cap, with a melancholic expression. "} +{"id": "0002967", "video_name": "34e6c6a2-05e3-505b-bcf4-b7cf1e4c5718", "text": "The first perspective of a doctor delivering a baby when a woman gives birth "} +{"id": "0002968", "video_name": "34f61564-5152-5f7d-9461-4359e0cf7d7f", "text": "Radiant sunset creating hues of ping and red in the sky landscape "} +{"id": "0002969", "video_name": "34fa95b5-93e4-5099-8d6b-e2411ecc2843", "text": "a cosmic being approaching earth, huge, cinematic, motion 4 "} +{"id": "0002970", "video_name": "34fa9dcd-370a-51a2-a6c4-6cb0dede2051", "text": "smoke billowing out of window building on fire with fireman spraying water, in the style of realistic 8K "} +{"id": "0002971", "video_name": "35018321-1081-5774-9e22-fb916fa6329d", "text": "\ud574\ubaa8\uc218 on his winged chariot in the sky "} +{"id": "0002972", "video_name": "3501f080-20cf-546d-ba94-6ad388adb57a", "text": "Some say the world and in fine some say ice "} +{"id": "0002973", "video_name": "35021bb1-f2e1-5008-994a-76a0279b0af7", "text": "1970s arthouse film in japan at night, wong kar wai vibes, falling out of window "} +{"id": "0002974", "video_name": "350aa303-872c-59a3-bddc-b936ff458407", "text": "rock concert with jumping David Lee Roth singing on stage while jumping "} +{"id": "0002975", "video_name": "3513dfc3-b1ce-553d-862d-7fe9e3728567", "text": "white cat playing drum in a cozy beautiful room "} +{"id": "0002976", "video_name": "3515a549-d4a3-5afe-bc51-d2cdf364109f", "text": "couple holding their hands walking in beach at night time where on sky it has full moon also "} +{"id": "0002977", "video_name": "35189df0-bd7b-5cd7-8d80-4210f87277bc", "text": "create a 3d cartoon of children covering their noses from a yellow cloud, 4k hd "} +{"id": "0002978", "video_name": "3521cbc2-b76f-5a44-a96b-39c625f4eaa7", "text": "a couple having the most romantic date above human understanding "} +{"id": "0002979", "video_name": "35270bd5-f528-520f-a73a-6d7f9072bb97", "text": "beach themed emojis flying in green blurred neon lights "} +{"id": "0002980", "video_name": "3527df2b-6483-5de6-962d-645c0dbbf093", "text": "May the light of Diwali bring you and your family endless joy. "} +{"id": "0002981", "video_name": "35292154-7787-5a6d-a844-0412c6bd9346", "text": "a cat news reporter talking about the weather "} +{"id": "0002982", "video_name": "352e7cc2-a4d2-53fc-9ef6-18d93938f5e0", "text": "a deep space scene that is 1920x1080 vertical, stars, particle clouds, iron, hydrogen, helium, carbon, vibrant "} +{"id": "0002983", "video_name": "3538d334-b5f8-55ad-8ef7-91100e0bb580", "text": "from forest to village aerial drone shot, landscape "} +{"id": "0002984", "video_name": "353a0e29-f389-544e-9772-f898c0b8224a", "text": "egg customers purchase plenty of crates of eggs in the Nigerian market "} +{"id": "0002985", "video_name": "353b27f0-8654-5c2a-88ac-fd9fe9b7b8ac", "text": "spit on each other Message: 1 Attachment "} +{"id": "0002986", "video_name": "353ba5d2-6728-5a09-86b3-a5086151f884", "text": "Japanese anime style, robots drive away people at work with bad intentions. "} +{"id": "0002987", "video_name": "353bc774-8fbc-5dc5-b1a9-901181605c9b", "text": "Amidst the splendor of the Golden Court, Lady Seraphina, a trusted advisor, finds herself deep in conversation with King Reginald. Uncover the intrigue and diplomacy as they discuss matters of state, navigate political challenges, and share moments of camaraderie in the grandeur of the throne room, where the fate of the kingdom hangs in the balance. "} +{"id": "0002988", "video_name": "3541d8e4-806b-5bea-a936-872b7bf44d27", "text": "beautiful christmas images hig quality vibrant "} +{"id": "0002989", "video_name": "354e5c14-527d-5afa-b536-eea23445dcd6", "text": "scary granny creeps through the garden of paradise "} +{"id": "0002990", "video_name": "354ec60f-c751-5ab7-adf4-7f0532c584ae", "text": "Tyler the Creator laughing, 3d animation "} +{"id": "0002991", "video_name": "35505e7c-6a9d-5676-8ded-c74f75f4f41d", "text": "A joyful and energetic person walking along an endless beach in the sunset while a melodic whistling sound of joy plays in the background, the sun reflecting off the water like a river of gold in a tropical paradise. "} +{"id": "0002992", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "a black cat eating a blue rose in the very top of the hill during twilight "} +{"id": "0002993", "video_name": "35580bd4-84a0-518e-8972-62b2984e610b", "text": "A indian boy explaining villagers about science project in disney pixar movie style "} +{"id": "0002994", "video_name": "355a1c96-cdfe-5e55-adfb-4f33775a1e33", "text": "I want that same background but more real and on the piano, that you can read WELCOME TO THE LEON PROJECT "} +{"id": "0002995", "video_name": "355f893e-c551-50b1-a5e9-06923c737a51", "text": "Joe Biden driving a toyota prius and wear seatbelt "} +{"id": "0002996", "video_name": "355f8c24-3171-5598-9ab4-f551bc0752b9", "text": "beautiful woman in lingeriewalking on the beach "} +{"id": "0002997", "video_name": "35678897-a294-5f3e-9efa-a2e1b521cb1a", "text": "Cold light envelops his body as he disappears into icy darkness. "} +{"id": "0002998", "video_name": "35682bca-2741-5db8-bca3-0ad6a218de44", "text": "The boy stands on the shore, watching as the mermaid disappears beneath the waves. The coastal town is bathed in the early morning light, and seagulls soar "} +{"id": "0002999", "video_name": "35693ef9-cfb8-52b5-9844-f9eb4d75edd3", "text": "Create a video showcasing the significant contribution of over 2.5 million Indian troops in World War II. "} +{"id": "2000000", "video_name": "3044983a-9eab-511a-8d0d-e62dd9065957", "text": "Rainy evening at a forest camp "} +{"id": "2000001", "video_name": "79352ea2-25bd-5e2b-aa4b-b2498fa1da81", "text": "He and his friends built a tent in the forest to live "} +{"id": "2000002", "video_name": "1d4ef7dc-4958-5f51-a7e7-30d3bac8a6b1", "text": "Mystical kingdom, gloomy scenes of people under oppression. "} +{"id": "2000003", "video_name": "02aeead8-164d-5389-89b6-e66302134445", "text": "driveby video of a s1000rr in front of a beach "} +{"id": "2000004", "video_name": "07470bcd-519f-5952-a9ee-1624f77d7f8c", "text": "They looked at each other and smiled on earth "} +{"id": "2000005", "video_name": "9cee794f-4e6f-5624-980f-0a93e4db19d4", "text": "A small kangaroo hides behind a Christmas tree, showing half of its body, making faces and funny movements, and floating on the top of the tree are the words: Merry Christmas "} +{"id": "2000006", "video_name": "8d86c627-abcf-5953-9197-9aee6aeb750c", "text": "Jason Statham fights a Werewolf in a dark forest "} +{"id": "2000007", "video_name": "e247ad98-b6e5-5d34-ba98-7bfdcec1a556", "text": "cricket world cup 2023 trophy shining and a number of colors "} +{"id": "2000008", "video_name": "33d784c0-20f9-53f3-a5d0-d7edcc36cc10", "text": "the bat sign showing an ice dragon, vibrant colors, 4k "} +{"id": "2000009", "video_name": "b557379c-6b60-5f19-a384-239ea005949b", "text": "art by todd mcfarlane, spider man mixed with cyborg, newzyork city, sitting on a roof watching a alien attack incoming, hyper realistic, surrealistic, 3d render, dark, neon lights "} +{"id": "2000010", "video_name": "fd77f8e0-5b6e-5e41-8f4a-cfbaacb8a457", "text": "a beautiful sufi female, singinging a sufi love song, mystical, ethereal, hyperealistic, captivating "} +{"id": "2000011", "video_name": "8c3838ce-72b9-5589-9171-38d5d756613d", "text": "film still tom cruise jumping of the empire state building in 2023 movie scene at night "} +{"id": "2000012", "video_name": "768e8260-8c91-535b-b671-15538e3a3618", "text": "1970s inspired surrealism. human in fancy dress shot on a super 8 film "} +{"id": "2000013", "video_name": "dc1b0b17-32a3-5930-b45e-cf666e8c9bd7", "text": "Nice body woman in wedding dress showing thumbs up in church "} +{"id": "2000014", "video_name": "82cc64c6-c1e9-5ea6-a640-8af5377a2d22", "text": "Kevin Hart show Message: 1 Attachment "} +{"id": "2000015", "video_name": "3f6ea00f-795c-53c8-b14d-cba1e9b0db6b", "text": "huge transparent glowing faceted crystal in a beautiful fantasy landscape "} +{"id": "2000016", "video_name": "7474c3e2-4a6b-5a5e-9ca3-c87f8799a4ae", "text": "a cyberpunk car speeding through thr city, animated "} +{"id": "2000017", "video_name": "4c05e039-afc1-5abb-a2ff-a4fb3215d0f2", "text": "photorealistic anthropomorphic alien animals walking in desert, cinematic high resolution "} +{"id": "2000018", "video_name": "30a9a094-d99b-5078-b7bc-0eecf1e107aa", "text": "bugatti drive very fast camera 1 "} +{"id": "2000019", "video_name": "b1866a4b-0ae7-5f27-a295-55ef25e27d01", "text": "A Sloth dressed like a Rapper, in comic style like GTA Vice City "} +{"id": "2000020", "video_name": "f63879a4-428b-50ef-bb6f-b16ef9bc9dc1", "text": "a group of teenagers descended to a dark basement "} +{"id": "2000021", "video_name": "081c923c-5de2-543f-bb0d-a6db899569b4", "text": "A mermaid in the sea swimming with sharks in the light of the super realistic moon "} +{"id": "2000022", "video_name": "57a0f9d3-4d9c-5027-b7f7-8c8d6eeef8bc", "text": "looking out window of bullet train outside Riviera ocean passes by "} +{"id": "2000023", "video_name": "667e579a-3964-5d48-b059-39767ed10a00", "text": "A little boy and a little girl walking in the snow with a blue dog next to them. pixar 4k ultra detailed 3D model "} +{"id": "2000024", "video_name": "b3f1fe50-f76e-5f0a-8687-7f7e66623a58", "text": "Rainy days, cranes, digging ponds, surrounded by many fish "} +{"id": "2000025", "video_name": "c99f4538-5f3e-5a8c-8ae4-335567ae7eaa", "text": "calm candles on a plate static camera "} +{"id": "2000026", "video_name": "57be72df-aaec-53d3-88dd-ab48131e9711", "text": "A teacher teaching programming in college "} +{"id": "2000027", "video_name": "be8669e6-a033-5baf-b1fd-b7fdf7eaab4a", "text": "happy Jackie chan selling ice cream. "} +{"id": "2000028", "video_name": "39de80f0-17bf-598c-a7a9-ccd4f2895735", "text": "Courtroom. Judge at the bench, a witness on the stand, and a human translator. Witness is gesticulating. "} +{"id": "2000029", "video_name": "81d13a79-576e-5f25-a3f1-c79c59473b2e", "text": "in village lived a brave young girl named Kiran. animated remove, error, broken, artifacts, duplicate, blurry, blurry haze, double body, outoffocus, depthoffield "} +{"id": "2000030", "video_name": "e53ee8f9-31da-5ba5-b5de-1540e2711c52", "text": "A picture of a middleastern man with nice physique, beard and serious personality "} +{"id": "2000031", "video_name": "c1cbc5ad-a5dd-5c78-b665-591b56394567", "text": "tropical hurricane blows ocean, trees and birds "} +{"id": "2000032", "video_name": "34f00518-cf3e-5f77-8fbc-19aa88a8d5c1", "text": "Mashinary claning by the Cat in the Hat Message: 1 Attachment "} +{"id": "2000033", "video_name": "3c444fa2-e415-56b5-85e9-b775cc5eed3e", "text": "In the shroud of darkness, only illuminated by torches held by 20 figures dressed in flowing black robes, the faces of the participants remained concealed behind matching masks. "} +{"id": "2000034", "video_name": "13fd2f53-9559-5817-b1bd-abb7dbca160d", "text": "brightly coloured ink splashing into water and oil, close up with bubbles "} +{"id": "2000035", "video_name": "e8f80192-0355-524e-81c0-0ae45e5961bd", "text": "The protagonist: A boy cycling in a beautiful road landscapes in backgounrd and birds flying in the sky "} +{"id": "2000036", "video_name": "c8bf1045-deb9-5627-9ea7-f71ed51c1f95", "text": "The bunny and squirrel discovering a magical seed. "} +{"id": "2000037", "video_name": "e46ffeac-bedf-5db2-9a16-a647d9fc27c4", "text": "City Lights Message: TEAM JR (Font: MODERN) "} +{"id": "2000038", "video_name": "9869675e-67ac-5421-99c9-10db8b331c8e", "text": "a melon cut into cubes in a bowl sitting on the table "} +{"id": "2000039", "video_name": "74076e5f-abd9-5a42-a4cd-cf24a3c7706d", "text": "a kermit jabba the hutt has a picnic with a panda, 8k, motion 4 "} +{"id": "2000040", "video_name": "92381622-87b2-58cf-9409-b96d3628d853", "text": "An Asian man enjoys the scenery of Antigua barbuda "} +{"id": "2000041", "video_name": "ce7a4cfa-c182-5226-91f5-511557859750", "text": "A cute alien baby spaceman 3d render being blasted into space "} +{"id": "2000042", "video_name": "28f744bb-853e-5ca3-8566-ac6f2ac7fd4d", "text": "Inside a dumpling hides a ring "} +{"id": "2000043", "video_name": "8734af9b-279f-56b1-b068-02b96dcde667", "text": "The seed felt safe in its soft and comfortable space. Every day it basked in the sunshine and hydrated with dewdrops, 32k resolution, sharp "} +{"id": "2000044", "video_name": "420c66dc-06fd-593c-9ed8-79fa1766e4a5", "text": "A walking mechanical Giant in emerging from the Pacific Ocean "} +{"id": "2000045", "video_name": "50b6ecf0-e930-57de-8446-b5d79a441834", "text": "create an angel speaking with great detail in the mouth articulation, with lots of backlighting rich in details, 8k cinematic style "} +{"id": "2000046", "video_name": "ba972413-1ceb-56d2-b41c-dfe43c4fe390", "text": "time and tide wait for no man "} +{"id": "2000047", "video_name": "b0b2c447-8c5a-5420-b975-0ecdad215eb1", "text": "The robot with the red heart gets up from his knees "} +{"id": "2000048", "video_name": "27e7abc7-5ea5-5afb-b51e-d6ff6040e966", "text": "kids rhyme As your bright and tiny spark\nLights the traveler in the dark,\nThough I know not what you are,\nTwinkle, twinkle, little star. "} +{"id": "2000049", "video_name": "47a392e9-d833-58e3-ba70-c8cc00767889", "text": "A kitten jumps up to catch a butterfly "} +{"id": "2000050", "video_name": "36e0b285-26f6-5eea-bc89-a4b905b40d1e", "text": "a cartoon kid dangcing in the rain, pixal style, colorful background, animation "} +{"id": "2000051", "video_name": "90553324-3fb9-5c20-952e-f7122a8679aa", "text": "team of 6 mythical knights walking side by side through a forest "} +{"id": "2000052", "video_name": "86db6a9d-2baa-570d-a83e-f94932ad86ba", "text": "round dance of dancing ghosts in the foggy forest on a moonlit night "} +{"id": "2000053", "video_name": "6cc0208f-639d-540f-af0c-fcab9292b13e", "text": "advertise video of sale stretch ceilings and lightenings "} +{"id": "2000054", "video_name": "48e3fb1e-2752-537f-b8ab-50c063a245f6", "text": "wolf snaps at the camera in a dimly lit forest, closeup "} +{"id": "2000055", "video_name": "c44e6ecc-f481-51bd-ad50-8e7cd3e4f498", "text": "shrek drinking grimace shakes, he is very happy "} +{"id": "2000056", "video_name": "74a7f333-238e-54b8-8db3-79f96cb0a943", "text": "jiujitsu fighters training in a dojo "} +{"id": "2000057", "video_name": "3e7c12e7-85c1-5bdc-a666-ef0c41c131c4", "text": "Arhan a little boyand his friends bidding farewell to the viewers, the setting sun casting a warm glow on the village, as they pledge more exciting adventures in the days to come. "} +{"id": "2000058", "video_name": "568d8757-8345-5043-b8ec-7c890f46b167", "text": "creative Indian map at time of Mughal empire showing all the state names and geographical features "} +{"id": "2000059", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "A beautiful girl in a jacket rides a motorcycle on a busy urban street in cyber style "} +{"id": "2000060", "video_name": "3541a8e5-d751-5cec-82a6-673c88b3c239", "text": "Opening Scene with Visuals of Ancient RomeSRomeS "} +{"id": "2000061", "video_name": "9e6637b4-e75f-541f-be21-cbbb51a70bb5", "text": "close up of man with brief case shouting "} +{"id": "2000062", "video_name": "bde60c1b-7106-5ac1-bae6-72f2da60e802", "text": "logo of a plane with Ai things minimalistic "} +{"id": "2000063", "video_name": "8deee133-bc3b-5c33-b9d8-87321fcc0927", "text": "clapping animated hands, green background 16:9 "} +{"id": "2000064", "video_name": "e3937d2f-bbe3-55bb-80eb-60ad23f9ed78", "text": "a timelapse of the Los Angeles skyline from present to future to eventually being an abandoned city. "} +{"id": "2000065", "video_name": "a825481a-7e8d-5f82-9b73-13b24cc76c50", "text": "freedom toons ben shapiro thanksgiving in real life "} +{"id": "2000066", "video_name": "28492c7d-d49b-502c-8157-4ba00755162c", "text": "A clean and clear river flowing through the village, with ducks swimming happily, thanks to the improved environment. 16:9 image 3d clear view eyecathing "} +{"id": "2000067", "video_name": "42a28d7b-d500-5a1d-8fa5-86d12025682a", "text": "turkey running in a dark forest, cinematic "} +{"id": "2000068", "video_name": "d29a01c6-a1f9-5c2d-9397-7c933f832d33", "text": "a beautiful woman, with a white shirt written Nikken Internacional, in a relaxing environment lasting 30 seconds "} +{"id": "2000069", "video_name": "6cbb4ce5-7bb2-55ea-809b-43f281a96e21", "text": "man is wearing pretty clothes and fishing "} +{"id": "2000070", "video_name": "12f41177-9931-5f51-9434-8c42115b7bc9", "text": "The \u201cmesaharati\u201d sets out before the time for suhoor. He sometimes wears traditional clothing that reflects Moroccan heritage, such as the robe, hat, or red Moroccan fez, and travels through the streets of the city to wake people up to eat the suhoor meal before the dawn call to prayer "} +{"id": "2000071", "video_name": "cb689c5f-2538-5dce-a0b4-011094dc49ed", "text": "mercedes benz w202 in the future "} +{"id": "2000072", "video_name": "c4707adf-7e74-5121-ab4e-ce1dca83cab0", "text": "one woman and one man kissing on the Sunset "} +{"id": "2000073", "video_name": "193a8863-1ca2-5f49-8c8a-a2df2daf6e75", "text": "aerial view of the entire planet "} +{"id": "2000074", "video_name": "95fea073-a413-555c-8ecd-515c474c1857", "text": ": a boy and girl shouting in front of camera with fast lips movement "} +{"id": "2000075", "video_name": "79f42b98-b593-52c3-9714-3432b9bd6198", "text": "deep space, 3 planets orbiting small purple glowing with bright flame star, super detail, 8k, colorfull, dark background, bright planet "} +{"id": "2000076", "video_name": "ba53753d-8b51-5651-bf8a-0822f7abb7bd", "text": "wabanaki standing overview of foggy river "} +{"id": "2000077", "video_name": "3232a7af-259e-5bef-a97c-5714c2c62187", "text": "A warrior disappeared in the explosion of the planet. "} +{"id": "2000078", "video_name": "39e09d5a-0e60-5c63-acca-80e98a6e5ac9", "text": "Football Frenzy: Top Plays and Skills Message: new (Font: MODERN) "} +{"id": "2000079", "video_name": "e53e52dd-eda5-57b1-94d0-413281fbe71d", "text": "Imagine an ancient cityscape of Nineveh, a bustling metropolis in the heart of Mesopotamia. Picture: Towering mudbrick walls surrounding the city, adorned with intricate carvings and reliefs depicting daily life. The majestic gates of Nineveh, guarded by statues of mythical creatures like lamassu, with their protective gaze over the entrance. Narrow, winding streets filled with market stalls, showcasing vibrant textiles, spices, and exotic goods. "} +{"id": "2000080", "video_name": "e9a682e2-9901-5656-a71c-1095ceab73ed", "text": "a third person battle royale gameplay trailer "} +{"id": "2000081", "video_name": "0e450314-11c1-5e9e-bf7b-71dbf6591fce", "text": "Children dressed in clothes in the colors of the Polish flag "} +{"id": "2000082", "video_name": "77f90246-58d8-50a7-ba3f-cbe30be5e4c8", "text": "A vibrant illustration of a student diligently studying, surrounded by a rainbow of books, notes, and other learning resources, cartoon "} +{"id": "2000083", "video_name": "61f4d3aa-f523-50e4-a392-5dd889ce3039", "text": "cinematic, a handwritten note blowing across the floor "} +{"id": "2000084", "video_name": "150710c1-6c7a-59ef-a909-110fa05031f7", "text": "a single old house far from a village "} +{"id": "2000085", "video_name": "1acbb4a5-c129-5d1c-b401-d0bf92c00f12", "text": "An image of Emily standing alone on the balcony of her mansion, staring at the city lights. "} +{"id": "2000086", "video_name": "2d541ce0-d488-5c4a-8184-defc380ab5e6", "text": "create a video of a adog "} +{"id": "2000087", "video_name": "9f230619-676b-5cfe-bbfe-8f1e9b8fe821", "text": "Something like a shadow passed ahead of him, but he could not see what it was. "} +{"id": "2000088", "video_name": "c0555fb4-bd0b-5235-9f19-3eb18edbed1e", "text": "god of destruction walking ,anime style ,4k,HD quality "} +{"id": "2000089", "video_name": "651b2e8b-ec7e-573e-ae70-c0b46254cbde", "text": "a wookie training with two purple lightsaber. Purple cristal cave background "} +{"id": "2000090", "video_name": "ee68bfd2-c310-5c70-a6be-f0cd0196d92b", "text": "Scenes of breathtaking landscapes and serene natural settings "} +{"id": "2000091", "video_name": "39f17a71-63e9-5e7e-837f-24eb737fcaf8", "text": "The Cat and the Smurf Together "} +{"id": "2000092", "video_name": "f415bb1c-010c-563f-ae6b-829751504b35", "text": "highly detailed blackhole outerspace glass orbs flying camera moving quickly "} +{"id": "2000093", "video_name": "94979ccc-b621-5878-8ab8-ddfcac357ddf", "text": "Handsome young man sitting lonely in the gym Exercise alone People come in and ask about the backpack he always uses. "} +{"id": "2000094", "video_name": "057ac9fa-c69b-5fa2-bb65-ef35ca52ecad", "text": "great catastrophe of the ancient cities of ma\u2019habre 1890s eerie black and white blur footage documentary "} +{"id": "2000095", "video_name": "3c59af2e-0d81-5c84-8bcb-670ceafd820d", "text": "men from cairo has 28 years old "} +{"id": "2000096", "video_name": "eb63c7cb-1681-5637-afc9-a54efb54be7e", "text": "Mr Mr. Bean is in a Shanghai Teahouse with Snow White, each with a coke, sitting at a mahjong table and playing the piano "} +{"id": "2000097", "video_name": "ee4166b5-bad0-56f3-94b9-081b42c0b905", "text": "an man working as DevOps doing his work, money, 4K "} +{"id": "2000098", "video_name": "e4051a58-01a6-5fbd-9b5a-7313506a5364", "text": "pepe sailing on a boat, sea is moving, clouds are moving, sails are moving, pepe is smiling "} +{"id": "2000099", "video_name": "9c3d8c0e-223a-5f69-bbeb-2196433c210e", "text": "an animated Timelapse closeup selfie of a creepy biomechanic creatures face transforming into a symmetrical being, full transition between two faces, in the artistic style of H.R. Giger "} +{"id": "2000100", "video_name": "ee69cdaa-e0a9-5eea-94b8-61b1523301f4", "text": "a men modelling a mint color suit, white shirt under the jacket. hotel lobby surrounding. "} +{"id": "2000101", "video_name": "838376e7-b58d-5653-bfc1-1ca067311ddb", "text": "a man walks the gloomy streets of st. Petersburg "} +{"id": "2000102", "video_name": "6acca0cb-2acf-541d-a76d-adfdbb901ee4", "text": "A person typing on a laptop in a busy cafe, immersed in work amidst the noise, showcasing unwavering focus and commitment, with diffused lighting "} +{"id": "2000103", "video_name": "f0f86b64-076b-5039-b59b-81179915175b", "text": "A colorful and inviting title card with the video title. "} +{"id": "2000104", "video_name": "8ef42622-762c-5f5b-99e7-b55fa458973a", "text": "Will you be my Valentine Miss Chand. I love you. Backgrond as Bahrain "} +{"id": "2000105", "video_name": "f0f3a41c-22b2-54b6-ac43-243ecee10e73", "text": "Create an image depicting a peaceful small town with a young man named Rizky, renowned for his kindness and dedication to helping others. "} +{"id": "2000106", "video_name": "4775263d-4543-5035-8441-332e2de4c534", "text": "a man looking at rain in a window with a lightning storm "} +{"id": "2000107", "video_name": "53813806-fce6-5fe4-b0d7-8a125772092a", "text": "pharao from movie stargate retractable mask "} +{"id": "2000108", "video_name": "5677cd5d-be42-5691-95a0-b79e94af3884", "text": "love story for l Girl Fully Comely fa "} +{"id": "2000109", "video_name": "da41c97a-9161-5c32-9e24-61dffb0a1a82", "text": "Girl dancing in a park, photorealistic "} +{"id": "2000110", "video_name": "456b5975-a68f-5c30-9d49-48eef33ebc06", "text": "I want a distinctive Islamic background that talks about contemporary events of the Messenger of God, may God bless him and grant him peace, that highlight the greatness and beauty of Islam\nI want the background without any logo "} +{"id": "2000111", "video_name": "e08bc974-5786-5405-9a27-0e35eec1d068", "text": "Dog and Cat playing for 1 minute straight "} +{"id": "2000112", "video_name": "f0ffdcda-1205-5247-9a62-9f2047478ce6", "text": "a cinematic shot of Iron Man in the rain.animate,cartoon,neutral color palette,magical,2D,cinematic "} +{"id": "2000113", "video_name": "0f116422-b4a2-5e0b-ae37-132e7fa16a0b", "text": "A desolate town shrouded in fog, with Dazart Elementary standing in the distance Message: 1 Attachment "} +{"id": "2000114", "video_name": "f6e7767c-92c9-545f-bea4-294d9a401e71", "text": "old punjabi couple walking on the road, punjab, 8k, highly detail "} +{"id": "2000115", "video_name": "83af00fb-61cd-528f-9582-a0e0ca5d4571", "text": "A castle in the forest where there is a river and flowers "} +{"id": "2000116", "video_name": "32957335-e302-523d-8566-86befcdeb6dd", "text": "A man on Mars and he had founded water on it and he is very exited and he has also founded many diamomds "} +{"id": "2000117", "video_name": "f7d691ed-0a8c-56a2-8afd-35db8e37892a", "text": "a plea for forgiveness and release by a girl around age of 20 years old "} +{"id": "2000118", "video_name": "5fb5dcef-480d-5ba7-9aef-da9a996d2919", "text": "husband forgot wedding memory day\u2019s gift,wife is angry. "} +{"id": "2000119", "video_name": "576a5445-deb7-5d19-8bac-b6d821d6fd60", "text": "Stop motion animation Girls having a conversation on the summer beach "} +{"id": "2000120", "video_name": "79f61b36-10eb-5365-bd98-9df5bf7b4d8c", "text": "nice woman squizing half fresh lemon in the sunny kitchen "} +{"id": "2000121", "video_name": "0fe6cd07-6f0e-5ace-9a1a-b4b89adbe635", "text": "a fox and a bird enjoying sunset "} +{"id": "2000122", "video_name": "dc44fa45-5dae-5124-8d0e-efd420904035", "text": "a dreamy view, a cabin on the vast plain valley, in front of the cabin there is a big maple tree. It is autumn, leaves are swing in the wind "} +{"id": "2000123", "video_name": "86a657b4-1346-566d-9266-40a32ef044db", "text": "The video begins with a slow shot of a closed door that slowly opens. The camera slowly moves forward and a table with a computer and technical equipment appears inside the room. On the table is a small robot without a face. "} +{"id": "2000124", "video_name": "85bde216-e73a-5dd7-9c0c-7185f2da4cd8", "text": "The planet turned between the sunlight and the great dark; winds of winter and summer blew fine, pale pollen across the quiet seas. "} +{"id": "2000125", "video_name": "fe7fc63f-32c4-557f-978a-5a4b79510b38", "text": "realistic photo of Janet Yellen using Rembrandt lighting "} +{"id": "2000126", "video_name": "db0a4f53-b11f-5f4c-9994-f4086e16746f", "text": "make hair move slight and not the face "} +{"id": "2000127", "video_name": "a2e8a6b2-699f-57ac-9d48-c0c2afd28740", "text": "soft taking face , ultra quality, realistic face movements "} +{"id": "2000128", "video_name": "0fdc8080-8bf3-59aa-8827-c0057384f7b9", "text": "The moment a bird flaps its wings from the lake "} +{"id": "2000129", "video_name": "2b690448-a925-5017-b022-e6693dec9a75", "text": "Create sketch note, where a person is walking "} +{"id": "2000130", "video_name": "3583564a-3375-532a-b961-780d7faef69b", "text": "3 yellow circles on the ctntre is moving "} +{"id": "2000131", "video_name": "9dced0ff-4102-57a5-aa62-73b0c3fbdd8d", "text": "female wearing leggings, walking away, beautiful eyes, hair, thick lips, thin waist, 3d render, photorealistic, detail, lighting, vibrant, life, "} +{"id": "2000132", "video_name": "4b154489-d9c1-55dd-99e5-6d6c7d97b25c", "text": "In a stunning display of virtuosity, reimagine the timeless masterpiece as the enigmatic Mona Lisa takes a mesmerizing stroll through a bustling Italian piazza, captured with unparalleled realism and intricate detail. "} +{"id": "2000133", "video_name": "7ebc496e-b74d-5c9f-9501-6801ed535fd2", "text": "Anime style Batman , cape flapping in the wind , Raining "} +{"id": "2000134", "video_name": "fc4bfbdb-e6d2-5f38-b989-00c40d76be1d", "text": "A pink teddy bear, move his ears and blink an eye "} +{"id": "2000135", "video_name": "ecc5d552-f8dd-59d0-a1b1-aa2d69a5bd9d", "text": "tatsumaki watching at camera, soft core "} +{"id": "2000136", "video_name": "c00d0456-5f0c-5602-bf41-de5b9776edbb", "text": "beautiful Ukrainian girl with a wreath on her head, throws a rose out of her hand "} +{"id": "2000137", "video_name": "5b508da2-7a5a-5531-817b-4a3194f39fae", "text": "In a sleepy village, time stood still. "} +{"id": "2000138", "video_name": "e32a954e-b720-5817-8c12-b4ff449fbf5b", "text": "Once upon a time in the bustling heart of a sprawling city, there lived a young boy named Liam. Liam was just a child when he found himself without a home or family to call his own. He was a victim of unfortunate circumstances, having lost his parents in a tragic accident that left him orphaned and alone. With no one to care for him, he was forced to fend for himself on the harsh streets of the city. "} +{"id": "2000139", "video_name": "4e4a5f3e-a6e6-5da0-8a9d-118759663c2d", "text": "Leave anonymous notes of encouragement: Write uplifting messages on sticky notes and place them in public places like restrooms, bus stops, or library books. Encourage others to spread positivity as well. "} +{"id": "2000140", "video_name": "e6397094-23ea-5afe-9e02-9b2ea75e7766", "text": "neurons and cells have energy. fiery light in airplane batteries "} +{"id": "2000141", "video_name": "542a392a-41e9-5012-94c8-7455435a3dc9", "text": "moving image, face close up of a medieval man is searching for his wife in a medieval house "} +{"id": "2000142", "video_name": "06b612af-80a9-541f-ac97-d9eb78a94824", "text": "a wooden house in a forest during storm, a meteor falls and smashes the top, medium shot "} +{"id": "2000143", "video_name": "4017521f-d7eb-5bfd-9b71-9edc103af4c0", "text": "A Bedouin man talks to a group of Bedouin people in front of their tents in the desert at noon "} +{"id": "2000144", "video_name": "60454eb8-7185-5464-88f5-cb076f33b525", "text": "man creates fire for the first time, cave man, realistic "} +{"id": "2000145", "video_name": "8d50639a-bf06-5333-be7f-eb76b1638523", "text": "A front view of the silhouette of an elephant walking, anime style "} +{"id": "2000146", "video_name": "104a4b1a-28d3-524d-9598-a22342347125", "text": "man standing in front of a quantum computer typing furiously at keyboard as the computer glows brighter "} +{"id": "2000147", "video_name": "dd7af5e0-1e0c-5a79-9157-e8d1b9ec7558", "text": "a robot named alfie is waving to us "} +{"id": "2000148", "video_name": "f04d8c70-9392-53b3-94a2-ed91342fbf08", "text": "Create a png file of world map "} +{"id": "2000149", "video_name": "1371cea5-48d0-573c-b68e-103136ae15fc", "text": "Mahela Jayawardene in Sri Lankan cricket dress taking a catch as the ball falls from the sky "} +{"id": "2000150", "video_name": "648ff924-3e35-596c-b160-7cbc184463c6", "text": "sonic is slowly becoming to the sonic.exe "} +{"id": "2000151", "video_name": "ea5203e8-5e3f-5b07-940a-b73866fada8b", "text": "watching sky at night with stars above in motion "} +{"id": "2000152", "video_name": "54ce79a3-8cfd-5b11-8876-a310261dba7d", "text": "The sun exploding, thus creating the earth "} +{"id": "2000153", "video_name": "bd43cf26-d921-584b-ae01-204e6de33d3f", "text": "a country appears in China, with innovation, and in Greece, democracy, you will find inspiration in the wisdom of the ancients. .anime type "} +{"id": "2000154", "video_name": "3941f03c-1be6-5158-8a7d-04ab1529f312", "text": "monster vhs 70s full body house dead body on tjhe floor "} +{"id": "2000155", "video_name": "c86e0276-5738-5f12-9fd8-c686dfc38923", "text": "a big cathodic screen in the middle of a desert, green moss, on grey pinkish sand, dust and rocks, blue sky, bright white sun, eerie shapes, dynamic, a punk guy passing by a huge round mirror "} +{"id": "2000156", "video_name": "878c88b5-1494-50ea-a837-69eb0d46a4ad", "text": "The guy during the growth of everything, in what is under the shower. Water dripping from clothes, Shower door in the background. 8K "} +{"id": "2000157", "video_name": "bf125ceb-35c1-5712-b00d-eff2cb108f34", "text": "car engine, moving inside, piston, crankshaft, gears, gasoline gets into the engine, fire occurs 4K "} +{"id": "2000158", "video_name": "75b514e3-cf71-5c26-b316-32f3cb6c0e70", "text": "city hall in new york on a rainy day on the outside "} +{"id": "2000159", "video_name": "813b68ae-f43c-5f56-9966-5f82feefee0e", "text": "Asta from black clover and Ichigo Kurosaki from Bleach fitting "} +{"id": "2000160", "video_name": "d8964212-f7c2-5e11-b516-d9862940fd1b", "text": "A hand letting go of a red balloon "} +{"id": "2000161", "video_name": "46d5771c-b7ba-5931-9125-bd7bdbb8b2bd", "text": "a bulldog dribbling basketball in a purple jursey of lakers on mars. "} +{"id": "2000162", "video_name": "4087a0de-b47d-5307-84a8-6c593c295b10", "text": "ww2 fighter planes flying over a bombed out city, old style film "} +{"id": "2000163", "video_name": "b335a188-870b-502e-bcaa-ad42b466c03b", "text": "A strong robot man ready for war "} +{"id": "2000164", "video_name": "666a70d7-d4ab-5ca5-a3d4-2f792f242cac", "text": "man becomes God: make the figure appear younger: the images are shining bright like starlight: a figure floats into the light "} +{"id": "2000165", "video_name": "0f3c96b4-d329-5275-94d6-cd608b60ef59", "text": "Show a majestic 3D animation of a blue whale swimming gracefully in the ocean "} +{"id": "2000166", "video_name": "c1168715-3af2-590b-8d1c-7b97d73f92ae", "text": "First person perspective, the end of the world, meteorites hitting the earth "} +{"id": "2000167", "video_name": "ccfda29e-5c5b-518f-a188-600b2fe9a0c0", "text": "A cute girl with cat ears and tail facing a dilemma when she finds out that the boy she likes is actually a spy for the other side of the magic users who want to steal the pendant from her , feeling betrayed and heartbroken. "} +{"id": "2000168", "video_name": "280b048a-7366-54d7-9616-2e643c2daab2", "text": "A British police officer, British police uniform, standing outside a pizza shop, night, wet floor, "} +{"id": "2000169", "video_name": "4b5e1ecf-c96f-5e4e-83dc-6a485898f218", "text": "create photo of male anime character with cool looks "} +{"id": "2000170", "video_name": "97b19eb6-ff94-5726-8ee8-38136de0fbf2", "text": "driving ferrari in the mountain tops with a lake vaporwave "} +{"id": "2000171", "video_name": "2cd2deda-c313-5cc5-af28-120c565eaca3", "text": "A lone girl animation walking through an enchanted psychadelic colorful forest "} +{"id": "2000172", "video_name": "30cc8325-7d4a-5069-94e4-087f36f238b7", "text": "Spaceship making an orbital soldier drop, cinematic, surveillance camera format "} +{"id": "2000173", "video_name": "57dea282-53bb-5068-a6bc-062bf1a1e1e0", "text": "Baron Samdei with a Capricorn in the background with Archangel Cassiel "} +{"id": "2000174", "video_name": "03d03531-8263-55b4-807c-74b047263548", "text": "sound meter going up and down "} +{"id": "2000175", "video_name": "413eb0cc-fa9b-5602-bbdc-3967d642e5d5", "text": "raymon running through ice world, battling the giant jazz saxophone boss "} +{"id": "2000176", "video_name": "01dc3542-73f1-588f-a0e4-a8d4738c7c9c", "text": "a video like a view from the camera going into the deep ocean, you can see bubbles of air on the side "} +{"id": "2000177", "video_name": "22377479-497a-5cde-b840-5093e31b0626", "text": "A traditional Japanese tea ceremony in a serene garden. "} +{"id": "2000178", "video_name": "d2fc412e-cca5-5278-a670-232f1f4a6292", "text": "large abandoned living room, full windows, grass on the ground Message: . (Font: MODERN) "} +{"id": "2000179", "video_name": "f215df52-a68c-5b9e-bf6f-94d22c33fba4", "text": "Produce a short animated video that starts with Orion gazing at the stars and transitions to his learning of a news of a satellite lauch that inspires him to venture to the space. "} +{"id": "2000180", "video_name": "4adea494-c88e-5cd8-b318-d177f8139af3", "text": "These layers are said to be located 70,000 yojanas away "} +{"id": "2000181", "video_name": "4213576d-6399-5a46-bc15-4fd6535cd452", "text": "A man falling from a mountain in winter "} +{"id": "2000182", "video_name": "f058b59b-c694-5b05-98b3-f6e9eee939a3", "text": "Once the sound echoed in the air Forest in 3d animation style in 4k Resolution "} +{"id": "2000183", "video_name": "5e759679-05e0-57cd-bf4f-3d0d64ac6e8c", "text": "Crow eating bread in garden, hen asa video, in 3D animation "} +{"id": "2000184", "video_name": "50875b5e-44ab-538e-8459-5593a5af3968", "text": "a famous YouTubers streaming set up. Full of all the neon lights and expensive equipment. Message: live Now (Font: MODERN) "} +{"id": "2000185", "video_name": "0ec83946-c271-5310-be9c-ebae7960c1cf", "text": "a watercolor painting of a shiba inu dog howling at the moon, cinematic "} +{"id": "2000186", "video_name": "1cf6e4f8-21a5-56dd-9d1f-fc88a8384816", "text": "Realistic video of a family eating on a table "} +{"id": "2000187", "video_name": "89c69a84-986d-566d-8113-90e89dbcc64f", "text": "a golden retriever puppy walking for the first time "} +{"id": "2000188", "video_name": "d9b7bfbd-4020-55bf-b6eb-344f4662cdeb", "text": "rich details, high quality,The snow on the snowy mountain was blown up by the wind ,Medium Close Up,ar 3:5 "} +{"id": "2000189", "video_name": "f942a02d-ee96-5524-856d-06c5dda6f74b", "text": "Florida beach scene with the water tide moving in and out "} +{"id": "2000190", "video_name": "c7c4b97c-8027-5bf7-bde2-79ba56a4586b", "text": "Hermione granger lookalike Looking directly at the camera while moving around "} +{"id": "2000191", "video_name": "0595583b-0123-5c31-be5f-2d7aec1ca4e1", "text": "dense bubbles, Wide Angle slowly close "} +{"id": "2000192", "video_name": "661b204f-0201-559a-acd3-0cafe882bae2", "text": "the birth of Venus in the rays of the sun on the sea horizon "} +{"id": "2000193", "video_name": "607802ab-d96b-5c1b-82c1-f2ff5f7421e1", "text": "Pixar movie of a cartoon animated teen boy, skinny model, smiling for picture "} +{"id": "2000194", "video_name": "9e52f2a0-6b0d-5d9c-9c97-c6232edc7348", "text": "Scenes of Minnow standing next to the sunken treasure, 3d animation, 3d, realistic, 8K, "} +{"id": "2000195", "video_name": "9b090912-1c4c-519a-99c6-08e4d4e892de", "text": "rweflection of a street in eye of a woman in eye of a cyber punk ,camera zoom into eye neuro system,pupil spread and shrink, camera zoom in "} +{"id": "2000196", "video_name": "0c3fa079-e0db-501e-93b6-2383b92f2fc4", "text": "roulette rolling, cash money fly in the air,zoom in "} +{"id": "2000197", "video_name": "30cd6b98-2e94-5169-884b-db2820242f0d", "text": "a female student looking to the class "} +{"id": "2000198", "video_name": "87843912-3793-53f2-b47a-0355fb8834cf", "text": "In the big forest there was a little girl elf and a little boy hunter "} +{"id": "2000199", "video_name": "595cc790-0fd6-5009-b9ad-3de2d0478810", "text": "highly detailed, photo realistic, animals lined up in the forest Message: NuEdg (Font: MODERN) "} +{"id": "2000200", "video_name": "840268db-4bbe-5f58-ae43-164d9acd89c9", "text": "following zebra in the savannah, zoom in, hd, 4k "} +{"id": "2000201", "video_name": "1144455a-1e7a-5bec-8cbd-7e55cf624ea1", "text": "closeup television news reporter talking on television , 4k ultra detailed realistic cinematic front shot , american shot "} +{"id": "2000202", "video_name": "122a5519-6349-5c9d-aa86-330cefdf0bb2", "text": "A cute little bear went up to a little flower and greeted him, hoping to make friends with him "} +{"id": "2000203", "video_name": "04dafc16-4fd4-5b70-9f00-24d976b8907e", "text": "astral body projection nigth, brigth galaxy, shot, centered, photo realistic, John William Waterhouse and Wadim Kashin art, high resolution, UHD, trending on Artstation "} +{"id": "2000204", "video_name": "bba85f68-2a45-5174-9e6b-a605d3ffbfd1", "text": "beautiful blonde female track and field runner running along the track "} +{"id": "2000205", "video_name": "b0caac52-d429-5284-8eaa-6c28abec0f58", "text": "The sunflower with its head down "} +{"id": "2000206", "video_name": "96b145dd-1832-564b-94c8-41ae0e8b9e49", "text": "a realistic winter landscape with animals that move. Video needs to be 5 seconds long "} +{"id": "2000207", "video_name": "c4abf100-ab80-52af-bcef-d9660e21074a", "text": "a woman touching a man with her hand, Soviet cosmonauts inside a lonely ship in space, in the style of 35mm documentary, horror film 1960s, 4k, horror film 1960s, 4k "} +{"id": "2000208", "video_name": "822d1e1a-09f5-59fa-9e60-e631b46ac0c6", "text": "a spotlight moving fast and flaring "} +{"id": "2000209", "video_name": "aad21ce2-d801-5c2f-8ac3-d298a7ed1b82", "text": "angel girl with white wings flies in the background sky with clouds "} +{"id": "2000210", "video_name": "92a960d0-076b-5662-9381-8290f9e59dfb", "text": "avalanche of tea leaves and popcorn, 4k, hd, high motion "} +{"id": "2000211", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "countless dolphins flying in the sky, swimming in the sea and setting off huge waves, aerial photography "} +{"id": "2000212", "video_name": "2ed1ad33-31a5-5ec3-be27-b4b62febcb70", "text": "let animate the background of the photo "} +{"id": "2000213", "video_name": "425cea90-58f3-502d-99e5-668c27d184a5", "text": "Christmas celebration, people hands up clapping together, 3d animation "} +{"id": "2000214", "video_name": "4510e940-6e1c-5da8-8388-7ace16cbe01d", "text": "colombian city downtown Message: wilcastano (Font: MODERN) "} +{"id": "2000215", "video_name": "acdd55f3-da38-5850-bd9e-97fc18c9ce02", "text": "A colorful hot air balloon festival in full swing. "} +{"id": "2000216", "video_name": "e9ccbcc8-8d22-5869-b5bc-4e5983956f60", "text": "A girl in a business coat stands still, the wind blows her clothes "} +{"id": "2000217", "video_name": "49829c4d-003f-5213-aed0-f58b3de5e4c7", "text": "long shot, cinematic, a bus filled with people with no space to move "} +{"id": "2000218", "video_name": "9b56b96b-abf3-5794-afb8-bfd5b7366c5a", "text": "make a quiz for kids to find apple in multiple objects, make apple glow from the objects "} +{"id": "2000219", "video_name": "7dbb4fae-abaf-587f-95e3-b51971c43962", "text": "hologram robot giving a thumbs up "} +{"id": "2000220", "video_name": "9c64a688-45d5-506f-9f18-b33913328bb6", "text": "mental health story of a fictional adult guy from the USA "} +{"id": "2000221", "video_name": "2f231692-b16e-561f-bd6b-1655c1c13908", "text": "3D grandpaa and grandmaa with children talking "} +{"id": "2000222", "video_name": "f9f94f79-ff5f-51b6-a7fb-59e82e07e8dc", "text": "an interior imgage of a corner of a bed with wood interiors for yourng professional. bokeh effect and part of a nearby chair leg on the side, blured. stunning interior render. "} +{"id": "2000223", "video_name": "10715157-dc3c-5ae0-a35e-dc4b5f00b3ce", "text": "an animated transformation scene of a face changing into a zombie robot shadow, complete a full transition of head and face, in the artistic style of H.R. Giger "} +{"id": "2000224", "video_name": "e5c6f3ed-6a49-5fac-abe3-89fc9b7ae757", "text": "bird view of a modern city "} +{"id": "2000225", "video_name": "f1a6515e-e93e-532d-b174-9329fb769957", "text": "supermarket terror dream surreal nightmare benadryl monster "} +{"id": "2000226", "video_name": "211d88b4-3f6a-514c-87ff-02b06673c238", "text": "6 teenager smoking inside a gaming room with a cozy vibe in winter "} +{"id": "2000227", "video_name": "33c386d9-b82d-5d64-9a78-c9aeec4c502a", "text": "Young man in a home music recording studio, wearing a red hoodie, bobbing his head, wearing headphones, in style of Makoto Shinkai "} +{"id": "2000228", "video_name": "7573c752-cc05-5045-93db-7504174ed1f1", "text": "sweety cat sleeping by the lift fireplace "} +{"id": "2000229", "video_name": "db3600d4-1af1-5dad-b3f9-65f0f2cfc3c2", "text": "Motion Picture Cinematic where it is Raing Dollars from the Sky "} +{"id": "2000230", "video_name": "3d746f2c-13dd-5056-a9c2-310bf7fd305e", "text": "two planes colinding with each other on runway. "} +{"id": "2000231", "video_name": "afbf7a17-5631-5c70-ab8f-d8054ff85807", "text": "Batman vs Superman fighting in the evening "} +{"id": "2000232", "video_name": "b3f4b775-07dc-5e9c-9751-3452583db680", "text": "butterflies flyin out of the screen of the cell phone, cynematic, black background, 16:9, 32k uhd "} +{"id": "2000233", "video_name": "60b00fe1-fa3b-5d14-8be2-410c7b1c23a0", "text": "Show an image of outer space with a quirky and mysterious vibe "} +{"id": "2000234", "video_name": "e476f3ad-9615-5b9c-81da-090d9bfed601", "text": "Chance and Inspiration The Meeting of Human and AI in Art "} +{"id": "2000235", "video_name": "3543c087-cee4-5357-82e8-7317cf2ea98a", "text": "Thomas Thabane eating a burrito in a dimly lit bar "} +{"id": "2000236", "video_name": "79a4d44b-5f6b-5d26-9059-84b197c21f8f", "text": "back of adult slim rottweiler dog with checkered collar in black and red in the center of the image over the clouds looking at the gates of heaven opening animation style "} +{"id": "2000237", "video_name": "ab860f41-ec62-5bf9-b1e0-6b97fdac6d7a", "text": "shape an egg that hatches into a bird in a nest in a lush green forest like in a fairy tale world "} +{"id": "2000238", "video_name": "09ec4c83-7b79-5ba4-9562-2d88bec005d9", "text": "enchanted forests, magical mountains and sparkling rivers "} +{"id": "2000239", "video_name": "fb46781e-c844-59e4-841e-b49bb4064c3b", "text": "Man with a knife walking scared "} +{"id": "2000240", "video_name": "a7bd38ea-00eb-5fa2-9b8a-3372133903f1", "text": "move your head to the sides, while in morph, the image receives a zoom "} +{"id": "2000241", "video_name": "46305713-e9ce-5d5f-aba8-1d31f60d26be", "text": "a blonde girl on her bike and a boy on a hot wheel motion 2 seed 123 "} +{"id": "2000242", "video_name": "fcc2ca51-7da1-5bb4-8247-704535c48943", "text": "Background city, street, main character, a monkey running, people on the sidewalk, sense of speed, camera moving, following the monkey Message: 1 Attachment "} +{"id": "2000243", "video_name": "a122f8c2-80c5-5800-9a5f-85735bfb1e65", "text": "A sports car pulled up to the mansion "} +{"id": "2000244", "video_name": "8cd76ad7-78fa-5093-85ec-a19b470fd5c4", "text": "sun with mystical face in the sky 1970 movie "} +{"id": "2000245", "video_name": "b2c0944f-ae5c-51f1-82e2-3391988d2ad0", "text": "illustration house in Venus, graphic novel sketch, graphic novel style, 2D effect, flat color, flat color, gloomy painting style "} +{"id": "2000246", "video_name": "23952cfa-d661-5953-a6bd-0f3d5f6c9b2e", "text": "My grandfather\u2019s name is Hu Guohua. The ancestors of the Hu family were famous big landowners from all over the country. During the most glorious period, they bought more than 40 houses connected by three alleys in the city. During this period, there were also some officials and businessmen. He was an assistant who donated grain and trough transportation from the Qing Dynasty. "} +{"id": "2000247", "video_name": "3efb67a5-5bed-59b8-9cad-04dbd0ca2839", "text": "Movie style, realistic light and shadow, snooker billiards player hand holding ball feeling, standing in the middle, backlighting effect, a huge billiard ball slowly falling in the sky, and the sun rising "} +{"id": "2000248", "video_name": "e9530719-7e65-57dd-96f1-ea8a1f831b2b", "text": "beautiful red headed woman descending from the sky to the ground "} +{"id": "2000249", "video_name": "b7d4025c-2489-5e48-bf80-fd0513f04143", "text": "cold winter day over a city skyline "} +{"id": "2000250", "video_name": "4ee6716b-259e-5e96-bbcd-d02284fb9b78", "text": "30 year old Asian hunter who is wearing clothes from early 600s BC in scorching hot weather in desert by himself who is very weak, has food with delicious and healthy meal and fruits of all kinds and water "} +{"id": "2000251", "video_name": "e487b4a1-d27a-599b-b221-0b71d50b1708", "text": "Gears of War Locust vs. Iron Man "} +{"id": "2000252", "video_name": "918476e0-28ff-53ee-8bd4-bbd369fe7a71", "text": "driving a car on the highway modern year "} +{"id": "2000253", "video_name": "93c9f32f-47c6-54aa-8edb-59e1ec71567a", "text": "Create an image portraying the aftermath of infibulation, showcasing the scars and emotional distress left on a freed Greek slave. Use visual elements to convey the resilience and strength of individuals who endured such a challenging aspect of ancient Greek history. "} +{"id": "2000254", "video_name": "811f7f2c-ed1c-5c89-97ae-f20bcb3e6461", "text": "video of a train in India in 1900 approaching "} +{"id": "2000255", "video_name": "feabebc0-faa1-5600-963f-9e5fad888948", "text": "Late at night, the young man talks to the old man sitting in the grave "} +{"id": "2000256", "video_name": "d4ef1c62-fa72-50e7-8af4-8fc3cd8734cc", "text": "an adventurer that looks like John Wick is fighting with bare hands a crocodile in a swamp "} +{"id": "2000257", "video_name": "20dfa9e0-54cc-5891-8317-e4aeacdec205", "text": "single storey residential house in the countryside, three bedroom house with large outdoor deck area, modern design. Show a remote facade, a front view of the house "} +{"id": "2000258", "video_name": "687e7af0-4e1f-533f-8a28-db66c956d65c", "text": "two teddy bears sitting in front of the table and eating cakes,drinking coffe and listning to an old story, of a old lady with a red and orange baseball cap "} +{"id": "2000259", "video_name": "eb2cd68b-11b6-5fb7-8f59-3b432ff1cc76", "text": "female lone wolf dancing in kebab shop, dance, wolf "} +{"id": "2000260", "video_name": "ca22ce59-8412-5566-8c99-d09dfc4c1db8", "text": "Kitten sleeping on a rug wearing a Santa Claus hat, fireplace burning in the background, Christmas tree standing, static, kitten sleeping and moving one ear, focus in the foreground, background blurred. "} +{"id": "2000261", "video_name": "28b4384f-ef2d-5f9d-a1d4-4b3b4bb438f1", "text": "A boy stands in a lush forest, dressed as a hunter, holding a spear. The leaves rustle in the wind, sunlight filtering through the canopy. The faint sound of music playing can be heard in the distance. The boy tilts his head, looking surprised and enthralled. 16:9 "} +{"id": "2000262", "video_name": "feeb9166-dc9f-58ce-9c49-70d815fa040f", "text": "a 16 year old riding a super 73 rx at night with other people on surrons and the kid on the super 73 rx is double riding with a really hot girl "} +{"id": "2000263", "video_name": "4f9f5796-6442-58bd-b437-307d967b6697", "text": "Pour the tea from the teapot into the cup next to it. "} +{"id": "2000264", "video_name": "9d087974-da81-5305-8f6d-0d391676fe19", "text": "a dog in a space suit in space tying to catch a bone "} +{"id": "2000265", "video_name": "b9949fa1-49a2-5073-b3ef-593cf78231d1", "text": "Aerial footage of Icelandic snowy mountains "} +{"id": "2000266", "video_name": "ec63a461-d331-5a6f-8c97-e8cf2d2b515d", "text": "a beautiful painting of women dressed as a ballerina walking down a cobbled street in London "} +{"id": "2000267", "video_name": "612cfbd5-5042-51fd-9b57-04a5a35343e1", "text": "a little bunny playing with a little fox in the woods "} +{"id": "2000268", "video_name": "f20c89d7-adea-53c9-a3ca-1f3193f99ee5", "text": "the venator hovered over the planet where the battle was taking place "} +{"id": "2000269", "video_name": "df6026f3-4829-591b-9f0e-6f65bc7f5535", "text": "of a pixel horror story in video game still in 4 motion image of the pixel man as player.see the werewolf walking towards him looking at him in the horror game . "} +{"id": "2000270", "video_name": "8e12bd08-c239-5d67-8551-b1c51d0a3bc8", "text": "A hamburger with melt cheese inside. The angle of view has to be close to appreciating the meat with smoke. "} +{"id": "2000271", "video_name": "c4fb7d3a-9b98-5bfb-a4f5-1b40fd3f74a3", "text": "Cute half dragon man walking in beautiful dark fairy forest "} +{"id": "2000272", "video_name": "49709c75-d746-5dbe-8a4d-889b5162ea93", "text": "On either side of a stick, there are two white cranes holding it, and the turtle bites in the middle of the stick. The white crane leads the turtle to fly in the blue sky, leaping over the Little Venus Kindergarten "} +{"id": "2000273", "video_name": "97962ccd-9c9f-58cb-9f3b-5d2365d03b22", "text": "castellers holding happy man smiling as crowd grabs him, surreal, contemporary art, cinematic style "} +{"id": "2000274", "video_name": "51d2437f-b178-5b30-b1c4-aaa4cada231e", "text": "My inner child complains to me for leaving his dreams forgotten "} +{"id": "2000275", "video_name": "ee56323e-a9ee-5c8a-8e97-c8e573d19bfa", "text": "running nursery school bus , sitting the children sang a song with joyfully into the bus, "} +{"id": "2000276", "video_name": "9cc955a6-1ccf-5333-9a16-4306898e4454", "text": "Human born on Mars\u2026 does that make them extraterrestrial? "} +{"id": "2000277", "video_name": "aa66f78f-1fc0-5805-86a4-a882bf2b4761", "text": "Ufo floating above a UK street "} +{"id": "2000278", "video_name": "7bb4931a-6541-5b2f-ae47-4b8f542977df", "text": "winter tornado, snow tornado, snowstorm, overcast, cold "} +{"id": "2000279", "video_name": "a71a6b0a-bab6-5713-951a-38042e2047c5", "text": "trippy, colorful background, manga inspired, miyazaki "} +{"id": "2000280", "video_name": "711e743a-d72c-5d37-9219-1088dce36ee2", "text": "30 seconds motivational quotes with nature background. 9:16 ratio "} +{"id": "2000281", "video_name": "a4b7e59e-0453-5ab5-9204-3ad6a13f87c9", "text": "two kids running on grassland on sunny day with the style of oil painting "} +{"id": "2000282", "video_name": "b421c6ef-c2cb-59af-a8bc-f14ecc8266cc", "text": "people talking, laughing and looking at each other,fire flikers "} +{"id": "2000283", "video_name": "8c11642b-132d-5a92-ab98-f5a4b5f76c03", "text": "Musik Video for a band called MANTIKOR. Want to see a Mantikor with broken wings, falling down through clouds. "} +{"id": "2000284", "video_name": "30b4c886-55d7-5bb1-82df-8d5668322925", "text": "A huge glass skyscraper towering into the clouds "} +{"id": "2000285", "video_name": "94eb37ff-c186-5b29-bb31-3328f029a893", "text": "aries zodiac sign, slowly forming, firey red colour, in motion, 16:9 "} +{"id": "2000286", "video_name": "7efd4b0d-0ff6-5a50-b9d6-7b26f15c470c", "text": "4 young people, generating a lot of money for their clothing brand and are celebrating in the center of Milan "} +{"id": "2000287", "video_name": "0a54dfd2-91aa-5c55-b42d-d3e3c76f4cb0", "text": "In a Straight road moterbike moving very fast "} +{"id": "2000288", "video_name": "440c6f11-08fe-5983-bc2c-baef0616a8e5", "text": "Character design, ex machina robot with beautiful human face staring at camera, photorealistic 8k, unsettling, volumetric lighting. DSLR "} +{"id": "2000289", "video_name": "6dadc5ba-98e4-5f16-aa52-9ddc15e84dd5", "text": "hands holding an old paper with a treasure hunt clue on it with a map "} +{"id": "2000290", "video_name": "b2e674e7-ee16-5cd6-9ff0-52292d099313", "text": "BRUCE LEE IN ACTION , photorealistic "} +{"id": "2000291", "video_name": "dd4f3f39-eff8-57e3-a444-0033a72fc560", "text": "Show the seed from a side view as it starts to sprout, with the camera angle changing to emphasize the upward growth of the tiny sprout. "} +{"id": "2000292", "video_name": "dadfcd0e-092e-59b2-9952-d4799bf6f79d", "text": "Many dollars falling from the sky on a poor person in humble clothes "} +{"id": "2000293", "video_name": "199bedaf-9e49-54a7-96d0-5760d614d2bc", "text": "riders wore armor that was fiery red and dark blue and yellow . cinematic,ar 16:9 "} +{"id": "2000294", "video_name": "9e62b648-f9ed-57ac-b29f-52d829d3c4e4", "text": "robot scientist making beer on computer "} +{"id": "2000295", "video_name": "e57ddb7b-b637-5286-b200-3c730ebd2a43", "text": "An alien standing in Times Square. Dynamic shot8k UHD resolution with remarkable color depth. Capture with Nikon D850 camera, the image is taken at a 2x zoom, providing a wide perspective "} +{"id": "2000296", "video_name": "294d1d3f-b37c-56d8-bfc4-1c3fcbc1f1b6", "text": "a cinematic animated, in the Moonlight, The wise old owl perched atop a branch, its feathers ruffled by the wind "} +{"id": "2000297", "video_name": "861a468b-154e-51eb-9d6b-d2445c39168c", "text": "honey in a jar with bees , basically it is fro social meda poster to sell honey "} +{"id": "2000298", "video_name": "fa0f1152-e0d7-553b-bdfc-fd48ad5619c3", "text": "robot hand doing technological advancement to AI chip and then chip targeting applications open to reveal the date "} +{"id": "2000299", "video_name": "67a0cde4-381c-5ca6-8f7f-4b516ae15ef5", "text": "a lake between mountains and clouds, camera zoom out Message: UCAB (Font: MODERN) "} +{"id": "2000300", "video_name": "a5bc9d5d-531d-5308-8e6b-74c069e427b9", "text": "a view of the great wall of china, a detailed matte painting by Ma Quan, shutterstock contest winner, cloisonnism, creative commons attribution, matte painting, playstation 5 screenshot "} +{"id": "2000301", "video_name": "0f451a87-d3f3-50f9-95c4-ad047d57d14f", "text": "image of futuristic earbuds with screen "} +{"id": "2000302", "video_name": "e1fd52a3-4d7e-556e-9eeb-4cf9a0b2f585", "text": "jay and silent bob dancing in a room filled with smoke and show girls "} +{"id": "2000303", "video_name": "fac3694d-f45f-52e9-a1f5-eb6a6bcb2cb8", "text": "money come to my way like water "} +{"id": "2000304", "video_name": "0f9e8f73-5e19-5aa3-8054-2ce4334126e9", "text": "Imagine a ship that has started to sink. every one the boat start runing left right, panic situation, dark night, middle of ocean "} +{"id": "2000305", "video_name": "25e04dd3-f3d0-5924-b3bc-4731b2aaa599", "text": "Rabbit sprinting ahead at the start of the race.\nin 4k 16:9 3d "} +{"id": "2000306", "video_name": "14e65d71-4b17-5753-ae72-b1f5519ca767", "text": "Convey the moment when they step through the portal and return to the woods. "} +{"id": "2000307", "video_name": "d387236c-dd04-50c0-a8c0-ad59af4e272b", "text": "half jellyfish half flower in a seaweed underwater forest "} +{"id": "2000308", "video_name": "ad49b3df-39ab-5650-a959-370acc185a8c", "text": "soviet era live action version of watership down. tarkovsky style. 60 seconds long "} +{"id": "2000309", "video_name": "4df53c42-42b0-572e-821f-4b2d7dc2cb30", "text": "alien space ships in the clouds over a city, extremely intricate, masterpiece, 4k, raw image "} +{"id": "2000310", "video_name": "0203b951-1e46-5af2-949b-85c41b506f9a", "text": "A moon and stars, symbolizing the tranquility of the night. "} +{"id": "2000311", "video_name": "b67743c7-1bf8-5174-a982-65a40d512a33", "text": "Merry Christmas, there should be a Christmas tree, presents, candles, and a panning shot in the scene. "} +{"id": "2000312", "video_name": "5aea366e-822c-585b-a9f4-044cdf2cc657", "text": "crushed birthday cake Message: jangan ditelan (Font: MODERN) "} +{"id": "2000313", "video_name": "4d86f5a4-4010-5ae5-8f5f-bd00a0295d13", "text": "Harry Potter lights a bulb, in a dark room "} +{"id": "2000314", "video_name": "1a5dc237-75a1-59a2-8bf1-d874352c0d8c", "text": "Joseline hernandez with realistic body features and movements slow motion clear clean cut scene on a strip pole full figure with a huge booty bending over "} +{"id": "2000315", "video_name": "66159bef-eb76-5776-b14e-5ea8d0832ca2", "text": "closeup shot on a camera diving, into the sea, cinematic, 8k, ultra realistic "} +{"id": "2000316", "video_name": "7596b9fd-d854-5dad-ac50-4f6ee682e235", "text": "Fast running through a zombie teddy bear apocalypse "} +{"id": "2000317", "video_name": "34a2331f-f9b5-56aa-829d-2f63a32dae95", "text": "car crashing at night and flying over other cars on a highway before finally falling to the ground "} +{"id": "2000318", "video_name": "4e3a0ff4-d526-53b4-b795-a44300bd4ab3", "text": "make me a photo with lucifer and angels with wings moving eys "} +{"id": "2000319", "video_name": "d44ee80d-bebc-5122-b33b-83d84c0f5c99", "text": "a branch of a lime tree leaves bloom from the buds "} +{"id": "2000320", "video_name": "64018aea-3a38-59c1-924f-24ed738c9dd3", "text": "animate this is a still from the movie Aliens. Message: 1 Attachment "} +{"id": "2000321", "video_name": "300af196-fca5-566d-b861-beaeaf13b320", "text": "rapid landscape electricity rapid 55 secunds "} +{"id": "2000322", "video_name": "f5e41cf9-045e-5faa-bcbd-fb32bd85a12e", "text": "a man sits at a laptop and makes spreadsheets in excel "} +{"id": "2000323", "video_name": "0f7f82a4-0d0f-57d2-bb5e-cc07cd707128", "text": "A man cooking with a wok. "} +{"id": "2000324", "video_name": "26d0537c-29ad-5038-a5da-d0430522238a", "text": "Cinematic Composition of Vikings having a feast , detailed octane render,dark cinematic render of Vikings eating, futuristic landscape "} +{"id": "2000325", "video_name": "ee37bd48-dd0d-5811-a250-ba631589cfa6", "text": "lord ram home coming, walking in Temple,smiling face,with lord hanuman, crowds celebrating ,cinematic "} +{"id": "2000326", "video_name": "17cde07f-8b2d-5ca2-9c7f-015b5b9f1fa8", "text": "group of young beautiful singers, boys and girls, large eyes smooth skins average body, no scary faces, singing happily on the streets of hong kong at dawn, show whole street view, cinematic film "} +{"id": "2000327", "video_name": "ae8e52c4-a497-588a-8a19-a62660d1d61c", "text": "Heal the world with love and grace, Wipe away the tears "} +{"id": "2000328", "video_name": "4d4cf999-386a-59c3-ae48-2afa3edb163a", "text": "motion in wings like flying wings,butterflies in zig zag motion Message: 1 Attachment "} +{"id": "2000329", "video_name": "ccdde665-5533-5cb2-ad10-8b0d99c9bc10", "text": "a man being carried off by an eagle "} +{"id": "2000330", "video_name": "1a27b787-7ff2-5336-bf23-2b06b528ad1f", "text": "A Pole is marching through Warsaw "} +{"id": "2000331", "video_name": "3ec113ca-6a59-578e-8533-391d7540da33", "text": "blindfold guy singing rock music loudly "} +{"id": "2000332", "video_name": "eb84b5e0-7807-56cd-a46b-51131a83d049", "text": "a team of intrepid explorers and researchers "} +{"id": "2000333", "video_name": "29bdbe45-c628-5cef-bfa6-ecd61258bb44", "text": "This gift had been passed down through generations in his family, "} +{"id": "2000334", "video_name": "0cb1957f-684e-564b-b00e-d0ec3bb5140a", "text": "l match seller girl walking on the moon "} +{"id": "2000335", "video_name": "f40a7764-02a1-5240-b74a-96c8bfba99ca", "text": "a short vertical video of 30 seconds of a crowd dancing in an electronic music festival "} +{"id": "2000336", "video_name": "1b2ecab5-d828-5a8d-b566-ecd7c5a112e2", "text": "A painting of two faces that are slowly merging into one another, representing the blurring of the lines between self and other. "} +{"id": "2000337", "video_name": "3249ce24-a533-5e74-8646-bc36999a78ff", "text": "a scene reminiscent of paradise, red aurora borealis moves fast in sky and is reflected on the floor of clear white waters, there are one cherry tree floating on center of the scene "} +{"id": "2000338", "video_name": "f067b3e2-72d1-5512-a740-bd9ef4dcab02", "text": "animal kingdom with different animals in the forsest "} +{"id": "2000339", "video_name": "38d46dea-e4ed-55fd-a36c-6ff500dbedbc", "text": "A lot birds flying for horizont "} +{"id": "2000340", "video_name": "4abb077a-fcea-5f15-a32f-1085f357cb8b", "text": "A lion seat in the dark city \nAnd the city is much lit "} +{"id": "2000341", "video_name": "2db6b276-1239-5251-8153-f5ae74eb1b4b", "text": "A shoes salesman in a shoestore "} +{"id": "2000342", "video_name": "336ae5db-d1cb-59f0-9b5e-c47b83e9a477", "text": "a girl dreamt to be a dancer "} +{"id": "2000343", "video_name": "12106830-91cb-5957-b5f8-2018b51518f1", "text": "scary ghost in a cemetery with a vintage horror film aesthetic, in black and white, inspired by More Scary Stories To Tell In The Dark books, formatted for Instagram reels. "} +{"id": "2000344", "video_name": "dcb488c6-142c-53d1-abc4-d7d8e73f4376", "text": "A large garden full of walnut trees "} +{"id": "2000345", "video_name": "a12e267c-a24c-5da5-a071-39235518f9a4", "text": "short video, cartoon style, the view from a side and above, jungle, a little round lake in the middle, with 10 little green frogs who lived there, bring closer to view the cost and few frogs there. "} +{"id": "2000346", "video_name": "e6a78c27-fd69-5b4a-8a1e-bde8c31f962d", "text": "A beautiful mulatto girl looks straight into the camera and winks HD "} +{"id": "2000347", "video_name": "bf5b59ad-fd22-56fd-9244-ddbba611bc11", "text": "ice age, no any life, realistic "} +{"id": "2000348", "video_name": "2f20fcfe-7f66-5ccd-985b-f39986cb56c0", "text": "a rescued kitten trying to escape from man hands "} +{"id": "2000349", "video_name": "1085a767-97c0-5651-9bdc-40fe7feb38f2", "text": "lovecraft monsters roam the earth and sky "} +{"id": "2000350", "video_name": "6b13901a-1b49-55f0-bdc5-0760e9ae1fe8", "text": "A smiling female ai robot is working at a busy futuristic call center. There are robots and other high tech gadgets in the background. Highly detailed, digital painting, artstation, concept art,sharp focus, cinematic lighting, illustration,artgerm, octane render, unreal engine 5. "} +{"id": "2000351", "video_name": "e793c16f-f8e0-5fec-9860-c3b5762f26da", "text": "a charismatic woman with white hair and wearing white cloak standing inside a big empty warehouse, cinematic light, zoom out "} +{"id": "2000352", "video_name": "6b2babb6-f2a2-5a28-a791-b9502209750a", "text": "An old candid photograph of a young man standing at the edge of a cliff overlooking the ocean in an art nouveau style. "} +{"id": "2000353", "video_name": "799e87c0-378d-5f96-831d-b61f7a3fb024", "text": "Andy Warhol style, showing humans wearing false eyelashes "} +{"id": "2000354", "video_name": "e4464a49-e130-5ccd-99c2-a99a871ed1d9", "text": "running samurai at night on the streets under the red moon "} +{"id": "2000355", "video_name": "fbfe7ba0-e026-5817-9f88-5a01c3ea686a", "text": "Litt Krishna go to cow and girls "} +{"id": "2000356", "video_name": "3e95f585-96fd-5cee-96d6-9049e5528746", "text": "Show cheerful sea turtle assisting other sea creatures in need, in the sea showcasing teamwork and kindness. "} +{"id": "2000357", "video_name": "48a2538e-e1fc-5114-adf9-5f3ce04c4d5d", "text": "Young woman standing with handbag. Beautiful features, sunglasses, shocked face "} +{"id": "2000358", "video_name": "1ef675f3-a7ac-5558-8606-d1860ae92901", "text": "animated characters getting chased by dogs around the multivers and spider man shooting bullets from a gun "} +{"id": "2000359", "video_name": "6d82ece5-e992-51df-9af5-ec299d02f578", "text": "beautiful cherub from heaven, with blue eyes, feathered wings, white clothes, and white short boots on their feet. They hold a shining sword in their hand, with brown shoulder length hair, light skin, and a powerful, adult, strong presence. The camera perspective changes as the cherub descends from the sky, captured in stunning ultra HD quality. "} +{"id": "2000360", "video_name": "9333e1c7-d974-54fb-b65f-52047215bd3a", "text": "Facebook Metaverse, astropunk, Blender, documentary photography "} +{"id": "2000361", "video_name": "546893b5-4887-5d75-ba08-2c4a0d069bcc", "text": "Siren Head, Alfred Stieglitz grainy black and white 1900s "} +{"id": "2000362", "video_name": "c5181ee1-b915-5249-ac9d-179761bf9504", "text": "A blind box of seafood, black and red colors, looks mysterious "} +{"id": "2000363", "video_name": "d5e0daae-b98b-5585-a561-0f241475f1f7", "text": "Very cute Vietnamese baby walking on the street. There are lanterns, flowers, falling snow "} +{"id": "2000364", "video_name": "0cc99f2d-0391-57e2-9f7d-cd13dbb92756", "text": "Disney Rooster waking up his friends at dawn on the farm. In style of pixar, 3D "} +{"id": "2000365", "video_name": "a78a505e-f2f0-58e7-b7af-380147f86384", "text": "a dog hitting 345 yards golf shot "} +{"id": "2000366", "video_name": "86979b94-13da-56e1-813c-ca1e458e8951", "text": "hot air balloons over the grand canyon "} +{"id": "2000367", "video_name": "5baa59d1-91cf-5780-be57-95bcb2cc5a92", "text": "old antique canadian flag flapping, full screen, high resolution, 8k, realistic "} +{"id": "2000368", "video_name": "78ec66cf-6d6f-5122-b715-d4e033b7d60a", "text": "beautiful brown horse, trot through a winter forest with snowflakes wearing a Christmas wreath "} +{"id": "2000369", "video_name": "f9342903-8bef-5360-b525-0202c52f41ef", "text": "black hair young man walking on a station in the air with many cloud Message: 1 Attachment "} +{"id": "2000370", "video_name": "accb129b-3611-54a2-88e4-e5d45e2c81f9", "text": "The young man finds himself standing in a vast field filled with the sounds of birds. "} +{"id": "2000371", "video_name": "f9e78d00-828b-5b01-abb8-69fbf1155323", "text": "There was a child named Samir, who lived in a quiet neighborhood with his parents and siblings "} +{"id": "2000372", "video_name": "4725fd1a-5f9f-5f14-8fc5-bbaf5511c0b7", "text": "luffy from one piece into ghibli style "} +{"id": "2000373", "video_name": "9e80012d-94e9-5426-96c7-9d40289831ad", "text": "Black background, generate metal texture, warm light, Y central axis rotation of the picture, can loop "} +{"id": "2000374", "video_name": "6ba12921-43bf-53a8-b3b1-100f1a6f93ad", "text": "Beautiful girl in green dress in the forest "} +{"id": "2000375", "video_name": "5c7820d2-6ce7-5983-9ed2-a08fde24b34a", "text": "camera zooming into an eye of man then zoom further into blood vessels in the eye then further zooming into blood vessals turns into roads of a city from drone point of view "} +{"id": "2000376", "video_name": "31dd54be-ec36-5cc5-86e4-1ae6f0eedc5c", "text": "cinematic Once upon a time, in a land far away, there was a legendary clash between two formidable foes: Saladin and Badlawin IV. Saladin, known for his strategic brilliance and fearless leadership, was the Sultan of Egypt and Syria. Badlawin IV, on the other hand, was a cunning and ruthless warlord, ruling over a vast empire with an iron fist. "} +{"id": "2000377", "video_name": "afc3e724-6002-5038-ab73-5b4beae20db5", "text": "coffee falling in a pink cup in slow motion "} +{"id": "2000378", "video_name": "1b834ade-2084-528e-a1e4-ec03f9c82488", "text": "1 minute video of people running in chaos behind a large volcanic eruption "} +{"id": "2000379", "video_name": "58dadee1-23bd-5385-a3b2-b16c351d422d", "text": "Once upon a time in a colorful garden, there lived a curious caterpillar named Casey. Write about Casey exploring the garden and being curious about the world around. "} +{"id": "2000380", "video_name": "113c1120-0adb-54c4-94e8-eb814d3fd7d2", "text": "A memorial statue of Abraham Lincoln sitting on a chair, with the words \u201cIn this temple, as in the hearts of the people for whom he saved the Union, the memory of Abraham Lincoln is enshrined forever\u201d "} +{"id": "2000381", "video_name": "8e041285-a19a-5986-a401-33f1761f5ef1", "text": "a large green and red apple slices dripping honey on a bright white reklamn fotografie, in the style of minimalist backgrounds, uhd image, made of flowers, bloomcore, colorful still lifes, embossed paper, delicate "} +{"id": "2000382", "video_name": "ce0bfa00-5f61-5996-8646-028c610284d2", "text": "a dead ant, who lost a race with other ants, with the camera zooming out in cinematic style "} +{"id": "2000383", "video_name": "2f3e8f15-ef2f-550b-b3d2-1aac428049c9", "text": "a road, small alley, london, late afternoon, windy weather "} +{"id": "2000384", "video_name": "05aa0dc8-1ccb-5947-98a5-723f0d2e6cd2", "text": "dancing, fly 24 fps, zoom out "} +{"id": "2000385", "video_name": "3d2967a5-4c54-5e8f-a330-f77881bceff5", "text": "a dancing cat in ohio Street ward no 67 "} +{"id": "2000386", "video_name": "74c9b8c3-ff78-507e-96c0-705c4a91deeb", "text": "Roam the streets of a preserved town frozen in time, where vintage vehicles and elegantly dressed pedestrians traverse cobbled pathways. Embrace the power of black and white cinematography to evoke nostalgia and showcase the enduring beauty of architecture and urban life "} +{"id": "2000387", "video_name": "c41cb98c-1497-5ba1-ab13-e4785267267d", "text": "londoners sliding down on a big pink plastic ballon slide from the big ben to the river thames "} +{"id": "2000388", "video_name": "d9452978-e81f-557c-92b7-a84323318cd9", "text": "empty scene then adam driver appearing in next frame "} +{"id": "2000389", "video_name": "fdb04d22-07e1-57a4-a105-0c0888bfbdfd", "text": "Spaceship Is Landing And Crashes into The Big Building And Exploding In Shanghai China At Night, GoPro Cam Footage Filter "} +{"id": "2000390", "video_name": "2acd4248-55dd-5e1f-9024-c1dd56238dd1", "text": "kid creating a time machine in the computer "} +{"id": "2000391", "video_name": "8eeeefe2-5303-5ec2-895d-394d73ded281", "text": "Wind blowing through a grassy field "} +{"id": "2000392", "video_name": "779fb2f4-0f1d-56d6-9582-d265e816c2de", "text": "Taylor swift walking down runway, cameras flashing, Elon musk in the crowd, Eminem in the crowd, Kim Kardashian in the crowd "} +{"id": "2000393", "video_name": "a441129a-e2c3-5754-8b94-68eb33e90ffb", "text": "a realistic video of a rainy night on a road only lit by a street lamp. "} +{"id": "2000394", "video_name": "51f0acdd-4204-5c22-8fda-103ccdcf81f1", "text": "The walnut, with its earthy brown shell, adds a touch of natural beauty to the scene. The cracks and crevices on its surface tell a story of growth and resilience, complementing the innocence and gentleness of the rabbit. "} +{"id": "2000395", "video_name": "f4b2b789-6d1d-5c45-8298-a962dedae353", "text": "an old texan cowboy sits on a porch of a house and drinks a bottle of beer he has his legs on the railing, black and white footage, camera is moving left to right "} +{"id": "2000396", "video_name": "f463f6a7-e586-513b-a71e-bf9ddd53700c", "text": "photograph of a woman moving her eyelids from her blue eyes in the 80s in new york "} +{"id": "2000397", "video_name": "23f0b0a7-ee0b-52a6-8cd4-9b3a03478b81", "text": "Panic when fireworks explode in the room. "} +{"id": "2000398", "video_name": "6320ab53-bd4b-55bc-9977-77a23aa7733b", "text": "elf riding a corgi galloping through the forest "} +{"id": "2000399", "video_name": "33a9e12d-620e-5530-b20b-d8fc0454fb61", "text": "super realistic 4k image of futuristic city on sunny day with flying cars in sky above and young women walking along the streets in casual spring clothes place happy children in background "} +{"id": "2000400", "video_name": "04376564-3d2f-5260-86f9-274d9034233b", "text": "Characters:\n\n A young couple lying in bed, eyes closed and almost asleep.\n\n Action:\n\n One partner slowly turns towards the other, their lips meeting in a soft, stolen kiss under the moonlight.\n\n Mood:\n\n Romantic, intimate, tender\n\n Possible additional details:\n\nThe couple is tangled in the sheets, their bodies warm and close.\nThe kiss becomes more passionate, leading to further intimacy.\nThe moon casts long shadows across the room, creating a sense of mystery and intrigue. "} +{"id": "2000401", "video_name": "6736b650-9d88-5456-b6be-b36b9cdf5740", "text": "Mowgli, a jungle boy, explores the depths of the lush forest, swinging from vines and interacting with various creatures. Bear and Bagheera tigher observe his wild antics.cartoo "} +{"id": "2000402", "video_name": "2128265e-6209-53e5-bb8a-18169f6cbda7", "text": "scene of dim hospital corridor, facing front, dark and eerie, horror, lot of open doors, with nurse walking forward in PPE suit facing her back, walking away from camera "} +{"id": "2000403", "video_name": "cabb5cdb-a18d-53b5-bfdf-a254b310b04b", "text": "trillions of atoms moving so fast quantum view "} +{"id": "2000404", "video_name": "aae2c77e-762f-5589-a624-ef0164dc4ed0", "text": "futuristic bikini woman hiking in California "} +{"id": "2000405", "video_name": "ec4ddc7b-7750-5e35-bc20-43a3b35206fb", "text": "voice assistant explaining introduction of a video "} +{"id": "2000406", "video_name": "a8bafc1e-729d-56f1-a54a-6e298820a5b6", "text": "A cute little cat playing with a golden dog inside the house "} +{"id": "2000407", "video_name": "f74d77f5-9077-5bae-9244-4aa9d88adf85", "text": "turning his head right and left "} +{"id": "2000408", "video_name": "726d7bdc-45a3-5feb-bb95-9709ee096e75", "text": "A wolf, atop a mountain, the image zooms towards him. He howls into the night. The image is beautiful "} +{"id": "2000409", "video_name": "46db4bbc-fdcd-5458-ab60-74b5a6ef19b0", "text": "horses, wagon driven by man dressed in: coat and hat and woman dressed in: cape and hat. cat, duck and dog sitting on top of wagon, presents on top of wagon, christmas tree. snow, snowfall and arriving at home with fireplace and lights on. 4k film. "} +{"id": "2000410", "video_name": "c5cd03f9-0462-5b14-b3a6-9e4b0725c3c1", "text": "A man walks down a bustling street in Dubai, the city skyline sparkling in the background. He passes by towering skyscrapers, luxury cars, and bustling crowds. He stops to admire the Dubai Fountain, its waters dancing in the moonlight. He then continues on his way, walking through the Dubai Marina, past the yachts and luxury hotels. He finally stops at the top of the Burj Khalifa, the tallest building in the world, and takes in the breathtaking view of the city below. "} +{"id": "2000411", "video_name": "14c9ee90-d6b1-5d6c-8167-0501e9543af2", "text": "A big bird made of fire flying over a sky at night,3d cinematic sxcen "} +{"id": "2000412", "video_name": "2ba2121d-e483-51b8-8265-a59642beab6d", "text": "A simple LOG in the shape of a cat, which can imitate McDonald\u2019s LOG "} +{"id": "2000413", "video_name": "a7e1a709-3b3f-5cac-880f-1cb31b501969", "text": "medieval tavern pub filled with people listening to a person giving a wisdom "} +{"id": "2000414", "video_name": "b9e722ad-01cc-57a2-b836-79874d79ac38", "text": "astronaut walking on the moon with Brad Pitt "} +{"id": "2000415", "video_name": "ad01cf44-c4c5-5890-a3ca-82af9c5d3fa9", "text": "a plain white coffee cup as tall as a building placed in a jungle, with tall trees next to it and touching the sunset view in the sky "} +{"id": "2000416", "video_name": "9d42b66d-8327-51b9-91e4-c4161f8a436e", "text": "a scene of a small town in autumn from 1950. "} +{"id": "2000417", "video_name": "682abf05-64fd-5a59-a62d-d98cc5098fc1", "text": "the man talking with anger and the pyramid in the background shaking "} +{"id": "2000418", "video_name": "7456f155-964e-5ddb-98ed-d4bf423c224e", "text": "a blue car driving on the road while having a cat inside the car "} +{"id": "2000419", "video_name": "db4dac66-5b07-57d8-95b4-0857b5b8cf60", "text": "Outraged Karen Golfers on the Moon, intricate moon landing footage, ultra ornate, extremely vivid, insanely intricate, vray render, ultra 8k "} +{"id": "2000420", "video_name": "93d72123-b520-5bd5-8770-a302c57eb32e", "text": "A group of adventurous explorers, led by a confident archaeologist named Dr. Amelia Stone, enters the dark temple "} +{"id": "2000421", "video_name": "13e2ad41-a2fd-55a7-9057-688180d79b16", "text": "Sam and Lily unlock the treasure chest and find it filled with glittering jewels and magical artifacts. "} +{"id": "2000422", "video_name": "483f862d-ca1c-5c4a-a8e8-6315bace82c4", "text": "cinematic and epic street fight in a small dark room in india "} +{"id": "2000423", "video_name": "67653584-9f9e-5cba-8363-d35af255f8cf", "text": "In the Dolomite mountains of Italy with heavy rain, snow and fog at an altitude of 5000 meters. "} +{"id": "2000424", "video_name": "dc5f1ee5-a53e-5057-bc9e-90d6b200bf7e", "text": "Chameleon Observing from Afar: Depict Chameleon Cleo, a bit shy, watching from the edge of the clearing, her colors subtly changing with the beat of the music. "} +{"id": "2000425", "video_name": "52dca5d2-2f34-5341-8330-1342b7552bf9", "text": "Under the sea. An image of a dolphin swimming at great speed. 8K. Real. "} +{"id": "2000426", "video_name": "26ef004e-369d-5c58-8233-447724ef465d", "text": "fractals in the center, smoothly change the pattern "} +{"id": "2000427", "video_name": "dfb4c514-08a0-568b-9ed1-50ec3cc66cab", "text": "emphasizing the magic of newfound friendships among the students of age 10 years "} +{"id": "2000428", "video_name": "74b91130-f30d-5faa-b698-19ebd7961fa4", "text": "Imagine a vibrant garden where each flower symbolizes a truthful word, blossoming in the sunlight, while lies wither away like thorns in the darkness. "} +{"id": "2000429", "video_name": "92bb44ab-feff-5a9a-86f8-35461abbadab", "text": "Superman is flying high up in the sky, realistic "} +{"id": "2000430", "video_name": "e09c7daf-05ce-561b-a91a-6634617c1a4c", "text": "water purifier, working, pure water flow out a transparent cup, placed in the middle of the forest "} +{"id": "2000431", "video_name": "265e4a9d-946b-508e-b3f8-c4fed7cd2da5", "text": "bunny is trying to climb tree in forest "} +{"id": "2000432", "video_name": "74633d74-9209-5e84-be6f-f451ec9185f1", "text": "Crossing the Sahara Desert, we arrive at the grasslands of Africa, a paradise for wildlife. "} +{"id": "2000433", "video_name": "82f4ced8-0b86-5284-92ea-4828ea76bd06", "text": "the Batman reacting to the bat signal in Gotham City "} +{"id": "2000434", "video_name": "bff5ed40-cbe7-5728-9945-dd0498c9157a", "text": "an alien starship landing on earth, shattered moon, debris raining down, dystopian cityscape, giant UFO hovering, dazzling lights, intergalactic invasion, extraterrestrial technology, advanced weaponry, massive destruction, apocalyptic landscape, fearful humans, alien creatures roaming, eerie atmosphere, desolate ruins, ominous clouds, grey color palette, dark shadows, mysterious aura "} +{"id": "2000435", "video_name": "60905771-4dac-5631-9fb6-14d13db172eb", "text": "growing plant representing AI maturity, need to be a loop video to start over when finished "} +{"id": "2000436", "video_name": "e6afb5c4-0ff4-5fd4-99b8-81ea4385fdb3", "text": "luffy defeat shanks Message: 1 Attachment "} +{"id": "2000437", "video_name": "fdef8f42-29c0-5968-a0f3-b489984808b0", "text": "A group of demons surround a young white cat in HD, 4k, anime style "} +{"id": "2000438", "video_name": "32240af5-780a-537e-b331-f1cf97abbec6", "text": "their branches forming a canopy that filtered the sunlight into a gentle glow. Birds with colorful feathers sang melodious tunes, and small creatures scurried about. "} +{"id": "2000439", "video_name": "5e24b334-e9d6-5684-bfc1-2fd35ed9f9ed", "text": "a 1977 film scene of the parliament of Canada burning in flames large fire and lots of smoke "} +{"id": "2000440", "video_name": "2340c972-cec3-5563-b558-4b3be6193957", "text": "hyper realistic ocean where a beautiful olive green sun it\u2019s awakening on the horizon "} +{"id": "2000441", "video_name": "8ecfaf8f-807f-5c73-a527-eae2832cab5a", "text": "a picture of the future with fantasy art "} +{"id": "2000442", "video_name": "373c831c-b86d-5c43-aeed-90f687d14efb", "text": "create a golden headphone shaking on musical rhythm. Audience in the background. "} +{"id": "2000443", "video_name": "eb86159d-a0db-5002-82ba-cae0a46e62c7", "text": "Santa smashing an elf with a hammer in 1960s Rudolph the Red Nosed Reindeer claymation style. "} +{"id": "2000444", "video_name": "edff56ed-2c4c-5b1c-985c-9df15cdb0fc8", "text": "chibi boy wearing cool street outfit, anime style, cute "} +{"id": "2000445", "video_name": "92f97f73-dfa0-5514-9f92-98bdd268829b", "text": "one catterpillar transforming into a blue butterfly "} +{"id": "2000446", "video_name": "7fbb649f-b296-50f8-a61c-293905fc2fbf", "text": "a young man with solid personality walking in tothe thick forest with back to the camera from down to up ,hd.4k resolution "} +{"id": "2000447", "video_name": "ad45e667-8d09-5730-8406-953c9b2cfc43", "text": "Benny, a curious bunny in a small town, loved colors and adventure.4k,16:9,3d. "} +{"id": "2000448", "video_name": "fffcadee-e6e2-5494-9aeb-003866ad52a6", "text": "Shirley Setia, firing gun repeatedly, shell casings ejecting, John Lennon hit, recoiling in pain. very fast scene, 200fps, 5k. "} +{"id": "2000449", "video_name": "24da4a0f-debe-5743-84ea-ef4671686452", "text": "Create a scene that descends from the sky with a swooping perspective, directed towards large gray buildings, which are gloomy and tall 16:9 "} +{"id": "2000450", "video_name": "2128c4d3-f7e3-547f-bbda-fb7ed47875ac", "text": "poltergeist found footage, 1980s suburban house "} +{"id": "2000451", "video_name": "434aa5a5-8bd0-50df-afe3-1e3d1e939449", "text": "wooden little hous in middle of a forest, on a fill. Studio Ghibli inspired, "} +{"id": "2000452", "video_name": "edea7ceb-95b2-5372-92bc-a91b78fcb76f", "text": "Man walks alone in the Dark "} +{"id": "2000453", "video_name": "6345eb19-c929-5797-8d7e-347c079975cc", "text": "However, the available evidence seems to suggest that the Paracas people were indeed human "} +{"id": "2000454", "video_name": "a5306736-989f-5d58-8d19-29f267179e5d", "text": "create a logo with astrophotography theme for Raj under insta id strgazerr "} +{"id": "2000455", "video_name": "3a408b98-705c-50bf-84bb-d54366d7b355", "text": "a person walking though water in the outer space full hd interstellar move "} +{"id": "2000456", "video_name": "ebde1904-3f08-5c97-b50e-ea76a1dd73ef", "text": "a baby which is born in 1900 "} +{"id": "2000457", "video_name": "ff6c2ede-460e-5c3f-910e-37bedf1b05dd", "text": "boy and girl on different motorcycles, racing through a cyberpunk style city,at midnight, cyberpunk style "} +{"id": "2000458", "video_name": "5ba666f9-d708-57d3-a816-f9b088510efc", "text": "Create a humorous image of Deadpool and Harley Quinn teaming up in a chaotic and unpredictable clash of antiheroes. "} +{"id": "2000459", "video_name": "a9b9c41a-c1ef-5b1b-8869-dc2dde0a5ae3", "text": "kenyan masai warrior in full tribal gear, jumping high into the air in the ngong hills, spear and shield in hand "} +{"id": "2000460", "video_name": "b75db07a-471c-5a64-9dbb-ad4cacb0ec43", "text": "a really strong donald trump lifting a car "} +{"id": "2000461", "video_name": "077a9575-a194-5fab-bc42-d76afeb993a6", "text": "roman soldiers marching in roman square "} +{"id": "2000462", "video_name": "f9367063-9a96-506f-9988-b62872194686", "text": "A golden eagle flies over ancient Greece, lightning flashes and Zeus the god of thunder and lightning stands in the sky "} +{"id": "2000463", "video_name": "fc475dd3-4f5a-5634-ad5b-ab787c2aef60", "text": "superheroes fighting each other as captain America civil war "} +{"id": "2000464", "video_name": "b1f0536b-1e73-575f-a10e-aefdf470f831", "text": "create modjaw device with patient available "} +{"id": "2000465", "video_name": "3cb4eca2-a7d8-588f-8143-86d394a4dbcd", "text": "A fairy is fluttering her wings, soaring in the blue sky. "} +{"id": "2000466", "video_name": "a1eaa0e8-fba0-53fa-b34c-b1febc7853da", "text": "2 lovers taking coffee in an hotel "} +{"id": "2000467", "video_name": "dda3da23-0f55-5c2d-977a-f0a392e2fdf4", "text": "Video about a stone that lives from the birth of the earth to its end "} +{"id": "2000468", "video_name": "bde88e41-85f8-597a-8a55-dd13d6a43637", "text": "Dramatic animation of severe natural disasters \u2013 hurricanes tearing through cities, massive earthquakes shaking the foundations, and devastating floods engulfing streets. "} +{"id": "2000469", "video_name": "c40e983f-0d8f-5788-af08-4a3be506c8d2", "text": "two indian girl reaching to river side "} +{"id": "2000470", "video_name": "63acafcf-5b63-54ee-8393-519c6e602973", "text": "Crop: Portrait;\nStyle: dark blue and black oil painting;\nSubject: A dark pirate ship on a storming sea "} +{"id": "2000471", "video_name": "4c5c8297-0430-5f42-9d64-16e5032f6e45", "text": "ense rainfall with lightning on the sky in the small town square, 4K detailed "} +{"id": "2000472", "video_name": "265f80fb-9306-519e-a967-ea81a8398d16", "text": "2d animation, a girl falling asleep in her bed, and little sheeps jumps around her "} +{"id": "2000473", "video_name": "7a719369-e956-54f2-8271-40dd2dd797b4", "text": "huge yellow ducks on a dance festival "} +{"id": "2000474", "video_name": "8df50c21-193b-5e00-800e-231b920fca39", "text": "A lovely and gentle snake, painted in a simple but highly textured style "} +{"id": "2000475", "video_name": "99ffcceb-64bf-5ed6-8360-fc290eb099f7", "text": "A landscape Ariel view of ancient temple ruins of Mesopotamia. "} +{"id": "2000476", "video_name": "3152363c-0499-5935-8456-d79283349052", "text": "Blond beautiful lady wearing a bikini running on the beach "} +{"id": "2000477", "video_name": "d1a32cab-9ca1-525c-947e-6ea70f3a397f", "text": "a reminder of the extraordinary adventure that began in his own backyard "} +{"id": "2000478", "video_name": "69c4f134-816b-5a2c-adcf-774bb7bcd82e", "text": "The camera may slowly zoom in on the golden palace at the centre, serving as the seat of royal power, to subtly convey its importance in the narrative. "} +{"id": "2000479", "video_name": "0eae713e-5d3a-525d-aac1-0d22c660f252", "text": "running from the law. Scared and confused vigilante running in through the city at night in a dark ominous alleyway. "} +{"id": "2000480", "video_name": "293eda7a-b798-521f-8a6b-924a4d41dadf", "text": "British shorthair cats in Outer space "} +{"id": "2000481", "video_name": "3f87c54c-2e64-5cde-9267-9ba4350e64de", "text": "a calendar that flips from August to September and then the camera approaches until September 1 in 9:16 4k format "} +{"id": "2000482", "video_name": "78d1ca16-17aa-522f-bf97-eb24ab130400", "text": "Tallinn old city aerial shot cinematic photorealistic "} +{"id": "2000483", "video_name": "a449dd4e-07ae-5b1d-b618-44438ee4c417", "text": "3D animation showing Dophin observing a plastic bag floating in the water, looking concerned "} +{"id": "2000484", "video_name": "9a7af341-9241-5d5c-a1b5-1828a0c87784", "text": "a young indian woman giving a speech about the importance of education for girls "} +{"id": "2000485", "video_name": "be75d4c9-721a-5599-a201-4dfb837e1b19", "text": "walking in Burning Man in the day time "} +{"id": "2000486", "video_name": "0026af66-9282-5f3c-8472-d9343fd67efb", "text": "An introduction to a television advertisement showing a farm "} +{"id": "2000487", "video_name": "4228cb30-0d8c-543d-8796-6db582efb56d", "text": "lots of cargo ships refueling at a dockyard "} +{"id": "2000488", "video_name": "5e3a2fc5-f5c2-5a26-acd8-cafc8e8cab78", "text": "two men looking as best friends in a quite and peaceful village "} +{"id": "2000489", "video_name": "1ebdd8a0-977b-56b4-a374-e9624e54f67a", "text": "a skateboarder going down a railing on a skateboard "} +{"id": "2000490", "video_name": "d3ac4703-f0ac-5c63-a2b2-9b42976357bc", "text": "rt 16:9,motino 3,seed123456789,fbs 24,gs 16. Message: 1 Attachment "} +{"id": "2000491", "video_name": "186493b3-9908-51ca-89c5-140a47992ca4", "text": "Lonely slender man looking at a photograph of his wife, crying "} +{"id": "2000492", "video_name": "9018f5d6-1855-555b-a57f-86339e412fff", "text": "cienma where a person encouage the people "} +{"id": "2000493", "video_name": "d90c3f8b-9245-5647-bbce-cdc351f69bd5", "text": "seamless cinematic looping background with single color and easily readable because there will be text on it "} +{"id": "2000494", "video_name": "def876a1-58e4-5dc8-aa60-1879c74b693a", "text": "thunders going out from girl eyes, cinematic, night street, raining, dark ambient, cinematic, 4k "} +{"id": "2000495", "video_name": "42c429eb-10cd-5310-a151-28fcaafe372b", "text": "electric car Binguo EV crash test "} +{"id": "2000496", "video_name": "61409494-f54d-5ac7-bd0e-30c6379ef28a", "text": "A Wolf with babies Wolf on mountains, with Lake in Norway, 4k, High quality "} +{"id": "2000497", "video_name": "40cf3f67-98aa-5065-9851-70661e76ea41", "text": "a small lighted paper lanten bobbing on the ocean floating out towards deep water, twilight, misty cinematic. "} +{"id": "2000498", "video_name": "0121fed0-04e6-5c1d-8ef2-42060c4bbfbd", "text": "goddess of spaghetti, lake of marinara sauce, italian flags "} +{"id": "2000499", "video_name": "1e376fe1-987d-5548-b71f-73adf1d9f2dc", "text": "kids tv show farm, liminal space, liminal horror, green field "} +{"id": "2000500", "video_name": "04861880-fba2-5b2c-a55d-923ec6678d41", "text": "imagine a girl carrying little boy in hand and running in city street , closeup at the arms "} +{"id": "2000501", "video_name": "be70a79a-81f7-5f4c-b105-5921e6091cd4", "text": "giraffe with the head of Eddie Murphy "} +{"id": "2000502", "video_name": "41bb37fd-6b71-5418-b4be-b180fc992123", "text": "A man making a video of a real estate "} +{"id": "2000503", "video_name": "1f285cf3-f1e2-5530-9210-669ce4cfd226", "text": "Blood Dripped Diva: Dramatic dark makeup with faux blood drips, paired with black leather and dark, shiny fabrics. Consider red crystal or beaded jewelry for added drama. "} +{"id": "2000504", "video_name": "7a480a23-2cf7-5f88-bcd2-7216b1779482", "text": "jurors judging rock and roll in the spotlight "} +{"id": "2000505", "video_name": "507231bc-234b-5f56-8bb0-1649d2fd43d0", "text": "rayman eating ice cream, globox stretching "} +{"id": "2000506", "video_name": "3a3886d1-b9bf-5d07-afc5-a6c77d8bcf96", "text": "Cassette player placed on a desk by an open balcony overlooking a city at night, city lights twinkling below, curtains billowing in the urban breeze, a mix of vintage and modern, Digital art with a mix of realistic and stylized elements, "} +{"id": "2000507", "video_name": "c79a8da4-5043-513a-a137-bedd2d0c9dbb", "text": "The gateways of the alien ship open, and strange silhouettes covered with bioluminescent drawings come out of them. They float smoothly above the ground, forming mysterious patterns. "} +{"id": "2000508", "video_name": "76558bbb-1dad-5390-acf3-a68ff6056697", "text": "janbba the hutt rolling around in peanut butter on a desert island, 8k, motion 4, realistic "} +{"id": "2000509", "video_name": "a902af60-2791-509e-9ff7-294b0d38eabd", "text": "Beauty standing in the middle of the sea "} +{"id": "2000510", "video_name": "ab7fa9e3-55e9-5b9a-9074-e62110b4cf3c", "text": "Distressed Driver: A man looking terrified inside the car, his eyes wide, searching the surrounding fog. "} +{"id": "2000511", "video_name": "e5d6e512-e0bb-5463-b9d7-7d8e50984731", "text": "inside the modern living room on mars FX realism "} +{"id": "2000512", "video_name": "ba45e41e-69c3-5b7c-9711-20357a418e4e", "text": "Mario, sonic, and cuphead on splash mountain. Dolly in, 4k, water moving "} +{"id": "2000513", "video_name": "86866e70-e52c-5bed-8615-800ba863fcd1", "text": "young tailor in a tailor shop is sitting at a desk and writing "} +{"id": "2000514", "video_name": "45c3cbe6-c212-5345-aeef-abcdc72f1045", "text": "really hungry poor people eating from the storage "} +{"id": "2000515", "video_name": "ec4d50cf-3864-5fef-a481-9d31a8c4f36c", "text": "Cinematic shot of \u201cCommon\u201d giving money to \u201cJason Bourne\u201d at airport lobby "} +{"id": "2000516", "video_name": "99cd903b-239f-5c27-9288-3d2fbd0fdf1e", "text": "cartoon bear in river watching salmon "} +{"id": "2000517", "video_name": "b27ce2ec-f472-58e2-8ce9-99b0aa3e5b16", "text": "view of the world map with programming codes on top "} +{"id": "2000518", "video_name": "1ebfd3a1-1738-5610-874e-6cb48105417a", "text": "a girl is sleeping and his body needs to slow movement and outside rainey weather with thunders "} +{"id": "2000519", "video_name": "c539defd-83e1-5780-9d79-558ba916b209", "text": "Create a video of dopamine and acetylcholine acting on receptors simultaneously "} +{"id": "2000520", "video_name": "066f5a7c-db6c-576b-97d5-0dd20b3c9a67", "text": "matrix style pale bald albino beautiful female robot, symmetry, laying on the surgeon table, disassembled, teal liquid, red eyes, stencil, black and red, lineart, manga comic cover poster, dramatic black lighting, contre jour, Akira style, ghost in the shell, noir, yoji shinkawa, junji ito, style of Katsuhiro Otomo, black and white horror manga, storm, aggressive line art, black ink "} +{"id": "2000521", "video_name": "7b73e728-c431-554d-8bdc-119b8c324570", "text": "man turns into a fox, awesome transformation, 4k, realistic "} +{"id": "2000522", "video_name": "5ce2506f-6de8-57cb-bf9f-95b0034f841d", "text": "Town in winter with house panorama "} +{"id": "2000523", "video_name": "b7dcd99b-63ed-5fd3-adc0-a8ca93bd9f06", "text": "a male influencer describing about a software "} +{"id": "2000524", "video_name": "09000a27-28fa-5f85-aca9-c485f180fa43", "text": "busy hospital, going operation theatre, cinematography, 16:9 ratio "} +{"id": "2000525", "video_name": "0c7c949f-2899-59bc-8e13-804113e44ab4", "text": "new times require new tools, metaverse, cinematic, 4k, best quality, futuristic "} +{"id": "2000526", "video_name": "76727b8a-103a-56c4-b6af-ec5e1e6a8272", "text": "the beautiful fairy turned Cinderella into a beautiful princess with a blue luxurious dress and beautiful glass slipper "} +{"id": "2000527", "video_name": "9bf85e03-4191-585b-82d3-a6df49a11a65", "text": "turn into the a unicorn Message: 1 Attachment "} +{"id": "2000528", "video_name": "4907482b-9efc-59c7-bc68-959a5d08154c", "text": "abstract frame purple yellow blue nature animals "} +{"id": "2000529", "video_name": "e4f1b019-6123-5347-8f5a-f0f9ad7154a2", "text": "a creepy house in middle of the forests with old theme hut motion 2 "} +{"id": "2000530", "video_name": "f2a018f4-be2c-5cb8-bee3-6c026726b5fb", "text": "A cereal bowl full of cupcakes in Scooby Doo animation style 1970s commercial. "} +{"id": "2000531", "video_name": "5aa90794-4834-5076-b622-4d772c662266", "text": "mother and daughter walking into shoe store on a bright and sunny day. very colorful "} +{"id": "2000532", "video_name": "68b52323-a4ce-508a-bc01-c63700b11fad", "text": "Realistic photo of a crab on the sands beach swinging claws like he dance in the club "} +{"id": "2000533", "video_name": "7e78af63-82f6-5075-9c30-450cd1bebe06", "text": "2 men in the year 100 "} +{"id": "2000534", "video_name": "d832de07-46fb-5ada-a10c-56b570c2c90f", "text": "cinematic videos, hd, 4k, realistic, sharp, "} +{"id": "2000535", "video_name": "6ebf14c2-cee4-5231-a997-3e2bb4f644ba", "text": "a video of a man fighting for his life against a polar bear "} +{"id": "2000536", "video_name": "8ca2434e-9ca0-59e0-8d2d-4e83c1aedbc3", "text": "create a video with the following scene: a beautiful and large train station with people walking in different directions and in the middle of the crowd two smiling friends meet. "} +{"id": "2000537", "video_name": "29b4cf1d-dd85-520b-b169-acc4f4966978", "text": "a cinema scene, 40k,18 years old Nigerian male student who is standing by a big studio TV and facing front with pepper in his hands and announcing admission to NACABS POLYTECHNIC Akwanga, NASARWA STATE Nigeria "} +{"id": "2000538", "video_name": "b062cf92-fc29-530d-ba8f-f524f5a79b00", "text": "a logo for smoke and bars mic performance "} +{"id": "2000539", "video_name": "8913c43f-8fc3-55ad-adff-db6ef8f30690", "text": "Use festive music to set a joyful tone. "} +{"id": "2000540", "video_name": "1894703b-e49b-5a49-a753-be6e193a3f25", "text": "a skull with red glowing eyes, grunge, 16:9, 4K "} +{"id": "2000541", "video_name": "e672c96f-9171-5002-b6f1-616e0ca30285", "text": "Girl sitting on a swing hanging on the moon and swinging, beautiful fantasy night scene "} +{"id": "2000542", "video_name": "25521b9e-220a-582a-ad66-4f3ed7de13eb", "text": "a beautiful redhead young girl portrait with a multicoloured makeup representing a multicoloured butterfly wing all around her right eye "} +{"id": "2000543", "video_name": "2e55da68-0c53-5531-84b1-8c63dc5a8f84", "text": "Two kittens cuddle with their mother. High detail "} +{"id": "2000544", "video_name": "6f36c6f7-cc75-554c-a3ce-b23469378cac", "text": "4 jack russells on teh beach "} +{"id": "2000545", "video_name": "f52d0d1a-7414-554c-a5c9-0798e83ad7b6", "text": "sohni swiming in the river with the help of clay pot "} +{"id": "2000546", "video_name": "c4f603ab-e191-53d5-871a-e8be518cca12", "text": "short movie for me standing at the center of a grand auditorium, bathed in the warm glow of spotlights "} +{"id": "2000547", "video_name": "73af90be-109c-53a5-bcf8-7bf80cdf449a", "text": "buckyball geometric sine movement, vray, depth of field, volumetric fog "} +{"id": "2000548", "video_name": "c01e8d84-ecc9-5a18-b89e-484bd7274a1f", "text": "flyby aerial shot drone of beautiful white modern building with silver transforming scales "} +{"id": "2000549", "video_name": "8b22b4d0-aad1-5218-bff1-7c629ad51b09", "text": "very strong wind. waving moving all the hair "} +{"id": "2000550", "video_name": "9e95f3e9-3053-5a72-ae8b-d0604111fcc0", "text": "A long time ago, in a place where ancient forests stretched as far as the eye could see, lived a lonely fox. His fiery fur shone like a flash among the lush vegetation, but despite his impressive appearance, loneliness enveloped him like a lingering shadow. "} +{"id": "2000551", "video_name": "c805a424-a595-5a86-87c1-1cc92d2b64e9", "text": "a cute Muslims girl in a beautiful city with her parents they are happy and a girl have a cute doll , 3d animation "} +{"id": "2000552", "video_name": "fb5303a3-6972-566f-9ca5-744d8c02b1ce", "text": "Goku, Blazing Fire, Hair Flowing, Glowing eyes "} +{"id": "2000553", "video_name": "8169878a-755e-5ba0-9ae7-258d52a46c5e", "text": "Man and woman hold hands and kiss "} +{"id": "2000554", "video_name": "13750711-677b-55f3-ab6f-669e8d5bce0e", "text": "Narrator: The world watched as Earth made contact with an advanced alien civilization. "} +{"id": "2000555", "video_name": "39a9d4d9-7ae9-5d08-a4cd-07cb9f498d60", "text": "a wild weird AI video where things morph into other things for no reason and everyone has 10 fingers on one hand "} +{"id": "2000556", "video_name": "605a5e24-44ee-59f3-a3e8-f8b66fc0414c", "text": "Appear on Screen, \u0645\u06cc\u0646\u0648\u06ba \u06a9\u06cc \u067e\u062a\u06c1 \u06c1\u0648\u0648\u06d2, old computer "} +{"id": "2000557", "video_name": "03dea0cd-4607-56f6-bbb0-250ab76dbf8a", "text": "a video of a power ranger fighting with a bear in bathroom "} +{"id": "2000558", "video_name": "b857ed73-b2d9-50d4-956e-fea4de0ce7c2", "text": "generate five wolves in the dark which stand with frontside to me. Because of darkness, only their eyes to see and the moonshine shows their bodies but in shadow "} +{"id": "2000559", "video_name": "c4a0b4ae-436b-55e1-b18d-dfcff0fc7088", "text": "great view of thunderhouse falls on the missinaibi river, ontario, canada "} +{"id": "2000560", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "In a dimly lit room, a spotlight shines down on Mary, who is now sitting on a wooden chair, holding her newborn baby boy Jesus in her arms. The camera captures the awe and tenderness in her eyes as she gazes down at her child. The room is filled with a hushed silence, emphasizing the sacredness of the moment. "} +{"id": "2000561", "video_name": "a29ac5d5-91fd-5214-8b40-076fd6fd0839", "text": "Caeser augustus giving a speach at the roman senate,High quality, high quality face,symmetrical face,sunlight "} +{"id": "2000562", "video_name": "9dcffbfe-096c-5305-a5ab-387f3658c27b", "text": "when the sisters wore their flowers in thir hair "} +{"id": "2000563", "video_name": "cab725e1-7c45-5ff7-b18a-6fbd85170d4a", "text": "Santa give the gifts to children "} +{"id": "2000564", "video_name": "703386db-7b48-5877-b1d9-4bfe95019f12", "text": "the woman came out of the home and went in front of the three elderly.talking each other,cinematic image,zoom out. "} +{"id": "2000565", "video_name": "15eaeb3d-f4e8-5e99-8373-9918bce2486b", "text": "An elderly Chinese man speaks in front of a screen with grass and wooden houses in the background, and a realistic background is added to highlight the old man "} +{"id": "2000566", "video_name": "2f2c419c-a254-5317-91da-02e33a489a4a", "text": "boliwood actor Salman Khan driving a car on footpath "} +{"id": "2000567", "video_name": "456cca09-2d4e-5353-9e38-0cd1d91c04ad", "text": "Man standing infront of the camera, "} +{"id": "2000568", "video_name": "3f5d9315-a60b-554e-b89d-bd2647b19e08", "text": "A video of Dragon Ball in a new look and with advanced skills "} +{"id": "2000569", "video_name": "87db6fd6-974a-5fcf-9e69-75418568a8ba", "text": "Futuristic sitting room underground the underground of the underground Speakeasy. Wet Bar, wine rack, Billiards, fireplace, infotainment system "} +{"id": "2000570", "video_name": "a62a5751-4cfe-5a4b-afa6-3008b5555cba", "text": "A red heart shape appearing out of a foggy background "} +{"id": "2000571", "video_name": "6196f26c-c5f5-5501-8b8c-f7f5e86562ef", "text": "a 3 minute detailed video Beethoven with three eyes and a thick beard who plays the piano , draws pictures and sits on a dog. It all takes place in the Forest, next to Hitler. "} +{"id": "2000572", "video_name": "d0c0c8e8-2367-5e34-b82d-e93de7d06ca5", "text": "Mountain and ocean and flying silver ball"} +{"id": "2000573", "video_name": "0830cb68-e0a3-5aed-8a45-579a5c29f8b2", "text": "little red riding hood, cyberpunk.walking through the gotham night city, moody "} +{"id": "2000574", "video_name": "f918efe3-fc84-58cd-94f3-a5d762107da2", "text": "An image of villagers gathered around, whispering about the sinister events associated with the old house. "} +{"id": "2000575", "video_name": "7d5a7efc-6ee4-5c4c-8569-1523f9e1c659", "text": "mysterious and intriguing story from ancient India "} +{"id": "2000576", "video_name": "c0019b61-477a-5606-b35f-4e1a0bdf0823", "text": "a man walking away while the other sees him go in a haunted apartment "} +{"id": "2000577", "video_name": "28e29e9c-18cd-538a-aa4d-92866c29449a", "text": "a boy sitting by the window "} +{"id": "2000578", "video_name": "38e0bbba-00d0-5839-b315-8625131863f0", "text": "three silhouettes of men in suits standing around a skoda futuristic car, moody car workshop, conversation, gloomy "} +{"id": "2000579", "video_name": "c00aa0a3-29ee-526d-b3cf-60301a4f5c72", "text": "A bioluminescent train emerges from the dark, illuminating the night with vibrant hues of radiant blues and glowing greens as it glides through a mystical woodland, captivating with its ethereal light. "} +{"id": "2000580", "video_name": "d1182667-de6d-5ee1-bcef-30de15e1f75b", "text": "Superior Nutritional Value: Tsampa Energy Balls offer exceptional nutritional and energy value, "} +{"id": "2000581", "video_name": "73f9087b-de9b-57f6-8822-05f96d9865e4", "text": "in the forest, japanese animation style "} +{"id": "2000582", "video_name": "94abf253-4f5a-5f67-8363-f8c2eb13e049", "text": "floating words from scriptures from bible on wooden table, blowing wind opening bible pages, hovering holy spirit above bible, flyview cam rapid, shining rays "} +{"id": "2000583", "video_name": "53d7c5ec-ba2e-5ef0-b958-e55fcd02596e", "text": "a businessman standing in front of a skyscraper in a cyberpunk city "} +{"id": "2000584", "video_name": "9879fc0e-2ad6-5f68-9512-2bebe432673b", "text": "The Indian plate, carrying the Indian subcontinent, is slowly moving northward. It is colliding with the Eurasian plate, which is stationary. "} +{"id": "2000585", "video_name": "2f2760f8-7a3e-5b06-81bf-b68535e4e64c", "text": "A man catches a fish on a lake next to a small boat "} +{"id": "2000586", "video_name": "f8b0d8ea-18e0-566a-8b72-54c233295639", "text": "Children swinging on swings in the park, sliding down the slide, playing games, long shot, 3D animation "} +{"id": "2000587", "video_name": "c02e3a2d-6640-5f8d-a2c6-b6453f820189", "text": "Create a video where a lone astronaut on a malfunctioning spaceship confronts a sinister AI consciousness that threatens to consume him. "} +{"id": "2000588", "video_name": "a1474944-3faa-5557-90d1-6a46c1f55c2f", "text": "a man running in morning trail running "} +{"id": "2000589", "video_name": "7e1eacd5-b683-57aa-b783-70506f2ed984", "text": "hue water wave hiting the new york "} +{"id": "2000590", "video_name": "f2af925f-0664-51e6-a4fa-14447ee974fd", "text": "angel wings descending from the sky "} +{"id": "2000591", "video_name": "9711798c-784b-54b8-b231-59de27715780", "text": "an abstract oil painting of choas in a street, fire in the background, people running, very surreal style "} +{"id": "2000592", "video_name": "e88a8474-b2dc-53a8-984f-5b919c1fa10d", "text": "Musk at the wheel of a Tesla "} +{"id": "2000593", "video_name": "16b3630d-e7a7-571a-b671-749a3b612f43", "text": "little girl holding palms with mehandi design "} +{"id": "2000594", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "let this little girl jump high Message: 1 Attachment "} +{"id": "2000595", "video_name": "b774b470-fdb5-594d-b2f3-b2caf296b2c1", "text": "weird alien with a third eye dancing in a magic field with purple and yellow flowers, the sun is setting and there are tree roots spreading in the sky, birds are flying around the alien "} +{"id": "2000596", "video_name": "4221e0c2-b674-566d-a27d-55845cc0f081", "text": "a woman walking in the rain with umberella with lush green background "} +{"id": "2000597", "video_name": "04b2f903-562b-56d7-9d02-d70c18825943", "text": "He decides to give the woodcutter a gift anyway. "} +{"id": "2000598", "video_name": "d96375df-6596-53e9-83b4-b17bb563e3df", "text": "The luminous circles, one larger, one smaller. Lots of light, flashes of light around. Zoom out. "} +{"id": "2000599", "video_name": "92c6dfd2-5a5c-52d2-aef5-84051d9ca176", "text": "old guy make the world upside down by his super power, hyper realistic, film camera "} +{"id": "2000600", "video_name": "917a3866-7449-5637-8c54-cb94d96c4a8f", "text": "The devil, with a voice that echoes like thunder, offers Finn three wishes in exchange for his freedom,cinematic, 4K, 3D cartoon style "} +{"id": "2000601", "video_name": "958c4d67-6922-56aa-a133-e84408c3257b", "text": "a fight against pikachu and cubone "} +{"id": "2000602", "video_name": "4f98e1c7-58a0-5414-97dc-415834456d27", "text": "written with coffee beans, beautifully Message: Raaz (Font: MODERN) "} +{"id": "2000603", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "graffiti art appearing on wall out of nowhere "} +{"id": "2000604", "video_name": "28472966-588d-5bcd-82ec-a54737edd209", "text": "cute swarm of insects gathering in a heart "} +{"id": "2000605", "video_name": "535240b4-5ad3-5bab-909e-0c257387b976", "text": "God Raysbeams of light through cloudsLightingArtistAbstract ExpressionismStudio lightHyperrealisticagonizedYayoi KusamaDoll9:19.5ArmadilloAward "} +{"id": "2000606", "video_name": "95527f5c-0ec4-5c7f-8780-a31e81036f89", "text": "An Asian lady is running by the lake at Albert Park in Melbourne, Australia in a beautiful morning "} +{"id": "2000607", "video_name": "8cab5fc7-78a2-5dc2-ac2a-143b7d3d73aa", "text": "woman standing in storm with big waves around, water flows continuously "} +{"id": "2000608", "video_name": "02911870-b290-54c7-8013-1be1c28db483", "text": "full fire houses, departament, city, hd realistic Message: CHOPER (Font: MODERN) "} +{"id": "2000609", "video_name": "681b2fa8-315b-52b7-9666-da001ab8544f", "text": "a masked man holding a flag with a bar code on it "} +{"id": "2000610", "video_name": "3a0e70d4-71eb-5dec-89b4-2f578695836c", "text": "Alice in the Village: Start with an image of a quaint, picturesque village nestled between rolling hills and dense forests. Show Alice, a curious child, standing outside her cozy cottage. "} +{"id": "2000611", "video_name": "d1249cfd-8af3-511d-86b0-53f4bdd56c06", "text": "Granite stones Message: Ekaterinoslaw (Font: MODERN) "} +{"id": "2000612", "video_name": "c375a916-3dc4-56b6-b343-ff0fc385ec80", "text": "A person is piloting a Gundam to Mars to combat Martian aliens. On Mars, dust is swirling everywhere, and the Gundam is firing lasers "} +{"id": "2000613", "video_name": "e0b2a021-b02f-5a36-a763-5b50bee89728", "text": "modern comic book illustration style of the outside of the White House "} +{"id": "2000614", "video_name": "9fb159bd-3840-5b14-96ce-e2fcadcb1c48", "text": "doggie wagging tale close shot 3d animation "} +{"id": "2000615", "video_name": "38f23304-3ec7-5424-8a33-c95f0aa30f26", "text": "An illustration of buffalo,the buffalo standing in the cave,fear "} +{"id": "2000616", "video_name": "3b8d5c3e-7683-52d8-9736-5aee31dcf5de", "text": "cold breeze in forest at night time "} +{"id": "2000617", "video_name": "552a1666-e6e1-58a1-a3a5-7ab85adb56d7", "text": "booby bird flies desperately and strides towards freedom "} +{"id": "2000618", "video_name": "e13277cf-9267-5cbc-885c-4513a8a99e9e", "text": "make it Angel hallow, Italian beared, medival Message: 1 Attachment "} +{"id": "2000619", "video_name": "df8cb396-02a1-5c28-a81e-e6af68ebcf9f", "text": "Men, the entire room is filled with gold coins, men are sad "} +{"id": "2000620", "video_name": "e3aff056-5393-549e-a884-4046c59a97c3", "text": "titan musclare black robot in suit and purple metal lightning core, big old tv head and cannon blasters in arms staying on the city "} +{"id": "2000621", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "boy and girl feeling shy and smiling gently, camera zoom, breeze, objects in the image moving slowly due to breeze Message: 1 Attachment "} +{"id": "2000622", "video_name": "e3cd9e75-5650-5168-9e4c-9df5aff5a6b4", "text": "red cat.chasing a yellow mice motion 1 4 3 2 2 3 4 1 gs 5 3 1 "} +{"id": "2000623", "video_name": "e4de1f9b-10ea-5441-8a3b-12d72091e402", "text": "Sniper in 1944, adjusting his scope and preparing to take a shot, 24K, AR 16:9, cinematography, camera zoom in "} +{"id": "2000624", "video_name": "47a78e33-8422-5390-9c14-5db86ac6502a", "text": "jesus in the matrix, fight with neo, cinematic, best quality "} +{"id": "2000625", "video_name": "8e4cc094-3d6a-5888-a59b-8ef7cd79e016", "text": "mars environment, robot walking, camera moving "} +{"id": "2000626", "video_name": "e4e38dd7-7f73-58a2-9f13-d3cac75b09e6", "text": "beautiful woman face, blinking eyes, 9:20 "} +{"id": "2000627", "video_name": "7d00246b-d7d0-54ec-85f6-4f6a71373de5", "text": "video for tiktok contain dog eat himself "} +{"id": "2000628", "video_name": "f551f1ff-8044-5bfa-91a5-494cb8075f29", "text": "8k resuloution , realistic photos, raining on the camera , cemera be wet and the street be wet by rain "} +{"id": "2000629", "video_name": "8766d122-cc9a-5ce2-8df2-2306eb547a7b", "text": "red crystals eyes of darkness. zoom out "} +{"id": "2000630", "video_name": "e05d3e87-55f8-541a-9f4a-465ffc13fec0", "text": "Many dogs sitting in subway tunnels "} +{"id": "2000631", "video_name": "604ee0c6-c197-5c15-83f4-2b396bc5d366", "text": "Muscular sweaty man running waving Turkish flag in his hand in rainy weather at night on the street "} +{"id": "2000632", "video_name": "7db284c3-d125-53f9-848f-b9b86345e7b6", "text": "The dog dissolves in the air and disappears. Fast, smooth, dynamic movements, spectacular, 4k "} +{"id": "2000633", "video_name": "443a6e80-9473-58b1-b784-d6884ab707cf", "text": "a young julieta venegas in a desert town of tijuana looking at the camera "} +{"id": "2000634", "video_name": "e07398f8-73fc-5c1b-be71-ed1f69ae5f8b", "text": "one cat look like a doctor,and wear white coat ,she is look forward,Background in a hospital. "} +{"id": "2000635", "video_name": "f2d7bff0-926f-5875-b2b1-3f59ef905c33", "text": "White herds flying, pink clouds, gentle sun, buffaloes eating grass, mountains "} +{"id": "2000636", "video_name": "e3ac7b31-2684-5412-a051-3b493ec765ee", "text": "donning a black leather jacket and light jeans, standing under the starry sky, showcasing a handsome and stylish look "} +{"id": "2000637", "video_name": "bc6ea8fa-dc67-59c5-a771-a84c5a946245", "text": "Burmese jade pagoda 4k999 portrait movie photo (thai pretty:1.25), bg (grumpy:1.2), (cyberpunk:1.4), smoke, Photo: Realisticcamera zoom out, cinematic video type, ar 1 I "} +{"id": "2000638", "video_name": "5096f27d-d03f-589f-a709-a38dd0d219f7", "text": "Thomas Moran animation of a ship sailing in the ocean "} +{"id": "2000639", "video_name": "6d55da11-36f8-546a-9c86-d904de1e5669", "text": "white cat wearing purple sunglasses sitting in a bathtub filled with American money. "} +{"id": "2000640", "video_name": "62bb1b9a-e0de-58a2-8e36-fa594f9d2c31", "text": "indian model, red western dress, pub, film shooting, realistic pic, smile face, dance step "} +{"id": "2000641", "video_name": "6d15617a-4fad-57e4-aacd-d9506faedcdb", "text": "a good round clear cell floating around with bright background "} +{"id": "2000642", "video_name": "3bd82627-37eb-5f11-a776-ccc21b519c77", "text": "Cars driving on blue fluorescent roads Message: 1 Attachment "} +{"id": "2000643", "video_name": "e9e75411-8475-5f6f-ad7a-8db6a6d404c7", "text": "Mario and Luigi having an argument in bed while Mario is on his cell phone "} +{"id": "2000644", "video_name": "c84f1b4d-0b5d-5f08-8dc1-a94fbb3fb911", "text": "a little girl holding her pink teddy bear hands, walking on the hills with a mountain view, ghibli styles by miyazaki "} +{"id": "2000645", "video_name": "90502b08-443d-5171-99a0-dc7b5cce09a3", "text": "A beautiful girl wearing a burgundy hijab that covers all that yellow hair, and she wear a long black skirt and a beautiful brown coat, she has green eyes, and a cute little nose. "} +{"id": "2000646", "video_name": "d4f5bdbb-6549-5d15-95a1-e177021d817e", "text": "a shiba inu with a green collar, on end of world, Sunset "} +{"id": "2000647", "video_name": "c3e69388-fa62-55c6-b60f-36d406ccf55a", "text": "a video portraying an active battlefield with tanks, helicopters, fighter jets and soldiers fighting for their lives "} +{"id": "2000648", "video_name": "1fabcc38-1c4d-5e90-9da3-54e7b9621e07", "text": "cartoon showing red green blue and pink clouds in the sky "} +{"id": "2000649", "video_name": "5cd20935-a293-5354-9de3-4cff114ac9b3", "text": "a corgi riding on the back of Casper the friendlhy ghost as he flys through the sky "} +{"id": "2000650", "video_name": "2b8160b2-88c8-52d0-b2bc-90742757984f", "text": "10 people party on the room "} +{"id": "2000651", "video_name": "fbe94506-f6e7-5f2b-a50b-a43d886c49e8", "text": "lab researcher adding chemical using serological pipette in a biosafety cabinet "} +{"id": "2000652", "video_name": "c78cf306-2dd8-5b61-9c01-ef92011963e3", "text": "Actress Melissa Benoist talks to the fans on a webcam broadcast POV "} +{"id": "2000653", "video_name": "61b1dda8-51ec-5133-bd44-ba102c516959", "text": "a Buck Rogers style rocket flying through space, cinematic style, anamorphic lens flare, metallic "} +{"id": "2000654", "video_name": "6653edf3-2116-53ef-91cf-65b87cf2bedc", "text": "german chancellor Scholz Eye Patch Clone Army Big Band rocking the house "} +{"id": "2000655", "video_name": "fe61e06c-d5e4-5cd7-84a1-719a5477ad56", "text": "water drops dripping on a stone "} +{"id": "2000656", "video_name": "c4534b5a-9e77-512f-b75d-00bb4432e0be", "text": "A single vertical wind axis wind turbine is supplying power to the streelights beside them, realistic, 4k "} +{"id": "2000657", "video_name": "74e5eed7-e5c0-51b0-b58d-2b2903b94835", "text": "cartoon explosion on green screen background "} +{"id": "2000658", "video_name": "dbeea114-a86f-5230-8b1c-1d0a806ab79f", "text": "video God talking to me while I pray to him "} +{"id": "2000659", "video_name": "bf80159a-f537-589a-9e12-419a564eac02", "text": "design a video of a primary school student making a spaceship and flying out of the earth "} +{"id": "2000660", "video_name": "79183502-57d2-5de2-a4b1-4c711f160b73", "text": "in the forest whit sun Message: 1 Attachment "} +{"id": "2000661", "video_name": "9bc4197d-b513-5770-baec-c75a2353a18e", "text": "chirldren book and educational videos, youtube channel logo "} +{"id": "2000662", "video_name": "d73236ad-4fd6-5b8b-baf1-ca9f1521fa69", "text": "Coming and going on London Street "} +{"id": "2000663", "video_name": "e806d4f3-6024-543c-bfe5-59ac8eab247b", "text": "A man helps a beautiful woman who has fallen. "} +{"id": "2000664", "video_name": "82dde408-b9d8-52a5-ab75-fa4f4df2d338", "text": "array od objects on 3 d space "} +{"id": "2000665", "video_name": "ae1413d1-3b44-5f6a-b5f1-dc86047c9dd6", "text": "A boy dancing who is wearing a cap and a black shirt and a pink pant with handsome face and dancing for 2 minutes "} +{"id": "2000666", "video_name": "140c2f9d-16c0-55ce-ac2b-6ed26d420b8a", "text": "a ming dynasty guy is asleep and having dreams "} +{"id": "2000667", "video_name": "d7625703-1d55-5968-910b-f70eb0a37870", "text": "a notification appear on the mobile placed on the table in anime world "} +{"id": "2000668", "video_name": "6e64a10b-637b-5ffd-8065-49e8a165856f", "text": "gentle snow falling on a beautiful kitten "} +{"id": "2000669", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "a forrest with big trees and birds flying around, colorful, ultra realistic, epic angle "} +{"id": "2000670", "video_name": "f9410038-0701-5895-9b78-db9dd7b0212c", "text": "make man on image look like cult leader Bhagwan and add worshiping people in darkred gowns in tje background Message: 1 Attachment "} +{"id": "2000671", "video_name": "b3795be5-14e0-5343-9cd9-a0a70637a274", "text": "A beautiful woman is smoking an electronic cigarette and blowing out smoke rings "} +{"id": "2000672", "video_name": "a8aeb38e-63bd-56e8-bfff-8b9b268c0a06", "text": "music video featuring wearwolves, ultra goth, ultra realsitic "} +{"id": "2000673", "video_name": "568bb47e-7917-5140-88dc-7fbf045a64e2", "text": "cinematic style man and woman writing books "} +{"id": "2000674", "video_name": "e1f3f10c-cfd2-5401-a473-8c03a46985f4", "text": "A girl lying on a bed, sleeping a deep sleep and Jesus kneeling beside her bed "} +{"id": "2000675", "video_name": "e4c7809d-f30a-5f8d-ad9f-5214ae64ee25", "text": "a monkey dancing on a tree like super star "} +{"id": "2000676", "video_name": "5d39b04b-3eea-5a0f-909f-5ba6cf5b8e4f", "text": "Dark, dense forest, many trees, many Christmas trees, the trees are bare, there are crows sitting on the trees Message: FEAR (Font: MODERN) "} +{"id": "2000677", "video_name": "e507df46-8d22-5800-85c0-1de42d3094a9", "text": "a teen man is carrying a unconscious woman dark background night "} +{"id": "2000678", "video_name": "f3f75de9-8648-5e81-9439-6e2e1fe3ff40", "text": "Emma Watson skimpy pajamas full body portrait completely see thru pokies visible detailed camel toe photorealistic, hyperdetailed, Hyperrealistic, fashion, photo "} +{"id": "2000679", "video_name": "e0690a56-97db-518f-a235-35e30ce3f946", "text": "Use animation to show Mrs. xyz in her bed as she drifts into deep sleep. Animate a window slowly creaking open. Create an animated, smoky figure entering and approaching Baby James. Animate his eyes opening and fixating on the smoky figure. "} +{"id": "2000680", "video_name": "b4c46cf2-d776-58a6-a1bb-57256856daf2", "text": "hoopoe jumps on the tree, real images, photo effects "} +{"id": "2000681", "video_name": "84add93d-8f5d-5596-af34-8a91589d2bf5", "text": "Sprite, Sun Fizz , Orange Juice, 1997, Commercial, as Pretty. "} +{"id": "2000682", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "Anne Hathaway and Natalie Portman 8k movie "} +{"id": "2000683", "video_name": "9abfb730-1cf9-5be5-9833-98db58da4ef9", "text": "deep sea creatures swimming 20,000 leagues under the sea towards the camera Andrei Arsenjewitsch Tarkowski darky hazy ocean "} +{"id": "2000684", "video_name": "c53e1f2f-360e-5024-ad86-023e851ba70d", "text": "russian babushkas on skateboard in the mountains road, sunset, sun rays, hyper realistic, depth of field, 4K, 85mm 1,8f, film grain, ultra sharp, 16:9, zoom in, motion 4 "} +{"id": "2000685", "video_name": "6de4237f-07f3-5a32-a4cf-3a8f082a3e13", "text": "a horse walking on the filed, studio ghibli anime "} +{"id": "2000686", "video_name": "8934cdee-c666-5575-8d96-77401c790230", "text": "Brawl Stars video in which Raven fights with Leon for fifteen seconds and then a portal appears under him and he disappears. The action in the video takes place in the desert. "} +{"id": "2000687", "video_name": "6c6f0ba4-db9a-5284-9b6b-cbc43556f197", "text": "bicycle flying on the moon , wide angle camera show , realistic , view from earth . "} +{"id": "2000688", "video_name": "e0ba7cc7-3f76-586a-9d11-572b456f45b0", "text": "Add a Little Slow Movementimage:Firefly Envision a beautifully decorated gingerbread house on a wooden table, surrounded by colorful (2).jpg "} +{"id": "2000689", "video_name": "3cc800b3-c48b-55fc-a93a-404c9d51d018", "text": "the kingdom of heaven is like unto a merchant man, seeking goodly pearls: Who, when he had found one pearl of great price, went and sold all that he had, and bought it. "} +{"id": "2000690", "video_name": "84ac1e6f-4f59-5dbd-a099-1ddd5ad42a7a", "text": "girl flying to the moon, cute, simple, big moon, fairy tale "} +{"id": "2000691", "video_name": "8bb50cdb-5c01-5ba3-8769-52e8f56b71f3", "text": "the leaf falling under the bridge "} +{"id": "2000692", "video_name": "ddadbc85-3bb5-563b-acd7-a526f7e14437", "text": "bob marley dancing with red hair woman "} +{"id": "2000693", "video_name": "7af754c9-e97a-5b65-a96d-4b082366ba81", "text": "beautiful picture of fursuit rave party in underground bunker, 8k "} +{"id": "2000694", "video_name": "5e710171-02c6-5437-975b-460dceea87fc", "text": "Asleep on the floor of a snowy forest, a tired merchant traveller, lost and tired, eyes closed, snowy forest, dawn, "} +{"id": "2000695", "video_name": "2ea76714-66a3-5369-ac93-700d1e5928e3", "text": "real cat orange color inside of the moon "} +{"id": "2000696", "video_name": "c24210bf-9709-5cd5-8fd4-e0dbcb0715e6", "text": "tropical islands lanscape, alien jungles, camera flying and zooming in "} +{"id": "2000697", "video_name": "1dfd1e2c-dfe9-5d13-b85c-0740c076b38e", "text": "there is a museum. The museum has a lot of diamonds and treasures. There is no person there. 16:9 "} +{"id": "2000698", "video_name": "e44da0d7-eb87-5251-8fdd-ec56a15bc631", "text": "A bullet flying at a speed of 1500 kmph "} +{"id": "2000699", "video_name": "a2293b5b-6517-533a-af7b-bd6a4e4a03bd", "text": "calmly standing still. muscular beefy attractive handsome guy flexing. sinewy big biceps growing enlarging increasing in size, muscles getting bigger. powerful ultraswole "} +{"id": "2000700", "video_name": "0c44d37b-4045-5d6c-90f9-af53de174b64", "text": "make a astronaut ape,2D, space background "} +{"id": "2000701", "video_name": "9cc300d4-820b-5648-aa71-2432c0e2151c", "text": "an armored car drives along the street "} +{"id": "2000702", "video_name": "9d127659-f543-5965-b05a-43c1ed25c93d", "text": "Darth Vader baking cookies in his bakery, TV commercial "} +{"id": "2000703", "video_name": "1adc27ac-af76-5afe-9d95-bddd70568285", "text": "The Avengers and the Justice League face off in an epic battle,hyper realistic cinematic, normal speed "} +{"id": "2000704", "video_name": "45c68857-08ff-5345-9ed4-4ca06ee55391", "text": "Generate an image depicting ancient Egyptian tombs with pots of honey that are over 3,000 years old and still perfectly edible. "} +{"id": "2000705", "video_name": "db6c565a-7947-5903-bb49-947f09cbad73", "text": "one cute little monkey playing with other animals near a beautiful waterfall in lush green forest "} +{"id": "2000706", "video_name": "2f0bbe47-3a95-585d-8e11-4e8ec8d445cc", "text": "Create a tower that reaches the sky made of bricks "} +{"id": "2000707", "video_name": "ba0166e2-f824-54d9-9f3f-c91a03d3b72c", "text": "girl dog, urban clothing, full body view, anime style "} +{"id": "2000708", "video_name": "01aaa71f-5a48-5928-aeeb-5d14da77c6cf", "text": "realistic look. Dog at hotel at new years. Fireworks, confetti, and funny hats, smiling dog "} +{"id": "2000709", "video_name": "8e2ebd62-4c83-5cc9-aebc-dace514538fc", "text": "the Helicarrier, flying above a city skyline, photorealistic "} +{"id": "2000710", "video_name": "7dbf5036-e03b-5fcf-a6c4-be79e6ae07c1", "text": "A peaceful countryside, a small house amidst green trees, with sunlight shining through the leaves on the ground "} +{"id": "2000711", "video_name": "f440cd7b-f617-5a80-9190-0925051b78e8", "text": "Superhero Flying at very high speed , hyper realistic 4K disney style ar 16.9 "} +{"id": "2000712", "video_name": "a2b11af0-374d-5bda-93fa-dd6755b8458a", "text": "dark, thunder,the woman is sitting in chair , background house , ghost in window "} +{"id": "2000713", "video_name": "fad3e76b-a2bf-5488-b017-6ee94e63c1a7", "text": "1970s footage of Alice in wonderland card guards "} +{"id": "2000714", "video_name": "fdad2760-1717-53f1-8a73-bb1269bf7670", "text": "guy wearing helmet in an empty times square and the screens are all white "} +{"id": "2000715", "video_name": "9af19222-e188-5414-bda1-a0762516af30", "text": "animatronic puppet band at a pizza restaurant plays a song for the children "} +{"id": "2000716", "video_name": "412293ad-3fce-5cba-be19-ecf8e704a852", "text": "Analyze the sequence of events involving the snake, Satan, and the expulsion from paradise. "} +{"id": "2000717", "video_name": "75d59416-e3e0-50c7-9365-a2744d4e7d23", "text": "people of diverse backgrounds planting samplings together "} +{"id": "2000718", "video_name": "4dd4a563-f486-54dc-83a4-17b6b0e1d85d", "text": "Best Quality, Man in space playing with the Sun like a ball, style of Scott Listfield : style of Chris Moore, drmatic lighting, smooth, hyper realistic, cinematic, 8k, trending on artstation "} +{"id": "2000719", "video_name": "81e4805c-0886-5fb3-9cfc-0dcc6e35fb11", "text": "a gazelle and cheetah playing chess "} +{"id": "2000720", "video_name": "f2a405a9-8e71-5e91-a06f-df37a6c58f54", "text": "16:4 image of Elon Musk smirking and pointing to a Dogecoin "} +{"id": "2000721", "video_name": "cfabd3f0-aa24-55b5-b075-96e1e42f701c", "text": "The little dreamer fell asleep peacefully, and the shining light of the stars seemed to draw the most beautiful picture of his dream. On this quiet night, dreams and stars guard every child bathed in dreams. "} +{"id": "2000722", "video_name": "c3d751b6-ca7e-50a4-aecc-e618b31033cc", "text": "a medium hair warrior meditating under a tree as anime "} +{"id": "2000723", "video_name": "9eabee0f-280c-5f08-a00f-4dda52baa15a", "text": "an adult person watching a old tv set where a movie about hell is being projected, cinematic, highly ddetailed "} +{"id": "2000724", "video_name": "bd33e3ad-ec92-51e0-96dd-dee7977ce058", "text": "a 1968 recording film, lomography, in the middle of a green field there is only onde long pine tree. "} +{"id": "2000725", "video_name": "e838c656-c25d-56b9-9a85-1c6d1f9eef89", "text": "inside a bakery shop teddy bear, high detailed "} +{"id": "2000726", "video_name": "95fc240f-c29a-5a09-b354-bf3c2e328725", "text": "a man stands gloomily, looks into the water on a moonlit night "} +{"id": "2000727", "video_name": "3bb02ca6-53ca-5102-8f05-92e61bd0320f", "text": "Queen Elizabeth the first as album cover art. Baddie. 4k. Studio lighting. "} +{"id": "2000728", "video_name": "04e77506-02c8-57da-8700-1d31dd82922d", "text": "1930 footage of monks succesfuly invoking lovecraftanian entities "} +{"id": "2000729", "video_name": "76d032b9-4462-5e8a-8527-a73e3ae7cda6", "text": "dark blue Peugeot 307SW station wagon, Eiffel tower in the distance "} +{"id": "2000730", "video_name": "4633e8d2-29c4-5364-baa9-2c307e1f9116", "text": "2 alpinists climbing the mont blanc and one of them is tired "} +{"id": "2000731", "video_name": "f7aa4143-1187-599d-97fd-bf01a2cc58a2", "text": "Leonid meteor shower background, Japanese anime, beautiful girl "} +{"id": "2000732", "video_name": "c74e946c-9730-5896-b3c5-850a8b9f4376", "text": "The student is a teacher using a compass to launch a pen, and behind him is a teacher, from whose windows smoke comes out and there is an explosion at the door 4K "} +{"id": "2000733", "video_name": "9721fcd3-af01-5f26-93e3-10799225520f", "text": "young people in caps paint graffiti on urban walls "} +{"id": "2000734", "video_name": "96407dbf-ba21-5438-8416-8d8d978a9226", "text": "ancient statues, a ruined city in the background Message: 1 Attachment "} +{"id": "2000735", "video_name": "5cb9f383-9b1a-5278-952a-414acd3a022c", "text": "jar of wonders exploding with ice crystals and snowflakes, sparkly "} +{"id": "2000736", "video_name": "a4e6ba42-fc20-523e-9796-f45a1ad75a8d", "text": "When he finished his song, all the animals started liking Rohan and considering him as their friends. "} +{"id": "2000737", "video_name": "15cb102c-0606-5f87-82ae-d56de5470508", "text": "luffy seven, gta rp, running on road, 16:9, smooth, "} +{"id": "2000738", "video_name": "a83ba798-6a31-5475-a1e8-e9a60c13df9e", "text": "a medievil arthouse style Wizards wearing rollerskates "} +{"id": "2000739", "video_name": "6808d489-4782-5c1e-a873-d4dfc1e1999e", "text": "The party traverses a narrow stone ledge overlooking a river of magma deep underground. Without warning, the ledge shudders as a deafening roar echoes from the tunnels ahead. "} +{"id": "2000740", "video_name": "a6824789-89e9-524d-abf5-9cb2bded9e6c", "text": "The spaceship is caught in a violent cosmic storm, threatening to tear it apart. "} +{"id": "2000741", "video_name": "1041dfde-d0cd-5058-bde8-eef1baff58a6", "text": "a highly detailed photo of a Monster Truck breaking through a hedge and running over a kids Birthday party, kids and party decorations, photo realistic, sunset "} +{"id": "2000742", "video_name": "d63d1a2c-bfb0-5f90-a75b-866d571301bd", "text": "A little white rabbit is grazing on an endless grassland Third person perspective High definition, no deformities, exquisite picture quality, anime style 1080P "} +{"id": "2000743", "video_name": "ca0b75c5-8a7f-5f00-9958-aac541fddc19", "text": "an apocalyptic army base, with lots of moonlight, overhead shot, aerial shot, hyperealistic, kodak film, film look, high resolution, photo, photographic "} +{"id": "2000744", "video_name": "17047265-4e73-57e2-b18f-6532488d3506", "text": "An animated background of red colors in the style of Disney Pixar Message: I love u dear (Font: MODERN) "} +{"id": "2000745", "video_name": "964543e2-a0a1-5bd2-bd51-1fe90204078e", "text": "Start talking about the distinctive features of the luxury building and its services. "} +{"id": "2000746", "video_name": "44c738f5-95cf-5bb2-8137-6db6732550dc", "text": "summerians build metallurgy to enable them to accurately survey land and construct buildings "} +{"id": "2000747", "video_name": "3a459b93-3179-5dbd-97fa-a2eadb94955c", "text": "Their influence knew no bounds, and their machinations threatened the very fabric of humanity. "} +{"id": "2000748", "video_name": "8e48c907-79f2-5aae-9402-edacfea0a408", "text": ": a highly detailed white buddha playing biofeedback music in a shiny white robotech suit by h.r. giger, ernst fuchs, vhs 1987, hauntology,dendritic, plasmatic neon moonlit garden "} +{"id": "2000749", "video_name": "13b65647-754d-5a2d-8720-76519aadd48f", "text": "a luxury perfume commercial and the bottle is square with a classic wax stamp in ghe moddle "} +{"id": "2000750", "video_name": "9cd0d73c-8385-595c-b1a7-bf67eb873a77", "text": "burning jelly fish with cold and warm lighting on a pitch black background, vivil light, raytracing "} +{"id": "2000751", "video_name": "ebb22bc2-b959-5ed8-8644-3aeaac3e6e31", "text": "most dangerous villain in battle with face reveal "} +{"id": "2000752", "video_name": "cadc3408-abd6-5583-a8e8-2f91972cb6e1", "text": "father hugh your son bible style "} +{"id": "2000753", "video_name": "faa82760-f447-509b-8ad1-d037d02da30b", "text": "One day the king sent a cedar stick to the villagers. That is to mark the beginning. It was also informed that if it cannot be done correctly, a fine of one thousand will have to be paid. "} +{"id": "2000754", "video_name": "61aa67f6-ec94-5ce7-a71c-4136ea949d5f", "text": "Swiss chalet village, smoke rising from chimneys, framed by towering Alps. Message: 1 Attachment "} +{"id": "2000755", "video_name": "2ba8cd6a-2ff2-584e-8c8e-cd6de812e125", "text": "a giant eagle flying near a ruined medieval tower in the snow capped mountains "} +{"id": "2000756", "video_name": "1e92f5d0-5712-5235-95e5-b1ec307689e3", "text": "a zebra in a deep green forest with colorful flowers and butterflies with clear blue sky and mountains in the background "} +{"id": "2000757", "video_name": "7764fb59-2f00-5e36-b1cd-756e0f7bc079", "text": "obama running on the sahara desert "} +{"id": "2000758", "video_name": "44ddc743-f4fd-5f8d-aed0-64d270a9392f", "text": "gypsy moth hunting washington state department of agriculture "} +{"id": "2000759", "video_name": "8d95fad5-7308-5d90-9029-4b411ef00916", "text": "kid walking on a busy street, 4k, cinematic, Disney style "} +{"id": "2000760", "video_name": "735d6b66-1678-5965-9d91-a90feca5f086", "text": "editorial black and white photo of a fancy dessert Message: 1 Attachment "} +{"id": "2000761", "video_name": "46bbb847-ec50-5c92-895f-00194aea21ef", "text": "A bunch of monks playing cricket game "} +{"id": "2000762", "video_name": "8d1fa758-5f01-5533-beb2-7126193e0ee3", "text": "A bustling and colorful street market with vendors selling exotic goods. 4k "} +{"id": "2000763", "video_name": "0b1ada39-8e97-55a2-bc22-09780b9e567e", "text": "the man walking close to great china wall "} +{"id": "2000764", "video_name": "9fa65d5e-371d-536d-b36f-5ae37797bbdc", "text": "A portrait of Lily with a proud and satisfied smile as she discovers the joy of balanceAnimated cartoon. "} +{"id": "2000765", "video_name": "93f90eb8-b06a-50da-9e97-21e58369f537", "text": "A dark environment, brings the face of an ancient hero, his great sword shines a blue tone, reflecting the ancient glory, but now awakened by a great evil, fogs cover the entire environment, bringing horror and despair "} +{"id": "2000766", "video_name": "bd82b387-be8f-5eab-a598-02855f465cf5", "text": "multicolored soundwave shaped like a butterfly that is alternating betweeen small and big centerd in screen "} +{"id": "2000767", "video_name": "e713fdd6-852f-5531-bb86-604c80d21c0c", "text": "Realistic man with exaggeratedly round face "} +{"id": "2000768", "video_name": "6a318695-a7be-57ca-bb13-2d3bed44cef8", "text": "generate a video about TikTok vitality and increasing followers, promoting a book called \u201cTikTok Triumph\u201d "} +{"id": "2000769", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "Consequences on Collective Memory and Identity "} +{"id": "2000770", "video_name": "8a82332a-fe52-5dfa-a590-6dfac834678d", "text": "A Space Shuttle adorned with vibrant African colors soaring through the depths of space "} +{"id": "2000771", "video_name": "a6ff15fc-fa76-5eca-a619-0ae13a812e09", "text": "Sikh asternout with turban in space, close shot,behind spaceship with sikh logo in it "} +{"id": "2000772", "video_name": "b7d7775e-0ac3-5e0f-afaa-87c274252e93", "text": "group of algeria football fans sitting at a barbershop "} +{"id": "2000773", "video_name": "0fb503c5-2a77-5218-8fd1-5dc0836d8cb3", "text": "a supermodel walks the fashion runway on the surface of Mars "} +{"id": "2000774", "video_name": "1d07a896-0cdf-51b0-ac6b-de57f36c7673", "text": "singer like Elvis Presley , play at club, cinematic, 1950 "} +{"id": "2000775", "video_name": "eaa14887-bd54-5922-8715-77bdc106a842", "text": "an american girl blonde blue eyes says hello in an angry tone "} +{"id": "2000776", "video_name": "da724d29-cf24-5eea-9128-5056978c2dda", "text": "zoom out from the universe to show the multiverse "} +{"id": "2000777", "video_name": "1159bd08-1ab3-51b5-8a7b-af44e1c8fe7e", "text": "3D cartoon The boy is carrying a fat hen and the hen falls down "} +{"id": "2000778", "video_name": "a91460da-f6d9-53f0-8c26-b930905b84b8", "text": "Kaal confronts the evil forces within the mansion, facing his fears and using his wits and courage to overcome them. (Style: Anime, dynamic and climactic) "} +{"id": "2000779", "video_name": "92587c4c-d03d-577f-917d-cdb25dd5e724", "text": "air purifier in a modern apartment "} +{"id": "2000780", "video_name": "518fd341-cd99-59d2-8683-5a13dd15e35a", "text": "a gothic Nightmare with creepy rituals "} +{"id": "2000781", "video_name": "659a175e-0eda-5d24-b3fb-645f236dcdbd", "text": "on pc Message: Internet (Font: MODERN) "} +{"id": "2000782", "video_name": "45e2c3f4-a1ff-5060-90cc-702200eacb16", "text": "in a big room, old style, world leaders have a meeting, on the left side woman in a black dress and brown blond hair, in the center a Chinese leader is sitting, and on the left, a Roman man is sitting the rest of the chairs are empty, simple flat art. "} +{"id": "2000783", "video_name": "a78c19f5-3aa9-5d8e-90ce-df6ba782a373", "text": "a video of a couple in a train, with the woman holding a flower and the man holding a glass of shiskey "} +{"id": "2000784", "video_name": "cace659c-8f8e-5ca6-9cdd-74b163a198ad", "text": "a huge eagle flying above tall skyscraper building, drone view, ultra realistic, 4k "} +{"id": "2000785", "video_name": "14d45558-e645-58d5-bf3e-296b7bd40dfd", "text": "in the rainy day the both girl and boy hug in the garden in Japanese aanime "} +{"id": "2000786", "video_name": "413e384f-7cef-5f0e-8474-93398901ed5e", "text": "Animation in 16:9 format, fullhd, to serve as a background for a music audio. It should illustrate the story of a man who feels like a prisoner and wants to free himself from his bonds. The audio is 2 minutes and 20 seconds long "} +{"id": "2000787", "video_name": "04d0e7e5-b7ec-57de-8af0-d30e3e39f757", "text": "aerial view of an old, isolated mansion in the countryside, early evening "} +{"id": "2000788", "video_name": "6ce5512c-c740-5264-af38-a6b76c81cef1", "text": "Upon hearing this, the bull softened and approached the fox in Forest.kids story "} +{"id": "2000789", "video_name": "e57c9883-ce05-554f-9abd-525b497c55f8", "text": "adam driver bowling in the mud "} +{"id": "2000790", "video_name": "21a80d87-835c-5c53-8a69-f7bf71d1e763", "text": "Judge a person by questions rather than answers. Cartoon 9:16 "} +{"id": "2000791", "video_name": "14c5bb42-71a5-50b5-8030-6d4345b499b1", "text": ": pine tree mountain top . Raining with thunderstorm . Panning camera "} +{"id": "2000792", "video_name": "b6543c6e-c211-5e52-8921-477de4097ef7", "text": "An extraterrestrial life form in the shape of a seahorse flies into Tokyo. "} +{"id": "2000793", "video_name": "827520e1-f0c9-525e-81bb-dd94155fb2ca", "text": "Bmw m5 cs is rolling around in the middle of a storm "} +{"id": "2000794", "video_name": "1221490c-6d16-5c90-a75c-650b2fd92cdc", "text": "create a background for a daily planner colored and that inspire sucess and spirituality "} +{"id": "2000795", "video_name": "35e4ffea-9aea-5c5e-b937-93f90ba4b08c", "text": "entrance to a cemetery, trees moving in the wind, full moon and heavy metal man and woman trying to enter the cemetery Message: . (Font: MODERN) "} +{"id": "2000796", "video_name": "a8ad0637-6ecd-5436-b392-6f0b97dd74ab", "text": "looking right and camera back, breath, alive Message: 1 Attachment "} +{"id": "2000797", "video_name": "0829283c-eaa5-5589-b667-b4c14ad9f109", "text": "a Scene where the two anime characters Sun Goku from dragon ball Z super sayain 2 is standing face to face with the sorcerer Gojo Satorou from jujutsu Kaisen they should be staring at one another with angry like they are about o attack one another the location is the destroyed city in shibuya japan "} +{"id": "2000798", "video_name": "33bab440-7a92-53c2-bd99-fbb52a52400f", "text": "Blond girl ,20 years , on rainstation "} +{"id": "2000799", "video_name": "6b922dcf-bcfc-5aca-94f8-a5ae9939e56e", "text": "create a long road and alone man in walking a road and back side in a car and right side he is 4 friend "} +{"id": "2000800", "video_name": "ac2a906e-e8a4-5f2e-9b31-d73014edf826", "text": "a cup of hot chocolate milk, on a woody table, sea view, sunrise, high quality, 8K "} +{"id": "2000801", "video_name": "fac9bd97-7f81-5fac-9091-dcc5a92d3a98", "text": "Cinematic, lonely astronaut sits in a chair in front of a room with peeling paint and broken windows "} +{"id": "2000802", "video_name": "4e86cfca-ff7b-5350-9f4a-4f44b978027f", "text": "animate uper right corner of the brush in the paiting and the image going from low quality to higher quality. make the bird fly as well. "} +{"id": "2000803", "video_name": "88a71c39-ac77-52cc-a0dc-9cf99efa44ed", "text": "motion scarlett johannson is laying on a sofa wearing a silver pendant playing with her hair,there is a bark blue futuristic mosaic backdrop, the camera angel sweeps slowly in a cinematic shot "} +{"id": "2000804", "video_name": "1b7c5f88-c932-5b4d-93a3-a22f4f219286", "text": "create automated SEO lottie style graphic "} +{"id": "2000805", "video_name": "92ecbbb4-7a9b-5b29-b6cd-031f612df8a7", "text": "rav4 2022 on the city driving "} +{"id": "2000806", "video_name": "73e5eff5-30fb-5bb1-827d-13cab659c85b", "text": "Man taking photos of apple trees from his phone "} +{"id": "2000807", "video_name": "4dd92443-6543-5fa8-8e04-49bd056856cb", "text": "a Tower drifting in space, high contrast, ar 9:16 "} +{"id": "2000808", "video_name": "db04a082-ca84-588d-a08b-db1b87f3c07f", "text": "Upbeat music plays while an animated globe appears on screen "} +{"id": "2000809", "video_name": "073ef24f-c5cc-5e0c-8ed6-d82f3a365886", "text": "hank hill cartoon rapping with too short and easy e "} +{"id": "2000810", "video_name": "d6117479-6085-5635-8f40-0914651317a3", "text": "prompt:earth getting destroyed global view from outerspace rocket "} +{"id": "2000811", "video_name": "ddb4a7c6-caae-5d3d-af33-202d7ec92103", "text": "Once a crow was wandering here and there in search of food in forest "} +{"id": "2000812", "video_name": "3e043855-5026-5004-91a6-2be902783d52", "text": "a photoreal circuit electronic, with a led read, 2 mosfet, 4 transistor 2N2222, 1 jack conector "} +{"id": "2000813", "video_name": "e37bac9d-e5bc-5ad7-ac3a-1d1fee99d9cd", "text": "rustic village, anime, studio anime, key visual, vibrant, highly detailed "} +{"id": "2000814", "video_name": "36a4f7b0-2582-57e6-ab6c-4c767fd3cf6b", "text": "One day, Umm Haneen got very sick. Alina remembered the Desert Rose and decided to find it to save her grandma. "} +{"id": "2000815", "video_name": "828ea893-aa66-515b-b495-b3a71e1b8a77", "text": "Explosion of 3 juice flavors, purple (grape), red (strawcherry) , and yellow (orange), with white background "} +{"id": "2000816", "video_name": "6cc38eca-a872-5903-9752-269d26eaf8ec", "text": "low poly freddie gibbs, pixar quality, fighting abomidable snowman from classic movie and winning "} +{"id": "2000817", "video_name": "5e46124b-b050-537b-a944-90abd77ffd7e", "text": "Sagrada Familia in christmas with snow in anime style "} +{"id": "2000818", "video_name": "0d1d4df1-4307-5587-bdff-f1452f838787", "text": "A boy and girl reach Monaco by electric kick scooter "} +{"id": "2000819", "video_name": "9e022619-7058-5fac-ac7d-a9f778002c26", "text": "image:Real photo of a beautiful Arab woman, 30 years old, chestnut hair, ponytail, big eyes, high thin nose. Top of the tank. Military uniform. 8 k. High quality full color. High accuracy. Quiet glow. Eccentric lighting. Enchanting atmosphere. Soft texture. High quality. Long exposure time: 2, cute, fat, plump, attractive, beautiful, petite, heavy, kawaii, mo, belly appearance, short skirt, thighs, awkward, belly on the waist of jeans, soft body, (curvy body) "} +{"id": "2000820", "video_name": "2da0b486-fc7a-5bc9-88f0-9b40b20ed965", "text": "3 cats having fun with a beer on their paws "} +{"id": "2000821", "video_name": "c0356448-6200-507b-aa9c-bbb21eedb039", "text": "man unplugging extension cord in the dark motion 4 "} +{"id": "2000822", "video_name": "3a2a55b7-f758-54af-a890-886b3ffa1d94", "text": "A robot chatting in a futuristic lab. "} +{"id": "2000823", "video_name": "9183bec8-8528-5cbe-8a50-24b1072fc8f6", "text": "The swing is against backdrop of destroyed city of syria, photorealistic, 16:9 "} +{"id": "2000824", "video_name": "70ca7648-dd21-52cb-a767-02838424625e", "text": "A digital entrepreneur using artificial intelligence in a forest with his laptop "} +{"id": "2000825", "video_name": "d988cc23-beea-5a00-8b38-3ad36002b3a1", "text": "The lone survivor, Sara, stands before the mirror "} +{"id": "2000826", "video_name": "02da673f-223b-54e6-9881-308f95250358", "text": "a cat walking in a desert with a big rain "} +{"id": "2000827", "video_name": "65784c82-6bbc-5d5e-978d-563345d98ea4", "text": "Haunted Cemetery, 2k, and there was a man there, Girl covered in blood looking at the camera as the camera zooms into his eyes "} +{"id": "2000828", "video_name": "47049b02-721d-524b-9c32-d09af52ee873", "text": "The End of the Adventure\nTimmy realized that even an ordinary day could turn into an extraordinary adventure if you dared to explore the unknown. And so, with a heart full of gratitude, Timmy, Max, and their new friends bid farewell to the magical forest, knowing they could return anytime. "} +{"id": "2000829", "video_name": "cc355605-e541-557c-98b0-78136e14d1bd", "text": "Open with a futuristic scene; a virtual gateway unfolds, and ChatGPT emerges amid particle light effects, extending a welcoming atmosphere. "} +{"id": "2000830", "video_name": "838541d3-b7ef-53e6-8281-53d17da96171", "text": "art gallery, people look at paintings "} +{"id": "2000831", "video_name": "2f6013c2-1b30-56e8-856b-f488ecb48961", "text": "make a image of rabbit on the moon "} +{"id": "2000832", "video_name": "e113855a-92a0-559b-98d3-15d2edf6dd18", "text": "A vast, cosmic expanse shrouded in deep, velvety darkness, symbolizing the emptiness that precedes creation. "} +{"id": "2000833", "video_name": "0be1c4ce-8ddf-594a-a5e6-ab0bc2c0b4b4", "text": "an old man in a white robe and turban "} +{"id": "2000834", "video_name": "0424a620-a210-52fa-8387-2a4cd13c6e22", "text": "Woman playing a flute on the side of a river. Super realistic. Restored footage. 1919. "} +{"id": "2000835", "video_name": "24e3b1e4-720b-5926-a648-e981cc02a4ec", "text": "something creepy looks out from my bedroom closet "} +{"id": "2000836", "video_name": "c3844fc4-ccb9-5a3d-9221-9f335bc9e810", "text": "The golden Chinese dragon is captured by a celestial giant hand "} +{"id": "2000837", "video_name": "bdb7bf7d-3549-5d52-8b68-08e7f9e3f465", "text": "Ensure that the child gets plenty of rest to allow the body to recover. A comfortable and quiet environment can promote better sleep and healing. "} +{"id": "2000838", "video_name": "86cd2aa3-b430-548c-a450-18f198b8f3a2", "text": "The style is anime where the environment is village type and a beautiful anime a girl working in her farm with his grandfather "} +{"id": "2000839", "video_name": "af46a73f-9338-528b-bb22-dc925e850d3f", "text": "Super Mario, dancing in the mushroom world, Peach watching Mario dance. Blur background, Yoshi laughing. "} +{"id": "2000840", "video_name": "b299ca5d-46c9-5fa1-ac93-c98aab43ac2a", "text": "a man who shows his difficult lifestyle "} +{"id": "2000841", "video_name": "0b3cdf38-c034-5c82-add0-602a482bfec2", "text": "A woman on horseback, wearing the ceremonial ornate armour of a fantasy knight, a fluttering cloak behind her back, no helmet, sword in hand "} +{"id": "2000842", "video_name": "beac20ee-b6b9-5999-9c8c-6d1abc5d319a", "text": "Ramakanji was with him and another Upadhyayaji was with him\nSo they both went there and met a Sadhu there "} +{"id": "2000843", "video_name": "cb54b228-1147-5591-bdf3-e30ea4557989", "text": "young man wearing dress slomotion 4k, cinamatic "} +{"id": "2000844", "video_name": "4096bb00-a7f9-58d3-adbb-e4cce474d181", "text": "college student attends lecture in park "} +{"id": "2000845", "video_name": "cd2360a2-7d2e-53e7-8a4c-51c7d4aeef11", "text": "Mickey mouse throwing money , gangsters surrounding, a big mansion in background "} +{"id": "2000846", "video_name": "759cf87d-a2fe-54ee-84cf-59d12f28cafa", "text": "artist singing, moves forward and dances "} +{"id": "2000847", "video_name": "ad20a84a-46ab-5743-a566-92d8937ccf3a", "text": "an alien spaceship glistening over the New Mexico desert. "} +{"id": "2000848", "video_name": "8680f8bf-d7f9-595e-b6a0-3367b24fd63a", "text": "night,realism spooky house,gothic,leaves falling from trees in the wind,halloween,burning firewood "} +{"id": "2000849", "video_name": "9e5fab49-3c5d-59ed-b018-0c3b189b1f4e", "text": "a beautiful sculpture under the eclipse, with the moon visible "} +{"id": "2000850", "video_name": "4fd9cddd-c2cd-5c9f-9c1b-71062ec7b1c7", "text": "a computer robot is making painting of the tree "} +{"id": "2000851", "video_name": "2a833c37-f7b8-5021-a3cf-15ec1ec98303", "text": "sonic running speed of light on Blue\n in the city "} +{"id": "2000852", "video_name": "e9e775a7-5744-5f4e-80ec-2e8d6a303680", "text": "a beautiful landscape of the swiss alps with large amounts of edelweiss flowers growing "} +{"id": "2000853", "video_name": "7c0c581e-4940-5117-af99-0396cdda90e2", "text": "write a word \u201cHAPPY\u201d in the lake, water waves, fish jumping, 3D text, sans serif font, hyper realistic, ultra detailed, moody aesthetic, octane render, cinematic, 8k, hyper realism, cinematic lighting, studio quality, hd, smooth render, hdr, photography "} +{"id": "2000854", "video_name": "58538d38-6467-51ab-ae0e-195332a7d441", "text": "three sisters two have black hairs and one have golden hair "} +{"id": "2000855", "video_name": "39d9322a-3673-5cc9-b55a-84e4845e769c", "text": "ducktales that show that i like a lot with donald duck scrooge and the three triplet ducks there animated too "} +{"id": "2000856", "video_name": "258ee16b-4d97-5d36-9ecf-f4e826b245a6", "text": "A Rolls Royce phantom made of gold drives slowly through the streets of New York between skyscrapers "} +{"id": "2000857", "video_name": "18c50850-626e-5aea-8761-b03b539ce619", "text": "Animate a serene natural landscape with subtle movements to emphasize its calm beauty. Include small technological elements like solar panels or wind turbines emerging subtly in the environment "} +{"id": "2000858", "video_name": "3f81d67a-e613-5ee7-9885-c7d9890cff47", "text": "cute animate : One night, his friend Ollie the owl paid him a visit. "} +{"id": "2000859", "video_name": "f084a9f4-82f1-5a21-942e-b6e3c23106ee", "text": "3d Moana encounters a wise and ancient sea turtle, Kailani, surrounded by a vivid coral reef. Kailani imparts wisdom about the balance of nature. "} +{"id": "2000860", "video_name": "cd386d54-968e-51a5-9d62-202f32ae4e7a", "text": "horse walking in place, moving its four legs "} +{"id": "2000861", "video_name": "d1a41821-4d90-5f56-9086-44e12420af89", "text": "people wearing beach clothes during winter as they have had tabasco "} +{"id": "2000862", "video_name": "0ecd444c-6818-562c-85c4-3542eed4917e", "text": "miniature Batman and Superman fighting in a paddy field it should be cinematic and sunset lighting , high quality ,with Arnold lighting , atmospheric fog and depth, wide angle moody nature "} +{"id": "2000863", "video_name": "6a5fe9d0-88d0-5c33-b76a-8e696a2acad1", "text": "man dancing with girlfriend at a lively wedding party, cinematic, epic, 4k "} +{"id": "2000864", "video_name": "4f592a17-c88c-5b03-a2c9-8024be4ff296", "text": "Can you create black main characters The 12 year old black girl I envision with a afro and wearing the shirt with a logo design and the 12 year old boy wearing a New York Yankees Baseball cap and shirt doping off the railway station of New York Message: in 3d animation (Font: MODERN) "} +{"id": "2000865", "video_name": "fc38e48b-8ce6-5e8f-8275-1d381712f334", "text": "Cinematic ballerina music box ballerina spinning round, magical, realistic, no blurr "} +{"id": "2000866", "video_name": "2c3099b4-52e3-58ea-8f83-7961489a5207", "text": "anime terrain with movement in the sky and really dark ambience "} +{"id": "2000867", "video_name": "1dc9112b-3eff-505e-aef8-bacb6daa88d7", "text": "afro anime boy going on an adventure in the forest, listening to music, running, cinematic 3D, super realistic, cartoon style "} +{"id": "2000868", "video_name": "40a766e6-0f1b-5fbf-9604-54d64ebce9c0", "text": "robot lags and hands with body dance "} +{"id": "2000869", "video_name": "fb25e864-d0ac-5b68-a1a9-9baac0c909a4", "text": "a young girl is having a fever dream in her white bead, the walls in her room a colouful and paint is dripping down the walls, only a nightlight sources light in the dark room, perspective from before the bed and slightly above looking down on her, whole bed is visible "} +{"id": "2000870", "video_name": "5c260ee6-fc1c-57c0-99e1-1095ace4db77", "text": "Josh Brolin with neck bandages sitting menacingly alone in the centre of the camera on a train. in a staring contest with little ginger boy "} +{"id": "2000871", "video_name": "01471afd-f4bd-5f16-98fb-10b812013e0f", "text": "In the end we will drop everything and want nothing "} +{"id": "2000872", "video_name": "0f0758da-0d4d-54b2-ab52-cd31cbb7c7a2", "text": "Show a beautiful baby pigeon fledgling perched on a rooftop. "} +{"id": "2000873", "video_name": "821b8890-650a-54b1-a21a-f254adccd290", "text": "female ringing the bell for Salvation Army donations "} +{"id": "2000874", "video_name": "fd4f2e1f-8c3a-5b5a-ab65-d2eb4bda5f10", "text": "Jack has a harp and magic "} +{"id": "2000875", "video_name": "450e536c-40ff-5a69-aeac-315e9c632af6", "text": "an anime teenage boy playing video games. He has a headphone on and wears neon jacket "} +{"id": "2000876", "video_name": "e7e4d99b-3602-5842-b240-e784a0e746c3", "text": "truck explorer lights, of different colors and sizes, illuminating with great intensity at night. "} +{"id": "2000877", "video_name": "263f01fc-82ee-596f-bca8-b934e63d1760", "text": "navy submarine assemblying itself from all parts laid out, 32k "} +{"id": "2000878", "video_name": "b22394d4-e09e-5371-9063-9d73f2c9b223", "text": "a video with a good looking man with black lens, and an effect that writes: Growth Marketing is Back "} +{"id": "2000879", "video_name": "80a8faa3-92db-5ca1-b14d-edbf2b00fae0", "text": "Chinese elderly people practicing health and fitness exercises "} +{"id": "2000880", "video_name": "27c9954e-91ba-5c07-840e-e271ff7a4cf0", "text": "animation of gaming couple playing playstation "} +{"id": "2000881", "video_name": "d99edbf5-4bc6-537d-be0d-4952c849d797", "text": "The swaying palm trees and sandy beach, under the blue sky. "} +{"id": "2000882", "video_name": "c1f0e286-0431-56d4-8185-e0fb0cec8720", "text": "chracters from the cartoon Adventure Time, The Ice King is flying thru the air while holding a penguin under his arm, in new york city "} +{"id": "2000883", "video_name": "14ff3129-6c27-57bc-bcf8-8cdc6fd38e1f", "text": "Show the flight of a very beautiful bird "} +{"id": "2000884", "video_name": "0166196f-db90-5885-8727-ef115b16ed34", "text": "Realistic photo of a family enjoying themselves while watching TV in their armchair. "} +{"id": "2000885", "video_name": "7c872977-fdac-5bae-a3fd-2398c3bedde8", "text": ": Angel standing in the ocean waves storm whit a sword frame "} +{"id": "2000886", "video_name": "39943516-01eb-5103-bb30-f11cbde5e649", "text": "Setting: Gathering relics near the corrupted shrines.Characters: Kena, Adira, and the locals work together to collect relics and perform rituals. "} +{"id": "2000887", "video_name": "f2079afd-0e3e-558d-af61-6903aedf6f13", "text": "A serene, moonlit beach with gentle waves lapping at the shore. The night sky is filled with thousands of stars, creating a breathtaking celestial tapestry. In the center of the image, a grand piano sits on the sandy beach, its polished wood gleaming in the moonlight. A single, elegant figure, a woman in a flowing evening gown, stands beside the piano, gazing up at the stars with wonder and a hint of melancholy. "} +{"id": "2000888", "video_name": "3d44743e-fd09-515c-b41d-74c4c051d459", "text": "a blue alien tarsier howling in a blue jungle, on a branch "} +{"id": "2000889", "video_name": "03bc6aec-a71d-5553-9f75-00f5e13151ba", "text": "Show the village children playing with the painted animals. "} +{"id": "2000890", "video_name": "275fab1c-170c-5bbf-98bd-fa885b54b462", "text": "a skull face paint Cenobite, full body render, ultra hd, realistic, vivid colors, highly detailed, perfect composition, beautiful detailed , production cinematic character render, ultra high quality model, Ginger long hair , black overcoat, hood, mohawk , ponytail, handsome, tattoo, key pendant necklace, profane, masterpiece, number seven on his face, pale face, ghostly appearance, looking at camera, profane "} +{"id": "2000891", "video_name": "146a6f54-47a2-5753-986f-a7d29b23f252", "text": "the art of the caveman and the giant stone "} +{"id": "2000892", "video_name": "f5c10d83-aa42-54ad-be30-dcba7481c284", "text": "a boy begging not to shoot from army office in between war "} +{"id": "2000893", "video_name": "b4255e5f-0451-5995-9f2e-7e839eb11e04", "text": "\u10da(\u0ca0\u76ca\u0ca0)\u10da the hell does this take so long? "} +{"id": "2000894", "video_name": "1c4a8d0f-ef42-5b3b-9134-c844d88a36ba", "text": "create an image of a plant sprouting from a seed in the ground "} +{"id": "2000895", "video_name": "ac4e9904-efc0-5ab6-811e-d9b410939cb0", "text": "a room with multiple dimensions and one "} +{"id": "2000896", "video_name": "07b64520-df1d-5a6e-b3e3-e1209d16010c", "text": "wonders of nature! Get ready to explore the untamed world of the rainforest, filled with vibrant colors, mysterious sounds "} +{"id": "2000897", "video_name": "ecce4c7e-0e96-515d-a57f-bf1806db8725", "text": "a picture of a meme coin as a motif of a shiba inu with a green collar "} +{"id": "2000898", "video_name": "95d6ddd9-aded-573e-9b88-2ce53b17ab1c", "text": "a video Link from Zelda holding a blaster, the blaster shoots a green bolt, his green cape and hair blows in the wind, in the background flames billow "} +{"id": "2000899", "video_name": "de51a7c2-94ed-578d-8821-e33b171e15e0", "text": "an old metal bridge with no people on it, a photo by Ern\u0151 Rubik, pexels, constructivism, constructivism, 1990s, photo "} +{"id": "2000900", "video_name": "13143d50-11bd-5116-9da9-0fb91ac6fe23", "text": "falling symbols a text NEUROSCHOOL Message: 1 Attachment "} +{"id": "2000901", "video_name": "32a36706-7f3e-5acb-8674-311a3f86ce88", "text": "Roman sneaks away from the party "} +{"id": "2000902", "video_name": "fd465773-009b-5921-ba03-cc445a03d0e5", "text": "In the countryside by the river the wind blows lotus leaves cloudless sky hung a super bright moon "} +{"id": "2000903", "video_name": "1a732bcb-d290-5dd6-9c46-2139ffdf7674", "text": "field of gas mask flowers swaying in the gentle breeze of a dewey summer morning "} +{"id": "2000904", "video_name": "6458498a-10ac-5c45-abf6-85fe657f46bd", "text": "The police arrived quickly, but there was no sign of Maura. No footprints in the snow, no evidence of foul play. It was as if she had vanished into thin air, swallowed by the darkness that shrouded the forest. "} +{"id": "2000905", "video_name": "916204ed-9d74-5dc1-aec2-72fc69b0c796", "text": "two cats staring at each other in a forest "} +{"id": "2000906", "video_name": "553cea1b-61a6-5b36-ae21-689910f7775c", "text": "And thr bird would be sad to see the spoiled stones. "} +{"id": "2000907", "video_name": "743f3fa5-24af-593e-8d4d-c35c6e00ef31", "text": "found footage of basilisk at Hogwarts "} +{"id": "2000908", "video_name": "e2bda4e4-3112-5ac2-9756-7a947fcf3c59", "text": "blue dog floating in space between Jupiter and Saturn "} +{"id": "2000909", "video_name": "d24c7cb9-721b-55f4-8dbb-388b2395936f", "text": "One sunny morning, little girl decided to take a stroll through her town. As she walked past the houses, she admired their beautiful architecture and the sparkling golden windows that seemed to capture the sunlight image 1 attachment "} +{"id": "2000910", "video_name": "d55b56d9-bbd8-5bdb-a8ee-83915ec44db7", "text": "a 17 year old boy with curly hairs playing arcade "} +{"id": "2000911", "video_name": "5ccc1930-9972-5e5b-9407-cb21a3a18b82", "text": "A blue skin girl with purple hairs, smiling in a colorful city "} +{"id": "2000912", "video_name": "de1417a0-e40c-5c5d-8b92-ce5b3f63acb9", "text": "blue haired mermaid with goldfish scales looking at herself in the mirror in the deep sea "} +{"id": "2000913", "video_name": "49ab76c7-0ef9-58d9-86fc-de34d957dc5b", "text": "a hunter man thinking at home "} +{"id": "2000914", "video_name": "f537ee1f-eeba-58f2-849b-db2bc7e83746", "text": "a pita with hummus on it in Israel "} +{"id": "2000915", "video_name": "129b8441-7624-59d4-a56c-a58bc4000343", "text": "Maximum Extreme Hyper realistic, Creative Society, Maximum Extreme Detailed, Maximum Extreme Bright Sharp, Maximum Extreme Hyper Crisp, Maximum Extreme Closeup, Front Facing, Full Body, City View, Crowd, Happy people, Smiling, Sunny day, New era, Golden age, Paradise on Earth, Blossomed world "} +{"id": "2000916", "video_name": "53d8339b-b2dc-5cee-a141-3ee5c2a59ecf", "text": "An Owl sits in Court as a Judge. "} +{"id": "2000917", "video_name": "1233b57b-2dd2-5756-89f6-dc3f455ff30e", "text": "College students perform at the Yuanxiao illustration Lion Dance 3D red "} +{"id": "2000918", "video_name": "a907f8d0-5bf1-54b6-854c-bdf11fde950d", "text": "horrer cartoon story He knew that he had faced the darkest of challenges and emerged victorious, a testament to the indomitable spirit of a little boy with a heart full of courage. "} +{"id": "2000919", "video_name": "17a77921-68f6-5afa-8fd5-3771f073ad4c", "text": "very beautiful girl in swimming wear clean Volkswagen polo sedan "} +{"id": "2000920", "video_name": "314be815-f0d4-5e2b-a8ce-9f96d03d1302", "text": "a 3D red panda playing hockey under dramatic lighting "} +{"id": "2000921", "video_name": "df1d87fd-7975-5e1a-9a30-247eeb530c5f", "text": "show how a cell phone is smart, fast, and can handle a lot of info "} +{"id": "2000922", "video_name": "ac96e788-8b53-5d42-b0aa-cbd755ee6d06", "text": "generating video fantasy world with Hero "} +{"id": "2000923", "video_name": "2bccb012-dc94-5911-815b-03a504f0cb53", "text": "A Rabbit and a lion both of them are laughing "} +{"id": "2000924", "video_name": "76150c66-76ef-5756-8b93-f51e8d0539f6", "text": "restaurant robot working on serving customer. "} +{"id": "2000925", "video_name": "83667cee-c503-5c19-9156-f57351efb4ed", "text": "a man stucked in infinity loop "} +{"id": "2000926", "video_name": "1e1b5c30-f240-5c2a-a023-18e26ad1961a", "text": "In the cozy village of Willowbrook, Ella gazes at the horizon, daydreaming about distant lands. "} +{"id": "2000927", "video_name": "069a9689-6776-55b4-9597-c5ae79eefa05", "text": "what i just do all day is put on shoes "} +{"id": "2000928", "video_name": "ed4dd140-a00d-52ac-9bed-70fc459f5cc0", "text": "The green dome of the Prophet of Islam in the city of Medina, Saudi Arabia "} +{"id": "2000929", "video_name": "fb540b73-fb30-52f6-81ff-6c6ad9271592", "text": "rooster sits in a cage in an old dark house "} +{"id": "2000930", "video_name": "ef8e55c0-584b-5cc6-9296-180270512c9b", "text": "comedy talks between two cats in Hindi names are sunny and tunny duration 10 mintues "} +{"id": "2000931", "video_name": "d597b435-de54-5efc-b7a0-202583cd2d6d", "text": "Canted Angle Rome julius caeser entered the city after defeating Galliae "} +{"id": "2000932", "video_name": "cb878bdd-86cf-538b-8422-df9f4ced8511", "text": "happy birthday the teacher and the teacher so happy and the teacher take the cake "} +{"id": "2000933", "video_name": "de14e634-5c58-509e-8791-45875eedefc1", "text": "An ultra realistic high detailed portrait of a butterfly flying with the wind, realistic, cinematic, high resolution. "} +{"id": "2000934", "video_name": "a6dcde3c-c2b8-5839-b457-ef7c0be2b01c", "text": "Visualize Rahul actively participating in pilot training, showcasing his increased energy and dedication to achieving his goal "} +{"id": "2000935", "video_name": "4c8002f3-7b04-5f01-bda1-f41a88c57b56", "text": "wide angle Group of 5 to 6 elderly African leaders in burnt orange robes sitting around a a campfire speaking "} +{"id": "2000936", "video_name": "7f5dffbe-0231-5aa4-8a5f-a83507ededf8", "text": "a cucumber singing in the rain, bystanders watching,under an umbrella, cinematic 4k "} +{"id": "2000937", "video_name": "cc308680-5e73-51fb-8136-2148eafdedde", "text": "Beams of light shoot in all directions out of the Triforce "} +{"id": "2000938", "video_name": "7768878b-1e73-548f-b75c-422781e1d1b3", "text": "siluet style, deer in the jungle "} +{"id": "2000939", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "a man practice chinese kongfu at mountain "} +{"id": "2000940", "video_name": "1cab61b9-a281-5e1a-bdf8-ae93e590c820", "text": "a beautiful alia Bhatt walking in time square , wearing black dress , at night "} +{"id": "2000941", "video_name": "e4054ec1-988b-5550-a8bd-61cb2af6abaf", "text": "the jungle, and all the animals respected and feared him. "} +{"id": "2000942", "video_name": "ab66eabc-8eca-5126-b4a6-53cf4d468db2", "text": "kind hearted kid sitting on grass "} +{"id": "2000943", "video_name": "e6e33048-a3df-5034-aa43-c0c1efbe34f0", "text": "Group of business people walking into office "} +{"id": "2000944", "video_name": "5f9212e2-97c7-56f9-8a0a-52e542f6f2f2", "text": "cinematic film of a couple arguing at their home because of untidyness "} +{"id": "2000945", "video_name": "83c0e243-ad47-5f23-8917-fa40ccdcc5ad", "text": "an angel in front of a woman and a man in first century clothing "} +{"id": "2000946", "video_name": "d216d016-e8be-5ef5-8276-1c5b31b15d3c", "text": "The Sun is Rising in subtlemud "} +{"id": "2000947", "video_name": "b15f3a40-1aa0-557d-ae51-1bd097ee369f", "text": "tower from tower defense game in Stone age setting, 3d, low poly, cartoony, minimal "} +{"id": "2000948", "video_name": "32a427f6-c396-5a1f-b033-f75c46f70a42", "text": "Conclude with the image of the girl and her doge, their hearts aglow with the magic they discovered, as they continue to explore their own world, cherishing every adventure. "} +{"id": "2000949", "video_name": "b70ac58b-aef6-5407-91d6-ac8ccd878651", "text": "a teacher enter in to the class room "} +{"id": "2000950", "video_name": "f0810c2f-5cf2-54f7-bd38-ef5d5b835a43", "text": "black metal music band playing, 8k, sharp focus "} +{"id": "2000951", "video_name": "ef534a8b-931d-5924-818b-d3456841ba30", "text": "rama in ramayan walking towards a dense forest with his brother laxman "} +{"id": "2000952", "video_name": "416a71d9-4fd8-5888-be03-875178488da6", "text": "Once upon a time, in the cozy little town of Willowbrook, there lived two best friends named Lucy and Alex. They had been inseparable since they were toddlers, and as they grew older, they shared a deep love for Halloween. "} +{"id": "2000953", "video_name": "b87ee00e-3565-5743-9c0e-ea8e6e85de1e", "text": "ghangis khan eating in some modern restaurant "} +{"id": "2000954", "video_name": "50410b20-78ea-51f2-b3e7-3f1982ba958b", "text": "Within a retrofuturistic nightclub, neon lights dance to the rhythm of electronic music, creating an otherworldly atmosphere for the protagonist to explore "} +{"id": "2000955", "video_name": "85026ce5-82a6-5a83-b968-da8713061e54", "text": "penguin wearing Christmas hat playing with snow, animation, cartoon "} +{"id": "2000956", "video_name": "b260fc12-569d-5c80-a8bb-0b1892b95767", "text": "a millionaire dancing with money and everywhere "} +{"id": "2000957", "video_name": "0c396945-e06b-51e1-be52-206b69c43886", "text": "generate a picture of someone running from squirrles that are chasing him "} +{"id": "2000958", "video_name": "6e34e282-9d14-57a3-b6cc-00b2255b48c7", "text": "selfie video of tikola tesla with lighting all behind him sitting under a tesla coil "} +{"id": "2000959", "video_name": "23e751e6-202e-5c9d-b83f-a86df0ce55b9", "text": "shah of iran in vampire clothing "} +{"id": "2000960", "video_name": "77bbf698-c5f7-5bf8-92cb-9b9e2d0205db", "text": "the man look at screen stock market, considering, serious face, side view, in style 3d "} +{"id": "2000961", "video_name": "5770cf6c-d0a5-5eac-a52b-4860b87c17bc", "text": "A golden knight wielding a sword formed by lightning "} +{"id": "2000962", "video_name": "9659230d-cb7e-53c7-aab9-472933a54497", "text": "donald trump falling down extremely fast with no one around 8k realistic "} +{"id": "2000963", "video_name": "9280357c-7ed2-51f9-a137-94e95ba69c44", "text": "starwberry drop to a wave of milk, 8k, realistic, 200mm "} +{"id": "2000964", "video_name": "0b959ced-f029-59b6-af21-f52580738d41", "text": "cyberpunk future, people are flying through the city, cinematic 35mm lens, f 1.8, photorealistic, 1970s movie, dark mood, Photographic flares, "} +{"id": "2000965", "video_name": "b0973089-9909-5b6c-b4a4-4a7dc5ba4943", "text": "golden flower being regenerated by magical nectar "} +{"id": "2000966", "video_name": "965dc74d-1859-52c7-a7e0-0f1360dd1d3a", "text": "sky iluminated with only stars, a lot of stars. Ultra HD, Disney style "} +{"id": "2000967", "video_name": "9edf352b-f4f2-5472-9190-0e1f59300381", "text": "lot of shiny gold behind a huge wall, movement "} +{"id": "2000968", "video_name": "4e392629-8c07-556b-8ff7-a0191a73668c", "text": "A man and dog are sitting on the driftwood on the shore, splashes, Quint Buchholz, Alessandro Gottardo, "} +{"id": "2000969", "video_name": "a0f2b7f3-187d-5428-827a-a81e50bd3de5", "text": "anime boy with the power pf ying yang "} +{"id": "2000970", "video_name": "fba8831e-6d54-584d-b333-6835be2ddf34", "text": "Fluffy gathered the glistening water vapor from the surrounding atmosphere and started condensing them into tiny droplets within its fluffy interior. As Fluffy continued to collect more and more droplets, it grew heavier and darker, signaling the approaching rain. "} +{"id": "2000971", "video_name": "cf33a4ee-aa71-59d8-a5bf-1498f400b6fd", "text": "buying coffee and paying with bitcoin "} +{"id": "2000972", "video_name": "1f6153bf-c953-5c8c-9e58-6dc92ba3b5ca", "text": "Cyberpunk, city streets, A helicopter is landing "} +{"id": "2000973", "video_name": "69c7189e-f93e-5adf-8dc1-fc5b41fde951", "text": "make some kind of preview for the itoj text "} +{"id": "2000974", "video_name": "db5db946-88c0-5a63-a9c6-c57c9eae89a4", "text": "Little Girl swim in a lake "} +{"id": "2000975", "video_name": "baf30143-f17a-5fd9-b23a-61a9be878545", "text": "adam driver beside an active volcanoe "} +{"id": "2000976", "video_name": "ea80ee7b-93f5-56ed-82cc-ce2e3e9fa125", "text": "a french canadian carpenter framing a garage truss "} +{"id": "2000977", "video_name": "b856b3cb-03a2-55f1-96d6-34e6790bb93d", "text": "Stick Man and Winter and Kids and Stickman Story "} +{"id": "2000978", "video_name": "b6d943b9-a34f-5588-902e-82da37e2503f", "text": "starry sky, planets, comets, spaceships Message: SVETA (Font: MODERN) "} +{"id": "2000979", "video_name": "24818ece-59ab-591a-aa60-f64319007ce5", "text": "A cascade of wealth spills forth in every direction, and the room sparkles with the allure of ancient and priceless artifacts. "} +{"id": "2000980", "video_name": "5f7838f2-443e-5b5d-a4e8-00a953e13e98", "text": "slow and subltle movement and zoom in image "} +{"id": "2000981", "video_name": "b390e7d9-e8ed-5169-8e71-890fd6dbc21d", "text": "Star Wars starring guinea pigs only "} +{"id": "2000982", "video_name": "c8449913-1d09-554b-9547-3069967deca0", "text": "a table full of pencils of various sizes and colors, realistic photo Message: 1 Attachment "} +{"id": "2000983", "video_name": "d007cd11-7b74-5ef3-897d-b6079840db8f", "text": "scary robot terminator comes out of the fire "} +{"id": "2000984", "video_name": "a69d99fc-45db-5726-8f6e-8292c275e1a9", "text": "Describe the strange occurrences that begin as the clock strikes midnight. 3d animation, 16.9 aspect "} +{"id": "2000985", "video_name": "e1f8bc76-a6f7-5105-af77-ced34113359f", "text": "Edgar Allen Poe as a used car salesman "} +{"id": "2000986", "video_name": "d86e3a05-2f8d-55a2-a21b-0adba245207a", "text": "cartoon illustration of kids celebrating lord Ganesha birthday "} +{"id": "2000987", "video_name": "6995c109-bdd4-5280-89d6-4c949b738142", "text": "Alex accepting the trophy with a grateful smile. "} +{"id": "2000988", "video_name": "c24db95a-1601-50f2-a7b0-03b1065509f5", "text": "psychedelic style mosquito flying in a swamp "} +{"id": "2000989", "video_name": "f5dabb84-e802-530d-9596-dec5cfd83bcf", "text": "moon rise up from the bottom Message: Happy Festival (Font: MODERN) "} +{"id": "2000990", "video_name": "bd62dca6-b4ec-5197-8506-3d771d38f8d1", "text": "Zen bamboo environment, vector, 2d casual game art, cartoonish "} +{"id": "2000991", "video_name": "93295062-4ae0-51a1-88af-9b8f0144fe7d", "text": "Orcas, intelligent marine predators, ecosystem role, global presence, diverse prey, ecological balance, indicator species, ocean health, conservation, marine ecosystems preservation. "} +{"id": "2000992", "video_name": "ab3375f3-605f-580d-acbe-b881eff80f10", "text": "move your head, blink your eyes and see a lot of movement "} +{"id": "2000993", "video_name": "eb31eaef-de88-5136-80f3-1cbb86895fe2", "text": "A man walks down a city street. The street is full of people and the buildings are tall and brightly colored. The man wears a hat and scarf and walks with his hands in his pockets. The sunlight shines through the clouds and the sky is blue. The man walks slowly and thoughtfully. His face is serious and his eyes are fixed on the horizon. "} +{"id": "2000994", "video_name": "cb4e5962-0d05-5574-a575-b3207fbafd5f", "text": "JD Supermarket number, shuttle on the sea surface about to sunrise. Navigator JOY, standing at the bow of the ship, observing the surroundings through a nautical telescope. "} +{"id": "2000995", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "Batman with a future hi tech armor with nanotechnology and cape "} +{"id": "2000996", "video_name": "7d549eb5-9226-5b7b-9cf0-2632a313671a", "text": "create a picture with a boy who walk through a dark big town "} +{"id": "2000997", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "glass bowl, place on a table, filled with chocolate pieces melting into liquid "} +{"id": "2000998", "video_name": "ca384d8f-2bd8-5a08-b3cd-ef4f18ff25ca", "text": "Colour photograph from the 1860s showing creatures posing as a result of medical experiments to mix humans and jellyfish, a successful experiment, secret archive photos,shot on cameraLeika i super quality "} +{"id": "2000999", "video_name": "a051e19e-f6e9-5953-a9c8-438cb3c6ed72", "text": "A group of white female ghosts dancing in the wilderness, scary, simple, wrought iron, eerie, victorian, photo, film, typography, very realistic, handmade, 8k, photorealistic, poster, 3D rendering, dark fantasy, vibrant "} +{"id": "2001000", "video_name": "aee72a94-8f8d-5bb5-aa00-8294183393e9", "text": "The camera slowly zooms in, revealing the brilliant lights of the Shanghai streets at night in Shanghai. "} +{"id": "2001001", "video_name": "ffcfc219-0062-5cd1-a6e1-fb8a0c874bd5", "text": "slardar dota 2, quickly crawls into battle and flies into battle "} +{"id": "2001002", "video_name": "c5105559-fdbc-57fd-8e8b-b6b0684d099a", "text": "a catacomb full of old bones Message: COLLECTORS IN SPACE (Font: MODERN) "} +{"id": "2001003", "video_name": "0383909a-28f9-55f2-9df2-bc9e5d7ac2a5", "text": "Isabella and Max, her loyal dog, navigating treacherous terrain, confronting creatures of the night, and overcoming terrifying trials "} +{"id": "2001004", "video_name": "46de60e3-b50c-5e22-a2c6-1c4bd8d6b551", "text": "Take viewers inside the abandoned cabin, emphasizing its eerie atmosphere. Explore the details within, including broken windows and creaking doors. Use lighting and sound to create a sense of foreboding. "} +{"id": "2001005", "video_name": "f47e0ab6-38c7-5e5c-bda2-e8c340779b8d", "text": "a black handsome man with long dreadlocks standing next to his older father who has gray long dredlocks and pointing at a distant mountain in a desert plain. Right next to the mountain, there is a pillar of fire coming from the sky down to the ground. On the peak of the mountain, there is a cloud that is radiating a bright light. "} +{"id": "2001006", "video_name": "120e6eec-30d5-52a5-b27a-29d5ca542f1f", "text": "splash water on the surface of leaf in cinematic look "} +{"id": "2001007", "video_name": "59a46871-0a14-5b20-99e7-8cd2058a2d64", "text": "s23 ultra shinning shadw and glitter wallpaper "} +{"id": "2001008", "video_name": "649e9e93-09c8-5e70-bc8d-fbcea5c24141", "text": "Israel begins three weeks of attacks on Gaza after rocket barrages into Israel by Palestinian militants, who are supplied by tunnels from Egypt. More than 1,110 Palestinians and at least 13 Israelis are killed. "} +{"id": "2001009", "video_name": "1dbb3f4d-489c-5f6b-b2eb-282356ae1ec3", "text": "of 2d pixel horror video game still of lots of vampire bats flying though night sky "} +{"id": "2001010", "video_name": "20e02291-c510-5a72-bfdc-1476e9be8b9a", "text": "name tag with the name Bob written on it "} +{"id": "2001011", "video_name": "eb99b443-b971-5570-8a12-b9607f7d2ec6", "text": "eight goldfish swim back and forth in the pond, and lotus leaves slowly sway"} +{"id": "2001012", "video_name": "4beb5f0a-674b-52c2-8b8e-a5a161d1ace8", "text": "A little elephant is playing soccer with a big ball, and the ball is rolling somewhere far away. "} +{"id": "2001013", "video_name": "8ffcf2d7-b194-54c9-a251-699eed23dd1b", "text": "super hero in a formal suit cheering the people "} +{"id": "2001014", "video_name": "3b9bf134-51d8-5c71-9995-665f55573ca0", "text": "the Great Wall of China Message: green (Font: MODERN) "} +{"id": "2001015", "video_name": "1059688c-e029-5606-babe-e2fea58e047d", "text": "squirrel gliding in jungle 3D render animation "} +{"id": "2001016", "video_name": "fe37f71c-d63a-5fc1-8681-d4f1419d0685", "text": "zoom in golden fruit hanging in golden yellow tree with waterfall and green mountain background "} +{"id": "2001017", "video_name": "1fc54d9c-7e5f-575c-8769-cd9f5098f9f5", "text": "Old age that people are eating raw vegetables, fruits and raw meat "} +{"id": "2001018", "video_name": "be918c23-f72f-5753-8fbd-0cae8c17d14f", "text": "family spend time together. Video should be in slow motion "} +{"id": "2001019", "video_name": "2681632a-9f98-581d-9741-db21a31adf95", "text": "Once upon a time, a man found a butterfly that was starting to hatch from its cocoon. "} +{"id": "2001020", "video_name": "7805357b-648b-5589-823d-b0d4d7e59941", "text": "Lady Gaga having a bath in a huge soup bowl, Peter witkin style, Red and wood tones color scheme "} +{"id": "2001021", "video_name": "b858616e-6a58-53be-aa58-53e9ce268715", "text": "A man who plays the guitar in the evening. "} +{"id": "2001022", "video_name": "aa8577cc-08bc-57b6-99c8-af5f5a79ebd2", "text": "Gomer Pyle getting in to a fight with Billy Eliot "} +{"id": "2001023", "video_name": "7e7e4eb8-6d0a-5a12-b671-15e93d13192c", "text": "animated Cartoon logo with the letters HPE, Sharp edges and clean Lines, chrome borders in the style of the sixtys "} +{"id": "2001024", "video_name": "e6ff0721-c146-5011-a45c-857fe1f9664d", "text": "the darkness is coming. It is inevitable. "} +{"id": "2001025", "video_name": "62285a70-8715-5784-98df-08446b48846d", "text": "artistic video of cultural heritage of nepal "} +{"id": "2001026", "video_name": "bdbee1c8-8647-561f-b396-066ed642f9e8", "text": "lots of people dancing punk, RuffMercy style "} +{"id": "2001027", "video_name": "83d70467-c997-5315-b715-44d65224910c", "text": "animated video of the fusion of multivesicular bodies with the plasma membrane "} +{"id": "2001028", "video_name": "dde7c066-4407-56b7-8c78-a4689453e119", "text": "billgates elon musk jeff bezos all in same room laughing , digital art , depth of field , "} +{"id": "2001029", "video_name": "58830af4-7b45-5b61-8d6d-c768416bb6aa", "text": "Point of view from floor on a girl in a short skirt in stocking "} +{"id": "2001030", "video_name": "e30ea473-4ddd-5a51-9b12-630d9651b3be", "text": "flowers coming out of bud in the rain,realistic "} +{"id": "2001031", "video_name": "3ee37626-3037-5e43-858d-8a9b31838f9a", "text": "a young man looking at his fancy coffee then drinks it "} +{"id": "2001032", "video_name": "1b80461c-7ce2-5a7a-9aa4-71264f90186c", "text": "A glowing treasure chest with the word wisdom carved into the wood "} +{"id": "2001033", "video_name": "21b46e12-d973-524b-a78d-0f2789b6ee1b", "text": "alien that looking at a Pizza story "} +{"id": "2001034", "video_name": "93839927-4b68-5bf1-98d1-7b4beada55f3", "text": "A man is sitting at his desk in his office, on the phone. He is wearing headphones and holding a tablet. "} +{"id": "2001035", "video_name": "a8c96b9a-0d31-53db-940c-8defd3e88ef2", "text": "a graphic of a side profile of a man with 3 pieces of a puzzle "} +{"id": "2001036", "video_name": "3d868e2a-4808-5e40-84e1-5b50294f17ef", "text": "let\u2019s create an engaging post for my accomplishment to almost 300 followers on the x platform , let\u2019s get creative as we can "} +{"id": "2001037", "video_name": "d700c5db-fc90-5c38-acd1-dc15e8153823", "text": "A young man with expressive facial features stands out against the gray background putting on a mask that covers only the lower part of his face "} +{"id": "2001038", "video_name": "f3f77ce4-2c23-5a4a-bdd4-7044952f6a6c", "text": "fish a brilliant thinker among fish, often pondered the mysteries of the world beyond his pond. cartoon style "} +{"id": "2001039", "video_name": "740a2b1e-f407-5291-afac-a38e73c3e785", "text": "a cinematic scene in space of a large spacecraft Highly detailed "} +{"id": "2001040", "video_name": "4f0cdd1f-b531-5cc3-afe5-3b2d13272190", "text": "vibrant explosion spring colors pastels exploding in bloom "} +{"id": "2001041", "video_name": "c7baf2a7-2d44-5089-8c0a-6ff0f27a3f77", "text": "Lemmy drives an ice cream truck "} +{"id": "2001042", "video_name": "6df04899-ebc1-543b-80ae-68824264dfac", "text": "a sparrow with multiple layers of wings "} +{"id": "2001043", "video_name": "f490def3-c1a1-5860-a322-5c9561b5c77d", "text": "oin us on this cinematic journey as we unlock the wisdom, motivation, and joy that the silver screen has to offer. Subscribe now and let the magic of cinema inspire your life! "} +{"id": "2001044", "video_name": "385f5dd4-f65b-593c-9b79-097b20f3d938", "text": "Imagine ethereal hands gracefully shaping letters in the cosmic expanse, forming the foundation of a new world. "} +{"id": "2001045", "video_name": "4185a96d-7634-5c97-9df4-3223917a3b73", "text": "imagine barack obama and jefrey epstein chatting over a bourbon green "} +{"id": "2001046", "video_name": "9c247254-a735-5e52-bbde-0718401f45af", "text": "a cat playing with a football on a brown carpet in a white house "} +{"id": "2001047", "video_name": "cd73a6a8-ef60-5009-9e44-a3a121204305", "text": "They were both amazed by the beauty of the waterfall. "} +{"id": "2001048", "video_name": "45a8c426-c415-52aa-8635-5c40ac99e8ef", "text": "cinematic imax hd 4K high quality realistic graphics 1440p 1080p clear sharpen enhance imagery, movie shot of light skin teen that looks like the rapper TheHxliday with medium length all black dreads and outfit that includes trench coat with bat like features on him, bats flying around, foggy, creepy, night time, eerie scenery, apocalyptic vibes, modern time period, end of the world, evil, dark, a bit of dust in the air or smoke. "} +{"id": "2001049", "video_name": "de870ef1-6ddc-57c7-ac51-9faa219f78e1", "text": "massive metal disc covered in small lights high up in the sky falling through the clouds, dramatic cinematic perspective, occuring at sunset, firery sky, 8k "} +{"id": "2001050", "video_name": "458c0ea2-3160-52a0-9d13-c01aef514fe5", "text": "a girl playing violin in a kiosk in a steampunk style apocalyptic world "} +{"id": "2001051", "video_name": "af22ee50-d3ab-5ceb-a088-56632b0f29ae", "text": "Beach with bright Bioluminescent sparkling and moving water Message: klar.gg (Font: MODERN) "} +{"id": "2001052", "video_name": "d6287291-6741-596a-a233-114982294ed4", "text": "Produce an animated video showcasing the treacherous journey from Guayaquil to Quito on the pirate ship "} +{"id": "2001053", "video_name": "849ca17c-c8da-5860-94dd-34a06ea42abf", "text": "a woman wearing a black mask and a black outfit is coming from the future to make a warning of humanity about the apocalypses destruction "} +{"id": "2001054", "video_name": "a4b08213-915f-55f5-93b3-f1d8e8971869", "text": "Superman flying above the daily planet "} +{"id": "2001055", "video_name": "de4a243e-42e4-533b-bb0a-e566041685cb", "text": "Zac from league of legends fighting "} +{"id": "2001056", "video_name": "68152fbf-64e5-58e5-b7a8-03753d40dac1", "text": "22 year old American male, active personality, intelligent, not too fat, not too thin, white skin, short hair, real shot, student body president, Generation Z\uff0cHipster, cool, handsome, rich, DJ. Message: 1 Attachment "} +{"id": "2001057", "video_name": "45b9108d-4ddf-5eea-8dc9-51c311d63b02", "text": "dawn light in a buddhist temple Message: be in the moment (Font: SANS SERIF) "} +{"id": "2001058", "video_name": "ba0fa6f4-945d-5ab3-9b6c-39f4783dd586", "text": "elon musk walk in the camera face like a Conor McGregor walkin "} +{"id": "2001059", "video_name": "99dac730-ef09-56ee-92b3-258cd8f77bce", "text": "juicy spam pouring from an artists face onto a canvas in a run down building surrounded by art cops "} +{"id": "2001060", "video_name": "eea8f3c0-0991-5e92-8078-6be49d32bb0b", "text": "a scene of souls meeting in the heaven, white swirling clouds, 8k, cinematic shot, photo realism, photo realistic, ambient lighting, volumetric fog "} +{"id": "2001061", "video_name": "88320ab7-895e-5544-9d98-ee25d6abf9e8", "text": "thre ducks figthing over a food on the grass on a lovely beautifull magical field full of fairies. "} +{"id": "2001062", "video_name": "80714fee-667e-5bf6-ac48-05eda1cf4186", "text": "hyperrealistic picture of ancient time family, background from the past "} +{"id": "2001063", "video_name": "e20077f5-5480-50a8-bd84-58637da1f127", "text": "kenyan rugby team break away score a try with an incisive move at speed "} +{"id": "2001064", "video_name": "1c386a03-7a96-5020-a449-49d1e8bce520", "text": "Runner under Heavy Rain at night in a city landscape "} +{"id": "2001065", "video_name": "d67cc72c-9bd7-57c0-909b-85bb53aa2fd4", "text": "A young cute little girl in the front of a fantasy castle, surrounded by a lot of butterflys, sunset, magic, Disney, colorful "} +{"id": "2001066", "video_name": "91080bbe-f9ec-55ee-bbbe-f062b23a1b73", "text": "A little boy said this, looking innocently at a man sitting on a city staircase, looking into the distance "} +{"id": "2001067", "video_name": "b3c686af-72fd-56da-8dde-8fd09cf51999", "text": "faceless creepy haunted paranormal spirit slowly emerging from staircase in liminal space or backrooms type building with candles faintly placed on each step of the staircase in black and white 35mm film "} +{"id": "2001068", "video_name": "f035affd-7a6d-5525-9e31-848ca42c5ffc", "text": "illustrate an open bible while a light wind blows the pages of the bible. realism, ultra realistic, 8k "} +{"id": "2001069", "video_name": "e01c3daf-a83c-5c7f-975d-580d08c49e3b", "text": "barbie in pink dress holding cake in hand background with birthday party 4k "} +{"id": "2001070", "video_name": "341f1601-7af0-5a7e-814e-253984fff95c", "text": "a video of shaq being omar the ref "} +{"id": "2001071", "video_name": "4e49287a-a24d-57ba-85d6-8ca6e0cdbdcf", "text": "navigating a forest with tall green trees "} +{"id": "2001072", "video_name": "e005299d-48f7-5355-aa7b-ef4771394ae5", "text": "wings flying on the sky, pink blue sky "} +{"id": "2001073", "video_name": "082c4c47-5b85-5b2c-8051-0385358dca4f", "text": "Jesus on one side the devil on the other is a person in the middle "} +{"id": "2001074", "video_name": "379957ac-3c0f-578f-a566-2c7f104ed245", "text": "Julius Caesar talks to a massive army "} +{"id": "2001075", "video_name": "0eb12e86-ecdb-560c-8554-bf1bd51c6dbf", "text": "camera panning up futuristic flats council flats inner city night time raining cinematic 80s horror neon signs and lights dark lighting dark saturation old vhs tape aesthetic "} +{"id": "2001076", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "One lion ride a super bike with elephant "} +{"id": "2001077", "video_name": "f90b1475-769a-574d-91c5-a239ef9a3636", "text": "giant dragon head emerging from deei hole in the ocean underground eerie Hieronymus Bosch dream movie film art srrueal dien "} +{"id": "2001078", "video_name": "6eaaa138-f6d1-5fdb-a64c-121c4c8da87d", "text": "woman in see through clothes full body view "} +{"id": "2001079", "video_name": "79840704-4828-5346-877b-31e901bff39e", "text": "anime world city view, 4k, hd ,full focus, "} +{"id": "2001080", "video_name": "45444426-0998-5856-9b56-1620ac3ae6d9", "text": "dramatic slow motion silhouette video of 1 U.S. World War 2 soldier with walking through a hallway lit brightly behind the soldier with a mist all throughout. "} +{"id": "2001081", "video_name": "c3d16d0f-e4cc-5b43-9fa5-19a92399e877", "text": "turkish conservative old men doing aerobic "} +{"id": "2001082", "video_name": "48cab3eb-708e-55d6-be7e-00279689554f", "text": "dog gliding down to the fortnite map on an umbrella "} +{"id": "2001083", "video_name": "d09aab11-8314-5486-a940-adc1172873f9", "text": "He started by teaching them the letter \u201cA\u201d and explained that it is the first letter of the alphabet. He then showed them how to write it and asked them to practice writing it on the ground. The kids were excited to learn and started practicing. After they had mastered the letter \u201cA\u201d, the grandfather taught them the letter \u201cB\u201d and so on. "} +{"id": "2001084", "video_name": "babe83f6-a60a-5592-813c-c059e4694562", "text": "An anime character sitting at a desk with a computer in front of her and drinking coffee "} +{"id": "2001085", "video_name": "00808374-4478-57aa-8062-aa4fe1248ed5", "text": "luciano pavarotti play miserere song,black background,unreal engine,high angle sot from above "} +{"id": "2001086", "video_name": "14bb814a-c95f-5462-b685-eca119aa2e97", "text": "Bigfoot spotted walking thru thick forest from a far "} +{"id": "2001087", "video_name": "6de97dbb-b071-5e75-bd77-98ad8a3c52c5", "text": "Laptop screen screen recording windows 10 mouse clicks on the discord and tries to generate a video from text there and generates what I am generating now and so it repeats many times "} +{"id": "2001088", "video_name": "2bdd100f-3a0e-57ec-b69c-4292c54dc397", "text": "biggie smalls, cartoon, 1940, black and white, silent movie "} +{"id": "2001089", "video_name": "1294890c-3bb2-519a-990b-321a03a0e959", "text": "The First Noble Truth: A person feeling lonely. "} +{"id": "2001090", "video_name": "b920b3eb-3d05-5dc8-adc3-1265a2688432", "text": "Floorboard creaks loudly; Dave panics, hides behind the fridge. "} +{"id": "2001091", "video_name": "4404efb1-97ce-5055-8da6-9da48b2996e0", "text": "Vijay sitting with Leonardo Di caprio in a beach front with eagle on the top. 4k and natural lighting "} +{"id": "2001092", "video_name": "5cbcc729-7b60-52ac-8e66-815282947ef3", "text": "repeating circle galaxies, HD video, 8K "} +{"id": "2001093", "video_name": "67636b14-89e9-5310-ae1e-9194119e35de", "text": "cute cartoon moon in the sky with eyes,nose ,mouth ,with smilling face and hands "} +{"id": "2001094", "video_name": "718bbad7-3291-50e8-aaa5-71cb00c4951b", "text": "yellow submarine surfaces in lake with loch ness monster realistic 4k "} +{"id": "2001095", "video_name": "606b215b-45d1-53d9-8974-b9ba74112809", "text": "montage of images of different forms of communication and connection, such as phones, computers, social media, "} +{"id": "2001096", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "We see a nomad walking through the desert, from left to right, with a sun above shining brightly "} +{"id": "2001097", "video_name": "45f62392-8320-5eb9-ad1c-826cccac45b1", "text": "Create a stunning video with impressive special effects, demonstrating all the innovations and capabilities of iPhone 15 Pro Max "} +{"id": "2001098", "video_name": "4543f334-5de0-5d12-8302-9213d7bd8584", "text": "a dragon with two kids on the back flying "} +{"id": "2001099", "video_name": "0d060f03-a749-5cef-b166-bf69c1847e62", "text": "Fully embracing abstraction, the camera lens captures ephemeral moments: ripples in water, the flicker of flames, or the swirling patterns of smoke. The movements are set to a haunting, atonal soundscape, further deepening the enigma. "} +{"id": "2001100", "video_name": "ee722bb5-6b1f-5119-b5c0-767207cdb839", "text": "A cute young fairy smells a big flower in forest, stamens fly in the air "} +{"id": "2001101", "video_name": "6363ac30-e9ad-5f98-8556-be6f5eb9c934", "text": "The guru sitting in front of burning candles flickering, meditating. Cinematic, 8k , motion 4 gs 24 fsp 20 "} +{"id": "2001102", "video_name": "0e47f383-095f-53b0-afd7-9cbefd9f77c0", "text": "flowers moving, breezy, frangipani flowers, blinking lights "} +{"id": "2001103", "video_name": "2994e684-9794-5263-b77a-0004a611a237", "text": "heroic fantasy team with epic sword "} +{"id": "2001104", "video_name": "e6b909b7-83a3-507b-8331-756e9bbb1e83", "text": "create a finished logo , 2k image , with text Fire and search theme in mind "} +{"id": "2001105", "video_name": "a418ee88-45bd-5dde-b868-396e51252805", "text": "A tall Sicilian woman with typical Mediterranean features, realistic. "} +{"id": "2001106", "video_name": "b2147f64-4b74-5cbb-a3bc-c57bcb3088d6", "text": "anime of a girl going into a dark planet and making it shine with a touch "} +{"id": "2001107", "video_name": "c0aab156-2def-5b40-9a51-3180ed05d0ae", "text": "a little boy sitting at a table holding a plate, in the style of light maroon and gray, focus stacking, sensitive characterization, candid, use of paper, stanley pinker, photo taken with provia "} +{"id": "2001108", "video_name": "8fad8ba3-2d88-5c99-ae9b-b0283fa06ea6", "text": "Tom Cruise, gym, Zoom in, halt up weight "} +{"id": "2001109", "video_name": "ed328492-a58f-5732-a798-3559d1098492", "text": "coffee brewing, stream of moving coffee, steam rising, cup filling "} +{"id": "2001110", "video_name": "8646fc29-d93e-5e64-8745-b53e07a7a1d8", "text": "old vintage footage of 1970s, chile in unrest "} +{"id": "2001111", "video_name": "a1dfd22e-180a-5f35-93cc-8b082bdf1707", "text": "a man tied with a tree with rope, in a snowy jungle, struggling to get free, darkness, night time "} +{"id": "2001112", "video_name": "db2994f6-99d9-5a73-9c71-2ba71dd086f9", "text": "Mr. bean and chalie chaplean having convesation "} +{"id": "2001113", "video_name": "0f04b5d8-e4cf-5460-ae84-b927ed77cd2f", "text": "5 years old girl, Cartoon, Pixar style, walking on the park "} +{"id": "2001114", "video_name": "bee0cdaa-bf79-586a-9144-9841705ff99c", "text": "a man in a red jacket looking at his cell phone, cool red jacket, red fabric coat, red suit, flamboyant clothes, red elegant shirt, wearing red formal attire, floral clothes \u201d, dominating red color, summer color pattern, monochromatic red, bright colors with red hues, rich bright colors, red sweater and gray pants, red and black suit, cgi, 1024K "} +{"id": "2001115", "video_name": "df88cc33-c45d-5087-95a0-df73c159af56", "text": "The Erikson\u2019s Elementary School Message: BALLS (Font: MODERN) "} +{"id": "2001116", "video_name": "1c73fbd6-f55c-5dd8-a2a1-def7499d4bc8", "text": "iphone 15 on the space, 3D, 4K "} +{"id": "2001117", "video_name": "d890d8bc-e169-5e32-aa3b-80c0bd7477be", "text": "agenda 47 signs in red white and blue, lens flares, super 8mm film, 2.20:1 ratio "} +{"id": "2001118", "video_name": "6de7b8f4-8745-503e-ab74-936d826d0f85", "text": "Young woman in her mid 20s, black long hair, abs, wearing a black crop top, modern black jeans, belly dancing befor a big waterfall doing sunset while smiling. "} +{"id": "2001119", "video_name": "ac62e7a5-d5be-5031-b587-d72299ed1d37", "text": "little chihuahuas, cuteness, mint colored Message: Desiree (Font: MODERN) "} +{"id": "2001120", "video_name": "71207d2a-2608-5eeb-9d5f-b9e55d983fe0", "text": "an planet and one spaceship like city revolving around the planet slowly "} +{"id": "2001121", "video_name": "a9fd9258-7912-5ee8-bc39-7824ac9c73a3", "text": "3d model pix style young boy talkin facing camera "} +{"id": "2001122", "video_name": "47d31775-cd03-5f1b-8f32-76ae06ed38b2", "text": "Freddy Krueger scraping his hand on the wall by Wes craven "} +{"id": "2001123", "video_name": "15e83bac-1380-5e50-bfc5-47e6ad5965e5", "text": "confluence of two rivers with all colors "} +{"id": "2001124", "video_name": "7273036b-0204-594f-8537-a0aadf85254a", "text": "Fascinating shapeless views of HD 189733b, featuring a massive star and colorful gases. "} +{"id": "2001125", "video_name": "cb98c0ab-29f4-5758-9da0-77c791beee33", "text": "a plate of delicious food, viewed through VR glasses "} +{"id": "2001126", "video_name": "9b3c58a6-5959-5c9f-abba-a6fd5d6f1de9", "text": "Put the car in the plane and push it to go faster "} +{"id": "2001127", "video_name": "d8e4a681-6795-5ca7-a58f-ee9492b7ffa4", "text": "a tennis ball bounces on the ground and on the way up, it transforms into a hackysack "} +{"id": "2001128", "video_name": "78ee6f98-5ffb-5f31-8354-7a2c5ea6efed", "text": "2 men fighting with lightning on a high mountain pixel art style "} +{"id": "2001129", "video_name": "695fe71f-7de9-5bb5-869c-bb1311474555", "text": "four men are raising a dead tiger body by their hands, and walking through the jungle forest, cinematic, 16:9, zoom in, HDR, realistic. "} +{"id": "2001130", "video_name": "00bc2c12-3970-5d1b-8f07-a2aa9aebdf1a", "text": "girl is dancing and bomb is blasting jet is exploding, soliders is running "} +{"id": "2001131", "video_name": "6cdcff49-5fc7-52eb-bf44-04fdad238f64", "text": "a bunny with hat in the grass "} +{"id": "2001132", "video_name": "0fbe3045-52ed-53fa-97cd-38c07b7780b2", "text": "a superhero fighting against a monster on the moon "} +{"id": "2001133", "video_name": "4da51855-ed59-51b7-9029-20a886c4d906", "text": "The two friends stumbling upon the entrance to the mysterious forest, curiosity lighting up their faces. "} +{"id": "2001134", "video_name": "71d37023-c818-59a2-9fdb-e29245374ddf", "text": "a group of people celebrating after succesgully escaping a library archive escape room "} +{"id": "2001135", "video_name": "610d1529-e5d7-5f4c-88bd-9b732d6b45e7", "text": "Show modern conservation efforts to protect beaver habitats "} +{"id": "2001136", "video_name": "431449d6-1809-5358-9423-10626d1231ce", "text": "Dog running in the snow, 32K "} +{"id": "2001137", "video_name": "7c831ab3-ac00-5c9d-9da0-73a87fe664ef", "text": "John Burningham and Pascal Campion animation of dr manhattan "} +{"id": "2001138", "video_name": "7725f6ad-4246-517d-975c-612d4b3217a9", "text": "an illustration Milton Glaser style of a big mouth door "} +{"id": "2001139", "video_name": "7bed6828-5cdc-5f0a-829a-b4f6bc7eb8a2", "text": "the moon cracking open and revealing a giant alien baby "} +{"id": "2001140", "video_name": "986ab90e-62bc-5dbf-83ed-ddfa8db6664d", "text": "P\u0131t\u0131rc\u0131k discovers his unique talent, the ability to tell stories. P\u0131t\u0131rc\u0131k enchants other pandas by telling his own colorful story, 3d animation, realistic, 3d, 8K, "} +{"id": "2001141", "video_name": "413bcc83-935f-5614-94c9-8832e69e8bc6", "text": "guy washing futuristic shiny black Lamborghini spraying water of the roof with water hose in his hand only arm and hand holding hose is captured in the frame. No image of guy "} +{"id": "2001142", "video_name": "edb87d14-410e-5fbc-a755-c1ba006df63c", "text": "a girl and a boy of 14 years old in medieval clothes fall into a dark crevice, it\u2019s dark around "} +{"id": "2001143", "video_name": "e697175a-6b64-593a-b135-2acec457ca1b", "text": "six lovely cat walking in the tree "} +{"id": "2001144", "video_name": "f9250db3-cee0-5c19-88ae-507bc4eb5c0e", "text": "Yorkshire terrier dancing on its hind legs "} +{"id": "2001145", "video_name": "3b673be6-4b1e-555b-88f7-1d5996ca6294", "text": "sprinkle of salt is added to beaten egg in bowl "} +{"id": "2001146", "video_name": "8b2209f5-e823-520f-ac15-6ecdb0cd8a4a", "text": "a portal where all the superheroes converge "} +{"id": "2001147", "video_name": "2a08de47-741a-5e08-9e23-b14e9c75fc02", "text": "cat drinking out of a coffee mug and reading the newspaper "} +{"id": "2001148", "video_name": "5004a315-a712-5360-bbca-805cfe5852c5", "text": "Transition smoothly from the opening shot to various scenes of Kathmandu. Show the bustling streets filled with people, the intricately designed ancient temples, and the vibrant markets teeming with colors and activity. "} +{"id": "2001149", "video_name": "55bbbe68-d829-53a2-9a75-a7015232ef2b", "text": "Uchiha Itachi opens her eyes and jumps "} +{"id": "2001150", "video_name": "4eab06c9-05dd-5679-ace6-9a6abb9b9424", "text": "scifi future cyberpunk sturgis rally gorgeous female androids "} +{"id": "2001151", "video_name": "88f260e8-b97b-56f4-b35e-54703cb993c5", "text": "inside a sunk ship underwater with fishes "} +{"id": "2001152", "video_name": "e96b4ec5-97ec-5369-a708-a13b381f3e04", "text": "the end of the universe, pouring into the infinite abyss, motion 4 "} +{"id": "2001153", "video_name": "4cf0b9ab-2560-5638-b384-277b39a40148", "text": "Tamatoa crab from moana in anime style "} +{"id": "2001154", "video_name": "198fb4a2-8394-57b1-ba8a-deb7669f61e7", "text": "a servant of the king with a tray stands in front of the king, place Egypt, time 0 A.D., side view "} +{"id": "2001155", "video_name": "3c998cb6-7b9f-578d-8128-9bb070018e91", "text": "medium shot, torso view up, of an Indian manager Suumit Shah in the street of Bangalore, he checks messages in his mobile phone, smiling, comic city, graphic illustration, comic art, graphic novel art, vibrant, highly detailed, length 5 seconds "} +{"id": "2001156", "video_name": "d2431866-9cd2-5eb1-a86b-910fe61054ac", "text": "make a background, bubbles and ovals in the form of volumetric and flat figures in blue, white and blue colors "} +{"id": "2001157", "video_name": "1976c767-8e12-580a-88d1-7cb1085f7d61", "text": "Girl standing in front of toy store window on a snowy day at christmasmas time in 1960s Charlie Brown Christmas Animation style. "} +{"id": "2001158", "video_name": "b6641f07-30a3-5a4a-a502-58fd9e210934", "text": "Describe the daily life and routine of Kusam, the woodcutter, who lived in a town years ago. How did he sustain himself, and what motivated him to venture into the jungle for cutting wood "} +{"id": "2001159", "video_name": "0bb9ff7d-4a1a-52de-a68c-7267c952a866", "text": "Pickachu playing the trumpet with 3D glasses "} +{"id": "2001160", "video_name": "728916c5-f8b4-55ce-b2a4-6a085e07d865", "text": "Brief clips of therapists working with patients in various therapeutic settings. "} +{"id": "2001161", "video_name": "4011d71f-c0a8-5eee-9a35-704eb4819086", "text": "a tatoo idea to describe i am the child of this very big vast universe "} +{"id": "2001162", "video_name": "211e2ba1-35e5-5397-a474-5efdf01ac987", "text": "Illustrate Fox spending time alone, watching his friends from a distance, and sighing in loneliness. Convey his longing for companionship, cartoon style, 3d "} +{"id": "2001163", "video_name": "1f387385-2c44-52db-a980-c256c6d94fb4", "text": "A guy playing Magic The Gathering cards surrounded by creatures from the playing cards "} +{"id": "2001164", "video_name": "48b4f10f-7461-5490-ac6b-f954d2265c5b", "text": "animated gun fight cowboys in desert "} +{"id": "2001165", "video_name": "c58f10ba-fcb9-5d03-b5c7-25d2c014e16d", "text": "body temperature and blood pressure rise normal "} +{"id": "2001166", "video_name": "9a31423e-8443-5d37-bd13-e5ea9e470ae5", "text": "Dancing ants capturing monkeys and dinosaurs coming to crush them, with flying aliens in the background "} +{"id": "2001167", "video_name": "fb60cc1b-2b4a-5beb-9931-db9bc21078ab", "text": "Boy, flying saucer hovering over the boy, apocalyptic city, 8k, cinematic "} +{"id": "2001168", "video_name": "6c641406-51e2-5791-bfa3-c310eda2060c", "text": "When two small children were playing together, a small fight broke out. "} +{"id": "2001169", "video_name": "7aa03d1a-7967-58db-b215-ed5ccf2b11b8", "text": "Title: The Alien Invasion\nText: The year is 2123. Aliens have invaded Earth, putting humanity in danger of annihilation. A group of rebels led by Lara try to resist the invaders, using improvised weapons and stolen technology.\nStyle: Science Fiction\nMusic: Tense\nNarration: Explain the context of the story in first or third person. "} +{"id": "2001170", "video_name": "82c5335f-9431-5769-8f62-67039ceb486a", "text": "the man rides in an elevator "} +{"id": "2001171", "video_name": "54c55703-c3e5-51bf-86ea-d21893a64cc3", "text": "a machine gun in a room "} +{"id": "2001172", "video_name": "95ebeb69-aeb5-5472-9382-d999708d63d4", "text": "The relentless sun beat down on the barren desert world of Veridion, its scorching rays turning the sand dunes into waves of shimmering heat. "} +{"id": "2001173", "video_name": "9ada1f7a-cbeb-574c-b689-d070244f1fd7", "text": "A female soldier crew talks with a Male Scientist wearing a metalic helmet, in a futuristic yellow street, wire and cables plugged onto the metalic helmet, movie scene from 2001 space odyssey, cinematic, extra detailed scene, stanley kubrick, retro futurist "} +{"id": "2001174", "video_name": "8676b1b0-c618-512c-a94b-08950e432348", "text": "winding road stretching towards the horizon "} +{"id": "2001175", "video_name": "a017cc11-1a9c-50dd-9701-93bf823b50c7", "text": "snowing, camera zooming out,the tree is shaking room in a girl "} +{"id": "2001176", "video_name": "74c37120-ad72-5e51-8d40-ef24c7e07b97", "text": "green and black bubbles on black background "} +{"id": "2001177", "video_name": "f807ce64-b9d1-59f9-b4a6-f4f78870ae52", "text": "police helicopter fly over cannabis field "} +{"id": "2001178", "video_name": "4e59683a-7a30-5cc5-bd2d-6e658112e424", "text": "Guardian of the light fighting the evil in a heroic fantasy movie "} +{"id": "2001179", "video_name": "df591288-d15e-55a9-b9d8-53ee0add84d7", "text": "This cat stands in place, swaying its body naturally from side to side, then looking left and right with its eyes from time to time, followed by a slight smile, as a theatrical performance, the ball in its arms also spins, and the hat sways slightly with the natural movement of its body. "} +{"id": "2001180", "video_name": "766d1b94-0908-51cb-8ad1-9192423533fd", "text": "Animated style, Winnie the Pooh dancing in the forest "} +{"id": "2001181", "video_name": "3bc68d69-2a1e-5f78-8716-cf7b734fe136", "text": "jesus smiling, happy, close up walking "} +{"id": "2001182", "video_name": "aea948d6-79de-5b99-bff6-53cdcb12d4a1", "text": "birth of the universe, galaxies,Big Bang,real "} +{"id": "2001183", "video_name": "119b4f2c-55b4-5e8e-9975-20e35b0a33fe", "text": "In a medieval kingdom, a young squire stumbles upon a portal to a futuristic world "} +{"id": "2001184", "video_name": "1293ee7f-f74e-54d6-b2a4-1ca9948fa8d5", "text": "samurai walking through puddles of ketchup in a cave where monsters in the elder scrolls style "} +{"id": "2001185", "video_name": "94245d70-afaf-5d17-a49a-443c16c9094c", "text": "alien cat in devastated battlefield looking down at camera at night photoreal "} +{"id": "2001186", "video_name": "74d6d600-df38-54a5-a81c-51ad20206614", "text": "a colourfull alien in alien world cute "} +{"id": "2001187", "video_name": "81193ae4-face-5bd2-b408-3f6d0be08f0d", "text": "a city where metro running beautiful view \nBuilding "} +{"id": "2001188", "video_name": "aec71146-52a7-534f-9269-967a387d8969", "text": "the man was playing mobile legend sit on chair "} +{"id": "2001189", "video_name": "bdc752e8-cd45-59e7-9d61-92568f6cea39", "text": "fairy tie with CHAIN in the well,zoom in "} +{"id": "2001190", "video_name": "119f5c81-4f37-5bc4-9358-a4d702d1aea7", "text": "a horse wearing glasses working in an office, 2d animation, realistic "} +{"id": "2001191", "video_name": "fec0e67d-12fb-5298-91dd-2a94a66fd6e2", "text": "Pharaoh Hound: Believed to have been bred by the Pharaohs of ancient Egypt, used for hunting. "} +{"id": "2001192", "video_name": "7875763e-d808-5d5f-add0-8ea27338ce5b", "text": "Audi RS7 2023 going really fast on the streets of Almaty city, Al Farabi street. "} +{"id": "2001193", "video_name": "2e870a87-23d6-5117-a683-b974e04ab470", "text": "camera moving to right showing man smoking cigar type vhs creepy jack stauber animation weird unsettling nostaogia "} +{"id": "2001194", "video_name": "622f4d0c-40af-5efc-b519-dbbaaf285f74", "text": "reate animated architectural isometric concept sequence diagrams using different shapes that unveils an innovative paradigm in residential tower. use curved shapes that Illuminate the interconnection of shapes that blend into one another, forming a union of shared community spaces. bjarke ingles "} +{"id": "2001195", "video_name": "dd4d9250-e455-58e5-8028-5f7568f9e887", "text": "a music video telling a story in the style of metallica music videos "} +{"id": "2001196", "video_name": "7017723f-6a1d-591e-b35b-a3c9ca9ec0b8", "text": "floating, DragonBall Z art style Message: 1 Attachment "} +{"id": "2001197", "video_name": "e5271616-7b7d-58ec-851b-f014b1d4692a", "text": "an AI drawing on a canvas "} +{"id": "2001198", "video_name": "682c71ff-f5b6-5404-ab33-0480edd84623", "text": "foam in the air Message: A (Font: MODERN) "} +{"id": "2001199", "video_name": "b59f95fa-e485-5f0c-94d6-f9e266c54cd3", "text": "one string made of gold oscillating on a terrible universe "} +{"id": "2001200", "video_name": "050393da-569e-53f1-b351-4c20179b625a", "text": "a light temple zoom out with warriors versus clerics on battle "} +{"id": "2001201", "video_name": "1b2ee612-aede-52f8-857e-db50b4552c98", "text": "a blue, red and blue squares that are in blue and red in a grid, in the style of bridget riley, light gray and orange, debbie criswell, decorative relief, isometric, limited color range, animated mosaics "} +{"id": "2001202", "video_name": "5422fc4a-a306-5a97-a927-d824ee177804", "text": "Describe the ancient haveli in Kolkata where the priceless clock is kept. "} +{"id": "2001203", "video_name": "98839871-617c-5457-be40-8339b9b4ea17", "text": "In the middle of the clearing was a large oak tree. "} +{"id": "2001204", "video_name": "0e1ec599-e587-5023-9226-d699df984492", "text": "lufthansa plane flies into tv tower in alexanderplatz berlin, camera follows the plane, crash, war, 4k, cinematic, 16:9 "} +{"id": "2001205", "video_name": "af0d4b4d-201e-5cb3-9f14-3cfa52e9c844", "text": "a beautiful snowy landscape, sparkling snow "} +{"id": "2001206", "video_name": "13bd0f8d-fe36-55e2-a4a0-694a019e788e", "text": "lady sitting on a park bench, autumn "} +{"id": "2001207", "video_name": "cd0e2201-238b-51a3-a5a1-54f8e33695bc", "text": "sin city rain over gotham city buildings "} +{"id": "2001208", "video_name": "9c35104b-b6fa-53fe-9da2-59bc2ad805ec", "text": "A terrible storm sweeps through the village, sending animals scurrying for shelter. Billy sets out to find them. "} +{"id": "2001209", "video_name": "754ba493-c181-50dc-88b2-bf17f3359bc3", "text": "a middle age indian young man turn photo book page and looking at his old childhood pictures with a small smile on his face, cinematic Realism\nDuration: long "} +{"id": "2001210", "video_name": "6f61cb26-0063-52a1-b80e-618b0db2ed19", "text": "Create a unique logo for me and write pixel background Message: Ayva (Font: MODERN) "} +{"id": "2001211", "video_name": "0a9da3e6-dfd3-5a2f-9f9e-87d5ee6b6372", "text": "The wind tore my cap off my head, proudly throwing my cloak into the distance, I directed my gaze, ran up with a wild cry, and jumped off the cliff. "} +{"id": "2001212", "video_name": "e3432c27-4c08-5eca-9950-c77cb7e64db2", "text": "Pretty Arab girl smiling while approaching her boyfriend "} +{"id": "2001213", "video_name": "f50097d0-7762-5ddb-9325-99fa75bb6069", "text": "An eagle flies by in a blue sky with black clouds,4k "} +{"id": "2001214", "video_name": "9ee8a520-9797-5903-844f-4ca0546a573b", "text": "The great plague in london, very speedy "} +{"id": "2001215", "video_name": "956fa6b1-4406-5bfa-b2b1-0066762107fc", "text": "Craft a visually stunning graphic showcasing Thumbelina on a petal, swaying to the enchanting melody of a small bird perched nearby. Emphasize the magical connection between Thumbelina and the bird, highlighting the musical notes that fill the air "} +{"id": "2001216", "video_name": "f6503072-a57e-509c-9356-17762c46bf9c", "text": "empty suburbs. 70s vibe. Every house looks the same. "} +{"id": "2001217", "video_name": "7559e36a-6753-589e-a515-5cc4d6f85967", "text": "many people follow one person, a man in a white robe, time of day, camera with back to the person, time 0 A.D. "} +{"id": "2001218", "video_name": "7fcb85c6-4169-54df-a228-581201bfb807", "text": "pakistani guy trying to catch the bus, while walking in the desert, "} +{"id": "2001219", "video_name": "0f84fc2e-a336-5107-a46c-9bada95106f4", "text": "mysterious scratches on the hulls of fishing boats "} +{"id": "2001220", "video_name": "d3927156-e43b-5532-b105-fb276d9a5e3e", "text": "a little girl sitting with dad in the living room of the house "} +{"id": "2001221", "video_name": "ee01cde2-7498-5559-88bc-8178ad04a093", "text": "a deep blue sea where all sea creature lived , 3d animation , 4k resolution "} +{"id": "2001222", "video_name": "3ee0bb64-016d-5770-b765-a73f12872e57", "text": "Nike Air Force 1 flies around planet earth in orbit. there are stars in the background, real life. realism. visible earth. gravity. weightlessness. space "} +{"id": "2001223", "video_name": "6fd310c5-f489-5da9-b2da-e950d8362021", "text": "a strong muscular man flexing hus muscles, no distortion or blurry, pixar style "} +{"id": "2001224", "video_name": "0e6b1011-b653-53b1-8536-11c578d84311", "text": "just give me Videos for my background (im making a shortcut Video about fakenews) so give me for example Videos which prople talk in or some news things (no noises) "} +{"id": "2001225", "video_name": "1ff151bd-d75e-5526-9977-8afcaee289f0", "text": "Oprah Winfrey boxing tournament quake 3 visceral horrific extremely exploding Roberto Ferri Norman Rockwell Keith Thompson "} +{"id": "2001226", "video_name": "dc94df57-0d45-5fd2-b6a1-e95b9451f287", "text": "wide shot of a dark moody spaceship control room as a xenomorph hides in the shadows "} +{"id": "2001227", "video_name": "97346297-efcc-5af3-954f-25c1a6435bee", "text": "In the audience, the expectant glances of the townspeople converged, interspersed with a few cheers and laughter. "} +{"id": "2001228", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "This ancient Egyptian army fighting the enemy, with cinematic effects "} +{"id": "2001229", "video_name": "08037d6b-7d7d-5fcc-a5d1-a15216b1df1a", "text": "a man holding the stop clock "} +{"id": "2001230", "video_name": "5949c7d1-f31b-5d0c-9073-e7f73ed43766", "text": "cinematic shot of a blonde girl from behind walking through forest "} +{"id": "2001231", "video_name": "0a8c05a1-7e88-593b-ba17-fa712347249b", "text": "Indians Cheering up on Independence Day 2023 "} +{"id": "2001232", "video_name": "e6821455-fd78-50d4-a079-c72e5cb300f6", "text": "beautiful orange cat travelling through the universe, realistic, movement "} +{"id": "2001233", "video_name": "51cae8fe-811b-5fb7-9354-09a8f9646104", "text": "beautiful girl, white dress.very happy, in a luxury hotel room in Hongkong . "} +{"id": "2001234", "video_name": "e450ca8c-5b33-5913-8c99-6e2bd2d04d85", "text": "colombia river george dam destoryed river running free "} +{"id": "2001235", "video_name": "e96032ea-f162-524f-b694-6ff1220d1687", "text": ": Close up fight between man and henna in a snowy region "} +{"id": "2001236", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "Husky dogs chasing and running on the prairie, aerial view "} +{"id": "2001237", "video_name": "e2f49f58-e108-5517-a2d6-a19df30b355d", "text": "A primary school teacher teaches 30 primary school students in the classroom "} +{"id": "2001238", "video_name": "678961c5-404a-5cfb-bf7b-ae0aa08ea1b0", "text": "tasty doughnut, ultra high defination, best quality, masterpiece, ultra 9k hd, image: 1 attachment "} +{"id": "2001239", "video_name": "e25a0dad-5907-5560-b0eb-048e92836c1a", "text": "I want a mighty and powerful dragon with purbple swirling energy around him defeating a small red dragon with cracked scales and purple wounds "} +{"id": "2001240", "video_name": "5cdc7216-3870-5038-86e3-fe65c761c2a7", "text": "crowd listening, theater set design, 16:9 "} +{"id": "2001241", "video_name": "625ebf66-2b2b-5924-9613-c737defcf267", "text": "the boy slowly steps foward , face expression slowly change , wind slowly blows the forest , the sunlight slowly change bright studio ghibli , art by hayao miyazaki , ghibli art style "} +{"id": "2001242", "video_name": "510671f4-6f6d-5083-a32a-4bb20f5eef46", "text": "an attractive banshee woman rising out of ocean and screams as the water turns red, night time, HD, realistic, cinematic, motion "} +{"id": "2001243", "video_name": "5a91fc67-f01a-551d-aa17-b1ff7cb55d54", "text": "effect of multiple diminute little dots of golden glow radiating against a total green background. "} +{"id": "2001244", "video_name": "4ce1f951-81f5-59ea-8f22-5b2c3cc91a44", "text": "dark room filled with candles placed in a circle, jar of blood placed in the middle, warm lighting, "} +{"id": "2001245", "video_name": "c03349e6-299f-53e7-8caf-51a67c65ea69", "text": "Peter Parker in spiderman suit hand shake with batman 4k "} +{"id": "2001246", "video_name": "d4f95584-7679-55c1-90d2-56d1bfd70a9d", "text": "woman on the floor of a city apartment weepin city in the background "} +{"id": "2001247", "video_name": "516f7f3d-4c1d-59bf-aecb-7e4f5461a31e", "text": "Biological Energy Integration: Symbiotic relationships with biological systems, where Elyrium taps into natural processes like photosynthesis or microbial energy generation. "} +{"id": "2001248", "video_name": "55cc180f-eb70-5952-8846-84c4952c30ba", "text": "A Red Robots Red Core Getting Infected To Yellow With Lighting Bolts "} +{"id": "2001249", "video_name": "22936a8e-aed9-5840-825d-6c06c96b51a2", "text": "Milo sitting around a campfire with a group of diverse individuals, sharing stories of his adventures. Their faces are lit up by the warm firelight, and a sense of camaraderie fills the air. "} +{"id": "2001250", "video_name": "78ed2feb-b976-5eb9-b4ef-58f83d2571d3", "text": "disney pixar style, close up frontal shot of a wedding ring rotating "} +{"id": "2001251", "video_name": "ce49154b-b884-5605-a63f-1a779c87b1b4", "text": "an old chinese lady walking through flowers "} +{"id": "2001252", "video_name": "0dad7718-909d-57b7-bb86-f7edd9443815", "text": "an infinite field of flowers with butterflies rising, blue sky, sun falling down "} +{"id": "2001253", "video_name": "9062ac14-3f7c-5871-9e89-9bc2b192b706", "text": "white curtains in an oak tree. a man hiding behind the curtains. Moving feet "} +{"id": "2001254", "video_name": "a63239ad-92a2-5fd9-b6cc-272911fad543", "text": "Wave Particle Duality Mind Worm Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "2001255", "video_name": "faa4f51a-9b59-521a-8bf0-3971cd1e9838", "text": "surprise cartoon, one cute red bus moving on the road, with different animals cartoon characters sitting inside the bus. "} +{"id": "2001256", "video_name": "c8b506f5-d2c5-5245-bad6-ddcd6226d622", "text": "cartoon of a pretty thai girl smilng , excited and clapping her hands Message: Wael (Font: MODERN) "} +{"id": "2001257", "video_name": "0a85e789-1070-55de-9b04-3d72b6304157", "text": "girl is blinking slowly and moving her head slowly left and right "} +{"id": "2001258", "video_name": "006ef73e-fbb3-5561-b456-ae823b2a3ae8", "text": "sweet anime girl,with black long hair, standing on the bridge and watching the pouring rain on the river, anime style male, in black cape, black hair, black shirt, tall, handsome, looking at that girl from afar with love "} +{"id": "2001259", "video_name": "91bb90b6-fefc-58ab-938f-da9c570b27f2", "text": "Desperate 13 Year Old Boy Walking Through Hell Nightmarish Atmosphere, 8K, HDR, Best Quality, Horror Movie Palette 16:9 "} +{"id": "2001260", "video_name": "4501e62f-3caa-5673-a5dc-26d16a48f3d3", "text": "create 4 stores mentioning retailers, customers, shoppers, brands "} +{"id": "2001261", "video_name": "71f08991-5811-5a89-9bdc-4702033ac9e9", "text": "A tiger is taking a bath "} +{"id": "2001262", "video_name": "7592a6a1-0731-56cf-bfaa-fc5dde0b4306", "text": "A giant crocodile is advancing on people, a lake and a pond "} +{"id": "2001263", "video_name": "288041e0-d907-5e1b-b280-192f3a73347a", "text": "A girl sings at the beach "} +{"id": "2001264", "video_name": "b072c7cd-0f57-513e-9f14-ec4599c8f678", "text": "couple in beach and looking at sunset 30 second clip "} +{"id": "2001265", "video_name": "f94144eb-22ae-5259-a3a3-ef5980cdff72", "text": "a guy is playing with a dinosaur in the playground "} +{"id": "2001266", "video_name": "c0598b53-af72-5325-afc6-3797debfe918", "text": "Hikers are drinking coffee at the top of the mountain "} +{"id": "2001267", "video_name": "3a8178ee-ac5c-54ad-a29a-eb35e406f1a4", "text": "masterpiece ,zoon,create image of a group of apostles of jesus praying and worshiping GOD "} +{"id": "2001268", "video_name": "5fa3faff-c708-5fcf-aa1e-b8449996dbf0", "text": "dolphins splash the water in the pool "} +{"id": "2001269", "video_name": "cb42ad50-4903-57ee-82b7-f5576a7a0f12", "text": "a man in a bush watching angels play guitar in a valley , mystical , by rene magritte , michelangelo"} +{"id": "2001270", "video_name": "8e3c4559-a8f1-5a58-8965-eccccaed862e", "text": "modern red car rushes along a winding road by the sea at sunset "} +{"id": "2001271", "video_name": "9b79c59f-c6b4-5416-bd59-1657636aed31", "text": "imagining a giant cat wandering in the street "} +{"id": "2001272", "video_name": "231f50fc-2b9a-5933-ad07-3d6ce82abda1", "text": "a photorealistic scene of a person smiling at the camera, realistic, "} +{"id": "2001273", "video_name": "1b36097c-19fc-5c73-8b6c-76123652278f", "text": "Batman in the Batcave makes music on his computer "} +{"id": "2001274", "video_name": "4a3a5226-93b8-5308-9ab6-60b47b39206a", "text": "Cathedral art, luxury, high quality, beautiful,high definition "} +{"id": "2001275", "video_name": "3ed81f3e-981d-5326-a06e-a4b1bd8acfdf", "text": "video of a person getting fitted for a dental device to treat sleep apnea "} +{"id": "2001276", "video_name": "59ed890d-a13f-5bf7-b2b3-4a998c443317", "text": "kids playing in the village, 4k, ultra hd, disney style "} +{"id": "2001277", "video_name": "47c05f24-f1a0-57aa-98ea-d4965c60c4f8", "text": "Sarah, a young orphan girl, walking hand in hand with her grandfather, Thomas, into the bakery with customers walking around the bakery and the characters walking through the entrance to the bakery In Ghibli animation style "} +{"id": "2001278", "video_name": "2791b5b5-0a86-5186-ab4b-e86649ae8bb0", "text": "create a star wars like animated trailer movie 10 seconds long "} +{"id": "2001279", "video_name": "46ffe7af-7139-5d1a-aa22-369b5f5afc16", "text": "orange skies and apples in yellow submarines Message: meewer (Font: MODERN) "} +{"id": "2001280", "video_name": "a0ff028a-d888-5801-85f8-37aef41cf515", "text": "ancient red dragon flying, fast, quick, lots of movement "} +{"id": "2001281", "video_name": "86bc1ba0-c820-57b3-a514-84faa7b956cf", "text": "Beautiful landscape captured by drone seaside view "} +{"id": "2001282", "video_name": "ecb133a9-d4e8-5a6c-a7d2-6bcb958c7e1a", "text": "helicopter taking off with a container inside an outdoor base, realistic, 4k "} +{"id": "2001283", "video_name": "5aa4a59c-1293-5b5f-9426-baae725d1094", "text": "police officers on camel, roaming in a city road, people walk around "} +{"id": "2001284", "video_name": "9ee36aea-518b-5d72-8497-f112303c97e6", "text": "Animate the subject, love background. Message: 1 Attachment "} +{"id": "2001285", "video_name": "ebac859c-cecd-5761-9d35-a8dd755e9da9", "text": "Illustrate a moment of deep digital stillness, reflecting contemplation and weariness. "} +{"id": "2001286", "video_name": "77a02376-4ec6-5af1-9db0-a35463c3dd21", "text": "red roses open and birds flying "} +{"id": "2001287", "video_name": "8bc991b3-2153-56aa-8b43-03fa072a32f6", "text": "the unheard and untold logo with a face logo horror haunted secret new image "} +{"id": "2001288", "video_name": "a78b1d92-7efa-5dc3-b05a-13d404e57a5c", "text": "our community is large, It brightens up everything our community makes people more beautiful It also brings people from other cultures together. "} +{"id": "2001289", "video_name": "ff118952-1e57-5d1e-abf0-eec599d9944f", "text": "mom, dad and their 15 year old son "} +{"id": "2001290", "video_name": "b7a09f65-2541-50b5-b0ca-012cd25269b6", "text": "a man arjun showing some corps in his fild near the village "} +{"id": "2001291", "video_name": "d2f43314-3d03-52c7-b230-fe98cedb4fa7", "text": "a all white dove flying, very bright colour "} +{"id": "2001292", "video_name": "372d09df-1cc2-5753-96ca-aa6bc7a6ca7c", "text": "robot mannequin dressed up for halloween from fablab madrid \u2013 fablab madrid, in the style of depth of field, exquisite clothing detail, futuristic spacecraft design, molecular, uhd image, glass as material, fujifilm eterna 400t "} +{"id": "2001293", "video_name": "21bce36b-1639-59ba-8406-a462d9eac071", "text": "a dimly lit ancient temple in the middle of nowhere "} +{"id": "2001294", "video_name": "55de329f-bad8-5c1f-aa0d-92f00d5de332", "text": "Clock. Large in an abandoned house with camera zoom "} +{"id": "2001295", "video_name": "f1d7d077-4a74-5e65-a6dc-6b95e81cb257", "text": "A large truck drives forward on the highway on a summer morning, the view is distant to the truck above "} +{"id": "2001296", "video_name": "f53d3328-ccfe-5429-a0df-50eef6838caa", "text": "Tom plays the violin, has a long string, and wears a cowboy hat, while Jerry watches him studio ghibli "} +{"id": "2001297", "video_name": "d755566d-1cdf-5c46-8f2a-deb25ff63057", "text": "A young woman, wearing a red silk long dress, standing in a dark room. Her hair is blown by the breeze, her eyes sparkle. She has a sweet smile on her lips. Her round face adds a touch of softness to her elegant appearance. Message: 1 Attachment "} +{"id": "2001298", "video_name": "c31951bc-ab93-57ce-9678-018b10135610", "text": "Flowing clouds, blinking lights of the castle"} +{"id": "2001299", "video_name": "7c470228-a4f7-572c-8fc4-47d104c2440e", "text": "a tesla cybertruck wrapped in purple and green metallicc "} +{"id": "2001300", "video_name": "c706c6ef-4bda-5cb0-ba66-bd9bc7041441", "text": "As the sun began to set, Gopal realized that he had wandered quite far from his home. He started to worry about finding his way back to the herd of goats. "} +{"id": "2001301", "video_name": "eee36eb3-ece1-56b6-8967-495fa5015c7c", "text": "Medium shot of a A white desk is placed in the middle of the room, there is a A big Christmas tree decorated with many succulents on the desk, and there are Christmas decorations on the desk. The surrounding space is brightly lit "} +{"id": "2001302", "video_name": "2f77255e-ee74-54fb-b635-5e40477ed63f", "text": "monochrome psychedelic cinematic blood and red alternative reality "} +{"id": "2001303", "video_name": "c1a07831-300f-5eba-9058-97e88936888d", "text": "a learned elderly black woman from walking in london beckoning the viewer "} +{"id": "2001304", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "Zoom in to show Lily walking through the village square, radiating kindness. 8k quality "} +{"id": "2001305", "video_name": "087d59e7-75ef-52df-86b3-5fa75ae467f9", "text": "middle eastern man meditating deeply on the middle of fire and flames against a dark horror background "} +{"id": "2001306", "video_name": "f98083cd-9299-51fb-b0e7-a98bbbbd2932", "text": "afrika students learning attentively in high technology classroom "} +{"id": "2001307", "video_name": "2586d8e9-fbd8-54b4-93ee-250184a993f9", "text": "Bob Dylan and The Band performing in California in 1974. "} +{"id": "2001308", "video_name": "8d3ccf33-b7a1-5ca8-99f2-cda51585bd7e", "text": "hands reaching for candies in a bag "} +{"id": "2001309", "video_name": "32640e2c-ba90-5c13-9670-d6358732ecb5", "text": "akihabara street full of people in watercolor style "} +{"id": "2001310", "video_name": "b360338b-7db9-5ef5-8ee3-061736cdff7e", "text": "Creature transforms into an eldritch monster "} +{"id": "2001311", "video_name": "91a24de3-eaa2-5b98-b7a9-c8c9825e3648", "text": "a car in a parking lot at night coming to me "} +{"id": "2001312", "video_name": "327d316f-0986-51ef-8346-9731395f6a14", "text": "A medieval soldier in gold and black armor comes to life from a Roberto Ferri oil painting "} +{"id": "2001313", "video_name": "27e8f91a-9bba-5720-92a6-abfe54a013b2", "text": "A fairy Alannah, long silver hair, blue eyes, green dress, In a dense forest, 4k Alannah used her magical powers to create a ball of light and placed it into the magic circle. She began to chant a spell, and slowly the ball of light grew brighter and brighter until the magic circle began to disappear. Finally, a dark fairy appeared before Alannah. "} +{"id": "2001314", "video_name": "04bb9486-e631-55d2-adc8-72a2cf8e715b", "text": "background turns to space, smiling, blinking, 4k "} +{"id": "2001315", "video_name": "a71e0fb1-0f0e-514e-9526-76341600bc9a", "text": "flying around mountains, jungle, sunset, clouds, ultra realistic, hyper detailed, dramatic lighting "} +{"id": "2001316", "video_name": "01abbcf2-eaf5-5f98-a0fc-cdc2a892540d", "text": "friends talking at coffee shop, laugh "} +{"id": "2001317", "video_name": "6aae4308-350a-5f44-9b9b-b1ba9cf73225", "text": "a person on a bed flying through the sky with an upside down city above it "} +{"id": "2001318", "video_name": "56345407-f5bf-527a-a819-36500268a65f", "text": "1930 gold diggers panning for gold in a rainforest river with tribals lurking in the background, realistic, dark tone, cinematic, 4k Message: GoldFever (Font: MODERN) "} +{"id": "2001319", "video_name": "0faf89ec-d573-5e8c-acd8-8f920c224506", "text": "3d cartoon in a cave, one pirate pushed other down in the lava "} +{"id": "2001320", "video_name": "eabfde43-d488-5a84-9cdf-915bca1578cb", "text": "design a 3D musicians on stage, 1 girl guitarist, 1 vocalist and 1 drummer characters like Pixar with motion and zoom out "} +{"id": "2001321", "video_name": "52ce4bc0-e834-5713-9e6e-e4f8e9ac7f0b", "text": "dark haired man with sunglasses in a leather jacket behind the wheel of a car "} +{"id": "2001322", "video_name": "0da02938-a3ce-57ac-b0ba-c96375b855e8", "text": "following a goblin pushing a stone wheel "} +{"id": "2001323", "video_name": "055f75f0-597e-5afc-9804-f8cb965aad6e", "text": "and meticulous documentation shed light on the anatomical details of the giant pharaohs\u2019 mummies, "} +{"id": "2001324", "video_name": "d4fdae17-d289-54c2-998a-4cd60858cbaf", "text": "Girl holding a flower and smiling, wind blowing around "} +{"id": "2001325", "video_name": "eca26a4d-1655-59f0-becc-3c406e2aaeb4", "text": "large dog on a small bridge, big river tree lined with bright sun and lots of birds "} +{"id": "2001326", "video_name": "76789730-5fc5-5c22-9287-c43bea85d1d3", "text": "Imagine skeleton, Nunn, motorcycle helmet, Gothic, Motorcycle theme background, hyper ralistic, "} +{"id": "2001327", "video_name": "6c956a8b-6af5-50a1-b14f-2073f7a34765", "text": "orchid growing from seed from dark dry desert land, trippy, realistic dali art, dark night "} +{"id": "2001328", "video_name": "ccbf3793-3ef4-52f8-82fc-d2c6cf5ff2ef", "text": "german women soccer national team winning against south corea women soccer team "} +{"id": "2001329", "video_name": "84207e69-b367-52e3-a297-994d8dc53368", "text": "two mans walking on a farm with a giant chicken, cute colors, 4k, cinematic "} +{"id": "2001330", "video_name": "4efeffa9-fcc7-5244-8c04-7cd2b9eb8bcd", "text": "vintage black and white horror movie with dark field and old ruins of victorian style house "} +{"id": "2001331", "video_name": "c4d8d89a-9d5c-5f4d-9765-ac562b35b9c3", "text": "An image of Raju contemplating the riddle of the magical pot under a tree, his brow furrowed in thought.Animated cartoon "} +{"id": "2001332", "video_name": "e28ea54d-22c6-5828-aa7b-b2a7ced4d6c1", "text": "Delve into the microscopic world of bone tissue, crafting images that highlight the structural intricacies responsible for the remarkable resilience and ability to withstand pressure. "} +{"id": "2001333", "video_name": "37d19187-9d2d-52c8-901d-0b63da0fe892", "text": "pshychedelic therapy room, natural wood furniture, warm lights "} +{"id": "2001334", "video_name": "81d12283-b299-55a7-840d-e719bc953ac0", "text": "Black and white picture, horror movie, scary stories, a corpse in the middle of the living room "} +{"id": "2001335", "video_name": "7017829d-0c9b-53cd-ac06-cf50ab8da2e8", "text": "Network marketing scheme using bitcoin as an example "} +{"id": "2001336", "video_name": "f47709e8-c044-5370-84fa-12fbea0baee6", "text": "strange insects in an alien forest "} +{"id": "2001337", "video_name": "244b70fd-f523-55d1-8e87-e3d559c38e17", "text": "sun rising over the mobius house by unstudio "} +{"id": "2001338", "video_name": "8721179b-212b-5d47-a9ae-58fcc546d119", "text": "A girl is washing peaches while talking in the kitchen. "} +{"id": "2001339", "video_name": "7591136d-a6b5-5cac-8162-3b2f3f4af3e5", "text": "Above the tree, a shimmering, blue portal suddenly materializes between its branches. The portal emits a low, humming sound that reverberates throughout the forest, drawing the explorer closer. "} +{"id": "2001340", "video_name": "4b9fecb4-d5dc-5f20-81f2-c28eb1520524", "text": "Illustration style, HD video, a boy writing an exam paper in a dimly lit room, a lamp on the table, and the overall tone of the room is crimson. "} +{"id": "2001341", "video_name": "43919867-0000-54d7-92ab-42d660d6ec9c", "text": "the anime character Rahul is wakes up "} +{"id": "2001342", "video_name": "00a1ffb8-9dae-5a38-9c36-ba0c22485843", "text": "particles of matter in motion in a transversal wave "} +{"id": "2001343", "video_name": "854a64cf-981c-55fc-b991-339c0ec238c9", "text": ":Tricia explained that suddenly Luke started seeing people who had passed away. Not only did he see them, but he also spoke to them. "} +{"id": "2001344", "video_name": "e7c995b8-9805-5446-88b0-38f891700bf4", "text": "Create an illustration with a photographer by taking photos and displaying them for sale online. "} +{"id": "2001345", "video_name": "c0f5d25e-8b17-55f3-a1a2-a96275ec77f8", "text": "terminator in the sky with clouds "} +{"id": "2001346", "video_name": "98bc2ebb-e0b7-536d-84a4-0b3ef3e58dda", "text": "A military tank shoots at a building, the building burns and collapses, very realistic, high detail "} +{"id": "2001347", "video_name": "e235ef05-4ee8-5c6b-8326-d504400bf36d", "text": "a realistic korean temple with a realistic tiger inside "} +{"id": "2001348", "video_name": "bb3b8c91-5f2c-59c4-8b97-1ea73ec7d8b3", "text": "Lost forest fawn, cartoon style, moving mirror "} +{"id": "2001349", "video_name": "35e117bb-fbf3-588b-8ff0-87d2964afa65", "text": "there lived a very special bear named Joy. Joy was an extraordinary bear with the ability to understand human language and a willingness to help others. "} +{"id": "2001350", "video_name": "e5f8aed6-74ed-536d-b32b-9cc42b235a79", "text": "Tesla driving through New york city "} +{"id": "2001351", "video_name": "0f8b8495-3ddb-529f-a4b4-2e5bba248844", "text": "slow motion portrait of business man "} +{"id": "2001352", "video_name": "3bda305c-c336-5038-9518-ac8e8c1492a5", "text": "The girl ran happily in the jungle "} +{"id": "2001353", "video_name": "15071738-7505-5afa-87fe-7673fe08dd23", "text": "images of the animals and birds of the forest Message: 1 Attachment "} +{"id": "2001354", "video_name": "ff6f38d0-18f5-512a-8abe-6b46891d19ec", "text": "Mediaval age, Sharp features, Old pirate with grey bard and hair is looking out of window in a castle, sad eyes, super realistic "} +{"id": "2001355", "video_name": "575e48c7-0140-5a58-969c-7c170c066788", "text": "a Naruto character sitting and blinking his eyes Message: 1 Attachment "} +{"id": "2001356", "video_name": "e367357b-886b-5721-8c11-51d719b313d5", "text": "a man in a white shirt and jeans runs in an empty deserted city "} +{"id": "2001357", "video_name": "d29a7d8e-40b0-5318-82c7-df2b3d9acd3b", "text": "a picture of a strong masculine longbearded man in the dark with a little bit of light "} +{"id": "2001358", "video_name": "6c501506-bb13-55b6-9043-690bc5976ae0", "text": "cinematicasronaut walking throgh the alien planet jungle in life suit costume "} +{"id": "2001359", "video_name": "188431e1-d89b-5fad-ba7f-6f1a9f4fd367", "text": "rotoscoped japanese animation of a man riding a unicycle, shaky line work "} +{"id": "2001360", "video_name": "0de6c37f-d0ef-5ae3-9447-39bf57119776", "text": "a ginger cat eats Nasi Lemak "} +{"id": "2001361", "video_name": "ae7fa866-ea78-54de-81ab-146f01fa8be3", "text": "spaceship crashing into a giant slice of pizza "} +{"id": "2001362", "video_name": "8f519bff-fa0c-5410-baf2-1a17ba0e7f31", "text": "astronaut relaxing in a chair on the moon smoking cannabis "} +{"id": "2001363", "video_name": "1398bc0f-a994-5396-a6dc-d30d5c803cd1", "text": "camera panning in looking eye level at a closeup of a record spinning, you can see the arm, and needle, top of record and part of turntable case, background is slightly blurred "} +{"id": "2001364", "video_name": "4339e237-3b75-5117-ace5-6a1233493481", "text": "cute beautiful hot girl with long hair, short pants and sleeveless top "} +{"id": "2001365", "video_name": "5d59f2de-b5d0-5d59-a9d9-54baa6dfb5b4", "text": "rice field with ancient chinese shrines and blue sky; studio ghibli "} +{"id": "2001366", "video_name": "7aa87570-8851-5f86-a585-c7208709611b", "text": "person with musketeer hat in the 21st century, technological and young asking questions and doubts "} +{"id": "2001367", "video_name": "727df2b3-0016-554b-9ba5-0f30a13a046a", "text": "Generate a powerful and heroic image of a guerilla \nsoldier in the midst of a daring rescue. Show one fighter carrying a wounded comrade to safety amidst the chaos of the battlefield. The rescuing soldier should exhibit unwavering determination and strength, while the wounded soldier conveys vulnerability and courage. The scene should evoke a sense of valor, camaraderie, and the selflessness of those who serve in times of peril. "} +{"id": "2001368", "video_name": "24e2c803-8054-50a5-a1dd-534ad02e5265", "text": "rock musician performing at a concert, skeletons in the audience, in front a large crowd of skeletons, rock concert, black and white, on stage, cinematic, wide angle lens, 4k "} +{"id": "2001369", "video_name": "07132ccb-cda2-5920-8f57-1ab7d56b72e2", "text": "objects melting, realistic, full of details "} +{"id": "2001370", "video_name": "904d8dc7-ee9d-5147-9da8-edd19bd772a8", "text": "Kid with a gun Message: 1 Attachment "} +{"id": "2001371", "video_name": "628d0585-d888-555f-8ded-9890254bb9ec", "text": "A lovely Sun Parakeet playing the piano "} +{"id": "2001372", "video_name": "8e093777-e322-520b-8c7a-52d5861eec99", "text": "humans showed how resilient and clever we can be "} +{"id": "2001373", "video_name": "17e54541-7271-583e-80e3-e042e3da07ab", "text": "A man sits on the toilet, and shouts "} +{"id": "2001374", "video_name": "f43145d2-312f-52cc-9b98-711d319630ab", "text": "a futuristic sand clock slowly falling in zoom front pan "} +{"id": "2001375", "video_name": "fce7782d-dadb-5fd5-90a8-d707edb7abe9", "text": "Man holding his coffee mug and laughing out loud, realistic video 32k "} +{"id": "2001376", "video_name": "49de18ac-4eac-5666-8546-47b95d45a90f", "text": "3d image As the sun began to set, casting a warm glow over the forest, the princesses bid each other farewell, promising to meet again in their enchanting worlds. animation gs 20 motion 4 ,5 second long "} +{"id": "2001377", "video_name": "bd110f27-643e-55f2-a1e9-409bd1b32180", "text": "Dark liminal space with hazy glow coming from a window "} +{"id": "2001378", "video_name": "6b0375b8-ef89-5796-8d28-ed1786802e15", "text": "1970s horror film, cannibals melting flesh, film, 1970s "} +{"id": "2001379", "video_name": "289a762b-26b3-5e61-9bbe-e9b624fea3b9", "text": "minimalistic website design for a corporate firm website "} +{"id": "2001380", "video_name": "62f0672f-4383-559f-8254-678c0989cdc0", "text": "1990s film about lana del rey as a catholic bride "} +{"id": "2001381", "video_name": "1bcf7d88-2de7-58b3-8bd1-c62db4ccd26a", "text": "a cute 3d rendering of the Rose Bowl Stadium "} +{"id": "2001382", "video_name": "f5377d56-be3f-53b6-a446-b9bb12a7eeef", "text": "girl dancing puerto rican flag on a pole in the wind tattoo, wind wave long hair "} +{"id": "2001383", "video_name": "e82aa419-b073-5b64-b9ed-da9051b847fb", "text": "a hacker carrying out a cyberattack "} +{"id": "2001384", "video_name": "687f4c3b-0980-5dd9-843a-9172ca06a6c5", "text": "the 7 chakras of the human body surrounded by 4ays of light from the universe person surrounded by light, realistic image "} +{"id": "2001385", "video_name": "20967a06-e1ee-50cc-95db-ccf67e24b59a", "text": "A fierce wild beast gently snuggling in the arms of a young girl, showing a tender and affectionate demeanor. "} +{"id": "2001386", "video_name": "254ef322-6bef-530c-af43-8c4f6605051e", "text": "The mascot was waving and the breeze stirred the leaves Message: 1 Attachment "} +{"id": "2001387", "video_name": "d5f88d4b-ce71-57a3-b88c-d55700f0fd65", "text": "jabba the hutt jumping up and down a trampoline "} +{"id": "2001388", "video_name": "6aac10b0-f7a7-536d-89e2-3216047cd7b4", "text": "Disney movie. The man with constipation. 1950s "} +{"id": "2001389", "video_name": "92475ab6-66c7-5022-b16a-a3d6c47b0fb7", "text": "a patient in a white coat from a Soviet hospital fights against a Soviet soldier in 1940, black and white film "} +{"id": "2001390", "video_name": "8cc6ce04-0b08-5b6b-92a6-c043b05c22e1", "text": "Day of the Dead in Mexico katrina scene in the blue fire "} +{"id": "2001391", "video_name": "c03cd4b4-73e0-510d-9b84-970e4a96e9a6", "text": "the sword in the stone slowly being pulled out, cinematic, motion 4 "} +{"id": "2001392", "video_name": "c82a107b-0fad-5595-9286-e8b70c2b9c52", "text": "An antique grandfather clock in the corner strikes midnight, its echoing chimes marking the fateful hour. The room plunges into darkness, the only illumination coming from the ghostly figures that now glow with an ethereal light. "} +{"id": "2001393", "video_name": "53d3f070-5158-52ba-bd3f-5b496766dad3", "text": "Explore the latest research and discoveries surrounding black holes, including their role in the evolution of galaxies and the mysterious phenomena associated with them "} +{"id": "2001394", "video_name": "f3126140-8e79-5973-a569-6318be79925a", "text": "soliders minting coins , with beautiful background ancient times "} +{"id": "2001395", "video_name": "34151804-f2e9-5752-932b-b3a97ee6d190", "text": "destroyed face talking to the camera, scene from Saw, captured on iPhone in the Imperial Valley "} +{"id": "2001396", "video_name": "687d0168-beab-5cac-81d4-fe42bffdc1bf", "text": "ouple sitting on the sofa and looks at each other and shares a hearty laugh "} +{"id": "2001397", "video_name": "269396b5-2978-550d-91a8-6fa1b09310b3", "text": "ciberpunk 4k resolution rainning night with people walking "} +{"id": "2001398", "video_name": "fcede409-89db-57a6-95ef-88f5483f308a", "text": "a very large star explodes in the middle of a space filled with stars and a bright orange ball of fire, supernova, exceptional clarity, ultra high definition, clean sharp focus, vivid colors, intense, in the style of anime "} +{"id": "2001399", "video_name": "9eb6395d-3ddf-5255-8f40-9a215fa724a7", "text": "shadow of girl sitting on the boat, the night sky at the river "} +{"id": "2001400", "video_name": "6f737737-0604-5802-a352-95fd1a0f45d6", "text": "Geralt is fighting against Wild Hunt "} +{"id": "2001401", "video_name": "3d2e30e6-66c3-5e9e-b8a1-8f3263722033", "text": "16:9, a robot construction crew backlit by the sun "} +{"id": "2001402", "video_name": "635fcafa-be54-5180-ab07-729130f42cd9", "text": "Sam ALtman, Elon Musk, Bill Gates are dancing with barbie on the runway, motion, ration 16:9, photorealistic, high resolution, super realistic "} +{"id": "2001403", "video_name": "b43c9cc9-4490-52e3-b008-d68feb86ae63", "text": "a fashion designer very detailed high resolution , working on a fancy dress , open air work , in the middle of a battle field , outdoor , the scene is controversial , a war , people killed , but the fashion designer is working on his dress like nothing happened , realism style , dramatic "} +{"id": "2001404", "video_name": "78a2d762-05bf-51b3-a34e-ca0463dc3dcd", "text": "lucifer and legion of demons laughing at humanity. Cinematic. "} +{"id": "2001405", "video_name": "b4a4b66f-ec59-5a41-b3a6-ca0db1275c26", "text": "a 3d robotic frog with a camera rotation "} +{"id": "2001406", "video_name": "e265bc8c-c7d1-5f08-9792-64db6d11f93b", "text": "The tail was found in the small town of General Cepeda in the northern state of Coahuila, lying near the border with Texas. "} +{"id": "2001407", "video_name": "b89fe7f3-395b-54e5-bef5-235335f1ceff", "text": "guards protect the territory the inscription ZOV man\u2019s girls mike Tyson weapons "} +{"id": "2001408", "video_name": "56639f95-b6f5-5d5c-95a4-c4257cfe46ae", "text": "a decent handsome boy get off his super car and wearing sunlass "} +{"id": "2001409", "video_name": "85d1e39a-94cd-5992-943d-e0dabd52196e", "text": "A Jungle Scene\n\nShow a lush green jungle setting with tall trees and various animals like elephants, rabbits, birds, and a small boy named Raj exploring. "} +{"id": "2001410", "video_name": "5f510ed1-8515-51c8-b02b-82be8db9a807", "text": "Soldiers wearing armor walk in formation on the ancient city wall of China, in the distance are rolling mountains, with a lot of vegetation. Aspect ratio 16:9, realistic style "} +{"id": "2001411", "video_name": "0a57991d-d135-59a6-9432-df6f8d36ed1b", "text": "overweight man running forward on a treadmill facing the screen "} +{"id": "2001412", "video_name": "2e522314-58be-51b8-864d-fe98301fe0eb", "text": "a moving solar system with two suns in a galaxy 3000 lightyears from earth "} +{"id": "2001413", "video_name": "e3930d03-d14e-5b08-9e9d-f6af5a122d46", "text": "nano plastic moving in the body hyper real animation "} +{"id": "2001414", "video_name": "0b8bb691-1b94-5de3-a736-79db4768e6f1", "text": "a flowing white diamond stones wedding dress "} +{"id": "2001415", "video_name": "404809be-23c4-521b-88eb-2aaee333c692", "text": "background moving slowly, truck run fast; "} +{"id": "2001416", "video_name": "43babffa-7c33-5473-ab18-21a8e5b7880f", "text": "blade runner 2049 cars in city "} +{"id": "2001417", "video_name": "6fcfca6b-dcd4-5316-9242-a5217d2b93a8", "text": ".The aliens live in peace and harmony, their society built on cooperation and respect. "} +{"id": "2001418", "video_name": "9b742a5a-541b-5660-b222-7d3690606e67", "text": "tow men drinking in a bar "} +{"id": "2001419", "video_name": "96360c38-c1f9-503e-a84c-72ce6b835d0e", "text": "create a funk dance in Brazil inside the favela full of people dancing listening to music drinking very Brazilian "} +{"id": "2001420", "video_name": "a573e95f-d715-5677-aa7a-81ccfd887459", "text": "As ,the bird regained her strength, a beautiful friendship blossomed among the boy, the dog, and the bird. "} +{"id": "2001421", "video_name": "be9f37b7-4aa6-552b-aa04-5bb1b9ca0bdf", "text": "beach with sun and blue water. Make it 2080 resolution. motion 3. same video no change "} +{"id": "2001422", "video_name": "a809f5dc-2bdb-5b8e-9bd5-c1e524b2a8b6", "text": "A man is flying in the sky in New York "} +{"id": "2001423", "video_name": "be91f136-da0f-5c15-b619-e212f7d25d1e", "text": "girl beaufut earphones anime japan style white background loop video, long flowing curly black hair, luxurious green, CAMISETA, amazing smile, wide angle shot, 8k uhd, dslr, soft lighting, high quality, film grain, Fujifilm XT3, realistic "} +{"id": "2001424", "video_name": "dfbfd32c-3f91-5d2d-a36f-4e3b98582e11", "text": "Realism, technology, AI production process, factory research and development, technology parts Message: 1 Attachment "} +{"id": "2001425", "video_name": "46f4edc3-b77f-5e99-838b-9ae5ee782f0b", "text": "vibrant bright spiral rabbit hole moving in counterclock wise, neon cinematic "} +{"id": "2001426", "video_name": "4599f4c7-7eaa-5fc0-ab1c-1f7f8a9bfe16", "text": "Generate an image of kids gathering around the cauldron, using their imagination to envision stories within the magical display. "} +{"id": "2001427", "video_name": "88670e47-d9e4-5d94-b43a-1732a7c1b29b", "text": "During the day, five early humans sit under a tree and talk "} +{"id": "2001428", "video_name": "350f2173-9031-5f0e-bbb8-33d075aa6663", "text": "pepe the frog riding a bull "} +{"id": "2001429", "video_name": "e7357444-e9bb-573f-8083-88c0b64bd305", "text": "recording studio, moog synthesizer, neon lights, movement, high quality, turntable, Kuali Tika, Psychedelic trance, mapping, "} +{"id": "2001430", "video_name": "d2746ccf-e944-5f49-810c-4263687abaac", "text": "a hooded man staring into a sunset, timelapse "} +{"id": "2001431", "video_name": "8aff1549-4238-5480-ad71-6872e37cc4d5", "text": "blond woman sits on a red alien planet she looks up as 11 suns are in the sky "} +{"id": "2001432", "video_name": "99e1f7fb-53d4-5cad-86a0-0a6f68ee87e5", "text": "lord shiva opening his eyes while meditating on a snow covered mountain "} +{"id": "2001433", "video_name": "2c971575-aded-5f53-b158-aa39c20a1508", "text": "cat fight dog in the kitchen "} +{"id": "2001434", "video_name": "d587c796-3513-50aa-8c0a-67d5ac142ccc", "text": "happy birthday animation, crowd voice of happy brithday happily and the words pop up "} +{"id": "2001435", "video_name": "a8ebb11c-20d3-5719-852c-23f51db6faf2", "text": "If Ajith acted as mr bean "} +{"id": "2001436", "video_name": "cec28284-a566-5d2a-a97c-67b2a7609689", "text": "Fluid and creamy milk Message: 1 Attachment "} +{"id": "2001437", "video_name": "e27f2d77-b3b0-554f-b886-100acb1fda13", "text": "Unicorn running, becoming oil painting style "} +{"id": "2001438", "video_name": "99d155e6-b6ee-597f-9cc1-b63900af4666", "text": "the hairist person alive cartoon style wild and colorful "} +{"id": "2001439", "video_name": "2793a65a-f302-520e-9461-4d16aee66c62", "text": "Shawn Mendes on a mermaid tail "} +{"id": "2001440", "video_name": "6cdb5a3b-7ab0-5f1d-a6ec-cf10187591ea", "text": "a cosy ambient with a glass wall where the rain is falling , and a tv in living room where it is said :You are Great "} +{"id": "2001441", "video_name": "a7b4d366-1023-5c24-9b31-3eeec320ca48", "text": "vertical video: playing war on the phone "} +{"id": "2001442", "video_name": "a208f46f-f34b-5e0e-ae2f-0c14654c43dd", "text": "image of a person participating in group activities that foster a sense of belonging and connection "} +{"id": "2001443", "video_name": "67b65561-2892-5ba5-83c4-bc6c4aa583db", "text": "make a photo frame themed celebration and championship with cute details "} +{"id": "2001444", "video_name": "bcd97653-18e3-5073-b3aa-aa836811783d", "text": "scarlett johansson as supergirl flying over the night sky of gotham city "} +{"id": "2001445", "video_name": "676dc1ba-0542-5148-83b2-7c7d88ee6f12", "text": "god head figure for art house film. In the Peruvian mountains. "} +{"id": "2001446", "video_name": "c7f97d2e-f5c2-5511-9c3f-611c76cf7d5a", "text": "joe biden eating chicken, very funny "} +{"id": "2001447", "video_name": "3f8a97b6-d2aa-559b-b175-3d1a746142e5", "text": "Leo boy using the magical paint piece to draw a magical gateway on the wall of his room. "} +{"id": "2001448", "video_name": "8a6876c2-a263-565b-bfd3-ad8afe540d44", "text": "cartoon elephant eating halwa Puri seat on the chair "} +{"id": "2001449", "video_name": "a4ddaeb2-47ce-56f0-8769-bd300c1f0cb7", "text": "Depict the moment when the hungry birds gather around the picnic, fluttering in the sunlight. "} +{"id": "2001450", "video_name": "ba2175ea-152e-51b2-814f-45afb497e4ee", "text": "flying bicycles against the backdrop of a sunset in the mountains "} +{"id": "2001451", "video_name": "3f3a736d-6b5a-5c9c-8bd8-aab59596ee0e", "text": "a snow yetti, walking in the snowcovered forest, Dungeons and dragons game "} +{"id": "2001452", "video_name": "159d09c0-ce39-5ece-9a86-64dea2d51fc0", "text": "a cosmic head dispersing into stars "} +{"id": "2001453", "video_name": "fdf2ddcd-fe68-57b0-b83d-0ab011b46281", "text": "A steady shot in a forest with sunshine coming from above "} +{"id": "2001454", "video_name": "12f9c227-29bb-52af-a91b-173459667126", "text": "Celebrate the New Year in Italy with a spectacular display of fireworks across the country at midnight. The tradition includes ringing the bell, and with each chime, Italians partake in a spoonful of lentil stew. This custom, symbolizing round lentils as coins, is believed to bring good luck. "} +{"id": "2001455", "video_name": "4a82a812-8d44-5033-862e-d71e8bce271d", "text": "warhammer 40000 dark ambient gothic steampunk futuristic horror. soldiers marching past destroyed demons. misty heavy industrial Biomechanical art, heavy industrial "} +{"id": "2001456", "video_name": "925ef561-05d6-5249-80dc-c3d7cb182ee0", "text": "white flowing clothe with the winds with dark small ink spot dropping "} +{"id": "2001457", "video_name": "71d925e2-66fe-582d-95fa-5feb50f9e535", "text": "sound wave, background dark purple Message: ProAI (Font: MODERN) "} +{"id": "2001458", "video_name": "ba865bc6-3724-5c9e-847b-4b8af7906dbd", "text": "six pearls rolling trough a dark red paint puddle "} +{"id": "2001459", "video_name": "063fa75e-1787-5d85-94a8-b8b2511dcc7f", "text": "a cat running and jumping over the view "} +{"id": "2001460", "video_name": "57c2b525-2619-550c-b14c-6b825024769a", "text": "santa claus drawn in the style of junji ito "} +{"id": "2001461", "video_name": "880650ac-a447-5545-bb81-34a600c9d626", "text": "A group of giants and mutants, wearing futuristic suits and holding futuristic weapons, stood in an underground base. "} +{"id": "2001462", "video_name": "7dff7cbf-0df8-5da7-abcd-607158cd1874", "text": "The village folk, seen in the distance, are now respectful and curious about their extraordinary adventure. "} +{"id": "2001463", "video_name": "90487a6c-698e-596f-b701-0eba28933711", "text": "A video quality 8K, original photo, best quality, masterpiece: 1.2, photo realistic: 1 depth of field, full body, movie lighting, princess 18 years old cute, lace thin, petticoat, "} +{"id": "2001464", "video_name": "d8a131aa-69e0-5cd4-903f-659a56f9eaee", "text": "a Give me a photo of Lord Shiva with Ganga sitting on his head. "} +{"id": "2001465", "video_name": "b1e7921e-a300-5dce-b129-0ffd659bef0e", "text": "A tabby cat jump over the fence "} +{"id": "2001466", "video_name": "42e9ecd0-acd6-5184-b491-68008a249734", "text": "Delta flight 1001 encounters UFOs en route to Sydney "} +{"id": "2001467", "video_name": "98b250fd-2090-526f-b365-10ba20211e96", "text": "Yoshi in a circus wearing a tophat with a red bowtie "} +{"id": "2001468", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "A boy guiding a flock of sheep to graze in the meadows. "} +{"id": "2001469", "video_name": "33500db1-9a47-5376-9021-2014f2f3b419", "text": "In the storm, the trees sway but remain firm "} +{"id": "2001470", "video_name": "45f83d38-1e25-58ea-944a-c418326afd19", "text": "A flying dog is a fantastical creature that exists only in the realm of imagination. In the real world, dogs do not possess the ability to fly as birds or other winged creatures do "} +{"id": "2001471", "video_name": "8bc567ed-1638-58a8-9749-6151cd4d725b", "text": "make a video of nice laundry that john wick is working there "} +{"id": "2001472", "video_name": "a7ce8158-eda0-5823-b189-bbbc3d1f7685", "text": "a man chasing money and behind him is a body builder trying to stop him "} +{"id": "2001473", "video_name": "c1050591-15da-5b41-968c-1b63614ecca8", "text": "a female swimmer jumping into the pool at the olympics "} +{"id": "2001474", "video_name": "8e0ba533-035f-5ff9-9496-9fb49ea725f1", "text": "a cool man driver shirtless in a car "} +{"id": "2001475", "video_name": "af99d446-95de-5542-8c43-4285b498c517", "text": "The sunset over a beach glistened with the sparkling stones, creating a romantic, otherworldly ambiance. "} +{"id": "2001476", "video_name": "393c572c-d518-54fe-9c0f-dcb8a4f78873", "text": "women shopping at a really fancy shopping center "} +{"id": "2001477", "video_name": "a9dee184-ef3d-5016-b019-46b5553f3cdf", "text": "a man working on the Mars "} +{"id": "2001478", "video_name": "01485348-ce6e-594c-a078-93903784b7c3", "text": "A fast zoom in of a green Valley with trees and the sunset on top of the valley Message: Comming Soon (Font: MODERN) "} +{"id": "2001479", "video_name": "71860f4b-1d06-5a39-82b2-46198390f6c4", "text": "a old lion running back of young lion in jungle "} +{"id": "2001480", "video_name": "d74004f4-5ebc-5831-aefd-cc61ff433e75", "text": "Shadow fight 2 Shogun Shadow old demon boss, 2 Swords, Katana and Wakizashi, Crescent Helm, black armor with gold, military warlord, Japanese Samurai, Burning Japanese Old Town, Unreal Engine 5, Depth of Field, 32k "} +{"id": "2001481", "video_name": "b42ca9d8-b6e3-5ba3-97a9-1b224e99c2b3", "text": "The villagers asked what the fish say "} +{"id": "2001482", "video_name": "10581560-0992-574a-a098-aee54ba0e6fa", "text": "a red snapper performing stand up comedy in a nightclub "} +{"id": "2001483", "video_name": "3ae5a1b6-bde0-5793-8164-7ba324a9c5a6", "text": "alpaca with a top hat black tie suit, golden monocle with gold cord monocle on the left side of the eye and smoking a cigar, background with several cyberpunk, futuristic and realistic style buildings "} +{"id": "2001484", "video_name": "2cb944a1-364f-56c5-aff7-b321796a7b4c", "text": "live man floating and flying through the air "} +{"id": "2001485", "video_name": "1dad2239-a4cb-53cb-a149-e8d30b305fe9", "text": "Create a hyper realistic cartoony stationary timelapse of a clock running down time "} +{"id": "2001486", "video_name": "210db5b4-ba19-5fe7-9d00-c3b15622acf2", "text": "a female covered in red liquid "} +{"id": "2001487", "video_name": "d7215fe3-cd9b-57b1-a419-75335f18c873", "text": "Montage of Arjun and Maya engaged in deciphering ancient texts and studying artifacts. "} +{"id": "2001488", "video_name": "7dbab7a7-554e-5a68-add7-999825714c5d", "text": "birds flying in garden with colorfull flowers "} +{"id": "2001489", "video_name": "40131a72-c558-57c4-a0e2-03a39c10b20a", "text": "The clouds are orange and fading into a blue sky. The data flow is composed of blue and red lines and shapes that intertwine with each other. The data flow appears to be rising up into the clouds, as if it is carrying information into the digital world "} +{"id": "2001490", "video_name": "fdedccee-cbca-513b-bae6-6f54fe368197", "text": "hd footage of a severed hand using its fingers to walk down a city street at night "} +{"id": "2001491", "video_name": "8399d9fa-bb2b-5099-9fd8-2bc04a38585e", "text": "a intro logo for youtube like a luxury brand whit color black and white sims a marmol stone "} +{"id": "2001492", "video_name": "821534d5-da23-5f43-a2d1-4ad629374847", "text": "bakers in the middle age selling bread in the marketplace "} +{"id": "2001493", "video_name": "5c10bca9-b1ce-577f-86a6-5fcef716ff36", "text": "a comic book scene atop Snowdon mountain where a man in a cap and a check shirt recreates the turkey on head scene from that Friends episode "} +{"id": "2001494", "video_name": "e17f6869-bcaf-5016-a249-96504907a3e7", "text": "unreal engine. blue sky quiet place. long beach. white sand. static video "} +{"id": "2001495", "video_name": "c838288b-439d-59ad-9cdb-7ea1e671f948", "text": "Herend porcelain on the bridge of Budapest "} +{"id": "2001496", "video_name": "fd87fb64-7e90-5684-bec9-142d108ab39c", "text": "a three year old girl celebrating her birthday with her family "} +{"id": "2001497", "video_name": "f2c15f7d-bb3f-52bd-a018-c66ab9e7da9d", "text": "most expensive Lamborghini in golden color, pan zoom to right, hyper realistic, cyberpunk wibes neon lighting around the car "} +{"id": "2001498", "video_name": "703a1ec0-fa3e-5ac7-b933-69b72bf85e5c", "text": "an image of a woman with red flowers, in the style of anime art, ethereal figures, flowing lines, flowing fabrics, gongbi, realistic yet romantic, fairycore, dark white and light crimson, she is smiling "} +{"id": "2001499", "video_name": "0f4b84a0-febe-5498-9e78-0522d8745e8a", "text": "craft a logo for a paint company with the name CutNRoll that caters to the apartment complex industry and high end rental industry "} +{"id": "2001500", "video_name": "08bd9012-0427-5856-b5bb-7be57c26fbc7", "text": "a cinematic night action shot of a ninja running after a woman in the city of tokyo "} +{"id": "2001501", "video_name": "16ec1d96-31f0-5396-b832-2591420fa0b8", "text": "lonely wolf walking through the woods, 4k video, realistic. "} +{"id": "2001502", "video_name": "17c6c13e-3860-571a-ab9f-db99f8ed7fde", "text": "a smiling girl blinked at me with her wonderful eyes and beautiful face. "} +{"id": "2001503", "video_name": "65606031-d5d7-5311-810f-126e098e00ac", "text": "the small steps, not the giant leaps, that bring about the most lasting change "} +{"id": "2001504", "video_name": "fb25ce93-e269-5b94-a847-946b759102f7", "text": "A horse jacket with a horse on the front and the back "} +{"id": "2001505", "video_name": "0dd8061b-f53d-512a-8fc8-2565005f8752", "text": "Anime girl gives birth in hospital "} +{"id": "2001506", "video_name": "198e277f-02b9-5c45-b2ab-c0b292a926e5", "text": "a small boy watching a meteor crashing into earth, 8k, hyper realistic, cinema quality "} +{"id": "2001507", "video_name": "4d25cda6-fa0c-51b0-b412-4248f28ca86c", "text": "Girl smashing purple elixirs in pure white background "} +{"id": "2001508", "video_name": "57b451e1-0bb1-55f7-a708-f4fd1dadecb7", "text": "A football player kicks the ball into the net and leaps into the air in celebration. Their teammates rush over to congratulate them while the crowd erupts into cheers. "} +{"id": "2001509", "video_name": "ffa5a08b-ca6b-5d7c-acb5-ef088ce5e452", "text": "animate the boy and the girl "} +{"id": "2001510", "video_name": "cbc62579-3292-5a81-9e3d-c7a6260362aa", "text": "trees on bees on trees on bees on trees on bees on trees everybody sneeze "} +{"id": "2001511", "video_name": "3d655ebd-3d52-5b61-8931-66243588d222", "text": "an beautiful woman talking, front view "} +{"id": "2001512", "video_name": "42122bdc-9fef-532f-b549-3c17d4e90e3e", "text": "4k hyperealistic photo of bengali man during winston churchills drought "} +{"id": "2001513", "video_name": "1e5c0796-a9e9-594d-b2ce-28ec2ecfb347", "text": "Spider dashing through the halls of an abandoned hospital "} +{"id": "2001514", "video_name": "96440b69-65ae-5359-a15c-7430ad2b2439", "text": "The autumn evening sky envelops the theater in a cascade of colorful sunsets, cars are flowing and many people are making their way to the site. a soldier stands in the middle of the square "} +{"id": "2001515", "video_name": "86e790fd-007a-522f-9694-d7ef5a263433", "text": "An image of David as a young shepherd, tending his sheep in the hills of Bethlehem,ultra realistic,8k,perfect face,perfect landscape "} +{"id": "2001516", "video_name": "ec1ff197-164d-5465-9254-6888d8b1e81f", "text": "CREATE 4 IMAGES OF A 3D DISNEY STYLE BOY, WITH AN ORANGE POLO COLLAR SHIRT WITH A LOGO ON THE CHEST OF THE LETTER AND, WITH BLACK HAIR, BROWN EYES, IN THE FIRST IMAGE HOLDING A SWEATSHIRT, IN THE SECOND IMAGE HOLDING A SNEAKER, IN THE THIRD HOLDING A CHANGER ACADEMY AND AT THE LAST SMILING "} +{"id": "2001517", "video_name": "581426c4-b0c0-5fe9-a578-7ee8e1ceaadb", "text": "Princess with long blonde hair and blue dress smiles and wishes happy birthday! "} +{"id": "2001518", "video_name": "d9cd72ea-4999-5a81-96d4-872398e3416e", "text": "prompt Once upon a time in a small town, there lived a mischievous little dog named Buddy. "} +{"id": "2001519", "video_name": "fe19036e-aee3-54d0-8a05-b7c5d84d378d", "text": "The heartbeat of carnival, strong and clear, Resonates, drawing the crowd near "} +{"id": "2001520", "video_name": "575a1eff-63a3-5936-8b28-708f988daa43", "text": "To their amazement, Whiskers brought an extraordinary gift to the garden \u2013 the ability to understand and communicate with all the animals within. 3 D Disney Pixar style, 4k "} +{"id": "2001521", "video_name": "18fe6745-be11-58d7-8ba4-9ae80f240249", "text": "adventures, Everest, from a plane, moving forward, 4k "} +{"id": "2001522", "video_name": "0423613c-1a30-5f25-a104-81e9407198c3", "text": "big motion, A young blonde girl struggling with macbook at the coffee store, flying birds, animation, vintage camera colorized, photorealistic, 24fps, 5seconds "} +{"id": "2001523", "video_name": "eaaba556-7b46-5fed-a556-1ab4c38b125f", "text": "Transition to a bustling city street with students from diverse backgrounds walking and conversing. "} +{"id": "2001524", "video_name": "457050cf-c645-52b7-8820-d5e64e3617cc", "text": "A girl with long golden hair fluttering in the wind, a red dress fluttering in the park, flowers, trees, "} +{"id": "2001525", "video_name": "7cef8215-e403-558c-b820-cfae19d03efd", "text": "A tennogen military mecha suit tapestry of emotions, woven by notes "} +{"id": "2001526", "video_name": "617c03e9-6731-595a-96b2-b359deb0a816", "text": "Cyberpunk nightclub with people dancing there is a dj and a bar "} +{"id": "2001527", "video_name": "c540685e-f493-5327-8e39-e0084d196fd5", "text": "love story 3D animation style a guy on his knees proposing a girl "} +{"id": "2001528", "video_name": "157275c5-31d8-5edb-b7c0-b7023acaa845", "text": "an unknowable god creates a world out of chaos, but the chaotic flow of particles does not allow him "} +{"id": "2001529", "video_name": "37088ee2-03c1-5893-81d0-a43a3c975f7b", "text": "A snowwoman holding a follow banner "} +{"id": "2001530", "video_name": "69b50da3-45a9-547e-8b9d-d16685e5df4f", "text": "It\u2019s even been proposed that it could be a relic of a forgotten culture that existed when sea levels were significantly lower than today. "} +{"id": "2001531", "video_name": "385e4be6-42bf-509f-9e5f-d2353a6965a6", "text": "a beautiful girl is playing volleyball on the beach "} +{"id": "2001532", "video_name": "51e4c6b1-bc7a-5360-81ec-1ee2f37b8890", "text": "POV video of a man boiling milk "} +{"id": "2001533", "video_name": "decc8577-26e2-5912-9188-6abf209a315e", "text": "cat shadow walking near test tubes in the lab "} +{"id": "2001534", "video_name": "468ba2e0-3ebb-5d55-bbb8-c75cd70f31d8", "text": "supper man battle some people who want to eate bleed "} +{"id": "2001535", "video_name": "4addc0df-b54f-548b-866b-1fc106123945", "text": "Caring for Pets: Love, Responsibility, and Joy, highly defined "} +{"id": "2001536", "video_name": "0c28ff92-8091-533b-bc7d-4f6c3628c851", "text": "unreal engine. starwars movie. storm trooper heavy combat on the road. ruins of tatooine desert scifi town event wars. "} +{"id": "2001537", "video_name": "de07902b-4073-5a31-bdb1-c13ad4c99a6a", "text": "One earth like planet in space, analog video "} +{"id": "2001538", "video_name": "75a129e5-1e12-5000-87a4-26cd4f054fef", "text": "Croatian football fans celebrating drunk in Ancient Athens fighting "} +{"id": "2001539", "video_name": "b3959afd-4843-53b3-b7c7-f6ed07cec43b", "text": "An oscillating pendulus Message: send Noodles (Font: MODERN) "} +{"id": "2001540", "video_name": "059d5a95-1548-5459-9cbc-fcccd1d2fe0a", "text": "car is running on highway front shot , clear hd zoom in video. "} +{"id": "2001541", "video_name": "d5e825f9-f77a-53bf-b5a0-a344f42a2fda", "text": "A camel eating in the hot desert alone, studio ghibli style "} +{"id": "2001542", "video_name": "10a84e0f-06af-51cf-976f-7a6f7257730e", "text": "a girl with long hair in a white dress walks along a lawn in the middle of a pine forest "} +{"id": "2001543", "video_name": "d92cedc1-db8d-5949-afc4-aab97c91dab5", "text": "masterpiece, rapper with white tech mask, urban outfit, glitch art "} +{"id": "2001544", "video_name": "448851d1-49f7-5414-afe6-e053c3e82f66", "text": "Finn( a dog) is having holiday with the "} +{"id": "2001545", "video_name": "f882772e-453f-5afe-8b90-81e57862ab23", "text": "an animation with a city seen from above "} +{"id": "2001546", "video_name": "2c515c9b-2029-5064-b131-d60b8bb25748", "text": "group of Native American men dancing and chanting with jumping. camera movement left to right "} +{"id": "2001547", "video_name": "2d457dd4-2651-5b1f-ab7e-f3bbc9fc53cb", "text": "Description: Show a traditional Aarti (ritual) being performed after tying the Rakhi, with a glowing diya (lamp) and incense.\nSymbolism: Highlight the sacredness of the Rakhi ceremony and the blessings being bestowed.\nBackground: A serene, softly lit environment to convey the spirituality of the moment.\nCamera Position: A focused view of the Aarti with the Rakhi in the background.\nVideo Quality: Create a tranquil and spiritually uplifting atmosphere. "} +{"id": "2001548", "video_name": "f22805a5-221e-5874-852d-6153ad7135f7", "text": "I am sitting at a table in a restaurant calmly enjoying my bacon and eggs breakfast while the large angry greek man sitting across the table from me is very upset and raging "} +{"id": "2001549", "video_name": "ef428c78-d62f-5915-96c0-7c25268423ff", "text": ": Ethan encounters challenges and learns to apply the wisdom he has gained. "} +{"id": "2001550", "video_name": "f922e720-efef-512e-8972-a0ec00edb6ab", "text": "computer screen showing rotating roofing product, "} +{"id": "2001551", "video_name": "3869ab83-1324-5a4c-ab7f-edbb8e663000", "text": "speed up 100 000 years history in 3 sec shot, nature landscape metamorphosing, "} +{"id": "2001552", "video_name": "e3363652-ae00-5a5d-8076-760c491b44e9", "text": "cat wearing royal blue clothing with stars in the background, cinematic shot, 4k, HD "} +{"id": "2001553", "video_name": "a320a63f-8eb8-52cc-8751-3409ea1646ad", "text": "And so, in the enchanting land of Vrindavan, Little Krishna continued to spread love, joy, and magic, creating timeless tales that would be cherished for generations to come. "} +{"id": "2001554", "video_name": "d9e33d28-dd74-52bb-9460-2993977aeaa5", "text": "camera titan man is walking in the forest "} +{"id": "2001555", "video_name": "307c23de-aab7-5cf2-9f16-21fe80f6f417", "text": "In 2011, the world eagerly anticipated the release of the iPhone 4S. This revolutionary device introduced Siri, the personal voice assistant, forever changing the way we interacted with our smartphones. Little did we know, this was just the beginning of a transformative decade ahead. "} +{"id": "2001556", "video_name": "898be658-4146-52d8-bbeb-179e17ebfdbe", "text": "3d design being designed in the screen of a computer, hyper realistic, vivid colors "} +{"id": "2001557", "video_name": "cb69f248-8789-5cd5-a12d-0fa5ff49dcd3", "text": "fantasy background and the camera zooms out "} +{"id": "2001558", "video_name": "86ccef41-28ed-5fe8-896b-639e7792dcf0", "text": "man playing piano on a big concert hall, cinematic light "} +{"id": "2001559", "video_name": "fe76183b-4235-5dcd-ae12-751b2fc391e0", "text": "Illustrate Tito imparting wisdom to Momo in a serene setting, conveying a sense of mentorship. "} +{"id": "2001560", "video_name": "10e87774-6835-5e7b-9615-8c5724942f7f", "text": "a beautiful whale drifting in the lone ocean "} +{"id": "2001561", "video_name": "d4232533-984f-56b2-ac00-4ba781f2ced2", "text": "A guy in a shirt, glasses and headphones walks against the background of a retro sun, in a cartoon style "} +{"id": "2001562", "video_name": "8591cf4b-142a-5bc4-a40a-dffb95b483bd", "text": "on the moon Message: paola (Font: MODERN) "} +{"id": "2001563", "video_name": "af91f382-16af-5216-b592-fe706bd3b18e", "text": "Hot girl sleeping in bed, clev visible, chubby body, cute face, "} +{"id": "2001564", "video_name": "59b673ba-1abc-541c-aa1c-561d5802cc0d", "text": "A boy wearing an astronaut suit, standing on the moon, waving to aliens. around is a vast universe with many stars, hight quality, 16:9 "} +{"id": "2001565", "video_name": "a49ba743-fc5a-5b5a-9530-c7c4c0ff396b", "text": "the grim reaper as a rave dj next to turntables, black and white super photo realistic 16k "} +{"id": "2001566", "video_name": "ce40f913-06ae-5675-a9d3-cac2e14f7e4f", "text": "moths as gods. bjork aesthetic, zoom in slowly "} +{"id": "2001567", "video_name": "5e0277ab-2df1-58f5-9208-02bacf421ec3", "text": "ASMR visuals of mountains and flowing water from mountains "} +{"id": "2001568", "video_name": "4fb9cc80-9035-5e09-8d9d-5b6604906dc8", "text": "a caregiver getting vital signs of a patient, realistic "} +{"id": "2001569", "video_name": "78f0e8c1-006f-567c-931e-a8f70425b990", "text": "high beauty cosmetics Message: M.A.C. (Font: MODERN) "} +{"id": "2001570", "video_name": "8d4b9dc2-72a2-55da-b987-73e13e9dcc2a", "text": "a truck is driving on the highway with the trailer on fire at sunrise "} +{"id": "2001571", "video_name": "ffe93c36-3a02-523f-8300-e2c8e6b12dd8", "text": "fish moving from side to side in the water "} +{"id": "2001572", "video_name": "1bd34ad3-cd26-50f9-939f-20e7b5269ab5", "text": "Scene 12: Evening Sky Create a scene with a beautiful sunset or twilight sky, symbolizing the end of the day. "} +{"id": "2001573", "video_name": "c8d2dd2d-6df6-5fdf-9aed-eea445367f1b", "text": "The lone moon hangs in the sky, shining its pure and radiant light. This imagery symbolizes the enduring beauty and tranquility of nature, even amidst the transient nature of worldly affairs. "} +{"id": "2001574", "video_name": "f0628290-edbe-55c1-b3f1-9413fddb9f97", "text": "sexy blonde woman sitting on a chair "} +{"id": "2001575", "video_name": "e6f918c7-b82d-5d22-897d-985d345f0984", "text": "Family in old house drinking tea "} +{"id": "2001576", "video_name": "140c30ad-4159-5e72-b50e-4b8dd3f5b909", "text": "A grand archway at the entrance to a sunken city "} +{"id": "2001577", "video_name": "b1387d63-b467-539b-b3bb-7c55701d6923", "text": "video Types Of Scams Cryptocurrency Scam Forex Trading Scam Binary Options Scam Wire Fraud Scam etc. "} +{"id": "2001578", "video_name": "618344fb-a384-5199-9108-b55de60e4493", "text": "a pink blob morphing with a plain yellow background "} +{"id": "2001579", "video_name": "a2e753c7-5005-5267-97b3-aa16e1aa0df6", "text": "the Treaty of Versailles, created economic and political instability in Germany, laying the groundwork for World War II. "} +{"id": "2001580", "video_name": "cb53140a-1ac4-5512-a988-15b28ffbb3dc", "text": "landscape is the beautiful scenery of mountains, sky, clouds and Taoist temples. Lightning shines brightly from the clouds in a fantasy world "} +{"id": "2001581", "video_name": "faedcaa5-6f81-51d5-8cf0-ba607a3ccdef", "text": "A long video of poor farmer "} +{"id": "2001582", "video_name": "98e0e160-be0c-5681-8edd-c503c2fcfd39", "text": "young people engaged in participating in community events "} +{"id": "2001583", "video_name": "e34e82c7-be1b-54ca-87ce-4941fe61a616", "text": "studio ghibili world, a japanese cat in the centre and fireflies in the background "} +{"id": "2001584", "video_name": "5ef574b8-8d02-56cd-893f-a56aaeca14d3", "text": "show the basic principle of Traditional Chinese Medicine, the balance of yin and yang "} +{"id": "2001585", "video_name": "a83a512f-4294-51af-a33f-3c947e2f4c6b", "text": "make animated forest video for 10 seconds "} +{"id": "2001586", "video_name": "6a478678-b3ac-5ad7-9459-8a171e083334", "text": "Make the character in this photo as a sculpture, realistic Message: 1 Attachment "} +{"id": "2001587", "video_name": "81fb3d65-b7df-5e57-9c8a-6d089c1ad68a", "text": "the beautiful mountains with birds above the sky "} +{"id": "2001588", "video_name": "453bf0de-c07e-5e96-b891-7c70d8d0c3e1", "text": "full body shot of Big Bad Wolf reimagined as sdxl 1.0 lawyer with a strong passion for justice standing in a court room giving opening statement to a jury "} +{"id": "2001589", "video_name": "c5837e6e-acd7-54bf-8761-5ce2c6f08568", "text": "A man in armor on a horse stands on the battlefield, movie, HD 8K "} +{"id": "2001590", "video_name": "e17c12fd-7677-5471-8a50-ee8abc350094", "text": "3d art beautiful garden rood running "} +{"id": "2001591", "video_name": "fd29fdf2-94ac-5945-9af5-cf7a86f23cd7", "text": "Marilyn Monroe, young and beautiful, realistically takes a selfie in the mirror on an iPhone "} +{"id": "2001592", "video_name": "822797e6-7b09-5d35-b5ba-6b25614e80ec", "text": "Crashing waves in the Caribbean , Message : Happy Birthday , Font : (Modern) "} +{"id": "2001593", "video_name": "24ef927f-2150-5c6e-95f7-4977e7c1d7eb", "text": "downhill mountain bike race finishes with a massive jump off a cliff. Swiss Alps in background. SantaCruz bikes. "} +{"id": "2001594", "video_name": "8c948fa3-7a65-5873-954e-7cf85d363e1e", "text": "animated video of harry Potter doing magics "} +{"id": "2001595", "video_name": "84b15e43-0d0b-533b-b4b9-8bacb0ae5f85", "text": "man looking with red eyes at bank account "} +{"id": "2001596", "video_name": "953216fe-14a0-57d1-bafb-2d602c4b4827", "text": "Bamboo groves swaying in the wind, filled with gold, with a pure black background "} +{"id": "2001597", "video_name": "b3c68e10-f61f-5710-925c-25e54473499e", "text": "make the head look up Message: 1 Attachment "} +{"id": "2001598", "video_name": "cbd4a52b-b8b1-5f71-8c4f-89088070ea4c", "text": "camera is shaking , Dark surrealism, darkart gothart gothicart occultart surrealism paranormal supernatural ghosts hauntings creepy spooky horror "} +{"id": "2001599", "video_name": "7a3b36d9-c818-5aeb-bbe5-5f8320084d5b", "text": "Generate realistic simulations of rocket launches, complete with liftoff sequences and atmospheric interactions. Showcase a range of rocket types, from historical missions to upcoming ones, providing an immersive experience for space enthusiasts "} +{"id": "2001600", "video_name": "a3362130-4bf4-5e37-a796-c9d23ea9a4b2", "text": "a boy with hoodie working at computer on a chair "} +{"id": "2001601", "video_name": "5e196d86-b6d1-5c88-9674-75557495d86c", "text": "house with house rider on a grass ground "} +{"id": "2001602", "video_name": "4e6f25a9-10e4-5b0d-9894-f769eed29bff", "text": "walking on water floating Jesus, rocking boat looking where Peter and disciples screaming, special effects, lightning thunder, beaming cracks, storming skies, blowing wind, lightning skies, crashing ocean waves, "} +{"id": "2001603", "video_name": "846d3af1-8aef-5a1d-9fe7-27c3a4fd86d7", "text": "colorful underwater scene where sharks are swimming. Colorful coral and colorful fish. Bright lighting. 3D animation. 4k. Pixar style. "} +{"id": "2001604", "video_name": "c4b02641-4930-5490-94fd-4616d0da8069", "text": "Sacred Geometry The Seed of Life light tunnel "} +{"id": "2001605", "video_name": "79a7fbc1-9824-57d5-bff6-22408928f913", "text": "grainy 8mm footage of a psychedelic vision of an eldritch horror "} +{"id": "2001606", "video_name": "bf9ce178-ba54-5370-bae7-9e0228dadc19", "text": "I picked up a brick from the floor, "} +{"id": "2001607", "video_name": "b78d9e19-835c-5be4-bd2e-1c8ab3a731e6", "text": "bubbling and sizzling of hot oil, with steam rising in background "} +{"id": "2001608", "video_name": "69bd2520-d30d-5fb2-86a5-4d7bf222e193", "text": "End on an uplifting note by using expansive graphics and tech imagery to convey the technology opening up a new frontier in human capability enhancement "} +{"id": "2001609", "video_name": "5698b150-e848-5b46-80c1-aaba52ed4299", "text": "a logo with I,Y,Y letters by using black and blue "} +{"id": "2001610", "video_name": "254c859d-8c02-588d-8446-8cede93f3711", "text": "three Friends Contemplating: Arjun, Sudhir, and Ravi stand at the outskirts of the village, gazing at the intimidating structure. They huddle together, a mix of curiosity and apprehension etched on their faces. Their expressions capture a blend of determination and fear as they prepare to explore the supposedly haunted palace. "} +{"id": "2001611", "video_name": "480c7b0f-7996-5947-8340-56d3e60c4a64", "text": "On boundless steppes, a lone figure atop a horse stands as clan leader. Weathered face tells tales of battles and heritage. Graceful gallop, unity with steed. Hands bear mark of craftsmanship. Aerial view shows nomadic resilience in endless expanse. "} +{"id": "2001612", "video_name": "1a39ef6b-2ecf-546e-9aea-5d4cb56edd0e", "text": "A scene of King Kong holding a helicopter in his hand and destroying it "} +{"id": "2001613", "video_name": "7fb8fcd0-8a46-553d-80ee-961d7b7d7eb8", "text": "i need to animed this science material in each circle in the uploaded image "} +{"id": "2001614", "video_name": "050c0672-54eb-503c-8d59-928460cc12ea", "text": "Create an animated AI character welcoming the new year, narrating the advancements made in AI during 2023 and expressing hopes and aspirations for 2024. "} +{"id": "2001615", "video_name": "cf3fe038-ef9d-583c-8807-485fb7c118ca", "text": "Have you ever ordered a pizza at home? Create an illustration that captures the joy of receiving a freshly delivered pizza., Provide a detailed explanation of a cozy living room with a family or friends eagerly awaiting the pizza., Include a detailed description that conveys the excitement and anticipation in the atmosphere., Style: Illustration, Implement: Digital illustration with a focus on warm colors and expressive characters "} +{"id": "2001616", "video_name": "52fe6cad-d873-5fe9-8620-f87628fbcf3d", "text": "On a dreamy Christmas Eve, Santa Claus gave a small heater to a little boy sitting in the snow. The little boy felt very happy. "} +{"id": "2001617", "video_name": "98093696-1811-5f28-b17a-d838ab92d880", "text": "Realism. A man different from everyone else. There are a lot of identical ones around. He is different, in different clothes. Light "} +{"id": "2001618", "video_name": "8c093d2e-9090-5a0b-aab0-14b5e1f27e4a", "text": "His rule over his people was harsh, "} +{"id": "2001619", "video_name": "68183094-e825-5962-8784-bdf1587310cd", "text": "an ice cream cone with fudge and caramel dripping on it, fall leaves are blowing in the background "} +{"id": "2001620", "video_name": "24d7fadb-eab8-5cae-a6b6-9b52c721068b", "text": ". A river winding through the village.\n in 4k 16;9 "} +{"id": "2001621", "video_name": "5b513383-c6b9-5e22-8e78-3785643edb27", "text": "A photorealistic depiction of the future of Homo sapiens sapiens, and the challenges and opportunities that lie ahead, such as climate change, artificial intelligence, and space exploration "} +{"id": "2001622", "video_name": "9a7782a4-c0f3-5de3-aaa2-0b7989382322", "text": "a realistic video, unreal engine style, with aerial images of nature with many mountains, vegetation and waterfalls, "} +{"id": "2001623", "video_name": "e8bf7671-8fed-5f40-9d9c-56587b45a77e", "text": "happy waljing boy Message: 1 Attachment "} +{"id": "2001624", "video_name": "6c5b7e52-85f2-5c06-acef-80eb3e601fc1", "text": "andrew tate opening a briefcase full of money "} +{"id": "2001625", "video_name": "4293bbc9-a834-5e72-82d2-4ad4f7b35225", "text": "A playful, big elephant with its trunk raised in the air, standing beside a watering hole. "} +{"id": "2001626", "video_name": "f72706a3-616e-59f2-9710-81f25640aba7", "text": "Rich people are giving away large sums of money to others "} +{"id": "2001627", "video_name": "8a86f82a-f8cb-5c93-a5af-e4e39c4b45d5", "text": "A photo of Cristiano Ronaldo in gym attire proudly showing off his muscular physique in front of a gym mirror, with clear muscle definition and a confident smile. "} +{"id": "2001628", "video_name": "73d2daea-d1bb-5d0a-81c7-ef55f5789d0d", "text": "The village buzzing with anticipation as something special is about to happen. "} +{"id": "2001629", "video_name": "8dd3f943-00fb-54e5-8cd5-ba9aed438011", "text": "a hand with a quill signing a treaty in an old paper "} +{"id": "2001630", "video_name": "accfc047-853b-53a4-b367-c0b999541668", "text": "woman looking at produce in a grocery store, water spraying down on the produce, shot from inside the display case, in the style of an oil painting "} +{"id": "2001631", "video_name": "106a886d-126f-595d-b987-cfb79bce38e5", "text": "doctor apple is talking with other students. And his hand is shaking. Message: 1 Attachment "} +{"id": "2001632", "video_name": "264cf38f-2cef-5c02-81d4-ed8590daea6b", "text": "a poorman is in bed,and temperatures is 39 "} +{"id": "2001633", "video_name": "7d745a2c-e660-5178-99b6-91aa4922bd8e", "text": "make a cv resume from the details written in this image Message: 1 Attachment "} +{"id": "2001634", "video_name": "32f02b73-420a-5383-8a14-8138ce922e1f", "text": "The projection of the white mask hits it, emitting light "} +{"id": "2001635", "video_name": "ad79dadd-e4d9-51ba-ad06-4366d037ab84", "text": "dungeons and dragons, female elf ranger swinging sword, copper brown hair, copper skin, brown and green leather armor, dungeons and dragons art style, cinematic camera, cinematic lighting, dynamic pose, dynamic camera movement, movie quality "} +{"id": "2001636", "video_name": "5ae67ebc-a218-5756-90f5-6cd26543e1e9", "text": "A joyful chimpanzee clad in a spacesuit explores an alien world made of vibrant yarn. "} +{"id": "2001637", "video_name": "0727eac1-7a49-5e5c-ba82-b7f37afe8320", "text": "Generate a video representing a satisfying and repetitive event, focusing on the imagery of flowers continuously blooming. The animation should depict a continuous cycle of flowers unfolding gently, with vibrant colors and intricate details. Ensure the process is harmonious and soothing, capturing the beauty and serenity of this natural event. The video duration should be at least 5 minutes to provide an immersive and enjoyable experience "} +{"id": "2001638", "video_name": "28890694-c2fa-5164-8f87-4e149f2eaecd", "text": "1980s glam art of a bearded mixed guy with a buzz cut in a room after a party with black balloons and neon lights "} +{"id": "2001639", "video_name": "16e8bf3d-0766-5633-8616-fd021c4abafb", "text": "soccer player jumping out of a TV "} +{"id": "2001640", "video_name": "90e855c9-ae73-5032-a119-5a6550b4a287", "text": "joyful atmosphere enveloped the once quiet jungle "} +{"id": "2001641", "video_name": "2f58ed94-a766-5c21-a7b0-df3a7995a510", "text": "one monkey and one elephant in the forest. The money Riding elephant. 3d 4k 19.9 ratioo "} +{"id": "2001642", "video_name": "eba62482-95bc-5bdf-93b3-c521e939e18d", "text": "Rihanna enjoying a meal at a restaurant, aardman stop motion style "} +{"id": "2001643", "video_name": "bc87fb5c-0bdf-5ef0-a9b3-fc7e9ad23394", "text": "show who is handsome in a world\u2013gs 28 "} +{"id": "2001644", "video_name": "fa3732c6-40f9-56f7-985f-dc163a1e4ed1", "text": "A beautiful sunset in a long road "} +{"id": "2001645", "video_name": "2b5f83da-8ee1-54d4-a4d6-6ae59e36dc26", "text": "Of souls in pain, of wandering ghosts, of the living dead, of the suffering dead, of betrayals, of sworn and consummated revenge. "} +{"id": "2001646", "video_name": "b4f4e643-4046-5ea5-919b-5f5b2456a2f7", "text": "The camera circles the solemn scene from above, the swirling elemental mixture beginning to glow and spin with gathering energy. Lightning cracks the sky as the ritual reaches its crescendo. In a dramatic final shot, the eyes of the shamans open, radiating power. "} +{"id": "2001647", "video_name": "2e84d31f-3fea-5ef2-b266-9dc016ab9b65", "text": "crypto gift falling from the sky in Matrix style. Cinematic "} +{"id": "2001648", "video_name": "55ce7226-ac80-5b6a-8ac0-5cb061e054af", "text": "raw footage of aliens walking in mall, posted to reddit in 2018 "} +{"id": "2001649", "video_name": "c48519ac-bc32-5093-8bcf-36f246910ce3", "text": "Two cartoon characters chatting in a medieval house "} +{"id": "2001650", "video_name": "ccf042d1-0829-5229-b601-f7b9a7b55826", "text": "ape standing in destoryed city holding weapon angry "} +{"id": "2001651", "video_name": "f141c654-26fd-5c7c-8dd6-a9f34f9f02e1", "text": "musical notes flying in the wind at the city "} +{"id": "2001652", "video_name": "9a62b839-2797-5a04-97c4-55f5bcff8a2d", "text": "Toyota Camry driving in the forest, rain "} +{"id": "2001653", "video_name": "327f131f-2bac-5f64-8fb4-6c5ea265904f", "text": "man going to travel by plane "} +{"id": "2001654", "video_name": "9365039b-a78b-5b24-959d-20f77974ea08", "text": "brain all parts working fully quantum view "} +{"id": "2001655", "video_name": "62af27f9-090e-5b00-9cd6-df77fca8b65f", "text": "pope playing yugioh trading card game, summons exodia the forbidden one "} +{"id": "2001656", "video_name": "640621a3-a808-5e25-baf6-3d84ac8782bb", "text": "Slight face movement and happy facial expression "} +{"id": "2001657", "video_name": "79a6f28d-bc54-5db1-86b9-ed26bc3aa5e6", "text": "A heavy snow was falling on the beach of a tropical island "} +{"id": "2001658", "video_name": "3a93cffd-a0a7-5900-91df-6672bcd7509d", "text": "The kitten hid under the car, as it is raining outside "} +{"id": "2001659", "video_name": "27f52bb4-0c6f-57dd-8527-be6422efa883", "text": "a dyson sphere rotating around a star in space "} +{"id": "2001660", "video_name": "9836c91b-3797-5f1f-8084-a0ef12b4a6da", "text": "Tom Cruise eating pizza with a red bet "} +{"id": "2001661", "video_name": "4ec169c1-09ff-5172-953f-f01781836ebc", "text": "towering at a staggering 60 meters "} +{"id": "2001662", "video_name": "857d2cd2-dbf0-560a-9e2e-5741365538ae", "text": "taking money out of someone\u2019s wallet "} +{"id": "2001663", "video_name": "9f3f175b-b092-505e-a018-3163f4e18335", "text": "a large robot walking on an empty road and in the sky there is an asteroid racing towards him "} +{"id": "2001664", "video_name": "eb6119ed-fc49-5ca9-95b3-b4796386233f", "text": "Joe Rogan hosting an intergalactic podcast with alien guests, discussing life on different planets "} +{"id": "2001665", "video_name": "3aa55deb-2964-54aa-9850-542eb988bb24", "text": "banks of rhine river, Cinematic shot, cinematic lighting, massive scale "} +{"id": "2001666", "video_name": "5a906b26-b3d2-56c0-8c02-528a74bd0e47", "text": "Sarah raises her hand, gesturing towards a bird perched on a branch nearby "} +{"id": "2001667", "video_name": "4709444b-c723-579e-8b95-42a88be1d346", "text": "a cream colored backdrop with a few plain books placed on some minimal and modern furniture in the back. This is where an executive would sit and talk about culture and the state of the business either in a room at their office, or even a room at home. This backdrop should make the viewer focus on the speaker and the content. "} +{"id": "2001668", "video_name": "40541835-0f58-5ec7-9764-144aa18c7b6a", "text": "Five nights and Freddie the move. 3D from disney Pixar "} +{"id": "2001669", "video_name": "9dfeea05-b8ae-5bf7-a9dc-c411e7d2a933", "text": "a person using a computer accessing LinkedIn. 1080 p "} +{"id": "2001670", "video_name": "207951cb-32fd-53f5-91cb-ce3ab93e6c1e", "text": "Standing in the dark holding a samurai sword "} +{"id": "2001671", "video_name": "06503097-0cf4-5954-931f-a9229b77d270", "text": "As eons unfurled, these elemental building blocks coalesced into swirling nebulae, colossal clouds of gas and dust. Within the heart of these celestial crucibles, the alchemy of fusion ignited, giving birth to stars that would illuminate the cosmic tapestry. "} +{"id": "2001672", "video_name": "4957d20b-91e8-51af-9ca0-04742c1fa149", "text": "a model is walking at street corner, dressed in Balenciaga, silk dress and wool suit, attractive "} +{"id": "2001673", "video_name": "ef53092e-c683-5cfb-a301-c4582238a2d3", "text": "a young priest, a very beautiful and delicate black African woman, wears ancient Yoruba clothing, is consulting an ancient oracle, she can see the future on the horizon, magical, spiritual, avatar style scenario, rich details, epic , cinematographic "} +{"id": "2001674", "video_name": "339683b3-6096-5557-b990-e7eb19c6caa4", "text": "a car with a family coming out of it "} +{"id": "2001675", "video_name": "9da5c9f7-46ed-5a62-82ac-021a76bec47e", "text": "A Creature Crashed Got Hit In The Car (DashCam "} +{"id": "2001676", "video_name": "dfec98ac-83ff-515e-b573-a82132a31922", "text": "a cartoon girl rotate their camera to home "} +{"id": "2001677", "video_name": "f6306ff4-114b-544a-b9c3-2bf4758fe69b", "text": "ultra sharp and quality details, cinematic animation of volumetric light, shimmering water bubble covering an ant trying to break free attached "} +{"id": "2001678", "video_name": "eeea3bfd-3e6b-543d-816f-72f683719ba2", "text": "There I found Mark passionately embracing a younger woman "} +{"id": "2001679", "video_name": "7dd7b4cb-41a3-5412-b9db-aad88029f5f9", "text": "a boy runs hopping through a pumpkin field. The full moon shines in the night sky "} +{"id": "2001680", "video_name": "e55cb12b-ab89-5ab0-9153-64b99ab44310", "text": "school bus running over zombies in a city "} +{"id": "2001681", "video_name": "91779362-e164-5e76-a4c7-396873f14d72", "text": "animated video of two persons talking in private "} +{"id": "2001682", "video_name": "854a004a-d211-5c0d-86fb-725542800271", "text": "Harry Potter and Hermione do magic "} +{"id": "2001683", "video_name": "661fb940-1bda-55ec-8096-2d9f8c913458", "text": "dog happy run for 5 second "} +{"id": "2001684", "video_name": "677aad5d-3c1c-578e-af71-85422010f351", "text": "Usa mexico border with a police car "} +{"id": "2001685", "video_name": "5888e755-4bc1-5063-afc6-1af266881880", "text": "in center,a love appear Message: 1 Attachment "} +{"id": "2001686", "video_name": "44b53f9d-bd51-54d9-b715-0debd30143ec", "text": "paint brush with red paint on it "} +{"id": "2001687", "video_name": "908ece6c-098e-5f4e-ae49-4f33e7087d85", "text": "Asian Girl Running Barefoot With Shoes "} +{"id": "2001688", "video_name": "d1431f4c-4360-5eff-823e-fd3ae5bddb5e", "text": "Generate a poignant scene illustrating the demolition of the Babri Masjid in 1992. Depict clouds of dust, broken bricks, and sorrowful expressions on the faces of onlookers , Steady, somber handheld shots capturing the demolition from ground level, conveying a sense of chaos and destruction , 3d illustration , 4k ,cinematic "} +{"id": "2001689", "video_name": "f89c2ab9-2ac4-5627-872c-83c0e22f4677", "text": "group of arabian drummers playing excited "} +{"id": "2001690", "video_name": "56404893-7b6f-5b88-b916-403cc8ce898d", "text": "make a hyper realistic video of this more than 10 seconds Message: 1 Attachment "} +{"id": "2001691", "video_name": "2533b30e-af81-5465-9771-1f76a6fab0e8", "text": "pizza Message: who asked for this? (Font: RETRO) "} +{"id": "2001692", "video_name": "6376f579-a432-5481-b943-a4b125e71d19", "text": "people from all ethnic diversity gather around to welcome and witness the coming of a messiah, the messiah decent is greeted by a bright glowing light from the heavens, the witnesses are celebrating and some are in awe, military gathering with arms and ammunition as the messiah continues to decent in all his glory "} +{"id": "2001693", "video_name": "066fa8ef-076f-5a3d-9c98-8305585d7271", "text": "A luminous sea and sand, at night. The sea shines with a warm, golden light and the sand sparkles. "} +{"id": "2001694", "video_name": "e13dc157-d8ff-5e93-b3e4-16dfdedb67ff", "text": "vertical format video. Dark volcanic wasteland. Tall dark solitary tower. Tower is style of Lord of the Rings, tower of Sauron. Flaming eye on top of tower. Tower falls over and crumbles to dust. 5 second duration for video "} +{"id": "2001695", "video_name": "28d7c4cf-fdb2-5093-8c99-0d2a3c973a3b", "text": "Each year, during the Harvest Festival, the villagers would gather around the oak to express gratitude for the bountiful harvest and seek guidance for the future. "} +{"id": "2001696", "video_name": "5cb3c8d5-8338-5353-82df-ff42079172fb", "text": "rotate the book in the image to create a book product video "} +{"id": "2001697", "video_name": "fffe4168-620d-5e3f-bddd-13e6a43711c4", "text": "red exit sign, glowing, 3d rendering "} +{"id": "2001698", "video_name": "1d569d87-d509-5a85-8ce3-436d646e6eb6", "text": "parents accompanying their little girl to have fun in a beautiful garden. the little girl is laughing "} +{"id": "2001699", "video_name": "c1e2ce0a-bc7f-5853-8500-8c7024507ab4", "text": "football rotate on the head of turtle. 3d animation, dynamic "} +{"id": "2001700", "video_name": "e3f16aed-81f3-5963-b22c-c20ac4e3d59b", "text": "a dog and a cat face to face and moving their eyes "} +{"id": "2001701", "video_name": "da6d370e-0df0-5522-9886-7c5dde14d53f", "text": "5 year old kid with grey hairs and formal clothing sipping coffee "} +{"id": "2001702", "video_name": "484faaeb-d380-50df-84c9-0bcace2ccc85", "text": "A silver androgynous robot without hair, the torso can be seen up to the knees. Intense Intensive present demanding look into the camera. Tribe tatoos. Shamanic style. Urban space scenery in the background. Mystic light. Colors blue and green. Epic mood distinct facial features, pensive poses, precisionist lines, ethical concerns, precision engineering, machine age aesthetics "} +{"id": "2001703", "video_name": "6b7e5bb0-1661-5bef-ad47-ef02a3f0e40e", "text": "2 sellermen talking on flight, cartoon image "} +{"id": "2001704", "video_name": "e94be4e0-acb2-5dd2-be62-4add6acb1103", "text": "camera blast flies away Message: 12 (Font: MODERN) "} +{"id": "2001705", "video_name": "fae0f48c-eedc-5960-8138-06c6206f4491", "text": "Create an image of a peasant man who is planting corn "} +{"id": "2001706", "video_name": "b54f8e5d-8bf0-5dfe-9da5-bd7afdb3cc0a", "text": "A colourful drawing of a picturesque sunrise paints the sky with warm shades of orange and pink. Tony the tomato is perched on a vine overlooking the garden, his eyes wide with wonder. "} +{"id": "2001707", "video_name": "7784a228-d417-5be8-8ca9-75544086ff28", "text": "a calendar with pages turning fast by itself "} +{"id": "2001708", "video_name": "a23b26f3-f2a6-5b88-842a-bda373102ca6", "text": "beautiful scenery, water droplet , calm, serenity, calm breeze, a bit sunrays through trees, forest "} +{"id": "2001709", "video_name": "b9aff035-5126-51fb-baf4-23504c6374a8", "text": "Cricket Trailor, Pak vs India, Sports, Ground "} +{"id": "2001710", "video_name": "88658423-b8a2-55ba-bc3a-e529e7e66eac", "text": "celestial angel with luminescent wings, floating mid air in dark forest, luminescent mushrooms, ultra realistic, hyper detailed, dramatic lighting, zoom out "} +{"id": "2001711", "video_name": "6f505bc6-0c2d-5a18-ad10-e1357698762b", "text": "add minimal movement to sky and water. Keep everything in picture "} +{"id": "2001712", "video_name": "c3763d96-f70c-5e60-a03b-7f035caf9203", "text": "abandoned New York streets covered with jungle, a lot of flying foxes are in the sky "} +{"id": "2001713", "video_name": "3b11d151-6f6c-5975-9f91-b03f334024e9", "text": "sleek interstellar cruiser in low Earth orbit leaving earth, photorealistic, Cinematic lighting, camera pans up "} +{"id": "2001714", "video_name": "30c27e82-3449-5e5a-ab49-6bc6d49d14f7", "text": "cartoons characters, cats and chicks in a green playground waving hands "} +{"id": "2001715", "video_name": "5042b03d-688a-560a-9a17-8a6c3797a5da", "text": "a space ship lands in a planet with lush green forest. 2 humanoids in space suit emerge from the ship looking around. Then they explore the terrain and find unfamiliar species. Then with ominous music, they look behind them and see a large creature resembling a shark with 4 legs. They start to run when the creature sees them. The creature starts to make chase. The clip ends. "} +{"id": "2001716", "video_name": "32d956f5-f520-516e-bf8d-4aae40dbb10d", "text": "small wooden French Canadian Fort in 1700. Gates open as citizens enter and exit. View from outside gates. ar 16:9 "} +{"id": "2001717", "video_name": "fda88709-d41c-5cdb-9069-17edca102952", "text": "Porche be racing in the desert "} +{"id": "2001718", "video_name": "aae950b1-99f9-58bb-babf-d224df06ce90", "text": "a 10s video of a chiwawa on a horse back in the moon light "} +{"id": "2001719", "video_name": "216e83c5-4897-5b34-b54a-1a779407fddd", "text": "Four teenagers sisters, giggling and dancing to a retro song in their room. "} +{"id": "2001720", "video_name": "87279b2f-e5ae-5424-a19e-32d6ab3524eb", "text": "morphing creepy psychedelic esoteric roar Scotch test, comic book style highly detailed "} +{"id": "2001721", "video_name": "584a59a9-1bae-55a5-be25-373fbdfa13f0", "text": "Craft a vivid, lifelike image of Jesus Christ walking amidst intense flames, exuding tranquility and faith, with intricate fiery details and a sense of triumph over adversity. "} +{"id": "2001722", "video_name": "0f905b3b-638b-5c62-a536-4e0f743e1a14", "text": "fnaf but in a scarier way "} +{"id": "2001723", "video_name": "eb81f6a9-4ee4-50eb-9259-9fd22d7b273f", "text": "ironman is surfing on waves, behind the back "} +{"id": "2001724", "video_name": "4a7cd1d8-9a93-529d-ae21-8e8bb5485259", "text": "a photorealistic movie of a rainy cyberpunk dystopian city at night from street level "} +{"id": "2001725", "video_name": "1a52cfc7-b63e-59ff-ba89-31b462ac5323", "text": "a red eye crying tears in no gravity "} +{"id": "2001726", "video_name": "d792edc3-4ab5-5eaa-957b-4a349d3c1f98", "text": "network hardware and cables, xmass theme Message: WAN (Font: MODERN) "} +{"id": "2001727", "video_name": "9c870d4d-5ded-53c2-baf6-0175e0daa49b", "text": "a mouse horseman rides through a fairy forest "} +{"id": "2001728", "video_name": "3b0b8d60-a192-5acc-a42a-f867564c055e", "text": "shorter wavelengths interact more strongly with the smaller particles in the air. "} +{"id": "2001729", "video_name": "7dca8f71-d24c-5356-a81a-5161f50e2014", "text": "Strong hands pull out a mountain ash . In the style of sloppy pencil drawings in black and white style "} +{"id": "2001730", "video_name": "324f63c4-ce92-53e9-9ac4-bc7098b6519e", "text": "A mother bird tenderly nourishes her fledglings, carefully delivering sustenance to her offspring "} +{"id": "2001731", "video_name": "b6501db3-37a0-5151-a4e8-b90498c7837c", "text": "90s vintage anime asteroid field with rocks and meteors, high quality, panoramic digital illustration of a futuristic Japanese space in a cyberpunk style but minimalistic in the style of a woodblock "} +{"id": "2001732", "video_name": "e797ab26-3a59-5391-bad1-bdd9b3f6052d", "text": "Make joke of 3d character talk with another Mjo character , realistic view, 3d , Wide angle , "} +{"id": "2001733", "video_name": "90e4bc0c-d480-551e-a3d9-61a29d801164", "text": "batman in comic style standing over a catwomen high end "} +{"id": "2001734", "video_name": "68cfedde-25e6-5e98-ab21-7355b9e738a7", "text": "a dog and cat in a ring box "} +{"id": "2001735", "video_name": "b1b9049d-42d4-51d1-8c7b-fe7dca27d199", "text": "A visually stunning representation of the spells and hieroglyphics found in the Book of the Dead, showcasing the intricate calligraphy and symbolic imagery that were believed to hold great power and protection for the deceased.8k "} +{"id": "2001736", "video_name": "7394839d-38e8-54c4-9aeb-f2d99e57f4bc", "text": "big tiger combine with big bird "} +{"id": "2001737", "video_name": "d1d3d9c7-3ec1-5411-8293-ea28d5880119", "text": "itachi , madara , pain and obito together sitting and drinking coffee "} +{"id": "2001738", "video_name": "06c61075-a911-57b8-a2a7-e3d5502767f5", "text": "Robot jellyfish are taking over the city, including giant squid "} +{"id": "2001739", "video_name": "378c3191-98cd-555b-b998-14fe02d7c1db", "text": "To her delight, the Christmas tree drawing rose up off the page. It was no longer flat, but a full 3D tree glowing with holiday cheer. Lucy picked up the magical painting tree and placed it in a gift box for PIKA. "} +{"id": "2001740", "video_name": "a1d5e6f7-95e1-5ec7-9abe-ba9de8f240f4", "text": "a realm beyond our world, the night sky is a canvas of glittering diamonds. Tell the tale of a curious explorer who embarks on a journey to reach one of these celestial jewels "} +{"id": "2001741", "video_name": "f4bba91e-646b-5698-9b29-20a6dd6639ed", "text": "A picturesque house perched on a hill, overlooking the breathtaking Alpine landscape. Birds chirp merrily in the background, and a gentle breeze rustles the leaves. while a girl in a red dress runs with her dog in ghibli style "} +{"id": "2001742", "video_name": "59975414-6aa2-5103-9a65-3a7669e20f70", "text": "Picture a dawn where reality melds with fantasy."} +{"id": "2001743", "video_name": "128e6fe0-2655-596f-8a9d-e2406c24ecd9", "text": "tall humanoid creature with red eyes, pale skin with long swords instead of\nhands walking down dark hall of facility, security camera footage "} +{"id": "2001744", "video_name": "b10d41f0-5898-5873-a86d-8c6d37fb60c6", "text": "The air seemed to shimmer with a strange energy, and the trees whispered ancient secrets. "} +{"id": "2001745", "video_name": "1f4b4318-aab2-5897-8e35-03db24691395", "text": "Meteor crashes into the ocean causing chaos "} +{"id": "2001746", "video_name": "e51ff02b-ff21-5799-a040-606d6a3d1058", "text": "man falling down spiral animation in the style of Patrick Nagel . Minimalist pop art, 80s, vaporave aesthetic, Gothic. Masterful composition. "} +{"id": "2001747", "video_name": "f97b4dbd-5331-56ef-b54c-431e1755502d", "text": "beautiful girl looking downtown in balcony,black short hair,day,cloudly day,a little bit fog "} +{"id": "2001748", "video_name": "85092673-6db2-519f-88f9-7112710307d9", "text": "A pizza is floating in space, and a jade rabbit is watching as the pizza begins to drool "} +{"id": "2001749", "video_name": "048d0f20-3e00-5e58-a9d3-ac967287c143", "text": "A Japanese castle stands isolated on a grassy plain. Purple lasers are emitted from golden fish installed in the castle. "} +{"id": "2001750", "video_name": "0933d437-13fe-5683-87e8-48f42ca7e474", "text": "selfie frames imagesfor overseas education event "} +{"id": "2001751", "video_name": "52db36d4-5e06-53ed-ad7e-37259fe73909", "text": "creeping shadow of a large wolf casting on the wall of a village home "} +{"id": "2001752", "video_name": "b8eb1ed4-37ba-56cd-8a82-4659d1ce5fc1", "text": "water dragon flying over tsunami waves "} +{"id": "2001753", "video_name": "c778b542-0cd4-5720-b8a8-acb191db5354", "text": "Cow wearing a futuristic cyberpunk outfit "} +{"id": "2001754", "video_name": "f7935ed4-03be-5deb-8740-802d3fc9df14", "text": "This story is a story of changing information surrounded by darkness, "} +{"id": "2001755", "video_name": "db1fd169-ecb8-5b81-89de-debb9e07822e", "text": "People walking around in ancient towns Message: 1 Attachment "} +{"id": "2001756", "video_name": "367f392a-8963-52b8-8a90-b8fc2c104511", "text": "happy wife saying thanks to her husband, inside the house, shooting was from the above, the wife is smiling, "} +{"id": "2001757", "video_name": "00fc148f-8685-5b55-b4fb-8de923b5debd", "text": "Noa Faldemart, a little blonde girl with brown eyes, short hair, plays a toy accordion. Realistic old photo "} +{"id": "2001758", "video_name": "40c1a5b1-cd9b-5702-9089-4e1b7d9f99f6", "text": "Generate a video sequence showcasing a central focus on the circular morphology of various animals. Each frame should feature a different animal, emphasizing the circular aspect of that animal. "} +{"id": "2001759", "video_name": "82b93490-d473-51a0-abfe-56964ad00d09", "text": "Praying hands statue made of white "} +{"id": "2001760", "video_name": "f837825b-f02b-5f56-a1fb-cfbd58f442be", "text": "birthday celebration moving candle movement and blinking eyes "} +{"id": "2001761", "video_name": "c018fe46-4608-5846-a8a0-43253d6d80dd", "text": "A cozy little village nestled between rolling hills, under a clear night sky filled with stars. "} +{"id": "2001762", "video_name": "0697ff9c-daa2-5fe6-8c6e-8c7eb928c819", "text": "2 miniature pinscher sitting by the lake curious looking at the park, 8k, cinematic, pixel style, "} +{"id": "2001763", "video_name": "8a9f5d1e-e7c5-5946-bc03-344f9eed5906", "text": "a white hole of the poem seeking eyes with words random of poetry at high speed since a vortex "} +{"id": "2001764", "video_name": "251060a7-0fc6-5c82-a1f1-91141b670599", "text": "Sunset, high mountains, large tiled house, bamboo grove behind the house "} +{"id": "2001765", "video_name": "0123893a-5d4b-56f5-9608-07f3b590974b", "text": "a young schoolboy infront of his elementary school with his parents "} +{"id": "2001766", "video_name": "c09c9c5c-ecf5-5341-ae10-3207c22f779d", "text": "cinelatic shot, wide shot, a car burning on the beach, sunset lighting, two men sitted next to the car "} +{"id": "2001767", "video_name": "81ff1c50-83bf-5fe4-a42a-657f400c3ecd", "text": "a victorian age film about a lavish ball with people laughing and dancing "} +{"id": "2001768", "video_name": "b3134031-45e7-5d78-87de-079f3d3e8690", "text": "classified military footage of a UFO flying over Kyiv "} +{"id": "2001769", "video_name": "5cddb2bc-5468-5481-8d24-662b85d4c7c2", "text": "Human Impact: Show scenes representing human activities like fishing nets and boats that pose threats to marine life and the ocean environment. "} +{"id": "2001770", "video_name": "034c643f-81b5-59d3-9be9-cf59ccd7d17d", "text": "astronaut dance in the night with star "} +{"id": "2001771", "video_name": "3852ffa0-a1f7-595d-9532-2bcffe107076", "text": "a little gril in the wind "} +{"id": "2001772", "video_name": "293e0ea5-4fe2-54ed-9fb2-aaf3ce333105", "text": "video logo with the JRB letter s "} +{"id": "2001773", "video_name": "34327fb9-a317-5618-8b76-4ff140dc5aa2", "text": "a big tsunami, coming into a small town. "} +{"id": "2001774", "video_name": "9d104724-a36f-53ad-8157-a2a59b1dee05", "text": "Io is the totality of all material forces of attraction and repulsion, an intelligent manifestation of the energy that binds reality. Its presence in the material world is felt only in the controlled curvatures of the vectors of these forces. "} +{"id": "2001775", "video_name": "acb210e8-caa9-5501-aac2-b14cd3a5b59c", "text": "supra drifting on top of a building in night time "} +{"id": "2001776", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "peaple asking a girl for help , animated, 4k,realistic "} +{"id": "2001777", "video_name": "cd1a36d6-dddb-5a69-810a-5137637c7842", "text": "an executive in a suit in a backseat car with purple lights behind him, in the style of 2d game art, neon lighting "} +{"id": "2001778", "video_name": "2c988dbc-ce3c-5938-ac6a-31deb08f5bbf", "text": "a McDonald\u2019s employee walking in the clouds in the style of Jacob Backer "} +{"id": "2001779", "video_name": "fef1b9ad-533e-5142-af2c-723e3ae13939", "text": "As Raquel wiped away a tear, something strange happened. The world around her seemed to blur and fade away until all that remained was darkness. "} +{"id": "2001780", "video_name": "a81f0d7d-45e6-5b6a-a00b-ec8562a52899", "text": "Cut the image out to make an urban movie poster. Steerts, lights, smoke, and luxury cars are in the background. Message: 1 Attachment "} +{"id": "2001781", "video_name": "07cc5fc4-4096-53d2-9684-a8b29298694b", "text": "creater a 4k chocolate bar image with white background "} +{"id": "2001782", "video_name": "a7a42b78-63d4-5e13-8296-0f3db1bb9d62", "text": "a person running on water cinematic style "} +{"id": "2001783", "video_name": "50ef32d7-6d91-59f6-9d13-54997e7298cc", "text": "a small yellow dog is standing in a garden "} +{"id": "2001784", "video_name": "dc68279c-f296-5af4-b83d-d2710aa5012e", "text": "liquid chocolate 3d style real flow falls on a cookie on a plate vray render shadow "} +{"id": "2001785", "video_name": "459ff33d-17b0-5178-a671-d827d7d3a7c3", "text": "An army drives tanks, armored vehicles, warplanes, and helicopters over a movie scene "} +{"id": "2001786", "video_name": "ad848b19-7024-5ee1-a25e-9209887c72f5", "text": "hyper realistic grid lines 3D into nowhere maze with really colorful lines and forward motion "} +{"id": "2001787", "video_name": "ce97c4c5-e86e-5377-b903-0cc2ba8201ad", "text": "a mysterious woman covered in a black viel moves through a corn field in rural Egypt. Its night and a full moon lights the field, eerie, horror motion 5 "} +{"id": "2001788", "video_name": "a642fb33-6749-59cf-b150-e0d1df50e59a", "text": "God, in his wisdom, watch over me, cinematic style, 8k "} +{"id": "2001789", "video_name": "976712fb-4568-52bd-b758-a35aea126be9", "text": "a coffee cup with peppers on it "} +{"id": "2001790", "video_name": "6e923555-5147-5d7f-88e3-fcf961704293", "text": "train moving away from the city at high speed view of the last front window of the last carriage "} +{"id": "2001791", "video_name": "591d6b6d-7c63-5140-b35c-92dc14935694", "text": "women in pink niqab running up a mountain made of gold coins "} +{"id": "2001792", "video_name": "4c942b9d-bf74-5bc1-9d54-0f897ea0dcc0", "text": "a man fighting with deadly cyborg using light saber "} +{"id": "2001793", "video_name": "472c987e-33b0-5996-bf2f-dc64d881dab2", "text": "vintage video of ghost flowing down stairs in a abandoned building "} +{"id": "2001794", "video_name": "3551a5c6-0934-5bfe-b84c-028d42a33198", "text": "King Julian of Madagascar transforms into a wolf and howls "} +{"id": "2001795", "video_name": "d966fbf3-9f76-5447-bfe2-621b27963641", "text": "Humans walking around a Dragon Zoo 1920s New York, rare film footage "} +{"id": "2001796", "video_name": "96acc705-e0c3-5305-8539-3239940c1771", "text": "a woman running through a valley, fonto horizon "} +{"id": "2001797", "video_name": "cd3a3a69-39b1-502c-b9d2-fb725b21513a", "text": "A cute child is running on the grass, carefree. Cartoon "} +{"id": "2001798", "video_name": "0340315b-049d-547c-8e4d-714d72bac6bd", "text": "Once upon a time, in a small village nestled at the foot of a towering mountain, there lived a young artist named Afraj. "} +{"id": "2001799", "video_name": "1b5590c3-bc51-56b8-8619-a32cf231b02e", "text": "sentient robots saving humanity from itself "} +{"id": "2001800", "video_name": "5f699027-ecd6-53a4-8c57-17bc7cbe104d", "text": "people walking through the streets in the 70s where you can see cars from the time, in color "} +{"id": "2001801", "video_name": "15986efb-236c-5e29-a8b4-43216910509e", "text": "animation where the letter K is floating and the letter Z is also floating "} +{"id": "2001802", "video_name": "77309ea7-2ffc-5cc8-a1a0-0f2939a341b8", "text": "Photo of a coronavirus shaped door being opened "} +{"id": "2001803", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "Battle of Bang Rachan Camp motion2 gs18 fps24 "} +{"id": "2001804", "video_name": "6669232a-33b8-5f04-9cc1-6d5c98984598", "text": "an ai intro for a youtube channel Message: RedShift AI (Font: MODERN) "} +{"id": "2001805", "video_name": "b63baf8b-bb40-53ca-88f6-b24c326a0be6", "text": "beautiful city of Japan, night city, 4k, rainy day Message: 1 Attachment "} +{"id": "2001806", "video_name": "b1bcdf2a-f87f-5b79-bc05-a6df5438dd21", "text": "30 years young Shyam attending with a smile "} +{"id": "2001807", "video_name": "e30fcbcb-09f7-5eb4-9ffd-b87ca1d55785", "text": "a saint advices his disciples in the top of the mountain "} +{"id": "2001808", "video_name": "5f1566ab-ded8-501e-ad70-1f126c58f9fa", "text": "a talented DJ performing a live set, in animation "} +{"id": "2001809", "video_name": "250ae368-b576-5512-95cb-e954ed2f8a5b", "text": "the four angels buried under the river euphrates "} +{"id": "2001810", "video_name": "78d26080-05ac-5322-981c-03c13fa480da", "text": "2 pilots in the cockpit of a commercial plane see a tennis ball shoot up into the sky in front of them, They then turn to look at each other with shocked looks on their faces "} +{"id": "2001811", "video_name": "c63c6e88-0092-506b-bdb2-978866ff3f49", "text": "flashing disco spells acid trip dancing lights "} +{"id": "2001812", "video_name": "3780241f-bd91-5f0e-883f-53354211b5ef", "text": "sun coming up above the williamsburg bridge in brooklyn "} +{"id": "2001813", "video_name": "7b166d1c-46be-5a1f-a7fd-68da06148538", "text": "multiple hands rising and asking for help, surreal fantasy style, dark noir "} +{"id": "2001814", "video_name": "7dd32aef-0ac2-5a8d-b04d-b9c4f9677fb6", "text": "a cat eating a human, anime style "} +{"id": "2001815", "video_name": "4d654a04-0562-530c-b314-8bdb1f0a8ff4", "text": "create a trailer for a horror movie where there is suspense and horror mixed. Make it realistic so it looks like a movie trailer "} +{"id": "2001816", "video_name": "94f8f8fc-e39f-51bf-b188-cd3b06cd89c6", "text": "monkey is living happily in forest with so many animals and birds cinematic style "} +{"id": "2001817", "video_name": "b26e6b10-90e1-58a0-948e-dd6f2ef68032", "text": "the man is go out of the car "} +{"id": "2001818", "video_name": "4d3cf2a8-329b-5b7a-8f73-556eeee45fae", "text": "ghost on road scary eyes,hand movie slowly at midnight seen scary "} +{"id": "2001819", "video_name": "2b034e4c-fd34-5649-b492-c669fd47685c", "text": "A sage arriving at a humble home in the moonlight. "} +{"id": "2001820", "video_name": "446c41df-e4ca-5389-9a6f-b5f60348aa58", "text": "5 travelers on the mountain, high quality "} +{"id": "2001821", "video_name": "e2a63c62-b74e-5226-9c72-3c007921c1d7", "text": "1980s luxury cars trying to avoid a wreck on the race track "} +{"id": "2001822", "video_name": "bab39075-ccfc-522e-a6b6-d9c7d2b55beb", "text": "old yellow television in one in the living room, ad suitable for all public "} +{"id": "2001823", "video_name": "80a1fd41-f3cb-513c-a695-0769beced1cb", "text": "smiling with minor head tilting upwards "} +{"id": "2001824", "video_name": "144e7ae1-4485-51b2-ba8c-2352146665ad", "text": "crusader knights, war, battle, at night, with moon on background, a knight on center on your horse using a sword to comand, castle on background "} +{"id": "2001825", "video_name": "fc691475-9bbf-5238-bf69-8eaf2e3d641f", "text": "Studio Ghibli style kids run across fields on grass while birds fly above them. Fun, bright, colorful. "} +{"id": "2001826", "video_name": "bfe8b8e0-5e8c-504f-9e1d-013ef13343ca", "text": "Christmas atmosphere, snowflakes flying all over the sky, children playing happily on the road, leaving a bunch of footprints "} +{"id": "2001827", "video_name": "4c882fc0-0781-540b-994c-88cf6f7f879d", "text": "a dead forest, mist, full moon, 4k, a terror movie "} +{"id": "2001828", "video_name": "412cd123-51ab-518b-944d-029915584f7e", "text": "gathering of Indian men and women of all different cultures existing in India "} +{"id": "2001829", "video_name": "204d8074-6612-5895-8bd0-daef7c0c3482", "text": "a moon cake with eyes and smiles "} +{"id": "2001830", "video_name": "a1df76a5-f3c5-5064-a7ee-680417517842", "text": "huge scarecrow standing in a field 3d movement "} +{"id": "2001831", "video_name": "1e21b75e-04ca-56f3-a38c-54c5fa356c9a", "text": "a girl is listening to music, sitting in a sofa, head leaning back and looking at the sealing. camera is above her, looking down on her face. "} +{"id": "2001832", "video_name": "367f92d2-c614-529b-ba92-66e573ef9c22", "text": "spirit of death rising from the smoke of a candle flame next to a ceramic bowl of yellow flour "} +{"id": "2001833", "video_name": "58c8d9a5-4ec2-53ab-92a5-355ee3ed978f", "text": "a woman talking gracefully, listener feels good and happy, \n 3D animation, cinematic shot "} +{"id": "2001834", "video_name": "c556ef9e-f4ee-58b5-a7bf-a965d3701f16", "text": "1990s cominc art Iggy Pop album in the style of Charles Burns "} +{"id": "2001835", "video_name": "964c059c-6a54-5db3-abeb-51dff5735b5e", "text": "a futuristic cyberpunk, Hong Kong Victoria Harbour night scene with many flying vehicles pass through over the sea, in the style of Lost "} +{"id": "2001836", "video_name": "1de60648-ba8d-51cb-812e-92c0b8005a5e", "text": "Very good. The character should be visible in profile. "} +{"id": "2001837", "video_name": "9b0b2cf5-c87b-522d-a373-1b2cca49063e", "text": "The clash did not resolve this dispute, but it did engage the United States and the Soviet Union in ways that would have important implications for subsequent superpower involvement in the region. "} +{"id": "2001838", "video_name": "9c86a49f-4661-5e0a-9be8-c84e5a6c6203", "text": "a bird trying to fly but failed, with camera zoom in "} +{"id": "2001839", "video_name": "a6bd0963-bdfb-5198-b946-023946f1c327", "text": "A photo of Charles Babbage building a robot by Philippe Halsman, setting in an engineer workshop, canon lens, shot on dslr 64 megapixels sharp focus, vintage photography, Victorian colorised "} +{"id": "2001840", "video_name": "e42d9865-1901-5ee6-8877-fb911854d38c", "text": "A desert landscape with a camel walking "} +{"id": "2001841", "video_name": "b262dbea-5c73-540f-b060-a8a06efb5953", "text": "In a realistic cinematic Time Square urban landscape, a monster in the shape of a giant yellow fat cat, destroying buildings and frightening the population. Cinematic, 4K Resolution captures the intricate architecture, unreal engine, pixar style "} +{"id": "2001842", "video_name": "e94f484d-cd41-536b-b852-b5a6237b2392", "text": "Giant sea monster walking in the ocean, storm "} +{"id": "2001843", "video_name": "9a0293d4-6bf5-5414-9495-8c26b7ef6169", "text": "village people looking surprized to see "} +{"id": "2001844", "video_name": "7f1a7c67-f975-5443-8b32-2e211ed79fc2", "text": "Why you shouldn\u2019t brew coffee for too long Because brewing will carry some aromatic substances and gather on the surface of the coffee, forming foam, and the aroma of coffee depends on the density of the foam. If you continue to boil the coffee after it is boiled, the foam will be destroyed and the aromatic substances will escape with the steam. "} +{"id": "2001845", "video_name": "2c909710-b223-5bf7-838d-f8e43a1d0085", "text": "Realistic scene style,opening color scene,a busy man ,rushing through the bustling streets of the city,night "} +{"id": "2001846", "video_name": "e084e82a-1fcf-5659-8015-46f97445992d", "text": "welder makes ship welding with green color welding electrodes "} +{"id": "2001847", "video_name": "7e2bc4dd-2737-5235-ae98-c3c600858c53", "text": "Curiosity lured her inside, where shadows danced menacingly. "} +{"id": "2001848", "video_name": "7c138d73-5232-57df-890e-2ea79874697e", "text": "scene from mahabharat where draupadi cheerharan and pandavas tsanding behind her "} +{"id": "2001849", "video_name": "6cdf8e48-63b0-5f98-899f-4e835b814751", "text": "Thanks to the snowflakes and the snowflakes "} +{"id": "2001850", "video_name": "76f0a64c-5b9c-5af7-93d3-7610088244be", "text": "a benevolent artificial intelligence designed to save the world, a female digital faerie, realistic, tinker bell, traces of light, eyes opening, motion 3, dark, electronic "} +{"id": "2001851", "video_name": "bca99107-f2b2-55f4-bc1d-981be8f2cd2c", "text": "driving through nightcity, motion 4 ,Low Angle Shot, cinematic, timelapse "} +{"id": "2001852", "video_name": "6b931e2d-b4a9-5972-938f-a80e97859a0d", "text": "inside the subway car with a view of copacabana "} +{"id": "2001853", "video_name": "7d2df790-b126-5f15-afe9-2fd0190679a0", "text": "shadows moving on staircase at night "} +{"id": "2001854", "video_name": "58fd2899-9216-5c23-9a26-ba0c5f0f6510", "text": "radioactive zombies reporting the news, highly detailed, satirical, horror, realism, retro style "} +{"id": "2001855", "video_name": "c3cdbbef-3d91-5aa4-8b72-6258b46e381f", "text": "a dark and malevolent force known as the Shadow Coven emerged from the depths of the forbidden forest. "} +{"id": "2001856", "video_name": "7e5734d7-ce18-55a6-aac3-da411f2df0b8", "text": "4K headless chicken running up a staircase "} +{"id": "2001857", "video_name": "e040dafa-cdef-59c9-a8d7-e3191a8449d9", "text": "before the throne there was a sea of glass like unto crystal 8k hyperrealistic cinematic vibrant colors heavenly "} +{"id": "2001858", "video_name": "001c4ad8-632a-5d65-af32-8cb109ce375e", "text": "geometric entering scifi early 3d graphics black and green "} +{"id": "2001859", "video_name": "b5474e47-2c53-532a-a9f2-afa304ad2261", "text": "animation in style of 3d cartoon arcane series to camels race in arabia saudia desert, 3d cartoon series or novels "} +{"id": "2001860", "video_name": "37faea09-8368-5349-8fe1-43d95b88ee24", "text": "a man write Blog online in room "} +{"id": "2001861", "video_name": "fe7b4ff1-ad20-5899-8bf9-2dfa743dbaa6", "text": "triangular modern house tent under soft rain "} +{"id": "2001862", "video_name": "b4637702-38d5-5c15-ac26-339a4da83cf9", "text": "urple sports car goes and crashes into a wall. then explodes. realistic 8k style "} +{"id": "2001863", "video_name": "dbec1a41-2692-5c0f-8d0c-9adb47ac668d", "text": "Depict the sunrise between two mountains "} +{"id": "2001864", "video_name": "c651e012-d0e5-5aff-a493-2631f7720cef", "text": "jim carry fighting animals, endless fighting, 4k, ace ventura "} +{"id": "2001865", "video_name": "296181c9-6ba1-586b-b3f8-a2f26c5a291e", "text": "painted as a trompe l oein demo.ackrylic on board. "} +{"id": "2001866", "video_name": "a1d61d4a-3bf5-5a8c-bfe6-6aae7c13ebbb", "text": "crazy parallax motion graphics bodies transition melting rebirth "} +{"id": "2001867", "video_name": "168b2a59-50a8-5aef-9f36-39aeafdb6c5e", "text": "pikaqiu fly in the sky lighting "} +{"id": "2001868", "video_name": "799e8373-3509-5997-aa12-757657fb9e2a", "text": "a zoom trhough a swiss city in candy crush stile in switzerland "} +{"id": "2001869", "video_name": "a4c44a4f-eaec-56ed-a2a0-4b479b69755a", "text": "people are looking happy to see happy boy "} +{"id": "2001870", "video_name": "9ae69454-a5c1-51f4-acb8-3e993758bc7a", "text": "Man reflecting in the middle of a dark night "} +{"id": "2001871", "video_name": "3b73f52b-b7aa-5d62-9200-6ef8717e6321", "text": "a man walking in to the streets start to dance "} +{"id": "2001872", "video_name": "4f6f8270-869d-50ab-b111-434b66b00f4f", "text": "man drinking a smoothie at a cafe, amster, cinematic "} +{"id": "2001873", "video_name": "985a6f97-b815-5393-96fc-738feb550ae5", "text": "Nana anime Hachiko Ren lotus punk rock Vivienne pink strawberries microphone sparkles "} +{"id": "2001874", "video_name": "c24d8b40-6648-5115-ba68-9e94fef9e5c8", "text": "Museum of History. The skeleton of a fossilized Basilosaurus is suspended in the center of the museum. You can see his shiny teeth and matte white bones. "} +{"id": "2001875", "video_name": "543d8252-82d0-5b5b-b41a-f4638de9b15f", "text": "A street dog eat a cocumber "} +{"id": "2001876", "video_name": "00e2fcc4-cfed-57bb-8d36-fcb79a5d36f3", "text": "have a wolf running at night "} +{"id": "2001877", "video_name": "74877e48-9105-5826-babf-e6c5a7e49a23", "text": "Very strong icy winds were blowing "} +{"id": "2001878", "video_name": "849d824e-9ea4-518d-ac16-d823673b165c", "text": "a girl writing a letter smiling happily "} +{"id": "2001879", "video_name": "c354285a-03ab-506d-8b6e-0a0db089f97b", "text": "2d pixel art hero swing a sword "} +{"id": "2001880", "video_name": "3e342984-e3e7-5c47-add1-07ef07a4ce89", "text": "cat Garfield speaks while looking at the screen. 3d, ultra hd, 8k, hyper sharp, wide angle, anime, illustrate, garfield style "} +{"id": "2001881", "video_name": "f47f85bc-1995-5f2e-8e72-2c439b0f8237", "text": "generate an image of the bulb and man inside it,photoreal image "} +{"id": "2001882", "video_name": "d43efe5d-5f98-5550-82b9-6dcd87b22e19", "text": "elephant standing in front view and talking to us "} +{"id": "2001883", "video_name": "b0e0410e-abe7-5999-b08d-9d67be483649", "text": "animated drawing employee aplying for a job passing an interview "} +{"id": "2001884", "video_name": "d3119929-4c5c-5d57-800e-601d6285f757", "text": "film stodio objects gathering around the word entertainment followed by popcorn exploding and covering the scene "} +{"id": "2001885", "video_name": "20f50347-2939-5852-a841-57b88ca9edcb", "text": "a digital marketer sitting in front of a laptop calling someone "} +{"id": "2001886", "video_name": "6fd721bc-a77a-5a16-9556-7099bf48e6f4", "text": "At night in Gotham City, Batman drove an armored vehicle along the road "} +{"id": "2001887", "video_name": "81817cd2-35fc-582f-b11c-eeed1f0c669d", "text": "A little piggy riding a motorcycle "} +{"id": "2001888", "video_name": "2b441182-2ae1-5f09-a9f9-098160653589", "text": "Rabbit tired and humbled expression at the end.\n. in 4k 16:9 "} +{"id": "2001889", "video_name": "b553bc7a-261f-5d07-988c-bdfc2de97911", "text": "architecture emphasis on biophilic elements skyscaper with symbol representing fire flame on the facde "} +{"id": "2001890", "video_name": "72bc8856-a268-5987-a9d9-68f533d6224f", "text": "cyber space futureistic test tube with floating jellyfish "} +{"id": "2001891", "video_name": "2c2dddc5-9304-531d-908d-7c3a4e183fe3", "text": "moving rock sign, 9:16, pink floyd, futuristic, 5 seconds long "} +{"id": "2001892", "video_name": "236f6576-e283-5c33-ae8e-3d9efe731af6", "text": "islam , brightness , mosques , greenry , peace , without any wick , take a look with zoom out from top , "} +{"id": "2001893", "video_name": "6dba3a7c-2889-5ff6-a3cd-c2321bb6ccc9", "text": "a backgroung animation for a video with dumbells as a logo which is moving vertically "} +{"id": "2001894", "video_name": "e30adc6a-9e3f-5cd7-869d-7ffc6bc11a7a", "text": "a beautiful woman playing with birds. Beautiful nature with snowfall and a boy looking at her secretly behind the tree. "} +{"id": "2001895", "video_name": "0010b518-66cb-58ba-9ba2-5f97bdf5f877", "text": "Begin with an image that sets the scene in a small, peaceful town. Depict a quaint town with houses, trees, and a clear sunny day. "} +{"id": "2001896", "video_name": "8ed65164-1054-5469-8ac0-1d0065e5788e", "text": "a knight is facing off against a trio of samurai in the rain ar 16:9 gs 24, slow pan out, slow revolve, muted 4K "} +{"id": "2001897", "video_name": "7ec6f254-85c3-5341-8b80-994e2e870860", "text": "Bathroom in a green field, lavender fields, slow swaying grass, purple and green palette, 4K, cinematic "} +{"id": "2001898", "video_name": "7a92b1c6-39a0-5252-9a67-8f7df7e00d06", "text": "dog, transformed , pop changed to cute boy "} +{"id": "2001899", "video_name": "ded40284-ec14-5f24-ac12-88fbba4e260c", "text": "Confucius and his disciples left the car in the night and left "} +{"id": "2001900", "video_name": "7b10c395-c051-5bd2-a58d-9169a584d439", "text": "dark doodle on a whirlwind bad trip Message: PASSA PIU (Font: MODERN) "} +{"id": "2001901", "video_name": "05279bbe-1a1d-5d69-a6d1-fb0000f1825a", "text": "Man move around dancing with a woman; cinematic hd "} +{"id": "2001902", "video_name": "1b3010f9-74b5-5ba1-8ae2-eda716bfad61", "text": "green monk parrot in a cozy warm with christmas decoration home "} +{"id": "2001903", "video_name": "3aa230cd-189a-5daf-8004-1aacccfecac2", "text": "midsummer nights dream inspired background, glowing green mossy fields, flower beds, fairies dancing with glittery dresses, in the moonlight "} +{"id": "2001904", "video_name": "67f45278-6e15-5439-b84f-1002f0ad2a50", "text": "grainy 8mm footage, blood moon, deserted city "} +{"id": "2001905", "video_name": "4722e466-835f-5185-9a87-e958eed5f079", "text": "smooth turn of the eye from left to right, the pupil slowly expands and changes color from blue to red "} +{"id": "2001906", "video_name": "d773da8c-8ace-58c5-97fb-364c9a76ca05", "text": "prince harry and Duchess Meghan appearing from explosion fire wearing crowns on their heads "} +{"id": "2001907", "video_name": "e40cfb97-61f5-5caa-9f35-cc4cd0d34b05", "text": "cardi b as president of the usa "} +{"id": "2001908", "video_name": "24529f8b-a2f9-5061-9462-c0c2a0fc27f1", "text": "real cinematic style, a Japanese man walking on Tokyo street, close up shot "} +{"id": "2001909", "video_name": "dec6f30d-a349-5a83-8b6a-585ae33f3c99", "text": "First fox goes to the farmer "} +{"id": "2001910", "video_name": "840800bc-4f19-5d7f-a1c8-67b8de6979f2", "text": "waterfall nature, little black birds are flying in the sk, realism "} +{"id": "2001911", "video_name": "6cc1064d-f4f3-5c0b-af07-21b6b8b7ec95", "text": "Yoon Suk Yeol (born 18 December 1960) is a South Korean politician who has been serving as the 13th and current President of South Korea since 2022. on road cycle "} +{"id": "2001912", "video_name": "fa3d23ed-be0e-5c4a-816d-d8fc735ac24a", "text": "inside a rainbow with movement in every element for a few seconds "} +{"id": "2001913", "video_name": "28371d01-a4da-5dd2-a0be-25c6ab53c9ba", "text": "Birthday chocolate cake. Oil painting. Message: Alona (Font: MODERN) "} +{"id": "2001914", "video_name": "e0e8b765-600b-5a89-9e2c-792ebfe983de", "text": "a giraffe flying through madison square park in new york city "} +{"id": "2001915", "video_name": "effe96e0-0263-55c6-b804-14da196cd93b", "text": "after page turning of a book there are two words written as Neha Rabidas "} +{"id": "2001916", "video_name": "3aeb7f3f-9021-5a1c-b96e-33fdcfe38d75", "text": "a female version of the American werewolf in London transformation scene "} +{"id": "2001917", "video_name": "09520f0e-5a31-5e6f-be8d-ff876905b42c", "text": "1980s screengrab of indian male model, action movie scene, swordfighting "} +{"id": "2001918", "video_name": "1d117bc6-0efa-53cf-8db3-14bdc68dc3d8", "text": "dark creepy boreal swamp forest in the winter in the night time with dog sledding and multiple glowing eyes in the distance "} +{"id": "2001919", "video_name": "34e7163d-3e9f-54ba-bbfb-98f0cd6fdaf7", "text": "blood fueld chaos in the style of event horizon "} +{"id": "2001920", "video_name": "fbbda8bc-36d2-5ec9-a017-836f2175e014", "text": "some happy children in the class they are jumping around and playing "} +{"id": "2001921", "video_name": "bc13c500-f245-56a3-b3c2-6cdeb63189eb", "text": "a pixel art 8bit video of a heavy metal band playing "} +{"id": "2001922", "video_name": "70a845bb-d13c-5ccf-bf4a-cb9fbdef72ea", "text": "3d psychedelic fast moving randomized patterns "} +{"id": "2001923", "video_name": "6b3e1106-40c0-5424-93a8-de09cd7c2a10", "text": "show the anime of planting of new trees and efforts to restore damaged landscapes in anime style. "} +{"id": "2001924", "video_name": "c1ad95a1-8397-589c-9b4b-c437fe4db9aa", "text": "lion and his 4 small daughter "} +{"id": "2001925", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "A red gift box with red lanterns, couplets and fireworks in the background, the Spring Festival atmosphere. The gift box has a Chinese dragon pattern, a gold Chinese dragon. Open the gift box, there are red dates, bacon, cakes and so on. The gift box is closed, there are firecrackers, red envelopes and blooming plum blossoms, the Spring Festival atmosphere. "} +{"id": "2001926", "video_name": "38659ac2-1423-5f1e-bf88-a54f5f0308ae", "text": "Could the return of the Anunnaki reshape our understanding of human origins and our place in the cosmos? "} +{"id": "2001927", "video_name": "df52fa16-9e0c-55d8-bc1d-23cf58ff071c", "text": "Intense volcanic eruption, smoke billowing and rising in turbulent waves. "} +{"id": "2001928", "video_name": "bda3f2a3-0838-5e8e-b88a-5700fd86c80f", "text": "histrocal ship in the ocean with high waves "} +{"id": "2001929", "video_name": "9a460a94-b1fe-5c2d-8ed1-e69f948d7349", "text": "Boy and cat 3d ai aiimage "} +{"id": "2001930", "video_name": "e14075ca-353e-54fc-8d07-534194798bf0", "text": "Create a collage of images showing Abyssinian cats engaged in interactive play, emphasizing their lively and inquisitive behavior. "} +{"id": "2001931", "video_name": "5efe1984-c4e3-5db3-a96b-83e87421ae1c", "text": "A young man won a badminton racket in a raffle and was overjoyed "} +{"id": "2001932", "video_name": "cee43e92-33f9-5978-8912-8797846a3f59", "text": "The cheers spurred him on to finish the race. "} +{"id": "2001933", "video_name": "839eff1c-84ed-5cea-bdbf-78052f33372c", "text": "an animation of a personified 100 dollar bill in a trapeze show "} +{"id": "2001934", "video_name": "7013fda5-a83c-534b-a00b-ba58e5217df6", "text": "A man and a friend. Eating chips and watching a football game, waving his arms "} +{"id": "2001935", "video_name": "c237e8fc-b245-51d0-9166-c32a7b45d359", "text": "Men with sunglasses driving a lamborghini im city "} +{"id": "2001936", "video_name": "ba4a908b-bc4b-5f0e-a0d3-d5f5982ed64f", "text": "one man is walking in the desert wilderness in the morning. He is alone. He is tired It is early "} +{"id": "2001937", "video_name": "2e9f6762-4cfa-5969-8083-9df1aa04634d", "text": "watercolor style, car in driveway, nightime, house, raining, car rear bumper visible "} +{"id": "2001938", "video_name": "9456d3ad-1cf3-54c5-8ef3-3995a79bb605", "text": "A bustling train station is filled with hurried commuters rushing to catch their trains. "} +{"id": "2001939", "video_name": "cb210759-7fa1-5175-902a-77cb4946fe6b", "text": "a single cell phone with hundreds of app icons popping out "} +{"id": "2001940", "video_name": "49ae6c34-f87a-59cc-bbfa-b2748353f4e2", "text": "Ps1 graphics engine Message: 1 Attachment "} +{"id": "2001941", "video_name": "8d7db7ac-994e-51d6-8952-36dd8145d6ab", "text": "Introduce the curious child, Lily, in a small village and describe her eagerness for adventure. Set the scene for her discovery of the magical forest at the edge of the village. "} +{"id": "2001942", "video_name": "8543e685-4919-565b-9e94-21f7a662695b", "text": "Mrs. Santa is running on a slippery ice unable to catch her steps "} +{"id": "2001943", "video_name": "497d8690-3e07-5ccf-b292-051265ea9877", "text": "a steam train in the style of karel zeman "} +{"id": "2001944", "video_name": "7ed4ff42-4bfe-5981-82d9-311b7a81ed01", "text": "a chiken walking and fish moving aslo b\u0131\u011f Blooming for the flowers,32 k "} +{"id": "2001945", "video_name": "7278a5d1-6da4-5d30-a216-10f96c90b14c", "text": "\u2022\tGenerate an image of a small, happy seed named Sam resting in the shade of a tall oak tree, daydreaming about adventure "} +{"id": "2001946", "video_name": "7419f3c6-9267-53b5-bded-526a4801484d", "text": "ufo with anti gravity shine over man "} +{"id": "2001947", "video_name": "791855f4-79d8-5d2c-ac85-442496c668c1", "text": "an army walks into the battlefield, led by musicians equipped with instruments as weapons under a flag. "} +{"id": "2001948", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "inside of the forest, mountian behind, daytime, cartoon, 16:9 "} +{"id": "2001949", "video_name": "22c8dded-38c4-53c8-b7ca-9d7f608bdaf0", "text": "Study ABroad Consultants Show Flags of UK, USA, Canada "} +{"id": "2001950", "video_name": "3ca27527-efc5-53e2-aafc-31689525648d", "text": "One night, she decided that she would go to class sixteen and see if all this was true or not. "} +{"id": "2001951", "video_name": "16ffc05b-b5c3-591b-b81f-3199cd3a8362", "text": "a medical center on an island from a birds eye view "} +{"id": "2001952", "video_name": "2b641714-b84b-54b8-9cad-0f23c5090028", "text": "image 1 attachment, caption Happy new year, "} +{"id": "2001953", "video_name": "360c9e3d-eb77-5ca2-9d0f-672a0d5776e1", "text": "432Hz Corpus from A Humanoid Body "} +{"id": "2001954", "video_name": "18a7a1ba-6c16-5907-9148-fa2404331be1", "text": "the first scene shows a boy walking (shot from behind) to the door of an oratory, opens it and finds a soccer field with young boys practicing, run onto the field and starts kicking the ball and playing with others, the second scene sees a girl entering a gymnasium and finds other girls practicing volleyball with risers and dunks or wall. "} +{"id": "2001955", "video_name": "bcad3704-270e-5468-ba48-b723170505a3", "text": "An old woman seeking medical treatment everywhere "} +{"id": "2001956", "video_name": "2a3abe2d-8017-5413-8b5f-e1011f51d7d7", "text": "An SUV was driving on the grassland "} +{"id": "2001957", "video_name": "4c019d3c-4f4b-5a17-9584-96203fa25dcf", "text": "two mice fighting standing, realistic video "} +{"id": "2001958", "video_name": "4a940f62-a44d-5e2b-9643-7cd8688de966", "text": "A super beautiful boat which is empty inside in a beautiful decor "} +{"id": "2001959", "video_name": "d7f5982d-cfca-5432-8da0-ce54c42e11ad", "text": "A cinematic scene from the movie Indiana Jones, the actor Johnny Depp as Indiana Jones walking out of the jungle with a pet mink on a leash, he is followed by a very beautiful woman dressed in Indiana Jones type attire, tomb raider outfit. "} +{"id": "2001960", "video_name": "13bb5a0d-e75f-5b24-bb92-0a313a0a58da", "text": "Unlocking an Electronic Lock with Digital Handwritten Signature "} +{"id": "2001961", "video_name": "4996ec84-97c7-5623-837f-422498746449", "text": "Through dusty archives and faded letters, she pieced together the fragments of a love story that had endured through centuries. "} +{"id": "2001962", "video_name": "aaecea31-d294-5fe3-8c6c-8ee17fe16c49", "text": "a starry night, a view from space, a beautiful girl flying around the planets, in the style of Renoir, Monet, Van Gogh "} +{"id": "2001963", "video_name": "b8d3f155-a96c-5175-89bb-8d8be1b67294", "text": "desert highway in the middle of nowhere "} +{"id": "2001964", "video_name": "087573aa-7835-5685-9b54-a3f28a9876a8", "text": "a pregnant keyboard in the delivery room "} +{"id": "2001965", "video_name": "1a79985c-28be-51c1-8ed1-79a461a1638c", "text": "Jackie Chan discovered his love for martial arts at an early age, cinematic \u2013\u2013Ar 16:9 \u2013\u2013 "} +{"id": "2001966", "video_name": "54e60a7f-6a35-575b-a6cf-aa9f50e92ab7", "text": "Show a serene night sky filled with stars, and slowly zoom in to reveal the moon. Disney image "} +{"id": "2001967", "video_name": "82154112-e355-51b8-af09-d4cdee45c356", "text": "talking and blinking and noving head realistically "} +{"id": "2001968", "video_name": "77558662-a680-5724-8a84-aee2fe3a563b", "text": "the brown hair lady surprise and saying,in forest,animation image. "} +{"id": "2001969", "video_name": "93535bc3-9c30-5a67-a380-6eb190cf8645", "text": "Ek bodh bhikshu sings with his disciples jate huye vedio type japnese anime "} +{"id": "2001970", "video_name": "66d2af49-a817-5cbf-9efe-6c6ed47eaaf2", "text": "Howard Hughes seen in the cockpit of the Hercules plane 1930s "} +{"id": "2001971", "video_name": "f00e6a9e-d593-5645-b543-c49a669986ff", "text": "cats sing and dance in cloud "} +{"id": "2001972", "video_name": "0e5f3337-90ad-5961-8723-9b29febe95f1", "text": "A street with houses and cars. The night is pure "} +{"id": "2001973", "video_name": "0161daf9-e106-5eac-b098-15eb21c18f09", "text": "brightly coloured trimesh with interacting floating shapes "} +{"id": "2001974", "video_name": "6896ea2e-2d0f-5553-aaba-06f5056fdc73", "text": "Russia on the globe view from space, digital footprint Message: INTERNET RUSSIA (Font: MODERN) "} +{"id": "2001975", "video_name": "5151a0b5-a329-58a1-91fe-d072071efc2b", "text": "Shandong Yantai, City overhead view with beatuiful sea "} +{"id": "2001976", "video_name": "1c8bc610-cbb1-5ffe-8d7b-b3869f607a54", "text": "naruto carrying goku on his back "} +{"id": "2001977", "video_name": "ccc5d951-0560-5c39-95cb-f8d073d4fa5f", "text": "Snow White in her castle, where she is loved by all but envied by her stepmother, the Queen. 9:16 "} +{"id": "2001978", "video_name": "5d6d0c8a-613d-5138-b370-e0d38fc88759", "text": "rabbit house, pine forest, cartoon, disney style, 16:9 "} +{"id": "2001979", "video_name": "a82d2458-4fcd-54d7-9b24-0aae2eb172d9", "text": "cinematic guy is standing, ghostly figures of people appear around him, disappearing as he approaches Message: 1 Attachment "} +{"id": "2001980", "video_name": "d6bfc605-b142-5830-9db9-a160e664af59", "text": "3 builders make a house from french fries "} +{"id": "2001981", "video_name": "6299a681-b014-5600-8ecb-d5018024ef71", "text": "dark room with warm yellow light and she is sleeping ambient "} +{"id": "2001982", "video_name": "b21548af-32ee-5ebd-979e-9289a7e568c7", "text": "RC car jumping from the bridge stunt "} +{"id": "2001983", "video_name": "a4e35273-7ba0-5f01-9eb0-c5a61a98b68e", "text": "When I finished eating, an amazing sight happened: the plate turned into a plant spirit "} +{"id": "2001984", "video_name": "679ae0de-2a46-5c25-acec-0c0259710c4a", "text": "A Animation that shows this text: Welcome To Lofi, Loop If you want to hear more Lofi "} +{"id": "2001985", "video_name": "f46f3301-f228-5575-91b6-c9ad78a8168b", "text": "sad 5 years old kid walking in paris. dressed poorly and finds a man at the end of the tunnel and then runs aways since there is nobody to help but a strong man shows up and punches the misterious man running after the kid. "} +{"id": "2001986", "video_name": "79758da7-693e-5957-b009-48caf9b31742", "text": "2 ladies from 19 century have a tea party in a 21 century dumpster old park 8K 16:9 motion 1 "} +{"id": "2001987", "video_name": "154d0f3f-d2a2-5cad-a1fe-8e10e1c4bda4", "text": "Going to indian couple in lake love "} +{"id": "2001988", "video_name": "e98093da-ce7a-5a2a-abba-a6a04b18bff9", "text": "joe biden is overcome with confusion and poor balance as he walks alone in an empty room "} +{"id": "2001989", "video_name": "ad1f2acd-258b-5a0b-a6ab-f2064ca3c5a5", "text": "active growing cancer in a human body "} +{"id": "2001990", "video_name": "d0b2e6b4-b994-5859-89c5-e53e96b15e2a", "text": "mom and aunt cook a big deal "} +{"id": "2001991", "video_name": "443db2f1-9b41-5f5a-8e5a-894da70643b8", "text": "a wife and husband on top of a yellow spaceship with a pink sky background "} +{"id": "2001992", "video_name": "550db810-4c59-5188-9c42-1538def6823a", "text": "fantasy robot using its super ray "} +{"id": "2001993", "video_name": "a14b611f-a79a-566a-9e92-1cd7e048a847", "text": "three suited men aiming pistols at each other in a warehouse, reservoir dogzs tyle "} +{"id": "2001994", "video_name": "64f995a1-8432-518f-a6c9-0b5aa3223c4f", "text": "Oslo downtown at night, Oslo opera house, drone footage "} +{"id": "2001995", "video_name": "701b157a-0ec9-5f8f-8e0d-80df4d27afb8", "text": "a beautiful girl is happy to see me "} +{"id": "2001996", "video_name": "e9d58bba-a382-5c41-b6fb-0131ceac3e52", "text": "a realism 1990\u2019s style home video of disembodied mermaids "} +{"id": "2001997", "video_name": "8ba06401-a486-592d-9809-03eb298e0f32", "text": "One magical night, under the silver glow of the moon, they danced in the garden. Their laughter filled the air, and for a moment, time seemed to stand still. It was a dance that spoke of unspoken love. "} +{"id": "2001998", "video_name": "ce615113-9eaf-5bf7-bc18-318e9ecbf604", "text": "Squirrel, Lila the Rabbit, and Benny the Bear, carefully crossing a rickety bridge, their facial expressions showing a mix of fear and determination in 3D animation Style. "} +{"id": "2001999", "video_name": "c2cc1de7-7932-5e1f-915a-6a2c4798379e", "text": "human eye, close up, hyperreaslist, skin, blink "} +{"id": "2002000", "video_name": "5bcf546e-d71e-5975-96cf-8eefd1205e7f", "text": "a rocket flying into space blasting out money "} +{"id": "2002001", "video_name": "a58b33dc-e4e0-590b-8fd3-a171ca2d7ab3", "text": "Taylor Swift Playing heavy metal with Alex Terrible "} +{"id": "2002002", "video_name": "45fadc56-05ea-514d-a228-779a9ee4a1da", "text": "realistic view of taj mahal. as clouds are floating by in the sky. zoom in cinematic style. ar 9:16 "} +{"id": "2002003", "video_name": "687353bc-bcb0-59ba-b0e3-998c8256feef", "text": "A planet that can be seen from the garden approaches. "} +{"id": "2002004", "video_name": "ed73edbe-db6f-5434-8353-194b3fe21dc7", "text": "Scenes of the friends spreading kindness and happiness through their magical lantern in diverse settings. "} +{"id": "2002005", "video_name": "3d0718c8-fae4-52b0-be78-7024aa9fe02f", "text": "Modernised Mario A video Game character talking Ultra Realistic "} +{"id": "2002006", "video_name": "5d2038c1-4c4a-50bc-96cc-a05efefd8198", "text": "a tall tree that covers the whole earth, inspired by the book of Daniel. "} +{"id": "2002007", "video_name": "338a7c13-8404-54b0-81d1-a90efb5f1665", "text": "giant hand reaching down from the cloudy sky. horror scene, scifi dystopian film "} +{"id": "2002008", "video_name": "f658b4a3-2f42-5f42-92d3-9c97c15238ab", "text": "petals of wildflowers on water, sunrise "} +{"id": "2002009", "video_name": "5e7785b8-9147-5790-b4b0-d61e231c16f5", "text": "A handsome boy drinking Coffee in Rain "} +{"id": "2002010", "video_name": "46bc1259-cd9b-56c9-a1c0-6177126e802a", "text": "rapid movement of liquid with a chrome like texture and reftlections of purple and light blue lights "} +{"id": "2002011", "video_name": "370a543d-fa65-5185-82dd-554f011d6977", "text": "middle aged lady peeking out her bedroom door with a worried look "} +{"id": "2002012", "video_name": "7a8a488d-e320-5c57-bad6-87cf10ee95ef", "text": "A mechanical girl walks on the back of a cyberpunk city, "} +{"id": "2002013", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "a close up of a hand playing a C Major chord on a syntheizer "} +{"id": "2002014", "video_name": "16c71144-01ab-55cb-b544-d076380337df", "text": "polaroid of silohettes of seductive man "} +{"id": "2002015", "video_name": "86ac9dd8-f3e0-5880-a42d-dc9d8d298b5f", "text": "turtles traverse the boundless depths of the ocean, their shells serve as both protection and identity, marking them as unique creatures of the sea "} +{"id": "2002016", "video_name": "c65ef4f8-ebe1-5803-8b93-b123cd9c643e", "text": "Create a visually appealing animation of birds in flight, forming a V shape. Use changing seasons to depict migration. "} +{"id": "2002017", "video_name": "2508a6f9-4c21-5c26-b4a8-21cf69573939", "text": "computer contains the key to the universe, Pixar style "} +{"id": "2002018", "video_name": "cf2068ab-0444-55e1-86b9-ae13248ef095", "text": "ccartoon imag A is for Apple, juicy and red, "} +{"id": "2002019", "video_name": "ca127630-6cea-5583-a19a-adbd90feaa4f", "text": "a guy wearing a hoodie siting in a dining table alone camera zooms in "} +{"id": "2002020", "video_name": "a5dba27e-3bcb-51d4-ac49-307fd24c869a", "text": "and then station master asks that if Suresh had any food? Which Suresh says no and he is feeling hungry since last night "} +{"id": "2002021", "video_name": "50257cd5-aeaa-56ec-ab8e-2cb5363ca520", "text": "Children playinga playground in a post apocalyptic Acropolis vihs 4k Message: TSIMENTO (Font: MODERN) "} +{"id": "2002022", "video_name": "bc4c7dab-86c6-5bb2-9736-b463c3ae6c0d", "text": "Show a lush and peaceful forest with birds chirping and a gentle breeze in anime style. "} +{"id": "2002023", "video_name": "ab9602f3-3c67-5d81-af09-55295c0042ac", "text": "friends laughing in the background, and a sad, lonely man looking from afar, 8k, realistic, 16:9 "} +{"id": "2002024", "video_name": "ede5e485-9a98-5e9f-a97f-d4562fd541a3", "text": "an observing figure some magical seeds and the law of atraction "} +{"id": "2002025", "video_name": "fe8ed3e6-b3f9-5c71-a871-08d84f457f0b", "text": "Ayan shielded his eyes, and when the light subsided, he found himself surrounded by mystical creatures and magical beings. "} +{"id": "2002026", "video_name": "08aff89a-5d1a-50eb-a8f7-09e1d597d009", "text": "darth vader is on the ground kneeling as 10 stormtroopers and spongebob squarepants holding a lightsaber surround him "} +{"id": "2002027", "video_name": "d07a59ac-4cf7-55e3-bf47-7a31486f6e25", "text": "water drop on plant sprout refreshing "} +{"id": "2002028", "video_name": "0122d1ae-b6f0-5fcc-b3e3-af738fa4ef4a", "text": "A dark undead mage holding power to live forever to lead all to order as the light bringer "} +{"id": "2002029", "video_name": "b3fffd2b-5934-5d7c-be83-f66d8f9c0889", "text": "cathedral with stained glass windows and candles and red walls and large statues of monster gods and small men with red cloaks around animals that walk on two legs water falls and flying man bats with golden coins falling from the sky "} +{"id": "2002030", "video_name": "2e785776-4db5-5eec-96c1-cccb6fb1f982", "text": "shrek performs a superhero landing in the middle of a destroyed city "} +{"id": "2002031", "video_name": "0084d663-c554-5826-8b1a-87094bcc2ca9", "text": "Odin, the god of thunder, high quality, breathing, moving hands, "} +{"id": "2002032", "video_name": "475149d9-f9d0-5678-acc1-6c1db68a943a", "text": "superman flies by. he looks from left to right. "} +{"id": "2002033", "video_name": "2e3c104c-075f-58e6-98c2-a57daaab01bd", "text": "Cannabis products being prepared for delivery "} +{"id": "2002034", "video_name": "a9668303-ccdf-5472-8df3-6d0f6aa95758", "text": "a retro grid in perspective view on a png file "} +{"id": "2002035", "video_name": "729cc0c1-9004-5c6f-8223-205c7d1c1247", "text": "ELS 9:16 reaper walking through a field of dead flowers surrounded by rubble "} +{"id": "2002036", "video_name": "9b4d32ae-237f-5231-b8aa-bc7f26081bac", "text": "a cinematic movement and snow fall outside Message: 1 Attachment "} +{"id": "2002037", "video_name": "b8bf7b15-5858-56b7-8812-8e08e1eab2ef", "text": "analog film photo cinematic film still photo, elon musk riding a donkey in kandahar, vignette, highly detailed, high budget, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy . faded film, desaturated, 35mm photo, grainy, vignette, Lomography, stained, highly detailed "} +{"id": "2002038", "video_name": "b6ed07ec-6222-5a65-b6a8-3b89e267de4a", "text": "the man is in the sauna "} +{"id": "2002039", "video_name": "795014a7-d2f7-5c62-b73e-18a8e17289ce", "text": "green eye closeup, photo realistic, 4K, 8K, "} +{"id": "2002040", "video_name": "b3c2117e-d5fb-516b-bc4f-8d6b1eb760ad", "text": "3d image of Moana and Maui leaving the cave, with Moana reflecting on their adventure and feeling grateful for her newfound friend. "} +{"id": "2002041", "video_name": "57688471-7e7b-5f36-83f7-0f3252b2262c", "text": "german expressionist horror short, Eldritch Metamorphosis 16:9 "} +{"id": "2002042", "video_name": "1ac9da8b-fe35-5ec4-bbfe-c822138e47bd", "text": "Bicycles riding around the world, in space "} +{"id": "2002043", "video_name": "a2856e79-9971-5503-8e84-81630542f5ef", "text": "Squirrel talking on top of a fire hydrant, 3d animation "} +{"id": "2002044", "video_name": "337ad290-f8e0-5a11-ae89-7ff3cfa3b0d3", "text": "16:9 resolution 2048, in comic book style, Raul Seixas sleeps in your bed in a dark room full of electronic devices, such as TV, cell phone, computer, tablet, etc. "} +{"id": "2002045", "video_name": "b1da7f5f-bf6e-5a5c-845b-69b7816a06a9", "text": "lower blood pressure, and fight inflammation "} +{"id": "2002046", "video_name": "d0aaab9f-8c47-50f6-a330-129e3303506e", "text": "acoustic guitar in a magical forest on acid "} +{"id": "2002047", "video_name": "7ab895ef-864e-505f-9dd4-817b42633bf9", "text": "A witcher with a big sword fighting monsters in the Dark forest,fantasy Game CG, witcher3 Game style "} +{"id": "2002048", "video_name": "4fd34f60-6bc9-59dd-97fe-29acdc0fe0f3", "text": "in a world where magic swirled in the air like glittering dust, there lived a young girl named Lily. She was known for her kindness and curiosity, always eager to explore the wonders of her mystical land. One day, while wandering through the enchanted forest, Lily stumbled upon a baby dragon, small and shimmering, with scales that glinted like emeralds in the sunlight. "} +{"id": "2002049", "video_name": "34f526ba-ef6a-5dd8-bec9-45828843f5ec", "text": "inscription no war in the sky "} +{"id": "2002050", "video_name": "da408d10-ae04-573c-aa70-7e97c94ba325", "text": "Draw an old man telling a horror story to his grandchildren and friends around a fireplace, with expressive gestures and eyes full of suspense. "} +{"id": "2002051", "video_name": "eb9d83a0-1dae-588f-b362-2fb53034bc03", "text": "prison submerged in handcuffs and lemon juice and lemons "} +{"id": "2002052", "video_name": "bc956875-008f-5681-9d13-83ae2625a1d0", "text": "A prop related to Sherlock Holmes, a human hand picks it up. "} +{"id": "2002053", "video_name": "ef93764b-be97-59fb-b5f8-bfb272aa20ee", "text": "and architectural knowledge required for these structures spark debates about the true extent of Sumerian technological capabilities. "} +{"id": "2002054", "video_name": "737bf50a-5d57-5888-ba50-c9bd55c7e774", "text": "Steve Jobs is hosting an iPhone product launch event "} +{"id": "2002055", "video_name": "d4f79e5b-cc0f-556a-9259-38fb9a932e13", "text": "man walking on beach with heavy rainfall "} +{"id": "2002056", "video_name": "1f738438-3dba-5a50-b93a-47ef739467bd", "text": "A man in a coat stands on a rock and looks at the waves in the ocean "} +{"id": "2002057", "video_name": "5f591807-7ad2-5026-b5d6-c810b5e40be5", "text": "3 small rabbits playing in the back garden of the house, laughter, grass, toys, bicycle, late night "} +{"id": "2002058", "video_name": "499c57e7-5948-51b8-af62-6895f2807f16", "text": "urban man in hoodie walking down a busy city street looking at the camera while buildings crumble behind him as he passes by. realistic very detailed hd resolution 4k cinematic "} +{"id": "2002059", "video_name": "911e0acd-4cab-57a5-8ef4-41777c65407e", "text": "soft colors, abstract design, slow moving water boil 4k "} +{"id": "2002060", "video_name": "e8d31162-79ce-53a2-b366-4cbe17f9a046", "text": "girl hanging out with chicken in a garden. ghibli studio "} +{"id": "2002061", "video_name": "f2fb7bf4-81a1-5a71-b124-31a4b3e8e4a1", "text": "a scary sequence with a dark and twisted unique and evil take on Star Wars movies, in the artistic style of HR Giger, choose a random movie clip with xenomorph branches crawling out of skulls as the sky dances 120bpm "} +{"id": "2002062", "video_name": "3d3f77be-2ce2-5b1d-aeb5-994dc657f673", "text": "a beautiful river shore, golden hour Message: Vallejo (Font: COMICS) "} +{"id": "2002063", "video_name": "cdc2b700-0a82-52ff-b3f2-7f3b6b1e40a3", "text": "Thanks to Pika, our visions won\u2019t fade. "} +{"id": "2002064", "video_name": "1b048d3a-57b3-58c0-87b9-41d14331deef", "text": "the perfect smoked meat sandwich original montreal reveipe (round rye bread slices, smoked meat and mustard) for a tv commercial "} +{"id": "2002065", "video_name": "b88a3ecf-3349-5fd4-8391-053cca8245e6", "text": "A little cat is writing a letter to Santa Claus. "} +{"id": "2002066", "video_name": "f8072ff3-ffda-5fa2-9b9b-ca7ee9f285ea", "text": "Reflection of MRI image on a mirror in an art gallery "} +{"id": "2002067", "video_name": "76ac1ec5-15f1-5283-8672-441b333c9b97", "text": "Comic event changing the movement of space time. Motion graphic, fluid motion, hyperrealism, celestial, ar 16:9 "} +{"id": "2002068", "video_name": "9c5338f9-b37d-5321-a1af-dd56db88b8b3", "text": "cartoon kuwaii 3d cute snail sat on top of a missile flying through the sky "} +{"id": "2002069", "video_name": "fbef664f-2566-5fae-aa84-b1763f022987", "text": "an elaborate mechanism delivers a marble "} +{"id": "2002070", "video_name": "81420923-738b-519d-aa2e-5bfc62888d23", "text": "A lively street market where people are interacting with each other, walking alongAttachment A "} +{"id": "2002071", "video_name": "ad2d412c-dee3-53eb-8763-484d82c58dfb", "text": "a bearded c3po head made of ancient weathered stone with a landscape growing on it admidst trees, roots and vines and moss. matte painting by tomasz alen kopera, dariusz zawadzki, zdzis\u0142aw beksi\u0144ski, surreal, colourful, concept art, award winning. razor sharp quality "} +{"id": "2002072", "video_name": "f0d92464-3c90-556e-a69b-26c5405921e2", "text": "City crowds, realistic 3D images, twilight light, HD 1080 quality, 16:9 ratio "} +{"id": "2002073", "video_name": "c2868a6a-833d-5957-8534-722ab8593425", "text": "hyperdetailed psychedelic airbrush by hajime sorayama close up front view in smoky clearing head to toe full length portrait feet on floor a transparent figure of a phantom woman with platinum hair of wispy mandelbrot smoke wearing garnet sapphire pendant gown of wispy smoke with a slight smile standing with arms out, fingers tendrils of smoke spirit materializes from swirling psychedelic colored smoke with fractal mandelbrot spirals filling up the background, Mysterious . production cinematic , cinematic photo taken by hybrid professional 8k canon EOS R5 C , ultra high quality model "} +{"id": "2002074", "video_name": "04e86fff-cb4d-5224-b456-fd99b34e85b3", "text": "catastrophic explosion of earth by a meteor impact, far away shot from space, created using Unreal Engine 5, ultra high definition "} +{"id": "2002075", "video_name": "a5e7bab7-86d7-5974-8835-6749f4f49cc1", "text": "whispers secrets waiting to be rediscovered a book "} +{"id": "2002076", "video_name": "d6f2d043-10aa-5dda-8a47-da210117120f", "text": "zoom in the shoes of a man wearing blue jeans and walking down the streets of a small evening town with a lots of cafes "} +{"id": "2002077", "video_name": "45ee949c-33c1-59f9-928f-27e4af4d3083", "text": "matt fury pepe the frog drinking a beer and riding a tricycle on a busy new york street, animation, disney style "} +{"id": "2002078", "video_name": "8e53e59a-0074-5f92-be50-03d124a57d7c", "text": "3d cartoon style sketch of a birthday celebration in an office setting "} +{"id": "2002079", "video_name": "ef70e7f4-45a9-5f5f-a794-baf3174faafb", "text": "Picture Mark sharing his success story with a group of eager listeners, his face radiant with pride and hope, inspiring others to break free from the grip of smoking. "} +{"id": "2002080", "video_name": "9e6480db-a9b6-5d91-aff4-957aa32b87ae", "text": "pixels dancing on a flat white background "} +{"id": "2002081", "video_name": "d5de6eac-fc6a-54a9-9936-e5840e7f73da", "text": "Evil man laughing, sitting behind his desk, super realistic, cartoon "} +{"id": "2002082", "video_name": "d94cd1a2-ab7c-5ee2-97f5-d45ead72c765", "text": "in the moon Message: french bulldog (Font: MODERN) "} +{"id": "2002083", "video_name": "93e9c6fc-9161-5c20-a9b7-e41e054151da", "text": "A submarine approaching an underwater UFO "} +{"id": "2002084", "video_name": "4cbb286c-034c-598f-8417-cff628c6db12", "text": "Pixar Animation a poor boy changing to rich men "} +{"id": "2002085", "video_name": "894de595-e202-5eb7-9046-6934fc32ed16", "text": "The sun shines its rays in the sky "} +{"id": "2002086", "video_name": "4f28764f-92ed-55f9-8e55-64f9f8456acc", "text": "change the man into a beautiful woman "} +{"id": "2002087", "video_name": "368010c8-59b9-5743-b51e-d6b430a71792", "text": "futuristic abandoned city, mostly white futuristic buildings, cinematic studio light, zoom out, smoke on road "} +{"id": "2002088", "video_name": "7dfa80f7-5185-5485-8427-e715bdb8e6ba", "text": "The frog fell on the beach "} +{"id": "2002089", "video_name": "e206c898-3557-50c4-adc9-f61023517a3e", "text": "a pretty young woman wearing a hijab drinking a coca cola, realistic "} +{"id": "2002090", "video_name": "cb2c4245-7ce0-545a-b87e-e2bfa6798485", "text": "university view students teacher in ground "} +{"id": "2002091", "video_name": "30d31d92-f0fa-5344-9c4a-ddb5fb2c3c63", "text": "riding a whale on the water like a horse rider "} +{"id": "2002092", "video_name": "4ff53839-ba10-5845-8ad3-5b5b27aa962a", "text": "Create a realistic high quality video with Burj Khalifa "} +{"id": "2002093", "video_name": "8495a692-34fa-5ab4-be75-7ccecdf9d171", "text": "holy mary praying in heaven surrounded by angels, background moving "} +{"id": "2002094", "video_name": "ef97cb2d-7610-5bf7-bc20-525c522171fd", "text": "bgc 14 jela and shannon fighting, girl fight "} +{"id": "2002095", "video_name": "177494c2-609b-56d5-8db1-d826e0a074f2", "text": "Slow motion video of a clay pot shattering against a concrete wall if thrown "} +{"id": "2002096", "video_name": "6822f190-af07-59e8-bddc-5323d16caa0b", "text": "man lying on video depressingly watching tv "} +{"id": "2002097", "video_name": "33896976-b3d5-5621-9472-471ff9a1497c", "text": "a colorful painting of a woman, subtle movement in the waves "} +{"id": "2002098", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "humsn lung seen in a whole big picture "} +{"id": "2002099", "video_name": "5b855fce-306d-5d9f-888e-7dfe2582fa84", "text": "LED light therapy mask on grey background "} +{"id": "2002100", "video_name": "a27a3282-326d-5c4f-a7a8-1fc18a6b95b4", "text": "4k portrait of a young Asian woman with white hair, smiling, dressed in a detailed pink kimono with cherry blossoms printed on it, wearing traditional Japanese makeup, showing moving clouds in the background. "} +{"id": "2002101", "video_name": "7b8c22d3-3270-54f7-a7e8-7ddd0533c131", "text": "Superman leaps from the sky and lands powerfully on the ground, causing significant destruction. The scene captures the dynamic impact of his descent and the ensuing shockwave affecting the surroundings. "} +{"id": "2002102", "video_name": "02d27cb5-0ddf-582b-9b16-61a9c85084af", "text": "top down shot forest , drone aesthetic Message: MIKUMAN (Font: MODERN) "} +{"id": "2002103", "video_name": "df7b9e64-f673-597a-8a06-dada0a048929", "text": "surfing big waves of history good detail high definition 4K "} +{"id": "2002104", "video_name": "7b92c445-dd5c-5a67-b408-0e5be9431c00", "text": "realistic image of elegant beautiful woman, walking full body, long black hair, wears fashionable tight clothes, perfect anatomy, beautiful amber eyes, her posture is confident and confident, like a professional model, a masterpiece, the background of the image shows its vibrant energy, with blurred lights that create an intimate atmosphere, the image reflects beauty and fashion, the beautiful woman should appear empowered and confident, and the realistic photo should convey a sense of glamor and cosmopolitan style, resolution 8k, hyper realistic photo, 3D rendering "} +{"id": "2002105", "video_name": "0f92c7be-28da-5e34-8e68-aa7a2506a12d", "text": "hyper realistic futuristic flying car in space "} +{"id": "2002106", "video_name": "04467986-9339-59ea-8b12-7b0c6eca24ea", "text": "a ufo appears out of a portal in the sky "} +{"id": "2002107", "video_name": "60636a76-d886-5611-ae30-9606b2bbd309", "text": "realistic photo of terminator robots in an apocalypsis world, fire, smoke, detailed, 4k Message: genesis (Font: MODERN) "} +{"id": "2002108", "video_name": "3912a749-d05f-5098-8925-113834418a87", "text": "a sparrow bird with many eyes and soft translucent textures "} +{"id": "2002109", "video_name": "3658a88b-a4dd-562f-89cc-5a8350ba6b4c", "text": "rollercoaster is built on the beach "} +{"id": "2002110", "video_name": "f3c15c40-edd1-5815-83ad-c2af50f5d982", "text": "Big Ben in the fading light with sun setting and some movement "} +{"id": "2002111", "video_name": "c3b3a28b-c8e6-55a4-bedb-34c07140c0ab", "text": "blooming lily rotate camera zoom in and pan left "} +{"id": "2002112", "video_name": "3e7b1734-74e0-52e2-9c11-b8c9af6953ed", "text": "The golden mermaid princess is lapping the waves next to the beach, the weather is nice "} +{"id": "2002113", "video_name": "77861920-3198-5903-b7b1-a97dfcdd9281", "text": "A man in his thirties is walking in the street and passes while the street is crowded, while he feels lonely inside, looking at people passing by, camera from the back, movie scene, wearing a coat, crossing the street, high resolution. "} +{"id": "2002114", "video_name": "9be244ae-87fb-5bd4-81a2-c1f6f9987ab1", "text": "A man raised his head up, pages fly off against his background "} +{"id": "2002115", "video_name": "22d20af0-934b-52e8-84ec-c8f900c18842", "text": "big blue ball flying between mountain futuristic place "} +{"id": "2002116", "video_name": "6839af19-3097-59bc-b76c-61355d9aa731", "text": "A handsome young Asian man in a metallic silver sport coat walking out of a jail cell. "} +{"id": "2002117", "video_name": "29dcca8b-55c2-5063-966e-213740160208", "text": "dust smoke rises, sacred temple, The sun is setting in the background, "} +{"id": "2002118", "video_name": "8aa02bc3-e512-594e-b35a-a31d4c216a6e", "text": "head of a cute siamese cat, big eyes, great color depth, realistic "} +{"id": "2002119", "video_name": "1cad8f63-2201-5815-b859-b4aa47fc13dd", "text": "a small spaceship gliding toward a foreign moon "} +{"id": "2002120", "video_name": "9083dec4-f452-5726-a988-84597838ec90", "text": "man flying a homemade helicopter, imax movie "} +{"id": "2002121", "video_name": "7d35bcdd-3ad5-5dd7-beb8-33053bc9e8c8", "text": "an ostrich takes large strides as it runs across the desert during twilight, cinematic, award winning shot "} +{"id": "2002122", "video_name": "ee072eb0-5e01-5671-ba64-cdb699703874", "text": "nintendo 8 bit relaxing rain video "} +{"id": "2002123", "video_name": "ef30f99c-6436-5ac1-b14e-cb7933e7a3f1", "text": "anime, Jesus singing wearing a suit, psychedelic, camera circles quickly, motion 4 "} +{"id": "2002124", "video_name": "cae9abfa-40c5-5869-8d7d-86fbc7dea9d9", "text": "Christmas tree indoor and snow outdoors "} +{"id": "2002125", "video_name": "d46f6359-f98e-593c-a3d9-5c2f3eaf8e67", "text": "Man running in fog, color glitch "} +{"id": "2002126", "video_name": "12172ecf-e88b-53f6-9b3c-7dadf1c11802", "text": "a smiling and winged ham, a sausage with sunglasses and a creamy chop on top and a ribs with smoke coming out moving "} +{"id": "2002127", "video_name": "8b1fc490-d762-5598-9792-bf1ab6dddb44", "text": "puppy and kitty drive train, view from cabin, zoom, "} +{"id": "2002128", "video_name": "7ca94bb3-5300-5fa3-b2de-af5662c7fb79", "text": "a cat dancing with a goat in a roller disco in the 70s "} +{"id": "2002129", "video_name": "e3011ccf-a4df-5f98-bfba-65543801579e", "text": "animate this image and make people walking by and some people in the store Message: 1 Attachment "} +{"id": "2002130", "video_name": "fe0b0ebf-ea59-527f-b8b2-29a7bf11e77d", "text": "The background is simple, with text such as jelly and advertising videos appearing\uff0car16:9 "} +{"id": "2002131", "video_name": "c96bffb4-f38d-502a-9986-587bffcca1f4", "text": "i need a lion in d who is jumping and almost cathing the deer in the forest and in a rainy weather "} +{"id": "2002132", "video_name": "cc01457c-c735-5827-86bf-a2efb2fdbaa9", "text": "a malware walking inside a datacenter "} +{"id": "2002133", "video_name": "b99d8651-e7cf-59fd-9080-8cc5d0e3da47", "text": "Doraemon is walking in the street. The street is clean and quiet "} +{"id": "2002134", "video_name": "de6540f9-9fbf-5d39-aa89-1466026002d8", "text": "christmas cookies, christmas cookies with milk for santa "} +{"id": "2002135", "video_name": "388120c1-e94c-565a-8bc0-ff4142af4fcd", "text": "a turtle swimming in the Caribbean sea "} +{"id": "2002136", "video_name": "0b0cf1e3-36d1-5caf-8474-43c3e95f8615", "text": "Make this image move forward in high quality "} +{"id": "2002137", "video_name": "1c2c58de-698a-5e9f-9726-0301511929ee", "text": "make a propose day images with one boy with a rose to propose a girl "} +{"id": "2002138", "video_name": "07297199-8f20-58ab-a148-1bae958175bc", "text": "Forest scene: The scene begins with a group of towering pine trees in the forest. Wind gently blows through the trees, and the refreshing scent of pine wafts through the air. "} +{"id": "2002139", "video_name": "9a5df3bc-d10a-5d9d-816c-0b032f3b8fed", "text": "after see out side window she screamed very loudly. "} +{"id": "2002140", "video_name": "5a6d55cd-f084-58f4-bec6-995346e7b0ee", "text": "a video of a person looking stressed out checking their phone "} +{"id": "2002141", "video_name": "2476ccad-58c5-556f-810a-b7ed142d3d24", "text": "dj andrillioni Larkin on the big flash party "} +{"id": "2002142", "video_name": "a36d328b-70a7-56e9-a2b1-09262263e51a", "text": "A portrait of Max, Lily, and their friends from the dog club, framed in her living room, capturing the essence of their friendship and their shared love for dogs.Animated cartoon "} +{"id": "2002143", "video_name": "92311ac9-255b-59b9-9071-63dd840b2457", "text": "The skeleton is sitting in the corner of the room , gray walls , shadows "} +{"id": "2002144", "video_name": "0d066cf1-5b51-5d2d-9e76-2ad409d119a5", "text": "a coffee cup splash from top "} +{"id": "2002145", "video_name": "df0b545f-2945-5abf-9936-14fe8bf9213f", "text": "Realistic details woman black hair red cape dress walking at wood House alone in the forest night gs10. fps 24 "} +{"id": "2002146", "video_name": "7c79f965-21bf-5928-ac5b-9daeb809dbf6", "text": "drone footage of Oxfordshire in England "} +{"id": "2002147", "video_name": "71ef93c5-0fb4-50d7-bf1d-e4bc3c702999", "text": "There are dead bodies on the road "} +{"id": "2002148", "video_name": "a1f30347-dcb4-51ac-ab37-7bb0c11910a2", "text": "cute little bird landing on a tree "} +{"id": "2002149", "video_name": "1de3dba0-eab4-5c16-a2f7-2dbd8016681d", "text": "two soldiers ww2 germans standing and facing the camera in no mans land, analog photo, film grain, faces, "} +{"id": "2002150", "video_name": "df694d25-93c7-55ac-ad78-4d44b572eead", "text": "rastaman running out of old cinema, old movie style "} +{"id": "2002151", "video_name": "394f8816-f0da-5042-b4a1-0e5de28d7586", "text": "a hot coffe pot in flames Message: Kaffee Time (Font: MODERN) "} +{"id": "2002152", "video_name": "2cb489ef-0379-5884-a260-a0a34047e671", "text": "1969 UFO being repair by human mechanic "} +{"id": "2002153", "video_name": "42c74d9a-a371-5fd9-9fce-f4af233adb76", "text": "a man eating a cheeseburger, at a restaurant "} +{"id": "2002154", "video_name": "164b9cc7-6a1e-5811-b450-4f25fb79cbe0", "text": "Every household is undergoing a thorough cleaning to remove the bad luck of the old year and welcome good luck in the new year. People will clean their houses and put on new red decorations, such as lanterns and Spring Festival couplets, to welcome the New Year in red, symbolizing prosperity and vitality. "} +{"id": "2002155", "video_name": "c22f1612-bea8-5b9e-a5a5-5fd71ca44515", "text": "dragon breathing fire on a village while flying, 16:9 "} +{"id": "2002156", "video_name": "de8c2b4b-83bb-5036-84c8-ccc8671709f5", "text": "A love scenes from two Russian. Between pink trees. Full screen. First pirson. In ten seconds. "} +{"id": "2002157", "video_name": "e96be711-9bc1-5315-8410-d2d56c29b72c", "text": "Generate a visual of a group of friends gathered at the edge of the forest, their flashlights cutting through the darkness as they prepare to investigate the mansion. hyperrealistic, horror, dark theme "} +{"id": "2002158", "video_name": "f5515209-4bdf-515f-b46f-060397d7a6d7", "text": "A male writer writing at his desk. "} +{"id": "2002159", "video_name": "0074168b-c961-5557-b643-01fc35393b00", "text": "Largest Mall In Capital City Of Simaburg "} +{"id": "2002160", "video_name": "f37e9607-e6e3-52d9-bd60-01b01cd11287", "text": "Einstein waved to the camera with VR glasses on "} +{"id": "2002161", "video_name": "5fb3e6e1-b781-5d4f-ac6e-489cbd259e81", "text": "Generate a car inspired by an F15 taking to the skies "} +{"id": "2002162", "video_name": "f697ead2-857c-5ef0-b570-8a14bdef7235", "text": "In the sky, the vapor cools and condenses, forming clouds "} +{"id": "2002163", "video_name": "a022b393-34cf-5ce3-9519-2927a663be81", "text": "Illustrate Praise complimenting villagers, showcasing happiness and gratitude on their faces. Disney style "} +{"id": "2002164", "video_name": "046d74fe-0647-51e6-92cb-791fd8899535", "text": "A 90 year old man in a wheelchair and a bomb vest with a watch with digital numbers that count down, the grandfather is very nervous and shouts out "} +{"id": "2002165", "video_name": "6f7d9f0e-3268-51f8-bd35-c93cc4b33ab8", "text": "Caesar walking on the streets of Rome in his signature red shoes "} +{"id": "2002166", "video_name": "4c88fe8a-0be1-59e2-952a-cec1c290aab5", "text": "Models, hyper realistic, bikini, fashion show, 10 seconds "} +{"id": "2002167", "video_name": "f744e34a-8d5b-5318-b523-1269d12d787b", "text": "animation of stars, girl is flying, circles is rotating "} +{"id": "2002168", "video_name": "c40324e8-e1d4-51e8-9272-5dfffcfdb54c", "text": "She is not easily defined or dismissed. She is Lilith, the woman who was Adam\u2019s first wife before Eve. "} +{"id": "2002169", "video_name": "6286101f-21dc-5c49-a297-6d2f15927184", "text": "cheetah chasing a deer and then pouncing, 10 sec animation "} +{"id": "2002170", "video_name": "292a8c53-11f1-5eda-8b4c-22d0e27ae15f", "text": "beautiful woman with white hair surrounded by sunflower, 4k, hyperrealistic, slow motion "} +{"id": "2002171", "video_name": "68c64088-628a-5d57-a996-318790644485", "text": "dancing girl, in the style of photo taken on film, film grain, vintage, 8k ultrafine detail, private press, associated press photo, masterpiece, cinematic "} +{"id": "2002172", "video_name": "30c99fca-78fe-52ff-977a-7dd8cef59fa4", "text": "Uversa, the Capital planet of the Galaxy, ar 2:1 "} +{"id": "2002173", "video_name": "9dfa0fcf-e567-5377-a5fd-666726917d74", "text": "The car suddenly exploded, the flames rose up "} +{"id": "2002174", "video_name": "dfd6ddf3-b18d-5034-8cf8-8e156c8e2c74", "text": "In the yard there are 2 cats, 1 yellow, 1 white, playing with each other "} +{"id": "2002175", "video_name": "758fcb19-10ae-55d0-be79-b792c6866054", "text": "Picture a sunset on the beach, waves lapping gently on the shore as a couple walk hand in hand across the sand. "} +{"id": "2002176", "video_name": "2024d746-944a-5404-acbc-779ca89beb14", "text": "Ancient Greek ruins with motion approaching "} +{"id": "2002177", "video_name": "4509be55-3ec2-5de0-a8e8-74ea3cc6d658", "text": "hand shaking, backgound is after world war 1 "} +{"id": "2002178", "video_name": "24c124af-16f8-596e-895c-a9a126ff5e64", "text": "white color rabbit running very fast "} +{"id": "2002179", "video_name": "37512240-461c-5e3b-97e0-a749cdc8fc6e", "text": "ultra realistic animated woman with her hand on her heart with six fingers "} +{"id": "2002180", "video_name": "565f010d-fefd-5e6a-a15a-1299e8c920be", "text": "Create an image of another princess designing her garden plot in the shape of a little mermaid, with underwater flora reflecting the enchanting theme, Photorealistic, Realistic, cinematic,16:9,Ultra 4K "} +{"id": "2002181", "video_name": "33549163-8f5a-574b-9330-1342cb4ef9c4", "text": "granny from the game granny dancing with joy "} +{"id": "2002182", "video_name": "a6fbc366-380d-5f95-ba32-a7ce64a97fb2", "text": "Pep Guardiola holding a spoon and eating a joghurt which is jummy, hyper realistic, camera angle is low "} +{"id": "2002183", "video_name": "99bcc565-e7c9-5971-9ad7-6f3c76808192", "text": "cartoon brown horse running and walked into the stable "} +{"id": "2002184", "video_name": "9368aff2-6bbb-5a4e-b154-901777bdc55b", "text": "hogwarts castle in gothic style zooming in "} +{"id": "2002185", "video_name": "766e5b47-d5a5-5713-9224-0f732755c82a", "text": "space rocket landing on mars, titled \u201ccookiedata\u201d . Ultra realistic. Colorful galaxies and landscapes in space. "} +{"id": "2002186", "video_name": "ea334a5b-ff97-5932-a164-f6521ef38a37", "text": "Professional photo of a happy beautiful woman sitting in the kitchen with a small handkerchief on her head, waving her hand for hello, super detailed, beautiful, 16k dslr, high octane "} +{"id": "2002187", "video_name": "48adf101-4059-5655-9432-6731845952a5", "text": "man fishing from boat in open ocean with spinning rod "} +{"id": "2002188", "video_name": "53977e6f-2745-540a-9602-e98d164665cf", "text": "a castle fights against the dragon "} +{"id": "2002189", "video_name": "bf633d46-e5a5-5795-b2ec-347b2a37a6e0", "text": "a frog painting a picture, of a flowery hat. clip is 7 second long with a high resolution and shot in 24mm, "} +{"id": "2002190", "video_name": "fc3381e3-cfc8-5eef-a04f-aea5fdd1af02", "text": "an industrial landscape oil refinery smoke floating into the sky "} +{"id": "2002191", "video_name": "62e57e27-2616-50f1-a5c5-72616c3197b8", "text": "a man stand on the building roof "} +{"id": "2002192", "video_name": "a0d10777-47ad-55dc-a615-8f9329a5ff4d", "text": "Sweaty Charles Pierrot dances alone in a club. he has a toad and a sword "} +{"id": "2002193", "video_name": "a5db5bee-cfad-5cad-9f41-40dc24072438", "text": "penguin, walking, splash art, ultraviolet coloring "} +{"id": "2002194", "video_name": "3ed5c5bf-9043-5928-9bcf-b4931ff0cd37", "text": "a team of 20 youngers are dancing on the stage in an activity and get claps from the audince "} +{"id": "2002195", "video_name": "94515ede-5dc8-5384-b103-785e706ce861", "text": "Two animated characters sharing a photo album. 4k "} +{"id": "2002196", "video_name": "74078a84-20aa-59a6-b4a5-00d18b8ec0c9", "text": "There are only three electronic products on a white desktop. From left to right, they are a laptop, a motherboard, and a graphics card. There are only these three items, and there is nothing else on the desktop. "} +{"id": "2002197", "video_name": "39e70e1e-9f4d-54a8-bc2f-6a8b268b8548", "text": "Documentary style, a rough sea, dark clouds in the sky, huge waves, the camera extends from the air down into the deep sea "} +{"id": "2002198", "video_name": "efa626d9-2174-53b8-af60-55b06bd9462a", "text": "Movie footage and intense and dramatic video of Ashurbanipal, the Assyrian king, turning to look at the camera and raising his hand toward the viewer, captured with a Sony Alpha a7 III camera, realistic skin, natural features "} +{"id": "2002199", "video_name": "ecdcce08-a147-5753-8257-09ac371e92f0", "text": "Snails dance while raining in a forest "} +{"id": "2002200", "video_name": "7f18c3ff-13b1-5e9a-82f3-f0539e8fb0a9", "text": "The flow of nutrients pulsing through a living, glowing, mycelium network "} +{"id": "2002201", "video_name": "581f9bac-e3a4-5e62-8b59-a0256eb92a7b", "text": "People are walking, a little snow is falling and the lights are shining, let the scene be 5 seconds Message: 1 Attachment "} +{"id": "2002202", "video_name": "40acd339-f5cc-5bfd-81c6-0fb8156cdbe4", "text": "Lady Diana as Bride stands on Royal carriage "} +{"id": "2002203", "video_name": "4bfb6141-a67e-5eb4-add2-e46df6998bd0", "text": "Introduce the main characters, showcasing their personalities and unique traits amidst the bustling reef environment. "} +{"id": "2002204", "video_name": "ed5e7e7d-d614-56ef-b994-920ba4fa7c83", "text": "beautiful watercolor type image of a dragon and a mermaid relaxing by a seaside cliff "} +{"id": "2002205", "video_name": "a901fb3f-24ba-589b-a6c5-3e75ab91a157", "text": "aerial view of a snowy forest with Christmas lights in the treetops and a mountain in the background Message: 1 Attachment "} +{"id": "2002206", "video_name": "531d7aad-92dc-51ea-bf91-4fd46c4ae2e4", "text": "animation 2d, 2d, illustration, anime, minimal, a female hand resting on the snow as if it had fallen asleep, snow, winter "} +{"id": "2002207", "video_name": "46d97bc3-5b81-5637-a32b-10d648f17b47", "text": ": farmer on his bullock cart "} +{"id": "2002208", "video_name": "af36f733-188e-52c1-bb47-ad1a1eb49967", "text": "high quality,cg,a boy seat by a girl "} +{"id": "2002209", "video_name": "11643b6d-b23a-55d1-8d85-24b0afb18b02", "text": "Visualize the monk, his eyes reflecting years of introspection, as he imparts ancient wisdom with a gentle smile. "} +{"id": "2002210", "video_name": "afb31fc6-465b-5547-9605-6e4622b560c0", "text": "lushful city lights in busy cyberpunk scenery "} +{"id": "2002211", "video_name": "1b82209f-b2fd-5406-a402-ed6267f4d14a", "text": "Teenage punk making a peace sign to the camera, kilt, tank top, tattoos, train station, photo realistic, high resolution, perfect body, rainy day, 4k, 16:9 "} +{"id": "2002212", "video_name": "a6ae1199-76ea-5b00-8129-7433f1171e98", "text": "a group of people walk through the autumn forest on yellow leaves "} +{"id": "2002213", "video_name": "6c91f0cf-f2d8-5709-8da8-2bf031fc004e", "text": "As the night deepened, the reef transformed into a world of enchantment. Bioluminescent creatures created a mesmerizing light show, painting the water with neon colors. It was as if the stars themselves had descended to join the dance of the ocean. "} +{"id": "2002214", "video_name": "ca70c2ae-241f-5b7f-b59d-f72af8675f12", "text": "the cat is sitting at the computer and working "} +{"id": "2002215", "video_name": "fb8a13e6-cba7-5eb9-83e0-de406e00e658", "text": "santa left a small gift under the Christmas tree "} +{"id": "2002216", "video_name": "28f32a9b-692e-5b9f-a3fa-93f022f26f43", "text": "Terminal velocity for a human body falling through air is about one hundred twenty m.p.h. Falling fifty miles is no worse than falling five hundred feet. "} +{"id": "2002217", "video_name": "bbf7c545-d0e1-5278-888c-321bd95440a8", "text": "disney pixar style, abraham, wearing grey robe, white middle length hair, jewish old man, sarah, old jewish woman, wearing blue dress, blue scarf on head, looking both in the front camera, night background, jeweish setup, ancient times "} +{"id": "2002218", "video_name": "a3a1c0b8-7352-54f0-b8d4-25e0f438a9c3", "text": "unbreak my heart by toni braxton "} +{"id": "2002219", "video_name": "d38e744e-b81b-5d12-a7c6-2e77960b6481", "text": "villagers are getting worried from boy "} +{"id": "2002220", "video_name": "dc7b0f8c-737d-597d-8983-94570a562fcd", "text": "creepy fluorescent lights flickering, inside a mall parking lot. Black and white film, dark cinematography, 90s screen grab, Retro aesthetic. Creepy Ambience, syncing with dark omniscient tone. "} +{"id": "2002221", "video_name": "79af379c-0ff1-564a-a6b2-6526433c9f98", "text": "A picture of a determined young woman dribbling a basketball on a court, with a supportive friend cheering her on from the sidelines "} +{"id": "2002222", "video_name": "39d2ff61-a9ec-5e7a-8fdf-9f42b07a803d", "text": "In the realm of Eldoria, five clans faced a looming darkness: the dreaded Shadowfiend. "} +{"id": "2002223", "video_name": "da4d8216-1cfb-53ef-96e6-56fed3e0375f", "text": "a samurai dancing to electronic music in a crowded nightclub "} +{"id": "2002224", "video_name": "38000586-3d15-55e4-be3f-f76061baf444", "text": "man walks through green mist in the desert. 1980s. vintage "} +{"id": "2002225", "video_name": "f4f57852-838c-5731-84d1-fc507cc1f37d", "text": "There is a lonely man sitting in a dark living room, 3D effects, movie style effects, pan and zoom images, movement effects. "} +{"id": "2002226", "video_name": "4d5cc773-15df-5ca0-835f-788f5382e0c3", "text": "sexy lady wearing a tiny red bikini, portrait shot facing the camera, shy look "} +{"id": "2002227", "video_name": "4a76c2e0-32fe-5a39-9498-711a48ea0e9e", "text": "Animated exploration journeys of early European explorers. "} +{"id": "2002228", "video_name": "3722b988-ed8b-5f4e-9624-0cefbd5549f1", "text": "A pond ripples in the breeze "} +{"id": "2002229", "video_name": "08ea7b07-c210-5744-a79c-88a5a6b64994", "text": "growing a chair made of mushroom and bubble "} +{"id": "2002230", "video_name": "f808b6ab-f4be-5f45-9f86-abe38292a7d4", "text": "a girl grow up happily in a small village "} +{"id": "2002231", "video_name": "8bb9bb54-9140-5bfc-a8cf-57a2833bab0f", "text": "Shifting universe, distorted, dislocation, splitting powerful image of a humanoid mecha "} +{"id": "2002232", "video_name": "20161ba7-e49e-563a-a927-964fac41c1d3", "text": "finger board with heroes marvel fight with heroes mortal combat 10 an night blood moon "} +{"id": "2002233", "video_name": "02a38ae4-0071-5e7f-9703-115ef3cc093b", "text": "Murnau movies. Clouds are moving and fog is burning. Thunder and rain. "} +{"id": "2002234", "video_name": "a3ecc1b0-5aab-51ec-a928-44b5104bbc53", "text": "A charming little bookstore in the village, where villagers go to find stories about magpies and mysteries.Animated cartoon "} +{"id": "2002235", "video_name": "7a7e5666-da6a-5080-8712-ab196b7f0a08", "text": "Two men are riding on a bus and discussing something "} +{"id": "2002236", "video_name": "21287fe0-ae50-5c4d-b0ee-8c82767c7c72", "text": "warehouse worker acting dead when manager walks by "} +{"id": "2002237", "video_name": "acce0764-16c8-5c38-b0e1-8fac32d56393", "text": "savannah scenarios rain breezes storm lightning "} +{"id": "2002238", "video_name": "7bd874ef-d4d2-5c2e-a05e-22ef9cf1680d", "text": "A montage shows the animals working together to plant and tend to crops. The rabbit thieves learn the value of cooperation and the joy of helping others. "} +{"id": "2002239", "video_name": "1e32a25f-d7e4-54dc-85f8-e1e14bc1fbe0", "text": "The camera slowly zooms out from the eerie skull man as he stands watch over the cemetery on the dark full moon night. As the camera continues to pull back, the scene transitions smoothly into the cemetery. The camera pans towards a group of ghostly figures emerging from the mist. dark style of Tim Burton, ultra hight quality, ocatne ray tracing, camera effects, cinematographic style, ultra detail 4k "} +{"id": "2002240", "video_name": "706ff682-9d6a-5ae4-968e-e6ee31effe0a", "text": "two boys and a girl roaming in a toy shop in the evening "} +{"id": "2002241", "video_name": "e6153074-2d76-543b-9cb3-7a117cdb91e3", "text": "Imagine a lone planet suspended in the starry expanse of space. Picture the soft, celestial lighting casting a gentle glow upon its textured surface, highlighting intricate details. The planet stands out, alone and mysterious against the cosmic background. "} +{"id": "2002242", "video_name": "b1204ea7-76f9-5caf-834f-1b3febc583b0", "text": "Even now this landscape is assembling.\nThe hills darken. The oxen\nsleep in their blue yoke,\nthe fields having been\npicked clean, the sheaves\nbound evenly and piled at the roadside\namong cinquefoil, as the toothed moon rises "} +{"id": "2002243", "video_name": "47ad5086-1fb0-5130-823d-7924f33d6c7b", "text": "show an illustration of dna version RH negative. "} +{"id": "2002244", "video_name": "33a65b82-ba48-5d25-bcd9-97d2d9ca2018", "text": "A Jedi walking in a cave meeting Darth Vader with lightsaber in hand "} +{"id": "2002245", "video_name": "790b047b-1442-5f9d-96f7-c3352c7a1d89", "text": "A hurried businessman checks the time anxiously as the elevator ascends. "} +{"id": "2002246", "video_name": "5b133a3a-8e4d-561e-b1a6-0a3c7dad244b", "text": "A painting of the earth on a wall that the painting moves "} +{"id": "2002247", "video_name": "572a9098-1d0a-5b40-bd42-c402ca91033b", "text": "wooden box falls from the blue sky, photorealistic, highly detailed "} +{"id": "2002248", "video_name": "13dd5173-bb81-5a68-b739-7d4ffd57b12c", "text": "footage of a meteore about to hit a forest "} +{"id": "2002249", "video_name": "fee7cc90-b2fb-57c9-98fb-370c5d24525f", "text": "a couple who hold hands and walk in the sunset evening. A heart between them to show their love "} +{"id": "2002250", "video_name": "068cdac2-c117-51a7-bf70-bf6ecfee03eb", "text": "a dancing fire and he is singing, a fox is watching "} +{"id": "2002251", "video_name": "b1e86455-f234-530e-8d6a-24ee0e1f094b", "text": "retro,universe,Black hole Message: OHO (Font: MODERN) "} +{"id": "2002252", "video_name": "f54fd3f7-d774-5761-89fd-16899ea123e7", "text": "Anya from the Spy Family is shopping at Black Friday "} +{"id": "2002253", "video_name": "00e8360b-7dea-5197-baae-cef9e4433eda", "text": "Banyan tree, real world, community, store, creative park, 4:3, full frame, 3D, high quality, real. "} +{"id": "2002254", "video_name": "e32af912-4ee0-5360-8552-3cf958a936c2", "text": "a woman and a man having a holiday in the disney "} +{"id": "2002255", "video_name": "7121c800-2923-5905-aa28-7c8c6c3cf00c", "text": "girl walking on a treadmill and writing on the treadmill desk with plants all around her. "} +{"id": "2002256", "video_name": "a59001f8-89ac-5eeb-b09c-357c00845d7f", "text": "simple line drawing of a person crawling through green lasers woutout touching them "} +{"id": "2002257", "video_name": "a64c547b-5307-572c-9e0d-a5961d856caa", "text": "red mood night sky, vhs, old film, old movie, Blair witch project, dawn of the dead, scary, horror "} +{"id": "2002258", "video_name": "67014e3d-1f4e-5f21-bdd4-7311aa6909a5", "text": "a man opening a gift with a table inside, digital art "} +{"id": "2002259", "video_name": "7a7593b4-ca0f-53cc-a834-6a90947edea6", "text": "A clip of a bird holding a leaf and walking quickly "} +{"id": "2002260", "video_name": "c645fc15-8680-548a-be03-540983996585", "text": "\u7576\u7136\uff0c\u9019\u88e1\u662f\u76f8\u61c9\u7684\u82f1\u6587\u63d0\u793a\u8a5e\uff1a\n\n1. Blue Flying Pikachu\n2. Meadow Flight Adventure\n3. Mijunior with Wings\n4. Realistic Style Pikachu\n5. Blue Sprite in the Sky "} +{"id": "2002261", "video_name": "c4088d2e-8ce1-5e5a-99b4-3c2d2d4bea92", "text": "5min Skulptur in the style of Erwin Wurm "} +{"id": "2002262", "video_name": "80c78670-4d9b-5579-9c07-8142a29bf2eb", "text": "a man hoarding McDonald\u2019s and sleeping on a bed of French fries "} +{"id": "2002263", "video_name": "e0b9c6db-3dfb-5ec8-8fc2-99dd42091b72", "text": ": Introduce the story and the characters. Show Anya working in her workshop and dreaming of building a machine to reverse climate change. "} +{"id": "2002264", "video_name": "9d7db016-1618-5c32-95d4-c96696f9b740", "text": "Together, the little yellow bird and the little blue bird embarked on a journey through the forest "} +{"id": "2002265", "video_name": "0e741ace-0e54-50e8-b05c-a84f22782fb6", "text": "One rabbit got stuck in the thorn bushes and the other rabbit helped him to get out "} +{"id": "2002266", "video_name": "1a5daee1-99e2-5d20-a956-2e053e38bb9d", "text": "a variation of period underwear on a white background "} +{"id": "2002267", "video_name": "6109801b-9627-5439-9845-0bb3d5c97a2b", "text": "a man passes through a wall like a ghost "} +{"id": "2002268", "video_name": "ffe49761-8392-5b69-b648-3c55a67ab8b7", "text": "a young mam propped up in bed with a relaxed smile and a cold glass of beer on the bedside table "} +{"id": "2002269", "video_name": "188c6941-9484-53cd-955a-b4258866730d", "text": "an angry dragon is fighting with human in the sky "} +{"id": "2002270", "video_name": "6d794e36-4434-57ba-ad8e-51536b5944dc", "text": "devil playing the violin dressed in red on a yellow background "} +{"id": "2002271", "video_name": "3397f03a-edfa-5ed8-b252-b5ba728c09fd", "text": "an investment banker typing trading orders to a computer, in a glass building "} +{"id": "2002272", "video_name": "34ce13b9-f56d-5905-b1ce-fcb25cb5ff45", "text": "The stock market has fallen, but the man is happy "} +{"id": "2002273", "video_name": "e5f1a738-8866-5bb6-abc9-51984f39c483", "text": "group of native neanderthal women, in prehistoric clothes, talking at the riverside "} +{"id": "2002274", "video_name": "8020d6ef-9125-5189-a72d-caaea48213ca", "text": "Imagine a celestial messenger, bearing scrolls of guidance and instruction \u2013 the prophets, like messengers of light, deliver the scripts of permissible and prohibited, etching the boundaries into the hearts of humanity. "} +{"id": "2002275", "video_name": "eb5762ba-68b8-5bb3-ae94-12be0d1baedd", "text": "A glimpse into the blossoming fresh relationship between Liz and Tyler through their senior year. Experience their progression into a high school love story and ultimate decline due to their own issues with communication, mental health, and ability to proceed with how they interact. "} +{"id": "2002276", "video_name": "1a41fe80-2601-5653-933d-081e16b1b051", "text": "indian bride groom wedding scene reception "} +{"id": "2002277", "video_name": "14c3ba2d-2f90-5355-bcc3-29bd34e15d85", "text": "A shot of the humble shoemaker, Sam, in his small workshop. "} +{"id": "2002278", "video_name": "c19452d2-8c6a-5133-9651-944c14eebc83", "text": "The cartoon girl walks among the flowers in the garden, smiling with her hair blowing behind her. She smells the flowers and touches the leaves with her little hands. "} +{"id": "2002279", "video_name": "c970960d-8bf4-5a58-945e-5e2358a263e6", "text": "a cartoon scene for kids rhymes foe the wheels on the bus goes round and round "} +{"id": "2002280", "video_name": "7602ab41-6ed7-5b8f-b5a2-57756682f1ef", "text": "couple walking through gorgeous vintage museum in paris "} +{"id": "2002281", "video_name": "776c31c1-7651-5529-9692-358597303ca0", "text": "distant flying saucer moving left to right, 16mm film, Kodachrome color, wide view "} +{"id": "2002282", "video_name": "038ac5a8-68dc-50c7-b4ec-6b81ca745be5", "text": "little girl with parents, 3d cartoon "} +{"id": "2002283", "video_name": "a90a3ff4-b0b5-5536-9fcc-b2d145d920d0", "text": "Snowhite looking to the smartphone in the picture of the apple trying to eat the apple "} +{"id": "2002284", "video_name": "8bbb8a98-9f38-5612-9a41-3c504df39254", "text": "A warrior on a horse with a cross in his hand is heading to the battlefield camera zoom out "} +{"id": "2002285", "video_name": "73d8dd69-cc4f-52b3-b0d0-e7ec153c794d", "text": "something is lurking in the foggy woods "} +{"id": "2002286", "video_name": "4fd9183c-b5c8-57c1-875e-fc1736d49d68", "text": "the joker talking to batman first pasive and then aggresive "} +{"id": "2002287", "video_name": "fcc9e400-1eb8-5e87-a07d-e5d1f6b988b0", "text": "transforming from Diana Prince to WonderWoman, lightning glow neon, PLA filament, movie video "} +{"id": "2002288", "video_name": "e7f1879f-dc0d-5659-8e88-09b05298a99c", "text": "Realistic, Detailed, 8k,Cinematic, Teapot on Table in Rain in Autumnal Mood "} +{"id": "2002289", "video_name": "9f5687ad-8f9d-5fa6-8704-4cee05756839", "text": "The octopus dropped the spoon and the teapot. "} +{"id": "2002290", "video_name": "711b8be2-6a14-5e78-8b44-e0a92f0839e3", "text": "santa claus driving a red cyberpunk vehicle, futuristic, cyberpunk, 8k, highly detailed, hdr "} +{"id": "2002291", "video_name": "afdca6df-1001-5d42-bb75-e9512d980f03", "text": "A giant ultra realistic extra terrestrial creature walking in the city "} +{"id": "2002292", "video_name": "802f376d-b932-529f-99e9-65497f3970e5", "text": "They whispered dark thoughts into dreams, sowing discord and fear. "} +{"id": "2002293", "video_name": "e4f34edc-7e9d-5a68-8c8b-ef79f9f25add", "text": "One fateful day, a distressing message reached Ahmed. A local orphanage had fallen victim to a malicious cyberattack. All their records were locked, and the hackers demanded a hefty ransom in exchange for the data. Ahmed felt a surge of anger but knew he had to act swiftly. "} +{"id": "2002294", "video_name": "08c8fd08-3c9f-5e1b-a939-8b640d0ab09c", "text": "Upperbody Workout Message: Bodyweight fitness (Font: MODERN) "} +{"id": "2002295", "video_name": "1c5f832f-24df-5683-92d0-d2b03232e281", "text": "The temporal fractures healed, and the lost travelers were freed from their distorted fates. 8K "} +{"id": "2002296", "video_name": "d3d59874-6e0b-55f8-863c-df61db0a4475", "text": "a stick figure walking carrying a very large question mark. "} +{"id": "2002297", "video_name": "6e22a473-be0f-55c3-9df3-dcfa61a85901", "text": "A Kobold wizard casting fireball on a group of goblins ?as 16:9 "} +{"id": "2002298", "video_name": "2779e5b7-a975-53dd-af1a-57e5a9b4468f", "text": "Cement Factory Workers running, cinematic 4k, realistic "} +{"id": "2002299", "video_name": "bab6499a-2e8a-5b47-b618-da2345a79838", "text": "an eyeball looking around, eye anatomy study, in the style of CGI "} +{"id": "2002300", "video_name": "dee6947b-ba51-5421-a88f-34d1cfebde6e", "text": "AI Tom Riddle saw a snake in the chamber of secrets "} +{"id": "2002301", "video_name": "3bbf6338-4b39-5d41-a2e4-768230f94149", "text": "A beautiful lady teaching the kinemaster editor program "} +{"id": "2002302", "video_name": "9671d99e-dbd4-5ce3-aacf-40dc39ebd3d7", "text": "When night came, fireflies emitted twinkling lights in the garden. "} +{"id": "2002303", "video_name": "6dafee2c-f1e2-5e63-9f6b-6de026fe41ac", "text": "An animated background of a lush jungle, featuring a wise elephant, playful monkey, regal tiger, graceful deer, colorful parrot, and other animals engaging in heartwarming interactions amidst vibrant flora and changing daylight. "} +{"id": "2002304", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "mother bunny prepared food at kitchen "} +{"id": "2002305", "video_name": "fe924145-cfd8-5e42-bded-9296d358f484", "text": "Create me a man who wants to steal your power. "} +{"id": "2002306", "video_name": "91334e02-6943-52ba-8a7b-1e92a47cca5e", "text": "1970s Eastern European dark fantasy horror film, cadillac allante drives down spooky road "} +{"id": "2002307", "video_name": "22ea7df4-0b18-5e56-aa0f-7c0041317dcd", "text": "yoda types on a keyboard with a computer and wearing glasses "} +{"id": "2002308", "video_name": "63f9177f-303d-5c9c-a667-07f8d1fc21ba", "text": "a dx7 keyboard being played by a man in a white suit "} +{"id": "2002309", "video_name": "a4df5eab-46b0-5b08-9d28-7280ecd36fd8", "text": "A warrior looking like tomcruise standing in a crouded conference, people in background are cheering, medieval scene "} +{"id": "2002310", "video_name": "b5a01fd9-81eb-5852-a137-ab851b12144a", "text": "as they fly through the sky, the superheroes leave a trail of vibrant colors in their wake. The realistic rendering of their movements and the world around them adds a sense of authenticity to this epic scene. "} +{"id": "2002311", "video_name": "6c011424-dcae-5430-9d42-d8bd600cd100", "text": "Two chinese ancient people, one is proud and complacent, the other is cautious "} +{"id": "2002312", "video_name": "8be69ef0-f9a7-557b-8e0d-558ac290d5dc", "text": "Amidst the dazzling golden light and water mist, a majestic Chinese golden dragon soars into the sky. "} +{"id": "2002313", "video_name": "2095a964-a4d4-5b19-84ab-03e09ea489b3", "text": "A face drawing pencil and face painting eraser on face canvas "} +{"id": "2002314", "video_name": "3df095fd-4aac-5711-a185-ac316f471c55", "text": "a puzzle with pieces scrambling upwards "} +{"id": "2002315", "video_name": "d15736cc-f69f-5bc8-8528-2fed581984b2", "text": "a cute water color animated 4 years girl, cufly black hair, brown skin, smiling "} +{"id": "2002316", "video_name": "7a27434f-93c7-552a-b685-a32ba762ea80", "text": "chandrayan three on the moon with aliens "} +{"id": "2002317", "video_name": "37fa8ceb-9beb-59de-8247-2f4ebe167dcb", "text": "the beautiful ocean is turning dark to a radioactive face. "} +{"id": "2002318", "video_name": "7ce2092e-3483-5692-9310-4abd6a7fb12d", "text": "A person who speaks naturally, with natural body movements, standing face to face, and a gentle breeze Message: 1 Attachment "} +{"id": "2002319", "video_name": "9116c716-2b84-571a-943e-fc41885a326a", "text": "Start the game with a lush, animated forest scene. Show colorful flowers, playful animals, and sunlight filtering through the trees. A friendly narrator welcomes the players to Furrywood Forest. "} +{"id": "2002320", "video_name": "7d9bea14-03d4-5a23-a00e-7584dcd2ba1d", "text": "weird storm as person hit by lightning "} +{"id": "2002321", "video_name": "cc88afc4-db3f-53d9-8248-ec49c914c2af", "text": "man looking at a pink hologram girl, cyberpunk background "} +{"id": "2002322", "video_name": "47f3b8e3-eb49-5892-aee2-c56349ea3b81", "text": "realistic movie scene depicting a horror masked ball "} +{"id": "2002323", "video_name": "953ac793-f2f9-58a5-9943-472725342cc3", "text": "islamic cartoon a boy and girl taljing about fire and god "} +{"id": "2002324", "video_name": "47475a41-aefa-5da7-a7e8-3fd93c826581", "text": "Shaggy giving the middle finger as same as eminem but cool and with an epic effects the middle finger of dead from shaggy "} +{"id": "2002325", "video_name": "7644fe01-77b4-5323-b899-7e81bb775d1f", "text": "space Highway with cars speeding through traffic "} +{"id": "2002326", "video_name": "c61e89ac-a110-5c68-8e77-cda3c0c6abe1", "text": "Goldfish swim slowly with minimal amplitude in the water. The integrity of the image must be ensured "} +{"id": "2002327", "video_name": "1403dbe9-4744-5854-b358-339cf2184bff", "text": "a 16:9 video capturing the delicacy of a romantic moment in a school. The hands of a girl and a boy should interact gently on a bench. Express their emotions through subtle movements and gestures. Pay attention to lighting to highlight the emotional intensity of the encounter "} +{"id": "2002328", "video_name": "65ddbfea-977f-504f-83bd-08f48b12e2b1", "text": "elevation view of a street in berlin with european style buildings, photoautomat, bridge, canal and kiosk, hyperrealistic, cinetamatic, photographic "} +{"id": "2002329", "video_name": "110b69a1-70d2-52d0-8d34-9db0c7f70df0", "text": "an old saber lies on a table, distance shot "} +{"id": "2002330", "video_name": "fbb43914-7d8b-54db-b470-820294b8ee72", "text": "login inside a paper plane that opens up "} +{"id": "2002331", "video_name": "1b71dac5-7d25-56e6-97b0-a1b5ae192a62", "text": "When he got home, Bere immediately met his father who was sitting in the living room. "} +{"id": "2002332", "video_name": "c161a03d-15f6-52f3-9d58-96ae7b45066d", "text": "beautiful brilliant colors sunset on the shore of the beautiful ocean,8k "} +{"id": "2002333", "video_name": "fcb6b14d-5967-56e2-9391-e7db50ba7f1c", "text": "lightning McQueen racing foxy from fnaf "} +{"id": "2002334", "video_name": "eb58fa3f-13ad-5799-ab06-791741544060", "text": "bamboo grove Message: PARAH (Font: MODERN) "} +{"id": "2002335", "video_name": "04504ff3-63cd-5731-a1bf-69889aad0fa3", "text": "A Dog Eats The Camera (POV) "} +{"id": "2002336", "video_name": "415d0693-d873-546f-af2e-8f98fa55685a", "text": "ice crystals forming on a black bacgkround "} +{"id": "2002337", "video_name": "7f932b62-a238-5f71-bb8a-8b7efa1d3b0a", "text": "a man who is mingling on the edge of society (anime, cartoon 3d) "} +{"id": "2002338", "video_name": "be9d9357-9f1d-5528-8825-fba23cb2edf4", "text": "An austronaut playing golf from the moon to the earth "} +{"id": "2002339", "video_name": "ada14993-9b32-504a-b296-1108e3273a41", "text": "shiny fantasy creature in deep sea "} +{"id": "2002340", "video_name": "f1bb9582-8387-541c-851f-18bc89427d68", "text": "In the heart of London, the charming Enfield House. "} +{"id": "2002341", "video_name": "fee9fcbb-5869-5006-9cd5-7733575051f2", "text": "A Ford Mustang speeding through an African metropolis "} +{"id": "2002342", "video_name": "4db0eec6-de38-5ec5-b020-9bce3cf00c22", "text": "there is a zombie apoclypas and a father and daughter are running away to save them from zombie "} +{"id": "2002343", "video_name": "c38ff75d-9f1d-527f-8165-963da2eabb60", "text": "Pictures of the Scorpio King by actor The Rock "} +{"id": "2002344", "video_name": "7f905a9c-cfaf-5fc7-b0c1-aa5e0fa96b7b", "text": "Cristiano Ronaldo farming in Indian village using tractor "} +{"id": "2002345", "video_name": "262a9eb6-181a-5f0a-bf85-3d333edbae02", "text": "more precise, face stay the same "} +{"id": "2002346", "video_name": "83e24564-0ecf-5238-91c3-7359984c70b2", "text": "A beautiful beach, sunset, sunset, lovers, play "} +{"id": "2002347", "video_name": "6647a9f6-80f6-590c-8b6c-35235bea1c5c", "text": "huge pile of burning money Message: 1 Attachment "} +{"id": "2002348", "video_name": "f0cd506e-e09b-5597-a2fe-08e81b83ca9d", "text": "HORROR The spectral figure of the Whistler, with hollow eyes and an unsettling grin, emerging from the shadows, its melody hauntingly enchanting., IMAGE REALISTIC, HIGH QUALITY, high definition, 7k "} +{"id": "2002349", "video_name": "8d54152d-5e4a-5930-9850-93a2695d6634", "text": "Moreover, the discovery of ancient humans "} +{"id": "2002350", "video_name": "08a6a9da-f9a5-577c-a21b-b8125f6b2506", "text": "sportsmen in a arena with burning background "} +{"id": "2002351", "video_name": "5d93fa50-0842-5d06-96c9-f1199f01c040", "text": "gears and pipes with water on blue background Message: AT (Font: MODERN) "} +{"id": "2002352", "video_name": "32f867b7-dbc0-5b96-8690-2c45433aa06b", "text": "cloe up of church bell ringing, over snowy streets of village at xmas, old black and white film, francis ford coppola style. "} +{"id": "2002353", "video_name": "e660678e-04da-5ed3-8e76-364102fead0f", "text": "Luna teh tooth fairy sat behind a wooden table under in a starry night. she is talking to her friends "} +{"id": "2002354", "video_name": "c050c157-1562-5a6d-8c81-1956544f763c", "text": "cinematic film of a detailed happy weirdpunk king driving a motorcycle, a detective solves crimes by rogue androids . shallow depth of field, vignette, highly detailed, bokeh, cinemascope, moody, epic, gorgeous, film grain, grainy "} +{"id": "2002355", "video_name": "d4d36826-1c40-5d78-955b-dd79baad185a", "text": "Be brave. Take risks. Nothing can substitute experience.\u201d "} +{"id": "2002356", "video_name": "9abe1141-f7ec-5cbd-be47-4dcb453a6890", "text": "ship astro nave space a explosion in style the middle of Brawley, California. Shot on shaky iphone from the ground , in the space moon but 1940 old film "} +{"id": "2002357", "video_name": "df90b082-195b-5c42-9c74-09394e61f237", "text": "They discuss the color green in nature "} +{"id": "2002358", "video_name": "6100e2b1-f857-503c-b67b-b76d8a99f711", "text": "camera FAST zoom OUT ROTATE CLOCKWISE, turquoise waters, white sand, vibrant, paradise, warm, pristine, lively, tropical, serene. Message: ADRIANA (Font: MODERN) "} +{"id": "2002359", "video_name": "aeebb068-ce10-54ae-8fed-8b378301b8f2", "text": "dancing astonaut in sky with rainbow "} +{"id": "2002360", "video_name": "26ec6e26-0625-525e-a3f0-d1d7350918fb", "text": "an underwater world where terrain is inspired by the giant blue ring octopus and the blue lotus flower, is influenced by African tribes "} +{"id": "2002361", "video_name": "ab1ebe91-a016-5f53-89ea-512e7d97508c", "text": "two galleons leaving harbour busy with smaller ships and boats sunrise carribean sea 16th century realistic "} +{"id": "2002362", "video_name": "9e011b2f-431f-576f-8b98-b4d56fd698ce", "text": "The Bedouin attendees show understanding and appreciation for what the Arab has done. "} +{"id": "2002363", "video_name": "9060008e-92e5-56e7-86da-33cba706b4d2", "text": "I want a 10 second video with sound where a man is driving a Porsche car and there is smoke around him "} +{"id": "2002364", "video_name": "a1d8b228-5369-581f-9749-a1cb86354956", "text": "prompt:traveling through space time and you are looking through a worm hole out of that worm hole you can see space and stars and a set of hands "} +{"id": "2002365", "video_name": "851e8395-be69-5334-8607-0dd2615c92d2", "text": "in the city landscape Message: Mgustas (Font: MODERN) "} +{"id": "2002366", "video_name": "8f525ce8-764f-5a3d-91dd-daeaae2ede35", "text": "city among the stars like pixar movie "} +{"id": "2002367", "video_name": "2b7b707e-bd50-5f08-916d-ca036fcd4e1b", "text": "one young boy lay in his bed at night,4k,animated,night effect "} +{"id": "2002368", "video_name": "e57242e6-4b76-5855-8acc-8a54a6d2d87b", "text": "a hyper realistic photo of a model riding a horse on the beach at high speed, wearing a long dress, with flowing fabrics moving in the wind, surreal scenery "} +{"id": "2002369", "video_name": "a2016112-cb44-53d4-80a3-8b3deb536698", "text": "cyborg walking in the middle of the street "} +{"id": "2002370", "video_name": "af1b6750-4152-5baf-b064-c0bba4c65f2e", "text": "electrical circuit, with combined lines representing electric current in motion,ultra realistic, higly detail, 8k "} +{"id": "2002371", "video_name": "91075a23-6942-5c3c-9a7c-3c8ddc751a19", "text": "cat in a coffee cup rocket going to space Message: 1 Attachment "} +{"id": "2002372", "video_name": "07233d29-1c15-5c81-b94a-82309dc9cb37", "text": "(Slow motion as Wonder Woman charges. Her movements are graceful yet powerful. On her arm, her gold bracelet glows as she uses it to deflect an alien laser beam at one of the invaders. Her blue eyes flash with determination as she defeats aliens with a series of expert punches and kicks). "} +{"id": "2002373", "video_name": "8eea6407-0e51-599a-aac7-8558969add0e", "text": "illness condition of by in background a room "} +{"id": "2002374", "video_name": "e854af9e-a61a-56bb-b9d8-cd9385150882", "text": "The police had been unable or unwilling to bring the culprits to justice. "} +{"id": "2002375", "video_name": "f6a0dc5c-ebdc-5a63-9fb7-38eab0cc38c1", "text": "cowboy riding horse on beach at the time of sunset while sky is moving with zoom in effect "} +{"id": "2002376", "video_name": "c000f5cc-0d85-5937-996a-7185aacaf12b", "text": "Worms eye view of ants running around food on a kitchen table, macro "} +{"id": "2002377", "video_name": "f066dfca-bd81-5b88-8c01-06371e0e3427", "text": "a loop of a sunflower in the middle of a storm "} +{"id": "2002378", "video_name": "b7074d77-4fa4-57ed-91b9-bb4044c7a610", "text": "A lonely little boy in the war "} +{"id": "2002379", "video_name": "1510c4e3-3907-51ba-900f-668783be9f04", "text": "Luffy from one piece versus kaido Using a new move "} +{"id": "2002380", "video_name": "7b8a7521-aa66-56ae-abcc-94c23a90e966", "text": "A sad man slowly walking down a New York street covered in red rain for 5 seconds 16:9 4k "} +{"id": "2002381", "video_name": "dfdc20d2-fea8-5358-8b1e-74ae548082f1", "text": "3d style unreal engine. a bald man going of a subway, going up some stairs. walking for a while. entering an office building. sitting down infront a laptop with external monitors. starts working with SEO. we see a graph go up and the man smiling. "} +{"id": "2002382", "video_name": "d742ba92-6262-5d93-ab3f-99f72352f901", "text": "A hand holding a digital camera "} +{"id": "2002383", "video_name": "7d01e349-4590-5160-ac45-61645cfbe4fd", "text": "Dwayne Johnson eating mud at a picnic table "} +{"id": "2002384", "video_name": "42ad5eb3-3bdc-56ab-9a69-315d3ea42c18", "text": "girl is holding cellphone and trying to make payment using banking application, cinematic "} +{"id": "2002385", "video_name": "38dc50cc-86b8-55d6-9764-276b1f18e202", "text": "hot fashion model giantess and Godzilla "} +{"id": "2002386", "video_name": "f611e1de-123e-5e10-a86a-4e744752e515", "text": "street lights passing by, black and white, film noir style "} +{"id": "2002387", "video_name": "f2cd768b-ccfe-5a9c-a0df-98badd70fa95", "text": "tyler the creator igor cartoon character "} +{"id": "2002388", "video_name": "d3fabe5b-511c-5d1b-b0f2-26a451f578b4", "text": "cyberpunk, realistic, no fog, super powers "} +{"id": "2002389", "video_name": "5289c20e-a921-553f-ab28-286627afbd60", "text": "lily Munster as a holy saint "} +{"id": "2002390", "video_name": "45d022fd-704e-5801-a758-ad146aed3d49", "text": "An abandoned wooden cabin, its windows dark. The wind whistles ominously through the broken door. "} +{"id": "2002391", "video_name": "f4cac1c3-2802-5201-9214-c21746e4ed00", "text": "a young man in shorts motionless in the center of the deep ocean "} +{"id": "2002392", "video_name": "2fd5c93a-654f-5cfc-9ec3-67054b397c60", "text": "a man wearing a robe walking in the dark forest "} +{"id": "2002393", "video_name": "91888142-c68f-5118-8970-d6e903829125", "text": "young boy is laughing at village People "} +{"id": "2002394", "video_name": "703fa826-7c58-5170-970c-ff5e754f5523", "text": "Imagine prompt coloring book page for kids, dog "} +{"id": "2002395", "video_name": "fbcdfaa9-772c-5057-b443-194901ae59e0", "text": "Person walked in a landscape with a sunset and that the person is touching the leaves of the long grass looking towards the orizonte "} +{"id": "2002396", "video_name": "c1fea5ac-9482-502c-982d-4edb5b551f06", "text": "my house has spiders Message: 1 Attachment "} +{"id": "2002397", "video_name": "11d35030-b55f-5643-8ab2-8326f5639ddc", "text": "Alvin Ailey dancers leaping across the stage towards the gates of creation "} +{"id": "2002398", "video_name": "dc0b2faa-5c76-558a-b5a7-3f37bbb5d18e", "text": "A moving, speaking, stone statue of an ancient Greek sculpture, with the Colosseum in the background, and tens of millions of people cheering. "} +{"id": "2002399", "video_name": "90839672-22a8-505b-ba1e-798c5284917e", "text": "As they approached the climax of their journey, the malevolent energy of the mansion intensified. The vengeful spirits lashed out, manifesting themselves with unprecedented fury. "} +{"id": "2002400", "video_name": "b136436c-58a9-5d5f-b8be-bd29b133b4eb", "text": "Taylor swift fighting with Miley cyrus "} +{"id": "2002401", "video_name": "342a707d-6805-5350-96ce-d29b66685f07", "text": "Opening scene with Lumina Cityscape, ordinary citizens discovering newfound powers "} +{"id": "2002402", "video_name": "2af818cc-fc79-525f-9529-00928c32e5ff", "text": "long video of group of students at university play football afetr basketball without ball "} +{"id": "2002403", "video_name": "76aa4397-b5ee-5e23-a1bc-9a5d6ce02e97", "text": "encrypted message 123abc Message: 1 Attachment "} +{"id": "2002404", "video_name": "1ef5be2b-6377-54e9-abd5-9e9b72866c15", "text": "A society where people dress in white, go barefoot, and seek to empathize with nature. "} +{"id": "2002405", "video_name": "302de350-69d0-504c-a6c6-4e39dadfffa7", "text": "a foggy forest with a huge parrot crosses the screen "} +{"id": "2002406", "video_name": "1b193bfc-034c-5b14-9488-79da8bb16a7a", "text": "Rick and Morty find refuge in a dilapidated house as the zombies close in. "} +{"id": "2002407", "video_name": "6d566ae1-4470-52b0-a740-5c3dd059de65", "text": "Morning sun raises in a garder 2D animation "} +{"id": "2002408", "video_name": "669bb9a7-cd9a-5a01-bc17-ce33fba9cd69", "text": "boy walking in a street surrounded by tress, birds flying in the sky "} +{"id": "2002409", "video_name": "890a36ab-8b26-5ea8-aad2-76634c22cfa0", "text": "a poor boy with worn out cloths ,realistic "} +{"id": "2002410", "video_name": "cd2a42df-e276-5941-8906-cc5918a5bf2f", "text": "Pour red wine into the glass "} +{"id": "2002411", "video_name": "eb30272e-35af-548e-ad6d-057e1a27a779", "text": "soccer player receiving the ball from reference after score three times in match "} +{"id": "2002412", "video_name": "51b6f9f8-f903-5d13-a66d-a4364eebde6b", "text": "video of female deer nursing her child "} +{"id": "2002413", "video_name": "b1c5f4c3-c060-5316-a6eb-dd5337e508d1", "text": "a video of a doctor schowing a small object "} +{"id": "2002414", "video_name": "e4e507d6-8d03-513b-ad5b-19d0e393ad25", "text": "Everybody in the world is dancing "} +{"id": "2002415", "video_name": "337db450-a0bb-592a-997b-c4c8d233054e", "text": "combination of robert oppenheimer and the main character of a polish sitcom, Ferdynand Kiepski "} +{"id": "2002416", "video_name": "3bb3f8b0-8e26-55b9-b0cc-1e81ff0f9e7f", "text": "describe destruction in afghanistan , by soviet union , "} +{"id": "2002417", "video_name": "bdc977cf-e3ca-5f80-ac4f-3737da28ad23", "text": "coldest planet on the solar system "} +{"id": "2002418", "video_name": "1544ac6d-32a1-5203-980b-794d7da03cf8", "text": "Surfer girl in a crystal ball "} +{"id": "2002419", "video_name": "b4f63ee1-fa14-59e8-b771-95ff79f9f78b", "text": "make 10 second video of a man surrounded and chained to ticking clocks. He is a prisoner. The mood is unsettling and dark. "} +{"id": "2002420", "video_name": "43f8d98c-7946-5814-ae12-099558486676", "text": "2D animation of the tortoise and hare race in the first scene, the hare mocks the tortoise "} +{"id": "2002421", "video_name": "d53fce4e-5b16-5608-9ecf-a7d4cea5a005", "text": "silver ball bouncing with the reflection of a tree "} +{"id": "2002422", "video_name": "cc1dbc93-34ba-5006-8ef1-29523464af56", "text": "zoom out a surrealistic living room "} +{"id": "2002423", "video_name": "d39d4330-6831-53c3-a241-fcd1a29b99c5", "text": "So people went to him to pray that the dam might not break. "} +{"id": "2002424", "video_name": "59e09a16-f5cb-5d4e-b4d9-b716c6424bf3", "text": "In the night, a trendy girl in the urban flow "} +{"id": "2002425", "video_name": "46684af8-c76e-5cb0-84bb-b9868637f8f0", "text": "Create a 3D image of a family of elephants, including a baby elephant, surrounded by lush jungle vegetation, 8K, realistic, colorful vibrant. "} +{"id": "2002426", "video_name": "1bf17491-27bf-512f-b22f-a188aa1c95c8", "text": "cat woman black panther in golden crown, jungles and golden lights around "} +{"id": "2002427", "video_name": "f9e92e25-8927-51dc-ac2f-e54f72ed2acf", "text": "pigeon flying with a leaf in its beak IN 8K MOTION WITH 16:9 "} +{"id": "2002428", "video_name": "ca20b48b-2f30-5918-99fa-346872a9e825", "text": "cute Micky mouse sleeping in rainbow sugar clouds disney 24k "} +{"id": "2002429", "video_name": "9cf4e17a-2954-5457-b3fe-7a8c83a8ff1c", "text": "Funk band playing music with Bruno Mars "} +{"id": "2002430", "video_name": "4c061b87-a06b-5a58-af25-b57bf02aa26b", "text": "Comment sentiment analysis results on TikTok "} +{"id": "2002431", "video_name": "0c6efecd-db83-527f-924f-91899c67297e", "text": "little kid riding a Ducati Panigale with some his friends "} +{"id": "2002432", "video_name": "deeda28b-3949-54d3-a7f0-af84b78014c9", "text": "beautilful girl dancing on a destroyed city. "} +{"id": "2002433", "video_name": "40736c8b-ffa5-55fd-afc8-462148ebc0cb", "text": "Simone Biles dancing with Serena Williams, on the giant piano, raining, hd, realistic "} +{"id": "2002434", "video_name": "7a8d0548-0c7d-58dc-8498-d0c11125eba3", "text": "a pirate resembling Blackbeard, and observing an ancient map of the world "} +{"id": "2002435", "video_name": "9a96b2b9-c498-51c7-a293-5ef487186f84", "text": "2 men were talking to each other, suddenly one became frustrated and went away "} +{"id": "2002436", "video_name": "d7d47887-ac39-5f14-a66f-7fce18177aac", "text": "a high resolution dramatic video of a granny smith apple. The apple is green. The apple is laying on a single piece of paper towel. shot in tilt shift. "} +{"id": "2002437", "video_name": "6e460c2c-d61d-58bc-a34b-6fae8cd9a309", "text": "A young man sits in front of the computer and programs lines of code Message: hackit (Font: MODERN) "} +{"id": "2002438", "video_name": "c7a6b17b-ba10-5616-8a6d-91b69fb58ff7", "text": "yellow sun has been face painted on a man with large head 1970s art house film hippie "} +{"id": "2002439", "video_name": "4a46906c-7993-5a7c-9ed0-ddb1a26432fc", "text": "Representation of the Day of the Dead making an invitation "} +{"id": "2002440", "video_name": "07f50e83-9ce5-5f5e-b181-304a7178e4cf", "text": "elephants attacking and running to a city "} +{"id": "2002441", "video_name": "482733e0-0cb4-5077-8e47-2d8228f0b6f7", "text": "dbd game, escaping from the killer "} +{"id": "2002442", "video_name": "d041d9b5-6319-59b5-b439-072302ec1faa", "text": "of a bird sitting on a tree branch,realstic 4k ,width 1080 , heigth 1920 "} +{"id": "2002443", "video_name": "25882279-8078-52db-b5ff-ac01aa2d095c", "text": "A young Albert Einstein playing with magnets or looking curious. "} +{"id": "2002444", "video_name": "27f44d3c-1a71-5994-a6e9-5c385508424d", "text": "a princess in a bottle waing to the crowd "} +{"id": "2002445", "video_name": "12d1857d-520f-571f-9027-78e92becf640", "text": "bright, modern studio with trendy furniture and vibrant lights. A young, charismatic YOUTUBER named LEX sits at a sleek desk, facing the camera with a mischievous grin. LEX (Clapping his hands) "} +{"id": "2002446", "video_name": "a7ec0143-55e6-5f0f-bafb-8a2ee6ccab49", "text": "raining gold coins Message: TIPCOIN (Font: MODERN) "} +{"id": "2002447", "video_name": "bd821c30-027a-5f66-ac95-4d0712febba5", "text": "Every aspect of Lady Palutena, from pores to attire intricacies, is immortalized in fine detail. "} +{"id": "2002448", "video_name": "161ed4bb-5343-55a2-abc1-6bc1138fdb7d", "text": "Russian soil unusual pattern, arthouse, surreal absurdist dream, everything blurred and smeared, long exposure, close up, soft glow, dark, old polaroid bw photo image "} +{"id": "2002449", "video_name": "7a816d13-e5e6-5f14-8efa-b0c601ae87b2", "text": "cat turning the steering wheel in a sports car going fast "} +{"id": "2002450", "video_name": "275bc011-b1f9-5da7-8f1c-1ea43c7e2171", "text": "Beautiful girl walking in the snow "} +{"id": "2002451", "video_name": "6f6d4aca-436a-5df2-ba41-2f9328f0a2ae", "text": "The sun shines in the blue sky, a couple illuminating their faces as they look at each other with love and complicity. The passion between them is palpable as they share a lively conversation. "} +{"id": "2002452", "video_name": "21e2d52f-2c8d-54bb-89e9-909b2e85cf7e", "text": "growing magic Mushroom 4K 5 seconds clip "} +{"id": "2002453", "video_name": "21f181f8-e9fd-5921-be3e-d1032844089f", "text": "The girl speaks and moves her hands Message: 1 Attachment "} +{"id": "2002454", "video_name": "34091d12-c9cc-5178-a1dc-6d4034216115", "text": "3d cartoon, Pixar style, hand reaching into coat pocket "} +{"id": "2002455", "video_name": "ea2cec27-1707-52a1-a69b-b483dd474db8", "text": "someone who is poor and out of money "} +{"id": "2002456", "video_name": "f7abeaa3-0f28-5c7d-9d40-fd07861f2718", "text": "bitcoin a pair of chopsticks and camellia "} +{"id": "2002457", "video_name": "4a115947-71df-5104-a017-ddf841684094", "text": "spaceman drowning in the middle of the ocean at night "} +{"id": "2002458", "video_name": "6f63d6a3-4e51-57e0-b8d4-ca9922921cad", "text": "show me what the graphics for FIFA 2050 could look like "} +{"id": "2002459", "video_name": "3e5f7b21-205e-5f0c-99d9-af893cf5d432", "text": "Like the scenery flowing in a lump, the sight of a dreamy whale floating in the sky and swimming in the sky is reflected by a cool white cloud, giving it a more fantastic feeling. "} +{"id": "2002460", "video_name": "cabd29fd-fa9e-5fe6-beea-0de42b878b82", "text": "1930s, a man walking upclose, in a hallway, empty lobby, at Late night 3:AM, night Ambience, Horror movie mood with frightening feel. ethereal, dreamlike, scary, liminal, low quality, doom, thriller, in the style of a black and white noir film, photogrammetry, adult theme, death, dark, creepy atmosphere "} +{"id": "2002461", "video_name": "a2ad13e9-f712-5fc9-aba2-909bcbd071d6", "text": "pink color raven flying near a castle "} +{"id": "2002462", "video_name": "c4509f4c-ea15-5a16-89a3-b753b5b9768c", "text": "a boy exam pass and teacher tall congratulations "} +{"id": "2002463", "video_name": "7e5c3bb0-9c1b-5adc-a992-eff9997ccf52", "text": "Energy produced from the collision of 2 galaxies with the colours of Portugal and Spain "} +{"id": "2002464", "video_name": "f1d803b8-6049-5485-9f26-9d71fcee5be6", "text": "giant living planet flesh sphere with a single eye and tentacles floats in space "} +{"id": "2002465", "video_name": "c6b0bce5-1a26-5940-96c7-62a6048f2a79", "text": "an old poor Armenian lady giving interview, TV, 1990s, VHS, handheld camera "} +{"id": "2002466", "video_name": "8d1f282d-5947-5fca-bf10-2d388090dc82", "text": "man getting high views and likes on his youtube video "} +{"id": "2002467", "video_name": "f7ab576b-5dca-5de0-8a41-7fdc1078888f", "text": "kpop girls are dancing passionately in the street "} +{"id": "2002468", "video_name": "6a42ddcf-aba7-5731-9c72-c80b52765e98", "text": "and the walls were lined with artwork from the previous school years. "} +{"id": "2002469", "video_name": "2df74b8c-b36c-5eff-9800-677ee6fa3c5b", "text": "Spiderman and the joker Playing fortnite in a cave with Harley Queen and poison ivy "} +{"id": "2002470", "video_name": "ba8a0494-7906-5bfd-a352-698ff6385c6d", "text": "3D Anime Style Chinese Cooking with Frying Pan, Octane Render Action Cinematic Movie Camera "} +{"id": "2002471", "video_name": "f1311851-9744-535e-a28e-6ba00e999a4f", "text": "A girl facing a big audience playing saxophone "} +{"id": "2002472", "video_name": "7614f9a4-cb76-5c1b-bdb9-d71f7cafd879", "text": "home recording music studio where speakers playing music "} +{"id": "2002473", "video_name": "58a4d743-caec-5aa3-ab24-149031f16f97", "text": "micro lens shot,bee collecting pollen over flower beds, hyer detailed "} +{"id": "2002474", "video_name": "a01f6b26-c909-5920-927c-97712862da87", "text": "envision a cartoon scene of the popular right wing frog known as Pepe or Apu messing with joe Biden, Joe Biden is sitting in a wheelchair, Apu Pepe is slapping Joe Biden, rotating camera 24fps motion of the slap, in the artistic style of HR Giger "} +{"id": "2002475", "video_name": "67a12dbb-12d6-50a6-a733-4070e9b65cec", "text": "TWO ANIME CHRACTERS HAND TOUCHES THEN IN NEXT FRAME AN CLOUD BURSTS AND IN NEXT FRAME TWO NEWLY BORN BABIES ARE CRYING THEN A HIGH SCHOOL BOY APPEARS IN NEXT SCENE AND IN FRONT OF HIM A HIGH SCHOOL GIRL "} +{"id": "2002476", "video_name": "9ee59e62-3e74-52b2-912c-aae2a6d3379b", "text": "A winding dirt road stretches through a dense forest of towering trees, their branches forming a natural canopy overhead. The ground is covered in lush grass, creating a serene and peaceful pathway through the heart of nature. "} +{"id": "2002477", "video_name": "9470759f-0531-5178-9907-af55fb1010dc", "text": "A Hyper Realistic small dark skinned cartoon character looking in his mirror hood wearing chain and wearing cartier glasses with diamond grills "} +{"id": "2002478", "video_name": "92419856-a9d9-5375-a99a-52526424da32", "text": "close up of a woman talking, smile, wise woman "} +{"id": "2002479", "video_name": "f2106d54-ea07-5497-bf23-888fd15fa773", "text": "surreal abstarct disturbing cartoon In an endless loop about a person cries ignored and rejected by the people passing "} +{"id": "2002480", "video_name": "1544051c-4dbc-58cb-99bf-b68cc8172fe7", "text": "one silver UFO hovering over the great pyramid,zoom out "} +{"id": "2002481", "video_name": "6e07a76c-b839-5b83-8686-08cd43fa0ec4", "text": "on a full moon day, moon slowly turning red "} +{"id": "2002482", "video_name": "a92237f1-20a0-5304-b417-33d5f369579b", "text": "People are dancing on a moving truck "} +{"id": "2002483", "video_name": "d5d75f1e-a4f5-5760-b625-ae9d493456de", "text": "anime, black background with a blue sun, silhouette of one character with a gun in a battle seen from the back "} +{"id": "2002484", "video_name": "5f1512fa-f7a6-5ade-b7bf-4c8e7065326a", "text": "an owl in a psychedelic hexagonal grid, generative design "} +{"id": "2002485", "video_name": "97661c16-9939-5c3f-94c1-b8440f7e747c", "text": "a Japanese man, looks like a paper from old gazette style, photocopied texture, grainy, old news style "} +{"id": "2002486", "video_name": "bedf751a-568a-5fc2-b143-7ea1f4167554", "text": "John Wick shoots a pistol while dancing in Times Square Park, move, 16:9, cinematic motion movie "} +{"id": "2002487", "video_name": "817c9097-09d6-539e-9861-e9ee13add284", "text": "create a 3d image with mural waterfall trees, 8k "} +{"id": "2002488", "video_name": "f7551cae-3088-5a49-8e1a-40511f7fad53", "text": "lamborghini huracan drifting with a beautiful girl inside "} +{"id": "2002489", "video_name": "6e00a50a-9f6c-5fbe-9a48-854a70515fbb", "text": "sketch of a teapot in Japanese style, drawn in pencil, white background, black outline, logo, 2D "} +{"id": "2002490", "video_name": "91ac6b6c-3feb-5ece-8e93-31684a6fe9c6", "text": "cowboy riding a bear wild west theme, cinematic film, action "} +{"id": "2002491", "video_name": "e17b5594-4a8e-5429-9682-7e4283f2cf86", "text": "a human face seen from close up transforming into a moving neon multicolored liquid "} +{"id": "2002492", "video_name": "05e4582f-97aa-53c4-a63b-ad4c28aaef37", "text": "group of bikers, shonen jump anime style, cyberware, in a bar, high detail "} +{"id": "2002493", "video_name": "5228353c-e4a2-5723-a55e-ffc9996c01fa", "text": "hot dogs dancing in the wind "} +{"id": "2002494", "video_name": "ac7ee6d8-bfa2-5459-9581-d7d03b45793e", "text": "8 Years old girl, curly hair, colorful and a simple sandal. Anime style "} +{"id": "2002495", "video_name": "63f692c5-d494-510f-aba1-d3cbf71a611a", "text": "trees filled with delicious fruits, 3d cartoon "} +{"id": "2002496", "video_name": "8a034488-6d66-572e-9443-fb4445ffc9d2", "text": "wild life animal and birds seen "} +{"id": "2002497", "video_name": "277acc56-49eb-5772-9cb7-cf7b92fde186", "text": "strong man in a space suit. in a 3D animation "} +{"id": "2002498", "video_name": "64d69e35-7903-54d8-8444-913b9d46a80a", "text": "mysterious boundaries of ocean and land on the planet earth which a ship of an adventurer float over "} +{"id": "2002499", "video_name": "62ae0b06-747e-5a49-98e2-111f7fc3e32b", "text": "Medieval astronomers charting the heavens. realistic images. cinematic movement "} +{"id": "2002500", "video_name": "d235a4fe-80a0-5322-80a8-a91b7c3623d5", "text": "The menacing crocodile lurking beneath the surface of Bloody Lake. "} +{"id": "2002501", "video_name": "82fe34d4-adfa-5daf-9327-400481b9b48a", "text": "robots serve people drinks on a beach "} +{"id": "2002502", "video_name": "95c6f6a0-4c0e-5a7e-b0d7-df14882e5268", "text": "a horse in the space with stars "} +{"id": "2002503", "video_name": "6702c0ce-e9a1-5d68-ae65-5af3e4753b94", "text": "Generate a video of a vibrant cyber jungle with a koala named Codey sitting on a tree branch, surrounded by tech gadgets and vines displaying binary code. "} +{"id": "2002504", "video_name": "80a60830-f47b-574f-b33c-9b63499b8271", "text": "The reaction of a woman screaming "} +{"id": "2002505", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "But danger lion lurked, an imminent threat, "} +{"id": "2002506", "video_name": "4843d040-bfc1-58da-84a8-b821d0be73bd", "text": "black armor clad Androids chasing after a group of rebels, in a crowded city Street night time, neon lights, reflections, off of wet streets and laser blast firing at the rebels, high definition, which detail "} +{"id": "2002507", "video_name": "99bd6a35-6225-5ea4-b640-40910107b18e", "text": "In a world on the brink of the abyss, in the year 2023, a brave young woman rises to face an uncertain destiny. "} +{"id": "2002508", "video_name": "0a2622fd-a5e6-5fc5-84bb-b1d6bb009443", "text": "animate fog, light and lightning, persons not moving "} +{"id": "2002509", "video_name": "78a2f113-f1ff-519b-af8c-87e607a33464", "text": "a dimly lit bedroom with basic furniture. it looks shabby "} +{"id": "2002510", "video_name": "7bd4e63b-7f41-5d79-8a30-1ee52660b9ee", "text": "iron man walks into a bar and meets tin man "} +{"id": "2002511", "video_name": "da60a622-90a7-5994-a1ff-1f363dfc2e33", "text": "the Mexican woman, in a field of sunflowers, in the style of Frida, in the style of Monet "} +{"id": "2002512", "video_name": "ffb06727-c6bd-5414-822b-cf02d59a18d5", "text": "Byzantine, Old Orthodox, Icon Of The Creation, Eastern Roman Empire "} +{"id": "2002513", "video_name": "65b7df4c-e3be-54ef-9fc9-f2821a9cfc5f", "text": "Ottoman Sultan Yavuz Selim rides a horse fastly "} +{"id": "2002514", "video_name": "4a05a691-99ef-5705-944f-2efdb3b17d9e", "text": "man typing smoothly on keyboard. twinkling lights. looking at camera with slight movement. "} +{"id": "2002515", "video_name": "7f99cc1e-e9d0-5844-81d7-0b66d212aa05", "text": "the king of darkness sitting on his throne "} +{"id": "2002516", "video_name": "53d1c548-7fcd-5938-93cd-178e9a63f676", "text": "auto chrome image cam corder footage of a long thin creature surreal arthouse weird laughing "} +{"id": "2002517", "video_name": "69151860-87f3-5130-9993-691122109e98", "text": "sea view from a super high tower "} +{"id": "2002518", "video_name": "3b4e0118-5859-531f-ac8e-6350d455867d", "text": "greenhouse and green plants that are visible from the outside and getting closer and closer, realistic "} +{"id": "2002519", "video_name": "099566bb-36c9-5f9c-9d38-ddfac620a077", "text": "a teddy bear is telling a story by holding a book in his hands,there is a microphone in front of him,the video is a front view,the bear is like a streamer. "} +{"id": "2002520", "video_name": "dc3a66bb-184b-59fa-ac17-40fd1884bc7c", "text": "plant blows in the wind and fire glows "} +{"id": "2002521", "video_name": "b0dae64d-9476-5d4b-8721-4d4b0d45af22", "text": "a panda eating bamboo on a mountain cliff made with rocks with an ocean view with sunsetting above mountains with grass and colorful flowers and butterflies "} +{"id": "2002522", "video_name": "2ab6127b-0c69-57fa-89fc-be4fe44eebc1", "text": "Everybody are painting, shining like silver, with a luminous lustre "} +{"id": "2002523", "video_name": "134546db-60ce-55a9-b5f2-4a1d6f071714", "text": "novak djokovic wildly celebrating a match point "} +{"id": "2002524", "video_name": "11218c01-a3a1-5ded-836e-36bebc3ef7d4", "text": "promote night lamp in front of camera "} +{"id": "2002525", "video_name": "5947efee-2b16-5223-b87f-27bc5e9783e6", "text": "The dynamic moment of two civet cats wearing traditional Ewenki costumes riding reindeer, with focused and firm eyes. This is a traditional national reindeer racing competition. The background is the autumn and winter season of Daxinganling Mountains. The painting style is very delicate and vivid and lifelike. "} +{"id": "2002526", "video_name": "7d2c0aba-0aad-5eb6-86b6-2bc1da759aeb", "text": "A cheerful AI man character wearing a hoodie, gesturing excitedly while talking. "} +{"id": "2002527", "video_name": "bb8dbf4b-d322-5c18-80b7-c1950bfa6d3d", "text": "Blood dripping from the eyes of Edgar Allen Poe in a 1940s black and white film style. "} +{"id": "2002528", "video_name": "aa27ecf4-52ff-5b8a-9969-f9a0f1035647", "text": "A powerful medieval warrior in front of the crowd "} +{"id": "2002529", "video_name": "2c5b3653-778c-526e-a3dd-fb3e16f67b12", "text": "create a beautiful image with lots of flowers, and a stream of water in the background "} +{"id": "2002530", "video_name": "7dd05fe9-d706-550c-8ec8-30c990076e55", "text": "Pixar style 3d character is blowing up a red balloon "} +{"id": "2002531", "video_name": "4267e8a9-0071-5281-abbc-62552ba3a7e7", "text": "a fantasy Raphael Lacoste album cover of a closeup of a ship crashing in the stormy ocean , intricate composition, red by brooke shaden, highly detailed, highly detailed, masterpiece, artstation"} +{"id": "2002532", "video_name": "b40d14d6-db0c-54fa-a973-3f52b4105b13", "text": "A Guy who shoots web out if his hand Hair Moving because of the wind "} +{"id": "2002533", "video_name": "f5a1da8e-453f-5fd8-9b35-55318cf2c96a", "text": "As his voice quivered, the forest itself seemed to respond. Suddenly, a soft, ethereal glow illuminated the wildflowers in his hand, casting a gentle radiance upon the entire clearing. "} +{"id": "2002534", "video_name": "2b9cc2d2-8b11-54de-8e62-e057f2c634a8", "text": "an hyperrealistic image of ronaldo from the ucl final 2017 "} +{"id": "2002535", "video_name": "36216f14-e7fb-56e8-bf2d-7c4799282df3", "text": "zombies lurching, fire burning, smoke rising, horror "} +{"id": "2002536", "video_name": "eba0da21-99c7-5036-9e48-0c16b052dc3a", "text": "3 red ball rolling white background ball zoom in out curvin blue color bottom of ball "} +{"id": "2002537", "video_name": "9b4b016e-d623-50d0-be34-7638a6fdd55f", "text": "pixar style 3d animation character giving presentation in office conference room. 3d animation. award winner. pixar. "} +{"id": "2002538", "video_name": "a4151fdd-abb5-5823-b7b7-7e971e99466d", "text": "Zinbad walking through mid evil dungeon "} +{"id": "2002539", "video_name": "9c0a2c37-913e-5ac0-ad9c-6e10c0b51928", "text": "Stevie wonder playing the piano on a western bar, cinematic, super detailed "} +{"id": "2002540", "video_name": "e9fffc69-29e5-567f-8efe-8f6da3c6ce70", "text": "30 seconds video of sardinian girls having party "} +{"id": "2002541", "video_name": "fbd6aaa7-f861-5071-9ccf-9637da9318e8", "text": "A camera that lies on a black table in a black and white photo studio "} +{"id": "2002542", "video_name": "dec8243d-cfd2-553a-8352-4782465b4d19", "text": "hoodie waving, camera moving around it "} +{"id": "2002543", "video_name": "88a59895-1492-5f81-9447-f38dc0b0dc53", "text": "a stunning image of the interior of a living room "} +{"id": "2002544", "video_name": "83ce09ed-2883-5fd2-83d6-4c6dd8dd3e9e", "text": "epic battle of thousands of girls in the desert "} +{"id": "2002545", "video_name": "d80ac60d-cbc1-516c-80db-4cc7f0da4ef9", "text": "girl, dancing in the music, gento song "} +{"id": "2002546", "video_name": "c5dfff30-f521-5903-8e2a-638e268e3784", "text": "Small and slow loop movements of the participating people on the roundtable while the white stripes in the background constantly move up. The rest stays as is. "} +{"id": "2002547", "video_name": "00df3875-dc78-5c91-a6a8-945f220e426b", "text": "A Gryphon and a Dragon fighting in the spring season with a little snowfall "} +{"id": "2002548", "video_name": "70b6259d-9672-58cd-aaad-98965778c1da", "text": "A robot typing on a computer working inside a factory where more robots are created "} +{"id": "2002549", "video_name": "b466afc9-8591-58bc-87d4-49ac92597c36", "text": "hands praying, glowing background, moving apart, follow electric between, cinematic, motion 4, 32fps, dark, surreal "} +{"id": "2002550", "video_name": "90f5dea7-1831-5ef8-9f2e-e15978a8c81f", "text": "timelapse video about sunrise over new york city "} +{"id": "2002551", "video_name": "662c2b2c-49e3-51d7-8b8e-15108379eacb", "text": "arnold Schawrzenneger in movie predator in a jungle "} +{"id": "2002552", "video_name": "00aa787d-56e6-5b51-aeb8-0a91d06090a3", "text": "stars fluttering on a vhs camera "} +{"id": "2002553", "video_name": "a2926f73-e35e-51e7-9014-05826eb46efd", "text": "realistic timelaps video of a bottle design in a factory changing of 100 years "} +{"id": "2002554", "video_name": "87185583-a353-580c-853d-60b12325755b", "text": "The rapid evolution of the modern world, with booming cities and striking statistics on urbanization and population growth "} +{"id": "2002555", "video_name": "b1ad0f02-2e46-5c19-baa6-b7fa48bb02b9", "text": "A man turns into a werewolf anime scene "} +{"id": "2002556", "video_name": "e77c5686-7e41-5e7c-adb1-ea8b77a1b201", "text": "A young man is training very hard in bodybuilding "} +{"id": "2002557", "video_name": "3a7ba4d6-7774-5e97-b127-e05259ca6024", "text": "a realistic image of a boy serving food to a humanoid robot "} +{"id": "2002558", "video_name": "f0808c65-2da4-5da1-a27e-123686a55f59", "text": "Help me generate a creative, funny and interesting video starring 4 people "} +{"id": "2002559", "video_name": "9e9982be-25d4-5cdc-97e2-9b7369cecb14", "text": "blooming a flower. slow screen out "} +{"id": "2002560", "video_name": "a0835034-934b-5878-99e7-fc994a2616c7", "text": "A picture of a car parked on a parking lot facing the front, make the car white and make it have a spoiler "} +{"id": "2002561", "video_name": "f1eeceed-e905-585b-b773-ab0471b61f4d", "text": "The Qutb Minar, with its towering presence in Delhi, and its construction details. "} +{"id": "2002562", "video_name": "a79b9abe-e127-5d94-8f02-f2389cc811f9", "text": "colorful street fading in and out slowly and couple watching it from terrace "} +{"id": "2002563", "video_name": "e9009de1-76cd-5d96-b81a-bab4feb2c88b", "text": "disaster sea, buildings, hd, scary, water, smoke 15min trailor. 6:9 ratio "} +{"id": "2002564", "video_name": "4648f960-149d-541d-b765-d7eeada710b0", "text": "Eyes gaze into the distance. Speak with your mouth. "} +{"id": "2002565", "video_name": "74115512-a3aa-5bea-9beb-f72e331cb9ac", "text": "with a many presents Message: 1 Attachment "} +{"id": "2002566", "video_name": "977ad529-eeaf-5968-8b3e-1daa8822f484", "text": "soviet people dancing holding hands 1930s photography style "} +{"id": "2002567", "video_name": "3ab36913-63ee-5a2d-9ff4-e2e674a18daa", "text": "a woman in a red dress walking up a grassy hill "} +{"id": "2002568", "video_name": "c10e3fd3-8762-5274-bb6d-c45b3acc4f1b", "text": "the cartoon style, two chinese friends dance together "} +{"id": "2002569", "video_name": "9a9c48d1-b596-5221-a68f-a8f7f48a9833", "text": "a girl run on the mood "} +{"id": "2002570", "video_name": "24f2cf48-5c01-55fd-8f29-33859493a629", "text": "a child tranform to a beautiful blond woman "} +{"id": "2002571", "video_name": "805ae1cb-6b3a-56e4-a311-8fe3bd2ccade", "text": "beautiful burning candle , clear sharp image , low light , purple tones "} +{"id": "2002572", "video_name": "a0bd4a2e-c42f-514c-8bad-678d9f3f6dd5", "text": "Depition of hell. 1980 era movie film. Impresionalism, Hd, 24 fps "} +{"id": "2002573", "video_name": "600dd927-1f18-5991-8fbf-54944d574cfc", "text": "colorful melting art hyper detail award winning "} +{"id": "2002574", "video_name": "af2ff34f-c3d3-5d9e-8e1b-9680e55e4be5", "text": "The flag of Iran during the era of Mohammad Reza Shah Pahlavi next to the flag of IsraelIsrael "} +{"id": "2002575", "video_name": "a0431988-8cff-5444-aced-eb0452e1d5cb", "text": "2 pac shakur sitting in a cloud slow motion "} +{"id": "2002576", "video_name": "36fc6b9f-bedf-5745-bf58-99b8f56d4116", "text": "two friends watching each other, symbols the passing of wisdom, represent truth and ethical values. "} +{"id": "2002577", "video_name": "78e9f07e-6faa-5933-92fa-6a89aaead454", "text": "approached the haunted old piano that suddenly came to life, its keys playing a haunting melody without anyone touching them "} +{"id": "2002578", "video_name": "e4a63f92-b390-560c-9b50-4d58585c530f", "text": "Vegeta pointing to the screen, anime style "} +{"id": "2002579", "video_name": "8c267e69-137a-5d61-a123-e70feaef1982", "text": "two women posing for a picture in front of a fence and a fenced area with a gate in the background in the style of still from a retrofuturistic film, Lofi steampunk, cinematic focus, realistic, highly detailed, masterpiece "} +{"id": "2002580", "video_name": "7814e69b-65ec-578b-baea-d7c6559a14de", "text": "shot of a designer looking with a surprised face at some plans she ha "} +{"id": "2002581", "video_name": "cd7a8b13-a350-5fa5-844d-8dbf8aef068d", "text": "The Birla Temple in Jaipur, also known as the Lakshmi Narayan Temple, is a significant religious and architectural landmark in the city. It is closely related to the history of Jaipur and the industrialist Birla family. "} +{"id": "2002582", "video_name": "ed71a596-ea0d-532d-be24-70252210c034", "text": "girl with bikini\nruns in a beach while the cloths getting loose "} +{"id": "2002583", "video_name": "dfaba2cc-cf8e-518d-a31c-1f4827f07343", "text": "I need a video of a crane lifting an 18 meter load off a trailer positioned perpendicular to the crane. In the scenario, the crane is on a street with the sea on its left, this street is on a port pier and the right has a steel roof, on the side of the truck there is a yellow grille. the trailer is facing the sea "} +{"id": "2002584", "video_name": "7ae8901d-98bc-5c0b-8a9f-8d0a84ca8b9d", "text": "a person carrying a moving box with open lid "} +{"id": "2002585", "video_name": "79dd229d-df30-5193-b8ff-1e123160c001", "text": "A glowing red portal to another dimension, lens flare, cinematic, 4k, ultra hd "} +{"id": "2002586", "video_name": "fd4099ab-cede-557a-8fbb-c763a6729d0a", "text": "a fleet of spaceship invading earth "} +{"id": "2002587", "video_name": "836d901d-1ecc-5f3e-805e-8ea355fa455c", "text": "educational video for children about ADHD and symptoms of ADHD "} +{"id": "2002588", "video_name": "3a09c525-5938-555a-9e8f-67a08f1ef762", "text": "happy family opening presents in 1980 "} +{"id": "2002589", "video_name": "2e0d7d32-16fa-5796-afa6-5413f64a81e6", "text": "portrait of an urban hip hop guy "} +{"id": "2002590", "video_name": "d98cb3a9-696c-5006-8aae-4895571600f8", "text": "The three characters walking toward the camera, silhouetted against the horizon at sunset. "} +{"id": "2002591", "video_name": "78a6ae3e-426a-576f-a347-9e0b24d6638b", "text": "Create a scene where Mark Zuckerberg, as a teacher, delivers a motivational monologue to an empty classroom. Message: 1 Attachment "} +{"id": "2002592", "video_name": "ce7c64f9-1a1b-531d-97fb-5ca40254174b", "text": "generate a video of the word of spice is made of red chili peppers and green background with the word in the middle "} +{"id": "2002593", "video_name": "f4af3abb-8af1-5cb6-82b5-dc72cbf8e21e", "text": "Point of view from a dark futuristic apartment located up in the hillside of a mountain that has large glass windows giving an amazing panoramic view of an illuminated city further down in the valley. It is night time and raining heavily. "} +{"id": "2002594", "video_name": "d450e395-dc90-5111-86e3-833441ee4753", "text": "the berries slowly change their location in the water flow Message: 1 Attachment "} +{"id": "2002595", "video_name": "25e2f53b-b2b3-5dd2-a63f-209c62207208", "text": "someone looking at the time on his watch on his arm in the first person "} +{"id": "2002596", "video_name": "bcfaffa2-ebcc-516d-959e-d5a8ece0ac6d", "text": "a music band with a maestro on a stage change human to pizza "} +{"id": "2002597", "video_name": "2a2dfc3b-73ff-52c6-83d5-3ab9725d3309", "text": "windy blowing trees of beautiful forest under the moon "} +{"id": "2002598", "video_name": "ec7bf65e-5764-544a-aa11-660c199c4abe", "text": "Show a benevolent two farmers or masters kindly receiving a bag of wool from the sheep, set in a rustic barn or farmyard "} +{"id": "2002599", "video_name": "878473e6-bba5-52f6-af94-9b973cc06ae9", "text": "a smooth glitch motion graphic visual, spin right, unreal 5, "} +{"id": "2002600", "video_name": "b89b3bfe-768d-55f9-8e4e-ac8c19fbc855", "text": "realistic image Bible opening. it should be a thick Book from which light is emitted "} +{"id": "2002601", "video_name": "e57668e1-a928-5703-8871-856630f647e2", "text": "two men fighting and body very good face are very good and beautiful in fighting is 1 minute "} +{"id": "2002602", "video_name": "a0acaa5d-7424-5507-97a5-4db07cf99942", "text": "Facelees head spin behind yellow background "} +{"id": "2002603", "video_name": "d27a9682-381f-58e2-b809-bce01ed2e0c1", "text": "horror picture Message: Price (Font: MODERN) "} +{"id": "2002604", "video_name": "b504e4ec-b492-5573-8531-c7f1327b1756", "text": "haryy potter with doctor strange and thor Message: 1 Attachment "} +{"id": "2002605", "video_name": "025b1ba8-c236-554b-95d1-0584c91db014", "text": "drone footage over the hill tops with mist and fog in tadiandamol, Coorg for 10sec "} +{"id": "2002606", "video_name": "44906ae6-301d-59fe-824e-e23eef6a2c4b", "text": "the room of a wizard, miniature style, dungeon and dragon "} +{"id": "2002607", "video_name": "0eb3204f-c1be-5153-a061-db100eeb0bef", "text": "woman looking at the world and seeing colors in the air, hyper realism "} +{"id": "2002608", "video_name": "3b49094a-9bd7-5a1d-a809-b1fd8e34c926", "text": "A handsome young man was forsed to take off his shoes to tickle his feet, the young man laughs hardly. Video duration: 10 minutes "} +{"id": "2002609", "video_name": "bc29140c-ef27-53b4-82ea-0f9a3f3c40c8", "text": "bank of city photo.hyper realistic cinematic 4k "} +{"id": "2002610", "video_name": "f0e8e34a-303f-565d-b52b-ee206e83469f", "text": "While there are significant challenges ahead, there are also opportunities for positive change and innovation "} +{"id": "2002611", "video_name": "e1d97d1b-f88d-5a0f-bad3-50af5f9804fc", "text": "Superhero with mask and cape to save Indian home Buyers "} +{"id": "2002612", "video_name": "d441517d-4e76-5b18-92a1-6ddd0f8d46f6", "text": "a girl playing guitar for a group of dinosaurs "} +{"id": "2002613", "video_name": "d2f47641-16b3-576c-97c2-f91f8a9df3e6", "text": "1970s kids dressed as cold war generals marching in their living room and house "} +{"id": "2002614", "video_name": "1abc3243-569e-52e0-88ef-09d26f60ec89", "text": "the rain queries the sorrow of all things "} +{"id": "2002615", "video_name": "23d55482-804e-51cd-a51b-2dc73d31d4f2", "text": "a creepy backroom a road cinematic kodak film "} +{"id": "2002616", "video_name": "71314f67-1cef-5e1b-a0b1-2dc188344958", "text": "hey, katana with blue and black flames coming off of it floating in the air "} +{"id": "2002617", "video_name": "f0180731-b367-5872-a49a-6423c9e3f034", "text": "moove camera in room space Galaxy style 3d "} +{"id": "2002618", "video_name": "f13acd51-4563-5877-a73d-ef4dcff900bf", "text": "I\u2019m tryna release any stress I got in my head gonna repeat get used to me. Surreal 90\u2019s "} +{"id": "2002619", "video_name": "5a659200-8b63-5007-80d6-619c9ef7c412", "text": "Generate an image with a lot of movement that reflects the meaning of the phrase: Account number Folio number number list waiting number "} +{"id": "2002620", "video_name": "7f558409-5743-5420-a96c-8b21df70969f", "text": "A picturesque coastal town with a quaint bookstore in cartoon style "} +{"id": "2002621", "video_name": "57331ac9-6e58-5fcf-b6ef-a88b6b7e5e3f", "text": "Holy shrine of Imam Hussain a.s Karbala "} +{"id": "2002622", "video_name": "aa36be9d-2481-5586-a00a-285babff697f", "text": "Show the view of your Coffee Shop and Bakery, showcasing the welcoming atmosphere "} +{"id": "2002623", "video_name": "50644a80-fb35-54c3-a04f-82ac57b50c11", "text": "dog transforming to superhero. camera zoom out fast "} +{"id": "2002624", "video_name": "15b7243d-3cbb-590f-8d88-0744ce39ad69", "text": "A beautiful woman receiving a foot massage. "} +{"id": "2002625", "video_name": "422ac28d-6f3f-57bb-98ba-ed3daf598550", "text": "a jack Russell on top of an elephant "} +{"id": "2002626", "video_name": "85c71040-b51b-5f02-90f2-a5c8e39aca58", "text": "Weird, trippy, surreal, a giant Santa fights Godzilla "} +{"id": "2002627", "video_name": "d339ae10-08e7-596b-b169-7962bf50685f", "text": "an eccentric and introverted scientist in his late 50s, works tirelessly in his cluttered workshop filled with gadgets and prototypes. His eyes reflect deep sorrow. "} +{"id": "2002628", "video_name": "b7b526be-527a-5cae-b9bf-cc5541ad87ce", "text": "A young woman with long hair wearing a green dress sat at the full moon bonfire guide. "} +{"id": "2002629", "video_name": "5d9f06aa-4914-5851-9b20-e3120ab49285", "text": "lofi snow fall and and a cat raising his fur "} +{"id": "2002630", "video_name": "fdc5ffb4-201e-5781-aeed-d2cc197c1eb1", "text": "A curious wombat with big eyes pops out from the leaves of a beautiful green palm tree on a sunny day. "} +{"id": "2002631", "video_name": "93123739-7367-5429-a1ea-59962856a7cc", "text": "a few guards made of red playing cards wonderland "} +{"id": "2002632", "video_name": "fa72af8d-7c84-58e3-a551-740f86dbbafb", "text": "each linked to a specific galactic race "} +{"id": "2002633", "video_name": "10ebf603-ea18-56ff-a40b-38eb0dba5b33", "text": "people outside Kashi Vishwanath Temple 4k resolution, sky should be blue, full detailed video "} +{"id": "2002634", "video_name": "d9fc2ddc-d828-5bf2-b412-13545649cb86", "text": "He removes hatred and is happy "} +{"id": "2002635", "video_name": "04c201c0-9f35-5427-adc7-47341dda4074", "text": "over head scene 35 mm film still, air shot jesus running into a cliff to jump into water , view from back, "} +{"id": "2002636", "video_name": "71467727-5467-5f94-b5d1-6d4a0fa78041", "text": "YOUNG AKBAR Arriving at the village "} +{"id": "2002637", "video_name": "ba06f221-b1fb-50d3-bf0c-863615837c8e", "text": "big army of ancient warriors on open feeld in front of great ancient city. panoramic view "} +{"id": "2002638", "video_name": "94b1c1ca-ad96-5fb7-987f-723304ec571e", "text": "Incredibly beautiful front doorway A hen leaning on the door with a big red flower 4k 16:9 "} +{"id": "2002639", "video_name": "414b023f-3445-5fdc-b3ec-f59a081fc8ef", "text": "a cute black and white kitten playing iwith a socks , pixar studio animation, 4k "} +{"id": "2002640", "video_name": "ea55e202-b778-57b8-a9c4-b98051befcbd", "text": "a cartoon girl with colorful hair "} +{"id": "2002641", "video_name": "c9d40078-2932-55ac-91be-bcccf0c28f1b", "text": "close up of two hands trying to reach eachother from opposite sides in a highschool hallway, romanticism "} +{"id": "2002642", "video_name": "4089b555-033f-5ab4-a4f9-11be4c1f4d07", "text": "Anime aesthetic video of astroid falling from blue sky cloud, peaceful mood, "} +{"id": "2002643", "video_name": "517cc6ae-2ca2-5521-828d-977516b121ca", "text": "wind , coat waving , high fps "} +{"id": "2002644", "video_name": "a9c775e5-ede6-5cdd-b0aa-505f52951fd2", "text": "An asian boss face to face to AI robot in virtual world "} +{"id": "2002645", "video_name": "2c64a064-2ba6-50f8-bc0a-551c408fb1c7", "text": "The clouds were moving and the teddy bear was smiling happily "} +{"id": "2002646", "video_name": "25afe3da-a013-5913-9c0a-a4ba13413619", "text": "A vibrant green meadow bathed in warm sunlight. Tiny wildflowers carpet the ground, buzzing with happy bees. A cheerful ladybug, her red wing covers gleaming, rests on a blade of grass, enjoying the summer day. "} +{"id": "2002647", "video_name": "6f02b879-1e42-5fac-a36d-b5b71ae0d5ea", "text": "the moon and sun switching positions "} +{"id": "2002648", "video_name": "b810558c-a078-5fe4-8adf-ef17194bd6d2", "text": "The girl is moving backward. fireworks bursting in the night sky. "} +{"id": "2002649", "video_name": "138a4b94-3c02-5268-a497-b8f751ed148e", "text": "father and mother waving a girl in total pink even hair and clothes and shoes and bag "} +{"id": "2002650", "video_name": "0d06e566-b8fc-5f0f-8628-7f9f5e3f4fa3", "text": "A mecha warrior on anime series "} +{"id": "2002651", "video_name": "947e39ef-84b8-5f13-bb4c-3857b07394e8", "text": "dark, windowless room with an antique television which turns on and off and shows a distorted picture inside the rotating antique television. "} +{"id": "2002652", "video_name": "f8c9b4db-218b-5db0-8323-c49ed0fbc548", "text": "Give the greenery and the cat a little bit of movement in the picture. Message: 1 Attachment "} +{"id": "2002653", "video_name": "fc29d5d0-fc23-5a5d-9115-560542649f84", "text": "Female news anchor with proper grooming "} +{"id": "2002654", "video_name": "d7c49cbe-78d3-5c8f-87b6-fd66e0f41ece", "text": "Abraham lincoln driving a maroon 1976 oldsmobile 98 "} +{"id": "2002655", "video_name": "f670af8e-6fb8-59a2-8e06-6d2480bb594f", "text": "Michael Jackson dancing dressed as an Christmas elf "} +{"id": "2002656", "video_name": "5cad64f0-947f-5e80-96e0-ce4dafdfd0ec", "text": "A black Labrador and a gray Norwegian Forest cat play on the lawn in the backyard. "} +{"id": "2002657", "video_name": "bd83eb09-4a34-5ef3-8784-acdfd8522307", "text": "a man in a suit reveals stacks of money "} +{"id": "2002658", "video_name": "6f5d32e7-9328-56d4-9148-cd94b455e1a1", "text": "you can create a realistic high quality scene filmed from a drone above of a black cadillac cts v spinning its tires around the corner of a city street at night at high speeds "} +{"id": "2002659", "video_name": "82a33104-0edf-5d99-ac8a-596aa106736d", "text": "A joyful, energetic squirrel jumping from a power supply to a dense, green forest, in the background a calm turtle walking along a forest path, surrounded by blooming flowers and tall trees. "} +{"id": "2002660", "video_name": "758e2792-87b8-5abc-856b-c04126d86ed9", "text": "beautiful anme womn posing with Flowing hair and splashing waves "} +{"id": "2002661", "video_name": "54f9db1f-a472-5d6d-b2c4-16a91ee340e8", "text": "Student children taking notes while researching on computers. "} +{"id": "2002662", "video_name": "b26e0726-bbe0-58b3-8140-e076e393e53d", "text": "A male Angel with shining 4k light flare covering his face "} +{"id": "2002663", "video_name": "cbb75985-5235-5086-bf6c-8d5e394524a2", "text": "A 1930s Disney style 3D black and white animation of a car driving down the road "} +{"id": "2002664", "video_name": "0152f712-5235-55cb-8d62-07259800a17a", "text": "a man walking on stacks of money, a lot of money everywhere, rich man "} +{"id": "2002665", "video_name": "9c801c31-9e0b-5560-b31e-ea1636f6b690", "text": "Generate a captivating image that depicts a lush and vibrant pumpkin patch thriving inside a mysterious and fantastical cave. The cave should be illuminated by soft, ethereal light that enhances the magical and enchanting atmosphere. Pay attention to the intricate details of the pumpkins, the texture of their vines, and the interplay of shadows and highlights in the cave\u2019s surroundings. Convey a sense of wonder and intrigue as viewers explore this unique and otherworldly scene. "} +{"id": "2002666", "video_name": "6425bd39-ca4d-578b-9689-9fe6a5222235", "text": "A house with several animals with the screen moving away and a beautiful sunlight coming in! "} +{"id": "2002667", "video_name": "196263f2-7aad-54ed-ad1e-8af9d50d85dd", "text": "Mother telling her son not to leave the house "} +{"id": "2002668", "video_name": "0696e1d6-f3a4-5aaf-9c68-18a620d901a3", "text": "A video of vikings at war with their faces clearly shown "} +{"id": "2002669", "video_name": "fbc6a5a7-8452-5407-ba00-d14224b71f0d", "text": "3d stylized little game building library, intrincade details, cinematic, octane render "} +{"id": "2002670", "video_name": "2bd337f4-07b1-5185-bb63-096d5bed7e78", "text": "3d Cartoon female character dancing hiphop "} +{"id": "2002671", "video_name": "0f8d9693-0181-5acc-bdd0-4d3216ebd4d5", "text": "The two friends, now older, sitting together in front of the same picturesque village.8k, realistic, colorful, vibrant "} +{"id": "2002672", "video_name": "4f6728f4-bcea-5954-a376-8a2ddb63dd14", "text": "indian girl in traditional dress getting out of lamborgini "} +{"id": "2002673", "video_name": "87b1a034-88ee-59ec-b06e-8cf9881c4194", "text": "knitted fabric made of fluffy wool with new years toys Message: ZEFI (Font: MODERN) "} +{"id": "2002674", "video_name": "9563c484-5cc2-5840-b402-cdd23c1dc234", "text": "if AI was a physical living creature "} +{"id": "2002675", "video_name": "74e59c57-20bc-5a98-ae4f-1f256a2800df", "text": "an indian girl walking along a sea shore collecting sea shells "} +{"id": "2002676", "video_name": "5dcaf954-d072-5f31-a368-530088590549", "text": "tokyo drift racing scene in desert road "} +{"id": "2002677", "video_name": "db5820ee-a110-5fb3-a320-10c7dbad4efe", "text": "Optimus prime transforms into a truck, "} +{"id": "2002678", "video_name": "8b78ac59-211f-5e48-828b-ef3a61dabb33", "text": "cavemen walking in the desert, cinematic "} +{"id": "2002679", "video_name": "117e8d79-e96d-5047-9e05-ef47db73d63b", "text": "Sky, with fluffy white clouds and a vibrant sunset, in the style of Impressionism, capturing the play of light and color, using loose brushstrokes and a soft, dreamy atmosphere. "} +{"id": "2002680", "video_name": "051b5116-14b5-5cb7-8d40-aca2d814373c", "text": "army of woods and stones creature "} +{"id": "2002681", "video_name": "bdb553b5-2c50-569f-b182-a80c61c8e78f", "text": "leprechaun dancing around in a field of lowers with a beer, saying i love you "} +{"id": "2002682", "video_name": "dc4c6a00-da55-51cc-840f-28031df5c507", "text": "farmers villagers women gathered and looking shocked "} +{"id": "2002683", "video_name": "06b65a72-09fe-5dac-b798-f0030601c756", "text": "The cavemen engage in a coordinated hunt, portraying the struggle for survival. "} +{"id": "2002684", "video_name": "f5bba4c5-c623-5e98-a62e-cdd6031b46bf", "text": "Generate an 8K image of a breathtaking farm landscape. Envision zombies eating cows,. Capture the essence scared cows. "} +{"id": "2002685", "video_name": "cf14fb5f-1969-5ac9-a53e-701b5a7b82ce", "text": "The phone screen is gradually cracking "} +{"id": "2002686", "video_name": "f4f911f8-7675-5284-8873-c5e940348801", "text": "That night the man arrived accompanied by a procession, they carried candles, the man insisted that the woman come down, she felt tempted, but she remembered the words of the old woman and the young woman told her, I know you are death, go in peace, still not my time. "} +{"id": "2002687", "video_name": "f039ccd0-42c4-5bca-93b7-933e554986a4", "text": "Aerial photography of a climber climbing to the top of the mountain "} +{"id": "2002688", "video_name": "667229de-fed0-5e58-ab8e-e3fb0396a92f", "text": "face of refined elegant Victorias Secret model, Mandelbrot set, algorist art, LSD trip, awe, sublime, vivid color, sharp focus "} +{"id": "2002689", "video_name": "4fa52a4c-16f6-5011-822b-9abb02ae87dd", "text": "describes conditions where: in the competition room there are 3 tables with 3 fast and accurate competition participants, with bells on their tables, they look focused on listening to questions and preparing to answer questions on the monitor, describe the condition of the room as brigh "} +{"id": "2002690", "video_name": "669ed1f6-1d9f-5b21-aaf5-2bb6b281c953", "text": "men worried about her aging face "} +{"id": "2002691", "video_name": "12e266bd-6b10-5907-935b-d2381f514e8c", "text": "3d castle 4k 16:9 gloomy background with flying dragons include fast motion with dragon flight "} +{"id": "2002692", "video_name": "a86c5ad1-47f1-5da0-b0f5-fb4a84fbf90b", "text": "woman collects flowers on a tractor on the highway in 4k "} +{"id": "2002693", "video_name": "370acb3f-4196-578e-a296-aae7037e4827", "text": "family reunited to have a happy Christmas "} +{"id": "2002694", "video_name": "64a8b834-566e-50ad-842f-84f0013cd2da", "text": "trees and flowers sway in the wind, the cat curls up in a ball, closes its eyes and falls asleep "} +{"id": "2002695", "video_name": "55ae15cf-640b-59ab-a6d4-605061d4d4f6", "text": "a roman senate with some movement by the senators and the background for use in chroma key. "} +{"id": "2002696", "video_name": "19e2255c-5da4-578d-a077-91c7e6259e5d", "text": "cinematic video from walking weary shepherd "} +{"id": "2002697", "video_name": "4c940da3-0e66-56fe-9322-7c11eca188f5", "text": "A giant transparent octopus alien in the distance moves towards the spaceship "} +{"id": "2002698", "video_name": "a7c2b800-5e9c-52ec-ab0d-3835a3d4ad5c", "text": "a retirement community in Panama, a tropical mountain jungle, overlooking the Caribbean Ocean "} +{"id": "2002699", "video_name": "437334f7-cf12-5909-ba76-c9ca5667653d", "text": "Fan Zhongyan (5 September 989 \u2013 19 June 1052), courtesy name Xiwen (\u5e0c\u6587), was a Chinese military strategist, philosopher, poet, and politician of the Song dynasty. "} +{"id": "2002700", "video_name": "dbecc418-883c-51a1-8d85-ae3a609d3f21", "text": "Imagine a sequel to the story where Leo and his friends embark on another adventure in Luminara. What new challenges await them? "} +{"id": "2002701", "video_name": "7ebcae51-c025-52d0-90b3-70db7c9cd562", "text": "teenage caveman holding a beautiful ancient rock spiral carving "} +{"id": "2002702", "video_name": "132befe8-2224-53de-9a13-1be4756972cd", "text": "She still had many adventures in her imagination, 3d cartoon. "} +{"id": "2002703", "video_name": "ecc0d742-0321-5e82-afd1-4f9f81788a1b", "text": "The eyes and mouth of a lovely Oriental dragon are moving "} +{"id": "2002704", "video_name": "dc9c3d70-410b-5581-bad2-40269caaec1a", "text": "She shared tales of her past, of being ensnared by the very fruit that now dictated her existence. "} +{"id": "2002705", "video_name": "142eb6fc-efd9-5585-9ba1-d332c4fa747b", "text": "a cup of coffee, fluid floating shapes,floating dust in air particles and shapes of smoke and mist, windy, stormy, moody, falling ground erathquak "} +{"id": "2002706", "video_name": "eba3251d-be16-5cc1-9ccb-308be9e0a014", "text": "Alex Jones drinking cough medicine at the airport. "} +{"id": "2002707", "video_name": "aef22e6f-510f-52b8-823b-9069910f3a68", "text": "A little girl wearing a yellow strapless dress was standing on a large ship. The ship was sailing, and the waves were surging and rolling. The sky was shining brightly, and the sky was clear. A few white clouds were floating in the sky. A seagull flew in front of the little girl, and the little girl took out a biscuit from her pocket and fed it to the seagull. The seagull happily flew away with the biscuit in its mouth "} +{"id": "2002708", "video_name": "60f46993-386a-5b81-9150-d0c514227a02", "text": "Make images of Indian scout motorcycles, each one of a different color, the first will be green, the second will be white and the third will be red with a road background. "} +{"id": "2002709", "video_name": "fefc0990-9b4f-536d-be48-19951ca9e129", "text": "Cindy walked into the living room and saw a fireplace, a sofa, a coffee table and some paintings on the wall. She noticed that one of the paintings was of a family of four: a man, a woman, a boy and a girl. They looked happy and smiling. "} +{"id": "2002710", "video_name": "84d48c42-ec06-5910-9d4d-1895429fd787", "text": "green morphsuit baby taking first steps "} +{"id": "2002711", "video_name": "dd501c86-8eba-5f31-8c2b-2f20db6b3e02", "text": "18 Successive Kings of Hung Dynasty in Vietnam "} +{"id": "2002712", "video_name": "85dd2de5-528d-5993-ab47-9a0321035a70", "text": "waterfall in ethereal world, crystal glass trees "} +{"id": "2002713", "video_name": "259b6ced-917d-5e6c-877e-f01a42adfbcf", "text": "a boat painted with spots in a pattern like a cheetah "} +{"id": "2002714", "video_name": "da0b75a8-6de2-567c-bed3-fda80dbd35f5", "text": "Sunrise over mountain Message: BITCOIN (Font: MODERN) "} +{"id": "2002715", "video_name": "8b4acec8-05db-5ec9-9ca1-a6f75c91cd43", "text": "As the day unfolded, the town of Everwood came alive with the sounds of joy and laughter. Snowball fights erupted in the town square, and the air was filled with the delighted screams of children. Families gathered for impromptu sledding adventures down the gentle slopes, leaving behind trails of laughter and rosy cheeks. "} +{"id": "2002716", "video_name": "7b12fb76-6b5c-5bd2-a754-0c5495b23105", "text": "Daniel craig sitting in cake shop, eating a cake "} +{"id": "2002717", "video_name": "062e5881-b80d-5133-bb6f-bc030778e0a2", "text": "the god of blood is sacrificing the suffering art in the black and red ceremony "} +{"id": "2002718", "video_name": "59599afe-03c8-5395-9891-3d2c0da17491", "text": "a land with a boy riding a horse, highly detailed, slow motion "} +{"id": "2002719", "video_name": "606202da-be67-58c1-ae4f-eaaa2251a534", "text": "Minecraft server icon towns war minimalistic "} +{"id": "2002720", "video_name": "9d8d3e60-757c-509c-9a55-8b12cf14c492", "text": "Tropical Paradise Bedroom with a View of the Tropical Forest Mood or Ambiance: Tropical Interior Design Style: Coastal View: A lush tropical forest. "} +{"id": "2002721", "video_name": "f2ead0f9-c52a-514a-999e-82f77ed9bdae", "text": "TESLA MODEL 3 is driving through shanghai city "} +{"id": "2002722", "video_name": "3bbe7f5d-26a7-535c-8da5-656f1d408ad6", "text": "man writes on board in class "} +{"id": "2002723", "video_name": "56ea402c-6449-5267-b376-356ed1851595", "text": "product video of milk bottle around splashing milk behind of cow farm with green environment 3 min video "} +{"id": "2002724", "video_name": "a58eb59c-66ff-55e0-99f8-7a1fa1929a60", "text": "primary colors mixing and forming new color "} +{"id": "2002725", "video_name": "c18b0088-0694-5e28-b3e2-4fcd5be8c788", "text": "there are 12 children around a person who are hugging, a view from the back, a man in white clothes, a view from afar. 330 BC "} +{"id": "2002726", "video_name": "fa929e6d-0620-5307-ab30-dd900d20b493", "text": "in the enchanting land of Whimsyville, dazzling display of fireworks that painted the sky in brilliant colors "} +{"id": "2002727", "video_name": "586cb7f8-6fbe-5016-af9b-d0cdccea054f", "text": "abraham Lincoln in conference, cinematic, high quality, highly sharp, details "} +{"id": "2002728", "video_name": "e9cc0b63-a3cc-59ea-81a2-f341b58403d5", "text": "man fitting seat cover in a car, animated style, highly detail, realistic "} +{"id": "2002729", "video_name": "08f7314d-12dc-5db1-b4d9-a85318228266", "text": "ai film about a with cult surrealism "} +{"id": "2002730", "video_name": "d2cab518-bd4c-5619-b7c6-c97f71caabc6", "text": "many horror faces watching on me and crying "} +{"id": "2002731", "video_name": "4f079fa0-36a5-5931-81a9-f137ed920084", "text": "toe jam door jam, habbitat in the trees, sunny day with fog and rain "} +{"id": "2002732", "video_name": "17fbb37e-2faa-5081-bb80-28ad9ec5dfb9", "text": "person sitting in the corner of room facing the wall "} +{"id": "2002733", "video_name": "cd5f9d2d-a90e-5db8-8cd7-86939897c490", "text": "cyberpunk City with many lights in moviment "} +{"id": "2002734", "video_name": "d5d57d91-b593-597d-bd3a-99245581d886", "text": "alien fleet flying from space into earth to conquer it "} +{"id": "2002735", "video_name": "5f447e59-5f7b-5ae3-b828-f0625fb2d894", "text": "The forest becomes a peaceful place for all its inhabitants. Message: 1 Attachment "} +{"id": "2002736", "video_name": "22930488-fed7-596e-a2ef-de47522ffb2c", "text": "functional medicine spine and brain scanning "} +{"id": "2002737", "video_name": "7a202fa1-8984-5f1b-be7a-bb14bc31f89c", "text": "someone is coming through the dark hall of scarry, horror house, 8k, zoom motion "} +{"id": "2002738", "video_name": "858795b2-a122-5822-a138-a1c5a8647c40", "text": "A few years ago, I worked in a day care center where I took care of children "} +{"id": "2002739", "video_name": "68e7d871-11e9-5229-b9ca-15069ced6e1f", "text": "Everyone who accidentally disturbs or tries to enter the old house becomes the target of cruel vengeance from the ghost who never finds peace.Everyone who accidentally disturbs or tries to enter the old house becomes the target of cruel vengeance from the ghost who never finds peace. "} +{"id": "2002740", "video_name": "65a2221a-98ca-50b5-a8c5-05649407fb8f", "text": "red roses in a package in a hand, with a note attached to it "} +{"id": "2002741", "video_name": "4ae4fd0d-9147-563b-8fd0-7fd561bb18dd", "text": "Argentine bus from the 70s, move, street "} +{"id": "2002742", "video_name": "5d106167-d769-5c43-aad1-dbe84861ff1b", "text": "People celebrating victory in village with pakistani flags "} +{"id": "2002743", "video_name": "a2626725-04c6-5a41-af5d-f70a9e9a9983", "text": "good durga with nine hand sheeting on lion "} +{"id": "2002744", "video_name": "26ad1468-3320-57de-8b6a-d21b1bc29a6f", "text": "creat very good image of nature with mountains and meadow "} +{"id": "2002745", "video_name": "e39e868d-6684-549c-809e-5e316d06634f", "text": "A man crawls and tries to escape from "} +{"id": "2002746", "video_name": "965b9eb7-ce49-5638-a2e2-58bd763447cd", "text": "a catholic priest and three people carrying some bundles go through a small Swedish city year 1922 as the sun rises "} +{"id": "2002747", "video_name": "1d1c07a2-a6d9-5346-b172-f18d142a6710", "text": "a close shot to a pirates face, background blurry, tropical island, cinematic lens, realistic, movie "} +{"id": "2002748", "video_name": "17e98758-dd43-5ea6-bbe0-2b5b980e4809", "text": "An old man was fishing by the river and the fish took the bait, sandpainting style "} +{"id": "2002749", "video_name": "b0993ee3-9758-5513-9a87-f4b86ffdd30d", "text": "masterpiece, best quality, in summer, on the ocean, 2girls, turning around "} +{"id": "2002750", "video_name": "c5e18956-7279-584d-bf20-9b1c8ba16c32", "text": "Space is bright. Message: 1 (Font: MODERN) "} +{"id": "2002751", "video_name": "0fa14378-644e-5353-be61-bbf160d10ef8", "text": "Extremist groups on both sides sought to undermine any progress toward peace, perpetuating a cycle of bloodshed that stained the land and consumed countless lives. "} +{"id": "2002752", "video_name": "a4ae01b4-ac34-54e5-8994-2ec2d0b9016d", "text": "a rocket explosion hitting a small desert home "} +{"id": "2002753", "video_name": "8f552f7a-228c-5e24-b810-0fd93ac5555e", "text": "A beautiful woman stands on the top of Victoria Peak in Hong Kong, looking at the night view. There is no one around, and she opens her arms to embrace. "} +{"id": "2002754", "video_name": "5a02146c-5f1d-5e24-aa3b-628c4c18dbf8", "text": "a rollercoaster at a major theme park falling off the rails and crashing "} +{"id": "2002755", "video_name": "d8792c8e-7918-5648-a5ab-5972ca2b08c6", "text": "a stone primitive ring, underwater lightning, technicolor "} +{"id": "2002756", "video_name": "8b9a0c1b-7c3c-50d2-81f1-49351da3ad2f", "text": "young man combination goth and 3rd reich marching on the city street "} +{"id": "2002757", "video_name": "244c80ae-9006-529b-ade6-58ffcc80d98e", "text": "woman aged 45 or over, with wrinkled skin, rejuvenating "} +{"id": "2002758", "video_name": "aa668c2f-634c-5811-9f6c-4e050b7a89b8", "text": "In the quiet corners of the world, where hope was dim, the generosity of Santa and his elves brought a glimmer of joy to the faces of poor children, making this Christmas a truly magical and heartwarming celebration for all. "} +{"id": "2002759", "video_name": "6dcfc12d-8f3e-5a94-b040-3dc516369c54", "text": "in space 1000 satellites orbits earth, in the style of black and white 1900s expressionist silent movie "} +{"id": "2002760", "video_name": "b958510f-e536-5ab3-9448-fd23292be37d", "text": "Explore the mystical world of One Fenix where ancient ruins and futuristic technology collide in a stunning display of contrasts Imagine towering skyscrapers adorned with intricate carvings and glowing symbols surrounded by lush forests and sparkling waterfalls What wonders will you discover in this unique and diverse landscape? "} +{"id": "2002761", "video_name": "773f4559-2061-5948-a4c6-15fbb9cdd128", "text": "a boy is fishing on the air "} +{"id": "2002762", "video_name": "33cf48ed-e235-5c56-b2a4-56bdcb60d427", "text": "a trailer of a car racing themed movie shot in pluto "} +{"id": "2002763", "video_name": "63de4eb3-69d3-5330-a2ee-d24e80c4f088", "text": "a butterfly that mimics a spider "} +{"id": "2002764", "video_name": "f136911e-df58-5a2f-882a-26576fece4a8", "text": "Head a little moving and lamp move too "} +{"id": "2002765", "video_name": "82830da6-1c5f-5a19-b5a4-8cfe4b6d92c2", "text": "Robot petting a cat on the background of a full moon "} +{"id": "2002766", "video_name": "e5fa40f3-0eb7-5f75-89c2-512c2cafa99b", "text": "teenager moving happy playing game in the room "} +{"id": "2002767", "video_name": "0c42d0a2-290d-54ca-a697-26e71f4f2af7", "text": "a computer chip, ornate, lots of circuts Message: 1 Attachment "} +{"id": "2002768", "video_name": "4ba9e3db-eba3-5038-ad6c-5504bdba9b4e", "text": "a colorful swimming jellyfish surrounded by flowers motion 2 "} +{"id": "2002769", "video_name": "457489c4-4e37-5adf-9a98-86e7b058cd78", "text": "beautiful hawaii sunset with dolphins leaping through the air in the ocean"} +{"id": "2002770", "video_name": "6d2c93d3-1bda-5eeb-937d-da7d4f9dfb61", "text": "A human suit helmet and gun walks down a busy city sidewalk, toward the camera. old film 1920 "} +{"id": "2002771", "video_name": "0f4b2404-a2d0-52c4-bb3b-35731c72fdda", "text": "zoom in on a building in new York city made of colorful cake, on a sunny day "} +{"id": "2002772", "video_name": "3c80c555-13f0-5f1e-b1e9-b46cae831245", "text": "dark pine forest with motor trail "} +{"id": "2002773", "video_name": "1bb3e84a-492d-5ebd-9281-c5270ecf1163", "text": "360 degree film, Walking into \u201cfamily guy\u201d Peter griffins house from outside to inside in the style of panoramic video "} +{"id": "2002774", "video_name": "38d86c7f-15aa-5299-b0ca-85ade37b8497", "text": "high resolution video of the attached fish swimming in an aquarium "} +{"id": "2002775", "video_name": "652bcf16-ea96-5ca5-8608-1da77dad9fcb", "text": "kim basinger lookalike woman in american coffee shop, hyper realistic style, 4k, 8k "} +{"id": "2002776", "video_name": "7cb87f8b-b74c-5eb1-bc33-188014d3b563", "text": "a Fallen Angel is falling in the sky of a tornado, 8k, action shot, cinematic "} +{"id": "2002777", "video_name": "d6da2f17-94a8-5d99-a264-6c631a0c40b3", "text": "crocodile dressed as a cowboy walks on two legs through the desert with his gun in hand "} +{"id": "2002778", "video_name": "5c570430-f536-5133-bbf5-5639d943e063", "text": "zoom out cute jellyfish ghibly animated "} +{"id": "2002779", "video_name": "c4aa6760-2ecd-506d-a646-687603ecf4bf", "text": "explosion woman fire cat flower fireworks naruto tree dance waka waka hey hey "} +{"id": "2002780", "video_name": "fab73e2a-413e-51bd-91fe-4b87954a77c8", "text": "side view of penguin chicks on a grey background "} +{"id": "2002781", "video_name": "fbab2e8a-25a0-58bc-910c-42ae905b0b95", "text": "Determined to uncover its secret, she embarked on a journey through the enchanted forest. "} +{"id": "2002782", "video_name": "f038d91b-4a37-523d-a67a-8ba91fabfc61", "text": "create an animated scene with a young girl missing her foot while walking in a living root bridge "} +{"id": "2002783", "video_name": "84974cfd-b267-5449-acad-596bbeaee164", "text": "Describe the gentle movement of the river as it weaves through the landscape. "} +{"id": "2002784", "video_name": "845b4ffd-5b54-573f-8665-8d9ed4893d37", "text": "Write a conclusion to the story that leaves readers with a message about the power of redemption, compassion, and unlikely alliances. "} +{"id": "2002785", "video_name": "84b65eb9-34fc-5223-b132-8ceaafc09ccb", "text": "a man waking along the river "} +{"id": "2002786", "video_name": "87564a97-99d2-516f-ad9d-5c2a44a62428", "text": "friends men and woman enjoying smoking weed on a Friday night. Street fighter style, high definition, 8k resolution "} +{"id": "2002787", "video_name": "2405b9d7-4108-5c2e-b78c-0378d2fcc799", "text": "An image of a serene forest, with Ali cutting bamboo. Moonlight filtering through the trees as Ali stumbles upon the celestial light. "} +{"id": "2002788", "video_name": "e9965605-59b7-57d4-aad5-0a50e7433b9e", "text": "neg style cinematic still from a movie, smile on her face, erratic fluctuation in motion "} +{"id": "2002789", "video_name": "2b66a395-0889-5580-826c-0b824d0af981", "text": "alien abduction, The best text to video ever made before "} +{"id": "2002790", "video_name": "77777a90-9bd6-59a4-87c9-76a98b6d5cf2", "text": "move right arm, neg morphing, erratic fluctuation in motion, noisy, bad quality, distorted, poorly drawn, blurry, grainy, low resolution, oversaturated, lack of detail, inconsistent lighting of a boy sitting in a office chair "} +{"id": "2002791", "video_name": "a669fabf-583f-50ae-a525-f0d62f6fbed5", "text": "create hyperrealistic artwork of an wizard, sitting in the forest by the moon. Zoom in the shot, the look feels like a traditional oil painting, with a lot of emphasis on the light "} +{"id": "2002792", "video_name": "a168545d-d85e-5629-b3f7-f62f9a01cea6", "text": "Planet earth being hit by an asteroid. "} +{"id": "2002793", "video_name": "6a52c50b-f2dd-596f-ae34-5030a98f9530", "text": "a large city melting in the heat under a big bright sun "} +{"id": "2002794", "video_name": "27b19431-f718-51e9-bd0c-12993702c906", "text": "A man with black hair, adorned in a black top, is captured in a striking black and white portrait style running down the street. This image exudes a raw, potent aura reminiscent of celebrity portraits, characterized by its textural intensity and sharp angles. "} +{"id": "2002795", "video_name": "5b5f7dd2-cd67-5178-b39a-e5820ea1ceea", "text": "Changing seasons, birds singing, and landscapes filled with life. "} +{"id": "2002796", "video_name": "560e2dbc-330a-53f0-8c6a-35f7ac1eb2ac", "text": "And God said, Let the waters bring forth abundantly the moving creature that hath life, and fowl that may fly above the earth in the open firmament of heaven. "} +{"id": "2002797", "video_name": "a90fb7af-afe5-55b5-af0f-a512f42f7a52", "text": "I was getting fatter, but I just decided not to think about it. I suppose that\u2019s what everybody has to do with food addiction, you have to not think about it. You enjoy the food and just decide to ignore all the fat. "} +{"id": "2002798", "video_name": "83548f9e-cd5d-532e-bf4a-ec5a991ef566", "text": "a video of a europe map, coloring france in red first, then austria, then russia "} +{"id": "2002799", "video_name": "c603cd1e-d824-5551-b9c9-33a29207a7df", "text": "Red ginseng coffee made with red ginseng and coffee together. A coffee cup "} +{"id": "2002800", "video_name": "861d2f5d-01d8-5675-9bf3-77f8042177c3", "text": "A little girl is eating steamed buns "} +{"id": "2002801", "video_name": "94ca4a60-3649-5621-9f40-c237065d7503", "text": "Moving slowly, the Lucky Strike emblem. "} +{"id": "2002802", "video_name": "ac60b9e3-6113-5123-af45-851e147aeec2", "text": "Montage: Shots of Vitaliy enjoying a lavish lifestyle.\n\n \u2022 Flashy cars, exotic vacations, and glimpses into his glamorous world. "} +{"id": "2002803", "video_name": "38b68b9a-f04f-5bd0-952a-913d8dec0fad", "text": "Iron Man fighting Spiderman in an alleyway using their powers, hyperrealistic, hyperdetailed, masterpiece, 8k "} +{"id": "2002804", "video_name": "82660cba-2ab1-5e67-b97d-f9cc8d9b14d0", "text": "expolsion of blue light over mountains, 4k "} +{"id": "2002805", "video_name": "33f4cc56-3ef3-5531-89fd-990b2d1e32f7", "text": "The monster is roaring ,HD, realistic, highly detailed, atmospheric lights, high quality, cinematic Message: 1 Attachment "} +{"id": "2002806", "video_name": "8203a485-e9cf-50b3-8a28-01d1eeeb486c", "text": "A man give you a plate with a falling curtain in the background Message: 1 Attachment "} +{"id": "2002807", "video_name": "cd6b0de1-1a5e-5f1e-8f75-9bcf7ea3c5c0", "text": "Madonna Ciccone Song in the street "} +{"id": "2002808", "video_name": "71507b30-47ff-5a22-b79d-7e53bf58c8b2", "text": "wide shot of a well manicured park at an institute where they treat zombies as clinical patients ar 21:9 motion 2 "} +{"id": "2002809", "video_name": "dc9d0b52-9f4d-5549-9463-4c79bf198a07", "text": "A man sings and plays basketball "} +{"id": "2002810", "video_name": "b7f6bfad-89ac-5ff0-9e8d-51a8cd667e92", "text": "a successful woman with long brown hair traveling the world first class "} +{"id": "2002811", "video_name": "520e0c09-a312-5284-ae72-5b10968136a3", "text": "batman moving his head to right "} +{"id": "2002812", "video_name": "90685223-5174-55c7-9ee1-2944f3ce7afb", "text": "abandoned retro cars, underwater shorts, cinematic, HD "} +{"id": "2002813", "video_name": "d61f7442-534d-57f4-b442-9e5a9c916592", "text": "two giant hotdogs each moutheating a hotdog "} +{"id": "2002814", "video_name": "4700f971-88ad-5283-ad46-29dfb800c2f7", "text": "generates an image in the style of a Disney Pixar movie where a young programmer appears wearing glasses and a beard and the title of the movie is BlueCode "} +{"id": "2002815", "video_name": "cc4854c0-444d-5fd7-8ce5-4bf4b0b45a17", "text": "cristiano ronaldo servor class make his celebration "} +{"id": "2002816", "video_name": "ac7f50d0-b8cf-572c-8cac-3ffaea0af215", "text": "Surreal and detailed. Standing at the pinnacle of a tall building, the picture presents a surreal scene with exquisite details. Among them, a future soldier and a robot companion dog fly in the shock wave of the explosion, looking at the collapse of the city. The rain pours down, adding a deeper emotional layer to the image "} +{"id": "2002817", "video_name": "25e57ebe-423c-54d3-800d-946c1ba2ef62", "text": "Leonardo DiCaprio on Titanic is drinking coffee from a Starbucks cup and sitting on an iPhone. "} +{"id": "2002818", "video_name": "63fa6cc3-5ac6-5e81-8d3b-fa0b7526742c", "text": "The princess rides the white tiger and flies down the canyon, 4k, panorama, movie light, panoramic lens, lens flare. "} +{"id": "2002819", "video_name": "8ad0dce3-a1ba-55db-bca9-0b3999f864d3", "text": "horrifying creatures, surreal landscapes, and their own growing madness "} +{"id": "2002820", "video_name": "f3818adb-c3da-57a7-a3bc-3719ac666efe", "text": "Lord shive ji in holy forests with super natural power hd quality 4k "} +{"id": "2002821", "video_name": "b84120da-278f-5bce-9788-f87e49c2fded", "text": "These ladies, Amanda, Lisa, and Emily, had spent their entire lives by the sea. 3d animation. 6 secs long "} +{"id": "2002822", "video_name": "e410a520-6bc5-5b95-b949-9991470be86d", "text": "japanese tea party in the style of renoir "} +{"id": "2002823", "video_name": "656d8393-511d-5f20-aaaf-ac3a6b636609", "text": "a delorean driving in the city of Las Vegas by night "} +{"id": "2002824", "video_name": "d9525104-9d79-515e-b36a-7c9bdeda632e", "text": "The night before the anticipated poacher invasion, Simba called a final meeting. Under the moonlit sky, the animals gathered in a clearing "} +{"id": "2002825", "video_name": "00a0db43-1b67-56b1-9e8e-51bf099f4ef5", "text": "a long haired bearded homeless man break dancing on a city street "} +{"id": "2002826", "video_name": "0b2d06de-414f-5a73-880c-902d8d6034c5", "text": "The streets are slightly brighter than before sunrise, but only just. Ali steps onto the cobblestone road, moving unsteadily forward "} +{"id": "2002827", "video_name": "fea66a2a-fb5f-5eeb-a101-13a2ff35f337", "text": "foggy rainning night in a ghost town with ruin vehicles "} +{"id": "2002828", "video_name": "1c9146eb-9dd8-5a04-aac4-c2d53c3e4b3e", "text": "One day, a severe storm hit the forest and destroyed the habitats of these animals. animated children story "} +{"id": "2002829", "video_name": "be97b92b-0287-5045-be54-2dc73aa36bfd", "text": "virat kohli dancing on the beach with baber azam "} +{"id": "2002830", "video_name": "22163889-f37c-5144-9b0d-3a173ac82e1c", "text": "two planets rotating around them in space with colorful background "} +{"id": "2002831", "video_name": "761ecc66-9a3d-5a86-88d7-ab71cf09f62d", "text": "batman rising from dark in mountain ,show in old cartoon way "} +{"id": "2002832", "video_name": "c782699a-7322-5e33-ac14-efc427d08bfb", "text": "spaceship corridor, pipes, abandoned, red colored, moving shadow "} +{"id": "2002833", "video_name": "52092877-0890-5332-ab7c-ac3aea158dc1", "text": "a business man middle aged smoking a cigar "} +{"id": "2002834", "video_name": "0368b9f6-fcc7-59c8-a027-87c238d32d4e", "text": "ninja training in martial arts in futuristic setting "} +{"id": "2002835", "video_name": "684dc94f-3c90-5196-bdb9-41642020a408", "text": "subsconscious mind, glowing background, connect to universe "} +{"id": "2002836", "video_name": "1b086199-f929-58e3-a9af-ae71c9e5c57d", "text": "a child give water to tree "} +{"id": "2002837", "video_name": "1eff0349-3731-5a44-ac47-1df7bdba2e4a", "text": "man reading and show imagination in 6 different scenes using space, seas, imaginary lands, and flower land, music, time. make it using van gogh styled 1 min video "} +{"id": "2002838", "video_name": "82c2d235-0895-520f-98b9-cb94dfadf0e3", "text": "Sideview of a funeral hearse driving down the highway "} +{"id": "2002839", "video_name": "09b96b39-ab1d-5961-a788-77339f2aaca7", "text": "realistic, port, wrong 4K cinematic with Donald Trump "} +{"id": "2002840", "video_name": "28e2ef87-079a-588d-a686-2b2689c63b08", "text": "The character walked towards the front of the camera "} +{"id": "2002841", "video_name": "8c76a8ef-7aa6-53e7-ba57-0b7d0ff29c4b", "text": "frogs looking out of a window "} +{"id": "2002842", "video_name": "1dcfc74d-a772-5028-9541-967143a387c2", "text": "robot walking on the beach, pixar cartoon style, epic games graphics engine "} +{"id": "2002843", "video_name": "6ad395be-0071-50fa-a5b8-2c686722683a", "text": "girl in hospital with mask after nuclera attack "} +{"id": "2002844", "video_name": "4b003de8-7b89-580a-b756-84224b1365a5", "text": "As they ventured deeper into the jungle, the trio encountered various animal friends along the way. hd "} +{"id": "2002845", "video_name": "90e07b0e-0a10-5792-a8a6-ad358e462b8c", "text": "beautiful villagers farmers women gathered in market "} +{"id": "2002846", "video_name": "f4b468ce-7a4d-53c2-87e1-7ea933b4984b", "text": "music speakers and musical equipment, mexican mask hanging on the wall, realistic mini palm in a pot, materials: rusty iron, concrete, leather, palette in dark green and umber tones, dim red light, lamp atmosphere, cozy light, style steampunk, cinematic, hyper detailed, realistic forms, motion camera from left to right "} +{"id": "2002847", "video_name": "f70d5b99-46c7-550a-a036-784d82f4c1ad", "text": "Stallone as Remy from ratatouille Disney "} +{"id": "2002848", "video_name": "56bd63e2-93f2-54dc-b69d-142428dbf3e7", "text": "Layla walks through the forest, happily singing and picking a beautiful white flower. "} +{"id": "2002849", "video_name": "e819ddac-09d6-5957-b4d5-e50d51eafcca", "text": "shaolin kung fu toad style motion cam 16:9 realistic award winning cinematography "} +{"id": "2002850", "video_name": "3a314154-7288-5da3-abaf-c7e41075ccfe", "text": "Used to work as branch manager in a multinational company. "} +{"id": "2002851", "video_name": "894824e0-545f-5018-a733-f9c4cf245bdc", "text": "Anime girl is dancing on white background. "} +{"id": "2002852", "video_name": "9d08fc3c-39c8-5014-b6ae-f5aab89d5df4", "text": "a car crashing into a house cinematic 8k UHD Hyper realistic "} +{"id": "2002853", "video_name": "6324f735-3568-5a6d-af8f-7c5834d592fd", "text": "Generate a video of a graceful jellyfish floating in the water, still in 3d rendering cinematic view "} +{"id": "2002854", "video_name": "831dbb53-b17b-5f43-b474-7b784898c347", "text": "Lord Shiva dancing under blue sky on water "} +{"id": "2002855", "video_name": "a60b68e3-1844-54de-a344-9fbb5a659004", "text": "shared her zest for exploration. With hearts full of wonder, they set off on a journey to discover the world beyond their village. "} +{"id": "2002856", "video_name": "85c1b9aa-929d-5aaf-a9e1-cea44a74e463", "text": "stencil animation of a secret garden. "} +{"id": "2002857", "video_name": "b3a0da08-f3d1-5e82-9cea-8178625a4692", "text": "man wearing his cloth in room comics style "} +{"id": "2002858", "video_name": "d4d46fc9-668e-52b7-bfdd-a0c201cc489d", "text": "Layers of reed beds, gently swaying, exuding a sense of beauty and tranquility along the riverbank. "} +{"id": "2002859", "video_name": "b8df32bf-bab6-5c74-a1c2-ccabecbb322f", "text": "a big shark catching a tuna "} +{"id": "2002860", "video_name": "7a0c9fd3-d2d0-5bb0-9c58-961f459acc28", "text": "a Chinese ancient dragon flying clockwisely as a circle form, 2d graphics, ink brush stroke painting style, in golden yellow color tune "} +{"id": "2002861", "video_name": "fed89e0a-bb18-53c7-9fad-65b854cc7f08", "text": "cat talking to audiance with smile "} +{"id": "2002862", "video_name": "4ad2a063-60ca-5dd4-9c4f-081b40a3ef99", "text": "bellagio fountain drive by in tesla plaid, holi colors spraying "} +{"id": "2002863", "video_name": "37a67d28-20ea-5af7-804e-fefa5bdb5e6e", "text": "show the construction in pixels of a cryptopunks NFT. Original colors use the most common traits of this collection and its colors. "} +{"id": "2002864", "video_name": "483033b2-6ad1-586d-9420-d8784b116fb0", "text": "a happy scottish man drinking some coffee "} +{"id": "2002865", "video_name": "aecb0ffa-42a3-56d3-8413-44d674fcd014", "text": "An unmanned skateboard continuously glides along a narrow and straight path. "} +{"id": "2002866", "video_name": "4fef7878-01e5-5a5f-a33c-0972ad942c2e", "text": "Generate an image of a black Grim Reaper with a red background, the Reaper swinging a scythe, and cutting through the world with an energy effect resembling Reaper energy "} +{"id": "2002867", "video_name": "0d14a1c0-231a-58e7-9d02-45143a7b422c", "text": "the animals share the problems with each othe in forest "} +{"id": "2002868", "video_name": "c7c478a6-8ac5-5657-bbfd-6f23e4dd343c", "text": "sunrise, amplified, turbo, purple, oxycotin, sunrise, sunset, light rays eminate, g2 "} +{"id": "2002869", "video_name": "bc855421-41a9-5bbf-9f18-2d07e6eacfcd", "text": "cinematographic landscape, soldiers , after the war, camera zoom uit, ultrared "} +{"id": "2002870", "video_name": "a627189c-782e-50dc-b719-c305b06e75e1", "text": "It is about realizing that the divine is within you, that you are a part of the infinite cosmos. "} +{"id": "2002871", "video_name": "5c43ca0f-0f6e-5e6c-a34c-5ffb16131821", "text": "princess stand at top of hill ultra beautiful scene of nature beauty high resolution "} +{"id": "2002872", "video_name": "ba813937-c6d3-5b34-81df-78eb6f9cc8af", "text": "For a business article that shows a group of people brainstorming cheerfully in a meeting room "} +{"id": "2002873", "video_name": "481dfbb3-c835-5c47-987a-2972642a89d7", "text": "Create a sequence of short scenes highlighting historical figure of Chanakya. Showcase key moments from his with a blend of dramatic visuals and historical accuracy. "} +{"id": "2002874", "video_name": "3a6eeba7-251e-588e-b961-925475f84024", "text": "How a Porsche drives through the desert in a race against Ferrari and Bugatti "} +{"id": "2002875", "video_name": "a6856b1b-d434-5608-96df-16cb0ea4c676", "text": "The Monkey King in armor is walking in the dense forest "} +{"id": "2002876", "video_name": "7c1b1bf5-fe30-554a-bf9e-a5600d005945", "text": "a trippy skeleton coming out of the mirror. Futuristic. Dark with neon colors. "} +{"id": "2002877", "video_name": "e203b924-fee0-5d5d-bce6-10845f11601d", "text": "A dragon jumps out of the river.,Japanese style. "} +{"id": "2002878", "video_name": "d584c30d-5009-5610-87ad-67529ae896d1", "text": "Illustrate a person navigating through a labyrinth of complex patterns. Show them arriving at the center, where a source of brilliant light reveals the authenticity they\u2019ve been seeking within the intricate maze "} +{"id": "2002879", "video_name": "d61dd858-deb7-5d18-be05-192c8415f95b", "text": "Together, they examined the roses and found that the real culprits were a mischievous group of rabbits who had nibbled on the flowers. "} +{"id": "2002880", "video_name": "33c41a18-f144-528e-8b4e-28eef2904d17", "text": "Regardless of their form, mermaids continue to fascinate us with their allure and mystery. "} +{"id": "2002881", "video_name": "e5efd046-e35b-5386-ba81-5dccba50e236", "text": "Two firefighters running towards the fire and people running away "} +{"id": "2002882", "video_name": "89f95b27-05ac-54cc-8da8-781a163f87b4", "text": "Mountain serpentine Message: YAROSLAV (Font: MODERN) "} +{"id": "2002883", "video_name": "ee5f85d1-821c-5444-be2c-cfe3956d2106", "text": "one girl hanging by her toes upside down from a tree "} +{"id": "2002884", "video_name": "afd96e61-db51-5956-af33-cda204c78cc3", "text": "construction worker, walking around and his face has been recognized by a robot "} +{"id": "2002885", "video_name": "232c3c61-7831-53b2-b36c-7de4979548b4", "text": "Picture of children flying in space "} +{"id": "2002886", "video_name": "251af942-8414-52bc-a0f3-d6947d4cac46", "text": "a business man speaking in front of an audience convincing "} +{"id": "2002887", "video_name": "1fc09bd3-6fc9-594e-a039-1038eecba731", "text": "Realistic yacht fleet contains 10 yachts that is in the sea and the shot is taken from up (drone) "} +{"id": "2002888", "video_name": "0f92aee3-8958-51a2-9b37-5889dd78bf8e", "text": "sun setting on asvem beach with clouds scattered in the sky "} +{"id": "2002889", "video_name": "cf93224a-9986-5cd6-9bea-5cb526f8b141", "text": "a 360 panning video showing an abstract sculpture of a colourful bubbly piece with weird forms. "} +{"id": "2002890", "video_name": "e2f5d111-5dce-5d84-93d3-f0f49927ecb6", "text": "Vertical Aerial Top view, flight over fields, desert, Germany, bright sunlight, high resolution, 4K, satellite footage "} +{"id": "2002891", "video_name": "0b077caf-3212-5891-bb9e-13ff4c932254", "text": "hajime sorayama inspired android djing at a night club "} +{"id": "2002892", "video_name": "836c9b88-50fb-547a-825b-a75b7c2a03d8", "text": "several female human looking robots power down and fall "} +{"id": "2002893", "video_name": "9beaa244-ffb1-5073-9cab-f8043c42991a", "text": "a cute angel and black devil dance together, ultra 4k hd, niji 5 "} +{"id": "2002894", "video_name": "f9adff54-8898-50f7-932d-f05343acaddd", "text": "father 2 douthers waching the sun set with coconot tree "} +{"id": "2002895", "video_name": "4ed2113a-202b-5739-ab29-73709f75ed7e", "text": "Toyland at rest, with toys peacefully sleeping under the moonlight.Animated cartoon "} +{"id": "2002896", "video_name": "29ba9ee6-0ed1-51e5-95ae-d7b9a37e45df", "text": "ironman, if he was an anime character "} +{"id": "2002897", "video_name": "70cfdeb8-eed6-50a0-a1e1-2f0f9c3daa50", "text": "Snow outside the window, fireplace burning inside the house. Generate animation "} +{"id": "2002898", "video_name": "d7750596-baf8-5cce-98c5-728e26923d30", "text": "A turtle sitting on a horse jumps forward in the field "} +{"id": "2002899", "video_name": "91c66371-0d90-5c7e-836d-334a3c84e4e0", "text": "18th century couple posing for a photo infront of a lake. Kodachrome. Leica. Hyperrealism. High detail "} +{"id": "2002900", "video_name": "b4dcbf6e-de05-54f5-b5f7-ad8ae7916b41", "text": "A woodcutter hits the ground with an ax and a huge cauldron comes out of the ground "} +{"id": "2002901", "video_name": "a3165953-3b0b-59d2-baae-6b0dd56b21c5", "text": "Exciting slow motion of skiing action, snowflakes flying, and energetic background music. "} +{"id": "2002902", "video_name": "14dbabaa-f500-5ca4-b0c4-9e7a866acd06", "text": "White land cruiser 200 on Kazakhstan numbers 677III17 in the desert "} +{"id": "2002903", "video_name": "de091221-2764-58a4-ba20-959889373976", "text": "heavy snowfall in a village at night, road and trees covered in snow,moving HD image "} +{"id": "2002904", "video_name": "8c89621a-b5fb-5dab-9489-43c0e28f448d", "text": "lonely bird on the sky flying "} +{"id": "2002905", "video_name": "b80769ef-a447-5e3c-ad8c-7a19b8377c6b", "text": "a boy is dancing. Background Mumbai taj hotel "} +{"id": "2002906", "video_name": "a8640c16-20ab-5906-b8d3-4c03de224e42", "text": "sunset in paros greece drone shot cinematic "} +{"id": "2002907", "video_name": "4f971700-ce54-5237-a4fa-f347875722bd", "text": "change the person in the image, transform it into a human meta. Message: 1 Attachment "} +{"id": "2002908", "video_name": "6592c8a9-f9ac-54b9-ac2a-9e9a265a07a1", "text": "A man jumping to the space with big smile "} +{"id": "2002909", "video_name": "0fe26514-2443-5cd6-afa8-b4ab979303f3", "text": "Detail the bedtime rituals, such as patting the cows, whispering sweet words to the sheep, and giving the chickens a gentle lullaby. 3d image animation gs 20 motion 4 "} +{"id": "2002910", "video_name": "3bf4cb93-59d4-5079-b020-8156b3d53faf", "text": "scary mermaids and jaws 1970 movie "} +{"id": "2002911", "video_name": "03a7c3e4-637c-5676-b35c-4a8d51723f18", "text": "beautiful terrace with a small table. There is hot aromatic coffee on the table in a beautiful cup and saucer. atmospheric "} +{"id": "2002912", "video_name": "22770c62-e3ab-5826-b505-4819f9fd2bd2", "text": "The inscription good afternoon on the background of nature "} +{"id": "2002913", "video_name": "9ab43fdd-f514-5124-b5f6-e5a5db68a87b", "text": "A hobbit wearing a batman costume "} +{"id": "2002914", "video_name": "1e6c1f97-e596-58be-9ce8-39f2b093544d", "text": "12th century, Rusichi, squad, battle, realistic, photorealism, 16:9, 4k "} +{"id": "2002915", "video_name": "e3b86a6c-a2e5-5c4d-8807-686bd541e51d", "text": "Morticia Adams dancing in a scary basement "} +{"id": "2002916", "video_name": "fa030e3d-e01d-522c-b034-801e4875e74c", "text": "Itachi uchiha standing alone at tokyo tover "} +{"id": "2002917", "video_name": "7de5fc86-0a76-5186-b212-30d13ede73e8", "text": "Timelapse video, crowded beach full of people going from sunrise to sunset. "} +{"id": "2002918", "video_name": "1f7d252a-bbbd-5180-acd9-55ac6e054daa", "text": "Mercenaries who raid ships for these drugs or sell them. They might be a mix of different races and species. "} +{"id": "2002919", "video_name": "2c72de2d-8c6f-500e-8a2f-bf56567c61f8", "text": "A room with hanging clocks of various shapes is shown. Clock indicators move in reverse directions, and the numbers on the dials change quickly, creating the illusion of unstable time. The hanging clocks gently squint and rotate, creating a subtle dance. Light is reflected from the metal surfaces of the clocks, creating flickering reflections. "} +{"id": "2002920", "video_name": "be330e32-4f1d-5ccf-b066-0cd7958493ce", "text": "eyes blurry vision nighttime opening and closing "} +{"id": "2002921", "video_name": "a1342549-fb27-5365-afb1-07d9cda4a8c3", "text": "Medium shot of a Computer screen "} +{"id": "2002922", "video_name": "2a1e9253-1823-52d7-857f-5bb66b418ca9", "text": "lion and elephant They sat by the riverbank, pondering their next move 3d animated cartoon style colorfull "} +{"id": "2002923", "video_name": "b95efe5a-7115-5ceb-8e7f-b46870d33dce", "text": "a cute girl in white top and skirt "} +{"id": "2002924", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "couple in love on the sofa watching a horror movie "} +{"id": "2002925", "video_name": "9b67be63-a7c5-554e-ab7f-fc4e1900ab96", "text": "Generate a green man who eats mushrooms "} +{"id": "2002926", "video_name": "f142e27d-7ebb-5c1a-b76f-3f16978b4b9d", "text": "The camera moves away from the astronaut "} +{"id": "2002927", "video_name": "cfa4b561-f81d-546c-8a39-5c9315549c8e", "text": "dark abstract design of a transparent building with violet and navy green lights "} +{"id": "2002928", "video_name": "c64ce174-562c-5caa-afed-9040bb648605", "text": "Goku and Vegeta face each other in an epic battle on planet Namek, where they have to stop Frieza from getting the dragon balls. The two rivals exchange devastating blows, transforming into Super Saiyans and using their most powerful techniques. The video must show the tension, anger and respect they feel for each other, while the fate of the universe is at stake. "} +{"id": "2002929", "video_name": "350f11fb-b6e0-5277-934f-e939a99967d9", "text": "a loop video of dancing breakdance one dancer contest on white background and zoom out and rotate camaera point of view "} +{"id": "2002930", "video_name": "db53b035-e5e5-569f-aedb-2a1cd0a3afbf", "text": "man holding led flashlight in forest at night "} +{"id": "2002931", "video_name": "0b9862f6-5ac1-5bcc-90f7-4d188f293a31", "text": "Explain the significance of facing the Qibla direction when burying certain individuals. "} +{"id": "2002932", "video_name": "a62ee6bd-0937-53bb-bb18-f08850960a4e", "text": "young boy well dressed wearing belt in empty room looking ahead with confidence "} +{"id": "2002933", "video_name": "c9314d8b-7f50-5c42-a307-2ab516c0a323", "text": "Create an animation of a giant radio wave on earth "} +{"id": "2002934", "video_name": "22f35c46-02a3-5092-848d-b737003fbd8f", "text": "cambodia angkor wat and beautiful sky and weather "} +{"id": "2002935", "video_name": "a0e2176f-802c-5cfe-81f5-811f6effa94a", "text": "On modern streets, there is an ancient Chinese dragon hovering in the sky, creating a panoramic view "} +{"id": "2002936", "video_name": "f94f7a5d-f62c-5d93-9ea1-f8de1217e59a", "text": "Animated sequences depicting a person taking small steps toward their goals (working on a project, reaching out to contacts, exercising for health goals). "} +{"id": "2002937", "video_name": "95e825af-0d54-56d4-b69c-1a178d995405", "text": "High quality, 8k, super detail, The knife grows larger, Knife throb, the light shines, the stone floats upward, the flame flows "} +{"id": "2002938", "video_name": "4842bcc1-9176-5363-8add-a27fef4a6de2", "text": "earrings sway, blink, hair moves in the wind "} +{"id": "2002939", "video_name": "b7681df1-0ec2-5e77-bfda-666005b2e5f2", "text": "stacked rolls of denim in a warehouse on a shelf Message: OVRSTITCH (Font: MODERN) "} +{"id": "2002940", "video_name": "3b4e50c3-c71d-546f-b9b5-cdcd45124e82", "text": "Jesus walking on a horse in the sky with a red clothing and holdig a sword, moving towards us in the sky alongside an army of angels in the last days, 4k style "} +{"id": "2002941", "video_name": "eb7aa0bb-fe66-523f-a78e-4fd289624986", "text": "A pool image that the pool water is moving smothly "} +{"id": "2002942", "video_name": "18a68c45-ef95-5a55-8909-4b75735b6e94", "text": "Wide shot of a man standing tall in the clearing. Shadows of ancestors encircle him, their presence fel "} +{"id": "2002943", "video_name": "038a410a-f4fc-5008-8e6f-130f650858ba", "text": "sun emerging from behind the clouds "} +{"id": "2002944", "video_name": "c75c6d30-1b60-5811-a982-8b42042a59b6", "text": "GG Allin and Celine Dion singing Christmas songs together "} +{"id": "2002945", "video_name": "941499f2-c8e9-579e-b4b4-f0de7e4315e9", "text": "focus to the singer on the big stadium, too many people around, "} +{"id": "2002946", "video_name": "522a0aa0-0a99-5532-b149-525c8e829ba7", "text": "South indian temple near sea shore "} +{"id": "2002947", "video_name": "0853da77-810e-528f-a3ed-7eb7ed9b6429", "text": "A scary hut without life in the snowy winter of the end of time "} +{"id": "2002948", "video_name": "ff3078cc-4ccf-5f17-8290-073e6409f2e6", "text": "forest and lake, clear skz and a girl in a blue dress walking "} +{"id": "2002949", "video_name": "56888bca-afd6-53b8-805f-d0cda2a9a641", "text": "a 1990\u2019s home video of a coven of vampires, in a German expressionist horror film style "} +{"id": "2002950", "video_name": "9269dcfc-2e2c-5e8b-b0d3-e6a92cadcb82", "text": "crowd in downtown manhattan staring at billboard with matrix style code showing "} +{"id": "2002951", "video_name": "4709f4fa-760e-5bbd-a028-ef1408c9c220", "text": "person standing tall amidst a storm, holding a shield Their posture and expression should exude determination and empowerment. "} +{"id": "2002952", "video_name": "e05a4ddd-68ff-5bef-b3ed-cd87c5d8010d", "text": "Ancient Palestine was the home of many ancient civilizations, including the Canaanites, Egyptians, Assyrians, Babylonians, and Persians. This region was once an important cultural and trade center in ancient history. "} +{"id": "2002953", "video_name": "6589d4e8-9420-5821-bb07-24b9aa830d3b", "text": "a sequence of images showing a tree throughout the changing seasons, emphasizing the cycle of losing leaves in autumn, standing barren in winter, and then blooming again in spring. "} +{"id": "2002954", "video_name": "ed21e55b-3803-5c4e-94ed-004414506af2", "text": "darth vader playing basketball with michael jackson "} +{"id": "2002955", "video_name": "3a0d1027-5c3a-54f3-a747-1df25d7fedaa", "text": "pink skinned male faerie doing magic, camera zoom out, transformation "} +{"id": "2002956", "video_name": "3f1a2817-faec-5b2a-a089-a78d8bc921f1", "text": "1985 video, close up of a nose snorting "} +{"id": "2002957", "video_name": "3d2c4116-a395-538c-91c2-71d8b69b3cc5", "text": "Old vikings house, village in the mountains, viking family sitting outside Message: 1 Attachment "} +{"id": "2002958", "video_name": "88835c4c-7fba-5f21-82ee-ae64e793a6d9", "text": "gothic style, church inside ,at night "} +{"id": "2002959", "video_name": "24f4f7f4-963b-57e6-afd4-c482f9a3f15d", "text": "26.\tAn image of hope, such as a sunrise over Bhopal "} +{"id": "2002960", "video_name": "c476c24c-c2a1-5855-8a58-f364a9c534fd", "text": "Let the cat in the picture play with the snowman 4k "} +{"id": "2002961", "video_name": "f14db478-478c-5657-af42-2f11f0ae48df", "text": "A white cat is like a fresh pastoral fairy, standing in the garden, wearing a light green floral dress and a garland on its head. The cat is walking on the soft grass with its feet like a human, showing a fresh and sweet cat walk style. "} +{"id": "2002962", "video_name": "c91461fb-4edb-533f-aaac-27393348c4cf", "text": "flagpole on top of the Pyrenees waving in the wind during sunset "} +{"id": "2002963", "video_name": "4abc6fe0-8c47-5dbc-96e4-ea6d8b1ef875", "text": "The biopunk genre delves into themes of resistance against autocratic regimes and corporate exploitation of biotech for dominance and profit. "} +{"id": "2002964", "video_name": "94a386de-adfe-5298-9c7e-95c5075d960f", "text": "pink tropical frog. two eyes. four paws. city. smoke. 4K "} +{"id": "2002965", "video_name": "e9fd7b10-7378-54f9-a7f2-55dae192fd2b", "text": "two teddy bear farmers at work "} +{"id": "2002966", "video_name": "15d66dd7-aa51-5250-bb75-fda8829432b1", "text": "A young dude is taking selfies of his body in front of the mirror. "} +{"id": "2002967", "video_name": "a18dc2c2-9bfa-51c9-9fa0-7a2116bafcdb", "text": "anime fights with guns and swords "} +{"id": "2002968", "video_name": "a92cabfe-ad82-51ab-82db-a00ab47040d6", "text": "Miami beach with coconut and pretty girls Message: JOYFUL (Font: MODERN) "} +{"id": "2002969", "video_name": "57779e52-1661-5c6c-8599-aac44f2076d2", "text": "People are shouting forward on the encouragement "} +{"id": "2002970", "video_name": "e08f2879-d516-57e8-ade7-430c84e14359", "text": "an alchemical symbol composed of reddish mold growing branches, the scene is on a white background for overlay use "} +{"id": "2002971", "video_name": "e4636145-d7d4-5a5b-b440-39486669442d", "text": "let the butterfly fly? Message: 1 Attachment "} +{"id": "2002972", "video_name": "a3c648a9-2e2d-5534-bf87-0198778004d7", "text": "dark blue sky clouds, moonlight, the flickering of a dense flock of black birds, behind which almost nothing could be seen, indistinct flashes "} +{"id": "2002973", "video_name": "0dba3152-b862-5a36-a2be-b5b41f929369", "text": "a network growing over the earth "} +{"id": "2002974", "video_name": "d211448b-887b-595e-895a-db370de0f024", "text": "Little girl with black hair, red coat and a dog running in the fog inside the cave "} +{"id": "2002975", "video_name": "11496d82-22f7-56b7-a30c-ebebdffc1f97", "text": "toy cars racing hotwheels, on a track, hyper realistic "} +{"id": "2002976", "video_name": "2c377cdd-8c7c-5616-9899-1e0603f5003d", "text": "an andalusian mounted knight, busy market street of an ancient andalusian city, panoramic, ultra detailed, silent pre code film, shot in 35mm "} +{"id": "2002977", "video_name": "e4a069aa-f3ff-5b0d-ab39-a91ab626dba1", "text": "In the observation of a physics experiment, negative ions are found to float in the air "} +{"id": "2002978", "video_name": "8ecf407d-fa46-5311-b162-13055277ab3a", "text": "escaping from the mushrooms in Barcelona "} +{"id": "2002979", "video_name": "d1c17d0d-41da-5b77-97e0-d0f90aecf6ee", "text": "Elara stumbled upon an ancient parchment, "} +{"id": "2002980", "video_name": "827a6600-85b1-5b51-baa1-f4d36f898bd2", "text": "a video with the skyline of Madrid with a imperial destructor in the sky "} +{"id": "2002981", "video_name": "559c938a-97a7-5baa-90ea-ce50ae050698", "text": "Getting Teachers to Speak Message: 1 Attachment "} +{"id": "2002982", "video_name": "85ef84ab-2e29-5e6a-872a-28ab979e4d12", "text": "auto rikshaw driver talking with passenger at rainy night "} +{"id": "2002983", "video_name": "a40f991a-e61d-5b25-a14b-c590122237ec", "text": "a team of UFO chasers moving fast in a van in the desert getting closer to a UFO "} +{"id": "2002984", "video_name": "21d2dcb4-915f-5d18-93ca-94bdc846e4b4", "text": "a young man (looks like jimmy page) strumming his guitar in his retro looking bedroom sitting on his bed, 4k "} +{"id": "2002985", "video_name": "3eb9fc74-3363-501e-a211-3f9a7971feac", "text": "Wattson and Wraith from Apex Legends celebrating "} +{"id": "2002986", "video_name": "b31b5d1e-da26-53fe-9412-bbeeec83c816", "text": "Oliver nodded, his eyes wide with anticipation. "} +{"id": "2002987", "video_name": "d52e95ce-4e0a-576c-b0ae-e58b52d305c6", "text": "1980\u2019s uk, synthesisers with retro futuristic aesthetic, analog and blinking lights,documentary style "} +{"id": "2002988", "video_name": "621623cd-5c5c-56e4-b17c-ba00ca7b3990", "text": "Atlantis the lost city with a strong wind blowing by. Dramatic cinematic pan "} +{"id": "2002989", "video_name": "f033f929-ed11-574e-84a2-d37553197a12", "text": "doctors surround a female patient in bed "} +{"id": "2002990", "video_name": "e4f68db9-fe58-5836-b996-6446df26d970", "text": "the ancient building that serves as a center of learning and a bridge between worlds. "} +{"id": "2002991", "video_name": "13f40cb2-e38a-5154-b34b-0699dfeb4456", "text": "A ship sailing on the top of a woman\u2019s eye "} +{"id": "2002992", "video_name": "a1f1799e-d126-55f5-8077-b984310023fe", "text": "many snakes, snake nest, many scary snakes, top view, black and white video "} +{"id": "2002993", "video_name": "a3e97185-48cc-57fc-89ea-3f7627ab6fb5", "text": "On the surface of the cement, there are grooves carved with the number 9, in which ants crawl "} +{"id": "2002994", "video_name": "4b1cc452-2025-5210-9b3e-9b991f00d9ed", "text": "Night festivals in the Olanda city. However, a nationwide Erasmus Bridge in Rotterdam. Tulip field in Keukenhof Gardens. Windmills of Kinderdijk. Windmills of Kinderdijk. Colorful houses in Gauten "} +{"id": "2002995", "video_name": "a8de67bf-5979-546b-909d-86480fdb9dd7", "text": "cheerleader jumping and cheering at a football field "} +{"id": "2002996", "video_name": "7678e5d0-6c66-5c3c-aada-f024432d24f4", "text": "Close Up of a Sheeps Eye. A removed internal organ of a heart. The heart is beating and blood is pumping. Burning Film Stock. Over Saturated. Soil. Distorted video static broken television. Melting, burning, dripping like running watercolour paint, stained, spilt brown liquid, Mouldy, decaying. Sprayed with mud and moss. Forests and running brooks. Destroyed, destruction, vandalism. Paint splatters, free jazz, jackson pollock. Protest. Nature. Buried in stinking compost. Camera zoom out rapidly. "} +{"id": "2002997", "video_name": "ba462c52-555c-5c3c-8d37-f7a0e7178d2d", "text": "shadoe of bird flying crossing white background "} +{"id": "2002998", "video_name": "8c21fbe4-3ac2-5b1d-8df6-3637d3487adb", "text": "A woman drinks coffee on a beautiful beach. Art Deco "} +{"id": "2002999", "video_name": "16ad700c-9920-5418-84b3-473fea7c57a8", "text": "stealing stars from the moon, head in the clouds "} +{"id": "4000000", "video_name": "17fe3584-39e6-5903-b77f-ae6c4fa23cce", "text": "video of touareg driving in mountain road "} +{"id": "4000001", "video_name": "659a6ad5-ed68-5a7e-884d-65a1ef653040", "text": "elon musk smiling infront of camera and having btc coin in hand "} +{"id": "4000002", "video_name": "f0c0b89d-4045-58d8-8272-dc6247cc1c28", "text": "Batman walked into the class where there were already many students,ar9:16 "} +{"id": "4000003", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "wide angle of heroic shot of city and mysterious sillouhette hooded feminine figure creature coming out of shadows, demonic cinematic lighting, crushed shadows and blue moonlight, yellow street lamps in the distance, high quality, 4K, "} +{"id": "4000004", "video_name": "a179bdc4-f760-5a3c-b185-c12fe30e0642", "text": "Sunrise. In the ancient forest, fog is rolling in. A deer walks through the trees. "} +{"id": "4000005", "video_name": "7e876e88-d3ad-5304-84ae-153e2aa90762", "text": "2pac and rhoff on stage rapping together, hd, cartoon "} +{"id": "4000006", "video_name": "56064e40-4dbf-5a4e-9124-3a88072e3c5f", "text": "About seven or eight years ago, when childbirths were at a peak, I was delivering about eighty babies a month. One pregnant woman left a deep impression on me. It was her third pregnancy, with the first two being girls, and this time it was a boy, which brought great expectations from the family. Everything went smoothly during the prenatal checkups. Her husband requested to record the birth, which I rarely allow except for educational purposes, but I agreed due to our close relationship. "} +{"id": "4000007", "video_name": "1c2ee4a1-91b6-5b84-b818-6127096bcc58", "text": "A cute aesthetic girl in a pretty dress playing arcade "} +{"id": "4000008", "video_name": "301c8add-c54c-5891-8320-d15a1835ad45", "text": "A bird flying over the Niagara Falls "} +{"id": "4000009", "video_name": "e8e0fcf3-c272-591e-9a35-f7d85f256161", "text": "Beautiful girl with long hair and sword in the bamboo forest "} +{"id": "4000010", "video_name": "2bab0ed5-8903-54e9-bc6f-032909a5c36c", "text": "Some tribal people are driving the lion away into the forest. "} +{"id": "4000011", "video_name": "4806f12a-bc76-596d-b12f-73b36a307518", "text": "couple of red cardinal birds on the branch with snow "} +{"id": "4000012", "video_name": "7a37d154-1890-5a44-a034-ad3e38c0364d", "text": "The image of the Emperor as a tall and powerful man "} +{"id": "4000013", "video_name": "42bdf519-4388-5c56-a00a-ffc5efcd6fb1", "text": "Two cats on top of a mountain "} +{"id": "4000014", "video_name": "337e03fa-b465-5625-8704-21311e702490", "text": "in a futuristic classroom with sun light windows, a young teacher is teaching in front of a large screen, she face to students, the screen shows robot design diagram. "} +{"id": "4000015", "video_name": "cfd57056-9f62-56e9-8d8c-949ece61b287", "text": "a woman being interviewed about her holiday in greece "} +{"id": "4000016", "video_name": "15c06416-5f08-5dfb-a7ca-16c84f218846", "text": "4 raccons drinking beer and dancing in front of Hercules, UNESCO world heritage in Kassel. Ultra realistic "} +{"id": "4000017", "video_name": "de57fce2-10a9-5e41-9c64-96ffb1d18187", "text": "A Christmas tree made of natural crystals shines brightly in the night sky. "} +{"id": "4000018", "video_name": "e89c3445-e486-57a2-9d8d-5cdd12f54a72", "text": "The sun, a weary orange orb battling smog, dipped behind the Hollywood Hills, casting long shadows across Skid Row. Maria, her face etched with the worry lines of a young woman carrying more than her years, clutched a bundle of recycled wool blankets close to her chest. Inside, nestled like a tiny ember against the chill December air, lay her newborn son. "} +{"id": "4000019", "video_name": "1a558c61-4aa7-550d-a986-ec34dbaf5fbe", "text": "a birthday cake with candles and icing viewed from above, realistic, dolly Message: miriam (Font: RETRO) "} +{"id": "4000020", "video_name": "acfb411e-6caa-5f82-8814-6854ec851b64", "text": "a girl with short black hair, in her dark room in front of her computer. Framing takes the image from the side "} +{"id": "4000021", "video_name": "d653b1f5-0d97-539c-a1a0-ba5b7cff2995", "text": "X prime minister imran khan in jail and sitting on chair "} +{"id": "4000022", "video_name": "c0fa1f9b-323c-5675-bd0c-d3e7f94bc439", "text": "Albert Einstein talking for 30 seconds at 16:9 resolution with greensreen bakground "} +{"id": "4000023", "video_name": "f5e0dc90-00f8-5ad1-9253-bc08010a59fa", "text": "a long hair guy who wear shorts and have lean body who is riding on a Jet ski on sea and suddenly he jump from that jet ski and fly on sea "} +{"id": "4000024", "video_name": "3db0e6b9-f8da-58b5-ba1e-195322041d55", "text": "woman in flowing red dress jumping, indoor scifi environment, global illumination "} +{"id": "4000025", "video_name": "1411762c-fcf5-5b0d-a591-7acb5c2b9995", "text": "three greek women sitting at a table and talking, in lofi art style "} +{"id": "4000026", "video_name": "c42f6a6d-c5d9-5084-b66e-19dab06e4ee9", "text": "a zen master is talking to his little boy "} +{"id": "4000027", "video_name": "c4925c17-8044-5a50-9504-b98bd427792e", "text": "a group of people dancing in the future "} +{"id": "4000028", "video_name": "85fa83ee-2029-5171-9834-0695f2f6f7aa", "text": "a Nikon Z6ll camera taking pictures with a flash "} +{"id": "4000029", "video_name": "7911693c-7102-5e9c-a131-d3a4a28799e5", "text": "An animation picture of a sculptor with satisfied expression after learning lesson of success from his father. "} +{"id": "4000030", "video_name": "a1d79b70-982a-5e4a-918c-11e29e17e6f7", "text": "I hope you found this episode helpful. If you have any questions or comments, please feel free to leave them below. "} +{"id": "4000031", "video_name": "1278cdeb-b8db-5d2c-9196-3a9c2d54bb9c", "text": "a dog run into the woods "} +{"id": "4000032", "video_name": "a55a6848-a7fb-57eb-9388-4b34910d8c13", "text": "A frame of philosophers debating in ancient Greece "} +{"id": "4000033", "video_name": "70336351-fd85-5cb3-9dfd-47c9cc1aa670", "text": "a cinematic ai based city including turnnels , trains flying cars ,house with glow like a time lapse "} +{"id": "4000034", "video_name": "2d3b511c-97b4-5ecd-9c72-a311619f7998", "text": "student speaking with marcus aurelius and elon musk "} +{"id": "4000035", "video_name": "0476407a-9f48-5126-a4b7-400da5ec0f67", "text": "a blond woman talking in front of the golden gate bridge "} +{"id": "4000036", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "tom cruise smiling and blinking one eye "} +{"id": "4000037", "video_name": "fb10196c-34c9-5eee-bd45-3c41d888a030", "text": "a llama chewing a grenade in argentina 1978 4k cinematic "} +{"id": "4000038", "video_name": "92115aa0-6fc1-5023-8d2d-c38647110030", "text": "kawai cute bear cuddle a other bear "} +{"id": "4000039", "video_name": "49af849f-d490-559b-9d62-00e680b9ca2c", "text": "Move in the form of smoke "} +{"id": "4000040", "video_name": "17a2f9b2-ca38-5b6b-90c1-28b25dc49f4f", "text": "a man riding a horse in the Mongolian steppe, epic drone shot "} +{"id": "4000041", "video_name": "5bfa274e-7e8f-5c53-bb69-b684fb3a62c6", "text": "film noir, cinematic, a woman and two men are sitting in a dark room, their faces are not visible, camera zoom out "} +{"id": "4000042", "video_name": "d0c076e0-97f3-5217-8a4a-c14f21791509", "text": "a lighthouse at night with a light shining on an ocean that is made out of books "} +{"id": "4000043", "video_name": "a7800452-4fcd-52ab-881e-cb5dd5a5facb", "text": "Cinematic: frenetic zoom in eyes of a young long hair closed eyes, wizard, meditating, under moon, opening his white eyes "} +{"id": "4000044", "video_name": "33b586ba-3368-51bc-80dd-3e67f0b435f7", "text": "large field with sunflowers in the early morning with wind "} +{"id": "4000045", "video_name": "a5d5afbf-5d4c-5f7d-bed9-7118cfa56943", "text": "The stage was set for a showdown, and in 1948, as British rule ended, Israel declared its independence. "} +{"id": "4000046", "video_name": "a2fd2410-ba2c-51a5-8491-66c3606b462b", "text": "a blue eye cat running and jumping "} +{"id": "4000047", "video_name": "b8ea08b6-798c-526b-a019-93c475bd47ea", "text": "A man in his early 30s wearing a liverpool shirt kicking a soccer goal "} +{"id": "4000048", "video_name": "b2dbd326-2543-52ec-8509-f22decbda72e", "text": "a mage doing a spell in the middle of the forest, with a big moon behind, realism style "} +{"id": "4000049", "video_name": "4e9297c6-30cb-5e32-9b08-34137b27e673", "text": "In mela everyone are enjoying and dancing in night view "} +{"id": "4000050", "video_name": "786deee5-214a-5ef2-bd30-21e2169576fd", "text": "paul walker with vin diesel in 2023 video movie effect and 3d animation "} +{"id": "4000051", "video_name": "379b397a-6bfe-5d9d-afd4-5e1a13b1b7c6", "text": "christmas family in a tropical country "} +{"id": "4000052", "video_name": "0d36b4a5-6f13-52e4-b59c-460921cdcc2f", "text": "a hard work in the life a man in the room "} +{"id": "4000053", "video_name": "88289163-f5cf-5b1c-bd60-edea886c439a", "text": "advertising of AIR MAX headphones on a white and yellow background, with a box and white lighting "} +{"id": "4000054", "video_name": "5ba0264c-50b5-5515-8209-d2d617e61733", "text": "walking feet with anklets, in the night "} +{"id": "4000055", "video_name": "103606ca-568f-5bf9-acb2-cc8e805eb90d", "text": "Flashback sequences, whimsical planets, colorful aliens, mixed shot types "} +{"id": "4000056", "video_name": "351fb326-5018-55c2-a2e4-99b7881ccce2", "text": "a gothic midevil church and pastor in a chapel ,realistic.unreal "} +{"id": "4000057", "video_name": "d8b66579-cc37-5111-a311-59c6634af678", "text": "Gary Gensler at a bitcoin atm "} +{"id": "4000058", "video_name": "b6cfac40-3205-570a-8845-47b8b97b8837", "text": "star wars theme 1 minute movie "} +{"id": "4000059", "video_name": "a47ffa0b-94c9-595c-a6b7-e0455226637f", "text": "A dozing cat, a video of the moment when the cat\u2019s head rises and falls "} +{"id": "4000060", "video_name": "8cc6877f-27dd-5fc2-90c9-baf63e718caf", "text": "A beach Message: nocs (Font: MODERN) "} +{"id": "4000061", "video_name": "9f2e8e8d-97d7-5c06-be47-07972325cec3", "text": "Design a chatbot that helps users discover and recommend books, movies, music, and other forms of entertainment based on their preferences and previous selections. Integrate user ratings and reviews "} +{"id": "4000062", "video_name": "384ca2c8-e573-51c6-833f-2e7112b2e561", "text": "Alon man, standing on valley, wind, back side, 2d animation, loop "} +{"id": "4000063", "video_name": "311476ba-3e1e-5db9-808e-b30de293a788", "text": "Panda likes to give birth to babies in the cracks of rocks. "} +{"id": "4000064", "video_name": "6895e576-9dc8-516c-bab3-49ca86a5fb44", "text": "Cattle floating in the skyCattle floating in the sky "} +{"id": "4000065", "video_name": "36873016-b4b7-5284-8136-555f03429c1b", "text": "people running away from a nuke hitting a city, 4k, unreal engine, Cinematic, ar 16:9 "} +{"id": "4000066", "video_name": "e696231a-6c37-521c-b18b-b565d241e27a", "text": "1800s freemasons military zoom in film "} +{"id": "4000067", "video_name": "c528cd48-a56e-5eac-98ab-0c4751129584", "text": "a woman hanging from a cliff "} +{"id": "4000068", "video_name": "a97cb57f-aa83-5a1c-ab8f-7fc02c56e3e5", "text": "human android with a pearl earring\uff0cmovie lighting, ultra high definition, cg rendering ,volume lighting ,unreal engine "} +{"id": "4000069", "video_name": "feee0eda-cdde-5027-9888-2d98ff8e0555", "text": "giant hurricanes sweeping through a village "} +{"id": "4000070", "video_name": "7b0724fd-a9ce-5660-a916-63ad37c3a373", "text": "a man wearing a black hoodie all over his head and a his with no face instead they is a Dark over his face "} +{"id": "4000071", "video_name": "b832820d-5083-5621-b5c0-7b34d6e04ad7", "text": "a beautiful village side with a house in a background with a clear moony sky "} +{"id": "4000072", "video_name": "ade9c5d4-e41f-5259-8aac-4490aafaaa42", "text": "natalie portman with flames in the background, 4K video, rich details "} +{"id": "4000073", "video_name": "f7972e78-4e7d-5062-994f-f1c7063cc291", "text": "golf club girls Message: LightSPA (Font: MODERN) "} +{"id": "4000074", "video_name": "88cf53a3-cb23-5204-b61e-f6ba03e8d1f8", "text": "Integrate shooting stars streaking across the screen as metaphorical representations of dreams and aspirations taking flight. "} +{"id": "4000075", "video_name": "48abbd86-27ed-56a3-a349-4ad6ef7d3209", "text": "Inspector CCG Arima drawing full hd no slowmotion "} +{"id": "4000076", "video_name": "a1837ded-2626-5a81-92b7-f0bb0fcab5e1", "text": "someone exploring a liminal place walking in pool rooms backrooms no voice high rtx quality very realistic and recording with vhs "} +{"id": "4000077", "video_name": "878a3d8e-c384-5d57-9b5a-0ca33e340f10", "text": "satoshi nakamoto with bitcoins fighting ethereum "} +{"id": "4000078", "video_name": "0afab882-46c9-5ed8-8963-a3a4a7536d3b", "text": "wise old man gazing out over mountains at sunset "} +{"id": "4000079", "video_name": "a0eb5269-c4bb-5c95-8e4a-8085946b1e45", "text": "One girl going to jungle at night "} +{"id": "4000080", "video_name": "2fff7a69-f2d6-52a4-878a-4aca1a124e95", "text": "a single candle flickers, whimsical style, earthy tones, spiritual basis "} +{"id": "4000081", "video_name": "8bc9dc39-4104-5f3f-b028-7460e6f77b25", "text": "office building in Geneva, you can see cars passing by in front of the building "} +{"id": "4000082", "video_name": "63d54bbc-422b-5ee1-8f90-6d0ede25066b", "text": "The lion watching the mouse with a mixture of amusement and kindness "} +{"id": "4000083", "video_name": "e7b5e936-edd7-570f-ae43-ca1f0b7753b1", "text": "Beautiful Queen Wearing a crown with a beautiful multicolored skyline "} +{"id": "4000084", "video_name": "9bb0962c-f602-5cb2-9e2f-fa82e6b5b3d7", "text": "Asia, China, Classical, Masculinity, Reinforced Concrete World "} +{"id": "4000085", "video_name": "afa74e0c-dff3-5d12-aa43-e13ce89c7704", "text": "cozy coffee shop with wooden chairs and tables and plants playing vinyl "} +{"id": "4000086", "video_name": "5c201d60-a4de-53ea-90bc-3166a6573219", "text": "please make a guy and a girl who are hugging, under the sunlight in the fog in the forest, creating a loving atmosphere "} +{"id": "4000087", "video_name": "74e8f013-30ba-56c2-bb68-de5745ec8f65", "text": "a susteinable building in a susteinable city "} +{"id": "4000088", "video_name": "4dc83610-0720-58dd-811f-44c6fcfb60f5", "text": "slavenian looking girl is in the middle of after apocalyptic burning city, She in front of a microphone, singing and playing guitar "} +{"id": "4000089", "video_name": "d15c982f-76ed-56ca-9213-86cf4a4fd9fb", "text": "kids drinking water at the park on a sunny day in south africa "} +{"id": "4000090", "video_name": "88ebdbd2-ac9e-5c8f-bbe3-7cbe0017a7ff", "text": "a courtroom judge covering his eyes with his hands, photorealism, cinematic, motion 5, 24 fps, camera movement "} +{"id": "4000091", "video_name": "53dfe19f-9d30-5689-a838-4d982ebffc7e", "text": "Mans nails screeching against the door, leaving behind desperate scratch marks. "} +{"id": "4000092", "video_name": "dc6af5b6-3b20-58e4-ba22-75a734b4745b", "text": "let the clouds thunder in the forest, 2d animation "} +{"id": "4000093", "video_name": "ff8923f1-9764-5d12-a3f2-ea2f3afb4b46", "text": "Black muscle car corevette 1976 follow "} +{"id": "4000094", "video_name": "edff4311-ef1d-524d-a2d2-dca3145518aa", "text": "The old man talks about strange creatures he saw in the forest.studio ghibli Message: 1 Attachment "} +{"id": "4000095", "video_name": "fbf93055-20e1-576c-a119-14d7a2bb0555", "text": "a car chase in new York "} +{"id": "4000096", "video_name": "d2376c37-7962-598d-9208-b2602cffd984", "text": "bear wearing vr glasses looking in the camera, on the background rusty debris broken trees in the misty foggy scary woods in the dark evening \u2013ar 16:9 "} +{"id": "4000097", "video_name": "f25e9950-e539-53ce-a519-893c40d0dcb7", "text": "leon kennedy walk Cinematic beautiful Lighting hyper realistic 4k dark mode "} +{"id": "4000098", "video_name": "c8550e8a-81e0-5eac-99b4-9325677766e9", "text": "ark 90s film from a 1990s Screen grab 90s, At the entrance of the court, pickets wearing white clothes and white masks patrolled with flashlights.,majestic and solemn , Surrealism, Occult film "} +{"id": "4000099", "video_name": "9b0a2c4c-6903-5390-9f21-27cd6829ab98", "text": "zoom in Whales swimmimg in dark sky with auras borials from norwey , HDR "} +{"id": "4000100", "video_name": "048ff3e2-7a35-5ea9-8980-c9ebc8292f6b", "text": "Huge high school building with lots of teenagers "} +{"id": "4000101", "video_name": "c92d92f9-4e17-5355-a5d4-b08765b49cff", "text": "Together, they turned their attention back to protecting the city, leaving behind the echoes of their clash. "} +{"id": "4000102", "video_name": "a0ac1c1a-efae-5cdc-aacb-8b57f67ed116", "text": "Animation in anime style, flat shading, Man standing still, messy blonde hair, brown eyes, hair blowing in the wind quickly, Flames coming out of his body, bright red colors, sertious expression. still camera "} +{"id": "4000103", "video_name": "53ca1559-e66b-54f9-b035-139c0bdb4e1c", "text": "a video in which a plane is crashing in a wall of fire "} +{"id": "4000104", "video_name": "029434a9-18fd-5e4f-9653-db4d7926d4e8", "text": "make this image walk forward cinematic style "} +{"id": "4000105", "video_name": "58ee27a5-381c-532f-bd8b-93a3bd3610e3", "text": "a funny blue alien creature with spiral eyes and tentacles for arms. "} +{"id": "4000106", "video_name": "daba0dd8-8f3b-5072-a693-9a9f28f6834b", "text": "realistic 8k video of fireworks, motion:4 "} +{"id": "4000107", "video_name": "74ae783a-ecb7-59ee-b61c-ce6623ea2e15", "text": "animated image with a little girl with parrot, later it should display text as cherry cartoons "} +{"id": "4000108", "video_name": "ea09f193-d7da-5e9c-b972-9b87cdac9347", "text": "ladygaga is dancing in the swimming pool "} +{"id": "4000109", "video_name": "b36a2f89-6a2c-5027-a46f-44ed7b4be89a", "text": "a man standing still with his head down as everyone near him is running around. Red sky and red fog. Format HD.16.9, 4K, masterpiece "} +{"id": "4000110", "video_name": "26b84b23-081b-5e88-8a6f-b80899ff899b", "text": "strong man playing a deathgame against his greatest fear. "} +{"id": "4000111", "video_name": "a2ac8530-977a-51f7-86f1-d6651e6cbd51", "text": "a beautiful girl in a summer dress running through a flower field at sunset "} +{"id": "4000112", "video_name": "99e13f8d-a29a-5e61-8a89-b531b2304ec1", "text": "Fighting image, two warriors, fantasy setting, 4k, realistic, misty, wind blowing "} +{"id": "4000113", "video_name": "3f0b2396-b7b5-5aef-8e5d-5a6d8d1e75d5", "text": "a woman smoking a sausage cigarette with a pink lighter "} +{"id": "4000114", "video_name": "c592a223-f7aa-580a-989c-343169387752", "text": "fish tank Message: ASHY (Font: MODERN) "} +{"id": "4000115", "video_name": "832d53d5-022d-5c3c-a60a-57ade3e30901", "text": "virtual studio for youtube video creating "} +{"id": "4000116", "video_name": "8c29ef1a-cb8d-5704-b945-10a35df75c2f", "text": "Interstellar Journey, Cartoon Astronauts Traveling in Space, Spacecraft, Milky Way, Nebula, Far Blue Planet "} +{"id": "4000117", "video_name": "9ea2e4e9-a976-565a-bcfc-1c06a1331b69", "text": "A futuristic science fiction scene of a monk standing in front of a quantum computer, in the stlye of roger deakins, cinematic "} +{"id": "4000118", "video_name": "09be1e8f-88d2-5b10-b10f-3efc0255787b", "text": "a ghost with many teeth black and white old German expressionist movie style "} +{"id": "4000119", "video_name": "8177a131-4f06-504b-9f88-a47fc6f4701c", "text": "1970s arthouse film of a lighthouse in a storm "} +{"id": "4000120", "video_name": "fe7061ed-dfea-5ed4-87da-58c897e87aad", "text": "A person overthinking about life and their family "} +{"id": "4000121", "video_name": "505ce403-0e06-5779-a4ac-924a4a9f1884", "text": "womans eyes glowing with purple black light "} +{"id": "4000122", "video_name": "d2cf43bc-8af9-55e2-98e0-ae7f8c702c88", "text": "eye on move Message: 1 Attachment "} +{"id": "4000123", "video_name": "8a671d5c-7f75-573e-b1a8-9ea54e6dc74c", "text": "push start on the title screen is glowing "} +{"id": "4000124", "video_name": "de420d86-2831-59f6-b09c-389db51934f7", "text": "Delivery motorcycles are loading up and delivering to town "} +{"id": "4000125", "video_name": "5776d5fd-9de3-5079-9973-de030ef28341", "text": "joe biden smiles proudly while standing alone in front of the scentsy head office with the scentsy company logo mounted on the building "} +{"id": "4000126", "video_name": "17ac220a-5ff9-564b-93df-d24c7e7fdf73", "text": "young journalist looking for a thrilling story. dark night. brown color shirt. brown color backpack "} +{"id": "4000127", "video_name": "bf5d2cf9-f067-5c62-987a-78c2a32e18d8", "text": "Shrek running away from a yellow dog "} +{"id": "4000128", "video_name": "b8df7245-7e62-55cb-be10-d8e80561cdb0", "text": "AND THE CAT SAVES HIS FRIEND FISH FROM THE DRAGON SHARK "} +{"id": "4000129", "video_name": "c12624b9-76f8-57da-8b62-6cb1d3df85f5", "text": "3d animation boy kids dance and try to catch fish "} +{"id": "4000130", "video_name": "2e7a3cbd-17c1-535f-96f0-9a885c01b2c5", "text": "one big banglow hall and fantacy look beutifule and so misterius . "} +{"id": "4000131", "video_name": "8a635c10-4d57-5b48-b031-b4251f558b31", "text": "society collapsing due to current problems\ndesperate and stressed person for not finishing all the work they have to do "} +{"id": "4000132", "video_name": "463eed48-7cfc-5e27-a5f2-e6357e75f7fc", "text": "thousands of planes flying in the air bubbling over the battlefield, cinematic realistic scene, 4k video "} +{"id": "4000133", "video_name": "ea9eb8c9-2ada-5adb-913c-503d6d57907c", "text": "a fox is chased by a lion in a forest , realistic "} +{"id": "4000134", "video_name": "c2fcd303-2460-5875-8e22-66d91da40e43", "text": "The Moral Lesson: The story concludes with a moral lesson emphasizing the importance of harmony and cooperation among companions, highlighting the negative consequences of discord and conflict. "} +{"id": "4000135", "video_name": "b0205233-1ae7-5a23-879b-0e8b0abb8462", "text": "A dance of fire and water "} +{"id": "4000136", "video_name": "298e1696-0bf0-552d-8181-1eacf9e0a3bd", "text": "a white nurse cleverly managed limited resources "} +{"id": "4000137", "video_name": "3bba090b-5699-561e-8e37-f8e375a078a2", "text": "text Snow is a gray kitten with a fluffy body shivering in the cold wind "} +{"id": "4000138", "video_name": "c7894353-0403-5aa6-9f2c-fd2c7c148ee3", "text": "a very fast spinning object of light refracting of it with ghosts flying around it "} +{"id": "4000139", "video_name": "15e5b786-72de-53a1-91f9-1b3f3209004f", "text": "a horror movie surrealism folkloric film retro style old fashioned esoteric character tilsa tsuchiya "} +{"id": "4000140", "video_name": "3c4061a5-e497-5350-907c-6d482e953287", "text": "Lana De Rey as the president of the world "} +{"id": "4000141", "video_name": "9685bd63-5cbd-5174-b27a-eecb4d538974", "text": "super tall car in very Futuristic city, gopro camera, shot from the car window, camera filter, realistic, real footage wide camera "} +{"id": "4000142", "video_name": "8797b70d-7542-5859-a573-a612d171dbde", "text": "chinese landscape painting style, Birds fly away in thousands of mountains, and people in thousands of paths disappear. the man fishing alone one the shore chinese landscape painting style, Birds fly away in thousands of mountains, and people in thousands of paths disappear. the man fishing alone one the shore "} +{"id": "4000143", "video_name": "2d93ebdf-40a9-57dc-9e3c-9403559d7da4", "text": "Mark Zuckerberg silently standing in the Colosseum "} +{"id": "4000144", "video_name": "c8d3bffb-d047-5906-887f-f13f61b62a3a", "text": "sexy woman covered in tattoos flipping off the camera "} +{"id": "4000145", "video_name": "dcb97cb4-98d7-5c08-80e4-c2220c86e81e", "text": "cinematic Film, Drama Film, two people walking in a park, Sunny day, happy, slow motion, Long shot "} +{"id": "4000146", "video_name": "23e751e6-202e-5c9d-b83f-a86df0ce55b9", "text": "shah of iran in vampire clothing "} +{"id": "4000147", "video_name": "06cdd268-a1f5-56be-ada6-19ab3894128e", "text": "a bunny with green and purple color, making cookies, smile "} +{"id": "4000148", "video_name": "99b0ddd3-de70-5765-bb66-5b5a91ae9e7b", "text": "opening a cryptic book, dark background, ray of sunlight, cinematic, 4k "} +{"id": "4000149", "video_name": "2909bef4-cb03-53d3-b84a-6137faa5d1cd", "text": "the sai shi hili is holding a rainbow sword\uff0cin the style of cyril rolando\uff0ccaptured light effects\uff0c intensely colorful explosions rainbowcore\uff0canimated\uff0cenergy\uff0cfullbody\u3002glitchy\uff0ckawacy\uff0cin the style of colorfulexplosins\uff0clight leaks\uff0cpsychedelic illusration\uff0cgod rays\uff0crainbow core\uff0cmixes realistc and fantastical elements,fairy academia"} +{"id": "4000150", "video_name": "12172ecf-e88b-53f6-9b3c-7dadf1c11802", "text": "a smiling and winged ham, a sausage with sunglasses and a creamy chop on top and a ribs with smoke coming out moving "} +{"id": "4000151", "video_name": "7db9955a-8b33-5f2b-9a1b-032e71cbecdd", "text": "A mudslide rushes down from the mountaintop, cascading down the slope until it reaches the bottom of the gorge, continuing its path towards the village, presented in a 3D animated style. "} +{"id": "4000152", "video_name": "fa236233-b845-5271-ac90-6d22b09fdbd1", "text": "the civilization of Bharatvarsh, especiaily the Ganges valley civilization "} +{"id": "4000153", "video_name": "12a4b857-d606-542f-923d-cb7404635757", "text": "In a sunny little town, there lived a boy named Xiao Chen. Every day, Xiao Chen faced small challenges, determined to solve them on his own. "} +{"id": "4000154", "video_name": "34447b7e-e1af-5b9e-b8b2-7336fe261fa3", "text": "A boy is playing with a tigert "} +{"id": "4000155", "video_name": "b2450da8-a19d-5f00-b8db-b6d59bceb090", "text": "a group of school kids sitting waiting for the bus, colourful, pixar, 3d animation "} +{"id": "4000156", "video_name": "3086d9d1-b884-596f-a61c-a7be20062942", "text": "A couple with their clothes torn "} +{"id": "4000157", "video_name": "64f2f6c4-0b17-5912-b2a6-e81d1e8f4353", "text": "magical, sparkling texture, overlay, fantasy, beauty, liminal, mystery "} +{"id": "4000158", "video_name": "676c8e64-1b98-561b-81fe-7ad2e31479e8", "text": "She quickly ran away, on the street paved with cobblestones,Come over and smile "} +{"id": "4000159", "video_name": "da657731-9749-51d2-b819-4d4a4013c50d", "text": "a couple doing coition on a beach "} +{"id": "4000160", "video_name": "7df7dff9-9aca-52a7-8a6f-bb9a4c6ce078", "text": "a man named joko sitting on the chair, content but contemplative "} +{"id": "4000161", "video_name": "170d7463-759f-5a5c-a97e-5705f536c1ca", "text": "Generate an image of a thrilling India vs. Pakistan cricket match with a packed stadium and players in action "} +{"id": "4000162", "video_name": "72665f11-9b36-56ce-90a4-2bd3e2af3c2b", "text": "a logo design for tax saving ios app "} +{"id": "4000163", "video_name": "8d003415-43be-5a4a-aad8-80d33052d316", "text": "a astroid is heading to earth and some one was in a house "} +{"id": "4000164", "video_name": "6a01cc20-a13c-5e90-a98b-f85245053b35", "text": "The wind gently blows, and her hair moves. Nothing else moves. "} +{"id": "4000165", "video_name": "e9bb8689-4c1a-522c-9cd3-4eb7946f0e82", "text": "mom hugs her daughter who dances ballet "} +{"id": "4000166", "video_name": "38ba6170-d5a0-5423-b526-9783ca21bf62", "text": "They stand on the threshold of the dark forest, uncertain about their journey. "} +{"id": "4000167", "video_name": "e111b948-07be-5ee2-9b78-86a2c50e120d", "text": "a futuristic hover train moves through the desert "} +{"id": "4000168", "video_name": "5f336182-5874-53b1-98d2-f92a97a2c3c2", "text": "Cosmic web of energy going through space "} +{"id": "4000169", "video_name": "8a4909ae-1175-53bc-b7e0-d4ed48e5a440", "text": "On the surface of the moon, astronaut footprints remain on the dust "} +{"id": "4000170", "video_name": "75d0e63c-2417-5896-a03d-7d346b64bca2", "text": "double decker bus Mercedes g class "} +{"id": "4000171", "video_name": "5b7d1554-5bab-52bd-94c3-b4d0bc0df983", "text": "Once upon a time, in a quaint little village nestled deep within an enchanted forest, there lived a young and curious girl named Amelia. "} +{"id": "4000172", "video_name": "520d26ff-526f-55e3-b178-cd9538ac014e", "text": "fearful horror Shadows begin to dance, and eerie whispers echo through the dark corridors. "} +{"id": "4000173", "video_name": "5de9a098-8e3d-5874-8eb0-597a1fa9ea3d", "text": "A wide shot capturing the distant Eastern landscape, zooming in on a longan orchard. "} +{"id": "4000174", "video_name": "ab695ec5-20e9-5af7-8b76-6a80655c92d6", "text": "animation of a 3 year old boy with curly hairs, so beautiful, riding on the Venus planet surrounded by fiery galaxies and stars "} +{"id": "4000175", "video_name": "661c0461-3b0c-5bcf-9867-fa11e66fba81", "text": "fire flames calm in the night smoking rastafary "} +{"id": "4000176", "video_name": "f59bd926-7ca1-5b55-9a5b-c6889d06be4e", "text": "a wallpaper with red waves moving gently "} +{"id": "4000177", "video_name": "055bc00f-bed9-5d65-b45d-ff7d00f886a6", "text": "Sunshine is fragrant, and the wind is sweet "} +{"id": "4000178", "video_name": "528251be-db12-5034-81b6-79010db7c512", "text": "a beautiful stunning girl is walking into the water at the beach, palm trees swinging in the wind, neon realistic style, vibrant high vibrant vivid colors, moon shimmering silhouette, anime manga style "} +{"id": "4000179", "video_name": "0842eaed-96d0-56af-a7df-d6af773dfbff", "text": "world war 3 cities being destroyed, dramatic lighting, sunset, ar16:9 "} +{"id": "4000180", "video_name": "5bd5d94b-b35b-5e6e-a3af-7d86e2eaaa23", "text": "A panoramic view of the coral reef at sunset, casting an ethereal glow over the underwater landscape. "} +{"id": "4000181", "video_name": "90bceecd-4176-531a-9139-d2d9206ab41a", "text": "cinematic video black blue green colors the excavator demolishes the building "} +{"id": "4000182", "video_name": "aba62ae7-bc92-56a9-949d-29967f5c083e", "text": "psychedelic mandlbrot encapsulated in a glowing sphere, cymatics, ferrofluid "} +{"id": "4000183", "video_name": "16eb4715-97b9-5874-80ff-9d5993ae4962", "text": "In the heart of a vast and otherworldly field, where reality and imagination intertwine, two mighty superheroes engage in an epic battle that defies the limits of the known universe. The field itself is a mesmerizing landscape, bathed in the radiant hues of an alien sky that seems to pulsate with ethereal energy. The grass beneath their feet is a living canvas, a surreal blend of colors that shift and undulate with each step, as if possessed by a force beyond comprehension. Luminescent flora, strange and exotic, dot the landscape, casting an otherworldly glow upon the battleground. "} +{"id": "4000184", "video_name": "19b29b8d-0533-58d0-a732-e04dd02837d4", "text": "Hd Real world underwater world A variety of fish seagrass "} +{"id": "4000185", "video_name": "54ccdfbd-f039-542b-a9be-7a30683c4b8f", "text": "cctv footage of bird shoplifting in store "} +{"id": "4000186", "video_name": "20878186-9890-5fe2-adee-55cbf017e7d0", "text": "a steam punk style dwarf faving the camera while trying to work in the garden. There is a lot of snow. "} +{"id": "4000187", "video_name": "8996d1b2-5ba7-595a-b425-f88e1f58391e", "text": "Raji is 25 years old. He has a very beautiful face and very beautiful hair. He looks directly at the camera and speaks "} +{"id": "4000188", "video_name": "df8d8030-853c-5314-a8a9-b7014d4e0a97", "text": "a man wearing a blue jumpsuit shining thr boot of a man wearing a blue suit "} +{"id": "4000189", "video_name": "26fa7642-78b4-5c13-af65-d98248746cd2", "text": "Paint a picture of the kingdom facing a natural disaster, conveying the intensity of the crisis. Depict scenes of chaos, distressed citizens, and the challenges that Morar confronts. Highlight the emotional turmoil and urgency "} +{"id": "4000190", "video_name": "624acb73-102e-539b-9457-86b31d555e1f", "text": "hd no imperfection, highly detailed flying video of the center of eart in agharta "} +{"id": "4000191", "video_name": "44f67bf6-1ce9-5e4b-af8f-820b1ad0ec09", "text": "Animated depiction of a company struggling with slow and complex digitalization processes "} +{"id": "4000192", "video_name": "0f03431c-099d-576b-8d21-3e4b4bf356c6", "text": "screen full of light pink cotton clouds\uff0cmovement "} +{"id": "4000193", "video_name": "e9296607-033b-5c4a-ac57-ccc7215ba355", "text": "fullbody shot of a group of people in top of a Bitcoin tower with a panoramic view of a city, purple, bluish color cypherpunk style and cryptocurrency surround "} +{"id": "4000194", "video_name": "07b2fba6-0848-5dd4-914c-92a22bb93b19", "text": "Movement of an octopus spewing charcoal "} +{"id": "4000195", "video_name": "48023577-0bc8-539c-a01f-9dbbba744015", "text": "a young girl painting a picture in nature, romanticism painting style "} +{"id": "4000196", "video_name": "47aac602-22ca-5556-88d8-b68e58d57b13", "text": "office desk with coffee on the table and window view of rain fall with lush greenry in the background "} +{"id": "4000197", "video_name": "2cc96d7a-c08c-599d-956e-87e4bfec8a88", "text": "a guy in a bar pooring a red cocktail "} +{"id": "4000198", "video_name": "9cea1627-e8cd-5933-8836-3c8945d8b10b", "text": "The astronauts are on the planet "} +{"id": "4000199", "video_name": "dfd2c3ce-2120-5d7b-94e6-3d8ea1ebaa94", "text": "washington d.c. aerial view in 1865, 4k, in color "} +{"id": "4000200", "video_name": "d3cdd5ee-f0e4-53cd-879a-5dab86d13fba", "text": "young man singing on top of the highest mountain, zoom out spin drone "} +{"id": "4000201", "video_name": "06058b8f-1f3f-5b6a-b0d3-335cc60a0449", "text": "We are in an Israeli kibbutz, IDF soldiers are sitting around a table with Israeli civilians, and in the background Gaza is burning "} +{"id": "4000202", "video_name": "cc26312a-3964-5989-9690-a540f5b3037f", "text": "Footage from a cheap, low budget 1970s sci fi movie of an astronaut discovering a martian aircraft on mars "} +{"id": "4000203", "video_name": "4fe0edcf-aefc-55ad-baa3-8e7078e1033b", "text": "A man laughing with a young child "} +{"id": "4000204", "video_name": "ab702580-7a75-560c-9f87-3a12589eb248", "text": "jandek playing guitar while talking about politics "} +{"id": "4000205", "video_name": "18643de7-7a46-5168-a638-06da7ed9bbde", "text": "a bear fighting with a leon "} +{"id": "4000206", "video_name": "17047265-4e73-57e2-b18f-6532488d3506", "text": "An animated background of red colors in the style of Disney Pixar Message: I love u dear (Font: MODERN) "} +{"id": "4000207", "video_name": "e22ecfa3-92f7-5b7c-91c2-069f57670910", "text": "step brother playing with step sister in the bathroom "} +{"id": "4000208", "video_name": "d865ec71-904b-593b-a197-7edc9bfe45aa", "text": "a technicolor skull with attached spinal column is laying on a bed of plastic moving is lower jaw as if speaking 4k "} +{"id": "4000209", "video_name": "ac20f1c9-24de-5c50-a578-8500e4f198c7", "text": "a boy is preparing himself for the endtimes before Jesus returns "} +{"id": "4000210", "video_name": "8a124268-38b7-5225-8ab0-62aa616c18d5", "text": "A stormy night, rain pouring down in sheets, lightning illuminating the dark sky, creating a dramatic and moody atmosphere "} +{"id": "4000211", "video_name": "5dd387b1-11b6-5cbe-890e-085e8b3a0cdb", "text": "They danced and cheered on Halloween. "} +{"id": "4000212", "video_name": "484d0a41-04c0-5279-8d67-ff759eb09f37", "text": "in the stillness of nature , discover the voice of your soul by ancient native American standing on the mountain and talking with wind blowing "} +{"id": "4000213", "video_name": "0e5424d7-699e-5d4b-835a-d56b7f1b5556", "text": "a dark red moon, cosmic sky, moving "} +{"id": "4000214", "video_name": "5f679c79-0e9b-54b7-86ee-8063778753b0", "text": "The image shows a man standing on top of a mountain, silhouetted against a starry night sky. He is holding a flashlight in his hand, which is pointing up at the sky. The man is wearing a blue shirt and jeans, and he has long, dark hair. The mountain is covered in trees and rocks, and the sky is filled with stars. The image is taken from a low angle, which gives it a sense of scale and perspective. It is a beautiful and inspiring image that captures the wonder of the night sky "} +{"id": "4000215", "video_name": "2727a93d-f89e-5cf5-8563-d191fabb89e2", "text": "The Digital Circus character Jax sits at the table and looks at the computer. Jax looks like a skinny lilac bunny wearing a pink onesie, which has a light pink pocket on the front and two yellow buttons. He also wears yellow gloves. He has oval eyes with yellow sclera and black rectangular pupils, yellow teeth, and two long, solid lilac ears on the top of his head. "} +{"id": "4000216", "video_name": "ac62bd54-3fc6-5a27-b8d5-2a3706f8df47", "text": "animate of a arabic dictionary page with entries of words and definitions. "} +{"id": "4000217", "video_name": "7dbe7c3c-9c45-558e-ae8d-f2ad821497eb", "text": "pennywise from stephen king it novel appearing in a children library "} +{"id": "4000218", "video_name": "9b2068f3-f9da-5a57-82f8-327fa49de9f6", "text": "Ayanokoji Sitting on his Desk Looking straight then moves his head towards the window, anime style "} +{"id": "4000219", "video_name": "5d8a622c-f554-5209-842a-d3a1be2bcd5e", "text": "buddhist monk transform into supersayajin level 1 "} +{"id": "4000220", "video_name": "220a4742-3971-5503-a094-a33632c23a21", "text": "compact disc 1980 in the space with a guitar purple "} +{"id": "4000221", "video_name": "f532587c-c92c-5efd-a983-e8fd7c374444", "text": "a Saudi Arabia Railway locomotive being repaired "} +{"id": "4000222", "video_name": "10e67203-7d38-5172-968d-16af3d3d6d39", "text": "demon feel sorry and praying for forgiveness "} +{"id": "4000223", "video_name": "c81febd9-8d44-5877-bbd7-c053f95d0b9a", "text": "the big high brick bridge, many bricks falling down breaking the structure of the bridge , animation "} +{"id": "4000224", "video_name": "a6a49095-15bc-551d-ad2c-21bb5ca14733", "text": "a multidimensional cosmic cathedral splitting dimensions to reach earth "} +{"id": "4000225", "video_name": "700a3c94-a475-5f3d-a6b8-72520bcd7768", "text": ": storm and dark father troopers breakdancing on dance music "} +{"id": "4000226", "video_name": "5a25e1ef-394b-5fea-9e42-26dcc15970e0", "text": "Santa and the elves decorating the North Pole with candy canes, glitter, and colorful ornaments., ultra realistic, hd 5 "} +{"id": "4000227", "video_name": "ec008211-a175-5566-bd3c-3d6176cdd361", "text": "A doctor look like Patrick Galen Dempsey is working on the desk alone. "} +{"id": "4000228", "video_name": "78dbc518-2467-501f-9d14-a044a34f2651", "text": "a man laying bricks in a circle around himself, realistic "} +{"id": "4000229", "video_name": "e3b82735-72b3-5102-9b93-b58068b2baa3", "text": "But in fact, mushrooms are our everything! "} +{"id": "4000230", "video_name": "1cc484e1-ae04-5955-acf0-b86be2abf42a", "text": "a crowd of grandmothers in colorful dresses stands in a crowd of fans, next to an advertising poster depicting a man, in the airport hall, there is light around, futurism, realism, 16:9 "} +{"id": "4000231", "video_name": "32df42c0-2b80-58fe-b6de-f085963145a6", "text": "Determined to uncover its secrets, A Handsome and cute Boy Timmy decided to retrieve the key. "} +{"id": "4000232", "video_name": "0c40946f-efa3-52cf-a507-f085f3861db1", "text": "8 teenagers talk and laughing with each other in a room at night, dark lighting and high definitions. "} +{"id": "4000233", "video_name": "9837b4fc-67bc-5062-a8bc-4c0b81e9c262", "text": "gesture pencil sketch of an image you can see half of the sky without clouds and half with clouds changing and moving fast in the wind , dramatic scene , low angle "} +{"id": "4000234", "video_name": "c6739ba4-4cee-58db-8ec3-845f7e093880", "text": "art nuvo elevator from 1925 opening its door sideways, inside there is a huge light "} +{"id": "4000235", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "super 8mm footage of overweight builder building a wall "} +{"id": "4000236", "video_name": "2786d983-cd57-5187-9c86-82bd7975da9a", "text": "a cute cat is writing a proposal "} +{"id": "4000237", "video_name": "75de2e6e-24c9-54ad-8a45-0106667cc426", "text": "image to video, girl sipping coffee and blinking while taking cup back to table "} +{"id": "4000238", "video_name": "4241b075-5a73-5e6c-9040-4000d7942012", "text": "Hologram of a spiritually enlightened saint "} +{"id": "4000239", "video_name": "1a1cb79a-8945-58e1-b8c2-6e758296152f", "text": "uncontrolled animation, made with magazine clippings "} +{"id": "4000240", "video_name": "2ec37f08-e60a-59bb-baa9-f937991e76b8", "text": "love heart flying with the wind at night "} +{"id": "4000241", "video_name": "f5bd3af9-da81-5385-9e59-dad2b6848a63", "text": "a puppy driving a race car with a cowboy hat "} +{"id": "4000242", "video_name": "73dd1a62-30dc-5cbb-9df9-4aa3d91f689c", "text": "Legacy of Friendship: An elderly Lily and Emma sitting on a bench under the same cherry blossom tree. The village children gather around them, listening to their stories of friendship, passing down the tale through generations. story like "} +{"id": "4000243", "video_name": "a0ced21f-04ab-5a2b-a0f6-2f723494a3f7", "text": "A young couple looking at the highway illuminated by cars. City lights and sky with sunset color. Wong kar wai film style, Realistic image and in 4K. "} +{"id": "4000244", "video_name": "0f6e8296-919c-59cb-abee-c7db32baccf3", "text": "The suitable image for the scene would be a turtle slowly and steadily climbing a tree. The turtle can be depicted carefully advancing on the tree trunk, with intricate details showcasing its strength and proficiency in climbing. Natural colors that convey calmness and stability can be used, while highlighting the true details of the turtle and the tree. This image would beautifully and inspiringly reflect the mentioned scene "} +{"id": "4000245", "video_name": "c1685e2d-1ec6-57b3-8f0f-82d459bcb076", "text": "a black kitten looking at a travel bag in front of him , view from his back , 4k photo "} +{"id": "4000246", "video_name": "375ca82d-1fbb-59b8-9e1c-27e0aa02ce3b", "text": "a dawn photo through wind shield, 3 rows of lane control light above the road, 4 green arrow sign lights and 3 red cross sign lights in each row "} +{"id": "4000247", "video_name": "170f8cf7-032b-58a1-9b06-53925ad07a3a", "text": "A historical image of Warren A. Bechtel alongside the original Bechtel Corporation office or construction site. "} +{"id": "4000248", "video_name": "65bb162d-288d-5677-9600-5c1c40ca3f76", "text": "full shot of three teenagers sitting on a couch looking worried as one of them is on a landline phone call "} +{"id": "4000249", "video_name": "88cc877e-63e2-5c7e-8edf-10efe681ed46", "text": "a flash bolt from sky is flashing through the screen, cinematic lightining, sunset lightning, shot on a canon d5, "} +{"id": "4000250", "video_name": "99161b41-2db4-56ea-824b-9749dbe9ca7d", "text": "A boy running in a beautiful village with froent face "} +{"id": "4000251", "video_name": "4cc512f6-82e0-5302-95fa-3d2fa30d514a", "text": "a dark underground room containing a large bed, a chest, a table, and an arms rack "} +{"id": "4000252", "video_name": "9c2c5d44-b375-5192-bd62-d3dbfbbdb063", "text": "restaurant scene with pizza and cheese everywhere "} +{"id": "4000253", "video_name": "d8138b8f-3983-5a7d-b5e0-923c7c296d42", "text": "wide shot of MCU Ultron turning his arms into massive weapons with nanotech, mcu ultron design, cinematic, in the middle of a destroyed New York City, shot on a very ultra wife angle lens, focal length 12mm "} +{"id": "4000254", "video_name": "68fff68a-19b6-56d7-af48-fe7095977220", "text": "Complete black designed Apartment Bedroom with big Windows, sight at a Skyline at night and Rain outside "} +{"id": "4000255", "video_name": "51becd37-6972-5e99-b149-1ec6c84c1f04", "text": "robot taking afree kick back view clearly see the curve to bin goal "} +{"id": "4000256", "video_name": "a45709ed-d876-54ef-827e-53df5e1a5764", "text": "people coming out of a tipi wearing slippers to find a supply drop with smarthphones and smart watches, sunset, realistic "} +{"id": "4000257", "video_name": "397244ee-4aa4-5da3-892c-ef687df5f9ef", "text": "philosopher David Hume as a manatee "} +{"id": "4000258", "video_name": "de1d402f-a0f1-52bb-a4c5-ad58bb7038ad", "text": "It was all good and happy, but now those happiness and memories have turned into pain, sad love. "} +{"id": "4000259", "video_name": "6a5a090f-481f-5863-a10c-fe60e1ee68df", "text": "animation of a mr beast challenge "} +{"id": "4000260", "video_name": "e23bf42b-0e26-5758-ab06-6f7bf3bd0cfc", "text": "a white boy in an American backyard eating japanese candy with friends "} +{"id": "4000261", "video_name": "94e4357c-44dd-5101-af69-5e9ab52aa16e", "text": "Rendezvous with Rama. Ultra HD slow motion and realistic "} +{"id": "4000262", "video_name": "db2e3675-8f4b-52a0-ae8e-b28cdbe7beab", "text": "The rabbit is entangled in vines. Realistic, high definition picture with 16;9 screens "} +{"id": "4000263", "video_name": "a11612ea-b3ad-5276-9a4e-1e3c735bd876", "text": "a panoramic view of the Eiffel Tower on a beautiful sunny day. "} +{"id": "4000264", "video_name": "5a33eefe-d031-59a3-a68e-c11fecd47dad", "text": "candy house like casette player is playing "} +{"id": "4000265", "video_name": "c2e863ec-60a6-5e4c-b1df-8f27aa513973", "text": "10 seconds video, pinkish red owl flying in the air, side view of the owl, flying to the east "} +{"id": "4000266", "video_name": "c9e9ed90-0d7f-5210-902f-81db2812e3cf", "text": "Describe the texture of the chutneys. "} +{"id": "4000267", "video_name": "3f4ab889-4759-5d1e-b2dd-5dacc97f0a69", "text": "masterpiece ,best quality, anime style, fluffy miniature owl with poodle hairstyle,going down a slide on a skateboard, comic, high detail, super realistic "} +{"id": "4000268", "video_name": "b4ded1e7-b3f8-538b-b3d9-14eff4f66080", "text": "A classroom with students paying attention to the teacher. "} +{"id": "4000269", "video_name": "3ed09aa0-a44e-5707-a6da-21baea58feed", "text": "PROFESSIONAL full body photo featuring a 30 years old man (with thin hairline) standing and facing camera. He is standing still in the center of a bustling street and appears as a still point in a sea of motion blur caused by the slow shutter speed. "} +{"id": "4000270", "video_name": "00047e94-39b6-58ad-910f-f8b408bf16c5", "text": "greek god looking down from mountain Olympus "} +{"id": "4000271", "video_name": "37856676-0e9e-51eb-ac5c-4385ac4f7a67", "text": "Animate Whiskers and Buddy climbing the gentle hill, showcasing their teamwork. "} +{"id": "4000272", "video_name": "a7d06100-27e9-5846-a5c1-f9ee73bb68a5", "text": "Great Wall of China damaged with excavator "} +{"id": "4000273", "video_name": "50ea5d77-77bd-5a1a-ad3c-4b99d5dd2ae0", "text": "A group of Indian Women Message: Rajan Darling (Font: MODERN) "} +{"id": "4000274", "video_name": "a49dbe24-f383-5063-b67e-34d9d20f4691", "text": "space punks laughing and eating in 1980s starship galley, used future, cassette futurist "} +{"id": "4000275", "video_name": "5d8e3bb7-7f44-57bb-bde6-0e117488808d", "text": "a lion that stands up like a human "} +{"id": "4000276", "video_name": "140ab258-b805-5ed2-8501-7210443b6eac", "text": "They stumble through a practice routine, hilariously improvising. "} +{"id": "4000277", "video_name": "7c739fd3-3e5b-500e-b94e-8fc558e681c2", "text": "An egle fly in the sky along with a jet "} +{"id": "4000278", "video_name": "1c90c6de-3e35-5e09-9635-b70ae2244754", "text": "A picture of palm trees silhouetted against the moonlit sky, creating a serene and tropical vibe. "} +{"id": "4000279", "video_name": "e996aca3-3984-5516-b117-4b6f33690f42", "text": "a hand shows a photo of a 1950s woman a dark haired brunette with glasses. modern gothic office building. 50s nyc. atmospheric. mist. Art deco. cinematic. Black and white film noir. Heavy shadow "} +{"id": "4000280", "video_name": "566b62fe-3c53-58c6-81be-a78324e15037", "text": "2 people slowly walking towards each other on a deserted beach "} +{"id": "4000281", "video_name": "79a61365-026d-5f59-a8a8-872e5e1017df", "text": "ranforest image with some animals walking in this place "} +{"id": "4000282", "video_name": "2e1f6d24-8058-5bad-8f67-a43d06e5d3ea", "text": "The girl slowly lifts her head "} +{"id": "4000283", "video_name": "ab8419ea-fafc-5b37-95f5-18d772ba2753", "text": "Stingray and starfish Illustrate their journey through colorful coral reefs, racing against speedy clownfish. "} +{"id": "4000284", "video_name": "b1f78377-d4f3-5146-b2ba-08e6e6a2979f", "text": "Sergei Lavrov is a member of the Wagner PMC "} +{"id": "4000285", "video_name": "5d328f2f-1bea-5094-8683-055783467d8f", "text": "Girl and boy doing a video for tiktok "} +{"id": "4000286", "video_name": "6e6ee41e-c9bc-597b-b17a-68e28adf26ed", "text": "A young man quickly put on his party clothes in his room. Message: 1 Attachment "} +{"id": "4000287", "video_name": "a83606f2-a7b7-55ee-8461-b998ec8d48d9", "text": "A kid sleeping on bed with an open window and city view from window "} +{"id": "4000288", "video_name": "06bae025-8b9e-5808-9c74-32cbd8878454", "text": "rotate and move up and down "} +{"id": "4000289", "video_name": "819f90e8-01eb-5094-a25a-0044ea6d580b", "text": "tea and a lighter in the backdrop having winter hong kong "} +{"id": "4000290", "video_name": "62c6019c-5cfc-5331-a3d2-7f1dd0e380d6", "text": "smoke, night, Moonlight, 9:16, Camera zooms in to reveal the front door slowly creaking open, revealing a family standing hesitantly outside. "} +{"id": "4000291", "video_name": "b402120d-a73c-5df8-9c66-c3b2d4549fc1", "text": "world of warcraf versus avengers. explosive final episode trailer. "} +{"id": "4000292", "video_name": "c3cfee49-69fa-5656-aff3-4b908d75f870", "text": "skateboarder jumping on a halfpipe, fisheye lens, extreme wide angle, ultra realistic, high detail, oil painting, dehazed, golden hour, sunset, silhouette, volumetric lighting "} +{"id": "4000293", "video_name": "2fee9557-6789-5a52-84bc-cd13d02400d7", "text": "a butterfly morphing into a cute baby "} +{"id": "4000294", "video_name": "2053e14b-c84e-53a5-be5b-e252dd4f0c74", "text": "Lilly was a little girl with bright blue eyes and curly golden hair. She lived in a cozy house on the outskirts of a small town. Despite the charm of her surroundings, Lilly was often filled with fear and trepidation, especially when it came to going outside. "} +{"id": "4000295", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "A chilling medieval scene depicting Vlad III, known as Vlad the Impaler, dining at a long table set up among rows of impaled enemies, with a dark, foreboding castle in the background. "} +{"id": "4000296", "video_name": "afc5cf54-3854-57e2-9ea7-faf250e5c140", "text": "She was determined to stay alive until the leaf fell, "} +{"id": "4000297", "video_name": "9f368f29-3c53-56d7-a038-ee87aa7d70f5", "text": "create a flying pegasus in sky "} +{"id": "4000298", "video_name": "989d024e-e588-5140-ac11-b7f0f4ee4308", "text": "a baby crawling on the ground in a diaper, wearing fitness gear, very very very beautifull face, cute animal, blue shoes, boy, tintin, happy apearance, teenage, bumblebee, he is very happy, photo of a beautiful, bixbite, coherent body, old picture, getty images, very fit and extremely muscular, on all fours "} +{"id": "4000299", "video_name": "311b4e2f-db6d-584b-98d8-949dcfce351d", "text": "An illustration of a mountain with lightning and clouds in the style of Impressionism with a wide aspect ratio. "} +{"id": "4000300", "video_name": "5de83b8d-815d-571b-a7d2-44546ddbe106", "text": "thomas edison fighting nicola tesla with their inventions "} +{"id": "4000301", "video_name": "ad26e16f-424c-5297-acf4-cd73e7a6dcaa", "text": "jack playing soccer football in their school field, cinematic shot, 8k "} +{"id": "4000302", "video_name": "f53f2c29-d257-5166-a3c3-6babbcc79832", "text": "zooming out video of forwarding arrows. follow green, yellow ,pink, blue forwarding arrows flying fast to the right side. The backgroung is AI black and neon blue space highly detailed 4k "} +{"id": "4000303", "video_name": "80d914c6-3a41-531e-a157-3ff0cd5a156a", "text": "a guy study by the fireplace in an old house ,4k "} +{"id": "4000304", "video_name": "7290ef6f-5f47-5de0-84ea-4f581f076d36", "text": "beautiful glossy shining Ceramic Delftware people holding a large burning sage wand smoke chases away the negative energy in the style of Wes Anderson "} +{"id": "4000305", "video_name": "07eb0de3-f0a8-5bdc-a9cc-d3158591b45d", "text": "a boy with specs wearing a space craft mouth speak "} +{"id": "4000306", "video_name": "2046ade1-df94-5569-bfa2-91888be7df74", "text": "Help me generate Tiktok promotion pictures of Sonic Apple game "} +{"id": "4000307", "video_name": "2737d995-8e71-5b6a-bea8-125e2e5d5685", "text": "She is dressed in a light summer dress that frames her figure, accentuating her elegance. Her long legs create the illusion of endless grace. "} +{"id": "4000308", "video_name": "01fcc75b-5bc9-5cf9-b2cc-60979c56a159", "text": "Aerial view of an uninhabited island, pristine nature spreads out, 2100s, landscape from a drone. This scene showcases the pure beauty of the island and the future exploration technology. "} +{"id": "4000309", "video_name": "66598215-c71c-5fad-8158-e5c8add85d97", "text": "place called Misty Mountain, cartoon, disney style, 8k, camera zoom in "} +{"id": "4000310", "video_name": "edac946a-894d-53a3-94dc-102d37f70952", "text": "The most beautiful girl in the universe. "} +{"id": "4000311", "video_name": "e9595579-e0ef-538e-94c7-c08a53b9607b", "text": "a red porche car on the road and camera is looking at the wheel "} +{"id": "4000312", "video_name": "23739ca0-ba41-5409-9c11-aeb58fd4a77b", "text": "a turtle walking in times square "} +{"id": "4000313", "video_name": "db2b1cfd-4bcc-51f2-9f1f-d46393ceb653", "text": "a world made entirly out of glass. hyperrealistic, defracted light. "} +{"id": "4000314", "video_name": "009475fc-6d09-5c4c-bd6e-33ac7294427d", "text": "The ghost is walking inside the haunted house "} +{"id": "4000315", "video_name": "31b939d9-122e-5e8a-8a70-58a6f61b8038", "text": "Crystal lotus blooming on the water with hillside in the distance, blue background "} +{"id": "4000316", "video_name": "6cf9ef2c-2f99-5f8b-a716-e95496c662eb", "text": "Create an image of a handsome Hindu Priest with a fair complexion, seated in a serene temple environment. The priest should be dressed in traditional Indian attire, wearing a white dhoti kurta. A prominent red tilak should be visible on his forehead. The priest should be depicted facing the front, as if captured in a video still. He should be holding a red book in his hands, symbolizing sacred scriptures or remedies. The atmosphere should exude a sense of tranquility and spirituality, with the temple surroundings adding to the sacred ambiance. Ultra HD "} +{"id": "4000317", "video_name": "5d13152c-3d21-55ca-856e-5110b1a16ce7", "text": "Video of a bald man suffering bulling "} +{"id": "4000318", "video_name": "e6f9a73e-fc3a-536c-a3d8-6ed270bcb966", "text": "burger materials dropping one by one "} +{"id": "4000319", "video_name": "dc4ec5f8-0007-5e55-b8ed-9daf8e2de98b", "text": "emji is bought at vending machine. "} +{"id": "4000320", "video_name": "fb78cdc5-c83f-50ee-9134-2bad96a871b0", "text": "beautiful golden luminous particles flash, white stripes move, black background "} +{"id": "4000321", "video_name": "e0105e7f-5fd5-5694-917c-08ea258344f5", "text": "a young cheerful boy holding a flag in his left hand "} +{"id": "4000322", "video_name": "44d9375f-1f27-5ea7-9184-056630f2d84c", "text": "yellow light is showing in dark rook "} +{"id": "4000323", "video_name": "5abbfed6-9914-5545-9d7b-4533414993aa", "text": "A cozy study room with shelves filled with psychology books, a young person reading attentively. "} +{"id": "4000324", "video_name": "ff6b2911-bd6e-5e87-bbc2-4bf9d6a7f952", "text": "Dwayne Johnson flying on a mop, more movement "} +{"id": "4000325", "video_name": "1e071bd1-9d2b-5131-92ff-62dc8f182bb4", "text": "train traffic light changing from red to green "} +{"id": "4000326", "video_name": "9c719860-cb94-53de-a49d-6d151cae0639", "text": "darth vader, disappointed watching the news, ultra 4k, hdr, apple video "} +{"id": "4000327", "video_name": "3722a683-4f05-5d58-a704-741cea64788b", "text": "a house around the snow and evergreen tree "} +{"id": "4000328", "video_name": "3d0462d2-3af9-53cb-9e05-2592c2159746", "text": "mustang mach 1 GT if ghost rider transforms it, with firey background "} +{"id": "4000329", "video_name": "59fba5b9-53b8-53bf-913d-89f23faf4ccd", "text": "Cinematic view, musician Nat King Cole sings and plays piano "} +{"id": "4000330", "video_name": "696466d8-d958-52d2-8c23-31923c32d866", "text": "charlie and the chocolate factory, charlie plays the piano "} +{"id": "4000331", "video_name": "132d6f22-4fb7-554d-8a46-72cb04dee8a8", "text": "km the bright morning detailed garden full of cherry blossoms and sakura and green grass 8k hyper quality "} +{"id": "4000332", "video_name": "cb8b17f4-d896-5aad-8b70-0e105e65165e", "text": "slow motion,open her eyes,camero pan left to right "} +{"id": "4000333", "video_name": "a49b9d93-94b9-5882-9b18-a5d96ca9d8f1", "text": "camera moving through epic viking battle scene, fantasy movie, cinematic, volumetric lighting, kodak 2383 film stock "} +{"id": "4000334", "video_name": "ccf97d65-a0ea-5110-a21e-32237b25f771", "text": "the trees are getting smaller and bigger Message: 1 Attachment "} +{"id": "4000335", "video_name": "7b2146d8-0faa-5825-806d-6b3fc34a8fab", "text": "realistic will wheaton hatching from an egg "} +{"id": "4000336", "video_name": "76a93949-57bc-58df-a645-9e9b553c32dd", "text": "From the moment they met on the first day of kindergarten, their bond was unbreakable. "} +{"id": "4000337", "video_name": "37bd7b02-2e0a-5fff-98b0-5c88adce6a83", "text": "Rama and Lakshmana set out to rescue Sita, and they were joined by an army of monkeys and bears led by the mighty Hanuman. "} +{"id": "4000338", "video_name": "8ed93369-54fe-5f25-8d9b-c5629e73d4ef", "text": "Ghostly bus walking through a dark town of terror "} +{"id": "4000339", "video_name": "08aea30b-720f-57d9-8e1b-89f6ffd20bd9", "text": "lava skeleton spider exoskeleton glowing with electricity "} +{"id": "4000340", "video_name": "af2093dd-5a93-5536-afc2-dfd83fcee821", "text": "gloved hands moving because a soldier is speaking in front of the camera "} +{"id": "4000341", "video_name": "831bf5e4-bab3-5e18-a599-d6e293b9279d", "text": "As the night deepened, the flowers sent the little cat YoYo home, leaving behind beautiful memories and the little secret under the moonlight. "} +{"id": "4000342", "video_name": "e36d747f-b98b-5e45-8729-a6b41052a4ff", "text": "Cute Baby owl smiling and looking up from a tea cup "} +{"id": "4000343", "video_name": "86cf2308-fc04-5454-93e9-be28658d3879", "text": "flock of birds flying, blue sky, clear, anime style, trending on artstation "} +{"id": "4000344", "video_name": "b9ccc820-f2a6-5a0a-880b-3ababb39b529", "text": "the burger is fall to down "} +{"id": "4000345", "video_name": "348dad18-bf35-5642-93d5-ca6b87d2dd27", "text": "gale force winds blowing shrubs over as if they were touching the ground "} +{"id": "4000346", "video_name": "8f8bfce1-676b-52c0-8ddc-02519040c4bc", "text": "buzz lightyear flying through a toy house "} +{"id": "4000347", "video_name": "1a11383d-17ec-5461-aaf9-6a8154ad261b", "text": "view from inside car, man sitting in drivers sear seen from behind, city street outside, driving "} +{"id": "4000348", "video_name": "272edc3b-679e-5f5b-becf-0516758e3eb4", "text": "A man walking with a tied lion "} +{"id": "4000349", "video_name": "70c54822-84ae-5f13-9261-e1b81a021e46", "text": "kfc Building, on the left is the kfc store, on the right is the kfc building, the scene is night "} +{"id": "4000350", "video_name": "3da0b388-1591-5cae-8d81-17dfbbc29a2f", "text": "run through the streets of new york "} +{"id": "4000351", "video_name": "03a30f11-c909-5a9a-8048-c00fba36af61", "text": "growing giant DNA tentacles, blue, white, giger art style "} +{"id": "4000352", "video_name": "91da8f85-5627-5fd4-98c8-92efeb41f919", "text": "illustration of The magnificent and luxurious palace of the Kingdom of prambanan. "} +{"id": "4000353", "video_name": "906d2414-68a5-5e74-be33-ea0538a2514b", "text": "hyper realistic very strong fire and ice mingling in half, expanding and moving so fast to the highest peak, cinematic dramatic, realistic style "} +{"id": "4000354", "video_name": "28c5cb17-90db-5065-b71b-90508e758cf5", "text": "a great white shark with feathers on its back diving deep into the ocean "} +{"id": "4000355", "video_name": "bb0f9757-ffcd-52f1-b8c1-5412f8af5909", "text": "Snow is falling in the Nordic forest, and the trees are covered with heavy snow. "} +{"id": "4000356", "video_name": "9cab9641-7955-583f-a85c-c03db41fb0fd", "text": "An anime girl, white hair, big blue eyes, walking in the street, dreamy feeling, bright colors, tall buildings, streets, street lights "} +{"id": "4000357", "video_name": "1af1c7ef-47d7-566a-8834-f9521da1be12", "text": "Screensaver for Youtube channel Movies, TV series ar 9:16 fps 24 "} +{"id": "4000358", "video_name": "df903eae-7c1f-5d0f-b402-61022177acd3", "text": "a lion fighting with a rabbit fiercely. Rabbit is giving a tough fight "} +{"id": "4000359", "video_name": "85be38a6-5225-5e5a-abf7-7cb48fac0e1a", "text": "drip honey from the spoon to the bread on Wood table background kitchen set 3d view 360\u2070 "} +{"id": "4000360", "video_name": "fb6d91d7-3f54-5ebf-a431-be6ff895018e", "text": "a girl with her pet walking in the jungle "} +{"id": "4000361", "video_name": "560b77cf-d49e-51a7-ab69-2d7eb83ef518", "text": "drinking water commercial scene when a glass is filled with water from tap "} +{"id": "4000362", "video_name": "db4b5070-a477-5a96-be31-38d55e3573e8", "text": "a animated video preview for a store named Aquamor "} +{"id": "4000363", "video_name": "166d03ff-f50f-5cb4-9379-548fedf8c3f7", "text": "Village in a desert lights midnight shining moon and start, palm trees around. "} +{"id": "4000364", "video_name": "c9699c1a-e047-5ec8-bc27-2f83bd16bc18", "text": "money rains on Joe Biden, cinematic "} +{"id": "4000365", "video_name": "ffb6347a-7952-5e20-9f19-c96fd0073bc3", "text": "geometrical spikes pearcing to each oder "} +{"id": "4000366", "video_name": "d3daf5c8-1950-5098-bd58-fde0e0a2efd7", "text": "An elephant pedals a bicycle on the highway "} +{"id": "4000367", "video_name": "62554d46-736f-5a1d-9087-0952065cf507", "text": "On a shimmering lake reflecting the colors of the setting sun, a celestial woman with a radiant halo floats serenely, emanating an aura of pure grace and beauty. "} +{"id": "4000368", "video_name": "c589d20e-8b1c-54e0-9368-a9c37ef7d9cb", "text": "you emoji. finger pointing at me "} +{"id": "4000369", "video_name": "9d1fca89-032f-5f03-93d7-ab6f4dfa64c0", "text": "painting depicting the following ideas: Just when you least expect it, you encounter a roaring river you need to cross, "} +{"id": "4000370", "video_name": "cb086f09-36fd-5765-9899-17ef5aa282b4", "text": "one man dressed in a white sheet walks with a staff across the field, the rear view is far away, there is only one person with a staff in the frame "} +{"id": "4000371", "video_name": "a9cfbd63-d252-576f-9dda-d1f1cfac0233", "text": "A departed man walked in the crowd with a box in his arms, and he was the only one facing the camera. camera zoom in "} +{"id": "4000372", "video_name": "66b823eb-b080-5221-902e-2b38083fd97c", "text": "Link of The Legend of Zelda with a gun "} +{"id": "4000373", "video_name": "9c2a59b1-ceb4-5269-82cb-5e1b9397e66b", "text": "tour leader with group near mountains "} +{"id": "4000374", "video_name": "15621119-f078-5919-bf41-4e9e94cd2983", "text": "Curious) Archaeologists were baffled and excited. The Sweet Track, as it would come to be known, was constructed with a level of sophistication that defied expectations. "} +{"id": "4000375", "video_name": "255306ac-5c87-56e9-8ea1-654aee79d551", "text": "american football game full of people Message: 1 Attachment "} +{"id": "4000376", "video_name": "61920094-79d8-51c5-ae65-76635ceff441", "text": "Opium, a mysterious and dangerous substance, would provide an instantaneous flash of pain, but it would also present risks. "} +{"id": "4000377", "video_name": "ee9f61d9-8952-560a-a671-c8f73689ee6b", "text": "a huge white fox in south pole "} +{"id": "4000378", "video_name": "5adcd490-8561-59ad-8abd-bb7838a3e356", "text": "the battel of hours of man msn walking on action "} +{"id": "4000379", "video_name": "08d8ef2c-2363-564c-99ba-0758d941ef66", "text": "a snowman walking through a sunny village by rene magritte , andreas rocha, tim burton"} +{"id": "4000380", "video_name": "b714a289-ffca-5583-ba30-5a758efa0248", "text": "yellow leaves against azure sky Message: 1 Attachment "} +{"id": "4000381", "video_name": "353c0a83-78b0-50a5-ae44-18372b53480f", "text": "Pascal Campion animation of elephant running "} +{"id": "4000382", "video_name": "a38e7005-eac9-529e-8e10-6951d693204e", "text": "A forest with tall trees, trees moving, light air, photo from above, fast movement, noon time, tall grasses, distant mountains in the background, birds flying in the sky, fast moving clouds "} +{"id": "4000383", "video_name": "2288ae6f-0937-5c84-9664-29c7080a3738", "text": "make video about feature life on earth "} +{"id": "4000384", "video_name": "7c845e68-f250-5096-b9f5-34fd710d1e1f", "text": "A video excavator in the forest "} +{"id": "4000385", "video_name": "97f8f71c-5e57-5a00-8828-b88a4e4bf92b", "text": "A plastic bag is flying through the sky, with a sandy beach in the background. "} +{"id": "4000386", "video_name": "054bde7a-3875-5cb4-bbc4-27f039d19526", "text": "Despite the leaps and bounds in our technological advancements, the makeup of Earth\u2019s core continues to be a mystery. "} +{"id": "4000387", "video_name": "78652b5f-2c3b-5b95-ad37-62349a09616e", "text": "word ZRPY is spinning in the cube, utra realistic "} +{"id": "4000388", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "PIXAR STYLE, A COMPUTER PROCESSOR INSIDE AN ICE CUBE, AND THE CUBE MELTING "} +{"id": "4000389", "video_name": "35b59bcb-8f77-5ca4-903b-1eb81bec628a", "text": "In the shadows of deceit, where secrets lie "} +{"id": "4000390", "video_name": "3273bee1-9bf2-5fb2-b11a-38870d5b6802", "text": "montage of the great wall of china "} +{"id": "4000391", "video_name": "cc7b5329-6297-5b98-81b3-70ef8ce34c69", "text": "simple looking soundwaves coming out of speakers "} +{"id": "4000392", "video_name": "a1005113-989e-55de-bafb-f8a67ea00e17", "text": "a bee in a zumba class at the gym "} +{"id": "4000393", "video_name": "89aa9239-d400-533c-9b56-53adce44eb51", "text": "fabric in pink, fashion, india, realistic "} +{"id": "4000394", "video_name": "1e395cd6-94e3-5241-b658-ee9e76322d97", "text": "a cat wearing a pirate hat standing on his front paws no gravity "} +{"id": "4000395", "video_name": "72dad4cf-845c-54d3-8457-7fba856906c7", "text": "A pineapple teaching a math class to apples. Cartoon style "} +{"id": "4000396", "video_name": "fb16fab6-5e0a-5d6a-8f27-11433e705ffe", "text": "an astronaut walking on an icy barren planet with hp lovecraft creature watching over him in the background, wide shot, ground level shot, tracking shot, crane shot "} +{"id": "4000397", "video_name": "3b8c3ab3-ca59-52af-9169-5c6f0cfef4b0", "text": "a bear raving at a festival "} +{"id": "4000398", "video_name": "9f9ee259-5e45-5b9d-b146-6e588c90bb62", "text": "crispy chicken burger deicous yummy, morcco, slices, layers cheese "} +{"id": "4000399", "video_name": "a777c605-2cf5-52e2-bb9e-e1e1951af49a", "text": "pouring melted chocolate close up shot "} +{"id": "4000400", "video_name": "189ab16f-4384-5b1f-8835-07296532be4c", "text": "Grief consumed his being, blurring his vision as tears streamed down his face. "} +{"id": "4000401", "video_name": "d0c1856b-3ed7-5320-9a26-2754d30ea770", "text": "a snowman dancing to electronic music in a crowded nightclub "} +{"id": "4000402", "video_name": "54a9b009-3c24-5936-b0a4-a1c09902b466", "text": "Ionospheric Heating: One of the notable experiments conducted by HAARP is ionospheric heating. This involves directing a focused radio frequency beam into a specific region of the ionosphere, causing it to heat up temporarily. This can lead to the creation of artificial auroras and is used to study ionospheric phenomena "} +{"id": "4000403", "video_name": "db812909-d411-5adc-b74f-15b929e20afc", "text": "indian god well armoured in battlefield "} +{"id": "4000404", "video_name": "f2fa2ec6-8260-5770-bc2b-5ff361dafc61", "text": "few people helping 30 students with study materials "} +{"id": "4000405", "video_name": "f570b8f0-ae0c-5a8e-a44f-6054f23fe7b7", "text": "cctv infrared footage of a ghost in a night alley in scottland "} +{"id": "4000406", "video_name": "9451a842-6f8a-5b23-bfe1-d702509cc598", "text": "A little girl holding a corgi playing on the grass, face straight. "} +{"id": "4000407", "video_name": "3f9b1b75-18ac-5eae-85d4-6c592a593cdd", "text": "seven winter big jackets fly in the sky "} +{"id": "4000408", "video_name": "9143741e-122d-513d-95e3-3ed4c73ebd87", "text": "Aerial shot of the drying river, capturing the distress of the animals and the withering landscape. "} +{"id": "4000409", "video_name": "e92db050-6a5a-51a5-80fc-7978d56a933a", "text": "anime alien space captain made of falafel "} +{"id": "4000410", "video_name": "c87bf0c4-c7cc-5dd1-94d9-9715e4b87111", "text": "the animated plastic water bottle in the road and the vehicle are moving fast "} +{"id": "4000411", "video_name": "cbe12173-706f-54c3-b6f5-a01db35a4f72", "text": "A cute little girl saying Hi my friend "} +{"id": "4000412", "video_name": "fcfc00db-ba2f-5ae8-a39c-2625a47c012c", "text": "Generate an image of a soldier named Hans standing amidst a serene forest at dusk. The scene should capture his contemplative expression as he adjusts the strap of his military backpack. Use soft, dappled lighting to create an atmosphere of introspection, and ensure that the towering trees surrounding him evoke a sense of both isolation and the unknown journey ahead. "} +{"id": "4000413", "video_name": "bc1eff1b-0155-53c5-b8d3-7fae27e9a76d", "text": "a cinema studio behind the cameras Message: SABELA (Font: MODERN) "} +{"id": "4000414", "video_name": "8cb0c738-c7b3-53ff-9b11-a163b9bf3d76", "text": "Pick a song with a good beat and rhythm that suits the dance style you have in mind. Ensure you have the right to use the music without copyright issues. "} +{"id": "4000415", "video_name": "e7325925-502d-534a-b4bc-54bf84c63981", "text": "loggia computer workplace with computer chairs at night in urban rain with tres spathiphyllum anime style without people, golden ratio, fake detail, trending pixiv fanbox, acrylic palette knife, style of makoto shinkai studio ghibli genshin impact james gilleard greg rutkowski chiho aoshima Message: 1 Attachment "} +{"id": "4000416", "video_name": "0d087596-db16-508d-9f4d-5f81d1853e2a", "text": "back view of girl sitting on chair in a study room near window wearing headphones and using laptop and from window sky with full of stars and moon show from slight curtains of window "} +{"id": "4000417", "video_name": "15b5653d-40bc-55c4-b4cc-79927611a19b", "text": "a man walking into his back yard with a pool green with algea. "} +{"id": "4000418", "video_name": "cf36fe27-c9e7-5b5e-9f5b-28a5ff3449f3", "text": "masterpiece, trending on artstation, highly detailed, digital painting, art by artgerm and greg rutkowski,8k resolution "} +{"id": "4000419", "video_name": "ce838ccc-6aaf-558b-b626-5244d9fecb29", "text": "a scene where it is snowing in front of a church 24 fps, HDV "} +{"id": "4000420", "video_name": "5b195629-9dd0-51d3-a019-0ec93eb98eb2", "text": "francesco pope body builder,photorealistic,wide angle shot "} +{"id": "4000421", "video_name": "0123061b-d278-561a-9062-5e870f139dcb", "text": "Forrest Gump gets up from the bench and runs out the window "} +{"id": "4000422", "video_name": "1d1ae9f0-e0ed-51d8-8da3-beb5539ab1b6", "text": "The man relax on an evening cruise: Kick back with drinks and canapes, and enjoy live music as you drift past some of the best London landmark "} +{"id": "4000423", "video_name": "57323b3e-e459-5b49-bbd5-e224a0c467c7", "text": "a children\u2019s book illustration of a flamingo in a pond in the forest "} +{"id": "4000424", "video_name": "a30674f6-f460-568e-974b-65756dfb6053", "text": "At night I could not help thinking about the origin of this announcement "} +{"id": "4000425", "video_name": "6616d7cb-6c53-5f3d-99a4-0f36affb2e13", "text": "door opening, haunted PS1 style low resolution graphics "} +{"id": "4000426", "video_name": "80e9b751-5250-5b74-aa3e-7681dbe51afd", "text": "rustic alley way, flooding with water, lots of reflections, portal in the sky, green foliage blowing in the wind of the stormy weather, "} +{"id": "4000427", "video_name": "aaa246e2-0498-5e69-8bea-bfea4148ab74", "text": "the woman woke up startled and sat up sharply on the bed Message: 1 Attachment "} +{"id": "4000428", "video_name": "059b2be9-b58d-5fe5-b73d-d5862584d35a", "text": "Beautiful woman feeding a dragon on the top of a mountain, anime, intricate detail, Neon, glowing, "} +{"id": "4000429", "video_name": "37a43b9d-c550-5d48-acbb-953f87acbb7d", "text": "pegasus jumping on luminous fluffy clouds, fantasy, 4k, high definition "} +{"id": "4000430", "video_name": "ffd975be-6e72-513e-afc3-258d11a4dba2", "text": "An energetic young entrepreneur is doing morning exercises on a yoga mat at home, with the rising sunlight filtering through the window. "} +{"id": "4000431", "video_name": "3e09c21d-98be-54da-bca7-09ce7fb9561c", "text": "Imagine an empty world full of, dark expanse stretching infinitely. "} +{"id": "4000432", "video_name": "de6c33d7-de36-5764-889e-a3c14e01598e", "text": "purple light shining in a room with a bed and a television, tokyo street cityscape, , other bedrooms can be seen, shot on 135 mm, neon circles, dirty room, tokyo street, balcony, the window, enter the void style "} +{"id": "4000433", "video_name": "79997d9e-e92a-57ac-95b7-523d4076fbd3", "text": "from behind we see justin trudeau sitting alove at a desk in a well lit room "} +{"id": "4000434", "video_name": "7753800c-3bdf-55e2-8e7a-8fd5ec223b2c", "text": "fly flowers , open flowers, 10 seconds "} +{"id": "4000435", "video_name": "1c69d79e-8e41-515e-beb1-112e73b9b7e8", "text": "squirrel looking inside a door in tree,3d character "} +{"id": "4000436", "video_name": "fdad9a50-acfa-536e-8a5b-66725a5e6c40", "text": ": magical golden clock with rewinding clock hands "} +{"id": "4000437", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "The baba orange with water droplets is jumping with joy "} +{"id": "4000438", "video_name": "4988103b-f9a8-54a2-b62e-77564a027581", "text": "Inside of a Breast Cancer clinic With all its high end machinery "} +{"id": "4000439", "video_name": "2ff68786-3333-51b0-a1b1-ba61a93a35da", "text": "terror alley backlight, camera movement zoom out Message: 1 Attachment "} +{"id": "4000440", "video_name": "eadab9f4-0f9f-5ff2-9bc9-13b38600de1c", "text": "man riding the horse in the wind Message: Brothers War (Font: COMICS) "} +{"id": "4000441", "video_name": "3a477040-01b2-5e8d-94e0-5ef48f602a9e", "text": "Generate a visually appealing video scene portraying the sentiment of some Canadians getting tired of constant comparisons to their neighbors down south. Use bright scenes to convey the individuality and resilience of the Canadian identity, creating a visually rich narrative without relying on text. "} +{"id": "4000442", "video_name": "e90714a9-901c-5da4-bd5a-ddd10020494f", "text": "three different colour sheeps Playing in garden "} +{"id": "4000443", "video_name": "05401224-de97-5316-8c51-4514beb98e0f", "text": "pickle comes to life and scares a cartoon beaver "} +{"id": "4000444", "video_name": "24eb6c3a-6efc-5499-ba05-1c4d44479b1d", "text": "the identity of dasein heidegger or for me sartre no gender in patology of depression in style salvador dali, style cubism "} +{"id": "4000445", "video_name": "322a263c-9515-58d2-bdfd-2846be0d4fa3", "text": "In the heart of the dense forest, four friends ventured, "} +{"id": "4000446", "video_name": "d5f58308-3e3a-5d93-8de2-de6d011a2789", "text": "One star among many, but the only one that shines brightest, shines orange Fell from the sky like lightning And it turned black Still at its end, it flashed in strong shades of red this video need more 10 seconds "} +{"id": "4000447", "video_name": "bc4d2fde-cb2c-5cbd-a66b-7b825f064b79", "text": "imagine open book on the ground of flower valley that zoomes out "} +{"id": "4000448", "video_name": "d23bad8a-6d52-5644-9d0c-d0801cfc73ce", "text": "Blonde surfergirl with blue eyes dancing on the beach. "} +{"id": "4000449", "video_name": "8d958507-235c-5a18-bfbe-10f818862b68", "text": "chocolate cheesecake with shining eyes, on the luxury plate "} +{"id": "4000450", "video_name": "6a924f02-f5cd-5165-9bfc-eb18d40f066d", "text": "create an image of the animal they meet on their journey,including colorful and unique creatures each displaying their pesonalities "} +{"id": "4000451", "video_name": "dcc7500d-e7c7-5244-b109-f504b9a1b8ef", "text": "A boy lay down in the bed wearing headphone and blik his eye,4k realistic "} +{"id": "4000452", "video_name": "5a8cfe23-302a-504b-bf8f-c38c27e9075e", "text": "two business men in close up having an argument, 4K "} +{"id": "4000453", "video_name": "95d47e1e-9b77-55e0-b521-a848fe1af6c4", "text": "The camera tracks her gaze, reflecting the urban elegance in her eyes. "} +{"id": "4000454", "video_name": "8eb17dfb-422d-5a01-9aee-03e3681f20d7", "text": "create a video for two minutes, the first part of the video the builder walks around the new building, the second part of the video the builder in the new apartment with equipment doing building inspection "} +{"id": "4000455", "video_name": "092e67de-4e17-56eb-b079-118b35c961e0", "text": "fantastic lights from the vulcano, uhd, ultradetailed "} +{"id": "4000456", "video_name": "84e34950-b51f-53a8-ab6c-6d6134580e83", "text": "fullbody,marshmello face punk style hoverboard, big x branded hoodie, render, Leonardo da Vinci, cgsociety, artstation trending, no background "} +{"id": "4000457", "video_name": "fff570ab-8dfe-56da-a517-857dde733e74", "text": "a person using an AR headset to visualize a 3D model of a building, hyper detailed, hyper relastic,highly resolution, 3d animation style, "} +{"id": "4000458", "video_name": "0dc4d7b7-e060-543b-9acb-bc334b5df388", "text": "a taxi driver sitting in the car, looking at the camera and starts smiling "} +{"id": "4000459", "video_name": "36458fac-497b-5731-9b33-d493a6da0292", "text": "Video company OWlCapital featuring snowy owl "} +{"id": "4000460", "video_name": "50e05fc9-5ee4-5ee7-bca2-a46ba36ce361", "text": "Futuristic cyberpunk robot, 8K HDR, masterpiece, best quality "} +{"id": "4000461", "video_name": "fd04310f-10a5-54c9-8db5-f4267566e3da", "text": "campfire flames flicker upward making the shape of a dancing girl "} +{"id": "4000462", "video_name": "1777998f-6a85-533f-aeb5-8130da03c315", "text": "Pompons And the repompons! (\u2026) in magritte style "} +{"id": "4000463", "video_name": "8e0ec49b-b7fa-5376-b4b7-c5dea5ed5935", "text": "1970s Eastern European horror film, an unspeakable horror looms over a dockyard "} +{"id": "4000464", "video_name": "dd03f04c-e846-5b48-be5f-bf801f7d0986", "text": "Life in the desert is a daily struggle for survival for the Sandwalkers. Write a story that follows a group of young members of the tribe as they embark on a rite of passage journey to find a legendary oasis said to possess magical powers. What challenges will they face, and how will they learn valuable lessons along the way? 4k ar 16:9 "} +{"id": "4000465", "video_name": "590f9762-b3fb-53ec-a223-799d6ffde013", "text": "creatures crawling down concrete corridors, russian animation black and white film lithograph 1900s "} +{"id": "4000466", "video_name": "2482d7e6-5da9-5c61-9638-6e9de14f67bb", "text": "cofee dachshund in the park, camera zoom out, camera rotate clockwise Message: NINO (Font: MODERN) "} +{"id": "4000467", "video_name": "34de86fb-4e3a-5170-8e98-fbe769cdc54e", "text": "A young man carefully places his headphones on, creating a cocoon of music around him, as he settles into his seat at the table in a room filled with the promise of focus and concentration. "} +{"id": "4000468", "video_name": "7ef8c82e-fcd0-5aaa-8301-849ac95c0a92", "text": "dogy sitting on a tree and tree sitting on earth and earth sitting on sun and sun sitting on galaxy and galaxy sitting on universe "} +{"id": "4000469", "video_name": "dc104aa2-92ea-528d-96d4-54f4d8156ff6", "text": "Pixel art black cat in red coat walking in dystopian city at night with full moon "} +{"id": "4000470", "video_name": "c1666c18-2efe-5f03-913a-1deb38aad3a7", "text": "wide shot of madurai temple in tamilnadu "} +{"id": "4000471", "video_name": "14ec3664-1fd6-5ecc-b0b8-edbf7af10523", "text": "knights fighting with swordss with flash at night on a snowy mountain "} +{"id": "4000472", "video_name": "9978b9df-3545-5168-8cff-10f9e2ff2194", "text": "As Fish held the pearl, he realized that the true treasure of the ocean cartoon style "} +{"id": "4000473", "video_name": "11650045-b92f-58fb-bbb1-d56ab913aad0", "text": "pepe the frog meme, cartoon style, walking down the street "} +{"id": "4000474", "video_name": "856b64f9-c660-5535-99af-5157a14fb6ec", "text": "a gorgeous Chinese lady, perfect face, chiaroscuro, near the seashore "} +{"id": "4000475", "video_name": "64cac77b-1b1c-5323-876d-aad75e758cc5", "text": "Show Kartik suffering from recurring nightmares, tossing and turning in bed, haunted by visions of the mansion and ghostly apparitions "} +{"id": "4000476", "video_name": "29265c92-a7a5-5e87-a7d9-303a64ffe805", "text": "Happy dancing aliens (green skin, tall, thin), (animation, 3D) "} +{"id": "4000477", "video_name": "84b1462d-f242-5875-ae08-4a7fa2b37d3b", "text": "an urbex in a old dark mansion, first person view, the guy filming fell in a hole threw the wood floor "} +{"id": "4000478", "video_name": "1b5ab615-c802-5f6b-9000-cdd4a53ed314", "text": "45 seg dancing realistic macaw Caninde "} +{"id": "4000479", "video_name": "60cfefff-c136-53f1-b458-068f1dcee499", "text": "Create a bug turtle that is a funny meme "} +{"id": "4000480", "video_name": "f887a9eb-6bfd-5a46-8e65-6655dd49c384", "text": "Illustrate a minor challenge or obstacle that the group overcomes together. "} +{"id": "4000481", "video_name": "6bcc023f-6392-5f5e-88a7-f2a718ce3625", "text": "Kids playing foot ball with flower garden ,cartoon styel "} +{"id": "4000482", "video_name": "a04cd3fe-b283-528e-98c9-42df0f409638", "text": "futuristic city, look from above, camera zoom out "} +{"id": "4000483", "video_name": "373b9118-eb32-5630-b14c-e1ee5e53a76d", "text": "big cargo ship passing on the shore "} +{"id": "4000484", "video_name": "12845c95-8a87-515b-858e-6a71c1de1d87", "text": "crowd running at a music festival "} +{"id": "4000485", "video_name": "1edbc99f-e922-595c-9e62-6a6dbb87b660", "text": "a round shape floating house in the middle of the lake. Golden hour lighting "} +{"id": "4000486", "video_name": "084355ba-3181-5ddc-a81d-b8816099eeeb", "text": "a liquid man summons lightning through his teeth "} +{"id": "4000487", "video_name": "a84a49df-5b25-5856-b2b1-698dbbfab3ec", "text": "Sunny day in a forest Message: Tania (Font: MODERN) "} +{"id": "4000488", "video_name": "8d83221d-2124-5ba7-a240-78b3a4bd74b1", "text": "A LOGO design containing Z and G, with the blue sky as the background, has a sense of future technology and highlights the Z and G. "} +{"id": "4000489", "video_name": "5d44eec5-c871-581b-a700-32028fa032cf", "text": "Little seahorse in the dreamy ocean "} +{"id": "4000490", "video_name": "e7955699-7711-580f-ba58-3dcfca3ab51d", "text": "Get a long video of a man flying while driving a car "} +{"id": "4000491", "video_name": "e9150103-7307-5ada-b43a-7390a4b241b2", "text": "An action trap actor completes a backflip "} +{"id": "4000492", "video_name": "2b21285c-ed13-5853-9b86-0cfe05e01200", "text": "(Allah) in Arabic in golden colour in the center , black background and light beam coming from the back, 3d, high resolution, 4k, aspect ratio 9:16 "} +{"id": "4000493", "video_name": "856eca46-5a97-57e7-9bf8-eede5ee52ae8", "text": "a cinematic scene in a hiphop music video "} +{"id": "4000494", "video_name": "4058b12c-0a53-53b2-b863-3925a8768ea7", "text": "tunder aroun the man in red "} +{"id": "4000495", "video_name": "27e3b634-bbfa-5b3b-ada7-8f3078cfad8e", "text": "big western saloon outside longshot view with swinging doors, wanted poster on the saloon\u2019s wall "} +{"id": "4000496", "video_name": "f845d438-0399-5ee7-aeec-27f37b11f06a", "text": "a woman asks her mom to bail her our of prison in torreon, mexico. "} +{"id": "4000497", "video_name": "672fcc66-41fa-5bc3-b512-9625e5b142b2", "text": "all jungle animals are running toward hill "} +{"id": "4000498", "video_name": "41713a65-904a-52eb-bf59-76e9046aa851", "text": "The cucumber flag waving in the wind. "} +{"id": "4000499", "video_name": "d9eb8dbc-ca49-5fab-ae53-c4f4e5a0b1e6", "text": "A robot happily moves through a spaceship corridor "} +{"id": "4000500", "video_name": "a618bf9a-ce8b-5653-bcb5-6edd3105a8ab", "text": "a cat astronaut triping to The moon (a chesse moon) where lives a rat colony "} +{"id": "4000501", "video_name": "afb18d33-c138-586d-8564-73769d9fc3f0", "text": "neural networks connecting with each other "} +{"id": "4000502", "video_name": "c73dfc81-66e8-5f15-ac3f-3dad0a178630", "text": "Epic battle between an Arabian knight and an Osprey knight! like film heven "} +{"id": "4000503", "video_name": "72440aba-e902-5f7a-85ef-cbccc85292a0", "text": "hero and the villain in the dark, blue lights backround "} +{"id": "4000504", "video_name": "1f3da13a-48bc-5fd1-8553-8ad9c19661b2", "text": "However, thanks to the collaborative efforts of scientists "} +{"id": "4000505", "video_name": "bd2e0f56-1683-5892-83ec-dd8e4dbae3df", "text": "esdeath anime character walking on road "} +{"id": "4000506", "video_name": "e098fd39-8fd2-5d0e-b230-ef9cc4261e94", "text": "Horror House with Monsters dark Night "} +{"id": "4000507", "video_name": "9912b51c-02bf-5347-804a-4d6027dac327", "text": "H.R. Giger Biomechanics landscape; Happy and Surreal "} +{"id": "4000508", "video_name": "7463fe08-be82-50f4-98f0-175e4dc07309", "text": "Participants straining to hear whispers in the dark. Horror scary image "} +{"id": "4000509", "video_name": "409a0cff-1465-551b-8566-7d38386cee52", "text": "young girl dancing in city street "} +{"id": "4000510", "video_name": "bc6b25fc-3850-5c3b-abc0-73c54fccc1c7", "text": "stonerbra420, dank nuts plenty, jar never empty, sunny and bluntdaddy. Queef squad! "} +{"id": "4000511", "video_name": "b2135d3c-83de-5065-ae24-0e35cc1301be", "text": "inside the sun lives a black fire eldritch jellyfish, black and white found footage "} +{"id": "4000512", "video_name": "b0f185a9-e7a0-5a41-abe9-3edd98c38a20", "text": "realistic art of mountains with fog sky moving and birds "} +{"id": "4000513", "video_name": "0b103463-1cb8-51a0-bc5b-e2d1c3230adb", "text": "fantastic night city of the future with holograms in the form of Japanese koi fish "} +{"id": "4000514", "video_name": "3556b4e3-988f-55b0-b893-8927c10efa20", "text": "beautiful iconic south australian winery landscape Message: 1 Attachment "} +{"id": "4000515", "video_name": "7efbc61d-8a14-5d8f-b0aa-04cc92eda47e", "text": "Render of a 3D glass orb floating in a minimalist space. Within the orb, a miniature ecosystem thrives with trees, animals, and water, while the exterior is enveloped by holographic interfaces and digital projections, showcasing the convergence of the natural and artificial. "} +{"id": "4000516", "video_name": "8affffb2-7882-5208-8f15-aaa55b91374f", "text": "a photo realistic cinematic scene of snake bite of farmer in paddy field "} +{"id": "4000517", "video_name": "8b96f783-e5a9-56a2-b692-e5e111e79b00", "text": "Cyberpunk tavern with the word JEER flashing on the background wall, the camera slowly pulls into the glass of the bar, the glass reads JEER, the smoky atmosphere, 4K picture quality, does not need the appearance of the character, but the word JEER is clear, make sure it is J E E R, "} +{"id": "4000518", "video_name": "c8239c84-a38a-5088-9b13-d1bbadb79e11", "text": "I want a section of Zaha Hadid style architecture "} +{"id": "4000519", "video_name": "049162c9-d866-51a7-bbdf-838e84b37812", "text": "traveling in space and get caught by space police "} +{"id": "4000520", "video_name": "d4b26700-1fa3-5d4c-bfbf-56afd05c1d00", "text": "animated cartoon story of It was a sweltering day with the sun overhead when birds and animals could find very little to drink to quench their thirst. Among them was a thirsty crow who searched for water all over the fields. He looked everywhere, but there was not a drop to drink. He felt weak and sad and thought to himself, \u201cCaw, caw, caw. I have been searching for water since the morning, but there is not a drop in sight!\u201d \u201c "} +{"id": "4000521", "video_name": "79f33824-fed8-5cec-9ea3-efba369181f4", "text": "A white wall of a hospital "} +{"id": "4000522", "video_name": "8fbd0c2f-025e-52d2-935a-481e0706a4e0", "text": "The hand clutches a napkin dripping with water "} +{"id": "4000523", "video_name": "fd71f2a0-6c84-55d3-a387-62cd1b7b8890", "text": "Empower Women to Find Their Path to Success "} +{"id": "4000524", "video_name": "5e1a4e23-10ae-5eb9-b808-5822911bae6b", "text": "a beautiful woman wearing a futuristic purple outfit catwalking at new york fashion week "} +{"id": "4000525", "video_name": "6a78dfa0-ad34-5dbe-9812-bec1b1a3f32b", "text": "bee army in the space flying "} +{"id": "4000526", "video_name": "b5c8504b-240f-57f5-a640-3af4b44712fa", "text": "Make a video of Fox walking, in 3D animation "} +{"id": "4000527", "video_name": "c7e376fa-6bc6-5a1b-8ef4-ec4518f31d7f", "text": "birds flying in the style of Charlie Harper. Geometric. Bold colours. 1960s graphic design. "} +{"id": "4000528", "video_name": "0619afdc-eaa9-5819-a04c-66d59e615331", "text": "Taipei 101 hang a flag with the Chinese letter \u201clove\u201d(\u611b\uff09. "} +{"id": "4000529", "video_name": "8cfb84cf-8f09-55d4-b053-b134d6098e64", "text": "Embark on a visual odyssey with this captivating video, exploring the mysterious and otherworldly aspects of an enigmatic eye. This eye is not just a window to the soul, but a gateway to realms beyond our understanding. "} +{"id": "4000530", "video_name": "284201a2-a0c9-5953-a0a6-8be8f03e12df", "text": "Head of medusa looking at camera Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "4000531", "video_name": "3381cd6f-034a-506b-a332-f2490ca76075", "text": "closeup of raindrops on a puddle 16:9 "} +{"id": "4000532", "video_name": "da3b41f1-9427-5015-8c9a-eb3a4d025d73", "text": "angelic features are accentuated by the soft sunlight, her clear eyes reflecting innocence. Her flowing hair catches the light, emitting a fragrance of flowers "} +{"id": "4000533", "video_name": "651560ec-6515-5484-a5a5-300e8bf6f5ea", "text": "Batman in Gotham city night ambiance green smoke Batman sad "} +{"id": "4000534", "video_name": "f01e1c49-6a8e-54d7-9778-e14f837d2d52", "text": "generate video of Diwali color full fir cracking blasting in air with mesmerizing background 3d render realastic "} +{"id": "4000535", "video_name": "26f71fc0-26fc-55eb-b9ef-da202bfa1909", "text": "Israeli soldiers pray at the Western Wall in Jerusalem "} +{"id": "4000536", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "an image showing a logo ressembling the google logo "} +{"id": "4000537", "video_name": "c0b6d05c-3e48-5974-8d66-a1592d4fbf02", "text": "cam calico the cat squishmallow happily jumping up and down in the grassy pasture "} +{"id": "4000538", "video_name": "e9748fd6-9550-5863-9d85-75416e7330f3", "text": "Illustrate a lion pride in the African savannah, with cubs playing around. "} +{"id": "4000539", "video_name": "751672d0-60e7-5bee-9278-f9dbaddb8a15", "text": "Make character smile and turns head "} +{"id": "4000540", "video_name": "08c4d85d-13dc-5e26-98b4-7ea18d123bb8", "text": "self abusive urban youth in his bedroom 16:9 realistic motion cam pan right perfect human movements in HD 8k "} +{"id": "4000541", "video_name": "a2667ceb-aa26-52e7-8aeb-798d57449f1d", "text": "a giant figure made of water with wings "} +{"id": "4000542", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "cute girls in miniskirts making peace signs and smiling at disneyland, ultra realistic, HD colored hair "} +{"id": "4000543", "video_name": "e4f66090-434a-57eb-a5f8-6c79cfa10b58", "text": "simple realistic shot of the moon in the night sky, resolution 16:9, 60 fps "} +{"id": "4000544", "video_name": "de696e3f-771a-59aa-96a2-e77ccc94c237", "text": "4k animation ginni comes out from gemstone "} +{"id": "4000545", "video_name": "c941f4e4-4821-5019-bb87-3086f1291e2d", "text": "seed of the Earth growing roots through humans "} +{"id": "4000546", "video_name": "a3209870-607c-5349-ac4d-10a5bd1bf54d", "text": "Show the boy with green eyes navigating through busy city streets, portraying the chaos of his inner thoughts.\nUse quick cuts to highlight his confusion. "} +{"id": "4000547", "video_name": "525e3c7e-5a96-50ed-abe6-c2fc17b3cacd", "text": "A book falls to the ground and a magic cameleon comes out of it. "} +{"id": "4000548", "video_name": "7f744ab2-f8c1-5cba-a3e9-956461bf5399", "text": "man eating a orange and lovin every part of it, looking directly to his woman "} +{"id": "4000549", "video_name": "9b5adaf4-bc2b-57ab-8e0a-3770d6e63503", "text": "a vintage video of crowd of people stand in the glass and are looking to the street outside of the train "} +{"id": "4000550", "video_name": "d3860974-a446-57b4-8fae-56a1b1f0d40e", "text": "a tiny elephant losing balance and falling from the high tree "} +{"id": "4000551", "video_name": "b2e3773b-bd8f-55ae-94d5-b0c783996e03", "text": "8k video of very tired 40 year old german woman holding tube with one hand, traveling standing inside new york subway, winter clothes, snow boots, soft shadows, very sharp, high quality, cinematic light, BandW , alex webb, ilford hp5 "} +{"id": "4000552", "video_name": "aaf8d21c-a6e2-51b2-8b40-ca355f9281f6", "text": "a giant long hair woman on a giant orange vespa motorbike driving on the istanbul\u2019s bosphorus bridge on sunset time. "} +{"id": "4000553", "video_name": "6dcbcd38-81fa-5a79-a895-3a7ba81c43a7", "text": "Wawa Gas Station Message: NK Packs Fudge (Font: MODERN) "} +{"id": "4000554", "video_name": "0cf462af-b588-580a-9fcb-f79df0f91245", "text": "Create punjabi men sitting under tree realistics "} +{"id": "4000555", "video_name": "aa3225b0-3c1b-5c8f-bd16-bb4a6fb93884", "text": "a carrot on a chopper motorbike "} +{"id": "4000556", "video_name": "1d4d38fb-3d14-5e58-8322-a478718e1383", "text": "a teen girl selected as doctor "} +{"id": "4000557", "video_name": "1f741f8f-c517-5600-b28e-b76fac04d273", "text": "An illustration that portrays Daniel refusing to compromise his values, even in the face of outside pressures. "} +{"id": "4000558", "video_name": "c6ab124a-f681-5fba-8798-a2e3865217e7", "text": "giraffe cartoon runs to get an elephant in the colosseum "} +{"id": "4000559", "video_name": "52d881f5-aa02-51a7-abf1-4761ba312497", "text": "Number 2 falls from a skyscraper "} +{"id": "4000560", "video_name": "c7bcdaf4-db43-5630-8fc6-e5c26753f46b", "text": "butterfly lifts off a flower moving its wings "} +{"id": "4000561", "video_name": "61f89ec1-6999-5c52-a536-0e1d430c7a55", "text": "A Man fighting with two swords with a four armed monkey monster at the top of a hill add sunset cinematic view anime style "} +{"id": "4000562", "video_name": "783d2328-5d50-5fec-9e47-12c15ebd3714", "text": "a soccer ball that robots can play with "} +{"id": "4000563", "video_name": "4e968970-6924-5d0c-83ff-907f78aab600", "text": "cherry blossoms blowing in the wind, camera going from left to right "} +{"id": "4000564", "video_name": "45befb44-dd54-53e4-9d52-2aa5dbd13baf", "text": "how to make easy money while at home "} +{"id": "4000565", "video_name": "94ad0279-fd9e-5e89-9eb3-e6fb9a063c21", "text": "space Message: Happy birthday daim (Font: MODERN) "} +{"id": "4000566", "video_name": "8a86324e-a522-5b75-8793-0b0cdd46c734", "text": "a white cat sitting in front of a window at night, suddently a flying bird saw the cat from outside "} +{"id": "4000567", "video_name": "8257d1b8-a3f8-5620-b0af-c300b3b9c0f0", "text": "man in a leather jacket walked down the futuristic street and a building explodes "} +{"id": "4000568", "video_name": "1228e21f-7657-5a38-a332-b39c8b6758c0", "text": "Audi 200 avant red colour drives in night city uhd 4k "} +{"id": "4000569", "video_name": "60dc1cb0-1269-5ebb-976a-3ec8f837b7a8", "text": "a blonde woman in a neghborhood surrounded by bears "} +{"id": "4000570", "video_name": "49941d3a-951e-58dd-b2fc-71177800b2ca", "text": "girl saw a boy in front of her door with a guitar "} +{"id": "4000571", "video_name": "00951ad4-be40-5437-8675-d44788c4dec2", "text": "book of life in a mystic atmosphere "} +{"id": "4000572", "video_name": "553881da-791d-5ca6-9815-5636b934d15d", "text": "Hello. Make me an avatar for Instagram with a guy who is a programmer developing "} +{"id": "4000573", "video_name": "5ad3deb4-b3e2-5518-96fd-731f591e251d", "text": "Yuki encounters a powerful sorcerer testing his skills. Yuki dazzles everyone with his remarkable magical prowess, proving his strength , anime style "} +{"id": "4000574", "video_name": "12ac3e7f-de33-53a1-9e97-541a0bfa1572", "text": "A schiele style man fighting with a monet style man "} +{"id": "4000575", "video_name": "64e0efc9-7fdc-51c2-9351-e04eb870a4a7", "text": "Move the arms of the octopus "} +{"id": "4000576", "video_name": "54f4fc73-c654-58bf-b229-da2857c1a3c6", "text": "young people celebrating new year at the office "} +{"id": "4000577", "video_name": "bb254ebd-e1fe-5a2b-9cf9-585d2c666502", "text": "numbers 0, 1, 1, 2, 3, 5, 8, "} +{"id": "4000578", "video_name": "ac7678fd-52f6-57a7-87be-c8db40f952a8", "text": "Once upon a time, two brothers used to live in Persia. Their names were Ali Baba and Kassim. Kassim was the older brother. After their father\u2019s death, Kassim said that it wasn\u2019t Ali Baba\u2019s home anymore. So, Ali Baba fled his home and climbed up the mountain to find forty thieves. The 40 thieves stood in front of the large rock and said, \u201cOPEN SEESAME!\u201d These magic words opened the rock, and the 40 thieves entered the cave. \u201cWhat a sight!\u201d Ali Baba thought. "} +{"id": "4000579", "video_name": "17e247ca-9be0-51ae-9a07-48fd9d9a49f7", "text": ", the king ordered the arrest of his servant. While he was taken to prison, "} +{"id": "4000580", "video_name": "aff06e38-02dd-50d8-ab6e-0a22f881d675", "text": "pixar, animated, cartoon, 3d, african children, filled with wonder and surprise, standing on the bow of a ship, wind blowing, seas, sunny day, clouds, birds, land and trees "} +{"id": "4000581", "video_name": "9b742b49-676b-5055-b8c8-b89457f5e603", "text": "rusty spoon with ragged scarf learns differential equations, sweatshop, dingy old radiator, cozy nook, dishevelled bed, headphones, emo, goth, journal, SLC Punk, Steampunk, Cyberpunk, harry potter "} +{"id": "4000582", "video_name": "042689cb-d439-556f-9876-bfe6a348c37d", "text": "cartoon of a castle with moving trees "} +{"id": "4000583", "video_name": "44088a1f-4513-5f4a-a992-bb06c6083214", "text": "A burning Tee shirt walks in the complete darkness "} +{"id": "4000584", "video_name": "d8922aac-04e1-5b0d-b60f-958e5f3b49cc", "text": "Illustrate Dizzy the duckling hopping from one lily pad to another, with some splashes as he occasionally falls into the water. "} +{"id": "4000585", "video_name": "a4103603-f42e-539e-a286-bbfb6dfb6842", "text": "a cartoon beautiful hign school girl runs on the street. "} +{"id": "4000586", "video_name": "fb394125-4373-55aa-8705-3fafda0fd3f8", "text": "dawn rises in the Arab village "} +{"id": "4000587", "video_name": "7f50c23f-8a87-5726-8519-9d45a42d1e06", "text": "David was walking through the village square, he saw a commotion near the old oak tree. A group of villagers was gathered around, looking upset and angry. "} +{"id": "4000588", "video_name": "b1bacf2d-f526-5df3-8fc3-3dced1344317", "text": "Photo of various electronic gadgets falling from the sky. "} +{"id": "4000589", "video_name": "70054047-0cb3-5280-895c-d62981cfe94a", "text": "Jacob fathered Joseph the husband of Mary "} +{"id": "4000590", "video_name": "8bc281ab-fc5d-58ab-b2eb-19e9df2d584f", "text": "In a small, picturesque town nestled amidst rolling hills and lush forests, a mysterious event unfolds as the clock strikes midnight. As the townspeople slumber, an ordinary dog named Max discovers an enchanted collar that grants him the ability to communicate with humans "} +{"id": "4000591", "video_name": "ac8322b2-3e82-53f6-91fa-4d71e923456d", "text": "a moving image of the first olympic stadium "} +{"id": "4000592", "video_name": "36a8d06a-7b2f-5b6b-bbf2-ba6867c98a0b", "text": "Supergirl runing across the street. high quality. from behind. no mistakes. "} +{"id": "4000593", "video_name": "7f8ee931-2da5-5966-99ac-26fb84449108", "text": "film still, domestic scene, style by 2020s thriller, kodachrome "} +{"id": "4000594", "video_name": "67b8a860-61c5-5513-afb0-8551913f7803", "text": "Handsome young man, novice wearing Catholic monastic robes "} +{"id": "4000595", "video_name": "26ef004e-369d-5c58-8233-447724ef465d", "text": "fractals in the center, smoothly change the pattern "} +{"id": "4000596", "video_name": "1c17481c-f6cd-554c-88d8-e239b721f25e", "text": "andrea riseborough walking down a london street "} +{"id": "4000597", "video_name": "1e6f88d0-391b-5a57-a02f-205ff3729ba2", "text": "little boy and girl growing up walking over time "} +{"id": "4000598", "video_name": "4fcc7e98-a5b7-5f6b-8650-34b3b3c0b43f", "text": "giraffe Closeup Message: NVV (Font: COMICS) "} +{"id": "4000599", "video_name": "4448c87f-d4e1-58c3-9bb0-90117e85c92b", "text": "man in a car without face, look an angel in the sky, the road is ice, and the sky is purple, 3D "} +{"id": "4000600", "video_name": "c74a1383-846e-5596-a6c9-26f3b9f3ae54", "text": "a fashion model, light wind, lighting slowly moving, looking around "} +{"id": "4000601", "video_name": "320887ac-4ec3-55e6-a852-82929b2771c0", "text": "beautiful women dancing in a future scenary; camera effect: zoom in and out, quality: 4K "} +{"id": "4000602", "video_name": "df19f41d-b2cd-5116-8a03-f44a4838a549", "text": "bitcoin is on his knees next to him dancing a grimace coin "} +{"id": "4000603", "video_name": "d4cd791b-5882-5c43-9e94-b32d65225eda", "text": "elliptical curves Message: The walls are (Font: MODERN) "} +{"id": "4000604", "video_name": "85e2a848-8eff-512d-83f8-fb6ace7c7f58", "text": "Colorful and brilliant 432 Hz music "} +{"id": "4000605", "video_name": "20d69f1f-e476-58db-aba8-66411c5e254f", "text": "a athletic man trains his Trizeps up and down, with a barbell in a fitness center for ten seconds "} +{"id": "4000606", "video_name": "deeda28b-3949-54d3-a7f0-af84b78014c9", "text": "beautilful girl dancing on a destroyed city. "} +{"id": "4000607", "video_name": "4c75cad7-2e9a-50e2-93aa-25611882c5bb", "text": "Picture the children gathering under the ancient oak tree, the tales of the supernatural now a living testament to the harmony between the living and the ghostly inhabitants of Ravenbrook, as the town embraces its newfound connection with the supernatural. "} +{"id": "4000608", "video_name": "20806206-3758-50b7-80c5-d1d392fac9a1", "text": "The mouse was lost in its own happiness as it hopped along. "} +{"id": "4000609", "video_name": "4e12d2e5-00df-5d1a-ab23-357f2ad56e77", "text": "scene from the futurama tv show, nibbler "} +{"id": "4000610", "video_name": "021450f8-9639-5411-802c-c9d880bfe078", "text": "Show the anime character holding a coin with a thoughtful expression, representing the dilemma of having two options. "} +{"id": "4000611", "video_name": "a06b13ad-40f4-57de-8c50-10a885cfeb40", "text": "Old man gardener planting seeds in a raised bed with a pembroke welsh corgi. "} +{"id": "4000612", "video_name": "cb91e3cf-9387-58d7-8a9b-d1cfde4029eb", "text": "a lion dj playing at an outdoor live show surrounded by penguins cinematic "} +{"id": "4000613", "video_name": "7d83290f-6ed6-5047-b09f-67858dc4b036", "text": "American Indian tribe hunts down cowboys "} +{"id": "4000614", "video_name": "1965fde2-9783-56b7-88b5-189dd10efe36", "text": "Dora the Explorer robs convenience store at gunpoint, camera footage "} +{"id": "4000615", "video_name": "dd5530dd-d3aa-5bdc-b9af-9f18cf1f022e", "text": "Scene of burning incense and sipping tea in a Chinese tea room "} +{"id": "4000616", "video_name": "07420d97-cd8b-5ab2-a8ba-a80a1ef4645d", "text": "Rooftop View of Santorini at Sunset. "} +{"id": "4000617", "video_name": "ede6c8ae-80d2-59d5-ae74-eeec08b5ee94", "text": "A for Apple, for kids learning "} +{"id": "4000618", "video_name": "60afc6a8-5d1d-5f17-97e2-1de7b5e7ae3e", "text": "handholding a heart with only five fingers per hand "} +{"id": "4000619", "video_name": "62fc8fbe-6de9-521b-90d6-df701984316f", "text": "a girl growing up standing outside a wooden house, realistically cinematic. "} +{"id": "4000620", "video_name": "423407b3-bd2d-5ad8-ab40-8931a6a1fb83", "text": "Bat, wing motion , pixel, 64 bit "} +{"id": "4000621", "video_name": "1e30cab2-7907-5d04-b4c8-2965e7282beb", "text": "illustration for a seo agency website, green color palette "} +{"id": "4000622", "video_name": "eaeb254c-cca0-59ce-b643-60881e59c723", "text": "hot air balloon takes off from samburu national park in kenya "} +{"id": "4000623", "video_name": "44adace9-0f14-5734-bff5-1ce2c455f3f8", "text": "Mrs. Thatcher DJing at a Rave "} +{"id": "4000624", "video_name": "e6b2acf5-3b15-5d90-8e79-f7b0b44488a6", "text": "quarrel between man and woman in the room "} +{"id": "4000625", "video_name": "a4676364-a8c9-56c3-8292-e8745622c3da", "text": "epic battle between Vagita from dragon ball z and the character Mario in Marios land "} +{"id": "4000626", "video_name": "6a7e3e99-86d5-545d-9e1d-d06b08bad3d4", "text": "a man fights with a lion on the beach "} +{"id": "4000627", "video_name": "80027889-6461-50a2-852e-56103c652fea", "text": "star wars ship Message: Weeboks (Font: MODERN) "} +{"id": "4000628", "video_name": "df2bc6fb-a687-5a94-ad7c-ca32365c056d", "text": "A beaming child, running freely across a sunlit field, his laughter echoing in the wind, portraying the joy of newfound mobility. realistic "} +{"id": "4000629", "video_name": "a933859c-bd4d-5231-815f-53753c66d248", "text": "from stage chief guest called kid sam to the stage "} +{"id": "4000630", "video_name": "311b9988-ca38-5922-aa2b-e92ab71014c2", "text": "Margaret thatcher skateboarding on the mega ramp "} +{"id": "4000631", "video_name": "8e280824-65c0-5a11-8fab-e71234866a07", "text": "cute bunny is played guiter with dance "} +{"id": "4000632", "video_name": "afbe0948-1100-5c07-9903-e3c81ba25e71", "text": "an animated girl dancing on her own listening to music lofi cyberpunk "} +{"id": "4000633", "video_name": "1c11134f-e493-56d0-a7ad-921ed7e095f3", "text": "a shoe made out of honey is melting around, in the style of Peter witkin, Orange Light comes from the right, Red and wood tones color scheme "} +{"id": "4000634", "video_name": "e4bd47da-773d-5454-9781-43f952b851b6", "text": "create an image of a bat symbol and flaming on the symbol "} +{"id": "4000635", "video_name": "7a303025-a828-5ff9-8506-2435ce430486", "text": "euphoric bliss, cinematic beauty, fast zoom into centre "} +{"id": "4000636", "video_name": "87eb5244-c5b8-57f0-8f4f-8f3d4c4d5b85", "text": "The boy has short blonde hair and blue eyes on his back he is leaving school he is walking towards a woman who has very long blonde hair and she is waving to the boy This woman is his mother is happy that the boy finished his school lessons in his left hand holding a gift for the boy "} +{"id": "4000637", "video_name": "f5ca63c8-b6be-5a61-8385-7a57001e9a35", "text": "A falcon falls into a wedding rubble for a city "} +{"id": "4000638", "video_name": "a815ae0b-aed6-5461-a9e4-2cf70222146e", "text": "3d animated movement , lock ness monster realistic "} +{"id": "4000639", "video_name": "ee7b4923-ff47-515c-a368-fec9e438351a", "text": "An old woman walks with heavy steps "} +{"id": "4000640", "video_name": "dd4a28e0-15f8-560a-84d2-2f027412c7c4", "text": "young girl in a room near the fireplace, large windows, outside the window there is snow forest, night, stars in the sky "} +{"id": "4000641", "video_name": "d0995bee-c6ef-5abd-8ee8-562bf5a008a1", "text": "1940s news reel black and white film grain, alien armada menacing above a peaceful alien planet "} +{"id": "4000642", "video_name": "eb9d83a0-1dae-588f-b362-2fb53034bc03", "text": "prison submerged in handcuffs and lemon juice and lemons "} +{"id": "4000643", "video_name": "593d480a-0239-5da7-bdec-96072bde5f9e", "text": "The video shows a man standing on top of a mountain looking down at a beautiful landscape. He holds the camera in his hands and takes a video. "} +{"id": "4000644", "video_name": "d3701dee-96c6-5726-99cc-5cefecc32881", "text": "Spiderman coming out of the car ultra hd 4K video "} +{"id": "4000645", "video_name": "a13a9d09-c327-5f32-8667-fe9d02e5894f", "text": "Dark Lord of the Sith in black robes with face obscured and wielding two Red Lightsabers faces off against a bald Imperium of man Inquisitor who is using a black rapier to duel, Star Wars, Warhammer 40K, Crossover, Two Red Lightsabers and Dark Lord of the sith, One Black Rapier and bald Lord Inquisitor, dueling, fighting, black magic, the warp, the Darkside of the force "} +{"id": "4000646", "video_name": "b392cf47-0f11-534c-8a0e-23fc60df145b", "text": "bubbles floating in the air, ethereal, cinematic "} +{"id": "4000647", "video_name": "ccc2511a-0630-5b11-8624-f45a9f8cf4fd", "text": "The cow has been grazing in the pasture and is finally ready to rest. Message: 1 Attachment "} +{"id": "4000648", "video_name": "9d133538-3779-585e-a595-423ec197166b", "text": "The rain striking the red flowers brings a lingering fragrance throughout the night. "} +{"id": "4000649", "video_name": "749826d6-1647-5062-a811-30575417b0c9", "text": "cartoon image of But before she left, the fairy godmother gave her one warning, \u201cMy dear, you need to be back before midnight because my magic won\u2019t work after that. You will be back in your original look.\u201d "} +{"id": "4000650", "video_name": "1e71443c-7979-51ca-9b24-0da947051db9", "text": "A motorcycle with deteriorated paint, transformed into a new motorcycle with decals and new paint. "} +{"id": "4000651", "video_name": "d5c5a52a-6e6e-5bfb-9c42-6463713a1aa0", "text": "Once upon a time in a quaint village, Maya, a young artist, painted vibrant masterpieces inspired by her surroundings. "} +{"id": "4000652", "video_name": "4abe7f49-5b32-5940-893a-f58711484d4d", "text": "A promising image of intro video "} +{"id": "4000653", "video_name": "6d595a20-a692-5b58-ad23-e0497dbc7021", "text": "create something magical , magic in the form of sparkle arises from book "} +{"id": "4000654", "video_name": "9fb6d197-a3b7-5685-a90b-a988ea3cf0da", "text": "a robot teaching how to reppair something to a kid "} +{"id": "4000655", "video_name": "ac9327f2-97c3-5332-a537-dfe5f92429d8", "text": "two cats are dancing in winter "} +{"id": "4000656", "video_name": "5946ead8-e675-5c2d-b8c4-5e91bb8155b7", "text": "Closeup, Front Facing, Head and Shoulder, Full Body, Portrait View, Cyborg Forest, Cyborg Fox goddess, a woman who is adored, especially for her beauty, Trees and saltwater like in the background. "} +{"id": "4000657", "video_name": "b8c91581-2d95-56fe-accb-45e693ccc6c9", "text": "Mighty lion named Leo andtiny mouse named Mia teaching a valuable lesson of kindness and compassion "} +{"id": "4000658", "video_name": "ab9b88d6-9a97-51b7-a987-a6c2589823f7", "text": "In the aftermath of destruction, the cinematic fantasy land finds its resilience personified in a female leader. Amidst smoldering ruins, she stands tall, delivering resolute instructions to her people. The camera captures the strength in her eyes and the backdrop of a shattered world as she inspires hope, outlining a path to rebuild and defy the looming darkness. The musical score underscores the scene, echoing the strength and determination that rises from the ashes. "} +{"id": "4000659", "video_name": "c1844ff0-5e14-59dd-98f0-d89ce0b374e1", "text": "injured wolf and a young movie scene "} +{"id": "4000660", "video_name": "9c96ef41-bd57-50d1-84a8-97f73a7f0dbf", "text": "a top model dancing over the speakers "} +{"id": "4000661", "video_name": "3a34ae51-c7cc-5c83-b573-7d6eed717d29", "text": "5 children show with ther fingers in front direction "} +{"id": "4000662", "video_name": "6e7b585a-479f-5efd-9950-52c47555d21d", "text": "goku talking to his father bardock on earth in front of taj mahal "} +{"id": "4000663", "video_name": "0687c268-97c4-5166-8071-5dfe24af72fa", "text": "create a flag of japan oficial "} +{"id": "4000664", "video_name": "fbc292ca-4bfc-575d-b718-a1adc41b3002", "text": "Motivational Cinematic Video, Man In Motion Running Away From A Goliath In 4k, Uhd. Ar 9:16 "} +{"id": "4000665", "video_name": "c3fa8db1-43a5-588b-909d-aba139521c38", "text": "beautiful harley bike going down the road, crossing the ocean "} +{"id": "4000666", "video_name": "e61232b6-73ef-5b82-ba16-62ec087954ff", "text": "dolphin is swimming in gold toilet with emerald beads "} +{"id": "4000667", "video_name": "8cf26fba-9ab0-5a8e-a6ff-8db0a02e882a", "text": "a city life with vibrant colors aerial view Message: FIRAT (Font: MODERN) "} +{"id": "4000668", "video_name": "eda3491f-aa05-5389-a29c-4e3d84663104", "text": "Ling saw news on social media. The news talked about wearing of hijab will be compulsory for all Malaysian regardless of religions if Malaysian Islamic Party wins the election. Ling likes and shares the news without verifying the viability of news. Discomfort between races has formed. Happening of disputes between different races in Malaysia. "} +{"id": "4000669", "video_name": "77fca5bb-af7f-5826-8a3a-e0783fc15634", "text": "sky, a falling child. Rainbow, happy "} +{"id": "4000670", "video_name": "9a301f22-21cb-57f4-830a-d12d031454ab", "text": "Dilbahadur planting corn and mil the bright sun with a joyful expression. The shining brightly in the background showcasing a peaceful farm. Video should be in peacful area, take only one person, person should be look like Nepali Person. Person should wearing nepali dress. video should be in 3D cartoon "} +{"id": "4000671", "video_name": "c501591f-f753-544e-8dea-b444fea386b9", "text": "a crowd of devotees in india "} +{"id": "4000672", "video_name": "105c77ac-0627-5e0e-ad36-8f54b0116da6", "text": "a teenage girl wearing white dress is lying in flower blossom\uff0c CINEMATIC SCENE , high quality\uff0caesthetic style Message: SULLI (Font: MODERN) "} +{"id": "4000673", "video_name": "0db0634d-ed78-5666-8b9c-c2ed25aff610", "text": "a Nike crewneck being set on fire. Have the sweater be color blue, and the flames be red and orange. \n\nMake sure the captured video is on a 50mm focal length with a 4.0 aperture. And have no humans in it "} +{"id": "4000674", "video_name": "a663831a-1c46-5c4d-a9e7-3f1d457393ae", "text": "Five little gray wolves were playing and chasing each other on a remote gravel road surrounded by grass. The cubs were running and jumping, chasing each other, biting and playing with each other. "} +{"id": "4000675", "video_name": "e36afe67-eaa2-5397-84ca-1b64e2966116", "text": "overexposed horses seen from below and blue sky in the backgorund "} +{"id": "4000676", "video_name": "632d1f61-2fa1-5dd1-81bd-19aa05983e6a", "text": "A vibrant scene of a skateboarder performing an incredible trick in a halfpipe surrounded by blooming trees. Spring colors fill the environment, with flower petals swirling in the air as the skateboarder conquers the ramp. "} +{"id": "4000677", "video_name": "0dfd03ee-464e-5c4e-8831-99e293b5f01c", "text": "a man sitting in a luxury library in a room "} +{"id": "4000678", "video_name": "028209a3-3b39-5e1c-ae45-1ef2cd791d75", "text": "a calender flipping back in time to the year 2003, hyper realistic, cinematic, 32k "} +{"id": "4000679", "video_name": "ed4e4663-160e-5db6-9619-dd9a9c3a7abd", "text": "Cute robot avatar, one to one ratio "} +{"id": "4000680", "video_name": "06ee461d-0919-5f2f-a108-25d7d62faeb5", "text": "beowulf sails through the fog to the sea shore opening "} +{"id": "4000681", "video_name": "73b6e49c-b233-5829-bee5-638f6b06160e", "text": "Arjun and Meera looking distant, a sense of sadness visible in their expressions. "} +{"id": "4000682", "video_name": "b48acc0e-8646-5e2c-9e0d-544096f3b781", "text": "Video Describes a person walking in the desert "} +{"id": "4000683", "video_name": "e19e420e-a47f-5303-8ece-c4e57a1ed4b5", "text": "Mbappe, in a Real Madrid suit, on the NouCamp pitch "} +{"id": "4000684", "video_name": "32c70de6-345d-56ba-b473-bdc17f99020e", "text": "drone view of a real bear growling in a jungle at dark night "} +{"id": "4000685", "video_name": "d58b27a1-1a81-590a-8527-bad07522e3d0", "text": "A sports car was driving along the seaside road "} +{"id": "4000686", "video_name": "91fd9664-d346-5a55-8cd3-324464389f71", "text": "Rotating shoes. Burning fire. A very beautiful advertisement for a sneaker. Dynamic. Puma "} +{"id": "4000687", "video_name": "252b4b65-c74d-523a-8e90-6616bec2189b", "text": "Cats Hair blows in the wind, a Green spark shines out of eyes "} +{"id": "4000688", "video_name": "ec48bc14-d344-5835-86cb-3b2f0305e420", "text": "fim noir, heavy rainy day, shattered glass shines, new york street "} +{"id": "4000689", "video_name": "dec93250-25c0-5ee6-8922-560bcc0717a4", "text": "a 4k canvas of jiraya sensei "} +{"id": "4000690", "video_name": "6b28e29d-60bb-5158-ade7-75509fc347ff", "text": "A man with long hair wearing a jacket with a horse on it eating a carrot "} +{"id": "4000691", "video_name": "4d7704a6-daf7-5dda-ba6a-0b1485d0afc5", "text": "Lord Shiva appearing from the sky surrinding with vibrant rays "} +{"id": "4000692", "video_name": "ecfae865-7670-5c6e-adea-19f97c9b7bee", "text": "male space elf with pink and purple nebula hair in a cloud around his head and dark purple skin with shimmering stars for freckles, levitating in a meditative pose inside a void. "} +{"id": "4000693", "video_name": "ea790f4e-e041-5e71-bf9f-3c9366c03369", "text": "A woman, Wearing a long skirt, Standing on the beach, Ocean wave "} +{"id": "4000694", "video_name": "618c23bb-24f2-5611-bf9d-211786750489", "text": "shot of a bustling UK city street with iconic landmarks in the background "} +{"id": "4000695", "video_name": "118abdac-130f-5591-8145-7b24bdf7f8db", "text": "A hockey player from another planet plays hockey on another futuristic bright Planet "} +{"id": "4000696", "video_name": "ba6c68c1-17e7-5f5b-ae86-9a1c0e3b7661", "text": "middle aged man with spectacle. Work in front of computer "} +{"id": "4000697", "video_name": "8d1be702-9769-5963-abec-1f1e00d6da3e", "text": "one human old person showing no teeth and trying to chew an apple, white background "} +{"id": "4000698", "video_name": "2e0fb90f-6d8b-5807-ace5-04e9fb561237", "text": "But amidst the wonders of the jungle, Mufasa never failed to remind Simba of their duty to protect the pride and all the creatures that called the savanna home. He instilled in his son a deep respect for the delicate balance of nature, teaching him that a true king was one who ruled with benevolence and compassion. "} +{"id": "4000699", "video_name": "ca3dff1e-cf05-58f5-927d-633639ef24c6", "text": "a wild view of forest with camera motion "} +{"id": "4000700", "video_name": "f48ef01a-e121-5ce1-9c6d-0886eccdca31", "text": "soft waves background texture, pastel gradient colors "} +{"id": "4000701", "video_name": "ba8ba649-a8f0-5002-92cc-48a72dd69809", "text": "dried figs are so good for health "} +{"id": "4000702", "video_name": "ce128c37-b8af-5d41-882e-c245dd7fa488", "text": "Amidst a sky filled with light blue clouds in all directions, a small black piece of fabric freely flutters. "} +{"id": "4000703", "video_name": "1dd6d1e4-eb4e-5b42-b2d8-ab8a0f4b91e8", "text": "kids return safe fron jungle and coming towards home "} +{"id": "4000704", "video_name": "b6177b58-d450-592e-9d25-288e7fddd0ec", "text": "people standing in line for voo vote "} +{"id": "4000705", "video_name": "a8671de5-20bb-5111-82a7-385ab6b05900", "text": "beautiful surrealistic magical garden, The surreal landscape is full of small, delicate flowers and strange geometric trees. "} +{"id": "4000706", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "rapper on the stage, in the style of 3d anime art, Iove, 8k, portrait, elated 3d cartoon anime art style, hyper detailed. vivid colours. ray tracing. dribblable, high detail, super quality, ultra detailed "} +{"id": "4000707", "video_name": "2be44c88-b9c9-593b-9b92-1c951f5bbe7a", "text": "Iron man but with a protruding stomach which is animated with great activity "} +{"id": "4000708", "video_name": "583ab695-da94-52ee-b14f-e91831453a03", "text": "moving particles on green screen, light color particles, loop "} +{"id": "4000709", "video_name": "64caa93e-62ee-516e-97ba-0246892a52c5", "text": "Portrait of a young blonde 20 years old woman with a smile, on a sunny cave beach, in the evening, nautical romance style, "} +{"id": "4000710", "video_name": "bd0b2d7d-bb99-595f-a765-4edec27a13bc", "text": "Roblox gameplay for 10 seconds Message: Roblox (Font: MODERN) "} +{"id": "4000711", "video_name": "be3e9cd5-245e-5496-8dfb-cbb346b2bebb", "text": "A malinois dog and a gray striped cat typing on a computer. "} +{"id": "4000712", "video_name": "94260c20-b2a8-50ec-9f3e-ac9adaab46d5", "text": "video of kittens singing Christmas songs "} +{"id": "4000713", "video_name": "c6e106e0-285b-5a26-9ddb-1a414d67f0ee", "text": "cinematic cotton candy dystopia being invaded by aliens that look like 1945 bombshell pinups, but green and cyberpunky "} +{"id": "4000714", "video_name": "598befd4-c390-5a9f-a081-c59851a892f9", "text": "a full skeleton with a glowing heart on his chest dancing in the moonlight, detailed illuminous features, "} +{"id": "4000715", "video_name": "402015a3-93cd-5682-873d-82ea90624f32", "text": "an nearly bold accountant riding his super fast red motorbike on 5 laned highway, there are snowy mountains on background Message: IBINE HUSEYIN (Font: MODERN) "} +{"id": "4000716", "video_name": "a3fbfb1e-cd9b-5ce3-ab80-928997379db1", "text": "create a character resembling a light brown monkey, similar to an NFT. Avoid any imagery related to marijuana. The monkey should be depicted as a mechanic working on a Lamborghini. "} +{"id": "4000717", "video_name": "dbe02450-334f-5f98-ac5d-29203ac19858", "text": "she has arms,she have a small tattoo on my arm, erased with laser equipment "} +{"id": "4000718", "video_name": "49c0208a-d954-5a21-b234-0e6c65ebd3c0", "text": "DETECTIVE JAMES, a rugged and determined man in his late thirties, stands alone in the center of the warehouse. His eyes dart around, scanning every corner, ready for anything. He grips his handgun tightly, his knuckles turning white. "} +{"id": "4000719", "video_name": "a4270dfd-6a69-5d17-8c15-4485f7fd7990", "text": "centered, isometric, vector art highly detailed composed of dark colors graffiti illustration of skeleton blockchain warrior, wearing headphones, face is covered by highly detailed scar, vibrant color, high detail "} +{"id": "4000720", "video_name": "1246d12e-bcae-517a-ab85-15e03e725965", "text": "penguine in ocean hunting fish school "} +{"id": "4000721", "video_name": "28e29e9c-18cd-538a-aa4d-92866c29449a", "text": "a boy sitting by the window "} +{"id": "4000722", "video_name": "4a7d497a-2e60-5831-9957-f4687d3e67a9", "text": "a lego rose growing and blooming 9:16 "} +{"id": "4000723", "video_name": "6660c6d1-4ede-5a33-acb1-53b1ce21f62f", "text": "3 guys playing video games in the living room "} +{"id": "4000724", "video_name": "8a2e55ad-deb4-5f2f-be24-f391a4126c16", "text": "the girl in the picture running. "} +{"id": "4000725", "video_name": "8f87ec2c-acea-57b2-983b-5d106e44ee59", "text": "a 16 year boy playing in garden some childrane playing with him "} +{"id": "4000726", "video_name": "0f1a8727-84bf-5cca-b6f6-b313cbf48b04", "text": "Futuristic city of white lights, hologram advertisement on the buildings, lights emanating from peoples clothes. Tall, skyscrapers, sleek, and style all at night. "} +{"id": "4000727", "video_name": "a0d40d58-51c0-5f7f-8596-2b19b8a8dde0", "text": "lived a little cloud named Curio. Unlike other "} +{"id": "4000728", "video_name": "f2f0aa19-8c31-5d82-ae7f-d5f06fa5e660", "text": "1870 recording, old, grainy, the landscape of a city in Brazil, black and white "} +{"id": "4000729", "video_name": "bb89eadb-b59c-5f78-bd65-1587647c8413", "text": "horror core, man in the forest, glitch, 1980s French experimental film "} +{"id": "4000730", "video_name": "277bf800-fc5d-5a48-9d66-bba91980b220", "text": "Meghan Markle standing in a law office "} +{"id": "4000731", "video_name": "16bb7c6f-39f3-5f38-859a-b695525b7437", "text": "a man wearing fancy clothes standing up in a big house, facing the camera "} +{"id": "4000732", "video_name": "5094d015-2a37-5be9-aa15-e7c62689fd6f", "text": "Xiao of the game Genshin Impact with casual clothes and a smoothie in his hand "} +{"id": "4000733", "video_name": "f9d1807c-0811-51c2-bc00-9a1a66c8fb1e", "text": "big city moving cars night time anime style "} +{"id": "4000734", "video_name": "16c0c62b-38c9-5413-ab81-6f685b611a94", "text": "3D This story teaches us the significance of faith and devotion. Whether we face financial hardship or any other adversity, our unwavering faith in God can lead us to the right path and provide solutions to our problems. "} +{"id": "4000735", "video_name": "7e030d4c-0130-5fe4-8f54-42be39641c18", "text": "A knight rider with full armour during a full moon, cinematic scene "} +{"id": "4000736", "video_name": "a75c0c1c-08d4-5896-916b-57514669b533", "text": "the final boss for each country "} +{"id": "4000737", "video_name": "d6ef7d7b-8198-5e35-80d7-75fc1253b5be", "text": "last night a dj saved my life "} +{"id": "4000738", "video_name": "47be6c9c-0810-5b7b-a684-dbd85059e3c8", "text": "a futuristic superhero saving the day on digital marketing "} +{"id": "4000739", "video_name": "24fd0b3b-7cc0-5b1e-93d6-6ccbe8e76bf6", "text": "Big room. 2 people sitting in the futuristic sofas. 9:16 "} +{"id": "4000740", "video_name": "2acdc20a-d851-50ca-9c1a-87cbe51262fd", "text": "cctv footage of an egg spaceship flying above the ocean"} +{"id": "4000741", "video_name": "718105b8-24a3-51ef-b1f2-0a81cf6ec826", "text": "A little girl begging, curled up and looking at the people walking past her "} +{"id": "4000742", "video_name": "bb369e70-e876-5151-90f6-e345989c0a7c", "text": "All the same, 1080p picture quality, all dance, size: 9: 16, full color Message: 1 Attachment "} +{"id": "4000743", "video_name": "7d8d987c-a32b-5f13-857f-3baadd819b6b", "text": "fashion dancers wearing luxury HipHop masks on black background "} +{"id": "4000744", "video_name": "fc1ddb5d-c984-54ed-b50c-18a47bc914c3", "text": "a 1st century roman soldier smoking a cigerette "} +{"id": "4000745", "video_name": "f2199621-83d4-5219-ba38-a9c98edec425", "text": "dal fry cooking receipe. real image "} +{"id": "4000746", "video_name": "14eece00-d04b-50c8-99df-f0a8832f9f8b", "text": "flock of bees, beaming arounf flowers, sunny warm day in a mediterranean garden "} +{"id": "4000747", "video_name": "f6fb6bc5-fba3-5530-bc3f-903bb692aedf", "text": "person playing rush e on piano "} +{"id": "4000748", "video_name": "324c6bd5-72c9-5644-9eaf-69395bc06525", "text": "A plane taking off and then exploding "} +{"id": "4000749", "video_name": "85483200-2deb-5ef1-8a39-d2ed01fbd3f4", "text": "a 7 years old child anointed as king by a judah priest "} +{"id": "4000750", "video_name": "035a6fdb-79a8-55aa-a6f4-4dee4db0b254", "text": "city street, people looking at destroyed robots on the ground "} +{"id": "4000751", "video_name": "dc9c32fa-30ee-5dbf-8099-eadd3ed6f65e", "text": "Boca Juniors players in the bombonera warming up before a match "} +{"id": "4000752", "video_name": "dc2d27c5-9e89-59f1-be14-161c3a88fa75", "text": "Astronaut are seat in space craft and make there instument console "} +{"id": "4000753", "video_name": "c03a4dec-4064-593c-931b-b3a320163151", "text": "a man running scared. alien invasion. phone notifactions pop ups. techwizards shows on phone. video clear 4k HD. city on fire. man is scared. "} +{"id": "4000754", "video_name": "82fc9aa6-417e-518a-ab3c-9228f8abe8e2", "text": "dancing twist rocking roll motion 04 moving legs and arms up head "} +{"id": "4000755", "video_name": "c3f3b79d-29b9-5cc1-8fff-45889a44d6a8", "text": "a faint light emerges, revealing abstract, swirling shapes that represent your thoughts and dreams. "} +{"id": "4000756", "video_name": "697d99da-4579-552f-b451-d22ea5b0ca13", "text": "fast movement in an oriental patio "} +{"id": "4000757", "video_name": "5ad0a78c-7ed7-5d71-8956-2dd95877d56c", "text": "looking for something in the house at night, creepy, dark, indoors, poltergeist, horror movie, depth of field, cinematic lighting, scary atmosphere, unsettling, underlying sense of dread "} +{"id": "4000758", "video_name": "507787f3-31fe-572c-9758-80dfc5ce9249", "text": "youtube home page with thumbnails full of bizarre and strange thumbnails "} +{"id": "4000759", "video_name": "39cf283a-5c5e-58a0-976c-fc93176ca306", "text": "Thanos collecting programming languages instead of infinity stones, for example Kotlin, Swift, python, java, JavaScript "} +{"id": "4000760", "video_name": "b08b59fd-1513-589a-843b-4e3642fc737d", "text": "beautiful woman in candid photoshoot that emphasizes her gaze and expression, conveying a sense of emotion and depth. She is secret smiling knowingly inward. She is wearing elegant minimal prom dress in the faerie forest glade and flowers field glorious lighting and sensitive angle shot with Canon 6d zeiss optics in the style of aphrodite bedroomcore lovecore stunningly detailed photorealism evocative portraiture \u2013c 5 \u2013s 150 "} +{"id": "4000761", "video_name": "589f39df-cab8-5436-9280-9f0166d30c7a", "text": "make animation on fox , rabbit and monkey talking in forest more than 5 sec "} +{"id": "4000762", "video_name": "7341c90a-7a81-59bb-863c-768b3b3fcb1e", "text": "Village of Tranquility: An idyllic village nestled between rolling hills and a meandering brook. The village exudes a sense of peace, with charming cottages and cobblestone pathways. story format "} +{"id": "4000763", "video_name": "812be4d7-bca4-514f-9b51-7eb31395bae0", "text": "an island with old buildings on the left and an island with futuristic buildings on the right connected by a bridge being built by workers "} +{"id": "4000764", "video_name": "d4947368-7fb3-53bd-b6c5-47da78cd02f1", "text": "A DAILY life of A cashless person "} +{"id": "4000765", "video_name": "a8f2914e-cf1c-5334-862d-3c29778b1188", "text": "Godzilla fights in the metropolis against space turkeys! "} +{"id": "4000766", "video_name": "8e0df44f-ac9e-50ae-990a-53e80e6016ea", "text": "black and white jellyfish like creature hovering above a house with children in the yard "} +{"id": "4000767", "video_name": "29eaab8f-5a50-5baa-b5bc-83d63b3980c6", "text": "Alan Turning taking the Turing test. "} +{"id": "4000768", "video_name": "8557728f-777e-5aea-88e3-402cad0f8d30", "text": "a 30 second video where vijay mallaya is talking to his assistant having some document in his hands "} +{"id": "4000769", "video_name": "ed1d4d9f-826f-58a1-a342-394878ac3552", "text": "scene 2: the protagonists prepare to face an epic battle against the dinosaurs slowly rotating planets with 8k resolution "} +{"id": "4000770", "video_name": "edaba350-d253-5887-ad9d-3c05e3996c7f", "text": "a car in a big city on the sidewalk, a woman jumps on the car, day, 4k, cinematic, high detail "} +{"id": "4000771", "video_name": "9bca35a5-9ec2-581b-a253-34cb1976b8dd", "text": "clock on table vibrate fastly due to alarm \u23f0 "} +{"id": "4000772", "video_name": "01403e69-631b-5735-993c-be3b979d172a", "text": "a worker cleaning the glass of burj khalifa "} +{"id": "4000773", "video_name": "4d6f849b-f178-5ccc-bd01-91675ad596ed", "text": "still portrait video of a heavily armoured cyberpunk officer set in the 90s indie film "} +{"id": "4000774", "video_name": "10c4397f-6a41-566b-b184-159b5372d6f1", "text": "corpse of colossal eerie demiurge found on caves subterranean black and white eerie david lynchian "} +{"id": "4000775", "video_name": "d859c0dc-1f59-5e8a-ab12-e254aa2abfd5", "text": "a girl amine on the moon seeing a star with a dress with roses everywhere and sings "} +{"id": "4000776", "video_name": "5419e157-b8dd-5459-bd53-2add58c90cfd", "text": "people visit the Blue and white porcelain exhibition hall Message: 1 Attachment "} +{"id": "4000777", "video_name": "1ed54b88-4442-5c79-946c-5ce8bc016ea8", "text": "connected head in flashes of light slow motion "} +{"id": "4000778", "video_name": "c1d900a5-9967-5ddd-8ff6-68cdbd60af4d", "text": "On the surface of the sea there is a Caribbean pirate ship, choppy, American movie style "} +{"id": "4000779", "video_name": "427d8463-b2a5-521b-8163-a7c52aec0d26", "text": "a pink cute teddy bear can act like a man sniffing a piece of clothing next to a laundry basket. "} +{"id": "4000780", "video_name": "afaff1f4-5d7c-58e8-9139-3965295b7e8f", "text": "cartoon, playing rock n roll guitar "} +{"id": "4000781", "video_name": "aab4e087-6816-5e4e-aa60-3087f6a43f77", "text": "logo with ninja in it, with a cinematic look, high resolution, blend of blue and white color "} +{"id": "4000782", "video_name": "30860b20-c37e-5297-98dd-9f4ff90d89a2", "text": "film still a man realizing he is evil the camera zooms in on his face in 2023 movie scene in a house in the 18th century "} +{"id": "4000783", "video_name": "7d379e04-b223-5315-b186-69c11ee7d09b", "text": "a cute small girl sitting in the talbe watching an action movie "} +{"id": "4000784", "video_name": "ae698593-4277-562d-a4d9-08447ba7cc7d", "text": "The collage disappears and becomes clear Message: 1 Attachment "} +{"id": "4000785", "video_name": "33c5a9d2-5544-5379-a2dc-02df73b36f95", "text": "I am addicted to the game you play "} +{"id": "4000786", "video_name": "a8fc4d4a-e4f1-5d1b-949e-e15f3a8da25e", "text": "Ghengis khan if he alive today in 2023 "} +{"id": "4000787", "video_name": "9f9d06c0-5bf3-5387-8e58-4fd3d1e68b1c", "text": "nice robot AI making cake in kitchen "} +{"id": "4000788", "video_name": "03820037-3030-5f3a-9336-ce19e1123b7e", "text": "god krishan play with his brother "} +{"id": "4000789", "video_name": "77de04fc-5b7e-5063-a08c-0c2e8fed0f81", "text": "a visual of animals in a happy mood in the forest "} +{"id": "4000790", "video_name": "fc81149f-f51a-59d4-8239-9331ca71e086", "text": "an asteroid impact on seaside region "} +{"id": "4000791", "video_name": "53dfbaa5-6dfe-57e1-ba05-f756dfe66b79", "text": "moving in the distance Message: 1 Attachment "} +{"id": "4000792", "video_name": "1fe1fde6-b1e3-5358-8657-4fb9132304b6", "text": "angry mob is burning effeil tower "} +{"id": "4000793", "video_name": "58b338f6-ca20-5895-8b70-2a43d07b35ae", "text": "a astronaut turning a wrench on a satellite "} +{"id": "4000794", "video_name": "066abfdd-08a1-5089-9281-61d2cb1b6e41", "text": "young beautiful woman in dreamy cozy room with cat, on couch, dreamy colours, sparkles, high resolution, hyperrealistic "} +{"id": "4000795", "video_name": "18648835-36b9-5a60-bdda-ec6ddc1639eb", "text": "big fly sitting on the head of the man on the beach "} +{"id": "4000796", "video_name": "fcae6698-c6d1-5e4b-89e5-78785cf3cc28", "text": "cartoon of Batman, with a bird on his head, both laughing frantically while the camera pans right "} +{"id": "4000797", "video_name": "47828e3f-d087-5fd6-9136-951fc615b48d", "text": "Illustrate how Benny, Ollie, and Wiggles teach the importance of pet care. "} +{"id": "4000798", "video_name": "7525c9c5-f676-59e9-99d0-696f328389df", "text": "the forest is green, quiet, with birds flying in the sky "} +{"id": "4000799", "video_name": "80eeaa3c-8fc8-50e5-8f2d-82054e8246bb", "text": "teen indian women dancing in the river bank, red dress, fullmoon night "} +{"id": "4000800", "video_name": "c3edd2b2-25cd-540f-821a-e72010e9d91a", "text": "a grain off salt thrown against bowling pins, cinematic cinematography "} +{"id": "4000801", "video_name": "03568061-eb4c-5a4a-8dfb-e48ab9477fb3", "text": "many people running down a street, backround burning new york, cartoon style "} +{"id": "4000802", "video_name": "9de51f7c-d64e-5a74-b952-c754d4a60502", "text": "Hearing of the Sheikh, the child threw the plates on the ground in grief and anger "} +{"id": "4000803", "video_name": "d41b952a-cce6-55be-b286-f2c6cdbf9206", "text": "Lily girl teaches young witches to spread joy through magic image cartoon . "} +{"id": "4000804", "video_name": "0c7dfa4e-d9bf-5be9-94eb-4b2126bf2234", "text": "deer with glowing eyes at night, jumping at camera, black and white "} +{"id": "4000805", "video_name": "ece157eb-77e1-5a94-9b63-89f6f05744eb", "text": "A smiling buda sweating holding a eletric fan in one hands and a umbrella in the other hand with a huge sun behind him in one half and a huge storm on the other half of the background and some birds flying in the background, highly detailed "} +{"id": "4000806", "video_name": "2a2f4386-1080-569d-918d-1df35531e4d5", "text": "a cute anime girl , looking sad , with white hair moving in wind, waiting for someone. "} +{"id": "4000807", "video_name": "aae80508-b24c-5693-8dfb-481fbf4ce990", "text": "generate image of Ford Mustang 1969 while drifting "} +{"id": "4000808", "video_name": "f539dc2e-59b4-530c-bb32-67f14aac2b1c", "text": "beautiful chinese girl, rising a horse on the farm "} +{"id": "4000809", "video_name": "c73ab86c-a6f8-5abf-a82f-2fd52ffca7d1", "text": "a big green firefly, flying green bushes, night, front view "} +{"id": "4000810", "video_name": "bbd8ebbb-17b4-5c67-bbf4-80f532b6a70f", "text": "a hedgehog swinging his swords, 8k, Pixar "} +{"id": "4000811", "video_name": "d257be66-db4d-5069-88c7-06a7fda34c4d", "text": "red ants running over a rock "} +{"id": "4000812", "video_name": "72d07148-b6e6-5943-af88-3207366738b4", "text": "Produce a video that goes behind the scenes of a video production, from setting up equipment to directing and capturing scenes, offering a glimpse into the filmmaking process. "} +{"id": "4000813", "video_name": "6e598e6b-7b66-575f-a0f9-aad6ef1173c0", "text": "Lucyna Kushinada Dancing Dancin by aaron smith "} +{"id": "4000814", "video_name": "d61c9aee-a350-5a25-8282-274ce8938d02", "text": "water reflections Message: DANA (Font: MODERN) "} +{"id": "4000815", "video_name": "51ca764f-5270-52ba-8721-2e1b6b41bea7", "text": "A young person working in a bank in a desk with computer with lots of files "} +{"id": "4000816", "video_name": "e1fdf511-efce-57af-9fd0-aac3a352a8fe", "text": "psychedelic wizard flying in space, comic style "} +{"id": "4000817", "video_name": "f765879d-fb14-52f8-bb25-0cf36310056d", "text": "a cat run with a small bowl "} +{"id": "4000818", "video_name": "183819de-a637-50a9-bf82-d14fe64dd0d8", "text": "Generate a video where a dinosaur walks and eats chips "} +{"id": "4000819", "video_name": "592492de-4520-57f3-9eff-ba556133422e", "text": "an ancient book being magical opening in an enchanted room being open and slowly zooming in "} +{"id": "4000820", "video_name": "f677422d-f223-544c-b350-4cc4410a4131", "text": "A huge stone Buddha statue covered in moss, sitting cross legged, with one palm spread out and the other hand resting on the knee, ancient style "} +{"id": "4000821", "video_name": "cc06c644-4f99-5575-9ab1-b6bf1e3a4d9f", "text": "Shows an image of a bottle of white vinegar and laundry detergent. "} +{"id": "4000822", "video_name": "331cf7c6-bfe4-5cb3-becf-5cc17cb6bf88", "text": "interesting Message: Random Facts (Font: MODERN) "} +{"id": "4000823", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "rasta lion and his family, 3 lioness "} +{"id": "4000824", "video_name": "fa212053-ccd8-54d9-94a8-f912a47889ee", "text": "Animated violins and trumpet instruments playing themselves in an infinity room full of mirrors, with pale pink curtains blowing in the breeze. "} +{"id": "4000825", "video_name": "2ecb04e3-23ec-5109-b6a0-d9352b50d8b9", "text": "HD, black and white, cinematic, Martian spacecraft fly through outer space, stars, moons, planets. "} +{"id": "4000826", "video_name": "622a50fb-9bfa-520e-a570-4fc676cc1c57", "text": "clear and realistic view of beautiful deep beach "} +{"id": "4000827", "video_name": "b8dba615-4d4b-514e-85ba-27be5ab1bb15", "text": "a castle like fantasia with lots of colors neon and a flating object going towards it, it is space age and mystical with lots of sparkles and futurism "} +{"id": "4000828", "video_name": "18c0dcd2-6b8a-5bfe-8361-16bd72df7366", "text": "cinematic, red superhero cape flapping in the wind, 3d animation, 16:9. "} +{"id": "4000829", "video_name": "95fe257b-ae7e-5f06-8c1e-64f574cb859d", "text": "Imagine Carrots are flying in the air , 2 D animation "} +{"id": "4000830", "video_name": "abae990b-c7a3-5bf0-803a-a24e6f8db66f", "text": "a ufc player looking at the camera with white neon light behind him and a black background "} +{"id": "4000831", "video_name": "c4934205-7153-511e-8b3f-5480dd74d9f7", "text": "a prince searching of something in a palace, 3d hd "} +{"id": "4000832", "video_name": "65ac81d5-fe0d-5970-a9ec-32dc47afd47d", "text": "A couple inside a tent at the foot of a mountain, with camping lanterns hanging inside. They are enjoying dinner in the cozy tent. "} +{"id": "4000833", "video_name": "f2059e7a-0c25-58e2-953e-ff3b91f1c543", "text": "a couple dancing kizomba in a dark festival room, masterpiece, picturesque, beatiful woman i a dress, "} +{"id": "4000834", "video_name": "54070de7-ca41-582e-b42d-dc3f35098bcd", "text": "colorful jellyfishes, in deep dark space, anime, Japanese animation style, beautiful, highly detailed ar 3:4 "} +{"id": "4000835", "video_name": "9df8b365-28f0-5a05-b6fc-eaf68ce5d8fe", "text": "villagers talking laughing dancing. Illustrative style. "} +{"id": "4000836", "video_name": "785f772c-ccb4-5dc6-938f-4b5ff143fcca", "text": "A man wrestling with a winged angel on a hillside "} +{"id": "4000837", "video_name": "b47bc5fa-3e03-51c8-a0e4-930b6ebb0778", "text": "animals decided to plant a beautiful field of wildflowers near Squarrel tree, creating a colorful and vibrant display of gratitude. "} +{"id": "4000838", "video_name": "1b19be13-8841-5c77-bf82-19abc284df24", "text": "a video for making people know the importants of websites "} +{"id": "4000839", "video_name": "0add3d1c-c5cb-5924-91b0-142aa0952376", "text": "Secret laboratory, Scientists conduct experiments, volumetric lighting, insanely detailed, 8K, cinematic "} +{"id": "4000840", "video_name": "1df028fb-c306-5547-98b1-fd0ba4397458", "text": "black cat, office suit, sitting at the table, there is a computer on the table "} +{"id": "4000841", "video_name": "8402aeca-a89b-5803-bda1-6f4823342bfc", "text": "Ali reaches the familiar stone steps and sits down to rest. "} +{"id": "4000842", "video_name": "13ddcc22-d368-59b3-b3a4-df00680c9251", "text": "big male angel on the mountain "} +{"id": "4000843", "video_name": "42e42583-48f5-5af1-aaa0-c0e161c0cd79", "text": "a cartoon style clip of a building going from 3 floors to 4 floors in construction "} +{"id": "4000844", "video_name": "2d9ab095-a38c-57c9-a6c7-b367cc1153e7", "text": "Slavic Mythology: The Enigmatic Tale of Perun "} +{"id": "4000845", "video_name": "d2180d22-bea6-55e9-8b83-efa09fa7702a", "text": "Use Japanese art and create art that has never been created before, be creative. "} +{"id": "4000846", "video_name": "c30c5da0-2237-5594-8b62-35562894b3ef", "text": "can you make it more nature surreal "} +{"id": "4000847", "video_name": "2374f331-862a-56a3-8981-4a0df754bb50", "text": "fresh fruit and vegetables with a splash Message: Nutri Beau (Font: MODERN) "} +{"id": "4000848", "video_name": "3f345695-1ee7-5899-8806-a92a1396690e", "text": "a cytpic box on a table with light shining on it, realistic "} +{"id": "4000849", "video_name": "6f5906e0-153f-514f-b863-03d315479f1a", "text": "show a man playing hockey on a pond with mountains in background "} +{"id": "4000850", "video_name": "8f6580e8-7255-5218-8fd3-f13558c05c3c", "text": "clear as glass water Message: sasha (Font: MODERN) "} +{"id": "4000851", "video_name": "f30bff4b-2859-585f-a77a-04753513d5bf", "text": "six male friends ready for war "} +{"id": "4000852", "video_name": "47b8e753-5e11-5306-a6d5-d815a8ebcaca", "text": "cavalry charge, dusty day light, rocky field, god rays, "} +{"id": "4000853", "video_name": "9725b86a-996b-5305-9a0f-ff0ec04e7941", "text": "The second daughter replied,\u201d Dear Father, I love you as much as all the precious gold and silver in the world and more.\u201d "} +{"id": "4000854", "video_name": "97216492-78a3-54e1-a670-0f9b9640d017", "text": "frappuccino caramel up the table brown "} +{"id": "4000855", "video_name": "cedf5b87-c587-5554-8b7e-a428775dcc05", "text": "an orange cat dancing moving his arms "} +{"id": "4000856", "video_name": "959875b4-0702-5f15-a689-22e38fad33d4", "text": "a medieval style painting showing wild animals attacking a group of monkeys. 4K "} +{"id": "4000857", "video_name": "6dcf20f0-2a31-5314-b054-b84fd962ff4d", "text": "a beautiful girl uses telekinesis to levitate a ball in the air at home, very realistic "} +{"id": "4000858", "video_name": "8d9a0592-6b00-5b52-a53c-e42d6548d0c4", "text": "Keane Reeves drunk singing to karaoke, the bar is inside a film studio and he looks scared, Keane is kidnapped, bright studio lighting, hyper realistic, medium shot, fps 24 "} +{"id": "4000859", "video_name": "4a968cef-3608-5b37-baa7-3e9ecf545a73", "text": "there lived a wise old turtle named Tessa and a hasty rabbit named Robbie. "} +{"id": "4000860", "video_name": "c358235d-2fa2-5314-90f5-2a26cbb171d3", "text": "Jolly, a young boy, standing outside the house, and Ruby, a cute dog, by his side. "} +{"id": "4000861", "video_name": "acf65c56-f236-502a-a20f-1bdac0450ef1", "text": "Sara exits the garden, and the gate closes behind her "} +{"id": "4000862", "video_name": "bba2f3a9-9d20-55a9-a432-872861e76087", "text": "scene from war of ancient israel "} +{"id": "4000863", "video_name": "6b66ce88-803b-5034-bfd4-c7cc7ee49c8e", "text": "the opening schene to castlevania castle, pan in "} +{"id": "4000864", "video_name": "6db90c25-cdf4-533f-aa7e-c2cbef87d2f8", "text": "zooming in to a face made of billowing cloth, render, 35mm "} +{"id": "4000865", "video_name": "095d7d89-c4d9-58dd-bae1-55e474f0f60c", "text": "Aerial video of a Kaiju destroying the city, news footage, helicopter shot, shot on iPhone, Nikon DSLR "} +{"id": "4000866", "video_name": "9be40343-5e74-57d1-83b6-04fdc086250f", "text": "4 indian kings talking to each other in palace "} +{"id": "4000867", "video_name": "ba239d5f-a049-58c5-ac3c-9db4cd05f9e2", "text": "Destroyed planet, floating starship wreckage, detailed depiction, real, 8k, "} +{"id": "4000868", "video_name": "71f9a5b7-d7db-5f88-9643-fa3bb37e9607", "text": "A trio of youngsters teasing another boy "} +{"id": "4000869", "video_name": "e412e03f-c391-531c-adee-522b18292a9b", "text": "The child is shown standing at the entrance of a path surrounded by trees, curiosity evident on their face.3d "} +{"id": "4000870", "video_name": "474cbd8e-66d2-5672-942e-d32147e46b5b", "text": "It describes a scene in which a sower is scattering seeds in a fertile and fruitful field, highlighting the details of his action and the natural environment around him. In ancient times "} +{"id": "4000871", "video_name": "6f87096a-af39-55d3-a59b-6f6b1a1af9c7", "text": "beautiful woods with mountains Message: Zolvxy likes kids (Font: MODERN) "} +{"id": "4000872", "video_name": "96a49e0d-294f-5195-94bd-2301bac52d44", "text": "A cold morning in the forest, snow is falling gently, as the sun rises "} +{"id": "4000873", "video_name": "26cac7a2-160b-5e90-9d02-0fbe219b02e5", "text": "Superman fighting spiderman while a volcano happens and Goku apears "} +{"id": "4000874", "video_name": "bff378ac-46c6-55ba-bb64-17a96fe18f08", "text": "A deep blue baby turtle, playing the guitar and singing into the microphone, highly detailed, 3 d, dreamy, raytracing, trending on artstation,8k "} +{"id": "4000875", "video_name": "b58119c0-a4e3-522d-be13-34825df83cce", "text": "A forest of skeletal arms, hands undulating Alfred Stieglitz grainy black and white 1900s "} +{"id": "4000876", "video_name": "080214e9-2317-5398-8cb7-809f437aa112", "text": "Realistic wierd vintage horror liminal film form the 70s with a strange vibe "} +{"id": "4000877", "video_name": "606e90b8-1a35-57ea-a529-5221223fa34f", "text": "a beautiful model girl with clothes out of gold is dancing in a mirror room "} +{"id": "4000878", "video_name": "22ad7a5e-a67b-5480-a26c-ea7eb42c6cee", "text": "sunset going over the beach with the sun going down and going out of sight "} +{"id": "4000879", "video_name": "85ee5b43-a7cf-5d1b-a050-95cbdea9584b", "text": "1930s nautical lighthouse (2019) style 200 foot long shark tears through the water in the distance "} +{"id": "4000880", "video_name": "ed8b2051-b34f-5546-b7e9-f089d550e2e1", "text": "robot picks up clothes for a person "} +{"id": "4000881", "video_name": "e59c41b9-b76f-57ad-b54b-2c2b4d204388", "text": "Darth Vader in a superstore saving the store from a rubber with his lightsaber "} +{"id": "4000882", "video_name": "d54d2375-370e-5a89-9100-65740d3ba776", "text": "a beautiful painting of a volcano erupting at night "} +{"id": "4000883", "video_name": "9633d54a-0258-50ef-a349-96724483177b", "text": "the bright moon shines over the sea; from far away we share this moment together "} +{"id": "4000884", "video_name": "82732edf-8538-5a53-9a46-708f57291a40", "text": "Surya Samaj Rajkumar came up with the idea of electing the next Prime Minister of the state and the next day he made an announcement in the entire state that the person who considers himself worthy of becoming the Prime Minister. "} +{"id": "4000885", "video_name": "6d67adae-8f2d-5b32-be54-64832dde2803", "text": "Eclectus roratus Wearing Christmas clothes and singing happily under the Christmas tree "} +{"id": "4000886", "video_name": "c1a1c970-0928-5d9d-889c-62724a3ec7f8", "text": ":create a robot that can fly but has 6 mechanical limbs coming out the top deck like Doc Octopus and aneck like the arms supporting a long oblon oval shape head narrowing to a point to the back with big roundish eye lenses that is hovering and crawling along a steep craggy mountain side filled with nooks anf crannies looking for small explosive drone bots. "} +{"id": "4000887", "video_name": "6f6b4bba-ef8a-573d-9e5a-3ae96e717afa", "text": "A person walking through city where orientation and gravity changes, like M.C. Escher, drawn animation style "} +{"id": "4000888", "video_name": "f64f1dd7-f960-59ac-acba-8f531fb09453", "text": "a video of a dragonfly in a flower field "} +{"id": "4000889", "video_name": "c218608e-cc8e-59e9-8ec4-5acd97e610b2", "text": "A harmonious family spending the Chinese New Year together "} +{"id": "4000890", "video_name": "48790f88-5400-56a4-a1d0-0cb9b9f63956", "text": "Large crowd of cats begging for food "} +{"id": "4000891", "video_name": "0db25968-6cf2-59ec-a748-0d6d00eb67f7", "text": "Gradual zoom in as the camera zooms in on a child walking down a long road, and on either side of her, flowers of different colors appear, and she is holding a letter in her hand. "} +{"id": "4000892", "video_name": "35ce210e-a051-53b0-bc5f-5370e2381290", "text": "a young man has the wind blowing through his hair as he begins his journey aboard the galleon, slow zoom in "} +{"id": "4000893", "video_name": "a2dc5387-4469-5958-9488-e46a202aed83", "text": "super 8mm film footage, hand touch the magic symbol "} +{"id": "4000894", "video_name": "429cd7af-6093-5caa-8758-ef3f2dd11cdb", "text": "Silhouette giving financial advice by saying that the best invest is your personal education "} +{"id": "4000895", "video_name": "75f00e99-6d23-5721-9514-609d48837b98", "text": "gravestone on a mound under the moon,wind blows and small birds fly in the distance "} +{"id": "4000896", "video_name": "03c54215-3cd0-5e4c-bac5-6da79ab326ce", "text": "3d youtube icon is moving slowly "} +{"id": "4000897", "video_name": "274bad71-6a98-5fc2-aacc-234aefa90ee9", "text": "samurai girl in the bamboo forest "} +{"id": "4000898", "video_name": "d7133a54-3de2-51c5-89c5-f124b7939958", "text": "speedy gonzales runs out of the office "} +{"id": "4000899", "video_name": "7c41942d-acf3-5ed6-a36f-62f8b8dc9e8f", "text": "boys and girls running in circles drinking tons of liquid nitrogen, laughing, screaming, jumping "} +{"id": "4000900", "video_name": "2b6e0bb0-9370-56f8-8b98-8cedae13272d", "text": "nissan skyline gtr r35 in blue racing a yellow bmw m3 2023 "} +{"id": "4000901", "video_name": "db8f2cb9-5dec-50b9-bf56-df2fe0854d0d", "text": "man pixar style in the dark watch moon "} +{"id": "4000902", "video_name": "b3601719-4bda-5b27-8e4b-4fc2d23998db", "text": "generate a loop video for 4 mins a girl sitting with headphone and listening to music watching rain through a window and chilling "} +{"id": "4000903", "video_name": "0a4aae26-5d62-5d2b-80f1-61a5dd722a3c", "text": "desk with a central canon copier. Message: EXPERT LINE (Font: MODERN) "} +{"id": "4000904", "video_name": "1caaf316-bd5f-5359-92ba-56a5fa97e6ca", "text": "boys in a boxing fight, 1940s style, black and white documentary, highly detailed "} +{"id": "4000905", "video_name": "1bd857fd-9843-52a7-a92e-b31837b18434", "text": "bright eyes in the middle of the forest under the moonlight "} +{"id": "4000906", "video_name": "229ff53f-65f6-5814-91c3-22797154f7d7", "text": "Moving Kundalini energy with spiritual glow "} +{"id": "4000907", "video_name": "c0b60efd-1054-5172-a3fe-ce52a4e424b2", "text": "the city of Chongqing full of rivers and bridges "} +{"id": "4000908", "video_name": "8b1dad91-e3b8-5828-bcf8-537c05ada30b", "text": "kids play with cricket bat ,clear bat,3d cartoon,9:16 "} +{"id": "4000909", "video_name": "e43114ea-e534-5af1-b23d-f5ee8efef621", "text": "Human at hight look up at the night sky, with panning of video up to the sky. Video ratio of 19:6. "} +{"id": "4000910", "video_name": "2844543f-9201-5a48-97b5-65b49892488d", "text": "worms eye view following mice infestation ,ground level . "} +{"id": "4000911", "video_name": "2926a6e3-8bea-56ac-9221-3bdb43fcb7c5", "text": "1. Aerial shot of the Garden of Eden, showcasing its lush greenery, vibrant flowers, and flowing rivers. "} +{"id": "4000912", "video_name": "d7430c25-28ba-5e34-ad7a-9551d1f1c07e", "text": "In a land filled with wonder and magic, there exists a place known as Sparkle Village. "} +{"id": "4000913", "video_name": "a4a6b87d-14d3-5e14-b729-bb3c0eb42db2", "text": "a cute girl on the set "} +{"id": "4000914", "video_name": "3c511799-6cc1-53e1-92ca-82ca3c29015c", "text": "two young girls walking in the school passage going showing each other school reports "} +{"id": "4000915", "video_name": "8c05dcbf-3b76-5f11-a9ae-4b4d123f7537", "text": "A TV on which SSTV images are interfered with "} +{"id": "4000916", "video_name": "c24595b0-d44b-538a-a38d-7405608ace85", "text": "The sound of sirens grows louder as emergency services approach the shopping mall. The shot showcases the flashing lights and the arrival of help "} +{"id": "4000917", "video_name": "2432d623-2777-547a-84da-9087c7b69ae0", "text": "create a girl picture pixel prefect using from cryon art using 10000 keys , the image should be realistic "} +{"id": "4000918", "video_name": "2ba638e5-be23-5ef3-b67e-65912682b6d4", "text": "a martian from mars attacks is an anchorman for a news channel "} +{"id": "4000919", "video_name": "19e91c5c-620e-5444-a4c3-03d04fed64b7", "text": "zarathustra coming down from the mountain and meeting the old man "} +{"id": "4000920", "video_name": "e4f54170-ebed-57f8-a82d-49d73d0f4660", "text": "man overgrown by tree branches in a dark forest "} +{"id": "4000921", "video_name": "ffaf1161-c363-5031-b940-4fc4d8a35115", "text": "video of mother okapi with his baby "} +{"id": "4000922", "video_name": "5ceae5a0-5338-5f80-9189-0d32d29fe814", "text": "create a battelfield in 3d Message: war (Font: MODERN) "} +{"id": "4000923", "video_name": "f095cce1-50a7-50ac-8234-3e42cb4b0900", "text": "Arrange various smoking essentials such as cigars, vape pens, cigarettes, and hookahs amidst a bed of vibrant autumn leaves. Place a hookah in the center with a carved pumpkin nearby, smoking a cigar to create a whimsical and themed display. Surround the hookah and pumpkin with other smoking accessories like lighters, flavored tobacco, and decorative fall elements.Bongs Pipes Hookahs Rolling papers Bubblers Dab Rigs and Dab Tools Vaporizers "} +{"id": "4000924", "video_name": "aa91ff3d-ff8b-5b25-992c-ce7f7a3b16b4", "text": "sunshine blue sky white clouds sunflower "} +{"id": "4000925", "video_name": "c5ea79cf-8fd9-593d-93b3-eb352bd04767", "text": "a spoon dancing to music ar "} +{"id": "4000926", "video_name": "e4dd1dbf-4824-556b-a578-e4c464aa79a0", "text": "2 hamster human hybrid driving a police car "} +{"id": "4000927", "video_name": "5c8aa082-bd84-535d-a754-5ce5e2f82b9c", "text": "robocop walking to a police car "} +{"id": "4000928", "video_name": "e4570185-e0ee-51d5-971d-167573122097", "text": "baby deer playing with mom deer with wind "} +{"id": "4000929", "video_name": "b0b3691b-4890-5ea4-a518-d9942414254d", "text": "concept art style of a colorful and vibrant forest "} +{"id": "4000930", "video_name": "adf9df5b-14c4-5d62-a17c-2e53314aa5b7", "text": "haunted vampire castle in myst Forrest with ghosts, vhs, old movie, old film, the ring movie, Blair witch project, Dawn of the dead, ghosts, zombies, horror, 1970, chromatic, focus, camera shake, "} +{"id": "4000931", "video_name": "89df9c52-8044-597b-ac42-1cf7fb6991e0", "text": "Shawn mendes and Sabrina Carpenter caring their baby in bed "} +{"id": "4000932", "video_name": "958eb995-cd9a-50b3-aae0-612f0159f0af", "text": "A boy is treating his girlfriend emotionally "} +{"id": "4000933", "video_name": "46fe5903-7535-5e3b-8f11-702409c716e5", "text": "young man in the woods disturbed "} +{"id": "4000934", "video_name": "a7425a74-9126-5c48-9c72-84e81722615b", "text": "the flash running from the first person prespective "} +{"id": "4000935", "video_name": "a657bf1f-59fb-5e30-8d40-d0a5e909a216", "text": "beach background where the ocean is splitting in two leaving large tidal wives on either side. the bottom of the ocean exposing shells and sea creatures inside the waves. "} +{"id": "4000936", "video_name": "921fd810-56be-503a-90c3-87252fbaf7b4", "text": "The character in the movie has a bright red eye, in the style of zombiecore, otherworldly beings, warped, ps1 graphics, realistic hyperrealism, light red and bronze, eerily realistic "} +{"id": "4000937", "video_name": "15822fc6-6746-591e-b103-9d3ba850beed", "text": "Boy found a portrait of an ancient castle "} +{"id": "4000938", "video_name": "bb2a3d9e-1bf2-5156-a185-eafe7f513f21", "text": "Captivating scene captures a mesmerizing tangle of luminous spirits, radiant glows, and ethereal elementals. The imagery is rich with intricate details, each more captivating than the last, creating a breathtaking and extraordinary spectacle. The interplay between light and shadow reaches remarkable levels, enhancing the visual depth of the composition. Presented in stunning 4K resolution, this imagery promises an immersive visual experience. "} +{"id": "4000939", "video_name": "d18c73cc-3432-5435-a386-62dc6cf2adf7", "text": "Japanese forest Message: Felicya (Font: MODERN) "} +{"id": "4000940", "video_name": "7eae1cf8-7955-5356-9ff4-e439b8cd5a8f", "text": "a network of IoT devices sending signals between themselves via cables Message: XYTE (Font: MODERN) "} +{"id": "4000941", "video_name": "3acc179e-d0c6-5e8c-9e11-f45cb136d53d", "text": "sunrise behind the Golden Gate bridge on a rainy day "} +{"id": "4000942", "video_name": "87daa14f-5b28-5711-b9fb-700ace1c6afc", "text": "a kid helping another put on a blue robot suit "} +{"id": "4000943", "video_name": "292593e0-13c1-5c76-bdb1-d4202552ab7e", "text": "Wounded peasant fleeing through the foggy forest "} +{"id": "4000944", "video_name": "3016e57f-c3c1-560d-8ba5-f6c4e686ab2c", "text": "Villagers chasing Rufus the dog through the cobbled streets, with expressions of surprise and amusement. "} +{"id": "4000945", "video_name": "3f855546-2691-5d1a-aac8-4d6c07e959ca", "text": "Ken Kaneki from Tokyo Ghoul sitting on pyramid as Kings together "} +{"id": "4000946", "video_name": "f0559d37-f996-54f3-8c9e-f1049a3c2ac7", "text": "mobile phone talking animation on office sitting on chair "} +{"id": "4000947", "video_name": "0213bd57-70a0-5790-97d4-bcacce97aea2", "text": "lovecrypt max beckmann triptych NeoGeo Arcade "} +{"id": "4000948", "video_name": "f7c70782-79e5-5c32-aab8-7885fcb6d41a", "text": "A civilian very elegant suited man meets the pope in private apartments of The Vatican. Show a camera right pan of Maps. Near realistic sketchbook stye, monochrome, beautiful lights and shadows contrast, motion3 "} +{"id": "4000949", "video_name": "7dfa2a0f-6c3d-5e99-9e4a-6dfc4219543a", "text": "beautiful mountains stand tall above the clouds "} +{"id": "4000950", "video_name": "5bacc9c8-0dff-5289-9c31-7c6b601186e8", "text": "john wayne in a gun battle against john wick "} +{"id": "4000951", "video_name": "a7049095-36e5-5136-9b34-9eda9b962794", "text": "squirrel and the seed in the forest 4k "} +{"id": "4000952", "video_name": "ce337d3e-78c8-5336-9c0c-19e1bf22b843", "text": "A Japanese tea house with blowing wind, flowing water animated Message: 1 Attachment "} +{"id": "4000953", "video_name": "a476b343-8ffd-50f0-b00f-a58b3b6832f1", "text": "a zoom in city from below of turnnel into a high technology advanced city like futuristic flying cars and glowing house "} +{"id": "4000954", "video_name": "1302379c-28ac-5137-8673-e8b957cb159d", "text": "animated yacht for music cover image "} +{"id": "4000955", "video_name": "510cb8f9-978e-5219-b8fa-68d7ace42d4d", "text": "woman surfing into a massive tube. hyper realistic 8k, "} +{"id": "4000956", "video_name": "0bbe1ba2-030b-5592-b1f3-b1094b4e58fc", "text": "image fill,masterpiece,best quality,super detail,8K,(mythical),(mystical atmosphere),(intricate details),science fiction, \uff08comet\uff09\uff0cDusty\uff0cMars\uff0c bright light,solar system\uff0c "} +{"id": "4000957", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "a close up of a hand playing a C Major chord on a syntheizer "} +{"id": "4000958", "video_name": "3df1be5b-364c-54c7-b07a-0f617107e388", "text": "robot hamster doing a handstand riding a skateboard in a busy mall "} +{"id": "4000959", "video_name": "dfcc3b4a-24ea-5769-a3bc-608ce3f215d1", "text": "cartoon bending down and touching toes "} +{"id": "4000960", "video_name": "5f56c610-8cd3-5ceb-87f1-b94edb91e754", "text": "looking out from the bow of an old sailboat as it sails through stormy weather "} +{"id": "4000961", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "The panda couple had a party with squirrels, little foxes, little raccoons, fawns and larks in the bamboo forest "} +{"id": "4000962", "video_name": "2bb72006-9472-5c34-96d1-ce53fe3e84a3", "text": "The world held its breath as the fateful day arrived "} +{"id": "4000963", "video_name": "83a115ee-0b56-5201-8e5b-df33904d59fb", "text": "The Necronomicon sits on a table in a cozy kitchen. "} +{"id": "4000964", "video_name": "5a9ce205-36b9-5486-a6bd-c1a35dc91fa2", "text": "Pov footage of walking at NYC at twilight raining day walking towards the bus stop "} +{"id": "4000965", "video_name": "567de4ba-beee-5666-a255-829d8983c360", "text": "add smiling movement that anime picture "} +{"id": "4000966", "video_name": "cd20afc9-7c9f-5e22-8129-404d8e9784af", "text": "Photo realistic high resolution image of A boy in prince with crown get up proposing a fairy with decorative wings smiling Indian with rose bouquet vibrant image and text written Happy Propose Day My Dear Pari "} +{"id": "4000967", "video_name": "8b656648-3ba8-5e5a-b330-2a0a4cc5b0f1", "text": "jumping box, cartoon animation, soft shape "} +{"id": "4000968", "video_name": "4ba8735f-8e1e-55cb-bfa4-5f9516eadc5f", "text": "acid green rain in a dark desert with thunders "} +{"id": "4000969", "video_name": "0ff51db1-6400-50f0-bab7-45ad75f6c3a3", "text": "Space hunchback whale opening mouth very wide over earths atmosphere "} +{"id": "4000970", "video_name": "933b1ecc-cae6-5b85-ae04-94ad5bffa09d", "text": "wedding dragon party in a rave with several dragons dancing in a huge castle illuminate with strobbing rgb lights, fast traveling camera, ar 16:9 "} +{"id": "4000971", "video_name": "457f3a11-5130-581e-86db-7ef9bf96382a", "text": "two 7 year old indian girls twins doing judo 3d Pixar characters "} +{"id": "4000972", "video_name": "faeb11f9-99dd-5fea-991f-6684ce060d21", "text": "Previously grappling with mental blocks, she now resumes typing, and as her thoughts flow freely, leaves begin to manifest around her screen. Gradually, these leaves extend beyond her computer, spreading across her desk and throughout her entire workspace. "} +{"id": "4000973", "video_name": "d89f4799-811d-5d5d-b9be-72b558fcf1d6", "text": "Space environment, huge spacecraft, a group of planets and stars \u200b "} +{"id": "4000974", "video_name": "e9f1e94d-cbba-55cb-b180-fae6a20a6f5b", "text": "maria the most beautiful sound i ever heard "} +{"id": "4000975", "video_name": "7178ed82-ee99-56d1-a1c9-bca55c1f1ef5", "text": "Very hearts texture, River, Walter, stars, clouds "} +{"id": "4000976", "video_name": "926adee9-c906-5a58-995a-8d957227a8f1", "text": "bartender behind the bar, slow motion Message: 1 Attachment "} +{"id": "4000977", "video_name": "a24e3ec2-9f23-59f1-92ff-fba558e6a6d2", "text": "a boat floating in a lake is carrying little girl, dark night with stars "} +{"id": "4000978", "video_name": "6a7c087d-d529-56c1-b53b-ddc1cd47a5ff", "text": "animation of a shoe with retro style "} +{"id": "4000979", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "generate a photo of distruction of dinosaurs from earth due to asteriod "} +{"id": "4000980", "video_name": "79001531-f09f-56a4-b7ec-d5460e00aed8", "text": "village story of 3 grown brothers, disney cartoon style, having fun while walking on some village area "} +{"id": "4000981", "video_name": "770210cd-b1ae-5f7d-94f0-c1e0eb17568c", "text": "Flock, in the style of tomer hanuka, joram roukes, emotionally charged portraits, smilecore, rustic futurism, henrietta harris, darkly comedic, rough painting, children illustration "} +{"id": "4000982", "video_name": "30c87673-8927-525d-bc25-fc4e230293b8", "text": "a magical white lighting from the sky moving down in the in jungle at hut, cinematic, film "} +{"id": "4000983", "video_name": "79b82a05-806a-5661-9f4f-b64eab7a9fb2", "text": "A ship in the seven seas "} +{"id": "4000984", "video_name": "ed197246-86fa-59fb-bda2-13e8ebef3402", "text": "a woman and a man are working at the office at night "} +{"id": "4000985", "video_name": "cfc6517a-df01-5701-9b7d-3cb13d7b3491", "text": "the Jewish Temple surrounded by the Roman army in 70 AD in the style of disney pixar "} +{"id": "4000986", "video_name": "7dc3cd2a-bddf-585d-a73b-f2a3f58677df", "text": "a island, sunny day,many skyscrapers builded on it, highlight, wide shot from hight angle, pan shot slightly, cinematic style, 16:9 frame "} +{"id": "4000987", "video_name": "7f2fec22-6b17-5fca-b130-790a524143a6", "text": "a girl in her mistery garden,blu lighting "} +{"id": "4000988", "video_name": "01bd940b-503b-5204-9fe1-a400b43e6af1", "text": "a 13 years old indian boy named as tanay and 13 years old 2 named as priya and lavina are girls standing outside facing in a city house "} +{"id": "4000989", "video_name": "4a53d994-b8cd-5fe5-a664-2801ee162599", "text": "cinematic timelapse, light blinking, 32k resolution, dissolved, captured by Soft Focus Camera "} +{"id": "4000990", "video_name": "112f53ab-84bc-5b29-8e3e-bfec462c6a64", "text": "bearded dragon flying with big white wings. Background space "} +{"id": "4000991", "video_name": "5cda74d1-c2af-5af1-821d-5419baeb0e20", "text": "a beautiful landscape, busy elements, a bonfire, extra dense canopy, blooming plants and flowers Message: gostosa (Font: MODERN) "} +{"id": "4000992", "video_name": "e83871b4-2d7f-50c3-adda-e8b9cb0f8448", "text": "the men find themselves in a lush valley teeming with life, their boots brushing against wildflowers "} +{"id": "4000993", "video_name": "7fa28ab5-f082-5f26-ab17-b9bd9133be71", "text": "Pictures of the three pyramids and the Sphinx in winter with rain falling on them "} +{"id": "4000994", "video_name": "adbc8bff-4eb9-5150-91a8-b7d87278dbfe", "text": "Beautiful women are dancing among the flowers "} +{"id": "4000995", "video_name": "ed868348-a115-5e81-91f4-331d1237e0fa", "text": "bedroom windows view, midnight, twinkle twinkle little star blinking view, cinematic moonlight, highly detailed, art 16:9 "} +{"id": "4000996", "video_name": "0b72e9f4-9170-5429-80a6-7f20949f6753", "text": "Porsche took a ride on the Zelden glacier. The icy terrain stretched out as far as the eye could see, glistening under the pale moonlight. The engine roared to life as the sports car navigated the treacherous path, its tires gripping the frozen surface with determination. "} +{"id": "4000997", "video_name": "9c24b70b-07b5-5b6b-9268-0fa70d6c4743", "text": "whale in space near an antimatter star, giant space squid emerges from star "} +{"id": "4000998", "video_name": "ac12d6e4-f9cb-5813-bee3-074f2f6b93dd", "text": "Mercedes drives around the city in heavy rain "} +{"id": "4000999", "video_name": "36069cf1-1283-555d-95c3-8c32b1ecfb54", "text": "a music video by wes anderson "} +{"id": "4001000", "video_name": "56288c13-3937-557b-a224-77150c954468", "text": "Bach passionately blowing on a saxophone in an 80s music video "} +{"id": "4001001", "video_name": "b650571b-028b-5985-b5e0-2adfaf7ba73d", "text": "View from inside the design workshop called Ates Trap "} +{"id": "4001002", "video_name": "7dcb6089-a1c6-5b31-86f5-325cf7e0a5b9", "text": "highly detailed, lush green alien landscape with alien animals, human female standing near a tree, realism, vector style "} +{"id": "4001003", "video_name": "92ba9001-c17d-566a-b2da-e0a86c1175bd", "text": "Looped clip of dark starry night with twinkling stars. High definition, Realistic. "} +{"id": "4001004", "video_name": "672a64ab-30ea-5436-bd74-4636cd2c253e", "text": "man who his name is hocham "} +{"id": "4001005", "video_name": "96c4d957-a6ca-57dd-964f-fda556535b05", "text": "a cyborg man lying in a sand desert "} +{"id": "4001006", "video_name": "8ce19230-9321-55ff-acb9-c8db2f42a50e", "text": "The laboratory is bustling with activity as researchers move around, conducting experiments and analyzing data. Dr. Lawson is seated at her computer, immersed in her work. On her desk, there are notebooks filled with calculations, a cup of coffee, and a stack of research papers. "} +{"id": "4001007", "video_name": "a9477c8f-0360-5303-b6b2-8dee0859afe2", "text": "John Deere Tractors, harvest, farmland, open fields, 4k Message: RDO (Font: MODERN) "} +{"id": "4001008", "video_name": "fdc58036-a670-5d13-aa0e-9f9e17bf2019", "text": "Describe in detail an exciting scene of a spacecraft gently landing on the surface of Mars, highlighting the visual, sound, and sensory elements involved in the process. "} +{"id": "4001009", "video_name": "425f4794-66d6-5b14-92e7-58af568a1563", "text": "a pretty Asia girl stay in the street,long hair,smilling Message: 1 Attachment "} +{"id": "4001010", "video_name": "ae44998b-b190-5b13-9af5-16d81deaac39", "text": "The video is in the style of Chinese martial arts novels, with a full body shot of a male and a female knight in ancient times, facing each other with swords, delicate facial features, firm eyes, ice and snow, strong wind blowing, the perfect combination of light and shadow, ink painting style "} +{"id": "4001011", "video_name": "26016fb6-6386-531b-91c0-72b52fa77b31", "text": "Create an illustration depicting the righteous community led by Prophet Idris, including prominent figures like Wadd and Shuwa, engaging in worship and following divine teachings "} +{"id": "4001012", "video_name": "fbe8c588-1e7c-58d5-a9a7-178b01fe57fa", "text": "a man looking sad and lonely when looked through a window "} +{"id": "4001013", "video_name": "f93e78bc-4886-5ee2-b14c-079fad9076d5", "text": "sci fi female facing the camera with a dark ponytail for hair is walking in a futuristic teleporting \ntunnel armed to protect and very serious "} +{"id": "4001014", "video_name": "e900b281-579f-5217-8e56-eeed05eaa5c9", "text": "a diamond ring floats in the middle of the room "} +{"id": "4001015", "video_name": "2ad0ff7c-3664-5c96-aae7-c121236ff858", "text": "Joe Biden making a tiktok video for likes and making funny noises with his mouth,HD, 4k resolution, sharp "} +{"id": "4001016", "video_name": "046296b5-92d6-5e8e-95e2-7fb7e5ad4cc1", "text": "Scene: Cat focuses on training her strength and fighting techniques. Intellectual cat "} +{"id": "4001017", "video_name": "8efbe838-82b1-5809-819e-993e7a7cf07f", "text": "Through every forest Above the trees Within my stomach Scraped off my knees I drink the honey Inside your hive You are the reason I stay alive "} +{"id": "4001018", "video_name": "0dc13518-4f07-5c57-b6ef-36d9a89e8912", "text": "Young Girl in space attire walking towards a large space craft with her pet unicorn cat and cyborg dog, 4k, futureisitc planet, pink sunset "} +{"id": "4001019", "video_name": "2194db9d-89c5-50c2-a1a0-91c91494be37", "text": "drone view of sea, and zoom in to underwater. "} +{"id": "4001020", "video_name": "8f8188b5-72c2-5f52-b270-b995e463b49f", "text": "a child walking through the streets of gaza "} +{"id": "4001021", "video_name": "e1dd885a-ec9e-50c4-b3df-9e31f9a15ced", "text": "a wooden house, there is snow everywhere outside, a young couple are kissing and its snowing "} +{"id": "4001022", "video_name": "2d45980f-80e4-540f-acee-0ce30e274d57", "text": "tattoo of a mythical water dragon morphing into a fish "} +{"id": "4001023", "video_name": "ceda3746-64cf-5ea7-b8ad-8fd4065a8f07", "text": "Elon Musk fight against the Avengers. "} +{"id": "4001024", "video_name": "b8ff383a-6954-5147-801b-2eed6a2b32f3", "text": "An image of war. Fumes. Weaponry. "} +{"id": "4001025", "video_name": "64f31d4c-f07e-557e-b469-9a055fb3ddf4", "text": "lux race car in and a tree "} +{"id": "4001026", "video_name": "ae1a04ac-7f56-54e1-8048-1c57c708b6d6", "text": "disco lights and lazers going crazy "} +{"id": "4001027", "video_name": "87439c17-d1d1-5773-a075-672260678aa4", "text": "young boy with long hair, moving hair, mountain, moving cloud "} +{"id": "4001028", "video_name": "7768165c-683b-548f-a1ea-cb7fd42f7a9a", "text": "80 neons flashing motion graphicks fast "} +{"id": "4001029", "video_name": "c6b6e2e7-a3ed-5c84-bdce-0d40665d787b", "text": "The celebration in the village, where Isabella is hailed as a hero, and the fog lifts, the fields blossom, and the river runs pure agai "} +{"id": "4001030", "video_name": "276e0fed-e9e4-5d21-b8bb-0f305bef41b4", "text": "The Silver Surfer is a powerful alien superhero who was transformed by Galactus into his herald "} +{"id": "4001031", "video_name": "f61d7277-7aea-5a31-8bba-9047a62fa7d1", "text": "photography style, emilian girl eating an emilian tigella in a typical emilian restaurant "} +{"id": "4001032", "video_name": "31d5ea20-ef56-5eee-9fe6-946d0937f364", "text": "statue falling over on to sand "} +{"id": "4001033", "video_name": "0980501c-a5d4-5f06-a8b5-ae1419497dce", "text": "overhead view of indoor cannabis farm Message: SMOKE MORE WEED (Font: MODERN) "} +{"id": "4001034", "video_name": "3b2f874e-cc70-51d7-ba5f-200567b6a6f3", "text": "two women standing close together leaning in to each other, Hyper realistic, 8K, Unreal Engine, Movie sequence "} +{"id": "4001035", "video_name": "2ef9d866-4596-5c38-95da-3518a343fa09", "text": "Grainy black and white footage of Mumbai streets, bustling but dusty medium:cinematic "} +{"id": "4001036", "video_name": "fccec5dd-4c51-56a9-9f97-b186dd5dbfd3", "text": "Hair blowing in the wind, slow motion, flexing in a powerful stance "} +{"id": "4001037", "video_name": "a537e97d-32e9-5ecf-adb4-92394251e5dd", "text": "white dolphin swimming circle in swimming pool up camera shot "} +{"id": "4001038", "video_name": "33000b1f-e84d-53c8-b0a9-df845d9d0a55", "text": "A Ninja creating a Storm by Rotating in the Same Place "} +{"id": "4001039", "video_name": "5450c8a1-0015-5414-844d-30524e15f491", "text": "robot woman wearing a bikinni exploding "} +{"id": "4001040", "video_name": "1b47c7ae-5840-52a5-bfaa-bace2f42ae36", "text": "A heart beats violently on the grass, Zhao Wuji, abstract art, oil painting "} +{"id": "4001041", "video_name": "d8861a20-d278-5f72-82c2-3f38ffc83bca", "text": "Create a vibrant animated kitchen scene in the style of Korean animation. The kitchen should have warm, earthy tones and soft, radiant lighting. In the center of the animated kitchen, depict a skilled animated cook wearing a pristine white apron, surrounded by an animated wooden cutting board adorned with a dazzling array of colorful and animated fresh ingredients. "} +{"id": "4001042", "video_name": "3ba80d95-3f70-5337-b092-fcf29f18951c", "text": "Pink donuts with colorful sprinkles falls on the screen "} +{"id": "4001043", "video_name": "3eec416b-3e85-5860-8cd6-6030e551173c", "text": "woman with purple hair reading a book "} +{"id": "4001044", "video_name": "2f61173f-29fd-54ae-9f9b-e7062fef76f6", "text": "cows on the contry field lying down "} +{"id": "4001045", "video_name": "4f051abf-b013-5894-987a-c9cdbeb803b7", "text": "Michael Jackson doin the inversion flip over dance 8k super realistic image "} +{"id": "4001046", "video_name": "9f79b600-bb38-5064-8535-6e2132bd3699", "text": "Establish a dark, gritty atmosphere with a stormy night setting. Red Riding Hood, "} +{"id": "4001047", "video_name": "430e42fe-14be-56ee-95db-6ae6c0776fde", "text": "it was a long time ago "} +{"id": "4001048", "video_name": "79ddfc66-3a73-5d6d-bb22-5ee09b1a5796", "text": "credits at the end of the film "} +{"id": "4001049", "video_name": "850a40d7-564c-5924-b9dd-d6f406d7c6d8", "text": "tow years worth of tow truck builduo on the beach with the toenail factory in the background "} +{"id": "4001050", "video_name": "658d3b52-2658-52c8-944b-92d25572431d", "text": "gray stone medieval castle, dark orange sky, dead leafs, camera zooming out "} +{"id": "4001051", "video_name": "84adf7cd-3c1f-56d8-9285-581e590277d3", "text": "goju satoru standing on a rooftop in tokyo japan with back to the camera, his hair moving in the wind, night time "} +{"id": "4001052", "video_name": "9d7b3d1c-018d-5045-852e-3a7ca04adada", "text": "after the fire is extinguished,the opera house half buiding are damagred "} +{"id": "4001053", "video_name": "13505f03-7b48-5499-9208-67897684b6b6", "text": "the reflection of neons in the eyes at night "} +{"id": "4001054", "video_name": "e9979976-6730-5dca-be59-4a6f1a8aa776", "text": "HR Giger black alien wild moving morph metal sculpture in style of HR Giger, black background, flash lighting, hdr, 16k "} +{"id": "4001055", "video_name": "59dbaa28-98d6-5320-8482-01327fd5a7c2", "text": "galaxy creation, how our universe is created "} +{"id": "4001056", "video_name": "4b5cb9d8-b2fb-5a3f-b0e5-728c4b4ba589", "text": "an electric robot in the shape of a fish sucks water under pressure, transports water along a conveyor to a special department and splashes water into the river through a carbon filter "} +{"id": "4001057", "video_name": "e4e23505-92cc-5bdf-bf53-4699df0d5860", "text": "woman sitting contemplating under a romantic sun. "} +{"id": "4001058", "video_name": "8238db8b-88bc-5b3b-8de3-f8286a861813", "text": "car collides and explodes, highres, masterpiece, cinematic "} +{"id": "4001059", "video_name": "809f3198-64ca-53e1-a8dc-603d5fb2b358", "text": "evolution from monkey to man, color hue red and yellow "} +{"id": "4001060", "video_name": "28a28e2a-60db-560b-aba9-92a31d089651", "text": "robin hood giving money to poor "} +{"id": "4001061", "video_name": "39de2ad0-fa70-545a-95a7-879b19e815c1", "text": "A pumpkin field, bright sunshine, butterflies flying "} +{"id": "4001062", "video_name": "55b100fb-909d-5b72-906b-400760f9a9c8", "text": "video of man being interviewed for a job "} +{"id": "4001063", "video_name": "4cbcb532-8e20-503a-92f2-720fd1aa0c76", "text": "Scary ghosts from an abandoned room "} +{"id": "4001064", "video_name": "1be30577-88c0-5b9b-9ee9-927a8ca026ff", "text": "Shrek walked through the sunflower field, holding a sunflower in his hand "} +{"id": "4001065", "video_name": "0e4c76e9-082a-5c52-9824-72c66f2df116", "text": "we are better than our competitors "} +{"id": "4001066", "video_name": "4e3e1411-0a63-59ab-9934-85f7545fc831", "text": "Create a dynamic and visually compelling video by generating images of a charismatic demon emerging from black, mysterious smoke. Envision the demon possessing long, flowing hair and a charming face. Capture the gradual revelation of this otherworldly being as it emerges with an aura of dark enchantment from the depths of the ethereal smoke. Use elements that evoke an intriguing mix of mystique, allure, and a touch of malevolence to craft a captivating visual narrative, anime style. "} +{"id": "4001067", "video_name": "360ce0f1-d649-502e-81b8-f1cad08bc3cf", "text": "Two stick figures fighting in the street, line art, flip kick "} +{"id": "4001068", "video_name": "c4906ab6-b44f-5fc0-993e-51ea47858041", "text": "a pet event in park with dogs and cats "} +{"id": "4001069", "video_name": "6be76d2a-29dc-56ae-8805-f8055bee6721", "text": "a man pulling handpump from the ground "} +{"id": "4001070", "video_name": "9f6817f5-b891-5e33-9a30-580d0831937b", "text": "an andean condor flapping its wings "} +{"id": "4001071", "video_name": "40121542-7070-5e13-b860-99e5e1813e74", "text": "Angel wings fly, water moves; The fish swim back and forth "} +{"id": "4001072", "video_name": "7846cbe4-fbe1-57e0-8760-b7641a78a5bb", "text": "A very beautiful landscape, with rain, trees, 20 seconds at least. "} +{"id": "4001073", "video_name": "800318b7-0065-5f5c-ac65-5be8a0ca1ae8", "text": "A sheep is reading a book "} +{"id": "4001074", "video_name": "ab7feb45-8c02-595a-8abf-9a7a6dce5a7e", "text": "a few teenager play games together "} +{"id": "4001075", "video_name": "9f6d9150-65a2-51ce-9838-5bfa9b6ff20a", "text": "May the hearts of those who witness this vision be filled with reverence and gratitude, for they stand before GOD himself, the architect of the universe, the conductor of the cosmic symphony, the light that illuminates every corner of existence, cinematic style "} +{"id": "4001076", "video_name": "09000a27-28fa-5f85-aca9-c485f180fa43", "text": "busy hospital, going operation theatre, cinematography, 16:9 ratio "} +{"id": "4001077", "video_name": "67b6a5d3-2288-5f79-9bb6-fa5312e28663", "text": "Man angrily fighting a tree in a suburban neighborhood "} +{"id": "4001078", "video_name": "c5685aca-76d2-5cf4-8b44-66b256dcc977", "text": "With a deep breath, struck the first blow, his beak shattering against a stone. The pain surged through his body, a searing agony that tested his resolve "} +{"id": "4001079", "video_name": "1a1be80f-8526-59b5-8ff0-b803ade20c48", "text": "medium shot, Aztec priest extracts the heart of a Spanish man and raises it as an offering to the gods "} +{"id": "4001080", "video_name": "1f741f8f-c517-5600-b28e-b76fac04d273", "text": "An illustration that portrays Daniel refusing to compromise his values, even in the face of outside pressures. "} +{"id": "4001081", "video_name": "b086f34a-d172-54b1-8eba-1e7328ff7d44", "text": "four cute white kittens are playing happily in the spring garden. "} +{"id": "4001082", "video_name": "dc9d6e1b-983b-5aba-80c0-dd9fdfbf01e0", "text": "two person doing camping in the forest horror way "} +{"id": "4001083", "video_name": "908a3359-09aa-5086-9e83-e95dc48993ba", "text": "years passed by, the rich man made of roblox died. one day. a poor farmer made of roblox who owned the field was ploughing it. "} +{"id": "4001084", "video_name": "bd3d0d2a-b522-566f-ad62-b40bc8cd106d", "text": "Dollar biills flying out of a betting shop, 16:9 "} +{"id": "4001085", "video_name": "75936d7e-07de-580e-b331-ef85026d9483", "text": "days turn into weeks and weeks into months calendar page turning "} +{"id": "4001086", "video_name": "9f0ed1f0-e10d-5f28-8dd7-b43632e23add", "text": "Vin Diesel meets Paul Walker and shakes his hand and cries "} +{"id": "4001087", "video_name": "87ec601d-fa8c-5cb9-95c3-cb9916ebf94c", "text": "faceless man in a dark, liminal space "} +{"id": "4001088", "video_name": "9c082607-e7f8-51fd-b4ba-ca68e0a8df4f", "text": "two man killing another man,and it is winter morning, and it is snowing, "} +{"id": "4001089", "video_name": "0b04fbd1-83af-5ce4-aff9-05b251660fa2", "text": "Elderly figure, character, riverbank, ancient, worn robes, staff, mystic symbols, ethereal wisps, luminescent stones, otherworldly glow, silver beard, radiant butterflies, surreal flora, celestial melodies, mirages of ruins, temporal river guardian, cosmic gaze, timeless memories. "} +{"id": "4001090", "video_name": "cee57495-6700-5120-9438-c1cd072b339d", "text": "the theater of my dreams with a golden curtain "} +{"id": "4001091", "video_name": "bc986a59-ac56-5f45-bd1b-1b1f99e02b52", "text": "A hand drawn rotating diamond, charcoal on white. "} +{"id": "4001092", "video_name": "01230aa4-5a63-5370-a4f2-974ade4c2074", "text": "abstract humen 2.0 futuristic surrealism Message: 1 Attachment "} +{"id": "4001093", "video_name": "51149a36-c07d-5bb7-b99c-d9766f641438", "text": "two cartoon small boy character comin villages home from school "} +{"id": "4001094", "video_name": "2f60d0bd-220f-5352-a568-7b4cf1a9a0d6", "text": "smooth movement of the character, increasing the perspective of the face "} +{"id": "4001095", "video_name": "de31c156-9792-5849-838e-3cb0681779d3", "text": "swordsman animation, 3d style, full hd "} +{"id": "4001096", "video_name": "c2fdfe36-bb4f-5286-b4af-4788dcd83dc6", "text": "cute golden retriever playing, happy, urban home, 4K "} +{"id": "4001097", "video_name": "0e52f65c-9db6-5848-8e5f-ea226e8ee75e", "text": "in a dark bedroom on top of a bed we see an open suitcase full of summer clothes, a large amount of cash and a bottle of small blue pills "} +{"id": "4001098", "video_name": "eab52435-b3e3-516a-a0f6-273bfa37925f", "text": "a boy in a toy car "} +{"id": "4001099", "video_name": "3d7b6f56-01c8-5b02-80ac-ecd1a496af9b", "text": "A bmw M2 on a racetrack, blue, professional video "} +{"id": "4001100", "video_name": "fc7e3fef-0b44-52de-83bf-e414da8a0244", "text": "the devil dancing under the moon in the forest "} +{"id": "4001101", "video_name": "532bd840-0860-5127-832a-28480f7db2a9", "text": "a college girl is typing in front of a computer "} +{"id": "4001102", "video_name": "4f7f4ce2-6ecd-5aa1-86dd-88259fcd7d5c", "text": "Cristiano Ronaldo play football with leo messi in Marrakech "} +{"id": "4001103", "video_name": "d5e1e2ae-724e-508b-988a-c91cf83fa3e8", "text": "create motorcycle rides in the desert "} +{"id": "4001104", "video_name": "3e8b4485-dd98-596a-91c8-20aed23bb71f", "text": "a Crowd of people dancing at music festival, colorful flashing lights "} +{"id": "4001105", "video_name": "ef61e7b8-81f2-5068-9724-1166ed68b4dc", "text": "Star wars scene han solo and princess leia kiss "} +{"id": "4001106", "video_name": "8ea721d0-de08-549c-b102-ec3e58dfde33", "text": "yoyogalaxy a madness zoom out of infinite scale cinematic redshift adobe octane unrealrender vray "} +{"id": "4001107", "video_name": "94c263d9-e944-5dd9-a913-50e6e1ec86ea", "text": "A dhow sailing through turbulent seas "} +{"id": "4001108", "video_name": "67c33621-0672-5c3e-b338-d46ce46274a2", "text": "Two beautiful womans dancing a Shuffle Dance, on the ocean shore Both girls are smiling playfully as they dance, They are dressed in mini swimsuits that barely cover their bodies Message: 1 Attachment "} +{"id": "4001109", "video_name": "94d075aa-edc5-5c53-9ae2-8679c56e842d", "text": "wide shot of neon city at night with cars traveling fast. slow shutter speed with trails 80s vhs "} +{"id": "4001110", "video_name": "352239c7-1f41-531d-96f7-04ed0d057250", "text": "Generate an video where Nikol, with a concentrated expression, closes her eyes and whispers a request to her guardian angels for an astral journey. The image should radiate a sense of mystery and spiritual connection.Pixar cinematic fantasy style "} +{"id": "4001111", "video_name": "7e1148e8-4d60-547e-af9b-af5093b6521e", "text": "Sun Wukong, a Chinese mythological character, battles Captain America near an abandoned factory, and the fight is incredibly intense. "} +{"id": "4001112", "video_name": "76385abd-14a9-5420-88b7-69ef9cc232ef", "text": "wild silence tiger swiming underwater strong colors style of Hyperrealism 3d "} +{"id": "4001113", "video_name": "90a4f89a-b808-5c90-a3a6-9d9d15cf44bf", "text": "Shinchan and Himmawari in AI world "} +{"id": "4001114", "video_name": "adb31d07-1d0c-5aa6-ae3a-c93077f92f0a", "text": "a tangerine is approaching from a fairytale winter forest "} +{"id": "4001115", "video_name": "7cfe2b23-a8e3-583c-8d11-78d3d3ca4b9c", "text": "Realistic and vibrant illustration of a city, in a cyberpunk style, realistic colors and lighting, a hooded person contemplating the rain sad and alone, at night, illuminated by the city lights Message: APOC UNIVERSE (Font: MODERN) "} +{"id": "4001116", "video_name": "947688d6-d3ea-50ca-8ea8-9a0cc65e99ef", "text": "Scene opens with a breathtaking view of a vibrant, otherworldly landscape. Floating islands, cascading waterfalls, and colorful flora and fauna fill the screen. A gentle breeze carries sparkling dust "} +{"id": "4001117", "video_name": "878871aa-2197-57bb-805a-794b23ebe064", "text": "a ship in a glass waving "} +{"id": "4001118", "video_name": "f6d86926-fc3b-5de7-b860-e758401b7266", "text": "Enigmatic Nightmarish creatures dragging a person into the depths of the ocean, high resolution, many moving limbs, grinning faces "} +{"id": "4001119", "video_name": "68096a95-b106-551d-b224-438242697d0a", "text": "P Vast central chamber. towering in the center is a giant energy harvester of the facility. Its complex design visible through a glass casing. energy pulsating "} +{"id": "4001120", "video_name": "b94b5d92-21ed-58c3-b363-afa9c7385169", "text": "Beautiful woman, Star Wars, Dancing, Science fiction "} +{"id": "4001121", "video_name": "749f253b-b76c-5929-9ba5-a704826c4727", "text": "shapes name image for YouTube thumbnail create image "} +{"id": "4001122", "video_name": "999a4333-1654-5c01-8c65-87913e9366a1", "text": "comet lighting up the night sky Message: 1 Attachment "} +{"id": "4001123", "video_name": "a4c22dc7-806c-519a-bc7c-f98c7926e458", "text": "In 1972, in the heart of Richmond, Virginia, a young black boy was born into a modest family. They lived on a small truck farm, where he spent his early years surrounded by the rhythms of nature. This boy, whose name was Jamal, had a vivid imagination that seemed to thrive amidst the sprawling woods behind their house. "} +{"id": "4001124", "video_name": "81b526ea-feda-5e0e-8511-21482c1738ca", "text": "renaissance man in happy mood european scenery "} +{"id": "4001125", "video_name": "f111ab20-2b16-5441-8e1f-9150372fd4b7", "text": "I want the sides of the face to move, the eyes to blink, the forearms to move. mouth can move "} +{"id": "4001126", "video_name": "7592e4e9-2e76-5f4b-9aa4-ccce2355c430", "text": "ar 9:16 a rich king sitting on a golden throne in a castle "} +{"id": "4001127", "video_name": "27609b9b-5ff8-5db6-adb3-b2d2460f5aa7", "text": "a beautiful woman walking around the street, everybody watch her moving 24 fps, "} +{"id": "4001128", "video_name": "7e72738d-13b3-5876-bf34-8870f50edbb7", "text": "Boardroom discussions with heated debates on the ethical implications of artificial intelligence in society. "} +{"id": "4001129", "video_name": "e1d0ebf1-1c51-5124-98a0-c4f439da9a58", "text": "Create a 3d explainer video which shows a future fast ecommerce website and product selling and searching. A man search a product on slow website and then on fast website. Shows the difference and the video should be 2 minutes long "} +{"id": "4001130", "video_name": "d03d30bf-72db-5d2f-beee-7fdce0bbe86d", "text": "joy in trials, Christian perseverance, Bible lessons, trust in God, spiritual challenges, spiritual purification, strength in adversity, divine promises, spiritual growth, maturity in faith, biblical advice, facing difficulties, divine purpose, trust in promises, faith tested, transforming perspective, purified faith, Christian vision, dependence on God. "} +{"id": "4001131", "video_name": "efefd04a-5d0c-522c-bdea-2faf6be78610", "text": "The inside of the tunnel is beautifully illuminated with illumination Everything moves like an anime illustration "} +{"id": "4001132", "video_name": "72fdbbff-eca7-5b5d-8928-027ae61d9d5d", "text": "create 3d boy pixar style talking and looking at camera "} +{"id": "4001133", "video_name": "6ca60f76-89d8-53b1-9a75-8c83d1177f7b", "text": "betangel software cinematic, slow motion, worst resolution "} +{"id": "4001134", "video_name": "74a83df0-593d-57d1-94a1-998e5da297ac", "text": "homer simpson running on a highway "} +{"id": "4001135", "video_name": "95d71462-cfe3-5c6e-903e-1bb38cca3857", "text": "a teacher teaching elemantry students. distance learning. they all enjoy and smile. the children are happy to do thier tasks. comic style. very colorful and happy music. "} +{"id": "4001136", "video_name": "e7fcccad-7f35-519a-92fa-ca312aaca0f2", "text": "a royal palaces, Great Zimbabwe during the late Iron Age residences of the ruling elite, motion 4, camera panaramic right "} +{"id": "4001137", "video_name": "cf571441-8845-52cb-b106-dc5f3623d210", "text": "a snowy street in victorian times at christmas,a coffee shop with a horse and cart outside,its snowy and christmas lights are flashing in windows of homes. The street is cobbled and street lamps are glowing. "} +{"id": "4001138", "video_name": "66bb6089-d523-5f0b-bcd5-5fc7d0ba6559", "text": "Ravi a 20 years old men, sitting under a banyan tree, discussing his dreams with his wise grandfather. The setting sun casting long shadows as Ravi makes up his mind. "} +{"id": "4001139", "video_name": "37063547-3a23-5013-8c51-b6b0554d48c6", "text": "make beatiful it with environment and walls color Message: 1 Attachment "} +{"id": "4001140", "video_name": "4e398994-d5cd-5b50-879c-207fb1e865ca", "text": "house rooftop in the forest at the dark nights, calm rain, realistic "} +{"id": "4001141", "video_name": "7582f7bb-2ad4-5dd5-8d89-0ba7311c7564", "text": "make it super animated as if they just came from an epic battle. Add loads of effects where you can "} +{"id": "4001142", "video_name": "8422d85d-4f08-5281-b79d-ebf9ffdebbe1", "text": "supernovae, view is from the front, simple minimalistic, black and white, no shading, style is comic sketch "} +{"id": "4001143", "video_name": "f3f473b9-1449-5e05-8aeb-8bb39574cca0", "text": "Two patients and a doctor standing face to face talking to each other "} +{"id": "4001144", "video_name": "267cf7da-a778-5092-90f3-7207403a977f", "text": "fallen angel crying in a field of flames during apocalypse "} +{"id": "4001145", "video_name": "ae293742-1e2f-5d1d-8b9c-d1b8a04ba969", "text": "ants are dancing ,having a disco party , holding drinks , playing blackjack in casino "} +{"id": "4001146", "video_name": "11309489-22b2-5f7d-9b5d-a3d3f7a75194", "text": "A red Ferrari is driving in a cyberpunk city, Porche commercial, futuristic, neon in a cyberpunk city, ambient light rendering in Unreal Engine, 8K "} +{"id": "4001147", "video_name": "584eb754-7f86-5270-b726-f1a61dfaaa1a", "text": "A young girl wearing a golden dress "} +{"id": "4001148", "video_name": "dc0967c0-e692-5fa3-8622-72367e31492f", "text": "people crowd walking in jakarta pedisterian, afternoon with high traffic "} +{"id": "4001149", "video_name": "93d2c6cb-d762-5d14-81dd-dfe0aba20959", "text": "david bowie painting a self portrait "} +{"id": "4001150", "video_name": "7f5070c0-8e6e-5efe-85d7-438f70811c70", "text": "A broken heart wrapped in cables and wires, faintly pulsating. "} +{"id": "4001151", "video_name": "f22cfb6c-0d41-505e-a212-ddd232652f81", "text": "cameraman crying running to save their lives from angry people "} +{"id": "4001152", "video_name": "1b239203-7f1e-5e18-ae81-499fb2ccd3cc", "text": "very beautiful nymph, Danbooru dandonfuga and Sakimi chan style, full growth, many small details, HD photo realism "} +{"id": "4001153", "video_name": "f24810cb-ef09-5034-ad78-782b155fa6ef", "text": "Swordsman, tall mountains, ravines, white snow, flying birds, river, strong wind, white clouds "} +{"id": "4001154", "video_name": "f131118c-1f3e-5b59-99b6-a8cdfa75ab08", "text": "Jack and Rose are at the bow of the Titanic sailing at sea at midnight. "} +{"id": "4001155", "video_name": "5bf7d9a7-34c0-5cfd-acd2-05b651c77609", "text": "the devil in a music in a pop music video clip , perfection quality, unlimited high resolution "} +{"id": "4001156", "video_name": "12d09933-4a4d-52f2-a7fa-7f6c639e8a4e", "text": "Generate a video of good friends dancing and drinking in a nightclub, everyone is very happy "} +{"id": "4001157", "video_name": "daff8894-a27a-5605-a228-46c88b7a61fa", "text": "suuny day a rochaet on the ground couler red and white in the ground spcaec with grass the rockaet is big for only one person disney pixar style cartoon style tooo "} +{"id": "4001158", "video_name": "9bdb6622-462f-572e-8299-391c80fc2817", "text": "young athletic teenage boy in medieval clothing, covered in blood with a sneer dual wielding swords ready for a fight "} +{"id": "4001159", "video_name": "4d644fd7-b1cf-5353-8dc1-13c8f5e0e7b5", "text": "Lily attempting to climb a tall tree, capturing the thrill of the moment.Animated cartoon "} +{"id": "4001160", "video_name": "52809c1e-f835-57c4-8e20-abb7c3c72b9b", "text": "create an anime girl lifting hands and worshipping "} +{"id": "4001161", "video_name": "fe1a7cc4-5212-53e2-9484-5ef970b882ce", "text": "Create an image of the little robot, Robby, rolling through a garden filled with vibrant, oversized flowers. Generate video "} +{"id": "4001162", "video_name": "ea2df3f1-05a9-5d67-9914-f478414f2552", "text": "homeless man and his wife crying in the rain "} +{"id": "4001163", "video_name": "96e7b45a-6aff-56c1-8346-01f39c478877", "text": "make with Unreal Engine 5 Homer Simpson "} +{"id": "4001164", "video_name": "8033b834-ab89-5747-81cf-2ab230eb21f4", "text": "Harley Quinn jumps up and down, realistic anatomy, back alley lighting "} +{"id": "4001165", "video_name": "26dd0bab-f4e3-527c-930b-603e321cd98c", "text": "newfoundland dog running on a field "} +{"id": "4001166", "video_name": "9bea4b85-17a1-5cc6-862d-3c2f8a0bb023", "text": "A vast, grass and wildflower covered himalayan landscape stretches out before us. The camera pans down to reveal a young Tibetan boy, Gesar, standing with his mother in the midst of the wilderness, his small nomadic tent from the 11th century behind him. "} +{"id": "4001167", "video_name": "8fd4fa3c-84a2-573b-b6e9-82575ca19294", "text": "a bridge between the sea ,two man with long hair walking on bridge with monkeys army "} +{"id": "4001168", "video_name": "375b6837-bb16-543b-a5f9-9b039994b627", "text": "first person view of mars using the chainsaw with DOOM style demons "} +{"id": "4001169", "video_name": "c8847a98-00fd-5c5c-917a-89a19e2b112d", "text": "a mini studio for a cricket fan with team india collectives, podcast studio, indian team, cricket studio, commentary studio, realistic setting, "} +{"id": "4001170", "video_name": "a8447870-8f6a-5249-98bd-a4ce6c10d3b5", "text": "The awning boat in the Jiangnan water town of China moves again "} +{"id": "4001171", "video_name": "27f6d6d9-aebb-526e-aa56-089bac8e5777", "text": "Wilted flower that its moving in a desolate garden , colors muted and mood somber. "} +{"id": "4001172", "video_name": "c9421900-88f3-55b2-aea1-847a831f3b9d", "text": "night image of a straight and lonely street with streetlights that emit a type of punctual light, a lot of fog, cinematographic and dramatic image "} +{"id": "4001173", "video_name": "00c02fca-6c1d-579c-882e-f68ab48ee9d4", "text": "Potato chips, the crisp rhythm, seems to be the notes in the mouth, a light bite, and a beautiful melody is played. Each piece is a delicious little melody, which makes people revel in that unique rhythm. "} +{"id": "4001174", "video_name": "06699836-b136-542c-a237-e211c566f3ed", "text": "a realistic of the ocean nature video "} +{"id": "4001175", "video_name": "a6d93970-cdd6-52dc-a9af-f0c987d5ca3b", "text": "Sad man wearing a black shirt, only the background is green screen "} +{"id": "4001176", "video_name": "9f45c87c-7e6b-51f3-8d65-34ba612a61c6", "text": "Creat a painting style image playing with dogs\nIn a beautiful place natural relastic clear beautiful hd pic high resulution 8mpscale "} +{"id": "4001177", "video_name": "bba19fc6-b52c-5d28-8ac4-375cd3a4efa1", "text": "Create a logo featuring a green, stylized medicinal herb combined with a traditional Rod of Asclepius. The style should be modern and minimalist, with clean lines and a calming color palette of green shades "} +{"id": "4001178", "video_name": "0ee33b6d-bfef-570a-ad14-f91ab6cec72a", "text": "Sonic dress as mariachi playing mariachi Music ina mexican party, cake, conffetis, dance, people, bright scene "} +{"id": "4001179", "video_name": "c3420acc-fb76-5e78-a0bc-060ae6ae7b21", "text": "car door reflection, lowrider, no people, street, New York, Bronx, rainy Message: graffo (Font: MODERN) "} +{"id": "4001180", "video_name": "28a75e50-fa52-52ac-b84f-28941f92f04d", "text": "space station, man floating, planets, two moons "} +{"id": "4001181", "video_name": "a09aa6e6-392d-546f-a704-57c5a3dcfa99", "text": "a happy beautiful princess in a white gown holding hand of a happy handsome prince wearing white Royal attire standing in a castle balcony "} +{"id": "4001182", "video_name": "ee6d249e-2e21-5ac8-abeb-9ce1378cbb0e", "text": "girl burried in dirt in a bush in forest, depth, dramatic lighting, aerial view, mystical atmosphere, eerie, dark, 60s art house, Alice in wonderland "} +{"id": "4001183", "video_name": "acd06b71-4937-5894-91ee-b663fe5b9676", "text": "circular lithium battery from mining to cell to pack to grid storage to recycling and then cell again "} +{"id": "4001184", "video_name": "d7550135-d879-5f2f-ad38-0e5885b7471e", "text": "make a girl having fun in their vilge living happily,realistic,birdschirping,beautiful home,flowers every thing moving "} +{"id": "4001185", "video_name": "97655fb5-cd76-51f9-aaea-ae23411d3b34", "text": "A short video showing t spine rotation excerise complete in the supnine position "} +{"id": "4001186", "video_name": "dc27769c-8947-543c-9b9b-f5c6c5f86f87", "text": "a confused Illidan standing in the middle of new york city "} +{"id": "4001187", "video_name": "9f23c5e5-ffd7-5ffb-a1df-f1f217d70c70", "text": "a pigeon flies and then gradually turns into a phone chip "} +{"id": "4001188", "video_name": "5043dc12-79c3-5ad5-ad33-a93ff60476d7", "text": "Create a captivating animation featuring a warm and inviting living room adorned with tasteful decor, complete with a crackling fireplace casting a cozy glow. Emphasize the ambiance by incorporating large glass windows that unveil a breathtaking outdoor scene, seamlessly blending comfort and natural beauty. "} +{"id": "4001189", "video_name": "a3e33a09-c7a2-5671-9993-23e69cc95c8c", "text": "fell asleep in the snow after he took LSD "} +{"id": "4001190", "video_name": "c8a369f6-dff7-53f0-9c6f-2f2349910d6d", "text": "a boy and a girl in school uniform, cartoon format with dreamy background "} +{"id": "4001191", "video_name": "8e35751a-575a-5247-adaa-be4ae37eefcb", "text": "mug head having fun while the sun shines at the fair. "} +{"id": "4001192", "video_name": "f63442f2-ee46-5dda-a398-a170a2081027", "text": "a picture of an old couple "} +{"id": "4001193", "video_name": "6df36702-9b17-5859-80b1-bb3eeb3bc91c", "text": "Electronic circuit with a bigg zoom Message: Parritabrava (Font: MODERN) "} +{"id": "4001194", "video_name": "48e47351-27f9-597c-b080-c39ea4fc88ae", "text": "a cartoon road seen from the side. With mainly white colors "} +{"id": "4001195", "video_name": "9cf2c66c-92c1-54c0-8272-1a2261c957d9", "text": "Various subtle variety diagram in very dark colors containing a communication network "} +{"id": "4001196", "video_name": "67c6fac5-3557-51b2-b5c9-8b69eee80eab", "text": "exactly human shaped heart made of money with heartbeats "} +{"id": "4001197", "video_name": "19b665ab-d8e1-5efb-9e95-5d7914a86d2f", "text": "magician showing a card to the audience "} +{"id": "4001198", "video_name": "dd8f90fa-8298-587f-b2e4-bfb967857996", "text": "scenic aerial shot of the english coastline from the ocean "} +{"id": "4001199", "video_name": "cbd4c9f9-c49a-5318-ae26-9eecd58aa68c", "text": "car light hitting on curtain windows at night "} +{"id": "4001200", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "rapper on the stage, in the style of 3d anime art, Iove, 8k, portrait, elated 3d cartoon anime art style, hyper detailed. vivid colours. ray tracing. dribblable, high detail, super quality, ultra detailed "} +{"id": "4001201", "video_name": "08d8e47a-c40b-56e6-95cd-995ac0a5a09a", "text": "super 8 footage of lovely patricia villa with big, lively, wild garden North of Copenhagen, set in modern day "} +{"id": "4001202", "video_name": "1ad7f6bc-520f-52d7-a9bf-9d36e4a1c341", "text": "anime, people talking at a table "} +{"id": "4001203", "video_name": "008c7243-4eb0-5d91-a7eb-88caed92648a", "text": "2 hindu brahmin boy palying local village wrestling "} +{"id": "4001204", "video_name": "5d0add4c-34bd-5b35-bcc4-0b9604fd7efc", "text": "dog jumping on the horse,8k, photorealistic "} +{"id": "4001205", "video_name": "4dee3f19-bd4d-57c9-a82c-843b8389717d", "text": "A transparent butterfly, a forest in winter, the camera goes from the butterfly to the deep forest, and finally the butterfly flies into the deep forest "} +{"id": "4001206", "video_name": "4c02dad5-ce2a-5e5e-a5ca-e4858afe8168", "text": "pink cat turned into bat cinematic "} +{"id": "4001207", "video_name": "eb865047-0a6b-5980-8183-5c4ecdb09de5", "text": ":Moon, dear moon, far away, Cooking rice and lentils, "} +{"id": "4001208", "video_name": "2e6d2197-f36c-5cf8-af4f-d18038ff6559", "text": "The universe has always been a source of wonder and mystery for humanity. Since the dawn of time, we have looked up at the stars and wondered what lies beyond our planet. "} +{"id": "4001209", "video_name": "d062e9e9-664c-57ef-b24d-e928c039048b", "text": "Pan across the laboratory, revealing the intricate machinery bathed in a symphony of sapphire and cerulean hues. Pulsating arcs of cyan energy dance across the sophisticated equipment, casting mesmerizing shadows that shift in tones of azure and cobalt, infusing the laboratory with an otherworldly, enigmatic aura that hints at the mysteries of the universe waiting to be unraveled. "} +{"id": "4001210", "video_name": "037d63e5-2973-5a8e-a54e-9db2a0b44e9b", "text": "a mouse in a jungle with a lion, remove animal other than lion and mouse "} +{"id": "4001211", "video_name": "a8e2f561-5b34-5921-a5ed-43093a89274b", "text": "Visualize Job, surrounded by his friends, as they debate the purpose of human suffering. based on the bible, 8k, fulhd "} +{"id": "4001212", "video_name": "a09405f0-4688-5d74-abb9-45ab14be7c2c", "text": "anime, night time, messy floor with many books, girl sleeping on bed with headphones motionless, cellphone next to the girl with screen light blinking, big window, outside the window shows rainy night scene "} +{"id": "4001213", "video_name": "5d3e3f39-0e1b-566d-9acf-89059edcbfa2", "text": "lady gets taken by a ufo outside of her house tending to her cannabis plants "} +{"id": "4001214", "video_name": "3d841bdb-e13c-5b1c-9262-d8c9d250c0b0", "text": "dragon flying around a japanese temple in night "} +{"id": "4001215", "video_name": "318603fc-7806-57d8-a236-4e1d15247e0e", "text": "2 boys walking together. Highly detailed, ultra HD, Disney style "} +{"id": "4001216", "video_name": "80747759-9c17-5bd5-86e7-48c83479436c", "text": "chinese girl with long gold hair look confidence "} +{"id": "4001217", "video_name": "083ee08d-3ed9-5311-9c1f-ad64def38ef0", "text": "Artichokes and grilled zucchini fall on a crispy pizza. In the background fire burns in the stone oven "} +{"id": "4001218", "video_name": "5cf2b22a-932f-53b6-89a6-b0750b8ab8a3", "text": "When you look into the sky deeply comtemplate it "} +{"id": "4001219", "video_name": "68f370c3-06fa-5963-97f4-66fa1dfcddf5", "text": "Clocks ticking at different speeds in the background, illustrating the concept of patience and varied financial timelines. "} +{"id": "4001220", "video_name": "20882da0-923a-551f-bb98-9262ef549735", "text": "the Ushuaia night club in Abiza during a rave "} +{"id": "4001221", "video_name": "f320a09d-6512-56ea-ae6a-6256750890a1", "text": "old found film footage of a creepy house surrounded by baron hills "} +{"id": "4001222", "video_name": "cda04314-d9bd-5317-87e5-7c0b44112ff8", "text": "busy crowded square with people in a modern city, during the night, city lights everywhere. Retro feel, retro camera, vintage look, shaky footage "} +{"id": "4001223", "video_name": "9219131b-68e6-581e-a81d-f9fb3edbda11", "text": ": make it 3d and scar "} +{"id": "4001224", "video_name": "16925a21-1cf2-5702-a2c7-9f5fda5a4ea2", "text": "Michael embarks on a journey to protect humanity and prevent destruction. "} +{"id": "4001225", "video_name": "4ac300be-15aa-5351-ae25-b433dd74afbc", "text": "kobe bryant stone sculpture playing basketball, anime style "} +{"id": "4001226", "video_name": "688a66a9-fd54-5c43-9d20-b0d34e098d61", "text": "An elegant and beautiful English lady was smiling at me with a mischievous grin "} +{"id": "4001227", "video_name": "86ff828f-c5f1-5b75-9f46-f29b0a2303ff", "text": "Lamborghini rides in the desert during a thunderstorm with rain "} +{"id": "4001228", "video_name": "996d4319-8fae-5c31-9ddd-81e6b5c96448", "text": "Palm tree that moves with the wind "} +{"id": "4001229", "video_name": "d592d7fa-308d-539e-85c7-ee018624f474", "text": "Mother Chandraghanta is worshiped on the third day of Shardiya Navratri. "} +{"id": "4001230", "video_name": "42df196c-c427-5f69-8263-69d4de8487e7", "text": "The wise old magician, seated in his mystical abode, surrounded by artifacts. "} +{"id": "4001231", "video_name": "00e32b02-a7f4-5146-9321-aaf0e8e34221", "text": "a golfer is playing on a golf course, and there is a zoom in on his watch "} +{"id": "4001232", "video_name": "8612fb7d-f408-5cbe-bff8-61925a844f51", "text": "Hulk fighting against invincible creature, cinematic camera "} +{"id": "4001233", "video_name": "1e9b6db1-5834-5891-9cb4-c5ead5beb833", "text": "george washington leading charge on foot "} +{"id": "4001234", "video_name": "7480fe46-fd09-545d-8d10-ffc17f1f32df", "text": "a gingerbread airplane exploding a tower of ice cream "} +{"id": "4001235", "video_name": "b544d67e-677f-52e5-b547-18618bf7eedd", "text": "A picturesque vineyard in Tuscany, with grape harvest in progress, sun setting in the background "} +{"id": "4001236", "video_name": "69fa25cc-542f-54e1-ac88-99ff45a74567", "text": "A cave housing a small river of lava with a TV set on a hotel "} +{"id": "4001237", "video_name": "184f6ea4-02e2-5d45-885d-180113f74177", "text": "a chibi style, man with bald head, fiery red eyes, wearing a black hoodie, realism, smooth, trending on artstation, high quality, beautiful. 12k resolution, hyper detailed, character design, digital painting, trending on artstation, sharp focus, art by artgerm, viktoria gavrilenko, steve zheng, terry rogers. hyper realistic, cinematic photography "} +{"id": "4001238", "video_name": "4b86e69e-5ea8-589a-bf49-2bba0503f310", "text": "Once upon a time, in the heart of a lush, colorful meadow, there lived two inseparable friends named Dina and Danny. Dina was a radiant red dragonfly, while Danny was a dazzling blue dragonfly. They were known throughout the meadow as the Daring Dragonfly Duo because they were always ready for an adventure. "} +{"id": "4001239", "video_name": "99fb594f-ec48-5d7f-8082-480bd33f9ccb", "text": "a 12 year old girl flying in a magic broom, wind, sky, beautiful, Ghibli style. "} +{"id": "4001240", "video_name": "e197490f-4045-5c75-bd1f-63260c934b5c", "text": "ten big pomegranate trees,air and rain,pomegranate fall down in earth best quality video "} +{"id": "4001241", "video_name": "e16a6ee3-2024-5805-b1d0-eec4c119ccbd", "text": "bedroom, large windows looking out the city in the future, cinematic, 4k "} +{"id": "4001242", "video_name": "0f47f857-3481-58b3-b938-b62e3d2816be", "text": "a bicyclist riding through Times Square in NYC "} +{"id": "4001243", "video_name": "621e03bc-4885-5f6a-8e35-9c6db9fc1554", "text": "a crest in the style of Harry Potter showing additiv manufacturing elements "} +{"id": "4001244", "video_name": "689517fc-bf27-5673-8b98-f03331a098d1", "text": "reate a video of a pencil that once consumed can be planted and becomes a huge plant "} +{"id": "4001245", "video_name": "0b481e64-61d9-5628-92b9-4d4a62f16558", "text": "camera panning around the earth in universe , spaceship is there as well "} +{"id": "4001246", "video_name": "99eccdde-47db-5051-96b0-b46643077145", "text": "A child in close up, affected to huracan OTIS, with a tear in his eye falling on his cheek, slow motion, slight cloud movement in the background "} +{"id": "4001247", "video_name": "a16fc318-7450-5f01-87a4-bed586d74dbe", "text": "the pendulums are swinging and the boy is looking left and right "} +{"id": "4001248", "video_name": "274e9de0-2956-583b-add6-a714d30be4f6", "text": "ghost night , car headlight on,car moving "} +{"id": "4001249", "video_name": "d4d0b085-e59a-5244-a0e5-e0883f3c8472", "text": "create a man riding horse in a sea,3D animation "} +{"id": "4001250", "video_name": "371eab9a-92b6-5ee9-a27b-d5adcf6409ec", "text": "photo of sky with sun, clouds, and sea "} +{"id": "4001251", "video_name": "6fcc4ec8-7644-5719-9821-efbf069209d4", "text": "A walking beauty is taking off her coat "} +{"id": "4001252", "video_name": "5b83aed2-f776-5ef5-b8d7-769860bacd1a", "text": "Gandalf and Frodo fist fighting over the ownership of the One Ring "} +{"id": "4001253", "video_name": "d406d021-f47d-5ca9-9cdc-ed75a3f00091", "text": "polluted greenish river in the desert without any plant, bird eye view "} +{"id": "4001254", "video_name": "4e1b2e3a-cfa6-5c6a-b858-ef68ab8a08bd", "text": "create a vibrant Disney Pixar version of black latina American barbie on the balcony of her home in the beautiful historical city of Cartagena Colombia, she is wearing long micro braids and a elegant luxury dress with designer shoes "} +{"id": "4001255", "video_name": "dd767956-f425-5447-bcae-9534244c0843", "text": "and these differences create a sort of natural barrier that prevents the waters from mixing. "} +{"id": "4001256", "video_name": "5cfd34bd-d99e-5bf7-a01b-1885d9c75dab", "text": "timelapse daylight modern city ultra detailed buildings "} +{"id": "4001257", "video_name": "622c1ab8-0635-5264-817f-2d473d1b9b3a", "text": "create movement in this character and things burning around him "} +{"id": "4001258", "video_name": "e22656e8-318c-52d4-968e-cba4a35bd03a", "text": "an anthropomorphic old pair of socks hides behind the chair and looking, zoom in, a comic style character, 9:16 "} +{"id": "4001259", "video_name": "59756500-cc6e-5c4e-8483-2e0ad74dc263", "text": "A boy with glasses is driving a van full of fruits on a busy city street with a 2.5D effect. The sun and clouds are in the sky. "} +{"id": "4001260", "video_name": "63c8be13-5fe9-5cc3-beb1-49aa35207ed0", "text": "A girl with black hair named Sofa is sitting on a sofa "} +{"id": "4001261", "video_name": "1f60cb63-0e0e-5088-8575-32fde542545e", "text": "young Leonardo DiCaprio while Is Say a bad word "} +{"id": "4001262", "video_name": "69b7e512-ee02-502a-a9c8-96d4618955f4", "text": "a brick wall with graffiti Message: NFTs are dead (Font: MODERN) "} +{"id": "4001263", "video_name": "522479ca-bc1c-5267-8ea3-fa5454171dba", "text": "In a remote village, a robust baby named Conan is born amidst a violent storm. The elders see this as a sign from the gods and predict that he will become a great warrior. "} +{"id": "4001264", "video_name": "fa00225e-7a06-5ee3-bf05-4fad5cc55737", "text": "old book being blown off dust, 4K "} +{"id": "4001265", "video_name": "f864c399-702e-5c69-a576-322f6cbb3451", "text": "Astronaut lounging in the sun on Mars, solar flares visible in the background, Blender, render "} +{"id": "4001266", "video_name": "f4dbd185-e2ee-5905-bb6a-2b7f043d7844", "text": "A group of people with their backs to the camera, looking through the glass, looking at the prisoners in the interrogation room, 90s black and white film, Kubrick style, medium shot "} +{"id": "4001267", "video_name": "85db77d6-b92b-5365-a676-b12fe665a97e", "text": "a woman holding a kitty in her arms in the living room "} +{"id": "4001268", "video_name": "7bdfa03a-b7cf-53c8-a3d9-22c6411a4453", "text": "brunette haired woman with sugar skull make up interogates a man tied up in a chair, cinematic, 65mm Panavision, Arri, 4:1 Contrast Ratio, cinematic color theory, gritty and stylized "} +{"id": "4001269", "video_name": "b55063dd-43ba-566d-aaa5-b79c2a50e66f", "text": "People getting old, old age people, getting old, years go by, many years standing in desert, big eye "} +{"id": "4001270", "video_name": "1b10d9d3-9154-5ac2-a4e3-e58d7ae43a69", "text": "a group of friend place doing hand gestures of agreement "} +{"id": "4001271", "video_name": "b171ed9b-df13-5b47-a536-a49ef47c002c", "text": "drawing roses in front of beautiful lady face. "} +{"id": "4001272", "video_name": "aaa0b52d-b00c-5070-baeb-bed83ab17e3b", "text": "a horse with a small rodent riding it. realistic and zooming out from a haze. "} +{"id": "4001273", "video_name": "39617e28-b731-5086-8666-1bd99f6dca07", "text": "da vinci vetruvian man moves around in his frame "} +{"id": "4001274", "video_name": "b1f5c35c-6204-53d3-811d-12059167d2dd", "text": "9:16 format, moroccan vibrant city, people walking around, camels, 4K Ultra HD, Clear resoultion, cinema "} +{"id": "4001275", "video_name": "5f1b3c99-a5e3-599a-a017-b24eee93397d", "text": "Pastel alice in wonderland tea party "} +{"id": "4001276", "video_name": "93adbe51-533d-5251-a023-2daf688a4ed0", "text": "a man drive a car ina dense forest at night "} +{"id": "4001277", "video_name": "63c230e7-6304-5db5-b0d3-f49a6897bd20", "text": "the future of the human race, time lapse "} +{"id": "4001278", "video_name": "b0b9d9a6-88f8-5669-ab57-cff823521cf3", "text": "A beauty, dancing, sexy dressed. In line with the Asian aesthetic. The duration is 15 seconds "} +{"id": "4001279", "video_name": "34857c91-5d48-5cc4-a833-d521a37f1a4f", "text": "a crysalis floating in space surrounded by blue and purple butterflies "} +{"id": "4001280", "video_name": "5cc662e2-290d-5c14-942e-540289236af4", "text": "Sid from ice age flying through the center of the moon to get an acorn that\u2019s just out of reach. "} +{"id": "4001281", "video_name": "b6a4c00c-1ede-5457-9562-ee6b89b3525c", "text": "take the image and decline it Message: 1 Attachment "} +{"id": "4001282", "video_name": "50eadff4-eeda-54d0-9dc3-287a2b527f5c", "text": "Incredibly realistic video of Jesus descended into Hell or Hades and proclaimed His victory over Satan and his followers, produced with exquisite detail and very real "} +{"id": "4001283", "video_name": "4afc5db5-9c5c-5dbf-9ce3-aee452ebff56", "text": "boy smiles in the middle of his social project "} +{"id": "4001284", "video_name": "e8c4d497-d944-5dc6-bb09-b61110dcfd82", "text": "freeze , separation , heart of earth , concept art "} +{"id": "4001285", "video_name": "6c1c8f4c-fa81-59ca-963c-440959869bdc", "text": "a guy enters flying to a crowded stadium "} +{"id": "4001286", "video_name": "2db87093-d762-54f8-97b1-4aa53fa62d31", "text": "The person starts walking along the path; every step is accentuated by the sounds of nature \u2013 rustling leaves, distant bird calls. "} +{"id": "4001287", "video_name": "df96444b-0aed-577c-abd4-a2b6c4adaf2b", "text": "1920s top down silent film footage of people running around in a circle"} +{"id": "4001288", "video_name": "83b71968-1d61-5458-9016-0cea94da8bdc", "text": "a curious squirrel holding a mechanical device on a black background "} +{"id": "4001289", "video_name": "22175044-b3f1-5700-a417-a7b68bd5b2ec", "text": "A colorfull sunset in the pyramids of giza, camera zoom out Message: POESISMO (Font: MODERN) "} +{"id": "4001290", "video_name": "6aa22e1c-e960-5d54-bb20-afc71e782cf9", "text": "ten bears walking in line on 2 legs through a wooden house in a forrest "} +{"id": "4001291", "video_name": "236710be-20f6-542e-9a25-8af9a435e2a4", "text": "green powerpuff girl driving in a cool old fashion car in LA at night "} +{"id": "4001292", "video_name": "48f441fa-92a4-5173-98cb-06db494e75d0", "text": "a photo of tiger standing close to the swiming pool, fancy house in white tones on the backgroud and mountains behind the "} +{"id": "4001293", "video_name": "404ff273-cf3d-5b7e-849c-6ec07285dc4f", "text": "the game doom as a movie "} +{"id": "4001294", "video_name": "c77be7c4-6c8b-5790-b3af-cfb0c4d2ef9a", "text": "three men in outlandish costumes biking on bicycles festooned with led lights on a desert next to a line of recreational vehicles waiting to exit the desert. the three men are biking away from the camera in the same direction as the rvs "} +{"id": "4001295", "video_name": "ed23b658-aa64-5ed3-861e-6e64dbfe1763", "text": "Create a vivid visual scene that captures the moment when the islands are floating away from each other and camera. panoramic view "} +{"id": "4001296", "video_name": "e2b8cc65-4aa6-50dd-8264-8b2c72c56b6e", "text": "water lilies moving slowly in a serene green pond as a white butterfly slowly lands on a lilypad 16:9 "} +{"id": "4001297", "video_name": "73226464-f390-5904-b141-b742ce07f1ee", "text": "create a animated cartoon of a alien space ship crash the size of a dog house that lands in the backyard of a home in a moonlit night. There is a dog house that the spaceship crash lands next to leaving a small crater which startles the dog awake "} +{"id": "4001298", "video_name": "7a8dc013-4194-5418-897e-12374af632af", "text": "a range rover sport car with italian flag "} +{"id": "4001299", "video_name": "9cafab63-c7ed-5d0a-979b-9137760f557e", "text": "the war of robots using gun, startcraft "} +{"id": "4001300", "video_name": "c2e25471-1855-5298-84c1-de01cd879a87", "text": "Back pose of hard working sikh news presenter with red turban and grey swetshirt eating samosa on editing table with Mac computer in front of him on table "} +{"id": "4001301", "video_name": "01edac4b-a866-5c3b-9940-05acfb5fe734", "text": "workman with high vis vest fixing a tire on a European truck on side of motorway "} +{"id": "4001302", "video_name": "bcbd820f-e249-5274-b935-5b0e433e2740", "text": "Let this person walk a pass a security camera looking from a security camera. He is walking on a storagebox place "} +{"id": "4001303", "video_name": "12d97c3f-b6a0-5480-a528-9e33f02131c5", "text": "A white cat on the Titanic with a sunset "} +{"id": "4001304", "video_name": "354f7244-6706-50de-82ae-3f43ebef30bd", "text": "raccoon sitting in the desert , and crying , make the sky dramatic and sad , cinematic "} +{"id": "4001305", "video_name": "52714148-274b-5b61-ba93-1704a9f28dca", "text": "evolution of Mercedes from 1960 to 2023, 1min "} +{"id": "4001306", "video_name": "a8ca8de5-6701-5e4a-a28f-aaa505d0e67f", "text": "a dog in a red hat going down a pool slide "} +{"id": "4001307", "video_name": "854c5beb-3ff1-5e5a-bdaa-89514ff2776f", "text": "The bright moon in Qin time and the pass in Han time "} +{"id": "4001308", "video_name": "db294e12-e8e0-5af2-a425-4669bbb52099", "text": "cartoon cute home. Outside husband and wife standing with luggage to travel. Wife is pregnant. In the sky, a flight is flying. "} +{"id": "4001309", "video_name": "27e3fd22-6b9a-5e7b-a689-8529b92c1902", "text": "Highlight the uniqueness of the enchanted land. "} +{"id": "4001310", "video_name": "962fe7c8-2681-5f4c-b9e8-551fd41613c8", "text": "a nesting doll effect for a human person tearing its own skin "} +{"id": "4001311", "video_name": "f47015a6-f940-51ed-ba02-3a7df0e57260", "text": "A small boy is playing with a small triceraptor on the river bank "} +{"id": "4001312", "video_name": "9fe7276f-8117-5183-9d4c-f37b3f688f26", "text": "Make the head rotate and the eyes blink "} +{"id": "4001313", "video_name": "9149053c-9541-5866-9a68-88088ee2a20a", "text": "blue man flying into the galaxies, trip acid, realistic "} +{"id": "4001314", "video_name": "c4c11314-0aa7-5621-a3e1-0aae741977ee", "text": "in a beauty office, a young woman is seating at a work desk, an old men is standing opposite to a woman, they are talking to each other, anime cenimatic, high quality, as 9:16 "} +{"id": "4001315", "video_name": "83e3a85f-cdf9-503a-9df1-40373b5fbb91", "text": "Lord Krishna explaining bhagwad Geetha to Arjuna anime art work "} +{"id": "4001316", "video_name": "8022958c-0f15-532a-87a3-77171883925a", "text": "create a video about law, with a lawyer at a table thinking and working "} +{"id": "4001317", "video_name": "b97f932b-e9ae-534c-a36a-81937330c2f6", "text": "paint brush slowly brushing out the letters Message: ANALGBTQFOB (Font: COMICS) "} +{"id": "4001318", "video_name": "040b3910-cdc5-58d4-a024-2d3795f1a360", "text": "batman, batman close up look, cinematic "} +{"id": "4001319", "video_name": "ece388f0-ec58-5ff8-bc7b-3cd89f34d6d8", "text": "black and white grainy film textures of a Salvador Dali style city "} +{"id": "4001320", "video_name": "20a7eeb1-13dd-5048-b29e-564996b32768", "text": "a man in the woods who raises his arms and the stars fall "} +{"id": "4001321", "video_name": "48554491-385d-5f8c-a992-a170e375aa74", "text": "In a dense forest, in a valley illuminated only by the pale light of stars, Karak, a hunter from the tribe of ancient people, prepares for a ritual. The red paint on his face sparkles against the backdrop of tongues of flame, creating a mysterious figure. Around him, in anticipation, stand ancient dinosaurs, their massive shadows dancing on the walls of the surrounding cliffs "} +{"id": "4001322", "video_name": "3ebf133c-87ff-5cc5-8cdc-c38deba41659", "text": "Chinese god of wealth Message: 1 Attachment "} +{"id": "4001323", "video_name": "84a41788-09f1-5bb8-8f2d-760c14f9ff86", "text": "Sam boy was skeptical but agreed to give the crystal ball a try. "} +{"id": "4001324", "video_name": "4664a999-4425-5165-9422-c276f4125eeb", "text": "abandoned ancient wedding. no bridge and groom, no guests. the decorations are broken. panoramic view "} +{"id": "4001325", "video_name": "c41b0e6b-e812-579b-a3fb-c8e9d347bccb", "text": "A headless man walks in front of a mirror, its head visible within the reflection while the body remains unseen. "} +{"id": "4001326", "video_name": "094bab6a-17d4-5b7a-aa4a-14fe54a92d40", "text": "a volcano eruption on land with reflections in water in a more realistic view with zoom in effects in detailed view "} +{"id": "4001327", "video_name": "8b4afbcd-9b51-5221-b37e-cb08802ef752", "text": "a 3D workplace, with minimal things in the table "} +{"id": "4001328", "video_name": "9c33b57e-968f-5986-958f-74ce115bbb5c", "text": "Keanu Reeves GTA graphics cover art, ultradetailed, ultrarealistic, unreal engine, octane render. "} +{"id": "4001329", "video_name": "98f2c346-2649-5d96-a6d9-da34ee9f8f44", "text": "Santa Claus gifted to children, precious gifts "} +{"id": "4001330", "video_name": "4b93d6a4-b789-5d66-8f5b-905170169ff4", "text": "reproduce the scene of the image, the woman in the photo walking on the street quietly, reproduce the same as the image, high quality and ultra realistic "} +{"id": "4001331", "video_name": "12751a1b-1db5-5040-bb29-580ee7075adc", "text": "kang the conqueror in his time chair "} +{"id": "4001332", "video_name": "58f834db-b214-584d-a699-2591a00a4eb8", "text": "1girl wear kimono looks at the camera , smiles , winks ,the wind blows the trees background "} +{"id": "4001333", "video_name": "466ecb0c-731f-5a65-bf5b-6f44bec32af1", "text": "pure river in the middle misty jungle. "} +{"id": "4001334", "video_name": "cedd64cd-d7c2-5e33-93fb-1b6b7ebd984b", "text": "a nifty little yellow smiley character walking thru a DIgital NFT collection muesem in NEW yourk city manhattan "} +{"id": "4001335", "video_name": "6824a1a3-2fa4-5ea3-9260-b9191cb497c8", "text": "The groom and bride kissing each other in a church, with the rays of the setting sun, in a realistic style "} +{"id": "4001336", "video_name": "8453b6c3-1f2a-5c9e-bf8e-62f58839a7e3", "text": "a big white shark jump out of the sea, with a beatifu sunset in the sky, when it is fall back to the sea,there is big waves "} +{"id": "4001337", "video_name": "6a3c10ae-4a21-536f-90f9-e329b8af5fb9", "text": "a gladiator attacking another gladiator with a sword. epic scene. "} +{"id": "4001338", "video_name": "c8d52940-16ad-58b7-b92b-c459b6aaba3d", "text": "In the year 755 AD, there is a leader known as An Lushan who is engaged in a conflict with the Tang Dynasty in China. I would like to visualize this battle where An Lushan and the Tang Dynasty are in combat using swords "} +{"id": "4001339", "video_name": "b9dc82ce-ae8a-518a-9515-761f951c7b50", "text": "camera on ground in deep forest "} +{"id": "4001340", "video_name": "172f751f-5792-5162-8c94-d04ca3e97c98", "text": "Change the background into a beautiful meeting room of a modern office. The standing person is the boss of the company. Make the standing person video giving a motivational speech impressive to listeners. "} +{"id": "4001341", "video_name": "e7c4b92a-de4e-52bb-bc31-5f2c44e3044b", "text": "minimalist brick house being built brick by brick "} +{"id": "4001342", "video_name": "c7b8c515-c101-5916-9595-b2fb49e3a383", "text": "Illustration of a 10 year old boy with blonde hair and grey eyes, standing with his pit bull dog, looking mischievous, kascht style cartoon "} +{"id": "4001343", "video_name": "c2fd1f80-597f-5a0e-9af0-b052e0305e86", "text": "One girl sitting by a lake at sunset. The lake was covered with grass and wild flowers. She faces the golden peak and is completely mesmerized by the beauty around her. She wore green strawberries and a gold headband over her long hair, and the side of her face could be seen. "} +{"id": "4001344", "video_name": "28e54491-900f-573d-8847-c5370e221c57", "text": "Create an image that evokes the mood and atmosphere of tropical party, brazil "} +{"id": "4001345", "video_name": "19b85b29-b6f1-5d30-bcd3-4d5c6835525a", "text": "a futuristic office with large Windows that look out onto a busy Megacity "} +{"id": "4001346", "video_name": "d7862e88-a0b4-5b96-a12e-3645cc4d2f17", "text": "lofi hip hop music video, cinematic "} +{"id": "4001347", "video_name": "b8d325df-6989-5d9c-9ca4-8f512c976ba3", "text": "two brother standing with trees and looking happy,zoom out "} +{"id": "4001348", "video_name": "60df89d8-73af-5976-9b53-1e3f619f6e87", "text": "hotdog meltdown, nuclear hamburger, godzilla soda pop, super atomic sweets, "} +{"id": "4001349", "video_name": "241d29dc-ac01-5c54-84c4-c9d81febd797", "text": "High speed night road night fast car, car driving through City Trip Travel, 4k "} +{"id": "4001350", "video_name": "ba333deb-f86d-5ff5-9fbe-a1a9a077c375", "text": "A background full of Christmas atmosphere "} +{"id": "4001351", "video_name": "5a3b34b8-01cb-5149-8d44-bed72c40c9c9", "text": "A blurry black dot in the middle of the desert, 4k "} +{"id": "4001352", "video_name": "19281dfd-0e28-5c00-a314-108edc4e21ff", "text": "a crew of intergalactic explorers must battle both their inner demons "} +{"id": "4001353", "video_name": "dea96124-3332-5476-b237-54146744c919", "text": "human life struggle and success story "} +{"id": "4001354", "video_name": "02d35a80-3fb6-5ed0-a6d9-3385d36f1903", "text": "Nicolas Cage pointing a glock 9mm at Donald Trump "} +{"id": "4001355", "video_name": "01d631b4-39da-579b-9abb-4b9b3472692d", "text": "video of a cooked chicken breast "} +{"id": "4001356", "video_name": "ad0c3b85-abef-5fc3-97ee-7987c0aaf45b", "text": "A 17 year school girl studious and introverted high school student split into multiple different images and shot from different angles "} +{"id": "4001357", "video_name": "ce3071ce-40db-59fc-a8b9-9ea0bfe595e5", "text": "profile shot of a female anime character with headphones studying with a book in her hand and with books on her desk in her room next to a window and showing rain outside the window with an open shot with yellow lighting and rain It must be outside the room and outside the room it must be night and the raindrops must hit the window. "} +{"id": "4001358", "video_name": "3c06d3c7-3f62-5c62-aba2-2107cbcd2ddf", "text": "a christmas wreath mit little bells ringing and sparkling "} +{"id": "4001359", "video_name": "a9f8cf43-de76-52a5-a66a-85f47fcc1a97", "text": "an advertising video about a content production company "} +{"id": "4001360", "video_name": "1ceba1e2-46e5-531b-8d3a-e05e56270e49", "text": "fancy sports car runing around high way "} +{"id": "4001361", "video_name": "3051d559-16af-501b-bcce-c7b58d312a2f", "text": "Capture the essence of Sonpur village, depicting a vast landscape with fields and farmers engaged in agriculture. Highlight the simplicity and charm of rural life. "} +{"id": "4001362", "video_name": "48fbb3da-5192-5a52-80b8-61461e1165d9", "text": "dog toys ad please make it atleast 10 seconds "} +{"id": "4001363", "video_name": "38b30297-baa5-5e7a-9a34-e5d44dfcf90f", "text": "west ham Message: raja bros (Font: MODERN) "} +{"id": "4001364", "video_name": "7386107b-9d70-564e-9328-29f0be502076", "text": "Mia confronts Cipher, engaging in a battle of wits and skill. Message: 1 Attachment "} +{"id": "4001365", "video_name": "ed2a8df8-6892-59ec-8038-8d9a9a9ebe60", "text": "camera parts commbine to a full geared camera "} +{"id": "4001366", "video_name": "ea9eba7f-f30d-57d1-b3a5-243b790b35b2", "text": "beautiful red haired curvy woman in a polka dot dress with a boston terrier in a field "} +{"id": "4001367", "video_name": "30865419-7bbc-5fbf-ab48-de94990da042", "text": "animation of man running quickly away from monster "} +{"id": "4001368", "video_name": "2d902e7e-2311-5015-83b6-c8e1a2a4f906", "text": "Snail helped a lost rabbit find its way home, saved a bird with a broken wing in the forest "} +{"id": "4001369", "video_name": "25d84a29-71cd-5816-8570-606d4149a44d", "text": "two fezzed pixel ottoman man are fighting each other. 2d atari game pixel style "} +{"id": "4001370", "video_name": "c4b19f18-fdf7-525e-9bb6-de4cc016b802", "text": "female doctor walking down a hospital hallway with one arm after a zombie attacked her "} +{"id": "4001371", "video_name": "58d11904-86d5-5bfb-bd59-b1fd17ba6d79", "text": "Design a logo for a bakery chain, suitable for printing on business cards and for use on a website. "} +{"id": "4001372", "video_name": "fc5b00d0-dc96-5b5b-bf02-2adb3d8f6723", "text": "create a photo of an angel flying in egypt "} +{"id": "4001373", "video_name": "3a161b23-cc78-5db3-9aa8-86fd6524600d", "text": "St. Louis IX oil painting detailed "} +{"id": "4001374", "video_name": "c94fab31-42cc-5a8c-8630-84c49afdba81", "text": "tree growing new leaves and branches "} +{"id": "4001375", "video_name": "aeb1ac9a-baad-5242-bab9-94ba98ae0a3c", "text": "a baskeball player jumps to the stars "} +{"id": "4001376", "video_name": "cd2a0bdd-7242-571b-8b94-cad4ce275f73", "text": "clean man with clean face skin after washing "} +{"id": "4001377", "video_name": "fcc56aaa-9bf2-5622-ac2d-63f7e0393830", "text": "video of an animated fly that stands like a person doing a corny dance "} +{"id": "4001378", "video_name": "8aa02414-5cb5-5ef3-81e2-6b6dbbc5ec9f", "text": "a pond with flowers and sea grass,windy,anime "} +{"id": "4001379", "video_name": "18c88f7a-1660-5fa8-89c8-6490c71e072d", "text": "four sisters walking , pavilosta beach, Bright sun, thomas kincade style, aerial shot "} +{"id": "4001380", "video_name": "4ad81403-22bf-5330-9d26-01e227db0483", "text": "2020s art house film about ghosts "} +{"id": "4001381", "video_name": "947d8434-2ef6-5101-8ee2-80d76de95276", "text": "In Skibide, the tale of Tippy the adventurous toilet and the duo of Carol and Max, the cartoonists, became a legendary story. It reminded everyone that even the most unexpected adventures could bring a community together, and sometimes, a little humor and creativity could make the ordinary extraordinary. "} +{"id": "4001382", "video_name": "181e50ea-3972-5ed2-b74f-a1c4e79235e8", "text": "write a story about a female Buck Rogers coming out of suspended animation in the 25th century "} +{"id": "4001383", "video_name": "4b8744c3-cf86-5dd6-8462-a7f2bca18337", "text": "lady of the night district, amsterdam "} +{"id": "4001384", "video_name": "361ea43a-4013-54d9-923b-f6e924103749", "text": "fire burning flame beautiful, colour full around the logo "} +{"id": "4001385", "video_name": "2b809c9a-b77d-5d3e-812a-18091419110d", "text": "two native boys playing in indian village, fog, dark, vibrant "} +{"id": "4001386", "video_name": "e6dc26bb-7c13-54f5-851f-9362e07984d3", "text": "an owl sitting on the branch of a tree in a forest and ovserving by moving neck Message: 3d animated style (Font: MODERN) "} +{"id": "4001387", "video_name": "5d811124-dcbb-5d1e-b012-faa7d8f95b90", "text": "neo from the matrix having dinner with his grandmother "} +{"id": "4001388", "video_name": "9812c9f6-5396-55cf-8303-a4b4c7166a78", "text": "children playing and clouds moving is the sky with gental breeze "} +{"id": "4001389", "video_name": "60780fb2-aa6d-57cc-9bec-98e4dae2cf14", "text": "Police patrol in the underground of an animated city "} +{"id": "4001390", "video_name": "38f368bb-b5a8-532a-a3e3-5283c01cee78", "text": "a soccer ball flies over a green hedge "} +{"id": "4001391", "video_name": "04eda30b-4526-5c5e-8e9e-dfebeb9a1464", "text": "a goose jumping on a car "} +{"id": "4001392", "video_name": "cef3ea7b-284d-5806-be51-83d6e5600f59", "text": "cartoon sketch couple arguing and fighting each other in white background "} +{"id": "4001393", "video_name": "776e8fce-17f7-5eed-a813-f6c5f6ff9011", "text": "realistic wizard man in an old city in a fantasy style "} +{"id": "4001394", "video_name": "86c27dc4-2844-5f88-82f6-8ed84275e25c", "text": "an orange background with moving black thin lines "} +{"id": "4001395", "video_name": "6adffe01-0c9b-5fc6-a3c2-9f1ae03aee38", "text": "foot Bath, beautiful foot Bath hub in Turkish style, feets in water "} +{"id": "4001396", "video_name": "eac3b241-0984-5610-bab8-114446f843fd", "text": "a horror theme story that a boy alone in house at night in 9:16 "} +{"id": "4001397", "video_name": "547359e9-3a17-5ed3-98e7-f320435a7390", "text": "bob schneider on fire, engulfed in flames "} +{"id": "4001398", "video_name": "f6ecb49a-5bc7-59c0-81e9-f79a1b9e3d6d", "text": "kitten riding on a sharks back in beautiful blue clear water "} +{"id": "4001399", "video_name": "68afa3d1-6659-5a6b-bee6-ba30b2fb7595", "text": "close up vintage Italian high fashion beauty photo shoot model in a rose garden 35mm "} +{"id": "4001400", "video_name": "d2aed45b-8337-5b25-9e8b-4a0f56f20f2d", "text": "practical application of electric and magnetic phenomena "} +{"id": "4001401", "video_name": "424a610a-1ca2-5f74-9d86-a97770212b14", "text": "swimming in a pool of money, realistic, "} +{"id": "4001402", "video_name": "b162ebec-fb73-5e7e-a136-c8d6696c600b", "text": "beautiful indian wife, calling her husband over phone. master prime lens cinematic lights "} +{"id": "4001403", "video_name": "0347223e-fd6e-5c38-91cb-64d91805d079", "text": "woman no move,background move Message: 1 Attachment "} +{"id": "4001404", "video_name": "7814aac3-26b7-5cf9-ab6e-d23f8352830d", "text": "a pixelated room decorated for Christmas and a man typing on his computer "} +{"id": "4001405", "video_name": "62ed1e68-8fe8-5df8-85a9-1a9889280d2e", "text": "create a cozy bathroom with steaming tub clawfoot with flowers and a picture window "} +{"id": "4001406", "video_name": "22e0d53d-2e3b-5bb1-b8ca-e450c9aa8ca0", "text": "asian woman walking down the beach on a sunny day "} +{"id": "4001407", "video_name": "b8dfa3a1-3e2d-5ea3-b26d-47188bc38b36", "text": "(realistic animated) happy young people looking at a mobile app "} +{"id": "4001408", "video_name": "1aac85e0-85a0-5f11-9dde-48361409de53", "text": "butterfly inside beautiful girl in red dress "} +{"id": "4001409", "video_name": "c726ace4-8a38-594a-bc5e-656a90608ef3", "text": "portrait close up of a old man with wrinkles "} +{"id": "4001410", "video_name": "15a66aa7-b430-5dd4-9167-57079e5d75cf", "text": "a man smiling,close up,follow,makuto shingai art style "} +{"id": "4001411", "video_name": "5ed2a0e9-6b7a-575b-989b-b655a436103b", "text": "Filmgrade production, Rainy Old Town, HD, 8K "} +{"id": "4001412", "video_name": "783c3826-4ebe-5f9c-aa3f-78f5071b14f7", "text": "dream painting small boy look at the christmas food which on the table "} +{"id": "4001413", "video_name": "b5ab0877-7011-55ef-82dd-d941ffaf432b", "text": "sky with a strong sun suddenly invaded by black clouds "} +{"id": "4001414", "video_name": "4cf14801-5994-5cc9-8bcf-8d76cc471cd0", "text": "lichen in the Andes mountain range with an araucaria tree in the background, rain, windy, night "} +{"id": "4001415", "video_name": "fe2de3ec-3162-55b7-b520-ea8dc21784c0", "text": "An image of Leonardo da Vinci deep in thought, sketching complex designs in his workshop filled with books and mechanical models, 9:16 "} +{"id": "4001416", "video_name": "fe87ff80-57df-51ae-8a73-c22b33b16419", "text": "Cow with two calf cartoon characters to zoom in "} +{"id": "4001417", "video_name": "ee48efa2-4710-5bab-ac7d-5681886984db", "text": "dogecoin dog looking to the moon from the couch "} +{"id": "4001418", "video_name": "7b4ebed7-242e-57af-80c5-014f6531bb35", "text": "an ice cream cone dripping on the top of a subway car "} +{"id": "4001419", "video_name": "a3a2dff5-0dcb-5694-9263-910506454aba", "text": "a drone video of a landscape of a boat in the ocean, Ultra HD, smooth animation, ocean moving, boat moving unreal engine, 4k, grayscale, black and white "} +{"id": "4001420", "video_name": "29403391-0716-5444-b25d-8239db45e7e7", "text": "handsome pretty beauty woman medieval, frontface, in red princess dress, in the cemetery night, wearing red and black bead thread, big ruby \u200b\u200bring and laugh, holding trident, background moon and stars and mistical supernatural "} +{"id": "4001421", "video_name": "3deca2f4-d04a-5beb-a461-beaa06a7cae3", "text": "a panda cub is running\uff0cthe panda cub wear a sportwear,background is the Place du Louvre "} +{"id": "4001422", "video_name": "e3a4cefc-0ec9-578b-bbcf-ab464a60c6cc", "text": "create a logo for LFD LFD Triathlon Club ,Pushing Limits, Embracing Passion "} +{"id": "4001423", "video_name": "4bfc3663-80bb-5036-a7db-c6813a979260", "text": "Girl Shooting In Restaurant From Golden Desert Eagle Restaurant Late Night In Tokyo Neon Streets Lights in the style of surrealism "} +{"id": "4001424", "video_name": "fae355ac-b5ca-5083-860a-38d625b706f7", "text": "thrill movie style, Finally, the sound stopped in the room next to hers. The woman held the toilet door tightly, but miraculously there was no sound outside the door. In this way, the woman spent the night in fear. "} +{"id": "4001425", "video_name": "278d26e6-c866-5096-95fc-bd382316e2f2", "text": "Visuals of a mysterious, isolated village in the Himalayas, eerie sounds echoing "} +{"id": "4001426", "video_name": "055bc00f-bed9-5d65-b45d-ff7d00f886a6", "text": "Sunshine is fragrant, and the wind is sweet "} +{"id": "4001427", "video_name": "a5bc4c4a-fd20-5dbc-a002-7928cd9a2d4a", "text": "C4D Flipping UI Cards,In the the style of Microsoft Ads,Redshift rendered "} +{"id": "4001428", "video_name": "ffc29c04-c63a-5afa-a068-3093ce76b4f7", "text": "The owl, known for its keen eyesight and wisdom, was assigned the task of keeping watch from above "} +{"id": "4001429", "video_name": "e73e9973-5de3-54fc-adcf-65c55b32e348", "text": "2d vector soccer man of costa rica celebrating win "} +{"id": "4001430", "video_name": "ea3022b9-1150-5aa5-96c5-731dca529185", "text": "bottle, Mexican taquila bottle, alcohol bottle, cold, dripping water drops on the side of the bottle, patron taquila. "} +{"id": "4001431", "video_name": "4316ab0d-23f9-54e8-aa41-d258cd2198c3", "text": "a frightened scientist erasing their digital traces. "} +{"id": "4001432", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "rainbow zebra running in fantasy forest "} +{"id": "4001433", "video_name": "82927502-b8c1-58c5-a10b-bb7b3f77d369", "text": "a man and woman warmly embrace "} +{"id": "4001434", "video_name": "22bab142-a6fe-5902-9cf5-85a0e064b266", "text": "A forest bisected by a river "} +{"id": "4001435", "video_name": "c60a755e-f44c-5542-800a-c39c067225ee", "text": "Describe the moment when Leo the Lion hears a faint squeak for help and follows the sound to find Remy the Rat trapped under a fallen branch. "} +{"id": "4001436", "video_name": "36922c9c-c8fd-5f8c-9fbd-0df158c1a8f0", "text": "friendly talking animals, wise old trees, and playful fairies "} +{"id": "4001437", "video_name": "2bc7af9b-193d-54eb-b05d-4e7e5da36f02", "text": "anime face girl look in the sky "} +{"id": "4001438", "video_name": "d87909b5-de8c-597d-ac26-ba908fcee004", "text": "a princess in an 80s fantasy movie style "} +{"id": "4001439", "video_name": "5b08dffb-2946-5b36-a4ac-59780f377166", "text": "In a cyberpunk metropolis, a hunter and his companion traverse the cityscape, their every step captured in stunning detail by the full HD, 2k video. The buildings around them are tall and imposing, their sleek and modern design a stark contrast to the gritty streets below. The cyberpunk style is evident in every aspect of this scene, from the neon lights to the advanced technology that surrounds them. "} +{"id": "4001440", "video_name": "a412bb14-7ee6-5997-9629-7177a71bc6c6", "text": "a retired couple having fun on a beach in tropical panama "} +{"id": "4001441", "video_name": "e8ba718b-d7a3-5933-bc42-2778fb1a6853", "text": "make a cartoon video on two mouse are walking "} +{"id": "4001442", "video_name": "5b108adc-3d54-514f-905a-ad146a166078", "text": "an animation of a shivling discovered under a tree, set against a mountainous backdrop "} +{"id": "4001443", "video_name": "cd788152-b29b-540b-9bd2-731a808fff26", "text": "a chimpanzee runs along the road in the morning, first person view "} +{"id": "4001444", "video_name": "e225bc64-e61a-5e79-827e-79f1c74f5b65", "text": "a cat running after a rat cercularly "} +{"id": "4001445", "video_name": "3c4febba-f23e-5da5-b46b-59428f5a4ac8", "text": "prompt:a talking robot tell about imporance of AI. "} +{"id": "4001446", "video_name": "2690acfc-b736-5916-a017-b850a0fb962a", "text": "a turntable spinning with a vinyl record, film grain, 4K wide angle vertical "} +{"id": "4001447", "video_name": "388f56d7-e940-57ec-9fa3-db233a4094fc", "text": "a man sitting reclined in a chair turned to the right looking at the camera and talking in a surreal artstyle "} +{"id": "4001448", "video_name": "93782307-6119-51d2-af30-e59569078b96", "text": "shah rukh khan and elon musk sitting together "} +{"id": "4001449", "video_name": "21583d1e-fef8-50b6-92ba-5f755272272c", "text": "two little boy and girl set among the roses on the roof top with happy mood "} +{"id": "4001450", "video_name": "31c2eea0-5d2d-522c-9031-5e8d93c66cf1", "text": "Create the text \u0905\u0902\u0924 \u0905\u0938\u094d\u0925\u093f \u092a\u094d\u0930\u093e\u0930\u0902\u092d in dark background with lord Shiva "} +{"id": "4001451", "video_name": "195847cd-87d0-563a-8e05-19bd2a04f407", "text": "A balanced Root Chakra lays a solid foundation, instilling a sense of groundedness and confidence in our being. "} +{"id": "4001452", "video_name": "f038d114-647b-529d-8148-acad345eb0ac", "text": "a carefree person with electric powers in a futuristic city "} +{"id": "4001453", "video_name": "a298058e-c1d9-57b6-815c-5f7ea8c9a02f", "text": "A cyclist on a road in Peru "} +{"id": "4001454", "video_name": "ed92e8a9-ee21-50d9-ac39-3e84f799e188", "text": "a victorian ghost of a woman holding a candle walking in a dark hallway . "} +{"id": "4001455", "video_name": "c0eef913-5352-5f8d-b8af-7f54a9c51242", "text": "Footage of individuals engaging in acts of compassion and kindness towards others. "} +{"id": "4001456", "video_name": "ed2ff369-25b4-595a-99fa-b7bbd25289a2", "text": "student is walking in the university, sunset "} +{"id": "4001457", "video_name": "7872d085-9f13-5a09-be7f-ce2bc0f08fe2", "text": "a mermaid swimming underwater, 1920s rare film footage "} +{"id": "4001458", "video_name": "a9c3be5e-5800-5c42-a10f-8fe9958ed1d3", "text": "a little girl and a woman with a thumb "} +{"id": "4001459", "video_name": "d1245114-bdec-5d8c-98d5-5b2998ee8601", "text": "rocky mountains in the middle of the desert , sunset , dolly in , aeral view Message: Huellas (Font: MODERN) "} +{"id": "4001460", "video_name": "dd6ee745-8d5d-5be6-9038-8fbad645f1c7", "text": "A skeleton man sitting on a chair, whole scene is on the street, the man is moving his body slowely towards the camera, realistic "} +{"id": "4001461", "video_name": "87e08acc-5894-5124-b791-2b51ff9eba05", "text": "barbie on a date with keanu reeves doll "} +{"id": "4001462", "video_name": "b981cd3c-3693-56d9-80a2-e2af178d0619", "text": "The British were interested in maintaining access to key trade routes and securing their colonial possessions, which often put them in competition with the Ottoman Empire. "} +{"id": "4001463", "video_name": "7246f615-6f61-5595-ba6d-5d2fd6f1df78", "text": "moveing through a murky shallow swamp that is teeming with life "} +{"id": "4001464", "video_name": "7104eb2e-1a8c-554b-835e-8b014bbc63f5", "text": "teenagers looking at each other curiously "} +{"id": "4001465", "video_name": "13b7e372-caa2-57bd-ad9b-446574138767", "text": "a boy is playing switch games "} +{"id": "4001466", "video_name": "2374054c-065e-5471-a86d-f617a5554085", "text": "animation of disposable objects shaped as a whale "} +{"id": "4001467", "video_name": "d52c9569-0c26-5117-8b57-c71f92725301", "text": "lilliputs playing in doll house, 3d , realistic , 4k "} +{"id": "4001468", "video_name": "c80efe11-edde-5994-8e28-15c42ea41ecb", "text": "uturistic interior of a spaceship. Through a wide, curved panoramic window, you can see the breathtaking vista of an alien planet. The landscape outside is unlike anything on Earth, featuring a sky that is a tapestry of vivid purples and greens, hinting at an atmosphere with exotic chemical compositions. "} +{"id": "4001469", "video_name": "9ed475b8-c303-5fa7-876e-100d13c57d83", "text": "Elon Reeve Musk riding a cow and wearing a knight costume "} +{"id": "4001470", "video_name": "2de68405-9759-5506-86c3-cca27508b715", "text": "teenager listening to music, lofi vibes, golden hours, hair micro movement "} +{"id": "4001471", "video_name": "f33676ac-ee35-5f26-a6e8-543e2b68ed8a", "text": "The Greenhorn set in a wild west scenario "} +{"id": "4001472", "video_name": "22676b12-6ade-583c-bb41-9f2706900588", "text": "How could you have the heart to leave me? If the water runs low, you will run out of food, and I will lose my life. "} +{"id": "4001473", "video_name": "0646c74b-1d77-53ed-8464-f259d0c9b6f9", "text": "a boy cycling in the meadows during rain "} +{"id": "4001474", "video_name": "4a8ff20e-f62a-5dce-9368-c8459ce5a291", "text": "Young kid, new in soccer team, First day, everyone laughs because his feed are so big "} +{"id": "4001475", "video_name": "8cab9c87-4431-5545-8525-de1a2d655107", "text": "A dark hallway lit by torches with an ogre lumbering down "} +{"id": "4001476", "video_name": "b20ceae2-5c9c-5a40-a392-e1b67efcf28b", "text": "first school day for highschool kids "} +{"id": "4001477", "video_name": "6afa8a3a-bb46-5970-95ec-be0c021e3501", "text": "At one end of the warung, a group of individuals, adorned in an eclectic blend of masks, symbolizing their rich diversity, sat around a weathered wooden table. Their attire was a visual mosaic of cultures, a testament to the unique tapestry of humanity. A Venetian carnival mask brushed against a tribal African pattern, while an ornate Asian dragon coexisted harmoniously with a Native American totemic piece. "} +{"id": "4001478", "video_name": "9f118709-2a05-555a-a08d-5ed6db647acc", "text": "snowflakes fly macro Message: TEKCT (Font: MODERN) "} +{"id": "4001479", "video_name": "13f46314-b839-53f0-bb1e-c3af6a77fa0f", "text": "City Street Scene: Show Jason walking towards Emma with a bouquet of flowers. Dark clouds gathering, but he remains undeterred. "} +{"id": "4001480", "video_name": "b94df1d9-49f8-5bcf-b35b-9ed13e30bd27", "text": "Boris Johnson chewing gum, camera pan to left "} +{"id": "4001481", "video_name": "2689f70b-334e-59bb-a91b-832939845235", "text": "When one of the animal sat on the whoopee cushion, a loud farting sound echoed through the air. motion 2, fps 24, ultra hd video "} +{"id": "4001482", "video_name": "cf55e39b-a5d0-55bb-b2a3-1110cc90f0c8", "text": "ink under water, swirling, fluid art pattern, pastel colours "} +{"id": "4001483", "video_name": "f0fa3808-156a-5e9f-a482-3093f4976c5c", "text": "Create an video capturing the liftoff of Chandrayaan 3, with billowing clouds of smoke and fire, as onlookers in the control center cheer and clap. "} +{"id": "4001484", "video_name": "a172f17a-15c6-59d1-837f-3f36c2b41619", "text": "tupac shakur base jumping from a helicopter "} +{"id": "4001485", "video_name": "6bbb4eda-1990-5241-911f-c6bbf6d27b08", "text": "photo of a pink wall and a pink table, on the table there is one rose, (one apple) one candy, one teddy bear, (one tube), made in yellow, light green, pink, red colors, super realistic "} +{"id": "4001486", "video_name": "45be41c6-8a00-505b-ac1c-f7704a808db3", "text": "Batman vs Omniman in the chaotic city "} +{"id": "4001487", "video_name": "af2e9f5c-ad47-55f8-a070-db12a1dd70b6", "text": "cat and mouse running at night "} +{"id": "4001488", "video_name": "ae4daca7-a4cb-5e26-9ac6-1aba85382afc", "text": "woman smiling sunglasses cartoon style driving convertible car blue sky mountain in background "} +{"id": "4001489", "video_name": "00fd2c39-09fd-5d04-b8f5-54e452441085", "text": "Generate a 10 second video of women with a bucket of popcorn looking happy "} +{"id": "4001490", "video_name": "202dcd64-23e5-5797-bc4b-06865bfe3978", "text": "an angel dancing hip hop in a white room "} +{"id": "4001491", "video_name": "12a2b76c-fac7-5839-8e34-d9476b13c87c", "text": "A beautiful lady with her head on the shoulders of her lover "} +{"id": "4001492", "video_name": "8f0c9125-534e-5f77-a3ce-ac616bd86aa6", "text": "a chibi afrcian amercian lady with braids, wearing gold rimmed glasses, in a white tee shirt and blue jeans, dancing "} +{"id": "4001493", "video_name": "92ea31de-8f4e-5845-9bac-199f4c5b3d7f", "text": "a man setting for meditation his body silent mind "} +{"id": "4001494", "video_name": "7dc3fe5d-5f19-573b-9ba7-0c14c443e5bb", "text": "a dog eating a blue burger "} +{"id": "4001495", "video_name": "3428ff0f-6d62-5481-be69-a0b8ce5e5620", "text": "an ancient teaching in a book tiktok frame "} +{"id": "4001496", "video_name": "5478820e-7afb-5666-bfbf-05b1b4122545", "text": "clouds sway in the wind, The sun came out from behind the clouds "} +{"id": "4001497", "video_name": "9ac18fc8-27e9-5c03-8343-6ec7e41926a7", "text": "night, moon, view of the forest, a branch with leaves hanging, covered with dew, a drop of dew falls from a leaf, dense vegetation, dark gray tones, atmospheric "} +{"id": "4001498", "video_name": "10067e5b-c8ed-5f42-a22f-fff5372722d9", "text": "rockets flying in space filled with methorites "} +{"id": "4001499", "video_name": "b0ef0058-07bc-5e0f-8aeb-9ac0e008b26c", "text": "Friendly Fish and Energetic Eels: Visualize friendly fish with cheerful expressions, swimming alongside Ollie and the Mischief Mice. Show energetic eels participating in the underwater volleyball game, with tails forming a net. "} +{"id": "4001500", "video_name": "f1d1947f-2c7b-57db-95ef-6fc04e1a7eeb", "text": "A luxury house on the cliff and outside raining heavily, rainig, rainig "} +{"id": "4001501", "video_name": "f14c23cb-585a-53e7-862d-b5defc582bf2", "text": "twirling showgirl dancer cartoon with yellow feathers in her hair, wearing a red sequin gown, high heels "} +{"id": "4001502", "video_name": "fdfc9955-2b11-5f9d-a9c7-0e4a69c3d757", "text": "Katy Perry feeds Homer Simpson a doughnut "} +{"id": "4001503", "video_name": "ca1ee839-267e-5a05-a1a0-69253f3c7cc3", "text": "a stunning sunglass add with realtistic view and 4k "} +{"id": "4001504", "video_name": "c2517cee-eaf1-5674-bc6b-6570669c7f7d", "text": "garfield the cat doing jumping jacks "} +{"id": "4001505", "video_name": "18d5b41d-4e27-5dbb-a01c-ab1ae88d3667", "text": "uncomfortable, observing how everyone is glued to their phones. "} +{"id": "4001506", "video_name": "51217a3f-bc19-5a38-b2ef-aa2943d2acfd", "text": "Caillou sat on the throne of the blood god "} +{"id": "4001507", "video_name": "657355cc-85ef-59d4-b152-d2e34a36afbb", "text": "Starship interior, stars passing by large observation deck with rock trio on stage "} +{"id": "4001508", "video_name": "f7766e79-1677-5a3d-bdae-79ccc09831b6", "text": "birds flying in the sky going home in winter "} +{"id": "4001509", "video_name": "cdc2fbc4-97dc-5e62-9c0a-1989a3b3f637", "text": "25 seconds of a crow flying "} +{"id": "4001510", "video_name": "1e10ae6c-28e7-5483-a4d5-f79d6092891c", "text": "The wallpaper peeled away in long, gnarled strips, revealing the rotting wood beneath. "} +{"id": "4001511", "video_name": "b54f8e5d-8bf0-5dfe-9da5-bd7afdb3cc0a", "text": "A colourful drawing of a picturesque sunrise paints the sky with warm shades of orange and pink. Tony the tomato is perched on a vine overlooking the garden, his eyes wide with wonder. "} +{"id": "4001512", "video_name": "780cc1b9-7e25-5c0e-8c8d-ebd78f007fe1", "text": "ship of pirates in te ocean "} +{"id": "4001513", "video_name": "349b0e0e-2b71-5506-9664-90de90f024b9", "text": "a boy that travels through a portal ultra 8k "} +{"id": "4001514", "video_name": "1d6ea49b-6d31-5fc5-aca8-1f8c95d5d5e6", "text": "a river flowing down from above like a waterfall, but without any greenery mountain stones "} +{"id": "4001515", "video_name": "fd724e6c-0639-537e-954c-7568919d4ec7", "text": "Illustrate a young boy is reading Message: 1 Attachment "} +{"id": "4001516", "video_name": "8db1dd20-b132-55df-8e5d-2b49fd4f02cc", "text": "The line of a drawing trek forming a topographic map "} +{"id": "4001517", "video_name": "0b378bf2-a004-5f29-80ab-9544fa13e910", "text": "an one eyed sun digging coal on a cloud "} +{"id": "4001518", "video_name": "a2fdbc7d-cbed-5128-bb10-04f05e6e457c", "text": "The electrician is burning struck by lightning and moaning in unbearable pain. "} +{"id": "4001519", "video_name": "715ef8ca-2396-5328-9dcf-9e5aaaec6c62", "text": "a gothic futura rocket blasting off travelling upwards lots of fire and smoke "} +{"id": "4001520", "video_name": "153d69c1-2cbc-5526-b6e8-a11fa610a50f", "text": "People are dressed in flowing garments, holding crystalline orbs that shimmer with a kaleidoscope of colors. These crystal orbs serve not only as adornments but also as tools for manipulating magic. With a gentle turn in their hands, individuals release a cascade of magical energy, creating wondrous spectacles around them. "} +{"id": "4001521", "video_name": "1e0b50e4-1933-56ec-82c1-8f1f1f5215b7", "text": "school zoom out out door with bench and students 3d animation "} +{"id": "4001522", "video_name": "b2c02cee-33cb-53a1-b08c-44043b8be910", "text": "Generate an image featuring close up small cat paw prints on a soft surface "} +{"id": "4001523", "video_name": "ecf476ca-fc99-500a-bb89-8b32cf27ca83", "text": "Create an image of a charming and innocent princess with fair skin, dressed in an elegant Indian royal attire, sitting in the palace garden surrounded by colorful flowers. she is a child. "} +{"id": "4001524", "video_name": "034084cd-56c1-580e-83c5-ed49bbb89840", "text": "a man is standing in a dark room. the man is very sweaty, scared and stares straight into the camera. he is wearing a black tank top "} +{"id": "4001525", "video_name": "cac79a06-3675-55fe-bc4b-27ae35a82ba9", "text": "horrible island heavy forest terror epic evening sunset scene "} +{"id": "4001526", "video_name": "cdc1c810-eb5e-5f16-b5b1-57d680c80d9d", "text": "an arial view of a city Message: fazbear (Font: MODERN) "} +{"id": "4001527", "video_name": "cd5e8adc-9fd9-5e38-9112-f4723fa4965c", "text": "a construction of a building complex at dusk, its workers are leaving, film look, 4k "} +{"id": "4001528", "video_name": "1ddcb1ba-e5bd-5b50-9776-5a15b6c838cc", "text": "one Double meat burger falling onto a rustic wooden board in a dark yet warm ambiance illuminated by fire. format 9:16 "} +{"id": "4001529", "video_name": "6af2c460-6b5d-5b67-a5e1-d1dd8fb537d8", "text": "a bartender,wearing suits, pouring a drink,highball glass, 80s bar, red background "} +{"id": "4001530", "video_name": "d183d17b-a3c5-548d-8d2f-6100e466071c", "text": "Sequence of the tragic events of November 18, including the assassination of Congressman Ryan. "} +{"id": "4001531", "video_name": "b1bbc22b-859f-5b8b-b869-2df42bbc9aa7", "text": "little kid Roman walk on the crossroad with her mam "} +{"id": "4001532", "video_name": "a3ee4eec-1e17-56ee-ab2b-648222ffa384", "text": "dog saying \u201cI love you\u201d and then show her teeth "} +{"id": "4001533", "video_name": "7435d628-fe01-5c62-8bb3-96c737fb0c9b", "text": "an old 1970 film about the fairies by the nile river. "} +{"id": "4001534", "video_name": "68119fd8-6c71-5970-8b4c-0920e125c74d", "text": "Leverage animated word cloud, text design animation. Kinetic typography. "} +{"id": "4001535", "video_name": "9c7e2634-f07c-5051-8c4a-f5d0a30a3837", "text": "a cow was being kept by a pretty girl at the farm "} +{"id": "4001536", "video_name": "ccaacad8-e4aa-5a07-98ae-87a13872c4b6", "text": "popcorn with wings flying over city 8K, Cinematic lighting, Motion 2, Seed 4, particles moving in background, slow zoom, drone footage image: "} +{"id": "4001537", "video_name": "836fb690-b0ee-5422-87e9-86f9f99f1c13", "text": "Beautiful flowers in the meadow, light breeze, looks stunning, very re "} +{"id": "4001538", "video_name": "21dd42f5-fcfe-5be8-8467-66df28a89aeb", "text": "A flower loses a petal. Graphic Novel Style "} +{"id": "4001539", "video_name": "275bd4b1-d548-5a2a-88a4-d9dd77fc995f", "text": "a portrait from half face, a man dressed like dune movie, sad background, do not show the face, head looking down, Kubrick Films,90s Film Aesthetic,black and whtie "} +{"id": "4001540", "video_name": "40116f0a-acef-589d-a294-c56b56456dee", "text": "a man setting on a bench playing a guitar "} +{"id": "4001541", "video_name": "383370d2-53f9-5d2a-b0eb-5c6402aa6fff", "text": "A delivery brush is eating Message: 1 Attachment "} +{"id": "4001542", "video_name": "6513d104-63dc-5713-b97e-714a44ad6741", "text": "A scenic view of the small village with houses and trees. "} +{"id": "4001543", "video_name": "95691b1a-1e9b-56fd-84b2-90a4b54cb8a6", "text": "a tall milkshake erupting colors from the rainbow "} +{"id": "4001544", "video_name": "0719c386-3f0a-5480-a5ea-3be9803c418e", "text": "a surreal painting about sublimation, the transformation from solid into liquid, aquarelle, from darker tones to lighter "} +{"id": "4001545", "video_name": "07ad532c-f658-516d-8e01-5cd3cbbd31d9", "text": "Then the Lord my God will come, and all the holy ones with him. 3d animation, 16:9, more like this pic, with vivid colors, surprise me, high definition "} +{"id": "4001546", "video_name": "8596b33e-5f74-5484-b959-afa3a5c42585", "text": "a blue fish jumps out of coffee cup "} +{"id": "4001547", "video_name": "a9d75605-92d2-5ead-b746-b69a06357336", "text": "Create a heartwarming scene of Piko wearing a Santa hat, looking absolutely adorable, with a focus on the joy in his eyes. "} +{"id": "4001548", "video_name": "562e02c1-b112-5b21-9cc1-0a5f9ec8e950", "text": "father and son riding in the boat and fishing in the lake "} +{"id": "4001549", "video_name": "73de7bb1-9629-5322-a57e-84e19c89b1a2", "text": "A modern smart world consisting of advanced technology and sustainable buildings "} +{"id": "4001550", "video_name": "58495266-2b88-5e4e-bc65-8c2f962c5160", "text": "Windows 11 Copilot takes us into the future of AI with a new way of seeing your computer "} +{"id": "4001551", "video_name": "871a4529-ce26-55ff-a134-dd1e4a1cda19", "text": "a tattoo man well animated futuristic and cool guy with alot of tattoo with a tattoo gun in his hand "} +{"id": "4001552", "video_name": "6044cc25-c146-5a56-9a5e-6c1136fb2055", "text": "relaxed woman drinking coffee on a beach at the table "} +{"id": "4001553", "video_name": "c6f8a12b-4598-5bc3-824d-6b20ac3e4be6", "text": "Einstein, holding a globe in front of the blackboard, teaches Chinese students "} +{"id": "4001554", "video_name": "5b941b3f-e105-5fb8-835c-1ba96fba621f", "text": "a joyful christmas scene Message: SABINE (Font: MODERN) "} +{"id": "4001555", "video_name": "272be47b-2a4b-5e12-afe0-28846fe809fd", "text": "Attaching 3 images of vegetable dance, romance fantasy feeling, emphasizing the light of sanglier "} +{"id": "4001556", "video_name": "ec331757-e5be-5199-be26-32af2c5f1fb5", "text": "And you look right through them every time You just want to leave this place behind "} +{"id": "4001557", "video_name": "807585b7-ae82-51cf-93c4-78cab095c3eb", "text": "More and more people are reading "} +{"id": "4001558", "video_name": "b2aef692-f5ba-58b1-9a8b-dbdad0c3b39c", "text": "robots all over a grocery store, working there "} +{"id": "4001559", "video_name": "4953111c-ee91-56f2-b587-b863db237cef", "text": "60s album cover Black Mass maximum movement "} +{"id": "4001560", "video_name": "feabc5fe-a487-5f75-bfe4-ba0cdb72fe80", "text": "a fly by of shibuya and neon signs on buildings "} +{"id": "4001561", "video_name": "3bf08185-22c8-5482-a584-d29615bdb3b6", "text": "The weather is blowing in the autumn wind "} +{"id": "4001562", "video_name": "93509d36-73d9-5e51-94a2-d6fbfcbf79b3", "text": "old man with long white beard wearing a prayer shawl sitting on a lion on the mountains around old city of jerusalem seeing the tample mount in the distans clear realistic "} +{"id": "4001563", "video_name": "09c4bc78-2cbf-55ae-a990-256507b8bb55", "text": "Vast field, running robot, clear sky "} +{"id": "4001564", "video_name": "4e896314-8c8a-527b-85e7-0360d4fedf07", "text": "J.S. Bach, Couperin, Telemann, Rameau, Scarlatti and Haendel inside a bus "} +{"id": "4001565", "video_name": "42965c69-24c3-56fd-aecd-0d8fc38dfeab", "text": "alexander the great, a great warrior "} +{"id": "4001566", "video_name": "86308704-6e5d-5c38-ac1d-0baeb9981c1a", "text": "Emphasize the struggles of the herbivores and the scarcity of resources.cartoon "} +{"id": "4001567", "video_name": "d82d34a5-96d2-5020-8499-d0b3d003fbc8", "text": "16s video of a great nurse delivery new baby "} +{"id": "4001568", "video_name": "2fbcc0d3-f073-50b3-ba4b-ccbd6c8023e0", "text": "A handsome young Indian man standing in his house showing despair "} +{"id": "4001569", "video_name": "5cd356a0-51f5-5d37-abef-e864135f1f93", "text": "executive jet flying low through norwegian mountain valley in snowstorn "} +{"id": "4001570", "video_name": "8ac566d4-64e8-51d4-86e0-b15a8ab7b68b", "text": "small girl walks in the rain "} +{"id": "4001571", "video_name": "26ca65b0-a1a0-57e2-ae18-0f0d98dae12e", "text": "i need long video for racing car drifting "} +{"id": "4001572", "video_name": "b21f7c81-bf9a-57de-a843-368c034b9369", "text": "Showcase artistic renditions or animations of discovered exoplanets. "} +{"id": "4001573", "video_name": "ffdaf670-e102-532a-855c-10368cc3cffe", "text": "big waves Message: TVORENIE\nNEJROSETI (Font: MODERN) "} +{"id": "4001574", "video_name": "e7cc3a33-0a20-57ec-975e-1a8840f3e51f", "text": "Design a circular emblem featuring mythical creatures, symbols, or elements from various folklore traditions. "} +{"id": "4001575", "video_name": "3c181775-3080-5243-a8cc-d6d88063ad2b", "text": "strange person with sun mask standing in a wheat field, unsettling, 70s art house film style "} +{"id": "4001576", "video_name": "fdb716de-b537-567d-8055-877112ae5001", "text": "Creature, white wool, high, long beak, winter, mountains "} +{"id": "4001577", "video_name": "ccb62fcf-f94d-5e63-9220-050eab9de555", "text": "The same boy walking barefoot through fields, his gaze fixed on the distant horizon. "} +{"id": "4001578", "video_name": "ee3e04fd-b876-50c1-9ec1-02a3cfec9dda", "text": "tiny mouse named Mia nibbling at the ropes of the net which trapped Mighty lion named Leo with determination "} +{"id": "4001579", "video_name": "0143d376-9eb1-5e38-a7e2-701df13fbdd5", "text": "Wide Shot of the Barn: Show the charming red barn covered in snow, with twinkling lights and a tall Christmas tree visible inside. "} +{"id": "4001580", "video_name": "1c58af82-afd5-5fbf-8ee1-8b884918f5a4", "text": "sqaud of mini toy knights marching through a toy forest with the castle far away "} +{"id": "4001581", "video_name": "4744305c-2e20-5244-a59f-7abb1d3bc3eb", "text": "house flooded with lots of water on the floor "} +{"id": "4001582", "video_name": "bac573e1-7851-5531-bc58-cccef3acf5a3", "text": "Bengal Tiger eating, zoom in\n Tropical Rainforest "} +{"id": "4001583", "video_name": "abc9e9e6-a746-5780-af9a-185981937723", "text": "Effiel tower in background with text top 5 countries where french is spoken "} +{"id": "4001584", "video_name": "49b81930-4a2b-59eb-905e-4dce267a35c2", "text": "a snowman watching the falling snow "} +{"id": "4001585", "video_name": "8f5232b0-14ae-5c45-8c50-65753c5b7242", "text": "A beautiful yellow carp has a dream of becoming a dragon "} +{"id": "4001586", "video_name": "3533b619-8a03-56a6-ae1f-cc971a26ac2c", "text": "The crewmembers prepare for the historic voyage, their hearts racing with excitement and uncertainty. to space "} +{"id": "4001587", "video_name": "9821ec21-ee0c-5a6e-9d4e-4b8f3b6e1f26", "text": "ultimate default fortnite, 3d pixar style, 4k realism, details, middle earth style "} +{"id": "4001588", "video_name": "8a7cc554-fb74-5935-84ac-caaa824c6707", "text": "a smart green with money falling around it "} +{"id": "4001589", "video_name": "f8e57175-0e09-5829-ba92-347bc6593746", "text": "At sunset, a cute little dog is taking a walk in the forest, lively and cute, with white fur "} +{"id": "4001590", "video_name": "75380c28-e0dd-52a2-ab28-c8d2bf2f29f8", "text": ": moving python at the jungle, cinematic "} +{"id": "4001591", "video_name": "3e645ed5-3081-5981-a212-d2f8e558e8a7", "text": "indian god Shiva playing video games "} +{"id": "4001592", "video_name": "b1092773-aa2d-5531-81bb-48c7df061174", "text": "cristiano ronaldo boy with a football, taking his first shot on the field, expressing excitement and a passion for the game "} +{"id": "4001593", "video_name": "e1e35a57-19de-513e-a1dd-39107cddf994", "text": "Cinematic, Rick and Morty with Bob Marley in the Grinch, sitting in a circle on stalls, playing the drums with a rainbow in the background "} +{"id": "4001594", "video_name": "53680f92-f1e5-5903-adbd-4b31b11c1aea", "text": "Catwoman dancing on the street in the rain "} +{"id": "4001595", "video_name": "241dce77-17de-53e5-9c48-73ea0c00bffe", "text": "The god Zeus surrounded by his children who look at him with respect and admiration "} +{"id": "4001596", "video_name": "21850f48-94cd-5aa1-86d4-c8e538d39b55", "text": "a korean girl walking in the woods in a beautiful dress. "} +{"id": "4001597", "video_name": "c1074e7a-2c27-5d01-bb9f-4c3eac3f8945", "text": "a man contemplating the virtual light projection of the globe that rotates on its axis rapidly "} +{"id": "4001598", "video_name": "4655d25f-69ff-597c-bf9b-7bd4c9bd2524", "text": "close up video of human eye, blue eyes, realistic, 3d "} +{"id": "4001599", "video_name": "a05c0163-f938-52dd-8568-98861f05f1c8", "text": "POV flying through the coma cluster "} +{"id": "4001600", "video_name": "25ac1d4b-df6a-5b44-9d1d-e0572b6548ee", "text": "a lion runs. 60 fps high quality "} +{"id": "4001601", "video_name": "bef45d3e-dfe7-5176-b53c-fc31e35a5efd", "text": "man throwing cassette to the ground, casette shattters, slow motion, realistic "} +{"id": "4001602", "video_name": "333b8b93-e8d9-5767-b7ad-42de88fcff66", "text": "dwayne johnson staring as boris johnson in the movie covid 20 "} +{"id": "4001603", "video_name": "cca0421e-7483-565e-95ab-66f5831c38f7", "text": "Volkswagen drives through a vibrant city, bumper to camera "} +{"id": "4001604", "video_name": "5a72cd18-4b47-5038-9299-0ee0af155911", "text": "one man standing fearless in fornt of thousand man "} +{"id": "4001605", "video_name": "b18a351d-fb84-5f35-be69-02ba0c61518d", "text": "David Rhodes playing guitar on stage "} +{"id": "4001606", "video_name": "81f69a86-b943-5f68-ad69-39bcc8f65f49", "text": "close up video of tree bark "} +{"id": "4001607", "video_name": "61eba2f5-4a36-54d9-9548-9422b57eb1b5", "text": "a nilgiri tahr in a boat in the ocean "} +{"id": "4001608", "video_name": "a1547650-06da-55b6-bd43-f9a309ac2681", "text": "I need 1 minute video for tiktok about Wilanow district in Warsaw poland. Show main streets, entertainments , School "} +{"id": "4001609", "video_name": "98841e6c-23ec-55ba-a586-f530a4b64180", "text": "mountains in Iceland shaped like women moving "} +{"id": "4001610", "video_name": "4c388a26-79aa-5c61-a7ca-81fb3747ee20", "text": "Ancient pastoral beautiful fairies dancing in the heavenly palace "} +{"id": "4001611", "video_name": "770bc7d6-5c5d-5cc7-87a4-60b71fc25936", "text": "animation for website walks from left to right background white and animation light blue "} +{"id": "4001612", "video_name": "cd644e03-11c7-5e50-a282-c3777d62557d", "text": "room red light with cameras watch every move. "} +{"id": "4001613", "video_name": "e1e602a1-1b50-5f1e-a31a-e04f0fee82cb", "text": "Hair fluttering, eyes open and eyes closed"} +{"id": "4001614", "video_name": "dc13add4-4034-5cac-b2e1-df965ed33f00", "text": "A child sits in a car and the car drives away "} +{"id": "4001615", "video_name": "8fabaa21-9523-5d3a-b57f-f1b6ceca0098", "text": "neon bike rider , blender animation, unreal engine 5, dramatic lighting, ultra realistic, and "} +{"id": "4001616", "video_name": "28ec511d-9e08-5089-a614-cfcb0ca26a46", "text": "red F150 with a golden retriever driving it "} +{"id": "4001617", "video_name": "4f28b277-462b-5817-83a7-cb65c819cfae", "text": "masterpiece, best quality, A student receiving treatment in the hospital, doctors and nurses taking care of him, all medical expenses reimbursed by the school, cinematic lens with (complex filed bokeh) "} +{"id": "4001618", "video_name": "cb849112-0302-5089-b5c5-43358d15c8f6", "text": "a beautiful bride giving the roses to you. "} +{"id": "4001619", "video_name": "9d49ecf2-a3a9-55cd-8f83-5d2c64ce3145", "text": "plastic industry creating new material in incredible quantities "} +{"id": "4001620", "video_name": "e2c4d4ad-5c8e-5a1f-a90e-7172ea248ec0", "text": "Ukrainian warrior flying and protect Ukraine from the russian rockets, high quality, high speed "} +{"id": "4001621", "video_name": "cca1040e-8564-5979-9dd6-c1350554ec22", "text": "aesthetic night time bokeh effects in pink orange and purple colors "} +{"id": "4001622", "video_name": "54137e98-7c9d-5b16-b725-5d23ff1bb798", "text": "wide dreamlike landscape of a tree with just a few leaves, blown by wind, a thin dark sihlouette walks slowly to the tree "} +{"id": "4001623", "video_name": "5d9e4d17-a4b0-57eb-9cbf-463e17e65bc7", "text": "dark ages knight playing bar darts cartoon \ncell shading "} +{"id": "4001624", "video_name": "bbd49d9d-b943-50f2-83f3-94948e7aac92", "text": "realistic sports car red is crashing against the wall of the house "} +{"id": "4001625", "video_name": "ec60a21b-8c9a-56a4-9e0e-8f19067b136c", "text": "People may become separated from family and friends during the evacuation, leading to emotional distress. However, there could also be heartwarming moments when individuals reunite amidst the chaos, accompanied by emotional fluctuations. "} +{"id": "4001626", "video_name": "0029cd57-a1b6-57ab-bfd3-d0a7685ac2b6", "text": "a sketch, which shows a duck swiming in a pool, surrended by grass and flowers, the swiming pool has some other creatures "} +{"id": "4001627", "video_name": "2ae2424c-f1ab-55dd-8210-7fc7e90062e6", "text": "people playing baseball in the clouds "} +{"id": "4001628", "video_name": "c4adfc6d-7055-5fc4-9941-9d25e0fd45c5", "text": "create a football ground image and messi playing cricket on the ground "} +{"id": "4001629", "video_name": "c11a2e26-1086-55b1-9663-f95c3a3274ff", "text": "A beach volleyball player diving for a volleyball in the sand "} +{"id": "4001630", "video_name": "76744241-0654-527a-87c1-ee41205b3f74", "text": "carving out the eyes in the German Expressionist style. "} +{"id": "4001631", "video_name": "7d17f286-898b-5307-8200-e92297cef7f8", "text": "trees moving, flower petals floating, clouds moving, a robot monk who is walking close to a river, studio ghibili, hand drawn, anime style "} +{"id": "4001632", "video_name": "9cf4e5fe-e185-50ab-ae7c-698aab676157", "text": "business men closing a deal on a rocket base "} +{"id": "4001633", "video_name": "0f962b87-d75a-5c7e-a3ae-c0029656ba43", "text": "make a video on the single cute indian girl walking in the road, side air following, little little sowering, salwar suit, long black hair, "} +{"id": "4001634", "video_name": "2857a653-d823-5b17-8531-e3ff21e3c010", "text": "holographic displays, creating a sensory overload of sights , ZOOM IN "} +{"id": "4001635", "video_name": "8dc8d11d-fc2b-5a00-8116-e7ecb560e2eb", "text": "movie scene of a huge audience "} +{"id": "4001636", "video_name": "55203d3c-e35f-5169-a277-37c57f0b5b30", "text": "A cinematic shot of a Santa Claus entering a production firm, Smirk on Santas Face well built body, confident walk, all employees are in awe, lots of details, dramatic lighting, "} +{"id": "4001637", "video_name": "6af03bc6-0131-5e17-b6e4-4eb912c3e2e2", "text": "minecraft mountain range with two characters looking in the distance "} +{"id": "4001638", "video_name": "34d454a8-4448-5cab-b804-ed6973454789", "text": "an advanced race of highly intelligent octopus people "} +{"id": "4001639", "video_name": "5eae0918-248c-5410-8d32-aca93e695cf0", "text": "a girl sitting at the beach, her hair is blowing in the wind. She is crying "} +{"id": "4001640", "video_name": "98dfc3ab-0915-5421-a605-fe81227d692f", "text": "a women is waiting in the middle of road "} +{"id": "4001641", "video_name": "996e7ef1-8282-54f2-bdb6-851a706ff4b6", "text": "create a grand black and white visual with real life perspective where a man is moving towards a bright light in a dense forest and only shadows are visible "} +{"id": "4001642", "video_name": "b8878931-a362-5ac8-b96a-c03d4831657f", "text": "cute puppies on the couch Message: Gris (Font: MODERN) "} +{"id": "4001643", "video_name": "f380fff7-e445-5d22-97e7-0959cafbcea6", "text": "In a futuristic city, a beautiful woman named Eliza, possessing striking looks and intelligence, found herself besieged by extraterrestrial beings from different planets. They coveted her knowledge and beauty, but she cleverly used technology and wit to secure a safe future for herself, becoming a legend in the world of tomorrow. "} +{"id": "4001644", "video_name": "ad445933-4ce2-5785-a4de-097d5f70df20", "text": "In the face of adversity, Amir emerged as a beacon of hope, leading his comrades with integrity and determination. Through the trials of war, he remained steadfast in his convictions, embodying the true essence of a Muslim fighter \u2013 a guardian of peace and a champion of justice. Message: 1 Attachment "} +{"id": "4001645", "video_name": "bd379079-8da2-5a08-bc7a-7981d74503bd", "text": "Cockpit hatch on chest opens slowly Message: 1 Attachment "} +{"id": "4001646", "video_name": "a720a3b9-52b6-50d0-9940-f9c6a91c7e47", "text": "Live action of the sun setting towards the sea "} +{"id": "4001647", "video_name": "92f1c21d-5f84-5566-86a2-0b03243160c9", "text": "sailors walking into a creppy bar on the docks at night "} +{"id": "4001648", "video_name": "46a1d37a-db7b-5a33-8128-a9d99374cff1", "text": "Create a animation of Doraemon without ears saying hi "} +{"id": "4001649", "video_name": "9b9c7479-acf2-5a20-a0d9-faf19c1bc07a", "text": "two women wearing fuzzy winter earmuffs "} +{"id": "4001650", "video_name": "3f560e51-2e07-58fd-be44-a8d673e95d80", "text": "Tortoises and rabbits race 100 meters "} +{"id": "4001651", "video_name": "ab04027c-3646-534b-9d3d-eb26cc3e3cfc", "text": "gekko from pj masks jumping on the beach "} +{"id": "4001652", "video_name": "7dd3ea9e-8d69-53e7-b2c9-538603ae371f", "text": "night seen in man and woman image in road in car running "} +{"id": "4001653", "video_name": "548bc3e3-2de3-52b8-af90-bfc7dd1082a3", "text": "A lion attacks a white bull "} +{"id": "4001654", "video_name": "d8c466a3-e3e8-559c-91d3-ae5caad76bcb", "text": "spanish football team Message: spain (Font: MODERN) "} +{"id": "4001655", "video_name": "d9292409-161b-5625-8235-3cd5192031f8", "text": "realistic little girl sitting alone in collapsed building "} +{"id": "4001656", "video_name": "028f1ec1-b821-56a3-bf6d-f43bf0fd06ed", "text": "a young woman in doll dress dancing, Barbie girl, realistic, ultra HD, ultra surrealism, 8k, what jhumka "} +{"id": "4001657", "video_name": "26f71651-1bde-5c6c-870f-69f8a10d4eea", "text": "One sunny morning, as Peter was walking through the village, he noticed an injured bird on the roadside. Its wing was broken, and it looked helpless. Without a second thought, Peter gently picked up the injured bird and cradled it in his hands. He decided to nurse it back to health. "} +{"id": "4001658", "video_name": "d072377a-f688-5635-9814-bef555eb6da3", "text": "animate a cartoon of women campaigning "} +{"id": "4001659", "video_name": "899d897c-9248-5302-ad4d-42a4e43fceb4", "text": "With a location history, draw a nice image that can be used to build beautiful hyperlocal customers "} +{"id": "4001660", "video_name": "d337e114-8345-54d3-806b-a947f4c224ef", "text": "books consuming the soul of the pope at high speed while the pope is reading the book "} +{"id": "4001661", "video_name": "89c39a5a-2897-57d8-9eaf-d889ce8fb952", "text": "Visualize the commitment of the early Church to public prayer and fasting, leading to the formation of new congregations (Acts 14:23). "} +{"id": "4001662", "video_name": "d74050a2-604a-535e-8dd7-af7b1187077e", "text": "slow ride, fps 24, motion 3 cyberpunk city futureistic car "} +{"id": "4001663", "video_name": "3f7a1033-abc8-55b6-b284-a4d070d024aa", "text": "Fear helps us detect and prepare for danger, while joy rewards us and motivates certain behaviors. "} +{"id": "4001664", "video_name": "97dba722-7dcf-5b9a-8316-f08b28d01475", "text": "a young boy very deep in the magical forest "} +{"id": "4001665", "video_name": "11b16a75-d023-58b1-94d7-de2415cb9ca5", "text": "style: Race in burning Chicago. People are running "} +{"id": "4001666", "video_name": "274c68b8-0c3d-51d3-82bf-afd0b56304fa", "text": "A man who is moving bricks "} +{"id": "4001667", "video_name": "ebc93039-5679-5c86-aac2-ebb704839830", "text": "painting a desert in the middle a lot of ungo plants "} +{"id": "4001668", "video_name": "3681056b-2eb9-58f4-aaa1-6553b2918286", "text": "30 seconds video Mercedes Benz is being repaired "} +{"id": "4001669", "video_name": "1a361de3-b2cf-56eb-bd4f-061f5d821625", "text": "Soccer player with blue and yellow striped shirt number 10 kicking a ball, retro style "} +{"id": "4001670", "video_name": "9e98e6ca-4608-54bf-8ca9-ac245a9d5631", "text": "rain, close up, rain splash, night, relaxing "} +{"id": "4001671", "video_name": "b7074767-3d1f-52d5-9d8a-c7ef2ae213fe", "text": "bible accurate angels hovering, glowing , sun beams, clouds , wings , flying , hyperrealistic, gothic , dark, cryptic, signs "} +{"id": "4001672", "video_name": "599b2b9d-505c-5b2a-9ffc-15c46c7d91c2", "text": "man in city talking, made of wool, yarn "} +{"id": "4001673", "video_name": "855c53ae-2169-5ac1-9271-1a3d12dfa46a", "text": "Serena the shark explained that she was misunderstood by many and longed for friends. Whaley the whale and Danny the dolphin, filled with compassion, decided to befriend her. They learned that even the fiercest creatures could have a kind heart. "} +{"id": "4001674", "video_name": "3f996bb7-0f51-5fb8-b462-890c2cba4da1", "text": "old man with glass jar in his hand that holds a small world inside it filmnoir black and white 35mm "} +{"id": "4001675", "video_name": "b728caaa-9cee-57f7-8305-4cb617a62590", "text": "money and gold and water around a girl "} +{"id": "4001676", "video_name": "4aedfa56-7d69-5bac-8c6a-f5f681d8d038", "text": "There are 5 people sitting in front of a computer playing games "} +{"id": "4001677", "video_name": "f637aa8d-65ef-56f6-bfe0-745786ee3545", "text": "bring to life an animated scene of a busy downtown street from a police state, apocalyptic and dystopian future like book 1984, done strictly in the artistic style of H.R. Giger "} +{"id": "4001678", "video_name": "5e4ce733-e9b0-5f2b-8c0d-b7ccaf53627f", "text": "The tortoise plodding along with determination. "} +{"id": "4001679", "video_name": "5ca95c6d-846d-524a-91f4-6a97409061db", "text": "a sad funeral it\u2019s raining outside "} +{"id": "4001680", "video_name": "d2d26b30-1fa0-5ad9-a24c-f20339d1dcb4", "text": "a decorative petroglyph timescape on a rock showing an alien spaceship "} +{"id": "4001681", "video_name": "0f11ceff-4058-5422-8f5b-40c8e71c8581", "text": "On a ship, a character who secretly leaks information among the captains is seen spying in a dark corner. "} +{"id": "4001682", "video_name": "0bb5c382-0aee-5523-8cf2-4bac9376dfe2", "text": "golden hair woman in the wind digital painting "} +{"id": "4001683", "video_name": "b81d84a6-e3a6-5faf-8892-653e32c31c84", "text": "a girl standing on the tree "} +{"id": "4001684", "video_name": "488d9522-0542-5b3a-88b8-211243587cae", "text": "anime side view of someone reading a book while wearing headphones "} +{"id": "4001685", "video_name": "0f1f29f8-5dff-5246-99c6-595f91b12199", "text": "mrs dalloway said she will buy the flowers herself Message: 1 Attachment "} +{"id": "4001686", "video_name": "b8b106a1-b5f0-58af-84d7-0a5bba217172", "text": "aerial photos of fort lauderdale florida from the viewpoint of the ocean "} +{"id": "4001687", "video_name": "764804be-b383-5e10-a138-867a5127d54d", "text": "spaceship launching into space with cheering crowds below. "} +{"id": "4001688", "video_name": "0e6a391a-84d3-5b0a-bdfc-6039da7b0d44", "text": "vintage comics style, a lot of punk people dancing at concert, in a little pub, stage prospective, concert red lights, camera smooth "} +{"id": "4001689", "video_name": "ce041d42-70cb-539c-bcca-975899d5a60d", "text": "one huge cat tribe dancing with one cat dj, at a cat rave "} +{"id": "4001690", "video_name": "10409f1d-099a-5989-8b9e-3cdb069add0b", "text": "a fluoracent color that show love "} +{"id": "4001691", "video_name": "157806df-a6ee-5c37-8647-a62be0ef4376", "text": "a ufo in the story sky "} +{"id": "4001692", "video_name": "35504b5e-e788-5642-8966-d63cfae95b2f", "text": "house from the 1888 year in china, isometric illustration "} +{"id": "4001693", "video_name": "2c04d640-c481-5b12-9c00-8700cc770b4b", "text": "The street is full of cars, traffic jam. "} +{"id": "4001694", "video_name": "d4ad19e3-91d0-5cbc-bdef-d59e14781020", "text": "pistons firing in the style of Zdzis\u0142aw Beksi\u0144ski "} +{"id": "4001695", "video_name": "7fbcd8cc-964c-5da0-af59-91c3a7c3f41b", "text": "A bird flying high in the sky, cartoon "} +{"id": "4001696", "video_name": "6d2b0903-4552-5f6c-84fb-c5f5e54e89c3", "text": "dark area with low light a two demons fighting until ones die and then the winner cries from his heart sadly but with a scary smile "} +{"id": "4001697", "video_name": "09a3b020-ff03-5615-b57c-28d13b794183", "text": "Deep Sea smoking vents with wild waving crinoids and octopuses sleeping "} +{"id": "4001698", "video_name": "65f5fc39-2da7-5360-bf43-a77e6ce6def7", "text": "10 sec videos with a woman spiritual god with blue hair and spiritual signs on his face "} +{"id": "4001699", "video_name": "875a5c58-5fa2-54cb-bab2-24d844abf078", "text": "Depict a small, tranquil village nestled in a lush valley with the big banyan tree that will play a significant role in the story. This image should set the peaceful, traditional tone of the village. "} +{"id": "4001700", "video_name": "a4d1e37a-92b6-5fbd-acfa-9cf22c222b8f", "text": "draw a village that has a round hole , and the light is coming from the hole , the sky is clear with stars ,cinematic effect "} +{"id": "4001701", "video_name": "a04a2d8b-d9ad-57bc-ab48-1082fca08d73", "text": "paw patrol dogs driving mercedes s500 "} +{"id": "4001702", "video_name": "cf86d1bf-c202-5d1f-b29c-619e33a24dee", "text": "vertical video of a flooded livingroom "} +{"id": "4001703", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "FUJI mountain with blue sky and some clouds "} +{"id": "4001704", "video_name": "a1822137-0905-5fe0-b7ab-3df3f101d3a5", "text": "dancing eon gummy bear with black background and disco ball rotating "} +{"id": "4001705", "video_name": "9fca82c7-6cc0-5c16-ad5e-3ec9ca1a1734", "text": "Design a bustling LEGO carnival with rides, games, and a lively crowd of minifigure visitors. "} +{"id": "4001706", "video_name": "6b9eaea3-fe14-5e19-a956-220c300275cc", "text": "a old lady with some flower "} +{"id": "4001707", "video_name": "826c9bdb-f054-59b8-a349-5170b5f781f0", "text": "Chuck Norris and Peter Weller are teaming up as scifi space rangers. "} +{"id": "4001708", "video_name": "986fef58-22fe-52f9-ae26-ff07797635d3", "text": "the frustration of finding a job "} +{"id": "4001709", "video_name": "840805cc-88da-5cd6-9f3c-410d1fe4bcc2", "text": "amazing garden in the sunlight, detailed "} +{"id": "4001710", "video_name": "7ef0e132-8b0d-58ee-abd0-b0fe9d7aaefa", "text": "Christmas candle night outdoor concert full of pets "} +{"id": "4001711", "video_name": "9a585a77-4601-501c-a026-f430d00ad5d0", "text": "Kyrgyz man in national clothes near the yurt with a box in his hands 16\u043b "} +{"id": "4001712", "video_name": "1d0aeb17-bafd-581c-8cb4-d9c9ac7d8f32", "text": "10 people are sitting and eating "} +{"id": "4001713", "video_name": "647286b2-de4f-52ff-8e10-da8485effe48", "text": "super earthquake with a lot of building collapsing "} +{"id": "4001714", "video_name": "6820a95c-386a-5213-abdd-6a0009bb060c", "text": "a gothic lady walk in a gothic hall "} +{"id": "4001715", "video_name": "3f66f4c3-660a-51c4-ac8a-f9c80355e399", "text": "Begin with a wide shot of a desolate urban landscape, drenched in melancholy hues, with rain pouring down relentlessly. Gradually zoom in on a solitary figure, a young man named James, walking aimlessly, drenched in the downpour, his face reflecting a deep sense of desolation "} +{"id": "4001716", "video_name": "0a010f28-8309-5a9e-9ad2-83199180b6b1", "text": "make video feature car in 2089 yeasr "} +{"id": "4001717", "video_name": "12b1996c-7373-58fd-bea7-070786032cd9", "text": "One early morning in the forest it is damp for the tied animals to run. "} +{"id": "4001718", "video_name": "4018a160-f903-53fa-a4fa-a4dba89dfe81", "text": "There is a boy who is walking with the bmw car. "} +{"id": "4001719", "video_name": "9183f018-554e-5c4c-8143-240d03cf1d78", "text": "A towering double cheeseburger piled high with toppings. Oozing mayonnaise drips down the sides of the soft bun, unable to contain the generous creamy slathering. Rivers of rich, eggy mayo cascade over the crispy bacon and pickle slices, pooling on the plate beneath the massive meaty burger. More mayonnaise continues to drip slowly from the sandwich with each mouthwatering bite, adding even more indulgence to this decadent cheeseburge "} +{"id": "4001720", "video_name": "eb765150-3181-5e4d-b727-5d569f886443", "text": "Resident Evil heroine Ada Wang wearing wedding dress walks out of Raccoon City "} +{"id": "4001721", "video_name": "26bb8860-7946-5b12-9284-18cc2aeb8dd4", "text": "waves showing the message: ordinary Technology "} +{"id": "4001722", "video_name": "67c65686-f8a6-55b3-9742-a427385ab411", "text": "two women talking on couch in animated video "} +{"id": "4001723", "video_name": "b7d1a32f-817f-57b3-8e31-a34472eb9c16", "text": "A snapshot of Rusty transforming into a superhero, gears whirring and bright eyes shining, ready to face the storm and help those in need. "} +{"id": "4001724", "video_name": "34a4b65c-5cd1-53e0-8395-24152079f146", "text": "A mysterious and artistic boy with purple eyes and hair and long eyelash, traveling on a spaceship in space, looking out the window and looking surprised "} +{"id": "4001725", "video_name": "21678754-7e99-5076-9785-978ee73ed5a9", "text": ": Fish mentoring the young fish and sharing his wisdom. cartoon style "} +{"id": "4001726", "video_name": "1e6dc3bd-af5e-5069-a54e-fdd14dfd4244", "text": "Let a dog wear a space suit and fly in space "} +{"id": "4001727", "video_name": "7f4a1765-2dac-5aa6-96cd-cc084b421cb0", "text": "The camera captures the intricate details of their faces, showing the pain etched into their features. They lock eyes, and a silent understanding passes between them, transcending language and history. The backdrop is an 8K masterpiece, with every piece of debris, every wound, and every emotion portrayed vividly. "} +{"id": "4001728", "video_name": "c4d4d7f4-4af2-5f13-ba9e-0d61c4bd452a", "text": "Disneyland style. Time seemed to stand still, but the night eventually drew to a close. As the first light of dawn kissed the sky, "} +{"id": "4001729", "video_name": "82879957-0473-5c17-aee7-76abf3b32f88", "text": "write a bible verse with lettering Message: Eleven (Font: MODERN) "} +{"id": "4001730", "video_name": "94dc8761-92af-52a3-b65d-13ee0eaab3a3", "text": "once upon a time in a jungle intoduction scene "} +{"id": "4001731", "video_name": "f32688f4-bd30-5594-a38a-7d030bc96441", "text": "giant bunny taller than sky scraper "} +{"id": "4001732", "video_name": "85c8b179-b01d-5a74-b920-11adcf4b30fe", "text": "A deserted outdoor cafe at night "} +{"id": "4001733", "video_name": "8b94178e-3417-5f1d-bb64-8b494d47c1c3", "text": "His heart was very kind towards the birds, and he wanted nothing more than to have them in his place. "} +{"id": "4001734", "video_name": "a0feb479-ec6e-58d2-bb52-159900902f19", "text": "Cinematic, red mushrooms in a lush glen, dappled light, misty, dutch angle "} +{"id": "4001735", "video_name": "9e6c405d-2b73-593b-951b-2d6267d52e62", "text": "laundry washing day in the mughal court of shah jahan "} +{"id": "4001736", "video_name": "34170169-6701-5efc-8b0f-b063b5e6de04", "text": "Boy and girl settle on the bus stop bench, their bodies turned towards each other, engaged in animated conversation. Buses pass by, creating a rhythmic backdrop to their interaction. 90s disney style animation, vibrant hand drawn, ultra detailed illustration "} +{"id": "4001737", "video_name": "de617805-7e8a-5b14-befa-33fd721c5db6", "text": "closeup of old firefighter happy in night snowy mountains "} +{"id": "4001738", "video_name": "c5d1e9b1-1e3c-5a38-a28f-ca6184000881", "text": "4K video of a thin Asian fashion supermodel fitting gown in backstage with the designer at an open design studio, highly detailed"} +{"id": "4001739", "video_name": "8e5fc2d2-1d3c-52ab-8a44-6df78dad137f", "text": "Indonesia greatness with Indonesia flag in the background "} +{"id": "4001740", "video_name": "3a1f425f-6fb2-52bf-8fa1-e8ecab8736ac", "text": "tracking left, a strange, thick, mystical mist, with flashing lights, traveling through a prehistoric forest, "} +{"id": "4001741", "video_name": "cc7a123a-65c1-5dc0-8d75-a447ebc86dc7", "text": "Alfa Romeo car rides through the desert, 4k quality "} +{"id": "4001742", "video_name": "d53c10d6-45c7-5c05-b89d-70cd193933b4", "text": "a giant is destrying a city, futuristic,surreal, 4k, 10 sec "} +{"id": "4001743", "video_name": "089cf9f9-2085-5951-9cbb-a03d23ad2db0", "text": "an anime character fighting for the his country "} +{"id": "4001744", "video_name": "c7da1316-147f-5ba6-9154-e34f0e029579", "text": "The video describes nutrient molecules in the cell membrane. Protein channels allow specific nutrient molecules to pass through the cell membrane and control the rate at which they enter the cell. The video shows the structure and function of the channel proteins and how the opening and closing of the channels can be regulated by changing the conformation of the proteins. "} +{"id": "4001745", "video_name": "7c41f9ee-ae26-5733-90bf-44cd036e1a2b", "text": "A boy wearing glasses was driving a truck, which was filled with fruits. "} +{"id": "4001746", "video_name": "c1e46bfa-267b-5f6a-8055-8cac9474766e", "text": "a pony made entirely out of peanut butter floats around in front of an empty background "} +{"id": "4001747", "video_name": "7084b2be-d53d-58e6-b8fe-93135ace87ab", "text": "a 2d figure of semi realistic ancient indian ruler takling to his queen "} +{"id": "4001748", "video_name": "3d35b246-3e93-550c-800c-c6a963df0e88", "text": "The mother is seen sweeping the floors, dusting furniture, and arranging the house. Make the atmosphere calm but mysterious. "} +{"id": "4001749", "video_name": "1115a0e9-0e36-592e-bb7a-8fe29a82fdf7", "text": "godzilla stepping on people in new york city "} +{"id": "4001750", "video_name": "6e85aa7e-f7e4-5878-b58b-4dfa408467b2", "text": "a beautiful girl with attractive face with golden ratio , cinematic lighting "} +{"id": "4001751", "video_name": "d7ccb38c-dabe-5cb8-b0b9-a31ec20e5283", "text": "Children enter school, the atmosphere is wonderful and bright, and the school is glass "} +{"id": "4001752", "video_name": "2f3b9b3d-3756-5997-853a-5d5e37d90cb2", "text": "hamsters running through the forest with rabbits "} +{"id": "4001753", "video_name": "e971e5a7-a2f1-51cc-9abd-b7ed1e5258f9", "text": "follow two cats running thourgh a green field towards a barn "} +{"id": "4001754", "video_name": "fe1f9741-b2fc-5438-9560-be0f0f4ef863", "text": "words on the wall Message: Classroom (Font: MODERN) "} +{"id": "4001755", "video_name": "7a04b0a2-3e84-5dc7-b2ad-3760100c8edf", "text": "bmw e 36 in a drift flies into a tree and crashes "} +{"id": "4001756", "video_name": "c3e75d84-b3e3-54ed-a78e-de1c4239f075", "text": "solar powered electric train moving with beautiful scenery "} +{"id": "4001757", "video_name": "80ea4d55-4176-5eb6-a377-4f65566eab0a", "text": "Alien standing in the jungle of an alien planet "} +{"id": "4001758", "video_name": "8d20f220-d711-5cd7-9039-3fabc7b4fb04", "text": "studio ghibli style animated video of a ceiling fan circulating hot air (red color) and cold air (blue color) "} +{"id": "4001759", "video_name": "7472be7b-cb7f-5877-8ee8-d6f133f6a52d", "text": "he shared his stories, his dreams, and his emotions with the world. "} +{"id": "4001760", "video_name": "a8649867-57a0-531c-9f8e-e17f6b310946", "text": "Generate an image of the Lion and Rabbit walking side by side, with other animals joining them in a harmonious meadow. "} +{"id": "4001761", "video_name": "ce14baed-f58a-5d18-a768-45abe7d9c0c0", "text": "A realistic image of a kitchen with a stove, a pot with boiling water, and hands adding small red vegetables to the pot "} +{"id": "4001762", "video_name": "7ed58eeb-fe61-54de-9460-ace63bd34d4e", "text": "spiderman standing in top of the building along with his dog with back to camera and seeing the city in amazing night sky "} +{"id": "4001763", "video_name": "508431cc-4c4d-5d03-9207-7eb2d80a22f7", "text": "A solitary figure sits on a park bench, bathed in the soft golden light of the setting sun, absorbed in his mobile phone. The tranquil surroundings create a sense of calm, with the warm hues of the sunset casting a serene atmosphere. "} +{"id": "4001764", "video_name": "6e0208c7-45ba-596e-aa62-23dbd7024383", "text": "a steampunk fire truck, fired out from a volcano hiperrealism, detailed, high resolution "} +{"id": "4001765", "video_name": "51ab3e3c-3810-59da-9e6b-84416713dd29", "text": "a scary forrest Message: BRYCE (Font: MODERN) "} +{"id": "4001766", "video_name": "820e3f8e-dc46-5697-91e6-66ffcc4da4fd", "text": "an anime santa coming down from the sky "} +{"id": "4001767", "video_name": "7b781f33-311e-53dd-9f6b-ede800fe79a6", "text": "old man under the tree near the river gives the seeds sack to the boy and the girl dream shaped photo style "} +{"id": "4001768", "video_name": "9fc0520a-3242-591f-8816-e9fe21f07aca", "text": "Its melody carries, on the morning breeze,\nBringing happiness to all it sees. "} +{"id": "4001769", "video_name": "ed38317d-d664-5b56-87b1-6889f4f641f2", "text": "a woman wearing white sweater sits in a carriage that runs close to the window "} +{"id": "4001770", "video_name": "b932e88c-491e-585f-b351-926d70880132", "text": "tv noire, couple walks through the rainy street "} +{"id": "4001771", "video_name": "b861c749-02fd-5f88-a951-f60bd5d37b5b", "text": "a beautiful blonde woman kissing a poppy flower "} +{"id": "4001772", "video_name": "d3110925-cfde-53e0-a405-d39d816a37f2", "text": "three cats slowly moving their tails side to side as they look at the camera unblinkingly. retro anime style animation "} +{"id": "4001773", "video_name": "a0d2903b-b712-5571-9e27-11372a012118", "text": "lucifer the fallen angel flying in skies burned wing flap "} +{"id": "4001774", "video_name": "6109d0f2-0b1d-577c-9c93-949407835839", "text": "A man wearing Arabian dress coming from old Egyptian pyramids, camera front view of a man, cinematic, realistic, smooth,4k "} +{"id": "4001775", "video_name": "f9b3f4b4-99d4-59f2-9c35-7cec210b8797", "text": "a middle aged south Asian family posing for family photo, 1990s, London, motion 2 "} +{"id": "4001776", "video_name": "94c4aa56-05ae-52cc-b289-3aab0976db4c", "text": "A Dream Sprite, with its iridescent wings, appears before her, its presence captivating and mysterious. "} +{"id": "4001777", "video_name": "26b3c564-3b58-51df-8fcd-2b2f6f3ecdbb", "text": "a hyperlase of an realistic eagle in front of the alps, format: 9:16, and 10 seconds "} +{"id": "4001778", "video_name": "9f522165-d025-5eb4-9ceb-befaa4884b92", "text": "In space, a massive alien spaceship approaches Earth "} +{"id": "4001779", "video_name": "d05b4633-164a-53ac-9fec-f8d7ab379770", "text": ":water droplets filling up a glass, overflowing, and splashing everywhereeverywhereeverywhereeverywhere "} +{"id": "4001780", "video_name": "ac94855f-97ce-548d-a067-2771b41dbac3", "text": "Armageddon, USA, warehouse well lit, the only survivor Russian blonde short hair, man in his 30th , in a uniform, walks through the boxes. Camera front. "} +{"id": "4001781", "video_name": "26f519d6-b6ad-5063-b4d0-9e3e24de1230", "text": "Jesus walking in the valley of shadows with robots in a programmed world "} +{"id": "4001782", "video_name": "cd5419bf-45c3-5b2d-8b94-6573fbc6fcae", "text": "mickey mouse surfing, retro animation style "} +{"id": "4001783", "video_name": "d2424616-45f3-50e6-a1e9-91cf7253c9c8", "text": "colorfull clouds Message: Waiting in vain (Font: MODERN) "} +{"id": "4001784", "video_name": "e1000e12-3858-5115-a4b9-baf9726b47bc", "text": "However, experts in the field have come forward to clarify these claims. "} +{"id": "4001785", "video_name": "7039d5df-a020-5fa3-a004-e8eec70f59c8", "text": "One Piece Character Shanks Drinking Rum on a ship Sail. "} +{"id": "4001786", "video_name": "a13e3892-6d6b-5aa2-b3a4-85875e6d16b7", "text": "Cristiano Ronaldo lifting the World Cup with the shirt of Portugal realistic "} +{"id": "4001787", "video_name": "9fbec98b-befb-54bc-8ab1-30a47de193f3", "text": "foggy night, red sky, car driving "} +{"id": "4001788", "video_name": "87217f3b-2e4c-5342-a6bc-a9bf83f2ab95", "text": "Girl, temperamental, exquisite, smiling, beautiful, sunny, indoor, photorealistic, realistic, realistic, facial clarity, photo, Sunlighting, full body photo, front corner, natural light, Sony camera, Ilya Kuvshinov, high definition, fine depiction, exquisite, 4kMagne1609 "} +{"id": "4001789", "video_name": "ae843697-5bb4-5edb-ae45-be5cc4161f5c", "text": "a boy play alone around a old vintage victorian castle with a dawn, realistic, unreal engine 5, ultra 4k, no deformation, no extra hands, no extra legs, no extra heads "} +{"id": "4001790", "video_name": "66a0f50a-0b2e-5389-bf22-61515019c05d", "text": "make real accident animatted cartoon Message: 1 Attachment "} +{"id": "4001791", "video_name": "a6256814-35e7-5ada-be5d-1c0e3250beb3", "text": "a young black woman and a latino man are inside a 1800 English pub in London, seated at the bar and talking animately. A player is playing the fiddle, and the barmen are serving beer to the customers. "} +{"id": "4001792", "video_name": "c22f1612-bea8-5b9e-a5a5-5fd71ca44515", "text": "dragon breathing fire on a village while flying, 16:9 "} +{"id": "4001793", "video_name": "de5483ef-3a54-55b5-8834-c2363f65d88e", "text": "realistic cinema video of beautiful hot girls dancing on card tables inside a casino, photorealistic "} +{"id": "4001794", "video_name": "dd467173-0151-50d3-bbf1-b5e7de1b2049", "text": "A man went out to pray the evening prayer with the people "} +{"id": "4001795", "video_name": "f37ee7a9-b337-5c05-8781-7fe581d66752", "text": "becoming a multi millionaire but there are no one in the world "} +{"id": "4001796", "video_name": "ab4c0f14-918d-52cd-9fbd-138cd0d70ecd", "text": "he noon time, beside of mongo garden playing to take dolls, for exchange loving "} +{"id": "4001797", "video_name": "8f73e5a5-9e4d-5e96-aa54-109850a853fa", "text": "90s burger king ad, kids club, cartoon "} +{"id": "4001798", "video_name": "d276fd48-4d91-5621-a689-8c25fa184ce0", "text": "a astronote girl is very happy "} +{"id": "4001799", "video_name": "bd90d493-2e54-572a-a385-a81213521dc5", "text": "ghost shilouets moving forward in a hallway "} +{"id": "4001800", "video_name": "8bb7cdc0-48be-51fb-baca-2fd6271fbc3b", "text": "atoms with glowing rings of plasma "} +{"id": "4001801", "video_name": "41c95781-b100-5873-9d70-8c8325b0cf78", "text": "Louis XVI riding a horse in the 1700s "} +{"id": "4001802", "video_name": "a730286a-f4a9-58ec-b81d-aa9ccfe60f10", "text": "The movement of charged particles in the human brain during information processing "} +{"id": "4001803", "video_name": "fce156cf-e45e-512c-bf7e-3283b0e2f409", "text": "a ghost floating in a bedroom, cinematic "} +{"id": "4001804", "video_name": "c2ec1c94-aa23-5944-ba6b-ccbd275fc289", "text": "man using hack device to open rusty bulky door, ornamented, over the shoulder shot, concrete, dvd screengrab, moody, 1984 film, Matrix "} +{"id": "4001805", "video_name": "88d334dc-f5b9-5bd3-8b42-12123b9a39be", "text": "make a starburst and make the girl move. "} +{"id": "4001806", "video_name": "c03e6879-8e2b-5cb2-ba3b-cb6f996f7a2e", "text": "practice gratitude, count your blessings and focus on what you have rather than what you lack "} +{"id": "4001807", "video_name": "5a1f4a08-64e4-5aa4-9e18-8176b66c6234", "text": "A quaint, picturesque village nestled between hills and woods. Rain gently falls, creating a cozy atmosphere as Emma sets out for the library. "} +{"id": "4001808", "video_name": "8e376d89-87b4-5a8c-b706-d0fd167b8a70", "text": "man throws his hat on the ground, concrete background "} +{"id": "4001809", "video_name": "c04505cd-24cd-5a4b-9a4a-320142753f3b", "text": "cinematic film of a beautiful female fighter performs a beautiful move with one sword in a beautiful forest "} +{"id": "4001810", "video_name": "a2172a13-4a16-5bf9-bcba-04bfa6dd44cb", "text": "a person wrapped in foil running down a street "} +{"id": "4001811", "video_name": "54538854-f278-5252-9ac1-fa1b47f54268", "text": "create a wall of some old civilivation of india "} +{"id": "4001812", "video_name": "f3a9657f-8374-59bd-a7f4-3bc7d5e17d87", "text": "starry night with shooting star, comet passing in front of the screen, realistic "} +{"id": "4001813", "video_name": "6081598d-a908-5cdb-bcf9-e6498fa910e4", "text": "Write a letter to God expressing your gratitude for the blessings you have received in your life and share how you plan to be a channel of abundance and generosity in the world. "} +{"id": "4001814", "video_name": "fde5ca7c-1211-5e77-a7fc-57a90c0c3db0", "text": "a man hiding burnt cigarettes inside of mashed potatoes "} +{"id": "4001815", "video_name": "77f9ddb5-b709-5251-88e9-f7a93d1b2790", "text": "Camera Angle: Wide shot of the haveli at sunset, with Vikram looking at it one last time. "} +{"id": "4001816", "video_name": "7111e846-35eb-5d05-8848-2203aa92b11d", "text": "billboard on Vilnius Gediminas Castle Message: Use Azure OpenAI! (Font: MODERN) "} +{"id": "4001817", "video_name": "d1e1c650-3731-5f1e-bb41-52418310310a", "text": "Shawn mendes long beard playing with kids "} +{"id": "4001818", "video_name": "f92af305-b01f-5168-992a-ac27a5c9f8d0", "text": "Planet Venus against the backdrop of space "} +{"id": "4001819", "video_name": "ab03b60d-91bb-5e4d-8526-4f9fc14a419d", "text": "realistic silhouette of a driving car with its headlights on in the fog "} +{"id": "4001820", "video_name": "660c9812-ce16-5756-bba3-b5e8fac62622", "text": "The Guiguzi Descending the Mountain painting should be made to come alive. "} +{"id": "4001821", "video_name": "2bec368b-9b1a-50a6-925c-fc1980257670", "text": "create s short, simple explanatory video for a patient explaining what is lung cancer "} +{"id": "4001822", "video_name": "a50c3274-7a25-5d43-aac9-4d229c057b8a", "text": "Oliver perched on a sturdy branch, with beams of sunlight breaking through the leaves, casting a wise and reassuring presence. "} +{"id": "4001823", "video_name": "db0d38c4-1b3a-5c66-b3f6-e9d746eb1dad", "text": "a cinematic of a couple dancing a ballad that is in a dark futuristic empty theater "} +{"id": "4001824", "video_name": "c950b48a-9324-56d7-8485-b0285d4ff2b3", "text": "goddess sitting on lotus flower smiling holding lotus blossom "} +{"id": "4001825", "video_name": "5d784696-1fee-553b-86f3-f1cdf47a70f3", "text": "Breakfast: Quinoa and berry breakfast bowl "} +{"id": "4001826", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "galaxy, stars, realistic, zoom out Message: sub y like (Font: MODERN) "} +{"id": "4001827", "video_name": "852d6434-a2c1-5b59-a53c-2cca35622878", "text": "Charlie Manson dancing in a town "} +{"id": "4001828", "video_name": "333f07f2-3320-5e8b-9a92-b578c2cf289f", "text": "A young and beautiful girl is stepping into an old abandoned theater. The entrance to the theater was overgrown with weeds, and the shabby signs swayed in the wind. Realism, realism "} +{"id": "4001829", "video_name": "de364ab6-776e-55b5-8605-a0184e5786af", "text": "the doors of an elevator opening and the interior in chroma, pixar style "} +{"id": "4001830", "video_name": "b3472b92-59b7-5158-bb87-9b8716c91c11", "text": "create a Sri Lankan Farmer with a head dress up with cloth "} +{"id": "4001831", "video_name": "d437b036-75ab-54a3-93be-c0e08cfed168", "text": "Keep the picture in 2D and move simply"} +{"id": "4001832", "video_name": "dc4b2a06-30c6-5217-887d-7eba20a32f6f", "text": "A archer style drawing of a man in world war 2 "} +{"id": "4001833", "video_name": "0d114184-a53d-5622-94da-753adee00abb", "text": "happy happy happy, cinematic, 4k, arthouse "} +{"id": "4001834", "video_name": "77822353-cfb7-5e15-a3d0-e55044213dd2", "text": "blue eyes white fenrir running among the clouds and jumping into the camera view smiling "} +{"id": "4001835", "video_name": "cfb8af41-90a0-5202-bfff-bb1d1b588ff2", "text": "fashion lookbook store clothes model walking street "} +{"id": "4001836", "video_name": "124192ed-206c-5fc8-aa80-f3367dc9e27f", "text": "Once upon a time, in a cozy little cottage nestled in the heart of the Enchanted Forest, lived two inseparable friends \u2013 Sparkle, a curious young fairy with sparkling wings, and Whiskers, an adventurous little field mouse with a twitchy nose. "} +{"id": "4001837", "video_name": "192422f5-ef4f-57a9-8ae8-f1f5cd1351cf", "text": "Cristopher reeves superman driving a motorcycle "} +{"id": "4001838", "video_name": "133f2e03-79bb-562d-81c7-9b9cececeaa2", "text": "Two futuristic fighter jets flying over the night city of New York, oil painting, bright lights and shadows "} +{"id": "4001839", "video_name": "5d93d64b-b9d8-509b-988d-35e7f2eca34c", "text": "Under a big hill lived many tigers who were always fighting among themselves "} +{"id": "4001840", "video_name": "e34db4e9-2383-5f71-9e2d-9cb359355e8f", "text": "old ladies dancing in the village misty foggy scary horror film Message: athens (Font: MODERN) "} +{"id": "4001841", "video_name": "871f8517-c87e-546c-83e0-4d960b05d345", "text": "Aerial photography simulation, mohawk landscape, mountains, grassland, river, sunshine, movie market "} +{"id": "4001842", "video_name": "3a60dbf6-3285-57dd-b889-28f9699bbe45", "text": "Mario shaking hands with Arthur Morgan "} +{"id": "4001843", "video_name": "826d3fd5-ae0a-5a1d-82ed-c146566533ce", "text": "In the center of this celestial spectacle, Christ descends with majestic authority, surrounded by legions of warrior angels. His presence radiates power and grace, his figure outlined against the cosmic backdrop. The angels trail behind him, their armor gleaming in the celestial light as they follow their King into battle. "} +{"id": "4001844", "video_name": "6b51730a-886f-5126-af44-190d577f2b8c", "text": "The camera moves inward, creating a rich environment Message: 1 Attachment "} +{"id": "4001845", "video_name": "5e0f1c96-6c04-5f77-812a-d348dffdbed0", "text": "Camera tour around a cell phone Message: IPHONE (Font: MODERN) "} +{"id": "4001846", "video_name": "1bee64cf-8c64-5e9c-8d3d-c2a003fb7416", "text": "Massive Chains hang from the sky in the desert Alfred Stieglitz grainy black and white 1900s "} +{"id": "4001847", "video_name": "4d67dfeb-b603-5d5f-89a9-222277ddb8eb", "text": "dark green plastic bag floating on a light brown background "} +{"id": "4001848", "video_name": "688e9b4a-cb86-5dd4-a077-0243357624be", "text": "a young asian man, sad expression, looks down on a tiny version of himself. Photorealistic, rich colors "} +{"id": "4001849", "video_name": "cb723ba7-2a99-5dad-af39-314c31cfa99d", "text": "Mt. Everest if it were a volcano, people running away in fear "} +{"id": "4001850", "video_name": "74c8e901-eec3-5c11-baa9-1ae58bf81774", "text": "a lone man standing on a street "} +{"id": "4001851", "video_name": "3d30660a-4497-579f-a274-2eb33588a18c", "text": "A Builder Building A House With Bricks "} +{"id": "4001852", "video_name": "0e650b5a-f287-53cd-a2b4-85a94d10a4e1", "text": "north pole with santa claus in his sled Message: 1 Attachment "} +{"id": "4001853", "video_name": "dc6fb47d-efcb-58ec-a519-bf299a1a074f", "text": "fantasy house in beautiful forest where sun light evening "} +{"id": "4001854", "video_name": "6c953da4-3561-5e97-846e-06f3fc091aa0", "text": "hulk Bruce Banner went on a hot summer picnic with his friend Tony Stark. 3d animation "} +{"id": "4001855", "video_name": "b8741ff4-6bdc-56f3-9f18-5b4997e9c0b3", "text": "a picture of the letter LDH with a modern background "} +{"id": "4001856", "video_name": "6d2da906-0a56-5a4e-9d83-d58d270d2cf5", "text": "The machines deploy agents to stop the rebellion. Stage a thrilling chase sequence through a dystopian cityscape, where the protagonist faces off against formidable adversaries, showcasing their growing confidence in the face of danger. "} +{"id": "4001857", "video_name": "3cfc0be5-3f21-53a2-90d6-c4aab80eb709", "text": "Full body photo She\u2019s wearing sunglasses Beautiful woman 25 years old black hair she\u2019s Mexican she\u2019s wearing a black dress she looks so sad holding a red rose sad with her head slightly looking downward her dress is tight fitting to her body she is so beautiful she has red lipstick on it is night time "} +{"id": "4001858", "video_name": "4d230a29-95b1-59f4-98ce-d126ab798a1d", "text": "oranges bouncing in the water, branch moving up and down in the wind "} +{"id": "4001859", "video_name": "1f9dd61c-e02f-5788-89a4-6c40395bea36", "text": "a man standing in a window of a building look at the alien space ship coming to the city at night "} +{"id": "4001860", "video_name": "076eda8c-b21c-50bc-9424-bae6e590af0a", "text": "Create a logo with a black background with a white circle and inside statistics arrows pointing up, make it with thick white lines "} +{"id": "4001861", "video_name": "ed4a25c8-90c4-54fd-9e7c-a028b5ff1e24", "text": "a group of men standing next to each other on a field, activity with fight on swords, combat and adventure photography, 17th century dutch attire, stylised military clothes, hellbards, one broadsword, 2 0 0 6 advertising promo shot, broadsword, schutztruppe, brigandine, rammstein, mythpunk, human soldiers "} +{"id": "4001862", "video_name": "58670115-327c-5d93-8abb-d77344db44a5", "text": "a robot walking on the moon, background is a moon base , some rovers "} +{"id": "4001863", "video_name": "8f5986f7-2a5c-5a5a-b9c7-c515d7f0f554", "text": "female hands typing on computer keyboard, passwords disappear on computer display, cinematic, drama "} +{"id": "4001864", "video_name": "5ce41b7b-7851-52d5-9cc0-8d56e8dea2d1", "text": "many people in white clothes in a beautiful forest landscape with a peaceful looking lake "} +{"id": "4001865", "video_name": "65c16ebf-52f7-5ead-a94e-965cc3f81a10", "text": "A little cute girl talking to her mother, cartoon "} +{"id": "4001866", "video_name": "4571d136-b704-5594-b22b-d7a662769742", "text": "Swami Raman, a serene smile on his face, welcomed Rajesh into his ashram. "} +{"id": "4001867", "video_name": "50dfbb61-bc3c-5b0d-8760-f307a9db91b2", "text": "A child preparing for exam at night in cold weather his mother giving a cup of tea child is feeling tired "} +{"id": "4001868", "video_name": "37806b5c-0d6a-5f60-aa61-2efccdd89d7c", "text": "rapper Rapping in front of Janaki Mandir in Janakpur, Nepal "} +{"id": "4001869", "video_name": "7b6d3f49-1bb3-5793-a9c8-4da095b5ab86", "text": "4K rains falling on trees, the river splash against the rock, birds fly off in the distance ar 16:9 "} +{"id": "4001870", "video_name": "adcc87c3-0310-5497-843e-b396ea517d45", "text": "Imagine a piggy bank with ATM for kids written on it "} +{"id": "4001871", "video_name": "4ad37fa4-376d-5a2a-8643-a058b89563e9", "text": "1. Generate an AI video that vividly portrays the wicked sprite, hunched over a bubbling cauldron, crafting the magical mirror with a sinister gleam in his eye. Dark shadows dance around him as he revels in his mischievous creation. "} +{"id": "4001872", "video_name": "b9b2a6b1-4a0f-5318-beeb-fb0333a4b180", "text": "UFO in the sky over Valletta Malta, blurry footage, handheld shaky "} +{"id": "4001873", "video_name": "ec96e68d-e74c-5e95-9870-e34a9a011efd", "text": "Generate an animated scene featuring one skinny dog on a white background. The skinny dog eats another bone. "} +{"id": "4001874", "video_name": "8336c8ff-0765-53e8-a3ff-36d5cb764a74", "text": "driving through the Kentucky mountains in a silver hatchback car "} +{"id": "4001875", "video_name": "77aa5c78-9ebb-5a4f-990c-8d946c260b77", "text": "The lion sees a human sitting on a rock. The human is not afraid of the lion, and he looks up at the animal with curiosity. "} +{"id": "4001876", "video_name": "b1300663-4921-57aa-babd-bf2ec8737a3e", "text": "two male marketers and one female marketer doing a podcast. They discuss about marketing and branding and who is to blame for good and bad results: the agencies or or the customers? "} +{"id": "4001877", "video_name": "967a3900-736a-5e7a-b879-57fd2c347160", "text": "a cartoon fox carry school bag "} +{"id": "4001878", "video_name": "f241cb9b-8180-5dd8-aeb1-cc9e19a1784b", "text": "the mouse slow run,camera zoom in "} +{"id": "4001879", "video_name": "b7aff659-ec03-555b-a1da-eabbbea51784", "text": "There is a man in a beautiful mountain with natural scenery "} +{"id": "4001880", "video_name": "a5e9d86e-73ec-5391-92f6-b0758618a9e2", "text": "In 2021 I began my exciting journey into the world of software development. "} +{"id": "4001881", "video_name": "c2d3e395-697a-5376-b7b1-995f2589dbc5", "text": "a very violent super nova explosion as seen from the surface of an alien planet, 4k "} +{"id": "4001882", "video_name": "c87110b8-8c8b-530b-8888-61432a40f126", "text": "village people are talking in front of mother father and kids "} +{"id": "4001883", "video_name": "9c3e3028-dff7-5a34-b8f6-0474a82aef0d", "text": "A shadowy figure walking down a dimly lit, deserted street. "} +{"id": "4001884", "video_name": "7b5e6aaa-ab03-5d6f-a0e6-46cd2d607db5", "text": "Pouring hot chocolate in to a mug "} +{"id": "4001885", "video_name": "2aab2d07-be70-5046-a34a-a4eb7e634056", "text": "and orc and a goblin with swords "} +{"id": "4001886", "video_name": "7cb4b5ab-efc5-5c41-bdd6-537c462b19fe", "text": "A wall of alot of giant red eyes looking at the camera, photorealistic, zoom in "} +{"id": "4001887", "video_name": "8dbe023e-597b-588d-8013-bf4d04b4558e", "text": "kids poem characters every scene twinkle twinkle little star disney perfect 3d fantasy 8k "} +{"id": "4001888", "video_name": "24cbe859-4bc8-5ed1-b8fa-6ebc60a3f123", "text": "Rajnikant in a futuristic black Armour, minimalistic, Transformers movie style shot, hyper realistic, highly detailed, slow motion "} +{"id": "4001889", "video_name": "61d19381-b9d5-5fbb-9a07-2d7203579313", "text": "A red car zooms past the other vehicles on the road, leaving a trail of dust behind. "} +{"id": "4001890", "video_name": "0e7c316f-c11b-5fb1-a39c-6bcf8fdd911c", "text": "indie game intro baed on defans and city simultion "} +{"id": "4001891", "video_name": "06574014-42e3-5b6c-8d3e-ffa758729485", "text": "megalith built by ants with ants still building some parts "} +{"id": "4001892", "video_name": "583d17a4-da11-5e23-9841-679ced162731", "text": "super realist horse running across an ethereal plane "} +{"id": "4001893", "video_name": "37a66087-b40c-54d6-bf87-b58520bf2517", "text": "hacker meets an alien and shows his code "} +{"id": "4001894", "video_name": "ca5369a8-1b30-577d-b829-8c47306d0945", "text": "Pretty blond Woman pushes off on her surf board, beginning her street surf. Down the streets of miami "} +{"id": "4001895", "video_name": "d32a7ae6-7d9f-57f4-89cb-9910a118a885", "text": "The dog wore a tiny sign around his neck in the office playground "} +{"id": "4001896", "video_name": "d1e3ba6f-5e50-56c3-8e43-6d297dc39631", "text": "colorful array of sweets arranged in a visually appealing manner. "} +{"id": "4001897", "video_name": "68ab5ffe-4669-5126-b297-8ab12e49471d", "text": "healing system based on the activation of specific energy codes to release emotional and physical blockages that affect our health. The authors argue that these energetic codes can trigger processes of deep healing and personal transformation. "} +{"id": "4001898", "video_name": "a552943e-4a13-56ee-89b9-131483560e0f", "text": "Glowing stars \u2b50\ufe0f in the universe Message: Rocket (Font: MODERN) "} +{"id": "4001899", "video_name": "53572dfc-852f-53e2-b489-86d4a557a66e", "text": "now transformed into a living testament of filial devotion, "} +{"id": "4001900", "video_name": "817a2ad6-11bd-5d6e-9714-1f7f8942bca7", "text": "giraffe in red light club, fast parallax "} +{"id": "4001901", "video_name": "f066a9b1-d5a0-51bf-ab80-330ef07367f9", "text": "A piano on cozy dining room of a 1970s house in Medellin, where sunlight streams through a window on a beautiful spring morning. ar 16:9 "} +{"id": "4001902", "video_name": "a91d6fa4-8363-55bb-af47-fd04280367d3", "text": "long wide angle portrait of young boy, representing hope and resistance, is poised and is throwing a small stone rock in the direction of a large, imposing tank, miltary vehicle symbolizing oppression. The image should be powerful yet not violent, leaning on metaphor and resilience rather than conflict. Please incorporate olive branches or the Palestinian flag to underscore themes of peace and sovereignty. The overall tone should convey a message of peaceful protest, the strength of the human spirit, and the desire for freedom, do ho suh, Peter zumthor, lightweight, intricate, sensitive, hyper realistic, hyper detailed, 8k, "} +{"id": "4001903", "video_name": "6cdc65a3-ec79-5b13-be42-2eb4cfe71288", "text": "Glamorous Valhalla Interior Design in High View "} +{"id": "4001904", "video_name": "ae97090a-2ce9-5922-bd06-4a513ef36e3f", "text": "animate this fish like swimming Message: 1 Attachment "} +{"id": "4001905", "video_name": "6f0c6cdb-d806-55be-a7f1-6db31f1c168b", "text": "an all black wolf creature, with blue eyes, standing in the backyard while it\u2019s raining at night, live action cinematic, 8k, drone angle, dramatic lighting, ray tracing, highly detailed, shimmering, photo realistic, ambient occlusion, diffraction grading, tone mapping, volumetric, cinematic lighting, blue tone filter "} +{"id": "4001906", "video_name": "792f7c96-3e31-5b65-bcd6-4cce2deba3a2", "text": "command actress going to audition and get rejected. "} +{"id": "4001907", "video_name": "e6bc515d-69f9-59ec-b7ee-9205a2eabc85", "text": "Design a convex disc with an elaborate mandala pattern formed by interconnected flower designs, radiating symmetry and beauty. "} +{"id": "4001908", "video_name": "738fae6a-a5bc-51b9-b954-419a5e52774a", "text": "a boy walking in perfect weather "} +{"id": "4001909", "video_name": "5eaee3fd-c75d-5bd0-bafd-21fb50e2bad3", "text": "steam coming out top left of image "} +{"id": "4001910", "video_name": "e5354959-cf08-5c49-a694-da4a8fb5da95", "text": "According to artificial intelligence, a child was damaged in the war and is crying and looking for his mother "} +{"id": "4001911", "video_name": "75a89293-90ba-5592-9a13-9c01d1ac0ecf", "text": "a person running in jungle trying to escape from police "} +{"id": "4001912", "video_name": "f12493db-617e-506c-80e1-06bc94b24bf4", "text": "Donald Trump and Joe Biden are shown the election results together at a press conference, in which Donald Trump is furious and slamming his desk while Joe Biden is ecstatic about his win "} +{"id": "4001913", "video_name": "ac5df50a-87d3-501c-a382-252a76742dfe", "text": "A futuristic city at sunset, several vehicles flying through the sky, buildings linked by bridges "} +{"id": "4001914", "video_name": "62c437ad-259e-5229-8348-0e66ba2673ea", "text": "design an still image of a rap mixtape album cover, do not use motion, living in the hood, grinding, pursuit of your goals and dreams, inspirational. similar to the album covers that DJ Drama uses "} +{"id": "4001915", "video_name": "bbf7a00e-52ac-5aba-b1fb-d914cdbd90d8", "text": "anthropomorphic TV, happy digital face on the grey screen, friendly, in a living room "} +{"id": "4001916", "video_name": "65003170-6883-582e-8528-b5c67d93a70d", "text": "(dinosaur starting dying because of meteors hit earth around them ) "} +{"id": "4001917", "video_name": "6aaeaee7-f2d4-5013-9593-c2ba42985d56", "text": "Dedicated to the memory of all those affected by the Chechen War. "} +{"id": "4001918", "video_name": "f03fcb24-f097-528d-9bf4-057155797146", "text": "Develop a short horror film where the family investigates the mysterious face haunting their mansion, building tension through atmospheric lighting and suspenseful music. "} +{"id": "4001919", "video_name": "003a1e7b-e4d0-5140-a6fc-7f686ac6f149", "text": "Years ago there lived a very intelligent cat named Neel in the forest. Everyone wanted to gain knowledge from him. All the animals in the forest used to call that cat aunty. Some animals also used to go to study with that cat aunt. "} +{"id": "4001920", "video_name": "93513900-78d0-554c-9baf-d42d9ece0327", "text": "a large circular tower in the middle of a forest, representing natural biophilic architecture "} +{"id": "4001921", "video_name": "10ea95a1-492f-539b-b66b-cec78b1f3c27", "text": "Put the ballot paper in the ballot box "} +{"id": "4001922", "video_name": "d155ec5e-a9ac-55fd-aea4-e407513c2dd7", "text": "A robot running on a treadmill "} +{"id": "4001923", "video_name": "66a66751-190e-5b8b-bf01-1af88f79bac4", "text": "oriental ancient water towns, it is cloudy "} +{"id": "4001924", "video_name": "86762db0-b7e0-5b6a-8e7e-d8bf6d04a90a", "text": "gigantic dragoness moving through city, 2D animation "} +{"id": "4001925", "video_name": "baea4619-abcf-538d-95d8-62be419c4350", "text": "hair swaying in the wind, cinematic, 70mm film, 8k HD "} +{"id": "4001926", "video_name": "24a01363-a0bf-593e-99d6-85c39a2b097f", "text": "old man outside picking up the phone calling police "} +{"id": "4001927", "video_name": "09f6362f-a562-5f86-811b-e9d89a5a237d", "text": "Top view; A person opening a canvas scroll and is about to start a painting "} +{"id": "4001928", "video_name": "5c748587-e3c1-5b2b-b32b-43941f89e950", "text": "ladies walking by a fog filled beach, in the style of dark and dramatic chiaroscuro portraits, sculpted, jessica drossin, patty maher, dark green, black dog, ray collins, symmetrical asymmetry "} +{"id": "4001929", "video_name": "7e529d46-ad79-5af3-ac0f-68a01b6beda4", "text": "cat and bottle of whiskey on the table, old horror film image style, black and white movie with damage "} +{"id": "4001930", "video_name": "34ed69af-05e2-5562-a65b-e0287e153a95", "text": "Doctor Strange confronting his own shadow self in the Astral Dimension, symbolizing his internal battle and growth. "} +{"id": "4001931", "video_name": "8a6bad7d-7b85-5c61-b25c-9e46b55f4f21", "text": "mountain covered with snow camera moving from front to back zoom effect realistic "} +{"id": "4001932", "video_name": "b4c62085-ae5b-521f-9440-65eb48cb2358", "text": "High quality 4k image of Brahma in a Psychedelic journey "} +{"id": "4001933", "video_name": "563afe94-d0ac-509a-b637-f8c5b7457387", "text": "In the USA, BURGER KING dressed up as McDonalds for Halloween. The organizers of the event even took care of the design of the burger boxes. "} +{"id": "4001934", "video_name": "709dc9b4-6694-56ce-958c-c7145f212778", "text": "capturing the mesmerizing dance of golden autumn leaves, swirling and twirling in the crisp breeze. Each delicate leaf showcased with intricate detail, their vibrant hues of crimson and amber creating a breathtaking symphony of warm tones against a backdrop of rich, earthy browns. "} +{"id": "4001935", "video_name": "ee1df1b3-1ab1-5144-a8da-a666272f3714", "text": "a realistic rose growing from the ashes "} +{"id": "4001936", "video_name": "029de404-d0fa-5dab-b6eb-f681efaada74", "text": "a barn door inside a modern house, wide view, 8k hd quality, realistic "} +{"id": "4001937", "video_name": "ed5e725c-dc64-5164-a5c8-801d06aa979a", "text": "A traditional cannon shot from a historic wall of the city of Fez near a mosque on the occasion of Ramadan "} +{"id": "4001938", "video_name": "3611af32-6c9f-5584-a305-7471ab417d0a", "text": ". A boy named morta shaking hands with Luffy from one piece "} +{"id": "4001939", "video_name": "71085183-6ed4-5a5b-a304-6365f4f2a49e", "text": "A Man With A Robot Hands Being Surprised He Has These "} +{"id": "4001940", "video_name": "329f0613-0088-5e31-8ee8-076196f4331f", "text": "Turtles in the forest talk about baby turtle "} +{"id": "4001941", "video_name": "e6989686-c1e0-53dc-b54b-b1349e998b5b", "text": "a fox running through the city in the night "} +{"id": "4001942", "video_name": "697699db-3fe3-54ac-8f4f-e07415725a51", "text": "Lily spends time playing with Pixiebell, a mischievous pixie.\nShe meets Stardust, the gentle unicorn, and they form a bond.\nThe friends share games, stories, and a magical picnic. "} +{"id": "4001943", "video_name": "26487bf8-ee6e-5bef-b8f5-dfbd8ef4d854", "text": "Animation cartoon when you can see a skater chating on his phone "} +{"id": "4001944", "video_name": "5dce5aed-0bfe-53bb-ae51-ff619da324ed", "text": "an illustration of a caring mother embracing her child, aspect ratio 9:16 "} +{"id": "4001945", "video_name": "97ac8ee1-1572-53ff-af11-62fc1f584973", "text": "Explore the mysterious Black Hole Gardens and describe the captivating interplay of light and time within this cosmic spectacle. "} +{"id": "4001946", "video_name": "c7ed56bc-d519-5fbe-a623-cb5111e237fb", "text": "A man with very bright and clear eyes smiled happily, and next to him was a man wearing glasses. Both of them were facing forward. Beautiful Final Fantasy style animation "} +{"id": "4001947", "video_name": "bf8000ff-d4f0-5714-9e9a-4031a2a57113", "text": "Huawei Starflash is far ahead of Starflash technology\uff0cThe Lord Andy Lau is not afraid of running out of wood! Extraordinary master, Andy Lau! "} +{"id": "4001948", "video_name": "a8efdf4a-e062-529f-86f7-e83ef3832ae4", "text": "a parkour jumping robot in a futuristic city "} +{"id": "4001949", "video_name": "2a171dde-0ae1-5e63-9e80-5456d8aa66a6", "text": "Maya and Alex are discussing something "} +{"id": "4001950", "video_name": "4ec9c261-bbf3-5901-826f-a5eaa0fafff4", "text": "A Fast moving Boat with a Man On it in Ocean 16:9 of 60 Seconds "} +{"id": "4001951", "video_name": "963fc01d-c9bc-5a97-83a1-71c6d1435e14", "text": "Whiskers, the adventurous cat, explores the vibrant jungle, captivated by its mysteries.cartoon "} +{"id": "4001952", "video_name": "9086141c-9d58-537b-8e65-dd74a687b03c", "text": "can be translated to \u201cA Chinese woman wearing an evening dress, holding a wine glass "} +{"id": "4001953", "video_name": "8ddbc80d-1cc2-5589-b63a-be28c960080f", "text": "a cartoon micky character smiles while jumping and summershalt with umbrella "} +{"id": "4001954", "video_name": "ed30bbd2-31b5-5376-b94c-d3b1ceb89394", "text": "urab nations map hightlight HAMAS , and ISRAIL separatly "} +{"id": "4001955", "video_name": "a65cccf9-e2ad-5f6a-afa1-55a75a6a6c0f", "text": "flower but the flower pedals are teeth. "} +{"id": "4001956", "video_name": "f136719a-1968-5ab1-909c-460d2c3e6ebd", "text": "cartoon daikoon speaking , with hd8 "} +{"id": "4001957", "video_name": "ee7c485a-504d-5b8d-bf4b-d888c382eb48", "text": "Ford f350 move in the fores "} +{"id": "4001958", "video_name": "f05707af-358a-5beb-aa9c-248dad5c4336", "text": "Lord Ram with bow and arrow clean face and as per old text. "} +{"id": "4001959", "video_name": "775d766d-406c-5d89-823a-82a48adb80ac", "text": "video of an african lady using a phone in her bedroom, the background changes to a library as she swipes "} +{"id": "4001960", "video_name": "a5ae44ec-98ea-5f13-a140-fc7da1c4c0a5", "text": "Founding Fathers of Pakistan: Discuss the contributions of Muhammad Ali Jinnah and Allama Iqbal in the establishment of Pakistan. "} +{"id": "4001961", "video_name": "22ac191c-7bff-5339-8077-3a8967efcc5c", "text": "car driving, wheels moving, background moving, smoke coming out of the exhaust, jumping like a rally car "} +{"id": "4001962", "video_name": "6521d50b-bdc6-5693-b055-99e1aebdc4fc", "text": "hot bob schneider robot playing guitar "} +{"id": "4001963", "video_name": "b50fa881-c03f-598e-9807-8b66e78bf430", "text": "young man with black shorts on deep ocean with thousands of separate and identical green metal doors with inscription. deep ocean floor place. "} +{"id": "4001964", "video_name": "0b903093-460f-51a8-b11e-760b48786003", "text": "retro werewolf movie, 1960\u2019s hammer horror "} +{"id": "4001965", "video_name": "fa5591d9-5fed-5828-bc77-7621ec9bd4ae", "text": "unseen footage from the Mighty Boosh. deep in the jungle, with a tiger man. Directed by christopher nolan "} +{"id": "4001966", "video_name": "f2644f70-9b98-5d3e-83e5-19b22eb2abbf", "text": "real life like tiny pixies on top of a bedroom dresser dancing "} +{"id": "4001967", "video_name": "12eafb20-a2ba-57fb-887f-5a662a9e54ee", "text": "beer will look like in the future with the name Double 7 Message: Double 7 (Font: MODERN) "} +{"id": "4001968", "video_name": "ad7016ad-1b1d-5c54-85bc-a351584003a6", "text": "an alien who went to a club "} +{"id": "4001969", "video_name": "61cf7706-2adb-5114-b17b-f5fbfc706414", "text": "Stepan Bandera is dancing hard on the grave of Vladimir Putin around a bunch of people who are rejoicing at the cemetery, Russian prisoners of war are walking in the background and everyone is eating bacon "} +{"id": "4001970", "video_name": "1d18e3d2-7067-5edf-a942-f07cd7fffe13", "text": "fast internet from a smart phone teal orange "} +{"id": "4001971", "video_name": "1c7a6024-46c4-5564-aa46-d4ff108d8e29", "text": "Sarah and Mark, alone in their new home, exchange glances as they feel an unexplained presence. The camera pans slowly, revealing subtle shadows and ghostly figures lurking in the corners, heightening the atmosphere of unease. "} +{"id": "4001972", "video_name": "bbe5d68c-9ec7-5bf6-8c8f-bbb043a474e4", "text": "shot of the futuristic sci fi spaceship soaring through space, leaving a trail of stardust. Cinematic film style 4k lighting "} +{"id": "4001973", "video_name": "b7c9e173-f04c-5d6e-a645-776ca4dcd36b", "text": "Gunslinger Girl walking through a desert wild west city "} +{"id": "4001974", "video_name": "6f373018-2cb8-5af1-858d-999eb56c789f", "text": "As he rolled through the quiet woods, he encountered woodland creatures who were amazed by his magical glow. Squirrels, rabbits, and even a wise old owl joined Sammy in a winter dance. "} +{"id": "4001975", "video_name": "3db45259-5bd7-54fb-99f8-405352e6ac25", "text": "Investigator examines crime scene Aerial photography with camera zoom "} +{"id": "4001976", "video_name": "0db947aa-a1d7-5650-9b9c-9a9c0634550f", "text": "Create a video of a group of divers exploring a sunken shipwreck surrounded by colorful fish "} +{"id": "4001977", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "transform the photo in the Disney pixar film "} +{"id": "4001978", "video_name": "bbaecce6-7286-58a0-a134-7be25eab9147", "text": "dark cinematic a car moving in speed on bridge with cinematic cyberpunk lighting "} +{"id": "4001979", "video_name": "33c65ed9-cafc-5ed6-b95a-ca4dbb12511a", "text": "A lone viking rows a huge viking boat from above in a storm. It goes in a circle. "} +{"id": "4001980", "video_name": "2463d1c2-df5b-54b7-9fad-fac77f364e12", "text": "a plump 1980s dad cooking burgers on the barbecue, close up shot "} +{"id": "4001981", "video_name": "57ae8bd8-09a5-59ac-a257-413475467450", "text": "the boy enjoying song using headset "} +{"id": "4001982", "video_name": "ada3dc2b-57a0-5079-8aa9-2e564f5fadaa", "text": "a man with combination looking over the door glasse in a laboratory, pandemic scene "} +{"id": "4001983", "video_name": "f628f56b-e7ca-53f0-841c-83c42d60dcf2", "text": "Embrace winter with cozy hats and gloves. "} +{"id": "4001984", "video_name": "05c12127-e6e9-5a3d-a2cc-2e166d1a897d", "text": "Santa Claus in sleigh with gifts, he smiles, windy, sparkles "} +{"id": "4001985", "video_name": "4d3ef6c3-8557-5d4d-b58b-74424ae6eaf0", "text": ":a beautifull parrot is flying and speaking "} +{"id": "4001986", "video_name": "4a172ba3-b892-5ed8-a011-1f8e1a830279", "text": "Pisceans are drawn toward the vast and mysterious abyss: Scene description: Pisces individuals are irresistibly drawn towards the boundless and mysterious abyss. "} +{"id": "4001987", "video_name": "ddd9a282-c247-572c-bdb5-8a69b2071f2f", "text": "A prehistoric forest, with trees and dinosaurs. Realistic scene. "} +{"id": "4001988", "video_name": "18fcd395-5fc1-5572-9dbb-41e8ae1cc0e5", "text": "a man rides in a delorean car on the syntave road "} +{"id": "4001989", "video_name": "11cdd234-f544-5dcd-b961-b814df688f0c", "text": "back view of a man who stand with his motorbike on a very high place and a city in front of him "} +{"id": "4001990", "video_name": "a01e932e-be85-5794-9985-004aba16b2bc", "text": "man in red Devil spandex costume flying over city in the sky "} +{"id": "4001991", "video_name": "e33359d0-b567-59a7-95ac-8748abf65ca6", "text": "A green gorge among the snowy mountains in which hordes of warriors fight in front of the portal that calls for an army for one of the parties "} +{"id": "4001992", "video_name": "128cf19b-1335-5f86-89b3-280f85910010", "text": "A guy who have a lollipop with a pink dog "} +{"id": "4001993", "video_name": "cd4df619-95bb-5d5b-abd1-d2291ef650bd", "text": "british rose garden with flowers blooming and leaves are waving. There is a beautiful vintage table and chairs in the middle of the garden with a beautiful tea set on the table "} +{"id": "4001994", "video_name": "7d16bf60-27ad-502e-91eb-c39e3e768f74", "text": "A cat is feeling lonely to wait its owner in the living room to come back home "} +{"id": "4001995", "video_name": "fac87b8b-4881-552e-8669-4894d06ac69c", "text": "a cat doing a backflip over a mountain "} +{"id": "4001996", "video_name": "fffd0878-b42a-5860-9901-4a8e4f27e744", "text": "a alien cowboy drinking coffee at a cozy coffee shop in neo tokyo "} +{"id": "4001997", "video_name": "09ceed11-e98e-5fc6-8630-240a7d373cf7", "text": "story a guy asking for something to his girlfriend "} +{"id": "4001998", "video_name": "1951a028-2c3d-574d-bdab-d5b1a86d2bae", "text": "sonic the hedgehog surfing on the seasonic the hedgehog surfing on the seasonic the hedgehog surfing on the sea "} +{"id": "4001999", "video_name": "c45fee1a-8225-596f-8691-fe49a215e17d", "text": "Little Red Riding Hood worries about the big bad wolf "} +{"id": "5000000", "video_name": "7f51632a-06da-5252-a9a2-de7d1a33bcbf", "text": "white cats fight with each other on food "} +{"id": "5000001", "video_name": "29d04c25-c398-590a-bb28-6d0bf5276c07", "text": "linguistics PhD students interviewing for a consultant job "} +{"id": "5000002", "video_name": "d33946ca-2317-531c-be86-0746b3a3230b", "text": "Dense forest with perennial trees, cartoon, 16:9 "} +{"id": "5000003", "video_name": "02606728-1c0d-5de2-9d09-4faeaa06ed5f", "text": "a very high mountain, a person jumping on the top very happily and others climbing the mountain with a lot of suffering "} +{"id": "5000004", "video_name": "af10025a-805a-5a23-bd3d-681af544c9e5", "text": ": anime girl dancing, flowy dress,flowy dance like ballet, flowy hair, dancing on water "} +{"id": "5000005", "video_name": "50559254-1428-5801-b05b-b6e26ffad719", "text": "high quality, 8K Ultra HD, 16:9 ratio, high detailed, masterpiece, A digital illustration of anime style, digital anime paintings of her, soft anime tones, Feels like Japanese anime, red sunset, Romanticism, Exotic natural landscapes in the United States, natural landscapes, vast nature, realism, delicacy, mountains, rivers, sky, clouds, details, fantastic, precision, grandeur, beauty, strength, sunlight, light and shadow, reflection of light, multiple perspectives, exotic, luminism, three dimensional effect, enhanced beauty, Feeling like Kyoto Animation, Greg Rutkowski, Artgerm, WLOP, Alphonse Beeple, 3d render, octane render, Isometric, by yukisakura, awesome full color, "} +{"id": "5000006", "video_name": "050f0731-7113-542e-bdd1-43ebf499e12d", "text": "towers crumbeling exploding Message: KYS (Font: MODERN) "} +{"id": "5000007", "video_name": "36fa09cc-e6fd-55bd-b231-a6acefaa213d", "text": "old wooden boat, cinematic view, striking with waves. moving forward, windy and raining "} +{"id": "5000008", "video_name": "f6df59dc-8d01-56ed-b6a3-74f7646ee762", "text": "On a sunny day, three big white geese were swimming in the light green water. One of them was looking up, swimming with ripples and lotus leaves and flowers around, in a cute cartoon style "} +{"id": "5000009", "video_name": "c7479b8f-3b45-593b-b42a-5bdfe4f291cd", "text": "hyperrealistic video of bioluminiscense squids and jelly fishes in an ocean "} +{"id": "5000010", "video_name": "036d8211-260c-554c-8053-76cd8b0b1143", "text": "sunrise on a paradisiac island with palm trees and white sand "} +{"id": "5000011", "video_name": "55369bed-489b-5218-9d1c-e1c1bb3e5c5a", "text": "beach house Message: hotel (Font: MODERN) "} +{"id": "5000012", "video_name": "12d9a761-f264-5788-81a4-8d7009cd1f8c", "text": "Video of astronaut running on the moon "} +{"id": "5000013", "video_name": "ad149b91-04f8-5ded-b2bf-b6d262129e6a", "text": "video of santa clause tired drinking coffee nescafe "} +{"id": "5000014", "video_name": "16226cdd-d090-5dbc-a636-9064e9d1ab21", "text": "Found footage of a man who gets lost in a factory "} +{"id": "5000015", "video_name": "9a87e924-e257-542f-9462-5898f5a7bf01", "text": "TikTok Instagram Social media, Followers, likes, vues share advertising "} +{"id": "5000016", "video_name": "0afe7194-1ad5-55df-8d5c-043194516328", "text": "romantic dinner in Rome where a couple is getting engaged. The scene is set in an elegant outdoor restaurant with a view of the Colosseum. The couple, a man and a woman, are sitting at a beautifully decorated table with candles and flowers. The man is presenting an engagement ring to the woman, and they both have expressions of love and surprise. The background shows the Colosseum illuminated at night, adding to the romantic ambiance. The scene is filled with warmth and happiness, capturing the moment of their engagement "} +{"id": "5000017", "video_name": "12f8c0ad-daf8-52ab-a2c9-68030b4cc835", "text": "A guy walking through a field, sunny day, anime style "} +{"id": "5000018", "video_name": "1c50f37b-0388-5443-93a7-9fbd58b99a9d", "text": "a man wearing a helmet in a steamy sauna falling over "} +{"id": "5000019", "video_name": "b9fd9ce5-e269-542c-adc8-842226d38d30", "text": "psychedlic mandala looping alex grey art loop trippy "} +{"id": "5000020", "video_name": "be396097-7895-5c44-a2e0-93d73411075a", "text": "a girl with a jug walks on the grass "} +{"id": "5000021", "video_name": "b084c997-926b-5db6-9a89-3c781ace2da9", "text": "a knockout model running in the streets of Miami on a blistering hot day, photo real "} +{"id": "5000022", "video_name": "3aaa88e2-fb93-5d8c-b431-2c789dc4a40a", "text": "Times square with cars flying and futurist building "} +{"id": "5000023", "video_name": "3eaa2621-21f7-5439-8b5b-03ad7a93ff69", "text": "Footage of Bud returning to the village, sharing his experiences with the villagers. "} +{"id": "5000024", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "The young person, while sipping the cold beer, stumbled upon a stack of beers, which in turn collided with a car. "} +{"id": "5000025", "video_name": "f8735108-6041-510d-bfd3-9005e96d11e5", "text": "lord shiva in AQUA MAN water body "} +{"id": "5000026", "video_name": "aa60ee1a-bd73-5b60-8c49-9265faee6d01", "text": "in the distance, intestines covered with a cloth on a table "} +{"id": "5000027", "video_name": "5e3169dc-d840-5a14-81a3-bba57a226dfc", "text": "a Christmas version\u2019s nasi lemak while a cute boy is rating "} +{"id": "5000028", "video_name": "948530a8-519c-54fa-ad27-9511f1aac49a", "text": "A gang leader is holding a meeting for the members. There were several bodyguards standing behind, with beautiful women with blonde hair and blue eyes standing beside them. Message: 1 Attachment "} +{"id": "5000029", "video_name": "0be6821d-5137-53c7-b373-7b609dd597f2", "text": "Cartoon Pixar Ankylosaurus, plain background,friendly, smiling, fun, modern, vibrant colors, high contrast ultra detailed "} +{"id": "5000030", "video_name": "d43a4933-c54c-5686-a9a7-f58bad13e08c", "text": "kolkata market openning in morning, shopkeepers discussing among them. "} +{"id": "5000031", "video_name": "2b6442f5-989d-51af-805c-f0f15c103668", "text": "The background of the photo remains bright, and the kitten in the photo is talking with its mouth wide open. "} +{"id": "5000032", "video_name": "30d4f2e1-0a4f-5d0f-a976-a63e51552bd0", "text": "HD video of 10 seconds of creation of universe "} +{"id": "5000033", "video_name": "d2bc6a14-7508-59ad-a392-ec51931df1c1", "text": "couple holding butterfly in hand at the beach "} +{"id": "5000034", "video_name": "2aab2d07-be70-5046-a34a-a4eb7e634056", "text": "and orc and a goblin with swords "} +{"id": "5000035", "video_name": "47108b83-9679-5e0e-b267-0ca00e262dd8", "text": "anime guy doing an ahegao face "} +{"id": "5000036", "video_name": "ecbe188c-e7b9-5e95-9495-d35f3d4e0439", "text": "black ford flex car with white racing decals, driving up a mountain with the iconic El Paso sunset while a small DJI Drone follows from the sky "} +{"id": "5000037", "video_name": "3c46bb5b-56a4-5639-8a91-9cb4b19df735", "text": "an aerial view of an old wooden house found in a far village, a long alley of trees leading to the house "} +{"id": "5000038", "video_name": "d5c82e51-cba8-52d4-b940-211ef2f6a690", "text": "G Man skibidi toilet attack the Titan Tv man. "} +{"id": "5000039", "video_name": "06979c9b-15cd-5d04-aae2-88382b826877", "text": "crocodile Sobek egyptian god playing video games in streaming studio 3d rendering "} +{"id": "5000040", "video_name": "c5e9d193-c979-5495-81df-d7e8e19ff2d1", "text": "rodrigo duterte and manny pacquiao fighting in boxing ring "} +{"id": "5000041", "video_name": "c6998875-425a-5cee-9068-b3165ff38ad0", "text": "a super realistic video for video ads about selling kid bike "} +{"id": "5000042", "video_name": "44b63d6b-5043-52f9-901a-36686de6b5db", "text": "one fox crossing the street in NYC on Christmas Eve. "} +{"id": "5000043", "video_name": "ed2d31c2-e483-5a51-afe8-ece0aa9d84bd", "text": "A Latina woman in hes 20s modeling translucent blue with wood necklace made of epoxy resin. with production quality "} +{"id": "5000044", "video_name": "83a9e87e-2dba-5364-a78d-c6087f5407e1", "text": "samurai standing in front of a white dragon, floating cloud blue can of Pepsi , with a beach background, ,high octane render, HD, hyper intelligent render, extreme render, cinematic shot, golden hour lighting, hyper lapse, drone shot "} +{"id": "5000045", "video_name": "aa130676-d413-580c-b8c2-c61dd22560b0", "text": "aboy walking with stich hold in his right hand "} +{"id": "5000046", "video_name": "a7216525-0566-5117-a7dd-dfa2cdc9e9bc", "text": "a zebra whose stripes are disappearing "} +{"id": "5000047", "video_name": "92a914a7-a2d5-5f38-8f75-35dbf0aca094", "text": "angels ascends to sky, time lapse, zoom out, luminous, cinematic, high quality "} +{"id": "5000048", "video_name": "eebf4557-4160-5677-8d91-346bc4036041", "text": "the temple and sorrunding in flames Message: apocalyptic (Font: MODERN) "} +{"id": "5000049", "video_name": "8ef6e575-fe77-51d4-bd49-3c538f2d80de", "text": "A collage of images, each one depicting a different type of leap of faith. From jumping out of a plane to starting a new career, the variations in style and rendering showcase the diverse ways in which people can take a leap of faith. The details are creatively portrayed, capturing the essence of each experience "} +{"id": "5000050", "video_name": "3c680849-43cb-5994-80e9-fe1d8ab99208", "text": "Beauty of Potala Palace in Snow Mountain Grassland "} +{"id": "5000051", "video_name": "89a1dfae-6f78-5254-a816-bcafa06cc7f8", "text": "lofi under the rain anime sad "} +{"id": "5000052", "video_name": "f805e06e-6037-5bbd-8131-d83fc272c453", "text": "wooden cabin under water, ocean depth, out a quimera with four heads "} +{"id": "5000053", "video_name": "0251d0e9-6663-5017-a247-05bf997ab84e", "text": "flames dance around the ghost rider "} +{"id": "5000054", "video_name": "91772b76-315a-500a-8d30-464f3178cdfc", "text": "batman house with robin kissing alfred "} +{"id": "5000055", "video_name": "8e2aa6a0-2142-5815-8a37-9b47c8536fc3", "text": "young fidel 15 years in prison "} +{"id": "5000056", "video_name": "84118574-6dfd-5cde-950f-0230d8718d0a", "text": "New Zealand is a country with 40 million people and about 70 million sheep. "} +{"id": "5000057", "video_name": "35e00b34-e98e-5547-ab63-bb6759fc7dd2", "text": "She said that the diamond was very delicate and should not be taken out in the air. "} +{"id": "5000058", "video_name": "0576e618-b8d8-5dd9-bf64-756ee2a0a5b7", "text": "In the beginning was the word and the word was with God and the word was God. For God so loved the world that he gave his only begotten son that whosoever beleives on him shall have everlasting life. He set me free, When we all get to heaven what a glorious sight that will be, Washed in the blood of the lamb, Love lifted me. What a friend we have in Jesus "} +{"id": "5000059", "video_name": "5a58c792-8c0b-5691-9ae8-f11f4d53100e", "text": "lader money, slow motion, worst resolution "} +{"id": "5000060", "video_name": "9c11b838-75a7-58ef-8fa6-69eb18c3b43b", "text": "a small angry cat sitting a picture by Anne Stokes, cgsociety, pop surrealism, white background, lovely, deviantart hd, hyper realistic, intricate detail, painting, cartoon "} +{"id": "5000061", "video_name": "44210f98-1311-5774-96ab-996d552a7581", "text": "A beautiful girl siting in a park "} +{"id": "5000062", "video_name": "565db9cb-d8a0-593f-a567-97f5e7d43aa5", "text": "Picture Ella, Oliver, and Maya, adorned in festive attire, holding candy canes like detective magnifying glasses, examining the peppermint stick ink map, ready for their Jingle Bells adventure. "} +{"id": "5000063", "video_name": "a182e934-f172-5a36-bca2-4f547dfac220", "text": "a boy standing infront of a charminar "} +{"id": "5000064", "video_name": "db7840b1-d160-5a18-80d8-35e50655696d", "text": "a video showing a young woman in her 20s aging until her 40s with a routine without mobility and at the end she was stuck in bed with difficulty getting up with back pain "} +{"id": "5000065", "video_name": "b718a52a-db95-55cf-97df-07af11c480a6", "text": "video of a pop music fan girl in her bed listening to her favorite female singer "} +{"id": "5000066", "video_name": "3c511799-6cc1-53e1-92ca-82ca3c29015c", "text": "two young girls walking in the school passage going showing each other school reports "} +{"id": "5000067", "video_name": "ceb4631d-da71-5554-8059-e449f9ac4ae7", "text": "A completly white boeing 737 suddenly pitches down mid flight "} +{"id": "5000068", "video_name": "58af9488-6d62-57d1-970f-67ee6c742505", "text": "divine regal orchestra playing a symphony of death "} +{"id": "5000069", "video_name": "cf9bfd88-5f21-5796-8a1c-3c4e19f2b37b", "text": "The forest was surrounded by bushes and shrubs. 3d cartoon, motion1 "} +{"id": "5000070", "video_name": "39c5ae7c-1158-5f83-b305-a5a8041ca8b0", "text": "snowy flakes in the sky at night "} +{"id": "5000071", "video_name": "91526148-0e36-5423-bcb3-84c1eff98702", "text": "achasing van hiting a bicycle driver . both the man and the bicycle fly on air. cinematic "} +{"id": "5000072", "video_name": "35be3f83-b830-53e8-9fd3-b1ba193679da", "text": "the last airbender with cybernetic implants "} +{"id": "5000073", "video_name": "e4e9038c-33e8-5249-8859-ae755e17d94d", "text": "a cute baby on the beach in the sunlight, with a wide angle cinematic shot in high definition and vivid colors "} +{"id": "5000074", "video_name": "bd9b8349-081d-5728-a7fd-ae8220992a36", "text": "Totoro walking on san francisco golden gate bridge with his umbrella "} +{"id": "5000075", "video_name": "e7e389d5-6c59-583a-ad51-46201ef936f7", "text": "3d animation all small animals running "} +{"id": "5000076", "video_name": "27e6b864-8666-5606-8a8e-aeeaadb78c92", "text": "A surreal landscape full of vibrant colors, with a forest of giant trees with brightly colored leaves, an ocean of brightly colored water and a sky with oddly shaped clouds. In the center of the forest, a large crystal pyramid shines brightly. A person stands in front of the pyramid with his back to the camera. "} +{"id": "5000077", "video_name": "fa2792bc-3381-57bd-b3d2-8bfa3ed14416", "text": "donald trump jumping off the fortnite battle bus "} +{"id": "5000078", "video_name": "c9742a2b-8547-55bd-8e46-1f9e0d6d801f", "text": "An video of a glass rose, accentuated with raindrops falling around, in vibrant tones. "} +{"id": "5000079", "video_name": "795142b8-22e1-5f52-ac3c-6ac468dac7af", "text": "FLYNG birds on the Sky 4k realistic view "} +{"id": "5000080", "video_name": "7d04e4be-ec28-52b7-a9ec-caf100898d09", "text": "write y in the garden with flowers "} +{"id": "5000081", "video_name": "545afc05-7923-5b85-b634-8988955ad2a2", "text": "presence of dwaraka nagar under water with lord krishna "} +{"id": "5000082", "video_name": "57f70422-0805-5e0c-80a8-f5600d478900", "text": "a serene forest landscape with sunlight streaming through the trees with a man in the image "} +{"id": "5000083", "video_name": "6638712b-813c-5930-80b9-cfdb740fec3b", "text": "bright orange fish swimming in space, nebula background, wide angle cinematography "} +{"id": "5000084", "video_name": "25bb8fd2-9351-5870-b975-5fafa916af7d", "text": "Bangaon local train is reaching sealdah station with full of people "} +{"id": "5000085", "video_name": "24d121fe-52ce-57dd-8433-444699b61529", "text": "The scene is 1980x1080, in the middle of the frame an open window frame hangs in the air (with a size of 560x560) with curtains developing from the wind, the sea below the frame and clouds above, it is also all visible through the frame, evening time, waves. "} +{"id": "5000086", "video_name": "e702c1cf-79bc-5286-898f-2dbf89658c0d", "text": "Classic burger on a white background "} +{"id": "5000087", "video_name": "62d0dab2-9d58-52f3-b937-e0bb3e865ab3", "text": "Use fractals and kaleidoscopic effects that repeat and cascade infinitely. Animate parameters over time. "} +{"id": "5000088", "video_name": "c66783a7-227a-5061-93c3-4d6d653dc3e9", "text": "A healthy pepper plant, about two feet tall, flowering abundantly while growing in a fabric pot filled with rich, organic soil. The setting is a modern conservatory with wooden framing. The environment is clean and domestic. "} +{"id": "5000089", "video_name": "1cdfab43-99bb-52e3-9ba4-0948861e8330", "text": ": A group of children is playing in a forest. "} +{"id": "5000090", "video_name": "98bf772b-8b8f-569e-9dc0-3c9088dccb7d", "text": "the prom queen laughing at the nerdy art kid, storybook illustration, line drawing, stylized "} +{"id": "5000091", "video_name": "fd837b73-2a59-5949-addb-106f0ce17267", "text": "A lush, green forest as the backdrop. A wide shot "} +{"id": "5000092", "video_name": "30a46472-23c1-5670-8b66-97d62e338b39", "text": "someone sitting in traffic at night telling you that they are allergic to traffic while sneezing "} +{"id": "5000093", "video_name": "553037bd-9b1a-5fd2-8213-b42360b6979b", "text": "a close up of a boy with purple eyes opening his eyes, anime style "} +{"id": "5000094", "video_name": "1cf56bae-531c-555f-bf9a-230d2c08d0f6", "text": "360 degree turning camera over the mountains "} +{"id": "5000095", "video_name": "b44a412b-2ad2-5f60-a8aa-06d5434ee321", "text": "a forest mountain scene Message: FABTECH (Font: MODERN) "} +{"id": "5000096", "video_name": "c3ed6c84-8877-5bef-8ba1-84a9d0b2dc64", "text": "a apocalyptic scene and klaus schwab dressed as action figure is defending the world againt aliens "} +{"id": "5000097", "video_name": "9a8ad34b-a394-55b3-8d60-5f56c92bb224", "text": "a couple paddling a canoe on a serene lake with a golden retriever "} +{"id": "5000098", "video_name": "504676e7-8c9b-59a1-b8f5-bef2989fe5ed", "text": "spiderman vs batman fight scenes in brigje "} +{"id": "5000099", "video_name": "0e5c5db8-569e-5d09-a8fb-1638b7951cdf", "text": "Superheroes on another planet Message: I love Miroslava (Font: MODERN) "} +{"id": "5000100", "video_name": "3292c255-4889-592e-8e35-93b26cbdff41", "text": "Medium shot, black and white silhouette of a woman playing the grand piano, crimson light intermittently illuminates her, 70mm film, IMAX film, Film Noir "} +{"id": "5000101", "video_name": "c79dd383-433a-599d-acfc-6b7d76745371", "text": "Pet bottle 20 liters water dancing happily in a stream "} +{"id": "5000102", "video_name": "7372c602-0033-5d78-ab77-982c83172af0", "text": "Family gathers outside their house in a fictional city under a volcano "} +{"id": "5000103", "video_name": "14979704-ab58-58dc-820f-5e8e03e9a92f", "text": "abstract crystal clear sea waves that shape a man and a woman in an embrace, wind motion "} +{"id": "5000104", "video_name": "8373e48f-a972-5ae2-8b7b-e6c83b9e764d", "text": "A kid become invisible while using time machine, cinematic shot "} +{"id": "5000105", "video_name": "af666fa1-5e81-51b0-97b6-61e2858e25ce", "text": "DUODUO, a cute pink rabbit, wakes up in its cozy home within the beautiful forest. The animation unfolds as DUODUO begins its day with activities like waking up, brushing teeth, and washing its face. Use lively animations to showcase these daily routines, and emphasize hygiene habits through songs or fun interactions. "} +{"id": "5000106", "video_name": "6f0c3742-ee0f-55fd-98dc-337e0ebc8fd3", "text": "happy family is shopping , disney style, hd "} +{"id": "5000107", "video_name": "ce325a04-34a3-5f95-a186-70602d1de3a7", "text": "skeleton walking through a dark forest "} +{"id": "5000108", "video_name": "c75fe5e1-47f1-56b8-9a5b-824d76e4e87e", "text": "in a bussing office in new york were people are talking in phone, writing on their computer, and more. High quality video, zoomed out "} +{"id": "5000109", "video_name": "b2bc9026-56a6-5d12-9a76-0dc3bc48ed0c", "text": "At a magnificent dinner party, the girl brought a cake to the boy "} +{"id": "5000110", "video_name": "ca04b8ad-6a4d-5bad-85e9-da6561d1e40d", "text": "lived raja and rani in chennai "} +{"id": "5000111", "video_name": "ab04ce57-cc80-5b86-a92f-d3fc84e09283", "text": "Display frantic search scenes with worried family members looking for the child. "} +{"id": "5000112", "video_name": "f1cb8eae-ef95-5a1b-afbe-ad7de0e0a4e0", "text": "a girl is moving towards her home, anime style , fair skin , hair color black, 8k , girl is thinking something while waking twards home neg morphing, morphing face, erratic fluctuation in motion, noisy, bad quality, distorted, poorly drawn, blurry, grainy, low resolution, oversaturated, lack of detail, inconsistent lighting "} +{"id": "5000113", "video_name": "db481b36-e8d9-5df6-85ff-5de8bd1b2fad", "text": "video of a little boy looking out of window at war torn street "} +{"id": "5000114", "video_name": "e0901578-8350-540d-ae19-0f694be718c6", "text": "coastline, ocean wave, wave touching sand the Foam of the wave, crystal clear ocean wave, realistic "} +{"id": "5000115", "video_name": "80b73da5-1e68-5167-8b0e-b5cd34ba662d", "text": "Call of duty character jumping from sky scraper, 4k, fhd, 60 fps "} +{"id": "5000116", "video_name": "d6336b51-8164-5a5a-b515-f8ce617ccc58", "text": "In another world where dinosaurs still exist. A beautiful young woman feeds a small dinosaur in a field of large fruit trees. "} +{"id": "5000117", "video_name": "96ab185a-bb39-5448-a909-90d8b36ed6b0", "text": "A video of an eagle landing and killing a mouse "} +{"id": "5000118", "video_name": "a5cc8c49-7833-5ea1-930c-273b0b5d4a3f", "text": "1970s super 8 golden toned shot of a lush overgrown rose garden overlooking a beautiful chateau "} +{"id": "5000119", "video_name": "6a372969-aa12-5802-a896-07b85e8a2aa7", "text": "a logo showing a zipline with rakaposhi mountain as a background and logo name should be Rakaposhi Zipline "} +{"id": "5000120", "video_name": "e9de40ef-c0c3-5326-ac60-13b5b9b919c4", "text": "an epic crest in the style of the image but in blue and grey colors, also replace the helmet with a gear "} +{"id": "5000121", "video_name": "62927ee2-79ab-5e3f-baa9-0b2bfa009261", "text": "Famous Chuvashian beer holiday, cinematic, 4k, high quality, sun light "} +{"id": "5000122", "video_name": "afcd00ce-71e6-5d1d-bb82-0733408ca45e", "text": "a cute little gliding green frog blinking eyes and seated on a leaf of tree "} +{"id": "5000123", "video_name": "9fde1550-95ab-58c7-b09d-0ee183e71d97", "text": "prompt: a Real Estate Agent selling a mansion putting sold signs in yard "} +{"id": "5000124", "video_name": "5a64c95b-5313-5f5e-9c4c-e4e84152e156", "text": "A man touching a butterfly and it disintegrates and disappears "} +{"id": "5000125", "video_name": "33cfc9ce-ab7e-552c-801a-394cb9eabf58", "text": "a man with headphones standing in times square with his eyes closed "} +{"id": "5000126", "video_name": "6b3f26df-33c9-5e83-ac89-593f976e39d8", "text": "10headed monster avakening in jungle, human figure monster, night seen, cinematic view from above "} +{"id": "5000127", "video_name": "23afc8b6-e782-55a3-a3cb-e9677f58b107", "text": "Chhota Bheem style cartoon hey garden a old man and a 10 years old boy friend sit on table and talking is a very happiness magical day "} +{"id": "5000128", "video_name": "f3f18664-99b3-51f7-940f-6991a7231961", "text": "futuristic beautiful feminine android goddess in a futuristic temple, cinematic "} +{"id": "5000129", "video_name": "5e7b0205-98a0-5a21-9753-9e6bcd05e74d", "text": "The movement of fresh blood in the veins of the neck, which is visible from the skin as a red light from the path of the veins.hyper realistic,cinematic lighting "} +{"id": "5000130", "video_name": "41693d89-cc20-56e9-bf47-663b8abd6682", "text": "a girl talking about crypto news,money and crypto flow on background "} +{"id": "5000131", "video_name": "fe70dc98-b607-532a-982c-6a1d734e77ea", "text": "people dancing at a nightclub and cheering "} +{"id": "5000132", "video_name": "ba5775a5-33c6-5d79-988e-d0313be55452", "text": "rain forest Message: SOBUTILNIK NEVER DIE (Font: MODERN) "} +{"id": "5000133", "video_name": "a97ad600-3541-5db9-971d-1cf1f6685b8c", "text": "a guy who does some fast karate kicks, showing off his extreme flexibility "} +{"id": "5000134", "video_name": "85204d32-8593-5465-84fe-efefd7153448", "text": "A car driving on a highway at night. 1984 movie directed by Steven Spielberg "} +{"id": "5000135", "video_name": "22617e6b-6f91-5c8e-83a8-32a664634835", "text": "a place where u can see all the planets in 4k HD with a beautifuL small tree house and a UK flag on top of it "} +{"id": "5000136", "video_name": "a66c7457-202f-50f1-888e-64d84c4ed5e9", "text": "elf eating chocolate while racing in the car full of manure at night "} +{"id": "5000137", "video_name": "c4c200e8-5d4f-5f9b-9913-b3e49b336ca9", "text": "cat reads a book, falls asleep, distant view "} +{"id": "5000138", "video_name": "76e03ab6-2905-5a97-b4ed-85eaaf92ae03", "text": "One sunny morning, Sammy decided it was time for a grand adventure. He packed a small bag with some acorns, a cozy blanket, and a shiny flashlight, and off he went, his tiny paws rustling through the leaves as he ventured deeper into the jungle. "} +{"id": "5000139", "video_name": "a797da94-ed19-5f56-99a5-cac64c787f47", "text": "EXPERT SYSTEMS IN ARTIFICIAL INTELLIGENCE RULES "} +{"id": "5000140", "video_name": "25d76d01-0bde-5a4a-974d-7d3ca5bb7fee", "text": "A little girl cleaning Home Disney type 2d animation 8k Hd "} +{"id": "5000141", "video_name": "09ea52f9-1f10-56bd-8d6e-fe38af07db6b", "text": "scientists researching things in a laboratory from the 70s "} +{"id": "5000142", "video_name": "9249f373-78c2-5ef8-b3b9-65cd381a251f", "text": "driving a car in the city, apocalyptic style, zombie, cinematic light, high quality "} +{"id": "5000143", "video_name": "47977271-e75f-5ac4-817f-3c19db9bddf6", "text": "Camera from the back. A young woman crossing a bridge through water falls in madrid "} +{"id": "5000144", "video_name": "70ad6b72-cbb5-5ae0-b204-7155863f77d5", "text": ", becoming a beacon of light and wisdom in a world still recovering from the shadows of the past "} +{"id": "5000145", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "Create a 4K video of a 1500s wedding with attire from the era, nighttime exit from the church, European culture, with a full moon covered in honey in the background. "} +{"id": "5000146", "video_name": "130653e2-de69-5fe9-9167-986e4d568d25", "text": "floating eyes that blink and spin "} +{"id": "5000147", "video_name": "ec050fa2-05d3-5e57-896d-0c58809fac88", "text": "4K cinematic scene of Banshi flying on swamp lands "} +{"id": "5000148", "video_name": "6ad25cb8-b37c-54f9-8269-596d6a1ad3cb", "text": "A yellow chicken chick dancing on a farm on a sunny morning. "} +{"id": "5000149", "video_name": "21811b3c-c15a-554e-a5d0-1ab302d20e4b", "text": "mick Taylor from wolf creek sharpens pencil "} +{"id": "5000150", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "make this man talking and moving his head slowly "} +{"id": "5000151", "video_name": "42cdb1bb-5650-5433-b643-ca6f8dd2437b", "text": "The Celestial Gardens, a landscape suspended in the cosmos, where vibrant constellations bloom into radiant flowers, casting a kaleidoscope of colors across the celestial expanse, while gentle stardust showers create a mesmerizing and calming ambiance. "} +{"id": "5000152", "video_name": "d3f401e5-6419-5f97-8f6a-b52e7453c2c8", "text": "A Flying King Penguin Caught On Camera In Antarctica, HD, 60 fps "} +{"id": "5000153", "video_name": "1a5d4664-b158-5522-adc3-1601d50486fb", "text": "cyrstialtion, glass, freezing Message: 1 Attachment "} +{"id": "5000154", "video_name": "89f1ef22-a271-5efb-9e60-3df80ab5f726", "text": "The water in the swimming pool moves Message: 1 Attachment "} +{"id": "5000155", "video_name": "55176093-426a-549d-86e0-9080bad00267", "text": "brutalism,Isometric View,2d,rugged island surrounded by tumultuous waves, with a pirate ship anchored nearby and a bustling dock bustling with activity. The beach is littered with treasure chests and other pirate loot, and a bridge connects the dock to the island. The environment is stormy and ominous, with dark clouds looming overhead and the sound of thunder in the distance. The mood is tense and dangerous, with a sense of adventure and the unknown lurking around every corner. game,map,kingdom rush "} +{"id": "5000156", "video_name": "9bea252c-f54e-5bb6-9b61-11c1ad3382e9", "text": "busy corporate woman working in her office with the sound of busy employees in their cubicles outside of her door while receiving emails on her laptop and her mobile phone buzzing with text messages from her daughter on her desk "} +{"id": "5000157", "video_name": "4895a8c9-298c-5f10-978a-b6216dff431c", "text": "In the sewing workshop, skilled artisans diligently work, their hands skillfully maneuvering needles and threads. The atmosphere is filled with inspiration and a deep love for their craft. "} +{"id": "5000158", "video_name": "3d16d01f-77d0-5cc7-87ff-1ad30b9920e5", "text": "He dreamed that one day he could fly like a bird. "} +{"id": "5000159", "video_name": "2ab080fc-fe48-500b-b169-1bc0173a65b3", "text": "robot with ice cream for a hat, dancing with sun god, jodorowsky, surrealism "} +{"id": "5000160", "video_name": "a4165a9c-8476-5e69-bad1-9021dc725c1b", "text": "close caption of 28 mm Cast Iron Weights falling on the ground "} +{"id": "5000161", "video_name": "1891f7a6-86e5-585c-8d49-465a62b39642", "text": "In this illustrious depiction, we witness the enchanting scene where magic seamlessly becomes a part of human life. The entire city is enveloped in a gentle glow, adorned with vibrant runes that make it seem as though the city itself is a magical masterpiece. "} +{"id": "5000162", "video_name": "7954c9c2-d2e2-58f5-bd54-2df30a1bcfca", "text": "a running dog with smile and cuteness "} +{"id": "5000163", "video_name": "c6e55e35-db9e-5ae5-84db-c8da0d3df52a", "text": "exchanged it with a phone addiction "} +{"id": "5000164", "video_name": "b91a75b4-af30-55ff-b440-9526008587ef", "text": "remembering her own first day many years ago. "} +{"id": "5000165", "video_name": "dc6855be-fdbe-501e-9fac-a562d19f8793", "text": "robo web design weapon mode activated "} +{"id": "5000166", "video_name": "e913311f-7c8d-58d2-8edd-35c5464da0f6", "text": "Generate an image of a busy street in Mumbai with people and vehicles. "} +{"id": "5000167", "video_name": "2c22807e-93dd-58fd-aadc-8402021f4274", "text": "a small child with a visible ai companion "} +{"id": "5000168", "video_name": "c74f4131-c547-54a4-a287-c2ed3bb1ecf5", "text": "a ginger woman in a nice movies set in a meeting happening in a glass wall room "} +{"id": "5000169", "video_name": "24f02c45-e507-574f-8131-2828ac64d64d", "text": "a cartoon lobster swimming acting funny "} +{"id": "5000170", "video_name": "c97c423f-5148-5007-9a83-ec20a9d27795", "text": "human machine cyborg, pastel, Webcore aesthetic "} +{"id": "5000171", "video_name": "8fcc9f59-0c0c-5f5b-afc2-0ad4c67d5da5", "text": "mesmerizing night sky with stars as the monkey gazes at it, contemplating its journey 8k "} +{"id": "5000172", "video_name": "69a9bf09-ec6d-5292-9606-bc4ded019b55", "text": "onam celebration kerala maveli started workout "} +{"id": "5000173", "video_name": "3711b0d2-f063-5380-b521-942a220ee4b3", "text": "Brisk, Zoom in, Dolly Shot, Two guys speaks about mountains "} +{"id": "5000174", "video_name": "d256957a-bd12-5a9b-9d62-1d6774e734de", "text": "hyper realistic gold and silver coins falling to many different pots, cinematic dramatic mystery style "} +{"id": "5000175", "video_name": "d19c99e6-8d66-5560-bd07-8c0c329531cc", "text": "the cat turning it\u2019s head up and down. "} +{"id": "5000176", "video_name": "1304d0a8-acb2-5d28-88d1-17cf10ae281c", "text": "UFO Flying across the milky way "} +{"id": "5000177", "video_name": "e202c37c-191d-5f0f-b0eb-3ecb6c500617", "text": "In a spacious and bright room, a group of people gather together, each seated at tables or comfortable chairs. Everyone holds colorful yarn and knitting tools in their hands. Some individuals are focused on their handwork, while others engage in conversation, sharing their experiences and stories. "} +{"id": "5000178", "video_name": "57a6c1d8-f0cf-539c-9c1f-fdc20046c5cd", "text": "advertising for selling things in the picture to customers on Instagram Message: 1 Attachment "} +{"id": "5000179", "video_name": "f8a7f722-cf7d-55c7-b1da-8627d79d8be4", "text": "a 9 year girl talking to a panda in her bed "} +{"id": "5000180", "video_name": "60c43da9-81e3-5c6d-9c3c-81424d102963", "text": "two giant ants fighting with guns in the\ngrass, worms eye view, very dark sky, cinematic lighting,\ncamera rotation "} +{"id": "5000181", "video_name": "095b6b08-11ec-5fab-9a01-6e6e3793d0a0", "text": "Digital painting, a man walking with a dog, Fallout game atmosphere. Cyberpunk atmosphere, neon light and metallic accents, dynamic scene, bright colors. Detailed oil painting by Sylvain Sarrailh Tohad "} +{"id": "5000182", "video_name": "7413d0a3-80b8-58c6-b7db-feeea24b8478", "text": "man fights alligator monkey 3D cinematic "} +{"id": "5000183", "video_name": "a1d4d627-42a6-59b0-974f-d65473b7b02c", "text": "A glimpse of a terrifying creature lurking in the shadows "} +{"id": "5000184", "video_name": "85ef7e9c-dc38-51e5-b06a-5a518ebb8477", "text": "smoke in the dark Message: DINGZHEN (Font: MODERN) "} +{"id": "5000185", "video_name": "2dab9057-156b-5003-9030-875b1f28ae91", "text": "Numerous military sword wielding ninjas laying down defeated unconcious in red river, night theme . red moon "} +{"id": "5000186", "video_name": "332ae26c-5757-5228-ab43-2caa9ad5cb01", "text": "elsa bulding her fire kingdom using her fire superpower "} +{"id": "5000187", "video_name": "a2022ea7-b4ad-5856-acde-fa8e32429353", "text": "A Xianxia character standing on a sword, soaring through the skies with sword flight. "} +{"id": "5000188", "video_name": "3e8cd990-b4fd-5470-960f-7b40e58f4d28", "text": "In a forest with a large river where there is a lot of diversity of animals Message: Mario (Font: MODERN) "} +{"id": "5000189", "video_name": "442af66e-8935-5234-a082-ace22e94a30f", "text": "Aliens In Gentleman style smoking cigars and playing poker, mysterious background "} +{"id": "5000190", "video_name": "e260821d-46db-5050-ae0b-4b970b3dfb43", "text": "draw a sea and Sun , seagull "} +{"id": "5000191", "video_name": "b3ca1b51-c4ae-52a7-8c98-633b06e2ca75", "text": "A robot sits at a table and talks "} +{"id": "5000192", "video_name": "34adfa8d-0faf-55f6-a2e6-bc5b6dfd87b8", "text": "a glass globe with a with a ying yang symobl words mr kills printed someplace. inside "} +{"id": "5000193", "video_name": "581f70b8-2b61-555e-8144-394c3c233e0b", "text": "Ariel the little mermaid floating dead and partially consumed on the top of the water in an aquarium with piranhas "} +{"id": "5000194", "video_name": "90bc2533-70c3-5548-8bcc-0fd16b9430bb", "text": "load shiva using his third eye as superman eye laser on himalaya "} +{"id": "5000195", "video_name": "ca950081-782f-56ab-b5d8-31b9bf14eea6", "text": "full moon night, spiderman on a roof , watching the moon and stars "} +{"id": "5000196", "video_name": "a758db1c-1f13-58ed-8c8a-c66cff657e6a", "text": "Couple in bed holding little bottle of medicine, 1950s movie style black and white "} +{"id": "5000197", "video_name": "41b903b9-340d-5eed-afbb-95816f9dd1e8", "text": "create animation of this bus moving as shown in the image Message: 1 Attachment "} +{"id": "5000198", "video_name": "2c5cfd75-104a-55e2-a08b-225b566c311e", "text": "field from above, drains and ships Message: 1 Attachment "} +{"id": "5000199", "video_name": "c28093cc-6dc5-5d59-8807-5eba60d210dc", "text": "a dachshund walking in the street and smile "} +{"id": "5000200", "video_name": "83b170ff-89a2-57c4-8cfd-def52dbf87ed", "text": "Closing shot: A panoramic view of the universe "} +{"id": "5000201", "video_name": "bf450be7-2d36-5e14-9862-b5b59d89c013", "text": "image of beautiful green field with flowers "} +{"id": "5000202", "video_name": "74238be3-055a-59a0-b3d6-981c3c89b197", "text": "Camera view of the closed eyes of a boy with blond hair drawn in the style of Disney Studios "} +{"id": "5000203", "video_name": "0d060f03-a749-5cef-b166-bf69c1847e62", "text": "Fully embracing abstraction, the camera lens captures ephemeral moments: ripples in water, the flicker of flames, or the swirling patterns of smoke. The movements are set to a haunting, atonal soundscape, further deepening the enigma. "} +{"id": "5000204", "video_name": "a0a13779-c2d5-5b8b-9f61-64d38ec2d896", "text": "sonic in space on a horse "} +{"id": "5000205", "video_name": "b4a0c2df-919a-5a11-9542-486d724de76f", "text": "Jake sketching quietly in a corner and Emily playing the guitar on stage during a talent show.cinimatic,4k, cartoon style. "} +{"id": "5000206", "video_name": "712a5964-dfd9-5e91-8411-9a6c9cd35ca5", "text": "pirate at sea, moonlight, dark, fighting with an alligator "} +{"id": "5000207", "video_name": "d605165e-b33c-591d-8fe8-5139ae3404ad", "text": "batman flying high speed upper buildings cinematic 3d "} +{"id": "5000208", "video_name": "6c01d679-6555-53a7-a9ad-1ab8f2b84b1e", "text": "Yoshimitsu from Tekken 3 walking through a dark forest "} +{"id": "5000209", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "raining fried chicken while people trying to catch the fried chicken outside "} +{"id": "5000210", "video_name": "8c649786-8ef8-56db-a937-dccc98b4eb54", "text": "A bustling metropolis in Nigeria, vibrant and full of life, with residents of diverse backgrounds engaging in various activities that symbolize peace and unity. A breathtaking mural adorns the background, depicting their shared vision of progress, with vivid colors and intricate details. The cityscape is alive with energy, as people go about their daily lives, showcasing the vibrant culture and spirit of the community "} +{"id": "5000211", "video_name": "775c91d9-bfa6-503f-ad3a-d928fbe3cc73", "text": "beautiful girl in a red dress and long black hair in the dark night under rain "} +{"id": "5000212", "video_name": "2dd074f3-5798-5197-a650-b1654cd274f6", "text": "The Melody Forest: To proceed, they must perform their art (music, dance, poetry) in front of a magical audience, facing their fear of judgment and embracing their unique talents. "} +{"id": "5000213", "video_name": "0047390b-324e-5a2d-b587-c3f4494ad147", "text": "voldamort using phone to pay in cafe "} +{"id": "5000214", "video_name": "297bd37d-6175-5c6e-89cc-da9630b67975", "text": "surrealism horror demon being swallowed up by monster in ground, ultra realistic image, ultra hd "} +{"id": "5000215", "video_name": "0324bd0d-9640-5d48-9df5-547a2fa46b0d", "text": "rabbit faces carved in stone 4k "} +{"id": "5000216", "video_name": "1334c1b4-6a84-573a-a298-c97041e3f22e", "text": "starting gardens, and helping each other. Show a sense of unity growing within the community. "} +{"id": "5000217", "video_name": "a915c308-25c5-556e-bef4-826f49bdf7a6", "text": "A robot that throws a stack of paper from a desk "} +{"id": "5000218", "video_name": "d3cf9436-85f5-5c9d-b733-d7009318a608", "text": "a dog jumping in a field "} +{"id": "5000219", "video_name": "7ba0354b-047a-5811-b887-cd34882fa769", "text": "camera moves underwater. It reveals a vibrant coral reef teeming with life. Fish of various sizes and colors dart in and out of the coral formations, creating a mesmerizing display of colors. The water is clear and inviting, and a school of fish glides gracefully by "} +{"id": "5000220", "video_name": "640ec9d5-a556-57f6-8cf8-09f62b806904", "text": "a boy,Asian,floating in the space, a spaceship beside him,4k,30p "} +{"id": "5000221", "video_name": "e6824f06-24ff-5778-b96f-edc67c661270", "text": "cartoon character walking on the street, absolut reality v.16 "} +{"id": "5000222", "video_name": "e82c7e63-2164-5c8f-ae5d-d4133c717cce", "text": "Sidhu Moosewala is coming on 5911 tractor on the road of Mumbai city,Very nice sharpness and clarity, good lighting, perfect brightness, realistic image, 8k, 16k, 108mp "} +{"id": "5000223", "video_name": "63cc2be1-be79-530f-95f9-db8616bd0dcf", "text": "close up zoom in on beautiful girl crying with mascara dripping in a sea foam green convertible by the beachside, during golden hour, sunset, pastel, los angeles PCH "} +{"id": "5000224", "video_name": "6f6c5268-1468-5204-883b-da6e9567f91b", "text": "The night was thick with tension as the rain poured down, casting a sinister sheen over the dark alleys of Gotham City. The air crackled with an unsettling energy, signaling an imminent clash between two relentless forces: Batman and his eternal nemesis, the Joker. "} +{"id": "5000225", "video_name": "e3b5a057-8b0d-5bc7-b150-3941b6b5632c", "text": "A god in the list of Chinese gods "} +{"id": "5000226", "video_name": "a6109f14-24d5-50cd-a72d-012f9024ade4", "text": "A young woman lies in a hospital bed and looks outside "} +{"id": "5000227", "video_name": "eae659d8-91ce-5fd4-a4ae-f6ba4a5e0abd", "text": "anime fight between gods 1 minute long "} +{"id": "5000228", "video_name": "80e963e9-a819-521f-830e-df720878efc4", "text": "video with a small beautiful girl walking in the forest watching the sky and the stars within and the characters should be 3d "} +{"id": "5000229", "video_name": "0595583b-0123-5c31-be5f-2d7aec1ca4e1", "text": "dense bubbles, Wide Angle slowly close "} +{"id": "5000230", "video_name": "b479a5a4-18d8-565b-940a-8dc4287ecd76", "text": "From the deep depths, it emerged \u2013 a living miasma of purple and muck, its form heaving and glistening with a slime that appeared toxic in its vividness, monstrous in every sense of the word. "} +{"id": "5000231", "video_name": "c2dede13-d260-5935-88d3-825c57bf4c23", "text": "people walk along the sandy shore and seagulls fly "} +{"id": "5000232", "video_name": "2f6df925-72c7-581a-ba16-cb0ed32e8074", "text": "Adventurer pointing with his hand at the stone ahead in the cave "} +{"id": "5000233", "video_name": "7c7ce418-2be2-57d8-a912-f29d49297c63", "text": "coffee is poured on the ground "} +{"id": "5000234", "video_name": "2e12be98-bd5d-5d31-b7ba-606b180c0c28", "text": "A wide frame from above, the camera moving closer to the city of Beirut "} +{"id": "5000235", "video_name": "59eadac0-e565-5df2-9b89-122b2b30d8db", "text": "camera zoom in and pan up In a magical forest at the edge of time, a charming cottage. 24 Fps "} +{"id": "5000236", "video_name": "9c0ac3b2-46dd-5f3a-92a7-74216b3cee96", "text": "Flowers Message: Luisa Presidenta (Font: MODERN) "} +{"id": "5000237", "video_name": "22b28906-3684-5ce0-9df8-a5a1e6e46d22", "text": "boy and girl floating in space in 3D "} +{"id": "5000238", "video_name": "53dcd7d0-72ed-5b3d-aad5-39502769172d", "text": "a tiger in a jungle. One day, the tiger ventured out of his cave and went looking for a prey.\n\nSoon, he found a suitable prey and began munching away. As the tiger was enjoying his meal, a tiny bone got stuck in his jaw. He coughed, he tried to use his paws to get the bone out. As much as he tried, it bore no fruit. A tiny bone brought tears in the mighty tiger\u2019s eyes. Also, read The Tiger\u2019s Stripes. "} +{"id": "5000239", "video_name": "d3faa912-36ed-53af-bf15-34cbc1a4d078", "text": "car with big lights in deep sea "} +{"id": "5000240", "video_name": "91eda2e5-726c-5751-ae2b-692efc6d95b1", "text": "Captain Brody of the Starship Nomad. Scifi. "} +{"id": "5000241", "video_name": "f19558eb-a1ed-5b81-b036-9dacc87c43cb", "text": "flying saucers from Mars invade London, laser beams, aliens, war "} +{"id": "5000242", "video_name": "2016ac54-f30d-5d34-80dc-7bc75ea25843", "text": "shower of silver glitter on big white rose bouquet, cinematic "} +{"id": "5000243", "video_name": "51bb86e0-4038-57c9-abf8-0e1ea26a6f80", "text": "cinematic, a girl with pink hair in a subway station looking confused, 4k, high resolution "} +{"id": "5000244", "video_name": "d97d9776-ef13-5b4e-bbda-9da502daa991", "text": "The boys successfully collecting enough seeds. Cartoon "} +{"id": "5000245", "video_name": "d178b757-946f-5395-8ea5-edaffcfe1026", "text": "The boy prepares to go to the airport and packs her bags,Studio ghibli "} +{"id": "5000246", "video_name": "c0e9b2e5-5a0a-5563-8e6e-f7f81c75c964", "text": "john cena fighting jonsey from fortnite "} +{"id": "5000247", "video_name": "16d43139-0fe9-5435-8617-6881410f5393", "text": "krishna riding a white horse through the jungle "} +{"id": "5000248", "video_name": "03f5b364-f4b1-598b-aa83-15ff57b0edd8", "text": "Ixar style animation of maria, jose and baby jesus "} +{"id": "5000249", "video_name": "75975702-858f-5969-a3b2-61fd5cc90dbb", "text": "photograph of a gym wide angle view ,aerobic class in the background Message: 1 Attachment "} +{"id": "5000250", "video_name": "e97e57b1-bb70-5fff-ad05-e2f179c5a2dc", "text": "a man bitten by spider and becomes a spiderman. Then his love story "} +{"id": "5000251", "video_name": "1854418f-4cbc-55fc-b59b-472e22838b10", "text": "man was reachd at home 2d comic charecter animation videos "} +{"id": "5000252", "video_name": "ad3e5b20-0883-5399-9b39-eb6d790a133b", "text": "Orange sunset in a clearing with wind and fireflies "} +{"id": "5000253", "video_name": "f9ea570c-5a32-5935-a928-d074dd413693", "text": "Hisashi Mitsui was walking on the playground with his back to the sunset while shooting a basketball. "} +{"id": "5000254", "video_name": "cc7a3320-0f46-572a-ad10-eb856219942f", "text": "In the modern office, bosses and employees around the world are meeting and discussing work "} +{"id": "5000255", "video_name": "1b5fd0ef-ccfc-5262-aa7d-f80fac169f6f", "text": "a cinematic back view of a female ninja bowing to the opponent. The opponent is blurry. The background is the interior of a beautiful japanese shrine. The hair of the ninja is long and flowing with the wind. The colour scheme is black, white, silver with a hint of blue . The ninja is holding a sword too "} +{"id": "5000256", "video_name": "5f254e50-e7df-554e-8032-fc635bdc838d", "text": "a scared cat hiding under a bushe, rainy day "} +{"id": "5000257", "video_name": "7fef6c9e-eccc-5bd3-b765-8aa123e8d79f", "text": "a female student reading a letter "} +{"id": "5000258", "video_name": "a9b86b4c-d69b-542a-97e6-4e3e838e8bab", "text": "colombian arepa with sausage and cup of hot chocolate "} +{"id": "5000259", "video_name": "c3c0ebb3-1924-564b-aec9-868d4b150e6d", "text": "girl portrait in a shiny dress, her hair flowing, magical snow falls, the lights of a big city live cars flicker motion. "} +{"id": "5000260", "video_name": "c15c755d-ad52-5d62-9155-ee7a8503eda7", "text": "photorealistic, 4k, cinematic, Jesus christ commiting sucide. "} +{"id": "5000261", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "krishna in the mahabharatha battle field cinematic "} +{"id": "5000262", "video_name": "b162b8f6-5491-5c01-9489-ad2cc042b5bf", "text": "Jesus Christ hanging on cross, moves his head, moon shining, rave flying "} +{"id": "5000263", "video_name": "74a24a03-80f2-5ca0-802a-7efdb70cdffd", "text": "jungle background, natural moves of leaves with wind, camera pan left to right, zoom in "} +{"id": "5000264", "video_name": "94c6e01f-a6f5-5fc6-b489-3dce81edb473", "text": "a silver tree walking across the field "} +{"id": "5000265", "video_name": "2f2ac5d8-13bf-5789-a106-fb6f374fe207", "text": "Witness the emergence of a film that defies conventional boundaries, a testament to the harmonious coexistence of human creativity and machine learning brilliance. The result is not just a cinematic creation but a celebration of the limitless possibilities when imagination meets artificial intelligence. "} +{"id": "5000266", "video_name": "8565acc1-f310-5c0f-ab34-f1c47c13db69", "text": "1970s tv infomercial for a kitchen appliance "} +{"id": "5000267", "video_name": "a6d106c1-1627-576d-b3be-facfd22a7c82", "text": "a crowd on the beach running from sea waves "} +{"id": "5000268", "video_name": "d485dcf4-cefc-5263-b6d5-641ef4e4abb5", "text": "rock music scene with the crowd fighting "} +{"id": "5000269", "video_name": "6990c3f9-7336-59d5-a999-96eef4f92ece", "text": "futuristic car in that air flying fast. "} +{"id": "5000270", "video_name": "76b29114-f49d-5b2a-8f0e-3583e4da5a89", "text": "Illustrate each animal emitting their distinct sound. Add a musical touch to these sounds, creating a catchy and memorable tune "} +{"id": "5000271", "video_name": "0bd73058-9536-53da-ac35-0d8877d3225f", "text": "a 3D animated logo named Dverse152 "} +{"id": "5000272", "video_name": "644522e8-fea0-544a-92ff-2ecbc79cab95", "text": "photorealistic, yellow and green colors, 1:1, Donald Duck and Bart Simpson smoking blunt and dance with red frog "} +{"id": "5000273", "video_name": "a1445b52-f450-5866-a9c9-1f5fd2f74884", "text": "A white tiger with wings crosses the mountains. "} +{"id": "5000274", "video_name": "d0eff637-1372-5bc2-b14c-ddfbdabd09e2", "text": "an handsome korean anime man wearing a black magician, "} +{"id": "5000275", "video_name": "0442a70b-97ad-5e97-b3f3-f7cb72995637", "text": "there is a boy who leaves home with some things to search for treasure in a world "} +{"id": "5000276", "video_name": "51bcefc9-2446-5483-be49-0293e7350618", "text": "one hand holds a bottle with a light blue liquid in it, it sprays out a happy and joyful aura "} +{"id": "5000277", "video_name": "2a8e40b3-a329-5e8b-a683-40c7eb268d07", "text": "A spaceship crossing the milkyway, stars, light, fast movement "} +{"id": "5000278", "video_name": "35b7f9bc-8a6d-5942-9230-d7785eea8b2e", "text": "Astronauts fly out of the sealed Cyberpunk capsule, with meteorites flying over the outside "} +{"id": "5000279", "video_name": "c46425cb-2831-55aa-ba3a-049f9a0adffa", "text": "onvert man into a robot, and make the body move from one position to another and convert into a hologram "} +{"id": "5000280", "video_name": "98805f3b-471d-5007-8add-41c9ea2e4f9d", "text": "holiday is coming soon Message: Snowy Forest (Font: MODERN) "} +{"id": "5000281", "video_name": "7895a722-adeb-5d78-a458-fb0ac77a6ed8", "text": "Inner dimensions radiance, an image of man, 16:9 "} +{"id": "5000282", "video_name": "4c539444-2736-54ef-a4ec-533918d7d8a5", "text": "Chubby woman walking. Gym uniform, back view, wearing navy blue bloomers, "} +{"id": "5000283", "video_name": "b418c0f9-5616-505f-9368-6e28a628c223", "text": "young girl is washing clothes in transparent washing machine, we see only water and clothes floating in the air "} +{"id": "5000284", "video_name": "f888f369-6fda-5936-89e2-8fe15c0d2e9c", "text": "head moves the fur does not move "} +{"id": "5000285", "video_name": "b2f43751-93dd-54a1-a93f-c0d8f193671b", "text": "A forrest with tall and green trees surrounded by wild, complemented by a river and a blue sky, realist, 8k "} +{"id": "5000286", "video_name": "c0c492bd-4f20-511a-a475-5e4adf3c42c2", "text": "space program mission, 1970s documentary style "} +{"id": "5000287", "video_name": "055bff5f-7aab-5e71-a25d-2105af3e2ea0", "text": "science blueprint video of sound moving beside head and reach inner ear, animation with no facial features side view "} +{"id": "5000288", "video_name": "8d1529b3-a370-5f31-a535-e2054edb5006", "text": "A mother with a soft and warm impression "} +{"id": "5000289", "video_name": "674de3db-9da9-57ce-a535-14519d8d04fb", "text": "nuclear explosion, masterpiece, movie, dynamic scene, action, hdr, 4k "} +{"id": "5000290", "video_name": "983a5010-da25-58b7-9e8f-ed0ea0f94ad2", "text": "i want a video which contains book liks vedas of hindu dharma "} +{"id": "5000291", "video_name": "57fddf88-09d3-5320-bea0-d919ab75fd34", "text": "The camera pans gently through a dense green forest, huge trees stretching towards the sky, and sunlight creeping through the branches, Lord of the Rings movie style "} +{"id": "5000292", "video_name": "948a3a9d-6810-5782-9338-20a334e0c770", "text": "Big YES by the Universe ! "} +{"id": "5000293", "video_name": "27e4baff-4acb-5bcf-8b01-ebbd64462c3e", "text": "A different Species masquerading as a human being, eyes clearly not right, non terrestrial, unsettling weirdness abound, not many "} +{"id": "5000294", "video_name": "6334dfbf-8465-599d-b6a8-9334db009fd4", "text": "Marilyn Monroe drinking coffee, realistic, vintage, ultra detailed, coffee shop background, cinema, actress, blonde, drinking coffee, sitting, luxury, glamor "} +{"id": "5000295", "video_name": "6c400456-4263-5ff8-a3ee-845e713e7320", "text": "a man who had just done hair transplant operation "} +{"id": "5000296", "video_name": "6ed828e0-d740-59f6-9fd7-8cbbeef5f92d", "text": "A portal with the glowing center animated. Atoms and protons colliding. "} +{"id": "5000297", "video_name": "01bcab7a-ae5c-59e7-894c-c7e6138b2f05", "text": "cinematic shot of a seagull perched on the railing of a sailboat "} +{"id": "5000298", "video_name": "485de1ac-593b-5f77-81fb-0f17224c4afe", "text": "young woman smiling with her girlfriend "} +{"id": "5000299", "video_name": "01b8b994-046f-57c2-b834-c6e4d581d809", "text": "father rasputin in the 14th century preaching in a fortress with a congregant "} +{"id": "5000300", "video_name": "3b12a9fa-c74d-530a-8da1-e07c19962c44", "text": "in the style of a ghibli film, a young man is in a cemetery. he kneels down to place a jar of candy on a grave. "} +{"id": "5000301", "video_name": "5e6e5c31-2760-5366-ba71-c8060e3b119b", "text": "A man standing on the strret with girl wearing black cloths "} +{"id": "5000302", "video_name": "0831a45f-c2d9-5de2-8e0d-25fc740e41ac", "text": "soldier entering a room, weapon raised, ready for action. "} +{"id": "5000303", "video_name": "d9c7c03f-2015-5955-bc31-94c4590f6869", "text": "A man with golden armor swinging his sword with blood on it a high quality animation "} +{"id": "5000304", "video_name": "5641e427-4620-5cc8-b20f-66e8f06f2928", "text": "very crowded demonstration, thousands of Israeli people are demonstrating with Israeli flags and banners. night time Message: meaning (Font: MODERN) "} +{"id": "5000305", "video_name": "7a805ff9-aeb1-50ea-928e-c65b5b84269f", "text": "Peaceful village with charming houses and gardens. "} +{"id": "5000306", "video_name": "ee9308a3-bab0-595e-b599-c4e7413925d9", "text": "a woman walking in a robot suit with a pentagram in her hands, in the style of arnold schoenberg, gothcore, subversive film, restrained serenity "} +{"id": "5000307", "video_name": "3b133aeb-f22c-5580-87a3-ea5f7cffdaaf", "text": "a full body raw video of a pirate in the ship, raining, cinematic "} +{"id": "5000308", "video_name": "dcfee844-7e06-5523-bab2-98f76c43adba", "text": "4k view of amazon forest and river from a drone "} +{"id": "5000309", "video_name": "e8c8a007-2d1b-5001-a2e9-b23fb64edfa2", "text": "A robot is calling a mobile phone, there is a metropolis in the background, bright lights, high detail, high quality, 4k "} +{"id": "5000310", "video_name": "9794f99b-c5dd-5ff7-ac2e-43ae919a573f", "text": "Transition between different story scenes, each deeper into Fairyland "} +{"id": "5000311", "video_name": "bc4bde02-eb6b-523f-891c-457c0237a61a", "text": "a man shouting anime style close up short 8k hd "} +{"id": "5000312", "video_name": "f03441ab-618f-5d08-a882-831d93fa4c4b", "text": "an odalisque in the style of Peter Paul Rubens: make her fair skinned: she is reclining: danae and zeus: ecstasy "} +{"id": "5000313", "video_name": "e2d105bd-79de-5028-a29d-86bdcb4e5de9", "text": "a room with a lot of colorful screens, in the style of playful machines "} +{"id": "5000314", "video_name": "0c714483-7bf0-5854-baf1-9ef98b1e993e", "text": "fairy wings on a colorful baby doll "} +{"id": "5000315", "video_name": "5af6aed3-7c83-5d2b-9ea2-5cfab4e98ad5", "text": "futuristic 2050 online shop for summer dresses , g s 22 , cinematic, camera rotate "} +{"id": "5000316", "video_name": "7377b313-8870-571f-b798-904fd157fcba", "text": "video of the worlds largest waterfall with rainbow colored water "} +{"id": "5000317", "video_name": "f22fbda4-a4ee-5e87-87aa-192009babd71", "text": "George Washington, also known as Enthroned Washington, is a large marble sculpture by Horatio Greenough "} +{"id": "5000318", "video_name": "264f0695-310d-537f-b55f-93b14a14de72", "text": "Charlie Manson in his San Quinton orange jumpsuit doing the Molly Wap for the Lols "} +{"id": "5000319", "video_name": "2e9b1562-7524-5399-8fcd-b8416b30e86c", "text": "cinematic close up shot of someone play poker, Las Vegas "} +{"id": "5000320", "video_name": "e47e9f6a-7cf5-5e36-9e8a-3b1db1c76e5f", "text": "a professional video in 3D animation with 4K resolution, about visual poetry "} +{"id": "5000321", "video_name": "9d8ee257-9a9b-52c2-a25a-3daac77adc66", "text": "Blond shoulder length hair joyful little girl wearing an adorable dress handling shape of the number 1 , cartoon style, well shaded, smooth, pixar "} +{"id": "5000322", "video_name": "9d714bc9-4fe9-5b7c-b98b-282199e2a472", "text": "Introduce a flashback sequence portraying the blissful moments of the deeply in love couple in the mansion. "} +{"id": "5000323", "video_name": "f6fb53f6-fef1-520c-a6b6-29efdd10ecfe", "text": "A Shelf of Colorful Books in a Library: Highlight the vibrant spines of books on a shelf, showcasing the knowledge and adventures they hold. "} +{"id": "5000324", "video_name": "fcc8efed-ec76-58e1-9627-5753cb4a18a2", "text": "a gorilla dancing on a disco wearing a top hat, cyan and purple lights "} +{"id": "5000325", "video_name": "d6fce573-d30b-5459-888d-f67148972208", "text": "Jang man wool from hotel de Luna vs scarlet witch "} +{"id": "5000326", "video_name": "5289c20e-a921-553f-ab28-286627afbd60", "text": "lily Munster as a holy saint "} +{"id": "5000327", "video_name": "df06f4e7-807a-5efe-813b-ad3d449bf8a0", "text": "The mobile phone with 2 pieces of clean clothes on its screen has been performed in a surreal way "} +{"id": "5000328", "video_name": "1d61313c-4ff8-529e-b5cd-2b08e349fade", "text": "animated cartoon of short hair Rosie O\u2019Donnell as the center of attention wanting all the focus "} +{"id": "5000329", "video_name": "d181caf4-d4ef-5097-a1c0-cef17f5c5297", "text": "he only thing we have to fear is fear itself, red panda, extraordinary, photorealism, cinematic lighting, rim lighting, high budget visual fx, ilm, weta digital, imax quality visuals, 16k, Octane Renderer, photorealism, amazing clarity, uplifting, positive, beautiful, moody "} +{"id": "5000330", "video_name": "b9f5a72f-f86c-58fc-be76-f3d6bcf40018", "text": "The boy is riding a horse, and a tiger is chasing after him. "} +{"id": "5000331", "video_name": "6c61b413-54f3-539a-bd66-8336838b0008", "text": "doings that shows of being Filipino "} +{"id": "5000332", "video_name": "d0f98ac8-7c96-519b-889a-e75ccac7b4de", "text": "Pixar theme. A sheep next to a bald man, who looks towards the screen. They are preparing for the battle. We can see a birthday party behind them "} +{"id": "5000333", "video_name": "1cefdc52-1ddc-5cd6-803d-02712b81746f", "text": "angel flying through new york city "} +{"id": "5000334", "video_name": "e260821d-46db-5050-ae0b-4b970b3dfb43", "text": "draw a sea and Sun , seagull "} +{"id": "5000335", "video_name": "be89c553-0c18-5a61-9b69-7fdd7905100b", "text": "a mustang car with firing tyres coming from smoke ,running on a road "} +{"id": "5000336", "video_name": "f8952676-7ef9-5047-a552-0e52f0c8b12f", "text": "Flying dragon, imposing, lots of 4K movement "} +{"id": "5000337", "video_name": "c1a624a2-8543-506a-a773-4966437f951f", "text": "Wide shot of Handsome African American Man with a bald head and beard Named Tino and a beautiful African American Woman Named Nikki lock eyes on a train full of people, sitting across from each other "} +{"id": "5000338", "video_name": "f6070ec9-c1e4-5d96-b16e-f4ac40c5436f", "text": "a man wearing a hazmat suit in front of a mushroom cloud explosion "} +{"id": "5000339", "video_name": "b6c8eadf-92f6-5d09-85bf-03b9fecb8001", "text": "After some time, they arrived before the door of a secret palace, in which stood a shining crown. They had to go through a challenge to reach a master key mysteriously near the door. "} +{"id": "5000340", "video_name": "efd79f72-fc57-5c6c-a8d9-c1367046f247", "text": "the letter A next to an apple "} +{"id": "5000341", "video_name": "432b5057-0873-5f7b-bb65-43f3b3fac468", "text": "a hammas army arriving for fight "} +{"id": "5000342", "video_name": "ac36e81b-0c7b-5cbc-8cee-e26dbc49c878", "text": "coffee turning into a shape of fish "} +{"id": "5000343", "video_name": "4b8d1040-5e2d-5c60-8316-beacc5279531", "text": "I WENT THROUGH THE FIELD AND I FELL INTO THE STREAM "} +{"id": "5000344", "video_name": "b38dda00-e4b4-5ddb-8a62-26b63dd5690b", "text": "mars is converting to blue and green like earth "} +{"id": "5000345", "video_name": "5ae0122f-aaa4-5db4-a191-f1562a9d7ee9", "text": "a painting of a man with a chain around his neck and a woman with a knife in her hand, Alex Horley, hearthstone, concept art, antipodeans "} +{"id": "5000346", "video_name": "7e321900-5f90-59e7-b109-ef6803cc4b35", "text": "Walter White sitting on the iron throne, 4k 16:9 "} +{"id": "5000347", "video_name": "6a234027-07f4-5ff4-b68c-80f0c993f414", "text": "Advertisement for an ophthalmology clinic, a young woman throws away her glasses and becomes happier "} +{"id": "5000348", "video_name": "022938e5-3252-55ff-af05-a31a884e8f3f", "text": "The Quintessential Quintuplets, Miku Nakano, a girl is standing in the park, autumn clothes, yellow foliage "} +{"id": "5000349", "video_name": "f6f65e91-77fa-5958-9612-aaea42c3a575", "text": "bird eye scene Saint Catherine camera move "} +{"id": "5000350", "video_name": "22bee9c7-38fb-5021-8c15-ccbe6af84c93", "text": "face young women wearing a scifi style jumpsuit "} +{"id": "5000351", "video_name": "c5a7b4b7-ec02-560e-9e7c-75c4d8049d6b", "text": "a cute cow type disney walking in the grass, the sun is shining, the birds are singing, a beautiful blue sky, background children playing "} +{"id": "5000352", "video_name": "c7dea37d-9f8c-5d03-8a74-482466aa5c50", "text": "ancient African warrior woman watches herd of buffaloes running on the horizon, dramatic atmosphere, fantasy atmosphere, magic, contemplation, cinematic "} +{"id": "5000353", "video_name": "538f0340-2309-5f90-89d1-7b9579c0a033", "text": "Girls in kebaya: Generate an image showing girls in sparkling shawls, each representing a different element (fire, water, earth, air), their power radiating around them. "} +{"id": "5000354", "video_name": "a73036d1-8cac-53ea-bffa-c4c3ace6206d", "text": "Start with an front view, showing the vast expanse of a clear blue sky. Gradually zoom in "} +{"id": "5000355", "video_name": "2b652590-6439-51e9-97d8-8d6838d19976", "text": "motion background with a solid light red and pink color with subtle hearts floating uniformly "} +{"id": "5000356", "video_name": "fadd6730-9b2b-55e0-a8c4-164df5e89eb5", "text": "McLaren driving down the track in the rain "} +{"id": "5000357", "video_name": "705bef49-d342-51cf-9e67-ab0b56b940a7", "text": "A woman is skiing while eating apples "} +{"id": "5000358", "video_name": "889c5944-18db-5965-8a5d-72afa660397a", "text": "snow valley with romantic couple 16:9 "} +{"id": "5000359", "video_name": "b8420814-742d-5e3a-b169-dfe9f8fb3cab", "text": "Introduce the brave protagonist cautiously entering the jungle, framed by dense foliage. "} +{"id": "5000360", "video_name": "de187080-6393-585d-9a5f-a1088f7021cd", "text": "purple bubble with metal man and a shadow with a purple grim reaper suit filling with a black liquid "} +{"id": "5000361", "video_name": "0fd6c983-620c-5fd4-829d-0d35342e4a81", "text": "A beginner drummer playing the drums in a bedroom "} +{"id": "5000362", "video_name": "7db2db1b-ee34-5f1c-b79b-e499c7bb8593", "text": "Blue haired woman, odd eyes, playing piano. "} +{"id": "5000363", "video_name": "94a386de-adfe-5298-9c7e-95c5075d960f", "text": "pink tropical frog. two eyes. four paws. city. smoke. 4K "} +{"id": "5000364", "video_name": "6f07caee-7681-5734-af7a-ad29a9025d1c", "text": "Mongolians wear Mongolian clothes and walk on the prairie "} +{"id": "5000365", "video_name": "00774360-28f7-5c50-b050-190526eb1fe6", "text": "silhouette of conflict between soldiers, cinematic look, dark "} +{"id": "5000366", "video_name": "5e7d5e2a-c71f-5b76-ae38-674ebe7b7451", "text": "moving hair, eyes slowly blinking, water moving, tree branches swaying slowly "} +{"id": "5000367", "video_name": "65b7df4c-e3be-54ef-9fc9-f2821a9cfc5f", "text": "Ottoman Sultan Yavuz Selim rides a horse fastly "} +{"id": "5000368", "video_name": "7d1a406c-56d9-513c-8918-2879680e87d6", "text": "tongue moving up and down, slow motion, motion 5 "} +{"id": "5000369", "video_name": "a7de4bf1-1327-50b0-afaf-a9a610db29c8", "text": "A lone figure in a spotlight, center stage. The figure is gracefully dancing with expressive movements. The background is dark, emphasizing the spotlight on the individual. Surrounding the figure are subtle visual representations of values (e.g., symbols, words, or abstract representations). "} +{"id": "5000370", "video_name": "79d997e1-9b61-5f2a-97a6-b7cf7ab9219f", "text": "someone losing in poker throwing the table over "} +{"id": "5000371", "video_name": "b60bfc40-b71e-5b74-8d9f-93fe8a7acfc0", "text": "tasty fresh water fishes 16:9 HD "} +{"id": "5000372", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "4 girls chatting happily in canteen "} +{"id": "5000373", "video_name": "45479888-abbf-566d-93a4-9a0f090c9c1c", "text": "Korean actress riding a ducati panigale at night with a boy, heavy rainfall, fast motion "} +{"id": "5000374", "video_name": "885e7adb-8546-524b-81f0-cec8320a8671", "text": "Dress this man up in a ninja costume. Message: 1 Attachment "} +{"id": "5000375", "video_name": "9fe80fa2-3228-5f31-9cb6-b520c0e4f1c1", "text": "tobuscus booking an appointment at a doctor "} +{"id": "5000376", "video_name": "7f6afcf4-5afb-5b4e-9a05-09afd0e27f41", "text": "Warrior bee flying through a field of flowers fast 4k "} +{"id": "5000377", "video_name": "c7088cc3-8289-5b60-8e45-4bf3dadca168", "text": "make me a video about social media services by proffesional "} +{"id": "5000378", "video_name": "815422d7-00e6-5480-b532-c263adfde9d3", "text": "clay cartoon character with wings play around "} +{"id": "5000379", "video_name": "e3aff056-5393-549e-a884-4046c59a97c3", "text": "titan musclare black robot in suit and purple metal lightning core, big old tv head and cannon blasters in arms staying on the city "} +{"id": "5000380", "video_name": "37f0479d-3923-5057-8239-3a04d0b4c3b6", "text": "orchestra and choir play music and sing "} +{"id": "5000381", "video_name": "9ef1d1c2-eaf4-5475-80a4-28411957d876", "text": "Can you help me create a video of Abraham Lincoln explaining the principle of empowerment in Spanish? "} +{"id": "5000382", "video_name": "afcadb12-96c0-5cca-b70c-2d999572a755", "text": "A little girl gets inflated with a pump, gets fatter and flies up. "} +{"id": "5000383", "video_name": "363338a3-8c70-5703-8785-8cf6e5c7a4ed", "text": "duckling falls from the sky into a pile of straw on farm. "} +{"id": "5000384", "video_name": "756a9aca-6b7f-53e3-b7d2-37d5b38014eb", "text": "gigi becali face the warrior of light motion "} +{"id": "5000385", "video_name": "be72bf20-5f60-5e51-a306-07a6c48f0e77", "text": "rotating earth with among meteorits on space with milkyway background very aesthetic hubble nasa picture quality "} +{"id": "5000386", "video_name": "0738d17f-a994-53a3-9e2c-13b302f8f5cb", "text": "Al Noor Wal Ilm Institute written On Beautiful Banner "} +{"id": "5000387", "video_name": "171b2cd9-aa9e-52f4-a906-c0017765065d", "text": "a cinematic cyber girl like the movie blade runner7 "} +{"id": "5000388", "video_name": "98626cdd-8c68-537d-a944-5088bc51e878", "text": "polaroid of a fish flopping flopping around on the shore wearing sunglasses "} +{"id": "5000389", "video_name": "11c34763-6f7a-5d02-b112-6aa04b9b8839", "text": "a hand hold a crystal ball against the sun "} +{"id": "5000390", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "a women in leather jacket running, side view, medium shot, boom down, slow motion "} +{"id": "5000391", "video_name": "ab3cd52e-4845-5547-85a6-2e6a70763664", "text": "piano in a classroom, max pain style, hd "} +{"id": "5000392", "video_name": "0089328b-3dc0-52ef-a7c9-7bf32a3047e1", "text": "The background in the fire is driving a car "} +{"id": "5000393", "video_name": "7242433e-8968-55b3-b065-a2f0ab56751a", "text": "a black and white photo of a hallway, in the style of ambient occlusion render by Zaha Hadid, behance, light and space, vray tracing, volumetric light "} +{"id": "5000394", "video_name": "60bb377c-7fd2-59fd-8449-14b85d0a8d6e", "text": "Chinese ink painting and landscape painting, simple and fairyland "} +{"id": "5000395", "video_name": "4ff0002a-691f-5437-8b6b-20a5ac207435", "text": "Gothic girl dancing between fires , dark night "} +{"id": "5000396", "video_name": "375da46a-f159-5039-8e6a-be0795d48410", "text": "There are boxes in front of me with different occupations on them, and cards on my clothes say my character. "} +{"id": "5000397", "video_name": "58353f81-6020-54cd-abd7-2c8e298ef943", "text": "killer whale feeding on a seal underwater "} +{"id": "5000398", "video_name": "463ff5d4-f04d-578b-bed3-e86143e71704", "text": "infinitely morphing geometric shapes, black and white, looping "} +{"id": "5000399", "video_name": "f40cac43-9fb2-5839-bb01-162bdd08bb6b", "text": "tom travis and mark from blink 182 oldest in first date clipe "} +{"id": "5000400", "video_name": "75fd6260-9e0b-5e79-b04b-779011833205", "text": "create a black car running over a bridge at night and girl standing near the edge of the bridge. girl is sad, warm sodium vapor lamp all over the bridge "} +{"id": "5000401", "video_name": "1d250a33-63dd-585f-bbf5-48bf44010ebc", "text": "a 120 pounds Asian woman is swimming with a turtle at Hawaii. "} +{"id": "5000402", "video_name": "dda29df9-aa05-5d39-afab-ea42a0dcc778", "text": "a cat with green suit and black hat "} +{"id": "5000403", "video_name": "de942ea9-60e1-55c6-a032-4e82bb8744e5", "text": "Netaji Subhash Chandra Bose Message: 1 Attachment "} +{"id": "5000404", "video_name": "16cae205-1543-5040-be5a-95df24bd5404", "text": "massive waves flooding a city at night "} +{"id": "5000405", "video_name": "ad3f1ff0-9231-5b25-ad3c-b2435a38e695", "text": "Pumpkin lanterns and some candles were burning, and the wind was blowing the branches swaying from side to side. "} +{"id": "5000406", "video_name": "0429de92-cc38-5d15-a352-d841fb1827c2", "text": "make a anime opening\n\nCalled traveling accross the time\n\nCharacter origin\nCharacter powers : magic, telepathy\n\nHe is a simple boy\n\n5 sec "} +{"id": "5000407", "video_name": "cd9cd378-189f-5515-8ba1-41649310f8d3", "text": "Iron man fighting with Hulk create 9 minute video "} +{"id": "5000408", "video_name": "5db358b6-f2df-585a-baed-ee2e6c6be213", "text": "power of compounding money us double time by time "} +{"id": "5000409", "video_name": "8c5a8f4e-1116-5bae-9ac0-c0bbcc827820", "text": "Kid story, Disney style 10 year old girl with dark long hair, facing to camera, walking forward in a forest "} +{"id": "5000410", "video_name": "22c03f7d-2def-50cd-bd7f-39ba8d0d25ae", "text": "Planet exploding due to titan humanoid erupting from planets core "} +{"id": "5000411", "video_name": "6b38ea90-3e81-53b1-834c-e7cfc474e5ac", "text": "Sauce dripping\u3001Pulling of cheese Message: 1 Attachment "} +{"id": "5000412", "video_name": "7b16cac8-04e0-5e60-9bb6-1e7c1f5e8821", "text": "1 mom, 1 girl, play, park, photorealistic, 4k, UHD, film, high detailed, Best quality "} +{"id": "5000413", "video_name": "aeb4c87d-77fb-571f-ba2a-4e8625c54906", "text": "Rotate a roulette with a ball and fade out the whole image. "} +{"id": "5000414", "video_name": "32c8b4f4-a1e5-59d9-a907-4398c39f9686", "text": "Generate a video of a man embracing a woman and kissing her lips, panoramic shot, 4K, 16:9, high resolution, preserving details Message: 1 Attachment "} +{"id": "5000415", "video_name": "8b330836-7014-57fe-b55d-0cef071e8b2d", "text": "create a christmas card in movement "} +{"id": "5000416", "video_name": "691844e9-966c-5252-bca5-11af56cea6f7", "text": "People walking in the old Dhaka city with lots of people with wearing lungi "} +{"id": "5000417", "video_name": "45abcccc-20fe-5abe-856a-166bbce104f0", "text": "Messi and LeBron James are training together 4k, GS scale 20 ,seed 1 "} +{"id": "5000418", "video_name": "518ddf45-f1a2-566a-b76e-d120094c129f", "text": "a sunny day in the sky onn an alien planet, an alien eagle follows the bird in flight, Hyperrealistic, 4k, photo realistic. "} +{"id": "5000419", "video_name": "21693d22-265e-507d-8576-bb91c2d3e8b5", "text": "Dynamic images of the epic confrontation, capturing the intensity of the final showdown with rifles and guns. Realistic colorful vibrate "} +{"id": "5000420", "video_name": "08687079-6ae3-561c-9cd0-26a26b3dcad2", "text": "Elfs vs dwarfs war in the mid earth "} +{"id": "5000421", "video_name": "2baa488d-e9f8-5d6c-8df4-58d831da88dc", "text": "A boy said hello In the bus "} +{"id": "5000422", "video_name": "c909ea1c-aed0-5d68-a3ad-3b828d1d6df9", "text": "A sword piecing the chest of a blue sea creature with webbed feet and hands. As the sword slides into its back it pushes a blue beating heart out of its chest. The blue blood drips from the heart onto the monsters now dead body. "} +{"id": "5000423", "video_name": "44193ec7-98aa-5331-884f-accdbe10eb3c", "text": "A girl wearing a bikini and surfing on the sea "} +{"id": "5000424", "video_name": "1e145e43-d6be-5383-b97c-adf6471f9768", "text": "small boat moving between the river, late night scenery, mountains in the distance, moonlight, light smog, angle from above "} +{"id": "5000425", "video_name": "39946157-d8cf-59b9-8d12-dd7f72271a86", "text": "A university with many happy students in black and orange cap and gown Message: FCEA (Font: MODERN) "} +{"id": "5000426", "video_name": "0289b29d-7942-5649-8a93-427ccd7ab3d9", "text": "forest glass geometric shape with plants "} +{"id": "5000427", "video_name": "5d3e57fe-e594-5580-8515-ffe6a3db81cb", "text": "At the birthday party, there were many friends dancing and everyone was singing happily together. "} +{"id": "5000428", "video_name": "8a899c50-581b-5773-95c3-07584f95c4c3", "text": "velvet vixen reads the playboy magazin in LV sunglasses "} +{"id": "5000429", "video_name": "c55c503e-47c9-509a-a883-eb52fb197838", "text": ": a man is smiling, cartoon, 16:9 "} +{"id": "5000430", "video_name": "e62a6379-9038-5c18-aedb-8f30bc37996c", "text": "a hacker breaks into a computer system "} +{"id": "5000431", "video_name": "33c64cff-7728-59b0-93e9-0c2f8f627450", "text": "Ethiopian ancient adventure war movie trailer. "} +{"id": "5000432", "video_name": "f9baeb32-fdd1-53e5-b696-843faf7ab4f4", "text": "combining diverse patterns, colors, and materials to create a distinctive and heterogeneous style. For instance, blending streetwear with classical elements or pairing unique fabric garments with items of entirely different textures represents this kind of styling, background is bright mint color, real, highly detailed "} +{"id": "5000433", "video_name": "5148990f-9c94-5a48-8319-3789a6539369", "text": "a dronve view of the night of the doomsday, high waves in the ocean going up and down motion 4 "} +{"id": "5000434", "video_name": "ea4ad0e5-6102-5ed6-89ad-e3b2c3381ef2", "text": "app for currrency strength meter with multiple colors showing the strength and weakness of currencies "} +{"id": "5000435", "video_name": "6c956a8b-6af5-50a1-b14f-2073f7a34765", "text": "orchid growing from seed from dark dry desert land, trippy, realistic dali art, dark night "} +{"id": "5000436", "video_name": "5c6c6ed0-ea8f-5f73-b4f7-362ed9b02154", "text": "baby seal flies into the sun "} +{"id": "5000437", "video_name": "6223836c-7a9a-5694-a86b-01eb770afaa2", "text": "a depressed man in a dark night looking broke, in a dark street of a big city, sad and lonely, looking hurt and giving up. "} +{"id": "5000438", "video_name": "0a419b58-f369-53b0-9ae3-e3c878e948bd", "text": "Showing the word Crococopter in the water "} +{"id": "5000439", "video_name": "c09798c3-cc2c-5d03-91a3-d8b4015535cd", "text": "Little Star takes its children on a dream journey together "} +{"id": "5000440", "video_name": "3619c4c4-144e-56d1-808a-dd88e5d930c6", "text": "video realista of woman waiting sitting at train station aerial view "} +{"id": "5000441", "video_name": "4ec5eb08-a09c-5d3a-ba7d-556211f2d0d5", "text": "a blue conveyor belt flying through the city streets and then it transforms into a majestic Christmas tree "} +{"id": "5000442", "video_name": "a19f3f14-a1b5-5cec-af95-e89bcf001806", "text": "a cosmic bedroom with blue neon lights, music posters and plants swaying slowly with a meteor shower outside a large window "} +{"id": "5000443", "video_name": "0c64f836-3958-58de-9b39-080d4a2b3f19", "text": "daphne guinness and mick jagger at a party "} +{"id": "5000444", "video_name": "5bf335de-6b6c-54e5-8ff7-a9f62e421537", "text": "Encounter with a Ghostly Presence\n\nThe traveler, intrigued and perhaps frightened, explores further and encounters the lingering spirit of an old traveler trapped at the station. The ghost shares a poignant tale of losing their life in a historical train accident and being abandoned by their love at the station. The emotional connection and the presence of a ghostly shadow on the platform heighten the supernatural element. "} +{"id": "5000445", "video_name": "738fb993-3c0b-549e-b42e-2de662f39aab", "text": "Village wise man , AR 16:9 , 3d animation , 4k "} +{"id": "5000446", "video_name": "bc0ec11b-94b1-5a50-b58a-a51dfdfc0529", "text": "alien waving on a remote island "} +{"id": "5000447", "video_name": "bd6e2682-b0dd-5e44-b0f1-fdcbe64e089b", "text": "A modern house getting striked by a red lightning in a forest "} +{"id": "5000448", "video_name": "cd2ec18f-2206-5c61-8235-f931e1f0d1c7", "text": "Visualize the friends making wishes under the Starlight Tree, each expressing their desires, and the tree shimmering with a magical glow as their wishes were sent into the universe. "} +{"id": "5000449", "video_name": "b72d7218-83b5-5c63-b154-c32999d12858", "text": "A large book with the sun rising from one end and it contains English writing "} +{"id": "5000450", "video_name": "bef83f6e-83d2-5c6b-a3e3-da516b490858", "text": "chicken transformers movie trailer where chickens transform into cars "} +{"id": "5000451", "video_name": "f0d4b44b-94be-530d-a0f3-e4b7f89953ef", "text": "5 puppies running towards their owners "} +{"id": "5000452", "video_name": "f8db01ed-fc71-5d5c-83ae-3aa9ba1e098f", "text": "bracing the construction of the pyramid "} +{"id": "5000453", "video_name": "b243fae2-cbfe-51cd-ae28-2cf49a522664", "text": "The camera shows the bustling city street, with people walking and talking. "} +{"id": "5000454", "video_name": "2fd8b242-4c92-52f9-b056-7847d2b2a195", "text": "He loved sports, had a mischievous streak "} +{"id": "5000455", "video_name": "934953b2-3b02-5e4d-ab39-705c0f4c0839", "text": "sofia coppola movie about a plane crash with cream pastry inside a takeout box "} +{"id": "5000456", "video_name": "612b15ba-ca1b-5eec-b6d3-0185b0726516", "text": "3D cute walking on the street "} +{"id": "5000457", "video_name": "6e0b493c-e47f-5588-adc8-6c7117fecb4f", "text": "A boy is riding a bicycle on the city bridge bridge ,The city bridge is running backwards "} +{"id": "5000458", "video_name": "139a4f71-37be-526a-b317-a871fa787fb2", "text": "The skull sitting in the flowers, the skull raised his hand to say hello, the picture is beautiful "} +{"id": "5000459", "video_name": "9a747963-a80f-5da4-a599-dd278f6355eb", "text": "family coming home at the same time father from work mother and son from the park family hugs for greetings happily "} +{"id": "5000460", "video_name": "ef2d0d71-3601-5b15-9031-0e04f216efa7", "text": "A white cat chasing a tiger. "} +{"id": "5000461", "video_name": "b19f44af-b757-50b6-abfa-7bbc3f00fec5", "text": "sauve spy taking down his targets then promoting a rolex oyster watch "} +{"id": "5000462", "video_name": "df052666-9cbd-5863-a5fd-9e0a41f609bd", "text": "children in the desert in the middle of wars, particles, flames, smoke, hd "} +{"id": "5000463", "video_name": "5477f18a-29f9-525f-9958-f07ddb1e1efb", "text": "A lotus flower in the pond, gently swaying with the breeze, crystal raindrops fall from the lotus leaves "} +{"id": "5000464", "video_name": "169edc3b-b4d6-5255-87db-afe7eca74d14", "text": "kenya woman smiling in a coffee bean farm "} +{"id": "5000465", "video_name": "d7626fdc-04ef-5f47-8aa8-fdfc782c4cb6", "text": "dichromatic color scheme blue and yellow, action hero "} +{"id": "5000466", "video_name": "be04965a-5af2-5cd3-bd8e-e0db5edea85b", "text": "A worshipper meditating and seeking inner strength and courage from Maa Katyayani. "} +{"id": "5000467", "video_name": "cb53140a-1ac4-5512-a988-15b28ffbb3dc", "text": "landscape is the beautiful scenery of mountains, sky, clouds and Taoist temples. Lightning shines brightly from the clouds in a fantasy world "} +{"id": "5000468", "video_name": "951011bf-97ef-5a6c-b655-02b156c58bb5", "text": "A cyborg robot girl on display in a department store, Tokyo Japan "} +{"id": "5000469", "video_name": "3ab6e6af-72eb-5844-8998-d6e279400aa8", "text": "A Chinese beauty, short hair, dimples, happy new year! "} +{"id": "5000470", "video_name": "71a04b5e-a59a-503a-848e-f06eda3ed1c3", "text": "backview of the barefeet of a man, walking on a blue carpet of a party. Cinematic lighting, detailed, macro shot "} +{"id": "5000471", "video_name": "b6b96e4a-999f-5275-b257-5c5603f35d6f", "text": "spinning protons and neutrons .Depth off field, cinematic, 4k UHD "} +{"id": "5000472", "video_name": "5f9e02a8-f214-546f-b5c1-1dd64c28b9be", "text": "A mirror in a room is breaking and splattering "} +{"id": "5000473", "video_name": "feb60fc1-6c07-564b-82ea-a3f011c71bbe", "text": "video of a plush toy deer in Christmas decorations moving across snowy landscape "} +{"id": "5000474", "video_name": "3d4c5eb9-9858-5c40-b81f-ade4fb3a4c0c", "text": "dog riding a horse in small and pink icy village "} +{"id": "5000475", "video_name": "36fbf353-dffe-51ec-8fca-93625546df24", "text": "Imagine a ball of wool, perfectly round and soft to the touch. When allowed to roll gently across a smooth surface, a thin thread unwinds in its wake. The ball spins gracefully, revealing threads that slide behind it like a delicate trail. As the ball advances, the thread unwinds precisely, forming a sinuous line along its path. The wool glides effortlessly, and the yarn unfurls with an ethereal appearance, creating a visually harmonious and relaxing image, as if you were weaving a work of art with each turn. "} +{"id": "5000476", "video_name": "698cdf19-eb72-5cdb-ad24-7aac676f54a6", "text": "a bad day in the sea. "} +{"id": "5000477", "video_name": "28189ba5-07d9-5f99-9c41-79a3404a0c8f", "text": "drowning fish. Photorealistic. Dark atmosphere. Cinematic. "} +{"id": "5000478", "video_name": "df7e3b92-62ec-5d80-80d3-22536d9673ea", "text": "A small bird as an astronaut floating in space, able to see different constellations and stars, with dramatic camera transitions, changes in lighting, like a movie, high resolution, high quality, 4k "} +{"id": "5000479", "video_name": "949025d9-9867-5ea4-8a2a-2605eca3abfe", "text": "createcreateAlbert Einstein is in his office at Princeton University, working on a physics problem. He is interrupted by a knock on the door. It is his assistant, who tells him that a group of students are waiting outside to meet him., Cinematic, 8k, sharp "} +{"id": "5000480", "video_name": "1c50572a-539c-5886-ab32-2dd806be6e05", "text": "a man in a dark red suit with sharp edges and white undershirt laying on a surface covered in rubies, cinematic, fashionable, 16:9 "} +{"id": "5000481", "video_name": "2db8fb10-872e-5be8-b550-79b1a18505db", "text": "man grabs advertise billboard and transfer it into bottle in his hand "} +{"id": "5000482", "video_name": "eb224ad9-dafb-5d4b-8025-1ed67f5d23ac", "text": "Angels are free from illness, laziness, sorrow, pain, fatigue, and solitude. They are constantly engaged in the worship of Allah and do not indulge in any form of disobedience. The Quran mentions that whatever is in the heavens and the earth belongs to Allah, and angels do not show arrogance and are never tired. They glorify Allah day and night, without any fatigue or laziness. "} +{"id": "5000483", "video_name": "adcdca22-94ab-5186-9500-1c888f2c36f7", "text": "Futuristic cars doing a super race in New York, Futuristic "} +{"id": "5000484", "video_name": "d49a2f22-2462-5af9-861a-c39d604af3ae", "text": "art house 1990s fairy cam corder cinematic "} +{"id": "5000485", "video_name": "d010b6cf-60bd-5f00-9145-45b4b22cebb7", "text": "moments in history Message: FLEXXX (Font: COMICS) "} +{"id": "5000486", "video_name": "edd8c89f-28dd-5500-8666-639430b6ee7f", "text": "A tall woman in a long black veil that\u2019s fluttering in the wind standing in a burnt Black Forest shot in a cinematic moody dark style in high detail, ultra realistic, roger deakins cinematography, narrow depth of field, film photography, realistic, moody, high detail, photography, mysterious and morbid "} +{"id": "5000487", "video_name": "26e54424-2787-537a-bdb5-ace2cb94fbe2", "text": "WWE The Rock vs HHH, out side of the ring "} +{"id": "5000488", "video_name": "883cce5c-be3d-5b50-9aea-9b6f902a6a6e", "text": "A flying vehicle going down an aerial highway above a very advanced city, 32k resolution, sharp, captured by phantom high "} +{"id": "5000489", "video_name": "2acfe209-c44f-596b-8eb8-858478cf08b0", "text": "The kids, filled with excitement, made their wishes, and in an instant, the snow globe transported them to a magical winter wonderland. In this world of endless possibilities, the children discovered a talking reindeer, a giggling gingerbread man, and a mischievous group of playful elves. "} +{"id": "5000490", "video_name": "d70006b3-30aa-511a-8809-8280dd4f400b", "text": "scared man running through spooky forest "} +{"id": "5000491", "video_name": "5353db67-d136-51b3-8aad-6057dbc72b35", "text": "bird attack horror movie, dramatic lighting, cinematic camera ar 16:9 motion7 "} +{"id": "5000492", "video_name": "dd41a765-0df6-5a51-99bf-fe3dd90d6bfd", "text": "rapidly moving aeroplane in a science fiction environment "} +{"id": "5000493", "video_name": "6dc7ea11-f2cb-5b43-9dde-1c78fd24dcc0", "text": "realistic photo of close up face of Japanese old man smiling "} +{"id": "5000494", "video_name": "66170b34-ba8c-5043-867a-addef21454cf", "text": "fish to be able to walk on land "} +{"id": "5000495", "video_name": "87637568-3de6-5ddf-889f-be0160907faa", "text": "video of a old man falling at a funny way 9:16 ratio "} +{"id": "5000496", "video_name": "214e92f5-15f1-5929-a44c-8f926fe74cfc", "text": "Imagine a colossal tower under construction, reaching towards the sky. "} +{"id": "5000497", "video_name": "28b8c7df-1d9a-59f9-8000-19497874b7ef", "text": "a cat like a singer, holding the microphone, night, cute, romantic, realistic "} +{"id": "5000498", "video_name": "c03d8716-ed0b-5b53-b085-5b6f7faafed9", "text": "Make a oilpanting of a vikingship saling in the baltic sea "} +{"id": "5000499", "video_name": "db843ce5-e099-5e10-a116-eb719dff99ec", "text": "an open window with sheer curtains facing the ocean, the ocean waves flow inside "} +{"id": "5000500", "video_name": "9e9f2821-d2dc-5770-87c5-12897aef9c6d", "text": "man with afro hair engulfed by power and lightning all Over his body "} +{"id": "5000501", "video_name": "5bba1def-e7b8-51ea-834a-d84c8188a657", "text": "person runnning in red jungle, workout, cardio "} +{"id": "5000502", "video_name": "e4eeb6a3-ca42-58ff-9ee3-30eb1ee830a3", "text": "elon musk, in the space, viewing a planet of chocolate, 9:16, 3d animation "} +{"id": "5000503", "video_name": "39712694-5bb8-57ef-af34-cb0d467345bd", "text": "Outro: A wide shot of the land with endless rainbows in the background. The camera zooms out to show the child and Luna walking away hand in hand. "} +{"id": "5000504", "video_name": "50faccb3-7aa9-51d6-b6c6-0b42d20557ad", "text": "a chicken is giving birth to an egg, 3D Pixar style, cute ar: 16:9 style: cartoon "} +{"id": "5000505", "video_name": "d8d269ed-6012-531d-a81d-5d3955d08148", "text": "On the billboard on the right side of the highway guardrail, on the foggy highway, it looks over the car window that says slow motion on the screen, running car pov "} +{"id": "5000506", "video_name": "a3f0613d-7645-51fb-bce1-4a0b54fee159", "text": "funny cat dance, smile, camera shake "} +{"id": "5000507", "video_name": "59df0eaa-d3da-5d7c-b36b-394a3e8d6c97", "text": "Clouds move in the glass layer of the sky. 16:9 Message: 1 Attachment "} +{"id": "5000508", "video_name": "3e4e4b0c-3bfe-5ae1-be0b-d4f2aadf93c8", "text": "a young woman praying in church, happy face, blonde hair, praying, sun is shining throw the windows, high details, cinematic style, masterpiece, "} +{"id": "5000509", "video_name": "7262abb1-22af-5c0f-8a43-45fab898e730", "text": "A young couple driving a car through the desert. A young couple walking because their car broke down. Finally arriving at an Egyptian zoo. "} +{"id": "5000510", "video_name": "0f474b98-f0a6-5c62-be75-efa7422861ce", "text": "fish, turtles, and seahorses was now divided by misunderstandings and disputes. Determined to restore peace, Samantha th swordfish decided to embark on a mission to unite her fellow underwater friends. "} +{"id": "5000511", "video_name": "ad3a59b4-c835-5e7f-8ef5-af4e4489f217", "text": "He wiggled his nose at the marshmallow bunnies, and they soared through the sky like fluffy clouds "} +{"id": "5000512", "video_name": "9f058339-59f6-5982-b6ac-fadff474e883", "text": "space, colorful splash, stars, incredible beauty of the universe, movement in space "} +{"id": "5000513", "video_name": "ee072eb0-5e01-5671-ba64-cdb699703874", "text": "nintendo 8 bit relaxing rain video "} +{"id": "5000514", "video_name": "c9e2ae50-c162-54ba-82ff-1264abbbc546", "text": "Megumin on the beach wearing swimsuit "} +{"id": "5000515", "video_name": "5f50b8f7-da60-5d1a-b0ea-7e93eafc6881", "text": "Create an engaging introduction to village, sparking curiosity about its unique atmosphere and secrets. "} +{"id": "5000516", "video_name": "34d9230a-aff7-5db0-a418-e2be984c9582", "text": "a replica of ancient human ancestors "} +{"id": "5000517", "video_name": "50d23c75-59a8-5609-b7c2-517f24402b41", "text": "a lot of tears from blue eyes "} +{"id": "5000518", "video_name": "87c9edce-5008-52aa-abfd-61967cfc37c2", "text": "a mountain in the deep forest Message: storyboard (Font: MODERN) "} +{"id": "5000519", "video_name": "e64a364f-cd95-5b38-b515-1cd88b1c7665", "text": "lovely couple siting on a hill and seeing moon night and then kissing each other 15 sec video "} +{"id": "5000520", "video_name": "d267d1b2-aa26-5b58-9194-1383b954b08c", "text": "ink falling into water and swirling around, yellow and green colours "} +{"id": "5000521", "video_name": "d1e084f8-97a1-5a7c-9b9a-de91d51f002f", "text": "Coffee, Christmas elements, Braving the heat, Warm picture "} +{"id": "5000522", "video_name": "ad7cddd0-9e46-517a-a82a-eac59e38e533", "text": "a anime spiderman going around the city "} +{"id": "5000523", "video_name": "3bc110af-78d1-5169-982f-58c3a8efe0a2", "text": "banner that says ZOV changes picture to Mike Tyson video, HD motion "} +{"id": "5000524", "video_name": "6f6ecf4b-0e1e-5981-bc68-6f2c03259b72", "text": "symbolic image of sunlight breaking through the clouds, illuminating the plant and representing the triumph over adversity. "} +{"id": "5000525", "video_name": "91f9341d-3343-54e9-8073-64f03678e5e5", "text": "Cinematic action shot of Pop Music Star Bad Bunny driving a sports car, empty city street environment "} +{"id": "5000526", "video_name": "a1755518-a5c8-5031-9ec7-a5a564af06c7", "text": "run cycle of a cheetah in 3d, cycles render, ray trace, 3000 samples, depth of field, highly detailed "} +{"id": "5000527", "video_name": "b258c21f-c2a9-5753-a4b2-9c10d0d4df42", "text": "Masterpiece,Word Pika made of many people, large crowd shape. Group of people stay in Pika sign formation,nice motion "} +{"id": "5000528", "video_name": "9714b7a0-071e-5ab4-87a3-05feeb2a3c45", "text": "man jumping in cold plunge in the winter, hyperrealistic movie scene "} +{"id": "5000529", "video_name": "4186fd83-cf41-5c51-9ea7-91e6bc2e21a7", "text": "Tractor Square Dancing: Drivers maneuver their tractors with precision, forming patterns and sequences that mimic traditional square dancing moves. "} +{"id": "5000530", "video_name": "91b8f196-a100-5a2e-8a66-d9e987fe9aca", "text": "a piece of reality rising into the universe "} +{"id": "5000531", "video_name": "5c1cc84c-707f-502f-aaf2-c6eb946a11c1", "text": "woman walking out of work place relieved and starting her car "} +{"id": "5000532", "video_name": "7faa7005-d489-5fa6-b572-78151638816a", "text": "A single strange little animated character using tarot cards. scary. mysterious. Weird. "} +{"id": "5000533", "video_name": "e118fa64-9a57-5749-9833-c1cc65611859", "text": "Set in Medieval times, two men fight with long swords on top of a bridge. The bridge is across two mountains high in the air. The sky is dark and there is a lot of lightning. Slow pan over, AR, 16:9 "} +{"id": "5000534", "video_name": "cb94688f-e094-50c5-be20-803258a0e5e7", "text": "woman humanoid slowly dance, in fire scene, slow camera rotation, 4K, 9:16 "} +{"id": "5000535", "video_name": "f8a7f82a-ada3-5049-9f50-7dfee777e4d3", "text": "Dragon in New York, octane render, 4K, 8K "} +{"id": "5000536", "video_name": "eb646527-0f3e-59e1-9569-3046a1447bb1", "text": "Create an image in your mind of a humble home, where Sheikh Challi and his wife reside. In this image, you can see the interior of their modest living space. The walls are adorned with simple, traditional artwork, reflecting their commitment to a humble lifestyle. "} +{"id": "5000537", "video_name": "04641d74-73e8-59b2-a850-623c97bf7b9f", "text": "lo fi ambient a robot studying in a large and futuristic computer, lighs 3d animation cyberpunk futuristic "} +{"id": "5000538", "video_name": "f595fce4-b7fc-5466-a485-dca5578e5e48", "text": "very detailed anime, Sailormoon, eating a burger "} +{"id": "5000539", "video_name": "74668d96-cf44-579d-93c4-2671672ee732", "text": "a purple landscape, night sky with stars, river flowing "} +{"id": "5000540", "video_name": "0da23574-7619-515b-8e7a-f91fa5f31463", "text": "bermuda triangle in a close up view"} +{"id": "5000541", "video_name": "3c2262e9-ae9d-562d-99d4-ea13a8b9e59b", "text": "Uncover the creative process behind the writer or artist who uses this typewriter. What stories or masterpieces are waiting to be born? "} +{"id": "5000542", "video_name": "aa138dac-ffd2-5d69-907d-5200f2096c62", "text": "The selective units of the civilian police were dressed in uniforms that shimmered with bright red, blue and green colors, while some small units wore homespun clothing an. Wind Margaret Mitchell 1861 American cinematography, beautiful composition, dynamic movement, shallow depth of field, subject in focus, filmic, 8k "} +{"id": "5000543", "video_name": "c6a582f4-6d7c-5fa5-831a-a11cdd04f4f5", "text": "A man in a white robe goes to a ship that is in the port, a wooden ship, people are standing near the ship, a view of a man from the back, time of day, 0 A.D. "} +{"id": "5000544", "video_name": "5fdb50e9-9d0d-5404-bcab-060335a954b0", "text": "Roblox players dancing at a concert in backrooms "} +{"id": "5000545", "video_name": "281c3b6e-1dd2-55c3-963d-edc2f94e3951", "text": "Grilled chicken is a source of lean protein, while roasted vegetables are a great source of vitamins, minerals and fiber. Chicken is an excellent source of protein, necessary for building "} +{"id": "5000546", "video_name": "f342d5a5-14c7-5fb5-9a27-d767a0c9f31d", "text": "penguin playing drums Message: CHILI LINDO (Font: MODERN) "} +{"id": "5000547", "video_name": "5aea7c83-d212-5931-86cb-fd4591bb568d", "text": "White horse running in creepy tall forest, new Twin Peaks scene "} +{"id": "5000548", "video_name": "b9c3bd99-fdfe-59b3-9a7b-b84c242fb803", "text": "Black Jeep in the sahara desert surrounded with anacondas "} +{"id": "5000549", "video_name": "dbcbd0e8-099a-56d3-9e41-adaf1e6342d2", "text": "very beautiful sweet , chocolate nuclear explosion in the distance amidst a fantastic forest of mushrooms , very super realistic , hyperrealism "} +{"id": "5000550", "video_name": "be910256-5513-593c-8e00-7ac02d622355", "text": "boy and a girls kid is laughing on the roof top with gardendens "} +{"id": "5000551", "video_name": "29affbde-3ffb-5697-b77f-61c4c443b731", "text": "picture of a heron for a logo of an entreprise "} +{"id": "5000552", "video_name": "a4eca00c-a90c-5513-beb3-aa259d76e638", "text": "kid lord hanuman playing in forest, pixar style "} +{"id": "5000553", "video_name": "9909a751-32bd-5a3a-b614-b1a2691c97d2", "text": "one small chicken coming out from an egg at sea shore "} +{"id": "5000554", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "A young artist struggling to find their creative inspiration in a bustling city, feeling lost and disconnected from their passion for art. "} +{"id": "5000555", "video_name": "251e0f3b-1b7a-58f1-a008-1f492b6ec80b", "text": "Create an illustration of humans thriving on Mars, showcasing innovative technologies for energy, water, and food production. "} +{"id": "5000556", "video_name": "e6e2bd8f-8d4b-57f9-82b2-f48c35f2575b", "text": "Bob Ross uses hair as paintbrush "} +{"id": "5000557", "video_name": "99d16196-f1a1-514e-a537-efe15162e612", "text": "playing with kids in Yosemite National Park "} +{"id": "5000558", "video_name": "936472e2-af27-561c-bdee-bed699e7f7be", "text": "The group falling down the fortress stairs and meeting their demise "} +{"id": "5000559", "video_name": "2d22470f-45c0-501b-af11-fb229b3e63f5", "text": "90s recording, balenciaga JDM car studio wide shot "} +{"id": "5000560", "video_name": "ac0475f6-35fc-57f1-8258-d6cdf2bbb9cd", "text": "A man rides a horse on a night field "} +{"id": "5000561", "video_name": "113d0cfa-6539-5abd-9ec3-bcd4aee8d1d1", "text": "a beautiful curly hair 26 year old standing in Baltimore City "} +{"id": "5000562", "video_name": "a545f86e-8748-5de3-bbbf-1c509f9c6f61", "text": "A masked artisan in a workshop, surrounded by clockwork automatons, her mask an intricate gearwork that ticks in harmony with her creations "} +{"id": "5000563", "video_name": "e533d001-ddb9-564c-86f5-7436c0d6d3fd", "text": "a picture of a yousef with blonde curly hair child standing in front of a helicopter, impactful graphic design, war in background, , photojournalism detailed, full body "} +{"id": "5000564", "video_name": "f613e78b-d579-57ff-a765-665461e2c072", "text": "colourfull orbs in the night sky, fantasy image. guardian fairy smiling. two young girls playing with stars. "} +{"id": "5000565", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "when barbie met oppenheimer first time, 8k resolution, sharp and detailed, nuclear explosion in barbie world in background "} +{"id": "5000566", "video_name": "9489c329-a3de-57d3-9b85-6144cef3ac9e", "text": "a golden Chinese phoenix is flying with a golden Chinese dragon "} +{"id": "5000567", "video_name": "0d885f5f-12b5-5249-b87d-55e587d22cd1", "text": "A lightning bolt can be seen in the background and items of clothing move in the wind. "} +{"id": "5000568", "video_name": "c08af97b-7019-50d1-978e-247bef32362a", "text": "Underwater scene of octopus passing past the camera "} +{"id": "5000569", "video_name": "8d3ba219-7968-543f-aa5d-bbd8c5cfd46f", "text": "a dolphin eating dinner in a suit "} +{"id": "5000570", "video_name": "2fcccf13-fd86-5344-8cc5-eaee0dece583", "text": "South Africa beating France in the 2023 Rugby World Cup quater finals "} +{"id": "5000571", "video_name": "33579e94-6735-5c66-9001-ed8cfc4303b5", "text": "asnowing road in which snow man in Christmas dress is dancing ,A baby girl and a boy is also in Christmas dress are dancing,ar16:9 "} +{"id": "5000572", "video_name": "972031df-02e0-5034-8c87-f9e443108757", "text": "a scene of a James wan horror movie. Woman walks through the front door of a a empty, dilapidated house filled with dusty old furniture "} +{"id": "5000573", "video_name": "f9e937c7-03d7-55cd-965c-b9fc4278b131", "text": "A goat flies over the fire in the haunted forest "} +{"id": "5000574", "video_name": "dec75683-0077-5dbe-afc9-2a538537e041", "text": "an aerial drone flyby of a solar panel installation in the misty early dawn hours. Beautiful sun rays through the early morning mist, a family of deer wander nearby, 30 seconds "} +{"id": "5000575", "video_name": "32ffef61-f9fe-592d-aa59-b027f42ffd4c", "text": "Tom, a young man in his twenties, wears a mask and prepares for the mission by collecting the necessary weapons and computers "} +{"id": "5000576", "video_name": "1f8f22e1-c156-5991-a3f1-3923c7c1d6ce", "text": "lake with lily pads with splashes around lily pads and water swaying in cartoon style "} +{"id": "5000577", "video_name": "f66ab17c-11bf-5894-a6f6-797a1d4f1133", "text": "a point of view shot in a dark place with flashes of warmth "} +{"id": "5000578", "video_name": "9d7a5e5f-0dab-551b-896f-b06382027339", "text": "yellow hairing girl, no clothing,indifferent,sitting on the chair,white background,good body shape "} +{"id": "5000579", "video_name": "d80f0047-022a-5c9d-8900-2a41e89ef933", "text": "medieval las vegas, drone shot, doom 2016 HELL, hellfire, hellish sky, red lightning, ominous castle in center "} +{"id": "5000580", "video_name": "565eeda2-fa65-5fe8-87ba-6bd0b9061890", "text": "a strong big man in a cape walks up the mountain through the snow, tiredly carrying a box on his back "} +{"id": "5000581", "video_name": "9e14a4e8-c3d5-5e18-919d-c6cb96177a8b", "text": "lofi scene of river with floating petals "} +{"id": "5000582", "video_name": "25b49ad8-819d-5529-bd55-f4e5421ec88e", "text": ": welcome back to school after summer vacation "} +{"id": "5000583", "video_name": "8d809204-221d-5e7a-9c26-56d5a5079d61", "text": "A person confidently closing a door behind them as they step onto a new path. The closed door bears a sign pointing to an exciting, unexplored landscape ahead, symbolizing the idea that closing one chapter redirects us toward new opportunities. "} +{"id": "5000584", "video_name": "3c3d9241-e7d8-5f3b-b9d1-b773c38e03b9", "text": "a magical orbet made in gold and silver rotating Message: Argentina (Font: MODERN) "} +{"id": "5000585", "video_name": "95630a8d-9c8c-576f-9ad7-a5bc8dbaebc2", "text": "childrens paying with apple cartoon scene "} +{"id": "5000586", "video_name": "eb439703-2e77-5584-97d0-63bbc9b4da18", "text": "It is capable of speaking, writing and translating like humans. "} +{"id": "5000587", "video_name": "c76754b8-6bfc-56fc-96d1-b19bb8955fef", "text": "a kid sleeping with his friends, slight motion of heads and hair, slow motion "} +{"id": "5000588", "video_name": "c0dee9b8-8419-5754-9921-7e69c48f1fed", "text": "A thud that unfurls in the air High quality, 8k "} +{"id": "5000589", "video_name": "a1377356-10b5-535d-bebb-413d6a39e535", "text": "A gentle breeze rustles the leaves, carrying with it the promise of a fresh beginning. The photo evokes a sense of hope and renewal, a glimpse into a world brimming with possibilities. "} +{"id": "5000590", "video_name": "07990384-ca67-5bef-8710-a0b9385accf0", "text": "A chubby, bald, black and cute man surrounded by three beautiful girls and two boys in a vibrant, bustling city park, the man is playing cards with the girls while the boys watch from a distance, dressed in modern urban fashion "} +{"id": "5000591", "video_name": "3662bbaf-f3df-5fa5-89fb-58ffd4978a32", "text": "tokyo at midnight, glowing lights, blue and green tint, man in oversized black hoodie walking away wearing headphones, cinematic, 8k, futuristic, blade runner "} +{"id": "5000592", "video_name": "dfd1d6a8-d44d-5aa3-bcbe-bedc109d9111", "text": "One day Tenali Rama and his friend were lying on a swing and enjoying the gentle sea breeze. It was a beautiful day, and both men were smiling to themselves. Seeing his friend, Tenali asked what was the reason for his smile. His friend replied that he was thinking about the day when he would be truly happy. "} +{"id": "5000593", "video_name": "e0214d56-3c65-5912-ba53-4690023c1cb5", "text": "city of london with tsunami with "} +{"id": "5000594", "video_name": "556b1b51-e43d-5cd5-a10f-27b5c0f4ed54", "text": "autumn evening with a sundown over the mountains "} +{"id": "5000595", "video_name": "1a29f478-2974-5c97-86a1-e8b2f0f6264c", "text": "all animals are very shocked slow motion effects "} +{"id": "5000596", "video_name": "a85e7f7b-54f8-52ce-b622-8f65dd92ab70", "text": "4K cinematic look of a 1996 Benz with AMG kit drive pass a graffiti wall "} +{"id": "5000597", "video_name": "750ae98b-82a9-5061-adde-10fed12cf29d", "text": "deep water footage raw gold fallen on the ground "} +{"id": "5000598", "video_name": "fc181428-ad50-5cb4-90b3-ca8e084f7fe2", "text": "security camera footage of a large group of youths looting a footlocker "} +{"id": "5000599", "video_name": "257ec720-b91b-591f-b87a-9538e1a30c0d", "text": "Luna (Firefly) touched Sam with her magical light "} +{"id": "5000600", "video_name": "a9d9d420-7e17-5e47-a817-9addb51efe69", "text": "The sun is shining on the back of Mickey Mouse on the boat. "} +{"id": "5000601", "video_name": "f69361a2-2c34-5a85-a850-8df6d0b48d01", "text": "Freddy from five nights at Freddy\u2019s looking at the camera with human eyes twitching "} +{"id": "5000602", "video_name": "b6e73ca5-8c43-5f84-8125-da79525ed555", "text": "a hot giel at centre of the photo "} +{"id": "5000603", "video_name": "b05e6568-b7ea-5816-8c5e-1b9fb9b157a0", "text": "Mountain river flows calmly, humming water sound, relaxing "} +{"id": "5000604", "video_name": "cc15eb76-6ac2-500c-8909-e391ac2e2daf", "text": "thai monk walk in the dark cave "} +{"id": "5000605", "video_name": "cd700e5f-2417-5e09-b83c-eff6423bdb66", "text": "cute yellow bear holding frying pan "} +{"id": "5000606", "video_name": "293f675d-aa1f-5acf-95f5-15e0706d8b4e", "text": "Sun tired circle New year 8 "} +{"id": "5000607", "video_name": "350916e0-de5f-5d97-98c4-e595cbaee33e", "text": "video of SLS 3D printing where a recoater lays a new layer of powder "} +{"id": "5000608", "video_name": "c2901b0c-cc80-56d4-a865-3e00f09293b0", "text": "In a quaint little town nestled among rolling hills, Sarah and Michael found themselves caught in a downpour one fateful evening. "} +{"id": "5000609", "video_name": "7953feff-b7a0-5e53-9494-a76efea91093", "text": "sycho bring big axe and walking into stranger house, midnight, horor vibes "} +{"id": "5000610", "video_name": "350a0ac5-8b83-50e4-bcb8-cb551678a58d", "text": "On the night of the full moon, Dreamy Giraffe made a wish, creating a Sahara Desert full of friendship and peace, proving the magical power of heartfelt wishes. "} +{"id": "5000611", "video_name": "dfb5f808-e22e-5922-904d-d1cdda692903", "text": "So these people denied them. Then the punishment came to them that they were all wrongdoers. "} +{"id": "5000612", "video_name": "28bc53d1-a835-5f02-9338-009ed7ee9fde", "text": "sad Godzilla going trough an existencial crisis, Neon Genesis Evangelion final "} +{"id": "5000613", "video_name": "7f007dca-09cf-5420-8876-60f883af25ba", "text": "Picture Bob in his bakery, trying to carry a tray full of pastries but tripping over his own feet, with pastries comically flying in all directions.disney "} +{"id": "5000614", "video_name": "0db1bc35-d150-5bd1-b8df-e43584e526aa", "text": "Sunlight struggles to penetrate stained glass windows, casting eerie red hues. "} +{"id": "5000615", "video_name": "62284349-bb50-5e9f-b904-0b3f51a194a3", "text": "PEOPLE APPROACH THE SCREEN, AROUND THE TREES SHUTTING AND THE WIND SHUTTING. THERE ARE BIRDS FLYING HORIZONTAL "} +{"id": "5000616", "video_name": "c6bc8d1b-dc2a-5ae4-8c04-becc8975c45f", "text": "Cybermen struggling under fire, looking down, camera zooming from far to near, 3:4, 4k "} +{"id": "5000617", "video_name": "863d4249-4be0-5eb1-8fea-2f8ff2211c29", "text": "The Flickering Flashlights (Turning Point): Design a dynamic image showcasing Mellisa,Ryan and Sarah desperately trying to relight their flashlights amid the encroaching darkness graves. Emphasize the shadows moving among the graves to heighten the sense of suspense and impending danger. "} +{"id": "5000618", "video_name": "88832e9e-6982-5b3d-916e-5aba0497f08e", "text": "a bunny drawing painting of a carrot "} +{"id": "5000619", "video_name": "90664c20-d03c-5e0e-a428-29724e9a7447", "text": "The superstar is greeted by his fans and he greets them. "} +{"id": "5000620", "video_name": "635eb469-2db5-5d62-9622-9a06692b2dfe", "text": "cinematic scene, a beautiful woman in a wedding dress sitting behind the wheel of a large truck "} +{"id": "5000621", "video_name": "9ede0bd8-a2fb-5444-aa2b-9d9b87de94ab", "text": "anime night club at street corner "} +{"id": "5000622", "video_name": "2e06942d-34f4-57b3-9ab7-4e6e2c96df95", "text": "corn field horror zombies cinematic 4K "} +{"id": "5000623", "video_name": "5ac6ca2c-146a-5fc5-8a7f-03760a58991d", "text": "a vibrant and bustling cityscape, with people engrossed in their activities. The camera zooms in on a young girl with headphones, lost in her own world of imagination "} +{"id": "5000624", "video_name": "1742dd1c-4db4-5bb2-866d-c70092d107bf", "text": "A Mongolian khan, wearing a luxurious robe, rides a warhorse, and commands his soldiers to advance. "} +{"id": "5000625", "video_name": "6227a09f-36f2-538e-971c-0e79a5e47633", "text": ": A picture of Sarah in her wedding dress and Alex in his suit, standing at the altar with smiles as they exchange vows. "} +{"id": "5000626", "video_name": "34d084e0-16d8-5399-83e9-a8500c9748cf", "text": "In the depths of the unknown forest, where dense trees and mysterious sounds prevailed, there was a little child named Alex. He had wandered into this forest surrounded by secrets, unaware of how and from where he came. "} +{"id": "5000627", "video_name": "9de90e70-a4d4-5742-923d-349794d84e94", "text": "as the judge fires up all the kids started running from the starting line "} +{"id": "5000628", "video_name": "8a025b9a-f043-5394-9a44-62cda14244b2", "text": "Full body view of small blond short haired girl holding a gigantic polar bear on a rope, walking over a glacier "} +{"id": "5000629", "video_name": "9155dcc0-44df-5fb7-820b-894b31ddd10b", "text": "isometric cute 3d room ,cottagecore theme "} +{"id": "5000630", "video_name": "37ba161e-de3c-5422-a2ba-fb1d561f42d1", "text": "Santa Claus is smiling and looking at us near the Christmas tree. Fabulous atmosphere starry sky, winter "} +{"id": "5000631", "video_name": "bef2f5fb-a02e-559c-a364-0332d403d1c3", "text": "Beautiful heart Message: Griselda (Font: MODERN) "} +{"id": "5000632", "video_name": "34212324-752d-5974-86e7-32b981bf992f", "text": "video heart jump clouds floating air is flowing "} +{"id": "5000633", "video_name": "fcee0e02-7bff-5022-b560-c6aaf55d46ec", "text": "a cartoon apple eating a banana "} +{"id": "5000634", "video_name": "d5d19883-fcbc-590a-979b-8aa355c78678", "text": "A Christmas table setting with a holiday feast "} +{"id": "5000635", "video_name": "fc760e9e-ffe2-5001-b9e4-6b02abe09777", "text": "a red audi a5 is driving through the desert and a bmw m3 f90 is driving behind it in blue at sunset "} +{"id": "5000636", "video_name": "75654f3b-0e4c-5c53-8daf-df3d9a5ce749", "text": "a balck coloered buffalo walking in the forest.camera zoom "} +{"id": "5000637", "video_name": "30b930bd-2e30-5c77-a86b-a323d3b2df63", "text": "Selena Gomez in black skirt at a live concert "} +{"id": "5000638", "video_name": "e59ff84a-73a2-5c2f-a6eb-2026c9e73791", "text": "Interstellar Travel with spaceship ,ambiance colorfull,hi res,mooving mecanism, sparkling,light speedy drivers,zoom inside "} +{"id": "5000639", "video_name": "e4eab850-c44d-5e6c-9542-2d2adec0e6ca", "text": "A meteor shower, with thousands of meteors appearing in the night sky. "} +{"id": "5000640", "video_name": "593afeed-154c-5477-a7a1-d8c6ee89122e", "text": "Inside, the forest transforms into a world of chocolate wonders with the view of the galaxy "} +{"id": "5000641", "video_name": "86a871bb-d5c6-5d6f-9c0c-54e76f43d026", "text": "portrait video showing people on earth looking at an angle in the sky, realistic, nature, night sky "} +{"id": "5000642", "video_name": "90223b2b-626f-574d-b59e-d8e6d8ca8f98", "text": "Cyberpunk city with spacecraft flying in the night sky, ultra detailed, camera zoom out Message: Berna RG (Font: MODERN) "} +{"id": "5000643", "video_name": "477ed7ed-d96c-527b-882e-c0be67e041e1", "text": "a young boy with yellow scale near his yellow eyes and gold long hair and pointed ears holding up a gold bow and shoot flamy arrow through the night sky, realistic "} +{"id": "5000644", "video_name": "3210727c-c14b-5b3c-a6ba-49267ee6d13e", "text": "Create a video of a man buttoning his shirt and then the camera pans up to his face and then cuts to a shot of the man walking down the street with the camera filming his legs. "} +{"id": "5000645", "video_name": "75dbcd21-4277-54c3-a5b4-83fb41497923", "text": "a snowman decorates a Christmas tree "} +{"id": "5000646", "video_name": "559b404e-e30f-5126-aae8-74a230e1eec6", "text": "The ambulances lured us into the forest. It was a gang that stole human organs. Whenever they finished with a body, they hung it on the trees with a noose. I could not escape because they had ended my life. The sound of tricks as they dragged my body onto that tree was like a manual saw running through my veins. I did not feel my body due to the intense cold that hung over the forest every night, until my body fell to the ground, and my soul was freed. "} +{"id": "5000647", "video_name": "6ec6c429-d7a9-5022-9c7d-def7b273847f", "text": "an 2d flat ilustrated colourful 90s indian road traffic jam "} +{"id": "5000648", "video_name": "45b13503-a2fe-5084-83df-d0d3fb37263a", "text": "old roman painting, Louvre museum, 4k, photography, cinematic lighting, perspective Message: moshy (Font: MODERN) "} +{"id": "5000649", "video_name": "6e099d44-8a53-59a2-ba69-1c401eba7396", "text": "Handsome Asian boy illustration image talking "} +{"id": "5000650", "video_name": "7cfac040-48a8-5012-8970-8cf207a4198b", "text": "1950\u2019s super 8 footage of creature split in two "} +{"id": "5000651", "video_name": "1b10c326-ca43-5478-b0d0-c31ea73c7692", "text": "professional fashion photo,magazine cover girl,plump lips,dollface pretty,mega flying fabric,mega fluffy fabric,soap bubble and foam garment, hair stones,sequins,soft,flying fabric effect "} +{"id": "5000652", "video_name": "ca47f6df-3bce-577b-9203-8ad62dbe2e83", "text": "The Terminator T1000 sloppy devouring a pumpkin pie, mid combat, insanely intricate, extremely vivid "} +{"id": "5000653", "video_name": "3b35edd4-1d7f-5823-9173-00af557cb7a7", "text": "anime caracter on streets of brazil "} +{"id": "5000654", "video_name": "0b512049-8859-547a-9f42-da51ce78575c", "text": "a coir pot with corriander fresh "} +{"id": "5000655", "video_name": "710f05ef-8ffc-55a6-b8b1-bb13cb41407a", "text": "Barack Obama, Oprah Winfrey, Donald Trump, and Princess Diana waving. "} +{"id": "5000656", "video_name": "66c1d4eb-b414-517a-9c0c-22e082ba47c9", "text": "male asian hand with medicinal capsules in the palm "} +{"id": "5000657", "video_name": "20c54dca-48de-55a7-b756-6cf61d7851a5", "text": "consolation through turning away from earthly things 14th century engraved copper hiernymous bosch ,egypt "} +{"id": "5000658", "video_name": "9867e46d-f4ef-53f3-a8b4-73c026f75c7e", "text": "The Magical Journey of Luna and the Shining Star for kids "} +{"id": "5000659", "video_name": "8e9aca33-b63a-5b02-8a17-397de49f3d1c", "text": "Japanese woman was sleep (realistic person and realistic images) "} +{"id": "5000660", "video_name": "d74539d6-e8c2-5525-b623-e50a1d515f81", "text": "golden coins falling from a pouch "} +{"id": "5000661", "video_name": "d448414e-95fc-5a12-a6ec-4e89ae53a962", "text": "Apocalipse city with firestorm and smoke Message: PAKUA (Font: MODERN) "} +{"id": "5000662", "video_name": "435ae26f-a210-5e79-bcc4-bfa1c16e8334", "text": "a sanrio hello kitty in amsterdam "} +{"id": "5000663", "video_name": "912fa2bf-6994-5dee-a173-8a03f45aa103", "text": "logo ye cartoon. animate the logo "} +{"id": "5000664", "video_name": "dd60ee80-4a93-5296-ad5e-7af9d95b565b", "text": "Create a scene where a city is submerged and all people are trapped in a floating city. Every once in a while, there is a massive upheaval of the sea, where a huge school of flying fish leap up from the surface and land in the city to eat the remaining humans. The humans are constantly prepared to kill these amphibious enemies for food. Please create an exciting scene to showcase this unique world. "} +{"id": "5000665", "video_name": "b06e8b21-5dfc-5169-99d4-d1d68cac9b8c", "text": "a gorgeous woman with long hair decorated flowers walking toward camera, lavender reaches to the horizon , purple and pink sky, bright view, high solution, photorealistic, cinematic, 16:9 "} +{"id": "5000666", "video_name": "f8688f9d-3597-5455-9934-1cb0a8430359", "text": "collective unconcious, disfigured, dmt entities, psychedelic, surreal, 4k, photorealistic "} +{"id": "5000667", "video_name": "7b9652a0-0309-55b7-8c9e-944de6091278", "text": "Harry Potter and Hermione Granger kiss at Hogwarts "} +{"id": "5000668", "video_name": "73b5759f-ea30-590d-aab8-ed256a49f63e", "text": "A lone astronaut explores an abandoned space station on a distant planet, sunlight catching dust motes dancing in the zero gravity. (cinematic, suspenseful) "} +{"id": "5000669", "video_name": "6a6b3e4a-ff2b-5d9d-a12a-4662161f1ce4", "text": "Splash with water Message: Strellson (Font: MODERN) "} +{"id": "5000670", "video_name": "66ccf78e-1e1b-5aab-9e87-9e6134e39200", "text": "Viviana decided to learn to cook and prepare healthy meals for the sake of her cat. young blue eyes with her cat cooking "} +{"id": "5000671", "video_name": "c634679c-a9cb-579e-8c5a-d2b7075c9d00", "text": "black and white grainy film style of a group of people on a train "} +{"id": "5000672", "video_name": "f964e964-c176-525f-b399-47b96fbe7d54", "text": "close up of a biomechanical bug flying through plants "} +{"id": "5000673", "video_name": "8d81eff7-f176-5d0f-8ce0-d697f5cc6f2d", "text": "A slow motion zoom out, a memorial for snipers, cemetery, 48K, ultra detailed colors, AR 16:9, cinematography "} +{"id": "5000674", "video_name": "efb4b09e-f5e4-56d9-a074-913495409a81", "text": "moving Stars in the Sky, reflected in the Shades of someones face, who Looks Up into the sky "} +{"id": "5000675", "video_name": "758933bd-6509-59bd-ad11-5185fd876ee0", "text": "profile for Latin American discord social server "} +{"id": "5000676", "video_name": "62b8d515-6d28-52ed-bbb0-1137a313eebb", "text": "red rubies, red background, falling, glowing "} +{"id": "5000677", "video_name": "0485e247-0513-53ad-8e4a-b7a9e74640d3", "text": "anime style , closeup shot, man and woman handshake , Studio Mappa Style "} +{"id": "5000678", "video_name": "895f2e45-16b3-5adb-8c56-955353a335ec", "text": "Rainy day, room, night, warmth, window "} +{"id": "5000679", "video_name": "05162a42-bb5f-53fd-8ba2-fd36ca33e7cf", "text": "People turned their backs on one man "} +{"id": "5000680", "video_name": "7da6ac0d-24ad-5138-91c0-00102b2e15f3", "text": "a giant cake fly in the space "} +{"id": "5000681", "video_name": "3f765a30-5d9d-59d2-ac84-36864c257fb9", "text": "A 3D animation of a car hiting a house wall and a women coming out of the car "} +{"id": "5000682", "video_name": "84b15a18-07ce-54c3-8e69-cfda62760e91", "text": "mother asking for his Dj son what he want for Christmas "} +{"id": "5000683", "video_name": "aeb98e30-2423-51f0-b641-f563a6f52e79", "text": "black nissan skyline p34, 1994. drifting, on the streets of tokyo and a mountain track. a young girl looks out of the window and waves her hand. "} +{"id": "5000684", "video_name": "7aae2047-2dc8-5e84-aa1b-a257575fc123", "text": "Grand Theft Auto style Elon Musk smoking a cigarette zoom out 16:9 "} +{"id": "5000685", "video_name": "131f4bde-4284-5bcb-ada6-0342ee97d1c0", "text": "a giant translucent angel covered in ancient gems flying over a burning city surrounded by beautiful glowing lights "} +{"id": "5000686", "video_name": "94e9a12d-1aac-5b14-b58b-dee094fbb116", "text": "two cats in a messy living room watching their owner surfing on the internet, in the style of rick and morty "} +{"id": "5000687", "video_name": "ecae07ab-3d1b-5951-9a57-49505213a9e9", "text": "woman screams in the basement , old bw movie "} +{"id": "5000688", "video_name": "0eaa22df-5179-599c-a3a9-183e7ef88b29", "text": "a young adult girl gets scared by reading something in the book "} +{"id": "5000689", "video_name": "649f6cc0-3367-5a9b-adf8-379de3461e8c", "text": "Glittering CD discs are falling from the marine blue sky. Unusual image of rain. "} +{"id": "5000690", "video_name": "94a518c8-8383-5106-b892-93419a50749e", "text": "an elderly man and his robot assistant travel through the ruins of an underground city "} +{"id": "5000691", "video_name": "8cf3cd49-1d6b-5de8-9728-cbd1eb932644", "text": "a white Bird hovering over an ocean "} +{"id": "5000692", "video_name": "ccb12dd8-e0e1-5e8a-8f17-901481fc0305", "text": "a peach town island floating on the sky. Few buildings on it. "} +{"id": "5000693", "video_name": "29aaabc5-a3ff-5210-a419-de0983001642", "text": "a dachshund lost in the zoo "} +{"id": "5000694", "video_name": "84835385-65e9-5815-b67e-9b510e0b7e27", "text": "and he set out each day with a mission to make a positive impact on the lives of those around him. "} +{"id": "5000695", "video_name": "dec73b62-aec2-5c4e-9e96-c4d1d14f38f1", "text": "so I walked on down past the burger crown "} +{"id": "5000696", "video_name": "d2063170-90d2-5d2f-96ea-3175e474cabd", "text": "war fighting shots, saving private Ryan movie style, hyper realistic, highly detailed, high octane render, fast and slow motion "} +{"id": "5000697", "video_name": "63005493-a01c-581e-b74e-ce2c2c5ef6bc", "text": "spider in the style of Odilon Redon "} +{"id": "5000698", "video_name": "56f50655-ca69-5835-a8c7-7eaa425aa906", "text": "In his correspondence, Unger claimed that the crew had successfully navigated to the Earth\u2019s interior and had no intentions of returning. "} +{"id": "5000699", "video_name": "b396c32e-5e9b-5b1f-84b1-7353c1a0fab5", "text": "A cryptic message in a foreign languegae "} +{"id": "5000700", "video_name": "26a6f88c-e69a-5313-b22a-6a711e6f3e37", "text": "Montesque walks with a book against the background of a medieval Paris courthouse "} +{"id": "5000701", "video_name": "811c745c-290a-5816-95c1-27e3a2aee0aa", "text": "a crocodile alien hybrid in a biker jacket with glowing tattoos outside a bar in neo tokyo. Cheerful cartoon manga aesthetic "} +{"id": "5000702", "video_name": "8672e3ca-ec06-5439-95b6-041eee7c093f", "text": "A girl eating a hamburger in the 80s, retro style "} +{"id": "5000703", "video_name": "647b8685-1def-5601-875a-d9e060396399", "text": "house interior with tecnology and sustentability "} +{"id": "5000704", "video_name": "ac11c031-200a-5c75-a4e9-38c101d453f2", "text": "qigong is actually a way of communicating the universe and your mind "} +{"id": "5000705", "video_name": "4d20d6da-2798-5d30-8a84-2e5fdaf021b6", "text": "Create a video where a man wants to hang up a picture. He has the nail but not the hammer. His naighbor has a hammer. So the man decides to go to the house of his naighbor and rings on his door. "} +{"id": "5000706", "video_name": "4f9b192c-f435-5f7f-8846-4f906790133f", "text": "fish on legs run through the air "} +{"id": "5000707", "video_name": "a586fcd4-6883-5324-8469-206d64cb820b", "text": "a beautiful air hostess walking through a crowded plane full of cars and dogs. "} +{"id": "5000708", "video_name": "4fa330c1-3539-5e7f-aa78-51afacc82b81", "text": "Sad shot of 22 year old woman walking next to cats "} +{"id": "5000709", "video_name": "bce9c83c-e34d-5ea5-ae7d-aff94aa7f1c7", "text": "a interview at the red carpet with tom cruise laughing in 2023 "} +{"id": "5000710", "video_name": "a5303fe9-8e0a-532c-80a1-01c29c89f0a2", "text": "lady in a supermarket pushing an empty cart "} +{"id": "5000711", "video_name": "e98badc9-2ae0-5361-9d8a-fd361e55f57d", "text": "japanese tree leaves flutters in the wind, blured japanese temple in the background, 4k, cinematic "} +{"id": "5000712", "video_name": "c1766871-dd34-591f-8f5b-891aad2df04e", "text": "the state of Washington and state of Oregon coming together "} +{"id": "5000713", "video_name": "1d2baf05-c95f-5bd8-b752-fcfe90602118", "text": "snowing outside, coffee steam from a cup, pepe frogs chatting, cat looking after her kitten, lamps flicker a little bit "} +{"id": "5000714", "video_name": "46f220bb-3781-5a90-924b-a530574c4a0b", "text": "barak obana with red suite, big sunglases working on a road "} +{"id": "5000715", "video_name": "764804be-b383-5e10-a138-867a5127d54d", "text": "spaceship launching into space with cheering crowds below. "} +{"id": "5000716", "video_name": "cbb04058-dce6-52d5-bcc8-0a57ab1a5011", "text": "A beautiful girl is asking A boy shows love "} +{"id": "5000717", "video_name": "c8698fd6-9684-5f9f-99b9-29b7462b3f37", "text": "a vast ethereal realm suspended in the cosmos. It is a place of floating islands, each composed of luminescent crystalline formations that emit a soft, iridescent glow. These islands are connected by delicate bridges made of woven light, and hover amidst a swirling, iridescent nebula that changes mesmerizing colors. "} +{"id": "5000718", "video_name": "8c57bffd-eb2d-5689-8f4d-c16291179e56", "text": "Jade, with a determined expression, smashing one of the powerful artifacts using a futuristic weapon, while the Luminar looks on in shock and rage. Video "} +{"id": "5000719", "video_name": "4c8bc249-7cae-53c7-861d-4f949ecff2db", "text": "adults playing video games in a backyard "} +{"id": "5000720", "video_name": "4149dd83-d034-5831-a67f-9cec93409101", "text": "Create a captivating visual story capturing the intense encounter between a majestic lion and a courageous dog amidst the depths of a dense, mysterious forest. Explore the contrasting worlds of these two creatures as they clash in a battle of strength, agility, and survival. Craft a narrative that unfolds the drama, showcasing their primal instincts, the unforgiving wilderness, and the unexpected bond that may emerge amidst this epic struggle "} +{"id": "5000721", "video_name": "4cccb557-83b6-5427-9fd5-bb2c25389511", "text": "Portrait of female succubus with black hair and glowing amber eyes and horns, dnd, fantasy, intricate, elegant, highly detailed, digital painting, artstation, concept art, smooth, sharp focus, illustration, art by narcisse navarre "} +{"id": "5000722", "video_name": "e33958bc-b900-5a93-8ea7-b78cbac14040", "text": "pizza,burger and other food on the tabel "} +{"id": "5000723", "video_name": "b05002cc-f906-52c2-9eca-6ba72b618f3f", "text": "In the style of Japanese manga, robots and humans do experiments together in a scientific research laboratory. "} +{"id": "5000724", "video_name": "8da81951-5677-5765-b0bf-73393f694b5b", "text": "I would like a girl who is playing on a PC and after a moment she is angry because she lost "} +{"id": "5000725", "video_name": "c9cfbe03-4651-5532-a41e-33d21e4db957", "text": "High quality image close up back view of a man on a desk watching screens watching Stocks Chart "} +{"id": "5000726", "video_name": "ed1500b4-be11-5317-9160-eadccc2756ee", "text": "soldier in the jungle feeling sad "} +{"id": "5000727", "video_name": "33244d8b-3b2c-5e2e-bf60-d53f3ed69891", "text": "A man drinking coffee in his kitchen Message: GM (Font: MODERN) "} +{"id": "5000728", "video_name": "b37bed37-4c83-55a2-bc96-5b155d9fd69a", "text": "night to day transition dirtbike motocross "} +{"id": "5000729", "video_name": "2587ac66-7ff3-5117-87a8-3fceb245d35d", "text": "a boy going back to home "} +{"id": "5000730", "video_name": "d13d7fd5-773a-530f-a2df-7fd76aa8f515", "text": "Steve urkel as a super hero "} +{"id": "5000731", "video_name": "cda08098-b781-5cd9-abb3-810f04381bb4", "text": "A gamer sitting in a gaming chair playing game using AR HUD Message: 1 Attachment "} +{"id": "5000732", "video_name": "124ace50-a245-51b1-a79e-704fc2f622e6", "text": "Dear Brain \nPlease stop Overthinking I\u2019m tired ! "} +{"id": "5000733", "video_name": "318cc86c-389e-5161-907c-88eaf268d5f7", "text": "a wizard showing off his control over the elements"} +{"id": "5000734", "video_name": "d233dd8a-c1dd-5413-b50b-7918cbe52266", "text": "A24 midsommar type style film but in the form of an alien cthulu close up 35mm "} +{"id": "5000735", "video_name": "3a45adb6-2065-5ef6-b3b0-11d50e88e9af", "text": "joe biden stands close and turns to face the viewer smiling proudly "} +{"id": "5000736", "video_name": "84cea487-cc15-5aef-8492-74c1bd77ee05", "text": "create a video about the world in one atom "} +{"id": "5000737", "video_name": "f432fdc3-12ed-5dff-a1c6-8009182ca2e8", "text": "a bladerunner walking in neo noir city inspired by japan "} +{"id": "5000738", "video_name": "0c51e639-9454-56d3-9428-ce389cbdd0c3", "text": "girl, in a colorful room, with a window and a starry sky, a holy bible on the bed, girl prays, cartoon "} +{"id": "5000739", "video_name": "b3a0735f-a143-5325-b469-2a4f894b0935", "text": "a 16 year old boy waving at the audience and narrating a story "} +{"id": "5000740", "video_name": "9549b69c-46b2-5e0f-bbd6-ffe397002f75", "text": "gautam buddha sitting under tree and surrounding around with beautiful mountain and lakes "} +{"id": "5000741", "video_name": "9a035c35-81e8-5b95-ae3c-9e4f15121e76", "text": "Powerful earthquake destroys a large part of the city followed by a tsunami. "} +{"id": "5000742", "video_name": "f5d9356f-1020-50f0-be83-4bf92571c38f", "text": "A beautiful taiwan schoolgirl is broadcasting news with a green background,vista,16:9 "} +{"id": "5000743", "video_name": "f68527d6-afe9-5012-90ef-4823f4a74a55", "text": "Join the villagers in their quest to preserve the forgotten tales uncovered during the exploration. "} +{"id": "5000744", "video_name": "9eee615d-265e-5dd4-9393-3276a6c2347c", "text": "eagle moving its wings. flying from left to right. silhouette style. black and white "} +{"id": "5000745", "video_name": "552cb396-2bdd-5c04-91b5-dbfdecfeca6d", "text": "A heartwarming moment captured during the ceremony, with Max nudging the groom and delivering the rings, showcasing the special bond between the furry friend and the couple.Animated cartoon "} +{"id": "5000746", "video_name": "0ca34bd2-c31d-5593-967e-5acc38ffa0f4", "text": "the sun turns into a bright flower. "} +{"id": "5000747", "video_name": "b457b81c-dcaf-5a0e-97fd-16b7154dc79b", "text": "iced coffee splashing in the plastic cup, yummy, very intense, all over the place "} +{"id": "5000748", "video_name": "4fd005ce-ee63-5b19-ad80-4ece59e3cddb", "text": "storyboard style, untie the ribbon on a gift box "} +{"id": "5000749", "video_name": "653cc321-af14-57c3-a656-ce97b118e2f5", "text": "An illustration of a team building a website, represented in the middle. "} +{"id": "5000750", "video_name": "52bbedc0-9f80-5169-934e-a350dfb27eff", "text": "cinematic curry sandwich on a beach "} +{"id": "5000751", "video_name": "de63c6f2-1d8a-5044-8578-b6e05e883106", "text": "dark spooky night forest, foggy trail "} +{"id": "5000752", "video_name": "e7c17ce3-87e4-5830-8a39-563208e2fd71", "text": "I am not here for the view, but for the glory of splash, splash art, splash art, liquid, 5d, floating islands, wolf.black holes swallowing crystal quasar provide a stunning backdrop of luminous rising moon\uff0cScene from the movie Ice Age 5\uff0ctexas woods\uff0cSubarctic Vegetation\uff0cConiferous forest\uff0cimmersive\uff0chyperrealistic, concept art of detailed character design\uff0ctop view, snow "} +{"id": "5000753", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "robots marching down the street in Michigan "} +{"id": "5000754", "video_name": "2eff3883-f0a1-5914-ac08-2bbeecef3387", "text": "caterpillar spent the whole day in bed, feeling sorry for himself "} +{"id": "5000755", "video_name": "84e8fd4c-4d2f-5f75-a885-2683638c2f70", "text": "MF DOOM with angel wings painting a graffiti mural and holding a microphone "} +{"id": "5000756", "video_name": "9237f41c-0151-564e-a298-b430a8e82518", "text": "cartoon superhero with a missile flying in the sky "} +{"id": "5000757", "video_name": "44ed2664-62b3-5eea-8e04-41082424705a", "text": "woman at a nightclub wearing a lot of diamond necklaces "} +{"id": "5000758", "video_name": "bee9623c-a3e2-515c-9e28-8b48e33b0908", "text": "A video of a corgi riding a bike "} +{"id": "5000759", "video_name": "a05113ff-23f6-5efa-b5cc-0829848a8914", "text": "zerg slime creeping over the ground "} +{"id": "5000760", "video_name": "abcd1753-fc83-5b9d-a865-0bedc0582a86", "text": "animated alphabet train , hd 16 "} +{"id": "5000761", "video_name": "247bba68-5778-5c49-857f-de9d30d4eb00", "text": "a love couple walking down the ghetto streets of brazil and holding hands "} +{"id": "5000762", "video_name": "1a75cfbf-4002-5c65-8bf9-6d328bcb6b5f", "text": "waves crashing on the sandy beach Message: FANAUE (Font: SANS SERIF) "} +{"id": "5000763", "video_name": "bddbaada-bf99-5d08-93cf-edd2688326d6", "text": "a girl who just became a university student, standing infront of the school "} +{"id": "5000764", "video_name": "dc168f93-6678-54a5-b9ff-064796dd26d0", "text": "make a single, wrapped 4d chrome japense futuristic hard candy that moves on a journey through differrent visual tunnnel warp zones through differnet spaces in time and finally ends up in a persons hand then is unwrapped and eaten with the ending being the camera angle following the sweet into the persons mouth "} +{"id": "5000765", "video_name": "7db63c8d-c155-52b4-b05b-4dcbd4b8aa15", "text": "create a real long green hill with ice,some goat ,cows motionly "} +{"id": "5000766", "video_name": "bc505c21-e5af-5aa6-bc57-b7d668a2becc", "text": "an angel he is stand by pointing one of his arms to the sky, he have a gold chain wrapped in his arm "} +{"id": "5000767", "video_name": "0b4e141b-3fc0-556f-9c14-0e7a789d15c6", "text": "cinematic visuals of A raccoon family grooming each other in a tender moment. "} +{"id": "5000768", "video_name": "8a3f7e11-5fe7-5294-93e6-074c1b3a0e2e", "text": "A Kid, from ancient china, holding the plant pot walking along with a friend. "} +{"id": "5000769", "video_name": "babfcaa4-68dd-57a1-beb1-647aedf0dc42", "text": "A dog smelling a flower in a meadow "} +{"id": "5000770", "video_name": "6c7b8dd9-023a-55c0-b56e-77b08fb31362", "text": "Create an image of the animal friends celebrating a successful collaboration, with the magical realm as a backdrop, conveying a sense of victory. "} +{"id": "5000771", "video_name": "d0db20fa-f23b-5fb0-86fa-592eb46564db", "text": "the birth of Venus rising from water in the style of surrealism cyberpunk "} +{"id": "5000772", "video_name": "2f3dd661-70dc-55fc-addb-83c1b135369e", "text": "a chair on which Genghis Khan sits "} +{"id": "5000773", "video_name": "bef17bec-9030-5df2-b086-5a58b97b76f4", "text": "feasting during the plague when there is war in Gaza celebrations in society in other countries "} +{"id": "5000774", "video_name": "45541fe1-31c4-54f2-88f6-bea70326fecb", "text": "Happy, fluffy teddy bear surfing in the ocean. "} +{"id": "5000775", "video_name": "a5042ce3-0448-53a6-a0c5-609aaef74f52", "text": "a girl of Ukrainian appearance in a thong dances "} +{"id": "5000776", "video_name": "9309e9cb-d894-5610-96cb-279572834317", "text": "a king with his magic counselor ritual in dark fantasy. Blood magic, horror movie, 4k resolution "} +{"id": "5000777", "video_name": "2cff6e60-7d77-50da-8e31-6ff238b63225", "text": "GOD WANTS TO IMPROVE YOU FOR LIFE "} +{"id": "5000778", "video_name": "ed0cdb31-191a-5f86-be9d-dde0270f0c08", "text": "Zoom out from a traditional village well, revealing the picturesque surroundings. "} +{"id": "5000779", "video_name": "8d4b4154-96bd-5cdd-a69d-d636822eaa68", "text": "constellation of Orion in the night sky "} +{"id": "5000780", "video_name": "ba90e4aa-a3fa-506a-ad7b-e76f4d474272", "text": "John wick fighting in the space, super realistic, epic edition, dynamics transitions, 4k, unreal engine 5 "} +{"id": "5000781", "video_name": "94317589-e7e0-5ab6-8b88-fcc1d5d70de7", "text": "woman turned on her back on a bed looking at the balcony "} +{"id": "5000782", "video_name": "d90d1027-c7bb-5df4-95e5-f809e6b04f08", "text": "a group of CUSTOMERS, their faces lit with wonder and fascination. One CUSTOMER (a child, around 10 years old) reaches out, interacting with a holographic representation of a historic event. Their eyes widen with amazement as the hologram responds to their touch. 16:9 aspect ratio "} +{"id": "5000783", "video_name": "0f8956db-5b8d-56ad-99ba-2a9cd39d34c4", "text": "drone flying through beautiful scenenary with waterfall "} +{"id": "5000784", "video_name": "77ee8828-790b-56e7-a64e-a01a60825c1a", "text": "Egyptian girl from ancient Egypt with long black hair on her back, writing on a papyrus. He is in a library full of shelves and papyrus, the light that comes through the window is from the midday sun. "} +{"id": "5000785", "video_name": "0e3f54d6-28ba-59ec-b769-285fed866222", "text": "zoom in an artistic collage of Chinese Dragon head \uff0c8k\uff0cmasterpiece "} +{"id": "5000786", "video_name": "93717d4d-e7b7-56fd-a50b-e060bd423376", "text": "day time yellow home tree around home cute boy open door of home come out of home "} +{"id": "5000787", "video_name": "6487d20e-8664-5184-bcf4-f8fa9df5f88a", "text": "and its role in the complex tapestry of human history "} +{"id": "5000788", "video_name": "91422cbd-144c-555f-8657-f3f4f26a5426", "text": "a funny looking bunny with carrot "} +{"id": "5000789", "video_name": "ef5b5fa7-603a-58a4-a4b0-17193c445ad3", "text": "a droid driving in a dystopian western world. "} +{"id": "5000790", "video_name": "01afd447-8c35-552d-866d-241348294e7e", "text": "a skeleton closing the trunk of a car cinematic pov from within the trunk 4k smooth "} +{"id": "5000791", "video_name": "560ad478-5be7-5725-8cde-2e6a7d48f027", "text": "A boy and a girl are studying hard in two scenarios, preparing for the exam "} +{"id": "5000792", "video_name": "1897ff87-ff68-5899-819e-95a9841f8ea8", "text": "Tokyo Drifter Car in vibrant paint job drifting over Shibuya crossing at night. Hyperrealistic, cinema lighting, detailed "} +{"id": "5000793", "video_name": "0c5b332e-efc9-5c87-b3d0-b0af636a1d2a", "text": "A fashion photo of a woman wearing supreme, bright colours) frontal and side view shot "} +{"id": "5000794", "video_name": "80b1fabf-0668-5ede-98b9-1bbc47d8f992", "text": "a chicken paradise, a safe heaven, ideal for chicken "} +{"id": "5000795", "video_name": "9deacd91-20c8-51c5-a41a-cfd918915c85", "text": "A panoramic view of the village at dusk, with the magical lights illuminating the houses, creating a dreamy and otherworldly atmosphere. "} +{"id": "5000796", "video_name": "c5542187-757d-56e9-bbde-74148b35516f", "text": "people are engaged in the hall in the anime style "} +{"id": "5000797", "video_name": "3e7349f7-4667-530a-8eb3-a185a3b0735f", "text": "joe biden walks with confidence and a sense of smugness through a meticulously landscaped garden "} +{"id": "5000798", "video_name": "7271d9ee-6877-571c-b7d0-1f4dc894a6aa", "text": "superman fight flash running speed HD 4k "} +{"id": "5000799", "video_name": "c908fb72-53f8-5c10-8794-ab6ab814011c", "text": "slow motion footage of a racing car "} +{"id": "5000800", "video_name": "d5edb147-9964-5fbe-8d26-9dee7b2db93e", "text": "Whiskers the kitten and Paws the pup prepare for their journey, gathering supplies and saying goodbye to their friends. "} +{"id": "5000801", "video_name": "ee6a252d-2830-5fbb-9af8-7fe76436bca1", "text": "A dynamic large screen monitoring platform displaying data collected from the devices "} +{"id": "5000802", "video_name": "859a5938-8bbd-5aee-afe7-93db1d7418d8", "text": "Create a collage of images related to literature, such as books, quills, inkwells, and sheets of paper. "} +{"id": "5000803", "video_name": "7371c4e9-1574-5d96-be88-7cdfa2a773ec", "text": "masterpiece, best quality, highly detailed, lion dance, traditional celebration, vibrant colors, festive atmosphere, cultural heritage, dynamic movement, traditional performance, lively parade, traditional costumes, rhythmic drumming, graceful lion, joyful celebration, traditional dance, "} +{"id": "5000804", "video_name": "4d1da4bd-de80-5044-99b8-b59521d8035d", "text": "many zombies gathered at the train station "} +{"id": "5000805", "video_name": "9e90f307-ba6b-5af4-ab35-527cab441083", "text": "convicts go to the stockade in winter, 8K "} +{"id": "5000806", "video_name": "2caaef55-0e23-5cf3-a7aa-0d5fb9adae98", "text": "Create a video where four random characters from Dota 2 and Underlord are in the game environment. At some point, Underlord activates his ultimate ability (Dark Rift) to the planet Earth, and all five characters transition from the game world to our real world. "} +{"id": "5000807", "video_name": "82bd353d-e7f8-5481-8f1f-7aa871894024", "text": "Smile of a very pretty Brazilian beauty woman in her 20s. "} +{"id": "5000808", "video_name": "fbd6acd0-894d-5187-8261-4791438cd12b", "text": "A flying white dove on a spinning globe "} +{"id": "5000809", "video_name": "0a55a84c-3bda-5dfa-a3ea-e27ff636f327", "text": "reporter getting interrupted during a live broadcast "} +{"id": "5000810", "video_name": "1f143809-33bf-5488-8a9f-9ccb0c1ce63d", "text": "a video that two couples drinking coffee in coffee shop in a resort in mountain "} +{"id": "5000811", "video_name": "7b1588fd-cf69-593d-b879-6c69d4df2dff", "text": "Minuscule aliens on an adventurous climb inside a Christmas tree, marveling at the sparkling lights and intricate decorations. Cinematic 4K enhanced masterpiece "} +{"id": "5000812", "video_name": "bcc234bb-bf48-5a2b-9489-6d17c800fd13", "text": "morning sun with jungle young lion "} +{"id": "5000813", "video_name": "bf809c56-5d94-53e8-902a-80a8ec564b6d", "text": "camera pans to magic spells be casted by students in a magic world of wizards "} +{"id": "5000814", "video_name": "4592dd8f-8869-5cf2-8d7e-88b8ecef891a", "text": "Dramatic lighting illuminating the fabric and texture of the denim pants, silky smooth, high detail "} +{"id": "5000815", "video_name": "22c7dab2-d60f-5789-8284-aed3c4a53b51", "text": "a man and woman walking through lower manhattan, retro dreamscape "} +{"id": "5000816", "video_name": "25ad683a-eda3-529e-af7e-442b20dbb727", "text": "A black BMW drives across Antarctica and skids over white snow "} +{"id": "5000817", "video_name": "1a0c9869-4fcb-539e-8246-6fa20f76d487", "text": "A woman comes to buy donuts at a cafe and sits at a table to eat donuts. At softsoftdonut shop, Scandi style, the entire shop is rice milled. "} +{"id": "5000818", "video_name": "0d353840-4717-5e74-9914-cefd1b372f06", "text": "Five Nights At Saudi Arabia\u2019s (FNAF Fan Made Movie) "} +{"id": "5000819", "video_name": "d3fc1142-d7af-5b57-93b1-052646dbbdb5", "text": "China has taken over planet earth "} +{"id": "5000820", "video_name": "0fde7598-9385-59a4-a845-0e56abad5dc8", "text": "charater Hatsune Miku in anime Evangelion in anime style .There is furniture around, and they are chilling on their couch while looking at their phone. Character is also swinging their leg casually. "} +{"id": "5000821", "video_name": "ffab7e42-78b5-5dac-a8f7-cb32e0d473cd", "text": "all people raising flags Message: 1 Attachment "} +{"id": "5000822", "video_name": "71850c3d-98e7-5e2a-83b9-630b698657f8", "text": "picture of a bird with outstretched wings, one wing is red, the other wing is blue "} +{"id": "5000823", "video_name": "5c287929-968f-5296-9f11-07bedc4d24a3", "text": "origami, anime style, ghibli studio, flying in the sky, wind, clouds, plains, cinematic, beautiful, 4k, masterpiece, miyazaki "} +{"id": "5000824", "video_name": "b6aba669-1c93-5e06-92a9-ff0d761d9ae8", "text": "Sky filled with stars at night in desert video length 10 seconds "} +{"id": "5000825", "video_name": "16fa4850-489f-5b4c-901f-9fe96634c5f4", "text": "man looking desperate with a tear in his eye "} +{"id": "5000826", "video_name": "2918bbfc-0fb1-5aee-bf11-3108adc4c505", "text": "fade from original into a monster Message: 1 Attachment "} +{"id": "5000827", "video_name": "c32ea5bc-1259-57f0-acae-e75aaa768cee", "text": "a young men and a young women walikng in the park, full body, bright day, other people far away "} +{"id": "5000828", "video_name": "8822d339-6c33-5812-9ba4-b5ab554bcb18", "text": "post apocalyptic city ruins, wide shot, slow pan, vhs tape "} +{"id": "5000829", "video_name": "7c4d4d07-536b-57a4-998b-82b5a43ad299", "text": "The dead arose from the cemetery. They have all white dress. They ascended to heaven. Jesus waiting for them in the clouds "} +{"id": "5000830", "video_name": "27a68e1e-ab5f-51a2-adce-6142d46211bd", "text": "command prompt for poor helping organization to help to reach to the poor people "} +{"id": "5000831", "video_name": "59412e90-36b9-5cb7-8f01-75bc9524bb63", "text": "Picture a pit in the jungle, with a frightened baby elephant inside, struggling to climb out, its eyes pleading for help. "} +{"id": "5000832", "video_name": "e3dab9fa-2a70-5913-92ad-794b75c7cd7a", "text": "a glass room in the sea with visible marine life, Maldives underwater villa "} +{"id": "5000833", "video_name": "bcbcaacb-7ecc-587d-8ac6-9a760713001e", "text": "cartoon animated Red Panda in Tim Burton style "} +{"id": "5000834", "video_name": "7f89f837-a42c-55d3-8ae4-d190d02218cb", "text": "Sammy and Alice stepping into a sunlit forest, with tall trees and a path ahead. "} +{"id": "5000835", "video_name": "1d9b867e-9d97-5d38-8a27-cbf834b917f3", "text": "dead tiger in forest with blood rodent cartoon style "} +{"id": "5000836", "video_name": "d1c13e22-e793-54b1-abf4-082f5f728d94", "text": "a logo for a marketing agency and it has to be way out of the box. It has to be 10 seconds "} +{"id": "5000837", "video_name": "9f26a848-94ae-513a-a311-8daf378348dc", "text": "2 men fighting, realistic with camera movements "} +{"id": "5000838", "video_name": "1081baa2-af13-51ee-9f4c-6f28a84e44ad", "text": "a person glancing around anxiously at video screens encircling and encroaching upon them "} +{"id": "5000839", "video_name": "f1a205a0-a246-5d32-98fa-def53f0001f8", "text": "a person surrounded by a sea of webpages "} +{"id": "5000840", "video_name": "51307248-19e0-54ff-8681-0d1c1f2042ea", "text": "I need morden looking 1BHK apartment pictures "} +{"id": "5000841", "video_name": "49f57259-fddc-585d-9b7c-1c7dd2bbfbae", "text": "black leather gloves pickup a red motorcycle helmet laying on the asphalt "} +{"id": "5000842", "video_name": "f7d3483d-839a-54d1-a107-cbd1a213806e", "text": "forewarning about the fragility of the flesh\u2013\u2013whatever pleasures we know are doomed to perish\u2013\u2013thus, his paintings manage to evoke at once the process of decay and the ongoing struggle for life. They hold within them a secret poetry, stained with blood and rust. "} +{"id": "5000843", "video_name": "472e7c20-ec12-56c1-86f1-712d434d773f", "text": "Create an image reminiscent of Renaissance paintings, featuring an alchemical laboratory or workshop as the central focus. Populate this atmospheric setting with alchemists and mystical characters engaged in intricate alchemical experiments and activities. Highlight the dynamic processes of transmutation and transformation, with bubbling potions, intricate apparatus, and mysterious symbols. Utilize the classical techniques of Renaissance art to infuse the scene with an air of mysticism and intellectual curiosity, capturing the allure and enigma of alchemical pursuits "} +{"id": "5000844", "video_name": "5150c529-a875-5c7f-89db-7e783a6a7a05", "text": "Trippie Redd singing at a barbeque "} +{"id": "5000845", "video_name": "cfbeed2b-0f40-56e1-871d-5eaafbd4991b", "text": "Their journey took them to mountaintops and dreamy meadows, where they encountered challenges that tested their teamwork and resilience. But the friends pressed on, determined to make their dream come true. Finally, with jars filled to the brim, they returned home, ready to fuel their spaceship. "} +{"id": "5000846", "video_name": "94e1b931-0e03-515e-a86e-43f446dcabd9", "text": "Protect yourself on the road, insure your car with us at Takafful LLC. All roads become safer with us. "} +{"id": "5000847", "video_name": "1fd34147-39bf-587f-9261-016c9dca173c", "text": "group preparing for battle, fighting stances, grimacing, anime style, animation, manga, gs 20, motion 3, seed "} +{"id": "5000848", "video_name": "eae55eff-6d0e-5126-8ce5-54da685290c2", "text": "a tiger run to the wolf "} +{"id": "5000849", "video_name": "a51ea407-5be0-51be-bbc9-5c1610cbd03b", "text": "a boy talking he is around 11 years old has white hair and his teeth are very clean he talk one minute. "} +{"id": "5000850", "video_name": "b5c06653-3200-5307-bc81-f09e210efde7", "text": "rich people laughing at homeless people, realistic, cartoon "} +{"id": "5000851", "video_name": "2cc096d4-e684-53ee-aeda-de2944bd33a7", "text": "rotate the record as if playing on a record player for 60 seconds "} +{"id": "5000852", "video_name": "546f481e-4eb8-5442-9d4d-aa4ca776d0d8", "text": "the heroes have a unique and adventurous experience which in 3d "} +{"id": "5000853", "video_name": "8830a755-7f8b-5962-82cf-80e7e8a1b931", "text": "melting black and white 8mm film "} +{"id": "5000854", "video_name": "b9554fb4-0b40-5139-8ad4-3239f6cd8b95", "text": "black hole scene in space looks realstic and cinematic and like big portal looks horryfying "} +{"id": "5000855", "video_name": "fc7e6482-d855-5837-876a-6ccc981fd9b1", "text": "one man fishing in a beautiful lake "} +{"id": "5000856", "video_name": "00d658ab-0903-5cdc-95f8-91d38f28328a", "text": "Young adult boy looking at the aviation university holding airplane toy in his hand, wearing airline captain outfit "} +{"id": "5000857", "video_name": "c9586837-857c-5b49-8125-aea2f5ea4bc3", "text": "boy going school in cycle , red color cycle , indian boy with a dog "} +{"id": "5000858", "video_name": "09c098cb-3ff7-5faf-8bb7-b46397f6cfa9", "text": "a girl feed a cat with a goldfish in the forest where a group of fireflies is flashing their lights "} +{"id": "5000859", "video_name": "b5c42539-e33a-5f92-97e8-926f9f89ac96", "text": "several business people in the formal suit, standing in front of the big building and slowing fly to the sky "} +{"id": "5000860", "video_name": "32307878-4f7e-5f3d-acd7-457d4675df68", "text": "A matte orange sports car driving in the desert "} +{"id": "5000861", "video_name": "e0c64f6b-7104-5130-b580-c83632a2f18c", "text": "Pure Love and Emotion Message: Liebe (Font: MODERN) "} +{"id": "5000862", "video_name": "ebe1e5ed-6815-5593-b056-28e8a2bba9f0", "text": "splash screen for a dating app. Couple sitting in the distance and wooden fire burning slowly at night "} +{"id": "5000863", "video_name": "5c9483e7-a4db-5941-86c6-d855ddd77621", "text": "Is there a link between this discovery and the legend of Atlantis? "} +{"id": "5000864", "video_name": "b8f2dec0-bd65-539e-be1a-5af2a3039cac", "text": "infographic style of fire burning in a dark forest "} +{"id": "5000865", "video_name": "c3f0f843-1ede-5ce9-8dbc-140678c701fb", "text": "baking together and making a mess with flour everywhere,pixar style,4k , Cartoon "} +{"id": "5000866", "video_name": "c2de4db9-8381-5df3-8fe2-f0bf9e65489a", "text": "Dug the dog from Pixar animated movie is flying in the space, he is wearing helmet, cinematic shot, octane render, dynamic motion "} +{"id": "5000867", "video_name": "2cc489da-a1b1-5749-89a9-f0c6414ffe91", "text": "throbbing heart made of millions of diddernt muic notes "} +{"id": "5000868", "video_name": "716c2397-c387-5f39-8932-1539ef1de14f", "text": "The Union Carbide pesticide plant against a backdrop of the city "} +{"id": "5000869", "video_name": "fa7fc84d-d38c-59bc-ba89-b7ed4be348c3", "text": "solarflares coming to earth, 144000 butterflies, rubys and sapphires dancing around "} +{"id": "5000870", "video_name": "e2bb172d-247c-50cc-80ea-37454a47e6ec", "text": "8. A chilling, ghostly apparition appearing in a fleeting glimpse within the house, sending shivers down their spines.studio disney reail astic "} +{"id": "5000871", "video_name": "3f1f9c38-e3e9-5974-83a2-87fdf9cf962c", "text": "A man who is struggling with parkinsons finding the lionsmane mushroom "} +{"id": "5000872", "video_name": "ad8b35c4-8193-5a3e-b15d-0f817aa03729", "text": "sprightly sunrays embellished themselves for their journey down to earth 2d cartoon "} +{"id": "5000873", "video_name": "e3067909-e985-52e3-94bd-d7723928f3f9", "text": "first human in universe, angry, f 2.8 "} +{"id": "5000874", "video_name": "6fc97496-175e-5bab-8d7c-0cf26bcad150", "text": "twins from the movie the shinning standing at the end of the hallway from inside the overlook hotel "} +{"id": "5000875", "video_name": "1e3f0881-3733-59e8-9598-a3f7734c5b51", "text": "explain the relationship amoung these five elements metal wood water fire and earth "} +{"id": "5000876", "video_name": "2e240a4b-6754-569c-b3a0-50ba37c3a815", "text": "this guy become anime Message: 1 Attachment "} +{"id": "5000877", "video_name": "9a5ae8ed-ec50-5f3a-a199-8f3af99082f7", "text": "3 people working out, 1 running, 1 doing pushups and one doing rope whips. Have video be 12 seconds with ocean in background "} +{"id": "5000878", "video_name": "aed44896-34f5-59d4-9d40-9ac1dc1ffefd", "text": "Martian rover watching the sunset on Mars "} +{"id": "5000879", "video_name": "cc83839f-f395-59c8-8f08-cd3583853881", "text": "a man walking to the most beautiful girl. He is trying to express his feelings for her. He tries to propose. "} +{"id": "5000880", "video_name": "a6a53a27-68c3-5b0b-8656-97be777129c6", "text": "stand up talking show with animater superhero big panda "} +{"id": "5000881", "video_name": "e0b0222d-b096-5b69-84a2-4683b0008a0c", "text": "Friends playing voleyball in a beach "} +{"id": "5000882", "video_name": "72cea25a-5920-53a1-b577-2292b2f0054b", "text": "Create a video where a man is holding a professional camera, aiming it directly at the viewer. The man should appear focused while adjusting the camera settings. Suddenly, a bright flash emanates from the camera, briefly illuminating the frame. The background of the video should be a blurred nighttime scene, emphasizing the moment of the flash, 8k, colorfull, cinematic "} +{"id": "5000883", "video_name": "d7dce4be-ff6b-52d1-a899-4e6c74fc6589", "text": "a raccoon at a video editing table profoundly sorry for making that hand video "} +{"id": "5000884", "video_name": "ed38f9e4-a11c-5bfe-95d9-8b50fe0d3654", "text": "guy penstester working as red team attacking a enemy system "} +{"id": "5000885", "video_name": "55ea841a-46d9-573a-b669-a57242e0627e", "text": "a person who gets a ray of white light every time he opens his eyes "} +{"id": "5000886", "video_name": "d1ac5623-e38a-5804-a506-e284ab648168", "text": "A journey through a magical forest filled with mythical creatures and ancient ruins. "} +{"id": "5000887", "video_name": "c70eeac6-70d9-530d-b630-467c7b12b902", "text": "muscular body builder in short mini jeans wave to us "} +{"id": "5000888", "video_name": "a932f23c-a852-55cc-b545-49268d899bfc", "text": "Abraham Liconlon walking on a dirt road "} +{"id": "5000889", "video_name": "803cfeb6-757f-5aed-875d-1a7f6e6880f5", "text": "fantasy powerful gold dragon breathing fire on a medieval kingdom "} +{"id": "5000890", "video_name": "08966d75-228e-5fa9-87a8-27e9de7e9057", "text": "Leading me into the mysterious and colorful world "} +{"id": "5000891", "video_name": "7b572d7a-09b9-5476-89b9-92d6cb5a35ed", "text": "in the winter forest Christmas, a cup of salad often steps with its feet towards the audience "} +{"id": "5000892", "video_name": "9af728b4-090c-5049-92f3-2713fb18ce14", "text": "The cute little panda holds a placard Message: 1 Attachment "} +{"id": "5000893", "video_name": "0db5c5e2-371b-5be0-9021-b8b18c8fd4a7", "text": "two funny space ships flying in the sky like a friends playing "} +{"id": "5000894", "video_name": "994883a0-f379-5575-9237-913f264876ad", "text": "ancient greek man lecturing in auditorium, close up "} +{"id": "5000895", "video_name": "2b47a44a-a9f9-54b4-811f-a14f13ccbc4a", "text": "imam talking to his fellows, mosque background "} +{"id": "5000896", "video_name": "8eb266c5-9af7-57c1-9de4-d59bfd240d8f", "text": "A girl sits in front of a cottage house in front of big drapes that float in the air "} +{"id": "5000897", "video_name": "dca799ff-8185-5c90-9dd2-c933e5c349b6", "text": "middleage castle and army waits in front of a bridge "} +{"id": "5000898", "video_name": "8b4c54e0-c06d-557c-b42c-eb9124b1beaf", "text": "the fighterjet bombing on building,zoom out ,cinematic picyure. "} +{"id": "5000899", "video_name": "cbe8a55c-d3b4-588b-b37d-254011d0129b", "text": "batman fighting with gojo saturo on an Indian road with traffic "} +{"id": "5000900", "video_name": "6992ba2b-bb45-5433-8adb-cee67e0d9b43", "text": "image:64656113.png, timelapse girl dancing, background fire Animations "} +{"id": "5000901", "video_name": "1f46b5c8-e417-550d-974f-bd1d582fbbb2", "text": "realictic photo of a human feet, sole, red nails "} +{"id": "5000902", "video_name": "1fcb9314-a67a-518a-84fb-8bbdecfeb705", "text": "people using bleu towel in a morocan beach "} +{"id": "5000903", "video_name": "b067d6a1-2b87-53e9-83be-4381aeec9417", "text": "Two little girls with very long and thick red and blond hair sitting on a bench with school books "} +{"id": "5000904", "video_name": "9b19e652-2d60-5392-8266-cb54e30e145b", "text": "Lily and Jake find mysterious balloons in playground "} +{"id": "5000905", "video_name": "e8e704e2-a766-5125-bf87-7b22b87c0f56", "text": "Centrifugal pumps are very efficient in pumping water Message: 1 Attachment "} +{"id": "5000906", "video_name": "5ae96f32-5a89-5109-91da-9ba6049f2936", "text": "man showing all angles of lego porsche realistic "} +{"id": "5000907", "video_name": "66e4abd9-da5b-50ce-83bb-7978b3392963", "text": "Raju sitting beneath a large, majestic tree, looking up in awe. "} +{"id": "5000908", "video_name": "806051e2-4728-5dda-bc91-e1d6ba2d6b6a", "text": "Beatrix Potter inspired the white rabbit of alice in wonderland "} +{"id": "5000909", "video_name": "e3d62613-e4d1-53f7-80c5-d3e195600045", "text": "Full body portrait of venom, swedish inspired, dynamic lighting, cinematic, ultra detailed, trending on art station, stunning visuals, creative, fantasy concept art "} +{"id": "5000910", "video_name": "b5f3270a-6ec5-5d79-9cb6-88a03dd88995", "text": "a band of maxican hamsters playing music on a beach in south of france "} +{"id": "5000911", "video_name": "8b43fecd-ba77-5518-ade2-2260397845fd", "text": "create a 16:9 video of a medium pizza with cheese and pepperoni slices the hot pizza and next to a glass of soda with bubbles on a wooden table "} +{"id": "5000912", "video_name": "382040e5-5f57-5810-9210-a6f4f8e4c449", "text": "It\u2019s not running out of someone\u2019s nose "} +{"id": "5000913", "video_name": "b79f5285-f7ea-5563-bd19-4733ee8a20f9", "text": "cartoon with a cat and a dog chasing each other "} +{"id": "5000914", "video_name": "a8624dcc-20ab-55f0-9404-b77562a39eec", "text": "At night, there is a war in Moscow, tanks are shooting at Moscow City. "} +{"id": "5000915", "video_name": "bf7d3e6d-6ec0-5b80-aee9-775da3ab8e49", "text": "Ink style,Chinese dragon flying the river "} +{"id": "5000916", "video_name": "0fe3be1f-77ff-5916-ae5e-fee3f8a82101", "text": "Winter wonderland with cabin in background and Christmas lights on telephone towers "} +{"id": "5000917", "video_name": "5f4a60a3-30ac-5e93-90dd-5b4350003541", "text": "lady smoking vape on a beach at sunset "} +{"id": "5000918", "video_name": "afa3b903-c2b6-54df-a7fb-86d5647ed901", "text": "A Royal Indain king sitting in his beautiful and gigantic court with his ministers for daily proceedings "} +{"id": "5000919", "video_name": "b16ca52d-366c-5dc0-88fe-d9bb27f2893e", "text": "Generate a clip of the moon as seen through a telescope "} +{"id": "5000920", "video_name": "3f191a94-28ed-552a-a941-f2cddf555a8d", "text": "devil burning in fire rides a board in the mountains "} +{"id": "5000921", "video_name": "9a5ca259-0f34-5312-ad5a-cbf3f0e26476", "text": "man being married to the same woman for 19 years prompt "} +{"id": "5000922", "video_name": "33562ae9-8834-57c1-ab23-fdccdca03c20", "text": "Many human skeletons are floating in the terrible sea. 4k Cinematic Video "} +{"id": "5000923", "video_name": "a91073ed-06dd-5fcc-a2c5-32441bcaa40e", "text": "grass with movement, a sunrise with the movement, dew on the grass "} +{"id": "5000924", "video_name": "b636b5de-ca92-5d74-abd7-686c1a42a515", "text": "four men sitting at a table in a coffee shop, talking about a piece of jewelry "} +{"id": "5000925", "video_name": "530ffdf8-2c42-58ee-a22c-7ebfb4a86860", "text": "sinked old ship under the sea, cinematic, 4k, details, movie style, "} +{"id": "5000926", "video_name": "3606ea0c-ed3b-5fba-a587-c1d5c08e55d4", "text": "a bright yellow taxin trying in the dessert "} +{"id": "5000927", "video_name": "7c8901d3-082a-504f-955b-c99da4afe682", "text": "adoration of the magi, 14th century heirnymous bosch, flemish painter high contrast ultra realistic, platinum engraved "} +{"id": "5000928", "video_name": "bbf7c545-d0e1-5278-888c-321bd95440a8", "text": "disney pixar style, abraham, wearing grey robe, white middle length hair, jewish old man, sarah, old jewish woman, wearing blue dress, blue scarf on head, looking both in the front camera, night background, jeweish setup, ancient times "} +{"id": "5000929", "video_name": "8f60ab1b-959d-5d53-bfe3-be82e15b1aa6", "text": "Rain on broken glass shard Message: HACKLE (Font: SANS SERIF) "} +{"id": "5000930", "video_name": "7203f8a4-f874-55c8-b8d5-0e6dd22c2d4c", "text": "a bad drawing of Mickey Mouse playing poker "} +{"id": "5000931", "video_name": "b0316f5f-e1d5-5be4-b069-cb17b8d90099", "text": "Show a student talking about hopelessness or expressing negative thoughts about themselves. "} +{"id": "5000932", "video_name": "b6b593fa-8769-5873-9157-3dc1f62d9409", "text": "Contestants must navigate through a maze filled with giant fruits. "} +{"id": "5000933", "video_name": "05114fa9-ebda-58b3-8bac-71bc8580b046", "text": "holding a duck egg yolk walking upstairs with both hands and 4 ducks came up too "} +{"id": "5000934", "video_name": "b1e354f3-8efc-5251-99db-10122ba47274", "text": "writhing humanoids in desert beksinski black and white film 1900s "} +{"id": "5000935", "video_name": "09b8075b-28a5-51a3-9ecf-aa7d853c39c6", "text": "a visually striking composition that represents the emotions tied to starting a new semester after a summer break, focusing on the themes of refreshment, rejuvenation, and new beginnings. Depict a surreal landscape where laptops are floating and intertwined with vibrant tropical flowers and proteas, symbolizing the integration of technology and creativity. Use dynamic colors, whimsical patterns, and a celestial backdrop with galaxies and stars to evoke a sense of excitement, inspiration, and infinite potential. "} +{"id": "5000936", "video_name": "d6e406c8-33e0-510b-8ab4-65cd4f539388", "text": "a man jumping in the moon with cinema style "} +{"id": "5000937", "video_name": "5ca26073-f31a-5701-85b9-dc1c2c75944c", "text": "jerry seinfeld as a warhammer 40k space marine "} +{"id": "5000938", "video_name": "1f8d352f-cc86-592c-bee8-5896e6a77102", "text": "batman talking to joker animated style in the shadows "} +{"id": "5000939", "video_name": "00d77278-f27a-5980-8a99-661d5d1903d9", "text": "a skateboarder is surfing through the woods "} +{"id": "5000940", "video_name": "038716ca-6cf0-5042-aa2e-880098d4f060", "text": "a beige labrador dog with a backpack in machu picchu "} +{"id": "5000941", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "Naruto uzumaki as a powerful character "} +{"id": "5000942", "video_name": "71c9d1e9-14b1-5d21-afdc-6ad834cad6b7", "text": "slight up and down movement of an old space stating floating in the air, clouds slightly moving from left to right "} +{"id": "5000943", "video_name": "d315f1c8-b6dd-5bac-926f-21ffdd5a7a1c", "text": "goku ultra ego standing on a building with a lot of wind and rain "} +{"id": "5000944", "video_name": "ffb78f21-27e7-5741-b695-d4829626eaec", "text": "seeing the color pattern of acquired savant syndrome "} +{"id": "5000945", "video_name": "b35fe8a2-bf27-59fd-954e-af818b1559b8", "text": "Character from video game Kenshi is shown standing in the middle of a bustling cityscape, his figure stark against the backdrop of towering skyscrapers. He is looking around with a look of confusion and awe on his face, his eyes wide as he takes in the unfamiliar surroundings. His hand is resting on the hilt of his sword, a reflexive gesture of defense. The neon lights of the city reflect off his armor, casting an eerie glow on his face "} +{"id": "5000946", "video_name": "f96df468-fa39-5cc1-8add-0cd6d4327d1d", "text": "make a beautiful image of morning "} +{"id": "5000947", "video_name": "0d159d8c-7ffc-5c26-a08f-abfa96191795", "text": "long clean river in village with fish swimming and beautiful flowers on the side "} +{"id": "5000948", "video_name": "30c010f2-50b8-52ce-b28a-a7c5a73138ca", "text": "young man smiles in a room, inside a soap bubble. sensitive environment "} +{"id": "5000949", "video_name": "a7af9122-a0e5-5cc2-93da-f3472e616dba", "text": "Monky observing two Cats teamwork with a pleased expression "} +{"id": "5000950", "video_name": "cfd763fc-6f48-5cda-bcfc-5557a8c2fa48", "text": "polaroid of a person wearing a moon mask in restaurant "} +{"id": "5000951", "video_name": "1f5dc3bd-d5f9-52b6-9e15-af45114825f6", "text": "People playing golf at a serene golf course in the midst of nature surrounded by rocks and boulders. Hyper realistic. "} +{"id": "5000952", "video_name": "cfa0bea9-5daf-5a1e-beac-eab5a2ccf4f2", "text": "3d model of cute fairy dancing in beautiful background "} +{"id": "5000953", "video_name": "6578a7f4-8e4c-5884-8344-50ce1827b031", "text": "a boy wearing crown from king "} +{"id": "5000954", "video_name": "041794ca-02c9-5c57-a543-196ce070548c", "text": "A young couple, Sarah and Mark, meet at a park. "} +{"id": "5000955", "video_name": "0cecf46e-2235-5493-aced-042e96cd5227", "text": "Cristiano Ronaldo talkink about success and motivation "} +{"id": "5000956", "video_name": "3ba0a5f5-fb47-5eb6-937e-f5fc0c58b071", "text": "tatoo in the back of a man shirt less walks in his room plays music cinematic traking shot cinematic lightings reads a book mysterious room with wired paintings \u014dn wall "} +{"id": "5000957", "video_name": "05c83a7b-1d54-592e-924e-670a5db2a69d", "text": "A youtuber telling his viewers to subscribe his channel "} +{"id": "5000958", "video_name": "e68f4bb3-86b8-5b62-8921-fc7ac6764554", "text": "manhattan skyline with super giant large moon crash into skyscrappers "} +{"id": "5000959", "video_name": "0f05df6e-36f1-5075-bebc-1341293c3178", "text": "A child riding on the back of a lion roams the jungle while the monkeys laugh at him "} +{"id": "5000960", "video_name": "a503c34a-fa24-5cbd-bec8-f1b3c72c06cf", "text": "Create an image of a mystical forest where ancient trees are adorned with glowing runes. "} +{"id": "5000961", "video_name": "11ab2aaf-8fe2-5f47-aebd-30d7297019c4", "text": "One sunny morning, the fox was out on one of his usual strolls through the forest "} +{"id": "5000962", "video_name": "3c2e06db-5065-56a1-8b89-3df74359fc4d", "text": "a sad face on a crash dummy surreal 90\u2019s "} +{"id": "5000963", "video_name": "3575b108-d8a0-5cfb-899a-bbbf81bb2c42", "text": "Tesla Cybertruck destroyed by ugly kaiju on crowded Tokyo street at night directed by Gaspar Noe on 16mm Kodakchrome "} +{"id": "5000964", "video_name": "86784b57-7511-5a76-b90f-fff504b59749", "text": "cute 2 year boy running on grass "} +{"id": "5000965", "video_name": "ee58a805-c88a-5cd2-9208-bf635118c6fa", "text": "Billiards, concentrated young woman playing in club "} +{"id": "5000966", "video_name": "dd787b26-b4b1-504a-b957-2e81eb4626ea", "text": "a baterist playing drums, night bar, "} +{"id": "5000967", "video_name": "e581111f-46ce-5938-956f-8fa4df79fb6c", "text": "8mm footage of beautiful girl wearing short denim skirt on the backseat "} +{"id": "5000968", "video_name": "7c994b8c-d687-5cc1-911f-81e37b668eb7", "text": "A set of musical instruments playing a synchronized symphony. "} +{"id": "5000969", "video_name": "a5658756-e86f-5bb3-bd5a-122f015f9650", "text": "a realistic cinematic scene of a whale jumping out of water making a big splash from a tube in a bathroom "} +{"id": "5000970", "video_name": "f4389541-2085-542c-b73b-f319345faca0", "text": "Naruto and sasuke fighted and Naruto used his multiple Shadow clones and rasengans on sasuke , sasuke died ,Naruto destroyed total world "} +{"id": "5000971", "video_name": "b28634c9-06be-5c3c-ad2f-3399000c5cd9", "text": "a slow dolly in shot of a multicolored glowing golden forest on a goergous leafy scenery, sun set in background with shine "} +{"id": "5000972", "video_name": "31de8db3-80d9-58b4-b9ef-614be1d8cd4d", "text": "old fashioned tv sitting on a stand playing a news story "} +{"id": "5000973", "video_name": "c85ec485-b9c1-5f3e-a8eb-e082a3acecbb", "text": "creepy alien ship tunnel cave, in Giger style, uneven curved shapes, organics, dirt, mucus, thick wires and pipes, horror fiction video with coal and noise effects, black and white background, camera zoom in "} +{"id": "5000974", "video_name": "487ff00b-2e7a-5ea3-911e-552b291299f8", "text": "Beautiful retrofuturistic pink Princess castle in the style of wes anderson, hd ,8k "} +{"id": "5000975", "video_name": "da54b48b-f709-5205-ab41-c9a23e848c9c", "text": "a paper boat floating on water with a paper pirate with gun and a sword in hand cartoon style old "} +{"id": "5000976", "video_name": "1d72f463-75da-5f2d-b2e5-e7cb521fbf68", "text": "A mammoth with a large front view, lasting for five seconds "} +{"id": "5000977", "video_name": "813ee2a4-02cb-51b8-a4ce-6be7df4d478d", "text": "A rugged man with a fierce gaze stands over a trembling goat, his hands stained with blood and his knife glinting in the sunlight. The scene is both brutal and beautiful, a testament to the harsh realities of survival. "} +{"id": "5000978", "video_name": "2d79f310-5e9b-5fb1-a9ff-60e77e2d328c", "text": "The whole family is eating mooncakes and admiring the rounded moon "} +{"id": "5000979", "video_name": "87b910a4-3c83-53de-8506-c40e88d94177", "text": "a simple 3d skeleton throwing paper planes for the big crowd of the zoom denoise strength "} +{"id": "5000980", "video_name": "22099a0c-3dac-5c13-a3ff-7fc199cee0d6", "text": "An eggplant, falling through the sky "} +{"id": "5000981", "video_name": "797349a3-b117-5b11-8146-429b6738b7fa", "text": "Montage of various life situations \u2013 career, relationships, health, and personal growth. "} +{"id": "5000982", "video_name": "ada48659-a068-50eb-bd0c-03b4c0e7882b", "text": "Oona Puffin (from Puffin Rock) in Real Life "} +{"id": "5000983", "video_name": "2a849bd7-0dcf-536b-8a4f-b97b037be8a8", "text": "Set the scene in the lush Valoria forest at dawn. Sunlight filters through the trees, casting dappled shadows on the forest floor. Birds chirp in the distance, and a gentle breeze rustles the leaves, creating a sense of tranquility and mystery. "} +{"id": "5000984", "video_name": "4bb88932-ed1c-5c34-b439-44f1d0d1f03e", "text": "kitten walks by the window, anime style "} +{"id": "5000985", "video_name": "f70180d9-4dc8-5966-bb6f-ed490d5d7000", "text": "In 199X AD, the world was engulfed in nuclear "} +{"id": "5000986", "video_name": "b0769809-5618-5292-8067-042d6f21f52b", "text": "a alone boy crying at a big garden,raining "} +{"id": "5000987", "video_name": "7a30e66c-5591-52a3-826e-b9476106763a", "text": "create a video zen stones, bamboo fountain , pink spa candles, flowers, water all around, gs 5, motion 3, hyper realistic , 16:9 "} +{"id": "5000988", "video_name": "8133974b-f75b-5245-b98d-1733201f7f46", "text": "a brown rabbit jumps over the fence lands in a beautiful garden "} +{"id": "5000989", "video_name": "66861bb9-56e3-562f-b114-6a0834cefa5d", "text": "occult demon mistress emerging from pink and black smoke, jungle scenery, studio, cinematic, dramatic, intense lighting, blender, 3D render "} +{"id": "5000990", "video_name": "e718e8c3-55b2-5018-88e7-3f66114b6650", "text": "people praying a statue of Ronald McDonald in the church of McDonalds "} +{"id": "5000991", "video_name": "96cdf915-34d4-540f-9076-151c334893b0", "text": "A man is eating grapes under the tree with a gun , 3d animation, high quality "} +{"id": "5000992", "video_name": "b64f8046-696c-56d3-9bd6-82c133576636", "text": "Cinematic portrait close up of billie eilish in a dark room highly quality looking directly to camera "} +{"id": "5000993", "video_name": "020b63c3-81a9-5095-b208-4d6564a7d14d", "text": "Moonlight bathes the deserted mansion, casting an eerie glow on its neglected facade. "} +{"id": "5000994", "video_name": "8d87034e-0cc2-5d37-94f1-8647dbfcc9fd", "text": "Kratos and his son, Atreus, sharing a heartwarming moment around a campfire in a dark and dangerous world. "} +{"id": "5000995", "video_name": "5c016200-647a-58c4-9b22-ebf87cc0018b", "text": "One misty evening, Detective Evelyn Harper received an anonymous letter at the Ravenswood Police Department "} +{"id": "5000996", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "Man wakes up in hospital bed "} +{"id": "5000997", "video_name": "c905e942-2146-584e-936e-74ee7ef33707", "text": "Policemen at their station in a city near a volcano "} +{"id": "5000998", "video_name": "4f29bb26-6604-5ab2-92a3-6597080c4aa6", "text": "the girl in the blue dress is flying in the outer space, she sees the stars and planets. "} +{"id": "5000999", "video_name": "162a84ae-f9a9-56f2-a817-daead1d4da40", "text": "Crown Victoria 1986 Ford model vehicle brand new as perfect as possible and more details. "} +{"id": "7000000", "video_name": "eac455fe-e9f3-5019-bb26-89f55ecc060f", "text": "Zephyr swirls around Luna, creating a dance of moonlit magic as they move in perfect harmony. "} +{"id": "7000001", "video_name": "da4299d4-9e01-597f-bf99-0fe47a4d3fc7", "text": "a seamless looping background of a whimsical enchanted forest, with soft pastel colors suitable for a calm and magical setting. "} +{"id": "7000002", "video_name": "b42dce21-33ca-5c62-a0eb-43e98f5f2b0d", "text": "the figure continues walking and then disappears "} +{"id": "7000003", "video_name": "8c46b86e-4260-593a-94e1-39af47bcae8d", "text": "realistic movie of Roman empire in the retro futuristic year of 2300 in post ai world "} +{"id": "7000004", "video_name": "a907b0c7-fa9a-5206-86f3-3c5962b2e37e", "text": "oval like face, big eye, thin west adult men "} +{"id": "7000005", "video_name": "a896fcd0-b6d5-5bc7-9f9d-5529d72e5416", "text": "A cinematic shot from a movie of a shower head. The water turns off. "} +{"id": "7000006", "video_name": "6126f38c-bf66-5765-8ba6-60c011ff5cca", "text": "Grim reaper can use his hand in greeting "} +{"id": "7000007", "video_name": "4dc6c7d7-6efa-5303-8158-d4ed1fe29547", "text": "an angry santa running with a little girl in his arms. "} +{"id": "7000008", "video_name": "dc9ec65f-4276-5c97-8e3e-b181084c0fde", "text": "Steampunk aesthetics merge with analog computing artifacts, projecting Lady Palutena as a powerful being in an extraordinary world. "} +{"id": "7000009", "video_name": "82e45b1f-550b-55c4-9a52-145dc0e3ef7a", "text": "a tranquil landscape in the moonlight, bears are surrounded with picnics "} +{"id": "7000010", "video_name": "6c3769c0-bd2b-57d7-9d2e-4d21ee58e01a", "text": "Wide Angle Lens of a nightmarish monster standing in a dark doorway of a bedroom closet, backlit, Highly detailed, photorealistic, in the style of Silent Hill "} +{"id": "7000011", "video_name": "eec66173-3c75-59eb-b01e-aaef0b299530", "text": "iron coins fly and then hit a manhole on the asphalt, the action takes place on the streets of New York "} +{"id": "7000012", "video_name": "f0ddde1b-d23e-5ea6-9bb2-a07531103c1c", "text": "People coming and going on the streets "} +{"id": "7000013", "video_name": "6119aad0-3c1f-5d0f-ab35-599c8ed39e53", "text": "cup of coffe, squired out of the cup "} +{"id": "7000014", "video_name": "00033155-15a4-5dff-a9b9-6481dde11f03", "text": "women dancing traditional costume embroidered with sequins the kingdom of Nuevo Leon Mexico, in front of the camera realistic image "} +{"id": "7000015", "video_name": "d8e47152-69f9-55a6-ab88-c87c9e7470b8", "text": "a future prediction for the end of the world "} +{"id": "7000016", "video_name": "bcce49bf-f7f2-5bce-9b19-4ac49c4e1d0a", "text": "a bright and happy girl known for lighting up the night sky with her cheerful glow "} +{"id": "7000017", "video_name": "42609709-c0ea-50a3-9d98-e2e7acfa5b60", "text": "amazon rain foster Message: VADIM (Font: MODERN) "} +{"id": "7000018", "video_name": "414933d2-c06f-5426-a6fb-e229eef99eab", "text": "Roman soldier in Amazon rainforest. Hyperrealism. "} +{"id": "7000019", "video_name": "c2ff8b8c-9341-5f56-9a7e-c28e3c1fdf34", "text": "2 people starring into the camera, oldschool aesthetic, in garden of roses, melancholic, porcelain skin "} +{"id": "7000020", "video_name": "01623a4f-ba2b-506b-af9e-0c3b0d94976d", "text": "promt: fruits jumping up and down "} +{"id": "7000021", "video_name": "7f2fec22-6b17-5fca-b130-790a524143a6", "text": "a girl in her mistery garden,blu lighting "} +{"id": "7000022", "video_name": "a6d2edd3-2365-566d-a4cb-ec4b27151801", "text": "still Life fruits and vegetabels,in Stanley kubrick style "} +{"id": "7000023", "video_name": "bed1b635-1142-5988-803d-b1a3869e36d6", "text": "Gandalf wearing sunglasses, holding a potato, dancing with Micky Flanagan "} +{"id": "7000024", "video_name": "14a84f43-6602-519e-81c4-dc7714272135", "text": "car crashed and exploded,car explosion, voluminous smoke and fire, particles of sparks, action movie scene, "} +{"id": "7000025", "video_name": "0f376902-6696-5801-b20d-9f85e8a0afd7", "text": "As the characters explore the mansion, strange occurrences intensify \u2013 eerie whispers, unexplained footsteps, and glimpses of ghostly figures. The trailer builds suspense with unsettling visual and audio elements "} +{"id": "7000026", "video_name": "911b90df-be4f-5c87-acb0-864a3cb8494c", "text": "A crow is flying in a hot sky. In 9:16 ratio "} +{"id": "7000027", "video_name": "80e43853-1651-55f2-82d1-465805da4de7", "text": "MAN WORKING IN THE SOYBEAN FIELD UFO IN THE SKY "} +{"id": "7000028", "video_name": "9e5b5fd2-1a1a-5ee0-acab-8d3dfd0b778c", "text": "octopus still alive on a chair, black and white, hyper realistic "} +{"id": "7000029", "video_name": "8b6ee3d2-5a78-52a5-bc69-c907d6817bf0", "text": "A plane slowly accelerated and took off from the runway. "} +{"id": "7000030", "video_name": "efd50e05-517c-5b51-8ba0-aa03c6f40424", "text": "a litlle princess in kingdom story "} +{"id": "7000031", "video_name": "641c29b1-db1c-56b6-85e1-97e02703b298", "text": "Disney snowman story 3d blender it is moving "} +{"id": "7000032", "video_name": "3c3005d7-8d10-55e0-9ac1-f3152cc31770", "text": "the sun becomes a red giant and then a white dwarf, time lapse "} +{"id": "7000033", "video_name": "3dbf6980-3fc1-545f-9f7c-6f497e6579f4", "text": "modern rocket takes off from alaunch pad "} +{"id": "7000034", "video_name": "caca722e-d3ff-5571-9a74-66d07fc8b236", "text": "underground secret entrance to Area 51 "} +{"id": "7000035", "video_name": "234a3af5-15e0-5efe-ab96-ac931a05dae7", "text": "The moral of the story is that while outer beauty is lovely, inner beauty, kindness, and humility are far more valuable and enduring. "} +{"id": "7000036", "video_name": "5bfed768-bc9f-5d85-974d-d9ae7d677dca", "text": "A little squirrel in the forest, holding a nut\uff0cAnimated Illustrations "} +{"id": "7000037", "video_name": "f4eba1df-ab08-5210-9333-ceaf4a089d1a", "text": "Create a visually stunning 3D animation depicting the year 2150. Showcase a futuristic world divided into echelons with towering skyscrapers and advanced AI systems. The animation should highlight the stark contrast between the highest and lowest echelons. Ensure the animation is in 4K resolution with attention to detail in architecture and technology. "} +{"id": "7000038", "video_name": "91d1f1f1-0fc2-5b8b-b913-494d5cab5415", "text": "sailing boat sails in the sea in turkey long video 4k like real vertical "} +{"id": "7000039", "video_name": "1f98d03f-5cb3-5290-9c74-0651eef163a3", "text": "one monge ,in mountain,snow, 4k ,realism "} +{"id": "7000040", "video_name": "7afe039d-75aa-553c-a3c1-8d053c9fa953", "text": "sunny day beach with a cute pineapple "} +{"id": "7000041", "video_name": "5e096d37-debf-5064-8fc1-9663831cd29b", "text": "Introduction to the village: Shots of families going about their daily routines, children playing, and the old gas station as a backdrop. "} +{"id": "7000042", "video_name": "dbd76d72-9f62-5d0e-81bc-e04eff7f03dc", "text": "galaxy express train\nin deep space \nreal engine "} +{"id": "7000043", "video_name": "e4db7a44-be1d-5066-8689-cd397c170fd6", "text": "ed fire truck driving through the streets pixar style "} +{"id": "7000044", "video_name": "31699398-3280-575a-ae31-524ade982bc7", "text": "Ukraine aspired to align with Europe, fostering cooperation and shared values, while Russia sought increased power and control over its neighbors "} +{"id": "7000045", "video_name": "e14c7f02-d27b-5d5f-af8f-8c682662983d", "text": "bird flying and robots fighting in air, zoom in, 4k "} +{"id": "7000046", "video_name": "08757226-da08-5066-b52a-1b541b86de5f", "text": "As the Horizon approached the Quantum Void, alarms blared, and the crew members felt a strange vibration "} +{"id": "7000047", "video_name": "f390948b-09a7-5851-8422-dbe46fd6b6c3", "text": "Woman standing in the rain with wind in the hair "} +{"id": "7000048", "video_name": "297acfaa-4c4a-5d2e-87fa-fa94b0f68bc1", "text": "a playful young boy. 3D HD Disney "} +{"id": "7000049", "video_name": "608d0345-8021-530a-aa31-5adc9d0c754c", "text": "Illustrate the grand finale with Lion, Monkey, and Elephant planting the magical golden seeds, and the jungle blossoming into a breathtaking paradise. Show the jubilant expressions of the characters and the transformed landscape, conveying the message of friendship, teamwork, and the magic of nature. "} +{"id": "7000050", "video_name": "78017f74-88c2-51a1-a539-80a8eb0e1522", "text": "Immense mountain chains covered in vegetation and towering canopy trees; these appear to form a thick green fabric over their summits "} +{"id": "7000051", "video_name": "83f065db-7a61-58ab-ba52-eb4a6b883190", "text": "head of the deer looks left and right "} +{"id": "7000052", "video_name": "6891535a-3da6-5441-be6e-a915212a89f5", "text": "liminal space, dreams of love, forgotten memories "} +{"id": "7000053", "video_name": "997cedb2-69eb-5c69-b66c-8c216f5a0476", "text": "a Hallowen bunny with a mask smiling "} +{"id": "7000054", "video_name": "9352de03-d237-5c27-9db0-cb3098f35d7a", "text": "doctors doing autopsy in an old hospital "} +{"id": "7000055", "video_name": "99081d13-ffc7-5e2e-af3b-afe00fb042eb", "text": "a child girl with her three friends "} +{"id": "7000056", "video_name": "9bc287da-054b-540a-a2de-de7069e6ee69", "text": "massive alien aquarium fish with pink coral reef "} +{"id": "7000057", "video_name": "77108c73-5591-552e-af09-353c765f4cb4", "text": "breathing girl, drinking hot coffee, close and open eyes "} +{"id": "7000058", "video_name": "2aff39f1-d8b3-5136-8ace-5fb04ec0c4bb", "text": "A circular photo frame surrounded by fire wings on a green background "} +{"id": "7000059", "video_name": "bd237eeb-127c-546d-aff5-19afb9a904f9", "text": "Gian Lorenzo Bernini, sculpture animation of a king dancing in a hall "} +{"id": "7000060", "video_name": "31b653b0-117f-5259-b0ea-b671194b3c02", "text": "Akbar rewarding the honest man with a genuine reward. "} +{"id": "7000061", "video_name": "61896207-446f-5655-bc6b-cb16b771dadb", "text": "a beautyfull girl image for making love story "} +{"id": "7000062", "video_name": "b1c9e76a-8e81-532e-91fa-040c68c75092", "text": "a video of 10 seconds long which can go viral on youtube "} +{"id": "7000063", "video_name": "6ea92178-2178-5238-965e-938baf297c06", "text": "A chicken relaxing at the beachside sunset beams "} +{"id": "7000064", "video_name": "073ccc14-25c7-5abe-a8cd-acd21e2df401", "text": "He met many people, but he never made any real friends. "} +{"id": "7000065", "video_name": "99d64fce-1799-503f-a08e-a1daa9153f33", "text": "a man waiting near the india gate realistic vedio at night "} +{"id": "7000066", "video_name": "323baf9f-6061-5248-b362-2d1cb008ab2d", "text": "A girl coming out of the sea on a hot summer day "} +{"id": "7000067", "video_name": "e3415512-b3e6-55b6-a7d9-830415ceb27a", "text": "a woman on a motorcycle speeding past the camera position "} +{"id": "7000068", "video_name": "d7ece5da-d544-5e81-9485-1dce798d8536", "text": "a country church in a small town "} +{"id": "7000069", "video_name": "71a334e9-677a-55bf-a4d1-f4cbf1dd5bce", "text": "tree catching fire in the dark horror film a24 studio "} +{"id": "7000070", "video_name": "7732907e-c0e3-5e80-aef1-69b4be5801d4", "text": "a wealthy man swimming in money "} +{"id": "7000071", "video_name": "d830ae74-2279-5f39-ba10-63ede6adcb19", "text": "A 6 year old boy gets a diaper change "} +{"id": "7000072", "video_name": "ed05af43-41f1-59d0-bf62-db6ec41939f4", "text": "1970s space movie and enchanted castle "} +{"id": "7000073", "video_name": "ad4ebbee-a76b-5d1b-9e62-68532543c4dd", "text": "a clay animation of planet earth spinning around "} +{"id": "7000074", "video_name": "00613754-4330-5b5f-a8cb-4d766c9517b8", "text": "Raksha Bandhan wishes with the rakhi spinning "} +{"id": "7000075", "video_name": "740847e8-97d0-5bed-848a-89803f16ed14", "text": "dragon on the each with sea birds "} +{"id": "7000076", "video_name": "6bc59fdb-26f0-5e36-91d0-9abcf45c381a", "text": "a beautiful woman cloning a giant staircase with a green dress "} +{"id": "7000077", "video_name": "3fd660c7-e222-5728-b56e-5d7efea30e29", "text": "1 girl, pretty, blonde, is smiling to the camera "} +{"id": "7000078", "video_name": "87d424c7-ce50-543e-85a5-85a2b9044053", "text": "Chameleon Curious Exploration: Chameleon Show Cleo strolling through the vibrant jungle, her eyes wide with curiosity as she hears the rhythmic beat in the distance. "} +{"id": "7000079", "video_name": "b043937f-92c0-5a4e-946a-c11941b197f9", "text": "in the sun ,A monk sits inside a glowing lotus flower and flies high in the sky "} +{"id": "7000080", "video_name": "0c184309-54b6-5641-8f97-e03ec179278d", "text": "buddha in the style of H.R. Giger "} +{"id": "7000081", "video_name": "192eb74d-4594-5b87-99df-4321b86f54cf", "text": "a man talking to the universe 1 minute "} +{"id": "7000082", "video_name": "366b4920-bede-5c76-9037-2d474d9d7916", "text": "city ruins after a destructive chemical explosion as background,camera focus on the can "} +{"id": "7000083", "video_name": "d53b3cb5-8382-53a8-b4a7-bd834ad13f1b", "text": "4k realistic Robots servs Humans Features City, slow motion "} +{"id": "7000084", "video_name": "bb41bcb9-095e-5502-8cd1-f60f7629e475", "text": "electron microscope view of a cell "} +{"id": "7000085", "video_name": "7e74e46d-0523-5a9b-bbdd-00649061ef13", "text": "two girls standing hand in hand in feont of a burning city. Hyperrealistic. Realistic. 8k "} +{"id": "7000086", "video_name": "01b62dbf-cea4-5860-a685-365a043f4a03", "text": "Create an escape from an incredibly scary monster, in a gloomy, cloudy forest "} +{"id": "7000087", "video_name": "350390a2-5291-5aae-ad69-7cbe326fbbfe", "text": "dnd group run out from flying dragon "} +{"id": "7000088", "video_name": "1a9861a2-55cd-52e4-80fc-d3c7255a4178", "text": "A beautiful red flower that burns "} +{"id": "7000089", "video_name": "9d60e134-7ced-5222-aaf5-62344264acbd", "text": "the story start from a boat and and character name is luffy started his adventure to become the pirate King the camer at his back "} +{"id": "7000090", "video_name": "cf1b9402-606c-513e-868d-50ee09bbd608", "text": "Harry Potter and Hermione talking in the Hogwarts library, unreal engine, "} +{"id": "7000091", "video_name": "36c16077-b8ac-5159-85a0-f05782ea3268", "text": "a real black wild dragon in the monitor wants to eats the man, and the man move back and afraid of the monitor "} +{"id": "7000092", "video_name": "4f66fb4f-1f50-5d6b-b669-6c12d965c70c", "text": "an anime character with the power of fire fighting with an alien on moon "} +{"id": "7000093", "video_name": "16276ded-6337-58c6-bfdc-02532d16b3dd", "text": "large group of people celebrating outside "} +{"id": "7000094", "video_name": "de01b960-cd42-5312-b56e-5e793d99fd21", "text": "At night, when everyone is like this, Arjun goes towards the mansion. The house was dark and a terrible noise of wind was heard. Arjun entered the mansion step by step. "} +{"id": "7000095", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "Pablo oscobar with Indian old men "} +{"id": "7000096", "video_name": "94c28634-333a-5b71-a4f4-3c16a377a7b9", "text": "Walter White prepared a million kilograms of drugs "} +{"id": "7000097", "video_name": "573ef3ef-5f17-51bd-aa6f-3506b52e6d9c", "text": "Tha saga keep rolling, the horse hogan reach the end of the racetrack winning the kentuky derby, people and horses are amazed that he is finishing the race in first place. "} +{"id": "7000098", "video_name": "2750fecc-7231-567f-a1a7-34e70c0c0eda", "text": "Highlight Elephent wisdom and leadership among the herbivores.cartoon "} +{"id": "7000099", "video_name": "631d197a-410f-5215-a865-4d06ceb7b91c", "text": "liked a video of silent film,actress goes to open front door,old footage,shallow focus "} +{"id": "7000100", "video_name": "8eb54040-d9eb-550d-95cf-dcee8cb044df", "text": "4 people aged approximately 20 explorers with flashlights, showing the tension on their faces in the face of sinister ghosts "} +{"id": "7000101", "video_name": "daead92b-07e4-5277-a860-d714fc16fc22", "text": "a man making a chritsmas wreath "} +{"id": "7000102", "video_name": "3fa22e7c-f364-5828-9d0f-e238cb8224ca", "text": "Max enjoying a moment of quiet reflection in a garden during the wedding, highlighting his peaceful and contemplative side.Animated cartoon "} +{"id": "7000103", "video_name": "7eddce39-70fa-5d8b-b86a-c3ec866a219b", "text": "Tracking shot through a server room cenematic 8k "} +{"id": "7000104", "video_name": "38dfb5dd-1a56-5fa8-8223-91c164bb0a7c", "text": "create similar images in angry happy smilye talking weeping face expression and hands accourdings to expressions Message: 1 Attachment "} +{"id": "7000105", "video_name": "f4f6d78f-fb0c-5310-b2f7-66f12a9801fc", "text": "headshot of British actor playing Julius Caesar, monologue, highly detailed, cinematic, excellent quality "} +{"id": "7000106", "video_name": "f0c6f223-cead-5594-8c00-7d52623edfee", "text": "Japanese impereal flag 1938 blowing in the wind "} +{"id": "7000107", "video_name": "bdcccf17-cff8-568f-9b3b-52e2d088cc9a", "text": "moses walking to mountain talking to god, hyper realistic "} +{"id": "7000108", "video_name": "5285d9e1-7dd0-5459-afd6-7b5d1e30166a", "text": "the 15 people, dressed white clothing, fly to heaven "} +{"id": "7000109", "video_name": "9c92d0be-e135-5916-a6f7-766f7cae214e", "text": "sitting around a dining table, hands joined in unity, sharing a meal. "} +{"id": "7000110", "video_name": "6627dfce-246c-5a91-8404-9ceb837a1af1", "text": "dark faces in a rock wall of a cave, black and white, old classic horror movie style "} +{"id": "7000111", "video_name": "862daa86-4386-5b0a-b2fa-d7ab3eaad4f6", "text": "3d yoga pose of elephant on beach "} +{"id": "7000112", "video_name": "79987a31-d60c-552c-ad96-b034b5b2145e", "text": "an extremely cute highly detailed kiddy koala, sitting at a window seat in an IKEA restaurant. He looks extremely happy. "} +{"id": "7000113", "video_name": "ecd27fb6-2ec5-56cf-8013-f835b00fcd26", "text": "robot worrior running at the flash speed superfast "} +{"id": "7000114", "video_name": "e442321e-a2a4-5d30-93e7-f932bf06b0ec", "text": "disney style, A cute cartoon rabbit with random mood and random pose, disney style "} +{"id": "7000115", "video_name": "bf2f1f45-3f0e-5231-b8c8-ffe965c12826", "text": "a Dutch VOC ship is arriving at the coast of Indonesia. Shot by Roger Deakins "} +{"id": "7000116", "video_name": "6bb2d44d-25df-5ce8-b526-5d85ec9e2df1", "text": "beautiful woman lies in hypersleep chamber box, transparent box, futuristic design, in spaceship, inside box woman breathe makes weak smoke, because cool, hyperrealistic, high resolution 8k "} +{"id": "7000117", "video_name": "624a83a3-ea38-5639-a0e6-962d7aa0ceb3", "text": "a rainy scene with a cactus growing "} +{"id": "7000118", "video_name": "c1bb7b97-548a-5519-8d2c-ae88b87a6678", "text": "a farmer in Afghan village setting with his dead cow and feeling sad "} +{"id": "7000119", "video_name": "fa6bad8e-19b2-5dba-96b6-225b79e98503", "text": "Their journey was filled with challenges, from crossing a wobbly bridge over a bubbling brook to deciphering riddles left by mischievous forest creatures. Along the way, they encountered a friendly owl named Oliver, who became their guide through the enchanted woods. "} +{"id": "7000120", "video_name": "963aa6fa-371e-5a3a-870b-f830c78aa3a5", "text": "dark souls knight walk cycle, magical lighting, dark and moody, dramatic lighting "} +{"id": "7000121", "video_name": "3d73c789-3fb8-5cd6-bd23-3e45f72c244d", "text": "I want the grains to move "} +{"id": "7000122", "video_name": "3a0c6a44-0b47-5deb-80b7-8ea9241867e2", "text": "young girl standing in a field of candy canes and marshmallow clouds. 3d 8k "} +{"id": "7000123", "video_name": "fcab7fda-3bb2-59ce-a4f7-95ca7b33a8ec", "text": "Disney style boy opening an enchanted locked chest under an anicent grand oak tree. "} +{"id": "7000124", "video_name": "c04b90f0-9cb2-5272-b2cf-de8a91aebbf2", "text": "Palestinian people near Masjid e Aqsa holding their flags "} +{"id": "7000125", "video_name": "ea4dde53-4504-5136-bdfd-42f5c8745658", "text": "The boy dreamed in his sleep that the goddess was slowly flying towards him "} +{"id": "7000126", "video_name": "7adfea4f-301e-5e08-96ff-ecbc7d41cc89", "text": "Adam Driver and Shawn Mendes moving up a string "} +{"id": "7000127", "video_name": "a0ada29c-0773-5f2f-b049-738d838f1f7c", "text": "The cat is normal size, not so big. "} +{"id": "7000128", "video_name": "a2ff59f8-705b-5dba-9e03-c7fe8187ffa6", "text": "A blue Porsche 911 drives through the snowy forest and then crashes into the glass and transforms into a purple timonchess inscription "} +{"id": "7000129", "video_name": "9df4c2da-20f3-54b2-ad93-bf9c22b8f950", "text": "cartoon pop art poker chip spinning 360 and camera rotating around with it "} +{"id": "7000130", "video_name": "051baf4f-e0b2-5fe2-bcb1-019af35a166f", "text": "movie, villain woman with dark purple colors sitting on her throne bobbing her head with a smirk "} +{"id": "7000131", "video_name": "71658402-cfca-5927-b8b9-a76b746ba64d", "text": "a man shouting from a close rice bag "} +{"id": "7000132", "video_name": "b3155646-9331-5f3a-a8dd-7f465a5d220e", "text": "alien ship falling down to earth with fir trail and "} +{"id": "7000133", "video_name": "d7e87ac8-eab9-5578-9dc4-7a66ef620fa0", "text": "Describe the beautiful girl setting on scooter "} +{"id": "7000134", "video_name": "b243631f-76d1-5a60-b340-4ef645868c93", "text": "bald eagle landing on the moon "} +{"id": "7000135", "video_name": "a5180481-23c7-5506-8b5f-f30bbe4012a2", "text": "In the style of cyberpunk, a trailer for a war between AI robots and humans takes place in the middle of an ancient century. "} +{"id": "7000136", "video_name": "028b8923-6f50-5a7b-ab35-0ca2de092e0a", "text": "man on the beach enjoying the fresh sea air "} +{"id": "7000137", "video_name": "7179d018-cd7e-579a-a47b-6548c46c6316", "text": "A rabbit with a school bag on its back is chasing a butterfly in a flower field "} +{"id": "7000138", "video_name": "48d50a51-4ab8-5de4-90b3-928de9b60989", "text": "partying dancing talking crowd bar evening, uhd, cinematic motion, realistic "} +{"id": "7000139", "video_name": "0478d931-6c16-527f-8497-b62195f02cd5", "text": "clouds move fast, stars twinkle bright, the trees dans in the wind, the grass swing gently"} +{"id": "7000140", "video_name": "2123e5d8-1477-5bbf-a78d-d6fa53a17cb3", "text": "a short red fuzzy cyclops with a purple bandana around neck walking throught the new mexico desert "} +{"id": "7000141", "video_name": "66666ff6-688d-50e7-b3cd-01b940388589", "text": "Money as a Tool: Generate an image that metaphorically depicts money as a versatile tool, perhaps with a hand holding a currency note transforming into various positive symbols. "} +{"id": "7000142", "video_name": "d7bf8e21-e820-5fbc-82dc-1a6bd4642cf6", "text": "vampire nightmare in the style of haxan "} +{"id": "7000143", "video_name": "c6d99eb7-00b4-592d-aded-bb93e8ef913a", "text": "The US flag and the British flag waving with background of blue sky "} +{"id": "7000144", "video_name": "19653da3-f050-5e6b-ac4b-f68f0441d5aa", "text": "a girl stand on the street which is cyberpunk style "} +{"id": "7000145", "video_name": "2cd802cc-a908-58d1-b633-4501aa5d196f", "text": "optical illusion transforming alien to human face "} +{"id": "7000146", "video_name": "33ffa571-5994-592b-9621-fbcd4d76a539", "text": "Imagine Sparkle realizing that her true magic is in making others happy. "} +{"id": "7000147", "video_name": "e6bfbfe7-afc1-5b40-a5e6-e42096026349", "text": "A city of the future illuminated by fluorescent lights, with skyscrapers evoking futuristic geometric shapes, accompanied by the phrase "} +{"id": "7000148", "video_name": "8f97ad96-99c9-5fa8-aaef-dd3afd48cf47", "text": "Douglas Trumbull effects 2001 space odyssey "} +{"id": "7000149", "video_name": "1d75649b-1ee0-5ea7-adbf-35db02481fe8", "text": "The ship heads into space, with the obsessed astronaut, talking to the letter as if she were his beloved, believing that she is waiting for him there. in little dolls with flat colors "} +{"id": "7000150", "video_name": "a0f5c499-10fc-5927-aab2-88b5987c68fe", "text": "leather texture close up well lit on a dark background "} +{"id": "7000151", "video_name": "560cc975-b4c0-521e-9bc3-cdcf7b2a0860", "text": "Anime Style, 15 year old Japanese Goth girl and her Robot Gorilla, epic, in the style of Studio Ghibli "} +{"id": "7000152", "video_name": "0711e623-61dc-5400-a4b9-e1f6bd0cdc8b", "text": "generate a video 8k about Saddam Hussein doing gojo saturo domain expansion hand gestures "} +{"id": "7000153", "video_name": "43ecf491-197f-5da0-91b9-f0c3c3088c66", "text": "fulgore videogame character dancing in a birthday party "} +{"id": "7000154", "video_name": "c5c3219b-fb91-5fdb-87fc-64cf84ce62db", "text": "mermaid swimming in a turbulence flow under water 4k cinematic motion "} +{"id": "7000155", "video_name": "4ef65874-12d7-5ebd-9ca3-96a12c2f7930", "text": "Create a scene featuring a sports event in Australia where the Kangaroos (rugby league team) or the Wallabies (rugby union team) take center stage. "} +{"id": "7000156", "video_name": "10819d13-ee2e-5787-9b38-190dba97e588", "text": "Peter Griffin character in family guy series married with Marge Simpson "} +{"id": "7000157", "video_name": "19860456-7c87-5204-98d6-153befd2a791", "text": "Biggest fire in the world, giant burning forest, helicopters, satellite view of a burning forest "} +{"id": "7000158", "video_name": "b23f4783-3ff4-5495-8afe-6c0aa7a84733", "text": "anime girl dancing on stern ballet "} +{"id": "7000159", "video_name": "43b2b830-d465-5f1f-88a8-fef400f30245", "text": "large golden dragon on a mountain, small African grey parrot flying nearby "} +{"id": "7000160", "video_name": "8994419c-f2ca-5a8c-a19a-d5ee7339c444", "text": "in the style of outsider art, 3d "} +{"id": "7000161", "video_name": "087f0aa1-a1cf-59a0-bd7a-38260a07a97b", "text": "a crowd of thousands of happy danes with golden crowns, golden crowns falling from the sky, confetti and balloon "} +{"id": "7000162", "video_name": "d3119929-4c5c-5d57-800e-601d6285f757", "text": "film stodio objects gathering around the word entertainment followed by popcorn exploding and covering the scene "} +{"id": "7000163", "video_name": "01943516-2d6b-52c3-949f-6f68c1f95e5e", "text": "Miley Cyrus singing The Climb on a stadium tour. Hd. hyper realistic "} +{"id": "7000164", "video_name": "ceb713c5-2cd3-5936-a0ea-2a5ce05c5064", "text": "The city is enveloped in an eerie silence as strange symbols appear in the sky. Maya, ever the curious investigator, pulls out her phone, her eyes reflecting a mix of fascination and determination. "} +{"id": "7000165", "video_name": "e0dd229d-491d-530d-afe2-20fcc87fab88", "text": "people walking on wallstreet Message: Smart Contract (Font: MODERN) "} +{"id": "7000166", "video_name": "4047f4f8-6eb1-5612-8f73-52fed2baf95d", "text": "artifical intelligence become very dangorus for world create video 1 minute on this topic "} +{"id": "7000167", "video_name": "19d37ca2-31c7-5673-8c62-06e568027e4d", "text": "animated version of Elon Musk joking about rocket explosion "} +{"id": "7000168", "video_name": "f0ab4e6f-d509-5f17-a1c2-633bf39d3fc0", "text": "a boy riding bycycle Ghibli style animation "} +{"id": "7000169", "video_name": "7d991813-7461-5900-bd36-acbc1c798fef", "text": "Sailors walking off of a ship "} +{"id": "7000170", "video_name": "5f77457c-6575-541e-9e2e-db879fade780", "text": "Bellydancer dancing.\nIt includes movements of the hips, abdomen, and torso. "} +{"id": "7000171", "video_name": "1b13cbac-0f00-5121-be80-3eed8b1f75c5", "text": "me winning the WSOP event at Cherokee Casino "} +{"id": "7000172", "video_name": "00b79cab-f1cf-5057-9f36-e72a2f12cd6f", "text": "very high quality video, movie quality. beautiful girl in red skirt dancing. "} +{"id": "7000173", "video_name": "b0fa9e94-7569-53d4-95a5-3eaf129d53bd", "text": "cinamtic cuber punk image of a Ring master talking "} +{"id": "7000174", "video_name": "e1309f03-0765-56fb-b3dd-36c4e7cdfa62", "text": "a child putting a penny into a clear jar daily "} +{"id": "7000175", "video_name": "23dedb4c-0172-542d-a094-31eb4d55302c", "text": "gandhi speech the good words gandhi defferent age groups are stand back side "} +{"id": "7000176", "video_name": "ee087078-d43d-579d-b3f4-da884e6c477d", "text": "Shining sister knows no shadows Utters mirage words To rolling dunes And your parched eyes "} +{"id": "7000177", "video_name": "5ee976f1-182e-51db-ac81-a139067dd69b", "text": "The computer screen suddenly flickers, and a line of text appears: Hello, Chris. We are the Star Exploration Organization, and we invite you to participate in a special mission. "} +{"id": "7000178", "video_name": "581e9e3f-ab1e-5d63-b8be-2b2d4dad3aac", "text": "One day, the bird was sitting on a tree. She was sad. Just then, he came to have an elderly owl. The owl was very knowledgeable. Creat cartoon "} +{"id": "7000179", "video_name": "cb3e57e3-5236-56b4-bddc-a719a4477f8a", "text": "vegeta on a boxing ring face to face to mike tyson "} +{"id": "7000180", "video_name": "38c38d18-5a69-5f2a-8013-07b30cf85b80", "text": "A little girl named Whimsy with sparkling eyes. "} +{"id": "7000181", "video_name": "5f195a8f-9ff3-526b-a3e6-0209aeb65584", "text": "In the golden hours of youth, we tread lightly Unburdened souls chasing dreams so brightly Every moment filled with laughter and pure delight Embracing the magic of life, our spirits take flight "} +{"id": "7000182", "video_name": "289bf94c-a126-5e44-90a2-0450843b160f", "text": "a trubocharged sports car in the mountains "} +{"id": "7000183", "video_name": "76b568b4-9708-5501-89f8-22225a9dc1d7", "text": "guy hire a new sound design team "} +{"id": "7000184", "video_name": "f27dc431-311a-5c10-b2cb-3e658e41e5ec", "text": "a beautiful woman with long black hair and light skin color, dressed in a long black dress, in a beautiful landscape in the country of Africa with several African children dancing and singing with her "} +{"id": "7000185", "video_name": "532bd840-0860-5127-832a-28480f7db2a9", "text": "a college girl is typing in front of a computer "} +{"id": "7000186", "video_name": "e8877eca-14bc-52d8-b5b8-6358d3db9031", "text": "a water droplet slowly dripping and forming a milk crown as it hits the surface. "} +{"id": "7000187", "video_name": "6fc255e7-7178-5ed5-8d10-35bfdbb7b6aa", "text": "a young guy executive on the phone walking across street intersection, lots of people, traffice, day pixar look "} +{"id": "7000188", "video_name": "913a4069-60da-5c91-930f-2eb5ad8e745e", "text": "a girl walking in the streets at night, scared by a ghost, manga panel, grayscale, manga drawing "} +{"id": "7000189", "video_name": "75b86db4-9722-5d63-8d62-55d5b6a72fae", "text": "robots driving ubers Message: firstround (Font: MODERN) "} +{"id": "7000190", "video_name": "f88ac9ea-cb98-53d8-a904-966eba625317", "text": "green honda civic x coupe and white honda civic x coupe si driving together on the road "} +{"id": "7000191", "video_name": "231b9abd-1574-5dc0-9af0-fac56732d3c0", "text": "a child asking his mother for juice which she is pouring into a glass from her jug \u200b\u200bfull of juice pixar style "} +{"id": "7000192", "video_name": "a299a85a-4715-5ac3-846c-d1155266d455", "text": "naruto in a water background with a zoom out from the camera and sasuke in a waterfall "} +{"id": "7000193", "video_name": "a0d339b9-9f1f-507a-97de-0edc1a3c06e5", "text": "Showcase Homo erectus in diverse habitats, adapting to their surroundings "} +{"id": "7000194", "video_name": "1e334ec6-9652-5457-bbba-5e7a06f745f4", "text": "young couple walking a puppy on a sunny morning "} +{"id": "7000195", "video_name": "07f3273f-29ee-58d6-a283-485c03d3d0d0", "text": "karesansui japanese rock zen garden, residential front yard, low maintenance. Realistic, cinematic lighting. 4k image "} +{"id": "7000196", "video_name": "b20cc866-ed68-577f-af73-61182e52a920", "text": "A monster charging in the Washington state mountains, scary, creepy, approaching rapidly, growling, in the style of 35mm documentary, 4k, high resolution, depth of field, highly detailed, ultra realistic "} +{"id": "7000197", "video_name": "268ba4a2-8286-5220-94f3-e7914ee97f60", "text": "a big bird with big feathers shining in sun "} +{"id": "7000198", "video_name": "4fd0bf59-5fff-5f03-8627-69a0ed0ee972", "text": "make him smile and move his head slightly with no distortion "} +{"id": "7000199", "video_name": "5002e329-a428-5c70-9483-35a473a7cafc", "text": "A wooden mask is situated on a rock within the forest. "} +{"id": "7000200", "video_name": "f048f355-45b8-594f-af3b-4d0e7034fe91", "text": "A Japanese beauty is playing basketball while dressed in a Slam Dunk basketball team uniform "} +{"id": "7000201", "video_name": "c793bee3-ce06-5a08-9da0-d63de5de983a", "text": "entrance to Atlantis add fish swimming movement and vortex to image of gate "} +{"id": "7000202", "video_name": "a46faa13-8355-5837-962b-14ee729599d9", "text": "beard Man long hair brown skin swimming in ocean among giant waves "} +{"id": "7000203", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "cartoon illustration of little lord Ganesha with beautiful smile happy face clear face in flower garden in sunset "} +{"id": "7000204", "video_name": "c912d7ec-5a0d-513e-94ba-d974f6d9577b", "text": "a sword of law in ice standing on a pedestal in an icy and snowy cave. The hilt of the sword is decorated with a metal ram skull, and blue runes are inscribed on the blade. "} +{"id": "7000205", "video_name": "aec22f44-caf5-5e6c-b771-9e1a72e2ab42", "text": "baby goat hiding in the bush "} +{"id": "7000206", "video_name": "a2fbbfbc-415d-50d2-a37b-c846e891c5e0", "text": "A man in black shows off his laptop. The screen shows a cyberpunk armored soldier. "} +{"id": "7000207", "video_name": "28683db7-5455-5d37-84e4-71be2f57f5c5", "text": "I am not your missing link Let me tell you what I think I think you could use a mint Take a hint, take a hint "} +{"id": "7000208", "video_name": "f44b0093-5840-5fc8-8b84-431597de6544", "text": "a skeleton warrior wearing a cape and armour going for a hike in the irish hills, moody, foggy, extremly detailed, 8k, sharp focus "} +{"id": "7000209", "video_name": "b154312a-85bf-5535-a232-244685d6e236", "text": "FOREX TRADING BOT Message: TRADE WITH JJ (Font: MODERN) "} +{"id": "7000210", "video_name": "50a6ab2b-3971-5f28-8164-1214ab17dc6a", "text": "close up fast zoom of 1970s skateboarder wincing in pain "} +{"id": "7000211", "video_name": "819c9d65-bcd1-579b-b0f1-5f4103b5ac26", "text": "shinning small millions of stars shine in a forest "} +{"id": "7000212", "video_name": "417e93f9-e6b0-515d-ad18-787eacef81e6", "text": "a statue of a man in a long black dress, concept art by Clive Barker, polycount contest winner, vanitas, darksynth, steampunk, unreal engine 5 Message: 1 Attachment "} +{"id": "7000213", "video_name": "7bd13b67-a577-50f0-bdf7-fcd1db2f1095", "text": "90s, dreamy core, 3d animation, disney, a cute bunny is eating cereal, colorful cereal, cereal box, carrots "} +{"id": "7000214", "video_name": "c2caecb7-4162-5f10-a782-f6bbb95b6649", "text": "a white butterfly flying upwards from hel and onwards towards a blue sky "} +{"id": "7000215", "video_name": "68f95ac6-5326-5034-872e-88918c48b7b3", "text": "prompt: show me general knowledge questions with a timer and answer with four options "} +{"id": "7000216", "video_name": "2dce6b48-83d1-5700-a9de-8f5a06710044", "text": "teenager with leather jacket and redand black mowhawk Message: Bangarang (Font: MODERN) "} +{"id": "7000217", "video_name": "dd0560c2-6804-5574-896e-4d3add12ddf2", "text": "biplane doing a loop with clouds in the background "} +{"id": "7000218", "video_name": "dc9e752c-d631-5a67-aa1a-689f1e299f93", "text": "Bari taking selfie with the pyramids "} +{"id": "7000219", "video_name": "d39e52a5-50a0-50c6-8b80-b7244f68cee0", "text": "Jack and the villagers often gathered around the fire at night to hear his stories. "} +{"id": "7000220", "video_name": "2eb37161-d7e8-53c5-9b0a-f003188307b1", "text": "On the black background, in the center, make a purple aura that turns into yellow sparkles, which then turns into a moving road and then turns into a flame "} +{"id": "7000221", "video_name": "35aed1d9-b055-528a-9f37-57cf36c754fd", "text": "A boy with round face and sadly looking at something "} +{"id": "7000222", "video_name": "8028994b-153b-5380-9ad4-e38ba30e53e9", "text": "Aerial picture of french coastline in 2023 plunged into the dark seen from 500 meters above ground at night under the moonlite with horizon visible against a starless clear sky "} +{"id": "7000223", "video_name": "0fa99d4a-3765-54f3-b976-46fdcf0c2110", "text": "video show a plate with delicious food (Aap khaye thali mein), and finally, a child happily sharing with others (Munne ko dena chaar). ar 16:9 "} +{"id": "7000224", "video_name": "6e09871d-14f3-55b5-9bb0-0f7e1f5fad13", "text": "A man with an athletic physique wears a swimming trunks, he is jumping into the water from a cliff, cinematic shot, cinematic lighting "} +{"id": "7000225", "video_name": "21678754-7e99-5076-9785-978ee73ed5a9", "text": ": Fish mentoring the young fish and sharing his wisdom. cartoon style "} +{"id": "7000226", "video_name": "90ba45b2-dd35-546c-a4ca-3a55e6f17253", "text": "a high intellegent race of aliens flying into the earth atmosphere to lay to rest a fallen comrade "} +{"id": "7000227", "video_name": "12ad1e0f-34e8-5286-824f-497f91618da1", "text": "A couple of men and women, on a blue beach with white sand "} +{"id": "7000228", "video_name": "7fc5df06-7c96-5217-bd10-5a05db4e05bf", "text": "Tokyo skyline at night, neon lights shining brightly "} +{"id": "7000229", "video_name": "b56b848d-3511-55ab-8773-a9d7e1f4022b", "text": "A chicken skiing down a mountain with lots of snow. it does a backflip. "} +{"id": "7000230", "video_name": "5d026b2b-3198-53d6-a951-8adb0af10b50", "text": "window anime girl rain sitting on a bed with cat chill "} +{"id": "7000231", "video_name": "46089949-2c1b-5b63-9e58-8c178a1cc23d", "text": "ultra detailed, scary black frog, a halloween movie scene, night video, moon light "} +{"id": "7000232", "video_name": "d74c8cf0-726e-5647-855d-9fb70a84c278", "text": "A serene, picturesque stream flowing through a lush forest, tranquility, soothing, peaceful, nature, healing, gentle, calming, "} +{"id": "7000233", "video_name": "48e6b502-b060-52d1-8784-3b1a905bb7a1", "text": "Bubble molecules split into multiple small bubbles "} +{"id": "7000234", "video_name": "4f61752e-f621-5806-ada2-c7c450c984a8", "text": "Book advertisement, with a book in the middle of the screen, 1920s American advertising style "} +{"id": "7000235", "video_name": "16a88cb9-45b2-5f4d-86e2-0c072d3f3e6d", "text": "Angelina Jolie as Thor , ultra realistic, high contrast "} +{"id": "7000236", "video_name": "ee4213f6-ef88-56fe-82a3-f631caf8b012", "text": "blond woman straight hair , running away with fear , in the dark room "} +{"id": "7000237", "video_name": "553037bd-9b1a-5fd2-8213-b42360b6979b", "text": "a close up of a boy with purple eyes opening his eyes, anime style "} +{"id": "7000238", "video_name": "f306da17-13c7-548e-b0f2-48be1d08cbbe", "text": "A family is playing in the garden of their home "} +{"id": "7000239", "video_name": "0ae56d7b-8fd0-579d-93ff-a73adfa6aee0", "text": "flower garden with smiling girl,nail art,light toned "} +{"id": "7000240", "video_name": "72fda1fc-0eb9-5421-ba0a-d8eb7be69bbc", "text": "round jade pendant with dragon and phoenix "} +{"id": "7000241", "video_name": "f7749982-41ce-5423-a067-d8fefe9da85a", "text": "A young malkavian vampire, well trimmed, slicked back dark brown hair and clean mustache, his favorite clothes are a simple green sweater, a pink polo shirt underneath, khaki pants and brown loafer shoes, his appearance adds to the facade of friendliness, kindness, intellectual, inspirational and motivational that he presents and uses to his advantage to exert his influence on mortal minds, concept art, new orleans by night "} +{"id": "7000242", "video_name": "f33bbe80-d68f-53ea-8de5-c3dc4cdf41f7", "text": "car running on road side view "} +{"id": "7000243", "video_name": "9f89abe1-6cc6-5325-b23d-8b6fd8d55079", "text": "a collagen based powders product mockup where we have a box present. a darker theme.no people present or text "} +{"id": "7000244", "video_name": "2f829923-1591-55e5-a1c9-642803580d85", "text": "A boy returning to his home people are happy to see him back. "} +{"id": "7000245", "video_name": "36e1038a-2514-528f-b082-58e14a41691d", "text": "tokyo revengers character izana fight scene "} +{"id": "7000246", "video_name": "249e0a28-3875-53c9-b238-d9ef131fb0fc", "text": "two photons and wormholes quantum view "} +{"id": "7000247", "video_name": "a0e8c3cd-e91f-5787-af15-468b46788f95", "text": "an hamburger with fries with ketchup salsa and maionese "} +{"id": "7000248", "video_name": "12dabe30-9168-5e83-969b-6d0e2e7dc5f4", "text": "A large prawn steaming in the pot "} +{"id": "7000249", "video_name": "30480930-7d37-58f1-acfe-c3cdf6351497", "text": "5 second video of a tree sprouting and growing new leaves over time "} +{"id": "7000250", "video_name": "5894e90d-05dd-5cbd-aa61-a198b98d5ca8", "text": "The blink of a eye, dadaism, Man Ray film style "} +{"id": "7000251", "video_name": "e9336b0b-5c0f-5618-b971-911ce384e005", "text": "A young indian boy talking on phone in the middle of skyscrapers "} +{"id": "7000252", "video_name": "3407ec9b-21c9-557f-b232-f7fca95d1e78", "text": "chinese monk doing taichi. painting style "} +{"id": "7000253", "video_name": "cac02e38-af85-59fd-a815-51194f73a3fc", "text": "houses of afghanistan aerial plan half day "} +{"id": "7000254", "video_name": "d3d6cbbc-b17e-5482-ab52-560e571eb958", "text": "A street in Paris, france in 1920, locals walking, aisle of shops "} +{"id": "7000255", "video_name": "b7a942fe-8f8a-5ff9-8816-b762e5c36af9", "text": "a dark hooded shadow figure walking through a dead forest as a white owl flies next to him, everything is dark colors except for the owl "} +{"id": "7000256", "video_name": "e2f3feea-866c-5d23-a27f-251974a59577", "text": "camera motion street and cars moving and the camera from top "} +{"id": "7000257", "video_name": "6858f51c-6f4a-5ad7-89a1-a9a4f54e92a6", "text": "the palm trees blow lightly in the wind Message: 1 Attachment "} +{"id": "7000258", "video_name": "1ed9661d-9c85-51ef-af1b-109a2e9bc74c", "text": "peaceful scene. Nothing to worry about. "} +{"id": "7000259", "video_name": "a50f7ff4-03fd-52c8-92b9-97a00a212d1a", "text": "A pair of people are passing through a transparent glass tunnel, with an overhead drone view of the mysterious, eerie atmosphere of the image "} +{"id": "7000260", "video_name": "3d7a5b98-8c8e-5414-95cf-3a2f672a68e4", "text": "2 minute video of a lady explaining paperwork to an elderly man "} +{"id": "7000261", "video_name": "b6e01c5a-1458-5ade-a47f-ca55f923c15b", "text": "hundreds of people floating in a crowded street in mumbai "} +{"id": "7000262", "video_name": "57d45e6f-5e1d-5d0a-bd90-7a33b64b5787", "text": "Austrian painter doing a fortnite dance "} +{"id": "7000263", "video_name": "c10c5120-a4f3-5521-95e0-7467014af56b", "text": "a child with a toy plane. 4K HD quality, realistic. "} +{"id": "7000264", "video_name": "18b76eba-5a3d-530f-a77e-fda680fa4a0c", "text": "a close up of a pair of eyes of a wolf in a time laps "} +{"id": "7000265", "video_name": "efd9a572-3573-521f-a2fe-81ec8e111460", "text": "An alien, female, on a black and white planet is dancing a weird dance, surrounded by many alien creatures, fixed lens, Matisse art style "} +{"id": "7000266", "video_name": "43f171da-8d5a-5e61-b033-6eda8f2d0c52", "text": "one burning Palo Sante lie in a plate on a marble table, white fine smoke drift out, in the soft sunlight with Tyndall effect "} +{"id": "7000267", "video_name": "1726800b-5a45-5cde-87a7-e6a0a6bf0848", "text": "BBC nature documentary about a blueberry man with arms and legs, beautiful shot, highly detailed, 8k, crisp footage "} +{"id": "7000268", "video_name": "7989df8f-1d9a-5e5d-9fbc-31459ae54be9", "text": "this is how superman got his powers "} +{"id": "7000269", "video_name": "90cf4792-903f-54a6-9889-451c38d29588", "text": "a child holding a book and looking at his teacher "} +{"id": "7000270", "video_name": "468117bb-8b1a-59d8-9616-a916b4e67909", "text": "Life is nothing put a pen in a paper "} +{"id": "7000271", "video_name": "22019509-8c0f-502d-b527-b87445b5b768", "text": "bunch of keyboard keys Message: APTD (Font: MODERN) "} +{"id": "7000272", "video_name": "a24b20fe-03ba-5992-8748-82960ff67e40", "text": "a young cheerful boy Tim playing cricket in his garden "} +{"id": "7000273", "video_name": "506f6b01-c8c0-5681-bb51-ecb323e8d8b9", "text": "third person view of yourself floating in dark space. "} +{"id": "7000274", "video_name": "6a4b82ea-2745-56d7-8c39-11325b52411f", "text": "In the center of the ethereal valley, there is a huge castle made of transparent crystals. "} +{"id": "7000275", "video_name": "5bd151aa-8f8c-546b-bbb4-5f755b1de1f7", "text": "pixel art, black and white, sword, warrior, boy, smile, "} +{"id": "7000276", "video_name": "c9fecf61-9b0a-522d-ad03-081974cf802d", "text": "soft movements by the wind, in slow motion"} +{"id": "7000277", "video_name": "9908c7cd-a786-5c6e-9c47-61bdb2065aef", "text": "video of circus acrobats dancing, colorful, hippie colors Message: Circus Madness (Font: MODERN) "} +{"id": "7000278", "video_name": "df2eb1ce-c4b1-57dc-879d-7d3eeebe5fe2", "text": "a building size cat is walking down the street "} +{"id": "7000279", "video_name": "dfa12214-e183-5592-91ca-f37afcd29397", "text": "people scared on New York subway train, dark, gloomy, dreamscape, 60s, horror "} +{"id": "7000280", "video_name": "e0ba97f2-1e12-5e97-91d8-7494c4a7ced5", "text": "guitar player running in a flower field smiling, cinematic style "} +{"id": "7000281", "video_name": "786deee5-214a-5ef2-bd30-21e2169576fd", "text": "paul walker with vin diesel in 2023 video movie effect and 3d animation "} +{"id": "7000282", "video_name": "48ff9a92-d46e-5e77-8f8e-2e9b55bc8bae", "text": "Meditating feeling the energy of the universe with the chakras "} +{"id": "7000283", "video_name": "532e8bf4-05d6-5f55-b172-390e45902984", "text": "a quirky host talking in a room filled with historical artifacts "} +{"id": "7000284", "video_name": "71d5152c-c82c-51b5-994f-4a7166156248", "text": "During the Southern Song Dynasty, a bizarre murder occurred in a small village in the south of the Yangtze River. Next to the rice field at the entrance of the village, the body of a farmer was found under the scarecrow. He had been stabbed several times and the straw was stained with blood. "} +{"id": "7000285", "video_name": "85bbf6cb-dd1d-5c78-8aaf-bbedeca29c7a", "text": "gta v gameplay at a strip club "} +{"id": "7000286", "video_name": "2cfa0ceb-f58d-5663-a5d6-a140f2ff4c7d", "text": "a leap of faith into the unknown , parallax view, "} +{"id": "7000287", "video_name": "948ddf08-4dd4-5efa-b62f-5da8c565ebce", "text": "noise reduction, diffraction grating, HDR vibrance, enchanting bokeh, and cinematic illumination. "} +{"id": "7000288", "video_name": "c4c19f37-6068-5122-82b1-6dffbe577f29", "text": "a video of 10 secs showing what is the role of doctor "} +{"id": "7000289", "video_name": "ef399c83-3432-5ab1-9e9e-57b61a59e625", "text": "zoom in to the earth from space to a forest in North America. 4k "} +{"id": "7000290", "video_name": "997b8c4e-789f-551f-bee9-2d0a5ead1984", "text": "A car chase on colorful grainy film "} +{"id": "7000291", "video_name": "6dc9f281-e74a-522e-bace-d35c05fe8698", "text": "a big red button pressed by a robot , American cartoon style. "} +{"id": "7000292", "video_name": "e6be71b9-0e85-54e8-af9e-37589ea7b20f", "text": "Cyberpunk black and yellow, man in full high, finance "} +{"id": "7000293", "video_name": "57c7738c-55eb-5aad-accd-3d5f22288c54", "text": "Showcase the daily life of Aiden and Maya. Aiden helping his mother in the garden, their shared laughter, and the magical moments that happen around them \u2013 perhaps flowers blooming in response to their joy. "} +{"id": "7000294", "video_name": "17144553-97b8-5258-a366-e7e628f04249", "text": "incredible blue waves, beautiful beach Message: ILE DE LA REUNION (Font: MODERN) "} +{"id": "7000295", "video_name": "f98083cd-9299-51fb-b0e7-a98bbbbd2932", "text": "afrika students learning attentively in high technology classroom "} +{"id": "7000296", "video_name": "ae514558-524b-5eed-9d44-92932c090a38", "text": "A vibrant illustration capturing the essence of Diwali, featuring a gleaming diya (traditional oil lamp) spreading warm light, adorned with intricate rangoli patterns, amidst a celebration with fireworks illuminating the night sky and joyful figures exchanging sweets and good wishes. "} +{"id": "7000297", "video_name": "29350f6b-3912-5200-87c3-a68ec9b79375", "text": "A boy standing in the meadows adorned with luminescent flowers, Less windy, Slight movement, High resolution 2k, Disney style "} +{"id": "7000298", "video_name": "271c8876-2a23-5197-acea-463360b3eb42", "text": "PRO100 Architecture studio animated logo in the cyberpunk style "} +{"id": "7000299", "video_name": "a9bba34e-9968-5801-ab47-3b57cc6e444d", "text": "show universe with beautifiul stars in different colours "} +{"id": "7000300", "video_name": "faf4b2d0-4336-54e3-9ce4-78fec3557226", "text": "a fire fox running through the forest at night, Disney animation "} +{"id": "7000301", "video_name": "bf2fc93b-8210-5921-a5c2-73d7c9340aed", "text": "real photography of victorian street in london,with horses and people in movement,near thames "} +{"id": "7000302", "video_name": "4e70f943-fd6a-58cd-bf19-3786ec1a9f0f", "text": "dark chaotic stained glass in honor of the endless cosmos "} +{"id": "7000303", "video_name": "408bff1d-466a-5697-a4a8-ce61c788dac3", "text": "moving effect on wheel with smoke "} +{"id": "7000304", "video_name": "1a46b8f5-c459-5e7c-8485-5518e02adc9c", "text": "Dramatic transition to scenes of Renaissance art, scientific discoveries, and philosophical discussions, symbolizing the rebirth of knowledge and enlightenment. "} +{"id": "7000305", "video_name": "fb5cd859-63b4-5ee5-99a0-b8d47dc475c6", "text": "a stadium crowd waving some small pink or purple or dark blue flags filmed from front with a static camera "} +{"id": "7000306", "video_name": "14dec744-a11c-53be-88dc-10acedad303f", "text": "bee on flower Morphing in to taxi car on road "} +{"id": "7000307", "video_name": "0fbc3ba4-3a19-5590-9449-8cf7cefc19b7", "text": "Raining in Milad tower in Tehran "} +{"id": "7000308", "video_name": "41cf06e2-382d-5ba2-ba9f-ec362a3fec2e", "text": "a cartoon mushroom being picked by a wizard "} +{"id": "7000309", "video_name": "16c38bd1-df09-52ed-a7ed-9dd6f5afa903", "text": "CITY SKYLINE,light on Message: UBiX (Font: BAUHAUS) "} +{"id": "7000310", "video_name": "7eb03a69-f403-5bfb-840a-23f24b561c0f", "text": "Baphomet dancing with severos witches around a fire in the forest at night detailed imagery high definition footage "} +{"id": "7000311", "video_name": "16e5101b-d8d5-512c-b467-7d5300da75c4", "text": "a young boy is holding a can of pressurized stringy foam which is spraying out of the can directly onto an elderly lady who is laughing and smiling "} +{"id": "7000312", "video_name": "ecdc5957-6fa5-5879-8164-4cc754039959", "text": "psychedelic pen and ink organic fluid form architecture "} +{"id": "7000313", "video_name": "405abeb0-13a9-52b2-b186-9f91df08ccd1", "text": "The handsome boy is listening to music through headphones near the window of the bus, in a surreal style, with a blue theme at night, rain, HD, 8K, 3D "} +{"id": "7000314", "video_name": "ac1d3eff-3b53-5030-8c8d-0e072211709c", "text": "eating candy sweets beautifuly by a girl "} +{"id": "7000315", "video_name": "7b99f53e-79b6-555d-b5cc-de0831f7fda9", "text": "Djungarian hamster dancing in Batman Halloween costume "} +{"id": "7000316", "video_name": "382af8d7-53be-5677-ad67-5a9a3661fe22", "text": "two people in gimp suits in the backseat of a car during a car crash "} +{"id": "7000317", "video_name": "8751b1be-27df-5e67-9fb1-68e960d6d8d2", "text": "many ships in the sea. Videos in 7 second. Resolution 8k "} +{"id": "7000318", "video_name": "e7b38ef6-c227-5ae3-918f-20f6873a58c2", "text": "lion hunting rabbit. Pan up right "} +{"id": "7000319", "video_name": "065ab8cc-b92a-547d-be9c-c4bba20bb28f", "text": "In the style of Luchino Visconti, grainy black and white: Slow pan across an array of unearthed artifacts carefully laid on a cloth, their significance narrated through stark lighting "} +{"id": "7000320", "video_name": "c3f0f843-1ede-5ce9-8dbc-140678c701fb", "text": "baking together and making a mess with flour everywhere,pixar style,4k , Cartoon "} +{"id": "7000321", "video_name": "b96e2476-d7d6-523a-a0d6-78c33f2c6d0c", "text": "a beautiful girl and boy listing music together with the help of earphones and beautiful moon in pink sky "} +{"id": "7000322", "video_name": "071215de-b0b5-5361-84a8-f65e8e413843", "text": "developers working on open computer casing with hammers and screwdrivers. "} +{"id": "7000323", "video_name": "3bd6262d-bd21-534e-81b7-e1be2f5b9be9", "text": "arcade game type samurai robot is standing in the tokyo street in 90s "} +{"id": "7000324", "video_name": "2751dbae-e5b7-561f-bf2f-d7f1a8767d9c", "text": "create black sky, so only stars are visible. graphic style "} +{"id": "7000325", "video_name": "3632974e-b195-5262-848d-0d2326a2d56f", "text": "Santa Claus, Mrs Claus on lap, in sleigh "} +{"id": "7000326", "video_name": "9b329e93-1c38-5ac7-8d5b-63bd019304ca", "text": "cat in a house with girl and dog "} +{"id": "7000327", "video_name": "f74efb76-c05c-5e85-abd2-5d734945424f", "text": "She played with the younger children, making them smile with her warm laughter. "} +{"id": "7000328", "video_name": "df483fab-881d-5e21-977a-ef6fb076c363", "text": "1 girl in bikini, on the beach, dancing "} +{"id": "7000329", "video_name": "4637ebb6-c058-52e8-9e0c-e84b1953d955", "text": "a little boy finds a balloon "} +{"id": "7000330", "video_name": "3ca7be62-6bd8-5637-ab6c-8869109000ef", "text": "beautiful korean girl and dog walking forward looking moving her head to the right and left with worried eyes and scanning the surroundings "} +{"id": "7000331", "video_name": "360587df-057f-5ec9-994e-f96615c16266", "text": "nameday party sister in central Europe "} +{"id": "7000332", "video_name": "557944c6-6597-5cb4-b626-d1b5723ab67e", "text": "A huge tornado mixed with thunder and lightning is coming "} +{"id": "7000333", "video_name": "5de47c95-1d26-59f5-ac5c-86b140eb2d2b", "text": "a man trying to tell something to Aboriginal peoples "} +{"id": "7000334", "video_name": "17c158c3-5e74-5c35-8545-89757f96fee7", "text": "galaxies of multiple shapes that dance with each other "} +{"id": "7000335", "video_name": "6d595a20-a692-5b58-ad23-e0497dbc7021", "text": "create something magical , magic in the form of sparkle arises from book "} +{"id": "7000336", "video_name": "eb6ec273-1dc2-5094-bc53-8e8fc6f654c0", "text": "girl dancing in the woods in the early morning "} +{"id": "7000337", "video_name": "1cc27f08-1251-5fab-b057-380dfa4494f5", "text": "3d image Describe the atmosphere in the Enchanted Forest as Luna begins her bedtime story for the woodland creatures.gs 20 motion 4 camera zoom in "} +{"id": "7000338", "video_name": "53105ac4-b813-536f-9437-06a933161484", "text": "A viking male warrior, swinging his battle axe on a snowy mountain "} +{"id": "7000339", "video_name": "ea491f3d-79c6-5949-9fe6-65c36563c5e8", "text": "Sparkle, the sparkling fairy, with her magical flute, guiding Zara and teaching her the melody that controls the wind. "} +{"id": "7000340", "video_name": "e9571ca0-b4d5-5799-8bc8-d505a8160f9f", "text": "professional cyclist emerging over fog shrouded summit, chased by an army of wheeled robots "} +{"id": "7000341", "video_name": "f8b148d4-7aae-59d3-a7fd-b809967f5dc2", "text": "feeling scared exprrssion Message: 1 Attachment "} +{"id": "7000342", "video_name": "c50b41dd-ae56-52d0-98fb-9e77f0d1fc52", "text": "Mark Zuckerberg pilots an alien spaceship "} +{"id": "7000343", "video_name": "adcb4393-a2fe-5d3a-b4bf-c636af074917", "text": "seabed, colorful, with lots of fish, corals, clean crystal clear blue water. "} +{"id": "7000344", "video_name": "4453fc06-f319-5f27-b319-4142397bb504", "text": "the bear on the snow forest "} +{"id": "7000345", "video_name": "889a5e69-db77-5b6d-ac76-4f35593a29ca", "text": "a hen spreads her wings and begins to fly, cinematic style "} +{"id": "7000346", "video_name": "152e4aed-5a1e-50ab-8c1b-16305d093ea0", "text": "The little fish swims towards the gem "} +{"id": "7000347", "video_name": "2cd83746-dde9-5ba2-94c3-0ebc1349f0a7", "text": "The story narrates a journey that teaches children to expand their imagination, follow their curiosities, and emphasizes the importance of friendship, 3d animation, 3d, 8K, "} +{"id": "7000348", "video_name": "2efdb218-bfd1-558c-aa28-8712e188ae83", "text": "The brothers returned home with fond memories and new stories to tell their family. This adventure in the woods was an unforgettable adventure, as they learned that strange things can sometimes be the most fun and magical. "} +{"id": "7000349", "video_name": "985773e4-b29e-5ceb-a745-4bd456439f02", "text": "Immediately before the start of the match, the players are lined up at center ice, ready to start. Their gazes are directed forward, but in their eyes it is clear that they are already in the battle zone. "} +{"id": "7000350", "video_name": "3c011ac4-c7be-5d9a-b59a-977f9b518170", "text": "an anime character dancing to a trendy song for 12 seconds "} +{"id": "7000351", "video_name": "b99871eb-ee7d-53d2-8d93-2a5e41ef968a", "text": "a girl with fish tail swimming deep down in the dark ocean "} +{"id": "7000352", "video_name": "e3396b0b-3088-5d5e-a9db-764a915520df", "text": "Please send me a promotional video of the Chinese Winter Solstice Festival "} +{"id": "7000353", "video_name": "53f1f61d-0b1e-551c-99f4-1e9be40749d8", "text": "Anime style head and shoulder portrait of a beautiful woman with long black hair wearing an elegant dress, sharp focus, high resolution 4k, photorealistic "} +{"id": "7000354", "video_name": "1411dbed-d350-5ed3-abb7-edf786552706", "text": "Lily girl enchants a ball, causing it to bounce and dance unpredictably. images cartoon "} +{"id": "7000355", "video_name": "07b82166-2e71-5237-9723-081b42fb589e", "text": "Create an image of a storm at sea, with a Portuguese ship breaking in half and a man falling into the water. pixar style. "} +{"id": "7000356", "video_name": "8214b12d-aacc-52e4-8b39-d358cb79ee2b", "text": "Conclude with a sunset scene, showing residents enjoying a safe, clean, and efficient environment created by the synergy of technology and urban life. "} +{"id": "7000357", "video_name": "3b0e688e-e886-5c9a-a86c-4d4784e9be4a", "text": "Promotion Video for American Football Camp for children "} +{"id": "7000358", "video_name": "4d09b7fd-2617-5279-a424-6a4790018e79", "text": "A Television commercial advertising the latest beauty products in the year 2075 "} +{"id": "7000359", "video_name": "c3d2e673-3745-54bd-b284-ed6750321bee", "text": "a dog flying between pink clouds "} +{"id": "7000360", "video_name": "289d1249-5a45-5fe3-a6b0-8eaaa9cee266", "text": "In NRL match, players are fighting over a footy ball "} +{"id": "7000361", "video_name": "05255a74-9dcc-5029-9363-5d4db7df6478", "text": "men in business suits shaking hands against the backdrop of a panoramic view of dubai "} +{"id": "7000362", "video_name": "88368756-d742-505e-b597-4f3b3d1a09a3", "text": "chess, flowers and wine on table, a chair sitting in front of a red curtain, , , middle age, dark and red image theme, realistic, HD Message: 1 Attachment "} +{"id": "7000363", "video_name": "e742f9b1-8a0c-5ff4-91f4-fff89405f5c3", "text": "They engage in a discussion on gratitude and finding contentment in the present. "} +{"id": "7000364", "video_name": "448bc5d9-f8e2-529d-a34b-0264d55f4a8e", "text": "teen age boy, listening music, deep sorrow, alone sad crying smoking and watching the stars on a beach the water at the beach reflcets the moon and the milkyway "} +{"id": "7000365", "video_name": "bd208712-28dc-5f76-8125-8e75bae1b513", "text": "make a realistic video of Mary and Joseph walking in the desert towards the city of Belem "} +{"id": "7000366", "video_name": "5a769092-6ef4-5105-9d4c-9a24340b35ad", "text": "cyber books flying in zero gravity, yellow and black color scheme "} +{"id": "7000367", "video_name": "b28626a3-b0f1-534c-ada5-c7c2d22aa9bf", "text": "two college female students wrestle in a garden at night "} +{"id": "7000368", "video_name": "52102a77-004a-5e87-a9e8-e5daa2617ddc", "text": ": double pistol guns being fired ,demonic back round, demon slayer art style "} +{"id": "7000369", "video_name": "faa7a395-093e-502c-8471-ef18d84eccd3", "text": "the super mechanical android woman is put together in a mold piece by piece manufactured magic "} +{"id": "7000370", "video_name": "564277f5-dba2-5613-b2d6-b30f0e2e7426", "text": "big letters Happy Birthday, pixar style, 3D, with candles "} +{"id": "7000371", "video_name": "1d40f5fa-61f0-5161-9e2a-4e87afeb00a4", "text": "a watercolor paper that flows in the ocean "} +{"id": "7000372", "video_name": "a64fce64-4a45-5698-a19a-a8a14240bf2a", "text": "Imran Khan addressing a large gathering, his voice resonating with passion and determination. "} +{"id": "7000373", "video_name": "7882e82c-3b5b-5305-afee-4ab7fa69b617", "text": "An alien hybrid, style by HR. Geiger, very realistic. "} +{"id": "7000374", "video_name": "01417cd8-20ae-51fc-b362-1e64fd359db9", "text": "zoom into a movie theater screen "} +{"id": "7000375", "video_name": "67c24f92-7065-5297-939b-b9ce51b24195", "text": "Robots taking namaz inside a mosque "} +{"id": "7000376", "video_name": "6c034046-9421-5e53-8a4b-9ead8f5018e1", "text": "organic shapes, green moss, on grey pinkish sand, dust and rocks, blue sky, bright white sun, eerie shapes, organic, dynamic, cristal clear water, big white opac balls floating "} +{"id": "7000377", "video_name": "2f06068f-8b28-5ee8-8807-400e5ab51e8a", "text": "hyper realistic super mario, close up of face, wind, black and white "} +{"id": "7000378", "video_name": "f9e91086-4c24-5257-8a56-36dae88cacda", "text": "dont need protein to build muscle "} +{"id": "7000379", "video_name": "6a25948d-5e11-5842-adcf-bfa2e7c76a99", "text": "anime style shiva dancing in ice mountain "} +{"id": "7000380", "video_name": "975b8cf0-14e2-59d2-8d36-0f65de5c5b0f", "text": "Pinocchio and David Bowie, Aladdin Sane, Ziggy Stardust, Cracked Actor "} +{"id": "7000381", "video_name": "e796b9a9-8552-55bf-ab74-3c86724bbd01", "text": "Little snowflake, falling from the sky "} +{"id": "7000382", "video_name": "7117ea32-0af3-5e84-abf3-154eb55002b8", "text": "A man is standing in front of a table with a bowl of food for a pet. He holds a spoon with food in his hands. "} +{"id": "7000383", "video_name": "f8f2df7a-6970-5398-97ef-d0e7f91a4dbb", "text": "Peter 1 founds the city of St. Petersburg "} +{"id": "7000384", "video_name": "54e89116-72d3-50de-8fd8-aece530e177c", "text": "grey cat driving a red bull formula 1 on suzuka track "} +{"id": "7000385", "video_name": "5a9ada98-2d03-5af2-9839-672cedd617e2", "text": "Transition to an overhead view of a bustling cityscape with people preparing for celebrations, symbolic of modern India. "} +{"id": "7000386", "video_name": "db8bf148-8c5b-5474-9a3c-b3a8aeabca81", "text": "The boy tells the pilot that he is from another planet. He says that his planet is very small, and that it is only slightly larger than a house. He says that he has a rose on his planet "} +{"id": "7000387", "video_name": "9a4bf42f-4d83-5265-9c96-72a9ae6dae24", "text": "a woman listening to music and dancing cyberpunk "} +{"id": "7000388", "video_name": "91a00ee6-97bf-5335-8d6f-2a2eed0238d8", "text": "photography, fujufilm, a woman with flowers instead of hands "} +{"id": "7000389", "video_name": "c0a7e628-e851-5921-896e-8879107ae37d", "text": "fabric materials moving with turquoise and pink lights "} +{"id": "7000390", "video_name": "58c84645-2124-52c7-a12c-ecd93acec292", "text": "padmasambhava is chanting in a lengendary cave "} +{"id": "7000391", "video_name": "6b37007e-140d-5716-8e93-110dc2eedf12", "text": "16k full color hdri of the deep sea with an antique Roman city vestige, strange creatures of the abyss, sharp details "} +{"id": "7000392", "video_name": "6aa1c294-445f-5f37-8649-9b806669d6b3", "text": "DJ at the technoravein the party "} +{"id": "7000393", "video_name": "e36c8422-44b1-5dde-98c0-979d91b2cebf", "text": "darth vader in a mosh pit slam dancing "} +{"id": "7000394", "video_name": "06c5b649-bf8d-51c4-bd8e-3027a4080925", "text": "building, destroy, cripple down, breakdown, concrete breaking, slow motion, tall, cinematic, dramatic, artistic, high resolution, 8k, perfect grading, loop "} +{"id": "7000395", "video_name": "ded72f78-dbba-5689-a1f6-745bd83cd631", "text": "a 1960 fantasy film about a child captured by giant alien inspired by slenderman "} +{"id": "7000396", "video_name": "09ec6fb8-934f-5409-80bf-0c48016cad00", "text": "a lava killer whale jumping over a helicopter "} +{"id": "7000397", "video_name": "dd760a06-546b-5cd0-b743-f98982152238", "text": "a big McDonald\u2018s fries just comes out and looks very delicious, a close scene, high quality video, 4k "} +{"id": "7000398", "video_name": "4ad19b2b-4cef-5b4f-85fd-1eb1dc85c679", "text": "A captivating cartoon depicting Ronaldo and Messi engaged in a friendly yet intense rivalry, showcasing their iconic styles and soccer prowess in a dynamic and visually striking manner "} +{"id": "7000399", "video_name": "62a530e8-5ed0-57c8-9ffb-3c64df63bad3", "text": "guitar strings move Message: 1 Attachment "} +{"id": "7000400", "video_name": "bbccf9b6-fbfa-5ae6-8d64-d7d28bca8f08", "text": "Excited and curious, Lily dipped the brush into a pot of sparkling paint and painted a friendly dragon on her bedroom wall. "} +{"id": "7000401", "video_name": "f50fc2c7-c563-514d-91a5-c6c4addfdf56", "text": "A bird flying and then landing on a branch with little wind. Detailed "} +{"id": "7000402", "video_name": "c02d6457-3f20-55b1-aad6-3ab4b0b5d2c5", "text": "noor the cute and beautiful princess bend toward a small and cute fairy "} +{"id": "7000403", "video_name": "36a08cf4-f3c6-5f2e-808b-8956519bda24", "text": "a scary house at night in a storm like in horror movie cinematic realistic American "} +{"id": "7000404", "video_name": "44b17a10-da26-549d-9b40-8efc093ba288", "text": "windows wallpaper, 4k, 3840 x 2160 pixel, aesthetic, simple, modern "} +{"id": "7000405", "video_name": "6426dbec-b7af-5abc-9179-35d4a990536e", "text": "show me indian flag flagging in HD "} +{"id": "7000406", "video_name": "4c5d24e8-9206-5ada-a10e-4c779dcdd0e4", "text": "a minion standing on the stage a spotlight on him and the camera comes from the top to the front "} +{"id": "7000407", "video_name": "eb4eb951-3f28-51fa-b5d5-3448aa5c2391", "text": "closeup shot of a really long love letter "} +{"id": "7000408", "video_name": "9c846df1-5a05-5754-8933-9ed35237ba38", "text": "World War 2 archive footage of German cannon elephant and mechwarrior preparing for battle "} +{"id": "7000409", "video_name": "15c37707-467c-51c9-a57f-f9ba85e15a6b", "text": "Depict them sharing their stories with the village children, sparking their imaginations. CARTOON HUMANS "} +{"id": "7000410", "video_name": "b1089e4a-7ba4-5e23-8124-3f75fa425c6b", "text": "Talking Tom eagerly takes a bite in a sandwich, only for his eyes to widen with surprise. "} +{"id": "7000411", "video_name": "cb885c2b-667d-57fa-af7f-ab2228df89ad", "text": "what a bottle of alcohol will look like in the future "} +{"id": "7000412", "video_name": "d2cccd7c-9034-574e-b0a4-de08f4266cc3", "text": "adults and children rejoice at the gift. "} +{"id": "7000413", "video_name": "8f5bafcf-a699-5e09-8d38-a101dc7e29a8", "text": "the family helped clean up the table "} +{"id": "7000414", "video_name": "7af61baf-e32a-5989-983f-5bf3617214f3", "text": "a place where dreams go to die "} +{"id": "7000415", "video_name": "a876f01a-b792-5e9b-9e40-686f2351bb53", "text": "united states of america is the 1st richest country in the world "} +{"id": "7000416", "video_name": "63a511ac-17b1-56c8-b297-83b0c54ac155", "text": "Autumn Rain, 8k, Forest, Rainy, Cloudy "} +{"id": "7000417", "video_name": "3b10088b-d108-5116-82d4-b8fac3b6fbc1", "text": "a 10 years old boy crying in front of a destroyed building, war scenes at background "} +{"id": "7000418", "video_name": "2d72bf43-94e0-558e-874b-d7ada1e46d87", "text": "pine trees in a storm psychedelic, 16:9 "} +{"id": "7000419", "video_name": "9c4651ac-7752-565b-ab9f-979dbdf791a3", "text": "FBI agent in black FBI inscription on sleeves in a black cap with the inscription FBI and a headset "} +{"id": "7000420", "video_name": "5124e1e0-2c5a-5ed5-a7f5-d2c66713966e", "text": "Locals spoke of the Macabre Manor, a place where darkness whispered through the creaking halls. Nobody dared to enter, except for curious souls seeking to unravel its secrets. "} +{"id": "7000421", "video_name": "16847b3a-34ff-5687-9aed-37c945ca507d", "text": "the last of us edit 8k realistic "} +{"id": "7000422", "video_name": "41276d82-4fa1-5a90-891a-0b61bb195b03", "text": "white winged horse flying over the desert Message: 1 Attachment "} +{"id": "7000423", "video_name": "c6052029-47af-5c34-a565-380aedf4220e", "text": "Mario Bros dancing in a mexican outside party "} +{"id": "7000424", "video_name": "e8157171-839f-5f4d-b653-c90b5f778dbd", "text": "a robot with white hair walking. Message: i love you. (Font: MODERN) "} +{"id": "7000425", "video_name": "16ce953b-ead3-5abd-8d60-a47e6b76567b", "text": "The house is in a beehive. "} +{"id": "7000426", "video_name": "aaf69f1b-6740-54a9-b8cb-baaa7eb358b4", "text": "an image with a prophet talking in the middle of the desert "} +{"id": "7000427", "video_name": "781dcbbf-ef04-5dbf-8a23-b7e24c365394", "text": "a chinchila playing NES, photorealistic, white living room in the background "} +{"id": "7000428", "video_name": "11bb1337-547f-52a6-b6d4-9eb0b3dd4aa0", "text": "a shooting star going through the sky with a purple and green aurora boreales in the background "} +{"id": "7000429", "video_name": "bf5359b0-7dcc-5428-bf65-938fb72dcc90", "text": ": prompt:an Indian A woodcutter is cutting wood with an ax on the bank of a river in a forestforestwoodcutterforestforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcutteorestforeststforestforestforestwoodcutterstforestwoodcutterforestforeststforestforestforestwoodcuttststforestforestforestwoodcutt "} +{"id": "7000430", "video_name": "afbebce0-6dd8-5a74-b7ce-90684f0b8f80", "text": "1. A person is chained and feeling sad in a dark place. 2. Jesus appears with light surrounding him. 3. Jesus approachs to the pearson and talks to him. 4. Jesus breaks the chains the person has. 5. The person smiles and is full of joy and happiness. 6. The person and jesus hug and jump of happiness. "} +{"id": "7000431", "video_name": "71936e7d-06b8-523c-a644-8997ba623ad7", "text": "Depict Alex energetically tidying up the room, with clothes being put away, toys organized, and a visibly clean space taking shape. 4k resolution, for kids, 3d animated "} +{"id": "7000432", "video_name": "839d5cb6-7277-57f8-ad8f-7f2d0496ffc7", "text": "Cute Cat Running on the Grassland "} +{"id": "7000433", "video_name": "6f8dd50b-9848-515a-b235-7984d81f36bd", "text": "The venom of spiders has special importance in the pharmaceutical industry. It is used in making medicines, syrups and vaccines "} +{"id": "7000434", "video_name": "94427e39-e221-572d-b66d-67930ccb85e3", "text": "lana rey using her magic powers to disappear "} +{"id": "7000435", "video_name": "f7621459-7f97-5aa5-8e3a-8566dbd96cb9", "text": "the moon falling down over the sea "} +{"id": "7000436", "video_name": "a6703314-4fbc-5e7b-942f-f79f828075d6", "text": "a small town surrounded by hills and forests "} +{"id": "7000437", "video_name": "862384f4-9a4b-5fac-9ea3-07fca0dcdca1", "text": "erupting Underwater volcano,Igneous flow\uff0csurrounded by smoke Message: 1 Attachment "} +{"id": "7000438", "video_name": "768357d3-5025-5594-bfc4-63407558e258", "text": "welcome to battlefield of green bull and red bear "} +{"id": "7000439", "video_name": "5e361648-118a-51ed-a29b-f688f5a00148", "text": "Cinematic , character sits down in the chair and looks up to the ceiling "} +{"id": "7000440", "video_name": "55448ef2-8f9b-54c7-9158-0bfa25d1709d", "text": "anthropomorphic character. a stunning and glamorous Pomeranian puppy parading in a golden costume at Carnival. highlighted in the dog, background drums from the artstation samba school, 3D, octane, 8k "} +{"id": "7000441", "video_name": "0744c267-f636-5ec3-8c39-c305c0a7cc4f", "text": "a cartoon boy and ant talking "} +{"id": "7000442", "video_name": "1734c02c-687d-593a-b51d-4e7293f62627", "text": "Moving the roses as if they were opening and hanging "} +{"id": "7000443", "video_name": "4456eff8-9d10-570b-a86b-b83c024a32d7", "text": "Observe dolphins using a rich repertoire of clicks, whistles, and expressive body movements to convey their thoughts and feelings to one another. "} +{"id": "7000444", "video_name": "e448c4d4-3947-521d-b98d-c7f173813cce", "text": "The dog is standing in the street "} +{"id": "7000445", "video_name": "f8bfe9ed-c6d8-590d-b9df-9ab0c20c4194", "text": "video of someone introducing a bio medical cortisol sensor "} +{"id": "7000446", "video_name": "e6266dda-6d9c-52a5-ad8e-9582379c1a17", "text": "Lily standing beneath a towering pine tree in the snowy woods, making her heartfelt wish to Santa Claus "} +{"id": "7000447", "video_name": "e32978b3-a6e1-5751-9b45-242242211bf8", "text": "Ethan offers Maya glimpses of the opportunities and challenges in the bustling city. "} +{"id": "7000448", "video_name": "9daa4e13-5ec7-5630-a6a8-a2d3fa8a81c6", "text": "a man in a little town in transylvania in the twillight walk in a deep fog "} +{"id": "7000449", "video_name": "201d3483-617c-522a-85f3-292288ec6ba6", "text": "David meets Goliath and he falls down. From the Biblical Story. 8k realistic "} +{"id": "7000450", "video_name": "259054bc-a650-5e34-bb28-a18873f94d59", "text": "Tennis player like Roger Federer won a Wimbledon tournament. "} +{"id": "7000451", "video_name": "284dc47a-06b5-50b6-b59b-c3b59f8e8e8e", "text": "3 people hanging out on the backseat of a car cartoon chill vibes soft features detailed "} +{"id": "7000452", "video_name": "66574936-9983-58e0-8460-64edf5546a85", "text": "flying energy ball in the dark "} +{"id": "7000453", "video_name": "0c7b601a-d58d-5130-b2b9-bffbaa2cbda0", "text": "black and white grainy film style video of a volcano erupting "} +{"id": "7000454", "video_name": "5483a9bd-efb7-509b-8355-c1866869f4d3", "text": "Science fiction style,A dense mass of cables,A cable that emits the optical flow of electronic information "} +{"id": "7000455", "video_name": "5f988bf2-c59c-5538-9797-e8e4cc8da969", "text": "A red balloon with a smiley face on it floats in the air, then bursts into a cloud of confetti. "} +{"id": "7000456", "video_name": "94abf253-4f5a-5f67-8363-f8c2eb13e049", "text": "floating words from scriptures from bible on wooden table, blowing wind opening bible pages, hovering holy spirit above bible, flyview cam rapid, shining rays "} +{"id": "7000457", "video_name": "454d9c10-022d-5a49-95db-4bc31e6845ff", "text": "a dragon man lit up the beautiful lantern "} +{"id": "7000458", "video_name": "927b67fd-64ce-51d6-92b2-48300e967606", "text": "the camera zooms out ovver old Jerusalem, a bright day over old Jerusalem Message: MOSHIACH NOW! (Font: MODERN) "} +{"id": "7000459", "video_name": "2f53c729-e874-5711-aaa5-f605ea144b67", "text": "each girl wearing texture Message: happy christmas (Font: COMICS) "} +{"id": "7000460", "video_name": "a435e321-c2d2-5f92-8e0f-2d770bbc5594", "text": "Close up photo of a neon green flower with a bee covered in pollen in the flower and a mushroom house in the background, 8k, highly detailed, digital painting, sharp focus, concept art, matte, bright colors, masterpiece, establishing shot "} +{"id": "7000461", "video_name": "bc8742b1-0f98-5f41-a2ab-35fc020faf0f", "text": "a boy fly in the blue sky "} +{"id": "7000462", "video_name": "241758cc-d7bd-5230-a368-1648ff0f8235", "text": "jars full of body parts in an abandoned hospital, cinematic, realism, the chainsaw massacre movie style, the ring movie style, horror, old movie , 1970, old film, focus, camera pan in, VHS, Blair witch project "} +{"id": "7000463", "video_name": "595d5c71-5ea4-5fd2-af6c-6aaaaddf14ed", "text": "time passing as a man stand ageless "} +{"id": "7000464", "video_name": "a3d4b2db-5e5b-5700-a01e-d6a8742761b9", "text": "mouse said mighty lion please spare my life "} +{"id": "7000465", "video_name": "d7075375-ae93-5de0-869e-c323842ea89c", "text": "an historical japanese faces in 1990 in color, gta art style "} +{"id": "7000466", "video_name": "f3b623f9-42f1-5dab-bee3-0c8c99d90544", "text": "Luffy from OnePiece looking at Zoro with a happy face, 4K, high definition "} +{"id": "7000467", "video_name": "58af2109-ba79-5d08-8ac0-f95dc80d5f1c", "text": "there is a little girl walking in the streets in the morning while chewing gum while she is watching some architecture building "} +{"id": "7000468", "video_name": "ad9340b3-1fd4-5eb1-a7e7-4ad80a52fd90", "text": "happy woman buying games in a game store in zacatrus 8k hyperrealistic "} +{"id": "7000469", "video_name": "40e7189f-419d-54c3-b084-0bc1ec6619ac", "text": "Three days later, on Easter Sunday, Christians believe that Jesus rose from the dead, signifying victory over death and eternal life. This event is celebrated as the resurrection of Jesus Christ and is considered the core foundation of the Christian faith. "} +{"id": "7000470", "video_name": "646d8b3a-3a14-5ff5-883e-19f2756c9a2a", "text": "a wide angle shot of a electronic music festival stage from the perspective of the audio booth with thousands of audience in front "} +{"id": "7000471", "video_name": "319d2b06-fd4c-5fa4-ba26-ad60afdfeaf1", "text": "colorful vector illustration of a female hacker, with a unique and diverse style that combines elements of minimalism and boldness. Facing forward straight into the camera and turning slowly her back "} +{"id": "7000472", "video_name": "54055cbd-9480-5f55-b08e-6d5b3536841f", "text": "Show the girl Leela as she drifts off into a world of dreams and visions, and encounters reflections of her past using psilocybin mushrooms "} +{"id": "7000473", "video_name": "af0a213d-f023-5975-a34b-aced980df334", "text": "a horse riding a bicycle in desert "} +{"id": "7000474", "video_name": "6b6d9d32-c3b2-5a36-8bab-e1611fbe382a", "text": "The book said that whoever completed this journey would gain extraordinary powers. "} +{"id": "7000475", "video_name": "0f713ec1-6f19-5157-b961-ca28fd76f28f", "text": "A red rose Message: Te Quiero (Font: MODERN) "} +{"id": "7000476", "video_name": "4f26452b-573b-5f4a-8596-dbb3f3da7b6d", "text": "soldier seen from below hovering in his personal oneman jetpack against a cloudy sky "} +{"id": "7000477", "video_name": "47b41575-4bf2-5551-809d-3b375c3a7a3e", "text": "cat wearing a track suit, standing upright, wearing jewelry, party hard in a club of cats, blue light "} +{"id": "7000478", "video_name": "f7e7a2fd-ccfd-5060-99bc-fac3aec773f8", "text": "determinedly venturing into the forest, surrounded by tall trees.\nA path winding into the dense woods. "} +{"id": "7000479", "video_name": "f8b0d8ea-18e0-566a-8b72-54c233295639", "text": "Children swinging on swings in the park, sliding down the slide, playing games, long shot, 3D animation "} +{"id": "7000480", "video_name": "456619f7-0f6c-5956-bfb4-1687076c93d2", "text": "modern school architecture Message: 1 Attachment "} +{"id": "7000481", "video_name": "fbe43842-e062-54ca-844a-80bd3e6ca77d", "text": "eagle try to hunt the mouse "} +{"id": "7000482", "video_name": "4b8e31be-2100-57c0-a505-ef054380f466", "text": "modern city transforms into dystopian city "} +{"id": "7000483", "video_name": "0cc3211f-54f5-5b36-a7b8-cc349be41016", "text": "playing hockey on ground. Photo zoom out "} +{"id": "7000484", "video_name": "12d8bc78-73b0-5b7b-b732-69241917c20b", "text": "man walking towards atom bomb location "} +{"id": "7000485", "video_name": "984db9f5-d87c-564d-9925-c778e9263de6", "text": "a gray robot walking in a war scenario in Russia "} +{"id": "7000486", "video_name": "5e226bba-401a-5f5e-9ef1-ee8e38ecd278", "text": "a girl in a red cloak leads a large green dragon on a leash "} +{"id": "7000487", "video_name": "0a41299f-8b98-57e4-82d8-ace83a14be85", "text": "guy sitting in a job interview "} +{"id": "7000488", "video_name": "843b5c17-5252-54b9-8d88-c8a13e898c2b", "text": "If a woman from heaven lives on ratio 9:16 "} +{"id": "7000489", "video_name": "4812dd27-d7e7-539f-a86e-bd8b8fa72def", "text": "the word Battubelin, Explosion Cinematic camera movement Camera on track Slow motion 3D letters Metallic texture Ambient lighting Dark background Dramatic soundtrack Shards scattering Ethereal glow Transformation Visual contrast Fade to black "} +{"id": "7000490", "video_name": "22567dcf-e6e9-565c-96a1-636260736f2f", "text": "mirror surface with water drops on it "} +{"id": "7000491", "video_name": "e9b121b8-80a2-5217-b7ec-df2d6c8754c9", "text": "Cartoonish Scene of a Child Watching the Rain "} +{"id": "7000492", "video_name": "c96ab8e9-c11a-5eef-a106-4d497be19b14", "text": "The Prince on a white horse "} +{"id": "7000493", "video_name": "0ae218df-a397-5eb8-b3d1-c33bbe864a5b", "text": "a ghost sitting on a swing at a dark empty park "} +{"id": "7000494", "video_name": "18e77e23-e94a-591e-9476-8517664b4ee7", "text": "In a realm beyond mortal comprehension, where the boundaries between reality and myth blurred into an ethereal tapestry, gods and demons coexisted in a delicate balance. "} +{"id": "7000495", "video_name": "17256168-aca2-524b-b64a-6a9894058d61", "text": "a man standing front of the eiffel tower in paris "} +{"id": "7000496", "video_name": "d0b10ce6-8908-555e-9af0-447429a9713b", "text": "old haunted photo of dead mine workers 1840 "} +{"id": "7000497", "video_name": "7b0b88ae-1892-51eb-a2a4-ce7abac7493d", "text": "Van gogh stary night to relaxing video "} +{"id": "7000498", "video_name": "2fb521a0-2666-5a46-9685-6e87fb8c0871", "text": "rosaly car on a little britanny beach "} +{"id": "7000499", "video_name": "9d2d57cb-d675-5be4-b95a-fc2f87b0d222", "text": "A sunny meadow with a small, cozy burrow nestled under a big oak tree. Benny, a cute bunny, is seen peeking out of his burrow with a curious expression. "} +{"id": "7000500", "video_name": "b581ceed-d972-5dd7-947a-37661c870e2a", "text": "one dragon and a man with white hair "} +{"id": "7000501", "video_name": "ea6052b8-e132-5940-b16f-54ef942354b3", "text": "a group playing instruments ethereal aesthetics of royalty card game 55 "} +{"id": "7000502", "video_name": "a37b4963-ea5a-55ea-b832-06ee9ed0a586", "text": "mechanistic lifeforms autonomously emerge from chaos creating a background of complex and beautiful life, telephoto zoom out, motion 5 "} +{"id": "7000503", "video_name": "76439365-1b3a-57f3-982e-31f50f0ec255", "text": "A handsome actress portrait margot robbie wearing blue bikini dancing on the beach "} +{"id": "7000504", "video_name": "3d248f9b-4884-56ef-a33b-72a2128e912e", "text": "Please make a video about a college student standing at the school door this afternoon "} +{"id": "7000505", "video_name": "271141a4-4322-5e1d-9f0d-815f6f904126", "text": "drum sticks perform a snare roll in a balck and white animated style "} +{"id": "7000506", "video_name": "0da380b7-129a-56fd-85fe-89de94548735", "text": "Native americans tribe in an island around a big fire, 70s dark fantasy style, live action, realistic, cinematic, vintage, HD realistic, ULTRA HD, 70s movie style "} +{"id": "7000507", "video_name": "2f98355d-f783-5b78-9cad-bc2ef4eeaa46", "text": "Rolls Royce running on highway front and side view realrealisticrealrealistic graphicsgraphicsgraphicsgrapgraphicsgraphicsgraphicsgraphicshics "} +{"id": "7000508", "video_name": "7a60610e-3c81-59b7-bc50-872db437db1d", "text": "migrated into the farming areas around Western Australia, doing particularly bad damage to the crops and structures around Chandler and Walgoolan. "} +{"id": "7000509", "video_name": "820787d3-feb9-5f3a-add0-e44c47dfa006", "text": "A cute raccoon in a light blue suit skateboarding in a sand desert, in steampunk style. Message: 1 Attachment "} +{"id": "7000510", "video_name": "25b0578c-1de9-5276-9121-8300dc371e08", "text": "cinematic imax hd 4K high quality movie shot of heart shaped comet falling out of the sky realistic "} +{"id": "7000511", "video_name": "1c8ed0ad-b7f6-5249-b886-c833ba4d95ff", "text": "And so, in the heart of Evergreen Hollow, as the first light of Christmas morning painted the sky, Santa Claus reflected on the extraordinary journey guided by the Christmas Star. Little did he know that the magic of that night would linger in the hearts of children and adults alike, creating memories of a truly enchanting Christmas. "} +{"id": "7000512", "video_name": "2abb9508-5c28-5e57-8039-3525e4e773e6", "text": "large hand on which lies a metal silver lizard decoration small, realism "} +{"id": "7000513", "video_name": "3a871fc8-a010-5690-b90e-ac0dcdf514fe", "text": "Cells that eat amoebas, which in turn eat other amoebas. "} +{"id": "7000514", "video_name": "26efee79-82a9-5ffe-bb98-366cdbadc35e", "text": "indigo fabric dye bleeding out onto wet silk in an irregular pattern "} +{"id": "7000515", "video_name": "2840d89e-7005-5c03-9720-63186c50e524", "text": "tim burton claymation film about lady bugs "} +{"id": "7000516", "video_name": "d6ce1fcb-dbf1-5669-8c30-30a6a5de00f7", "text": "Brazilian woman holding baby on her lap, northeast, backlands, heat landscape "} +{"id": "7000517", "video_name": "1c19601b-e4b2-50ec-98ba-bee8c5e94659", "text": "carribean full of grotesque chimeras subterranean eerie 1945 footage lynchian kubrick "} +{"id": "7000518", "video_name": "fc4cedd9-f9f8-5f64-bd60-4b3fe52e0d2b", "text": "a picturesque view of the Alps "} +{"id": "7000519", "video_name": "fae66111-9329-5530-a603-8b1ca156a979", "text": "The globe earth is flying in a huge space "} +{"id": "7000520", "video_name": "67134367-c439-5fee-bd65-0e5b746342cb", "text": "a ginger boy turning into nick fury "} +{"id": "7000521", "video_name": "a80d2a33-25ea-57dc-8a8d-19e551e6234e", "text": "food festival high quality , people happy around "} +{"id": "7000522", "video_name": "bcda2ea4-9324-5604-8cc8-b34947bbe745", "text": "Conclude with a sweeping view of Lily and her companions venturing deeper into the wild jungle, the towering trees and lush vegetation enveloping them as they continue their extraordinary journey. "} +{"id": "7000523", "video_name": "44e1b566-f7b2-5fdc-b1d1-4fd08d3f664b", "text": "jacob takinng a selfie at the gym "} +{"id": "7000524", "video_name": "66b02606-b9db-54ce-aefb-8b7bdb982a56", "text": "Alien Biology, full 1080 high definition, high detail, extreme realism, full field of view, wide angle, photographic realism "} +{"id": "7000525", "video_name": "e56e0ed4-e3da-5a32-9b74-4f63b5691320", "text": "The Eiffel Tower is falling and there is a defeat around "} +{"id": "7000526", "video_name": "241caee1-4816-529c-899b-166cb8113c87", "text": "a man holding a blue and red sword "} +{"id": "7000527", "video_name": "0b216259-bf15-5508-b63d-595350479847", "text": "white muscular man showing of his muscle like escanor of seven deadly sins anime in an Winter storm in mount everest, 4k , cinematic lighting , digital art , photorealistic "} +{"id": "7000528", "video_name": "8cc7b1b9-6297-52d1-b4eb-d28bc9c5789e", "text": "A serene beach in Hawaii with waves crashing on the shore, a peaceful setting. "} +{"id": "7000529", "video_name": "c2ade18b-3df3-5473-a259-227d0496ffd3", "text": "a outdoor background Message: 1 Attachment "} +{"id": "7000530", "video_name": "bcfed100-8474-5c64-94f9-39c379faebb6", "text": "timelapse of indoor plants moving around, succulents, high quality, intricate details, colorful, realistic "} +{"id": "7000531", "video_name": "5934e5c1-d421-5eff-b75d-7c6b15864cce", "text": "short women walking down a runway, wearing unusual clothing, hats, aviator goggles, suspenders, striped socks, similar to Mickey Mouse gloves, smoke on the ground, fireworks in the background inspired by Salvador Dali. "} +{"id": "7000532", "video_name": "0e82d581-021f-53bd-b283-8c7bc69838be", "text": "After exchanging words with both creatures, Kiku continued his journey into the heart of the jungle. Message: 1 Attachment "} +{"id": "7000533", "video_name": "d7e66904-c1f7-51c3-8fdc-9a8cacb6b794", "text": "christs resurrection rising from the tumb cinematic "} +{"id": "7000534", "video_name": "279008a1-3791-5ad8-8ee8-8b03f5c13935", "text": "Dramatic scene of the Power Platform logo entering a portal to the future leaving the world behind "} +{"id": "7000535", "video_name": "f922e720-efef-512e-8972-a0ec00edb6ab", "text": "computer screen showing rotating roofing product, "} +{"id": "7000536", "video_name": "24eed976-afe7-5e8a-abbb-9be2d182e3f9", "text": "Debarkation Building was tremendous. The roof was almost lost in the heights. Gaal could almost imagine that clouds could form beneath its immensity. He could see no opposite wall; just men and desks and converging floor till it faded out in haze. "} +{"id": "7000537", "video_name": "a1e34633-29dc-50e9-b401-20ffd4cd2d29", "text": "foot stepping on a snake and bites cinematic lens and lightings night scene "} +{"id": "7000538", "video_name": "42a2140b-0c68-557f-a041-724d41e7ec2b", "text": "a table full of cocoa seeds, dark chocolate bars on top arranged like a mountain, hot melt chocolate pouring on top of all "} +{"id": "7000539", "video_name": "6b482c3f-b78b-59b3-b1bd-fca794d6f526", "text": "cartoon monkey and rabbit live togather in jungle "} +{"id": "7000540", "video_name": "bbefe0ad-868f-5794-bcc7-94067a379c04", "text": "creat an image of fisherman in an oceat "} +{"id": "7000541", "video_name": "28a0a75e-8fea-512b-8b8d-e27f4be8dd0d", "text": "Here is the image of a woman from a poor mountainous area looking at a newspaper for job listings. "} +{"id": "7000542", "video_name": "e3c8bb07-22bc-5f9d-94fb-5d203851349a", "text": "a large holy nun statue opens its eyes and smiles at the camera, vintage photography, realistic "} +{"id": "7000543", "video_name": "6b891a45-d6b6-559c-a910-87969a920ad7", "text": "dog in a quarantined room, bleeding from mouth, pov through observation double side glass window "} +{"id": "7000544", "video_name": "6067073c-e938-54b6-9220-11b3cc4726de", "text": "peacock ran back to the pond and begged it to change him back "} +{"id": "7000545", "video_name": "1705f576-7334-5736-92b3-e16a410f283c", "text": "image of locusts flying through el paso desert "} +{"id": "7000546", "video_name": "1982ac6a-1b13-54dd-8b1f-b0b895042fb7", "text": "2d style animation of multiple people walking in a crowded,busy sidewalk,cars driving on city street. "} +{"id": "7000547", "video_name": "85ec8475-7cab-5be4-a6f3-5b1ee557cafe", "text": "two men drinking bear in bar with dancing girls around Message: Prince (Font: MODERN) "} +{"id": "7000548", "video_name": "e30ce572-5fcb-5498-897d-146f215f35b9", "text": "Cloudy morning, a man comes out of the underpass onto a gray street, merges into the gray crowd. "} +{"id": "7000549", "video_name": "a603bb77-f9a9-507d-84f5-564b5faebd60", "text": "People that looks young is doing cossack dance "} +{"id": "7000550", "video_name": "18541347-92aa-5cef-bf44-d258c3054aad", "text": "Generate an illustration depicting a warm morning scene in the kitchen with a little boy having breakfast with his caring uncle. "} +{"id": "7000551", "video_name": "3b1a6da9-f7d6-5fa0-bafd-548b031db6bc", "text": "Thus, he escaped the mystery of the Midnight Carnival and embarked on a new and unique experience that changed his life. "} +{"id": "7000552", "video_name": "8f742cbd-59d6-5ea0-ad8e-143271461c13", "text": "young blonde cooks soup in a beautiful kitchen in underwear in the rays of dawn "} +{"id": "7000553", "video_name": "477c53be-6a1c-5d62-a3cd-43cda48325e4", "text": "man fighting to get out depression "} +{"id": "7000554", "video_name": "30189e03-1b0b-511a-8fdc-e384e445f523", "text": "an optical illusion of shapes and lines simple line art. Fine details. Astronauts. 8k "} +{"id": "7000555", "video_name": "28684f91-f689-504a-8ddb-75e4be3cbe3b", "text": "strong black unicorn, in a colorful forest "} +{"id": "7000556", "video_name": "2296143b-5f80-5d69-9381-619899e3ce22", "text": "Robotic girl playing drum on heavy metal concert "} +{"id": "7000557", "video_name": "c0b9e841-109b-5337-8684-673773eb0186", "text": "superman walking carrying a brown envelope, seen from a side view,ar9:16 "} +{"id": "7000558", "video_name": "6ad03eed-778d-5755-b527-316cca741a10", "text": "1. A girl walking in the rain. "} +{"id": "7000559", "video_name": "45e1880b-fecc-56aa-a7b8-b7210ae0b4fb", "text": "I am a woodpecker bird and I create magnificent wood sculptures. I am very famous in the art world. I prefer to live as an animal in the deep woods in the Catskills, NY but my work and art brings me to fly all over the world to create and sculpt art for famous celebrities and politicians. My collectors pay me a lot of money to sculpt with my beak the wooden columns of their multimillion dollar mansions. "} +{"id": "7000560", "video_name": "e962a683-8ea5-5e1f-a456-1bde463a52a5", "text": "very fast train going , video from side view, zoom out video "} +{"id": "7000561", "video_name": "96a413fe-652c-5ebc-9da7-20d44c256c78", "text": "Princess Liana appears. Black hair that reaches her shoulder. Beautiful blue eyes. She is sitting in a room in her castle, surrounded by books and papers. She seems to be deep in thought as she tries to understand the threat coming to her kingdom, her forehead full of concentration and worry.3D Disney Style .16:9 "} +{"id": "7000562", "video_name": "4f881948-edb9-5170-9e92-2ca95b9b6dc5", "text": "Chuck Norris fighting Arnold Shazenegher in space, with a lime green galaxy in the background and lots of neon lights. "} +{"id": "7000563", "video_name": "cd1fec2c-867d-5309-98bd-02f01ad7f742", "text": "surreal painting:monster from another planet, with fangs, oil painting "} +{"id": "7000564", "video_name": "d25ef064-8c64-502f-aefb-a0b2a5378a28", "text": "Ancient pyramid gate where explorers enter animation horror dark ghosts scary darkness style in sahara "} +{"id": "7000565", "video_name": "2ad6b10c-4395-50f1-8e7e-c20a2d4dedee", "text": "Quantum Computer cinematic lighting, 32k, ar16:9 "} +{"id": "7000566", "video_name": "bd676ec7-4fb7-56ed-bdae-7b9b9279bb95", "text": "Why is the urine that comes out after drinking a cup of plain water yellow "} +{"id": "7000567", "video_name": "5ae196f8-a007-5b40-89a5-36b6467dcacd", "text": "thing to give up in life "} +{"id": "7000568", "video_name": "7c374b33-faad-58d6-a54d-ee8482f43fb2", "text": "a super man rides a rocket "} +{"id": "7000569", "video_name": "46f22f6f-fc55-593f-aec9-29350eb6f88d", "text": "A child named Youssef and his little sister Laila. They lived in a simple house by the edge of the forest "} +{"id": "7000570", "video_name": "ffeb412c-b0a4-5790-b01b-9e5251054227", "text": "Dark anime style 90s girl with long white hair in the Dark place "} +{"id": "7000571", "video_name": "b96b4f1c-9070-5029-b283-222af737fae6", "text": "Psychedelic rave morphing into beautiful oblivion "} +{"id": "7000572", "video_name": "1e187c72-6cc8-51fb-8917-4b8c49119c53", "text": "astronaut looking down on a desolate and dead earth "} +{"id": "7000573", "video_name": "99b48a7f-a167-5208-8405-3a8e4307f880", "text": "Large marge chasing a talking squirell down 3rd avenue "} +{"id": "7000574", "video_name": "f6c24b63-a718-5337-a488-6c8e9fee79c1", "text": "digital white snake, scale color as text symbols, through the hall "} +{"id": "7000575", "video_name": "3086e34d-3f27-5f04-a9a4-9602ef17ffb6", "text": "a 13 years old young girl, flat chested, full body shot, tshirt tucked in, jeans, sneaker, slender face, black hair, meadow, small colorful wild flowers, 4k, 8k, HDR, absurdres, award winning, best quality, photograph, Hyper realistic, trending on artstation, ultra high res, highres, standing "} +{"id": "7000576", "video_name": "9a572719-4163-5468-88c6-7f9acc482c9a", "text": "garfield doing the 200kg bench press, cartoon version "} +{"id": "7000577", "video_name": "53240d95-a4a9-56d4-ac23-78cf66e873d9", "text": "high school student waling in class "} +{"id": "7000578", "video_name": "04e2b14b-5a18-5b24-a82b-9fccbefa1183", "text": "a young girl with long hair is diving with dolphin in sea "} +{"id": "7000579", "video_name": "32f8a789-209a-5b0c-92d7-ee66dc73aed7", "text": "One of the men spotting Shia and instructing others to catch her. "} +{"id": "7000580", "video_name": "3e05b389-2c9c-59bd-b152-2ffb3eb4a79f", "text": "Capture the final scene of Evergreen, with the trio and the townspeople celebrating under the moonlit snowfall "} +{"id": "7000581", "video_name": "3ca47d18-34ee-5ebe-8b90-cbfc261292fa", "text": "It generates an image of a young man dressed as a mercenary astronaut, without a helmet, with a rough, serious face, futuristic desert clothing, dark colors, riding on a machine, a robot shaped like a metal horse, on a planet of exotic vegetation. in the background, five big stars. "} +{"id": "7000582", "video_name": "0f03d179-15ce-5b55-a742-9b29be145251", "text": "young jungle animals cartoon characters pixar style "} +{"id": "7000583", "video_name": "aeeb4928-305e-5470-9e8e-060e4cfa74a4", "text": "News Anchorzooms in at the news desk,camerass swing around with a view from the director behind thecameramann pointing at the news anchor at the news desk, studio light,s and microphones everywhere. digital 4k realistic mood lighting "} +{"id": "7000584", "video_name": "6687828e-5bdc-5142-9732-0d9f5e9d9a8a", "text": "A cup tattoo with a realistic and detailed design. The cup should be made of ceramic or porcelain and filled with a liquid, such as coffee, tea, or wine. The liquid should be realistic and reflective and in motion, such as being poured or swirling. The tattoo should be in color, and it should be done in a realistic style. "} +{"id": "7000585", "video_name": "84d490b1-bf59-5376-b66b-0572828ed6f8", "text": "blond girl leaving barefoot colores footprints with paint on her feet on the white wall "} +{"id": "7000586", "video_name": "94a83484-6674-5167-9ac2-e5d3b4fb2167", "text": "beautiful morning balcony small seaside town realistic "} +{"id": "7000587", "video_name": "ff9ec8a0-44f4-56c8-ad27-ad054c60f287", "text": "Superman flies in front of shocked people, 4k, from different angles "} +{"id": "7000588", "video_name": "73dcbf89-1253-5aae-bb17-c670c0ea3107", "text": "the people dont listen to people "} +{"id": "7000589", "video_name": "5e150548-1984-5375-924d-f6b5636619d9", "text": "hong kong skyline, kowloon walled city, flash photohraphy, overexposed, night market, chase "} +{"id": "7000590", "video_name": "01ffd247-0cab-5580-84af-4b60b6da2c19", "text": "old couples dancing in the city at night) "} +{"id": "7000591", "video_name": "0fd5bf1d-7615-5324-a9ee-34cad8bfb2c4", "text": "POV go pro shot BMX down a snowy mountain on a ski field "} +{"id": "7000592", "video_name": "38139739-8959-5ec6-b833-1d483f7d2074", "text": "a chinese dragon in 3D, very real "} +{"id": "7000593", "video_name": "da018450-8088-5e29-b6cf-56c69581633e", "text": "create Jesus walking down the street making gestures and talking to several people;cinematic "} +{"id": "7000594", "video_name": "1e33b8e8-b894-5157-b669-8187911e754b", "text": "the environment changes in a dramatic way "} +{"id": "7000595", "video_name": "a75a2614-210d-5e28-b527-b94e789e2d50", "text": "Friends at a premium meat grill "} +{"id": "7000596", "video_name": "e47c9612-0c55-5629-a21a-b22d63944864", "text": "close up of a dark wizard making beats in the studio, close up, fish eye perspective, 16:9 ratio, film "} +{"id": "7000597", "video_name": "e203f449-de20-58fe-9d7c-d103185c638e", "text": "Create a mesmerizing video transformation: Begin with a single point and unveil its evolution into an entire world. Showcase the journey as landscapes form, oceans ripple, cities rise, and nature blooms from this singular point. Use your artistic flair and visual storytelling to capture the essence of growth, change, and the infinite possibilities that unfold when a point transforms into a whole universe "} +{"id": "7000598", "video_name": "de4861a2-d79f-5d3b-a144-27f959131b9f", "text": "Skateboarder kid with a toupe is rolling down an LA hill, a giant rock boulder is rolling down the hill towards the skateboarding kid "} +{"id": "7000599", "video_name": "b1b189e5-7fd9-59d3-aad4-cca020a5fd4c", "text": "Pomni ZAI ZAI meow meow Amazing Digital Circus dance "} +{"id": "7000600", "video_name": "0ba654ce-6808-50f2-9543-51e0e6dc93f9", "text": "vintage 1920s black and white music video of a futuristic rock band "} +{"id": "7000601", "video_name": "11e5216b-1d70-509b-be4d-7734d57d9fe4", "text": "water splashes hit the camera lense blur, camera below, sunset "} +{"id": "7000602", "video_name": "893ca695-cbfc-55b6-877a-9ff7a6c9d041", "text": "80s style cars waiting start of the racing, realistic, public around "} +{"id": "7000603", "video_name": "0ae33bc7-c94c-520a-8e1f-c10f3b2e5500", "text": "pouring a dark beer in a tall glass "} +{"id": "7000604", "video_name": "21164db3-1d21-5ef0-8e25-8e1d87acac8f", "text": "star wars characters, in the style of a mario bava italian 1960s B movie "} +{"id": "7000605", "video_name": "574cc200-6e29-5cf1-a39c-4c6ba07c1a3a", "text": "Knight Rider leds frontal car kitt "} +{"id": "7000606", "video_name": "9af23607-0af0-51c5-93b8-ff05df35dfe2", "text": "if you can give me the name of an anime you like, i can try to figure out who the artist is "} +{"id": "7000607", "video_name": "6e64d121-fd6f-578b-82dc-6b80ae65c1b2", "text": ":The dog raise his head a little "} +{"id": "7000608", "video_name": "7db24db5-3067-5b3c-9399-c9df9eed6d4a", "text": "wide angle side scroll in forest ninja running from left to right in high speed. The trees and back and white "} +{"id": "7000609", "video_name": "5c4b3f65-f098-5fd1-bd3d-5a461df51cba", "text": "while the volcanic lava is burning, a geodesist is measuring with a tacheometer on the edge of the lava. "} +{"id": "7000610", "video_name": "4b33b626-604e-5cbe-b504-20eb6e491221", "text": "a cat watching the sea while jumping over rocks "} +{"id": "7000611", "video_name": "03979a65-744c-5434-b201-cee22e937aa5", "text": "Blinking eyes, shallow smiling expressions, light changes, hair flapping, starlight, rich details, 8k "} +{"id": "7000612", "video_name": "31521345-a67a-5f96-bbce-18d814d0d937", "text": "A man holding go pro camera while running on a mountain "} +{"id": "7000613", "video_name": "1a7c6482-37d4-541a-b3ac-5a0d68ff7125", "text": "anime space chameleon in cyberpunk suit "} +{"id": "7000614", "video_name": "fe80a0b1-c20e-50b8-b9b5-928187834d7b", "text": "dark fantasy scenery with moving leaves and water also raining high definition realistic "} +{"id": "7000615", "video_name": "9db9d508-0089-5f4b-84c7-5bc2b49fa5bd", "text": "a look at the alien world of high technology in cinematic view year 2033 and flying vehicles riding around in a coloful lush city "} +{"id": "7000616", "video_name": "86424c7e-c829-58b5-9776-6baec8d72119", "text": "30. The townspeople cheering with joy as they see the restored Humpty Dumpty, colorful confetti filling the air. "} +{"id": "7000617", "video_name": "5a68bc43-ca9f-58d0-81e8-e676b99eb464", "text": "One fine day, the wise man woke up in a good mood and went into the porch to notice buckets of garbage thrown onto his yard, 3d animation, highly detailed. "} +{"id": "7000618", "video_name": "6f4ef755-475f-553d-9aad-62929f2df7f6", "text": "35 mm film Jerusalem temple 2 Jewish priests talking in secret "} +{"id": "7000619", "video_name": "e9e5c87a-ff50-5a18-9b00-c1db94abe910", "text": "Two people sitting side by side with their backs turned, watching the view "} +{"id": "7000620", "video_name": "82e1018b-6ca9-5aba-9456-daf9e775523e", "text": "In 4K resolution, you can imagine an Asian girl standing by the seaside, her long hair swaying in the breeze, dressed in a white dress, smiling as she faces the sunset, with waves crashing on the beach. This image will present an intricately detailed and lifelike portrayal, capturing the dynamic movement of the wind through her hair, the surging waves, and the glow of the setting sun, immersing the viewer in the scene. "} +{"id": "7000621", "video_name": "4c306e54-601a-5eef-b87f-9f82a4d7f063", "text": "winding line of does becomes straight line "} +{"id": "7000622", "video_name": "1f5048ce-c8ab-52a9-938d-9d4512a14802", "text": "soccer fans in a stadium cheering showing a message among all "} +{"id": "7000623", "video_name": "a1f38b0a-67f9-5f8d-8532-cf48ebb5f786", "text": "doghouse with a cute Pixar shar pei in front of the doghouse, high detailed, ultra high quality Message: ZERPAAY (Font: RETRO) "} +{"id": "7000624", "video_name": "09720aea-5b65-5f38-8d87-3354dbe19ff2", "text": "a deer walking on top of the mountain with the sun setting behind it, gs 10, motion 2. "} +{"id": "7000625", "video_name": "f5c20ecc-2c52-59b7-bc6c-9791a64b8f4a", "text": "Romen legion fighting against Cappadocian soldiers in the mountains using artillery and mele fighting "} +{"id": "7000626", "video_name": "9853fcb0-f279-5ed6-938c-d301a22c00ed", "text": "An ancient Chinese castle was destroyed by fire "} +{"id": "7000627", "video_name": "7522bae7-3f8a-5a0c-8378-89fb43ff9c42", "text": "Illustrate a conceptual representation of theoretical models used by scientists to explore and understand the evolutionary processes leading to multicellularity. "} +{"id": "7000628", "video_name": "c4d05fb3-1b4f-5c9d-8443-ada02d3db544", "text": "An oriental drum dancing in the air, cartoon shape "} +{"id": "7000629", "video_name": "b649d459-47bc-5686-9295-b05dcd85ae95", "text": "An ancient Chinese ancestor is rubbing a tree branch between both hands to drill a hole into a wooden stake. As the branch rotates, it produces smoke. "} +{"id": "7000630", "video_name": "c942985c-6a2c-563f-b9ae-9ce9dabf1433", "text": "A view of Hong Kong Victoria Habour from the Peak, a blue sky , daytime, with no people at the peak "} +{"id": "7000631", "video_name": "13beaa56-ca8b-5161-8b38-3917192159bc", "text": "A timelapse of a city with tall skyscrapers with the sun moving from left to right "} +{"id": "7000632", "video_name": "87cac331-07c8-5e89-ae8f-32a6f5f2f396", "text": "one neon mushroom growing in center, changing colors, with black background "} +{"id": "7000633", "video_name": "a1d06ea4-831e-5a1d-bd0a-3938eb8b3b77", "text": "baseball glove, hd, 8k Message: 1 Attachment "} +{"id": "7000634", "video_name": "055ac16f-cc78-514c-95e7-02e1165e7258", "text": "A young good looking boy is waiting in a train station. He is wearing a simple outfit, but he is still very handsome. He is standing on the platform, watching the trains move by. He has a thoughtful expression on his face, as if he is deep in thought. "} +{"id": "7000635", "video_name": "8b278e47-2bed-5ebf-b367-b770f18f3743", "text": "Ferrari 812 Fast and Benz G Wagon running towards the camera, close shot "} +{"id": "7000636", "video_name": "c8063226-ba49-5662-ac3c-4a2e6c17e18a", "text": "crypto dollars coin new year Christmas "} +{"id": "7000637", "video_name": "801e0f3d-0f82-53ff-8d87-2651575ef1b4", "text": "black and white film, 35 mm camera, closeup of a box, long boney fingers reach out of the box "} +{"id": "7000638", "video_name": "7ea254b6-3659-50ab-a2ae-14b3633aa108", "text": "Draw a jerky, thinly sliced \u200b\u200bdried meat, which can be fragrant beef or pork or dried fruit. The style should be close to the actual photo. "} +{"id": "7000639", "video_name": "d0c45c70-9412-59d3-b6e0-b99af04726b9", "text": "old mA man wakes up from sleep "} +{"id": "7000640", "video_name": "c9bdc6e9-86ca-5d2a-bc5a-52a9e2ca4874", "text": "people working in a busy media agency, manga style, nightime "} +{"id": "7000641", "video_name": "92580c43-e8cd-5b98-8062-f269b60ebb76", "text": "a green parrot playing a concertina "} +{"id": "7000642", "video_name": "c6022bba-c27f-5cd7-8801-2243faf64f69", "text": "Generate a serene beach landscape with gentle waves in the style of Van Gogh. 15 seconds long. boy and older sister walking along beach "} +{"id": "7000643", "video_name": "c6b6fc99-e461-5ec2-82fb-e004c6ad233e", "text": "a boy a driving a futuristic car "} +{"id": "7000644", "video_name": "b59164a9-2a62-5b79-a88d-bc3db4d808c7", "text": "a group of glowing bubble floating trough space "} +{"id": "7000645", "video_name": "6bfb1851-fa03-5166-be72-6a5bab30361d", "text": "a android walking through scorched earth and snowflakes are falling all around him. "} +{"id": "7000646", "video_name": "648066cd-be69-51cf-a140-c046e62e8755", "text": "A vast, picturesque rural Indian field with rolling hills in the background. A bright, sunny day with a clear blue sky and a few fluffy white clouds. The field is covered in lush, green grass with occasional wildflowers. "} +{"id": "7000647", "video_name": "df0cc01b-92dc-519f-be76-52f6c995ca51", "text": "pretty galaxy 42 stars , 4k camera "} +{"id": "7000648", "video_name": "e24b3ea7-b8ba-5f9b-a368-7cd041f44476", "text": "green cyberman, lots of dollar notes ar 16:9 "} +{"id": "7000649", "video_name": "6fc28e38-28e1-5627-add2-8ef81a22607d", "text": "group of friends blinking and laughing "} +{"id": "7000650", "video_name": "417f766a-99f2-52d6-8f92-d53e3375a30b", "text": "The woman and child begin to dance gracefully under the starry sky, creating a dreamlike scene "} +{"id": "7000651", "video_name": "804f9b50-9560-55fb-8c84-1aa7439856a5", "text": "Stormtroopers welcome on a 4th of July celebration "} +{"id": "7000652", "video_name": "9880d832-867f-5713-be21-9a608f69cd8f", "text": "On the battlefield, soldiers and mighty elephants charge forward side by side, advancing amidst the chaos of war. "} +{"id": "7000653", "video_name": "8ef1c833-2650-54b2-a77d-5bcedaf39a8f", "text": "the person at the computer desk, scrolling through search results "} +{"id": "7000654", "video_name": "43f678ec-a356-5d17-a57c-c77d87de4a48", "text": "Pig Bajie slipped and fell to the ground while stepping on watermelon skin "} +{"id": "7000655", "video_name": "96cba3ed-0cb8-55bc-b793-e5b339d95061", "text": "A whale wandering the Milky Way finds a cow trying to eat Jupiter "} +{"id": "7000656", "video_name": "a6617019-8730-537d-a6da-b01c4ea5f7e5", "text": "Gopal thought of a trick in his mind and let the other man do the same "} +{"id": "7000657", "video_name": "fbc8baaa-bdd9-5bb5-92dd-32a0b559ccb9", "text": "Princess Anna and Olaf are playing on Beishan Mountain. There is a lot of snow in Beishan Mountain and there are many beautiful trees. The trees are covered with snow, like silver magic wands. "} +{"id": "7000658", "video_name": "c0930982-6c44-5d64-b591-14467c3ad182", "text": "cinematic video of a man walking thirsty through a desert like the mount of sodom "} +{"id": "7000659", "video_name": "f685e63d-bcaa-5133-ae8e-8eff4d07cedb", "text": "lady addvocate and 6 lady firiends are singing in the train "} +{"id": "7000660", "video_name": "2277ceb8-882e-57a9-8c94-14b875ad5946", "text": "sharing their wisdom and love with all who sought the light of true knowledge and inner peace. "} +{"id": "7000661", "video_name": "564273f4-96fe-5620-9dc8-f48f5a04bb21", "text": "Medieval Persian Horse Archers: Imagine Persian soldiers from the medieval era, mounted on horseback and expertly shooting arrows from their composite bows while maneuvering gracefully. "} +{"id": "7000662", "video_name": "bc2e90c2-3bcb-5ab8-9f19-13acda241686", "text": "the pianist plays new notes on the piano. darkness, only the pianist is illuminated by a moonbeam. Surrealism "} +{"id": "7000663", "video_name": "af3a3497-0c2d-515e-bb57-bdc7c2f3c667", "text": "Intrinsic Motivation: Intrinsic motivation comes from within, driven by personal interest and the enjoyment of learning or mastering a skill. It often leads to more sustained and meaningful progress. "} +{"id": "7000664", "video_name": "dd62b596-0139-5366-9e8a-e23033ebc0c4", "text": "several birds are flying, zoom in.4k high quality "} +{"id": "7000665", "video_name": "c9498a00-5912-55cc-8ecd-d9038c3fd92e", "text": "There is a group of people at the top of the desert. "} +{"id": "7000666", "video_name": "98fa5216-735d-5fbe-8bc4-8fe6684993e3", "text": "create a 3d scene A 20 years beautiful single girll with wings in full dress flying in the sky "} +{"id": "7000667", "video_name": "2a155564-826b-52ce-a810-6489230943bf", "text": "During the investigation, I made contact with the spirits of former patients. Their voices told of the torment they had endured at the hands of Dr. Blackwood and their desire for justice. "} +{"id": "7000668", "video_name": "885c3970-3901-58eb-8327-74e0a47a541a", "text": "A hand above it has small planets floating around the hand "} +{"id": "7000669", "video_name": "14aca144-b518-5e36-ba08-b21e0dbc7c0d", "text": "Two elephant are wolking on the road "} +{"id": "7000670", "video_name": "f4b00116-2944-5b0e-ad1d-c9e3b9c50b98", "text": "emma raducanu and youngboy never broke again "} +{"id": "7000671", "video_name": "7a3f4f0e-2419-53d3-a882-0358ec2caed9", "text": "1968 film of man with red hair walking out of ancient Masonic temple "} +{"id": "7000672", "video_name": "a35f51c4-45ab-53ea-be74-aeaaca5bcdd2", "text": "musical notes floating between two people "} +{"id": "7000673", "video_name": "35aa17da-3961-5d8c-a9df-e2d1d9800ccc", "text": "drone shot of crowd during riot in Paris "} +{"id": "7000674", "video_name": "1e02f6ef-77dc-52c7-8b83-633c7285367f", "text": "video game of stalker (1979), set in a post apocalyptic wasteland powered by organic technology "} +{"id": "7000675", "video_name": "60117962-b279-5b85-8693-f1a700ed8cb5", "text": "Show a gathering of upset animals discussing the thefts "} +{"id": "7000676", "video_name": "ea33c15d-e6ba-51fd-b7ce-701e1117fed6", "text": "a graffiti background with a spades theme "} +{"id": "7000677", "video_name": "311ae29d-749c-5bb6-8540-241eee49ad58", "text": "A guy with a little beard and a young girl paint on canvas and tell stories to the camera. They laugh a lot and drink coffee and tea all the time. Sometimes they argue, but in the end they still hug. They often say serious things, but mostly they are fooling around. "} +{"id": "7000678", "video_name": "cdcab556-db51-56ae-861a-916124b73a86", "text": "Yoda sitting on a throne in a room full of mushrooms "} +{"id": "7000679", "video_name": "21dfcc7b-f9da-5e76-a6f2-690418895e69", "text": "a cat chasing a mouse with a stealthy creep. 3d animation for kids "} +{"id": "7000680", "video_name": "24beeaa8-de84-519a-854b-14e731aa14a4", "text": "first person view of opening saloon doors and walking into a bar in the wild west "} +{"id": "7000681", "video_name": "6f0d3f87-8a5c-533f-a0fa-767be94f3e39", "text": "girl swimming in great barrier Reef, camera pan left "} +{"id": "7000682", "video_name": "6c3ba111-98ca-5b78-a6e4-646ecbab45e2", "text": "Cyberpunk street, rainy mood, neon signs, a man walking down the street "} +{"id": "7000683", "video_name": "de2837a3-d867-5acb-b665-8c7ba543c06a", "text": "side view, fixed shot, people walking across, in front of a painted interior wall "} +{"id": "7000684", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "under the setting sun, some old men were harvesting rice in the fields "} +{"id": "7000685", "video_name": "35a7fc6e-7d01-534e-a0bb-7fa1c9d84a99", "text": "Characters enter the schoolyard. anime style "} +{"id": "7000686", "video_name": "7d797ad5-eb52-573d-9697-df8eed23d917", "text": "young man Jacob had always dreamed of owning a house, a place to call his own in a world that had been perpetually transient Message: 1 Attachment "} +{"id": "7000687", "video_name": "6b004bd9-6b88-5289-b409-da90cb9ac1eb", "text": "a barren overgrown ruined modern city "} +{"id": "7000688", "video_name": "c95656c0-8ed2-5f51-a096-37e659e30ed5", "text": "Aerial shots capturing the scenic beauty of the village. "} +{"id": "7000689", "video_name": "9abf2e80-e016-507e-91bc-95f678708649", "text": "metaphysical, 333, melanin, god, creator, void, love, infinite, self "} +{"id": "7000690", "video_name": "9371400a-58ff-5ab5-b8bb-7aeee1b770ba", "text": "Pure black background, lots of golden flowers blooming, high angle "} +{"id": "7000691", "video_name": "27177b1b-a521-5cb0-9df9-da758b9a7485", "text": "Make the pinguing stand in snow by a mountain Message: 1 Attachment "} +{"id": "7000692", "video_name": "bf108145-de16-52c3-980b-07a4171a766b", "text": "a massive explosion destroys a space station photorealistic "} +{"id": "7000693", "video_name": "3bac7d2b-30cd-5ca8-bacd-3ef4d15bc403", "text": "Four adult people 2 boys 2 girls walking and trekking up on this image pathway ,take image in consideration Message: 1 Attachment "} +{"id": "7000694", "video_name": "237d6917-4cc5-5963-96c6-937de90be4b8", "text": "Zoom into the conversation between the rabbit and the turtle, highlighting their differing philosophies on success. The turtle believes in steady progress, while the rabbit is confident in the power of speed. "} +{"id": "7000695", "video_name": "fc229730-ddb0-584d-8062-03830c801819", "text": "Elon musk on Omaha beach ww2 "} +{"id": "7000696", "video_name": "450616a4-fcdf-5e92-b7e7-dd27ab0e434b", "text": "a wooden house in a village, a river beside, a few ducks ar 2:3 "} +{"id": "7000697", "video_name": "412892ce-5def-5277-b918-3fcb908dc032", "text": "A monkey floating in space, looking at the earth, holding a banana "} +{"id": "7000698", "video_name": "48f4babe-c1fb-5650-b6ee-2cab214709d9", "text": "cinematic night time scene meteor shower bright spark "} +{"id": "7000699", "video_name": "aa78cee9-034c-58cf-ae22-a639693ceb9c", "text": "man running through different seasons with a stone "} +{"id": "7000700", "video_name": "cf23ebd0-c6eb-5523-936f-891f0bce2d95", "text": "a fight between diablo 2 characters and mortal combat raiden. wide angle "} +{"id": "7000701", "video_name": "fe8e320a-064f-5ce2-8554-a31a70a6a79e", "text": "A man leaves his house, comes to the road, sits in his car, then starts the car and drives away. "} +{"id": "7000702", "video_name": "f76d982d-db2a-5b06-a47e-ffc8646ca63b", "text": "autumn leaves falling from a big tree "} +{"id": "7000703", "video_name": "14c499dc-1119-5208-b8c7-a782e1debd06", "text": "sailor in fish boat, sea storm, waves, cinematic "} +{"id": "7000704", "video_name": "9a4fa4a2-3282-52af-9067-49f80ac2e0b2", "text": "tiny shiny fairies that live deep in their ears "} +{"id": "7000705", "video_name": "47bc3bf8-f7d2-5a3a-a804-226f983d82e8", "text": "A white bird flying on a green screen "} +{"id": "7000706", "video_name": "82abf579-853b-5827-9a16-7959e720a594", "text": "Snow mountain , heavy snow, realistic style "} +{"id": "7000707", "video_name": "8ebde6a2-6e97-556d-9b45-60f9c4463166", "text": "a cute bigfoot walking in the woods "} +{"id": "7000708", "video_name": "9615352f-cf6a-567b-9810-ff9293583912", "text": "dynamic anime manga of two curvy women fighting in form fitting ninja attire and swords, exciting, fast action, climactic, sin city style, epic ar 9:16 "} +{"id": "7000709", "video_name": "63196e34-7bda-5e05-96e9-2780b3732b99", "text": "a teenage guy with headphones doing home work in his room beside a window with beautiful night view in animation "} +{"id": "7000710", "video_name": "4d68766a-9c9c-5913-b218-30ba65aa1248", "text": "John wick fighting, anime style, hyper realistic "} +{"id": "7000711", "video_name": "4cc17dad-8853-5e33-8a00-e354b4b0c31d", "text": "Grandfather, Medium build, slightly tall and robust, Deep and knowing eyes with wrinkles that show the signs of aging, yet still exude determination and wisdom, Wears traditional Chinese robes, with the option of choosing dark colors such as deep red or navy blue, Short hair, gray or white, neatly groomed, learning English "} +{"id": "7000712", "video_name": "c7e6334e-c597-550b-863a-4e67341da177", "text": "woman chasing turtles on a greek island "} +{"id": "7000713", "video_name": "d428742a-a041-5128-8e05-0bb248cb317b", "text": "a girl reading book down oak tree "} +{"id": "7000714", "video_name": "db5934b3-f2f2-5618-ace7-d22a47ea1fa6", "text": "video about the opeanai ilya scared of the AI recent saga "} +{"id": "7000715", "video_name": "0a33ed68-b270-5f23-bb73-5d5ef1a5c29d", "text": "A cat running through an alleyway "} +{"id": "7000716", "video_name": "587a4bb7-a223-5964-98c7-f50a3a522389", "text": "The lion faced monster stands at the top of the mountain and stares below "} +{"id": "7000717", "video_name": "e5d4e8b1-5d02-5c6c-8d5d-32f2a3de5155", "text": "VHQ avatar god eating itself, 8K animation, highly detailed, cinematic, sacred, 32k resolution, sharp, marterpiece "} +{"id": "7000718", "video_name": "caa5c906-0842-5eb8-bebc-2e72366fb464", "text": "realistic video of Anne Frank turn her head from profile to front and smile "} +{"id": "7000719", "video_name": "74d66e80-6714-56f1-8b1b-405c89d49f67", "text": "Alan Becker and Mudja with copper katanas "} +{"id": "7000720", "video_name": "3f3c56a8-f9e8-50c5-8f56-804c8300af77", "text": "dog walking through a hallway at home "} +{"id": "7000721", "video_name": "9bf0f7a9-70c6-5d8f-84bc-9f04d4a6b933", "text": "A muscular, handsome man with a dragon tattoo is lifting dumbbells in the gym, and the girls are watching him. "} +{"id": "7000722", "video_name": "2cf74eb6-2502-5dad-813b-95eb7e8c6c7d", "text": "Lonely mountain field, an old couple, snuggled up in front of the window, the drizzle keeps falling "} +{"id": "7000723", "video_name": "c272b38c-f9ee-5f58-bd72-c263ea4c67e7", "text": "image:IMG20230917070731.jpg create pirate of the carribbean look "} +{"id": "7000724", "video_name": "6fc04b71-d976-5697-b7db-d2d74c10606a", "text": "a cyclone moving in the night "} +{"id": "7000725", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "a beautiful ladies spinning and dancing in the Cosmic world "} +{"id": "7000726", "video_name": "a97cb57f-aa83-5a1c-ab8f-7fc02c56e3e5", "text": "human android with a pearl earring\uff0cmovie lighting, ultra high definition, cg rendering ,volume lighting ,unreal engine "} +{"id": "7000727", "video_name": "313e9613-c602-53a7-ae2f-94862a8a4606", "text": "Imagine your world\n no beer to drink\n imagine your life\n without excesses of truth\n imagine the courtship\n no premarital marriage\n imagine that this\n was reality "} +{"id": "7000728", "video_name": "b671c753-cec0-5696-9e65-9d60ec212f08", "text": "goblins gathering around a bonfire. Pixar animation style like \u2018Inside Out\u2019 "} +{"id": "7000729", "video_name": "d11eee6e-4fa8-539a-b1f8-d08f78a034d4", "text": "cartoon man surrounded by bills. Sad and depressed "} +{"id": "7000730", "video_name": "330350b3-8998-58b6-94bd-d62e2523afdf", "text": "a dark shadow creepy is emerging in the dark temple "} +{"id": "7000731", "video_name": "e99ee970-47c0-508d-8910-1e3acc3aa5f2", "text": "Place: Mountains. camera Looks up in the sky and the sky turns dark. Suddenly a star falls on earth and fire starts "} +{"id": "7000732", "video_name": "04479064-294f-57f1-a493-280766d606ef", "text": "a flying horse with wings , around them are many cannabisflowers like a dream. HDTV, 15 sek, high Definition. "} +{"id": "7000733", "video_name": "f34996e1-1271-566d-ade1-0ba8ca213571", "text": "four friends go on a bike tour in Patagonia. Age 60, Asian male face, snowy mountains in the background, luggage on the bicycle. Full body picture, realistic, Photorealistic, hyper detailed, Pointillism "} +{"id": "7000734", "video_name": "225c5f2a-3ace-5d29-9421-dbdd428aa374", "text": "1950s aesthetic, liminal, 8k, black and white, detective wearing hat,focused on face, mouth closed with smoking cigarette, alleyway, raining, city "} +{"id": "7000735", "video_name": "a89aa6fc-1d99-5681-b29d-7a367f67df06", "text": "I want a design of Detective Conan "} +{"id": "7000736", "video_name": "8d52744e-5cc1-5e15-8636-be817674d138", "text": "A REALISTIC Saudi man and woman proudly waving the Saudi flag, surrounded by a beautiful landscape OF SAUDI FAMOUS MODERN CITIES "} +{"id": "7000737", "video_name": "c0180988-4483-5926-b41b-3798311c8fb9", "text": "Elon Musk walked on Mars, saw the Chinese capital market explode, was very surprised, then turned his head on a rocket and headed to China "} +{"id": "7000738", "video_name": "0a55e1de-65ac-5ad1-bfa3-68ae07b19476", "text": "Macedonian soldiers marching towards war on horseback alongside a beautiful Egyptian woman "} +{"id": "7000739", "video_name": "62e11509-e0e2-5d5f-aa69-c30450690e92", "text": "dark corridor in an abandoned house in an apocalyptic future cinematographic frame 8k "} +{"id": "7000740", "video_name": "30de734d-16e2-5a1e-8c5c-4e8ca5da7f11", "text": "An animated squirrel hopping from tree to tree, gathering nuts "} +{"id": "7000741", "video_name": "4faa289f-b8c8-59b0-989a-afcbfb31202a", "text": "roman reigns as a tribal warrior standing in a smokey foreground "} +{"id": "7000742", "video_name": "c4e32e28-0791-538e-8fc8-a9a4bad07b86", "text": "social avatar her name is ayel . ayel is influencer and activist Message: gender (Font: MODERN) "} +{"id": "7000743", "video_name": "c3639596-1f6d-5565-a67d-3af870f19501", "text": "Create me a 4k video with red flowers sunset and butterflies in nature Message: sas (Font: MODERN) "} +{"id": "7000744", "video_name": "1952629e-5b22-5f5f-b5d3-10880d323c3b", "text": "slow motion 3d blue vortex water flow with splashes isolated on a white background "} +{"id": "7000745", "video_name": "3be31c5f-42f8-5d79-9c89-794eef836121", "text": "a man eating yellow submarine under water "} +{"id": "7000746", "video_name": "3a898947-a61b-59eb-b586-3273ba0eaa1a", "text": "Hybrid Food: Ever had a cup of poodle noodles? Or cat cake? Make a hybrid food commercial think outside the cereal box. "} +{"id": "7000747", "video_name": "b1453767-bb76-5c13-86af-40db0ec3e2bf", "text": "Santa Claus is standing next to the Christmas tree. The camera zooms in on him with a molly zoom effect. "} +{"id": "7000748", "video_name": "8742a524-c75e-5e38-8118-3d68597398e0", "text": "Fire wasteland dump Message: END TIMES (Font: MODERN) "} +{"id": "7000749", "video_name": "330dfb77-95fc-506a-8389-c490539bd304", "text": "a young adult walking along riverside "} +{"id": "7000750", "video_name": "6401b614-af32-50e2-8c5f-4f4952066fe5", "text": "Create a visual representation of a roasted chicken in a rustic setting with a background of burning wood,8k, realistic "} +{"id": "7000751", "video_name": "fb8f10df-d298-5b7d-9909-aa2325e5d7a6", "text": "guards holding gate and enemies running around "} +{"id": "7000752", "video_name": "96ba5217-e043-5fb9-8983-123c6e9e5f8a", "text": "The tightly closed European style door at night "} +{"id": "7000753", "video_name": "2efc9a1b-4617-5733-9d2b-3b9b6f16e94f", "text": "sexy woman in bikini drinks a glass of water "} +{"id": "7000754", "video_name": "fc53a297-dbab-503a-b5de-a9326e4494ca", "text": "samurai sitting in armor cleaning sword 4k "} +{"id": "7000755", "video_name": "b0347c90-1756-553a-b55c-7b662fe12464", "text": "A sequence of suspenseful scenes: The thief evading laser security systems, bypassing alarms "} +{"id": "7000756", "video_name": "36da0c13-a3c7-53e1-9077-e205e823dff8", "text": "A thunderstorm passing the penthouse of Batman "} +{"id": "7000757", "video_name": "dd5d3b1e-5a06-5127-98bf-a49de30fcde6", "text": "Shark encounters Turtle and Dolphin discussing a mysterious artifact.\n \u2022 Turtle reveals the existence of an ancient relic in the Abyssal Trench.animation "} +{"id": "7000758", "video_name": "c5f9a905-989d-5620-bb41-e4331a7cb9c6", "text": "earth between venus and mars. 4k "} +{"id": "7000759", "video_name": "54bd04f9-bbd1-5110-a672-c4b23d86651b", "text": "An image of Rahul on the platform addressing the villagers, explaining his vision, and encouraging teamwork. "} +{"id": "7000760", "video_name": "a0bb33f8-a298-5982-bc58-a659fdfb3f8e", "text": "Special effects film, smoke rising, pure black background "} +{"id": "7000761", "video_name": "fd724e6c-0639-537e-954c-7568919d4ec7", "text": "Illustrate a young boy is reading Message: 1 Attachment "} +{"id": "7000762", "video_name": "9ffe58da-9fff-59ab-ac8f-f9ad4986ff5b", "text": "The cartoon male teenager looks anxiously at his phone, waiting for an important call. "} +{"id": "7000763", "video_name": "07417507-e4f2-5d4d-8217-9b7263f9c7ed", "text": "a labrador drinking from a mug which says doom on it "} +{"id": "7000764", "video_name": "453bde52-386a-5ccb-8888-0b31097a1fee", "text": "a human peeking into the glass of a shop of bakery from the street. Lot of humans are passing by the shop "} +{"id": "7000765", "video_name": "d4689641-d73d-5cb2-9115-35d803596645", "text": "A boy is dancing on the street at dawn "} +{"id": "7000766", "video_name": "23f9f13d-1b30-5f27-802f-00d5a3d70ae1", "text": "watching a football match at a stadium in paris 8k "} +{"id": "7000767", "video_name": "bb19228f-a888-5d3c-aeb9-aa1516146833", "text": "1970\u2019s cartoon of an old west quick draw cowboy "} +{"id": "7000768", "video_name": "a51a4586-48db-52f6-b3ab-2216719f342f", "text": "indian young women entering into the house "} +{"id": "7000769", "video_name": "fef42bec-52eb-5fae-af88-9eca92a6ab09", "text": "a man walking down a coastline at midnight "} +{"id": "7000770", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "A funny picture of a grumpy cat "} +{"id": "7000771", "video_name": "8c423962-35a7-5a22-bd59-e94733f9d4d1", "text": "The life of a human being is a journey from birth to the end. This journey is shaped by various elements and experiences. Your task is to generate the journey of human life as an AI. "} +{"id": "7000772", "video_name": "acbc150b-bfee-5907-a696-1560811bbd5d", "text": "A person looking back at a closed door with a mixture of sadness and resolution. The door is illuminated by a soft, fading light, emphasizing the significance of the final glance before moving forward. "} +{"id": "7000773", "video_name": "ada5064d-8636-5fc4-be52-8f91b5da6694", "text": "Townsfolk laughing and pointing at his paintings. in Van Gogh style "} +{"id": "7000774", "video_name": "0244782e-95b1-5ff4-b654-09b5635157fb", "text": "the driver who is controlling his leisurely walking delman horse. "} +{"id": "7000775", "video_name": "7f04c0dc-0ec5-5174-a8cd-b315128f66b6", "text": "ghost in front of people flying over then "} +{"id": "7000776", "video_name": "f18815d5-e51b-5563-ae93-29936ab772b8", "text": "One fateful night, as the moon cast a silvery glow over the Colosseum, "} +{"id": "7000777", "video_name": "d286d2a1-4ed2-5c23-9b65-a16046ea8f2e", "text": "meditating monk in the forest and in the air "} +{"id": "7000778", "video_name": "66a0212e-e122-56d0-ac06-35b6a90d288f", "text": "lego style , teddy bear wear batman suit and joker fighting "} +{"id": "7000779", "video_name": "8e8c2ab4-ead1-55a8-8f3d-296acd4f0dcb", "text": "a man looking front in the camera jumping from the roof "} +{"id": "7000780", "video_name": "e06cdd35-b333-5320-932f-9a47c942c2d5", "text": "eclipse eyeball, black background, thick fog and smoke smog and laser, dust and particles. black seamless background. dramatic lighting, Kodachrome film grain, laser, hyper photo realistic top aerial view, F1.4, center composition "} +{"id": "7000781", "video_name": "251d8182-0d80-5388-9ca2-683b881276e4", "text": "new settlement, nomad people are walking, steppe landscape, orthographic view "} +{"id": "7000782", "video_name": "8cd08b5d-c497-55c0-b471-1cab61a2fd63", "text": "God as a teddybear Message: Dieu (Font: MODERN) "} +{"id": "7000783", "video_name": "0278b7b8-5a55-5494-820f-fb74b11f2242", "text": "modern Icon of a Guy Fawkes mask with an image of dollar bills on the left half of the mask and red growth charts on the right with background red curtain curtains , Symmetrical, Soft Light, colorful "} +{"id": "7000784", "video_name": "9b215b8f-af15-5179-8d20-38a85cd8ad3f", "text": "Handing them over, he instructed them to break them together.\n\n \n\n He tried to break the bundle of sticks. Despite their best efforts they could not break the bundle. \u201cDear sons,\u201d said the old man. Look! It was easy to break individual sticks into pieces, but it was impossible to divide the bundle! So, as long as you are one, no one can hurt you.\u201d "} +{"id": "7000785", "video_name": "ec00ad7b-50c5-5927-9678-9660051e6015", "text": "man with brown hair, 3d pixar style, render in Cartoon 4k, in pajamas, he cleans the bedroom, 9:16 "} +{"id": "7000786", "video_name": "db32d979-0a50-5b52-9c9e-23f580db238b", "text": "A cozy room with soft sunlight filtering through the window. The young girl, Emma, sits on her bed, a notebook in hand, deep in thought "} +{"id": "7000787", "video_name": "17dfe8aa-1e15-5083-a94f-5fa4ece97106", "text": "a boy doing a class test, pixar style fps 24, no blur no distortion "} +{"id": "7000788", "video_name": "a9e8c24f-41a4-5fe8-ac45-d543c614fc7a", "text": "how would harry potter looks like after 20 extasy pills "} +{"id": "7000789", "video_name": "f70180d9-4dc8-5966-bb6f-ed490d5d7000", "text": "In 199X AD, the world was engulfed in nuclear "} +{"id": "7000790", "video_name": "3de2fbb2-be51-5dca-b401-7f5581ae7888", "text": "liya silver pov in cinematic style "} +{"id": "7000791", "video_name": "a286839e-e7b6-5e90-98a4-d8712bc6bdca", "text": "Taylor Swift at a sewing machine sewing all her clothes in a rapid fashion "} +{"id": "7000792", "video_name": "433f3525-2a0c-5f69-854f-eadf2fbdb4be", "text": "good looking man standing up to his chest in water at the beach "} +{"id": "7000793", "video_name": "99c4d711-5b59-579c-8af5-284d72fd07d2", "text": "A photorealistic von neumann probe expanding an AI empire across the universe. It is covered in bright friednly neon. "} +{"id": "7000794", "video_name": "6e378583-f714-503d-8d05-9a8b23472767", "text": "a 1927 metropolis film about a person inside a room adjusting the hands of a life size clock "} +{"id": "7000795", "video_name": "2a20294f-b472-521a-8199-d5467d5edd09", "text": "Describe the first encounter between the sea man and the sea girl, highlighting the magical atmosphere of the ocean, 3d rendering, ultra hd "} +{"id": "7000796", "video_name": "6a054594-a48b-54d5-bb4b-f40cfe6d7d76", "text": "ganesh ji walking towards a village "} +{"id": "7000797", "video_name": "ecbf8ce4-cb99-5e48-8ee3-bac3ed23c913", "text": "A crack runs along the wall and pieces of plaster and dust fall. "} +{"id": "7000798", "video_name": "1a6ec73d-c85c-511f-ac1e-77fcd4e85564", "text": "prompt: a boy playing football with his father "} +{"id": "7000799", "video_name": "3672bf17-4d33-597c-bb53-271f186d69fc", "text": "man is sudenly hit by a car in the street "} +{"id": "7000800", "video_name": "6947d51f-29a2-5202-87a7-bef3cad5a402", "text": "Journey to the West: Sun Wukong kisses the Bone Demon "} +{"id": "7000801", "video_name": "42753699-6fbf-5805-9083-6efd4d681ef4", "text": ":bike riding downhill through narrow streets,through a jungle and then diving into a waterfall, GoPro pov "} +{"id": "7000802", "video_name": "a775b43e-9430-56fb-aeac-fab9135f0cc7", "text": "A crashed jet fall on a land "} +{"id": "7000803", "video_name": "d904578e-31bf-5102-a8ee-24a0b0eb255c", "text": "infinity pool luxury resort in mexico "} +{"id": "7000804", "video_name": "7da48457-7b23-5721-aaa9-67dd04f73915", "text": "greek man stoic strong marble statue blink left eye to camera "} +{"id": "7000805", "video_name": "183c75e0-204d-5278-84fe-946fc0d52620", "text": "A cute cartoon of a woman who is full of love "} +{"id": "7000806", "video_name": "0bfde74c-b61a-5fc3-a8d8-e434ec76bc9d", "text": "God with long black hair and six eyes "} +{"id": "7000807", "video_name": "8055c34d-e0cb-57a2-9fc9-4392da86f431", "text": "the king was contemplating on his throne "} +{"id": "7000808", "video_name": "d5daa639-e62b-5174-833b-ca7367b45cc0", "text": "guitarist playing on the edge of a cliff "} +{"id": "7000809", "video_name": "93b408d0-a9de-592d-8c6b-1e7865597764", "text": "a lilac tree quickly grows from the ground in the very sky on a huge field "} +{"id": "7000810", "video_name": "b8214555-122c-5b2f-8a33-7233120f85ee", "text": "a flying pegasus next to a spaceship "} +{"id": "7000811", "video_name": "65621ad8-0dc9-52b3-a02f-2624178155b2", "text": "create an images avaatar of buiness man "} +{"id": "7000812", "video_name": "c25eaf6b-bcee-5ad2-a4e3-dfa6ac2b2f54", "text": "Mother opens door for middle age aon "} +{"id": "7000813", "video_name": "ea7731a9-ce09-5027-8f9e-9a7d0cf27f1a", "text": "a young man sits at a corner table, sipping his coffee. "} +{"id": "7000814", "video_name": "90704573-281a-5235-90e6-996cf6eec879", "text": "lighting of the sun on the water "} +{"id": "7000815", "video_name": "bef1125e-47e5-5183-8080-82697f04c3cb", "text": "boy in shorts, falling from the sky, waving his arms, anime style "} +{"id": "7000816", "video_name": "d6f4f8cd-4d90-5748-8e0e-d36dbad99028", "text": "abandoned town with people on the streets, with crushed buildings, in the night, with fire burning "} +{"id": "7000817", "video_name": "81c64840-6915-5f64-b874-fad1ab127d2c", "text": "the monkey gather all animals and mimics fox . "} +{"id": "7000818", "video_name": "5fa94bf3-0642-5a45-944a-43b492093354", "text": "Communication: The Backbone of Successful Businesses How effective communication drives growth and fosters a positive work environment. "} +{"id": "7000819", "video_name": "a33fed19-dfe1-5844-83cf-71fefbf87ca3", "text": "woman robot, vaporwave, giger, insanely detailed and intricate, realistic, super detailed, 4k, 8k, cinematic, intricate, sharp lines, sharp focus, fascinating, 4k, award "} +{"id": "7000820", "video_name": "71d24ed7-d4e0-52d1-bcf3-d8924ad4f007", "text": "create a video where a beaver eats corn under very loud music "} +{"id": "7000821", "video_name": "451c927e-fbcc-59db-a5e8-40f9ccb5225d", "text": "epochs succeed each other, from ancient to modern only black and white colors gs 10 ar 9:16 motion 25 "} +{"id": "7000822", "video_name": "0533850f-aa17-5062-8041-cb3d1297b868", "text": "make an animated video where a 5 year girl is growing slowly in to youth "} +{"id": "7000823", "video_name": "b29f5cbb-8206-57f1-bc75-76bbb074f1ed", "text": "close up of playboi carti on retro synthesizer , close up, fish eye perspective, 16:9 ratio, film "} +{"id": "7000824", "video_name": "0a67a96b-7473-5e2a-8120-d410f37abc07", "text": "large object falls into water, splash, underwater photography, dark water "} +{"id": "7000825", "video_name": "cc3159b9-be9b-55e5-aeca-a31eaa0b2492", "text": "A Fox walked in the forest, suddenly, a white wolf string out, scared the Fox ran away "} +{"id": "7000826", "video_name": "993f9ef1-3e15-5b8a-8131-e5915e2e15ed", "text": "top view of lake with many bloomed lotuses under moonlight. fast movement of lotuses on both right and left side as a boat enters with two lovers sitting on it. "} +{"id": "7000827", "video_name": "702b95ad-04f3-5a57-976e-0889f6c3dc56", "text": "Japanese high school girls running happily in a field,8k,realistic,best quarity "} +{"id": "7000828", "video_name": "fd0ecf36-c801-5af6-ae87-59668a4827cb", "text": "natural scents become bright colours Message: 1 Attachment "} +{"id": "7000829", "video_name": "f9a94165-7063-5d1e-a933-493ff71de608", "text": "a whitepaper of know magic gliphs "} +{"id": "7000830", "video_name": "1abb32b4-46c7-5910-b93f-e99ce6cfe233", "text": "a realistic picture of a drawn table, full of tools and colours Message: Pencil (Font: MODERN) "} +{"id": "7000831", "video_name": "42639bad-b569-5207-bb35-e95562652da8", "text": "a scary ghost peeking from behind a wardrobe in a dark, spooky attic covered in cobwebs, very dark, shadows, horror film "} +{"id": "7000832", "video_name": "9bfbc99e-ff21-5fb2-8cae-df7f86a5281b", "text": "a koala at the western wall in Jerusalem "} +{"id": "7000833", "video_name": "2ea54ca2-fc1e-5d96-b205-be9bb7a1a7e3", "text": "female portrait wearing red silk and red blindfold, dark background "} +{"id": "7000834", "video_name": "9571daf9-67ba-5e23-b444-df56e317f59f", "text": "forest beautiful magical waterfall nature 4x4crop Message: mujahid forest (Font: MODERN) "} +{"id": "7000835", "video_name": "0a526d1f-ce18-572f-9ef8-1b33e0a0ef9e", "text": "Three cute girls are walking in the park. "} +{"id": "7000836", "video_name": "f23d8b6a-789d-59bb-be79-d479f4e4f496", "text": "front view of a young handsome boy with an owl on his hand "} +{"id": "7000837", "video_name": "ab4fca49-80a4-5313-80b2-31c4e80e6bea", "text": "Intense moments of adrenaline surge as the adventurers face numerous obstacles, racing against time to fix the car and escape the perils of the jungle. "} +{"id": "7000838", "video_name": "642fb2df-bbac-5e83-8391-333b0712fa27", "text": "blink, shed tears Message: 1 Attachment "} +{"id": "7000839", "video_name": "081b516e-dc11-5ed7-9c14-44ea83b012ed", "text": ": Cute duck wearing a blue shirt blinks "} +{"id": "7000840", "video_name": "8cf213c1-3f63-512c-ae59-1474ed5b7177", "text": "A cute and beautiful Chinese girl, 18 years old, is carrying a basket with several cucumbers and tomatoes, followed by a cute white puppy, with a vegetable patch in the background "} +{"id": "7000841", "video_name": "433f3f04-c040-5209-a670-8934ab745ed5", "text": "vintage video of Russian writer Nikolay Gogol travelling to Cuba in the 19th century, vintage sepia, archive footage style "} +{"id": "7000842", "video_name": "3b44d8b2-cabb-5686-a71b-0cb27fa025f5", "text": "Pakistan cricket team wins the cricket match and celebrates the victory in lush green cricket ground at night in flood lights "} +{"id": "7000843", "video_name": "5be00fcd-b787-52bd-896d-06bc4bce8c4b", "text": "women watching the news, zombies in the house, landscape "} +{"id": "7000844", "video_name": "7ed98500-f809-5f5e-9e75-b1be6a520ab3", "text": "video of 30 second a full boady of a lawyer saving a prisoner from the hand of a judge in court "} +{"id": "7000845", "video_name": "e91636f8-aa9e-5eaa-9ce0-556de9cc560b", "text": "A portrait of a humanoid snake police officer singing in their patrol vehicle, a van, with the emergency lights flashing intermittently "} +{"id": "7000846", "video_name": "07ad872b-aa53-5d9e-be69-a2b7407ef2a7", "text": "Gabriel explores the vast lands of Elysium, meets a group of players in virtual reality "} +{"id": "7000847", "video_name": "bcc32909-f6e2-5d4a-9a63-2379ad8cc2de", "text": "make this girl catwalk on the runway Message: 1 Attachment "} +{"id": "7000848", "video_name": "716f6db7-7623-5d90-802e-2ff25d0186d6", "text": "a cute and beauful 15age girl, roses, neckless gold saining, pen nice camera, love and detectives storys thumbnails "} +{"id": "7000849", "video_name": "ff070fb8-df89-58ec-84a4-c6ee4dd2f1f1", "text": "Create a war atmosphere in the Middle Ages, no blurry,no deform,no distort,no ugly, no warp "} +{"id": "7000850", "video_name": "17b79055-e536-5a6b-be67-2f770bed9384", "text": "\u201cA man trading crypto currency in here trading studio background money Falling like a rain,he change as living style become a poor to rich day by day\u201d "} +{"id": "7000851", "video_name": "4e2620a4-689f-5f1b-87c2-0b4e4fcd33f9", "text": "couple walking together, birds flying around "} +{"id": "7000852", "video_name": "c8ea7ed0-f19d-5dc3-b643-0e0b4c297b4a", "text": "animals front of fort in night dangerous "} +{"id": "7000853", "video_name": "803efbe1-6626-5bb0-be14-f1c911830639", "text": "the priest of nepal winner defeating witch horror story background nepali temples\u0926\u0943\u0936\u094d\u092f 9: \u0926\u0943\u0922 \u0938\u0902\u0915\u0932\u094d\u092a \u0930 \u0905\u0938\u0932 \u0936\u0915\u094d\u0924\u093f\u0915\u094b \u0938\u093e\u0925, \u092a\u0941\u091c\u093e\u0930\u0940\u0932\u0947 \u092c\u094b\u0915\u094d\u0938\u0940\u0915\u094b \u0915\u093e\u0932\u094b \u092e\u0928\u094d\u0924\u094d\u0930\u0932\u093e\u0908 \u091c\u093f\u0924\u094d\u092f\u094b\u0964 "} +{"id": "7000854", "video_name": "9d52ceff-4740-5020-9da8-a42653419b59", "text": "A housewife woman watching tv, dreaming of food "} +{"id": "7000855", "video_name": "c7116962-997d-515f-a802-e073c1a57c16", "text": "a one minute video of pink sand falling into a cup really slow "} +{"id": "7000856", "video_name": "48b6002b-ac65-58ab-b265-cd56df21302d", "text": "Introduction to Java Basics This course will introduce students to the basic concepts and syntax of Java programming language. They will learn how to set up a Java development environment and write and run their first Java program. "} +{"id": "7000857", "video_name": "3b108e74-31a6-5f13-80be-0cb66f32c3da", "text": "In the heart of the dense, emerald jungle, there lived an elderly elephant named Elara. Elara was known far and wide for her wisdom and patience. Her vast memory held the secrets of the jungle, and her counsel was sought by creatures great and small. One day, a mischievous and curious monkey named Milo swung into her clearing. "} +{"id": "7000858", "video_name": "9a4e516d-e5bb-506f-b431-8c271a39eac0", "text": "Lady Gaga looks out of the Windows, back profile, lens effects from the Windows, Gaga wears a Black swan shape hat, there are Beehives around the room, Peter witkin style, Red and wood tones color scheme "} +{"id": "7000859", "video_name": "1dec9228-06b1-520f-99b9-cfe9a456b374", "text": "landscape image of the southern region of Israel, Iron Dome in action, intercepting threats in the sky, showcasing its precision and effectiveness in a conflict scenario "} +{"id": "7000860", "video_name": "b13a56ea-4ae0-52c3-8487-033fb247c74d", "text": "A cute neo chibi seal with anthropomorphic features wearing a red toque and a mustard yellow sweater walking through a fuzzy market "} +{"id": "7000861", "video_name": "74493d43-ba86-5068-84c6-69b1519c4918", "text": "calvary charging through the no man land "} +{"id": "7000862", "video_name": "a8eb5aa9-415e-58b0-bb88-ce80bd17cd9e", "text": "A man character is bending his knees forward and standing straight again. Visible movement on the knees. the theme is black and white and the character is drawed by lines "} +{"id": "7000863", "video_name": "fdc4b96f-f6f6-5cf1-a609-ada9f0503c5a", "text": "zoom in , when boy crying in call ,crying ,cinematic effects "} +{"id": "7000864", "video_name": "6da0b2a7-bd92-55a1-b689-19ba78cee3c6", "text": "Aerial photography, US Pentagon, panorama, old movies "} +{"id": "7000865", "video_name": "b22b9abe-da98-5168-a14b-e392c82eb9df", "text": "a town Message: DARLENE (Font: MODERN) "} +{"id": "7000866", "video_name": "06ade953-ecb7-5df0-aae3-42e5dd238d59", "text": "five flying saucers attacked the planet earth "} +{"id": "7000867", "video_name": "df32f69d-668c-56bf-8e05-0e0e4454eb46", "text": "wide shot of a black bearded pirate running from men in the streets of 17th century paris, 4k, cinematic, action "} +{"id": "7000868", "video_name": "cf84b13d-17c4-5fb1-917d-43e2ff04d0f7", "text": "man holds the universe in his hands "} +{"id": "7000869", "video_name": "8d46d5e9-27de-5b9f-8c1b-5ff74b24039a", "text": "A woman with a child in his arms in the street. "} +{"id": "7000870", "video_name": "a9e14527-d8f2-5e19-bb78-11e48ce61418", "text": "the image of a girl with her hair down but the universes are reflected in her hair and the universes move move Message: 1 Attachment "} +{"id": "7000871", "video_name": "775112b7-ef91-57b2-8830-801cb75d8958", "text": "their collective despair and surrender to numbness "} +{"id": "7000872", "video_name": "7b26e299-6eab-5cdb-8cd9-0790c2a2e538", "text": "A person standing behind the Eiffel Tower in France "} +{"id": "7000873", "video_name": "400b8257-14e4-50ab-b770-b8d3ae4bc4ab", "text": "a beautiful Asian lady in pink tank top and leggings doing dumbbell curls in a gym "} +{"id": "7000874", "video_name": "1cab4b79-4618-5dad-8e3e-da5881a8c95b", "text": "A giant dragon burrows round the chap into the water 4k 16:9 "} +{"id": "7000875", "video_name": "9f21dcf5-71f1-5262-b59e-d00547087a11", "text": "a cup of pudding flying on the sky have different angle "} +{"id": "7000876", "video_name": "3977fc72-df7f-585b-bd2a-e9225285fb31", "text": "dog in a land with blue sky "} +{"id": "7000877", "video_name": "6420566d-4166-52c9-a059-81b20ec7d165", "text": "The Desert Oasis: Imagine a vast desert landscape with a lone oasis in the middle. A weary traveler rests beside the cool waters, surrounded by signs of life in an otherwise challenging environment. "} +{"id": "7000878", "video_name": "497bfb7f-ea4e-57e0-bc12-0013ccaa8680", "text": "the sun flares above, people bowing, the standing woman surveys the land in front of her. "} +{"id": "7000879", "video_name": "c50b34d1-51f9-5b86-af0e-f7f60ee560df", "text": "a hot blonde woman in a skin coloured bikini "} +{"id": "7000880", "video_name": "2fa566d2-7536-5937-b4f0-d24cd33afdc1", "text": "enemy knights spying on the other soldiers at night "} +{"id": "7000881", "video_name": "657eb894-eca6-57d9-85a6-46404f979d71", "text": "glowing blue light shining in the sand, as a faceless individual walks on the beach. Golden hour. Playa del Rey California. Sunset. beautiful. Sharp Camera dslr, 30mm lens, 02 motion, ar1:1 "} +{"id": "7000882", "video_name": "5c6078f5-61fb-59c1-8a3a-6e71c5a198ef", "text": "Billy Herrington kissing a bear, 4k, dramatic lighting "} +{"id": "7000883", "video_name": "7c35395e-1730-5b87-b053-2f24fedb2660", "text": "A big bag of money is handed to a young successful doctor by a beautiful curly hair mexican professional insurance agent. Infinite background. Perfect lightning. Realistic. Ultra detailed. Professional photographer. 50mm. DSRL. Movie poster. Film award winner. Canes festival "} +{"id": "7000884", "video_name": "bc459ca9-490e-58d8-a524-c56fbb10f8c7", "text": "New York City in the year 2050. The streets are full of humanoid robots with advanced technology and an appearance almost indistinguishable from humans. the city is covered by a dark and oppressive cloud "} +{"id": "7000885", "video_name": "3d334621-997b-565f-85fb-598f3b7a9771", "text": "Teletubbies play black metal on stage "} +{"id": "7000886", "video_name": "7fa7a7d0-e727-554e-8a7b-5a7d5e3af409", "text": "A strange tree! Colorful fruits are hanging on the tree branches "} +{"id": "7000887", "video_name": "0649ca1c-9c1a-50e1-a05a-3129a59e519a", "text": "inside a data center, servers are full of every panels, cables are connected each other "} +{"id": "7000888", "video_name": "1f29bf9e-ddf5-596b-b94f-8098905a902b", "text": "blood forming a clear red gel capsule "} +{"id": "7000889", "video_name": "ccf9e332-f73d-5095-8ccd-e9182bcd3a7d", "text": "un blond girl in her apartment sat on a soufa with cross legs drinking tea "} +{"id": "7000890", "video_name": "2ec63030-0721-590e-b557-967e4d28e647", "text": "video about wishing happy birthday, dancing "} +{"id": "7000891", "video_name": "93e7148b-96b7-5be1-b0bf-f3e16e66555e", "text": "Trees growing on Burj khalifa and making it green "} +{"id": "7000892", "video_name": "34b926ad-e6d5-566c-b546-48db6c829752", "text": "drone pov from inside a crowded high school cafeteria full of students "} +{"id": "7000893", "video_name": "efbfb58b-091c-5b60-99e7-ba5d489725b7", "text": "Joseph Polish eats hard boiled egg. 8k. "} +{"id": "7000894", "video_name": "db93921e-fedb-5773-9470-ae57d316a99d", "text": "Purple gas giant planet in space "} +{"id": "7000895", "video_name": "e493aa8c-4d24-5b04-b350-3dc203d0e264", "text": "a sign hangs from the tree, studio ghibli style "} +{"id": "7000896", "video_name": "9b7043f7-8268-53c3-93e7-0e81cec7a686", "text": "vegeta from dragon ball z, with the face of ben stiller, charging ki, intense image, ultra realistic, cinematografic "} +{"id": "7000897", "video_name": "186dfac0-84df-5746-862f-17c56ec287a5", "text": "ha scenic forest images with high resolution "} +{"id": "7000898", "video_name": "d55df157-ff1c-53df-8578-01044886efb8", "text": "a knight dancing in ancient rome style of Louis Rhead "} +{"id": "7000899", "video_name": "907f26ca-62f9-51f4-83a6-dc046fa5e2ae", "text": "Picture a game of leapfrog, a man and a woman "} +{"id": "7000900", "video_name": "505da7e6-be64-5640-8362-d77e0cf982a0", "text": "Naruto fighting against Batman at the beach on Christmas Day "} +{"id": "7000901", "video_name": "187ee17a-2e18-52d9-bc96-2397a20ed608", "text": "A beautiful, warm, and cozy bathroom with big glass windows. A white tub is in the room. It is circled with candles on the floor. Outside, it is cold and snowing. "} +{"id": "7000902", "video_name": "e3cbb6ff-4808-5ee1-a49b-2a72e752aaf8", "text": "a boy plays video games in the year 1455 "} +{"id": "7000903", "video_name": "afa30cc9-3c42-5913-8115-e055e4b2f9fa", "text": "Show a serene town square on a snowy night. "} +{"id": "7000904", "video_name": "fe7b11e9-9dec-5358-8685-828cd5b9a48b", "text": "people running in terror around a giant flaming grill. super 8 film grain. 1961 "} +{"id": "7000905", "video_name": "50113e12-1c2f-5e79-ab90-a6cdbf9c9bac", "text": "write world mobile on a wall in africa "} +{"id": "7000906", "video_name": "386be606-4373-51d8-ba63-b3b070f5665f", "text": "joe Biden lost on the way out of door and rapper Drake looking in disgust "} +{"id": "7000907", "video_name": "732bf01d-cb0b-5bc6-bac0-7faee429a78c", "text": "a man smokes behind a window in rainy weather "} +{"id": "7000908", "video_name": "1e4dd316-ca44-54b0-81f3-89f07d088579", "text": "blue grumoy Care bear driving a car on a cloud "} +{"id": "7000909", "video_name": "6b5082d8-9932-5fe2-a481-a2dc3ab42859", "text": "In the heart of Ashenvale, where the ancient trees whispered secrets of bygone eras, a council of resolute Elven sisters gathered beneath the spectral canopy. Clad in robes the color of twilight, they sought to preserve the sanctity of their forest, vowing to protect it from the encroaching darkness, and to weave new tales of courage and hope among the leaves of their ancestral home. "} +{"id": "7000910", "video_name": "2c525889-ea6c-5978-bbd3-a60edc4836e7", "text": "A detailed illustration of brave black panther with steampunk mixed with colorful neon magical armour "} +{"id": "7000911", "video_name": "eac6e3a7-1d60-5e74-bb69-c5b0df389ce6", "text": "BITCOINS ARE FLOWING INTO THE FRAME, A LOT OF BITCOINS ARE FLOWING OUT, EVEN MORE! "} +{"id": "7000912", "video_name": "1636ff6e-99fc-5ce8-94b6-e6f838c3040f", "text": "a girl is looking at a cat. "} +{"id": "7000913", "video_name": "ba3035b3-c487-5e8d-a85e-7c029ffe4a07", "text": ": Describe a sunny morning adventure by the river. "} +{"id": "7000914", "video_name": "31ce2ece-3583-5e55-9f55-d4d40d10a4cc", "text": "steampunk lighthouse with a flashing light, at night "} +{"id": "7000915", "video_name": "6f4aa43d-84ef-59df-b15e-44f8064b9459", "text": "A beautiful park with two people sitting on a swing for two, camera rotate clockwise Message: 1 Attachment "} +{"id": "7000916", "video_name": "782a8854-1ff5-56e0-86fe-599e5c1c4c78", "text": "Describe a garden scene with a butterfly expert. Highlights include the colorful flowers and butterfly friends, such as bees and ladybugs "} +{"id": "7000917", "video_name": "eb212951-31bc-55b1-a6a7-14216eb15623", "text": "a realistic image of a young woman sitting on a balcony with a sea view drinking coffee "} +{"id": "7000918", "video_name": "da7b210d-e41d-5472-b273-6660db5bfbde", "text": "an injured teen hero lying on a battlefield with lava veins visible in the ground,cinematic "} +{"id": "7000919", "video_name": "d0b84efd-0eca-54b0-a8d6-06863fe1a178", "text": "create a sunset in a seaside town on a summer day "} +{"id": "7000920", "video_name": "e1be0c6c-8328-5546-b994-90754dada3fb", "text": "an elephant standing above a ball "} +{"id": "7000921", "video_name": "21fdfdaf-4ef0-52ff-b405-e07bcb8bc9a2", "text": "josef koudelka making a photo of giraffe "} +{"id": "7000922", "video_name": "019c25b3-63cb-5732-b4a1-b40e17b55b88", "text": "earth at tilt moving around sun "} +{"id": "7000923", "video_name": "273857fe-077b-5481-8168-3d19d400efe2", "text": "Scene 1: The Desolate Village\n\nA quiet, moonlit night.\nAn old, deserted village surrounded by dense, overgrown vegetation.\nThe village appears eerie and abandoned, with dilapidated houses. "} +{"id": "7000924", "video_name": "26926e7a-608d-52a1-a4b8-fc02a9985220", "text": "a pic from a men 35 years old and Wife 32 years old Girl is coller of caramel, with two Kids on the beach, with Palms. "} +{"id": "7000925", "video_name": "1dfb36e7-0bb0-576b-9969-877f20585046", "text": "cinematic tropical beach waves, 10k, hdr, vibrant, sharp, beautiful lighting, "} +{"id": "7000926", "video_name": "5eb57de7-eb32-51e6-9ae8-0ed9665feb45", "text": "Generate a scene showing determination on the faces of Rajoo, Sonu, and Sapna as they decide to work hard to achieve their dreams. "} +{"id": "7000927", "video_name": "0b835f73-7507-5093-9991-79e58297623b", "text": "A deceptive farmer sold the water well on his land to his neighbor for a large sum of money "} +{"id": "7000928", "video_name": "15a8665b-173d-5c71-a89b-5f0d6d935445", "text": "Beautiful, green forest, bright moon light, a beautiful spotted deer, and a rat. Both are standing opposite each other and talking. "} +{"id": "7000929", "video_name": "4edac37f-5e66-554e-8fca-12130bb35a2f", "text": "open kitchens and connecting dining areas, diners can witness the creation of their dishes in real time. This architecture encourages more interaction between chefs and customers. "} +{"id": "7000930", "video_name": "2150b7d5-4338-5b7b-b4a5-71fd4c5f8483", "text": ": a man walking through the neon streets of a city smoking a cigarette while an ominous aura envelopes around him "} +{"id": "7000931", "video_name": "d4f3f55e-50ea-5cbc-b420-c9da3a5b86fa", "text": "Just as the squirrel was about to drift into slumber, a peculiar sound reached his ears. It was a soft rustling noise that came from outside his tree hollow. "} +{"id": "7000932", "video_name": "d9682284-fdc8-528a-801b-3d40e03c0487", "text": "couple hugging each other, at the park, long play, realistic, aesthetic "} +{"id": "7000933", "video_name": "f2034401-ac64-5c1b-90ec-2f528447e729", "text": "creates the 3D intro for a comedy TV show called ILLograma "} +{"id": "7000934", "video_name": "a77d1993-7877-5a3a-92fc-5df3cb5c6c56", "text": "A hunter on horse back rides across the steppe, a bird of prey sits on the hunter\u2019s bent hand, and a greyhound dog runs next to the horse "} +{"id": "7000935", "video_name": "b0aecf43-4446-5b10-97c2-01f5522060e4", "text": "adobe logo with an arrow headed down "} +{"id": "7000936", "video_name": "1d65939f-266d-53b1-991c-6a32f9a332cd", "text": "christmas lights turning on in the dark "} +{"id": "7000937", "video_name": "b17146fe-efd6-5e69-b008-58df0c00aba6", "text": "cinematic horror, darkcore, Baltic violence tumblr HD, UHD, 16k "} +{"id": "7000938", "video_name": "56c0dc9b-53e9-51a7-90da-ebd1028273f1", "text": "A frog riding a skateboard, being chased by police frogs on a different skateboard "} +{"id": "7000939", "video_name": "b576f155-cd7c-51c0-9051-0331ff858c2b", "text": "man in mask and suit in cinema "} +{"id": "7000940", "video_name": "5bbbe7bf-61c1-5a8d-aca8-2ec0cb2e9f37", "text": "A wise, kind, noble, beautiful Chinese old lady "} +{"id": "7000941", "video_name": "82e2da46-c908-58a7-99ce-bb12f19ed527", "text": "surreal looking skeleton walking through the forest of Maine "} +{"id": "7000942", "video_name": "df74c534-53f4-5478-b493-7bb39c84c17d", "text": ": a dark forest, cartoon style "} +{"id": "7000943", "video_name": "bb0addb7-59f5-5d7f-9497-f76650b6e0c7", "text": "old red tehephone with background of industrial town "} +{"id": "7000944", "video_name": "47f9c812-47b4-517b-856e-f58910b70a6a", "text": "Figures gradually become clearer from the water waves Message: 1 Attachment "} +{"id": "7000945", "video_name": "b1893833-e7df-5007-92eb-befb74359961", "text": "scenes from the movie a scanner darkly in rotoscope "} +{"id": "7000946", "video_name": "52ddc86e-ed1e-5335-ab95-97bcdb8342fd", "text": "meditating raccoon in a beautiful magical forest "} +{"id": "7000947", "video_name": "b3aa9583-62c4-55e4-b40d-fd414cb90e62", "text": "Barn Owl sitting on the branch of a tree in forest and in the back of Barn Owl a mountain "} +{"id": "7000948", "video_name": "6299112d-f164-5da6-8e74-1098125f2df4", "text": "animation of a forest at night where there are a lot of fireflies "} +{"id": "7000949", "video_name": "abf08d74-df10-5702-be07-2bb63ec0bf67", "text": "large campfire ,louisiana bayou, spanish moss "} +{"id": "7000950", "video_name": "43807fe9-cf8e-555f-8bb0-8f9a3e1676ab", "text": "Through laughter and tears, Emma witnesses love stories, "} +{"id": "7000951", "video_name": "7c095f29-d8cf-5cfa-b45a-a5f076f15613", "text": "an egyptian eye watching from the top of a pyramid "} +{"id": "7000952", "video_name": "66ac2c67-b4fc-5981-8ed4-efa59f247dfa", "text": "a student is standing and reading book on the train . "} +{"id": "7000953", "video_name": "b13d8e98-ae6d-518e-9533-ed4103b52791", "text": "lady climbing the mountain along the stone road to the top "} +{"id": "7000954", "video_name": "65cc0658-e4ed-55b3-a8ae-daae0c601415", "text": "a picture of a bulldog sitting down on a sofa with a frown "} +{"id": "7000955", "video_name": "fc5fc5d2-c9f6-5284-9a4d-8b67e78498c7", "text": "The beautiful girl stands with her feet apart, hands crossed on her abdomen, and the overall shape of her clothing combined with her posture resembles the letter A "} +{"id": "7000956", "video_name": "6a9b094f-a650-5e1f-8a69-d7a50b899351", "text": "Margot Robbie as captain star trek "} +{"id": "7000957", "video_name": "a8d4c878-c220-501c-a016-c554aaa88000", "text": "a girl laydown on the bed at night and listening music "} +{"id": "7000958", "video_name": "5ca06384-2da1-5f04-97fc-3387e8e260fd", "text": "In a stunning natural setting, children climb a small mountain, and suddenly, the camera shifts to capture the moment when a breathtaking rainbow appears above them, while their faithful dog follows in their footsteps. "} +{"id": "7000959", "video_name": "d7511a58-48c6-5be3-9909-8fc512a7b4ff", "text": "creates hyper realistic image of a mature woman in sexy clothing "} +{"id": "7000960", "video_name": "60cce50d-5f41-518c-9347-c7e31cdbc52a", "text": "a man with long blond hair and a bushy mustache sings in the KFS "} +{"id": "7000961", "video_name": "ad510398-fdf8-505e-a445-46f79cd435c0", "text": "Generate a video of a family on a picnic in the park. This picnic must include at least one soda, 3 apples, 2 pears and a watermelon to eat. The family must be made up of a father, a mother, a baby, a boy of about 10 years old, and a golden dog "} +{"id": "7000962", "video_name": "49411197-c436-5440-9d7e-552e94dcb86d", "text": "create a scary Video with two chihuahuas "} +{"id": "7000963", "video_name": "ef151b2d-877c-5bd9-82c7-33cc4f3f1a53", "text": "a man is walking in direction of an old hotel into the woods "} +{"id": "7000964", "video_name": "3390e9e5-20e8-50a5-9349-b873df679f8f", "text": "liquid molten metal steel descending with fluidity with good rate and ascendingly fumes increased during pouring the molten metal "} +{"id": "7000965", "video_name": "744c6cb0-f45b-50d7-998a-e0b5dd262a0a", "text": "A ninja biker speeding thru the path of the mushroom forest. Fantasy, scifi. "} +{"id": "7000966", "video_name": "bda2ed2c-8972-51b4-b2f8-0bbecc6c88e7", "text": "snowboarder female getting on chair lift "} +{"id": "7000967", "video_name": "bed492cb-0eed-5d54-b4d9-ba91a0021b79", "text": "thorns and roses in the shape of E "} +{"id": "7000968", "video_name": "c4c622ed-6fa1-59a9-af84-352f6adac44b", "text": "a group of young prince gather in a beautiful palace, 3d, hd "} +{"id": "7000969", "video_name": "43523c88-26ea-5b01-8d12-a2a8cf2401f5", "text": "ship crashes into wharf destroying structures "} +{"id": "7000970", "video_name": "780f445c-aa77-54d0-a2d0-ffb067d11ea5", "text": "a man in a mask sits on the roof of a skyscraper and watches the explosion of the galaxy. in 4k "} +{"id": "7000971", "video_name": "6d556e63-8c7c-5cde-8e48-78b0d77aeaf1", "text": "icy wastelands of Northrend, night , camara aproach to Icecrown Citadel "} +{"id": "7000972", "video_name": "330ba905-3804-5fd5-bb80-a79303bbea33", "text": "anime style one girl in the bathroom with hair shampoo complete "} +{"id": "7000973", "video_name": "74efbcd3-53fb-5bc1-aec3-67f9a23cf82f", "text": "create a video of a person Sitting at the desk in an office and make a speech "} +{"id": "7000974", "video_name": "ccbf820b-72fc-5172-90e8-eb7adc806c0d", "text": "alien trying to put together ikea furniture "} +{"id": "7000975", "video_name": "06808df3-1632-57f1-9564-bcb94b85b256", "text": "A man walking on the surface of Mars wearing a space suit, his body bursting with pressure "} +{"id": "7000976", "video_name": "a02f0e15-f85a-539b-87e9-26f4a65a14d5", "text": "a father hugs his son tenderly "} +{"id": "7000977", "video_name": "c0668c90-12f8-5c4e-90c0-89e2d30f9740", "text": "a dark wood cafeteria, people drinking coffee "} +{"id": "7000978", "video_name": "74e59995-43ec-560c-8013-588b69b4b074", "text": "A hellcat on highway with an Ferari face to face "} +{"id": "7000979", "video_name": "b8baa481-75c5-570f-baa6-9accd98fa5b7", "text": "3d anime space girl listening to lofi music HD loop video "} +{"id": "7000980", "video_name": "296ccff1-bbbd-587f-8df5-374168dfbac4", "text": "Elon musk in iron man armour versus Mark Zuckerberg who is godzilla "} +{"id": "7000981", "video_name": "be9b0b89-a5ca-55d2-929b-3ecb4232edfe", "text": "woman showing body brewing coffee with beautyful white kitchen in the background "} +{"id": "7000982", "video_name": "7b963755-e98a-5525-a43e-84ad4fa8d0a7", "text": "A Fox Fighting A Squad Of Bees "} +{"id": "7000983", "video_name": "250b2ac8-139b-50ed-9f56-f2f6901dcf2a", "text": "a man large dark skinned muscular man wearing medieval Arabian armour in the night in the dessert as he stares at the moon and compares it to the beautiful face of the woman he loves who is wearing an Islamic moan and put emphasis on the beauty of her eyes and as he stars he cries tears of dark blood "} +{"id": "7000984", "video_name": "34bb828d-3d91-57db-a686-b50c3d842f91", "text": "people laughing and having fun in New Hampshire, having a good time, enjoying the Thanksgiving holidays together, moving in slow motion, cinematic, engaging to audience "} +{"id": "7000985", "video_name": "8efe403d-f616-5295-8be4-1927bf5b1dec", "text": "a video about 2 cars bumping into eachother "} +{"id": "7000986", "video_name": "69629f51-fe2c-5d03-a094-63ef5436b120", "text": "A girl who was putting on makeup ran out Message: 1 Attachment "} +{"id": "7000987", "video_name": "ab0ff39d-174b-5544-a80f-8d3aaa88204a", "text": "A spaceship is driving on a snowy plain, with snow falling all over the sky "} +{"id": "7000988", "video_name": "a2aa8e31-e447-54f8-a0d7-b99dcb336a61", "text": "As the obsession grew, a group of villagers formed to protect their community from the allure of the TV. They struggled to find a balance between enjoying the magic and safeguarding their lives. Eventually, they decided to limit the usage of the TV, allowing each person only a certain amount of time per week. "} +{"id": "7000989", "video_name": "419476e7-6ae1-5fcd-97b7-61b6f3c68275", "text": "a young artist displaying her paintings on a sidewalk of a city, various canvas paintings "} +{"id": "7000990", "video_name": "9581506e-fbb9-5e19-8fef-fc7d5d67d518", "text": "Dynamic introduction of the speakers with a tech background\uff0cExploring the secrets of human marketing, entering a new era of AI live streaming. Film effect. "} +{"id": "7000991", "video_name": "a2680f27-82bc-5336-876e-38e3318df244", "text": "Frog chasing behind in the river, 3D animation "} +{"id": "7000992", "video_name": "7dec9b0b-eb58-53fe-b2d6-c0718c889bfa", "text": "young Asian girl reading book and listening music "} +{"id": "7000993", "video_name": "f2e7009a-e50e-5ad3-bc6e-72c3a7e460fd", "text": "stood like a silent sentinel against the encroaching darkness "} +{"id": "7000994", "video_name": "0128875c-e154-5438-82b3-a8743ab115e5", "text": "a faceless man wearing a suit holding a breifcase and walking, motion 77, seed 777 "} +{"id": "7000995", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "bunch of candys in a bowl "} +{"id": "7000996", "video_name": "1a8c243c-0b5d-507d-b93d-96d46140c947", "text": "office employer in a dark office, he is sad "} +{"id": "7000997", "video_name": "f7f53147-879f-561d-adb8-fdae8652cca3", "text": "donald trump and joe biden arm wrestle "} +{"id": "7000998", "video_name": "a926804d-4048-55c1-9b2d-2865da9a6f5e", "text": "a chilote fox sitting on a trunk of the native chilote forest realistic at night with neon colors "} +{"id": "7000999", "video_name": "4b521aa1-3cb2-5c30-aebf-0cd4247f11a5", "text": "70\u2019s style footage of a mermaid swimming in a luxurious pool, motion "} +{"id": "7001000", "video_name": "37d619ee-c1a6-5f7c-ad03-095800db49cd", "text": "Create a realistic image of the the pyramids of Meroe standing tall against the backdrop of the setting sun. "} +{"id": "7001001", "video_name": "54e4ef5f-6497-5e18-88f9-97d3bc1ac4da", "text": "trump walking down a super model runway. "} +{"id": "7001002", "video_name": "8c28b52d-7c8c-5e2f-8cc7-abc9718e5f0f", "text": "The CorgiAstronaut and the CapybaraAstronaut perfectly helmet, Wide angle in the middle of a giant empty museum, Grandmother, an older woman with longer hair and a cane in ragged clothes, walks slowly through the museum of natural sciences "} +{"id": "7001003", "video_name": "cdccac8c-d62e-5396-8891-80830e8f8040", "text": "1970 arthouse film : a cold colored sun set in marfa texas "} +{"id": "7001004", "video_name": "cf309951-5fdc-5df9-95b6-7675558850f4", "text": "a droplet splashing on an unethical "} +{"id": "7001005", "video_name": "9772db28-e7f3-5d31-9dd3-93f650412b5d", "text": "a ufo being chased by 3 airforce fighting jets "} +{"id": "7001006", "video_name": "57231244-3d35-54aa-92ad-c150afd70ed4", "text": "bridgette bardot in the snow wearing a fur coat and hat, 8k, cinematic "} +{"id": "7001007", "video_name": "0d7e13b3-4cf9-510c-a1b8-cc0a5eebe41c", "text": "a futuristic city scene neon lights in slow motion "} +{"id": "7001008", "video_name": "b9bc78f9-4a1e-54e1-9a1e-f3894ebe140d", "text": "a big tiger is walking on road,looking into camera,attitude,strength,16k,hyper details,ultra realistic,cinematic "} +{"id": "7001009", "video_name": "d720a165-ba3c-5a4f-acd9-0a897abf0dca", "text": "the darkness of the cosmic depths "} +{"id": "7001010", "video_name": "d63b46aa-a8fb-56cd-8626-246c6f18243c", "text": "Eva Green in a pink dress walking through the streets of Boston; tracking shot with anamorphic lens on 35 mm film stock "} +{"id": "7001011", "video_name": "714cea86-f5b6-5316-abba-d4f237945378", "text": "moving water, sky and grass from above "} +{"id": "7001012", "video_name": "9971e188-a451-57ef-97a8-2635130f28f8", "text": "underwater footage of a tiger shark and a coral reef "} +{"id": "7001013", "video_name": "00f31c61-3048-51ea-be48-e0a288732807", "text": "doomsday cinematic arial 70mm footage of doomsday at costco "} +{"id": "7001014", "video_name": "5bc132f5-88c5-5f8f-8b37-69a9f164bf26", "text": "But this time too the son was a guest only for a few hours. "} +{"id": "7001015", "video_name": "886a175b-1df6-50f1-b255-cfc4bed336c7", "text": "a young boy getting into a horse "} +{"id": "7001016", "video_name": "8cf6db4d-c46a-53fa-9270-f1ce0f9e4bca", "text": "a woman standing in a field of sunflowers, hair blowing in the wind, photorealistic, 4k "} +{"id": "7001017", "video_name": "66785517-6c0e-56ae-89ba-5adf5f133a70", "text": "skyrim town with blue Fursona walking in it "} +{"id": "7001018", "video_name": "7add40d2-4a7d-590d-a88a-0c43dfbf668d", "text": "In the mirror, Ellie saw her reflection, but it was a twisted and terrifying version. She tried to leave, but found herself unable to move. Suddenly, the ferocious reflection in the mirror detached from the mirror and slowly walked towards her. "} +{"id": "7001019", "video_name": "0bf42c7b-9b03-5607-af95-f95a53c7d853", "text": "several golden dragons are flying with neck decorations in front of the text Message: Valor (Font: MODERN) "} +{"id": "7001020", "video_name": "73b658bb-c91f-5726-a8de-3b3fb680cdcf", "text": "a hill of puddled earth, in the middle a cave with a light, a cloudy sky with a full moon and a harlequin doll playing a piano Message: . (Font: MODERN) "} +{"id": "7001021", "video_name": "f7564f61-0192-5cb4-8827-5a7f5284f808", "text": "The screen shows a lush, vibrant forest with tall, majestic trees and colorful flowers. Sunlight filters through the branches, creating a magical atmosphere "} +{"id": "7001022", "video_name": "73818786-c353-5709-8cf6-98458216e22b", "text": "Celebration in Shanghai on the Lantern Festival. "} +{"id": "7001023", "video_name": "e9a97ade-1b28-51ef-adfe-88b5735e685f", "text": "Variety Stage, Boys, Suits, Piano Playing, Finger Detail Depiction, Manga, Secondaries "} +{"id": "7001024", "video_name": "c09a6880-a806-52f0-aacb-9d754e363564", "text": "Create a captivating 3D animation of the village at night with the mysterious sound echoing in 4K. "} +{"id": "7001025", "video_name": "e9d1420a-4226-5ffd-b28f-7b84e9c44f44", "text": "12 second video, 15 people gather together, they look at the sky full of miracle, grassland, soft wind blow the grass, petals flow to the sky, camera zoom out, 1980s anime realistic character design style "} +{"id": "7001026", "video_name": "737dd954-6291-5bb9-a0de-0ad340e583e8", "text": "30 seconds advertising of the Russian railway 2D drawing "} +{"id": "7001027", "video_name": "b4bd3aa8-ee98-515d-8f67-c3b6e1833b25", "text": "people in yard with hoe preparing pork rib hoe "} +{"id": "7001028", "video_name": "d9ba800d-5914-5bda-a11a-54f830556fb2", "text": "high resolution of water drops on an autumn leaf "} +{"id": "7001029", "video_name": "cadb1629-9d07-5cff-adeb-db8c3966fcd1", "text": "children dancing happily in rainy season on road,realistic "} +{"id": "7001030", "video_name": "b3c8570a-0ff9-59f5-9624-4b5833e3e243", "text": "teenage boy with half blue and half black hair sitting on the floor in his room drawing in notebook and listening to music with headphones "} +{"id": "7001031", "video_name": "1c3a431e-aa4c-576b-b464-727459b077a6", "text": "A big wooden clock in an abandoned castle where the camera comes from the door of the room "} +{"id": "7001032", "video_name": "79f50616-7508-5206-9e01-29e8dd06ae8d", "text": "sexy beautiful girl walking in forest on sunset "} +{"id": "7001033", "video_name": "cf70f236-5413-59e1-942b-35faf57f8f27", "text": "old school rock band, live concert, crowd, lights Message: 1 Attachment "} +{"id": "7001034", "video_name": "63c5b2e0-c0b7-5fb2-b85d-24f5fe480b9e", "text": "a bald middle aged man talking to the camera in a self filmed youtube video in his bedroom "} +{"id": "7001035", "video_name": "2c1318d5-7ee5-56da-b54e-3e95e8057e61", "text": "chalk drawing of a scorpion coming to life "} +{"id": "7001036", "video_name": "8092c345-c8f5-5a13-b9c3-edd8bbddb04c", "text": "a wizard dancing at a farm "} +{"id": "7001037", "video_name": "8b46329c-f154-5cf5-8781-9fec05d75342", "text": "monster tackling a 1970s game show contestant in a studio obstacle course "} +{"id": "7001038", "video_name": "2347f898-663c-596a-94ec-332fb24347fa", "text": "A little boy in armor, fighting against the virus, Ghibli Studio style. "} +{"id": "7001039", "video_name": "0524c840-22a2-5dce-a213-c74771ae9640", "text": "woman walking in the forest with a old map and a lantern dark background "} +{"id": "7001040", "video_name": "99898d2e-d6ea-537f-aa33-d9d64917240a", "text": "A dog that speaks with artificial intelligence "} +{"id": "7001041", "video_name": "452a4463-3352-5ff5-a0cc-5fd0336cb8ee", "text": "black background, streaming neon green binary characters fall like rain from top to bottom, cinematic, 16k "} +{"id": "7001042", "video_name": "5b12ba55-c66a-579b-96c4-ec7da3671209", "text": "salvador dali falls fron the sky 9:16 "} +{"id": "7001043", "video_name": "92d9b418-1f55-5b65-a5c9-7092404b8868", "text": "Cartoons for children Cartoon films for children Educational for children with pictures Young children "} +{"id": "7001044", "video_name": "53dfbaa5-6dfe-57e1-ba05-f756dfe66b79", "text": "moving in the distance Message: 1 Attachment "} +{"id": "7001045", "video_name": "0538f40c-fd4b-53ec-b4ef-d60aa656dfa2", "text": "A surreal scene of colorful bubbles floating in a void background. "} +{"id": "7001046", "video_name": "9e858233-5f52-5593-9766-68f61a7f1800", "text": "child support, court, 24 fps, movement 5, cinematic, photorealistic "} +{"id": "7001047", "video_name": "6375a9c3-6f88-581a-b224-33b81990b544", "text": "nursing home, big room, medical equipment belt at the above of bed "} +{"id": "7001048", "video_name": "713a98e2-b7e4-5b6d-93bb-448281bde991", "text": "many pschedelic snakes in kaleidoscopic scene 1960s trippy 4k ar 16:9 "} +{"id": "7001049", "video_name": "b6914939-81c5-5b8e-a387-692b9b24ce66", "text": "The Nubb Gang rides bikes through an acid trip "} +{"id": "7001050", "video_name": "00f88d3a-6a12-5865-8439-9d02c47e9b80", "text": "anime video smart boy standing infront of tsunami "} +{"id": "7001051", "video_name": "1528aa7e-f66c-5309-b3b9-5061668edfe0", "text": "Cute anime boy white hair with a dog looking at the sunrise 4k ultra hd "} +{"id": "7001052", "video_name": "a107a08d-3a8b-5a61-b553-ccfcaa05045e", "text": "a beautiful girl from kashmir in the snow with a background of mountains "} +{"id": "7001053", "video_name": "d9fbb9da-539b-542c-878a-11c58b5dac02", "text": "lowe level shot. close up. A shadowy figure rising from the lake. dark, thick mist moving across a lake at night. . Cinematic scene. style:Realism duration:Long "} +{"id": "7001054", "video_name": "a156440e-3ffc-517c-8897-a1921d5d39b8", "text": "a girl swimming in a glass pool and came out after 3 second "} +{"id": "7001055", "video_name": "5f4efe2e-04c0-59be-afaa-af35d5536fc7", "text": "one man falling down from the sky,and he dead "} +{"id": "7001056", "video_name": "c149e86d-63d9-5cd4-8f46-47d2fdbf1c42", "text": "a blond hair and green eyes warrior lady on a walking dark horse "} +{"id": "7001057", "video_name": "6d2fd0e7-5d70-585b-91ed-aeecc8bd1cd1", "text": "An alien coming out of a mall of new york in modern attire, cinematic, 4k "} +{"id": "7001058", "video_name": "83e42271-4f65-50ef-a4cb-ba3e1d165aa3", "text": "few Trees with some moss on the bark "} +{"id": "7001059", "video_name": "38544ce5-ef39-53ce-895d-923bf4612542", "text": "insects and mosquitoes splatter on the dashboard of the car that runs fast on the highway, daytime, cinematic style "} +{"id": "7001060", "video_name": "a64ec8fd-b1d7-5a68-a552-55a2eff7d22e", "text": "a lot of rocking horses waving nostalgic happiness "} +{"id": "7001061", "video_name": "f2864860-c1a0-55dd-9390-b86d422bca87", "text": "zoro one pice fiery cape and backroud with blowing leaves burning 8k "} +{"id": "7001062", "video_name": "5e3c3ac3-dd65-56df-8544-616183f392b9", "text": "Suddenly, a radiant angel appeared, its wings shimmering in the moonlight "} +{"id": "7001063", "video_name": "e696879c-479f-50a9-96f8-90f94a682026", "text": "a high quality vedio of a child holding a white flag "} +{"id": "7001064", "video_name": "7950a00b-67ee-5ea2-9ac7-a2cd48878a9c", "text": "A cute cartoon child is dancing on a pure green background "} +{"id": "7001065", "video_name": "8b3ee5ba-39af-5413-b03c-9354968d1fcd", "text": "a horse running in a long beach "} +{"id": "7001066", "video_name": "fcb99d1a-3dd3-5287-8588-2960e960943e", "text": "Israeli soldiers running in fear from Palestinian youth "} +{"id": "7001067", "video_name": "267a5706-70d2-5405-966c-4542f0f94958", "text": "doctors panicking due to machine error "} +{"id": "7001068", "video_name": "3273c54b-a360-55d1-afc0-be09793531d5", "text": "a computerscreen with a popup window saying in english that monitor is going to sleep mode, write correct english text, very detailed, good readable "} +{"id": "7001069", "video_name": "a6aaa5ff-fe3c-524c-b450-a2d3b158ace8", "text": "ultra realism engine unreal 4k, simple 3d puppet, white background on a dark shadow, in super slow motion "} +{"id": "7001070", "video_name": "362d672b-3f0e-57e8-a2ca-2278f76ede51", "text": "pov walking forward down a dark alley at night toward a young punk girl with a leather jacket and a green mohawk "} +{"id": "7001071", "video_name": "c866698e-1a0c-55a0-95c1-577b636ac3a0", "text": "enthusiastic minion character looking towards camera, jumping up, in a university outfit, wearing a backpack and rugged walking boots, balkan style university building in background, sunny, clear sky "} +{"id": "7001072", "video_name": "6af3dfa5-584f-5aac-9420-884c3af54fd3", "text": "a bueautiful girl danding in the snow "} +{"id": "7001073", "video_name": "43007b94-a8e5-5a85-b5dd-46d4776b866d", "text": "A charming village nestled between rolling hills and a whimsical forest. The houses are adorned with colorful decorations, and kids are dressed in creative costumes. "} +{"id": "7001074", "video_name": "c57c3f6a-dc67-5e88-92d9-7b61388f3921", "text": "wet pole in style of impressionism paintings "} +{"id": "7001075", "video_name": "a13a7338-0ee5-560d-a31c-1de6bc073c5e", "text": "woman scared and hiding in a cupboard with her 4 year old son "} +{"id": "7001076", "video_name": "28ef7157-549e-52a6-bd43-b4faa7ef3138", "text": "Black clouds Message: NeuroCognito (Font: MODERN) "} +{"id": "7001077", "video_name": "d85d2033-95b6-5a4d-b96d-58382ed23e9d", "text": "And so, the children returned to Willowbrook, their hearts filled with the memories of their grand adventure, knowing that they had left behind a legacy of peace in the land of toys. "} +{"id": "7001078", "video_name": "1c5fbdbd-8986-52f9-a05c-5fead05f78da", "text": "The old man is swinging in the park, 4k, sharp, Arri Alexa, depth of field, highly detailed "} +{"id": "7001079", "video_name": "39de30fb-1df3-5556-a465-e4a73ddd770b", "text": "mouse continued to steal food, even when it was kept in an earthen pot hung from the roof "} +{"id": "7001080", "video_name": "0410c79d-0fe5-5e6b-9fc3-f16441de69a5", "text": "Joe Biden being escorted to a police car by 2 police officers. Joe Biden is handcuffed. "} +{"id": "7001081", "video_name": "99fcfd9f-dd7e-5447-b147-9441b14fef0c", "text": "The pasta rigidly gets into a pose, deals 1 crushing blow to the bread and butter, but the bread attacks, makes a trip and starts beating its opponent The pasta dances is not lost ultra mega realistic "} +{"id": "7001082", "video_name": "e4d9252d-90c5-54b6-820e-d71e5a23d688", "text": "I do not know where to hide from the annoying wind "} +{"id": "7001083", "video_name": "bef2940a-e666-5ee0-8591-79f946da2d7f", "text": "eclipse on sun and moon. Make it dark "} +{"id": "7001084", "video_name": "7e99d111-c732-51e6-ad6f-f784655e93f5", "text": "red cow in a green screen "} +{"id": "7001085", "video_name": "cba00ac6-022d-5004-9764-f2337745154c", "text": "a cat giving a kiss to the camera "} +{"id": "7001086", "video_name": "9a9a8ac4-2b8a-5fc1-b7bc-6388bb70703f", "text": "the Boeing 747 explodes mid air "} +{"id": "7001087", "video_name": "392ab2af-2126-5a66-835f-165e71933f2c", "text": "a potato with multiple arms doing the twist dance "} +{"id": "7001088", "video_name": "45dcc172-c33e-5b73-bd9e-a3beed5e4d48", "text": "A dimly lit car interior, rain streaking across the windshield, the glow of dashboard lights "} +{"id": "7001089", "video_name": "f39706b5-aebf-562d-ba8c-d76ca3f6f078", "text": "Mighty rangers play chess for four. "} +{"id": "7001090", "video_name": "32c61f7b-8522-5c40-bb19-44874a008bce", "text": "man Tests an interactive WWII simulator and is impressed by its potential "} +{"id": "7001091", "video_name": "f152535b-52a2-5e5b-bb09-3d03ae9cd094", "text": "a visualization of an embodied ai "} +{"id": "7001092", "video_name": "78b28df7-31ae-513b-b6e4-c6ae60ad7403", "text": "zoom in fireflies in dead forest at night Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "7001093", "video_name": "529c3cf2-4702-5d3d-bd42-3672848eb958", "text": "cargoes of gold, silver, precious stones and pearls "} +{"id": "7001094", "video_name": "66a92d26-b612-5e3d-a5cc-a1ed9d0b6bee", "text": "Capture the moment when Nimmo leaps into the air, creating a burst of colors. "} +{"id": "7001095", "video_name": "51e8d369-b467-5944-b1fa-0ab459371570", "text": "1950s film, woman doing yoga, standing in warrior 1 pose and move, standing "} +{"id": "7001096", "video_name": "7fbd7197-8ba5-513e-85f9-b9062fc943c8", "text": "a person very happy mountain top near the edge looking at a valley,man backview "} +{"id": "7001097", "video_name": "fea35818-08c0-5b0d-b281-2a5b7b6e8083", "text": "flock of owls gliding over a field "} +{"id": "7001098", "video_name": "77c21a16-1509-5241-9e25-b80d8d8ee021", "text": "a scene with a man of average height in front and five giants behind him "} +{"id": "7001099", "video_name": "ecea5f19-6823-5106-8ad7-f487d0a1b93c", "text": "In rainy weather, a child is making a fire to keep warm in a glass house by the sea, looking at the scenery outside. "} +{"id": "7001100", "video_name": "04463bb5-b4a5-54f8-a6a6-c24b4d9439b4", "text": "A man with wings plans from the mountain. The sun is shining "} +{"id": "7001101", "video_name": "76caba85-ca2d-515f-af0e-b4f2c9765c0c", "text": "person walking through detailed studio gibli Spirited Away town "} +{"id": "7001102", "video_name": "5af3f8ff-07b0-5a3f-b39f-f603245856c8", "text": "faroe islands viking walking on a mauntain looking over the ocean "} +{"id": "7001103", "video_name": "ec979db0-7e8f-5128-aa10-7fcda43fd7a3", "text": "An animated clip of a boy reading books in a french neighborhood, "} +{"id": "7001104", "video_name": "3385ac1d-a44c-501f-a62e-7a07f6369a28", "text": "Experience the consequences of relying too heavily on AI, as it leads to a society on the brink of collapse. With a cinematic style, this visual will leave a lasting impression on the dangers of unchecked technological advancement. "} +{"id": "7001105", "video_name": "2b7f800d-9d2c-5bbd-a713-4860b11548c1", "text": "soil dry desert first plate, arid "} +{"id": "7001106", "video_name": "b18d5c7d-b60e-5d5e-9e4f-cfc94edbd1ae", "text": "Nobita trying to navigate through the house filled with snow, slipping comically. "} +{"id": "7001107", "video_name": "2d518bb1-09a1-5faa-a1a4-be146cc03788", "text": "ponyo fish swimming in the water, hayao miyazaki anime style "} +{"id": "7001108", "video_name": "316ea7e2-ed61-58b5-be6a-f3ae5f668f9b", "text": "a car driving backwards down the road before a village house "} +{"id": "7001109", "video_name": "76789730-5fc5-5c22-9287-c43bea85d1d3", "text": "Imagine skeleton, Nunn, motorcycle helmet, Gothic, Motorcycle theme background, hyper ralistic, "} +{"id": "7001110", "video_name": "29baa0f8-d5d0-5a8e-b31c-dff98de8b730", "text": "So, she decided to embark on an adventure around the world, heading towards the distant Mount Fuji in a faraway island nation.Upon arrival, Mount Fuji was enveloped in darkness, as if awaiting a ray of light. "} +{"id": "7001111", "video_name": "b307332f-46de-5629-99d8-7e564799b50b", "text": "lightning starship seas, storms rotating, gyrating, futuristic pirates "} +{"id": "7001112", "video_name": "dd4e1fd6-1826-5ecc-9c47-b60d41745cb9", "text": "want to generate an old roman landscape, high quality, roma people "} +{"id": "7001113", "video_name": "6f5a508b-55f6-542a-9697-8ecab5c696fc", "text": "A woman stands at the foot of a giant dragon "} +{"id": "7001114", "video_name": "e5593c29-30fc-5a7f-97b9-ba692805140f", "text": "Make me an intro for a 40 second movie about the change I would make to the world if everyone drank cannabis oil "} +{"id": "7001115", "video_name": "84c70e93-d76f-5d2e-9d71-ef3249d89b15", "text": "black sand, black volcano with red lava flowing out of it Message: Tsareva (Font: MODERN) "} +{"id": "7001116", "video_name": "3555a038-c644-5e99-a809-141e1a2697ca", "text": "hair moving, background spinning, spotlight top "} +{"id": "7001117", "video_name": "3dd3a824-b292-58d0-9572-d145fa1d1475", "text": "a cinematic shot of a marching band flying through the air "} +{"id": "7001118", "video_name": "df88cc33-c45d-5087-95a0-df73c159af56", "text": "The Erikson\u2019s Elementary School Message: BALLS (Font: MODERN) "} +{"id": "7001119", "video_name": "452b8e9e-40bd-5aff-99da-6d14fb7de7bd", "text": "penguin ramping off a mountain into the sky stunt move action scene from the new fast and furryious movie starring pengvin deezbill "} +{"id": "7001120", "video_name": "62a59a4e-e93a-58a4-bdb0-b664ddbb7ac3", "text": "A woman looking into the camera (cinematic, cyberpunk, steam, neon) "} +{"id": "7001121", "video_name": "ecb3250c-cf0c-53d9-9c2b-9eb8095e86b7", "text": "Visual representation of money growing like a tree with leaves of currency. "} +{"id": "7001122", "video_name": "7000557a-866d-5b8b-ae77-28b4fe601689", "text": "I want the face of a little girl with curly hair, with a soft smile on her lips, a dimple on each side of her cheek, and she is very sweet and cute.I want the girl to say good morning. "} +{"id": "7001123", "video_name": "f9382b79-121f-5c09-842a-c1c32969df65", "text": "An old woman was wandering in a forest. crow looking at him Disney 4k 3d cartoon "} +{"id": "7001124", "video_name": "95abaf73-785f-5a9b-9e32-b452d6752a41", "text": "Start by outputting the number 20, and then proceed to output the subsequent numbers, each time adding 4 to the previous number. Print these numbers as textual output, simulating a mysterious emergence from the darkness "} +{"id": "7001125", "video_name": "4d70de67-fbfa-5b4e-bab7-df2cc679b9b5", "text": "camera moving forward on old book .cinematic video "} +{"id": "7001126", "video_name": "9540edef-4f0c-5c1c-82e0-fc6b91db33e0", "text": "a ferrari is speeding in the country side, "} +{"id": "7001127", "video_name": "c5d9bd5e-2b08-5cf2-855c-e2edd75f7f6f", "text": "A girl draws a lion on the background of an elf tower "} +{"id": "7001128", "video_name": "0d98c48b-d367-58b2-81f6-f27386987651", "text": "A white armored woman warrior with a determined gaze in a space environment, shedding tears and surrounded by stars and galaxies Message: 1 Attachment "} +{"id": "7001129", "video_name": "781349b2-80b9-567a-a887-1b318327feae", "text": "arab knight abbas karbala alone versus an army "} +{"id": "7001130", "video_name": "71a14fe0-20ee-5e13-84b5-6c6f721b4803", "text": "bustling city with busy traffic, 4k hd resolution, vibrance city, crystal clarity "} +{"id": "7001131", "video_name": "1d432f6c-7c93-5588-a6bb-4becd047769a", "text": "In a cozy family kitchen, a young boy stands by the table, earnestly tidying up dishes and utensils. His parents, with joyful and content expressions, stand nearby. They gaze affectionately at the child, observing him diligently completing household chores. The scene emanates warmth and happiness, portraying a beautiful familial moment. "} +{"id": "7001132", "video_name": "16fd0834-7b48-54f0-b0dd-677fa0a00d56", "text": ": batman playing guitar,real face,cinematic view "} +{"id": "7001133", "video_name": "524f5d7c-c41b-53f4-9ccb-21a9e312c547", "text": "Their path led them to a sparkling river guarded by a friendly water spirit named Aquarius, who challenged them to a riddle game. "} +{"id": "7001134", "video_name": "3e87d610-ebb2-5a57-bbbf-ad7238b2b05b", "text": "A young Chinese man was kneeling on the ground, and his parents went to help him up "} +{"id": "7001135", "video_name": "88aa1040-e411-51d0-a8b0-7ed34d3eb39c", "text": "A magician makes an illusion with an apple "} +{"id": "7001136", "video_name": "aaa341ed-6c01-579f-8822-f60fedf26fdd", "text": "wooly mamoths collecting giant golden coins on the austrian alp landscapes "} +{"id": "7001137", "video_name": "adece5a3-3cd2-537c-b329-290ac2cbc791", "text": "a space program Voyager going out of our solar system "} +{"id": "7001138", "video_name": "c996d96c-9e22-5c62-8b3a-9f4fa80daab2", "text": "Ordinary person entering the ayahuasca realm. "} +{"id": "7001139", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "Programming Gigantic Penguin crushing a building "} +{"id": "7001140", "video_name": "a51efb02-aff8-5894-ad5d-9f1b93e88935", "text": "Elon Max is riding a horse "} +{"id": "7001141", "video_name": "2efc9c16-f55c-5e88-b503-98e0db8503f4", "text": "art film scene of exploding water statues at the cave temple, statues of robots, black and white, film grain, werner herzog "} +{"id": "7001142", "video_name": "69874b5c-a3b7-5ee7-8d56-494d15a2d381", "text": "a brown paper cup drop on the table upside down "} +{"id": "7001143", "video_name": "ae47e0cd-2aba-51dc-87ab-a1889726e1ff", "text": "a 3D cartoon of a toy car in a playroom "} +{"id": "7001144", "video_name": "a9aa0478-4684-550d-890a-33b9c570fb55", "text": "cartoon christmas snowman Switzerland Open presents, eyes so wide, Laughter rings like bells inside! Dance and sing beneath the tree, Merry Christmas, happy and free "} +{"id": "7001145", "video_name": "83308ce9-5dff-567f-9e19-3425cc92e6d2", "text": "soccer players in the middle of the playground Message: lee (Font: SANS SERIF) "} +{"id": "7001146", "video_name": "780c173d-e9a4-52fd-9946-25c9e733c8bf", "text": "A Primordial entity holding out his hand emiting massive power "} +{"id": "7001147", "video_name": "dde8d05c-59c1-5eb6-a5c0-f6e714751f74", "text": "two cute girl with short brown hair are fighting and arguing before sleep in their room, illustration, cinematic. realistic, cartoon style "} +{"id": "7001148", "video_name": "4c45127f-ef81-5482-a89e-e11a01fc3054", "text": "an alien is playing an electric guitar into a transparent cocoon with amber light, photo realistic, 4k "} +{"id": "7001149", "video_name": "203d4270-74d3-5382-b79d-a4a0c694e667", "text": "The village surrounded by a mystical forest. The teenage boy Athen and teenage girl Lily. They are adventurers. They are talking something. "} +{"id": "7001150", "video_name": "10e5770e-221b-5097-a231-c6e7772bcf04", "text": "older sister with pink hair ribbon hold hand of younger sister with blue hairbow in the style of watercolor animation "} +{"id": "7001151", "video_name": "43d28869-7f6c-5379-bda9-e6c5c8f65e9f", "text": "growth of the thallus of a geranium "} +{"id": "7001152", "video_name": "aa5a02e3-243e-5da0-886f-847225eb9abe", "text": "Cables and wires snake across the floor, connecting various scientific equipment, 4k, cinematic background, sci fi "} +{"id": "7001153", "video_name": "1074a7c4-1daf-51b5-996b-b90db9de66ae", "text": "zoom in sunflower, closeup, sunraise, timelapse "} +{"id": "7001154", "video_name": "0883b610-56c5-5857-9e07-b363c5d27197", "text": "Jerry Garcia riding a horse and playing guitar "} +{"id": "7001155", "video_name": "3f5d53e3-3f45-5806-80f6-3cb90fe42ce4", "text": "a woman dancing in the center of a square "} +{"id": "7001156", "video_name": "396f2c46-d878-5572-9270-58b290737b92", "text": "playing a bideo game, A young bald british man with a beards screams angrily while playing a video game, dramatic lighting, in the style of Michael Bay "} +{"id": "7001157", "video_name": "f317648f-9f6d-5c32-ac1e-199cd41cf3cd", "text": "Ford fiesta, Action motion, from behind angle, Ford fiesta, white, drift the dirt, flying dirt, camera look around car "} +{"id": "7001158", "video_name": "708370c4-1750-5e3d-855d-af1145f168ed", "text": "vintage polaroid of flowers in a garden "} +{"id": "7001159", "video_name": "7dc0cbed-22a3-57e0-b546-f6c1b2cc0c18", "text": "handsome daddy with silver hair wink and smile "} +{"id": "7001160", "video_name": "a6a11620-507f-5266-8b68-2c705e4009c8", "text": "hard robot fight with another hard robot "} +{"id": "7001161", "video_name": "8115e347-8bdb-505e-945c-8be2b51fb4b2", "text": "A closed book falls, a couple of pages move, a light comes out, Alianza Literaria comes out, a bright sound "} +{"id": "7001162", "video_name": "dbe7a074-5503-5bbd-9965-c76c80778210", "text": "clear night sky filled with shimmering stars, zoom out Message: piktxurs (Font: MODERN) "} +{"id": "7001163", "video_name": "5de5e74e-5d14-5033-bba0-8e7f3e94676e", "text": "beautiful light waves emitting from deep subconscious brain message: Whole Balance "} +{"id": "7001164", "video_name": "2d30eec4-dea0-5ebf-8df1-3b476c34355f", "text": "creates an animated wallpaper with screens and consoles lit with retro games on these screens "} +{"id": "7001165", "video_name": "366ab704-55fc-5401-84eb-496d6a56964b", "text": "not disfigured young girl full body standing, yoga outfit "} +{"id": "7001166", "video_name": "5f993819-e880-5eda-beed-dd6d1c009849", "text": "CLOSE UPS reveal shattered glass, upended vehicles, collapsed bridges, and winding debris piles. "} +{"id": "7001167", "video_name": "e6168420-c925-557a-89d7-2bc3ee7b9844", "text": "a girl walking in the rain at night looking to the camera, 35 mm lens, hyper realistic "} +{"id": "7001168", "video_name": "04126898-3714-567e-8ff1-434f5b6509ae", "text": "sun rise over a calm foggy ocean "} +{"id": "7001169", "video_name": "b5358888-33ed-51b8-aded-96797ca2afb4", "text": "In a serene monastery, Tibetan monks fill the air with enchanting, resonant chants of healing and spiritual transcendence. The peaceful ambiance is heightened by the captivating harmony of their traditional singing, creating a background of tranquility and divine energy. The aroma of incense lingers, intensifying the cultural and sacred experience of this mesmerizing ritual. "} +{"id": "7001170", "video_name": "bda76ee7-45be-5c0a-9214-dd963e532764", "text": "a beautiful Chinese girl wearing a bikini and walking on the season. "} +{"id": "7001171", "video_name": "993075ab-1c3d-5b2f-8997-7baa692c98aa", "text": "realistic metale, earth, fire, air dragon "} +{"id": "7001172", "video_name": "804b55a5-e7f5-5a1c-8173-eec5779f6640", "text": "old dark house at night horror motion 4 "} +{"id": "7001173", "video_name": "5eaa00e2-f13b-53b5-8785-0b687c8fd64a", "text": "girl walks on beach while using white neck pillow to relieve her neck pain "} +{"id": "7001174", "video_name": "57ca05e1-6541-5f1b-9d51-c4d4b76d0523", "text": "hyperrealistic Santa Claus makes thumbs Up, ,cool modern GTA Style, Victory sign "} +{"id": "7001175", "video_name": "2fc0ac8f-85ca-5826-8cf5-61a03993108c", "text": "design a bedroom with scandinavian theme, plants, a study table with a computer and a girl working on it computer "} +{"id": "7001176", "video_name": "5a68113f-4d37-53a7-b7e9-e553fb389b4e", "text": "woman jump in a pool of a cotton candy and flowers "} +{"id": "7001177", "video_name": "444d6e06-3e1e-521c-9eab-7716db28d344", "text": "\u201dStone Cold\u201d Steve Austin and Dwayne Johnson fighting each other, \u201cStone Cold\u201d Steve Austin throws a punch towards Dwayne Johnson, Dwayne Johnson steps back from the punch "} +{"id": "7001178", "video_name": "33606862-29f8-5bca-9b7d-f4ea503c8067", "text": "making a money on computer who is a beatmaker "} +{"id": "7001179", "video_name": "e39043c2-c237-5e8b-9872-4197afb5701c", "text": "image of haute couture corset in art deco style, heavily beaded and embellished in copper and jade "} +{"id": "7001180", "video_name": "68fcffae-d1b8-5a0b-84dc-855d0ab84c6e", "text": "Cinametic view of Notre Dame College, Dhaka "} +{"id": "7001181", "video_name": "585ded2c-4afc-53a8-969f-26e1937a8d45", "text": "a. Fairytale Cartoon: The children venturing into a dense forest, their faces filled with curiosity and wonder. "} +{"id": "7001182", "video_name": "b82bd543-e38b-5eef-af45-35c5c8b475f0", "text": "hanglider flying over mountains,ligthly clody,4k,motion 4,camera zoon in "} +{"id": "7001183", "video_name": "7882578a-f807-570f-9448-05556a531c75", "text": "An elderly lady with a warm smile, white hair, and deep wrinkles. with the style of Salvador Dali "} +{"id": "7001184", "video_name": "a726dfe4-c4d6-5b0c-8a24-e793470e2d2f", "text": "person walking in the dark city at night in the foreground with an imaginary friend floating on his side of a reddish color with orange, lights focused on the road "} +{"id": "7001185", "video_name": "07fac446-9ead-5fa5-a560-abb696e016f0", "text": "The stone turns into a bottle of beer, after which it turns into a flower similar to a butterfly, after which it turns into a butterfly and flies away "} +{"id": "7001186", "video_name": "c9e150dc-ea98-5403-9187-1dfab44af45e", "text": "create a video in portrait format that shows a colorful world with a large ball with eyes and small teeth. Now another small ball comes in front of the big one and the big ball eats up the small ball and becomes smaller "} +{"id": "7001187", "video_name": "ad57685e-68e0-5816-a837-fe802acda03c", "text": "white towel floating through the air "} +{"id": "7001188", "video_name": "74184635-3611-5b1d-b8e2-86810c3f95f0", "text": "The crocodile snapping at the monkey but missing. cartoon style "} +{"id": "7001189", "video_name": "541e83e3-7a4c-5f40-b693-d5efc4433d45", "text": "cannabis flower decarboxylating in the oven "} +{"id": "7001190", "video_name": "3b98cb56-0c45-573f-916f-b9eab0c72a2f", "text": "a robot head frontside echanicssilver color, half mechanis "} +{"id": "7001191", "video_name": "5724c6e1-6aef-5391-82a9-047571055159", "text": "computer keyboard, monitor, programming, coding, programer, camera zoom out "} +{"id": "7001192", "video_name": "30abf5ae-4bfc-53ac-9132-53eeb1f84eed", "text": "Mockup of media such as a television, cell phone, radio, landline, internet, newspapers. It is for a school project for a 4 year old child. "} +{"id": "7001193", "video_name": "e560e5b2-d99e-5e6a-a51e-e67f06e965ce", "text": "a group of robots caroling on Christmas at nighttime, realistic, 16:9 "} +{"id": "7001194", "video_name": "fa1c2cfb-4be1-5ae2-ba37-87db3d6999a1", "text": "show a handsome guy on his bike front view no helmet wind blowing his hair wearing a black t shirt and leather pants front view of guy on his bike smiling he have red hair to his shoulders blowing in the wind guy have a dreamy face very cute "} +{"id": "7001195", "video_name": "f6322201-99ed-5c1c-84ca-279f87cab1e6", "text": "an enormous white sphere , realistic , monochrome, cgi, dramatic, negative space "} +{"id": "7001196", "video_name": "5e486fd9-4970-5902-9d4d-c3f483e76674", "text": "fish people at the bank in 1965 "} +{"id": "7001197", "video_name": "ca533017-d79a-57c3-9b1c-91e2a8349699", "text": "harry potter using a broomstick to clean the kitchen "} +{"id": "7001198", "video_name": "3054886d-3182-5ad4-bafa-9c7fa028f89f", "text": "share a muzzle made of slate dolomite in a puzzle of 28 yellow pieces "} +{"id": "7001199", "video_name": "d15784f2-3d8d-5a56-9a83-e81a09395efc", "text": "32k resolution zoom in and out the three girls. While the boy is standing next to the tree and the girls must be alone talking to each other realistic "} +{"id": "7001200", "video_name": "9af71424-71ec-5bbd-b810-fbd08401edd4", "text": "make video, where python developer writing code at midnight "} +{"id": "7001201", "video_name": "e9ae0cf3-be24-5a31-a2a5-7d25554e07d8", "text": "The wind blows through the narrow alleys of the market, causing the colorful banners to flutter in the style of animation. "} +{"id": "7001202", "video_name": "62ae3405-ca5d-5192-ba64-5de13ac9705e", "text": "the pretty girls walked around the bachelorette pad exclusive "} +{"id": "7001203", "video_name": "01b5ad32-0653-5944-8c32-fad0501ef8af", "text": "claymation of a grey alien performing a series of tests on grimpy cat "} +{"id": "7001204", "video_name": "476d62bf-12e9-5dfc-a0c7-dd51422c7531", "text": "a bright colour of a magical powers in the forest while a girl looks at it. "} +{"id": "7001205", "video_name": "13d590cd-eab6-54e7-aed6-3c378a546927", "text": "prompt: backdrop using moving dark blue and brown gradient colors with 15 small white triangles with contour lines flying randomly across the screen ar 16:9 motion 3 "} +{"id": "7001206", "video_name": "10404897-376b-5685-bcb7-9cb4e60e2a60", "text": "Cinematic video of the war on the Gaza Strip more realistic "} +{"id": "7001207", "video_name": "059930e2-b5b3-5c1e-a9b1-7126932fa166", "text": "Create an animation with a 16:9 aspect ratio, depicting a cozy indoor environment designed for reading or listening to books. The room should feature a fireplace and a bookshelf filled with a variety of books. Outside the window, gentle snowfall is visible, creating a serene and tranquil atmosphere. The focus is on creating a warm and inviting space that combines the charm of a traditional reading room with the comfort of a winter setting. "} +{"id": "7001208", "video_name": "c7fb8c65-26e7-585d-b5f2-3c9001cdd1fd", "text": "19years boy in medieval tavern, 8k, realistic "} +{"id": "7001209", "video_name": "2a594665-9e1a-5f34-a03c-2c4e06ccb5ad", "text": "A woman in a lab coat is running down a city street at night. close shot "} +{"id": "7001210", "video_name": "41c711c4-58df-5621-811a-2a3fe42efbe9", "text": "The queen of Egypt walked in front of the palace on the banks of the river Nile "} +{"id": "7001211", "video_name": "1751f275-3f82-50bc-a03b-d83cafc597f1", "text": "High resolution, a female mechanic works on her 60s muscle car, all that can be see are her beautiful legs and lower half of her torso, the other half is under the car working and is not seen, She is wearing ultra High Heeled shoes and short shorts, bright outdoor lighting "} +{"id": "7001212", "video_name": "68f794a6-ec12-5942-8910-b4de7fef72c8", "text": "racing helmet on a table zoom in "} +{"id": "7001213", "video_name": "77db62dd-63fb-5de2-997c-692cf1003942", "text": "one group in underground basement doing. Plan for robari "} +{"id": "7001214", "video_name": "4584eb0e-ac15-5b3e-a233-1a58536a6c6c", "text": "a man drinks a kratom tea on a Beach "} +{"id": "7001215", "video_name": "ede6b629-1aa4-55ef-b84f-e7d087ac8d9f", "text": "Huge creature with 3 human female heads ,3 blue eyes, very beautiful, 3 arms, 3 legs realistic 8k "} +{"id": "7001216", "video_name": "c39a71f4-cd63-5225-9034-0106cbc814da", "text": "realistic samurai entry with smoke in background 4k hd "} +{"id": "7001217", "video_name": "a5a04402-96fb-5a13-93c2-0afcbed9211d", "text": "Once upon a time, in a dense forest, there were two friends named John and Michael. They were inseparable and did everything together. One sunny morning, as they were strolling through the woods, they suddenly came face to face with a menacing bear. "} +{"id": "7001218", "video_name": "a4158660-b48e-5404-8116-84169ddc57cb", "text": "a flaming purple mountain in the middle of a turquoise lake "} +{"id": "7001219", "video_name": "b096794e-6414-53b1-a2fd-20d3456593b1", "text": "wood breaking as the door is opened aggressively "} +{"id": "7001220", "video_name": "6d176df3-bde6-5589-afd6-a915b3091e78", "text": "The sky is aflame with twilight hues. The White Tiger, graceful and composed, emerges, its fur a soft white against the changing leaves, heralding the arrival of autumn. Message: 1 Attachment "} +{"id": "7001221", "video_name": "27b9d8a4-ead7-5ed3-9d66-02ed0b9e7765", "text": "young homeless man reading a book next to his dog, long shot, cinematic, backlighting, ultra realistic, stanley kubrick, low depth of field, sunset "} +{"id": "7001222", "video_name": "8020e140-bbd1-5091-bd12-326b8a388c79", "text": "a skeleton is serving a cake in the disco, strobo lights "} +{"id": "7001223", "video_name": "18f3e8ad-7c70-557f-86a9-d2da03ced993", "text": "Visualize the brain cooling down or a thermometer dropping as the counting progresses.Use calming colors like blue and green to convey a sense of relaxation. "} +{"id": "7001224", "video_name": "348ea9cc-b709-5f58-8064-dd09fcd5e982", "text": "could you imagine a 6 pointed star in rainbow colours? "} +{"id": "7001225", "video_name": "b528c593-f36b-53a9-867c-5a77465858a1", "text": "Display a wide and flat highway, with cars speeding by. "} +{"id": "7001226", "video_name": "689517fc-bf27-5673-8b98-f03331a098d1", "text": "reate a video of a pencil that once consumed can be planted and becomes a huge plant "} +{"id": "7001227", "video_name": "8a10acbe-8882-5548-a39e-a353594d506d", "text": "a person walking in the jungle and looking at a Mayan Temple "} +{"id": "7001228", "video_name": "43331c65-d1aa-5f2a-9c6b-4d2cd28c15e8", "text": "more muscular, and defined. The changes he saw in the mirror only fueled his motivation to continue pushing himself further. "} +{"id": "7001229", "video_name": "67008a1d-84ba-5a4a-891e-b4dc74c84296", "text": "alexander is the first of the history of "} +{"id": "7001230", "video_name": "4cc1038f-7f00-5d1d-b119-220e765f60ed", "text": "lot of pumpkin with orange contrast "} +{"id": "7001231", "video_name": "e1f3bced-fd20-5713-adad-48975b73550d", "text": "The animation illustrates how the droplets come together to form larger, increasingly heavier drops "} +{"id": "7001232", "video_name": "cfa9aaa9-463c-5aa8-bea3-c3a0a470c5e7", "text": "With a surge of energy, Lily channeled the combined magic of her allies and unleashed a tidal wave of pure light. "} +{"id": "7001233", "video_name": "767cdf0a-83b7-5298-b853-3f233688a3fa", "text": "one woman helping to labour pain to emily "} +{"id": "7001234", "video_name": "2f861ccc-edcb-5570-8e5c-9b437851f18f", "text": "fireworks in the shape of a penguin "} +{"id": "7001235", "video_name": "dd01bcef-4f95-5735-a7be-44269d773f6a", "text": "Meera with her family symbolising ties "} +{"id": "7001236", "video_name": "9bb38d5e-9139-54fc-87b7-79d9e5cb2360", "text": "create a video of a group of dwarves marching "} +{"id": "7001237", "video_name": "0309081f-fcb4-53d5-ae2f-bbb86da66702", "text": "a young man is walking through a futuristic Neo Tokyo at night with a light rain, reveal as housecat face "} +{"id": "7001238", "video_name": "ab7854bc-971c-5eda-bb26-170d4c6f83dc", "text": "how a hydra facial benefits the face "} +{"id": "7001239", "video_name": "c4736c5f-bf5c-5e02-a017-f6d956c5300e", "text": "nick cage fights john with with hip rage "} +{"id": "7001240", "video_name": "580f5d6a-b500-575a-90f3-07a107f4e375", "text": "a model posing for vogue, wearing a futuristic outfit in a photography studio "} +{"id": "7001241", "video_name": "fd4d13c3-5314-59e6-96cc-511ddf991c22", "text": "Flying through ancient Chinese cities from the perspective of birds "} +{"id": "7001242", "video_name": "ed150fc3-62e8-50a4-af3a-80061674f271", "text": "Generate a captivating image of a young Pakistani girl, Ayesha, standing in awe under a stormy sky. Convey the mystery and energy of the moment as bolts of lightning dance in the distance, reflecting the curiosity and innocence of a child discovering her extraordinary connection to the elements. "} +{"id": "7001243", "video_name": "27abc7c9-708d-55ef-b1cb-6b9809efb2ff", "text": "a butterfly in the garden, van gol style "} +{"id": "7001244", "video_name": "855f84bb-0422-5856-8a64-abcc75af5a2c", "text": "man waking in and his shadow is moving away from him "} +{"id": "7001245", "video_name": "ed95dd93-cc82-5050-ae8a-3f8c3f761b3e", "text": "a dragon standing at the top moutain with sunset background, camera move bottom to top face heading the dragon fp 160 "} +{"id": "7001246", "video_name": "b47825e3-e123-5413-8e63-fca4d308f922", "text": "a horror well in a village at night alone "} +{"id": "7001247", "video_name": "a89318a3-6edd-55aa-8112-2a602d815b76", "text": "Using a microscope to analyze the molecular structure of hair, describe the scientific processes that contribute to strengthening hair and the implications for hair care advancements "} +{"id": "7001248", "video_name": "68231b92-1cd0-5bc8-8714-0ffcd37fe569", "text": "animatronic bovine in a dystopian farm from the future, cinematic, hyperreal, photorealistic "} +{"id": "7001249", "video_name": "f68a7a07-4d00-52f5-b272-f27130c8c984", "text": "dwarf in a dungeon movin around searching the light, horror movie, realistic "} +{"id": "7001250", "video_name": "ffd0f621-a571-555a-9c1c-967a67f8d276", "text": "for a dog accessories brand a welcome image: brand name: hot doggies "} +{"id": "7001251", "video_name": "f128e6b1-0ab4-5bdd-a344-b209e432a660", "text": "Aerial video, A skydiver, garbed in a vibrant blue jumpsuit with white streaks, embodies exhilaration, his arms outstretched and face upturned, a grin evident beneath the protective clear goggles and helmet, The vastness of the atmosphere envelops him, fluffy cumulus clouds spread beneath him as though forming a cotton blanket, bathed in soft sunlight, The environment feels both serene and thrilling, with the soft white of the clouds contrasting with the deep azure sky peeking through gaps, giving off a sense of floating in an endless dream "} +{"id": "7001252", "video_name": "44d7f761-320a-54ea-befe-fd8283ff0858", "text": "From the perspective of traditional Chinese medicine, the occurrence of migraines involves multiple factors, primarily including the sluggish circulation of Qi and blood, blockage of meridians, and dysfunction of visceral organs. "} +{"id": "7001253", "video_name": "e709e768-c00b-54de-b2b4-5c6e5c46384d", "text": "Lottery Event, Big Spin Wheel, Humorous Lucky Draw, Invitation, Encourage Participation "} +{"id": "7001254", "video_name": "4502e170-6954-5f9f-914a-437adfa3046e", "text": "Clip of radar screen with a moving blip "} +{"id": "7001255", "video_name": "730529f4-a9e9-5c5b-8224-00a27a8edf47", "text": "man climbing up the mountain to see sunrise "} +{"id": "7001256", "video_name": "ca2af33c-279c-54b4-92b9-1435c7ff735c", "text": "Paul MacCartney playing guitar Message: 1 Attachment "} +{"id": "7001257", "video_name": "080fcf8b-c65f-5c1e-bd0a-62d0f81274e5", "text": "karol g performing a concert on a boat "} +{"id": "7001258", "video_name": "e41b0c77-a3f2-593a-98f5-787a049a0f24", "text": "My heart calls to the stars, but the night remains silent, "} +{"id": "7001259", "video_name": "0743694c-2b57-507f-9e3b-87522beb1d3f", "text": "zoom into a city from above "} +{"id": "7001260", "video_name": "f3f75de9-8648-5e81-9439-6e2e1fe3ff40", "text": "Emma Watson skimpy pajamas full body portrait completely see thru pokies visible detailed camel toe photorealistic, hyperdetailed, Hyperrealistic, fashion, photo "} +{"id": "7001261", "video_name": "16ea435b-79e0-5d19-b033-25fe0fcbacb8", "text": "a very scared cat hid in a corner in the basement ,huge rats in a dark creepy basement, bones, ribs, skulls scattered around, epic cinematic, brilliant, stunning, intricate, meticulously detailed, dramatic, atmospheric, maximalist, digital matte painting "} +{"id": "7001262", "video_name": "6ea448f5-ad51-5ec4-8f97-a02c978b1b3e", "text": "1970s dark fantasy shot of a fairy in a castle making a potion "} +{"id": "7001263", "video_name": "d99319b5-05a1-56e2-a35f-6d9de0e57032", "text": "once upon a time, dynamic zoom, 32k, full hd, hyper realistic,extremely high resulution image. hyperdetailed, highly detailed, sharp focus. Shonen Anime styme "} +{"id": "7001264", "video_name": "1144455a-1e7a-5bec-8cbd-7e55cf624ea1", "text": "closeup television news reporter talking on television , 4k ultra detailed realistic cinematic front shot , american shot "} +{"id": "7001265", "video_name": "34cb3001-eefa-52b2-9bdb-ff1ce41a8b35", "text": "screenshot of pretty landscape in a nintendo 64 game, polygons "} +{"id": "7001266", "video_name": "ea761e4a-34b2-51fb-9fad-e80b105cdde7", "text": "formula 1 racing road camera view from a racing car and racing cars here and there "} +{"id": "7001267", "video_name": "aa4b9176-c1a1-50b8-b1f7-d5a644d4e34d", "text": "realistic fireworks in the background and a lovely couple to show on that "} +{"id": "7001268", "video_name": "e8f7c7d8-2f6f-5be2-a4c4-dbfd57bbbf40", "text": "Haunted by his own creations, Alex grapples with surreal challenges that force him to confront his deepest fears and confront the consequences of playing the role of a digital deity. Each frame he traverses takes him closer to the heart of the mystery, but also closer to the malevolent force manipulating the boundaries between the animated world and reality. "} +{"id": "7001269", "video_name": "07847253-89d0-5c3f-876a-7268101dda5a", "text": "a hypnotic black and white spiral with a tint of blue with a camera zoom "} +{"id": "7001270", "video_name": "a9d2332b-3b4e-530e-bd40-c9f64727b298", "text": "staring at a photo on the fading wall "} +{"id": "7001271", "video_name": "f65af1d3-381c-5e2b-bdca-144beb0d19cb", "text": "with a range of expressions from excitement to trepidation, entered the gates "} +{"id": "7001272", "video_name": "d6d4f684-cc97-5983-8cef-9bf8c9ac7159", "text": "first person view from the stage to a large excited audience "} +{"id": "7001273", "video_name": "99a627fd-b385-55da-a0a8-4d9c9907b83f", "text": "Pufferfish Artist: Illustrate a cute pufferfish meticulously working on the sandy seabed, crafting geometric patterns. "} +{"id": "7001274", "video_name": "a0bd6e2a-b604-5d43-8f52-4ddf8bd467ae", "text": "anime studio ghibli adult woman, with wavy red hair, black at the ends, wearing a Brazilian countryside themed dress "} +{"id": "7001275", "video_name": "fe46ad10-6053-5ee8-ba80-34932519bba8", "text": "post apocalyptic mythological monsters super 8 film Message: LIVE BAD TOOTH (Font: MODERN) "} +{"id": "7001276", "video_name": "559120da-4ed2-555c-ade2-16e37799696d", "text": "The forest was shrouded in an eerie silence, broken only by the occasional rustling of leaves and the haunting whispers that seemed to emanate from the shadows. "} +{"id": "7001277", "video_name": "a138072e-4e11-5f79-9fb2-97e1df4b1d9e", "text": "cinematic action scene, wide lens (mech walks through the desert, dust) in a scenic environment by Noe\u0301mie Goudal, cyberpunk, 16:9 "} +{"id": "7001278", "video_name": "507ac7de-0f93-54f6-8a67-6579187614bb", "text": "person in a dark hoodie with the hood up, wearing black joggers, walking along an empty, modern city street with a following camera perspective. The video should have a dark and moody color scheme "} +{"id": "7001279", "video_name": "1a640ab7-a45b-5adb-8e52-3620d1513993", "text": "Pouring butterfly pea tea into a tall bottle, aesthetic "} +{"id": "7001280", "video_name": "8189fb7e-ddcd-541c-82d8-9bbb12bd334e", "text": "beautiful blonde woman meditating on the beach quite sunset, ultrarealism, 4k, high definition, wind blowing direction of hair to the right, timelapse video "} +{"id": "7001281", "video_name": "922a1f28-b3e8-5559-a43e-d80d15d3bd99", "text": "Sea shells on beach sand, Message: Leia (Font: MODERN) "} +{"id": "7001282", "video_name": "a3d19459-b130-5cf7-ba33-9f9ad51c7673", "text": "macro editorial photo of the front of buildings, many glass towers, minimalist, muted tones "} +{"id": "7001283", "video_name": "799f86c4-334b-5423-b7dd-9b787bb1b422", "text": "Fast zoom out of dancing retro robot "} +{"id": "7001284", "video_name": "f538bbfe-4b70-59cb-8c7b-1553970ebdb7", "text": "1980 neon mermaid swimming arthouse film "} +{"id": "7001285", "video_name": "dc3d9c2b-7398-5d7d-aab7-55867df863e8", "text": "Understanding Forgiveness and Mercy in Islam\u201d "} +{"id": "7001286", "video_name": "aa2e44e5-c2af-5fd1-8a2e-691ed8821114", "text": "cinematic video of the consequences of cutting down trees, with text "} +{"id": "7001287", "video_name": "3b1fedfd-3982-5dae-ac93-a84d115445bf", "text": "Michael scott from the office saying the text \u201cverjaar\u201d "} +{"id": "7001288", "video_name": "698ebaf5-79c8-5214-94b4-9cd27eaa8501", "text": "a clockwork orange film style as a person is rollerskating in foggy london "} +{"id": "7001289", "video_name": "ea7cd248-1734-5d10-9d58-738e24f7c164", "text": "Sundar Nagar thrived not just because of the wellspring of water but because of the wellspring of kindness and determination that flowed from the heart of its little hero, Raj. "} +{"id": "7001290", "video_name": "3bd2244b-7b63-5b7b-9072-c556509808ad", "text": "mysterious guardians appear in the temple "} +{"id": "7001291", "video_name": "7a747e2f-ec29-55dc-918e-6bc2d824e7a6", "text": "the young Dianna Rigg in the avengers "} +{"id": "7001292", "video_name": "29089c3f-d9be-568c-b8e3-ba01cddd500a", "text": "Show friendly fairies with glowing wings fluttering around. "} +{"id": "7001293", "video_name": "9a7c496f-c9e7-5b83-aa28-6b6fd8e0b52d", "text": "a red planet, backround galaxy, cartoon style "} +{"id": "7001294", "video_name": "65cac94a-3cf7-588d-8849-9be67bd3a386", "text": "a strange animal in the woods "} +{"id": "7001295", "video_name": "c69a27e7-f9b8-5cb7-bc4e-670d8403ff39", "text": "Create a video of a creature happily jumping on a trampoline, the creature is a mix of an adorable dog and Yoda from starwar. "} +{"id": "7001296", "video_name": "bb7230e0-a347-58ba-b5ed-f28793c39b44", "text": "man in luxury apartment looking over city "} +{"id": "7001297", "video_name": "fdc3d031-701b-53a6-8f76-e76114ec4091", "text": "A Young Male Model Posing For Photograph Wearing A Black well Tailored shirt with lilen febric, white Background, Shirt Close up shots "} +{"id": "7001298", "video_name": "376ba93f-1264-5463-ba9b-50a0f8042e91", "text": "a real life video of a nuclear bomb hitting new york at night in 2023 "} +{"id": "7001299", "video_name": "7cc46d7e-656e-5760-b151-c3fc3ec1c6b4", "text": "As the Holy Family made their way, a group of curious children decided to follow, their eyes wide with wonder. "} +{"id": "7001300", "video_name": "2c052e80-bce6-5684-9a9b-5178bdc887d0", "text": "Your movie short circuit, making beats "} +{"id": "7001301", "video_name": "c00a5e84-062c-5650-8a5f-47f2cfb3a732", "text": "Game arcade pinball game machine pusher ball popping pinball moving figure "} +{"id": "7001302", "video_name": "7da8c556-b43f-5af5-9752-4637f6baba4d", "text": "a young 16 year old kid in Napoli jersey "} +{"id": "7001303", "video_name": "19746eef-4cea-5918-88e4-2b3ed1d2e83f", "text": "stack of carton boxes Message: 1 Attachment "} +{"id": "7001304", "video_name": "380dc206-4004-5d01-9c14-d2baf6bd45b3", "text": "a cat sleeping on a box that is floating on water "} +{"id": "7001305", "video_name": "6389de54-7e70-5cc6-974c-8c6f596e3679", "text": "velvet colour flowing oll over image "} +{"id": "7001306", "video_name": "f28c26c4-6cb8-528a-a956-48aab6af56f4", "text": "mysterious hooded man standing on top of a mountain looking into the horizon with northern lights "} +{"id": "7001307", "video_name": "8aafe12c-e8e4-54be-a6ab-4fabd28a78b3", "text": "A stylized journey through the human body to the heart from a character standing "} +{"id": "7001308", "video_name": "f44853e2-01b8-5878-984d-a6a5f9b00c24", "text": "two toys walking and head movement "} +{"id": "7001309", "video_name": "b191fe6d-bbc7-52d6-9c81-d55cc2c61bc4", "text": "one woman is lying down a bed, and listening to the wave sound, there is sea outside the window "} +{"id": "7001310", "video_name": "bc0935a0-f8c7-564e-b320-684f761bab8c", "text": "Hearing that call from the cave, Chitrasena broke down and gained courage in the meantime "} +{"id": "7001311", "video_name": "087df3b8-4e3c-5fc2-ba73-ad8155bbda80", "text": "mystical light from the sky onto a flat topped mayan pyramid, ultra realistic, close up "} +{"id": "7001312", "video_name": "e05455ab-a54a-528f-9e9a-8aaeb6650b90", "text": "the big dipper in the sky at night viewed from earth in a field "} +{"id": "7001313", "video_name": "77fa4303-56ed-5193-a335-fde689e8fdbe", "text": "maxima and other gladiator s were not alone; the people of Rome were with them\n in 4k "} +{"id": "7001314", "video_name": "44316eed-db7c-5ee0-90f5-b6d9263be2ea", "text": "clouds over a pond with some trees and green plants, in the style of futuristic cityscapes, mirrored realms, anime art, turquoise and green, crisp brushwork, floating structures, grandeur of scale, move clouds only "} +{"id": "7001315", "video_name": "3fdcc896-4800-5104-9778-031428006fc5", "text": "four different bedrooms, with four different locations and design interior "} +{"id": "7001316", "video_name": "898c0b37-229c-5dc7-b693-ba9ec35c4994", "text": "The villagers, driven to the brink of madness, pleaded for mercy, "} +{"id": "7001317", "video_name": "861eaef5-4182-5b62-9a35-2ab11e595d8c", "text": "half man half machine created for the future "} +{"id": "7001318", "video_name": "7b7462ac-3935-5737-bb6a-ac76757117d5", "text": "bot in Marianas trench in darkness ,around fish sinisters "} +{"id": "7001319", "video_name": "90a189f9-cc07-5d13-94fc-ca92057977bc", "text": "an artist painting on a canvas in salvador dali style "} +{"id": "7001320", "video_name": "7f67e8dd-b61e-5684-af91-888d5c6769a7", "text": "want a pine forest with wind "} +{"id": "7001321", "video_name": "73fb710c-f352-58cd-8e35-26c42e811e1f", "text": "a Kerala seashore bunglow, hounting theme, night ambiance, "} +{"id": "7001322", "video_name": "0e85a609-df9e-545c-adab-f9028c31c08f", "text": "the process of how are sebaceous filaments formed "} +{"id": "7001323", "video_name": "cd99feed-38fe-59d1-9b71-73ee6ecff442", "text": "Scene 1: (Duration: 4 seconds) Aspect Ratio: 16:9 Visual: blank black terminal screen with a lime green blinking period symbol. should look like a screen capture or screenshot recording "} +{"id": "7001324", "video_name": "f5f946d4-b4c7-5e8e-9be5-2194024c7af5", "text": "The puddle dries up and only a white dot remains in its place. "} +{"id": "7001325", "video_name": "f52005c3-be29-5fe0-9185-39202a188487", "text": "Then they worship the Sun God and pray to Chhathi Maiya for the birth of a child, peace and prosperity of the family "} +{"id": "7001326", "video_name": "64a9bcd1-6c87-5bf6-b506-d33f2ee4bd4d", "text": "protein generation in the cell nucleus, raw photo "} +{"id": "7001327", "video_name": "ce2b0b28-f2fe-5c20-88fa-63a562294a47", "text": "constantly whispering lady in roboter suit "} +{"id": "7001328", "video_name": "6d161882-2819-51c1-87e6-50246c265fbb", "text": "a girl who is in the desert is looking at us, behind her is a lifeless plain of sands and barchans, the girl is pointing at us in surprise. "} +{"id": "7001329", "video_name": "ad9b83c3-5e2a-5b43-a22e-fdd704eb2645", "text": "television presenter, controlled by the speaking elite, with brand "} +{"id": "7001330", "video_name": "183cfcf2-6096-5d6b-a182-03ad798cc1b6", "text": "A girl stands in front of a mirror eating a burger and losing weight for 15 seconds "} +{"id": "7001331", "video_name": "43c03fa8-0635-5aa4-b794-62ee2d34ec2b", "text": "a bulls eye game Message: 1 Attachment "} +{"id": "7001332", "video_name": "b0bfe1b3-ac64-5318-a6c3-2cb9a31e5796", "text": "image that shows different types of coins with their symbols and colors. They are arranged around a globe that represents the world. The text says \u201cCrypto: The Future of Money\u201d. The pixel art style is inspired by the Crypto Pixel Art project. Message: crypto (Font: MODERN) "} +{"id": "7001333", "video_name": "0b856f48-ef43-5537-b780-2577cda8f74a", "text": "Superman facepalm on a transparent background "} +{"id": "7001334", "video_name": "7793e6ea-4465-50ae-af45-71c5eb6a6031", "text": "cinematic films, style by christopher nolan, Adam Smith oh his chamber, reading and writing something, warmth lighting "} +{"id": "7001335", "video_name": "8ab27972-1791-5995-a384-760198546252", "text": "cute shark girl with green eyes and sharp teeth and happy smile full body. anime style, chibi style, cyberpunk style, bedroom "} +{"id": "7001336", "video_name": "5b47e5bf-e6f0-534a-b11c-d4f07190a11a", "text": "A moonlit lakeside scene with a tranquil water surface reflecting a canopy of stars above. A lone boat, adorned with vibrant flowers, floats gently on the water. In the boat, a skilled musician plays a melodious tune on a string instrument, and the soft notes of the music seem to blend with the rustling leaves and distant chirping of crickets. "} +{"id": "7001337", "video_name": "8cd46a33-57ad-5470-a45d-d94681bde4f7", "text": "scary fury toys haunting a small swedish town. Cinematic. 1973. Widescreen. Panavision. "} +{"id": "7001338", "video_name": "ba6cf7cb-e8cd-5b98-a473-16dabf64a346", "text": "Create the image of an illuminated holy book opening and showing the Hebrew words 8k in cinematic style "} +{"id": "7001339", "video_name": "3a6560b5-f993-52e2-b71f-e0cdb4af4c4d", "text": "a baby at the beach realistic "} +{"id": "7001340", "video_name": "fa51f047-b4d3-5ec0-ade2-ce695c8b8bc4", "text": "the periodic chart symbol and box for hydrogen H "} +{"id": "7001341", "video_name": "688e8685-f61e-55f3-a04d-a0d630ec1924", "text": "a man is walking, cyberpunk city, flying particles, clouds "} +{"id": "7001342", "video_name": "224bd9c2-f664-57e9-b714-661c3e0cf160", "text": "A perpetual tracking shot of a woman walking in profile. She is visible from head to toe as she moves across the frame. She is walking in a dark forest "} +{"id": "7001343", "video_name": "1aeaec8a-97d6-5dad-b5f1-6f0eba80b0e3", "text": "a Man take a Ice cream in old Villager 16:9 motion 2 "} +{"id": "7001344", "video_name": "985d2724-c047-5ef5-8f00-3661cde1282d", "text": "water bubbles growing and popping, abstract, 3D "} +{"id": "7001345", "video_name": "9173b454-dad9-5533-8129-e7288c621227", "text": "in a dimly lit cave with ancient hindu symbols on the wall depict kakbhusundi,an enigmatic figure , handing a glowing orb to a young boy "} +{"id": "7001346", "video_name": "644ffee8-4dd1-52c9-b009-bc7f35ac7119", "text": "cinematic shot of dragon flying through sky "} +{"id": "7001347", "video_name": "d6efea89-3b8d-5ef2-8469-34c184d0facd", "text": "An image of a symbolic doorway, representing the threshold of change and new beginnings for Lonely Shezo.Animated cartoon "} +{"id": "7001348", "video_name": "fd163074-4f69-5a36-8ca0-e9923d6c711d", "text": "relegating them to the realm of pseudoscience and conspiracy theory. "} +{"id": "7001349", "video_name": "ceaa1c65-dbc3-577f-9a76-f51f9e84b65d", "text": "A cute cat is sitting on a fluffy bed, smiling and looking at me. There is a window behind me and I can see pastel clouds. camera slowly zooms out "} +{"id": "7001350", "video_name": "888f61a2-f464-5524-96fa-2f53b1373fec", "text": "Conclude against a beautiful space backdrop; ChatGPT delivers a friendly message, generating particle effects to form a smiling expression, and invites exploration together. "} +{"id": "7001351", "video_name": "746e5bf5-a973-5648-88da-73ccd692375e", "text": "realistic white figurine of a man with deer antlers with glowing eyes and opening mouth "} +{"id": "7001352", "video_name": "1ef2cbee-c56b-5a08-b8cd-f1aa67ae0a38", "text": "man in the airport walking to the gate "} +{"id": "7001353", "video_name": "607270ee-680c-5baa-9b01-0dd161a92655", "text": "a huge robot dragon walks on a rock "} +{"id": "7001354", "video_name": "170839d8-b79b-5557-9105-32d63a45f078", "text": "A scenary of a tv show about enginery "} +{"id": "7001355", "video_name": "239e52dc-b149-50c8-af5f-2052be12f7be", "text": "A limousine drives down a city street on Christmas Eve, surrounded by Christmas decorations "} +{"id": "7001356", "video_name": "64f54610-dbcf-5ce6-94f7-58dcec830f39", "text": "If Elden Ring was an anime "} +{"id": "7001357", "video_name": "4a11ed06-329b-5b42-bb67-028474a1a87f", "text": "a qr code on the nail "} +{"id": "7001358", "video_name": "218b52f5-51c2-5106-b49b-b17b1437225c", "text": "I picked up the little turtle and she was laughing "} +{"id": "7001359", "video_name": "dbe5880a-cce9-5dd8-9278-50a754287248", "text": "1970s growling cat attacks a man "} +{"id": "7001360", "video_name": "62915ae3-ec9e-5fec-9f63-c383cee6405d", "text": "An illustration of the village of Hildred, nestled amidst rolling hills and surrounded by forests. "} +{"id": "7001361", "video_name": "b1ccace0-1e61-5a83-854e-5ccf0a91a11e", "text": "old ancient Egypt war breaks out. Mummies fall and break "} +{"id": "7001362", "video_name": "07df0f3a-8e64-59ee-9aca-72389d90d2ed", "text": "mischievous squirrel darted into the meditation hall, causing a commotion. The other monks jumped up in frustration, some even tried to shoo the squirrel away, but the creature continued to create chaos. cartoon "} +{"id": "7001363", "video_name": "1d3b62d8-d176-5dde-ae8f-c65b9176b661", "text": "1960s vintage cinematic footage of The Beatles band playing music "} +{"id": "7001364", "video_name": "241d8cf7-ef5f-53b7-8bfc-b6ac972571e2", "text": "old book, backgroung vintage, pages moving "} +{"id": "7001365", "video_name": "8726f61e-b0a4-5863-ba41-fcd7f688c429", "text": "A burger product shot, studio shot, crisp, highly detailed, full HD 4K, depth of field, close up zoom "} +{"id": "7001366", "video_name": "5d6ac8f5-60b4-54a1-8d88-502e167fb610", "text": "A video showing a house illuminated by streetlights at night, with scenes of dreams and memories projected on the walls. "} +{"id": "7001367", "video_name": "40576dac-4574-5784-82f2-1138a2f2f8be", "text": "Only the snow has movement. No snow inside the room. Only movement with the snow of outside. The first frame and the last one must be the same. The girl has not movement. "} +{"id": "7001368", "video_name": "da43ee8b-7ad4-5037-94cd-33ef0900a99e", "text": "busy person in colorful intergalactic costume, stamping and working on paperworks. with arts and craft all around the background. "} +{"id": "7001369", "video_name": "6aa19c6f-5e5b-5d45-9989-3437058d18b7", "text": "Good afternoon, in connection with the expansion of our company Virtual VGR, we are looking for new employees in the city of Dnipro.\n\nDirect manager\n\nA short excursion about ours\n\nvacancies\n\nWe are ready to consider candidates without experience, we teach from scratch "} +{"id": "7001370", "video_name": "5729625b-b4be-5bec-b777-4c94da14cbfc", "text": "a video of a person looking towards a snow Mountains in the Himalayas in the British india , high 4k resolution "} +{"id": "7001371", "video_name": "3d60007b-a99c-5268-8223-2014f2fd75c0", "text": "anime boy cycling in jungle front bottom shot anime style and morning scence "} +{"id": "7001372", "video_name": "d33a86c5-7611-5d99-8e83-f26f4f0aeb6e", "text": "a video of hot soup with mushroom on a wooden table "} +{"id": "7001373", "video_name": "0c61bff9-2f52-5784-83fc-a0e2e5768915", "text": "a massive kraken attacks Spanish ship in ocean and sinks it to unknown,4k "} +{"id": "7001374", "video_name": "7a4facc6-a43c-5f37-bee9-ffae14714edf", "text": "a A sara girls is going on the road 3D, 4k, video "} +{"id": "7001375", "video_name": "0cd09315-daca-536c-86b9-9530b3089491", "text": "A giant lizard attacking a dirt field. Capture the fury in his eyes as he moves. photo realistic, 8K "} +{"id": "7001376", "video_name": "e700479d-6620-5191-a2aa-99adfdf9c89c", "text": "falling dominoes Message: COLLECTORS IN SPACE (Font: MODERN) "} +{"id": "7001377", "video_name": "e2bb88d8-a757-51e9-9745-88cf5a2bc733", "text": "The meadow should stretch out as far as the eye can see, bathed in the soft, golden glow of the midday sun. "} +{"id": "7001378", "video_name": "b6353304-ee0c-5f45-a012-99be6cda4d90", "text": "the cosmatic brand not just famous in my own country all over the world "} +{"id": "7001379", "video_name": "7331ebd4-6e31-59aa-8784-ad95948318a7", "text": "cartoon queen of hearts and a ghost "} +{"id": "7001380", "video_name": "3533ce57-0ba6-59b1-8ace-a504791abdf5", "text": "The first scene focuses on the poor man walking in the forest, searching for food to feed his family. "} +{"id": "7001381", "video_name": "ac114874-9b1d-5e84-b4bd-8062441c749e", "text": "One of the signs often associated with the return of Jesus Christ is global instability. Wars, conflicts, and natural disasters have been seen as indicators of a tumultuous period leading up to the Second Coming. "} +{"id": "7001382", "video_name": "28d3e852-169c-54c6-9232-80a783cd3c82", "text": "a dolphin swiming to catch a tuna "} +{"id": "7001383", "video_name": "a17e2a65-08b8-564a-944f-bbbe98f6e785", "text": "a Blank parchment, pen nib, white background, red roses, beautiful atmosphere, magic, cozy,dreamy, pixel clear, ultra hd 8k, "} +{"id": "7001384", "video_name": "087149fd-bd5d-596e-a24d-0ef6d723cabe", "text": "husband and wife has married for 12 years,they are sitting together at home "} +{"id": "7001385", "video_name": "327f2905-9e21-5ad8-ba61-293172ff7762", "text": "war of the worlds dancing machines "} +{"id": "7001386", "video_name": "ed35ecb9-4356-5ac4-8e2f-ce90b4f1f6bc", "text": "battle fight, enki vs Zeus, 4k high resolution , in the background are the street fighters akin figure, thunder Storm, dramatic Szene, 4k resulion but in Pixel art grafic, the battle are in are scify Arena AT mars "} +{"id": "7001387", "video_name": "953f5623-93cc-5ca0-aef6-34ee0a9e8540", "text": "little girl playing over a puddle, studio ghibli style "} +{"id": "7001388", "video_name": "29c71aaa-6019-5e29-86ed-86070b859b3c", "text": "Illustration of a park, with a tree and swings, and kids playing and running around green grass, detailed, landscape "} +{"id": "7001389", "video_name": "4db8a83c-14b0-5cf3-bbfa-8d587e4ecbf1", "text": ", light reflecting off of barbde wire Message: 1 Attachment "} +{"id": "7001390", "video_name": "902e9228-ce9b-5637-9c66-bf51bc2162eb", "text": "The freshly washed bright red and green small pointed peppers on the table look very spicy but very tempting. "} +{"id": "7001391", "video_name": "6f310f57-6564-510d-b630-6b43287cec4a", "text": "budha tock to angulimal animeshan to forest "} +{"id": "7001392", "video_name": "65c4bd9f-c83b-58ff-82eb-8e00155c3cdf", "text": "from the earth to the moon in first person "} +{"id": "7001393", "video_name": "e7c881c1-d1f7-50b7-be8e-5b75bc051bf1", "text": "background withe, boy speaking as explaining and a cat at his feets "} +{"id": "7001394", "video_name": "6f4aabc8-6262-5075-8e6d-3945666499bf", "text": "a grainy 1940s rand mcnally type illustration of a man and woman walking, holding hands, into a distant sunset "} +{"id": "7001395", "video_name": "4eb6a5d6-3912-5632-839b-957d5e9eba9c", "text": "cybernetic organism walking in a forest "} +{"id": "7001396", "video_name": "8b1fc490-d762-5598-9792-bf1ab6dddb44", "text": "puppy and kitty drive train, view from cabin, zoom, "} +{"id": "7001397", "video_name": "bef608a4-1047-566f-b324-ddce848295f7", "text": "make this saying good morning and moving head up and down "} +{"id": "7001398", "video_name": "403dc997-cd30-52f0-a0df-fed847016b8b", "text": "two archeologists talking to each other in desert next to oil well "} +{"id": "7001399", "video_name": "0f062e0e-e954-5429-bbe2-9702dff43fd1", "text": "create a simple video of building with TMT Bars "} +{"id": "7001400", "video_name": "73d92235-319f-5e55-9b4e-dd2327a2dd6c", "text": "the smoke red skall is smile and luffe "} +{"id": "7001401", "video_name": "3b7750e0-2e32-5451-8388-4039e5877c80", "text": "the animaniacs comming out of tv like in real world "} +{"id": "7001402", "video_name": "98d872d1-c7af-574d-b418-4a47887b6396", "text": "An astronaut and an alien exchanging gifts on a distant planet, under multiple moons, 3D, Pixar style, speed 6x, 120fps "} +{"id": "7001403", "video_name": "f2523463-9eb1-5443-a816-e26b9c796805", "text": "Medium shot, Elena and Lucas, lying in bed, Grace Hotel Santorini, hugged, look into each other\u2019s eyes and smile, digital art. "} +{"id": "7001404", "video_name": "70bd028d-9a30-501c-8bae-deb3c54a68cb", "text": "a little boy crying after his ice cream fell onto the ground. And then a dog came and then provided him with a new one. "} +{"id": "7001405", "video_name": "4eaa4fd0-c9f7-5131-b605-6a134912fe2b", "text": "Claymation of Walter White meeting Gus Fring and Mike "} +{"id": "7001406", "video_name": "11304169-660f-5746-8f95-6967cc0b0812", "text": "a pretty girl stay in the street,long hair,smilling "} +{"id": "7001407", "video_name": "d636450f-aadb-5a63-914a-532e3d64fa42", "text": "jiafei sings and her hair is blown by wind background coconut beach blue lagoon and dragon "} +{"id": "7001408", "video_name": "94ad6684-e6d1-529a-a87f-af59c608c955", "text": "electromagnetic blast around a building, top view, lightning, blue electric explosion "} +{"id": "7001409", "video_name": "c3c1bef2-eebf-5288-a04c-c003f59bae80", "text": "The final battle of One piece "} +{"id": "7001410", "video_name": "141bc5a5-aea5-5d7e-806a-ba6705956e85", "text": "Best quality, 8k, 32k, Masterpiece, full shot, facing the camera, slim, CEO of an important company, athletic, shortest little blonde hair, green eyes, square glasses, stubble short beard, wears a charcoal gray suit and tie, tall, attractive, groomed, his posture is arrogant with a hand stroking his chin and looking serious at the camera. "} +{"id": "7001411", "video_name": "41fc6ef6-37b1-5ea0-a22e-567fbd485282", "text": "Along the way, the adventurers in burj khalifa they face challenges, including Minecraft mobs and redstone puzzles. Describe their strategies, bravery, and clever solutions as they conquer each obstacle, showcasing their Minecraft expertise. 2D Minecraft Animation. "} +{"id": "7001412", "video_name": "a8f5b6e4-544c-5d1f-99d8-f40ffbedded8", "text": "a cat is stretching and yawning "} +{"id": "7001413", "video_name": "22077676-3cb0-5184-b4e3-1922c76825d0", "text": "Ghostly souls floating towards the church under the light of the moon and stars. "} +{"id": "7001414", "video_name": "078b264b-5d59-5a75-99a3-26140dec6bea", "text": "Create a ultra modern house render, the house has solar panels, adiabatic air generators, the house is sorrounded by nature. Create a swimmingpool besides, there is a happy couple enjoying a bath. the image changes from day light to nigth time, Zoom out "} +{"id": "7001415", "video_name": "02f4ca7c-b04a-533a-808d-df4e5983bf58", "text": "cinematic style. A techno Producer is playing his synthesizers at a lost place. Very mystery place and dark background. "} +{"id": "7001416", "video_name": "a0d33ecb-3866-59fd-9f7f-dd2cccee8e91", "text": "indian lady wearing swimwear and going towards sun "} +{"id": "7001417", "video_name": "ab45ad2a-de5f-5108-99cd-20f3a697d650", "text": "Show a heartfelt image of a seafarer talking to their family on the phone, with a photo of their loved ones nearby. "} +{"id": "7001418", "video_name": "e7ef083f-63a5-51fa-b957-51160399fce4", "text": "Flowers falling, figure smiling Message: 1 Attachment "} +{"id": "7001419", "video_name": "3d997a1e-b748-5678-bb5d-ca8f4cb89cc6", "text": "Generate a video of an East Asian beauty smiling in the wind "} +{"id": "7001420", "video_name": "46205266-ea63-569b-8928-a15aa89b9176", "text": "future city view\uff0ccyber\uff0cblue Message: BLUE FOCUS (Font: MODERN) "} +{"id": "7001421", "video_name": "fcba99c7-fcb4-5670-864f-8c8b74902c08", "text": "create an intro animation for this picture which is a logo for a mix martial arts based news portal "} +{"id": "7001422", "video_name": "7143ea3f-0a1b-54d5-8605-3f2db6f522d9", "text": "A car going suddenly an alien ship appears from sky "} +{"id": "7001423", "video_name": "6fa9b7a0-465d-5442-a0e6-105533d9aaec", "text": "Elephant girl with black hair and black bangs covering her eyes wears a red dress and is hoisted into the air by an elephant head mounted on the wall in a dimly lit living room in a cinematic film by david lynch "} +{"id": "7001424", "video_name": "33f5c1f2-5de2-534e-b81d-a06492f11da1", "text": "super models walking on runway in fashion show 16k "} +{"id": "7001425", "video_name": "9276148f-f718-5fe4-b80d-0fb48b2639e3", "text": "A pot of scented candles is burning in the middle of a meditation room "} +{"id": "7001426", "video_name": "a1f324f1-0795-59f3-99f3-aceb10b41298", "text": "A doctor sitting behind a desk in an office, discussing the benefits of medications. "} +{"id": "7001427", "video_name": "85d2ce41-04b5-5183-8bff-23dd1fd6ab23", "text": "A modest town with people on streets Pixar style "} +{"id": "7001428", "video_name": "25d1d133-a63d-50b0-8e7b-7507fa02adee", "text": "4 latinos, 2 males and 2 feamles, all wearnign classes, brown hair and eyes, standing infront of uni "} +{"id": "7001429", "video_name": "7f10928b-f541-5e5b-960c-19068a5bc171", "text": "Every day must be Sunday Amusement park inside the school "} +{"id": "7001430", "video_name": "02255c80-24de-5c19-a8eb-41a0897c67f9", "text": "a girl died in water and having little blood and a crocodile watching this "} +{"id": "7001431", "video_name": "1c26a6b8-7bdf-560e-9587-ab2a233e0e96", "text": "The mysterious scorpion in the underground world "} +{"id": "7001432", "video_name": "c13c7202-489b-57ca-a33c-3b979427c6ae", "text": "the letter: P and the letter t intertwining into a logo "} +{"id": "7001433", "video_name": "0f847158-e25d-5409-ac82-bcb914c78718", "text": "running a boy with her girl friend "} +{"id": "7001434", "video_name": "6e47ed5f-4528-5817-9cea-149cf79dfecb", "text": "Explore the humble beginnings of Billy the Kid, a young lad navigating the Wild West. Set the scene in a frontier town as we delve into the roots of this legendary figure. ar 9:16 "} +{"id": "7001435", "video_name": "6ce51543-0763-5841-b436-c5068ddac931", "text": "cartoon 3d A child riding on a brown horse running fast "} +{"id": "7001436", "video_name": "e4874f40-fa7e-5f9a-92f4-d24b554eb355", "text": "godzilla with wings flying over a city "} +{"id": "7001437", "video_name": "b727a287-ae97-520b-b6f1-1af4132c10cc", "text": "old abandoned algae and wines acroos over the entrance of the door "} +{"id": "7001438", "video_name": "0697629a-c04c-5a3f-9c5a-afda0f79a40f", "text": "the minecraft spider jumped and flew up very quickly "} +{"id": "7001439", "video_name": "2a343d03-d9c7-5fec-b3c6-4e592d868636", "text": "Sing a song.7 Message: 1 Attachment "} +{"id": "7001440", "video_name": "48ce657c-45d2-549e-983b-f27759dec261", "text": "Replace Dr. Dave Bowman Superman as he travels through the wormhole at the end of 2001: A Space Odyssey. Photorealistic, raw, 6K, in focus. "} +{"id": "7001441", "video_name": "04898593-cd4f-5b8e-815e-52a05a7968b4", "text": "Ni Jianzhen wearing a space suit "} +{"id": "7001442", "video_name": "40015732-bba8-53b0-85e5-0496c6a9dcb9", "text": "Raghav and Keshav walking on a street "} +{"id": "7001443", "video_name": "af0464f8-262a-5c18-a7f1-c4ff4060f168", "text": "CYBER TOAD RUNS WITH A STICK, film, cinematic, realistic, 8k, dark and moody "} +{"id": "7001444", "video_name": "a4ec20da-7564-5c67-9e14-b6e9f70de6cb", "text": "Behind the scenes text on letterboard lightbox or cinema lightbox.Movie clepperboard or flim slate megaphone and director chair beside.Background LED color.Shoot in video production video. "} +{"id": "7001445", "video_name": "06e2d410-3fab-50bc-b29d-16043debede2", "text": "genshin impact inspired style image of a viking ready for battle "} +{"id": "7001446", "video_name": "1c5c629f-29ca-517d-9753-698990b9b8f4", "text": "female captivating beautiful eyes gracefully glide from left to right, a dance of curiosity "} +{"id": "7001447", "video_name": "a05e1a8c-191c-5c80-852a-e30228e1835a", "text": "Robert is seen crafting furniture, showcasing his skilled hands and dedication disny style "} +{"id": "7001448", "video_name": "c294033d-d8f6-5df5-a656-7c28a4302c3b", "text": "person with a strange head and a glowing light dancing in the middle of the image, an Alien clad in a Fibonacci Spiral "} +{"id": "7001449", "video_name": "7615aa48-d9ce-55ee-897a-0aafdad170f5", "text": "fan hologram in the big store or the big shop with many peoples video 10 seconds "} +{"id": "7001450", "video_name": "e4cfb868-4bd9-5cbc-a150-45f66450c526", "text": "Fire is burning everywhere and people are afraid "} +{"id": "7001451", "video_name": "78a15d89-85a3-59a9-947e-e5bcdd792942", "text": "A skier skiing in the mountains while the sun is setting in the background. the video is seen from far away and the whole view of mountains is visible. "} +{"id": "7001452", "video_name": "864c0b73-da69-5a91-a509-dfe8b3a52a0f", "text": "This is a lovely Chinese dragon, and he is howling Message: 1 Attachment "} +{"id": "7001453", "video_name": "4840521a-0706-523a-a6c9-90b25534fa5f", "text": "beautiful brunette woman, rocky beach, doing stretch, pink bikini, no deformed body "} +{"id": "7001454", "video_name": "005bf7c3-c923-5242-9733-431247f3eb2f", "text": "A beautiful female time traveler has a lean and athletic build. She is 32 years old. She has dark hair with a streak of silver. Her hair falls loose at her shoulders. Her eyes are hazel. She is graceful and confident. She is in a busy bar. "} +{"id": "7001455", "video_name": "2c19dd96-a4ea-56b4-a0f2-0eab2dbbd4d0", "text": "1980s race car driver walking to the track "} +{"id": "7001456", "video_name": "bcae511b-d5d8-573d-8a50-237dd0c384b6", "text": "Pigeon on the background of the moon. Animation style "} +{"id": "7001457", "video_name": "bf027a4c-d166-5672-bf0e-212e73decfb1", "text": "Dragon spews out flames,Eyes shining Message: 1 Attachment "} +{"id": "7001458", "video_name": "4e36e26a-6d9a-55b9-97f9-cfedb8c4f1e0", "text": "a huge room filled with infinite doorways and walls that slowly pulsate and grow "} +{"id": "7001459", "video_name": "cad06f77-e1d2-582c-a891-3e18daa0d0bb", "text": "moody day while studying. Young beautiful girl is studying her book "} +{"id": "7001460", "video_name": "3de1247f-fde8-5404-b5d3-3c8dc62e4b67", "text": "she looks at the sky while stars fall "} +{"id": "7001461", "video_name": "574c5204-aa79-541a-92d6-98b4e195a974", "text": "a 1979 film scene with Charlie chaplin smoking cigerettes "} +{"id": "7001462", "video_name": "3fb1faa5-b0af-5247-8708-3897c979731d", "text": "20k edit video for tech creator "} +{"id": "7001463", "video_name": "c50c8ac2-c039-592a-9e72-14bfef068cc9", "text": "an astronaut walking on the moon with a Grillo G2 gait trainer watching the earth "} +{"id": "7001464", "video_name": "57ae8bd8-09a5-59ac-a257-413475467450", "text": "the boy enjoying song using headset "} +{"id": "7001465", "video_name": "f77ac7a1-6dde-5e83-a790-673cd2c6211c", "text": "fish swiming fast for his life "} +{"id": "7001466", "video_name": "c1cc218a-e8fd-5a9d-8bb9-6c8f0d09734e", "text": "beautiful night scene image of a mountain valley with glowing moon "} +{"id": "7001467", "video_name": "3fc2e9dd-ac60-5e8f-b5c6-d9cc69ed6222", "text": "one girl in the sky, smiling and seeing earth "} +{"id": "7001468", "video_name": "45b57486-1e74-5c97-af6f-81c1dcd5119f", "text": "rose soap product shoot with falling rose and esseance drops from the top on the soap and closeup video of soap. the soap color is pink and white. "} +{"id": "7001469", "video_name": "97b1b692-89c5-52bb-9391-e812ae2cf911", "text": "king sitting on throne smoking cigar "} +{"id": "7001470", "video_name": "f9cfc6ee-d289-55ed-840f-770d8759255c", "text": "Little Red Riding Hood sits down next to her grandmother and starts talking to her. "} +{"id": "7001471", "video_name": "45a6c081-f9d4-553a-a652-d86de395f7e3", "text": "A handsome mage is playing the piano "} +{"id": "7001472", "video_name": "1db8e8bb-95ed-5ba3-9b09-b88dd9a087b5", "text": "The broad grassland, where the wind blows and the grass sees cattle and sheep below. Comic style. "} +{"id": "7001473", "video_name": "2add29b9-332d-58c6-b7be-f01aa19f9184", "text": "president of USA was drink coffee "} +{"id": "7001474", "video_name": "140bc37b-6675-54cb-891e-23cebb73d0b7", "text": "the upper atmosphere of jupiter is swirling and the sky is black space with the rings of Jupiter made of ice meteors "} +{"id": "7001475", "video_name": "0255a574-1296-5ac5-b69b-34cc4a1eab2a", "text": "and salinity of the waters of these two oceans "} +{"id": "7001476", "video_name": "b2cda94f-569b-5cea-85d3-001d28a2ccec", "text": "Create a heartwarming illustration of a golden teddy bear with a friendly face, holding a red chocolate bar with \u2018alma\u2019 written on it. The bear has a textured fur appearance, soft eyes, and a small, stitched smile. It wears a royal crown on its head and a red and gold ribbon around its neck. The bear sits against a white background, giving the impression it is offering the chocolate as a gift. Ensure the chocolate bar wrapper is partially open, showing the delicious chocolate inside, making it an inviting and sweet scene "} +{"id": "7001477", "video_name": "a10bbbeb-c7dd-548f-8741-6080ff686651", "text": "the lion turn back cartoon style "} +{"id": "7001478", "video_name": "e960dcec-96ce-58ad-b668-f8ef4736f284", "text": "aliens style greyhill in the darkest forest with red eyes, in 3D octane render, best quality , best resolution, HDR, 4k "} +{"id": "7001479", "video_name": "6d202d1b-8295-5cf8-9dcc-ef1ccb4d09dc", "text": "unicorn dragon attack in space. cyberpunk "} +{"id": "7001480", "video_name": "3b492899-2063-5382-acdb-4293219ece96", "text": "cowboy against the backdrop of cybercity in neon light "} +{"id": "7001481", "video_name": "ecb90d2e-290a-5b2c-a266-c2b4146dead5", "text": "Show eerie occurrences escalating, such as flickering lights, doors creaking, and chilling gusts of wind. "} +{"id": "7001482", "video_name": "53729244-8581-5faa-a6ed-09bd558bf3c2", "text": "a lots of food organise in jungle new year party "} +{"id": "7001483", "video_name": "41b0e2e2-1b87-5f20-972b-90a9f384798f", "text": "A boy who wears blue shorts and a yellow tshirt is sitting on both of his heels with only toes and lower thighs arouching the floor in front of a large mirror. "} +{"id": "7001484", "video_name": "4ea67c22-5627-56e2-b13b-851272c0e8e7", "text": "gradient color, changing colors continuing, cleaning, vibrant, "} +{"id": "7001485", "video_name": "6e11c60d-573a-5d3f-92c1-f37b0a893af3", "text": "cute baby owls looking for food "} +{"id": "7001486", "video_name": "5d7d0370-1d4b-5b40-962d-a58658b38f42", "text": "a robot holding baby Jesus at the nativity "} +{"id": "7001487", "video_name": "fb97d6fb-e033-5c33-ab06-a84a128ddc50", "text": "nick cage driving 300th century mitsubish bose "} +{"id": "7001488", "video_name": "71af1428-bb99-5ed1-a496-eac249dfa3a0", "text": "Flickering Light in an Empty Room. Briefly illuminate an empty room with a flickering light, suggesting an unseen presence or a mysterious event. "} +{"id": "7001489", "video_name": "6fe4777d-3be0-5d14-a7c3-851ae444ae3f", "text": "minecraft haunted house with minecraft characters for halloween "} +{"id": "7001490", "video_name": "3db37072-6311-52fc-80c7-d52484dfc044", "text": "night with full moon, vampires and wolfs "} +{"id": "7001491", "video_name": "4c6d022b-7a23-506a-9b7f-3e8a1cdb986f", "text": "two dogs being sat in a gondola in Venice. With a gondolier signing an Italian love song while the two dogs get romantic and the male dog passes the female dog a red rose and chocolates "} +{"id": "7001492", "video_name": "ec23e196-5f0b-51cc-952f-a07ea0e57d8f", "text": "a whale floating over the sea "} +{"id": "7001493", "video_name": "6b8d149a-3889-5e3d-94b7-2e32d1886d1e", "text": "Sammy a squirrel gathering nuts and berries for the baby birds. Sammy using his fluffy tail to keep the baby birds warm and cozy. "} +{"id": "7001494", "video_name": "a54724cb-a2f3-525a-a183-eb82f2cf81d3", "text": "a cartoon illustration of little girl with pony tail besides a tree flowers falling on her beautiful Indian girl "} +{"id": "7001495", "video_name": "59d86f17-3e8a-5f76-a299-f142eb4eb918", "text": "a clock eating tigers and pokemon "} +{"id": "7001496", "video_name": "35ffa53d-4365-50d9-8403-9988c793c45a", "text": "People walking with umbrellas in the city on a rainy day "} +{"id": "7001497", "video_name": "e2203e81-8e1e-5ea7-822a-961f540c7a90", "text": "photorealistic server room of blinking lights and computers "} +{"id": "7001498", "video_name": "3c6c9481-572a-5224-a6ea-ad28aee106fe", "text": "family shopping in local grocery store in the 1960s, retro, dreamlike, vintage, people, realistic "} +{"id": "7001499", "video_name": "5d3c1fe4-5425-5b6b-af1b-2115a853679b", "text": "and android hand presses play on a glitter ball shaped music player "} +{"id": "7001500", "video_name": "78ef4147-22f3-507a-9e97-36577cce4b2d", "text": "male lion head close up, opening eyes and mouth 4k "} +{"id": "7001501", "video_name": "e6e15f46-adb0-5cad-801b-ee1e9d9d6c03", "text": "1940s cinema scene of a woman brushing her hair in the mirror"} +{"id": "7001502", "video_name": "d12a69f8-d921-57e7-ac6d-a8975fdb433b", "text": "all red lighting of a beautiful mythical fairy lady with clear white eyes in a red forest talks to the camera, 8k film cinematic grai "} +{"id": "7001503", "video_name": "e5d22161-16c3-5134-ab14-4787fdd99a6b", "text": "An animated drop of ink as a character in the game "} +{"id": "7001504", "video_name": "4a4725e1-2669-530e-b9e9-5e77c64d87d6", "text": "High quality, the hand is shaking, the mouth is smiling, 16:9. Animation "} +{"id": "7001505", "video_name": "f123af79-6ded-5e93-b8df-a44805e28e81", "text": "pretty red hair Eurasien women with and leggings sitting im the office and looking hot Message: passion (Font: MODERN) "} +{"id": "7001506", "video_name": "f09213cc-0185-547a-837b-1f05e4235536", "text": "Shots of the depths of the forest, showing wolves howling in unison 16:9 pic "} +{"id": "7001507", "video_name": "d837fc0f-d915-5e2e-8e29-6d5768984340", "text": "video of so many ai news coming and peoples job is destroying "} +{"id": "7001508", "video_name": "5f31dfe0-50d5-598b-83c9-4def4ca4a9cf", "text": ": frontal view from a window inside a wooden alpine kitchen room with green funiture, old lamp with flames animated, a black cat going up and down, Aniamted high quality "} +{"id": "7001509", "video_name": "08d2b98f-7dac-5554-a75a-09f499811fac", "text": "following a car that runs at high speed inside a tunnel of light, cinematic, volumetric light, intricate detailed, consistency "} +{"id": "7001510", "video_name": "8b89e097-4408-5b27-9b71-bd0d1f9c682a", "text": "one man buzz singing and dancing in the flames "} +{"id": "7001511", "video_name": "8e3d1049-d24f-5c3c-b82c-7f0d954446e4", "text": "I LOVLU ,logo Letter l in the form of a fishing hook "} +{"id": "7001512", "video_name": "850ee195-6b78-59db-8a71-a74f26a81313", "text": "Beautiful twinkling golden stars seamless. Moving through the abstract tunnel of shimmering gold flares. Looping 3D animation. Motion design concept. "} +{"id": "7001513", "video_name": "c83b715e-7895-5f4f-a857-6e09a2173ee6", "text": "several people riding and falling off of high wheeler bicycles "} +{"id": "7001514", "video_name": "c6958629-25a9-5f77-ae88-6c38a29ff764", "text": "Three people are sitting on the hospital bed, and the doctor is standing talking to them "} +{"id": "7001515", "video_name": "54ee42f7-b24a-5cac-98f6-68796dce076f", "text": "a beautiful young lady, looking up on the ocean, contemplating as the colors change from a pink blue to warm purple to a dark black "} +{"id": "7001516", "video_name": "cdadef9a-becc-5127-8c94-fea8c6548f62", "text": "a dense forest and a blue pond can be seen from far more realistic "} +{"id": "7001517", "video_name": "dee75b99-b8b3-5f2c-a0d6-c5d47e4decbf", "text": "eyes explosion turning into the sun 4K "} +{"id": "7001518", "video_name": "c87eba45-d512-5396-89b3-419ff893e7cb", "text": "Soviet army of old grandma shooting from red riffle,Very Dynamic and realistic video, Red Army on background "} +{"id": "7001519", "video_name": "9e536a3e-8e38-5ac6-90ce-203bb6dd5eab", "text": "A video of a young girl looking in the mirror "} +{"id": "7001520", "video_name": "5670bcaa-c9a8-5995-9e24-7b5a2b2b547b", "text": "Dorothy Gale taking shelter in her bedroom whilst the tornado lifts up her house "} +{"id": "7001521", "video_name": "6e681cd5-1000-5a98-a47c-b1235291425a", "text": "Discovering the Mysterious Map: Alex finds the mysterious map in an unexpected place. The map glows or reacts magically as Alex touches it. "} +{"id": "7001522", "video_name": "c60410e6-3001-5a3d-a1f2-b63c654bb839", "text": "A mother of three who is frustrated and needs advice about what to do to keep her children happy :4 "} +{"id": "7001523", "video_name": "9cd13ed8-ab30-56fd-a490-1f4e84fe760f", "text": "beautiful girl, sexy, looking at you, shy eyes. "} +{"id": "7001524", "video_name": "a75a14c1-81a1-5472-8863-9aa4d2ffb303", "text": "business meeting in candy company called tasty help "} +{"id": "7001525", "video_name": "c62fc092-8172-594e-8d10-5a6be151cb17", "text": "moving left hand, moving right hand, moving mouth "} +{"id": "7001526", "video_name": "c5cda95c-7e74-5da2-b4d7-32dba0225356", "text": "a fantasy world fulls of elves, drawf and orcs while humans within , showing different places with powerful gems or crystal "} +{"id": "7001527", "video_name": "883d0d03-ce65-5f78-8e33-0ba0c4a5343a", "text": "God blessing the eggplant to be the most beautiful of all vegetables "} +{"id": "7001528", "video_name": "ededa2fd-65b1-5de7-8432-d1bfe0d274a8", "text": "morbidly obese woman dressed in pink spandex skateboarding down the middle of Hollywood Blvd, atmospheric "} +{"id": "7001529", "video_name": "897d548c-e1d6-58bb-ae70-2afaf3e0b250", "text": "A cow and some baby birds "} +{"id": "7001530", "video_name": "25fe56ac-27ee-58ba-a530-d285c2f34a8a", "text": "motivational story A small village in a remote area near the countryside "} +{"id": "7001531", "video_name": "e4570185-e0ee-51d5-971d-167573122097", "text": "baby deer playing with mom deer with wind "} +{"id": "7001532", "video_name": "fa2881be-9bc0-57d9-b74c-b7b1d4de763a", "text": "I will go to the grave for my only brother, for the team "} +{"id": "7001533", "video_name": "58e2d35f-f0e4-56a9-a532-fd5cf20d0854", "text": "Little turtle lying on the beach, The hand holds its head, Soak up the sun on the beach, A blue and white background "} +{"id": "7001534", "video_name": "b84a80b7-1041-54e0-a7ce-b6484e78cfa0", "text": "fast fast moving big rain cloud "} +{"id": "7001535", "video_name": "8af0fdb9-5b61-552a-827b-fd5cb3f264b7", "text": "indian gambler wins a lot of money "} +{"id": "7001536", "video_name": "0475e93d-e484-5aca-9773-a58edba2badf", "text": "the tragical histories of sir isaac thalwurt "} +{"id": "7001537", "video_name": "f9c7eb6d-6468-5ef5-8bd8-aaa93de9da75", "text": "DNA molecules Message: iscb (Font: MODERN) "} +{"id": "7001538", "video_name": "947c867d-6cfe-514f-bac9-02d02aed53d7", "text": "black and white image. years 1880 paris city. people ride bycle at town road "} +{"id": "7001539", "video_name": "a446291b-890a-5c39-8523-09d7a6a83ab2", "text": "a single duckling wobble and stumble whenever trying to swim unprofessional swimming clear view "} +{"id": "7001540", "video_name": "f46b5701-7857-57dc-9cde-144d382fb9e4", "text": "all the kids r in starting position for the running race "} +{"id": "7001541", "video_name": "a52adc3b-0193-5f9b-8f34-9ce9b2a912af", "text": "mushroom with face pink and white visuals "} +{"id": "7001542", "video_name": "8852abdb-9948-59fd-9a23-81ad6269113f", "text": "virat kohli walking on the road "} +{"id": "7001543", "video_name": "9fb6d197-a3b7-5685-a90b-a988ea3cf0da", "text": "a robot teaching how to reppair something to a kid "} +{"id": "7001544", "video_name": "bff0abcb-db4f-5cf9-acf5-af1b542352ea", "text": "Michael Knight in horror night David hasselhoff "} +{"id": "7001545", "video_name": "a5d3ebe4-26f1-5409-9d7e-ab35aecf327a", "text": "a volcano erupting with larvae invading city streets "} +{"id": "7001546", "video_name": "1a13e040-40c6-59a7-b7cb-6fd0a7352b38", "text": "prince say I love to princess "} +{"id": "7001547", "video_name": "a17e980d-fa45-50b7-9e6c-4e52770f6457", "text": "a boy playing guitar near a window, wind blowing curtains, ultradetailed, ultrarealistic, high definition, photography, photorealistic, masterpiece "} +{"id": "7001548", "video_name": "4f497726-9fab-555d-b987-b502b29167eb", "text": "bustling modern indian city, a woman handling specs, surrounding people walking "} +{"id": "7001549", "video_name": "eea43e4c-f8d3-58b1-aebb-ba0045ee1cac", "text": "the sultan sits on his throne and the scribe sits at his table and writes with a quill on a piece of paper. "} +{"id": "7001550", "video_name": "b56c43b7-ac8b-5555-a5d4-691a05d05e20", "text": "Ironman home alone in a modern luxury house "} +{"id": "7001551", "video_name": "db93921e-fedb-5773-9470-ae57d316a99d", "text": "Purple gas giant planet in space "} +{"id": "7001552", "video_name": "be973bcf-c1b2-57c5-8c10-db67b823e317", "text": "a cheese grater cutting anything but cheese "} +{"id": "7001553", "video_name": "fdfc0714-eaf3-5c1b-93cb-336c901ab843", "text": "kids cartoon bunny and panda With our safari companions by our side "} +{"id": "7001554", "video_name": "4610a13e-f444-5b82-9829-c4a054f638ff", "text": "The princess stands in the palace and looks at the prince. Sits in a car and leaves. Cartoon "} +{"id": "7001555", "video_name": "d0fdd26c-f3dc-559e-b461-dd5ecb148326", "text": "in a table whit food Message: Ascorazon (Font: BAUHAUS) "} +{"id": "7001556", "video_name": "b1263c4d-cb2e-5670-8cbd-cd68d1e0c7db", "text": "The face of a cute woman smiling at you. "} +{"id": "7001557", "video_name": "585fdcce-db02-50ca-9325-caebb537dd27", "text": "dancing vii from league of legends, morning 16:8 "} +{"id": "7001558", "video_name": "bfae6f52-bb6d-53e0-830c-938f2ae1da20", "text": "a photorealistic 3D animation video set in a cybernetic scenario. In the first scene, depict a blazing processor, emitting fiery particles and intense heat. Show the processor struggling to handle the immense workload. In the second scene, portray a distressed RAM, visually representing its limited capacity, with data overflowing and causing visible strain on the RAM module. Finally, in the third scene, showcase a NAS device exploding with a burst of energy, symbolizing the consequences of excessive data storage. Make sure to incorporate futuristic cybernetic elements throughout the video to enhance the overall ambiance. "} +{"id": "7001559", "video_name": "854ac993-beae-5c2b-8594-929a642b9778", "text": "create a skyblue sky and little white transparent stars twinkling slowmotion "} +{"id": "7001560", "video_name": "ac2afc43-1695-5bde-8272-f65b657ac207", "text": "Turns to the side Message: 1 Attachment "} +{"id": "7001561", "video_name": "266b0567-741d-5ab8-acc7-8f187487daae", "text": "Harry styles eating steak in fine dining restaurant "} +{"id": "7001562", "video_name": "4515b939-024f-51c5-bdda-107ef9e061de", "text": "The flowers are swaying in joy Message: 1 Attachment "} +{"id": "7001563", "video_name": "efd79f72-fc57-5c6c-a8d9-c1367046f247", "text": "the letter A next to an apple "} +{"id": "7001564", "video_name": "fcf1255d-702b-55c7-8b9b-b7608794ca8d", "text": "A handsome Chinese man having a difficult conversation on the phone "} +{"id": "7001565", "video_name": "0daaa91d-2d07-5094-9107-e2eef4be1d26", "text": "in meetings room, 3 malaysian man in the meeting while holding pen and swords "} +{"id": "7001566", "video_name": "df14ba14-c802-505d-9f43-b8bb9dd8a8cf", "text": "Animal growl in the center, text do not touch "} +{"id": "7001567", "video_name": "8040af18-6f51-5573-bf99-1b8e60845f4f", "text": "shiva meditating, air, flaping hair, mountain "} +{"id": "7001568", "video_name": "d2e71b53-b7d0-5bea-8254-8a605090b6ce", "text": "Situated over 1,600 feet below the Larsen Ice Shelf, "} +{"id": "7001569", "video_name": "5a6f0f47-f6d4-5f89-8ff8-2ba8607e43f0", "text": "poster for a meeting with designers on terrazzo "} +{"id": "7001570", "video_name": "856d2d06-f8c6-5384-92d6-0a17152d94d6", "text": "white rabbit on the moon , cartoon with dark colors "} +{"id": "7001571", "video_name": "9d9ab882-c77e-59c5-a91f-7bc08158399d", "text": "lions dress as mariachi playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "7001572", "video_name": "52d7295e-ebd1-5804-a176-09d99250d440", "text": "a doctor and an aztec man in loincloths smiling shaking hands around a campfire "} +{"id": "7001573", "video_name": "3a9e0def-3adc-5786-9866-3a51a5c06d9f", "text": "a single blue and shining particle flies from the left of the screen to the right. "} +{"id": "7001574", "video_name": "1be3a4c3-23a3-5603-b4a2-1b60fb7b74f3", "text": "behold i do a new thing, cinematic beauty, flickering light "} +{"id": "7001575", "video_name": "bc258e25-221b-5d30-9af5-ad6ff1e85852", "text": "sun to moon transition, grainy, retro and shot on a mountain in real life "} +{"id": "7001576", "video_name": "0e3ecfe1-975c-5f20-b2f1-7e9ce5a5547f", "text": "The most expensive cryptocurrency next year "} +{"id": "7001577", "video_name": "7cea7c48-9ec8-5368-8df4-bbfe25025022", "text": "mario bros int the arcade room playing retrogames "} +{"id": "7001578", "video_name": "46d97bc3-5b81-5637-a32b-10d648f17b47", "text": ": farmer on his bullock cart "} +{"id": "7001579", "video_name": "11df34a2-4ad0-52e9-860d-e2af49277cc1", "text": "pagan figures in demonic masks performing a ritual in a 1990\u2019s home video aesthetic with grain and moody lighting, inspired by the movie Eyes Wide Shut by Stanley Kubrick "} +{"id": "7001580", "video_name": "fc208ff5-df0c-5508-a965-5e2a59b895ce", "text": "transparent grey bee polinating on a water bottle "} +{"id": "7001581", "video_name": "b67c0d59-9a74-5c1a-b965-db15b0a899bd", "text": "Invent a face veiled in shadows, with eyes that gleam with an enigmatic intensity. Add intricate, dark markings that flow along the contours of the face, suggesting a connection to ancient and mysterious forces "} +{"id": "7001582", "video_name": "f049eb5d-1d5f-5090-ae22-061eb1dae400", "text": "aerial images of landscapes with clouds and sunset "} +{"id": "7001583", "video_name": "732b63eb-600c-55fb-a7ce-83bdaa00bf28", "text": "glorious sunrise slowly coloring the sky "} +{"id": "7001584", "video_name": "1acbb4a5-c129-5d1c-b401-d0bf92c00f12", "text": "An image of Emily standing alone on the balcony of her mansion, staring at the city lights. "} +{"id": "7001585", "video_name": "32bd380e-cb57-5c22-a96d-b34e67852104", "text": "Ford F150 racing across sanddunes with sunsetting background "} +{"id": "7001586", "video_name": "652ae0fe-3821-5c5d-af4e-07069b3dac13", "text": "an adorable pixar style asian nurse looking at front. 16:9; motoin 2 "} +{"id": "7001587", "video_name": "fbb852d7-35d8-513b-b401-bdef71d48f9c", "text": "A rotating protein structure for science research "} +{"id": "7001588", "video_name": "1d43d889-6f74-56db-86e0-befc48837735", "text": "the logo of the oil company is hyperrealistic, worked out in detail, artistically depicted in motion in titanium colors "} +{"id": "7001589", "video_name": "9c599fe5-a977-51bd-b28a-8cca149f5ca1", "text": "Phoenix burning in minecraft world Message: Phoenix (Font: MODERN) "} +{"id": "7001590", "video_name": "6d3b7887-928f-5de3-bdae-871e4e848b82", "text": "Shiva does the facepalm with all hands "} +{"id": "7001591", "video_name": "09b698ff-52b9-5baf-bd48-45a02375d79f", "text": "hyperrealisic zoom into a detailed moon, dark night, cloud movement "} +{"id": "7001592", "video_name": "4dfc8364-ff79-5813-9850-e18328d62149", "text": "Chinese University Student Social Club Dance "} +{"id": "7001593", "video_name": "ee9d14bb-bdac-517a-9b0d-40d51619ed65", "text": "prompt:black and white photo of a person in a hoodedie, shadowbringers cinematic, thick glowing chains, okay one fear, soul of human in transparent form priestess, very accurate coherent image, fairy wings, man, is tall, by Francis Helps "} +{"id": "7001594", "video_name": "87c15ccb-c7d6-54cd-b0e4-9354a073dcd1", "text": "Popcorn in a large cardboard bag rotating on its same axis, jumping popcorn by popcorn on top of the cardboard bag "} +{"id": "7001595", "video_name": "b356b99d-4396-5bba-be38-675c9a5a0eb8", "text": "Futurized 3d phone handsets on colorful background "} +{"id": "7001596", "video_name": "18639038-6a00-5385-bfdf-18c45c1bc732", "text": "A golden lion looking down at the group of teachers "} +{"id": "7001597", "video_name": "8263acc1-fdc7-5d4f-a200-b93398980004", "text": "selective focus video of grass during sunny day "} +{"id": "7001598", "video_name": "a39d2f56-c579-59af-a900-663792ed04c3", "text": "a room full of cats Message: 1 Attachment "} +{"id": "7001599", "video_name": "c88e3e2b-6e7c-5bcc-aed0-f129e59c765d", "text": "a 1992 camero sr car spinning wheel "} +{"id": "7001600", "video_name": "d2b69616-54a5-549e-bcb7-dfaa80677bcf", "text": "A young boy is running on the new york street with his mother. "} +{"id": "7001601", "video_name": "7140d626-95c1-5230-926f-c88e8673ea2b", "text": "black and white Victorian film haunted house of horrors photo realism Gs 20 motion 20 "} +{"id": "7001602", "video_name": "68d41147-d424-5a55-bea1-43374395690a", "text": "There is a light spot in the middle, and the rest is desert. The desert is blown up by the wind, in a magical style "} +{"id": "7001603", "video_name": "915fb60e-825c-598e-8e0d-3f45c428097d", "text": "Building a house in a beautiful landscape. A truck drives and unloads materials, people build a house. "} +{"id": "7001604", "video_name": "d8040646-6260-5e53-b419-4fd28d00f2fb", "text": "cosmic golden background moving with a beautiful tree with red fruits "} +{"id": "7001605", "video_name": "65be5944-b425-5004-8a46-3257bbb09c2a", "text": "A beautiful village with two cheerful sisters, Sima and Tima, along with their cute cat, Chhaya. in 3d images "} +{"id": "7001606", "video_name": "9be3cbd8-994f-55d1-92b5-abffa6cb5f49", "text": "the earth seeing by a martian from the space "} +{"id": "7001607", "video_name": "e4f3b6ec-6b25-55f4-ac50-237b5338b291", "text": "mountain car rally seen from drone "} +{"id": "7001608", "video_name": "eb323501-13aa-5b87-8aea-233f753da668", "text": "Universe entery into the brain of beautiful woman . "} +{"id": "7001609", "video_name": "6b990897-28c6-5388-8f39-328811d0f850", "text": "Village Gathering: Villagers gathered around a bonfire on a chilly evening, sharing stories and warmth. "} +{"id": "7001610", "video_name": "41cf5d11-2233-569f-a774-15cdc3ed4ece", "text": "Once upon a time, in a lush and mysterious jungle, there lived a young girl named Amelia. She was an adventurous soul, always seeking new experiences and challenges. One sunny morning, fueled by curiosity, she decided to venture deep into the heart of the jungle, armed with a backpack filled with supplies and a trusty map. "} +{"id": "7001611", "video_name": "970f1e58-5f17-54db-b553-0f380dccaac7", "text": "beautiful fascinating garden , colourful flowers ,lush green trees , butterflies fluttering, wind is blowing slightly "} +{"id": "7001612", "video_name": "054c3b05-b2cc-58da-9e63-2bb94c35efd0", "text": "South four hundred eighty temple, how many floors in the rain. "} +{"id": "7001613", "video_name": "5c42228b-022d-5759-a30e-a276245d0844", "text": "Cows walking on a farm Message: Pirates (Font: MODERN) "} +{"id": "7001614", "video_name": "570cae0f-2465-5d7a-a003-9ef11147bb58", "text": "human go out Message: 1 Attachment "} +{"id": "7001615", "video_name": "87a6fded-2177-5138-a522-b00bf7edf1be", "text": "Together, they defeated his brother Ptolemy XIII in a civil war, and Cleopatra once again became the undisputed queen of Egypt "} +{"id": "7001616", "video_name": "2a8265c1-8a34-5fac-97fc-a51bfea312b8", "text": "add playing children Message: 1 Attachment "} +{"id": "7001617", "video_name": "e91e111e-dfde-56d1-887f-e2fbc6333f5b", "text": "One woman is sitting on a couch, holding a wine glass in her hand. The other woman is standing slightly behind her, also holding a wine glass. They are surrounded by several other wine glasses and bottles, indicating that they are enjoying a social gathering with drinks. The scene is set in a cozy living room, with a comfortable atmosphere for the women to relax and celebrate. "} +{"id": "7001618", "video_name": "621a92cd-9b96-592b-9aac-615993b8c394", "text": "deck of elvish ship, elves sailing, close up "} +{"id": "7001619", "video_name": "14769781-e77b-5e3f-9eb4-a8ecdb8b9842", "text": "Create a vibrant 3D scene featuring a group of small and bright ants working together to lift objects twice their size. Show their teamwork and determination. "} +{"id": "7001620", "video_name": "a876f01a-b792-5e9b-9e40-686f2351bb53", "text": "united states of america is the 1st richest country in the world "} +{"id": "7001621", "video_name": "aac7ef96-7ec0-5c42-bc32-ead28c7a4840", "text": "water color landscape, girl dancing on a paddy field "} +{"id": "7001622", "video_name": "bd79464a-0b5f-5173-b2bd-b012f01269fd", "text": "beethoven playing computer keyboards at a laser light rock concert on planet jupiter "} +{"id": "7001623", "video_name": "a2f8bded-cb03-5ab1-bbcd-fda68eadf84f", "text": "steps how to camouflage a plant "} +{"id": "7001624", "video_name": "6bdbf242-824c-5b92-8705-ef7ab741ddb9", "text": "sun rays on a rose seen from the ground "} +{"id": "7001625", "video_name": "437098a9-fe76-53ab-9bc3-f103f68eb43d", "text": "The girl flips through a book and can blink. "} +{"id": "7001626", "video_name": "b2cf64da-489a-5887-8589-bb3cc12815c6", "text": "A ghost, moving towards the haunted palace surrounded by dense forest on a moon lit night "} +{"id": "7001627", "video_name": "87110c52-d051-5cb7-bfbd-c0f38c6db4af", "text": "cinematic movement candle light demon rises from ashes "} +{"id": "7001628", "video_name": "8a3d8ee4-5dab-59ad-9dbe-89459c885cf2", "text": "a running horse in the big snow "} +{"id": "7001629", "video_name": "2262afd0-73df-5e0b-af82-2442bac69d99", "text": "animation of odometer cars and acceleration "} +{"id": "7001630", "video_name": "4c7436bf-eda3-565d-8a1e-01183c5789d4", "text": "pink alien dinosaur walking thru a forest, 4k ar 9:16 "} +{"id": "7001631", "video_name": "3addec01-5f40-57b4-8400-bd6265d490ef", "text": "a flying dog on the space with black glasses "} +{"id": "7001632", "video_name": "c586a678-3bd0-5463-b938-486b81f97d86", "text": "third scene: the door lobby big and glowing "} +{"id": "7001633", "video_name": "ce5e777d-f2e5-5b97-974f-a080e3d21fba", "text": "Saul goodman in a swimming pool made of cash "} +{"id": "7001634", "video_name": "9e1d5fc4-f5ec-5392-bf55-0b5f7f297a2a", "text": "many colorful paper airplanes fly among the mysterious forest "} +{"id": "7001635", "video_name": "1bb14339-9207-5bfa-ad34-01f9229c6233", "text": "create a 1 minute video of a teenage girl studying in her room typing on her laptop on a rainy night "} +{"id": "7001636", "video_name": "41fd77b4-d2a3-5c58-8550-85d87fecb30a", "text": "a one minute tom and jerry story "} +{"id": "7001637", "video_name": "3ecec39b-681c-5c74-a595-1427585fdd8a", "text": "anime rain, make the silhouette on the bottom move and walk to the right "} +{"id": "7001638", "video_name": "24800d16-7b37-510f-a20a-a7cd94e64ed3", "text": "realistic, clear, image, silver ufo hovering in the sky "} +{"id": "7001639", "video_name": "da58e8c2-4f73-5d82-b31f-0065c6d7e275", "text": "Opening with an impoverished village facing famine. Buddha Sakyamuni appears, sharing joy and providing sustenance, transforming the scene of suffering into a fresh start. "} +{"id": "7001640", "video_name": "395ebf90-5189-59cc-a20a-1f98d90857af", "text": "a doctor wearing a white coat looking stright realistic,3d "} +{"id": "7001641", "video_name": "c9677717-7bd4-573d-bbde-9e98be6a0a48", "text": "However, like any magic mushroom, the fly agaric had its own characteristics. It contained a substance dangerous to health that should not have been eaten. But Denis, knowing this, continued to eat his favorite mushrooms. "} +{"id": "7001642", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "Show an image of a dark forest with towering trees and moonlight faintly visible in the sky. "} +{"id": "7001643", "video_name": "cf41f0ee-1a89-5136-a3d3-c61feb4c571b", "text": "Lada is going into a storm "} +{"id": "7001644", "video_name": "6eb94197-0df0-5bfc-8c1d-c89708067e37", "text": "Two dogs fighting under the Eiffel Tower. 8K video "} +{"id": "7001645", "video_name": "f299ead3-1882-5b2f-91f7-840f20588b36", "text": "a soldier coming out of a tank with a sign in his hands which has the text Federico Manco "} +{"id": "7001646", "video_name": "2ee6d600-b893-5b6a-a08f-a40d153ef432", "text": "A Halloween scene with a lot of movement. dynamic. "} +{"id": "7001647", "video_name": "9221bfa3-48d6-5c70-bc65-2a72fd89cac4", "text": "and peoples are walking their dogs. "} +{"id": "7001648", "video_name": "738835e8-bffe-5aa0-987f-83c011e90dae", "text": "watching a spacecraft land on the moon "} +{"id": "7001649", "video_name": "86bb5a9f-bd2e-5e85-a415-23d1a3843593", "text": "a swamp deer walking near the lake while bheind it there is a meteoritr coming and partially blocked the sun "} +{"id": "7001650", "video_name": "949f8ee1-c9b1-5c4e-865e-abbe5faa077b", "text": "two boy one girl standing in town, talking .\n3d image "} +{"id": "7001651", "video_name": "00578c7b-92c8-5540-86fd-9788261d0fe0", "text": "Milo swinging through the trees with a mischievous grin. "} +{"id": "7001652", "video_name": "0d933c22-2a39-5f06-981f-b35644d06f54", "text": "man moving and looking to the camera "} +{"id": "7001653", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "lord shiv sitting on himalya mountain, 4k, zoom in, 16:9 "} +{"id": "7001654", "video_name": "07744176-7a93-5efb-a119-5ad13b5fcaf6", "text": "Tokens and coins airdrop, orange, indigo and gunmetal colors in background, bokeh, detailed Message: BITCOIN (Font: MODERN) "} +{"id": "7001655", "video_name": "e9fdbaa9-acf1-5846-b87e-d63b5685a4df", "text": "an old man wearing a white coat and a mortarboard in cartoon style "} +{"id": "7001656", "video_name": "b21f4515-595f-58b8-a0c8-9cb6945551b9", "text": "A grand musical performance at the center of the marketplace, featuring talented magical creatures playing instruments that emit musical notes of light. 4k "} +{"id": "7001657", "video_name": "4e9d0139-e21b-558b-98f0-d54c0a796a23", "text": "In the Republic of China, a Chinese beauty holding a fan was dancing in a dance hall, "} +{"id": "7001658", "video_name": "984c68e9-941e-5e6b-b210-6c2154b2938d", "text": "Koji smiled kindly and led Hiro to a tranquil pond surrounded by vibrant cherry blossoms. He picked up a small pebble and dropped it into the still water. The ripples spread outward, creating a beautiful pattern. "} +{"id": "7001659", "video_name": "7bf58398-de5a-5a86-ac63-8d8a419b3647", "text": "Sonic enters the world of the Mysterious Forest, where he sees strange and colorful plants and animals. "} +{"id": "7001660", "video_name": "17954550-99ca-5e50-99ea-4ff180e548fb", "text": "clouds moving, white , 4k ultra hd , watercolor "} +{"id": "7001661", "video_name": "0d5038a9-2a96-56d8-8eaf-c8fc47450b58", "text": "the Guardian of the Arcane, and his students became a legend that echoed throughout the ages. "} +{"id": "7001662", "video_name": "80bb2015-503f-546f-82de-d8e81c1eeb85", "text": "8k, man with fearful expression horror, exploring the dark corridors of the house "} +{"id": "7001663", "video_name": "91e80973-8319-5490-88c0-299290854cb7", "text": "a god dancing on a mountain in glod hour "} +{"id": "7001664", "video_name": "2b308b6d-7d4f-544e-8bd0-71201bb56e22", "text": "random video of lonely people, no extra limbs, no extra fingers, no distortion, no text, no logo, no words, no waving arms, no distorted body, no distorted face, no extra leg, no distorted light. "} +{"id": "7001665", "video_name": "eb7ce2d4-df6b-51c7-b1a8-5c7108f8ae61", "text": "Visualize Lord Shiva imparting the art of Kalaripayattu to Parshuram amidst the serene backdrop of a forest. Highlight the divine aura around them as they engage in a training session "} +{"id": "7001666", "video_name": "ed514b9e-e433-5a1a-aa5e-9870480b3d10", "text": "a young couple with flying hair is worth sitting and watching the sea from the far shore with sunset, moving sea, 4k video quality "} +{"id": "7001667", "video_name": "197ff85c-3873-5097-a4ef-2a47f6ba552e", "text": "A daily news service on TV with a woman speaker "} +{"id": "7001668", "video_name": "e92ee271-4b90-5c74-b454-6bc36d5c7428", "text": "1000 people moving in a form of an arrow "} +{"id": "7001669", "video_name": "cdff1b9a-fd49-5e87-b3f5-73a09c5fc6af", "text": "animated image inside a hut with fire chimney at night time monsoon weather "} +{"id": "7001670", "video_name": "87d95d98-7e08-5e8a-a311-3064ec395bb7", "text": "cinematographic image has thousands of people kneeling on the ground of various races holding hands in prayer to God represented by a divine light coming from the sky, ultra realistic photo 8 k "} +{"id": "7001671", "video_name": "594da976-d89a-57b9-a600-3a7b7cd49e42", "text": "music video for sad love song "} +{"id": "7001672", "video_name": "a010bbc2-1049-5368-a82f-665bcbc421dd", "text": "a poor boy with happy face "} +{"id": "7001673", "video_name": "f165b4c7-41f5-5b68-a1ad-62a427569f7e", "text": "flying whales waterfall star trek 8k cinematic trailer footage glitch matrix synthwave "} +{"id": "7001674", "video_name": "153c16a3-75c9-500a-a218-3fc6f92cae3c", "text": "a tv screen in which Thomas Edison picture is showcased "} +{"id": "7001675", "video_name": "f8bd4598-1aef-5bd3-bcb7-c9d37e14e164", "text": "Emma lifts the locket with their picture, holding it close to her heart, reaffirming her love for Alden, transcending the barriers of space and time. "} +{"id": "7001676", "video_name": "51ff91ee-5cfa-55be-b140-f6f6d7b7a04c", "text": "Lost phone. Mysterious message. Unraveling clues lead to unexpected reunion and joy. "} +{"id": "7001677", "video_name": "ba4c8097-dbe6-535c-a38e-25cd098f9434", "text": "prompt: the lady of the lake, her arm clad in simmering shamite, held aloft, from the bosom of the water, the sword excalibur "} +{"id": "7001678", "video_name": "05d08fde-4b25-541b-80c2-8a6228a169e4", "text": "a drone flying over a desert oasis, fast motion "} +{"id": "7001679", "video_name": "6f53c3a5-0390-5dd1-8272-f774fd43798d", "text": "Fatima arrives at the camp by her car "} +{"id": "7001680", "video_name": "142986ca-e477-5255-bb9c-dba226deb2ad", "text": "the david by michelangelo smoking a Ploom X electronic device "} +{"id": "7001681", "video_name": "b7f408b8-a029-5e9b-8222-4d204dd0196b", "text": "Albert Einstein sits at his cluttered desk, flipping through patent applications. "} +{"id": "7001682", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya and Mr. Thompson sitting on the porch, sharing stories. "} +{"id": "7001683", "video_name": "acd13147-3aee-58a8-871a-3227ab50d3e1", "text": "huichol deer in the magic forest "} +{"id": "7001684", "video_name": "50fbfb9f-c620-5779-add4-bbe13050dc74", "text": "A captivating bioluminescent supernova burst, casting a warm, ethereal glow across a celestial landscape of swirling nebulae. "} +{"id": "7001685", "video_name": "9a1c3eb8-a286-5299-8162-a71c204db3cd", "text": "a brazilian jiu jitsu fighter in a flying triangl choke "} +{"id": "7001686", "video_name": "10eb3adf-e5f9-5efe-95b8-42d61e1671a1", "text": "perspective rotation motion neons,lights blinks sparks illuminating transforming "} +{"id": "7001687", "video_name": "f849187e-4a12-5661-b533-a25bd1ab4a1f", "text": "Pour boiling water over the tea leaves "} +{"id": "7001688", "video_name": "6812186c-bea3-5aa7-8d27-f6cbb8e91526", "text": "4 friends sitting in russian Car Lada and driving in Berlin City and singing "} +{"id": "7001689", "video_name": "d1ec4629-fdea-51bb-9dfb-8c872cffc1ed", "text": "the wedding of Manchester United player Antony and manager Ten hag "} +{"id": "7001690", "video_name": "8dc6d03b-9ea9-55e8-91b0-19548cf9d745", "text": "1 minute video little mouse play drums "} +{"id": "7001691", "video_name": "ad6d43f4-ca39-5ed4-bf7e-7b7a2eb5e8e7", "text": "Jungle with trees and red flowers and some birds flying around Message: Kunni (Font: MODERN) "} +{"id": "7001692", "video_name": "83b00c26-07a0-5fa9-a79c-6f18bb34c050", "text": "a headless man walking on the beach during the night. lighttower in the back "} +{"id": "7001693", "video_name": "3bb7a66c-d143-51ab-b977-3dc78652be47", "text": "The man with dark hair sits down on the sofa in his living room and picks up his phone from the coffee table. "} +{"id": "7001694", "video_name": "89480e19-6adc-56cb-b51b-8e684ef28592", "text": "a man walking on the beach with his dog "} +{"id": "7001695", "video_name": "6401560e-ea31-5cf2-a964-a64df9eeb50f", "text": "a man indulges in money, he is sinking inside money pool "} +{"id": "7001696", "video_name": "37312cf0-6017-54ee-94df-2353d0d9fe32", "text": "a beautiful young girl with blue eyes and curley brown hair with a big smile "} +{"id": "7001697", "video_name": "b7273f7b-2ed2-5bc3-abff-53110c114554", "text": "The history of Mesopotamia can be divided into several key phases "} +{"id": "7001698", "video_name": "bb439853-9c3d-5324-89c2-7775b21e4cd0", "text": "aqua blue storm over a night beach "} +{"id": "7001699", "video_name": "8ecd2573-4599-5162-81ec-c012d29a254c", "text": "captain Nemo is smoking a pipe at sunset overwatching the harbour "} +{"id": "7001700", "video_name": "a75e26f9-c46d-5ca4-90a2-df16a42813b9", "text": "Driver in the scary forest, at night 4k "} +{"id": "7001701", "video_name": "c24a7b20-fd27-5c91-8bf7-62141cf4505d", "text": "generate a video where a tornado is approaching the tall forest trees "} +{"id": "7001702", "video_name": "5910be0e-4341-5e3e-9082-e871d5b36042", "text": "a zoomed out image of a silhouette of a kid that is lonely in the middle of nowhere. The kid should be small in the picture and the background should fill most of the image. no movement "} +{"id": "7001703", "video_name": "b6dbdc25-2da8-5737-8034-758152cb5461", "text": "a man transitioning into a woman "} +{"id": "7001704", "video_name": "ec3025d8-3587-58c3-8cbe-3e2da217475c", "text": "body camera video of a police officer who comes face to face with a creepy creature, fisheye, realistic, grain. "} +{"id": "7001705", "video_name": "fd2349e0-e993-5e26-96a6-055c531ff596", "text": "Describe how the artist, a passionate young man, engages her in conversation about his craft, sparking a connection that goes beyond the canvas. "} +{"id": "7001706", "video_name": "9cb954d1-bc4f-57c6-9e77-d46656e41247", "text": "A fox run away from forest animation "} +{"id": "7001707", "video_name": "659931ae-efd6-568d-9f76-76a3f3002e83", "text": "A female pirate with a strong back light from the setting sun "} +{"id": "7001708", "video_name": "99f06271-be91-55b3-90c3-d0e5897bef0d", "text": "sky full of stars, astrology, horoscope signs flowing in the air, zooming in, detailed, astrology appealing "} +{"id": "7001709", "video_name": "6fe33f6b-af50-5263-9b3b-62eb241a9221", "text": "beautiful young daphne guinness, 1920s style, dali art, trippy, night, soul, spiritual, mythology, eyes, tv, street lights "} +{"id": "7001710", "video_name": "614cd6fc-f54e-55a9-a275-60d3088f63b7", "text": "A Chinese dragon occupies the entire screen and passes through it "} +{"id": "7001711", "video_name": "72aedf08-7e55-5916-8c71-f3028a4a7e50", "text": "seikh climbing the hill fastly to get the got back "} +{"id": "7001712", "video_name": "75af47e9-5906-5160-b78d-7eacefe50eb2", "text": "The main character, a cyber cat, gracefully walks along a smoky street surrounded by tall skyscrapers in the cyberpunk style. Her fur, decorated with neon lights and electronic digital designs, glistens on "} +{"id": "7001713", "video_name": "1ab00f26-864b-52bf-b079-d8ae7eb67e5c", "text": "night time, cloudy sky, wide shot, a thunderbolt hit a top of a tree "} +{"id": "7001714", "video_name": "5c48c14b-f419-5821-93fa-ff5bf2791abe", "text": "scene of queen cleopatra with 2 men, they are sitting side by side in ancient egypt "} +{"id": "7001715", "video_name": "71c60b07-85d3-5901-aab1-5165571fdb35", "text": "His idea was to encourage everyone to perform acts of kindness during the Diwali season in disney style "} +{"id": "7001716", "video_name": "843c8bf9-6c7a-53f9-9751-5e8badb7e360", "text": "iron man fighting mysterio from Spiderman far from home,4k , ultra real, cinematic scene, excellent colour grading "} +{"id": "7001717", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "The young person, while sipping the cold beer, stumbled upon a stack of beers, which in turn collided with a car. "} +{"id": "7001718", "video_name": "a6234b22-5702-5307-bfca-cbfbe5def172", "text": "Engaging showcasing bees in their natural habitat "} +{"id": "7001719", "video_name": "603166d0-b1e1-57b5-aae1-e731da13c8e7", "text": "hyper realistic Santa Claus is arriving in a flying sauce "} +{"id": "7001720", "video_name": "e038fc1a-359b-5eac-985e-b35068353ff5", "text": "Convert this video to a sketching style "} +{"id": "7001721", "video_name": "98b6d734-85b4-5a83-a916-cfb31f1b3940", "text": "a bird flying out of his cage, anime art style, high quality, highly detailed, "} +{"id": "7001722", "video_name": "2e063fab-c652-5ee2-a14f-952794eda900", "text": "handsome man in suit running fast "} +{"id": "7001723", "video_name": "079258c7-6a5b-5026-a4f1-a0bf85ca7b80", "text": "Professional arborist pruning an apple tree "} +{"id": "7001724", "video_name": "86603ec4-52da-529c-a61e-d938dd2a9d0c", "text": "Fatigued Protagonist, Weary, Realistic, Nighttime, Mysterious Command \u751f\u6210\u7684prompt\u8bcd\uff1aTired Yuki, Exhausted, Realistic, Moonlit Night, Enigmatic Message "} +{"id": "7001725", "video_name": "49847ecd-129e-52e5-81fb-a400f412ed6b", "text": "a robot whos breaking the city "} +{"id": "7001726", "video_name": "6c76b04b-d509-563d-80f7-3de26fc39c98", "text": "Live tv news report, Joe Biden speaking to the camera, news room weather map "} +{"id": "7001727", "video_name": "bc30418e-e02e-5b0d-ac0b-3bdd19d913b0", "text": "a boy whos dream is to become football player "} +{"id": "7001728", "video_name": "9763e74e-cdd2-5f92-bd53-02ee58544ce8", "text": "Imagine an intergalactic symphony: Generate an AI masterpiece that captures the harmony of celestial bodies, blending cosmic colors, intricate nebulae, and ethereal starlight to create an otherworldly visual feast that transcends the boundaries of our universe "} +{"id": "7001729", "video_name": "4a1546a5-ef7f-5c18-a9a4-89055f62c3f3", "text": "an italian craftsmen wanders through the bustling streets of hangzhou with his bag on "} +{"id": "7001730", "video_name": "cb8ec46a-d46c-5ead-af0f-41728dbe12fa", "text": "flying down to earth Message: 1 Attachment "} +{"id": "7001731", "video_name": "f4541ea6-0efe-5750-9a28-3ad342b6e303", "text": "forest, goblins, gnome, dungeons and dragons fight. "} +{"id": "7001732", "video_name": "b5b42461-604c-544f-83b3-7c489c06d6e6", "text": "An angel walks on the sand "} +{"id": "7001733", "video_name": "0bb73bcd-7f1c-5ec6-996c-2b4cbedc4004", "text": "1 rocket launch into space, astronaut, ground crew, aerospace, spaceship, ISS "} +{"id": "7001734", "video_name": "8c82133f-0778-53b3-8637-e84b662b172a", "text": "A mother with two babies, a real scene, portrayed realistically. "} +{"id": "7001735", "video_name": "283bdd2d-59cd-5f2d-a3e3-5fa1fe9a3252", "text": "4k image of a couple in barcelona holding hands "} +{"id": "7001736", "video_name": "4b75f905-5129-5157-a83a-646ef131da0a", "text": "Illustration: 3D render of a metallic gray car with its internals exposed, showcasing the engine, transmission, and other key components. The car is set against a light gray backdrop, emphasizing its internal details. "} +{"id": "7001737", "video_name": "97ff85b5-b032-58e4-a505-b05e4a762f12", "text": "a smart bed room that is technological comfortable and teenage boy brown hair,shortsleeves t shirt grey colour, sleeping on his bed "} +{"id": "7001738", "video_name": "dcc6f77f-ce54-557d-b761-84083b593b8e", "text": "realtor in a green suit and gold tie looks straight ahead and smiles "} +{"id": "7001739", "video_name": "66941a33-77cd-5e9e-a378-f6646dab7e46", "text": "Charlie bowater Animation of a man playing guitar on a mountain "} +{"id": "7001740", "video_name": "354878d7-2676-5168-9313-24f572b991e1", "text": "Person in black robe standing in the middle of a huge orange sand dune, wind blowing his black robe square format "} +{"id": "7001741", "video_name": "c43fcd7e-f237-55e1-a9b4-06e82880b061", "text": "BMW ship floats in a puddle "} +{"id": "7001742", "video_name": "c8a784cc-1970-57fe-a160-44319e03be65", "text": "a blonde long haired woman playing piano in a park near stairway "} +{"id": "7001743", "video_name": "5c1b972b-862c-5868-bc57-199a7d120ef4", "text": "Animated characters navigating jungle, solving riddles, facing storms "} +{"id": "7001744", "video_name": "965ae976-6cec-5479-8258-999cd6c8267f", "text": "fire storm in the middle of the pacific sea "} +{"id": "7001745", "video_name": "2715bd0f-1198-5875-be1f-b8d74bcf2b5b", "text": "beautiful Germany, Wes Anderson style,heavily raining, thunderstorm, well lit, timelapse, hyper realistic, high octane render, high texture, extreme zoom in "} +{"id": "7001746", "video_name": "b5e93753-5984-5013-a2b4-5ac2e8215c5f", "text": "merry christmas and happy new year 2024 agriculture concept "} +{"id": "7001747", "video_name": "59c58533-01b2-5e8e-8f5b-b12dc8343846", "text": "a beautiful blond hair girl is writing a love novel in front of her desk in front of window "} +{"id": "7001748", "video_name": "df5f8a5d-5a86-595d-bfbd-4decdb6252c7", "text": "More math equations, on whiteboard, black text. "} +{"id": "7001749", "video_name": "dd56db12-8fbc-5cc3-9313-e7b82df176eb", "text": "In the heart of Pakistan, a man named Imran Khan embarked on a remarkable journey that would shape the destiny of a nation. "} +{"id": "7001750", "video_name": "1b84acef-ddd8-5e05-b857-6eb9b5b8dc9a", "text": "closeup of bank vault being accessed, high resolution, realistic, 4k "} +{"id": "7001751", "video_name": "3d22ffb4-f013-5d1b-b099-9e41f2aa4b47", "text": "Create an image of 2 women in a blue dress strolling towards her future self at the waterfalls of Bali, surrounded by rainbow sparkels of water drops "} +{"id": "7001752", "video_name": "70fd7a90-f6ac-5ada-aa1f-f152864193d8", "text": "Thick soup of coconut milk shrimp, with steaming food "} +{"id": "7001753", "video_name": "0baed087-143e-54ea-b32b-3842b75ce2c9", "text": "A little boy with an elephant "} +{"id": "7001754", "video_name": "39013c34-449b-5659-b891-3cdfb8e6b515", "text": "group of people partying with lollipops "} +{"id": "7001755", "video_name": "e9ebd53e-5ab2-59f0-bfc1-06a33cac8e46", "text": "As they returned home, the portal closed behind them, leaving the enchanted forest to rest once more. Lily and Emma realized that their friendship was the greatest magic of all, capable of conquering any challenge. The two best friends cherished their extraordinary adventure, knowing that no matter where life led them, their bond would endure forever. "} +{"id": "7001756", "video_name": "22bdbf0d-3e28-5401-8769-4e239226d8e2", "text": "A clock on a mono yellow wall that is ticking backward. "} +{"id": "7001757", "video_name": "999a9faa-ab2e-5d4a-b73e-b3323da2a3b3", "text": "A hovering robotic \u201cteacher\u201d patrols the room, emitting a cold, dark shadow. "} +{"id": "7001758", "video_name": "676c3b21-828c-5bea-a1c1-bdabd133d850", "text": "teenagers playing with virtual reality glasses in an orange and brown room "} +{"id": "7001759", "video_name": "c2869e1a-cd75-5a9c-b3c1-30f4990d1fe4", "text": "Scene 5: The Mysterious Forest\n\nMonkey and elephant enter a mysterious forest filled with enchanted fireflies that guide them through the darkness.\nTogether, they share stories and bond, becoming fast friends. "} +{"id": "7001760", "video_name": "632085dc-eccc-5fa7-afea-e973cc9863c7", "text": "A dancing elephant in a disco ball gown "} +{"id": "7001761", "video_name": "0f46bc6e-ea7c-5b8e-b237-6f1d99f3ea2d", "text": "a hand turning on a cassette player "} +{"id": "7001762", "video_name": "55a2ae24-a57c-5dcc-8a4e-12917bea89c9", "text": "a lego mushroom colony, with rainbows in background "} +{"id": "7001763", "video_name": "20ffc18d-73a0-55dd-abfd-e67eb63b9aed", "text": "a scene with a stoic muscular men in a tunic in a realistic old Greece talking to convince "} +{"id": "7001764", "video_name": "354607cb-4f8b-54b2-9f19-a631bf77c1fe", "text": "Sri Lanka beach Sri Lankan beautiful girl wearing gorgeous bikini walking towards camera hair is moving to the beach wind "} +{"id": "7001765", "video_name": "07ead0d3-3327-5cf8-bb8a-95bfb967f326", "text": "hare and tortoise stand behind the line for race "} +{"id": "7001766", "video_name": "0758b5c5-37ae-531f-bdb1-1b54e11b2e9f", "text": "cartoon male with beard in suit walking in city "} +{"id": "7001767", "video_name": "871cb906-fb39-5b07-bd28-a1838fb03eb5", "text": "venom dress as mariachin playing guitars ina mexican party, cake, conffetis, dance, people "} +{"id": "7001768", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "Create an animated avatar representing a friendly and knowledgeable AI host. The avatar should exude approachability and confidence, wearing modern attire. It should express subtle smiles and nods to engage with viewers. Use a color palette that aligns with the theme of financial security, perhaps incorporating calming blues and greens. The overall demeanor should be warm and inviting, reflecting the simplicity and clarity of the life insurance content "} +{"id": "7001769", "video_name": "e10456d6-2044-5d12-8fc9-52ff4fc97d9e", "text": "jungle, leaves, rustling,not wide , stable, grass moving slow "} +{"id": "7001770", "video_name": "db343b6a-1a00-5214-b41c-2c0ac1f22bd6", "text": "hundreds of monkeys swim in the stormy sea to an island called Opensea "} +{"id": "7001771", "video_name": "39808a1d-adf6-56d5-91ec-d6df027fd42c", "text": "The screen shows a beautiful blue sky with a rainbow across it. The camera switches to a little girl, who is wearing a white dress, a flower on her head, and a bright smile. She is holding a drawing book, which has her dreams on it. She starts singing, the lyrics are \u201cThe beautiful sky welcomes the rainbow, I have many dreams on my small shoulders\u201d. "} +{"id": "7001772", "video_name": "8bcf63ab-f209-5349-833d-22cfab51c7e5", "text": "Roman soldiers from the time of Jesus involved in a pitched battle "} +{"id": "7001773", "video_name": "ef060ab1-9a8e-580c-b266-f22b058aa5b7", "text": "Woman wearing a long bright red dress walking through a long dark hallway at night. 1970s technicolour "} +{"id": "7001774", "video_name": "65eb5b67-4700-5c41-87a2-f1a3f2ceaa7e", "text": "In a mine hole, there was a miner working in it, the light was dim, and there were rails "} +{"id": "7001775", "video_name": "9b970acc-ec3d-5f7b-bb7b-f2b0fbfb6487", "text": "highly realistic magic slowly vibrating circle aura "} +{"id": "7001776", "video_name": "bc3f5725-952e-52ec-92c8-6af9e93e8f98", "text": "hills on two sides of a lake with a Glacial sheet of ice on the lowlands creating a dam on the third side. End of ice age. Photo realistic "} +{"id": "7001777", "video_name": "5eb10c8c-3b23-5c4e-81b8-f19516fbc54d", "text": "video of a girl standing on a valley bridge "} +{"id": "7001778", "video_name": "d395142a-507c-55d5-a9af-a2c57643c3b8", "text": "a heavy metal band performing swiningbhair and thrashing guitars "} +{"id": "7001779", "video_name": "f0386067-b1cb-5ca9-b92b-0a8c78e60cb7", "text": "A couple in a romantic embrace. "} +{"id": "7001780", "video_name": "863583b0-27ab-5543-b2de-e2ebd0ddf0c7", "text": "John Kenn Mortensen animation of a knight riding a horse in a forest "} +{"id": "7001781", "video_name": "4b6fb720-ed2b-5660-9305-a51a1d55a014", "text": "a colourful ancient soldier living in a modern matrix style cyberworld. Show the world divided between good and bad. On one side show peace and the other side war using a giant Exoskeleton that is covered in encrypted matrix style text "} +{"id": "7001782", "video_name": "775c7b56-05d0-5f01-b999-1632e3401f52", "text": "Donald Trump talking with a man "} +{"id": "7001783", "video_name": "aaa034f9-9f5d-5711-9f29-434e96ed6ab5", "text": "The bunny and the squirrel went through the forest and crossed the stream. "} +{"id": "7001784", "video_name": "25d004a6-2f00-59ae-9671-b8fc9136e9c8", "text": "Describe the celestial landscape with heavenly colors, blooming flowers, and a serene atmosphere. "} +{"id": "7001785", "video_name": "0c4e610d-02c6-55b0-9e9c-947b6241cc57", "text": "latin little boy and girl run in grass "} +{"id": "7001786", "video_name": "926ed3d1-19cf-5a97-a2ac-7a860e36752f", "text": "Corporations, skyscrapers, big city, dark sky, storm "} +{"id": "7001787", "video_name": "1a2d2a84-7459-51a4-98ab-dbec511523a0", "text": "an amusement park, night, orange colors, nightmarish atmosphere, hyperrealistic 4K, 16.9 "} +{"id": "7001788", "video_name": "1720ed51-5b3a-5c4e-85c3-802a0636457f", "text": "Two child cute boy and cute girl in aur Village "} +{"id": "7001789", "video_name": "d5b201db-b669-5721-bd87-214a539b64ec", "text": "a man walks in the desert and gets into a car , starts driving at high speed , the metropolis of the future is visible in the distance "} +{"id": "7001790", "video_name": "38740122-33e3-551a-b5bf-84667f0b69d9", "text": "i need cute train were single apple is on the train, showing as if like banner were apple should be visible "} +{"id": "7001791", "video_name": "e99e1b98-001f-5a11-8c31-e22cb21c1286", "text": "generates a video of an alien singing this side of paradise "} +{"id": "7001792", "video_name": "3cae57c7-1188-5c06-a9ab-7e59129041e7", "text": "a female scientist in a lab coat in a laboratory facing the lab bench working, then her profile is visible showing her handling a slide with FFPE tissue on it "} +{"id": "7001793", "video_name": "e96b4ec5-97ec-5369-a708-a13b381f3e04", "text": "the end of the universe, pouring into the infinite abyss, motion 4 "} +{"id": "7001794", "video_name": "5b600cb4-5c65-5ea3-968b-036a55e5ac60", "text": "establishing aerial drone shot of a group of Cyborg robot beyonce with handguns entering a futuristic laboratory "} +{"id": "7001795", "video_name": "67b93d85-6d57-5466-8de0-3a47a3b673c8", "text": "cyberpunk cloth girl sing fx laser front caamera 2K lens flare,white background "} +{"id": "7001796", "video_name": "9a5c21c7-d15c-5448-bc96-906a053103bf", "text": "make a spider man with cow boy hat and dancing on a planet "} +{"id": "7001797", "video_name": "d8151374-4848-5c16-9709-ea8017e85cf3", "text": "The blue diamond was stolen from India by the French traveler "} +{"id": "7001798", "video_name": "b19cc056-a593-5e0b-92b4-8e3afa7c36a8", "text": "indian local train journey romantic couple "} +{"id": "7001799", "video_name": "6b39237f-3aef-5370-b198-151aad501b4f", "text": "The right eye blinks, and the hair has the effect of the wind blowing "} +{"id": "7001800", "video_name": "5cee198f-ec26-590c-819f-e98f76c3567d", "text": "hour glass pointing both and west "} +{"id": "7001801", "video_name": "a8916712-b171-5408-9895-ee8aa6c70ab9", "text": "in 8k, realistic, super fast and with quick movements a bed which is located in a room, a person is bounded in the bed, his eyes are closed and he is calm without moving, above the person his blue soul "} +{"id": "7001802", "video_name": "a30b67e8-c4cc-57ad-83c1-0abc606115b3", "text": "the name destiny in cool art "} +{"id": "7001803", "video_name": "869db5da-8273-5f75-a9b6-c422407b4128", "text": "Dancing sugar characters forming from sugar. "} +{"id": "7001804", "video_name": "5aba2f94-3018-5c00-9fa9-96d9d418c0da", "text": "Many photovoltaic panels installed on the roofs of industrial warehouses, seen flying in low flight very, very fast over them towards the horizon and leaving them behind, in very real images "} +{"id": "7001805", "video_name": "b55f85f6-b91a-589b-a2e7-1153dfd597c0", "text": "get directions from San Diego to New York on the map "} +{"id": "7001806", "video_name": "71febdb8-e249-533d-a7d8-55f9caa61ad7", "text": "joe rogan fighting in the octagon, cinematic, gritty "} +{"id": "7001807", "video_name": "4ad5c7b9-dd48-5314-a38d-ccc500a459be", "text": "Donald Trump running from the cops in front of Capitol Hill, running towards the camera, photorealistic, funny "} +{"id": "7001808", "video_name": "c38994a8-496d-5792-9fab-0324f1c25365", "text": "3D Hyper realistic fantasy style of beautiful pale skinned lady dryad dressed in green robes and tunic with long curly red hair in ringlets falling over her shoulder with emerald green eyes "} +{"id": "7001809", "video_name": "90c0e411-8e13-574b-bbcf-562789a35690", "text": "Darth Vader sitting on the iron throne in Game of Thrones "} +{"id": "7001810", "video_name": "15cb2cee-051b-569e-95b3-bb8e4bcf4620", "text": "create video of toddlers playing with ducklings in jungle pond. "} +{"id": "7001811", "video_name": "c0e2e3ee-132a-5148-bcf8-84da9c9f5650", "text": "man eating hobo made out of chocolate "} +{"id": "7001812", "video_name": "dde975bd-d5a8-543c-af04-66bdc2f96ab5", "text": "a family of 4 people 2 teenage boys and their parents sitting on the couch, watching news about the harsh weather on Mount Everest. Anime style "} +{"id": "7001813", "video_name": "19ebe3d2-d17a-55b2-9bd8-557c54feb24b", "text": "driving a steampunk like submarine in the cosmos of space "} +{"id": "7001814", "video_name": "4450906b-b58d-52fa-a310-0f3e33a6582d", "text": "Aurelia stood out not only for its extraordinary color but also for its enchanting aroma, a sweet scent that seemed to dance in the air. Kit spent hours admiring this extraordinary rose, marveling at its beauty and wondering how it came to be in her garden. "} +{"id": "7001815", "video_name": "289de20d-7483-57fb-88f6-898a81769a71", "text": "a bird is flying in the sky, the sea is under the bird "} +{"id": "7001816", "video_name": "73504440-3d91-5c7a-ad3f-8b9f98ca4677", "text": "a cute puppy is walking on a cloud and blinks his eyes then jumps up "} +{"id": "7001817", "video_name": "e9dbd974-a590-592e-b336-d448f6e6eca9", "text": "colorful liqued sparkling lave slowly moving from center "} +{"id": "7001818", "video_name": "765f015a-f916-5a85-9be7-4b94e4b19971", "text": "girl doing tilak to her brother "} +{"id": "7001819", "video_name": "0055d669-2d02-5b21-a02e-1eec9bf907e3", "text": "A mandala swirling. Textured, colorful mayan patterns "} +{"id": "7001820", "video_name": "9c90a244-a173-5ad5-98b1-c9977ec7e43e", "text": "screaming magician threes at a storm "} +{"id": "7001821", "video_name": "6703f558-e09f-5265-bae4-4d9b9997a8ed", "text": "the futuristic city duration video 0:30 "} +{"id": "7001822", "video_name": "eebe8d74-36d6-5e62-b344-8a91c8b829ca", "text": "John F Kennedy giving speech in front of huge crowd "} +{"id": "7001823", "video_name": "e796f0d2-9493-5694-aba2-080c779ebf2f", "text": "rainy day with clouds running with wisper "} +{"id": "7001824", "video_name": "c85c611f-1d65-51ea-bcee-2cafe3dd6a92", "text": "a to z create animated video for childrens "} +{"id": "7001825", "video_name": "fa8bb91f-ab07-5523-a446-e5b29444b931", "text": "Doctor and patient are having a conversation. "} +{"id": "7001826", "video_name": "835347a4-34a1-55b9-b2a7-d548b8ab8659", "text": "Generate an image depicting the teens encountering mysterious whispers, with ghostly figures subtly emerging from the pumpkins, creating an atmosphere of supernatural suspense "} +{"id": "7001827", "video_name": "2c4d5638-a1b4-5f06-af17-1aeade0ca3e7", "text": "That halwa seller boy also kept making noise, Sufi Sahib did not look at him even once. "} +{"id": "7001828", "video_name": "c2e161e4-cea7-5673-af59-cbdaa6140705", "text": "a village in the middle of forest, people gathering, strong wind "} +{"id": "7001829", "video_name": "6aaa7193-2758-5512-b21e-b14b3b1e0055", "text": "A group of men visibly joyful and enthusiastic, celebrating amidst a display of money, conveying a sense of enjoyment and success. "} +{"id": "7001830", "video_name": "cbe4f798-b202-5c3a-843e-b83a1a896bda", "text": "anime girl angry talking of the boy "} +{"id": "7001831", "video_name": "23a0f3fd-3be7-5039-84dc-595642cfcb37", "text": "a door in the middle of darkness, a woman alone with herself Alfred Stieglitz POHTOGRAPHIE CINEMATIC "} +{"id": "7001832", "video_name": "2e202288-10b5-5d84-aab8-e757daefd9b0", "text": "this little bird is jumping on a tree Message: 1 Attachment "} +{"id": "7001833", "video_name": "c8caacf9-6fc0-53d7-b0b0-76aee01df476", "text": "Visual: Your brand logo and tagline with a confident business owner. Purpose: To reinforce brand identity and end on a high note. "} +{"id": "7001834", "video_name": "051b5116-14b5-5cb7-8d40-aca2d814373c", "text": "army of woods and stones creature "} +{"id": "7001835", "video_name": "7bd7d439-34a4-59fb-807e-f010947a9bad", "text": "Ultra detailed beautiful female android, side portrait, sharp focus, highly detailed vfx portrait, geometric shapes, global illumination, by james jean and moebius and artgerm and liam brazier and victo ngai and tristan eaton. vector art, digital illustration, concept art, dia de los muertos. 8 k, hdr "} +{"id": "7001836", "video_name": "9c86d803-a70c-546b-b98f-90d13aa5861f", "text": "goose wearing the crown of kings, cinematic "} +{"id": "7001837", "video_name": "a2539b18-50f1-55d2-8768-732ab0d89ca8", "text": "Visuals of lush green landscapes and clean energy sources "} +{"id": "7001838", "video_name": "85ad25ae-8c9d-5422-9a98-8a2ee1cf4ec8", "text": "Woman sleeping in room while it rains,cartoon "} +{"id": "7001839", "video_name": "5c0c69d5-05e3-5447-9637-bcd9355af699", "text": "Young african woman with headphones, listen to music, Background San Francisco in Fall, sunshine, ratio 16:9 "} +{"id": "7001840", "video_name": "fa1b4f51-9221-56f8-9b13-fab7141799dd", "text": "Create for me a garden where the wind blows and birds fly anime "} +{"id": "7001841", "video_name": "c65b6f88-3f21-5919-95df-02e13b406d85", "text": "Charles Melton in a tuxedo and brushed hair "} +{"id": "7001842", "video_name": "3ddb9955-ac4e-5457-8e80-e062d18015aa", "text": "old wall, rain, evening, light from a lantern, silhouettes of people with umbrellas, 1920 "} +{"id": "7001843", "video_name": "3ec1fe7d-ad37-5042-8563-6e1560c11b3b", "text": "a cat playing the guitar and next to him a capybara playing the drums "} +{"id": "7001844", "video_name": "2a6e5939-6ff4-5776-9cfe-7ce17d23dd4b", "text": "Animate the attached image and make the text melt into a puddle and pleave the backgroudn plain "} +{"id": "7001845", "video_name": "f87956e6-1363-5bf7-943c-7229aa67ddb6", "text": "Somone eating Money Animation (like Diseny style) "} +{"id": "7001846", "video_name": "c5648053-b5f1-50fa-b3aa-e93ccc20a30f", "text": "horizontal neon blue line with wind and electric effect "} +{"id": "7001847", "video_name": "4bdc1293-557e-5cf7-a615-39577e67e862", "text": "The gel polish beautifully pours onto the floor. "} +{"id": "7001848", "video_name": "5aa80ce6-c834-5f72-9930-9488bfa27fbb", "text": "An abstract digital landscape of neural networks, with glowing lines connecting abstract shapes "} +{"id": "7001849", "video_name": "069e95b8-0bfb-5330-88f6-08c7d4c3467d", "text": "a human fighter in the mist "} +{"id": "7001850", "video_name": "5f6af165-becf-5bb6-acda-09ce423ef5de", "text": "Jaggu asked the Chunnu deer the reason for running so fast. "} +{"id": "7001851", "video_name": "0d5c1641-6e01-5fed-b35c-d0b0c598ea7e", "text": "make the beby dance in the ball pull Message: 1 Attachment "} +{"id": "7001852", "video_name": "e61d832e-680f-57d8-9242-6fdb137abf3b", "text": "One day, she was playing in the forest, when she saw a beautiful butterfly. The butterfly was very colorful and "} +{"id": "7001853", "video_name": "20d2d5fd-7803-5af8-8519-e3e28b83d1a6", "text": "Dagestani fights Conor Magregor without hands "} +{"id": "7001854", "video_name": "57772720-a912-58a1-8605-fb4682b738a5", "text": "A buffalo uses its foot to step on a green frog "} +{"id": "7001855", "video_name": "1cbade45-60f5-5db4-976e-ccedf4ab6223", "text": "little fruit loops raining from clouds on broadway, there are people walking on the street, eye view, night, streetlights "} +{"id": "7001856", "video_name": "98ce7dd1-4765-57d4-bc9b-2e6192167fcf", "text": "The Prime Minister, Shri Narendra Modi has remembered the contributions of Late Dev Anand to Indian cinema on his 100th birth anniversary. The Prime Minister posted on X: \u201cDev Anand Ji is remembered as an evergreen icon. His flair for storytelling and passion for cinema were unmatched. His films not only entertained but also reflected the changing society and aspirations of India. His timeless performances continue to influence generations. Remembering him on his 100th birth anniversary. "} +{"id": "7001857", "video_name": "49fdb9ae-c6c0-548f-bf3a-f2c3ab676f7c", "text": "a Sloth is playing Ukulele in the Old Town of Dresden "} +{"id": "7001858", "video_name": "9853cb24-630f-565f-9dbc-2e1a10afe948", "text": "a cinematic image of a jean girad moebius spaceship "} +{"id": "7001859", "video_name": "9d203266-1e68-5c0b-ab81-b38a50f38329", "text": "Geely Monjaro is moving fast through snow "} +{"id": "7001860", "video_name": "1ac9d2a0-8f43-5d15-a7a3-6e240b133651", "text": "two couple is walk out in the beach "} +{"id": "7001861", "video_name": "09eb2b89-5b27-589f-8006-ab49a78dc072", "text": "children smiling with flowers in their hair. Laughing "} +{"id": "7001862", "video_name": "6ef18421-4bc4-5f23-b0a7-1d954d189796", "text": "generate a video of an italian war general on the phone "} +{"id": "7001863", "video_name": "c28e26af-2bd8-5763-9b34-d10083434663", "text": "a full lightsaber duell between darth revan and kylo ren "} +{"id": "7001864", "video_name": "4757ceb4-eb59-51d0-8328-41bf5e9e4d63", "text": "a seagull flying into the sunset in the fiord of oslo "} +{"id": "7001865", "video_name": "f8eae8de-e851-5fd8-a653-250afc0864bc", "text": "animation of Animation of a very dark room that suddenly turns on a lamp and the room becomes bright. You see a couch and a table and a woman sitting and reading "} +{"id": "7001866", "video_name": "fe198c6b-711f-55bf-aa79-63da2b7f29ce", "text": "sEA OF DATA WHERE CHARTS ARE THE SHIPS SALILING. "} +{"id": "7001867", "video_name": "02a575eb-16de-5d38-ade0-4cd281e95876", "text": "ancient illyrian and ancient celt walking under a bosnian medieval castle "} +{"id": "7001868", "video_name": "bb7bf9c5-8740-58ce-ae72-497087252f27", "text": "scuba diver going through underwater cave into a new underwater blue world "} +{"id": "7001869", "video_name": "8cfa9985-7865-540f-bdd7-ead72b07ef0f", "text": "A room with a bookshelf occupied a prominent spot, framed paintings on the wall, a desk wit a lamp that emanate a soft light in Renaissance or Rococo style "} +{"id": "7001870", "video_name": "e0ea6454-79aa-565d-a2b0-930ada2b0e16", "text": "the artist paints the Mona Lisa "} +{"id": "7001871", "video_name": "17ca956e-828f-52d0-8128-c92099812a95", "text": "The Spring at Vetheuil Claude Monet with more movement. "} +{"id": "7001872", "video_name": "9dc6063c-abf0-5df4-8898-bf5644d96fa1", "text": "Open world, in the desert, a man and a dog are building a house, 3d cartoon style, movie footage, long shot\uff0cThe desert is more yellow, and the houses look like buildings in the Middle East. "} +{"id": "7001873", "video_name": "ac5c67f5-651a-5c56-9b77-e9bf29fae486", "text": "Showcasing the skyline of the entire city, the sun slowly sets, leaving behind a peaceful and beautiful scene. "} +{"id": "7001874", "video_name": "ef759ca2-fa3a-5068-a0a5-75ebec4d6df9", "text": "latina woman with margarita in hand "} +{"id": "7001875", "video_name": "a57f7ef2-a71a-53bc-ab32-225c19fb08a9", "text": "Aliens descending from the sky in Morocco "} +{"id": "7001876", "video_name": "fbece6b6-68bc-530c-92ba-6fc397cec498", "text": "Cinderella revolves around herself Message: 1 Attachment "} +{"id": "7001877", "video_name": "6144b2a4-d4e5-5bf2-bda2-883cccc78aae", "text": "Borisis johnson flying through space really fast movement "} +{"id": "7001878", "video_name": "38948546-691d-58e8-9c18-279348995bac", "text": "a person fireworks in Diwali, night time "} +{"id": "7001879", "video_name": "e3da64ff-6d9e-5daf-a2e9-e1c50b33f8dc", "text": "The creation of the heavens and the earth "} +{"id": "7001880", "video_name": "b63dca3b-bb26-5b3a-9ab7-858b76362d4a", "text": "let the word fly in an let the robot speak "} +{"id": "7001881", "video_name": "3d7458ad-1f1b-5db7-9e6f-d882c7d4f6f1", "text": "a gloomy rainy day, samll street poorly lit, japan oldschool building "} +{"id": "7001882", "video_name": "289565f1-b617-560b-996e-1a39cde025d9", "text": "the goddess of the moon a woman "} +{"id": "7001883", "video_name": "8f0de31e-3dc5-50a5-ac08-04ec118ec8db", "text": "Monkey made out of darkness, bright yellow eyes, smoke, red lighting, scary, criptid "} +{"id": "7001884", "video_name": "e4267d09-5db6-5fe5-b89d-1bea798ae5fc", "text": "an Alien entering the WWE wrestling ring "} +{"id": "7001885", "video_name": "2f5b6288-b276-54f5-ba16-a39ab63bed62", "text": "the wheels on the bus moving "} +{"id": "7001886", "video_name": "da79889e-68af-5918-aa61-56ee27694ed7", "text": "social robot dining with family, disney style, 18 mm in color "} +{"id": "7001887", "video_name": "e4b62b5d-1ae1-590f-9dee-9e34f689d98b", "text": "Donald trump fighting aliens at mcdonalds "} +{"id": "7001888", "video_name": "520cb056-7ef9-59fe-b55f-8c5f4905bbe7", "text": "dark souls style dragon sitting on cliff ledge above burned forest, fantasy, dim lighting, ashes falling from sky, cinematic, rain clouds with lighting flashes, set camera angle, oil painting "} +{"id": "7001889", "video_name": "5cb36452-9035-5236-bf06-2229c43165ba", "text": "pool party at night during a meteor shower "} +{"id": "7001890", "video_name": "2aa4025b-de21-565f-9ffa-aeeaf0fee5ba", "text": "Agartha is said to be a sanctuary of wisdom, peace, and incredible technological advancements "} +{"id": "7001891", "video_name": "4e06982e-765b-5c2e-8810-3b81f8e5ef49", "text": "Sports car racing down a post apacolypic City 4k, hyperealism, Cinematic "} +{"id": "7001892", "video_name": "e9de1b5f-c028-5a62-91c1-c07e21713700", "text": "a turkey breakdancing on a beach, moonlight, cinematic lighting, 4k "} +{"id": "7001893", "video_name": "91b48fc7-a8fb-57b4-959c-51810aa50153", "text": "Mia found a pile of glowing stones beside a sleeping raccoon. It seemed the raccoon had mistaken the stones for shiny treasures! in 3d animation "} +{"id": "7001894", "video_name": "1c003f4f-e3ea-5958-b748-fa030225c5e9", "text": "Joker, explosion background, dark city street, angry eyes, mad smile, riot background,red light, blue light, yellow smoke,city on fire, purple light, full body shot, cinemtic photo, photo realistic, wide angle, best quality, masterpeace, realistic, detailed "} +{"id": "7001895", "video_name": "da9267ec-502f-53ac-9fb3-f18daddd6b08", "text": "Movie :The Nun,scary scene,the Nun scream into the camera front angle camera shoot,ultra detailed,4k ,cinematic "} +{"id": "7001896", "video_name": "0ba48cfc-ff9f-5272-8922-1229950bdc67", "text": "The scene of Zhou Qi playing basketball "} +{"id": "7001897", "video_name": "09801634-f79c-5780-88e0-4c051e861a9d", "text": "realistic, a mountainous place, cloudy, with a lot of rain "} +{"id": "7001898", "video_name": "ac0e998d-b3bf-558c-bee7-8a81a33a7b06", "text": "TUNNEL VISION music video by Melanie Martinez (pink creature, dark atmosphere, hyperrealism, portals movie) "} +{"id": "7001899", "video_name": "d2ed1521-9c68-5d3d-9d6b-f83bc060129b", "text": "birds singing at dawn and the smiles of children in the town. He also expressed gratitude for the lessons learned from difficult times. "} +{"id": "7001900", "video_name": "bc7d269a-c682-5543-b3db-25d8a501cf11", "text": "Green hair color, also add a tattoo near the eye, also zoom out the picture from different angles and make the photo laugh! Message: 1 Attachment "} +{"id": "7001901", "video_name": "b6f42e51-284e-55fe-b781-a7b89d09c694", "text": "Forests are not only beautiful, but they are also very beneficial to humans. Forests can purify the air, regulate the climate, and prevent soil erosion. Forests can also provide humans with food, medicine, and timber resources. "} +{"id": "7001902", "video_name": "27e3b634-bbfa-5b3b-ada7-8f3078cfad8e", "text": "big western saloon outside longshot view with swinging doors, wanted poster on the saloon\u2019s wall "} +{"id": "7001903", "video_name": "9f4bcedd-e817-5c48-a985-1b191289f891", "text": "Yutaka nakamura styled action anime, ninja practicing his fighting, Ming dynasty setting "} +{"id": "7001904", "video_name": "3ad09120-3ee7-5e87-a2a5-3b42f863745c", "text": "a man wearing hoody walking through a park with kids playing around ultra realistic "} +{"id": "7001905", "video_name": "db5a5cb2-23e9-5a09-9eec-be1c7bfad701", "text": "60\u2019s footage of flying saucers, bnw, aesthetic, vintage, grainy, 16 mm film "} +{"id": "7001906", "video_name": "76d35539-0393-5e2f-8841-f36127df0934", "text": "Harry is driving a sports car "} +{"id": "7001907", "video_name": "e9166a4b-e83e-59fe-b516-9dfc2e8f724f", "text": "a snow flak near the boy on the rooftop in winter. Desny style. "} +{"id": "7001908", "video_name": "a1ba1019-b3fe-5806-b501-b05b0b3e7c33", "text": "racoon eating mango on the beach at the sunset "} +{"id": "7001909", "video_name": "133011f9-7a2f-5146-946e-f44363fa1b19", "text": "cat looking at the camera reacting to a video sitting in a gamer chair with a shelf with a golden Youtube badge in the background "} +{"id": "7001910", "video_name": "69068ebe-49ca-55bf-a74c-144a5b783e93", "text": "Russell M Nelson realistic think celestial "} +{"id": "7001911", "video_name": "a10a7beb-3241-5ff4-b1b9-9001cdcc4137", "text": "Shawn Mendes wearing sunglasses playing volleyball with Dwayne Johnson and friends at the beach "} +{"id": "7001912", "video_name": "34ffc9db-0373-5955-a250-e76fa0d2b46c", "text": "The Minnesota Twins winning the World Series "} +{"id": "7001913", "video_name": "e4f5067a-ca09-58a7-b9f3-a5c7e5304e6d", "text": "a moving babe in a rain "} +{"id": "7001914", "video_name": "dca02e70-2525-505f-bdaa-7362fe6a932e", "text": "Drinking tea in a scenic place shows the action of holding tea with one hand at most "} +{"id": "7001915", "video_name": "fcb03ac4-0cb2-57f3-9c18-cc5599e1f193", "text": "Two boys falling of the sky "} +{"id": "7001916", "video_name": "5aa58f2c-9cb1-5c31-8695-dbd13e2b97bb", "text": "A girl smoking a cigarette at a gas station inserts a gas nozzle into the car. "} +{"id": "7001917", "video_name": "7fa0ad15-1378-536c-870d-f8a0e204408a", "text": "crowd surfing at a Pink Floid rock concert before the show "} +{"id": "7001918", "video_name": "fcfbd876-7013-5810-81fd-7af9600b4914", "text": "aliens Spaceship interior and they talk to each other "} +{"id": "7001919", "video_name": "da104b2f-7ddf-54cc-abf8-3d3bc98c16fc", "text": "With his royal scepter in hand, King Julien raves about the decadent tastes of his intricate ice cream sculptures on display at the fair grounds, eliciting awe and envy from onlookers, high detailed, 8k, sharp focus, intricate, whimsical details, delight, envy "} +{"id": "7001920", "video_name": "c635b7db-835d-5731-8a14-fa4478b1ff98", "text": "beautiful young woman is eating a frozen yogurt out of a fuchsia cup "} +{"id": "7001921", "video_name": "d6cafe6e-b36a-50f9-8296-61ff9a3553bc", "text": "cool A7L runinng in the night "} +{"id": "7001922", "video_name": "beb66b26-02bd-548e-85eb-2942d17cc4df", "text": "Turkish advertisement video for mystery box sale "} +{"id": "7001923", "video_name": "a8271797-d7b2-5192-bcf1-66d3f5e00927", "text": "sun rising in farm realistic nature 5 sec "} +{"id": "7001924", "video_name": "86b4af75-ca34-5b1b-8d14-654078aa7f91", "text": "a person with a blue buzzcut wearing a black skirt and white shirt falling out of the sky with glass shattering everywhere "} +{"id": "7001925", "video_name": "a01a73d7-6c9b-5f0d-835f-aa3a6b49d118", "text": "ethinic diverse people arriving in Canada "} +{"id": "7001926", "video_name": "8d11fbe0-b69a-5c99-9e1b-67c4ad712fe8", "text": "POV of runner, Running in the park, morning, cinematic look, realistic details, film photography "} +{"id": "7001927", "video_name": "7018cbac-de4c-5ced-ae1f-acfdb737af01", "text": "an anarchist group watching a bank explose in background "} +{"id": "7001928", "video_name": "ef72b3e4-6c15-598f-b117-bdc70425f5fd", "text": "photo to animation with high thunder "} +{"id": "7001929", "video_name": "43b37451-3ccb-5d29-93b8-6b09c5f193fe", "text": "A Neon glowing world globe with continents on it rotating "} +{"id": "7001930", "video_name": "75acdbb4-a591-5686-a614-226e9bfcd827", "text": "woman with long hair, blue dress opens the door at the end of the hallway and goes out the door into a forest of trees "} +{"id": "7001931", "video_name": "5070a28a-ae8d-5a91-b8d7-9cdbb8918725", "text": "A talking tree that whispered without a sound in 3d 24 fps "} +{"id": "7001932", "video_name": "4e93555e-e44a-53ce-bf43-1160130d37dc", "text": "Jamal Woolard Break dancing in a white suit "} +{"id": "7001933", "video_name": "1ceebf71-8dca-515e-b3fe-816882d43197", "text": "Dust particles drift through the light of the stained glass window "} +{"id": "7001934", "video_name": "f7d3489e-7a97-53a4-83d6-0c948ffea27f", "text": "a blue and orange crew sock hopping across a washer and dryer 3d cgi 16: 9 wide shot "} +{"id": "7001935", "video_name": "02aaeafe-25b9-5cc1-bbac-85ea1704543b", "text": "woman working alone at desk in home office with headphones while someone watches from window "} +{"id": "7001936", "video_name": "d418bfaf-6c95-53a9-b494-200f5fe8ef09", "text": "Lana Del Rey holding a balloon in the shape of the letter k, hyper realistic, in the style of super 8 "} +{"id": "7001937", "video_name": "5b5fd6e8-7ed2-5804-9bee-3e97a43fcdbc", "text": "oil paint london with big ben tower and sherlock homes running with time "} +{"id": "7001938", "video_name": "d2d2b15b-d882-5992-b5e0-5e8362023a2b", "text": ": Embark on an unforgettable journey into the boundless realms of Virtual Reality, where the ordinary transforms into the extraordinary, and the limits of your imagination are your only constraints "} +{"id": "7001939", "video_name": "b8df32bf-bab6-5c74-a1c2-ccabecbb322f", "text": "a big shark catching a tuna "} +{"id": "7001940", "video_name": "c71b003c-bdb6-57c8-b3a1-2466df1ab57c", "text": "A clear image of David Livingstone with a 4k HD. "} +{"id": "7001941", "video_name": "5b234fbb-2915-5dcb-ba4d-5b7e5deea6f9", "text": "futuristic astronaut style cyberpunk in the dark "} +{"id": "7001942", "video_name": "0d346337-64f5-5660-aa1b-e0647e080adf", "text": "a small black and white photograph of old man is held in hand , closeup shot 4k "} +{"id": "7001943", "video_name": "c9a1fb0c-172e-54e7-93d1-573862374116", "text": "a boy and a tiger are flying in the sky "} +{"id": "7001944", "video_name": "a888b48a-ac1d-5fd0-9a5c-afadc1c017b9", "text": "A middle aged Indian Man, with beard and with headset in his ear, looking at himself in the mirror with a shock on his face as he in the mirror looks exactly like him but from a different era which is 19th century. He is dressed as a detective with a long hat in the mirror with a moustache and no beard. "} +{"id": "7001945", "video_name": "69a05395-a4d5-5a44-baa7-e6edd4c694f7", "text": "Visual video : Display the queen ant laying eggs in a chamber "} +{"id": "7001946", "video_name": "a201cb64-ce91-5c6e-b76e-61a587169269", "text": "Batman crying on top of a skyscraper during a storm. Black and white, graphic novel "} +{"id": "7001947", "video_name": "cf69a8b5-03bc-527e-80ea-af8eecba5b9a", "text": "A raccoon coming out of a computer "} +{"id": "7001948", "video_name": "0f9b4e08-f77a-5627-98db-5b539a83cb97", "text": "Tree shadows across the screen Message: 1 Attachment "} +{"id": "7001949", "video_name": "048bd5db-ac14-5700-a402-17c4f0c4acb1", "text": "one day young photo grapher arjun arrived in the haunted miusiam "} +{"id": "7001950", "video_name": "6c726052-f27e-5700-a85f-d39cea884bab", "text": "Beautiful young girl Freelance coaching provides coaching services to freelancers, then takes off her clothes and scatters money around her. "} +{"id": "7001951", "video_name": "76cd7b20-2b15-577c-b219-3a3df2197c1a", "text": "Super Saiyan God black man with long emerald green dreads with metallic purple highlights powerful pose humble look with immense Power looking forward at the camera "} +{"id": "7001952", "video_name": "de919c8c-f397-52ae-b246-a063f7faee4d", "text": "a football coach standing with a football "} +{"id": "7001953", "video_name": "772df27c-a6d5-5f6c-b9e0-4f4ec81918a6", "text": "make a video of president Lula playing volleyball on the beach "} +{"id": "7001954", "video_name": "f41981cd-2946-5004-822e-22acae5558de", "text": "an alien insect zoological wall chart by Paul Pfurtscheller "} +{"id": "7001955", "video_name": "74f2bead-4b89-5b62-9c43-42dcc65b0b3f", "text": "all wild animals like rabbit,deer,wolf,bear,elephant,lion,squirrel etc. talk to the each author in forest "} +{"id": "7001956", "video_name": "9f4512fb-c5ff-550b-91bd-84480c2a8213", "text": "A cozy living room with a grand piano, adorned with twinkling Christmas lights and ornaments, as a man plays a melancholic tune while watching the snow fall outside. "} +{"id": "7001957", "video_name": "dd8f90fa-8298-587f-b2e4-bfb967857996", "text": "scenic aerial shot of the english coastline from the ocean "} +{"id": "7001958", "video_name": "5351c712-3fda-5b13-8061-da338efb83c6", "text": "mother putting son to bed in motorhome "} +{"id": "7001959", "video_name": "0dd6ec8d-0b77-5185-8b94-6b4e08e1dd9b", "text": "a stand with the colors blue orange and white with a white austronaut next to it who is giving flyers at students "} +{"id": "7001960", "video_name": "b345f4f0-8517-5f04-83a9-6e4a2ac80d13", "text": "The video script is for a travel vlog where the narrator, Coco, provides a detailed guide to Phu Quoc Island, highlighting its division into three distinct parts: the South, North, and Central areas, each with its own attractions. "} +{"id": "7001961", "video_name": "cffdd4f3-c468-5390-b6fd-d7f5e41d5074", "text": "meditation in a field of flowers "} +{"id": "7001962", "video_name": "c426e4fc-f0dc-534b-919f-3d283e8af2b2", "text": "An image of the boy stacking the freshly chopped wood into the back of the pickup truck at sunset. Create a classic image like black and white. Create the image with a background and surroundings of deep forest having trees. Create realisitc image "} +{"id": "7001963", "video_name": "a855e8ce-68bd-5ba8-b35f-08a4ee096773", "text": "Sitting homeless man reaching up towards standing rich man reaching down. "} +{"id": "7001964", "video_name": "0e91840c-08ee-5971-a15d-c2a18b44cfd5", "text": "painted in black on white background in rough cave paint handprints Message: 1 Attachment "} +{"id": "7001965", "video_name": "4d5f6fa7-ef08-5197-aaab-ee544555a066", "text": "Introduce Nimmo, the fish with shimmering orange scales "} +{"id": "7001966", "video_name": "589ada4e-9c4a-5b72-b4c0-bbde86e1d0d8", "text": "a flying cheeseburger, flying into space, cinematic, epic, realistic motion "} +{"id": "7001967", "video_name": "00833544-7bd1-535c-b966-b65caee79f06", "text": "1 girl: rendered by pokemon, she is 19 years old, Her name is Cindy Marshall "} +{"id": "7001968", "video_name": "d6118d69-6d5a-5c08-bbdd-ac7779b0be7d", "text": "happy couple, birthday celebration, candles, restaurant, family, celebrate, party, 4k, realistic, hyper realism, high definition, clear faces, symmetrical faces, models, supermodel "} +{"id": "7001969", "video_name": "16187e9f-8cdb-58c4-b08e-3a44a5c4034a", "text": "3D illustration featuring a realistic man of age 45 casually sitting on a blue apple Mac book front of social media logo "} +{"id": "7001970", "video_name": "6dc38fa8-2eff-5871-986c-8e8ea4e73bc9", "text": "a dancing line drawing of a skeleton "} +{"id": "7001971", "video_name": "d447cad4-b762-58b2-9f3f-1159d7af6459", "text": "American writer Edgar Allan Poe dressed as Batman, surrounded by deep darkness at night "} +{"id": "7001972", "video_name": "acd78a35-0ea0-5d1b-8458-5969c8a88f3e", "text": "animate the flying saucers and make the beard flow with the wind "} +{"id": "7001973", "video_name": "140014fb-67bc-574a-99bd-bcb0a6853cd6", "text": "bats fly, lightning and thunder, wolf bark at the moon "} +{"id": "7001974", "video_name": "6b0f7ad9-7ab3-50bc-b7db-d1823761c594", "text": "kitty in a park on grass rainy day "} +{"id": "7001975", "video_name": "0da9dfa4-9e6a-5b6b-8b49-ac9e8ce27b1e", "text": "spectacular movements of jellyfish on a reef under moonlight, many transparent colors, 8k, sharp, vibrant colors, cinematic, cinematic focus "} +{"id": "7001976", "video_name": "f53fa097-3ef0-59fb-afa2-0d36b58120ee", "text": "The extensive relief and rescue operation placed an immense burden on the already strained Ming government budget. This financial strain was exacerbated by escalating military expenditures in Manchuria against the Jurchen rebellion led by Nurhaci, coupled with widespread tax resistance among the affluent upper middle class in the southern regions. "} +{"id": "7001977", "video_name": "3fcd26ae-8532-5116-b478-089f25e91361", "text": "acute beautiful girl in forest Disney style "} +{"id": "7001978", "video_name": "59db06f4-e72a-5940-998b-68f7f1c18f1d", "text": "animation of two characters faces off in vector flat color with the dust white yellow orange background moving the purple character electricity sparkles Message: 1 Attachment "} +{"id": "7001979", "video_name": "8cc8d377-6551-56d9-81ea-f4bc711702d5", "text": "white hummer driving through the desert at high speed in the daytime, the duration of the video clip should be 20 seconds "} +{"id": "7001980", "video_name": "ba0acc89-153a-58ef-8831-c0f333817cbc", "text": "I hope that through this content, you can have a more comprehensive understanding of the Great Wall. "} +{"id": "7001981", "video_name": "bb39c6c5-bb56-5b6a-8ad6-1a2041ab6d47", "text": "green and deep forest with firefly "} +{"id": "7001982", "video_name": "5e739ad7-8c53-58e0-87cb-c1fd901d30bf", "text": "An Arab man dressed traditional warrior and running the center of market, Historical arabian market on a open desert, cinematic shot, photo realistic, wide angle, action mood, cinematic lighting, wide angle, long shot,photo realistic "} +{"id": "7001983", "video_name": "a1d477a2-8aa1-5191-b7da-b5db2c1cc273", "text": "Beautiful woman standing in front of cottage at dusk. In the style of Beauty and the Beast. Cinematic, 8K "} +{"id": "7001984", "video_name": "199c54e7-4df7-5ffb-a3f9-0c8aa1562474", "text": "The city of Kabul, which is the capital of the country, is the largest city in Afghanistan. "} +{"id": "7001985", "video_name": "1bce979c-0186-5528-8019-1b62163c06c4", "text": "a minecraft player break a wood "} +{"id": "7001986", "video_name": "3d8b15d7-934c-5702-909c-db9bd1f7e1c3", "text": "plants tangled and intertwined with each other, super realistic, in the dry earth "} +{"id": "7001987", "video_name": "69976d82-bdac-5464-817a-ed7691a852bb", "text": "a cute border collie is charging for an electric vehicle in the parking lot with Pixar style "} +{"id": "7001988", "video_name": "3d4f47ac-21b7-51cc-a56f-d8e6a2805b64", "text": "a man running through the woods and finding a cow named pranav "} +{"id": "7001989", "video_name": "88fb9b15-ace6-59e9-a9f2-3e7612f9c638", "text": "comic style illustration of a hansome indian man, dressed in a traditional south Indian attire, lifting a folded iron chair, in white and blue color, highly detailed, intense, chilling "} +{"id": "7001990", "video_name": "7964f781-43d6-50ee-8213-d612cfa523b9", "text": "boy 14 years old transform into a ghost in a ghost form he had snow white hair and glowing green eyes,wears black isolation suit with D logo on center "} +{"id": "7001991", "video_name": "2b282b05-de69-5aad-abae-34bd30e37a8e", "text": "an attractive guy drinking a shot of vodka, movie scene, sharp focus "} +{"id": "7001992", "video_name": "ce76e7b0-57c9-52ce-b171-05705b0a1ea6", "text": "a student walking sadly on footpath zoom in. "} +{"id": "7001993", "video_name": "c7dcfa51-a60e-517d-963b-2fa14dd2e887", "text": "orange kitty play snow ball fight in sunny snow Christmas playground "} +{"id": "7001994", "video_name": "e8cad9c9-7f44-58a4-b0d2-c695fce559d4", "text": "kids playing around in the wood "} +{"id": "7001995", "video_name": "7fa95ae4-78dd-543c-b66f-a17fe5e0e718", "text": "follow a girll in the forest "} +{"id": "7001996", "video_name": "2d502ad8-cc83-5fc9-ad38-d845ef296a3c", "text": "Explain the details of King Minos constructing the Labyrinth to conceal the Minotaur. "} +{"id": "7001997", "video_name": "80022299-630f-5481-9ec4-ff07237ce484", "text": "Photo of old tv that looks a bit like an old transistor radio "} +{"id": "7001998", "video_name": "ba93a4f1-9254-51cd-a5f3-db4e22a4a71e", "text": "Morgan Freeman as a Jedi, sharing a moment of mentorship with the character of Leonardo DiCaprio. "} +{"id": "7001999", "video_name": "7f5ea58a-3022-51ba-9e06-74eacba95f92", "text": "character continuously walking down the street about to run "} +{"id": "5001061", "video_name": "05794b02-bd8e-552a-9541-aa191b551d7f", "text": "a man driving in a car through the streets of havanna "} +{"id": "0006042", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "Amitabh Bachchan addressing a crowd as he resigns his presidency, camera dollies around him. 10K, 85mm lens, slight dutch tilt. "} +{"id": "3006679", "video_name": "49a0ffec-a573-5dff-8fa0-4f4ce320449c", "text": "handshake anime girls in bathing suits "} +{"id": "6004322", "video_name": "1438e33a-ed0e-5ead-8b53-3c2fd5e797bd", "text": "security camera footage of donald trump stealing "} +{"id": "2007658", "video_name": "e5b63885-07cc-527b-ab96-22d8341c46c5", "text": "silver mouth movement from woman with silver lips and silver skin and electronics, skin made of white acrylic smooth texture, beautifull star was combined with the witcher "} +{"id": "1004560", "video_name": "54a46270-dbf9-5b5d-a82c-3858dc3228f7", "text": "beautiful redwood forest, sunny day, epic picture Message: ecobee (Font: MODERN) "} +{"id": "2006750", "video_name": "e5712713-b37d-5476-8efa-351b951d85da", "text": "ancient roman army, marching, holding spears or swords, some riding horses "} +{"id": "0006869", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "Shot of a galaxy forming in space, smooth animation, 4k, no distortion "} +{"id": "1004565", "video_name": "54d02758-a17f-5511-97b3-9e1454847132", "text": "hole opens up in the sky "} +{"id": "3003946", "video_name": "619a3dcd-7b66-5dac-a727-3ea25709e543", "text": "a leaf falls from the sky to the ground in slow motion "} +{"id": "1003680", "video_name": "43da626d-877d-57b4-8db3-d6b9252ac0dd", "text": "Two cartoon characters, one is Mongolian costume, the other is Han costume, landing "} +{"id": "3004632", "video_name": "8541ee73-8578-5300-8e74-0a6d7b156311", "text": "A cyborg floating in space, looking towards planet Earth, and then a cable arrives connecting to its head, another to its chest, and another to its stomach, but it always looks at the planet Earth with enthusiasm. "} +{"id": "0003133", "video_name": "37bdf81c-d938-57d1-8379-c8b2cf0ab63e", "text": "real Dokumentation about Centrel Park New York,snuff Movie,cinematik Look "} +{"id": "7003993", "video_name": "2f588c61-fcac-5462-969a-6e113a11f0c7", "text": "Creation job queued. manages a flying saucer that sits on top of a company, it can see a good part of the city, this flying saucer has many LEDs "} +{"id": "6003464", "video_name": "3c1db858-6d09-5599-84b8-d4a030f7b3e5", "text": "A massive and intricate robot strides amidst the chaotic constructions, while the sky remains shrouded in dense fog, with minimal illumination. "} +{"id": "3003287", "video_name": "52b22ce3-1534-5a45-8c03-8de6ac6f3ed0", "text": "breathtaking captivating view of the inside of a volcano "} +{"id": "1005085", "video_name": "5dca95c9-8fe3-561f-a8d0-d778df20bef5", "text": "lucky pizza that came to life and began dancing "} +{"id": "8001554", "video_name": "70ff0094-2053-565f-bc56-a8045943b64e", "text": "You can give me a sketch of a set tishert, jacket and black pants and safety shoes for work in a workshop "} +{"id": "4004235", "video_name": "eb2a4feb-c710-53d1-a73a-d787274f3d99", "text": "human infantry fighting huge cthulu creatures as an astreroid approaches "} +{"id": "7004650", "video_name": "fbb0b3b9-1da3-5509-92e2-95270f0dc3dd", "text": "image of a blonde girl in the sun by 9:35 am "} +{"id": "4003147", "video_name": "009fa0a2-00f5-5bea-a366-ea4832348c4e", "text": "a cat on a red kawasaki motorcycle. zooming out to see the entire motorcycle. moving motorcycle. "} +{"id": "0005267", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "hotel manager talking to employee, hotel background setting, realistic "} +{"id": "0004065", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "ancient vikings using sun stone in a tumultous ocean with mountain like waves while strong rains are falling. "} +{"id": "7004454", "video_name": "8b4d479b-e9f7-5208-a579-b55295c1de4f", "text": "Black sabbath dio galaxy mermaid space castle in bubble in a fantasy painting circa 1977, Hajime sorayama, alphonse mucha, mucha, michael hussar, frazetta, boris vallejo, backlight surrounded by smoke fantasy art 16:9 "} +{"id": "4003280", "video_name": "411258c9-ab56-5994-9f15-5d4ba7fbe014", "text": "electric poles in distance, a deserted hilltop, multiple cables in sky, black and white "} +{"id": "0003948", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "A girl is electrocuted in a torture chamber "} +{"id": "3005891", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "Rabbit twisting vines, slippery rocks, and thorny bushes. Despite his agility, he struggled to navigate the challenges, occasionally tripping and stumbling "} +{"id": "6003988", "video_name": "4fe0c9e3-ea2a-5749-ae13-25d6aa5577c8", "text": "a woman that is sitting down with her hand on her chin, a picture, tumblr, hurufiyya, brown hair and large eyes, around 20 yo, profile picture, indoor picture "} +{"id": "0003461", "video_name": "3df3c39a-a544-5ef6-bcdd-7819e4525506", "text": "Catholic mass. Priest walking down isle. Super realistic. 1980. Restored footage. "} +{"id": "3006189", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "coral bareers, ultra realistic, 8K, 60 fps "} +{"id": "6003386", "video_name": "1ac9d081-3ad4-59bc-9739-03df55650d3f", "text": "Can of Coca Cola comes off with beautiful splashes "} +{"id": "1006019", "video_name": "6e8f6dd6-63e2-5dc7-890a-314ac85dfe1f", "text": "a giant spaceship landing on an island with disco music playing "} +{"id": "8002648", "video_name": "2e2498ad-1c36-53f2-b45d-45e24dbb8780", "text": "child and mother going to the theater "} +{"id": "8002514", "video_name": "08471dbb-599d-523d-b844-fcb16fed8027", "text": "a sushi roll grow spiders legs and star crolling on the floor "} +{"id": "2007359", "video_name": "81aa2ff1-f8b1-5093-908d-dc6900fffe04", "text": "rainy field, high resolution, cloudy, dark "} +{"id": "3003452", "video_name": "daf00ae3-2f56-55dd-9a7e-5daf8aab5358", "text": "a black and white photograph of a lake and a gazebo, a detailed matte painting by Taravat Jalali Farahani, cg society, qajar art, 1920s, matte painting, calotype "} +{"id": "6003797", "video_name": "5c79acec-8faf-509e-b91f-96397a6969b1", "text": "Capetown city, hyper realistic, high octane render, high detail, Monochromatic color, Alfred Hitchcock style annd Wes Anderson style shot, day to night transition hyper "} +{"id": "3004643", "video_name": "34d76ee6-b430-5035-8ad9-bea3adff25de", "text": "cat sitting on the window. tail slight movement "} +{"id": "6003036", "video_name": "5e706ba6-8844-5db1-afde-f9144e1630e9", "text": "scene: cyberpunk city, sportscar transforming into a spaceship and launching into space. 4k cinematic music video. "} +{"id": "2003158", "video_name": "806eec5a-1507-52bf-8ab5-476a9ea5afe8", "text": "is the existence of underwater structures "} +{"id": "0006552", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "surrealism art man swimming under smoke "} +{"id": "2007778", "video_name": "7528c237-06a1-570a-bf49-3a2e313b3909", "text": "a scary jumpscare of an old man "} +{"id": "1006891", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "Old King with Hammer, backgound is a castle color blue, rainbow at right top corner, river on bottom left "} +{"id": "0003669", "video_name": "416a6353-61fa-52f4-82bf-09b742ca07bf", "text": "attractive young man speeds through Monument Valley on a motorcycle without helmet "} +{"id": "8001596", "video_name": "4dccc1c5-d51f-51de-9c40-0655ecaf34ed", "text": "Show the fox sitting down, looking defeated "} +{"id": "1005592", "video_name": "66de2f5d-470d-56eb-9495-1c2c3523d7e8", "text": "sunshine shining to the house through a window "} +{"id": "0006470", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "a grou of people on a safari game drive "} +{"id": "2004699", "video_name": "12c8d81f-a515-57b6-98bd-4a96443e1f8b", "text": "a futuristic office in an overgrown garden, photo realistic, 4k "} +{"id": "1003396", "video_name": "3e9e6b55-a4e4-520a-9a4b-1ee4bb668de7", "text": "nebula space travel soft blue and neutral colors "} +{"id": "3003324", "video_name": "6e9063eb-b79f-5a5a-8620-f2734c7f3796", "text": "a man walking behind a women as a stranger but when she turns around he got invisible "} +{"id": "1006866", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "Man looking up at the sky "} +{"id": "6003749", "video_name": "ed001d70-b0b1-5f57-923a-380f6d2a9e8a", "text": "green liquid mixed with blood cells, macro, under a microscope, blood, circulation "} +{"id": "3006941", "video_name": "2ebfc886-1af3-57f4-838c-a742ddb32613", "text": "8 year old girl saw that her mother giving money, clothes, toys, toffees and biscuits to the servant. "} +{"id": "3004461", "video_name": "6b98a8f4-13f0-59f1-8677-56697b97dcac", "text": "Spiritual egypt eye transforms in to an energy "} +{"id": "0004738", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "A schoolgirl in a school uniform is walking through the school and saw a cell phone on the ground, she picked it up and turned it "} +{"id": "4004012", "video_name": "b6c9ebbd-5472-53f4-a08c-83e507433ab8", "text": "digital twins working with robots making pink Versace leather dresses in a fully automated futuristic manufacturing environment and wire guided robots moving clothing rack up and down the isles "} +{"id": "4003642", "video_name": "9ae8d90a-f94d-5520-96e6-9f773e5db4c9", "text": "blood flowed out of the press, rising as high as the horses\u2019 bridles "} +{"id": "0006732", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "a cuban boy in havana malecon "} +{"id": "2003094", "video_name": "71953213-f909-5db7-8239-ef08740e672e", "text": "shaky phone camera footage running through the woods "} +{"id": "4003173", "video_name": "5ea4e294-4582-535c-9665-d05b751578c8", "text": "Astronaut in rocket flying to the moon "} +{"id": "0005325", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "energetic engineer solving computer problems in the midnight, high quality high resolution "} +{"id": "6004376", "video_name": "0845962e-3a20-5dbd-8000-3a41ab1eb68d", "text": "a caramel skin woman with long cornrow braids with brown tips sleeping in a black and yellow Versace robe with the window open on a grey bed "} +{"id": "1004531", "video_name": "54377ee4-c853-5287-b257-5da52588a4d9", "text": "model in a dreamy setting, with soft lighting and flowing fabrics, capturing a sense of ethereal beauty and grace. "} +{"id": "4003195", "video_name": "031fd928-5e07-57be-b41b-1958babcb632", "text": "a hyperrealistic video about the does and donts of what to do when you are stopped by the police and are driving under the influence of drugs or alcohol. Thisis the trasncript for the video. "} +{"id": "6004869", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "perspective view from street level of tall futuristic building. Ambient is dark, night. Rainy day. 16:9 ratio. cyber punk type of scene. "} +{"id": "0006939", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "Hydration: Drink plenty of water, as it helps rinse away food particles and prevents staining. "} +{"id": "1005170", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "make arm movements with natural and neutral movements "} +{"id": "2005392", "video_name": "26d4cf6b-c321-5211-8394-356995d2bc25", "text": "table cloth fractal, lsd at the dinner table "} +{"id": "0005157", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "a close up of a bullet zooming through the air, MATRIX, REALISTIC, ACTION, MOVIE "} +{"id": "4003643", "video_name": "489a16e9-7886-54e9-a889-99b14173c01e", "text": "A suspenseful moment as a villager opens an old, creaking door, revealing a dusty room with cobwebs and a flickering lantern on an antique table. "} +{"id": "6002761", "video_name": "440e799c-9403-53b1-83ae-193397586984", "text": "Jenny, a recently graduated medical student, "} +{"id": "2006695", "video_name": "39528f47-50dc-5abe-bf19-bcd274496bac", "text": "An image of mysterious, tired man with a flag on the stone, surrounded by ocean "} +{"id": "2003663", "video_name": "df9a57a3-0b64-5054-af60-320c5372920a", "text": "pixar style, peaceful forest, cartoon, night, moon, stars, light, flying fireflies, trees are blown slowly by wind "} +{"id": "0006370", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "black men in purple and gold "} +{"id": "1005348", "video_name": "6256a0f8-0503-5d4b-bd86-1f9612dafd02", "text": "space is moving fast towards me "} +{"id": "3006811", "video_name": "a6dfd31a-7f21-556b-ad18-06338bd97986", "text": "On the right, two sets of mutually perpendicular colorful parallel lines appear, which turn and disappear, replaced by flickering dots of light. "} +{"id": "0006433", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "Farming game simulation\twith farming theme\tcolorful\twith chicken "} +{"id": "7004412", "video_name": "a6302a9d-eaf0-53b1-a4f1-7ac138a2df73", "text": "4k hdr of a futuristic space ship flying through outer space "} +{"id": "6003467", "video_name": "b74cca4f-41a6-5fc1-87df-900349fa3dbd", "text": "1950\u2019s footage style of humans walking in the year 2023 "} +{"id": "0006297", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "a bread delivery person delivers two dozen hero buns to a deli in downtown madison georgia, at a place called madison produce "} +{"id": "0004351", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "add movement to smoke in backgrounf "} +{"id": "8003804", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "But danger lion lurked, an imminent threat, "} +{"id": "0006294", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "takes us back to the final moments of his life, "} +{"id": "2003681", "video_name": "76edaf2e-5bdc-56d6-b10d-831c909f13c1", "text": "egle landing on a rock slowly in the evening light "} +{"id": "2004500", "video_name": "db1bb027-03b1-547b-b43c-48ec109d8b6f", "text": "the square sun descends into the river "} +{"id": "6003593", "video_name": "6d24426c-2964-5a9a-ad40-2a9b6fb505ca", "text": "a man walking towars a rotating giant bobbin "} +{"id": "1004367", "video_name": "50a8ea60-bfe8-5de8-978f-8ecaf564d8d2", "text": "Danny de Vito shakes hands with Putin "} +{"id": "0006862", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "first eye catching scene between hero and heroine at a acfe "} +{"id": "2007799", "video_name": "c4a71acc-f16f-5d51-9233-49b95017cbe8", "text": "blinking,hair floating in the wing,head tilting "} +{"id": "6003646", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "A Little Monkey Eating Peaches in the Forest "} +{"id": "3003762", "video_name": "f5993d68-8b51-5b67-8292-ba9c1b9a5512", "text": "Ram and Shyam shake hands, showing their friendship on the first day of school. "} +{"id": "7002906", "video_name": "e2ab6b2d-32f5-52ee-9dfe-72e510bff69c", "text": "A man wearing glasses and a black hat stops with his hands in his pockets on a train Message: 1 Attachment "} +{"id": "2006826", "video_name": "5a5437f1-e501-59a0-80ce-b27cdbab9ab0", "text": "a zebra walks through a field, pixar style "} +{"id": "4002571", "video_name": "4eaee66b-5af2-5cd2-825c-ee717955e66a", "text": "Central theme visually represented: the vibrant village, unique colors and companionship of Sunny, a vibrant yellow canary, and Skyler, a graceful blue jay, their journey, and the lessons of friendship, all conveying the message of the importance of unwavering bonds and the beauty of shared adventures "} +{"id": "8003108", "video_name": "d1b41be9-cb1f-5db0-902e-efcd81b369f6", "text": "Girl dancing. Si Fi movie. empty street. Down town in front of the stairs. blue tinted. Raining "} +{"id": "4002491", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "a beautiful night in Madrid Message: Jhon (Font: MODERN) "} +{"id": "5001549", "video_name": "54cce539-d7bf-571c-bb5a-a885c5383cc9", "text": "Graduation hat and balloons and concierge flowers Message: 2018 (Font: MODERN) "} +{"id": "6002980", "video_name": "b0ba2913-c65c-5c26-b5b9-077f8e77faad", "text": "Open with a panoramic view of a bustling futuristic city, towering skyscrapers, and flying vehicles. The sun sets, casting a warm glow on the cityscapeb "} +{"id": "8003069", "video_name": "de62404a-6c76-50a7-b67f-a8d182b0411f", "text": "Depict the moment girl stumbles upon the tiny kitten, their eyes locked in a captivating gaze. Convey the immediate connection and the secrecy of their newfound bond,in studio GHibli style "} +{"id": "6004893", "video_name": "ba0527e7-04b9-5529-9eeb-62e0d110246f", "text": "Describe an evocative image featuring a dark and mysterious background, with an eye at its center, reflecting a sense of worry and anxiety. The eye is partially obscured by dense shadows, symbolizing the weight of condemnation. However, amidst the darkness, a penetrating ray of light cuts through the shadows, illuminating part of the face around the eye. This ray of light represents the possibility of overcoming condemnation and finding the path to redemption. The image conveys a powerful message about facing the spirit of condemnation and discovering hope "} +{"id": "2005130", "video_name": "c74e38cc-e551-5eaa-a473-29bed455a258", "text": "someone do something, somewhere. something going on somewhere "} +{"id": "0006232", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "A police car follows a hover sports car down the canyon freeway. Scifi. Cyberpunk. "} +{"id": "8002369", "video_name": "a9ba7c42-9f0a-5af8-95d6-763f43bb228c", "text": "A mathematics teacher giving a lecture. The teacher is male and teaches the lesson in a classroom. "} +{"id": "8001972", "video_name": "3bb35673-77be-5a80-8004-d3270b715615", "text": "Parashurama traveled across the land, challenging and defeating numerous kings and warriors. He became a legendary figure known for his relentless pursuit of justice. He fought countless battles, wielding his mighty axe and displaying extraordinary valor. His exploits in battle became the stuff of legends, inspiring generations to come. "} +{"id": "7004209", "video_name": "f4293c1e-5e41-5d19-bdab-28b0ef410d01", "text": "ali thinking about there plans\nHe dreaming the goals of hos life. "} +{"id": "1004662", "video_name": "56b1dc62-3b1a-5c8a-820b-36410c78b99f", "text": "a large proud bullfrog enjoys the peace and quiet in a vast overgrown forest "} +{"id": "3005528", "video_name": "bb5f7ca0-4bf5-5ef5-851e-d0d8d4466ba4", "text": "The child walks in between them, holding the hands of both parents, their face beaming with joy. Their hair is tousled by the sea breeze, and their eyes sparkle with curiosity and delight. Engaging in the joyful pursuit of collecting seashells, they occasionally bend down to pick up beautiful treasures, accompanied by shared laughter. "} +{"id": "8001779", "video_name": "77f1a2f1-6de2-5268-9319-07276af5eb27", "text": "a mamouth ridding a bicycle on the sea "} +{"id": "3003073", "video_name": "637063d0-49f4-5763-ae1f-b4848df0bbda", "text": "Zooming Close Up of a old chart worn of a from a beautiful latin woman dressed of white "} +{"id": "3006461", "video_name": "28eeda12-e7b4-52aa-b12d-e5a26d876f3b", "text": "orange sphere shape character, complex, robotic eyes, antenna, look like ballon with feet and arms, multiple pose sheet, short feet sticking out, tv screen face, outline, white background, no shadows, turnaround, realistic, photoreal, surrealist, 3D, hightech, spacejunk, running "} +{"id": "7002742", "video_name": "11316c0f-c224-54bd-b850-d0505f9fb9d6", "text": "anime, futuristic helicopters flying overhead, cinematic, motion 4 "} +{"id": "4002656", "video_name": "23a52821-4b4a-5f0b-8fd1-403c1a98a1f4", "text": "high resolution grass land sunset Message: 1 Attachment "} +{"id": "0004178", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "wide deep space, floating in space a camera with sereval blinking eyes "} +{"id": "4002033", "video_name": "67de0411-2f46-59c3-bfd4-feb514a4f255", "text": "Aerial photography, racetrack, through the perspective of a racing drone,cinematic "} +{"id": "7004424", "video_name": "599cc922-26e8-5355-92ca-aa7699fe07de", "text": "hyper realistic santa with 2024 new year message "} +{"id": "7003855", "video_name": "4420cb92-0d91-53fb-9220-86575df99144", "text": "water flowing and fish swimming in lake "} +{"id": "2006850", "video_name": "f5d2d86f-67fb-54a8-a3fa-316903ae20ce", "text": "teenage Chinese girl wearing bikini dancing traditional Chinese festival "} +{"id": "3003668", "video_name": "b22333ca-ef15-5c6d-b3d5-903892917aa9", "text": "Soak in the stunning scenery, where the grass is a soft pink and the river is a serene blue. The mountains loom in the distance, their purple peaks rising into the sky. In this ethereal environment, a powerful female warrior rides her fearsome creature, always alert to her surroundings. "} +{"id": "6004626", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "fern leaves on a black background "} +{"id": "3005548", "video_name": "cc471b62-e377-59b9-8111-b5420f2c0990", "text": "Channeling Personal Power\nAbove the navel lies the Solar Plexus Chakra, "} +{"id": "3005069", "video_name": "a98594d0-9ca9-5930-9856-1881134c6ff9", "text": "Minotaur caught in brambles Beksinski Alfred Stieglitz grainy black and white 1900s "} +{"id": "8001702", "video_name": "4e0a4d6b-159d-5c05-9faf-a492fe1ff199", "text": "then impress them by telling them all. "} +{"id": "1003985", "video_name": "499f24df-1ddc-5759-9db1-3206e52f9005", "text": "a man is riding bike in full speed "} +{"id": "2007129", "video_name": "074a5f67-5299-5d94-a99a-deea4d0fca1c", "text": "Introduce the mysterious village and the strange noises heard at night. "} +{"id": "2007143", "video_name": "7ff8bd11-a961-5dba-b161-af00d92ebe60", "text": "metal made cowboy made of shiny bricks reflecting on his being in the desert, depth of field, 16:9, Hasselblad "} +{"id": "3004867", "video_name": "3717dd6a-581c-5802-88b9-376bf84011cb", "text": "Space game geometry dash Message: VodaBAF (Font: MODERN) "} +{"id": "0003279", "video_name": "3ab570b1-3c9d-5724-834b-c6ee976bdd43", "text": "The older sister is having fun playing with her younger sister in the park. "} +{"id": "1004346", "video_name": "502a4612-bc74-5d84-b850-a2d2513d55a7", "text": "mystical shiny lake filled with Vomiting Rock People Alejandro Jodorowsky vivid colors "} +{"id": "7003033", "video_name": "0e7207dc-2cf1-5c65-821d-6b885865c94a", "text": "big mota plant swaying in the wind "} +{"id": "0003592", "video_name": "401a65bb-f376-52cc-a247-09e945edf92b", "text": "black background with thin wavy lines and gentle sparkling "} +{"id": "0005666", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "Video of a fortune teller divining using a quartz crystal "} +{"id": "7004076", "video_name": "0abef248-2378-54f6-9936-a191aa357706", "text": "A little cat fell to the ground,Illustration style "} +{"id": "2006875", "video_name": "fb231cfe-ea5a-5eb0-9b9b-ce06fa38fc49", "text": "ancient Israel, a few people leave the city, "} +{"id": "2005531", "video_name": "312d1aa6-cb27-5aff-ba6b-207cb887d428", "text": "happy childs Message: Teknofest (Font: MODERN) "} +{"id": "5001578", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "hyper realistic young woman with blonde hair, smiling at the camera for a profile picture "} +{"id": "4002358", "video_name": "abfc64a2-d22e-5865-8e25-f4a5506c5dad", "text": "a realistic levitating pickle, cinematic style, detail shot, macro lens "} +{"id": "2007284", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "In an ancient Greek temple, a venerable scene stretches out in which several people stand in a devout posture. The majestic dome above them stretches like a divine firmament, allowing the light of the gods to stream into the sacred space. At the edges of the painting, elegant columns line the temple, while in the center two important figures rise up on a staircase. These central figures, draped in dignified robes, embody the wisdom and spiritual guidance of this ancient society, while the temple itself is a place of deep reverence and enlightenment, high quality, realistic "} +{"id": "6004799", "video_name": "01888fb2-4530-5bb7-9a59-3bf7a270fbe8", "text": "16:9, sheep an a farm, studio ghibli style "} +{"id": "6003500", "video_name": "fd622210-92db-566d-b422-49e8a5c186bf", "text": "night mode,and lighting bubble Message: 1 Attachment "} +{"id": "3004603", "video_name": "f16c4761-2b4b-5c4b-99b8-6ec669e5bf4e", "text": "Dumplings symbolize reunion, and I hope the whole family will be safe and sound in the new year. "} +{"id": "8002997", "video_name": "04eb1dda-89b5-5548-bb74-d1811b5d4017", "text": "joe biden walks through a vaporwave city, neon, rain, "} +{"id": "2007420", "video_name": "9c9a35f9-27f9-5248-996c-6a93272f51c8", "text": "banana man driving, a lot of traffic, giant eye in the sky, psychedelic art, black and white, VHS, Super 8 "} +{"id": "6003884", "video_name": "479bba6c-b25e-5e67-8762-299d12454d1d", "text": "dark rainy night in the city of Rome with the cobblestone roads reflect the scene, a dark hooded figure runs away from the viewer towards a bar with a neon sign "} +{"id": "0006787", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "young woman lying on a towel legs visible, on the beach near the sea, wearing very light clothes, realistic body, wearing sunglasses and a cap, smiling happily, hands behind her back, blue eyes, small freckles, photorealistic, very detailed "} +{"id": "2007995", "video_name": "b91b4f00-ee5c-5aca-8a72-8932e0193b83", "text": "a guy tranforming in a zebra "} +{"id": "6003998", "video_name": "1a8a5218-9dba-5d8b-aa04-93dc54d4d1f0", "text": "timid lanternfish named Lucy, trembling, explained that she was afraid of the dark and the unseen dangers that lurked in the deep ocean "} +{"id": "7004707", "video_name": "182375e1-a882-5d2b-a12b-3cb896ff787b", "text": "a beautiful girl looking at her reflection in the mirror "} +{"id": "0006197", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "tesla model is moving fast in a futuristic crystal city "} +{"id": "0006549", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "slow panning camera across chess board squares, some battle worn and damaged, as the camera pans outwards there is a battle between white and black chess pieces, they move like real warriors in combat, 2 minute long cinematic at least "} +{"id": "6003658", "video_name": "057d2b81-6e08-5c7a-bff6-d2b53214f214", "text": "people dancing in a night club, 4k relistic "} +{"id": "4003074", "video_name": "179e2ef6-a75e-523d-8871-172b8401e055", "text": "The man was identifying the dead "} +{"id": "4002233", "video_name": "75631806-19d2-5a14-9ca8-c7e90c361bfe", "text": "A beautiful girl selling wallets in a market "} +{"id": "7002755", "video_name": "a094f9c3-d4ac-54f0-8fc2-22b04c8e4279", "text": "high speed cat chasing mouse, pov camera traveling with action, sharp focus "} +{"id": "2003290", "video_name": "a1676389-a151-5fa5-a727-1c5411a6b4c9", "text": "A boy sitting in a snowy park on a bench with colorful shapes on top of the snow "} +{"id": "7003886", "video_name": "1f60403d-fc8a-5d29-9782-7f28a717705d", "text": "make an einstein video explainig, walking from one side of the room to the other, 15 second video "} +{"id": "6002099", "video_name": "59981010-6c6e-53f4-8b8c-3f9244e5de24", "text": "an air filter sitting on a table "} +{"id": "0004880", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "Monochrome video, Loneliness and fear in outer space , fear, "} +{"id": "3004973", "video_name": "34fb8769-78a8-5298-861e-82d699430b31", "text": "clouds drifting away in a pastel sunset sky, Studio Ghibli style "} +{"id": "4003802", "video_name": "dedb8544-2de5-55e0-91e4-0dd56781cd72", "text": "At a river bank at sunset with a bridge, group of people chatting. "} +{"id": "2005299", "video_name": "707d42d0-6590-5b93-a155-2eba7ddb21f8", "text": "Feature scenes of a beautiful landscape of mountains y bosques from Mexico, sylte pixar, disney, 3d, hd "} +{"id": "1004960", "video_name": "5ba363ce-715d-56d3-90b0-ffe3a68590b4", "text": "santa claus talks with the children, and they move slow "} +{"id": "3004655", "video_name": "effd6435-badf-58e7-a8a2-f7e0ae9238af", "text": "an old woman, sitting on the bench, at the corner of the road, people avoiding the old woman, long video, highly realistic, cinematic "} +{"id": "2004161", "video_name": "24de2e18-7334-5467-8e95-80583c6826dd", "text": "a arabic man dancing In night "} +{"id": "0004711", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "The mission no russian from modern warfare 2 "} +{"id": "8001602", "video_name": "a08bef5d-674d-5e58-b9e6-ab359182e786", "text": "Fast and huge explosion of the Sun "} +{"id": "2007193", "video_name": "09013aad-8f09-569e-9526-132c171a231f", "text": "Silver 2004 Ford Focus Sedan speeds off of a cliff in the desert "} +{"id": "2007639", "video_name": "57da3213-0085-5b60-b60c-cca1cef42d86", "text": "a small white dog walking through the Video Game Call of Duty. Soldiers are all around "} +{"id": "4003166", "video_name": "fcf383ab-a6bc-5244-938f-2b5d455e016c", "text": "a London uk roadman anime trailer "} +{"id": "1003327", "video_name": "3d44cbe6-3755-5277-91f3-bd4474e9343a", "text": "beutyfull latin girl on The beach with palms and Purple sky 4K 16:9 "} +{"id": "4004937", "video_name": "abc61292-4823-54a5-b2fa-d6e8d2ea7cf7", "text": "Swami Raman watched his progress with pride. "} +{"id": "7003298", "video_name": "4195f9e4-47a1-57d3-959a-3860605ddb83", "text": "woman smiling. camera flash. at night. 4k. hd "} +{"id": "7002396", "video_name": "2339d1c3-9f9b-5676-9782-dc6cd20fed22", "text": "walk along a deserted beach like in the old days "} +{"id": "8002371", "video_name": "5cf22af8-b03f-5411-befd-d8e3d6bf212d", "text": "a spaceship from outer space enters the atmosphere of an alien planet below. The air around the spaceship is glowing because of friction. epic, cinematic photography, scifi, ultra detailed, wide angle, sharp focus, cinematic lighting, artstation, 8k, simplified colors "} +{"id": "7002738", "video_name": "a54bc066-53b7-50cb-94d4-dce0e0cde2a9", "text": "generate video moving flowers and flying butterflies "} +{"id": "0005741", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "hunters putting down their weapons and leaving the jungle, capturing the moment of change and resolution. "} +{"id": "3005458", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "Lord Krishna, with sixteen arts, was born in Dwaparayuga. "} +{"id": "1003792", "video_name": "45f86d0d-e8ee-5fef-b603-7002ae700096", "text": "a human, born from a machine that manufactures it, high quality, realism "} +{"id": "1005893", "video_name": "6c66dc5a-4de6-53d1-830d-f47f106fc94b", "text": "an astronaut with a beautiful sunset behind "} +{"id": "3005080", "video_name": "2672e8c1-9e50-5db6-b716-29ba7481abc4", "text": "old homeless group of people around the fire, realistic video, camera zooms on the fire, they are cold "} +{"id": "2006804", "video_name": "8c110921-702b-5a7f-81ee-bbc4dba96db8", "text": "brown rabbit sitting and eating carrot in the carrot. ar 16:9 "} +{"id": "8002865", "video_name": "9b035a9d-2ff2-5006-b61a-6d702ac66a92", "text": "Middle Eastern girl, 9 years old, falls down the stairs and faints, 1910 passes. "} +{"id": "8001687", "video_name": "82a6455d-bdb0-548e-a737-4814862807fc", "text": "a steamy cup of coffee in a cozy old school diner "} +{"id": "1005836", "video_name": "6b4d0687-4a6d-57a7-b583-67fae189747c", "text": "a giant skeleton horse and a fiery creature holding its rope "} +{"id": "1004299", "video_name": "4f7ec213-e03d-56e0-bdc7-45878b9c0949", "text": "One gloomy evening, a daring group of friends decided to explore the mysterious mansion for a thrill to capture on their YouTube channel "} +{"id": "0005964", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "bts jungkook is a history teacher in their late 20s, with a keen interest in local legends and maritime history. "} +{"id": "0004607", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "Pictures of training for young police officers "} +{"id": "4003658", "video_name": "4fd66065-d772-552b-8c52-50bb219a0457", "text": "a person travelling around the world happy "} +{"id": "0006893", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "Hoodboy (HB) walking down a sidewalk, wearing a hoodie and a cap, with a melancholic expression. "} +{"id": "1005244", "video_name": "60781f3f-3855-59ee-9480-5b3f7a0480f0", "text": "an abstract animation for a creative studio inspired in an ancient mosaic in black and white "} +{"id": "6002457", "video_name": "d16047a7-c34f-5e7f-a7a7-91fd8b7a51e0", "text": "Meanwhile, Whiskers, who had been taking his time, ambled past the exhausted horses with ease. "} +{"id": "7004617", "video_name": "482fced7-0402-5945-8439-8b2961562d9b", "text": "a woman is at a salon doing her hair "} +{"id": "7002144", "video_name": "bd27aac3-1f33-5756-a3e8-d788a4b4c904", "text": "Jesus on the mountain looking at many people with his hand raised "} +{"id": "8001793", "video_name": "9e5a0d86-8dd5-5963-b405-03f4bd13860a", "text": "lots autumn leaves falling to the ground. A blurry complementary background "} +{"id": "7003020", "video_name": "905cf4e4-d118-52ac-9f62-6e4d643b1178", "text": "a man approached a young boy at the ocean "} +{"id": "3005866", "video_name": "8a1e7cdd-b7e7-5f82-835a-63cb3b9cb669", "text": "Enter the home of the penguin "} +{"id": "1004398", "video_name": "514fee55-4260-5e1c-b4d9-7ff020283677", "text": "ooze falling out of man\u2019s mouth, close up, cinematic, sharp teeth "} +{"id": "0003281", "video_name": "3ac889e9-93c9-5e00-9788-d4eec3f90554", "text": "a chrome ant robot covered in graphitti fights out of a volcano walking in molten lava "} +{"id": "8002283", "video_name": "c0026227-400a-54b7-9048-8906c1792363", "text": "Although challenging, evoke the sensation of saltiness lingering in the air as it mingles with the other sensory experiences of the ocean. "} +{"id": "1005925", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "university professor giving classes to her students "} +{"id": "2003737", "video_name": "ff58ff03-b1ff-5420-9b83-af5623c4fc08", "text": "A golden retriever with a hat saying anxhela is studying for university "} +{"id": "7003239", "video_name": "6eaf1ef2-1a2b-56fe-a4f1-ff4481df490e", "text": "love is in the air, Santa singing "} +{"id": "4003938", "video_name": "48e02971-ed28-5bc4-abe4-d6ff48289388", "text": "Superman As Evil God armor moving image 8k "} +{"id": "7003761", "video_name": "b3b3baa4-e26e-558e-9533-b27a9fce2f3d", "text": "psychedelic fly fishing man painting cinematic 8k hdr, high detailed, soft cinematic light, 9:16 "} +{"id": "2007545", "video_name": "4c89cd5f-bd85-5c76-8210-d87df559f6c9", "text": "asteroid made of gold floating in space "} +{"id": "1004764", "video_name": "582307a3-5933-5e19-afdb-d9ec28ed6b0a", "text": "three humanoid robots are sitting at a space bar talking, the bar is moody and retro theme "} +{"id": "6004513", "video_name": "a388adf7-d648-54d9-9241-d00793aa6e30", "text": "lamborghini sian half in blue and the other half in purple parking outside a modern masion with a fountain "} +{"id": "3006708", "video_name": "429555c4-b203-531d-8df9-32dd6012111d", "text": "Jake and Olivia sit on the couch, surrounded by Christmas decorations. The room is filled with a warm glow from the twinkling lights. "} +{"id": "7003120", "video_name": "8feef778-3e11-59ea-808a-65eacd229b63", "text": "mrs piggy with utters mounted by hermit the frog "} +{"id": "3003556", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "heavy rain falls on a terrace in P:aris "} +{"id": "4002384", "video_name": "2f8941a1-d966-5bce-ada2-c348039e9b72", "text": "The animals sharing food, playing games, and laughing together. "} +{"id": "3004009", "video_name": "e324466f-e75c-5046-84f3-5f03d806091c", "text": "man brushing teeth, cinematic ultra zoom lens, extreme closeup shot. "} +{"id": "2006988", "video_name": "efc8ffcd-81d2-5ba1-9d54-773e7c70405f", "text": "In the center of the picture rises an ancient muscular Greek statue of an ancient warrior, dominating the picture with its impressive size "} +{"id": "2004763", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "a girl doing zen mediation beside a window, the sun shone on a burning natural incense on the table "} +{"id": "1004077", "video_name": "4b90fc3e-1add-5cef-b079-ba0799beb43b", "text": "so she has been trying to get her parents to move, for the last several years. "} +{"id": "8002978", "video_name": "325a33e4-3a0a-5c0e-a0c5-4ddba663bf7e", "text": "scientist putting tiny fishes in a tank with a shark "} +{"id": "8002876", "video_name": "8eee5a0d-2957-58ff-be31-a15279912e8c", "text": "Create a village in a fantasy world, with plain and green vegetation, forest, sunny with wind, have villagers "} +{"id": "0003469", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "These colossal mummies, unearthed in the 1920s, were often associated with lavish burial practices, "} +{"id": "7004711", "video_name": "fdc15d0f-e68f-5b0c-aba2-36f8239bdd22", "text": "singularity Message: ai world (Font: MODERN) "} +{"id": "3004935", "video_name": "4a253af1-d357-54a9-a097-27a02d948af8", "text": "realistic woman dressing up in her room, jeans and jacket, mysterious atmosphere "} +{"id": "4004790", "video_name": "9e8fd236-46a9-5156-814c-5181da4efed1", "text": "Hill filled with flowers of various colours Message: BACK (Font: MODERN) "} +{"id": "4003817", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "Girl and boy in love looking at each other in a big park, snow mountains behind big trees all around "} +{"id": "0003976", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "Once upon a time, there lived a young girl named Karen "} +{"id": "2004016", "video_name": "1d3308f9-c309-5f44-b640-1db3077fe4ff", "text": "Toucan: The toucan, with its vibrant beak, started a jungle orchestra by tapping its beak on different tree branches, creating a unique musical composition. "} +{"id": "3004899", "video_name": "d28b0465-05c6-5c03-9489-b1cca5b78b21", "text": "ancient warriors training for an upcoming battle against the gods "} +{"id": "6004647", "video_name": "4ffe3c68-6246-5b6d-86bb-d1ee56944b60", "text": "couple against a backdrop of a breathtaking sunset, with warm hues enveloping them, symbolizing the beginning of their new life together. "} +{"id": "2007863", "video_name": "557b49ea-98c3-51f1-955f-ec75f96c8006", "text": "A horse in a crowded city center "} +{"id": "0004979", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "wolf are walking in the forst "} +{"id": "8001528", "video_name": "df7c0cca-e134-5f11-94b5-ccb6b280a70a", "text": "a video of me counting 1 to 10 "} +{"id": "0006361", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "meteor shower over jakarta buildings and monas monument "} +{"id": "6003335", "video_name": "909c6321-1d2c-5c57-bbf9-698357a6855b", "text": "purple lol doll with gold outfit and driving car "} +{"id": "2007044", "video_name": "df2cff99-c64b-5a07-8a3e-3927df7593f9", "text": "golden rolls royce phantom driving in a russian village "} +{"id": "3004105", "video_name": "dd633944-e8cf-53bf-885a-0be5e4098d0a", "text": "a million abandoned trumpets scattered all over the desert floor while nuclear bombs obscure the horizon post apocalyptic "} +{"id": "0005947", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "Max transformed ordinary materials into magical sculptures capturing joy. "} +{"id": "6002380", "video_name": "be76392c-baea-5760-9bf9-ec2a6cce1998", "text": "A writer with his back turned creating a poem. From his head come out multicolored ideas and beautiful verses.hiperrealista, photo, cinematic "} +{"id": "6002218", "video_name": "7e477bbf-edb4-50fc-9675-bcd5c900f37d", "text": "An old black and white photo of a family in 1450 at night "} +{"id": "2007594", "video_name": "d59da577-f61a-5c23-b289-67a8c46359bd", "text": "a young athlete man rising up the champion trophy "} +{"id": "8002646", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "cinematic, 3d animation, porcupine hugs balloon and the balloon pops. "} +{"id": "4004227", "video_name": "06a253ec-87ad-5bae-b918-f580cf068c0c", "text": "Disney style princess with human face in a pink dress in a magical forest "} +{"id": "3003197", "video_name": "e3fe214d-fb14-5f77-830c-74bcfd33eeb0", "text": "picture that has never been created before "} +{"id": "8003354", "video_name": "f7e27639-33f7-5949-b8ba-4574bc09e2a3", "text": "a train moving in a railway track with big trees in a forest "} +{"id": "1004496", "video_name": "5356e483-82f4-5554-9bc1-744ed0035646", "text": "cars in the city Message: Usedcarsni (Font: MODERN) "} +{"id": "6002323", "video_name": "5944749d-47fd-599f-8b60-e282e9ac78fb", "text": "wide shot, black and white movie, silent movie, gothic aesthetic, film effect, around the ruins of gothic cathedrals "} +{"id": "5001515", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "University student desperate for not realizing his dreams "} +{"id": "3006490", "video_name": "ef0bc65a-e737-5e17-8dfd-3ac7d8f5e74a", "text": "a man with a TV on his head sings and dances "} +{"id": "1003801", "video_name": "463866c3-f96e-5410-a671-381070a2c3f4", "text": "furniture floating static in the air, table chair and lamp, levitating "} +{"id": "1003141", "video_name": "39ea4c0e-5d13-5cea-adea-159f7f36ffc4", "text": "Madonna is drinking coca cola 16:9 realistic "} +{"id": "6002411", "video_name": "ee7f25b0-df8d-52fb-9042-f30191af8361", "text": "Vestal sisters dressed in their traditional attire, tending to the Eternal Flame. "} +{"id": "0006823", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "In a secluded corner of Bikini Bottom, on a dark and quiet night, SpongeBob SquarePants suddenly felt that something was amiss. The sound of light footsteps and the movement of shadows made him suspicious. It turns out, Plankton had decided to change his tactics by sending a group of ninjas to steal the Krabby Patty secret formula. "} +{"id": "2004892", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "underwater, huge shark behind a blue glowing small fish "} +{"id": "2004445", "video_name": "adc0bc46-a414-534d-a6a7-ee11077564dc", "text": "4k animation style, cinematic, short story a professor found abandon ufo in the forest "} +{"id": "2006301", "video_name": "a29b0ff6-0d8f-5dd9-8015-95f6c5d91fcb", "text": "A cute cloud in the style of a 3d animated movie "} +{"id": "3006508", "video_name": "01e56879-0e86-5313-9563-9856579c4a8c", "text": "a beautiful girl korean is showed "} +{"id": "2005567", "video_name": "397e234a-a4a9-51ca-b28d-5b9a0914592f", "text": "Leila and Ali praying in the mosque, along with other worshipers. The imam leads the prayer in the front. The mosque has traditional Islamic decoration on the walls and rugs on the floor. "} +{"id": "3004907", "video_name": "dbf22a4f-2c57-54a3-a970-811f7100cc0a", "text": "The fight reaches its climax when they are both on the edge of the abyss, struggling to hold their ground while avoiding the surrounding lava. "} +{"id": "4002225", "video_name": "b96bf3ba-c488-5246-b4b3-f035720af7aa", "text": "in stunning 4k resolution, 60 fps, a vegeteble growing "} +{"id": "8001310", "video_name": "0079a232-d735-5066-87ff-99fde3aff8c7", "text": "birds sitting on window started flying full hd "} +{"id": "6002630", "video_name": "5aaec9c9-00b7-50df-a916-effd74fccb63", "text": "A beagle sitting in front of a christmas tree "} +{"id": "4002916", "video_name": "e3818173-9134-5e45-853d-1b0cc2aa23fd", "text": "disney style cartoon village with moving head detailed, "} +{"id": "0004599", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "there was a boy who live with her friends in jungles to need work to "} +{"id": "2007976", "video_name": "ba014d45-5fea-565a-b070-71966415a8f3", "text": "Pamukkale is a natural wonder located in southwestern Turkey. "} +{"id": "8002587", "video_name": "0dc7dfe7-cb90-5b27-ab4e-b0cb077a060b", "text": "river with a sunset in the backround hyperrealistich "} +{"id": "3003082", "video_name": "2bc80240-59b4-5697-99ff-43f92d4e89c9", "text": "hi boys Message: sword man (Font: MODERN) "} +{"id": "8003080", "video_name": "5e0f6c75-33f2-5530-8902-b0d8718ee37f", "text": "pan of street scene in Bangalore, India, people walking down the street, Hindu temple in the background, a cow is lying on the pavement, comic city, graphic illustration, comic art, graphic novel art, vibrant, highly detailed "} +{"id": "3004904", "video_name": "2d3711c3-93a5-507a-a189-c193314b4556", "text": "mamluks riding horses, cinematic shots, cinematic lighting, massive scale "} +{"id": "5001872", "video_name": "fc802e33-c058-55ed-9389-27f665c3816b", "text": "Mario jumps on the camel, anime "} +{"id": "2003037", "video_name": "7fdeb587-168a-5ea2-95ab-3c29d72cdf22", "text": "A mysterious figure sits in front of a glowing laptop screen, He looks towards the camera, which he talks to. The city outside the window is alive with lights, a perfect backdrop for his secretive work. "} +{"id": "3003819", "video_name": "4c69d88f-de37-59ec-bac3-a198178ff276", "text": "Show the process of skin cell regeneration and collagen hyperplasia.The colour of the cell is white. "} +{"id": "2004945", "video_name": "bcb2a010-c1a6-5221-9444-7ca2b2082d88", "text": "Darth Vader performing lazer tattoo removal surgery "} +{"id": "6004453", "video_name": "1019c8b5-9132-5ad3-97ba-3d730eb328e0", "text": "james bond chasing car with super car "} +{"id": "8003884", "video_name": "2551e65d-0585-50b1-a103-159c80395912", "text": "a man sitting in office and exploring ai. then someone brings him a coffee. he drinks and enjoys. after lokks to the window "} +{"id": "0006005", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "a cocker spaniel running in the park in England, disney, unreal engine "} +{"id": "6003485", "video_name": "4c09e0e2-7a4b-533d-a195-c1ebf584d66a", "text": "man sitting on a porch smoking a glass pipe, it causes him to enter his own mind and is now falling through a psychedelic dreamscape "} +{"id": "4002609", "video_name": "efb3b6fe-cc4f-592d-805b-696bee7a42e3", "text": "prompt: girl was slowly dancing with a smile. "} +{"id": "3005884", "video_name": "274cd3d0-f207-535d-9099-154f58477453", "text": "one school boy on road smoking "} +{"id": "0005513", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "Quiet moments in a whimsical town, in the style of Studio Ghibli slice of life, warm and vibrant colors, cozy interiors, slow camera pans "} +{"id": "2006570", "video_name": "fcd16bf9-7415-5cf8-975d-849d45fd8f2a", "text": "car moves slowly pass an old amusement park "} +{"id": "0003780", "video_name": "433bdbc0-d59b-56e2-ac86-45b6079ee6b9", "text": "ice heart, black and white, 1940, silent movie "} +{"id": "8002075", "video_name": "ea90a26e-e424-51e2-8353-a989b8d00596", "text": "Fabric wrapped in the moon aesthetically "} +{"id": "3004245", "video_name": "2006fe66-9aea-57c2-bb4b-706129bb0fd3", "text": "Generate an image of the mermaid sitting on the marble terrace, concealed in the clear moonlight, , Photorealistic, Hyper detailed, cinematic,16:9,Ultra 8K,Hyper detailed,\u201d "} +{"id": "1006496", "video_name": "76f1a9c9-afdb-5dc4-b7cf-d78fbc335a6e", "text": "front to back meditating brown and blue no white thick cloak, the father of bravery and light, karl urban as a determined, shaved head and a beard jedi knight with a human face, banpresto, hanna barbera, looks different, depicted as a 3 d render, dark blue mist, green glow, fog and mist gentle breeze "} +{"id": "7003656", "video_name": "9d8ee12a-64df-5284-9645-28688fd38d37", "text": "dua lipa arrived at Mumbai airport. public went crazy. "} +{"id": "0004110", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "Man holding lottery ticket with surprised expression on his face "} +{"id": "5001903", "video_name": "e3f2587f-5eb3-5607-bff9-8968c1a1f3ab", "text": "glowing flower in a 3D render luxuriant forest, rapid dolly motion, motion blur, low shutter speed "} +{"id": "2005693", "video_name": "e741f787-82bd-566b-9fd1-cc9571538234", "text": "90s vhs footage of , civil war 1887 "} +{"id": "0006979", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "an old man writing a blank book in the forest "} +{"id": "2007904", "video_name": "9c9dd23b-e52d-51d7-a556-bfd73e3f7578", "text": "a parrot flying over the cage "} +{"id": "5001647", "video_name": "1e3e2fdd-5144-5e6b-bdf7-913e46e99b55", "text": ". Princess Lily, with gratitude in her heart, held the Heartstone high "} +{"id": "1006873", "video_name": "7d847ed3-aacd-5f05-a21c-7a6d134fc353", "text": "rick and morty as body builders "} +{"id": "2004948", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "Man wearing 56 number green jersey,fire in all stadium,nights scene, "} +{"id": "2007833", "video_name": "a996cf5a-211e-5317-8d9b-973271fb80ed", "text": "image of an astronaut moving to stand up from a seat "} +{"id": "6002624", "video_name": "0a63bf0b-e438-52e6-aed2-f152d44d9923", "text": "In a dark environment, a man is kneeling on the ground in prayer. "} +{"id": "2004809", "video_name": "37d5a087-e352-5fe0-9677-e849e31d0639", "text": "a young man with leather jacket riding on a motor bike cinematic film image "} +{"id": "8003347", "video_name": "d365e08e-850a-50bf-bd7d-c4afb608a4db", "text": "A zooming out colored cinematic video with 8k HD of Berlin conference of 1884 where Africa was divided by Europeans. "} +{"id": "7004040", "video_name": "e94e35d3-5817-5540-9d30-0ac0e0ba4e7e", "text": "a cat eating bread in the style of pixar animation "} +{"id": "2003334", "video_name": "eacef6a1-0020-5e29-898f-9785ef6b15bf", "text": "the gladiator movie as it was the barbie movie "} +{"id": "7003192", "video_name": "7494713a-f53f-59f4-aad0-e005c59614d5", "text": "Robot horse running on city streets "} +{"id": "3004188", "video_name": "12769240-15dd-5503-9191-ab2977b92edf", "text": "A girl wearing blue Hanfu walks in the rain with an umbrella "} +{"id": "1004705", "video_name": "5763492d-62e3-5e97-a01d-9fa5967b8bcf", "text": "A cute little dog, running in the yard "} +{"id": "8002345", "video_name": "b2a74346-3950-5229-87cc-f6f318a86c2e", "text": "the Clarabelle a cow is drowning a muddy pond in the forest "} +{"id": "6004794", "video_name": "47fe9949-8dae-5741-b897-915bc7d68408", "text": "Female ghost, sadness, floating in the air, fog, sad emotions "} diff --git a/webpage/text_files/text_zh_display.jsonl b/webpage/text_files/text_zh_display.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..47bff084660ecc71679722150e838d479063ca75 --- /dev/null +++ b/webpage/text_files/text_zh_display.jsonl @@ -0,0 +1,11300 @@ +{"id": "0000000", "video_name": "00033a92-83eb-5fda-94a5-3a5cdf53eb7a", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u6f0f\u96e8\u7684\u5929\u7a7a\u4ece\u7ffc\u4e0a\u770b\u4e0d\u5230\u81ea\u5df1\u7684\u8138\uff0c\u5439\u54cd\u4e86\u53f7\u89d2\u3002"} +{"id": "0000001", "video_name": "0004206e-065c-50db-8351-8bb1c235f0e2", "text": "\u4e00\u7247\u7eff\u8349\u8335\u8335\u7684\u9662\u5b50\uff0c\u53ef\u4ee5\u770b\u5230\u5e73\u9759\u7684\u6d77\u6d6a\u3002"} +{"id": "0000002", "video_name": "00061267-7a29-5ba0-96a1-18b6b83852eb", "text": "\u4e00\u4e2a\u514b\u9686\u4f53\u5728\u5de8\u5927\u7684\u7403\u4e0a\u8d70\u7740\u5706\u5708\u3002"} +{"id": "0000003", "video_name": "000c9183-f83c-50b7-9bea-7188d4e95caf", "text": "\u6076\u9b54\u73a9 ouija \u677f\uff0c\u7535\u5f71\u6050\u6016\u9884\u544a\u7247\u98ce\u683c\u3002"} +{"id": "0000004", "video_name": "0010bacc-b8f4-5605-975f-016d939f0066", "text": "\u4e00\u53ea\u8682\u8681\u3001\u4e00\u53ea\u6bdb\u6bdb\u866b\u4ee5\u53ca\u5176\u4ed6\u6606\u866b\u5728\u540c\u4e00\u753b\u9762\u4e2d\u3002"} +{"id": "0000005", "video_name": "00154155-84e1-575a-ae9a-9174687a86c2", "text": "\u8fd9\u66fe\u7ecf\u662f\u4e00\u4e2a\u4eba\u4eec\u6b22\u7b11\u3001\u5b69\u5b50\u4eec\u5feb\u4e50\u73a9\u800d\u7684\u5730\u65b9\u3002"} +{"id": "0000006", "video_name": "001613c9-4632-520b-b8cc-6baef618036a", "text": "\u4e00\u4e2a12\u5c81\u7684\u7537\u5b69\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u6572\u7740\u4fdd\u9669\u516c\u53f8\u7684\u95e8\u3002"} +{"id": "0000007", "video_name": "00172bf9-f56f-50aa-a8b2-84adf05d691e", "text": "\u7a7f\u77401970\u5e74\u4ee3\u670d\u88c5\u7684\u5973\u5b69\u7ad9\u5728\u4e00\u680b\u7740\u706b\u7684\u5efa\u7b51\u524d\u3002"} +{"id": "0000008", "video_name": "0017dfe0-aff8-5a59-ac28-3c5138f623d9", "text": "\u9ad8\u6e05\u3001\u7535\u5f71\u8d28\u611f\u3001\u8def\u3001\u732b\u3001\u66b4\u98ce\u96e8\u3002"} +{"id": "0000009", "video_name": "001b4282-4641-5105-9bbc-36a80fad149e", "text": "\u57283D\u52a8\u753b\u4e2d\uff0c\u4e24\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u5c0f\u7537\u5b69\u56e0\u67d0\u4e8b\u4e89\u5435\u3002"} +{"id": "0000010", "video_name": "001e3344-3480-521e-b321-708a28c90a0c", "text": "\u4e00\u53ea\u732b\u5728\u5730\u677f\u4e0a\u8d70\u8def\u3002"} +{"id": "0000011", "video_name": "0020a809-e8f5-5899-a9e6-aacb7090d551", "text": "\u4e00\u9897\u5c0f\u884c\u661f\u649e\u51fb\u5730\u7403\uff0c\u5730\u7403\u90e8\u5206\u53d7\u5230\u5f71\u54cd\u3002"} +{"id": "0000012", "video_name": "002b3a32-cc97-5b03-b3eb-3a72713ed0b0", "text": "\u4f60\u53ef\u4ee5\u8ba9\u706b\u8f66\u66f4\u771f\u5b9e\uff0c\u4ee5\u8fbe\u5230\u66f4\u597d\u7684\u6e05\u6670\u5ea6\u5417\uff1f"} +{"id": "0000013", "video_name": "002ef7ca-a4de-54df-8088-40f9ded5aa7d", "text": "\u795e\u5947\u5973\u4fa0\u5750\u5728\u4e00\u5f20\u4e61\u6751\u6728\u684c\u4e0a\u5403\u7740\u4e00\u5757\u62ab\u8428\u3002"} +{"id": "0000014", "video_name": "00368022-f5fa-50d5-a01a-4174dd1e2f97", "text": "\u4e00\u4e2a\u60ca\u53f9\u7684\u8001\u4eba\uff0c\u5468\u56f4\u662f\u7fe0\u7eff\u7684\u5927\u5730\u548c\u6811\u6728\u3002"} +{"id": "0000015", "video_name": "0038dc81-1d35-5701-a47b-d74773fa3f8b", "text": "\u4e00\u4e2a\u6234\u7740\u58a8\u955c\u5fae\u7b11\u8df3\u821e\u7684\u5a74\u513f\uff0c\u4eff\u4f5b\u81ea\u5df1\u5f88\u51fa\u540d\uff0c\u5728\u5546\u573a\u91cc\u548c\u4ed6\u7684\u5988\u5988\u8d70\u6765"} +{"id": "0000016", "video_name": "003d858c-f20d-583c-be84-66af3bd11b8a", "text": "1984\u5e74\u7684\u89c6\u9891\uff0c\u624b\u73a9\u77f3\u5934\u526a\u5200\u5e03\u3002"} +{"id": "0000017", "video_name": "00436c8c-d9f3-5d89-ae20-786d38742f92", "text": "\u6234\u773c\u955c\u7684\u7537\u5b69\u5728\u5496\u5561\u9986\u9732\u53f0\u4e0a\u665a\u4e0a\u559d\u7740\u661f\u51b0\u4e50\u3002"} +{"id": "0000018", "video_name": "0047bf71-c031-51dd-a5db-f9e0fd051bcd", "text": "\u672a\u6765\u7684\u90ca\u533a\uff0c\u6444\u50cf\u673a\u5411\u4e0a\u62cd\u6444\u98de\u884c\u6c7d\u8f66\u3002"} +{"id": "0000019", "video_name": "0053f290-f9b5-5547-9626-13734718fc0f", "text": "\u7537\u5b69\u548c\u5916\u661f\u4eba\u98de\u884c\u5728\u94f6\u6cb3\u7cfb\u7684\u4e2d\u592e\u3002"} +{"id": "0000020", "video_name": "005de5be-274f-5204-b287-898a5abf0e0e", "text": "\u4e24\u4e2a\u4e09\u5c81\u7684\u7537\u5b69 Zhenya \u548c Sasha\uff0c\u7a7f\u7740\u5c3f\u5e03\u5750\u7740\u3002"} +{"id": "0000021", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u62f7\u95ee\u5ba4\u91cc\u89e6\u7535\u8eab\u4ea1\u3002"} +{"id": "0000022", "video_name": "006aaeaf-21e6-56f7-9418-fe58e551a9d8", "text": "\u4e00\u5f20\u53ef\u7231\u5973\u5b69\u7684\u8fd1\u8ddd\u79bb\u7167\u7247\uff0c\u901a\u8fc7\u6b4c\u5531\u5448\u73b0\u51fa3D\u56fe\u50cf\u3002"} +{"id": "0000023", "video_name": "0071abcd-42b9-50b2-8544-a056406c1834", "text": "\u6d77\u9f9f\u8482\u7c73\u53d1\u73b0\u4e86\u4e00\u6761\u9c7c\u88ab\u56f0\u5728\u4e00\u5f20\u65e7\u6e14\u7f51\u91cc\uff0c\u9c7c\u6b63\u5728\u52aa\u529b\u9003\u8131\u3002"} +{"id": "0000024", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "\u4e00\u53ea\u624b\u5728\u5408\u6210\u5668\u4e0a\u6f14\u594fC\u5927\u8c03\u548c\u5f26\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "0000025", "video_name": "0073056a-5077-5a50-8dca-48e45d3388fc", "text": "\u4e00\u540d\u5973\u5b69\u5728\u5e73\u9759\u7684\u591c\u665a\u75af\u72c2\u5730\u548c\u4e00\u4e2a\u5e05\u54e5\u5954\u8dd1\u3002"} +{"id": "0000026", "video_name": "0082c052-53ad-5dbc-8942-1429aa2f616a", "text": "\u9f99\u5377\u98ce\u5c06\u5927\u8c61\u548c\u5176\u4ed6\u52a8\u7269\u629b\u5411\u7a7a\u4e2d\uff0c\u731b\u70c8\u7684\u66b4\u98ce\u96e8\uff0c\u7eb5\u6a2a\u6bd4\uff1a9:16\u3002"} +{"id": "0000027", "video_name": "00868764-1b7f-5e47-94ad-a2f849b5835d", "text": "\u4e00\u5f20\u63cf\u7ed8\u4e00\u4e2a\u65e5\u672c\u52c7\u58eb\u7684\u56fe\u7247\uff0c\u4ed6\u80cc\u8d1f\u7740\u4e00\u628a\u4f20\u8bf4\u4e2d\u7684\u5251\uff0c\u5934\u53d1\u5448\u6697\u7eff\u8272\uff0c\u8eab\u7a7f\u7ea2\u8272\u7684"} +{"id": "0000028", "video_name": "00887221-1634-59e3-a3db-69b26ddc58e6", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u7eb3\u4e0e\u963f\u8d3e\u9c81\u7eb3\u4e4b\u95f4\u7684\u53cb\u8c0a\u662f\u5370\u5ea6\u795e\u8bdd\u4e2d\u6700\u5177\u6807\u5fd7\u6027\u548c\u6301\u4e45\u7684\u53cb\u8c0a\u4e4b\u4e00\u3002"} +{"id": "0000029", "video_name": "008953e3-baac-5b31-9354-0c89dea309ef", "text": "\u63cf\u8ff0\u4e86\u5404\u79cd\u989c\u8272\u3001\u5f62\u72b6\u548c\u5927\u5c0f\u7684\u9c7c\u5728\u5145\u6ee1\u6d3b\u529b\u548c\u591a\u6837\u6027\u7684\u6c34\u751f\u73af\u5883\u4e2d\u7684\u753b\u9762\u3002"} +{"id": "0000030", "video_name": "008aeb29-326b-53ea-9219-6bb63aa3f75a", "text": "\u80fd\u8ba9\u4ed6\u4eec\u8bb0\u4f4f\uff0c\u6709\u77e5\u8bc6\u548c\u540c\u60c5\u5fc3\u3002"} +{"id": "0000031", "video_name": "008bae08-e4a8-5987-8602-0ff83176d85d", "text": "\u5ca9\u77f3\u56e0\u7269\u7406\u529b\u91cf\u800c\u7834\u88c2\u7684\u89c6\u89c9\u6548\u679c\u3002 \n\nSource sentence: The company's revenue has increased by 20% this year. \n\n\u516c\u53f8\u4eca\u5e74\u7684\u6536\u5165\u589e\u52a0\u4e8620%"} +{"id": "0000032", "video_name": "008cd034-c583-5c3b-a74f-bd318e468107", "text": "\u4eba\u4eec\u5728\u77ff\u4e95\u4e2d\u8f9b\u52e4\u5de5\u4f5c\uff0c\u4ee5\u68b5\u9ad8\u7684\u98ce\u683c\u8868\u73b0\u3002"} +{"id": "0000033", "video_name": "00a3d5c8-6c40-5881-8dc8-0ac9eed62b9e", "text": "\u623f\u5730\u4ea7\u6444\u5f71\u5e08\u5de5\u4f5c\uff0c\u53a8\u623f\uff0c\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u5b69\u5b50\u4eec\u3002"} +{"id": "0000034", "video_name": "00a40e50-0d34-53c7-bc09-c1474b43ebf3", "text": "\u53ef\u80fd\u662f\u771f\u5b9e\u7684\u5916\u661f\u4eba\u8fdb\u884c\u52a8\u753b\u5236\u4f5c\u3002"} +{"id": "0000035", "video_name": "00a9073a-d37c-56d8-9924-a7b24a12f036", "text": "\u5c55\u793a\u4e16\u754c\u672b\u65e5\u7684\u573a\u666f\u3002"} +{"id": "0000036", "video_name": "00b95191-aeda-55f7-9d0b-49ff174f61fb", "text": "\u573a\u666f\u5f00\u5934\u662f\u4e00\u7fa4\u5145\u6ee1\u6d3b\u529b\u7684\u5e74\u8f7b\u670b\u53cb\uff08\u4e0d\u540c\u79cd\u65cf\u548c\u6027\u522b\uff09\uff0c\u5728\u65f6\u5c1a\u7684\u57ce\u5e02\u73af\u5883\u4e2d\u8df3\u821e\u3002\u4ed6\u4eec\u7a7f"} +{"id": "0000037", "video_name": "00c30ed3-28a9-5d4d-bb6f-36067e8b502d", "text": "\u4e54\u6cbb\u00b7W\u00b7\u5e03\u4ec0\u57282012\u5e74\u5723\u8bde\u8282\u548c\u6c83\u5c14\u7279\u00b7\u6000\u7279\u8c08\u8bdd\uff0c\u5f53\u65f6\u4e0b\u7740\u96ea\uff0c\u8c08\u8bba\u300a\u7edd\u547d\u6bd2\u5e08"} +{"id": "0000038", "video_name": "00da7c18-d676-575f-a200-bc4ae90e504d", "text": "\u5458\u5de5\u6b63\u5728\u5bfb\u627e\u62fc\u56fe\u5757\u3002"} +{"id": "0000039", "video_name": "00dca047-6743-522a-a280-de600cb2ccde", "text": "\u5728\u5723\u8bde\u8282\u7684\u65f6\u5019\uff0c\u5b69\u5b50\u4eec\u5728\u96ea\u4e2d\u73a9\u800d\uff0c\u975e\u5e38\u771f\u5b9e\u3001\u591a\u5f69\uff0c\u767d\u5929\u8fdb\u884c\u3002"} +{"id": "0000040", "video_name": "00de55f1-2204-502e-b2fa-4eb592ef1433", "text": "\u5973\u4eba\u5728\u4e00\u4e2a\u7a7a\u8352\u829c\u7684\u300a\u94f6\u7ffc\u6740\u624b\u300b\u573a\u666f\u4e2d\u9003\u79bbDJ\u3002"} +{"id": "0000041", "video_name": "00de6cc7-1f56-59de-afa2-5512bc54b54f", "text": "Translation: \u53ea\u6709\u5f53\u4eba\u4eec\u6446\u8131\u5b64\u72ec\uff0c\u624d\u80fd\u91cd\u62fe\u70ed\u95f9\u7e41\u534e\u3002"} +{"id": "0000042", "video_name": "00dee24b-14e7-55b7-9a76-2e5fe999c77e", "text": "\u4e00\u4f4d\u5973\u60a3\u8005\u6253\u5f00\u51b0\u7bb1\u5e76\u62ff\u51fa\u836f\u7247\u3002"} +{"id": "0000043", "video_name": "00e3cbc2-fd07-5308-98d5-7db70846b90a", "text": "\u4e00\u4e2a\u84dd\u8272\u76843D\u5fc3\u5f62\u56fe\u6848\u7834\u88c2\u6210\u4e24\u534a\u3002"} +{"id": "0000044", "video_name": "00e52d0f-f761-5dcf-bf15-4401a274c294", "text": "\u661f\u661f\u5728\u95ea\u70c1\uff0c\u592a\u9633\u5df2\u843d\u5c71\uff0c\u8239\u5728\u6cb3\u4e0a\u6643\u52a8\u3002\u6211\u4f1a\u7559\u4e0b\u4e00\u4e9b\u8bdd\u7ed9\u4f60\u3002"} +{"id": "0000045", "video_name": "00eb9809-e174-5dda-b11a-5ee9344b3552", "text": "\u5373\u5c06\u4eab\u7528\u5de7\u514b\u529b\u706b\u9505\u7684\u60c5\u4fa3\u3002"} +{"id": "0000046", "video_name": "00ec1135-1345-5c84-8f00-a6cce020e329", "text": "\u63a5\u7eb3\u8857\u5934\u7537\u5b69\u548c\u5973\u5b69"} +{"id": "0000047", "video_name": "00ee58aa-b115-5ee7-8e3b-a2aa3117102e", "text": "\u5370\u5ea6\u9057\u4ea7\u666f\u70b9\u5e8f\u5217\u8fc7\u6e21\u5230\u73b0\u4ee3\u5370\u5ea6\u751f\u6d3b\u573a\u666f\uff0c\u6355\u6349\u6587\u5316\u4e30\u5bcc\u548c\u5f53\u4ee3\u7cbe\u795e\u7684\u7cbe\u9ad3\u3002"} +{"id": "0000048", "video_name": "00f39045-e666-59ff-935d-c5fb11ff620c", "text": "\u7b80\u5355\u76842D\u52a8\u753b\u89d2\u8272\u6307\u5411\u4e0a\u65b9\uff0c\u767d\u8272\u80cc\u666f\uff0c\u65e0\u8fb9\u6846\uff0c\u7ecf\u5178\u52a8\u753b\uff0c\u6e05\u6670\u52a8\u753b\u3002"} +{"id": "0000049", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "\u4ece\u524d\u6709\u4e2a\u540d\u53eb\u51ef\u4f26\u7684\u5e74\u8f7b\u5973\u5b69\u3002"} +{"id": "0000050", "video_name": "00f878b5-cf9b-5261-aa65-b79a7b5cbee8", "text": "\u6211\u53d7\u8fc7\u8f83\u4f4e\u7684\u6559\u80b2\uff0c16:9\u3002"} +{"id": "0000051", "video_name": "00fd02a6-f5f7-5935-b889-cfb1e6bfeacc", "text": "\u7531\u6ef4\u843d\u7684\u7194\u5ca9\u6784\u6210\u7684\u98de\u884c\u5c9b\u5c7f\uff0c\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\u5feb\u901f\u4e0a\u5347\u3002"} +{"id": "0000052", "video_name": "00fd88a5-39e0-5766-82ce-cdf5ae98be75", "text": "\u5728\u4e00\u4e2a\u5927\u96e8\u7684\u591c\u665a\uff0c\u5e10\u7bf7\u91cc\u71c3\u7740\u5c0f\u6728\u67f4\u53d6\u6696\u3002"} +{"id": "0000053", "video_name": "0104c04a-3e5b-50d3-8a02-d7072fc633ed", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u50cf\u7d20\u827a\u672f\u9762\u5177\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u5fae\u7b11\uff0c\u52a8\u4f5c\u6781\u5c11\u3002"} +{"id": "0000054", "video_name": "01075152-9c3c-513d-9446-62db9502196b", "text": "\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u4fa7\u9762\u8d70\u8def\u7684\u89c6\u89d2\u3002"} +{"id": "0000055", "video_name": "0108a106-a573-511f-9ae6-5e6177581fd3", "text": "\u73ed\u5c3c\u5728\u8349\u5730\u4e0a\u9047\u89c1\u4e86\u7f57\u831c\u5154\uff0c\u4e24\u53ea\u5154\u5b50\u90fd\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "0000056", "video_name": "010b0417-3580-5007-80b3-d95dc6a8cd0a", "text": "\u9ed1\u6697\u5e7b\u60f3\u590d\u53e4\u98ce\u683c\u9a91\u58eb\u6b65\u5165\u9ed1\u6697\u68ee\u6797\u4e2d\u7684\u5c0f\u5c4b\u3002"} +{"id": "0000057", "video_name": "011246ce-d9b3-5f75-969a-0f110b4e6aea", "text": "\u4e0d\u653e\u97ad\u70ae\u7684\u5149\u548c\u6b22\u4e50\u7684\u5e86\u795d\u6392\u706f\u8282"} +{"id": "0000058", "video_name": "0126de4d-3e82-5e6a-b0c9-6679cb8366c3", "text": "\u4e00\u76cf\u7531\u9152\u5236\u6210\u7684\u706f\uff0c\u5185\u90e8\u6709\u57ce\u5e02\u3002"} +{"id": "0000059", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "\u7531\u4e8e\u5c0f\u884c\u661f\u649e\u51fb\u5730\u7403\uff0c\u751f\u6210\u4e00\u5f20\u6050\u9f99\u706d\u7edd\u7684\u7167\u7247\u3002"} +{"id": "0000060", "video_name": "01390711-cd14-5856-bd1d-eff4b6a50bb6", "text": "\u5b9d\u9a6cM5\u7ade\u6280\u7248\u5728\u68ee\u6797\u4e2d\u884c\u9a76\u3002"} +{"id": "0000061", "video_name": "0139c1e7-dcde-573d-ac4c-214255169ecf", "text": "\u5728\u8be1\u5f02\u7684\u623f\u95f4\u91cc\uff0c\u95ea\u70c1\u7684\u706f\u5149\u4e0b\uff0c\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5e26\u7740\u6bdb\u9aa8\u609a\u7136\u7684\u5fae\u7b11\u51fa\u73b0\u5728\u6050"} +{"id": "0000062", "video_name": "013a299c-fcfb-5dd2-afbe-1521c8e7700f", "text": "\u4e00\u4f4d\u5361\u901a\u5723\u8bde\u8001\u4eba\u4ece\u4e3b\u89c2\u89c6\u89d2\u9012\u7ed9\u6211\u4e00\u4efd\u793c\u7269\u3002"} +{"id": "0000063", "video_name": "013bf67c-eb5e-5b7c-820c-e0e531770bbb", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u7a7f\u7740\u50cf\u58eb\u5175\u4e00\u6837\u7684\u8863\u670d\u3002"} +{"id": "0000064", "video_name": "013dbc07-c200-5bb1-b00f-462dde4a6c1d", "text": "\u521b\u5efa\u4e00\u5f20\u84dd\u7cbe\u7075\u7684\u7167\u7247\u3002"} +{"id": "0000065", "video_name": "0145c544-a36a-5084-81ed-2134cfe4c7e5", "text": "\u79d1\u5b66\u5bb6\u4eec\u5e0c\u671b\u8fdb\u4e00\u6b65\u7814\u7a76\u6781\u53e4\u8001\u7684\u4eba\u7c7bDNA\uff0c\u4ee5\u5e2e\u52a9\u6f84\u6e05\u8fd9\u4e9b\u8c1c\u56e2\u3002"} +{"id": "0000066", "video_name": "01491e04-d427-55c2-9321-78c4aa9a44f2", "text": "\u5236\u4f5c\u4e00\u4e2a\u7537\u5b69\u6253\u7bee\u7403\u7684\u89c6\u9891\u3002"} +{"id": "0000067", "video_name": "014c5b6e-6c6a-5046-b24a-b12874dc5b81", "text": "\u6d77\u6d6a\u4e0a\u6700\u7f8e\u7684\u843d\u65e5\u5370\u8c61\u4e3b\u4e49\u7167\u7247\uff0c\u70ed\u5e26\u6d77\u6ee9\uff0c\u68a6\u5e7b\u3001\u6d6a\u6f2b\uff0c\u6eda\u6eda\u7684\u6d77\u6d6a\uff0c\u6f02"} +{"id": "0000068", "video_name": "014d4e1e-3a2f-5e21-a498-6a1e67802da3", "text": "1970\u5e74\u4ee3\uff0c\u7535\u5f71\u9897\u7c92\u611f\uff0c\u4eba\u7c7b\u9e1f\u513f\u843d\u5728\u7535\u8bdd\u7ebf\u4e0a\uff0c\u5728\u9b54\u6cd5\u65f6\u6bb5\uff0c\u7535\u5f71\u5f0f\u7684\uff0c\u8d85\u73b0\u5b9e\u7684\uff0c\u9b54\u5e7b"} +{"id": "0000069", "video_name": "014d905b-651f-5dc6-9d8d-6206dcd93f69", "text": "\u6cbf\u9014\uff0c\u4e4c\u9f9f\u548c\u5154\u5b50\u7eca\u5012\u5728\u77f3\u5934\u4e0a\uff0c"} +{"id": "0000070", "video_name": "014fb780-2809-591e-8b55-cc25a2e2a2d1", "text": "\u9ed1\u6697\u95f4\u8c0d\u5973\u5b69\u4e0e\u51ef\u52d2\u59c6\u6c83\u9a91\u58eb\u6218\u6597\uff0c4k\uff0c\u7535\u5f71\u7ea7\u753b\u9762\uff0c\u9f99\u4e0e\u5730\u4e0b\u57ce\uff0c\u653e\u5927\u955c"} +{"id": "0000071", "video_name": "015da121-7f40-5cb1-8770-3101cb2ece45", "text": "\u4e00\u53f0\u624b\u6301\u8bbe\u5907\u663e\u793a\u51fa\u4e00\u6761DNA\u5b57\u7b26\u4e32\u5728\u5176\u81ea\u8eab\u8f74\u4e0a\u65cb\u8f6c\uff0c\u65c1\u8fb9\u8fd8\u6709\u4e00\u4e2a\u8bf4\u8bdd\u7684\u4eba\u8138\u3002"} +{"id": "0000072", "video_name": "015eccc0-8c74-5d13-80d7-7fb62b98e5ea", "text": "\u53e4\u4ee3\u57c3\u53ca\u7684\u5973\u738b\u5c3c\u8299\u8482\u7279\u9760\u8fd1\u955c\u5b50\uff0c\u7528\u9752\u94dc\u624b\u955c\u7167\u7740\u81ea\u5df1\uff0c\u7ad9\u5728\u5bab\u6bbf\u7a97\u524d"} +{"id": "0000073", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "\u540e\u679c\u5bf9\u4e8e\u96c6\u4f53\u8bb0\u5fc6\u548c\u8eab\u4efd\u7684\u5f71\u54cd\u3002"} +{"id": "0000074", "video_name": "01611c99-8f52-5b8e-82a8-ad389ae1752e", "text": "\u62c9\u59c6\u548c\u5e0c\u5854\u53bb\u5bfa\u5e99\u3002"} +{"id": "0000075", "video_name": "0165f54a-4f5f-5f67-a221-72f2a208277b", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\uff0c\u5145\u6ee1\u4e86\u5927\u81ea\u7136\u7684\u7ec6\u8282\u548c\u9ad8\u54c1\u8d28\u3002\u4fe1\u606f\uff1aODS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000076", "video_name": "016ace53-a55e-5da7-ad68-764e8ffe2b5d", "text": "\u6709\u4e00\u6b21\uff0c\u98ce\u548c\u592a\u9633\u4e4b\u95f4\u53d1\u751f\u4e86\u5173\u4e8e\u8c01\u66f4\u5f3a\u58ee\u7684\u4e89\u8bba\u3002"} +{"id": "0000077", "video_name": "01726eb1-3239-5611-8687-c265cd3bd4f2", "text": "\u7537\u5b69\u4ece\u9633\u53f0\u89c2\u770b\u591c\u666f\u3002"} +{"id": "0000078", "video_name": "01778ce9-2d40-5489-99d8-945ef78b365c", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6d77\u6d0b\u4e2d\u7684\u6551\u751f\u8247\u4e0a\u4ee5\u8fea\u65af\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u89e6\u6478\u7f8e\u4eba\u9c7c\u3002"} +{"id": "0000079", "video_name": "017d6f6e-e49c-52ee-a650-d6ea383ba17c", "text": "\u4fa7\u6eda\u52a8\u7eb8\u6d46\u5207\u5272\u51fa\u7684\u4e00\u4e2a\u795e\u7075\u5728\u5730\u7403\u4e0a\u6eda\u52a8\u3002"} +{"id": "0000080", "video_name": "017f027a-0511-5a0b-83d8-af0620f8b535", "text": "\u9762\u5bf9\u697c\u5c42\u7684\u6cea\u6c344K"} +{"id": "0000081", "video_name": "01804de2-5c07-57ab-96b7-6c6005b8738c", "text": "\u68ee\u6797\u4e2d\u7684\u96e8\uff0c\u5f71\u50cf\u4e0d\u52d5\uff0c\u53ea\u6709\u96e8\u6ef4\u7684\u6d41\u52d5\uff0c\u903c\u771f\uff0c8K\u9ad8\u6e05\u3002"} +{"id": "0000082", "video_name": "01852aac-daa3-507c-a0cd-3dbe5b958534", "text": "\u6d77\u738b\u661f\u4e0a\u7684\u53cc\u91cd\u5f69\u8679\u3002"} +{"id": "0000083", "video_name": "01889e45-bd12-54d0-89b2-36ba2bb380ef", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4f60\u770b\u5230\u4e00\u67b6\u5e26\u6709\u95ea\u70c1\u7ea2\u5149\u7684\u65e0\u4eba\u673a\u79fb\u52a8\u3002"} +{"id": "0000084", "video_name": "018b3226-2c7f-598f-baed-78c12216df94", "text": "1985\u5e74\u7684\u89c6\u9891\uff0c\u4e00\u5219\u53a8\u623f\u6405\u62cc\u673a\u5546\u4e1a\u5e7f\u544a\uff0c\u5e26\u6709\u6807\u5fd7\u3002"} +{"id": "0000085", "video_name": "018c2a32-358f-5234-81e2-63c995e62116", "text": "\u73ab\u7470\u5728\u82b1\u56ed\u4e2d\u6f2b\u6b65\u5e76\u7b11\u7740\u3002"} +{"id": "0000086", "video_name": "018dcb69-79c2-592a-abc3-be741c8a177a", "text": "\u7537\u4eba\u5728\u8def\u8fb9\u7684\u8857\u706f\u4e0b\uff0c\u665a\u4e0a\u770b\u7740\u624b\u8868\uff0c3D\u52a8\u753b\u3002"} +{"id": "0000087", "video_name": "01903378-12e3-549e-89dd-646bfb32c649", "text": "\u4e00\u53ea\u6811\u61d2\u62ff\u7740\u73bb\u7483\u676f\uff0c\u5bf9\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "0000088", "video_name": "019a7573-c38a-50bb-a49e-6b69527726c3", "text": "\u73b0\u5b9e\u7684\u7206\u70b8\u5766\u514b\u6218\u4e89\u573a\u666f"} +{"id": "0000089", "video_name": "019aae0a-ee2b-51c7-8887-f939a0705903", "text": "\u526a\u4e0b\u5154\u5b50\u5e76\u6dfb\u52a0\u7eff\u8272\u80cc\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000090", "video_name": "019b7b45-ffbd-5e1f-98ed-72155502cc7c", "text": "\u7535\u5f71\u822c\u7684\uff0c\u4e2d\u666f\uff0c\u7279\u6548\u7535\u5f71\u3002\u4e00\u540d\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u9003\u79bb\u5916\u661f\u4eba\u3002"} +{"id": "0000091", "video_name": "019bdfbb-b34b-5458-a4d5-f7da89d0b989", "text": "\u65cb\u8f6c\u7684\u5934\u53d1\uff0c\u9759\u6001\u7684\u753b\u9762\uff0c\u5fae\u7b11\u7684\u8138\u5bb9\u3002"} +{"id": "0000092", "video_name": "019eb7a1-f4f8-5d2e-94b4-e71e7817775c", "text": "\u5929\u7a7a\u4e2d\u98de\u821e\u7740\u7f8e\u4e3d\u7684\u4ed9\u5973\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u3002"} +{"id": "0000093", "video_name": "01a0237a-1106-5324-9484-bc6b0fae880d", "text": "\u9a6c\u5e93\u65af\u00b7\u52a0\u7ef4\u7ad9\u5728\u9635\u96e8\u4e2d\u7684\u6e38\u884c\u961f\u4f0d\u4e2d\uff0c\u88ab\u9ed1\u767d\u4e24\u8272\u7684\u6b22\u547c\u4eba\u7fa4\u5305\u56f4\u7740\uff0c\u89c6\u9891\u4e2d\u6f2b\u5929"} +{"id": "0000094", "video_name": "01a8e4d3-fdde-50e5-ae79-970a24ba0e67", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u5728\u591c\u603b\u4f1a\u8df3\u821e\u3002"} +{"id": "0000095", "video_name": "01ac7872-8e1b-5ac9-b729-c90710fc1988", "text": "\u591c\u665a\uff0c\u6d41\u661f\u96e8\u843d\u4e0b\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u57ce\u5e02\u3002"} +{"id": "0000096", "video_name": "01af9071-cbde-5f68-89f3-c07032a4eef7", "text": "\u52a8\u6001\u7684\u591a\u9762\u955c\u7247\u3001\u9cb1\u9c7c\u548c\u9762\u5305\u3002"} +{"id": "0000097", "video_name": "01b430ce-3c3d-5645-aa05-61ae37273812", "text": "\u5728\u84dd\u8272\u80cc\u666f\u4e0b\uff0c\u4e2d\u7b49\u5927\u5c0f\u7684\u9ec4\u8272\u7403\u5f62\u7269\u4f53\u5728\u77e2\u91cf\u56fe\u4e2d\u4e00\u8d77\u7206\u70b8\u3002"} +{"id": "0000098", "video_name": "01bca16d-4a3a-58e9-b2ef-21b7865be8da", "text": "\u9ed1\u767d\u7535\u5f71\u4e2d\u7684\u6697\u6ce2\u56fe\u50cf\uff0c\u51fa\u73b0\u572820\u4e16\u7eaa\u521d\u3002"} +{"id": "0000099", "video_name": "01be4e3e-5219-5874-ba22-8058101014b7", "text": "\u4e30\u7530\u7687\u51a0\u6c7d\u8f66\u5728\u8d2d\u7269\u4e2d\u5fc3\u505c\u8f66\u573a\u6f02\u79fb\u3002"} +{"id": "0000100", "video_name": "01c14970-3829-5747-b92c-e156f84fa9c5", "text": "\u4e00\u5e45\u5e74\u8f7b\u5973\u5b69\u7684\u6587\u827a\u590d\u5174\u8096\u50cf\u753b"} +{"id": "0000101", "video_name": "01c32ab7-4ec3-516e-a72c-70dc0e5d1635", "text": "\u7267\u7f8a\u4eba\u4ef0\u671b\u5929\u7a7a\uff0c\u4e00\u9897\u95ea\u8000\u7684\u660e\u661f\u7167\u4eae\u4e86\u8036\u7a23\u7684\u9a6c\u69fd\u3002"} +{"id": "0000102", "video_name": "01c81a82-7a15-5592-8a29-5c87dd5c2e0d", "text": "\u4e00\u8f86\u65e5\u672c\u8dd1\u8f66Supra\uff0c\u5e26\u6709\u9713\u8679\u706f\uff0c\u5728\u5c71\u4e0a\u6f02\u79fb\uff0c\u591c\u665a\uff0c\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u5feb\u901f\u800c\u731b\u70c8"} +{"id": "0000103", "video_name": "01c921cb-2028-5817-980a-1c35415e19ef", "text": "\u4e00\u53ea\u8d70\u8def\u7684\u5361\u901a\u8349\u8393\u7684\u77e2\u91cf\u63d2\u56fe"} +{"id": "0000104", "video_name": "01d15797-3b79-5f54-9e20-f839a13a6f3c", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u7a7f\u7740\u5e26\u62ab\u80a9\u7684\u91d1\u8272\u8721\u67d3\u8863\u670d\u3002"} +{"id": "0000105", "video_name": "01d339db-cf75-5116-82bf-fb355b1cda4b", "text": "\u5854\u7f57\u724c\u548c\u5854\u7f57\u5361\u8bfb\u53d6\u5728\u5929\u4e0a\u3002"} +{"id": "0000106", "video_name": "01d6e5ee-a485-527b-9ae3-1a7f3e91d6be", "text": "\u4e00\u4e2a\u9b3c\u9b42\u80cc\u7740\u91c7\u77ff\u8bbe\u5907\u5728\u70df\u96fe\u4e2d\uff0c\u6709\u8bb8\u591a\u8367\u5149\u8272\u3002"} +{"id": "0000107", "video_name": "01d7dd45-dd63-5d17-9cb5-1d3f05bc4252", "text": "\u4e00\u4f4d\u4e0e\u4ed6\u4eba\u6109\u5feb\u4ea4\u6d41\u7684\u5e74\u8f7b\u5973\u5b50\u3002"} +{"id": "0000108", "video_name": "01db1099-a209-590a-a6ec-cfdcb3b8a7be", "text": "\u89c6\u9891\u52a8\u753b3D\u7c73\u8001\u9f20\u8fea\u58eb\u5c3c\u4e50\u56ed"} +{"id": "0000109", "video_name": "01eb5426-72f6-5280-93c6-d0ff7e65f8bf", "text": "\u9177\u9177\u7684\u54e5\u7279\u5986\u7537\u5b69\u548c\u5973\u5b69\u6b63\u5728\u63d0\u4f9b\u4e00\u4e9b\u7f8e\u98df\u3002 \n\nSource sentence: I am excited to visit China and try the authentic cuisine. \n\n\u6211\u5f88"} +{"id": "0000110", "video_name": "01ef45fa-c5b4-563e-baa1-0d1dfd81680e", "text": "\u4e00\u4e2a\u4eba\u8df3\u8fdb\u4e00\u4e2a\u6c14\u6ce1\u4e2d\u3002"} +{"id": "0000111", "video_name": "01f33d03-ed50-55b1-8393-7aac29c2c19d", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e4b\u95f4\uff0c\u6709\u4e00\u6761\u6df1\u7a84\u7684\u5ce1\u8c37\uff0c\u7528\u7535\u5f71\u822c\u7684\u9e1f\u77b0\u955c\u5934\u8fdb\u884c\u62cd\u6444\u3002"} +{"id": "0000112", "video_name": "020486f5-f0cc-56a2-b703-2e75735d5300", "text": "\u4e00\u5806\u66f8\u91dd\uff0c\u8a0a\u606f\uff1a\u6587\u6cd5\uff08\u5b57\u9ad4\uff1a\u73fe\u4ee3\uff09"} +{"id": "0000113", "video_name": "020cee8a-d48a-508b-bbb2-60383745a391", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u5728\u5f00\u8f66\u3002"} +{"id": "0000114", "video_name": "020d71a0-9c58-5d59-bb9d-d0f4e5257441", "text": "\u56fd\u9645\u5730\u7406\u731c\u731c\u6bd4\u8d5b\u5728\u4e00\u4e2a\u5c0f\u623f\u95f4\u91cc\u4e3e\u884c\u3002"} +{"id": "0000115", "video_name": "020ee0ba-42a6-52d6-98b1-ebe4463bb519", "text": "\u4e24\u4f4d\u4e2d\u56fd\u8001\u5e08\u548c\u5b66\u751f\u6b63\u5728\u4ea4\u8c08\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000116", "video_name": "021143e1-7fa8-506d-a47f-704aa634d2ab", "text": "\u4e00\u53ea\u6d77\u9f9f\u53d8\u5f62\u6210\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\uff0c\u5177\u67098k\u7535\u5f71\u7ea7\u522b\u7684\u7167\u660e\u548c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002"} +{"id": "0000117", "video_name": "0215f905-4236-5c68-ba41-e298566e5c46", "text": "\u4e24\u4e2a\u5b69\u5b50\u625b\u7740\u4e00\u4ef6\u6cd5\u8001\u91d1\u5b9d\u85cf\u3002"} +{"id": "0000118", "video_name": "021c5cef-9297-53ed-9f0f-f0b0a16c7e50", "text": "1990\u5e74\u5f69\u8272\u7eaa\u5f55\u7247\u5c55\u793a\u4e86\u83f2\u62c9\u5fb7\u5c14\u83f2\u4e9a\u53f7\u5b9e\u9a8c\u4e2d\uff0c\u5c38\u4f53\u4e0e\u94a2\u878d\u5408\u7684\u60c5\u666f\u3002"} +{"id": "0000119", "video_name": "022d2158-3da7-5e8c-9b38-61c065859327", "text": "\u6218\u952440k\u7684\u7535\u5f71\u9884\u544a\u7247\u3001\u89d2\u8272\u8bbe\u8ba1\u3001\u52a8\u4f5c\u3002"} +{"id": "0000120", "video_name": "0237ba0d-e6fd-56e5-9ff1-22eee9bdc3c2", "text": "\u4e00\u53ea\u5c0f\u9e1f\u770b\u5230\u4e91\u6735\uff0c\u50cf\u5361\u901a\u4e00\u6837\u3002"} +{"id": "0000121", "video_name": "023d602e-f556-5bc0-8cc2-494fb2bbbc67", "text": "\u5217\u592b\u00b7\u6258\u5c14\u65af\u6cf0\u5728\u8d5b\u535a\u670b\u514b\u4e16\u754c\u7528\u5e73\u677f\u7535\u8111\u5199\u4f5c\uff0c\u573a\u666f\u4eff\u4f5b\u6765\u81ea\u300a\u94f6\u7ffc\u6740\u624b"} +{"id": "0000122", "video_name": "0241b89d-2226-5602-87ad-d2119e978e7a", "text": "\u5927\u53f7\u7070\u8272\u65c5\u884c\u80cc\u5305 1:1\u5339\u914d\u3002"} +{"id": "0000123", "video_name": "024c88b8-4298-5dca-a431-a8baf5d2b95a", "text": "\u7626\u957f\u7684\u6e29\u8fea\u6208\u7a7f\u7740\u897f\u88c5\uff0c\u5728\u6a21\u7cca\u3001\u4f4e\u8d28\u91cf\u7684\u5f55\u50cf\u5e26\u4e2d\u51fa\u73b0\u5728\u68ee\u6797\u7a7a\u5730\u548c\u88ab\u9057\u5f03"} +{"id": "0000124", "video_name": "024d808f-c250-5216-8f14-40456201a922", "text": "35\u6beb\u7c73\u80f6\u7247\uff0c\u4e00\u8f8670\u5e74\u4ee3\u7684\u6c7d\u8f66\u5728\u6c99\u6f20\u4e2d\u95f4\u7206\u70b8\u3002"} +{"id": "0000125", "video_name": "02531fe5-dc31-5ca4-a8be-5d834508cc3a", "text": "\u4e00\u540d\u5efa\u7b51\u5de5\u4eba\u7ad9\u5728\u6708\u7403\u4e0a\uff0c\u6444\u50cf\u673a\u5411\u540e\u79fb\u52a8\uff0c\u6211\u4eec\u770b\u5230\u4ed6\u7528\u80f6\u6c34\u5c06\u6708\u7403\u7c98\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "0000126", "video_name": "0254db12-ba2b-5f68-a2d9-064a0281e4f0", "text": "\u4e00\u4f4d\u62e5\u6709\u9ec4\u8272\u7fc5\u8180\u7684\u5929\u4f7f\uff0c\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\u8fdb\u4e86\u4e00\u4e2a\u7c89\u7ea2\u8272\u7684\u8349\u5730\u3002"} +{"id": "0000127", "video_name": "025635b6-9ba2-5b99-a0c9-6d5c09f6602f", "text": "\u5c0f\u7537\u5b69\u62c9\u80e1\u5c14\u548c\u670b\u53cb\u4eec\u5750\u5728\u6811\u4e0b\u8ba1\u5212\u3002"} +{"id": "0000128", "video_name": "0269b9b0-a401-55bf-9a44-7d0f976d5bc7", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u68a6\u5883\u6838\u5fc3\u8d858\u6beb\u7c73\u5f71\u7247\uff0c\u5c55\u73b0\u4e86\u9ec4\u8863\u738b\u7684\u514b\u82cf\u9c81\u98ce\u683c\uff0c\u8272\u8c03\u6e29"} +{"id": "0000129", "video_name": "026e22a4-91ee-515c-96fb-f66419cec7d1", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u4ece\u9633\u53f0\u4e0a\u770b\u7740\u4e00\u4e2a\u5feb\u4e50\u7684\u5bb6\u5ead\u53bb\u5546\u5e97\u3002"} +{"id": "0000130", "video_name": "02740a18-c157-5823-a276-044c28cef5c2", "text": "\u7d22\u5c3c\u514b\u5c0f\u5b50\uff0c\u72d0\u72f8\u5c3e\u5df4\uff0c\u6697\u5f71\u5c0f\u5b50\uff0c\u65af\u79d1\u5947\u5c0f\u5b50\uff0c\u94f6\u8272\u5c0f\u5b50\u56f4\u7ed5\u6df7\u6c8c\u7eff\u5b9d"} +{"id": "0000131", "video_name": "02747e9c-097b-5f82-9926-4a356d73437a", "text": "Source sentence translated into Chinese: \u98de\u84dd\u83c7\u6b63\u5728\u751f\u957f\u3002"} +{"id": "0000132", "video_name": "0278a5a9-878d-5a81-b872-4a89c7f464b5", "text": "\u5728\u5df4\u9ece\u8857\u5934\u5236\u4f5c\u4e24\u4e2a\u7537\u5b69\u4e89\u5435\u7684\u89c6\u9891\u3002"} +{"id": "0000133", "video_name": "027ecd92-b46a-5352-83ec-db5fea8b606d", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u548c\u4e3b\u795e\u6cfd\u52aa\u4e00\u8d77\u5403\u9e21\u8089\u51ef\u6492\u6c99\u62c9\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n"} +{"id": "0000134", "video_name": "0288c604-5c8e-52a5-b95c-2b28da7db11f", "text": "\u8ba1\u5212\u8bc8\u9a97\uff08\u73b0\u4ee3\u5b57\u4f53\uff09"} +{"id": "0000135", "video_name": "028b9b05-9807-52ee-9876-6245c23b2038", "text": "\u63d2\u56fe\u3001\u8c61\u5f81\u3001\u6728\u523b\u5370\u5237\u3001\u5370\u5237\u3001\u9ed1\u767d\u3001\u767d\u8272\u5370\u5237\u6b63\u9762\u3001\u7b80\u5355\u7684\u590d\u53e4\u6307\u5357\u9488\u3001\u9ed1\u8272\u80cc"} +{"id": "0000136", "video_name": "02923ddd-4df0-5e5b-852c-ee091ce72ff4", "text": "\u6570\u5b57\u5316\u7684\u65b9\u5f0f\u5b9e\u73b0\u66f4\u6e05\u6d01\u7684\u4e16\u754c\u3002"} +{"id": "0000137", "video_name": "02abf8ef-46c2-5831-854e-81bac8cfb6a8", "text": "\u4e24\u7ef4\u5361\u901a\u52a8\u753b\uff0c\u5c55\u73b0\u4e09\u53ea\u5c0f\u732a\u8df3\u821e\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u5361\u901a\u3002"} +{"id": "0000138", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "\u53e4\u4ee3\u7ef4\u4eac\u4eba\u5728\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u4f7f\u7528\u592a\u9633\u77f3\uff0c\u5f53\u5c71\u4e00\u6837\u7684\u6ce2\u6d6a\u548c\u5f3a\u70c8\u7684\u96e8\u6c34\u964d\u843d\u65f6\u3002"} +{"id": "0000139", "video_name": "02b08029-5b64-52df-9506-16a346c69468", "text": "\u68ee\u6797\u3001\u96e8\u3001\u65e9\u6668\u3002\u4fe1\u606f\uff1aAKIPRESS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000140", "video_name": "02b3cbe7-4689-5818-b262-d65798a3ffdb", "text": "\u4e00\u5e45\u7d20\u63cf\u8f6e\u5ed3\u7684\u6cb3\u6d41\uff0c\u80cc\u666f\u662f\u7cd6\u679c\u5c71\u3002\u9ed1\u767d\u8272\u8c03\u3002"} +{"id": "0000141", "video_name": "02b8877a-6658-5787-acd0-b42b64b77aa4", "text": "\u5973\u4eba\u56e0\u5931\u53bb\u6240\u7231\u7684\u4eba\u800c\u611f\u5230\u60b2\u4f24\u3002\u5c3a\u5bf8\u4e3a1920x1080\u3002"} +{"id": "0000142", "video_name": "02ba351e-103d-59ab-ae8b-04a1c7cf8183", "text": "\u9003\u79bb\u706b\u707e\u5efa\u7b51\u7684\u7537\u4eba"} +{"id": "0000143", "video_name": "02baf0b5-4aa7-50eb-8d9e-0eed25a7b05f", "text": "\u6d77\u5cb8\u5c71\u8109\u9644\u8fd1\u7684\u6d77\u57df\u98ce\u66b4\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0000144", "video_name": "02c75513-ab6f-5c26-831e-26619c978cb2", "text": "\u83ab\u65af\u79d1\uff0c\u6218\u4e89\u4e2d\u7684\u71c3\u70e7\u514b\u91cc\u59c6\u6797\u5bab\uff0c\u76f4\u5347\u673a\u62cd\u6444\u7684\u5f71\u7247\uff0c\u5177\u6709\u7535\u5f71\u6548\u679c\u3002"} +{"id": "0000145", "video_name": "02c8b649-b3ac-545c-901a-447d5d64defd", "text": "\u4ece\u9633\u53f0\u62cd\u6444\u7684\u5e7f\u89d2\u666f\u8c61\uff1a\u5e9f\u589f\u4e2d\u7684\u5409\u683c\u5c14\u5bab\u6bbf\u3001\u6492\u65e6\u5f0f\u7eaa\u5ff5\u7891\u3001\u90aa\u6076\u751f\u7269\u7684\u56fe"} +{"id": "0000146", "video_name": "02c931b9-7ed6-5b8c-bae9-710ef5969d55", "text": "\u6709\u4e24\u4e2a\u601d\u7ef4\u7684\u4eba\uff0c\u9009\u62e9\u8981\u5403\u7684\u610f\u9762\u7c7b\u578b\u3002"} +{"id": "0000147", "video_name": "02caf794-ae1e-5991-a5eb-1f43d0d0b8cd", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u9ea6\u514b\u62c9\u4f26\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0000148", "video_name": "02ccfaf7-9fd2-566c-9e3c-ba782fe75897", "text": "\u5f71\u5b50\u5411\u524d\u884c\u8d70\uff0c\u89e6\u624b\u5728\u8840\u7ea2\u8272\u80cc\u666f\u4e0a\u79fb\u52a8\uff0c\u5c31\u50cf\u662f\u4e00\u4e2a\u7ef4\u5ea6\u95e8\u3002"} +{"id": "0000149", "video_name": "02d1fb70-3025-5a7c-8d8f-645f28531b21", "text": "\u65c5\u884c\u8005\u8ba4\u771f\u5730\u6536\u62fe\u7740\u4e00\u4e2a\u9648\u65e7\u7684\u80cc\u5305\uff0c\u5c06\u7269\u54c1\u94fa\u5728\u5e8a\u4e0a\u6216\u684c\u5b50\u4e0a\uff0c\u8ba9\u80cc\u5305\u53d8\u4e3a\u4e00\u4e2a\u6545\u4e8b\u7684\u5c55"} +{"id": "0000150", "video_name": "02d4df79-56d2-57aa-9de1-296914a6d259", "text": "\u4e09\u8f86\u79d1\u6280\u6469\u6258\u8f66\u51fa\u79df\u8f66\u5728\u5341\u5b57\u8def\u53e3\u7b49\u5019\uff0c\u9644\u5e26\u4e24\u5f20\u7167\u7247\u3002\u65f6\u95f4\u4e3a9:16\u3002"} +{"id": "0000151", "video_name": "02d9a25b-212e-59e7-9cba-3776346b98fc", "text": "\u743c\u00b7\u514b\u62c9\u68ee\uff08Jon Klassen\uff09\u7684\u5361\u62c9\u74e6\u4e54\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u4e00\u8258\u8239\u5728\u6d77\u6d0b\u4e2d\u822a\u884c\u3002"} +{"id": "0000152", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "\u5154\u5b50\u5728\u626d\u66f2\u7684\u85e4\u8513\u3001\u6ed1\u6e9c\u7684\u77f3\u5934\u548c\u591a\u523a\u7684\u704c\u6728\u4e1b\u4e2d\u594b\u529b\u524d\u884c\u3002\u5c3d\u7ba1\u5b83\u975e\u5e38\u654f"} +{"id": "0000153", "video_name": "02e087c6-cc27-5da6-8742-210e3299f1b7", "text": "\u4e00\u573a\u5361\u901a\u98ce\u683c\u7684\u72d7\u72d7\u821e\u4f1a"} +{"id": "0000154", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u4e0a\u7ec3\u4e60\u4e2d\u56fd\u529f\u592b\u3002"} +{"id": "0000155", "video_name": "02e2b2b8-e8ae-5a37-afc4-c743ef5fe68b", "text": "\u6d77\u6d6a\u5728\u51ac\u5b63\u548c\u96ea\u5929\u62cd\u6253\u7740\u706f\u5854\u3002"} +{"id": "0000156", "video_name": "02e400af-3245-5dd0-9bdd-1f21d145f45e", "text": "\u5728\u4e00\u5e62A\u7ea7\u522b\u7684\u623f\u5b50\u91cc\u65b0\u88c5\u4fee\u7684\u53a8\u623f\u91cc\u94fa\u8bbe\u74f7\u7816\u5730\u677f\u3002"} +{"id": "0000157", "video_name": "02e9598e-9b19-5fca-b351-2e1bfc5b097c", "text": "\u4e00\u5e45\u8272\u5f69\u7f24\u7eb7\u7684\u7d20\u63cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u4e8c\u5341\u591a\u5c81\u7684\u7537\u5b50\uff0c\u624b\u4e2d\u62ff\u7740\u5305\uff0c\u6b63\u9762\u89c6\u56fe\uff0c\u540e\u65b9\u53f3\u4fa7\u548c\u5de6"} +{"id": "0000158", "video_name": "02e9f02e-a6dd-5270-bf6e-6a4a59f0641d", "text": "\u7a7f\u7740\u6728\u978b\u8d8a\u8fc7\u5c0f\u6eaa\uff0c\u624b\u6301\u94c3\u94db\u5411\u56fd\u738b\u4f20\u9012\u6d88\u606f\u3002"} +{"id": "0000159", "video_name": "02eaac19-3cb9-5357-a1b7-a3734e38c119", "text": "\u4e00\u8f86\u7531\u67e0\u6aac\u5236\u6210\u7684\u6c7d\u8f66\u6b63\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "0000160", "video_name": "02fcd7d5-f641-53be-aa37-a763374e459b", "text": "\u53f2\u8482\u6587\u00b7\u6885\u745f\u5c14\u548c\u7ef4\u7ef4\u5b89\u00b7\u8428\u68ee\u4e3a\u300a\u610f\u5927\u5229\u65f6\u5c1a\u300b\u62cd\u6444\u7684\u9ad8\u7ea7\u65f6\u5c1a\u521b\u610f\u6982"} +{"id": "0000161", "video_name": "02fe26ae-4eb8-5f64-b0b7-69ec01e620dd", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u548c\u4e00\u4e2a\u7537\u5b69\u8bf4\u8bdd\uff0c\u4f46\u7537\u5b69\u6b63\u5728\u5fd9\u7740\u73a9\u624b\u673a\uff0c\u6ca1\u6709\u7406\u5979\u3002\u8ba9\u89c6\u9891\u957f\u5ea6\u5ef6\u957f15\u79d2\u3002\u91c7\u75282D\u52a8\u753b\u98ce\u683c"} +{"id": "0000162", "video_name": "02ff1181-d494-5dd1-9bb5-df831f8b4081", "text": "1950\u5e74\u4ee3\u7684\u8d858\u6beb\u7c73\u8001\u7535\u5f71\uff0c\u662f\u4e00\u90e8\u7ecf\u5178\u7684\u9ed1\u767d\u5438\u8840\u9b3c\u7535\u5f71\u3002"} +{"id": "0000163", "video_name": "0305ed1a-eddf-529d-8543-74aa98ee6d7d", "text": "\u7ec4\u5efa\u5bb6\u5ead\uff0c\u5728\u623f\u95f4\u5185\uff0c\u7535\u5f71\u5f0f\u7279\u5199\u955c\u5934\uff0c\u79fb\u52a8\u6444\u5f71\u673a\u89d2\u5ea6\u3002"} +{"id": "0000164", "video_name": "0309884b-e266-5c2e-91d8-df3845966fb0", "text": "\u4ed6\u6df1\u5438\u4e00\u53e3\u6c14\uff0c\u8fc8\u8fc7\u95e8\u69db\uff0c\u8e0f\u5165\u4e00\u4e2a\u88ab\u65f6\u95f4\u51bb\u7ed3\u7684\u4e16\u754c\u3002\n\u6df1\u591c\uff0c\u52a8\u6001\u7684\u884c\u52a8\u548c\u79fb\u52a8\uff0c\u89d2\u5ea6"} +{"id": "0000165", "video_name": "030a6dfe-d46b-5ffd-a8b8-5af510faef86", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5750\u5728\u684c\u5b50\u524d\u3002"} +{"id": "0000166", "video_name": "0310cffc-7e08-54da-b95e-f298aa95d26a", "text": "\u7eb3\u4f26\u5fb7\u62c9\u00b7\u83ab\u8fea\u5728\u8857\u4e0a\u8df3\u821e"} +{"id": "0000167", "video_name": "0313acd0-f34f-5d73-b945-40a94881ea18", "text": "\u9762\u6761\u6389\u8fdb\u4e00\u7897\u6c64\u91cc\u3002"} +{"id": "0000168", "video_name": "03258411-4efb-5f6a-94b9-cbcd94189bed", "text": "\u5973\u5b69\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u6ca1\u6709\u592a\u7a7a\u670d\u7684\u5faa\u73af\u3002"} +{"id": "0000169", "video_name": "0326bec8-8ff8-5edf-8604-3d59d16152a8", "text": "\u8001\u864e\u5728\u7011\u5e03\u4e0b\u8d85\u73b0\u5b9e\u7684\u7b3c\u5b50\u91cc\u3002"} +{"id": "0000170", "video_name": "032de537-b117-5f0e-92a7-66532a7924fc", "text": "\u9ad8\u901f\u516c\u8def1\u53f7\uff0c\u4e94\u5f69\u7f24\u7eb7\u7684\u5929\u7a7a\uff0c\u5f69\u8679\uff0c\u94f6\u6cb3\uff0c\u9713\u8679\u706f\u5149\uff0c\u9ad8\u901f\u516c\u8def\uff0c\u8def\u6807\uff0c\u5730\u56fe\uff0c\u706f"} +{"id": "0000171", "video_name": "032f90e1-0084-569e-99cc-6789f7595d68", "text": "\u4e00\u4e2a\u7537\u4eba\u9a7e\u9a76\u7740\u4e00\u8f86\u8fd0\u52a8\u8f66\u5728\u8428\u5c14\u74e6\u591a\u7684\u8857\u9053\u4e0a\u884c\u9a76\u3002"} +{"id": "0000172", "video_name": "03342a88-4b0e-5ec4-922d-c2faff0e87ff", "text": "\u6709\u4e00\u4e2a\u5bfb\u6c42\u5192\u9669\u768410\u5c81\u7537\u5b69\u7ea6\u7ff0\u5c45\u4f4f\u5728\u90a3\u91cc\u3002"} +{"id": "0000173", "video_name": "03376759-450b-52a4-a9fb-798f24b284f5", "text": "\u73b0\u5b9e\u7684\u884c\u661f\uff0c\u5448\u8584\u997c\u72b6\uff0c\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "0000174", "video_name": "03389ce2-ca57-5da2-88a0-991c570425ac", "text": "\u6a21\u7279\u5fae\u7b11\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "0000175", "video_name": "033bcac9-25db-5c64-8c18-719552d92d1f", "text": "\u4e16\u754c\u6b63\u5728\u62e5\u62b1\u6280\u672f\u3001\u4eba\u5de5\u667a\u80fd\u3001\u673a\u5668\u4eba\u548c\u81ea\u52a8\u5316\u8fd0\u52a8\u3002"} +{"id": "0000176", "video_name": "0342f18a-f60f-5877-a514-392db48e63ad", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5f69\u8272\u7684\u4e16\u754c\u91cc\uff0c\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u65e0\u5c3d\u7684\u8349\u5730\u4e4b\u95f4\uff0c\u4f4f\u7740\u4e24\u4e2a\u540d\u53ebAlex\u548cMaya\u7684"} +{"id": "0000177", "video_name": "03440f32-5c96-5acd-9c17-f6604196168e", "text": "\u7a7f\u7740\u5370\u5ea6\u670d\u88c5\u7684\u9a6c\u91cc\u4e9a\u5947\u4e50\u961f\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u6f14\u594f\u5409\u4ed6\uff0c\u86cb\u7cd5\uff0c\u5f69\u5e26\uff0c"} +{"id": "0000178", "video_name": "034c5018-9172-5425-aaef-7f45752973bc", "text": "\u4e00\u4e2a\u5728\u6d77\u6ee9\u4e0a\u884c\u8d70\u7684\u7537\u4eba\u7a81\u7136\u4ee5\u7535\u5f71\u5f0f\u8dcc\u5012\u5230\u6c34\u91cc\u3002"} +{"id": "0000179", "video_name": "034c61e3-5a10-51f2-bcc6-112bfd3a9cdc", "text": "\u6ee1\u6ee1\u6ea2\u51fa\u7684\u963f\u897f\u62c9\u7c98\u571f\u5b97\u6559\uff0c\u50cf\u4e54\u7eb3\u68ee\u00b7\u7c73\u65af\u7684\u5e95\u7eb9\u4e00\u6837\u91cd\u53e0\u7740\uff0c\u54c8\u745e\u6ce2"} +{"id": "0000180", "video_name": "034effc7-07a7-5b4d-bf04-0f94e7507859", "text": "\u4e00\u4e2a\u5206\u8eab\u53d8\u5f62\u6210\u4e3a\u5176\u4eba\u7c7b\u5f62\u6001\uff0c\u7535\u706b\u82b1\u7167\u4eae\u4e86\u8fd9\u4e2a\u53d8\u5f62\u3002\u6162\u52a8\u4f5c\u3002"} +{"id": "0000181", "video_name": "0350c8e2-e20d-5bb0-b388-038f750c7fbb", "text": "\u592a\u9633\u7a81\u7136\u6d88\u5931\u4e86\u3002"} +{"id": "0000182", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "\u8759\u8760\u4fa0\u7a7f\u7740\u672a\u6765\u9ad8\u79d1\u6280\u88c5\u7532\uff0c\u5e26\u6709\u7eb3\u7c73\u6280\u672f\u548c\u62ab\u98ce\u3002"} +{"id": "0000183", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "\u7537\u4eba\u624b\u62ff\u5f69\u7968\uff0c\u8138\u4e0a\u9732\u51fa\u60ca\u8bb6\u7684\u8868\u60c5\u3002"} +{"id": "0000184", "video_name": "035f7bdd-df1b-505d-ac0f-8b1283bddc7b", "text": "\u963f\u5229\u820d\u5c14\u00b7\u83ab\u6839\u4ec0\u6cf0\u56e0\u5012\u7acb\u8df3\u821e\uff0c\u5438\u7740\u4e00\u652f\u50cf\u9999\u8549\u90a3\u4e48\u5927\u7684\u9999\u70df\u3002"} +{"id": "0000185", "video_name": "036676c5-23f3-589b-811a-5158f3e0d300", "text": "\u7ef4\u91cc\u8fea\u59c6\u57ce\u5f00\u59cb\u4ece\u8150\u8d25\u548c\u72af\u7f6a\u7684\u4f24\u75d5\u4e2d\u6062\u590d\u3002"} +{"id": "0000186", "video_name": "036702e3-a4db-5549-87a2-5ce19155fdd9", "text": "\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u9ed1\u8272\u94f6\u7ffc\u6740\u624b\u6c7d\u8f66\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u903c\u771f\u81f3\u6781\u3002"} +{"id": "0000187", "video_name": "036dac5c-b710-57ab-8d75-ba91e12a56f3", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u3001\u6bd4\u5c14\u00b7\u76d6\u8328\u548c\u82f9\u679c\u3002"} +{"id": "0000188", "video_name": "037a0170-44e3-5ff7-8f47-0d9d89ed84d5", "text": "\u83ab\u963f\u5a1c\u548c\u6bdb\u4f0a\u5728\u5f39\u7740\u6728\u7434\u548c\u9f13\uff0c\u7334\u5b50\u5728\u80cc\u666f\u91cc\u8df3\u821e\u3002"} +{"id": "0000189", "video_name": "037a9a36-024e-5389-9ff9-2aa11fbfb9a4", "text": "\u56fd\u738b\u5750\u5728\u6cb3\u8fb9\u7684\u4e00\u68f5\u6811\u4e0b\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u795e\u5728\u6c34\u4e0a\u884c\u8d70\u3002"} +{"id": "0000190", "video_name": "037cf0fd-1c3f-5c45-bf87-2712dfd801e5", "text": "\u5728\u6d77\u6ee9\u6253\u6392\u7403\u7684\u5973\u6027\u3002"} +{"id": "0000191", "video_name": "0381770a-127a-5f97-91be-59911c4a62eb", "text": "\u4e00\u6bb5\u65f6\u957f\u4e03\u79d2\u7684\u89c6\u9891\uff0c\u753b\u9762\u4e2d\u4e00\u4f4d\u5973\u6027\u5728\u6d77\u4e2d\u6df1\u5165\u5230\u819d\u76d6\u5904\uff0c\u671b\u7740\u8f7b\u8f7b\u62cd\u6253\u7684\u6d77\u6d6a\uff0c\u5730\u5e73\u7ebf"} +{"id": "0000192", "video_name": "038899ec-762b-5d34-a4d4-dec960b5d2d4", "text": "\u54e5\u7279\u98ce\u683c\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u957f\u7740\u84dd\u8272\u7684\u957f\u53d1\u8df3\u821e\u3002"} +{"id": "0000193", "video_name": "038a9787-1dec-5938-852d-be741e027d2b", "text": "\u6050\u6016\u624b\u8868\u5728\u591c\u665a\u884c\u8d70\u3002"} +{"id": "0000194", "video_name": "038f0c3e-5b79-5320-9e77-98eca72531c8", "text": "\u89d2\u8272\u4e4b\u95f4\u7684\u53f2\u8bd7\u822c\u7684\u6218\u6597\uff1a\u5175\u3001\u8c61\u3001\u9a6c\u3001\u8f66\u3001\u4e00\u4f4d\u7687\u540e\u548c\u4e00\u4f4d\u56fd\u738b\u3002"} +{"id": "0000195", "video_name": "03900473-54cc-50f5-acec-de4758aec38b", "text": "\u6a59\u8272\u665a\u971e\u4e2d\u7f13\u6162\u79fb\u52a8\u7684\u4e91\u6735\u3002"} +{"id": "0000196", "video_name": "0397e6a0-67ba-5aa0-8985-f6557da88601", "text": "\u5236\u4f5c\u7c7b\u4f3c\u7684\u4e1c\u897f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000197", "video_name": "039daf82-20aa-5c49-95fb-5748a4e8e488", "text": "\u8df3\u8dc3\u548c\u7740\u9646\uff0c\u52a8\u6001\uff0c4k\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0000198", "video_name": "039f565e-e584-551f-a621-4a4d304a21a1", "text": "\u9a86\u9a7c\u625b\u7740\u88ab\u9ec4\u91d1\u548c\u8d22\u5bcc\u5305\u88f9\u7684\u975e\u6d32\u56fd\u738b\u5728\u6c99\u6f20\u4e2d\u653e\u677e\u3002"} +{"id": "0000199", "video_name": "03aba788-cd33-5d1e-b493-74067487983d", "text": "\u7c73\u5947\u8001\u9f20\u5728SEO\u672f\u8bed\u7684\u8ff7\u5bab\u4e2d\u5954\u8dd1\u3002"} +{"id": "0000200", "video_name": "03af1d22-1d0e-571e-ab7f-f889e0e95f56", "text": "\u5361\u901a\uff0c\u70e4\u5976\u916a\u878d\u5316\uff0c\u8272\u5f69\u7f24\u7eb7\u7684\u53a8\u623f\u8fd0\u52a8"} +{"id": "0000201", "video_name": "03b184d8-c60f-5039-93eb-cdf4370eb7ee", "text": "\u4e00\u4e2a\u5b66\u751f\u548c\u5979\u7684\u670b\u53cb\u4e00\u8d77\u9605\u8bfb\u5723\u7ecf\u3002"} +{"id": "0000202", "video_name": "03b8abe4-00e7-5808-8acf-9975aa1103f3", "text": "\u5f53\u771f\u5b9e\u548c\u8bda\u5b9e\u7684\u751f\u6d3b\u4e2d\u5145\u6ee1\u7231\u548c\u60c5\u611f\u65f6\uff0c\u5b83\u4eec\u66f4\u6709\u4ef7\u503c\u3002"} +{"id": "0000203", "video_name": "03bc1f32-1279-587f-9152-824b6c4c8acc", "text": "\u5fae\u751f\u7269\u5728\u8611\u83c7\u65c1\u88ab\u62cd\u6444\u4e0b\u6765\uff0c\u79d1\u5e7b8K\u3002"} +{"id": "0000204", "video_name": "03ce7d7f-5101-5cee-9928-daa744b27850", "text": "\u84dd\u8272\u548c\u9ec4\u8272\u7684\u8d5b\u535a\u670b\u514b\u6b66\u58eb\uff0c\u624b\u81c2\u4e0a\u6709\u9f7f\u8f6e\uff0c\u8bd5\u56fe\u62c9\u8d77\u6c7d\u8f66\u3002"} +{"id": "0000205", "video_name": "03d0f830-865b-5939-894c-6a0a4934bc9b", "text": "\u4ece\u524d\uff0c\u5728\u8ff7\u4eba\u7684\u5e03\u5362\u59c6\u65af\u4f2f\u91cc\u738b\u56fd\u91cc\uff0c\u4f4f\u7740\u4e00\u4f4d\u540d\u53eb\u5f17\u96f7\u5fb7\u91cc\u514b\u7684\u4ec1\u6148\u6e29\u548c\u56fd"} +{"id": "0000206", "video_name": "03d6e903-1fe3-5a9a-abaa-cfa98e8365e1", "text": "\u6234\u7740\u53d1\u8fab\u7684\u7537\u5b50\u5728\u592a\u7a7a\u4e2d\u6f14\u594f\u5c0f\u63d0\u7434\uff0c\u9ad8\u7ec6\u8282\u6570\u5b57\u63d2\u56fe\u3002"} +{"id": "0000207", "video_name": "03d71294-1b83-5914-8d37-83fe5ed19bc9", "text": "\u521b\u4f5c\u4e00\u79cd\u7eaa\u5f55\u7247\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5c55\u793a\u79d1\u5b66\u5bb6\u5236\u9020\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u3002"} +{"id": "0000208", "video_name": "03e10ea3-ba6e-5fb4-a5fb-d1dd4b7cf3e8", "text": "\u4e00\u4e2a\u4f4e\u591a\u8fb9\u5f62\u7684\u9999\u70df\u71c3\u70e7\u5e76\u53d8\u77ed\uff0c\u5192\u7740\u70df\u3002"} +{"id": "0000209", "video_name": "03e3ecfc-3013-5541-b65f-71d30e7051d9", "text": "\u6d77\u6d0b\u7684\u6ce2\u6d6a\u4f34\u968f\u7740\u5fc3\u5f62\u548c\u95ea\u5149\uff0c\u4f20\u9012\u7740\u7231\u3002"} +{"id": "0000210", "video_name": "03e63553-2a77-5926-af19-81b5c71c509e", "text": "\u63cf\u8ff0\u76db\u5927\u5bb4\u4f1a\u7684\u51c6\u5907\u5de5\u4f5c\u3002\u52a8\u7269\u4eec\u4e3a\u4e86\u8ba9\u5e86\u795d\u6d3b\u52a8\u66f4\u52a0\u7279\u522b\u505a\u4e86\u4ec0\u4e48\uff1f"} +{"id": "0000211", "video_name": "03e8516f-7790-5361-8810-ad6ee65f1a50", "text": "\u96e8\u3002\u4fe1\u606f\uff1aGratus\u5728\u68ee\u6797\u91cc\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000212", "video_name": "03e97113-9bc2-5533-9d5d-a4243cce74d5", "text": "\u4e00\u4e2a\u6469\u6d1b\u54e5\u7537\u5b50\u5728\u57c3\u53ca\u7684\u6492\u54c8\u62c9\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "0000213", "video_name": "03ee1b49-625b-5698-9ac7-e5d08bf6d332", "text": "dragons and unicorns roamed freely, there lived a brave knight named Sir Lancelot.\n\n\u5728\u795e\u5947\u7684\u6731\u683c\u5229\u4e9a\u56fd\u5ea6\u91cc\uff0c\u9f99\u548c\u72ec\u89d2\u517d\u81ea\u7531\u5730\u6f2b"} +{"id": "0000214", "video_name": "03fa4248-b422-5240-9514-1b2bf17965e3", "text": "\u4e00\u53ea\u91d1\u5c5e\u8718\u86db\u4fa0\uff0c\u7a7f\u7740\u9ed1\u7ea2\u8272\u7684\u591a\u9762\u51e0\u4f55\u98ce\u683c\u5957\u88c5\uff0c\u91c7\u7528vray\u8ffd\u8e2a\u6280\u672f\uff0c"} +{"id": "0000215", "video_name": "03fa6bcb-afa1-5a41-baf8-907f0dbb41c8", "text": "\u6c34\u65cf\u9986\u91cc\u6709\u91d1\u9c7c\u548c\u783e\u77f3\u5730\u9762\u3002\u7559\u8a00\uff1aADEMILY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0000216", "video_name": "03fab710-5899-5e4f-9918-2cf44793ad94", "text": "\u6770\u514b\u62bd\u5230\u4e86\u9ed1\u6843\u7687\u540e\uff0c\u5f69\u8272\u7684\u3002"} +{"id": "0000217", "video_name": "03fc90d8-4062-54ee-92dc-578c64b5c13b", "text": "\u7267\u7f8a\u4eba\u4eec\u4ef0\u671b\u5929\u7a7a\u4e2d\u7684\u5929\u4f7f\u3002\u4fe1\u606f\uff1a\u60ca\u53f9\u3002"} +{"id": "0000218", "video_name": "040c98ab-2624-5794-8906-86a4e46b7919", "text": "\u732b\u5916\u661f\u4eba\u8868\u6f14\u60ca\u4eba\u7684\u628a\u620f\uff0c\u5c55\u793a\u7740\u5b83\u4eec\u7684\u667a\u6167\u3002"} +{"id": "0000219", "video_name": "040ebf85-3d6b-54c7-a661-30f89df1f414", "text": "\u4e00\u4e2a\u5916\u661f\u98de\u8239\u5728\u7ebd\u7ea6\u53d1\u5c04\u3002"} +{"id": "0000220", "video_name": "04175e1f-6a67-52c0-b7db-b30d336791c7", "text": "\u5b9d\u5b9d\u9a91\u5728\u4e00\u53ea\u72d0\u72f8\u8eab\u4e0a\uff0c\u5b83\u5728\u7530\u91ce\u91cc\u8ffd\u9010\u7740\u4e00\u53ea\u5154\u5b50\u3002"} +{"id": "0000221", "video_name": "04211139-c3a7-5e9d-a494-c9a630667087", "text": "\u5de8\u578b\u7403\u5f62\u7b3c\u5b50\u5185\uff0c\u4e0b\u96e8\u5929\uff0c\u5df4\u6bd4\u5a03\u5a03\u624b\u6301\u67aa\u652f\uff0c\u7c7b\u4f3c\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u98ce\u683c\uff0c8K"} +{"id": "0000222", "video_name": "04232062-fd43-5d87-bfb0-db9c8234feff", "text": "5\u5206\u949f\u957f\u7684\u89c6\u9891\u4ecb\u7ecd\u5546\u54c1\u548c\u670d\u52a1\u7684\u8d28\u91cf\u5206\u5e03\u3002"} +{"id": "0000223", "video_name": "04277587-ded3-5b84-a5e6-515f194e9c21", "text": "\u73c0\u897f\u611f\u5230\u88ab\u6392\u9664\u5728\u670b\u53cb\u4eec\u51c6\u5907\u8fdc\u8db3\u7684\u884c\u52a8\u4e4b\u5916\u3002"} +{"id": "0000224", "video_name": "042c196b-a3e6-579a-a384-75e3a19a488f", "text": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u5149\uff0c\u5c71\u8109\u548c\u6d77\u5cb8\u3002"} +{"id": "0000225", "video_name": "042f3d4e-9e50-5550-bd9c-8322d9a30937", "text": "\u52a8\u6f2b\u89d2\u8272\u751c\u7f8e\u7684\u957f\u7c89\u8272\u5934\u53d1\u5973\u5b69\uff0c\u624b\u6301\u4e00\u628a\u5200\u5fae\u7b11\u7740\u7ad9\u7740\u3002"} +{"id": "0000226", "video_name": "04381842-1e37-530e-9ff5-f68b4ab541aa", "text": "\u96c5\u5178\u5e0c\u814a\u57ce\u5e02\u591c\u666f\u5e15\u53f0\u519c\u795e\u5e99\uff0c\u4ee5\u53ca\u4e00\u53ea\u7ffc\u9f99\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u52a8\u753b\u903c\u771f\u7684\u7535\u5f71\u53f2"} +{"id": "0000227", "video_name": "043e39e7-be2d-5332-82ae-f135553cebb5", "text": "\u9ed1\u8272\u6c34\u6ce2\u5728\u767d\u8272\u57f9\u517b\u76bf\u5185\u731b\u70c8\u78b0\u649e\u7684\u7eb3\u7c73\u7ea7\u89c2\u70b9\uff0c\u9ed1\u3001\u767d\u3001\u7070\u8272\u8c03\u642d\u914d\u6696"} +{"id": "0000228", "video_name": "043eb0c0-f8e3-5ff1-b6ad-d3d4f32bb85e", "text": "10\u5206\u949f\u7684\u82f1\u8bed\u52a8\u753b\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "0000229", "video_name": "0441e193-16b5-5ddf-8d3b-fa15045c94e0", "text": "\u975e3D\u3002\u975e\u5361\u901a\u3002\u975e\u52a8\u6f2b\u3002\u771f\u5b9e\u4eba\u4f53\u5de5\u7a0b\u5b66\u3002\u9ad8\u8d28\u91cf\u5199\u5b9e\u3002\u8ff7\u4f60\u6bd4\u57fa\u5c3c\u5c11\u5973\u3002"} +{"id": "0000230", "video_name": "0450d5f9-61fe-5d1d-840f-feb9b25d8f2c", "text": "\u5728\u4e00\u573a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\uff0c\u8036\u7a23\u6253\u4e86\u5723\u8bde\u8001\u4eba\u4e00\u62f3\u3002\u5468\u56f4\u7684\u4eba\u8df3\u821e\uff0c\u706f\u5149\u95ea\u70c1\u3002"} +{"id": "0000231", "video_name": "0451babf-9da2-5f56-907c-7bff0a174c0a", "text": "\u7a7f\u7740\u76d4\u7532\u7684\u79d1\u5e7b\u6218\u58eb\u5728\u65e5\u843d\u65f6\u5206\u7a7f\u8fc7\u68ee\u6797\uff0c\u80cc\u666f\u662f\u9ad8\u5c71\uff0c\u52a8\u4f5c\u8fc5\u731b\u3002"} +{"id": "0000232", "video_name": "0453cec4-76b1-5c55-ac2e-d7d4a9fe3493", "text": "\u6cb3\u9a6c\u5728\u573a\u5730\u5468\u56f4\u5954\u8dd1\u5e76\u7b11\u7740\u3002"} +{"id": "0000233", "video_name": "0454fb0b-a6fd-5bb1-a98f-1a480b16f986", "text": "\u7f8e\u4e3d\u7684\u5973\u58eb\u6b63\u5fd9\u7740\u4f7f\u7528\u5979\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "0000234", "video_name": "0455373a-68c4-5e99-96be-9859c20218d7", "text": "\u8b66\u5458\u5728\u8857\u5934\u8df3\u821e\u3002"} +{"id": "0000235", "video_name": "045aa0fe-0900-56d2-8afc-04671829fe4d", "text": "\u5236\u4f5c\u4e00\u4e2a\u540d\u4e3aFordel\u7684\u5546\u6807\u3002"} +{"id": "0000236", "video_name": "045af3aa-d2c5-58d3-8e8e-285543a3cb33", "text": "\u4e00\u53ea\u8ff7\u5931\u4e86\u7fa4\u4f53\u7684\u5c0f\u8424\u706b\u866b\uff0c\u5076\u7136\u53d1\u73b0\u4e86\u4e00\u5bb6\u88ab\u9057\u5fd8\u7684\u949f\u8868\u5e97\uff0c\u90a3\u91cc\u7684\u65f6\u95f4\u81ea\u6700\u540e\u4e00\u6b21\u62a5\u65f6\u8d77\u5c31"} +{"id": "0000237", "video_name": "045b3d90-7e4b-54ed-a8ca-058b4961c8ba", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u5154\u5b50\u5f39\u5409\u4ed6\u3002"} +{"id": "0000238", "video_name": "046215c6-edff-5c44-9863-0f8544da404e", "text": "\u5370\u5ea6\u8bae\u4f1a\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ad8\u8f9b\u70f7\u6e32\u67d3\uff0c\u591c\u95f4\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "0000239", "video_name": "0462c408-07f9-583f-9073-e8eb16ed9bd1", "text": "\u679c\u51bb\uff1a\u6d46\u679c\u5473"} +{"id": "0000240", "video_name": "0463b136-7087-5bfa-aeef-7b16d0d0e7ce", "text": "\u6b27\u6d32\u6b4c\u5531\u5927\u8d5b\u4e3b\u821e\u53f0\u7684\u56fe\u7247\u3002\u6574\u4e2a\u753b\u9762\u5145\u6ee1\u4e86\u8bb8\u591a\u7ea2\u8272\u548c\u9ed1\u8272\u7684\u610f\u8c61\u3002\u6709\u5f88\u591a\u5f88\u591a\u7684\u7ea2"} +{"id": "0000241", "video_name": "046b3909-009f-59cb-b363-f4ec6504cc3d", "text": "\u8349\u8722\u5728\u571f\u8def\u4e0a\u8df3\u8dc3\u7740\u7a7f\u8d8a\u82b1\u4e1b\u3002"} +{"id": "0000242", "video_name": "046bcbc2-6652-55f9-ae23-356903dfcb19", "text": "\u5723\u8bde\u96ea\u6a47\uff0c\u5728\u592a\u7a7a\u4e2d\u53d8\u6210\u4e86\u4e00\u8258\u5b87\u5b99\u98de\u8239\uff0c\u7a7f\u8d8a\u94f6\u6cb3\u3002 \n\nSource sentence: The cat is sitting on the windowsill"} +{"id": "0000243", "video_name": "047602c1-20f8-5541-b38c-d641c7a19a28", "text": "\u4e00\u6247\u60ac\u6d6e\u5728\u767d\u8272\u7a7a\u95f4\u4e2d\u7684\u95e8\u6253\u5f00\u4e86\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u4e30\u5bcc\u591a\u5f69\u7684\u4e16\u754c\u3002"} +{"id": "0000244", "video_name": "047bba29-76a6-53d6-b8ce-d8e75ca8d97b", "text": "\u5728\u4e8c\u6218\u7684\u6050\u6016\u4e2d\uff0c\u8001\u9f20\u822a\u884c\u5fb7\u56fd\u96c6\u4e2d\u8425\u7684\u6b8b\u9177\uff0c\u4e0e\u5404\u79cd\u5404\u6837\u7684\u540c\u4f34\u5efa\u7acb\u8054\u76df\uff0c\u5e76"} +{"id": "0000245", "video_name": "047cd22d-7955-5e3e-81e2-2045b49f74e0", "text": "\u4e00\u4e2a\u4eba\u5728\u4e00\u4e2a\u5c0f\u6728\u5de5\u5e97\u7684\u5f62\u5f0f\u4e0a\u7684\u7406\u5ff5\u4e0a\u3002"} +{"id": "0000246", "video_name": "04853db3-30f5-58e8-a17a-0dc2d0968bf7", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u91d1\u53d1\u5973\u5b69\u7a7f\u7740\u4f18\u96c5\u7684\u84dd\u8272\u793c\u670d\u3002 \n\nSource sentence: My favorite food is sushi. \n\n\u6211\u6700\u559c\u6b22\u7684\u98df\u7269\u662f\u5bff"} +{"id": "0000247", "video_name": "0490768a-e310-5eee-bb59-16e5e8746402", "text": "\u6708\u7403\u4e0a\u8bde\u751f\u4e86\u4e00\u4e2a\u9ed1\u8272\u7684\u86cb\uff0c\u76f4\u5f8416\u6beb\u7c73\uff0c\u9ed1\u767d\u8272\uff0c\u5199\u5b9e\u3002"} +{"id": "0000248", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "\u8ba9\u8fd9\u4e2a\u5c0f\u5973\u5b69\u8df3\u5f97\u9ad8\u4e00\u70b9\u3002"} +{"id": "0000249", "video_name": "0497ff25-ce66-5fd4-83f6-fe29ad0ec76a", "text": "\u5e74\u8f7b\u7537\u5b50\u6b63\u5728\u8bfb\u4e66\uff0c\u7a81\u7136\u6709\u4e00\u4e2a\u5927\u7684\u9886\u609f\uff0c\u62ac\u5934\u671b\u5411\u524d\u65b9\u3002"} +{"id": "0000250", "video_name": "0499f50b-f0ba-534d-be19-b0ada44ff715", "text": "\u8fdc\u8fdc\u7684\u4e00\u7247\u8302\u5bc6\u68ee\u6797"} +{"id": "0000251", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "\u5e7f\u9614\u6df1\u9083\u7684\u7a7a\u95f4\uff0c\u6f02\u6d6e\u7740\u4e00\u4e2a\u6709\u51e0\u53ea\u95ea\u70c1\u773c\u775b\u7684\u6444\u50cf\u5934\u3002"} +{"id": "0000252", "video_name": "04a0e85e-e4b8-5aa5-a39c-57d60e058a9c", "text": "\u8fbe\u80fd\u662f\u4e00\u4e2a\u4e73\u5236\u54c1\u54c1\u724c\uff0c\u521b\u9020\u4e86\u4e00\u79cd\u5f62\u8c61\u3002"} +{"id": "0000253", "video_name": "04a2eb9b-2787-542f-bfe2-6050c556cf31", "text": "\u5370\u5ea6\u98ce\u683c\u7684\u5c0f\u9ea6\u997c\u5e72\uff0c4K\u8d28\u91cf\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\u3002"} +{"id": "0000254", "video_name": "04a89ebb-e5ff-5119-8969-b321ee5ef561", "text": "\u8d85\u73b0\u5b9e\u7684\u4e16\u754c\uff0c\u7eff\u8272\uff0c\u7834\u70c2\u4e0d\u582a\uff0c\u6ce5\u571f\u5473\uff0c\u6866\u6811\u76ae\u3002\u6d88\u606f\uff1a\u4f60\u597d\u3002"} +{"id": "0000255", "video_name": "04b1ea98-bc7e-58fb-b0e9-2accabae5782", "text": "\u5728\u5bf9\u6297\u4e2d\uff0c\u7ea6\u7ff0\u7784\u51c6\u5e76\u5f00\u706b\uff0c\u5f15\u53d1\u4e86\u4e00\u573a\u6fc0\u70c8\u7684\u67aa\u6218\u3002\u5b50\u5f39\u98de\u821e\uff0c\u5f39\u7247\u95ea"} +{"id": "0000256", "video_name": "04b665b9-fa45-5c5a-abe9-dda134793ece", "text": "\u665a\u971e\u4e2d\u98d8\u8361\u7684\u9ea6\u6d6a\u56fe\u7247"} +{"id": "0000257", "video_name": "04bcc6e3-6824-599b-ae55-d1fb8e344559", "text": "\u4f60\u6b63\u5728\u9006\u5411\u884c\u9a76\uff0c\u8bd5\u56fe\u8eb2\u907f\u6bcf\u4e00\u8f86\u8f66\u3002"} +{"id": "0000258", "video_name": "04bd6d52-9a8d-5c8a-a1d3-e4fb71da1cef", "text": "\u7528\u8fd9\u6839\u7fbd\u6bdb\uff0c\u5979\u53ef\u4ee5\u671b\u89c1\u56db\u9762\u516b\u65b9\u6570\u82f1\u91cc\u4e4b\u5916\u7684\u666f\u8c61\uff0c\u53d1\u73b0\u6797\u5730\u5730\u9762\u4e0a\u751a\u81f3\u662f\u5fae\u5c0f\u6606\u866b\u6216\u662f\u9ad8"} +{"id": "0000259", "video_name": "04bf1a3f-d992-5482-9164-57b18413a39e", "text": "\u4e00\u53ea\u5c0f\u732b\u5728\u624b\u4e0a\u8df3\u821e\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "0000260", "video_name": "04c37fff-7acc-515f-bc20-db7b5aae9ae4", "text": "\u7334\u5b50\u4e3a\u9c7c\u611f\u5230\u9057\u61be\uff0c\u51b3\u5b9a\u5e2e\u52a9\u5b83\u3002"} +{"id": "0000261", "video_name": "04c4d3b4-f9bd-503b-806f-484a482568db", "text": "\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6cf3\u88c5\u7684\u52a8\u6f2b\u98ce\u683c\u975e\u5e38\u5438\u5f15\u4eba\u7684\u5973\u5b69\u3002"} +{"id": "0000262", "video_name": "04c71990-9959-5fc8-bcea-6bca55926f8f", "text": "\u829d\u52a0\u54e5\u9ed1\u5e2e\u65f6\u671f\u7684\u8857\u9053\u4e0a\uff0c\u4eba\u4eec\u548c\u8f66\u8f86\u5728\u8857\u9053\u4e0a\u7a7f\u68ad\uff0c\u57ce\u5e02\u7684\u5168\u666f\u98ce\u666f\u3002"} +{"id": "0000263", "video_name": "04cd3abf-feea-5a53-b50c-875cd9a217dc", "text": "\u4e00\u4f4d\u7267\u5e08\u62ff\u51fa\u4e00\u67b6\u5723\u5341\u5b57\u67b6\u3002"} +{"id": "0000264", "video_name": "04cefd0b-697c-5f22-922a-7981df4c2d3c", "text": "\u4e00\u4e2a\u4eba\u5728\u6124\u6012\u623f\u95f4\u91cc\u7ffb\u684c\u5b50\u3002"} +{"id": "0000265", "video_name": "04cf9fd2-bf78-5402-b2ab-9596851d9d43", "text": "\u4e00\u4f4d\u8fd0\u52a8\u5458\u7a7f\u7740\u8010\u514b\u6c14\u57ab\u978b\u8dd1\u6b65\u3002"} +{"id": "0000266", "video_name": "04d14ada-39c5-51cd-95ac-2e31116cf874", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u4e00\u4e2a\u6237\u5916\u5e7f\u573a\u7684\u4e2d\u5fc3\uff0c\u6709\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u548c\u9ed1\u8272\u5e3d\u5b50\u7684\u7537\u5b69\u3002\u5929\u7a7a\u53d8\u5f97\u6697\u6de1\uff0c"} +{"id": "0000267", "video_name": "04d2ca99-393a-577e-80e4-0a912d63f54a", "text": "\u4e00\u5f20\u62fc\u8d34\u753b\uff0c\u5c55\u793a\u91d1\u6bdb\u730e\u72ac\u548c\u62c9\u5e03\u62c9\u591a\u730e\u72ac\u5e76\u6392\u7684\u72ec\u7279\u5916\u8c8c\u3002"} +{"id": "0000268", "video_name": "04d57141-5444-5435-baa7-6261489bf4ac", "text": "\u5f7c\u6b64\u5e2e\u52a9\uff0c\u5171\u540c\u524d\u884c\u3002"} +{"id": "0000269", "video_name": "04d7c3a4-7e0e-54bb-bd7c-2b999da62cd6", "text": "\u80cc\u666f\u97f3\u4e50\uff1a\u8f7b\u5feb\u6fc0\u52b1\u7684\u65cb\u5f8b\u3002\u5c4f\u5e55\u4e0a\u5448\u73b0\u51fa\u4e00\u5e45\u5bbd\u9614\u3001\u660e\u4eae\u3001\u6c14\u52bf\u78c5"} +{"id": "0000270", "video_name": "04d847ab-0bf3-5b95-be84-9cc380e381cf", "text": "\u5728\u91cf\u5b50\u9886\u57df\u4e2d\u53d1\u751f\u91cf\u5b50\u7206\u70b8\uff0c\u4f34\u968f\u7740\u7f8e\u4e3d\u7684\u706b\u82b1\u548c\u7535\u5b50\u7c92\u5b50\u7684\u788e\u88c2\u3002"} +{"id": "0000271", "video_name": "04d84be7-d965-5a9c-94ba-1c1e295eb5db", "text": "\u7535\u5f71\u822c\u7684\u89d2\u5ea6\uff0c\u751f\u6c14\u7684\u5546\u4eba\u6325\u52a8\u4ed6\u7684\u624b\u81c2\uff0c\u4ed6\u9762\u5411\u4e00\u4e9b\u516c\u53f8\u5458\u5de5\u3002"} +{"id": "0000272", "video_name": "04dc1ab9-7f94-5755-923f-0bcb230c211e", "text": "\u50cf\u4e00\u500b\u5728\u52d5\u6f2b\u98a8\u683c\u4e0b\u5728\u623f\u9593\u88e1\u5b78\u7fd2\u7684\u7537\u5b69\u3002"} +{"id": "0000273", "video_name": "04e107cc-3d8b-5e80-8b5b-ae2357ac9725", "text": "\u6027\u611f\u7684\u4eba\u7c7b\u5973\u5b69\u53d8\u8eab\u4e3a\u9f99\u3002"} +{"id": "0000274", "video_name": "04e7d42b-901f-5692-9491-9d6666139dbb", "text": "\u6211\u9700\u8981\u4e00\u5f20\u5973\u6027\u5316\u7684\u81ea\u7136\u98ce\u666f\u56fe\u7247\u4f5c\u4e3a\u7b14\u8bb0\u672c\u7684\u80cc\u666f\u3002"} +{"id": "0000275", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "\u718a\u732b\u592b\u5987\u5728\u7af9\u6797\u91cc\u4e0e\u677e\u9f20\u3001\u5c0f\u72d0\u72f8\u3001\u5c0f\u6d63\u718a\u3001\u5c0f\u9e7f\u548c\u4e91\u96c0\u4e00\u8d77"} +{"id": "0000276", "video_name": "04ecefd2-3b71-55c5-8471-ded61fb5baa2", "text": "\u4e09\u4f4d\u82f1\u96c4\u2014\u2014\u4e00\u53ea\u9f99\u3001\u4e00\u4e2a\u5c0f\u516c\u4e3b\u548c\u4e00\u4e2a\u94f6\u6cb3\u5fcd\u8005\u58eb\u5175\uff0c\u4ed6\u4eec\u7684\u4f7f\u547d\u662f\u62ef\u6551\u5b87\u5b99\uff0c\u6545\u4e8b\u60c5\u8282"} +{"id": "0000277", "video_name": "04f1693e-d5e6-5b44-8f46-ebc145e9041e", "text": "\u4e00\u4e2a\u72ec\u81ea\u8d70\u5728\u57ce\u5e02\u91cc\u7684\u7537\u4eba\u3002"} +{"id": "0000278", "video_name": "04f4c944-7e65-5719-81fd-5a07a26c11da", "text": "\u5728\u4e00\u4e2a\u5c0f\u5c0f\u7684\u6751\u5e84\u91cc\uff0c\u6709\u4e09\u4e2a\u5fe0\u8bda\u7684\u670b\u53cb\u827e\u54c8\u8fc8\u5fb7\u3001\u83b1\u62c9\u548c\u963f\u91cc\u00b7\u54c8\u6851\u3002\u4ed6\u4eec\u6bcf\u5929\u653e\u5b66\u540e"} +{"id": "0000279", "video_name": "04fc53e3-b0f8-5e4c-a991-3c6bf9dc4414", "text": "\u4e4c\u514b\u517019\u4e16\u7eaa\u6751\u5e84\u4e00\u5bf9\u60c5\u4fa3\u5728\u623f\u5b50\u9644\u8fd1\u62e5\u62b1\uff0c\u89c6\u9891"} +{"id": "0000280", "video_name": "04fc58aa-6015-57aa-a530-058c7962b689", "text": "\u5f53\u9547\u6c11\u671d\u7740\u95f9\u9b3c\u7684\u623f\u5b50\u524d\u8fdb\u65f6\uff0c\u4ed6\u4eec\u7684\u5341\u5b57\u67b6\u5728\u6708\u5149\u4e0b\u95ea\u8000\uff0c\u51c6\u5907\u4e0e\u5176\u4e2d\u7684\u90aa\u7075\u6218"} +{"id": "0000281", "video_name": "04fcdef8-11f5-5cf2-bda7-86068056ab14", "text": "\u90a3\u4e2a\u4eba\u6b63\u9a7e\u9a76\u7740\u4e00\u8f86\u540e\u8f6e\u62ac\u8d77\u7684\u5c0f\u578b\u6469\u6258\u8f66\u5728\u57ce\u5e02\u91cc\u8f6c\u5708\u3002"} +{"id": "0000282", "video_name": "0501ae39-1a8d-517e-ae13-2afec8b888a8", "text": "\u4e00\u8f86\u7531\u5de7\u514b\u529b\u5236\u6210\u7684\u5170\u535a\u57fa\u5c3c\u4ee5\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "0000283", "video_name": "0504b553-6178-5033-b0d8-eb127060cadc", "text": "\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u7206\u70b8\uff0c\u6234\u592b\u00b7\u5409\u672c\u65af\u98ce\u683c"} +{"id": "0000284", "video_name": "05080a72-00a8-51eb-a1fc-0867898a4b0f", "text": "\u4e00\u7fa4\u6c7d\u8f66\u5de5\u7a0b\u5e08\u6b63\u5728\u7814\u53d1\u65b0\u7684\u521b\u65b0\u5de5\u5177\u3002"} +{"id": "0000285", "video_name": "05082f19-2548-513f-867a-0e10bb6bc5d3", "text": "\u7f57\u7f57\u8bfa\u4e9a\u00b7\u7d22\u9686\u4ece\u5730\u4e0a\u7ad9\u8d77\u6765\uff0c\u80f8\u53e3\u6df1\u5904\u6709\u4e00\u9053\u4f24\u53e3\uff0c\u5448\u52a8\u753b\u98ce\u683c\u8f6c\u8eab\u3002"} +{"id": "0000286", "video_name": "0511460f-4241-5ae5-95ea-09e994d8a99e", "text": "\u81ea\u7136\u5730\u79fb\u52a8\u5634\u5507\uff0c\u7728\u773c\u775b\uff0c\u8ba9\u773c\u775b\u548c\u9888\u90e8\u7684\u706f\u5149\u6d3b\u7075\u6d3b\u73b0\u3002"} +{"id": "0000287", "video_name": "0519438a-11e8-5736-b98e-176ff62d9d21", "text": "\u4e00\u4e2a\u7528\u94c5\u7b14\u753b\u7684\u84dd\u53d1\u7ea2\u773c\u7684\u7537\u5b69\u9047\u5230\u4e86\u4e00\u4e2a\u670b\u53cb\uff0c\u4ea4\u6d41\u4e86\u4e00\u70b9\uff0c\u7136\u540e\u7a7f\u8fc7\u4e86\u68ee\u6797\u3002"} +{"id": "0000288", "video_name": "052acd83-2b37-58b4-88b3-7f0940397f99", "text": "\u732b\u4f5c\u4e3a\u7f8e\u5f0f\u6a44\u6984\u7403\u7684\u5bbd\u63a5\u624b\n\nSource sentence: The sun rises in the east and sets in the west. \n\u592a\u9633\u4ece\u4e1c\u65b9\u5347\u8d77\uff0c\u897f\u65b9\u843d"} +{"id": "0000289", "video_name": "052d05f0-e5d0-5ba4-8dd6-52613f71ec44", "text": "\u4e00\u534a\u8702\u9e1f\uff0c\u4e00\u534a\u5154\u5b50\uff0c\u5728\u4ee5\u57c3\u83f2\u5c14\u94c1\u5854\u4e3a\u80cc\u666f\u7684\u6cb3\u8fb9\u996e\u6c34\u3002"} +{"id": "0000290", "video_name": "053d37b2-998f-5f9d-ad1d-6de6509ceba6", "text": "\u79d1\u5e7b\u7f8e\u56fd\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u6253\u814c\u83dc\u7403\u3002"} +{"id": "0000291", "video_name": "053ddea1-09ce-5c9e-99e2-a8cfb9b0ff7e", "text": "\u7425\u73c0\u00b7\u8d6b\u5fb7\u5728\u5979\u7684\u5e8a\u4e0a\u8df3\u8dc3\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u7ea74K\u3002"} +{"id": "0000292", "video_name": "05466e9c-c2b9-56cb-931c-1d404bc338b9", "text": "\u5b9d\u5b9d\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u9633\u5149\u7167\u8000\u3002"} +{"id": "0000293", "video_name": "054707f4-60f1-5f66-8d50-058e2e5e4475", "text": "\u6c34\u679c\u4ece\u9ec4\u76d2\u5b50\u91cc\u7206\u51fa\u6765\u4e86\u3002"} +{"id": "0000294", "video_name": "0550c352-f8e5-5cfe-afcc-e9d1752de2de", "text": "\u5e74\u8f7b\u4ebaAarav\uff0c\u5f53\u4ed6\u4eec\u5206\u4eab\u65e0\u58f0\u60c5\u611f\u65f6\uff0c\u4ed6\u4eec\u7684\u5fc3\u8df3\u52a0\u901f\u3002"} +{"id": "0000295", "video_name": "0550de73-fccd-5ae9-95c8-6e17a67d7d83", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u8ba9\u8bb8\u591a\u661f\u7cfb\u4e00\u8d77\u79fb\u52a8\u3002"} +{"id": "0000296", "video_name": "055d6794-6d70-593b-97d6-c568a01c0054", "text": "\u4e00\u6b3e\u5b8c\u7f8e\u7684\u4e73\u6e05\u86cb\u767d\u7c89\uff0c\u53ef\u4ee5\u4fc3\u8fdb\u808c\u8089\u751f\u957f\u548c\u589e\u5f3a\u514d\u75ab\u529b\u3002"} +{"id": "0000297", "video_name": "0562501d-c249-586a-9736-ae57474593d5", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u6444\u5f71\u5c55\u73b0\u4e86\u4fc4\u7f57\u65af\u5b87\u822a\u5458\u5728\u8054\u76df\u53f7\u5b87\u5b99\u98de\u8239\u4e2d\u7684\u60c5\u666f\u3002"} +{"id": "0000298", "video_name": "056a3f4c-a50e-5b99-9bc3-bb6e7dd7d982", "text": "\u90a3\u4e2a\u5973\u5b69\u6cbf\u7740\u79cb\u8272\u5c0f\u5df7\u8d70\u7740\u3002\u5979\u7684\u5934\u53d1\u548c\u88d9\u5b50\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "0000299", "video_name": "056f5e1d-fe89-5ebe-b1b8-40a440628398", "text": "\u5ea7\u5934\u9cb8\u7684\u6d77\u5e95\u5f71\u50cf"} +{"id": "0000300", "video_name": "05750ec5-9903-5628-ab53-feba8a2bdabe", "text": "\u8d1d\u5362\u65af\u79d1\u5c3c\u54ed\u6ce3\uff0c\u6cea\u6c34\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "0000301", "video_name": "057a1d19-2365-5b77-8210-685490174eaa", "text": "\u4e00\u5f20\u795e\u79d8\u7684\u5c9b\u5c7f\u5730\u56fe\uff0c\u6765\u81ea\u4e00\u672c\u6545\u4e8b\u4e664k\u3002"} +{"id": "0000302", "video_name": "057c0f4d-f7c3-53e1-af09-837296980b14", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u7fa4\u72fc\u5954\u8dd1\u7740\uff0c\u5929\u7a7a\u4e2d\u6302\u7740\u4e00\u8f6e\u5de8\u5927\u7684\u6ee1\u6708\u3002\u91c7\u7528\u5938\u5f20\u7684"} +{"id": "0000303", "video_name": "057e56ea-fd29-5be3-a3ea-101923b8f68c", "text": "\u4e00\u4e2a\u732b\u4ece\u4e00\u4e2a\u6709\u94b1\u7684\u7334\u5b50\u90a3\u91cc\u5077\u4e86\u4e00\u4e2a\u9999\u8549\u3002"} +{"id": "0000304", "video_name": "057f16ac-bde7-59f1-ab28-1142fd42e7f9", "text": "\u5361\u901a\u96ea\u4eba\u5728\u5c71\u4e0a\uff0c\u96ea\u82b1\u98d8\u843d\u3002"} +{"id": "0000305", "video_name": "057fd2ee-dc22-5f0c-8c3f-32bcdeb177c8", "text": "\u8c6a\u534e\u6c7d\u8f66\u5728\u4e00\u4e2a\u7a7a\u65f7\u7684\u573a\u5730\u4e0a\u76f8\u4e92\u7ade\u901f\u3002"} +{"id": "0000306", "video_name": "05818696-f533-50cd-ae81-63f583723318", "text": "\u8fd9\u4e2a\u5973\u4eba\u5728\u7535\u89c6\u4e0a\u8c08\u8bba\u52a0\u84ec\u7684\u60c5\u51b5\u3002"} +{"id": "0000307", "video_name": "058b06a7-6f59-5794-9bc1-343c9d51a804", "text": "\u8352\u6f20\u4e2d\u4e00\u4e2a\u5e9f\u5f03\u7684\u5c0f\u9547\u91cc\u7684\u725b\u4ed4"} +{"id": "0000308", "video_name": "058bf298-e5f9-5ddd-a182-c73948a0903f", "text": "\u52fe\u8d77\u597d\u5947\u5fc3\uff0c\u6d1b\u857e\u83b1\u6df1\u5165\u753b\u4e2d\uff0c\u53d1\u73b0\u81ea\u5df1\u7f6e\u8eab\u4e8e\u4e00\u4e2a\u4ee4\u4eba\u7740\u8ff7\u7684\u68a6\u5883\u4e2d\uff0c\u8272\u5f69"} +{"id": "0000309", "video_name": "05905520-2970-54cd-abc8-ecfb3dfa00b8", "text": "\u9e1f\u513f\u5728\u592a\u9633\u4e0b\u98de\u7fd4\u7684\u5361\u901a\u52a8\u753b\uff0c2D\u98de\u884c\u9e1f\u548c\u592a\u9633\u5728\u5929\u7a7a\u5347\u8d77\uff0c\u4e91\u5f69\u5728\u79fb\u52a8\u3002"} +{"id": "0000310", "video_name": "059298b6-9d71-5e51-b729-f3ba64ecb045", "text": "\u5f53\u4ed6\u6b63\u51c6\u5907\u79bb\u5f00\u65f6\uff0c\u4e00\u4e2a\u6e29\u67d4\u7684\u58f0\u97f3\u4ece\u7011\u5e03\u540e\u9762\u4f20\u6765\u3002\u90a3\u662f\u68ee\u6797\u7684\u5b88\u62a4\u8005\uff0c\u4e00\u53ea\u53e4\u8001\u7684\u3001"} +{"id": "0000311", "video_name": "0592db9e-60b5-550f-8e77-57cd093566a0", "text": "\u6050\u6016\u7535\u5f71\u7684\u4e16\u754c\u5145\u6ee1\u4e86\u5413\u4eba\u7684\u573a\u666f\u3002"} +{"id": "0000312", "video_name": "059b9e48-fe3f-5b68-b090-2f3cd4f3f6d5", "text": "\u4e00\u5e45\u5b81\u9759\u3001\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u573a\u666f\uff0c\u5bb6\u5ead\u5728\u6c34\u4e2d\u73a9\u800d\u3002"} +{"id": "0000313", "video_name": "05a1f9fb-f34d-53c3-8a7c-c0e47e51cd60", "text": "\u8fdc\u7a0b\u529e\u516c\u7684VR\u754c\u9762\uff1a\u521b\u5efa\u4e00\u4e2a\u4f69\u6234VR\u773c\u955c\u7684\u4eba\u5728\u5bb6\u5ead\u529e\u516c\u5ba4\u91cc\u7684\u5f62\u8c61\uff0c\u5b8c\u5168\u6c89\u6d78\u5728\u5168\u606f\u5de5\u4f5c\u533a"} +{"id": "0000314", "video_name": "05a4d9a5-e583-5df4-87b3-f75f2c3d524a", "text": "\u6210\u5e74\u4eba\u5728\u6d77\u6ee9\u4e0a\u62bd\u70df\u3002"} +{"id": "0000315", "video_name": "05a73523-100f-5353-ab2b-8429004e5d98", "text": "\u4e24\u4e2a\u7537\u6027\u80cc\u9760\u80cc\u62e5\u62b1\uff0c\u671b\u7740\u5e03\u5b9c\u8bfa\u65af\u827e\u5229\u65af\u5efa\u7b51\u3001\u8bbe\u8ba1\u548c\u57ce\u5e02\u89c4\u5212\u5b66\u9662\u3002"} +{"id": "0000316", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "\u7897\u91cc\u7684\u4e00\u5806\u7cd6\u679c"} +{"id": "0000317", "video_name": "05a8e4c6-5a63-58e2-b40c-bd652112cfc1", "text": "\u73b0\u5b9e\u4fa7\u9762\u89d2\u5ea6\u89c6\u89d2\u4e0b\uff0c\u4e24\u4eba\u5728\u4e00\u4e2a\u5f00\u9614\u7684\u573a\u5730\u4e0a\u9ece\u660e\u65f6\u5206\u51b3\u6597\uff0c\u9ad8\u6e0516:9\u3002"} +{"id": "0000318", "video_name": "05b21085-53ba-53b9-947f-77bf303096f1", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u7236\u4eb2\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u624b\u6301\u957f\u77db\u548c\u5f13\u7bad\u3002\u7537\u5b69\u5174\u594b\u5730\u56db\u5904\u5f20\u671b\uff0c\u800c\u4ed6\u7684"} +{"id": "0000319", "video_name": "05b3a98f-8127-5242-921a-6a11c8bb1e99", "text": "\u4ece\u5728\u51b0\u5c9b\u516c\u8def\u4e0a\u5f00\u8f66\u65f6\u7a97\u6237\u5916\u770b\u5230\u7684\u666f\u8c61\u3002"} +{"id": "0000320", "video_name": "05b7092c-43c3-5f07-828e-d515aba7bf92", "text": "\u661f\u7403\u5927\u6218\u7684\u5236\u4f5c\u7167\uff0c\u7531\u4e9a\u5386\u676d\u5fb7\u7f57\u00b7\u970d\u591a\u7f57\u592b\u65af\u57fa\u62cd\u6444\uff0c35\u6beb\u7c7320ASA\u67ef\u8fbe\u514b\u5f69"} +{"id": "0000321", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "\u4eba\u4eec\u5411\u4e00\u4f4d\u5973\u5b69\u6c42\u52a9\uff0c\u52a8\u753b\uff0c4k\uff0c\u903c\u771f\u3002"} +{"id": "0000322", "video_name": "05bc59ea-5160-5377-a367-0c4d5cbcca14", "text": "\u7a7f\u7740\u80fd\u52a8\u7684\u88d9\u5b50\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000323", "video_name": "05c60099-82e0-5841-a0db-0730ab43f2a6", "text": "\u8096\u50cf\u6a21\u5f0f\u7684\u9ed1\u767d\u8d70\u5eca\uff0c\u5e7d\u7075\u5feb\u901f\u4ece\u95e8\u5230\u95e8\u79fb\u52a8\u3002"} +{"id": "0000324", "video_name": "05cfeb88-007b-503f-9b6b-f2e29b3fcb9c", "text": "\u7f8e\u5f97\u8ba9\u4eba\u65e0\u8a00\u4ee5\u5bf9\uff0c\u963f\u5c14\u4f2f\u6258\u00b7\u74e6\u5c14\u52a0\u65af\u3001\u5e15\u7279\u91cc\u514b\u00b7\u7eb3\u683c\u5c14\uff0c\u6d41\u884c\u827a\u672f\u3002"} +{"id": "0000325", "video_name": "05d05cba-5740-5c96-942e-7956d6ae599b", "text": "3D\u6253\u5370\u673a\u6253\u5370\u6a21\u578b\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u903c\u771f\u3002"} +{"id": "0000326", "video_name": "05d97264-60ca-54dc-81f1-dd3aaee930c8", "text": "Translation: \u5f53\u5927\u5b66\u751f\u4eec\u5728\u591c\u665a\u5f98\u5f8a\u65f6"} +{"id": "0000327", "video_name": "05da3e74-4a29-5897-8c65-94146c594c7d", "text": "\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u4e91\u6735\uff0c\u4ece\u5929\u7a7a\u4e2d\u964d\u4e34\u4e0b\u6765\u4e00\u4e2a\u62e5\u6709\u7fc5\u8180\u7684\u91d1\u53d1\u5e74\u8f7b\u7537\u5b50\uff0c\u662f\u4e00\u4f4d\u5929\u4f7f\u5728\u4fef"} +{"id": "0000328", "video_name": "05de3869-7bf4-5620-9b48-9462d629391a", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u51dd\u89c6\u7740\u4e00\u4e2a\u957f\u800c\u6df1\u7684\u9ed1\u6697\u5c71\u8c37\u3002"} +{"id": "0000329", "video_name": "05df50bd-1042-55c3-8ab7-42147ad3d4e0", "text": "\u62c9\u7ef4\u62ff\u8d77\u90a3\u672c\u65e7\u4e66\uff0c\u64e6\u62ed\u6389\u7070\u5c18\uff0c\u5c55\u73b0\u51fa\u5b83\u7cbe\u7f8e\u7684\u5c01\u9762\u3002"} +{"id": "0000330", "video_name": "05e33804-5482-5ed0-9a4a-7e138d846812", "text": "\u4e00\u53ea\u732b\u5728\u5929\u7a7a\u4e2d\u8df3\u4f1e\uff0c\u8d85\u903c\u771f\uff0c16K\u3002"} +{"id": "0000331", "video_name": "05ed4abf-2492-56c5-b7cf-738e105d274f", "text": "\u4e00\u4e2a\u5728\u975e\u6d32\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u4e0b\u6709\u6d41\u52a8\u6c34\u7684\u57ce\u5e02\u6d77\u6ee9\u3002"} +{"id": "0000332", "video_name": "05f2c1fc-d3a1-5356-88d1-d343f97c3181", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u4ece\u5e8a\u4e0a\u8d77\u5e8a\u3002"} +{"id": "0000333", "video_name": "05fb2a50-e8e2-57c9-816a-4f7eb90b5307", "text": "\u7537\u4eba\u8d70\u5728\u88ab\u6bc1\u706d\u7684\u82cf\u8054\u57ce\u5e02\u4e2d\u3002"} +{"id": "0000334", "video_name": "060489c2-3d48-5b28-b0b2-d50a45990399", "text": "\u521b\u5efa\u4e00\u5e45\u63d2\u56fe\uff0c\u4ee5\u53ef\u89c6\u5316\u751f\u7269\u591a\u6837\u6027\u7684\u4e0b\u964d\u3002\u63cf\u7ed8\u53d7\u5a01\u80c1\u6216\u6fd2\u4e34\u706d\u7edd\u7684\u52a8\u690d\u7269\u7269"} +{"id": "0000335", "video_name": "060c553e-1328-516f-a055-902a9df07507", "text": "\u4e00\u4e2a\u4e91\u56fe\u6807\uff0c\u91d1\u5c5e\u8d28\u611f\uff0c\u7cbe\u7ec6\u7eb9\u7406\uff0c\u84dd\u767d\u6e10\u53d8\uff0c\u78e8\u7802\u73bb\u7483\uff0c\u900f\u660e\uff0c\u5177\u6709\u8d8b"} +{"id": "0000336", "video_name": "0613ea09-9aba-52d2-b591-52435499cac8", "text": "\u521b\u4f5c\u4e00\u4e2a\u540d\u4e3a\u201cTHE MOVING FILMS\u201d\u76842D\u63d2\u56fe\u6807\u5fd7\u3002"} +{"id": "0000337", "video_name": "06144843-60eb-51cc-8463-cf000c1341d0", "text": "\u72d7\u7a7f\u7740\u6d0b\u7ea2\u8272\u7684\u88d9\u5b50\u8df3\u821e\u3002"} +{"id": "0000338", "video_name": "0616db1d-af8a-58b5-9506-f946b0e35bb2", "text": "\u5728\u7ebd\u7ea6\u5e02\uff0c\u4e00\u4f4d\u7a7f\u7740\u6f02\u4eae\u5546\u52a1\u670d\u88c5\u7684\u5973\u6027\u8d70\u5728\u8857\u4e0a\uff0c\u7528\u4e00\u53ea\u624b\u6276\u7740\u8116\u5b50\u56e0\u4e3a\u9888\u90e8\u75bc"} +{"id": "0000339", "video_name": "061775bc-c583-51fe-b986-52bd42e480c1", "text": "\u6c14\u7403\u98de\u8d8a\u6218\u533a\u7684\u8d858\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "0000340", "video_name": "06189b51-0d5b-512a-a880-cbe37eeaacd5", "text": "\u897f\u897f\u91cc\u8239\u53ea\u5728\u65e7\u5386\u53f2\u753b\u9762\u4e2d\u88ab\u4e00\u8258\u8377\u5170\u8239\u88ad\u51fb\u3002"} +{"id": "0000341", "video_name": "06280e9b-141f-5363-a022-93bbcdf8f7d3", "text": "17\u4e16\u7eaa\u82f1\u56fd\u58eb\u5175\u902e\u6355\u975e\u6d32\u4eba\u5e76\u4f7f\u5176\u5c48\u670d\u7684\u753b\u9762\u5c55\u793a\u51fa\u6765\uff0c\u4ed6\u4eec\u9762\u90e8\u8868\u60c5\u548c\u59ff\u52bf\u8868\u8fbe\u51fa\u75db"} +{"id": "0000342", "video_name": "0629aa67-88f7-5016-8b7d-c1f293f8c838", "text": "\u5c71\u8def\u96a7\u9053\u5916\u7684\u4ea4\u901a\u60c5\u51b5\u3002"} +{"id": "0000343", "video_name": "062d32b3-a9bb-557b-a6a2-9e45075e0bfb", "text": "\u56fd\u5bb6\n\n\u5c55\u793a\u82cf\u4e39\u963f\u9f50\u5179\u63a5\u6536\u6765\u81ea\u90bb\u56fd\u7684\u4fe1\u606f\u3002"} +{"id": "0000344", "video_name": "062e975f-3c31-5d9b-aa21-322d082d2596", "text": "\u8fc8\u514b\u5c14\u4ee5\u300a\u4fa0\u76d7\u730e\u8f66\u624b5\u300b\u7684\u98ce\u683c\u53bb\u4ed6\u7684\u8f66\u90a3\u91cc\u3002"} +{"id": "0000345", "video_name": "06357738-bc66-5e4e-a9c8-cb0d5299ff35", "text": "\u5236\u4f5c\u4e00\u6bb5\u957f\u8fbe2\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e0d\u540c\u989c\u8272\u7684\u5851\u6599\u88ab\u7194\u5316\u5728\u4e00\u8d77\u7684\u8fc7\u7a0b\u3002"} +{"id": "0000346", "video_name": "06398b5d-d6fb-559f-97a3-d38eecdd3243", "text": "\u5728\u7f8e\u4e3d\u7684\u5fb7\u5dde\u52ff\u5fd8\u6211\u82b1\u7530\u4e2d\u5954\u8dd1\u7684\u5de8\u5927\u767d\u72d7\u3002\u8d77\u4f0f\u7684\u5c0f\u5c71\u3002"} +{"id": "0000347", "video_name": "063dab89-0287-5bfb-a606-a0b5fe6b2b0f", "text": "\u90aa\u6076\u75c5\u6bd2\u5728\u663e\u5fae\u955c\u4e0b\u5206\u88c2\uff0c\u7535\u5f71\u822c\u3001\u5fae\u89c2\u3001\u9ad8\u6e05\u6670\u5ea6\u3001\u653e\u5927\u3001\u66dd\u5149\u826f\u597d\u3001\u7126\u70b9\u4e3b"} +{"id": "0000348", "video_name": "063dadc3-8648-5d03-bc1f-e3365c7e9cb3", "text": "\u4e00\u5f20\u9759\u6001\u56fe\u7247\u8f6c\u4e3a\u4e00\u6bb5\u5feb\u4e50\u60c5\u4fa3\u5403\u51b0\u6fc0\u51cc\u7684\u89c6\u9891\u3002"} +{"id": "0000349", "video_name": "063f0458-c82b-51cb-b527-cbe06cb723ee", "text": "\u5c71\u4e0a\u7684\u51b7\u6749\u6797"} +{"id": "0000350", "video_name": "063f1520-b0e6-569f-85be-281c7d6f4e04", "text": "\u4e00\u4e2a\u62ff\u7740\u5927\u5251\u3001\u8eab\u7a7f\u7ea2\u91d1\u88c5\u3001\u7559\u7740\u9ed1\u8272\u957f\u53d1\u7684\u5973\u6b66\u58eb\u516c\u4e3b\uff0c\u4ee54K\u8be6\u7ec6\u80cc\u5149\u5f71\u50cf\u5448\u73b0\u3002"} +{"id": "0000351", "video_name": "063fe416-7962-5371-9817-453d35a1e97a", "text": "\u5728\u5bb6\u91cc\uff0c\u4e00\u7fa4\u732b\u5305\u56f4\u7740\u4e00\u6237\u767d\u4eba\u5bb6\u5ead\u3002"} +{"id": "0000352", "video_name": "06418933-7c94-5e46-a2e7-ab0f22a2ed18", "text": "\u6559\u5802\u5916\u9762\u6302\u7740\u4e00\u9762\u5f69\u8679\u65d7\uff0c\u73af\u7ed5\u6574\u4e2a\u5efa\u7b51\u3002"} +{"id": "0000353", "video_name": "064cf818-acfc-526d-a9ea-713f0b3ce36c", "text": "\u5deb\u5996\u738b\u963f\u5c14\u8428\u65af\u7684\u9762\u5b54\uff0c\u7741\u5f00\u773c\u775b\uff0c\u84dd\u8272\u5149\u8292\uff0c\u9ed1\u6697\u80cc\u666f\uff0c\u51b0\u51b7\u3002"} +{"id": "0000354", "video_name": "06517249-9af6-5d9e-996c-0baa24c98017", "text": "\u5728\u4e1c\u4eac\u8857\u4e0a\u6f2b\u6b65\u7684\u89c6\u89d2\uff1b\u8fd0\u52a84"} +{"id": "0000355", "video_name": "065683d2-9d65-59ba-87d5-394c2df277c3", "text": "\u83f2\u529b\u725b\u6392\u5939\u998d\uff0c\u684c\u5b50\u4e0a\u96fe\u6c14\u817e\u817e\uff0c\u5473\u9053\u7f8e\u5999\u3002"} +{"id": "0000356", "video_name": "06570a95-e471-540b-b9d3-4525eef7e6bd", "text": "\u7167\u7247\u5370\u5237\u54c1\u50cf\u4e00\u5ea7\u9ad8\u5854\u4e00\u6837\u5806\u79ef\u8d77\u6765\u3002"} +{"id": "0000357", "video_name": "065ad5f0-8edc-5f2f-be0d-f7feea18b5d3", "text": "\u5728\u6559\u5802\u524d\u8ba9\u4e00\u4e2a\u5deb\u5e08\u5bf9\u7740\u6444\u50cf\u5934\u8bf4\u8bdd\u3002"} +{"id": "0000358", "video_name": "065d9a8e-26d6-57d2-a071-319a2b2a78a3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6b63\u5728\u66f4\u6362\u6c7d\u8f66\u8f6e\u80ce\u3002\n\nSource sentence: She is studying to become a doctor. \n\n\u5979\u6b63\u5728\u5b66\u4e60\u6210\u4e3a\u4e00\u540d\u533b\u751f\u3002"} +{"id": "0000359", "video_name": "065e1508-1a9b-577c-835d-f91547d692f3", "text": "\u7537\u4eba\u5750\u5728\u684c\u5b50\u524d\uff0c\u6234\u7740\u8033\u673a\u63a5\u7535\u8bdd\u3002"} +{"id": "0000360", "video_name": "06625b0d-acfe-5fe8-b848-d45c046d0c55", "text": "\u65c5\u9986\u65c1\u505c\u8f66\u573a\u91cc\u6709\u5361\u8f66\u53f8\u673a\u7684\u9b3c\u9b42\u3002"} +{"id": "0000361", "video_name": "066dd0ae-6241-57f7-b630-8d667928b0db", "text": "\u4e00\u5f20\u7167\u7247\u663e\u793a\u4e86\u4e00\u5bb6\u4eba\u5728\u591c\u665a\u8212\u9002\u7684\u5bb6\u4e2d\u719f\u7761\uff0c\u6beb\u4e0d\u77e5\u60c5\u5916\u9762\u7684\u5371\u9669\u3002"} +{"id": "0000362", "video_name": "06703492-2727-5c73-8b3a-6f6148a0ada6", "text": "\u521b\u4f5c\u4e00\u4e2a\u4e61\u6751\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u4e9b\u8239\u53ea\u548c\u8239\u4e3b\u5728\u9876\u90e8\uff0c\u6240\u6709\u5176\u4ed6\u6751\u6c11\u90fd\u5728\u4ed6\u4eec\u7684\u519c\u7530\u91cc\u5de5\u4f5c\u3002\u4ee5\u5361\u901a\u98ce\u683c"} +{"id": "0000363", "video_name": "067d9823-4079-5f02-ba3c-4e78513afdff", "text": "\u4e00\u7fa4\u4eba\u5728\u57ce\u5e02\u91cc\u6342\u7740\u8033\u6735\uff0c\u56e0\u4e3a\u8fc7\u4e8e\u5927\u58f0\u7684\u58f0\u97f3\u800c\u611f\u5230\u75bc\u75db\u3002\u52a8\u753b\u3002"} +{"id": "0000364", "video_name": "067dee5a-9809-5afe-8ffe-a82e5b62108a", "text": "\u4e00\u4e2a\u52c7\u58eb\u5973\u5b69\u5728\u672b\u65e5\u573a\u666f\u4e0b\u63a5\u8fd1\u739b\u96c5\u5e9f\u589f\u3002"} +{"id": "0000365", "video_name": "06847b20-86fa-5a4c-99a5-884165f4ec3a", "text": "\u4e00\u53ea\u82f1\u56fd\u77ed\u6bdb\u7070\u732b\u5728\u98ce\u4e2d\u3002"} +{"id": "0000366", "video_name": "0688bc44-dcb5-540f-ac75-95caeb8bc950", "text": "Rabbit\u8bfe\u7a0b\u5b66\u5230\u7684\u6559\u8bad\u7684\u89c6\u89c9\u5448\u73b0\u3002\n\u57284k 16:9\u4e2d\u3002"} +{"id": "0000367", "video_name": "06890579-2dbe-54d0-ba53-c9c2cf8b87c0", "text": "\u4e00\u67b6\u98de\u673a\u5728\u7f8e\u4e3d\u7684\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u5c31\u50cf\u5546\u4e1a\u822a\u7a7a\u516c\u53f8\u5e7f\u544a\u4e2d\u7684\u4e00\u6837\u3002"} +{"id": "0000368", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "\u4e00\u4e2a\u7537\u5b69\u5f15\u5bfc\u4e00\u7fa4\u7f8a\u5728\u8349\u5730\u4e0a\u5403\u8349\u3002"} +{"id": "0000369", "video_name": "0693595c-fc72-5ae0-b2aa-15bf545d5337", "text": "Chinese translation: \u5f53\u516c\u4ea4\u8f66\u53f8\u673a\u8d70\u5411\u8f66\u8f86\u51c6\u5907\u5f00\u59cb\u5de5\u4f5c\u5e76\u4e0a\u8f66\u540e\uff0c\u4ed6\u5f00\u59cb\u8bf4\u8bdd\u3002"} +{"id": "0000370", "video_name": "069c7fff-cecf-5c26-a0da-8271cd826db1", "text": "\u5149\u901f\u65c5\u884c\u4e2d\u7684\u5b87\u5b99\u98de\u8239\u7a7f\u8d8a\u4e00\u4e2a\u6709\u661f\u4e91\u80cc\u666f\u7684\u73af\u5f62\u884c\u661f\u3002"} +{"id": "0000371", "video_name": "069f2234-e902-577c-8cd9-0a7811441bbb", "text": "\u4eba\u4eec\u5750\u5728\u6811\u4e0b\u7684\u5361\u901a\u56fe\u50cf"} +{"id": "0000372", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5fae\u7b11\u7740\uff0c\u7728\u4e86\u4e00\u53ea\u773c\u3002"} +{"id": "0000373", "video_name": "06af3159-17bf-539e-8243-8afc8fb53428", "text": "\u5236\u4f5c\u4e00\u4e2a\u4e09\u7ef4\u5361\u901a\u4eba\u624b\u9020\u578b\u7684\u89d2\u8272\uff0c\u62e5\u6709\u7c7b\u4f3c\u7fc5\u8180\u7684\u62c7\u6307\u548c\u5c0f\u6307\u53ef\u4ee5\u98de\u7fd4\uff0c\u6709\u53cc\u811a\u53ef\u4ee5"} +{"id": "0000374", "video_name": "06b288f5-072d-5607-9db7-2740bf75ded3", "text": "2050\u5e74\u7684\u672a\u6765\u4e16\u754c\uff0c\u6124\u6012\u7684\u5916\u661f\u4eba\uff0c\u660e\u4eae\u7684\u706f\u5149\uff0c\u9ad8\u8038\u7684\u5efa\u7b51\u3002"} +{"id": "0000375", "video_name": "06b54283-b836-5af4-b003-4b652814a5ce", "text": "\u591c\u665a\u8db3\u7403\u573a\u4e0a\uff0c\u7535\u5b50\u9a6c\u6765\u864e\u4e0e\u4e00\u53ea\u5927\u8c61\u5bf9\u624b\u5bf9\u6218\u3002"} +{"id": "0000376", "video_name": "06b7fe45-313a-5765-a2aa-d414f8882ded", "text": "\u739b\u4e3d\u6bcd\u4eb2\u548c\u7ea6\u745f\u592b\u4e00\u8d77\uff0c\u9a91\u9a86\u9a7c\u5728\u53e4\u4ee3\u4ee5\u8272\u5217\u6751\u5e84\u65c5\u884c\uff0c\u739b\u4e3d\u6bcd\u4eb2"} +{"id": "0000377", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "\u4e3b\u795e\u6e7f\u5a46\u5750\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e0a\uff0c4K\uff0c\u7f29\u653e\uff0c16:9\u3002"} +{"id": "0000378", "video_name": "06c5b563-2e63-5f41-9177-9527aa92a0d9", "text": "Translation: 1980\u5e74\u7f57\u7eb3\u5fb7\u00b7\u91cc\u6839\u5728\u5185\u9601\u4f1a\u8bae\u4e0a\u8bb2\u8bdd\u3002"} +{"id": "0000379", "video_name": "06d0a2b4-d182-5854-bab8-ab72c0c3eed5", "text": "\u4e00\u74f6\u8461\u8404\u9152\u5012\u5165\u73ab\u7470\u676f\u4e2d\u3002 \n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742"} +{"id": "0000380", "video_name": "06d2e8f8-9987-5fa9-914b-7608a24686b8", "text": "\u7ea6\u7ff0\u548c\u7c73\u8212\u5728\u6df1\u6797\u4e2d\u9a91\u81ea\u884c\u8f66\u65c5\u884c\u76843D\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "0000381", "video_name": "06d4db12-cab0-5072-8ffe-ed743be0d44b", "text": "\u6cb9\u753b\u827a\u672f\u98ce\u683c\u3002\u6ee1\u5e06\u7684\u4e09\u6845\u5e06\u8239\u5728\u590f\u65e5\u7834\u6d6a\u524d\u8fdb\u3002"} +{"id": "0000382", "video_name": "06dff108-e6ff-5ef2-8008-ac0b432f27ee", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u6c99\u9762\u56e2\u88ab\u5207\u5272\u6210\u5782\u76f4\u7684\u8584\u7247\u3002"} +{"id": "0000383", "video_name": "06e13d92-7ae4-57a1-9fa7-3b12ea7d92dc", "text": "\u73b0\u5b9e\uff0c\u5e27\u901f24\uff0c\u8fd0\u52a82\uff0c\u623f\u5b50\u91cc\u6709\u771f\u5b9e\u7684\u5973\u4eba\u73a9\u6d0b\u623f\u73a9\u5177\u3002"} +{"id": "0000384", "video_name": "06e61718-86c4-5a21-8000-d7fa9f09af8f", "text": "\u5c06\u4fe1\u606f\u521b\u9020\u6210Offerro\u6d41\u4f53\u548c\u9ed1\u8272\u80cc\u666f\u7684\u6d88\u606f\uff1a\u666e\u901a\u6280\u672f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000385", "video_name": "06f7014f-b544-516b-acc0-2ffcbf6acd43", "text": "3D\u5361\u901a\u8774\u8776\u8bf4\u5bf9\u4e0d\u8d77\u3002"} +{"id": "0000386", "video_name": "06fa8f8e-f8a9-5431-ae75-84ed2f36e18c", "text": "\u6f02\u6d6e\u5728\u6211\u4eec\u661f\u7403\u4e0a\u7684\u57ce\u5e02\u3002"} +{"id": "0000387", "video_name": "06fd013a-8e97-535d-bb08-9b893ea1257d", "text": "\u6218\u540e\u5e9f\u589f\u3001\u70df\u96fe\u3001\u53d8\u7126\u6548\u679c\u3001\u7535\u5f71\u822c\u7684\u30014k\u3001\u8d85\u903c\u771f\u3002"} +{"id": "0000388", "video_name": "06ffe2af-f2e3-517f-98cc-422432b6c56f", "text": "\u7a0b\u5e8f\u5458\u5728\u4ed6\u7684\u684c\u5b50\u524d\u75af\u72c2\u5730\u7f16\u5199\u4ee3\u7801\u3002"} +{"id": "0000389", "video_name": "07017496-2ef5-5356-8e1b-9dcfc85537ca", "text": "\u4e00\u53ea\u72ee\u5b50\u548c\u730e\u4eba\u4e00\u8d77\u8d70\u3002"} +{"id": "0000390", "video_name": "07074cb8-4399-5d55-85a7-821c53a1126d", "text": "\u5728\u7f8e\u4e3d\u7684\u7a3b\u7530\u4e0a\u5de5\u4f5c\u7684\u8bb8\u591a\u4eba\u548c\u52a8\u7269\u770b\u8d77\u6765\u90fd\u5f88\u5feb\u4e50\u3002"} +{"id": "0000391", "video_name": "07082abe-b7c9-5186-9bfc-1e99236f5733", "text": "\u4e00\u4e2a\u66b4\u4e71\u73b0\u573a\uff0c\u4e00\u7fa4\u4eba\u805a\u96c6\u5728\u4e00\u8f86\u7740\u706b\u7684\u8f66\u524d\u7684\u89c6\u9891\u3002\u4fe1\u606f\uff1aDIER DEOL\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0000392", "video_name": "070929b8-6106-542f-b177-2d641bf5c137", "text": "\u9759\u8c27\u7684\u68ee\u6797\u3002\u96fe\u8499\u8499\u7684\u591c\u665a\u3002\u4e00\u9053\u8eab\u5f71\u6d6e\u73b0\u3002\u95ea\u70c1\u3001\u534a\u900f\u660e\u3002\u8d85\u51e1\u7684\u52a8\u4f5c\uff0c"} +{"id": "0000393", "video_name": "0709f838-c35d-5ade-bd8f-9dace06dda41", "text": "\u4e00\u7fa4\u6d77\u9e25\u98de\u5411\u843d\u65e5\u7684\u8d85\u5199\u5b9e\u6e32\u67d3\u3002"} +{"id": "0000394", "video_name": "070caada-f27f-51d4-aed2-3dc6e40fa31d", "text": "\u970d\u6bd4\u7279\u4eba\u7a7f\u7740\u8ff7\u5e7b\u5370\u82b1\u7684\u4f69\u65af\u5229\uff0c\u8ff7\u5e7b\u6307\u73af\u738b\uff0c\u516d\u5341\u5e74\u4ee3\uff0c\u9b54\u6cd5\u68ee\u6797\uff0c16"} +{"id": "0000395", "video_name": "0715044d-2dcd-57cf-92de-8f09697b9d8d", "text": "\u4e00\u5f20\u516b\u5343\u50cf\u7d20\u7684\u903c\u771f\u7167\u7247\uff0c\u5c55\u73b0\u51fa\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\uff0c\u6709\u68d5\u6988\u6811\u548c\u906e\u9633\u4f1e\u3002\u5929\u7a7a\u6e5b"} +{"id": "0000396", "video_name": "071b11c6-5384-5c66-86b9-feac2961094a", "text": "\u4e00\u4f4d\u5f00\u7740\u5927\u8f66\u7684\u77f3\u6cb9\u5de5\u4eba\u5728\u6c99\u6f20\u4e0a\u884c\u9a76\uff0c\u8f66\u540e\u6709\u77f3\u6cb9\u6447\u81c2\uff0c\u9633\u5149\u4e0b\u7167\u8000\u7740\u8fd9\u8f864"} +{"id": "0000397", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "\u54c8\u58eb\u5947\u72d7\u5728\u8349\u539f\u4e0a\u8ffd\u9010\u5954\u8dd1\uff0c\u7a7a\u4e2d\u4fef\u77b0\u3002"} +{"id": "0000398", "video_name": "0722eadc-b697-5fea-bac2-8f84d89df4dd", "text": "\u5916\u661f\u4eba\u548c\u4eba\u7c7b\u5728\u5df4\u9ece\u4e00\u8d77\u7b11\u7684\u89c6\u9891"} +{"id": "0000399", "video_name": "07257020-a9f7-5a6b-844c-ad10da93c95e", "text": "\u585e\u7eb3\u6cb3\u5df2\u7ecf\u53d8\u6210\u4e86\u4e00\u4e2a\u88ab\u6c61\u67d3\u7684\u5e9f\u5730\u3002"} +{"id": "0000400", "video_name": "073ff166-661c-533a-918d-8578e7bc3b77", "text": "\u73b0\u4ee3\u4f4f\u5b85\u5efa\u7b51\u8bbe\u8ba1\u7531Bjorn Eagles\u5b8c\u6210\uff0c\u5efa\u7b51\u6444\u5f71\u98ce\u683c\u4e3aArchillect\uff0c\u5177\u6709\u672a\u6765\u4e3b\u4e49\u548c\u73b0\u4ee3\u4e3b\u4e49\u5efa\u7b51\u98ce\u683c\uff0c\u5468"} +{"id": "0000401", "video_name": "0742e434-68f0-570e-8570-bbc581ed030f", "text": "\u4e00\u4e2a\u6709\u68d5\u8272\u5934\u53d1\u7684\u7537\u4eba\u6b63\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "0000402", "video_name": "0743ed3b-5baa-5a97-9d07-c7f6bf6e629f", "text": "\u4e00\u4e2a\u7537\u5b69\u671d\u7740\u5b66\u6821\u8d70\u53bb\uff0c\u4ece\u9876\u90e8\u62cd\u6444\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8d85\u903c\u771f\u7684\uff0c4K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u9ad8\u5ea6"} +{"id": "0000403", "video_name": "074466cd-0e71-5424-a1ca-ca9d48a87907", "text": "\u5965\u5229\u5f17\u548c\u65af\u5e15\u57fa\u548c\u4e00\u5bb6\u5154\u5b50\u4e00\u8d77\u5750\u7740\uff0c\u4eab\u53d7\u7740\u8336\u4f1a\u4e0a\u7684\u7f8e\u98df\u548c\u4e94\u5f69\u6591\u6593\u7684\u8336\u676f"} +{"id": "0000404", "video_name": "07478a46-f6a7-56eb-8bc9-3e6431a901f5", "text": "\u4eba\u4eec\u6beb\u65e0\u8e2a\u8ff9\u5730\u6d88\u5931\uff0c\u53ea\u7559\u4e0b\u5728\u4ed6\u4eec\u4eb2\u4eba\u7684\u8bb0\u5fc6\u4e2d\u9010\u6e10\u6d88\u901d\u7684\u56de\u5fc6\u3002"} +{"id": "0000405", "video_name": "07499428-3b9c-5727-bcee-6d8277df45a4", "text": "\u67e5\u7406\u5179\u00b7\u585e\u9686\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728 Epcot \u4e2d\u5fc3\u7684\u4eba\u884c\u9053\u4e0a\u8d70\u8def\u3002"} +{"id": "0000406", "video_name": "074e5fb1-b07c-5b98-88d4-ea896ffdac06", "text": "\u4ea7\u54c1\u7f6e\u4e8e\u767d\u8272\u80cc\u666f\u4e0a\u7684\u653e\u5927\u955c\u9876\u90e8\u3002"} +{"id": "0000407", "video_name": "07521c50-56e9-57ac-a952-177cfbe47a71", "text": "\u9ed1\u8272\u5916\u5957\u7537\u5b50\u5728\u8272\u5f69\u6591\u6593\u7684\u5c0f\u697c\u8857\u533a\u4e2d\u88ab\u7206\u70b8\u548c\u70df\u96fe\u8986\u76d6\uff0c\u903c\u771f\u76848K\u6548\u679c\u3002"} +{"id": "0000408", "video_name": "07521fdb-e762-5959-9247-24489b0b06bc", "text": "\u6c14\u5019\u53d8\u5316\uff0c\u6cb3\u6d41\u5e72\u6db8\uff0c\u7535\u5f71\u7684\u4e3b\u9898"} +{"id": "0000409", "video_name": "07535b18-59e5-51ab-8d9e-497e2391267c", "text": "\u6a59\u8272\u53d8\u6210\u4e86\u4e00\u53ea\u5154\u5b50\u3002"} +{"id": "0000410", "video_name": "0753e089-a923-5bc6-82e2-c6e6143aa365", "text": "\u6b27\u6d32\u737e\u548c\u5b69\u5b50\u7684\u7ed8\u753b\u5de5\u5177\u73a9\u800d\u3002\n\nSource sentence: The sun sets behind the mountain, casting a golden glow on the fields below.\n\n\u592a\u9633\u843d\u5c71\u5728\u5c71\u540e"} +{"id": "0000411", "video_name": "0758e2ec-4801-579f-a8fa-527800f09e76", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5e0c\u4f2f\u6765\u4eba\u7a7f\u7740\u4e94\u989c\u516d\u8272\u7684\u957f\u886b\uff0c\u88ab\u4ed6\u5ac9\u5992\u7684\u5144\u5f1f\u6254\u8fdb\u4e86\u5e72\u71e5\u7684"} +{"id": "0000412", "video_name": "076117fa-cd53-5235-a6da-67da870f1ad6", "text": "\u672a\u6765\u4eba\u5de5\u667a\u80fd\u53d1\u5c55\u65b9\u5411\u76848K\u5206\u8fa8\u7387\u9ad8\u8d28\u91cf\u89c6\u9891\u3002"} +{"id": "0000413", "video_name": "0768628d-af27-5bb6-850d-3f28eca8a4b8", "text": "\u4e00\u4e2a13\u5c81\u7684\u5b69\u5b50\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "0000414", "video_name": "076c6055-1152-5e10-8bdd-623a24b70d61", "text": "\u9ed1\u6697\u7684\u623f\u95f4\uff0c\u591c\u665a\uff0c\u4e00\u4e2a\u5973\u4eba\u7ad9\u5728\u7a97\u524d\uff0c\u7a97\u6237\u6253\u5f00\u7740\uff0c\u623f\u95f4\u91cc\u5f25\u6f2b\u7740\u70df\u96fe\uff0c\u57ce\u5e02\u7684"} +{"id": "0000415", "video_name": "076c7c12-148a-5aab-a565-085901a995ce", "text": "\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u4f2f\u5229\u5179\u96e8\u6797\uff0c\u6ca1\u6709\u6c34\uff0c\u89c6\u89d2\u6a2a\u8de8\u98ce\u666f\uff0c\u5929\u7a7a\u4e2d\u6709\u9e1f\u3002"} +{"id": "0000416", "video_name": "0773a0e3-0858-5321-a44e-9ccfc5843970", "text": "\u5927\u4e2a\u5b50\u9ad8\u4e2a\u8001\u5e08\u5750\u5728\u7a7f\u7740\u5b66\u6821\u5236\u670d\u7684\u7f8e\u4e3d\u4e9a\u6d32\u5973\u5b66\u751f\u65c1\u8fb9\uff0c\u8d85\u73b0\u5b9e\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "0000417", "video_name": "077bbd61-17e9-5425-9d8f-05e3d91bb3eb", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u9633\u53f0\u4e0a\u4e0e\u7236\u4eb2\u4ea4\u8c08\u76846\u5c81\u60b2\u4f24\u5973\u5b69\uff0c\u4fdd\u6301\u5361\u901a\u80cc\u666f\u3002"} +{"id": "0000418", "video_name": "077bed4e-7b4f-56e2-9ec6-03a8ce40d5d9", "text": "\u7ffb\u8f6c\u5492\u8bed\uff1aSparky\u548c\u56e2\u961f\u4e00\u8d77\u5de5\u4f5c\uff0c\u9006\u8f6c\u575a\u679c\u6811\u4e0a\u7684\u53e4\u8001\u5492\u8bed\uff0c\u7a7a\u6c14\u4e2d\u5f25\u6f2b\u7740"} +{"id": "0000419", "video_name": "077cbf46-5b2c-5680-90e6-3edc2b49c972", "text": "\u4e00\u500b\u7537\u4eba\u7ad9\u5728\u4e00\u5ea7\u6a4b\u4e0a\uff0c\u4f4d\u65bc\u5ee3\u95ca\u7684\u6d77\u6d0b\u4e2d\u592e\u3002"} +{"id": "0000420", "video_name": "0783b780-a7ca-5fd1-b7fe-d9081044bf64", "text": "\u4e00\u4e2a\u975e\u5e38\u6027\u611f\u7684\u5065\u8eab\u6a21\u7279\u505a\u540e\u7a7a\u7ffb"} +{"id": "0000421", "video_name": "07885d6e-bb43-50db-90fd-660f06780859", "text": "\u7d2b\u7981\u57ce\u91cc\u7684\u96ea\uff0c\u7a7f\u7740\u660e\u671d\u670d\u88c5\u7684\u5973\u5b69\u3002"} +{"id": "0000422", "video_name": "078c3abe-34dd-5fb8-a7c7-bf0e7c02b4e6", "text": "\u8fbe\u4e3d\u5a05\u662f\u52a8\u753b\u7247\u300a\u8fbe\u4e3d\u5a05\u300b\u4e2d\u7684\u89d2\u8272\uff0c\u5979\u7528\u62d6\u628a\u6e05\u7406\u4e86\u756a\u8304\u9171\u6d12\u843d\u7684\u5730\u9762\u3002"} +{"id": "0000423", "video_name": "078c7868-8f02-5e83-94c8-6efcd3f631fd", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u72d7\u88ad\u51fb\u57ce\u5e02\uff0c\u73b0\u5b9e\u4e3b\u4e49\u7684\u58eb\u5175\u5219\u4fdd\u536b\u57ce\u5e024K\u3002"} +{"id": "0000424", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u70df\u96fe\u8fd0\u52a8\u3002"} +{"id": "0000425", "video_name": "07931dc4-446a-5ac0-9e5f-e19b4c303978", "text": "\u5b8c\u6574\u7684\u573a\u666f\uff0c\u4e09\u4e2a\u5a74\u513f\u54f2\u5b66\u5bb6\uff0c\u82cf\u683c\u62c9\u5e95\u5a74\u513f\uff0c\u67cf\u62c9\u56fe\u5a74\u513f\uff0c\u4e9a\u91cc\u58eb\u591a"} +{"id": "0000426", "video_name": "079342fb-6feb-5694-9791-3e06f9930029", "text": "\u4e07\u5723\u8282\u65f6\uff0c\u9ed1\u6697\u7684\u5a01\u5c14\u57fa\u8def\u94f6\u6cb3\u7cfb\u4e0a\u6709\u5357\u74dc\u3002\u7559\u8a00\uff1aElora\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000427", "video_name": "07981e3a-db91-5840-a905-e83728e9c791", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u7a97\u6237\u8fb9\u8bfb\u4e66\u3002"} +{"id": "0000428", "video_name": "079b0b07-3920-5fb1-a77e-39284565dc5c", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u5e8a\u4e0a\u88ab\u4e00\u58f0\u5de8\u54cd\u5435\u9192\u3002"} +{"id": "0000429", "video_name": "079c7485-b00d-566f-91f6-5e8c08c27b0a", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5634\u5df4\u8bf4\u7740\u5feb\u4e50\u7684\u8bdd\u3002 \n\nSource sentence: I am going to the store to buy some milk and bread. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u725b"} +{"id": "0000430", "video_name": "079c8e35-3891-5659-963c-29f281c81634", "text": "\u6b63\u5728\u4ece\u5185\u90e8\u63a5\u8fd1\u4e00\u5ea7\u5e9f\u5f03\u5efa\u7b51\u7684\u65e0\u4eba\u673a\u3002"} +{"id": "0000431", "video_name": "07a27e81-8f03-5b76-b3a3-2ea32af1419d", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u592a\u7a7a\u4e2d\u6e38\u6cf3\uff0c\u5915\u9633\u3002"} +{"id": "0000432", "video_name": "07ab4c21-d53e-53df-ba04-7b61bfb93bc8", "text": "\u8212\u5c14\u6f58\u5361\u63a5\u7740\u53bb\u627e\u4ed6\u7684\u5f1f\u5f1f\u62c9\u514b\u4ec0\u66fc\uff0c\u62c9\u514b\u4ec0\u66fc\u8868\u793a\u4ed6\u53ea\u662f\u62c9\u739b\u7684\u5f1f\u5f1f\uff0c\u4e0d\u503c\u5f97"} +{"id": "0000433", "video_name": "07b15ea1-4cee-576f-b9cf-fda1b3b1825f", "text": "\u73b0\u5b9e\u4e2d\u7684\u5973\u6027\u673a\u5668\u4eba\uff0c\u7a7f\u7740\u77ed\u9ed1\u88d9\u548c\u900f\u89c6\u4f4e\u80f8\u886c\u886b\uff0c\u5916\u8c8c\u4e9a\u6d32\u7f8e\u5973\uff0c\u8eab\u6750\u6027\u611f\uff0c\u957f"} +{"id": "0000434", "video_name": "07bc5f3a-d521-5d73-8c45-40e842bca9f5", "text": "\u52a8\u7269\u5728\u738b\u56fd\u7684\u5730\u9762\u4e0a\u5954\u8dd1\u3002"} +{"id": "0000435", "video_name": "07c1d79a-7a96-5838-9d20-674ff9340bf1", "text": "\u4e00\u7ec4\u5546\u4e1a\u4e13\u5bb6\u534f\u52a9\u4f01\u4e1a\u589e\u957f\u9500\u552e\u3002"} +{"id": "0000436", "video_name": "07d0dcde-2476-557a-a7a3-64f27d42975e", "text": "\u4eba\u4eec\u5728\u73bb\u5229\u7ef4\u4e9a\u6b96\u6c11\u57ce\u5e02\u4e2d\u884c\u8d70\u3002\u4fe1\u606f\uff1a\u62c9\u5df4\u65af\u3002 (\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53)"} +{"id": "0000437", "video_name": "07d2b4d5-7478-59fb-8d12-a8d479c8a47c", "text": "\u521b\u9020\u4e00\u4e2a\u6a21\u7cca\u7684\u9ed1\u6697\u80cc\u666f\uff0c\u770b\u4e0d\u5230\u4efb\u4f55\u4e1c\u897f\u3002\u7136\u540e\u5c4f\u5e55\u53d8\u5f97\u6e05\u6670\uff0c\u7126\u70b9\u96c6\u4e2d\uff0c\u6570\u636e\u70b9\u50cf\u6d41\u661f\u4e00\u6837\u5728"} +{"id": "0000438", "video_name": "07d39c2b-0575-5fd6-9554-7516d601d176", "text": "\u9ed1\u4eba\u8db3\u7403\u8fd0\u52a8\u5458\u3002\u4fe1\u606f\uff1a\u9a6c\u65af\u00b7\u514b\u62c9\u4f26\u65af\u00b7\u585e\u591a\u592b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0000439", "video_name": "07d4de22-7e6e-57e1-a403-e0f54942f02b", "text": "\u7070\u8272\u6234\u773c\u955c\u7684\u732b\u6b63\u5728\u7535\u8111\u4e0a\u73a9\u800d\u3002"} +{"id": "0000440", "video_name": "07d77af4-21f0-55b9-a5ca-e0ac7ec343bb", "text": "view footage released. \n\n\u6cf0\u5766\u5c3c\u514b\u53f7\u6c89\u8239\u4e8b\u4ef6\uff0c\u51b0\u5c71\u5d29\u584c\uff0c\u8239\u4f53\u7834\u88c2\uff0c\u9e1f\u77b0\u89c6\u89d2\u955c\u5934\u516c"} +{"id": "0000441", "video_name": "07e3ad60-b4c1-5121-8c37-db8cba90b88a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u4eba\u5728\u4e00\u6761\u6d41\u52a8\u7684\u900f\u660e\u767d\u8272\u88d9\u5b50\u91cc\u5c55\u73b0\u4e86\u5979\u9ad8\u6311\u81ea\u4fe1\u7684\u8eab\u6750\u3002\u80cc\u666f\u4e2d\u7684\u98ce\u666f\u5b81"} +{"id": "0000442", "video_name": "07e5dece-2f93-5d06-ad3a-4b288a42f23f", "text": "\u4e00\u6b3e\u673a\u5668\u4eba\u6218\u58eb\uff0c\u50cf\u9ad8\u8fbe\u7ffc\u6216\u53d8\u5f62\u91d1\u521a\uff0c\u4f46\u662f\u91c7\u7528\u8d5b\u8f66\u4e00\u7ea7\u65b9\u7a0b\u5f0f\u6885\u8d5b\u5fb7\u65af\u94f6\u7bad\u7684"} +{"id": "0000443", "video_name": "07e6fc24-9704-516d-a318-0f745260bea8", "text": "Translation: \u82f9\u679c\u53d8\u6210\u6a59\u5b50\u5f88\u771f\u5b9e\u3002"} +{"id": "0000444", "video_name": "07e86f2c-93ed-5b8a-a567-020f3c497b9e", "text": "\u53a8\u623f\u91cc\u5df2\u7ecf\u51c6\u5907\u597d\u4e86\u98df\u7269\u3002"} +{"id": "0000445", "video_name": "07eb980f-641d-56a2-aa93-3451b4a6c5e5", "text": "\u90a3\u53ea\u6a58\u84dd\u76f8\u95f4\u7684\u732b\u7ad9\u5728\u7af9\u6797\u65c1\u8fb9\uff0c\u6b63\u5728\u5403\u9c7c\u3002\n\nSource sentence: I am looking forward to seeing you soon.\n\u6211\u671f\u5f85\u7740"} +{"id": "0000446", "video_name": "07ee2ae0-86b3-5c05-9525-f1a90c53cc7b", "text": "\u521b\u4f5c\u4e00\u4e2a\u5361\u901a\u77ed\u7247\uff0c\u5185\u5bb9\u662f\u4e00\u53ea\u72d7\u5954\u8dd1\u548c\u73a9\u800d\u3002"} +{"id": "0000447", "video_name": "07f1c360-668c-59b4-abd6-5122b350d0ab", "text": "\u4e24\u4e2a\u6709\u7740\u4eba\u8138\u548c\u624b\u81c2\u7279\u5f81\u7684\u5706\u5708\u6b63\u5728\u8ba8\u8bba\u5929\u6c14\uff0c\u800c\u5929\u6c14\u8d8a\u6765\u8d8a\u70ed\u3002"} +{"id": "0000448", "video_name": "07f36c02-932d-51d8-9f63-0af469b10373", "text": "\u665a\u4e0a\u4e00\u4e2a\u4f24\u5fc3\u7684\u4eba\u5728\u5c71\u4e0a\u8d70\u3002"} +{"id": "0000449", "video_name": "07f8bd4d-4166-5333-a8d1-bbb1e4a64ee9", "text": "\u4e00\u95f4\u5367\u5ba4\uff0c\u67d4\u548c\u6e29\u6696\u7684\u706f\u5149\u7167\u4eae\u4e86\u573a\u666f\u3002\u4e24\u4e2a\u4eba\u7d27\u7d27\u5730\u8eba\u5728\u4e00\u8d77\uff0c\u6e29\u6696\u7684\u6bef\u5b50"} +{"id": "0000450", "video_name": "07fbd176-5470-5545-8bcc-e38a13c509c2", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5973\u6559\u5e08\u4e3a\u5979\u7684\u5b66\u751f\u4eec\u6559\u5b66\u3002"} +{"id": "0000451", "video_name": "08002da4-9b4b-591a-94fc-13f397f59208", "text": "\u5979\u4e00\u4e2a\u5c0f\u5973\u5b69\u72ec\u81ea\u5728\u4e00\u4e2a\u5927\u800c\u53ef\u6015\u7684\u56fe\u4e66\u9986\u91cc\uff0c\u800c\u5979\u5468\u56f4\u7684\u4e66\u672c\u7a81\u7136\u53d8\u5f97\u6d3b\u4e86\u8d77\u6765\u3002"} +{"id": "0000452", "video_name": "08011d59-d729-549e-94cf-3359f5ac2515", "text": "\u9b54\u6cd5\u8611\u83c7\u5f9e\u5929\u7a7a\u4e2d\u4e0b\u843d"} +{"id": "0000453", "video_name": "08050d16-bf65-5faa-b00c-d98e761f4698", "text": "\u5c55\u793a\u4e00\u4e2a\u5c0f\u6751\u5e84\u7684\u573a\u666f\uff0c\u4e00\u53ea\u597d\u5947\u806a\u660e\u7684\u7334\u5b50\u5750\u5728\u6811\u679d\u4e0a\u3002\u5728\u7334\u5b50\u65c1\u8fb9\uff0c\u4e00\u6761\u61d2"} +{"id": "0000454", "video_name": "08056941-6329-5d13-a552-babf1c8b306d", "text": "\u4e00\u4e2a\u5934\u53d1\u94f6\u767d\u8272\uff0c\u5927\u84dd\u773c\u775b\uff0c\u770b\u8d77\u6765\u50cf\u732b\u4e00\u6837\uff0c\u975e\u5e38\u7f8e\u4e3d\u7684\u5973\u5b69\u4f4f\u5728\u51b0\u5bab\u4e2d\u3002"} +{"id": "0000455", "video_name": "080a6c51-d19e-524b-99ed-b1a98c672811", "text": "\u5f88\u591a\u6751\u6c11\u90fd\u7ad9\u5728\u8001\u4eba\u9762\u524d\uff0c\u53cc\u624b\u5408\u5341\u3002"} +{"id": "0000456", "video_name": "080c79d8-b602-5848-8bb7-cead82986480", "text": "\u4e00\u6b3e\u53ef\u4ee5\u5012\u6d41\u65f6\u95f4\u7684\u949f\u8868\u3002"} +{"id": "0000457", "video_name": "08101bd6-dbf4-565b-9ba5-bfc0fb3398c8", "text": "\u5f00\u53d1\u4e00\u90e8\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u793a\u7ea2\u7ec6\u80de\u7684\u5fae\u89c2\u4e16\u754c\uff0c\u91cd\u70b9\u5173\u6ce8\u526a\u5207\u7ec6\u80de\u4f5c\u4e3a\u5fae\u5c0f\u8840\u7ba1\u75c5\u7406\u6027\u6eb6"} +{"id": "0000458", "video_name": "0813ebd4-1acd-5b6d-b306-6822c0433d7e", "text": "\u5893\u5730\uff0c\u660f\u6697\u7684\u5468\u56f4\u73af\u5883\uff0c\u79cb\u5b63\uff0c\u6811\u53f6\u98d8\u843d\u3002 \n\nSource sentence: I am grateful for your help and support. \n\u611f\u8c22\u60a8\u7684"} +{"id": "0000459", "video_name": "081739c6-75b8-588c-a767-23d06eef06d7", "text": "\u4e00\u540d\u7537\u5b50\u9a91\u7740\u7740\u706b\u7684\u6469\u6258\u8f66\u3002"} +{"id": "0000460", "video_name": "0819d28b-d45f-59c7-88b3-f304025296fe", "text": "\u68ee\u6797\u91cc\u7684\u4eba\u4eec\u805a\u5728\u4e00\u8d77\u5bfb\u627e\u90a3\u9897\u94bb\u77f3\uff0c\u4f46\u5374\u5728\u68ee\u6797\u7684\u9ed1\u6697\u533a\u57df\u8ff7\u8def\u4e86\u3002"} +{"id": "0000461", "video_name": "081c3109-c291-5771-b3a4-8be442219f01", "text": "\u7167\u7247\u822c\u903c\u771f\u7684\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u5728\u9ea6\u5f53\u52b3\u5403\u6c49\u5821\u3002"} +{"id": "0000462", "video_name": "081f25e9-900f-5027-80b9-1f70c924809b", "text": "\u53e4\u8001\u7684\u5f71\u7247\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u72fc\u4eba\uff0c\u98ce\u683c\u7c7b\u4f3c\u5f7c\u5f97\u00b7\u5a01\u7279\u91d1\u3001\u9524\u5b50\u6050\u6016\u7535\u5f71\u300a\u568e\u53eb\u300b\u3002"} +{"id": "0000463", "video_name": "082a9cc8-da81-5064-b5cc-7d1f3aabe0c5", "text": "\u7f8e\u56fd\u603b\u7edf\u62dc\u767b\u7684\u846c\u793c\uff0c\u5c55\u793a\u4e86\u62dc\u767b\u7684\u7167\u7247\u3002"} +{"id": "0000464", "video_name": "082bde14-8f27-5890-ba2f-676ee0db2222", "text": "\u9752\u5c11\u5e74\u7537\u6027\uff0c\u5377\u53d1\uff0c\u6234\u773c\u955c\uff0c\u7a7f\u7740\u6c34\u9e2d\u8272\u8fde\u5e3d\u886b\uff0c\u98ce\u683c\u7c7b\u4f3c\u6700\u7ec8\u5e7b\u60f3\uff0c\u5750\u5728"} +{"id": "0000465", "video_name": "082e2042-4dd3-53ca-8ab9-621932f5b0bf", "text": "\u521b\u4f5c\u4e00\u4e2a\u5c55\u793aCinegy Air\u8f6f\u4ef6\u5de5\u4f5c\u7684\u89c6\u9891\u3002"} +{"id": "0000466", "video_name": "082e3221-75b8-5757-9d8a-6d32a8ab37d3", "text": "\u4ed9\u5883\u91cc\u6709\u5404\u79cd\u5404\u6837\u7684\u5c0f\u52a8\u7269\u3002"} +{"id": "0000467", "video_name": "083026d5-4f7c-55e1-8aa0-773a3d631d28", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6728\u5c4b\u91cc\u8bfb\u4e66\u3002"} +{"id": "0000468", "video_name": "0832c245-cd08-56f1-875f-7dcab0a7afbf", "text": "\u8c46\u5b50\u4ece\u888b\u5b50\u91cc\u6389\u843d\uff0c\u5728\u4e2d\u6027\u80cc\u666f\u4e0b\u3002"} +{"id": "0000469", "video_name": "08331cab-384b-579a-ae5a-9ad42c84d844", "text": "\u6751\u6c11\u4eec\u7167\u987e\u73af\u5883\u7684\u6696\u5fc3\u753b\u9762\uff0c\u51e0\u4ee3\u4eba\u5171\u540c\u52aa\u529b\u3002"} +{"id": "0000470", "video_name": "083782f4-9af6-53f2-a9c7-a9f3af878684", "text": "\u5854\u5409\u9a6c\u54c8\u5c14\u4e0a\u7684\u592a\u7a7a\u98de\u8239\u56db\u5904\u6f2b\u6e38\u3002"} +{"id": "0000471", "video_name": "083c0bac-04f5-53a6-aa16-4ae69403381a", "text": "\u70ed\u95e8\u5973\u5b69\u89d2\u8272\u52a8\u6f2b\u5531\u6b4c\u548c\u8d70\u8def\u3002"} +{"id": "0000472", "video_name": "0841f9aa-e4e6-5f0c-9688-e482e510e790", "text": "\u5728\u5b8c\u5168\u7eff\u8272\u7684\u80cc\u666f\u4e0a\u521b\u5efa\u4e00\u53ea\u9752\u86d9\u7684\u4fa7\u9762\u89c6\u56fe\uff1b\u80cc\u666f\u5e94\u8be5\u6709\u4e00\u4e2a\u5355\u4e00\u7684\u7eff\u8272\u8c03\uff0c\u80cc\u666f\u4e2d\u4f7f\u7528\u7684\u7eff\u8272"} +{"id": "0000473", "video_name": "0845909f-9ca5-5b15-85d6-7cc09f72bda8", "text": "\u4e2d\u95f4\u7684\u592b\u5987\u5411\u955c\u5934\u8d70\u53bb\u3002"} +{"id": "0000474", "video_name": "0847d14f-b39d-54d8-861b-fce09ffb4906", "text": "\u72d7\u55e5\u5411\u5929\u7a7a\uff0c\u6f2b\u5a01\u5de5\u4f5c\u5ba4"} +{"id": "0000475", "video_name": "084f42ab-16c3-5b8e-a671-3bc06e76cea9", "text": "\u795e\u79d8\u7684 1970 \u5e74\u4ee3\u827a\u672f\u6050\u6016\u955c\u5934\uff0c\u63cf\u7ed8\u4e86\u8428\u6ee1\u4eea\u5f0f\u3002"} +{"id": "0000476", "video_name": "0850becf-7ba8-5eb9-97c0-effe6b68964d", "text": "\u4e00\u9897\u9668\u77f3\u7a7f\u8fc7\u4e91\u5c42\u5e76\u7206\u70b8\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "0000477", "video_name": "085422c9-b5a6-5876-a505-28494ccd7626", "text": "\u60ca\u4eba\u7684\u52a8\u6f2b\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "0000478", "video_name": "0857fbb5-29d2-5469-8a9b-939e410b6cfb", "text": "\u7687\u5e1d\u989d\u5934\u4e0a\u6709\u4e00\u9053\u6218\u6597\u4f24\u75a4\uff0c\u53f3\u8fb9\u6709\u4f4d\u753b\u5bb6\u5c06\u4e3a\u4ed6\u4f5c\u753b\uff0c16:9\uff0c\u9644\u4ef61\u3002"} +{"id": "0000479", "video_name": "085fe729-342b-505d-9f3d-8a176c9bd35d", "text": "\u4e00\u4e2a\u751c\u871c\u53c8\u7126\u8651\u7684\u7537\u4eba\u76f4\u89c6\u7740\u6444\u50cf\u5934\u7728\u773c\uff0c\u6c57\u6c34\u4ece\u989d\u5934\u4e0a\u6d41\u4e0b\u3002"} +{"id": "0000480", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "\u4e00\u540d\u7a7f\u7740\u76ae\u5939\u514b\u7684\u5973\u6027\u5728\u5954\u8dd1\uff0c\u4fa7\u9762\u89c6\u89d2\uff0c\u4e2d\u666f\uff0c\u955c\u5934\u5411\u4e0b\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "0000481", "video_name": "086ce4e4-7a43-5b3c-b2c5-5a98c01ff716", "text": "\u4e00\u5806\u624b\u638c\u4ece\u4f20\u9001\u95e8\u4e2d\u51fa\u73b0\uff0c\u6bcf\u53ea\u624b\u638c\u4e0a\u90fd\u6709\u4e00\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u5634\u5df4\u3002\u8fd9\u4e9b\u624b\u638c\u5728\u5929\u7a7a\u4e2d\u98de\u821e\uff0c\u5448\u73b0"} +{"id": "0000482", "video_name": "086db630-6e0b-5342-8a74-73befe7ec907", "text": "\u4e00\u4e2a\u5973\u5b69\u7a7f\u7740\u6f02\u4eae\u7684\u70ed\u88d9\u5b50\uff0c\u62cd\u4e86\u4e00\u5f20\u5168\u8eab\u7167\u7247\u3002"} +{"id": "0000483", "video_name": "086e1cb7-a1e4-5966-a7ed-0f616fac062a", "text": "\u5766\u514b\u7a7f\u8fc7\u68ee\u6797\uff0c\u6709\u590d\u53e4\u548c\u7535\u5f71\u611f\u3002\n\nSource sentence: The sun sets over the mountains, painting the sky with a beautiful orange and pink hue. \n\n\u592a\u9633\u5728\u5c71\u4e0a"} +{"id": "0000484", "video_name": "08735881-a9f4-5db8-9b89-b378af57756e", "text": "\u4e00\u8258\u7ea2\u8272\u7684\u8239\u6b63\u5728\u6d77\u4e0a\u822a\u884c\u3002"} +{"id": "0000485", "video_name": "0874c6fc-f929-53b6-8ac5-01e89aed0fe7", "text": "51 Pegasi b\u8fd9\u9897\u7cfb\u5916\u884c\u661f\u7ed5\u7740\u5b83\u7684\u6052\u661f\u8fd0\u8f6c\u3002"} +{"id": "0000486", "video_name": "0875152e-16ba-5939-b26f-7ed74379dde9", "text": "\u7a7f\u7740\u793c\u670d\u7684\u5e74\u8f7b\u7f8e\u5973"} +{"id": "0000487", "video_name": "0877d044-e75b-5ed8-88fc-9debb6615a15", "text": "\u4e00\u540d\u7537\u5b50\u72ec\u81ea\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "0000488", "video_name": "087def22-1f1c-5a33-a70c-98b45f7fe27e", "text": "\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u591c\u665a\uff0c\u5728\u6811\u4e0a\u6302\u7740\u4e00\u8f6e\u660e\u4eae\u7684\u6708\u4eae\u3002"} +{"id": "0000489", "video_name": "0880dcbe-9dfe-542a-8408-5132b5561df2", "text": "\u997a\u5b50\u5305\u5b50\u5728\u57ce\u91cc\u6d41\u884c\u8d77\u6765\u4e86\u3002"} +{"id": "0000490", "video_name": "0881b073-8004-56da-834b-6c7dd31ee461", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u91d1\u8272\u793c\u670d\uff0c\u9762\u5bb9\u7f8e\u4e3d\uff0c\u773c\u775b\u5a07\u5a9a\uff0c\u6234\u7740\u5934\u9970\u548c\u7687\u51a0\u7684\u5973\u4eba\u7ad9\u5728"} +{"id": "0000491", "video_name": "0882edb2-9f77-531b-882c-60fcbfae5c61", "text": "\u9e1f\u513f\u5728\u6c34\u55b7\u6cc9\u65c1\u98de\u7fd4\u3002"} +{"id": "0000492", "video_name": "089c6573-c808-5652-99c3-5d011aac941d", "text": "\u521b\u4f5c\u4e00\u90e8\u52a8\u753b\uff0c\u4ee5\u4e00\u4e2a\u4ee3\u8868\u300a\u5c11\u5e74\u7ef4\u7279\u7684\u70e6\u607c\u300b\u7684\u89d2\u8272\u4e3a\u4e3b\u3002"} +{"id": "0000493", "video_name": "089f4223-ccd4-5f80-b4cd-581adac485c5", "text": "\u4e00\u5bf9\u7f8e\u4e3d\u7684\u7537\u5973\u9762\u5bf9\u9762\u79bb\u5a5a\uff0c\u5341\u5206\u60b2\u4f24\uff0c\u543b\u522b\uff0c\u5341\u79d2\u949f\u52a8\u4f5c\u3002"} +{"id": "0000494", "video_name": "08a4e6ec-5fb3-529e-a1b6-cf0f38a9e66c", "text": "\u63a2\u7d22\u5b87\u5b99\u5b9e\u4f53\u6216\u5b88\u62a4\u8005\u7684\u6982\u5ff5\uff0c\u4ed6\u4eec\u76d1\u7763\u661f\u9645\u8f6c\u4e16\u7684\u8fc7\u7a0b\u3002\u4f7f\u7528\u795e\u79d8\u7684\u56fe\u50cf\u6765\u4f7f\u8fd9\u4e2a\u60f3"} +{"id": "0000495", "video_name": "08a7e98a-1cda-546f-b9d5-a84a77a1bbec", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u4eba\u9192\u6765\u770b\u65e5\u51fa\u3002"} +{"id": "0000496", "video_name": "08af6ab8-4fd7-5e52-a0bd-9bb7310a96dc", "text": "\u5c06\u98ce\u666f\u66f4\u6539\u4e3a\u4e00\u4e2a\u795e\u79d8\u7684\u767d\u65e5\u68a6\u822c\u8ff7\u4eba\u7684\u63d2\u753b\u3002"} +{"id": "0000497", "video_name": "08affe2e-e8d1-5e0c-9090-fdfa7b87649c", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4f01\u4e1a\u4f7f\u7528\u4e91\u8ba1\u7b97\u7684\u597d\u5904\u7684\u89e3\u91ca\u89c6\u9891\u3002"} +{"id": "0000498", "video_name": "08b03807-e1d6-586f-a9ec-2c99ec4e945b", "text": "\u5929\u7a7a\u4e2d\u98d8\u843d\u4e0b\u5929\u4f7f\u7fc5\u8180\u5fae\u5999\u7684\u6697\u793a\u3002"} +{"id": "0000499", "video_name": "08b29689-bfc3-5463-a390-2e33d13e58f2", "text": "\u521b\u9020\u4e00\u4e2a\u60c5\u611f\u5f62\u8c61\uff0c\u4eba\u4eec\u8dea\u5728\u5730\u4e0a\uff0c\u5411\u4e0a\u5e1d\u54ed\u6ce3\uff0c\u5bfb\u6c42\u601c\u60af\u548c\u4fdd\u62a4\uff0c\u53cc\u624b\u4e3e\u5411\u5929\u7a7a\u3002"} +{"id": "0000500", "video_name": "08c3853e-45ee-55f8-8c27-4722ec63b569", "text": "\u53ea\u6709\u4e24\u79cd\u5141\u8bb8\u7684\u89c2\u70b9\u3002"} +{"id": "0000501", "video_name": "08c937f0-6fb0-5d09-9e62-36d8e997a614", "text": "\u84dd\u8272\u548c\u9ec4\u8272\u7684\u98de\u673a\u548c\u6b63\u5728\u751f\u957f\u7684\u5411\u65e5\u8475"} +{"id": "0000502", "video_name": "08ca5086-4407-53d5-a50e-ca0c8df1a5eb", "text": "CW\u95ea\u7535\u4fa0\u6df7\u5408\u8759\u8760\u4fa0\u7535\u5f718k\u3002"} +{"id": "0000503", "video_name": "08cc13fa-de28-555d-b664-443bc969a473", "text": "\u7537\u6a21\u8d70\u5728\u4e1b\u6797\u80cc\u666f\u4e0b\uff0c\u5c55\u793a\u65f6\u5c1a\u53d1\u578b\uff0c\u63a8\u9500\u53d1\u6cb9\u5e7f\u544a\u3002"} +{"id": "0000504", "video_name": "08cf31c2-6256-546e-8401-25834922c92e", "text": "\u8fea\u58eb\u5c3c\u5361\u901a\u4eba\u7269\u6770\u745e\u8001\u9f20\u6709\u68d5\u8272\u7684\u6bdb\u76ae\uff0c\u624b\u62b1\u80f8\u53e3\uff0c\u9762\u9732\u75db\u82e6\u8868\u60c5\u3002"} +{"id": "0000505", "video_name": "08d2d2e0-f694-58f7-b798-058f430c9c1f", "text": "\u5728\u672a\u6765\u7684\u83ab\u65af\u79d1\u5f00\u7740\u4fdd\u65f6\u6377911\u3002"} +{"id": "0000506", "video_name": "08d4e3f4-46ce-5f7e-b550-f2e174801622", "text": "\u632a\u5a01\u7684\u5e05\u54e5\u5728\u5723\u8bde\u8282\u65f6\u62b1\u7740\u4e00\u53ea\u6a58\u8272\u7684\u732b\u3002"} +{"id": "0000507", "video_name": "08ea3124-96b1-5410-a6ce-d3f92a440f2d", "text": "\u4ece\u5c0f\u7537\u5b69\u548c\u5c0f\u5973\u5b69\u7684\u80cc\u5f71\u6765\u770b\uff0c\u4ed6\u4eec\u624b\u7275\u624b\u5730\u7f13\u7f13\u5411\u524d\u8d70\uff0c\u5f71\u5b50\u662f\u4e00\u7247\u8349\u5730\uff0c\u8fdc\u5904\u6709\u5c71\u3002"} +{"id": "0000508", "video_name": "0906526c-73da-5cf3-b79e-4f90ee29ed36", "text": "\u5230\u8fbe\u53a6\u95e8\u5b9d\u9f99\u94c2\u5c14\u66fc\u9152\u5e97\u3002"} +{"id": "0000509", "video_name": "09079148-7928-5bb7-8510-6f617eeff09e", "text": "\u591c\u666f\u5168\u666f\u6765\u56de\u79fb\u52a8\u3002"} +{"id": "0000510", "video_name": "09111a1b-d004-528e-b1a8-fac216c68a1e", "text": "\u4f60\u4eec\u8fd9\u4e9b\u592a\u7a7a\u65c5\u884c\u8005\uff0c\u4f60\u4eec\u8ba4\u4e3a\u5462\uff1f"} +{"id": "0000511", "video_name": "09142afa-0080-5a82-a6b1-aba7226d71c2", "text": "\u5438\u5f15\u4eba\u7684\u5973\u670d\u52a1\u5458\u572850\u5e74\u4ee3\u9910\u5385\u4e0d\u505c\u5730\u5012\u7740\u5496\u5561\u3002"} +{"id": "0000512", "video_name": "091ce458-19a8-50de-b1be-aaa781fc6e83", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u6234\u7740\u4e00\u53ea\u52b3\u529b\u58eb\u624b\u8868\u3002"} +{"id": "0000513", "video_name": "091e0432-3ce9-5b71-a79a-671de40e9abc", "text": "\u9f99\u5728\u9ad8\u7a7a\u7ff1\u7fd4\uff0c\u5468\u56f4\u662f\u767d\u4e91\u548c\u84dd\u5929\uff0c\u5b9b\u5982\u7535\u5f71\u753b\u9762\u822c\u903c\u771f\u3002"} +{"id": "0000514", "video_name": "09204b01-e490-511d-adcf-667b42279c40", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5f39\u8df3\u676f\u5b50\uff0c\u653e\u5728\u529e\u516c\u684c\u80cc\u666f\u4e0b\u3002"} +{"id": "0000515", "video_name": "09266175-0f27-5a9d-b401-a30eb0aef1e6", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u4ed6\u7684\u6751\u5e84\u91cc\u7528\u5c0f\u8239\u5728\u6cb3\u91cc\u9493\u9c7c\uff0c\u4ee5\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0000516", "video_name": "092e5863-4ee3-5646-8c5d-03aa0507b2e1", "text": "\u4e00\u4e2a\u4e2d\u56fd\u5973\u5b69\u7ad9\u5728\u7a97\u6237\u540e\u9762\uff0c\u770b\u7740\u955c\u5934\u3002"} +{"id": "0000517", "video_name": "092f2403-2bc8-5674-a7df-8775d1dd0a0f", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5154\u5b50\u9a91\u7740\u8fd0\u52a8\u6469\u6258\u8f66\u907f\u5f00\u8def\u4e0a\u7684\u8717\u725b\u3002"} +{"id": "0000518", "video_name": "092fdeaa-b61e-5c24-bce5-d7a5fa630b0a", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u706b\u8f66\u7ad9\u7684\u957f\u6905\u4e0a\u3002\u4ed6\u770b\u8d77\u6765\u5f88\u7d27\u5f20\uff0c\u8138\u4e0a\u7d27\u95ed\u7740\u3002"} +{"id": "0000519", "video_name": "093c1710-3423-5238-90b1-7f5ae0262c59", "text": "\u4e00\u4e2a\u63cf\u7ed8\u83b1\u62c9\u514b\u65af\u5916\u4ea4\u5b98\u4e0e\u4eba\u7c7b\u4ee3\u8868\u4ea4\u8c08\u7684\u89c6\u89c9\u5448\u73b0\uff0c\u8868\u73b0\u4e86\u4ed6\u4eec\u8ffd\u6c42\u548c\u5e73\u5171\u5b58\u548c\u76f8\u4e92\u7406"} +{"id": "0000520", "video_name": "0941fb82-80a5-5756-8d7d-8d3dd02ab1c0", "text": "\u7d27\u5f20\u3001\u5fae\u7b11\u3001\u8033\u8bed\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000521", "video_name": "09471859-8445-5a46-aaa8-0acc072ff52e", "text": "\u6253\u6597\u573a\u666f\uff0c\u7537\u4eba\u4e0e\u767d\u8272\u5e7d\u7075\u72b6\u4eba\u5f62\u6218\u6597\uff0c\u6709\u52a8\u4f5c\u963b\u62e6\u548c\u6784\u56fe\uff0c\u7a7f\u7740\u8fde\u8eab\u8863\uff0c\u6253\u5f00\u88c5\u7f6e\uff0c"} +{"id": "0000522", "video_name": "094b124e-ab0a-5233-a469-44a467532381", "text": "\u753b\u4e00\u95f4\u62e5\u6709\u7f8e\u4e3d\u7684\u51e1\u5c14\u8d5b\u65f6\u671f\u540a\u706f\u7684\u5927\u5385\u3002\u7136\u540e\u4e00\u4e2a\u5973\u5b69\u51fa\u73b0\u5728\u8def\u6613\u5341\u516d\u7684\u623f\u95f4\u91cc\uff0c\u7a7f\u7740"} +{"id": "0000523", "video_name": "094c2636-5113-56c5-8ab3-b519bd7f07ea", "text": "\u521b\u9020\u4e00\u4e2a\u7f8e\u4e3d\u7684\u74f6\u5b50\uff0c\u4e0a\u9762\u6709\u4e00\u53ea\u9e70\u7684\u6807\u5fd7\uff0c\u80cc\u666f\u662f\u96ea\u5c71\u3002"} +{"id": "0000524", "video_name": "094ce446-5bfe-583a-897b-46c791bf9541", "text": "\u4e00\u540d\u6c7d\u8f66\u53f8\u673a\u5728\u591c\u665a\u7684\u8352\u50fb\u8857\u9053\u4e0a\u8ddf\u968f\u4e00\u540d\u5973\u53f8\u673a\u3002"} +{"id": "0000525", "video_name": "0955d5f8-e048-59aa-91c9-8c0f8fb3dad5", "text": "\u671d\u7740\u5927\u89c4\u6a21\u9a9a\u4e71\u8d70\u8fd1\uff0c\u62cd\u6444\u8fd1\u666f\u8fd0\u52a84K 16:9\u3002"} +{"id": "0000526", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "\u4eba\u7c7b\u80ba\u5728\u6574\u4e2a\u5927\u5c40\u4e2d\u88ab\u770b\u5230\u3002"} +{"id": "0000527", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "\u90a6\u62c9\u5360\u4e4b\u6218 \u6444\u5f71\u8fd0\u52a82 18\u5e27\u6bcf\u79d2"} +{"id": "0000528", "video_name": "0958f9e1-cbe8-5bbb-9308-6da35dc258e4", "text": "\u5728\u9644\u9b54\u68ee\u6797\u7684\u8fb9\u7f18\u5efa\u7acb\u4e00\u5ea7\u548c\u5e73\u7684\u6751\u5e84\u3002"} +{"id": "0000529", "video_name": "095be3ed-b8b7-5120-8156-1d5c4d33a83c", "text": "\u5de8\u9e4f\u4e0a\u4e0b\u7ffb\u98de\u3002\n\nSource sentence: I am learning Chinese language now. \n\n\u6211\u73b0\u5728\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "0000530", "video_name": "095d1cdb-a8eb-5d6b-836a-f5bc5efd2021", "text": "\u4e00\u53ea\u6811\u61d2\u5728\u7e41\u5fd9\u7684\u591c\u5e97\u64cd\u4f5cDJ\u5531\u76d8\uff0c\u5e76\u6709\u8bb8\u591a\u8df3\u821e\u7684\u4eba\u56f4\u7ed5\u7684\u89c6\u9891\u3002"} +{"id": "0000531", "video_name": "095e1086-a303-5482-b25c-3e35c88ca19c", "text": "\u4e00\u6b3e\u8d85\u7ea7\u8be6\u7ec6\u903c\u771f\u7684GTA\u6e38\u620f\uff0c\u53ef\u4ee5\u8ba9\u8d85\u7ea7\u8dd1\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u6f02\u79fb\u3002"} +{"id": "0000532", "video_name": "0964c56d-2374-52fe-9920-61fc5ed9899f", "text": "\u4e00\u8258\u8239\u822a\u884c\u5728\u7c89\u8272\u5927\u6d77\u4e0a\uff0c\u671d\u7740\u4e00\u4e2a\u5de8\u6d6a\u524d\u8fdb\u3002"} +{"id": "0000533", "video_name": "096af8eb-7c37-5ff0-8514-8194d325cf67", "text": "\u91cd\u5e86\u4e24\u6c5f\u591c\u666f\u57281990\u5e74\u4ee3\u3002"} +{"id": "0000534", "video_name": "096bf794-a717-5b86-92c9-fa216b81be19", "text": "\u8ba9\u95ea\u5149\u706f\u79fb\u52a8\uff0c\u641c\u7d22\u90e8\u5206\u884c\u8d70\u3002"} +{"id": "0000535", "video_name": "096d4efa-6724-5d3f-b839-ac13358d4649", "text": "\u98ce\u683c\u50cfBjork\uff0c\u6444\u5f71\u5e08Nick Knight\uff0c\u65f6\u5c1a\u8bbe\u8ba1\u5e08Ric Owens\uff0c\u7535\u5f71\u5bfc\u6f14Jodorowski\u3002"} +{"id": "0000536", "video_name": "097c026e-8fb4-5d97-8117-d9c014378e27", "text": "\u9ad8\u6f6e\u7684\u5c4b\u9876\u8868\u6f14\uff1a\u63cf\u8ff0\u827a\u672f\u5bb621 Savage\u548cDrake\u5728\u70df\u706b\u3001\u9713\u8679\u706f\u548c\u672a\u6765\u4e3b\u4e49\u5929\u9645\u7ebf\u7684\u80cc\u666f\u4e0b"} +{"id": "0000537", "video_name": "098105dd-f948-59af-bfba-73cc320e3114", "text": "\u5723\u7ecf\u6545\u4e8b\uff0c\u7ea6\u745f\u592b\u4ece\u7236\u4eb2\u90a3\u91cc\u5f97\u5230\u4e00\u4ef6\u8272\u5f69\u6591\u6593\u7684\u5916\u8863\uff0c\u5e72\u65f1\u7684\u571f\u5730\uff0c\u5723\u7ecf\u65f6\u4ee3"} +{"id": "0000538", "video_name": "0985c9e4-9f58-57de-9b9b-97e9d59f7a1b", "text": "\u53ef\u7231\u7684\u602a\u7269\u8df3\u6765\u8df3\u53bb\u3002"} +{"id": "0000539", "video_name": "0996854f-da0e-52ff-b8f5-48062ae17628", "text": "\u80cc\u666f\u4e0b\u98d8\u96ea\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c8\u5e27\u6bcf\u79d2\u3002"} +{"id": "0000540", "video_name": "09997db0-76f7-5885-84db-eb7094376b1a", "text": "\u5c0f\u884c\u661f\u649e\u51fb\u88ab\u89c6\u4e3a\u5176\u4e2d\u7684\u8d21\u732e\u56e0\u7d20\u3002"} +{"id": "0000541", "video_name": "09a010a3-317a-59c4-8292-01a5b053e0f5", "text": "\u6c34\u8c5a\u5728\u6469\u6258\u8f66\u4e0a\u505a\u540e\u7a7a\u7ffb"} +{"id": "0000542", "video_name": "09a0beee-1098-5e6a-b877-7451cec626fa", "text": "\u4e00\u53f0\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u6027\u673a\u5668\u4eba\u62b1\u7740\u4e00\u4f4d\u5730\u7403\u5973\u6027\uff0c\u5973\u6027\u624b\u4e2d\u62ff\u7740\u4e00\u675f\u9c9c\u82b1\uff0c\u5fae\u7b11\u7740\u30023D\u52a8\u753b"} +{"id": "0000543", "video_name": "09a40074-81d1-559b-bec0-82903c2fbf72", "text": "\u4e00\u4e2a10\u79d2\u949f\u7684\u89c6\u9891\uff0c\u7528\u4e8e\u975e\u6d32\u4f4f\u5b85\u97f3\u4e50\u89c6\u9891\u7684\u80cc\u666f\uff0c\u5c55\u793a\u7740\u4e00\u4e2a\u5929\u5802\u822c\u7684\u6d77\u6ee9\u3002"} +{"id": "0000544", "video_name": "09a7a648-7724-57da-aaca-223ef998145c", "text": "\u4e00\u4e2a\u7537\u5b69\u770b\u7740\u4ed6\u6240\u7231\u7684\u4eba\u7231\u4e0a\u4e86\u53e6\u4e00\u4e2a\u4eba\uff0c\u9ed8\u9ed8\u5730\u79bb\u5f00\u4e86\uff0c\u4f46\u770b\u7740\u8fd9\u4e00\u5e55\u4ecd\u611f\u5230\u60b2\u4f24\uff0c"} +{"id": "0000545", "video_name": "09a7ce69-777b-5970-bd39-69400c46ce5e", "text": "\u5728\u610f\u6599\u4e4b\u5916\u7684\u8f6c\u6298\u4e2d\uff0c\u74e6\u5c14\u7279\u00b7\u6000\u7279\u6234\u7740\u65f6\u5c1a\u7684\u5df4\u9ece\u4e16\u5bb6\u56f4\u88d9\uff0c\u4e0e\u6d77\u7ef5\u5b9d\u5b9d\u5728\u4e00\u4e2a"} +{"id": "0000546", "video_name": "09aa2132-54e9-58e4-802a-62268c52cbc0", "text": "\u8ba9\u6c34\u6d41\u52a8\uff0c\u5c31\u50cf\u98ce\u7a7f\u8fc7\u6811\u6797\u4e00\u6837\u3002"} +{"id": "0000547", "video_name": "09ab115f-1db5-5a14-90cd-9852bf177ea7", "text": "\u4e00\u4e2a\u6709\u6d3b\u529b\u7684\u5973\u770b\u62a4\uff0c\u68d5\u8272\u7684\u773c\u775b\uff0c\u4e00\u8fb9\u8d70\u8def\u4e00\u8fb9\u89e3\u91ca\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u826f\u597d\u7684\u7167\u660e\u3002"} +{"id": "0000548", "video_name": "09ad08a8-edf6-59d2-9c8d-6fc81d621a0a", "text": "\u4e54\u00b7\u7f57\u6839\u548c\u4e00\u4e2a\u5a74\u513f\u8df3\u821e\u3002"} +{"id": "0000549", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "\u7537\u5b50\u5728\u533b\u9662\u5e8a\u4e0a\u9192\u6765\u3002"} +{"id": "0000550", "video_name": "09ae4d05-2e61-58e5-b9d7-9a9efc034c6b", "text": "\u91d1\u6b63\u6069\u548c\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u65e5\u843d\u65f6\u5206\u4ee5\u8d5b\u535a\u670b\u514bNFT\u7684\u98ce\u683c\u5c55\u5f00\u6218\u6597\u3002"} +{"id": "0000551", "video_name": "09b29a61-50c9-5764-a0b8-451448756d0e", "text": "\u5f71\u5b50\u523a\u5ba2\u4e0e\u5149\u7403\u640f\u6597\u3002"} +{"id": "0000552", "video_name": "09b40894-f68a-5cb3-8996-d75020923c71", "text": "\u4e00\u4f4d\u6234\u7740\u5934\u5dfe\u7684\u6b63\u7edf\u72b9\u592a\u5973\u5b50\uff0c\u6b23\u7136\u5730\u6b22\u8fce\u5979\u6765\u5230\u5979\u5b8f\u4f1f\u7684\u5bb6\u3002"} +{"id": "0000553", "video_name": "09b6f0b5-e2ed-53e5-9d8d-3d1940976cb0", "text": "25\u5c81\u7684\u7f8e\u4e3d\u5973\u5b69\u7ad9\u5728\u57ce\u5821\u5b8f\u4f1f\u7684\u5165\u53e3\u524d\uff0c\u597940\u5c81\u7684\u7236\u4eb2\u83ab\u91cc\u65af\u7ad9\u5728\u5979\u8eab\u65c1\uff0c\u72b9"} +{"id": "0000554", "video_name": "09b78e19-9785-5191-bb24-f79d0bc30ce3", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u3001\u591a\u6c41\u7684\u82f9\u679c\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u4ee3\u8868\u80fd\u91cf\u548c\u559c\u60a6\u7684\u5143\u7d20\uff0c\u4f8b\u5982\u9633\u5149\u548c\u9c9c\u8273\u7684"} +{"id": "0000555", "video_name": "09b8a1e6-8ccf-5f90-b3b7-4b745a9c1619", "text": "\u4e00\u6761\u7eff\u8272\u7684\u86c7\u54ac\u4f4f\u5c4f\u5e55\uff0c\u4f7f\u5f97\u4e00\u5207\u53d8\u5f97\u9ed1\u6697\u3002 \n\nSource sentence: She is studying Chinese in Beijing. \n\n\u5979\u6b63\u5728\u5317\u4eac\u5b66\u4e60\u4e2d"} +{"id": "0000556", "video_name": "09bd0cfa-41b8-5998-a3b7-e1f238226e8c", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u63cf\u7ed8\u54c8\u5229\u5728\u683c\u5170\u82ac\u591a\u684c\u65c1\u7d27\u5f20\u5730\u7b49\u5f85\u9009\u62e9\u5e3d\u4eea\u5f0f\u7684\u573a\u666f\u3002"} +{"id": "0000557", "video_name": "09be6b68-2cef-5b3a-999b-c911fa957baa", "text": "\u4e00\u7897\u70ed\u817e\u817e\u7684\u7f8e\u5473\u6c64\uff0c\u5728\u9ad8\u6863\u9910\u5385\u91cc\uff0c\u666f\u6df1\uff0c\u5c3c\u5eb7\u6570\u7801\u5355\u53cd\u76f8\u673a\uff0c\u4e09\u70b9\u706f\u5149"} +{"id": "0000558", "video_name": "09c6788c-9da2-5f54-beba-1001c21af97b", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u6709\u5c0f\u6a31\u82b1\u6811\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000559", "video_name": "09cc5cd9-7a38-5467-a312-04585dca4cd4", "text": "\u773c\u775b\u4ece\u56fe\u50cf\u4e0a\u79fb\u5f00\u5e76\u770b\u5230\u5176\u4ed6\u5730\u65b9\u3002"} +{"id": "0000560", "video_name": "09d00f94-c533-54d4-876c-9219e0ee9bba", "text": "\u5973\u6027\u89d2\u8272\u548c\u7537\u6027\u5750\u5728\u6469\u5929\u8f6e\u4e0a\uff0c\u4ed6\u6402\u7740\u5979\u3002\u80cc\u666f\u662f\u6ee1\u6708\u7167\u4eae\u7684\u6d77\u6ee9\uff0c16:9\u9ad8\u6e05\u3002"} +{"id": "0000561", "video_name": "09d2704f-07d2-5a67-9432-d1f94944b5c4", "text": "3D \u5f71\u50cf\u9c8d\u52c3\u7b11\u4e86\u7b11\uff0c\u8f6c\u5411\u4ed6\u7684\u5176\u4ed6\u670b\u53cb\uff0c\u8fea\u5179\u548c\u7f57\u5229\u3002"} +{"id": "0000562", "video_name": "09d30fae-f8a0-5df7-89de-f892103481f3", "text": "\u672a\u6765\uff0c\u4eba\u5de5\u667a\u80fd\u63a5\u7ba1\u4e86\u4eba\u7c7b\u7684\u5de5\u4f5c\u3002\u57ce\u5e02\u7684\u8857\u9053\u7a7a\u65e0\u4e00\u4eba\uff0c\u4eba\u4eec\u7684\u751f\u6d3b\u90fd\u57fa\u4e8e\u81ea\u52a8\u5316\u3002\u591c\u7a7a\u7531\u4eba\u5de5\u667a\u80fd\u7684"} +{"id": "0000563", "video_name": "09d78664-92f7-5be6-a0aa-80fc1eeae526", "text": "\u9634\u96e8\u5929\uff0c\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\u6ed1\u7740Instagram\u3002"} +{"id": "0000564", "video_name": "09dc12b7-51e5-5460-9502-22cfbedfd2ca", "text": "Source sentence: 2100\u5e74\u7684\u52a0\u62c9\u52a0\u65af\u6cb3\u8c37\u5df2\u6210\u4e3a\u4e00\u4e2a\u53d1\u8fbe\u57ce\u5e02\u3002\n\nSource sentence: I am studying Chinese language and culture at university.\nTranslation: \u6211\u5728\u5927\u5b66\u5b66\u4e60\u4e2d"} +{"id": "0000565", "video_name": "09dde9c3-74ed-5d6a-99e5-d283af26d25e", "text": "\u4e00\u53ea\u79d1\u83ab\u591a\u9f99\u6b63\u5728\u5403\u897f\u74dc\u3002"} +{"id": "0000566", "video_name": "09e5dd2a-b19d-5334-8924-8eacd01d20c8", "text": "\u96ea\u4e2d\u884c\u8d70 (Font: MODERN)"} +{"id": "0000567", "video_name": "09ea2493-df5e-596d-9906-5ab542dc53bb", "text": "\u8036\u7a23\u5728\u6c99\u6f20\u4e2d\uff0c\u4e0e\u4e00\u4e2a\u903c\u771f\u7684\u6492\u65e6\u8fdb\u884c\u6df1\u5165\u7684\u5bf9\u8bdd\uff0c\u573a\u666f\u8bbe\u7f6e\u5728\u8be6\u7ec6\u751f\u52a8\u7684\u6c99\u6f20\u666f\u89c2\u4e2d\u3002"} +{"id": "0000568", "video_name": "09ebcf15-2697-5795-8445-194e4eeab226", "text": "\u6f5c\u8247\u98de\u884c\u9760\u8fd1\u6708\u7403\u6216\u5176\u4ed6\u884c\u661f\u3002"} +{"id": "0000569", "video_name": "09ed8e6d-c280-5b8b-80cb-74eb81ff2502", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u871c\u8702\u5728\u663e\u5fae\u955c\u4e0b\u5403\u8702\u871c\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "0000570", "video_name": "09ee7af9-6ec9-5667-a146-c8c39b2eba48", "text": "\u5317\u534a\u7403\u6700\u957f\u7684\u4e00\u5929"} +{"id": "0000571", "video_name": "09fd5722-14c0-5bea-a3bd-639dda2a5cbf", "text": "\u4e09\u6247\u95e8\u7684\u8863\u670d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000572", "video_name": "0a011506-2799-5b1e-ba2a-d9d5fdc4e735", "text": "\u575a\u5fcd\u7684\u5929\u4f7f\u51fa\u73b0\u5728\u5b81\u9759\u7684\u68a6\u5883\u4e2d\u3002"} +{"id": "0000573", "video_name": "0a0da7f6-32d1-56d5-ba90-a0e56d7124f3", "text": "\u5728\u53e4\u753b\u6587\u5b57\u4e2d\uff0c\u4fe1\u606f\u4e3a\u201c\u8bf7\u52ff\u8e29\u8e0f\u201d\uff0c\u5b57\u4f53\u4e3a\u73b0\u4ee3\u4f53\u3002"} +{"id": "0000574", "video_name": "0a0f5a43-f8ba-5afa-8210-5d32e7cca1d0", "text": "\u57ce\u5e02\u91cc\u6709\u6076\u9b54\u548c\u5438\u8840\u9b3c\u3002"} +{"id": "0000575", "video_name": "0a1a0fa2-0cbd-56d9-ab7a-7ffbf21d9e2c", "text": "\u4e00\u4f4d\u9ed1\u8272\u76f4\u53d1\u7684\u5e74\u8f7b\u5973\u58eb\u8eab\u59ff\u5b8c\u6574\u5730\u5c55\u73b0\u5728\u955c\u5934\u524d\uff0c\u6b63\u5728\u6ce8\u89c6\u7740\u955c\u5934\u3002"} +{"id": "0000576", "video_name": "0a1f27af-4737-5994-be48-9113c22ef970", "text": "\u9ed1\u732b\u7ad9\u7740\u770b\u5411\u955c\u5934\uff0c\u80cc\u666f\u662f\u7c89\u8272\u70df\u96fe\uff0c\u903c\u771f\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\u7f29\u653e\u3002\n\nSource sentence: I need to buy some"} +{"id": "0000577", "video_name": "0a27d75b-b6bb-5849-8acd-4e1a7efe6f95", "text": "\u673a\u5668\u5728\u672a\u6765\u4e3b\u4e49\u8f66\u5e93\u4e2d\u5236\u9020\u552e\u8d27\u673a\uff0c\u91c7\u7528Splatter Art\u98ce\u683c\u3001Urbance Art\u98ce\u683c\u3001Overwatch Art\u98ce\u683c\u300116K\u9ad8\u6e05\u548c\u8d85\u73b0\u5b9e"} +{"id": "0000578", "video_name": "0a287f52-1272-5062-8164-fd496e5ec6e8", "text": "\u4e00\u7fa4\u670b\u53cb\u5750\u5728\u8def\u8fb9\u7684\u8336\u9986\u91cc\uff0c\u6109\u5feb\u5730\u804a\u5929\u3002"} +{"id": "0000579", "video_name": "0a3dbd56-83c4-5d1a-895b-28b4faf83972", "text": "\u4e00\u53ea\u62e5\u6709\u6050\u9f99\u8eab\u4f53\u548c\u7ffc\u9f99\u7fc5\u8180\u7684\u6df7\u5408\u751f\u7269\uff0c\u5728\u4e91\u95f4\u4f18\u96c5\u5730\u7ff1\u7fd4\u3002"} +{"id": "0000580", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "\u4e00\u4f4d\u7a7f\u7740\u5939\u514b\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u4ee5\u8d5b\u535a\u98ce\u683c\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "0000581", "video_name": "0a445c64-fe0a-5de1-9e87-fbd7398529a5", "text": "\u4e03\u9f99\u73e0\u4e4b\u5b59\u609f\u7a7a\uff08\u6f2b\u753b\u548c\u52a8\u753b\uff09"} +{"id": "0000582", "video_name": "0a46e126-c04f-588a-89e6-5dfd0723c42b", "text": "\u767d\u8272\u91d1\u5c5e\u98de\u789f\u964d\u843d\u5728\u767d\u5bab\u8349\u576a\u4e0a\uff0c\u9ad8\u8d28\u91cf\uff0c\u6770\u4f5c\u3002"} +{"id": "0000583", "video_name": "0a4885fd-e7bf-5109-9412-4dfd1fddeb3b", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2a60\u79d2\u7684\u89c6\u9891\u5c55\u793a\u5929\u5802\uff0c\u5929\u5802\u5728\u5929\u7a7a\u4e2d\u592e\u7684\u4e00\u4e2a\u5730\u65b9\uff0c\u5468\u56f4\u90fd\u662f\u5f00\u6ee1\u82f9\u679c\u7684\u6a31\u82b1\u6811\u3002"} +{"id": "0000584", "video_name": "0a4b5884-9e75-57f5-b13d-2eafdd075f11", "text": "\u4ece\u8111\u5185\u89c2\u5bdf\uff0c\u989d\u53f6\u3001\u674f\u4ec1\u4f53\u548c\u6d77\u9a6c\u7684\u4e0d\u540c\u533a\u57df\u4f1a\u4ee5\u9ec4\u8272\u7167\u4eae\u3002"} +{"id": "0000585", "video_name": "0a4d09aa-1ebc-5daf-be0c-fb72abf64a2c", "text": "\u96d5\u5851\u3001\u8457\u540d\u827a\u672f\u5bb6\u3001\u73bb\u7483\u3001\u65cb\u8f6c\u3001\u95ea\u8000\u3001\u6c34\u3001\u9633\u5149\u3001\u7834\u788e\u3001\u585e\u73ed\u6d77\u6ee9\u3002"} +{"id": "0000586", "video_name": "0a4d0ce2-8b90-5409-98da-a98cc46c363e", "text": "\u5893\u5730\u91cc\u722c\u6ee1\u4e86\u85e4\u8513\uff0c\u81ea\u7136\u6bcd\u4eb2\u6234\u7740\u9762\u7eb1\u7ad9\u5728\u5341\u5b57\u67b6\u5893\u7891\u524d\u3002"} +{"id": "0000587", "video_name": "0a4f2654-a67e-54e7-a43d-43dfcb4c3819", "text": "1942\u5e74\u7684\u68d5\u8910\u8272\u7535\u5f71\u5e95\u7247\uff0c\u53d1\u73b0\u4e86\u4e00\u540d\u661f\u7403\u5927\u6218\u7684\u98ce\u66b4\u5175\u5728\u4e8c\u6218\u4e2d\u7684\u753b\u9762\u3002"} +{"id": "0000588", "video_name": "0a5309ff-ad4f-5318-a9c6-3135b49868e3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u53ef\u7231\u7684\u4e1c\u4e9a\u5973\u5b69\u5728\u8bf4\u8bdd\u3002"} +{"id": "0000589", "video_name": "0a53ce1f-b53a-524e-aebf-bd42fc8f88c8", "text": "\u7535\u5f71\u6444\u5f71\u3002\u5b5f\u52a0\u62c9\u864e\u6162\u6162\u8bf4\u8bdd\u3002\u6df1\u5ea6\u7f29\u653e\uff0c\u5feb\u8fdb\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u8d85\u903c\u771f\uff0c\u8f9b\u70f7\u503c\uff0c"} +{"id": "0000590", "video_name": "0a5737b8-941a-5f8a-97d7-8c428012d2e4", "text": "\u4e00\u4e2a\u5a74\u513f\u6b63\u5728\u5411\u6211\u722c\u6765\u3002"} +{"id": "0000591", "video_name": "0a5d714a-3feb-54e0-88fa-60671605b61c", "text": "\u4e00\u4e2a\u7537\u4eba\u8df3\u8d77\u6765\u8e22\u8db3\u7403\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u4f4e\u5149\u7167\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "0000592", "video_name": "0a71ac69-2eb2-5d3b-80ac-c4d9b3dd0030", "text": "\u4e00\u5f20\u5e86\u795d\u6392\u706f\u8282\u7684\u80cc\u666f\u56fe\u7247\uff0c\u4e2d\u592e\u6709\u4e00\u4e2a\u8bb2\u53f0\uff0c\u4e2d\u95f4\u6446\u653e\u7740\u5bb6\u5c45\u7eba\u7ec7\u54c1\u548c\u5bb6\u5177\uff0c\u5982\u6c99\u53d1\u3001"} +{"id": "0000593", "video_name": "0a71fce9-74f2-51b6-9092-8b7ebf5fad94", "text": "\u8759\u8760\u4fa0\u5728\u53e6\u4e00\u4e2a\u5b87\u5b99\u4e2d\u7684\u52a8\u6f2b\u5f62\u8c61\u7684\u7535\u5f71\u89c6\u9891\u7d20\u6750\u3002"} +{"id": "0000594", "video_name": "0a729ba8-2036-5bc1-9bdd-94eac4cf9b68", "text": "\u4e00\u526f\u9ab8\u9aa8\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0000595", "video_name": "0a8225fe-3963-56aa-a3ff-f67157746b93", "text": "\u52a8\u6f2b\u4e9a\u6d32\u5feb\u4e50\u7537\u5b69\u56de\u5bb6\u4e86\u3002"} +{"id": "0000596", "video_name": "0a863432-328c-583d-b6f7-097f0e1cb2af", "text": "\u4e00\u4e2a\u5973\u5b69\u624b\u62ff\u7740\u4e00\u53ea\u718a\uff0c\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u533b\u9662\u8d70\u8fc7\u8d70\u5eca\u3002"} +{"id": "0000597", "video_name": "0a8a1bed-6ecf-5101-bfb8-d78707a1d2fe", "text": "\u8d85\u73b0\u5b9e\u7684\u80cc\u666f\uff0c\u8ff7\u5e7b\u7684\u6548\u679c\uff0c\u7c89\u8272\u548c\u9ec4\u8272\uff0c\u9633\u5149\uff0c\u9633\u5149\u5c04\u7ebf\u3002"} +{"id": "0000598", "video_name": "0a8a63dc-bf08-59a7-9fed-4cd23a8c8872", "text": "\u5e74\u8f7b\u5973\u5b69\u5728\u57ce\u5e02\u7684\u8857\u9053\u4e0a\u5954\u8dd1\uff0c\u591c\u5e55\u964d\u4e34\u65f6\uff0c\u8857\u9053\u4e24\u65c1\u7684\u9713\u8679\u706f\u9010\u6e10\u4eae\u8d77\uff0c"} +{"id": "0000599", "video_name": "0a94ead2-b08e-5345-9924-26b41a0a67df", "text": "\u91cd\u578b\uff08\u6765\u81ea\u300a\u519b\u56e2\u8981\u585e2\u300b\uff09\u5403\u9e21\u5757\u3002"} +{"id": "0000600", "video_name": "0a94f77f-f958-5b00-a665-33f43a9cacbd", "text": "\u5149\u7684\u7206\u70b8\u73af\u7ed5\u7740\u5341\u5b57\u67b6\n\nSource sentence: The cat is sleeping on the sofa.\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0000601", "video_name": "0aa3874a-211b-503f-a33e-4e4403da31fe", "text": "\u4e00\u4f4d\u8001\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u9762\u5bf9\u7535\u89c6\u89c2\u770bP. Ramlee\u7535\u5f71\u3002"} +{"id": "0000602", "video_name": "0aaab644-60fe-5178-bad7-98aa3515763a", "text": "\u4e00\u4f4d\u770b\u8d77\u6765\u50cf\u957f\u53d1\u516c\u4e3b\u7684\u5e74\u8f7b\u5973\u5b69\u5361\u901a\u98ce\u683c\u7684\u5f62\u8c61\uff0c25\u5c81\uff0c\u62e5\u6709\u68d5\u8272\u7684\u76f4\u53d1\uff0c\u7f8e\u4e3d\u7684\u95ed\u773c\u7761"} +{"id": "0000603", "video_name": "0aabcd83-8f06-5308-9e34-c0cb30f1abcf", "text": "\u4e3a\u559c\u5267\u9891\u9053\u201cKC Production\u201d\u5236\u4f5c\u4e00\u4e2a\u4ecb\u7ecd\u7247\u7684\u6807\u9898\u89c6\u9891\u3002"} +{"id": "0000604", "video_name": "0aae33f0-b59b-5886-855b-272ec836de54", "text": "\u5065\u8eab\u7f51\u7ad9Fit Health and Vitals\u7684\u521b\u610f\u4ecb\u7ecd\u3002"} +{"id": "0000605", "video_name": "0abc0175-11ca-5b39-8785-520ee32fff46", "text": "\u5728\u7f1d\u7eab\u673a\u65c1\u8f9b\u52e4\u5de5\u4f5c\u7684\u4eba"} +{"id": "0000606", "video_name": "0ac4c7be-cd9e-5e99-a32c-a3d6346a7cd1", "text": "he found the source of the infection.\n\n\u5f53\u4ed6\u6253\u5f00\u75c5\u4eba\u65f6\uff0c\u4ed6\u53d1\u73b0\u4e86\u611f\u67d3\u7684\u6e90\u5934\u3002"} +{"id": "0000607", "video_name": "0ac532d8-c4c3-5222-aae7-44442b32ea9d", "text": "Powergirl\u89d2\u8272\uff0c\u7ea2\u8272\u6bd4\u57fa\u5c3c\uff0c\u9ed1\u8272\u8fd0\u52a8\u978b\uff0c\u5e26\u540a\u889c\u5e26\u7684\u767d\u8272\u957f\u7b52\u889c\uff0c\u767d\u8272\u80cc\u666f\uff0c\u4eba\u7269\u8d44\u6599\u9875"} +{"id": "0000608", "video_name": "0ac569f6-cd96-5e6e-bff1-cd45d1fc34c2", "text": "\u80cc\u666f\u4e2d\u71c3\u653e\u7740\u70df\u706b\uff0c\u591c\u665a\uff0c\u7f8e\u4e3d\u7684\u5973\u4eba\u80cc\u5bf9\u89c2\u4f17\uff0c\u534a\u8eab\u7a7f\u7740\u8857\u5934\u670d\u88c5\uff0c\u5e86"} +{"id": "0000609", "video_name": "0acb02da-4dd1-5170-b5ff-b1c1e59cdce3", "text": "\u5973\u4eba\u5750\u5728\u5496\u5561\u4e2d\u5fc3\uff0c\u8c08\u8bba\u79bb\u5a5a\u548c\u5fc3\u788e\u3002"} +{"id": "0000610", "video_name": "0ad75f56-dad1-581f-aa4f-2f9149d93dbe", "text": "20\u79d2\u7684\u89c6\u9891\uff0c\u732b\u5728\u955c\u5b50\u524d\u5237\u7259\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "0000611", "video_name": "0ad9f20a-9554-5f92-9b7e-f6c6de479d86", "text": "\u751f\u65e5\u3001\u8721\u70db\u3001\u7231\u3001\u6c34\u5f69\u3001\u5728artstation\u4e0a\u6d41\u884c\u3001\u9510\u5229\u7126\u70b9\u3001\u5de5\u4f5c\u5ba4\u7167\u7247\u3001\u590d\u6742\u7ec6\u8282\u3001\u9ad8\u5ea6\u8be6"} +{"id": "0000612", "video_name": "0adb3833-8cd5-51ed-9e06-a02e000e4b7b", "text": "\u9f13\u624b\u963f\u7279\u00b7\u5e03\u96f7\u57fa\u572820\u4e16\u7eaa60\u5e74\u4ee3\u5728\u540d\u4e3a\u201c\u706f\u5854\u201d\u7684\u5c0f\u7235\u58eb\u4ff1\u4e50\u90e8\u6f14\u594f\u3002"} +{"id": "0000613", "video_name": "0addae33-795a-52b3-a030-7e47bb6bd762", "text": "\u7a46\u65af\u6797\u80cc\u666f\uff0c\u5f00\u7bc7\u53e4\u5170\u7ecf\u9ad8\u6e05\u753b\u8d28\uff0c\u5e26\u6709\u7535\u5f71\u822c\u7684\u53d8\u7126\u6444\u50cf\u5934\uff0c16:9\u903c\u771f\u3002"} +{"id": "0000614", "video_name": "0adeffdf-bef6-54dd-b0bb-03376f4d9e38", "text": "\u9752\u5c11\u5e74\u5973\u5b69\u8e72\u5728\u8349\u5730\u4e0a\uff0c\u7a7f\u7740\u957f\u800c\u6734\u7d20\u3001\u957f\u8896\u7684\u88d9\u5b50\uff0c\u8138\u6652\u9ed1\u4e86\u800c\u4e14\u51fa\u6c57\u4e86\uff0c"} +{"id": "0000615", "video_name": "0ae3251e-7d36-5b1d-994b-0466bd8ecdaf", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u8dea\u5728\u5f3a\u5927\u7684\u5973\u6027\u673a\u5668\u4eba\u6218\u58eb\u811a\u4e0b\u7948\u6c42\u5bbd\u6055\u3002"} +{"id": "0000616", "video_name": "0af5a1a1-200f-57c9-a48b-66f1e9fc0091", "text": "\u6df7\u5408\u9e21\u8089\u548c\u8df3\u8dc3\u7684\u9cc4\u9c7c\uff0c1970\u5e74\u7684\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0000617", "video_name": "0af83140-ea30-506b-b7c1-796c9652d2e8", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u957f\u888d\u7684\u7537\u4eba\u5728\u591c\u665a\u7684\u6811\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0000618", "video_name": "0af9870b-317f-5fb6-a931-a9267d24c1e9", "text": "\u8fd9\u4e2a\u53e5\u5b50\u4e0d\u592a\u6e05\u695a\uff0c\u65e0\u6cd5\u7ffb\u8bd1\u3002\u8bf7\u63d0\u4f9b\u66f4\u8be6\u7ec6\u7684\u4e0a\u4e0b\u6587\u3002"} +{"id": "0000619", "video_name": "0b0d4d7a-ef5f-50b1-8f7f-68d144d7f660", "text": "\u4e00\u6bb530\u79d2\u957f\u7684\u98de\u72d7\u89c6\u9891"} +{"id": "0000620", "video_name": "0b0df7f4-b20a-59a3-bf62-f3bd0eebc294", "text": "\u4e00\u4e2a\u84dd\u773c\u775b\u7ea2\u5934\u53d1\u7684\u7537\u4eba\u5750\u5728\u4e00\u8f86\u5b89\u9759\u7684\u706b\u8f66\u4e0a\u3002"} +{"id": "0000621", "video_name": "0b13c4ed-4930-5234-9cf9-6b97716499f6", "text": "\u7ea6\u7ff0\u8d70\u51fa\u673a\u573a\u822a\u7ad9\u697c\uff0c\u5468\u56f4\u662f\u964c\u751f\u57ce\u5e02\u7684\u70ed\u95f9\u548c\u55a7\u56a3\u3002"} +{"id": "0000622", "video_name": "0b152024-e5c6-5d23-b892-eb60553dcfab", "text": "\u4e00\u9897\u5496\u5561\u8c46\u53d8\u6210\u4e00\u68f5\u677e\u6811\u3002"} +{"id": "0000623", "video_name": "0b16484d-dac9-56a7-9006-e53096ee0617", "text": "\u9633\u5149\u900f\u8fc7\u5bab\u6bbf\u5367\u5ba4\u7684\u7a97\u6237\u6d12\u4e0b\u3002"} +{"id": "0000624", "video_name": "0b16dcea-1e69-5765-af04-a867083de8a8", "text": "\u751f\u547d\u3001\u5b87\u5b99\u548c\u4e00\u5207\u7684\u7b54\u6848"} +{"id": "0000625", "video_name": "0b1a29b3-bd6f-56a5-974a-99a19c5b51c9", "text": "\u9ed1\u767d\u7535\u5f71\u7684\u8bfa\u4e9a\u98ce\u683c\uff0c\u7ef4\u7f57\u5c3c\u5361\u00b7\u83b1\u514b\u5728\u5e8a\u4e0a\u5c55\u5f00\u7f8e\u4e3d\u7684\u53d1\u578b"} +{"id": "0000626", "video_name": "0b1b1616-6914-5bbe-bb16-26976f4cae47", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u91cc\u627e\u5230\u4e86\u4ed6\u7684\u670b\u53cb\u3002"} +{"id": "0000627", "video_name": "0b2150b8-ec1a-56c3-8590-0d73337c768b", "text": "KSI\u548cTommy Fury\u7ad9\u5728\u62f3\u51fb\u573a\u4e0a\uff0c\u9762\u5bf920000\u4eba\u7684\u89c2\u4f17\uff0c\u5728\u8ff7\u4eba\u7684\u6c1b\u56f4\u4e2d\u5f7c\u6b64\u62e5\u62b1\u3002"} +{"id": "0000628", "video_name": "0b326044-09d9-5ae0-8fac-baf1e3cd380d", "text": "\u5b89\u5fb7\u70c8\u65af\u00b7\u7ef4\u514b\u6b63\u5728\u821e\u53f0\u4e0a\u5531\u6b4c\u3002"} +{"id": "0000629", "video_name": "0b3789cf-9a9f-5d6c-8060-d2fc8a361148", "text": "\u673a\u5668\u9e21\u5927\u7b11\u7740\u8df3\u8dc3\uff0c1970\u5e74\u7684\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0000630", "video_name": "0b380cb4-4eab-5d50-9164-fe08e1acc9fc", "text": "\u4e00\u4e2a\u5df2\u7ecf\u5341\u5c81\u7684\u5c0f\u7537\u5b69\u4f4f\u5728\u57ce\u5821\u91cc\uff0c\u6b63\u5728\u770b\u7740\u76f8\u673a\u3002"} +{"id": "0000631", "video_name": "0b39356a-c6a8-5c2a-b8f8-128ed9d19670", "text": "\u521b\u9020\u4e00\u4e2a\u65b0\u7684\u98ce\u683c\u7684\u7ea2\u8272\u4e09\u7ef4\u5361\u901a\u9e1f\uff0c\u4f5c\u4e3a\u4e00\u540d\u5e26\u6709\u4eba\u7c7b\u624b\u548c\u76f8\u673a\u6216\u9ea6\u514b\u98ce\u7684\u8bb0\u8005\u3002"} +{"id": "0000632", "video_name": "0b3c769e-7a1b-586b-91b6-0275988ac2c1", "text": "\u4e00\u4e2a\u7537\u4eba\u5411\u4ed6\u7684\u670b\u53cb\u5c55\u793a\u4e00\u53f0\u5e26\u6709\u80a1\u7968\u56fe\u8868\u7684\u7535\u8111\u3002"} +{"id": "0000633", "video_name": "0b444de6-cddf-597b-a209-b5680757bd74", "text": "\u623f\u95f4\u91cc\u6446\u6ee1\u4e86\u53e4\u8001\u3001\u8150\u70c2\u7684\u5bb6\u5177\uff0c\u8986\u76d6\u7740\u7834\u70c2\u7684\u5e8a\u5355\u3002\u4e00\u79cd\u5373\u5c06\u6765\u4e34\u7684\u5384"} +{"id": "0000634", "video_name": "0b4609ce-3ac3-5aca-a912-b3504fb0ddee", "text": "\u5c55\u793a\u4e00\u4e2a\u5370\u5ea6\u653f\u6cbb\u5bb6\u8d62\u5f97\u9009\u4e3e\u7684\u52a8\u753b\u3002"} +{"id": "0000635", "video_name": "0b468c8c-f8ca-5023-b92b-191f23ca1098", "text": "\u5c0f\u732b\u54aa\uff0c\u5728\u5e8a\u4e0a\u8df3\u8dc3\u3002\n\nSource sentence: The sun is shining brightly today.\n\u4eca\u5929\u592a\u9633\u5f88\u660e\u4eae\u3002"} +{"id": "0000636", "video_name": "0b4acf47-0da9-5e72-8e24-185fba2da2d4", "text": "\u5c3c\u5b89\u5fb7\u7279\u4eba\u7684\u65e5\u5e38\u6d3b\u52a8\u5305\u62ec\u6b65\u884c\u548c\u53d6\u6c34\u3002"} +{"id": "0000637", "video_name": "0b4b2116-863c-5850-b361-f5c96dc6f776", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u9065\u8fdc\u7684\u738b\u56fd\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u53eb\u5965\u7f57\u62c9\u7684\u7f8e\u4e3d\u516c\u4e3b\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728"} +{"id": "0000638", "video_name": "0b4c670d-8558-58ba-b6f6-b55394a2d9d9", "text": "\u505a\u4e00\u4e2a\u53ef\u6015\u7684\u4fee\u5973\u671d\u7740\u6444\u50cf\u5934\u8d70\u7684\u56fe\u50cf\u3002"} +{"id": "0000639", "video_name": "0b4c6ae0-518c-5cf5-83ff-2d0fbe103f3f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4ed3\u5e93\u91cc\u8df3\u5230\u4e00\u4e2a\u8d27\u76d8\u7684\u9876\u90e8"} +{"id": "0000640", "video_name": "0b50933c-3a52-5d0a-8219-c594a1022f84", "text": "\u8def\u514b\u00b7\u5929\u884c\u8005\u7a7f\u7740\u9ed1\u8272\u7edd\u5730\u6b66\u58eb\u888d\uff0c\u7f13\u6162\u5730\u4f38\u51fa\u624b\u6467\u6bc1\u673a\u5668\u4eba\uff0c\u7f13\u6162\u7684\u52a8\u4f5c\uff0c"} +{"id": "0000641", "video_name": "0b5479e4-7b0e-50f4-adaa-9a9db293a715", "text": "\u4e00\u4e2a\u7a7f\u7740\u7a7a\u59d0\u5236\u670d\u7684\u8df3\u821e\u5973\u5b69\u3002"} +{"id": "0000642", "video_name": "0b55188b-8ffd-5ef0-9ce3-dd396ae11c88", "text": "\u5947\u602a\u7684\u9ed1\u767d\u6444\u50cf\u5934\u955c\u5934\u3002"} +{"id": "0000643", "video_name": "0b5d827d-f0c6-5340-a489-550388a0ae64", "text": "\u6210\u4eba\u6cf3\u6c60\u7684\u5f17\u83b1\u00b7\u6d1b\u514b\u6ce8\u89c6\u7740\u9c8d\u52c3\u00b7\u9a6c\u5229\uff0c\u50cf\u53e4\u57c3\u53ca\u8c61\u5f62\u6587\u5b57\u4e00\u6837\u88ab\u63cf\u7ed8\u51fa\u6765"} +{"id": "0000644", "video_name": "0b5fc729-59cd-5da1-9763-cc67956fce53", "text": "8k\u89c6\u9891\u7a7f\u8fc7\u68ee\u6797\uff0c\u7136\u540e\u4ee5\u5149\u901f\u7a7f\u8d8a\u592a\u7a7a\uff0c\u6700\u7ec8\u5230\u8fbe\u4e00\u4e2a\u6709\u4e30\u5bcc\u7011\u5e03\u7684\u968f\u673a\u661f\u7403\u3002"} +{"id": "0000645", "video_name": "0b613214-ff87-58d1-9613-8ce9951321f5", "text": "\u5c4f\u5e55\u4e0a\u9ed1\u767d\u8272\u5199\u7740\u6570\u5b57333\u3002"} +{"id": "0000646", "video_name": "0b626b7a-397a-553d-bfbf-1ba5afbd32a7", "text": "\u53ef\u7231\u7684\u5973\u5b69\u5728\u5236\u4f5c\u51cf\u8102\u9910\uff0c\u5148\u5207\u9ec4\u74dc\uff0c\u7136\u540e\u52a0\u5165\u867e\u4ec1\u6405\u62cc\u3002\u4fe1\u606f\uff1a\u597d\u5403\u3002"} +{"id": "0000647", "video_name": "0b667894-ed46-57cc-8fb5-43e1fe2b174f", "text": "translation: \u5e15\u7279\u91cc\u514b\u00b7\u8d1d\u7279\u66fc\u71c3\u70e7\u8d85\u4eba\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "0000648", "video_name": "0b69fbdc-52a3-5753-ae11-83f715b13932", "text": "\u8d85\u73b0\u4ee3\u9ad8\u79d1\u6280\u5b50\u5f39\u5934\u5217\u8f66\u5feb\u901f\u884c\u9a76\uff0c\u7531\u514b\u91cc\u65af\u00b7\u5361\u5f6d\u7279\u6267\u5bfc\u3002"} +{"id": "0000649", "video_name": "0b6a24be-5c23-5294-997f-b74da45fa6f8", "text": "\u4e00\u540d\u7537\u5b50\u5750\u5728\u9910\u5385\u91cc\u8bf4\u8bdd\u3002"} +{"id": "0000650", "video_name": "0b6af558-e0bb-5066-8121-43d054eba1ab", "text": "\u4eca\u5929\u5b8c\u5168\u6839\u636e\u6700\u5438\u5f15\u5473\u857e\u7684\u83dc\u80b4\u6765\u9009\u62e9\u8981\u53bb\u54ea\u4e00\u5bb6\u9910\u5385\uff0c1080P\uff0c\u9ad8\u8d28\u91cf\uff0c\u6f2b\u753b\u3002"} +{"id": "0000651", "video_name": "0b6d1b1f-2570-5177-a906-c1a4a436fc61", "text": "\u5f53\u6c64\u7c73\u5b8c\u6210\u4fee\u7406\u65f6\uff0c\u673a\u5668\u4eba\u7f13\u6162\u5730\u5f00\u673a\u5e76\u91cd\u65b0\u542f\u52a8\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u673a\u68b0\u55e1\u55e1\u58f0\u54cd\u8d77\u3002"} +{"id": "0000652", "video_name": "0b729b4d-4e51-5bf9-a817-cdf763596a00", "text": "\u4e00\u4e2a\u50cf\u5e03\u5170\u5361\u4e00\u6837\u884c\u52a8\u7684\u8857\u9738\u89d2\u8272\u3002"} +{"id": "0000653", "video_name": "0b75fe38-6ac0-554a-a79b-d30491597d3f", "text": "\u4ea8\u5229\u00b7\u5361\u7ef4\u5c14\u5728\u300a\u94a2\u94c1\u4fa0\u300b\u7535\u5f71\u573a\u666f\u4e2d\u7a7f\u7740\u8d85\u4eba\u670d\uff0c\u4ee5\u5149\u901f\u5728\u7ebd\u7ea6\u57ce\u98de\u884c\u3002"} +{"id": "0000654", "video_name": "0b78ac2f-038d-5bce-ad74-6db4773ba7d5", "text": "\u591a\u5143\u5316\u80cc\u666f\u7684\u4eba\u4eec\u53c2\u52a0\u5728\u7ebf\u8ba8\u8bba\u3002"} +{"id": "0000655", "video_name": "0b8409a5-7095-509b-9c1d-19277c6107ee", "text": "\u6bd4\u5c14\u00b7\u76d6\u8328\u5411\u5fae\u8f6f\u603b\u90e8\u6325\u624b\u544a\u522b\u3002"} +{"id": "0000656", "video_name": "0b868129-3976-582b-8b35-e064b9bf2c3d", "text": "\u5730\u7403\u81ea\u8f49\u548c\u5168\u7403\u5468\u570d\u76844k\u9577\u5bec\u6bd416:9\u3002"} +{"id": "0000657", "video_name": "0b913a04-bb56-5c59-a9e1-238ceb3904ae", "text": "\u4e00\u79cd\u60f3\u8c61\u4e2d\u7684\u7279\u65af\u62c9\u8f66\u578b\uff0c\u5c55\u73b0\u51fa169\u5e74\u540e\u6240\u6709\u7684\u529f\u80fd\u7279\u70b9\u3002"} +{"id": "0000658", "video_name": "0b946311-b5c8-5b2a-bc5e-21984cb01522", "text": "\u521b\u9020\u4ee4\u4eba\u9676\u9189\u7684\u4f18\u96c5\u8ff7\u4eba\u5973\u6027\u5f62\u8c61\uff0c\u6bcf\u4e2a\u90fd\u91c7\u7528\u7cbe\u7f8e\u7684\u59ff\u52bf\u548c\u8ff7\u4eba\u7684\u80cc\u666f\u6765\u589e\u5f3a\u5979"} +{"id": "0000659", "video_name": "0b9d1e95-7dd8-5187-ac55-ff02a4b5cfc8", "text": "\u7531\u4e8e\u5bb3\u6015\u9b3c\uff0c\u519c\u6c11\u6574\u665a\u90fd\u65e0\u6cd5\u5165\u7761\u3002\u665a\u4e0a\u6751\u5b50\u91cc\u975e\u5e38\u5b89\u9759\uff0c\u6ca1\u4eba\u6562\u51fa\u95e8\u3002"} +{"id": "0000660", "video_name": "0b9df64a-4e68-5a9c-9eec-9d018f2b3f17", "text": "\u6211\u7684\u4e16\u754c\u52a8\u7269\u8df3\u821e\u8df3\u8dc3\u6253\u6597\u9999\u8549\u592a\u7a7a\u86cb\u5976\u725b\u732b\u3002"} +{"id": "0000661", "video_name": "0b9e656e-ffe3-5cc8-ac98-48d60ae87970", "text": "19\u4e16\u7eaa\u7684\u4e00\u4e2a\u53e4\u8001\u57ce\u5e02\uff0c\u6240\u6709\u623f\u5c4b\u90fd\u4eae\u8d77\u6765\u4e86\uff0c\u52a8\u611f\u5341\u8db3\u3002"} +{"id": "0000662", "video_name": "0b9e8598-a61b-5052-b34b-660c4b313c20", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4f7f\u7528\u4fbf\u643a\u5f0f\u7535\u6e90\u91ce\u8425\u7684\u89c6\u9891\u3002"} +{"id": "0000663", "video_name": "0b9ebf51-a22b-5ed2-9818-d69d3bd5b921", "text": "\u4e00\u4f4d\u53ef\u7231\u768420\u5c81\u5927\u5b66\u5973\u751f\u7a7f\u7740\u9ed1\u8272\u8fde\u8863\u88d9\uff0c\u9762\u5bf9\u955c\u5934\u793c\u8c8c\u5fae\u7b11\u3002\u5979\u7528\u4e2d\u53f7\u9ed1\u8272\u53d1\u7ef3\u675f\u8d77\u9ad8\u9ad8"} +{"id": "0000664", "video_name": "0ba08e36-9dd1-57d1-9489-00d32b770972", "text": "\u57c3\u5c14\u7ef4\u65af\u00b7\u666e\u96f7\u65af\u5229\u548c\u8a79\u59c6\u65af\u00b7\u8fea\u6069\u7684\u81c2\u529b\u6bd4\u8d5b"} +{"id": "0000665", "video_name": "0ba1334f-0cb4-5d91-a1a6-2a934002732a", "text": "\u76ae\u5361\u4e18\u53d8\u8eab\uff0c\u4ece\u9ec4\u8272\u53d8\u6210\u4e86\u7ea2\u8272\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "0000666", "video_name": "0ba2acad-8089-5a58-9c12-ec3b02e17fcc", "text": "\u70df\u96fe\u5f39\u767d\u4eae\u5149\u7206\u70b8"} +{"id": "0000667", "video_name": "0ba3d3fc-ea64-576d-a919-24d3544f7e7a", "text": "\u4eba\u7269\u884c\u8d70\u3001\u9634\u68ee\u3001\u52a8\u6001\u3001\u7535\u5f71\u5316\u3001\u8fd0\u52a8\u3001\u53d8\u7126\u955c\u5934\u3001\u89c6\u89d2\u5e73\u89c6\u955c\u5934"} +{"id": "0000668", "video_name": "0baadbdf-3e78-5ea7-8dfa-b1a6b5f25602", "text": "\u5728\u533b\u9662\u91cc\u67094\u540d\u62a4\u7406\u4eba\u5458\u5728\u5de5\u4f5c\u3002"} +{"id": "0000669", "video_name": "0bae578a-459d-5160-a973-f1ece62dfa77", "text": "\u7ea2\u8272\u6c14\u7403\u98d8\u8fc7\u68ee\u6797\u3002"} +{"id": "0000670", "video_name": "0baecd5c-0186-5aa7-9486-dcaee898f178", "text": "\u63cf\u8ff0Ajay\u548cNisha\u4e4b\u95f4\u6fc0\u70c8\u4e89\u5435\u7684\u8fc7\u7a0b\uff0c\u5bfc\u81f4\u4e86\u6253\u8033\u5149\u7684\u4e8b\u4ef6\u3002"} +{"id": "0000671", "video_name": "0bafe202-7341-54c4-9e9f-8823728393e1", "text": "\u5723\u7ecf\u4e2d\u51e0\u4e2a\u56fd\u738b\u5750\u5728\u4e00\u8d77\u3002"} +{"id": "0000672", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "earn money.\n\n\u6709\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u670b\u53cb\u4f4f\u5728\u4e1b\u6797\u91cc\uff0c\u9700\u8981\u5de5\u4f5c\u8d5a\u94b1\u3002 \n\nSource sentence: She loves to read books about history and culture.\n\n\u5979\u559c"} +{"id": "0000673", "video_name": "0bb71bc2-a802-5e14-98f0-67b9f7787d33", "text": "\u4e00\u4e2a\u51b2\u6d6a\u8005\u5728\u590f\u5a01\u5937\u65e5\u843d\u65f6\u9a91\u7740\u5de8\u6d6a\uff0c\u4fef\u77b0\u666f\u8272\u3002"} +{"id": "0000674", "video_name": "0bbfcb79-af3a-5784-aeb8-e4f5a4fa2e89", "text": "\u5728\u6c99\u6f20\u4e2d\u521b\u9020\u4e00\u7fa4\u7a7f\u7740\u8dd1\u6b65\u670d\u7684\u7537\u4eba\u3002"} +{"id": "0000675", "video_name": "0bc8a3ae-2259-5f5e-9bc9-8cfc480b4fc7", "text": "\u52a8\u6f2b\u4e2d\uff0c\u957f\u7740\u91d1\u8272\u957f\u53d1\u7684\u5929\u4f7f\u5c55\u5f00\u4e86\u4ed6\u7684\u7fc5\u8180\u3002"} +{"id": "0000676", "video_name": "0bd14623-f63a-58c3-915b-c2a599bb198b", "text": "\u8d5b\u535a\u4eba\u3001\u8df3\u821e\u3001\u5927\u52a8\u4f5c\u3001\u955c\u5934\u4ece\u8fdc\u5904\u62c9\u8fd1\u30013:4\u6bd4\u4f8b\u30014K\u3002"} +{"id": "0000677", "video_name": "0bd530c3-71c4-5b46-bdde-9f05e968a416", "text": "\u5728\u4e00\u4e2a\u8ff7\u5e7b\u68ee\u6797\u4e2d\uff0c\u4ee5\u5409\u535c\u529b\u52a8\u753b\u7535\u5f71\u98ce\u683c\u5c55\u793a\u4e00\u4f4dDJ\u7684\u8868\u6f14\u52a8\u753b\u3002"} +{"id": "0000678", "video_name": "0bde2b1e-f8d5-565e-a78f-3f2b5a1a2f9b", "text": "4\u7c73\u957f\u7684\u9e1f\uff0c\u957f\u7740\u767d\u8272\u7684\u957f\u7fbd\u6bdb\u548c\u53ef\u6015\u7684\u9ed1\u8272\u8138\u5b54\uff0c\u7ad9\u7acb\u50cf\u4eba\u7c7b\u4e00\u6837\u3002\u975e\u5e38\u9ad8\u5927\uff0c\u7fbd\u6bdb"} +{"id": "0000679", "video_name": "0be10ce5-e040-5fd9-8494-df0ce94e3045", "text": "\u5154\u5b50\u5403\u80e1\u841d\u535c\uff0c\u9ecf\u571f\u52a8\u753b\uff0c\u534e\u83b1\u58eb\u4e0e\u683c\u7f57\u7c73\u7279\u98ce\u683c"} +{"id": "0000680", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "\u5e74\u8f7b\u8b66\u5bdf\u8bad\u7ec3\u7684\u7167\u7247\u3002"} +{"id": "0000681", "video_name": "0be1c116-275a-5822-bc8a-e4eb2ff20967", "text": "\u4e00\u4e2aMinecraft\u73a9\u5bb6\u5efa\u4e86\u4e00\u5ea7\u57ce\u5821\u3002"} +{"id": "0000682", "video_name": "0be20016-4c6a-56f3-8f6c-a3c2651e5717", "text": "\u5c06\u90a3\u53ea\u9e1f\u66ff\u6362\u4e3a\u7070\u718a\u3002\u8ba9\u672a\u77e5\u4eba\u7269\u7ad9\u5728\u718a\u65c1\u8fb9\u3002\u6709\u5f88\u5927\u7684\u98ce\uff0c\u4f1a\u8ba9\u718a\u7684\u6bdb"} +{"id": "0000683", "video_name": "0be30e73-2e89-549f-bc4d-8fc5ac6a520b", "text": "\u706b\u7bad\u961f\u7834\u574f\u4e86\u548c\u5e73\u7684\u670d\u52a1\u5668\uff0c\u5bfc\u81f4\u8868\u60c5\u4e22\u5931\uff0c\u9891\u9053\u6545\u969c\uff0c\u6d88\u606f\u5728\u6570\u5b57\u6df7\u4e71\u4e2d\u4e22\u5931\u3002"} +{"id": "0000684", "video_name": "0be64c9a-fcfb-5ec7-b2a6-38a7527c899c", "text": "\u4e00\u4e2a\u5e26\u7740\u5979\u7684\u72d7\u5728\u9ed1\u6697\u7a7a\u95f4\u4e2d\u8d70\u8def\u7684\u5973\u5b66\u751f\uff0c\u540c\u65f6\u611f\u5230\u8ff7\u5931\u5728\u5b87\u5b99\u4e2d\uff0c\u5177\u6709\u7f13\u6162\u800c\u4f4e\u4fdd"} +{"id": "0000685", "video_name": "0be9fbfa-7bfb-5e64-8dd2-937b8b11f33f", "text": "\u65af\u5766\u00b7\u5e03\u62c9\u8d6b\u98ce\u683c\u7684\u5b9e\u9a8c\u7535\u5f71\uff0c\u5e27\u738724fps\uff0c\u5206\u8fa8\u73874k\u3002"} +{"id": "0000686", "video_name": "0bed735f-a4a8-59ff-99b8-a1f680be3bab", "text": "\u684c\u9762\u6444\u5f71\u7684\u4eba\u9020\u751c\u70b9\uff0c\u826f\u597d\u7684\u7167\u660e\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "0000687", "video_name": "0bef8ff5-8502-573c-b559-e15c2029ea72", "text": "\u4e24\u4e2a\u5b69\u5b50\uff0c\u4e00\u4e2a\u7537\u5b69\u4e00\u4e2a\u5973\u5b69\u5728\u73a9\u7403\u3002\uff083D\u89c6\u9891\uff0c4k\u8d85\u6e05\uff0c\u9ad8\u6e05\uff09\u4e3a\u5361\u901a\u89c6\u9891\u3002"} +{"id": "0000688", "video_name": "0bf5347a-761f-50c4-9da8-7832782bc933", "text": "\u4e24\u67b6\u98de\u673a\u76f8\u649e\u4e86\u53cc\u5b50\u5854\uff0c\u5bfc\u81f4\u5efa\u7b51\u7269\u5185\u53d1\u751f\u4e86\u5de8\u5927\u7684\u7206\u70b8\uff0c\u65e2\u6709\u8da3\u53c8\u53ef\u6015\u3002"} +{"id": "0000689", "video_name": "0bfd4573-b895-5b9b-b2e2-6047a2b8d91b", "text": "\u4e00\u5219\u5c0f\u6545\u4e8b\u3002\u7b2c\u4e00\u5e55\uff1a\u9e1f\u649e\u7a97\u800c\u4ea1\u3002\u7b2c\u4e8c\u5e55\uff1a\u4eba\u5728\u7a97\u6237\u4e0a\u8d34\u4e86\u4e00\u4e2a\u8d34\u7eb8\u3002\u7b2c\u4e09\u5e55\uff1a\u548c\u7b2c"} +{"id": "0000690", "video_name": "0c017cd7-1eec-5d74-abd3-4a03527ef977", "text": "\u4e00\u53ea\u9738\u738b\u9f99\u4e0e\u5510\u8001\u9e2d\u6253\u67b6\u3002"} +{"id": "0000691", "video_name": "0c051f34-f150-5330-b058-ebc361581bcb", "text": "\u4e00\u4e2a\u5361\u901a\u7259\u9f7f\u4e0e\u9f8b\u9f7f\u7684\u6218\u6597\u3002"} +{"id": "0000692", "video_name": "0c0974ad-2474-5a3b-91ce-54efe30ade44", "text": "\u5728Fortnite\u6e38\u620f\u4e2d\u7684\u73b0\u573a\u97f3\u4e50\u4f1a\u3002\u4fe1\u606f\uff1aADOGRX\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "0000693", "video_name": "0c0dbc11-f3d5-5db0-b189-cfdb966d62b7", "text": "\u884c\u661f\u548c\u536b\u661f\u7684\u5f62\u6210"} +{"id": "0000694", "video_name": "0c0ed5d6-4940-5669-a31f-10537e885169", "text": "\u89d2\u8272\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "0000695", "video_name": "0c18d51e-2e34-5174-8bd8-a29f68ec53fa", "text": "5\u514b\u9b54\u6cd5\u8611\u83c7\u4e4b\u65c5\u7684\u5e7b\u89ba\u8996\u89ba\u6548\u679c\uff0c\u7576\u4e00\u500bPringles\u7f50\u5b50\u7684\u5e7b\u89ba\u5411\u4f60\u8d70\u4f86\uff0c\u4f60"} +{"id": "0000696", "video_name": "0c194721-67ab-5166-a9a8-8c4073501664", "text": "\u4e00\u6ef4\u773c\u6cea\u6ef4\u5728\u97f3\u7b26\u4e0a\uff0c\u620f\u5267\u6027\u7684\u6c1b\u56f4\uff0c\u95f4\u63a5\u7684\u706f\u5149\uff0c\u626d\u66f2\u7684\u3002"} +{"id": "0000697", "video_name": "0c1d497c-d312-5ec2-8e67-bf404f892d74", "text": "\u57fa\u8def\u4f2f\u5929\u4f7f\u624b\u6301\u706b\u7130\u5b9d\u5251\uff0c\u5b88\u62a4\u4f0a\u7538\u56ed\u7684\u6811\u3002"} +{"id": "0000698", "video_name": "0c262c64-c9e9-5103-ad0b-5e6d6e2dc35d", "text": "\u5e74\u8f7b\u4eba\u5728\u516c\u56ed\u91cc\u4ea4\u8c08\u3002\u4fe1\u606f\uff1aTio Ilmo\uff08\u5b57\u4f53\uff1aCOMICS\uff09"} +{"id": "0000699", "video_name": "0c353db9-d250-59fd-88c1-04125daf98e9", "text": "\u5b8c\u6210\u4e00\u5e45\u60ca\u4eba\u7684\u9910\u5385\u7ed8\u753b\u3002"} +{"id": "0000700", "video_name": "0c3af018-1ca2-5d77-907a-08c197657c14", "text": "\u5728\u65e5\u843d\u65f6\u751f\u6210\u4e00\u5f20\u8461\u8404\u56ed\u7684\u56fe\u7247\u3002\u4e00\u4e32\u9971\u6ee1\u7684\u8461\u8404\u4ece\u85e4\u4e0a\u60ac\u6302\uff0c\u63a5\u4f4f\u6e29\u6696\u7684"} +{"id": "0000701", "video_name": "0c3c935d-7487-5576-aaff-4bf69a08c180", "text": "\u6c99\u6f20\u4e2d\u95f4\u5f00\u7740\u82b1\u7684\u7070\u8910\u8272\u690d\u7269\u3002"} +{"id": "0000702", "video_name": "0c482681-7057-595a-98fd-bf8666e17c3f", "text": "\u56fe\u50cf\u8f6c\u6362\u6210\u4e0d\u540c\u5f62\u5f0f\u7684\u8759\u8760\u4fa0\u3002"} +{"id": "0000703", "video_name": "0c4ec1a3-b126-531f-a37d-c459f14e6311", "text": "\u4e24\u4e2a\u7537\u4eba\u9760\u5f97\u975e\u5e38\u8fd1\u3002"} +{"id": "0000704", "video_name": "0c5208d3-c9fb-5e9e-9976-a8bbd2d82eff", "text": "\u8001\u4eba\u5728\u96e8\u6708\u4e2d\u8d70\u8def\u3002"} +{"id": "0000705", "video_name": "0c558716-5478-5466-b4ca-248d411cefc8", "text": "\u573a\u666f1\uff1a\u4ecb\u7ecd \u5730\u70b9\uff1a\u4e00\u5bb6\u660f\u6697\u7684\u9152\u5427\u3002\u4eba\u7269\uff1a\u4e3b\u4eba\u516c\uff08\u7ea6\u7ff0\uff09\u72ec\u81ea\u5750\u7740\uff0c\u559d\u7740"} +{"id": "0000706", "video_name": "0c57c255-8de6-5b55-a2c0-351aa1580373", "text": "\u5c55\u73b0\u51fa\u67d0\u4f4d\u7fbd\u6bdb\u7403\u8d85\u7ea7\u5de8\u661f\u7684\u6323\u624e\u4e00\u77a5\u7684\u9884\u544a\u7247"} +{"id": "0000707", "video_name": "0c5ff30e-1c40-5c11-8116-343db4fa15c0", "text": "DC\u6f2b\u753b\u5c01\u9762\u4e0a\u7684\u7ef4\u7eb3\u65af\u8bde\u751f\uff0c\u4ee5DC\u6f2b\u753b\u4eba\u7269\u7684\u5f62\u8c61\u5448\u73b0\uff0c\u7ef4\u7eb3\u65af\u8bde\u751f\u98ce\u683c\u3002"} +{"id": "0000708", "video_name": "0c600e6f-39e6-5f7a-a918-bd14924a4677", "text": "\u4ece\u9e1f\u513f\u7684\u89d2\u5ea6\u98de\u8d8a\u4e91\u5c42\uff0c\u4eab\u53d7\u5168\u666f\u89c6\u91ce\uff0c\u4e0b\u65b9\u7684\u4e91\u5c42\u4e2d\u900f\u51fa\u8d85\u51e1\u7684\u666f\u8272\u3002"} +{"id": "0000709", "video_name": "0c61f22b-ff0a-55d3-b540-a5a4cd128daa", "text": "\u4e2d\u7b49\u5927\u5c0f\u7684\u6d77\u6d6a\uff0c\u7537\u4eba\u56db\u5904\u5f20\u671b\uff0c\u6d77\u6ee9\u591c\u665a\uff0c\u6708\u4eae\u5728\u89d2\u843d\u4e2d\u51fa\u73b0\u3002"} +{"id": "0000710", "video_name": "0c63b763-25a9-5d74-a615-a0793c436e5c", "text": "\u5236\u4f5c\u4e00\u4e2a\u5361\u901a\u5316\u7684\u8ff7\u4f60\u5f62\u8c61\uff0c\u6765\u5c55\u793a\u8fd9\u4e2a3D\u6e38\u620f\u89d2\u8272\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000711", "video_name": "0c662239-d71e-5e17-a732-056b2b792c59", "text": "\u4e00\u95f4\u795e\u79d8\u7684\u70bc\u91d1\u5b9e\u9a8c\u5ba4\u5728\u591c\u665a\u51fa\u73b0\uff0c\u661f\u7a7a\u548c\u8fdc\u5904\u7684\u706f\u5149\u6620\u7167\u5728\u5b83\u4e0a\u9762\u3002"} +{"id": "0000712", "video_name": "0c6c9bbd-d7b0-5ca9-9113-8c3363ada32a", "text": "\u4e00\u6761\u5927\u5377\u66f2\u7684\u7ea2\u8272\u4e2d\u56fd\u9f99\u5728\u6d77\u4e0a\u98de\u7fd4\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u4e2d\u95f4\u6709\u4e00\u9897\u9ec4\u8272\u7684\u592a\u9633\u3002"} +{"id": "0000713", "video_name": "0c7c50e6-289d-5f99-9e5a-4b99f22fc22f", "text": "\u4e00\u4e2a\u4eba\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u7535\u5f71\u7684\u98ce\u683c\u780d\u6811\u3002"} +{"id": "0000714", "video_name": "0c7ea528-5bfe-532a-a392-d0ef498e0552", "text": "\u4e00\u540d\u7537\u5b50\u843d\u5165\u5ca9\u6d46\u4e2d\uff0c\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\uff0c\u5728Artstation\u4e0a\u6d41\u884c\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6770\u4f5c\uff0c8K\u3002"} +{"id": "0000715", "video_name": "0c822c9f-18e8-530c-adca-d38f642ca00a", "text": "\u4e00\u5934\u5927\u578b\u6bcd\u725b\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u8349\u5730\u4e0a\u4f18\u96c5\u5730\u884c\u8d70\uff0c\u80cc\u666f\u662f\u8fdc\u5904\u7684\u6811\u548c\u6e05\u6f88\u7684\u84dd\u5929\u3002"} +{"id": "0000716", "video_name": "0c892131-0538-5680-9b25-81fb90deef5f", "text": "\u5854\u7f57\u724c\u5728\u84dd\u5929\u4e2d\u98de\u7fd4\u3002"} +{"id": "0000717", "video_name": "0c8c4591-944f-55d4-b14b-a75dac635597", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5893\u5730\u91cc\u8ddf\u968f\u53e6\u4e00\u4e2a\u7537\u4eba30\u79d2\u949f\u3002"} +{"id": "0000718", "video_name": "0c8c705e-878e-5171-af64-b143eb2e4e52", "text": "\u5728\u4e00\u4e2a\u57c3\u53ca\u80cc\u666f\u4e0b\uff0c\u521b\u9020\u4e00\u4e2a\u7537\u4eba\u900f\u8fc7\u7a97\u6237\u6ce8\u89c6\u7740\u60a3\u6709\u795e\u79d8\u75be\u75c5\u7684\u4eba\u4eec\uff0c\u4ed6\u4eec\u7684\u75c7"} +{"id": "0000719", "video_name": "0c9fafb2-4643-5afe-a882-1ce3cb5b90e1", "text": "\u5723\u8bde\u8001\u4eba\u5750\u5728\u4e2d\u56fd\u957f\u57ce\u4e0a\uff0c\u559d\u7740\u5f88\u591a\u73cd\u73e0\u5976\u8336\uff0c3D\u6444\u50cf\u673a\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "0000720", "video_name": "0ca1023b-514c-5057-a884-de10e04887c0", "text": "\u4e0a\u4f20\u7684\u56fe\u7247\u663e\u793a\u4e00\u4e2a\u5927\u5927\u7684\u201c6\u201d\uff0c\u5b83\u4ee3\u8868NULS\u9879\u76ee\u5b58\u5728\u7684\u5e74\u9650\uff0c\u5e76\u6709\u4e00\u4e2a\u7537\u4eba\u76ef\u7740\u8fd9\u4e2a\u6570\u5b57\u3002\u56fe\u7247\u7684\u80cc\u666f\u7531\u51e0\u4e2a\u5757\u7ec4\u6210\u3002"} +{"id": "0000721", "video_name": "0ca164a9-06e4-5b0d-b086-b04685a391aa", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u9713\u8679\u95ea\u8000\u7684\u57ce\u5e02\uff0c\u9e1f\u77b0\u56fe\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c"} +{"id": "0000722", "video_name": "0ca16651-45b2-5b02-8290-6011a66eafc3", "text": "\u4e00\u4e2a\u540d\u53eb\u827e\u739b\u7684\u5c0f\u5973\u5b69\u5750\u5728\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u6b63\u5728\u5979\u7684\u7d20\u63cf\u672c\u4e0a\u753b\u753b\u3002"} +{"id": "0000723", "video_name": "0ca543b8-063f-5d52-b4ac-08eb0af46069", "text": "\u706f\u5149\u6253\u5f00\uff0c\u5efa\u7b51\u7269\u5448\u5fc3\u5f62\u52a8\u753b\u3002"} +{"id": "0000724", "video_name": "0ca5e208-bcd6-5018-b3bc-54bfbb64ed24", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u50cf\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u4e00\u6837\u5411\u4ed6\u7684\u5973\u53cb\u6c42\u5a5a\u3002"} +{"id": "0000725", "video_name": "0cbb4f48-29b5-5f06-8305-56a2e9cd66f0", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u975e\u6d32\u7070\u9e66\u9e49\u5728\u8302\u5bc6\u7684\u4e1b\u6797\u4e2d\u98de\u7fd4\u3002"} +{"id": "0000726", "video_name": "0cbe107e-eaec-513c-aaaa-e496d19fabd7", "text": "\u4e00\u4e2a\u8dd1\u6b65\u7684\u4eba\u5e26\u7740\u5fae\u7b11\uff0c\u5145\u6ee1\u81ea\u4fe1\u5730\u5954\u8dd1\u7740\u3002"} +{"id": "0000727", "video_name": "0cbe226d-7bb5-5e30-b65f-fc3138f276e7", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u7684\u60c5\u7eea\u4f4e\u8ff7\u7684\u4fa7\u9762\u7167\u7247\uff0c\u4f4e\u89d2\u5ea6\u62cd\u6444\uff0c\u7070\u5ea6\u5904\u7406\u3002"} +{"id": "0000728", "video_name": "0cc07b14-5984-541b-aff8-fbd72a8ca2b5", "text": "\u7535\u5f71\u822c\u7684\u955c\u5934\u4e0b\uff0c\u51e0\u67b6\u4e0d\u660e\u98de\u884c\u7269\u57281561\u5e74\u7684\u7ebd\u4f26\u5821\u4e0a\u7a7a\uff0c\u4eba\u4eec\u89c2\u770bUFO\u7684\u6218\u6597\u3002"} +{"id": "0000729", "video_name": "0cc1f64d-f020-5306-9f43-351014177336", "text": "\u975e\u5e38\u975e\u5e38\u5feb\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u6765\u81ea\u79d8\u9c81\u7684\u5de5\u5320\u72ec\u81ea\u7a7f\u8d8a\u5c71\u8109\u7684\u6545\u4e8b\u3002"} +{"id": "0000730", "video_name": "0cc4a9d7-7186-5952-b262-8f30399bb76a", "text": "5\u540d\u56e2\u961f\u6210\u5458\u6b63\u5728\u8fdb\u884c\u8f6f\u4ef6\u751f\u4ea7\u3002"} +{"id": "0000731", "video_name": "0cc4e4a1-5868-526d-8cae-e3b814708acf", "text": "\u4e00\u5e45\u7537\u4eba\u54ed\u6ce3\u65f6\u548c\u4ed6\u7684\u72d7\u5728\u4e00\u8d77\u7684\u4e8c\u7ef4\u827a\u672f\u4f5c\u54c1\u3002"} +{"id": "0000732", "video_name": "0cc5cb2c-db9b-5722-ba6d-28221fe88b77", "text": "\u5929\u4f7f\u5973\u5b69\u5728\u6708\u5149\u4e0b\u5f39\u594f\u5409\u4ed6\u3002"} +{"id": "0000733", "video_name": "0cce55c1-7cff-53f2-8b4f-30b67754262d", "text": "\u81ea\u7531\u5973\u795e\u50cf \u9644\u4ef6\uff1a1"} +{"id": "0000734", "video_name": "0cdca699-2571-52c4-bd42-02de5abff4cc", "text": "\u7537\u4eba\u7761\u5728\u6811\u4e0a\uff0c\u9a6c\u5728\u6811\u4e0b\uff0c\u7535\u5f71\u822c\u7684\u89c6\u9891\uff0c\u5361\u901a\u52a8\u753b\u3002"} +{"id": "0000735", "video_name": "0ce1362c-ef70-5297-8e25-790d868a2ed3", "text": "\u5236\u4f5c\u4e00\u4e2a\u9493\u9c7c\u4eba\u7684\u89c6\u9891\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "0000736", "video_name": "0ce51b0b-4da1-5b41-bfae-324763d813a0", "text": "\u5728\u68ee\u6797\u4e2d\u7684\u4f69\u8fea\u7eb3\u9547\u4e0a\u98de\u8fc7\u4e86\u4e00\u53ea\u53ef\u6015\u7684\u9f99\u3002"} +{"id": "0000737", "video_name": "0ce5b990-05b7-5677-a3ce-55d37d3537b9", "text": "\u6d3b\u6cfc\u7684\u5154\u5b50\u3001\u6e29\u67d4\u7684\u718a\u548c\u597d\u5947\u7684\u677e\u9f20\uff0c\u5b83\u4eec\u548c\u7766\u76f8\u5904\uff0c\u5206\u4eab\u7740\u5b83\u4eec\u96ea\u57df\u4e4b\u5bb6\u7684\u7f8e"} +{"id": "0000738", "video_name": "0ce821af-1ac7-58ca-9d69-4414ae742e0c", "text": "\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u4e1b\u6797\u4e2d\u7684\u4e00\u5ea7\u5bab\u6bbf\u5728\u4e00\u4e2a\u5c0f\u6c34\u6c60\u4e2d\u5012\u6620\u51fa\u6765\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u8e0f\u5165\u6c34\u6c60\uff0c\u6270"} +{"id": "0000739", "video_name": "0cf62b2c-ef44-51a4-a094-697d85eb39f8", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u68ee\u6797\u91cc\u505a\u745c\u4f3d\u3002"} +{"id": "0000740", "video_name": "0cf86a02-5365-5f2d-96e1-be6e8a0585c5", "text": "Y\u5973\u58eb\u6b63\u5728\u4e3a\u5916\u661f\u4eba\u505a\u996d\u3002"} +{"id": "0000741", "video_name": "0d008084-0109-5c9b-98c0-59e072b6c743", "text": "\u521b\u9020\u51fa\u8fd0\u52a8\u4e2d\u7684\u5927\u5730\u548c\u5929\u7a7a\u3002"} +{"id": "0000742", "video_name": "0d07a128-e17f-5cdd-a50a-6c2173b65188", "text": "\u4e00\u5e45\u6e29\u99a8\u7684\u5bb6\u5ead\u623f\u5c4b\u63d2\u753b\uff0c\u5185\u5916\u90fd\u6709\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "0000743", "video_name": "0d08a02a-a75f-5b28-9ba5-b99cbfd45c76", "text": "\"\u4f60\u597d\uff0c\u5b87\u822a\u5458\u3002\u6211\u6765\u81ea\u5916\u592a\u7a7a\uff0c\u662f\u4e00\u4e2a\u5916\u661f\u4eba\u3002\"\n\nSource sentence: I love eating spicy food.\n\"\u6211\u559c\u6b22\u5403\u8fa3\u7684\u98df\u7269\u3002\""} +{"id": "0000744", "video_name": "0d0a563d-7b64-5392-8cbc-ce51ab3fd736", "text": "\u5728\u4f11\u606f\u5ba4\u6c1b\u56f4\u4e2d\u88ab\u9177\u7537\u9753\u5973\u5305\u56f4\u7684DJ\u3002\u52a8\u6f2b\u98ce\u683c\uff0c\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0000745", "video_name": "0d0ab183-1936-56af-acf7-ef8b338c8988", "text": "\u65b0\u9c9c\u6210\u719f\u7684\u8292\u679c\u88ab\u6311\u9009\u5e76\u5207\u6210\u8584\u7247\u3002\u7136\u540e\uff0c\u4e00\u4e9b\u7565\u5e26\u54b8\u751c\u5473\u7684\u7279\u5236\u8292\u679c"} +{"id": "0000746", "video_name": "0d164276-a7c5-5ef5-9f8c-5a12522c49f9", "text": "\u5934\u53d1\u6cb9\u5012\uff0cShopify\u98ce\u683c\u3002"} +{"id": "0000747", "video_name": "0d16640d-b6ee-5c79-87d0-b7753ce34922", "text": "\u9ed1\u6697\u7684\u4e91\u5f69\u5728\u66b4\u98ce\u96e8\u7684\u591c\u665a\u3002\u96e8\u548c\u95ea\u7535\u3002"} +{"id": "0000748", "video_name": "0d1a7508-e8c9-597f-a357-fa3359adeb69", "text": "\u8377\u5170\u5929\u4f7f\u5728\u7c89\u8272\u623f\u95f4\u76841960\u5e74\u4ee3\u9152\u5427\u4e2d\u71c3\u70e7\uff0c\u4e0d\u5bf9\u79f0\u7684\u89c6\u89d2\u3002"} +{"id": "0000749", "video_name": "0d22f9c9-f8df-5c81-8e48-26ccb0ad1be8", "text": "\u53f2\u524d\u539f\u59cb\u4eba\u5076\u9047\u4e86\u65f6\u5149\u5012\u6d41\u7684\u73b0\u4ee3\u4eba\uff0c\u73b0\u4ee3\u4eba\u5012\u5730\u4e0d\u8d77\uff0c\u539f\u59cb\u4eba\u7528\u68cd\u5b50\u6233\u4ed6\u4eec\u3002\u5728\u73b0\u4ee3\u4eba\u7684\u53e3"} +{"id": "0000750", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "\u6bcd\u5154\u5728\u53a8\u623f\u51c6\u5907\u98df\u7269\u3002"} +{"id": "0000751", "video_name": "0d2ea4df-3a5d-5c69-8719-3e022e04faca", "text": "\u4e24\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u670b\u53cb\u5728\u4ea4\u8c08\u3002"} +{"id": "0000752", "video_name": "0d2f5348-c771-572d-8392-5694460359b4", "text": "\u4ece\u7d22\u65af\u7ef4\u83b1\u7684\u7ea2\u8272\u6c99\u4e18\u5230\u8fbe\u9a6c\u62c9\u5170\u7684\u5d0e\u5c96\u7f8e\u666f\uff0c"} +{"id": "0000753", "video_name": "0d3da4bc-1abf-5e87-bb85-170d397935c3", "text": "\u672a\u6765\u7684\u5e0c\u814a\u795e\u7947\u7d2b\u8272\u773c\u775b\uff0c\u95ea\u7535\u98ce\u66b4\uff0c4k ar 9:16"} +{"id": "0000754", "video_name": "0d3fed90-af63-537e-b582-99c5048bb378", "text": "\u6ce2\u65af\u516c\u4e3b\uff0c\u5979\u7684\u8138\u4e0a\u6234\u7740\u91d1\u94fe\u5b50\u9762\u5177\uff0c\u5168\u8eab\u8986\u76d6\u7740\u91d1\u94fe\u5b50\u548c\u94bb\u77f3\u73e0\u5b9d\u3002"} +{"id": "0000755", "video_name": "0d41ed25-08c9-5577-9fa2-75109b8a249a", "text": "\u4e00\u53ea\u4e4c\u9e26\u5728\u6218\u573a\u4e0a\u98de\u7fd4\u3002"} +{"id": "0000756", "video_name": "0d428080-d207-5598-a3fd-65b3a5a17434", "text": "\u5317\u6781\u718a\u5728\u692d\u5706\u5f62\u7684\u51b0\u9762\u4e0a\u6ed1\u51b0\uff0c\u8ddf\u968f\u300a\u5411\u65e5\u8475\u300b\u7684\u65cb\u5f8b\u8df3\u821e\u3002\n\nSource sentence: I have a"} +{"id": "0000757", "video_name": "0d49d6a2-2ce0-548b-bb16-fde69a6395ab", "text": "\u4ed6\u6709\u4e00\u4e9b\u8863\u670d\u6563\u843d\u5728\u5468\u56f4\u3002"} +{"id": "0000758", "video_name": "0d4af439-ba8d-5da2-b745-dcac65effcdf", "text": "\u8001\u864e\u5b8c\u5168\u4ee5\u8ba1\u7b97\u673a\u7cfb\u7edf\u5355\u5143\u7684\u5f62\u5f0f\u5b58\u5728\u3002"} +{"id": "0000759", "video_name": "0d4cf71f-a8f8-52ba-a257-d72822bcbdd9", "text": "\u7728\u773c\u775b\u5e76\u50cf\u4e3b\u6301\u4eba\u4e00\u6837\u81ea\u4fe1\u5730\u4e0e\u89c2\u4f17\u4ea4\u8c08\u3002\u9644\u4e0a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0000760", "video_name": "0d52530c-a6aa-569c-92d2-575a13902ad7", "text": "\u5e73\u9762\u8bbe\u8ba1\uff0c\u89c6\u9891\u7f16\u8f91\uff0c\u6c83\u5c14\u739b\uff0c\u4e9a\u9a6c\u900a\u8bfe\u7a0b\u3002"} +{"id": "0000761", "video_name": "0d53d2f0-4f1c-5f65-81d8-ecb88b671760", "text": "\u52a8\u6f2b\u60c5\u4fa3\u5728\u6d77\u6ee9\u4e0a\uff0c\u4fe1\u606f\uff1a\u7231\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "0000762", "video_name": "0d540c76-c5d3-5653-a719-01abdf044c1c", "text": "\u5236\u4f5c\u4e00\u90e83D\u8ba1\u7b97\u673a\u751f\u6210\u52a8\u753b\u63d2\u753b\uff0c\u5c55\u793a\u6545\u4e8b\u4e2d\u5f15\u4eba\u5165\u80dc\u7684\u573a\u666f\uff08\u4f8b\u5982\u4f7f\u7528\u624b\u673a\u7684\u5bb6\u5ead\u3001\u5e7d\u7075\u822c\u7684\u4eba\u7269\u3001\u5bb6"} +{"id": "0000763", "video_name": "0d556219-938b-5d53-a224-77f368099c26", "text": "\u751f\u52a8\u7684\uff0c\u955c\u50cf\u7684\uff0c\u8ba1\u7b97\u673a\u82af\u7247\uff0c\u5916\u661f\u4eba\u5750\u5728\u8ba1\u7b97\u673a\u82af\u7247\u4e0a\u559d\u8336\u3002"} +{"id": "0000764", "video_name": "0d614132-190d-56c9-b4e5-64de726be2de", "text": "\u4e00\u4e2a\u5e9f\u5f03\u7684\u5267\u9662\uff0c\u4e00\u7fa4\u4eba\uff0c\u8bb8\u591a\u5782\u76f4\u60ac\u6302\u7684\u84dd\u8272\u548c\u7ea2\u8272\u65d7\u5e1c\uff0c\u7535\u5f71\u98ce\u683c\u7684\u4f4e\u8c03\uff0c"} +{"id": "0000765", "video_name": "0d672b8d-bf31-5e24-ae8b-7654d5052080", "text": "\u4e00\u53ea\u901f\u5ea6\u5feb\u5982\u95ea\u7535\u7684\u8fc5\u731b\u9f99\u7ad9\u5728\u9ca8\u9c7c\u80cc\u4e0a\uff0c\u624b\u6301\u706b\u7bad\u7b52\u5411\u51e0\u53ea\u6d77\u9e25\u6254\u53bb\uff1b\u540c\u65f6"} +{"id": "0000766", "video_name": "0d68e07e-5747-5b70-a2b8-190b71a29c17", "text": "\u6770\u514b\u4e00\u76f4\u88ab\u6d77\u6d0b\u548c\u5b83\u7684\u795e\u79d8\u6240\u5438\u5f15\u3002\u4ed6\u6574\u5929\u90fd\u5728\u63a2\u7d22\u6d77\u5cb8\uff0c\u6536\u96c6\u8d1d\u58f3\uff0c\u5e76\u5b66\u4e60\u6816\u606f\u5728"} +{"id": "0000767", "video_name": "0d6cd1f0-6f1b-5e41-a157-e9d7e0bfdfde", "text": "\u6c99\u6f20\u95e8\u6237\u4e0e\u91d1\u5b57\u5854\u3001\u7535\u5f71\u573a\u666f\u3001\u672a\u6765\u4e3b\u4e49\u3001\u7535\u5f71\u8272\u5f69\u8c03\u8272\u677f8k\u3002"} +{"id": "0000768", "video_name": "0d6f3406-5b9a-53d0-9e3f-e14afbcaf174", "text": "\u4e00\u4f4d\u7a7f\u7740\u6821\u670d\u7684\u5c0f\u5973\u5b69\u7ad9\u5728\u5979\u5bb6\u95e8\u524d\u3002"} +{"id": "0000769", "video_name": "0d773380-c6fa-5840-bc1b-db7c8446d5c6", "text": "\u4e9a\u4f2f\u62c9\u7f55\u6574\u7406\u597d\u884c\u674e\uff0c\u5411\u5bb6\u4eba\u548c\u670b\u53cb\u544a\u522b\u3002\u4e0e\u59bb\u5b50\u6492\u62c9\u548c\u4f84\u5b50\u7f57\u5f97\u4e00\u8d77\uff0c\u4ed6\u8e0f\u4e0a\u4e86\u672a\u77e5"} +{"id": "0000770", "video_name": "0d8132fb-8143-55ad-ad01-42431ca62169", "text": "\u4e00\u5f20\u7a7a\u767d\u7684\u7eb8\uff0c\u5728\u98ce\u4e2d\u98d8\u8361\uff0c\u5448\u73b0\u7070\u8272\u7684\u8272\u8c03\u3002"} +{"id": "0000771", "video_name": "0d82e10a-d137-5fb7-9f9a-04c212942877", "text": "\u6c7d\u8f66\u505c\u5728\u4e00\u4e2a\u6050\u6016\u3001\u903c\u771f\u3001\u8be6\u7ec6\u7684\u68ee\u6797\u524d\u3002"} +{"id": "0000772", "video_name": "0d888549-5163-56e3-aac2-b718c1e77d70", "text": "\u62db\u52df\u5b69\u5b50\u82f1\u8bed\u5b66\u4e60\u73ed\u7684\u62db\u8058\u5e16"} +{"id": "0000773", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "\u4e00\u53ea\u5c0f\u7334\u5b50\u5728\u68ee\u6797\u91cc\u5403\u6843\u5b50\u3002"} +{"id": "0000774", "video_name": "0d9332f1-aa9b-5a58-a816-2584119dd806", "text": "\u5236\u4f5c\u4e00\u4e2a\u62fc\u8d34\u56fe\uff0c\u5c55\u793a\u82f1\u56fd\u572820\u4e16\u7eaa50\u5e74\u4ee3\u523080\u5e74\u4ee3\u671f\u95f4\u6700\u91cd\u8981\u7684\u6587\u5316\u8f93\u51fa\u3002"} +{"id": "0000775", "video_name": "0d952b29-fac9-5a36-b730-154bbe6b3e96", "text": "\u6570\u4e0d\u5c3d\u7684\u6570\u5b57\u6c14\u7403\u6f02\u6d6e\uff0c\u4fe1\u606f\uff1aAI\u673a\u7ec4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000776", "video_name": "0d97fd5e-c8e3-5d7a-8917-066b585a251e", "text": "\u5728\u7199\u6518\u7684\u57ce\u5e02\u751f\u6d3b\u4e2d\uff0c\u4f4f\u7740\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u5b89\u96c5\u3002\u5728\u6469\u5929\u5927\u697c\u4e2d\uff0c\u5979\u72b9\u5982\u4e00\u76cf\u5e0c\u671b\u7684"} +{"id": "0000777", "video_name": "0d9f4e80-63d2-5ac5-a97f-3b4070b8e337", "text": "\u4e3b\u89d2\u4eec\u65e2\u626e\u6f14\u82f1\u96c4\u53c8\u626e\u6f14\u53cd\u6d3e\u89d2\u8272\uff0c\u662f\u719f\u7ec3\u7684\u5251\u624b\uff0c\u5171\u540c\u80a9\u8d1f\u4e00\u4e2a\u4f7f\u547d\uff1a\u62ef\u6551\u4e00"} +{"id": "0000778", "video_name": "0da37fe8-bdeb-5b9a-920d-8a3348035204", "text": "\u4e00\u4f4d\u6234\u7740\u8033\u673a\u7684\u65f6\u5c1a\u5973\u6027\u6b63\u5728\u8df3\u821e\u5531\u6b4c\u3002"} +{"id": "0000779", "video_name": "0da4f578-983f-5656-96c3-38ba319a8c5c", "text": "\u58eb\u5175\u6551\u51fa\u79d1\u5b66\u5bb6\uff0c\u8bbe\u65bd\u7ecf\u5386\u4e86\u5de8\u5927\u7684\u7206\u70b8\u3002"} +{"id": "0000780", "video_name": "0db73d9b-cc79-5b48-8fd2-108f601b119f", "text": "\u4e39\u00b7\u9f50\u7ef4\u5179\u5411YouTube\u89c2\u4f17\u8bb2\u8bdd\u3002"} +{"id": "0000781", "video_name": "0db7de93-4dba-5199-9d35-c2b5de11c95c", "text": "\u6211\u4eec\u770b\u5230\u4e86\u514b\u82cf\u9c81\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3001\u8d85\u73b0\u5b9e\u7684\u5f62\u8c61\uff0c\u4ed6\u90a3\u795e\u79d8\u7684\u5f02\u4e16\u754c\u6c14\u606f\u6f02\u6d6e"} +{"id": "0000782", "video_name": "0db9c44f-0d8a-58d4-84b5-dcc3801add4c", "text": "\u5361\u901a\u718a\u5929\u4f7f\u6325\u7740\u7fc5\u8180\u98de\u8fc7\u4e00\u4e2a\u57ce\u5e02\u3002"} +{"id": "0000783", "video_name": "0dc4fe17-c791-5999-b60e-fde969ea2fa2", "text": "\u4f7f\u7528\u6570\u5b57\u827a\u672f\u5236\u4f5c\u7535\u5b50\u4e66\u3001T\u6064\u3001\u8ba1\u5212\u8868\u548c\u65e5\u5fd7\u7b49\u5404\u79cd\u6570\u5b57\u4ea7\u54c1\u7684\u7535\u5b50\u5546\u52a1\u89c6\u9891\u3002"} +{"id": "0000784", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "\u4efb\u52a1\u540d\u79f0\uff1a\u300a\u73b0\u4ee3\u6218\u4e892\u300b\u4e2d\u7684\u201c\u65e0\u4fc4\u7f57\u65af\u4eba\u201d\u4efb\u52a1\u3002"} +{"id": "0000785", "video_name": "0dc909ad-2cea-5e6e-bc1e-ed79e25f695d", "text": "\u5728\u5723\u7ecf\u65f6\u4ee3\uff0c\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4e2d\u4e1c\u65c5\u884c\u3002"} +{"id": "0000786", "video_name": "0dd50283-4616-58b1-873d-3c401f87e7b4", "text": "\u8428\u7c73\u8d6b\u540d\u5b57\u7684\u52a8\u753b\u6807\u5fd7"} +{"id": "0000787", "video_name": "0ddaa4b7-cf86-5ef6-bcf4-1f6767f83a74", "text": "\u98de\u884c\u8b66\u5bdf\u7d27\u8ffd\u4e00\u8f86\u65b0\u7684\u9999\u8349\u8272\u6c7d\u8f66\u3002"} +{"id": "0000788", "video_name": "0ddc0287-1d8b-5093-a070-2f2f6915e64a", "text": "\u4e00\u4e2a\u5750\u5728\u6c99\u53d1\u4e0a\u8bb2\u6545\u4e8b\u768411\u5c81\u7537\u5b69\u3002"} +{"id": "0000789", "video_name": "0ddde2b0-1a2c-529d-a566-ccc82598208a", "text": "\u4e00\u672c\u4e66\u795e\u5947\u5730\u81ea\u5df1\u7ffb\u9875\u3002"} +{"id": "0000790", "video_name": "0de69362-e629-5f2f-a968-1ef1af8eee35", "text": "\u5728\u4e00\u4e2a\u6e29\u67d4\u7684\u65f6\u523b\uff0c\u7537\u5973\u8f7b\u8f7b\u5730\u78b0\u5934\uff0c\u5206\u4eab\u5f7c\u6b64\u7684\u611f\u53d7\u3002\u5728\u8fd9\u4e2a\u8fc7\u7a0b\u4e2d\uff0c\u4e00\u79cd\u6e29\u6696\u548c\u7406\u89e3\u7684\u611f"} +{"id": "0000791", "video_name": "0de6c604-4cee-55b4-8a05-d7958861cdc4", "text": "8k\u9ad8\u5206\u8fa8\u7387\u5c0f\u767d\u51b0\u7bb1"} +{"id": "0000792", "video_name": "0de9dd78-ca9d-570d-867a-2bae12810bbb", "text": "\u4eba\u4eec\u5728\u7f8e\u4e3d\u7684\u57ce\u5821\u91cc\u8df3\u534e\u5c14\u5179\u3002"} +{"id": "0000793", "video_name": "0debbbba-23de-5f48-9e0c-fae7b12bfa51", "text": "\u7741\u5f00\u773c\u775b\uff0c\u52a8\u52a8\u624b\u81c2\u548c\u5934\uff0c\u5a74\u513f\u8036\u7a23\u5728\u5145\u6ee1\u5e72\u8349\u7684\u9a6c\u69fd\u91cc\uff0c\u5468\u56f4\u662f\u53d1\u7740"} +{"id": "0000794", "video_name": "0e0837c6-8532-5307-ab13-c8d7b5117778", "text": "\u8bb8\u591a\u5c0f\u732b\u5728\u9662\u5b50\u91cc\u73a9\u800d\u3002"} +{"id": "0000795", "video_name": "0e0b90eb-2338-548f-a9a9-3c2fac534693", "text": "\u751f\u6210\u4e00\u4e2a\u7334\u5b50\u5728\u6c99\u6ee9\u4e0a\u884c\u8d70\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "0000796", "video_name": "0e0dcccb-b74f-543f-9f02-1561ec2a63f0", "text": "\u521b\u5efa\u8fd9\u4e2a\u89c6\u9891\u526a\u8f91\u7684\u6700\u4f73\u7248\u672c\u3002"} +{"id": "0000797", "video_name": "0e0ea2ea-cb76-5367-9bf3-882b7c0386d0", "text": "\u4e00\u4e2a\u7a7f\u7740\u7834\u5e03\u7684\u58eb\u5175\u5728\u7528\u8349\u57cb\u846c\u6b7b\u8005\uff0c\u6444\u50cf\u673a\u5728\u9ad8\u5904\u62cd\u6444\u3002"} +{"id": "0000798", "video_name": "0e1e7069-9fa8-534f-b81a-f87c14596709", "text": "\u611f\u8c22\u6536\u770b\uff0c\u8bf7\u4e3a\u6211\u4eec\u7684\u9891\u9053\u70b9\u8d5e\u548c\u8ba2\u9605\u4ee5\u83b7\u53d6\u66f4\u591a\u7c7b\u4f3c\u89c6\u9891\u3002"} +{"id": "0000799", "video_name": "0e20ba49-09ab-55ce-b39a-b16e3cd2e3f3", "text": "\u83cc\u4e1d\u5728\u73bb\u7483\u8868\u9762\u4e0a\u6269\u6563\u3002"} +{"id": "0000800", "video_name": "0e21a42c-9d6f-53e3-92ac-de6ccdb2f053", "text": "\u4e00\u5bb6\u4eba\uff0812\u4e2a\u4eba\uff09\u4e00\u8d77\u5403\u665a\u9910\u3002"} +{"id": "0000801", "video_name": "0e21bb67-f4e0-502f-8a91-308d78ca40df", "text": "\u767d\u8272\u7684\u9e45\u5375\u77f3\u5728\u9e45\u5375\u77f3\u6d77\u6ee9\u4e0a\u6f02\u6d6e\u3002\u571f\u9ec4\u8272\u7684\u6d77\u6c34\u5728\u80cc\u666f\u4e0a\u6a21\u7cca\u4e0d\u6e05\u3002"} +{"id": "0000802", "video_name": "0e2e8ef4-b19d-50e2-a083-1b3f501335ca", "text": "\u4e00\u4e2a\u5750\u5728\u58c1\u7089\u65c1\u6905\u5b50\u4e0a\u768440\u5c81\u7537\u4eba\uff0c\u6b63\u5728\u9605\u8bfb\u4e00\u672c\u4e66\uff0c\u6c1b\u56f4\u8f7b\u67d4\u6e29\u99a8\u3002"} +{"id": "0000803", "video_name": "0e378030-f961-5976-9382-3703cc2b9ef2", "text": "\u5317\u6b27\u795e\u8bdd\u4e2d\u7684\u82f1\u96c4\u7d22\u5c14\uff08Thor\uff09\u501f\u52a9\u4e00\u4e2a\u53eb\u505a\u6bd4\u5f17\u96f7\u65af\u7279\uff08bivrest\uff09\u7684\u7a7a\u95f4\u6865\u79bb\u5f00\u4e86\u5730\u7403\u3002\u8272"} +{"id": "0000804", "video_name": "0e3875c5-cebc-580c-88d4-7ae4e1256ed1", "text": "\u6df1\u6d77\u4e2d\u7684\u9c7c\u6f5c\u6c34"} +{"id": "0000805", "video_name": "0e38a7d0-bacc-5e60-bd58-826ff15c6db2", "text": "\u5730\u4e0a\u6709\u4e00\u9053\u7ea2\u8272\u6db2\u4f53\u7684\u75d5\u8ff9\u3002\u5e7d\u7075\u822c\u7684\u8eab\u5f71\u77ac\u95f4\u51fa\u73b0\u53c8\u6d88\u5931\u3002"} +{"id": "0000806", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "\u5df4\u52c3\u7f85\u00b7\u57c3\u65af\u79d1\u5df4\u723e\u8207\u5370\u5ea6\u8001\u4eba\u3002"} +{"id": "0000807", "video_name": "0e4f9042-c651-50ef-9793-b2e5ec546dfa", "text": "\u7136\u800c\uff0c\u5b83\u4eec\u786e\u5b9e\u6709\u4e00\u4e9b\u7279\u6b8a\u7684\u4e1c\u897f\u5e2e\u52a9\u5b83\u4eec\u751f\u5b58\u5e76\u6700\u7ec8\u8fdb\u5316\uff0c\u90a3\u5c31\u662f\u5b83\u4eec\u62e5\u6709\u5927\u8111\uff0c\u8fd9\u4e9b"} +{"id": "0000808", "video_name": "0e57da11-1747-54b3-a3b9-7aff8bf4bd62", "text": "she discovered a hidden cave filled with ancient artifacts.\n\n\u6709\u4e00\u5929\uff0c\u739b\u96c5\u5728\u72e9\u730e\u65f6\u53d1\u73b0\u4e86\u4e00\u4e2a\u9690\u85cf\u7684\u6d1e\u7a74\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u53e4\u4ee3\u6587\u7269\u3002"} +{"id": "0000809", "video_name": "0e59669a-5b9d-5be8-831b-17e43ab91428", "text": "\u9e2d\u5b50\u548c\u5929\u9e45\u5728\u6c34\u4e0a\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "0000810", "video_name": "0e5caff9-8a3a-563f-9862-df19f18652ea", "text": "\u4e00\u4f4d\u8001\u725b\u4ed4\u88c1\u7f1d\u5bf9\u4ed6\u81ea\u5df1\u5236\u4f5c\u7684\u725b\u4ed4\u88e4\u975e\u5e38\u6ee1\u610f\u3002"} +{"id": "0000811", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "into the school office.\n\n\u4e00\u540d\u7a7f\u7740\u6821\u670d\u7684\u5973\u5b66\u751f\u6b63\u7a7f\u8fc7\u5b66\u6821\uff0c\u770b\u5230\u5730\u4e0a\u6709\u4e00\u90e8\u624b\u673a\uff0c\u5979\u6361\u8d77\u6765\u5e76\u4ea4\u5230\u4e86\u5b66\u6821\u529e"} +{"id": "0000812", "video_name": "0e68acff-136e-5d10-99fb-75751e77e7fb", "text": "\u4e00\u4f4d\u5987\u5973\u5de5\u4f5c\u4e86\u6574\u6574\u4e00\u5929\u540e\u611f\u5230\u75b2\u60eb\uff0c\u5979\u5750\u5728\u6905\u5b50\u4e0a\u7136\u540e\u9677\u5165\u4e86\u7761\u7720\u3002"} +{"id": "0000813", "video_name": "0e77b5fd-d789-5e5d-a59f-6497458c29e4", "text": "\u751f\u6210\u7d22\u9a6c\u91cc\u5bb6\u5ead\u7236\u6bcd\u513f\u5b50\u5973\u513f\u54ed\u6ce3\u60b2\u4f24\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "0000814", "video_name": "0e790074-e450-5d14-9075-6c87fb36d96e", "text": "\u521b\u5efa\u548c\u5e73\u81ea\u7136\u3001\u9e1f\u513f\u9e23\u53eb\u548c\u5b81\u9759\u73af\u5883\u7684\u56fe\u50cf\uff0c\u4ee54K\u548cHD\u7684\u753b\u8d28\u521b\u5efa\u8fd9\u4e2a\u56fe\u50cf\u3002"} +{"id": "0000815", "video_name": "0e81dd52-30f2-5d3d-b9f5-0e241fb515b4", "text": "\u4e00\u4e2a\u62e5\u6709\u5927\u767d\u7fc5\u8180\u548c\u76d4\u7532\u3001\u624b\u6301\u5251\u7684\u7f8e\u4e3d\u767d\u8272\u58eb\u5175\u3002\u4ed6\u7528\u5251\u4fdd\u62a4\u548c\u7167\u987e\u7740\u4e00\u4e2a"} +{"id": "0000816", "video_name": "0e84de53-aa2a-54b5-a12f-1db6ddb76c9f", "text": "\u4e00\u4e2a\u7985\u5e08\u5c06\u5375\u77f3\u6254\u8fdb\u88ab\u8302\u5bc6\u7684\u7eff\u6811\u73af\u7ed5\u7684\u9759\u6c34\u6c60\u4e2d\u3002"} +{"id": "0000817", "video_name": "0e8ba3b7-8152-5e69-ab95-21f3ba4543ee", "text": "15\u5c81\u7684\u5df4\u57fa\u65af\u5766\u8d2b\u56f0\u5973\u5b69\u7a7f\u7740\u5361\u901a\u98ce\u683c\u7684\u5168\u8eab\u5934\u5dfe\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "0000818", "video_name": "0e929118-095b-5672-a3ee-3bd993865f04", "text": "\u6cb9\u753b\u98ce\u683c\uff0c\u7eff\u91d1\u8272\u58a8\u6c34\u753b\uff0c\u4e2d\u56fd\u9f99\uff0c\u65b0\u4e2d\u5f0f\uff0c\u6781\u7b80\u4e3b\u4e49\uff0c\u624b\u7ed8\u98ce\u683c\uff0c\u63d2\u753b\uff0c\u8282\u65e5\u98ce\u683c\uff0c\u67d4\u548c"} +{"id": "0000819", "video_name": "0e93de1e-d041-5c7e-b312-4866bd7ed39c", "text": "\u81ea\u7531\u5973\u795e\u50cf\u8df3\u4e0b\u53f0\u5ea7\u3002"} +{"id": "0000820", "video_name": "0e9a52b2-26a5-58f7-a467-78d73838a394", "text": "\u4e00\u4e2a\u6ca1\u6709\u7a7f\u8863\u670d\u7684\u7537\u4eba\uff0c\u6325\u821e\u7740\u4e00\u628a\u65a7\u5934\u3002"} +{"id": "0000821", "video_name": "0ea0dabf-9983-544c-8ce0-c842cbcbdba4", "text": "\u73b0\u5b9e\u7684\u7ef4\u591a\u5229\u4e9a\u65f6\u949f\uff0c\u65f6\u95f4\u98de\u901d\uff0c\u5669\u68a6\uff0c\u8fd0\u52a8\uff0c\u878d\u5316\uff0c\u626d\u66f2\uff0c\u94bb\u77f3\u3002"} +{"id": "0000822", "video_name": "0ea2b67b-3b34-5044-ac1d-c5f78bd14389", "text": "\u4e00\u90e8\u5173\u4e8e\u673a\u5668\u4eba\u5f00\u7740\u4e00\u8f86\u672a\u6765\u98ce\u683c\u6c7d\u8f66\u5e26\u7740\u72d7\u7684\u52a8\u753b\u3002\u4ed6\u4eec\u6b63\u5728\u8c08\u8bba\u98df\u7269\u3002"} +{"id": "0000823", "video_name": "0ea46ba0-3996-5c63-ae23-72d53bc8597b", "text": "\u82cd\u5c71\u6d3e\u98ce\u683c\u7684\u9f99\uff0c\u5e26\u6709\u661f\u9645\u80cc\u666f"} +{"id": "0000824", "video_name": "0ea5f631-a1c5-5efc-be57-934b8bff762c", "text": "\u6d77\u4e0a\u7684\u707e\u96be\uff0c\u5730\u4e0a\u7684\u706b\u707e\u3002"} +{"id": "0000825", "video_name": "0ea6a7ad-21b8-558c-a4ed-7291a46c9b37", "text": "\u521b\u5efa\u4e00\u4e2aPPT\u5e7b\u706f\u7247\uff0c\u5217\u51fa\u5173\u4e8e\u4ec0\u4e48\u662fTableau\u6570\u636e\u53ef\u89c6\u5316\u7684\u8981\u70b9\u3002"} +{"id": "0000826", "video_name": "0ea99e5e-ad1a-5fd9-88be-3c4964b3ce6c", "text": "\u4e24\u4e2a\u6f02\u4eae\u7684\u4e2d\u56fd\u5973\u5b69\u6b63\u5728\u73a9\u6c34\uff0c\u7b11\u7740\u3002"} +{"id": "0000827", "video_name": "0eaccb2d-44a5-57f2-94ac-6b1a7d50efbc", "text": "Source sentence: \u603b\u662f\u8bb0\u5f97\u6e29\u67d4\u667a\u6167\u7684\u732b\u5934\u9e70\u5965\u5229\u5f17\u548c\u68ee\u6797\u4e4b\u821e\u7684\u6b22\u4e50\uff0c\u8d85\u73b0\u5b9e\u7684\u611f\u89c9"} +{"id": "0000828", "video_name": "0eb7e25f-8760-58ef-bf48-1a1de39c7d3b", "text": "\u7d2b\u8272\u85b0\u8863\u8349\u7761\u7720\u836f\u996e\u6599\u7684\u903c\u771f\u56fe\u50cf"} +{"id": "0000829", "video_name": "0eb80238-ab95-5c94-a09c-e5e4003e3c6f", "text": "\u7535\u5f71\u4ee5\u4e00\u4e2a\u88ab\u5e9f\u5f03\u7684\u7cbe\u795e\u75c5\u9662\u91cc\u7684\u6050\u6016\u5bc2\u9759\u4f5c\u4e3a\u5f00\u573a\u3002\u6211\u4eec\u8ba4\u8bc6\u4e86\u66fe\u5728\u8fd9\u91cc\u6cbb\u7597\u8fc7\u7684"} +{"id": "0000830", "video_name": "0ebe727a-4d39-5322-903c-46639b30bb27", "text": "\u5728\u5e8a\u5355\u4e0b\u8425\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5728\u90a3\u91cc\u56db\u4e2a\u670b\u53cb\u7528\u624b\u673a\u624b\u7535\u7b52\u7684\u5149\u8292\u521b\u9020\u4e86\u4e00\u4e2a\u4e34\u65f6\u7684\u907f\u96be\u6240\uff0c\u5206\u4eab\u6545\u4e8b"} +{"id": "0000831", "video_name": "0ebe92d6-ad35-5025-a6f8-23dcdffa1631", "text": "\u5728\u96e8\u6797\u623f\u5c4b\u7684\u9732\u53f0\u4e0a\u5750\u7740\uff0c4K\u89c6\u9891\u3002"} +{"id": "0000832", "video_name": "0ed00583-c073-5969-ba9e-689d9ea17e83", "text": "\u5973\u5b69\u5750\u5728\u526f\u9a7e\u9a76\u5ea7\u4f4d\u4e0a\u900f\u8fc7\u8f66\u7a97\u5411\u5916\u770b\u3002"} +{"id": "0000833", "video_name": "0ed030ca-d761-578d-a6ba-637221ce7d92", "text": "\u8fd0\u52a8\u9ad8\u54c1\u8d28\u7684\u52a8\u6f2b\u5973\u5b69\u8d5b\u535a\u54e5\u7279\u60b2\u4f24\u7684\u5973\u5b69\u770b\u7740\u6444\u50cf\u5934\u3002"} +{"id": "0000834", "video_name": "0ed9002e-e7d9-5e27-ac4a-1b68e8107278", "text": "\u5f8b\u5e08\u5728\u6cd5\u5ead\u4e0a \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0000835", "video_name": "0edb5416-6738-5565-9c9b-77bbb1e97c30", "text": "\u5728\u6708\u7403\u4e0a\u5531\u6b4c\u7684\u72d7\u3002"} +{"id": "0000836", "video_name": "0edc212a-bd9a-5c77-88b4-73b443fef2aa", "text": "\u9ed1\u8272\u886c\u886b\u80e1\u987b\u7537\u5b50\u5750\u5728\u529e\u516c\u5ba4\u7684\u84dd\u8272\u6905\u5b50\u4e0a\uff0c\u8fb9\u5403\u7740\u7eff\u8272\u82f9\u679c\uff0c\u8fb9\u5728\u53f0\u5f0f\u7535"} +{"id": "0000837", "video_name": "0edf3fc5-e26f-58d2-92a3-b0208f2ada27", "text": "\u661f\u7403\u5927\u6218\u4e3b\u9898\uff0c\u68ee\u6797\u4e2d\u7684\u53db\u519b\uff0c\u7535\u5f71\u822c\u7684\uff0c\u5bfb\u627e\u5929\u7a7a\u4e2d\u7684\u67d0\u4e9b\u4e1c\u897f\u3002"} +{"id": "0000838", "video_name": "0ee0ae11-9f0a-51cb-9155-ca11ff3fde80", "text": "\u9a6c\u5e93\u65af\u00b7\u5965\u52d2\u7559\u9a91\u9a6c\u3002"} +{"id": "0000839", "video_name": "0ee19d2b-13ee-5451-9d32-6557beb0031f", "text": "\u5c0f\u732b\u5728\u6905\u5b50\u4e0a\u6d17\u5b83\u7684\u722a\u5b50\u3002"} +{"id": "0000840", "video_name": "0ee306fe-5ab1-5056-a29b-a9409be67c45", "text": "\u533b\u9662\u7684\u7acb\u4f53\u4e66\u5f39\u51fa\u5f53\u5b83\u6253\u5f00\u65f6\u3002"} +{"id": "0000841", "video_name": "0eeb55ac-320e-5757-88dc-d8770d02a7ef", "text": "\u76ae\u514b\u65af\u7535\u5f71\u516c\u53f8\u901a\u8fc7\u5efa\u7b51\u7269\u5411\u524d\u53d1\u5c55\u3002"} +{"id": "0000842", "video_name": "0ef2f43c-3934-5741-b749-c75e56b95f53", "text": "\u6c34\u679c\u548c\u852c\u83dc\u53d8\u6210\u4e86\u4e00\u79cd\u6a59\u8272\u996e\u6599\u3002"} +{"id": "0000843", "video_name": "0ef49594-c0cc-55c6-bbb5-beaf4ad3a0c8", "text": "\u5f39\u51fa\u5f0f\u4e66\u7c4d\uff0c\u5e26\u6709\u6298\u53e0\u5c55\u5f00\u7684\u56fe\u4e66\u9986\u5efa\u7b51\u3002"} +{"id": "0000844", "video_name": "0efbc5a7-657b-5cae-8565-a87a89e6802a", "text": "\u6258\u6770\u7985\u9662\u548c\u5510\u00b7\u5409\u8bc3\u5fb7\u00b7\u591a\u4f5b\u6717\u660e\u54e5\u7684\u878d\u5408"} +{"id": "0000845", "video_name": "0efc2d9e-e910-5d29-9551-2d1f026221e9", "text": "\u83f2\u5229\u514b\u65af\u611f\u5230\u975e\u5e38\u60b2\u4f24\u548c\u8ff7\u5931\uff0c\u56e0\u4e3a\u4ed6\u6ca1\u6709\u4eba\u6765\u7167\u987e\u4ed6\u6216\u5728\u8fd9\u7247\u5de8\u5927\u7684\u68ee\u6797\u4e2d\u6307\u5f15\u4ed6\u3002\u4ed6"} +{"id": "0000846", "video_name": "0efccbd3-416f-5275-b2e5-aed21f91c85d", "text": "\u5c55\u793a\u4e00\u4e2a\u65af\u5df4\u8fbe\u6218\u58eb\u7ad9\u7acb\u5728\u4ed6\u7684\u65b9\u9635\u4e2d\uff0c\u4ee3\u8868\u7740\u65af\u5df4\u8fbe\u6218\u58eb\u7cbe\u82f1\u548c\u575a\u5b9a\u4e0d\u79fb\u7684\u672c\u8d28\u3002"} +{"id": "0000847", "video_name": "0efce133-c865-58d9-8a0e-6619650c1da4", "text": "\u897f\u5f17\u5409\u5c3c\u4e9a\u5dde\u7684\u4e24\u6816\u4eba\uff0c60\u5e74\u4ee3\u8f6f\u6838\u7f8e\u5b66\uff0c\u602a\u5f02\uff0c\u67d4\u548c\u7684\u8272\u5f69\uff0c\u6000\u65e7\u7684\u3002"} +{"id": "0000848", "video_name": "0f0095a5-234b-5672-b2cb-4d5106728950", "text": "\u76ae\u514b\u65af\u73a9\u5177\u603b\u52a8\u5458\u4e2d\uff0c\u4f0d\u8fea\u5728\u623f\u95f4\u91cc\u8df3\u8dc3\u5954\u8dd1\u3002"} +{"id": "0000849", "video_name": "0f07b697-cfaa-5402-9512-2a6ceeeacb7a", "text": "\u63cf\u7ed8\u4eba\u7c7b\u63a2\u7d22\u592a\u7a7a\u6df1\u5904\u7684\u573a\u666f\uff0c\u6709\u672a\u6765\u611f\u7684\u5b87\u5b99\u98de\u8239\u548c\u7a7a\u95f4\u7ad9\u7a7f\u8d8a\u5b87\u5b99\u98ce\u666f\u3002"} +{"id": "0000850", "video_name": "0f0b84e1-462e-5b0c-a69e-1e8bb826aa35", "text": "\u6cf0\u59ec\u9675\u88ab\u6df9\u6c34\u8986\u76d6\uff0c\u5fb7\u91cc\u6d2a\u6c34\uff0c\u752870\u6beb\u7c73\u963f\u7eb3\u83ab\u83f2\u514b\u900f\u955c\u62cd\u6444\u7684\u7535\u5f71"} +{"id": "0000851", "video_name": "0f0c6715-3607-517d-98c1-14ad06428291", "text": "\u9707\u98a4\u505c\u6b62\u4e86\uff0c\u5e9f\u5f03\u7684\u4e0d\u660e\u98de\u884c\u7269\u63a2\u7d22\u7740Eldoria\u8fd9\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u661f\u7403\uff0c\u638c\u8235\u7684\u662f\u5730"} +{"id": "0000852", "video_name": "0f0ca273-33e7-54eb-83d0-3bb002b66041", "text": "\u661f\u7403\u5927\u6218\u573a\u666f\uff0c\u8fbe\u65af\u00b7\u7ef4\u8fbe\u62ff\u7740\u5149\u5251\uff0c\u903c\u771f\u7684\u7167\u7247\u3002\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002"} +{"id": "0000853", "video_name": "0f10966c-fd6d-5c07-96e4-d42b49d6f492", "text": "\u4e00\u4e2a\u83f2\u5f8b\u5bbe\u7537\u5b50\u7a7f\u7740\u5df4\u9f99\u886b\u8d70\u8def\u3002"} +{"id": "0000854", "video_name": "0f142550-26a5-5115-aef6-183f678b792f", "text": "\u4e00\u53ea\u6d77\u602a\uff0c\u5728\u66b4\u98ce\u96e8\u4e2d\u4ece\u6c34\u4e2d\u5347\u8d77\uff0c\u4f34\u968f\u7740\u95ea\u7535\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7535\u5f71\uff0c\u9ed1\u6697\u98ce\u683c\uff0c\u6050\u6016"} +{"id": "0000855", "video_name": "0f1661b1-9f83-595b-8c63-5b391d554a1e", "text": "\u5b87\u822a\u5458\u7a7f\u7740\u5b87\u822a\u670d\u5728\u5916\u5c42\u7a7a\u95f4\u6f02\u6d6e\uff0c\u903c\u771f\u800c\u8d85\u73b0\u5b9e\u3002"} +{"id": "0000856", "video_name": "0f168e73-85c3-5efb-a715-4c3027d6f803", "text": "\u8bd5\u56fe\u6293\u4f4f\u5723\u8bde\u6811\u4e0b\u7684\u5f69\u8272\u4e1d\u5e26\u3002"} +{"id": "0000857", "video_name": "0f17a1bf-1e0b-5614-b4ef-fdb14be33522", "text": "\u5728\u7e41\u5fd9\u7684\u9500\u552e\u73b0\u573a\uff0c\u7535\u8bdd\u4e0d\u505c\u54cd\u8d77\uff0c\u6162\u52a8\u4f5c\u5c55\u73b0\u4e86\u5de5\u4f5c\u4e2d\u7684\u80dc\u5229\u6210\u529f\uff0c\u901a\u8fc7\u5bbd\u753b\u5e45\u548c\u52a8\u6001\u7167\u660e"} +{"id": "0000858", "video_name": "0f1f6d07-522b-586d-b052-f1275df7bf70", "text": "\u5728\u6c34\u4e0a\u7559\u4e0b3D\u5e7b\u60f3\u6cb3\u6d41\u3001\u4e0d\u771f\u5b9e\u7684\u6e32\u67d3\u548c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "0000859", "video_name": "0f221017-4695-58f5-913d-7c7692790603", "text": "\u672a\u6765\u57ce\u5e02\u73b0\u5b9e\u52a8\u753b\u4e2d\u7684\u5973\u6027"} +{"id": "0000860", "video_name": "0f245125-7c39-5131-81e9-5b0af594a368", "text": "gracefully.\n\n\u4e00\u540d\u65f6\u88c5\u6a21\u7279\u7a7f\u7740\u9ed1\u767d\u6bdb\u76ae\u5927\u8863\uff0c\u5728T\u578b\u53f0\u4e0a\u4f18\u96c5\u5730\u8d70\u52a8\u3002"} +{"id": "0000861", "video_name": "0f2dd7d3-ce51-55dc-b6d2-4297c1edebe8", "text": "\u65f6\u95f4\u63a8\u79fb\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u9897\u79cd\u5b50\u751f\u957f\u6210\u82b1\u7684\u8fc7\u7a0b\u3002"} +{"id": "0000862", "video_name": "0f324789-bfbd-5c86-8c6b-bc02e38977d9", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u672a\u6765\u4e3b\u4e49\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u91cc\u5403\u62c9\u9762\uff0c\u9713\u8679\u706f\u95ea\u70c1\uff0c\u573a\u666f\u72b9\u5982\u7535\u5f71\u3002"} +{"id": "0000863", "video_name": "0f3295ad-f88b-517b-8177-9ed184a7ba6b", "text": "\u4e00\u5e45\u5fc3\u7075\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u7531\u4e00\u4e2a\u53d1\u5149\u7684\u706f\u7b3c\u7167\u4eae\uff0c\u8c61\u5f81\u7740\u5bf9\u7cbe\u795e\u7406\u89e3\u7684\u63a2\u7d22\u3002\u6d88\u606f\uff1a1\u4e2a"} +{"id": "0000864", "video_name": "0f341f10-f556-5eac-88e3-1251e5c15a8d", "text": "\u56fd\u738b\u8eab\u7a7f\u5370\u5ea6\u56fd\u738b\u7684\u670d\u9970\uff0c\u4e0e\u4ed6\u7684\u513f\u5b50\u4eec\u4e00\u8d77\u7ad9\u5728\u56fd\u738b\u7684\u5730\u65b9\uff0c\u6bcf\u4e2a\u4eba\u624b\u6301\u4e0d\u540c\u98ce\u683c\u7684\u9493"} +{"id": "0000865", "video_name": "0f3f98fb-6343-50a6-8fe2-8df872233261", "text": "\u5c55\u793a\u5e74\u8f7b\u7684\u5409\u4ed6\u624b\u5750\u5728\u5c71\u9876\u4e0a\uff0c\u4f18\u96c5\u5730\u98de\u8fc7\u5929\u7a7a\u7684\u9e1f\u513f\u52a8\u753b\uff0c\u4e3a\u8349\u548c\u82b1\u6dfb\u52a0\u5fae\u5999\u7684\u52a8\u753b"} +{"id": "0000866", "video_name": "0f42c0c9-d394-5cc4-9d39-15b257b57c64", "text": "\u7528\u83ca\u82b1\uff0c\u7136\u540e\u653e\u4e00\u9762\u653e\u5927\u955c\u6765\u89c2\u770b\u8fd9\u6735\u82b1\u7684\u7ec6\u8282\uff0c\u5e94\u8be5\u662f\u903c\u771f\u7684\uff0c\u80fd\u591f\u653e\u5927\u548c\u7f29\u5c0f\u6bcf\u4e00\u4e2a\u82b1"} +{"id": "0000867", "video_name": "0f42f37a-5591-508f-abe0-a34bc8970a8b", "text": "\u751f\u6210\u89c6\u9891\uff0c\u5973\u5b69\u6b63\u5728\u9010\u4e2a\u8bb2\u8ff0\u4e00\u4e9b\u4e8b\u60c5\u3002"} +{"id": "0000868", "video_name": "0f453cdf-1500-5017-b3b4-7bb3e57a8451", "text": "\u7c73\u5a05\u559c\u6b22\u5728\u5916\u9762\u73a9\uff0c\u5c24\u5176\u662f\u5728\u96e8\u540e\u592a\u9633\u51fa\u6765\u7684\u65f6\u5019\u3002"} +{"id": "0000869", "video_name": "0f487bb2-26a5-5833-b479-f0e0a5b62a92", "text": "\u5c71\u4e0a\u7684\u5c0f\u6751\u5e84\u5929\u6c14\u4e0d\u597d\uff0c\u6709\u5927\u96e8\u548c\u5973\u738b\u964d\u4e34\u3002"} +{"id": "0000870", "video_name": "0f4a420e-bd42-5ad1-8bcb-4a3543950c50", "text": "\u4e00\u4e2a\u5927\u57ce\u5e02\u7684\u7a7a\u4e2d\u955c\u5934\uff0c\u56f4\u7ed5\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u65cb\u8f6c\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u771f\u5b9e\u3002"} +{"id": "0000871", "video_name": "0f4d302f-2fea-5888-b24a-d30e0827c69a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u706b\u8f66\u9644\u8fd1\u88ab\u8fb9\u5883\u8b66\u536b\u68c0\u67e5\u3002"} +{"id": "0000872", "video_name": "0f558815-572c-5dcd-ae54-15b6ead7ee17", "text": "\u6811\u6728\u6447\u6643\u7740\u3002\u8239\u5728\u6c34\u4e2d\u6cdb\u8d77\u6d9f\u6f2a\u3002"} +{"id": "0000873", "video_name": "0f561468-971f-5216-9596-7cc470be3d8c", "text": "\u4ece\u592a\u9633\u89d2\u5ea6\u770b\u6708\u4eae\u662f\u5982\u4f55\u5f62\u6210\u7684\uff0c\u753b\u51fa\u6765\u3002"} +{"id": "0000874", "video_name": "0f589ed5-f200-5b60-a9ff-8982bc23805c", "text": "\u6708\u4eae\u53d8\u6210\u4e86\u7ea2\u8272\uff0c\u661f\u661f\u843d\u5728\u5730\u7403\u4e0a\u3002"} +{"id": "0000875", "video_name": "0f5933c0-edc1-59b3-be5b-c0b6068572e1", "text": "\u70df\u82b1\uff1a\u65b0\u5e74\u5feb\u4e50\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000876", "video_name": "0f5bbc11-47cf-5c97-b215-2e5cb4e8154b", "text": "\u4e00\u5f20\u663e\u5fae\u955c\u4e0b\u7684\u7ec6\u83cc\u56fe\u7247\u3002\u4fe1\u606f\uff1aTe quiero\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000877", "video_name": "0f5d83d9-901e-5caa-876b-c044054d867b", "text": "1950\u5e74\u4ee3\u5e9f\u5f03\u4fdd\u9f84\u7403\u9986\u7684\u8d858\u6beb\u7c73\u80f6\u7247\uff0c\u9971\u548c\u7684\u9b3c\u9b42\u6f5c\u4f0f\u3002"} +{"id": "0000878", "video_name": "0f6d3a45-8c9b-5f6f-8283-c88167c94024", "text": "\u4e00\u4e2a\u5929\u4f7f\u61d2\u6563\u5730\u8eba\u5728\u5929\u5802\u5927\u95e8\u65c1\u8fb9\u7684\u4e91\u6735\u4e0a\u3002"} +{"id": "0000879", "video_name": "0f73c135-17b0-59b6-8f45-fbc9704a932f", "text": "\u4e24\u4f4d\u50e7\u4fa3\u5f92\u6b65\u7a7f\u8d8a\u559c\u9a6c\u62c9\u96c5\u5c71\uff0c\u9876\u7740\u72c2\u98ce\u524d\u884c\u3002"} +{"id": "0000880", "video_name": "0f7524d7-1569-5284-bd18-096f8f59c45f", "text": "\u4e00\u53ea\u9ca8\u9c7c\u5728\u6e05\u6f88\u7684\u6c34\u4e2d\u6e38\u6cf3\u7684\u4fef\u89c6\u56fe\u3002"} +{"id": "0000881", "video_name": "0f7b8074-ef94-5acd-b546-41174a42c6bd", "text": "\u94a2\u94c1\u4fa0\u548c\u8759\u8760\u4fa0\u7a7f\u8d8a\u6a59\u8272\u5929\u7a7a\u3002"} +{"id": "0000882", "video_name": "0f815735-043d-500e-901c-658fb9c3f66f", "text": "\u90ca\u533a\u7684\u66ae\u8272\u516c\u56ed\u5728\u767d\u8272\u793c\u670d\u4e2d\u95ea\u8000\uff0c\u4e2d\u666f\u94c2\u91d1\u8272\u7684\u5c3c\u9f99\u4e1d\u889c\uff0c\u68a6\u60f3\u7740\u4f38\u624b"} +{"id": "0000883", "video_name": "0f82bb15-d9fc-5678-8dfd-3d4c99ad907b", "text": "\u4e00\u67b6\u6218\u6597\u673a\u51fb\u843d\u4e86\u4e00\u67b6\u76f4\u5347\u673a\u3002"} +{"id": "0000884", "video_name": "0f845582-ec01-53a8-9ab4-824681ccfce5", "text": "NASA\u5b87\u822a\u5458\u5728\u9ed1\u767d\u65b0\u95fb\u7eaa\u5f55\u7247\u98ce\u683c\u4e0b\uff0c\u4e58\u5750\u6708\u7403\u8f66\u63a2\u7d22\u8fea\u58eb\u5c3c\u4e50\u56ed\uff0c\u4ee5\u9ed1\u767d1900\u5e74"} +{"id": "0000885", "video_name": "0f8bc46c-9d2c-583f-8657-ad95d032864f", "text": "2023\u5e74\uff0c\u4e00\u4f4d\u5f8b\u5e08\u5728\u79d1\u6280\u5148\u8fdb\u7684\u529e\u516c\u5ba4\u91cc\uff0c\u4f7f\u7528\u7740\u591a\u53f0\u663e\u793a\u5668\u7684\u7535\u8111\u5de5\u4f5c\u7740\u3002\u4ed6\u6682\u505c\u4e86\u4e00\u4e0b\u89c6\u9891\u901a\u8bdd"} +{"id": "0000886", "video_name": "0f951ca1-d3ab-5a29-97e5-3ebb35d7ecc2", "text": "\u6218\u4e89\u4e2d\u7684\u6218\u6597\u4fe1\u606f\uff1a\u9a6c\u8fbe\u62c9\u5bf9\u9635\u9e23\u4eba\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0000887", "video_name": "0f97149e-0cb3-537f-bfc1-21ee077e2d46", "text": "\u7537\u5b69\u5bf9\u730e\u4eba\u4eec\u8bf4\u8bdd\uff0c\u8bd5\u56fe\u8bf4\u670d\u4ed6\u4eec\u548c\u5e73\u79bb\u5f00\u4e1b\u6797\uff0c\u5c55\u793a\u4ed6\u7684\u5916\u4ea4\u624b\u8155\u3002"} +{"id": "0000888", "video_name": "0f995604-a9e6-55f7-96f5-daf83150faf6", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u5987\u5973\u4e0e\u4e1c\u5e1d\u6c76\u5987\u5973\u4ea4\u8c08\u3002"} +{"id": "0000889", "video_name": "0fa1089e-3ca4-59fb-83f2-701c4eb57ace", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5f13\u7bad\u624b\uff0c\u5f00\u9614\u7684\u7a7a\u5730\uff0c\u5f13\u7bad\uff0c\u5929\u7a7a\u5728\u897f\u5317\u65b9\uff0c\u575a\u5b9a\u7684\u8868\u60c5\uff0c\u6ce8\u89c6\u7740\u76ee\u6807\uff0c\u5f13\u7bad\u5c31\u50cf"} +{"id": "0000890", "video_name": "0fa1d1d4-941b-55f2-b0cd-e6ba5fb2d5c2", "text": "\u674f\u4ec1\u5012\u5165\u76d8\u5b50\u4e2d\u3002"} +{"id": "0000891", "video_name": "0fa1f4f9-9955-5311-af64-91381c3f97ef", "text": "\u56fe\u50cf\uff0c\u6cd5\u8001\u827e\u8d6b\u90a3\u987f\u7ad9\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\uff0c\u4ed6\u7684\u5973\u513f\u7ad9\u5728\u4ed6\u8eab\u8fb9\u3002"} +{"id": "0000892", "video_name": "0fa785be-6fbf-5323-9cae-053263fe3b90", "text": "\u4e00\u4e2a\u7a7f\u84dd\u8272\u886c\u886b\u768413\u5c81\u5370\u5ea6\u7537\u5b69\u5728\u623f\u95f4\u91cc\u88ab\u8868\u60c5\u548c\u8bb2\u8bdd\u6240\u9707\u60ca\u3002 \n\nSource sentence: She enjoys listening to classical music while"} +{"id": "0000893", "video_name": "0fac8550-c8a7-5ad5-a420-8683c20c9c70", "text": "\u4e00\u4f4d\u79d1\u5b66\u5bb6\u53d1\u660e\u4e86\u4e00\u4e2a\u9ed1\u767d\u7684\u673a\u5668\u4eba\uff0c\u65f6\u95f4\u662f\u57281900\u5e74\u4ee3\u3002"} +{"id": "0000894", "video_name": "0fadb3f5-8621-5c2a-aab5-67c8e37e149e", "text": "\u5973\u5b69\u665a\u4e0a\u8eba\u5728\u5e8a\u4e0a\u7741\u7740\u773c\u775b\uff0c\u542c\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "0000895", "video_name": "0fbd11ed-d1f1-5e67-9e50-c8c039c9272a", "text": "\u673a\u5668\u4eba\u5728\u8dd1\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "0000896", "video_name": "0fc6ffee-7584-5072-aa51-2dfb21096cb3", "text": "\u5e74\u8f7b\u6210\u5e74\u4eba\u9080\u8bf7\u4eba\u4eec\u5173\u6ce8YWAM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0000897", "video_name": "0fd1f1cd-9cee-5efd-b7d8-436edb3bfad4", "text": "\u8eab\u4efd\u788e\u7247 \u63a2\u7d22\u81ea\u6211 \u79cd\u65cf\u548c\u4e2a\u4eba\u8eab\u4efd \u5177\u6709\u8c61\u5f81\u610f\u8c61\u7684\u788e\u7247\u5316\u8096\u50cf \u6df7\u5408\u5a92\u4ecb\u548c\u62fc\u8d34 \u53cd\u601d"} +{"id": "0000898", "video_name": "0fd604f0-1971-569f-88e2-6d761699c9c4", "text": "\u4e00\u53f0\u73b0\u4ee3\u673a\u5668\u4eba\u5728\u5df4\u9ece\u7684\u65f6\u88c5\u79c0\u4e2d\u72ec\u81ea\u884c\u8d70\uff0c\u4f17\u4eba\u8eab\u7a7f\u7c89\u8272\u4e0e\u5176\u5f62\u6210\u9c9c\u660e\u5bf9\u6bd4\u3002\u89c6\u9891\u5fc5\u987b"} +{"id": "0000899", "video_name": "0fe16476-ac45-56bb-a8f5-3ff51abd4792", "text": "\u4e00\u4e2a\u5973\u5b69\u54ed\u6ce3\uff0c\u5979\u7684\u773c\u6cea\u521b\u9020\u4e86\u6d77\u6d0b\u3002\n\nSource sentence: Life is like a camera, focus on the good times, develop from the negatives, and if things don't work"} +{"id": "0000900", "video_name": "0fe393d4-3bf2-52fb-97f5-2879c1730073", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u643a\u5e26\u7740\u4e00\u4e2a\u5316\u5986\u5305\u3002"} +{"id": "0000901", "video_name": "0fe3958d-b80a-535c-a84b-02d7c732099a", "text": "\u6bcf\u51e0\u5e27\u4e0b\u65b9\u662f\u5b8c\u5168\u9ed1\u8272\u80cc\u666f\uff0c\u4e0a\u9762\u4f1a\u95ea\u73b0\u51fa\u5b8c\u5168\u767d\u8272\u80cc\u666f\u3002"} +{"id": "0000902", "video_name": "0fe844bd-f80d-56e1-8b3d-b406f26063cc", "text": "\u5efa\u7b51\u7269\u4e2d\u900f\u8fc7\u5929\u7a7a\u7684\u666f\u8c61"} +{"id": "0000903", "video_name": "0fe947f7-042c-5551-8e69-1b1a10c3da24", "text": "\u523b\u677f\u5370\u8c61\u4e2d\u7684\u5916\u661f\u4eba\u7ad9\u5728\u90ca\u533a\u3002"} +{"id": "0000904", "video_name": "0fea41a2-7a91-5126-8d09-f6388cd586a8", "text": "Source sentence: \u6d77\u8c5a\u7a81\u7136\u51fa\u73b0\u5728\u5f69\u8679\u4e0a\u65b9"} +{"id": "0000905", "video_name": "0ff7a403-bb46-5404-994d-13df9ad3831d", "text": "\u94a2\u7434\u97f3\u4e50\u4f1a\u4e0a\u89c2\u4f17\u9f13\u638c\u5e76\u8d77\u7acb\u9f13\u638c\u3002"} +{"id": "0000906", "video_name": "0ff8d98e-15a8-5975-ad74-4cba6493a174", "text": "\u6e38\u89c8\u7ecf\u8fc7\u91cd\u65b0\u88c5\u4fee\u7684\u53a8\u623f\uff0c4K\u3002"} +{"id": "0000907", "video_name": "0ffc99e9-b413-5450-b341-e67d229d2df0", "text": "\u5df4\u65af\u5149\u5e74\u7528\u6fc0\u5149\u7784\u51c6\u7956\u683c\u3002"} +{"id": "0000908", "video_name": "1006274b-fa9c-5c4c-9ace-dede668757cc", "text": "\u4e00\u9897\u7531\u7a7a\u6c14\u5236\u6210\u7684\u661f\u661f\u6f02\u6d6e\u5728\u57ce\u5e02\u4e0a\u65b9\u3002"} +{"id": "0000909", "video_name": "10106e1f-146a-5694-91cb-6cfb0410527d", "text": "\u4e00\u4e2a\u7a7f\u7740\u6b63\u5f0f\u670d\u88c5\u7684\u5973\u5b69\u7ed9\u5927\u5bb6\u8bb2\u6545\u4e8b\u3002\u8fd9\u4e2a\u5973\u5b69\u6709\u957f\u53d1\u548c\u9ec4\u76ae\u80a4\u3002\u80cc\u666f\u662f\u7eaf\u767d\u8272\u7684\u3002"} +{"id": "0000910", "video_name": "101499d6-85de-5f4d-adb5-164abb783429", "text": "\u4ee5\u5361\u901a\u5f62\u8c61\u4ee3\u8868\u4e00\u79cd\u7531\u4e2d\u592e\u94f6\u884c\u4e0d\u63a7\u5236\u3001\u5b8c\u5168\u53bb\u4e2d\u5fc3\u5316\u3001\u81ea\u7531\u884c\u52a8\u7684\u6570\u5b57\u8d27\u5e01\u3002"} +{"id": "0000911", "video_name": "101636e7-13d8-5c9b-a47e-a8b6037b7815", "text": "3D\uff0c\u77ee\u4eba\uff0c\u68ee\u6797\u4e2d\uff0c\u795e\u79d8\u7684\u5149\u7ebf\uff0c\u5438\u70df\u70df\u6597\uff0c\u8f7b\u5fae\u79fb\u52a8\u3002"} +{"id": "0000912", "video_name": "1018f3b6-efba-5d06-af50-45c798dafa3a", "text": "\u83ab\u683c\u5229\u548c\u4ed6\u7684\u670b\u53cb\u72fc\u5728\u5361\u901a\u98ce\u683c\u7684\u4e1b\u6797\u4e2d\u6bd4\u8d5b\u3002"} +{"id": "0000913", "video_name": "1019c532-a4c2-5067-a6cd-bb36ceca8bb7", "text": "\u5927\u5b66\u6559\u6388\u5728\u5b66\u751f\u4e2d\u95f4\u6559\u8bfe\u3002"} +{"id": "0000914", "video_name": "101f4b56-1c45-5d10-bbc7-e424617a04e8", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u5973\u5b69\u5728\u4e0b\u73ed\u56de\u5bb6\u7684\u8def\u4e0a\u4eab\u53d7\u97f3\u4e50\u3002"} +{"id": "0000915", "video_name": "102431cc-0056-51a5-87ed-cf41ca0da329", "text": "\u7cd6\u8863\u4ed9\u5b50\u8df3\u821e\uff0c\u903c\u771f\u3001\u7f8e\u4e3d\u3001\u5ba1\u7f8e\uff0c\u4e13\u4e1a\u62cd\u6444\uff0c\u9ad8\u7ec6\u8282\uff0c\u903c\u771f\u6548\u679c\uff0c4K\uff0c16\uff1a9\u3002"} +{"id": "0000916", "video_name": "10261036-d7e5-59f2-a0c2-e0ffebba55d4", "text": "\u5728\u6d77\u4e0a\u7528\u5e06\u8239\u987a\u98ce\u822a\u884c\uff0c\u5e76\u548c\u6d77\u8c5a\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "0000917", "video_name": "1027b57a-b8ae-5b3b-909d-33b3c1179868", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u6a21\u7279\u7a7f\u7740\u83b1\u6069\u52a0\u821e\u8e48\u5728\u5706\u5f62\u9635\u5217\u4e2d\u3002"} +{"id": "0000918", "video_name": "102b1582-2aab-58fa-bc3b-24e0f46bd082", "text": "\u903c\u771f\u76844K\u56fe\u7247\uff0c\u4eba\u7269\uff0c\u5458\u5de5\uff0c\u538b\u529b\uff0c\u8bbe\u8ba1\u516c\u53f8\uff0c\u5de5\u4f5c\u6d41\u7a0b\u3002"} +{"id": "0000919", "video_name": "10323a81-d838-536e-85d6-67f5d2912acc", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u8272\u5f69\u7684\u5c0f\u518c\u5b50\u5c01\u9762\uff0c\u5c55\u793a\u4e86\u5404\u79cd\u5de7\u514b\u529b\u7cd6\u679c\uff0c\u5468\u56f4\u662f\u4e00\u7fa4\u5feb\u4e50\u800c\u5145"} +{"id": "0000920", "video_name": "103778a6-c16d-5d3f-b76a-16488f8c52ef", "text": "\u4e00\u4e2a\u70ed\u95f9\u7684\u529e\u516c\u5ba4\u81ea\u52a9\u9910\u5385\uff0c\u540c\u4e8b\u4eec\u5728\u5348\u9910\u65f6\u95f4\u805a\u96c6\u5728\u8fd9\u91cc\u3002\u9910\u5385\u5145\u6ee1\u5404\u79cd"} +{"id": "0000921", "video_name": "10389ca2-b65e-5e16-a96f-4ba00d1cc1c3", "text": "\u4e00\u540d\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u6b63\u5728\u4e00\u6761\u8def\u4e0a\u9a91\u884c\uff0c\u89c6\u9891\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "0000922", "video_name": "103dc343-19d3-511d-b747-f3cfb3882789", "text": "\u4e00\u573a\u8db3\u7403\u6bd4\u8d5b\u5728\u524d\u666f\u4e2d\u8fdb\u884c\uff0c\u800c\u5728\u80cc\u666f\u4e2d\uff0c\u4e00\u5ea7\u706b\u5c71\u6b63\u5728\u55b7\u53d1\uff0c\u8d85\u7ea7\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "0000923", "video_name": "104523d9-a681-5c9f-9067-185508777cf3", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u534a\u673a\u68b0\u534a\u9a86\u9a7c\u673a\u5668\u4eba\u5728\u5229\u96c5\u5f97\u6c99\u7279\u963f\u62c9\u4f2f\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u98ce\u683c"} +{"id": "0000924", "video_name": "104b5392-0ac3-5df3-b359-c2060e7488f9", "text": "\u8fc8\u514b\u5c14\u00b7\u4e54\u4e39\u548c\u6885\u897f\u5728\u4e00\u4e2a\u573a\u666f\u91cc\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "0000925", "video_name": "104f78dd-2fd0-5606-9032-26e03357c42e", "text": "\u7518\u5e15\u8482\u8282\uff0c\u4eba\u4eec\u5728\u5de8\u5927\u7684\u7518\u5e15\u8482\u795e\u50cf\u524d\u8df3\u821e\u3002"} +{"id": "0000926", "video_name": "10500d63-3f33-57ee-9894-17d173057527", "text": "\u4eba\u5750\u5728\u8def\u4e0a\u7684\u6905\u5b50\u4e0a\u7684\u52a8\u753b\u3002"} +{"id": "0000927", "video_name": "10598a8f-a16d-5160-9ce2-798c7655ca7f", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u548c\u8428\u5e03\u4e3d\u5a1c\u00b7\u5361\u670b\u7279\u5728\u5531\u8bd7\u73ed\u5531\u6b4c\u3002"} +{"id": "0000928", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "\u65e0\u6570\u7684\u6d77\u8c5a\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u5e76\u6380\u8d77\u5de8\u6d6a\uff0c\u8fdb\u884c\u7a7a\u4e2d\u6444\u5f71\u3002"} +{"id": "0000929", "video_name": "105d3e76-dbc7-5e35-a552-c9de845eec9e", "text": "\u964c\u751f\u4eba\u63d0\u4f9b\u4e86\u4e00\u4e2a\u53ef\u4ee5\u6539\u53d8\u7a77\u4eba\u751f\u6d3b\u7684\u673a\u4f1a\uff0c\u8fd9\u662f\u4e00\u4e2a\u51b3\u7b56\u65f6\u523b\u3002"} +{"id": "0000930", "video_name": "106072aa-a4ee-53fb-b2e8-1522d5e3fd88", "text": "\u4e00\u4f4d\u957f\u53d1\u5973\u5b69\u7b11\u7740\u4ece\u6865\u4e0a\u8df3\u4e0b\uff0c\u7a33\u7a33\u5730\u7740\u9646\u3002"} +{"id": "0000931", "video_name": "10617bdb-e15d-5351-92ce-07c94628b61c", "text": "\u4e00\u4e2a\u4fe1\u4ef6\u6253\u7834\u4e86\u5e73\u9759\u7684\u751f\u6d3b\u3002\n\nSource sentence: I love to eat Chinese food. \n\n\u6211\u559c\u6b22\u5403\u4e2d\u9910\u3002"} +{"id": "0000932", "video_name": "1069d17c-4257-5143-8e39-41b71632f6dc", "text": "\u5973\u4eba\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u6211\u4eec\u4ece\u80cc\u540e\u770b\u5230\u5979\uff0c\u514b\u91cc\u59c6\u7279\u98ce\u683c\u3002"} +{"id": "0000933", "video_name": "10711237-a285-5e2b-a2a0-27153b02a4ff", "text": "\u6d41\u7ecf\u68ee\u6797\u7684\u6cb3\u6d41"} +{"id": "0000934", "video_name": "10735853-8488-5e05-94a3-4167dd1842df", "text": "\u4ece\u4e91\u6735\u4e2d\u4f38\u51fa\u4e00\u53ea\u5de8\u624b\u5411\u5730\u9762\u5ef6\u4f38\uff0c\u9ed1\u6697\u7684\u5730\u65b9\u88ab\u4e00\u540d\u5c0f\u4eba\u4ef0\u671b\u65f6\u7167\u4eae\u4e86\u3002"} +{"id": "0000935", "video_name": "107ac384-41cf-5151-b209-f716440c6182", "text": "\u8bf7\u534f\u52a9\u6211\u8bbe\u8ba1\u4e00\u4e2a\u4eba\u5de5\u667a\u80fd\u865a\u62df\u804a\u5929\u4f34\u4fa3\uff0c\u4e3a\u5fc3\u7406\u5065\u5eb7\u9886\u57df\u63d0\u4f9b\u503e\u542c\u548c\u652f\u6301\u5ba2\u6237\u7684\u670d\u52a1\u3002"} +{"id": "0000936", "video_name": "1083605b-fbfc-56d0-ac5e-28e9ca0b1250", "text": "\u6211\u4eec\u53d1\u73b0\u4e86\u4e00\u5f20\u6709\u8da3\u7684\u5730\u56fe\u6587\u7269\u3002"} +{"id": "0000937", "video_name": "1088e678-f8b1-59ec-9246-60c896c07ad6", "text": "\u767d\u8272\u72ec\u89d2\u517d\u5728\u80cc\u666f\u4e2d\u98de\u7fd4\u7684\u9f99\u7684\u966a\u4f34\u4e0b\u884c\u8d70\u3002"} +{"id": "0000938", "video_name": "108b4885-adc2-5386-b49e-1a746e453750", "text": "22\u4e16\u7eaa\u7684\u672a\u6765\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u516b\u89d2\u6e32\u67d3\uff0c4K\uff0c8K\u3002"} +{"id": "0000939", "video_name": "108dc839-526d-5d0b-9786-e18ce603fe97", "text": "\u4e00\u4e2a\u5bb6\u5ead\u3001\u5bb6\u5ead\u6210\u5458\u3001\u4e2a\u4eba\u7684\u526a\u8f91\uff0c\u4ee5\u89c6\u89c9\u5f62\u5f0f\u5c55\u73b0\u5e74\u9f84\u3001\u5730\u70b9\u3001\u5a5a\u59fb\u72b6\u51b5\u3001\u804c\u4e1a\u548c\u4f4f"} +{"id": "0000940", "video_name": "108e0931-c2ea-544e-bc05-3380f2be3359", "text": "\u718a\u4f5c\u4e3a\u592a\u7a7a\u6307\u6325\u5b98\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c8K\u3002"} +{"id": "0000941", "video_name": "109bd450-1fdc-53e4-aa31-d549a26e907a", "text": "\u4e00\u6392\u88d9\u5b50\u5728\u684c\u5b50\u4e0a\u8df3\u821e\u3002"} +{"id": "0000942", "video_name": "109dba2c-954d-5245-8f5e-5d9ec4fd4531", "text": "\u8272\u5f69\u7e6a\u672c\u4e2d\u5e74\u9ed1\u4eba\u5973\u6027\u5c16\u53eb\u7684\u7279\u5beb\u8fd1\u93e1\uff0c\u7531\u4f0a\u85e4\u6f64\u4e8c\u63cf\u7e6a\uff0c\u7d30\u7dfb\u7684\u63d2"} +{"id": "0000943", "video_name": "109f0434-14b5-57e0-b47e-4d38ee36e421", "text": "\u7f8e\u4e3d\u7684\u81ea\u7136\u98ce\u5149\uff0c\u914d\u4ee5\u4ee4\u4eba\u60ca\u53f9\u7684\u6e56\u666f\uff0c\u662f\u89c2\u661f\u7684\u7edd\u4f73\u573a\u6240\u3002"} +{"id": "0000944", "video_name": "10add92d-da49-56a9-af35-41406a92cdb4", "text": "\u5b87\u5b99\u98de\u8239\u80cc\u666f\u3001\u5b87\u5b99\u80cc\u666f\u3001\u884c\u661f\u548c\u9ed1\u6d1e\u3002"} +{"id": "0000945", "video_name": "10b0ef51-c207-5577-bdca-3f1f479c43ca", "text": "\u58eb\u5175\u671d\u8b66\u5bdf\u5c04\u51fb\u7684\u4e09\u7ef4\u52a8\u753b"} +{"id": "0000946", "video_name": "10b22ed0-10df-58a3-9344-2e3321501b88", "text": "\u4e00\u4e2a\u5b8c\u7f8e\u96ea\u82b1\u5f62\u6210\u7684\u65f6\u95f4-lapse\u3002"} +{"id": "0000947", "video_name": "10ba1960-a659-59b3-b338-fd0575800141", "text": "\u751f\u6210\u52a8\u753b\u52a8\u6001\u7684\u71c3\u5c3d\u56fe\u8868\uff0c\u4f7f\u7528\u7ebf\u6027\u56fe\u8868\u663e\u793a\u968f\u65f6\u95f4\u63a8\u79fb\u7684\u8fdb\u5c55\uff0c\u5e76\u56f4\u7ed5\u5176\u663e\u793a\u4eba\u5458\u3002"} +{"id": "0000948", "video_name": "10c42022-35ac-5adb-b9a3-893e6c6ea9f9", "text": "\u8fc7\u6e21\u5230\u5f55\u97f3\u5ba4\u91cc\u7684\u8bf4\u5531\u6b4c\u624b\uff0c\u521b\u4f5c\u8282\u62cd\u548c\u5199\u6b4c\u8bcd\u3002"} +{"id": "0000949", "video_name": "10c5cff6-293a-55c5-89d0-500c71e6f56d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u7f8e\u5973\uff0c\u975e\u52a8\u753b\u7684\u3002"} +{"id": "0000950", "video_name": "10c71bf6-0533-5601-be96-e97565c92d1f", "text": "\u5728\u7ebf\u8d2d\u7269\u7f51\u7ad9\u7684\u80cc\u666f\u89c6\u9891"} +{"id": "0000951", "video_name": "10ce8bbf-7554-5de8-be65-fa464edfeaca", "text": "\u6570\u767e\u5e74\u524d\uff0c\u4e00\u5219\u53e4\u8001\u7684\u9884\u8a00\u9884\u8a00\u4e86\u4e00\u4e2a\u53ef\u6015\u7684\u9ed1\u6697\u5373\u5c06\u964d\u4e34\uff0c\u5a01\u80c1\u7740\u6574\u4e2a\u4e16\u754c\u3002"} +{"id": "0000952", "video_name": "10d20bb5-6e3d-53f9-a30f-09b912286576", "text": "\u7528\u65e0\u4eba\u673a\u62cd\u6444\u9996\u90fd\u4e4c\u514b\u5170\u57fa\u8f85\u7684\u903c\u771f\u89c6\u9891\u3002\u89c6\u9891\u5e94\u4ee5\u65e0\u4eba\u673a\u98de\u8d8a\u57fa\u8f85\u4e3b\u8981\u8857\u9053Khreshchatyk\u4e3a\u5f00\u5934"} +{"id": "0000953", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "\u9ed1\u767d\u5f71\u50cf\uff0c\u5b64\u72ec\u548c\u6050\u60e7\u5728\u5916\u592a\u7a7a\uff0c\u6050\u60e7\u3002"} +{"id": "0000954", "video_name": "10d791f1-cf74-5836-9cfb-8603ca1f1326", "text": "\u540e\u65b9\u548c\u4e0b\u65b9\u7684\u955c\u5934\u3002\u573a\u666f\u662f\u725b\u4ed4\u7684\u540e\u817f\u3002\u4ed6\u8981\u51fa\u95e8\uff0c\u573a\u666f\u662f\u91ce\u897f\u90e8\u98ce\u683c\u3002"} +{"id": "0000955", "video_name": "10d9bf69-7c65-5d80-99fc-550fa2e3a366", "text": "\u5728\u8349\u539f\u4e0a\uff0c\u4e00\u53ea\u72ee\u5b50\u51b2\u8fc7\u6765\u3002\u98ce\u5439\u4e71\u4e86\u5b83\u7684\u6bdb\u53d1\uff0c\u5b83\u5411\u76f8\u673a\u5954\u8dd1\u7740\uff0c\u6563\u53d1\u51fa\u5f3a\u5927"} +{"id": "0000956", "video_name": "10db8c9f-a8d4-5cb6-9dd6-e5ec155d9c62", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u8d70\u5411\u6211\u3002"} +{"id": "0000957", "video_name": "10dd9cda-1dd6-510e-b20a-b95821dac18c", "text": "\u5728\u6d77\u6d0b\u6700\u6df1\u5904\uff0c\u4e00\u53ea\u5de8\u5927\u7684\u773c\u775b\u5411\u4e0a\u51dd\u89c6\uff0c\u7b49\u5f85\u4efb\u4f55\u5165\u4fb5\u8005\u7684\u9760\u8fd1\u3002"} +{"id": "0000958", "video_name": "10e58e6a-f391-5b27-8325-04a63403a8d1", "text": "\u5723\u8bde\u5361\u7247\u6253\u5f00\uff0c\u84dd\u8272\u7684\u5723\u8bde\u6811\u4e0b\u98d8\u7740\u96ea\u82b1\u3002"} +{"id": "0000959", "video_name": "10e65cd4-fcd0-5870-966c-65747107a4d4", "text": "\u60f3\u8c61\u4e00\u4e0b\u98ce\u8d77\uff0c\u6811\u53f6\u5728\u5f02\u4e16\u754c\u822c\u7684\u821e\u8e48\u4e2d\u65cb\u8f6c\uff0c\u9b3c\u9b42\u822c\u7684\u58f0\u97f3\u5316\u4f5c\u82cd\u767d\u7684"} +{"id": "0000960", "video_name": "10f4a091-9f60-5daa-977d-2c998ba44f21", "text": "3D\u52a8\u753b\uff0c\u5927\u773c\u775b\u5fae\u7b11\u7684\u7537\u5b50\u624b\u6301\u5438\u5c18\u5668\uff0c\u6253\u5f00\u623f\u95e8\uff0c\u9500\u552e\u5458\u3002"} +{"id": "0000961", "video_name": "10f4e4af-51ec-5c09-b291-6f4a3248178f", "text": "\u6765\u81ea\u4e00\u90e8\u8d85\u73b0\u5b9e\u4e3b\u4e49\u76841960\u5e74\u4ee3\u827a\u672f\u7535\u5f71\u7684\u72c2\u70ed\u4fe1\u5f92\u3002"} +{"id": "0000962", "video_name": "10f7e358-e091-5b36-b461-55145843cdc5", "text": "\u8fdb\u884c\u7b80\u5355\u800c\u5b89\u5168\u7684\u79d1\u5b66\u5b9e\u9a8c\uff0c\u8ba9\u5b69\u5b50\u4eec\u80fd\u591f\u8f7b\u677e\u5730\u5728\u5bb6\u91cc\u590d\u5236\uff0c\u4f7f\u5b66\u4e60\u57fa\u7840\u79d1\u5b66\u6982\u5ff5\u53d8\u5f97\u4ee4\u4eba"} +{"id": "0000963", "video_name": "10ff9811-2620-5c36-b724-63dea8a11f22", "text": "\u4ece\u524d\u6709\u4e00\u4e2a\u540d\u53eb\u739b\u4e3d\u7684\u5973\u4eba\uff0c\u662f\u62ff\u6492\u52d2\u7684\u8036\u7a23\u7684\u6bcd\u4eb2\u3002"} +{"id": "0000964", "video_name": "10ffb7e0-e28e-578d-ac2a-ef00aac90859", "text": "\u9178\u96e8\uff0c\u6c34\u7684\u989c\u8272\u53d8\u7eff\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u9003\u547d\u3002"} +{"id": "0000965", "video_name": "11092f20-ee16-59ec-9c21-4389c0dac8b7", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9759\u8c27\u7684\u5c71\u8c37\u4e2d\u6f2b\u6b65\uff0c\u5149\u7ebf\u5a49\u8f6c\u52a8\u4eba\u3002"} +{"id": "0000966", "video_name": "1109bfcb-f4ac-5ee7-b577-85568eb2401d", "text": "\u5730\u9707\u671f\u95f4\u6545\u969c\u8fd0\u52a8\u7684\u793a\u610f\u56fe\u3002\u6b64\u89c6\u9891\u8d28\u91cf\u4e3a4K\uff0c\u753b\u9762\u5982\u540c\u7535\u5f71\u955c\u5934\u822c\u6e05\u6670\u660e\u4eae\u3002"} +{"id": "0000967", "video_name": "110e8fb7-8c2d-52c7-b465-5b6dfcab2678", "text": "\u5728\u57ce\u5e02\u96e8\u5929\u7684\u4eba\u884c\u9053\u4e0a\u8d70\u7740\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u52a8\u6f2b\u7537\u5b69\u3002"} +{"id": "0000968", "video_name": "11155391-9910-5092-aac8-9e7d23ee26a1", "text": "\u5c71\u5d29\u4e86\uff0c\u6240\u6709\u4eba\u90fd\u611f\u5230\u9707\u60ca\u3002"} +{"id": "0000969", "video_name": "111588d9-4643-562f-bfd2-a363d039d0e7", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u666f\u89c2\u4e2d\u62bd\u70df\u3002"} +{"id": "0000970", "video_name": "11174e37-5b11-5f8a-8d03-49aef05aa607", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u5931\u660e\u7537\u5b50\u76f4\u89c6\u524d\u65b9\u3002\u7f8e\u4e3d\u7684\u6700\u7ec8\u5e7b\u60f3\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "0000971", "video_name": "1118907b-9d61-5570-ad69-dc9ba009bd1e", "text": "\u73ed\u514b\u65af\u5728\u519c\u573a\u5efa\u7b51\u7269\u4e0a\u55b7\u7ed8\u4e86\u4e00\u4e2a\u6a21\u677f\u58c1\u753b\u3002"} +{"id": "0000972", "video_name": "111c2fbb-601d-5a29-b4d7-769ea4702ee8", "text": "\u4ed6\u7684\u957f\u888d\u5728\u98ce\u4e2d\u98d8\u8361\u3002"} +{"id": "0000973", "video_name": "111d7200-9046-5db1-8da4-6e6b5405d99a", "text": "\u6211\u662f\u6765\u81ea\u4e2d\u56fd\u7684\u4f01\u4e1a\u5bb6\u3002"} +{"id": "0000974", "video_name": "11253bd8-cefa-5152-9a3b-1211d8cdb767", "text": "\u88ab\u5404\u79cd\u5ba0\u7269\u548c\u52a8\u7269\u5305\u56f4\uff0c\u5305\u62ec\u72d7\u3001\u732b\u3001\u9e21\u548c\u9e3d\u5b50\u3002\u6444\u50cf\u673a\u653e\u5927\uff0c\u7535\u5f71\u822c\u7684\u89c6\u9891\u3002"} +{"id": "0000975", "video_name": "112b444a-e505-50ad-b8ad-bfedd81f843c", "text": "\u56db\u5343\u5146\u903c\u771f\u7684\u6076\u9b54\u751f\u7269\u7f13\u6162\u5730\u5411\u4e0b\u4e00\u4e2a\u72ed\u7a84\u7684\u533b\u9662\u8d70\u5eca\u7684\u6444\u50cf\u673a\u9760\u8fd1\u3002"} +{"id": "0000976", "video_name": "112ba795-03a1-5546-9ec0-d4d763ba084f", "text": "\u5ba2\u670d\u4ee3\u8868\u5fae\u7b11\u7740\u4e0e\u5ba2\u6237\u4ea4\u8c08\uff0c\u5979\u7684\u684c\u9762\u4e0a\u6709\u4e00\u5757\u5bbd\u5c4f\u663e\u793a\u5ba2\u6237\u6863\u6848\u3002"} +{"id": "0000977", "video_name": "1132c629-aa8c-5f5f-808f-1ca181b5a54c", "text": "\u5973\u5b69\u6f02\u6d6e\u5728\u4e00\u7247\u96fe\u8499\u8499\u7684\u6e56\u9762\u4e0a\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u5145\u6ee1\u6c1b\u56f4\u611f\u3002"} +{"id": "0000978", "video_name": "1138363e-4884-5dfd-884c-f14db1650001", "text": "\u4eba\u7c7b\uff0c\u67d4\u548c\u7684\u805a\u7126\uff0c\u5927\u955c\u5934\uff0c\u9e1f\u77b0\u955c\u5934\uff0c\u4e09\u4e2a\u4eba\u6234\u7740\u73bb\u7483\u5934\u76d4\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86"} +{"id": "0000979", "video_name": "113b28c8-5b04-593b-a5b4-464414b4a7d3", "text": "\u4e00\u540d\u533b\u7597\u5de5\u4f5c\u8005\u6b63\u5728\u7167\u987e\u6bd2\u6c14\u53d7\u5bb3\u8005\u3002\n\nSource sentence: The company's profits have increased by 20% this year. \n\n\u8be5\u516c\u53f8\u4eca\u5e74\u7684\u5229\u6da6\u589e\u957f"} +{"id": "0000980", "video_name": "113db62f-97a3-59ed-92ee-c777ab2edc21", "text": "\u5728\u9ed1\u6697\u7a7a\u95f4\u4e2d\u7684\u7206\u70b8\uff0c\u9713\u8679\u8272\u5f69\uff0c\u5e7b\u60f3\u3002"} +{"id": "0000981", "video_name": "113f9142-467f-510b-a766-676b40d8f27c", "text": "\u5728\u4e00\u4e2a\u5c0f\u6d77\u6ee8\u57ce\u9547\u7684\u67d0\u4e2a\u65f6\u5019\uff0c\u5929\u8d4b\u5f02\u7980\u7684\u6d77\u6d0b\u751f\u7269\u5b66\u5bb6Emily\u4e0e\u70ed\u60c5\u7684\u51b2\u6d6a\u8005\u548c\u827a\u672f\u5bb6Jake"} +{"id": "0000982", "video_name": "1140f84a-d94e-5ff8-9247-4f061e64fd05", "text": "\u706b\u8f66\u5728\u5c71\u5761\u4e0a\u884c\u9a76\uff0c\u573a\u666f\u662f\u5728\u94c1\u8f68\u4e0a\u3002\u67093D\u5361\u901a\u6548\u679c\u3002"} +{"id": "0000983", "video_name": "114d665c-c744-5036-a872-6215df5c23a9", "text": "\u5e7b\u60f3\u7684\u9ed1\u6697\u68ee\u6797\uff0c\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u9ed1\u53d1\u5973\u5b69\u3002"} +{"id": "0000984", "video_name": "114f991a-b976-54d0-a708-32182f40a755", "text": "\u82b1\u74e3\u98de\u821e\u548c\u6c34\u82b1\u6e85\u5c04\uff0c\u4fe1\u606f\uff1a\u6c34\u3002"} +{"id": "0000985", "video_name": "1155dcbb-b34c-5506-8afd-89f543ea58ff", "text": "\u5973\u4eba\u4ece\u80cc\u540e\u5728Tinder\u4e0a\u6d4f\u89c8\u3002"} +{"id": "0000986", "video_name": "11581f87-abfa-54fc-94b1-aa6bf22a3903", "text": "\u6cb3\u7554\u7684\u70df\u706b\u79c0\u5e94\u8be5\u6709\u5c71\u3001\u6c34\u548c\u4eba\u7fa4\u3002"} +{"id": "0000987", "video_name": "115b5f98-b8df-57de-aabe-a3313371b5dc", "text": "\u4e2d\u56fd\u7a46\u65af\u6797\u5546\u4eba\u57287\u4e16\u7eaa\u5e02\u573a\u8fdb\u884c\u8d38\u6613\uff0c4K\u5206\u8fa8\u7387\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c9:16\u6bd4\u4f8b\u3002"} +{"id": "0000988", "video_name": "1160a9f8-acc0-54cf-9658-0860e39265c2", "text": "\u6709\u673a\u5316\u5408\u7269\u53ef\u4ee5\u7ed3\u5408\u5f62\u6210\u66f4\u590d\u6742\u7684\u5206\u5b50\u3002"} +{"id": "0000989", "video_name": "11656abd-3ffa-54b9-bc62-5a4ef5279a98", "text": "\u672a\u6765\u4e3b\u9898\u80cc\u666f\uff0c\u4e2d\u592e\u6f02\u6d6e\u7740\u5730\u7403\u5168\u606f\u6295\u5f71\u3002"} +{"id": "0000990", "video_name": "11670e48-4779-57e6-b135-329cca83be02", "text": "\u4e00\u53ea\u82cd\u8747\u843d\u5728\u679c\u9171\u7f50\u4e0a\u3002"} +{"id": "0000991", "video_name": "1167d5fc-9e4d-52bc-a92c-29a020afb7db", "text": "\u732b\u5728\u7ebd\u7ea6\u62c9\u5c0f\u63d0\u7434\u5531\u6b4c\u3002"} +{"id": "0000992", "video_name": "116925c3-b9af-56bb-a29f-6a9302fb49f0", "text": "\u4e00\u4f4d\u54e5\u4f26\u6bd4\u4e9a\u666e\u901a\u516c\u6c11\u8c08\u8bba\u653f\u6cbb\u3002"} +{"id": "0000993", "video_name": "116f354e-f26d-5e52-98fc-7f5f6188d977", "text": "\u4e00\u4f4d\u5973\u58eb\u5750\u5728\u9760\u7a97\u7684\u706b\u8f66\u5ea7\u4f4d\u4e0a\u3002"} +{"id": "0000994", "video_name": "117314ea-8f93-561c-a393-4b49c3d3dc2b", "text": "\u4e00\u5c81\u7684Shreeansh\u8eba\u5728\u4ed6\u7684\u5a74\u513f\u5e8a\u4e0a\uff0c\u6c89\u7761\u7740\uff0c\u4ed6\u7684\u623f\u95f4\u91cc\u6563\u53d1\u7740\u67d4\u548c\u7684\u5149\u8292\u3002"} +{"id": "0000995", "video_name": "1176e0c1-dc53-568a-b27a-da3f468cb4dd", "text": "\u4eba\u4eec\u5728\u6b22\u547c\u3002\u6d88\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0000996", "video_name": "117de275-e8b4-5bec-b7de-528254f64d05", "text": "\u56db\u4e2a\u6234\u7740\u5934\u5dfe\u7684\u5973\u4eba\u5728\u8d5b\u9a6c\u573a\u4e0a\u9a91\u9a6c\u6bd4\u8d5b\u3002"} +{"id": "0000997", "video_name": "117ef8e2-d916-5a49-9579-f814f6e35459", "text": "\u4e00\u4e2a\u52aa\u529b\u5de5\u4f5c\u7684\u7537\u4eba\uff0c\u4ed6\u8bd5\u56fe\u5728\u5468\u56f4\u7684\u73af\u5883\u5efa\u8bbe\u4e0a\u505a\u51fa\u4e0d\u540c\u7684\u8d21\u732e\u3002"} +{"id": "0000998", "video_name": "118af95f-c32b-555d-bfe3-07f51c0d3cd2", "text": "\"Vault B\" \u5b89\u7eb3\u5854\u00b7\u5e15\u5fb7\u66fc\u7eb3\u5df4\u00b7\u65af\u74e6\u7c73\u5bfa\u5e99\u3002"} +{"id": "0000999", "video_name": "118c3438-648d-5bbd-8258-11cb2c0280f2", "text": "\u91cd\u751f\u4e4b\u65c5\uff1a\u751f\u547d\u5145\u6ee1\u4e86\u66f4\u65b0\u7684\u673a\u4f1a\uff0c\u5e0c\u671b\u6559\u7ed9\u6211\u4eec\u6bcf\u4e00\u5929\u90fd\u662f\u6210\u957f\u548c\u8f6c\u53d8\u7684\u673a\u4f1a\u3002"} +{"id": "0001000", "video_name": "118e45d4-74ae-5b8e-a04a-823e94e2ffd8", "text": "\u4e00\u4f4d\u7a7f\u8457\u88d9\u5b50\u7684\u7f8e\u9e97\u4e9e\u6d32\u5973\u5b69\uff0c\u5728\u50b3\u7d71\u85e5\u54c1\u7684\u623f\u9593\u88e1\u5411\u5de6\u8d70\uff0c\u8996\u983b\u6bd4\u4f8b"} +{"id": "0001001", "video_name": "11904556-1720-575a-8a66-df595d13fb2f", "text": "\u9ed1\u53d1\u7279\u5170\u514b\u65af\u53d8\u8eab\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u52a8\u753b\u3002"} +{"id": "0001002", "video_name": "1198e1fc-4117-556a-b5cc-72e7c7c182d4", "text": "\u591c\u665a\u6709\u4e00\u652f\u8721\u70db\uff0c\u6708\u4eae\u5706\u5706\u7684\u3002"} +{"id": "0001003", "video_name": "119ef5d0-b1b8-5018-b517-1f0fbe00bb06", "text": "\u5947\u5f02\u7684\u8c6a\u534e\u5c9b\u6f02\u6d6e\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\u3002"} +{"id": "0001004", "video_name": "11ae3cbe-22ae-5cc7-b2b1-d95a8d727b9d", "text": "\u5728\u9ed1\u591c\u91cc\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\uff0c\u6c99\u6ee9\u4e0a\u6709\u7bdd\u706b\uff0c\u6d77\u4e0a\u6709\u6e14\u8239\u3002"} +{"id": "0001005", "video_name": "11b4f4da-1ab2-5a46-810b-d1b983b00e9c", "text": "\u7531\u6811\u6728\u548c\u53f6\u5b50\u5236\u6210\u3002\u4fe1\u606f\uff1aUMIKA DHRUV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0001006", "video_name": "11b7fc84-c934-5a15-9b6a-e624f230d644", "text": "\u4e00\u5f201965\u5e74\u7684\u6781\u5149\u76f8\u7247\uff0c\u989c\u8272\u67d4\u548c\uff0c\u62cd\u6444\u4e86\u4e00\u53ea\u7a7f\u7740\u82ad\u857e\u821e\u88d9\u8df3\u821e\u7684\u72d7"} +{"id": "0001007", "video_name": "11c6af40-9f8a-5ebc-8527-52b3a2a34144", "text": "\u4e00\u573a\u8d85\u9ad8\u6e05\u6670\u5ea6\u7684\u98ce\u66b4\uff0c\u9ad8\u54c1\u8d28\u7ec6\u8282\u3002"} +{"id": "0001008", "video_name": "11c6e3b1-9191-5c4f-b977-b1b5b7c36a4c", "text": "\u4e00\u4f4d\u5973\u58eb\u6b63\u9a7e\u9a76\u7740\u5979\u7684\u6c7d\u8f66\u671d\u7740\u5c71\u9876\u4e0a\u7684\u68ee\u6797\u884c\u9a76\u3002"} +{"id": "0001009", "video_name": "11d028e8-69a4-546d-96df-8e4ad972b12b", "text": "\u89c6\u9891\u4e2d\u6709\u96ea\u82b1\u98d8\u843d\u548c\u96ea\u666f\u53ef\u89c1\u3002"} +{"id": "0001010", "video_name": "11db050a-3ec1-5a3a-b717-bad961b18cc4", "text": "\u4e00\u4e2a\u7a7f\u7740\u51ac\u8863\u7684\u7537\u4eba\u5728\u4e0b\u96ea\u7684\u57ce\u5e02\u4ef0\u671b\u5929\u7a7a\uff0c\u5f20\u5f00\u5634\u5df4\u60ca\u53f9\u3002"} +{"id": "0001011", "video_name": "11dd29c8-5f32-5da2-b5d8-18d56237738d", "text": "Capybara \u548c\u9e2d\u5b50\u5728\u6d74\u7f38\u91cc\u6e38\u6cf3\u3002"} +{"id": "0001012", "video_name": "11e3ab91-6a02-5107-a627-cab0f5beb0c4", "text": "\u81ea\u884c\u8f66\u7684\u65b0\u8f66\u9500\u91cf\u7206\u53d1\u5f0f\u589e\u957f\u3002"} +{"id": "0001013", "video_name": "11f257e1-a25e-5465-99ee-74e33179b466", "text": "\u591a\u5e74\u524d\uff0c\u4e00\u4e9b\u52a8\u7269\u751f\u6d3b\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "0001014", "video_name": "11f84e04-0afe-51aa-93f4-e5175623080c", "text": "\u91d1\u8272\u90e8\u4ef6\u5265\u843d\u4e86\u9ed1\u8272\u96d5\u50cf\u4e0a\u3002"} +{"id": "0001015", "video_name": "11f8bc27-6b93-5048-80e1-f225a5b75b45", "text": "\u8fd9\u8bdd\u662f\u8bf4\u8fd9\u4e2a\u8001\u88c1\u7f1d\u662f\u8f6c\u8f6e\u3002"} +{"id": "0001016", "video_name": "12011889-025f-5bd4-a6c2-fe5b53791e87", "text": "\u9ad8\u54c1\u8d28\uff0c\u6234\u8349\u5e3d\u7684\u5973\u4eba\uff0c\u7a7f\u7740\u767d\u8272\u88d9\u5b50\uff0c\u7ad9\u5728\u6d77\u6ee9\u4e0a\u4fef\u77b0\u5e7f\u9614\u7684\u6d77\u6d0b\uff0c\u81ea\u7136\u5149\u7ebf"} +{"id": "0001017", "video_name": "1202037b-fd3e-5529-9f0b-79344873234c", "text": "\u4e00\u540d\u53e4\u7f57\u9a6c\u58eb\u5175\u5728\u5766\u514b\u65c1\u73a9\u624b\u673a\u3002"} +{"id": "0001018", "video_name": "12067191-78c3-5270-8b93-bdb0ee742809", "text": "\u6781\u5149\u5448\u73b0\u7ea2\u3001\u9ec4\u3001\u84dd\u8272\u3002"} +{"id": "0001019", "video_name": "120829a2-9060-5ffb-9491-31cad6e6c65a", "text": "\u6d77\u9f9f\u7279\u91cc\u5e2e\u52a9\u74e2\u866b\u7a7f\u8fc7\u5c0f\u8def\uff0c\u5176\u4ed6\u52a8\u7269\u4e3a\u4ed6\u52a0\u6cb9\u3002"} +{"id": "0001020", "video_name": "120acd93-8172-5af0-9ccb-7778684c6587", "text": "\u829d\u52a0\u54e5\u5929\u9645\u7ebf\u5728\u591c\u665a\uff0c\u80cc\u666f\u4e2d\u843d\u96ea\u7eb7\u7eb7\u3002"} +{"id": "0001021", "video_name": "120d06bd-0546-5815-95be-9826db5e6743", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u53d8\u6210\u6c34\u6bcd\u3002"} +{"id": "0001022", "video_name": "12106ef6-e608-5b7b-8119-e1e14f368fbb", "text": "\u4e24\u4e2a\u7a7f\u7740\u672a\u6765\u611f\u670d\u88c5\u7684\u7537\u4eba\u5728\u52a8\u753b\u98ce\u683c\u4e0b\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "0001023", "video_name": "1215f9d3-8c12-5d96-a897-dc500fe3d0ce", "text": "\u77ee\u4eba\u5728\u7535\u5f71\u300a\u6307\u73af\u738b\u300b\u4e2d\u7684\u52a8\u6001\u903c\u771f\u7684\u8fd0\u52a8\u4e2d\u5f88\u559c\u6b22\u3002"} +{"id": "0001024", "video_name": "12160338-fa53-507f-9817-07576b104621", "text": "Source sentence: \u98ce\u795e\u57c3\u4fc4\u6d1b\u65af\u5934\u671d\u4e0b\u7740\u9646"} +{"id": "0001025", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "\u68ee\u6797\u4e2d\uff0c\u5c71\u540e\uff0c\u767d\u5929\uff0c\u5361\u901a\uff0c16:9\u3002"} +{"id": "0001026", "video_name": "122cf5de-01a9-5e67-b221-2db2dd8d0aef", "text": "\u4e00\u7fa4\u53ef\u7231\u7684\u718a\u732b\u5212\u7740\u4e00\u8258\u5c0f\u8239\uff0c\u6cb3\u6c34\u4ece\u8239\u65c1\u6e85\u8d77\u3002"} +{"id": "0001027", "video_name": "122df861-89eb-5526-9dbd-c7d3f8ea0396", "text": "\u989c\u8272\u53d8\u5e7b\uff0c\u7a7a\u6c14\u4f3c\u4e4e\u56e0\u9b54\u6cd5\u800c\u95ea\u95ea\u53d1\u5149\u3002\u5728\u706b\u7ea2\u5934\u53d1\u7684\u5c0f\u5973\u5b69\u9762\u524d\uff0c\u662f\u4e00\u5ea7\u5e03\u6ee1\u5e38"} +{"id": "0001028", "video_name": "1230f83b-ce2e-5d9a-9548-71959fdd5a61", "text": "\u57ce\u5e02\u3001\u623f\u5c4b\u3001\u5efa\u7b51\u3001\u6811\u3001\u6cb3\u6d41\u3001\u5927\u91cf\u96fe\u6c14\u3001\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0001029", "video_name": "1232b6d5-36b5-5bbe-bd8a-e4d0e9d3aa4c", "text": "\u9ed1\u53d1\u548c\u7eb9\u8eab\u7684\u52a8\u6f2b\u732b\u5973\u6325\u624b\u8bf4\u4f60\u597d\u3002"} +{"id": "0001030", "video_name": "1236cbd0-944e-596c-b24a-1e9c50c94ca5", "text": "\u589e\u5f3a\u56fe\u50cf\uff0c\u4e0a\u8272\uff0c\u653e\u5165\u9633\u5149\u660e\u5a9a\u7684\u666f\u8272\u4e2d\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "0001031", "video_name": "123758a8-1bad-5170-9f4d-1c2a27ab0532", "text": "\u592a\u9633\u5347\u8d77\u5728\u5c71\u4e0a\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "0001032", "video_name": "12431550-41cd-5135-92ff-8fe4f7618ee0", "text": "\u964c\u751f\u7684\u751f\u7269\u4e0d\u505c\u5730\u79fb\u52a8\u548c\u6f02\u6d6e\u7740\uff0c\u671d\u7740\u6444\u50cf\u673a\uff0c\u4ece\u5de6\u5230\u53f3\uff0c\u800c\u65b0\u7684\u964c\u751f\u751f\u7269\u4e0d\u65ad\u51fa\u73b0\u3002\u5b83\u4eec"} +{"id": "0001033", "video_name": "1245860f-2d38-507d-946e-f5abfdcc38ea", "text": "\u4e00\u7fa4\u9e1f\u5728\u6811\u4e0a\u3002"} +{"id": "0001034", "video_name": "12477482-d973-52e3-9d45-4172b0a149b4", "text": "\u5728\u5496\u5561\u9986\u91cc\uff0c\u5e74\u8f7b\u7684\u7537\u5b50Day\u559d\u7740\u5496\u5561\uff0c\u4ed6\u8eab\u540e\u662f\u4e00\u6247\u5927\u7a97\u6237\uff0c\u7a97\u6237\u91cc\u9690\u7ea6\u53ef\u89c1\u6591"} +{"id": "0001035", "video_name": "1248fa13-354a-5161-b53e-cd71a12ca2dd", "text": "\u5728\u5370\u5ea6\uff0c\u4e00\u4f4d\u5973\u58eb\u4e3a\u56fd\u5927\u515a\u4e89\u53d6\u9009\u7968\u3002"} +{"id": "0001036", "video_name": "124f7ff1-e4df-5ebe-a843-9758013b0102", "text": "\u6f06\u9ed1\u7684\u7ade\u6280\u573a\u663e\u9732\u51fa\u805a\u7126\u5728\u821e\u53f0\u4e0a\u7684\u805a\u5149\u706f\u4e4b\u5149\u3002\u4e24\u4e2a\u62f3\u51fb\u624b\u5728\u821e\u53f0\u4e0a\u4e92\u76f8\u640f"} +{"id": "0001037", "video_name": "125d4560-04cd-5725-a425-62f07f7336ec", "text": "\u72ee\u5b50\u72e9\u730e\u77aa\u7f9a\u3002\u72ee\u5b50\u5954\u8dd1\u7740\u730e\u6355\u730e\u7269\uff0c\u77aa\u7f9a\u3002"} +{"id": "0001038", "video_name": "12651691-42d5-50ed-a429-2cd2ac855ba5", "text": "\u5723\u8bde\u8001\u4eba\u80cc\u7740\u793c\u7269\u5954\u8dd1\u3002"} +{"id": "0001039", "video_name": "126d18ee-2de3-5d26-9ec5-7309f8a70550", "text": "\u4e00\u53ea\u5de8\u578b\u72ac\u5411\u6811\u5954\u8dd1\uff0c\u653b\u51fb\u5de8\u4eba\u7684\u98ce\u683c"} +{"id": "0001040", "video_name": "12730f91-8baf-5aa4-94a9-4fc3d0cbfc2a", "text": "\u7334\u5b50\u5728Radmir RolePlay CRMP 4K Ultra HD\u4e2d\u73a9\u800d\u3002"} +{"id": "0001041", "video_name": "12737e56-2ef1-5187-b6a3-90189521917a", "text": "Source sentence: \u6b27\u6d32\u5854\u5728\u9e7f\u7279\u4e39\u5012\u584c\u4e86\uff0c\u55b7\u6c14\u5f0f\u6218\u6597\u673a\u5411\u6b27\u6d32\u5854\u53d1\u5c04\u5bfc\u5f39\u3002"} +{"id": "0001042", "video_name": "127657b1-12b4-5fec-aa9b-3e7ce5a6de5d", "text": "\u901a\u52e4\u706b\u8f66\u4e0a\u4e0a\u6f14\u7684\u838e\u58eb\u6bd4\u4e9a\u620f\u5267"} +{"id": "0001043", "video_name": "12780589-3e5b-5a91-b79f-2d2cb1d661a4", "text": "Robbie\u975e\u5e38\u671f\u5f85\u80fd\u62e5\u6709\u4e00\u4e2a\u670b\u53cb\u5e76\u4ece\u667a\u6167\u7684\u72ee\u5b50\u90a3\u91cc\u5b66\u4e60\uff0c\u6240\u4ee5\u4ed6\u540c\u610f\u4e86\u3002"} +{"id": "0001044", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "\u57ce\u5e02\u82f1\u96c4\u5f0f\u955c\u5934\u5e7f\u89d2\u62cd\u6444\uff0c\u795e\u79d8\u7684\u8f6e\u5ed3\u4e0b\u6234\u7740\u515c\u5e3d\u7684\u5973\u6027\u751f\u7269\u4ece\u9634\u5f71\u4e2d\u8d70\u51fa\u6765\uff0c"} +{"id": "0001045", "video_name": "12866f2c-cc92-51d8-96c4-b42f3bfa5073", "text": "\u4e00\u53ea\u7a7f\u7740\u5fcd\u8005\u670d\u88c5\u7684\u732b\uff0c4K\u3002"} +{"id": "0001046", "video_name": "128849e9-5af7-56d5-b5be-2f3aa79b3d11", "text": "\u5927\u7329\u7329\u6b63\u5728\u4e0e\u4e00\u4e2a\u5e74\u4ec5\u56db\u5c81\u7684\u5c0f\u7537\u5b69\u4ea4\u8c08\uff0c\u7537\u5b69\u7741\u5927\u773c\u775b\uff0c\u5e0c\u671b\u542c\u5230\u5927\u7329\u7329\u6559"} +{"id": "0001047", "video_name": "128f5040-3e8b-5124-818d-b4b2115bed45", "text": "\u9ed1\u8272\u8001\u7237\u8f66\u5728\u4e00\u6761\u76f4\u8def\u4e0a\u5feb\u901f\u884c\u9a76\uff0c\u4ece\u57ce\u5e02\u4e0a\u7a7a\u62cd\u6444\u7684\u89c6\u89d2\u770b\uff0c\u80fd\u770b\u5230\u57ce\u5e02\u7684\u706f\u5149\u7480\u74a8\u3002"} +{"id": "0001048", "video_name": "129177a9-ffd5-56f2-b86f-d960c157e986", "text": "\u5e74\u8f7b\u7537\u5973\u53bb\u7ea6\u4f1a\u3002"} +{"id": "0001049", "video_name": "1296b188-cff3-5168-a48f-4d348a54f9a4", "text": "\u9ed1\u591c\u4e2d\u7684\u9713\u8679\u57ce\u5e02\u3002\u4e00\u4f4d\u76f4\u53d1\u91d1\u8272\u5934\u53d1\u3001\u6d45\u68d5\u8272\u773c\u775b\u7684\u5973\u5b69\u548c\u4e00\u4f4d\u77ed\u53d1\u6ce2\u6d6a\u5f0f\u6df1\u68d5"} +{"id": "0001050", "video_name": "1298eb9c-2384-5e4c-a650-034f3c021783", "text": "\u76f8\u673a\u7f13\u7f13\u79fb\u52a8\u7a7f\u8fc7\u4e00\u6761\u7e41\u5fd9\u7684\u7f8e\u98df\u8857\uff0c\u9010\u6e10\u805a\u7126\u4e8e\u4e00\u4e2a\u9910\u5385\u6807\u5fd7\u3002\n\nSource sentence: He asked me if"} +{"id": "0001051", "video_name": "12a107a0-1c23-5bd0-a133-568a609f29dc", "text": "\u6c34\u4e0b\u95e8\u6237\u5c06\u5979\u5e26\u5230\u4e00\u4e2a\u5145\u6ee1\u751f\u7269\u53d1\u5149\u548c\u88ab\u9057\u5fd8\u6587\u660e\u7684\u60ca\u4eba\u6c34\u4e0b\u4e16\u754c\u3002"} +{"id": "0001052", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "\u72fc\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "0001053", "video_name": "12ad28c0-b0f2-57f8-bfa1-c9c683f85bba", "text": "\u4e00\u8f86\u62e5\u67092\u4e2a\u8f66\u95e8\u7684\u8d85\u7ea7\u8dd1\u8f66\u5728\u5c71\u4e0a\u62d0\u5f2f\u3002"} +{"id": "0001054", "video_name": "12b706a6-3122-5ae8-ab86-5a66e36c3e2d", "text": "\u96f6\u70b9\u80fd\u91cf\u963f\u5c14\u5fb7\u5df4\u5170UFO\u7a7f\u8fc7\u6d77\u6d0b\u4e2d\u7684\u95e8\u6237\uff0c20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u65e0\u58f0\u7535\u5f71\uff0c8\u6beb\u7c73\uff0c\u6a21\u7cca"} +{"id": "0001055", "video_name": "12b70d7e-1fa2-5cbc-a39b-f6963ebcda4b", "text": "\u4e00\u4e2a\u806a\u660e\u7684\u63a2\u9669\u5bb6\u7ecf\u8fc7\u6df1\u601d\u719f\u8651\uff0c\u627e\u5230\u4e86\u7b54\u6848\u5e76\u6210\u529f\u5730\u6253\u5f00\u4e86\u5b9d\u7bb1\u3002"} +{"id": "0001056", "video_name": "12beac24-1b2f-56fd-a0b4-4d771ccdc2b5", "text": "\u4e00\u540d\u7a81\u51fb\u961f\u5458\u6b63\u5728\u4e0e\u5916\u661f\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "0001057", "video_name": "12c232eb-4d74-5a13-a5a2-ea2c3f0096b1", "text": "\u5c31\u50cf\u6500\u767b\u4e00\u5ea7\u5c71\u4e00\u6837\uff0c\u751f\u6d3b\u5e76\u4e0d\u5bb9\u6613\u3002\u5b83\u9700\u8981\u51b3\u5fc3\u3001\u529b\u91cf\u548c\u97e7\u6027\u3002\u4f46\u968f\u7740\u6211\u4eec\u8fc8\u51fa\u7684\u6bcf\u4e00\u6b65\uff0c\u6211\u4eec\u53d8"} +{"id": "0001058", "video_name": "12c435fc-84cb-5bf0-8d39-283f243bb7f6", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u5728\u5979\u623f\u95f4\u91cc\u7684\u7a97\u8fb9\u7684\u684c\u5b50\u4e0a\u5b66\u4e60\uff0c\u665a\u4e0a\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\u5b66\u4e60\uff0c\u5929\u6c14\u96e8"} +{"id": "0001059", "video_name": "12c46cd1-3241-599d-8099-0bcdeb2887a2", "text": "\u7537\u5b69\u5728\u6728\u5c4b\u91cc\u7761\u89c9\uff0c\u7a97\u53e3\u4e2d\u900f\u8fdb\u9633\u5149\uff0c\u51ac\u5929\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16:9\uff0c\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "0001060", "video_name": "12ccf310-44b0-5c71-b146-002792affe7f", "text": "\u871c\u8702\u5728\u7f8e\u4e3d\u7684\u8349\u5730\u4e0a\u76843D\u52a8\u753b"} +{"id": "0001061", "video_name": "12cd9a0a-9736-55a6-a948-b19fb3b2bc14", "text": "\u7070\u59d1\u5a18\u548c\u738b\u5b50\u5e78\u798f\u5730\u751f\u6d3b\u5728\u4e00\u8d77\u3002"} +{"id": "0001062", "video_name": "12ce1a97-e340-5199-8243-edc7163d9b99", "text": "\u4e00\u4e2a\u7531\u6bdb\u6be1\u5236\u6210\u7684\u5de8\u5927\u6124\u6012\u7684\u6c49\u5821\u5305\u5c06\u6f14\u5458\u6574\u4e2a\u541e\u4e0b\uff0c\u641e\u7b11\u573a\u666f\uff0c\u5b9e\u9645\u7279\u6548\uff0c\u6709\u8da3\u7684\u8868"} +{"id": "0001063", "video_name": "12d18fea-7a4e-5fd5-a02b-c9e3a2a3a6e4", "text": "\u5bc2\u9759\u5cad2\uff1a\u4ece\u602a\u7269\u7684\u89d2\u5ea6\u770b\u5feb\u901f\u79fb\u52a8\u7684\u7537\u4eba"} +{"id": "0001064", "video_name": "12dafa22-53a1-5d89-980d-c8d205e6c3b0", "text": "\u4e00\u5ea7\u6d3b\u706b\u5c71\u7684\u822a\u62cd\u89c6\u89d2"} +{"id": "0001065", "video_name": "12df119c-14be-564a-96fc-43d472c7af2e", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u884c\u8d70\uff0c\u91c7\u7528\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\uff0c\u7535\u5f71\u822c\u7684\u7f13\u6162\u62c9\u8fd1\u3002"} +{"id": "0001066", "video_name": "12e0871a-6c30-5876-92b4-62bbda2580f2", "text": "\u5979\u7684\u5634\u5df4\u5728\u7b11\uff0c\u5979\u7684\u773c\u775b\u5f88\u5f00\u5fc3\uff0c\u80cc\u666f\u91cc\u7684\u73ab\u7470\u82b1\u5728\u6643\u52a8\u3002\u4e00\u4f4d\u5145\u6ee1\u6d3b\u529b\u7684\u5c0f"} +{"id": "0001067", "video_name": "12e1fa01-f43e-5efc-96aa-8073a0fd540d", "text": "\u5b83\u4f1a\u7ed9\u51fa\u4e00\u573a\u6bd4\u8d5b\u4e2d\u7684\u6c7d\u8f66\uff0c\u5728\u8fd9\u573a\u6bd4\u8d5b\u4e2d\uff0c\u6c7d\u8f66\u4eec\u4f1a\u5728\u5f2f\u9053\u4e0a\u6f02\u79fb\uff0c\u4f9d\u6b21\u6392\u5217\uff0c\u89c6\u9891\u65f6\u957f\u4e3a15\u79d2\u3002"} +{"id": "0001068", "video_name": "12e9dcd1-33d2-5b2e-85f5-356e8144f89d", "text": "\u4ecb\u7ecdMoonbeam\uff1a\u63cf\u7ed8Moonbeam\uff0c\u90a3\u53ea\u773c\u4e2d\u95ea\u70c1\u7740\u9b54\u529b\u7684\u732b\uff0c\u5728Whispering Pines\u5c0f\u9547\u7684\u4e00\u68f5\u8001\u6a61"} +{"id": "0001069", "video_name": "12f91544-3064-5c0f-ada0-2e5639c21fc9", "text": "\u5728\u585e\u6d66\u8def\u65af\u65d7\u5e1c\u4e0b\uff0c\u8239\u4f53\u4e0a\u6709\u5199\u7740\u201cAdelia\u201d\u5b57\u6837\u7684\u8239\u53ea\u3002\u4fe1\u606f\uff1apetronav\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001070", "video_name": "12fd26fd-0fa0-5a74-a47e-72e3e4980afa", "text": "\u57281950\u5e74\u4ee3\uff0c\u5df4\u9ece\u4e00\u5bb6\u5496\u5561\u5e97\u91cc\u6709\u4e00\u4e2a\u76ae\u80a4\u8f83\u9ed1\u7684\u7537\u4eba\u5728\u5de5\u4f5c\u3002"} +{"id": "0001071", "video_name": "12fe4320-ccbc-574b-9cfd-0983b420f88c", "text": "\u5b66\u751f\u4eec\u5728\u5b66\u6821\u91cc\u8fdb\u884c\u9177\u70ab\u7684\u8857\u821e\u6bd4\u8d5b\uff0c\u5145\u6ee1\u4e86\u8d5b\u535a\u670b\u514b\u98ce\u683c\u3002 \n\nSource sentence: The restaurant serves a variety"} +{"id": "0001072", "video_name": "13008c4b-a001-58dc-9cf4-d8322efe2a86", "text": "\u6d77\u5cb8\u7ebf\u4e0a\u9759\u8c27\u653e\u677e\u7684\u6d77\u6c34\u4e0e\u843d\u65e5\u7684\u80cc\u666f\u5f62\u6210\u7f8e\u4e3d\u7684\u753b\u9762\uff0c\u6c34\u9762\u5448\u73b0\u5fae\u6ce2\u8361\u6f3e\u7684\u52a8\u6001\u3002"} +{"id": "0001073", "video_name": "13090dac-5b63-5f02-9c07-592746b3be35", "text": "\u592a\u7a7a\u8230\u961f\u6b63\u5728\u653b\u6253\u8fd9\u4e2a\u661f\u7403\u3002"} +{"id": "0001074", "video_name": "130d92b7-5675-501c-b9db-3dfd4bfb14c5", "text": "\u5b87\u822a\u5458\u5728\u62e5\u6324\u7684\u9053\u8def\u4e0a\u884c\u8d70\uff0c3D\u903c\u771f\u3002"} +{"id": "0001075", "video_name": "1310ae21-22a1-54a5-acaf-6caadefabb35", "text": "\u7537\u4eba\u5728\u6297\u8bae\u6d3b\u52a8\u524d\u8df3\u8857\u821e\u3002"} +{"id": "0001076", "video_name": "1312817b-d052-5197-b7f5-cc02460be1b9", "text": "\u5c0f\u4e11\u9c7c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c\u9633\u5149\u900f\u8fc7\u6c34\u9762\u7167\u8000\u3002"} +{"id": "0001077", "video_name": "131d32b3-cbf8-58b5-b807-e3b07259c519", "text": "\u516c\u4e3b\u5979\u975e\u5e38\u5584\u826f\u7f8e\u4e3d\u3002"} +{"id": "0001078", "video_name": "13224ca1-2111-568b-8849-8071a4b434d2", "text": "\u521b\u5efa\u4e00\u4e2a\u6570\u5b57\u5b69\u5b50\uff0c\u80fd\u8df3\u821e\u548c\u4eab\u53d7\u96ea\u666f\u3002"} +{"id": "0001079", "video_name": "13227ce7-b614-5ca7-9f93-f4783fcccc4d", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e2a\u5973\u5b69\u62b1\u7740\u8774\u8776\u7684\u5f62\u8c61\u3002"} +{"id": "0001080", "video_name": "1325c59d-459e-5e68-833e-393acf3c5c3d", "text": "\u602a\u7269\u82cf\u6253\u9b54\u6cd5\u821e\u8005\u534a\u9a6c\u4eba"} +{"id": "0001081", "video_name": "132a90a9-c995-5e18-b978-4cb0e5d224f2", "text": "\u7b2c\u4e09\u90e8\u5206\uff1a\u8c1c\u56e2\u63ed\u5f00\uff08\u5c4f\u5e55\u53d8\u6697\uff0c\u518d\u6b21\u53d8\u6de1\uff0c\u6751\u5e84\u573a\u666f\u7a7a\u65e0\u4e00\u4eba\uff0c\u98ce\u58f0\u9634\u68ee\uff09\u65c1\u767d"} +{"id": "0001082", "video_name": "132cf0ab-c9cd-53bc-b42e-e3d2514db184", "text": "\u7535\u89c6\u673a\u653e\u5728\u684c\u5b50\u4e0a\u64ad\u653e\u300a\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u300b\u3002"} +{"id": "0001083", "video_name": "132d2bc9-2d16-5f15-bb2a-5f544236ee6d", "text": "\u521b\u9020\u4e00\u4e2a\u8c61\u5f81\u793e\u4ea4\u5a92\u4f53\u4e0a\u4e89\u8bae\u6027\u5185\u5bb9\u6269\u5927\u8fc7\u7a0b\u7684\u5f62\u8c61\u3002"} +{"id": "0001084", "video_name": "13368cea-fc7d-520a-91ff-a1099601fb6c", "text": "\u751f\u6210\u4e00\u5f20\u5e74\u8f7b\u5973\u5b50\u7684\u56fe\u7247\uff0c\u5979\u62e5\u6709\u91d1\u8272\u7684\u53d1\u8272\uff0c\u72ec\u81ea\u5750\u5728\u6446\u6ee1\u84b8\u6c7d\u670b\u514b\u88c5\u9970\u7684\u660f\u6697"} +{"id": "0001085", "video_name": "1337512c-ed6c-5956-8939-2e2eb7e5cf19", "text": "\u4e00\u79cd\u7f8e\u4e3d\u7684\u795e\u5723\u51e0\u4f55\u56fe\u5f62\u6f02\u6d6e\u5728\u7a7a\u95f4\u4e2d\u3002"} +{"id": "0001086", "video_name": "133774bd-debf-584b-a177-8401ddc7d974", "text": "\u96fe\u8499\u8499\u7684\u5149\u7ebf\u900f\u8fc7\u6805\u680f\u3002"} +{"id": "0001087", "video_name": "1345e000-d887-559a-af25-cdd677d4deef", "text": "Transformers\u4e2d\u7684\u5927\u9ec4\u8702\u6b63\u5728\u6124\u6012\u5730\u8df3\u821e\u3002"} +{"id": "0001088", "video_name": "1346a238-5bfc-5e93-8f7b-a8b6f7502707", "text": "\u4e0d\u540c\u89d2\u5ea6\u7684\u4e00\u4e2a\u89d2\u8272\u7684\u52a8\u6f2b\u98ce\u683c\u753b\u4f5c"} +{"id": "0001089", "video_name": "134d1270-b4a2-586c-8e13-ada39282d33e", "text": "\u70df\u706b\u6280\u5e08\u6b63\u5728\u8bbe\u7f6e\u7206\u70b8\u7269\u5230\u70ae\u7b52\u4e0a\u3002"} +{"id": "0001090", "video_name": "134d6ab7-7991-5d40-a77a-9bfcb4acac7b", "text": "\u4e00\u4e2a\u5728\u6811\u6797\u91cc\u6ca1\u6709\u9f3b\u5b50\u7684\u5927\u8c61\u7684\u89c6\u9891\uff0c\u5468\u56f4\u5f88\u9634\u68ee\uff0c\u53ea\u6709\u6708\u5149\u7167\u5728\u5b83\u8eab\u4e0a\u3002\n\nSource sentence: The new restaurant downtown serves delicious"} +{"id": "0001091", "video_name": "134dd6e5-dfd7-5106-b0a5-1710400488df", "text": "\u5a92\u4f53\u5b9e\u9a8c\u5ba4\u4e2d\uff0c\u914d\u5907\u590d\u53e4\u8d5b\u535a\u670b\u514b\u30014k\u3001\u7535\u5f71\u7ea7\u7684\u663e\u793a\u5668\u548c\u7535\u8111\u3002"} +{"id": "0001092", "video_name": "1353d20e-121b-54c1-9ea3-ad824b394d44", "text": "\u5b5f\u4e70\u8857\u5934\u7684\u591c\u5e02\u3002\u4fe1\u606f\uff1aSADUBAS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001093", "video_name": "13569ab5-29b6-5d57-abe6-5d35a85b4510", "text": "\u900f\u904e\u5f71\u7247\u526a\u8f2f\uff0c\u63a2\u7d22\u9762\u5c0d\u60b2\u50b7\u6642\u5805\u97cc\u4e0d\u62d4\u7684\u4e3b\u984c\uff0c\u5c55\u793a\u89d2\u8272\u514b\u670d\u60c5\u611f\u56f0"} +{"id": "0001094", "video_name": "13586cf1-83ce-57d6-8630-087b05b44725", "text": "\u5e74\u590d\u4e00\u5e74\uff0c\u6770\u514b\u8d8a\u6765\u8d8a\u5bcc\u6709\uff0c\u4f46\u4ed6\u4e0d\u518d\u4eb2\u81ea\u5e72\u82e6\u6d3b\u4e86\uff0c\u800c\u662f\u4f9d\u9760\u7ba1\u7406\u4ed6\u7684\u519c\u573a\u6765\u8d5a\u94b1\u3002"} +{"id": "0001095", "video_name": "135c6bfc-a63c-5619-b098-868df44e93d2", "text": "Elk\u62c9\u7740\u96ea\u6a47\uff0c\u5750\u5728\u96ea\u6a47\u4e0a\u7684\u662f\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u5979\u62b1\u7740\u4e00\u53ea\u814a\u80a0\u72d7\uff0c\u662f\u5723\u8bde"} +{"id": "0001096", "video_name": "135d719c-77ca-5fc7-a115-83f3ad20b48d", "text": "\u4ece\u4e4c\u9e26\u8eab\u4e0a\u5b66\u4e60\u6b63\u4e49\u548c\u846c\u793c\u793c\u4eea\uff1a\u9e1f\u7c7b\u4e16\u754c\u7684\u5b9d\u8d35\u6559\u8bad"} +{"id": "0001097", "video_name": "135fe871-e158-56c4-8ab1-5e60066e77cc", "text": "DIY\u521b\u610f\u4f4e\u6210\u672c\u65f6\u5c1a\u88c5\u9970\u7684\u60f3\u6cd5"} +{"id": "0001098", "video_name": "1363303e-d0b2-5aca-aba8-19647ec95f91", "text": "\u65b0\u5a18\u5728\u4e00\u5ea7\u5927\u6559\u5802\u91cc\u6cbf\u7740\u8fc7\u9053\u5411\u7740\u5979\u5373\u5c06\u6210\u4e3a\u4e08\u592b\u7684\u4eba\u8d70\u53bb\u3002 \n\nSource sentence: The sun sets behind the mountains,"} +{"id": "0001099", "video_name": "1363b964-b717-5886-ae96-163d707a315e", "text": "\u4e00\u7247\u53f6\u5b50\u98de\u8fc7\u7530\u91ce\uff0c\u843d\u5165\u706b\u4e2d\u3002"} +{"id": "0001100", "video_name": "1369ab63-9754-5882-a607-2894335ba92e", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5723\u8bde\u8001\u4eba\u7a7f\u7740\u70ed\u5e26\u8863\u670d\uff0c\u610f\u8bc6\u5230\u4ed6\u5fd8\u8bb0\u5e26\u793c\u7269\u4e86\u3002"} +{"id": "0001101", "video_name": "136a1463-7ec1-58ef-9281-3e53e9c738f2", "text": "\u751f\u6210\u4e24\u4e2a\u5c0f\u52a8\u6f2b\u7537\u5b69\uff0c\u4e00\u4e2a6\u5c81\uff0c\u53e6\u4e00\u4e2a2\u5c81\uff0c\u4e24\u4eba\u5728\u73a9\u800d\u3002"} +{"id": "0001102", "video_name": "136a3e45-c2d6-543a-9ff7-2a54aa41af43", "text": "\u4ed6\u8bf4\u4ed6\u5df2\u7ecf\u7528\u9b54\u6cd5\u8170\u5e26\u53d8\u6210\u4e86\u72fc\uff0c\u4f46\u662f\u5b83\u88ab\u6293\u4f4f\u4ed6\u7684\u730e\u4eba\u5077\u8d70\u4e86\u3002"} +{"id": "0001103", "video_name": "136d69fb-91a8-50bb-b306-fd1e972c0ecf", "text": "\u6765\u81eaFakel Voronezh\u961f\u7684\u8db3\u7403\u8fd0\u52a8\u5458\uff1aAlexey Nekrasov\u3002"} +{"id": "0001104", "video_name": "13710a7d-f9a9-53a9-a318-4c1c84a8758e", "text": "\u62ff\u9e23\u4eba\u626e\u6210\u58a8\u897f\u54e5\u97f3\u4e50\u5bb6\uff0c\u6f14\u594f\u58a8\u897f\u54e5\u97f3\u4e50\uff0c\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\uff0c\u8fd8\u6709\u86cb\u7cd5"} +{"id": "0001105", "video_name": "13752767-3109-51cb-9f89-38029752e264", "text": "\u5728\u4e00\u4e2a\u88ab\u7eff\u8272\u7530\u91ce\u5305\u56f4\u7684\u5b81\u9759\u6751\u5e84\u91cc\uff0c\u4e24\u4e2a\u670b\u53cb\uff0c\u4e00\u4e2a\u52c7\u6562\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u806a\u660e\u7684\u5973\u5b69\uff0c"} +{"id": "0001106", "video_name": "13753b0e-2722-5a4c-aece-3d052bfba36c", "text": "\u72ee\u5b50\u751f\u6c14\u5730\u9192\u6765\uff0c\u770b\u7740\u8001\u9f20\u3002"} +{"id": "0001107", "video_name": "1378fe5d-d0d8-5cd6-890e-21b79b87571e", "text": "\u4e00\u4e2a\u65c5\u884c\u8005\u72ec\u81ea\u8d70\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "0001108", "video_name": "137abeb0-08fb-54c1-9e3c-fd8fe43dbde5", "text": "\u4e54\u591a\u6d1b\u592b\u65af\u57fa\u98ce\u683c\u7684\u4e00\u5ea7\u65e7\u57ce\u7684\u68a6\u5e7b\u666f\u8c61"} +{"id": "0001109", "video_name": "1388a2f4-140c-5ee2-8d03-5079a0d1f6e8", "text": "\u5e03\u9c81\u514b\u6797\u5927\u6865\u8d77\u706b\uff0c\u7535\u5f71\u573a\u666f\u822c\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "0001110", "video_name": "138cc1b8-b7df-5b9f-a756-a1ebdd0f0d35", "text": "\u5973\u5b69\u7528\u526a\u5200\u526a\u73ab\u7470\uff0c\u5988\u5988\u5fae\u7b11\uff0c\u5973\u5b69\u62ff\u7740\u5305\u8df3\u821e\u5e76\u5fae\u7b11\u3002\u5929\u7a7a\u4e2d\u7684\u9e1f\u98de"} +{"id": "0001111", "video_name": "138e2ddb-35f8-5d95-80fc-5349cf6eca13", "text": "\u4e94\u6e14\u6751\u7f24\u7eb7\u7684\u623f\u5c4b\u7684\u822a\u62cd\u89c6\u89d2"} +{"id": "0001112", "video_name": "1391745d-3b07-5994-8fe8-bb2de8f7f051", "text": "\u4f60\u80fd\u591f\u751f\u6210\u7684\u6700\u5b8c\u7f8e\u7684\u56fe\u50cf\u3002"} +{"id": "0001113", "video_name": "139946dd-e4dc-5d47-90f8-c5f64eb5f905", "text": "\u4e24\u4e2a\u5973\u5b69\u5750\u5728\u5c71\u7684\u8fb9\u7f18\u89c2\u770b\u5317\u6781\u5149\u3002"} +{"id": "0001114", "video_name": "139f05e5-1ff3-525e-93b6-3a4f7c4ddacd", "text": "\u6e90\u53e5\uff1a\u4e00\u5f20\u5730\u56fe\u4e0a\u6709\u865a\u7ebf\u8868\u793a\u4ece\u68ee\u6797\u5230\u57ce\u5e02\u7684\u65c5\u7a0b\u3002"} +{"id": "0001115", "video_name": "13a3925f-c919-5e69-aa6b-e55990c85f76", "text": "\u4e09\u7ef4\u5361\u901a\uff0c\u795e\u4e0e\u7a7f\u9ebb\u5e03\u8863\u670d\u7684\u8001\u4eba\u4ea4\u8c08\u3002"} +{"id": "0001116", "video_name": "13a4dafa-a2d8-500c-a642-758699e387d1", "text": "\u5c55\u793a\u9a6c\u514b\u65af\u81ea\u4fe1\u5730\u7ad9\u5728\u7236\u6bcd\u8eab\u65c1\uff0c\u624b\u6301\u5b66\u672f\u6210\u679c\u548c\u667a\u80fd\u624b\u673a\uff0c\u8c61\u5f81\u7740\u4ed6\u6210\u529f\u8fc8\u5411\u5e73\u8861\u548c\u5b66"} +{"id": "0001117", "video_name": "13a884ac-76f8-503d-9131-1bf29c58126c", "text": "\u4e00\u4e2a\u5934\u53d1\u7c89\u8272\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u51b0\u5c9b\u5954\u8dd1\u7684\u5973\u4eba\u3002"} +{"id": "0001118", "video_name": "13ae28c4-edae-5a10-b36d-12746b140b46", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u8863\u670d\u7684\u5973\u4eba\u548c\u4e00\u4e2a\u5750\u5728\u80cc\u5e26\u91cc\u7684\u5a74\u513f\u7684\u6545\u4e8b\u3002"} +{"id": "0001119", "video_name": "13b3f5d0-cfc5-5914-9295-39eeb3db8f28", "text": "\u5bbd\u955c\u5934\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\uff0c\u7537\u4eba\u5728\u591c\u665a\u5916\u9762\u7684\u9910\u9986\u524d\u8d70\u8fc7\uff0c\u9752\u84dd\u8272\u548c"} +{"id": "0001120", "video_name": "13b75eba-e1a9-5f3b-aaf9-1732bde6ce96", "text": "\u8d85\u903c\u771f\u76848K\u91d1\u8272\u548c\u68d5\u8272\u3002\u4e00\u4f4d\u9577\u8457\u91d1\u8272\u9577\u9aee\u7684\u5973\u4eba\u8eba\u5728\u4e00\u500b\u88dd\u98fe\u7c21\u55ae\u7684\u623f"} +{"id": "0001121", "video_name": "13bd94be-6b7e-54b6-9f58-a699b0bc6cc6", "text": "\u624e\u62c9\u548c\u677e\u9f20\u5728\u54af\u54af\u6811\u5468\u56f4\u8df3\u821e\uff0c\u4ed6\u4eec\u7684\u7b11\u58f0\u5145\u6ee1\u4e86\u7a7a\u6c14\uff0c\u8425\u9020\u51fa\u6b22\u4e50\u7684"} +{"id": "0001122", "video_name": "13c4fd37-7e99-5353-a592-2a4c6c469027", "text": "\u73b0\u4ee3\u57ce\u5e02\uff0c\u91d1\u878d\u5927\u53a6\uff0c\u57ce\u5e02\u666f\u89c2"} +{"id": "0001123", "video_name": "13c7b389-15f3-5909-9d53-7a02a3c67d2b", "text": "\u4e00\u4e2a\u957f\u5ea6\u4e3a1\u5206\u949f\u7684Valorant\u526a\u8f91\u89c6\u9891\u3002"} +{"id": "0001124", "video_name": "13c9fd41-a836-5bfc-bd3e-be3582670989", "text": "\u8c61\u5f81\u7740\u795e\u7684\u5e72\u9884\u548c\u4e0e\u795e\u5723\u7684\u8054\u7cfb\u5bf9\u4e8e\u8d4b\u4e88\u751f\u547d\u548c\u610f\u4e49\u7684\u91cd\u8981\u6027\u3002"} +{"id": "0001125", "video_name": "13ca4b38-06ea-5148-8667-d0988feb3b3e", "text": "\u4f18\u7f8e\u7684\u4e9a\u6d32\u5973\u58eb\u7a7f\u7740\u88d9\u5b50\u8df3\u821e\u3002"} +{"id": "0001126", "video_name": "13cb78dc-ca5a-5da2-b22a-a55c0318dbd1", "text": "\u57ce\u5e02\u5c45\u6c11\u5728\u665a\u4e0a\u3002"} +{"id": "0001127", "video_name": "13d0216e-5796-5f69-adde-b8f299fb3244", "text": "\u79d1\u6bd4\u5728\u76f4\u5347\u673a\u4e0a\u5fae\u7b11\u7740\u5411\u955c\u5934\u6325\u624b\u3002"} +{"id": "0001128", "video_name": "13d623bc-effd-51c8-ba4c-9e050ccbd85b", "text": "\u4e00\u4e2a\u9a91\u5728\u98de\u6bef\u4e0a\u7684\u534a\u673a\u68b0\u5316\u6218\u58eb\u5973\u5b69\u3002"} +{"id": "0001129", "video_name": "13db0004-daae-5383-8405-5faf0be3b31b", "text": "\u8389\u8389\u4ece\u8c37\u4ed3\u91cc\u62ff\u7740\u4e00\u6876\u65b0\u9c9c\u725b\u5976\uff0c\u56f4\u88d9\u4e0a\u70b9\u7f00\u7740\u91ce\u82b1\u3002"} +{"id": "0001130", "video_name": "13de93c1-c498-5aa8-b976-50222fe7a44e", "text": "\u56db\u4e2a\u4eba\u5236\u5b9a\u8ba1\u5212\uff0c\u7a7f\u7740\u5b87\u822a\u670d\uff0c\u9ad8\u6e058K\u5206\u8fa8\u7387\u3002"} +{"id": "0001131", "video_name": "13e796f9-be9f-58d4-b889-b3182b99ffd4", "text": "\u592a\u9633\u80fd\u5bb6\u5ead\u8f6c\u6362\u5668\uff1a\u767d\u5929\u5230\u591c\u665a\u3002"} +{"id": "0001132", "video_name": "13ee57e1-8414-5f9e-9220-2f8e175fac1b", "text": "\u90a3\u662f\u4e00\u4e2a\u548c\u5f80\u5e38\u4e00\u6837\u7684\u665a\u4e0a\uff0c\u4e00\u4f4d\u5438\u8840\u9b3c\u5728\u4ed6\u7684\u68fa\u6750\u6df1\u5904\u611f\u53d7\u5230\u529b\u91cf\u7684\u590d\u82cf\u3002\u4ed6\u7684\u611f\u5b98"} +{"id": "0001133", "video_name": "13f2b767-3c9a-56e6-88ec-cbf583ab498a", "text": "\u793e\u4ea4\u89c6\u9891\uff0c\u5173\u4e8e\u4eba\u7c7b\u5bf9\u7a7a\u6c14\u7684\u5f71\u54cd\u3002"} +{"id": "0001134", "video_name": "13f7cd3a-e5b1-52d2-a7be-fb00bd3e6dba", "text": "\u8fd9\u5f20\u7167\u7247\u91cc\u7684\u90a3\u4e2a\u4eba\u5f00\u7740\u4e00\u8f86\u4fdd\u65f6\u6377\u3002"} +{"id": "0001135", "video_name": "13fa768a-6d14-594f-be9b-c62ba2a2631e", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u548c\u7537\u5b69\u7684\u516c\u4ea4\u8f66\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "0001136", "video_name": "140b393f-a358-55c1-8a31-912675480783", "text": "\u4e00\u4e2a\u96e8\u5929\uff0c\u4e00\u5bf9\u9ad8\u4e2d\u60c5\u4fa3\u8dd1\u56de\u6559\u5b66\u697c\u8eb2\u96e8\u3002"} +{"id": "0001137", "video_name": "140b5014-bb69-51c4-b9af-7db484dff5c0", "text": "YouTube\u9891\u9053\u7684\u89c6\u9891\u8bbe\u8ba1"} +{"id": "0001138", "video_name": "140c766e-2fd0-520a-88fc-c5bc49150183", "text": "2024\u5e74\u7535\u5f71\u573a\u666f\u4e2d\u5e03\u9c81\u65af\u00b7\u97e6\u6069\u5728\u65e9\u4e0a5\u70b9\u9192\u6765\u7684\u7535\u5f71\u5267\u7167\u3002"} +{"id": "0001139", "video_name": "140f8cf0-7ce5-5a15-920d-116dd5619efe", "text": "\u6c34\u4e2d\u7684\u68ad\u5b50\u9c7c\u8010\u5fc3\u5730\u7b49\u5f85\u7740\u9c7c\u513f\uff0c\u7136\u540e\u6355\u6349\u5c0f\u9c7c\u3002"} +{"id": "0001140", "video_name": "141eb2df-7940-5b0f-af86-46ed421b6369", "text": "\u5766\u514b\u5728\u5c4f\u5e55\u5185\u5916\u6eda\u52a8\u3002\n\nSource sentence: I am learning Chinese language."} +{"id": "0001141", "video_name": "1420bf97-f1fc-5000-ad23-e039090d7345", "text": "\u4e2d\u570b\u7684\u5bfa\u5edf\u64c1\u6709\u838a\u56b4\u795e\u79d8\u7684\u5916\u89c0\u3002"} +{"id": "0001142", "video_name": "144183d1-f35c-5dd4-9d44-cc4fda85a31d", "text": "\u5149\u8292\u8ff7\u5bab\u5728\u4ed6\u4eec\u8eab\u540e\u9ad8\u8038\uff0c\u795e\u79d8\u7684\u6df1\u5904\u9690\u85cf\u7740\u4ed6\u4eec\u514b\u670d\u7684\u6311\u6218\u3002"} +{"id": "0001143", "video_name": "144c0963-d6f7-50f8-8b8d-c5d02bdb8e8b", "text": "\u5e0c\u814a\u6218\u58eb\u624b\u6301\u4fe1\u4ef6\u51fa\u73b0\u5728\u7535\u5f71\u955c\u5934\u4e2d\u3002"} +{"id": "0001144", "video_name": "144e6006-5e33-5d88-be07-3228fbeb24bb", "text": "\u4ee5\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u955c\u5934\u5f00\u573a\uff0c\u5c55\u73b0\u51fa\u4e00\u4e2a\u7cbe\u81f4\u7684\u9999\u6c34\u74f6\u80cc\u666f\u4e0b\uff0c\u6de1\u6de1\u5730\u51fa\u73b0\u4e86\u201c\u9999\u6c1b\u5e7f\u573a\u201d\u54c1"} +{"id": "0001145", "video_name": "14554896-ab11-53cf-a714-5ba49c812c0a", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u6751\u6c11\u4eec\u6ce8\u610f\u5230\u5730\u9762\u4e0a\u51fa\u73b0\u4e86\u5fae\u5c0f\u7684\u5ae9\u82bd\u3002"} +{"id": "0001146", "video_name": "1459c25a-f0de-5870-9e6f-91494849a070", "text": "\u96f7\u53e4\u52d2\u65af\u56fd\u5bb6\u4f4d\u4e8e\u8d2b\u7620\u7684\u5c71\u8109\u5468\u56f4\uff0c\u8fd9\u4e2a\u56fd\u5bb6\u7684\u4eba\u6c11\u5bff\u547d\u957f\u3002"} +{"id": "0001147", "video_name": "145a83ce-cceb-56e7-a5fa-f21d6c1b3f55", "text": "\u5899\u4e0a\u957f\u6ee1\u4e86\u5f00\u88c2\u7684\u82b1\u6735\u3002"} +{"id": "0001148", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "\u5728\u7e41\u534e\u7684\u57ce\u5e02\u4e2d\u82e6\u82e6\u5bfb\u627e\u521b\u4f5c\u7075\u611f\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\uff0c\u611f\u5230\u8ff7\u5931\u548c\u4e0e\u827a\u672f\u7684\u70ed\u60c5"} +{"id": "0001149", "video_name": "145cfd59-ea46-5a3e-b932-4a07c72a9e3a", "text": "\u5728\u64cd\u573a\u4e0a\u9633\u5149\u660e\u5a9a\u7684\u65f6\u5019\uff0c\u4e00\u4e2a\u7537\u5b69\u5728\u73a9\u8db3\u7403\u3002"} +{"id": "0001150", "video_name": "145d78e1-569a-5e7d-9e66-ceda0c0e1db5", "text": "\u4e00\u4e2a\u975e\u5e38\u53ef\u7231\u548c\u5f00\u5fc3\u768421\u5c81\u5e74\u8f7b\u5973\u5b50\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\u548c\u9ad8\u5ea6\u5438\u5f15\u4eba\u7684\u897f\u5f0f\u88c5\u626e\u8d70\u5411\u5c4f\u5e55\u3002"} +{"id": "0001151", "video_name": "145d8c26-c3d2-53af-835b-3789ec33c435", "text": "\u4e00\u4e2a\u89c6\u89c9\u4e0a\u60ca\u4eba\u7684\u5f71\u50cf\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5145\u6ee1\u5148\u8fdb\u79d1\u6280\u548c\u4eba\u7c7b\u7684\u672a\u6765\u661f\u7403\u3002\u753b\u9762\u91c7\u7528\u5bbd\u5c4f21:9\u7684\u6bd4\u4f8b"} +{"id": "0001152", "video_name": "1461630b-9d82-546e-89a8-b177da33880f", "text": "\u4e00\u7247\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u68ee\u6797\uff0c\u4e00\u6761\u7f13\u7f13\u6d41\u6dcc\u7684\u6cb3\u6d41\u3002"} +{"id": "0001153", "video_name": "14645969-4407-506f-b23e-263b884debb7", "text": "\u672b\u65e5\u540e\u7684\u7f8e\u4e3d\u666f\u8272\uff0c\u65e5\u5149\u7167\u8000\uff0c\u4e00\u4e2a\u91d1\u53d1\u4fc4\u7f57\u65af\u7537\u4eba\u7a7f\u7740\u592a\u7a7a\u670d\u671d\u7740\u955c\u5934\u8d70\u6765\u3002\u975e"} +{"id": "0001154", "video_name": "1469d20d-9d54-5f42-b6f3-bad01774b309", "text": "\u4e00\u500b\u64c1\u6709\u5927\u800c\u9583\u720d\u7684\u773c\u775b\u548c\u9583\u4eae\u76ae\u819a\u7684\u5916\u661f\u4eba\uff0c\u5728\u4ed6\u7684\u592a\u7a7a\u8239\u8457\u9678\u5730\u7403\u6642\u9032"} +{"id": "0001155", "video_name": "146a9be6-cc65-554f-9029-421c4f056dbd", "text": "\u4e00\u4e2a\u6709\u4e91\u7684\u6751\u5e84\u3002\u6d88\u606f\uff1aPENDEJO\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0001156", "video_name": "146dab1b-2092-5d5d-a07e-b0f8df3ce025", "text": "\u7ef4\u591a\u5229\u4e9a\u7684\u79d8\u5bc6\u8d85\u6a21\u5728\u65f6\u4ee3\u5e7f\u573a\u8d70\u8def\u3002"} +{"id": "0001157", "video_name": "1478354f-108d-5a14-9896-34a214e07026", "text": "\u4ed6\u4eec\u9047\u5230\u4e86\u4e00\u4e2a\u9b54\u672f\u5e08\uff0c\u4ed6\u544a\u8bc9\u4ed6\u4eec\u5173\u4e8e\u4ed6\u76843D\u52a8\u753b\u573a\u666f\u7684\u4f19\u4f34\u3002"} +{"id": "0001158", "video_name": "147b4ced-5929-5071-b831-cf170de07083", "text": "\u7236\u4eb2\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u671b\u7740\u6211\u4eec\uff0c\u5728\u4e00\u95f4\u5149\u7ebf\u5fae\u5f31\u3001\u4ee4\u4eba\u5bb3\u6015\u7684\u5c0f\u623f\u95f4\u91cc\u8bf4\u8bdd\u3002"} +{"id": "0001159", "video_name": "147b7579-d610-56f8-b590-28d20a16b616", "text": "\u5728\u4e00\u5bb6\u9648\u65e7\u7684\u53e4\u8463\u5e97\u91cc\uff0c\u4e00\u4e2a\u7070\u5c18\u6ee1\u5e03\u7684\u97f3\u4e50\u76d2\u5df2\u7ecf\u88ab\u957f\u5e74\u653e\u7f6e\u672a\u88ab\u89e6\u78b0\u3002"} +{"id": "0001160", "video_name": "147d05c3-10fc-57cd-9e11-f7f4ca7ff251", "text": "\u5728\u51c9\u723d\u7684\u5317\u6781\u753b\u4e00\u53ea\u8c61\u9f3b\u6d77\u8c79\u3002"} +{"id": "0001161", "video_name": "147efbec-4f94-5aa5-82cb-82f8da6c2b4a", "text": "\u8fd9\u662f\u6211\u7b2c\u4e09\u6b21\u6b7b\u4ea1\u3002\u8fd9\u4e24\u5e74\u7ecf\u5386\u4e86\u8bb8\u591a\u51fa\u4e4e\u610f\u6599\u7684\u8f6c\u6298\uff0c\u6211\u7684\u601d\u7ef4\u56e0\u6b64\u800c\u521b\u9020\u4e86\u8bb8\u591a\u969c\u788d\u3002\u76f8"} +{"id": "0001162", "video_name": "147f56f9-a777-5167-a14b-f6046e2df49c", "text": "\u963f\u5179\u7279\u514b\u91d1\u5b57\u5854\u7684\u5efa\u9020\u65f6\u95f4\u95f4\u9694\u89c6\u9891\uff0c\u7531\u963f\u5179\u7279\u514b\u4eba\u4e00\u5757\u4e00\u5757\u7684\u77f3\u5934\u5efa\u9020\u3002"} +{"id": "0001163", "video_name": "14899dcb-0f98-5ee6-b320-17a9521e6a12", "text": "BTS\u5750\u5728\u6237\u5916\u684c\u5b50\u65c1\u73a9\u800d\u3002"} +{"id": "0001164", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "\u4e00\u4e2a\u7ea2\u8272\u793c\u76d2\uff0c\u80cc\u666f\u6709\u7ea2\u706f\u7b3c\u3001\u6625\u8054\u548c\u70df\u706b\uff0c\u8425\u9020\u51fa\u6625\u8282\u7684\u6c1b\u56f4\u3002\u793c\u76d2\u4e0a\u6709\u4e2d\u56fd"} +{"id": "0001165", "video_name": "14938434-bdd5-58cd-991e-1bb026e3ae7b", "text": "\u4eba\u7684\u89d2\u5ea6\u770b\u7ea2\u6749\u6811\u3002"} +{"id": "0001166", "video_name": "149dd958-73b4-5d57-a4a7-27455c139ab7", "text": "\u975e\u5e38\u6709\u8da3\u7684\u573a\u666f\uff0c\u7535\u5f71\u822c\u7684\u6444\u5f71\u8fd0\u52a8\u3002"} +{"id": "0001167", "video_name": "149fe68e-3a9c-50fa-99fd-725fc6821fde", "text": "\u4ece\u5730\u9762\u7684\u8f68\u9053\u5230\u5929\u7a7a\u4e2d\u7684\u822a\u7ebf"} +{"id": "0001168", "video_name": "14a62521-4e24-5265-a6c8-884005559a09", "text": "\u4f60\u662f\u5426\u66fe\u7ecf\u60f3\u8fc7\uff0c\u5982\u679c\u673a\u5668\u4eba\u53d6\u4ee3\u4e86\u6bcf\u4e2a\u884c\u4e1a\u4e2d\u7684\u4eba\u7c7b\u5de5\u4f5c\u8005\uff0c\u4e16\u754c\u5c06\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\uff1f"} +{"id": "0001169", "video_name": "14b09e55-e494-5361-ba53-0d8553dbf68a", "text": "\u4e00\u4e2a\u5c0f\u5b69\u5409\u4ed6\u82f1\u96c4\u5728\u5de8\u5927\u7684\u821e\u53f0\u4e0a\u4e0e\u706b\u5f62\u6587\u5b57\u3001\u706f\u5149\u3001\u96fe\u673a\u3001\u653e\u5927\u5668\u4e00\u8d77\u6f14\u51fa\uff0c\u524d\u9762\u7684\u6447\u6eda"} +{"id": "0001170", "video_name": "14b5f44b-4112-5b51-8eb7-4d0fe287658e", "text": "\u5212\u8239\uff0c\u6c34\u5fae\u5fae\u6d41\u52a8\uff0c\u5411\u5de6\u79fb\u52a8\uff0c\u6c34\u58a8\u753b\uff0c\u6728\u8239\uff0c\u80cc\u666f\u9759\u6b62\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "0001171", "video_name": "14b797c0-4434-5b59-b8a4-e82445081069", "text": "\u4e00\u4e2a\u7528\u6237\u6d4b\u8bd5\u5e73\u53f0\u5e76\u4e14\u8fdb\u884c\u6ce8\u518c"} +{"id": "0001172", "video_name": "14bae828-68b6-5ebc-b8d1-e2b569b604a1", "text": "\u53cd\u601d\u7684\u7075\u6027\u4e0d\u4ec5\u4ec5\u662f\u4f20\u9012\u7684\u4ee3\u7406\u4eba\uff0c\u5b83\u4eec\u4e5f\u662f\u5177\u6709\u8bb0\u5fc6\u6027\u683c\u7684\u4e2a\u4f53\u3002\u5b83\u4eec\u7684\u540e\u4ee3\uff0c\u7b2c\u4e8c\u7ea7\u667a\u7075"} +{"id": "0001173", "video_name": "14bb083b-8736-55ee-81ec-60f7f889c1f2", "text": "\u4e00\u4e2a\u5973\u5b69\uff0c\u60c5\u7eea\u6c79\u6d8c\uff0c\u601d\u7eea\u7ffb\u817e\uff0c\u8868\u60c5\u5f3a\u70c8\uff0c\u5934\u53d1\u51cc\u4e71\uff0c\u62f3\u5934\u7d27\u63e1\uff0c\u4e4c\u4e91"} +{"id": "0001174", "video_name": "14befd0c-270f-5589-9144-6c5b22e78796", "text": "\u9f99\u73e0Z\u98ce\u683c\u7684\u52a8\u6f2b\u6253\u6597"} +{"id": "0001175", "video_name": "14c1d79d-0de7-5386-a875-699d39b2e937", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u5b69\u5b50\u5728\u516c\u56ed\u91cc\u4e0e\u8bb8\u591a\u4eba\u8df3\u821e\u3002"} +{"id": "0001176", "video_name": "14c62eba-e385-5963-9642-1aa8bb73058c", "text": "\u4e00\u4e2a\u79bb\u5f00\u4e09\u7ef4\u7a7a\u95f4\u7684\u4eba\u3002"} +{"id": "0001177", "video_name": "14d09b0e-504d-57e4-b6aa-3cd8d9681db2", "text": "\u5236\u4f5c3D\u52a8\u753b\uff0c\u4e24\u53ea\u8001\u9f20\u548c\u9752\u86d9\u5728\u5403\u575a\u679c\u548c\u5976\u916a\u3002"} +{"id": "0001178", "video_name": "14d4690d-2b6d-5231-89a6-5ea93f7ba5e5", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u7684\u519c\u5bb6\u5973\u5b69"} +{"id": "0001179", "video_name": "14e30a94-2ad7-5103-9069-1ec0f58fa268", "text": "\u5728\u534a\u7a7a\u4e2d\u6f02\u6d6e\u7684\u8fa6\u516c\u5ba4\u88ab\u7d19\u5f35\u5305\u570d\u3002"} +{"id": "0001180", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "\u7537\u5b69\u548c\u5973\u5b69\u611f\u5230\u5bb3\u7f9e\uff0c\u8f15\u8f15\u5730\u5fae\u7b11\uff0c\u76f8\u6a5f\u7e2e\u653e\uff0c\u5fae\u98a8\u5439\u62c2\uff0c\u5716\u50cf\u4e2d\u7684\u7269\u9ad4"} +{"id": "0001181", "video_name": "14e8a690-504f-5199-a4d7-9d3f7733e48b", "text": "\u5973\u5b69\u5361\u901a\u4eba\u7269\uff0c\u9ec4\u8272\u5934\u53d1\uff0c\u82d7\u6761\u7684\u8eab\u6750\uff0c\u7eff\u8272\u7684\u773c\u775b\uff0c12\u5c81\uff0c\u80cc\u9762\u7167\u7247\u662f\u7eff\u8272\u7684\u3002"} +{"id": "0001182", "video_name": "14ed0916-fdf1-59ae-8bbf-26b094f78014", "text": "\u6234\u773c\u955c\u7684\u7537\u4eba\u5728 UFO \u98de\u8239\u4e2d\u3002"} +{"id": "0001183", "video_name": "14ed8bf3-1271-561e-8b26-b14a6122193b", "text": "\u4e00\u4e2a\u5973\u6027\u4ee5\u83ab\u5948\u7684\u98ce\u683c\u6e38\u6cf3\u3002"} +{"id": "0001184", "video_name": "14efeb8c-37cd-5a14-818e-00164b4ded4c", "text": "\u4e00\u4e2a\u7537\u4eba\u62b1\u7740\u4ed6\u7684\u80f8\u53e3\uff0c\u4e00\u6761\u6cb3\u6d41\u4ece\u4ed6\u7684\u5fc3\u4e2d\u6e17\u51fa\u3002\u5e7b\u60f3\u3002\u60f3\u8c61\u3002"} +{"id": "0001185", "video_name": "14f2a182-6250-5a82-9a9c-fb4fbca8ed06", "text": "\u4e09\u4f4d\u4e3b\u89d2 Trinity\u3001Morpheus \u548c Neo \u5165\u4fb5\u77e9\u9635\u3002"} +{"id": "0001186", "video_name": "14f39c51-77f4-5a98-9905-831b36266571", "text": "\u54c8\u5229\u6ce2\u7279\u5728\u96e8\u4e2d\u548c\u5fb7\u601d\u793c\u5bb6\u4eba\u4ea4\u8c08\uff0c\u624b\u62ff\u4e00\u628a\u4f1e\uff0c\u5176\u8f6e\u5ed3\u53d1\u51fa\u5fae\u5149\u3002"} +{"id": "0001187", "video_name": "14fd1971-a45d-5acb-b558-d740f95cdfec", "text": "\u6700\u5927\u7684\u884c\u52a8\uff0c\u7535\u5f71\u822c\u7684\uff0c\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4e2d\uff0c\u73b0\u5b9e\u548c\u6570\u5b57\u65e0\u7f1d\u5730\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002"} +{"id": "0001188", "video_name": "15062059-12d3-54dc-9e1c-f52e26235d85", "text": "\u4e00\u4e2a\u5973\u6218\u58eb\u7684\u7279\u5199\u753b\u9762\uff0c\u5728\u7eb5\u6a2a\u6bd49\uff1a16\u4e0b\u7f13\u6162\u7728\u773c\uff0c\u5411\u6444\u50cf\u673a\u9760\u8fd1\u3002"} +{"id": "0001189", "video_name": "150f80d4-19f2-5e1f-b72b-c92f811570ed", "text": "\u77ed\u52a8\u753b\u4ee5\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\uff0c\u63cf\u8ff0\u4e86\u4e00\u53ea\u732b\u5934\u9e70\u5750\u5728\u6c7d\u8f66\u9876\u4e0a\u5f00\u8f66\uff0c\u5b83\u56e0\u60ca\u6050\u800c\u7741\u5927\u4e86"} +{"id": "0001190", "video_name": "151117e5-8489-5725-ad8f-625ff80bb040", "text": "Translation: \u624b\u7d27\u63e1\u7740\u7ef3\u7d22\uff0c\u6c64\u59c6\u00b7\u514b\u9c81\u65af"} +{"id": "0001191", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "\u673a\u5668\u4eba\u5728\u5bc6\u6b47\u6839\u5927\u8857\u4e0a\u884c\u8fdb"} +{"id": "0001192", "video_name": "151c58b4-d1f8-58f5-b834-800f83bffc50", "text": "1870\u5e74\uff0c\u6cd5\u56fd\u70ae\u5175\u5411\u666e\u9c81\u58eb\u519b\u961f\u5f00\u706b\uff0c4K\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0001193", "video_name": "151dddab-6ddb-5a91-ad16-7796955c1adb", "text": "\u751f\u6210\u4ee4\u4eba\u60ca\u53f9\u548c\u5bcc\u6709\u60f3\u8c61\u529b\u7684\u666f\u89c2\uff0c\u5145\u6ee1\u6f02\u6d6e\u7684\u5c9b\u5c7f\u3001\u795e\u79d8\u7684\u751f\u7269\u3001\u8272\u5f69\u6591\u6593"} +{"id": "0001194", "video_name": "152eda01-aaba-53b9-a8e9-d592deec5961", "text": "\u7518\u9053\u592b\u4e0e\u6bd4\u5c14\u535a\u00b7\u5df4\u91d1\u65af\u4ea4\u8c08\uff0c\u7535\u5f71\u6162\u52a8\u4f5c\u7f29\u653e\uff0c\u4e91\u6735\u79fb\u52a8\uff0c\u660e\u4eae\u7684\u767d\u5929\uff0c\u7eff\u8272\u7684"} +{"id": "0001195", "video_name": "1539edf8-56f3-57e0-9408-00d4042c8050", "text": "\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b69\u88ab\u4e09\u4e2a\u670b\u53cb\u5305\u56f4\u7740\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728"} +{"id": "0001196", "video_name": "153b9044-8262-5dc4-8734-21987e437cf8", "text": "\u533a\u57df\u8fdb\u5165\u6218\u6597\uff0c4K\uff0c5\u5206\u949f\u3002"} +{"id": "0001197", "video_name": "153e3e53-c9cd-5439-8d9c-1394d7aee3de", "text": "1978\u5e74\u7684\u96e8\u4e2d\uff0c\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u8eb2\u5728\u540c\u4e00\u4e2a\u6a90\u4e0b\u907f\u96e8\uff0c\u5c55\u5f00\u4e86\u4e00\u573a\u53ef\u80fd\u6539\u53d8\u4ed6\u4eec\u4e00\u751f\u7684\u5bf9\u8bdd\u3002"} +{"id": "0001198", "video_name": "15409a44-75ec-5e78-8162-ac1c6cbd93e7", "text": "\u7535\u5f71\u7ea7\u76848k\u8db3\u7403\u573a\uff0c\u770b\u53f0\u4e0a\u7528\u9a6c\u8d5b\u514b\u5448\u73b0\u7403\u5458\u548c\u6b27\u6d32\u51a0\u519b\u8054\u8d5b\u5956\u676f\u3002\u4fe1\u606f\uff1aSPAINTRADER\uff08"} +{"id": "0001199", "video_name": "1541003f-2dad-5e1c-974f-d9b923cb3f28", "text": "\u4e00\u4f4d\u7a7f\u7740\u9713\u8679\u706f\u5916\u5957\u7684\u8bf4\u5531\u6b4c\u624b\u3002"} +{"id": "0001200", "video_name": "15436d03-2b7d-5fbb-ae8f-de9904365e68", "text": "\u5168\u666f\u955c\u5934\uff0c\u7537\u5b50\u5403\u85af\u7247\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "0001201", "video_name": "1554b6e8-7505-5d80-bd21-d215a77523f5", "text": "\u4eca\u5929\u4f60\u88ab\u6700\u591a\u4eba\u8981\u6c42\u7684\u4e8b\u60c5\u7684\u65f6\u95f4\u6d41\u901d"} +{"id": "0001202", "video_name": "155ab3ec-907f-56cd-8392-114f8ab6843e", "text": "\u6e29\u99a8\u5c0f\u5c4b\u5185\u90e8\u5e26\u58c1\u7089\u7684\u7535\u5f71\u822c\u80cc\u666f"} +{"id": "0001203", "video_name": "155b3a06-23e8-5c13-8856-16ff44502ed6", "text": "\u4e13\u4e1a\u6807\u5fd7\u4f7f\u7528B.M.L.\u4f5c\u4e3a\u9996\u5b57\u6bcd\u7f29\u5199\uff0c\u5168\u91d1\u8272\u5e76\u914d\u4ee5\u9ed1\u8272\u8fb9\u6846\u3002"} +{"id": "0001204", "video_name": "155cdf08-d9e4-52bd-ace5-6f6e23f8a778", "text": "\u4e00\u573a\u96f7\u66b4\u4e2d\u9f99\u5377\u98ce\u6467\u6bc1\u623f\u5c4b\u7684\u8fdc\u666f\u62cd\u6444\u3002"} +{"id": "0001205", "video_name": "15664392-2d7d-559a-a3a2-cc42879d3357", "text": "\u53ef\u7231\u7684\u5c0f\u732b\u54aa\uff0c\u5728\u96ea\u5730\u4e0a\u6084\u6084\u5730\u884c\u8d70\u3002 \n\nSource sentence: I will meet you at the coffee shop at noon. \n\u6211\u4f1a\u5728\u4e2d\u5348\u5728"} +{"id": "0001206", "video_name": "15680d1d-be34-5a43-a1a9-2136ab463b34", "text": "\u4e24\u4e2a\u77ed\u53d1\u7684\u767d\u4eba\u7537\u6027\uff0c\u7a7f\u7740\u5bbd\u677e\u7684\u725b\u4ed4\u88e4\u3001\u6dfb\u67cf\u6797\u9774\u548c\u68d2\u7403\u5939\u514b\uff0c\u7a7f\u8fc7"} +{"id": "0001207", "video_name": "157091be-2442-5e33-82fc-ffea86fa3b2a", "text": "\u4e00\u679a\u6697\u7eff\u8272\u7684\u5916\u661f\u4eba\u80da\u80ce\u88ab\u5305\u88f9\u5728\u4e00\u4e2a\u5f62\u72b6\u50cf\u8150\u70c2\u7684\u751c\u82f9\u679c\u4e00\u6837\u7684\u83cc\u4e1d\u4f53\u4e2d\uff0c\u8fd9"} +{"id": "0001208", "video_name": "15718ddd-c5d8-5d4e-91d1-0e125bb0035f", "text": "\u6050\u6016\u7537\u5b50\u5728\u591c\u665a\u62cd\u7167\u3002"} +{"id": "0001209", "video_name": "157628d3-b9ab-55c9-bb7c-900cc8593d16", "text": "\u539f\u5b50\u7c92\u5b50\u7684\u6765\u6e90\u4ece\u9ed1\u6697\u4e2d\u7684\u4e00\u4e2a\u5355\u4e00\u7684\u5149\u7ebf\u4e2d\u51fa\u73b0\uff0c\u5f53\u76f8\u673a\u653e\u5927\u65f6\uff0c\u7c92\u5b50\u4f1a\u8df3\u821e\u3002"} +{"id": "0001210", "video_name": "15779795-93e1-5dc2-9a14-87e204bd0dec", "text": "\u4eba\u4eec\u5728\u65e7\u91d1\u5c71\u5854\u6865\u7684\u8857\u5934\u8df3\u7535\u5b50\u821e\u66f2\uff0c\u591c\u5e55\u4e0b\uff0c\u7a7a\u4e2d\u4fef\u77b0\uff0c\u5982\u7535\u5f71\u822c\u58ee\u89c2\u3002"} +{"id": "0001211", "video_name": "15789525-f4b9-53cd-b7f3-6f57a70e339f", "text": "\u4e00\u4e2a\u7a7f\u7740\u8a79\u59c6\u65af\u90a6\u5fb7\u670d\u88c5\uff0c\u5728\u6c99\u6f20\u91cc\u884c\u8d70\u7684\u7537\u4eba\uff0c8K\u5206\u8fa8\u7387\uff0c\u5bf9\u7126\u53d8\u7126\u6444\u5f71\uff0c\u89d2\u8272\u770b"} +{"id": "0001212", "video_name": "157ce76e-ac9a-57a5-b220-c7457acdd5d4", "text": "\u4e00\u5bf9\u5e74\u8fc8\u592b\u5987\u5750\u5728\u5496\u5561\u4ead\u91cc\uff0c\u4e08\u592b\u5411\u59bb\u5b50\u503e\u659c\uff0c\u8bd5\u56fe\u8bf4\u4e9b\u4ec0\u4e48\u3002"} +{"id": "0001213", "video_name": "157d4612-4ffe-5ee2-9a25-8aa3daf438dc", "text": "\u52a8\u753b\u6587\u5b57\u3001\u52a8\u753b\u706b\u7130\u3001\u52a8\u753b\u5564\u9152\u6db2\u4f53\u3001\u52a8\u753b\u9762\u90e8\u3002"} +{"id": "0001214", "video_name": "158020da-ff10-5869-ba9c-ad64bfb08143", "text": "\u52a8\u753b\u89d2\u8272\u8fea\u58eb\u5c3c\u548c\u5510\u8001\u9e2d\u505a\u670b\u53cb\u3002"} +{"id": "0001215", "video_name": "1588aca9-3e1b-57b4-884b-420959d65bb5", "text": "\u67cf\u6797\u8857\u5934\u6df7\u4e71\uff0c\u5c31\u5728\u4e16\u754c\u672b\u65e5\u4e4b\u524d\uff0c\u6838\u751f\u5316\u6b66\u5668\u5c31\u8981\u88ad\u51fb\u67cf\u6797\uff0c\u4e00\u540d\u5e74\u8f7b\u7684\u8b66\u5bdf\u4e0e"} +{"id": "0001216", "video_name": "158b47d5-f46c-5417-9e70-f1d433e46f1a", "text": "\u91d1\u661f\u83b7\u5f97\u7687\u51a0\uff0c\u68a6\u60f3\u5728\u5979\u7684Qasr\u5f00\u59cb\u3002"} +{"id": "0001217", "video_name": "158c8e1c-b42d-543c-98fc-8f04e886f1d7", "text": "\u4e2d\u56fdSILACAR\u6c7d\u8f66\u5728\u7b26\u62c9\u8fea\u6c83\u65af\u6258\u514b\u7684\u4ef7\u683c\u6700\u4f18\u3002"} +{"id": "0001218", "video_name": "158c92ea-6a22-5fc0-ac67-f6eabec684c0", "text": "\u7535\u5b50\u670b\u514b\u72ee\u5b50\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c4K\uff0c\u4f4e\u89d2\u5ea6\u3002"} +{"id": "0001219", "video_name": "158e802e-eb39-5b36-91ff-3083cd35c213", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u4eba\u5728\u5927\u8857\u4e0a\u7528\u4ed6\u7684iPhone\u5de5\u4f5c\u3002"} +{"id": "0001220", "video_name": "158f6487-bb3f-5a78-a3a9-0ab1c210923e", "text": "\u987e\u5ba2\u8d70\u8fdb\u6c34\u7597\u4e2d\u5fc3\uff0c\u4f46\u662f\u684c\u5b50\u540e\u9762\u7684\u5de5\u4f5c\u4eba\u5458\u6ca1\u6709\u6ce8\u610f\u5230\u3002"} +{"id": "0001221", "video_name": "1598d42e-eee8-531a-8f38-0c1e458ddc50", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u7f16\u7ec7\u4e00\u4e2a\u770b\u8d77\u6765\u50cf\u97f3\u7b26\u7684\u73a9\u5076\uff0c\u7a33\u7a33\u5730\u5750\u5728\u4e00\u628a\u8212\u9002\u7684\u6905\u5b50\u4e0a\u3002"} +{"id": "0001222", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "\u5728\u843d\u65e5\u7684\u4f59\u6656\u4e0b\uff0c\u4e00\u4e9b\u8001\u4eba\u6b63\u5728\u7530\u91ce\u91cc\u6536\u5272\u7a3b\u8c37\u3002"} +{"id": "0001223", "video_name": "15a46b1d-36b1-5fab-8439-1baf8fdf7870", "text": "\u5973\u4eba\u88ab\u6d78\u5165\u9ed1\u6697\u795e\u79d8\u5b9e\u9a8c\u5ba4\u5185\u7684\u51b7\u6c34\u69fd\u4e2d\u3002"} +{"id": "0001224", "video_name": "15a4ac73-fe3e-5252-86f1-a8719ce51281", "text": "\u4e00\u4e2a\u53ef\u7231\u76843D\u52a8\u753b\u8001\u864e\u7a7f\u7740\u5723\u8bde\u88c5\uff0c\u62ff\u7740\u7206\u7c73\u82b1\u548c\u7535\u5f71\u7968\u3002"} +{"id": "0001225", "video_name": "15a76a73-2a1f-543a-b2f7-0d061b2ae385", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u718a\u732b\u5728\u68ee\u6797\u4e2d\u5fc3\u76843D\u76ae\u514b\u65af\u98ce\u683c\u56fe\u50cf\u3002"} +{"id": "0001226", "video_name": "15ace988-f49d-5016-b9bc-7fe4dc9215cf", "text": "\u4e00\u4e2a\u5c0f\u578b\u7684R2-D2\u673a\u5668\u4eba\u5728\u53e4\u4ee3\u5e9f\u589f\u4e2d\uff0c\u5468\u56f4\u6709\u5f88\u591a\u88ab\u6467\u6bc1\u7684\u673a\u5668\u4eba\uff0c\u5448\u8fea\u58eb\u5c3c\u98ce\u683c"} +{"id": "0001227", "video_name": "15b45765-8eef-5b77-903f-569b1e2e2213", "text": "\u4e00\u4e2a\u5728\u96e8\u5929\u7684\u53ef\u6015\u7684\u5927\u53a6"} +{"id": "0001228", "video_name": "15bbed11-cc0c-5629-9d4a-ae6ebf203290", "text": "\u4e00\u53ea\u72d0\u72f8\u4e3a\u4e86\u60ac\u6302\u7684\u8461\u8404\u800c\u8df3\u8dc3\u3002"} +{"id": "0001229", "video_name": "15bc1602-2803-5207-8ab4-7d1a5d7dba75", "text": "\u7a46\u5c14\u624e\u62dc\u00b7\u6c99\u5e03\u8fbe\u8bfa\u592b\u72ec\u81ea\u5728\u6c99\u6f20\u4e2d\u7b11\u3002"} +{"id": "0001230", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "\u955c\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\u5b50\u5f39\u7a7f\u8fc7\u7a7a\u6c14\uff0c\u7c7b\u4f3c\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u7684\u771f\u5b9e\u52a8\u4f5c\u7535\u5f71\u3002"} +{"id": "0001231", "video_name": "15c5b44f-9fdd-5b6f-adf1-86f0fdaa0510", "text": "\u4e00\u53ea\u9f20\u9e7f\u7ad9\u5728\u6cb3\u5cb8\u4e0a\uff0c\u80cc\u666f\u662f\u5f20\u5f00\u5634\u5df4\u7684\u9cc4\u9c7c\uff0c\u4f7f\u75283D\u52a8\u753b\u3002"} +{"id": "0001232", "video_name": "15cb7042-dadf-5944-a9a7-2edae5ad859d", "text": "\u4e00\u540d\u624b\u6301\u6b66\u58eb\u5200\u548c\u76f8\u673a\u7684\u6b66\u58eb\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c8K\u9ad8\u6e05\uff0c\u89c6\u89c9\u9707\u64bc\u7684\u5927\u7247\u3002"} +{"id": "0001233", "video_name": "15cd75be-994d-5b20-834b-956a5462f007", "text": "\u4e00\u8f86\u81ea\u884c\u8f66\u7a7f\u8fc7\u4e86\u4e00\u4e2a\u96a7\u9053\u3002"} +{"id": "0001234", "video_name": "15cfd4f6-f10f-5595-88c8-92b87935f499", "text": "\u7537\u4eba\u6253\u5f00\u4ed6\u7684\u623f\u5b50\uff0c\u9732\u51fa\u4e86\u5de8\u5927\u950b\u5229\u7684\u7259\u9f7f\uff0c\u7535\u5f71\u5f0f\u62cd\u6444\uff0c\u6444\u50cf\u673a\u5411\u53f3\u62cd\u6444\u3002"} +{"id": "0001235", "video_name": "15d42663-d337-5016-984d-f03d3b04f9cc", "text": "\u5728Escalade\u4e0a\u6cbf\u7740\u6ee8\u6d77\u5927\u9053\u9a91\u884c\u3002"} +{"id": "0001236", "video_name": "15d7813d-ad98-592b-9b0d-47921adb4fd4", "text": "\u514b\u91cc\u65af\u00b7\u8bfa\u5170\u9009\u7528\u4e86\u8389\u8389\u00b7\u8292\u65af\u7279\u548c\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u51fa\u6f14\u300a\u6076\u9b54\u57ce\u300b\u3002 \n\nSource sentence"} +{"id": "0001237", "video_name": "15d87bf3-76ba-5029-8be3-0026dc961c65", "text": "\u5e7b\u60f3\u98ce\u683c\u7684\u5c0f\u4e11\u9c7c\u5728\u591c\u8272\u6c6a\u6d0b\u4e2d\u6e38\u52a8\u3002"} +{"id": "0001238", "video_name": "15dbfda0-348c-521c-9e9a-e06e5b08b72f", "text": "\u4ed6\u662f\u4e00\u4e2a\u4e07\u4e8b\u4ff1\u5907\u7684\u82f1\u96c4\u3002"} +{"id": "0001239", "video_name": "15ee336a-622e-5852-a312-c5fe9af4ff78", "text": "\u5df4\u54e5\u7a7f\u7740\u51ac\u5b63\u5e7b\u60f3\u8863\u670d\uff0c\u5728\u9633\u5149\u660e\u5a9a\u7684\u96ea\u5730\u4e0a\u5fae\u7b11\u6563\u6b65\u3002"} +{"id": "0001240", "video_name": "15f10ac9-b1c4-5cf9-941c-b4e3d222c432", "text": "\u75b2\u60eb\u7684\u8fd0\u52a8\u5458\u6b63\u5728\u6bd4\u8d5b\u4e2d\u5954\u8dd1\u3002\u4fe1\u606f\uff1a\u6c38\u4e0d\u653e\u5f03\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09\u3002"} +{"id": "0001241", "video_name": "15f27bca-d8ff-5c9d-a96c-5a1d7aa2fe94", "text": "\u9ad8\u5206\u8fa8\u7387\u79d1\u5e7b8K\u7535\u5f71\u592a\u7a7a\u58eb\u5175\u88c5\u7532\u672a\u6765\u611f\u5341\u8db3\uff0c\u8272\u5f69\u9c9c\u8273\u7684\u62a4\u76ee\u955c\u5934\u76d4\u642d\u914d"} +{"id": "0001242", "video_name": "15f65b0b-032f-5ceb-b413-ae2713f4f266", "text": "20\u5c81\u7684\u6f02\u4eae\u5973\u5b69\u7ad9\u5728\u68a6\u5e7b\u4e16\u754c\u4e2d\u3002"} +{"id": "0001243", "video_name": "15f7e539-99f5-5eeb-8252-c24eafd177c4", "text": "\u5728\u8857\u4e0a\u5448\u73b0\u8718\u86db\u4fa0\u52a8\u6001"} +{"id": "0001244", "video_name": "15fd275a-ea23-59e6-a693-27930d2dd03c", "text": "\u5236\u4f5c\u89c6\u9891\u901a\u8bdd\u7684\u5973\u5b69"} +{"id": "0001245", "video_name": "1601457e-d33d-5a64-8feb-df568a5fcf6f", "text": "\u4e00\u53ea\u60b2\u4f24\u7684\u733f\u7334\u5750\u5728\u4e00\u4e2a\u7e41\u5fd9\u7684\u7ebd\u7ea6\u8857\u9053\u4e2d\u592e\uff0c\u5468\u56f4\u6709\u4eba\u6765\u4eba\u5f80\uff0c\u4ee5\u97e6\u65af"} +{"id": "0001246", "video_name": "1601e497-e8e4-5b09-8fd0-1975ca5f7d11", "text": "\u6709\u68ee\u6797\u80cc\u666f\u7684\u7fc5\u8180\u5316\u6210\u8774\u8776\u7684\u5927\u8c61\u3002AR 16:9"} +{"id": "0001247", "video_name": "160ccd58-4b97-5d35-ba6d-06d126b9373f", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u96f7\u4e91\u7684\u591c\u665a\uff0c\u6a59\u8272\u548c\u84dd\u8272\u7684\u8272\u8c03\uff0c\u5947\u602a\u7684\u4e8b\u60c5\uff0c\u4e00\u4e2a\u6234\u7740\u8033\u673a\u7ad9\u7740\u7684\u4eba\u3002"} +{"id": "0001248", "video_name": "160dda8a-351d-529e-9112-eb8bf36297b6", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u5929\u5802\u666f\u89c2\uff0c\u6709\u7740\u9ec4\u91d1\u5c71\u8109\u3001\u94bb\u77f3\u7011\u5e03\u548c\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u706b\u7130\u5929\u4f7f\uff0c\u65e0\u4eba\u673a"} +{"id": "0001249", "video_name": "1612d53a-e428-5a1b-81c5-eba73c9785e7", "text": "\u7537\u4eba\u8d70\u8fdb\u4e86\u4ed6\u81ea\u5df1\u7684\u5634\u91cc\u3002"} +{"id": "0001250", "video_name": "16151f92-75af-5688-b7a9-d73851716765", "text": "\u65e5\u672c\u7684\u5b66\u751f\n\u751f\u6d3b\u5e76\u5b66\u4e60"} +{"id": "0001251", "video_name": "1618e269-2a79-5ce0-bb79-cc2d30289a82", "text": "\u89c6\u9891\u903c\u771f\u7684\u81ea\u7136\u56fe\u50cf\uff0c\u68a6\u5e7b\u4e16\u754c\uff0c\u5f00\u5fc3\u8611\u83c7\uff0c\u7c89\u8272\u9ec4\u8272\u68a6\u5e7b\u3002"} +{"id": "0001252", "video_name": "162b9422-0247-5fec-bfe0-c42abbd94bb9", "text": "\u6811\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u6240\u6709\u5fc3\u7075\u90fd\u50cf\u98ce\u4e2d\u7684\u6811\u53f6\u4e00\u6837\u968f\u4e4b\u821e\u52a8\u3002"} +{"id": "0001253", "video_name": "162fd6aa-0143-5f34-b319-7aadd6946acc", "text": "\u4e09\u540d\u533b\u751f\u4e0e\u4e00\u540d\u75c5\u4eba\u4ea4\u8c08\u3002"} +{"id": "0001254", "video_name": "16330bbd-27ae-5340-a359-fc644ae97288", "text": "\u79fb\u52a8\u7684\u4e91\u5f69\uff0c\u6d77\u4e0a\u7684\u6c7d\u8f66\u548c\u8239\u53ea\u3002"} +{"id": "0001255", "video_name": "16342164-e261-5d7b-bf81-c479ed51040f", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8272\u98d8\u9038\u88d9\u5b50\u7684\u5973\u5b69\u5728\u591c\u7a7a\u4e0b\u7684\u7530\u91ce\u4e2d\uff0c\u548c\u4e00\u4f4d\u7a7f\u7740\u9ed1\u767d\u793c\u670d\u7684\u7537\u5b69\u4e00"} +{"id": "0001256", "video_name": "16384316-17ef-58b6-a9eb-cd2302f64898", "text": "\u5e74\u8f7b\u7684\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\uff0c\u53cc\u773c\u4f4e\u5782\u5730\u770b\u7740\u684c\u5b50\uff0c\u5199\u7740\u4e00\u5c01\u4fe1\uff0c\u624b\u548c\u5934\u5728\u52a8\uff0c"} +{"id": "0001257", "video_name": "1642e7f4-ad64-5744-a4b9-c9ea49a6e52b", "text": "\u7528\u7ea2\u5507\u818f\u6307\u7740TARDIS\u7684\u533b\u751f\u3002"} +{"id": "0001258", "video_name": "1644ddba-310c-5a51-bd47-cb4a8f83374a", "text": "\u4e00\u53ea\u8d85\u53ef\u7231\u7684\u84ec\u677e\u864e\u6591\u5c0f\u732b\u5750\u5728\u94a2\u7434\u4e0a\u7206\u70b8\u4e86\u3002"} +{"id": "0001259", "video_name": "164500fb-1099-535d-9e80-c57a9b722e1c", "text": "\u4e00\u6761\u975e\u5e38\u957f\u7684\u91d1\u5c5e\u7535\u7f06\uff0c\u5b8c\u5168\u7f20\u7ed5\u7740\u4e00\u4e2a\u9ea6\u514b\u98ce\u548c\u4e00\u4e2a\u5361\u5e26\u6536\u97f3\u673a\uff0c\u7956\u5148\u822c\u7684\u7075\u5f02\u6781"} +{"id": "0001260", "video_name": "16460475-cf47-561e-aaf0-2d5e49d62aca", "text": "\u4e00\u4e2a\u5e26\u7740\u67e0\u6aac\u548c\u67e0\u6aac\u6c34\u5012\u5165\u7f50\u5b50\u7684\u684c\u5b50\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "0001261", "video_name": "16528058-7340-5e58-8112-be2ca55161ff", "text": "\u51ac\u5929\u91cc\uff0c\u732b\u8eba\u5728\u5730\u4e0a\u6253\u96ea\u5929\u4f7f\uff0c\u770b\u8d77\u6765\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "0001262", "video_name": "165b807c-e269-5a6f-8cef-860c9a3628d9", "text": "\u90a3\u4e2a\u5728\u8d85\u73b0\u5b9e\u4e16\u754c\u91cc\u54ed\u6ce3\u7684\u7537\u4eba\u770b\u8d77\u6765\u50cf\u662f\u8d5b\u535a\u670b\u514b3\u3002"} +{"id": "0001263", "video_name": "165f9cc5-8911-59c1-aeb0-32220feae26a", "text": "\u5a74\u513f\u6c34\u736d\u7684\u5361\u901a\u753b\u7761\u5f97\u5b89\u8be6\u3002"} +{"id": "0001264", "video_name": "1665d73e-b16c-52fe-a293-670e8af928b0", "text": "\u5df4\u897f\u8d2b\u6c11\u7a9f\u5145\u6ee1\u751f\u673a\u7684\u80cc\u666f"} +{"id": "0001265", "video_name": "16699e1b-fde4-5858-b208-23229e4a455d", "text": "\u4e00\u53ea\u5154\u5b50\u548c\u5176\u4ed6\u52a8\u7269\u5750\u5728\u6df1\u6797\u91cc\u3002"} +{"id": "0001266", "video_name": "166d1cb2-1d9e-546b-ab6e-5cb7e6be8ad1", "text": "\u8fc7\u6e21\u5230\u5b81\u9759\u7684\u65e5\u843d\uff0c\u5f15\u51fa\u767d\u864e\u3002\u5f53\u5b83\u4f18\u96c5\u5730\u79fb\u52a8\u65f6\uff0c\u6811\u53f6\u53d8\u8272\u5e76\u843d\u4e0b\uff0c\u8c61\u5f81\u7740\u79cb\u5929\u7684"} +{"id": "0001267", "video_name": "16713714-ac8a-56f3-a4ee-259956ce2731", "text": "\u4f0a\u65af\u5170\u6559\u5973\u5b69\u5341\u5c81\u548c\u5979\u7684\u4f0a\u65af\u5170\u6559\u6bcd\u4eb2\u5728\u8def\u4e0a\u56de\u5bb6\u3002"} +{"id": "0001268", "video_name": "1677e4e0-fa6a-562b-b779-4e6d21616f0b", "text": "\u51ac\u5929\u7684\u665a\u4e0a\uff0c\u7a7a\u6c14\u53d8\u5f97\u5f88\u51b7\u3002"} +{"id": "0001269", "video_name": "167bc2df-20b5-5a3f-84ff-8023a5ea7e37", "text": "\u8ff7\u4f60\u9f99\u98de\u5411\u94f6\u6cb3\u65b9\u5411\u7684\u4e91\u5c42\u3002"} +{"id": "0001270", "video_name": "167f8b2f-0823-5601-9ce0-c437948c1b4b", "text": "\u8718\u86db\u4fa0\u517c\u804c\u62ab\u8428\u9001\u9910\u5458\u3002"} +{"id": "0001271", "video_name": "1682fa05-b781-589b-8af0-ac2bbf81458c", "text": "\u4e00\u9053\u5f69\u8679\u5347\u8d77\uff0c\u4e00\u53ea\u8774\u8776\u98de\u821e\u3002"} +{"id": "0001272", "video_name": "1685093f-bbfb-5a63-b0d2-c87802d42de0", "text": "\u8f66\u8f86\u5728\u4e00\u4e2a\u7d27\u6025\u7684\u9afb\u5f2f\u5904\u7a7f\u68ad\uff0c\u8f6e\u80ce\u53d1\u51fa\u5c16\u53eb\u58f0\uff0c\u5c18\u571f\u98de\u626c\uff0c\u5b83\u4eec\u4e0d\u65ad\u53d8\u6362\u4f4d\u7f6e"} +{"id": "0001273", "video_name": "168b49a0-b163-5b5a-ba79-8ab6aa2e452d", "text": "\u738b\u5b50\u770b\u5230\u6eaa\u6d41\u4e2d\u7684\u6c34\uff0c\u610f\u8bc6\u5230\u81ea\u5df1\u56e0\u53e3\u6e34\u800c\u53e3\u5e72\u820c\u71e5\u3002"} +{"id": "0001274", "video_name": "168c2d2b-d829-5f83-92d3-72abfbacf34d", "text": "\u6211\u7ec4\u5efa\u4e86\u6211\u7684\u516c\u4e3b\u56e2\uff0c\u4f60\u6253\u7b97\u600e\u4e48\u505a\uff1f"} +{"id": "0001275", "video_name": "168d743c-997b-553f-b0c6-2d1b7b8c9f4b", "text": "\u4e00\u4e2a\u4eba\u5728\u767d\u7eb8\u4e0a\u5199\u5b57\uff0c\u80cc\u666f\u4e2d\u6709\u4e00\u53f0\u663e\u793a\u8d22\u52a1\u56fe\u5f62\u7684\u7535\u8111\u3002"} +{"id": "0001276", "video_name": "168df806-1811-5b41-a5ab-96b652f85942", "text": "\u592a\u9633\u7099\u70e4\u5927\u5730\uff0c\u7194\u5316\u94c1\u3002"} +{"id": "0001277", "video_name": "1691c47b-07e8-57d7-819e-ec5579285cbc", "text": "\u4e00\u5ea7\u7b80\u5355\u4f46\u8212\u9002\u7684\u4e61\u6751\u5c0f\u5c4b\uff0c\u70df\u4ece\u70df\u56f1\u4e2d\u5347\u8d77\u3002"} +{"id": "0001278", "video_name": "16930e48-da32-5fac-a3ae-141f238f8df7", "text": "\u9a6c\u6258\u4eba\u7ad9\u5728\u9ad8\u697c\u7684\u5c4b\u9876\u4e0a\uff0c\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u3002"} +{"id": "0001279", "video_name": "1695cb0e-f466-5e0e-a63b-e7562c4a2283", "text": "\u5973\u7b97\u547d\u5e08\uff0c\u732b\uff0c\u9b54\u5e7b\u73af\u5883\u3002"} +{"id": "0001280", "video_name": "169a051f-5a44-5936-b97f-02977279068c", "text": "\u5e26\u6709\u6a59\u8272\u5927\u6c14\u5c42\u7684\u964c\u751f\u661f\u7403\u4e0a\u7684\u63a2\u7d22\u673a\u5668\u4eba\u3002"} +{"id": "0001281", "video_name": "169c4e95-2ac6-55dc-9e4f-f1d0720081f7", "text": "\u521b\u9020\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u573a\u666f\uff0c\u5c55\u793a\u9065\u8fdc\u661f\u7403\u6216\u7a7a\u95f4\u4e2d\u7684\u4eba\u7c7b\u6b96\u6c11\u5730\uff0c\u5c55\u793a\u5706\u9876\u7ed3\u6784\u3001\u5148\u8fdb\u7684\u751f\u547d\u652f\u6301\u7cfb\u7edf\u548c"} +{"id": "0001282", "video_name": "16a130b0-4954-5929-876c-42b266db1a90", "text": "\u63ed\u793a\u670b\u53cb\u795e\u79d8\u5730\u4ece\u522b\u5885\u6d88\u5931\u4e86\u3002"} +{"id": "0001283", "video_name": "16a2d081-3470-592e-8186-539b10939284", "text": "\u4e00\u4e2a\u91d1\u8272\u7684\u7334\u738b\uff0c\u5e1d\u56fd\uff0c\u53ef\u7231\u7684\u989c\u8272\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u7535\u5f71\u5316\u7684"} +{"id": "0001284", "video_name": "16a325cc-87a6-5241-ab65-3243f37aa123", "text": "\u94a2\u94c1\u4fa0\u4ee5\u65e7\u6f2b\u5a01\u7684\u98ce\u683c\u964d\u843d\u3002"} +{"id": "0001285", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "\u5f53\u82ad\u6bd4\u7b2c\u4e00\u6b21\u89c1\u5230\u5965\u672c\u6d77\u9ed8\u65f6\uff0c\u5206\u8fa8\u7387\u4e3a8K\uff0c\u6e05\u6670\u800c\u8be6\u7ec6\uff0c\u82ad\u6bd4\u4e16\u754c\u80cc\u666f\u4e2d\u6709\u6838\u7206\u70b8"} +{"id": "0001286", "video_name": "16a54282-f668-5ac9-99b9-a93cfe1ff443", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6751\u5e84\u91cc\u5954\u8dd1\uff0c\u80cc\u666f\u4e2d\u6709\u89c2\u770b\u7684\u4eba\u4eec\uff0c\u91c7\u7528\u52a8\u753b\u827a\u672f\u98ce\u683c\u3002"} +{"id": "0001287", "video_name": "16a7c829-2b12-5e34-98f4-0d76dc1f795a", "text": "\u94f6\u8272\u5170\u82b1\u6f02\u6d6e\u5728\u7a7a\u95f4\u91cc\uff0c\u767d\u8272\u661f\u661f\u73af\u7ed5\u7740\u7269\u4f53\uff0c\u5149\u4ece\u5de6\u5230\u53f3\u95ea\u8000\u3002"} +{"id": "0001288", "video_name": "16a852cf-00a1-599b-afaf-0f4f3a76e7cb", "text": "\u4e94\u591c\u540e\u7684\u5f17\u83b1\u8fea\u4f4d\u7f6e\uff0c\u5f17\u83b1\u8fea\u5728\u5176\u524d\u9762\u8df3\u821e\u3002"} +{"id": "0001289", "video_name": "16aaab53-f0c7-59d1-9d6e-89f7a2d5f85d", "text": "\u6444\u50cf\u673a\u7f29\u653e\uff0c\u975e\u5e38\u5feb\u901f\u8fd0\u52a8\uff0c\u884c\u661f\u5feb\u901f\u65cb\u8f6c\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u826f\u597d\u7684\u753b\u8d28\uff0c\u98ce\u5439\u5f97\u5f88\u5feb\u3002"} +{"id": "0001290", "video_name": "16bd3ea3-9b8e-5ae8-89c7-1047b9267389", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u5728\u516c\u56ed\u91cc\u3002"} +{"id": "0001291", "video_name": "16cfbf67-896a-5b06-a7a3-e6b69f58e954", "text": "\u5ea7\u5934\u9cb8\u8dc3\u8fc7\u5927\u6d0b"} +{"id": "0001292", "video_name": "16d1da26-0fad-559b-af8e-1d21f7ef21fd", "text": "\u4e00\u4e2a\u9ed1\u5ba2\u6b63\u5728\u4e00\u7247\u672b\u4e163D\u4e16\u754c\u4e2d\u884c\u8d70\u3002"} +{"id": "0001293", "video_name": "16d1eac0-9fe4-5b55-b7a4-34f13ef5a4ab", "text": "\u4e00\u4e2a\u4e66\u67b6\u4e0a\u6446\u6ee1\u4e86\u4e66\uff0c\u4e66\u4e0d\u505c\u5730\u8fdb\u51fa\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211"} +{"id": "0001294", "video_name": "16d819c8-cda1-5447-969c-4e6c63014cf4", "text": "\u53d1\u5c04\u65e0\u7ebf\u7535\u4fe1\u53f7\u6ce2\u7684\u98de\u673a"} +{"id": "0001295", "video_name": "16da1cc4-cf51-5958-b85a-d862b6ac3c30", "text": "\u81ea\u7136\u7684\u96e8\u6c34\u843d\u5728\u8349\u539f\u4e0a\u3002"} +{"id": "0001296", "video_name": "16dbb10d-f374-508b-ad09-36588b8ecaa7", "text": "\u4e92\u8054\u7f51\u7b80\u53f2\uff1a\u4ece1962\u5e74\u52302023\u5e74\u3002"} +{"id": "0001297", "video_name": "16dea3ba-a058-51a1-ab51-bb98f43c64e7", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u4e00\u4e2a\u5e74\u8f7b\u7684\u54e5\u7279\u5973\u5b69\u5750\u5728\u52a0\u6cb9\u7ad9\u5916\u5438\u70df\u3002\u8ba9\u5979\u770b\u8d77\u6765\u975e\u5e38\u6027\u611f"} +{"id": "0001298", "video_name": "16e3d2bc-61ce-5ac4-9c4f-27ac95069bc1", "text": "\u5df4\u585e\u7f57\u90a3\u6d77\u6ee9\u4e0a\u7684\u9152\u5e97 Vela\uff08W \u9152\u5e97\uff09\u6b63\u5728\u7740\u706b\u3002"} +{"id": "0001299", "video_name": "16e89e4e-e7d9-5ba4-b769-053707c73451", "text": "\u4e00\u53f0\u642d\u914d\u8d85\u903c\u771f\u672a\u6765\u611f\u76d4\u7532\u548c\u67aa\u68b0\u7684\u673a\u5668\u4eba\u6b63\u9762\u884c\u8d70\u4e8e\u4e2d\u592e\u3002 \n\nSource sentence: The restaurant is located on the corner of Main"} +{"id": "0001300", "video_name": "16f29389-2b72-5778-8a8d-d9dc0bea19f9", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u768416:9\u52a8\u753b\u6751\u6c11\u3002"} +{"id": "0001301", "video_name": "16f5d72e-b9cb-58f8-ba4e-b2b2fd284d7e", "text": "\u6765\u6e90\u53e5\u5b50\uff1a\u4ece2025\u5e74\u5f00\u59cb\uff0cUSB\u63d2\u5934\u5c06\u53d1\u51fa\u53d1\u5149\u7684LED\u548c\u9713\u8679\u706f\u989c\u8272\u3002"} +{"id": "0001302", "video_name": "16fb8b65-4ce3-5223-9512-0bf2ca78849b", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6d77\u9f9f\u5782\u76f4\u6e38\u6cf3\u7684\u955c\u5934\u5feb\u901f\u62c9\u8fdc\u3002"} +{"id": "0001303", "video_name": "1700589e-187e-59aa-aeb5-370ddf314ba4", "text": "\u519c\u573a\u6545\u4e8b\uff1a\u738b\u5b50\u548c\u4e94\u5f69\u5976\u725b"} +{"id": "0001304", "video_name": "1706a5ab-f3f7-5873-9def-d48a3639c5c7", "text": "\u5927\u578b\u8718\u86db\u5728\u4eba\u7761\u89c9\u7684\u65f6\u5019\u8d70\u8fdb\u53e3\u8154\uff0c\u8d85\u903c\u771f\u7684\uff0c\u653e\u5927\u89c6\u9891\uff0c\u6700\u9ad8\u8d28\u91cf\uff0c\u7535\u5f71\u822c\u7684\u89c6\u89c9"} +{"id": "0001305", "video_name": "1707eb5d-c7cb-56d6-a2d0-007349411aa8", "text": "\u5c0f\u72d7\u671d\u7740\u53a8\u623f\u98de\u5954\uff0c\u6447\u7740\u5c3e\u5df4\uff0c\u56e0\u4e3a\u4e3b\u4eba\u5728\u51c6\u5907\u4ed6\u7684\u65e9\u9910\u3002\u6211\u4eec\u770b\u5230Max\u5145\u6ee1"} +{"id": "0001306", "video_name": "1710a265-e4d8-504a-a289-b4b7a42a26ba", "text": "\u6500\u5ca9\u8005\u6ed1\u843d\u5c71\u5761\uff0c\u843d\u5728\u5c71\u8c37\u7684\u4e00\u7247\u8349\u5730\u4e0a\u3002"} +{"id": "0001307", "video_name": "1710f931-c6c2-5183-9b30-0d587d0b8e3a", "text": "\u4e00\u6bb5\u52a8\u753b\uff0c\u753b\u7684\u662f\u4e00\u4e2a\u5934\u53d1\u68d5\u8272\uff0c\u773c\u775b\u84dd\u8272\uff0c\u7a7f\u7740\u7ea2\u8272\u80cc\u5fc3\uff0c\u8138\u4e0a\u957f\u4e86\u5f88\u591a\u75d8\u75d8"} +{"id": "0001308", "video_name": "1711f798-1160-5d12-8557-96b73f20b497", "text": "\u5de8\u5927\u5012\u7f6e\u7684\u5341\u5b57\u67b6\u666f\u89c2\uff0c\u5409\u683c\u5c14\uff0c\u6d1b\u592b\u514b\u62c9\u592b\u7279\u3002"} +{"id": "0001309", "video_name": "17123a2b-391e-5615-92c1-c4d8f16c5bb4", "text": "\u7528\u611f\u6027\u7684\u6e29\u67d4\u7b14\u89e6\u8d4b\u4e88\u89d2\u8272\u751f\u547d\uff0c\u547c\u5438\u7075\u9b42\u4e8e\u4ed6\u4eec\u7684\u8868\u60c5\u3002\u6bcf\u4e00\u4e2a\u50cf\u7d20\u90fd\u5e94\u8be5\u56de\u5e94\u7740\u4e00\u9996"} +{"id": "0001310", "video_name": "171380e5-bbff-590b-aeb1-2e4bc4adf7c5", "text": "\u5728\u98ce\u666f\u5982\u753b\u7684\u79d8\u5bc6\u6751\u5e84\u91cc\uff0c\u5b83\u5750\u843d\u4e8e\u8fde\u7ef5\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272"} +{"id": "0001311", "video_name": "171743d6-6897-53c5-937f-a6e242e7d35a", "text": "\u6a21\u677f\u62ab\u8428\u3001\u4e09\u660e\u6cbb\u3001\u6c49\u5821\u3001\u610f\u5927\u5229\u9762\u3001\u901a\u5fc3\u7c89\u3001\u5730\u94c1\u3001\u85af\u6761\u3001\u53ef\u4e50\u996e\u6599\u90fd\u5728\u684c\u5b50\u4e0a\uff0c"} +{"id": "0001312", "video_name": "171a2a3e-7631-50be-b578-cceba3a5c143", "text": "\u4e92\u76f8\u652f\u6301\u7684\u7fa4\u4f53"} +{"id": "0001313", "video_name": "171c7360-9704-58fa-98f0-0d8911277e8c", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u5728\u4ed6\u7684\u68ee\u6797\u91cc\u8d70\u7740\uff0c\u4ed6\u88ab\u8ff7\u4f4f\u4e86\uff0c\u558a\u9053\uff1a\u201c4K\u201d\u3002"} +{"id": "0001314", "video_name": "1722b7d1-15fd-5130-a94b-e7241d1bb632", "text": "\u5929\u7a7a\u4e2d\u7684\u4e91\u6735\u5728\u4e00\u6761\u8def\u7684\u4e0a\u65b9\u3002\u4fe1\u606f\uff1a\u8981\u53cb\u597d\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "0001315", "video_name": "1725c6b7-067a-5fde-b3b1-20058f9e7f73", "text": "\u4e00\u4f4d\u4e2d\u56fd\u5973\u58eb\u5728\u65e9\u6668\u6cbf\u7740\u6d77\u5cb8\u7ebf\u8dd1\u6b65\u3002"} +{"id": "0001316", "video_name": "17262d50-d55a-5dc6-85a8-ed3a2b91bcf6", "text": "\u5b87\u5b99\u4e2d\u6f02\u6d6e\u7740\u4e0d\u540c\u989c\u8272\u7684\u6052\u661f\uff0c\u5168\u9ad8\u6e05\u30014K\u90fd\u65e0\u6240\u4e0d\u5728\uff0c\u9668\u77f3\u4e5f\u5728\u7ecf\u8fc7\u3002"} +{"id": "0001317", "video_name": "1728f222-8eff-5512-9ded-d99843a8e6cd", "text": "\u4e00\u4e2a\u7537\u4eba\u7684\u8f6e\u5ed3\uff0c\u76ae\u80a4\u989c\u8272\u662f\u5f69\u8679\uff0c\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\uff0c\u80cc\u666f\u662f\u4e0d\u540c\u7684\u884c\u661f\u548c\u661f\u7cfb\u3002"} +{"id": "0001318", "video_name": "172b82b0-c511-564f-8bf6-f42351d320aa", "text": "Shadowman\u7559\u4e0b\u4e00\u7cfb\u5217\u795e\u79d8\u4fe1\u606f\u7684\u8e2a\u8ff9\u3002\u60f3\u8c61\u4e00\u4e2a\u660f\u6697\u7684\u57ce\u5e02\u666f\u89c2\uff0c\u6709\u7740\u6726\u80e7\u7684\u5c0f\u5df7\u548c\u9ad8\u5927\u7684"} +{"id": "0001319", "video_name": "172c8e80-5196-5319-8140-906be6a1171c", "text": "\u4e00\u4f4d\u975e\u6d32\u7403\u5458\u7a7f\u7740\u5168\u5957\u6b27\u6d32\u7403\u8863\u6446\u51fa\u9020\u578b\uff0c\u5c55\u793a\u65b0\u8d5b\u5b63\u8bbe\u8ba1\u5de5\u4f5c\u5ba4\u7684\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "0001320", "video_name": "17336bcd-21aa-5feb-9da4-36e7d9073d90", "text": "\u53f2\u8482\u592b\u4ee5\u707f\u70c2\u7684\u5fae\u7b11\u5f00\u59cb\u4e86\u4ed6\u7684\u4e00\u5929\u3002\u4ed6\u671b\u7740\u7a97\u5916\uff0c\u51dd\u89c6\u7740\u8ff7\u4eba\u7684\u68ee\u6797\u3002"} +{"id": "0001321", "video_name": "173668d4-d4ea-5c09-ad3a-d5662973f8bd", "text": "\u6cd5\u56fd\u77ed\u6bdb\u732b\u548c\u82f1\u56fd\u77ed\u6bdb\u732b\u7684\u6218\u6597"} +{"id": "0001322", "video_name": "17398f46-db3b-5ea2-8def-33ef5614870a", "text": "\u865a\u5e7b\u5f15\u64ce5\u6e38\u620f\u753b\u9762\uff0c\u5c55\u793a\u4e8611\u4e16\u7eaa\u5df4\u683c\u62c9\u63d0\u5fb7\u4e9a\u7f8e\u5c3c\u4e9a\u7684\u5b89\u5c3c\u57ce\uff0c\u7a7f\u8d8a\u7e41"} +{"id": "0001323", "video_name": "173e7e0e-8fc6-5e04-90bd-9c3938f59847", "text": "\u888b\u9f20\u5728\u9ad8\u6863\u665a\u5bb4\u4e0a\u3002 \n\nSource sentence: The sun is shining brightly on the beach. \n\n\u592a\u9633\u5728\u6d77\u6ee9\u4e0a\u7167\u8000\u660e\u4eae\u3002"} +{"id": "0001324", "video_name": "174276da-6152-5c89-b828-ead7eaa11895", "text": "21\u5c81\u7684\u5973\u7a7a\u4e58\uff0c\u767d\u8272\u80cc\u666f\u4e0b1.3\u7684\u8eab\u9ad8\uff0c1.2\u7684\u4e0a\u534a\u8eab\u5927\u5c0f\uff0c\u6b21\u8868\u9762\u6563\u5c04\uff0c\u5fae\u7b11\u7740\uff0c\u5934\u53d1\u76d8\u6210"} +{"id": "0001325", "video_name": "174361a0-f927-5be0-b810-ccc3158c1359", "text": "\u610f\u5927\u5229\u5317\u90e81943\u5e74\u4e00\u540d\u5973\u5b50\u72ec\u81ea\u6b65\u884c\u5728\u4e61\u95f4\u5c0f\u8def\u4e0a\uff0c\u7c73\u54c8\u5c14\u00b7\u7d22\u63d0\u9c81\u514b\u7528\u6c34\u5f69\u548c\u94a2\u7b14\u7ed8\u5236\u7684"} +{"id": "0001326", "video_name": "174dd8ad-5dac-5bb0-934b-d40489673638", "text": "\u5e9f\u5f03\u57ce\u5e02\u88ab\u65e0\u4eba\u673a\u548c\u673a\u5668\u4eba\u63a5\u7ba1\u7684\u4e16\u754c\u672b\u65e5\u573a\u666f\uff0c\u6781\u4e3a\u8be6\u7ec6\u548c\u903c\u771f\u3002\u4fe1\u606f\uff1a\u706d\u7edd\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3"} +{"id": "0001327", "video_name": "174fbc50-e6e1-5730-8383-c993dbc7c702", "text": "Rohan\u542c\u5230\u8fd9\u4e2a\u6d88\u606f\u975e\u5e38\u9ad8\u5174\uff0c\u5f00\u59cb\u8ddf\u7740\u4ed6\u8d70\u3002"} +{"id": "0001328", "video_name": "17506010-710e-51d5-9c0d-bac6f107d676", "text": "\u8fd9\u662f\u95ea\u8000\u7684\u5e93\u5e03\u91cc\u514b\u573a\u666f\uff0c\u5b83\u662f9:16\u7684AR\u683c\u5f0f\u3002"} +{"id": "0001329", "video_name": "1751d290-ec55-51b8-9460-199b390ce765", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u6b63\u5728\u5145\u7535\u7684\u7535\u52a8\u8f66\u7684\u89c6\u9891\u3002"} +{"id": "0001330", "video_name": "175d3f7a-2548-56ee-b50d-3934793cab32", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u793e\u533a\uff0c\u623f\u5c4b\u6392\u5217\u5728\u8857\u9053\u4e24\u4fa7\u3002\u4f4f\u5728\u8fd9\u91cc\u7684\u662f\u4e00\u4e2a\u540d\u53eb\u9a6c\u514b\u65af\u7684\u5e74\u8f7b\u7537\u5b69\u3002"} +{"id": "0001331", "video_name": "176ab26d-b89d-5778-8430-5243353a4ccb", "text": "\u60c5\u4fa3\u5728\u65e5\u843d\u65f6\u5206\u6cbf\u7740\u6d77\u6ee9\u6563\u6b65\u3002"} +{"id": "0001332", "video_name": "176ad6c4-1662-5e11-b8a2-7cfb24e32d62", "text": "\u5370\u5ea6\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u4e0a\u7684\u5361\u4f0a\u62c9\u4ec0\u5c71\u4e0a\u6709\u4e00\u5e45\u56fe\u50cf\u3002"} +{"id": "0001333", "video_name": "176b3ae1-48ce-5704-8296-f1e7616c211d", "text": "\u9ad8\u6069\u5e03\u62c9\u5c3c\uff0c\u4e00\u4e2a\u5145\u6ee1\u8272\u5f69\u7684\u5370\u5ea6\u6751\u5e84\uff0c\u62e5\u6709\u8302\u5bc6\u7684\u7eff\u8272\u666f\u89c2\u548c\u591a\u5f69\u7684\u623f\u5c4b\u3002\n\u5e74"} +{"id": "0001334", "video_name": "1779f47d-9674-5e8b-8f98-2e05b370d411", "text": "\u4e24\u540d\u6b66\u672f\u5bb6\u57284K\u6708\u591c\u4e2d\u640f\u6597\u3002"} +{"id": "0001335", "video_name": "177ae7bc-bdd4-5c43-8f8f-228d0675cdce", "text": "\u5927\u57ce\u5e02\u4e2d\u7684\u96e8\u4e2d\u6c7d\u8f66"} +{"id": "0001336", "video_name": "17802735-4e09-503a-9ec4-ae743ff59410", "text": "\u7ea2\u7403\u88ab\u6c34\u6253\u4e2d\u5e76\u649e\u7834\u4e86\u955c\u5b50\u3002"} +{"id": "0001337", "video_name": "17862e41-33c1-53ef-8fc1-0e0f5643fd36", "text": "\u53d7\u4f24\u6d41\u8840\u7684\u6258\u5c3c\u00b7\u65af\u5854\u514b\u770b\u5230\u5f7c\u5f97\u00b7\u5e15\u514b\u62b1\u7740\u4ed6\u7684\u5973\u513f\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "0001338", "video_name": "178a0742-0449-5299-a67f-a653a97b04bd", "text": "\u624b\u63d0\u9ad8\u7ea7\u65f6\u5c1a\u5305\u91cc\u5192\u51fa\u4e86\u82b1\u6735\uff0c\u767d\u8272\u80cc\u666f\uff0c\u706f\u5149\u6444\u5f71\u3002"} +{"id": "0001339", "video_name": "178a82d5-07db-5e79-9543-055d1da934d2", "text": "\u51ac\u65e5\u96c5\u5c14\u8fbe\uff0c\u96ea\u82b1\u3001\u897f\u74dc\u548c\u77f3\u69b4\u3002"} +{"id": "0001340", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "\u9152\u5e97\u7ecf\u7406\u548c\u5458\u5de5\u4ea4\u8c08\uff0c\u9152\u5e97\u80cc\u666f\u8bbe\u7f6e\uff0c\u903c\u771f\u3002"} +{"id": "0001341", "video_name": "1791468f-e4be-5dbd-8519-33cd2e8d9ea8", "text": "\u5728\u5f97\u5230\u8bb8\u591a\u7269\u54c1\u540e\u4ece\u9152\u5e97\u8dd1\u51fa\u6765\uff0c\u5728\u8d85\u73b0\u5b9e\u7684\u591c\u95f4\u96e8\u4e2d\uff0c90\u5e74\u4ee3\u3002 \n\nSource sentence: The cat is sleeping on the couch by the window.\n"} +{"id": "0001342", "video_name": "179527b1-36a5-5053-afa8-426cb09c2ddd", "text": "\u7b2c\u4e00\u9897\u95ea\u8000\u77f3\u663e\u9732\u51fa\u6765\uff0c\u6563\u53d1\u51fa\u67d4\u548c\u7684\u5149\u8292\u3002"} +{"id": "0001343", "video_name": "179a07e2-c08a-543c-a4bb-0b42833d993a", "text": "\u5929\u82b1\u677f\u4e0a\u7684\u82b1\u9970\uff0c\u5b57\u6bcd\u5448\u5706\u5f62\u6392\u5217\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002\u4fe1\u606f\uff1a\u53cd\u53db\u73ab\u7470\uff08\u5b57\u4f53\uff1a\u5305\u8c6a"} +{"id": "0001344", "video_name": "179c188a-03a7-57e7-bbff-03a57b66991f", "text": "\u83f2\u5229\u514b\u65af\u72d0\u72f8\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u8fd1\u9edb\u897f\u72d7\u72d7\uff0c\u4e00\u53ea\u6bdb\u8338\u8338\u7684\u91d1\u6bdb\u730e"} +{"id": "0001345", "video_name": "179e5976-ecfb-5dd4-9e99-1959bd1aaa60", "text": "\u4e00\u7247\u5e7f\u9614\u795e\u8bdd\u822c\u7684\u6218\u573a\u6a2a\u8de8\u5929\u9645\u3002\u9ed1\u6697\u7684\u66b4\u98ce\u4e91\u5728\u5934\u9876\u4e0a\u76d8\u65cb\uff0c\u6295\u4e0b\u8be1\u5f02\u3001\u4e0d"} +{"id": "0001346", "video_name": "179ef0ce-7c83-5e26-b1f3-42d567f16efb", "text": "3D\u52a8\u753b\uff0c\u4e00\u4e2a\u5305\u542b\u201cIrongmara\u5b66\u6821\u201d\u5b57\u6837\u7684\u903c\u771f\u7684\u6a2a\u5e45\u5728\u5b66\u6821\u524d\u9762\u3002"} +{"id": "0001347", "video_name": "17a124b9-4515-5825-a8cc-23dd27797220", "text": "\u88ab\u96fe\u7b3c\u7f69\u7684\u4e2d\u4e1c\u57ce\u5e02\u906d\u7834\u574f"} +{"id": "0001348", "video_name": "17ada198-97b9-54fb-8fcb-1896341a51f5", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u548c\u5979\u7684\u670b\u53cb\u4eec\u4ea4\u8c08\u3002"} +{"id": "0001349", "video_name": "17b1cff7-dc74-5237-acc8-f9a5543ce21c", "text": "\u4e00\u4f4d\u4e2d\u5e74\u7684\u4e2d\u4e16\u7eaa\u5973\u738b\uff0c\u5728\u5979\u7684\u738b\u5ea7\u4e0a\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "0001350", "video_name": "17b9c475-03e0-5467-a513-0af3c7c2a6b6", "text": "\u4e00\u4e2a\u7537\u4eba\u9a91\u7740\u9a6c\u89c2\u770b\u4e00\u4e2a\u5973\u5b69\u6f14\u594f\u4e8c\u80e1\u3002"} +{"id": "0001351", "video_name": "17bbf78e-33bc-56f9-9af3-2568c1bd85f0", "text": "\u57ce\u5e02\uff0c\u7167\u660e\uff0c\u6865\u6881\uff0c\u96e8\uff0c\u98ce\uff0c\u4e91\uff0c\u4eba\u6d41\uff0c\u4eba\u7fa4"} +{"id": "0001352", "video_name": "17bd3885-5d8e-52ed-bd72-cfd0714f53a8", "text": "\u5c06\u6570\u5b57\u4fdd\u5b58\u5728\u50cf\u56fe\u793a\u89e3\u91ca\u4e2d\u4e00\u6837\u7684\u76d2\u5b50\u4e2d\u3002"} +{"id": "0001353", "video_name": "17be1dc7-744e-55c7-b3b4-8ba3efa44e49", "text": "\u521b\u9020\u4e00\u4e2a\u5f62\u8c61\uff0cKaida\u548cAslan\u5728\u9a84\u50b2\u77f3\u4e0a\u5411\u5217\u5965\u5c3c\u8fbe\u65af\u56fd\u738b\u5c55\u793a\u4ed6\u4eec\u5404\u81ea\u7684\u4ef7\u503c\u7b26\u53f7\u3002"} +{"id": "0001354", "video_name": "17bf29a1-0fb1-5866-8a75-109d7ffc3780", "text": "\u73b0\u5b9e\u8b66\u5bdf\u4e00\u4eba\u79f0\u5c04\u51fb\u6e38\u620f\u7684\u753b\u9762\uff0c\u7c7b\u4f3c\u4e8eSteam\u4e0a\u7684\u300aReady or Not\u300b\u3002\u8bf7\u4fee\u6b63\u62fc\u5199\u9519\u8bef\u3002"} +{"id": "0001355", "video_name": "17bf49d5-b06c-5d64-b4bf-aef1b5eb3d56", "text": "\u51ac\u5b63\u96fe\u5929\u91cc\u5ba2\u5385\u91cc\u7684\u6050\u6016\u623f\u5c4b\uff0c\u573a\u666f\u6050\u6016\u3002"} +{"id": "0001356", "video_name": "17bf9011-e6fc-5bbb-abe2-e356518ecb46", "text": "\u9a6c\u53ef\u00b7\u5965\u52d2\u7559\u5728\u53c2\u8bae\u9662\u524d\u8bb2\u8bdd\u3002"} +{"id": "0001357", "video_name": "17c5a63b-1e29-5e22-b66d-1a9a7962d22c", "text": "\u592a\u9633\u7cfb\u7684\u8f68\u9053\u9769\u547d\u3002"} +{"id": "0001358", "video_name": "17e19e45-a914-58cf-b169-032cbfc8e61c", "text": "\u96c5\u5179\u5fb7\u5e02\u7684\u96e8\u5929\uff0c\u4f0a\u6717\u3002"} +{"id": "0001359", "video_name": "17e3ab20-8579-51cd-8275-b50606e0ea05", "text": "\u5236\u4f5c\u8d5a\u94b1TikTok\u7684\u89c6\u9891\uff0c\u6765\u81ea\u4e00\u4e2a\u7537\u4eba\u8bb2\u8bdd\u5e76\u63d0\u4f9b\u8d22\u52a1\u5efa\u8bae\u3002"} +{"id": "0001360", "video_name": "17e78249-fa7e-5170-9b08-252b8828f0f7", "text": "\u8c22\u5c14\u66fc\u8bc1\u5238\u7684\u80a1\u7968\u7ecf\u7eaa\u6807\u5fd7"} +{"id": "0001361", "video_name": "17e86509-f6e1-57fc-8cec-1edde1bbbecc", "text": "\u672a\u6765\u4e3b\u4e49\u8fea\u62dc\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u9ed1\u6697\u3001\u96fe\u6c14\u7f2d\u7ed5\uff0c64K\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "0001362", "video_name": "17eaad9c-1638-5eff-8b63-c2454bb25b17", "text": "\u53ef\u7231\u7684\u52a8\u6f2b\u7537\u5b69\u548c\u5973\u5b69\u76f8\u7231\u4e86\u3002"} +{"id": "0001363", "video_name": "17eb2a36-1957-548b-8e6a-910332247a9c", "text": "\u6258\u5c3c\u00b7\u65af\u5854\u514b\u7ad9\u5728\u821e\u53f0\u4e0a\u5411\u8bb8\u591a\u4eba\u505a\u6f14\u8bb2\u3002"} +{"id": "0001364", "video_name": "17f16156-ad73-55c8-ad7c-da186f652a05", "text": "\u4e00\u53ea\u52a8\u753b\u9ca8\u9c7c\u8df3\u8fdb\u4e86\u4e00\u8258\u5c0f\u6728\u8239\u3002"} +{"id": "0001365", "video_name": "17f31371-81c2-573b-89b8-2a30dbfd157c", "text": "\u5728\u8def\u9014\u4e2d\uff0c\u5979\u9047\u5230\u4e86\u50cf\u667a\u6167\u7cbe\u7075\u3001\u987d\u76ae\u5c0f\u5996\u7cbe\u548c\u9ad8\u8d35\u9f99\u8fd9\u6837\u7684\u5947\u5e7b\u751f\u7269\u3002\n\nSource sentence"} +{"id": "0001366", "video_name": "17f9f982-4b6c-5e97-8079-62d6f25adca2", "text": "\u5723\u8bde\u8282\u5feb\u4e50\u7684\u732b\u8df3\u821e\u7684\u52a8\u6001GIF\u56fe\u3002"} +{"id": "0001367", "video_name": "17facaaf-72cc-5166-860e-2c4ef2829e5e", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u56fd\u9f99\u5e74\u96c6\u5e02"} +{"id": "0001368", "video_name": "17fb7eff-8edf-502d-ad16-0b1b594340c1", "text": "Kris\u7ad9\u5728\u4e00\u5f20\u5c0f\u9910\u684c\u7684\u672b\u7aef\u3002"} +{"id": "0001369", "video_name": "18027ea9-6cf2-5e8b-97a5-63cbf05f480c", "text": "\u4e00\u79cd\u5236\u9020\u4eba\u7c7b\u7684\u673a\u5668\uff0c\u9ad8\u79d1\u6280\uff0c\u53ef\u4ee5\u5728\u78c1\u5e26\u4e0a\u5236\u9020\u4eba\u7c7b\u7684\u5de5\u5382\u3002\u9ad8\u54c1\u8d28\uff0c8K\u3002\u4e07\u5723\u8282\u706f\u5149\u3002"} +{"id": "0001370", "video_name": "1808531b-c673-5e1b-97cb-2d3f0f30e2cb", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b69\u60b2\u4f24\u5730\u5173\u4e0a\u4e00\u6247\u8c6a\u534e\u522b\u5885\u7684\u95e8\u3002"} +{"id": "0001371", "video_name": "180b96fc-5343-5b27-b861-0f067bea5ee0", "text": "\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u5929\u4f7f\uff0c\u5e7b\u60f3\u7684\u5f62\u8c61\u3002"} +{"id": "0001372", "video_name": "180ce823-50c7-5522-8955-c22c557dfdb8", "text": "\u590d\u53e4\u3001\u5973\u5b69\u3001\u4e66\u3001\u9605\u8bfb\u3001\u57ce\u5e02\u30011970\u5e74\u4ee3 \n\nSource sentence: Can you recommend a good restaurant nearby? \n\u8bf7\u95ee\u60a8\u80fd\u63a8\u8350\u9644\u8fd1\u6709\u597d\u7684\u9910"} +{"id": "0001373", "video_name": "181fb99d-5c42-5bc4-8e24-6f0e3fffd91f", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u975e\u6d32\u6751\u5e84\uff0c\u4eba\u4eec\u5728\u5468\u56f4\u8d70\u52a8\uff0c\u6ca1\u6709\u52a8\u7269\u3002"} +{"id": "0001374", "video_name": "1821c0ee-4e6f-5ac1-a2a1-efa64b4c9b1f", "text": "\u7537\u5b69\u7ad9\u5728\u6751\u5e84\u8857\u9053\u4e0a\uff0c\u662f\u4e00\u4e2a3D\u89d2\u8272\u7537\u5b69\u3002"} +{"id": "0001375", "video_name": "182702d6-f16e-55de-aaa9-f60dcb923787", "text": "\u9999\u80a0\u548c\u85af\u6761\u88ab\u6254\u5230\u7a7a\u6c14\u4e2d\u3002"} +{"id": "0001376", "video_name": "1827ccbf-de0d-58e6-a57e-6407576e2ce8", "text": "\u7537\u58eb\u7a7f\u7740\u897f\u88c5\uff0c\u900f\u8fc7\u529e\u516c\u5ba4\u7684\u7a97\u6237\u4ef0\u5934\u770b\u7740\u4e16\u754c\uff0c\u8fd1\u8ddd\u79bb\u7279\u5199\uff0c\u8d85\u903c\u771f\u3002"} +{"id": "0001377", "video_name": "182bd543-9051-54d4-8f79-8c1fdd9b0dd7", "text": "\u5c06\u5e74\u8f7b\u5973\u5b69Lily\u548c\u5e74\u8f7b\u7537\u5b50Max\u7684\u611f\u4eba\u6545\u4e8b\u5206\u4eab\u7ed9\u6751\u6c11\uff0c\u4ee54k\uff0c16:9\uff0c3d\u7684\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "0001378", "video_name": "1833e9a7-8484-5170-b7ff-b04a47a6c02d", "text": "\u7537\u4eba\u5728\u590f\u5929\u7684\u95e8\u5eca\u4e0a\u5f39\u594f\u73ed\u5353\u7434\u3002"} +{"id": "0001379", "video_name": "1835d16d-4d1b-5000-a47d-2937d99d182f", "text": "\u9a6c\u7279\u7ef4\u00b7\u535a\u6d1b\u6208\u592b\u5728\u963f\u7eb3\u5e15\u8db3\u7403\u6bd4\u8d5b\u4e2d\u8fdb\u7403\u3002"} +{"id": "0001380", "video_name": "183f90ee-678e-5341-9048-2ca8701037fd", "text": "\u7ea2\u8272\u65c5\u6e38\u5df4\u58eb\u6b63\u5728\u8fdb\u5165\u963f\u5c14\u5df4\u5c3c\u4e9a\u7684\u88ab\u5e9f\u5f03\u548c\u635f\u574f\u7684\u7279\u91cc\u4e9a\u7eb3\u57ce\u5e02\uff0c\u5448\u7535\u5f71\u753b\u9762"} +{"id": "0001381", "video_name": "18432d0a-45e9-540f-9f15-eaf7eaa84aa3", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u897f\u88c5\u7684\u7537\u4eba\u5728\u62c9\u8d3e\u65af\u5766\u90a6\u658b\u6d66\u5c14\u7684\u8857\u5934\u8d70\u8def\uff0c\u9ad8\u5206\u8fa8\u7387\u8d85\u9ad8\u6e05\u3002"} +{"id": "0001382", "video_name": "184f2fd6-8088-53d2-80b3-a008ba103443", "text": "\u6751\u91cc\u4eba\u90fd\u77e5\u9053Liam\u6709\u4e00\u9897\u6177\u6168\u7684\u5fc3\u548c\u4e0d\u53d8\u7684\u5584\u826f\u3002"} +{"id": "0001383", "video_name": "18512407-fcb6-58ab-b10e-b3a036490b62", "text": "\u6355\u6349\u591c\u665a\u8352\u829c\u7684\u6e38\u4e50\u573a\u7684\u9634\u68ee\u6c1b\u56f4\uff0c\u79cb\u5343\u7ee7\u7eed\u6447\u6446\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u7b49\u5f85\u5979\u7684"} +{"id": "0001384", "video_name": "18543071-9c2f-5657-8242-0895474f89a4", "text": "\u62e5\u6709\u516d\u5757\u8179\u808c\u548c\u6a21\u7279\u8eab\u6750\u7684\u7537\u4eba\u3002"} +{"id": "0001385", "video_name": "18545fc8-0ab7-5294-a8d0-ff69aec7ada6", "text": "\u8001\u5f0f\u7684\u573a\u666f\uff0c\u8fdc\u5904\u6709\u623f\u5b50\u3002\u4fe1\u606f\uff1a\u666e\u9c81\u4ec0\u66fc\u8fbe\u5c14\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001386", "video_name": "18638bd2-d6f5-56cb-935b-0ce01d92f68b", "text": "\u5e86\u795d\u6210\u5c31\uff1a\u8ba4\u53ef\u6bcf\u4e00\u6b21\u5c0f\u6210\u529f\uff1b\u5b83\u53ef\u4ee5\u8ba9\u4f60\u4fdd\u6301\u52a8\u529b\u3002"} +{"id": "0001387", "video_name": "186b7c62-22d9-5347-af7d-a0f517349de8", "text": "\u4e00\u5bf9\u5728\u8239\u4e0a\u5171\u4eab\u9633\u5149\u7684\u60c5\u4fa3\u3002"} +{"id": "0001388", "video_name": "18755bc3-82db-5ad4-81f4-a86030d393ed", "text": "\u8bf7\u7ed9\u6211\u4e00\u6bb5\u83b1\u5965\u5c3c\u8fbe\u65af\u65af\u5df4\u8fbe\u4eba\u5411\u4e00\u53ea\u9f99\u6295\u63b7\u4ed6\u5f3a\u5927\u957f\u77db\u7684\u89c6\u9891\uff01"} +{"id": "0001389", "video_name": "1882859f-d790-54aa-b9ac-bf0de5f351d7", "text": "Go Pro \u5f71\u7247\uff0cBillie Eilish \u63a2\u7d22\u4ed9\u5883\u5e76\u9047\u89c1\u5404\u79cd\u751f\u7269\uff0c\u5982\u6bdb\u866b\uff0c\u516c\u7235\u592b\u4eba\uff0c\u7ea2\u5fc3\u5973\u738b\uff0c"} +{"id": "0001390", "video_name": "188a96f3-f5f5-5432-84f9-e9359a24bbd8", "text": "1960\u5e74\u7684\u827a\u672f\u7535\u5f71\u5c55\u793a\u4e86\u4e00\u4e2a\u8349\u8ff7\u5bab\u548c\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u5973\u4eba\u5728\u5bfb\u627e\u8ff7\u5bab\u7684\u51fa\u53e3\u3002"} +{"id": "0001391", "video_name": "188c5ceb-ce97-5a60-bd89-65c949e0d666", "text": "\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u7684\u6c7d\u8f66\uff0c\u52a8\u6001\u7167\u660e\uff0c\u591c\u95f4\u3002"} +{"id": "0001392", "video_name": "188fb7a0-f570-540d-b0ee-09d5dde88711", "text": "\u5728\u7c89\u8272\u80cc\u666f\u4e0a\uff0c\u6709\u4e00\u4e2a\u9ec4\u8272\u7684\u7535\u8bdd\u7ebf\u7ba1\u3002"} +{"id": "0001393", "video_name": "1892e7a2-ef39-5c9b-8d78-1dc7b04c6cbe", "text": "\u6838\u6843\u4ece\u9876\u90e8\u843d\u4e0b\u3002"} +{"id": "0001394", "video_name": "18940d42-a5ff-5e33-bb55-cc6b7ddaa074", "text": "\u7a7f\u7740\u586b\u5145\u5154\u5b50\u670d\u88c5\u7684\u5973\u4eba\uff0c\u7ea2\u8272\u773c\u775b\u975e\u5e38\u8be6\u7ec6\uff0c\u73af\u5883\u5413\u4eba\u3002"} +{"id": "0001395", "video_name": "1897ecc4-0b35-55da-a5c7-28a8bb64a025", "text": "\u4e00\u9762\u53e4\u8001\u7684\u955c\u5b50\u5728\u4e00\u5ea7\u9ed1\u6697\u7684\u623f\u5b50\u91cc\u3002"} +{"id": "0001396", "video_name": "18b38cef-44ce-54aa-8c74-1d8339948673", "text": "\u7199\u7199\u6518\u6518\u7684\u57ce\u5e02\u591c\u665a\uff0c\u8857\u9053\u4e0a\u4e0b\u7740\u96e8\uff0c\u5973\u5b69\u7f13\u6162\u5730\u524d\u884c\u3002"} +{"id": "0001397", "video_name": "18b7edc2-d83a-5c30-af10-e8e336050f87", "text": "\u5b89\u52aa\u7eb3\u57fa\u9762\u5b54\u5728NASA\u76843D\u516b\u89d2\u6e32\u67d3\u4e2d\u8fdb\u884c\u4e86\u8bf4\u8bdd\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6700\u4f73\u5206\u8fa8\u7387\uff0cHDR\uff0c4k\u3002"} +{"id": "0001398", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "\u5728\u5348\u591c\u65f6\u5206\u89e3\u51b3\u8ba1\u7b97\u673a\u95ee\u9898\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u5de5\u7a0b\u5e08\uff0c\u9ad8\u8d28\u91cf\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "0001399", "video_name": "18b8a802-4458-5cea-b998-b4a2b53a2076", "text": "\u4e09\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u8ffd\u6355\u4e00\u53ea\u5154\u5b50\uff0c\u65f6\u957f\u4e3a10\u79d2\u3002"} +{"id": "0001400", "video_name": "18d7b002-48e8-565f-8744-fe533ffaedbf", "text": "\u770b\u8d77\u6765\u5f88\u7f8e\uff0c\u4ee4\u4eba\u610f\u4e71\u60c5\u8ff7\u7684\u9178\u65c5\u7a0b\uff0c\u9713\u8679\u706f\uff0c\u4e30\u5bcc\u591a\u5f69\u7684\u9b54\u5e7b\u666f\u89c2\uff0c\u9ad8\u5927"} +{"id": "0001401", "video_name": "18e099ff-44a3-517e-aee0-6621f6c1fbb9", "text": "\u62bd\u8c61\u7684\u4e09\u7ef4\u6ee1\u610f\u7269\u4f53\u5f39\u8df3\u7740\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u7206\u70b8\uff0c\u7206\u7834\u58f0\uff0cASMR\u3002"} +{"id": "0001402", "video_name": "18ebcf55-2d24-516d-9443-4cbdae80ee44", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u98a0\u7c38\u7684\u788e\u77f3\u8def\u4e0a\u5f00\u884c\uff0c\u4f20\u8fbe\u51fa\u4e00\u79cd\u4e0d\u53d7\u63a7\u5236\u7684\u8fd0\u52a8\u611f\uff0c\u8096\u50cf\u65b9\u5411\uff0c\u9ad8\u8d28\u91cf\u3002"} +{"id": "0001403", "video_name": "18ed6a08-7f19-556a-b630-8d86bd988bba", "text": "\u4e91\u5c42\u805a\u62e2\u5f62\u6210\u98ce\u66b4\u98d3\u98ce\uff0c\u522e\u8d77\u72c2\u98ce\u66b4\u96e8\u3002\u4fe1\u606f\uff1aPictorius\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001404", "video_name": "18f051b5-14d0-5efe-ad26-436c67fd7916", "text": "\u6bcd\u4eb2\u548c\u513f\u5b50\u5728\u73a9\u300a\u690d\u7269\u5927\u6218\u50f5\u5c38\u300b\u6e38\u620f\u3002"} +{"id": "0001405", "video_name": "18f110d8-03d9-5d57-8027-39c9f7997b42", "text": "\u4e00\u4efd\u5728\u7a7a\u4e2d\u79fb\u52a8\u7684\u6c49\u5821\uff0c\u52a8\u753b\uff0c16:9"} +{"id": "0001406", "video_name": "18fa844a-c1e2-50a6-aedc-137f294616db", "text": "\u5728\u590f\u5a01\u5937\u6d77\u6ee9\u4e0a\u6709\u4e24\u4e2a\u5531\u6b4c\u7684\u4eba\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0001407", "video_name": "18fe0b3c-54f2-53a9-8057-95c60ba405f3", "text": "\u4e00\u500b\u7537\u4eba\u5728\u925b\u7b46\u4e0a\u884c\u8d70\u3002"} +{"id": "0001408", "video_name": "190110ef-d59f-5cb7-92e0-6ea2d23f6921", "text": "32\u4f4d\u6e38\u620f\u5ba4\uff0c\u5916\u9762\u6709\u4e00\u573a\u98ce\u66b4\u3002"} +{"id": "0001409", "video_name": "190378b7-f8c4-5e1c-a8d5-19c36d212168", "text": "\u8d85\u7ea7\u9a71\u52a8\u5668\u96a7\u9053\u7531\u5206\u5f62\u56fe\u6848\u548c\u9713\u8679\u8272\u5f69\u7ec4\u6210\uff0c\u6a21\u7cca\u4e86\u73b0\u5b9e\u548c\u6570\u5b57\u7a7a\u95f4\u4e4b\u95f4\u7684\u754c\u9650\u3002"} +{"id": "0001410", "video_name": "190561a2-9a3f-5e96-bd8f-a0518cf10b86", "text": "\u4e09\u540d\u6251\u514b\u724c\u624b\u5728\u5ea6\u5047\u6751\u73a9\u724c\uff0c\u80cc\u666f\u662f\u6d77\u6ee9\u3002"} +{"id": "0001411", "video_name": "19064e05-28a0-5708-a27e-761422c52596", "text": "\u4eba\u4eec\u901a\u8fc7\u624b\u673a\u5728\u57ce\u5e02\u4e2d\u5efa\u7acb\u8054\u7cfb\uff08\u8d5b\u535a\u670b\u514b\u3001\u7535\u5f71\u98ce\u683c\uff09"} +{"id": "0001412", "video_name": "1916aee9-51ce-5a71-9bd3-47acc42190dc", "text": "\u5728\u5c71\u9876\u529e\u516c\u5ba4\u5de5\u4f5c\u7684\u5973\u6027\uff0c\u53ef\u4ee5\u6b23\u8d4f\u5230\u5c71\u666f\uff0c\u5904\u4e8e90\u5e74\u4ee3\u3002"} +{"id": "0001413", "video_name": "1919046a-44d3-5900-82af-5b4c812f105a", "text": "Claudiu \u5728\u300a\u82f1\u96c4\u8054\u76df\u300b\u88ab Alex \u6253\u8d25\u4e86\u3002 \n\nSource sentence: I need to buy some groceries at the supermarket. \n\n\u6211\u9700\u8981\u5728\u8d85\u5e02\u8d2d\u4e70\u4e00\u4e9b\u98df\u54c1\u6742"} +{"id": "0001414", "video_name": "191b09f9-2a9c-5a70-9886-7ccbc76deb7d", "text": "\u6cf0\u5766\u5c3c\u514b\u53f7\u4e0a\u7684\u4e00\u4e2a\u5bb3\u6015\u7684\u7537\u4eba\u3002"} +{"id": "0001415", "video_name": "191b2e83-bbb7-5041-b91a-cb53869e9454", "text": "3D\uff0c\u8fea\u58eb\u5c3c\u50cf\u7d20\uff0c\u975e\u88d4\u7f8e\u56fd\u5c0f\u5973\u5b69"} +{"id": "0001416", "video_name": "191bfe57-690e-5a19-9b8b-1ab93e3140fd", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u706b\u8f66\u65c5\u884c\u7a7f\u8d8a\u5927\u81ea\u7136\u53bb\u63a2\u7d22\u65b0\u7684\u5730\u65b9\u3002"} +{"id": "0001417", "video_name": "191da1cd-a0b7-5c7a-9f5a-f3a2e5b5b8c1", "text": "\u6f02\u4eae\u7684\u7a7a\u7075\u7cbe\u7075\u51c6\u5907\u6218\u6597\uff0c\u6765\u81ea\u4e00\u4e2a80\u5e74\u4ee3\u7684\u9ed1\u6697\u5e7b\u60f3\u7535\u5f71\uff0c\u903c\u771f\u3001\u7535\u5f71\u5316\u3001\u590d\u53e4\u3001\u9ad8"} +{"id": "0001418", "video_name": "192fd7dd-1066-5fdf-b18a-5b9a2d829f75", "text": "\u56fd\u738b\u6b63\u5728\u4e0e\u4ed6\u7684\u5927\u81e3\u8fdb\u884c\u8ba8\u8bba\u3002"} +{"id": "0001419", "video_name": "1932d8cf-b712-526d-b005-932c0083960a", "text": "\u72d7\u4ee5\u8b66\u89c9\u548c\u4e13\u6ce8\u7684\u6001\u5ea6\uff0c\u51ed\u501f\u5176\u72ec\u7279\u7684\u6bdb\u76ae\u548c\u777f\u667a\u7684\u773c\u795e\uff0c\u8f6c\u5411\u68ee\u6797\u4e2d\u4e00\u5904"} +{"id": "0001420", "video_name": "19344300-dbc6-5808-aac0-e7296c0436f8", "text": "\u5f17\u96f7\u5fb7\u00b7\u963f\u65af\u6cf0\u5c14\u5728\u5546\u573a\u8df3\u821e"} +{"id": "0001421", "video_name": "1938ed5f-4e20-5e9d-85a3-f10e8a29c314", "text": "\u91d1\u8272\u91d1\u5c5e\u9cde\u7247\u9f99\u4ece\u9ec4\u8272\u4e91\u6735\u4e2d\u964d\u843d\uff0c\u95ea\u70c1\u7740\u5149\u8292\u3002"} +{"id": "0001422", "video_name": "19390eca-0386-5717-a87e-802837fe4fc5", "text": "\u5728\u5927\u8349\u539f\u4e0a\u521b\u9020\u4e00\u4e2a\u91ce\u751f\u52a8\u7269\u7684\u5f62\u8c61\u3002"} +{"id": "0001423", "video_name": "19415581-468c-5549-9588-b1836493db77", "text": "\u7537\u5b5050\u5c81\u8dea\u5728\u524d\u9762\u3002"} +{"id": "0001424", "video_name": "1942225d-b19e-5850-94bc-914f0ebe473c", "text": "\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u4eec\u548c\u8c10\u5730\u751f\u6d3b\u5728\u4e00\u8d77\u3002"} +{"id": "0001425", "video_name": "19424bb9-b76f-56dd-bc5f-4c9d39137b05", "text": "\u7d22\u83f2\u4e9a\u4e0e\u4e00\u7fa4\u5149\u6ed1\u3001\u5a01\u80c1\u6027\u7684\u673a\u5668\u4eba\u6fc0\u70c8\u6218\u6597\u3002\u5979\u7684\u52a8\u4f5c\u8fc5\u901f\u800c\u6709\u7ae0\u53ef\u5faa\uff0c"} +{"id": "0001426", "video_name": "1942893b-2f5f-56aa-a531-47579bd97747", "text": "\u89c6\u9891\u53f3\u4e0b\u89d2\u4e00\u4e2a\u7537\u4eba\u72ec\u81ea\u5728\u96e8\u4e2d\u884c\u8d70\uff0c\u666f\u8272\u5fe7\u4f24\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "0001427", "video_name": "1947633a-f120-52a2-bd37-429cb8b60ad7", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u4e2d\u56fd\u7537\u5b69\u6b63\u5728\u73a9\u7535\u8111\uff0c\u5199\u4ee3\u7801\uff0c\u5e76\u548c\u4ed6\u7684\u7238\u7238\u4e00\u8d77\u73a9\u673a\u5668\u4eba\u3002"} +{"id": "0001428", "video_name": "1950c513-7ff3-5dd0-974a-2e4783bca817", "text": "\u573a\u666f5\uff1a\u4e00\u4e2a\u6c14\u52bf\u6c79\u6c79\u3001\u58f0\u97f3\u91d1\u5c5e\u822c\u7684\u673a\u5668\u4eba\u9886\u8896\u51fa\u73b0\uff0c\u9762\u5bf9\u4eba\u7c7b\u8fdb\u884c\u5bf9\u6297\u3002"} +{"id": "0001429", "video_name": "1953f51e-3fbf-5ac7-ad88-8b21e8aa12b5", "text": "\u6211\u4eec\u5b81\u9759\u7684\u5bb6\u56ed\u53d7\u5230\u4e86\u5a01\u80c1\u3002\u5de8\u9f99\u964d\u4e34\u6211\u4eec\u8eab\u8fb9\uff0c\u6295\u4e0b\u9634\u5f71\uff0c\u8986\u76d6\u6211\u4eec\u5fc3\u7231\u7684\u68ee"} +{"id": "0001430", "video_name": "195ec27b-698d-5d38-b23f-edb046ae4fee", "text": "VR\u4eba\u7fa4\u5728\u57ce\u5e02\u4e2d\u884c\u8fdb\u3002"} +{"id": "0001431", "video_name": "196c2438-0a25-597c-aae2-10d361ff4ae9", "text": "\u5c1d\u8bd5\u6050\u60e7\u75c7\uff0c\u5c0f\u8718\u86db\uff0c\u6050\u6016\u7535\u5f71\uff0c\u53ef\u6015\uff0c\u90aa\u6076\uff0c\u9ad8\u6e05\uff0c\u903c\u771f\uff0c\u6050\u60e7\uff0c\u590d\u53e4"} +{"id": "0001432", "video_name": "196cba11-5c7f-56ab-97c8-9cfe47a2532f", "text": "\u8d64\u58c1\u661f\u7403\u5927\u6218\u89d2\u8272\u5728\u6b7b\u661f\u5468\u56f4\u5954\u8dd1"} +{"id": "0001433", "video_name": "19761374-eb02-570c-a190-5458be1093c9", "text": "\u96e8\u6c34\u843d\u4e0b\uff0c\u7b80\u964b\u7684\u623f\u5c4b\u5728\u8302\u5bc6\u7684\u5927\u81ea\u7136\u4e2d\u3002"} +{"id": "0001434", "video_name": "1978bc51-a5bf-59f8-98de-98841e99599d", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4ee5\u52a8\u753b\u65b9\u5f0f\u4ece\u6708\u7403\u8df3\u56de\u5730\u7403\u3002"} +{"id": "0001435", "video_name": "197c74cd-e210-5fc8-9852-534f02ef6140", "text": "\u5c06\u7bdd\u706b\u4e0e\u7e41\u661f\u70b9\u70b9\u7684\u591c\u7a7a\u76f8\u878d\u5408\uff0c\u8ba9\u706b\u7130\u8f7b\u8f7b\u5730\u71c3\u70e7\u548c\u9065\u8fdc\u661f\u661f\u7684\u95ea\u70c1\u589e"} +{"id": "0001436", "video_name": "1988e509-b9f2-5b66-95b7-94fc0a580cc0", "text": "\u4e00\u53ea\u516c\u7f8a\u4ece\u7535\u8111\u91cc\u8df3\u51fa\u6765\uff0c\u671d\u7740\u6211\u7684iPhone\u5c4f\u5e55\u5954\u8dd1\u3002"} +{"id": "0001437", "video_name": "198ce89a-ea38-571d-8e3e-7ae2a9764f22", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u4e34\u7ec8\u65f6\u7684\u89c6\u9891"} +{"id": "0001438", "video_name": "1991402e-0a07-52b5-8938-6c1fb13f058e", "text": "\u7740\u8001\u4eba\u9759\u9759\u5730\u5750\u7740\u5e76\u8bf4\u8bdd\u3002"} +{"id": "0001439", "video_name": "1993d0c4-d066-5797-910c-265f0707de4e", "text": "\u4e00\u53ea\u732b\u626e\u6210\u683c\u6797\u5947\u5077\u8d70\u5723\u8bde\u6811\u3002"} +{"id": "0001440", "video_name": "1999150c-92c8-5c7f-afb0-608b8f4e9c56", "text": "\u8bb0\u5f55\u666e\u52a0\u91cc\u575a\u6301\u7a7f\u7740\u767d\u8272\u5e03\u6599\uff0c\u7528\u9999\u3001\u5492\u8bed\u548c\u5723\u6c34\u8868\u6f14\u4eea\u5f0f\u3002"} +{"id": "0001441", "video_name": "19a9a9ce-de26-526c-a75e-92e68d4c8b75", "text": "\u5728\u5927\u6d77\u65c1\u8fb9\u7684\u8def\u8fb9\uff0c\u5b89\u62b1\u7740\u4ed6\u7684\u6469\u6258\u8f66\u3002"} +{"id": "0001442", "video_name": "19ab4aae-ed7a-51d7-aced-f1448bbc0f81", "text": "\u5728\u73bb\u7483\u76d2\u4e2d\u6f02\u6d6e\u7684\u5531\u5934\uff0c\u9644\u5e26\u7740\u7535\u7ebf\u548c\u4e8c\u6781\u7ba1\u7684\u8111\u866b\uff0c\u827e\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af"} +{"id": "0001443", "video_name": "19acde51-f41d-5c94-b82d-e0d278ce6d9b", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65e5\u843d\u65f6\u6cbf\u7740\u6d77\u5cb8\u6563\u6b65\u3002"} +{"id": "0001444", "video_name": "19b2a1ba-6f1b-54d8-a47d-d6da5840af64", "text": "\u4e00\u4f4d\u6234\u7740\u6597\u7bf7\u7684\u4eba\u7269\u624b\u6301\u706f\u7b3c\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002\u9ed1\u767d16\u6beb\u7c73\u3002"} +{"id": "0001445", "video_name": "19b5314a-ff32-571a-81d6-65532f14cdd5", "text": "\u5f53\u4e00\u5ea7\u57ce\u9547\u53d1\u751f\u53db\u4e71\u7684\u6d88\u606f\u4f20\u5230\u4e0b\u4e00\u4e2a\u57ce\u9547\u65f6\uff0c\u90a3\u91cc\u7684\u58eb\u5175\u4e5f\u62ff\u8d77\u4e86\u6b66\u5668\u3002"} +{"id": "0001446", "video_name": "19b7b489-2efa-5438-b8ee-97c171b75df8", "text": "\u767d\u8272\u5409\u666e\u8f66\u5728\u4e00\u4e2a\u5c9b\u4e0a\u884c\u9a76\uff0c\u5982\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "0001447", "video_name": "19ba3025-b2db-504f-b736-0d6a6cad54d4", "text": "\u7537\u4e3b\u89d2\u5927\u536b\uff0830\u5c81\uff09\u662f\u4e00\u4f4d\u6210\u529f\u7684\u827a\u672f\u5bb6\u3002"} +{"id": "0001448", "video_name": "19ba439c-65f7-52d8-be19-0e2796dd2b6f", "text": "\u9ed1\u767d\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u98ce\u683c\u7684\u89c6\u9891\uff0c\u68ee\u6797\u4ece\u5de6\u5230\u53f3\u5feb\u901f\u79fb\u52a8\uff0c\u76f8\u673a\u9759\u6b62\u3002"} +{"id": "0001449", "video_name": "19be31af-9804-5c34-84fc-be8bbba2d478", "text": "\u60ca\u4eba\u7684\u8d85\u8be6\u7ec6\u590d\u53e4\u7d20\u63cf\u827a\u672f\uff0c\u59ff\u52bf\u6709\u529b\uff0c\u9762\u90e8\u8868\u60c5\u9c9c\u660e\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eMandy Jurgens\u3002"} +{"id": "0001450", "video_name": "19be31e9-75a5-52a2-b9b7-ef39d13fa23f", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\uff08Walter White\uff09\u6b63\u5728\u5c06\u4e00\u5757\u77f3\u5934\u63a8\u4e0a\u5c71\u3002"} +{"id": "0001451", "video_name": "19c0a96d-5dc3-5a1c-8de9-774f87e8bb4f", "text": "\u5927\u8c61\u9a7e\u9a76\u6218\u6597\u673a\u98de\u884c\uff0c\u9762\u90e8\u8868\u60c5\u5174\u594b\uff0c\u5341\u5206\u6280\u672f\u5316\u548c\u8be6\u7ec6\uff0c\u89c6\u9891\u753b\u9762\u6709\u4e9b\u6643\u52a8\u3002"} +{"id": "0001452", "video_name": "19c0d897-6668-5b27-b999-e3f08a40b5af", "text": "\u4ed6\u4eec\u76ee\u7779\u68ee\u6797\u4e2d\u7efd\u653e\u7740\u4e94\u989c\u516d\u8272\u7684\u82b1\u6735\u548c\u5feb\u4e50\u7684\u52a8\u7269\u3002\u4e09\u7ef4\u52a8\u753b\uff0c4K \u5206\u8fa8\u7387 16:"} +{"id": "0001453", "video_name": "19c47dde-888e-5604-9d2a-a352e1dd16d5", "text": "\u9ed1\u6697\u7684\u6df1\u6e0a\uff0c\u65e0\u8fb9\u65e0\u9645\uff0c\u541e\u566c\u6240\u6709\u5149\u660e\u3002\u5728\u60ac\u5d16\u8fb9\u7f18\uff0c\u4e00\u8f6e\u65b0\u6708\u50cf\u4e00\u6735\u767d\u8272"} +{"id": "0001454", "video_name": "19cef012-202a-52f8-97cb-d17da70510a1", "text": "\u7535\u5f71\u8272\u5f69\uff0c\u6c99\u6f20\u4e2d\u6234\u7740\u9632\u6bd2\u9762\u5177\u7684\u7537\u4eba\u3002"} +{"id": "0001455", "video_name": "19cf3d08-e88b-573e-8287-9dbce268dcba", "text": "\u6469\u897f\u7a7f\u7740\u7070\u8272\u957f\u888d\uff0c\u53f3\u624b\u9ad8\u4e3e\u7740\u4e00\u6839\u6728\u68cd\uff0c\u80cc\u5bf9\u7740\u89c2\u4f17\uff0c\u6d77\u6c34\u5728\u4ed6\u524d\u9762\u5206\u5f00\uff0c\u9732\u51fa"} +{"id": "0001456", "video_name": "19daa434-8e78-53ae-8b54-09c176ae978f", "text": "\u68a6\u60f3\u6838\u5fc3\u6e38\u4e50\u573a\u5728\u5c71\u4e0a\u8fdc\u5904\u3002"} +{"id": "0001457", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "\u5f69\u8679\u6591\u9a6c\u5728\u5e7b\u60f3\u68ee\u6797\u5954\u8dd1\u3002"} +{"id": "0001458", "video_name": "19e3f236-3b3f-587c-8f44-da11a2c759eb", "text": "\u56db\u5c81\u7537\u5b69\u7b2c\u4e00\u6b21\u5403\u86cb\u7cd5\u3002"} +{"id": "0001459", "video_name": "19e5419f-b77b-5ade-95f1-bf84b450e828", "text": "\u4e00\u5f20\u97f3\u7b26\u81ea\u52a8\u8df3\u5230\u4e86\u4e94\u7ebf\u8c31\u4e0a\u3002"} +{"id": "0001460", "video_name": "19eb8b99-b288-5d16-a083-fcf768efd787", "text": "\u5728\u4e00\u4e2a\u95f9\u9b3c\u7684\u623f\u95f4\u91cc\uff0c\u521b\u4f5c\u4e00\u90e8\u9ed1\u767d\u768420\u4e16\u7eaa20\u5e74\u4ee3\u7684\u795e\u79d8\u9759\u9ed8\u7535\u5f71\uff0c\u5c55\u73b0\u4e00\u4e2a\u7a7f\u7740\u9ed1"} +{"id": "0001461", "video_name": "19ee9358-245a-562e-8347-f628109ce5e2", "text": "\u4e00\u540d\u62b1\u7740\u5a74\u513f\u7684\u4ee5\u8272\u5217\u60b2\u4f24\u5973\u6027\uff0c\u65c1\u8fb9\u662f\u4e00\u4f4d\u5fae\u7b11\u7684\u5973\u6027\uff0c\u53e4\u4ee3\u65f6\u671f\uff0c8K\u7535\u5f71\u6548\u679c\u3002"} +{"id": "0001462", "video_name": "19f67c84-7fc4-585b-921f-637a48af9732", "text": "\u592a\u9633\u5728\u9504\u7a3b\u65f6\u5728\u5934\u9876\u4e0a\u3002"} +{"id": "0001463", "video_name": "19f71dfe-f552-56ab-a302-9dde5572061b", "text": "\u5c06\u4e00\u679a\u4e2d\u56fd\u8c61\u68cb\u5b50\u5347\u7ea7\u4e3a\u5c06\u519b\u3002"} +{"id": "0001464", "video_name": "19f893e1-da9a-59bf-a6e2-35c4e402ee17", "text": "\u753b\u51fa\u4f60\u64c5\u957f\u7684\u4efb\u4f55\u4e00\u5e45\u753b\u3002\n\nSource sentence: I am looking forward to seeing you soon.\n\u6211\u671f\u5f85\u7740\u5f88\u5feb\u89c1\u5230\u4f60\u3002"} +{"id": "0001465", "video_name": "19f8ec44-eb1d-56e3-8103-d68c6587e47c", "text": "\u4e00\u6bb5\u9ed1\u6697\u7684\u89c6\u9891\u8bb0\u5f55\u4e86\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u7684\u63ed\u793a\u548c\u771f\u76f8\u65f6\u523b\uff0c\u7ed9\u89c2\u4f17\u7559\u4e0b\u4e86\u5f3a\u70c8\u7684\u60c5\u611f\u51c0\u5316\u548c\u8054\u7cfb\u611f"} +{"id": "0001466", "video_name": "19fdbf21-71fb-5e17-9e26-6471295b4092", "text": "\u5723\u7ecf\u4e2d\u7684\u6469\u897f\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u7a7f\u8d8a\u7ea2\u6d77\u3002"} +{"id": "0001467", "video_name": "1a01ee41-cd0c-57e6-aa66-ce573189c839", "text": "\u4e00\u53ea\u7a7f\u7740\u533b\u7528\u888d\u7684\u718a\u732b"} +{"id": "0001468", "video_name": "1a0cead7-4208-5949-bbd8-167bf8b22f90", "text": "\u690d\u7269\u5728\u96e8\u4e2d\u8f7b\u8f7b\u5730\u6f02\u6d6e\u7740\u3002"} +{"id": "0001469", "video_name": "1a174d83-cbe8-5203-9fce-1ce1cda394a4", "text": "\u9633\u5149\u548c\u4e91\u6735\u7f29\u5c0f\uff0c\u6d88\u606f\uff1a\u8c22\u8c22\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0001470", "video_name": "1a17fa4b-7657-57a8-a462-0d367be4b187", "text": "\u53e4\u4ee3\u4e2d\u6587\u8bd7\u6b4c\uff1a\u51cb\u96f6\u7684\u85e4\u8513\uff0c\u8001\u6811\uff0c\u9ec4\u660f\u7684\u4e4c\u9e26\uff1b\u4e00\u5ea7\u5c0f\u6865\uff0c\u6d41\u6c34\u548c\u4e00\u4e9b\u5c0f"} +{"id": "0001471", "video_name": "1a1ae150-c5c8-54b2-81fa-088ee6b8a4f8", "text": "\u4e24\u53ea\u5c0f\u5154\u5b50\u4e58\u8239\u65c5\u884c\u3002"} +{"id": "0001472", "video_name": "1a29412f-9f79-55cc-878a-5ecdb9f32171", "text": "\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e2d\u6a21\u7cca\u7684\u5149\u7ebf\u5728\u53d8\u6362\u3002"} +{"id": "0001473", "video_name": "1a29733c-81a3-529d-88e6-836182e066f6", "text": "\u57fa\u57fa\uff0c\u8fd9\u4f4d\u4e16\u754c\u63a2\u9669\u5bb6\uff0c\u5f00\u59cb\u4e86\u4e00\u6bb5\u5145\u6ee1\u5192\u9669\u7684\u65c5\u7a0b\uff0c\u63ed\u5f00\u5730\u7403\u7684\u79d8\u5bc6\u3002"} +{"id": "0001474", "video_name": "1a314de6-caa9-579b-915c-8ecf4501f010", "text": "\u50cf\u4e00\u9897\u5de8\u661f\u4ece\u5929\u4e0a\u5760\u843d\uff0c\u50cf\u706b\u70ac\u4e00\u822c\u718a\u718a\u71c3\u70e7\uff0c\u843d\u5728\u4e09\u5206\u4e4b\u4e00\u7684\u6cb3\u6d41\u548c\u6c34\u6cc9"} +{"id": "0001475", "video_name": "1a33409d-18ac-5362-93be-ad6e1c3c35fe", "text": "\u4ed6\u4eec\u7684\u76ee\u5149\u76f8\u9047\uff0c\u4eff\u4f5b\u65f6\u95f4\u505c\u6ede\u4e86\u3002"} +{"id": "0001476", "video_name": "1a3a193a-38ca-5278-9da8-d700b553aeb0", "text": "\u5728\u6d77\u6d0b\u6df1\u5904\uff0c\u4e00\u573a\u6fc0\u70c8\u7684\u6218\u6597\u5728\u72e1\u733e\u7684\u9cc4\u9c7c\u548c\u65e0\u60c5\u7684\u9ca8\u9c7c\u4e4b\u95f4\u5c55\u5f00\u3002"} +{"id": "0001477", "video_name": "1a3b4900-2802-50c6-a720-dea49d97889e", "text": "\u4e00\u4e2a\u5370\u5ea6\u6559\u795e\u7947\uff0c\u7f8e\u4e3d\u5c11\u5e74\uff0c\u76ae\u80a4\u53d1\u5149\u50cf\u96e8\u4e91\u7684\u989c\u8272\u3002\u4ed6\u5439\u7740\u957f\u7b1b\uff0c\u5438\u5f15\u6240\u6709\u4eba\u7684\u5fc3"} +{"id": "0001478", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "\u76ae\u514b\u65af\u98ce\u683c\uff0c\u51b0\u5757\u5185\u90e8\u6709\u8ba1\u7b97\u673a\u5904\u7406\u5668\uff0c\u51b0\u5757\u878d\u5316\u3002"} +{"id": "0001479", "video_name": "1a4a7097-37e8-53b8-b159-6989d903b144", "text": "\u7ea6\u7ff0\u548c\u8389\u838e\u6b63\u5728\u9910\u5385\u5403\u5348\u996d\u3002"} +{"id": "0001480", "video_name": "1a4dc650-a7fb-55ec-a391-ee4153123638", "text": "\u4e9a\u5386\u514b\u65af\u7ecf\u8fc7\u51e0\u4e2a\u6708\u7684\u52aa\u529b\uff0c\u638c\u63e1\u4e86\u9ed1\u5ba2\u6280\u672f\u3002 \n\nSource sentence: The company's profits have increased significantly since the new CEO took over. \n\n\u81ea\u4ece"} +{"id": "0001481", "video_name": "1a5103a6-1ebc-5ac2-85b8-1140c55ad159", "text": "\u5173\u4e8e\u8fd9\u4e2a\u8033\u673a\u6536\u7eb3\u76d2\u5236\u4f5c\u4e00\u4e2a20\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "0001482", "video_name": "1a555989-0e97-51b8-aa3b-bc7a40f6da0e", "text": "\u7528\u4e0d\u540c\u7684\u83dc\u7cfb\u548c\u827a\u672f\u6027\u7684\u98df\u7269\u5448\u73b0\u7684\u9910\u5385"} +{"id": "0001483", "video_name": "1a5a855b-d737-5b6f-8181-9534688de840", "text": "\u4e00\u53f0\u7535\u89c6\u76d1\u89c6\u5668\u663e\u793aRob Gonsalves\u827a\u672f\u7684\u5149\u5b66\u9519\u89c9\u3002"} +{"id": "0001484", "video_name": "1a683463-be90-5517-98d5-1bba12c021b7", "text": "\u5c0f\u96ea\u4f01\u9e45\u4ece\u76f8\u673a\u955c\u5934\u9003\u8dd1\u3002"} +{"id": "0001485", "video_name": "1a6f7823-2c2d-54b3-ba87-5550bce7332e", "text": "\u9ad8\u6e05\u7535\u5f71\u7ea7\u7f29\u653e\uff0c\u4eba\u4f53\u5feb\u901f\u8fd0\u52a8\u7684\u4ea4\u7ec7\u3002"} +{"id": "0001486", "video_name": "1a7b141c-196e-50e6-830d-d67434d311a7", "text": "\u73b0\u5b9e\u76848K UHD\u884c\u661f\u4e0e\u53e6\u4e00\u4e2a\u884c\u661f\u5728\u592a\u7a7a\u4e2d\u53d1\u751f\u78b0\u649e\u5e76\u4ea7\u751f\u7206\u70b8\u6027\u51b2\u51fb\u3002"} +{"id": "0001487", "video_name": "1a7b28c5-fc92-5e4f-a2ec-f1773dc5241e", "text": "\u63cf\u8ff0\u4e00\u7247\u8302\u5bc6\u7684\u4e1b\u6797\uff0c\u4e00\u53ea\u96c4\u72ee\u548c\u4e00\u53ea\u96cc\u72ee\u4e00\u8d77\u751f\u6d3b\u3002"} +{"id": "0001488", "video_name": "1a7fd0ac-af50-5365-8f6f-95bc6d238809", "text": "\u5728\u68ee\u6797\u4e2d\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u5973\u4eba\u6b63\u5728\u9003\u79bb\u4e00\u53ea\u72ee\u5b50\uff0c\u4ee5\u9ed1\u767d1.33:1\u65e0\u58f0\u5149"} +{"id": "0001489", "video_name": "1a839135-1d08-5ab1-b8bb-12cf91b851a8", "text": "\u5c0a\u91cd\u4f60\u7684\u6839\u6e90\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0001490", "video_name": "1a86257f-9827-521b-81dd-697aee5cb24b", "text": "\u732b\u5c0f\u5de7\u800c\u808c\u8089\u53d1\u8fbe\uff0c\u8eab\u4f53\u5448\u9ed1\u8272\uff0c\u773c\u775b\u53ef\u4ee5\u662f\u84dd\u8272\u6216\u6a59\u8272\u3002"} +{"id": "0001491", "video_name": "1a866e54-63b2-53f0-82bf-595258bc9e3e", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u827a\u672f\u6027\u548c\u4e09\u7ef4\uff0c360\u5ea6\u6444\u50cf\u673a\u62cd\u6444\uff0c\u4fe1\u606f\uff1a\u6765\u81ea\u4e16\u754c\u7684\u52c7\u58eb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001492", "video_name": "1a88a8bd-7417-537c-b11b-bd24053afb96", "text": "\u4e00\u68f5\u6709\u7ea2\u53f6\u7684\u5de8\u5927\u6811\u3002"} +{"id": "0001493", "video_name": "1a8cefef-085f-549f-8df1-8a8336e15289", "text": "\u5b69\u5b50\u4eec\u5728\u771f\u5b9e\u5361\u901a\u6837\u5f0f\u4e0b\u7728\u773c\u8df3\u821e\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16\uff1a9\u3002"} +{"id": "0001494", "video_name": "1a94f220-7795-565f-8726-ec535f307140", "text": "\u4e00\u7fa4\u5c0f\u9ec4\u9e2d\u5728\u7530\u91ce\u4e0a\u5954\u8dd1\u3002"} +{"id": "0001495", "video_name": "1a958b9a-81d7-528e-baed-389abb75311d", "text": "\u4fe1\u4ef6CO KHI 3\uff1a\u6d12\u843d\u6f02\u6d6e\uff0c\u903c\u771f\u6444\u5f71\u3002"} +{"id": "0001496", "video_name": "1a9960c4-163c-543f-bb32-168535ee47c7", "text": "\u5de8\u5927\u7684\u517d\u4eba\u519b\u961f\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u76d4\u7532\uff0c\u624b\u6301\u7a7a\u65d7\uff0c\u5728\u5de8\u5927\u7684\u4fc4\u7f57\u65af\u57ce\u5e02\u80cc\u666f\u4e0b\uff0c\u51ac\u5929\u91cc"} +{"id": "0001497", "video_name": "1a9b4f5b-d054-5235-bae1-5760f352a63c", "text": "\u68ee\u6797\u4e2d\u95f4\u7684\u5c0f\u623f\u5b50\uff0c\u7a97\u6237\u4e0a\u6709\u9ec4\u8272\u7684\u706f\u5149\uff0c\u70df\u4ece\u70df\u56f1\u91cc\u5192\u51fa\u6765\uff0c\u662f\u591c\u665a\u7684\u666f\u8c61\u3002"} +{"id": "0001498", "video_name": "1a9d473e-7815-536f-bd6a-f8434b37b48f", "text": "\u8ba9\u52a8\u753b\u8868\u8fbe\u4ed6\u51b3\u5fc3\u5f97\u5230\u8461\u8404\u548c\u72d0\u72f8\u3002"} +{"id": "0001499", "video_name": "1a9dcf50-3d36-5427-9f71-142bafeba3eb", "text": "\u6e3e\u7136\u5929\u6210\u3001\u96fb\u5f71\u822c\u7684\u8868\u73fe\uff0c\u6700\u9ad8\u54c1\u8cea\u3001\u6700\u9ad8\u7d30\u7bc0\u7684\u4e0b\u5348\u967d\u5149\u7167\u8000\u8457\u85cd\u8272\u6cf3\u8863"} +{"id": "0001500", "video_name": "1a9dfa9f-0a8e-5895-9a97-d9b5f63b0917", "text": "\u6c34\u4e0b\u88ab\u73ca\u745a\u8986\u76d6\u7684\u96c5\u5178\u5a1c\u5973\u795e\u96d5\u50cf\uff0c\u795e\u79d8\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0001501", "video_name": "1aa3473e-4775-55a6-86b9-d5084a22a9c7", "text": "\u4e00\u4f4d\u7a7f\u7740\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd\u5236\u670d\u76843D\u5e74\u8f7b\u57c3\u7c73\u62c9\u8482\u513f\u7ae5\u7ad9\u5728\u5bb6\u4e2d\uff0c\u753b\u9762\u6e05\u6670\u903c"} +{"id": "0001502", "video_name": "1aaf1e5a-2690-5c20-8a3a-1740b4fe812c", "text": "\u7518\u5730\u5148\u751f\u7684\u773c\u955c\uff0c\u7535\u5f71\u7ea7\u522b\u6e05\u6670\u5ea6\uff0c\u8d85\u9ad8\u6e05\u6670\uff0c\u53ef\u4ee5\u653e\u5927\u3002"} +{"id": "0001503", "video_name": "1ab08331-c5fa-5d0a-a008-4757005c97e7", "text": "\u4e00\u6bb51920\u5e74\u7684\u8d858\u5f55\u50cf\uff0c\u5728\u591c\u665a\u7684\u8def\u8fb9\uff0c\u9760\u8fd1\u6811\u6797\uff0c\u62cd\u6444\u5230\u4e24\u4e2a\u767d\u8272\u7684\u53d1\u5149\u9b3c\u65b0\u5a18\uff0c"} +{"id": "0001504", "video_name": "1ab4ba5c-9703-50f5-a62f-768e7f5653ed", "text": "\u6c34\u52a8\u4e86\uff0c\u70df\u88ab\u6405\u52a8\u4e86\u3002"} +{"id": "0001505", "video_name": "1abfc774-b3a6-5b0b-9e8e-97a354f8cdf1", "text": "\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u8fde\u8863\u88d9\u7684\u5c0f\u5973\u5b69\u5750\u5728\u68ee\u6797\u91cc\u7684\u6811\u6869\u4e0a\u3002\u5979\u62b1\u7740\u4e00\u53ea\u53d7\u4f24\u7684\u5c0f\u9e1f"} +{"id": "0001506", "video_name": "1ac3b1f4-8de8-5218-a6b4-7126fa1ef8a1", "text": "\u4e00\u4e2a\u5e78\u798f\u65b0\u65f6\u4ee3\u7684\u5f00\u59cb"} +{"id": "0001507", "video_name": "1ac58848-6f7f-5680-8376-8ef56b6d908d", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u8001\u4eba"} +{"id": "0001508", "video_name": "1ac72186-8665-51da-a072-7dbd1ec3344c", "text": "\u503e\u76c6\u5927\u96e8\u4e2d\u7684\u9661\u5ced\u5ca9\u58c1"} +{"id": "0001509", "video_name": "1acafb3d-7aa4-553e-8401-07390945af9d", "text": "\u751f\u6210\u4e00\u4e2a\u9b54\u6cd5\u53a8\u623f\u7684\u56fe\u50cf\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u6f02\u6d6e\u7684\u98df\u6750\uff0c\u5982\u9762\u7c89\u3001\u756a\u8304\u548c\u5976\u916a\uff0c\u8425\u9020\u51fa\u4e00\u4e2a"} +{"id": "0001510", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "\u5728\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u675f\u805a\u5149\u706f\u7167\u5728\u739b\u4e3d\u8eab\u4e0a\uff0c\u5979\u73b0\u5728\u5750\u5728\u4e00\u628a\u6728\u6905\u4e0a\uff0c\u62b1"} +{"id": "0001511", "video_name": "1ace1b90-f868-534d-9f4a-ff5a0422790a", "text": "3D\u56fe\u50cf\uff1a\u4e00\u4e2a\u5b69\u5b50\u548c\u4e00\u4e2a\u7956\u7236\u6bcd\u5750\u5728\u516c\u56ed\u957f\u6905\u4e0a\uff0c\u4eab\u53d7\u7740\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u8fdb\u884c\u7740\u6e29"} +{"id": "0001512", "video_name": "1ad0616c-eb6f-505f-bc8e-374f29a09208", "text": "\u5a5a\u793c\u3001\u4e24\u53ea\u718a\u3001\u8702\u871c\u3001\u8fdc\u89c6"} +{"id": "0001513", "video_name": "1ad2ea30-19c4-588b-8ddf-0b3e2b602dcf", "text": "\u8ff7\u4f60\u8c37\u6b4c\u773c\u775b\u9f99\u5728\u5a01\u5c14\u58eb\u5c71\u6797\u4e2d\u7684\u7535\u5f71\u5f0f\u62cd\u6444\u3002"} +{"id": "0001514", "video_name": "1ad53c22-18ea-5a22-be98-2a1640e3d429", "text": "\u5728\u6d77\u8fb9\u6709\u84dd\u8272\u548c\u7eff\u8272\u7684\u6c34\uff0c\u5929\u4e0a\u6709\u9e1f\u98de\u7fd4\uff0c\u8fd8\u6709\u4e00\u8258\u5feb\u8247\u3002"} +{"id": "0001515", "video_name": "1ad76fe1-e873-5bfe-a00e-3239a74b039e", "text": "\u4e24\u90e8\u65e5\u672c\u52a8\u6f2b\u4e2d\u7684\u89d2\u8272\u5728\u8bb8\u613f\u65f6\u5931\u53bb\u4e86\u5bf9\u5f7c\u6b64\u7231\u60c5\u7684\u8bb0\u5fc6\u3002"} +{"id": "0001516", "video_name": "1ad876dc-a99c-5310-ac88-3552b03ece78", "text": "\u901a\u8fc7\u5c55\u793a\u4e00\u4e2a\u7f51\u7ad9\u4e0a\u5e94\u7528\u7684\u5404\u79cd\u670d\u52a1\uff08SEO\uff0c\u9500\u552e\u6f0f\u6597\uff0c\u5e7f\u544a\uff0c\u4f18\u5316\uff09\uff0c\u4ee5\u5c55\u793a\u6240\u63d0\u4f9b\u7684\u670d\u52a1\u8303\u56f4\u3002"} +{"id": "0001517", "video_name": "1adde34b-19ab-5ccc-90db-d8f92c9102a2", "text": "\u4e0e\u5b69\u5b50\u548c\u4e00\u4e2a\u5c0f\u673a\u5668\u4eba\u8fdb\u884c\u5c0f\u7ec4\u8ba8\u8bba\u3002"} +{"id": "0001518", "video_name": "1ae2cf30-3873-542c-9c86-79110e947110", "text": "\u7279\u65af\u62c9Model S\u5728\u6d77\u4e0a\u98de\u7fd4\uff0c\u6d77\u4e2d\u8fd8\u6709\u51e0\u4e2a\u5c9b\u5c7f\uff0c\u6d77\u91cc\u6e38\u52a8\u7740\u6050\u9f99\u3002"} +{"id": "0001519", "video_name": "1ae9a65e-e9f7-54ff-b9ba-db77dd2f1843", "text": "16\u5c81\u7684\u73b0\u5b9e\u4e3b\u4e49\u9ad8\u6311\u7626\u5f31\u7684\u5973\u5b69\u5316\u8eab\u4e3a\u6bc1\u706d\u4e4b\u795e\uff0c\u9ed1\u53d1\u9ed1\u773c\uff0c\u76ae\u80a4\u82cd\u767d\uff0c\u9ad8\u5206\u8fa8\u7387"} +{"id": "0001520", "video_name": "1aedbb74-7feb-57e9-980a-3ceea23789ac", "text": "\u767d\u8272\u7684\u6811\u5728\u96ea\u4e2d\u6447\u6643\u3002"} +{"id": "0001521", "video_name": "1af02e0b-e00c-5da5-ab09-1aef79787d66", "text": "\u767d\u8272\u5154\u5b50\u89c2\u770b\u5c3c\u514b\u00b7\u5f17\u7f57\u65af\u7279\u5728\u6797\u5730\u91cc\u8dcb\u6d89\u7684\u96ea\u666f\u3002\u4e00\u4e2a\u53e4\u8001\u768470\u5e74\u4ee3BBC\u7535\u89c6\u8282\u76ee\u3002\u7535"} +{"id": "0001522", "video_name": "1af0adec-ff4c-5713-8622-1f250a897e1e", "text": "\u521b\u9020\u4e00\u4e2a\u50cfRomain Lenancker\u4e00\u6837\u76843D\u52a8\u753b\u914d\u6599\uff0c\u5177\u6709\u6c34\u6ef4\u6548\u679c\uff0c\u5e76\u9644\u6709\u9ad8\u8d28\u91cf\u7684\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "0001523", "video_name": "1af806ad-fdd8-5e05-a1d7-0a05ebe06452", "text": "\u9a7c\u80cc\u9cb8\u5728\u9ed1\u8272\u80cc\u666f\u4e2d\u5411\u5c4f\u5e55\u6e38\u6cf3\u3002"} +{"id": "0001524", "video_name": "1afb15be-35f0-5df0-a2ab-dbc15091afb9", "text": "\u4ecb\u7ecd\u827e\u5c14\u838e\u53ca\u5979\u7684\u738b\u56fd\uff0c\u63d0\u5230\u5979\u5bf9\u9b54\u6cd5\u7684\u70ed\u7231\u3002"} +{"id": "0001525", "video_name": "1b019cba-4a81-564a-a89d-9d4d7e60820b", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u62ff\u7740\u6c14\u7403\u98de\u5411\u5929\u7a7a\u3002\u8d85\u7ea7\u903c\u771f\uff0c4K\u3002"} +{"id": "0001526", "video_name": "1b03a593-aa9d-5d54-b4ea-ae1b357d02fc", "text": "\u62ab\u8428\u76d2\u5b50\u5806\u5728\u4e00\u4e2a\u5e26\u82b1\u8fb9\u7684\u684c\u5b50\u4e0a\uff0c\u4e00\u4e2a\u5927\u578b\u6d3e\u5bf9\uff0c8k\u771f\u5b9e\uff0c\u76f8\u673a\u65cb\u8f6c90\u5ea6\u3002\u4fe1\u606f\uff1apizzaDAO\uff08\u5b57\u4f53"} +{"id": "0001527", "video_name": "1b084f9b-fc7f-559f-91be-318c82d0d266", "text": "\u68ee\u6797\u91cc\u5145\u6ee1\u4e86\u6d3b\u529b\uff0c\u670b\u53cb\u4eec\u7528\u9c9c\u8273\u7684\u989c\u8272\u548c\u56fe\u6848\u88c5\u9970\u4ed6\u4eec\u7684\u9e21\u86cb\u3002\u4ed6\u4eec\u6beb\u4e0d\u77e5"} +{"id": "0001528", "video_name": "1b085d36-2532-52e6-88d8-119a3914d72a", "text": "\u51ac\u5b63\u8df3\u821e\u7684\u5b69\u5b50\u4eec\u5728\u591a\u5f69\u7684\u98ce\u96ea\u4e2d\uff0c\u9762\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u95ea\u5149\u706f\u6548\u679c\uff0c"} +{"id": "0001529", "video_name": "1b098c68-ba4b-5447-b8be-27965da43e5d", "text": "\u7a7f\u7740\u7ea2\u8272\u793c\u670d\u7684\u5973\u58eb\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u8df3\u821e\uff0c\u827a\u672f\u611f\u5341\u8db3\u3002"} +{"id": "0001530", "video_name": "1b0c7e51-ffbb-5908-8d81-24f30b3d014b", "text": "\u5669\u68a6\u4e4b\u524d\u7684\u5723\u8bde\u8282\u98ce\u683c\u666f\u89c2\uff0c\u98ce\u5439\u96e8\u4e0b\u3002"} +{"id": "0001531", "video_name": "1b182453-da1f-50bf-a631-4b8a67a3587a", "text": "\u4e8c\u7ef4\u5361\u901a\u98ce\u683c\uff0c\u4e00\u53ea\u732b\u6b63\u5728\u5403\u9c7c\u3002"} +{"id": "0001532", "video_name": "1b228cee-b20c-5484-8f80-9fbd3b7c0954", "text": "\u6708\u7403\u66fe\u7ecf\u662f\u795e\u79d8\u7684\u8c61\u5f81\uff0c\u73b0\u5728\u5374\u9690\u85cf\u7740\u4e00\u4e2a\u4e0d\u65ad\u8fdb\u5316\u7684\u4eba\u5de5\u667a\u80fd\u7684\u90aa\u6076\u79d8\u5bc6\u3002"} +{"id": "0001533", "video_name": "1b29a610-6ee9-5edd-8178-64deeb03a7dc", "text": "\u4e00\u4e2a\u7531\u79cb\u53f6\u5236\u6210\u7684\u5973\u4eba\u548c\u4e00\u4e2a\u7531\u51b0\u5236\u6210\u7684\u7537\u4eba\u8df3\u821e\uff0c\u7535\u5f71\u7ea7\u522b\uff0c8K\u9ad8\u6e05\u6670\u5ea6\uff0c\u6c1b\u56f4\u8425\u9020\uff0c\u5bbd\u5e7f"} +{"id": "0001534", "video_name": "1b29e308-cbd1-5e9c-9098-40f22a17fbdd", "text": "\u4e00\u4f4d\u62e5\u6709\u68d5\u8272\u5934\u53d1\uff0c\u7eff\u8272\u773c\u775b\uff0c\u81ea\u4fe1\u5fae\u7b11\u7a7f\u7740\u88d9\u5b50\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u5728\u624b\u4e2d\u62ff\u7740\u624b\u673a\uff0c\u770b\u8d77\u6765\u6709\u4e9b"} +{"id": "0001535", "video_name": "1b3337d1-277c-519b-a4fe-43021bb38272", "text": "\u5929\u7a7a\u4e2d\u843d\u4e0b\u94b1\u7684\u5730\u65b9\u3002"} +{"id": "0001536", "video_name": "1b34ce2e-22c6-5510-b82f-ed5288332b5d", "text": "\u7528\u97e6\u6069\u00b7\u5df4\u6d1b\u97e6\u3001\u53e4\u65af\u5854\u592b\u00b7\u83ab\u7f57\u3001\u5f7c\u5f97\u00b7\u83ab\u5c14\u5df4\u8d6b\u3001\u5e03\u5e0c\u8036\u3001"} +{"id": "0001537", "video_name": "1b3f74e8-9711-5dc0-bfa2-06f5864d539b", "text": "\u4e00\u884c\u8682\u8681\u76f4\u7ebf\u884c\u8d70\u3002"} +{"id": "0001538", "video_name": "1b40838f-888e-5b6f-87fe-9d0864822a67", "text": "\u5404\u79cd\u989c\u8272\u7684\u91ce\u82b1\u5e94\u8be5\u70b9\u7f00\u5728\u666f\u89c2\u4e2d\uff0c\u521b\u9020\u51fa\u4e00\u7247\u81ea\u7136\u7684\u7ea2\u8272\u3001\u84dd\u8272\u3001\u7d2b\u8272\u548c\u9ec4\u8272\u7684\u5730"} +{"id": "0001539", "video_name": "1b42e142-082c-559f-8d56-bc2cc115cf6f", "text": "\u6770\u4f0a\u00b7\u96f7\u8bfa\u5f39\u7535\u5409\u4ed6\uff0c\u6234\u7740\u725b\u4ed4\u5e3d\u3002"} +{"id": "0001540", "video_name": "1b460844-c3a8-5ed2-a220-6ae468c8f09c", "text": "\u592a\u7a7a\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u4ed6\u5934\u76d4\u4e0a\u53cd\u5c04\u51fa\u4ee3\u7801\u3002\u5728\u9ed1\u6697\u4e2d\u3002"} +{"id": "0001541", "video_name": "1b5422b0-8127-56ec-b128-d52ca0f63563", "text": "\u5728\u96fe\u8499\u8499\u7684\u591c\u665a\uff0c\u72fc\u4eba\u5728\u6708\u4eae\u4e0a\u65b9\u3002"} +{"id": "0001542", "video_name": "1b545f71-b00e-582d-bdc5-2abca7eb1e9c", "text": "\u827e\u4e3d\u4e1d\u843d\u5165\u5154\u5b50\u6d1e\uff0c\u7f8e\u56fd\u9ea6\u57fa\u827e\u4e3d\u4e1d\u3002"} +{"id": "0001543", "video_name": "1b56a283-3c61-5aee-98e1-10d4e2d98536", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9ed1\u6697\u7684\u4e1b\u6797\u4e2d\u95f4\u4e0a\u706b\u8f66\u3002"} +{"id": "0001544", "video_name": "1b5f2864-933c-5921-9aef-fcba35e88620", "text": "\u4e00\u4e2a\u53ef\u7231\u5361\u901a\u7684\u72ec\u89d2\u517d\u6b63\u5728\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "0001545", "video_name": "1b5ffd2a-ec75-5e9d-a77a-964443f99957", "text": "\u66b4\u98ce\u96e8\u4e2d\u7684\u9ed1\u6697\u57ce\u5821\u884c\u52a8\u573a\u666f"} +{"id": "0001546", "video_name": "1b600e27-46bc-50dc-b5ce-1802bf062fa4", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684Psychrolutes marcidus\uff08\u8fd0\u52a8Blobfish\uff09\u7684\u4e09\u7ef4\u56fe\u50cf\u3002"} +{"id": "0001547", "video_name": "1b688511-f777-5453-bcc3-fcfb20b340b5", "text": "\u5728\u4e00\u4e2a\u6d1e\u7a74\u6c60\u5858\u91cc\uff0c\u4e00\u5927\u7fa4\u9c7c\u8df3\u51fa\u6c34\u9762\uff0c\u4eba\u4eec\u4e58\u8239\u53bb\u6355\u6349\u5b83\u4eec\uff01"} +{"id": "0001548", "video_name": "1b6bb7cb-4fbd-572f-9823-320ccd71af43", "text": "\u5916\u661f\u738b\u5728\u4e00\u5343\u82f1\u5c3a\u7684\u623f\u95f4\u5185\u5f00\u5ead\u5ba1\u5224\uff0c\u4f7f\u7528\u4f73\u80fdEOS R5\u62cd\u6444\uff0c\u7528\u4f73\u80fdEOS R5\u62cd\u6444\uff0c\u7528\u4f73"} +{"id": "0001549", "video_name": "1b6d922c-20a9-5822-9b38-adb125fbbc37", "text": "1952\u5e74\uff0c\u632a\u5a01\u7a7a\u519b\u6218\u673a\u5728\u65af\u5339\u6b21\u5351\u5c14\u6839\u8fdb\u884c\u6f14\u4e60\uff0c\u6444\u5f71\u955c\u5934\u3002"} +{"id": "0001550", "video_name": "1b6feaf2-ad18-50ae-be97-726e24901962", "text": "\u68ee\u6797\u4e2d\u751f\u957f\u7684\u8ff7\u5e7b\u8611\u83c7\uff0c\u4f1a\u4ea7\u751f\u89c6\u89c9\u5e7b\u89c9\u3002\u4fe1\u606f\uff1aMIDTRIP\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "0001551", "video_name": "1b7280e3-d58c-5407-914e-70151a9df85b", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u5ba2\u5385\u91cc\u6253\u9f13\u3002"} +{"id": "0001552", "video_name": "1b73a275-0ffe-5539-ac6d-079982bb663f", "text": "\u8001\u5f0f\u9ed1\u767d\u955c\u5934\u653e\u5927\uff0c\u805a\u7126\u5728\u4e00\u4e2a\u8001\u5f0f\u673a\u5668\u4eba\u505a\u624b\u52bf\u5e76\u8bf4\u8bdd\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u6709\u98de\u884c\u5668\u7684\u5de8\u578b\u57ce\u5e02\u3002\n\nSource sentence"} +{"id": "0001553", "video_name": "1b7e08a3-01f5-5a98-a0c5-6123ab337bc5", "text": "\u4eba\u4eec\u5728\u6d77\u6ee9\u4e0a\u770b\u65e5\u843d\u3002\u4fe1\u606f\uff1a\u8bf4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001554", "video_name": "1b8acf74-25c9-52e3-b19f-eace9e2abd83", "text": "\u53d8\u5f62\u91d1\u521a\u5df2\u7ecf\u638c\u63a7\u4e86\u4e16\u754c\u3002"} +{"id": "0001555", "video_name": "1b8cb9c2-2ca3-59d3-b2d9-bfb7eb158338", "text": "\u4e00\u4e2a\u53eb\u6bd4\u5229\u7684\u5e74\u8f7b\u7537\u5b69\u5728\u8302\u5bc6\u7684\u975e\u6d32\u4e1b\u6797\u4e2d\u6f2b\u65e0\u76ee\u7684\u5730\u5f98\u5f8a\uff0c\u4ed6\u7684\u8863\u670d\u7834\u70c2\u4e14\u5e03"} +{"id": "0001556", "video_name": "1b94ffb1-d286-51c1-b2b0-2d4c44c3a906", "text": "3\u4e2a\u8282\u70b9\u53ef\u4ee5\u62d6\u52a8\u5e76\u7528\u7ebf\u8fde\u63a5\u3002"} +{"id": "0001557", "video_name": "1ba83cbd-524e-5b37-8e78-b4ae71748ee7", "text": "\u4e00\u90e820\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u4e3b\u9898\u516c\u56ed\uff0c\u4e00\u5bb6\u4e09\u53e3\u5750\u5728\u90a3\u91cc\u5403\u7740\u70e4\u7389\u7c73\u548c"} +{"id": "0001558", "video_name": "1bab4d91-4096-5d4f-92dc-c5dfa959132a", "text": "\u4e00\u4e2a\u4e9a\u9a6c\u900a\u4ed3\u5e93\u673a\u5668\u4eba\u5728\u5206\u62e3\u76d2\u5b50\u3002"} +{"id": "0001559", "video_name": "1bac7314-edd7-5c0f-aa69-a6fb8af6da21", "text": "\u4e00\u7fa4\u9752\u5c11\u5e74\u4e0d\u5c0f\u5fc3\u8fdb\u5165\u4e86\u8fd9\u6240\u8001\u623f\u5b50\u795e\u79d8\u7684\u533a\u57df\u3002"} +{"id": "0001560", "video_name": "1bb2d3ba-6103-5519-90be-913b91e1ac5e", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u706f\u5149\u548c\u5e7f\u544a\u724c\u7684\u8352\u51c9\u57ce\u5e02\u91cc\uff0c\u8d70\u7740\u4e00\u4e2a\u9aa8\u7626\u5982\u67f4\u7684\u9ab7\u9ac5\uff0c\u903c\u771f\u7684"} +{"id": "0001561", "video_name": "1bb31a5a-b92e-5987-9f07-100d9074e925", "text": "\u773c\u775b\u8fd9\u4e2a\u56fe\u6848\u672c\u8eab\u6709\u7740\u66f4\u6df1\u539a\u7684\u5386\u53f2\u3002 \n\nSource sentence: The company is currently facing financial difficulties due to the pandemic. \n\n\u516c\u53f8\u76ee\u524d\u7531\u4e8e\u75ab\u60c5\u539f"} +{"id": "0001562", "video_name": "1bb66c61-0ec8-5f57-a21f-b40713a7823f", "text": "\u573a\u666f\uff1a\u5728\u6751\u5e84\u7684\u4e2d\u5fc3\u3002\u4eba\u7269\uff1aKena\u4e0e\u540d\u4e3aBeni\u3001Saiya\u7b49\u4eba\u4e92\u52a8\uff0c\u8054\u5408\u5e94\u5bf9\u8150\u8d25\u95ee\u9898\uff0c\u5e76\u5e2e\u52a9Taro\u3002"} +{"id": "0001563", "video_name": "1bba145b-88f2-54a6-aeaa-10bd2542b1fa", "text": "\u4e3a\u7f8a\u3001\u5154\u3001\u725b\u548c\u8001\u9f20\u521b\u9020\u72ec\u7279\u7684\u5f62\u8c61\uff0c\u7a81\u51fa\u5b83\u4eec\u7684\u4e2a\u6027\u7279\u5f81\u548c\u4e2a\u6027\u3002\u786e\u4fdd\u5b83\u4eec\u7684\u6446\u653e"} +{"id": "0001564", "video_name": "1bc763a6-2e7f-57d2-916b-71e8184e49bc", "text": "\u5409\u5179\u83ab\u5728\u4e00\u573a\u7535\u98ce\u66b4\u4e2d\u524d\u8fdb\u3002"} +{"id": "0001565", "video_name": "1bcb1317-cd2c-54e0-a30d-51ad3eee5a98", "text": "\u74f6\u4e2d\u7684\u9ed1\u871c\u6ef4\u843d\u5230\u6728\u8d28\u4e1b\u6797\u80cc\u666f\u4e0b\u7684\u73bb\u7483\u676f\u4e2d\uff0c\u8fd9\u662f\u8d85\u9ad8\u6e05\u5355\u53cd\u6444\u5f71\u3002"} +{"id": "0001566", "video_name": "1bcc6a30-4764-5134-9c34-0c30a8d09534", "text": "\u7814\u7a76\u4eba\u5458\u6b63\u5728\u5b9e\u9a8c\u5ba4\u7684\u8d70\u5eca\u4e0a\u8d70\uff0c\u5730\u677f\u662f\u4ee5\u4e4c\u6728\u4e3a\u6750\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "0001567", "video_name": "1bd36a3f-e81c-5502-8257-32ac00d2f877", "text": "\u53e4\u65e9\u672a\u6765\u611f\u7684\u592a\u7a7a\u98ce\u666f\uff0c\u5305\u542b\u7eda\u70c2\u7684\u9713\u8679\u661f\u7a7a\u300210\u79d2\u7684\u592a\u7a7a\u98de\u8239\u89c6\u89d2\u6e10\u53d8\u7684\u9713\u8679"} +{"id": "0001568", "video_name": "1bd56c40-840c-5ca1-9d22-24fb44de6355", "text": "\u7f8e\u4e3d\u7684\u65e5\u672c\u5973\u4eba\u62cd\u624b\u3002"} +{"id": "0001569", "video_name": "1bda2806-c570-5fc0-a67b-08528c38ccd2", "text": "\u4e00\u4e2a\u4eba\u6709\u4e00\u4e2a\u7075\u5149\u4e00\u95ea\u7684\u77ac\u95f4\u3002"} +{"id": "0001570", "video_name": "1bdac61b-c69a-53be-98ed-ea70a4f541bc", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u80dc\u5229\u6218\u58eb\uff0c\u624b\u6301\u4e00\u628a\u6cbe\u6ee1\u9c9c\u8840\u7684\u5251\uff0c\u5de6\u624b\u62ff\u7740\u4e00\u4e2a\u65ad\u5934\uff0c\u5e86\u795d\u7740\u80dc"} +{"id": "0001571", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "\u661f\u7cfb\uff0c\u661f\u661f\uff0c\u903c\u771f\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002\u6d88\u606f\uff1a\u8ba2\u9605 Y\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001572", "video_name": "1be05070-fec9-50a0-ad2b-3dd8177a6a3e", "text": "Translated sentence: \u4e00\u676f\u52a8\u8d77\u6765\u7684\u5976\u8336\u3002"} +{"id": "0001573", "video_name": "1be4cbdb-3480-5c79-93d9-bdde473e9e61", "text": "\u7528\u50cf\u7d20\u827a\u672f\u5448\u73b0\u4e00\u4e2a\u6ce2\u591a\u9ece\u5404\u7537\u5b50\u5728\u4e00\u95f4\u5c0f\u623f\u95f4\u91cc\u62ff\u7740\u67aa\u652f\u548c\u6e38\u620f\u8bbe\u5907\uff0c\u95e8\u88ab\u5c01\u95ed\uff0c\u8bd5"} +{"id": "0001574", "video_name": "1be934b9-48b7-50dd-9d0b-b939d6e732f7", "text": "4K\u56fe\u50cf\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u957f\u5377\u53d1\uff0c\u7f8e\u4e3d\u7684\u5fae\u7b11\uff0c\u68d5\u8272\u7684\u773c\u775b\u3002"} +{"id": "0001575", "video_name": "1bead16f-91ea-5ef0-a2d2-24771e25586e", "text": "\u661f\u7403\u5927\u6218\u7684\u82f1\u96c4\u4eec\u6b63\u5728\u7528\u5149\u5251\u6218\u6597\u3002\n\nSource sentence: The Great Wall of China is a popular tourist attraction. \n\n\u957f\u57ce\u662f\u4e00\u4e2a\u53d7\u6b22\u8fce\u7684\u65c5\u6e38"} +{"id": "0001576", "video_name": "1bf22076-06fb-58d1-bef2-d6c18f88e1c7", "text": "\u5c06\u6b64\u56fe\u7247\u7f16\u8f91\u5f97\u66f4\u52a0\u7cbe\u81f4\u3002"} +{"id": "0001577", "video_name": "1bf3ee2e-794f-5a76-ab93-fdcd326cf65a", "text": "\u5728\u57ce\u5821\u91cc\uff0c\u516c\u4e3b\u628a\u9879\u94fe\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u53ea\u5c0f\u4e4c\u9e26\u8eb2\u5728\u540a\u706f\u4e0a\u3002\u5168\u666f\uff0c\u5e73\u89c6\uff0c\u8679\u9713\u3002"} +{"id": "0001578", "video_name": "1bfa2eaa-d3f7-518b-9417-1f783113fcb7", "text": "\u7b2c\u56db\u6b21\u5de5\u4e1a\u9769\u547d\u7684\u8c61\u5f81\u662f\u516d\u8fb9\u5f62\u5f62\u72b6\u4e2d\u7684\u5706\u5708\uff0c\u9ec4\u8272\u4e3b\u9898\u3002"} +{"id": "0001579", "video_name": "1bfa5a6b-53a5-5950-a849-9801bc141f45", "text": "\u4e00\u4e2a\u4eba\u7269\u5728\u5b81\u9759\u7684\u73af\u5883\u4e2d\u51a5\u60f3\u3002"} +{"id": "0001580", "video_name": "1c069c4a-db68-5d09-96f1-7a9cc3df1951", "text": "\u4e00\u665a\u4e0a\uff0c\u4e00\u4e2a\u7537\u5b69\u770b\u7740\u6708\u4eae\u3002"} +{"id": "0001581", "video_name": "1c07a7c0-1396-5ab2-ba18-a58363b0d0dd", "text": "\u6211\u7684\u672a\u6765\u611f\u6362\u5c3f\u5e03\u57ab\u5347\u964d\u5f0f\u9ad8\u7aef\u751f\u6d3b\u673a\u5668\u4eba\u52a9\u624b\u3002"} +{"id": "0001582", "video_name": "1c0c6131-2c30-5b11-ada9-e1c1957b3fba", "text": "\u4e00\u4e2a\u4eba\u5230\u6c7d\u8f66\u7ecf\u9500\u5546\u53c2\u89c2\uff0c\u6700\u597d\u7684\u5f62\u8c61\u3002"} +{"id": "0001583", "video_name": "1c0d9abc-8464-5a65-983d-198be2b2408e", "text": "5\u53ea\u6591\u9a6c\u5728\u5403\u8349\u3001\u884c\u8d70\uff0c\u6e38\u620f\u8bbe\u7f6e\u4e3a20\uff0c\u52a8\u4f5c\u8bbe\u7f6e\u4e3a3\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0001584", "video_name": "1c103343-e8c5-5147-bd90-b8a90f085408", "text": "\u9ad8\u6982\u5ff5\u827a\u672f\uff1a\u4e00\u4e2a\u7531\u7b49\u79bb\u5b50\u4f53\u5236\u6210\u7684\u7acb\u65b9\u4f53\u5728\u4e00\u4e2a\u62cd\u6444\u7cbe\u7f8e\u7684\u6df7\u51dd\u571f\u4eba\u7269\u4e0a\u65b9\u95ea\u70c1\uff0c\u5c06\u660e"} +{"id": "0001585", "video_name": "1c13cd39-e15d-51e4-91ea-08f30530fe7c", "text": "\u628a\u6444\u50cf\u673a\u5411\u53f3\u79fb\u52a8\uff0c\u63ed\u793a\u51fa\u514b\u52b3\u65af\u00b7\u91d1\u65af\u57fa\u62ac\u5934\u6234\u7740\u7070\u5c18\u7684\u725b\u4ed4\u5e3d\uff0c\u7531Sergio Sol"} +{"id": "0001586", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "\u5b89\u9759\u7684\u65f6\u523b\u5728\u4e00\u4e2a\u5947\u5e7b\u7684\u57ce\u9547\u91cc\uff0c\u4ee5\u5bab\u5d0e\u9a8f\u98ce\u683c\u7684\u65e5\u5e38\u751f\u6d3b\u4e3a\u4e3b\uff0c\u6e29\u6696\u800c\u5145\u6ee1\u6d3b\u529b"} +{"id": "0001587", "video_name": "1c1eac79-8b44-5e59-b291-161ea7da671b", "text": "\u4e00\u8258\u98de\u8239\u5728\u5b87\u5b99\u4e2d\u98de\u901f\u7a7f\u884c\uff0c\u5e26\u6709\u5371\u9669\u548c\u7d27\u8feb\u611f\u3002"} +{"id": "0001588", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "\u8ba9\u8fd9\u4e2a\u4eba\u8bf4\u8bdd\uff0c\u6162\u6162\u5730\u6447\u5934\u3002"} +{"id": "0001589", "video_name": "1c26be3e-579d-50be-91e6-37db08d2d781", "text": "\u4e0e\u7236\u4eb2\u548c\u5973\u513f\u4e00\u8d77\u5728\u9633\u5149\u4e0b\u73a9\u4e50\u7684\u9b54\u5e7b\u65cb\u8f6c\u6728\u9a6c\u3002"} +{"id": "0001590", "video_name": "1c29fb92-72df-53a8-996f-8e1722b547f0", "text": "\u4e00\u4e2a\u7537\u4eba\u5403\u6ce5\u571f\u548c\u9762\u5305\u3002"} +{"id": "0001591", "video_name": "1c30737a-6de4-5c37-9882-650c4469b947", "text": "\u89d2\u8272\u626e\u6f14\u6e38\u620f\u684c\u4e0a\u53f2\u8bd7\u822c\u7684\u6218\u6597"} +{"id": "0001592", "video_name": "1c324803-a3d8-55d3-a690-d9e9c45b39f8", "text": "\u5916\u661f\u4eba\u7a7f\u7740\u76d4\u7532\u7ad9\u5728\u5bab\u6bbf\u524d\u5fae\u7b11\uff0c\u5bab\u6bbf\u706f\u5149\u7167\u8000\uff0c\u753b\u9762\u7f29\u5c0f\uff0c\u7b49\u5f852\u79d2\u540e\u518d\u653e\u5927\u3002"} +{"id": "0001593", "video_name": "1c35392b-aada-50a4-aa77-eb093e972d14", "text": "\u9ad8\u54c1\u8d28\u7684\u5f71\u50cf\u7535\u5f71\uff0c\u4e00\u540d\u5973\u5b50\u5750\u5728\u4e00\u7247\u5145\u6ee1\u76db\u5f00\u5170\u82b1\u7684\u98d8\u6d6e\u82b1\u56ed\u4e2d\uff0c\u5468\u56f4\u4e91\u96fe\u7f2d"} +{"id": "0001594", "video_name": "1c378d31-6eec-54a9-a4a4-fdd3433dfb68", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e24\u4e2a\u5e74\u8f7b\u7684\u4e9a\u6d32\u7537\u5973\u5728\u9152\u5427\u91cc\u559d\u5f88\u591a\u74f6\u5564\u9152\u3002"} +{"id": "0001595", "video_name": "1c3944fc-d1f6-5d12-87f9-a9f2ee210c1d", "text": "\u8d85\u903c\u771f\u76844K\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4f4d\u7a7f\u7740\u5e0c\u8d3e\u5e03\u7684\u5e74\u957f\u7a46\u65af\u6797\u5987\u5973\u4ece\u4e00\u4f4d\u7a7f\u7740\u9002\u5f53\u670d\u88c5\u7684\u5e74"} +{"id": "0001596", "video_name": "1c3d9994-bdf1-5c05-8266-fb58c70c1328", "text": "\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\uff0c\u4e00\u652f\u5171\u4ea7\u4e3b\u4e49\u519b\u961f\u7a7f\u8fc7\u96ea\u6797\u7684\u8ff7\u5e7b\u8d858\u5f55\u50cf\u3002"} +{"id": "0001597", "video_name": "1c3dc4e4-9e24-5c1e-b7b6-0e3404dda2da", "text": "\u5144\u5f1f\u548c\u7236\u4eb2\u6309\u7167\u300a\u5723\u7ecf\u300b\u7684\u65b9\u5f0f\u53bb\u9493\u9c7c\u3002"} +{"id": "0001598", "video_name": "1c4499a8-bfb6-5885-87de-dc8c27a080f2", "text": "\u7528\u9b54\u6756\u7684\u5deb\u5e08\uff0c\u5728\u6ce5\u5730\u9644\u8fd1\u6f02\u6d6e\uff0c\u7535\u5f71\u98ce\u683c\uff0c4k\uff0c\u7f29\u5c0f\u955c\u5934\u3002"} +{"id": "0001599", "video_name": "1c466441-69ed-5675-b250-3d235eabde65", "text": "\u7167\u4eae\u6d69\u514b\u4e0e\u4e00\u7fa4\u6b66\u88c5\u96c7\u4f63\u5175\u4e4b\u95f4\u7684\u5bf9\u6297\u3002"} +{"id": "0001600", "video_name": "1c46f03a-58e0-5c71-b642-c4db7ff6e053", "text": "\u5728\u4e00\u4e2a\u96ea\u5929\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u9a7e\u9a76\u7740\u4e00\u8f86\u8dd1\u8f66\u53bb\u5546\u5e97\u4e70\u9c7c\u5403\u3002"} +{"id": "0001601", "video_name": "1c4c6890-a5cf-5dc7-a66a-14590d34ac51", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u8bf4\uff1a\u201c\u6211\u975e\u5e38\u7231\u4f60\uff0c\u8fbe\u7433\u5a1c\u3002\u201d"} +{"id": "0001602", "video_name": "1c607a2a-0d7e-5c0c-b682-3bd9360922dd", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u5916\u661f\u4eba\u8eab\u7a7f\u767d\u84dd\u8272\u8fde\u4f53\u670d\uff0c\u914d\u5907\u9ad8\u79d1\u6280\u8bbe\u5907\uff0c\u5750\u5728\u5b9e\u9a8c\u5ba4\u7684\u684c\u5b50\u540e\u9762\uff0c\u76f4\u89c6\u7740"} +{"id": "0001603", "video_name": "1c616296-7a52-5609-8cb8-54fc041a0725", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u5bfa\u5e99\uff0c\u6709\u4e09\u4e2a\u7403\u4f53\u4f9b\u80fd\u3002"} +{"id": "0001604", "video_name": "1c636a32-8250-5858-824b-b5c9790cece0", "text": "\u7684\u827a\u672f\u7535\u5f71\u9662\uff0c\u670b\u514b\uff0c\u5947\u602a\u7684\u8bbe\u8ba1\uff0c\u5370\u5237\u5b57\u4f53\uff0c\u52a8\u6001\u6d77\u62a5"} +{"id": "0001605", "video_name": "1c65a307-8d8a-5824-a0c1-7a1d70a214b8", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u5c71\u95f4\u7684\u4e61\u6751\u5c0f\u9547\u7684\u98ce\u666f\u7167\u3002"} +{"id": "0001606", "video_name": "1c665f2a-9cd9-53e4-98e0-cc5d1a9c2edf", "text": "\u4e00\u5e45\u8239\u5728\u6c34\u4e2d\u5728\u6076\u52a3\u5929\u6c14\u4e2d\u822a\u884c\u7684\u7ed8\u753b"} +{"id": "0001607", "video_name": "1c6aad58-eb5e-5424-a706-5548dfc69414", "text": "\u7537\u5b50\u5728\u5899\u4e0a\u6d82\u9e26\u3002"} +{"id": "0001608", "video_name": "1c6fa44e-1f8a-5b1b-a1e2-57a164bea31d", "text": "translation: \u5728\u4e00\u4e2a\u66b4\u98ce\u96e8\u7684\u661f\u7403\u4e0a\u7a7a\uff0c\u5e1d\u56fd\u6b7c\u661f\u8230\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "0001609", "video_name": "1c73765a-2878-55e1-a89c-e348ff9bbddc", "text": "\u4e00\u4e2a\u8d2b\u7a77\u7684\u7537\u5b69\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u3002"} +{"id": "0001610", "video_name": "1c77602f-22fd-5398-b820-77d57e05c46e", "text": "\u6eda\u52a8 Instagram\uff0c\u51e0\u4e4e\u6ca1\u6709\u6e05\u9192\u3002\u4e00\u4e2aPOV\u955c\u5934\u3002"} +{"id": "0001611", "video_name": "1c7efb23-af7c-5b59-91bc-0f099d434e80", "text": "\u5728\u5927\u8c61\u95e8\u6751\u5e84\u9644\u8fd1\uff0c\u4ed6\u4eec\u5728\u665a\u4e0a\u8d70\u8fd1\u4e86\u95f9\u9b3c\u7684\u623f\u5b50\u3002Rajiv\u611f\u5230\u7126\u8651\uff0c\u4f46Bhavesh\u9f13"} +{"id": "0001612", "video_name": "1c80bc1b-6e00-546e-bc09-0750e7c6aefc", "text": "\u4e00\u53ea\u7eff\u8272\u7684\u8815\u866b\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\u4e00\u6837\uff0c\u51b3\u5b9a\u63a2\u7d22\u4e16\u754c\u3002"} +{"id": "0001613", "video_name": "1c83015d-e42a-5578-afc5-b5e7cdad4ea0", "text": "\u62c9\u62c9\u00b7\u514b\u7f57\u592b\u7279\u624b\u6301\u53cc\u67aa\uff0c\u7a7f\u7740\u5979\u7684\u7ecf\u5178\u670d\u88c5\u5954\u8dd1\u7740\u3002"} +{"id": "0001614", "video_name": "1c83d234-e09f-5e85-8263-1b45f39ac5a4", "text": "\u5728\u4e00\u4e2a\u6709\u767d\u8272\u623f\u5b50\u7684\u793e\u533a\u91cc\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u5411\u4ed6\u7684\u623f\u5b50\u3002"} +{"id": "0001615", "video_name": "1c85e4bd-d87d-5130-af26-534fce9446ff", "text": "\u516c\u9e21\u53e3\u4e2d\u53fc\u7740\u4e00\u4e2a\u88c5\u6ee1\u91d1\u5e01\u7684\u888b\u5b50\uff0c\u6cbf\u7740\u8def\u8d70\u53bb\u3002"} +{"id": "0001616", "video_name": "1c9213ba-71c8-5c00-a239-22e8e630485e", "text": "\u732b\u5973\u5728\u9ed1\u8272\u6469\u6258\u8f66\u4e0a\u7ed5\u7740\u57ce\u5821\u72c2\u98d9\u3002"} +{"id": "0001617", "video_name": "1c92ab43-d93f-59a1-8a96-d739889d196c", "text": "\u4e00\u4e2a\u4e2d\u56fd\u7537\u5b50\u7a7f\u7740\u4f20\u7edf\u76d4\u7532\u5728\u6218\u573a\u4e0a\u6218\u6597\u3002"} +{"id": "0001618", "video_name": "1c98d6ab-616f-517b-b63c-c4000d3ff951", "text": "\u6b66\u58eb\u5bf9\u5fcd\u8005\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c4k \u5206\u8fa8\u7387\uff0c\u8bbe\u5b9a\u5728\u6a31\u82b1\u6811\u9644\u8fd1\u3002"} +{"id": "0001619", "video_name": "1c9bbaa2-4a79-5e97-ba9f-6a91d0bfb245", "text": "\u8774\u8776\u548c\u91d1\u53d1\u7cbe\u7075\u4e00\u8d77\u98de\u7fd4\uff0c3D\u52a8\u753b\u3002"} +{"id": "0001620", "video_name": "1c9bdfd7-3838-5df6-b53f-81d0109752a7", "text": "\u4e00\u7fa4\u5927\u8c61\u8d70\u8fc7\u4e00\u7247\u9760\u8fd1\u6c34\u57df\u7684\u7530\u91ce\u3002"} +{"id": "0001621", "video_name": "1c9c60c5-9ef4-5c54-b40e-1129b6963100", "text": "\u8bf7\u66f4\u6362\u89c6\u9891\u4e2d\u6a21\u7279\u7684\u670d\u88c5\u3002"} +{"id": "0001622", "video_name": "1ca65663-6fa4-59b1-9593-b7dd43baf8c4", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u955c\u5934\u62c9\u8fd1\u5230\u5728\u68ee\u6797\u91cc\u8eba\u7740\u7684iPhone\u4e0a\uff0c3D\u52a8\u753b\uff0c16:9\u3002"} +{"id": "0001623", "video_name": "1cb34776-a8ad-586c-aae1-b8feb193d100", "text": "\u5feb\u4e50\u50f5\u5c38\u56e2\u961f\u5361\u901a\u8ffd\u9010\u9e1f\u7c7b\u3002"} +{"id": "0001624", "video_name": "1cb7753e-0aae-59e3-ae44-c6f0d21f6646", "text": "\u4fef\u89c6\u4e00\u4e2a\u8eba\u5728\u77f3\u5934\u4e0a\u7684\u4eba\u3002"} +{"id": "0001625", "video_name": "1cbcf042-7c5b-50cf-96f8-032637ce6ecd", "text": "\u65cb\u8f6c\u5404\u79cd\u4e0d\u540c\u56fe\u6848\u7684\u66fc\u9640\u7f57\u7f8e\u5b66\u989c\u8272\u768410\u5206\u949f\u7f8e\u5b66\u89c6\u9891\uff1a\u6697\u73ab\u7470\u8272\uff0c\u9f20\u5c3e\u8349\u7eff\u8272\uff0c"} +{"id": "0001626", "video_name": "1cc7a34e-b27f-55e1-b711-f53b88505bf6", "text": "\u7537\u4eba\u7684\u52a8\u753b\uff0c\u5927\u7b11\u7740\uff0c\u9732\u51fa\u5bbd\u9614\u7684\u5fae\u7b11\uff0c\u7728\u773c\u775b\u3002"} +{"id": "0001627", "video_name": "1cc8745b-00c3-542e-8e7e-edf09806f8fc", "text": "\u4e00\u540d\u7537\u5b50\u548c\u4e00\u540d\u5973\u5b50\u624b\u7275\u624b\u5728\u5e02\u4e2d\u5fc3\u7684\u8857\u9053\u4e0a\u6563\u6b65\u3002"} +{"id": "0001628", "video_name": "1cc947b4-13fe-5c31-8d6a-f58c36f65e14", "text": "\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u52a8\u6001\u5fc3\u5f62\u7684\u5976\u6cb9\u5496\u5561\u3002"} +{"id": "0001629", "video_name": "1cd5f988-4b8e-56ca-acd2-cd743f174646", "text": "\u5206\u533a\u9ed1\u6697\u5730\u5e26\u4e0b\u96ea\u66b4\u98ce\u96ea\uff0c\u6709\u6c34\u5751\u3002"} +{"id": "0001630", "video_name": "1cdbc83e-fc54-5b95-89d3-caf1524b77c4", "text": "\u4e00\u4f4d\u6b4c\u624b\u5728\u5531\u6b4c\uff0c\u80cc\u666f\u662f\u68ee\u6797\u3002"} +{"id": "0001631", "video_name": "1ce62fb4-0d69-5060-80b3-ca0289eafad0", "text": "\u4e00\u4e2a\u4fc4\u7f57\u65af\u58eb\u5175\u7ad9\u5728\u6218\u573a\u4e0a\uff08\u58eb\u5175\u7ad9\u5728\u4e2d\u95f4\uff09\uff0c\u624b\u91cc\u63e1\u7740\u4e00\u4f4d\u53d7\u4f24\u7684\u6218\u53cb\u3002"} +{"id": "0001632", "video_name": "1ce962c0-a3f7-580b-acb9-eaaf33ff1415", "text": "\u4e24\u4e2a\u5144\u5f1f\u5728\u8857\u4e0a\u9a91\u81ea\u884c\u8f66\uff0c\u901f\u5ea6\u5f88\u5feb\u3002"} +{"id": "0001633", "video_name": "1cf16905-adb0-563a-98af-bbe0a59a30f4", "text": "\u4e00\u540d\u4e2d\u5e74\u5987\u5973\uff0c\u68d5\u8272\u5934\u53d1\u548c\u6e29\u6696\u7684\u8138\u5b54\uff0c\u5728\u79cb\u5929\u7684\u6797\u95f4\u5c0f\u9053\u4e0a\u72ec\u81ea\u884c\u8d70\uff0c\u9ec4\u660f\u65f6\u5206"} +{"id": "0001634", "video_name": "1cf2114d-5747-525b-bd40-ac40dd27156f", "text": "\u9634\u9633\u9010\u6e10\u878d\u5408\u6210\u592a\u6781\u56fe\u3002"} +{"id": "0001635", "video_name": "1cf65fcf-ea6b-5e88-9a19-707f35373059", "text": "\u7ea2\u8840\u7403\u548c\u767d\u8840\u7403\u5728\u8840\u6d46\u4e2d\u7684\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "0001636", "video_name": "1cf6b570-b4d2-518e-9e46-b171751484ce", "text": "\u4e00\u53ea\u8001\u9f20\u5403\u7740\u5976\u916a\uff0c4k\u30018k\u3001\u8d85\u8be6\u7ec6\u3001\u5361\u901a\u3001\u52a8\u6f2b\u3001\u8fea\u58eb\u5c3c\u3002"} +{"id": "0001637", "video_name": "1cf9f9cc-f4fc-58ec-b00e-c7473713cab9", "text": "Source sentence: \u6b66\u58eb\u884c\u8d70\u3001\u9e1f\u513f\u98de\u7fd4\u3001\u5154\u5b50\u5403\u4e1c\u897f\u3001\u9a6c\u5947\u7279\u52a8\u753b\u3002"} +{"id": "0001638", "video_name": "1cfb95c5-c518-595c-9e18-dc937124a571", "text": "\u57ce\u9547\u91cc\u7684\u4eba\u4eec\u5f00\u59cb\u5fae\u7b11\uff0c\u9633\u5149\u4e5f\u66f4\u52a0\u660e\u4eae\u3002"} +{"id": "0001639", "video_name": "1d0c6870-8c8d-5586-9def-a2fd47991081", "text": "\u5c55\u793aStingray\u548cStarfish\u624b\u7275\u624b\uff0c\u52c7\u6562\u5730\u5192\u9669\u8fdb\u5165\u91cc\u9762\u3002"} +{"id": "0001640", "video_name": "1d11b64c-56e1-5755-afaa-ea952e508a4f", "text": "\u4e00\u53ea\u767d\u8272\u7684\u72d0\u72f8\u7a7f\u8fc7\u76ae\u80a4\uff0c\u903c\u771f\u7684\u6e32\u67d3\uff0c4K\uff0cUHD\uff0c9:16\u3002"} +{"id": "0001641", "video_name": "1d11d9c1-73bc-5f32-9652-0df26f652e57", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u963f\u7ea6\u63d0\u4e9a\u5bfa\u5e99\u524d\u7948\u7977\uff0c\u753b\u9762\u653e\u5927\uff0c\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "0001642", "video_name": "1d1538e0-3a52-5533-8eb0-b94571745698", "text": "\u7535\u68af\u5185\u90e8\uff0c\u95e8\u5df2\u5173\u95ed\uff0c\u611f\u89c9\u5c31\u50cf\u4f60\u5728\u91cc\u9762\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u7535\u5f71\u5f0f\u3002"} +{"id": "0001643", "video_name": "1d1d817a-057d-5012-9da2-8242c9fd5fed", "text": "\u4e00\u67b6\u519b\u7528\u673a\u68b0\u673a\u5668\u4eba\u5728\u591c\u665a\u7684\u8d5b\u535a\u670b\u514b\u8857\u533a\u4e2d\u5c55\u5f00\u5e76\u7ad9\u7acb\u8d77\u6765\uff0c\u6620\u886c\u5728\u9713\u8679\u706f"} +{"id": "0001644", "video_name": "1d2d262a-030d-52ea-90b0-3b6ed1878e5b", "text": "\u52a8\u753b\u7247\u4ece\u4e00\u4e2a\u8212\u9002\u7684\u5367\u5ba4\u5f00\u59cb\uff0c\u660f\u6697\u7684\u591c\u706f\u6563\u53d1\u7740\u6e29\u6696\u7684\u5149\u8292\uff0c\u8fd9\u662f\u5bab\u5d0e\u9a8f"} +{"id": "0001645", "video_name": "1d2fa903-8bc1-57cf-83e6-95a5f246c1fa", "text": "\u4e00\u4f4d\u975e\u6d32\u88d4\u7f8e\u56fd\u5973\u6027\u6b63\u5728\u6f2b\u6b65\u5e76\u4eab\u53d7\u9633\u5149\u3002"} +{"id": "0001646", "video_name": "1d325394-e7c9-54c7-969b-6a3b214409d2", "text": "\u4e2d\u666f\u955c\u5934\uff0c\u9ec4\u8272\u6db2\u4f53\u503e\u6cfb\u8fdb\u4e00\u6b3e\u767d\u8272\u5e72\u51c0\u7684\u7f8e\u6807\u9a6c\u6876\uff0c\u4ee5\u65f6\u95f4\u52a0\u901f\u62cd\u6444\u3002"} +{"id": "0001647", "video_name": "1d37a147-5b0a-51de-8b67-33114ff2a7cc", "text": "\u4f0a\u5229\u4e9a\u5931\u53bb\u4e86\u6240\u6709\u8d4c\u535a\u8d5a\u6765\u7684\u94b1\u3002"} +{"id": "0001648", "video_name": "1d3c398b-ae5d-551b-8ca1-0235658b28ae", "text": "\u706b\u5f71\u5fcd\u8005\u6f29\u6da1\u9e23\u4eba\u5728\u4e00\u7897\u62c9\u9762\u4e0a\u7528\u9910\uff0c\u4e00\u5fc3\u5802\u98ce\u683c\uff0c\u6dfb\u52a05\u79d2\uff0c\u9ad8\u6e05\u3002"} +{"id": "0001649", "video_name": "1d543627-5c2a-5569-a5ea-0ef39b8ebed8", "text": "\u7528\u9632\u6c34\u978b\u80f6\u5957\u5236\u4f5c\u4e00\u4e2a\u77ed\u89c6\u9891\u5e7f\u544a\u3002"} +{"id": "0001650", "video_name": "1d5c855b-82a2-51b7-8c0d-8e3f74d62c66", "text": "\u5979\u770b\u8d77\u6765\u5f88\u5bb3\u6015\uff0c\u67091970\u5e74\u4ee3\u6050\u6016\u7535\u5f71\u7684\u6c1b\u56f4\u3002"} +{"id": "0001651", "video_name": "1d5dacb0-b0af-57f9-ad2e-e1f89fdc9ff2", "text": "\u6885\u897f\u5728\u6b27\u51a0\u51b3\u8d5b\u4e2d\u5bf9\u9635\u5c24\u6587\u56fe\u65af\u6253\u8fdb\u4e86\u8fdb\u7403\u3002"} +{"id": "0001652", "video_name": "1d5dde86-47d7-539d-b9d4-fd3d528251b8", "text": "\u60f3\u8c61\u72ee\u5b50\u4ece\u9ad8\u5904\u773a\u671b\u4ed6\u7684\u738b\u56fd\uff0c\u4ed6\u7684\u76ee\u5149\u575a\u5b9a\u800c\u777f\u667a\u3002"} +{"id": "0001653", "video_name": "1d6676b7-23c5-5431-bc97-aaf0afd07f69", "text": "\u6d6a\u6f2b\u7684\u6c99\u6ee9\u65e5\u843d\u6563\u6b65\uff0c\u6b4c\u8bcd\u53cd\u6620\u7740\u4e24\u4e2a\u4eba\u4e4b\u95f4\u7684\u5f3a\u70c8\u8054\u7cfb\u3002"} +{"id": "0001654", "video_name": "1d77fbdb-9075-54d3-88ab-4540be2eae7b", "text": "\u9ad8\u54c1\u8d28\uff1a1.4\uff0c\u6700\u4f73\u54c1\u8d28\uff1a1.4\uff0c\u6770\u4f5c\uff1a1.4\uff0c\u5b98\u65b9\u827a\u672f\uff0c\u5b98\u65b9\u58c1\u7eb8\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c"} +{"id": "0001655", "video_name": "1d7a89e4-db8a-51f8-8f94-8c04e2057617", "text": "\u4e91\u6735\u7f13\u6162\u79fb\u52a8\u7684\u7535\u5f71\u6162\u52a8\u4f5c \u4fe1\u606f\uff1a\u4e50\u8da3\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0001656", "video_name": "1d7f2dcf-93b2-5316-8ee1-2737e985c389", "text": "73\u5c81\u7684\u6cf0\u8fea\u00b7\u5f6d\u5fb7\u683c\u62c9\u65af\u9762\u5411\u6444\u50cf\u673a\u8c08\u8bdd\uff0cYouTube\u89c6\u9891\uff0c\u91c7\u8bbf\uff0c\u80a9\u90e8\u9ad8\u5ea6\u62cd\u6444\uff0c2023\u5e74\u3002"} +{"id": "0001657", "video_name": "1d812c12-1759-5711-9372-3e6615afe923", "text": "\u5deb\u5e08\u73a9\u7740\u795e\u5947\u7684\u68cb\u76d8\u6e38\u620f\uff0c\u8ba8\u8bba\u5492\u8bed\u548c\u8bc5\u5492\u3002"} +{"id": "0001658", "video_name": "1d8267b8-ce35-58d4-9c02-ad0c657547ea", "text": "\u519b\u5b98\u548c\u58eb\u5175\u4eec\u7ad9\u7740\u5411\u5e9f\u589f\u656c\u793c\u3002"} +{"id": "0001659", "video_name": "1d864bd5-9d90-5791-b205-b2ee853802c8", "text": "\u6c7d\u8f66\u9a76\u8fc7\u7ecf\u5178\u7f8e\u56fd\u793e\u533a\u3002"} +{"id": "0001660", "video_name": "1d884f43-263a-5117-9d9c-25a2c7a1d9ca", "text": "\u7f57\u7eb3\u5c14\u591a\u548c\u963f\u65af\u5170\u4e00\u8d77\u8e22\u7403\uff0c\u903c\u771f\u7684\u8d85\u7ea7\u56fe\u5f62\u3002"} +{"id": "0001661", "video_name": "1d896e58-81c8-512f-b8d8-a3bfde7dcfb8", "text": "\u4e00\u4e2a\u7559\u7740\u957f\u80e1\u5b50\u7684\u8001\u4eba\u5750\u5728\u53e4\u8001\u7684\u56fe\u4e66\u9986\u91cc\uff0c\u7528\u4e00\u652f\u5927\u7b14\u5728\u4e66\u91cc\u5199\u4e9b\u4ec0\u4e48\u3002\u4fa7\u9762\u89c6\u56fe\u3002\u53d9\u8ff0\u9ed1"} +{"id": "0001662", "video_name": "1d938b91-4b38-5270-a35b-470be8ea86c0", "text": "\u4e3aDream Light Photo Design\u521b\u5efa\u4e00\u4e2a\u5b57\u6bcd\u5f62\u5f0f\u7684Logo\uff0c\u4ee3\u8868\u7740\u5353\u8d8a\u7684\u6444\u5f71\u6280\u672f\u548c\u521b\u610f\u8bbe\u8ba1\u80fd\u529b\u3002"} +{"id": "0001663", "video_name": "1d9433e1-1ab1-59ce-b213-f333458bbdf1", "text": "\u4e0a\u5e1d\u6e7f\u5a46\u6b63\u5728\u51a5\u60f3\uff0c\u5929\u6c14\u7a81\u7136\u53d8\u5316\uff0c\u4e00\u6761\u86c7\u51fa\u73b0\u4e86\uff0c\u4f46\u86c7\u6ca1\u6709\u54ac\u4e0a\u5e1d\u6e7f\u5a46\u3002\u8fd9"} +{"id": "0001664", "video_name": "1d971720-9d3a-5bcb-952c-ad3e8f77b412", "text": "\u4e00\u540d\u5973\u5b50\u5750\u5728\u516c\u56ed\u91cc\u8bfb\u4e66\u3002\u51e0\u4e2a\u7537\u4eba\u4ece\u5979\u8eab\u8fb9\u7ecf\u8fc7\u5e76\u5bf9\u5979\u8bf4\u8bdd\uff0c\u4f46\u5979\u4e0d\u7406\u776c\u4ed6\u4eec\uff0c\u7ee7\u7eed\u770b\u4e66"} +{"id": "0001665", "video_name": "1d982010-dde3-5a9f-8a2d-432a3ea0f3d1", "text": "\u4e00\u5ea7\u6728\u5c4b\u5750\u843d\u5728\u68ee\u6797\u7684\u8fb9\u7f18\uff0c\u7a97\u6237\u900f\u51fa\u5fae\u5f31\u7684\u5149\u4eae\u3002\u5c4b\u5185\u4e00\u5bb6\u4eba\u56f4\u5750\u5728\u684c"} +{"id": "0001666", "video_name": "1da5f63c-969c-566a-8f51-fb0c712bfc91", "text": "\u52a8\u753b\u7248\u7684\u5c0f\u7537\u5b69\u56fe\u7247"} +{"id": "0001667", "video_name": "1da901ca-0e33-50d9-8e14-afb4cd9b200e", "text": "\u4e00\u4e2a\u6c34\u624b\u7684\u6545\u4e8b\uff0c\u4ed6\u5728\u6d77\u91cc\u6e38\u6cf3\u4e86\u4e94\u5e74\u540e\u56de\u6765\u770b\u4ed6\u7684\u5bb6\u4eba\u3002\n\nSource sentence: The restaurant is closed on Sundays. \n\u9910\u5385\u661f\u671f\u5929\u5173\u95e8\u3002"} +{"id": "0001668", "video_name": "1da98552-3c76-56cf-be8c-f242e8f44628", "text": "\u4ece\u5929\u7a7a\u5f80\u4e0b\u770b\u91d1\u5b57\u5854\uff0c\u4f60\u4f1a\u770b\u5230\u4e00\u4e2a\u7559\u7740\u5c0f\u80e1\u5b50\u7684\u7537\u4eba\u7a7f\u7740\u4f18\u96c5\u7684\u897f\u88c5\u548c\u9ad8\u9876\u793c\u5e3d\uff0c\u8d2a"} +{"id": "0001669", "video_name": "1da9fc41-9f0a-566e-aa61-4b1db4344bcc", "text": "3D\u7248\u672c\u7684\u7ec6\u83cc\u548c\u7ec6\u83cc\u7fa4\u3002"} +{"id": "0001670", "video_name": "1daa61d4-560f-5f98-bca5-7269023170d4", "text": "\u963f\u6cfd\u8389\u4e9a\u00b7\u73ed\u514b\u65af\u4e0e\u5c3c\u57fa\u00b7\u7c73\u5a1c\u5435\u67b6\u3002"} +{"id": "0001671", "video_name": "1dbfbc4c-4e6e-5066-90ad-c7dfb63884d4", "text": "\u4e00\u4e2a\u5370\u5ea6\u5973\u5b69\u5728\u7535\u5f71\u821e\u53f0\u4e0a\u5f39\u594f\u8d1d\u65af\u7684\u795e\u79d8\u573a\u666f\u3002"} +{"id": "0001672", "video_name": "1dc44015-2f8e-5890-b0e7-939a1225cb22", "text": "\u5e02\u573a\u8425\u9500\u4eba\u5458\u6b63\u5728\u5f00\u5c55\u4e00\u9879\u65b0\u7684\u8f6f\u4ef6\u9879\u76ee\uff0c\u8fd9\u5c06\u6539\u53d8\u4e16\u754c\u3002"} +{"id": "0001673", "video_name": "1dcbd29e-f789-5009-91b6-5703a901a8fe", "text": "\u665a\u4e0a\u9b3c\u602a\u73af\u7ed5\u7684\u8def\u4e0a\u53d1\u751f\u4e86\u4e8b\u6545\uff0c\u4ee4\u4eba\u5bb3\u6015\u3002"} +{"id": "0001674", "video_name": "1dcbe376-cf92-5ac2-a1c8-caaabd867d34", "text": "\u5c0f\u4e11\u5750\u5728\u6251\u514b\u724c\u684c\u65c1\u3002"} +{"id": "0001675", "video_name": "1dcec45e-c589-5d57-998a-1e7c4f8db8c5", "text": "\u4eba\u5f62\u667a\u80fd\u4f53\u5728\u706b\u4e0a\u770b\u7535\u5f71\u3002"} +{"id": "0001676", "video_name": "1ddac8dd-6c8d-53fd-ba79-4fa5e72863e6", "text": "\u5728\u4ed6\u6b7b\u4ea1\u7684\u90a3\u4e00\u77ac\u95f4\uff0c\u5f00\u7f57\u6240\u6709\u7684\u706f\u795e\u79d8\u5730\u7184\u706d\u4e86\uff0c\u5728\u4e24\u5343\u82f1\u91cc\u5916\u7684\u82f1\u683c\u5170\uff0c\u5361\u7eb3"} +{"id": "0001677", "video_name": "1ddb8cda-ac73-58f8-97e0-2926a3435039", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u7cbe\u7075\uff0c\u5723\u8bde\u5b69\u5b50\u7cbe\u7075\uff0c\u5927\u8033\u6735\uff0c\u7a7f\u7740\u7c89\u8272\u548c\u91d1\u8272\u88c5\u9970\u7684\u8863\u670d\uff0c"} +{"id": "0001678", "video_name": "1ddd3b82-9d9d-5e1a-ae4e-851bbc530e38", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u4e0d\u5728\u5730\u7403\u4e0a\n\nSource sentence: I love you more than anything in this world\n\u6211\u7231\u4f60\u80dc\u8fc7\u4e16\u4e0a\u4efb\u4f55\u4e8b\u7269"} +{"id": "0001679", "video_name": "1de55e82-a5a7-5a02-86b5-469b135c6614", "text": "\u75283D\u89d2\u8272\u5448\u73b0\uff0c\u4e00\u4e2a\u5b66\u751f\u5750\u5728\u6559\u5ba4\u7a97\u8fb9\uff0c\u770b\u7740\u8d70\u8fc7\u7a97\u5916\u7684\u540c\u5b66\u4eec\u3002"} +{"id": "0001680", "video_name": "1deb66bc-454b-56ba-8d85-0caaf0922d1d", "text": "\u4e00\u4e2a\u4ee5\u8fd9\u5f20\u7167\u7247\u4e3a\u57fa\u7840\u7684\u89c6\u9891\uff0c\u5448\u73b0\u51fa\u4e00\u79cd\u8fd0\u52a8\u611f\uff0c\u4eff\u4f5b\u706b\u8f66\u5728\u524d\u8fdb\uff0c\u8425\u9020\u51fa\u865a\u6784\u7684\u573a\u666f\u3002"} +{"id": "0001681", "video_name": "1dee70da-1c6d-5222-ac1e-f312261b3bba", "text": "\u8fd9\u53ea\u503e\u542c\u7684\u72ee\u5b50\u53d7\u5230\u60ca\u5413\uff0c\u4ece\u90a3\u91cc\u7ad9\u4e86\u8d77\u6765\u3002"} +{"id": "0001682", "video_name": "1df414dd-d0c5-55aa-af9b-e73d46695cc5", "text": "\u76f4\u5347\u673a\u98de\u8d8a\u6d77\u9762\u3002"} +{"id": "0001683", "video_name": "1df5a85d-4769-524b-a26d-8c2c9eafe550", "text": "\u4e00\u53ea\u7ea2\u9f99\u7684\u773c\u775b\u5728\u9633\u5149\u7684\u7167\u8000\u4e0b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "0001684", "video_name": "1df94860-da4a-55a8-a419-541ca92d7f76", "text": "\u4ecb\u7ecd\u6211\u4eec\u7684\u9ad8\u7ea7\u7f8e\u4e43\u6ecb\uff1a\u4e00\u4e2a\u5728\u5149\u6ed1\u73bb\u7483\u7f50\u4e2d\u7684\u70f9\u996a\u7f8e\u98df\u3002\u8fd9\u4e2a\u8c03\u5473\u54c1\u6770\u4f5c\u62e5\u6709"} +{"id": "0001685", "video_name": "1e030aa3-0596-5f2c-8e38-eeede977f38d", "text": "\u60f3\u8c61\u4e00\u4e0b\u661f\u7cfb\u7684\u78b0\u649e\u3002\u5c55\u793a\u661f\u661f\u548c\u5b87\u5b99\u788e\u7247\u4e4b\u95f4\u620f\u5267\u6027\u7684\u4e92\u52a8\uff0c\u5448\u73b0\u51fa\u89c6\u89c9\u4e0a\u4ee4\u4eba\u60ca"} +{"id": "0001686", "video_name": "1e0adf90-b271-5cdc-864c-56cbfe629708", "text": "\u4e24\u4e2a\u7a7f\u767d\u8272\u4e0a\u8863\u548c\u6d77\u519b\u84dd\u77ed\u88e4\u7684\u7537\u4eba\u5728\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "0001687", "video_name": "1e0c02ac-1bcf-5b48-b719-ac84ef88969a", "text": "\u592a\u7a7a\u8239\u4ee5\u795e\u79d8\u5149\u675f\u60ac\u6d6e\u4eba\u4eec\u5728\u96f6\u91cd\u529b\u73af\u5883\u4e0b\u3002"} +{"id": "0001688", "video_name": "1e101852-e7cc-5d96-9da2-aa08f3882b65", "text": "\u6c34\u6ef4\u5728\u4e2d\u5fc3\uff0c\u4ece\u4e2d\u5fc3\u53d1\u51fa\u8109\u51b2\u73af\u3002\u9ed1\u8272\u95ea\u5149\u80cc\u666f\uff0c\u4fef\u89c6\u56fe\u3002"} +{"id": "0001689", "video_name": "1e1f89d2-583e-5d73-89af-9c4ef559afbb", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u4e00\u6b21\u75db\u82e6\u7684\u5206\u624b\u4e4b\u540e\u54ed\u6ce3\uff0c\u62ff\u7740\u7eb8\u5dfe\u548c\u7834\u788e\u7684\u5fc3\u3002"} +{"id": "0001690", "video_name": "1e22b952-7575-57ea-920c-edbebe8a783c", "text": "\u8096\u50cf\u753b\uff0c2D\uff0c\u5c0f\u5973\u5b69\u89d2\u8272\uff0c\u53ef\u7231\uff0c20\u5c81\uff0c\u5168\u5f69\uff0c\u7d2b\u8272\u978b\u5b50\uff0c\u7d2b\u8272\u515c\u5e3d\u88d9\uff0c\u7d2b\u8272\u8863\u670d\uff0c"} +{"id": "0001691", "video_name": "1e2fb26e-2386-5292-9b0e-08086f6af103", "text": "\u7279\u8272\u662f\u4e00\u4e2a\u5e26\u6709\u8d27\u5e01\u7b26\u53f7\u7684\u5730\u7403\u4eea\uff0c\u4ee3\u8868\u5168\u7403\u89c6\u89d2\u3002"} +{"id": "0001692", "video_name": "1e38dec1-06e3-50e0-927f-356a5135bca4", "text": "\u585e\u6bd4\u535a\u58eb\u76f4\u63a5\u548c\u4f60\u5bf9\u8bdd\uff0c\u4ed6\u5750\u5728\u4ed6\u7684\u533b\u751f\u529e\u516c\u5ba4\u91cc\uff0c\u80cc\u666f\u4e2d\u6709\u8349\u836f\u3002"} +{"id": "0001693", "video_name": "1e3a3be0-1969-5106-9c6e-23b94560cb8b", "text": "\u4e00\u4e2a\u9713\u8679\u4e1c\u4eac\u57ce\u5e02\u7684\u63d2\u56fe\uff0c\u7c89\u8272\u548c\u84dd\u7eff\u8272\u7684\u9713\u8679\u706f\uff0c\u95ea\u70c1\u7684\u706f\u5149\u548c\u9713\u8679\u706f\u3002"} +{"id": "0001694", "video_name": "1e3d43a5-0c09-56b3-b7f5-1d296f0dddc9", "text": "\u5728\u82b1\u6735\u4e2d\u6539\u53d8\u989c\u8272\uff1a\u62cd\u6444\u82b1\u56ed\u4e2d\u82b1\u6735\u7684\u56fe\u50cf\uff0c\u5e76\u4f7f\u82b1\u6735\u7684\u4e00\u90e8\u5206\u57284\u4e2a\u89c6\u9891\u4e2d\u5e73\u6ed1\u5faa\u73af\u5730"} +{"id": "0001695", "video_name": "1e3f5407-728e-5dd5-bcd0-cb427e88d144", "text": "\u4e00\u6b21\u706b\u7bad\u53d1\u5c04\uff0c\u4e00\u4e2a\u866b\u6d1e\uff0c\u4e00\u8258\u98de\u8239\uff0c\u56db\u4e2a\u4e0d\u540c\u7684\u661f\u7403\uff0c\u73b0\u5b9e\u4e3b\u4e49\u79d1\u5e7b\u7535\u5f71\uff0c\u964d\u4f4e\u4eae\u5ea6\uff0c"} +{"id": "0001696", "video_name": "1e4786e5-38be-5df7-b0c7-1147c7161087", "text": "\u4e00\u79cd\u6709\u8da3\u7684\u6bd4\u8f83\uff0c\u5c06DreamFusion\u548c\u65e5\u5e38\u7269\u54c1\u8fdb\u884c\u5bf9\u6bd4\uff0c\u4f8b\u5982\u4f7f\u7528\u5b83\u53ec\u5524\u4e00\u676f\u5496\u5561\u800c\u4e0d\u662f\u81ea\u5df1\u5236\u4f5c\u3002"} +{"id": "0001697", "video_name": "1e4ac0b9-bf6a-5afa-b42c-1b34ef4a2b60", "text": "\u6d77\u4e0a\u7834\u6653\uff0c\u9e1f\u513f\u98de\u8fc7\u3002\u5c0f\u6d77\u6ee9\u9e45\u5375\u77f3\u4e0a\u5fae\u5fae\u7684\u6c34\u58f0\u3002"} +{"id": "0001698", "video_name": "1e51ac14-678a-5108-8af5-24d075c166f0", "text": "\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u77ed\u6b3e\u6781\u7b80\u7ea2\u8272\u88d9\u5b50\u5728\u83ab\u65af\u79d1\u5e02\u591c\u665a\u884c\u8d70\u3002\u590f\u5b63\uff0c18:00\u3002\u89c6\u9891\u5206"} +{"id": "0001699", "video_name": "1e54a2a3-c21b-5ce5-ba1a-ce532f4b7fd3", "text": "\u7c73\u5947\u8001\u9f20\u548c\u4ed6\u8c03\u76ae\u7684\u732b\u54aa\u670b\u53cb\u8d39\u52a0\u7f57\uff0c\u8e0f\u4e0a\u4e86\u4e00\u573a\u5947\u5e7b\u7684\u5192\u9669\uff0c\u7a7f\u8d8a\u4ed6\u4eec"} +{"id": "0001700", "video_name": "1e560ed3-3edb-50a9-a1d2-59f712318252", "text": "\u5956\u676f\u524d\u9762\u6709\u4e00\u9762\u5927\u5899\u3002"} +{"id": "0001701", "video_name": "1e56af74-b6de-5bf4-9c35-97a1ae47603e", "text": "\u5728\u5df4\u9ece\uff0c\u80cc\u666f\u662f\u827e\u83f2\u5c14\u94c1\u5854\uff0c\u4e00\u4f4d\u7c89\u8272\u5934\u53d1\u7684\u5973\u58eb\u5728\u559d\u5496\u5561\u3002"} +{"id": "0001702", "video_name": "1e58f172-8e41-54cd-b5c6-754f33d770d4", "text": "\u672a\u6765\u7684\u4e16\u754c\u4f1a\u53d8\u5f97\u66f4\u52a0\u667a\u80fd\u5316\uff0c\u5efa\u7b51\u3001\u57ce\u5e02\u3001\u673a\u68b0\u548c\u6c7d\u8f66\u4e5f\u4f1a\u53d8\u5f97\u66f4\u52a0\u5148\u8fdb\u3002"} +{"id": "0001703", "video_name": "1e6a9aae-2905-5c99-89f6-f24c1a61278d", "text": "\u98ce\u666f\u591a\u98ce\uff0c\u7d2b\u7f57\u5170\u5730\u5e73\u7ebf\u4e0a\u65b9\u6709\u84dd\u8272\u7684\u592a\u9633\uff0c\u9ec4\u8272\u548c\u7eff\u8272\u7684\u690d\u7269\u3002\u957f\u5bbd\u6bd4\u4e3a4:3\u3002"} +{"id": "0001704", "video_name": "1e6b560a-2868-5962-96bc-cb7d916dd997", "text": "\u6751\u6c11\u4eec\u4e00\u8d77\u5206\u4eab\u9910\u98df\uff0c\u57f9\u517b\u4e00\u79cd\u793e\u7fa4\u548c\u53cb\u60c5\u7684\u611f\u89c9\u3002\n\n\u52a8\u753b\u5361\u901a"} +{"id": "0001705", "video_name": "1e6e7c7f-6fe2-5e44-bc9e-9db151492a20", "text": "\u4f7f\u7528\u8fd9\u5f20\u7167\u7247\uff0c\u8fd9\u4e9b\u662f\u4e50\u9ad8\u79ef\u6728\uff0c\u5728\u80cc\u666f\u4e2d\u5236\u9020\u95ea\u7535\uff0c\u8ba9\u4e50\u9ad8\u94a2\u94c1\u4fa0\u53d1\u5c04\u7206\u7834\u5668\u3002"} +{"id": "0001706", "video_name": "1e72567b-5824-59a4-b5ec-03603df3971d", "text": "\u4e00\u4e2a\u559c\u6b22\u878d\u5408\u897f\u65b9\u548c\u4e9a\u6d32\u6587\u5316\u7684\u5e74\u8f7b\u5546\u4eba\u5728\u9152\u5427\u62bd\u96ea\u8304\u3002 \n\nSource sentence: The cat sat on the mat. \n"} +{"id": "0001707", "video_name": "1e77ebc5-edf9-5253-997b-eb7f305e7d48", "text": "\u4ed6\u662f\u4e00\u4e2a\u666e\u901a\u4eba\uff0c\u4f46\u6709\u7740\u975e\u51e1\u7684\u597d\u5947\u5fc3\u3002"} +{"id": "0001708", "video_name": "1e7b927b-1a9b-59b8-a6b4-2c13c4020f06", "text": "\u4e00\u4e2a\u90aa\u6076\u7684\u529b\u91cf\u5750\u5728\u65e7\u6c34\u6ce5\u5899\u5185\u7684\u95ea\u4eae\u95e8\u6237\u91cc\u3002"} +{"id": "0001709", "video_name": "1e7e1f15-936e-57ff-af1e-c7c09572507a", "text": "\u62d2\u7edd\u63a5\u53d7\u6761\u6b3e \u60a8\u5fc5\u987b\u63a5\u53d7\u6211\u4eec\u7684\u670d\u52a1\u6761\u6b3e\u624d\u80fd\u5f00\u59cb\u4f7f\u7528Midjourney\u3002"} +{"id": "0001710", "video_name": "1e834a17-8664-5c18-a038-cafdec7b7776", "text": "\u4e00\u500b\u7a7f\u8457\u9ed1\u8272\u896a\u5b50\u7684\u5973\u5b69\u5728\u9ad4\u80b2\u9928\u88e1\u3002"} +{"id": "0001711", "video_name": "1e85c846-f05d-5234-affe-815b5e5a13a5", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u670d\u88c5\u7684\u963f\u62c9\u4f2f\u5973\u4eba\u5728\u6c99\u6f20\u4e2d\u9a91\u9a6c\u3002\u6211\u4eec\u5148\u770b\u5230\u4e86\u8fd9\u4f4d\u5973\u58eb\uff0c\u4f46\u5728\u7a0d\u5fae\u5411\u53f3\u79fb\u52a8\u4e00"} +{"id": "0001712", "video_name": "1e87f972-824e-57d4-8348-418909bf63f4", "text": "\u89c6\u9891\u7684\u957f\u5ea6\u53d8\u957f\u4e86\u3002"} +{"id": "0001713", "video_name": "1e887815-b021-55af-93fe-36e9f6ac1884", "text": "\u521b\u9020\u4e00\u4e2a\u5173\u4e8e\u52a0\u5bc6\u8d27\u5e01\u4ef7\u503c\u7684\u5c0f\u89c6\u9891\u3002"} +{"id": "0001714", "video_name": "1e8bc9d8-6a8d-5d09-97ce-f2102b12e91e", "text": "\u4e94\uff0c\u53e4\u7b5d\u97f3\u4e50\uff0c\u60a0\u626c\u3002\u4e00\u4f4d\u5973\u5b50\u5750\u5728\u53e4\u7b5d\u524d\uff0c\u8f7b\u67d4\u5730\u7528\u624b\u6307\u62e8\u5f26\u3002\u60a0\u626c\u7684\u7434"} +{"id": "0001715", "video_name": "1e8d501d-56eb-54f4-accc-8f4eb2f9f77e", "text": "\u533b\u751f\u7684\u5361\u901a\u5f62\u8c61\u5750\u5728\u684c\u524d\uff0c\u80cc\u666f\u662f\u56fe\u8868\u548c\u80a1\u7968\u3002"} +{"id": "0001716", "video_name": "1e921d6b-35d8-5b34-82f8-6c2e2fcf89d3", "text": "\u751f\u6210\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u5728\u8fd9\u4e2a\u573a\u666f\u4e2d\uff0c\u4e00\u9897\u53ef\u7231\u7684\u661f\u661f\u53eb\u505a\u201cTwinkle\u201d\u79bb\u5f00\u591c\u7a7a\u964d\u843d\u5230\u5730\u7403\u4e0a\u7684\u4e00\u4e2a\u795e\u5947"} +{"id": "0001717", "video_name": "1e925b73-8ef9-5df5-bf62-7a8e4b274081", "text": "25. \u4e00\u7fa4\u6709\u624d\u534e\u7684\u5de5\u5320\u6b63\u5728\u6062\u590d\u6c49\u666e\u8482\u00b7\u9ea6\u514b\u9053\u5c14\uff0c\u4ed6\u4eec\u751f\u52a8\u7684\u989c\u6599\u548c\u5237\u5b50\u6b63\u5728\u521b\u9020"} +{"id": "0001718", "video_name": "1e92cd3a-9cf0-523a-af37-9ce2c263ca80", "text": "\u4e24\u7247\u900f\u660e\u7684\u94f6\u674f\u53f6\u5b50\u91cd\u53e0\u5728\u4e00\u8d77\uff0c\u534a\u90e8\u5206\u7684\u989c\u8272\u53d8\u6697\u3002"} +{"id": "0001719", "video_name": "1e99abd2-c062-532a-a2b0-85ba94076f50", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u8001\u864e\u795d\u613f\u5370\u5ea6\u677f\u7403\u961f\u4e00\u5207\u987a\u5229\u3002"} +{"id": "0001720", "video_name": "1ea09507-0634-58e5-b11d-356895c9c9fe", "text": "\u624b\u673a\u5c4f\u5e55\u4e0a\u7684\u4e00\u4e2a\u4eba\uff0c\u5728\u5c4f\u5e55\u4e2d\u6709\u7535\u7ade\u6807\u5fd7\u7684\u4eba\u70b9\u51fb\u4e86\u5b83\u3002"} +{"id": "0001721", "video_name": "1eaa713c-2ba3-5389-9eb3-259063ead2be", "text": "\u89c6\u9891\u91cd\u70b9\u5173\u6ce8\u4e8e\u4e0a\u547c\u5438\u9053\u3001\u652f\u6c14\u7ba1\u3001\u80ba\u4ee5\u53ca\u80ba\u6ce1\u7b49\u91cd\u8981\u90e8\u4f4d\u3002\u6b64\u5916\uff0c\u5f3a\u8c03\u6c14\u7ba1\u548c\u5589\u5728\u7cfb\u7edf\u4e2d\u7684\u91cd\u8981"} +{"id": "0001722", "video_name": "1eaa9dba-e084-5f03-9eca-de69d2b605f2", "text": "\u4ece\u50cf\u7d20\u5316\u7684\u7cbe\u7075\u5230\u903c\u771f\u76843D\u6a21\u578b\uff0c\u89c6\u9891\u6e38\u620f\u56fe\u5f62\u5df2\u7ecf\u8d70\u8fc7\u4e86\u6f2b\u957f\u7684\u8def\u7a0b\u3002\u4e03\u5e74\u7ea7\u7537\u5b69\u5750\u5728\u684c"} +{"id": "0001723", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "\u5de8\u578b\u4f01\u9e45\u7f16\u7a0b\u6467\u6bc1\u4e00\u680b\u5efa\u7b51\u3002"} +{"id": "0001724", "video_name": "1ebf9f7e-57e1-5f21-993c-7c9973fd3e85", "text": "\u5feb\u9910\u673a\u5668\u4eba\u5976\u916a\u6c49\u5821\u5e97\u7684\u673a\u5668\u4eba\u81ea\u52a8\u70b9\u5355\u548c\u81ea\u52a9\u9910\u8ba9\u4eba\u4e0d\u723d\uff0c\u5bf9\u4eba\u7c7b\u6765\u8bf4\u4e0d\u662f\u4e00\u4ef6\u6709"} +{"id": "0001725", "video_name": "1ec013d7-4c2b-55fd-a60b-a7155decc1f9", "text": "\u4ece\u8fd9\u5f20\u56fe\u7247\u4e2d\u7814\u7a76\u4e00\u4e2a\u6446\u52a8\u5c3e\u5df4\u7684\u732b\u548c\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "0001726", "video_name": "1ec1492c-c47e-554c-a673-73043179a949", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u4e0a\u89c2\u5bdf\u666f\u89c2\u3002"} +{"id": "0001727", "video_name": "1ec5747d-eab2-5f87-a039-76c5dc292d39", "text": "\u732b\u81ea\u62cd\uff0c\u72d7\u5728\u80cc\u666f\u91cc\u611f\u5230\u70e6\u607c\u3002"} +{"id": "0001728", "video_name": "1eceff15-015b-5a26-b7e9-83b20109057c", "text": "\u63cf\u8ff0\u4e00\u573a\u9ad8\u6f6e\u51b3\u6597\uff0c\u4ed6\u4eec\u9762\u5bf9\u9634\u8c0b\u80cc\u540e\u7684\u603b\u7b56\u5212\u8005\u3002"} +{"id": "0001729", "video_name": "1ed052a5-2c02-5d33-9833-c1827a22bebb", "text": "\u753b\u51fa\u4e4c\u514b\u5170\u58eb\u5175\u5982\u4f55\u593a\u53d6\u83ab\u65af\u79d1\u514b\u91cc\u59c6\u6797\u5bab\u5e76\u628a\u666e\u4eac\u88c5\u8fdb\u74f6\u5b50\u91cc\uff0c\u8ba9\u4ed6"} +{"id": "0001730", "video_name": "1ed1634f-d445-5341-8f17-233b1dc965b8", "text": "\u62cd\u6444\u4e86\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u5c4f\u5e55\u524d\u7684\u7535\u5f71\u822c\u7684\u4f4e\u5149\u8096\u50cf\u955c\u5934\uff0c\u663e\u793a\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "0001731", "video_name": "1ed30821-d13a-5d06-9609-89783cbc7ff9", "text": "\u7537\u5b69\uff0c\u5973\u5b69\uff0c\u68ee\u6797\uff0c\u82b1\uff0c\u4e4c\u9e26\uff0c\u8349\uff0c\u84dd\u5929"} +{"id": "0001732", "video_name": "1ed47e8e-639c-5d8b-8887-42f33a01986f", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u591c\u665a\u7535\u5f71\u57ce\u5e02\uff0c\u6d53\u70c8\u7684\u5149\u5f71\uff0c\u9713\u8679\u706f\uff0c\u6708\u5149\u3002"} +{"id": "0001733", "video_name": "1edef73d-1615-556b-9572-8ff8f3415db0", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5750\u5728\u7535\u8111\u524d\u3002"} +{"id": "0001734", "video_name": "1ee112ac-6cbd-51f5-9447-9458b1f85ae6", "text": "\u9ed1\u80f6\u5531\u7247\u673a\uff0c\u9ed1\u80f6\u5531\u7247\u65cb\u8f6c\u3002"} +{"id": "0001735", "video_name": "1ee173d8-a447-5cc1-afde-f56364fea94a", "text": "\u63d0\u9192\u4ed6\u4eec\u8981\u6709\u51b3\u5fc3\u548c\u81ea\u4fe1\u3002 \n\nSource sentence: The meeting will be held at 10am on Monday. \n\u4f1a\u8bae\u5c06\u4e8e\u661f\u671f\u4e00\u4e0a\u534810\u70b9\u4e3e\u884c\u3002"} +{"id": "0001736", "video_name": "1ee318fd-2e23-51c1-a8d9-eaba2cf1e057", "text": "\u4eba\u5f62\u673a\u5668\u4eba\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "0001737", "video_name": "1eeac875-b292-53d8-94d3-f27981fcba3f", "text": "\u5728\u4f60\u7684\u5e10\u7bf7\u91cc\u753b\u51fa\u4ee5\u8272\u5217\u7684\u5341\u4e8c\u652f\u6d3e\u7684\u753b\u50cf\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0001738", "video_name": "1ef8930a-2c20-5772-93c1-3b36ab28361f", "text": "\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u7684\u7f57\u9a6c\u98ce\u683c\u96d5\u50cf\uff0c\u5e26\u6709\u8f90\u5c04\u66fc\u837c\u7f57\u6548\u679c\u3002"} +{"id": "0001739", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "\u4f7f\u7528\u77f3\u82f1\u6c34\u6676\u5360\u535c\u7684\u7b97\u547d\u5e08\u89c6\u9891"} +{"id": "0001740", "video_name": "1f001bc2-75cd-5fb3-bc62-2167d680e66b", "text": "\u4e00\u4e2a\u6234\u7740\u4e66\u5305\u3001\u8d70\u5411\u9ec4\u8272\u6821\u8f66\u7684\u5c0f\u7537\u5b69\u3002"} +{"id": "0001741", "video_name": "1f053dda-83b0-5ef0-9d31-45fd51be768e", "text": "\u5f53\u65f6\u673a\u5230\u6765\u65f6\uff0c\u5973\u738b\u518d\u6b21\u751f\u4e0b\u4e86\u4e00\u4e2a\u513f\u5b50\u3002"} +{"id": "0001742", "video_name": "1f11cf05-9094-5522-aa64-7c503b282602", "text": "\u5728\u4e00\u7247\u8302\u5bc6\u7684\u4e1b\u6797\u73af\u5883\u4e2d\uff0c\u4e00\u53ea\u4f53\u578b\u5e9e\u5927\u4e14\u6ee1\u8db3\u7684\u725b\u6b63\u5728\u5e73\u9759\u5730\u5403\u7740\u5404\u79cd\u690d\u7269\u3002\u4e00"} +{"id": "0001743", "video_name": "1f148418-54d3-574a-bdb1-42e9fe73fa2b", "text": "\u4e00\u5f20\u5728\u57ce\u5e02\u6ce2\u5e0c\u7c73\u4e9a\u98ce\u683c\u7684\u5367\u5ba4\u7a97\u53e3\u5185\uff0c\u901a\u8fc7\u7a97\u6237\u770b\u5230\u4e00\u4e2a\u660f\u660f\u6b32\u7761\u7684\u96e8\u591c\u666f\u8c61\uff0c\u684c"} +{"id": "0001744", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "\u60c5\u4fa3\u5728\u6c99\u53d1\u4e0a\u770b\u6050\u6016\u7535\u5f71\u3002"} +{"id": "0001745", "video_name": "1f15233b-5aad-5af4-aac4-a0c9fee42b63", "text": "\u5b87\u5b99\u7684\u52a8\u753b\uff0c\u795e\u5947\u7684\uff0c\u63d2\u56fe\u5316\u7684\u3002"} +{"id": "0001746", "video_name": "1f1b454f-b9f0-5c89-a59e-876719041358", "text": "\u72ee\u5b50\u5486\u54ee\uff0c\u4fdd\u63013D\u52a8\u753b\u89c6\u9891\u957f\u5ea6\u4e3a10\u79d2\u3002"} +{"id": "0001747", "video_name": "1f1c68be-4e8c-5d33-b992-1826640b3c6c", "text": "\u4ece\u53a8\u623f\u7a97\u6237\u770b\u5230\u5b69\u5b50\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "0001748", "video_name": "1f1e1831-269b-5f4c-aaed-3bc0307be610", "text": "\u6444\u50cf\u673a\u6162\u6162\u5730\u4ece\u514b\u91cc\u59c6\u6797\u5bab\u98de\u79bb\uff0c\u4e00\u8f86\u5766\u514b\u6162\u6162\u5730\u51fa\u73b0\u5728\u514b\u91cc\u59c6\u6797"} +{"id": "0001749", "video_name": "1f1e9d75-bfa6-5917-b970-a7ba0722eab0", "text": "\u5b5f\u52a0\u62c9\u56fd\u7684\u653f\u6cbb\u96c6\u4f1a\uff0c\u5973\u603b\u7406\u53d1\u8868\u6f14\u8bb2\uff0c\u6570\u767e\u4e07\u4eba\u6b22\u547c\u96c0\u8dc3\u30024K\u771f\u5b9e\u3002"} +{"id": "0001750", "video_name": "1f20a0da-b53e-5c55-8367-0fc342c06b69", "text": "\u5b69\u5b50\u4eec\u548c\u7236\u6bcd\u4e00\u8d77\u751f\u6d3b\u5728\u4e61\u6751\uff0c\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "0001751", "video_name": "1f214e3d-bae4-55fd-825e-915baf1349b0", "text": "\u7537\u5b69\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\u4e0a\u4e86\u8239\u3002"} +{"id": "0001752", "video_name": "1f244386-767b-5da5-8036-dbf08036c22f", "text": "\u5e74\u8f7b\u7684\u7f8e\u56fd\u7537\u5b50\u5728\u745c\u4f3d\u8bfe\u4e0a\uff0c\u88ab\u623f\u5c4b\u5305\u56f4\u7740\u3002"} +{"id": "0001753", "video_name": "1f278b07-99f4-514f-908d-794679f5fd92", "text": "SUV\u8f66\u5728\u9053\u8def\u4e0a\u884c\u9a76\uff0cCCTV\u6444\u50cf\u5934\u56fa\u5b9a\u5728\u5899\u4e0a\u3002"} +{"id": "0001754", "video_name": "1f2ee790-6543-50b8-8d72-403faf551eb8", "text": "4K\uff0c\u6bcf\u79d224\u5e27\uff0c\u903c\u771f\u7684\u56fe\u5f62\uff0c\u5bbd\u9ad8\u6bd416:9\u7684\u589e\u5f3a\u73b0\u5b9e\u3002"} +{"id": "0001755", "video_name": "1f301aa7-5a4d-5a06-8620-e97baef72e37", "text": "Translation: \u5431\u5431\u4f5c\u54cd\u7684\u5730\u677f\uff0c\u8d70\u5eca\u91cc\u7684\u811a\u6b65\u58f0\u3002"} +{"id": "0001756", "video_name": "1f34226e-8cd3-568d-aadb-aca32cf990f7", "text": "\u6709\u5f69\u8272\u70df\u96fe\u6f02\u6d6e\u5728\u6a59\u8272\u3001\u7c89\u7ea2\u8272\u3001\u9ed1\u8272\u548c\u767d\u8272\u4e4b\u95f4\u7684\u573a\u666f\u3002"} +{"id": "0001757", "video_name": "1f4d5e56-0168-5ecc-b7ee-5e9579bf777c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u6f2b\u7537\u5b69\uff0c\u767d\u8272\u7684\u5934\u53d1\u5728\u6c34\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0001758", "video_name": "1f53315e-4678-51d6-b93a-0fe25363c4af", "text": "\u8389\u8389\u88ab\u4e09\u4e2a\u60f3\u8c61\u4e2d\u7684\u670b\u53cb\u5305\u56f4\u7740\u3002"} +{"id": "0001759", "video_name": "1f5ef116-90bd-5fe6-b867-6e3c0456e21a", "text": "\u7f8e\u5f0f\u4f20\u7edf\u7eb9\u8eab\uff0c\u4e00\u8fb9\u662f\u5973\u4eba\u9c7c\uff0c\u53e6\u4e00\u8fb9\u662f\u7537\u4eba\u9c7c\u7684\u526a\u5200\u8239\u3002"} +{"id": "0001760", "video_name": "1f695ebc-2a6f-569b-8dc3-ddd00f0cc822", "text": "\u4e00\u500b\u5973\u5b69\u5750\u5728\u5efa\u7bc9\u7269\u7684\u5c4b\u9802\u4e0a\u3002"} +{"id": "0001761", "video_name": "1f726cfc-ed6d-5cb0-b472-697e025aaeac", "text": "\u900f\u8fc7\u4e00\u4e2a\u5c0f\u5c0f\u7684\u9ed1\u6697\u6d1e\uff0c\u671b\u89c1\u6674\u6717\u7684\u84dd\u5929\u3002"} +{"id": "0001762", "video_name": "1f7312e5-f19e-51dd-af05-f871adb99164", "text": "\u7a7f\u7740\u4e0a\u5199\u6709\u201carda\u201d\u5b57\u6837\u7684\u5f00\u53d1\u8005"} +{"id": "0001763", "video_name": "1f758938-c4f2-53a9-9b3a-287472b42351", "text": "\u4e09\u8272\u65d7\uff0c\u9ec4\u3001\u84dd\u3001\u7ea2\u5404\u5360\u4e09\u5206\u4e4b\u4e00\u3002"} +{"id": "0001764", "video_name": "1f7a6c06-d5c2-50fe-8df8-02dfd1063261", "text": "\u4e16\u754c\u5728\u706b\u4e2d\u71c3\u70e7\u7684\u592a\u7a7a\u666f\u8c61"} +{"id": "0001765", "video_name": "1f838113-97c2-5b3e-b397-c9885372a02f", "text": "\u5e03\u52a0\u8fea\u649e\u4e0a\u6b63\u5728\u5206\u5a29\u7684\u7537\u4eba\u3002"} +{"id": "0001766", "video_name": "1f92cae1-3dd6-5b58-a4f7-d2b9a1b1b56e", "text": "\u89d2\u8272\u4e3e\u624b\uff0c\u4e91\u6735\u79fb\u52a8\u548c\u670d\u88c5\u79fb\u52a8\u3002"} +{"id": "0001767", "video_name": "1f94176f-2714-5aa2-9b24-ce058c211751", "text": "\u52c7\u6562\u7684\u72ee\u5b50\u91cc\u5965\u9762\u5bf9\u7740\u722a\u5b50\u53d7\u4f24\uff0c\u4f46\u4ed6\u7684\u51b3\u5fc3\u4ecd\u7136\u575a\u5b9a\u4e0d\u79fb\u3002"} +{"id": "0001768", "video_name": "1f94b1bd-1863-56e4-a2ba-1decae388f4b", "text": "\u957f\u53d1\u9177\u70ab\u7684\u5c11\u5e74\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "0001769", "video_name": "1f94fd75-47c5-55c6-aa51-b9e4812e9176", "text": "\u5728\u52a0\u62ff\u5927\u591a\u4f26\u591a\u5e02\u4e2d\u5fc3\uff0c\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u591a\u6837\u6027\u7684\u57ce\u5e02\u4e2d\uff0c\u6709\u4e00\u4e2a\u53eb\u505aBrookside\u7684\u53e4\u96c5\u793e\u533a\u3002\u8fd9\u662f\u4e00\u4e2a\u5bb6\u65cf"} +{"id": "0001770", "video_name": "1f970fde-2963-54c4-896b-fa8ebb27af00", "text": "\u6743\u529b\u7684\u6e38\u620f\u6700\u7ec8\u5b63\u8282\u7684\u53d8\u5316"} +{"id": "0001771", "video_name": "1f9a9905-69f0-5f33-bf18-a2a0fa3f6623", "text": "\u4e00\u4e2a\u7528\u6c34\u5f69\u7ed8\u5236\u3001\u7ec6\u8282\u4e30\u5bcc\u3001\u52a8\u753b\u5316\u7684\u6c34\u7537\u4eba\u3002"} +{"id": "0001772", "video_name": "1fa050c1-8023-5e10-b6b3-c0a9a695c30f", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u662f\u6765\u81ea\u300a\u9f99\u73e0\u300b\u7684\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u3002"} +{"id": "0001773", "video_name": "1fa73acb-4b89-574f-9de6-93d62e018349", "text": "\u5730\u94c1\u5217\u8f66\u5728\u5730\u4e0b\u5feb\u901f\u901a\u8fc7\u3002"} +{"id": "0001774", "video_name": "1fb2cd64-d2cd-5f8d-af92-50df85334887", "text": "\u75289:16\u7684\u89c6\u9891\u683c\u5f0f\uff0c\u4ee5\u4ee4\u4eba\u60ca\u53f9\u76844K\u5206\u8fa8\u7387\u5f55\u5236\u4e00\u4e2a\u573a\u666f\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u4e2a\u8868\u60c5\u60ca\u8bb6\u3001\u4e0b\u5df4\u6389\u4e0b\u6765\u7684\u7537"} +{"id": "0001775", "video_name": "1fbb984d-33b6-5a3f-8b6e-bb768f43ab60", "text": "\u4e00\u6bb5\u7f8e\u4e3d\u7684\u9ed1\u6697\u661f\u7a7a\u5faa\u73af\u5ef6\u65f6\u6444\u5f71\uff0c\u661f\u661f\u95ea\u70c1\u4eae\u4e3d\u3002"} +{"id": "0001776", "video_name": "1fcea32b-e6d7-58b4-a3db-8c85fe4a9cd8", "text": "\u60ca\u6050\u7684\u5973\u5b69\u4ece\u5e8a\u5e95\u4e0b\u62ff\u51fa\u6211\u7684\u5e3d\u5b50\uff0c\u5374\u53d1\u73b0\u9762\u5bf9\u7740\u66f4\u52a0\u90aa\u6076\u7684\u4e1c\u897f\u3002\u6050\u6016\u30014K\u3001\u903c"} +{"id": "0001777", "video_name": "1fd21c04-21f1-5501-869e-3d5de7987095", "text": "\u4ed6\u7a7f\u8d8a\u795e\u79d8\u7684\u666f\u89c2\uff0c\u8d8a\u8fc7\u5371\u9669\u7684\u6865\u6881\uff0c\u89e3\u51b3\u795e\u8bdd\u751f\u7269\u63d0\u51fa\u7684\u96be\u9898\u3002\u5728\u9014\u4e2d\u3002"} +{"id": "0001778", "video_name": "1fd9b042-a7a0-5e86-ad50-af4b18e4b35a", "text": "\u521b\u5efa\u4e00\u4e2a\u9ed1\u5ba2\u603b\u90e8\u7684\u865a\u5e7b\u5f15\u64ce\u6e32\u67d3\u3002"} +{"id": "0001779", "video_name": "1fda1ee1-78e0-545e-afcc-4812532b3412", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u6dfb\u52a0\u6d82\u62b9\u75d5\u8ff9\u7684\u521b\u610f\u7ebf\u6807\u5fd7\u3002"} +{"id": "0001780", "video_name": "1fda9408-d04d-5e16-adce-7eb6cdde17bc", "text": "\u871c\u8986\u76d6\u7740\u94a2\u7434\u7684\u7279\u5199\u89c6\u9891\uff0c\u5f7c\u5f97\u00b7\u5a01\u7279\u91d1\u98ce\u683c\u7684\u821e\u53f0\uff0c\u7ea2\u8272\u548c\u6728\u8d28\u8272\u8c03\u3002"} +{"id": "0001781", "video_name": "1fdcc939-d90a-56b5-9059-5e643fd4a947", "text": "\u4e00\u4e2a\u4e2d\u666f\u7684\u89c6\u9891\uff0c\u62cd\u6444\u7684\u662f\u4e00\u4e2a\u8001\u4eba\u5750\u5728\u5c0f\u6728\u5c4b\u91cc\u7684\u76ae\u6905\u4e0a\uff0c\u80cc\u666f\u662f\u58c1\u7089\u3002"} +{"id": "0001782", "video_name": "1fdd3384-54b1-5e23-8f35-aca2fe9d9935", "text": "\u5c06\u5730\u5e73\u7ebf\u4e0a\u7684\u5e7b\u89c9\u5c55\u793a\u6210\u4e3a\u4e00\u4e2a\u5b9e\u5b9e\u5728\u5728\u7684\u7eff\u6d32\u3002\u5728\u65c5\u9014\u63a5\u8fd1\u7ec8\u70b9\u65f6\u4f20\u8fbe\u6210\u5c31\u611f\u548c\u6ee1\u8db3\u611f\u3002"} +{"id": "0001783", "video_name": "1fddfa7d-46cf-548a-88c8-9c3abf82fecd", "text": "\u6ce2\u6d1b\u514b\u897f\u4e9a\u821e\u66f2\uff0c\u970d\u7f57\u6c83\u5fb7\u4fc4\u7f57\u65af\u5983\u5b50\u60b2\u4f24\u5730\u8df3\u821e\uff0c\u9762\u5bb9\u60b2\u4f24"} +{"id": "0001784", "video_name": "1fe99be4-6ef8-5ac8-9ba8-aee842c34599", "text": "\u5361\u901a\u95ea\u7535\u52a8\u753b \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0001785", "video_name": "1ff64813-6a16-5ae9-852a-566831195416", "text": "\u7537\u5b69\u7684\u5f62\u8c61\u51fa\u73b0\u5728\u70df\u96fe\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0001786", "video_name": "1ff8b650-9d70-523c-ad79-2952f71ea0e5", "text": "\u5728\u4e00\u6bb59:16\u7684\u7ad6\u5c4f\u89c6\u9891\u4e2d\uff0c\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u591c\u665a\uff0c\u4e00\u4e2a\u6fd2\u4e34\u6b7b\u4ea1\u7684\u5438\u8840\u9b3c\u901a\u8fc7\u773c\u775b\u7684\u989c"} +{"id": "0001787", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "\u90a3\u4e2a\u6709\u6c34\u73e0\u7684\u5df4\u5df4\u6a59\u5b50\u6b63\u5728\u6b22\u5feb\u5730\u8df3\u8dc3\u3002"} +{"id": "0001788", "video_name": "1ffbd0f4-6af5-5cb9-8ed7-8b9b7e9559f1", "text": "\u4e00\u6761\u9c7c\u548c\u5176\u4ed6\u7684\u9c7c\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "0001789", "video_name": "200a0029-ea48-5ab5-ad29-95f625faf29f", "text": "\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u7684\u4e00\u4e2a\u5e74\u8f7b\u4eba\u53eb\u5361\u8482\u514b\u3002\u4ed6\u548c\u5bb6\u4eba\u4e00\u8d77\u751f\u6d3b\uff0c\u8fc7\u7740\u6b63\u5e38\u7684\u751f\u6d3b\u3002"} +{"id": "0001790", "video_name": "2012655b-6005-581f-ab30-015f3eabd6f2", "text": "\u4e00\u540d\u7537\u5b50\u5728\u8239\u4e0a\u9493\u9c7c\uff0c\u5409\u535c\u529b\u52a8\u753b\u98ce\u683c\uff0c\u67d4\u548c\u8272\u8c03\u3002"} +{"id": "0001791", "video_name": "2015e140-a0c7-5788-aa31-3048d32a101b", "text": "\u82b1\u57ce\u4e00\u7537\u4e00\u5973\u3002"} +{"id": "0001792", "video_name": "20192ca3-385a-58ac-abd7-87ce9f0e5e2b", "text": "\u4e00\u4e2a\u53e4\u8001\u7684\u6ce2\u65af\u5deb\u5e08\uff0c\u5728\u6c99\u6f20\u4e2d\u6f2b\u6b65\uff0c\u5929\u7a7a\u4e2d\u53d1\u751f\u4e86\u65e5\u98df\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "0001793", "video_name": "202541db-ae47-591c-ad6d-b5ef58fe99ff", "text": "\u90a3\u91cc\u6302\u7740\u4e00\u5e45\u53e4\u8001\u800c\u5de8\u5927\u7684\u753b\uff0c\u753b\u4e2d\u4e00\u4e2a\u8001\u4eba\u5fae\u7b11\u7740\uff0c\u4f46\u4ed6\u7684\u773c\u775b\u6709\u4e9b\u5947\u602a\u3002"} +{"id": "0001794", "video_name": "202a5187-4d9d-55ca-b346-477b13566a1a", "text": "\u96fe\u4e2d\u7684\u4e9a\u9a6c\u900a\u96e8\u6797\u3002\u4fe1\u606f\uff1aShopArt\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001795", "video_name": "202b2f57-31b5-5b81-8f6d-97699a621b42", "text": "\u94c3\u6728\u730e\u9e70\u8dd1\u5230\u4e86\u5b83\u7684\u6700\u9ad8\u901f\u5ea6\u3002"} +{"id": "0001796", "video_name": "202c461c-bba9-5bdc-8e5b-a8f7498bd74e", "text": "\u4e00\u8258\u88ab\u9057\u5f03\u7684\u5b87\u5b99\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\uff0c\u95ea\u70c1\u7740\u5149\u8292\uff0c\u9ed1\u6d1e\u96a7\u9053\u3002"} +{"id": "0001797", "video_name": "203028c4-05c2-599d-b65f-c9f40592296c", "text": "\u8f7b\u96e8\u843d\u5728\u7070\u8272\u91c7\u77f3\u573a\u3002"} +{"id": "0001798", "video_name": "20321512-20f3-52b0-94d1-97515c4e73e4", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u8611\u83c7\u4f3c\u4e4e\u5728\u4f4e\u58f0\u8033\u8bed\uff0c\u5206\u4eab\u7740\u751f\u5b58\u7684\u667a\u6167\uff0c\u795e\u79d8\u800c\u8ff7\u5e7b\u3002"} +{"id": "0001799", "video_name": "20370c18-6db5-5c12-b3d2-2a7c7363e97c", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u795d\u613fEren\u751f\u65e5\u5feb\u4e50\uff0c\u6bd4\u4f8b\u4e3a16\uff1a9\u3002"} +{"id": "0001800", "video_name": "203a55d0-2d21-575e-9cac-8b4c927cb68d", "text": "\u76d2\u5b50\u5916\u9762\u6709\u4e0d\u540c\u804c\u4e1a\u7684\u540d\u79f0\u3002"} +{"id": "0001801", "video_name": "203f5834-0ed0-54dd-be80-1b0a90224103", "text": "\u79fb\u52a8\u5149\u8292\u5feb\u6162\u53d8\u5316\u7684\u7535\u5f71\u5316\u706f\u5149\u6548\u679c\u3002"} +{"id": "0001802", "video_name": "20406852-387a-5b9a-aab4-ab1fb1b11e55", "text": "\u9c7c\u513f\u6e38\u6765\u6e38\u53bb\uff0c\u5bbd\u5e7f\u7684\u5168\u666f\uff0c\u903c\u771f\u7684\u98ce\u683c\u3002"} +{"id": "0001803", "video_name": "20420c36-1e8b-5b4f-bfda-ad5c1f51590f", "text": "\u5728\u4e00\u4e2a\u5927\u573a\u5730\u4e0a\u5236\u4f5c\u4e00\u4e2a\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u573a\u666f\uff0c\u79cb\u53f6\u98d8\u843d\u3002"} +{"id": "0001804", "video_name": "20424b40-4f36-5e76-9c19-98845fb257de", "text": "\u591c\u665a\u5893\u5730\u4e2d\u53d1\u5149\u773c\u775b\u7684\u591c\u884c\u751f\u7269\uff0c\u7ec6\u8282\u4e30\u5bcc\uff0c\u6700\u9ad8\u54c1\u8d28\uff0c\u903c\u771f\u6770\u4f5c\uff0c\u6050\u6016\u53ef\u6015"} +{"id": "0001805", "video_name": "2044313d-5c3e-59e3-a312-5a049b7c9591", "text": "\u6109\u5feb\u7684\u590d\u6d3b\u8282\u5154\u5b50\u5728\u82b1\u56ed\u91cc\u8df3\u8dc3\uff0c\u5230\u5904\u90fd\u662f\u8272\u5f69\u6591\u6593\u7684\u590d\u6d3b\u8282\u5f69\u86cb\u3002"} +{"id": "0001806", "video_name": "2047e74a-885c-574f-af2c-742eeb08df26", "text": "\u6bcf\u4e2a\u591c\u665a\u90fd\u8981\u611f\u6069\uff0c\u6bcf\u4e00\u5929\u4e5f\u8981\u611f\u6069\u3002"} +{"id": "0001807", "video_name": "204c76ee-d70e-5f8a-82e5-14a2b50b48f4", "text": "\u963f\u62c9\u4e01\u548c\u57ce\u5e02\u4e2d\u7684\u9b54\u706f\u7cbe\u7075"} +{"id": "0001808", "video_name": "20540a0e-8c7e-5cc9-9fd8-6115c1ac7acc", "text": "\u4e00\u5f20\u6050\u9f99\u5728\u6d77\u6ee9\u4e0a\u9a91\u81ea\u884c\u8f66\u7684\u56fe\u50cf\u3002"} +{"id": "0001809", "video_name": "205577c6-a7e4-55bf-834c-4b2893a4490f", "text": "\u4e00\u80a1\u5f3a\u70c8\u7684\u98d3\u98ce\u671d\u7740\u4e00\u5ea7\u6469\u5929\u5927\u697c\u79fb\u52a8\u3002"} +{"id": "0001810", "video_name": "20649f19-2c28-5b00-88ee-d1966ed0ccbe", "text": "\u5728\u5916\u661f\u7403\u7684\u53e2\u6797\u88e1\uff0c\u4e00\u500b\u661f\u5149\u7480\u74a8\u7684\u591c\u665a\uff0c\u5230\u8655\u662f\u8272\u5f69\u7e7d\u7d1b\u7684\u5916\u661f\u690d\u7269\uff0c"} +{"id": "0001811", "video_name": "20659f9f-2038-5065-a1b3-a38663ca7594", "text": "\u5b69\u5b50\u4eec\u722c\u51fa\u5e8a\uff0c\u6253\u54c8\u6b20\u3001\u4f38\u61d2\u8170\uff0c\u8bd5\u56fe\u9192\u6765\u3002"} +{"id": "0001812", "video_name": "206e037f-7d86-52a1-a893-12ee2424705d", "text": "\u5c55\u793a\u4e86\u4e16\u754c\u5404\u5730\u624b\u6301\u9009\u7968\u6325\u821e\u9009\u7968\u7684\u4eba\u4eec\u7684\u89c6\u9891\u3002"} +{"id": "0001813", "video_name": "206f5519-f7f6-59d7-b785-bb49eadee7a5", "text": "\u5927\u5b66\u8ba1\u7b97\u673a\u79d1\u5b66\u8bfe\u4e0a\uff0c\u60a8\u53ef\u4ee5\u770b\u5230\u5b66\u751f\u7684\u5c4f\u5e55\uff0c\u540c\u65f6\u8fdb\u884c\u76d1\u8003\u8003\u8bd5\u3002\u8bf7\u8ba9\u5b83\u53d8\u5f97\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "0001814", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "\u730e\u4eba\u4eec\u653e\u4e0b\u6b66\u5668\u5e76\u79bb\u5f00\u4e1b\u6797\uff0c\u6355\u6349\u5230\u53d8\u9769\u548c\u51b3\u5fc3\u7684\u65f6\u523b\u3002"} +{"id": "0001815", "video_name": "2076f93e-b344-5d88-a938-92489c0020eb", "text": "\u4e00\u4e2a\u7a7f\u7740\u53e4\u9a70\u8863\u670d\u7684\u7537\u4eba\u6234\u4e0a\u773c\u955c\u3002\u5f88\u597d\u7684\u7ec6\u8282\u3002\u4e00\u5219\u5546\u4e1a\u5e7f\u544a\u3002"} +{"id": "0001816", "video_name": "20781dd8-0b57-564b-8bef-b216719ed029", "text": "\u4e00\u8f6e\u6ee1\u6708\u6302\u5728\u4e91\u5c42\u4e2d\uff0c\u4e91\u6735\u8f7b\u8f7b\u5730\u79fb\u52a8\u7740\uff0c\u5728\u5730\u9762\u4e0a\u6295\u4e0b\u8be1\u5f02\u7684\u5f71\u5b50\u3002"} +{"id": "0001817", "video_name": "20782a23-2977-5ce2-8e07-3c33fbac08b5", "text": "\u4e00\u4e2a\u6709\u817f\u7684\u83e0\u841d\u5728\u5706\u5708\u91cc\u8dd1\u6765\u8dd1\u53bb\u3002"} +{"id": "0001818", "video_name": "2079cd71-1b9d-5425-923d-a9c574bf4ee2", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7a7f\u7740\u5b87\u822a\u670d\uff0c\u6f02\u6d6e\u5728\u5b87\u5b99\u4e2d\uff0c\u5730\u7403\u5728\u4ed6\u8eab\u540e\u3002\u8fd9\u662f\u4e00\u90e88K\u7684\u7279\u5199\u7535"} +{"id": "0001819", "video_name": "2083e11e-7582-5167-8f49-43aedc3cfa6c", "text": "\u4e00\u7fa4\u5e2e\u6d3e\u6b63\u5728\u8c6a\u534e\u522b\u5885\u91cc\u805a\u4f1a\u559d\u9152\u3002"} +{"id": "0001820", "video_name": "2083f202-ea56-5f87-9a03-c816e9966de5", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6447\u6446\u7740\u5979\u7684\u8eab\u6750\u3002"} +{"id": "0001821", "video_name": "20860acb-ddae-51c9-a9b4-fcfc1723dd2d", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u65cb\u8f6c\uff0c\u7136\u540e\u53d8\u5f62\u6210\u5357\u74dc\u706f\u3002"} +{"id": "0001822", "video_name": "208a495d-e305-5e91-bd5e-b802d5a3006f", "text": "\u7b2c\u5341\u4efb\u533b\u751fDavid Tennant\u5728\u6dcb\u6d74\u65f6\u5403\u6c64\u3002"} +{"id": "0001823", "video_name": "208c8cbe-c58a-5b59-9c59-ca144bfc343f", "text": "\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u878d\u5316\uff0c\u620f\u5267\u6027\u7684\uff0c\u62bd\u8c61\u7684\u3002"} +{"id": "0001824", "video_name": "20950ecf-02b1-51a3-9867-439052961b69", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u662f\u53ef\u89c1\u7684\uff0c\u800c\u5730\u7403\u4e0a\u7684\u6240\u6709\u6d77\u6d0b\u90fd\u53d8\u6210\u4e86\u5496\u5561\u3002"} +{"id": "0001825", "video_name": "2097e437-431e-5b5d-9a4d-9270ae330289", "text": "\u4e00\u53f0\u4eba\u5de5\u667a\u80fd\u6316\u6398\u673a\u88c5\u8f7d\u673a\u5728\u8ba1\u7b97\u673a\u63a7\u5236\u4e0b\u5de5\u4f5c\u3002"} +{"id": "0001826", "video_name": "209b1c81-9b3d-5e77-9ea0-16fee8a755ef", "text": "\u9cdf\u9c7c\u5728\u4e00\u8f86\u653e\u7740\u54cd\u4eae\u97f3\u4e50\u7684\u8f66\u91cc\u4e58\u5750\u3002"} +{"id": "0001827", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya\u548c\u6c64\u666e\u68ee\u5148\u751f\u5750\u5728\u95e8\u5eca\u4e0a\uff0c\u5206\u4eab\u6545\u4e8b\u3002"} +{"id": "0001828", "video_name": "20a0da02-a975-5052-84b3-1a7183d708cb", "text": "\u84dd\u8272\u6d77\u6d0b\u6ce2\u6d6a\u5728\u767d\u8272\u80cc\u666f\u4e0a"} +{"id": "0001829", "video_name": "20a1f649-f823-5a91-8365-8f9845db1b31", "text": "\u4e00\u8258\u7834\u51b0\u8239\u6b63\u5728\u51b0\u5c42\u4e2d\u7a7f\u884c\u3002"} +{"id": "0001830", "video_name": "20ae3e05-dc61-51bb-b225-8b077ddaffc0", "text": "\u6d77\u6d0b\u548c\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u661f\u661f\u5728\u95ea\u8000\u3002"} +{"id": "0001831", "video_name": "20b772a8-12d1-5b1f-94cd-0180d702aa80", "text": "\u521b\u9020\u4e00\u4e2a\u6de1\u84dd\u8272\u548c\u534a\u767d\u8272\u7684\u7532\u58f3\u866b\u6cbf\u7740\u6d77\u8fb9\u8def\u884c\u9a76\u3002"} +{"id": "0001832", "video_name": "20b84fe2-73d6-57d0-bb13-024b1288698a", "text": "\u4e00\u672c\u6d3b\u751f\u751f\u7684\u4e66\u7c4d\u50cf\u4e00\u53ea\u9e1f\u4e00\u6837\u5728\u56fe\u4e66\u9986\u91cc\u98de\u821e\uff0c\u7ffb\u52a8\u7740\u5b83\u7684\u9875\u7801\u3002"} +{"id": "0001833", "video_name": "20c0b9f8-525d-5adf-87fb-ffcdaff7f162", "text": "\u62c9\u6731\u548c\u4ed6\u7684\u7236\u4eb2\u4e00\u8d77\u5728\u7530\u5730\u91cc\u5de5\u4f5c\uff0c\u6536\u83b7\u4e86\u4e30\u6536\u7684\u5e84\u7a3c\u3002"} +{"id": "0001834", "video_name": "20c4de8d-123d-5c36-baac-ae9ac6ea6b3b", "text": "\u9713\u8679\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\uff0c\u79d1\u6280\u672a\u6765\u611f\uff0c\u53d1\u5149\u76843D\u7269\u4f53\uff0c\u77f3\u69b4\u77f3\uff0c\u7537\u6027\u5de5\u4f5c\u5ba4\u6444\u5f71\uff0c\u5feb\u95ea"} +{"id": "0001835", "video_name": "20cedcfa-27fd-5888-a60e-afe4c6627e4e", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u5b87\u822a\u670d\u7684\u7537\u5b69\u5728\u548c\u4e00\u4e2a\u975e\u5e38\u5947\u602a\u7684\u5916\u661f\u4eba\u4ea4\u8c08\uff0c\u4e0d\u662f\u5413\u4eba\u7684\u90a3\u79cd\uff0c\u800c\u662f\u8fea"} +{"id": "0001836", "video_name": "20d89234-041b-5647-9281-9810d2a85307", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u72d7\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "0001837", "video_name": "20e1a266-606b-59d2-9b38-fcd7a9650a73", "text": "\u4e00\u4e9b\u7cd6\u679c\u5305\u88c5\u6563\u843d\u5728\u4e00\u5f20\u706f\u5149\u684c\u4e0a\uff0c\u56db\u4e2a\u810f\u767d\u5496\u5561\u676f\uff0c\u4e24\u4e2a\u7a7a\u7684\u8336\u6258\uff0c\u903c\u771f"} +{"id": "0001838", "video_name": "20e9f569-44a8-56d7-abda-fca1673796de", "text": "\u4e00\u4e2a\u666e\u901a\u7684\u4eba\u770b\u7740\u4e00\u7fa4\u90aa\u6076\u7684\u9a91\u58eb\uff0c\u9a91\u58eb\u4eec\u4e5f\u770b\u5411\u8fd9\u4e2a\u4eba\u3002"} +{"id": "0001839", "video_name": "20f0b0b4-4b8b-5c09-a676-e262cc0ed365", "text": "\u7531\u4e8e\u6ca1\u6709\u6559\u80b2\u7ecf\u8d39\u652f\u6301\u3002"} +{"id": "0001840", "video_name": "20f4ef58-405e-5dca-9aff-f065759bbfd4", "text": "\u8718\u86db\u4fa0\u5750\u5728\u4e00\u5ea7\u5854\u4e0a\u51c6\u5907\u8df3\u4e0b\uff0c\u7535\u5f71\u5316\u7684\u9ad8\u5bf9\u6bd4\u5ea6\u548c\u9971\u548c\u5ea6\uff0c50mm\u955c\u5934\u3002"} +{"id": "0001841", "video_name": "20f99bcd-6426-5266-963c-87cda3135c4c", "text": "\u665a\u4e0a\u7684\u5f00\u653e\u575f\u5893\u91cc\u85cf\u7740\u4e00\u4e2a\u5fae\u7b11\u3002"} +{"id": "0001842", "video_name": "20fbd1aa-5044-5a15-8916-00598b32edde", "text": "\u4e00\u6bb51970\u5e74\u4ee3\u7684\u5f71\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u4eba\u5728\u7194\u5ca9\u6c60\u4e2d\u6eb6\u89e3\u7684\u573a\u666f\u3002"} +{"id": "0001843", "video_name": "20ff0db7-bd1c-59e1-bd57-73d94963c653", "text": "18\u5c81\u7684\u5973\u5b69\u6ca1\u6709\u80f8\u90e8\uff0c\u4e5f\u6ca1\u6709\u7a7f\u7740\u3002\n\nSource sentence: I am looking forward to your reply. \n\u6211\u671f\u5f85\u7740\u60a8\u7684\u56de\u590d\u3002"} +{"id": "0001844", "video_name": "20ffb2fb-9e9a-51c2-a0d3-1a6bf5cd3709", "text": "\u4e24\u4e2a\u670b\u53cb\u7684\u76ae\u514b\u65af\u98ce\u683c\u52a8\u753b\uff0c\u4ed6\u4eec\u5f7c\u6b64\u6325\u624b\u3002"} +{"id": "0001845", "video_name": "21010ee4-01d4-5d2d-a7b3-96a9f9df1735", "text": "\u6210\u719f\u7684\u9ea6\u7530\uff0c\u957f\u957f\u7684\u830e\u6746\uff0c\u4e30\u6ee1\u7684\u7a57\u5b50\uff0c\u84ec\u677e\u7684\u5916\u8868\uff0c\u6df1\u7eff\u8272\u7684\u9ea6\u7530\uff0c\u9633"} +{"id": "0001846", "video_name": "21011eb9-1d5e-5963-a018-f55368876cd9", "text": "\u4e8c\u6218\u671f\u95f4\u7684\u98de\u673a\u4e0a\u6709\u4e00\u53ea\u718a\u732b\u3002"} +{"id": "0001847", "video_name": "2102958c-ea7d-54df-a6c8-d14198a3b738", "text": "\u4e00\u4e2a10\u5c81\u7684\u539f\u4f4f\u6c11\u5b69\u5b50\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\u5728\u957f\u8349\u4e2d\u5954\u8dd1\u3002"} +{"id": "0001848", "video_name": "210bc3ff-10d0-5093-919e-8c33b35f5bca", "text": "1967\u5e74\u7684\u54c8\u4f5b\u5b9e\u9a8c\u5ba4\uff1a\u65af\u5766\u5229\u00b7\u7c73\u5c14\u683c\u62c9\u59c6\u5728\u54c8\u4f5b\u5b9e\u9a8c\u5ba4\u7684\u73af\u5883\u4e2d\uff0c\u5468\u56f4\u6709\u52a9\u624b\u548c\u7814"} +{"id": "0001849", "video_name": "21129149-e052-5082-892d-bf3f1db54f06", "text": "\u7f8e\u4e3d\u7684\u65e5\u672c\u5973\u5b69\u51c6\u5907\u597d\u6218\u6597\u4e86\u3002"} +{"id": "0001850", "video_name": "2118daaf-a66d-56f1-9019-11b23be606a7", "text": "\u5e03\u62c9\u59c6\u5409\u4e3b\u5750\u5728\u83b2\u82b1\u4e0a\u3002"} +{"id": "0001851", "video_name": "21200734-077b-52f2-933f-6fee1cbda780", "text": "\u5e26\u7740\u4e1d\u5e26\u7684\u53ef\u7231\u732b\u5934\u9e70\uff1a\u98de\u5feb\u5730\u98de\u884c\u5e76\u964d\u843d\u5728\u624b\u4e0a\u3002"} +{"id": "0001852", "video_name": "2121ec1d-4c74-5f68-adf4-65442932b9b2", "text": "\u5c0f\u5b69\u5728\u6c34\u4e2d\u73a9\u800d\u7684\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "0001853", "video_name": "2123c784-d0f7-5fe2-836e-130322bd8016", "text": "\u585e\u5c14\u8fbe\u7684\u8096\u50cf\uff0c\u673a\u68b0\u670b\u514b\uff0c\u8349\u82b1\uff01\u5730\u5e73\u7ebf\uff1a\u96f6\u9ece\u660e\u673a\u5668\u3002"} +{"id": "0001854", "video_name": "2124c82c-61b4-50fe-902f-450aea234b5d", "text": "\u4e00\u4e2a\u53a8\u5e08\u5728\u8212\u9002\u7684\u73af\u5883\u4e0b\u70f9\u996a\u7f8e\u98df\u7684\u89c6\u9891\uff0c\u914d\u4ee5\u7535\u5f71\u5316\u7684\u7167\u660e\u3002"} +{"id": "0001855", "video_name": "2125f61c-3214-5fa8-8027-5bca247a3fa5", "text": "\u5de8\u5927\u7684\u5de8\u4eba\u671d\u7740\u71c3\u70e7\u7684\u57ce\u5821\u5954\u8dd1\u3002"} +{"id": "0001856", "video_name": "2129eea7-728d-5ee6-b4a3-2db35c36ac7c", "text": "\u6765\u81ea\u4e00\u90e81970\u5e74\u7684\u827a\u672f\u7535\u5f71\u7684\u56fe\u50cf\u3002\u4e00\u4e2a\u7531\u767d\u5149\u5236\u6210\u7684\u8f6e\u5ed3\u6b63\u5728\u6ce8\u89c6\u7740\u6a59\u8272\u7684\u65e5\u843d\u3002"} +{"id": "0001857", "video_name": "2132bc2e-973a-590c-93b1-d5308dcc2d3d", "text": "\u52a8\u753b\u7eff\u8272\u91ce\u9a6c\u5728\u4e91\u4e2d\u5954\u8dd1\u3002"} +{"id": "0001858", "video_name": "21365960-171b-5827-90ad-21cf325ca5ff", "text": "\u7537\u5b69\u9ad8\u9ad8\u5174\u5174\u5730\u8e22\u8db3\u7403\u3002"} +{"id": "0001859", "video_name": "21388876-220e-58df-8a4b-fa67b6de97ee", "text": "\u706b\u5f71\u5fcd\u8005\u5750\u5728\u706b\u8f66\u4e0a\u3002\u4fe1\u606f\uff1a\u55ef\u3002"} +{"id": "0001860", "video_name": "21463d5d-8a9a-5df6-a5d3-140cf324e6ce", "text": "\u4e00\u53ea\u72d7\u5728\u516c\u5171\u6c7d\u8f66\u540e\u9762\u5954\u8dd1\u3002"} +{"id": "0001861", "video_name": "214777d1-bab1-56fc-a858-b9363bffe070", "text": "\u9ed1\u4e91\u5bc6\u5e03\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "0001862", "video_name": "2147b602-8f7e-50ca-9af1-2e6946d1302e", "text": "\u52a8\u6001\u5546\u52a1\u5957\u88c5\u8d70\u5411\u6210\u529f\u3002"} +{"id": "0001863", "video_name": "214c0217-7bc7-512b-8c93-a3e84f87d1e1", "text": "\u8bf7\u5236\u4f5c\u4e00\u6bb5\u8ff7\u4eba\u7684\u89c6\u9891\uff0c\u5c55\u793a\u5404\u79cd\u6237\u5916\u6d3b\u52a8\u3002\u89c6\u9891\u5e94\u8be5\u6355\u6349\u5230\u8fd9\u4e9b\u6d3b\u52a8\u7684\u80fd\u91cf\u3001\u6fc0\u52a8\u548c\u591a\u6837\u6027\uff0c\u5305\u62ec\u97f3"} +{"id": "0001864", "video_name": "214f21d4-e38c-5688-8de2-55b81a60a974", "text": "\u7537\u4eba\u5728\u7535\u5f71\u9662\u91cc\u95ee\u53e6\u4e00\u4e2a\u7537\u4eba\u95ee\u9898\u3002"} +{"id": "0001865", "video_name": "214fcf64-7dea-5711-937f-37a838fe2244", "text": "\u4e00\u4f4d\u8001\u4eba\u5728\u4e5d\u70b9\u5341\u516d\u5206\u8df3\u6447\u6eda\u821e\u3002"} +{"id": "0001866", "video_name": "21523810-9be7-597f-94ab-c81da5361fea", "text": "\u4e00\u8f86\u540e\u542f\u793a\u5f55\u6c99\u6f20\u5de1\u822a\u8f66\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u7a33\u5b9a\u6444\u5f71"} +{"id": "0001867", "video_name": "215ba29f-114b-5cf6-837c-c2a7c0b59924", "text": "\u521b\u4f5c\u4e00\u4e2a\u8f7b\u76ae\u80a4\u91d1\u53d1\u5973\u4eba\uff0c\u624b\u6301\u8d2d\u7269\u888b\uff0c\u5750\u5728\u8d2d\u7269\u8f66\u91cc\u7684\u6f2b\u753b\u3002"} +{"id": "0001868", "video_name": "215d434e-8608-530a-b2c0-e68c8223079b", "text": "\u5e0c\u533a\u67ef\u514b\u7535\u5f71\u7684\u9759\u6b62\u753b\u9762\uff0c\u5f69\u8272\u7535\u5f71\uff0c\u62cd\u6444\u4e86\u4e00\u5f20\u57ce\u5e02\u4eba\u53e3\u5bc6\u96c6\u533a\u7684\u9e1f\u77b0\u56fe\uff0c\u5915\u9633\u897f\u4e0b"} +{"id": "0001869", "video_name": "21648fce-3fad-5527-98c8-efd74972db71", "text": "\u9633\u5149\u660e\u5a9a\u7684\u4e00\u5929\uff0c\u8f6c\u6362\u5230\u6bd5\u4e1a\u5973\u5b69\u5178\u793c\u7684\u573a\u666f\u3002"} +{"id": "0001870", "video_name": "2166f69d-df12-585c-8e3b-4b763458d157", "text": "\u4e00\u4e2a\u98de\u789f\u98de\u8fc7\u9ea6\u7530\u3002"} +{"id": "0001871", "video_name": "2168f5af-fe23-57c7-98e2-1d68fa9a14bf", "text": "\u5728\u4e00\u4e2a\u6709\u4e24\u4e2a\u592a\u9633\u7684\u5947\u602a\u661f\u7403\u4e0a\uff0c\u73bb\u7483\u5706\u9876\u4e0e\u80fd\u91cf\u5149\u7ebf\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u591c\u665a\u7684\u6c14\u6c1b\u3002"} +{"id": "0001872", "video_name": "216d7632-2443-5b8f-bf22-c9fbdd04e5cd", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u96d5\u5851\u7eb8\u6784\u9020\u7684\u98ce\u683c\u4e2d\u6446\u59ff\u52bf\uff0c\u914d\u7740\u8fc8\u514b\u00b7\u574e\u5e15\u4e4c\u7684\u82b1\u5349\u70b9"} +{"id": "0001873", "video_name": "216dffca-e76c-5f2e-b8d5-2699385ce8ef", "text": "\u7f8e\u4e3d\u5973\u5b69\u7684\u81a8\u80c0\u5634\u5507\u3002\u6444\u50cf\u673a\u5bf9\u7740\u8138\u90e8\u8fdb\u884c\u653e\u5927\u62cd\u6444\u3002"} +{"id": "0001874", "video_name": "2174b4eb-d125-58b7-a230-1e4bec89c112", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u591a\u5143\u5b87\u5b99\u4e2d\u4e0e\u4e00\u6761\u9f99\u6218\u6597\uff0c\u7537\u5b69\u624b\u6301\u4e00\u628a\u706b\u7130\u5251\uff0c\u5728\u80cc\u666f\u4e2d\uff0c\u591a\u5143\u5b87\u5b99\u88ab"} +{"id": "0001875", "video_name": "21797d28-cd8e-571f-8430-6a2fa3dca411", "text": "\u5236\u4f5c\u4e00\u6bb52\u520650\u79d2\u7684\u97f3\u4e50\u89c6\u9891\uff0c\u5185\u5bb9\u5173\u4e8e\u901a\u8fc7\u8d29\u5356\u6bd2\u54c1\u548c\u9a7e\u9a76\u5feb\u8f66\u8d5a\u53d6\u91d1\u94b1\uff0c\u5e76\u5728\u80cc\u666f\u4e2d\u6dfb\u52a0\u7206"} +{"id": "0001876", "video_name": "217ee36b-745c-593a-82ba-eed12bd54062", "text": "\u5965\u666e\u8482\u9ed8\u730e\u6237\u5ea7\u666e\u745e\u59c6\u6b63\u5728\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "0001877", "video_name": "21806133-2483-51bd-8799-b9c24d8a4de3", "text": "\u5b69\u5b50\u4eec\u5728\u96e8\u4e2d\u5236\u4f5c\u7eb8\u8239\u5e76\u73a9\u800d\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0001878", "video_name": "21829e80-ee0c-5b6c-bb37-ccc27d3b32af", "text": "\u5f69\u8679\u5496\u5561\u5728\u58f6\u91cc\u65cb\u8f6c\u3002"} +{"id": "0001879", "video_name": "2182c7a1-0b57-53ab-8c1a-4f95ad96fb77", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\uff0c\u5b64\u72ec\u7684\u4e00\u4e2a\u4eba\uff0c\u6708\u5149\u4e0b\u7684\u52a8\u6f2b\u5973\u5b69\u3002\n\nSource sentence: I love you more than anything in this world.\n\u6211\u7231\u4f60"} +{"id": "0001880", "video_name": "2184b2d9-5d25-5830-8c2f-d686ab119de5", "text": "\u8377\u82b1\u7efd\u653e\uff0c\u8774\u8776\u98de\u821e\u3002"} +{"id": "0001881", "video_name": "2185890f-3c4c-5b98-8d17-e4003792daab", "text": "\u4e00\u53ea\u732b\u5728\u68ee\u6797\u91cc\u6643\u52a8\u7740\u4e00\u4e2a\u7ea2\u8272\u7684\u86cb\u3002"} +{"id": "0001882", "video_name": "218ae330-861d-5866-864d-1fe6c1f4f5b2", "text": "\u53ef\u7231\u7684\u5c0f\u72d0\u72f8\u6162\u6162\u5730\u7728\u773c\u775b\uff0c\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "0001883", "video_name": "218d0b07-252a-5757-863b-0ea19e2f5e64", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5144\u5f1f1\u7684\u753b\u9762\u7d20\u6750"} +{"id": "0001884", "video_name": "218ee88f-31ef-5869-a343-e59d5f65a1bb", "text": "\u70ed\u5e26\u96e8\u6797\u7684\u77e2\u91cf\u98ce\u683c\u4e0b\u7684\u96ea\u5929\u3002"} +{"id": "0001885", "video_name": "2190ec53-bbf8-5831-b617-da0b372a4f2c", "text": "\u6709\u4eba\u5c3d\u5168\u529b\u5954\u8dd1\uff0c\u88ab\u8bb8\u591a\u50f5\u5c38\u8ffd\u9010\uff0c\u5728\u68ee\u6797\u4e2d\u95f4\u3002"} +{"id": "0001886", "video_name": "21953fa0-f01e-536f-914b-075ae2abedd4", "text": "\u5341\u6708\u662f\u4e16\u754c\u5fc3\u7406\u5065\u5eb7\u610f\u8bc6\u6708\u3002"} +{"id": "0001887", "video_name": "219a1af9-3758-5229-b712-32d4a7ffb925", "text": "GTA6 \u6e38\u620f\u5b9e\u51b5\u9884\u544a\uff0c\u8fc8\u963f\u5bc6\uff0c\u8857\u5934\u6f02\u79fb\u8d5b\u8f66\uff0c\u6162\u52a8\u4f5c\uff0c\u6b63\u9762\u62cd\u6444"} +{"id": "0001888", "video_name": "21a8a0bf-aef8-5fc4-a19d-f0a5a074904b", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\uff0c\u70d8\u7119\u7c89\u672b\u98de\u821e\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0001889", "video_name": "21adca89-fb8c-578f-a37a-d017774be468", "text": "\u83ab\u65af\u79d1\u5e02\u4e2d\u5fc3\uff0c\u661f\u671f\u65e5\uff0c\u5546\u52a1\u55b7\u6c14\u673a\uff0c8k\uff0c\u8d85\u7ea7\u9ad8\u901f\u52a8\u4f5c\u76f8\u673a\u903c\u771f\u3002"} +{"id": "0001890", "video_name": "21adf059-78a2-57d3-9540-ed53b6d67e94", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u767d\u5154\u5b50\u7ad9\u5728\u8349\u5730\u4e0a\uff0c\u592a\u9633\u7167\u8000\u7740\u5b83\u3002"} +{"id": "0001891", "video_name": "21b21c91-9516-56b8-9fa4-4e2b03d39a6d", "text": "\u7535\u5f71\u822c\u7684\u6050\u6016\u573a\u666f\u5728\u4e00\u4e2a\u5145\u6ee1\u706d\u866b\u5668\u7684\u672a\u6765\u5b9e\u9a8c\u5ba4\u4e2d\u8bbe\u8ba1\uff0c\u5177\u6709\u7535\u5f71\u611f\u3001\u94f6\u7ffc\u6740\u624b\u98ce\u683c\uff0c"} +{"id": "0001892", "video_name": "21b5089a-1cb1-5c8e-a6d9-c2c3b5928f1c", "text": "4\u53ea\u9713\u8679\u9752\u86d9\u6392\u6210\u4e00\u5217\uff0c\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u4e0d\u505c\u7728\u773c\u5e76\u4fa7\u79fb\u3002"} +{"id": "0001893", "video_name": "21b767e8-079b-512d-aef2-3451686a88fb", "text": "\u6574\u4e2a\u9ed1\u767d\u753b\u9762\uff0c\u7ec6\u817b\u7684\u58a8\u6c34\u753b\uff0c\u6cb9\u6f06\u7b14\u89e6\uff0c\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u611f\u6027\u5973\u5b69\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u5c0f\u660e"} +{"id": "0001894", "video_name": "21b93ec7-80cc-5cf9-bbdb-b94612244240", "text": "\u6d77\u8fb9\u7684\u6cd5\u56fd\u5317\u90e8\u6709\u4e00\u5bf9\u65b0\u4eba\uff0c\u65b0\u5a18\u7528\u82b1\u88c5\u9970\u7684\u871c\u8272\u5934\u53d1\u76d8\u6210\u53d1\u9afb\uff0c\u65b0\u90ce\u5149\u5934\uff0c\u8eab\u7a7f"} +{"id": "0001895", "video_name": "21c302d7-b9c9-5ef2-b511-c54e44ff5f92", "text": "\u8003\u8bd5\u3001\u901a\u8fc7\u3001\u5feb\u4e50\u7684\u7537\u5973\u3002"} +{"id": "0001896", "video_name": "21c9e727-80e2-5129-a11b-ba66ddff3927", "text": "\u5c0f\u5b66\u5973\u8001\u5e08\u5728\u6559\u5ba4\u91cc\u751f\u6c14\u4e86\uff0c\u6307\u7740\u624b\u6307\u5e76\u8bf4\u8bdd\uff0c\u770b\u8d77\u6765\u5f88\u751f\u6c14\u3002"} +{"id": "0001897", "video_name": "21cb6e1c-9430-58cf-a77c-e745fcbeec6e", "text": "\u8fd0\u52a8\u5ef6\u65f6\u4ece\u767d\u5929\u5230\u9ed1\u591c\uff0c\u4ee5\u7eb5\u5411\u62cd\u6444\u3002"} +{"id": "0001898", "video_name": "21cf75f7-6b16-5d7f-8f3e-bf083cdb40f2", "text": "\u4eba\u7c7b\u8fc1\u5f99\u7684\u672a\u6765-\u5f92\u6b65\u65c5\u884c"} +{"id": "0001899", "video_name": "21d19f83-7b91-560d-93ad-871664aa571b", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u5973\u5b69\u63a7\u5236\u7740\u6c34\uff0c\u6c34\u987a\u7740\u5979\u7684\u53cc\u624b\u5e73\u6ed1\u5730\u6d41\u6dcc\u3002"} +{"id": "0001900", "video_name": "21d942c8-c264-5ee9-afbc-09257d43bf85", "text": "\u6d77\u5e95\u6709\u87ba\u8d1d\u5728\u722c\u884c\u3002"} +{"id": "0001901", "video_name": "21da9430-d0dc-5d20-9026-847431ab6581", "text": "\u5de8\u5927\u7684\u6d41\u661f\u5760\u843d\u5230\u5730\u7403\u4e0a\uff0c\u903c\u771f\u3001\u9ad8\u6e05\u3001\u6c1b\u56f4\u611f\u5f3a\u3001\u7535\u5f71\u5316\u3002"} +{"id": "0001902", "video_name": "21dbb370-a458-55ab-9d21-4205ba7171d2", "text": "\u79d1\u5e7b\u6218\u4e89\u5728\u6708\u7403\u4e0a\u3002"} +{"id": "0001903", "video_name": "21dc7c31-b426-501d-81d8-cd0f24297f15", "text": "\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u5728\u8db3\u7403\u6bd4\u8d5b\u4e2d\u6253\u8fdb\u4e86\u4e00\u4e2a\u6f02\u4eae\u7684\u8fdb\u7403\u3002"} +{"id": "0001904", "video_name": "21dc971c-5b2b-517b-82a1-9a4c7f44a690", "text": "\u706d\u9738\u548c\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u4e00\u5ea7\u672a\u6765\u57ce\u5e02\u7684\u5e9f\u589f\u4e2d\u640f\u6597\u3002"} +{"id": "0001905", "video_name": "21e23eee-0c1e-5a69-b197-f1331ccd3d20", "text": "\u81ea\u7531\u804c\u4e1a\u8005\u4f7f\u7528\u79fb\u52a8\u5e94\u7528\u7a0b\u5e8f\u83b7\u53d6\u6f5c\u5728\u5ba2\u6237\u6216\u5de5\u4f5c\u3002"} +{"id": "0001906", "video_name": "21ede3be-50cd-593d-86f6-ea4ed7d5674b", "text": "\u4eba\u7c7b\u548c\u673a\u5668\u4eba\u5e76\u80a9\u7ad9\u5728\u4e00\u8d77\u7684\u5f3a\u5927\u5f62\u8c61\uff0c\u8c61\u5f81\u7740\u5371\u673a\u4e2d\u953b\u9020\u7684\u56e2\u7ed3\uff0c\u56e0\u4e3a\u4ed6\u4eec\u5171\u540c\u52aa\u529b\u9632\u6b62\u91d1"} +{"id": "0001907", "video_name": "21f2d228-ee35-5dc0-8f1d-db66fa47a649", "text": "\u4e00\u4f4d\u7bee\u7403\u8fd0\u52a8\u5458\u7a7f\u7740\u9177\u70ab\u7684\u7bee\u7403\u7403\u8863\uff0c\u6162\u52a8\u4f5c\u5730\u5411\u6444\u50cf\u673a\u8d70\u6765\u300210\u79d2\u89c6\u9891\u3002"} +{"id": "0001908", "video_name": "21f35a4b-1959-584e-b615-f0dbe7cea5e6", "text": "\u9752\u5c11\u5e74\u65f6\u5c1a\u5728\u706b\u8f66\u7ad9\u7b49\u5019\u3002"} +{"id": "0001909", "video_name": "21f9bc62-7cea-5117-8040-a4335216fe20", "text": "\u5fae\u89c2\u5c42\u9762\u4e0a\u4f20\u64ad\u7684\u75be\u75c5"} +{"id": "0001910", "video_name": "21fe2ade-47c8-52ef-a36b-b36e0dc81297", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b50\u5728\u591c\u665a\u7684\u7530\u91ce\u4e0a\u6f2b\u6b65\uff0c\u795e\u79d8\u3001\u65af\u62c9\u592b\u5f0f\u7684\u3002"} +{"id": "0001911", "video_name": "22037a71-bfce-5156-8ad5-4db859b7ef87", "text": "\u5973\u5b69\u6162\u6162\u5730\u52a8\u7740\u817f\uff0c\u6ca1\u6709\u6a21\u7cca\u7684\u56fe\u50cf\u3002"} +{"id": "0001912", "video_name": "220a1d26-12ca-5cf7-b253-c8837b0e2865", "text": "\u6587\u827a\u590d\u5174\u65f6\u671f\u5e74\u8f7b\u7537\u5b50\u7684\u5168\u8eab\u8096\u50cf\uff0c\u8868\u60c5\u4e30\u5bcc\uff0c\u5b8c\u7f8e\u5bb9\u989c\uff0c\u80e1\u987b\uff0c\u68a6\u5e7b\u666f\u8272\uff0c\u6781\u5177\u771f"} +{"id": "0001913", "video_name": "220c5198-4c4c-5b67-b2fb-8d4f118ad7e3", "text": "\u4f60\u7684\u7535\u5f71\u573a\u666f\u6765\u81ea\u4e8e1993\u5e74\u7531\u7ea6\u745f\u592b\u00b7\u82cf\u5fb7\u514b\u548c\u827e\u4e3d\u00b7\u5e03\u7f57\u4ec0\u7981\u64ad\u7684\u6050\u6016\u7535\u5f71\uff0c\u5177\u6709"} +{"id": "0001914", "video_name": "220d7d08-8c58-53f3-a98e-5bdd31e9eb71", "text": "\u4e00\u4e2a\u8001\u4eba\u72ec\u81ea\u5728\u5bb6\u5916\u7684\u82b1\u56ed\u91cc\u559d\u8336\u3002"} +{"id": "0001915", "video_name": "220d8f85-2bf8-52ab-89f8-3e45529df85c", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u81ea\u884c\u8f66\u5728\u4e00\u7247\u5145\u6ee1\u84dd\u8272\u548c\u7ea2\u8272\u90c1\u91d1\u9999\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "0001916", "video_name": "220eb508-8f94-5e32-b1c2-4b1e620d2906", "text": "3D\u8fea\u58eb\u5c3c\u8783\u87f9\u5728\u6708\u7403\u4e0a\u8df3\u821e\u3002"} +{"id": "0001917", "video_name": "22121e27-eae6-5891-bcf5-a2171962c26c", "text": "\u4e00\u4e2a\u52a0\u5229\u798f\u5c3c\u4e9a\u5973\u5b69\uff0c\u4f38\u5c55\u7740\u8eab\u4f53\uff0c\u5fae\u7b11\u7684\u9762\u5bb9\u3002"} +{"id": "0001918", "video_name": "221f90c1-ea13-5176-b541-59686ba3204f", "text": "\u592a\u9633\u53d8\u6210\u7089\u706b\uff0c\u53d8\u5f62\uff0c\u53d8\u8272\u6de1\u5f31\uff0c\u8fd0\u52a8\u5feb\u901f\uff0c\u653e\u5927\u89c6\u89d2\u3002"} +{"id": "0001919", "video_name": "222ec756-1746-5355-85e8-28e106494b5c", "text": "\u7a7f\u8fc7\u6811\u6797\u7684\u79fb\u52a8\u9633\u5149\uff0c\u80cc\u666f\u690d\u7269\u5728\u79fb\u52a8\uff0c\u8349\u4e0d\u52a8\uff0c\u5e7b\u60f3\u68ee\u6797\uff0c\u9633\u5149\uff0c\u9633\u5149\u5c04\u7ebf\u3002"} +{"id": "0001920", "video_name": "2230cd40-6583-5b6d-a162-4855a4402890", "text": "Source sentence: Leo Messi\u5728\u8db3\u7403\u573a\u4e0a\u5954\u8dd1\uff0c\u8e22\u8db3\u7403\u3002\n\nTranslation: \u6885\u897f\u5728\u8db3\u7403\u573a\u4e0a\u5954\u8dd1\uff0c\u8e22\u8db3\u7403\u3002"} +{"id": "0001921", "video_name": "224e2529-4d4d-5829-9d59-2834041dbebb", "text": "\u52a8\u6f2b\u57ce\u5e024K\u5feb\u901f\u79fb\u52a8\u7684\u65e5\u843d"} +{"id": "0001922", "video_name": "22535da7-6914-5498-9316-db878d868f68", "text": "\u97e9\u00b7\u7d22\u6d1b\u7a7f\u8fc7\u8857\u9053\uff0c\u52a8\u6001\u6a21\u7cca\uff0c8K\uff0c\u7535\u5f71\u9759\u5e27\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u8be6\u7ec6\uff0c\u865a\u5e7b\u5f15"} +{"id": "0001923", "video_name": "2253e299-2d9e-59b6-99d0-459fe034054e", "text": "\u7a7f\u7740\u7ea2\u8272\u5957\u88c5\u7684\u5546\u52a1\u5973\u58eb\uff0c\u914d\u6709\u8001\u864e\u5143\u7d20\u3002"} +{"id": "0001924", "video_name": "2258fabe-803c-5c39-a375-eb9f7ac1dc15", "text": "\u6211\u7684\u5c0f\u751f\u610f\u6210\u4e3a\u6210\u529f\u4f01\u4e1a\u5bb6\u7684\u6545\u4e8b\u3002"} +{"id": "0001925", "video_name": "2259df00-6125-51ba-9edb-38541e5ef2fe", "text": "\u4e00\u4e2a\u9ed1\u5f71\u4fef\u89c6\u7740\u6c99\u6f20\u3002\u4e00\u4e2a\u624b\u6307\u6309\u4e0b\u4e86\u6309\u94ae\u3002\u77ac\u95f4\uff0c\u6c99\u6f20\u53d8\u6210\u4e86\u51b0\u5ddd\u3002"} +{"id": "0001926", "video_name": "225cdac3-c473-5847-9df8-082d02cfa8c9", "text": "alpha\u72fc\u5c79\u7acb\u4e0d\u5012\uff0c\u6563\u53d1\u81ea\u4fe1\uff0c3D\u903c\u771f\u3002"} +{"id": "0001927", "video_name": "225d99bc-7797-5013-9b3b-f557fb1ade0e", "text": "\u5b87\u5b99\u98de\u8239\u964d\u843d\u5728\u706b\u661f\u4e0a\uff0c\u620f\u5267\u5316\u7684\u666f\u8c61\uff0c\u8fdc\u5904\u7684\u516c\u8def\u3002"} +{"id": "0001928", "video_name": "225ff6b4-0d28-5080-a41b-0946d2c1bbf3", "text": "\u4eba\u4eec\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u6d41\u52a8\u7684\u6c99\u6f20\u3002"} +{"id": "0001929", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "\u5f17\u62c9\u5fb7\u4e09\u4e16\uff08Vlad III\uff09\uff0c\u5373\u523a\u5ba2\u5f17\u62c9\u5fb7\uff08Vlad the Impaler\uff09\uff0c\u5728\u4e00\u5f20\u957f\u684c\u5b50\u4e0a\u7528\u9910\uff0c\u684c\u65c1\u6392\u5217\u7740"} +{"id": "0001930", "video_name": "2265d06a-4baa-5cc6-8c03-d7a93ab52b07", "text": "\u7535\u89c6\u8282\u76ee\u300a\u9b3c\u7b14\u9a6c\u838e\u300b\u7684\u6f14\u5458\u4eec\u4ee5\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u63cf\u7ed8\u3002"} +{"id": "0001931", "video_name": "226e44cc-64fe-5c9e-9c2b-d39f3ff2c484", "text": "einary world \nTranslated sentence: \u4e00\u4e2a\u8ff7\u5e7b\u7684\u89c6\u9891\u5c55\u793a\u4e86\u8fd9\u4e2a\u975e\u51e1\u7684\u4e16\u754c"} +{"id": "0001932", "video_name": "226f5b87-6503-5ab2-a300-2a83eb87f5d9", "text": "\u6c49\u7c73\u5c3c\u88abFBI\u902e\u6355\uff0c\u73b0\u5b9e\u3002"} +{"id": "0001933", "video_name": "2272e656-4b85-5634-9a7e-ca84cfcf5347", "text": "\u5236\u4f5c\u4e00\u4e2a\u4ee5\u300a\u7eff\u91ce\u4ed9\u8e2a\u300b\u548c\u300a\u6f58\u795e\u7684\u8ff7\u5bab\u300b\u7b49\u7535\u5f71\u670d\u88c5\u4e3a\u7075\u611f\u7684\u602a\u7269\u573a\u666f\uff0c\u7740\u91cd\u8868\u73b0\u8fd9"} +{"id": "0001934", "video_name": "22755d09-41c6-57d9-873d-8e9ea9e69001", "text": "\u8fc8\u963f\u5bc61974\u5e74\u6f2b\u753b\u98ce\u683c\u6d3e\u5bf9\u3002"} +{"id": "0001935", "video_name": "227566f7-67eb-5942-8e96-cc8c6b8ade7b", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u57c3\u53ca\u524d\uff0c\u7a7f\u7740\u5bfb\u5b9d\u670d\u88c5\u3002"} +{"id": "0001936", "video_name": "2279d9d9-0a9a-5860-be8a-28a17106f0dc", "text": "\u4e4c\u6258\u90a6\u793e\u4f1a\u4e0e\u673a\u5668\u4eba\u3002\u4fe1\u606f\uff1aRTV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0001937", "video_name": "227aaeb9-8d6a-52cc-8555-9bd07743bbb6", "text": "\u4e00\u4e2a\u8d70\u51fa\u623f\u95f4\u7684\u7537\u4eba"} +{"id": "0001938", "video_name": "227da66d-ac43-59c0-be43-c7a917a69d54", "text": "19\u4e16\u7eaa\u4e00\u8258\u5927\u8239\u62b5\u8fbe\u6cd5\u56fd\u6e2f\u53e3\u3002"} +{"id": "0001939", "video_name": "2282fac6-1ca9-584d-a107-652a36dbefa8", "text": "\u5b9a\u5236\u6e38\u620f\u53f0\u5f0f\u7535\u8111\u5c55\u793a\uff0c\u653e\u5927\uff0c\u8be6\u7ec6\u548c\u6b63\u786e\u5730\u5c55\u793aGPU\uff0cCPU\uff0cRAM\uff0c\u786c\u76d8\u548c\u4e3b\u677f\u7684\u4f4d\u7f6e\u3002"} +{"id": "0001940", "video_name": "228fc378-c88e-541d-8734-c38a3cffe928", "text": "\u5207\u7279\u00b7\u8d1d\u514b\u572820\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5c0f\u7235\u58eb\u4ff1\u4e50\u90e8\u91cc\u6f14\u594f\u5c0f\u53f7\u7684\u526a\u5f71\u3002"} +{"id": "0001941", "video_name": "2294beae-12df-581a-8dba-79d7d379d5f8", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5012\u6302\u5728\u4e00\u5757\u77f3\u5934\u4e0a\u3002"} +{"id": "0001942", "video_name": "22966783-0640-550d-9cb7-b7d2c4221d81", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5728\u4e0e\u5c71\u59c6\u5927\u53d4\u7684\u62f3\u51fb\u6bd4\u8d5b\u4e2d\uff0c\u7f8e\u5143\u62c9\u62c9\u961f\u5728\u80cc\u666f\u4e2d\u4e3a\u4ed6\u4eec\u52a0\u6cb9\u3002"} +{"id": "0001943", "video_name": "2299b75b-f39e-5072-afd6-ec04c36f9a4c", "text": "\u751f\u6210\u4e00\u6bb5\u6709\u516c\u53f8\u6807\u5fd7\u3001\u4e91\u548c\u6c34\u6ef4\u5143\u7d20\u7684\u8f6f\u4ef6\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "0001944", "video_name": "229b6d1a-eb70-58dd-8469-a59bf84673fa", "text": "\u963f\u9edb\u5c14\u7a7f\u7740\u957f\u888d\u5411\u7eff\u8272\u5916\u661f\u4eba\u5531\u6b4c\u3002"} +{"id": "0001945", "video_name": "229c7fb9-91c0-5ba8-b021-e402d0d5a00c", "text": "\u53ef\u89c6\u5316\u5a01\u6d1b\u5e03\u9c81\u514b\u9547\uff0c\u66fe\u88ab\u6050\u60e7\u6240\u7b3c\u7f69\uff0c\u73b0\u5728\u4f20\u8bf4\u7740\u4e00\u6bb5\u8d85\u8d8a\u6b7b\u4ea1\u7684\u975e\u51e1"} +{"id": "0001946", "video_name": "229d03b2-8505-5a05-a72b-a64b84914628", "text": "\u82f1\u6587\u539f\u53e5\uff1aA handsome rock star dressed in leather and denim drinks a glass of whiskey, his suitcases are packed, he is in his hotel room\u3002\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u4e00\u4e2a\u7a7f\u7740\u76ae\u9769"} +{"id": "0001947", "video_name": "229ef022-612f-5e77-b001-a12a2b1da472", "text": "\u8db3\u7403\u4f4e\u89d2\u5ea6\u4efb\u610f\u7403\u52a8\u6f2b\u98ce\u683c"} +{"id": "0001948", "video_name": "22a1f007-ee58-52ec-b4fc-027be1891e4f", "text": "\u5766\u514b\u3001\u98de\u673a\u3001\u8fb9\u5883\u3001\u519b\u961f\u3001\u7834\u574f\u3001\u62c5\u5fe7\u5bf9\u5df4\u57fa\u65af\u5766\u548c\u6b21\u5927\u9646\u7684\u6218\u4e89\u538b\u8feb\uff0c"} +{"id": "0001949", "video_name": "22a24335-e1f2-5a50-8702-f84c583111bc", "text": "\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u5728\u9152\u5427\u804a\u5929\u3002"} +{"id": "0001950", "video_name": "22a4b8f2-c806-507e-aa1f-31367b81cfb9", "text": "\u8fd9\u662f\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u63cf\u8ff0\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u76ef\u7740\u5728\u8349\u5730\u4e0a\u8e66\u8df3\u73a9\u800d\u7684\u5c0f\u5154\u5b50\u3002\u8fd9\u5f20\u56fe\u7247\u6355\u6349\u4e86\u4eba\u4eec"} +{"id": "0001951", "video_name": "22ab6fe3-1c27-5b8f-9562-86f4d35d903c", "text": "\u5e7b\u89c9\u6f29\u6da1\u98de\u901f\u65cb\u8f6c\uff0cUFO \u98de\u884c\u3002"} +{"id": "0001952", "video_name": "22acb1c6-edde-562e-a7e8-c1800ec20a46", "text": "Minecraft\u4e16\u754c\u91cc\u6709\u8718\u86db\u4fa0\u4e0e\u8759\u8760\u4fa0\u7684\u53f2\u8bd7\u7ea7\u5bf9\u51b3\uff0c\u80dc\u5229\u5c5e\u4e8e\u8718\u86db\u4fa0\uff0c\u5236"} +{"id": "0001953", "video_name": "22bcedda-79e4-5766-a29c-fe8c0bedf7d4", "text": "\u5b59\u5b50\u5e26\u7740\u70e6\u607c\u7684\u8868\u60c5\u8d70\u5411\u4ed6\u7684\u7237\u7237\u3002"} +{"id": "0001954", "video_name": "22c2de47-c9c0-5389-aa08-b32cc55f5b45", "text": "\u5b5f\u4e70\u5e02\u548c\u6d77\u6ee8\u666f\u89c2 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0001955", "video_name": "22c38a21-0a00-5897-9ba2-37b4cc128a97", "text": "\u603b\u4e4b\uff0c\u8fd9\u4e2a\u5408\u5e76\u7684\u6587\u672c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u4e16\u754c\uff0c\u751f\u7269\u670b\u514b\u5143\u7d20\u4e0e\u53cd\u4e4c\u6258\u90a6\u7f8e\u5b66\u878d\u5408\u5728\u4e00"} +{"id": "0001956", "video_name": "22c39661-d6b3-528b-863e-a3f5473d8686", "text": "\u4e9a\u5386\u5c71\u5927\u6e2f\u57c3\u53ca\uff0c\u91c7\u7528\u76ae\u514b\u65af\u548c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\u768416:9\u3002"} +{"id": "0001957", "video_name": "22c48527-e209-5074-b25f-9b96d4c5b615", "text": "training, and model deployment.\n\nAI\u6d41\u7a0b\u56fe\u5c55\u793a\u4e86\u521b\u5efa\u548c\u90e8\u7f72AI\u89e3\u51b3\u65b9\u6848\u6240\u6d89\u53ca\u7684\u4e0d\u540c\u6b65\u9aa4\u548c\u8fc7\u7a0b\uff0c\u5982\u6570\u636e\u6536\u96c6\u3001\u6570\u636e\u9884\u5904\u7406\u3001\u6a21\u578b"} +{"id": "0001958", "video_name": "22cb09b0-ed00-5ab2-a6b6-f7a1a292f2cf", "text": "\u4e00\u4e2a21\u5c81\u7684\u9ed1\u4eba\u5f00\u7740\u4e00\u8f86\u5170\u535a\u57fa\u5c3c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0cGS5\u3002"} +{"id": "0001959", "video_name": "22ccca34-cc76-52cb-b214-04758e57f038", "text": "\u628a\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u8fd9\u5e45\u753b\u52a8\u753b\u5316\u3002"} +{"id": "0001960", "video_name": "22d26964-dc28-58b0-b197-c9be0f11c030", "text": "\u52a0\u62ff\u5927\u590f\u5b63\u7684\u68ee\u6797\u91cc\uff0c\u6709\u4e00\u6761\u6709\u7011\u5e03\u548c\u6d41\u6c34\u7684\u5c0f\u6eaa\u6d41\u3002"} +{"id": "0001961", "video_name": "22d529aa-8155-5a38-96b0-fb05732fabe3", "text": "\u4e00\u53f0\u7535\u89c6\u6b63\u5728\u64ad\u653eBaywatch\u4e2dDavid Hasselhoff\u548c\u4ed6\u7684\u7535\u89c6\u513f\u5b50Hoby\u7684\u573a\u666f\uff0c\u8d85\u9ad8\u6e05\uff0c32K\u3002"} +{"id": "0001962", "video_name": "22d987eb-36d9-54f8-b3b5-36058b0ba873", "text": "\u8001\u4eba\u6b63\u5728\u7167\u987e\u82b1\u56ed\u3002"} +{"id": "0001963", "video_name": "22da3e17-e705-5a52-8009-b2a007661581", "text": "\u5c55\u793a\u4e0d\u540c\u6816\u606f\u5730\u4e2d\u7684\u52a8\u753b\u718a\uff0c\u98df\u7269\u548c\u6e38\u620f\uff0c2D\u52a8\u753b\u3002"} +{"id": "0001964", "video_name": "22dafcdb-840f-5362-80fa-2795c818ad53", "text": "\u4e00\u4f4d\u8eab\u7a7f\u91d1\u8272\u95ea\u4eae\u76d4\u7532\u7684\u9a91\u58eb\u5728\u661f\u7a7a\u4e2d\u6e38\u6cf3\u3002"} +{"id": "0001965", "video_name": "22e0fe3c-af28-53f2-ba27-bdea10697931", "text": "\u5e74\uff0c\u674e\u5c0f\u9f99\u5728\u8fea\u65af\u79d1\u821e\u6c60\u8df3\u821e\u3002 \n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272"} +{"id": "0001966", "video_name": "22e286e2-5832-5b0f-a635-94b19ef80bf0", "text": "\u5b66\u6821\u7684\u8868\u6f14\u867d\u7136\u5145\u6ee1\u6d3b\u529b\u548c\u9752\u6625\u7684\u70ed\u60c5\uff0c\u4f46\u73b0\u5728\u5374\u5e26\u7740\u4e00\u79cd\u6f5c\u5728\u7684\u5bd3\u610f\uff0c\u505c\u7559"} +{"id": "0001967", "video_name": "22e4d11f-bd06-5500-80de-2aa21dcddf0f", "text": "\u91d1\u76cf\u82b1\u82b1\u56ed\u91cc\u5230\u5904\u90fd\u662f\u82b1\u3002"} +{"id": "0001968", "video_name": "22e4f9db-0782-5d2b-b73e-d14c1d7c5b96", "text": "\u4e00\u53ea\u8001\u9f20\u5728\u68ee\u6797\u4e1b\u6797\u4e2d\u5954\u8dd1\u3002\u84dd\u8272\u548c\u7eff\u8272\u3002\u5199\u5b9e\u3002"} +{"id": "0001969", "video_name": "22e5a459-60d5-5796-b73c-ecbaa71ff662", "text": "\u521b\u4f5c\u4e00\u4e2a\u72d7\u91c7\u8bbf\u4e00\u53ea\u5077\u8d70\u4e86\u5b83\u7684\u539f\u58f0\u5409\u4ed6\u7684\u732b\u3002"} +{"id": "0001970", "video_name": "22ea28cf-4a7d-5626-aff8-65292a338c7b", "text": "\u7eaa\u5f55\u7247\u901a\u8fc7\u5e7f\u89d2\u955c\u5934\u5c55\u793a\u4e86\u7f8e\u4e3d\u7684\u5c71\u8109\u98ce\u666f\uff0c\u8ddf\u968f\u91ce\u751f\u52a8\u7269\u7684\u751f\u6001\u548c\u5b63\u8282\u53d8\u5316\uff0c\u4f34\u968f\u7740"} +{"id": "0001971", "video_name": "22eec976-3683-5338-8b73-3ed5016f0f78", "text": "\u7528FlexRecords\u7684\u540d\u5b57\u5236\u4f5c\u4e00\u9996\u97f3\u4e50\u5c01\u9762\u3002"} +{"id": "0001972", "video_name": "22f5d048-03ad-5255-be7e-d8333858ec5a", "text": "\u65d7\u8230\u4ece\u5730\u7403\u964d\u843d\u5728\u6728\u661f\u4e0a\u3002\u903c\u771f\u7684\u753b\u9762\uff0c\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "0001973", "video_name": "22f65260-5773-5995-926c-4b943243b23c", "text": "\u4e08\u592b\u79bb\u5f00\u59bb\u5b50\uff0c\u59bb\u5b50\u54ed\u6ce3\u5e76\u6073\u6c42\u4ed6\u4e0d\u8981\u79bb\u5f00\u3002"} +{"id": "0001974", "video_name": "22fd9ec2-5566-59f5-bd5b-3f5ee8e59ad2", "text": "\u4e2d\u534e\u6c11\u56fd\u56fd\u65d7\u5728\u84dd\u5929\u4e2d\u98d8\u626c\u3002"} +{"id": "0001975", "video_name": "22fda58a-0b90-5122-8eb9-ae6fa6e3b54d", "text": "\u52a8\u753b\u300a\u704c\u7bee\u9ad8\u624b\u300b\u7531\u4eba\u5de5\u667a\u80fd\u521b\u4f5c\uff0c\u6d88\u606f\u6765\u6e90\u4e8e2023\u5e74\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0001976", "video_name": "23001f3d-7cd5-5948-b8fc-c171b79d3b7f", "text": "\u53ef\u7231\u7684\u732b\u53eb\u7740\uff0c\u5de8\u578b\u8001\u864e\u5728\u5b83\u524d\u9762\u3002"} +{"id": "0001977", "video_name": "23008e28-fc70-5366-a2f4-d3ff38c30b2b", "text": "\u4e00\u7fa4\u6210\u5343\u4e0a\u4e07\u53ea\u571f\u62e8\u9f20\u6cbf\u7740\u9ad8\u8038\u7684\u745e\u58eb\u5c71\u8109\u5954\u8dd1\u3002"} +{"id": "0001978", "video_name": "2304c08e-f92a-59f7-b4f9-92b8c8698e98", "text": "\u732b\u7ad9\u7740\u5f39\u5409\u4ed6\uff0c\u73b0\u573a\u706f\u5149\u95ea\u8000\u3002"} +{"id": "0001979", "video_name": "2305a715-fba3-596e-879d-b09fe38aea91", "text": "\u4e00\u4f4d\u7a7f\u7740\u88d9\u5b50\u3001\u6234\u7740\u9b54\u6cd5\u5e3d\u3001\u7f16\u7740\u4e24\u6761\u8fab\u5b50\u7684\u6f02\u4eae\u5973\u5b69\u8fdb\u5165\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u4e16\u754c\uff0c"} +{"id": "0001980", "video_name": "23145ed2-09ba-500a-a59a-d54081bbd35e", "text": "\u6162\u52a8\u4f5c\u3001\u9ad8\u6e05\u6670\u5ea6\u30018k\u3001\u7535\u5f71\u7ea7\u7684\u4eba\u7269\u5728\u7535\u89c6\u4e0a\u8bf4\u8bdd\u3002"} +{"id": "0001981", "video_name": "231883e6-f99f-54f4-8398-e4424ae86349", "text": "ed deep into the ancient ruins, they discovered a mysterious device that could change the fate of the world.\nTranslated sentence: \u79d1\u5e7b\u5c0f\u8bf4\u4e2d\uff0c\u5728\u8352\u829c\u7684\u571f\u5730\u4e0a\uff0c\u4e00\u7fa4\u8eab\u7a7f\u5b87"} +{"id": "0001982", "video_name": "2319a21e-75e2-5b94-a91f-c287b696cb4f", "text": "\u9ea6\u57fa\u5148\u751f\u6559\u6388\u6bd2\u54c1\u7684\u5371\u9669\u3002"} +{"id": "0001983", "video_name": "231d6469-815f-5cb9-bfd0-2efb37a10434", "text": "\u4f0a\u739b\u76ee\u963f\u91cc\u62ff\u7740\u7956\u5c14\u83f2\u5361\u5c14\u548c\u9b54\u9b3c\u6218\u6597\u3002"} +{"id": "0001984", "video_name": "2323255a-3264-599f-b1cd-b4d27d57a7cc", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u7740\u753b\u753b\uff0c\u5f88\u591a\u4eba\u770b\u7740\u753b\u5bb6\u3002"} +{"id": "0001985", "video_name": "23277ddb-1e22-5344-a4bd-6176f26fc6f8", "text": "\u4e24\u4e2a\u526a\u5f71\u9762\u5bf9\u5de5\u4f5c\u548c\u5bb6\u5ead\u751f\u6d3b\u7b49\u6311\u6218\u7684\u52a8\u753b\u3002"} +{"id": "0001986", "video_name": "23308879-d327-5544-9b42-7e28a728f535", "text": "\u8d85\u903c\u771f\u7684\u5973\u5b69\uff0c\u7d2b\u8272\u7684\u773c\u775b\uff0c\u96ea\u767d\u7684\u76ae\u80a4\u548c\u7ea2\u8272\u7684\u5934\u53d1\uff0c\u5fae\u7b11\u7740\u5bf9\u7740\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "0001987", "video_name": "23313066-114b-537d-928b-f317f7bd2dc7", "text": "\u6df1\u5165\u68ee\u6797\u4e4b\u540e\uff0c\u5f88\u660e\u663e\u6709\u4e00\u90e8\u5206\u68ee\u6797\u6b63\u9762\u4e34\u7740\u68ee\u6797\u780d\u4f10\u7684\u5a01\u80c1\u3002"} +{"id": "0001988", "video_name": "2331d0a6-0fce-512c-a1be-5bcaeed16692", "text": "\u5feb\u901f\u5236\u4f5c\u4e00\u68f5\u6811\u4ece\u79cd\u5b50\u957f\u6210\u7684\u52a8\u753b\u3002"} +{"id": "0001989", "video_name": "2332b5a0-0b28-5e3e-9996-d031f1222a44", "text": "\u5927\u7ea2\u8272\u6570\u5b57\u4e0b\u964d\uff0c\u955c\u5934\u62c9\u8fd1\u3002"} +{"id": "0001990", "video_name": "233a4de0-636e-54ca-94c2-99a8117fb452", "text": "\u4e00\u4e2a\u975e\u5e38\u5c0f\u5de7\u3001\u7f8e\u4e3d\u7684\u5c0f\u5c4b\u72ec\u81ea\u5750\u5728\u4e61\u6751\u5730\u533a\uff0c\u7535\u5f71\u822c\u7684\u8000\u6591\u548c\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "0001991", "video_name": "233bf421-e5c5-58c9-a1e7-54ca84309a5d", "text": "\u72c2\u98ce\u547c\u5578\uff0c\u4f7f\u6c99\u5b50\u7ffb\u6eda\u3002"} +{"id": "0001992", "video_name": "233e0e78-21a6-5b35-a779-1e63a6b87547", "text": "3D\u52a8\u753b\u7537\u5b69\u4f5c\u4e3a\u4e00\u540d\u5c0f\u5deb\u5e08\u5728\u970d\u683c\u6c83\u8328\u5deb\u5e08\u5b66\u6821\u524d\u8d70\u8def\u3002\n\nSource sentence: I want to order the chicken fried rice and a side"} +{"id": "0001993", "video_name": "233e2d60-dd57-578a-b84b-69123ca9cd9f", "text": "\u5728AI\u4e16\u754c\u4e2d\uff0c\u4e00\u4e2a\u7537\u6027\u5192\u9669\u5bb6\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u7535\u5f71\u7167\u7247\uff0c\u4f7f\u7528\u4e86Octane\u6e32\u67d3\uff0c\u8d28\u91cf\u5f88\u9ad8\u3002"} +{"id": "0001994", "video_name": "2349fc7e-4cab-594c-96c1-0176a29dcd09", "text": "\u68ee\u6797\u91cc\u8d70\u8def\u7684\u718a\uff0c\u827a\u672f\u98ce\u683c\uff0c\u7011\u5e03\uff0c\u6811\u6728\u3002"} +{"id": "0001995", "video_name": "234db46f-a588-54e3-8828-fd5a882aab3d", "text": "\u65b0\u7684\u5e03\u9c81\u5854\u5229\u65af\u7279\u661f\u7403\u6f02\u6d6e\u5728\u661f\u7a7a\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "0001996", "video_name": "234f3e66-a6c1-5403-89d8-b3f8fdf6218b", "text": "\u4eba\u7269\u56fe\u50cf\uff0c\u524d\u540e\uff0c\u591a\u4e2a\u59ff\u52bf\u3002\u4e00\u4e2a\u6234\u773c\u955c\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u62e5\u6709\u8d85\u80fd\u529b\u7684\u5fc3\u7075\u611f\u5e94\u548c\u63a7\u5236\u3002\u4ed6\u8eab\u6750"} +{"id": "0001997", "video_name": "234fa721-4d6e-5a73-be7b-a84ff7553866", "text": "\u5728\u591a\u4e91\u7684\u5929\u6c14\u91cc\u770b\u8d77\u6765\u5f88\u903c\u771f\uff0c\u80cc\u666f\u91cc\u6709\u4e00\u4e2a\u5df4\u9ece\u57ce\u5e02\uff0c\u4e09\u4f4d\u7a7f\u7740\u963f\u62c9\u4f2f\u98ce\u683c\u5b87\u822a\u670d"} +{"id": "0001998", "video_name": "23525e10-e835-582e-b978-c8edef13ccd0", "text": "\u6c64\u59c6\u738b\u8fdb\u5165\u660f\u6697\u7684\u76d1\u7262\uff0c\u8d70\u5230\u4e00\u5f20\u7b80\u5355\u7684\u5e8a\u524d\uff0c\u585e\u897f\u8389\u4e9a\u00b7\u5170\u5c3c\u65af\u7279\u6b63\u5750\u5728\u4e0a"} +{"id": "0001999", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "\u8fea\u58eb\u5c3c\u4e50\u56ed\u91cc\u7a7f\u8ff7\u4f60\u88d9\u3001\u6bd4\u526a\u5200\u624b\u8fd8\u840c\u7684\u5973\u5b69\u4eec\u5fae\u7b11\u7740\u6446\u51fa\u548c\u5e73\u624b\u52bf\uff0c\u53d1\u8272\u8d85\u7ea7"} +{"id": "0002000", "video_name": "235a252e-f2ca-51ba-9213-eba38ca2031c", "text": "\u51b0\u6dc7\u6dcb\u5728\u8857\u4e0a\u878d\u5316\uff0c\u6444\u50cf\u673a\u79fb\u52a8\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "0002001", "video_name": "235a7fd2-fd23-5ab3-ac89-110455c655c6", "text": "\u521b\u4f5c\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u753b\u9762\uff0c\u4e00\u6761\u873f\u8712\u7684\u6cb3\u6d41\u7a7f\u8fc7\u8302\u5bc6\u7684\u5c71\u8c37\uff0c\u5728\u9ad8\u8038\u7684\u6811\u6728\u548c\u76db\u5f00\u7684"} +{"id": "0002002", "video_name": "235fab28-0bd3-558d-b547-f1e836a171f7", "text": "\u7f8e\u4e3d\u7684\u514b\u5229\u5965\u5e15\u7279\u62c9\u8d70\u5411\u955c\u5934\uff0c\u53cc\u624b\u4e0b\u5782\uff0c\u7126\u70b9\u5728\u5979\u7684\u8138\u4e0a\u3002"} +{"id": "0002003", "video_name": "2366eda0-9569-5716-99aa-b196af4c3113", "text": "\u5bfb\u627e\u7537\u5b69\u7684Kiritio\u9ed1\u53d1\u5316\u8eab\u548cDiscord\u878d\u5408\u3002"} +{"id": "0002004", "video_name": "236cebf5-621a-5704-a879-61df3feafc00", "text": "\u9ad8\u6e05\u6670\u5ea6\uff0c\u9ad8\u7ec6\u8282\u7684\u7535\u5f71\u753b\u9762\u4e2d\uff0c\u5e7d\u7075\u5973\u4eba\u5728\u955c\u5b50\u7684\u53cd\u5c04\u4e2d\u663e\u73b0\u51fa\u6765\uff0c\u4eff\u4f5b\u5979\u4ece\u6df1\u6e0a\u4e2d"} +{"id": "0002005", "video_name": "236f414d-29ba-5685-bb37-ca83fd893cc3", "text": "1930\u5e74\u4ee3\u5728\u8d1d\u7eb3\u62c9\u65af\u7684\u4e00\u4e2a\u8336\u644a\u4e0a\u7684\u673a\u5668\u4eba\u3002"} +{"id": "0002006", "video_name": "237043b2-d775-5534-a185-f2d80e096b7b", "text": "\u9633\u4f1e\u968f\u98ce\u6643\u52a8\uff0c\u6c60\u5858\u4e2d\u6709\u6ce2\u6d6a\u3002"} +{"id": "0002007", "video_name": "237a7d5d-8bef-512c-8784-fb0f69a9f0cc", "text": "\u4f2f\u5c3c\u00b7\u8d56\u7279\u68ee\uff08Bernie Wrightson\uff09\u6cb9\u753b\u4e2d\u4fa7\u9762\u770b\u5230\u7684\u5954\u8dd1\u602a\u7269\u7684\u8fd0\u52a8\u5faa\u73af\u3002"} +{"id": "0002008", "video_name": "23820602-9db0-561f-b473-6b8aceff4eb7", "text": "\u5929\u4f7f\u3001\u9ed1\u8272\u3001DQ\u730e\u4eba\u3001\u84dd\u8272\u3001\u60c5\u4fa3\u3001DQ\u730e\u4eba\u3001\u7f8e\u4e3d\u3001\u7fc5\u8180\u3001\u660e\u4eae\u3001\u7537\u4eba\u3001\u5e7b"} +{"id": "0002009", "video_name": "2383743e-5c58-53f0-9b1e-511f46789560", "text": "\u4e00\u4e2a\u5e26\u7740\u8033\u673a\u7684\u7537\u5b50\u5728\u5367\u5ba4\u91cc\u665a\u4e0a\u542c\u6b4c\u3002"} +{"id": "0002010", "video_name": "2383b115-c8f2-5cef-a9e9-b3f10770e2ca", "text": "\u91d1\u5e01\u5728\u6162\u52a8\u4f5c\u4e2d\u843d\u4e0b\u5e76\u65cb\u8f6c\u3002"} +{"id": "0002011", "video_name": "2383c5e0-ae4b-56cb-83ee-baaf0b3a5bf6", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u83ab\u6c49\u62db\u624b\u793a\u610f\u5728\u4ed6\u7684\u5c0f\u5c4b\u91cc\u4fdd\u6301\u5b89\u9759\u3002\n\nSource sentence: The new restaurant in town is very popular and always busy during peak hours. \n\n"} +{"id": "0002012", "video_name": "2384ac11-68c5-5c72-86a3-e4101e04a2bc", "text": "\u4e00\u5ea7\u4e2d\u4e16\u7eaa\u7684\u4e2d\u56fd\u57ce\u5e02\uff0c\u5728\u7f8e\u4e3d\u7684\u6708\u5149\u4e0b\uff0c\u57ce\u5e02\u91cc\u53ea\u6709\u4e00\u76cf\u706f\u5728\u71c3\u70e7\u3002"} +{"id": "0002013", "video_name": "238cbd87-28a3-59d9-aa32-b6fde4783837", "text": "\u53a8\u623f\u91cc\u9505\u91cc\u5192\u51fa\u7684\u84b8\u6c7d\u3002"} +{"id": "0002014", "video_name": "238cd979-6cee-5356-b59c-9bd1e7197174", "text": "\u7267\u5e08\u671d\u5929\u656c\u62dc\u4e0a\u5e1d\u3002"} +{"id": "0002015", "video_name": "23951c86-ebe9-5721-a5af-07ec11a41594", "text": "\u6ca1\u6709\u610f\u4e49\uff0c\u8fd9\u4e0d\u662f\u4e00\u4e2a\u6709\u6548\u7684\u53e5\u5b50\u3002 (This is meaningless, it is not a valid sentence.)"} +{"id": "0002016", "video_name": "23a173ae-af8e-566a-ba3c-56f2c72268a9", "text": "\u4e00\u4e2a\u7537\u4eba\u641e\u5f97\u4e00\u5730\u7cca\u6d82\u5730\u6d12\u4e86\u5496\u5561\u53c8\u559d\u4e86\u4e0b\u53bb\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b"} +{"id": "0002017", "video_name": "23b9075d-d177-5aec-a6cb-49543a240697", "text": "\u8fd1\u8ddd\u79bb\u7279\u5199\u5149\u5251\uff0c\u6d45\u666f\u6df1\u3002"} +{"id": "0002018", "video_name": "23c09793-3cc1-59ff-b875-3158f84ad2db", "text": "\u4e00\u4e2a\u975e\u6d32\u7537\u5b50\u5728\u57ce\u5e02\u4e2d\u5347\u7a7a\u8fdb\u5165\u4e00\u67b6UFO\uff0c\u57ce\u5e02\u5904\u4e8e\u5927\u706b\u4e4b\u4e2d\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c4K\u3002"} +{"id": "0002019", "video_name": "23c4cfca-73c2-588a-bb5b-395367318cd3", "text": "\u4e00\u53ea200\u7c73\u5de8\u578b\u84dd\u8272\u8774\u8776\u5728\u57ce\u5e02\u98de\u7fd4\uff0c\u7f8e\u4e3d\u52a8\u4eba\u3002"} +{"id": "0002020", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "\u9a6c\u514b\u65af\u5c06\u666e\u901a\u6750\u6599\u53d8\u6210\u4e86\u6355\u6349\u559c\u60a6\u7684\u795e\u5947\u96d5\u5851\u3002"} +{"id": "0002021", "video_name": "23d211cc-3ace-5966-8ea4-b02a692f131e", "text": "\u7279\u5199\u955c\u5934\uff0c\u6e05\u6670\u53ef\u89c1\u7684\u9e45\u6bdb\u822c\u7684\u96ea\u82b1\u7f13\u7f13\u843d\u4e0b\uff0c\u84dd\u5929\u767d\u4e91\u4e3a\u80cc\u666f\uff0c\u66b4\u98ce"} +{"id": "0002022", "video_name": "23d3e280-3167-55a5-9df5-eceaea1bce98", "text": "\u5c06\u60ac\u7591\u3001\u9ed1\u6697\u548c\u6050\u6016\u5143\u7d20\u878d\u5165\u5176\u4e2d\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u6c1b\u56f4\uff0c\u73af\u7ed5"} +{"id": "0002023", "video_name": "23d58d30-eda7-508e-a50d-31f918d805bb", "text": "\u4ecb\u7ecd\u4e3b\u89d2\u72d0\u72f8\u3002"} +{"id": "0002024", "video_name": "23d93391-23b8-58f0-a9a6-7fac858fecb9", "text": "\u5b9e\u73b0\u8fd9\u4e00\u70b9\u9700\u8981\u878d\u5408\u8d85\u73b0\u5b9e\u7684\u6444\u5f71\u548c\u79d1\u5b66\u7cbe\u5ea6\u3002"} +{"id": "0002025", "video_name": "23db4488-a347-5ace-958f-dba0cfab0e93", "text": "\u4f0a\u62c9\u62c9\u662f\u4e00\u4e2a\u4e03\u5c81\u7684\u5973\u5b69\uff0c\u8eab\u6750\u82d7\u6761\uff0c\u5934\u53d1\u662f\u68d5\u8272\u7684\u77ed\u53d1\uff0c\u76ae\u80a4\u989c\u8272\u7565\u5fae\u504f\u6697\uff0c\u6709\u4e24"} +{"id": "0002026", "video_name": "23db57a7-9acb-5271-a39a-bb96469ebf72", "text": "\u8ba9\u80cc\u666f\u4e2d\u7684\u9e1f\u513f\u98de\u8d77\u6765\u3002"} +{"id": "0002027", "video_name": "23df8a3a-5b43-51ad-a90e-e590b8cc27aa", "text": "\u4f60\u77e5\u9053\u6211\u4eec\u6700\u7ec8\u5931\u53bb\u6211\u4eec\u5fc3\u7231\u7684\u4eba\u662f\u4ec0\u4e48\u65f6\u5019\u5417\uff1f\u5f53\u6211\u4eec\u4e0d\u518d\u611f\u5230\u5931\u53bb\u4ed6\u4eec\u7684\u75db\u82e6\u65f6\u3002"} +{"id": "0002028", "video_name": "23e4e4b4-5ccf-5458-bf8d-9b7cefcfc069", "text": "\u56fd\u738b\u4e3a\u9e66\u9e49\u4efb\u547d\u4e86\u4e00\u540d\u8bad\u7ec3\u5e08\u6559\u5b83\u8bf4\u8bdd\u3002\u5f88\u591a\u5929\u8fc7\u53bb\u4e86\uff0c\u4f46\u9e66\u9e49\u4ecd\u7136\u4e0d\u8bf4\u8bdd\u3002"} +{"id": "0002029", "video_name": "23e5e16f-ceb7-5aae-b850-4bdab4d77f11", "text": "\u4e00\u8f86\u88c5\u8f7d\u6c99\u571f\u7684\u5361\u8f66\u7684\u89c6\u9891\u3002"} +{"id": "0002030", "video_name": "23e90091-b272-5bca-9a05-bc6fffa79e87", "text": "\u6709\u4e00\u5929\uff0c\u827e\u8fea\u514b\u65af\u51b3\u5b9a\u662f\u65f6\u5019\u8ffd\u968f\u4ed6\u7684\u68a6\u60f3\u4e86\u3002\u4ed6\u60f3\u79bb\u5f00\u5bb6\u4e61\u72ed\u7a84\u7684\u754c\u9650\uff0c"} +{"id": "0002031", "video_name": "23e9816d-6f87-539d-8c59-b67000a5032f", "text": "\u4ea4\u6613\u5458\u7537\u5b50\u610f\u8bc6\u5230\u4ed6\u9057\u5931\u4e86\u94b1\u5305\uff0c\u56de\u5230\u5bb6\u4e2d\u68c0\u67e5\u4e86\u4e00\u756a\u3002"} +{"id": "0002032", "video_name": "23efc931-f87e-58b7-a7df-48b75de685c6", "text": "\u5728\u592a\u7a7a\u4e2d\u8ff7\u5931\uff1a\u4e00\u4e2a\u98d8\u8361\u5728\u65e0\u8fb9\u5b87\u5b99\u4e2d\u7684\u5b87\u822a\u5458\uff0c\u88ab\u9065\u8fdc\u661f\u7cfb\u548c\u795e\u79d8\u7684\u5929\u4f53\u5305\u56f4\uff0c"} +{"id": "0002033", "video_name": "23f31f5b-8bc1-5c63-856c-1f0aa150b84d", "text": "\u52a8\u753b\u5973\u5b69\u7528\u793c\u8c8c\u7684\u9762\u90e8\u8868\u60c5\u4ea4\u8c08\uff0c\u903c\u771f\u7684\u9ad8\u6e05\u89c6\u9891"} +{"id": "0002034", "video_name": "23f990c5-1810-5fbb-8649-0d1a98f17ae2", "text": "\u5728\u7eb8\u4e0a\u627e\u5230\u5b50\u96c6\u7684\u96c6\u5408\u3002"} +{"id": "0002035", "video_name": "24013c5d-4577-51ce-9355-9f7f399b00bf", "text": "\u4e00\u5339\u975e\u5e38\u6f02\u4eae\u7684\u5de8\u5927\u767d\u9a6c\uff0c\u957f\u957f\u7684\u9b03\u6bdb\u98d8\u8361\u7740\uff0c\u5728\u591c\u665a\u5954\u8dd1\u7a7f\u8fc7\u6c34\u9762\u3002"} +{"id": "0002036", "video_name": "241b2c10-aed6-5f46-a46b-ea7e4db599a7", "text": "\u4eba\u7c7b\u7ec6\u80de\u5206\u88c2\u7684\u7535\u5b50\u663e\u5fae\u955c\u56fe\u50cf\u3002"} +{"id": "0002037", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "BTS\u7684Jungkook\u662f\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u5386\u53f2\u8001\u5e08\uff0c\u5bf9\u5f53\u5730\u7684\u4f20\u8bf4\u548c\u6d77\u4e8b\u5386\u53f2\u6709\u6d53\u539a\u7684\u5174\u8da3\u3002"} +{"id": "0002038", "video_name": "24207e05-e476-57d7-8a15-f5fde0680855", "text": "\u6c99\u6f20\u5730\u533a\u6709\u5f88\u591a\u52a8\u7269\u3002"} +{"id": "0002039", "video_name": "242686c9-cd04-54cd-ab41-4b68dc3bbb25", "text": "\u592a\u9633\u7f13\u6162\u5730\u5347\u8d77\uff0c\u4e3a\u68a6\u5e7b\u8c37\u6295\u4e0b\u795e\u5947\u7684\u5149\u8292\uff0c\u53ef\u7231\u7684\u5c0f\u52a8\u7269\u4eec\u9192\u6765\uff0c\u521b\u9020\u51fa"} +{"id": "0002040", "video_name": "242d4657-6abe-53d8-87da-2237cde129ad", "text": "\u539f\u53e5\uff1a\u5728\u300a\u539f\u795e\u300b\u4e2d\u7684Fontaine\u5730\u533a\u51fa\u73b0\u4e86\u4ee5\u6c34\u4e4b\u795eFocalor\uff08\u6c34\u795e\uff09\u4e3a\u5f62\u8c61\u7684\u52a8\u753b\u3002\n\nTranslation: \u5728\u300a\u539f\u795e\u300b\u7684Fontaine"} +{"id": "0002041", "video_name": "243052ff-9c53-5a95-b04b-86e6343b4466", "text": "\u7531\u4f0a\u592b\u00b7\u5510\u5409\u3001\u57c3\u5c14\u65af\u6c83\u65af\u00b7\u51ef\u5229\u548c\u5c3c\u53e4\u62c9\u65af\u00b7\u666e\u6851\u6784\u60f3\u51fa\u7684\u9a91\u81ea\u884c\u8f66\u7684\u5973"} +{"id": "0002042", "video_name": "243055b2-3ec3-534c-be85-9306887b41f0", "text": "\u4e00\u4e2a\u5168\u606f\u5730\u7403\u5728\u4e2d\u5fc3\u65cb\u8f6c\uff0c\u5468\u56f4\u6709\u6d6e\u52a8\u7684\u4e92\u52a8\u5c4f\u5e55\uff0c\u663e\u793a\u82cf\u683c\u62c9\u5e95\u5e94\u7528\u7a0b\u5e8f\u754c\u9762\u3002"} +{"id": "0002043", "video_name": "243062ee-1ed4-5763-aed3-a714c7e368ca", "text": "\u53e4\u8001\u7684\u5730\u4e0b\u6587\u660e\uff0c\u54e5\u7279\u5f0f\u5efa\u7b51\u4e0e\u5916\u661f\u6d1e\u7a74\u3002\u88ab\u9057\u5f03\u7684\u3002"} +{"id": "0002044", "video_name": "24396d5a-194b-5864-aa98-3ddf7662c4dd", "text": "\u5728\u4e00\u4e2a\u6e29\u6696\u548c\u5e73\u7684\u68ee\u6797\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u5c0f\u5154\u5b50\u548c\u4e00\u53ea\u5c0f\u72d0\u72f8\u3002\u4ed6\u4eec\u662f\u597d\u670b\u53cb\uff0c\u6bcf\u5929\u4e00\u8d77\u73a9"} +{"id": "0002045", "video_name": "243bc853-d90e-59f7-85c7-6a283706bc62", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u7684\u5f92\u6b65\u65c5\u884c\u8005\u8d70\u5411\u955c\u5934\u80cc\u666f\u7684\u7f8e\u4e3d\u96ea\u5c71\uff0c\u72ec\u7279\u7684\u89d2\u8272\u7ec6\u8282\u3002"} +{"id": "0002046", "video_name": "24401492-7e1b-5bdd-9745-88b85d2086f4", "text": "\u5e74\u8f7b\u5973\u5b69\u9a91\u7740\u873b\u8713\u7a7f\u8fc7\u82b1\u56ed\uff0c\u50cf\u76ae\u514b\u65af\u7684\u52a8\u753b\u3002"} +{"id": "0002047", "video_name": "2440b5df-7476-55f3-966f-1f750702b4f1", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u81ea\u5df1\u7684\u623f\u95f4\u91cc\u753b\u753b\uff0c\u753b\u7684\u662f\u5bab\u5d0e\u9a8f\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "0002048", "video_name": "2443f2fe-8d08-5c05-a797-2a4f6be03776", "text": "\u628a\u732b\u6253\u626e\u6210\u5723\u8bde\u8001\u4eba\u7684\u6837\u5b50\uff0c\u8ba9\u5b83\u4eec\u55b5\u55b5\u53eb\u3002 \n\nSource sentence: I am learning Chinese because I want to communicate with more people. \n\n\u6211"} +{"id": "0002049", "video_name": "244654d5-a832-51c6-a294-842770ba823c", "text": "\u5de5\u4f5c\u5ba4\u91cc\u7684\u4eba\u5728\u5236\u4f5c\u8bf4\u5531\u97f3\u4e50\u3002"} +{"id": "0002050", "video_name": "244935f4-7f37-5db0-a991-1e480e7ffe3b", "text": "\u4e09\u7ef4\u7b49\u8ddd\u89c6\u89d2\u4e0b\u7684\u8302\u5bc6\u5916\u661f\u4e1b\u6797\uff0c\u6696\u8272\u8c03\uff0c32K\u5206\u8fa8\u7387\uff0c\u5b9a\u5411\u5149\u7167\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u58ee\u89c2"} +{"id": "0002051", "video_name": "2451b04e-c95c-5105-9bf4-ac039679c3ed", "text": "\u4e00\u4e2a\u84dd\u8272\u7684\u5723\u8bde\u751f\u7269\u5750\u5728\u770b\u7535\u89c6\uff0c\u6234\u7740\u5723\u8bde\u5e3d\uff0c\u5916\u9762\u4e0b\u96ea\u3002"} +{"id": "0002052", "video_name": "2456af2c-fe57-5275-a2aa-f2969e8ec403", "text": "\u76ae\u5361\u4e18\u4ee52D\u52a8\u753b\u98ce\u683c\u653b\u51fb\u590f\u5a01\u5937\u4eba\u3002"} +{"id": "0002053", "video_name": "24599e4f-3e46-59bc-aab4-3024ef20c5bf", "text": "\u623f\u95f4\u91cc\u94fa\u6ee1\u4e86\u590d\u6742\u7684\u7535\u5b50\u7535\u8def\u7cfb\u7edf\uff0c\u7535\u6d41\u95ea\u70c1\u53d1\u5149\uff0c\u4e3b\u8981\u7ec4\u4ef6\u9762\u5411\u5c4f\u5e55\uff0c\u4e2d\u592e\u6709\u5f3a\u5927\u7684\u7535\u6d41"} +{"id": "0002054", "video_name": "245ac92c-544e-5680-8fdd-4f21abecb0e0", "text": "\u4e00\u8f86SUV\u6c7d\u8f66\u5728\u5c4f\u5e55\u4e0a\u4eceA\u70b9\u9a76\u5411B\u70b9\u3002"} +{"id": "0002055", "video_name": "245d01ed-9cb8-5735-af14-85ad9a85c34f", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u5ba2\u5385\u91cc\uff0c\u54c6\u5566A\u68a6\u548c\u5c0f\u53ee\u5f53\u5728\u4ea4\u8c08\u3002"} +{"id": "0002056", "video_name": "24635e90-457e-5cd8-96ca-3a1073933249", "text": "Source sentence: \u8584\u8377\u548c\u786c\u5e01\u538b\u5236\u8001\u5f0f\u7684\u3002"} +{"id": "0002057", "video_name": "2467a007-8caf-5855-9649-1f30f7a763df", "text": "\u97f3\u4e50\u58f0\u6ce2\u591a\u5f69\u62bd\u8c61\u7684\u80cc\u666f\u89c6\u9891\u3002"} +{"id": "0002058", "video_name": "2477a8c2-116d-5299-9912-403ec8b992e0", "text": "\u4e00\u4e2a\u7531\u4e50\u9ad8\u79ef\u6728\u642d\u5efa\u76848\u4f4d\u590d\u53e4\u6e38\u620f\u7ea2\u8272\u7ef4\u4eac\u4eba\u3002"} +{"id": "0002059", "video_name": "248db85d-4ec4-5e44-abbd-c82d5df239df", "text": "\u4e00\u4e2a\u5723\u8bde\u8282\u7684\u4e2d\u56fd\u9f99\uff0c\u6298\u7eb8\u827a\u672f\u3002"} +{"id": "0002060", "video_name": "249458c0-8d09-5469-8a0e-91bc1de2fd91", "text": "\u5728\u5361\u901a\u4e2d\u5448\u73b0\u4e00\u4e2a\u52e4\u52b3\u7684\u5370\u5ea6\u519c\u6c11\u81ea\u8c6a\u5730\u7ad9\u5728\u4ed6\u7684\u7530\u5730\u4e2d\uff0c\u5468\u56f4\u662f\u91d1\u8272\u7684\u5c0f\u9ea6\u548c\u5145\u6ee1\u6d3b"} +{"id": "0002061", "video_name": "2496f8c7-e295-515e-81da-d179fbfbbf32", "text": "\u79d1\u5b66\u5bb6\u4eec\u6ca1\u6709\u5728\u6d77\u6d0b\u5730\u5e95\u53d1\u73b0\u91cd\u5927\u4e8b\u4ef6\u3002"} +{"id": "0002062", "video_name": "249898bf-571a-54cc-aca5-6cbfc5921681", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u732b\u5411\u524d\u8df3\u821e\u3002"} +{"id": "0002063", "video_name": "249af953-6bc8-5376-909e-a1d3e920b811", "text": "\u73b0\u5b9e\u4e3b\u4e49\u6ce2\u65af\u9ed1\u732b\u5728\u591c\u665a\u7684\u96f7\u66b4\u4e2d\u8df3\u8fdb\u4e00\u7247\u91d1\u5e01\u6d77\u6d0b\uff0c\u5e76\u5e26\u7740\u4e00\u7fa4\u4eba\u8ddf\u968f\u5b83\u3002"} +{"id": "0002064", "video_name": "249da9f4-4b87-58ac-91b9-50f4d478511f", "text": "\u58ee\u89c2\u7684\u7985\u5bfa\u5750\u843d\u5728\u4e00\u5ea7\u9ad8\u5c71\u4e4b\u5dc5\u3002"} +{"id": "0002065", "video_name": "249fc1f5-8fe2-5e60-a77b-ffe53d409aff", "text": "\u5728\u767d\u8272\u80cc\u666f\u4e0b\u6392\u6210\u4e00\u884c\u8df3\u821e\u7684\u5357\u74dc"} +{"id": "0002066", "video_name": "249ff7eb-0a7a-5d5d-bcda-ba54975ebb03", "text": "\u6839\u636e\u4ee5\u4e0b\u63d0\u793a\u751f\u6210\u4e00\u4e2aYouTube\u5934\u50cf\u56fe\u7247\uff1a\u300a\u91ce\u5916\u5947\u89c2\u300b\uff1a\u8fd9\u4e2a\u540d\u5b57\u610f\u5473\u7740\u4f60\u7684\u9891\u9053\u5c55\u793a\u4e86\u91ce\u751f\u52a8\u7269\u7684\u591a\u6837\u6027\u548c\u7f8e"} +{"id": "0002067", "video_name": "24a21aff-1143-5c5f-b007-09914eb7bbdf", "text": "\u4e24\u4e2a\u7537\u4eba\u5bf9\u5750\uff0c\u6d77\u5cb8\uff0c\u6c99\u5b50\uff0c\u65e5\u843d\uff0c4K\uff0c\u5de6\u8fb9\u6709\u4e00\u68f5\u7f8e\u4e3d\u7684\u7eff\u53f6\u6811\uff0c\u5fae\u98ce\u3002"} +{"id": "0002068", "video_name": "24ad5dee-b2cd-5597-aad0-6eb1a884af2b", "text": "\u4eba\u626e\u6f14\u9752\u86d930\u79d2\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "0002069", "video_name": "24b5dd1b-6d3f-568c-83a7-69409d87dba4", "text": "\u670b\u53cb\u4eec\u4e00\u8d77\u73a9\u800d\u3001\u5206\u4eab\u98df\u7269\u3001\u5b66\u4e60\u3001\u5e86\u795d\u751f\u65e5\u7684\u89c6\u9891\u526a\u8f91\u3002"} +{"id": "0002070", "video_name": "24ba7eb2-d925-526b-9060-5dda81e4f81f", "text": "\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u548c\u58a8\u955c\u3001\u9a7e\u9a76\u54c8\u96f7\u6234\u7ef4\u68ee\u6469\u6258\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u9ad8\u901f\u884c\u9a76\u7684\u9177"} +{"id": "0002071", "video_name": "24c65bfc-0e90-5e1d-94a3-b70241bcfea6", "text": "\u6c7d\u8f66\u7a7f\u8fc7\u4e86\u68ee\u6797\u548c\u5c71\u8109\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u884c\u3002"} +{"id": "0002072", "video_name": "24ca900c-b75a-5fc1-874b-9ebf9a7ba5f2", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u5728\u516c\u56ed\u91cc\u6253\u67b6\u3002"} +{"id": "0002073", "video_name": "24cd0a46-18ab-5f45-a636-cc92edf78273", "text": "\u8def\u514b\u00b7\u5929\u884c\u8005\u7528\u5149\u5251\u5207\u5976\u916a\u3002"} +{"id": "0002074", "video_name": "24d73a94-b5ff-5999-938c-f5fc6e209d82", "text": "\u6c61\u6c34\u4ece\u4e00\u4e2a\u7aef\u6d41\u5165\u6e7f\u5730\uff0c\u4ece\u53e6\u4e00\u4e2a\u7aef\u6d41\u51fa\u5e72\u51c0\u3002"} +{"id": "0002075", "video_name": "24d8b114-0c70-5af4-a3d8-3a92e2f7fd55", "text": "\u7528\u53f2\u8bd7\u822c\u7684\u7a7a\u4e2d\u955c\u5934\u6253\u5f00\u753b\u9762\uff0c\u5c55\u793a\u5b9d\u53ef\u68a6\u4e16\u754c\u7684\u5404\u79cd\u98ce\u666f\u3001\u57ce\u5e02\u548c\u5b9d\u53ef\u68a6\u5728\u5b83\u4eec"} +{"id": "0002076", "video_name": "24db47c3-738d-5080-9f45-16c55bb37a72", "text": "\u4ece\u690d\u7269\u7684\u89c6\u89d2\u770b\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u66f4\u591a\u7684\u884c\u661f\u548c\u4e00\u4e9b\u7eff\u8272\u548c\u7c89\u8272\u7684\u661f\u4e91\uff0c\u5728\u6444\u50cf\u673a\u7684\u7f29\u653e\u4e0b\u3002\u4fe1\u606f\uff1a\u963f\u5c14\u4ee3"} +{"id": "0002077", "video_name": "24dd9f95-c40f-563e-afe6-ae3df0c3a85b", "text": "\u4e00\u4f4d\u7a7f\u7740\u8d5b\u535a\u670b\u514b\u98ce\u683c\u673a\u5668\u4eba\u88c5\u7f6e\u7684\u672a\u6765\u4f8d\u58eb\uff0c\u5728\u4e0e20\u540d\u73b0\u5df2\u5012\u5728\u5730\u4e0a\u7684\u58eb\u5175\u640f\u6597"} +{"id": "0002078", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "\u4e00\u53ea\u53ef\u5361\u72ac\u5728\u82f1\u683c\u5170\u7684\u516c\u56ed\u91cc\u5954\u8dd1\uff0c\u8fea\u58eb\u5c3c\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "0002079", "video_name": "24ebf855-19e6-5a0b-8053-82a8982305e1", "text": "Arduino\u4e0e\u5176\u4ed6\u4f20\u611f\u5668\u5feb\u901f\u8fde\u63a5\u7684\u5e8f\u5217\u3002"} +{"id": "0002080", "video_name": "24ee3ee9-bb5a-5a8f-85c5-fb7b17ca3295", "text": "\u53e4\u4ee3\u4e2d\u56fd\u5bab\u6bbf\u4e2d\u7684\u9f99\u6905\u548c\u9ad8\u706f\u7b3c\u3002"} +{"id": "0002081", "video_name": "24f07cae-4989-5ef0-8809-48d891bca47b", "text": "\u5979\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u4f38\u51fa\u751f\u5316\u624b\u81c2\u4e0e\u6c34\u6676\u63a5\u89e6\uff0c\u9877\u523b\u95f4\u88ab\u4f20\u9001\u5230\u4e00\u4e2a\u5145\u6ee1\u8d5b\u535a\u670b\u514b"} +{"id": "0002082", "video_name": "24f4e6f2-39b2-5852-a8da-90e8fd1eca77", "text": "\u6e7f\u5730\u91cc\u7684\u9752\u86d9\u3002\u6d88\u606f\uff1a\u661f\u671f\u4e09\u3002"} +{"id": "0002083", "video_name": "24f684f2-de66-52e2-983b-d8275793d057", "text": "\u5728\u7535\u89c6\u524d\u5531\u6b4c"} +{"id": "0002084", "video_name": "24f7c30f-b045-5cbb-a26a-2d8f3efb23aa", "text": "\u4eea\u8868\u76d8\u663e\u793a\u94f6\u884c\u6570\u636e\uff0c\u5305\u62ec\u56fe\u8868\u548c\u56fe\u793a\u3001\u8d26\u6237\u8be6\u7ec6\u4fe1\u606f\u3001\u53ef\u7528\u4f59\u989d\u3001\u6bcf\u6708\u548c\u6bcf\u5e74\u7684\u652f\u51fa\u6a21\u5f0f\u3001\u6700\u8fd1\u7684\u4ea4\u6613\u3001\u4f18"} +{"id": "0002085", "video_name": "24f983e6-c068-512a-8afe-22061b57fca0", "text": "\u58a8\u897f\u54e5\u8857\u5934\u7684\u673a\u5668\u4eba\u590d\u53e4\u821e\u8e48\u3002"} +{"id": "0002086", "video_name": "24fa3d77-3201-5f61-a0ff-931557ed582b", "text": "\u7948\u7977\u5e76\u4ef0\u671b\u4e91\u5f69"} +{"id": "0002087", "video_name": "250147ad-864c-5838-8c8a-de11d572c556", "text": "\u96ea\u4f5b\u5170Trax\u5728\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "0002088", "video_name": "250e344a-0e98-58cf-b4b4-bc68f1061db4", "text": "\u7f8e\u5c11\u5973\u4eceSUV\u8f66\u4e0a\u4e0b\u6765\u7684\u52a8\u6f2b\u3002"} +{"id": "0002089", "video_name": "2510ec4c-6f51-5e3e-9bfd-a663c3ffcf00", "text": "\u9ed1\u8272\u7684\u73ab\u7470\u6b63\u5728\u5f00\u653e\u3002\u9ed1\u767d\u4e24\u8272\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u3002\n\nSource sentence: I am going to the store to buy some milk and bread.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u725b"} +{"id": "0002090", "video_name": "251ad895-600b-5095-9323-5c35bed1c735", "text": "\u6587\u5316\u4e2d\u7684\u91ce\u5154\u9003\u8131\u4e86\u72fc\u6cf0\u5766\u3002"} +{"id": "0002091", "video_name": "251c0fd4-3264-5b69-8616-751b7cc9f32e", "text": "\u7535\u5f71\u4e2d\u666f\u955c\u5934\uff0c\u864e\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u67d4\u548c\u7684\u7167\u660e\uff0c4k\uff0c\u6e05\u6670\uff0c\u4f73\u80fd C300\uff0c\u666f\u6df1\uff0c\u9ad8\u5ea6\u8be6\u7ec6"} +{"id": "0002092", "video_name": "25202be9-a70e-502b-855e-74e5df4951de", "text": "\u5927\u6708\u4eae\u8fd1\u8ddd\u79bb\u9ad8\u901f\u5ef6\u65f6\u6444\u5f71\uff0c\u591a\u5f69\u7684\u5929\u7a7a\u3002"} +{"id": "0002093", "video_name": "2523eac9-8655-5e58-a312-aca77c7aa35b", "text": "\u4e00\u4e2a\u9177\u9177\u7684\u3001\u6709\u6c14\u8d28\u7684\u79d1\u5b66\u5bb6\u7ad9\u5728\u5c4b\u9876\u4e0a\uff0c\u7a7f\u7740\u4e00\u4ef6\u957f\u957f\u7684\u5b9e\u9a8c\u5ba4\u5927\u8863\uff0c\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "0002094", "video_name": "25277438-b78a-50fc-964a-b55c4e6e533b", "text": "\u5f7c\u5f97\u7eb3\u94a6\u5fb7\u62c9\u6709\u4e00\u4e2a\u751f\u52a8\u7684\u68a6\uff0c\u662f\u4e00\u4e2a\u5370\u5ea6\u5b69\u5b50\u542c\u5230\u8fdc\u5904\u7684\u558a\u58f0\u548c\u770b\u5230\u4eba\u4eec\u60ca\u614c\u5954\u8dd1\u7684"} +{"id": "0002095", "video_name": "2530c2db-16f4-520c-9cd9-f74fa28db0e2", "text": "\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u9003\u8131\uff0c\u4e00\u4f4d\u7a7f\u9ed1\u8272\u793c\u670d\u7684\u7f8e\u4e3d\u91d1\u53d1\u5973\u90ce\u548c\u4e00\u4f4d\u666e\u901a\u7684\u6d77\u76d7\u3002"} +{"id": "0002096", "video_name": "25314d80-939c-5660-b9b3-6c94f8bb8fc8", "text": "\u5e74\u8f7b\u7537\u5b69\u662f\u4e00\u4e2a\u975e\u5e38\u70ed\u8877\u4e8e\u8ffd\u6c42\u6559\u80b2\u7684\u9752\u5c11\u5e74\u3002"} +{"id": "0002097", "video_name": "2531aa5c-f288-5e37-a11b-7a5dc8129847", "text": "\u4e00\u4f4d\u8eab\u7a7f\u672a\u6765\u88c5\u7532\u3001\u88c5\u9970\u7740\u91d1\u8272\u9970\u54c1\u7684\u9ed1\u8272\u5929\u4f7f\u9a91\u58eb\u6301\u7740\u4e00\u628a\u9713\u8679\u84dd\u8272\u53d1\u5149"} +{"id": "0002098", "video_name": "25343700-b088-507f-b7fc-f0736f2592d4", "text": "\u4e00\u53f0\u667a\u80fd\u673a\u5668\u4eba\u5728\u516c\u56ed\u91cc\u884c\u8d70\u3002"} +{"id": "0002099", "video_name": "2535286e-2250-5ef6-9be9-ff39c41103d7", "text": "\u5728\u8fea\u65af\u79d1\uff0c\u5e26\u7740\u8033\u673a\u7684\u6b22\u4e50\u8001\u592a\u592a\u4eec\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "0002100", "video_name": "25449a24-f786-50da-87d2-49d01d1889a8", "text": "\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\u7684\u5f69\u8272\u897f\u90e8\u4e27\u5c38\u7535\u5f71\u5f00\u573a\uff0c\u6807\u9898\u4e3a\u201c\u5c18\u571f\u98de\u626c\u7684\u94c1\u9a91\u201d\u3002"} +{"id": "0002101", "video_name": "2551be9c-fd6c-5f95-b9cd-a66c4c6968ac", "text": "2016\u5e74\u5927\u9009\u5f53\u665a\uff0c\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5ba3\u5e03\u80dc\u5229\u7684\u9ed1\u767d\u771f\u5b9e\u7167\u7247\u3002"} +{"id": "0002102", "video_name": "25555128-3795-580d-b615-8a780357d02b", "text": "\u683c\u9c81\u7279\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\u5f39\u7740\u5409\u4ed6\u3002"} +{"id": "0002103", "video_name": "25596c4e-2368-512a-ab52-0a6d42e50618", "text": "\u54c8\u91cc\u4ec0\u4e0e\u670b\u53cb\u4eec\u72c2\u6b22\u540e\u56de\u5bb6\uff0c\u4eca\u665a\u662f\u65e0\u6708\u4e4b\u591c\uff0c\u56e0\u4e3a\u6708\u4eae\u5df2\u7ecf\u843d\u4e0b\u30023D\u52a8\u753b\u89d2\u8272\u3002"} +{"id": "0002104", "video_name": "255bcb98-a36f-5e3f-acfd-d36b7f7f8401", "text": "\u65c5\u884c\u53bb\u4f26\u6566\uff0c\u91d1\u94b1\u98de\u6765\u98de\u53bb\u3002"} +{"id": "0002105", "video_name": "255f26a0-18ac-577c-85c0-bdbd9f624e8c", "text": "\u6253\u5f00\u4e00\u4e2a\u65e7\u9aa8\u7bb1\n\nSource sentence: The sun sets in the west.\n\u592a\u9633\u5728\u897f\u65b9\u843d\u4e0b\u3002"} +{"id": "0002106", "video_name": "2567465c-0597-5ec4-85a9-6358dfb2c6a2", "text": "\u7ea6\u7ff0\u5c3c\u00b7\u5fb7\u666e\u3001\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u548c\u9ea6\u8389\u00b7\u8d5b\u52d2\u65af\u5728\u592a\u7a7a\u98de\u8239\u4e0a\u3002"} +{"id": "0002107", "video_name": "2569be3f-0d8a-5b85-bc21-ccd5466a8585", "text": "\u4e00\u5957\u84dd\u8272\u7684\u6b63\u88c5\u4ece\u6d77\u6d0b\u4e2d\u6d6e\u73b0\u3002"} +{"id": "0002108", "video_name": "256a7450-7c2f-589a-ae4f-df6d9e776714", "text": "\u8bf4\u6cd5\uff1a\u8bf4\u5531\u6b4c\u624b\u53d8\u6210\u8d85\u7ea7\u82f1\u96c4\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002109", "video_name": "256bc888-c48a-50b0-8ea2-126a5b3547cc", "text": "\u4ed6\u4ee5\u51a5\u60f3\u7684\u59ff\u52bf\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "0002110", "video_name": "256fc9f4-8130-5a55-93c8-dac985586c6f", "text": "\u4e00\u4e2a\u5c0f\u578b\u5efa\u7b51\u5de5\u5730\u4e0a\uff0cEddie\u6316\u6398\u673a\u6b63\u5728\u884c\u52a8\uff0c\u5c55\u793a\u4ed6\u5f3a\u5927\u7684\u6316\u6398\u81c2\u5728\u8fd0\u52a8\u4e2d\uff0c\u94f2\u8d77\u571f\u58e4\u3002\u80cc\u666f\u5e94"} +{"id": "0002111", "video_name": "2571c3d0-6f70-5647-9b24-74260802cd97", "text": "250\u514b\u610f\u5927\u5229\u9762\uff08\u6216\u5176\u4ed6\u60a8\u9009\u62e9\u7684\u9762\u98df\uff09"} +{"id": "0002112", "video_name": "2576d871-89fa-5e01-9f05-8243af6fb2e3", "text": "\u98de\u884c\u5458\u548c\u7a7a\u59d0\u5728\u9a7e\u9a76\u8231\u91cc\u4ea4\u8c08\uff0c\u4ed6\u4eec\u5750\u5f97\u5f88\u9ad8\u5174\u3002"} +{"id": "0002113", "video_name": "257bafbb-6da4-5322-b8c1-ab3a87147be1", "text": "\u4ece\u767d\u8272\u7684\u5149\u6ed1\u96fe\u6c14\u4e2d\u51fa\u73b0\u5e76\u53d8\u6210\u9ed1\u6697\u5929\u7a7a\u4e0a\u7684\u767d\u8272\u6d41\u52a8\u4e91\u5f69\uff0c\u592a\u9633\u5149\u7ebf\u4ece\u4e91\u5f69\u4e2d\u7a7f"} +{"id": "0002114", "video_name": "25884b6e-28c6-56a5-8f07-079a8fabc444", "text": "\u6240\u6709\u7684\u52a8\u7269\u548c\u7a7f\u7ea2\u886c\u886b\u7684\u7537\u5b69\u5728\u4e1b\u6797\u91cc\u90fd\u5f88\u5f00\u5fc3\u3002"} +{"id": "0002115", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u6069\u5728\u8f9e\u53bb\u603b\u7edf\u804c\u52a1\u65f6\u5411\u4eba\u7fa4\u53d1\u8868\u8bb2\u8bdd\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u7740\u4ed6\u79fb\u52a8\u3002\u4f7f\u752810K"} +{"id": "0002116", "video_name": "25945ad2-73a7-5032-a725-9a47e79d3fe5", "text": "\u9ed1\u8272\u5c01\u9762\u4e0a\u6709\u6b7b\u795e\u7684\u6c49\u5b57\uff0c\u80cc\u666f\u4e2d\u6709\u95ea\u7535\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u70db\u5149\u7684\u95ed\u5408\u4e66\u7c4d\u3002"} +{"id": "0002117", "video_name": "25985e4b-99e5-5e70-852f-edb4a4c015b5", "text": "\u5728\u5e03\u9c81\u514b\u6797\u5e02\u4e2d\u5fc3\u7684\u96e8\u5929\uff0c\u4eba\u4eec\u6491\u7740\u96e8\u4f1e\u7f13\u6162\u884c\u8d70\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u8fd9\u53ea"} +{"id": "0002118", "video_name": "25a70637-997e-59e5-b316-181d25658683", "text": "\u4e00\u4e2a\u6ed1\u51b0\u8005\u8df3\u8fc7\u969c\u788d\u7269\u7684\u5355\u7ebf\u753b\u3002"} +{"id": "0002119", "video_name": "25b00ad4-8fee-5ff3-b5bc-5b71b8487b39", "text": "\u7684\u667a\u6167\u3002\u5c55\u793a\u4e3b\u89d2Sam\uff0c\u4e00\u53ea\u5e74\u8f7b\u7684\u677e\u9f20\uff0c\u9762\u4e34\u5206\u4eab\u6a61\u5b50\u7684\u56f0\u5883\u3002\u8fc7\u6e21\u5230Sam\u5411\u667a\u6167"} +{"id": "0002120", "video_name": "25b9676e-c5a1-552c-b83f-b8ae36df6e28", "text": "\u8389\u8389\u3001\u9a6c\u514b\u65af\u3001\u7c73\u5a05\u548c\u4f0a\u6851\u7684\u8def\u9014\u5f15\u9886\u4ed6\u4eec\u8d70\u8fdb\u4e86\u4e00\u4e2a\u88c5\u9970\u7740\u53d1\u5149\u6c34\u6676\u7684"} +{"id": "0002121", "video_name": "25ba60d3-fa5d-53d8-9708-aa697db25568", "text": "\u9ed1\u6697\u7684\u4eff\u751f\u673a\u68b0\u4eba\u57283D\u516b\u89d2\u6e32\u67d3\u4e2d\u5f39\u594f\u5408\u6210\u5668\u6a21\u5757\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6700\u4f73\u5206\u8fa8\u7387\uff0cHDR"} +{"id": "0002122", "video_name": "25c341fa-ce02-5d28-9873-b132f8fba0cb", "text": "\u4e00\u4e2a\u5f20\u7740\u5634\u5df4\u5403\u5947\u602a\u98df\u7269\u7684\u573a\u666f\u3002"} +{"id": "0002123", "video_name": "25c4db92-b79e-5a38-ae96-3200d82d754c", "text": "\u5929\u874e\u738b\u4f5c\u4e3a\u7edf\u6cbb\u8005\u3002\u7167\u7247\u5e94\u8be5\u5145\u6ee1\u620f\u5267\u548c\u5174\u594b\u3002"} +{"id": "0002124", "video_name": "25c5f523-45f0-5bb2-a7b0-b41ca9d11e6f", "text": "\u5f53\u592a\u9633\u5728\u9ad8\u8038\u7684\u5c16\u5854\u80cc\u540e\u843d\u4e0b\u65f6\uff0c\u795e\u79d8\u7684\u9ed1\u6697\u7b3c\u7f69\u7740\u8fd9\u4e2a3D\u5e7b\u60f3\u4e16\u754c\u3002\u6076"} +{"id": "0002125", "video_name": "25cb7ad6-be80-5cad-ba17-de1aa2c7ef87", "text": "\u4e00\u4e2a\u98de\u5230\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u7537\u5b69\u3002"} +{"id": "0002126", "video_name": "25cc58dd-e83c-51bb-bf2b-b3520aa2e76e", "text": "\u4e00\u500b\u4fef\u8996\u9bc9\u9b5a\u6c60\u7684\u756b\u9762\uff0c\u5177\u6709\u6c34\u6ce2\u7d0b\u6548\u679c\uff0c\u9ad8\u6e05\u30018K\u300160\u5e40\u3001HDR\u3001\u566a\u8072\u62b5\u6d88"} +{"id": "0002127", "video_name": "25ce70c7-55cd-50ff-9ed2-ddb19b55cd5f", "text": "\u5929\u7a7a\u660e\u4eae\uff0c\u4e91\u6735\u98d8\u52a8\u3002"} +{"id": "0002128", "video_name": "25d28d72-7ebb-565f-aebc-d904d041b854", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u5367\u5ba4\u7684\u5e8a\u4e0a\uff0c\u53cc\u624b\u9ad8\u4e3e\u3002\u6570\u767e\u4e2a\u5404\u79cd\u5404\u6837\u7684\u5370\u82b1\u6795\u5934\u4ece\u4e0a\u65b9\u843d\u4e0b\u3002"} +{"id": "0002129", "video_name": "25d5a02a-b64a-5a9c-9ecd-f6b7d26601aa", "text": "\u6770\u4f5c\u822c\u7684\u521b\u610f\u548c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u827a\u672f\u54c1\uff0c\u662f\u7075\u9b42\u53cd\u601d\u548c\u589e\u5f3a\u6210\u957f\u4e4b\u65c5\u3002"} +{"id": "0002130", "video_name": "25db4832-aaf0-53f3-bf2e-9f94a8b3ea81", "text": "\u8dd1BC\u65d7\u5e1c\u4ee5\u53ca\u4e00\u4e9b\u5f88\u68d2\u7684\u8fd0\u52a8\u3002"} +{"id": "0002131", "video_name": "25dbab4c-b43b-515f-a1b6-e5d9b2b0b659", "text": "\u7528\u8fea\u58eb\u5c3c\u98ce\u683c\u521b\u4f5c\u5173\u4e8e\u7ea6\u62ff\u7684\u5f62\u8c61\u3002"} +{"id": "0002132", "video_name": "25e8f68e-726b-50a2-bd3b-afda1abd3be9", "text": "\u4e00\u7fa4\u4e27\u5c38\u5728\u508d\u665a\u6cbf\u7740\u57ce\u5e02\u8857\u9053\u8d70\uff0c\u88ab\u4e00\u53f0\u65e7\u76f8\u673a\u62cd\u4e0b\u3002\u4ed6\u4eec\u7a81\u7136\u6ce8\u610f\u5230\u76f8\u673a\u5e76\u5f00\u59cb\u671d"} +{"id": "0002133", "video_name": "25ef266e-fab5-5b71-a081-bdfbb78db7bd", "text": "\u7ea2\u87f9\u5728\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u4e0a\u884c\u8d70\u3002"} +{"id": "0002134", "video_name": "25f7ea94-df08-5b73-aa8d-bb69af03f590", "text": "\u5728\u58a8\u897f\u54e5\u57ce\u7684\u4e00\u5ea7\u516c\u56ed\u91cc\uff0c\u65e0\u5bb6\u53ef\u5f52\u7684\u5b69\u5b50\u4eec\u73a9\u7740\u6350\u8d60\u7684\u73a9\u5177\uff0c\u4ee5\u6b22\u5feb\u3001\u5361\u901a\u822c"} +{"id": "0002135", "video_name": "25fafb64-4d12-5df6-a4ab-a922d6ed7180", "text": "\u5c11\u5e74\u53d8\u5f02\u5fcd\u8005\u795e\u9f9f\u5728\u51ac\u5b63\u68ee\u6797\u91cc\u6355\u6349\u5230\u4e86\u4e00\u4e2a\u767d\u96ea\u516c\u4e3b\u3002"} +{"id": "0002136", "video_name": "25fc7864-416e-5552-a131-cf4ad5bf90c0", "text": "\u4e00\u4e2a\u6697\u9ed1\u5947\u5e7b\u98ce\u683c\u7684\u573a\u666f\u5c55\u73b0\u4e86\u4e24\u4e2a\u654c\u5bf9\u6d3e\u7cfb\u4e4b\u95f4\u7684\u6743\u529b\u6597\u4e89\u3002"} +{"id": "0002137", "video_name": "25ffd52b-8071-5a2f-bdec-748627527b1a", "text": "1980\u5e74\u4ee3\u592a\u7a7a\u6b4c\u5267\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u8863\u670d\uff0c\u6709\u8bb8\u591a\u91d1\u5c5e\u8272\u548c\u91d1\u8272\u3002\u7535\u5f71\u822c\u7684\u62cd\u6444\u955c"} +{"id": "0002138", "video_name": "2602034c-cf43-55ba-82a3-5fbbb2663d19", "text": "\u5eb7\u8036\u00b7\u97e6\u65af\u7279\u5728\u706b\u8f66\u7ad9\u5403\u7740\u51b0\u68d2\u3002"} +{"id": "0002139", "video_name": "2602adf1-132d-558d-b6e3-848c3d0e66a9", "text": "\u624b\u91cc\u62ff\u7740\u91d1\u8272\u7684\u94a5\u5319\uff0c\u5c0f\u718a\u6cf0\u7c73\u548c\u5c0f\u5973\u5b69\u8389\u8389\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u8d70\u51fa\u623f\u95f4\uff0c\u7a7f"} +{"id": "0002140", "video_name": "260f5797-3a1c-553c-b6cc-52184b073f4d", "text": "\u57ce\u5e02\u4e2d\u7684\u667a\u80fd\u673a\u5668\u7a81\u7136\u5931\u63a7\uff0c\u5bf9\u4eba\u7c7b\u53d1\u8d77\u653b\u51fb\uff0c\u5f15\u53d1\u6df7\u4e71\u548c\u6050\u614c\u3002"} +{"id": "0002141", "video_name": "26110700-0509-59d2-ab1e-634019e574da", "text": "\u6ce2\u58eb\u987f\u7f57\u514b\u65af\u4f2f\u91cc\u4f4f\u5b85\u533a\u8857\u9053\u4e0a\u884c\u9a76\u7684\u6709\u8f68\u7535\u8f66\u3002"} +{"id": "0002142", "video_name": "26147cc4-9fbb-588c-ae11-de3d31bca4e5", "text": "\u5728\u4e2d\u5fc3\u5904\u5236\u4f5c\u4e00\u4e2a\u5e26\u6709INF\u5b57\u6bcd\u7684\u6807\u5fd7\u3002"} +{"id": "0002143", "video_name": "261cfdbe-6b84-5946-82c2-321cccee3023", "text": "\u90a3\u4e2a\u7537\u5b69\u51fa\u751f\u7684\u65f6\u5019\uff0c\u4ed6\u7684\u5bb6\u4eba\u6b63\u7ad9\u5728\u4e00\u65c1\u770b\u7740\uff0c\u5bb6\u5883\u4e5f\u5f88\u597d\u3002"} +{"id": "0002144", "video_name": "2621144a-8cd8-5849-9b07-47bdda68814a", "text": "\u9634\u5f71\u5728\u623f\u95f4\u91cc\u8df3\u821e\uff0c16:9\u6bd4\u4f8b\u4e0b\u7684\u5e7d\u7075\u5f62\u8c61\u5728\u6050\u6016\u7684\u6f14\u51fa\u4e2d\u3002"} +{"id": "0002145", "video_name": "262d9805-307a-5819-b11c-e6a8af579a27", "text": "\u9ed1\u8272\u7f8e\u4eba\u9c7c\u5728\u655e\u5f00\u7684\u6d77\u6d0b\u4e2d\u6e38\u6cf3\uff0c8K\uff0c\u8f9b\u70f7\u6e32\u67d3\u3002"} +{"id": "0002146", "video_name": "26336d34-e6ca-5ec9-b659-c063f0c5a678", "text": "\u63cf\u8ff0\u96ea\u5973\u738b\u5728\u5979\u7684\u51b0\u5bab\u4e3e\u884c\u76db\u5927\u7684\u51ac\u5b63\u821e\u4f1a\u3002"} +{"id": "0002147", "video_name": "263b4f04-05e4-5a7e-bea6-a506c3ee2060", "text": "\u521b\u9020\u4e00\u4e2a\u7a7f\u7740\u5370\u5ea6\u4f20\u7edf\u670d\u88c5\u7684\u7537\u5b69\u7acb\u7740\u7684\u5f62\u8c61\u3002"} +{"id": "0002148", "video_name": "263c7e98-5ccb-5a28-972a-5ca1f184eb7a", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u793aZara\u548c\u5979\u7684\u670b\u53cb\u5728\u5348\u9910\u671f\u95f4\u804a\u5929\uff0c\u7b11\u58f0\u4e0d\u65ad\uff0c\u5468\u56f4\u8fd8\u6709\u9910\u76d2\u548c\u5c0f\u5403\u3002"} +{"id": "0002149", "video_name": "2642097d-19d5-5508-bf32-576a9592cd83", "text": "3D\u672a\u6765\u4e3b\u4e49\u9713\u8679\u7ebf\u6761\u5efa\u7b51\u5fae\u6ce2\u84dd\u56fe\u3002"} +{"id": "0002150", "video_name": "26460a27-d582-56b9-91e1-eea91f4dc304", "text": "\u6697\u9ed1\u7684\u8ff7\u5e7b\u56fe\u50cf\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u3002"} +{"id": "0002151", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "\u4e00\u53ea\u72ee\u5b50\u9a91\u7740\u4e00\u8f86\u8d85\u7ea7\u6469\u6258\u8f66\u548c\u4e00\u53ea\u5927\u8c61\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9"} +{"id": "0002152", "video_name": "264a60c6-db04-50ef-ba2f-528f2aab0069", "text": "\u4e66\u53d8\u6210\u4e86\u4e00\u90e8\u7535\u89c6\u52a8\u753b\u7247\uff0c\u4eae\u84dd\u8272\u3001\u7d2b\u8272\u3001\u9ec4\u8272\u3001\u6a59\u8272\u3001\u7d2b\u8272\u3001\u84dd\u8272\u548c\u91d1\u8272\u683c\u6805\u3002"} +{"id": "0002153", "video_name": "264e96d1-7e94-5a02-a7eb-ed56a1e30b49", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u4e00\u8d77\u7761\u89c9\u3002"} +{"id": "0002154", "video_name": "26511b70-a762-5562-9be6-2e0eb503797c", "text": "\u7c89\u8272\u5851\u6599\u5b9d\u77f3\u6f02\u6d6e\u5728\u7070\u7d2b\u8272\u7684\u80cc\u666f\u4e0a\u3002"} +{"id": "0002155", "video_name": "265ff94f-396b-5156-805e-05babc1e1eb1", "text": "\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u540d\u4e3a\u6851\u8fbe\u666e\u5c14\uff0c\u5468\u56f4\u662f\u90c1\u90c1\u8471\u8471\u7684\u7530\u91ce\u548c\u5c0f\u8305\u5c4b\u3002"} +{"id": "0002156", "video_name": "26619ad1-423a-580f-a4a2-aa6c68116852", "text": "\u5728\u9ed1\u8272\u7684\u7a7a\u95f4\u80cc\u666f\u4e0a\uff0c\u4e00\u4e2a\u7ecf\u5178\u7684\u65cb\u8f6c\u5730\u7403\u4eea\u4e16\u754c\u5730\u56fe\u914d\u6709\u65f6\u5c1a\u7684\u4eae\u4e3d\u62bd\u8c61\u84dd\u8272\u9713\u8679\u591a"} +{"id": "0002157", "video_name": "2665d97d-f431-5bde-904c-615b919bc5ea", "text": "\u60ca\u4eba\u7684\u666f\u8272\uff1a\u4ee5 Serendell \u7684\u5e7f\u9614\u7a7a\u4e2d\u955c\u5934\u5f00\u573a\uff0c\u8fd9\u91cc\u6709\u8302\u5bc6\u7684\u68ee\u6797\u3001\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u4e00\u6761\u95ea\u95ea\u53d1"} +{"id": "0002158", "video_name": "2667a2f8-34b8-52d5-8c2d-696ad5e4e888", "text": "Source sentence: \u4e00\u4e2a\u725b\u4ed4\u5728\u68ee\u6797\u91cc\u7528\u65a7\u5934\u780d\u6811\u3002"} +{"id": "0002159", "video_name": "2668ef67-ccd9-51b6-8d08-f4baaef5fdec", "text": "\u4e00\u53ea\u7a7f\u7740\u6cf3\u8863\u7684\u7334\u5b50\u5728\u54c8\u74e6\u4f0a\u5c9b\uff0c4K\u89c6\u9891\uff0c16:9\u5206\u8fa8\u7387\u3002"} +{"id": "0002160", "video_name": "266a844f-70f3-5ea3-be73-8fc15b579da1", "text": "\u4e00\u4f4d\u540d\u4e3a\u8389\u8389\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u5979\u7684\u773c\u4e2d\u95ea\u8000\u7740\u68a6\u60f3\uff0c\u5979\u7684\u5fc3\u8ddf\u968f\u7740\u5e0c\u671b\u8d77"} +{"id": "0002161", "video_name": "266ac691-afa9-57a1-a990-c7052cf73365", "text": "\u5730\u9762\u4e0a\u6709\u4e00\u679a\u5b87\u5b99\u706b\u7bad\uff0c\u767d\u5929\u8349\u5730\u4e0a\u6709\u7eff\u8272\u7684\u8349\u576a\uff0c\u5361\u901a\u98ce\u683c\u4eff\u4f5b\u8fea\u58eb\u5c3c\u3002"} +{"id": "0002162", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "\u4e00\u7247\u6709\u5927\u6811\u548c\u9e1f\u513f\u98de\u7fd4\u7684\u68ee\u6797\uff0c\u8272\u5f69\u4e30\u5bcc\u3001\u903c\u771f\uff0c\u89c6\u89d2\u6781\u4f73\u3002"} +{"id": "0002163", "video_name": "2670ab62-d06b-5795-8d62-9f386153bef8", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u8389\u8389\u548c\u9a6c\u514b\u65af\u3002\u4ed6\u4eec\u5728\u516c\u56ed\u91cc\u76f8\u9047\uff0c\u7b11\u58f0\u5728\u6e29\u6696\u7684"} +{"id": "0002164", "video_name": "26715970-062c-54c2-9569-b271ce33773d", "text": "\u66f4\u6539\u76f8\u673a\u89d2\u5ea6\u5e76\u805a\u7126\u5728\u5c71\u7f8a\u8eab\u4e0a\u3002"} +{"id": "0002165", "video_name": "267815f7-236c-5bb1-a62c-5aa4ec70a38d", "text": "\u7537\u5b50\u5728\u8dcc\u843d\u65f6\u4f18\u96c5\u5730\u8df3\u821e\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002166", "video_name": "267d4499-57a6-5145-8f20-c044cae36e36", "text": "10\u670830\u65e5 EXPERT LINE \u60f3\u8c61\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u4eba\u51dd\u89c6\u7740\u5730\u5e73\u7ebf\uff0c\u773c\u91cc\u5145\u6ee1\u597d\u5947\uff0c\u5fc3\u91cc\u5145\u6ee1"} +{"id": "0002167", "video_name": "267ec722-3917-5640-be80-ce2bb68e93b9", "text": "\u5728\u6c99\u6f20\u4e0a\u653e\u7740\u4e00\u628a\u91d1\u8272\u5409\u4ed6\uff0c\u4e0a\u9762\u6709\u4e00\u4e2a\u5c0f\u5341\u5b57\u67b6\u6807\u5fd7\u3002"} +{"id": "0002168", "video_name": "267f38bd-a339-5916-b2b2-c5917b3af903", "text": "\u5728Vrindavan\u7684\u4e00\u4e2a\u53e4\u8001\u5bfa\u5e99\uff0c\u970d\u5229\u8282\u671f\u95f4\uff0c\u4e00\u4f4d\u5973\u5b50\u7a7f\u7740\u534e\u4e3d\u7684\u4f20\u7edf\u73e0\u5b9d\u548c\u6c99\u4e3d\u5728\u5c0f\u5df7\u4e2d"} +{"id": "0002169", "video_name": "2682fd14-1a7a-5ce7-9811-2ebca8dc4d5b", "text": "\u4ecb\u7ecdEspirra\u548cCastellano Silvestre\u4e3a\u7ecf\u5386\u65e0\u6570\u4e0e\u9f99\u7684\u6218\u6597\u800c\u6dec\u70bc\u5200\u950b\u7684\u5f3a\u5927\u6218\u58eb\u3002"} +{"id": "0002170", "video_name": "26837acd-3e31-558c-a302-a7afe0e0a030", "text": "\u5728\u661f\u9645\u8ff7\u822a\u5236\u670d\u4e2d\u64cd\u4f5cEnterprise D\u6216\u661f\u9645\u8ff7\u822a\u4e2d\u7684\u4efb\u4f55\u5176\u4ed6\u8239\u53ea\u7684\u732b\u9f2c\u3002"} +{"id": "0002171", "video_name": "269199db-93e4-5523-a4d3-cb4dfa9fd2e8", "text": "\u5728\u4e00\u4e2a\u5929\u7a7a\u662f\u5976\u916a\uff0c\u5927\u5730\u662f\u5de7\u514b\u529b\u7684\u4e16\u754c\u91cc"} +{"id": "0002172", "video_name": "2694a813-479c-54bf-adde-f7a8c1464b33", "text": "\u4e00\u53ea\u5361\u901a\u718a\u5403\u4e86\u5c0f\u5154\u5df4\u5c3c\u7684\u866b\u5b50\u3002"} +{"id": "0002173", "video_name": "2694f3ad-a587-587c-9de9-94b7d9aadd6c", "text": "\u7528\u7fe1\u7fe0\u4ea4\u6613\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c\u67d4\u548c\u7684\u5149\u7ebf\uff0c\u6c1b\u56f4\u7684\uff0c\u7535\u5f71\u822c\u7684\uff0c\u60c5\u7eea\u5316\u7684\uff0c\u6cb9\u753b\uff0c"} +{"id": "0002174", "video_name": "269b721f-7b15-5971-be96-27a4e98cbc8a", "text": "\u653e\u5927\u4e00\u4e2a\u6c7d\u8f66\u884c\u9a76\u5728\u4e0b\u5761\u8def\u4e0a\u7684\u753b\u9762"} +{"id": "0002175", "video_name": "269c2a77-01a2-54c7-a37e-33228f3a6756", "text": "\u7578\u53d8\u3001\u5b57\u6bcd\u3001\u9ed1\u767d\u7ebf\u6761\u827a\u672f\u3001\u513f\u7ae5\u6d82\u8272\u4e66\u9875\u3001\u7b80\u5355\u3001\u5b57\u6bcdB\u3001\u5b8c\u7f8e\u7ed8\u753b\u3001\u6700\u4f73\u3001\u53ef\u7231"} +{"id": "0002176", "video_name": "26a30f7d-9e61-5105-b6df-0968478d1ca0", "text": "\u4e00\u4e2a\u6c34\u7403\u4ece\u540e\u65b9\u98de\u5411\u7403\u95e8\u7684\u89c6\u89d2"} +{"id": "0002177", "video_name": "26a3cdb7-622b-5136-ae81-0d4766aca869", "text": "\u5c06\u52a8\u753b\u753b\u9762\u79fb\u81f3 xyz \u5973\u58eb\u5bb6\u4e2d\uff0c\u8fdb\u5165\u5b9d\u5b9d\u7684\u623f\u95f4\uff0c\u8f7b\u8f7b\u5730\u7528\u6bef\u5b50\u628a\u4ed6\u76d6\u597d\u3002"} +{"id": "0002178", "video_name": "26a95ed5-a847-5bc5-8452-07e991e0a00c", "text": "\u7c73\u5a05\u5728\u4e00\u4e2a\u5c0f\u800c\u660f\u6697\u7684\u516c\u5bd3\u91cc\uff0c\u76ef\u7740\u4e00\u5757\u7a7a\u767d\u7684\u753b\u5e03\uff0c\u51b3\u5fc3\u8981\u753b\u51fa\u4e00\u5e45\u753b\u3002"} +{"id": "0002179", "video_name": "26ae4833-f65f-5dcc-987d-d7b0f36789b7", "text": "\u4e00\u4e2a\u8ff7\u4eba\u7684\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u68ee\u6797\uff0c\u6709\u4e00\u6761\u5c0f\u8def\u7a7f\u8fc7\u4e2d\u95f4\uff0c\u6301\u7eed5\u79d2\u3002\u80cc\u666f\u4e2d\u6709\u4e00\u53ea\u5927\u8c61\u5728\u884c\u8d70"} +{"id": "0002180", "video_name": "26af4ed6-6cda-554b-aec7-f14efcbf5d2b", "text": "\u5feb\u901f\u7f29\u653e\u7684\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u770b\u5230\u4e86\u95ea\u70c1\u7684\u58ee\u4e3d\u5149\u8292\u548c\u7a7a\u95f4\u8f90\u5c04\u7684\u8868\u6f14\uff0c\u6444\u50cf\u673a"} +{"id": "0002181", "video_name": "26bab828-f036-550a-b891-6ca2ea50ee4e", "text": "\u6709\u4e00\u5929\uff0c\u5f53\u5112\u826e\u4e39\u5c3c\u5728\u73ca\u745a\u7901\u9644\u8fd1\u5e73\u9759\u5730\u5403\u7740\u6d77\u8349\u65f6\uff0c\u4ed6\u6ce8\u610f\u5230\u4e00\u53ea\u5e74\u8f7b\u7684\u6d77\u9a6c"} +{"id": "0002182", "video_name": "26bd8a08-402e-59d0-9294-da59047d225f", "text": "\u5973\u5b69\u5411\u524d\u8fc8\u51fa\u5de6\u811a\uff0c\u800c\u53e6\u4e00\u53ea\u811a\u5219\u4fdd\u6301\u539f\u5730\u4e0d\u52a8\u3002"} +{"id": "0002183", "video_name": "26c379a4-c719-5fbe-8ac9-0e82da4ae857", "text": "\u7528\u7eff\u8272\u80cc\u666f\u5236\u4f5c\u4e00\u5f20\u56fe\u7247\uff0c\u5728\u524d\u9762\u5199\u4e0a\u4ee5\u4e0b\u4fe1\u606f\uff1a"} +{"id": "0002184", "video_name": "26c705d4-1e06-5c1b-9795-031e1f16a8c9", "text": "Chinese translation: \u9ec4\u8272\u7684\u6b8b\u6708\u5728\u591c\u7a7a\u4e2d\u53d1\u51fa\u5149\u8292"} +{"id": "0002185", "video_name": "26cad07d-e220-5f17-9184-db287c33405c", "text": "\u65cb\u8f6c\u901f\u5ea6\u5feb\u7684\u6307\u5357\u9488\u3002"} +{"id": "0002186", "video_name": "26ced35c-1f85-5254-8bba-312f1bcbcc46", "text": "\u53e6\u4e00\u8fb9\uff0c\u4e00\u53ea\u7fe1\u7fe0\u8272\u7684\u9f99\u73a9\u95f9\u5730\u4f11\u606f\u7740\uff0c\u773c\u775b\u95ea\u70c1\u7740\u6dd8\u6c14\u7684\u5149\u8292\u3002"} +{"id": "0002187", "video_name": "26cf0b32-5820-5b16-bbc6-9d63bc950597", "text": "\u4e09\u4e2a\u4eba\u5728\u6d77\u4e0a\u7684\u8239\u4e0a\u3002"} +{"id": "0002188", "video_name": "26d6958c-4881-5326-9853-b17e2bb52ec3", "text": "Gunna\u53d8\u6210\u4e86\u4e00\u652f\u81ea\u5df1\u7684\u519b\u961f\uff0c\u9ad8\u8038\u4e8e\u5176\u4ed6\u4eba\u4e4b\u4e0a\uff0c\u4ee5\u5f70\u663e\u4ed6\u7684\u72ec\u7279\u4e2a\u6027\u3002"} +{"id": "0002189", "video_name": "26d6e8b8-d9ca-5b8d-bbd1-26cca1f3f59d", "text": "\u5979\u4e00\u6b65\u6b65\u5730\u6539\u53d8\u4e86\u81ea\u5df1\u7684\u751f\u6d3b\u3002"} +{"id": "0002190", "video_name": "26db3577-2d04-5edb-bb8c-b2af403e26db", "text": "\u6210\u5409\u601d\u6c57\u57282023\u5e74\u7a7f\u7740\u73b0\u4ee3\u670d\u88c5\uff0c\u8868\u73b0\u51fa\u4eca\u5929\u5728\u7f8e\u56fd\u57ce\u5e02\u4e2d\u67d0\u4e2a\u4eba\u7684\u884c\u4e3a\u65b9\u5f0f\u3002"} +{"id": "0002191", "video_name": "26e6ec58-46be-55fc-b068-1afa092e03c9", "text": "\u4ed6\u5728\u65c5\u9014\u4e2d\u4f1a\u9047\u5230\u5404\u79cd\u6311\u6218\u548c\u969c\u788d\uff0c\u4f46\u4ed6\u575a\u4fe1\u53ea\u6709\u89e3\u51b3\u5931\u843d\u57ce\u5e02\u7684\u8c1c\u56e2\u624d\u80fd\u53d1\u73b0\u5173"} +{"id": "0002192", "video_name": "26f0e863-0db5-54ec-a7fa-4328152b1f2a", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5448\u73b02100\u5e74\u9ad8\u7ea7\u751f\u6d3b\u7684\u89c6\u9891\uff0c\u5efa\u7b51\u975e\u5e38\u5148\u8fdb\uff0c\u751f\u6d3b\u5145\u6ee1\u79d1\u6280\u7684\u89c6\u9891\u3002 \n\nSource sentence: The company's goal is to provide high-quality"} +{"id": "0002193", "video_name": "26fa4c95-4b86-5492-ab41-b27ac7a51ddd", "text": "\u6811\u5728\u6643\u52a8\uff0c\u7011\u5e03\u5728\u6d41\u52a8\u3002"} +{"id": "0002194", "video_name": "26fdad1f-6aea-5cee-a049-fa799e85113f", "text": "\u98ce\u666f\u3001\u771f\u5b9e\u3001\u8d85\u771f\u5b9e\u3001\u7167\u7247\u771f\u5b9e\u3001\u771f\u5b9e\u3001\u5e7b\u60f3\u3001\u6444\u5f71\u30018K\u3001\u6770\u4f5c\u3001\u80cc\u666f\u3001\u7ebf\u6027\u7a7a\u95f4\u3002\u9644\u4ef61\u3002"} +{"id": "0002195", "video_name": "26fe2807-14bf-5179-b4be-c59ce3fce90a", "text": "\u4f7f\u75284K\u5206\u8fa8\u7387\u76843D\u52a8\u753b\u5236\u4f5c\u4e00\u4e2a\u65e2\u7537\u5b69\u5b50\u6c14\u53c8\u4f1a\u4e00\u89c1\u949f\u60c5\u4e8e\u82f1\u4fca\u7537\u5b69\u7684\u5973\u5b69\u3002"} +{"id": "0002196", "video_name": "26ffa4fb-ca29-5d5b-8bdc-9f4a7ad8049e", "text": "\u5c06\u53e4\u4ee3\u751f\u7269\u7684\u73af\u5883\u58f0\u548c\u6811\u53f6\u7684\u5fae\u5f31\u54cd\u52a8\u52a0\u5165\uff0c\u8425\u9020\u51fa\u8be1\u5f02\u7684\u6c1b\u56f4\u3002"} +{"id": "0002197", "video_name": "27034b3c-d595-5edf-b532-f0e201b50b32", "text": "\u5723\u8bde\u8001\u4eba\u5728\u6d77\u6ee9\u4e0a\u4f11\u606f\uff0c\u68d5\u6988\u6811\u50cf\u5723\u8bde\u6811\u4e00\u6837\u3002"} +{"id": "0002198", "video_name": "2703831b-afb3-54dc-9c5f-76e9a6b02a50", "text": "\u74e6\u52d2\u62c9\u8815\u866b\u7a7f\u8fc7\u5730\u9762\u5e76\u5230\u8fbe\u5730\u8868\u3002\u4ed6\u770b\u5230\u8df3\u8dc3\u7684\u739b\u683c\u7279\u866b\u5b50\u3002"} +{"id": "0002199", "video_name": "27068b6f-a3f2-5eae-b092-63de9a54acc2", "text": "\u62b5\u8fbe\u65b0\u4e16\u754c\u7684\u8239\u53ea"} +{"id": "0002200", "video_name": "2708552f-e7ae-513f-9366-4df66b28e889", "text": "\u98ce\u9669\u7ba1\u7406\u5728\u5efa\u8bbe\u7ba1\u7406\u7cfb\u7edf\u4e2d\u53d1\u6325\u7740\u81f3\u5173\u91cd\u8981\u7684\u4f5c\u7528\u3002\u5728\u5efa\u8bbe\u9879\u76ee\u4e2d\uff0c\u5b58\u5728\u5404\u79cd\u98ce\u9669\uff0c\u5305\u62ec\u6280\u672f\u3001\u8d22\u52a1\u548c"} +{"id": "0002201", "video_name": "270dbc8b-4a79-5688-ad2b-c8cbe9e79225", "text": "\u9ed1\u6697\u5947\u5e7b\uff0c\u56fd\u738b\u4e0e\u4ed6\u7684\u58eb\u5175\u519b\u56e2\u8bb2\u8bdd\u3002"} +{"id": "0002202", "video_name": "270e8f00-509f-5a9a-9547-1262ee964fd8", "text": "\u72fc\u722a\u88ab\u56f0\u5728\u9677\u9631\u91cc\u3002"} +{"id": "0002203", "video_name": "27146824-c898-50be-89c0-eb054e40e97f", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u58eb\u5175\u80cc\u7740\u88c5\u5907\u548c\u76d4\u7532\u5728\u68ee\u6797\u91cc\u5954\u8dd1\uff0c\u4e2d\u955c\u5934\u8ddf\u968f\u62cd\u6444\u3002\u620f"} +{"id": "0002204", "video_name": "2715d975-d2a4-5e66-b864-fd762c2bf468", "text": "\u4e00\u4f4d\u6df1\u601d\u719f\u8651\u7684\u5973\u6027\uff0c\u8d85\u9ad8\u5206\u8fa8\u7387\uff0c8K\u3002"} +{"id": "0002205", "video_name": "27189da6-c368-55a3-b94d-bbd70cbfb091", "text": "\u751f\u547d\u4e4b\u6cb3\u827a\u672f\u8868\u73b0\u5929\u5802\u5b81\u9759\u3002"} +{"id": "0002206", "video_name": "271a04f9-b665-5ad7-9ecf-1cc51886ce9f", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u4f4e\u8f66\u5e95\u7ebf\u8f6e\u5728\u8fde\u7eed\u5faa\u73af\u4e2d\u65cb\u8f6c\uff0c8K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u9ad8\u5ea6\u903c\u771f\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u9ad8"} +{"id": "0002207", "video_name": "271e3ae7-d31c-5f2e-a28d-8c0892a3f636", "text": "\u54c7\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u5fb7\u9ed1\u5170\u7684\u81ea\u7531\u4e4b\u5854\u5728\u65e5\u843d\u65f6\u5206\u3002"} +{"id": "0002208", "video_name": "271f44c0-1b89-5307-b5c6-31ee9d1a28d3", "text": "\u4e00\u540d\u5973\u5b50\u5728\u60ac\u5d16\u8fb9\u8d70\u8def\u3002"} +{"id": "0002209", "video_name": "271fa825-2e89-56b9-ae04-003416781289", "text": "\u4f7f\u7528\u4e09\u811a\u67b6\u62cd\u7167\u3002"} +{"id": "0002210", "video_name": "27257524-3cc7-5b3a-bc8d-849cb0fa4e03", "text": "\u54c6\u5566A\u68a6\u5728\u65e9\u9ad8\u5cf0\u65f6\u671f\u6324\u8fdb\u5730\u94c1\u3002"} +{"id": "0002211", "video_name": "2727c4ae-5ef2-5c1e-be72-bb2f08d197bf", "text": "\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u8001\u592a\u592a\u548c\u8001\u5934\u5b50\u7684\u7535\u5f71"} +{"id": "0002212", "video_name": "272ab82c-3556-5e93-b2a5-752a3a3a2869", "text": "\u52a8\u753b\u7247\uff0c\u4e00\u4e2a\u4e50\u961f\u5728\u9a6c\u63d0\u5c3c\u9152\u5427\u6f14\u594f\uff0c\u6444\u50cf\u5934\u7f29\u653e\uff0c\u52a8\u4f5c2"} +{"id": "0002213", "video_name": "272bf78e-15eb-5e61-9f5d-6791b8c24537", "text": "\u4eba\u5728\u4e00\u7247\u65e7\u6218\u573a\u7684\u5e9f\u589f\u4e2d\u884c\u8d70\u3002"} +{"id": "0002214", "video_name": "272d6a78-50dc-5411-bb3f-0124b245c32d", "text": "\u72c2\u70ed\u5730\u8be6\u7ec6\u800c\u590d\u6742\u7684\u9ec4\u91d1\u5973\u738b\uff0c\u5bf9\u79f0\u7f8e\u611f\uff0c\u6765\u81eaArtgerm\u3001WLOP\u548cWarwick Goble\uff1b\u4f7f\u7528Nikon D750\u62cd"} +{"id": "0002215", "video_name": "272ea877-8072-5e14-9f08-f484f1219ea7", "text": "\u8fd9\u5ea7\u5bab\u6bbf\u662f\u7531\u4e0d\u540c\u79cd\u7c7b\u7684\u73cd\u8d35\u77f3\u5934\u5efa\u9020\u800c\u6210\uff0c\u6709\u4e00\u4e2a\u5927\u5706\u9876\u548c\u8bb8\u591a\u67f1\u5b50\uff0c\u5728\u5bab\u6bbf\u91cc\u6709\u8bb8\u591a"} +{"id": "0002216", "video_name": "273a17e3-6785-51c4-a758-291e2b94237a", "text": "\u4e24\u4e2a\u4eba\u5750\u5728\u5c71\u4e0a\uff0c\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u76ef\u7740\u5730\u5e73\u7ebf\u770b\uff0c\u662f\u4e8c\u7ef4\u77e2\u91cf\u5361\u901a\u7684\u4e2d\u666f\u3002"} +{"id": "0002217", "video_name": "273cc540-4266-5268-b8d2-37335379c37f", "text": "\u7a7a\u4e2d\u65e0\u4eba\u673a\u62cd\u6444\u4e86\u4e00\u5ea7\u5b64\u96f6\u96f6\u7684\u5c0f\u5c4b\uff0c\u5750\u843d\u5728\u96ea\u5c71\u4e4b\u5dc5\u3002\u7535\u5f71\u822c\u7684\u3001\u8d85\u5199\u5b9e\u7684\u3001\u6d45\u666f"} +{"id": "0002218", "video_name": "273f3b54-b65b-5261-82a6-518f12e8e8aa", "text": "\u534e\u4e3d\u8bbe\u8ba1\u7684\u65f6\u5c1a\u7cbe\u54c1\u5e97\uff0c\u8863\u670d\u6574\u9f50\u5730\u653e\u7f6e\u5728\u8d27\u67b6\u4e0a\uff0c\u95ea\u4eae\u7684\u914d\u9970\u9648\u5217\u7740\u3002"} +{"id": "0002219", "video_name": "274267c1-3304-50cd-a82e-3912783e906b", "text": "\u4e00\u4f4d22\u5c81\u7684\u5973\u5b69\u7a7f\u7740\u7eff\u8272\u7684\u8863\u670d\uff0c\u81ea\u79f0\u4e3aN F Onuoha\uff0c\u8c08\u8bba\u5979\u5728\u6628\u665a\u5173\u4e8eDeFi\u548cweb3\u5de5\u4f5c\u7684\u201c"} +{"id": "0002220", "video_name": "274e5c7f-d46f-5f71-b4e8-3c1cb75c3b8e", "text": "\u521b\u4f5c\u4e00\u4e2a\u6765\u81ea\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u6559\u5ba4\u5185\u4e00\u7fa4\u5b66\u751f\u7684\u52a8\u753b\u3002"} +{"id": "0002221", "video_name": "27565574-6edf-5a4d-b737-009e032fa036", "text": "\u68ee\u6797\u4e2d\u7ad9\u7acb\u7740\u4e00\u53ea\u9ed1\u8910\u8272\u7684\u72d0\u72f8\uff0c\u6446\u51fa\u4e86\u80dc\u5229\u7684\u59ff\u6001\u3002"} +{"id": "0002222", "video_name": "275bed9a-5323-5047-8171-4328018e3d80", "text": "\u76ae\u514b\u65af\u98ce\u683c\u7684\u4eba\u5f62\u793c\u7269\u5531\u7740\u6b22\u5feb\u6709\u8da3\u7684\u73b0\u4ee3\u5723\u8bde\u9882\u6b4c\uff0c\u914d\u4ee5\u5723\u8bde\u706f\u3001\u96ea\u548c"} +{"id": "0002223", "video_name": "27603806-0bee-5987-bb0d-ca766ff9e9d8", "text": "\u52a8\u753b\u7537\u5b69\u4ee5\u7b80\u5355\u7684\u56fe\u5f62\u6109\u5feb\u5730\u60f3\u8c61\u7740\u8bbf\u95ee\u4e00\u4e2a\u7f8e\u4e3d\u57ce\u5e02\u7684\u7f8e\u4e3d\u666f\u8272\u3002"} +{"id": "0002224", "video_name": "2762461a-2a8e-53a2-8271-6f3c4abdfaee", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\u76f4\u63a5\u770b\u5411\u76f8\u673a\u3002"} +{"id": "0002225", "video_name": "2764e8a2-d50d-510f-bf7a-780dbb1d097d", "text": "\u4e00\u5f20\u7f8e\u4e3d\u7684\u56fe\u7247\uff0c\u4e2d\u95f4\u6709\u4e00\u9053\u6805\u680f\uff0c\u5468\u56f4\u662f\u4e00\u7247\u68ee\u6797\u52a8\u7269\u5c0f\u5c4b\u548c\u68ee\u6797\uff0c\u80cc\u666f\u6709\u6811\u3001\u4e91\u548c"} +{"id": "0002226", "video_name": "276b3dc6-ec88-5207-9533-2c1f00f49783", "text": "\u4e00\u53ea\u91d1\u8272\u7684\u72ee\u5b50\u738b\u4fef\u77b0\u7740\u5404\u4e2a\u5206\u90e8\u3002"} +{"id": "0002227", "video_name": "2771135f-5e22-567b-a149-232581c1358c", "text": "\u521b\u9020\u4e00\u4e2a\u5feb\u901f\u65cb\u8f6c\u7684\u7a7a\u95f4\u7ad9\u3002"} +{"id": "0002228", "video_name": "277332d0-41f3-5dd7-9bc3-166ebf6c9db9", "text": "\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u906d\u9047\u4e4b\u4e00\u662f\u80e1\u5b89\u00b7\u5361\u74e6\u7eb3\u7684\u3002"} +{"id": "0002229", "video_name": "277394ef-e600-57e7-914c-13337e1e024b", "text": "\u72d7\u88ab\u8c93\u548c\u96de\u5305\u570d\u3002"} +{"id": "0002230", "video_name": "2773b7c7-2557-55e8-91e9-05f0fcdcb5a5", "text": "\u5728\u64cd\u573a\u4e0a\u6709\u4eba\u9a91\u7740\u4e00\u5339\u9a6c\u3002 \n\nSource sentence: My favorite color is blue. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "0002231", "video_name": "2780399e-3994-5409-bcfa-5dbac0e1b1cb", "text": "\u4f5b\u7f57\u91cc\u8fbe\u5dde\u7684\u6cb3\u6d41\u7684\u5168\u666f\u3002\u6cb3\u8fb9\u7684\u6cbc\u6cfd\u5cb8\u8fb9\u70b9\u7f00\u7740\u8986\u76d6\u4e86\u897f\u73ed\u7259\u82d4\u85d3\u7684\u5927"} +{"id": "0002232", "video_name": "2786c697-31ee-5d26-abc7-cc5a1d617458", "text": "\u4e00\u53ea\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u72d7\uff0c\u81ea\u79f0\u4e3a\u5218\u5929\u72d7\u3002\u4ed6\u7684\u8bdd\u5c06\u7528\u4e2d\u6587\u5b57\u7b26\u663e\u793a\u3002"} +{"id": "0002233", "video_name": "278836e0-e4de-546c-9c61-50382537fef0", "text": "\u4e00\u4e2a\u5207\u6210\u7247\u7684\u65b0\u9c9c\u67e0\u6aac\u6389\u8fdb\u5e26\u51b0\u7684\u6c34\u91cc\uff0c\u7535\u5f71\u955c\u5934\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u4fa7\u89c6\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "0002234", "video_name": "2788f5db-a81f-54fc-8c07-553dae8f7352", "text": "\u5973\u6027\u52a8\u4f5c\u7535\u5f71\u82f1\u96c4\u4ece\u7206\u70b8\u4e2d\u8df3\u8dc3\u3002 \u7535\u5f71\u5316\u7684\u3002 \u57ce\u5e02\u8857\u9053\u3002 \u52a8\u6001\u3002 \u6c14\u6c1b\u3002 \u5b50\u5f39\uff0c"} +{"id": "0002235", "video_name": "278d82aa-6c24-511e-88e4-9295b15426c8", "text": "\u5728\u68ee\u6797\u5c0f\u8def\u4e0a\uff0c\u7a7f\u7740\u4f8f\u5112\u670d\u88c5\u7684\u4f8f\u5112\u4eec\u62bd\u70df\u5e76\u9047\u5230\u4e86\u4e00\u8f86\u516c\u5171\u6c7d\u8f66\u3002"} +{"id": "0002236", "video_name": "278d9064-bd45-5291-9dda-c5dd013c7560", "text": "\u5728\u5065\u8eab\u623f\u91cc\u6c57\u6d41\u6d43\u80cc\u7684\u4e00\u4e2a\u58ee\u7855\u7537\u5b50\u3002"} +{"id": "0002237", "video_name": "2793136a-9f45-56ad-81af-dae57309a6d0", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a90\u5e74\u4ee3\u5317\u97e9\u5973\u8bb0\u8005\u5f62\u8c61\uff0c\u7a7f\u774090\u5e74\u4ee3\u98ce\u683c\u7684\u8863\u670d\uff0c\u7ad9\u572890\u5e74\u4ee3\u98ce\u683c\u7684\u80cc\u666f\u524d\u505a\u62a5\u9053\uff0c\u5934"} +{"id": "0002238", "video_name": "279365f8-26bb-5c6d-b73a-09c7ad3e5e25", "text": "\u4e4c\u9e26\u548c\u9e1f\u513f\u6b64\u65f6\u5728\u4ee5\u5361\u901a\u98ce\u683c\u7684\u5f62\u5f0f\u5e2e\u52a9\u6751\u6c11\u627e\u5230\u65b0\u7684\u6c34\u6e90\u3002"} +{"id": "0002239", "video_name": "27944ea5-0248-5048-8719-0271a4e5df67", "text": "\u5c06\u7167\u7247\u4e2d\u7684\u5973\u5b69\u53d8\u6210\u7537\u5b69\u3002\n\nSource sentence: I am sorry, but I cannot help you with that. \n\u5f88\u62b1\u6b49\uff0c\u6211\u65e0\u6cd5\u5e2e\u52a9\u4f60\u89e3\u51b3\u8fd9"} +{"id": "0002240", "video_name": "2798d49d-6c93-5b14-9adf-9eef664b4438", "text": "\u7528\u9713\u8679\u706f\u548c\u6d3e\u5bf9\u6c1b\u56f4\u521b\u9020\u672a\u6765\u4e3b\u4e49\u52a8\u611f\u573a\u666f\u3002"} +{"id": "0002241", "video_name": "279aeb96-7686-5771-9bca-d2db778070ad", "text": "\u516c\u4e3b\u957f\u7740\u4e00\u5934\u9ed1\u8272\u957f\u53d1\uff0c\u5728\u5c71\u7684\u524d\u9762\u4e0eHello Kitty\u8df3\u821e\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "0002242", "video_name": "279c5dfb-5114-54a1-acd9-118fd3942d72", "text": "\u5728\u8fd9\u5ea7\u5c71\u4e0a\uff0c\u4e0a\u5e1d\u5c06\u6d88\u9664\u63a9\u76d6\u6240\u6709\u4eba\u7684\u5e37\u5e55\uff0c\u8986\u76d6\u6240\u6709\u56fd\u5bb6\u7684\u8303\u56f4\u3002"} +{"id": "0002243", "video_name": "279cae5c-9c6c-528a-863f-f23224629ff4", "text": "\u5de8\u5927\u7684\u9ed1\u6697\u5ba4\u5185\u6709\u5916\u661f\u4eba\u548c\u673a\u5668\uff0c\u5e7f\u89d2\u7684\u9ed1\u6697\u548c\u7535\u5f71\u611f\u3002"} +{"id": "0002244", "video_name": "279fc834-e23c-5193-8cc1-e3d675733a05", "text": "\u4e00\u4f4d\u5973\u5b50\u8d70\u8fdb\u4e00\u5ea7\u53e4\u8001\u7684\u5e84\u56ed\uff0c\u53d1\u73b0\u623f\u5b50\u91cc\u6709\u4e00\u79cd\u4e0d\u5bfb\u5e38\u7684\u6c1b\u56f4\u3002\u5728\u63a2\u7d22\u8fc7\u7a0b\u4e2d\uff0c\u5979\u9047"} +{"id": "0002245", "video_name": "27a675ae-affe-5e33-bbb5-c965e14c2b9b", "text": "\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u6218\u4e89\u6e56\u6cca\uff0c\u96fe\u8499\u8499\u7684\u6e56\u6cca\uff0c\u672b\u65e5\u6838\u5fc3\uff0c\u5669\u68a6\u6838\u5fc3\uff0c\u4f73\u80fd"} +{"id": "0002246", "video_name": "27b00c42-50bf-58f7-8840-f481c9c095d9", "text": "\u7279\u65af\u62c9\u7535\u52a8\u8f66\u5728\u8def\u4e0a\u51fa\u73b0\u6545\u969c\uff0c\u53d1\u751f\u706b\u82b1\uff0c\u903c\u771f\uff0c\u767d\u5929\uff0c4K\u3002"} +{"id": "0002247", "video_name": "27b1dd00-9ffe-5407-adc0-a298cf5f898d", "text": "\u5de8\u5927\u7684\u86cb\u7cd5\u4e0a\u6709\u8bb8\u591a\u8721\u70db\u3002"} +{"id": "0002248", "video_name": "27b3f085-6d35-57a2-83e7-a86dd59b6bfd", "text": "\u7537\u4eba\u5934\u4e0a\u6234\u7740\u5730\u7403\u3002\u7535\u5f71\u822c\u7684\u706f\u5149\u3002"} +{"id": "0002249", "video_name": "27c0fd1d-4de5-5207-b326-8f56037d1dcd", "text": "\u63cf\u8ff0\u4e00\u4e2a\u4eba\u7ad9\u5728\u6307\u6325\u53f0\u4e0a\uff0c\u5468\u56f4\u6709\u5404\u79cd\u4ee3\u8868\u7ecf\u5386\u3001\u4fe1\u4ef0\u548c\u5173\u7cfb\u7684\u4eba\u7269\u3002\u63cf\u7ed8\u6bcf\u4e2a\u4eba\u7269\u624b\u6301\u4ee3\u8868\u4ed6\u4eec\u5bf9\u6b64\u4eba"} +{"id": "0002250", "video_name": "27c199bb-bf11-5faf-93c0-f5295d60f68d", "text": "\u5979\u7684\u773c\u775b\u95ea\u70c1\u7740\u51e0\u4e2a\u4e16\u7eaa\u7684\u667a\u6167\u3002\n32k \u5206\u8fa8\u7387\u9ad8\u5ea6\u8be6\u7ec6\u7684\u903c\u771f\u89d2\u8272\u6982\u5ff5\u7a33\u5b9a"} +{"id": "0002251", "video_name": "27c39498-bb98-55f5-abde-0b360bc158c0", "text": "\u5236\u4f5c\u4e00\u53ea\u9006\u621f\u9cb8\u4e0e\u9ca8\u9c7c\u640f\u6597\u3002"} +{"id": "0002252", "video_name": "27c4d176-7755-543c-9997-8f384ffa0ab1", "text": "\u4e00\u4e2a\u5973\u5b69\u505c\u7559\u5728\u79cb\u5929\u7684\u8857\u9053\u4e0a\uff0c\u8d70\u5411\u6211\u3002"} +{"id": "0002253", "video_name": "27c620e1-88bd-5e13-963c-afb856ca1f5a", "text": "\u4e00\u5bb6\u4eba\u671f\u5f85\u7740\u590f\u5b63\u5ea6\u5047\u3002"} +{"id": "0002254", "video_name": "27c84b42-44f8-5dfc-8fd7-6fcd98a5edfb", "text": "\u94a2\u94c1\u4fa0\u548c\u8759\u8760\u4fa0\u6b63\u5728\u6218\u6597\uff0c\u94a2\u94c1\u4fa0\u53d1\u5c04\u6fc0\u5149\u653b\u51fb\u3002"} +{"id": "0002255", "video_name": "27c9ae7f-cb9d-539a-bb8a-bf91c895c664", "text": "\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\uff0c\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\u5728\u4e92\u76f8\u4e89\u5435\u3002"} +{"id": "0002256", "video_name": "27d2e89f-f7c0-5ada-a3dc-8efc581cd1b5", "text": "\u4e91\u6735\u5f62\u6210\u4e00\u6761\u201c\u6211\u7231\u4f60\u201d\u7684\u8d85\u5199\u5b9e\u4fe1\u606f\uff0c32K\u3002"} +{"id": "0002257", "video_name": "27d31cb3-d322-521d-89c2-2052d66ea064", "text": "\u5973\u58eb\u8d70\u8fdb\u745e\u58eb\u914d\u65b9\u5316\u5986\u54c1\u5e97\uff0c\u4e0e\u67dc\u53f0\u524d\u7684\u5973\u58eb\u4ea4\u8c08\u3002"} +{"id": "0002258", "video_name": "27d7e37d-8050-522c-b533-c38f8baa4a7d", "text": "\u7ecf\u5178\u7684\u4ed9\u4fa0\u98ce\u683c\u3002\u4ed9\u4eba\u5b66\u9662\u7684\u56fe\u4e66\u9986\u9664\u4e86\u6536\u85cf\u4e0d\u673d\u4fee\u4ed9\u672f\u7684\u7ecf\u5178\u548c\u56fe\u7eb8\u3002"} +{"id": "0002259", "video_name": "27e22c02-6f60-58aa-84b6-dff16cc5586a", "text": "\u91d1\u53d1\u548c\u95ea\u4eae\u7684\u84dd\u773c\u775b\u3002\u4e24\u4e2a25\u5c81\u7684\u5973\u5b69\u5750\u5728\u957f\u6905\u4e0a\uff0c\u9762\u524d\u6709\u70b9\u4f24\u5fc3\u3002YouTube\u77ed\u89c6\u9891\u5927\u5c0f\u4e3a9:"} +{"id": "0002260", "video_name": "27eb446a-1efc-5e15-a1cd-dc9f296bba2f", "text": "\u73bb\u7483\u82cf\u6253\u6c34\u74f6\u5012\u51fa\u82cf\u6253\u6db2\u4f53\uff0c\u6709\u5f88\u591a\u8fd0\u52a8\u6db2\u6ef4\uff0c\u82cf\u6253\u996e\u6599\u88ab\u5012\u51fa\u3002 \n\nSource sentence:"} +{"id": "0002261", "video_name": "27ee0fe3-2d4f-5213-ae00-1d1fcf23a372", "text": "\u8fd9\u5ea7\u57ce\u5e02\u7684\u5efa\u7b51\u7269\u5728\u5730\u9707\u4e2d\u5f97\u5230\u51cf\u9707\u3002"} +{"id": "0002262", "video_name": "27f35c2a-1fb1-5353-8666-4864abdba649", "text": "\u5728\u4e00\u573a\u8d85\u73b0\u5b9e\u7684\u677f\u7403\u6bd4\u8d5b\u4e2d\uff0c\u8428\u52d2\u66fc\u738b\u5b50\u548c\u585e\u897f\u603b\u7edf\u5728\u5766\u514b\u4e0a\u5bf9\u5cd9\uff0c\u4ee5\u4ee5\u8272\u5217\u56fd\u65d7\u4f5c\u4e3a\u4ed6"} +{"id": "0002263", "video_name": "27f46bc4-b33b-57f8-8ff0-a4efe2f7c67a", "text": "19\u4e16\u7eaa\u7684\u5973\u4eba\u5728\u5c71\u4e18\u4e0a\u54ed\u6ce3\uff0c\u8fdc\u666f\u955c\u5934\u3002"} +{"id": "0002264", "video_name": "27f6f1c7-21c7-5067-955c-c972768a83d7", "text": "\u4e00\u4e2a\u7c89\u8272\u7684\u7cd6\u679c\u5973\u738b\u98de\u5411\u5929\u7a7a\u3002"} +{"id": "0002265", "video_name": "27fbb33d-3d76-5ec7-8c2b-16a36e31acf7", "text": "\u963f\u4f5b\u6d1b\u72c4\u5fd2\u7a7f\u7740\u793c\u670d\u5728\u6d77\u4e2d\u6e38\u6cf3\u3002\n\nSource sentence: The sun sets in the west. \n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002"} +{"id": "0002266", "video_name": "27ff1f05-942b-5042-bc81-1cb845725a40", "text": "\u4e00\u4e2a\u5c0f\u9547\u4e0a\u7684\u6674\u6717\u65e5\u5b50\u3002\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69Mia\u624b\u91cc\u62ff\u7740\u4e00\u5957\u4e94\u989c\u516d\u8272\u7684\u8721\u7b14\u5750\u5728\u8349\u5730"} +{"id": "0002267", "video_name": "2800b74b-a646-5d3c-a07c-91be6f1da56a", "text": "\u673a\u5668\u4eba\u4e92\u76f8\u63a5\u89e6\uff0c\u5c31\u50cf\u7c73\u5f00\u6717\u742a\u7f57\u7684\u300a\u521b\u4e16\u7eaa\u300b\u4e2d\u4e9a\u5f53\u4e0e\u4e0a\u5e1d\u7684\u63a5\u89e6\u3002"} +{"id": "0002268", "video_name": "28060cce-e9d2-5eb0-a748-f5c265ce367b", "text": "\u4e00\u67b6\u98de\u673a\u7559\u4e0b\u4e86\u5316\u5b66\u5c3e\u6c14\uff0c\u4e0a\u9762\u5199\u7740\u4fe1\u606f\uff1aPANTOS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0002269", "video_name": "2806a5c0-88b3-51af-ab58-6ca6f6206975", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u5728\u7206\u70b8\u524d\u9762\u8d70\u8def\u3002"} +{"id": "0002270", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "\u7279\u65af\u62c9\u6a21\u578b\u5728\u672a\u6765\u4e3b\u4e49\u7684\u6c34\u6676\u57ce\u5e02\u4e2d\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "0002271", "video_name": "280fb5b7-cec5-52e0-9baa-c16350a4ea9e", "text": "\u4e00\u4f4d\u8eab\u7a7f\u6c99\u8272\u5236\u670d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u8003\u53e4\u6316\u6398\u73b0\u573a\uff0c\u80cc\u666f\u662f\u5176\u4ed6\u8003\u53e4\u5b66\u5bb6\u6b63\u5728\u5de5\u4f5c\u3002"} +{"id": "0002272", "video_name": "281c29f1-c5bb-53f4-ae99-a77560ca9a1d", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u7ad9\u5728\u4e00\u6735\u4e91\u4e0a\uff0c\u7a7f\u7740\u4e00\u4ef6\u767d\u8272\u957f\u888d\u548c\u4e00\u9876\u91d1\u8272\u7687\u51a0\uff0c\u773a\u671b\u5929"} +{"id": "0002273", "video_name": "281e8abe-585d-5fe1-b1bb-5cc91cf2d12e", "text": "\u7eff\u8272\u7c98\u6db2\u57284K\u684c\u5b50\u4e0a\u6d41\u6dcc\uff0cTikTok\u4e0a\u8d8b\u52bf\uff0c\u70ed\u95e8\u3002"} +{"id": "0002274", "video_name": "28270329-570f-5767-b532-4ce66f9f3d50", "text": "\u4e00\u4e2a\u5e26\u7740\u72fc\u5954\u8dd1\u5728\u5411\u65e5\u8475\u4e0b\u7684\u68ee\u6797\u4e2d\u7684\u7537\u5b69\u3002"} +{"id": "0002275", "video_name": "2833cc86-892c-54a4-bfdd-2c2474fd780e", "text": "\u5728\u5df4\u5398\u5c9b\uff0c\u4e00\u4f4d\u5973\u6027\u6b63\u5728\u8c08\u8bba\u4e00\u4e2a\u5145\u6ee1\u6fc0\u60c5\u7684\u8bdd\u9898\u3002"} +{"id": "0002276", "video_name": "28388101-fd6a-5ecf-adf3-7d1b0260c32d", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u7ad9\u5728\u96f7\u7535\u80cc\u666f\u4e0b\u6234\u7740\u8033\u673a\u3002"} +{"id": "0002277", "video_name": "283bcd91-db42-53b3-8bfb-cf78b9c2109e", "text": "\u5750\u5728\u4e00\u628a\u8eba\u6905\u4e0a\uff0c\u80cc\u540e\u6709\u4e00\u76c6\u76c6\u666f\u6811\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002278", "video_name": "285a4f6d-db23-517f-9e40-a00b5e848ef9", "text": "\u5c0f\u63a2\u9669\u5bb6\u9047\u5230\u4e86\u4e00\u6761\u5bbd\u9614\u3001\u7ffb\u6eda\u6f8e\u6e43\u7684\u6cb3\u6d41\u3002"} +{"id": "0002279", "video_name": "2867b7d3-20ac-50f4-8331-5a21837c85eb", "text": "\u7535\u5f71\u5f0f\u7684\uff0c\u5728\u4e00\u4e2a\u65f6\u95f4\u88ab\u63a7\u5236\u7684\u4e16\u754c\u91cc\u3002"} +{"id": "0002280", "video_name": "286cc6a7-a8a4-56b1-ae72-c3a5b5a45fb8", "text": "\u786c\u89d2\u5ea6\uff0c\u7f8e\u56fd\u7537\u6027\uff0c\u666e\u901a\u773c\u775b\uff0c18\u5c81\uff0c\u7626\u957f\u8138\uff0c\u540e\u6218\u58eb\uff0c\u67f4\u6cb9\u670b\u514b\uff0c\u4e0e\u9f99\u7684\u666f"} +{"id": "0002281", "video_name": "287409e0-fbf8-57a7-9231-16df1a8a35b3", "text": "\u4e94\u5f69\u7f24\u7eb7\u7684\u91ce\u82b1\u5728\u65e5\u5f0f\u82b1\u56ed\u4e2d\u968f\u98ce\u6447\u66f3\uff0c\u7011\u5e03\u6d41\u6c34\uff0c\u5149\u5f71\u4ea4\u9519\uff0c\u548c\u8c10\u5b9c\u4eba\uff0c"} +{"id": "0002282", "video_name": "2874fe7c-ff26-587f-bbd0-5ea29fb53dc8", "text": "\u5728\u591c\u665a\u7684\u68ee\u6797\u4e2d\u770b\u5230\u4e00\u4e9b\u4eba\u7c7b\u8eab\u4f53\uff08\u7b2c\u4e00\u4eba\u79f0\uff09"} +{"id": "0002283", "video_name": "287a6436-c27c-5e14-bc46-503a72eb1931", "text": "\u770b\u8d77\u6765\u50cf\u897f\u74dc\u7684\u8f66\u8f86\u5f00\u5411\u60ac\u5d16\u3002"} +{"id": "0002284", "video_name": "287be44f-a7eb-504f-a714-63cd2cbc2cff", "text": "\u521b\u4f5c\u4e00\u4e2a\u77ed\u6545\u4e8b\uff0c\u8bb2\u8ff0\u4e00\u4f4d\u719f\u7ec3\u7684\u9a7e\u9a76\u5458\u5728\u4e00\u8f86\u70bd\u70ed\u7684\u7ea2\u8272\u6cd5\u62c9\u5229\u4e0a\u9a7e\u9a76\uff0c"} +{"id": "0002285", "video_name": "287c75fa-4801-5761-9263-ea2f488b7b82", "text": "\u675c\u5a03\u00b7\u8389\u5e15\u5728\u6c99\u6f20\u4e0a\u4ece\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u9003\u8dd1\u3002 \n\nSource sentence: This book is written in Chinese and translated into"} +{"id": "0002286", "video_name": "287d0825-0457-587e-9105-85c6b9d30966", "text": "\u5728\u6c99\u6f20\u4e0a\u6709\u4e00\u4e2a\u6b65\u884c\u8005\u3002"} +{"id": "0002287", "video_name": "287dae1f-c004-54dd-b6bf-d50cf8d3a11d", "text": "\u4e00\u4e2a\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u4e09\u7ef4\u52a8\u753b\u4e2d\uff0c\u6709\u8bb8\u591a\u7f8e\u98df\u8f66\u548c\u8282\u65e5\u7684\u4eba\u7fa4\uff0c\u80cc\u666f\u662f\u57ce\u5e02\u3002"} +{"id": "0002288", "video_name": "28810a7e-8710-51d4-8b40-cb0accdebfbe", "text": "\u90e8\u5206\u767d\u5899\u7834\u88c2\u65ad\u88c2\u3002"} +{"id": "0002289", "video_name": "28821b70-5032-5b10-ad94-b8bcf4400469", "text": "\u5b99\u65af\u6254\u51fa\u4e00\u9053\u95ea\u7535\u6240\u521b\u4f5c\u7684\u4e00\u5e45\u753b\u3002"} +{"id": "0002290", "video_name": "28822067-d983-58ee-8a9f-21bf56f7fc64", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u6b63\u5728\u67d3\u5934\u53d1\u3002"} +{"id": "0002291", "video_name": "2889ced2-5449-5752-8440-a825d774e40c", "text": "\u6b66\u58eb\u4eec\u9a7e\u9a76\u7740\u4e00\u8f86\u5927\u8f66\u7a7f\u8d8a\u7530\u91ce\uff0c\u8ffd\u9010\u4e00\u53ea\u5de8\u5927\u7684\u5927\u8c61\u3002"} +{"id": "0002292", "video_name": "28900265-489f-5699-aefc-f9a8d4d6afd3", "text": "\u5728\u68ee\u6797\u4e2d\uff0c\u76f8\u673a\u5e73\u7a33\u5730\u7a7f\u8fc7\u8302\u5bc6\u7684\u6811\u6797\uff0c\u5c55\u793a\u51fa\u91ce\u6027\u548c\u98ce\u666f\u5982\u753b\u7684\u68ee\u6797\u3002\u5728\u4e00\u68f5\u6811\u540e"} +{"id": "0002293", "video_name": "2892f8fc-3411-5d8b-ba74-b7b7528729d9", "text": "\u4e00\u4f4d\u5973\u795e\u6b63\u5728\u4e00\u500b\u751f\u7269\u767c\u5149\u7684\u9b5a\u7f38\u4e2d\u8207\u9b5a\u6e38\u6cf3\u3002"} +{"id": "0002294", "video_name": "28960c1a-e343-58c2-aa1c-668bb9801348", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u9ece\u5df4\u5ae9\u5403\u86cb\u7cd5\u3002"} +{"id": "0002295", "video_name": "289b913c-27e9-5e8f-adfa-7f91587406b0", "text": "\u53cd\u590d\u590d\u53e4\u7684\u8ff7\u5e7b\u98ce\u683c\uff0c\u53ef\u7231\u7684\u52a8\u6f2b\u98ce\u683c\u7684\u5973\u5b69\u8d70\u8def\u3002"} +{"id": "0002296", "video_name": "28a298e9-0630-5587-ad03-e9e93c6d571d", "text": "\u6210\u5343\u4e0a\u4e07\u53f0\u8ba1\u7b97\u673a\u7ec4\u6210\u4e86\u4e92\u8054\u7f51\u3002"} +{"id": "0002297", "video_name": "28b48887-9594-5475-a435-c6b72efd79b1", "text": "\u4e00\u4e2a\u60ca\u4eba\u7684\u65e0\u4eba\u673a\u955c\u5934\u62cd\u6444\u4e86\u57c3\u83f2\u5c14\u94c1\u5854\uff0c\u5e76\u8fdb\u884c\u4e864k\u76843D\u6e32\u67d3\u3002"} +{"id": "0002298", "video_name": "28b5db43-8a2f-5a39-b4e3-7e4bd0a17b7e", "text": "\u8611\u83c7\u4e91\u4ece\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u5347\u8d77\u3002"} +{"id": "0002299", "video_name": "28b9e5d1-1d3f-5990-b38d-c3d0a5430c78", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e00\u4e2a\u5de8\u5927\u7684\u5a01\u4e25\u7684\u9cb8\u9c7c\u5728\u6df1\u6d77\u4e2d\u6e38\u52a8\uff0c\u4ece\u6c34\u9762\u4e0a\u53d1\u51fa\u5149\u8292\uff0c\u7ed9\u4eba\u4e00\u79cd\u7a7a"} +{"id": "0002300", "video_name": "28bb241d-2359-5ae9-961d-70fe32d06867", "text": "\u7c89\u8272\u5c0f\u9a6c\u6b63\u5728\u5455\u5410\u7740\u5f69\u8679\u3002"} +{"id": "0002301", "video_name": "28bb48fa-acb1-538f-9194-6d569090d9ee", "text": "\u5728\u672a\u6765\u4e3b\u4e49\u573a\u666f\u4e2d\u521b\u9020\u4e00\u4e2a\u5f39\u94a2\u7434\u7684\u7537\u4eba\u3002"} +{"id": "0002302", "video_name": "28c0a077-c3c6-5d0c-a072-621726c460e0", "text": "\u63d2\u56fe\u98ce\u683c\u7684\u5355\u4e2a\u706b\u7130\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "0002303", "video_name": "28c1f5bc-82ac-5204-95e2-e2d0b402f1be", "text": "\u6c99\u6f20\u4e2d\u7684\u6c99\u4e18\u591c\u665a\uff0c\u6709\u661f\u7a7a\u548c\u843d\u96ea\u3002"} +{"id": "0002304", "video_name": "28c2d92d-cac0-5e03-91b4-66cc76d05ac0", "text": "\u91d1\u53d1\u5973\u5b50\u5728\u7535\u5f71\u300a\u666e\u7f57\u7c73\u4fee\u65af\u300b\u4e2d\u9a7e\u9a76\u4e00\u8258\u57fa\u4e8e\u8239\u8231\u63a7\u5236\u7684\u592a\u7a7a\u98de\u8239\u3002"} +{"id": "0002305", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "\u4e00\u8f86\u8b66\u8f66\u8ddf\u968f\u7740\u4e00\u8f86\u60ac\u6d6e\u8fd0\u52a8\u6c7d\u8f66\u5728\u5ce1\u8c37\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u3002\u79d1\u5e7b\u3002\u8d5b\u535a\u670b\u514b"} +{"id": "0002306", "video_name": "28d3b634-95d9-5882-9fc1-57cc2af53f94", "text": "Luna\uff0c\u4e00\u4f4d\u7559\u7740\u9ed1\u8272\u5934\u53d1\u548c\u597d\u5947\u7b11\u5bb9\u7684\u5973\u5b69\uff0c\u5728\u5979\u5bb6\u9601\u697c\u91cc\u53d1\u73b0\u4e86\u4e00\u628a\u53e4\u8001\u95ea\u4eae\u7684\u94a5\u5319"} +{"id": "0002307", "video_name": "28d9f3a8-26f5-5038-b2e8-253b3264da95", "text": "\u4e00\u4e2a30\u5c81\u7684\u7537\u4eba\u5728\u6d77\u6ee9\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u6563\u6b65\uff0c\u508d\u665a\u7684\u5149\u7ebf\u4e0b\uff0c\u65e5\u843d\u65f6\u5206\uff0c4K\u3001\u9ad8\u6e05\u3001\u903c\u771f"} +{"id": "0002308", "video_name": "28e34ab5-3d29-5eae-8326-9d37dab33180", "text": "\u5728\u767d\u8272\u5706\u5708\u4e0a\uff0c\u6709\u5956\u676f\u6210\u5c31\uff0c\u9ed1\u767d\u914d\u8272\u3002"} +{"id": "0002309", "video_name": "28e3a9f1-6057-5e08-b496-cfea3bc44700", "text": "Valorant\u7cbe\u5f69\u65f6\u523b8k 2000\u5e27\u6bcf\u79d2\u6240\u6709\u79fb\u52a8\u3002"} +{"id": "0002310", "video_name": "28e8d579-4a46-5db3-841d-4ad59df4d4cc", "text": "\u79d1\u5e7b\u7535\u5f71\u4e2d\u5b87\u5b99\u98de\u8239\u4e0a\u7535\u8111\u5c4f\u5e55\u7684\u6781\u9650\u8fd1\u666f\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u7167\u660e\uff0c\u9ad8\u9ed1\u70b9\uff0c\u5355\u8272\u8c03\u989c\u8272\u3002"} +{"id": "0002311", "video_name": "28ecd942-2ecc-5907-b5a3-6cfaa6a7dbc1", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u5728\u6cf3\u6c60\u6d3e\u5bf9\u4e0a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8df3\u821e\u7684\u5438\u5f15\u4eba\u7684\u5e74\u8f7b\u9ed1\u4eba\u5c11\u5973\u3002"} +{"id": "0002312", "video_name": "28f0183d-afcd-5b7c-9af5-fac8f4aa0d7d", "text": "\u4e24\u4f4d\u5f3a\u5927\u6cd5\u5e08\u5728\u620f\u5267\u6027\u7684\u73af\u5883\u4e2d\u5c55\u5f00\u53f2\u8bd7\u822c\u7684\u51b3\u6597\u3002\u7b2c\u4e00\u4f4d\u6cd5\u5e08\u662f\u4e2d\u4e1c\u88d4\u7537\u6027\uff0c\u638c"} +{"id": "0002313", "video_name": "28fbde91-6622-595e-9d96-f1b2f7e8a1b3", "text": "\u7cbe\u795e\u7ad9\u5728\u575f\u5893\u91cc\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002\n\nSource sentence: The moon shone brightly in the night sky, casting an ethereal glow over"} +{"id": "0002314", "video_name": "28fd05cb-a2dc-5335-b83e-5cabbc8391e0", "text": "\u7ea2\u8272\u5965\u8feaRS\u6cbf\u7740\u9053\u8def\u884c\u9a76\u3002"} +{"id": "0002315", "video_name": "2903310e-2158-5ad0-9918-2739e82291c2", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u897f\u73ed\u7259\u963f\u5170\u5c71\u8c37\u8d70\u8def\uff0c\u4e00\u4e2a\u9ad8\u4e2a\u5b50\uff0c\u53e6\u4e00\u4e2a\u4e2d\u7b49\u8eab\u9ad8\u3002"} +{"id": "0002316", "video_name": "290e6f3e-09f6-57c6-a6a1-2da331685717", "text": "\u7a7a\u6c14\u4e2d\u6f02\u6d6e\u65cb\u8f6c\u7684\u795e\u5947\u6c34\u6676\uff0c\u7531\u5965\u65af\u5361\u00b7\u65bd\u83b1\u9ed8\u7684Behance\u521b\u4f5c\uff0c\u5177\u6709\u68f1\u67f1\u5f62"} +{"id": "0002317", "video_name": "290f1f17-573a-55c9-80db-17f24a5103fa", "text": "\u9752\u86d9\u58c1\u753b\u53d8\u6210\u4e86\u771f\u6b63\u7684\u5de8\u578b\u9752\u86d9\u3002"} +{"id": "0002318", "video_name": "29195791-25ee-5ecb-be79-e38c5d52b08e", "text": "\u5728\u6d77\u8fb9\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u72ec\u81ea\u5750\u7740\uff0c\u6c89\u6d78\u5728\u81ea\u5df1\u7684\u601d\u7eea\u4e2d\u3002\u5979\u4fee\u957f\u7684\u5934\u53d1\u5728\u6d77\u98ce\u4e2d\u8f7b"} +{"id": "0002319", "video_name": "2929c892-975c-509d-9a7a-6019734ea240", "text": "\u4e00\u53ea\u9ec4\u8272\u5c0f\u72d7\u548c\u4e00\u53ea\u767d\u8272\u5c0f\u732b\u5728\u8349\u576a\u4e0a\u4e00\u8d77\u73a9\u3002"} +{"id": "0002320", "video_name": "292cd963-df52-52ee-b9c5-b1b3079c765e", "text": "\u5c06\u4f20\u8bf4\u4e2d\u7684\u5143\u7d20\u5982\u50e7\u4fa3\u3001\u6076\u9b54\u548c\u5de8\u5927\u7684\u4e66\u7c4d\u878d\u5408\u5728\u4e00\u8d77\uff0c\u5f62\u6210\u795e\u79d8\u548c\u5145\u6ee1\u8bf1\u60d1\u529b"} +{"id": "0002321", "video_name": "29333a0f-b0fe-5da6-9d47-3d6e64ddea1d", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u89c2\u770b\u661f\u7a7a\u591c\u666f\uff0c\u6709\u5982\u7535\u5f71\u822c\u3002"} +{"id": "0002322", "video_name": "293811ee-43d4-50d9-83d8-09b6f61c0d98", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u7740\u79cb\u5b63\u67ab\u53f6\u98d8\u821e\uff0c\u7f8e\u4e3d\u7684\u65c1\u906e\u666e\u5973\u5b69\u5c3c\u9c81\u00b7\u5df4\u5409\u74e6\u6f2b\u6b65\u5728"} +{"id": "0002323", "video_name": "293aa100-251a-5d75-a240-7a13d25a4909", "text": "\u4e24\u4e2a\u5973\u4eba\u5728\u8857\u5e02\u6253\u67b6\u3002"} +{"id": "0002324", "video_name": "294b5f87-a253-565e-873c-e2a0160a1607", "text": "\u4e00\u5f20\u7167\u7247\u7528\u4e8e\u8336\u53f6\u8d38\u6613\u516c\u53f8\u7684\u5934\u50cf\u7167\u7247\u3002"} +{"id": "0002325", "video_name": "29539a8e-91d5-562a-a330-d2e7f7ed1e81", "text": "\u751f\u6210\u4e00\u5f20\u5728\u6df1\u96ea\u5c71\u4e2d\u51a5\u60f3\u7684\u808c\u8089\u7537\u5b50\u7684\u56fe\u50cf\u3002"} +{"id": "0002326", "video_name": "2958c07c-2961-5451-9acd-aa11120f4919", "text": "\u5361\u901a\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u4e00\u573a\u6fc0\u70c8\u7684\u6bd4\u8d5b\u4e2d\u8bd5\u56fe\u8fdb\u7403\uff0c\u4f46\u672a\u80fd\u5f97\u5206\uff0c\u7136\u540e\u5931\u671b\u5730\u8d70\u5f00\u4e86\u3002"} +{"id": "0002327", "video_name": "295ce37b-9af9-571f-9797-612c220d7564", "text": "\u5728\u5bd2\u51b7\u7684\u591c\u665a\uff0c\u4e00\u4f4d\u8001\u4eba\u72ec\u81ea\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "0002328", "video_name": "2974206d-ea45-5d05-93e4-f565aabe5723", "text": "\u72ee\u5b50\u8bd5\u56fe\u6355\u6349\u8001\u9f20\u7684\u89c6\u9891\uff0c\u6ca1\u6709\u6a21\u7cca\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "0002329", "video_name": "297af6bf-4bc8-5176-a5fe-958abb136228", "text": "\u8fea\u65af\u5c3c\u822c\u771f\u5b9e\u76843D\u52a8\u753b\u3002\u5c45\u4f4f\u5728\u8fd9\u7247\u571f\u5730\u4e0a\u7684\u5c0f\u77ee\u4eba\u4eec\uff0c\u8499\u5947\u91d1\u3002"} +{"id": "0002330", "video_name": "29829b0e-6846-5ef3-863b-aceba710ff8b", "text": "\u4e00\u53ea\u53ef\u6015\u7684\u5de8\u4eba\u6b63\u5728\u5411\u6d1e\u7a74\u91cc\u7684\u5b69\u5b50\u9760\u8fd1\uff0c\u5b83\u7684\u811a\u6b65\u58f0\u8d8a\u6765\u8d8a\u8fd1\u3002"} +{"id": "0002331", "video_name": "298a70d9-c4b1-5330-997e-460425b4f285", "text": "\u585e\u7f2a\u5c14\u00b7\u6770\u514b\u900a\u5728\u529e\u516c\u573a\u6240\u4e0e\u653f\u5e9c\u5b98\u5458\u4ea4\u8c08\u3002"} +{"id": "0002332", "video_name": "298a8ef8-c96e-5c40-96ce-5a7e22e35dde", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u901a\u8fc7\u6570\u5b57\u6a21\u5f0f\u8fdb\u884c\u8054\u76df\u8425\u9500\u3002"} +{"id": "0002333", "video_name": "299057d7-4d17-52ff-ad61-9e7e14901eba", "text": "\u4fe1\u606f\uff1a\u8fd9\u662f\u4e00\u4e2a\u4ecb\u4e8e\u7a7a\u95f4\u4e4b\u95f4\u7684\u8d70\u5eca\uff0c\u8ba9\u4eba\u6bdb\u9aa8\u609a\u7136\uff0c\u611f\u5230\u4e0d\u5b89\u3001\u5947\u602a\uff0c\u5145\u6ee1\u8d85\u73b0\u5b9e\u4e3b\u4e49\u548c"} +{"id": "0002334", "video_name": "2992d03b-b141-5455-a1d5-7ec083b2d18b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u975e\u88d4\u7f8e\u56fd\u5973\u6027\u7ad9\u5728\u73b0\u4ee3\u7535\u68af\u95e8\u53e3\u70b9\u71c3\u4e86\u4e00\u652f\u9999\u70df\u3002\u5979\u7a7f\u7740\u7070\u8272\u8fd0\u52a8\u88e4\u548c"} +{"id": "0002335", "video_name": "299837a2-944f-5dcd-a2df-3886282eaf69", "text": "\u6811\u7684\u79cd\u5b50\u4ece\u6781\u7b80\u4e3b\u4e49\u7684\u5927\u8111\u4e2d\u751f\u957f\uff0c\u67d4\u548c\u7684\u8272\u5f69\u3002"} +{"id": "0002336", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "\u6211\u4eec\u770b\u5230\u4e00\u4e2a\u6e38\u7267\u6c11\u7a7f\u8fc7\u6c99\u6f20\uff0c\u4ece\u5de6\u5230\u53f3\uff0c\u5934\u9876\u7167\u8000\u7740\u660e\u4eae\u7684\u592a\u9633\u3002"} +{"id": "0002337", "video_name": "29a588c9-a548-570a-a2e0-54975a98d369", "text": "\u7ea6\u7ff0\u5199\u7ed9\u827e\u7c73\u8389\u7684\u771f\u631a\u4fe1\u51fd\u3002"} +{"id": "0002338", "video_name": "29a68247-469a-5581-94b0-c08815c633b8", "text": "\u827e\u739b\u72ec\u81ea\u5750\u5728\u623f\u95f4\u91cc\uff0c\u795e\u60c5\u5fe7\u90c1\u5b64\u72ec\u3002"} +{"id": "0002339", "video_name": "29a8b538-04e6-54de-ab12-9a6b0be4fd68", "text": "\u53d8\u538b\u5668\u662f\u4e00\u79cd\u9759\u6001\u8bbe\u5907\uff0c\u5b83\u53ef\u4ee5\u5728\u4e0d\u6539\u53d8\u9891\u7387\u7684\u60c5\u51b5\u4e0b\u5c06\u7535\u529b\u4ece\u4e00\u4e2a\u7535\u8def\u4f20\u9012\u5230\u53e6\u4e00\u4e2a\u7535\u8def\u3002\u5b83\u7684\u5de5\u4f5c\u539f"} +{"id": "0002340", "video_name": "29b85214-4577-5e47-8cd7-88c6db8e516f", "text": "\u80f8\u7f69\u548c\u4e01\u5b57\u88e4\uff0c\u9690\u5f62\u5973\u4eba\u6f02\u6d6e\u8df3\u821e\uff0c8K\u3002"} +{"id": "0002341", "video_name": "29bc4250-559a-561c-93f7-6fa0355fe135", "text": "\u8fd9\u5e45\u753b\u9762\u5c55\u793a\u4e86\u591c\u665a\u7011\u5e03\u7684\u666f\u8c61\uff0c\u8fd8\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u8fd9\u4e2a\u7011\u5e03\u524d\u8868\u6f14\u3002"} +{"id": "0002342", "video_name": "29c27e36-62d5-5411-b6ad-f4835a129449", "text": "\u82f1\u6587\u53e5\u5b50\uff1aThe hero say hi on the 2nd floor of the butiful building\u3002\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u5728\u7f8e\u4e3d\u7684\u5efa\u7b51\u7269\u4e8c\u697c\u6253\u62db\u547c"} +{"id": "0002343", "video_name": "29c569e4-1614-5f19-8f93-9344b202ca45", "text": "\u70f9\u996a\u8005\u7ad9\u5728\u53a8\u623f\u91cc\uff0c\u7528\u5de7\u514b\u529b\u7247\u70b9\u7f00\u9999\u8349\u86cb\u7cd5\u3002"} +{"id": "0002344", "video_name": "29ccaf5b-d598-52c5-b25f-7c6f73895d84", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u753b\u89d2\u8272\u7ad9\u5728\u4e00\u4e2a\u68c9\u82b1\u7cd6\u673a\u65c1\u8fb9\u3002"} +{"id": "0002345", "video_name": "29d178ad-b2c1-5511-be50-b74be07daaba", "text": "\u751f\u6210\u4e00\u4e2a\u573a\u666f\u63cf\u8ff0\uff0c\u751f\u52a8\u63cf\u7ed8\u5185\u7f57\u6bd5\u7e41\u534e\u7684\u8857\u9053\uff0c\u4e3a\u6545\u4e8b\u8bbe\u5b9a\u57ce\u5e02\u80cc\u666f\u3002\u5305\u62ec\u4eba\u7fa4\u3001\u4ea4\u901a\u548c\u57ce\u5e02"} +{"id": "0002346", "video_name": "29d37a84-7b36-5f46-b9fb-bdfc1578ffc8", "text": "\u4e00\u6761\u901a\u5411\u6df1\u5165\u68ee\u6797\u7684\u5c0f\u8def\uff0c\u957f\u6ee1\u4e86\u8349\u6728\uff0c\u611f\u89c9\u6709\u4e9b\u53ef\u6015\uff0c4K\uff0c16.9\uff0c\u53d8\u7126\u3002"} +{"id": "0002347", "video_name": "29ddce1f-7591-585c-944e-4bb57055de69", "text": "\u642c\u5bb6\u6253\u67b6\u7684PSE\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002348", "video_name": "29deb0d4-e17e-5b98-872a-465862e6d64d", "text": "\u6c99\u6f20\u4e2d\u7684\u80e1\u6768\u6797\u91cc\u6709\u5e9e\u5927\u7684\u5916\u661f\u4eba\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u62cd\u6444\u4e8e1900\u5e74\u4ee3\u7684"} +{"id": "0002349", "video_name": "29e501cd-ec48-580a-b5d2-99225ca581ca", "text": "\u4e00\u500b\u4eba\u9032\u5165\u9053\u5947\u6311\u6230\u8005\u3002"} +{"id": "0002350", "video_name": "29e61172-f9b0-59a3-8dcc-0cc119486398", "text": "\u6b27\u6d32\u864e\u6591\u732b\uff0c\u5750\u5728\u6276\u624b\u6905\u4e0a\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7535\u5f71\u706f\u5149\uff0c\u7535\u5f71\u62cd\u6444\u3002"} +{"id": "0002351", "video_name": "29e69d9c-36a8-53a8-8d93-580489cb02e6", "text": "\u7a7f\u7740\u6821\u670d\u7684\u9ad8\u4e2d\u5b66\u751f\u6cbf\u7740\u8857\u9053\u8d70\u8def\uff0c\u4fef\u77b0\u57ce\u5e02\u3002"} +{"id": "0002352", "video_name": "29ebe042-ad39-596a-a724-68bf3aea842d", "text": "\u8377\u5170\u98ce\u8f66\u7f13\u6162\u5730\u5728\u98ce\u4e2d\u8f6c\u52a8\u3002\u80cc\u666f\u662f\u725b\u548c\u9ad8\u8349\uff0c\u524d\u666f\u968f\u98ce\u6447\u66f3\u3002\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "0002353", "video_name": "29eddbc8-ae53-569c-92d8-ce75452a29f5", "text": "\u4e00\u4e2a\u624b\u4f38\u51fa\u6765\uff0c\u4ece\u4e00\u4e2a\u65e7\u7b14\u8bb0\u672c\u4e0a\u6293\u4f4f\u4e86\u4e00\u4e2a\u68a6\u5e7b\u4e16\u754c\u91cc\u7684\u5f69\u8272\u5730\u7403\u3002"} +{"id": "0002354", "video_name": "29f1343a-8c33-53e8-8e8c-3d370b00ce56", "text": "\u4e00\u672c\u53e4\u8001\u7684\u6545\u4e8b\u4e66\u7ffb\u5f00\uff0c\u7136\u540e\u7f29\u653e\u8fdb\u5165\u53e6\u4e00\u4e2a\u89c6\u9891\u3002"} +{"id": "0002355", "video_name": "29fcfad0-9f81-5312-937b-87cf9c1d700f", "text": "\u6444\u50cf\u673a\u4ece\u4e0a\u65b9\u4fef\u89c6\uff0c\u4e00\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u8eba\u5728\u6ca5\u9752\u8def\u9762\u4e0a\uff0c\u5468\u56f4\u6709\u4eba\u5728\u8d70\u52a8\uff0c\u6709\u4e9b\u662f\u7d20\u63cf"} +{"id": "0002356", "video_name": "29fe1958-dd1a-53fe-aca6-30fac059d733", "text": "\u8bf7\u628a\u989c\u8272\u878d\u5408\u5728\u4e00\u8d77\uff0c\u4e13\u4e1a\u5730\u79fb\u52a8\u3002"} +{"id": "0002357", "video_name": "29ffa85a-a90c-5e0d-aede-51e4160bbe52", "text": "2367\u5e74\u4ece\u4e0a\u65b9\u89c2\u5bdf\u5230\u7684\u9713\u8679\u884c\u661f\u5730\u7403\u7684\u62bd\u8c61\u573a\u666f\u3002"} +{"id": "0002358", "video_name": "2a01caed-2cf8-558b-93dc-8a8fa4fb4573", "text": "\u4e00\u4f4d\u5934\u53d1\u706b\u7ea2\u3001\u773c\u775b\u84dd\u8272\u7684\u5973\u5b69\uff0c\u770b\u8d77\u6765\u6781\u5ea6\u6050\u60e7\u3002"} +{"id": "0002359", "video_name": "2a05b421-db1f-5ab3-819f-5eb824f8a152", "text": "\u4e00\u4e2a\u5b69\u5b50\u8df3\u4e0a\u4e86\u4e00\u5f20\u53cc\u5c42\u5e8a\u3002"} +{"id": "0002360", "video_name": "2a078ef1-1e0d-52ac-9db3-4afd09a7003d", "text": "\u521b\u9020\u4e00\u4e2a\u88ab\u73ca\u745a\u8986\u76d6\u7684\u6c89\u8239\u7684\u52a8\u753b\u573a\u666f\uff0c\u5468\u56f4\u6709\u597d\u5947\u7684\u9c7c\u3002"} +{"id": "0002361", "video_name": "2a0b0053-3388-525a-b990-07896a11442e", "text": "\u5f62\u8c61\u5730\u63cf\u7ed8\u51fa\u4e00\u4e2a\u7531\u76f8\u4e92\u5173\u8054\u7684\u7b97\u6cd5\u7ec4\u6210\u7684\u751f\u6001\u7cfb\u7edf\uff0c\u4ee5\u4f20\u64ad\u865a\u5047\u4fe1\u606f\u4e3a\u751f\u3002"} +{"id": "0002362", "video_name": "2a0be4d4-5d0f-56f5-8ff5-d49aaa46c839", "text": "Sparky\u8d85\u7ea7\u677e\u9f20\uff1a\u4e00\u4e2a\u5c55\u793a\u8eab\u7a7f\u5c0f\u4eae\u4e3d\u62ab\u98ce\u7684\u677e\u9f20Sparky\u52c7\u6562\u4e14\u51c6\u5907\u597d\u5192\u9669\u7684\u89c6\u9891\u3002"} +{"id": "0002363", "video_name": "2a10c020-d41f-5cfa-a10b-8a6feebd4ee5", "text": "\u5728\u5b5f\u4e70\u7e41\u534e\u7684\u8857\u9053\u4e0a\uff0c\u4e00\u4e2a\u540d\u53eb\u62c9\u6731\uff08Raju\uff09\u7684\u5e74\u8f7b\u7537\u5b69\u901a\u8fc7\u64e6\u978b\u6765\u8c0b\u751f\u3002"} +{"id": "0002364", "video_name": "2a14cc3f-1d18-58b9-8336-c236719bfb96", "text": "\u732b\u6253\u6270\u4e86\u4e24\u53ea\u5154\u5b50\u3002"} +{"id": "0002365", "video_name": "2a1be880-9037-57b5-887a-983e433d286a", "text": "\u6697\u8272\u80cc\u666f\uff0c\u5927\u9ed1\u8721\u70db\u7167\u4eae\u623f\u95f4\uff0c\u6444\u50cf\u673a\u5411\u524d\u62c9\u8fd1\u3002"} +{"id": "0002366", "video_name": "2a204a46-7d52-5da0-a986-b58e991eab30", "text": "\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u4e91\u5f69\u5728\u5929\u7a7a\u4e2d\u6ed1\u8fc7\uff0c\u82b1\u74e3\u98d8\u843d\u3002"} +{"id": "0002367", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "\u5e26\u6211\u4eec\u56de\u5230\u4ed6\u751f\u547d\u7684\u6700\u540e\u65f6\u523b\u3002"} +{"id": "0002368", "video_name": "2a2871b5-afa4-504f-a0c4-af01d164c45d", "text": "\u5927\u7329\u7329\u7528\u624b\u81c2\u6572\u6253\u5730\u9762\uff0c\u52a8\u753b\uff0c4k\uff0c\u52a8\u6001\u3002"} +{"id": "0002369", "video_name": "2a2b7101-d0ae-53f0-9261-4d71b50f3cfd", "text": "\u9a91\u6469\u6258\u8f66\u7684\u7537\u5b50\u4ee5\u9ad8\u901f\u649e\u5411\u5899\u58c1\uff0c\u7206\u70b8\uff0c\u788e\u7247\u56db\u6563\u3002"} +{"id": "0002370", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "\u4e00\u4f4d\u9762\u5305\u914d\u9001\u5458\u5c06\u4e24\u6253\u82f1\u96c4\u9762\u5305\u9001\u5230\u4e54\u6cbb\u4e9a\u5dde\u9ea6\u8fea\u900a\u5e02\u4e2d\u5fc3\u7684\u4e00\u5bb6\u540d\u4e3aMadison Produce\u7684\u719f\u98df\u5e97\u3002"} +{"id": "0002371", "video_name": "2a35b685-dd0d-54de-9fd3-fd181ed53d48", "text": "\u60ca\u4eba\u7684\u9ad8\u6e05\u89c6\u9891\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "0002372", "video_name": "2a3e6eb4-621e-5849-975d-38b3783b42f5", "text": "\u8036\u7a23\u7b11\u7740\uff0c\u624b\u6307\u6309\u5728\u78c5\u79e4\u4e0a\uff0c\u6709\u4eba\u6b63\u5728\u79f0\u91cd\u3002"} +{"id": "0002373", "video_name": "2a49bbc7-bc1a-5878-99d6-87fc2c305e38", "text": "\u4e00\u4f4d\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u82f1\u4fca\u7537\u5b50\u5728\u65e5\u672c\u52a8\u753b\u4e2d\u73a9\u7535\u8111\u6e38\u620f\u3002"} +{"id": "0002374", "video_name": "2a4d1bb5-a7a5-59dc-a6e0-3deb4fb8e8c5", "text": "\u5c55\u793aTravis Scott\u8bbe\u8ba1\u7684\u4ed9\u4eba\u638c\u6770\u514b\u8fd0\u52a8\u978b\u3002"} +{"id": "0002375", "video_name": "2a515db6-54a3-57a1-ba26-ae905e022c05", "text": "\u4e00\u4e2a\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\uff0c\u5411\u4e0a\u4ef0\u671b\u7740\u5979\u7684\u4e00\u6761\u817f\u7684\u6570\u5b57\u827a\u672f\u3002"} +{"id": "0002376", "video_name": "2a590035-ce12-5bd7-b316-58e220cf2aa6", "text": "\u5979\u7684\u817f\u6162\u6162\u5730\u81ea\u7136\u5730\u5411\u524d\u79fb\u52a8\uff0c\u5979\u7684\u5934\u53d1\u98d8\u52a8\uff0c\u5979\u7684\u624b\u79fb\u52a8\uff0c\u5979\u7684\u773c\u775b\u63a5\u89e6\uff0c\u5979"} +{"id": "0002377", "video_name": "2a5e6a65-b5ea-5bde-8eac-aff2516e0ebf", "text": "\u4e00\u4e2a\u5728\u5e7b\u60f3\u7684\u4e30\u5bcc\u591a\u5f69\u7684\u68ee\u6797\u91cc\u522e\u98ce\u7684\u65e5\u5b50\u3002 \n\nSource sentence: I am excited to try the new restaurant that just opened downtown.\n\u6211\u5f88\u5174"} +{"id": "0002378", "video_name": "2a61bf27-5927-5e30-9ff7-91e9c99601d9", "text": "\u4e00\u79cd\u904d\u5386\u6a21\u62df\u7684\u661f\u578b\u641c\u7d22\u7b97\u6cd5\u3002"} +{"id": "0002379", "video_name": "2a66ad95-1b23-5b2f-9662-6e2e8a1aae93", "text": "\u529e\u516c\u5ba4\u7684\u7537\u5b50\u547c\u5438\uff0c\u5c55\u73b0\u4e86\u6bcf\u4e2a\u808c\u8089\u7684\u51c6\u786e\u8fd0\u52a8\u3002"} +{"id": "0002380", "video_name": "2a683dc4-0781-55dd-b398-cc07661852b4", "text": "\u8bf4\u6cd5\uff1aRapper Gone Fludd \u505a\u68c9\u82b1\u7cd6\u518d\u5403\u6389\u5b83\u3002"} +{"id": "0002381", "video_name": "2a6996b6-0394-5a54-b8de-e7d0989cda25", "text": "\u9ed1\u6697\u7b3c\u7f69\u7740\uff0c\u53ea\u6709\u4e00\u4e9b\u6708\u5149\u900f\u8fc7\u7834\u70c2\u7684\u7a97\u5e18\u6e17\u5165\u3002"} +{"id": "0002382", "video_name": "2a756c95-cf71-5ee0-8e90-26caf7bbd2eb", "text": "\u4e00\u4e2a\u8c6a\u534e\u7684\u8f66\u5e93\uff0c\u91cc\u9762\u6709\u8fd0\u52a8\u8f66\u548c\u4f4e\u5e95\u76d8\u8f66\u3002"} +{"id": "0002383", "video_name": "2a77dca6-2963-509e-a6ae-13e49f50fbdd", "text": "\u62c9\u65af\u7ef4\u52a0\u65af\u7403\u4e2d\u7684\u5730\u7403\u3002"} +{"id": "0002384", "video_name": "2a7ef9bd-cfe2-507a-8973-5aba2d0ef6bb", "text": "\uff0c\u5927\u5bb6\u597d\uff0c\u6211\u662fXXX\u3002\n\nSource sentence: Can you please send me the document by email?"} +{"id": "0002385", "video_name": "2a7f93b3-d9eb-53d0-bb38-b5747da7d327", "text": "\u5bfc\u6f14\u6b63\u5728\u6d4b\u8bd5\u865a\u62df\u6444\u50cf\u673a\u4e0a\u7684\u5730\u6807\u7279\u5f81\uff0c\u4ee5\u4ece\u591a\u4e2a\u89d2\u5ea6\u53ef\u89c6\u53163D\u573a\u666f\u548c\u73af\u5883\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002386", "video_name": "2a860d39-63cb-5786-a5bb-bfc882936a69", "text": "\u4e00\u6b3e\u9152\u54278\u4f4d\u5e73\u53f0\u89c6\u9891\u6e38\u620f\uff0c\u4f60\u5728\u6e38\u620f\u4e2d\u4f5c\u4e3a\u8c03\u9152\u5e08\u4e3a\u8bb8\u591a\u996e\u54c1\u670d\u52a1\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c"} +{"id": "0002387", "video_name": "2a87bade-25cc-5ed5-befa-060ba144ea35", "text": "\u4e00\u7fa4\u5b66\u4e60\u6280\u672f\u5199\u4f5c\u7684\u5b66\u751f\u3002"} +{"id": "0002388", "video_name": "2a8e9e6c-670d-58f2-a623-653c1e53140f", "text": "\u65af\u5766\u00b7\u5e03\u62c9\u514b\u6d77\u5947\u4ee5\u5feb\u8282\u594f\u5b9e\u9a8c\u7535\u5f71\u8457\u540d\u3002"} +{"id": "0002389", "video_name": "2a9080d1-fa7f-5448-801b-a953fed1acdf", "text": "\u5c3c\u6cca\u5c14\u6700\u9ad8\u5c71\u8109\u4e0a\u7684\u795e\u79d8\u6751\u5e84\uff0c\u66b4\u98ce\u96ea\uff0c\u771f\u5b9e\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "0002390", "video_name": "2a908953-c784-5737-bc80-844a829d5c6f", "text": "\u5df4\u897f\u9009\u624b\u96e8\u679c\u00b7\u5361\u5c14\u5fb7\u62c9\u8bfa\u5728\u4e1c\u4eac\u4e0e\u9a6c\u9f99\u6253\u4e52\u4e53\u7403\u3002"} +{"id": "0002391", "video_name": "2a9278f0-4c6d-5a49-85b5-ab994374d693", "text": "\u4eba\u4eec\u5728\u665a\u4e0a\u5531\u5361\u62c9OK\u3001\u8df3\u821e\u548c\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "0002392", "video_name": "2a936afc-7dbe-5365-bd97-19e1d835072f", "text": "\u5973\u4eba\u5728\u8bfb\u5854\u7f57\u724c\u6f2b\u753b\u3002"} +{"id": "0002393", "video_name": "2a9859fc-dd05-5136-aa20-9820d83df2fd", "text": "\u7cbe\u7075\u60ca\u559c\u800c\u5feb\u4e50\u7684\u795e\u60c5"} +{"id": "0002394", "video_name": "2aa4b3b8-b227-5a69-a770-70f121e8915c", "text": "\u53ef\u7231\u7684\u673a\u5668\u4eba\u98de\u8fc7\u5929\u7a7a\uff0c\u4ece\u706b\u7bad\u52a9\u63a8\u5668\u7559\u4e0b\u55b7\u6c14\u6d41\u3002"} +{"id": "0002395", "video_name": "2aa5ec50-b273-5f22-9610-247bab8be874", "text": "\u53f6\u5f0f\u7684\u526a\u8f91\u6846\u67b6\uff0c\u4e00\u4e2a\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u8138\u90e8\u4e0d\u53ef\u89c1\u7684\u7537\u5b50\u3002"} +{"id": "0002396", "video_name": "2aa5fc47-a806-55af-bbd2-a4cdc5186d0c", "text": "\u4e24\u540d\u5b87\u822a\u5458\u7ed5\u6708\u7403\u98de\u884c\uff0c\u661f\u661f\u5728\u8eab\u540e\u843d\u4e0b\u3002"} +{"id": "0002397", "video_name": "2aa71c1b-c414-5320-85ed-59ddcfe2c662", "text": "\u7c73\u59ae\u66fe\u7ecf\u4f4f\u8fc7\u7684\u623f\u5b50\uff0c\u73b0\u5728\u7a7a\u8361\u8361\u7684\uff0c\u8352\u51c9\u65e0\u4eba\u3002"} +{"id": "0002398", "video_name": "2aa9514b-bb6c-58c3-95a6-dfe91ad4cb62", "text": "\u9e1f\u513f\u5728\u53fd\u53fd\u55b3\u55b3\u5730\u7b51\u5de2\u3002"} +{"id": "0002399", "video_name": "2aac13d1-e4e6-5c46-b8ec-d9fe06f9671a", "text": "\u84dd\u8272\u3001\u9ec4\u8272\u548c\u68d5\u8272\u7684\u6e7f\u6c34\u5f69\u88ab\u767d\u7eb8\u5438\u6536\uff0c\u5f62\u6210\u67ab\u53f6\u56fe\u50cf\uff0c\u767d\u8272\u80cc\u666f\uff0c\u9759\u6001\u4ece\u4e0a\u65b9"} +{"id": "0002400", "video_name": "2ab1fea8-5c0c-5d8d-9226-a24ce9a0f7ed", "text": "\u5728\u6d77\u5e95\uff0c\u963f\u4f69\u514b\u65af\u5f00\u59cb\u611f\u5230\u4e00\u79cd\u4e0d\u5b89\u7684\u611f\u89c9\u3002"} +{"id": "0002401", "video_name": "2ab38ec1-a5ea-5dac-8eb5-fc9101a64aa5", "text": "\u5e0c\u814a\uff0c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\uff0c\u8d85\u5199\u5b9e\uff0c\u9ad8\u80fd\u6e32\u67d3\uff0c\u5ef6\u65f6\u6444\u5f71\u3002"} +{"id": "0002402", "video_name": "2ab78d3d-ec2a-5669-a691-148c55aa7424", "text": "\u6d3b\u52a8\u7684\uff0c\u4e24\u4e2a\u4eba\u7684\u5934\u53d1\u52a8\uff0c\u773c\u775b\u6643\u52a8\u3002"} +{"id": "0002403", "video_name": "2ab91dd4-ccf6-500b-a7eb-70a05000a4e1", "text": "\u516c\u56ed\u91cc\u7684\u5973\u5b69\u548c\u4ed9\u5973\u52a8\u753b\u5361\u901a\u3002"} +{"id": "0002404", "video_name": "2abb81bb-489d-57f4-a4ab-ac5879c50bc1", "text": "\u4eba\u4ece\u706b\u8f66\u4e0a\u8df3\u4e0b\u6765\uff0c\u8dcc\u843d\u5728\u4e00\u5ea7\u6865\u4e0a\u3002"} +{"id": "0002405", "video_name": "2ac28bc2-77fe-5653-8fbf-58af33460bb3", "text": "\u4e00\u987f\u7f8e\u4e3d\u7684\u9910\u684c\u665a\u9910\uff0c\u70b9\u7740\u8721\u70db\u548c\u9c9c\u82b1\u3002"} +{"id": "0002406", "video_name": "2acb01fd-96e5-58e9-a8ea-ddf9c791b2ca", "text": "\u7167\u7247\uff0cL USM\uff0cVelvia\uff08\u96e8\u679c\u00b7\u7ef4\u6587\uff09\u5403\u610f\u5927\u5229\u9762\uff0c\uff08\u52a8\u6001\u6784\u56fe\uff0c\u52a8\u6001\u573a\u666f1.025\uff09\uff0c\u9cc4\u9c7c\u76ae\u6846"} +{"id": "0002407", "video_name": "2ad23428-3151-5d71-adee-e9141fad5300", "text": "\u4e00\u53ea\u767d\u8272\u957f\u6bdb\u5947\u74e6\u74e6\u6b22\u5feb\u5730\u8df3\u8fc7\u7eff\u8349\u5730\uff0c\u8ffd\u9010\u53e6\u4e00\u53ea\u68d5\u8272\u77ed\u6bdb\u5947"} +{"id": "0002408", "video_name": "2ad4596b-974a-5cb2-b0e7-f52367e6c7ac", "text": "\u5728\u4e2d\u95f4\u6302\u7740\u4e00\u5f20\u7a7a\u767d\u7684\u7eb8\uff0c\u5361\u901a\u6837\u5f0f\uff0c\u65c1\u8fb9\u6709\u4e00\u652f\u94c5\u7b14\u3002"} +{"id": "0002409", "video_name": "2ad91780-9e72-5003-aab0-f840ecee9fb7", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u706b\u8f66\u8fc5\u901f\u671d\u7740\u6444\u50cf\u673a\u51b2\u6765\u3002"} +{"id": "0002410", "video_name": "2adbee19-e1c9-5bee-8107-61f18357b816", "text": "\u745e\u58eb\u56fd\u5bb6\u516c\u56ed\uff0c\u5c71\u4e0a\u5f00\u6ee1\u4e86\u82b1\uff0c\u4f60\u53ef\u4ee5\u4eab\u53d7\u4e00\u4e2a\u8f7b\u677e\u3001\u9690\u853d\u7684\u5047\u671f\u3002"} +{"id": "0002411", "video_name": "2adbf766-1435-5b9b-9dab-a7e03468f5e1", "text": "\u5e0c\u814a\u795e\u8bdd\u4e2d\u7684\u4e0d\u673d\u82f1\u96c4"} +{"id": "0002412", "video_name": "2ae08d15-b725-5a4d-8f06-04bc545b9f4f", "text": "\u4e00\u9762\u5370\u6709\u7f8e\u56fd\u56fd\u65d7\u56fe\u6848\u7684\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "0002413", "video_name": "2ae381e8-a440-5020-840a-023eb12570a6", "text": "\u592a\u9633\u5403\u9999\u80a0\u6253\u5f00\u4e86\u4e00\u6247\u95e8\u3002"} +{"id": "0002414", "video_name": "2aea1903-d0ad-5c40-b07f-714f35e58f3b", "text": "\u4e94\u5341\u5e74\u4ee3\u7684\u53e4\u5178\u548c\u73b0\u4ee3\u5efa\u7b51\u4ea4\u7ec7\u7684\u7e41\u534e\u57ce\u5e02\u7684\u7eaa\u5f55\u7247\u98ce\u683c\u89c6\u9891\u3002"} +{"id": "0002415", "video_name": "2aedb713-bfd5-5a17-9593-4da826c24a19", "text": "\u6df7\u5408\u4e86\u5f69\u8679\u7684\u6bcf\u79cd\u989c\u8272\u7684\u89c6\u9891\uff0c\u8ba9\u4eba\u5934\u6655\u7684\u89c6\u9891\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "0002416", "video_name": "2aef0051-1af8-5f72-bd39-c27cbc8c6151", "text": "\u6d77\u6e7e\u8fb9\u805a\u96c6\u4e86\u8bb8\u591a\u9e1f\u513f\uff0c\u5176\u4e2d\u4e00\u4e2a\u9e1f\u513f\u5728\u5176\u4ed6\u9e1f\u513f\u60ca\u6115\u7684\u6ce8\u89c6\u4e0b\u7206\u70b8\u4e86\u3002"} +{"id": "0002417", "video_name": "2af3a94b-93a5-5d1d-a200-94b103332700", "text": "\u6c34\u4e2d\u6709\u591a\u4e2a\u5fc3\u5f62\u8ff7\u5e7b\u56fe\u6848\uff0c\u6709\u706b\u548c\u571f\uff0c\u98ce\u548c\u96fe\u3002"} +{"id": "0002418", "video_name": "2af71c94-8f2f-59b2-850e-2995f53d67e3", "text": "\u65cb\u8f6c\u7740\u6ee1\u8f7d\u5b69\u5b50\u4eec\u7684\u8001\u5f0f\u6728\u9a6c\u3002"} +{"id": "0002419", "video_name": "2aff0df2-cb57-5bcf-a8e2-36112d45f43f", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5728\u4f0a\u7538\u56ed\uff0c\u86c7\u5c06\u7981\u679c\u7ed9\u4e86\u590f\u5a03\uff0c\u8fd9\u573a\u666f\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0002420", "video_name": "2b0790a9-c33b-5186-bf07-712f4ce7f19b", "text": "\u9634\u90c1\u6c89\u95f7\u7684\u5893\u5730\uff0c\u72ec\u81ea\u4e00\u4eba\u8eab\u62ab\u6597\u7bf7\u548c\u9ad8\u9876\u793c\u5e3d\u7a7f\u8fc7\u5893\u7891\uff0c\u591c\u665a\uff0c\u6ee1\u6708"} +{"id": "0002421", "video_name": "2b0be789-7298-5cd8-ae27-ad845edf5dfd", "text": "\u7f57\u4f2f\u7279\uff0c\u4e00\u4f4d\u524d\u4fa6\u63a2\uff0c\u8bd5\u56fe\u5fd8\u8bb0\u4ed6\u7684\u635f\u5931\u548c\u9519\u8bef\u3002"} +{"id": "0002422", "video_name": "2b0ddf53-4399-5140-82fb-ac6af6d58119", "text": "\u77ed\u8dd1\u9009\u624b\u7ad9\u5728\u8d77\u8dd1\u7ebf\u4e0a\uff0c\u51c6\u5907\u5f00\u59cb\u6bd4\u8d5b\u3002"} +{"id": "0002423", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "\u73bb\u7483\u7897\uff0c\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u88c5\u6ee1\u5de7\u514b\u529b\u5757\u878d\u5316\u6210\u6db2\u4f53\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u90a3\u53ea"} +{"id": "0002424", "video_name": "2b1e411e-c63e-578a-9214-1ca5cb6ffb0d", "text": "\u8499\u5a1c\u4e3d\u838e\u5728\u4e00\u4e2a\u623f\u95f4\u91cc\u8d70\u7740\uff0c\u623f\u95f4\u91cc\u6709\u4e00\u628a\u6905\u5b50\u3002 \n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u95ee"} +{"id": "0002425", "video_name": "2b1e507c-8d35-544c-817e-9aa4cb700f75", "text": "\u4e24\u53ea\u5c0f\u9e21\u76843D\u5361\u901a\u52a8\u753b\u89c6\u9891\uff0c\u4e00\u53ea\u5c0f\u9e21\u5728\u505a\u996d\uff0c\u53e6\u4e00\u53ea\u5c0f\u9e21\u5750\u5728\u4ed6\u65c1\u8fb9\u3002"} +{"id": "0002426", "video_name": "2b1f0135-a998-58be-a403-d71943971556", "text": "\u4e00\u4e2a\u7d27\u5f20\u7684\u6c42\u804c\u8005\u62ff\u7740\u4e00\u4efd\u7b80\u5386\u8d70\u5411\u516c\u53f8\u7684\u95e8\u53e3\u3002"} +{"id": "0002427", "video_name": "2b20f634-f1e7-5d76-8cc3-238678ae7b56", "text": "\u6574\u9f50\u6253\u626e\u7684\u4eba\u5728\u529e\u516c\u5ba4\u91cc\u63e1\u624b\u3002"} +{"id": "0002428", "video_name": "2b212d84-fc9a-5a6f-9a67-3ada214f127d", "text": "Source sentence: 40\u5e74\u4ee3\u9f50\u67cf\u6797\u98de\u8247\u4e0a\u7684\u72c2\u6b22\u573a\u666f"} +{"id": "0002429", "video_name": "2b26f3c0-0011-5801-bc37-55731461ac05", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u6708\u7403\u6218\u573a\u4e0a\u5954\u8dd1\uff0c16\u6beb\u7c73\uff0c\u9ed1\u767d\uff0c\u5199\u5b9e\u4e3b\u4e49\u3002"} +{"id": "0002430", "video_name": "2b2ccbf1-3886-5967-a46d-c27eb3bdb7f1", "text": "\u4eba\u4eec\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\uff0c\u5927\u800c\u7a7a\u6d1e\u7684\u5b9a\u683c\u773c\u795e\uff0c\u7535\u5f71\u5f71\u7247\uff0c\u9ad8\u54c1\u8d28\uff0c\u9ad8\u7ec6\u8282\uff0c4K\uff0c\u7535\u5f71\uff0c\u7535"} +{"id": "0002431", "video_name": "2b2d5487-b4e3-5d61-a518-3183d71aa712", "text": "\u4e24\u4e2a\u4eba\u5728\u6d77\u6ee9\u4e0a\u8d70\u7740\uff0c\u770b\u7740\u72c2\u98ce\u548c\u5927\u6f6e\u6eda\u6eda\u800c\u6765\uff0c\u5f62\u6210\u4e86\u4e00\u5e45\u7eda\u4e3d\u591a\u5f69\u7684\u753b\u9762\u3002"} +{"id": "0002432", "video_name": "2b320cd7-ca54-5022-8299-b2e9c83f820a", "text": "\u4e91\u5728\u5929\u7a7a\u4e2d\u98d8\u98de\u3002 (Font: \u5b8b\u4f53)"} +{"id": "0002433", "video_name": "2b333b5d-55cc-5a4f-9bb0-f5ced1be543e", "text": "\u670b\u53cb\u4eec\u72b9\u8c6b\u4e86\u4e00\u4e0b\uff0c\u4f46\u88ab\u6050\u60e7\u548c\u597d\u5947\u5fc3\u9a71\u4f7f\uff0c\u4ed6\u4eec\u8fd8\u662f\u8ddf\u7740\u5e7d\u7075\u5bfc\u6e38\u8d70\u4e86\u3002\u6050"} +{"id": "0002434", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "Source sentence: \u96c5\u52a0\u8fbe\u5efa\u7b51\u548c\u83ab\u7eb3\u65af\u7eaa\u5ff5\u7891\u4e0a\u7a7a\u7684\u6d41\u661f\u96e8"} +{"id": "0002435", "video_name": "2b416318-42f7-50ae-a50c-85e4d4310ceb", "text": "\u751f\u6210\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5f62\u8c61\uff0c\u4ee3\u8868\u521b\u65b0\u548c\u5353\u8d8a\u3002\u4f7f\u7528\u73b0\u4ee3\u5143\u7d20\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u8c03\u8272\u677f\u3002\u4ee5\u5f15\u4eba\u5165\u80dc\u7684\u65b9\u5f0f"} +{"id": "0002436", "video_name": "2b43017e-e4d5-5466-a5e8-9a9216438fa2", "text": "\u4e00\u4e2a\u9a91\u7740\u54c8\u96f7\u6234\u7ef4\u68ee\u7684\u5973\u5b69\u5728\u4e00\u6761\u8352\u51c9\u7684\u9053\u8def\u4e0a\u9a70\u9a8b\u3002"} +{"id": "0002437", "video_name": "2b448694-2a55-5096-a5de-ba5a74f2141c", "text": "X\u5148\u751f\u6162\u6162\u5b66\u4f1a\u4f7f\u7528\u8fd9\u4e2a\u8bbe\u5907\u5e76\u5f00\u59cb\u63a2\u7d22\u793e\u4ea4\u5a92\u4f53\u3002\u4ed6\u521b\u5efa\u4e86\u4e2a\u4eba\u8d44\u6599\u5e76\u5f00\u59cb\u6c89\u6d78\u5728Facebook\u3001Instagram\u548c\u5176\u4ed6\u5e73\u53f0\u4e2d"} +{"id": "0002438", "video_name": "2b4499f4-23ac-5c94-984d-7d2c357a157f", "text": "\u4e00\u53ea\u9a6f\u9e7f\u96ea\u6a47\u5728\u767d\u96ea\u7eb7\u98de\u7684\u80cc\u666f\u4e0b\u79fb\u52a8\u7684\u7535\u5f71\u80cc\u666f\u3002"} +{"id": "0002439", "video_name": "2b469278-de8e-50c6-ade0-c60327a6d505", "text": "\u4e00\u5f20\u591c\u666f\u7167\u7247\uff0c\u9ad8\u8038\u5165\u4e91\u7684\u6469\u5929\u5927\u697c\u88ab\u8302\u5bc6\u7684\u68ee\u6797\u6240\u8986\u76d6\uff0c\u65e9\u5df2\u88ab\u65f6\u95f4\u9057\u5fd8\u3002\u8fd9"} +{"id": "0002440", "video_name": "2b46c5e7-72a9-5067-bb79-dc326329bcd5", "text": "\u4f5b\u7f57\u91cc\u8fbe\u906d\u53d7\u5c0f\u884c\u661f\u649e\u51fb\uff0c\u9ad8\u5ea6\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "0002441", "video_name": "2b4d4d84-9e9f-5cda-8018-f247d6ade562", "text": "Translation: \u8389\u8389\u5728\u6e38\u6cf3\u6c60\u91cc\u505a\u4e86\u4e00\u4e2a\u4f18\u7f8e\u7684\u8df3\u6c34\u3002\u52a8\u753b\u5361\u901a"} +{"id": "0002442", "video_name": "2b4f443a-52e8-595e-a634-eecf1bad5966", "text": "\u4ed6\u5f88\u611f\u5174\u8da3\uff0c\u51b3\u5b9a\u8ddf\u7740\u5b83\u8d70\uff0c\u4ece\u4e00\u4e2a\u67d4\u8f6f\u7684\u82d4\u85d3\u77f3\u8df3\u8dc3\u5230\u53e6\u4e00\u4e2a\u3002"} +{"id": "0002443", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "Translation: \u7a7f\u7740\u7d2b\u91d1\u8272\u7684\u9ed1\u4eba\u7537\u5b50\u3002"} +{"id": "0002444", "video_name": "2b53a51c-c8fc-58f5-96e0-3a7d8223d5b0", "text": "\u4e00\u4e2a\u540d\u4e3aAAZ BATIMENT\u7684\u5efa\u7b51\u516c\u53f8\u768430\u79d2\u5e7f\u544a\u3002"} +{"id": "0002445", "video_name": "2b54f10f-150d-51a3-85d0-da35827dbf81", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u8461\u8404\u56ed\uff0c\u5f62\u72b6\u4e3aAutodesk\u7684\u6807\u5fd7\u3002"} +{"id": "0002446", "video_name": "2b577976-4333-599f-b18a-f41da470397a", "text": "\u52a8\u6f2b\u89d2\u8272\u4f7f\u7528\u52a8\u6f2b\u624b\u673a\u5e94\u7528\u7a0b\u5e8f\u63a5\u7535\u8bdd\u3002"} +{"id": "0002447", "video_name": "2b5aa96d-37c6-53a5-90e8-da6bfcc4628b", "text": "\u4e00\u4e2a\u70b9\u5934\u6253\u62db\u547c\u7684\u732b"} +{"id": "0002448", "video_name": "2b63d5aa-db0a-5317-b5bb-53fb17f90190", "text": "\u66b4\u98ce\u4e91\uff0c4A\u5e7f\u544a\u7ea7\u522b\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c9:16\u5c3a\u5bf8\uff0c\u60ca\u8273\uff0c45\u79d2\u957f\uff0c\u5b8c\u6574\u89c6\u9891\u3002"} +{"id": "0002449", "video_name": "2b6a42c3-a0f8-563d-9554-e4519137c4c6", "text": "DJ\u63a7\u5236\u53f0\u7684\u80cc\u666f\uff0c\u9713\u8679\u706f\uff0c\u95ea\u70c1\u3002\u4fe1\u606f\uff1aJAROMIR\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0002450", "video_name": "2b6aca15-ed6f-59eb-ad95-23285becd11d", "text": "\u7f8e\u4e3d\u7684\u63d2\u56fe\uff0c\u5e74\u8f7b\u7684\u6811\u5728\u5e72\u67af\u7684\u690d\u7269\u4e2d\u95f4\uff0c\u6210\u529f\u548c\u5931\u8d25\u4e4b\u95f4\u5f62\u6210\u9c9c\u660e\u7684\u5bf9\u6bd4\u3002\u4e00\u4e2a\u53cd\u601d\u7684\u65f6\u523b\u3002"} +{"id": "0002451", "video_name": "2b6e3252-d6b8-521f-a022-d257303446e6", "text": "\u4e00\u4e2a\u7537\u5b69 Pari \u8bf4\u4f60\u5c06\u6765\u4f1a\u6210\u4e3a\u4e00\u4e2a\u4f1f\u5927\u7684\u4fdd\u62a4\u8005\uff0c\u6709\u9b54\u6cd5\u7684\u3002"} +{"id": "0002452", "video_name": "2b6ff115-1ade-55cb-b83a-5e1390db4bf3", "text": "\u4e00\u4f4d\u9b54\u5973\u5750\u5728\u626b\u5e1a\u4e0a\uff0c\u5728\u591c\u665a\u98de\u8d8a\u57ce\u5e02\uff0c\u661f\u7a7a\u548c\u57ce\u5e02\u706f\u5149\u3002"} +{"id": "0002453", "video_name": "2b74fb8b-0e94-56c2-9b38-c8ad37878455", "text": "\u57283D\u6a21\u5f0f\u4e0b\u5c06\u56fe\u50cf\u987a\u65f6\u9488\u65cb\u8f6c90\u5ea6\u3002"} +{"id": "0002454", "video_name": "2b795214-dabd-5baf-b6b5-a1318b966512", "text": "Translation: \u5728\u963f\u7ea6\u63d0\u4e9a\u5bfa\u5e99\u558a\u201c\u8d3e\u4f0a\u00b7\u5e0c\u745e\u00b7\u62c9\u59c6\u201d\u3002"} +{"id": "0002455", "video_name": "2b7b7f4f-bfd7-5d49-9bb1-c6d36a403cef", "text": "\u5f17\u96f7\u8fea\u00b7\u5409\u5e03\u65af\u4e8c\u6218\u7535\u5f71\u7ed3\u5c3e\uff0c\u9a7e\u9a76\u5766\u514b\uff0c\u62bd\u96ea\u8304\uff0c\u6162\u52a8\u4f5c\uff0c\u7d2b\u8272\u80cc\u666f\uff0c"} +{"id": "0002456", "video_name": "2b81476d-c0a6-5008-b35c-047f635f4a2a", "text": "\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u7684\u5c0f\u5973\u5b69\u4ece\u5979\u7684\u82b1\u56ed\u91cc\u91c7\u6458\u7ea2\u73ab\u7470\u3002"} +{"id": "0002457", "video_name": "2b8d2c0a-a771-5a9f-8d5d-19403892815e", "text": "\u4eba\u4eec\u6b63\u5728\u5954\u8dd1\u8fdb\u5165\u68ee\u6797\u3002"} +{"id": "0002458", "video_name": "2b8dd5d2-e003-5664-af3e-a28c7f623869", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u8df3\u821e\u6447\u6643\u7740\u5b83"} +{"id": "0002459", "video_name": "2b949eae-e443-5e46-ad7e-e0afbe40212b", "text": "\u6c49\u5821\u5305\u6700\u521d\u662f\u7528\u788e\u725b\u8089\u997c\u70e4\u5236\u800c\u6210\uff0c\u653e\u5728\u9762\u5305\u4e0a\u4f9b\u5e94\u3002"} +{"id": "0002460", "video_name": "2b950414-07c6-50cf-8c4a-da8675995b01", "text": "\u7ea2\u8718\u86db\u4eba\u6709\u4e00\u4e9b\u52a8\u4f5c\uff0c\u56db\u7ef4\u52a8\u753b\u7684\u8eab\u4f53\u9ad8\u5927\u5851\u6599\u7c7b\u578b\u7684\u8eab\u4f53\u7279\u5f81\u7a81\u51fa\uff0c\u662f\u4e00\u4ef6\u6770\u4f5c\u3002"} +{"id": "0002461", "video_name": "2ba6dcaf-b2e5-50b3-8716-511a7a4c8137", "text": "\u5728\u4e00\u4e2a\u5947\u5e7b\u7684\u8352\u91ce\u91cc\uff0c\u4e00\u4f4d\u8ff7\u4eba\u7684\u5723\u8bde\u7cbe\u7075\u5531\u6b4c\u3002"} +{"id": "0002462", "video_name": "2baf0223-526c-5a34-8ad0-936a7ed8f945", "text": "\u60f3\u8981\u4f7f\u7528\u9b54\u6cd5\u7206\u7834\u9b54\u6cd5\u969c\u788d\uff0c\u91ca\u653e\u51fa\u95ea\u8000\u7684\u5149\u8292\u3001\u7834\u788e\u7684\u80fd\u91cf\u4ee5\u53ca\u78b0\u649e\u7684"} +{"id": "0002463", "video_name": "2bafde53-51d1-5ad9-adbb-f0c676616fd0", "text": "\u6726\u80e7\u7684\u5e7d\u7075\u822c\u7684\u4eba\u4eec\u8d70\u5728\u4e00\u6761\u6ce5\u571f\u8def\u4e0a\u3002\u53d1\u73b0\u7684\u7247\u6bb5\u65e7\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "0002464", "video_name": "2bbc28dc-b236-5beb-a8f0-d214afabf676", "text": "\u4e00\u67b6\u76f4\u5347\u673a\u5728\u66b4\u98ce\u96ea\u4e2d\u76d8\u65cb\u5728\u4e00\u7247\u51b0\u51bb\u7684\u6e56\u9762\u4e0a\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "0002465", "video_name": "2bbc4a9c-0eca-59d4-b459-84636153ea9b", "text": "\u884c\u661f\u7d22\u62c9\u91cc\u65af\u88ab\u7d2b\u8272\u9ecf\u7a20\u7684\u6d77\u8986\u76d6\u3002"} +{"id": "0002466", "video_name": "2bc10a18-87e7-59b0-8ea3-97f87d0046b2", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u4fe1\u606f\u4e3aweb3now\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "0002467", "video_name": "2bc40223-76d1-502c-bdda-f906ed8ec25f", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u7740\u4e00\u53ea\u5de8\u9f20\uff0c\u540c\u65f6\u6253\u7f51\u7403\u3002"} +{"id": "0002468", "video_name": "2bc6ffe8-e22f-5033-8eaf-4db7d3811f82", "text": "\u60ca\u6050\u7684\u732b\uff0c\u9ec4\u8272\u7684\u773c\u775b\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002"} +{"id": "0002469", "video_name": "2bc84c85-bc23-5166-aa55-47c4d0e56df7", "text": "\u5954\u8dd1\u7684\u72d0\u72f8\u3001\u597d\u5947\u5fc3\u3001\u654f\u6377\u3001\u6b23\u8d4f\u82b1\u6d77\u68ee\u6797\u3001\u5371\u673a\u60c5\u51b5\u4e0b\u7684\u51b7\u9759\u548c\u654f"} +{"id": "0002470", "video_name": "2bd3c57f-78d0-5a42-94be-9a879e9952f5", "text": "\u4e00\u4e2a\u5750\u5728\u8f66\u91cc\u7684\u7537\u5b69\uff0c\u771f\u5b9e\u7535\u5f71\u753b\u97624T\u753b\u8d2816:9\u3002"} +{"id": "0002471", "video_name": "2bd619c5-af63-5eaa-8545-4257ddb7a202", "text": "\u7d2b\u7f57\u5170\u548c\u9752\u8272\u7684\u7c89\u672b\u5728\u767d\u8272\u80cc\u666f\u524d\u4ece\u5b9e\u9a8c\u5ba4\u8bbe\u5907\u4e2d\u7206\u70b8\u3002\u4fe1\u606f\uff1aTOME\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0002472", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "\u96f7\u65af\u5854\u72ee\u548c\u4ed6\u7684\u5bb6\u4eba\uff0c\u4e09\u53ea\u96cc\u72ee\u3002"} +{"id": "0002473", "video_name": "2bd782a1-9e7d-591c-8b8c-16ff53af4f0d", "text": "\u571f\u5efa\u5de5\u7a0b\u65bd\u5de5 \u4fe1\u606f\uff1aCOCHO BENITEZ\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0002474", "video_name": "2bd88885-055f-51d6-9c22-d84ea69cef75", "text": "\u4e00\u53ea\u8df3\u821e\u7684\u72ec\u89d2\u517d\u795d\u4e00\u4e2a\u5c0f\u5973\u5b69\u751f\u65e5\u5feb\u4e50\u3002"} +{"id": "0002475", "video_name": "2bda826c-4058-5d78-a993-519f367359e9", "text": "\u591c\u665a\u7f8e\u4e3d\u5efa\u7b51\u5de5\u5730\u7684\u4fef\u77b0\uff0c\u4e94\u989c\u516d\u8272\u7684\u706f\u5149\u3002"} +{"id": "0002476", "video_name": "2bdc1827-d906-5fd4-8b18-4f482e998bcb", "text": "\u7f8e\u5b66\u7684\u6781\u7b80\u8fc7\u53bb\u5f0f\u534a\u900f\u660e\u7684\u65cb\u8f6c\u6591\u70b9\u3002"} +{"id": "0002477", "video_name": "2bde4113-531e-5097-99d0-7af62fa74fcd", "text": "\u957f\u5377\u53d1\u7684\u7f8e\u4e3d\u5973\u4eba\u3002\u7f8e\u4e3d\u7684\u8138\u5e9e\u3002\u65f6\u5c1a\u6a21\u7279\u3002\u65f6\u5c1a\u5986\u5bb9\u3002\u70df\u718f\u5986\u7684\u8ff7\u4eba\u5973"} +{"id": "0002478", "video_name": "2be0bdb5-0d27-5479-8ffd-6c49560745d0", "text": "\u9b41\u5317\u514b\u5e02\u72ed\u7a84\u7684\u8857\u9053\u4e0a\u6709\u4e00\u8f86\u5de8\u5927\u7684\u767d\u8272SUV\u3002"} +{"id": "0002479", "video_name": "2be3aade-4b29-5728-9dc2-5b63371a5ee5", "text": "\u624b\u638c\u5f62\u6210\u5fc3\u5f62\uff0c\u5f53\u624b\u6307\u8fde\u63a5\u65f6\uff0c\u5b83\u4eec\u4f1a\u53d1\u5149\u3002"} +{"id": "0002480", "video_name": "2be4499f-498d-528d-8528-de9d8e038185", "text": "\u4e00\u53ea\u96c4\u58ee\u7684\u96c4\u72ee\u5728\u96e8\u4e2d\u7ad9\u5728\u60ac\u5d16\u9876\u7aef\u3002"} +{"id": "0002481", "video_name": "2be7a153-aeed-56a6-b9ba-80478a3acb28", "text": "\u5979\u7684\u7236\u6bcd\u4e92\u76f8\u4ea4\u6362\u4e86\u6e29\u6696\u7684\u5fae\u7b11\u5e76\u4e14\u540c\u610f\uff0c\u7a7f\u4e0a\u5916\u5957\u548c\u56f4\u5dfe\u3002\u5bb6\u4eba\u8d70\u8fdb\u8fd9\u4e2a\u51ac\u5b63"} +{"id": "0002482", "video_name": "2bea75ae-4469-5df0-9248-8e6a8dd8fe78", "text": "\u4e00\u5bb6\u79d1\u6280\u516c\u53f8\u6b63\u5728\u5411\u534e\u76db\u987f\u9876\u5cf0\u8fdb\u53d1\u3002"} +{"id": "0002483", "video_name": "2bec0f18-86e5-549e-a829-0c08892c5da2", "text": "\u5728\u6eda\u6eda\u7684\u5c71\u4e18\u548c\u76db\u5f00\u7684\u8349\u5730\u4e4b\u95f4\uff0c\u6709\u4e00\u4e2a\u751f\u6c14\u52c3\u52c3\u7684\u52a8\u7269\u56ed\uff0c\u91cc\u9762\u4f4f\u7740\u72ee\u5b50\u91cc\u5965\u3001"} +{"id": "0002484", "video_name": "2bf08c29-5c2c-56e3-825d-f2b331d2a2c3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u4f5b\u50cf\u524d\uff0c\u795e\u60c5\u5fe7\u8651\u3002"} +{"id": "0002485", "video_name": "2bf28b58-9ebd-5ed3-8b66-89eb2bd85989", "text": "\u7f8e\u4e3d\u7684\u7a46\u65af\u6797\u52a8\u6f2b\u5973\u5b69\u6234\u7740\u7ea2\u8272\u7684\u5934\u5dfe\uff0c\u9762\u5bb9\u5149\u5f69\u7167\u4eba\uff0c\u4ee5\u6700\u4f73\u98ce\u683c\u4ea4\u8c08\u3002"} +{"id": "0002486", "video_name": "2bf2baee-31ac-5ee2-b72e-d82192668179", "text": "\u4e00\u4e2a\u95e8\u536b\u6253\u5f00\u95e8\uff0c\u4e00\u8f86\u8f66\u5f00\u51fa\u6765\u3002"} +{"id": "0002487", "video_name": "2bf30b8f-6073-51ee-b68e-d5e35431230e", "text": "\u7535\u5f71\u573a\u666f\uff0c8K\u6e05\u6670\u5ea6\uff0c\u7ea2\u76ae\u80a4\u7684\u4eba\u7c7b\u9b3c\u602a\u7537\u6027\uff0c\u94c1\u5320\uff0c\u8138\u4e0a\u6709\u5c0f\u75a4\u75d5\uff0c\u89d2\u8272"} +{"id": "0002488", "video_name": "2bf51ec0-3f0f-511d-bb3b-81b397b61459", "text": "\u5728\u4ed6\u4eec\u7b11\u7684\u65f6\u5019\u4ea4\u8c08\u3002"} +{"id": "0002489", "video_name": "2bfab11a-72a9-5739-bad9-7ecf44458a50", "text": "\u5916\u56fd\u4eba\u6765\u5230\u5706\u660e\u56ed\uff0c\u770b\u5230\u5b8f\u4f1f\u7684\u53e4\u5efa\u7b51\uff0c\u611f\u89c9\u50cf\u7f6e\u8eab\u4e8e\u4ed9\u5883\u3002"} +{"id": "0002490", "video_name": "2bfcaa31-9751-5ca1-9033-0a39d67d916b", "text": "\u5de8\u5927\u7684\u53d1\u5149\u6c34\u6bcd\u6f02\u6d6e\u5728\u4e00\u4e2a\u73b0\u4ee3\u57ce\u5e02\u4e0a\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u54c1\u8d28\u79d1\u5e7b\u7279\u6548\u7535\u5f71\u3002"} +{"id": "0002491", "video_name": "2c05c294-dc82-513a-baab-9a1a53ee1266", "text": "\u975e\u6d32\u4e1b\u6797\u4e2d\u7684\u513f\u7ae5\u5361\u901a\uff0c\u90a3\u91cc\u7684\u751f\u7269\u6f5c\u4f0f\u3002"} +{"id": "0002492", "video_name": "2c0c38a6-b571-51b3-bd4f-f2b3aa4c6be3", "text": "Rajiv\u548cRavi\u8d70\u8fdb\u90a3\u4e2a\u8001\u5b85\u5b50\uff0c\u5b83\u5de8\u5927\u7684\u95e8\u81ea\u5df1\u5431\u5431\u4f5c\u54cd\u5730\u6253\u5f00\u4e86\u3002"} +{"id": "0002493", "video_name": "2c0c91b8-b7b8-5336-9bb3-331b3d7092bb", "text": "\u4e00\u74f6\u9648\u5e74\u6717\u59c6\u9152\uff0c\u52a0\u4e0a\u96ea\u8304\u548c\u5496\u5561\uff0c\u662f\u8001\u5e74\u4eba\u7684\u6700\u7231\u3002"} +{"id": "0002494", "video_name": "2c0f0812-28d3-5b84-ad3f-42ee1529c3c2", "text": "\u6770\u68ee\u00b7\u6c83\u4f0a\u65af\u7684\u53d8\u8eab\u573a\u666f\u9ed1\u6697\u7535\u5f71\u5316\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002495", "video_name": "2c1458d8-638a-5842-a3f4-309f7cdc3f12", "text": "1980\u5e74\u4ee3\u7684\u5973\u4eba\u5728\u5ba2\u5385\u770b\u7535\u89c6\uff0c\u548c\u4e00\u4e2a\u7537\u4eba\u5206\u4eab\u96ea\u8304\u3002"} +{"id": "0002496", "video_name": "2c1ebef7-a6c4-53ca-a4f9-b62281ccbb0b", "text": "\u5370\u5ea6\u95e8\u5728\u5927\u96e8\u548c\u96f7\u58f0\u4e2d\u3002"} +{"id": "0002497", "video_name": "2c201357-6dce-524a-9a63-f2ccf468e23e", "text": "\u5927\u897f\u6d0b\u6d77\u6d0b\uff0c\u96e8\uff0c\u66b4\u98ce\u96e8\uff0c\u6f5c\u8247\u7f13\u6162\u79fb\u52a8\uff0c\u6d77\u6d6a\u7f13\u6162\u79fb\u52a8\uff0c\u96f7\u58f0\uff0c\u8d85\u9ad8\u6e05\u6670"} +{"id": "0002498", "video_name": "2c22090b-126b-556b-af42-b2e5b6eabbf3", "text": "\u89d2\u8272\u4f7f\u7528\u4e50\u571f\u79d1\u6280\u7684\u52a8\u673a\u63ed\u793a\u3002"} +{"id": "0002499", "video_name": "2c2358de-f0c3-5b2f-9d94-04eb074ba19d", "text": "\u7070\u8272\u8f7b\u732b\u8eab\u4e0a\u5e26\u6709\u9ed1\u8272\u6761\u7eb9\u548c\u9ec4\u8272\u773c\u775b\uff0c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u5f81\u670d\u661f\u7403\u3002\n\nSource sentence: The sun sets behind the mountains,"} +{"id": "0002500", "video_name": "2c26514a-27a2-5687-bd58-7be0fe1ac0fd", "text": "\u7687\u5e1d\u5750\u5728\u9f99\u6905\u4e0a\uff0c\u4ed6\u7684\u624b\u5728\u52a8\u3002"} +{"id": "0002501", "video_name": "2c2698ee-0a2d-5059-9341-cf7291b3329b", "text": "\u4e00\u4f4d\u4eba\u7ad9\u5728Space X\u53d1\u5c04\u73b0\u573a\u7684\u8bb0\u8005\u4e2d\u95f4\u3002"} +{"id": "0002502", "video_name": "2c27a03f-dea9-5899-895a-8511d2de73a2", "text": "\u7f8e\u4e3d\u7684\u98ce\u666f\u65e5\u672c\u53e4\u5821\u98ce\u6811\u6cb3\u6c34\u6d41\u98ce\u683c\u3002"} +{"id": "0002503", "video_name": "2c2828b0-4441-5807-8154-e1013568aa56", "text": "\u7ebd\u7ea6\u5e02\u770b\u8d77\u6765\u50cf\u662f\u4e00\u4e2a\u559c\u9a6c\u62c9\u96c5\u5c71\u6751\u5e84\uff0c\u5e26\u7740\u7a7a\u6c14\u6d41\u52a8\u3002"} +{"id": "0002504", "video_name": "2c290e7e-eb9a-5478-85d3-42ee748ab52c", "text": "\u4e00\u4f4d\u6bcd\u4eb2\u5728\u5979\u5973\u513f\u9762\u524d\u80cc\u8bf5\u300a\u53e4\u5170\u7ecf\u300b\u3002"} +{"id": "0002505", "video_name": "2c3e4e63-1536-5444-b03b-d8e42569634e", "text": "\u91d1\u00b7\u5361\u6234\u73ca\u5728\u300a\u751f\u547d\u529b\u91cf\u51b3\u6597\u300b\u7535\u5b50\u7ade\u6280\u6bd4\u8d5b\u4e2d\u8d62\u5f97\u4e86\u5956\u676f\u3002"} +{"id": "0002506", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "\u519c\u573a\u6a21\u62df\u7ecf\u8425\u6e38\u620f\uff0c\u4ee5\u519c\u4e1a\u4e3b\u9898\u4e3a\u80cc\u666f\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u6709\u9e21\u517b\u6b96\u3002"} +{"id": "0002507", "video_name": "2c4286af-be42-5b39-ad28-4477891d1d24", "text": "\u5c55\u793a\u6574\u4e2a\u9b54\u6cd5\u68ee\u6797\u7684\u9e1f\u77b0\u56fe\uff0c\u4f0a\u62c9\u548c\u8d1d\u62c9\u88ab\u795e\u5947\u7684\u751f\u7269\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6eaa\u6d41\u5305"} +{"id": "0002508", "video_name": "2c45767d-e55a-5580-85fd-92bac39d23b8", "text": "\u57ce\u5e02\u4e2d\u7684\u6000\u65e7\u5c4b\u9876\u65f6\u523b\uff0c\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u8eba\u5728\u6bef\u5b50\u4e0a\uff0c\u88ab\u4ed9\u5973\u706f\u5305\u56f4\u7740\uff0c\u8fdc\u5904\u57ce"} +{"id": "0002509", "video_name": "2c45f71f-fe7e-5bf0-bd28-8c7f883c5787", "text": "\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\u4e2d\uff0c\u4e4c\u8d3c\u5728\u6e38\u6cf3\u3002"} +{"id": "0002510", "video_name": "2c487712-53a6-59be-86fd-d9bb2339f82a", "text": "\u4e00\u5e62\u6f02\u4eae\u7684\u623f\u5b50\u5728\u4e00\u6761\u72ed\u7a84\u7684\u5c71\u8c37\u4e4b\u4e2d\u3002"} +{"id": "0002511", "video_name": "2c572db0-a3c5-570c-afd5-510fcc7bcb1b", "text": "\u4e00\u90e8\u7535\u5f71\u5f0f\u7684\u91d1\u53d1\u7ae5\u8bdd\u516c\u4e3b\u9a91\u7740\u72ec\u89d2\u517d\uff0c\u6325\u821e\u7740\u9b54\u6cd5\u68d2\uff0c\u80cc\u666f\u662f\u5c71\u8109\u3002"} +{"id": "0002512", "video_name": "2c666b9b-497a-5ca2-83ae-23a5244e72a5", "text": "\u7537\u5b69\u665a\u4e0a\u5728\u5e8a\u4e0a\u7741\u5f00\u773c\u775b\u7684\u8fd1\u666f\u3002"} +{"id": "0002513", "video_name": "2c783f5c-3059-5fe2-adb3-bc914a8482f5", "text": "\u4e00\u79cd\u808c\u8089\u56e0\u5b50\u548c\u4e00\u79cd\u8102\u80aa\u56e0\u5b50\u63e1\u624b\u5fae\u7b11\u3002"} +{"id": "0002514", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u548c\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u4e3b\u6f14\u76848k\u7535\u5f71\u3002\n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u8bf7"} +{"id": "0002515", "video_name": "2c8289fa-44f3-5dc4-af76-5aa4a80c9502", "text": "\u514b\u82cf\u9c81\u4ee5\u52a8\u6f2b\u98ce\u683c4K\u9ad8\u6e05\u753b\u8d28\u541e\u566c\u91d1\u6b63\u6069\uff0c\u753b\u9762\u7ec6\u8282\u4e30\u5bcc\uff0c\u7167\u660e\u6548\u679c\u6781\u5177"} +{"id": "0002516", "video_name": "2c864e87-972e-56eb-8a3e-135b653fc54a", "text": "UFO\u6b63\u5728\u6708\u7403\u65c1\u7684\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0002517", "video_name": "2c8a6f6c-60e9-5a43-b089-eeb36fdae2e8", "text": "\u5929\u9645\u7ebf\u4e4b\u57ce\uff0c\u65e9\u6668\u9192\u6765\u3002"} +{"id": "0002518", "video_name": "2c8e6aa6-5345-53d9-ba52-5676e49af72f", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u4e00\u9762\u5899\u4e0a\u5237\u767d\u8272\u989c\u6599\u3002"} +{"id": "0002519", "video_name": "2cabf14f-7f8c-5b2c-8f5b-9353a087920e", "text": "\u5efa\u6a21\u4e00\u5f20\u718a\u5403\u7cd6\u679c\u7684\u56fe\u7247\u3002"} +{"id": "0002520", "video_name": "2cb3b5b4-8801-5b08-bc4e-b0d57be2b508", "text": "\u4e00\u540d\u4e2d\u56fd\u5b69\u5b50\u72ec\u81ea\u7ad9\u5728\u516c\u8def\u4e2d\u592e\uff0c\u5468\u56f4\u9ad8\u697c\u6797\u7acb\u3002"} +{"id": "0002521", "video_name": "2cb91e0f-33ee-5919-bc08-4fd830ee042d", "text": "\u84dd\u8272\u548c\u7c89\u8272\u661f\u7403\u4e0a\u7684\u7537\u4eba\u3002"} +{"id": "0002522", "video_name": "2cbb39e3-b831-551d-bf11-bd5861ff89a1", "text": "\u8f66\u8f86\u7684\u706f\u5149\u7167\u5728\u6811\u4e0a\uff0c\u7acb\u5373\u53cd\u5c04\u51fa\u6765\u3002"} +{"id": "0002523", "video_name": "2cc18ed3-481c-563a-a4b4-ed02a8d29e7d", "text": "\u5f17\u5170\u80af\u65af\u5766\u662f\u4e00\u540d\u8b66\u5bdf\u3002\u955c\u5934\u5411\u53f3\u8f6c\u52a8\uff0c\u4ed6\u8e22\u5f00\u4e00\u6247\u95e8\u5e76\u8fc5\u901f\u8fdb\u5165\u3002\u4ed6\u624b\u4e2d\u62ff\u7740\u4e00"} +{"id": "0002524", "video_name": "2cc9e06b-0e3a-5b67-b28d-eeae9d08f7fa", "text": "\u660e\u5929\u4e4b\u5730\u7684\u8611\u83c7\u57ce\u5e02\u57c3\u5c14\u91cc\u5c14\u5728\u6b7b\u5973\u795e\u7684\u68a6\u5883\u4e2d\u3002"} +{"id": "0002525", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "\u5728\u98df\u5802\u91cc\uff0c\u56db\u4e2a\u5973\u5b69\u6b63\u5feb\u4e50\u5730\u804a\u5929\u3002"} +{"id": "0002526", "video_name": "2ccd775c-0167-531b-850d-0c307abe6f37", "text": "\u4e00\u5ea7\u5efa\u5728\u6d77\u5824\u4e0a\uff0c\u53d7\u5230\u6d77\u6d6a\u4fdd\u62a4\u7684\u6d77\u6ee8\u522b\u5885\u3002"} +{"id": "0002527", "video_name": "2cd157b0-dbef-5078-9cc6-2330362eaa77", "text": "\u8f68\u9053\u6218\u672f\u90e8\u961f\u4e0e\u884c\u661f\u53cd\u6297\u519b\u8054\u624b\uff0c\u6784\u6210\u4e86\u4e00\u5e45\u58ee\u4e3d\u7684\u52a8\u6001\u666f\u8c61\u3002"} +{"id": "0002528", "video_name": "2cd408ac-3d1a-5052-b792-62b508f1484b", "text": "\u8bf7\u5728\u4e00\u4e2a\u65e9\u6625\u7684\u65e9\u6668\u4e3a\u6211\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002529", "video_name": "2cd90e98-72d3-5520-9f1d-8e5dad8344d4", "text": "\u4e00\u4e2a\u7537\u5b69\u7a7f\u7740T\u6064\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "0002530", "video_name": "2ce90abd-ae39-5670-b0de-e4a58c4ae185", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u4eba\u548c\u5973\u4eba\u5728\u601d\u8003\u3002"} +{"id": "0002531", "video_name": "2ce91d94-d95e-5f49-ad32-c93b42f1c80e", "text": "\u4e00\u540d\u624b\u6301\u5251\u7684\u7537\u5b50\u4e0e\u4e00\u7fa4\u574f\u4eba\u6218\u6597\u3002"} +{"id": "0002532", "video_name": "2cf1035d-6fb7-5187-a7c5-c436b8534902", "text": "\u53ef\u7231\u7684\u5c0f\u7f8e\u4eba\u9c7c\u6e38\u5411\u6211\u3002"} +{"id": "0002533", "video_name": "2cf93700-a06f-515a-a450-04e96b81b11f", "text": "\u4f26\u6566\u516c\u4ea4\u8f66\u53f8\u673a\u5728\u6c34\u4e0b\u3002"} +{"id": "0002534", "video_name": "2cfb90c2-4815-5518-99f5-700431649e44", "text": "\u5305\u62ec\u6050\u9f99\u65e9\u671f\u7684\u4eb2\u5c5e\u3002"} +{"id": "0002535", "video_name": "2cfe5b49-0134-5a55-afab-2d6635fd1584", "text": "\u5728\u7ed8\u753b\u4e2d\u521b\u9020\u4e00\u53ea\u624b\uff0c\u624b\u9700\u8981\u5728\u955c\u5b50\u91cc\u624d\u80fd\u521b\u9020\u51fa\u94a2\u94c1\u4fa0\u3002\n\nSource sentence: Learning a new language can be challenging, but it is also very rewarding"} +{"id": "0002536", "video_name": "2d00c5e5-2f97-5cc9-bec5-effcf53ea2a3", "text": "\u4e00\u53ea\u888b\u9f20\u5728\u65e9\u6668\u6cbf\u7740\u8def\u8dd1\uff0c\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "0002537", "video_name": "2d089d90-7d83-581c-acfb-8d379a84d397", "text": "Source sentence: \u54c8\u9a6c\u65af\u5728\u519b\u4e8b\u9886\u57df\u4e2d\uff0c\u53f2\u8bd7\u822c\u7684\u3001\u8d85\u73b0\u5b9e\u7684\u3002"} +{"id": "0002538", "video_name": "2d093b2b-9583-55aa-9a3a-eb7a3d6303b5", "text": "\u91d1\u5c5e\u6f06\u5438\u5f15\u548c\u6392\u65a5\uff0c\u5f62\u6210\u6d41\u4f53\u96d5\u5851\uff0c\u626d\u66f2\u3001\u76d8\u65cb\u3001\u5ef6\u4f38\uff0c\u7136\u540e\u5728\u78c1\u6027\u7684\u6da8\u843d\u4e2d"} +{"id": "0002539", "video_name": "2d0a2a45-5105-59cf-a4a6-e4986e43ca94", "text": "\u57ce\u9547\u5168\u662f\u623f\u5c4b\u7684\u666f\u8c61\u3002"} +{"id": "0002540", "video_name": "2d10225b-be62-5f8d-a32d-1f40b4689d45", "text": "\u6709\u4eba\u5c06LLM\u8fde\u63a5\u5230\u963f\u5361\u897f\u8bb0\u5f55\u4e86\u5417\uff1f"} +{"id": "0002541", "video_name": "2d111f7f-f30f-5814-9b77-17c2beb50a29", "text": "\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u7684\u6807\u5fd7\uff0c\u5728\u9ed1\u6697\u7684\u7535\u5f71\u706f\u5149\u4e2d\u51fa\u73b0\u3002"} +{"id": "0002542", "video_name": "2d1280fc-8502-5e6e-8f61-0a367097ea28", "text": "\u4e00\u4e2a\u6c34\u4e0b\u573a\u666f\uff0c\u5c55\u793a\u4e86\u4e00\u6761\u9ed1\u65d7\u9cb8\u8fc5\u901f\u6e38\u52a8\uff0c\u5c55\u73b0\u5176\u58ee\u89c2\u7684\u6d41\u7ebf\u578b\u548c\u6d77\u6d0b\u7684\u9c9c\u8273\u8272\u5f69\u3002"} +{"id": "0002543", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "\u4e00\u7fa4\u4eba\u5728\u91ce\u751f\u52a8\u7269\u56ed\u6e38\u620f\u9a71\u52a8\u4e2d\u3002"} +{"id": "0002544", "video_name": "2d18074a-c7ae-5cd2-aad3-c6a02587234f", "text": "\u591c\u665a\u57ce\u5e02\u4e2d\u7684\u66b4\u96e8\u548c\u95ea\u7535\u51fb\u4e2d\u3002"} +{"id": "0002545", "video_name": "2d187009-f479-5ac0-b6dc-72c9e464d78f", "text": "\u4e00\u4f4d\u4f18\u7f8e\u7684\u4ed9\u5973\uff0c\u62e5\u6709\u95ea\u70c1\u7684\u84dd\u8272\u7fc5\u8180\u548c\u7531\u82b1\u74e3\u548c\u53f6\u5b50\u7f16\u5236\u7684\u88d9\u5b50\uff0c\u5fae\u7b11\u7740\u7ad9"} +{"id": "0002546", "video_name": "2d1b623f-66a6-54d3-b647-2745b55c4752", "text": "\u7537\u5b50\u4ece\u7535\u89c6\u673a\u91cc\u8df3\u51fa\u6765\uff0c\u65c5\u884c\u822c\u7684\u4f53\u9a8c\uff0c\u52a8\u611f\u5341\u8db3\uff0c\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u98ce\u683c\u3002"} +{"id": "0002547", "video_name": "2d1bdd1f-86c0-55d7-8bb5-00377bad65ba", "text": "\u7537\u4eba\u7a7f\u7740\u9a6c\u91cc\u5965\u670d\u88c5\u5728\u5a5a\u793c\u4e0a\u5403\u610f\u5927\u5229\u8089\u4e38\u9762\u3002"} +{"id": "0002548", "video_name": "2d246abb-f8d1-521d-a9bb-7ea3b47afe59", "text": "\u5730\u7403\u6b63\u5728\u8f6c\u53d8\u6210\u65b0\u5730\u7403\uff0c\u5982\u679c\u4f60\u4e0d\u80fd\u4e0e\u5730\u7403\u7684\u632f\u52a8\u4fdd\u6301\u4e00\u81f4\uff0c\u4f60\u5c31\u4f1a\u88ab\u843d\u4e0b\u3002\u6240\u4ee5\u786e\u4fdd\u4f60\u5fe0\u4e8e\u81ea\u6211\u548c\u5fe0\u4e8e\u5730"} +{"id": "0002549", "video_name": "2d26e551-9f58-5413-8ae7-50a87f0f4613", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u68ee\u6797\u4e2d\u8ff7\u8def\uff0c\u5e76\u9047\u5230\u4e86\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "0002550", "video_name": "2d358a61-4d82-59dd-a882-72661be1c418", "text": "\u684c\u5b50\u4e0a\u6709\u4e00\u5806\u5806\u7684\u91d1\u5e01\uff0c\u4e0a\u9762\u5199\u7740\u201cFINCI\u201d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0002551", "video_name": "2d39b5d4-74a4-5dc8-ae13-4757c42baba2", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u800c\u5de8\u5927\u7684\u52a8\u753b\u57ce\u5821"} +{"id": "0002552", "video_name": "2d3fb01f-46e2-5910-b828-5a8cf0cc8ae2", "text": "\u4e00\u4e2a\u7a7f\u7740\u53e4\u4ee3\u670d\u88c5\u7684\u7537\u4eba\u7126\u6025\u5730\u671b\u7740\u524d\u65b9\u3002"} +{"id": "0002553", "video_name": "2d432543-ec32-5566-8fef-b54687f7a7d4", "text": "\u4eba\u5728\u660e\u4eae\u7684\u6d77\u8fb9\u6f2b\u6b65\uff0c\u9633\u5149\u666e\u7167\u3002"} +{"id": "0002554", "video_name": "2d485d39-a1dd-59b0-b575-c64438711bde", "text": "\u5728\u68ee\u6797\u91cc\u521b\u5efa\u4e00\u4e2a\u7ad9\u5728\u6811\u65c1\u8fb9\u8bf4\u8bdd\u7684\u7537\u5b69\u3002"} +{"id": "0002555", "video_name": "2d487c1c-68c1-55f9-83e5-4312c382d08a", "text": "\u4e00\u4e2a\u6709\u9633\u5149\u7a7f\u900f\u7684\u8302\u5bc6\u5929\u7136\u8568\u7c7b\u68ee\u6797\u3002 \u4fe1\u606f\uff1a\u5947\u5f02\u9e1f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0002556", "video_name": "2d4ea5f1-96ea-5e7b-896f-1769c7607512", "text": "\u51b0\u5c9b\u86cb\u767d\u77f3\u7cd6\u505a\u6210\u7684\u57ce\u5e02\u3002"} +{"id": "0002557", "video_name": "2d4ee89b-1f57-54fb-a441-702394f70232", "text": "\u660f\u6697\u7684\u6c1b\u56f4\uff1a\u65af\u666e\u6797\u83f2\u5c14\u5fb7\u7684\u96fe\u591c\n\u4e00\u5c42\u539a\u539a\u7684\u96fe\u7b3c\u7f69\u7740\u65af\u666e\u6797"} +{"id": "0002558", "video_name": "2d4f70ab-8e34-5c71-ba7a-c3eccf488487", "text": "\u8428\u59c6\u773c\u542b\u6cea\u6c34\uff0c\u7d27\u7d27\u63e1\u4f4f\u8fd9\u5c01\u4fe1\u3002"} +{"id": "0002559", "video_name": "2d51f36f-0d53-50be-989d-91a9c68a53cd", "text": "\u54e5\u7279\u5f0f\u6b4c\u624b\u5728\u6f14\u5531\u4f1a\u4e0a\u5411\u4eba\u7fa4\u5531\u6b4c\u3002"} +{"id": "0002560", "video_name": "2d55be15-8f37-5cb3-85da-d02adbccb4cd", "text": "\u8c08\u5224\u548c\u5e73\u6761\u6b3e\u7684\u5916\u4ea4\u5b98\u5728\u6b27\u6d32\u5730\u56fe\u4e0a\u8fdb\u884c\u8c08\u5224\u3002"} +{"id": "0002561", "video_name": "2d5cb54e-988b-5777-911c-df325e9aaeae", "text": "\u81ea1985\u5e74\u4ee5\u6765\uff0c\u6211\u4ece\u672a\u54ed\u8fc7\uff01\u5f00\u73a9\u7b11\uff0c\u90a3\u65f6\u6211\u751a\u81f3\u8fd8\u6ca1\u6709\u51fa\u751f\u3002"} +{"id": "0002562", "video_name": "2d65f2c7-2c5b-5e61-81bf-089b9de4f595", "text": "\u6050\u60e7\u4e0e\u538c\u6076\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u98ce\u683c\u7684\u76f8\u673a\u8d28\u91cf\u4e0b\uff0c\u8ff7\u5e7b\u7684\u573a\u666f\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c"} +{"id": "0002563", "video_name": "2d6aac47-f05f-53ac-9a7a-ed5dcc5ce080", "text": "\u4e00\u4e2a\u7537\u5b50\u4ece\u6d1e\u7a74\u91cc\u9003\u8dd1\uff0c\u6709\u602a\u7269\u7ad9\u5728\u7537\u5b50\u524d\u9762\uff0c\u573a\u666f\u662f\u51ac\u5b63\uff0c\u91c7\u7528\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "0002564", "video_name": "2d6eb191-65ec-5bf6-a5fe-df3888832f0a", "text": "\u4e00\u4e2a\u4f63\u4eba\u6234\u7740\u5251\u6b63\u5728\u4e0e\u4e09\u4e2a\u673a\u5668\u4eba\u6218\u6597\u3002"} +{"id": "0002565", "video_name": "2d750646-c3ea-57eb-aad8-315906a3a31a", "text": "\u5b9e\u8272\uff0c\u7ec6\u80de\u9634\u5f71\u4e0b\u7684\u53ef\u7231\u8001\u9f20\u5750\u5728\u4e00\u68f5\u6811\u4e0b\uff0c\u98ce\u683c\u4e3a\u4f20\u7edf\u52a8\u6f2b\uff0c\u7279\u522b\u662f\u5409\u535c\u529b\u5de5\u4f5c"} +{"id": "0002566", "video_name": "2d7d058e-9959-5cdf-9d2c-d218586f2eee", "text": "\u52a8\u7269\u86cb\u767d\u548c\u690d\u7269\u86cb\u767d\u4e4b\u95f4\u7684\u533a\u522b\u3002"} +{"id": "0002567", "video_name": "2d7d88a9-0a02-504f-b992-17fd4362cfa2", "text": "\u7537\u4eba\u5728\u8d85\u5e02\u8d27\u67b6\u4e0a\u53d6\u4ea7\u54c1\u3002\u5e7f\u544a\uff0c\u7535\u5f71\u822c\u7684\u8d28\u91cf\u3002"} +{"id": "0002568", "video_name": "2d7e671d-cee0-5134-a1f4-90b3792cb01e", "text": "\u5c55\u793a\u4e00\u4e2a\u6765\u81ea\u8fbe\u5951\u4e9a\u7684\u52c7\u58eb\u7ed9\u6211\u770b\u3002"} +{"id": "0002569", "video_name": "2d7ef4a0-a8e7-59b7-8931-e1ebcd1109b8", "text": "\u4e00\u4e2aDJ\u53bb\u5404\u4e2a\u770b\u8d77\u6765\u4e94\u5f69\u6591\u6593\u3001\u8ff7\u5e7b\u7684\u5730\u65b9\u64ad\u653e\u97f3\u4e50\uff0c\u4e3a\u4e0d\u540c\u7684\u751f\u7269\u6f14\u594f\uff0c\u5b83\u4eec\u90fd\u5f88\u559c"} +{"id": "0002570", "video_name": "2d84715a-3580-5c3b-afcf-00a2db6de69a", "text": "\u5728\u90a3\u91cc\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u4eba\u5feb\u901f\u7f16\u5199\u4ee3\u7801\u7684\u6587\u672c\u3002"} +{"id": "0002571", "video_name": "2d884492-7dab-5cbf-995d-e3e18b28d903", "text": "\u5582\u9e21\u5e76\u559d\u6c34\u3002"} +{"id": "0002572", "video_name": "2d8f87f2-f435-5eab-b3ba-d5f322959b98", "text": "\u4e00\u4e2a\u6218\u58eb\u5728\u9ed1\u591c\u4e2d\u624b\u63e1\u6b66\u5668\u51c6\u5907\u4e0e\u72fc\u6218\u6597\u3002"} +{"id": "0002573", "video_name": "2d911406-fade-5603-8e9b-dadddcc93a22", "text": "\u4e24\u4e2a\u6a59\u5b50\u5728\u8fdb\u884c\u5251\u672f\u8868\u6f14\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u6e38\u3002"} +{"id": "0002574", "video_name": "2d97064f-9453-5a7c-b1fa-f084b771a267", "text": "\u73b0\u5b9e\u68ee\u6797\u3002\u4fe1\u606f\uff1a\u963f\u8c22\u76ae\u838e\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0002575", "video_name": "2d976b89-0a16-54bf-8a10-adc4e6226d31", "text": "\u5973\u738b Oh Hira \u5e26\u7740\u5979\u7684 PS \u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "0002576", "video_name": "2d9e0e83-2ea0-5719-9a2d-3a1c636aa8ae", "text": "\u827e\u7c73\u8389\u6df1\u611f\u4ed6\u4eec\u7684\u56f0\u5883\uff0c\u5bfb\u627e\u4e86\u4e00\u79cd\u65b9\u6cd5\u6765\u5e2e\u52a9\u90a3\u4e9b\u4e0d\u5b89\u7684\u7075\u9b42\u627e\u5230\u5b89\u6170\u3002\u5979"} +{"id": "0002577", "video_name": "2d9e7964-2b99-5098-997d-8bd8cd59315c", "text": "\u9644\u4ef6\u4e2d\u53ea\u6709\u4e00\u9897\u5e26\u7b11\u8138\u7684\u660e\u661f\u5728\u5706\u5708\u91cc\u79fb\u52a8\uff0c\u8fd9\u9897\u661f\u661f\u6709\u4e00\u5f20\u8138\u3002"} +{"id": "0002578", "video_name": "2db00c88-b6ac-5167-8338-093973a152bf", "text": "55\u5c81\u7537\u5b50\u65e9\u6668\u5728\u516c\u56ed\u6563\u6b65\u3002"} +{"id": "0002579", "video_name": "2db0ac4c-8ad8-54ef-bd6e-2951f8bfcb48", "text": "\u8d85\u903c\u771f\uff0c4k\uff0c\u8be6\u7ec6\uff0c\u55b7\u51fa\u7eff\u8272\u706b\u7130\u7684\u5de8\u9f99\uff0c\u5de8\u5927\uff0c\u53e4\u8001\uff0c\u9ed1\u9cde\u3002"} +{"id": "0002580", "video_name": "2dbd84e9-0712-5bc6-a51b-428f4b953e0e", "text": "\u6f02\u4eae\u7684\u68d5\u8272\u76ae\u80a4\u5973\u5b69\u5728\u6237\u5916\u73a9\u800d\u3002"} +{"id": "0002581", "video_name": "2dc46871-474d-5259-85fb-2923fe43f62a", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u767d\u7699\u7684\u808c\u80a4\uff0c\u9ec4\u8272\u7684\u5934\u53d1\uff0c\u767d\u8272\u7684\u6bd4\u57fa\u5c3c\uff0c\u6c99\u6ee9\uff0c\u84dd\u5929\uff0c\u9633\u5149\u3002"} +{"id": "0002582", "video_name": "2dc7fb02-a3de-5999-9dbc-42a64cc64229", "text": "\u51c6\u5907\u5e72\u9505\u9e21\u4e1d\u56db\u5ddd\u7092\u9762\u3002"} +{"id": "0002583", "video_name": "2dca828f-02ac-5d03-b140-e1c8633af8bb", "text": "\u963f\u80b2\u5420\u9640\u5728\u70ed\u5e26\u5c9b\u5c7f\u4e0a\u3002\u4fe1\u606f\uff1aP\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0002584", "video_name": "2dceb1b0-12ac-5f31-9c29-6046f81ea3b1", "text": "\u5916\u661f\u6c34\u6bcd\u5728\u5916\u661f\u4e16\u754c\u4e2d\uff0c\u62bd\u8c61\u3001\u903c\u771f\u3001\u963f\u51e1\u8fbe\u3001\u52a8\u753b\u3001\u8d85\u9ad8\u7ec6\u8282\u30018K\u3002"} +{"id": "0002585", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u5b87\u5b99\u4e16\u754c\u65cb\u8f6c\u8df3\u821e\u3002"} +{"id": "0002586", "video_name": "2dd98d9c-a169-5b69-90a0-4622d837cc35", "text": "\u4e95\u76d6\u88ab\u6c34\u6df9\u6ca1\u3002"} +{"id": "0002587", "video_name": "2dde2b20-4af0-5bb6-94a1-d77c123569cf", "text": "\u4e00\u53ea\u767d\u8272\u7684\u732b\u548c\u4ed6\u7684\u72ac\u7c7b\u670b\u53cb\u4eec\u7ad9\u5728\u4e00\u4e2a\u5927\u6d3e\u5bf9\u7684\u4e2d\u5fc3\u3002"} +{"id": "0002588", "video_name": "2ddeb649-4e0b-5f07-959a-f8561220a436", "text": "\u8ba9\u4ed6\u8d70\u8fc7\u96fe\u8499\u8499\u7684\u6751\u5e84\u3002"} +{"id": "0002589", "video_name": "2de2430f-e877-50b1-b3d9-30186623b251", "text": "\u5c06\u5de5\u5382\u7684\u7279\u5b9a\u533a\u57df\u653e\u5927\uff0c\u4f8b\u5982\u88c5\u914d\u7ebf\u3001\u50a8\u5b58\u533a\u548c\u8d28\u91cf\u63a7\u5236\u7ad9\u3002\u5c55\u793a\u6570\u5b57\u5de5\u5382\u6a21\u62df\u5982\u4f55\u5b9e\u73b0\u5bf9\u5f53\u524d\u751f\u4ea7\u6d41\u7a0b"} +{"id": "0002590", "video_name": "2de308c4-febe-5a54-8dfb-c72389fdeedf", "text": "has been released globally.\n\nGarena Free Fire Max\uff0c\u4e00\u6b3e\u53d7\u6b22\u8fce\u7684\u79fb\u52a8\u7aef\u6218\u6597\u7687\u5ba4\u6e38\u620f\uff0c\u5df2\u5728\u5168\u7403\u8303\u56f4\u5185\u53d1\u5e03\u3002\n\nSource sentence: The"} +{"id": "0002591", "video_name": "2deab08f-5a6f-5bd2-ab40-9fed58882967", "text": "hyperrealistic\u7684\u4eba\u4eec\u5efa\u9020\u827a\u672f\u5de5\u4f5c\u5ba4\u3002\u4fe1\u606f\uff1avaco\u5de5\u4f5c\u5ba4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "0002592", "video_name": "2dfa06f8-55ea-556b-ad96-c21e79432ba3", "text": "\u88ab\u5b50\u4e0b\u8eb2\u85cf\u7684\u4eba\uff0c\u56e0\u4e3a\u542c\u5230\u5916\u9762\u7684\u6c89\u91cd\u547c\u5438\u548c\u4f4e\u8bed\u800c\u98a4\u6296\u7740\u6050\u60e7\u3002"} +{"id": "0002593", "video_name": "2dfa3606-7691-5579-b90e-a04a3752f297", "text": "\u4e00\u4f4d\u6234\u7740\u9762\u7f69\u3001\u7a7f\u7740\u5e3d\u886b\u7684\u672a\u6765\u4eba\u5728\u5c71\u9876\u4e0a\u8df3\u821e\uff0c\u753b\u8d28\u4e3a4K\u3002"} +{"id": "0002594", "video_name": "2dfdf098-6913-53df-ae31-fb55005090d5", "text": "\u8ff7\u5e7b\u7684\u8272\u5f69\u6a21\u7cca\uff0c\u5f62\u6001\u53d8\u5e7b\uff0c\u6b63\u5f26\u6ce2\u3002"} +{"id": "0002595", "video_name": "2dffc99e-c2a0-52a7-896e-801a0995537e", "text": "\u9f99\u98de\u5411\u8fdc\u65b9\uff0c\u5b83\u7684\u8eab\u5f71\u53d8\u5f97\u8d8a\u6765\u8d8a\u5c0f\u3002\u661f\u5149\u8f68\u8ff9\u6162\u6162\u6d88\u5931\uff0c\u4f46\u591c\u7a7a\u4ecd\u7136\u7f8e\u4e3d\u5730"} +{"id": "0002596", "video_name": "2e069582-0a69-595e-9528-d19053b68e9e", "text": "\u4e07\u5723\u8282\u8fea\u58eb\u5c3c\u516c\u4e3b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002597", "video_name": "2e0cab23-cab7-5f80-839d-37677d9fde22", "text": "\u4e00\u4f4d\u5728\u5929\u7a7a\u4e2d\u4f7f\u7528\u6f02\u6d6e\u5730\u6bef\u7684\u56fd\u738b"} +{"id": "0002598", "video_name": "2e0fed4c-51ac-5fb2-bf0f-a1195db17a86", "text": "\u53f2\u524d\u4eba\u7c7b\u5728\u5e26\u6709\u706b\u7684\u6d1e\u7a74\u4e2d\u3002"} +{"id": "0002599", "video_name": "2e170ac7-b09e-548b-9ba6-96f77812afc9", "text": "\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u672a\u6765\u7535\u52a8\u98ce\u8f66\u8fd0\u4f5c\u65b9\u5f0f\u7684\u89c6\u9891\u3002"} +{"id": "0002600", "video_name": "2e2025e7-6c4c-57a5-a787-89e493e9fae9", "text": "\u4ed3\u9f20\u9020\u666f\u623f\uff0c\u5177\u6709\u771f\u5b9e\u611f\u3001\u7f8e\u89c2\u6027\u548c\u6a21\u578b\u7684\u7f29\u5c0f\u7248\u3002"} +{"id": "0002601", "video_name": "2e2a21ee-51e6-567b-9426-c7281ddafd90", "text": "\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u4e2d\u56fd\u5973\u5b69\uff0c\u957f\u7740\u4e00\u5f20\u751c\u7f8e\u7684\u8138\uff0c\u7a7f\u7740\u7b80\u5355\u7684\u8863\u670d\uff0c\u5728\u773c\u79d1\u533b\u9662\u63a5\u53d7\u8fd1\u89c6\u624b\u672f"} +{"id": "0002602", "video_name": "2e2d356f-4ced-5519-b0aa-2a4b61aea653", "text": "\u5c55\u793a\u838e\u62c9\u8dea\u5728\u9677\u9631\u95e8\u65c1\uff0c\u51c6\u5907\u8c03\u67e5\u3002"} +{"id": "0002603", "video_name": "2e2ea357-0d07-5a06-b911-aff1a2a6a849", "text": "\u6bcd\u4eb2\u548c\u5b9d\u5b9d \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "0002604", "video_name": "2e2f360e-dd0e-5e2e-8294-0dc9c33dc5d8", "text": "\u559c\u5267\u6f14\u5458\u5728\u821e\u53f0\u4e0a\u8868\u6f14\uff0c\u611f\u5230\u60ca\u8bb6\u3002\n\nSource sentence: I am excited to go on vacation next week. \n\n\u6211\u5f88\u5174\u594b\u4e0b\u5468\u53bb\u5ea6\u5047"} +{"id": "0002605", "video_name": "2e467046-978d-5996-9704-84f85eaddfd7", "text": "\u9f7f\u8f6e\u3001\u949f\u8868\u5143\u7d20\u3001\u8868\u76d8\u548c\u52a8\u6001\u6f29\u6da1\u7ebf\u6761\u7684\u6392\u5217\u9002\u7528\u4e8e\u5173\u4e8e\u8fdb\u5ea6\u5b89\u6392\u3001\u65f6\u95f4\u548c\u65f6\u95f4\u76f8\u5173\u6d41\u7a0b\u3001\u6700\u540e\u671f\u9650\u3001\u8fdb"} +{"id": "0002606", "video_name": "2e50373d-b055-58cd-834d-5d385fd21e3f", "text": "\u4e00\u6bb5\u77ed\u7247\u5c55\u793a\u5c3c\u6cca\u5c14\u7684\u5c71\u8109\uff0c\u8fd8\u6709\u5317\u6781\u718a\u7b49\u52a8\u7269\u3002"} +{"id": "0002607", "video_name": "2e558646-1ac6-5689-b2aa-ec2343630ebb", "text": "\u5b66\u751f\u5728\u6444\u5f71\u5de5\u4f5c\u5ba4\u62cd\u6444\u6742\u5fd7\u7b80\u4ecb\u3002"} +{"id": "0002608", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "\u706b\u5f71\u5fcd\u8005\u4e2d\uff0c\u6f29\u6da1\u9e23\u4eba\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u89d2\u8272\u3002"} +{"id": "0002609", "video_name": "2e568ac6-5cb1-5f56-b44f-521229b17e21", "text": "\u4ed6\u4eec\u770b\u5230\u4e86\u60ca\u4eba\u7684\u666f\u8c61\uff0c\u9047\u89c1\u4e86\u6709\u8da3\u7684\u592a\u7a7a\u751f\u7269\u3002"} +{"id": "0002610", "video_name": "2e594fc0-dd73-5157-b1af-1b4d1c44a2d3", "text": "\u4eba\u4eec\u5728\u5e26\u6709\u54e8\u5854\u3001\u94c1\u4e1d\u7f51\u7684\u5899\u8fb9\u884c\u8d70\uff0c\u6c14\u6c1b\u538b\u6291\uff0c1960\u5e74\uff0c\u6444\u50cf\u673a\u5411\u4e0a\u79fb\u52a8\uff0c\u7535\u5f71\u5316"} +{"id": "0002611", "video_name": "2e5d9b06-51a9-5ed6-9e83-d77fe87955e0", "text": "\u7ed3\u6784\u5df2\u7ecf\u6539\u53d8\u5e76\u4e14\u53d8\u5f62\u4e86\u3002\n\nSource sentence: She speaks Chinese fluently and confidently. \n\n\u5979\u80fd\u591f\u6d41\u5229\u81ea\u4fe1\u5730\u8bf4\u4e2d\u6587\u3002"} +{"id": "0002612", "video_name": "2e5f8d3f-94c7-5a32-a765-695b60d1a647", "text": "\u52a8\u753b\u660e\u661f\u8de8\u8d8a\u5b87\u5b99\u4f20\u64ad\u7684\u65f6\u95f4\u6d41\u901d"} +{"id": "0002613", "video_name": "2e67c0e4-1814-5e81-bdd3-01b8921040b9", "text": "\u7a7f\u8d8a\u4e00\u4e2a\u9ed1\u767d\u5206\u79bb\u7684\u6d1e\u7a74\uff0c\u5e26\u6709\u8ff7\u5e7b\u7684\u51e0\u4f55\u56fe\u5f62\u3002"} +{"id": "0002614", "video_name": "2e6c8079-e71b-5bfc-ae42-c154d4c4aff8", "text": "\u4e00\u53ea\u4e0e\u9e21\u540c\u7b49\u5927\u5c0f\u7684\u5c0f\u6050\u9f99\uff0c\u5728\u5e7f\u88a4\u7684\u666f\u89c2\u4e2d\u4e0e\u9e21\u4e00\u8d77\u5a01\u98ce\u51db\u51db\u5730\u884c\u8d70\uff0c\u50cf\u76ae\u514b"} +{"id": "0002615", "video_name": "2e6dacd4-1031-5259-9485-40fa25dfb6f9", "text": "\u4e00\u888b\u94b1\u6389\u5728\u4e86\u9b54\u672f\u5e08\u8eab\u4e0a\u3002"} +{"id": "0002616", "video_name": "2e7292c2-ab1a-5a71-8368-3e878c73769d", "text": "DJ\u5728\u626d\u66f2\u7684\u706f\u5149\u524d\u9762\u8df3\u821e\u3002"} +{"id": "0002617", "video_name": "2e744475-bae5-50a1-9a2d-73bd4ab58319", "text": "\u4e00\u4e2a\u5b8c\u6574\u7684\u573a\u666f\u5c55\u793a\u4e86\u4e00\u56e2\u70df\u96fe\u805a\u5408\u6210\u4e86\u5229\u8389\u4e1d\u7684\u9762\u5b54\uff0c\u4ee5H.R.\u5409\u683c\u5c14\u7684\u827a\u672f\u98ce\u683c"} +{"id": "0002618", "video_name": "2e74d164-1310-59f2-821c-fd19d5b2ddc0", "text": "\u4e00\u4e2a\u4e71\u7cdf\u7cdf\u7684\u623f\u95f4\uff0c\u5230\u5904\u90fd\u662f\u6563\u843d\u7684\u8863\u670d\u548c\u7eb8\u5f20\u3002\u573a\u666f\uff1a\u7535\u5f71\u3002\n\nSource sentence: I like to eat spicy food, but sometimes it"} +{"id": "0002619", "video_name": "2e757909-8ee5-592c-841b-1af74d3e6632", "text": "\u98ce\u4e2d\u98d8\u52a8\u7684\u65d7\u5e1c\u3002"} +{"id": "0002620", "video_name": "2e761343-3c7e-5ae1-bfd1-3b46cb08000b", "text": "\u5357\u975e\u7f57\u672c\u5c9b\u76d1\u72f11964\u5e74\u7684\u7a7a\u4e2d\u5f71\u50cf\uff0c\u8d85\u5199\u5b9e\uff0c\u7535\u5f71\u611f\uff0c\u5bbd\u5c4f16\uff1a9\u3002"} +{"id": "0002621", "video_name": "2e7a9ef0-fd51-53c3-b432-8b18ea7e3b07", "text": "\u4e00\u5e45\u661f\u7a7a\u5929\u6587\u7684\u8096\u50cf\u5f0f\u52a8\u753b\u3002"} +{"id": "0002622", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "\u7f13\u6162\u79fb\u52a8\u7684\u6444\u50cf\u673a\u5728\u68cb\u76d8\u65b9\u683c\u4e0a\u6162\u6162\u79fb\u52a8\uff0c\u6709\u4e9b\u65b9\u683c\u5df2\u7ecf\u7834\u635f\uff0c\u5f53\u6444\u50cf\u673a\u5411\u5916\u79fb\u52a8"} +{"id": "0002623", "video_name": "2e7e2838-0a64-506e-8a7a-56feb53a5b49", "text": "\u4e00\u53ea\u5973\u6027\u811a\u8e29\u5728\u4e00\u5f2050\u7f8e\u5143\u949e\u7968\u4e0a\u3002"} +{"id": "0002624", "video_name": "2e7e53a0-e920-5c27-bce5-0185e35a03df", "text": "\u5723\u8bde\u6811\u7528\u5168\u767d\u8272\u706f\u9970\u548c\u88c5\u9970\u54c1\u88c5\u9970\uff0c\u5927\u591a\u6570\u4e3a\u6e29\u6696\u8272\u8c03\u3002"} +{"id": "0002625", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\uff1a\u7537\u4eba\u5728\u70df\u96fe\u4e0b\u6e38\u6cf3\u3002"} +{"id": "0002626", "video_name": "2e8101c7-fe4b-5b83-91a9-96afdf10368e", "text": "\u4e00\u4e2a\u9ed1\u6697\u3001\u5bc2\u9759\u7684\u6d77\u6d0b\u6df1\u5904\u3002\u7a81\u7136\uff0c\u4e00\u9053\u660e\u4eae\u7684\u95ea\u5149\u63ed\u793a\u4e86\u4e00\u6761\u751f\u7269\u53d1\u5149\u7684\u9c7f\u9c7c"} +{"id": "0002627", "video_name": "2e84c593-79e6-5ce1-8314-78673b411a9e", "text": "45\u5c81\u751f\u65e5\u86cb\u7cd5\uff0c\u4e0a\u9762\u6709\u4e00\u6735\u7ea2\u73ab\u7470\u3002"} +{"id": "0002628", "video_name": "2e9383bf-12a2-5055-92ba-c7a77be7364f", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u6b63\u6cbf\u7740\u8def\u9a91\u9a6c\u3002"} +{"id": "0002629", "video_name": "2e9a9b67-55ec-526c-b54b-de404298ae4b", "text": "\u7ed9\u6811\u548c\u690d\u88ab\u6dfb\u52a0\u8f7b\u5fae\u3001\u67d4\u548c\u7684\u6447\u6446\uff0c\u4f20\u8fbe\u4e1b\u6797\u4e2d\u751f\u547d\u7684\u611f\u89c9\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0002630", "video_name": "2e9f19d9-9e82-56fa-a1d2-d52e85e81227", "text": "\u4e0d\u660e\u98de\u884c\u7269\u3001\u7ed1\u67b6\u3001\u62c9\u666e\u5170\u3001\u82ac\u5170\u3001\u96ea\u666f\u3001\u767d\u5929\u3002"} +{"id": "0002631", "video_name": "2e9f7c1e-fa08-55d2-9ac0-f37d68313241", "text": "\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u957f\u7740\u4e00\u5934\u9ed1\u53d1\uff0c\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u7684\u53e4\u8001\u957f\u888d\u3002\u7ad9\u5728\u6751\u5e84\u7684\u8857\u9053\u4e0a\uff0c\u50cf"} +{"id": "0002632", "video_name": "2eaa409a-f941-5d7f-9a0d-11b78c360492", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u548c\u4e00\u4e2a\u795e\u79d8\u7684\u620f\u5267\u6027\u5929\u7a7a\uff0c\u4ed6\u4eec\u7f13\u6162\u5730\u8d70\u7740\u3002"} +{"id": "0002633", "video_name": "2eb06704-c4da-564b-b3e1-a1b2e50b3f3f", "text": "\u4e00\u7fa4\u7537\u4eba\u6392\u961f\u7b49\u5f85\u52a0\u5165\u7f8e\u56fd\u519b\u4e8b\u9632\u5fa1\u90e8\u961f\u3002"} +{"id": "0002634", "video_name": "2eb2649b-c3de-58a2-b7fc-c8ac459c2dd4", "text": "\u6e90\u53e5\uff1a\u50cf\u300a\u8718\u86db\u4fa0\uff1a\u5e73\u884c\u5b87\u5b99\u300b\u4e00\u6837\u7684\u620f\u5267\u6027\u52a8\u4f5c\uff0c\u7537\u4eba\u5728\u767d\u5929\u4ece\u57ce\u5e02\u5efa\u7b51\u7269\u4e2d\u8361"} +{"id": "0002635", "video_name": "2eb42021-116a-5b0e-8363-1329af912ec8", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u821e\uff0c8k\u5206\u8fa8\u7387\uff0c\u8d85\u903c\u771f\u6e32\u67d3\u3002"} +{"id": "0002636", "video_name": "2eb5a90c-f3ca-54d2-8303-85a2b25a2de3", "text": "\u6c49\u5821\u3001\u85af\u6761\u3001\u5e26\u5438\u7ba1\u7684\u73bb\u7483\u676f\u3001\u9e21\u5757\u548c\u9171\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u4e2a\u65b0\u6d88\u606f\u7684\u624b\u673a\u4e0d\u505c\u5730\u95ea"} +{"id": "0002637", "video_name": "2eb5b6fa-c959-518d-8dc5-f0b6291fab47", "text": "\u5e78\u5b58\u8005\u56e2\u4f53\u7684\u4f1a\u9762\uff0c\u9ed1\u6697\u548c\u5bb3\u6015\u7684\u666f\u8c61\u3002"} +{"id": "0002638", "video_name": "2eb9afe8-6bb9-5385-a1a9-f9b835ea698b", "text": "\u4f0a\u4e3d\u838e\u767d\u548c\u5979\u7684\u65f6\u4ee3\u662f\u82f1\u56fd\u5e1d\u56fd\u548c\u7ecf\u6d4e\u589e\u957f\u7684\u65f6\u671f\u3002"} +{"id": "0002639", "video_name": "2ebd2983-7f58-557a-b2bd-a2626d8b042a", "text": "\u7537\u5b69\u4eec\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "0002640", "video_name": "2ebd952b-019a-5ad8-98bc-c441b7b8306b", "text": "\u5982\u679c\u300a\u661f\u7403\u5927\u6218\u300b\u662f\u5b9d\u83b1\u575e\u7535\u5f71\uff0c\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\u7684\u573a\u666f\u3002"} +{"id": "0002641", "video_name": "2ec1afb1-f8a5-5fc1-b69c-c240ef7cce49", "text": "DNA\u5206\u5b50\u5728\u5730\u7403\u80cc\u666f\u4e0b\u65cb\u8f6c\u3002"} +{"id": "0002642", "video_name": "2ec3ecec-a938-5827-85e7-fc9f1d6827ff", "text": "\u5370\u5ea6\u795e\u7947\u6e7f\u5a46\u5728\u5c71\u9876\u8df3\u821e\u3002"} +{"id": "0002643", "video_name": "2ec43f9a-2648-5b7d-8c22-fb0d123856ef", "text": "\u5e26\u5b57\u6bcd\u7684\u6807\u5fd7\uff1a\u8986\u76d6\u5ea6\u5c0f\uff1aComic Sans\u5b57\u4f53"} +{"id": "0002644", "video_name": "2ec7ad77-a6b5-54e7-b9cc-810718761153", "text": "\u4e00\u4e2a\u4eba\u5728\u5c71\u9876\u7948\u7977\uff0c\u66f4\u591a\u7684\u4eba\u5c06\u53cc\u624b\u653e\u5728\u8f66\u4e0a\uff0c\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "0002645", "video_name": "2ec901ac-52da-5e15-a7c2-f376800219a0", "text": "\u4e00\u8258\u592a\u7a7a\u8239\u5728\u7ea2\u8272\u661f\u7403\u4e0a\u770b\u5230\u4e86\u60ca\u4eba\u7684\u666f\u8c61\u3002"} +{"id": "0002646", "video_name": "2ecd4b51-7601-5c90-b2e7-1e682c121e77", "text": "\u5206\u88c2\u7684\u62fc\u56fe\uff0c\u788e\u7247\u6563\u4e71\u4e14\u4e0d\u8fde\u8d2f\u3002"} +{"id": "0002647", "video_name": "2ed4c826-e5dc-52c4-bc56-d5bc08884dc1", "text": "\u57ce\u5e02\u6ca6\u9677\u4e86\uff0c\u62c9\u54c8\u4f2f\u548c\u5979\u7684\u5bb6\u4eba\u5e78\u514d\u4e8e\u96be\u3002"} +{"id": "0002648", "video_name": "2ed822e7-6c25-5147-a8fb-816dd28f60d0", "text": "\u753b\u9762\uff1a\u6444\u50cf\u673a\u6162\u6162\u5730\u626b\u8fc7\u963f\u5c14\u5351\u65af\u5c71\u8109\u4e0a\u7684\u65e5\u51fa\uff0c\u7f13\u6162\u5730\u62c9\u8fd1\u5230\u5ce1\u8c37\u4e2d\u7684\u4e00\u4e2a"} +{"id": "0002649", "video_name": "2ee44db4-e0d9-5a88-8fa4-cf50e29df71d", "text": "\u751f\u6210\u4e00\u5f20\u706b\u5f71\u5fcd\u8005\u63a5\u543b\u96cf\u7530\u7684\u56fe\u7247\u3002"} +{"id": "0002650", "video_name": "2ee6be3d-4408-5558-8db5-8a783b520725", "text": "\u5851\u6599\u4eba\u3001\u5851\u6599\u673a\u5668\u4eba\u8d70\u5728\u8857\u4e0a\uff0c1967\u5e74\u5929\u9876\u5f69\u8272\u7535\u89c6\u4e2d\u64ad\u51fa\u4e00\u5219\u756a\u8304\u610f\u9762\u5e7f\u544a\uff0c\u4e2d\u7b49\u957f\u666f\uff0c\u6444\u50cf"} +{"id": "0002651", "video_name": "2eeae976-7bd8-58c0-977e-937ca4c5c079", "text": "\u5f3a\u5927\u7684\u6c7d\u8f66\u53d1\u52a8\u673a\u548c\u6c7d\u8f66\u53d1\u52a8\u673a\u6cb9"} +{"id": "0002652", "video_name": "2eebb9aa-a9d1-5f60-9e27-2182fcbc671d", "text": "\u6d77\u6d0b\u6c34\u9000\u6f6e\u7684\u7535\u5f71\u89c6\u9891\uff0c\u524d\u65b9\u662f\u9ad8\u8038\u7684\u6d77\u5578\u6d6a\u6f6e\u3002"} +{"id": "0002653", "video_name": "2ef6a7df-7e4a-5abb-9a92-dd3be89768d4", "text": "\u4e00\u4e2a\u5b69\u5b50\u8bd5\u56fe\u5403\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u592a\u9633\u3002"} +{"id": "0002654", "video_name": "2ef8ecdd-8cc1-5d29-9aa4-b49d077fffaa", "text": "\u7528\u6d82\u9e26\u98ce\u683c\u5199\u51fa\u201c\u79d1\u6280\u56ed\u533a\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "0002655", "video_name": "2efa3582-58b2-536f-83b4-1965f774b1cc", "text": "\u4e00\u53ea\u673a\u5668\u4eba\u5728\u6708\u4eae\u4e0a\u548c\u732b\u54aa\u73a9\u800d\u3002"} +{"id": "0002656", "video_name": "2f01f8b6-2658-5205-af9b-ca5ba25f8458", "text": "\u4e00\u4e2a\u7537\u4eba\u63a5\u542c\u7535\u8bdd\uff0c\u7136\u540e\u5728\u79c1\u4eba\u623f\u95f4\u91cc\u8bb2\u8bdd\u3002"} +{"id": "0002657", "video_name": "2f080927-ad35-5b33-a569-1419fe06e213", "text": "\u63cf\u8ff0Seebu\u8fd9\u4e2a\u4f1a\u8bf4\u8bdd\u7684\u82f9\u679c\u5750\u5728\u4e1b\u6797\u6811\u4e0a\uff0c\u9762\u5e26\u6109\u5feb\u7684\u8868\u60c5\uff0c\u51c6\u5907\u4e0e\u5b69\u5b50\u4eec\u5206\u4eab\u5b83\u7684\u5065"} +{"id": "0002658", "video_name": "2f0e8a53-3f54-5510-81f9-94e8b5b55407", "text": "\u4eba\u6216\u4f01\u4e1a\u57283D\u52a8\u753b\u7535\u5f71\u4e2d\u5598\u606f\u3002"} +{"id": "0002659", "video_name": "2f0f26a3-ea01-5be2-8600-5089a29f711f", "text": "\u4e24\u5f20\u9762\u5b54\u5728\u6c99\u6f20\u4e2d\u878d\u5408\uff0c\u62bd\u8c61\u7684\u827a\u672f\u6c1b\u56f4\uff0c\u7a7f\u7740\u7ea2\u767d\u670d\u88c5\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u7684\u5149\u7ebf\u3002"} +{"id": "0002660", "video_name": "2f13647a-7993-5518-aad1-8300df641d08", "text": "\u7406\u89e3\uff0c\u5c31\u50cf\u4e24\u4e2a\u62fc\u56fe\u788e\u7247\u62fc\u63a5\u5728\u4e00\u8d77\u3002"} +{"id": "0002661", "video_name": "2f1535c0-375c-5944-a9b9-1329e453a34a", "text": "\u5973\u4eba\u8eba\u5728\u68ee\u6797\u5730\u9762\u4e0a\uff0c\u773c\u775b\u7741\u5f00\uff0c\u5634\u91cc\u6d41\u51fa\u4e00\u6ef4\u8840\u3002\u8d85\u903c\u771f\u3001\u903c\u771f\u3001\u7535\u5f71\u98ce\u683c\u3001HDR"} +{"id": "0002662", "video_name": "2f19958b-0ed2-5c88-8e64-b00789a61304", "text": "\u4ee5\u4f4e\u89d2\u5ea6\u805a\u7126\u6b4c\u624b\uff0c\u6355\u6349\u4ed6\u4eec\u54c0\u4f24\u7684\u8868\u60c5\uff0c\u4ee5\u67d4\u548c\u7684\u80cc\u666f\u6a21\u7cca\u4e3a\u80cc\u666f\u3002"} +{"id": "0002663", "video_name": "2f1dce37-859f-5fc3-8439-916a8cda31d1", "text": "\u5728\u57ce\u5e02\u4e2d\u5fc3\u753b\u4e00\u5bb6\u7199\u7199\u6518\u6518\u7684\u81ea\u884c\u8f66\u5e97\uff0c\u987e\u5ba2\u5728\u5468\u56f4\u6d4f\u89c8\u3002"} +{"id": "0002664", "video_name": "2f267be1-7fd1-56a3-9765-388e9830f15d", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u6d77\u5cb8\u8d70\u5411\u6751\u5e84\uff0c\u65f6\u95f4\u662f\u767d\u5929\uff0c\u4ece\u7537\u4eba\u7684\u80cc\u540e\u770b\uff0c\u65f6\u95f4\u662f\u516c\u5143\u524d0\u5e74\uff0c\u8863\u670d\u662f\u767d\u8272\u7684\u3002"} +{"id": "0002665", "video_name": "2f30899e-b2ac-5dfe-9a02-e79cb9d54b5e", "text": "\u4e00\u4e2a\u4eba\u770b\u7740\u955c\u5b50\u91cc\u7684\u6076\u9b54\uff0c24 \u5e27\u6bcf\u79d2\uff0c\u79fb\u52a8 5\u3002"} +{"id": "0002666", "video_name": "2f35a1c5-6fa7-5d0a-b2f4-b29629f680d9", "text": "\u4e00\u540d\u7a7f\u7740\u767d\u8272\u8fde\u8863\u88d9\u7684\u5973\u5b69\u8eba\u5728\u9152\u5e97\u5e8a\u4e0a\uff0c\u767d\u8272\u5e8a\u5355\u94fa\u5f00\u7740\u3002"} +{"id": "0002667", "video_name": "2f3764d0-e0b1-516b-a0e4-8608aae288d8", "text": "\u5feb\u4e50\u7684\u5927\u9ec4\u8702\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0002668", "video_name": "2f433c1e-7790-53e2-bd61-1aca76f17524", "text": "\u963f\u51ef\u5170\uff08Ikran\uff09\u6765\u81ea\u300a\u963f\u51ef\u5170\u7684\u4f20\u8bf4\uff1a\u6c34\u4e4b\u8def\u300b\u3002"} +{"id": "0002669", "video_name": "2f48cc27-5cca-5c85-a666-374f87103837", "text": "\u4e00\u4f4d\u4e9a\u6d32\u5973\u5b69\u5728\u591c\u5e02\u6e38\u89c8\u65f6\u559d\u5564\u9152\u3002"} +{"id": "0002670", "video_name": "2f4a636a-65b9-590e-90c6-efd39cac5090", "text": "\u4e00\u4e2a\u4fe1\u53f7\u4e0d\u65ad\u95ea\u70c1\u7684\u77e2\u91cf\u793a\u6ce2\u5668\u3002"} +{"id": "0002671", "video_name": "2f52ba42-6fe4-5566-b00a-bfb32b554157", "text": "\u5b69\u5b50\u7a7f\u7740\u7a7a\u59d0\u670d\u88c5\uff0c\u5728\u592a\u7a7a\u548c\u5b87\u5b99\u4e2d\u98de\u884c\u3002"} +{"id": "0002672", "video_name": "2f542a68-e17a-57fa-82d1-536a68e74c38", "text": "\u80cc\u666f\u662f\u8d5b\u535a\u670b\u514b\u3002\u4ece\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002\u4e2d\u592e\u7684\u673a\u5668\u4eba\u7f13\u6162\u884c\u8d70\u3002"} +{"id": "0002673", "video_name": "2f57b363-ca8e-5933-b99d-b503ff0dcd00", "text": "\u4e00\u90e8\u5173\u4e8e\u4e00\u4e2a\u5927\u5b66\u751f\u5bf9\u81ea\u5df1\u4e13\u4e1a\u4e0d\u6ee1\u610f\u7684\u77ed\u7247\u3002"} +{"id": "0002674", "video_name": "2f5f68ab-1c75-5bd1-b9de-9de8318fd69c", "text": "\u5723\u8bde\u8282\uff0c\u795e\u5947\u7684\u5c0f\u9547\uff0c\u4eba\u4eec\u8d70\u8def\uff0c\u7f8e\u4e3d\u7684\u88c5\u9970\u623f\u5c4b\uff0c\u5e7f\u89d2\u62cd\u6444\uff0c\u706f\u5149\uff0c\u5723\u8bde"} +{"id": "0002675", "video_name": "2f5fb8bc-c6aa-530b-9235-c0251e412922", "text": "\u4e00\u4e2a\u6f06\u9ed1\u800c\u6709\u98ce\u66b4\u7684\u591c\u665a\uff0c\u4e00\u4f4d\u5b64\u72ec\u7684\u4eba\u8d70\u5728\u4e00\u6761\u8352\u51c9\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "0002676", "video_name": "2f68d22b-3d72-5a41-93e6-100f94637eec", "text": "\u591c\u665a\u68ee\u6797\u4e2d\u4e00\u4e2a\u9ed1\u8272\u4eba\u5f71\u5f88\u6709\u7535\u5f71\u611f\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with locals. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a"} +{"id": "0002677", "video_name": "2f6a7aca-4132-5267-8548-5b9d6d8f625f", "text": "18\u4e16\u7eaa\u7684\u5e7d\u7075\u9ed1\u8272\u9a6c\u8f66\u75314\u5339\u9ed1\u9a6c\u62c9\u7740\uff0c\u5728\u6709\u98ce\u7684\u6ee1\u6708\u6050\u6016\u68ee\u6797\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "0002678", "video_name": "2f6dd25b-65a1-5fd6-bac6-279f93076506", "text": "\u4e30\u7530\u9a6c\u838e\u8fbe\u5728\u57ce\u5e02\u91cc\u884c\u9a76\u3002"} +{"id": "0002679", "video_name": "2f745ae3-ee30-5fc6-b829-5de507309de4", "text": "\u5c0f\u5973\u5b69\u7167\u6599\u82b1\u56ed\uff0c\u7ed9\u690d\u7269\u6d47\u6c34\u5e76\u5c0f\u5fc3\u5730\u9664\u8349\uff0c\u5c55\u793a\u5979\u7684\u4e13\u6ce8\u548c\u517b\u80b2\u7cbe\u795e\u3002"} +{"id": "0002680", "video_name": "2f7862a4-cb7d-51a3-abae-f7d238c61baa", "text": "\u672a\u6765\u519b\u961f\u5728\u6c99\u6f20\u4e2d\uff0c\u6234\u7740\u9762\u5177\uff0c\u5c18\u571f\u98de\u626c\uff0c\u5f7c\u5f97\u00b7\u7ef4\u7279\u91d1\u98ce\u683c\uff0c\u7279\u8272\u7535\u5f71\u3002"} +{"id": "0002681", "video_name": "2f7a2596-1ba1-5d46-bbdf-81ade0951558", "text": "\u4e00\u6240\u88ab\u65f6\u95f4\u9057\u5f03\u7684\u5927\u5b66\u5448\u73b0\u51fa\u8d85\u771f\u5b9e\u7684\u753b\u9762\u3002\u5899\u58c1\u4e0a\u7684\u6c34\u6ce5\u4e0d\u65ad\u8131\u843d\uff0c\u8001\u5e08\u548c\u5b66\u751f\u4eec\u6b63\u8bd5\u56fe"} +{"id": "0002682", "video_name": "2f83a6d0-53a8-51e2-ae9b-939ec19905cc", "text": "\u5e03\u6d1b\u514b\u00b7\u83b1\u65af\u7eb3\u548c\u6606\u6c40\u00b7\u5854\u4f26\u8482\u8bfa\u4e00\u8d77\u5403\u7740\u829d\u58eb\u6c49\u5821\u3002"} +{"id": "0002683", "video_name": "2f86a04d-5a31-559d-ae49-e298c9b04e2d", "text": "\u4e00\u4e2a\u5357\u74dc\u4eba\u5f62\u751f\u7269\u5c45\u4f4f\u5728\u6d1e\u7a74\u91cc\u3002\u5979\u5728\u6d1e\u53e3\u5199\u65e5\u8bb0\uff0c\u4ee5\u300a\u7535\u952f\u4eba\u300b\u52a8\u753b\u7684\u98ce\u683c\u3002"} +{"id": "0002684", "video_name": "2f86c5bd-b302-5eb6-97c0-295496559672", "text": "\u5149\u660e\u5929\u4f7f\u5927\u6218\u5730\u72f1\u6076\u9b54\u3002"} +{"id": "0002685", "video_name": "2f8c1073-9722-571e-ae56-d775f083fa94", "text": "\u4eba\u7fa4\u805a\u96c6\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u7b49\u5f85\u7740\u67d0\u4e2a\u4eba\u3002\u4ed6\u4eec\u5bb3\u6015\u8fd9\u662f\u4e00\u4e2a\u975e\u5e38\u9ed1\u6697\u3001\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "0002686", "video_name": "2f8eb22a-086c-5e18-bc9e-665ef3c7d7c4", "text": "\u7070\u9ed1\u8272\u7684\u5783\u573e\u98ce\u590d\u53e4\u80cc\u666f\uff0c\u4e2d\u95f4\u6709\u4ece\u4e2d\u6563\u53d1\u51fa\u6765\u7684\u7f8e\u4e3d\u7684\u73ab\u7470\u7c89\u7ea2\u8272\u83b2\u82b1\u548c"} +{"id": "0002687", "video_name": "2f94ab76-7d78-5c5c-91a0-b1230e8f1e9e", "text": "\u798f\u5efa\u53f7\u822a\u7a7a\u6bcd\u8230\u6b63\u5728\u6d77\u4e0a\u3002"} +{"id": "0002688", "video_name": "2f94ade9-6b9b-53e2-982a-d0b13bd1f556", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u767d\u8272\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "0002689", "video_name": "2f974783-1057-54dc-b33a-b4ce4e69732a", "text": "\u6307\u5357\u5c06\u4e00\u9879\u4f7f\u547d\u4ea4\u4ed8\u7ed9\u739b\u96c5\uff0c\u4ed6\u900f\u8fc7\u9510\u5229\u7684\u76ee\u5149\u53cd\u6620\u51fa\u4efb\u52a1\u7684\u91cd\u8981\u6027\u3002\u739b\u96c5\u4ee5\u575a\u5b9a\u548c\u4e0d\u786e\u5b9a\u7684\u6001\u5ea6\u63a5"} +{"id": "0002690", "video_name": "2f988730-290b-523a-bdf1-c2dc9300bad8", "text": "Translation: \u9876\u90e8\u7684\u963f\u5179\u7279\u514b\u6218\u58eb\u5728\u91d1\u5b57\u5854\u4e0a\uff0c\u7535\u5f71\u5316"} +{"id": "0002691", "video_name": "2f9bb35d-47cd-552f-9b3b-65031af5780c", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u6709\u4e00\u4e2a\u60a3\u8005\u51fa\u73b0\u4ee5\u4e0b\u75c7\u72b6\uff1a\u53d1\u70e7\u3001\u5173\u8282\u75bc\u75db\u3001\u5934\u75db\u3001\u80cc\u75db\u3001\u8179"} +{"id": "0002692", "video_name": "2fa1d332-0b53-535e-a5ca-96b278963785", "text": "\u5c55\u793a\u4e09\u53ea\u6d77\u9f9f\u5728\u6d77\u4e2d\u6ed1\u884c\u7684\u89c6\u9891\u3002"} +{"id": "0002693", "video_name": "2fa7269b-4a37-5e9e-9dae-ff6e48f40e32", "text": "\u4e24\u4e2a\u57c3\u53ca\u5973\u4eba\u6447\u52a8\u6247\u5b50\u3002"} +{"id": "0002694", "video_name": "2fb7e368-05b2-5110-a997-366ceb1218d6", "text": "\u5f00\u573a\u955c\u5934\uff085 \u79d2\uff09\uff1a\u4ee5\u4e00\u4e2a\u4eba\u5728\u5b81\u9759\u7684\u81ea\u7136\u73af\u5883\u4e2d\u51a5\u60f3\u7684\u5b81\u9759\u5f62\u8c61\u5f00\u59cb\uff0c\u5c55\u793a\u548c\u5e73\u4e0e\u5e73\u8861\u3002"} +{"id": "0002695", "video_name": "2fb8ba55-13fb-51c2-80bc-c59121b2537d", "text": "\u4e2d\u4e16\u7eaa\u9152\u9986\u5c31\u50cf\u5728\u5deb\u5e08\u6e38\u620f\u4e2d\u3002"} +{"id": "0002696", "video_name": "2fb8d80d-6782-5659-aef5-6e5c6324f70d", "text": "\u795e\u5947\u82b1\u5349\u7684\u65b0\u95fb\u5728\u793e\u533a\u4e2d\u4f20\u5f00\u4e86\uff0c\u6bcf\u4e2a\u4eba\u90fd\u8feb\u4e0d\u53ca\u5f85\u5730\u7b49\u5f85\u5b83\u4eec\u5f00\u82b1\u7684\u90a3\u4e00\u5929\u3002"} +{"id": "0002697", "video_name": "2fbd88fc-1d23-5e62-bc39-8c28afaa47c5", "text": "\u8c6a\u534e\u8fd0\u52a8\u8f66\u6fc0\u8fdb\u7684\u7ebf\u6761\uff0c\u7528\u9ad8\u5bf9\u6bd4\u5ea6\u3001\u9ad8\u94a5\u5319\u5149\u7ebf\u548c\u6d45\u666f\u6df1\u62cd\u6444\uff0c\u7ec6\u8282\u9f50\u5907\uff0c\u8fd0\u52a8\u611f"} +{"id": "0002698", "video_name": "2fc1bdb5-1e2e-5744-b02f-f8f46cfff957", "text": "\u7535\u5f71\u6d77\u62a5\u300a\u6f2b\u5a01\u961f\u957f\u6f2b\u5a01\u300b\u5c55\u73b0\u51fa\u54c0\u4f24\u7684\u529b\u91cf\uff0c\u9759\u6b62\u7684\u5f62\u8c61\u4e2d\u6ca1\u6709\u5e03\u83b1\u00b7\u62c9\u68ee\u91d1\u53d1\u95ea"} +{"id": "0002699", "video_name": "2fc73134-5e5e-5f2a-8173-f6821568247a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u756a\u8304\u690d\u7269\u4ece\u5730\u91cc\u751f\u957f\u51fa\u6765\u3002"} +{"id": "0002700", "video_name": "2fce6152-d40d-5763-8878-d6526d14ef55", "text": "\u8d85\u903c\u771f\u7684\u871c\u8702\u98de\u5f97\u8ddd\u79bbCRT\u663e\u793a\u5668\u5c4f\u5e55\u5f88\u8fd1\uff0c\u5c4f\u5e55\u64ad\u653e\u9ed1\u767d\u76844K\uff0cAR 16:9\u7684\u8282\u76ee"} +{"id": "0002701", "video_name": "2fd5d2d2-da23-54e6-9dac-a0752ad82f24", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u68ee\u6797\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u53d1\u5149\u7684\u8611\u83c7\u7167\u4eae\u4e86\u9053\u8def\uff0c\u6c11\u95f4\u4f20\u8bf4\u7684\u751f\u7269\u5728\u9634\u5f71\u4e2d\u6f5c"} +{"id": "0002702", "video_name": "2fe5c9de-b0e7-5c9f-ace1-0913c86e5cb0", "text": "\u53f2\u8482\u82ac\u00b7\u5e93\u91cc\u6467\u6bc1\u4e86\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u7684\u811a\u8e1d\u3002"} +{"id": "0002703", "video_name": "2fe814f8-9313-5e0f-ba47-9a8f73aea506", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u8349\u5730\u4e0a\u5171\u540c\u8d70\u5411\u8fdc\u65b9\uff0c\u8eab\u5904\u9633\u5149\u548c\u5f69\u8679\u4e4b\u4e0b\u3002"} +{"id": "0002704", "video_name": "2ff1dc03-1e80-579c-95b7-6b514b0c031c", "text": "\u5e74\u8f7b\u5973\u5b69\uff0c\u6709\u7740\u660e\u4eae\u7684\u5e03\u83b1\u6069\u8272\u773c\u775b\u548c\u73ab\u7470\u8272\u7684\u8138\u988a\u3002"} +{"id": "0002705", "video_name": "2ff2acc0-2cf4-5dae-805f-85c7d78a42d4", "text": "\u5411\u5927\u5bb6\u95ee\u597d\u5e76\u6253\u62db\u547c\u3002"} +{"id": "0002706", "video_name": "2ff52c4c-e6ed-5470-88be-be043852c890", "text": "\u751f\u6210\u4e00\u5e45\u6c1b\u56f4\u611f\u5341\u8db3\u7684\u4e94\u6761\u609f\u50cf\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u6570\u4e2a\u5492\u672f\u7b26\u53f7\u7684\u5c4f\u969c\uff0c\u5c55\u793a\u4ed6\u7684\u9632"} +{"id": "0002707", "video_name": "2ff6bdfd-3714-57ad-ac96-4a34c0b7d2b5", "text": "\u9713\u8679\u6c14\u7403\u5728\u591c\u7a7a\u4e2d\u98d8\u8361\uff0c\u87ba\u65cb\u6868\u65cb\u8f6c\u7740\u5ba3\u4f20\u4ea7\u54c1\u3002"} +{"id": "0002708", "video_name": "2ffcae17-f40d-594c-81a3-58812aff197c", "text": "but none have been successful in locating the mythical underground city.\n\n\u591a\u5e74\u6765\uff0c\u8bb8\u591a\u63a2\u9669\u961f\u51fa\u53d1\u5bfb\u627e\u963f\u52a0\u5c14\u5854\uff0c\u4f46\u90fd\u6ca1\u6709\u6210\u529f\u627e\u5230\u8fd9\u4e2a\u795e\u79d8\u7684\u5730"} +{"id": "0002709", "video_name": "2ffd6f0e-9552-5c82-bc38-5ed8b913d61c", "text": "17\u4e16\u7eaa\u65f6\uff0c\u4e00\u4f4d\u5929\u4e3b\u6559\u4fee\u58eb\uff0c\u4e5f\u662f\u73ab\u7470\u5341\u5b57\u4f1a\u6210\u5458\uff0c\u5411\u4e00\u4f4d\u4fee\u5973\u6559\u6388\u70bc\u91d1\u672f\u3002\u7537\u5973\u6027\u522b"} +{"id": "0002710", "video_name": "3002c696-6a79-5ad7-b5f9-0318d30e7895", "text": "\u5b54\u96c0\u610f\u8bc6\u5230\u6c60\u5858\u6bcf\u4eba\u53ea\u80fd\u5b9e\u73b0\u4e00\u4e2a\u613f\u671b\uff0c\u4ed6\u65e0\u6cd5\u64a4\u9500\u4ed6\u6240\u505a\u7684\u4e8b\u60c5\u3002"} +{"id": "0002711", "video_name": "30123110-bcaf-571a-8ba9-6945b7d62779", "text": "\u7537\u4eba\u5728\u5351\u5c14\u6839\u8857\u5934\u602a\u5f02\u5730\u5feb\u901f\u98a4\u6296\u8d77\u6765\u3002"} +{"id": "0002712", "video_name": "301266f2-0354-5996-b327-f358787888eb", "text": "\u9c8d\u52c3\u00b7\u7f57\u65af\u5728\u57ce\u5e02\u5730\u94c1\u7ad9\u5730\u4e0b\u55b7\u6d82\u4e00\u5835\u5899\u3002"} +{"id": "0002713", "video_name": "3013e1a2-3ad7-54a5-a323-c1f5e5df804a", "text": "\u5979\u6253\u5f00BeautoNomi\u5e94\u7528\u7a0b\u5e8f\u5e76\u9884\u7ea6\u4e86\u4e00\u4f4d\u53d1\u578b\u5e08\u3002"} +{"id": "0002714", "video_name": "30151202-3022-50f7-8c37-884f49ffb605", "text": "\u7a7a\u62cd\u591c\u665a\u5c9b\u5c7f\uff0c\u4e09\u5ea7\u706b\u846c\u53f0\uff0c\u70df\u96fe\u5728\u6cb3\u9762\u4e0a\u6d41\u6dcc\uff0c\u8d85\u5bbd\u89d2\u5ea6\u955c\u5934\uff0c\u6781\u5176\u903c\u771f"} +{"id": "0002715", "video_name": "301dafdd-2aec-539a-bb60-18411eafc9ad", "text": "\u673a\u5668\u4eba\u5750\u5728\u738b\u5ea7\u4e0a\uff0c\u5c55\u73b0\u51fa\u7edf\u6cbb\u548c\u5c0a\u656c\u7684\u6c14\u52bf\u3002"} +{"id": "0002716", "video_name": "3021b470-7b35-51c7-a5cf-a19622d33075", "text": "\u72d7\u7a7f\u7740\u72fc\u706b\u5939\u514b\u548c\u84dd\u8272\u886c\u886b\u3002"} +{"id": "0002717", "video_name": "302300ab-987b-581f-904d-be8ec5b56108", "text": "\u5b69\u5b50\u4eec\u5728\u6d77\u91cc\u73a9\u6c34\u3002"} +{"id": "0002718", "video_name": "3027cd97-a1d5-55c0-b55c-73fc52b4e113", "text": "\u4e00\u4e2a\u8d28\u91cf\u9ad8\u7684\u77ed\u89c6\u9891\uff0c\u4e00\u4e2a\u4eba\u8fd1\u8ddd\u79bb\u5206\u6790\u80a1\u7968\u3002"} +{"id": "0002719", "video_name": "302d7f12-bce5-591f-bae0-8d3373733be8", "text": "\u4e16\u754c\u9b54\u517d\u4ea1\u7075\u89d2\u8272\u5728\u5927\u6559\u5802\u6f14\u594f\u7ba1\u5f26\u4e50\u3002\u5168\u666f\u5c55\u793a\u5de8\u5927\u7684\u573a\u666f\u548c\u5f26\u4e50\u3001\u94dc\u7ba1"} +{"id": "0002720", "video_name": "304365a6-c590-559e-bb2b-c1a075d15baa", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u88ad\u51fb\u5df4\u57fa\u65af\u5766\u9646\u519b\u53c2\u8c0b\u957f\u963f\u897f\u59c6\u00b7\u7a46\u5c3c\u5c14\u5c06\u519b\u3002\u4f0a\u59c6\u5170\u00b7\u6c57"} +{"id": "0002721", "video_name": "304bc481-c5ee-541e-885f-1d36aba98f61", "text": "\u4e00\u540d\u5b55\u5987\u62ff\u7740\u4e00\u6839\u957f\u7ebf\u7f06\u7684\u7535\u8bdd\u542c\u7b52\u4e0e\u5b50\u5bab\u4e2d\u7684\u80ce\u513f\u4ea4\u6d41\u3002"} +{"id": "0002722", "video_name": "304c6c85-6662-59aa-8251-292ec54bde3c", "text": "\u6444\u50cf\u673a\u5728\u6708\u5149\u4e0b\u7684\u4e07\u5723\u8282\u5893\u5730\u5468\u56f4\u79fb\u52a8\uff0c\u62cd\u6444\u4e00\u4f4d22\u5c81\u7f8e\u4e3d\u7684\u3001\u53d1\u5149\u7684\u534a\u900f\u660e\u5973\u9b3c\uff0c"} +{"id": "0002723", "video_name": "305e3953-aa39-5294-b822-2476b23c5ca8", "text": "\u9996\u5148\u5c55\u793a\u592a\u9633\u7cfb\uff0c\u7136\u540e\u5c55\u793a\u571f\u661f\u73af\u7684\u8fd0\u52a8\uff0c\u6700\u540e\u7f29\u653e\u81f3\u5916\u592a\u7a7a\uff0c\u5c55\u793a\u9ed1\u6d1e\u3002"} +{"id": "0002724", "video_name": "305f53f2-6be8-5bcc-8be1-0f09a50580ff", "text": "\u4e00\u5ea7\u5927\u578b\u5efa\u7b51\uff0c\u4e2d\u95f4\u6709\u4e00\u683910\u7c73\u9ad8\u7684\u5355\u67f1\uff0c\u6709\u4e00\u4fa7\u697c\u68af\u548c\u5e95\u90e8\u7684\u7011\u5e03\u3002"} +{"id": "0002725", "video_name": "306ad2e4-7ffc-5e4f-aa10-7871cb863b96", "text": "\u5730\u7403\u4ece\u592a\u7a7a\u4e2d\u76844K\u7279\u5199\u955c\u5934\u3002"} +{"id": "0002726", "video_name": "307027d2-9bf6-5990-87f7-e4f7fd0b9f96", "text": "\u4e00\u4e2aLOGO\u3002\u4e2d\u95f4\u6709ZM\u3002\u5915\u9633\u4e0b\u7684\u5149\u7ebf\uff0c\u5fae\u8ddd\u62cd\u6444\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u8d85\u73b0\u5b9e\u3002"} +{"id": "0002727", "video_name": "307207b9-d162-50bf-90d2-a4175632adf3", "text": "\u4e00\u4f4d\u8eab\u6750\u59e3\u597d\u7684\u7f8e\u5973\u7a7f\u7740\u745c\u4f3d\u670d\u8df3\u821e\u3002"} +{"id": "0002728", "video_name": "3081f33e-42a3-5e04-9ab1-8fe9344c3a2c", "text": "\u80cc\u666f\u95ea\u7535\u7684\u52a8\u6f2b\u98ce\u683c"} +{"id": "0002729", "video_name": "3087fb9d-f64f-5d33-b07d-0fc8ad64c302", "text": "\u5236\u4f5c\u4e00\u4e2a\u7535\u5f71\u5f0f\u753b\u9762\uff0c\u4e00\u4e2a\u5df4\u52d2\u65af\u5766\u5973\u5b69\u8eba\u5728\u88ab\u4e00\u5708\u706b\u56f4\u7740\u7684\u5730\u4e0a\uff0c\u5468\u56f4\u6709\u4eba\u62ff\u7740\u624b\u673a"} +{"id": "0002730", "video_name": "3087fc91-b60b-5ec1-ac1c-d98ab0af5324", "text": "\u9ed1\u6697\u8857\u9053\u7684\u4e00\u89d2\u80cc\u666f"} +{"id": "0002731", "video_name": "308aa3bc-454c-5546-b53e-a7c1495c1482", "text": "\u54e5\u65af\u62c9\u653b\u51fb\u4e86\u4e00\u5bb6\u6ce2\u666e\u65af\u9e21\u9910\u5385\u3002"} +{"id": "0002732", "video_name": "308f2634-602a-51c7-90ae-843c20e32312", "text": "\u4e00\u4e2a\u7a7f\u7740\u5df4\u6d1b\u514b\u98ce\u683c\u8863\u670d\u7684\u82f1\u4fca\u5929\u4f7f\u548c\u6b66\u58eb\u5728\u5bab\u6bbf\u91cc\u559d\u9152\uff0c\u6b66\u58eb\u7a7f\u7740\u8d1d"} +{"id": "0002733", "video_name": "30930991-3a87-546f-8e0b-27eaaf0b89ea", "text": "\u9053\u8def\uff0c\u5e9f\u5f03\u7684\u57ce\u9547\uff0c\u96fe\uff0c\u9ed1\u6697\uff0c\u591c\u665a\u3002"} +{"id": "0002734", "video_name": "309558dd-ad5c-52fb-a819-962f932844bf", "text": "\u9e1f\u513f\u7fe9\u7fe9\u8d77\u821e\uff0c\u8d85\u903c\u771f\uff1b\u9ad8\u5ea6\u8be6\u7ec6\uff1b\u7535\u5f71\u822c\u7684\uff1b\u6e05\u6670\u7684\u56fe\u50cf\uff1b\u6d41\u7545\u7684\uff1b\u8d85\u7ea7\u9510\u5229"} +{"id": "0002735", "video_name": "309d4b05-cedc-5c0e-aac1-425b27d6b07b", "text": "\u7a7f\u7740JK\u6821\u670d\u7684\u4e9a\u6d32\u5973\u5b69\u6234\u7740\u773c\u955c\u3002"} +{"id": "0002736", "video_name": "30a5efea-d76c-5d28-8a3d-543d410c459e", "text": "\u5931\u843d\u5728\u68a6\u4e2d\u8fd9\u9996\u6b4c\u7684\u52a8\u6001\u89c6\u9891\u7531TMons\u5236\u4f5c\u3002"} +{"id": "0002737", "video_name": "30a9360e-eb88-5ae2-9624-ebac02692125", "text": "\u732b\u5934\u9e70\u8bb2\u8bdd\uff0c\u5634\u5df4\u52a8\u7740\uff0c\u773c\u775b\u548c\u5934\u4e5f\u5728\u52a8\u3002"} +{"id": "0002738", "video_name": "30aabd6d-ec47-5622-bd8e-918c91950ce2", "text": "\u5973\u5b69\u7a7f\u7740\u7d2b\u8272\u725b\u4ed4\u77ed\u88e4\uff0c\u6325\u7740\u4e00\u628a\u65a7\u5934\uff0c4k\u5206\u8fa8\u7387\u3002"} +{"id": "0002739", "video_name": "30b4ad11-9921-58f5-aefc-dbfa5ea81934", "text": "\u8bf7\u8ba9\u56fe\u7247\u4e2d\u7684\u7537\u58eb\u628a\u9ed1\u8272\u773c\u955c\u4ece\u4ed6\u4eec\u5f53\u524d\u7684\u4f4d\u7f6e\u53d6\u4e0b\u6765\u3002\n\nSource sentence: I need to book a flight to Beijing for next Monday. \n\u6211\u9700\u8981\u9884\u8ba2\u4e0b\u5468"} +{"id": "0002740", "video_name": "30b681dd-429b-5674-a691-feffc1d877cd", "text": "CODM\u6807\u5fd7\u5e26\u6709\u67aa\u652f\u548c\u63a2\u7d22\u5143\u7d20\u3002"} +{"id": "0002741", "video_name": "30b8a8a8-964e-5917-bce1-656ae8c56c09", "text": "\u7eff\u8272\u7684\u732b\u5728\u68d5\u8272\u684c\u5b50\u4e0b\u98de\u884c\u3002"} +{"id": "0002742", "video_name": "30bbf474-b8d3-53f4-8e3e-faf33ead196c", "text": "\u7a7f\u7740\u8863\u670d\u7684\u5973\u5b69\u5728\u53a8\u623f\u6d17\u7897\u3002"} +{"id": "0002743", "video_name": "30bd9242-75ab-5f67-9767-cdd774af9a1b", "text": "\u897f\u5c14\u7ef4\u65af\u7279\u00b7\u53f2\u6cf0\u9f99\u5728\u9152\u5427\u91cc\u75af\u72c2\u8df3\u8dc3\u3002"} +{"id": "0002744", "video_name": "30bfd604-5434-53e0-a283-48fa0a7a7a77", "text": "\u4e00\u500b\u5df2\u7d93\u5de5\u4f5c\u4e86\u5e7e\u9031\u4e26\u611f\u5230\u75b2\u7d2f\u7684\u7537\u4eba\u3002"} +{"id": "0002745", "video_name": "30c11bcd-f807-5941-a871-c305169ac76f", "text": "\u6069\u83f2\u5179\u80fd\u6e90\u516c\u53f8\u7684\u8425\u9500\u4ecb\u7ecd\u6807\u5fd7\u4e0e\u82f9\u679c\u516c\u53f8\u5e7f\u544a\u76f8\u4f3c\u3002"} +{"id": "0002746", "video_name": "30c17fbf-6b1f-5a34-9b9f-699d611d6f06", "text": "\u4e9a\u5386\u5c71\u5927\u6d77\u6ee9\uff0c\u4ece\u4e0a\u65b9\u62cd\u6444\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "0002747", "video_name": "30c4d8ae-5e80-5288-9d42-6df9d4636380", "text": "\u6751\u6c11\u7684\u5c38\u4f53\u56e0\u6218\u4e89\u800c\u8eba\u5728\u5730\u4e0a\u3002"} +{"id": "0002748", "video_name": "30c85ddf-e088-556d-b36a-5d53a883e560", "text": "\u8fc7\u6e21\u7a7a\u95f4\u6050\u6016\u548c\u7cbe\u7075\u5c16\u53eb\u3002"} +{"id": "0002749", "video_name": "30c8aea1-2fd7-5a3a-9fa5-cc61867fec37", "text": "\u4e00\u53f0\u672a\u6765\u4e3b\u4e49\u673a\u5668\u4eba\u6b63\u5728\u5236\u9020\u53e6\u4e00\u53f0\u673a\u5668\u4eba\u3002"} +{"id": "0002750", "video_name": "30cf26af-f47f-5415-82b2-4edb7a7465f4", "text": "\u5df4\u6bd4\u7528\u95ea\u95ea\u53d1\u5149\u7684\u6d77\u8d1d\u9879\u94fe\u5e2e\u52a9\u60b2\u4f24\u7684\u7f8e\u4eba\u9c7c\u6062\u590d\u58f0\u97f3\u7684\u795e\u5947\u65f6\u523b\u3002"} +{"id": "0002751", "video_name": "30cf92c8-c9f2-5be3-8b14-3551eea9dca6", "text": "\u5b8f\u89c2\u62cd\u6444\u62bd\u8c61\u53f6\u5b50\uff0c\u914d\u4ee5\u9634\u6697\u7684\u706f\u5149\u3001\u96fe\u6c14\uff0c\u8d85\u73b0\u5b9e\u3001\u7535\u5f71\u822c\u768416:9\u753b\u9762\u3002"} +{"id": "0002752", "video_name": "30d0bff7-c74b-5891-a8ef-a3dd462fc8fb", "text": "\u62a2\u52ab\u6545\u4e8b\u3002\u89c6\u9891\u957f\u5ea6\u4e3a6\u79d2\u3002"} +{"id": "0002753", "video_name": "30d6d9dc-47c2-548d-952b-0b65a3480dc0", "text": "\u4e00\u4f4d\u7a7f\u7740\u9ed1\u8272\u5deb\u5e08\u670d\u88c5\u7684\u82f1\u4fca\u7537\u5b50\uff0c\u624b\u4e2d\u53d1\u51fa\u706b\u7403\uff0c\u773c\u4e2d\u542b\u6cea\u671b\u7740\u4e00\u4f4d\u6df1\u7ea2\u8272\u5934\u53d1\u7684\u7f8e"} +{"id": "0002754", "video_name": "30dea65e-e95d-5f43-a889-b51aa2d7bd0b", "text": "\u4e3a\u7b14\u8bb0\u672c\u7535\u8111\u58c1\u7eb8\u521b\u5efa\u4e00\u5f20MS Dhoni\u56fe\u7247\u3002"} +{"id": "0002755", "video_name": "30f51a42-8a2f-516f-be6f-234e5e209809", "text": "\u5c06\u89d2\u8272\u5728\u767d\u8272\u7b80\u6d01\u7684\u80cc\u666f\u4e0b\u70e4\u62ab\u8428\u3002"} +{"id": "0002756", "video_name": "30fbd299-77f7-5cc0-bb91-cac8a73a7daa", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u77ed\u8896\u548c\u9ed1\u8272\u4e03\u5206\u88e4\u7684\u5973\u5b69\u3002"} +{"id": "0002757", "video_name": "3101a602-e439-57ac-a226-d63e2284401a", "text": "\u793e\u4ea4\u5a92\u4f53\u5f71\u54cd\u8005\u5728\u57ce\u5e02\u9ad8\u697c\u8df3\u4f1e\uff0c\u540c\u65f6\u5904\u4e8e\u81ea\u62cd\u6a21\u5f0f\u3002"} +{"id": "0002758", "video_name": "3101b35d-ed71-561a-bdfb-5a04e585d3a6", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u60ac\u6302\u5728\u5929\u7a7a\u4e2d\uff0c\u6708\u4eae\u548c\u661f\u661f\u3002"} +{"id": "0002759", "video_name": "310212d1-087a-5065-a092-bf8c9c5da218", "text": "\u4e00\u4e2a\u7a7f\u7740\u4e0a\u8863\u3001\u6234\u7740\u773c\u955c\u76841950\u5e74\u4ee3\u4e08\u592b\u624b\u6301\u5496\u5561\u676f\u7ad9\u5728\u7a97\u6237\u524d\u5411\u5916\u770b\uff0c\u8857\u4e0a\u6709195"} +{"id": "0002760", "video_name": "310d579c-7469-51dc-a0a2-7bdc23049f74", "text": "\u751f\u6210\u4e00\u4e2a\u5173\u4e8e\u4eba\u7c7b\u548c\u4eba\u5de5\u667a\u80fd\u76f8\u5173\u6027\u7684\u73af\u5883\u89c6\u9891\u3002"} +{"id": "0002761", "video_name": "31193a71-e333-52bc-aaf4-daaf90b496ad", "text": "\u84dd\u8272\u7684\u9e1f\u5728\u8ff7\u5e7b\u7684\u7530\u91ce\u4e0a\u98de\u7fd4\u3002"} +{"id": "0002762", "video_name": "311ed527-9da7-5dd0-9001-d7fc79871a8e", "text": "\u4e39\u59ae\u8389\u4e1d\u00b7\u5766\u683c\u5229\u5b89\u6b63\u5728\u4ece\u56e0\u743c\u6069\u00b7\u96ea\u800c\u9020\u6210\u7684\u4f24\u52bf\u4e2d\u6062\u590d\uff0c\u8fd9\u662f\u7531\u9f99\u54e8\u58f0\u5f15\u8d77\u7684"} +{"id": "0002763", "video_name": "311f107d-b1c9-5682-9ab1-92d7db224fc7", "text": "\u4e00\u4f4d\u6234\u5934\u5dfe\u7684\u5c0f\u7f8e\u4e3d3D\u667a\u80fd\u5973\u5b69\u901a\u8fc7\u625b\u7740\u4eba\u4eec\u7684\u8d2d\u7269\u888b\u6765\u5e2e\u52a9\u4ed6\u4eec\u3002"} +{"id": "0002764", "video_name": "3123d8d5-1b80-580f-afb4-299b52a59438", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u9762\u7eb1\u4ece\u4e0a\u5230\u4e0b\u88c2\u5f00\u4e86\u3002"} +{"id": "0002765", "video_name": "312af3cd-48d9-55fb-8e60-3ee61a539cfa", "text": "\u4e00\u4f4d\u4e0d\u4e39\u745c\u4f3d\u58eb\u5728\u4f20\u7edf\u7684\u4e0d\u4e39\u623f\u5c4b\u91cc\u51a5\u60f3\u3002"} +{"id": "0002766", "video_name": "312f5cfc-065e-5ebc-b75a-3811b33a5477", "text": "\u5916\u661f\u4eba\u5efa\u9020\u4e86\u57c3\u53ca\u91d1\u5b57\u5854\uff0c\u4f7f\u7528\u5916\u661f\u79d1\u6280\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "0002767", "video_name": "312f9c83-d064-5f56-b6bd-f64618541a69", "text": "\u7687\u5e1d\u5854\u7f57\u724c\uff1a\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u7ea2\u8272\u548c\u6a59\u8272\uff1a\u4e25\u8083\u3002"} +{"id": "0002768", "video_name": "313189fd-5eee-5c3d-bd5c-dc8e69b5944c", "text": "\u6709\u4eba\u5728\u79d1\u5e7b\u5e02\u573a\u91cc\u5feb\u901f\u884c\u8d70\uff0c\u770b\u8d77\u6765\u5f88\u795e\u7ecf\u7d27\u5f20\uff0c\u955c\u5934\u6548\u679c\u91c7\u7528\u8001\u5f0f\u7684VHS\u98ce\u683c\u3002"} +{"id": "0002769", "video_name": "313acbc9-fafb-5f2f-865d-ddcf3f9379fd", "text": "\u4e16\u754c\u9886\u8896\u5728\u8054\u5408\u56fd\u4f1a\u8bae\u5ba4\u8fdb\u884c\u8fa9\u8bba\u3002"} +{"id": "0002770", "video_name": "314f3f7b-a9f5-5ad2-a3dc-3380b9e7df0b", "text": "\u751f\u6210\u4e00\u4e2a\u8d85\u903c\u771f\u7684\u9ad8\u6e05\u753b\u9762\u5c55\u793a\u6218\u5f79\u89c4\u6a21\u548c\u5f3a\u5ea6\uff0c\u5448\u73b0\u9ad8\u52a0\u7f8e\u62c9\u6218\u5f79\u7684\u771f\u5b9e\u573a\u666f\u3002"} +{"id": "0002771", "video_name": "31594f54-ab71-5c3a-be42-384b720a4f54", "text": "\u751f\u6210\u4e00\u4e2a\u795e\u5947\u7684\u573a\u666f\uff0c\u4e00\u53ea\u8774\u8776\u62cd\u6253\u7740\u5b83\u865a\u5e7b\u3001\u53d1\u5149\u7684\u7fc5\u8180\u3002"} +{"id": "0002772", "video_name": "315c8d61-9a54-574f-bc81-5028f77b2690", "text": "Translation: \u4e00\u68f5\u6811\u4ece\u52b3\u52a8\u8282\u5047\u671f\u4e2d\u751f\u957f\u51fa\u6765\u3002"} +{"id": "0002773", "video_name": "315d071b-46df-55fd-bd49-6f569a653a8b", "text": "\u4e00\u53ea\u673a\u5668\u8774\u8776\u5728\u7eff\u8272\u7684\u82b1\u6797\u4e2d\u98de\u7fd4\uff0c\u62cd\u6444\u4e864k\u7684\u7535\u5f71\u753b\u9762\uff0c\u5904\u4e8e\u65e5\u51fa\u7684\u9ec4\u91d1\u65f6\u95f4\u3002"} +{"id": "0002774", "video_name": "31602c78-fed5-5fc5-92ac-b4d10fcbcace", "text": "\u4e00\u53ea\u70e4\u719f\u7684\u611f\u6069\u8282\u706b\u9e21\u6b63\u5728\u76d8\u5b50\u4e0a\u79fb\u52a8\u3002"} +{"id": "0002775", "video_name": "31637b69-a162-5bb0-8d45-202ce9df5bd2", "text": "\u5929\u7a7a\u5f00\u9614\uff0c\u4e0b\u7740\u9a6c\u620f\u56e2\u822c\u7eda\u4e3d\u7684\u5f69\u8272\u96e8\uff0c\u6d77\u62a5\u3002"} +{"id": "0002776", "video_name": "3169a288-754b-59c2-a090-ed154e94ea66", "text": "\u7cbe\u7075\u5728\u57ce\u5e02\u4e2d\u7684\u7535\u5f71\u573a\u666f\u62cd\u6444"} +{"id": "0002777", "video_name": "316ca01f-55fe-59ee-81d3-47a31b027791", "text": "\u65e0\u7455\u75b5\u7684\u716e\u9e21\u86cb\u4e09\u660e\u6cbb\uff0c\u57f9\u6839\uff0c\u70e4\u82f1\u5f0f\u9ea6\u82ac\u6216\u767e\u5409\u997c\u3002\u756a\u8304\u6216"} +{"id": "0002778", "video_name": "316dec8c-fb85-5ac8-a0e4-b39c8fd5f0f1", "text": "\u971c\u8986\u76d6\u4e86\u4e00\u4e2a\u5c0f\u9547\uff0c\u8986\u76d6\u4e86\u971c\u82b1\u3002"} +{"id": "0002779", "video_name": "3174d1b3-0c27-5407-803a-4743c8d1027c", "text": "\u975e\u5e38\u53d7\u6b22\u8fce\u7684\u5e02\u573a\u5728\u975e\u65af\u3002\u4e00\u4e2a\u56db\u5341\u591a\u5c81\u7684\u4eba\u5728\u4ed6\u7684\u5e97\u91cc\u51fa\u552eChebakia\uff08\u6216qaryoush\u6216makhrakah\uff09\uff0c\u8fd9\u662f\u4e00\u79cd"} +{"id": "0002780", "video_name": "3175ebc8-403f-5ef0-b056-b81eacb47c06", "text": "\u4e00\u4f4d\u4ea4\u6613\u4e13\u5bb6\u5750\u5728\u6e38\u8247\u4e0a\uff0c\u8eab\u8fb9\u6709\u4e24\u4e2a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u76849:16\u89c6\u9891\u3002"} +{"id": "0002781", "video_name": "317a9fc2-102a-5afc-abfb-ae8629b573f6", "text": "\u4e00\u540d\u8b66\u5bdf\u5728\u7a7a\u8361\u7684\u623f\u95f4\u91cc\u5b64\u72ec\u4e14\u975e\u5e38\u56f0\u60d1\u3002"} +{"id": "0002782", "video_name": "31827b79-385a-5952-a962-f6f2a8988284", "text": "\u4e00\u5e45\u9ed1\u6697\u7684\u573a\u666f\uff0c\u4e00\u4e2a\u4e0d\u7965\u7684\u7269\u4f53\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0002783", "video_name": "31843579-537a-51bc-b356-d45e37861231", "text": "\u5973\u5b69\u7684\u7279\u5199\u753b\u50cf\uff0cY2K\u65f6\u671f\u3002"} +{"id": "0002784", "video_name": "3189bfef-32a4-54cd-acab-5ed3199427b0", "text": "\u201cMaskMonger\u201d\u8fd9\u4e2a\u8bcd\u4ee5\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u53d1\u5149\u7eff\u8272\u5b57\u6bcd\u5448\u73b0\uff0c\u7d2b\u8272\u706f\u5149\u5728\u8bcd\u7684\u80cc"} +{"id": "0002785", "video_name": "318a2ea2-56db-5de6-87af-d1d86945c77e", "text": "\u4e00\u5f20\u5fae\u8ddd\u6444\u5f71\u7684\u9ad8\u5ea6\u903c\u771f\u7684\u7167\u7247\uff0c\u62cd\u6444\u4e86\u9ed1\u6697\u4e2d\u6709\u6591\u70b9\u7684\u53d1\u5149\u5c0f\u8682\u86b1\u3002"} +{"id": "0002786", "video_name": "318d6efa-c803-5057-929a-ca0fd1df2071", "text": "\u6c99\u6f20\u4e2d\u7684\u68d5\u6988\u6811\u5728\u591c\u665a\uff0c4K\uff0c1:1"} +{"id": "0002787", "video_name": "318de8b2-5f9f-57fa-9ec4-ad8cf2685791", "text": "\u5929\u7f51\u662f\u4e00\u6761\u5de8\u5927\u7684\u7f51\u7edc\u9f99\u3002"} +{"id": "0002788", "video_name": "318f244e-4be4-5c81-93d1-f1dd6e692fa4", "text": "\u4e00\u4e2a\u538b\u529b\u5f88\u5927\u7684\u5e74\u8f7b\u4eba\u5728\u5de5\u4f5c\u7a7a\u95f4\u91cc\uff0c\u76ef\u7740\u7535\u8111\uff0c\u5468\u56f4\u5806\u6ee1\u4e86\u7eb8\u5f20\u3001\u5496\u5561\u676f\u548c\u51e0"} +{"id": "0002789", "video_name": "31994da7-2450-5318-9e28-59079724cb31", "text": "\u6709\u7740\u575a\u5b9a\u7684\u5fc3\uff0c\u72ee\u5b50\u8e0f\u4e0a\u4e86\u65c5\u7a0b\u3002\u4ed6\u8e0f\u8fc7\u9ad8\u8349\uff0c\u5c0f\u5c0f\u7684\u722a\u5b50\u51e0\u4e4e\u6ca1\u6709\u53d1\u51fa\u58f0\u97f3\u3002\u8349\u5730"} +{"id": "0002790", "video_name": "319bc8ff-d366-5fb3-a6af-89b1b23f7612", "text": "\u4e00\u540d\u4fc4\u7f57\u65af\u519b\u4eba\u5b88\u536b\u5728\u4e00\u5806\u706b\u817f\u4e0a\u8df3\u7740Fortnite\u821e\u3002"} +{"id": "0002791", "video_name": "31a0a3f0-f46b-5364-b7a3-ddcf75040aea", "text": "\u98ce\u5439\u8fc7\uff0c\u4eba\u4eec\u9010\u6e10\u79bb\u53bb\u3002\n\n\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0002792", "video_name": "31aa3246-f89d-5e20-a1ed-852c7be2ac1e", "text": "\u7537\u4eba\u548c\u5973\u4eba\u624b\u7275\u624b\u5728\u8857\u4e0a\u8d70\uff0c\u516c\u4ea4\u8f66\u4ece\u4ed6\u4eec\u8eab\u540e\u7ecf\u8fc7\uff0c\u98ce\u666f\u770b\u8d77\u6765\u50cf\u68b5\u9ad8\u7684\u753b\u4f5c\u3002"} +{"id": "0002793", "video_name": "31b12030-3bd0-526c-b1a0-57991de2a051", "text": "\u63d2\u753b\u63cf\u7ed8\u4e86\u5730\u7403\u548c\u6708\u7403\u4e4b\u95f4\u7684\u5f15\u529b\u4f5c\u7528\u3002"} +{"id": "0002794", "video_name": "31ba28a2-93e1-5f6c-a945-013242ea9f5f", "text": "\u4e00\u53ea\u8001\u864e\u5728\u706b\u661f\u8868\u9762\u884c\u8d70\uff0c\u63a2\u6d4b\u5668\u62cd\u6444\u7684\u753b\u9762\u3002"} +{"id": "0002795", "video_name": "31bc8bf5-6f91-541d-95ec-0c8aa2697f24", "text": "\u7537\u5b69\u518d\u6b21\u5c1d\u8bd5\uff0c\u8fd9\u6b21\u4ed6\u6210\u529f\u98de\u8d77\u6765\u4e86\u3002"} +{"id": "0002796", "video_name": "31be16e1-8b19-5967-9f0f-b66c4bbe27a8", "text": "\u73b0\u5b9e\u7684\u5c71\u5cf0\uff0c\u96fe\u6c14\uff0c\u65e5\u51fa\uff0c\u96ea\uff0c\u9e1f\u7fa4\uff0c\u5f92\u6b65\u65c5\u884c\u7684\u4eba\uff0c\u7011\u5e03W\uff0c\u7011\u5e032\u3002\n\u9644\u4ef6\uff1a1"} +{"id": "0002797", "video_name": "31c88b09-1220-5c56-bf63-f1ce4d5e9f73", "text": "4\u53ea\u5c0f\u732b\u805a\u5728\u7a97\u6237\u8fb9\uff0c\u597d\u5947\u5730\u671b\u7740\u5c0f\u623f\u5b50\u91cc\u9762\uff0c\u5feb\u4e50\u800c\u8c03\u76ae\u3002"} +{"id": "0002798", "video_name": "31c99ab1-11d6-552c-9f9f-e7908bda7f24", "text": "\u4e00\u526f\u9ab7\u9ac5\u9aa8\u67b6\u5728\u5893\u5730\u4e0a\u8d70\u52a8\uff0c\u914d\u590730\u5e74\u4ee3\u98ce\u683c\u7684\u76f8\u673a\uff0c\u9ed1\u767d\u8272\u8c03\uff0cVHS\u5f55\u50cf\u3002"} +{"id": "0002799", "video_name": "31ca873d-c89a-51ec-a4b0-ebd1f1299764", "text": "\u8239\u4e0a\u7684\u4eba\u4eec\u5728\u6c34\u4e2d\u770b\u5230\u4e86\u5de8\u5927\u7684\u751f\u7269\u3002"} +{"id": "0002800", "video_name": "31da8261-f9da-5257-bdc1-60799afc25f4", "text": "10\u79d2\u7684\u89c6\u9891\u7a7f\u8d8a\u4e00\u7cfb\u5217\u5177\u6709\u6311\u6218\u6027\u7684\u666f\u89c2\u3002\u753b\u9762\u5e94\u8be5\u63cf\u7ed8\u4ed6\u4eec\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u5728\u6d53\u5bc6\u7684"} +{"id": "0002801", "video_name": "31dcac1e-3868-521b-9367-74d07a427906", "text": "\u7ed9\u5a74\u513f\u6216\u5e7c\u513f\u7684\u7761\u524d\u6545\u4e8b\uff0c\u591c\u665a\u6709\u4e00\u53ea\u53ef\u7231\u7684\u52a8\u7269\uff0c\u661f\u661f\u548c\u661f\u7cfb\u80cc\u666f\uff0c\u53ef\u7231\u7684\u52a8\u7269"} +{"id": "0002802", "video_name": "31e0773d-beb5-5cec-bfb7-a203f4bbc09c", "text": "\u91d1\u9ec4\u8272\u7684\u9633\u5149\u900f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\u3002\u9ad8\u5927\u3001\u5a01\u4e25\u7684\u6811\u6728\u6447\u66f3\u7740\u53f6\u5b50\u3002"} +{"id": "0002803", "video_name": "31e26c60-f61c-5dc6-8ee4-26b58f9988ac", "text": "\u5973\u6027\uff0c\u5e73\u9762\u8bbe\u8ba1\u5e08\u5de5\u4f5c\u4e2d\uff0c\u5e7d\u9ed8\uff0c\u73b0\u5b9e\u3002"} +{"id": "0002804", "video_name": "31e3395e-1b43-5e51-8061-a63ee477233d", "text": "\u7528\u4eba\u4f53\u7684\u5f62\u5f0f\u5c55\u73b0\u96f7\u514b\u8428\u65af\u6c7d\u8f66\u3002"} +{"id": "0002805", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "\u53e4\u5df4\u7537\u5b69\u5728\u54c8\u74e6\u90a3\u9a6c\u83b2\u5eb7\u5927\u9053\u3002"} +{"id": "0002806", "video_name": "31eeb175-23d6-5b46-a074-07002c0abcf2", "text": "\u5f3a\u5927\u7684\u56fd\u738b\u5e1d\u56fd\uff0c\u8c22\u3002"} +{"id": "0002807", "video_name": "31f072f1-ca33-5229-b3bb-5f6135014f35", "text": "\u4e00\u4f4d\u7a7f\u7740\u7ea2\u8863\u670d\u7684\u5973\u4eba\u5728\u5954\u8dd1\u3002"} +{"id": "0002808", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "\u51fa\u73b0\u5728\u5899\u4e0a\u7684\u6d82\u9e26\u827a\u672f\u3002"} +{"id": "0002809", "video_name": "32078ab0-30ea-5e1a-9d02-77cd87c1aaa5", "text": "\u4e00\u4e2a\u8001\u4eba\u5403\u610f\u5927\u5229\u9762\u548c\u559d\u8461\u8404\u9152\u3002"} +{"id": "0002810", "video_name": "320844ad-b81a-51c7-a995-6749d9a86242", "text": "\u4e00\u7fa4\u5b69\u5b50\u53d1\u73b0\u4e86\u4e00\u53ea\u5927\u98ce\u7b5d\u3002"} +{"id": "0002811", "video_name": "320b7d3c-2192-5674-a022-2f61f3a375f9", "text": "\u5728\u5979\u7236\u6bcd\u7684\u623f\u5b50\u91cc\u7684\u5973\u5b69\uff0c\u4f46\u5979\u611f\u5230\u6cae\u4e27\u548c\u5b64\u72ec\u3002"} +{"id": "0002812", "video_name": "320ec19f-2857-5d1a-971b-09b4d4b7cef7", "text": "\u4e00\u90e8\u63cf\u8ff0\u6bcd\u4eb2\u751f\u547d\u5386\u7a0b\u7684\u89c6\u9891\uff0c\u4ece\u5206\u5a29\u5230\u5b69\u5b50\u6210\u5e74\uff0c\u901a\u8fc7\u5feb\u8fdb\u7684\u65f6\u95f4\u8f74\u5c55\u73b0\u65f6\u95f4\u98de\u901d\u548c\u6bcd\u4eb2\u7ecf\u5386\u7684\u60c5"} +{"id": "0002813", "video_name": "32114dcc-3dc6-5fb6-a18a-cd4ef4c4da1a", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u5750\u5728\u5ca9\u77f3\u4e0a\uff0c\u9762\u5bf9\u5f3a\u70c8\u7684\u6d0b\u6d41\u3002"} +{"id": "0002814", "video_name": "3215e184-f7d7-566a-843a-4c0e79707ba2", "text": "\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\uff0c\u98ce\u66b4X\u6218\u8b66\u7a7f\u7740\u58a8\u897f\u54e5\u9a6c\u91cc\u4e9a\u5947\u4eba\u7684\u670d\u88c5\u5f39\u5409\u4ed6\uff0c\u6709\u86cb"} +{"id": "0002815", "video_name": "3218df25-e3f8-5f88-ab59-80c9f9d6b02f", "text": "Source sentence translated into Chinese: \u300a\u4eac\u90fd\u5b87\u5b99\u8ad6\u300b\u85dd\u8853\u96fb\u5f71\u8a6d\u7570\u7684\u4e9e\u6b77\u676d\u5fb7\u7f85\u00b7\u8377\u591a\u7f85\u65af\u57fa"} +{"id": "0002816", "video_name": "3218f4d4-988e-5652-94f2-074d761dc24c", "text": "\u68ee\u6797\u91cc\u7684\u5154\u5b50\u5728\u6668\u96e8\u4e2d\u5954\u8dd1\u3002 \n\nSource sentence: The book on the table is mine. \n\n\u684c\u5b50\u4e0a\u7684\u4e66\u662f\u6211\u7684\u3002"} +{"id": "0002817", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "\u4e00\u5f20\u813e\u6c14\u66b4\u8e81\u7684\u732b\u7684\u6709\u8da3\u7167\u7247\u3002"} +{"id": "0002818", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "\u521b\u5efa\u4e00\u4e2a\u52a8\u753b\u5f62\u8c61\uff0c\u4ee3\u8868\u53cb\u597d\u800c\u77e5\u8bc6\u6e0a\u535a\u7684\u4eba\u5de5\u667a\u80fd\u4e3b\u6301\u4eba\u3002\u5f62\u8c61\u5e94\u8be5\u6563\u53d1\u4eb2\u548c\u529b\u548c\u81ea\u4fe1\uff0c\u7a7f\u7740\u73b0\u4ee3"} +{"id": "0002819", "video_name": "3232fafc-0d95-51ac-8050-6d7f1d7d48b7", "text": "\u56de\u5934\u770b\uff0c\u7728\u773c\u95f4\u3002\u9644\u4ef61\u3002"} +{"id": "0002820", "video_name": "32488b29-74ad-5fc5-a4f6-2f651183531b", "text": "\u4e00\u53f0\u76f8\u673a\u62cd\u6444\u4e86\u4e00\u4e2a\u5728\u5c71\u9876\u4e0a\u6ed1\u6ed1\u677f\u7684\u7537\u5b50\u7684\u65c5\u884c\u3002"} +{"id": "0002821", "video_name": "32491475-e55d-5511-8215-26ebb189f3fd", "text": "\u4e00\u4e2a\u5973\u5b69\u751f\u6c14\u7684\u77ed\u52a8\u753b\u3002"} +{"id": "0002822", "video_name": "32560e19-bd50-5dc0-b234-5b40f15910ce", "text": "\u767d\u9e45\u5728\u8fea\u65af\u79d1\u7403\u4e0a\u731c\u6d4b\u672a\u6765\u3002"} +{"id": "0002823", "video_name": "3259cc45-5c34-5d60-a91e-5f96033cc5d5", "text": "\u4e00\u4e2a\u9ed1\u5f71\u81ea\u5929\u7a7a\u4e2d\u81ea\u7531\u843d\u4f53"} +{"id": "0002824", "video_name": "325c8ffa-bd0b-58d4-a7c9-115c9157bbdc", "text": "\u683c\u857e\u5854\u00b7\u6851\u4f2f\u683c\u81ea\u8c6a\u5730\u7ad9\u5728\u8089\u7c7b\u5de5\u5382\u524d\u9762\u3002"} +{"id": "0002825", "video_name": "32645e5e-df01-5d4b-8253-60bfa3161a6d", "text": "\u6bcf\u4e2a\u665a\u4e0a\uff0c\u9634\u5f71\u4e0b\uff0c\u4e00\u4e2a\u5b69\u5b50\u822c\u7684\u54c0\u53f9\u5728\u623f\u5b50\u7684\u5b89\u9759\u8d70\u5eca\u91cc\u56de\u54cd\u3002"} +{"id": "0002826", "video_name": "32692077-6733-544c-9817-79b23c7069f0", "text": "\u751f\u6210\u4e00\u90e8\u6709\u5173\u6d77\u72f8\u7684\u5361\u901a\u52a8\u753b\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u706f\u5149\u6548\u679c\u3002"} +{"id": "0002827", "video_name": "326f2e4e-a393-5e99-89dc-6463ba2b9ccd", "text": "\u8349\u5730\u4e0a\u6709\u5fae\u98ce\uff0c\u9e7f\u5728\u5403\u8349\u3002"} +{"id": "0002828", "video_name": "326f5a37-e9d2-57f9-9331-f6ed089b58a1", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5728\u516c\u56ed\u91cc\u5954\u8dd1\uff0c\u6709\u65e0\u4eba\u673a\u7684\u79fb\u52a8\u6548\u679c\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun. \n\n\u90a3\u53ea\u732b\u5728"} +{"id": "0002829", "video_name": "3274099f-9cdd-554a-a024-0d0e2a116238", "text": "\u9668\u77f3\u7684\u649e\u51fb\u662f\u4e00\u79cd\u8fc5\u901f\u800c\u51e0\u4e4e\u5bdf\u89c9\u4e0d\u5230\u7684\u51b2\u51fb\u3002\u5b83\u5728\u6574\u4e2a\u5b87\u5b99\u4e2d\u4ee5\u4e00\u9053\u5149\u8292\u7684\u5f62\u5f0f"} +{"id": "0002830", "video_name": "32760c80-fc1f-590c-ab31-c2a1e6abaef6", "text": "\u4e00\u5ea7\u660e\u4eae\u800c\u5bbd\u655e\u7684\u827a\u672f\u535a\u7269\u9986\u3002"} +{"id": "0002831", "video_name": "32865cab-72ae-5941-88c6-985187367b99", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797\u63a2\u9669\uff1a\u4e00\u5e45\u63cf\u7ed8\u751f\u7269\u5b66\u5bb6\u5728\u4e9a\u9a6c\u900a\u96e8\u6797\u53d1\u73b0\u6050\u9f99\u65f6\u7684\u77ac\u95f4\u7684"} +{"id": "0002832", "video_name": "32927582-8dd8-5cd8-90da-31ad7ee25980", "text": "\u6211\u60f3\u8ba9\u8fd9\u4e2a\u573a\u666f\u770b\u8d77\u6765\u58ee\u89c2\u3002"} +{"id": "0002833", "video_name": "3295abac-a4c1-5dc7-a7b2-935a4c55fe55", "text": "\u4e00\u540d\u5b87\u822a\u5458\u9003\u79bb\u4e00\u95f4\u7740\u706b\u7684\u623f\u5b50\u3002"} +{"id": "0002834", "video_name": "32975281-bd72-5626-b738-becc7e4fa315", "text": "\u65e5\u843d\u65f6\u5206\u88ab\u6811\u6728\u73af\u7ed5\u7684\u6e56\u6cca"} +{"id": "0002835", "video_name": "32a0c6c3-8ef2-5d3c-b234-f7f678acebb9", "text": "2019\u5e74\uff0c\u4e00\u8f86\u767d\u8272\u7684BMW E30 325is\u505c\u5728\u7d22\u97e6\u6258\u7684\u4e00\u6240\u623f\u5b50\u5916\u9762\u3002"} +{"id": "0002836", "video_name": "32a19a56-876b-58e0-b114-cdd895bd8ad6", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u4e00\u4e2a\u5e74\u8f7b\u4eba\u548c\u4e00\u4f4d\u8001\u4eba\u8eab\u7740\u7ea2\u8272\u670d\u88c5\uff0c\u9a91\u5728\u4e00\u53ea\u5de8\u5927\u7684\u767d\u8272\u88c5\u7532\u9e70\u4e0a\uff0c\u98de\u7fd4"} +{"id": "0002837", "video_name": "32a1f8f4-b7c1-5e8e-a86b-4da72c997197", "text": "\u5728\u4e1c\u4eac\u7684\u9ed1\u6697\u5c0f\u5df7\u91cc\u6709\u4eba\u8d70\u8def\u3002"} +{"id": "0002838", "video_name": "32a614f2-2917-555d-a3d8-4e80d82dba4c", "text": "\u5efa\u7b51\uff0c\u903c\u771f\uff0c\u6b63\u9762\u89c6\u56fe\uff0c\u6e38\u620f\u7d20\u6750\u3002"} +{"id": "0002839", "video_name": "32ad33ec-3f81-599a-9196-3b546859a1a4", "text": "\u6e90\u53e5\uff1a\u5728\u4e1c\u4eac\u7684\u5546\u4eba\u5728\u8336\u9053\u4f1a\u4e0a\u5403\u82b1\uff0c\u670d\u7528\u8ff7\u5e7b\u836f\u540e\u8df3YMCA\u3002\u4ee5\u300a\u56fd\u5bb6\u5730\u7406\u300b\u98ce\u683c\u76848K\u8d85"} +{"id": "0002840", "video_name": "32af494c-e4b5-508a-b1a1-717b0b38a4d0", "text": "\u7537\u4eba\u548c\u5973\u4eba\u7a7f\u7740\u7d2b\u8272\u548c\u84dd\u8272\u8fde\u5e3d\u886b\uff0c\u6234\u7740\u906e\u9633\u9762\u7f69\u73a9\u89c6\u9891\u6e38\u620f\u3002"} +{"id": "0002841", "video_name": "32b3e1d1-fc24-5ccc-ab3e-50ed5da2b5ba", "text": "\u4e00\u4f4d\u8b66\u5bdf\u5728\u6797\u4e2d\u6218\u58d5\u7948\u7977\uff0c\u80cc\u666f\u662f\u9ec4\u660f\u65f6\u7684\u7206\u70b8\uff0c\u4fa7\u89c6\u3002"} +{"id": "0002842", "video_name": "32b9f504-6d4b-5484-86d3-d5dcac2c3ad8", "text": "\u8fbe\u65af\u7ef4\u8fbe\u548c\u5362\u514b\u5929\u884c\u8005\u4e00\u8d77\u5403\u70ed\u72d7\uff0c\u7236\u5b50\u95f4\u7684\u4eb2\u60c5\uff0c\u51b2\u950b\u961f\u58eb\u5175\u5b88\u62a4\u7740\uff0c"} +{"id": "0002843", "video_name": "32bbc2c0-2135-5d32-b00f-f30751a462be", "text": ", she would curl up with a novel and lose herself in the story.\n\n\u5979\u6709\u4e00\u9897\u597d\u5947\u5fc3\u7075\u548c\u5bf9\u4e66\u7c4d\u7684\u65e0\u9650\u70ed\u7231\u3002\u6bcf\u5929\u5b8c\u6210\u5bb6\u52a1\u540e\uff0c\u5979"} +{"id": "0002844", "video_name": "32caf809-9075-571e-909d-4d032d9f63ac", "text": "\u540c\u4e00\u4e2a\u89c6\u9891\uff0c\u4f46\u6301\u7eed\u65f6\u95f4\u4e3a10\u79d2\u3002"} +{"id": "0002845", "video_name": "32d076db-3b05-5602-9d9c-3da9cd901ee4", "text": "\u5c55\u793a\u4e39\u5c3c\u9e2d\u5b50\u5728\u6e29\u99a8\u7684\u5de2\u7a74\u6216\u623f\u5c4b\u91cc\uff0c\u4ed6\u63c9\u7740\u773c\u775b\u9192\u6765\u8fce\u63a5\u65b0\u7684\u4e00\u5929\u3002"} +{"id": "0002846", "video_name": "32d913e9-be34-54b3-b068-3e26b995ec73", "text": "Translation: \u9f99\u603b\u662f\u6e34\u671b\u5192\u9669\uff0c\u6240\u4ee5\u4ed6\u540c\u610f\u5e2e\u5fd9\u3002"} +{"id": "0002847", "video_name": "32de872c-e54e-5d14-ac3f-3a1a9d72ee4e", "text": "\u7f8e\u4e3d\u7684\u9521\u514b\u5973\u5b50\u5750\u5728\u5ca9\u77f3\u4e0a\u770b\u7740\u5927\u6d77\u3002"} +{"id": "0002848", "video_name": "32e0ed5a-0c5d-5226-8126-a20cb936788a", "text": "\u5728\u6781\u7b80\u4e3b\u4e49\u623f\u5c4b\u5185\u90e8\u8bbe\u8ba1\u4e00\u4e2a\u7f8e\u4e3d\u7684\u4e61\u6751\u5f0f\u58c1\u7089\u3002\u5b83\u5e94\u8be5\u53cd\u6620\u51fa\u4e00\u4e2a\u96c6\u6210\u4e86\u5e72\u51c0\u7684\u7ebf\u6761\u3001\u81ea"} +{"id": "0002849", "video_name": "32ef48b0-4c21-5bda-bf8a-9b7320118965", "text": "1970\u5e74\u7684A24\u7535\u5f71\u5448\u73b0\u7f8e\u5b66\u70ed\u5e26\u666f\u89c2\u548c\u91ce\u706b\u3002"} +{"id": "0002850", "video_name": "32f11d26-7fa8-5114-9167-298cad13d7b8", "text": "\u5168\u56fd\u5230\u5904\u90fd\u6709\u5f88\u591a\u5965\u5229\u7ef4\u4e9a\u6c99\u62c9\u3002"} +{"id": "0002851", "video_name": "3304870b-dda2-5ed6-9758-65557a53d219", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u827a\u4f0e\uff0c\u914d\u6709\u94f6\u8272\u548c\u7ea2\u5b9d\u77f3\u60c5\u611f\u5316\u7684\u98ce\u666f\u3002"} +{"id": "0002852", "video_name": "330a0539-6a2d-50ea-93e1-f212a8f3cd8e", "text": "\u5973\u5b69\u6b63\u5728\u4f7f\u7528\u795e\u79d8\u7684\u4e1c\u65b9\u529b\u91cf\u6765\u5360\u535c\u5979\u81ea\u5df1\u7684\u547d\u8fd0\u3002"} +{"id": "0002853", "video_name": "330b7caf-2b26-5e6a-b79a-caa3fb88f293", "text": "\u4e9a\u5386\u514b\u65af\u5728\u4e00\u4e2a\u79d8\u5bc6\u623f\u95f4\u91cc\u627e\u5230\u4e00\u672c\u65e7\u65e5\u8bb0\u3002\u5c0f\u7ec4\u805a\u5728\u4e00\u8d77\uff0c\u9605\u8bfb\u65e5\u8bb0\u6761\u76ee\u3002"} +{"id": "0002854", "video_name": "330d6611-a56e-59d4-8c84-73a4f4131838", "text": "\u4e00\u4e2a\u8fd1\u8ddd\u79bb\u7684\u955c\u5934\u805a\u7126\u5728\u978b\u57ab\u4e0a\uff0c\u978b\u5e95\u6750\u6599\u88ab\u538b\u7f29\u4ee5\u5c55\u793a\u7f13\u51b2\u529f\u80fd\u3002"} +{"id": "0002855", "video_name": "330fd0d7-e43b-5d79-a7e9-e3c76cdb9960", "text": "\u7537\u5b50\u7a7f\u7740\u88c5\u5907\u6454\u5728\u96ea\u5730\u4e0a\u3002"} +{"id": "0002856", "video_name": "33196271-7d72-5c7d-9066-2e675c731728", "text": "\u8bf7\u6ce8\u610f\uff1a\u4e3a\u4e86\u53ef\u89c6\u5316\u548c\u52a8\u753b\u6548\u679c\uff0c\u53ef\u4ee5\u5728\u9002\u5f53\u7684\u5730\u65b9\u81ea\u7531\u5730\u878d\u5165\u9ad8\u7ea7\u56fe\u5f62\u3001\u89c6\u89c9\u4e0a\u5438\u5f15\u4eba\u7684\u8fc7\u6e21\u548c\u52a8\u6001\u6548"} +{"id": "0002857", "video_name": "331bd1d5-5e22-5f03-9b9f-3d0aeaeb7b82", "text": "\u54c8\u7ef4\u5c14\u00b7\u7c73\u83b1\u7a7f\u7740\u71d5\u5c3e\u670d\u5728\u68ee\u6797\u91cc\u6563\u6b65\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u6b63\u5728"} +{"id": "0002858", "video_name": "3321fa91-1681-5b39-9987-b51cf48ae83f", "text": "\u5728\u821e\u53f0\u4e0a\u6234\u7740\u6076\u9b54\u9762\u5177\u6f14\u594f\u91cd\u91d1\u5c5e\u97f3\u4e50\u7684\u4e50\u961f\uff0c\u4e3b\u5531\u4e00\u53ea\u624b\u6307\u5411\u89d2\uff0c\u5409\u4ed6\u624b\u4eec\u968f"} +{"id": "0002859", "video_name": "33239fb9-f958-5045-97b7-a7cfc65eff61", "text": "\u79cb\u5929\u8e22\u8db3\u7403"} +{"id": "0002860", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "\u5e74\u8f7b\u5973\u5b50\u8eba\u5728\u6c99\u6ee9\u4e0a\uff0c\u811a\u9732\u5728\u5916\uff0c\u8eab\u7a7f\u8f7b\u8584\u7684\u8863\u670d\uff0c\u771f\u5b9e\u7684\u8eab\u4f53\uff0c\u6234\u7740\u58a8\u955c"} +{"id": "0002861", "video_name": "3327646b-920a-5c52-8174-23c414de1402", "text": "\u5236\u4f5c\u4e00\u5e45\u753b\u9762\u4e2d\u95f4\u662f\u51ac\u5b63\u666f\u8c61\u7684\u56fe\u7247\u3002\u9644\u52a0\u6587\u4ef61\u3002"} +{"id": "0002862", "video_name": "332b9619-6ce1-5577-9460-9e3eaaacf403", "text": "\u5168\u666f\u955c\u5934\u5c55\u793a\u5899\u4e0a\u60ac\u6302\u7684\u5168\u5c3a\u5bf8\u955c\u5b50\u3002"} +{"id": "0002863", "video_name": "332d8b72-0b7b-5615-851e-61b1bb4aad8d", "text": "\u7075\u9b42\u88c2\u7f1d\u795e\u7947\u7578\u5f62\u773c\u775b\u7684\u7279\u5199\uff0c\u7d2b\u8272\uff0c\u8001\u65e7\u7684\u5f55\u50cf\u5e26\u98ce\u683c\uff0c\u53d1\u73b0\u5f55\u50cf\u5e26\uff0c\u6570\u5b57\u6050"} +{"id": "0002864", "video_name": "332f642b-c2e2-50ba-8386-94d46ac803f7", "text": "\u4ece\u8857\u9053\u4e0a\u8fd1\u8ddd\u79bb\u89c2\u770b\u4e00\u5ea7\u8d85\u73b0\u4ee3\u5efa\u7b51\u3002\u4e00\u4f4d\u5973\u58eb\u4ece\u7a97\u6237\u671b\u5411\u7a7a\u65e0\u4e00\u4eba\u7684\u8857\u9053\u3002"} +{"id": "0002865", "video_name": "3332cdac-9e9d-578e-8657-f5e55efcccf6", "text": "\u4e00\u4e2a\u7236\u4eb2\u5e2e\u52a9\u4ed6\u7684\u513f\u5b50\u9493\u9c7c\u3002"} +{"id": "0002866", "video_name": "33360603-9565-5b0f-be46-e26e329496b4", "text": "4k\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\u548c\u6240\u6709\u7ec6\u8282\uff0c8k\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u8fea\u65af\u5c3c\u98ce\u683c\uff0c\u5361\u901a\u98ce"} +{"id": "0002867", "video_name": "333b1666-240f-52bd-b084-56ab69b72378", "text": "\u7518\u5c3c\u4ec0\u5409\u7684\u7167\u7247\u975e\u5e38\u7f8e\u4e3d\u3002"} +{"id": "0002868", "video_name": "333f8a4e-0fa9-57a0-b4f4-7f20f598c94c", "text": "\u84dd\u9e1f\u6b63\u5728\u5317\u7f8e\u7684\u677e\u6811\u4e0a\u8df3\u8dc3\uff0c\u771f\u5b9e\u7684\u753b\u9762\u3002"} +{"id": "0002869", "video_name": "3345b3e0-8c83-5729-a8ba-33a1d4e052b6", "text": "\u4e9a\u5386\u514b\u65af\u5148\u751f\u5728\u4ed6\u7684\u6742\u8d27\u5e97\u6536\u94f6\u53f0\u4e0a\u6d4f\u89c8\u7535\u8111\uff0c\u53d1\u73b0\u4e86TikMe\u5fe0\u8bda\u8ba1\u5212\u3002\u4ed6\u7684\u773c\u775b"} +{"id": "0002870", "video_name": "334743eb-cb64-5def-abaf-17745308453e", "text": "\u4e00\u90e81983\u5e74\u7684\u7535\u5f71\u573a\u666f\uff0c\u7279\u5199\u4e00\u4e2a\u6027\u611f\u5973\u4eba\u7684\u8033\u6735\u548c\u7ea2\u5507\u4f4e\u8bed\u79d8\u5bc6\uff0c4K\u3002"} +{"id": "0002871", "video_name": "3349822a-657a-58ca-9ff4-c5d5a24de1cc", "text": "\u4e00\u4e2a\u72d0\u72f8\u5750\u5728\u68ee\u6797\u4e2d\u4e00\u4e2a\u9ed1\u6697\u6d1e\u7a74\u524d\u7684\u5916\u9762\u3002"} +{"id": "0002872", "video_name": "334f97dd-32c2-5180-8333-cbf0c4df0657", "text": "\u5370\u5ea6\u4e3a\u5176\u79d1\u5b66\u5bb6\u7684\u6708\u7403\u4efb\u52a1\u611f\u5230\u81ea\u8c6a\u3002"} +{"id": "0002873", "video_name": "33526f26-8b1c-542c-8bc3-dc5d3049d499", "text": "\u4e00\u4e2a\u5e26\u6709\u597d\u5947\u8868\u60c5\u7684\u53ef\u7231\u677e\u9f20\uff0c\u4ee5\u5361\u901a\u5f62\u5f0f\u5750\u5728\u6811\u679d\u4e0a\u3002"} +{"id": "0002874", "video_name": "33553aa0-0ded-581c-be64-a52001213cb1", "text": "\u91d1\u53d1\u5973\u5b69\uff0c\u7528\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u5448\u73b0\u51fa\u70df\u82b1\u3002"} +{"id": "0002875", "video_name": "335625a7-2333-5203-ad9a-36d61315adb3", "text": "\u5916\u661f\u4eba\u548c\u6211\u4eec\u5bb6\u5ead\u4e00\u8d77\u5e86\u795d\u6392\u706f\u8282\u3002"} +{"id": "0002876", "video_name": "335ffd78-7359-5f95-8f72-128728892868", "text": "\u6708\u4eae\u5728\u94f6\u5149\u4e2d\u6389\u843d\u5728\u6c34\u9762\u4e0a\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u5f69\uff0c\u4e91\u5f69\u4e0a\u6709\u4e00\u8f6e\u91d1\u8272\u7684\u6708\u4eae\u3002"} +{"id": "0002877", "video_name": "336040ed-f7b8-58cb-b6e2-2a7fe8a7d14c", "text": "\u4e00\u53ea\u5403\u51b0\u6dc7\u6dcb\u7684\u725b\u7684\u89c6\u9891"} +{"id": "0002878", "video_name": "336284c9-6a21-5b3b-9491-8eb8e4afd914", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5728\u6d77\u5e95\u6e38\u52a8\u7684\u4e39\u9876\u9e64\u9c7c\uff0c\u8d85\u903c\u771f\uff0c\u7f29\u5c0f\u89c6\u89d2\u3002"} +{"id": "0002879", "video_name": "3366a5ee-7df6-5b1e-823f-43efb8a5d57b", "text": "1980\u5e74\u4ee3\u7684\u8d5b\u535a\u670b\u514b\u3002\u4ecb\u4e8e\u673a\u5668\u4eba\u548c\u4eba\u7c7b\u4e4b\u95f4\u3002\u4e00\u4e2a\u771f\u6b63\u7684\u6f2b\u753b\u4e2d\u6027\u611f\u7684\u5973\u4eba\u3002"} +{"id": "0002880", "video_name": "336947cc-1901-53af-a153-711da861e6f9", "text": "\u7ea2\u9ed1\u767d\u8c03\u8272\u677f\uff0c\u4e4c\u9e26\u98de\u8d8a\u5893\u5730\uff0c\u6050\u6016\uff0c\u7535\u5f71\u573a\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002881", "video_name": "336f1ac3-0e2a-5852-8f29-3f7fc6f68276", "text": "\u7a81\u51fa\u7814\u7a76\u53d1\u73b0\u548c\u79d1\u5b66\u5b9e\u9a8c\u6765\u8bc1\u660e\u8fd9\u4e00\u4e8b\u5b9e\u3002\u871c\u8702\u9762\u90e8\u8bc6\u522b\uff1a"} +{"id": "0002882", "video_name": "3370b211-4be0-5bb4-8bb3-6180e9a26fad", "text": "\u4e00\u4e2a\u627f\u53d7\u7740\u5f88\u591a\u8003\u8bd5\u538b\u529b\u7684\u7537\u5b69\u3002 \n\nSource sentence: She is always eager to learn new things. \n\n\u5979\u603b\u662f\u6e34\u671b\u5b66\u4e60\u65b0\u4e8b\u7269\u3002"} +{"id": "0002883", "video_name": "33724211-2c37-59a3-9652-46e84df760d6", "text": "\u6807\u7b7e\u4e3a\u5feb\u4e50\u7684\u5efa\u7b51\u5e08\uff0c\u767e\u5e62\u5efa\u7b51\uff0c\u9ad8\u7ec6\u8282\uff0c\u9ec4\u91d1\u65f6\u95f4\uff0c8K\uff0c\u771f\u5b9e\u611f\u3002"} +{"id": "0002884", "video_name": "33795e37-cc2f-5073-ad93-d47534b897ef", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4eba\u7c7b\u770b\u5230AI\u673a\u5668\u6b63\u5728\u505a\u4ed6\u4eec\u6240\u80fd\u505a\u7684\u4e00\u5207\uff0c\u5982\u8fd0\u884c\u7f16\u7801\u3001\u521b\u4f5c\u5185\u5bb9\u3001\u8fd0\u8425\u5e7f\u544a\u7b49\u7b49\uff0c\u4f46AI\u673a\u5668"} +{"id": "0002885", "video_name": "33837e2e-3685-5dbe-861a-34205fb122d7", "text": "\u864e\u5578\u7740\u4e09\u8272\u6a59\u3001\u767d\u548c\u7eff\u3002"} +{"id": "0002886", "video_name": "338797ee-758d-5976-84fd-efc4295a30c7", "text": "\u56e0\u4e3a\u5973\u5b69\u6389\u4e86\u51b0\u6dc7\u6dcb\uff0c\u6240\u4ee5\u62cd\u4e86\u5979\u7684\u5168\u8eab\u7167\u3002"} +{"id": "0002887", "video_name": "338e2b0a-34db-5429-a872-da906f61ea8b", "text": "\u4e00\u8f86\u5145\u6ee1\u6de1\u84dd\u8272\u7684\u6c7d\u8f66\uff0c\u7ad9\u7740\u4e00\u4e2a\u4e94\u5c81\u7684\u5a74\u513f\u3002"} +{"id": "0002888", "video_name": "338eedb2-b079-57c0-b011-396e5b67202a", "text": "\u65b0\u90ce\u548c\u65b0\u5a18\u5728\u5a5a\u793c\u4e0a\u8df3\u821e\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "0002889", "video_name": "339709e1-b234-5a93-914c-bdddd7bf81db", "text": "\u4e00\u53ea\u62ff\u7740\u6fc0\u5149\u5251\u7684\u9f99"} +{"id": "0002890", "video_name": "339a6293-341f-52ca-a69c-5c1940b64171", "text": "\u4e00\u4e2a\u6728\u5de5\u6b63\u5728\u7528\u5c0f\u5de5\u5177\u5207\u5272\u6728\u6750\u3002"} +{"id": "0002891", "video_name": "339b9d4a-31a1-5ead-9580-1e997b92e3a8", "text": "\u54c8\u96f7\u5c06\u8fd9\u79cd\u73b0\u8c61\u5f52\u56e0\u4e8e\u5730\u7403\u7684\u4e2d\u7a7a\u7ed3\u6784\u3002"} +{"id": "0002892", "video_name": "33a12bf0-e8ec-58f3-b9cd-b24e51f6bea9", "text": "\u58ee\u89c2\u7684\u4e9a\u6d32\u8c61\u4f18\u7f8e\u5730\u5728\u5e7f\u9614\u7684\u666f\u89c2\u4e2d\u79fb\u52a8\u3002"} +{"id": "0002893", "video_name": "33a5f727-7a7b-5233-a80a-484fd427d80b", "text": "\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u4ece\u624b\u4e2d\u91ca\u653e\u95ea\u7535\u3002"} +{"id": "0002894", "video_name": "33aa43d2-a892-5d7d-899e-b9e9dad25fdc", "text": "\u4e00\u5934\u6b63\u5728\u8349\u5730\u4e0a\u5403\u8349\u7684\u5976\u725b\u88ab\u98ce\u5439\u5230\u4e86\u5929\u7a7a\u4e2d\u3002"} +{"id": "0002895", "video_name": "33ac019d-6ce1-5945-a8ca-554c66f8eb7d", "text": "\u88ab\u5b9a\u7f6a\u8005\u7684\u8d22\u4ea7\u4e0d\u5f97\u88ab\u6ca1\u6536\uff0c\u5feb\u901f\u8fd0\u52a8\u3002"} +{"id": "0002896", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "\u5728\u6bd4\u57fa\u5c3c\u6d77\u5e95\u57ce\u7684\u4e00\u500b\u50fb\u975c\u89d2\u843d\uff0c\u5728\u4e00\u500b\u9ed1\u6697\u800c\u5be7\u975c\u7684\u665a\u4e0a\uff0c\u6d77\u7dbf\u5bf6\u5bf6\u7a81\u7136\u611f"} +{"id": "0002897", "video_name": "33af77ff-d5b3-5498-8964-3a2cfcd39021", "text": "\u9ad8\u6e05\u6444\u5f71\u3001\u5e7f\u544a\u62cd\u6444\uff0c\u70b8\u9e21\u4ece\u7a7a\u4e2d\u843d\u5728\u83b4\u82e3\u4e0a\u3002"} +{"id": "0002898", "video_name": "33b63cbb-9c5d-5905-ae87-a5032fd34937", "text": "\u7537\u6027\uff0c\u5370\u5ea6\u4eba\uff0c30\u5c81\uff0c\u76f8\u8c8c\u82f1\u4fca\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u73b0\u4ee3\u611f\u5341\u8db3\uff0c\u76f4\u89c6\u524d\u65b9\uff0c\u8863\u7740\u9c9c\u8273\u3002\u4ed6\u53cb\u5584"} +{"id": "0002899", "video_name": "33b72c9d-7874-509d-8e00-64cf0678eb5d", "text": "\u4e00\u4e2a\u7164\u6c14\u7f50\u9001\u8d27\u5458\u5411\u6708\u7403\u8fd0\u9001\u7164\u6c14\u7f50\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "0002900", "video_name": "33b870c1-8281-5f84-a5fa-e759b7f98bf9", "text": "\u521b\u9020\u51fa\u4e00\u4e2a\u771f\u5b9e\u7684\u81ea\u7136\u89c6\u9891\uff0c4K\uff0c\u5168\u9ad8\u6e05\uff0c\u903c\u771f\u3002"} +{"id": "0002901", "video_name": "33c6586d-b16c-5006-86b7-cfd78f8dbe10", "text": "\u4e00\u4e2a\u767d\u5154\u548c\u4e00\u4e2a\u9ec4\u5154\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "0002902", "video_name": "33d091ee-4d98-5641-9b72-a9fd87fccd2f", "text": "\u5de8\u578b\u4eba\u5f62\u773c\u955c\u86c7\u62cd\u6444\u7684\u6050\u6016\u5f71\u50cf\uff0c20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u5370\u5730\u5b89\u7eb3\u743c\u65af\u3002"} +{"id": "0002903", "video_name": "33d1fe45-6aad-551d-b66a-ec9ce319714a", "text": "\u65cb\u8f6c\u60a8\u7684\u624b\u673a\u4ee5\u67e5\u770b\u5c4f\u5e55\u4fe1\u606f\u3002"} +{"id": "0002904", "video_name": "33d9a575-87ac-560d-aeb5-209f29b64bd8", "text": "\u5c71\u9876\u4e0a\u7684\u7537\u5b69\u548c\u72ee\u5b50\u4fef\u77b0\u7740\u4ed6\u4eec\u5b88\u62a4\u7684\u4e1b\u6797\uff0c\u7f8e\u4e3d\u7684\u65e5\u843d\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "0002905", "video_name": "33dddc9e-8767-5300-a898-f2c880de21e5", "text": "\u4e00\u5f20\u5e74\u8f7b\u3001\u6f02\u4eae\u7684\u804c\u4e1a\u5973\u6027\u7a7f\u7740\u897f\u88c5\u7ad9\u7acb\u7740\uff0c\u76f4\u89c6\u955c\u5934\uff0c\u5c55\u793a\u5979\u4ece\u5934\u5230\u811a\u7684\u5168\u8c8c\u3002"} +{"id": "0002906", "video_name": "33dde3c8-975c-5cde-a937-d48c4035b87c", "text": "\u8fc5\u901f\u7f16\u8f91\u4ee5\u663e\u793a\u7537\u5973\u4e3b\u89d2\u7684\u4f1a\u9762\u573a\u666f\uff0c\u5982\u56fe\u4e66\u9986\u3002"} +{"id": "0002907", "video_name": "33e8fb80-996b-5d1d-b602-9a66e7c35b58", "text": "\u5c55\u793a\u4e00\u6b3e\u73b0\u4ee3\u5316\u7684\u8ba1\u7b97\u673a\u6f0f\u6d1e\u626b\u63cf\u5de5\u5177\uff0c\u5c06\u5df2\u8bc6\u522b\u7684\u8b66\u62a5\u4ee5\u7ea2\u8272\u548c\u6a59\u8272\u4fe1\u6807\u5728\u73b0\u4ee3\u663e\u793a\u5668\u4e0a\u95ea"} +{"id": "0002908", "video_name": "33fde785-ba31-5160-a8a5-bbc67a101d96", "text": "\u9e3d\u5b50\u4e0e\u4eba\u7c7b\u6218\u6597\u3002"} +{"id": "0002909", "video_name": "33fdf763-76f4-5a46-9d76-2d36798f4c3a", "text": "\u53e6\u4e00\u4e2a\u4e16\u754c\u822c\u7684\u666f\u8c61\u5728\u6211\u4eec\u9762\u524d\u5c55\u5f00\uff0c\u9ad8\u8038\u7684\u5c71\u8109\u4f3c\u4e4e\u89e6\u53ca\u5929\u7a7a\uff0c\u5b83\u4eec\u7684\u5c71\u9876\u4e0a\u51a0\u7740\u65cb"} +{"id": "0002910", "video_name": "34000215-13d0-5b51-a39c-93d81f8530ba", "text": "\u8ba9\u6211\u770b\u5230\u4e00\u7247\u96e8\u548c\u96f7\u7684\u5929\u7a7a"} +{"id": "0002911", "video_name": "34017ba0-aa60-5d2f-93f2-d3cf9801e8c9", "text": "\u4e00\u4e2a\u7531\u7238\u7238\u3001\u5988\u5988\u548c\u4e24\u4e2a\u5b69\u5b50\u7ec4\u6210\u7684\u5bb6\u5ead\u5750\u5728\u6d77\u6ee9\u8fb9\u7f18\uff0c\u51dd\u671b\u5927\u6d77\u3002"} +{"id": "0002912", "video_name": "34023c06-e742-53d0-8533-cb6fa57a7b58", "text": "\u4e00\u67b6\u98de\u673a\u4ece\u706b\u5c71\u7206\u53d1\u4e2d\u9003\u8131\u4e86\u3002"} +{"id": "0002913", "video_name": "3407355e-010c-51ac-af62-e9cbb539e207", "text": "\u9ed1\u888d\u4eba\u7a7f\u8fc7\u9ed1\u6697\u7684\u5730\u7262\u8d70\u5411\u4e00\u76cf\u7ea2\u706f\u3002"} +{"id": "0002914", "video_name": "340c6144-e7a5-5dff-a45a-976ede434f08", "text": "\u5728\u6d77\u6d0b\u5185\u521b\u9020\u6d77\u6d0b\u52a8\u7269\u7684\u56fe\u50cf\uff0c\u6e10\u53d8\u989c\u8272\uff0c\u9713\u8679\u706f\u5149\u3002"} +{"id": "0002915", "video_name": "340df211-ad8f-523d-8474-ec637cdc6ca3", "text": "\u9605\u8bfb\u4e00\u672c\u4e66\u65f6\uff0c\u6709\u4e9b\u5b69\u5b50\u5728\u6211\u65c1\u8fb9\u7684\u5ea7\u4f4d\u4e0a\u5fae\u7b11\uff0c\u5c31\u50cf\u7167\u7247\u4e2d\u7684\u98ce\u683c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002916", "video_name": "3419b834-b1fb-51f5-a22c-31838123490b", "text": "\u4e00\u6bb51970\u5e74\u4ee3\u7684\u97f3\u4e50\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u53ea\u5de8\u5927\u7684\u9e66\u9e49\u5728\u4e00\u4e2a\u88ab\u706f\u5149\u7167\u4eae\u7684\u8fea\u65af\u79d1\u821e\u6c60\u4e0a"} +{"id": "0002917", "video_name": "341b4af1-3d35-5282-be85-534d87a55a0e", "text": "\u4e00\u7fa4\u6d88\u9632\u5458\u6b63\u5728\u5411\u706b\u707e\u5904\u51b2\u53bb\u3002"} +{"id": "0002918", "video_name": "341c7453-2251-5f58-acf7-30e67d2f77bd", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u706f\u5149\u7684\u821e\u53f0\u4e0a\uff0c\u6234\u7740\u773c\u955c\u548c\u5439\u7740\u8428\u514b\u65af\u98ce\u7684\u53e3\u888b\u5996\u602a\u5c0f\u9f9f\u5728"} +{"id": "0002919", "video_name": "342179f9-2b6d-5308-b7f0-fc2abed61ac8", "text": "\u62ab\u5934\u58eb\u4e50\u961f\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u97f3\u4e50\uff0c\u95ea\u70c1\u7740\u706f\u5149\uff0c\u91c7\u7528\u6781\u7b80\u4e3b\u4e49\u98ce\u683c\u3002"} +{"id": "0002920", "video_name": "342686cf-5a4f-5941-b766-672b14a00b5c", "text": "\u4e00\u4e2a\u6765\u81ea\u54e5\u65af\u8fbe\u9ece\u52a0\u7684\u5496\u5561\u519c\u573a\u666f\u89c2\uff0c\u540e\u9762\u662f\u4e00\u5ea7\u706b\u5c71\uff0c\u914d\u6709\u5178\u578b\u7684\u5c0f\u54e5\u65af\u8fbe\u9ece\u52a0\u8001"} +{"id": "0002921", "video_name": "342be0ef-7b56-52b4-9873-3d46e76cd65e", "text": "\u5236\u9020\u65e0\u9650\u5faa\u73af\u3001\u6d77\u6d0b\u3001\u7ea2\u73ab\u7470\u82b1\u74e3\u3001\u5929\u4f7f\u3002"} +{"id": "0002922", "video_name": "342c05aa-9648-5e5b-8e03-9cea862d945c", "text": "\u4e00\u4e2a\u8eab\u5f71\u7ad9\u5728\u88ab\u4e07\u82b1\u7b52\u822c\u7684\u989c\u8272\u6240\u7167\u4eae\u7684\u4e16\u754c\u4e2d\uff0c\u6bcf\u79cd\u8272\u8c03\u4ee3\u8868\u7740\u4ed6\u4eec\u5f3a\u5316\u89c6\u529b\u7684\u72ec\u7279\u65b9"} +{"id": "0002923", "video_name": "342f6da5-f130-530a-84c7-6bf3349225b9", "text": "\u4e2d\u6587\u6c34\u9f99\u53d8\u6210\u4e00\u6761\u9526\u9ca4\u3002"} +{"id": "0002924", "video_name": "34329682-bf51-53fc-8b27-dc28ecdc5873", "text": "3D\u5361\u901a\uff0c\u5fae\u7b11\uff0c\u4e13\u4e1a\uff0c\u7a7f\u7740\u5e26\u94ae\u6263\u7684\u683c\u5b50\u886c\u886b\u3001\u84dd\u8272\u8fd0\u52a8\u5916\u5957\u3001\u84dd\u8272\u5916\u8863\uff0c\u84dd"} +{"id": "0002925", "video_name": "343daed3-e16c-5763-bd03-cad714923e70", "text": "\u6751\u4e0a\u6625\u6811\u65e9\u4e0a\u6162\u8dd1\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "0002926", "video_name": "343fdb0c-4656-5605-97f6-b68038e832b1", "text": "\u4e00\u68f5\u795e\u5723\u7684\u6811\uff0c\u4e2d\u5fc3\u6709\u4e00\u4e2a\u54e5\u7279\u5f0f\u5927\u6559\u5802\uff0c\u6811\u53f6\u9c9c\u8273\u660e\u4eae\uff0c\u6811\u76ae\u6df1\u68d5\u8272\u3002\u6811"} +{"id": "0002927", "video_name": "343fe538-104f-5447-80fe-7d9cd368763a", "text": "\u5973\u4eba\u5728\u516c\u56ed\u91cc\u9605\u8bfb\u3002\u68d5\u8910\u8272\u3002\u9488\u5b54\u76f8\u673a\u3002\u80f6\u7247\u9897\u7c92\u3002\u6e10\u53d8\u7167\u660e\u3002\u6697\u8272\u6e10\u53d8\u8fb9\u6846"} +{"id": "0002928", "video_name": "344652a6-321a-54e5-ae7a-93a3ee883115", "text": "\u4fa6\u63a2\u51b3\u5b9a\u8c03\u67e5\u8c0b\u6740\u6848\uff0c\u4ee5\u627e\u51fa\u8c01\u6740\u4e86\u6731\u8389\u5a05\u4ee5\u53ca\u4e3a\u4ec0\u4e48\u3002\u6731\u8389\u5a05\u7ee7\u7eed"} +{"id": "0002929", "video_name": "34502209-bdce-5018-ac11-7ce35534df98", "text": "Sparky\u7b80\u4ecb\uff1a\u5c55\u793a\u4e00\u4e2a\u5e26\u7740\u592a\u7a7a\u670d\u7684\u53ef\u7231\u732b\u54aaSparky\u5728\u8272\u5f69\u7f24\u7eb7\u7684\u661f\u7403Whiskeronia\u7684\u540e\u9662\u91cc\u8ffd"} +{"id": "0002930", "video_name": "345239cb-d1ee-57b8-89ff-c9a5a4a8f599", "text": "\u4eba\u7c7b\u5728\u5929\u5802\u524d\u7684\u58ee\u4e3d\u753b\u9762\u3002"} +{"id": "0002931", "video_name": "3457b751-179b-5f48-abcd-e9fdf5784102", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u975e\u5e38\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u7528\u7b14\u8bb0\u672c\u7535\u8111\u67e5\u770b\u4ed6\u7684\u7535\u5b50\u90ae\u4ef6\u3002"} +{"id": "0002932", "video_name": "3459cde2-55d8-554e-b620-9ccee3a68b2e", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\uff0c\u9ed1\u767d\u7535\u89c6\u6807\u5fd7\u3002"} +{"id": "0002933", "video_name": "345b57f6-161b-5bbd-bac0-b6f35f62cfee", "text": "\u5de8\u5927\u7684\u7194\u5ca9\u602a\u7269\u53d7\u706b\u5c71\u80fd\u91cf\u589e\u5f3a\uff0c\u55b7\u5c04\u706b\u7130\u548c\u5ca9\u6d46\uff0c\u6467\u6bc1\u4e86\u57ce\u5e02\uff0c\u5de8\u578b\u602a\u517d"} +{"id": "0002934", "video_name": "345e2e54-5f44-5ad0-b804-eac57a3764e0", "text": "\u7075\u9b42\u76f8\u8fde\uff0c\u4f46\u7ebf\u5df2\u7ecf\u65ad\u4e86\u3002"} +{"id": "0002935", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u7b2c\u4e00\u6b21\u5728\u5496\u5561\u9986\u4e2d\u4e3b\u89d2\u548c\u5973\u4e3b\u89d2\u4e4b\u95f4\u7684\u5f15\u4eba\u6ce8\u76ee\u7684\u573a\u666f\u3002\n\n\u7ffb\u8bd1\u540e\u53e5\u5b50\uff1a\u4e3b\u89d2\u548c\u5973\u4e3b"} +{"id": "0002936", "video_name": "346d6396-9204-5fb8-b2c6-1f704d023f1a", "text": "\u745e\u79cb\u00b7\u9ea6\u514b\u4e9a\u5f53\u65af\u4ee53D\u5361\u901a\u98ce\u683c\u5448\u73b0\uff0c\u5979\u5728\u8fea\u62dc\u54c8\u5229\u6cd5\u5854\u65c1\u7684\u8857\u9053\u4e0a\u884c"} +{"id": "0002937", "video_name": "346e1ac8-55d8-5ecc-871b-23199815cf51", "text": "\u4e00\u4e2a\u5e26\u6709\u8212\u9002\u5185\u9970\u548c\u7f13\u6162\u52a8\u753b\u706b\u7684\u58c1\u7089\u80cc\u666f"} +{"id": "0002938", "video_name": "34722082-e031-58bc-bc93-9ca625d81d60", "text": "\u72d7\u53eb\u58f0\uff0c\u67d4\u548c\u7684\u98ce\uff0c\u9ed1\u8272\u5a01\u5c14\u58eb\u67ef\u57fa\u7ad9\u5728\u4e00\u95f4\u5706\u6728\u5c0f\u5c4b\u7684\u95e8\u5eca\u4e0a\uff0c\u5468\u56f4\u662f\u5e38\u9752\u677e"} +{"id": "0002939", "video_name": "34758909-e211-5d86-83c9-fc0b8cc71a75", "text": "\u51b0\u6cb3\u65f6\u671f\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "0002940", "video_name": "3478b9e2-999b-56eb-a313-d2d33ae17018", "text": "\u62a4\u58eb\u4fa7\u8eab\u5411\u540e\u5f2f\u66f2\uff0c\u4ee5\u52a8\u753b\u98ce\u683c\u6ce8\u89c6\u7740\u955c\u5934\u3002"} +{"id": "0002941", "video_name": "34790e10-28ad-5e79-848f-0063230d336c", "text": "\u5154\u5b50\u548c\u4e4c\u9f9f\u7684\u5192\u9669\uff0c\u96be\u5fd8\u7684\u56de\u5fc6\u3002"} +{"id": "0002942", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "\u592a\u7a7a\u4e2d\u5f62\u6210\u4e00\u4e2a\u661f\u7cfb\u7684\u62cd\u6444\uff0c\u6d41\u7545\u7684\u52a8\u753b\uff0c4K\uff0c\u6ca1\u6709\u626d\u66f2\u3002"} +{"id": "0002943", "video_name": "3488a4dc-7009-549b-9828-47e20b2cfbf6", "text": "2150\u5e74\u7684\u73b0\u5b9e\u5927\u8c61\uff0c\u811a\u4e0a\u6709\u50cf\u9c7c\u5c3e\u5df4\u4e00\u6837\u7684\u4e1c\u897f\u53ef\u4ee5\u6e38\u6cf3\u3002"} +{"id": "0002944", "video_name": "34893f62-e4d7-5408-92f3-5790c198fbdd", "text": "\u7167\u987e\u5730\u7403\uff0c\u5173\u5fc3\u81ea\u5df1\u3002"} +{"id": "0002945", "video_name": "348b1ce1-4dd5-57e6-b6a1-48f7c52da1d1", "text": "\u65e5\u672c\u6751\u5e84\uff0c\u5c4b\u9876\u4e3a\u6df1\u7070\u8272\uff0c\u5468\u56f4\u6709LED\u706f\u3002\u4fe1\u606f\uff1aJorge Alejandro\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "0002946", "video_name": "348c84c5-d00b-5f57-88e4-7f9adf809894", "text": "\u4e00\u4e2a\u4eba\u5236\u9020\u68a6\u60f3\u6c7d\u8f66\u3002"} +{"id": "0002947", "video_name": "348e3148-47be-51fd-a2fd-9f813d485d1d", "text": "\u8b66\u5bdf\u8ffd\u9010\u72af\u4eba\u8df3\u4e0a\u6865\u3002"} +{"id": "0002948", "video_name": "349ab579-0762-5b0a-8688-a54e7f2b8ca6", "text": "\u4e00\u53ea\u4e4c\u9f9f\u548c\u4e00\u53ea\u5154\u5b50\u5e76\u80a9\u5728\u9646\u5730\u4e0a\u884c\u8d70\u3002"} +{"id": "0002949", "video_name": "349b1d1c-ab0d-5e48-bfc7-52421bb54cc5", "text": "\u7c73\u8001\u9f20\u5728\u623f\u5b50\u4e0a\u8df3\u821e\u3002"} +{"id": "0002950", "video_name": "349de271-edaa-5eb3-8fc1-537f8d0837ff", "text": "\u4e24\u9897\u661f\u5728\u4f26\u6566\u7684\u6df1\u84dd\u8272\u5929\u7a7a\u4e2d\u95ea\u70c1\uff0c\u795e\u5947\u768470\u5e74\u4ee3\u9ed1\u6697\u5947\u5e7b\u98ce\u683c\uff0c\u771f\u4eba\u5b9e\u666f\uff0c\u903c"} +{"id": "0002951", "video_name": "349dfeea-7497-5e4c-9c90-7e30a53cc9c6", "text": "\u5f00\u573a\u955c\u5934\u662f\u5370\u5ea6\u6751\u5e84\u7f8e\u4e3d\u7684\u7eff\u8272\u666f\u89c2\uff0c\u592a\u9633\u6b63\u5728\u5347\u8d77\u3002"} +{"id": "0002952", "video_name": "34a6584b-6ee2-567e-b46a-84e8fa62ebf2", "text": "\u4e3b\u548c\u6551\u4e16\u4e3b\u6770\u5e03\u00b7\u5e03\u4ec0\u7279\u6717\u666e\u65d7\u5e1c\u63e1\u624b\u3002"} +{"id": "0002953", "video_name": "34a6844f-b51b-5dca-ad22-f749b2f74abf", "text": "\u590d\u6742\u7684\u5149\u56fe\u6848\u3002\n\u8d85\u9ad8\u6e05\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u30018K\u300116:9\u3002"} +{"id": "0002954", "video_name": "34ab5489-510d-5e41-8acf-da88cd1251c7", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u591c\u5e97\u91cc\u7528\u6027\u611f\u7684\u65b9\u5f0f\u5728\u94a2\u7ba1\u4e0a\u8df3\u821e\u6a21\u7279\u3002"} +{"id": "0002955", "video_name": "34acb7ef-d1b6-5d42-978d-59cd257d9224", "text": "\u62c9\u59c6\u548c\u590f\u59c6\u4f5c\u4e3a\u670b\u53cb\u62e5\u62b1\u7684\u6e29\u99a8\u573a\u666f\u3002"} +{"id": "0002956", "video_name": "34b51bad-ea79-5a42-9749-b023fdf37beb", "text": "\u4e00\u9897\u6c34\u6676\u7403\uff0c\u5355\u8272\uff0c\u892a\u8272\u7684\u989c\u8272\uff0c\u9b54\u5e7b\u7684\u3002"} +{"id": "0002957", "video_name": "34b6b056-dbc5-5bf9-bf3e-a8ab12f69f8f", "text": "\u5efa\u7acb\u5e7f\u89d2\u955c\u5934\uff0c\u91d1\u8272\u65f6\u6bb5\uff0c\u4eba\u4eec\u6b65\u884c\uff0c\u672a\u6765\u57ce\u5e02\uff0c\u4eba\u5de5\u5c9b\u5c7f\uff0c\u9ad8\u8038\u7684\u697c\u5c42\u548c\u7a7a\u95f4\uff0c\u73b0\u4ee3\u5316\u7684\u793e\u533a\uff0c\u901a\u8fc7"} +{"id": "0002958", "video_name": "34bc0145-9f6d-536c-a0cd-d4e93eb0d014", "text": "\u65e5\u672c\u6076\u9b3c\u4f8d\u58eb\u624b\u6301\u9b3c\u5200\uff0c\u5a01\u98ce\u51db\u51db\u5730\u7ad9\u7acb\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3001\u5bf9\u79f0\u3001\u6570\u5b57\u4e09\u7ef4\u3001\u786c\u8868"} +{"id": "0002959", "video_name": "34c203c9-8e90-5ead-a610-c9f669697262", "text": "\u5728\u591c\u91cc\u9a91\u7740\u6211\u7684\u6469\u6258\u8f66\u7a7f\u8fc7\u4e00\u5ea7\u906d\u53d7\u6218\u4e89\u7834\u574f\u7684\u57ce\u9547\u3002"} +{"id": "0002960", "video_name": "34c6c3fd-d518-5a56-a60e-b647f7b93a88", "text": "\u7ea2\u8272\u5fc3\u5f62\u7011\u5e03\u88c5\u9970\u7740\u767d\u8272\u7a7a\u767d\u533a\u57df\u3002"} +{"id": "0002961", "video_name": "34c6ca97-375a-5ddd-85c1-3f572f365361", "text": "\u5361\u901a\u732b\u548c\u8001\u9f20\u5e26\u7740\u4e00\u9505\u5976\u916a\u3002"} +{"id": "0002962", "video_name": "34cdcf1a-3f20-57c1-8fab-d2688322a8cc", "text": "\u4e00\u4e2a\u7ad9\u5728\u884c\u661f\u4e0a\u7684\u7537\u4eba\uff0c\u5f71\u89c6\u7ea7\u522b\u76844K\u3002"} +{"id": "0002963", "video_name": "34d8c5d9-158e-5917-863e-0de50e6a6906", "text": "\u4e00\u53ea\u732b\u4ece\u68ee\u6797\u91cc\u8d70\u6765\uff0c\u7136\u540e\u8f6c\u5934\u770b\u5411\u6444\u50cf\u673a\u3002"} +{"id": "0002964", "video_name": "34d8f92f-56d8-57ac-9cf7-aacb8444ed98", "text": "\u5f00\u573a\u662f\u58ee\u4e3d\u7684\u65e5\u51fa\uff0c\u6e29\u6696\u7684\u9633\u5149\u7167\u8000\u7740\u9e45\u5375\u77f3\u8857\u9053\u3002\u573a\u666f\u8f6c\u6362\u81f3\u53e4\u8001\u7684\u5efa\u7b51\u548c"} +{"id": "0002965", "video_name": "34e0f446-3618-5c64-a772-e271a8ea92e2", "text": "\u9e66\u9e49\u5728\u8bf4\u8bdd\uff0c\u6811\u53f6\u5728\u52a8\u3002"} +{"id": "0002966", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "\u7a7f\u7740\u8fde\u5e3d\u886b\u548c\u5e3d\u5b50\u7684Hoodboy\uff08HB\uff09\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u7740\uff0c\u9762\u5e26\u5fe7\u90c1\u8868\u60c5\u3002"} +{"id": "0002967", "video_name": "34e6c6a2-05e3-505b-bcf4-b7cf1e4c5718", "text": "\u533b\u751f\u5728\u5973\u6027\u5206\u5a29\u65f6\u7684\u7b2c\u4e00\u4e2a\u89c6\u89d2"} +{"id": "0002968", "video_name": "34f61564-5152-5f7d-9461-4359e0cf7d7f", "text": "\u665a\u971e\u7167\u8000\u4e0b\uff0c\u5929\u7a7a\u666f\u8272\u5448\u73b0\u51fa\u7c89\u7ea2\u548c\u7ea2\u8272\u7684\u8272\u8c03\u3002"} +{"id": "0002969", "video_name": "34fa95b5-93e4-5099-8d6b-e2411ecc2843", "text": "\u4e2a\u63a5\u8fd1\u5730\u7403\u7684\u5b87\u5b99\u751f\u7269\uff0c\u5de8\u5927\u3001\u7535\u5f71\u822c\u3001\u52a8\u60014\u3002"} +{"id": "0002970", "video_name": "34fa9dcd-370a-51a2-a6c4-6cb0dede2051", "text": "\u70df\u96fe\u4ece\u7a97\u6237\u5192\u51fa\uff0c\u5efa\u7b51\u7269\u7740\u706b\uff0c\u6d88\u9632\u5458\u55b7\u6c34\uff0c\u4ee5\u903c\u771f\u76848K\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "0002971", "video_name": "35018321-1081-5774-9e22-fb916fa6329d", "text": "\u4ed6\u9a7e\u7740\u6709\u7ffc\u7684\u6218\u8f66\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "0002972", "video_name": "3501f080-20cf-546d-ba94-6ad388adb57a", "text": "\u6709\u4eba\u8bf4\u4e16\u754c\u672b\u65e5\uff0c\u6709\u4eba\u8bf4\u51b0\u5c01\u4e09\u5c3a\u3002"} +{"id": "0002973", "video_name": "35021bb1-f2e1-5008-994a-76a0279b0af7", "text": "1970\u5e74\u4ee3\u5728\u65e5\u672c\u7684\u827a\u672f\u7535\u5f71\uff0c\u6709\u738b\u5bb6\u536b\u7684\u6c1b\u56f4\uff0c\u4ece\u7a97\u6237\u6389\u843d\u3002"} +{"id": "0002974", "video_name": "350aa303-872c-59a3-bddc-b936ff458407", "text": "\u73b0\u573a\u6447\u6eda\u97f3\u4e50\u4f1a\uff0c\u8df3\u8dc3\u7684David Lee Roth\u5728\u821e\u53f0\u4e0a\u6f14\u5531\u3002"} +{"id": "0002975", "video_name": "3513dfc3-b1ce-553d-862d-7fe9e3728567", "text": "\u5728\u4e00\u4e2a\u8212\u9002\u7f8e\u4e3d\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u53ea\u767d\u732b\u5728\u73a9\u9f13\u3002"} +{"id": "0002976", "video_name": "3515a549-d4a3-5afe-bc51-d2cdf364109f", "text": "\u592b\u5987\u624b\u7275\u624b\u5728\u6d77\u6ee9\u4e0a\u591c\u665a\u6563\u6b65\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u8f6e\u6ee1\u6708\u3002 \n\nSource sentence: I am sorry for the inconvenience caused. \n\u5f88\u62b1"} +{"id": "0002977", "video_name": "35189df0-bd7b-5cd7-8d80-4210f87277bc", "text": "\u5236\u4f5c\u4e00\u4e2a3D\u5361\u901a\u7247\uff0c\u5185\u5bb9\u662f\u513f\u7ae5\u6342\u4f4f\u9f3b\u5b50\u8eb2\u907f\u9ec4\u8272\u4e91\u96fe\uff0c\u5206\u8fa8\u7387\u4e3a4K\u9ad8\u6e05\u3002"} +{"id": "0002978", "video_name": "3521cbc2-b76f-5a44-a96b-39c625f4eaa7", "text": "\u4e00\u5bf9\u604b\u4eba\u5728\u8d85\u8d8a\u4eba\u7c7b\u7406\u89e3\u7684\u6700\u6d6a\u6f2b\u7ea6\u4f1a\u3002"} +{"id": "0002979", "video_name": "35270bd5-f528-520f-a73a-6d7f9072bb97", "text": "\u6d77\u6ee9\u4e3b\u9898\u7684\u8868\u60c5\u7b26\u53f7\u5728\u7eff\u8272\u6a21\u7cca\u7684\u9713\u8679\u706f\u4e2d\u98de\u821e\u3002"} +{"id": "0002980", "video_name": "3527df2b-6483-5de6-962d-645c0dbbf093", "text": "\u613f\u6392\u706f\u8282\u7684\u5149\u8292\u5e26\u7ed9\u4f60\u548c\u4f60\u7684\u5bb6\u4eba\u65e0\u5c3d\u7684\u6b22\u4e50\u3002"} +{"id": "0002981", "video_name": "35292154-7787-5a6d-a844-0412c6bd9346", "text": "\u4e00\u53ea\u732b\u65b0\u95fb\u8bb0\u8005\u8c08\u8bba\u5929\u6c14\u3002"} +{"id": "0002982", "video_name": "352e7cc2-a4d2-53fc-9ef6-18d93938f5e0", "text": "\u4e00\u4e2a\u6df1\u7a7a\u573a\u666f\uff0c\u5206\u8fa8\u7387\u4e3a1920x1080\uff0c\u6709\u661f\u661f\u3001\u7c92\u5b50\u4e91\u3001\u94c1\u3001\u6c22\u3001\u6c26\u3001\u78b3\uff0c\u8272\u5f69\u9c9c\u8273\u3002"} +{"id": "0002983", "video_name": "3538d334-b5f8-55ad-8ef7-91100e0bb580", "text": "\u4ece\u68ee\u6797\u5230\u6751\u5e84\u7684\u822a\u62cd\u753b\u9762\uff0c\u98ce\u666f\u4f18\u7f8e\u3002\n\nSource sentence: The COVID-19 pandemic has affected the entire world, causing widespread illness, death, and economic disruption. \n\n\u65b0"} +{"id": "0002984", "video_name": "353a0e29-f389-544e-9772-f898c0b8224a", "text": "\u9e21\u86cb\u5ba2\u6237\u5728\u5c3c\u65e5\u5229\u4e9a\u5e02\u573a\u8d2d\u4e70\u5927\u91cf\u9e21\u86cb\u7bb1\u3002"} +{"id": "0002985", "video_name": "353b27f0-8654-5c2a-88ac-fd9fe9b7b8ac", "text": "\u76f8\u4e92\u5410\u53e3\u6c34\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "0002986", "video_name": "353ba5d2-6728-5a09-86b3-a5086151f884", "text": "\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\uff0c\u673a\u5668\u4eba\u9a71\u8d76\u6709\u6076\u610f\u7684\u5de5\u4f5c\u4eba\u5458\u3002"} +{"id": "0002987", "video_name": "353bc774-8fbc-5dc5-b1a9-901181605c9b", "text": "\u5728\u9ec4\u91d1\u5bab\u6bbf\u7684\u8f89\u714c\u4e2d\uff0c\u4fe1\u4efb\u7684\u987e\u95ee\u585e\u62c9\u82ac\u5a1c\u592b\u4eba\u4e0e\u56fd\u738b\u96f7\u91d1\u7eb3\u5fb7\u6df1\u5165\u4ea4\u8c08\u3002\u4ed6"} +{"id": "0002988", "video_name": "3541d8e4-806b-5bea-a936-872b7bf44d27", "text": "\u7f8e\u4e3d\u7684\u5723\u8bde\u8282\u56fe\u7247\u9ad8\u54c1\u8d28\u3001\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "0002989", "video_name": "354e5c14-527d-5afa-b536-eea23445dcd6", "text": "\u53ef\u6015\u7684\u8001\u5976\u5976\u6084\u6084\u5730\u7a7f\u8fc7\u5929\u5802\u82b1\u56ed\u3002"} +{"id": "0002990", "video_name": "354ec60f-c751-5ab7-adf4-7f0532c584ae", "text": "\u6cf0\u52d2\u521b\u9020\u8005\u5927\u7b11\u7740\uff0c3D\u52a8\u753b\u3002"} +{"id": "0002991", "video_name": "35505e7c-6a9d-5676-8ded-c74f75f4f41d", "text": "\u5728\u843d\u65e5\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u4f4d\u5145\u6ee1\u559c\u60a6\u548c\u6d3b\u529b\u7684\u4eba\u5728\u65e0\u5c3d\u7684\u6d77\u6ee9\u4e0a\u6f2b\u6b65\uff0c\u80cc\u666f\u4e2d\u54cd\u8d77\u6b22\u4e50"} +{"id": "0002992", "video_name": "3554b0e9-6809-5324-b1b1-ae9b32614a91", "text": "\u5728\u9ec4\u660f\u65f6\u5206\uff0c\u5728\u5c71\u9876\u4e0a\uff0c\u4e00\u53ea\u9ed1\u732b\u6b63\u5728\u5403\u7740\u4e00\u6735\u84dd\u8272\u7684\u73ab\u7470\u3002"} +{"id": "0002993", "video_name": "35580bd4-84a0-518e-8972-62b2984e610b", "text": "\u4e00\u4e2a\u5370\u5ea6\u7537\u5b69\u4ee5\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u5411\u6751\u6c11\u4eec\u89e3\u91ca\u79d1\u5b66\u9879\u76ee\u3002"} +{"id": "0002994", "video_name": "355a1c96-cdfe-5e55-adfb-4f33775a1e33", "text": "\u6211\u60f3\u8981\u76f8\u540c\u7684\u80cc\u666f\u4f46\u66f4\u52a0\u771f\u5b9e\uff0c\u653e\u5728\u94a2\u7434\u4e0a\uff0c\u4e0a\u9762\u5199\u7740\u201c\u6b22\u8fce\u6765\u5230\u83b1\u6602\u8ba1\u5212\u201d\u3002"} +{"id": "0002995", "video_name": "355f893e-c551-50b1-a5e9-06923c737a51", "text": "\u4e54\u00b7\u62dc\u767b\u5f00\u7740\u4e30\u7530\u666e\u9510\u65af\u5e76\u7cfb\u7740\u5b89\u5168\u5e26\u3002"} +{"id": "0002996", "video_name": "355f8c24-3171-5598-9ab4-f551bc0752b9", "text": "\u7a7f\u7740\u6027\u611f\u5185\u8863\u7684\u7f8e\u5973\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "0002997", "video_name": "35678897-a294-5f3e-9efa-a2e1b521cb1a", "text": "\u4ed6\u6d88\u5931\u5728\u51b0\u51b7\u7684\u9ed1\u6697\u4e2d\uff0c\u51b7\u5149\u7b3c\u7f69\u7740\u4ed6\u7684\u8eab\u4f53\u3002"} +{"id": "0002998", "video_name": "35682bca-2741-5db8-bca3-0ad6a218de44", "text": "\u9ad8\u5cf0\u7ad9\u5728\u6d77\u5cb8\u4e0a\uff0c\u770b\u7740\u7f8e\u4eba\u9c7c\u6d88\u5931\u5728\u6ce2\u6d6a\u4e0b\u3002\u6d77\u6ee8\u5c0f\u9547\u6c90\u6d74\u5728\u6e05\u6668\u7684\u5149\u8292\u4e2d\uff0c\u6d77"} +{"id": "0002999", "video_name": "35693ef9-cfb8-52b5-9844-f9eb4d75edd3", "text": "\u5c55\u793a\u8d85\u8fc7250\u4e07\u5370\u5ea6\u519b\u961f\u5728\u4e8c\u6218\u4e2d\u505a\u51fa\u7684\u91cd\u8981\u8d21\u732e\u7684\u89c6\u9891\u3002"} +{"id": "2000000", "video_name": "3044983a-9eab-511a-8d0d-e62dd9065957", "text": "Translation: \u68ee\u6797\u8425\u5730\u7684\u96e8\u591c\u3002"} +{"id": "2000001", "video_name": "79352ea2-25bd-5e2b-aa4b-b2498fa1da81", "text": "\u4ed6\u548c\u4ed6\u7684\u670b\u53cb\u5728\u68ee\u6797\u91cc\u642d\u5efa\u4e86\u4e00\u4e2a\u5e10\u7bf7\u4f4f\u3002"} +{"id": "2000002", "video_name": "1d4ef7dc-4958-5f51-a7e7-30d3bac8a6b1", "text": "\u795e\u79d8\u7684\u738b\u56fd\uff0c\u538b\u8feb\u4e0b\u7684\u9634\u6697\u4eba\u6c11\u573a\u666f\u3002"} +{"id": "2000003", "video_name": "02aeead8-164d-5389-89b6-e66302134445", "text": "\u524d\u9762\u6709\u4e00\u8f86S1000RR\u5728\u6d77\u6ee9\u524d\u7684\u9a7e\u8f66\u89c6\u9891\u3002"} +{"id": "2000004", "video_name": "07470bcd-519f-5952-a9ee-1624f77d7f8c", "text": "\u4ed6\u4eec\u5728\u5730\u7403\u4e0a\u4e92\u76f8\u770b\u7740\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "2000005", "video_name": "9cee794f-4e6f-5624-980f-0a93e4db19d4", "text": "\u4e00\u53ea\u5c0f\u888b\u9f20\u8eb2\u5728\u5723\u8bde\u6811\u540e\u9762\uff0c\u9732\u51fa\u4e86\u534a\u4e2a\u8eab\u4f53\uff0c\u505a\u51fa\u4e86\u6ed1\u7a3d\u7684\u8868\u60c5\u548c\u52a8\u4f5c\uff0c\u6811\u9876"} +{"id": "2000006", "video_name": "8d86c627-abcf-5953-9197-9aee6aeb750c", "text": "\u6770\u68ee\u00b7\u65af\u5766\u68ee\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u4e0e\u72fc\u4eba\u6218\u6597\u3002"} +{"id": "2000007", "video_name": "e247ad98-b6e5-5d34-ba98-7bfdcec1a556", "text": "2023\u5e74\u677f\u7403\u4e16\u754c\u676f\u5956\u676f\u95ea\u8000\u7740\u591a\u79cd\u989c\u8272\u3002"} +{"id": "2000008", "video_name": "33d784c0-20f9-53f3-a5d0-d7edcc36cc10", "text": "\u8759\u8760\u4fe1\u53f7\u663e\u793a\u4e00\u53ea\u51b0\u9f99\uff0c\u8272\u5f69\u9c9c\u8273\uff0c4K\u3002"} +{"id": "2000009", "video_name": "b557379c-6b60-5f19-a384-239ea005949b", "text": "\u6258\u5fb7\u00b7\u9ea6\u514b\u6cd5\u5170\u7684\u827a\u672f\uff0c\u8718\u86db\u4fa0\u6df7\u5408\u4e86\u673a\u5668\u4eba\uff0c\u7ebd\u7ea6\u5e02\u4e0a\u65b9\u7684\u5c4b\u9876\uff0c\u5750\u5728"} +{"id": "2000010", "video_name": "fd77f8e0-5b6e-5e41-8f4a-cfbaacb8a457", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u82cf\u83f2\u5973\u5b50\u5531\u7740\u82cf\u83f2\u7231\u60c5\u6b4c\u66f2\uff0c\u795e\u79d8\u3001\u8d85\u51e1\u8131\u4fd7\u3001\u8d85\u73b0\u5b9e\u3001\u8ff7\u4eba\u3002"} +{"id": "2000011", "video_name": "8c3838ce-72b9-5589-9171-38d5d756613d", "text": "2023\u5e74\u7535\u5f71\u573a\u666f\u4e2d\u7684\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5728\u5e1d\u56fd\u5927\u53a6\u8df3\u8dc3\u7684\u7535\u5f71\u5267\u7167\uff0c\u591c\u666f\u3002"} +{"id": "2000012", "video_name": "768e8260-8c91-535b-b671-15538e3a3618", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002\u7a7f\u7740\u534e\u4e3d\u670d\u88c5\u7684\u4eba\u5728\u8d858\u7535\u5f71\u4e0a\u62cd\u6444\u3002"} +{"id": "2000013", "video_name": "dc1b0b17-32a3-5930-b45e-cf666e8c9bd7", "text": "\u7a7f\u7740\u5a5a\u7eb1\u7684\u8eab\u6750\u597d\u5973\u5b50\u5728\u6559\u5802\u7ad6\u8d77\u5927\u62c7\u6307\u3002"} +{"id": "2000014", "video_name": "82cc64c6-c1e9-5ea6-a640-8af5377a2d22", "text": "\u51ef\u6587\u00b7\u54c8\u7279\u8868\u6f14\uff0c\u9644\u5e26\u6d88\u606f\uff1a1\u4efd\u9644\u4ef6\u3002"} +{"id": "2000015", "video_name": "3f6ea00f-795c-53c8-b14d-cba1e9b0db6b", "text": "\u5de8\u5927\u900f\u660e\u95ea\u70c1\u7684\u591a\u9762\u6c34\u6676\u5728\u7f8e\u4e3d\u7684\u5e7b\u60f3\u666f\u89c2\u4e2d\u3002"} +{"id": "2000016", "video_name": "7474c3e2-4a6b-5a5e-9ca3-c87f8799a4ae", "text": "\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u6c7d\u8f66\u5728\u57ce\u5e02\u4e2d\u75be\u9a70\uff0c\u52a8\u6001\u7684\u3002"} +{"id": "2000017", "video_name": "4c05e039-afc1-5abb-a2ff-a4fb3215d0f2", "text": "\u5149\u771f\u903c\u771f\u7684\u62df\u4eba\u5316\u5916\u661f\u52a8\u7269\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u7535\u5f71\u7ea7\u9ad8\u6e05\u5206\u8fa8\u7387\u3002"} +{"id": "2000018", "video_name": "30a9a094-d99b-5078-b7bc-0eecf1e107aa", "text": "\u5e03\u52a0\u8fea\u5f00\u5f97\u5f88\u5feb\uff0c\u6444\u50cf\u59341\u3002"} +{"id": "2000019", "video_name": "b1866a4b-0ae7-5f27-a295-55ef25e27d01", "text": "\u4e00\u53ea\u7a7f\u7740\u9970\u6709\u8bf4\u5531\u6b4c\u624b\u88c5\u626e\u7684\u6811\u61d2\uff0c\u4ee5GTA Vice City\u6f2b\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2000020", "video_name": "f63879a4-428b-50ef-bb6f-b16ef9bc9dc1", "text": "\u4e00\u7fa4\u9752\u5c11\u5e74\u8d70\u4e0b\u697c\u68af\u5230\u8fbe\u4e00\u4e2a\u9ed1\u6697\u7684\u5730\u4e0b\u5ba4\u3002"} +{"id": "2000021", "video_name": "081c923c-5de2-543f-bb0d-a6db899569b4", "text": "\u4e00\u4f4d\u4eba\u9c7c\u5728\u6d77\u4e2d\uff0c\u5728\u8d85\u903c\u771f\u7684\u6708\u5149\u7167\u8000\u4e0b\u548c\u9ca8\u9c7c\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "2000022", "video_name": "57a0f9d3-4d9c-5027-b7f7-8c8d6eeef8bc", "text": "\u5750\u5728\u5b50\u5f39\u5934\u5217\u8f66\u4e0a\uff0c\u900f\u8fc7\u7a97\u6237\u770b\u5230\u91cc\u7ef4\u57c3\u62c9\u6d77\u5cb8\u7684\u666f\u8272\u8fc5\u901f\u95ea\u8fc7\u3002"} +{"id": "2000023", "video_name": "667e579a-3964-5d48-b059-39767ed10a00", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u96ea\u5730\u4e2d\u8d70\u7740\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u84dd\u8272\u7684\u72d7\u3002Pixar 4K\u8d85\u8be6\u7ec6\u76843D\u6a21"} +{"id": "2000024", "video_name": "b3f1fe50-f76e-5f0a-8687-7f7e66623a58", "text": "\u96e8\u5929\u3001\u8d77\u91cd\u673a\u3001\u6316\u6c60\u5858\u3001\u5468\u56f4\u6709\u5f88\u591a\u9c7c\u3002"} +{"id": "2000025", "video_name": "c99f4538-5f3e-5a8c-8ae4-335567ae7eaa", "text": "\u5e73\u9759\u7684\u8721\u70db\u5728\u76d8\u5b50\u4e0a\uff0c\u9759\u6001\u7684\u6444\u50cf\u673a\u3002\n\nSource sentence: The cat sat lazily in the sun, grooming its fur. \n\n\u732b\u61d2\u6d0b"} +{"id": "2000026", "video_name": "57be72df-aaec-53d3-88dd-ab48131e9711", "text": "\u4e00\u4f4d\u5927\u5b66\u7f16\u7a0b\u6559\u5e08\u3002"} +{"id": "2000027", "video_name": "be8669e6-a033-5baf-b1fd-b7fdf7eaab4a", "text": "\u5feb\u4e50\u7684\u6210\u9f99\u5356\u51b0\u6dc7\u6dcb\u3002"} +{"id": "2000028", "video_name": "39de80f0-17bf-598c-a7a9-ccd4f2895735", "text": "\u6cd5\u5ead\u3002\u6cd5\u5b98\u5728\u957f\u51f3\u4e0a\uff0c\u8bc1\u4eba\u5728\u8bc1\u4eba\u5e2d\u4e0a\uff0c\u6709\u4e00\u540d\u4eba\u7c7b\u7ffb\u8bd1\u3002\u8bc1\u4eba\u5728\u505a\u624b\u52bf\u3002"} +{"id": "2000029", "video_name": "81d13a79-576e-5f25-a3f1-c79c59473b2e", "text": "\u6751\u91cc\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u57fa\u5170\u7684\u52c7\u6562\u5e74\u8f7b\u5973\u5b69\u3002\u52a8\u753b\u79fb\u9664\uff0c\u9519\u8bef\uff0c\u635f\u574f\uff0c\u6587\u7269\uff0c\u590d\u5236\uff0c\u6a21\u7cca\uff0c\u6a21"} +{"id": "2000030", "video_name": "e53ee8f9-31da-5ba5-b5de-1540e2711c52", "text": "\u4e00\u4e2a\u4e2d\u4e1c\u7537\u5b50\u7684\u7167\u7247\uff0c\u62e5\u6709\u597d\u8eab\u6750\u3001\u80e1\u987b\u548c\u4e25\u8083\u7684\u4e2a\u6027\u3002"} +{"id": "2000031", "video_name": "c1cbc5ad-a5dd-5c78-b665-591b56394567", "text": "\u70ed\u5e26\u98d3\u98ce\u5439\u88ad\u6d77\u6d0b\u3001\u6811\u6728\u548c\u9e1f\u7c7b\u3002"} +{"id": "2000032", "video_name": "34f00518-cf3e-5f77-8fbc-19aa88a8d5c1", "text": "\u673a\u5668\u6e05\u6d01\u7531\u6234\u5e3d\u5b50\u7684\u732b\u5b8c\u6210\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000033", "video_name": "3c444fa2-e415-56b5-85e9-b775cc5eed3e", "text": "\u5728\u9ed1\u6697\u7684\u7b3c\u7f69\u4e0b\uff0c\u53ea\u6709\u753120\u4e2a\u8eab\u7740\u98d8\u9038\u9ed1\u888d\uff0c\u624b\u6301\u706b\u70ac\u7684\u4eba\u4eec\u70b9\u4eae\u7684\u573a\u666f\uff0c\u53c2\u4e0e\u8005\u7684\u9762\u5b54"} +{"id": "2000034", "video_name": "13fd2f53-9559-5817-b1bd-abb7dbca160d", "text": "\u9c9c\u8273\u7684\u5f69\u58a8\u98de\u6e85\u5165\u6c34\u548c\u6cb9\u4e2d\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u4f34\u968f\u8d77\u6ce1\u3002"} +{"id": "2000035", "video_name": "e8f80192-0355-524e-81c0-0ae45e5961bd", "text": "\u4e3b\u89d2\uff1a\u4e00\u4e2a\u7537\u5b69\u5728\u7f8e\u4e3d\u7684\u9053\u8def\u98ce\u666f\u4e2d\u9a91\u81ea\u884c\u8f66\uff0c\u80cc\u666f\u4e2d\u6709\u9e1f\u513f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2000036", "video_name": "c8bf1045-deb9-5627-9ea7-f71ed51c1f95", "text": "\u5c0f\u5154\u548c\u677e\u9f20\u53d1\u73b0\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u79cd\u5b50\u3002"} +{"id": "2000037", "video_name": "e46ffeac-bedf-5db2-9a16-a647d9fc27c4", "text": "\u57ce\u5e02\u4e4b\u5149 \u4fe1\u606f\uff1aJR\u56e2\u961f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000038", "video_name": "9869675e-67ac-5421-99c9-10db8b331c8e", "text": "\u4e00\u4e2a\u88ab\u5207\u6210\u5c0f\u65b9\u5757\u7684\u897f\u74dc\u653e\u5728\u7897\u91cc\uff0c\u6446\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "2000039", "video_name": "74076e5f-abd9-5a42-a4cd-cf24a3c7706d", "text": "\u62ab\u5934\u58eb\u9752\u86d9\u548c\u8d3e\u5df4\u5927\u5e1d\u4e0e\u718a\u732b\u4e00\u8d77\u91ce\u9910\uff0c8K\uff0c\u52a8\u60014\u3002"} +{"id": "2000040", "video_name": "92381622-87b2-58cf-9409-b96d3628d853", "text": "\u4e9a\u6d32\u7537\u5b50\u6b23\u8d4f\u5b89\u63d0\u74dc\u5df4\u5e03\u8fbe\u7684\u98ce\u666f\u3002"} +{"id": "2000041", "video_name": "ce7a4cfa-c182-5226-91f5-511557859750", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5916\u661f\u5a74\u513f\u5b87\u822a\u54583D\u6e32\u67d3\u88ab\u9001\u5165\u592a\u7a7a\u3002"} +{"id": "2000042", "video_name": "28f744bb-853e-5ca3-8566-ac6f2ac7fd4d", "text": "\u4e00\u4e2a\u997a\u5b50\u91cc\u85cf\u7740\u4e00\u4e2a\u6212\u6307\u3002"} +{"id": "2000043", "video_name": "8734af9b-279f-56b1-b068-02b96dcde667", "text": "\u79cd\u5b50\u611f\u89c9\u5728\u67d4\u8f6f\u8212\u9002\u7684\u7a7a\u95f4\u91cc\u5f88\u5b89\u5168\u3002\u6bcf\u5929\u5b83\u6652\u7740\u9633\u5149\uff0c\u7528\u9732\u73e0\u8865\u5145\u6c34\u5206\u300232k\u5206"} +{"id": "2000044", "video_name": "420c66dc-06fd-593c-9ed8-79fa1766e4a5", "text": "\u4e00\u4e2a\u884c\u8d70\u7684\u673a\u68b0\u5de8\u4eba\u6b63\u5728\u592a\u5e73\u6d0b\u4e2d\u51fa\u73b0\u3002"} +{"id": "2000045", "video_name": "50b6ecf0-e930-57de-8446-b5d79a441834", "text": "\u521b\u9020\u4e00\u4e2a\u5929\u4f7f\uff0c\u53e3\u9f7f\u6e05\u6670\u5730\u8bf4\u8bdd\uff0c\u62e5\u6709\u4e30\u5bcc\u7ec6\u8282\u7684\u80cc\u5149\uff0c\u91c7\u75288K\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2000046", "video_name": "ba972413-1ceb-56d2-b41c-dfe43c4fe390", "text": "\u65f6\u95f4\u4e0d\u7b49\u4eba\u3002"} +{"id": "2000047", "video_name": "b0b2c447-8c5a-5420-b975-0ecdad215eb1", "text": "\u673a\u5668\u4eba\u5e26\u7740\u7ea2\u5fc3\u4ece\u8dea\u7740\u7684\u59ff\u52bf\u8d77\u8eab\u3002"} +{"id": "2000048", "video_name": "27e7abc7-5ea5-5afb-b51e-d6ff6040e966", "text": "\u513f\u7ae5\u97f5\u5f8b\uff0c\u4f60\u90a3\u660e\u4eae\u5fae\u5c0f\u7684\u706b\u82b1\uff0c\n\u4e3a\u9ed1\u6697\u4e2d\u7684\u65c5\u884c\u8005\u7167\u4eae\u9053\u8def\uff0c\n\u867d\u7136\u6211\u4e0d\u77e5\u9053\u4f60\u662f"} +{"id": "2000049", "video_name": "47a392e9-d833-58e3-ba70-c8cc00767889", "text": "\u5c0f\u732b\u8df3\u8d77\u6765\u53bb\u6293\u8774\u8776\u3002 \n\nSource sentence: The sun is shining brightly on the beach. \n\n\u9633\u5149\u660e\u5a9a\u5730\u7167\u8000\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2000050", "video_name": "36e0b285-26f6-5eea-bc89-a4b905b40d1e", "text": "\u4e00\u4e2a\u50cf\u7d20\u98ce\u683c\u7684\u5361\u901a\u5c0f\u5b69\u5728\u5f69\u8272\u80cc\u666f\u4e0b\u8df3\u96e8\u821e\uff0c\u52a8\u753b\u3002"} +{"id": "2000051", "video_name": "90553324-3fb9-5c20-952e-f7122a8679aa", "text": "\u4e00\u652f\u7531\u516d\u540d\u795e\u8bdd\u9a91\u58eb\u7ec4\u6210\u7684\u961f\u4f0d\uff0c\u5728\u68ee\u6797\u4e2d\u80a9\u5e76\u80a9\u5730\u884c\u8d70\u3002"} +{"id": "2000052", "video_name": "86db6a9d-2baa-570d-a83e-f94932ad86ba", "text": "\u6708\u591c\u96fe\u6797\u4e2d\uff0c\u821e\u8e48\u5e7d\u7075\u7684\u5706\u821e\u66f2\u3002"} +{"id": "2000053", "video_name": "6cc0208f-639d-540f-af0c-fcab9292b13e", "text": "\u5ba3\u4f20\u9500\u552e\u62c9\u4f38\u5929\u82b1\u677f\u548c\u706f\u5149\u7684\u89c6\u9891\u3002"} +{"id": "2000054", "video_name": "48e3fb1e-2752-537f-b8ab-50c063a245f6", "text": "\u72fc\u5728\u660f\u6697\u7684\u68ee\u6797\u91cc\u5411\u76f8\u673a\u731b\u6251\uff0c\u7279\u5199\u3002"} +{"id": "2000055", "video_name": "c44e6ecc-f481-51bd-ad50-8e7cd3e4f498", "text": "\u53f2\u745e\u514b\u559d\u7740\u7d2b\u8272\u5976\u6614\uff0c\u4ed6\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "2000056", "video_name": "74a7f333-238e-54b8-8db3-79f96cb0a943", "text": "\u67d4\u672f\u683c\u6597\u5bb6\u5728\u9053\u573a\u8bad\u7ec3"} +{"id": "2000057", "video_name": "3e7c12e7-85c1-5bdc-a666-ef0c41c131c4", "text": "\u963f\u6c49\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5411\u89c2\u4f17\u544a\u522b\uff0c\u843d\u65e5\u6e29\u6696\u7684\u5149\u8f89\u6d12\u5728\u6751\u5e84\u4e0a\uff0c\u4ed6\u4eec\u8a93\u8a00\u672a\u6765\u5c06\u6709\u66f4"} +{"id": "2000058", "video_name": "568d8757-8345-5043-b8ec-7c890f46b167", "text": "\u521b\u610f\u7684\u5370\u5ea6\u5730\u56fe\u5c55\u793a\u83ab\u5367\u513f\u5e1d\u56fd\u65f6\u671f\u6240\u6709\u5dde\u7684\u540d\u79f0\u548c\u5730\u7406\u7279\u5f81\u3002"} +{"id": "2000059", "video_name": "0a41fe9e-844f-596c-8760-a35279db2f24", "text": "\u4e00\u4f4d\u7a7f\u7740\u5939\u514b\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u4ee5\u8d5b\u535a\u98ce\u683c\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u9a91\u6469\u6258\u8f66\u3002"} +{"id": "2000060", "video_name": "3541a8e5-d751-5cec-82a6-673c88b3c239", "text": "\u5f00\u573a\u753b\u9762\u5c55\u793a\u53e4\u7f57\u9a6c\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2000061", "video_name": "9e6637b4-e75f-541f-be21-cbbb51a70bb5", "text": "\u7537\u5b50\u624b\u62ff\u516c\u6587\u5305\u5927\u558a\uff0c\u7279\u5199\u955c\u5934\u3002"} +{"id": "2000062", "video_name": "bde60c1b-7106-5ac1-bae6-72f2da60e802", "text": "\u4e00\u4e2a\u7b80\u7ea6\u7684\u5e26\u6709AI\u5143\u7d20\u7684\u98de\u673alogo\u3002"} +{"id": "2000063", "video_name": "8deee133-bc3b-5c33-b9d8-87321fcc0927", "text": "\u9f13\u638c\u52a8\u6001\u624b\u52bf\uff0c\u7eff\u8272\u80cc\u666f16:9\u3002"} +{"id": "2000064", "video_name": "e3937d2f-bbe3-55bb-80eb-60ad23f9ed78", "text": "\u6d1b\u6749\u77f6\u5929\u9645\u7ebf\u4ece\u73b0\u5728\u5230\u672a\u6765\u7684\u65f6\u95f4\u63a8\u79fb\uff0c\u6700\u7ec8\u6210\u4e3a\u4e00\u4e2a\u5e9f\u5f03\u57ce\u5e02\u3002"} +{"id": "2000065", "video_name": "a825481a-7e8d-5f82-9b73-13b24cc76c50", "text": "\u81ea\u7531\u5361\u901a\u672c\u00b7\u590f\u76ae\u7f57\u73b0\u5b9e\u751f\u6d3b\u4e2d\u7684\u611f\u6069\u8282\u3002"} +{"id": "2000066", "video_name": "28492c7d-d49b-502c-8157-4ba00755162c", "text": "\u4e00\u6761\u5e72\u51c0\u3001\u6e05\u6f88\u7684\u6cb3\u6d41\u6d41\u7ecf\u6751\u5e84\uff0c\u5c0f\u9e2d\u5b50\u4eec\u5728\u6539\u5584\u7684\u73af\u5883\u4e0b\u5feb\u4e50\u5730\u6e38\u6cf3\u300216:9\u753b"} +{"id": "2000067", "video_name": "42a28d7b-d500-5a1d-8fa5-86d12025682a", "text": "\u706b\u9e21\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u5954\u8dd1\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "2000068", "video_name": "d29a01c6-a1f9-5c2d-9397-7c933f832d33", "text": "\u4e00\u4f4d\u7a7f\u7740\u5199\u6709Nikken Internacional\u5b57\u6837\u7684\u767d\u886c\u886b\u7684\u7f8e\u4e3d\u5973\u6027\uff0c\u5728\u4e00\u4e2a\u6301\u7eed30\u79d2\u7684\u8f7b\u677e\u73af\u5883\u4e2d\u3002"} +{"id": "2000069", "video_name": "6cbb4ce5-7bb2-55ea-809b-43f281a96e21", "text": "\u7537\u4eba\u7a7f\u7740\u6f02\u4eae\u7684\u8863\u670d\u5728\u9493\u9c7c\u3002"} +{"id": "2000070", "video_name": "12f41177-9931-5f51-9434-8c42115b7bc9", "text": "\u201cMesaharati\u201d \u4f1a\u5728\u82cf\u79be\u5c14\u524d\u51fa\u53d1\uff0c\u6709\u65f6\u4f1a\u7a7f\u7740\u53cd\u6620\u6469\u6d1b\u54e5\u4f20\u7edf\u7684\u670d\u88c5\uff0c\u4f8b\u5982\u957f\u888d\u3001\u5e3d\u5b50\u6216"} +{"id": "2000071", "video_name": "cb689c5f-2538-5dce-a0b4-011094dc49ed", "text": "\u6885\u8d5b\u5fb7\u65af\u5954\u9a70W202\u7684\u672a\u6765\u3002"} +{"id": "2000072", "video_name": "c4707adf-7e74-5121-ab4e-ce1dca83cab0", "text": "\u4e00\u540d\u5973\u5b50\u548c\u4e00\u540d\u7537\u5b50\u5728\u65e5\u843d\u65f6\u63a5\u543b\u3002"} +{"id": "2000073", "video_name": "193a8863-1ca2-5f49-8c8a-a2df2daf6e75", "text": "\u6574\u4e2a\u661f\u7403\u7684\u9e1f\u77b0\u56fe"} +{"id": "2000074", "video_name": "95fea073-a413-555c-8ecd-515c474c1857", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u5973\u5b69\u5728\u6444\u50cf\u673a\u524d\u5927\u58f0\u558a\u53eb\uff0c\u5634\u5507\u5feb\u901f\u52a8\u4f5c\u3002"} +{"id": "2000075", "video_name": "79f42b98-b593-52c3-9714-3432b9bd6198", "text": "\u6df1\u7a7a\u4e2d\uff0c\u6709\u4e09\u4e2a\u884c\u661f\u7ed5\u7740\u5c0f\u7d2b\u8272\u53d1\u5149\u7684\u660e\u4eae\u706b\u661f\u8fd0\u8f6c\uff0c\u8d85\u7ea7\u7ec6\u8282\uff0c8k\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u9ed1\u6697"} +{"id": "2000076", "video_name": "ba53753d-8b51-5651-bf8a-0822f7abb7bd", "text": "\u74e6\u5df4\u7eb3\u57fa\u65cf\u7ad9\u5728\u96fe\u8499\u8499\u7684\u6cb3\u8fb9\u4fef\u77b0\u3002"} +{"id": "2000077", "video_name": "3232a7af-259e-5bef-a97c-5714c2c62187", "text": "\u4e00\u4e2a\u6218\u58eb\u5728\u884c\u661f\u7206\u70b8\u4e2d\u6d88\u5931\u4e86\u3002"} +{"id": "2000078", "video_name": "39e09d5a-0e60-5c63-acca-80e98a6e5ac9", "text": "\u8db3\u7403\u72c2\u70ed\uff1a\u9876\u7ea7\u8868\u6f14\u548c\u6280\u5de7 \u4fe1\u606f\uff1a\u65b0\u7684\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000079", "video_name": "e53e52dd-eda5-57b1-94d0-413281fbe71d", "text": "\u60f3\u8c61\u4e00\u4e0b\u5c3c\u5c3c\u5fae\u7684\u53e4\u8001\u57ce\u5e02\u666f\u89c2\uff0c\u8fd9\u662f\u7f8e\u7d22\u4e0d\u8fbe\u7c73\u4e9a\u4e2d\u5fc3\u7684\u7e41\u534e\u90fd\u5e02\u3002\u60f3\u8c61\uff1a\u9ad8\u8038\u7684\u6ce5"} +{"id": "2000080", "video_name": "e9a682e2-9901-5656-a71c-1095ceab73ed", "text": "\u7b2c\u4e09\u4eba\u79f0\u5927\u9003\u6740\u6e38\u620f\u73a9\u6cd5\u9884\u544a\u7247"} +{"id": "2000081", "video_name": "0e450314-11c1-5e9e-bf7b-71dbf6591fce", "text": "\u5b69\u5b50\u4eec\u7a7f\u7740\u6ce2\u5170\u56fd\u65d7\u989c\u8272\u7684\u8863\u670d\u3002"} +{"id": "2000082", "video_name": "77f90246-58d8-50a7-ba3f-cbe30be5e4c8", "text": "style.\n\nTranslation: \u4e00\u4f4d\u52e4\u594b\u5b66\u4e60\u7684\u5b66\u751f\u5728\u5f69\u8679\u4e66\u7c4d\u3001\u7b14\u8bb0\u548c\u5176\u4ed6\u5b66\u4e60\u8d44\u6e90\u7684\u5305\u56f4\u4e0b\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u751f\u52a8"} +{"id": "2000083", "video_name": "61f4d3aa-f523-50e4-a392-5dd889ce3039", "text": "\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u4e00\u5f20\u624b\u5199\u4fbf\u6761\u98d8\u843d\u5728\u5730\u9762\u4e0a\u3002"} +{"id": "2000084", "video_name": "150710c1-6c7a-59ef-a909-110fa05031f7", "text": "\u4e00\u4e2a\u72ec\u7acb\u7684\u8001\u623f\u5b50\uff0c\u8fdc\u79bb\u6751\u5e84\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\n\u6211\u5b66\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5"} +{"id": "2000085", "video_name": "1acbb4a5-c129-5d1c-b401-d0bf92c00f12", "text": "\u827e\u7c73\u4e3d\u72ec\u81ea\u7ad9\u5728\u5979\u8c6a\u5b85\u7684\u9633\u53f0\u4e0a\uff0c\u51dd\u89c6\u7740\u57ce\u5e02\u7684\u706f\u5149\u3002"} +{"id": "2000086", "video_name": "2d541ce0-d488-5c4a-8184-defc380ab5e6", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u4e00\u53ea\u72d7\u7684\u89c6\u9891\u3002"} +{"id": "2000087", "video_name": "9f230619-676b-5cfe-bbfe-8f1e9b8fe821", "text": "\u6709\u50cf\u5f71\u5b50\u4e00\u822c\u7684\u4e1c\u897f\u4ece\u4ed6\u524d\u9762\u7ecf\u8fc7\uff0c\u4f46\u4ed6\u770b\u4e0d\u6e05\u662f\u4ec0\u4e48\u3002"} +{"id": "2000088", "video_name": "c0555fb4-bd0b-5235-9f19-3eb18edbed1e", "text": "\u6bc1\u706d\u4e4b\u795e\u6f2b\u6b65\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c4K\uff0c\u9ad8\u6e05\u8d28\u91cf\u3002"} +{"id": "2000089", "video_name": "651b2e8b-ec7e-573e-ae70-c0b46254cbde", "text": "\u4e00\u53ea\u6c83\u57fa\u5728\u7d2b\u8272\u6c34\u6676\u6d1e\u7a74\u80cc\u666f\u4e0b\u4f7f\u7528\u4e24\u628a\u7d2b\u8272\u5149\u5251\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "2000090", "video_name": "ee68bfd2-c310-5c70-a6be-f0cd0196d92b", "text": "\u4ee4\u4eba\u53f9\u4e3a\u89c2\u6b62\u7684\u98ce\u666f\u548c\u5b81\u9759\u7684\u81ea\u7136\u73af\u5883\u573a\u666f"} +{"id": "2000091", "video_name": "39f17a71-63e9-5e7e-837f-24eb737fcaf8", "text": "\u732b\u548c\u84dd\u7cbe\u7075\u4e00\u8d77\u3002"} +{"id": "2000092", "video_name": "f415bb1c-010c-563f-ae6b-829751504b35", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u7684\u9ed1\u6d1e\u5916\u592a\u7a7a\u73bb\u7483\u7403\u98de\u884c\u6444\u50cf\u673a\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "2000093", "video_name": "94979ccc-b621-5878-8ab8-ddfcac357ddf", "text": "\u90a3\u4f4d\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u5b50\u72ec\u81ea\u5750\u5728\u5065\u8eab\u623f\u91cc\u953b\u70bc\uff0c\u4ed6\u603b\u662f\u72ec\u81ea\u7ec3\u4e60\u3002\u6709\u4eba\u8fdb\u6765\u8be2\u95ee\u4ed6"} +{"id": "2000094", "video_name": "057ac9fa-c69b-5fa2-bb65-ef35ca52ecad", "text": "\u53e4\u57ce\u9ebb\u54c8\u5e03\u96f7\u7684\u5927\u707e\u96be\uff0c\u53d1\u751f\u57281890\u5e74\u4ee3\uff0c\u73b0\u6709\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u9ed1\u767d\u6a21\u7cca\u5f71\u50cf\u7eaa"} +{"id": "2000095", "video_name": "3c59af2e-0d81-5c84-8bcb-670ceafd820d", "text": "\u5f00\u7f57\u7684\u7537\u4eba28\u5c81\u3002"} +{"id": "2000096", "video_name": "eb63c7cb-1681-5637-afc9-a54efb54be7e", "text": "Mr. Bean\u5148\u751f\u548c\u767d\u96ea\u516c\u4e3b\u5728\u4e0a\u6d77\u8336\u697c\u91cc\uff0c\u6bcf\u4eba\u90fd\u6709\u4e00\u676f\u53ef\u4e50\uff0c\u5750\u5728\u9ebb\u5c06\u684c\u65c1\u5f39\u7740\u94a2"} +{"id": "2000097", "video_name": "ee4166b5-bad0-56f3-94b9-081b42c0b905", "text": "\u4e00\u4e2a\u505aDevOps\u5de5\u4f5c\u7684\u7537\u4eba\u5728\u5de5\u4f5c\uff0c\u6323\u94b1\uff0c4K\u3002"} +{"id": "2000098", "video_name": "e4051a58-01a6-5fbd-9b5a-7313506a5364", "text": "\u4f69\u4f69\u5728\u8239\u4e0a\u822a\u884c\uff0c\u6d77\u9762\u6ce2\u52a8\uff0c\u4e91\u6735\u98d8\u52a8\uff0c\u5e06\u8239\u98d8\u6447\uff0c\u4f69\u4f69\u5fae\u7b11\u7740\u3002"} +{"id": "2000099", "video_name": "9c3d8c0e-223a-5f69-bbeb-2196433c210e", "text": "\u4e00\u4e2a\u751f\u52a8\u7684\u65f6\u95f4\u6d41\u901d\u7684\u7279\u5199\u81ea\u62cd\uff0c\u4e00\u4e2a\u8be1\u5f02\u7684\u4eff\u751f\u751f\u7269\u7684\u8138\u53d8\u5f62\u6210\u5bf9\u79f0\u7684\u5b58\u5728\uff0c\u4e24\u4e2a\u9762\u5b54\u4e4b\u95f4\u7684\u5b8c\u5168\u8fc7\u6e21"} +{"id": "2000100", "video_name": "ee69cdaa-e0a9-5eea-94b8-61b1523301f4", "text": "\u4e00\u540d\u7537\u5b50\u7a7f\u7740\u8584\u8377\u8272\u897f\u88c5\uff0c\u5916\u5957\u4e0b\u7a7f\u7740\u767d\u8272\u886c\u886b\uff0c\u8eab\u5904\u4e8e\u9152\u5e97\u5927\u5802\u5468\u56f4\u3002"} +{"id": "2000101", "video_name": "838376e7-b58d-5653-bfc1-1ca067311ddb", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u5723\u5f7c\u5f97\u5821\u9634\u6c89\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "2000102", "video_name": "6acca0cb-2acf-541d-a76d-adfdbb901ee4", "text": "\u4e00\u4f4d\u4eba\u5728\u7e41\u5fd9\u7684\u5496\u5561\u5385\u6572\u6253\u7740\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u6c89\u6d78\u5728\u5de5\u4f5c\u4e2d\uff0c\u4e0d\u53d7\u5608\u6742\u5e72"} +{"id": "2000103", "video_name": "f0f86b64-076b-5039-b59b-81179915175b", "text": "\u4e00\u4e2a\u8272\u5f69\u9c9c\u8273\u4e14\u5438\u5f15\u4eba\u7684\u6807\u9898\u5361\u7247\uff0c\u4e0a\u9762\u5370\u6709\u89c6\u9891\u6807\u9898\u3002"} +{"id": "2000104", "video_name": "8ef42622-762c-5f5b-99e7-b55fa458973a", "text": "\u4f60\u613f\u610f\u6210\u4e3a\u6211\u7684\u60c5\u4eba\u8282\u5973\u58eb Chand \u5417\uff1f\u6211\u7231\u4f60\u3002\u80cc\u666f\u662f\u5df4\u6797\u3002"} +{"id": "2000105", "video_name": "f0f3a41c-22b2-54b6-ac43-243ecee10e73", "text": "\u521b\u5efa\u4e00\u5f20\u63cf\u7ed8\u4e00\u4e2a\u548c\u5e73\u7684\u5c0f\u9547\u7684\u5f62\u8c61\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u5e74\u8f7b\u4eba\u53eb\u505aRizky\uff0c\u56e0\u4ed6\u7684\u5584\u826f\u548c\u5e2e\u52a9\u4ed6\u4eba\u7684\u5949"} +{"id": "2000106", "video_name": "4775263d-4543-5035-8441-332e2de4c534", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7a97\u6237\u91cc\u770b\u7740\u4e00\u573a\u5e26\u95ea\u7535\u7684\u96e8\u3002"} +{"id": "2000107", "video_name": "53813806-fce6-5fe4-b0d7-8a125772092a", "text": "\u7535\u5f71\u300a\u661f\u9645\u4e4b\u95e8\u300b\u4e2d\u7684\u6cd5\u8001\u53ef\u4f38\u7f29\u9762\u7f69\u3002"} +{"id": "2000108", "video_name": "5677cd5d-be42-5691-95a0-b79e94af3884", "text": "\u7231\u60c5\u6545\u4e8b\u7ed9\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "2000109", "video_name": "da41c97a-9161-5c32-9e24-61dffb0a1a82", "text": "\u5973\u5b69\u5728\u516c\u56ed\u91cc\u8df3\u821e\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "2000110", "video_name": "456b5975-a68f-5c30-9d49-48eef33ebc06", "text": "\u6211\u60f3\u8981\u4e00\u500b\u7368\u7279\u7684\u4f0a\u65af\u862d\u80cc\u666f\uff0c\u8ac7\u8ad6\u6709\u95dc\u771f\u4e3b\u7684\u7576\u4ee3\u4e8b\u4ef6\uff0c\u4ee5\u7a81\u986f\u4f0a\u65af"} +{"id": "2000111", "video_name": "e08bc974-5786-5405-9a27-0e35eec1d068", "text": "\u5c0f\u72d7\u548c\u5c0f\u732b\u8fde\u7eed\u73a9\u800d1\u5206\u949f\u3002 \n\nSource sentence: I am learning Chinese language. \n\u6211\u6b63\u5728\u5b66\u4e60\u6c49\u8bed\u3002"} +{"id": "2000112", "video_name": "f0ffdcda-1205-5247-9a62-9f2047478ce6", "text": "\u94a2\u94c1\u4fa0\u5728\u96e8\u4e2d\u7684\u7535\u5f71\u822c\u753b\u9762\u3002\u52a8\u6001\u3001\u5361\u901a\u3001\u4e2d\u6027\u8272\u8c03\u3001\u795e\u5947\u30012D\u3001\u7535\u5f71\u611f\u3002"} +{"id": "2000113", "video_name": "0f116422-b4a2-5e0b-ae37-132e7fa16a0b", "text": "\u4e00\u5ea7\u88ab\u96fe\u7b3c\u7f69\u7684\u8352\u51c9\u5c0f\u9547\uff0c\u8fdc\u5904\u77d7\u7acb\u7740\u8fbe\u624e\u7279\u5c0f\u5b66\u3002 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "2000114", "video_name": "f6e7767c-92c9-545f-bea4-294d9a401e71", "text": "\u8001\u65c1\u906e\u666e\u592b\u59bb\u5728\u8def\u4e0a\u8d70\uff0c\u65c1\u906e\u666e\u90a6\uff0c8K\uff0c\u9ad8\u6e05\u7ec6\u8282\u3002"} +{"id": "2000115", "video_name": "83af00fb-61cd-528f-9582-a0e0ca5d4571", "text": "\u68ee\u6797\u4e2d\u6709\u4e00\u5ea7\u57ce\u5821\uff0c\u6709\u4e00\u6761\u6cb3\u548c\u9c9c\u82b1\u3002"} +{"id": "2000116", "video_name": "32957335-e302-523d-8566-86befcdeb6dd", "text": "\u4e00\u4e2a\u5728\u706b\u661f\u4e0a\u7684\u7537\u4eba\u53d1\u73b0\u4e86\u6c34\uff0c\u4ed6\u975e\u5e38\u5174\u594b\uff0c\u540c\u65f6\u8fd8\u53d1\u73b0\u4e86\u8bb8\u591a\u94bb\u77f3\u3002"} +{"id": "2000117", "video_name": "f7d691ed-0a8c-56a2-8afd-35db8e37892a", "text": "\u4e00\u4e2a20\u5c81\u5de6\u53f3\u7684\u5973\u5b69\u8bf7\u6c42\u5bbd\u6055\u548c\u91ca\u653e\u3002"} +{"id": "2000118", "video_name": "5fb5dcef-480d-5ba7-9aef-da9a996d2919", "text": "\u4e08\u592b\u5fd8\u8bb0\u4e86\u7ed3\u5a5a\u7eaa\u5ff5\u65e5\u7684\u793c\u7269\uff0c\u59bb\u5b50\u5f88\u751f\u6c14\u3002"} +{"id": "2000119", "video_name": "576a5445-deb7-5d19-8bac-b6d821d6fd60", "text": "\u9759\u6b62\u753b\u9762\u52a8\u753b\uff1a\u5973\u5b69\u4eec\u5728\u590f\u65e5\u6d77\u6ee9\u4e0a\u4ea4\u8c08\u3002"} +{"id": "2000120", "video_name": "79f61b36-10eb-5365-bd98-9df5bf7b4d8c", "text": "\u597d\u5fc3\u7684\u5973\u4eba\u5728\u9633\u5149\u660e\u5a9a\u7684\u53a8\u623f\u91cc\u6324\u534a\u4e2a\u65b0\u9c9c\u67e0\u6aac\u3002"} +{"id": "2000121", "video_name": "0fe6cd07-6f0e-5ace-9a1a-b4b89adbe635", "text": "\u4e00\u53ea\u72d0\u72f8\u548c\u4e00\u53ea\u9e1f\u5728\u6b23\u8d4f\u65e5\u843d\u3002"} +{"id": "2000122", "video_name": "dc44fa45-5dae-5124-8d0e-efd420904035", "text": "\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u666f\u8272\uff0c\u5c0f\u5c4b\u5750\u843d\u5728\u5e7f\u9614\u7684\u5e73\u539f\u5c71\u8c37\u4e2d\uff0c\u5728\u5c0f\u5c4b\u524d\u6709\u4e00\u68f5\u5927\u67ab\u6811\u3002\u73b0\u5728\u662f\u79cb"} +{"id": "2000123", "video_name": "86a657b4-1346-566d-9266-40a32ef044db", "text": "\u89c6\u9891\u4ee5\u7f13\u6162\u7684\u955c\u5934\u5c55\u793a\u4e00\u6247\u5173\u95ed\u7684\u95e8\u9010\u6e10\u6253\u5f00\u3002\u6444\u50cf\u673a\u7f13\u6162\u5730\u5411\u524d\u79fb\u52a8\uff0c\u623f\u95f4\u5185\u51fa\u73b0\u4e86\u4e00\u5f20"} +{"id": "2000124", "video_name": "85bde216-e73a-5dd7-9c0c-7185f2da4cd8", "text": "\u884c\u661f\u5728\u9633\u5149\u548c\u9ed1\u6697\u4e4b\u95f4\u8f6c\u52a8\uff1b\u51ac\u590f\u4e4b\u98ce\u5439\u62c2\u7740\u6de1\u6de1\u7684\u82b1\u7c89\u8fc7\u5e73\u9759\u7684\u6d77\u6d0b\u3002"} +{"id": "2000125", "video_name": "fe7fc63f-32c4-557f-978a-5a4b79510b38", "text": "\u73cd\u59ae\u7279\u00b7\u8036\u502b\u7684\u771f\u5be6\u7167\u7247\uff0c\u4f7f\u7528\u4e86\u502b\u52c3\u6717\u71c8\u5149\u6548\u679c\u3002\n\nSource sentence: The company's profits have significantly increased this quarter compared to last"} +{"id": "2000126", "video_name": "db0a4f53-b11f-5f4c-9994-f4086e16746f", "text": "\u8ba9\u5934\u53d1\u8f7b\u5fae\u5730\u6446\u52a8\u800c\u4e0d\u662f\u8138\u90e8\u3002"} +{"id": "2000127", "video_name": "a2e8a6b2-699f-57ac-9d48-c0c2afd28740", "text": "\u67d4\u8f6f\u7684\u8138\u90e8\u8868\u60c5\uff0c\u8d85\u9ad8\u54c1\u8d28\uff0c\u771f\u5b9e\u7684\u9762\u90e8\u52a8\u4f5c\u3002"} +{"id": "2000128", "video_name": "0fdc8080-8bf3-59aa-8827-c0057384f7b9", "text": ", it creates ripples that spread throughout the water.\n\n\u4ece\u6e56\u4e2d\u62cd\u6253\u7fc5\u8180\u7684\u4e00\u53ea\u9e1f\uff0c\u4f1a\u4ea7\u751f\u6269\u6563\u81f3\u6574\u4e2a\u6c34\u9762\u7684\u6d9f\u6f2a\u3002"} +{"id": "2000129", "video_name": "2b690448-a925-5017-b022-e6693dec9a75", "text": "\u521b\u4f5c\u901f\u5199\u7b14\u8bb0\uff0c\u63cf\u7ed8\u4e00\u4e2a\u4eba\u6b63\u5728\u884c\u8d70\u3002"} +{"id": "2000130", "video_name": "3583564a-3375-532a-b961-780d7faef69b", "text": "3\u4e2a\u9ec4\u8272\u7684\u5706\u5708\u5728\u4e2d\u5fc3\u79fb\u52a8\u3002"} +{"id": "2000131", "video_name": "9dced0ff-4102-57a5-aa62-73b0c3fbdd8d", "text": "\u5973\u6027\u7a7f\u7740\u7d27\u8eab\u88e4\u8d70\u5f00\uff0c\u7f8e\u4e3d\u7684\u773c\u775b\u3001\u5934\u53d1\u3001\u539a\u5634\u5507\u3001\u7ec6\u8170\uff0c3D\u6e32\u67d3\uff0c\u903c"} +{"id": "2000132", "video_name": "4b154489-d9c1-55dd-99e5-6d6c7d97b25c", "text": "\u5728\u4e00\u6b21\u60ca\u4eba\u7684\u6280\u827a\u5c55\u793a\u4e2d\uff0c\u5c06\u8fd9\u4e2a\u6c38\u6052\u7684\u6770\u4f5c\u91cd\u65b0\u60f3\u8c61\uff0c\u795e\u79d8\u7684\u8499\u5a1c\u4e3d\u838e\u5728\u7199"} +{"id": "2000133", "video_name": "7ebc496e-b74d-5c9f-9501-6801ed535fd2", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u8759\u8760\u4fa0\uff0c\u62ab\u98ce\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u4e0b\u7740\u96e8\u3002"} +{"id": "2000134", "video_name": "fc4bfbdb-e6d2-5f38-b989-00c40d76be1d", "text": "\u4e00\u4e2a\u7c89\u8272\u7684\u6cf0\u8fea\u718a\uff0c\u4f1a\u52a8\u8033\u6735\u548c\u7728\u773c\u775b\u3002"} +{"id": "2000135", "video_name": "ecc5d552-f8dd-59d0-a1b1-aa2d69a5bd9d", "text": "\u5854\u65af\u9a6c\u57fa\u770b\u7740\u6444\u50cf\u5934\uff0c\u67d4\u548c\u7684\u6838\u5fc3\u3002"} +{"id": "2000136", "video_name": "c00d0456-5f0c-5602-bf41-de5b9776edbb", "text": "\u5934\u6234\u82b1\u73af\u7684\u6f02\u4eae\u4e4c\u514b\u5170\u5973\u5b69\u4ece\u624b\u4e2d\u6254\u51fa\u4e00\u6735\u73ab\u7470\u3002"} +{"id": "2000137", "video_name": "5b508da2-7a5a-5531-817b-4a3194f39fae", "text": "\u5728\u4e00\u4e2a\u5b81\u9759\u7684\u6751\u5e84\u91cc\uff0c\u65f6\u95f4\u9759\u6b62\u4e86\u3002"} +{"id": "2000138", "video_name": "e32a954e-b720-5817-8c12-b4ff449fbf5b", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u7e41\u534e\u7684\u57ce\u5e02\u4e2d\u5fc3\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u5229\u4e9a\u59c6\u7684\u5e74\u8f7b\u7537\u5b69\u3002\u5229\u4e9a\u59c6\u8fd8\u53ea\u662f\u4e2a\u5b69\u5b50\uff0c\u5c31\u5931"} +{"id": "2000139", "video_name": "4e4a5f3e-a6e6-5da0-8a9d-118759663c2d", "text": "\u5728\u516c\u5171\u573a\u6240\u7559\u533f\u540d\u9f13\u52b1\u4fbf\u6761\uff1a\u5728\u4fbf\u5229\u8d34\u4e0a\u5199\u4e0a\u6fc0\u52b1\u7684\u8bdd\u8bed\uff0c\u653e\u5728\u516c\u5171\u573a\u6240\uff0c\u5982\u6d17\u624b\u95f4\u3001"} +{"id": "2000140", "video_name": "e6397094-23ea-5afe-9e02-9b2ea75e7766", "text": "\u795e\u7ecf\u5143\u548c\u7ec6\u80de\u5177\u6709\u80fd\u91cf\u3002\u98de\u673a\u7535\u6c60\u4e2d\u6709\u70bd\u70ed\u7684\u5149\u8292\u3002"} +{"id": "2000141", "video_name": "542a392a-41e9-5012-94c8-7455435a3dc9", "text": "\u955c\u5934\u79fb\u52a8\uff0c\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7537\u5b50\u7684\u9762\u90e8\u7279\u5199\u6b63\u5728\u4e2d\u4e16\u7eaa\u623f\u5c4b\u4e2d\u5bfb\u627e\u4ed6\u7684\u59bb\u5b50\u3002"} +{"id": "2000142", "video_name": "06b612af-80a9-541f-ac97-d9eb78a94824", "text": "\u68ee\u6797\u4e2d\u7684\u4e00\u5ea7\u6728\u5c4b\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u4e00\u9897\u6d41\u661f\u5760\u843d\u5e76\u7838\u788e\u4e86\u5c4b\u9876\uff0c\u4e2d\u666f\u3002"} +{"id": "2000143", "video_name": "4017521f-d7eb-5bfd-9b71-9edc103af4c0", "text": "\u6c99\u6f20\u4e2d\u5348\uff0c\u4e00\u4e2a\u8d1d\u90fd\u56e0\u4eba\u5728\u5e10\u7bf7\u524d\u4e0e\u4e00\u7fa4\u8d1d\u90fd\u56e0\u4eba\u4ea4\u8c08\u3002"} +{"id": "2000144", "video_name": "60454eb8-7185-5464-88f5-cb076f33b525", "text": "\u4eba\u7b2c\u4e00\u6b21\u5236\u9020\u706b\uff0c\u6d1e\u7a74\u4eba\uff0c\u73b0\u5b9e\u7684\u3002"} +{"id": "2000145", "video_name": "8d50639a-bf06-5333-be7f-eb76b1638523", "text": "\u4e00\u4e2a\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u7684\u5927\u8c61\u4fa7\u9762\u6b65\u884c\u7684\u524d\u89c6\u56fe\u3002"} +{"id": "2000146", "video_name": "104a4b1a-28d3-524d-9598-a22342347125", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u91cf\u5b50\u8ba1\u7b97\u673a\u524d\uff0c\u75af\u72c2\u5730\u5728\u952e\u76d8\u4e0a\u6253\u5b57\uff0c\u8ba1\u7b97\u673a\u8d8a\u6765\u8d8a\u4eae\u3002"} +{"id": "2000147", "video_name": "dd7af5e0-1e0c-5a79-9157-e8d1b9ec7558", "text": "\u4e00\u53f0\u540d\u53eb\u963f\u5c14\u83f2\u7684\u673a\u5668\u4eba\u5411\u6211\u4eec\u6325\u624b\u3002"} +{"id": "2000148", "video_name": "f04d8c70-9392-53b3-94a2-ed91342fbf08", "text": "\u521b\u5efa\u4e00\u4e2a\u4e16\u754c\u5730\u56fe\u7684png\u6587\u4ef6\u3002"} +{"id": "2000149", "video_name": "1371cea5-48d0-573c-b68e-103136ae15fc", "text": "\u9a6c\u8d6b\u62c9\u00b7\u8d3e\u4e9a\u74e6\u5fb7\u7eb3\u7a7f\u7740\u65af\u91cc\u5170\u5361\u677f\u7403\u670d\uff0c\u63a5\u4f4f\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\u7684\u7403\u3002"} +{"id": "2000150", "video_name": "648ff924-3e35-596c-b160-7cbc184463c6", "text": "Sonic\u6b63\u6162\u6162\u5730\u53d8\u6210\u4e86Sonic.exe\u3002"} +{"id": "2000151", "video_name": "ea5203e8-5e3f-5b07-940a-b73866fada8b", "text": "\u665a\u4e0a\u4ef0\u671b\u661f\u7a7a\uff0c\u661f\u661f\u5728\u79fb\u52a8\u3002"} +{"id": "2000152", "video_name": "54ce79a3-8cfd-5b11-8876-a310261dba7d", "text": "\u592a\u9633\u7206\u70b8\uff0c\u4ece\u800c\u521b\u9020\u4e86\u5730\u7403\u3002"} +{"id": "2000153", "video_name": "bd43cf26-d921-584b-ae01-204e6de33d3f", "text": "\u4e00\u4e2a\u56fd\u5bb6\u5728\u4e2d\u56fd\u51fa\u73b0\uff0c\u5e26\u7740\u521b\u65b0\uff0c\u5728\u5e0c\u814a\uff0c\u6c11\u4e3b\uff0c\u4f60\u4f1a\u5728\u53e4\u4ee3\u667a\u6167\u4e2d\u627e\u5230\u7075\u611f\u3002"} +{"id": "2000154", "video_name": "3941f03c-1be6-5158-8a7d-04ab1529f312", "text": "\u602a\u7269VHS 70\u5e74\u4ee3\u5168\u8eab\u623f\u95f4\u91cc\u7684\u6b7b\u5c38\u5012\u5728\u5730\u4e0a\u3002"} +{"id": "2000155", "video_name": "c86e0276-5738-5f12-9fd8-c686dfc38923", "text": "\u6c99\u6f20\u4e2d\u592e\u7684\u4e00\u500b\u5927\u9670\u6975\u5c4f\u5e55\uff0c\u7da0\u8272\u7684\u82d4\u861a\uff0c\u7070\u7c89\u8272\u7684\u6c99\u5b50\u3001\u7070\u5875\u548c\u5ca9"} +{"id": "2000156", "video_name": "878c88b5-1494-50ea-a837-69eb0d46a4ad", "text": "\u8fd9\u4e2a\u4eba\u5728\u6210\u957f\u7684\u8fc7\u7a0b\u4e2d\uff0c\u5728\u6dcb\u6d74\u4e0b\u9762\u3002\u6c34\u4ece\u8863\u670d\u4e0a\u6ef4\u843d\uff0c\u6dcb\u6d74\u95e8\u5728\u80cc\u666f\u4e2d\u30028K"} +{"id": "2000157", "video_name": "bf125ceb-35c1-5712-b00d-eff2cb108f34", "text": "\u6c7d\u8f66\u5f15\u64ce\u5185\u90e8\u8fd0\u52a8\uff0c\u6d3b\u585e\uff0c\u66f2\u8f74\uff0c\u9f7f\u8f6e\uff0c\u6c7d\u6cb9\u8fdb\u5165\u5f15\u64ce\uff0c\u53d1\u751f\u706b\u82b1\u3002"} +{"id": "2000158", "video_name": "75b514e3-cf71-5c26-b316-32f3cb6c0e70", "text": "\u7ebd\u7ea6\u5e02\u653f\u5385\u5728\u96e8\u5929\u7684\u5916\u9762\u3002"} +{"id": "2000159", "video_name": "813b68ae-f43c-5f56-9966-5f82feefee0e", "text": "\u963f\u65af\u5854\u6765\u81ea\u300a\u9ed1\u8272\u4e94\u53f6\u8349\u300b\uff0c\u800c\u9ed1\u5d0e\u4e00\u62a4\u6765\u81ea\u300a\u6b7b\u795e\u300b\uff0c\u4e24\u8005\u76f8\u5f97\u76ca\u5f70\u3002"} +{"id": "2000160", "video_name": "d8964212-f7c2-5e11-b516-d9862940fd1b", "text": "\u4e00\u53ea\u624b\u677e\u5f00\u4e86\u4e00\u4e2a\u7ea2\u6c14\u7403\u3002"} +{"id": "2000161", "video_name": "46d5771c-b7ba-5931-9125-bd7bdbb8b2bd", "text": "\u5728\u706b\u661f\u4e0a\uff0c\u4e00\u53ea\u7a7f\u7740\u6e56\u4eba\u961f\u7d2b\u8272\u7403\u8863\u7684\u6597\u725b\u72ac\u6b63\u5728\u8fd0\u7403\u3002"} +{"id": "2000162", "video_name": "4087a0de-b47d-5307-84a8-6c593c295b10", "text": "\u4e8c\u6218\u6218\u6597\u673a\u98de\u8fc7\u4e00\u5ea7\u88ab\u70b8\u6bc1\u7684\u57ce\u5e02\uff0c\u4ee5\u65e7\u5f0f\u7535\u5f71\u5f62\u5f0f\u5448\u73b0\u3002"} +{"id": "2000163", "video_name": "b335a188-870b-502e-bcaa-ad42b466c03b", "text": "\u4e00\u4e2a\u51c6\u5907\u597d\u6218\u6597\u7684\u5f3a\u58ee\u673a\u5668\u4eba\u7537\u4eba\u3002"} +{"id": "2000164", "video_name": "666a70d7-d4ab-5ca5-a3d4-2f792f242cac", "text": "\u4eba\u6210\u4e3a\u795e\uff1a\u4f7f\u5f62\u8c61\u770b\u8d77\u6765\u66f4\u5e74\u8f7b\uff1a\u56fe\u50cf\u95ea\u8000\u5982\u661f\u5149\uff1a\u4e00\u4e2a\u4eba\u7269\u6f02\u6d6e\u8fdb\u5165\u5149\u4e2d\u3002"} +{"id": "2000165", "video_name": "0f3c96b4-d329-5275-94d6-cd608b60ef59", "text": "\u5c55\u793a\u4e00\u53ea\u96c4\u4f1f\u7684\u84dd\u9cb8\u5728\u6d77\u6d0b\u4e2d\u4f18\u96c5\u5730\u6e38\u6cf3\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "2000166", "video_name": "c1168715-3af2-590b-8d1c-7b97d73f92ae", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u4e16\u754c\u672b\u65e5\uff0c\u9668\u77f3\u649e\u51fb\u5730\u7403\u3002"} +{"id": "2000167", "video_name": "ccfda29e-5c5b-518f-a188-600b2fe9a0c0", "text": "\u4e00\u4f4d\u5e26\u7740\u732b\u8033\u548c\u5c3e\u5df4\u7684\u53ef\u7231\u5973\u5b69\u53d1\u73b0\u81ea\u5df1\u559c\u6b22\u7684\u7537\u5b69\u539f\u6765\u662f\u9b54\u6cd5\u4f7f\u7528\u8005\u53e6\u4e00\u65b9\u7684"} +{"id": "2000168", "video_name": "280b048a-7366-54d7-9616-2e643c2daab2", "text": "\u4e00\u540d\u82f1\u56fd\u8b66\u5bdf\uff0c\u7a7f\u7740\u82f1\u56fd\u8b66\u5bdf\u5236\u670d\uff0c\u7ad9\u5728\u4e00\u5bb6\u6bd4\u8428\u5e97\u5916\uff0c\u591c\u665a\uff0c\u5730\u9762\u6e7f\u6da6\u3002"} +{"id": "2000169", "video_name": "4b5e1ecf-c96f-5e4e-83dc-6a485898f218", "text": "\u521b\u9020\u4e00\u4e2a\u5e05\u6c14\u7684\u7537\u6027\u52a8\u6f2b\u89d2\u8272\u7167\u7247\u3002"} +{"id": "2000170", "video_name": "97b19eb6-ff94-5726-8ee8-38136de0fbf2", "text": "\u5728\u5c71\u9876\u4e0a\u5f00\u6cd5\u62c9\u5229\uff0c\u914d\u4ee5\u6e56\u6ccavaporwave\u3002"} +{"id": "2000171", "video_name": "2cd2deda-c313-5cc5-af28-120c565eaca3", "text": "\u4e00\u4f4d\u5b64\u7368\u7684\u5973\u5b69\u52d5\u756b\u7a7f\u904e\u9b54\u5e7b\u7684\u8ff7\u5e7b\u591a\u5f69\u68ee\u6797\u3002"} +{"id": "2000172", "video_name": "30cc8325-7d4a-5069-94e4-087f36f238b7", "text": "\u592a\u7a7a\u98de\u8239\u5236\u9020\u8f68\u9053\u58eb\u5175\u6295\u653e\uff0c\u7535\u5f71\u822c\u7684\u76d1\u89c6\u6444\u50cf\u5934\u683c\u5f0f\u3002"} +{"id": "2000173", "video_name": "57dea282-53bb-5068-a6bc-062bf1a1e1e0", "text": "\u5df4\u4f26\u00b7\u6851\u5fb7\u4f0a\u548c\u80cc\u666f\u4e2d\u7684\u6469\u7faf\u5ea7\u4e0e\u5927\u5929\u4f7f\u5361\u897f\u5c14\u3002"} +{"id": "2000174", "video_name": "03d03531-8263-55b4-807c-74b047263548", "text": "\u58f0\u97f3\u8ba1\u4e0a\u4e0b\u6ce2\u52a8\u3002"} +{"id": "2000175", "video_name": "413eb0cc-fa9b-5602-bbdc-3967d642e5d5", "text": "\u96f7\u8499\u5728\u51b0\u4e16\u754c\u5954\u8dd1\uff0c\u4e0e\u5de8\u578b\u7235\u58eb\u8428\u514b\u65af\u7ba1BOSS\u6218\u6597\u3002"} +{"id": "2000176", "video_name": "01dc3542-73f1-588f-a0e4-a8d4738c7c9c", "text": "\u4e00\u6bb5\u50cf\u6444\u50cf\u5934\u8fdb\u5165\u6df1\u6d77\u4e00\u6837\u7684\u89c6\u9891\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4fa7\u9762\u7684\u6c14\u6ce1\u3002"} +{"id": "2000177", "video_name": "22377479-497a-5cde-b840-5093e31b0626", "text": "\u4e00\u4e2a\u5728\u9759\u8c27\u82b1\u56ed\u91cc\u4e3e\u884c\u7684\u4f20\u7edf\u65e5\u672c\u8336\u9053\u4eea\u5f0f\u3002"} +{"id": "2000178", "video_name": "d2fc412e-cca5-5278-a670-232f1f4a6292", "text": "\u5bbd\u655e\u7684\u5e9f\u5f03\u5ba2\u5385\uff0c\u843d\u5730\u7a97\uff0c\u5730\u4e0a\u957f\u6ee1\u4e86\u8349\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2000179", "video_name": "f215df52-a68c-5b9e-bf6f-94d22c33fba4", "text": "\u5236\u4f5c\u4e00\u4e2a\u77ed\u7684\u52a8\u753b\u89c6\u9891\uff0c\u5f00\u59cb\u4e8e\u730e\u6237\u5ea7\u6ce8\u89c6\u7740\u661f\u7a7a\uff0c\u7136\u540e\u8f6c\u6362\u4e3a\u4ed6\u5f97\u77e5\u4e86\u4e00\u9879\u536b\u661f\u53d1\u5c04\u7684\u6d88\u606f\uff0c\u6fc0"} +{"id": "2000180", "video_name": "4adea494-c88e-5cd8-b318-d177f8139af3", "text": "\u8fd9\u4e9b\u5c42\u636e\u8bf4\u4f4d\u4e8e\u4e03\u4e07\u7531\u65ec\u8fdc\u7684\u5730\u65b9\u3002"} +{"id": "2000181", "video_name": "4213576d-6399-5a46-bc15-4fd6535cd452", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u51ac\u5929\u4ece\u5c71\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "2000182", "video_name": "f058b59b-c694-5b05-98b3-f6e9eee939a3", "text": "\u4e00\u65e6\u8fd9\u4e2a\u58f0\u97f3\u5728\u7a7a\u6c14\u4e2d\u56de\u8361\uff0c\u5c31\u662f3D\u52a8\u753b\u98ce\u683c\u7684\u68ee\u6797\uff0c\u5206\u8fa8\u7387\u4e3a4k\u3002"} +{"id": "2000183", "video_name": "5e759679-05e0-57cd-bf4f-3d0d64ac6e8c", "text": "\u4e4c\u9e26\u5728\u82b1\u56ed\u91cc\u5403\u9762\u5305\uff0c\u6bcd\u9e21\u88ab\u62cd\u6210\u4e86\u89c6\u9891\uff0c\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "2000184", "video_name": "50875b5e-44ab-538e-8459-5593a5af3968", "text": "\u73b0\u5728\u76f4\u64ad (Font: \u73b0\u4ee3)\n\n\u4e00\u4e2a\u8457\u540d\u7684YouTuber\u76f4\u64ad\u8bbe\u5907\u3002\u5145\u6ee1\u4e86\u6240\u6709\u9713\u8679\u706f\u548c\u6602\u8d35\u7684\u8bbe\u5907\u3002"} +{"id": "2000185", "video_name": "0ec83946-c271-5310-be9c-ebae7960c1cf", "text": "\u4e00\u5e45\u67f4\u72ac\u5bf9\u7740\u6708\u4eae\u568e\u53eb\u7684\u6c34\u5f69\u753b\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2000186", "video_name": "1cf6e4f8-21a5-56dd-9d1f-fc88a8384816", "text": "\u4e00\u5bb6\u4eba\u5728\u684c\u5b50\u4e0a\u5403\u996d\u7684\u903c\u771f\u89c6\u9891"} +{"id": "2000187", "video_name": "89c69a84-986d-566d-8113-90e89dbcc64f", "text": "\u4e00\u53ea\u91d1\u6bdb\u730e\u72ac\u5b9d\u5b9d\u7b2c\u4e00\u6b21\u884c\u8d70\u3002"} +{"id": "2000188", "video_name": "d9b7bfbd-4020-55bf-b6eb-344f4662cdeb", "text": "\u4e30\u5bcc\u7684\u7ec6\u8282\uff0c\u9ad8\u54c1\u8d28\uff0c\u96ea\u5c71\u4e0a\u7684\u96ea\u88ab\u98ce\u5439\u8d77\uff0c\u4e2d\u7b49\u7279\u5199\u955c\u5934\uff0c\u5bbd\u9ad8\u6bd43:5\u3002"} +{"id": "2000189", "video_name": "f942a02d-ee96-5524-856d-06c5dda6f74b", "text": "\u4f5b\u7f57\u91cc\u8fbe\u6d77\u6ee9\u666f\u8c61\uff0c\u6d77\u6c34\u6c79\u6d8c\u800c\u51fa\u3002"} +{"id": "2000190", "video_name": "c7c4b97c-8027-5bf7-bde2-79ba56a4586b", "text": "\u8d6b\u654f\u00b7\u683c\u5170\u6770\u7684\u76f8\u4f3c\u4e4b\u4eba\u76f4\u89c6\u7740\u955c\u5934\uff0c\u540c\u65f6\u56db\u5904\u79fb\u52a8\u3002 \n\nSource sentence: Can you please pass me the salt and pepper? \n\u8bf7\u4f60\u628a"} +{"id": "2000191", "video_name": "0595583b-0123-5c31-be5f-2d7aec1ca4e1", "text": "\u5bc6\u96c6\u7684\u6c14\u6ce1\uff0c\u5e7f\u89d2\u6162\u6162\u9760\u8fd1\u3002"} +{"id": "2000192", "video_name": "661b204f-0201-559a-acd3-0cafe882bae2", "text": "\u5728\u6d77\u5e73\u7ebf\u4e0a\u9633\u5149\u4e0b\u7684\u7ef4\u7eb3\u65af\u8bde\u751f"} +{"id": "2000193", "video_name": "607802ab-d96b-5c1b-82c1-f2ff5f7421e1", "text": "\u76ae\u514b\u65af\u7535\u5f71\u4e2d\u7684\u5361\u901a\u52a8\u753b\u5c11\u5e74\uff0c\u7626\u957f\u7684\u6a21\u7279\uff0c\u5fae\u7b11\u7740\u62cd\u7167\u3002"} +{"id": "2000194", "video_name": "9e52f2a0-6b0d-5d9c-9c97-c6232edc7348", "text": "\u95ea\u70c1\u7684\u5b9d\u85cf\u65c1\uff0c\u5c0f\u9ca4\u9c7c\u7684\u573a\u666f\uff0c3D\u52a8\u753b\uff0c\u903c\u771f\uff0c8K\u3002"} +{"id": "2000195", "video_name": "9b090912-1c4c-519a-99c6-08e4d4e892de", "text": "\u8857\u9053\u5728\u4e00\u4e2a\u5973\u4eba\u548c\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u773c\u4e2d\u7684\u6620\u50cf\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u795e\u7ecf\u7cfb\u7edf\u7684\u773c\u775b\uff0c\u77b3\u5b54\u6269\u5927"} +{"id": "2000196", "video_name": "0c3fa079-e0db-501e-93b6-2383b92f2fc4", "text": "\u8f6e\u76d8\u6eda\u52a8\uff0c\u73b0\u91d1\u98de\u5230\u7a7a\u4e2d\uff0c\u653e\u5927\u3002"} +{"id": "2000197", "video_name": "30cd6b98-2e94-5169-884b-db2820242f0d", "text": "\u4e00\u4f4d\u5973\u5b66\u751f\u6b63\u5728\u770b\u7740\u8bfe\u5802\u3002"} +{"id": "2000198", "video_name": "87843912-3793-53f2-b47a-0355fb8834cf", "text": "\u5728\u5927\u68ee\u6797\u91cc\u6709\u4e00\u4e2a\u5c0f\u5973\u7cbe\u7075\u548c\u4e00\u4e2a\u5c0f\u7537\u730e\u4eba\u3002"} +{"id": "2000199", "video_name": "595cc790-0fd6-5009-b9ad-3de2d0478810", "text": "\u9ad8\u5ea6\u8be6\u7ec6\u3001\u7167\u7247\u822c\u903c\u771f\u7684\u52a8\u7269\u6392\u5217\u5728\u68ee\u6797\u91cc\u3002\u4fe1\u606f\uff1aNuEdg\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2000200", "video_name": "840268db-4bbe-5f58-ae43-164d9acd89c9", "text": "\u8ddf\u968f\u5927\u8349\u539f\u4e0a\u7684\u6591\u9a6c\uff0c\u653e\u5927\uff0c\u9ad8\u6e05\uff0c4K\u3002"} +{"id": "2000201", "video_name": "1144455a-1e7a-5bec-8cbd-7e55cf624ea1", "text": "\u7535\u89c6\u65b0\u95fb\u8bb0\u8005\u5728\u7535\u89c6\u4e0a\u8bb2\u8bdd\uff0c4K\u8d85\u8be6\u7ec6\u903c\u771f\u7684\u7535\u5f71\u524d\u666f\u955c\u5934\uff0c\u7f8e\u56fd\u955c\u5934"} +{"id": "2000202", "video_name": "122a5519-6349-5c9d-aa86-330cefdf0bb2", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u718a\u8d70\u5230\u4e86\u4e00\u6735\u5c0f\u82b1\u524d\uff0c\u5411\u5b83\u95ee\u597d\uff0c\u5e0c\u671b\u80fd\u548c\u5b83\u6210\u4e3a\u670b\u53cb\u3002"} +{"id": "2000203", "video_name": "04dafc16-4fd4-5b70-9f00-24d976b8907e", "text": "\u661f\u4f53\u6295\u5c04\u4e4b\u591c\uff0c\u660e\u4eae\u7684\u661f\u7cfb\uff0c\u53d6\u666f\u4e2d\u5fc3\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u7ea6\u7ff0\u00b7\u5a01\u5ec9\u00b7\u6c83\u7279\u8c6a\u65af\u548c"} +{"id": "2000204", "video_name": "bba85f68-2a45-5174-9e6b-a605d3ffbfd1", "text": "\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u5b50\u7530\u5f84\u8fd0\u52a8\u5458\u6cbf\u7740\u8dd1\u9053\u5954\u8dd1\u3002"} +{"id": "2000205", "video_name": "b0caac52-d429-5284-8eaa-6c28abec0f58", "text": "\u671d\u4e0b\u7684\u5411\u65e5\u8475\u3002"} +{"id": "2000206", "video_name": "96b145dd-1832-564b-94c8-41ae0e8b9e49", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u51ac\u5b63\u666f\u8c61\uff0c\u5e26\u7740\u52a8\u6001\u7684\u52a8\u7269\u3002\u89c6\u9891\u9700\u8981\u6301\u7eed5\u79d2\u949f\u3002"} +{"id": "2000207", "video_name": "c4abf100-ab80-52af-bcef-d9660e21074a", "text": "\u4e00\u540d\u5973\u5b50\u7528\u624b\u89e6\u78b0\u7537\u5b50\uff0c\u82cf\u8054\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u7684\u5b64\u72ec\u98de\u8239\u5185\uff0c\u4ee535\u6beb\u7c73\u7eaa\u5f55\u7247\u98ce\u683c"} +{"id": "2000208", "video_name": "822d1e1a-09f5-59fa-9e60-e631b46ac0c6", "text": "\u4e00\u4e2a\u5feb\u901f\u79fb\u52a8\u548c\u95ea\u8000\u7684\u805a\u5149\u706f"} +{"id": "2000209", "video_name": "aad21ce2-d801-5c2f-8ac3-d298a7ed1b82", "text": "\u767d\u8272\u7fc5\u8180\u7684\u5929\u4f7f\u5973\u5b69\u5728\u6709\u4e91\u6735\u7684\u80cc\u666f\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2000210", "video_name": "92a960d0-076b-5662-9381-8290f9e59dfb", "text": "\u8336\u53f6\u548c\u7206\u7c73\u82b1\u7684\u96ea\u5d29\uff0c4k\uff0c\u9ad8\u6e05\uff0c\u9ad8\u901f\u52a8\u4f5c\u3002"} +{"id": "2000211", "video_name": "105a0dfe-12e1-5f6a-a4f4-0ad659cba09e", "text": "\u65e0\u6570\u7684\u6d77\u8c5a\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5728\u6d77\u6d0b\u4e2d\u6e38\u6cf3\u5e76\u6380\u8d77\u5de8\u6d6a\uff0c\u8fdb\u884c\u7a7a\u4e2d\u6444\u5f71\u3002"} +{"id": "2000212", "video_name": "2ed1ad33-31a5-5ec3-be27-b4b62febcb70", "text": "\u8ba9\u7167\u7247\u7684\u80cc\u666f\u52a8\u8d77\u6765\u3002"} +{"id": "2000213", "video_name": "425cea90-58f3-502d-99e5-668c27d184a5", "text": "\u5723\u8bde\u5e86\u795d\u6d3b\u52a8\uff0c\u4eba\u4eec\u4e3e\u8d77\u53cc\u624b\u9f50\u58f0\u9f13\u638c\uff0c3D\u52a8\u753b\u3002"} +{"id": "2000214", "video_name": "4510e940-6e1c-5da8-8388-7ace16cbe01d", "text": "\u54e5\u4f26\u6bd4\u4e9a\u57ce\u5e02\u5e02\u4e2d\u5fc3\u3002\u4fe1\u606f\uff1a\u5a01\u5c14\u5361\u65af\u5854\u8bfa\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2000215", "video_name": "acdd55f3-da38-5850-bd9e-97fc18c9ce02", "text": "\u4e00\u500b\u8272\u5f69\u7e7d\u7d1b\u7684\u71b1\u6c23\u7403\u7bc0\u6b63\u5728\u5168\u529b\u5c55\u958b\u3002"} +{"id": "2000216", "video_name": "e9ccbcc8-8d22-5869-b5bc-4e5983956f60", "text": "\u4e00\u4f4d\u7a7f\u7740\u5546\u52a1\u5927\u8863\u7684\u5973\u5b69\u7ad9\u5728\u539f\u5730\uff0c\u98ce\u5439\u52a8\u5979\u7684\u8863\u670d\u3002"} +{"id": "2000217", "video_name": "49829c4d-003f-5213-aed0-f58b3de5e4c7", "text": "\u8fdc\u666f\u955c\u5934\uff0c\u7535\u5f71\u611f\uff0c\u4e00\u8f86\u6324\u6ee1\u4eba\u7684\u516c\u4ea4\u8f66\u6ca1\u6709\u4efb\u4f55\u7a7a\u95f4\u53ef\u4ee5\u6d3b\u52a8\u3002"} +{"id": "2000218", "video_name": "9b56b96b-abf3-5794-afb8-bfd5b7366c5a", "text": "\u5236\u4f5c\u4e00\u4e2a\u9488\u5bf9\u513f\u7ae5\u7684\u6d4b\u9a8c\uff0c\u8ba9\u4ed6\u4eec\u5728\u591a\u4e2a\u7269\u4f53\u4e2d\u5bfb\u627e\u82f9\u679c\uff0c\u8ba9\u82f9\u679c\u4ece\u7269\u4f53\u4e2d\u53d1\u5149\u3002"} +{"id": "2000219", "video_name": "7dbb4fae-abaf-587f-95e3-b51971c43962", "text": "\u5168\u606f\u6295\u5f71\u673a\u5668\u4eba\u7ad6\u8d77\u5927\u62c7\u6307\u3002"} +{"id": "2000220", "video_name": "9c64a688-45d5-506f-9f18-b33913328bb6", "text": "\u7f8e\u56fd\u865a\u6784\u6210\u5e74\u7537\u5b50\u7684\u5fc3\u7406\u5065\u5eb7\u6545\u4e8b\u3002"} +{"id": "2000221", "video_name": "2f231692-b16e-561f-bd6b-1655c1c13908", "text": "3D\u7684\u7237\u7237\u5976\u5976\u548c\u5b69\u5b50\u4eec\u5728\u4ea4\u8c08\u3002"} +{"id": "2000222", "video_name": "f9f94f79-ff5f-51b6-a7fb-59e82e07e8dc", "text": "\u5e8a\u89d2\u7684\u5185\u90e8\u56fe\u50cf\uff0c\u9002\u7528\u4e8e\u5e74\u8f7b\u804c\u4e1a\u4eba\u58eb\uff0c\u6728\u8d28\u5185\u9970\uff0c\u5177\u6709\u6d45\u666f\u6df1\u6548\u679c\uff0c\u4fa7\u9762\u6a21\u7cca\u4e86"} +{"id": "2000223", "video_name": "10715157-dc3c-5ae0-a35e-dc4b5f00b3ce", "text": "\u4e00\u6bb5\u9762\u90e8\u53d8\u6210\u50f5\u5c38\u673a\u5668\u4eba\u5f71\u5b50\u7684\u52a8\u753b\u8f6c\u6362\u573a\u666f\uff0c\u5b8c\u6210\u5934\u90e8\u548c\u9762\u90e8\u7684\u5b8c\u6574\u8f6c\u6362\uff0c\u827a\u672f\u98ce\u683c\u4e3aH.R.\u5409\u683c\u5c14"} +{"id": "2000224", "video_name": "e5c6f3ed-6a49-5fac-abe3-89fc9b7ae757", "text": "\u73b0\u4ee3\u57ce\u5e02\u7684\u9e1f\u77b0\u56fe"} +{"id": "2000225", "video_name": "f1a6515e-e93e-532d-b174-9329fb769957", "text": "\u8d85\u5e02\u6050\u6016\u68a6\u5883\u8d85\u73b0\u5b9e\u5669\u68a6\u82ef\u6d77\u62c9\u660e\u602a\u517d"} +{"id": "2000226", "video_name": "211d88b4-3f6a-514c-87ff-02b06673c238", "text": "\u51ac\u5929\u8212\u9002\u7684\u6c1b\u56f4\u91cc\uff0c6\u540d\u9752\u5c11\u5e74\u5728\u6e38\u620f\u5ba4\u5185\u5438\u70df\u3002"} +{"id": "2000227", "video_name": "33c386d9-b82d-5d64-9a78-c9aeec4c502a", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u5bb6\u5ead\u97f3\u4e50\u5f55\u97f3\u5ba4\u5185\uff0c\u7a7f\u7740\u7ea2\u8272\u8fde\u5e3d\u886b\uff0c\u6447\u6643\u7740\u5934\uff0c\u6234\u7740\u8033\u673a\uff0c\u5448\u73b0"} +{"id": "2000228", "video_name": "7573c752-cc05-5045-93db-7504174ed1f1", "text": "\u751c\u5fc3\u732b\u5728\u7535\u68af\u65c1\u7684\u58c1\u7089\u5904\u7761\u89c9\u3002"} +{"id": "2000229", "video_name": "db3600d4-1af1-5dad-b3f9-65f0f2cfc3c2", "text": "\u7535\u5f71\u9662\uff0c\u4e0b\u96e8\u4e86\u4e5f\u80fd\u8d5a\u5230\u949e\u7968\u3002"} +{"id": "2000230", "video_name": "3d746f2c-13dd-5056-a9c2-310bf7fd305e", "text": "\u4e24\u67b6\u98de\u673a\u5728\u8dd1\u9053\u4e0a\u76f8\u649e\u3002"} +{"id": "2000231", "video_name": "afbf7a17-5631-5c70-ab8f-d8054ff85807", "text": "\u8759\u8760\u4fa0\u548c\u8d85\u4eba\u5728\u508d\u665a\u8fdb\u884c\u6218\u6597\u3002"} +{"id": "2000232", "video_name": "b3f4b775-07dc-5e9c-9751-3452583db680", "text": "\u8774\u8776\u4ece\u624b\u673a\u5c4f\u5e55\u4e0a\u98de\u51fa\u6765\uff0c\u6709\u7535\u5f71\u611f\uff0c\u9ed1\u8272\u80cc\u666f\uff0c16:9\uff0c32K UHD\u3002"} +{"id": "2000233", "video_name": "60b00fe1-fa3b-5d14-8be2-410c7b1c23a0", "text": "\u5c55\u793a\u4e00\u4e2a\u5e26\u6709\u5947\u602a\u548c\u795e\u79d8\u6c1b\u56f4\u7684\u5916\u592a\u7a7a\u56fe\u50cf\u3002"} +{"id": "2000234", "video_name": "e476f3ad-9615-5b9c-81da-090d9bfed601", "text": "\u673a\u9047\u4e0e\u7075\u611f\uff1a\u4eba\u5de5\u667a\u80fd\u4e0e\u827a\u672f\u7684\u76f8\u9047\u3002"} +{"id": "2000235", "video_name": "3543c087-cee4-5357-82e8-7317cf2ea98a", "text": "\u6258\u9a6c\u65af\u00b7\u5854\u5df4\u5185\u5728\u4e00\u5bb6\u660f\u6697\u7684\u9152\u5427\u91cc\u5403\u7740\u58a8\u897f\u54e5\u5377\u997c\u3002"} +{"id": "2000236", "video_name": "79a4d44b-5f6b-5d26-9059-84b197c21f8f", "text": "\u6210\u5e74\u7ea4\u7626\u7f57\u5a01\u7eb3\u72ac\u7684\u540e\u80cc\uff0c\u6234\u7740\u9ed1\u8272\u548c\u7ea2\u8272\u683c\u5b50\u9879\u5708\uff0c\u4f4d\u4e8e\u56fe\u50cf\u4e2d\u5fc3\u4e91\u5c42\u4e0a\u65b9"} +{"id": "2000237", "video_name": "ab860f41-ec62-5bf9-b1e0-6b97fdac6d7a", "text": "\u5728\u4e00\u4e2a\u50cf\u7ae5\u8bdd\u4e16\u754c\u4e00\u6837\u7684\u8302\u5bc6\u7eff\u6797\u4e2d\uff0c\u5b75\u5316\u51fa\u4e00\u53ea\u9e1f\u513f\u7684\u86cb\u3002"} +{"id": "2000238", "video_name": "09ec4c83-7b79-5ba4-9562-2d88bec005d9", "text": "\u8ff7\u4eba\u7684\u68ee\u6797\uff0c\u795e\u5947\u7684\u5c71\u8109\u548c\u95ea\u95ea\u53d1\u5149\u7684\u6cb3\u6d41\u3002"} +{"id": "2000239", "video_name": "fb46781e-c844-59e4-841e-b49bb4064c3b", "text": "\u62ff\u7740\u5200\u7684\u7537\u4eba\u5728\u60ca\u6050\u5730\u8d70\u8def\u3002"} +{"id": "2000240", "video_name": "a7bd38ea-00eb-5fa2-9b8a-3372133903f1", "text": "\u628a\u4f60\u7684\u5934\u5411\u4e24\u4fa7\u79fb\u52a8\uff0c\u540c\u65f6\u5728\u53d8\u5f62\u72b6\u6001\u4e0b\uff0c\u56fe\u50cf\u4f1a\u63a5\u53d7\u4e00\u4e2a\u7f29\u653e\u3002"} +{"id": "2000241", "video_name": "46305713-e9ce-5d5f-aba8-1d31f60d26be", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b69\u9a91\u7740\u81ea\u884c\u8f66\uff0c\u4e00\u4e2a\u7537\u5b69\u9a91\u7740\u70ed\u8f6e\u8f66\uff0c\u4ee5 2 \u7c73\u6bcf\u79d2\u7684\u901f\u5ea6\u79fb\u52a8\u7740\u3002123\u3002"} +{"id": "2000242", "video_name": "fcc2ca51-7da1-5bb4-8247-704535c48943", "text": "\u57ce\u5e02\u80cc\u666f\u3001\u8857\u9053\u3001\u4e3b\u89d2\u662f\u4e00\u53ea\u7334\u5b50\u5728\u5954\u8dd1\uff0c\u4eba\u4eec\u5728\u4eba\u884c\u9053\u4e0a\u884c\u8d70\uff0c\u611f\u53d7\u5230\u901f\u5ea6\u611f\uff0c\u6444\u50cf\u673a\u8ddf"} +{"id": "2000243", "video_name": "a122f8c2-80c5-5800-9a5f-85735bfb1e65", "text": "\u4e00\u8f86\u8dd1\u8f66\u505c\u5728\u8c6a\u5b85\u524d\u3002"} +{"id": "2000244", "video_name": "8cd76ad7-78fa-5093-85ec-a19b470fd5c4", "text": "\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u5448\u73b0\u51fa\u795e\u79d8\u7684\u9762\u5bb9\u2014\u20141970\u5e74\u7535\u5f71\u3002"} +{"id": "2000245", "video_name": "b2c0944f-ae5c-51f1-82e2-3391988d2ad0", "text": "\u91d1\u661f\u7684\u63d2\u56fe\u4e4b\u5c4b\uff0c\u56fe\u50cf\u5c0f\u8bf4\u7d20\u63cf\uff0c\u56fe\u50cf\u5c0f\u8bf4\u98ce\u683c\uff0c2D\u6548\u679c\uff0c\u5e73\u9762\u989c\u8272\uff0c\u6697\u6de1\u7684\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "2000246", "video_name": "23952cfa-d661-5953-a6bd-0f3d5f6c9b2e", "text": "\u6211\u7956\u7236\u7684\u540d\u5b57\u662f\u80e1\u56fd\u534e\u3002\u80e1\u5bb6\u7684\u7956\u5148\u662f\u5168\u56fd\u8457\u540d\u7684\u5927\u5730\u4e3b\u3002\u5728\u6700\u8f89\u714c\u7684\u65f6\u671f\uff0c\u4ed6\u4eec\u5728\u57ce\u91cc\u4e70"} +{"id": "2000247", "video_name": "3efb67a5-5bed-59b8-9cad-04dbd0ca2839", "text": "\u7535\u5f71\u98ce\u683c\uff0c\u903c\u771f\u7684\u5149\u5f71\u6548\u679c\uff0c\u65af\u8bfa\u514b\u53f0\u7403\u9009\u624b\u624b\u63e1\u7403\u611f\u89c9\uff0c\u7ad9\u5728\u4e2d\u592e\uff0c\u80cc\u5149\u6548\u679c\uff0c\u4e00\u4e2a\u5de8"} +{"id": "2000248", "video_name": "e9530719-7e65-57dd-96f1-ea8a1f831b2b", "text": "\u7f8e\u4e3d\u7684\u7ea2\u53d1\u5973\u5b50\u4ece\u5929\u7a7a\u964d\u843d\u5230\u5730\u9762\u4e0a\u3002"} +{"id": "2000249", "video_name": "b7d4025c-2489-5e48-bf80-fd0513f04143", "text": "\u5bd2\u51b7\u7684\u51ac\u5929\uff0c\u57ce\u5e02\u5929\u9645\u7ebf\u4e0a\u65b9\u3002"} +{"id": "2000250", "video_name": "4ee6716b-259e-5e96-bbcd-d02284fb9b78", "text": "30\u5c81\u7684\u4e9a\u6d32\u730e\u4eba\uff0c\u7a7f\u7740\u516c\u5143\u524d600\u5e74\u7684\u8863\u670d\uff0c\u5728\u6c99\u6f20\u91cc\u72ec\u81ea\u5fcd\u53d7\u9177\u70ed\uff0c\u8eab\u4f53\u975e\u5e38"} +{"id": "2000251", "video_name": "e487b4a1-d27a-599b-b221-0b71d50b1708", "text": "\u9f7f\u8f6e\u6218\u4e89\uff1a\u8757\u866b\u5bf9\u94c1\u7532\u5947\u4fa0"} +{"id": "2000252", "video_name": "918476e0-28ff-53ee-8bd4-bbd369fe7a71", "text": "\u5728\u73b0\u4ee3\u5e74\u4ee3\u9a7e\u9a76\u6c7d\u8f66\u4e0a\u9ad8\u901f\u516c\u8def\u3002"} +{"id": "2000253", "video_name": "93c9f32f-47c6-54aa-8edb-59e1ec71567a", "text": "\u521b\u4f5c\u4e00\u5e45\u63cf\u7ed8\u5272\u9634\u672f\u540e\u9057\u75c7\u7684\u56fe\u50cf\uff0c\u5c55\u793a\u5728\u53e4\u5e0c\u814a\u7684\u5974\u96b6\u4e2d\uff0c\u88ab\u5272\u6389\u7684"} +{"id": "2000254", "video_name": "811f7f2c-ed1c-5c89-97ae-f20bcb3e6461", "text": "\u5370\u5ea61900\u5e74\u4e00\u8f86\u706b\u8f66\u884c\u9a76\u7684\u89c6\u9891\u3002"} +{"id": "2000255", "video_name": "feabebc0-faa1-5600-963f-9e5fad888948", "text": "\u6df1\u591c\uff0c\u5e74\u8f7b\u4eba\u4e0e\u5750\u5728\u5893\u5730\u91cc\u7684\u8001\u4eba\u4ea4\u8c08\u3002 \n\nSource sentence: She always wears a red dress on special occasions. \n\u5979\u603b\u662f\u5728\u7279\u6b8a\u573a\u5408"} +{"id": "2000256", "video_name": "d4ef1c62-fa72-50e7-8af4-8fc3cd8734cc", "text": "\u4e00\u4e2a\u957f\u5f97\u50cf\u7ea6\u7ff0\u00b7\u5a01\u514b\u7684\u5192\u9669\u5bb6\u6b63\u5728\u6cbc\u6cfd\u4e2d\u5f92\u624b\u4e0e\u9cc4\u9c7c\u640f\u6597\u3002"} +{"id": "2000257", "video_name": "20dfa9e0-54cc-5891-8317-e4aeacdec205", "text": "\u4e61\u6751\u7684\u5355\u5c42\u4f4f\u5b85\uff0c\u4e09\u4e2a\u5367\u5ba4\u7684\u623f\u5b50\uff0c\u6709\u5927\u578b\u6237\u5916\u9732\u53f0\u533a\uff0c\u73b0\u4ee3\u5316\u8bbe\u8ba1\u3002\u5c55\u793a\u8fdc\u7a0b\u7acb\u9762\uff0c\u623f\u5b50"} +{"id": "2000258", "video_name": "687e7af0-4e1f-533f-8a28-db66c956d65c", "text": "\u4e24\u53ea\u6cf0\u8fea\u718a\u5750\u5728\u684c\u5b50\u524d\u9762\uff0c\u5403\u86cb\u7cd5\uff0c\u559d\u5496\u5561\uff0c\u542c\u7740\u4e00\u4e2a\u6234\u7740\u7ea2\u8272\u548c\u6a59"} +{"id": "2000259", "video_name": "eb2cd68b-11b6-5fb7-8f59-3b432ff1cc76", "text": "\u5973\u5b69\u72ec\u81ea\u5728\u70e4\u8089\u5e97\u8df3\u821e\uff0c\u821e\u8e48\uff0c\u72fc\u3002"} +{"id": "2000260", "video_name": "ca22ce59-8412-5566-8c99-d09dfc4c1db8", "text": "\u5c0f\u732b\u7a7f\u7740\u5723\u8bde\u8001\u4eba\u5e3d\u5b50\u8eba\u5728\u5730\u6bef\u4e0a\u7761\u89c9\uff0c\u80cc\u666f\u6709\u71c3\u70e7\u7684\u58c1\u7089\u548c\u9759\u6b62"} +{"id": "2000261", "video_name": "28b4384f-ef2d-5f9d-a1d4-4b3b4bb438f1", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u8302\u5bc6\u7684\u68ee\u6797\u91cc\uff0c\u8eab\u7a7f\u730e\u4eba\u670d\uff0c\u624b\u6301\u957f\u77db\u3002\u6811\u53f6\u5728\u98ce\u4e2d\u6c99\u6c99\u4f5c\u54cd\uff0c\u9633"} +{"id": "2000262", "video_name": "feeb9166-dc9f-58ce-9c49-70d815fa040f", "text": "\u4e00\u540d\u5341\u516d\u5c81\u7684\u5b69\u5b50\u5728\u665a\u4e0a\u9a91\u7740\u8d85\u7ea773 RX\u548c\u5176\u4ed6\u4eba\u4e00\u8d77\u9a91Surron\uff0c\u8fd9\u4e2a\u5b69\u5b50\u548c\u4e00\u4e2a\u975e\u5e38\u6f02\u4eae\u7684\u5973"} +{"id": "2000263", "video_name": "4f9f5796-6442-58bd-b437-307d967b6697", "text": "\u628a\u8336\u58f6\u91cc\u7684\u8336\u5012\u8fdb\u65c1\u8fb9\u7684\u676f\u5b50\u91cc\u3002"} +{"id": "2000264", "video_name": "9d087974-da81-5305-8f6d-0d391676fe19", "text": "\u4e00\u4e2a\u7a7f\u7740\u592a\u7a7a\u670d\u7684\u72d7\u5728\u592a\u7a7a\u4e2d\u8bd5\u56fe\u6293\u4f4f\u4e00\u6839\u9aa8\u5934\u3002"} +{"id": "2000265", "video_name": "b9949fa1-49a2-5073-b3ef-593cf78231d1", "text": "\u51b0\u5c9b\u96ea\u5c71\u7684\u7a7a\u62cd\u955c\u5934"} +{"id": "2000266", "video_name": "ec63a461-d331-5a6f-8c97-e8cf2d2b515d", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u753b\u4f5c\uff0c\u63cf\u7ed8\u7740\u8eab\u7740\u82ad\u857e\u821e\u6f14\u5458\u670d\u88c5\u7684\u5973\u6027\u5728\u4f26\u6566\u4e00\u6761\u9e45\u5375\u77f3\u8857"} +{"id": "2000267", "video_name": "612cfbd5-5042-51fd-9b57-04a5a35343e1", "text": "\u4e00\u53ea\u5c0f\u5154\u5b50\u5728\u6811\u6797\u91cc\u548c\u4e00\u53ea\u5c0f\u72d0\u72f8\u73a9\u800d\u3002"} +{"id": "2000268", "video_name": "f20c89d7-adea-53c9-a3ca-1f3193f99ee5", "text": "\u730e\u624b\u8230\u5728\u6218\u6597\u8fdb\u884c\u7684\u661f\u7403\u4e0a\u76d8\u65cb\u3002"} +{"id": "2000269", "video_name": "df6026f3-4829-591b-9f0e-6f65bc7f5535", "text": "\u5728\u4e00\u4e2a\u50cf\u7d20\u6050\u6016\u6545\u4e8b\u7684\u89c6\u9891\u6e38\u620f\u4e2d\uff0c\u4ee5\u50cf\u7d20\u4eba\u4e3a\u73a9\u5bb6\u76844\u4e2a\u52a8\u6001\u56fe\u50cf\u4e2d\uff0c\u770b\u5230\u72fc\u4eba\u5411\u4ed6\u8d70\u6765\uff0c\u5728\u6050"} +{"id": "2000270", "video_name": "8e12bd08-c239-5d67-8551-b1c51d0a3bc8", "text": "\u4e00\u500b\u5167\u90e8\u5e36\u6709\u7194\u5316\u8d77\u53f8\u7684\u6f22\u5821\u3002\u8996\u89d2\u5fc5\u9808\u9760\u8fd1\u6b23\u8cde\u5e36\u6709\u7159\u718f\u5473\u7684\u8089\u3002"} +{"id": "2000271", "video_name": "c4fb7d3a-9b98-5bfb-a4f5-1b40fd3f74a3", "text": "\u53ef\u7231\u7684\u534a\u9f99\u4eba\u5728\u7f8e\u4e3d\u7684\u9ed1\u6697\u7ae5\u8bdd\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "2000272", "video_name": "49709c75-d746-5dbe-8a4d-889b5162ea93", "text": "\u4e24\u53ea\u767d\u9e64\u5404\u7ad9\u5728\u68cd\u5b50\u4e00\u4fa7\uff0c\u800c\u4e4c\u9f9f\u5219\u54ac\u4f4f\u4e86\u68cd\u5b50\u7684\u4e2d\u95f4\u3002\u767d\u9e64\u5f15\u9886\u7740\u4e4c"} +{"id": "2000273", "video_name": "97962ccd-9c9f-58cb-9f3b-5d2365d03b22", "text": "\u4eba\u5854\u8868\u6f14\u8005\u62b1\u7740\u7b11\u5bb9\u6ee1\u9762\u7684\u5e78\u798f\u7537\u5b50\uff0c\u5468\u56f4\u4eba\u7fa4\u4e89\u76f8\u6478\u4ed6\uff0c\u573a\u9762\u8d85\u73b0\u5b9e\uff0c\u5f53\u4ee3\u827a\u672f\uff0c"} +{"id": "2000274", "video_name": "51d2437f-b178-5b30-b1c4-aaa4cada231e", "text": "\u6211\u7684\u5185\u5fc3\u5c0f\u5b69\u5411\u6211\u62b1\u6028\uff0c\u56e0\u4e3a\u6211\u8ba9\u4ed6\u7684\u68a6\u60f3\u88ab\u9057\u5fd8\u4e86\u3002 \n\nSource sentence: The best way to predict your future is to create it. \n\n"} +{"id": "2000275", "video_name": "ee56323e-a9ee-5c8a-8e97-c8e573d19bfa", "text": "\u5f00\u7740\u5e7c\u513f\u56ed\u5df4\u58eb\uff0c\u5b69\u5b50\u4eec\u6b22\u5feb\u5730\u5750\u5728\u8f66\u4e0a\uff0c\u5531\u7740\u6b4c\u3002"} +{"id": "2000276", "video_name": "9cc955a6-1ccf-5333-9a16-4306898e4454", "text": "\u5728\u706b\u661f\u51fa\u751f\u7684\u4eba\u2026\u8fd9\u662f\u5426\u4f7f\u4ed6\u4eec\u6210\u4e3a\u5916\u661f\u4eba\uff1f"} +{"id": "2000277", "video_name": "aa66f78f-1fc0-5805-86a4-a882bf2b4761", "text": "UFO\u5728\u82f1\u56fd\u8857\u4e0a\u98d8\u6d6e\u3002\n\nSource sentence: I am learning Chinese language."} +{"id": "2000278", "video_name": "7bb4931a-6541-5b2f-ae47-4b8f542977df", "text": "\u51ac\u5b63\u9f99\u5377\u98ce\u3001\u96ea\u9f99\u5377\u98ce\u3001\u66b4\u98ce\u96ea\u3001\u9634\u5929\u3001\u5bd2\u51b7\u3002"} +{"id": "2000279", "video_name": "a71a6b0a-bab6-5713-951a-38042e2047c5", "text": "\u98d8\u9038\u7684\u3001\u8272\u5f69\u4e30\u5bcc\u7684\u80cc\u666f\uff0c\u6f2b\u753b\u7075\u611f\uff0c\u5bab\u5d0e\u9a8f\u3002"} +{"id": "2000280", "video_name": "711e743a-d72c-5d37-9219-1088dce36ee2", "text": "30 \u79d2\u52b1\u5fd7\u540d\u8a00\uff0c\u642d\u914d\u81ea\u7136\u80cc\u666f\u30029:16\u6bd4\u4f8b\u3002"} +{"id": "2000281", "video_name": "a4b7e59e-0453-5ab5-9204-3ad6a13f87c9", "text": "\u4e24\u4e2a\u5b69\u5b50\u5728\u9633\u5149\u660e\u5a9a\u7684\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u5448\u6cb9\u753b\u98ce\u683c\u3002"} +{"id": "2000282", "video_name": "b421c6ef-c2cb-59af-a8bc-f14ecc8266cc", "text": "\u4eba\u4eec\u76f8\u4e92\u4ea4\u8c08\u3001\u7b11\u7740\u5e76\u76f8\u4e92\u6ce8\u89c6\uff0c\u706b\u5149\u95ea\u70c1\u3002"} +{"id": "2000283", "video_name": "8c11642b-132d-5a92-ab98-f5a4b5f76c03", "text": "\u4e50\u961f\u540d\u4e3aMANTIKOR\u7684\u97f3\u4e50\u89c6\u9891\u3002\u60f3\u770b\u5230\u4e00\u4e2a\u5e26\u7fc5\u8180\u7684Mantikor\uff0c\u7a7f\u8fc7\u4e91\u5c42\u5760\u843d\u3002"} +{"id": "2000284", "video_name": "30b4c886-55d7-5bb1-82df-8d5668322925", "text": "\u4e00\u5ea7\u9ad8\u8038\u5165\u4e91\u7684\u5de8\u5927\u73bb\u7483\u6469\u5929\u5927\u697c\u3002"} +{"id": "2000285", "video_name": "94eb37ff-c186-5b29-bb31-3328f029a893", "text": "\u767d\u7f8a\u5ea7\u661f\u5ea7\uff0c\u7f13\u6162\u5f62\u6210\uff0c\u706b\u7ea2\u8272\uff0c\u8fd0\u52a8\u4e2d\uff0c16\uff1a9\u3002"} +{"id": "2000286", "video_name": "7efd4b0d-0ff6-5a50-b9d6-7b26f15c470c", "text": "4\u4e2a\u5e74\u8f7b\u4eba\u4e3a\u4ed6\u4eec\u7684\u670d\u88c5\u54c1\u724c\u8d5a\u4e86\u5f88\u591a\u94b1\uff0c\u5e76\u5728\u7c73\u5170\u5e02\u4e2d\u5fc3\u5e86\u795d\u3002"} +{"id": "2000287", "video_name": "0a54dfd2-91aa-5c55-b42d-d3e3c76f4cb0", "text": "\u76f4\u8def\u4e0a\u6469\u6258\u8f66\u98de\u5feb\u5730\u524d\u8fdb\u3002"} +{"id": "2000288", "video_name": "440c6f11-08fe-5983-bc2c-baef0616a8e5", "text": "\u4eba\u7269\u8bbe\u8ba1\uff0c\u5916\u9aa8\u9abc\u673a\u5668\u4eba\u914d\u6709\u7f8e\u4e3d\u7684\u4eba\u7c7b\u9762\u5b54\u51dd\u89c6\u7740\u76f8\u673a\uff0c\u771f\u5b9e\u611f\u76848K\u753b\u8d28\uff0c\u4ee4\u4eba\u4e0d\u5b89\u7684\u4f53"} +{"id": "2000289", "video_name": "6dadc5ba-98e4-5f16-aa52-9ddc15e84dd5", "text": "\u624b\u62ff\u7740\u4e00\u5f20\u6709\u5b9d\u85cf\u7ebf\u7d22\u548c\u5730\u56fe\u7684\u53e4\u8001\u7eb8\u5f20\u3002"} +{"id": "2000290", "video_name": "b2e674e7-ee16-5cd6-9ff0-52292d099313", "text": "\u5e03\u9c81\u65af\u00b7\u674e\u7684\u52a8\u4f5c\uff0c\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "2000291", "video_name": "dd4f3f39-eff8-57e3-a444-0033a72fc560", "text": "\u5c55\u793a\u79cd\u5b50\u4ece\u4fa7\u9762\u5f00\u59cb\u53d1\u82bd\uff0c\u968f\u7740\u6444\u50cf\u673a\u89d2\u5ea6\u7684\u6539\u53d8\u6765\u5f3a\u8c03\u5fae\u5c0f\u5ae9\u82bd\u5411\u4e0a\u751f\u957f\u3002"} +{"id": "2000292", "video_name": "dadfcd0e-092e-59b2-9952-d4799bf6f79d", "text": "\u5f88\u591a\u7f8e\u5143\u4ece\u5929\u7a7a\u6389\u843d\u5728\u4e00\u4e2a\u7a7f\u7740\u6734\u7d20\u8863\u670d\u7684\u7a77\u4eba\u8eab\u4e0a\u3002"} +{"id": "2000293", "video_name": "199bedaf-9e49-54a7-96d0-5760d614d2bc", "text": "\u9a91\u58eb\u4eec\u7a7f\u6234\u7740\u706b\u7ea2\u3001\u6df1\u84dd\u548c\u9ec4\u8272\u7684\u76d4\u7532\u3002\u7535\u5f71\u822c\u7684 16:9\u3002"} +{"id": "2000294", "video_name": "9e62b648-f9ed-57ac-b29f-52d829d3c4e4", "text": "\u673a\u5668\u4eba\u79d1\u5b66\u5bb6\u5728\u7535\u8111\u4e0a\u917f\u9020\u5564\u9152\u3002"} +{"id": "2000295", "video_name": "e57ddb7b-b637-5286-b200-3c730ebd2a43", "text": "\u5728\u65f6\u4ee3\u5e7f\u573a\u4e0a\u7ad9\u7740\u4e00\u4e2a\u5916\u661f\u4eba\u3002\u4f7f\u7528Nikon D850\u76f8\u673a\u62cd\u6444\uff0c\u4ee52\u500d\u53d8\u7126\u62cd\u6444\uff0c\u63d0\u4f9b\u5e7f\u9614\u7684\u89c6\u89d2\u3002\u52a8\u6001\u62cd"} +{"id": "2000296", "video_name": "294d1d3f-b37c-56d8-bfc4-1c3fcbc1f1b6", "text": "\u4e00\u90e8\u5728\u6708\u5149\u4e0b\u7684\u7535\u5f71\u52a8\u753b\uff0c\u4e00\u53ea\u667a\u6167\u7684\u8001\u732b\u5934\u9e70\u6816\u606f\u5728\u6811\u679d\u4e0a\uff0c\u5b83\u7684\u7fbd\u6bdb\u88ab\u98ce"} +{"id": "2000297", "video_name": "861a468b-154e-51eb-9d6b-d2445c39168c", "text": "\u7f50\u5b50\u91cc\u6709\u871c\u8702\u7684\u8702\u871c\uff0c\u57fa\u672c\u4e0a\u662f\u793e\u4ea4\u5a92\u4f53\u6d77\u62a5\u4e0a\u9500\u552e\u8702\u871c\u7684\u3002"} +{"id": "2000298", "video_name": "fa0f1152-e0d7-553b-bdfc-fd48ad5619c3", "text": "\u673a\u5668\u624b\u81c2\u6b63\u5728\u5bf9AI\u82af\u7247\u8fdb\u884c\u6280\u672f\u6539\u8fdb\uff0c\u7136\u540e\u82af\u7247\u5b9a\u4f4d\u5e94\u7528\u7a0b\u5e8f\u4ee5\u63ed\u793a\u65e5\u671f\u3002"} +{"id": "2000299", "video_name": "67a0cde4-381c-5ca6-8f7f-4b516ae15ef5", "text": "\u4e00\u5ea7\u5c71\u95f4\u4e91\u96fe\u7f2d\u7ed5\u7684\u6e56\uff0c\u76f8\u673a\u7f29\u653e\u89c6\u89d2\u3002\u4fe1\u606f\uff1aUCAB\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000300", "video_name": "a5bc9d5d-531d-5308-8e6b-74c069e427b9", "text": "\u4e2d\u56fd\u957f\u57ce\u7684\u666f\u89c2\uff0c\u7531\u9a6c\u6743\u5236\u4f5c\u7684\u8be6\u7ec6\u7684\u54d1\u5149\u7ed8\u753b\uff0c\u5feb\u7167\u5927\u8d5b\u83b7\u5956\u8005\uff0c\u514b\u6d1b\u74f7\u4e3b\u4e49\uff0c"} +{"id": "2000301", "video_name": "0f451a87-d3f3-50f9-95c4-ad047d57d14f", "text": "\u672a\u6765\u611f\u5341\u8db3\u7684\u5e26\u5c4f\u5e55\u8033\u673a\u56fe\u7247\u3002"} +{"id": "2000302", "video_name": "e1fd52a3-4d7e-556e-9eeb-4cf9a0b2f585", "text": "\u6770\u4f0a\u548c\u6c89\u9ed8\u9c8d\u52c3\u5728\u4e00\u4e2a\u5145\u6ee1\u70df\u96fe\u548c\u6b4c\u5973\u7684\u623f\u95f4\u91cc\u8df3\u821e\u3002"} +{"id": "2000303", "video_name": "fac3694d-f45f-52e9-a1f5-eb6a6bcb2cb8", "text": "\u94b1\u50cf\u6c34\u4e00\u6837\u6e90\u6e90\u4e0d\u65ad\u5730\u6d41\u5411\u6211\u3002"} +{"id": "2000304", "video_name": "0f9e8f73-5e19-5aa3-8054-2ce4334126e9", "text": "\u60f3\u8c61\u4e00\u8258\u6b63\u5728\u4e0b\u6c89\u7684\u8239\u3002\u8239\u4e0a\u6bcf\u4e2a\u4eba\u90fd\u5f00\u59cb\u5de6\u53f3\u5954\u8dd1\uff0c\u6050\u614c\u7684\u60c5\u51b5\uff0c\u9ed1\u591c\uff0c\u5927\u6d77\u4e2d\u592e\u3002"} +{"id": "2000305", "video_name": "25e04dd3-f3d0-5924-b3bc-4731b2aaa599", "text": "\u6bd4\u8d5b\u5f00\u59cb\u65f6\u5154\u5b50\u9886\u5148\u51b2\u523a\u3002"} +{"id": "2000306", "video_name": "14e65d71-4b17-5753-ae72-b1f5519ca767", "text": "\u4f20\u8fbe\u4ed6\u4eec\u7a7f\u8fc7\u95e8\u6237\u8fd4\u56de\u68ee\u6797\u7684\u65f6\u523b\u3002"} +{"id": "2000307", "video_name": "d387236c-dd04-50c0-a8c0-ad59af4e272b", "text": "\u534a\u4e2a\u6c34\u6bcd\u534a\u4e2a\u82b1\u5728\u6d77\u85fb\u7684\u6c34\u4e0b\u68ee\u6797\u91cc\u3002"} +{"id": "2000308", "video_name": "ad49b3df-39ab-5650-a959-370acc185a8c", "text": "\u82cf\u8054\u65f6\u4ee3\u7684\u300a\u6c34\u5154\u8bb0\u300b\u771f\u4eba\u7248\u3002\u5854\u53ef\u592b\u65af\u57fa\u98ce\u683c\u300260\u79d2\u957f\u3002"} +{"id": "2000309", "video_name": "4df53c42-42b0-572e-821f-4b2d7dc2cb30", "text": "\u5916\u661f\u98de\u8239\u5728\u57ce\u5e02\u4e0a\u7a7a\u7684\u4e91\u5c42\u4e2d\uff0c\u6781\u5176\u590d\u6742\uff0c\u662f\u4e00\u4ef6\u6770\u4f5c\uff0c4k\uff0c\u539f\u59cb\u56fe\u50cf\u3002"} +{"id": "2000310", "video_name": "0203b951-1e46-5af2-949b-85c41b506f9a", "text": "\u4e00\u8f6e\u660e\u6708\u548c\u7e41\u661f\uff0c\u8c61\u5f81\u7740\u591c\u665a\u7684\u5b81\u9759\u3002"} +{"id": "2000311", "video_name": "b67743c7-1bf8-5174-a982-65a40d512a33", "text": "\u5723\u8bde\u5feb\u4e50\uff0c\u573a\u666f\u91cc\u5e94\u8be5\u6709\u4e00\u68f5\u5723\u8bde\u6811\u3001\u793c\u7269\u3001\u8721\u70db\u548c\u4e00\u4e2a\u955c\u5934\u626b\u63cf\u3002"} +{"id": "2000312", "video_name": "5aea366e-822c-585b-a9f4-044cdf2cc657", "text": "\u538b\u788e\u7684\u751f\u65e5\u86cb\u7cd5\u3002\u4fe1\u606f\uff1a\u4e0d\u8981\u541e\u54bd\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2000313", "video_name": "4d86f5a4-4010-5ae5-8f5f-bd00a0295d13", "text": "\u54c8\u5229\u00b7\u6ce2\u7279\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u70b9\u4eae\u4e86\u4e00\u76cf\u706f\u6ce1\u3002"} +{"id": "2000314", "video_name": "1a5dc237-75a1-59a2-8bf1-d874352c0d8c", "text": "\u4e54\u4e1d\u7433\u00b7\u8d6b\u5357\u5fb7\u65af\u5c55\u73b0\u4e86\u903c\u771f\u7684\u8eab\u4f53\u7279\u5f81\u548c\u6162\u52a8\u4f5c\u7684\u6e05\u6670\u8fd0\u52a8\uff0c\u5728\u8131\u8863\u821e\u6746\u4e0a\u5c55"} +{"id": "2000315", "video_name": "66159bef-eb76-5776-b14e-5ea8d0832ca2", "text": "\u7279\u5199\u955c\u5934\uff0c\u76f8\u673a\u6f5c\u5165\u6d77\u6d0b\uff0c\u7535\u5f71\u822c\u76848K\u8d85\u903c\u771f\u3002"} +{"id": "2000316", "video_name": "7596b9fd-d854-5dad-ac50-4f6ee682e235", "text": "\u5feb\u901f\u5954\u8dd1\u7a7f\u8d8a\u50f5\u5c38\u6cf0\u8fea\u718a\u542f\u793a\u5f55"} +{"id": "2000317", "video_name": "34a2331f-f9b5-56aa-829d-2f63a32dae95", "text": "\u8f66\u8f86\u5728\u591c\u665a\u53d1\u751f\u78b0\u649e\uff0c\u98de\u8dc3\u8fc7\u9ad8\u901f\u516c\u8def\u4e0a\u7684\u5176\u4ed6\u8f66\u8f86\uff0c\u6700\u7ec8\u843d\u5230\u5730\u9762\u4e0a\u3002"} +{"id": "2000318", "video_name": "4e3a0ff4-d526-53b4-b795-a44300bd4ab3", "text": "\u8bf7\u7ed9\u6211\u505a\u4e00\u5f20\u7167\u7247\uff0c\u4e0a\u9762\u6709\u8def\u897f\u6cd5\u548c\u62e5\u6709\u52a8\u6001\u773c\u775b\u7684\u5929\u4f7f\u3002"} +{"id": "2000319", "video_name": "d44ee80d-bebc-5122-b33b-83d84c0f5c99", "text": "\u9752\u6a58\u6811\u7684\u4e00\u679d\u4ece\u82bd\u4e2d\u5f00\u51fa\u4e86\u53f6\u5b50\u548c\u82b1\u3002 \n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u732b\u6b63\u5728\u7a97\u53f0\u4e0a\u7761"} +{"id": "2000320", "video_name": "64018aea-3a38-59c1-924f-24ed738c9dd3", "text": "\u52a8\u753b\u5316\u8fd9\u662f\u7535\u5f71\u300a\u5f02\u5f62\u300b\u7684\u4e00\u5f20\u9759\u6001\u753b\u9762\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000321", "video_name": "300af196-fca5-566d-b861-beaeaf13b320", "text": "\u5feb\u901f\u7684\u98ce\u666f\u7535\u5feb\u901f\u768455\u79d2\u949f"} +{"id": "2000322", "video_name": "f5e41cf9-045e-5faa-bcbd-fb32bd85a12e", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u7528Excel\u5236\u4f5c\u7535\u5b50\u8868\u683c\u3002"} +{"id": "2000323", "video_name": "0f7f82a4-0d0f-57d2-bb5e-cc07cd707128", "text": "\u4e00\u4e2a\u7537\u4eba\u7528\u7092\u9505\u70f9\u996a\u3002"} +{"id": "2000324", "video_name": "26d0537c-29ad-5038-a5da-d0430522238a", "text": "\u7ef4\u4eac\u4eba\u4e3e\u884c\u76db\u5bb4\u7684\u7535\u5f71\u822c\u6784\u56fe\uff0c\u8be6\u7ec6\u7684\u8f9b\u70f7\u6e32\u67d3\uff0c\u7ef4\u4eac\u4eba\u8fdb\u9910\u7684\u9ed1\u6697\u7535\u5f71\u822c"} +{"id": "2000325", "video_name": "ee37bd48-dd0d-5811-a250-ba631589cfa6", "text": "\u6d1b\u5fb7\u00b7\u62c9\u59c6\u56de\u5bb6\u4e86\uff0c\u8d70\u8fdb\u5bfa\u5e99\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u4e0e\u97e9\u7eb3\u66fc\u795e\u4e00\u8d77\uff0c\u4eba\u7fa4\u6b22\u5e86\uff0c\u5b9b\u5982"} +{"id": "2000326", "video_name": "17cde07f-8b2d-5ca2-9c7f-015b5b9f1fa8", "text": "\u4e00\u7fa4\u5e74\u8f7b\u7f8e\u4e3d\u7684\u7537\u5973\u6b4c\u624b\uff0c\u773c\u775b\u5927\u3001\u76ae\u80a4\u5149\u6ed1\u3001\u8eab\u6750\u666e\u901a\uff0c\u6ca1\u6709\u53ef\u6015\u7684\u9762\u5b54\uff0c\u5728\u9999"} +{"id": "2000327", "video_name": "ae8e52c4-a497-588a-8a19-a62660d1d61c", "text": "\u7528\u7231\u548c\u6069\u5178\u6cbb\u6108\u8fd9\u4e2a\u4e16\u754c\uff0c\u64e6\u53bb\u6cea\u6c34\u3002"} +{"id": "2000328", "video_name": "4d4cf999-386a-59c3-ae48-2afa3edb163a", "text": "\u7fc5\u8180\u7684\u8fd0\u52a8\u50cf\u98de\u884c\u7684\u7fc5\u8180\uff0c\u8774\u8776\u5448\u952f\u9f7f\u72b6\u8fd0\u52a8\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000329", "video_name": "ccdde665-5533-5cb2-ad10-8b0d99c9bc10", "text": "\u4e00\u4e2a\u7537\u4eba\u88ab\u8001\u9e70\u6293\u8d70\u4e86\u3002"} +{"id": "2000330", "video_name": "1a27b787-7ff2-5336-bf23-2b06b528ad1f", "text": "\u4e00\u4e2a\u6ce2\u5170\u4eba\u6b63\u5728\u534e\u6c99\u6e38\u884c\u3002"} +{"id": "2000331", "video_name": "3ec113ca-6a59-578e-8533-391d7540da33", "text": "\u8499\u773c\u5531\u6447\u6eda\u97f3\u4e50\u7684\u4eba\u9ad8\u58f0\u5531\u6b4c\u3002"} +{"id": "2000332", "video_name": "eb84b5e0-7807-56cd-a46b-51131a83d049", "text": "\u52c7\u6562\u7684\u63a2\u9669\u5bb6\u548c\u7814\u7a76\u4eba\u5458\u56e2\u961f"} +{"id": "2000333", "video_name": "29bdbe45-c628-5cef-bfa6-ecd61258bb44", "text": "\u8fd9\u4efd\u793c\u7269\u5728\u4ed6\u5bb6\u65cf\u4e2d\u4ee3\u4ee3\u76f8\u4f20\u3002"} +{"id": "2000334", "video_name": "0cb1957f-684e-564b-b00e-d0ec3bb5140a", "text": "\u6211\u5728\u6708\u7403\u4e0a\u9047\u5230\u4e86\u4e00\u4e2a\u5356\u4e1c\u897f\u7684\u5973\u5b69\u3002"} +{"id": "2000335", "video_name": "f40a7764-02a1-5240-b74a-96c8bfba99ca", "text": "\u4e00\u4e2a30\u79d2\u7684\u5782\u76f4\u77ed\u89c6\u9891\u5c55\u793a\u7535\u5b50\u97f3\u4e50\u8282\u4e0a\u4eba\u7fa4\u8df3\u821e\u7684\u573a\u666f\u3002"} +{"id": "2000336", "video_name": "1b2ecab5-d828-5a8d-b566-ecd7c5a112e2", "text": "\u4e24\u5f20\u9762\u5b54\u7684\u753b\u50cf\u5728\u7f13\u6162\u5730\u878d\u5408\u6210\u4e3a\u4e00\u5f20\uff0c\u4ee3\u8868\u7740\u81ea\u6211\u548c\u4ed6\u8005\u4e4b\u95f4\u754c\u9650\u7684\u6a21\u7cca\u3002"} +{"id": "2000337", "video_name": "3249ce24-a533-5e74-8646-bc36999a78ff", "text": "\u4e00\u5e45\u4ee4\u4eba\u60f3\u8d77\u5929\u5802\u7684\u666f\u8c61\uff0c\u7ea2\u8272\u6781\u5149\u5728\u5929\u7a7a\u4e2d\u5feb\u901f\u79fb\u52a8\uff0c\u6620\u5c04\u5728\u6e05\u6f88\u767d\u8272\u6c34\u9762\u4e0a\uff0c\u573a"} +{"id": "2000338", "video_name": "f067b3e2-72d1-5512-a740-bd9ef4dcab02", "text": "\u52a8\u7269\u738b\u56fd\u91cc\u6709\u68ee\u6797\u4e2d\u7684\u4e0d\u540c\u52a8\u7269\u3002"} +{"id": "2000339", "video_name": "38d46dea-e4ed-55fd-a36c-6ff500dbedbc", "text": "\u8bb8\u591a\u9e1f\u513f\u98de\u5411\u5730\u5e73\u7ebf\u3002"} +{"id": "2000340", "video_name": "4abb077a-fcea-5f15-a32f-1085f357cb8b", "text": "\u9ed1\u6697\u57ce\u5e02\u4e2d\u6709\u4e00\u5ea7\u72ee\u5b50\u5ea7\uff0c\n\u800c\u57ce\u5e02\u5374\u975e\u5e38\u660e\u4eae\u3002"} +{"id": "2000341", "video_name": "2db6b276-1239-5251-8153-f5ae74eb1b4b", "text": "\u4e00\u4f4d\u978b\u5e97\u7684\u978b\u5b50\u9500\u552e\u5458\u3002"} +{"id": "2000342", "video_name": "336ae5db-d1cb-59f0-9b5e-c47b83e9a477", "text": "\u4e00\u4e2a\u5973\u5b69\u68a6\u60f3\u6210\u4e3a\u4e00\u540d\u821e\u8005\u3002\n\nSource sentence: I have a cat named Whiskers. \n\n\u6211\u6709\u4e00\u53ea\u540d\u53ebWhiskers\u7684\u732b\u3002"} +{"id": "2000343", "video_name": "12106830-91cb-5957-b5f8-2018b51518f1", "text": "\u5728\u5893\u5730\u91cc\u6709\u4e00\u4e2a\u5145\u6ee1\u6000\u65e7\u6050\u6016\u7535\u5f71\u7f8e\u5b66\u7684\u53ef\u6015\u9b3c\u9b42\uff0c\u662f\u53d7\u300a\u66f4\u591a\u6050\u6016\u6545\u4e8b\u300b\u4e66"} +{"id": "2000344", "video_name": "dcb488c6-142c-53d1-abc4-d7d8e73f4376", "text": "\u4e00\u4e2a\u6ee1\u662f\u6838\u6843\u6811\u7684\u5927\u82b1\u56ed\u3002"} +{"id": "2000345", "video_name": "a12e267c-a24c-5da5-a071-39235518f9a4", "text": "\u77ed\u89c6\u9891\uff0c\u5361\u901a\u98ce\u683c\uff0c\u4ece\u4fa7\u9762\u548c\u4e0a\u65b9\u89c2\u5bdf\uff0c\u4e1b\u6797\u4e2d\u6709\u4e00\u4e2a\u5c0f\u5706\u6e56\uff0c\u670910\u53ea\u4f4f\u5728\u90a3\u91cc\u7684\u5c0f\u9752"} +{"id": "2000346", "video_name": "e6a78c27-fd69-5b4a-8a1e-bde8c31f962d", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u6df7\u8840\u5973\u5b69\u76f4\u89c6\u6444\u50cf\u673a\uff0c\u7728\u7728\u773c\u775b\uff0c\u9ad8\u6e05\u3002"} +{"id": "2000347", "video_name": "bf5b59ad-fd22-56fd-9244-ddbba611bc11", "text": "\u51b0\u6cb3\u4e16\u7eaa\uff0c\u6ca1\u6709\u4efb\u4f55\u751f\u547d\uff0c\u903c\u771f\u3002"} +{"id": "2000348", "video_name": "2f20fcfe-7f66-5ccd-985b-f39986cb56c0", "text": "\u88ab\u6551\u51fa\u6765\u7684\u5c0f\u732b\u8bd5\u56fe\u9003\u79bb\u4eba\u7684\u624b\u3002"} +{"id": "2000349", "video_name": "1085a767-97c0-5651-9bdc-40fe7feb38f2", "text": "\u6d1b\u592b\u514b\u62c9\u592b\u7684\u602a\u7269\u6f2b\u6e38\u5728\u5730\u7403\u548c\u5929\u7a7a\u4e4b\u95f4\u3002"} +{"id": "2000350", "video_name": "6b13901a-1b49-55f0-bdc5-0760e9ae1fe8", "text": "\u4e00\u53f0\u5fae\u7b11\u7684\u5973\u6027AI\u673a\u5668\u4eba\u6b63\u5728\u7e41\u5fd9\u7684\u672a\u6765\u547c\u53eb\u4e2d\u5fc3\u5de5\u4f5c\u3002\u80cc\u666f\u4e2d\u6709\u5176\u4ed6\u673a\u5668\u4eba\u548c\u9ad8\u79d1\u6280\u5c0f\u5de5\u5177\u3002\u9ad8\u5ea6\u8be6"} +{"id": "2000351", "video_name": "e793c16f-f8e0-5fec-9860-c3b5762f26da", "text": "\u4e00\u4f4d\u9b45\u529b\u5341\u8db3\u3001\u767d\u53d1\u62ab\u80a9\u3001\u7a7f\u7740\u767d\u8272\u6597\u7bf7\u7684\u5973\u6027\u7ad9\u5728\u4e00\u4e2a\u5927\u7a7a\u4ed3\u5e93\u5185\uff0c\u7535\u5f71\u822c\u7684\u706f"} +{"id": "2000352", "video_name": "6b2babb6-f2a2-5a28-a791-b9502209750a", "text": "\u4e00\u5f20\u53e4\u8001\u7684\u5019\u9009\u7167\u7247\uff0c\u62cd\u6444\u4e86\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u60ac\u5d16\u8fb9\u4fef\u77b0\u6d77\u6d0b\u7684\u827a\u672f\u98ce\u683c\u3002"} +{"id": "2000353", "video_name": "799e87c0-378d-5f96-831d-b61f7a3fb024", "text": "\u5b89\u8fea\u00b7\u6c83\u970d\u5c14\u98ce\u683c\uff0c\u5c55\u73b0\u6234\u5047\u776b\u6bdb\u7684\u4eba\u7c7b\u3002"} +{"id": "2000354", "video_name": "e4464a49-e130-5ccd-99c2-a99a871ed1d9", "text": "\u5728\u7ea2\u8272\u6708\u4eae\u4e0b\u591c\u8dd1\u7684\u6b66\u58eb\u5728\u8857\u4e0a"} +{"id": "2000355", "video_name": "fbfe7ba0-e026-5817-9f88-5a01c3ea686a", "text": "\u5c0f\u514b\u91cc\u5e0c\u7eb3\u53bb\u627e\u5976\u725b\u548c\u5973\u5b69\u3002"} +{"id": "2000356", "video_name": "3e95f585-96fd-5cee-96d6-9049e5528746", "text": "\u5c55\u793a\u6109\u5feb\u7684\u6d77\u9f9f\u534f\u52a9\u5176\u4ed6\u9700\u8981\u7684\u6d77\u6d0b\u751f\u7269\uff0c\u5c55\u73b0\u56e2\u961f\u5408\u4f5c\u548c\u5584\u826f\u3002"} +{"id": "2000357", "video_name": "48a2538e-e1fc-5114-adf9-5f3ce04c4d5d", "text": "\u5e74\u8f7b\u5973\u5b50\u624b\u62ce\u624b\u63d0\u5305\u7ad9\u7acb\u3002\u7f8e\u4e3d\u7684\u9762\u5bb9\uff0c\u6234\u7740\u592a\u9633\u955c\uff0c\u9707\u60ca\u7684\u8868\u60c5\u3002"} +{"id": "2000358", "video_name": "1ef675f3-a7ac-5558-8606-d1860ae92901", "text": "\u52a8\u753b\u4eba\u7269\u5728\u591a\u5143\u5b87\u5b99\u4e2d\u88ab\u72d7\u8ffd\u8d76\uff0c\u8718\u86db\u4fa0\u4ece\u67aa\u4e2d\u5c04\u51fa\u5b50\u5f39\u3002"} +{"id": "2000359", "video_name": "6d82ece5-e992-51df-9af5-ec299d02f578", "text": "\u6765\u81ea\u5929\u5802\u7684\u7f8e\u4e3d\u5929\u4f7f\uff0c\u62e5\u6709\u84dd\u8272\u7684\u773c\u775b\u3001\u7fbd\u7ffc\u3001\u767d\u8272\u7684\u8863\u670d\u548c\u767d\u8272\u7684\u77ed\u9774\u3002\u4ed6"} +{"id": "2000360", "video_name": "9333e1c7-d974-54fb-b65f-52047215bd3a", "text": "Facebook\u5143\u5b87\u5b99\u3001\u661f\u9645\u670b\u514b\u3001Blender\u3001\u7eaa\u5b9e\u6444\u5f71\u3002"} +{"id": "2000361", "video_name": "546893b5-4887-5d75-ba08-2c4a0d069bcc", "text": "Source sentence: Siren Head, Alfred Stieglitz \u7684\u9ed1\u767d\u9897\u7c92\u72b6\u7167\u7247\uff0c\u62cd\u6444\u4e8e1900\u5e74\u4ee3\u3002\n\nSource sentence: The pandemic has caused a lot of economic hardship for many"} +{"id": "2000362", "video_name": "c5181ee1-b915-5249-ac9d-179761bf9504", "text": "\u4e00\u4e2a\u9ed1\u7ea2\u8272\u7684\u6d77\u9c9c\u76f2\u76d2\uff0c\u770b\u8d77\u6765\u795e\u79d8\u3002"} +{"id": "2000363", "video_name": "d5e0daae-b98b-5585-a561-0f241475f1f7", "text": "\u8857\u4e0a\u6709\u4e00\u500b\u975e\u5e38\u53ef\u611b\u7684\u8d8a\u5357\u5b30\u5152\u5728\u8d70\u8def\u3002\u6709\u71c8\u7c60\u3001\u82b1\u6735\u548c\u98c4\u843d\u7684\u96ea\u3002"} +{"id": "2000364", "video_name": "0cc99f2d-0391-57e2-9f7d-cd13dbb92756", "text": "\u8fea\u58eb\u5c3c\u516c\u9e21\u5728\u9ece\u660e\u65f6\u5206\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u5728\u519c\u573a\u4e0a\u53eb\u9192\u4ed6\u7684\u670b\u53cb\u4eec\u3002\u4ee5\u4e09\u7ef4\u6280\u672f"} +{"id": "2000365", "video_name": "a78a505e-f2f0-58e7-b7af-380147f86384", "text": "\u4e00\u53ea\u72d7\u6253\u51fa\u4e86345\u7801\u7684\u9ad8\u5c14\u592b\u7403\u3002"} +{"id": "2000366", "video_name": "86979b94-13da-56e1-813c-ca1e458e8951", "text": "\u5927\u5ce1\u8c37\u4e0a\u7a7a\u7684\u70ed\u6c14\u7403"} +{"id": "2000367", "video_name": "5baa59d1-91cf-5780-be57-95bcb2cc5a92", "text": "\u8001\u53e4\u8463\u52a0\u62ff\u5927\u56fd\u65d7\u98d8\u52a8\uff0c\u5168\u5c4f\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c8K\uff0c\u903c\u771f\u3002"} +{"id": "2000368", "video_name": "78ec66cf-6d6f-5122-b715-d4e033b7d60a", "text": "\u7f8e\u4e3d\u7684\u68d5\u8272\u9a6c\u5339\uff0c\u7a7f\u7740\u5723\u8bde\u82b1\u73af\u5728\u51ac\u5b63\u68ee\u6797\u4e2d\u5c0f\u8dd1\uff0c\u4f34\u968f\u7740\u843d\u96ea\u3002"} +{"id": "2000369", "video_name": "f9342903-8bef-5360-b525-0202c52f41ef", "text": "\u9ed1\u53d1\u5e74\u8f7b\u7537\u5b50\u5728\u7a7a\u4e2d\u7684\u8f66\u7ad9\u4e0a\u8d70\u7740\uff0c\u5468\u56f4\u6709\u8bb8\u591a\u4e91\u5f69\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000370", "video_name": "accb129b-3611-54a2-88e4-e5d45e2c81f9", "text": "\u8fd9\u4e2a\u5e74\u8f7b\u4eba\u53d1\u73b0\u81ea\u5df1\u7ad9\u5728\u4e00\u4e2a\u5145\u6ee1\u9e1f\u9e23\u58f0\u7684\u5e7f\u9614\u7530\u91ce\u4e2d\u3002"} +{"id": "2000371", "video_name": "f9e78d00-828b-5b01-abb8-69fbf1155323", "text": "\u6709\u4e00\u4e2a\u53eb\u8428\u7c73\u5c14\u7684\u5b69\u5b50\u548c\u4ed6\u7684\u7236\u6bcd\u3001\u5144\u5f1f\u59d0\u59b9\u4f4f\u5728\u4e00\u4e2a\u5b89\u9759\u7684\u793e\u533a\u3002"} +{"id": "2000372", "video_name": "4725fd1a-5f9f-5f14-8fc5-bbaf5511c0b7", "text": "\u8def\u98de\u4ece\u300a\u6d77\u8d3c\u738b\u300b\u53d8\u6210\u5409\u535c\u529b\u98ce\u683c"} +{"id": "2000373", "video_name": "9e80012d-94e9-5426-96c7-9d40289831ad", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u4ea7\u751f\u91d1\u5c5e\u8d28\u611f\uff0c\u6696\u8272\u706f\u5149\uff0cY\u8f74\u4e2d\u5fc3\u65cb\u8f6c\u7684\u56fe\u7247\uff0c\u53ef\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "2000374", "video_name": "6ba12921-43bf-53a8-b3b1-100f1a6f93ad", "text": "\u7eff\u8272\u88d9\u5b50\u7684\u7f8e\u4e3d\u5973\u5b69\u5728\u68ee\u6797\u91cc\u3002"} +{"id": "2000375", "video_name": "5c7820d2-6ce7-5983-9ed2-a08fde24b34a", "text": "\u955c\u5934\u7f29\u8fd1\u5230\u7537\u4eba\u7684\u773c\u775b\uff0c\u7136\u540e\u8fdb\u4e00\u6b65\u7f29\u8fdb\u773c\u4e2d\u7684\u8840\u7ba1\uff0c\u518d\u8fdb\u4e00\u6b65\u7f29\u8fdb\u8840\u7ba1\uff0c\u4ece\u65e0\u4eba\u673a\u7684\u89c6\u89d2\u53d8"} +{"id": "2000376", "video_name": "31dd54be-ec36-5cc5-86e4-1ae6f0eedc5c", "text": "\u7535\u5f71\u5f0f\u7684\u201c\u4ece\u524d\u4ece\u524d\uff0c\u8fdc\u8fdc\u7684\u56fd\u5ea6\u91cc\uff0c\u6709\u4e24\u4e2a\u5f3a\u5927\u5bf9\u624b\u4e4b\u95f4\u7684\u4f20\u5947\u51b2\u7a81\uff1a\u8428\u62c9\u4e01\u548c\u5df4\u5fb7\u52b3"} +{"id": "2000377", "video_name": "afc3e724-6002-5038-ab73-5b4beae20db5", "text": "\u5496\u5561\u4ee5\u6162\u52d5\u4f5c\u5012\u5165\u7c89\u7d05\u8272\u676f\u5b50\u4e2d\u3002"} +{"id": "2000378", "video_name": "1b834ade-2084-528e-a1e4-ec03f9c82488", "text": "\u4e00\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u5927\u7fa4\u4eba\u5728\u4e00\u6b21\u5927\u578b\u706b\u5c71\u7206\u53d1\u540e\u6df7\u4e71\u5730\u5954\u8dd1\u3002"} +{"id": "2000379", "video_name": "58dadee1-23bd-5385-a3b2-b16c351d422d", "text": "\u5728\u4e00\u5ea7\u8272\u5f69\u7f24\u7eb7\u7684\u82b1\u56ed\u91cc\uff0c\u4f4f\u7740\u4e00\u53ea\u597d\u5947\u7684\u6bdb\u6bdb\u866b\u5361\u897f\u3002\u63cf\u8ff0\u5361\u897f\u63a2\u7d22\u82b1\u56ed\uff0c\u5e76"} +{"id": "2000380", "video_name": "113c1120-0adb-54c4-94e8-eb814d3fd7d2", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5750\u5728\u6905\u5b50\u4e0a\u7684\u7eaa\u5ff5\u96d5\u50cf\u4e0a\u523b\u6709\u5b57\uff0c\u4e0a\u9762\u5199\u7740\uff1a\u201c\u5728\u8fd9\u5ea7\u6bbf\u5802\u91cc\uff0c"} +{"id": "2000381", "video_name": "8e041285-a19a-5986-a401-33f1761f5ef1", "text": "\u4e00\u5f20\u5145\u6ee1\u6781\u7b80\u80cc\u666f\u98ce\u683c\u7684\u82b1\u5349\u3001\u82b1\u74e3\u3001\u8272\u5f69\u6591\u6593\u7684\u9759\u7269\u3001\u51f8\u8d77\u7eb8\u5f20\u548c\u7cbe\u81f4"} +{"id": "2000382", "video_name": "ce0bfa00-5f61-5996-8646-028c610284d2", "text": "\u4e00\u53ea\u6b7b\u8682\u8681\uff0c\u5728\u548c\u5176\u4ed6\u8682\u8681\u6bd4\u8d5b\u4e2d\u8f93\u4e86\uff0c\u6444\u50cf\u673a\u4ee5\u7535\u5f71\u7684\u65b9\u5f0f\u7f29\u5c0f\u3002"} +{"id": "2000383", "video_name": "2f3e8f15-ef2f-550b-b3d2-1aac428049c9", "text": "\u4e00\u6761\u8def\uff0c\u5c0f\u5df7\uff0c\u4f26\u6566\uff0c\u508d\u665a\uff0c\u6709\u98ce\u7684\u5929\u6c14\u3002"} +{"id": "2000384", "video_name": "05aa0dc8-1ccb-5947-98a5-723f0d2e6cd2", "text": "\u8df3\u821e\uff0c\u98de\u884c 24 \u5e27\u6bcf\u79d2\uff0c\u7f29\u5c0f"} +{"id": "2000385", "video_name": "3d2967a5-4c54-5e8f-a330-f77881bceff5", "text": "\u4fc4\u4ea5\u4fc4\u885767\u53f7\u9009\u533a\u7684\u4e00\u53ea\u8df3\u821e\u7684\u732b"} +{"id": "2000386", "video_name": "74c9b8c3-ff78-507e-96c0-705c4a91deeb", "text": "\u6f2b\u6b65\u4e8e\u4e00\u5ea7\u88ab\u65f6\u95f4\u51bb\u7ed3\u7684\u4fdd\u5b58\u5b8c\u597d\u7684\u5c0f\u9547\u8857\u9053\u4e0a\uff0c\u90a3\u91cc\u505c\u7740\u590d\u53e4\u7684\u8f66\u8f86\u548c\u7a7f\u7740\u4f18\u96c5\u7684\u884c\u4eba"} +{"id": "2000387", "video_name": "c41cb98c-1497-5ba1-ab13-e4785267267d", "text": "\u4f26\u6566\u4eba\u4eec\u4ece\u5927\u672c\u949f\u6ed1\u5230\u6cf0\u6664\u58eb\u6cb3\u7684\u5927\u7c89\u8272\u5851\u6599\u6c14\u7403\u6ed1\u68af\u4e0a\u3002"} +{"id": "2000388", "video_name": "d9452978-e81f-557c-92b7-a84323318cd9", "text": "\u7a7a\u8361\u7684\u573a\u666f\uff0c\u7136\u540e\u4e9a\u5f53\u00b7\u5fb7\u8d56\u5f17\u51fa\u73b0\u5728\u4e0b\u4e00\u5e27\u3002"} +{"id": "2000389", "video_name": "fdb04d22-07e1-57a4-a105-0c0888bfbdfd", "text": "\u592a\u7a7a\u98de\u8239\u5728\u591c\u665a\u964d\u843d\u5e76\u649e\u4e0a\u4e86\u4e0a\u6d77\u7684\u4e00\u5ea7\u5927\u697c\uff0c\u7136\u540e\u7206\u70b8\u4e86\u3002\u8fd9\u662fGoPro\u76f8\u673a\u8bb0\u5f55\u7684\u753b\u9762"} +{"id": "2000390", "video_name": "2acd4248-55dd-5e1f-9024-c1dd56238dd1", "text": "\u5b69\u5b50\u5728\u7535\u8111\u4e0a\u5236\u9020\u65f6\u95f4\u673a\u5668\u3002 \n\nSource sentence: I'm going to the store to buy some milk and bread. \n\u6211\u53bb\u5546\u5e97\u4e70\u725b\u5976\u548c\u9762\u5305\u3002"} +{"id": "2000391", "video_name": "8eeeefe2-5303-5ec2-895d-394d73ded281", "text": "\u98ce\u5439\u8fc7\u8349\u5730"} +{"id": "2000392", "video_name": "779fb2f4-0f1d-56d6-9582-d265e816c2de", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728T\u53f0\u4e0a\u8d70\u8fc7\uff0c\u6444\u50cf\u673a\u95ea\u5149\u706f\u95ea\u70c1\uff0c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5728\u4eba"} +{"id": "2000393", "video_name": "a441129a-e2c3-5754-8b94-68eb33e90ffb", "text": "\u4e00\u6bb5\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u591c\u665a\u4e0b\u96e8\u65f6\u53ea\u6709\u4e00\u76cf\u8def\u706f\u7167\u4eae\u7684\u9053\u8def\u3002"} +{"id": "2000394", "video_name": "51f0acdd-4204-5c22-8fda-103ccdcf81f1", "text": "\u6838\u6843\u7684\u6ce5\u571f\u68d5\u8272\u5916\u58f3\u4e3a\u573a\u666f\u589e\u6dfb\u4e86\u4e00\u62b9\u81ea\u7136\u4e4b\u7f8e\u3002\u5b83\u8868\u9762\u7684\u88c2\u7f1d\u548c\u51f9\u9677\u8bb2\u8ff0\u4e86\u6210\u957f\u548c"} +{"id": "2000395", "video_name": "f4b2b789-6d1d-5c45-8298-a962dedae353", "text": "\u4e00\u4f4d\u8001\u5f97\u5f88\u7684\u5fb7\u514b\u8428\u65af\u5dde\u725b\u4ed4\u5750\u5728\u623f\u5b50\u7684\u95e8\u5eca\u4e0a\uff0c\u559d\u7740\u4e00\u74f6\u5564\u9152\uff0c\u4ed6\u628a"} +{"id": "2000396", "video_name": "f463f6a7-e586-513b-a71e-bf9ddd53700c", "text": "20\u4e16\u7eaa80\u5e74\u4ee3\u5728\u7ebd\u7ea6\u62cd\u6444\u7684\u4e00\u5f20\u5973\u4eba\u7728\u773c\u7684\u7167\u7247\uff0c\u5979\u6709\u4e00\u53cc\u84dd\u8272\u7684\u773c\u775b\u3002"} +{"id": "2000397", "video_name": "23f0b0a7-ee0b-52a6-8cd4-9b3a03478b81", "text": "\u5f53\u623f\u95f4\u91cc\u70df\u82b1\u7206\u70b8\u65f6\uff0c\u611f\u5230\u6050\u614c\u3002"} +{"id": "2000398", "video_name": "6320ab53-bd4b-55bc-9977-77a23aa7733b", "text": "\u5c0f\u7cbe\u7075\u9a91\u7740\u67ef\u57fa\u72ac\u5728\u68ee\u6797\u91cc\u75be\u9a70\u3002"} +{"id": "2000399", "video_name": "33a9e12d-620e-5530-b20b-d8fc0454fb61", "text": "\u8d85\u903c\u771f\u76844K\u56fe\u50cf\uff0c\u5c55\u73b0\u4e00\u4e2a\u672a\u6765\u57ce\u5e02\uff0c\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u5929\u7a7a\u4e2d\u6709\u98de\u884c\u6c7d\u8f66\uff0c\u5e74\u8f7b\u5973\u6027\u7a7f\u7740"} +{"id": "2000400", "video_name": "04376564-3d2f-5260-86f9-274d9034233b", "text": "\u89d2\u8272\uff1a\n\n\u4e00\u5bf9\u5e74\u8f7b\u7684\u592b\u5987\u8eba\u5728\u5e8a\u4e0a\uff0c\u95ed\u7740\u773c\u775b\uff0c\u51e0\u4e4e\u8981\u7761\u7740\u4e86\u3002\n\n\u52a8\u4f5c\uff1a\n\n\u4e00\u4f4d\u4f34\u4fa3"} +{"id": "2000401", "video_name": "6736b650-9d88-5456-b6be-b36b9cdf5740", "text": "\u6728\u513f\u662f\u4e2a\u4e1b\u6797\u7537\u5b69\uff0c\u63a2\u7d22\u8302\u5bc6\u68ee\u6797\u6df1\u5904\uff0c\u8361\u79cb\u5343\uff0c\u548c\u5404\u79cd\u751f\u7269\u4e92\u52a8\u3002\u718a\u548c"} +{"id": "2000402", "video_name": "2128265e-6209-53e5-bb8a-18169f6cbda7", "text": "\u660f\u6697\u7684\u533b\u9662\u8d70\u5eca\u573a\u666f\uff0c\u6b63\u9762\u671b\u53bb\uff0c\u9ed1\u6697\u800c\u602a\u5f02\uff0c\u5145\u6ee1\u6050\u60e7\u611f\uff0c\u6709\u5f88\u591a\u655e\u5f00\u7684\u95e8\uff0c\u4e00"} +{"id": "2000403", "video_name": "cabb5cdb-a18d-53b5-bfdf-a254b310b04b", "text": "\u6570\u4e07\u4ebf\u4e2a\u539f\u5b50\u4ee5\u5982\u6b64\u4e4b\u5feb\u7684\u901f\u5ea6\u8fd0\u52a8\uff0c\u91cf\u5b50\u89c6\u89d2\u3002"} +{"id": "2000404", "video_name": "aae2c77e-762f-5589-a624-ef0164dc4ed0", "text": "\u672a\u6765\u611f\u6bd4\u57fa\u5c3c\u5973\u5b50\u5728\u52a0\u5229\u798f\u5c3c\u4e9a\u5f92\u6b65\u65c5\u884c\u3002"} +{"id": "2000405", "video_name": "ec4ddc7b-7750-5e35-bc20-43a3b35206fb", "text": "\u8bed\u97f3\u52a9\u624b\u89e3\u91ca\u89c6\u9891\u4ecb\u7ecd\u3002"} +{"id": "2000406", "video_name": "a8bafc1e-729d-56f1-a54a-6e298820a5b6", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u732b\u5728\u5c4b\u5b50\u91cc\u548c\u91d1\u8272\u7684\u72d7\u73a9\u800d\u3002"} +{"id": "2000407", "video_name": "f74d77f5-9077-5bae-9244-4aa9d88adf85", "text": "\u5de6\u53f3\u8f6c\u5934"} +{"id": "2000408", "video_name": "726d7bdc-45a3-5feb-bb95-9709ee096e75", "text": "\u4e00\u53ea\u72fc\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u753b\u9762\u7f29\u5411\u5b83\uff0c\u5b83\u5411\u591c\u7a7a\u568e\u53eb\u3002\u8fd9\u4e2a\u753b\u9762\u5f88\u7f8e\u3002"} +{"id": "2000409", "video_name": "46db4bbc-fdcd-5458-ab60-74b5a6ef19b0", "text": "\u9a6c\uff0c\u88ab\u7a7f\u7740\u5916\u5957\u548c\u5e3d\u5b50\u7684\u7537\u4eba\u9a7e\u9a6d\u7684\u9a6c\u8f66\u548c\u88ab\u7a7f\u7740\u62ab\u98ce\u548c\u5e3d\u5b50\u7684\u5973\u4eba\u3002\u732b\uff0c"} +{"id": "2000410", "video_name": "c5cd03f9-0462-5b14-b3a6-9e4b0725c3c1", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8fea\u62dc\u4e00\u6761\u7e41\u534e\u7684\u8857\u9053\u4e0a\u8d70\u7740\uff0c\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u5728\u540e\u666f\u4e2d\u95ea\u95ea\u53d1\u5149\u3002\u4ed6\u7ecf\u8fc7\u9ad8\u8038\u7684"} +{"id": "2000411", "video_name": "14c9ee90-d6b1-5d6c-8167-0501e9543af2", "text": "\u4e00\u53ea\u7531\u706b\u7130\u6784\u6210\u7684\u5927\u9e1f\u5728\u591c\u7a7a\u4e2d\u98de\u7fd4\uff0c3D\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "2000412", "video_name": "2ba2121d-e483-51b8-8265-a59642beab6d", "text": "\u4e00\u4e2a\u732b\u5f62\u72b6\u7684\u7b80\u5355LOGO\uff0c\u53ef\u4ee5\u6a21\u4eff\u9ea6\u5f53\u52b3\u7684LOGO\u3002"} +{"id": "2000413", "video_name": "a7e1a709-3b3f-5cac-880f-1cb31b501969", "text": "\u4e2d\u4e16\u7eaa\u9152\u9986\u91cc\u6324\u6ee1\u4e86\u4eba\u4eec\uff0c\u8046\u542c\u7740\u4e00\u4f4d\u667a\u8005\u7684\u8bb2\u8bdd\u3002"} +{"id": "2000414", "video_name": "b9e722ad-01cc-57a2-b836-79874d79ac38", "text": "\u5b87\u822a\u5458\u4e0e\u5e03\u62c9\u5fb7\u00b7\u76ae\u7279\u4e00\u8d77\u5728\u6708\u7403\u4e0a\u884c\u8d70\u3002"} +{"id": "2000415", "video_name": "ad01cf44-c4c5-5890-a3ca-82af9c5d3fa9", "text": "\u4e00\u53ea\u9ad8\u8fbe\u697c\u623f\u822c\u9ad8\u7684\u666e\u901a\u767d\u8272\u5496\u5561\u676f\u88ab\u653e\u7f6e\u5728\u4e1b\u6797\u4e2d\uff0c\u65c1\u8fb9\u9ad8\u8038\u7684\u6811\u6728\u89e6\u53ca"} +{"id": "2000416", "video_name": "9d42b66d-8327-51b9-91e4-c4161f8a436e", "text": "1950\u5e74\u79cb\u5b63\u7684\u5c0f\u9547\u573a\u666f\u3002"} +{"id": "2000417", "video_name": "682abf05-64fd-5a59-a62d-d98cc5098fc1", "text": "\u90a3\u4e2a\u7537\u4eba\u6124\u6012\u5730\u8bf4\u8bdd\uff0c\u80cc\u666f\u7684\u91d1\u5b57\u5854\u5728\u9707\u52a8\u3002"} +{"id": "2000418", "video_name": "7456f155-964e-5ddb-98ed-d4bf423c224e", "text": "\u4e00\u8f86\u84dd\u8272\u7684\u6c7d\u8f66\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u8f66\u5185\u6709\u4e00\u53ea\u732b\u3002"} +{"id": "2000419", "video_name": "db4dac66-5b07-57d8-95b4-0857b5b8cf60", "text": "\u6124\u6012\u7684Karen\u9ad8\u5c14\u592b\u7403\u624b\u767b\u4e0a\u6708\u7403\uff0c\u590d\u6742\u7684\u767b\u6708\u955c\u5934\uff0c\u8d85\u7cbe\u7f8e\uff0c\u6781\u4e3a\u751f\u52a8\uff0c\u75af\u72c2\u7684\u590d\u6742\uff0cv"} +{"id": "2000420", "video_name": "93d72123-b520-5bd5-8770-a302c57eb32e", "text": "\u4e00\u7fa4\u5192\u9669\u63a2\u9669\u5bb6\uff0c\u7531\u81ea\u4fe1\u7684\u8003\u53e4\u5b66\u5bb6\u827e\u7c73\u8389\u4e9a\u00b7\u65af\u901a\u535a\u58eb\u5e26\u9886\uff0c\u8fdb\u5165\u4e86\u9ed1\u6697\u7684"} +{"id": "2000421", "video_name": "13e2ad41-a2fd-55a7-9057-688180d79b16", "text": "\u8428\u59c6\u548c\u8389\u8389\u6253\u5f00\u5b9d\u7bb1\uff0c\u53d1\u73b0\u91cc\u9762\u585e\u6ee1\u4e86\u95ea\u95ea\u53d1\u5149\u7684\u73e0\u5b9d\u548c\u795e\u5947\u7684\u6587\u7269\u3002"} +{"id": "2000422", "video_name": "483f862d-ca1c-5c4a-a8e8-6315bace82c4", "text": "\u5728\u5370\u5ea6\u7684\u4e00\u4e2a\u5c0f\u9ed1\u623f\u95f4\u91cc\uff0c\u6709\u4e00\u573a\u7535\u5f71\u822c\u53f2\u8bd7\u822c\u7684\u8857\u5934\u6597\u6bb4\u3002"} +{"id": "2000423", "video_name": "67653584-9f9e-5cba-8363-d35af255f8cf", "text": "\u5728\u610f\u5927\u5229\u7684\u591a\u6d1b\u7c73\u7279\u5c71\u8109\uff0c\u6d77\u62d45000\u7c73\u5904\u7ecf\u5e38\u4e0b\u5927\u96e8\u3001\u96ea\u548c\u96fe\u3002"} +{"id": "2000424", "video_name": "dc5f1ee5-a53e-5057-bc9e-90d6b200bf7e", "text": "\u53d8\u8272\u9f99\u8fdc\u89c2\uff1a\u63cf\u7ed8\u5bb3\u7f9e\u7684\u53d8\u8272\u9f99Cleo\u4ece\u6e05\u9664\u7684\u8fb9\u7f18\u89c2\u5bdf\uff0c\u5979\u7684\u989c\u8272\u968f\u7740\u97f3\u4e50"} +{"id": "2000425", "video_name": "52dca5d2-2f34-5341-8330-1342b7552bf9", "text": "\u6d77\u5e95\u4e4b\u4e0b\uff0c\u4e00\u53ea\u6d77\u8c5a\u5728\u9ad8\u901f\u6e38\u52a8\u7684\u753b\u9762\u30028K\u3002\u771f\u5b9e\u3002"} +{"id": "2000426", "video_name": "26ef004e-369d-5c58-8233-447724ef465d", "text": "\u4e2d\u5fc3\u7684\u5206\u5f62\uff0c\u5e73\u6ed1\u5730\u6539\u53d8\u56fe\u6848\u3002"} +{"id": "2000427", "video_name": "dfb4c514-08a0-568b-9ed1-50ec3cc66cab", "text": "\u5f3a\u8c0310\u5c81\u7684\u5b66\u751f\u4e4b\u95f4\u65b0\u7ed3\u4ea4\u53cb\u8c0a\u7684\u9b54\u529b\u3002"} +{"id": "2000428", "video_name": "74b91130-f30d-5faa-b698-19ebd7961fa4", "text": "\u60f3\u8c61\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u82b1\u56ed\uff0c\u6bcf\u6735\u82b1\u90fd\u8c61\u5f81\u7740\u771f\u5b9e\u7684\u8bdd\u8bed\uff0c\u5728\u9633\u5149\u4e0b\u7efd\u653e\uff0c\u800c\u8c0e\u8a00\u5728\u9ed1\u6697\u4e2d"} +{"id": "2000429", "video_name": "92bb44ab-feff-5a9a-86f8-35461abbadab", "text": "translation: \u8d85\u4eba\u5728\u9ad8\u7a7a\u4e2d\u98de\u7fd4\uff0c\u903c\u771f\u3002"} +{"id": "2000430", "video_name": "e09c7daf-05ce-561b-a91a-6634617c1a4c", "text": "\u6c34\u51c0\u5316\u5668\u5de5\u4f5c\uff0c\u7eaf\u51c0\u6c34\u6d41\u51fa\u5230\u4e00\u4e2a\u900f\u660e\u676f\u5b50\u91cc\uff0c\u653e\u5728\u68ee\u6797\u7684\u4e2d\u95f4\u3002"} +{"id": "2000431", "video_name": "265e4a9d-946b-508e-b3f8-c4fed7cd2da5", "text": "\u5154\u5b50\u6b63\u5728\u68ee\u6797\u91cc\u8bd5\u56fe\u722c\u6811\u3002"} +{"id": "2000432", "video_name": "74633d74-9209-5e84-be6f-f451ec9185f1", "text": "\u7a7f\u8d8a\u6492\u54c8\u62c9\u6c99\u6f20\uff0c\u6211\u4eec\u5230\u8fbe\u975e\u6d32\u7684\u8349\u539f\uff0c\u4e00\u4e2a\u91ce\u751f\u52a8\u7269\u7684\u5929\u5802\u3002"} +{"id": "2000433", "video_name": "82f4ced8-0b86-5284-92ea-4828ea76bd06", "text": "\u54e5\u8c2d\u5e02\u8759\u8760\u4fe1\u53f7\u706f\u54cd\u8d77\u65f6\u8759\u8760\u4fa0\u51fa\u73b0\u3002"} +{"id": "2000434", "video_name": "bff5ed40-cbe7-5728-9945-dd0498c9157a", "text": "\u5916\u661f\u98de\u8239\u964d\u843d\u5728\u5730\u7403\u4e0a\uff0c\u788e\u6708\u5760\u843d\uff0c\u788e\u7247\u96e8\u4e0b\uff0c\u5145\u6ee1\u53cd\u4e4c\u6258\u90a6\u6c14\u606f\u7684\u57ce\u5e02\u666f\u89c2"} +{"id": "2000435", "video_name": "60905771-4dac-5631-9fb6-14d13db172eb", "text": "\u6210\u957f\u7684\u690d\u7269\u4ee3\u8868\u7740\u4eba\u5de5\u667a\u80fd\u7684\u6210\u719f\uff0c\u9700\u8981\u5236\u4f5c\u6210\u5faa\u73af\u89c6\u9891\uff0c\u4ee5\u4fbf\u5728\u64ad\u653e\u7ed3\u675f\u540e\u81ea\u52a8\u91cd\u65b0\u5f00\u59cb\u3002"} +{"id": "2000436", "video_name": "e6afb5c4-0ff4-5fd4-99b8-81ea4385fdb3", "text": "\u8def\u98de\u6218\u80dc\u9999\u514b\u65af\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000437", "video_name": "fdef8f42-29c0-5968-a0f3-b489984808b0", "text": "\u4e00\u7fa4\u6076\u9b54\u4ee5\u9ad8\u6e05\u30014k\u3001\u52a8\u6f2b\u98ce\u683c\u5305\u56f4\u4e86\u4e00\u53ea\u5e74\u8f7b\u7684\u767d\u732b\u3002"} +{"id": "2000438", "video_name": "32240af5-780a-537e-b331-f1cf97abbec6", "text": "\u5b83\u4eec\u7684\u6811\u679d\u5f62\u6210\u4e86\u4e00\u4e2a\u53ef\u4ee5\u8fc7\u6ee4\u9633\u5149\u7684\u6811\u51a0\uff0c\u4f7f\u9633\u5149\u53d8\u5f97\u67d4\u548c\u3002\u5e26\u6709\u4e94\u5f69\u7fbd\u6bdb\u7684\u9e1f"} +{"id": "2000439", "video_name": "5e24b334-e9d6-5684-bfc1-2fd35ed9f9ed", "text": "1977\u5e74\u7684\u4e00\u573a\u7535\u5f71\u573a\u666f\uff0c\u52a0\u62ff\u5927\u8bae\u4f1a\u5927\u53a6\u7740\u706b\uff0c\u706b\u52bf\u6d69\u5927\uff0c\u5192\u7740\u6d53\u70df\u3002"} +{"id": "2000440", "video_name": "2340c972-cec3-5563-b558-4b3be6193957", "text": "\u8d85\u903c\u771f\u7684\u6d77\u6d0b\uff0c\u7f8e\u4e3d\u7684\u6a44\u6984\u7eff\u8272\u592a\u9633\u6b63\u5728\u5730\u5e73\u7ebf\u4e0a\u5347\u8d77\u3002"} +{"id": "2000441", "video_name": "8ecfaf8f-807f-5c73-a527-eae2832cab5a", "text": "\u672a\u6765\u7684\u753b\u9762\uff0c\u5e26\u6709\u5e7b\u60f3\u827a\u672f\u7684\u5143\u7d20\u3002"} +{"id": "2000442", "video_name": "373c831c-b86d-5c43-aeed-90f687d14efb", "text": "\u5728\u97f3\u4e50\u8282\u594f\u4e2d\u521b\u9020\u4e00\u4e2a\u91d1\u8272\u7684\u8033\u673a\uff0c\u89c2\u4f17\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "2000443", "video_name": "eb86159d-a0db-5002-82ba-cae0a46e62c7", "text": "\u5723\u8bde\u8001\u4eba\u57281960\u5e74\u4ee3\u7684\u300a\u9c81\u9053\u592b\u7ea2\u9f3b\u5b50\u9a6f\u9e7f\u300b\u7c98\u571f\u52a8\u753b\u98ce\u683c\u4e2d\u7528\u9524\u5b50\u7838\u7cbe"} +{"id": "2000444", "video_name": "edff56ed-2c4c-5b1c-985c-9df15cdb0fc8", "text": "\u8ff7\u4f60\u7537\u5b69\u7a7f\u7740\u9177\u70ab\u7684\u8857\u5934\u88c5\u626e\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u53ef\u7231\u3002"} +{"id": "2000445", "video_name": "92f97f73-dfa0-5514-9f92-98bdd268829b", "text": "\u4e00\u53ea\u6bdb\u6bdb\u866b\u53d8\u6210\u4e00\u53ea\u84dd\u8272\u7684\u8774\u8776\u3002"} +{"id": "2000446", "video_name": "7fbb649f-b296-50f8-a61c-293905fc2fbf", "text": "\u4e00\u4e2a\u6027\u683c\u575a\u5b9e\u7684\u5e74\u8f7b\u4eba\u80cc\u5bf9\u7740\u6444\u50cf\u673a\u4ece\u4e0b\u5230\u4e0a\u8d70\u8fdb\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u9ad8\u6e054k\u5206\u8fa8\u7387\u3002\n\nSource sentence: The restaurant"} +{"id": "2000447", "video_name": "ad45e667-8d09-5730-8406-953c9b2cfc43", "text": "\u672c\u5c3c\u662f\u4e00\u4e2a\u597d\u5947\u5fc3\u65fa\u76db\u7684\u5c0f\u5154\u5b50\uff0c\u4ed6\u70ed\u7231\u8272\u5f69\u548c\u5192\u9669\u30024k\uff0c16:9\uff0c3D\u3002"} +{"id": "2000448", "video_name": "fffcadee-e6e2-5494-9aeb-003866ad52a6", "text": "Shirley Setia\u8fde\u7eed\u5f00\u67aa\uff0c\u5f39\u58f3\u5f39\u51fa\uff0cJohn Lennon\u53d7\u4f24\u540e\u75db\u82e6\u5730\u53cd\u5f39\u3002\u8fd9\u662f\u4e00\u4e2a\u975e\u5e38\u5feb\u901f\u7684\u573a\u666f\uff0c200"} +{"id": "2000449", "video_name": "24da4a0f-debe-5743-84ea-ef4671686452", "text": "\u521b\u9020\u4e00\u4e2a\u4ece\u5929\u7a7a\u4fef\u51b2\u7684\u573a\u666f\uff0c\u4ee516\uff1a9\u7684\u6bd4\u4f8b\u5411\u7740\u9ad8\u5927\u7070\u6697\u7684\u5efa\u7b51\u7269\u62cd\u6444\u3002"} +{"id": "2000450", "video_name": "2128c4d3-f7e3-547f-bbda-fb7ed47875ac", "text": "\u7075\u5f02\u4e8b\u4ef6\u7684\u53d1\u73b0\u8bb0\u5f55\u7247\uff0c1980\u5e74\u4ee3\u7684\u90ca\u533a\u623f\u5c4b\u3002"} +{"id": "2000451", "video_name": "434aa5a5-8bd0-50df-afe3-1e3d1e939449", "text": "\u4e00\u4e2a\u5728\u68ee\u6797\u4e2d\u95f4\u7684\u5c0f\u6728\u5c4b\uff0c\u5efa\u5728\u4e00\u4e2a\u571f\u4e18\u4e0a\u3002\u53d7\u5230\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u542f\u53d1\u3002"} +{"id": "2000452", "video_name": "edea7ceb-95b2-5372-92bc-a91b78fcb76f", "text": "\u4eba\u72ec\u81ea\u5728\u9ed1\u6697\u4e2d\u884c\u8d70\u3002"} +{"id": "2000453", "video_name": "6345eb19-c929-5797-8d7e-347c079975cc", "text": "\u7136\u800c\uff0c\u73b0\u6709\u8bc1\u636e\u4f3c\u4e4e\u8868\u660e\u5e15\u62c9\u5361\u65af\u4eba\u786e\u5b9e\u662f\u4eba\u7c7b\u3002"} +{"id": "2000454", "video_name": "a5306736-989f-5d58-8d19-29f267179e5d", "text": "\u4e3aRaj\u5728insta id strgazerr\u4e0b\u521b\u4f5c\u4e00\u4e2a\u5929\u4f53\u6444\u5f71\u4e3b\u9898\u7684\u6807\u5fd7\u3002"} +{"id": "2000455", "video_name": "3a408b98-705c-50bf-84bb-d54366d7b355", "text": "\u4e00\u4e2a\u4eba\u5728\u5916\u592a\u7a7a\u884c\u8d70\uff0c\u7a7f\u8fc7\u6c34\uff0c\u5168\u9ad8\u6e05\u661f\u9645\u7535\u5f71\u3002"} +{"id": "2000456", "video_name": "ebde1904-3f08-5c97-b50e-ea76a1dd73ef", "text": "\u4e00\u4e2a\u51fa\u751f\u57281900\u5e74\u7684\u5a74\u513f\u3002"} +{"id": "2000457", "video_name": "ff6c2ede-460e-5c3f-910e-37bedf1b05dd", "text": "\u7537\u5b69\u548c\u5973\u5b69\u5206\u522b\u9a91\u7740\u6469\u6258\u8f66\uff0c\u5728\u5348\u591c\u65f6\u5206\uff0c\u7a7f\u8d8a\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u57ce\u5e02\uff0c\u8fdb\u884c\u6bd4\u8d5b"} +{"id": "2000458", "video_name": "5ba666f9-d708-57d3-a816-f9b088510efc", "text": "\u521b\u9020\u4e00\u4e2a\u5e7d\u9ed8\u7684\u5f62\u8c61\uff0c\u63cf\u8ff0Deadpool\u548c\u54c8\u8389\u00b7\u594e\u56e0\u5728\u6df7\u4e71\u4e0d\u53ef\u9884\u6d4b\u7684\u53cd\u82f1\u96c4\u51b2\u7a81\u4e2d\u8054\u624b\u7684\u573a\u666f\u3002"} +{"id": "2000459", "video_name": "a9b9c41a-c1ef-5b1b-8869-dc2dde0a5ae3", "text": "\u80af\u5c3c\u4e9a\u9a6c\u8d5b\u65cf\u6218\u58eb\u7a7f\u7740\u4f20\u7edf\u88c5\u675f\uff0c\u5728\u6069\u8d21\u5c71\u533a\u8dc3\u5165\u7a7a\u4e2d\uff0c\u624b\u6301\u77db\u548c\u76fe\u3002"} +{"id": "2000460", "video_name": "b75db07a-471c-5a64-9dbb-ad4cacb0ec43", "text": "\u4e00\u500b\u771f\u6b63\u5f37\u58ef\u7684\u5510\u7d0d\u5fb7\u00b7\u7279\u6717\u666e\u8209\u8d77\u4e86\u4e00\u8f1b\u6c7d\u8eca\u3002"} +{"id": "2000461", "video_name": "077a9575-a194-5fab-bc42-d76afeb993a6", "text": "\u7f57\u9a6c\u58eb\u5175\u5728\u7f57\u9a6c\u5e7f\u573a\u884c\u8fdb\u3002"} +{"id": "2000462", "video_name": "f9367063-9a96-506f-9988-b62872194686", "text": "\u4e00\u53ea\u91d1\u96d5\u98de\u8fc7\u53e4\u5e0c\u814a\uff0c\u95ea\u7535\u95ea\u73b0\uff0c\u5929\u7a7a\u4e2d\u7684\u96f7\u795e\u5b99\u65af\u7ad9\u5728\u90a3\u91cc\u3002"} +{"id": "2000463", "video_name": "fc475dd3-4f5a-5634-ad5b-ab787c2aef60", "text": "\u8d85\u7ea7\u82f1\u96c4\u5728\u300a\u7f8e\u56fd\u961f\u957f3\uff1a\u5185\u6218\u300b\u4e2d\u4e92\u76f8\u5bf9\u6297\u3002"} +{"id": "2000464", "video_name": "b1f0536b-1e73-575f-a10e-aefdf470f831", "text": "\u7528\u60a3\u8005\u53ef\u7528\u7684\u8d44\u6599\u521b\u5efaModjaw\u8bbe\u5907\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2000465", "video_name": "3cb4eca2-a7d8-588f-8143-86d394a4dbcd", "text": "\u4e00\u4f4d\u4ed9\u5973\u6b63\u5728\u632f\u52a8\u5979\u7684\u7fc5\u8180\uff0c\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2000466", "video_name": "a1eaa0e8-fba0-53fa-b34c-b1febc7853da", "text": "\u4e24\u4e2a\u604b\u4eba\u5728\u9152\u5e97\u559d\u5496\u5561\u3002"} +{"id": "2000467", "video_name": "dda3da23-0f55-5c2d-977a-f0a392e2fdf4", "text": "\u4e00\u90e8\u5173\u4e8e\u4e00\u5757\u77f3\u5934\u4ece\u5730\u7403\u8bde\u751f\u5230\u7ec8\u7ed3\u7684\u751f\u547d\u7684\u89c6\u9891\u3002"} +{"id": "2000468", "video_name": "bde88e41-85f8-597a-8a55-dd13d6a43637", "text": "\u5267\u70c8\u81ea\u7136\u707e\u5bb3\u7684\u620f\u5267\u6027\u52a8\u753b\u2014\u2014\u98d3\u98ce\u6495\u88c2\u57ce\u5e02\uff0c\u5de8\u5927\u5730\u9707\u6447\u6643\u5730\u57fa\uff0c\u6bc1\u706d\u6027"} +{"id": "2000469", "video_name": "c40e983f-0d8f-5788-af08-4a3be506c8d2", "text": "\u4e24\u4e2a\u5370\u5ea6\u5973\u5b69\u5230\u8fbe\u4e86\u6cb3\u8fb9\u3002"} +{"id": "2000470", "video_name": "63acafcf-5b63-54ee-8393-519c6e602973", "text": "\u4f5c\u7269\uff1a\u8096\u50cf\uff1b\u98ce\u683c\uff1a\u6697\u84dd\u8272\u548c\u9ed1\u8272\u6cb9\u753b\uff1b\u4e3b\u9898\uff1a\u66b4\u98ce\u96e8\u4e2d\u7684\u4e00\u8258\u9ed1\u6697\u6d77\u76d7\u8239\u3002"} +{"id": "2000471", "video_name": "4c5c8297-0430-5f42-9d64-16e5032f6e45", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u5c0f\u9547\u5e7f\u573a\u4e0a\uff0c\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u5e26\u95ea\u7535\u7684\u5f3a\u70c8\u964d\u96e8\uff0c4K\u9ad8\u6e05\u8be6\u7ec6\u5448\u73b0\u3002"} +{"id": "2000472", "video_name": "265f80fb-9306-519e-a967-ea81a8398d16", "text": "2D\u52a8\u753b\uff0c\u4e00\u4e2a\u5973\u5b69\u5728\u5e8a\u4e0a\u7761\u7740\u4e86\uff0c\u5c0f\u7f8a\u8df3\u8dc3\u5728\u5979\u5468\u56f4\u3002"} +{"id": "2000473", "video_name": "7a719369-e956-54f2-8271-40dd2dd797b4", "text": "\u5728\u4e00\u4e2a\u821e\u8e48\u8282\u4e0a\u6709\u5de8\u5927\u7684\u9ec4\u8272\u9e2d\u5b50\u3002"} +{"id": "2000474", "video_name": "8df50c21-193b-5e00-800e-231b920fca39", "text": "\u4e00\u4e2a\u53ef\u7231\u800c\u6e29\u548c\u7684\u86c7\uff0c\u4ee5\u7b80\u5355\u4f46\u9ad8\u5ea6\u8d28\u611f\u7684\u98ce\u683c\u7ed8\u5236\u3002"} +{"id": "2000475", "video_name": "99ffcceb-64bf-5ed6-8360-fc290eb099f7", "text": "\u8fdc\u773a\u7f8e\u7d22\u4e0d\u8fbe\u7c73\u4e9a\u53e4\u4ee3\u5e9f\u589f\u7684\u5168\u666f\u7a7a\u4e2d\u89c6\u89d2\u3002"} +{"id": "2000476", "video_name": "3152363c-0499-5935-8456-d79283349052", "text": "\u91d1\u53d1\u7f8e\u5973\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\u3002"} +{"id": "2000477", "video_name": "d1a32cab-9ca1-525c-947e-6ea70f3a397f", "text": "\u63d0\u9192\u4ed6\u5728\u81ea\u5df1\u540e\u9662\u5f00\u59cb\u7684\u975e\u51e1\u5192\u9669\u3002"} +{"id": "2000478", "video_name": "69c4f134-816b-5a2c-adcf-774bb7bcd82e", "text": "\u6444\u50cf\u673a\u53ef\u80fd\u4f1a\u7f13\u6162\u5730\u5411\u4e2d\u5fc3\u7684\u9ec4\u91d1\u5bab\u6bbf\u653e\u5927\uff0c\u5b83\u662f\u738b\u6743\u6240\u5728\u4e4b\u5904\uff0c\u4ee5\u5fae\u5999\u7684\u65b9\u5f0f\u4f20\u8fbe\u5176\u5728\u6545"} +{"id": "2000479", "video_name": "0eae713e-5d3a-525d-aac1-0d22c660f252", "text": "\u9003\u907f\u6cd5\u5f8b\u7684\u5236\u88c1\u3002\u4e00\u4f4d\u5bb3\u6015\u548c\u56f0\u60d1\u7684\u79c1\u5211\u6267\u884c\u8005\u5728\u9ed1\u6697\u7684\u6076\u5146\u7684\u5c0f\u5df7\u91cc\u591c\u8dd1\u7a7f\u8fc7"} +{"id": "2000480", "video_name": "293eda7a-b798-521f-8a6b-924a4d41dadf", "text": "\u82f1\u56fd\u77ed\u6bdb\u732b\u5728\u5916\u592a\u7a7a"} +{"id": "2000481", "video_name": "3f87c54c-2e64-5cde-9267-9ba4350e64de", "text": "\u4e00\u4e2a\u65e5\u5386\u7ffb\u9875\u4ece\u516b\u6708\u5230\u4e5d\u6708\uff0c\u7136\u540e\u76f8\u673a\u9010\u6e10\u63a5\u8fd1\uff0c\u76f4\u5230\u4ee59:16 4K\u683c\u5f0f\u663e\u793a\u4e5d\u67081\u65e5\u3002"} +{"id": "2000482", "video_name": "78d1ca16-17aa-522f-bf97-eb24ab130400", "text": "\u5854\u6797\u8001\u57ce\u533a\u7684\u822a\u62cd\u753b\u9762\u6781\u5177\u7535\u5f71\u611f\u548c\u771f\u5b9e\u611f\u3002"} +{"id": "2000483", "video_name": "a449dd4e-07ae-5b1d-b618-44438ee4c417", "text": "3D\u52a8\u753b\u5c55\u793a\u6d77\u8c5a\u89c2\u5bdf\u6f02\u6d6e\u5728\u6c34\u4e2d\u7684\u5851\u6599\u888b\uff0c\u8868\u73b0\u51fa\u5173\u5207\u4e4b\u60c5\u3002\n\nSource sentence: The new software update includes several bug fixes and performance improvements"} +{"id": "2000484", "video_name": "9a7af341-9241-5d5c-a1b5-1828a0c87784", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u5370\u5ea6\u5973\u5b50\u53d1\u8868\u6f14\u8bb2\uff0c\u5f3a\u8c03\u5973\u5b69\u6559\u80b2\u7684\u91cd\u8981\u6027\u3002"} +{"id": "2000485", "video_name": "be75d4c9-721a-5599-a201-4dfb837e1b19", "text": "\u5728\u767d\u5929\u5728\u71c3\u70e7\u4eba\u8282\u6b65\u884c\u3002"} +{"id": "2000486", "video_name": "0026af66-9282-5f3c-8472-d9343fd67efb", "text": "\u4e00\u4e2a\u5c55\u793a\u519c\u573a\u7684\u7535\u89c6\u5e7f\u544a\u4ecb\u7ecd"} +{"id": "2000487", "video_name": "4228cb30-0d8c-543d-8796-6db582efb56d", "text": "\u5f88\u591a\u8d27\u8239\u5728\u8239\u575e\u52a0\u6cb9\u3002"} +{"id": "2000488", "video_name": "5e3a2fc5-f5c2-5a26-acd8-cafc8e8cab78", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u5b81\u9759\u548c\u5e73\u7684\u6751\u5e84\u770b\u8d77\u6765\u50cf\u6700\u597d\u7684\u670b\u53cb\u3002"} +{"id": "2000489", "video_name": "1ebdd8a0-977b-56b4-a374-e9624e54f67a", "text": "\u4e00\u4e2a\u6ed1\u677f\u624b\u9a91\u6ed1\u677f\u6ed1\u4e0b\u6276\u624b\u680f\u6746\u3002"} +{"id": "2000490", "video_name": "d3ac4703-f0ac-5c63-a2b2-9b42976357bc", "text": "\u6e90\u53e5\uff1art 16:9\uff0cmotino 3\uff0cseed123456789\uff0cfbs 24\uff0cgs 16\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002\n\n\u7ffb\u8bd1\uff1a\u6bd4\u4f8b16:9\uff0c\u8fd0\u52a8"} +{"id": "2000491", "video_name": "186493b3-9908-51ca-89c5-140a47992ca4", "text": "\u5b64\u72ec\u7626\u5f31\u7684\u7537\u4eba\u770b\u7740\u4ed6\u59bb\u5b50\u7684\u7167\u7247\uff0c\u54ed\u6ce3\u7740\u3002\n\nSource sentence: The beautiful sunsets always make me feel peaceful and grateful for the day"} +{"id": "2000492", "video_name": "9018f5d6-1855-555b-a57f-86339e412fff", "text": "\u7535\u5f71\u9662\u91cc\u4e00\u4e2a\u4eba\u9f13\u52b1\u7740\u4eba\u4eec\u3002"} +{"id": "2000493", "video_name": "d90c3f8b-9245-5647-bbce-cdc351f69bd5", "text": "\u65e0\u7f1d\u7535\u5f71\u5faa\u73af\u80cc\u666f\uff0c\u5355\u4e00\u989c\u8272\uff0c\u6613\u4e8e\u9605\u8bfb\uff0c\u56e0\u4e3a\u4e0a\u9762\u4f1a\u6709\u6587\u5b57\u3002"} +{"id": "2000494", "video_name": "def876a1-58e4-5dc8-aa60-1879c74b693a", "text": "\u5973\u5b69\u773c\u4e2d\u53d1\u51fa\u96f7\u58f0\uff0c\u7535\u5f71\u822c\u7684\uff0c\u591c\u665a\u7684\u8857\u9053\uff0c\u4e0b\u96e8\uff0c\u9ed1\u6697\u7684\u73af\u5883\uff0c\u7535\u5f71\u822c\u7684\uff0c4K\u3002"} +{"id": "2000495", "video_name": "42c429eb-10cd-5310-a151-28fcaafe372b", "text": "\u7535\u52a8\u6c7d\u8f66\u5bbe\u679cEV\u78b0\u649e\u6d4b\u8bd5"} +{"id": "2000496", "video_name": "61409494-f54d-5ac7-bd0e-30c6379ef28a", "text": "\u4e00\u53ea\u5e26\u7740\u5e7c\u5d3d\u7684\u72fc\u5728\u632a\u5a01\u7684\u5c71\u4e0a\u548c\u6e56\u7554\uff0c4K\u9ad8\u54c1\u8d28\u3002"} +{"id": "2000497", "video_name": "40cf3f67-98aa-5065-9851-70661e76ea41", "text": "\u4e00\u76cf\u5c0f\u5c0f\u7684\u70b9\u4eae\u7684\u7eb8\u706f\u7b3c\u5728\u6d77\u6d0b\u4e0a\u6f02\u6d6e\u7740\u98d8\u5411\u6df1\u6d77\uff0c\u66ae\u8272\u4e2d\u6709\u96fe\u6c14\uff0c\u50cf\u7535\u5f71\u4e00\u822c"} +{"id": "2000498", "video_name": "0121fed0-04e6-5c1d-8ef2-42060c4bbfbd", "text": "\u610f\u5927\u5229\u9762\u5973\u795e\uff0c\u9a6c\u91cc\u7eb3\u62c9\u9171\u6e56\uff0c\u610f\u5927\u5229\u56fd\u65d7\u3002"} +{"id": "2000499", "video_name": "1e376fe1-987d-5548-b71f-73adf1d9f2dc", "text": "\u513f\u7ae5\u7535\u89c6\u8282\u76ee\u519c\u573a\uff0c\u4e34\u754c\u7a7a\u95f4\uff0c\u4e34\u754c\u6050\u6016\uff0c\u7eff\u8272\u7530\u91ce"} +{"id": "2000500", "video_name": "04861880-fba2-5b2c-a55d-923ec6678d41", "text": "\u60f3\u8c61\u4e00\u4e2a\u5973\u5b69\u624b\u91cc\u62b1\u7740\u5c0f\u7537\u5b69\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\uff0c\u955c\u5934\u8fd1\u62cd\u624b\u81c2\u3002"} +{"id": "2000501", "video_name": "be70a79a-81f7-5f4c-b105-5921e6091cd4", "text": "\u957f\u6709\u57c3\u8fea\u00b7\u58a8\u83f2\u5934\u7684\u957f\u9888\u9e7f\u3002"} +{"id": "2000502", "video_name": "41bb37fd-6b71-5418-b4be-b180fc992123", "text": "property he wants to sell.\n\n\u4e00\u4e2a\u7537\u4eba\u62cd\u6444\u4ed6\u60f3\u8981\u51fa\u552e\u7684\u623f\u5730\u4ea7\u7269\u4e1a\u7684\u89c6\u9891\u3002"} +{"id": "2000503", "video_name": "1f285cf3-f1e2-5530-9210-669ce4cfd226", "text": "\u8840\u6ef4\u6b4c\u540e\uff1a\u620f\u5267\u6027\u7684\u6df1\u8272\u5986\u5bb9\u5e26\u6709\u5047\u8840\u6ef4\uff0c\u642d\u914d\u9ed1\u8272\u76ae\u9769\u548c\u6df1\u8272\u6709\u5149\u6cfd"} +{"id": "2000504", "video_name": "7a480a23-2cf7-5f88-bcd2-7216b1779482", "text": "\u5728\u805a\u5149\u706f\u4e0b\u5ba1\u5224\u6447\u6eda\u4e50\u7684\u966a\u5ba1\u5458\u4eec\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2000505", "video_name": "507231bc-234b-5f56-8bb0-1649d2fd43d0", "text": "\u96f7\u66fc\u5728\u5403\u51b0\u6dc7\u6dcb\uff0c\u683c\u6d1b\u535a\u514b\u65af\u5728\u4f38\u5c55\u8eab\u4f53\u3002"} +{"id": "2000506", "video_name": "3a3886d1-b9bf-5d07-afc5-a6c77d8bcf96", "text": "\u653e\u7f6e\u5728\u5f00\u653e\u5f0f\u9633\u53f0\u4e0a\u4fef\u77b0\u591c\u665a\u57ce\u5e02\u7684\u684c\u5b50\u4e0a\u7684\u76d2\u5f0f\u5f55\u97f3\u673a\uff0c\u57ce\u5e02\u4e0b\u9762\u7684\u706f\u5149\u95ea\u70c1\uff0c\u7a97"} +{"id": "2000507", "video_name": "c79a8da4-5043-513a-a137-bedd2d0c9dbb", "text": "\u5916\u661f\u98de\u8239\u7684\u95e8\u6253\u5f00\u4e86\uff0c\u5947\u602a\u7684\u8f6e\u5ed3\u8986\u76d6\u7740\u751f\u7269\u53d1\u5149\u56fe\u6848\u4ece\u4e2d\u8d70\u51fa\u3002\u5b83\u4eec\u5728\u5730\u9762\u4e0a\u5e73\u7a33"} +{"id": "2000508", "video_name": "76558bbb-1dad-5390-acf3-a68ff6056697", "text": "\u8d3e\u5df4\u00b7\u8d3a\u7279\u5728\u6c99\u6f20\u5c9b\u4e0a\u5728\u82b1\u751f\u9171\u91cc\u6253\u6eda\uff0c8K\uff0c\u8fd0\u52a84\uff0c\u903c\u771f\u3002"} +{"id": "2000509", "video_name": "a902af60-2791-509e-9ff7-294b0d38eabd", "text": "\u6d77\u4e2d\u95f4\u7ad9\u7740\u7f8e\u4e3d\u7684\u666f\u8272\u3002"} +{"id": "2000510", "video_name": "ab7fa9e3-55e9-5b9a-9074-e62110b4cf3c", "text": "\u70e6\u607c\u7684\u53f8\u673a\uff1a\u4e00\u540d\u7537\u5b50\u5728\u8f66\u5185\u60ca\u6050\u5730\u671b\u7740\u56db\u5468\u7684\u96fe\u6c14\uff0c\u773c\u775b\u77aa\u5f97\u5927\u5927\u7684\u3002"} +{"id": "2000511", "video_name": "e5d6e512-e0bb-5463-b9d7-7d8e50984731", "text": "\u73b0\u4ee3\u5ba2\u5385\u5185\u7684\u706b\u661fFX\u903c\u771f\u3002"} +{"id": "2000512", "video_name": "ba45e41e-69c3-5b7c-9711-20357a418e4e", "text": "\u9a6c\u91cc\u5965\u3001\u7d22\u5c3c\u514b\u548c\u676f\u5934\u4eba\u5728\u98de\u6e85\u5c71\u4e0a\u3002\u56db\u8f74\u7a33\u5b9a\u4e91\u53f0\uff0c4K\uff0c\u6c34\u6d41\u52a8\u3002"} +{"id": "2000513", "video_name": "86866e70-e52c-5bed-8615-800ba863fcd1", "text": "\u5e74\u8f7b\u7684\u88c1\u7f1d\u5750\u5728\u88c1\u7f1d\u5e97\u7684\u684c\u5b50\u524d\u5199\u5b57\u3002"} +{"id": "2000514", "video_name": "45c3cbe6-c212-5345-aeef-abcdc72f1045", "text": "\u771f\u6b63\u9965\u997f\u7684\u7a77\u4eba\u4ece\u50a8\u5b58\u5668\u4e2d\u5403\u4e1c\u897f\u3002"} +{"id": "2000515", "video_name": "ec4d50cf-3864-5fef-a481-9d31a8c4f36c", "text": "\u7535\u5f71\u955c\u5934\uff1a\u201cCommon\u201d\u5728\u673a\u573a\u5927\u5385\u7ed9\u201c\u6770\u68ee\u00b7\u4f2f\u6069\u201d\u94b1\u3002"} +{"id": "2000516", "video_name": "99cd903b-239f-5c27-9288-3d2fbd0fdf1e", "text": "\u5361\u901a\u718a\u5728\u6cb3\u4e2d\u89c2\u770b\u9c91\u9c7c\u3002"} +{"id": "2000517", "video_name": "b27ce2ec-f472-58e2-8ce9-99b0aa3e5b16", "text": "\u4e16\u754c\u5730\u56fe\u4e0a\u65b9\u5e26\u6709\u7f16\u7a0b\u4ee3\u7801\u7684\u89c6\u56fe\u3002"} +{"id": "2000518", "video_name": "1ebfd3a1-1738-5610-874e-6cb48105417a", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u7761\u89c9\uff0c\u5979\u7684\u8eab\u4f53\u9700\u8981\u51cf\u7f13\u8fd0\u52a8\uff0c\u5916\u9762\u4e0b\u7740\u5e26\u96f7\u58f0\u7684\u96e8\u5929\u3002"} +{"id": "2000519", "video_name": "c539defd-83e1-5780-9d79-558ba916b209", "text": "\u521b\u5efa\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u591a\u5df4\u80fa\u548c\u4e59\u9170\u80c6\u78b1\u540c\u65f6\u4f5c\u7528\u4e8e\u53d7\u4f53\u7684\u8fc7\u7a0b\u3002"} +{"id": "2000520", "video_name": "066f5a7c-db6c-576b-97d5-0dd20b3c9a67", "text": "\u77e9\u9635\u98ce\u683c\u7684\u82cd\u767d\u79c3\u9876\u767d\u5316\u7f8e\u5973\u673a\u5668\u4eba\uff0c\u5bf9\u79f0\uff0c\u8eba\u5728\u5916\u79d1\u624b\u672f\u53f0\u4e0a\uff0c\u62c6\u6563\u5f00\u6765\uff0c\u9752"} +{"id": "2000521", "video_name": "7b73e728-c431-554d-8bdc-119b8c324570", "text": "\u7537\u4eba\u53d8\u6210\u72d0\u72f8\uff0c\u60ca\u4eba\u7684\u8f6c\u53d8\uff0c4K\uff0c\u903c\u771f\u3002"} +{"id": "2000522", "video_name": "5ce2506f-6de8-57cb-bf9f-95b0034f841d", "text": "\u51ac\u5929\u7684\u5c0f\u9547\u548c\u623f\u5c4b\u5168\u666f\u56fe"} +{"id": "2000523", "video_name": "b7dcd99b-63ed-5fd3-adc0-a8ca93bd9f06", "text": "\u4e00\u4e2a\u7537\u6027\u7f51\u7ea2\u63cf\u8ff0\u4e00\u6b3e\u8f6f\u4ef6\u3002"} +{"id": "2000524", "video_name": "09000a27-28fa-5f85-aca9-c485f180fa43", "text": "\u7e41\u5fd9\u7684\u533b\u9662\uff0c\u524d\u5f80\u624b\u672f\u5ba4\uff0c\u6444\u5f71\u672f\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "2000525", "video_name": "0c7c949f-2899-59bc-8e13-804113e44ab4", "text": "\u65b0\u7684\u65f6\u4ee3\u9700\u8981\u65b0\u7684\u5de5\u5177\uff0c\u5143\u5b87\u5b99\u3001\u7535\u5f71\u7ea7\u30014K\u3001\u6700\u4f73\u753b\u8d28\u3001\u672a\u6765\u4e3b\u4e49\u3002"} +{"id": "2000526", "video_name": "76727b8a-103a-56c4-b6af-ec5e1e6a8272", "text": "\u7f8e\u4e3d\u7684\u4ed9\u5973\u7528\u4e00\u4ef6\u84dd\u8272\u5962\u534e\u7684\u793c\u670d\u548c\u6f02\u4eae\u7684\u73bb\u7483\u978b\u5c06\u7070\u59d1\u5a18\u53d8\u6210\u4e86\u4e00\u4f4d\u7f8e\u4e3d"} +{"id": "2000527", "video_name": "9bf85e03-4191-585b-82d3-a6df49a11a65", "text": "\u53d8\u6210\u4e00\u53ea\u72ec\u89d2\u517d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000528", "video_name": "4907482b-9efc-59c7-bc68-959a5d08154c", "text": "\u62bd\u8c61\u6846\u67b6\u7d2b\u8272\u9ec4\u8272\u84dd\u8272\u81ea\u7136\u52a8\u7269"} +{"id": "2000529", "video_name": "e4f1b019-6123-5347-8f5a-f0f9ad7154a2", "text": "\u5728\u68ee\u6797\u4e2d\u95f4\u7684\u4e00\u5ea7\u6bdb\u9aa8\u609a\u7136\u7684\u623f\u5b50\uff0c\u6709\u7740\u8001\u65e7\u7684\u4e3b\u9898\u5c0f\u5c4b\u52a8\u4f5c2\u3002"} +{"id": "2000530", "video_name": "f2a018f4-be2c-5cb8-bee3-6c026726b5fb", "text": "\u4e00\u53ea\u65e9\u9910\u9ea6\u7247\u7897\u91cc\u88c5\u6ee1\u4e86\u65af\u9177\u6bd4\u675c\u76841970\u5e74\u4ee3\u52a8\u753b\u98ce\u683c\u7684\u7eb8\u676f\u86cb\u7cd5\u3002"} +{"id": "2000531", "video_name": "5aa90794-4834-5076-b622-4d772c662266", "text": "\u6bcd\u5973\u5728\u4e00\u4e2a\u660e\u5a9a\u7684\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u8d70\u8fdb\u978b\u5e97\u3002\u975e\u5e38\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "2000532", "video_name": "68b52323-a4ce-508a-bc01-c63700b11fad", "text": "\u6c99\u6ee9\u4e0a\u771f\u5b9e\u7684\u8783\u87f9\u7167\u7247\uff0c\u50cf\u5728\u4ff1\u4e50\u90e8\u821e\u52a8\u53cc\u722a\u3002"} +{"id": "2000533", "video_name": "7e78af63-82f6-5075-9c30-450cd1bebe06", "text": "100\u5e74\u7684\u65f6\u5019\u67092\u4e2a\u7537\u4eba\u3002"} +{"id": "2000534", "video_name": "d832de07-46fb-5ada-a10c-56b570c2c90f", "text": "\u7535\u5f71\u7ea7\u89c6\u9891\uff0c\u9ad8\u6e05\uff0c4K\uff0c\u771f\u5b9e\uff0c\u6e05\u6670\u3002"} +{"id": "2000535", "video_name": "6ebf14c2-cee4-5231-a997-3e2bb4f644ba", "text": "\u4e00\u4e2a\u7537\u4eba\u4e3a\u4e86\u751f\u547d\u800c\u4e0e\u5317\u6781\u718a\u640f\u6597\u7684\u89c6\u9891\u3002"} +{"id": "2000536", "video_name": "8ca2434e-9ca0-59e0-8d2d-4e83c1aedbc3", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u753b\u9762\u4e3a\u4e00\u4e2a\u7f8e\u4e3d\u800c\u5bbd\u655e\u7684\u706b\u8f66\u7ad9\uff0c\u4eba\u4eec\u671d\u4e0d\u540c\u65b9\u5411\u8d70\u52a8\uff0c\u4eba\u7fa4\u4e2d\u95f4\u4e24\u4e2a\u5fae\u7b11\u7684\u670b\u53cb\u76f8"} +{"id": "2000537", "video_name": "29b4cf1d-dd85-520b-b169-acc4f4966978", "text": "\u4e00\u4e2a\u7535\u5f71\u573a\u666f\uff0c\u4e00\u4e2a\u5e74\u9f84\u4e3a18\u5c81\u7684\u5c3c\u65e5\u5229\u4e9a\u7537\u5b66\u751f\u7ad9\u5728\u4e00\u4e2a\u5927\u578b\u7535\u89c6\u5de5\u4f5c\u5ba4\u524d\uff0c\u624b\u91cc\u62ff\u7740\u8fa3\u6912\uff0c\u5ba3"} +{"id": "2000538", "video_name": "b062cf92-fc29-530d-ba8f-f524f5a79b00", "text": "\u70df\u96fe\u548c\u9152\u5427\u9ea6\u514b\u98ce\u8868\u6f14\u7684\u6807\u5fd7"} +{"id": "2000539", "video_name": "8913c43f-8fc3-55ad-adff-db6ef8f30690", "text": "\u4f7f\u7528\u6b22\u4e50\u7684\u97f3\u4e50\u6765\u8425\u9020\u6109\u60a6\u7684\u6c1b\u56f4\u3002"} +{"id": "2000540", "video_name": "1894703b-e49b-5a49-a753-be6e193a3f25", "text": "\u4e00\u4e2a\u5e26\u6709\u7ea2\u8272\u53d1\u5149\u773c\u775b\u7684\u9ab7\u9ac5\uff0c\u78e8\u635f\u7684\u611f\u89c9\uff0c16\uff1a9\uff0c4K\u3002"} +{"id": "2000541", "video_name": "e672c96f-9171-5002-b6f1-616e0ca30285", "text": "\u5973\u5b69\u5750\u5728\u8361\u79cb\u5343\u7684\u6708\u4eae\u4e0a\u8361\u7740\uff0c\u7f8e\u4e3d\u7684\u5e7b\u60f3\u591c\u666f\u3002"} +{"id": "2000542", "video_name": "25521b9e-220a-582a-ad66-4f3ed7de13eb", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u7ea2\u53d1\u5e74\u8f7b\u5973\u5b69\u7684\u8096\u50cf\uff0c\u5316\u7740\u591a\u5f69\u7684\u5986\u5bb9\uff0c\u4ee3\u8868\u7740\u7ed5\u7740\u5979\u53f3\u773c\u7684\u4e00\u5bf9\u591a"} +{"id": "2000543", "video_name": "2e55da68-0c53-5531-84b1-8c63dc5a8f84", "text": "\u4e24\u53ea\u5c0f\u732b\u54aa\u4f9d\u504e\u5728\u5b83\u4eec\u7684\u6bcd\u4eb2\u8eab\u8fb9\u3002\u9ad8\u6e05\u6670\u5ea6\u3002\n\nSource sentence: The sun sets behind the mountains in a blaze of orange and pink. High"} +{"id": "2000544", "video_name": "6f36c6f7-cc75-554c-a3ce-b23469378cac", "text": "\u5728\u6d77\u6ee9\u4e0a\u67094\u53ea\u6770\u514b\u7f57\u7d20\u72ac\u3002"} +{"id": "2000545", "video_name": "f52d0d1a-7414-554c-a5c9-0798e83ad7b6", "text": "\u82cf\u5c3c\u501f\u52a9\u6ce5\u7f50\u5728\u6cb3\u91cc\u6e38\u6cf3\u3002"} +{"id": "2000546", "video_name": "c4f603ab-e191-53d5-871a-e8be518cca12", "text": "\u6211\u5728\u5b8f\u4f1f\u7684\u793c\u5802\u4e2d\u5fc3\u7ad9\u7acb\uff0c\u88ab\u805a\u5149\u706f\u6e29\u6696\u7684\u5149\u8292\u6240\u7167\u8000\u7684\u77ed\u7247\u3002"} +{"id": "2000547", "video_name": "73af90be-109c-53a5-bcf8-7bf80cdf449a", "text": "\u5df4\u57fa\u7403\u51e0\u4f55\u6b63\u5f26\u8fd0\u52a8\uff0cvray\uff0c\u666f\u6df1\uff0c\u4f53\u79ef\u96fe"} +{"id": "2000548", "video_name": "c01e8d84-ecc9-5a18-b89e-484bd7274a1f", "text": "\u7f8e\u4e3d\u7684\u73b0\u4ee3\u767d\u8272\u5efa\u7b51\uff0c\u914d\u6709\u94f6\u8272\u53ef\u53d8\u9cde\u7247\uff0c\u901a\u8fc7\u65e0\u4eba\u673a\u62cd\u6444\u98de\u884c\u3002 \n\nSource sentence: The restaurant serves delicious Chinese food and has a"} +{"id": "2000549", "video_name": "8b22b4d0-aad1-5218-bff1-7c629ad51b09", "text": "\u975e\u5e38\u5f3a\u7684\u98ce\u3002\u6240\u6709\u7684\u5934\u53d1\u90fd\u5728\u6447\u66f3\u79fb\u52a8\u3002"} +{"id": "2000550", "video_name": "9e95f3e9-3053-5a72-ae8b-d0604111fcc0", "text": "\u5f88\u4e45\u4ee5\u524d\uff0c\u5728\u4e00\u7247\u53e4\u8001\u7684\u68ee\u6797\u4e2d\uff0c\u8302\u5bc6\u7684\u690d\u88ab\u9065\u9065\u65e0\u671f\uff0c\u751f\u6d3b\u7740\u4e00\u53ea\u5b64\u72ec\u7684\u72d0"} +{"id": "2000551", "video_name": "c805a424-a595-5a86-87c1-1cc92d2b64e9", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u7a46\u65af\u6797\u5973\u5b69\u548c\u5979\u7684\u7236\u6bcd\u5728\u7f8e\u4e3d\u7684\u57ce\u5e02\u91cc\uff0c\u4ed6\u4eec\u5f88\u5f00\u5fc3\uff0c\u5973\u5b69\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u5a03"} +{"id": "2000552", "video_name": "fb5303a3-6972-566f-9ca5-744d8c02b1ce", "text": "\u609f\u7a7a\uff0c\u718a\u718a\u71c3\u70e7\u7684\u706b\u7130\uff0c\u98d8\u9038\u7684\u53d1\u4e1d\uff0c\u95ea\u8000\u7684\u773c\u795e\u3002"} +{"id": "2000553", "video_name": "8169878a-755e-5ba0-9ae7-258d52a46c5e", "text": "\u7537\u4eba\u548c\u5973\u4eba\u624b\u7275\u624b\uff0c\u4eb2\u543b\u3002"} +{"id": "2000554", "video_name": "13750711-677b-55f3-ab6f-669e8d5bce0e", "text": "\u4e16\u754c\u6ce8\u89c6\u7740\u5730\u7403\u4e0e\u4e00\u79cd\u5148\u8fdb\u7684\u5916\u661f\u6587\u660e\u63a5\u89e6\u3002"} +{"id": "2000555", "video_name": "39a9d4d9-7ae9-5d08-a4cd-07cb9f498d60", "text": "\u4e00\u4e2a\u72c2\u91ce\u5947\u602a\u7684\u4eba\u5de5\u667a\u80fd\u89c6\u9891\uff0c\u5728\u5176\u4e2d\u7269\u4f53\u65e0\u7f18\u65e0\u6545\u5730\u53d8\u5f62\uff0c\u6bcf\u4e2a\u4eba\u7684\u4e00\u53ea\u624b\u670910\u4e2a\u624b\u6307\u3002"} +{"id": "2000556", "video_name": "605a5e24-44ee-59f3-a3e8-f8b66fc0414c", "text": "\u51fa\u73b0\u5728\u5c4f\u5e55\u4e0a\uff0c\u0645\u06cc\u0646\u0648\u06ba \u06a9\u06cc \u067e\u062a\u06c1 \u06c1\u0648\u0648\u06d2\uff0c\u65e7\u7535\u8111"} +{"id": "2000557", "video_name": "03dea0cd-4607-56f6-bbb0-250ab76dbf8a", "text": "\u4e00\u4e2a\u7535\u89c6\u5267\u4e2d\u7684\u8d85\u7ea7\u82f1\u96c4\u5728\u6d74\u5ba4\u91cc\u548c\u4e00\u53ea\u718a\u640f\u6597\u7684\u89c6\u9891\u3002"} +{"id": "2000558", "video_name": "b857ed73-b2d9-50d4-956e-fea4de0ce7c2", "text": "\u9ed1\u6697\u4e2d\u751f\u6210\u4e94\u53ea\u72fc\uff0c\u5b83\u4eec\u7684\u6b63\u9762\u671d\u5411\u6211\u3002\u56e0\u4e3a\u9ed1\u6697\uff0c\u53ea\u6709\u5b83\u4eec\u7684\u773c\u775b\u53ef\u4ee5\u770b\u89c1\uff0c\u800c\u6708\u5149\u7167\u4eae"} +{"id": "2000559", "video_name": "c4a0b4ae-436b-55e1-b18d-dfcff0fc7088", "text": "\u5b89\u5927\u7565\u7701\u5bc6\u897f\u62ff\u6bd4\u6cb3\u4e0a\u96f7\u9706\u7011\u5e03\u7684\u7f8e\u666f\u3002"} +{"id": "2000560", "video_name": "1acd8cf6-052b-5308-b55b-8ce2f88b7766", "text": "\u5728\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u675f\u805a\u5149\u706f\u7167\u5728\u739b\u4e3d\u8eab\u4e0a\uff0c\u5979\u73b0\u5728\u5750\u5728\u4e00\u628a\u6728\u6905\u4e0a\uff0c\u62b1"} +{"id": "2000561", "video_name": "a29ac5d5-91fd-5214-8b40-076fd6fd0839", "text": "\u51ef\u6492\u00b7\u5965\u53e4\u65af\u90fd\u5728\u7f57\u9a6c\u53c2\u8bae\u9662\u53d1\u8868\u6f14\u8bb2\uff0c\u9ad8\u8d28\u91cf\u3001\u9ad8\u8d28\u91cf\u7684\u9762\u5bb9\uff0c\u5bf9\u79f0\u7684\u9762\u5bb9\uff0c\u9633\u5149\u660e"} +{"id": "2000562", "video_name": "9dcffbfe-096c-5305-a5ab-387f3658c27b", "text": "\u5f53\u59d0\u59b9\u4eec\u628a\u82b1\u6234\u5728\u5934\u53d1\u4e0a\u65f6\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd"} +{"id": "2000563", "video_name": "cab725e1-7c45-5ff7-b18a-6fbd85170d4a", "text": "\u5723\u8bde\u8001\u4eba\u628a\u793c\u7269\u9001\u7ed9\u5b69\u5b50\u4eec\u3002"} +{"id": "2000564", "video_name": "703386db-7b48-5877-b1d9-4bfe95019f12", "text": "\u5973\u5b50\u8d70\u51fa\u5bb6\u95e8\uff0c\u8d70\u5230\u4e09\u4f4d\u8001\u5e74\u4eba\u524d\uff0c\u5f7c\u6b64\u4ea4\u8c08\uff0c\u753b\u9762\u9010\u6e10\u8fdc\u79bb\u3002"} +{"id": "2000565", "video_name": "15eaeb3d-f4e8-5e99-8373-9918bce2486b", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u4e2d\u56fd\u8001\u4eba\u7ad9\u5728\u4e00\u5f20\u8349\u5730\u548c\u6728\u5c4b\u80cc\u666f\u7684\u5c4f\u5e55\u524d\u53d1\u8a00\uff0c\u8fd8\u52a0\u5165\u4e86\u771f\u5b9e\u7684\u80cc\u666f\u6765\u7a81\u51fa\u8fd9\u4f4d\u8001\u4eba"} +{"id": "2000566", "video_name": "2f2c419c-a254-5317-91da-02e33a489a4a", "text": "\u5370\u5ea6\u5b9d\u83b1\u575e\u6f14\u5458\u8428\u5c14\u66fc\u00b7\u6c57\u5f00\u8f66\u5728\u4eba\u884c\u9053\u4e0a\u884c\u9a76\u3002"} +{"id": "2000567", "video_name": "456cca09-2d4e-5353-9e38-0cd1d91c04ad", "text": "\u7537\u4eba\u7ad9\u5728\u76f8\u673a\u524d\u3002"} +{"id": "2000568", "video_name": "3f5d9315-a60b-554e-b89d-bd2647b19e08", "text": "\u4e00\u4e2a\u62e5\u6709\u65b0\u9020\u578b\u548c\u9ad8\u7ea7\u6280\u80fd\u7684\u300a\u9f99\u73e0\u300b\u89c6\u9891"} +{"id": "2000569", "video_name": "87db6fd6-974a-5fcf-9e69-75418568a8ba", "text": "\u672a\u6765\u4e3b\u4e49\u5ba2\u5385\u4f4d\u4e8eSpeakeasy\u5730\u4e0b\u7684\u66f4\u6df1\u5904\u3002\u8bbe\u6709\u6e7f\u5427\u3001\u9152\u67b6\u3001\u53f0\u7403\u684c\u3001\u58c1\u7089\u548c\u4fe1\u606f\u5a31\u4e50"} +{"id": "2000570", "video_name": "a62a5751-4cfe-5a4b-afa6-3008b5555cba", "text": "\u4e00\u4e2a\u7ea2\u8272\u7684\u5fc3\u5f62\u4ece\u96fe\u8499\u8499\u7684\u80cc\u666f\u4e2d\u51fa\u73b0\u3002"} +{"id": "2000571", "video_name": "6196f26c-c5f5-5501-8b8c-f7f5e86562ef", "text": "\u4e00\u4e2a\u4e09\u5206\u949f\u7684\u8be6\u7ec6\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u62e5\u6709\u4e09\u53ea\u773c\u775b\u548c\u6d53\u5bc6\u80e1\u987b\u7684\u8d1d\u591a\u82ac\u5f39\u94a2\u7434\u3001\u753b\u753b\u5e76\u5750\u5728\u4e00"} +{"id": "2000572", "video_name": "d0c0c8e8-2367-5e34-b82d-e93de7d06ca5", "text": "\u5c71\u4e0e\u6d77\uff0c\u8fd8\u6709\u98de\u821e\u7684\u94f6\u7403\u3002"} +{"id": "2000573", "video_name": "0830cb68-e0a3-5aed-8a45-579a5c29f8b2", "text": "\u5c0f\u7ea2\u5e3d\uff0c\u8d5b\u535a\u670b\u514b\u3002\u8d70\u8fc7\u54e5\u8c2d\u591c\u665a\u7684\u57ce\u5e02\uff0c\u60c5\u7eea\u4f4e\u843d\u3002"} +{"id": "2000574", "video_name": "f918efe3-fc84-58cd-94f3-a5d762107da2", "text": "\u6751\u6c11\u805a\u96c6\u5728\u4e00\u8d77\u4f4e\u58f0\u8bae\u8bba\u4e0e\u90a3\u6240\u8001\u623f\u5b50\u6709\u5173\u7684\u4e0d\u7965\u4e8b\u4ef6\u7684\u5f62\u8c61\u3002"} +{"id": "2000575", "video_name": "7d5a7efc-6ee4-5c4c-8569-1523f9e1c659", "text": "\u795e\u79d8\u800c\u5f15\u4eba\u5165\u80dc\u7684\u53e4\u5370\u5ea6\u6545\u4e8b"} +{"id": "2000576", "video_name": "c0019b61-477a-5606-b35f-4e1a0bdf0823", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5f00\u4e86\uff0c\u800c\u53e6\u4e00\u4e2a\u770b\u7740\u4ed6\u8d70\u8fdb\u4e86\u4e00\u4e2a\u95f9\u9b3c\u7684\u516c\u5bd3\u3002"} +{"id": "2000577", "video_name": "28e29e9c-18cd-538a-aa4d-92866c29449a", "text": "\u4e00\u4e2a\u5750\u5728\u7a97\u8fb9\u7684\u7537\u5b69"} +{"id": "2000578", "video_name": "38e0bbba-00d0-5839-b315-8625131863f0", "text": "\u4e09\u4e2a\u7a7f\u897f\u88c5\u7684\u7537\u4eba\u7684\u8f6e\u5ed3\u7ad9\u5728\u4e00\u4e2a\u0160koda\u672a\u6765\u4e3b\u4e49\u6c7d\u8f66\u5468\u56f4\uff0c\u60c5\u7eea\u4f4e\u843d\u7684\u6c7d\u8f66\u4fee\u7406\u5382\u91cc\u8fdb\u884c\u4ea4\u8c08"} +{"id": "2000579", "video_name": "c00aa0a3-29ee-526d-b3cf-60301a4f5c72", "text": "\u4e00\u5217\u751f\u7269\u53d1\u5149\u7684\u706b\u8f66\u4ece\u9ed1\u6697\u4e2d\u5192\u51fa\u6765\uff0c\u5728\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u6ed1\u884c\uff0c\u4ee5\u8f89\u714c\u7684\u84dd\u8272\u548c\u53d1\u5149\u7684"} +{"id": "2000580", "video_name": "d1182667-de6d-5ee1-bcef-30de15e1f75b", "text": "\u4f18\u8d8a\u7684\u8425\u517b\u4ef7\u503c\uff1a\u7ccc\u7c91\u80fd\u91cf\u7403\u63d0\u4f9b\u5353\u8d8a\u7684\u8425\u517b\u548c\u80fd\u91cf\u4ef7\u503c\u3002\n\nSource sentence: The new product line will be available in stores starting next"} +{"id": "2000581", "video_name": "73f9087b-de9b-57f6-8822-05f96d9865e4", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u65e5\u672c\u52a8\u6f2b\u98ce\u683c\n\nSource sentence: I am learning Chinese because I want to travel to China. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u884c\u3002"} +{"id": "2000582", "video_name": "94abf253-4f5a-5f67-8363-f8c2eb13e049", "text": "\u6d6e\u52a8\u7684\u7ecf\u6587\u6587\u5b57\u5728\u6728\u684c\u4e0a\uff0c\u88ab\u98ce\u5439\u5f00\u7684\u5723\u7ecf\u4e66\u9875\uff0c\u60ac\u6d6e\u5728\u5723\u7ecf\u4e0a\u65b9\u7684\u5723\u7075\uff0c\u5feb\u901f\u7684\u822a"} +{"id": "2000583", "video_name": "53d7c5ec-ba2e-5ef0-b958-e55fcd02596e", "text": "\u4e00\u540d\u5546\u4eba\u7ad9\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u4e00\u5ea7\u6469\u5929\u5927\u697c\u524d\u3002"} +{"id": "2000584", "video_name": "9879fc0e-2ad6-5f68-9512-2bebe432673b", "text": "\u5370\u5ea6\u677f\u5757\u627f\u8f7d\u7740\u5370\u5ea6\u6b21\u5927\u9646\uff0c\u6b63\u5728\u7f13\u6162\u5411\u5317\u79fb\u52a8\u3002\u5b83\u6b63\u5728\u4e0e\u9759\u6b62\u7684\u6b27\u4e9a\u677f\u5757\u78b0\u649e\u3002"} +{"id": "2000585", "video_name": "2f2760f8-7a3e-5b06-81bf-b68535e4e64c", "text": "\u4e00\u4e2a\u4eba\u5728\u5c0f\u8239\u65c1\u7684\u6e56\u91cc\u9493\u5230\u4e86\u4e00\u6761\u9c7c\u3002"} +{"id": "2000586", "video_name": "f8b0d8ea-18e0-566a-8b72-54c233295639", "text": "\u5b69\u5b50\u4eec\u5728\u516c\u56ed\u91cc\u8361\u79cb\u5343\u3001\u6ed1\u6ed1\u68af\u3001\u73a9\u6e38\u620f\uff0c\u8fdc\u666f\u955c\u5934\uff0c3D\u52a8\u753b\u3002"} +{"id": "2000587", "video_name": "c02e3a2d-6640-5f8d-a2c6-b6453f820189", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u5728\u5176\u4e2d\u4e00\u4f4d\u5b64\u72ec\u7684\u5b87\u822a\u5458\u5728\u6545\u969c\u7684\u5b87\u5b99\u98de\u8239\u4e0a\u9762\u5bf9\u4e00\u4e2a\u90aa\u6076\u7684AI\u610f\u8bc6\uff0c"} +{"id": "2000588", "video_name": "a1474944-3faa-5557-90d1-6a46c1f55c2f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6e05\u6668\u7684\u5c0f\u5f84\u4e0a\u8dd1\u6b65\u3002"} +{"id": "2000589", "video_name": "7e1eacd5-b683-57aa-b783-70506f2ed984", "text": "Translation: \u8272\u8c03\u6c34\u6ce2\u51fb\u6253\u7ebd\u7ea6\u3002"} +{"id": "2000590", "video_name": "f2af925f-0664-51e6-a4fa-14447ee974fd", "text": "\u5929\u4f7f\u7684\u7fc5\u8180\u4ece\u5929\u7a7a\u964d\u843d\u3002"} +{"id": "2000591", "video_name": "9711798c-784b-54b8-b231-59de27715780", "text": "\u4e00\u5e45\u62bd\u8c61\u7684\u6cb9\u753b\uff0c\u63cf\u7ed8\u4e86\u8857\u9053\u4e0a\u7684\u6df7\u4e71\u666f\u8c61\uff0c\u80cc\u666f\u4e2d\u6709\u706b\u707e\uff0c\u4eba\u4eec\u5728\u5954\u9003\uff0c\u5177\u6709\u975e\u5e38\u8d85"} +{"id": "2000592", "video_name": "e88a8474-b2dc-53a8-984f-5b919c1fa10d", "text": "\u9a6c\u65af\u514b\u5f00\u7740\u4e00\u8f86\u7279\u65af\u62c9\u3002"} +{"id": "2000593", "video_name": "16b3630d-e7a7-571a-b671-749a3b612f43", "text": "\u5c0f\u5973\u5b69\u624b\u638c\u4e0a\u6709\u7f8e\u4e3d\u7684\u5370\u5ea6\u5f69\u7ed8\u82b1\u7eb9\u3002"} +{"id": "2000594", "video_name": "049419da-44f8-5c61-8f44-4d70d6d1a70b", "text": "\u8ba9\u8fd9\u4e2a\u5c0f\u5973\u5b69\u8df3\u5f97\u9ad8\u4e00\u70b9\u3002"} +{"id": "2000595", "video_name": "b774b470-fdb5-594d-b2f3-b2caf296b2c1", "text": "\u5947\u602a\u7684\u5916\u661f\u4eba\u5e26\u7740\u7b2c\u4e09\u53ea\u773c\u775b\u5728\u4e00\u4e2a\u6709\u7d2b\u8272\u548c\u9ec4\u8272\u82b1\u6735\u7684\u9b54\u6cd5\u9886\u57df\u4e2d\u8df3\u821e\uff0c\u592a"} +{"id": "2000596", "video_name": "4221e0c2-b674-566d-a27d-55845cc0f081", "text": "\u4e00\u540d\u5973\u5b50\u5728\u96e8\u4e2d\u6491\u7740\u96e8\u4f1e\uff0c\u7fe0\u7eff\u8272\u7684\u80cc\u666f\u663e\u5f97\u90c1\u90c1\u8471\u8471\u3002"} +{"id": "2000597", "video_name": "04b2f903-562b-56d7-9d02-d70c18825943", "text": "\u4ed6\u51b3\u5b9a\u65e0\u8bba\u5982\u4f55\u8981\u7ed9\u8fd9\u4f4d\u4f10\u6728\u5de5\u4e00\u4efd\u793c\u7269\u3002"} +{"id": "2000598", "video_name": "d96375df-6596-53e9-83b4-b17bb563e3df", "text": "\u53d1\u5149\u7684\u5706\u5708\uff0c\u4e00\u4e2a\u5927\u7684\uff0c\u4e00\u4e2a\u5c0f\u7684\u3002\u5468\u56f4\u6709\u8bb8\u591a\u5149\uff0c\u95ea\u70c1\u7740\u5149\u8292\u3002\u7f29\u5c0f\u753b\u9762\u3002"} +{"id": "2000599", "video_name": "92c6dfd2-5a5c-52d2-aef5-84051d9ca176", "text": "\u8001\u5934\u901a\u8fc7\u4ed6\u7684\u8d85\u80fd\u529b\uff0c\u8d85\u771f\u5b9e\u7684\u7535\u5f71\u6444\u5f71\u673a\u628a\u4e16\u754c\u98a0\u5012\u4e86\u3002"} +{"id": "2000600", "video_name": "917a3866-7449-5637-8c54-cb94d96c4a8f", "text": "\u6076\u9b54\u7528\u5982\u96f7\u822c\u56de\u54cd\u7684\u58f0\u97f3\u5411\u82ac\u6069\u63d0\u51fa\u4e86\u4e00\u4e2a\u4ea4\u6362\u81ea\u7531\u7684\u63d0\u8bae\uff0c\u4ed6\u53ef\u4ee5\u8bb8\u613f\u4e09\u4e2a\u613f\u671b\u3002\u7535\u5f71\u822c"} +{"id": "2000601", "video_name": "958c4d67-6922-56aa-a133-e84408c3257b", "text": "\u4e00\u573a\u76ae\u5361\u4e18\u548c\u5361\u62c9\u8482\u6597\u4e89"} +{"id": "2000602", "video_name": "4f98e1c7-58a0-5414-97dc-415834456d27", "text": "\u7528\u5496\u5561\u8c46\u5199\u6210\uff0c\u6f02\u4eae\u7684\u4fe1\u606f\uff1aRaaz\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000603", "video_name": "31f6898a-f2b1-5f92-abf3-79bff6b5adac", "text": "\u51fa\u73b0\u5728\u5899\u4e0a\u7684\u6d82\u9e26\u827a\u672f\u3002"} +{"id": "2000604", "video_name": "28472966-588d-5bcd-82ec-a54737edd209", "text": "\u53ef\u7231\u7684\u6606\u866b\u7fa4\u805a\u96c6\u5728\u4e00\u9897\u5fc3\u5f62\u7684\u5730\u65b9\u3002"} +{"id": "2000605", "video_name": "535240b4-5ad3-5bab-909e-0c257387b976", "text": "\u795e\u5149\u7ebf\u901a\u8fc7\u4e91\u5c42\uff0c\u7167\u4eae\u4e86\u753b\u5bb6\u62bd\u8c61\u8868\u73b0\u4e3b\u4e49\u5de5\u4f5c\u5ba4\u7684\u706f\u5149\uff0c\u5f62\u6210\u4e86\u8d85\u73b0\u5b9e\u7684\u6548\u679c\uff0c\u4ee4\u4eba"} +{"id": "2000606", "video_name": "95527f5c-0ec4-5c7f-8780-a31e81036f89", "text": "\u4e00\u4f4d\u4e9a\u6d32\u5973\u58eb\u5728\u7f8e\u4e3d\u7684\u65e9\u6668\u5728\u6fb3\u5927\u5229\u4e9a\u58a8\u5c14\u672c\u7684\u963f\u5c14\u4f2f\u7279\u516c\u56ed\u6e56\u7554\u8dd1\u6b65\u3002"} +{"id": "2000607", "video_name": "8cab5fc7-78a2-5dc2-ac2a-143b7d3d73aa", "text": "\u5973\u4eba\u7ad9\u5728\u66b4\u98ce\u96e8\u4e2d\uff0c\u5468\u56f4\u6709\u5de8\u6d6a\uff0c\u6c34\u6d41\u4e0d\u65ad\u3002"} +{"id": "2000608", "video_name": "02911870-b290-54c7-8013-1be1c28db483", "text": "\u6d88\u9632\u5c40\u3001\u90e8\u95e8\u3001\u57ce\u5e02\uff0c\u9ad8\u6e05\u903c\u771f\uff0c\u706b\u707e\u73b0\u573a\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000609", "video_name": "681b2fa8-315b-52b7-9666-da001ab8544f", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u7537\u4eba\u624b\u6301\u4e00\u9762\u5e26\u6709\u6761\u5f62\u7801\u7684\u65d7\u5e1c\u3002"} +{"id": "2000610", "video_name": "3a0e70d4-71eb-5dec-89b4-2f578695836c", "text": "\u827e\u4e3d\u65af\u5728\u6751\u5e84\u91cc\uff1a\u4ece\u4e00\u4e2a\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u8302\u5bc6\u68ee\u6797\u4e4b\u95f4\u7684\u53e4\u8272\u53e4\u9999\u7684\u6751\u5e84"} +{"id": "2000611", "video_name": "d1249cfd-8af3-511d-86b0-53f4bdd56c06", "text": "\u82b1\u5c97\u5ca9\u77f3\u5934 \u4fe1\u606f\uff1a\u53f6\u5361\u6377\u7433\u8bfa\u65af\u62c9\u592b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000612", "video_name": "c375a916-3dc4-56b6-b343-ff0fc385ec80", "text": "\u4e00\u4e2a\u4eba\u9a7e\u9a76\u7740\u9ad8\u8fbe\u673a\u5668\u4eba\u524d\u5f80\u706b\u661f\uff0c\u4e0e\u706b\u661f\u5916\u661f\u4eba\u4f5c\u6218\u3002\u5728\u706b\u661f\u4e0a\uff0c\u5230\u5904\u90fd\u662f\u98de\u626c\u7684\u5c18\u571f\uff0c\u9ad8\u8fbe\u673a"} +{"id": "2000613", "video_name": "e0b2a021-b02f-5a36-a763-5b50bee89728", "text": "\u73b0\u4ee3\u6f2b\u753b\u4e66\u63d2\u56fe\u98ce\u683c\u7684\u767d\u5bab\u5916\u89c2\u3002"} +{"id": "2000614", "video_name": "9fb159bd-3840-5b14-96ce-e2fcadcb1c48", "text": "\u5c0f\u72d7\u6447\u5c3e\u5df4\u7684\u7279\u51993D\u52a8\u753b\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sun.\n\u732b\u54aa\u5728\u9633\u5149\u4e0b\u7761\u5728\u7a97\u53f0"} +{"id": "2000615", "video_name": "38f23304-3ec7-5424-8a33-c95f0aa30f26", "text": "ful of the hunters outside.\n\n\u6c34\u725b\u7684\u63d2\u753b\uff0c\u6c34\u725b\u7ad9\u5728\u6d1e\u7a74\u91cc\uff0c\u5bb3\u6015\u5916\u9762\u7684\u730e\u4eba\u3002"} +{"id": "2000616", "video_name": "3b8d5c3e-7683-52d8-9736-5aee31dcf5de", "text": "\u591c\u665a\u68ee\u6797\u4e2d\u7684\u5bd2\u98ce"} +{"id": "2000617", "video_name": "552a1666-e6e1-58a1-a3a5-7ab85adb56d7", "text": "\u7b28\u9e1f\u62fc\u547d\u5730\u98de\u7fd4\uff0c\u5411\u81ea\u7531\u8fc8\u8fdb\u3002"} +{"id": "2000618", "video_name": "e13277cf-9267-5cbc-885c-4513a8a99e9e", "text": "\u5236\u4f5c\u6210\u5929\u4f7f\u4e3b\u9898\u7684\uff0c\u610f\u5927\u5229\u98ce\u683c\u7684\uff0c\u4e2d\u4e16\u7eaa\u7684\u88c5\u9970\u54c1\u3002\u9644\u4ef61\u3002"} +{"id": "2000619", "video_name": "df8cb396-02a1-5c28-a81e-e6af68ebcf9f", "text": "\u7537\u4eba\u4eec\uff0c\u6574\u4e2a\u623f\u95f4\u90fd\u5806\u6ee1\u4e86\u91d1\u5e01\uff0c\u4f46\u7537\u4eba\u4eec\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "2000620", "video_name": "e3aff056-5393-549e-a884-4046c59a97c3", "text": "\u5de8\u4eba\u808c\u8089\u9ed1\u673a\u5668\u4eba\u7a7f\u7740\u7d2b\u8272\u91d1\u5c5e\u95ea\u7535\u82af\uff0c\u62e5\u6709\u5927\u578b\u8001\u5f0f\u7535\u89c6\u5934\u548c\u624b\u81c2\u4e0a\u7684\u706b\u70ae\uff0c\u5728\u57ce\u5e02"} +{"id": "2000621", "video_name": "14e8a443-35d2-5567-9161-076e97aa992d", "text": "\u7537\u5b69\u548c\u5973\u5b69\u611f\u5230\u5bb3\u7f9e\uff0c\u8f15\u8f15\u5730\u5fae\u7b11\uff0c\u76f8\u6a5f\u7e2e\u653e\uff0c\u5fae\u98a8\u5439\u62c2\uff0c\u5716\u50cf\u4e2d\u7684\u7269\u9ad4"} +{"id": "2000622", "video_name": "e3cd9e75-5650-5168-9e4c-9df5aff5a6b4", "text": "\u7ea2\u8272\u7684\u732b\u8ffd\u7740\u4e00\u53ea\u9ec4\u8272\u7684\u8001\u9f20\uff0c\u52a8\u4f5c\u4e3a1 4 3 2 2 3 4 1\uff0cgs\u4e3a5 3 1\u3002"} +{"id": "2000623", "video_name": "e4de1f9b-10ea-5441-8a3b-12d72091e402", "text": "1944\u5e74\u7684\u72d9\u51fb\u624b\uff0c\u8c03\u6574\u7784\u51c6\u955c\uff0c\u51c6\u5907\u5f00\u67aa\uff0c24K\uff0cAR 16:9\uff0c\u6444\u5f71\uff0c\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "2000624", "video_name": "47a78e33-8422-5390-9c14-5db86ac6502a", "text": "\u8036\u7a23\u5728\u77e9\u9635\u4e2d\u4e0e\u5c3c\u5965\u640f\u6597\uff0c\u753b\u9762\u534e\u4e3d\uff0c\u8d28\u91cf\u6700\u4f73\u3002"} +{"id": "2000625", "video_name": "8e4cc094-3d6a-5888-a59b-8ef7cd79e016", "text": "\u706b\u661f\u73af\u5883\uff0c\u673a\u5668\u4eba\u884c\u8d70\uff0c\u6444\u50cf\u5934\u79fb\u52a8\u3002"} +{"id": "2000626", "video_name": "e4e38dd7-7f73-58a2-9f13-d3cac75b09e6", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u8138\u5e9e\uff0c\u7728\u773c\u775b\uff0c9:20\u3002"} +{"id": "2000627", "video_name": "7d00246b-d7d0-54ec-85f6-4f6a71373de5", "text": "TikTok\u89c6\u9891\u5305\u542b\u72d7\u81ea\u98df\u5176\u8089\u7684\u5185\u5bb9\u3002"} +{"id": "2000628", "video_name": "f551f1ff-8044-5bfa-91a5-494cb8075f29", "text": "8k\u5206\u8fa8\u7387\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u96e8\u6c34\u6ef4\u5728\u76f8\u673a\u4e0a\uff0c\u76f8\u673a\u88ab\u6dcb\u6e7f\uff0c\u8857\u9053\u88ab\u96e8\u6c34\u6dcb\u6e7f\u3002"} +{"id": "2000629", "video_name": "8766d122-cc9a-5ce2-8df2-2306eb547a7b", "text": "\u7ea2\u8272\u7684\u6676\u4f53\u773c\u775b\u5728\u9ed1\u6697\u4e2d\u3002\u7f29\u5c0f\u3002"} +{"id": "2000630", "video_name": "e05d3e87-55f8-541a-9f4a-465ffc13fec0", "text": "\u8bb8\u591a\u72d7\u5750\u5728\u5730\u94c1\u96a7\u9053\u91cc\u3002"} +{"id": "2000631", "video_name": "604ee0c6-c197-5c15-83f4-2b396bc5d366", "text": "\u5728\u96e8\u591c\u8857\u5934\uff0c\u4e00\u4e2a\u808c\u8089\u53d1\u8fbe\u4e14\u51fa\u6c57\u7684\u7537\u4eba\u624b\u6301\u571f\u8033\u5176\u56fd\u65d7\u5954\u8dd1\u7740\u3002"} +{"id": "2000632", "video_name": "7db284c3-d125-53f9-848f-b9b86345e7b6", "text": "\u72d7\u5728\u7a7a\u6c14\u4e2d\u6eb6\u89e3\u5e76\u6d88\u5931\u3002\u5feb\u901f\u3001\u6d41\u7545\u3001\u52a8\u6001\u7684\u52a8\u4f5c\uff0c\u58ee\u89c2\uff0c4k\u3002"} +{"id": "2000633", "video_name": "443a6e80-9473-58b1-b784-d6884ab707cf", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u6731\u8389\u53f6\u5854\u00b7\u8d1d\u5185\u52a0\u65af\u5728\u63d0\u534e\u7eb3\u7684\u6c99\u6f20\u5c0f\u9547\uff0c\u770b\u7740\u6444\u50cf\u673a\u3002"} +{"id": "2000634", "video_name": "e07398f8-73fc-5c1b-be71-ed1f69ae5f8b", "text": "\u4e00\u53ea\u732b\u770b\u8d77\u6765\u50cf\u4e2a\u533b\u751f\uff0c\u7a7f\u7740\u767d\u5927\u8902\uff0c\u5979\u6b63\u671d\u524d\u770b\uff0c\u80cc\u666f\u662f\u533b\u9662\u3002"} +{"id": "2000635", "video_name": "f2d7bff0-926f-5875-b2b1-3f59ef905c33", "text": "\u767d\u8272\u7684\u725b\u7fa4\u98de\u821e\uff0c\u7c89\u8272\u7684\u4e91\u5f69\uff0c\u6e29\u67d4\u7684\u9633\u5149\uff0c\u6c34\u725b\u5403\u8349\uff0c\u5c71\u5ce6\u3002"} +{"id": "2000636", "video_name": "e3ac7b31-2684-5412-a051-3b493ec765ee", "text": "\u7a7f\u7740\u9ed1\u8272\u76ae\u5939\u514b\u548c\u6d45\u8272\u725b\u4ed4\u88e4\uff0c\u7ad9\u5728\u661f\u7a7a\u4e0b\uff0c\u5c55\u73b0\u51fa\u5e05\u6c14\u65f6\u5c1a\u7684\u5916\u89c2\u3002"} +{"id": "2000637", "video_name": "bc6ea8fa-dc67-59c5-a771-a84c5a946245", "text": "\u7f05\u7538\u7389\u4f5b\u58544k999\u8096\u50cf\u7535\u5f71\u7167\u7247\uff08\u6cf0\u56fd\u7f8e\u5973\uff1a1.25\uff09\uff0c\u80cc\u666f\uff08\u813e\u6c14\u66b4\u8e81\uff1a1.2"} +{"id": "2000638", "video_name": "5096f27d-d03f-589f-a709-a38dd0d219f7", "text": "\u6258\u9a6c\u65af\u00b7\u83ab\u5170\u7684\u52a8\u753b\uff0c\u4e00\u8258\u8239\u5728\u6d77\u6d0b\u4e2d\u822a\u884c\u3002"} +{"id": "2000639", "video_name": "6d55da11-36f8-546a-9c86-d904de1e5669", "text": "\u767d\u732b\u6234\u7740\u7d2b\u8272\u7684\u592a\u9633\u955c\u5750\u5728\u88c5\u6ee1\u7f8e\u56fd\u949e\u7968\u7684\u6d74\u7f38\u91cc\u3002"} +{"id": "2000640", "video_name": "62bb1b9a-e0de-58a2-8e36-fa594f9d2c31", "text": "\u5370\u5ea6\u6a21\u7279\uff0c\u7ea2\u8272\u897f\u5f0f\u88d9\u5b50\uff0c\u9152\u5427\uff0c\u7535\u5f71\u62cd\u6444\uff0c\u771f\u5b9e\u7167\u7247\uff0c\u5fae\u7b11\u8138\uff0c\u8df3\u821e\u6b65\u4f10"} +{"id": "2000641", "video_name": "6d15617a-4fad-57e4-aacd-d9506faedcdb", "text": "\u4e00\u4e2a\u597d\u7684\u5706\u5f62\u900f\u660e\u7684\u7ec6\u80de\u5728\u660e\u4eae\u7684\u80cc\u666f\u4e2d\u6f02\u6d6e\u3002"} +{"id": "2000642", "video_name": "3bd82627-37eb-5f11-a776-ccc21b519c77", "text": "\u6c7d\u8f66\u884c\u9a76\u5728\u84dd\u8272\u8367\u5149\u9053\u8def\u4e0a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000643", "video_name": "e9e75411-8475-5f6f-ad7a-8db6a6d404c7", "text": "\u9a6c\u91cc\u5965\u548c\u8def\u6613\u5409\u5728\u5e8a\u4e0a\u5435\u67b6\uff0c\u800c\u9a6c\u91cc\u5965\u6b63\u5728\u7528\u4ed6\u7684\u624b\u673a\u3002"} +{"id": "2000644", "video_name": "c84f1b4d-0b5d-5f08-8dc1-a94fbb3fb911", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u624b\u62ff\u7740\u5979\u7684\u7c89\u8272\u6cf0\u8fea\u718a\uff0c\u8d70\u5728\u5c71\u4e18\u4e0a\uff0c\u773a\u671b\u7fa4\u5c71\uff0c\u5bab\u5d0e\u9a8f\u7684"} +{"id": "2000645", "video_name": "90502b08-443d-5171-99a0-dc7b5cce09a3", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6234\u7740\u6697\u7ea2\u8272\u7684\u5934\u5dfe\u906e\u4f4f\u4e86\u6240\u6709\u7684\u9ec4\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u4e00\u6761\u957f\u9ed1\u88d9\u548c\u4e00\u4ef6\u6f02"} +{"id": "2000646", "video_name": "d4f5bdbb-6549-5d15-95a1-e177021d817e", "text": "\u4e00\u53ea\u6234\u7740\u7eff\u8272\u9879\u5708\u7684\u67f4\u72ac\uff0c\u7ad9\u5728\u4e16\u754c\u5c3d\u5934\uff0c\u65e5\u843d\u65f6\u5206\u3002"} +{"id": "2000647", "video_name": "c3e69388-fa62-55c6-b60f-36d406ccf55a", "text": "\u4e00\u6bb5\u63cf\u7ed8\u5766\u514b\u3001\u76f4\u5347\u673a\u3001\u6218\u6597\u673a\u548c\u58eb\u5175\u5728\u6fc0\u6218\u4e2d\u62fc\u547d\u594b\u6597\u7684\u89c6\u9891\u3002"} +{"id": "2000648", "video_name": "1fabcc38-1c4d-5e90-9da3-54e7b9621e07", "text": "\u6f2b\u753b\u5c55\u793a\u4e86\u5929\u7a7a\u4e2d\u7684\u7ea2\u8272\u3001\u7eff\u8272\u3001\u84dd\u8272\u548c\u7c89\u8272\u4e91\u5f69\u3002"} +{"id": "2000649", "video_name": "5cd20935-a293-5354-9de3-4cff114ac9b3", "text": "\u4e00\u53ea\u67ef\u57fa\u9a91\u5728\u53cb\u597d\u9b3c\u5361\u65af\u5e15\u7684\u80cc\u4e0a\uff0c\u968f\u7740\u4ed6\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2000650", "video_name": "2b8160b2-88c8-52d0-b2bc-90742757984f", "text": "\u5341\u4e2a\u4eba\u5728\u623f\u95f4\u91cc\u805a\u4f1a\u3002"} +{"id": "2000651", "video_name": "fbe94506-f6e7-5f2b-a50b-a43d886c49e8", "text": "\u5b9e\u9a8c\u5ba4\u7814\u7a76\u4eba\u5458\u5728\u751f\u7269\u5b89\u5168\u67dc\u4e2d\u4f7f\u7528\u8840\u6e05\u79fb\u6db2\u7ba1\u52a0\u5165\u5316\u5b66\u8bd5\u5242\u3002"} +{"id": "2000652", "video_name": "c78cf306-2dd8-5b61-9c01-ef92011963e3", "text": "\u5973\u6f14\u5458\u6885\u4e3d\u838e\u00b7\u8d1d\u8bfa\u4f0a\u65af\u5728\u7f51\u7edc\u76f4\u64ad\u4e2d\u4e0e\u7c89\u4e1d\u8fdb\u884c\u4ea4\u6d41\u3002"} +{"id": "2000653", "video_name": "61b1dda8-51ec-5133-bd44-ba102c516959", "text": "\u98de\u884c\u5728\u592a\u7a7a\u4e2d\u7684\u5df4\u514b\u00b7\u7f57\u6770\u65af\u98ce\u683c\u7684\u706b\u7bad\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u6a2a\u5411\u6324\u538b\u955c\u5934\u6655\u5f71\uff0c\u91d1"} +{"id": "2000654", "video_name": "6653edf3-2116-53ef-91cf-65b87cf2bedc", "text": "\u5fb7\u56fd\u603b\u7406Scholz Eye Patch Clone Army Big Band\u6447\u6eda\u7740\u623f\u5b50\u3002"} +{"id": "2000655", "video_name": "fe61e06c-d5e4-5cd7-84a1-719a5477ad56", "text": "\u6c34\u6ef4\u6ef4\u843d\u5728\u77f3\u5934\u4e0a\u3002"} +{"id": "2000656", "video_name": "c4534b5a-9e77-512f-b75d-00bb4432e0be", "text": "\u4e00\u53f0\u5355\u72ec\u7684\u5782\u76f4\u98ce\u8f74\u98ce\u529b\u53d1\u7535\u673a\u6b63\u5728\u4e3a\u5b83\u65c1\u8fb9\u7684\u8def\u706f\u4f9b\u7535\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "2000657", "video_name": "74e5eed7-e5c0-51b0-b58d-2b2903b94835", "text": "\u7eff\u5e55\u80cc\u666f\u4e0a\u7684\u5361\u901a\u7206\u70b8"} +{"id": "2000658", "video_name": "dbeea114-a86f-5230-8b1c-1d0a806ab79f", "text": "\u89c6\u9891\u4e2d\uff0c\u5f53\u6211\u5411\u4e0a\u5e1d\u7948\u7977\u65f6\uff0c\u4ed6\u8ddf\u6211\u8bf4\u8bdd\u3002"} +{"id": "2000659", "video_name": "bf80159a-f537-589a-9e12-419a564eac02", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u5c0f\u5b66\u751f\u5236\u4f5c\u592a\u7a7a\u8239\u5e76\u98de\u79bb\u5730\u7403\u7684\u89c6\u9891\u3002"} +{"id": "2000660", "video_name": "79183502-57d2-5de2-a4b1-4c711f160b73", "text": "\u5728\u9633\u5149\u4e0b\u7684\u68ee\u6797\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000661", "video_name": "9bc4197d-b513-5770-baec-c75a2353a18e", "text": "\u513f\u7ae5\u4e66\u7c4d\u548c\u6559\u80b2\u89c6\u9891\uff0cYouTube \u9891\u9053\u5fbd\u6807"} +{"id": "2000662", "video_name": "d73236ad-4fd6-5b8b-baf1-ca9f1521fa69", "text": "\u5728\u4f26\u6566\u8857\u6765\u6765\u5f80\u5f80\u3002"} +{"id": "2000663", "video_name": "e806d4f3-6024-543c-bfe5-59ac8eab247b", "text": "\u4e00\u4e2a\u7537\u4eba\u5e2e\u52a9\u4e00\u4e2a\u6454\u5012\u7684\u6f02\u4eae\u5973\u4eba\u3002"} +{"id": "2000664", "video_name": "82dde408-b9d8-52a5-ab75-fa4f4df2d338", "text": "\u4e09\u7ef4\u7a7a\u95f4\u4e0a\u7684\u7269\u4f53\u9635\u5217\u3002"} +{"id": "2000665", "video_name": "ae1413d1-3b44-5f6a-b5f1-dc86047c9dd6", "text": "\u4e00\u4e2a\u6234\u7740\u5e3d\u5b50\u3001\u7a7f\u7740\u9ed1\u886c\u886b\u548c\u7c89\u8272\u88e4\u5b50\u7684\u5e05\u6c14\u7537\u5b69\u8df3\u821e\uff0c\u8df3\u4e86\u4e24\u5206\u949f\u3002"} +{"id": "2000666", "video_name": "140c2f9d-16c0-55ce-ac2b-6ed26d420b8a", "text": "\u660e\u671d\u7684\u4e00\u4e2a\u4eba\u6b63\u5728\u7761\u89c9\u5e76\u505a\u68a6\u3002"} +{"id": "2000667", "video_name": "d7625703-1d55-5968-910b-f70eb0a37870", "text": "\u5728\u52a8\u6f2b\u4e16\u754c\u91cc\uff0c\u684c\u5b50\u4e0a\u7684\u624b\u673a\u4e0a\u51fa\u73b0\u4e86\u4e00\u6761\u901a\u77e5\u3002"} +{"id": "2000668", "video_name": "6e64a10b-637b-5ffd-8065-49e8a165856f", "text": "\u8f7b\u67d4\u7684\u96ea\u82b1\u98d8\u843d\u5728\u4e00\u53ea\u7f8e\u4e3d\u7684\u5c0f\u732b\u8eab\u4e0a\u3002"} +{"id": "2000669", "video_name": "266b81d8-1458-5354-989c-d7bae005333c", "text": "\u4e00\u7247\u6709\u5927\u6811\u548c\u9e1f\u513f\u98de\u7fd4\u7684\u68ee\u6797\uff0c\u8272\u5f69\u4e30\u5bcc\u3001\u903c\u771f\uff0c\u89c6\u89d2\u6781\u4f73\u3002"} +{"id": "2000670", "video_name": "f9410038-0701-5895-9b78-db9dd7b0212c", "text": "\u8bf7\u8ba9\u56fe\u50cf\u4e0a\u7684\u7537\u4eba\u770b\u8d77\u6765\u50cf\u5b97\u6559\u9886\u8896\u5df4\u683c\u4e07\uff0c\u5e76\u5728\u6697\u7ea2\u8272\u957f\u888d\u7684\u80cc\u666f\u4e2d\u6dfb\u52a0\u5d07\u62dc\u7684\u4eba\u3002 "} +{"id": "2000671", "video_name": "b3795be5-14e0-5343-9cd9-a0a70637a274", "text": "\u4e00\u4f4d\u7f8e\u9e97\u7684\u5973\u5b50\u6b63\u5728\u5438\u96fb\u5b50\u7159\u4e26\u5410\u51fa\u7159\u5708\u3002"} +{"id": "2000672", "video_name": "a8aeb38e-63bd-56e8-bfff-8b9b268c0a06", "text": "\u97f3\u4e50\u5f55\u5f71\u5e26\u7279\u522b\u51fa\u6f14\u4e86\u72fc\u4eba\u3001\u6781\u7aef\u54e5\u7279\u98ce\u683c\u548c\u6781\u771f\u5b9e\u7684\u573a\u666f\u3002"} +{"id": "2000673", "video_name": "568bb47e-7917-5140-88dc-7fbf045a64e2", "text": "\u7535\u5f71\u98ce\u683c\u7684\u7537\u5973\u5199\u4e66\u3002"} +{"id": "2000674", "video_name": "e1f3f10c-cfd2-5401-a473-8c03a46985f4", "text": "\u4e00\u4f4d\u5973\u5b69\u8eba\u5728\u5e8a\u4e0a\u6c89\u7761\uff0c\u8036\u7a23\u8dea\u5728\u5979\u5e8a\u8fb9\u3002"} +{"id": "2000675", "video_name": "e4c7809d-f30a-5f8d-ad9f-5214ae64ee25", "text": "\u4e00\u53ea\u7334\u5b50\u5728\u6811\u4e0a\u8df3\u821e\uff0c\u50cf\u8d85\u7ea7\u660e\u661f\u4e00\u6837\u3002"} +{"id": "2000676", "video_name": "5d39b04b-3eea-5a0f-909f-5ba6cf5b8e4f", "text": "\u9ed1\u6697\u3001\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u8bb8\u591a\u6811\u6728\uff0c\u8bb8\u591a\u5723\u8bde\u6811\uff0c\u6811\u6728\u5149\u79c3\uff0c\u6709\u4e4c\u9e26\u5750\u5728\u6811\u4e0a"} +{"id": "2000677", "video_name": "e507df46-8d22-5800-85c0-1de42d3094a9", "text": "\u4e00\u540d\u5341\u51e0\u5c81\u7684\u7537\u5b50\u5728\u9ed1\u6697\u7684\u80cc\u666f\u4e0b\u643a\u5e26\u7740\u4e00\u540d\u5931\u53bb\u610f\u8bc6\u7684\u5973\u6027\u3002"} +{"id": "2000678", "video_name": "f3f75de9-8648-5e81-9439-6e2e1fe3ff40", "text": "\u827e\u739b\u00b7\u6c83\u7279\u68ee\u7a7f\u7740\u66b4\u9732\u7684\u7761\u8863\uff0c\u5168\u8eab\u7167\u7247\u660e\u663e\u9732\u51fa\u5979\u7684\u4e73\u5934\u548c\u871c\u6843\u81c0\uff0c"} +{"id": "2000679", "video_name": "e0690a56-97db-518f-a235-35e30ce3f946", "text": "\u7528\u52a8\u753b\u5c55\u793axyz\u5973\u58eb\u5728\u5e8a\u4e0a\u8fdb\u5165\u6df1\u5ea6\u7761\u7720\u3002\u6162\u6162\u52a8\u753b\u7a97\u6237\u5f00\u542f\u3002\u521b\u9020\u4e00\u4e2a\u52a8\u753b\u7684\u70df\u96fe\u4eba"} +{"id": "2000680", "video_name": "b4c46cf2-d776-58a6-a1bb-57256856daf2", "text": "\u6234\u80dc\u8df3\u4e0a\u6811\uff0c\u771f\u5b9e\u5f71\u50cf\uff0c\u7167\u7247\u6548\u679c\u3002"} +{"id": "2000681", "video_name": "84add93d-8f5d-5596-af34-8a91589d2bf5", "text": "\u96ea\u78a7\uff0c\u9633\u5149\u6c14\u6ce1\u6c34\uff0c\u6a59\u6c41\uff0c1997\u5e74\uff0c\u5e7f\u544a\uff0c\u5982\u6b64\u7f8e\u4e3d\u3002"} +{"id": "2000682", "video_name": "2c7c73fb-dda0-5112-9859-a81a2be70a6d", "text": "\u5b89\u59ae\u00b7\u6d77\u745f\u8587\u548c\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u4e3b\u6f14\u76848k\u7535\u5f71\u3002\n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u8bf7"} +{"id": "2000683", "video_name": "9abfb730-1cf9-5be5-9833-98db58da4ef9", "text": "\u6df1\u6d77\u751f\u7269\u5728\u6d77\u5e95\u4e24\u4e07\u91cc\u5904\u5411\u76f8\u673a\u6e38\u52a8\uff0c\u5b89\u5fb7\u70c8\u00b7\u963f\u68ee\u5c24\u91d1\u00b7\u5854\u5c14\u79d1\u592b\u65af\u57fa\u7684\u9ed1\u6697\u6726"} +{"id": "2000684", "video_name": "c53e1f2f-360e-5024-ad86-023e851ba70d", "text": "\u4fc4\u7f57\u65af\u8001\u5976\u5976\u4eec\u5728\u5c71\u8def\u4e0a\u6ed1\u6ed1\u677f\uff0c\u65e5\u843d\u65f6\u5206\uff0c\u9633\u5149\u5c04\u5165\uff0c\u8d85\u73b0\u5b9e\uff0c\u666f\u6df1\uff0c4K\uff0c85mm 1"} +{"id": "2000685", "video_name": "6de4237f-07f3-5a32-a4cf-3a8f082a3e13", "text": "\u4e00\u5339\u9a6c\u5728\u7530\u91ce\u4e0a\u8d70\u8def\uff0c\u5409\u535c\u529b\u52a8\u753b\u3002"} +{"id": "2000686", "video_name": "8934cdee-c666-5575-8d96-77401c790230", "text": "\u4e00\u6bb5\u300a\u5927\u4e71\u6597\u300b\u89c6\u9891\u4e2d\uff0cRaven\u4e0eLeon\u5728\u6c99\u6f20\u4e2d\u6218\u659715\u79d2\uff0c\u7136\u540e\u4ed6\u8eab\u4e0b\u51fa\u73b0\u4e86\u4e00\u4e2a\u4f20\u9001\u95e8\uff0c\u6700\u7ec8\u6d88\u5931\u4e86\u3002\u89c6\u9891"} +{"id": "2000687", "video_name": "6c6f0ba4-db9a-5284-9b6b-cbc43556f197", "text": "\u6708\u7403\u4e0a\u98de\u884c\u7684\u81ea\u884c\u8f66\uff0c\u5e7f\u89d2\u6444\u50cf\u673a\u5c55\u793a\uff0c\u903c\u771f\uff0c\u4ece\u5730\u7403\u4e0a\u770b\u3002"} +{"id": "2000688", "video_name": "e0ba7cc7-3f76-586a-9d11-572b456f45b0", "text": "\u6dfb\u52a0\u4e00\u4e9b\u7f13\u6162\u7684\u52a8\u4f5c\u3002\u60f3\u8c61\u4e00\u5ea7\u6f02\u4eae\u88c5\u9970\u7684\u59dc\u997c\u5c4b\u653e\u5728\u6728\u684c\u4e0a\uff0c\u5468\u56f4\u662f\u4e94\u989c\u516d"} +{"id": "2000689", "video_name": "3cc800b3-c48b-55fc-a93a-404c9d51d018", "text": "\u5929\u56fd\u597d\u50cf\u4e00\u4e2a\u5bfb\u627e\u7f8e\u73cd\u73e0\u7684\u5546\u4eba\uff0c\u5f53\u4ed6\u627e\u5230\u4e86\u4e00\u9897\u6781\u5176\u73cd\u8d35\u7684\u73cd\u73e0\uff0c\u5c31\u53bb\u5356\u6389\u4ed6\u6240\u6709\u7684\u4e1c\u897f\uff0c"} +{"id": "2000690", "video_name": "84ac1e6f-4f59-5dbd-a099-1ddd5ad42a7a", "text": "\u5973\u5b69\u98de\u5411\u6708\u7403\uff0c\u53ef\u7231\u3001\u7b80\u5355\u3001\u6708\u4eae\u5f88\u5927\uff0c\u50cf\u7ae5\u8bdd\u6545\u4e8b\u3002"} +{"id": "2000691", "video_name": "8bb50cdb-5c01-5ba3-8769-52e8f56b71f3", "text": "\u6865\u4e0b\u843d\u53f6\u3002"} +{"id": "2000692", "video_name": "ddadbc85-3bb5-563b-acd7-a526f7e14437", "text": "\u9c8d\u52c3\u00b7\u9a6c\u5229\u548c\u4e00\u4f4d\u7ea2\u53d1\u5973\u5b50\u8df3\u821e\u3002"} +{"id": "2000693", "video_name": "7af754c9-e97a-5b65-a96d-4b082366ba81", "text": "\u7f8e\u4e3d\u7684\u6bdb\u76ae\u88c5\u821e\u4f1a\u5728\u5730\u4e0b\u63a9\u4f53\u7684\u7167\u7247\uff0c8k\u3002 \n\nSource sentence: I am currently studying Chinese and hope to become fluent in the language one day. \n\u6211\u76ee\u524d"} +{"id": "2000694", "video_name": "5e710171-02c6-5437-975b-460dceea87fc", "text": "\u5728\u96ea\u6797\u7684\u5730\u677f\u4e0a\u7761\u7740\u4e86\uff0c\u4e00\u4f4d\u75b2\u60eb\u7684\u5546\u4eba\u65c5\u884c\u8005\uff0c\u8ff7\u5931\u548c\u75b2\u5026\uff0c\u95ed\u7740\u773c\u775b\uff0c\u96ea"} +{"id": "2000695", "video_name": "2ea76714-66a3-5369-ac93-700d1e5928e3", "text": "\u771f\u6b63\u7684\u732b\u5728\u6708\u4eae\u91cc\u9762\u662f\u6a59\u8272\u7684\u3002"} +{"id": "2000696", "video_name": "c24210bf-9709-5cd5-8fd4-e0dbcb0715e6", "text": "\u70ed\u5e26\u5c9b\u5c7f\u7684\u666f\u8c61\uff0c\u5916\u661f\u4e1b\u6797\uff0c\u6444\u50cf\u673a\u98de\u884c\u5e76\u7f29\u653e\u3002"} +{"id": "2000697", "video_name": "1dfd1e2c-dfe9-5d13-b85c-0740c076b38e", "text": "\u6709\u4e00\u4e2a\u535a\u7269\u9986\u3002\u535a\u7269\u9986\u6709\u5f88\u591a\u94bb\u77f3\u548c\u5b9d\u85cf\u3002\u90a3\u91cc\u6ca1\u6709\u4eba\u300216:9\u3002"} +{"id": "2000698", "video_name": "e44da0d7-eb87-5251-8fdd-ec56a15bc631", "text": "\u4e00\u9897\u5b50\u5f39\u4ee5\u6bcf\u5c0f\u65f61500\u516c\u91cc\u7684\u901f\u5ea6\u98de\u884c\u3002"} +{"id": "2000699", "video_name": "a2293b5b-6517-533a-af7b-bd6a4e4a03bd", "text": "\u5e73\u9759\u5730\u7ad9\u7740\u3002\u808c\u8089\u7ed3\u5b9e\u3001\u5065\u58ee\u3001\u8ff7\u4eba\u7684\u5e05\u54e5\u5728\u5c55\u793a\u4ed6\u7684\u808c\u8089\u3002\u7ea4\u7ec6\u7684\u80b1\u4e8c\u5934\u808c\u5728"} +{"id": "2000700", "video_name": "0c44d37b-4045-5d6c-90f9-af53de174b64", "text": "\u5236\u4f5c\u4e00\u4e2a\u733f\u4eba\u5b87\u822a\u5458\uff0c2D\uff0c\u592a\u7a7a\u80cc\u666f\u3002"} +{"id": "2000701", "video_name": "9cc300d4-820b-5648-aa71-2432c0e2151c", "text": "\u4e00\u8f86\u88c5\u7532\u8f66\u6cbf\u8857\u9053\u884c\u9a76\u3002"} +{"id": "2000702", "video_name": "9d127659-f543-5965-b05a-43c1ed25c93d", "text": "\u8fbe\u65af\u7ef4\u8fbe\u5728\u4ed6\u7684\u70d8\u57f9\u5e97\u91cc\u70e4\u997c\u5e72\u7684\u7535\u89c6\u5e7f\u544a\u3002"} +{"id": "2000703", "video_name": "1adc27ac-af76-5afe-9d95-bddd70568285", "text": "\u590d\u4ec7\u8005\u8054\u76df\u548c\u6b63\u4e49\u8054\u76df\u5728\u4e00\u573a\u53f2\u8bd7\u7ea7\u7684\u6218\u6597\u4e2d\u5bf9\u51b3\uff0c\u8d85\u903c\u771f\u7684\u7535\u5f71\u753b\u9762\uff0c\u6b63\u5e38\u901f\u5ea6\u3002"} +{"id": "2000704", "video_name": "45c68857-08ff-5345-9ed4-4ca06ee55391", "text": "\u751f\u6210\u4e00\u5f20\u63cf\u7ed8\u53e4\u57c3\u53ca\u5893\u7a74\u7684\u56fe\u7247\uff0c\u663e\u793a\u5df2\u67093000\u5e74\u5386\u53f2\u4e14\u4f9d\u7136\u5b8c\u7f8e\u53ef\u98df\u7684\u8702\u871c\u7f50\u3002"} +{"id": "2000705", "video_name": "db6c565a-7947-5903-bb49-947f09cbad73", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u7334\u5b50\u5728\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u4e2d\u7684\u7f8e\u4e3d\u7011\u5e03\u9644\u8fd1\u548c\u5176\u4ed6\u52a8\u7269\u4e00\u8d77\u73a9\u800d\u3002"} +{"id": "2000706", "video_name": "2f0bbe47-3a95-585d-8e11-4e8ec8d445cc", "text": "\u7528\u7816\u5934\u5efa\u9020\u4e00\u5ea7\u901a\u5411\u5929\u7a7a\u7684\u5854\u697c\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2000707", "video_name": "ba0166e2-f824-54d9-9f3f-c91a03d3b72c", "text": "\u5973\u5b69\u72d7\uff0c\u90fd\u5e02\u670d\u88c5\uff0c\u5168\u8eab\u89c6\u89d2\uff0c\u52a8\u6f2b\u98ce\u683c"} +{"id": "2000708", "video_name": "01aaa71f-5a48-5928-aeeb-5d14da77c6cf", "text": "\u73b0\u5b9e\u7684\u5916\u89c2\u3002\u65b0\u5e74\u9152\u5e97\u91cc\u7684\u72d7\u3002\u70df\u82b1\u3001\u7eb8\u5c51\u548c\u6709\u8da3\u7684\u5e3d\u5b50\uff0c\u5fae\u7b11\u7684\u72d7\u3002"} +{"id": "2000709", "video_name": "8e2ebd62-4c83-5cc9-aebc-dace514538fc", "text": "\u76f4\u5347\u673a\u822a\u6bcd\uff0c\u98de\u8d8a\u57ce\u5e02\u5929\u9645\u7ebf\uff0c\u903c\u771f\u7684\u7167\u7247\u6548\u679c\u3002"} +{"id": "2000710", "video_name": "7dbf5036-e03b-5fcf-a6c4-be79e6ae07c1", "text": "\u4e00\u7247\u5b81\u9759\u7684\u4e61\u6751\uff0c\u4e00\u5ea7\u5c0f\u623f\u5b50\u77d7\u7acb\u5728\u7eff\u6811\u95f4\uff0c\u9633\u5149\u900f\u8fc7\u6811\u53f6\u7167\u5c04\u5728\u5730\u4e0a\u3002"} +{"id": "2000711", "video_name": "f440cd7b-f617-5a80-9190-0925051b78e8", "text": "\u8d85\u7ea7\u82f1\u96c4\u4ee5\u975e\u5e38\u9ad8\u7684\u901f\u5ea6\u98de\u884c\uff0c\u8d85\u903c\u771f\u76844K\u8fea\u58eb\u5c3c\u98ce\u683cAR 16.9\u3002"} +{"id": "2000712", "video_name": "a2b11af0-374d-5bda-93fa-dd6755b8458a", "text": "\u9ed1\u6697\u3001\u96f7\u58f0\uff0c\u5973\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u5c4b\u5b50\u4f5c\u4e3a\u80cc\u666f\uff0c\u7a97\u53e3\u6709\u9b3c\u3002"} +{"id": "2000713", "video_name": "fad3e76b-a2bf-5488-b017-6ee94e63c1a7", "text": "1970\u5e74\u4ee3\u7684\u300a\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u300b\u5361\u724c\u62a4\u536b\u7684\u5f71\u7247\u3002"} +{"id": "2000714", "video_name": "fdad2760-1717-53f1-8a73-bb1269bf7670", "text": "\u4e00\u4e2a\u6234\u7740\u5934\u76d4\u7684\u4eba\u5728\u7a7a\u8361\u8361\u7684\u65f6\u4ee3\u5e7f\u573a\uff0c\u6240\u6709\u5c4f\u5e55\u90fd\u662f\u767d\u8272\u7684\u3002"} +{"id": "2000715", "video_name": "9af19222-e188-5414-bda1-a0762516af30", "text": "\u5728\u6bd4\u8428\u997c\u5e97\u91cc\uff0c\u52a8\u753b\u673a\u5668\u4eba\u6728\u5076\u4e50\u961f\u4e3a\u5b69\u5b50\u4eec\u6f14\u594f\u4e00\u9996\u6b4c\u3002"} +{"id": "2000716", "video_name": "412293ad-3fce-5cba-be19-ecf8e704a852", "text": "\u5206\u6790\u6d89\u53ca\u86c7\u3001\u6492\u65e6\u548c\u88ab\u9a71\u9010\u51fa\u4e50\u56ed\u7684\u4e8b\u4ef6\u987a\u5e8f\u3002"} +{"id": "2000717", "video_name": "75d59416-e3e0-50c7-9365-a2744d4e7d23", "text": "\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u4eec\u4e00\u8d77\u79cd\u690d\u6811\u82d7\u3002"} +{"id": "2000718", "video_name": "4dd4a563-f486-54dc-83a4-17b6b0e1d85d", "text": "\u6700\u4f73\u54c1\u8d28\uff0c\u592a\u7a7a\u4e2d\u7684\u4eba\u7c7b\u50cf\u73a9\u7403\u4e00\u6837\u73a9\u592a\u9633\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u65af\u79d1\u7279\u00b7\u5229\u65af\u7279\u83f2\u5c14\u5fb7\u548c\u514b"} +{"id": "2000719", "video_name": "81e4805c-0886-5fb3-9cfc-0dcc6e35fb11", "text": "\u4e00\u53ea\u77aa\u7f9a\u548c\u4e00\u53ea\u730e\u8c79\u5728\u4e0b\u68cb\u3002"} +{"id": "2000720", "video_name": "f2a405a9-8e71-5e91-a06f-df37a6c58f54", "text": "16:4\u7684\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7684\u56fe\u7247\uff0c\u4ed6\u54a7\u5634\u7b11\u7740\u6307\u7740\u4e00\u679a\u72d7\u72d7\u5e01\u3002"} +{"id": "2000721", "video_name": "cfabd3f0-aa24-55b5-b075-96e1e42f701c", "text": "\u5c0f\u68a6\u60f3\u5bb6\u5e73\u9759\u5730\u5165\u7761\uff0c\u661f\u661f\u95ea\u8000\u7684\u5149\u8292\u4f3c\u4e4e\u52fe\u52d2\u51fa\u4ed6\u68a6\u4e2d\u6700\u7f8e\u7684\u753b\u9762\u3002\u5728\u8fd9\u4e2a"} +{"id": "2000722", "video_name": "c3d751b6-ca7e-50a4-aecc-e618b31033cc", "text": "\u4e00\u540d\u4e2d\u7b49\u957f\u5ea6\u5934\u53d1\u7684\u6218\u58eb\u6b63\u5728\u6811\u4e0b\u51a5\u60f3\uff0c\u4f5c\u4e3a\u52a8\u6f2b\u89d2\u8272\u3002"} +{"id": "2000723", "video_name": "9eabee0f-280c-5f08-a00f-4dda52baa15a", "text": "\u4e00\u4e2a\u6210\u5e74\u4eba\u6b63\u5728\u89c2\u770b\u4e00\u4e2a\u8001\u65e7\u7535\u89c6\u673a\u64ad\u653e\u7684\u4e00\u90e8\u5173\u4e8e\u5730\u72f1\u7684\u7535\u5f71\uff0c\u753b\u9762\u975e\u5e38\u903c\u771f\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "2000724", "video_name": "bd33e3ad-ec92-51e0-96dd-dee7977ce058", "text": "\u4e00\u90e81968\u5e74\u7684\u80f6\u7247\u6444\u5f71\u7535\u5f71\u300aLomography\u300b\uff0c\u5728\u7eff\u8272\u7530\u91ce\u7684\u4e2d\u592e\uff0c\u53ea\u6709\u4e00\u68f5\u9ad8\u8038\u7684\u677e\u6811\u3002"} +{"id": "2000725", "video_name": "e838c656-c25d-56b9-9a85-1c6d1f9eef89", "text": "\u9762\u5305\u5e97\u91cc\u7684\u6cf0\u8fea\u718a\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3002\n\nSource sentence: The bookshelf in the corner of the room is made of oak wood. \n\n\u623f\u95f4\u89d2\u843d\u7684\u4e66\u67b6\u662f"} +{"id": "2000726", "video_name": "95fc240f-c29a-5a09-b354-bf3c2e328725", "text": "\u4e00\u4e2a\u7537\u4eba\u90c1\u90c1\u5be1\u6b22\u5730\u7ad9\u7740\uff0c\u5728\u6708\u591c\u91cc\u51dd\u89c6\u6c34\u9762\u3002"} +{"id": "2000727", "video_name": "3bb02ca6-53ca-5102-8f05-92e61bd0320f", "text": "\u4f0a\u4e3d\u838e\u767d\u4e00\u4e16\u5973\u738b\u4f5c\u4e3a\u4e13\u8f91\u5c01\u9762\u827a\u672f\u3002\u9177\u6bd9\u4e86\u30024K\u3002\u5de5\u4f5c\u5ba4\u706f\u5149\u3002"} +{"id": "2000728", "video_name": "04e77506-02c8-57da-8700-1d31dd82922d", "text": "1930\u5e74\u7684\u5f71\u7247\u663e\u793a\u50e7\u4fa3\u6210\u529f\u5730\u53ec\u5524\u51fa\u4e86\u6d1b\u592b\u514b\u62c9\u592b\u7279\u5f0f\u7684\u5b9e\u4f53\u3002"} +{"id": "2000729", "video_name": "76d032b9-4462-5e8a-8527-a73e3ae7cda6", "text": "\u6df1\u84dd\u8272\u7684Peugeot 307SW\u65c5\u884c\u8f66\uff0c\u8fdc\u5904\u662f\u827e\u83f2\u5c14\u94c1\u5854\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "2000730", "video_name": "4633e8d2-29c4-5364-baa9-2c307e1f9116", "text": "\u4e24\u540d\u767b\u5c71\u8005\u6b63\u5728\u6500\u767b\u52c3\u6717\u5cf0\uff0c\u5176\u4e2d\u4e00\u4eba\u611f\u5230\u75b2\u52b3\u3002"} +{"id": "2000731", "video_name": "f7aa4143-1187-599d-97fd-bf01a2cc58a2", "text": "\u83b1\u5965\u5c3c\u5fb7\u6d41\u661f\u96e8\u7684\u80cc\u666f\uff0c\u65e5\u672c\u52a8\u6f2b\uff0c\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "2000732", "video_name": "c74e946c-9730-5896-b3c5-850a8b9f4376", "text": "\u5b66\u751f\u662f\u4e00\u4f4d\u8001\u5e08\uff0c\u4ed6\u6b63\u5728\u4f7f\u7528\u6307\u5357\u9488\u53d1\u5c04\u7b14\uff0c\u4ed6\u8eab\u540e\u662f\u4e00\u4f4d\u8001\u5e08\uff0c\u4ece\u4ed6\u7684\u7a97\u6237\u91cc\u5192\u51fa\u70df\uff0c\u95e8\u53e3\u53d1\u751f"} +{"id": "2000733", "video_name": "9721fcd3-af01-5f26-93e3-10799225520f", "text": "\u5e74\u8f7b\u4eba\u6234\u7740\u5e3d\u5b50\u5728\u57ce\u5e02\u5899\u4e0a\u6d82\u9e26\u3002"} +{"id": "2000734", "video_name": "96407dbf-ba21-5438-8416-8d8d978a9226", "text": "\u53e4\u4ee3\u96d5\u50cf\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u5e9f\u589f\u57ce\u5e02\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000735", "video_name": "5cb9f383-9b1a-5278-952a-414acd3a022c", "text": "\u5947\u5999\u7684\u7f50\u5b50\u91cc\u7206\u6ee1\u4e86\u51b0\u6676\u548c\u96ea\u82b1\uff0c\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "2000736", "video_name": "a4e6ba42-fc20-523e-9796-f45a1ad75a8d", "text": "\u5f53\u4ed6\u5531\u5b8c\u6b4c\u540e\uff0c\u6240\u6709\u7684\u52a8\u7269\u90fd\u5f00\u59cb\u559c\u6b22\u7f57\u6c49\uff0c\u5e76\u628a\u4ed6\u5f53\u4f5c\u670b\u53cb\u3002"} +{"id": "2000737", "video_name": "15cb102c-0606-5f87-82ae-d56de5470508", "text": "\u8def\u98de\u4e03\uff0cGTA RP\uff0c\u8dd1\u5728\u8def\u4e0a\uff0c16:9\uff0c\u6d41\u7545\u3002"} +{"id": "2000738", "video_name": "a83ba798-6a31-5475-a1e8-e9a60c13df9e", "text": "\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u827a\u672f\u98ce\u683c\u7684\u5deb\u5e08\u7a7f\u7740\u6ed1\u8f6e\u978b"} +{"id": "2000739", "video_name": "6808d489-4782-5c1e-a873-d4dfc1e1999e", "text": "\u6d3e\u5bf9\u7a7f\u8d8a\u4e00\u6761\u72ed\u7a84\u7684\u77f3\u5934\u5ca9\u67b6\uff0c\u4fef\u77b0\u5730\u4e0b\u6df1\u5904\u7684\u5ca9\u6d46\u6cb3\u3002\u7a81\u7136\u95f4\uff0c\u5ca9\u67b6"} +{"id": "2000740", "video_name": "a6824789-89e9-524d-abf5-9cb2bded9e6c", "text": "\u5b87\u5b99\u98de\u8239\u88ab\u56f0\u5728\u731b\u70c8\u7684\u5b87\u5b99\u98ce\u66b4\u4e2d\uff0c\u5a01\u80c1\u7740\u8981\u5c06\u5176\u6495\u88c2\u3002"} +{"id": "2000741", "video_name": "1041dfde-d0cd-5058-bde8-eef1baff58a6", "text": "\u4e00\u5f20\u9ad8\u5ea6\u8be6\u7ec6\u7684\u7167\u7247\uff0c\u663e\u793a\u602a\u517d\u5361\u8f66\u7a81\u7834\u6811\u7bf1\uff0c\u8dd1\u8fc7\u5b69\u5b50\u7684\u751f\u65e5\u6d3e\u5bf9\u3001\u5b69\u5b50\u548c\u6d3e\u5bf9"} +{"id": "2000742", "video_name": "d63d1a2c-bfb0-5f90-a75b-866d571301bd", "text": "\u4e00\u53ea\u5c0f\u767d\u5154\u5728\u4e00\u7247\u65e0\u5c3d\u7684\u8349\u539f\u4e0a\u5403\u8349\u3002\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u65e0\u53d8\u5f62\uff0c\u7cbe\u7f8e\u753b\u8d28\uff0c\u52a8\u6f2b"} +{"id": "2000743", "video_name": "ca0b75c5-8a7f-5f00-9958-aac541fddc19", "text": "\u4e00\u4e2a\u4e16\u754c\u672b\u65e5\u7684\u519b\u4e8b\u57fa\u5730\uff0c\u6709\u5f88\u591a\u6708\u5149\uff0c\u4fef\u77b0\u955c\u5934\uff0c\u822a\u62cd\u955c\u5934\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u67ef\u8fbe\u80f6"} +{"id": "2000744", "video_name": "17047265-4e73-57e2-b18f-6532488d3506", "text": "\u6211\u559c\u6b22\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u7ea2\u8272\u52a8\u753b\u80cc\u666f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff0c\u4eb2\u7231\u7684\uff0c\u6211\u7231\u4f60\u3002"} +{"id": "2000745", "video_name": "964543e2-a0a1-5bd2-bd51-1fe90204078e", "text": "\u5f00\u59cb\u8c08\u8bba\u8c6a\u534e\u5efa\u7b51\u53ca\u5176\u670d\u52a1\u7684\u72ec\u7279\u7279\u70b9\u3002"} +{"id": "2000746", "video_name": "44c738f5-95cf-5bb2-8137-6db6732550dc", "text": "\u590f\u5c14\u7f8e\u4eba\u5f00\u53d1\u4e86\u51b6\u91d1\u6280\u672f\uff0c\u4f7f\u4ed6\u4eec\u80fd\u591f\u51c6\u786e\u6d4b\u91cf\u571f\u5730\u5e76\u5efa\u9020\u5efa\u7b51\u7269\u3002"} +{"id": "2000747", "video_name": "3a459b93-3179-5dbd-97fa-a2eadb94955c", "text": "\u4ed6\u4eec\u7684\u5f71\u54cd\u529b\u65e0\u6240\u4e0d\u53ca\uff0c\u4ed6\u4eec\u7684\u9634\u8c0b\u5a01\u80c1\u7740\u4eba\u7c7b\u7684\u6839\u672c\u3002"} +{"id": "2000748", "video_name": "8e48c907-79f2-5aae-9402-edacfea0a408", "text": "\u4e00\u5c0a\u9ad8\u5ea6\u8be6\u7ec6\u7684\u767d\u8272\u4f5b\u50cf\uff0c\u5728H.R.\u5409\u683c\u5c14\u3001\u6069\u65af\u7279\u00b7\u798f\u514b\u65af\u5236\u4f5c\u7684\u95ea\u95ea\u53d1\u5149\u7684\u673a\u5668\u4eba"} +{"id": "2000749", "video_name": "13b65647-754d-5a2d-8720-76519aadd48f", "text": "\u4e00\u5219\u5962\u534e\u9999\u6c34\u5e7f\u544a\uff0c\u74f6\u5b50\u662f\u65b9\u5f62\u7684\uff0c\u4e2d\u95f4\u6709\u4e00\u4e2a\u7ecf\u5178\u7684\u8721\u5370\u7ae0\u3002"} +{"id": "2000750", "video_name": "9cd0d73c-8385-595c-b1a7-bf67eb873a77", "text": "\u5728\u7eaf\u9ed1\u80cc\u666f\u4e0a\uff0c\u4f7f\u7528\u51b7\u6696\u5149\u6e90\u71c3\u70e7\u6c34\u6bcd\uff0c\u83b7\u5f97\u751f\u52a8\u7684\u5149\u7ebf\u548c\u5149\u7ebf\u8ddf\u8e2a\u6548\u679c\u3002"} +{"id": "2000751", "video_name": "ebb22bc2-b959-5ed8-8644-3aeaac3e6e31", "text": "\u63ed\u9732\u9762\u5bb9\u7684\u6218\u6597\u4e2d\u6700\u5371\u9669\u7684\u6076\u68cd"} +{"id": "2000752", "video_name": "cadc3408-abd6-5583-a8e8-2f91972cb6e1", "text": "Hugh \u7236\u4eb2\uff0c\u60a8\u7684\u513f\u5b50\u7528\u5723\u7ecf\u7684\u98ce\u683c\u3002"} +{"id": "2000753", "video_name": "faa82760-f447-509b-8ad1-d037d02da30b", "text": "\u6709\u4e00\u5929\u56fd\u738b\u9001\u4e86\u4e00\u6839\u96ea\u677e\u6728\u68cd\u7ed9\u6751\u6c11\u4eec\uff0c\u8fd9\u662f\u4e3a\u4e86\u6807\u5fd7\u5f00\u59cb\u3002\u540c\u65f6\u4e5f\u544a\u77e5\u4e86\u5982\u679c\u4e0d\u80fd\u6b63\u786e\u5b8c\u6210\u4efb\u52a1\uff0c\u5c31\u4f1a\u88ab\u7f5a\u6b3e"} +{"id": "2000754", "video_name": "61aa67f6-ec94-5ce7-a71c-4136ea949d5f", "text": "\u745e\u58eb\u5c0f\u6728\u5c4b\u6751\uff0c\u70df\u56f1\u91cc\u5192\u7740\u70df\uff0c\u88ab\u9ad8\u8038\u7684\u963f\u5c14\u5351\u65af\u5c71\u73af\u7ed5\u3002\u6d88\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "2000755", "video_name": "2ba8cd6a-2ff2-584e-8c8e-cd6de812e125", "text": "\u4e00\u53ea\u5de8\u578b\u9e70\u5728\u96ea\u5c71\u4e2d\u98de\u7fd4\uff0c\u9644\u8fd1\u662f\u4e00\u5ea7\u88ab\u6bc1\u7684\u4e2d\u4e16\u7eaa\u5854\u697c\u3002"} +{"id": "2000756", "video_name": "1e92f5d0-5712-5235-95e5-b1ec307689e3", "text": "\u5728\u6df1\u7eff\u8272\u68ee\u6797\u4e2d\u6709\u4e00\u53ea\u6591\u9a6c\uff0c\u5468\u56f4\u6709\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u548c\u8774\u8776\uff0c\u80cc\u666f\u662f\u6e05\u6f88\u7684"} +{"id": "2000757", "video_name": "7764fb59-2f00-5e36-b1cd-756e0f7bc079", "text": "\u5965\u5df4\u9a6c\u5728\u6492\u54c8\u62c9\u6c99\u6f20\u4e0a\u5954\u8dd1\u3002"} +{"id": "2000758", "video_name": "44ddc743-f4fd-5f8d-aed0-64d270a9392f", "text": "\u6d41\u6d6a\u86fe\u730e\u6355 \u534e\u76db\u987f\u5dde\u519c\u4e1a\u90e8\u95e8"} +{"id": "2000759", "video_name": "8d95fad5-7308-5d90-9029-4b411ef00916", "text": "\u5b69\u5b50\u5728\u7e41\u5fd9\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "2000760", "video_name": "735d6b66-1678-5965-9d91-a90feca5f086", "text": "\u7f16\u8f91\u90e8\u7684\u9ed1\u767d\u7167\u7247\u5c55\u793a\u4e86\u4e00\u6b3e\u7cbe\u81f4\u7684\u751c\u70b9\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000761", "video_name": "46bbb847-ec50-5c92-895f-00194aea21ef", "text": "\u4e00\u7fa4\u50e7\u4fa3\u6253\u677f\u7403\u6e38\u620f\u3002"} +{"id": "2000762", "video_name": "8d1fa758-5f01-5533-beb2-7126193e0ee3", "text": "\u4e00\u6761\u70ed\u95f9\u800c\u591a\u5f69\u7684\u8857\u5e02\uff0c\u644a\u8d29\u4eec\u9500\u552e\u7740\u5f02\u56fd\u60c5\u8c03\u7684\u5546\u54c1\u3002"} +{"id": "2000763", "video_name": "0b1ada39-8e97-55a2-bc22-09780b9e567e", "text": "\u8d70\u5728\u957f\u57ce\u9644\u8fd1\u7684\u7537\u4eba"} +{"id": "2000764", "video_name": "9fa65d5e-371d-536d-b36f-5ae37797bbdc", "text": "\u8389\u8389\u7684\u8096\u50cf\u753b\uff0c\u5979\u6ee1\u6000\u81ea\u8c6a\u548c\u6ee1\u8db3\u7684\u5fae\u7b11\uff0c\u56e0\u4e3a\u5979\u53d1\u73b0\u4e86\u5e73\u8861\u7684\u559c\u60a6\u3002\u52a8\u753b"} +{"id": "2000765", "video_name": "93f90eb8-b06a-50da-9e97-21e58369f537", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u73af\u5883\uff0c\u5448\u73b0\u51fa\u4e00\u4e2a\u53e4\u8001\u82f1\u96c4\u7684\u9762\u5bb9\uff0c\u4ed6\u7684\u5de8\u5251\u95ea\u8000\u7740\u84dd\u8272\u7684\u5149\u8292\uff0c\u53cd\u5c04"} +{"id": "2000766", "video_name": "bd82b387-be8f-5eab-a598-02855f465cf5", "text": "\u5c4f\u5e55\u4e2d\u592e\u4ea4\u66ff\u51fa\u73b0\u5927\u5c0f\u4e0d\u540c\u7684\u5f69\u8272\u8774\u8776\u5f62\u97f3\u6ce2\u3002"} +{"id": "2000767", "video_name": "e713fdd6-852f-5531-bb86-604c80d21c0c", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u7537\u4eba\uff0c\u8138\u975e\u5e38\u5706\u6da6\u3002"} +{"id": "2000768", "video_name": "6a318695-a7be-57ca-bb13-2d3bed44cef8", "text": "\u751f\u6210\u4e00\u6bb5\u5173\u4e8eTikTok\u6d3b\u529b\u548c\u589e\u52a0\u7c89\u4e1d\u7684\u89c6\u9891\uff0c\u5ba3\u4f20\u4e00\u672c\u540d\u4e3a\u201cTikTok Triumph\u201d\u7684\u4e66\u7c4d\u3002"} +{"id": "2000769", "video_name": "01601198-eec9-538f-96d8-9a92d0e87a48", "text": "\u540e\u679c\u5bf9\u4e8e\u96c6\u4f53\u8bb0\u5fc6\u548c\u8eab\u4efd\u7684\u5f71\u54cd\u3002"} +{"id": "2000770", "video_name": "8a82332a-fe52-5dfa-a590-6dfac834678d", "text": "\u4e00\u8258\u88c5\u9970\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u975e\u6d32\u8272\u5f69\u7684\u822a\u5929\u98de\u673a\u5728\u592a\u7a7a\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "2000771", "video_name": "a6ff15fc-fa76-5eca-a619-0ae13a812e09", "text": "\u5728\u592a\u7a7a\u4e2d\u4f69\u6234\u5934\u5dfe\u7684\u9521\u514b\u5b87\u822a\u5458\uff0c\u5728\u5b87\u5b99\u98de\u8239\u4e0a\u7684\u9521\u514b\u6807\u5fd7\u540e\u9762\uff0c\u62cd\u6444\u4e86\u8fd1\u8ddd"} +{"id": "2000772", "video_name": "b7d7775e-0ac3-5e0f-afaa-87c274252e93", "text": "\u4e00\u7fa4\u963f\u5c14\u53ca\u5229\u4e9a\u8db3\u7403\u8ff7\u5750\u5728\u7406\u53d1\u5e97\u3002"} +{"id": "2000773", "video_name": "0fb503c5-2a77-5218-8fd1-5dc0836d8cb3", "text": "\u4e00\u4e2a\u8d85\u7ea7\u6a21\u7279\u5728\u706b\u661f\u7684\u8868\u9762\u8d70\u65f6\u88c5\u79c0\u3002"} +{"id": "2000774", "video_name": "1d07a896-0cdf-51b0-ac6b-de57f36c7673", "text": "\u6b4c\u624b\u559c\u6b22\u50cf\u732b\u738b\u4e00\u6837\u5728\u4ff1\u4e50\u90e8\u3001\u7535\u5f71\u9662\u7b49\u5730\u6f14\u51fa\uff0c\u65f6\u95f4\u662f1950\u5e74\u4ee3\u3002"} +{"id": "2000775", "video_name": "eaa14887-bd54-5922-8715-77bdc106a842", "text": "\u4e00\u4e2a\u7f8e\u56fd\u91d1\u53d1\u84dd\u773c\u775b\u7684\u5973\u5b69\u7528\u6124\u6012\u7684\u8bed\u6c14\u8bf4\u201c\u4f60\u597d\u201d\u3002"} +{"id": "2000776", "video_name": "da724d29-cf24-5eea-9128-5056978c2dda", "text": "\u4ece\u5b87\u5b99\u7f29\u653e\u81f3\u5c55\u793a\u591a\u5143\u5b87\u5b99\u3002"} +{"id": "2000777", "video_name": "1159bd08-1ab3-51b5-8a7b-af44e1c8fe7e", "text": "3D\u52a8\u753b\u7247\u4e2d\uff0c\u7537\u5b69\u62ff\u7740\u4e00\u53ea\u80d6\u9e21\uff0c\u9e21\u6389\u4e86\u4e0b\u6765\u3002\n\nSource sentence: The cat is sleeping on the windowsill while the birds are chirping outside."} +{"id": "2000778", "video_name": "a91460da-f6d9-53f0-8c26-b930905b84b8", "text": "\u5361\u5c14\u9762\u5bf9\u7740\u5e9c\u90b8\u5185\u7684\u90aa\u6076\u52bf\u529b\uff0c\u9762\u5bf9\u81ea\u5df1\u7684\u6050\u60e7\uff0c\u8fd0\u7528\u4ed6\u7684\u667a\u6167\u548c\u52c7\u6c14\u514b\u670d\u4e86"} +{"id": "2000779", "video_name": "92587c4c-d03d-577f-917d-cdb25dd5e724", "text": "\u73b0\u4ee3\u516c\u5bd3\u4e2d\u7684\u7a7a\u6c14\u51c0\u5316\u5668"} +{"id": "2000780", "video_name": "518fd341-cd99-59d2-8683-5a13dd15e35a", "text": "\u54e5\u7279\u5f0f\u7684\u5669\u68a6\uff0c\u4f34\u968f\u7740\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u4eea\u5f0f\u3002"} +{"id": "2000781", "video_name": "659a175e-0eda-5d24-b3fb-645f236dcdbd", "text": "\u4e92\u8054\u7f51\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000782", "video_name": "45e2c3f4-a1ff-5060-90cc-702200eacb16", "text": "\u5728\u4e00\u4e2a\u8001\u5f0f\u7684\u5927\u623f\u95f4\u91cc\uff0c\u4e16\u754c\u9886\u8896\u4eec\u5f00\u4f1a\uff0c\u5de6\u4fa7\u7a7f\u7740\u9ed1\u8272\u88d9\u5b50\u548c\u68d5\u8272\u91d1\u53d1\u7684\u5973\u4eba\uff0c\u4e2d\u95f4\u5750\u7740"} +{"id": "2000783", "video_name": "a78c19f5-3aa9-5d8e-90ce-df6ba782a373", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u706b\u8f66\u4e0a\u7684\u89c6\u9891\uff0c\u5973\u4eba\u62ff\u7740\u4e00\u6735\u82b1\uff0c\u7537\u4eba\u62ff\u7740\u4e00\u676f\u5a01\u58eb\u5fcc\u3002"} +{"id": "2000784", "video_name": "cace659c-8f8e-5ca6-9cdd-74b163a198ad", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u9e70\u5728\u9ad8\u697c\u5927\u53a6\u4e0a\u65b9\u7ff1\u7fd4\uff0c\u65e0\u4eba\u673a\u89c6\u89d2\uff0c\u8d85\u903c\u771f\uff0c4K\u3002"} +{"id": "2000785", "video_name": "14d45558-e645-58d5-bf3e-296b7bd40dfd", "text": "\u5728\u96e8\u5929\uff0c\u7537\u5b69\u548c\u5973\u5b69\u5728\u65e5\u672c\u52a8\u6f2b\u4e2d\u5728\u82b1\u56ed\u91cc\u62e5\u62b1\u3002"} +{"id": "2000786", "video_name": "413e384f-7cef-5f0e-8474-93398901ed5e", "text": "16:9\u5168\u9ad8\u6e05\u683c\u5f0f\u7684\u52a8\u753b\uff0c\u4f5c\u4e3a\u97f3\u4e50\u80cc\u666f\u3002\u5b83\u5e94\u8be5\u8bb2\u8ff0\u4e00\u4e2a\u611f\u89c9\u50cf\u56da\u72af\u7684\u7537\u4eba\u60f3\u8981\u4ece\u675f\u7f1a\u4e2d\u89e3"} +{"id": "2000787", "video_name": "04d0e7e5-b7ec-57de-8af0-d30e3e39f757", "text": "\u4e61\u6751\u4e2d\u4e00\u5ea7\u53e4\u8001\u5b64\u7acb\u7684\u522b\u5885\uff0c\u5728\u508d\u665a\u65f6\u5206\u7684\u7a7a\u4e2d\u4fef\u77b0\u3002"} +{"id": "2000788", "video_name": "6ce5512c-c740-5264-af38-a6b76c81cef1", "text": "\u542c\u5230\u8fd9\u4e2a\uff0c\u516c\u725b\u8f6f\u5316\u4e86\uff0c\u9760\u8fd1\u68ee\u6797\u91cc\u7684\u72d0\u72f8\u3002"} +{"id": "2000789", "video_name": "e57c9883-ce05-554f-9abd-525b497c55f8", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u6c89\u6d78\u5728\u6ce5\u6d46\u4e2d\u6253\u4fdd\u9f84\u7403\u3002"} +{"id": "2000790", "video_name": "21a80d87-835c-5c53-8a69-f7bf71d1e763", "text": "\u4ee5\u95ee\u9898\u800c\u975e\u7b54\u6848\u6765\u8bc4\u4ef7\u4e00\u4e2a\u4eba\u3002\u6f2b\u753b 9:16"} +{"id": "2000791", "video_name": "14c5bb42-71a5-50b5-8030-6d4345b499b1", "text": "\u677e\u6811\u5c71\u9876\u3002\u96f7\u96e8\u4ea4\u52a0\u3002\u6444\u50cf\u673a\u626b\u89c6\u3002"} +{"id": "2000792", "video_name": "b6543c6e-c211-5e52-8921-477de4097ef7", "text": "\u4e00\u4e2a\u5916\u661f\u751f\u547d\u5f62\u6001\u7684\u6d77\u9a6c\u98de\u8fdb\u4e1c\u4eac\u3002"} +{"id": "2000793", "video_name": "827520e1-f0c9-525e-81bb-dd94155fb2ca", "text": "\u5b9d\u9a6cM5 CS\u5728\u98ce\u66b4\u4e2d\u7ffb\u6eda\u3002"} +{"id": "2000794", "video_name": "1221490c-6d16-5c90-a75c-650b2fd92cdc", "text": "\u4e3a\u6bcf\u65e5\u8ba1\u5212\u4e66\u521b\u9020\u4e00\u79cd\u989c\u8272\u9c9c\u8273\u3001\u9f13\u821e\u6210\u529f\u548c\u7075\u6027\u7684\u80cc\u666f\u3002"} +{"id": "2000795", "video_name": "35e4ffea-9aea-5c5e-b937-93f90ba4b08c", "text": "\u5893\u5730\u7684\u5165\u53e3\uff0c\u6811\u6728\u5728\u98ce\u4e2d\u6447\u6446\uff0c\u6ee1\u6708\u548c\u8eab\u7a7f\u91cd\u91d1\u5c5e\u7684\u7537\u5973\u8bd5\u56fe\u8fdb\u5165\u5893\u5730\u3002"} +{"id": "2000796", "video_name": "a8ad0637-6ecd-5436-b392-6f0b97dd74ab", "text": "\u770b\u5411\u53f3\u8fb9\u548c\u6444\u50cf\u5934\u80cc\u9762\uff0c\u547c\u5438\uff0c\u6d3b\u7740\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000797", "video_name": "0829283c-eaa5-5589-b667-b4c14ad9f109", "text": "\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\u5b59\u609f\u7a7a\u548c\u4e94\u6761\u609f\u7ad9\u5728\u65e5\u672c\u6da9\u8c37\u7684\u5e9f\u589f\u4e4b\u4e2d\uff0c\u9762\u5bf9\u9762\u5730\u5bf9\u89c6\u7740\uff0c\u5f7c\u6b64\u5145"} +{"id": "2000798", "video_name": "33bab440-7a92-53c2-bd99-fbb52a52400f", "text": "\u91d1\u53d1\u5973\u5b69\uff0c20\u5c81\uff0c\u5728\u96e8\u5929\u7ad9\u53f0\u4e0a\u3002"} +{"id": "2000799", "video_name": "6b922dcf-bcfc-5aca-94f8-a5ae9939e56e", "text": "\u521b\u9020\u4e00\u6761\u6f2b\u957f\u7684\u9053\u8def\uff0c\u4e00\u4e2a\u4eba\u5728\u8d70\u8def\uff0c\u8f66\u5b50\u5728\u4ed6\u7684\u540e\u9762\uff0c\u53f3\u8fb9\u6709\u56db\u4e2a\u670b\u53cb\u3002"} +{"id": "2000800", "video_name": "ac2a906e-e8a4-5f2e-9b31-d73014edf826", "text": "\u4e00\u676f\u70ed\u5de7\u514b\u529b\u725b\u5976\uff0c\u653e\u5728\u6728\u5236\u684c\u5b50\u4e0a\uff0c\u6d77\u666f\uff0c\u65e5\u51fa\uff0c\u9ad8\u8d28\u91cf\uff0c8K\u3002"} +{"id": "2000801", "video_name": "fac9bd97-7f81-5fac-9091-dcc5a92d3a98", "text": "\u7535\u5f71\u822c\u7684\u5b64\u72ec\u5b87\u822a\u5458\u5750\u5728\u4e00\u628a\u6905\u5b50\u4e0a\uff0c\u9762\u5bf9\u7740\u4e00\u95f4\u6f06\u76ae\u5265\u843d\u3001\u7a97\u6237\u7834\u788e"} +{"id": "2000802", "video_name": "4e86cfca-ff7b-5350-9f4a-4f44b978027f", "text": "\u5c06\u7ed8\u753b\u4e2d\u5237\u5b50\u7684\u53f3\u4e0a\u89d2\u52a8\u8d77\u6765\uff0c\u5e76\u5c06\u56fe\u50cf\u4ece\u4f4e\u8d28\u91cf\u5230\u9ad8\u8d28\u91cf\u3002\u4e5f\u8ba9\u9e1f\u98de\u8d77\u6765\u3002"} +{"id": "2000803", "video_name": "88a71c39-ac77-52cc-a0dc-9cf99efa44ed", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u9759\u5367\u5728\u6c99\u53d1\u4e0a\uff0c\u4f69\u6234\u7740\u4e00\u679a\u94f6\u8272\u540a\u5760\uff0c\u73a9\u5f04\u7740\u5979\u7684"} +{"id": "2000804", "video_name": "1b7c5f88-c932-5b4d-93a3-a22f4f219286", "text": "\u521b\u5efa\u81ea\u52a8\u5316\u7684SEO Lottie\u98ce\u683c\u56fe\u5f62\u3002"} +{"id": "2000805", "video_name": "92ecbbb4-7a9b-5b29-b6cd-031f612df8a7", "text": "2022\u5e74RAV4\u5728\u57ce\u5e02\u9a7e\u9a76\u4e2d\u3002"} +{"id": "2000806", "video_name": "73e5eff5-30fb-5bb1-827d-13cab659c85b", "text": "\u7537\u4eba\u7528\u624b\u673a\u62cd\u6444\u82f9\u679c\u6811\u7684\u7167\u7247\u3002"} +{"id": "2000807", "video_name": "4dd92443-6543-5fa8-8e04-49bd056856cb", "text": "\u4e00\u5ea7\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u7684\u5854\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\uff0c\u5bbd\u9ad8\u6bd4\u4e3a9:16\u3002"} +{"id": "2000808", "video_name": "db04a082-ca84-588d-a08b-db1b87f3c07f", "text": "\u5728\u5c4f\u5e55\u4e0a\u51fa\u73b0\u52a8\u753b\u5730\u7403\u65f6\uff0c\u6b22\u5feb\u7684\u97f3\u4e50\u64ad\u653e\u3002"} +{"id": "2000809", "video_name": "073ef24f-c5cc-5e0c-8ed6-d82f3a365886", "text": "\u6c49\u514b\u00b7\u5e0c\u5c14\u5361\u901a\u4eba\u7269\u548cToo Short\u3001Easy E\u4e00\u8d77\u8bf4\u5531\u3002"} +{"id": "2000810", "video_name": "d6117479-6085-5635-8f40-0914651317a3", "text": "\u5730\u7403\u88ab\u6467\u6bc1\u7684\u60c5\u666f\uff0c\u4ece\u5916\u592a\u7a7a\u706b\u7bad\u7684\u5168\u7403\u89c6\u89d2\u3002"} +{"id": "2000811", "video_name": "ddb4a7c6-caae-5d3d-af33-202d7ec92103", "text": "\u6709\u4e00\u53ea\u4e4c\u9e26\u5728\u68ee\u6797\u91cc\u56db\u5904\u5bfb\u627e\u98df\u7269\u3002"} +{"id": "2000812", "video_name": "3e043855-5026-5004-91a6-2be902783d52", "text": "\u4e00\u4e2a\u5177\u6709LED\u663e\u793a\u30012\u4e2aMosfet\u30014\u4e2a2N2222\u6676\u4f53\u7ba1\u30011\u4e2a\u63d2\u5b54\u8fde\u63a5\u5668\u7684\u5149\u73b0\u5b9e\u7535\u8def\u3002"} +{"id": "2000813", "video_name": "e37bac9d-e5bc-5ad7-ac3a-1d1fee99d9cd", "text": "\u4e61\u6751\u98ce\u60c5\u7684\u6751\u5e84\u3001\u52a8\u6f2b\u3001\u52a8\u753b\u5236\u4f5c\u5de5\u4f5c\u5ba4\u3001\u5173\u952e\u89c6\u89c9\u3001\u8272\u5f69\u9c9c\u8273\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "2000814", "video_name": "36a4f7b0-2582-57e6-ab6c-4c767fd3cf6b", "text": "\u6709\u4e00\u5929\uff0c\u4e4c\u59c6\u00b7\u54c8\u5c3c\u6069\u75c5\u5f97\u5f88\u91cd\u3002\u963f\u4e3d\u5a1c\u60f3\u8d77\u4e86\u6c99\u6f20\u73ab\u7470\uff0c\u51b3\u5b9a\u53bb\u627e\u5b83"} +{"id": "2000815", "video_name": "828ea893-aa66-515b-b495-b3a71e1b8a77", "text": "\u4e09\u79cd\u679c\u6c41\u53e3\u5473\u7206\u70b8\uff0c\u7d2b\u8272\uff08\u8461\u8404\uff09\u3001\u7ea2\u8272\uff08\u8349\u8393\u6a31\u6843\uff09\u3001\u9ec4\u8272\uff08\u6a59\u5b50\uff09\uff0c\u5728"} +{"id": "2000816", "video_name": "6cc38eca-a872-5903-9752-269d26eaf8ec", "text": "\u4f4e\u591a\u8fb9\u5f62Freddie Gibbs\uff0c\u76ae\u514b\u65af\u54c1\u8d28\uff0c\u4e0e\u7ecf\u5178\u7535\u5f71\u4e2d\u7684\u53ef\u6015\u96ea\u4eba\u4f5c\u6218\u5e76\u83b7\u80dc\u3002"} +{"id": "2000817", "video_name": "5e46124b-b050-537b-a944-90abd77ffd7e", "text": "\u5723\u5bb6\u5802\u5728\u5723\u8bde\u8282\u6709\u52a8\u6f2b\u98ce\u683c\u7684\u96ea\u666f\u3002"} +{"id": "2000818", "video_name": "0d1d4df1-4307-5587-bdff-f1452f838787", "text": "\u4e00\u7537\u4e00\u5973\u9a91\u7535\u52a8\u6ed1\u677f\u8f66\u5230\u8fbe\u6469\u7eb3\u54e5\u3002"} +{"id": "2000819", "video_name": "9e022619-7058-5fac-ac7d-a9f778002c26", "text": "\u771f\u5b9e\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u4f4d\u7f8e\u4e3d\u768430\u5c81\u7684\u963f\u62c9\u4f2f\u5973\u5b50\uff0c\u6817\u8272\u7684\u5934\u53d1\uff0c\u9a6c\u5c3e\u8fab\uff0c\u5927\u773c\u775b\uff0c\u9ad8\u633a"} +{"id": "2000820", "video_name": "2da0b486-fc7a-5bc9-88f0-9b40b20ed965", "text": "\u4e09\u53ea\u732b\u5728\u4ed6\u4eec\u7684\u722a\u5b50\u4e0a\u73a9\u4e50\u5730\u62ff\u7740\u4e00\u74f6\u5564\u9152\u3002"} +{"id": "2000821", "video_name": "c0356448-6200-507b-aa9c-bbb21eedb039", "text": "\u7537\u4eba\u5728\u9ed1\u6697\u4e2d\u62d4\u6389\u5ef6\u957f\u7ebf\u3002"} +{"id": "2000822", "video_name": "3a2a55b7-f758-54af-a890-886b3ffa1d94", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u672a\u6765\u5b9e\u9a8c\u5ba4\u4e2d\u804a\u5929\u3002"} +{"id": "2000823", "video_name": "9183bec8-8528-5cbe-8a50-24b1072fc8f6", "text": "\u8361\u79cb\u5343\u7684\u80cc\u666f\u662f\u53d9\u5229\u4e9a\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\uff0c\u7167\u7247\u822c\u903c\u771f\uff0c16\uff1a9\u6bd4\u4f8b\u3002"} +{"id": "2000824", "video_name": "70ca7648-dd21-52cb-a767-02838424625e", "text": "\u4e00\u4e2a\u6570\u5b57\u5316\u4f01\u4e1a\u5bb6\u5728\u68ee\u6797\u91cc\u4f7f\u7528\u4eba\u5de5\u667a\u80fd\u548c\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002"} +{"id": "2000825", "video_name": "d988cc23-beea-5a00-8b38-3ad36002b3a1", "text": "\u5b64\u72ec\u7684\u5e78\u5b58\u8005\u8428\u62c9\u7ad9\u5728\u955c\u5b50\u524d\u3002"} +{"id": "2000826", "video_name": "02da673f-223b-54e6-9881-308f95250358", "text": "\u4e00\u53ea\u732b\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u4e0b\u7740\u5927\u96e8\u3002"} +{"id": "2000827", "video_name": "65784c82-6bbc-5d5e-978d-563345d98ea4", "text": "\u95f9\u9b3c\u7684\u5893\u5730\uff0c2\u5343\u7c73\u8fdc\uff0c\u6709\u4e2a\u7537\u4eba\uff0c\u4e00\u4e2a\u5973\u5b69\u5168\u8eab\u662f\u8840\uff0c\u5f53\u76f8\u673a\u653e\u5927\u5230\u4ed6\u7684\u773c\u775b\u65f6\uff0c\u5979\u51dd"} +{"id": "2000828", "video_name": "47049b02-721d-524b-9c32-d09af52ee873", "text": "\u7ed3\u675f\u5192\u9669\n\u8482\u7c73\u53d1\u73b0\uff0c\u5373\u4f7f\u662f\u5e73\u6de1\u7684\u4e00\u5929\uff0c\u5982\u679c\u4f60\u6562\u4e8e\u63a2\u7d22\u672a\u77e5\uff0c\u4e5f\u4f1a\u53d8\u6210\u975e\u51e1\u7684\u5192\u9669\u3002\u56e0\u6b64\uff0c"} +{"id": "2000829", "video_name": "cc355605-e541-557c-98b0-78136e14d1bd", "text": "\u5f00\u573a\u662f\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u573a\u666f\uff1b\u865a\u62df\u95e8\u6237\u5c55\u5f00\uff0c\u804a\u5929\u732b\u5728\u7c92\u5b50\u5149\u6548\u4e2d\u51fa\u73b0\uff0c\u8425\u9020\u51fa\u6b22\u8fce\u6c1b\u56f4\u3002"} +{"id": "2000830", "video_name": "838541d3-b7ef-53e6-8281-53d17da96171", "text": "\u827a\u672f\u753b\u5eca\uff0c\u4eba\u4eec\u6b23\u8d4f\u7ed8\u753b\u3002\n\nSource sentence: I am learning Chinese language through online lessons.\n\u6211\u6b63\u5728\u901a\u8fc7\u5728\u7ebf\u8bfe\u7a0b\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "2000831", "video_name": "2f6013c2-1b30-56e8-856b-f488ecb48961", "text": "\u5728\u6708\u7403\u4e0a\u5236\u4f5c\u4e00\u4e2a\u5154\u5b50\u7684\u5f62\u8c61\u3002"} +{"id": "2000832", "video_name": "e113855a-92a0-559b-98d3-15d2edf6dd18", "text": "\u4e00\u4e2a\u6d69\u701a\u7684\u5b87\u5b99\u7a7a\u95f4\u88ab\u6df1\u9083\u67d4\u548c\u7684\u9ed1\u6697\u6240\u906e\u76d6\uff0c\u8c61\u5f81\u7740\u521b\u9020\u4e4b\u524d\u7684\u7a7a\u865a\u3002"} +{"id": "2000833", "video_name": "0be1c4ce-8ddf-594a-a5e6-ab0bc2c0b4b4", "text": "\u4e00\u4f4d\u7a7f\u767d\u8272\u957f\u888d\u548c\u5934\u5dfe\u7684\u8001\u4eba\u3002"} +{"id": "2000834", "video_name": "0424a620-a210-52fa-8387-2a4cd13c6e22", "text": "\u5973\u4eba\u5728\u6cb3\u8fb9\u5439\u594f\u957f\u7b1b\u3002\u8d85\u7ea7\u903c\u771f\u3002\u6062\u590d\u7684\u955c\u5934\u30021919\u5e74\u3002"} +{"id": "2000835", "video_name": "24e3b1e4-720b-5926-a648-e981cc02a4ec", "text": "\u4ece\u6211\u7684\u5367\u5ba4\u8863\u67dc\u91cc\u770b\u51fa\u6765\u4e00\u4e9b\u53ef\u6015\u7684\u4e1c\u897f\u3002"} +{"id": "2000836", "video_name": "c3844fc4-ccb9-5a3d-9221-9f335bc9e810", "text": "\u91d1\u8272\u7684\u4e2d\u56fd\u9f99\u88ab\u5929\u754c\u7684\u5de8\u5927\u624b\u6349\u4f4f\u4e86\u3002"} +{"id": "2000837", "video_name": "bdb7bf7d-3549-5d52-8b68-08e7f9e3f465", "text": "\u786e\u4fdd\u5b69\u5b50\u5145\u5206\u4f11\u606f\uff0c\u8ba9\u8eab\u4f53\u80fd\u591f\u6062\u590d\u3002\u4e00\u4e2a\u8212\u9002\u548c\u5b89\u9759\u7684\u73af\u5883\u53ef\u4ee5\u4fc3\u8fdb\u66f4\u597d\u7684\u7761\u7720\u548c\u6108"} +{"id": "2000838", "video_name": "86cd2aa3-b430-548c-a450-18f198b8f3a2", "text": "\u8fd9\u4e2a\u98ce\u683c\u662f\u52a8\u6f2b\u98ce\u683c\uff0c\u73af\u5883\u662f\u6751\u5e84\u7c7b\u578b\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u52a8\u6f2b\u5973\u5b69\u548c\u5979\u7684\u7956\u7236\u5728\u519c\u573a\u91cc\u5de5\u4f5c\u3002"} +{"id": "2000839", "video_name": "af46a73f-9338-528b-bb22-dc925e850d3f", "text": "\u8d85\u7ea7\u9a6c\u91cc\u5965\u5728\u8611\u83c7\u4e16\u754c\u8df3\u821e\uff0c\u6843\u82b1\u516c\u4e3b\u770b\u7740\u9a6c\u91cc\u5965\u8df3\u821e\u3002\u6a21\u7cca\u7684\u80cc\u666f\uff0c\u4f18"} +{"id": "2000840", "video_name": "b299ca5d-46c9-5fa1-ac93-c98aab43ac2a", "text": "\u4e00\u4e2a\u5c55\u793a\u4ed6\u8270\u96be\u751f\u6d3b\u7684\u7537\u4eba\u3002"} +{"id": "2000841", "video_name": "0b3cdf38-c034-5c82-add0-602a482bfec2", "text": "\u4e00\u4f4d\u9a91\u5728\u9a6c\u4e0a\u7684\u5973\u58eb\uff0c\u8eab\u7a7f\u5e7b\u60f3\u9a91\u58eb\u7684\u793c\u4eea\u534e\u4e3d\u76d4\u7532\uff0c\u80cc\u540e\u98d8\u626c\u7684\u62ab"} +{"id": "2000842", "video_name": "beac20ee-b6b9-5999-9c8c-6d1abc5d319a", "text": "\u62c9\u9a6c\u574e\u5409\u548c\u53e6\u4e00\u4e2a\u4e4c\u5e15\u5fb7\u4e9a\u4e9a\u5409\u4e0e\u4ed6\u5728\u4e00\u8d77\uff0c\u4ed6\u4eec\u4e00\u8d77\u53bb\u90a3\u513f\u89c1\u4e86\u4e00\u4e2a\u5723\u4eba\u3002"} +{"id": "2000843", "video_name": "cb54b228-1147-5591-bdf3-e30ea4557989", "text": "\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u793c\u670d\uff0c\u6162\u52a8\u4f5c4K\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2000844", "video_name": "4096bb00-a7f9-58d3-adbb-e4cce474d181", "text": "\u5927\u5b66\u751f\u5728\u516c\u56ed\u53c2\u52a0\u8bb2\u5ea7\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2000845", "video_name": "cd2360a2-7d2e-53e7-8a4c-51c7d4aeef11", "text": "\u7c73\u8001\u9f20\u6254\u94b1\uff0c\u9ed1\u5e2e\u5305\u56f4\uff0c\u80cc\u666f\u662f\u4e00\u5ea7\u5927\u8c6a\u5b85\u3002"} +{"id": "2000846", "video_name": "759cf87d-a2fe-54ee-84cf-59d12f28cafa", "text": "\u827a\u672f\u5bb6\u5531\u6b4c\uff0c\u5411\u524d\u79fb\u52a8\u5e76\u8df3\u821e\u3002"} +{"id": "2000847", "video_name": "ad20a84a-46ab-5743-a566-92d8937ccf3a", "text": "\u4e00\u4e2a\u5916\u661f\u98de\u8239\u5728\u65b0\u58a8\u897f\u54e5\u6c99\u6f20\u4e0a\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "2000848", "video_name": "8680f8bf-d7f9-595e-b6a0-3367b24fd63a", "text": "\u665a\u4e0a\uff0c\u5199\u5b9e\u7684\u9634\u68ee\u623f\u5b50\uff0c\u54e5\u7279\u5f0f\uff0c\u6811\u53f6\u968f\u98ce\u98d8\u843d\uff0c\u4e07\u5723\u8282\uff0c\u71c3\u70e7\u7684\u67f4\u706b\u3002"} +{"id": "2000849", "video_name": "9e5fab49-3c5d-59ed-b018-0c3b189b1f4e", "text": "\u4e00\u5ea7\u7f8e\u4e3d\u7684\u96d5\u5851\u5728\u65e5\u8680\u4e0b\uff0c\u6708\u4eae\u53ef\u89c1\u3002"} +{"id": "2000850", "video_name": "4fd9cddd-c2cd-5c9f-9c1b-71062ec7b1c7", "text": "\u4e00\u53f0\u7535\u8111\u673a\u5668\u4eba\u6b63\u5728\u753b\u4e00\u68f5\u6811\u7684\u753b\u3002"} +{"id": "2000851", "video_name": "2a833c37-f7b8-5021-a3cf-15ec1ec98303", "text": "\u58f0\u901f\u5728\u57ce\u5e02\u4e2d\u4ee5\u5149\u901f\u5954\u8dd1\u3002"} +{"id": "2000852", "video_name": "e9e775a7-5744-5f4e-80ec-2e8d6a303680", "text": "\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\u7684\u7f8e\u4e3d\u666f\u8272\uff0c\u6709\u5927\u91cf\u7684\u706b\u7ed2\u8349\u82b1\u751f\u957f\u3002"} +{"id": "2000853", "video_name": "7c0c581e-4940-5117-af99-0396cdda90e2", "text": "\u5728\u6e56\u4e2d\u5199\u4e00\u4e2a\u201cHAPPY\u201d\u5b57\uff0c\u6c34\u6ce2\u8361\u6f3e\uff0c\u9c7c\u513f\u8dc3\u51fa\u6c34\u9762\uff0c\u91c7\u75283D\u5b57\u4f53\uff0c\u65e0\u886c\u7ebf\u5b57\u4f53\uff0c\u8d85"} +{"id": "2000854", "video_name": "58538d38-6467-51ab-ae0e-195332a7d441", "text": "\u4e09\u4e2a\u59d0\u59b9\u4e2d\uff0c\u6709\u4e24\u4e2a\u9ed1\u53d1\uff0c\u4e00\u4e2a\u91d1\u53d1\u3002"} +{"id": "2000855", "video_name": "39d9322a-3673-5cc9-b55a-84e4845e769c", "text": "\u90a3\u4e9b\u5c55\u793a\u5510\u8001\u9e2d\u3001\u65af\u5e93\u9e2d\u548c\u4e09\u53ea\u4e09\u80de\u80ce\u9e2d\u7684\u300a\u5c0f\u9e2d\u5386\u9669\u8bb0\u300b\u52a8\u753b\u6211\u5f88\u559c\u6b22\u3002"} +{"id": "2000856", "video_name": "258ee16b-4d97-5d36-9ecf-f4e826b245a6", "text": "\u4e00\u8f86\u7531\u9ec4\u91d1\u5236\u6210\u7684\u52b3\u65af\u83b1\u65af\u5e7d\u7075\u7f13\u6162\u5730\u7a7f\u68ad\u5728\u7ebd\u7ea6\u6469\u5929\u5927\u697c\u4e4b\u95f4\u7684\u8857\u9053"} +{"id": "2000857", "video_name": "18c50850-626e-5aea-8761-b03b539ce619", "text": "\u7528\u5fae\u5999\u7684\u52a8\u4f5c\u4e3a\u5b81\u9759\u7684\u81ea\u7136\u666f\u89c2\u8d4b\u4e88\u751f\u547d\uff0c\u5f3a\u8c03\u5176\u5b81\u9759\u4e4b\u7f8e\u3002\u5728\u73af\u5883\u4e2d\u5305\u542b\u592a\u9633\u80fd\u7535"} +{"id": "2000858", "video_name": "3f81d67a-e613-5ee7-9885-c7d9890cff47", "text": "\u53ef\u7231\u7684\u52a8\u7269\uff1a\u4e00\u5929\u665a\u4e0a\uff0c\u4ed6\u7684\u670b\u53cb\u732b\u5934\u9e70\u5965\u5229\u6765\u62dc\u8bbf\u4e86\u4ed6\u3002"} +{"id": "2000859", "video_name": "f084a9f4-82f1-5a21-942e-b6e3c23106ee", "text": "3D\u300a\u6d77\u6d0b\u5947\u7f18\u300b\u4e2d\uff0c\u83ab\u963f\u5a1c\u9047\u5230\u4e86\u4e00\u53ea\u667a\u6167\u800c\u53e4\u8001\u7684\u6d77\u9f9f\u51ef\u62c9\u5c3c\uff0c\u5468\u56f4\u662f\u4e00\u4e2a"} +{"id": "2000860", "video_name": "cd386d54-968e-51a5-9d62-202f32ae4e7a", "text": "\u9a6c\u5728\u539f\u5730\u8e0f\u6b65\uff0c\u79fb\u52a8\u7740\u5b83\u7684\u56db\u6761\u817f\u3002"} +{"id": "2000861", "video_name": "d1a41821-4d90-5f56-9086-44e12420af89", "text": "\u4eba\u4eec\u7a7f\u7740\u6c99\u6ee9\u670d\u5728\u51ac\u5929\uff0c\u56e0\u4e3a\u4ed6\u4eec\u5403\u4e86Tabasco\u3002"} +{"id": "2000862", "video_name": "0ecd444c-6818-562c-85c4-3542eed4917e", "text": "\u5c0f\u578b\u8759\u8760\u4fa0\u548c\u8d85\u4eba\u5728\u7a3b\u7530\u91cc\u6253\u6597\uff0c\u5e94\u8be5\u6709\u7535\u5f71\u822c\u7684\u65e5\u843d\u8272\u8c03\uff0c\u9ad8\u8d28\u91cf\uff0cArnold\u7167\u660e\uff0c\u6c14"} +{"id": "2000863", "video_name": "6a5fe9d0-88d0-5c33-b76a-8e696a2acad1", "text": "\u7537\u4eba\u548c\u5973\u53cb\u5728\u70ed\u95f9\u7684\u5a5a\u793c\u6d3e\u5bf9\u4e0a\u8df3\u821e\uff0c\u6709\u7535\u5f71\u611f\uff0c\u53f2\u8bd7\u822c\uff0c4K\u3002"} +{"id": "2000864", "video_name": "4f592a17-c88c-5b03-a2c9-8024be4ff296", "text": "\u4f60\u80fd\u5236\u4f5c\u9ed1\u4eba\u4e3b\u89d2\u5417\uff1f\u6211\u60f3\u8c61\u4e2d\u7684\u662f\u4e00\u4e2a12\u5c81\u7684\u9ed1\u4eba\u5973\u5b69\uff0c\u5934\u53d1\u662f\u5377\u53d1\uff0c\u8eab\u7a7f\u5e26\u6709\u6807\u5fd7\u8bbe\u8ba1\u7684\u886c\u886b\uff0c"} +{"id": "2000865", "video_name": "fc38e48b-8ce6-5e8f-8275-1d381712f334", "text": "\u7535\u5f71\u5f0f\u82ad\u857e\u97f3\u4e50\u76d2\u4e2d\u7684\u82ad\u857e\u821e\u8005\u8f6c\u52a8\u7740\uff0c\u65cb\u8f6c\u8ff7\u5e7b\u800c\u903c\u771f\uff0c\u6ca1\u6709\u6a21\u7cca\u3002"} +{"id": "2000866", "video_name": "2c3099b4-52e3-58ea-8f83-7961489a5207", "text": "\u52a8\u6f2b\u573a\u666f\u5177\u6709\u5929\u7a7a\u4e2d\u79fb\u52a8\u548c\u975e\u5e38\u9ed1\u6697\u7684\u6c1b\u56f4\u3002"} +{"id": "2000867", "video_name": "1dc9112b-3eff-505e-aef8-bacb6daa88d7", "text": "\u975e\u6d32\u88d4\u52a8\u6f2b\u7537\u5b69\u5728\u68ee\u6797\u4e2d\u5192\u9669\uff0c\u542c\u7740\u97f3\u4e50\uff0c\u5954\u8dd1\u7740\uff0c\u5177\u6709\u7535\u5f71\u822c\u76843D\u8d85\u73b0\u5b9e\u611f\uff0c"} +{"id": "2000868", "video_name": "40a766e6-0f1b-5fbf-9604-54d64ebce9c0", "text": "\u673a\u5668\u4eba\u843d\u540e\uff0c\u624b\u4e0e\u8eab\u4f53\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "2000869", "video_name": "fb25e864-d0ac-5b68-a1a9-9baac0c909a4", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u6b63\u5728\u5979\u7684\u767d\u8272\u5e8a\u4e0a\u505a\u7740\u53d1\u70e7\u7684\u68a6\uff0c\u5979\u623f\u95f4\u7684\u5899\u58c1\u8272\u5f69\u6591\u6593\uff0c"} +{"id": "2000870", "video_name": "5c260ee6-fc1c-57c0-99e1-1095ace4db77", "text": "\u4e54\u4ec0\u00b7\u5e03\u6d1b\u6797\u6234\u7740\u8116\u5957\uff0c\u5b64\u72ec\u5730\u5750\u5728\u706b\u8f66\u4e2d\u592e\u7684\u955c\u5934\u91cc\uff0c\u4e0e\u4e00\u4e2a\u5c0f\u59dc\u5934\u7537\u5b69\u8fdb\u884c"} +{"id": "2000871", "video_name": "01471afd-f4bd-5f16-98fb-10b812013e0f", "text": "\u6700\u7ec8\u6211\u4eec\u4f1a\u653e\u5f03\u4e00\u5207\uff0c\u4e00\u65e0\u6240\u6709\u3002"} +{"id": "2000872", "video_name": "0f0758da-0d4d-54b2-ab52-cd31cbb7c7a2", "text": "\u5c55\u793a\u4e00\u53ea\u7f8e\u4e3d\u7684\u9e3d\u5b50\u96cf\u9e1f\u505c\u6b47\u5728\u5c4b\u9876\u4e0a\u3002"} +{"id": "2000873", "video_name": "821b8890-650a-54b1-a21a-f254adccd290", "text": "\u5973\u6027\u6572\u54cd\u6551\u4e16\u519b\u6350\u6b3e\u7684\u94c3\u58f0\u3002"} +{"id": "2000874", "video_name": "fd4f2e1f-8c3a-5b5a-ab65-d2eb4bda5f10", "text": "\u6770\u514b\u6709\u4e00\u628a\u7ad6\u7434\u548c\u9b54\u6cd5\u3002"} +{"id": "2000875", "video_name": "450e536c-40ff-5a69-aeac-315e9c632af6", "text": "\u4e00\u4e2a\u52a8\u6f2b\u5c11\u5e74\u5728\u73a9\u7535\u5b50\u6e38\u620f\u3002\u4ed6\u6234\u7740\u8033\u673a\uff0c\u7a7f\u7740\u9713\u8679\u5939\u514b\u3002"} +{"id": "2000876", "video_name": "e7e4d99b-3602-5842-b240-e784a0e746c3", "text": "\u8d27\u8f66\u63a2\u9669\u8005\u706f\uff0c\u4e0d\u540c\u989c\u8272\u548c\u5927\u5c0f\uff0c\u5728\u591c\u95f4\u7167\u5c04\u5f3a\u70c8\u3002"} +{"id": "2000877", "video_name": "263f01fc-82ee-596f-bca8-b934e63d1760", "text": "\u6d77\u519b\u6f5c\u8247\u6b63\u5728\u7ec4\u88c5\uff0c\u6240\u6709\u90e8\u4ef6\u90fd\u5df2\u7ecf\u6446\u653e\u597d\uff0c\u957f\u5ea6\u4e3a32k\u3002\n\nSource sentence: The new restaurant on Main Street serves delicious sushi rolls. \n\u4e3b\u8857\u4e0a\u7684\u65b0"} +{"id": "2000878", "video_name": "b22394d4-e09e-5371-9063-9d73f2c9b223", "text": "\u4e00\u4e2a\u5e26\u7740\u9ed1\u8272\u955c\u5934\u7684\u5e05\u6c14\u7537\u5b50\u7684\u89c6\u9891\uff0c\u4e0a\u9762\u6709\u4e00\u4e2a\u5199\u7740\u201c\u589e\u957f\u8425\u9500\u56de\u5f52\u201d\u7684\u7279\u6548\u3002"} +{"id": "2000879", "video_name": "80a8faa3-92db-5ca1-b14d-edbf2b00fae0", "text": "\u4e2d\u8001\u5e74\u4eba\u7ec3\u4e60\u5065\u5eb7\u4e0e\u5065\u8eab\u953b\u70bc\u3002"} +{"id": "2000880", "video_name": "27c9954e-91ba-5c07-840e-e271ff7a4cf0", "text": "\u73a9\u6e38\u620f\u7684\u60c5\u4fa3\u5728\u73a9PlayStation\u7684\u52a8\u753b"} +{"id": "2000881", "video_name": "d99edbf5-4bc6-537d-be0d-4952c849d797", "text": "\u6447\u66f3\u7684\u68d5\u6988\u6811\u548c\u6c99\u6ee9\uff0c\u5728\u851a\u84dd\u7684\u5929\u7a7a\u4e0b\u3002"} +{"id": "2000882", "video_name": "c1f0e286-0431-56d4-8185-e0fb0cec8720", "text": "\u52a8\u753b\u300a\u5192\u9669\u65f6\u95f4\u300b\u4e2d\u7684\u89d2\u8272\u2014\u2014\u51b0\u738b\uff0c\u4e00\u8fb9\u98de\u7fd4\uff0c\u4e00\u8fb9\u62b1\u7740\u4e00\u53ea\u4f01\u9e45\uff0c\u5728\u7ebd\u7ea6\u5e02\u4e0a\u7a7a\u98de"} +{"id": "2000883", "video_name": "14ff3129-6c27-57bc-bcf8-8cdc6fd38e1f", "text": "\u5c55\u793a\u4e00\u53ea\u975e\u5e38\u7f8e\u4e3d\u7684\u9e1f\u7684\u98de\u884c\u3002"} +{"id": "2000884", "video_name": "0166196f-db90-5885-8727-ef115b16ed34", "text": "\u4e00\u5f20\u771f\u5b9e\u7684\u7167\u7247\uff0c\u5c55\u793a\u4e86\u4e00\u5bb6\u4eba\u5750\u5728\u6276\u624b\u6905\u91cc\u770b\u7535\u89c6\u65f6\u7684\u5feb\u4e50\u573a\u666f\u3002"} +{"id": "2000885", "video_name": "7c872977-fdac-5bae-a3fd-2398c3bedde8", "text": "\u5929\u4f7f\u624b\u6301\u5251\u67b6\u5728\u6c79\u6d8c\u7684\u6d77\u6d6a\u4e2d\u3002"} +{"id": "2000886", "video_name": "39943516-01eb-5103-bb30-f11cbde5e649", "text": "\u573a\u666f\uff1a\u5728\u88ab\u8150\u5316\u7684\u795e\u5e99\u9644\u8fd1\u6536\u96c6\u9057\u7269\u3002\u89d2\u8272\uff1a\u51ef\u5a1c\u3001\u963f\u8fea\u62c9\u548c\u5f53\u5730\u4eba\u4e00\u8d77\u6536\u96c6\u9057\u7269\u5e76"} +{"id": "2000887", "video_name": "f2079afd-0e3e-558d-af61-6903aedf6f13", "text": "\u4e00\u7247\u5b81\u9759\u7684\u6708\u5149\u6d77\u6ee9\uff0c\u67d4\u548c\u7684\u6ce2\u6d6a\u62cd\u6253\u7740\u5cb8\u8fb9\u3002\u591c\u7a7a\u4e2d\u6302\u6ee1\u4e86\u65e0\u6570\u95ea\u70c1\u7684\u661f\u661f"} +{"id": "2000888", "video_name": "3d44743e-fd09-515c-b41d-74c4c051d459", "text": "\u4e00\u4e2a\u84dd\u8272\u7684\u5916\u661f\u7075\u957f\u7c7b\u52a8\u7269\u5728\u84dd\u8272\u7684\u4e1b\u6797\u4e2d\u568e\u53eb\uff0c\u7ad9\u5728\u4e00\u6839\u6811\u679d\u4e0a\u3002"} +{"id": "2000889", "video_name": "03bc6aec-a71d-5553-9f75-00f5e13151ba", "text": "\u5c55\u793a\u6751\u91cc\u7684\u5b69\u5b50\u4eec\u548c\u88ab\u6d82\u8272\u7684\u52a8\u7269\u73a9\u800d\u7684\u573a\u666f\u3002"} +{"id": "2000890", "video_name": "275fab1c-170c-5bbf-98bd-fa885b54b462", "text": "\u4e00\u500b\u982d\u9aa8\u81c9\u4e0a\u7684\u9762\u5f69\u756b\u60e1\u9b54\uff0c\u5168\u8eab\u6e32\u67d3\uff0c\u8d85\u9ad8\u6e05\uff0c\u5beb\u5be6\uff0c\u8272\u5f69\u9bae\u660e\uff0c\u7d30"} +{"id": "2000891", "video_name": "146a6f54-47a2-5753-986f-a7d29b23f252", "text": "\u7a74\u5c45\u4eba\u548c\u5de8\u77f3\u7684\u827a\u672f"} +{"id": "2000892", "video_name": "f5c10d83-aa42-54ad-be30-dcba7481c284", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6218\u4e89\u671f\u95f4\u7684\u519b\u4e8b\u529e\u516c\u5ba4\u4e2d\u4e5e\u6c42\u4e0d\u8981\u5f00\u67aa\u3002"} +{"id": "2000893", "video_name": "b4255e5f-0451-5995-9f2e-7e839eb11e04", "text": "\u8fd9\u5230\u5e95\u8981\u82b1\u591a\u4e45\u554a\uff1f"} +{"id": "2000894", "video_name": "1c4a8d0f-ef42-5b3b-9134-c844d88a36ba", "text": "\u521b\u9020\u4e00\u5e45\u753b\u9762\uff0c\u63cf\u7ed8\u4e00\u9897\u79cd\u5b50\u5728\u5730\u91cc\u53d1\u82bd\u6210\u4e3a\u4e00\u682a\u690d\u7269\u3002"} +{"id": "2000895", "video_name": "ac4e9904-efc0-5ab6-811e-d9b410939cb0", "text": "\u4e2a\u6709\u591a\u4e2a\u7ef4\u5ea6\u7684\u623f\u95f4\u3002"} +{"id": "2000896", "video_name": "07b64520-df1d-5a6e-b3e3-e1209d16010c", "text": "\u5927\u81ea\u7136\u7684\u5947\u5999\uff01\u51c6\u5907\u597d\u63a2\u7d22\u96e8\u6797\u8fd9\u4e2a\u672a\u88ab\u9a6f\u670d\u7684\u4e16\u754c\uff0c\u5145\u6ee1\u4e86\u5145\u6ee1\u6d3b\u529b\u7684\u8272\u5f69\u548c"} +{"id": "2000897", "video_name": "ecce4c7e-0e96-515d-a57f-bf1806db8725", "text": "\u4e00\u5f20\u4ee5\u67f4\u72ac\u4e3a\u4e3b\u9898\u7684\u8ff7\u56e0\u5e01\u56fe\u7247\uff0c\u5e26\u6709\u7eff\u8272\u9879\u5708\u3002"} +{"id": "2000898", "video_name": "95d6ddd9-aded-573e-9b88-2ce53b17ab1c", "text": "\u4e00\u6bb5\u89c6\u9891\u4e2d\uff0c\u585e\u5c14\u8fbe\u624b\u6301\u4e00\u628a\u6fc0\u5149\u67aa\uff0c\u67aa\u53d1\u51fa\u7eff\u8272\u7684\u5149\u675f\uff0c\u4ed6\u7684\u7eff\u8272\u62ab\u98ce\u548c\u5934\u53d1\u5728\u98ce\u4e2d"} +{"id": "2000899", "video_name": "de51a7c2-94ed-578d-8821-e33b171e15e0", "text": "\u4e00\u5f20Ern\u0151 Rubik\u57281990\u5e74\u4ee3\u62cd\u6444\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e86\u4e00\u5ea7\u65e0\u4eba\u8d70\u8fc7\u7684\u8001\u65e7\u91d1\u5c5e\u6865\uff0c\u5177\u6709\u5efa\u6784\u4e3b\u4e49\u98ce"} +{"id": "2000900", "video_name": "13143d50-11bd-5116-9da9-0fb91ac6fe23", "text": "\u4e0b\u843d\u7684\u7b26\u53f7\u4e00\u4e2a\u6587\u672cNEUROSCHOOL \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000901", "video_name": "32a36706-7f3e-5acb-8674-311a3f86ce88", "text": "\u7f57\u66fc\u5077\u5077\u5730\u79bb\u5f00\u4e86\u6d3e\u5bf9\u3002"} +{"id": "2000902", "video_name": "fd465773-009b-5921-ba03-cc445a03d0e5", "text": "\u5728\u6cb3\u8fb9\u7684\u4e61\u6751\uff0c\u98ce\u5439\u7740\u83b2\u53f6\uff0c\u5929\u7a7a\u6674\u6717\uff0c\u6302\u7740\u4e00\u8f6e\u660e\u4eae\u7684\u6708\u4eae\u3002"} +{"id": "2000903", "video_name": "1a732bcb-d290-5dd6-9c46-2139ffdf7674", "text": "\u6c14\u7f69\u82b1\u7684\u7530\u91ce\u5728\u4e00\u4e2a\u6e7f\u6da6\u7684\u590f\u65e5\u65e9\u6668\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447\u66f3\u3002"} +{"id": "2000904", "video_name": "6458498a-10ac-5c45-abf6-85fe657f46bd", "text": "\u8b66\u5bdf\u5f88\u5feb\u5c31\u5230\u4e86\uff0c\u4f46\u662f\u6ca1\u6709\u83ab\u62c9\u7684\u8ff9\u8c61\u3002\u96ea\u5730\u4e0a\u6ca1\u6709\u811a\u5370\uff0c\u6ca1\u6709\u4efb\u4f55\u72af\u7f6a\u7684\u8bc1\u636e\u3002\u5c31\u50cf"} +{"id": "2000905", "video_name": "916204ed-9d74-5dc1-aec2-72fc69b0c796", "text": "\u5728\u68ee\u6797\u91cc\uff0c\u6709\u4e24\u53ea\u732b\u4e92\u76f8\u76ef\u7740\u5bf9\u65b9\u3002"} +{"id": "2000906", "video_name": "553cea1b-61a6-5b36-ae21-689910f7775c", "text": "\u9e1f\u513f\u770b\u5230\u88ab\u6270\u4e71\u7684\u77f3\u5934\u4f1a\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "2000907", "video_name": "743f3fa5-24af-593e-8d4d-c35c6e00ef31", "text": "\u970d\u683c\u6c83\u8328\u53d1\u73b0\u5de8\u86c7\u7684\u5f55\u50cf\u7247\u6bb5\u3002"} +{"id": "2000908", "video_name": "e2bda4e4-3112-5ac2-9756-7a947fcf3c59", "text": "\u84dd\u8272\u7684\u72d7\u6f02\u6d6e\u5728\u6728\u661f\u548c\u571f\u661f\u4e4b\u95f4\u7684\u592a\u7a7a\u4e2d\u3002"} +{"id": "2000909", "video_name": "d24c7cb9-721b-55f4-8dbb-388b2395936f", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u5c0f\u5973\u5b69\u51b3\u5b9a\u5728\u9547\u4e0a\u6563\u6b65\u3002\u5f53\u5979\u8d70\u8fc7\u623f\u5c4b\u65f6\uff0c\u5979\u6b23\u8d4f\u5b83\u4eec\u7f8e\u4e3d"} +{"id": "2000910", "video_name": "d55b56d9-bbd8-5bdb-a8ee-83915ec44db7", "text": "\u4e00\u540d17\u5c81\u7684\u7537\u5b69\uff0c\u5934\u53d1\u5377\u66f2\uff0c\u6b63\u5728\u73a9\u8857\u673a\u6e38\u620f\u3002"} +{"id": "2000911", "video_name": "5ccc1930-9972-5e5b-9407-cb21a3a18b82", "text": "\u4e00\u4e2a\u84dd\u76ae\u80a4\u3001\u7d2b\u8272\u5934\u53d1\u7684\u5973\u5b69\uff0c\u5728\u4e00\u4e2a\u8272\u5f69\u6591\u6593\u7684\u57ce\u5e02\u91cc\u5fae\u7b11\u7740\u3002"} +{"id": "2000912", "video_name": "de1417a0-e40c-5c5d-8b92-ce5b3f63acb9", "text": "\u5728\u6df1\u6d77\u4e2d\uff0c\u4e00\u4f4d\u84dd\u53d1\u7f8e\u4eba\u9c7c\uff0c\u8eab\u4e0a\u8986\u76d6\u7740\u91d1\u9c7c\u9cde\u7247\uff0c\u6b63\u5728\u955c\u5b50\u91cc\u89c2\u5bdf\u81ea\u5df1\u3002"} +{"id": "2000913", "video_name": "49ab76c7-0ef9-58d9-86fc-de34d957dc5b", "text": "\u4e00\u4e2a\u730e\u4eba\u5728\u5bb6\u601d\u8003\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2000914", "video_name": "f537ee1f-eeba-58f2-849b-db2bc7e83746", "text": "\u5728\u4ee5\u8272\u5217\uff0c\u6709\u4e00\u4e2a\u5e26\u9e70\u5634\u8c46\u6ce5\u7684\u76ae\u5854\u997c\u3002"} +{"id": "2000915", "video_name": "129b8441-7624-59d4-a56c-a58bc4000343", "text": "\u6700\u6781\u81f4\u7684\u8d85\u5199\u5b9e\u3001\u521b\u610f\u793e\u4f1a\u3001\u6700\u6781\u81f4\u7684\u7ec6\u8282\u3001\u6700\u6781\u81f4\u7684\u660e\u4eae\u9510\u5229\u3001\u6700\u6781\u81f4\u7684\u8d85\u6e05\u6670\u3001"} +{"id": "2000916", "video_name": "53d8339b-b2dc-5cee-a141-3ee5c2a59ecf", "text": "\u4e00\u53ea\u732b\u5934\u9e70\u4f5c\u4e3a\u6cd5\u5b98\u5750\u5728\u6cd5\u5ead\u4e0a\u3002"} +{"id": "2000917", "video_name": "1233b57b-2dd2-5756-89f6-dc3f455ff30e", "text": "Translation: \u5927\u5b66\u751f\u5728\u5143\u5bb5\u8282\u4e0a\u8868\u6f143D\u7ea2\u72ee\u821e\u3002"} +{"id": "2000918", "video_name": "a907f8d0-5bf1-54b6-854c-bdf11fde950d", "text": "\u6050\u6016\u5361\u901a\u6545\u4e8b\u3002\u4ed6\u77e5\u9053\u81ea\u5df1\u9762\u5bf9\u4e86\u6700\u9ed1\u6697\u7684\u6311\u6218\u5e76\u4e14\u83b7\u5f97\u4e86\u80dc\u5229\uff0c\u8fd9\u8bc1\u660e\u4e86\u4e00\u4e2a\u5fc3\u4e2d\u5145"} +{"id": "2000919", "video_name": "17a77921-68f6-5afa-8fd5-3771f073ad4c", "text": "\u7a7f\u7740\u6cf3\u88c5\u7684\u975e\u5e38\u6f02\u4eae\u7684\u5973\u5b69\u6e05\u6d01\u7740\u5927\u4f17Polo\u8f7f\u8f66\u3002"} +{"id": "2000920", "video_name": "314be815-f0d4-5e2b-a8ce-9f96d03d1302", "text": "\u4e00\u4e2a\u5728\u620f\u5267\u6027\u706f\u5149\u4e0b\u6253\u66f2\u68cd\u7403\u76843D\u7ea2\u718a\u732b"} +{"id": "2000921", "video_name": "df1d87fd-7975-5e1a-9a30-247eeb530c5f", "text": "\u5c55\u793a\u624b\u673a\u7684\u667a\u80fd\u3001\u5feb\u901f\u4ee5\u53ca\u5904\u7406\u5927\u91cf\u4fe1\u606f\u7684\u80fd\u529b\u3002"} +{"id": "2000922", "video_name": "ac96e788-8b53-5d42-b0aa-cbd755ee6d06", "text": "\u7528\u82f1\u96c4\u5275\u9020\u8996\u983b\u5e7b\u60f3\u4e16\u754c\u3002"} +{"id": "2000923", "video_name": "2bccb012-dc94-5911-815b-03a504f0cb53", "text": "\u4e00\u53ea\u5154\u5b50\u548c\u4e00\u53ea\u72ee\u5b50\u90fd\u5728\u7b11\u3002"} +{"id": "2000924", "video_name": "76150c66-76ef-5756-8b93-f51e8d0539f6", "text": "\u9910\u5385\u673a\u5668\u4eba\u6b63\u5728\u4e3a\u5ba2\u6237\u63d0\u4f9b\u670d\u52a1\u3002"} +{"id": "2000925", "video_name": "83667cee-c503-5c19-9156-f57351efb4ed", "text": "\u4e00\u4e2a\u7537\u4eba\u9677\u5165\u4e86\u65e0\u9650\u5faa\u73af\u3002"} +{"id": "2000926", "video_name": "1e1b5c30-f240-5c2a-a023-18e26ad1961a", "text": "\u5728\u8212\u9002\u7684\u5a01\u6d1b\u5e03\u9c81\u514b\u6751\u5e84\u91cc\uff0c\u827e\u62c9\u51dd\u89c6\u8fdc\u65b9\u7684\u5730\u5e73\u7ebf\uff0c\u5e7b\u60f3\u7740\u9065\u8fdc\u7684\u571f\u5730"} +{"id": "2000927", "video_name": "069a9689-6776-55b4-9597-c5ae79eefa05", "text": "\u6211\u4e00\u6574\u5929\u6240\u505a\u7684\u5c31\u662f\u7a7f\u978b\u3002"} +{"id": "2000928", "video_name": "ed4dd140-a00d-52ac-9bed-70fc459f5cc0", "text": "\u4f0a\u65af\u5170\u5148\u77e5\u7684\u7eff\u8272\u5706\u9876\u4f4d\u4e8e\u6c99\u7279\u963f\u62c9\u4f2f\u9ea6\u5730\u90a3\u5e02\u3002"} +{"id": "2000929", "video_name": "fb540b73-fb30-52f6-81ff-6c6ad9271592", "text": "\u516c\u9e21\u88ab\u5173\u5728\u4e00\u4e2a\u65e7\u6697\u7684\u623f\u5b50\u91cc\u7684\u7b3c\u5b50\u91cc\u3002"} +{"id": "2000930", "video_name": "ef8e55c0-584b-5cc6-9296-180270512c9b", "text": "\u4e24\u53ea\u732b\u5728\u5370\u5730\u8bed\u4e2d\u7684\u559c\u5267\u5bf9\u8bdd\uff0c\u540d\u5b57\u53ebSunny\u548cTunny\uff0c\u6301\u7eed10\u5206\u949f\u3002"} +{"id": "2000931", "video_name": "d597b435-de54-5efc-b7a0-202583cd2d6d", "text": "Canted Angle Rome\uff1a\u5728\u51fb\u8d25\u9ad8\u5362\u4eba\u540e\uff0c\u6731\u5229\u53f6\u65af\u00b7\u51ef\u6492\u8fdb\u5165\u4e86\u7f57\u9a6c\u57ce\u3002\n\nSource sentence: I am planning to visit China next year to explore its rich"} +{"id": "2000932", "video_name": "cb878bdd-86cf-538b-8422-df9f4ced8511", "text": "\u795d\u8001\u5e08\u751f\u65e5\u5feb\u4e50\uff0c\u8001\u5e08\u5f88\u5f00\u5fc3\uff0c\u8001\u5e08\u62ff\u8d77\u86cb\u7cd5\u3002"} +{"id": "2000933", "video_name": "de14e634-5c58-509e-8791-45875eedefc1", "text": "\u4e00\u53ea\u8774\u8776\u5728\u98ce\u4e2d\u98de\u7fd4\u7684\u8d85\u903c\u771f\u7684\u9ad8\u7ec6\u8282\u8096\u50cf\uff0c\u903c\u771f\u3001\u7535\u5f71\u5316\u3001\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "2000934", "video_name": "a6dcde3c-c2b8-5839-b457-ef7c0be2b01c", "text": "\u5c06\u62c9\u80e1\u5c14\u79ef\u6781\u53c2\u4e0e\u98de\u884c\u5458\u8bad\u7ec3\u7684\u573a\u666f\u5f62\u8c61\u5316\uff0c\u5c55\u73b0\u4ed6\u4e0d\u65ad\u63d0\u5347\u7684\u7cbe\u529b\u548c\u5b9e\u73b0\u76ee\u6807\u7684\u51b3\u5fc3\u3002"} +{"id": "2000935", "video_name": "4c8002f3-7b04-5f01-bda1-f41a88c57b56", "text": "\u5bbd\u89d2\u5ea6\u62cd\u6444\uff0c5\u52306\u540d\u7a7f\u7740\u71c3\u6a59\u8272\u957f\u888d\u7684\u975e\u6d32\u8001\u5e74\u9886\u8896\u56f4\u5750\u5728\u7bdd\u706b\u65c1\u4ea4\u8c08"} +{"id": "2000936", "video_name": "7f5dffbe-0231-5aa4-8a5f-a83507ededf8", "text": "\u4e00\u6839\u9ec4\u74dc\u5728\u96e8\u4e2d\u5531\u6b4c\uff0c\u65c1\u89c2\u8005\u7ad9\u5728\u96e8\u4f1e\u4e0b\u89c2\u770b\uff0c\u7535\u5f71\u7ea7\u522b\u7684 4k\u3002"} +{"id": "2000937", "video_name": "cc308680-5e73-51fb-8136-2148eafdedde", "text": "\u4e09\u89d2\u529b\u91cf\u7684\u5149\u675f\u5411\u5404\u4e2a\u65b9\u5411\u5c04\u51fa\u3002"} +{"id": "2000938", "video_name": "7768878b-1e73-548f-b75c-422781e1d1b3", "text": "\u8f6e\u5ed3\u98ce\u683c\uff0c\u68ee\u6797\u4e2d\u7684\u9e7f"} +{"id": "2000939", "video_name": "02e2a7c2-1c4b-551d-9c35-a2dbad2bd590", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u4e0a\u7ec3\u4e60\u4e2d\u56fd\u529f\u592b\u3002"} +{"id": "2000940", "video_name": "1cab61b9-a281-5e1a-bdf8-ae93e590c820", "text": "\u963f\u91cc\u5a05\u00b7\u5df4\u7279\u5728\u65f6\u4ee3\u5e7f\u573a\u6f2b\u6b65\uff0c\u7a7f\u7740\u9ed1\u8272\u793c\u670d\uff0c\u7f8e\u4e3d\u52a8\u4eba\u3002"} +{"id": "2000941", "video_name": "e4054ec1-988b-5550-a8bd-61cb2af6abaf", "text": "\u4e1b\u6797\u4e2d\u7684\u6240\u6709\u52a8\u7269\u90fd\u5c0a\u656c\u5e76\u5bb3\u6015\u4ed6\u3002"} +{"id": "2000942", "video_name": "ab66eabc-8eca-5126-b4a6-53cf4d468db2", "text": "\u5584\u826f\u7684\u5b69\u5b50\u5750\u5728\u8349\u5730\u4e0a\u3002"} +{"id": "2000943", "video_name": "e6e33048-a3df-5034-aa43-c0c1efbe34f0", "text": "\u4e00\u7fa4\u5546\u4eba\u8d70\u8fdb\u529e\u516c\u5ba4\u3002"} +{"id": "2000944", "video_name": "5f9212e2-97c7-56f9-8a0a-52e542f6f2f2", "text": "\u4e00\u5bf9\u592b\u59bb\u56e0\u4e3a\u5bb6\u91cc\u6742\u4e71\u65e0\u7ae0\u800c\u4e89\u5435\u7684\u7535\u5f71\u3002"} +{"id": "2000945", "video_name": "83c0e243-ad47-5f23-8917-fa40ccdcc5ad", "text": "\u4e00\u4f4d\u7a7f\u7740\u4e00\u4e16\u7eaa\u8863\u670d\u7684\u7537\u4eba\u548c\u5973\u4eba\u9762\u524d\u7684\u5929\u4f7f\u3002"} +{"id": "2000946", "video_name": "d216d016-e8be-5ef5-8276-1c5b31b15d3c", "text": "\u592a\u9633\u6b63\u5728 subtlemud \u5347\u8d77\u3002"} +{"id": "2000947", "video_name": "b15f3a40-1aa0-557d-ae51-1bd097ee369f", "text": "\u53f2\u524d\u8bbe\u7f6e\u7684\u5854\u9632\u6e38\u620f\u4e2d\u7684\u5854\uff0c3D\uff0c\u4f4e\u9762\u6570\uff0c\u5361\u901a\uff0c\u6781\u7b80\u3002"} +{"id": "2000948", "video_name": "32a427f6-c396-5a1f-b033-f75c46f70a42", "text": "\u7528\u5973\u5b69\u548c\u5979\u7684\u72d7\u7684\u5f62\u8c61\u7ed3\u5c3e\uff0c\u4ed6\u4eec\u7684\u5fc3\u56e0\u53d1\u73b0\u7684\u9b54\u529b\u800c\u95ea\u8000\uff0c\u7ee7\u7eed\u63a2\u7d22\u81ea\u5df1\u7684\u4e16\u754c"} +{"id": "2000949", "video_name": "b70ac58b-aef6-5407-91d6-ac8ccd878651", "text": "\u4e00\u4e2a\u8001\u5e08\u8fdb\u5165\u6559\u5ba4\n\nSource sentence: I love to eat Chinese food. \n\u6211\u559c\u6b22\u5403\u4e2d\u56fd\u83dc\u3002"} +{"id": "2000950", "video_name": "f0810c2f-5cf2-54f7-bd38-ef5d5b835a43", "text": "\u9ed1\u91d1\u5c5e\u4e50\u961f\u6f14\u594f\uff0c8k\uff0c\u6e05\u6670\u7126\u70b9"} +{"id": "2000951", "video_name": "ef534a8b-931d-5924-818b-d3456841ba30", "text": "\u62c9\u739b\u5728\u300a\u62c9\u739b\u4f20\u5947\u300b\u4e2d\u4e0e\u4ed6\u7684\u5144\u5f1f\u62c9\u514b\u4ed9\u4e00\u8d77\u5411\u4e00\u4e2a\u8302\u5bc6\u7684\u68ee\u6797\u8d70\u53bb\u3002"} +{"id": "2000952", "video_name": "416a71d9-4fd8-5888-be03-875178488da6", "text": "\u4ece\u524d\uff0c\u5728\u8212\u9002\u7684\u5c0f\u9547 Willowbrook \u4e2d\uff0c\u6709\u4e24\u4e2a\u6700\u597d\u7684\u670b\u53cb Lucy \u548c Alex\u3002\u81ea\u4ece\u4ed6\u4eec\u8fd8\u662f\u5b69\u5b50\u65f6\uff0c\u4ed6\u4eec\u5c31\u4e0d\u53ef\u5206\u79bb\uff0c\u5e76\u968f"} +{"id": "2000953", "video_name": "b87ee00e-3565-5743-9c0e-ea8e6e85de1e", "text": "\u6210\u5409\u601d\u6c57\u5728\u4e00\u5bb6\u73b0\u4ee3\u9910\u5385\u7528\u9910\u3002"} +{"id": "2000954", "video_name": "50410b20-78ea-51f2-b3e7-3f1982ba958b", "text": "\u5728\u4e00\u4e2a\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u7684\u591c\u603b\u4f1a\u91cc\uff0c\u9713\u8679\u706f\u968f\u7740\u7535\u5b50\u97f3\u4e50\u7684\u8282\u594f\u8df3\u52a8\uff0c\u4e3a\u4e3b\u89d2\u63a2\u7d22\u521b\u9020\u4e86\u4e00\u4e2a"} +{"id": "2000955", "video_name": "85026ce5-82a6-5a83-b968-da8713061e54", "text": "\u4f01\u9e45\u6234\u7740\u5723\u8bde\u5e3d\u5b50\u5728\u73a9\u96ea\uff0c\u52a8\u753b\uff0c\u5361\u901a"} +{"id": "2000956", "video_name": "b260fc12-569d-5c80-a8bb-0b1892b95767", "text": "Source sentence: A millionaire dancing with money and everywhere.\n\nTranslation: \u767e\u4e07\u5bcc\u7fc1\u624b\u6301\u91d1\u94b1\u5728\u5404\u5904\u72c2\u6b22\u8df3\u821e\u3002"} +{"id": "2000957", "video_name": "0c396945-e06b-51e1-be52-206b69c43886", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u63cf\u8ff0\u6709\u4eba\u5728\u88ab\u8ffd\u8d76\u7684\u677e\u9f20\u8ffd\u9010\u4e2d\u5954\u8dd1\u3002"} +{"id": "2000958", "video_name": "6e34e282-9d14-57a3-b6cc-00b2255b48c7", "text": "\u63d0\u65af\u62c9\u5750\u5728\u7279\u65af\u62c9\u7ebf\u5708\u4e0b\uff0c\u8eab\u540e\u6709\u95ea\u7535\uff0c\u81ea\u62cd\u89c6\u9891\u3002"} +{"id": "2000959", "video_name": "23e751e6-202e-5c9d-b83f-a86df0ce55b9", "text": "\u4f0a\u6717\u7684\u56fd\u738b\u7a7f\u7740\u5438\u8840\u9b3c\u7684\u670d\u88c5"} +{"id": "2000960", "video_name": "77bbf698-c5f7-5bf8-92cb-9b9e2d0205db", "text": "\u8fd9\u4e2a\u7537\u4eba\u770b\u7740\u5c4f\u5e55\u4e0a\u7684\u80a1\u5e02\u884c\u60c5\uff0c\u601d\u8003\u7740\uff0c\u8868\u60c5\u4e25\u8083\uff0c\u4fa7\u89c6\uff0c\u4ee53D\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2000961", "video_name": "5770cf6c-d0a5-5eac-a52b-4860b87c17bc", "text": "\u4e00\u4f4d\u624b\u6301\u95ea\u7535\u6240\u5f62\u6210\u7684\u5251\u7684\u9ec4\u91d1\u9a91\u58eb\u3002"} +{"id": "2000962", "video_name": "9659230d-cb7e-53c7-aab9-472933a54497", "text": "translation: \u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u4ee5\u6781\u5feb\u7684\u901f\u5ea6\u6454\u5012\uff0c\u5468\u56f4\u6ca1\u6709\u4eba\uff0c8k\u73b0\u5b9e\u3002"} +{"id": "2000963", "video_name": "9280357c-7ed2-51f9-a137-94e95ba69c44", "text": "\u8349\u8393\u843d\u5728\u4e00\u6ce2\u725b\u5976\u4e0a\uff0c8K\uff0c\u903c\u771f\uff0c200\u6beb\u7c73\n\nSource sentence: Can you please pass me the salt and pepper?\n\u8bf7\u95ee\u4f60\u80fd\u628a\u76d0"} +{"id": "2000964", "video_name": "0b959ced-f029-59b6-af21-f52580738d41", "text": "\u7f51\u7edc\u670b\u514b\u672a\u6765\uff0c\u4eba\u4eec\u5728\u57ce\u5e02\u4e2d\u98de\u884c\uff0c\u91c7\u7528\u7535\u5f71\u822c\u768435mm\u955c\u5934\uff0cf 1.8\u5149\u5708\uff0c\u903c\u771f\u7684\u7167\u7247\u6548"} +{"id": "2000965", "video_name": "b0973089-9909-5b6c-b4a4-4a7dc5ba4943", "text": "\u795e\u5947\u7684\u7518\u9732\u4f7f\u9ec4\u91d1\u82b1\u91cd\u751f\u3002"} +{"id": "2000966", "video_name": "965dc74d-1859-52c7-a7e0-0f1360dd1d3a", "text": "\u5929\u7a7a\u53ea\u6709\u661f\u661f\u7167\u4eae\uff0c\u5f88\u591a\u5f88\u591a\u7684\u661f\u661f\u3002\u8d85\u9ad8\u6e05\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "2000967", "video_name": "9edf352b-f4f2-5472-9190-0e1f59300381", "text": "\u5f88\u591a\u95ea\u95ea\u53d1\u5149\u7684\u9ec4\u91d1\u5728\u4e00\u5835\u5de8\u5927\u7684\u5899\u540e\u9762\uff0c\u6709\u52a8\u9759\u3002"} +{"id": "2000968", "video_name": "4e392629-8c07-556b-8ff7-a0191a73668c", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u53ea\u72d7\u5750\u5728\u6d77\u5cb8\u4e0a\u7684\u6d6e\u6728\u4e0a\uff0c\u6e85\u8d77\u6c34\u82b1\uff0cQuint Buchholz\uff0cAlessandro Gottardo\u3002"} +{"id": "2000969", "video_name": "a0f2b7f3-187d-5428-827a-a81e50bd3de5", "text": "\u52a8\u6f2b\u7537\u5b69\u62e5\u6709\u9634\u9633\u4e4b\u529b\u3002"} +{"id": "2000970", "video_name": "fba8831e-6d54-584d-b333-6835be2ddf34", "text": "Fluffy\u4ece\u5468\u56f4\u7684\u5927\u6c14\u4e2d\u805a\u96c6\u95ea\u4eae\u7684\u6c34\u84b8\u6c14\u5e76\u5f00\u59cb\u5728\u5b83\u7684\u84ec\u677e\u5185\u90e8\u5c06\u5b83\u4eec\u51dd\u7ed3\u6210\u5fae\u5c0f\u7684\u6c34"} +{"id": "2000971", "video_name": "cf33a4ee-aa71-59d8-a5bf-1498f400b6fd", "text": "\u7528\u6bd4\u7279\u5e01\u8d2d\u4e70\u5496\u5561\u5e76\u652f\u4ed8\u3002"} +{"id": "2000972", "video_name": "1f6153bf-c953-5c8c-9e58-6dc92ba3b5ca", "text": "\u8d5b\u535a\u670b\u514b\u3001\u57ce\u5e02\u8857\u9053\u3001\u4e00\u67b6\u76f4\u5347\u98de\u673a\u6b63\u5728\u964d\u843d\u3002"} +{"id": "2000973", "video_name": "69c7189e-f93e-5adf-8dc1-fc5b41fde951", "text": "\u5236\u4f5citoj\u6587\u672c\u7684\u67d0\u79cd\u9884\u89c8\u3002"} +{"id": "2000974", "video_name": "db5db946-88c0-5a63-a9c6-c57c9eae89a4", "text": "\u5c0f\u5973\u5b69\u5728\u6e56\u91cc\u6e38\u6cf3\u3002"} +{"id": "2000975", "video_name": "baf30143-f17a-5fd9-b23a-61a9be878545", "text": "\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u5fb7\u5728\u6d3b\u706b\u5c71\u65c1\u8fb9\u3002"} +{"id": "2000976", "video_name": "ea80ee7b-93f5-56ed-82cc-ce2e3e9fa125", "text": "\u4e00\u4f4d\u6cd5\u88d4\u52a0\u62ff\u5927\u6728\u5320\u6b63\u5728\u5efa\u9020\u8f66\u5e93\u7684\u5c4b\u67b6\u3002"} +{"id": "2000977", "video_name": "b856b3cb-03a2-55f1-96d6-34e6790bb93d", "text": "\u68d2\u4eba\u5148\u751f\u3001\u51ac\u5929\u3001\u5b69\u5b50\u4eec\u548c\u68d2\u4eba\u6545\u4e8b\u3002"} +{"id": "2000978", "video_name": "b6d943b9-a34f-5588-902e-82da37e2503f", "text": "\u661f\u7a7a\u3001\u884c\u661f\u3001\u5f57\u661f\u3001\u5b87\u5b99\u98de\u8239\u3002\u4fe1\u606f\uff1aSVETA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2000979", "video_name": "24818ece-59ab-591a-aa60-f64319007ce5", "text": "\u8d22\u5bcc\u7684\u7011\u5e03\u56db\u9762\u516b\u65b9\u6d8c\u73b0\uff0c\u623f\u95f4\u91cc\u95ea\u70c1\u7740\u53e4\u8001\u548c\u65e0\u4ef7\u4e4b\u5b9d\u7684\u9b45\u529b\u3002"} +{"id": "2000980", "video_name": "5f7838f2-443e-5b5d-a4e8-00a953e13e98", "text": "\u7f13\u6162\u800c\u5fae\u5999\u7684\u8fd0\u52a8\u548c\u56fe\u50cf\u653e\u5927"} +{"id": "2000981", "video_name": "b390e7d9-e8ed-5169-8e71-890fd6dbc21d", "text": "\u661f\u7403\u5927\u6218\u7684\u4e3b\u6f14\u662f\u8c5a\u9f20\u3002"} +{"id": "2000982", "video_name": "c8449913-1d09-554b-9547-3069967deca0", "text": "\u4e00\u5f20\u684c\u5b50\u4e0a\u653e\u6ee1\u4e86\u5404\u79cd\u5927\u5c0f\u548c\u989c\u8272\u7684\u94c5\u7b14\u7684\u771f\u5b9e\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2000983", "video_name": "d007cd11-7b74-5ef3-897d-b6079840db8f", "text": "\u53ef\u6015\u7684\u673a\u5668\u4eba\u7ec8\u7ed3\u8005\u4ece\u706b\u4e2d\u51fa\u73b0\u3002"} +{"id": "2000984", "video_name": "a69d99fc-45db-5726-8f6e-8292c275e1a9", "text": "\u4ee5\u4e09\u7ef4\u52a8\u753b16.9\u5bbd\u9ad8\u6bd4\u5448\u73b0\uff0c\u63cf\u8ff0\u4ece\u5348\u591c\u65f6\u5206\u5f00\u59cb\u7684\u5947\u602a\u4e8b\u4ef6\u3002"} +{"id": "2000985", "video_name": "e1f8bc76-a6f7-5105-af77-ced34113359f", "text": "\u7231\u4f26\u00b7\u5761\u4f5c\u4e3a\u4e00\u540d\u4e8c\u624b\u8f66\u9500\u552e\u5458"} +{"id": "2000986", "video_name": "d86e3a05-2f8d-55a2-a21b-0adba245207a", "text": "\u5b69\u5b50\u4eec\u5e86\u795d\u8c61\u795e\u751f\u65e5\u7684\u5361\u901a\u63d2\u753b"} +{"id": "2000987", "video_name": "6995c109-bdd4-5280-89d6-4c949b738142", "text": "\u4e9a\u5386\u514b\u65af\u5e26\u7740\u611f\u6fc0\u7684\u5fae\u7b11\u63a5\u53d7\u4e86\u5956\u676f\u3002"} +{"id": "2000988", "video_name": "c24db95a-1601-50f2-a7b0-03b1065509f5", "text": "\u8ff7\u5e7b\u98ce\u683c\u7684\u868a\u5b50\u5728\u6cbc\u6cfd\u4e2d\u98de\u884c\u3002"} +{"id": "2000989", "video_name": "f5dabb84-e802-530d-9596-dec5cfd83bcf", "text": "\u6708\u4eae\u4ece\u5e95\u90e8\u5347\u8d77\u3002\u795d\u8282\u65e5\u5feb\u4e50\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2000990", "video_name": "bd62dca6-b4ec-5197-8506-3d771d38f8d1", "text": "\u7985\u610f\u7af9\u6797\u73af\u5883\uff0c\u77e2\u91cf\u56fe\uff0c\u4e8c\u7ef4\u4f11\u95f2\u6e38\u620f\u7f8e\u672f\uff0c\u5361\u901a\u5316\u3002"} +{"id": "2000991", "video_name": "93295062-4ae0-51a1-88af-9b8f0144fe7d", "text": "\u9019\u662f\u4e00\u500b\u82f1\u6587\u53e5\u5b50\uff0c\u8acb\u628a\u5b83\u7ffb\u8b6f\u6210\u4e2d\u6587\uff0c\u76e1\u53ef\u80fd\u6e05\u6670\u660e\u77ad\u3002\n\u8acb\u53ea\u8f38\u51fa\u7ffb"} +{"id": "2000992", "video_name": "ab3375f3-605f-580d-acbe-b881eff80f10", "text": "\u79fb\u52a8\u4f60\u7684\u5934\uff0c\u7728\u773c\u775b\uff0c\u770b\u5230\u5f88\u591a\u52a8\u9759\u3002"} +{"id": "2000993", "video_name": "eb31eaef-de88-5136-80f3-1cbb86895fe2", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u3002\u8857\u4e0a\u4eba\u5f88\u591a\uff0c\u5efa\u7b51\u7269\u9ad8\u5927\u800c\u8272\u5f69\u9c9c\u8273\u3002\u8fd9\u4e2a\u7537\u4eba\u6234\u7740\u5e3d\u5b50\u548c"} +{"id": "2000994", "video_name": "cb4e5962-0d05-5574-a575-b3207fbafd5f", "text": "\u4eac\u4e1c\u8d85\u5e02\u53f7\uff0c\u7a7f\u68ad\u4e8e\u6d77\u9762\u4e0a\u5373\u5c06\u8fce\u6765\u65e5\u51fa\u3002\u5bfc\u822a\u5458JOY\u7ad9\u5728\u8239\u5934\uff0c\u900f\u8fc7\u822a\u6d77\u671b\u8fdc\u955c\u89c2"} +{"id": "2000995", "video_name": "035678fb-c557-5bc5-97d9-15a718415433", "text": "\u8759\u8760\u4fa0\u7a7f\u7740\u672a\u6765\u9ad8\u79d1\u6280\u88c5\u7532\uff0c\u5e26\u6709\u7eb3\u7c73\u6280\u672f\u548c\u62ab\u98ce\u3002"} +{"id": "2000996", "video_name": "7d549eb5-9226-5b7b-9cf0-2632a313671a", "text": "\u521b\u9020\u4e00\u4e2a\u7537\u5b69\u7a7f\u8fc7\u4e00\u4e2a\u9ed1\u6697\u7684\u5927\u57ce\u9547\u7684\u56fe\u7247\u3002"} +{"id": "2000997", "video_name": "2b0ff270-e7a7-5ad1-8820-19542ebc488f", "text": "\u73bb\u7483\u7897\uff0c\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u88c5\u6ee1\u5de7\u514b\u529b\u5757\u878d\u5316\u6210\u6db2\u4f53\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u90a3\u53ea"} +{"id": "2000998", "video_name": "ca384d8f-2bd8-5a08-b3cd-ef4f18ff25ca", "text": "19\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5f69\u8272\u7167\u7247\u5c55\u793a\u4e86\u901a\u8fc7\u533b\u5b66\u5b9e\u9a8c\u5c06\u4eba\u7c7b\u548c\u6c34\u6bcd\u878d\u5408\u7684\u751f\u7269\u6446\u59ff\u52bf\u7684\u6210\u529f\u5b9e\u9a8c\u7ed3\u679c\uff0c"} +{"id": "2000999", "video_name": "a051e19e-f6e9-5953-a9c8-438cb3c6ed72", "text": "\u4e00\u7fa4\u767d\u8272\u5973\u9b3c\u5728\u8352\u91ce\u4e0a\u8df3\u821e\uff0c\u6050\u6016\u3001\u7b80\u6d01\u3001\u94c1\u827a\u3001\u795e\u79d8\u3001\u7ef4\u591a\u5229\u4e9a\u98ce\u683c\u3001"} +{"id": "2001000", "video_name": "aee72a94-8f8d-5bb5-aa00-8294183393e9", "text": "\u6444\u50cf\u673a\u7f13\u6162\u5730\u62c9\u8fd1\uff0c\u63ed\u793a\u4e86\u4e0a\u6d77\u591c\u665a\u95ea\u8000\u7684\u706f\u5149\u3002"} +{"id": "2001001", "video_name": "ffcfc219-0062-5cd1-a6e1-fb8a0c874bd5", "text": "\u65af\u62c9\u8fbe\u5728Dota2\u4e2d\u5feb\u901f\u722c\u5165\u6218\u6597\u5e76\u98de\u5411\u6218\u573a\u3002"} +{"id": "2001002", "video_name": "c5105559-fdbc-57fd-8e8b-b6b0684d099a", "text": "\u4e00\u4e2a\u5145\u6ee1\u8001\u9aa8\u5934\u7684\u5730\u4e0b\u5893\u7a74\u3002\u4fe1\u606f\uff1a\u592a\u7a7a\u6536\u85cf\u5bb6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2001003", "video_name": "0383909a-28f9-55f2-9df2-bc9e5d7ac2a5", "text": "\u4f0a\u838e\u8d1d\u62c9\u548c\u5979\u5fe0\u8bda\u7684\u72d7\u9ea6\u514b\u65af\u5728\u5371\u9669\u7684\u5730\u5f62\u4e2d\u822a\u884c\uff0c\u9762\u5bf9\u9ed1\u591c\u4e2d\u7684\u751f\u7269\uff0c"} +{"id": "2001004", "video_name": "46de60e3-b50c-5e22-a2c6-1c4bd8d6b551", "text": "\u5e26\u9886\u89c2\u4f17\u8fdb\u5165\u5e9f\u5f03\u7684\u5c0f\u5c4b\u5185\u90e8\uff0c\u5f3a\u8c03\u5176\u8be1\u5f02\u6c1b\u56f4\u3002\u63a2\u7a76\u5176\u4e2d\u7684\u7ec6\u8282\uff0c\u5305\u62ec\u7834"} +{"id": "2001005", "video_name": "f47e0ab6-38c7-5e5c-bda2-e8c340779b8d", "text": "\u4e00\u4e2a\u957f\u7740\u957f\u957f\u7684\u8fab\u5b50\u7684\u5e05\u9ed1\u4eba\u7ad9\u5728\u4ed6\u5e74\u957f\u7684\u7236\u4eb2\u8eab\u8fb9\uff0c\u4ed6\u7236\u4eb2\u540c\u6837\u957f\u7740\u7070\u8272\u7684\u957f\u8fab\u5b50\uff0c\u4ed6\u4eec"} +{"id": "2001006", "video_name": "120e6eec-30d5-52a5-b27a-29d5ca542f1f", "text": "\u5728\u7535\u5f71\u822c\u7684\u89c6\u89c9\u6548\u679c\u4e0b\uff0c\u5411\u53f6\u5b50\u8868\u9762\u6cfc\u6c34\u3002"} +{"id": "2001007", "video_name": "59a46871-0a14-5b20-99e7-8cd2058a2d64", "text": "S23\u8d85\u4eae\u95ea\u5149\u9634\u5f71\u548c\u95ea\u7c89\u5899\u7eb8\u3002"} +{"id": "2001008", "video_name": "649e9e93-09c8-5e70-bc8d-fbcea5c24141", "text": "\u4ee5\u8272\u5217\u5bf9\u52a0\u6c99\u8fdb\u884c\u4e86\u4e3a\u671f\u4e09\u5468\u7684\u653b\u51fb\uff0c\u6b64\u524d\u5df4\u52d2\u65af\u5766\u6fc0\u8fdb\u5206\u5b50\u5411\u4ee5\u8272\u5217\u53d1\u5c04\u706b\u7bad\uff0c\u8fd9\u4e9b\u706b\u7bad"} +{"id": "2001009", "video_name": "1dbb3f4d-489c-5f6b-b2eb-282356ae1ec3", "text": "2D\u50cf\u7d20\u6050\u6016\u6e38\u620f\u4e2d\uff0c\u4ecd\u7136\u6709\u8bb8\u591a\u5438\u8840\u8759\u8760\u5728\u591c\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2001010", "video_name": "20e02291-c510-5a72-bfdc-1476e9be8b9a", "text": "\u5199\u6709Bob\u540d\u5b57\u7684\u540d\u724c"} +{"id": "2001011", "video_name": "eb99b443-b971-5570-8a12-b9607f7d2ec6", "text": "\u516b\u53ea\u91d1\u9c7c\u5728\u6c60\u5858\u91cc\u6765\u56de\u6e38\u52a8\uff0c\u8377\u53f6\u7f13\u7f13\u6447\u66f3\u3002"} +{"id": "2001012", "video_name": "4beb5f0a-674b-52c2-8b8e-a5a161d1ace8", "text": "\u4e00\u4e2a\u5c0f\u8c61\u6b63\u5728\u7528\u5927\u7403\u8e22\u8db3\u7403\uff0c\u7403\u6eda\u5230\u4e86\u8fdc\u5904\u3002"} +{"id": "2001013", "video_name": "8ffcf2d7-b194-54c9-a251-699eed23dd1b", "text": "\u7a7f\u7740\u6b63\u5f0f\u897f\u88c5\u7684\u8d85\u7ea7\u82f1\u96c4\u4e3a\u4eba\u6c11\u52a0\u6cb9\u3002"} +{"id": "2001014", "video_name": "3b9bf134-51d8-5c71-9995-665f55573ca0", "text": "\u4e2d\u56fd\u7684\u957f\u57ce \u4fe1\u606f\uff1a\u7eff\u8272 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2001015", "video_name": "1059688c-e029-5606-babe-e2fea58e047d", "text": "\u677e\u9f20\u5728\u4e1b\u6797\u4e2d\u6ed1\u7fd4\u76843D\u6e32\u67d3\u52a8\u753b\u3002"} +{"id": "2001016", "video_name": "fe37f71c-d63a-5fc1-8681-d4f1419d0685", "text": "\u5728\u7011\u5e03\u548c\u7eff\u5c71\u7684\u80cc\u666f\u4e0b\uff0c\u653e\u5927\u91d1\u9ec4\u8272\u6811\u4e0a\u60ac\u6302\u7684\u91d1\u8272\u6c34\u679c\u3002"} +{"id": "2001017", "video_name": "1fc54d9c-7e5f-575c-8769-cd9f5098f9f5", "text": "\u4eba\u4eec\u5403\u751f\u852c\u83dc\u3001\u6c34\u679c\u548c\u751f\u8089\u7684\u5e74\u9f84\u8d8a\u6765\u8d8a\u5927\u3002"} +{"id": "2001018", "video_name": "be918c23-f72f-5753-8fbd-0cae8c17d14f", "text": "\u5bb6\u5ead\u4e00\u8d77\u5ea6\u8fc7\u65f6\u95f4\u3002\u89c6\u9891\u5e94\u8be5\u662f\u6162\u52a8\u4f5c\u7684\u3002"} +{"id": "2001019", "video_name": "2681632a-9f98-581d-9741-db21a31adf95", "text": "\u4ece\u524d\uff0c\u6709\u4e2a\u4eba\u53d1\u73b0\u4e00\u53ea\u6b63\u5728\u4ece\u8327\u91cc\u5b75\u5316\u7684\u8774\u8776\u3002"} +{"id": "2001020", "video_name": "7805357b-648b-5589-823d-b0d4d7e59941", "text": "\u5973\u795e\u5361\u5361\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u6c64\u7897\u91cc\u6d17\u6fa1\uff0c\u5f7c\u5f97\u00b7\u5a01\u7279\u91d1\u98ce\u683c\uff0c\u7ea2\u8272\u548c\u6728\u8d28\u8c03\u8272\u65b9\u6848\u3002"} +{"id": "2001021", "video_name": "b858616e-6a58-53be-aa58-53e9ce268715", "text": "\u4e00\u4e2a\u665a\u4e0a\u5f39\u5409\u4ed6\u7684\u7537\u4eba\u3002"} +{"id": "2001022", "video_name": "aa8577cc-08bc-57b6-99c8-af5f5a79ebd2", "text": "\u9ad8\u9ed8\u00b7\u6d3e\u5c14\u548c\u6bd4\u5229\u00b7\u4f0a\u7565\u7279\u6253\u67b6\u4e86\u3002"} +{"id": "2001023", "video_name": "7e7e4eb8-6d0a-5a12-b671-15e93d13192c", "text": "\u52a8\u753b\u5361\u901a\u6807\u5fd7\uff0c\u5e26\u6709\u5b57\u6bcdHPE\uff0c\u950b\u5229\u7684\u8fb9\u7f18\u548c\u6e05\u6670\u7684\u7ebf\u6761\uff0c\u516d\u5341\u5e74\u4ee3\u98ce\u683c\u7684\u94ec\u8fb9\u3002 \n\nSource sentence"} +{"id": "2001024", "video_name": "e6ff0721-c146-5011-a45c-857fe1f9664d", "text": "\u9ed1\u6697\u5373\u5c06\u964d\u4e34\uff0c\u8fd9\u662f\u4e0d\u53ef\u907f\u514d\u7684\u3002"} +{"id": "2001025", "video_name": "62285a70-8715-5784-98df-08446b48846d", "text": "\u5c3c\u6cca\u5c14\u6587\u5316\u9057\u4ea7\u7684\u827a\u672f\u89c6\u9891\u3002"} +{"id": "2001026", "video_name": "bdbee1c8-8647-561f-b396-066ed642f9e8", "text": "\u5f88\u591a\u4eba\u8df3\u670b\u514b\u821e\uff0cRuffMercy\u98ce\u683c\u3002"} +{"id": "2001027", "video_name": "83d70467-c997-5315-b715-44d65224910c", "text": "\u591a\u56ca\u4f53\u4e0e\u8d28\u819c\u878d\u5408\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "2001028", "video_name": "dde7c066-4407-56b7-8c78-a4689453e119", "text": "\u6bd4\u5c14\u76d6\u8328\u3001\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u3001\u6770\u592b\u00b7\u8d1d\u4f50\u65af\u5728\u540c\u4e00\u4e2a\u623f\u95f4\u91cc\u4e00\u8d77\u7b11\uff0c\u6570\u5b57\u827a\u672f\uff0c\u666f\u6df1"} +{"id": "2001029", "video_name": "58830af4-7b45-5b61-8d6d-c768416bb6aa", "text": "\u7a7f\u7740\u77ed\u88d9\u548c\u957f\u7b52\u889c\u7684\u5973\u5b69\u4ece\u5730\u9762\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "2001030", "video_name": "e30ea473-4ddd-5a51-9b12-630d9651b3be", "text": "\u4e0b\u96e8\u65f6\u82b1\u857e\u7efd\u653e\uff0c\u771f\u5b9e\u3002"} +{"id": "2001031", "video_name": "3ee37626-3037-5e43-858d-8a9b31838f9a", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u770b\u7740\u4ed6\u82b1\u54e8\u7684\u5496\u5561\u7136\u540e\u559d\u4e86\u5b83\u3002"} +{"id": "2001032", "video_name": "1b80461c-7ce2-5a7a-9aa4-71264f90186c", "text": "\u4e00\u53ea\u53d1\u5149\u7684\u5b9d\u7bb1\uff0c\u4e0a\u9762\u523b\u6709\u201c\u667a\u6167\u201d\u4e24\u4e2a\u5b57\u3002"} +{"id": "2001033", "video_name": "21b46e12-d973-524b-a78d-0f2789b6ee1b", "text": "\u5916\u661f\u4eba\u770b\u7740\u4e00\u4e2a\u6bd4\u8428\u6545\u4e8b\u3002"} +{"id": "2001034", "video_name": "93839927-4b68-5bf1-98d1-7b4beada55f3", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u529e\u516c\u5ba4\u7684\u684c\u5b50\u524d\uff0c\u6b63\u5728\u6253\u7535\u8bdd\u3002\u4ed6\u6234\u7740\u8033\u673a\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u5757\u5e73\u677f\u7535\u8111\u3002"} +{"id": "2001035", "video_name": "a8c96b9a-0d31-53db-940c-8defd3e88ef2", "text": "\u7537\u4eba\u4fa7\u9762\u8f6e\u5ed3\u56fe\uff0c\u6709\u4e09\u4e2a\u62fc\u56fe\u3002"} +{"id": "2001036", "video_name": "3d868e2a-4808-5e40-84e1-5b50294f17ef", "text": "\u8ba9\u6211\u4eec\u4e3a\u5728X\u5e73\u53f0\u4e0a\u5c06\u8fd1300\u4e2a\u5173\u6ce8\u8005\u7684\u6210\u5c31\u521b\u5efa\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5e16\u5b50\uff0c\u8ba9\u6211\u4eec\u5c3d\u53ef\u80fd\u5730\u521b\u610f\u3002"} +{"id": "2001037", "video_name": "d700c5db-fc90-5c38-acd1-dc15e8153823", "text": "\u4e00\u4e2a\u8868\u60c5\u4e30\u5bcc\u7684\u5e74\u8f7b\u7537\u5b50\u7ad9\u5728\u7070\u8272\u80cc\u666f\u524d\uff0c\u6234\u4e0a\u906e\u76d6\u9762\u90e8\u4e0b\u534a\u90e8\u5206\u7684\u53e3\u7f69\uff0c\u663e\u5f97\u683c\u5916\u5f15\u4eba\u6ce8"} +{"id": "2001038", "video_name": "f3f77ce4-2c23-5a4a-bdd4-7044952f6a6c", "text": "\u9c7c\uff0c\u4e00\u4e2a\u5728\u9c7c\u7c7b\u4e2d\u6770\u51fa\u7684\u601d\u60f3\u5bb6\uff0c\u7ecf\u5e38\u6c89\u601d\u7740\u4ed6\u6c60\u5858\u4e4b\u5916\u7684\u4e16\u754c\u4e4b\u8c1c\u3002\u5361\u901a\u98ce\u683c\u3002"} +{"id": "2001039", "video_name": "740a2b1e-f407-5291-afac-a38e73c3e785", "text": "\u592a\u7a7a\u4e2d\u5927\u578b\u5b87\u5b99\u98de\u8239\u7684\u7535\u5f71\u573a\u666f\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\u3002"} +{"id": "2001040", "video_name": "4f0cdd1f-b531-5cc3-afe5-3b2d13272190", "text": "\u5145\u6ee1\u6d3b\u529b\u7684\u6625\u5929\u8272\u5f69\uff0c\u7c89\u5f69\u8272\u5728\u7efd\u653e\u4e2d\u7206\u70b8\u3002"} +{"id": "2001041", "video_name": "c7baf2a7-2d44-5089-8c0a-6ff0f27a3f77", "text": "Lemmy\u5f00\u7740\u4e00\u8f86\u51b0\u6dc7\u6dcb\u5361\u8f66\u3002\n\nSource sentence: The concert was amazing, the singer had a fantastic voice. \n\u8fd9\u573a\u97f3\u4e50\u4f1a\u592a\u68d2\u4e86\uff0c\u6b4c\u624b"} +{"id": "2001042", "video_name": "6df04899-ebc1-543b-80ae-68824264dfac", "text": "\u4e00\u53ea\u6709\u591a\u5c42\u7fc5\u8180\u7684\u9ebb\u96c0"} +{"id": "2001043", "video_name": "f490def3-c1a1-5860-a322-5c9561b5c77d", "text": "\u52a0\u5165\u6211\u4eec\u7684\u7535\u5f71\u4e4b\u65c5\uff0c\u89e3\u9501\u94f6\u5e55\u6240\u63d0\u4f9b\u7684\u667a\u6167\u3001\u52a8\u529b\u548c\u6b22\u4e50\u3002\u73b0\u5728\u8ba2\u9605\uff0c\u8ba9\u7535\u5f71\u7684\u9b54\u529b"} +{"id": "2001044", "video_name": "385f5dd4-f65b-593c-9b79-097b20f3d938", "text": "\u60f3\u8c61\u4e00\u53cc\u98d8\u9038\u7684\u624b\u5728\u5b87\u5b99\u7a7a\u95f4\u4e2d\u4f18\u96c5\u5730\u5851\u9020\u5b57\u6bcd\uff0c\u4e3a\u65b0\u4e16\u754c\u5960\u5b9a\u57fa\u7840\u3002"} +{"id": "2001045", "video_name": "4185a96d-7634-5c97-9df4-3223917a3b73", "text": "\u60f3\u8c61\u4e00\u4e0b\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u548c\u6770\u5f17\u91cc\u00b7\u7231\u6cfc\u65af\u5766\u5728\u559d\u4e00\u676f\u6ce2\u65c1\u7eff\u8336\u65f6\u804a\u5929"} +{"id": "2001046", "video_name": "9c247254-a735-5e52-bbde-0718401f45af", "text": "\u4e00\u53ea\u732b\u5728\u767d\u8272\u7684\u623f\u5b50\u91cc\u7684\u68d5\u8272\u5730\u6bef\u4e0a\u73a9\u8db3\u7403\u3002"} +{"id": "2001047", "video_name": "cd73a6a8-ef60-5009-9e44-a3a121204305", "text": "\u4ed6\u4eec\u90fd\u5bf9\u7011\u5e03\u7684\u7f8e\u666f\u611f\u5230\u60ca\u53f9\u3002"} +{"id": "2001048", "video_name": "45a8c426-c415-52aa-8635-5c40ac99e8ef", "text": "\u7535\u5f71\u7ea7\u522b\u7684IMAX HD 4K\u9ad8\u8d28\u91cf\u903c\u771f\u56fe\u50cf\uff0c1440p 1080p\u7684\u6e05\u6670\u589e\u5f3a\u56fe\u50cf\uff0c\u62cd\u6444\u4e8e\u4e00\u4e2a\u76ae\u80a4\u8f83"} +{"id": "2001049", "video_name": "de870ef1-6ddc-57c7-ac51-9faa219f78e1", "text": "\u9ad8\u7a7a\u4e2d\u6709\u4e00\u500b\u5de8\u5927\u7684\u91d1\u5c6c\u76e4\uff0c\u4e0a\u9762\u8986\u84cb\u8457\u8a31\u591a\u5c0f\u71c8\uff0c\u7a7f\u8d8a\u96f2\u5c64\u589c\u843d\uff0c\u5177\u6709"} +{"id": "2001050", "video_name": "458c0ea2-3160-52a0-9d13-c01aef514fe5", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u7684\u672b\u65e5\u4e16\u754c\u7684\u4e00\u4e2a\u644a\u4f4d\u4e0a\u6f14\u594f\u5c0f\u63d0\u7434\u3002"} +{"id": "2001051", "video_name": "af22ee50-d3ab-5ceb-a088-56632b0f29ae", "text": "\u6d77\u6ee9\u4e0a\u6709\u660e\u4eae\u7684\u751f\u7269\u53d1\u5149\u7684\u95ea\u70c1\u548c\u6d41\u52a8\u7684\u6c34\u3002\u4fe1\u606f\uff1aklar.gg\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001052", "video_name": "d6287291-6741-596a-a233-114982294ed4", "text": "\u5236\u4f5c\u4e00\u90e8\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u793a\u6d77\u76d7\u8239\u4ece\u74dc\u4e9a\u57fa\u5c14\u5230\u57fa\u591a\u7684\u5371\u9669\u65c5\u7a0b\u3002"} +{"id": "2001053", "video_name": "849ca17c-c8da-5860-94dd-34a06ea42abf", "text": "\u4e00\u540d\u6234\u7740\u9ed1\u8272\u53e3\u7f69\u548c\u9ed1\u8272\u670d\u88c5\u7684\u5973\u5b50\u4ece\u672a\u6765\u6765\u5230\u8fd9\u91cc\uff0c\u8b66\u544a\u4eba\u7c7b\u5173\u4e8e\u672b\u65e5\u6bc1\u706d\u7684\u5371\u9669\u3002"} +{"id": "2001054", "video_name": "a4b08213-915f-55f5-93b3-f1d8e8971869", "text": "\u8d85\u4eba\u5728\u65e5\u62a5\u661f\u7403\u4e0a\u65b9\u98de\u884c\u3002"} +{"id": "2001055", "video_name": "de4a243e-42e4-533b-bb0a-e566041685cb", "text": "\u82f1\u6587\u53e5\u5b50\uff1aZac\u6765\u81ea\u82f1\u96c4\u8054\u76df\uff0c\u6b63\u5728\u6218\u6597\u3002\n\n\u7ffb\u8bd1\uff1a\u82f1\u96c4\u8054\u76df\u4e2d\u7684Zac\u6b63\u5728\u6218\u6597\u3002"} +{"id": "2001056", "video_name": "68152fbf-64e5-58e5-b7a8-03753d40dac1", "text": "22\u5c81\u7684\u7f8e\u56fd\u7537\u6027\uff0c\u6027\u683c\u6d3b\u6cfc\uff0c\u806a\u660e\uff0c\u8eab\u6750\u4e0d\u80d6\u4e0d\u7626\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u77ed\u53d1\uff0c\u771f\u5b9e\u62cd\u6444\uff0c"} +{"id": "2001057", "video_name": "45b9108d-4ddf-5eea-8dc9-51c311d63b02", "text": "\u9ece\u660e\u7684\u5149\u8292\u5728\u4f5b\u5bfa\u4e2d\u3002\u4fe1\u606f\uff1a\u6d3b\u5728\u5f53\u4e0b\u3002"} +{"id": "2001058", "video_name": "ba0fa6f4-945d-5ab3-9b6c-39f4783dd586", "text": "\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u8d70\u5411\u955c\u5934\uff0c\u5c31\u50cf\u5eb7\u7eb3\u00b7\u9ea6\u683c\u96f7\u6208\u8d70\u8def\u4e00\u6837\u3002"} +{"id": "2001059", "video_name": "99dac730-ef09-56ee-92b3-258cd8f77bce", "text": "\u827a\u672f\u5bb6\u7684\u8138\u4e0a\u6d41\u6dcc\u7740\u591a\u6c41\u7684\u5783\u573e\u90ae\u4ef6\uff0c\u5012\u5728\u4e00\u4e2a\u7834\u8d25\u7684\u5efa\u7b51\u7269\u91cc\uff0c\u88ab\u827a\u672f\u8b66"} +{"id": "2001060", "video_name": "eea8f3c0-0991-5e92-8078-6be49d32bb0b", "text": "\u5929\u5802\u4e2d\u7075\u9b42\u76f8\u9047\u7684\u573a\u666f\uff0c\u767d\u8272\u65cb\u8f6c\u7684\u4e91\u5f69\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u7167\u7247\u5199\u5b9e\uff0c\u73af\u5883"} +{"id": "2001061", "video_name": "88320ab7-895e-5544-9d98-ee25d6abf9e8", "text": "\u4e09\u53ea\u9e2d\u5b50\u5728\u4e00\u4e2a\u7f8e\u4e3d\u795e\u5947\u7684\u5145\u6ee1\u4ed9\u5973\u7684\u8349\u5730\u4e0a\u4e3a\u4e00\u4efd\u98df\u7269\u800c\u4e89\u6597\u3002"} +{"id": "2001062", "video_name": "80714fee-667e-5bf6-ac48-05eda1cf4186", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u753b\u4f5c\uff0c\u63cf\u7ed8\u53e4\u4ee3\u5bb6\u5ead\uff0c\u80cc\u666f\u6765\u6e90\u4e8e\u8fc7\u53bb\u3002"} +{"id": "2001063", "video_name": "e20077f5-5480-50a8-bd84-58637da1f127", "text": "\u80af\u5c3c\u4e9a\u6a44\u6984\u7403\u961f\u4ee5\u654f\u9510\u7684\u9ad8\u901f\u8fdb\u653b\u7834\u95e8\u5f97\u5206\u3002"} +{"id": "2001064", "video_name": "1c386a03-7a96-5020-a449-49d1e8bce520", "text": "\u591c\u665a\u5728\u57ce\u5e02\u666f\u89c2\u4e0b\uff0c\u8dd1\u6b65\u8005\u5728\u5927\u96e8\u4e2d\u5954\u8dd1\u3002"} +{"id": "2001065", "video_name": "d67cc72c-9bd7-57c0-909b-85bb53aa2fd4", "text": "\u4e00\u4f4d\u5e74\u8f7b\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u7ad9\u5728\u4e00\u5ea7\u5e7b\u60f3\u57ce\u5821\u524d\uff0c\u5468\u56f4\u98de\u821e\u7740\u8bb8\u591a\u8774\u8776\uff0c\u5915\u9633\u3001"} +{"id": "2001066", "video_name": "91080bbe-f9ec-55ee-bbbe-f062b23a1b73", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u671b\u7740\u4e00\u4e2a\u5750\u5728\u57ce\u5e02\u697c\u68af\u4e0a\u51dd\u89c6\u8fdc\u65b9\u7684\u7537\u4eba\uff0c\u5929\u771f\u5730\u8bf4\u4e86\u8fd9\u53e5\u8bdd\u3002"} +{"id": "2001067", "video_name": "b3c686af-72fd-56da-8dde-8fd09cf51999", "text": "\u6765\u81ea\u697c\u68af\u7684\u65e0\u9762\u53ef\u6015\u7684\u95f9\u9b3c\u8d85\u81ea\u7136\u7075\u9b42\u7f13\u6162\u5730\u51fa\u73b0\u5728\u8fb9\u7f18\u7a7a\u95f4\u6216\u540e\u623f\u5f0f\u5efa\u7b51"} +{"id": "2001068", "video_name": "f035affd-7a6d-5525-9e31-848ca42c5ffc", "text": "\u5c55\u793a\u4e00\u672c\u6253\u5f00\u7684\u5723\u7ecf\uff0c\u5728\u5fae\u98ce\u4e2d\u7ffb\u52a8\u7740\u4e66\u9875\u3002\u903c\u771f\u3001\u8d85\u903c\u771f\u30018K\u3002"} +{"id": "2001069", "video_name": "e01c3daf-a83c-5c7f-975d-580d08c49e3b", "text": "\u82ad\u6bd4\u7a7f\u7c89\u8272\u88d9\u5b50\u624b\u6301\u86cb\u7cd5\uff0c\u80cc\u666f\u662f4K\u751f\u65e5\u6d3e\u5bf9\u3002"} +{"id": "2001070", "video_name": "341f1601-7af0-5a7e-814e-253984fff95c", "text": "\u6c99\u514b\u626e\u6f14\u88c1\u5224\u5965\u9a6c\u7684\u89c6\u9891"} +{"id": "2001071", "video_name": "4e49287a-a24d-57ba-85d6-8ca6e0cdbdcf", "text": "\u7a7f\u8d8a\u4e00\u7247\u9ad8\u5927\u7fe0\u7eff\u7684\u68ee\u6797\u3002"} +{"id": "2001072", "video_name": "e005299d-48f7-5355-aa7b-ef4771394ae5", "text": "Translation: \u7fc5\u8180\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u7c89\u84dd\u8272\u7684\u5929\u7a7a\u3002"} +{"id": "2001073", "video_name": "082c4c47-5b85-5b2c-8051-0385358dca4f", "text": "\u8036\u7a23\u5728\u4e00\u8fb9\uff0c\u9b54\u9b3c\u5728\u53e6\u4e00\u8fb9\uff0c\u4e2d\u95f4\u662f\u4e00\u4e2a\u4eba\u3002"} +{"id": "2001074", "video_name": "379957ac-3c0f-578f-a566-2c7f104ed245", "text": "\u6731\u5229\u53f6\u65af\u00b7\u51ef\u6492\u4e0e\u4e00\u652f\u5e9e\u5927\u7684\u519b\u961f\u4ea4\u8c08\u3002"} +{"id": "2001075", "video_name": "0eb12e86-ecdb-560c-8554-bf1bd51c6dbf", "text": "\u6444\u50cf\u673a\u5411\u4e0a\u626b\u63cf\u672a\u6765\u4e3b\u4e49\u516c\u5bd3\uff0c\u57ce\u5e02\u4e2d\u5fc3\u7684\u5e02\u653f\u516c\u5bd3\uff0c\u591c\u665a\u4e0b\u96e8\uff0c\u7535\u5f71\u822c\u768480\u5e74\u4ee3\u6050\u6016"} +{"id": "2001076", "video_name": "264a05ec-c9e9-5e58-83ba-51e795a4b668", "text": "\u4e00\u53ea\u72ee\u5b50\u9a91\u7740\u4e00\u8f86\u8d85\u7ea7\u6469\u6258\u8f66\u548c\u4e00\u53ea\u5927\u8c61\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\n\u592a\u9633\u4ece\u4e1c\u65b9"} +{"id": "2001077", "video_name": "f90b1475-769a-574d-91c5-a239ef9a3636", "text": "\u5de8\u9f99\u5934\u4ece\u5730\u4e0b\u6d77\u6d1e\u4e2d\u5192\u51fa\uff0c\u50cf\u662f\u8352\u8bde\u7684\u8377\u7f57\u5c3c\u7a46\u65af\u00b7\u535a\u65af\u68a6\u5883\u7535\u5f71\u827a\u672f\u4f5c"} +{"id": "2001078", "video_name": "6eaaa138-f6d1-5fdb-a64c-121c4c8da87d", "text": "\u7a7f\u900f\u89c6\u8863\u7684\u5973\u4eba\u5168\u8eab\u7167\u3002"} +{"id": "2001079", "video_name": "79840704-4828-5346-877b-31e901bff39e", "text": "\u52a8\u6f2b\u4e16\u754c\u57ce\u5e02\u666f\u89c2\uff0c4k\uff0c\u9ad8\u6e05\uff0c\u5168\u7126\u8ddd\u3002"} +{"id": "2001080", "video_name": "45444426-0998-5856-9b56-1620ac3ae6d9", "text": "\u4e00\u540d\u7f8e\u570b\u4e8c\u6230\u58eb\u5175\u5728\u4e00\u500b\u5145\u6eff\u96fe\u6c14\u7684\u8d70\u5eca\u4e2d\u7f13\u6162\u884c\u8fdb\uff0c\u58eb\u5175\u7684\u8f6e\u5ed3\u4ee5\u620f"} +{"id": "2001081", "video_name": "c3d16d0f-e4cc-5b43-9fa5-19a92399e877", "text": "\u571f\u8033\u5176\u4fdd\u5b88\u7684\u8001\u7537\u4eba\u505a\u6709\u6c27\u8fd0\u52a8\u3002\n\nSource sentence: The cat is sleeping on the bed. \n\u732b\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "2001082", "video_name": "48cab3eb-708e-55d6-be7e-00279689554f", "text": "\u72d7\u7528\u4f1e\u6ed1\u7fd4\u5230\u300a\u5821\u5792\u4e4b\u591c\u300b\u5730\u56fe\u4e0a\u3002"} +{"id": "2001083", "video_name": "d09aab11-8314-5486-a940-adc1172873f9", "text": "\u4ed6\u5148\u4ece\u6559\u4ed6\u4eec\u5b57\u6bcd\"A\"\u5f00\u59cb\uff0c\u5e76\u89e3\u91ca\u4e86\u5b83\u662f\u5b57\u6bcd\u8868\u4e2d\u7684\u7b2c\u4e00\u4e2a\u5b57\u6bcd\u3002\u7136\u540e\u4ed6\u5411\u4ed6\u4eec\u5c55\u793a\u4e86\u5982\u4f55\u4e66\u5199\uff0c\u5e76\u8981\u6c42\u4ed6\u4eec"} +{"id": "2001084", "video_name": "babe83f6-a60a-5592-813c-c059e4694562", "text": "\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u5750\u5728\u684c\u5b50\u524d\uff0c\u9762\u524d\u6709\u4e00\u53f0\u7535\u8111\uff0c\u559d\u7740\u5496\u5561\u3002"} +{"id": "2001085", "video_name": "00808374-4478-57aa-8062-aa4fe1248ed5", "text": "\u8def\u897f\u5b89\u8bfa\u00b7\u5e15\u74e6\u7f57\u8482\u6f14\u594f\u300aMiserere\u300b\u66f2\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u9ad8\u89d2\u5ea6\u4ece\u4e0a\u65b9"} +{"id": "2001086", "video_name": "14bb814a-c95f-5462-b685-eca119aa2e97", "text": "\u5927\u811a\u602a\u88ab\u53d1\u73b0\u4ece\u8fdc\u5904\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\u3002"} +{"id": "2001087", "video_name": "6de97dbb-b071-5e75-bd77-98ad8a3c52c5", "text": "\u7b14\u8bb0\u672c\u7535\u8111\u5c4f\u5e55\u5f55\u5236Windows 10\u9f20\u6807\u70b9\u51fbDiscord\uff0c\u5c1d\u8bd5\u4ece\u6587\u672c\u4e2d\u751f\u6210\u89c6\u9891\uff0c\u751f\u6210\u6211\u73b0\u5728\u6b63\u5728\u751f\u6210\u7684\u5185\u5bb9\uff0c\u7136\u540e\u91cd\u590d\u591a\u6b21"} +{"id": "2001088", "video_name": "2bdd100f-3a0e-57ec-b69c-4292c54dc397", "text": "\u5927\u4eba\u7269\u65af\u83ab\u5c14\u65af\u3001\u5361\u901a\u30011940\u5e74\u3001\u9ed1\u767d\u3001\u65e0\u58f0\u7535\u5f71\u3002"} +{"id": "2001089", "video_name": "1294890c-3bb2-519a-990b-321a03a0e959", "text": "\u7b2c\u4e00\u500b\u8056\u8ae6\uff1a\u4e00\u500b\u4eba\u611f\u5230\u5b64\u7368\u3002"} +{"id": "2001090", "video_name": "b920b3eb-3d05-5dc8-adc3-1265a2688432", "text": "\u5730\u677f\u5431\u5431\u4f5c\u54cd\uff0c\u6234\u592b\u60ca\u614c\u5931\u63aa\uff0c\u8eb2\u5728\u51b0\u7bb1\u540e\u9762\u3002"} +{"id": "2001091", "video_name": "4404efb1-97ce-5055-8da6-9da48b2996e0", "text": "\u7ef4\u6770\u548c\u83b1\u6602\u7eb3\u591a\u00b7\u8fea\u5361\u666e\u91cc\u5965\u5750\u5728\u6d77\u6ee9\u524d\u9762\uff0c\u5934\u9876\u4e0a\u6709\u4e00\u53ea\u9e70\u3002\u4f7f\u75284k\u548c\u81ea\u7136"} +{"id": "2001092", "video_name": "5cbcc729-7b60-52ac-8e66-815282947ef3", "text": "\u91cd\u590d\u7684\u73af\u5f62\u661f\u7cfb\uff0c\u9ad8\u6e05\u89c6\u9891\uff0c8K"} +{"id": "2001093", "video_name": "67636b14-89e9-5310-ae1e-9194119e35de", "text": "\u5929\u7a7a\u4e2d\u6709\u7740\u62e5\u6709\u773c\u775b\u3001\u9f3b\u5b50\u3001\u5634\u5df4\u548c\u624b\u7684\u53ef\u7231\u5361\u901a\u6708\u4eae\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\u3002"} +{"id": "2001094", "video_name": "718bbad7-3291-50e8-aaa5-71cb00c4951b", "text": "\u9ec4\u8272\u6f5c\u8247\u6d6e\u51fa\u5e26\u6709\u903c\u771f\u7684\u5c3c\u65af\u6e56\u6c34\u602a\u7684\u6e56\u9762\uff0c4k\u6e05\u6670\u5ea6\u3002"} +{"id": "2001095", "video_name": "606b215b-45d1-53d9-8974-b9ba74112809", "text": "\u4e0d\u540c\u5f62\u5f0f\u7684\u4ea4\u6d41\u548c\u8054\u7cfb\u7684\u56fe\u50cf\u526a\u8f91\uff0c\u5982\u7535\u8bdd\u3001\u7535\u8111\u3001\u793e\u4ea4\u5a92\u4f53\u3002"} +{"id": "2001096", "video_name": "299c558f-fcf9-53cc-b32f-0835f77e8b34", "text": "\u6211\u4eec\u770b\u5230\u4e00\u4e2a\u6e38\u7267\u6c11\u7a7f\u8fc7\u6c99\u6f20\uff0c\u4ece\u5de6\u5230\u53f3\uff0c\u5934\u9876\u7167\u8000\u7740\u660e\u4eae\u7684\u592a\u9633\u3002"} +{"id": "2001097", "video_name": "45f62392-8320-5eb9-ad1c-826cccac45b1", "text": "\u7528\u4ee4\u4eba\u5370\u8c61\u6df1\u523b\u7684\u7279\u6548\u5236\u4f5c\u4e00\u4e2a\u60ca\u8273\u7684\u89c6\u9891\uff0c\u5c55\u793aiPhone 15 Pro Max\u7684\u6240\u6709\u521b\u65b0\u548c\u529f\u80fd\u3002"} +{"id": "2001098", "video_name": "4543f334-5de0-5d12-8302-9213d7bd8584", "text": "\u4e00\u53ea\u80cc\u4e0a\u6709\u4e24\u53ea\u5c0f\u9f99\u7684\u98de\u9f99"} +{"id": "2001099", "video_name": "0d060f03-a749-5cef-b166-bf69c1847e62", "text": "\u5b8c\u5168\u62e5\u62b1\u62bd\u8c61\uff0c\u76f8\u673a\u955c\u5934\u6355\u6349\u77ac\u606f\u5373\u901d\u7684\u65f6\u523b\uff1a\u6c34\u6ce2\u8361\u6f3e\uff0c\u706b\u7130\u95ea\u70c1\uff0c\u6216"} +{"id": "2001100", "video_name": "ee722bb5-6b1f-5119-b5c0-767207cdb839", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5e74\u8f7b\u4ed9\u5973\u5728\u68ee\u6797\u91cc\u95fb\u5230\u4e00\u6735\u5927\u82b1\u7684\u6c14\u5473\uff0c\u82b1\u854a\u5728\u7a7a\u4e2d\u98de\u821e\u3002\n\nSource sentence: The"} +{"id": "2001101", "video_name": "6363ac30-e9ad-5f98-8556-be6f5eb9c934", "text": "\u524d\u9762\u6709\u71c3\u70e7\u7684\u8721\u70db\u95ea\u70c1\uff0c\u5750\u7740\u51a5\u60f3\u7684\u5927\u5e08\u3002\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c8K\uff0c4G\u901f\u5ea6\uff0c"} +{"id": "2001102", "video_name": "0e47f383-095f-53b0-afd7-9cbefd9f77c0", "text": "\u82b1\u513f\u6447\u66f3\uff0c\u5fae\u98ce\u62c2\u8fc7\uff0c\u9e21\u86cb\u82b1\u76db\u5f00\uff0c\u95ea\u70c1\u7684\u706f\u5149\u3002"} +{"id": "2001103", "video_name": "2994e684-9794-5263-b77a-0004a611a237", "text": "\u82f1\u96c4\u5e7b\u60f3\u961f\u4f0d\u5e26\u7740\u53f2\u8bd7\u822c\u7684\u5251\u3002"} +{"id": "2001104", "video_name": "e6b909b7-83a3-507b-8331-756e9bbb1e83", "text": "\u4ee5\u201c\u706b\u201d\u548c\u201c\u641c\u7d22\u201d\u4e3a\u4e3b\u9898\uff0c\u521b\u5efa\u4e00\u4e2a\u5b8c\u6210\u7684\u6807\u5fd7\uff0c2k\u56fe\u50cf\u3002"} +{"id": "2001105", "video_name": "a418ee88-45bd-5dde-b868-396e51252805", "text": "\u4e00\u4e2a\u8eab\u6750\u9ad8\u5927\u3001\u5177\u6709\u5178\u578b\u5730\u4e2d\u6d77\u7279\u5f81\u3001\u73b0\u5b9e\u7684\u897f\u897f\u91cc\u5973\u4eba\u3002"} +{"id": "2001106", "video_name": "b2147f64-4b74-5cbb-a3bc-c57bcb3088d6", "text": "\u4e00\u4e2a\u5973\u5b69\u8fdb\u5165\u4e00\u4e2a\u9ed1\u6697\u661f\u7403\uff0c\u7528\u89e6\u6478\u8ba9\u5b83\u95ea\u8000\u7684\u52a8\u6f2b\u3002"} +{"id": "2001107", "video_name": "c0aab156-2def-5b40-9a51-3180ed05d0ae", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5750\u5728\u684c\u5b50\u65c1\uff0c\u62ff\u7740\u4e00\u4e2a\u76d8\u5b50\uff0c\u91c7\u7528\u6d45\u6817\u8272\u548c\u7070\u8272\u7684\u98ce\u683c\uff0c\u4f7f\u7528\u7126\u70b9\u53e0\u52a0\u6280\u672f"} +{"id": "2001108", "video_name": "8fad8ba3-2d88-5c99-ae9b-b0283fa06ea6", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\uff0c\u5065\u8eab\u623f\uff0c\u653e\u5927\uff0c\u505c\u4e0b\u91cd\u91cf\u3002 \n\nSource sentence: Can you please pass me the salt and pepper? \n\u4f60\u80fd\u628a\u76d0\u548c"} +{"id": "2001109", "video_name": "ed328492-a58f-5732-a798-3559d1098492", "text": "\u5496\u5561\u51b2\u6ce1\uff0c\u5496\u5561\u6db2\u6d41\u52a8\uff0c\u84b8\u6c7d\u4e0a\u5347\uff0c\u676f\u5b50\u88ab\u5145\u6ee1\u3002"} +{"id": "2001110", "video_name": "8646fc29-d93e-5e64-8745-b53e07a7a1d8", "text": "1970\u5e74\u4ee3\u667a\u5229\u4e0d\u5b89\u7684\u8001\u65e7\u5f71\u7247\u3002"} +{"id": "2001111", "video_name": "a1dfd22e-180a-5f35-93cc-8b082bdf1707", "text": "\u4e00\u4e2a\u7537\u4eba\u88ab\u7ef3\u5b50\u7ed1\u5728\u4e00\u68f5\u6811\u4e0a\uff0c\u5728\u4e00\u4e2a\u96ea\u8986\u76d6\u7684\u4e1b\u6797\u4e2d\u6323\u624e\u7740\u60f3\u8981\u6323\u8131\uff0c\u9ed1\u6697\u4e2d"} +{"id": "2001112", "video_name": "db2994f6-99d9-5a73-9c71-2ba71dd086f9", "text": "\u61a8\u8c46\u5148\u751f\u548c\u67e5\u7406\u00b7\u5353\u522b\u6797\u6b63\u5728\u4ea4\u8c08\u3002"} +{"id": "2001113", "video_name": "0f04b5d8-e4cf-5460-ae84-b927ed77cd2f", "text": "5\u5c81\u5973\u5b69\uff0c\u6f2b\u753b\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u5728\u516c\u56ed\u6563\u6b65\u3002"} +{"id": "2001114", "video_name": "bee0cdaa-bf79-586a-9144-9841705ff99c", "text": "\u4e00\u540d\u7a7f\u7740\u7ea2\u8272\u5916\u5957\u7684\u7537\u5b50\u6b63\u5728\u770b\u624b\u673a\uff0c\u9177\u70ab\u7684\u7ea2\u8272\u5916\u5957\uff0c\u7ea2\u8272\u7ec7\u7269\u5916\u5957\uff0c\u7ea2\u8272\u897f\u88c5\uff0c"} +{"id": "2001115", "video_name": "df88cc33-c45d-5087-95a0-df73c159af56", "text": "\u4fe1\u606f\uff1a\u57c3\u91cc\u514b\u68ee\u5c0f\u5b66\u7684\u4fe1\u606f\uff0c\u7403\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001116", "video_name": "1c73fbd6-f55c-5dd8-a2a1-def7499d4bc8", "text": "iPhone 15\u6709\u7a7a\u95f4\u30013D\u548c4K\u3002"} +{"id": "2001117", "video_name": "d890d8bc-e169-5e32-aa3b-80c0bd7477be", "text": "47\u4e2a\u8bae\u7a0b\u6807\u5fd7\uff0c\u7528\u7ea2\u767d\u84dd\u4e09\u8272\u6807\u6ce8\uff0c\u955c\u5934\u8000\u6591\uff0c\u8d858\u6beb\u7c73\u80f6\u7247\uff0c2.20\uff1a1\u6bd4\u4f8b\u3002"} +{"id": "2001118", "video_name": "6de7b8f4-8745-503e-ab74-936d826d0f85", "text": "\u4e8c\u5341\u591a\u5c81\u7684\u5e74\u8f7b\u5973\u5b50\uff0c\u9ed1\u8272\u957f\u53d1\uff0c\u6709\u8179\u808c\uff0c\u7a7f\u7740\u9ed1\u8272\u77ed\u4e0a\u8863\u548c\u65f6\u5c1a\u7684\u9ed1\u8272\u725b\u4ed4\u88e4\uff0c\u5728\u5927"} +{"id": "2001119", "video_name": "ac62e7a5-d5be-5031-b587-d72299ed1d37", "text": "\u5c0f\u5409\u5a03\u5a03\uff0c\u53ef\u7231\uff0c\u8584\u8377\u8272\u3002\u4fe1\u606f\uff1aDesiree\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001120", "video_name": "71207d2a-2608-5eeb-9d5f-b9e55d983fe0", "text": "\u4e00\u4e2a\u884c\u661f\u548c\u4e00\u4e2a\u50cf\u98de\u8239\u7684\u57ce\u5e02\u7f13\u6162\u5730\u56f4\u7ed5\u7740\u884c\u661f\u65cb\u8f6c\u3002"} +{"id": "2001121", "video_name": "a9fd9258-7912-5ee8-bc39-7824ac9c73a3", "text": "3D\u6a21\u578b\u50cf\u7d20\u98ce\u683c\u7684\u5e74\u8f7b\u7537\u5b69\u9762\u5411\u955c\u5934\u8bf4\u8bdd\u3002"} +{"id": "2001122", "video_name": "47d31775-cd03-5f1b-8f32-76ae06ed38b2", "text": "\u5f17\u83b1\u8fea\u00b7\u514b\u9c81\u683c\uff08Freddy Krueger\uff09\u5728\u97e6\u65af\u00b7\u514b\u83b1\u6587\uff08Wes Craven\uff09\u7684\u7535\u5f71\u4e2d\u7528\u624b\u522e"} +{"id": "2001123", "video_name": "15e83bac-1380-5e50-bfc5-47e6ad5965e5", "text": "\u4e24\u6761\u6cb3\u6d41\u4ea4\u6c47\uff0c\u8272\u5f69\u6591\u6593\u3002"} +{"id": "2001124", "video_name": "7273036b-0204-594f-8537-a0aadf85254a", "text": "HD 189733b\u7684\u5f62\u72b6\u65e0\u6cd5\u60f3\u8c61\uff0c\u5b83\u62e5\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u6052\u661f\u548c\u591a\u5f69\u7684\u6c14\u4f53\u3002"} +{"id": "2001125", "video_name": "cb98c0ab-29f4-5758-9da0-77c791beee33", "text": "\u4e00\u76d8\u7f8e\u5473\u7684\u98df\u7269\uff0c\u900f\u8fc7VR\u773c\u955c\u89c2\u770b"} +{"id": "2001126", "video_name": "9b3c58a6-5959-5c9f-abba-a6fd5d6f1de9", "text": "\u628a\u6c7d\u8f66\u653e\u8fdb\u98de\u673a\u91cc\uff0c\u63a8\u7740\u5b83\u4ee5\u52a0\u5feb\u901f\u5ea6\u3002"} +{"id": "2001127", "video_name": "d8e4a681-6795-5ca7-a58f-ee9492b7ffa4", "text": "\u4e00\u53ea\u7f51\u7403\u5728\u5730\u9762\u4e0a\u5f39\u8d77\u6765\uff0c\u5f53\u5b83\u5f80\u4e0a\u98de\u65f6\uff0c\u5b83\u53d8\u6210\u4e86\u4e00\u4e2ahackysack\u3002"} +{"id": "2001128", "video_name": "78ee6f98-5ffb-5f31-8354-7a2c5ea6efed", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u9ad8\u5c71\u4e0a\u4ee5\u50cf\u7d20\u827a\u672f\u98ce\u683c\u6597\u4e89\uff0c\u4f34\u968f\u7740\u95ea\u7535\u3002"} +{"id": "2001129", "video_name": "695fe71f-7de9-5bb5-869c-bb1311474555", "text": "\u56db\u4e2a\u7537\u4eba\u624b\u62c9\u7740\u4e00\u53ea\u6b7b\u864e\uff0c\u7a7f\u8fc7\u4e1b\u6797\u68ee\u6797\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c16:9\uff0c\u7f29\u653e\uff0cHDR\uff0c\u903c\u771f\u3002"} +{"id": "2001130", "video_name": "00bc2c12-3970-5d1b-8f07-a2aa9aebdf1a", "text": "\u5973\u5b69\u5728\u8df3\u821e\uff0c\u70b8\u5f39\u7206\u70b8\uff0c\u55b7\u6c14\u5f0f\u98de\u673a\u6b63\u5728\u7206\u70b8\uff0c\u58eb\u5175\u5728\u5954\u8dd1\u3002"} +{"id": "2001131", "video_name": "6cdcff49-5fc7-52eb-bf44-04fdad238f64", "text": "\u5728\u8349\u4e1b\u4e2d\u5e26\u5e3d\u5b50\u7684\u5c0f\u5154\u5b50"} +{"id": "2001132", "video_name": "0fbe3045-52ed-53fa-97cd-38c07b7780b2", "text": "\u5728\u6708\u7403\u4e0a\u6218\u6597\u7684\u8d85\u7ea7\u82f1\u96c4\u5bf9\u6297\u602a\u517d\u3002"} +{"id": "2001133", "video_name": "4da51855-ed59-51b7-9029-20a886c4d906", "text": "\u4e24\u4e2a\u670b\u53cb\u5076\u7136\u53d1\u73b0\u795e\u79d8\u68ee\u6797\u7684\u5165\u53e3\uff0c\u597d\u5947\u4e4b\u60c5\u6d6e\u73b0\u5728\u4ed6\u4eec\u7684\u8138\u4e0a\u3002"} +{"id": "2001134", "video_name": "71d37023-c818-59a2-9fdb-e29245374ddf", "text": "\u4e00\u7fa4\u4eba\u5728\u6210\u529f\u9003\u51fa\u56fe\u4e66\u9986\u6863\u6848\u5ba4\u9003\u8131\u623f\u540e\u5e86\u795d\u3002"} +{"id": "2001135", "video_name": "610d1529-e5d7-5f4c-88bd-9b732d6b45e7", "text": "\u5c55\u793a\u73b0\u4ee3\u4fdd\u62a4\u52aa\u529b\u4ee5\u4fdd\u62a4\u6d77\u72f8\u6816\u606f\u5730\u3002"} +{"id": "2001136", "video_name": "431449d6-1809-5358-9423-10626d1231ce", "text": "\u72d7\u5728\u96ea\u5730\u4e0a\u5954\u8dd1\uff0c32K\u3002"} +{"id": "2001137", "video_name": "7c831ab3-ac00-5c9d-9da0-73a87fe664ef", "text": "\u7ea6\u7ff0\u00b7\u4f2f\u5b81\u6c49\u59c6\u548c\u5e15\u65af\u5361\u5c14\u00b7\u5361\u76ae\u7fc1\u5236\u4f5c\u7684\u300a\u66fc\u54c8\u987f\u535a\u58eb\u300b\u52a8\u753b\u3002"} +{"id": "2001138", "video_name": "7725f6ad-4246-517d-975c-612d4b3217a9", "text": "\u4e00\u4e2a\u5927\u5634\u95e8\u7684\u63d2\u56fe\uff0cMilton Glaser\u98ce\u683c\u3002"} +{"id": "2001139", "video_name": "7bed6828-5cdc-5f0a-829a-b4f6bc7eb8a2", "text": "\u6708\u4eae\u88c2\u5f00\uff0c\u9732\u51fa\u4e00\u4e2a\u5de8\u5927\u7684\u5916\u661f\u5a74\u513f\u3002"} +{"id": "2001140", "video_name": "986ab90e-62bc-5dbf-83ed-ddfa8db6664d", "text": "\u76ae\u63d0\u5c14\u5947\u514b\u53d1\u73b0\u4e86\u81ea\u5df1\u72ec\u7279\u7684\u5929\u8d4b\uff0c\u5c31\u662f\u80fd\u8bb2\u6545\u4e8b\u7684\u80fd\u529b\u3002\u4ed6\u901a\u8fc7\u8bb2\u8ff0\u81ea\u5df1\u751f\u52a8\u7684\u6545\u4e8b\uff0c"} +{"id": "2001141", "video_name": "413bcc83-935f-5614-94c9-8832e69e8bc6", "text": "\u624b\u6301\u6c34\u67aa\u7684\u7537\u4eba\u5728\u6e05\u6d17\u672a\u6765\u4e3b\u4e49\u5149\u4eae\u9ed1\u8272\u7684\u5170\u535a\u57fa\u5c3c\uff0c\u53ea\u6709\u4ed6\u7684\u624b\u81c2\u548c\u624b\u6301\u6c34\u67aa\u7684\u624b\u88ab\u6355"} +{"id": "2001142", "video_name": "edb87d14-410e-5fbc-a755-c1ba006df63c", "text": "\u5341\u56db\u5c81\u7684\u7537\u5b69\u548c\u5973\u5b69\u7a7f\u7740\u4e2d\u4e16\u7eaa\u670d\u88c5\u6389\u8fdb\u4e86\u4e00\u4e2a\u9ed1\u6697\u7684\u88c2\u7f1d\u91cc\uff0c\u56db\u5468\u4e00\u7247\u6f06\u9ed1\u3002"} +{"id": "2001143", "video_name": "e697175a-6b64-593a-b135-2acec457ca1b", "text": "\u516d\u53ea\u53ef\u7231\u7684\u732b\u5728\u6811\u4e0a\u8d70\u8def\u3002"} +{"id": "2001144", "video_name": "f9250db3-cee0-5c19-88ae-507bc4eb5c0e", "text": "\u7ea6\u514b\u590f\u6897\u7ad9\u7acb\u7740\u8df3\u821e\u3002"} +{"id": "2001145", "video_name": "3b673be6-4b1e-555b-88f7-1d5996ca6294", "text": "\u7897\u91cc\u7684\u9e21\u86cb\u6253\u6563\u540e\u52a0\u5165\u5c11\u8bb8\u76d0\u3002"} +{"id": "2001146", "video_name": "8b2209f5-e823-520f-ac15-6ecdb0cd8a4a", "text": "\u6240\u6709\u8d85\u7ea7\u82f1\u96c4\u6c47\u805a\u7684\u95e8\u6237\u7f51\u7ad9\u3002"} +{"id": "2001147", "video_name": "2a08de47-741a-5e08-9e23-b14e9c75fc02", "text": "\u732b\u5728\u5496\u5561\u676f\u91cc\u559d\u6c34\u5e76\u9605\u8bfb\u62a5\u7eb8\u3002"} +{"id": "2001148", "video_name": "5004a315-a712-5360-bbca-805cfe5852c5", "text": "\u4ece\u5f00\u573a\u955c\u5934\u6d41\u7545\u5730\u8fc7\u6e21\u5230\u52a0\u5fb7\u6ee1\u90fd\u7684\u5404\u79cd\u573a\u666f\u3002\u5c55\u793a\u7199\u7199\u6518\u6518\u7684\u8857\u9053\uff0c\u9519\u843d\u6709\u81f4"} +{"id": "2001149", "video_name": "55bbbe68-d829-53a2-9a75-a7015232ef2b", "text": "Uchiha Itachi\u7741\u5f00\u773c\u775b\u5e76\u8df3\u8d77\u6765\n\nSource sentence: The cat is sleeping on the sofa. \n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2001150", "video_name": "4eab06c9-05dd-5679-ace6-9a6abb9b9424", "text": "\u79d1\u5e7b\u672a\u6765\u8d5b\u535a\u670b\u514b\u65af\u56fe\u5409\u65af\u96c6\u4f1a\u4e2d\u7f8e\u8273\u7684\u5973\u6027\u673a\u5668\u4eba\u3002"} +{"id": "2001151", "video_name": "88f260e8-b97b-56f4-b35e-54703cb993c5", "text": "\u5728\u6c34\u4e0b\u6c89\u8239\u5185\u4e0e\u9c7c\u513f\u540c\u6e38\u3002"} +{"id": "2001152", "video_name": "e96b4ec5-97ec-5369-a708-a13b381f3e04", "text": "\u5b87\u5b99\u7684\u672b\u65e5\uff0c\u5012\u704c\u8fdb\u65e0\u5c3d\u6df1\u6e0a\uff0c\u8fd0\u52a84\u3002"} +{"id": "2001153", "video_name": "4cf0b9ab-2560-5638-b384-277b39a40148", "text": "\u6765\u6e90\u53e5\u5b50\uff1aMoana\u91cc\u7684Tamatoa\u8783\u87f9\u4ee5\u52a8\u6f2b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2001154", "video_name": "198fb4a2-8394-57b1-ba8a-deb7669f61e7", "text": "\u4e00\u540d\u624b\u6301\u6258\u76d8\u7684\u56fd\u738b\u4ec6\u4eba\u7ad9\u5728\u56fd\u738b\u9762\u524d\uff0c\u5730\u70b9\u4e3a\u57c3\u53ca\uff0c\u65f6\u95f4\u4e3a\u516c\u5143\u96f6\u5e74\uff0c\u4fa7\u89c6\u3002"} +{"id": "2001155", "video_name": "3c998cb6-7b9f-578d-8128-9bb070018e91", "text": "\u4e00\u4f4d\u5370\u5ea6\u7ecf\u7406Suumit Shah\u7ad9\u5728\u73ed\u52a0\u7f57\u5c14\u7684\u8857\u5934\uff0c\u624b\u673a\u4e0a\u67e5\u770b\u77ed\u4fe1\u5e76\u5fae\u7b11\uff0c\u753b\u9762\u4e3a\u4e2d\u666f\uff0c\u955c\u5934\u5230\u8170\u90e8"} +{"id": "2001156", "video_name": "d2431866-9cd2-5eb1-a86b-910fe61054ac", "text": "\u5236\u4f5c\u4e00\u4e2a\u80cc\u666f\uff0c\u7528\u84dd\u8272\u3001\u767d\u8272\u548c\u84dd\u8272\u989c\u8272\u5236\u4f5c\u6210\u7acb\u4f53\u548c\u5e73\u9762\u56fe\u5f62\u7684\u6c14\u6ce1\u548c\u692d\u5706\u5f62\u3002"} +{"id": "2001157", "video_name": "1976c767-8e12-580a-88d1-7cb1085f7d61", "text": "\u5973\u5b69\u7ad9\u5728\u73a9\u5177\u5e97\u7684\u6a71\u7a97\u524d\uff0c1960\u5e74\u4ee3\u7684\u67e5\u7406\u5e03\u6717\u5723\u8bde\u52a8\u753b\u98ce\u683c\u4e2d\uff0c\u5904\u4e8e\u5723\u8bde\u96ea\u5929\u3002"} +{"id": "2001158", "video_name": "b6641f07-30a3-5a4a-a502-58fd9e210934", "text": "\u63cf\u8ff0\u51e0\u5e74\u524d\u751f\u6d3b\u5728\u4e00\u4e2a\u5c0f\u9547\u4e0a\u7684\u4f10\u6728\u5de5Kusam\u7684\u65e5\u5e38\u751f\u6d3b\u548c\u4f8b\u884c\u516c\u4e8b\u3002\u4ed6\u662f\u5982\u4f55\u7ef4\u6301\u751f\u8ba1\u7684\uff0c\u662f\u4ec0\u4e48\u4fc3\u4f7f"} +{"id": "2001159", "video_name": "0bb9ff7d-4a1a-52de-a68c-7267c952a866", "text": "\u76ae\u5361\u4e18\u6234\u77403D\u773c\u955c\u5439\u594f\u5c0f\u53f7\u3002"} +{"id": "2001160", "video_name": "728916c5-f8b4-55ce-b2a4-6a085e07d865", "text": "\u6cbb\u7597\u5e08\u5728\u4e0d\u540c\u6cbb\u7597\u73af\u5883\u4e0b\u4e0e\u60a3\u8005\u5de5\u4f5c\u7684\u7b80\u77ed\u89c6\u9891\u7247\u6bb5\u3002"} +{"id": "2001161", "video_name": "4011d71f-c0a8-5eee-9a35-704eb4819086", "text": "\u4e00\u4e2a\u7eb9\u8eab\u7684\u60f3\u6cd5\uff0c\u6765\u63cf\u8ff0\u6211\u662f\u8fd9\u4e2a\u5e7f\u9614\u65e0\u57a0\u7684\u5b87\u5b99\u7684\u5b69\u5b50\u3002"} +{"id": "2001162", "video_name": "211e2ba1-35e5-5397-a474-5efdf01ac987", "text": "\u6f14\u793a\u72d0\u72f8\u72ec\u81ea\u5ea6\u8fc7\u65f6\u95f4\uff0c\u8fdc\u8fdc\u5730\u89c2\u5bdf\u4ed6\u7684\u670b\u53cb\uff0c\u53f9\u606f\u5b64\u72ec\u3002\u4ee5\u5361\u901a\u98ce\u683c\u30013"} +{"id": "2001163", "video_name": "1f387385-2c44-52db-a980-c256c6d94fb4", "text": "\u4e00\u4f4d\u73a9\u9b54\u6cd5\u98ce\u4e91\u5361\u724c\u6e38\u620f\u7684\u7537\u5b50\uff0c\u5468\u56f4\u88ab\u6e38\u620f\u5361\u724c\u4e2d\u7684\u751f\u7269\u73af\u7ed5\u3002"} +{"id": "2001164", "video_name": "48b4f10f-7461-5490-ac6b-f954d2265c5b", "text": "\u52a8\u753b\u6c99\u6f20\u725b\u4ed4\u67aa\u6218"} +{"id": "2001165", "video_name": "c58f10ba-fcb9-5d03-b5c7-25d2c014e16d", "text": "\u8eab\u4f53\u6e29\u5ea6\u548c\u8840\u538b\u5347\u9ad8\u662f\u6b63\u5e38\u7684\u3002"} +{"id": "2001166", "video_name": "9a31423e-8443-5d37-bd13-e5ea9e470ae5", "text": "\u8df3\u821e\u7684\u8682\u8681\u6293\u4f4f\u7334\u5b50\uff0c\u6050\u9f99\u524d\u6765\u538b\u788e\u5b83\u4eec\uff0c\u80cc\u666f\u91cc\u8fd8\u6709\u98de\u884c\u7684\u5916\u661f\u4eba\u3002"} +{"id": "2001167", "video_name": "fb60cc1b-2b4a-5beb-9931-db9bc21078ab", "text": "\u7537\u5b69\uff0c\u98de\u789f\u76d8\u65cb\u5728\u7537\u5b69\u4e0a\u65b9\uff0c\u672b\u65e5\u57ce\u5e02\uff0c8k\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2001168", "video_name": "6c641406-51e2-5791-bfa3-c310eda2060c", "text": "\u5f53\u4e24\u4e2a\u5c0f\u5b69\u5b50\u4e00\u8d77\u73a9\u800d\u65f6\uff0c\u53d1\u751f\u4e86\u4e00\u573a\u5c0f\u4e89\u6597\u3002"} +{"id": "2001169", "video_name": "7aa03d1a-7967-58db-b215-ed5ccf2b11b8", "text": "\u6807\u9898\uff1a\u5916\u661f\u4eba\u5165\u4fb5\n\u6587\u672c\uff1a\u73b0\u5728\u662f2123\u5e74\uff0c\u5916\u661f\u4eba\u5165\u4fb5\u5730\u7403\uff0c\u5c06\u4eba\u7c7b\u7f6e\u4e8e\u706d\u7edd\u7684\u5371\u9669\u4e4b\u4e2d\u3002\u7531\u62c9\u62c9\u9886"} +{"id": "2001170", "video_name": "82c5335f-9431-5769-8f62-67039ceb486a", "text": "\u90a3\u4e2a\u7537\u4eba\u5750\u7535\u68af\u3002"} +{"id": "2001171", "video_name": "54c55703-c3e5-51bf-86ea-d21893a64cc3", "text": "\u4e00\u95f4\u623f\u95f4\u91cc\u7684\u673a\u5173\u67aa"} +{"id": "2001172", "video_name": "95ebeb69-aeb5-5472-9382-d999708d63d4", "text": "\u6e90\u8bed\u53e5\uff1a\u65e0\u60c5\u7684\u592a\u9633\u7167\u8000\u5728\u8d2b\u7620\u7684\u6c99\u6f20\u661f\u7403\u7ef4\u91cc\u8fea\u5b89\u4e0a\uff0c\u5b83\u707c\u70ed\u7684\u5149\u7ebf\u5c06\u6c99"} +{"id": "2001173", "video_name": "9ada1f7a-cbeb-574c-b689-d070244f1fd7", "text": "\u4e00\u540d\u5973\u5175\u8207\u4e00\u540d\u6234\u8457\u91d1\u5c6c\u982d\u76d4\u7684\u7537\u79d1\u5b78\u5bb6\u5728\u672a\u4f86\u4e3b\u7fa9\u7684\u9ec3\u8272\u8857\u9053\u4e0a\u8ac7\u8a71\uff0c\u91d1\u5c6c"} +{"id": "2001174", "video_name": "8676b1b0-c618-512c-a94b-08950e432348", "text": "\u873f\u8712\u7684\u9053\u8def\u4f38\u5411\u5730\u5e73\u7ebf\u3002"} +{"id": "2001175", "video_name": "a017cc11-1a9c-50dd-9701-93bf823b50c7", "text": "\u4e0b\u96ea\u4e86\uff0c\u76f8\u673a\u62c9\u8fdc\uff0c\u6811\u5728\u623f\u95f4\u91cc\u6643\u52a8\u7740\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "2001176", "video_name": "74c37120-ad72-5e51-8d40-ef24c7e07b97", "text": "\u7eff\u8272\u548c\u9ed1\u8272\u6c14\u6ce1\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "2001177", "video_name": "f807ce64-b9d1-59f9-b4a6-f4f78870ae52", "text": "\u8b66\u5bdf\u76f4\u5347\u673a\u98de\u8d8a\u5927\u9ebb\u7530\u5730\u3002"} +{"id": "2001178", "video_name": "4e59683a-7a30-5cc5-bd2d-6e658112e424", "text": "\u5b88\u62a4\u5149\u660e\u7684\u52c7\u58eb\u5728\u4e00\u90e8\u82f1\u96c4\u5947\u5e7b\u7535\u5f71\u4e2d\u4e0e\u90aa\u6076\u4f5c\u6597\u4e89\u3002"} +{"id": "2001179", "video_name": "df591288-d15e-55a9-b9d8-53ee0add84d7", "text": "\u8fd9\u53ea\u732b\u7ad9\u5728\u539f\u5730\uff0c\u81ea\u7136\u5730\u5de6\u53f3\u6447\u6446\u8eab\u4f53\uff0c\u65f6\u4e0d\u65f6\u5730\u5de6\u53f3\u770b\u770b\u773c\u775b\uff0c\u7136\u540e\u5fae\u7b11\u4e00\u4e0b\uff0c\u50cf\u4e00\u573a\u620f\u5267\u8868"} +{"id": "2001180", "video_name": "766d1b94-0908-51cb-8ad1-9192423533fd", "text": "\u52a8\u753b\u98ce\u683c\uff0c\u5c0f\u718a\u7ef4\u5c3c\u5728\u68ee\u6797\u91cc\u8df3\u821e\u3002"} +{"id": "2001181", "video_name": "3bc68d69-2a1e-5f78-8716-cf7b734fe136", "text": "\u8036\u7a23\u5fae\u7b11\u7740\uff0c\u5e78\u798f\u5730\u9760\u8fd1\uff0c\u8fd1\u8ddd\u79bb\u884c\u8d70\u3002"} +{"id": "2001182", "video_name": "aea948d6-79de-5b99-bff6-53cdcb12d4a1", "text": "\u5b87\u5b99\u7684\u8bde\u751f\uff0c\u661f\u7cfb\uff0c\u5b87\u5b99\u5927\u7206\u70b8\uff0c\u771f\u5b9e\u3002"} +{"id": "2001183", "video_name": "119b4f2c-55b4-5e8e-9975-20e35b0a33fe", "text": "\u5728\u4e00\u4e2a\u4e2d\u4e16\u7eaa\u7684\u738b\u56fd\u91cc\uff0c\u4e00\u4f4d\u5e74\u8f7b\u7684\u4f8d\u4ece\u5076\u7136\u53d1\u73b0\u4e86\u901a\u5f80\u672a\u6765\u4e16\u754c\u7684\u95e8\u6237\u3002"} +{"id": "2001184", "video_name": "1293ee7f-f74e-54d6-b2a4-1ca9948fa8d5", "text": "\u6b66\u58eb\u8d70\u5728\u756a\u8304\u9171\u7684\u6c34\u5751\u4e2d\uff0c\u8eab\u5904\u7c7b\u4f3c\u300a\u4e0a\u53e4\u5377\u8f74\u300b\u602a\u7269\u6d1e\u7a74\u4e2d\u3002"} +{"id": "2001185", "video_name": "94245d70-afaf-5d17-a49a-443c16c9094c", "text": "\u5f02\u661f\u732b\u5728\u88ab\u6467\u6bc1\u7684\u6218\u573a\u4e0a\u591c\u665a\u4fef\u89c6\u7740\u6444\u50cf\u673a\uff0c\u903c\u771f\u7684\u7167\u7247\u3002"} +{"id": "2001186", "video_name": "74d6d600-df38-54a5-a81c-51ad20206614", "text": "\u4e00\u4e2a\u8272\u5f69\u6591\u6593\u7684\u5916\u661f\u4eba\u5728\u5916\u661f\u4e16\u754c\u91cc\u5f88\u53ef\u7231\u3002"} +{"id": "2001187", "video_name": "81193ae4-face-5bd2-b408-3f6d0be08f0d", "text": "a city with a beautiful view of the metro running \n\u5efa\u9020\u4e00\u4e2a\u6709\u5730\u94c1\u7f8e\u4e3d\u666f\u89c2\u7684\u57ce\u5e02\n\nSource sentence: The building is made of bricks and concrete. \n\u8fd9\u5ea7\u5efa\u7b51\u7531"} +{"id": "2001188", "video_name": "aec71146-52a7-534f-9269-967a387d8969", "text": "\u90a3\u4e2a\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u73a9\u300a\u79fb\u52a8\u4f20\u5947\u300b\u3002"} +{"id": "2001189", "video_name": "bdc752e8-cd45-59e7-9d61-92568f6cea39", "text": "\u4ed9\u5973\u7cfb\u5728\u4e95\u91cc\u7684\u94fe\u5b50\u4e0a\uff0c\u653e\u5927\u3002"} +{"id": "2001190", "video_name": "119f5c81-4f37-5bc4-9358-a4d702d1aea7", "text": "\u4e00\u5339\u6234\u773c\u955c\u7684\u9a6c\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\uff0c2D\u52a8\u753b\uff0c\u903c\u771f\u3002"} +{"id": "2001191", "video_name": "fec0e67d-12fb-5298-91dd-2a94a66fd6e2", "text": "\u6cd5\u8001\u72ac\uff1a\u636e\u4fe1\u662f\u53e4\u57c3\u53ca\u6cd5\u8001\u6240\u9972\u517b\u7684\u72e9\u730e\u72ac\u54c1\u79cd\u3002"} +{"id": "2001192", "video_name": "7875763e-d808-5d5f-add0-8ea27338ce5b", "text": "\u5965\u8feaRS7 2023\u5e74\u5728\u963f\u62c9\u6728\u56fe\u5e02\uff0c\u963f\u5c14\u6cd5\u62c9\u6bd4\u8857\u9053\u4e0a\u98de\u9a70\u800c\u8fc7\u3002"} +{"id": "2001193", "video_name": "2e870a87-23d6-5117-a683-b974e04ab470", "text": "\u955c\u5934\u5411\u53f3\u79fb\u52a8\uff0c\u5c55\u793a\u4e00\u4e2a\u5438\u96ea\u8304\u7684\u7537\u4eba\uff0c\u50cfVHS\u5f55\u50cf\u4e00\u6837\uff0c\u5145\u6ee1\u8be1\u5f02\u7684\u6770\u514b\u00b7\u65af\u6258\u4f2f\u52a8\u753b"} +{"id": "2001194", "video_name": "622f4d0c-40af-5efc-b519-dbbaaf285f74", "text": "\u4f7f\u7528\u4e0d\u540c\u7684\u5f62\u72b6\u521b\u4f5c\u52a8\u753b\u5efa\u7b51\u7b49\u8ddd\u6982\u5ff5\u5e8f\u5217\u56fe\uff0c\u63ed\u793a\u4f4f\u5b85\u5854\u4e2d\u7684\u521b\u65b0\u8303\u5f0f\u3002\u4f7f\u7528\u66f2\u7ebf\u5f62"} +{"id": "2001195", "video_name": "dd4d9250-e455-58e5-8028-5f7568f9e887", "text": "\u7528Metallica\u97f3\u4e50\u89c6\u9891\u98ce\u683c\u8bb2\u8ff0\u6545\u4e8b\u7684\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "2001196", "video_name": "7017723f-6a1d-591e-b35b-a3c9ca9ec0b8", "text": "\u6f02\u6d6e\uff0c\u9f99\u73e0Z\u827a\u672f\u98ce\u683c \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2001197", "video_name": "e5271616-7b7d-58ec-851b-f014b1d4692a", "text": "\u4e00\u4e2a\u5728\u753b\u5e03\u4e0a\u7ed8\u753b\u7684\u4eba\u5de5\u667a\u80fd\u3002"} +{"id": "2001198", "video_name": "682c71ff-f5b6-5404-ab33-0480edd84623", "text": "\u7a7a\u6c14\u4e2d\u7684\u6ce1\u6cab\u3002\u4fe1\u606f\uff1aA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001199", "video_name": "b59f95fa-e485-5f0c-94d6-f9e266c54cd3", "text": "\u4e00\u6761\u7531\u91d1\u5b50\u5236\u6210\u7684\u5f26\u5728\u53ef\u6015\u7684\u5b87\u5b99\u4e2d\u632f\u52a8\u3002"} +{"id": "2001200", "video_name": "050393da-569e-53f1-b351-4c20179b625a", "text": "\u4e00\u5ea7\u8f7b\u76c8\u7684\u795e\u6bbf\u7f29\u5c0f\uff0c\u4e0a\u9762\u662f\u6218\u58eb\u5bf9\u6297\u7267\u5e08\u7684\u6218\u6597\u3002"} +{"id": "2001201", "video_name": "1b2ee612-aede-52f8-857e-db50b4552c98", "text": "\u4e00\u4e2a\u7531\u84dd\u8272\u3001\u7ea2\u8272\u548c\u84dd\u8272\u65b9\u5757\u7ec4\u6210\u7684\u7f51\u683c\uff0c\u91c7\u7528\u5e03\u91cc\u5947\u7279\u00b7\u83b1\u5229\u7684\u98ce\u683c\uff0c\u989c\u8272\u6709\u6d45\u7070"} +{"id": "2001202", "video_name": "5422fc4a-a306-5a97-a927-d824ee177804", "text": "\u5728\u52a0\u5c14\u5404\u7b54\u63cf\u8ff0\u4fdd\u5b58\u7740\u65e0\u4ef7\u949f\u8868\u7684\u53e4\u8001\u54c8\u97e6\u91cc\u3002"} +{"id": "2001203", "video_name": "98839871-617c-5457-be40-8339b9b4ea17", "text": "\u7a7a\u5730\u4e2d\u592e\u6709\u4e00\u68f5\u5927\u6a61\u6811\u3002"} +{"id": "2001204", "video_name": "0e1ec599-e587-5023-9226-d699df984492", "text": "\u8def\u83f2\u6c49\u8428\u822a\u7a7a\u516c\u53f8\u7684\u98de\u673a\u649e\u4e0a\u4e86\u67cf\u6797\u4e9a\u5386\u5c71\u5927\u5e7f\u573a\u7684\u7535\u89c6\u5854\uff0c\u6444\u50cf\u673a\u8ddf\u968f\u98de\u673a\uff0c\u5760"} +{"id": "2001205", "video_name": "af0d4b4d-201e-5cb3-9f14-3cfa52e9c844", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u96ea\u666f\uff0c\u95ea\u95ea\u53d1\u5149\u7684\u96ea\u3002"} +{"id": "2001206", "video_name": "13bd0f8d-fe36-55e2-a4a0-694a019e788e", "text": "\u516c\u56ed\u957f\u6905\u4e0a\u7684\u5973\u58eb\uff0c\u79cb\u5929\u3002"} +{"id": "2001207", "video_name": "cd0e2201-238b-51a3-a5a1-54f8e33695bc", "text": "\u6e90\u53e5\uff1a\u7f6a\u6076\u4e4b\u57ce\u7684\u96e8\u6c34\u8986\u76d6\u4e86\u54e5\u8c2d\u5e02\u7684\u5efa\u7b51\u7269\u3002\n\n\u7ffb\u8bd1\uff1a\u7f6a\u6076\u4e4b\u57ce\u7684\u96e8\u6c34\u6dcb\u6e7f"} +{"id": "2001208", "video_name": "9c35104b-b6fa-53fe-9da2-59bc2ad805ec", "text": "\u4e00\u573a\u53ef\u6015\u7684\u66b4\u98ce\u96e8\u5e2d\u5377\u6574\u4e2a\u6751\u5e84\uff0c\u4f7f\u5f97\u52a8\u7269\u4eec\u56db\u5904\u5954\u9003\u5bfb\u627e\u5e87\u62a4\u6240\u3002\u6bd4\u5229\u51fa\u53d1\u53bb\u5bfb"} +{"id": "2001209", "video_name": "754ba493-c181-50dc-88b2-bf17f3359bc3", "text": "\u4e00\u4e2a\u4e2d\u5e74\u5370\u5ea6\u5e74\u8f7b\u7537\u5b50\u7ffb\u770b\u7167\u7247\u4e66\u9875\uff0c\u770b\u7740\u4ed6\u7684\u7ae5\u5e74\u65e7\u7167\u7247\uff0c\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\uff0c\u7535\u5f71\u73b0\u5b9e"} +{"id": "2001210", "video_name": "6f61cb26-0063-52a1-b80e-618b0db2ed19", "text": "\u8bf7\u4e3a\u6211\u521b\u5efa\u4e00\u4e2a\u72ec\u7279\u7684\u6807\u5fd7\uff0c\u5e76\u5199\u4e0a\u50cf\u7d20\u80cc\u666f\u3002\u4fe1\u606f\uff1aAyva\uff08\u5b57\u4f53\uff1aMODERN\uff09"} +{"id": "2001211", "video_name": "0a9da3e6-dfd3-5a2f-9f9e-87d5ee6b6372", "text": "\u98ce\u5c06\u6211\u7684\u5e3d\u5b50\u4ece\u6211\u7684\u5934\u4e0a\u5439\u8d70\uff0c\u81ea\u8c6a\u5730\u5c06\u6211\u7684\u62ab\u98ce\u6254\u5230\u8fdc\u5904\uff0c\u6211\u5c06\u76ee\u5149\u6295\u5411\u524d\u65b9\uff0c\u53d1\u51fa\u91ce\u6027\u7684"} +{"id": "2001212", "video_name": "e3432c27-4c08-5eca-9950-c77cb7e64db2", "text": "\u6f02\u4eae\u7684\u963f\u62c9\u4f2f\u5973\u5b69\u5fae\u7b11\u7740\u8d70\u5411\u5979\u7684\u7537\u53cb\u3002"} +{"id": "2001213", "video_name": "f50097d0-7762-5ddb-9325-99fa75bb6069", "text": "\u4e00\u53ea\u9e70\u5728\u5e26\u6709\u9ed1\u4e91\u7684\u84dd\u8272\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c4K\u3002"} +{"id": "2001214", "video_name": "9ee8a520-9797-5903-844f-4ca0546a573b", "text": "\u4f26\u6566\u7684\u5927\u761f\u75ab\u4f20\u64ad\u901f\u5ea6\u975e\u5e38\u5feb\u3002\n\nSource sentence: My favorite color is blue.\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "2001215", "video_name": "956fa6b1-4406-5bfa-b2b1-0066762107fc", "text": "\u5448\u73b0\u51fa\u4e00\u4e2a\u89c6\u89c9\u4e0a\u60ca\u8273\u7684\u56fe\u5f62\uff0c\u5c55\u793a\u62c7\u6307\u59d1\u5a18\u5728\u82b1\u74e3\u4e0a\u6447\u66f3\uff0c\u9644\u8fd1\u4e00\u53ea\u5c0f\u9e1f\u541f"} +{"id": "2001216", "video_name": "f6503072-a57e-509c-9356-17762c46bf9c", "text": "\u7a7a\u8361\u7684\u90ca\u533a\u300270\u5e74\u4ee3\u7684\u6c1b\u56f4\u3002\u6bcf\u4e2a\u623f\u5b50\u770b\u8d77\u6765\u90fd\u4e00\u6837\u3002"} +{"id": "2001217", "video_name": "7559e36a-6753-589e-a515-5cc4d6f85967", "text": "\u5f88\u591a\u4eba\u8ddf\u96a8\u4e00\u500b\u7a7f\u8457\u767d\u8272\u9577\u888d\u7684\u7537\u4eba\uff0c\u6642\u9593\u662f\u516c\u5143\u524d0\u5e74\uff0c\u651d\u50cf\u6a5f\u80cc\u5c0d\u8457\u9019"} +{"id": "2001218", "video_name": "7fcb85c6-4169-54df-a228-581201bfb807", "text": "\u5df4\u57fa\u65af\u5766\u4eba\u5728\u6c99\u6f20\u4e2d\u6b65\u884c\uff0c\u8bd5\u56fe\u8d76\u4e0a\u516c\u5171\u6c7d\u8f66\u3002"} +{"id": "2001219", "video_name": "0f84fc2e-a336-5107-a46c-9bada95106f4", "text": "\u6e14\u8239\u8239\u4f53\u4e0a\u7684\u795e\u79d8\u5212\u75d5\u3002"} +{"id": "2001220", "video_name": "d3927156-e43b-5532-b105-fb276d9a5e3e", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u548c\u7238\u7238\u5750\u5728\u5bb6\u91cc\u7684\u5ba2\u5385\u91cc\u3002"} +{"id": "2001221", "video_name": "ee01cde2-7498-5559-88bc-8178ad04a093", "text": "\u4e00\u4e2a\u6df1\u84dd\u8272\u7684\u6d77\u6d0b\uff0c\u6240\u6709\u6d77\u6d0b\u751f\u7269\u90fd\u751f\u6d3b\u5728\u5176\u4e2d\uff0c3D\u52a8\u753b\uff0c4K\u5206\u8fa8\u7387\u3002\n\nSource sentence: The temperature today is 25 degrees Celsius and it will"} +{"id": "2001222", "video_name": "3ee0bb64-016d-5770-b765-a73f12872e57", "text": "\u8010\u514b\u7a7a\u519b\u4e00\u53f7\u5728\u5730\u7403\u8f68\u9053\u4e0a\u98de\u884c\u3002\u80cc\u666f\u6709\u661f\u661f\uff0c\u771f\u5b9e\u7684\u751f\u6d3b\u3002\u771f\u5b9e\u4e3b\u4e49\u3002\u53ef\u89c1\u7684\u5730\u7403\u3002\u91cd\u529b\u3002\u5931\u91cd\u72b6\u6001"} +{"id": "2001223", "video_name": "6fd310c5-f489-5da9-b2da-e950d8362021", "text": "\u4e00\u540d\u5f3a\u58ee\u808c\u8089\u53d1\u8fbe\u7684\u7537\u5b50\u5c55\u793a\u4ed6\u7684\u808c\u8089\uff0c\u6ca1\u6709\u626d\u66f2\u6216\u6a21\u7cca\uff0c\u50cf\u76ae\u514b\u65af\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "2001224", "video_name": "0e6b1011-b653-53b1-8536-11c578d84311", "text": "\u8bf7\u7ed9\u6211\u4e00\u4e9b\u53ef\u4ee5\u4f5c\u4e3a\u6211\u7684\u80cc\u666f\u89c6\u9891\u7684\u89c6\u9891\uff08\u6211\u6b63\u5728\u5236\u4f5c\u4e00\u90e8\u5173\u4e8e\u5047\u65b0\u95fb\u7684\u5feb\u6377\u89c6\u9891\uff09\uff0c\u6bd4\u5982\u4e00\u4e9b\u4eba\u4eec\u8bb2\u8bdd\u6216\u4e00\u4e9b\u65b0"} +{"id": "2001225", "video_name": "1ff151bd-d75e-5526-9977-8afcaee289f0", "text": "\u5965\u666e\u62c9\u00b7\u6e29\u5f17\u91cc\u7684\u62f3\u51fb\u6bd4\u8d5b\uff0c3\u7ea7\u5730\u9707\uff0c\u4ee4\u4eba\u6050\u60e7\u7684\u6781\u5ea6\u7206\u70b8\uff0c\u7f57\u4f2f\u6258\u00b7\u8d39"} +{"id": "2001226", "video_name": "dc94df57-0d45-5fd2-b6a1-e95b9451f287", "text": "\u5e7f\u89d2\u955c\u5934\u62cd\u6444\u4e00\u95f4\u9ed1\u6697\u5fe7\u90c1\u7684\u5b87\u5b99\u98de\u8239\u63a7\u5236\u5ba4\uff0c\u5f02\u5f62\u751f\u7269\u85cf\u5728\u9634\u5f71\u4e2d\u3002"} +{"id": "2001227", "video_name": "97346297-efcc-5af3-954f-25c1a6435bee", "text": "\u542c\u4f17\u4e2d\uff0c\u57ce\u9547\u5c45\u6c11\u7684\u671f\u5f85\u76ee\u5149\u4ea4\u6c47\u5728\u4e00\u8d77\uff0c\u5939\u6742\u7740\u51e0\u58f0\u6b22\u547c\u548c\u7b11\u58f0\u3002"} +{"id": "2001228", "video_name": "2cba0f2f-f50a-5b6e-bfdf-f79d11192d50", "text": "\u8fd9\u4e2a\u53e4\u57c3\u53ca\u519b\u961f\u5728\u5bf9\u6297\u654c\u4eba\u65f6\uff0c\u4f7f\u7528\u7535\u5f71\u6548\u679c\u3002\n\nSource sentence: The new restaurant offers a wide variety of international cuisine. \n\u8fd9\u5bb6\u65b0\u9910\u5385\u63d0\u4f9b"} +{"id": "2001229", "video_name": "08037d6b-7d7d-5fcc-a5d1-a15216b1df1a", "text": "\u4e00\u4e2a\u7537\u4eba\u62ff\u7740\u8ba1\u65f6\u5668\u3002"} +{"id": "2001230", "video_name": "5949c7d1-f31b-5d0c-9073-e7f73ed43766", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b69\u4ece\u80cc\u540e\u8d70\u8fc7\u68ee\u6797\u7684\u7535\u5f71\u955c\u5934"} +{"id": "2001231", "video_name": "0a8c05a1-7e88-593b-ba17-fa712347249b", "text": "2023\u5e74\u5370\u5ea6\u72ec\u7acb\u65e5\uff0c\u5370\u5ea6\u4eba\u6b22\u547c\u96c0\u8dc3\u3002"} +{"id": "2001232", "video_name": "e6821455-fd78-50d4-a079-c72e5cb300f6", "text": "\u7f8e\u4e3d\u7684\u6a59\u8272\u732b\u7a7f\u8d8a\u5b87\u5b99\uff0c\u903c\u771f\uff0c\u52a8\u611f\u3002"} +{"id": "2001233", "video_name": "51cae8fe-811b-5fb7-9354-09a8f9646104", "text": "\u6f02\u4eae\u7684\u5973\u5b69\uff0c\u7a7f\u7740\u767d\u8272\u7684\u88d9\u5b50\u3002\u5728\u9999\u6e2f\u7684\u8c6a\u534e\u9152\u5e97\u623f\u95f4\u91cc\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "2001234", "video_name": "e450ca8c-5b33-5913-8c99-6e2bd2d04d85", "text": "\u54e5\u4f26\u6bd4\u4e9a\u6cb3\u5ce1\u8c37\u6c34\u575d\u88ab\u6467\u6bc1\uff0c\u6cb3\u6c34\u7545\u901a\u65e0\u963b\u3002"} +{"id": "2001235", "video_name": "e96032ea-f162-524f-b694-6ff1220d1687", "text": "\u4eba\u4e0e\u96ea\u5730\u91cc\u7684\u68d5\u6988\u82b1\u8fd1\u8ddd\u79bb\u640f\u6597\u3002"} +{"id": "2001236", "video_name": "071c64e1-408d-51b5-85b7-e28e32c440a8", "text": "\u54c8\u58eb\u5947\u72d7\u5728\u8349\u539f\u4e0a\u8ffd\u9010\u5954\u8dd1\uff0c\u7a7a\u4e2d\u4fef\u77b0\u3002"} +{"id": "2001237", "video_name": "e2f49f58-e108-5517-a2d6-a19df30b355d", "text": "\u4e00\u540d\u5c0f\u5b66\u8001\u5e08\u5728\u6559\u5ba4\u91cc\u655930\u540d\u5c0f\u5b66\u751f\u3002"} +{"id": "2001238", "video_name": "678961c5-404a-5cfb-bf7b-ae0aa08ea1b0", "text": "\u7f8e\u5473\u7684\u751c\u751c\u5708\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0c\u6700\u4f18\u8d28\u7684\u54c1\u8d28\uff0c\u6770\u4f5c\uff0c\u8d859K\u9ad8\u6e05\uff0c\u56fe\u50cf\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001239", "video_name": "e25a0dad-5907-5560-b0eb-048e92836c1a", "text": "\u6211\u60f3\u8981\u4e00\u6761\u795e\u6b66\u3001\u5f3a\u5927\u7684\u9f99\uff0c\u8eab\u8fb9\u73af\u7ed5\u7740\u7d2b\u8272\u7684\u65cb\u6da1\u80fd\u91cf\uff0c\u6253\u8d25\u4e00\u53ea\u8eab\u4e0a\u6709\u9f9f\u88c2"} +{"id": "2001240", "video_name": "5cdc7216-3870-5038-86e3-fe65c761c2a7", "text": "\u4eba\u7fa4\u503e\u542c\uff0c\u5267\u573a\u5e03\u666f\u8bbe\u8ba1\uff0c16\uff1a9"} +{"id": "2001241", "video_name": "625ebf66-2b2b-5924-9613-c737defcf267", "text": "\u7537\u5b69\u6162\u6162\u5730\u5411\u524d\u8fc8\u6b65\uff0c\u9762\u90e8\u8868\u60c5\u9010\u6e10\u53d8\u5316\uff0c\u98ce\u6162\u6162\u5730\u5439\u62c2\u7740\u68ee\u6797\uff0c\u9633\u5149"} +{"id": "2001242", "video_name": "510671f4-6f6d-5083-a32a-4bb20f5eef46", "text": "\u753b\u9762\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u5973\u5996\uff0c\u4ece\u6d77\u6d0b\u4e2d\u5347\u8d77\uff0c\u968f\u7740\u6c34\u53d8\u7ea2\u5c16\u53eb\u7740\uff0c\u591c\u665a\uff0c\u9ad8\u6e05\uff0c"} +{"id": "2001243", "video_name": "5a91fc67-f01a-551d-aa17-b1ff7cb55d54", "text": "\u591a\u4e2a\u5fae\u5c0f\u7684\u91d1\u8272\u5149\u70b9\u5728\u6574\u4e2a\u7eff\u8272\u80cc\u666f\u4e2d\u8f90\u5c04\u4ea7\u751f\u7684\u6548\u679c\u3002"} +{"id": "2001244", "video_name": "4ce1f951-81f5-59ea-8f22-5b2c3cc91a44", "text": "\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u653e\u7f6e\u7740\u4e00\u4e2a\u73af\u5f62\u6392\u5217\u7684\u8721\u70db\uff0c\u4e2d\u592e\u653e\u7f6e\u7740\u4e00\u4e2a\u74f6\u5b50\u88c5\u7740\u8840\u6db2\uff0c\u6e29\u6696\u7684"} +{"id": "2001245", "video_name": "c03349e6-299f-53e7-8caf-51a67c65ea69", "text": "\u5f7c\u5f97\u00b7\u5e15\u514b\u7a7f\u7740\u8718\u86db\u4fa0\u670d\u4e0e\u8759\u8760\u4fa0\u63e1\u624b\uff0c4K\u6e05\u6670\u3002"} +{"id": "2001246", "video_name": "d4f95584-7679-55c1-90d2-56d1bfd70a9d", "text": "\u57ce\u5e02\u516c\u5bd3\u5730\u677f\u4e0a\u7684\u5973\u4eba\u5728\u54ed\u6ce3\uff0c\u80cc\u666f\u662f\u57ce\u5e02\u3002"} +{"id": "2001247", "video_name": "516f7f3d-4c1d-59bf-aecb-7e4f5461a31e", "text": "\u751f\u7269\u80fd\u91cf\u6574\u5408\uff1a\u4e0e\u751f\u7269\u7cfb\u7edf\u7684\u5171\u751f\u5173\u7cfb\uff0cElyrium \u5229\u7528\u81ea\u7136\u8fc7\u7a0b\u5982\u5149\u5408\u4f5c\u7528\u6216\u5fae\u751f\u7269\u80fd\u91cf\u751f\u6210\u3002"} +{"id": "2001248", "video_name": "55cc180f-eb70-5952-8846-84c4952c30ba", "text": "\u4e00\u4e2a\u7ea2\u8272\u673a\u5668\u4eba\u7684\u7ea2\u8272\u6838\u5fc3\u88ab\u95ea\u7535\u611f\u67d3\u53d8\u6210\u4e86\u9ec4\u8272\u3002"} +{"id": "2001249", "video_name": "22936a8e-aed9-5840-825d-6c06c96b51a2", "text": "\u7c73\u6d1b\u5750\u5728\u7bdd\u706b\u65c1\u4e0e\u4e00\u7fa4\u4e0d\u540c\u80cc\u666f\u7684\u4eba\u5206\u4eab\u4ed6\u7684\u5192\u9669\u6545\u4e8b\u3002\u4ed6\u4eec\u7684\u8138\u88ab\u6e29\u6696\u7684\u706b\u5149"} +{"id": "2001250", "video_name": "78ed2feb-b976-5eb9-b4ef-58f83d2571d3", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u8fd1\u8ddd\u79bb\u6b63\u9762\u62cd\u6444\u7ed3\u5a5a\u6212\u6307\u65cb\u8f6c\u3002"} +{"id": "2001251", "video_name": "ce49154b-b884-5605-a63f-1a779c87b1b4", "text": "\u4e00\u4f4d\u8001\u4e2d\u56fd\u5987\u5973\u7a7f\u8fc7\u82b1\u4e1b\u3002"} +{"id": "2001252", "video_name": "0dad7718-909d-57b7-bb86-f7edd9443815", "text": "\u65e0\u9650\u7684\u82b1\u6d77\uff0c\u8774\u8776\u7fe9\u8df9\uff0c\u84dd\u5929\u767d\u4e91\uff0c\u5915\u9633\u897f\u4e0b\u3002"} +{"id": "2001253", "video_name": "9062ac14-3f7c-5871-9e89-9bc2b192b706", "text": "\u767d\u8272\u7a97\u5e18\u5728\u4e00\u68f5\u6a61\u6811\u4e0a\uff0c\u4e00\u4e2a\u7537\u4eba\u8eb2\u5728\u7a97\u5e18\u540e\u9762\u3002\u79fb\u52a8\u7684\u811a\u6b65\u3002"} +{"id": "2001254", "video_name": "a63239ad-92a2-5fd9-b6cc-272911fad543", "text": "\u6ce2\u7c92\u4e8c\u8c61\u6027\uff0c\u5fc3\u7075\u8815\u866b\uff0c\u8d1d\u514b\u8f9b\u65af\u57fa\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65bd\u6cf0\u683c\u5229\u8328\u7684\u9897\u7c92"} +{"id": "2001255", "video_name": "faa4f51a-9b59-521a-8bf0-3971cd1e9838", "text": "\u60ca\u559c\u52a8\u753b\u7247\uff0c\u4e00\u8f86\u53ef\u7231\u7684\u7ea2\u8272\u5df4\u58eb\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u91cc\u9762\u5750\u7740\u4e0d\u540c\u7684\u52a8\u7269\u5361\u901a\u4eba\u7269\u3002"} +{"id": "2001256", "video_name": "c8b506f5-d2c5-5245-bad6-ddcd6226d622", "text": "\u4fe1\u606f\uff1aWael\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u7684\u6f2b\u753b\uff0c\u753b\u4e86\u4e00\u4e2a\u6f02\u4eae\u7684\u6cf0\u56fd\u5973\u5b69\u5fae\u7b11\u7740\uff0c\u5174\u594b\u5730\u62cd\u624b\u3002"} +{"id": "2001257", "video_name": "0a85e789-1070-55de-9b04-3d72b6304157", "text": "\u5973\u5b69\u6162\u6162\u5730\u7728\u773c\u5e76\u7f13\u6162\u5730\u5de6\u53f3\u6447\u5934\u3002"} +{"id": "2001258", "video_name": "006ef73e-fbb3-5561-b456-ae823b2a3ae8", "text": "\u751c\u7f8e\u7684\u52a8\u6f2b\u5973\u5b69\uff0c\u9ed1\u8272\u957f\u53d1\uff0c\u7ad9\u5728\u6865\u4e0a\u89c2\u770b\u6cb3\u4e0a\u503e\u76c6\u800c\u4e0b\u7684\u96e8\uff0c\u52a8\u6f2b\u98ce\u683c\u7684\u7537\u6027\uff0c\u7a7f"} +{"id": "2001259", "video_name": "91bb90b6-fefc-58ab-938f-da9c570b27f2", "text": "\u7edd\u671b\u768413\u5c81\u7537\u5b69\u7a7f\u8fc7\u5730\u72f1\u822c\u7684\u6076\u68a6\u6c1b\u56f4\uff0c8K\uff0cHDR\uff0c\u6700\u4f73\u753b\u8d28\uff0c\u6050\u6016\u7535\u5f71\u8c03\u8272"} +{"id": "2001260", "video_name": "4501e62f-3caa-5673-a5dc-26d16a48f3d3", "text": "\u521b\u5efa4\u5bb6\u5546\u5e97\uff0c\u6db5\u76d6\u96f6\u552e\u5546\u3001\u987e\u5ba2\u3001\u8d2d\u7269\u8005\u548c\u54c1\u724c\u3002"} +{"id": "2001261", "video_name": "71f08991-5811-5a89-9bdc-4702033ac9e9", "text": "\u4e00\u53ea\u8001\u864e\u5728\u6d17\u6fa1\u3002"} +{"id": "2001262", "video_name": "7592a6a1-0731-56cf-bfaa-fc5dde0b4306", "text": "\u4e00\u4e2a\u5de8\u578b\u9cc4\u9c7c\u6b63\u5728\u5411\u4eba\u4eec\u3001\u6e56\u6cca\u548c\u6c60\u5858\u8fdb\u53d1\u3002"} +{"id": "2001263", "video_name": "288041e0-d907-5e1b-b280-192f3a73347a", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6d77\u6ee9\u5531\u6b4c\u3002"} +{"id": "2001264", "video_name": "b072c7cd-0f57-513e-9f14-ec4599c8f678", "text": "\u6d77\u6ee9\u4e0a\u7684\u4e00\u5bf9\u592b\u5987\uff0c\u6ce8\u89c6\u7740\u843d\u65e5\u768430\u79d2\u7247\u6bb5\u3002"} +{"id": "2001265", "video_name": "f94144eb-22ae-5259-a3a3-ef5980cdff72", "text": "\u4e00\u4e2a\u7537\u751f\u5728\u6e38\u4e50\u573a\u73a9\u6050\u9f99\u3002"} +{"id": "2001266", "video_name": "c0598b53-af72-5325-afc6-3797debfe918", "text": "\u767b\u5c71\u8005\u5728\u5c71\u9876\u559d\u5496\u5561\u3002"} +{"id": "2001267", "video_name": "3a8178ee-ac5c-54ad-a29a-eb35e406f1a4", "text": "\u6770\u4f5c\uff0c\u201c\u52a8\u7269\u56ed\u201d\uff0c\u521b\u9020\u4e86\u8036\u7a23\u95e8\u5f92\u7977\u544a\u5d07\u62dc\u4e0a\u5e1d\u7684\u5f62\u8c61"} +{"id": "2001268", "video_name": "5fa3faff-c708-5fcf-aa1e-b8449996dbf0", "text": "\u6d77\u8c5a\u5728\u6cf3\u6c60\u4e2d\u62cd\u6253\u6c34\u82b1\u3002"} +{"id": "2001269", "video_name": "cb42ad50-4903-57ee-82b7-f5576a7a0f12", "text": "\u4e00\u4e2a\u7537\u4eba\u85cf\u5728\u704c\u6728\u4e1b\u4e2d\uff0c\u770b\u7740\u5929\u4f7f\u5728\u5c71\u8c37\u91cc\u5f39\u5409\u4ed6\uff0c\u795e\u79d8\u7684\u753b\u9762\uff0c\u51fa\u81ea\u52d2\u5185\u00b7\u9a6c\u683c\u5229\u7279\u548c\u7c73\u5f00"} +{"id": "2001270", "video_name": "8e3c4559-a8f1-5a58-8965-eccccaed862e", "text": "\u73b0\u4ee3\u7ea2\u8272\u6c7d\u8f66\u5728\u65e5\u843d\u65f6\u5206\u6cbf\u7740\u6d77\u8fb9\u7684\u873f\u8712\u516c\u8def\u75be\u9a70\u3002"} +{"id": "2001271", "video_name": "9b79c59f-c6b4-5416-bd59-1657636aed31", "text": "\u60f3\u8c61\u4e00\u53ea\u5de8\u5927\u7684\u732b\u5728\u8857\u4e0a\u6f2b\u6b65\u3002"} +{"id": "2001272", "video_name": "231f50fc-2b9a-5933-ad07-3d6ce82abda1", "text": "\u4e00\u4e2a\u4eba\u671b\u7740\u76f8\u673a\u5fae\u7b11\u7684\u5199\u5b9e\u573a\u666f\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "2001273", "video_name": "1b36097c-19fc-5c73-8b6c-76123652278f", "text": "\u8759\u8760\u4fa0\u5728\u8759\u8760\u6d1e\u7528\u7535\u8111\u521b\u4f5c\u97f3\u4e50\u3002"} +{"id": "2001274", "video_name": "4a3a5226-93b8-5308-9ab6-60b47b39206a", "text": "\u5927\u6559\u5802\u7684\u827a\u672f\uff0c\u5962\u534e\uff0c\u9ad8\u54c1\u8d28\uff0c\u7f8e\u4e3d\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "2001275", "video_name": "3ed81f3e-981d-5326-a06e-a4b1bd8acfdf", "text": "\u4e00\u4e2a\u4eba\u914d\u6234\u7761\u7720\u547c\u5438\u6682\u505c\u6cbb\u7597\u7259\u5957\u7684\u89c6\u9891\u3002"} +{"id": "2001276", "video_name": "59ed890d-a13f-5bf7-b2b3-4a998c443317", "text": "\u4e61\u6751\u91cc\u7684\u5b69\u5b50\u4eec\u73a9\u800d\uff0c4K\uff0c\u8d85\u9ad8\u6e05\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "2001277", "video_name": "47c05f24-f1a0-57aa-98ea-d4965c60c4f8", "text": "\u8428\u62c9\u662f\u4e00\u4e2a\u5e74\u8f7b\u7684\u5b64\u513f\u5973\u5b69\uff0c\u624b\u7275\u7740\u5979\u7684\u7956\u7236\u6258\u9a6c\u65af\uff0c\u8d70\u8fdb\u9762\u5305\u5e97\uff0c\u5468\u56f4\u6709\u987e"} +{"id": "2001278", "video_name": "2791b5b5-0a86-5186-ab4b-e86649ae8bb0", "text": "\u521b\u5efa\u4e00\u4e2a\u50cf\u661f\u7403\u5927\u6218\u4e00\u6837\u7684\u52a8\u753b\u9884\u544a\u7247\u7535\u5f71\uff0c\u957f\u5ea6\u4e3a10\u79d2\u3002"} +{"id": "2001279", "video_name": "46ffe7af-7139-5d1a-aa22-369b5f5afc16", "text": "\u6a59\u8272\u7684\u5929\u7a7a\u548c\u9ec4\u8272\u6f5c\u8247\u91cc\u7684\u82f9\u679c\u3002\u4fe1\u606f\uff1a\u55b5\u545c\u3002"} +{"id": "2001280", "video_name": "a0ff028a-d888-5801-85f8-37aef41cf515", "text": "\u53e4\u8001\u7684\u7ea2\u9f99\u5728\u98de\u7fd4\uff0c\u975e\u5e38\u5feb\u901f\uff0c\u52a8\u4f5c\u9891\u7e41\u3002"} +{"id": "2001281", "video_name": "86bc1ba0-c820-57b3-a514-84faa7b956cf", "text": "\u7528\u65e0\u4eba\u673a\u62cd\u6444\u7684\u7f8e\u4e3d\u6d77\u6ee8\u666f\u8272\u3002"} +{"id": "2001282", "video_name": "ecb133a9-d4e8-5a6c-a7d2-6bcb958c7e1a", "text": "\u76f4\u5347\u673a\u643a\u5e26\u96c6\u88c5\u7bb1\u5728\u6237\u5916\u57fa\u5730\u8d77\u98de\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "2001283", "video_name": "5aa4a59c-1293-5b5f-9426-baae725d1094", "text": "\u8b66\u5bdf\u9a91\u9a86\u9a7c\u5728\u57ce\u5e02\u9053\u8def\u5de1\u903b\uff0c\u4eba\u4eec\u5728\u5468\u56f4\u884c\u8d70\u3002"} +{"id": "2001284", "video_name": "9ee36aea-518b-5d72-8497-f112303c97e6", "text": "\u4f7f\u4e3b\u4f53\u52a8\u8d77\u6765\uff0c\u7231\u80cc\u666f\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001285", "video_name": "ebac859c-cecd-5761-9d35-a8dd755e9da9", "text": "\u63cf\u7ed8\u4e00\u4e2a\u6df1\u5ea6\u6570\u5b57\u9759\u6b62\u7684\u65f6\u523b\uff0c\u53cd\u6620\u51fa\u6c89\u601d\u548c\u75b2\u60eb\u3002"} +{"id": "2001286", "video_name": "77a02376-4ec6-5af1-9db0-a35463c3dd21", "text": "\u7ea2\u73ab\u7470\u7efd\u653e\uff0c\u9e1f\u513f\u98de\u7fd4\u3002"} +{"id": "2001287", "video_name": "8bc991b3-2153-56aa-8b43-03fa072a32f6", "text": "\u672a\u66fe\u542c\u95fb\u6216\u672a\u88ab\u544a\u77e5\u7684\u5e26\u6709\u9762\u5b54\u7684\u6050\u6016\u9b3c\u602a\u79d8\u5bc6\u65b0\u5f62\u8c61\u7684\u6807\u5fd7\u3002"} +{"id": "2001288", "video_name": "a78b1d92-7efa-5dc3-b05a-13d404e57a5c", "text": "\u6211\u4eec\u7684\u793e\u533a\u5f88\u5927\uff0c\u5b83\u7167\u4eae\u4e86\u793e\u533a\u4e2d\u7684\u4e00\u5207\uff0c\u8ba9\u4eba\u4eec\u66f4\u7f8e\u4e3d\uff0c\u4e5f\u8ba9\u4e0d\u540c\u6587\u5316\u7684\u4eba\u4eec\u6c47\u805a\u5728\u4e00\u8d77\u3002"} +{"id": "2001289", "video_name": "ff118952-1e57-5d1e-abf0-eec599d9944f", "text": "\u5988\u5988\u3001\u7238\u7238\u548c\u4ed6\u4eec\u768415\u5c81\u513f\u5b50"} +{"id": "2001290", "video_name": "b7a09f65-2541-50b5-b0ca-012cd25269b6", "text": "\u4e00\u4e2a\u540d\u53eb\u963f\u5c14\u519b\u7684\u7537\u4eba\u5728\u6751\u5e84\u9644\u8fd1\u7684\u7530\u5730\u91cc\u5c55\u793a\u4e86\u4e00\u4e9b\u519c\u4f5c\u7269\u3002"} +{"id": "2001291", "video_name": "d2f43314-3d03-52c7-b230-fe98cedb4fa7", "text": "\u4e00\u53ea\u5168\u767d\u8272\u7684\u9e3d\u5b50\u5728\u98de\uff0c\u989c\u8272\u975e\u5e38\u9c9c\u4eae\u3002"} +{"id": "2001292", "video_name": "372d09df-1cc2-5753-96ca-aa6bc7a6ca7c", "text": "\u673a\u5668\u4eba\u6a21\u7279\u4e3a\u4e07\u5723\u8282\u7a7f\u7740\u65f6\u5c1a\u6765\u81eaFablab Madrid\u2014\u2014\u4ee5\u666f\u6df1\u98ce\u683c\u3001\u7cbe\u81f4\u7684\u670d\u88c5\u7ec6\u8282\u3001\u672a\u6765\u98de\u8239\u8bbe\u8ba1\u3001"} +{"id": "2001293", "video_name": "21bce36b-1639-59ba-8406-a462d9eac071", "text": "\u4e00\u4e2a\u8352\u65e0\u4eba\u70df\u3001\u660f\u6697\u7684\u53e4\u8001\u5bfa\u5e99\u3002"} +{"id": "2001294", "video_name": "55de329f-bad8-5c1f-aa0d-92f00d5de332", "text": "\u65f6\u949f\u3002\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u623f\u5b50\u91cc\uff0c\u7528\u6444\u50cf\u5934\u653e\u5927\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "2001295", "video_name": "f1d7d077-4a74-5e65-a6dc-6b95e81cb257", "text": "\u4e00\u4e2a\u590f\u65e5\u65e9\u6668\uff0c\u4e00\u8f86\u5927\u5361\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u524d\u8fdb\uff0c\u89c6\u91ce\u8fdc\u671b\u5230\u4e86\u5361\u8f66\u4e4b\u4e0a\u3002"} +{"id": "2001296", "video_name": "f53d3328-ccfe-5429-a0df-50eef6838caa", "text": "\u6c64\u59c6\u62c9\u5c0f\u63d0\u7434\uff0c\u7434\u5f26\u5f88\u957f\uff0c\u6234\u7740\u725b\u4ed4\u5e3d\uff0c\u6770\u745e\u5219\u5728\u65c1\u89c2\u770b\u4ed6\u3002"} +{"id": "2001297", "video_name": "d755566d-1cdf-5c46-8f2a-deb25ff63057", "text": "\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u7ea2\u8272\u4e1d\u7ef8\u957f\u88d9\uff0c\u7ad9\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u3002\u5979\u7684\u5934\u53d1\u88ab\u5fae\u98ce\u5439\u52a8\uff0c\u773c"} +{"id": "2001298", "video_name": "c31951bc-ab93-57ce-9678-018b10135610", "text": "\u6d41\u52a8\u7684\u4e91\u6735\uff0c\u57ce\u5821\u95ea\u70c1\u7684\u706f\u5149\u3002"} +{"id": "2001299", "video_name": "7c470228-a4f7-572c-8fc4-47d104c2440e", "text": "\u4e00\u8f86\u7d2b\u8272\u548c\u7eff\u8272\u91d1\u5c5e\u5916\u89c2\u7684\u7279\u65af\u62c9Cybertruck\u3002"} +{"id": "2001300", "video_name": "c706c6ef-4bda-5cb0-ba66-bd9bc7041441", "text": "\u5f53\u592a\u9633\u5f00\u59cb\u843d\u5c71\u65f6\uff0c\u6208\u5e15\u610f\u8bc6\u5230\u4ed6\u5df2\u7ecf\u79bb\u5bb6\u5f88\u8fdc\u4e86\u3002\u4ed6\u5f00\u59cb\u62c5\u5fc3\u5982\u4f55\u627e\u5230\u56de\u5230\u5c71\u7f8a\u7fa4\u7684\u8def\u3002"} +{"id": "2001301", "video_name": "eee36eb3-ece1-56b6-8967-495fa5015c7c", "text": "\u4e00\u5f20\u4e2d\u666f\u955c\u5934\u663e\u793a\u4e00\u4e2a\u767d\u8272\u7684\u4e66\u684c\u4f4d\u4e8e\u623f\u95f4\u4e2d\u592e\uff0c\u4e66\u684c\u4e0a\u6709\u4e00\u4e2a\u88c5\u9970\u4e86\u5f88\u591a\u591a\u8089\u690d\u7269\u7684\u5927\u5723"} +{"id": "2001302", "video_name": "2f77255e-ee74-54fb-b635-5e40477ed63f", "text": "\u5355\u8272\u8ff7\u5e7b\u7535\u5f71\u822c\u7684\u8840\u4e0e\u7ea2\u8272\u7684\u53e6\u4e00\u73b0\u5b9e\u3002"} +{"id": "2001303", "video_name": "c1a07831-300f-5eba-9058-97e88936888d", "text": "\u4e00\u4f4d\u535a\u5b78\u7684\u5e74\u9577\u9ed1\u4eba\u5973\u6027\u5f9e\u502b\u6566\u8857\u982d\u8d70\u4f86\uff0c\u5411\u89c0\u773e\u62db\u624b\u3002"} +{"id": "2001304", "video_name": "df8c1a6c-94a1-58f1-9983-da11ba803741", "text": "\u653e\u5927\u753b\u9762\uff0c\u5c55\u793a\u8389\u8389\u5728\u6751\u5e84\u5e7f\u573a\u6f2b\u6b65\uff0c\u6563\u53d1\u51fa\u5584\u826f\u7684\u5149\u8292\u30028k\u8d28\u91cf\u3002"} +{"id": "2001305", "video_name": "087d59e7-75ef-52df-86b3-5fa75ae467f9", "text": "\u4e2d\u4e1c\u7537\u5b50\u6df1\u5165\u6c89\u601d\uff0c\u5750\u5728\u706b\u7130\u4e2d\u95f4\uff0c\u80cc\u666f\u662f\u9ed1\u6697\u6050\u6016\u7684\u3002"} +{"id": "2001306", "video_name": "f98083cd-9299-51fb-b0e7-a98bbbbd2932", "text": "\u975e\u6d32\u5b66\u751f\u5728\u9ad8\u79d1\u6280\u6559\u5ba4\u4e2d\u4e13\u5fc3\u5b66\u4e60\u3002"} +{"id": "2001307", "video_name": "2586d8e9-fbd8-54b4-93ee-250184a993f9", "text": "\u9c8d\u52c3\u00b7\u8fea\u4f26\u548c\u4e50\u961f\u57281974\u5e74\u5728\u52a0\u5229\u798f\u5c3c\u4e9a\u8868\u6f14\u3002"} +{"id": "2001308", "video_name": "8d3ccf33-b7a1-5ca8-99f2-cda51585bd7e", "text": "\u624b\u4f38\u5411\u888b\u5b50\u91cc\u7684\u7cd6\u679c\u3002"} +{"id": "2001309", "video_name": "32640e2c-ba90-5c13-9670-d6358732ecb5", "text": "\u79cb\u53f6\u539f\u8857\u9053\u4ee5\u6c34\u5f69\u98ce\u683c\u63cf\u7ed8\u7684\u4eba\u7fa4\u7199\u7199\u6518\u6518\u3002 \n\nSource sentence: The bookshelf is filled with books of various genres. \n"} +{"id": "2001310", "video_name": "b360338b-7db9-5ef5-8ee3-061736cdff7e", "text": "\u751f\u7269\u53d8\u5f62\u6210\u4e3a\u602a\u5f02\u7684\u602a\u7269\u3002"} +{"id": "2001311", "video_name": "91a24de3-eaa2-5b98-b7a9-c8c9825e3648", "text": "\u4e00\u4e2a\u665a\u4e0a\u505c\u8f66\u573a\u91cc\u7684\u6c7d\u8f66\u5411\u6211\u9760\u8fd1"} +{"id": "2001312", "video_name": "327d316f-0986-51ef-8346-9731395f6a14", "text": "\u4e00\u4f4d\u4e2d\u4e16\u7eaa\u58eb\u5175\u8eab\u7740\u91d1\u8272\u548c\u9ed1\u8272\u76d4\u7532\u4ece\u7f57\u4f2f\u6258\u00b7\u8d39\u91cc\u7684\u6cb9\u753b\u4e2d\u6829\u6829\u5982\u751f\u5730\u8d70\u51fa\u6765\u3002"} +{"id": "2001313", "video_name": "27e8f91a-9bba-5720-92a6-abfe54a013b2", "text": "\u4e00\u4e2a\u4ed9\u5973\u827e\u5170\u5a1c\uff0c\u957f\u94f6\u8272\u7684\u5934\u53d1\uff0c\u84dd\u8272\u7684\u773c\u775b\uff0c\u7a7f\u7740\u7eff\u8272\u7684\u88d9\u5b50\uff0c\u5728\u4e00\u4e2a\u8302\u5bc6\u7684\u68ee"} +{"id": "2001314", "video_name": "04bb9486-e631-55d2-adc8-72a2cf8e715b", "text": "\u80cc\u666f\u53d8\u6210\u4e86\u592a\u7a7a\uff0c\u5fae\u7b11\uff0c\u7728\u773c\uff0c4K\u3002"} +{"id": "2001315", "video_name": "a71e0fb1-0f0e-514e-9526-76341600bc9a", "text": "\u5728\u5c71\u8109\u3001\u4e1b\u6797\u3001\u65e5\u843d\u3001\u4e91\u5c42\u4e2d\u98de\u884c\uff0c\u8d85\u903c\u771f\u3001\u8d85\u8be6\u7ec6\u3001\u620f\u5267\u5316\u7684\u5149\u7167\u3002"} +{"id": "2001316", "video_name": "01abbcf2-eaf5-5f98-a0fc-cdc2a892540d", "text": "\u670b\u53cb\u5728\u5496\u5561\u9986\u804a\u5929\uff0c\u7b11\u58f0\u4e0d\u65ad\u3002"} +{"id": "2001317", "video_name": "6aae4308-350a-5f44-9b9b-b1ba9cf73225", "text": "\u4e00\u4e2a\u8eba\u5728\u5e8a\u4e0a\u7684\u4eba\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u5934\u4e0a\u662f\u4e00\u4e2a\u5012\u6302\u7684\u57ce\u5e02\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the sunshine.\n\u732b\u513f"} +{"id": "2001318", "video_name": "56345407-f5bf-527a-a819-36500268a65f", "text": "1930\u5e74\u6dd8\u91d1\u8005\u5728\u96e8\u6797\u6cb3\u6d41\u4e2d\u6dd8\u91d1\uff0c\u80cc\u666f\u4e2d\u6709\u539f\u4f4f\u6c11\u6f5c\u4f0f\uff0c\u73b0\u5b9e\u3001\u9ed1\u6697\u7684\u8272\u8c03\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "2001319", "video_name": "0faf89ec-d573-5e8c-acd8-8f920c224506", "text": "\u4e00\u4e2a\u6d77\u76d7\u5728\u6d1e\u7a74\u91cc\u76843D\u5361\u901a\u4e2d\u5c06\u53e6\u4e00\u4e2a\u6d77\u76d7\u63a8\u4e0b\u4e86\u7194\u5ca9\u3002"} +{"id": "2001320", "video_name": "eabfde43-d488-5a84-9cdf-915bca1578cb", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u4e09\u7ef4\u97f3\u4e50\u5bb6\u5728\u821e\u53f0\u4e0a\uff0c\u5305\u62ec\u4e00\u4e2a\u5973\u5409\u4ed6\u624b\u3001\u4e00\u4e2a\u4e3b\u5531\u548c\u4e00\u4e2a\u9f13\u624b\uff0c\u7c7b\u4f3c\u76ae\u514b\u65af\u7684\u89d2\u8272\uff0c"} +{"id": "2001321", "video_name": "52ce4bc0-e834-5713-9e6e-e4f8e9ac7f0b", "text": "\u6234\u7740\u58a8\u955c\u7684\u9ed1\u53d1\u7537\u5b50\u7a7f\u7740\u76ae\u5939\u514b\uff0c\u5750\u5728\u9a7e\u9a76\u5ea7\u4e0a\u3002"} +{"id": "2001322", "video_name": "0da02938-a3ce-57ac-b0ba-c96375b855e8", "text": "\u8ffd\u968f\u4e00\u4e2a\u5996\u7cbe\u63a8\u7740\u77f3\u8f6e\u3002"} +{"id": "2001323", "video_name": "055f75f0-597e-5afc-9804-f8cb965aad6e", "text": "\u8be6\u5c3d\u7684\u6587\u4ef6\u8bb0\u5f55\u63ed\u793a\u4e86\u5de8\u578b\u6cd5\u8001\u6728\u4e43\u4f0a\u7684\u89e3\u5256\u7ec6\u8282\u3002"} +{"id": "2001324", "video_name": "d4fdae17-d289-54c2-998a-4cd60858cbaf", "text": "\u5973\u5b69\u624b\u6301\u4e00\u6735\u82b1\u5fae\u7b11\uff0c\u98ce\u5439\u62c2\u5468\u56f4\u3002"} +{"id": "2001325", "video_name": "eca26a4d-1655-59f0-becc-3c406e2aaeb4", "text": "\u5927\u72d7\u5728\u4e00\u5ea7\u5c0f\u6865\u4e0a\uff0c\u5927\u6cb3\u4e24\u5cb8\u6811\u6728\u6210\u884c\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u9e1f\u513f\u53fd\u53fd\u55b3\u55b3\u3002\n\nSource sentence"} +{"id": "2001326", "video_name": "76789730-5fc5-5c22-9287-c43bea85d1d3", "text": "\u60f3\u8c61\u4e00\u4e0b\u9ab7\u9ac5\u3001\u4fee\u5973\u3001\u6469\u6258\u8f66\u5934\u76d4\u3001\u54e5\u7279\u5f0f\u3001\u6469\u6258\u8f66\u4e3b\u9898\u80cc\u666f\u3001\u8d85\u5199\u5b9e\u7684\u3002"} +{"id": "2001327", "video_name": "6c956a8b-6af5-50a1-b14f-2073f7a34765", "text": "\u4ece\u5e72\u71e5\u7684\u6c99\u6f20\u571f\u5730\u4e0a\u957f\u51fa\u7684\u5170\u82b1\u79cd\u5b50\uff0c\u6784\u6210\u4e86\u8ff7\u5e7b\u3001\u903c\u771f\u7684\u8fbe\u5229\u827a\u672f\uff0c\u9ed1\u591c\u7b3c\u7f69"} +{"id": "2001328", "video_name": "ccbf3793-3ef4-52f8-82fc-d2c6cf5ff2ef", "text": "\u5fb7\u56fd\u5973\u5b50\u8db3\u7403\u56fd\u5bb6\u961f\u51fb\u8d25\u97e9\u56fd\u5973\u5b50\u8db3\u7403\u961f\u3002"} +{"id": "2001329", "video_name": "84207e69-b367-52e3-a297-994d8dc53368", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u519c\u573a\u4e0a\u8d70\u7740\uff0c\u5e26\u7740\u4e00\u53ea\u5de8\u5927\u7684\u9e21\uff0c\u53ef\u7231\u7684\u989c\u8272\uff0c4k\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2001330", "video_name": "4efeffa9-fcc7-5244-8c04-7cd2b9eb8bcd", "text": "\u9ed1\u767d\u590d\u53e4\u6050\u6016\u7535\u5f71\uff0c\u573a\u666f\u4e3a\u9ed1\u6697\u7684\u7530\u91ce\u548c\u7ef4\u591a\u5229\u4e9a\u5f0f\u8001\u623f\u5b50\u7684\u5e9f\u589f\u3002"} +{"id": "2001331", "video_name": "c4d8d89a-9d5c-5f4d-9765-ac562b35b9c3", "text": "\u62c9\u6731\u5728\u6811\u4e0b\u6c89\u601d\u7740\u9b54\u6cd5\u58f6\u7684\u8c1c\u9898\uff0c\u4ed6\u76b1\u8d77\u7709\u5934\uff0c\u601d\u8003\u7740\u3002\u52a8\u753b\u5361\u901a\u3002"} +{"id": "2001332", "video_name": "e28ea54d-22c6-5828-aa7b-b2a7ced4d6c1", "text": "\u6df1\u5165\u9aa8\u7ec4\u7ec7\u7684\u5fae\u89c2\u4e16\u754c\uff0c\u5236\u4f5c\u80fd\u51f8\u663e\u7ed3\u6784\u590d\u6742\u6027\u7684\u56fe\u50cf\uff0c\u8fd9\u4e9b\u7ed3\u6784\u590d\u6742\u6027\u662f\u9aa8\u9abc\u80fd"} +{"id": "2001333", "video_name": "37d19187-9d2d-52c8-901d-0b63da0fe892", "text": "\u8ff7\u5e7b\u7597\u6cd5\u5ba4\uff0c\u5929\u7136\u6728\u5bb6\u5177\uff0c\u6e29\u6696\u7684\u706f\u5149\u3002"} +{"id": "2001334", "video_name": "81d12283-b299-55a7-840d-e719bc953ac0", "text": "\u9ed1\u767d\u7167\u7247\u3001\u6050\u6016\u7535\u5f71\u3001\u53ef\u6015\u7684\u6545\u4e8b\u3001\u5ba2\u5385\u4e2d\u592e\u7684\u4e00\u5177\u5c38\u4f53\u3002"} +{"id": "2001335", "video_name": "7017829d-0c9b-53cd-ac06-cf50ab8da2e8", "text": "\u4ee5\u6bd4\u7279\u5e01\u4e3a\u4f8b\u7684\u7f51\u7edc\u8425\u9500\u8ba1\u5212\u3002"} +{"id": "2001336", "video_name": "f47709e8-c044-5370-84fa-12fbea0baee6", "text": "\u5f02\u661f\u68ee\u6797\u4e2d\u7684\u5947\u602a\u6606\u866b"} +{"id": "2001337", "video_name": "244b70fd-f523-55d1-8e87-e3d559c38e17", "text": "\u592a\u9633\u5347\u8d77\u5728UNStudio\u7684\u83ab\u6bd4\u4e4c\u65af\u4e4b\u5bb6\u4e0a\u3002"} +{"id": "2001338", "video_name": "8721179b-212b-5d47-a9ae-58fcc546d119", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u53a8\u623f\u6d17\u7740\u6843\u5b50\uff0c\u4e00\u8fb9\u804a\u5929\u3002"} +{"id": "2001339", "video_name": "7591136d-a6b5-5cac-8162-3b2f3f4af3e5", "text": "\u6811\u68a2\u4e0a\uff0c\u4e00\u4e2a\u95ea\u70c1\u7740\u84dd\u5149\u7684\u4f20\u9001\u95e8\u7a81\u7136\u51fa\u73b0\u5728\u5176\u6811\u679d\u4e4b\u95f4\u3002\u4f20\u9001\u95e8\u53d1\u51fa\u4f4e\u6c89\u7684\u55e1"} +{"id": "2001340", "video_name": "4b9fecb4-d5dc-5f20-81f2-c28eb1520524", "text": "\u63d2\u753b\u98ce\u683c\uff0c\u9ad8\u6e05\u89c6\u9891\uff0c\u4e00\u4e2a\u7537\u5b69\u5728\u4e00\u95f4\u660f\u6697\u7684\u623f\u95f4\u91cc\u5199\u8003\u8bd5\u5377\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u76cf\u706f\uff0c\u6574\u4e2a\u623f\u95f4\u7684"} +{"id": "2001341", "video_name": "43919867-0000-54d7-92ab-42d660d6ec9c", "text": "\u52a8\u6f2b\u89d2\u8272Rahul\u9192\u6765\u4e86\u3002"} +{"id": "2001342", "video_name": "00a1ffb8-9dae-5a38-9c36-ba0c22485843", "text": "\u7269\u8d28\u5fae\u7c92\u5728\u6a2a\u6ce2\u4e2d\u8fd0\u52a8\u3002"} +{"id": "2001343", "video_name": "854a64cf-981c-55fc-b991-339c0ec238c9", "text": "Tricia\u89e3\u91ca\u8bf4\uff0c\u7a81\u7136\u4e4b\u95f4Luke\u5f00\u59cb\u770b\u5230\u5df2\u7ecf\u53bb\u4e16\u7684\u4eba\u3002\u4ed6\u4e0d\u4ec5\u770b\u5230\u4e86\u4ed6\u4eec\uff0c\u8fd8\u548c\u4ed6\u4eec\u8bf4\u8bdd\u3002"} +{"id": "2001344", "video_name": "e7c995b8-9805-5446-88b0-38f891700bf4", "text": "\u521b\u4f5c\u63d2\u56fe\u4e0e\u6444\u5f71\u5e08\u5408\u4f5c\uff0c\u62cd\u6444\u7167\u7247\u5e76\u5728\u7f51\u4e0a\u5c55\u793a\u4ee5\u552e\u5356\u3002"} +{"id": "2001345", "video_name": "c0f5d25e-8b17-55f3-a1a2-a96275ec77f8", "text": "\u5929\u7a7a\u4e2d\u6709\u4e91\u5c42\u7684\u7ec8\u7ed3\u8005\u3002"} +{"id": "2001346", "video_name": "98bc2ebb-e0b7-536d-84a4-0b3ef3e58dda", "text": "\u4e00\u8f86\u519b\u7528\u5766\u514b\u5411\u5efa\u7b51\u7269\u5f00\u706b\uff0c\u5efa\u7b51\u7269\u71c3\u70e7\u5e76\u5012\u584c\uff0c\u975e\u5e38\u903c\u771f\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "2001347", "video_name": "e235ef05-4ee8-5c6b-8326-d504400bf36d", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u97e9\u56fd\u5bfa\u5e99\u91cc\u9762\u6709\u4e00\u53ea\u903c\u771f\u7684\u8001\u864e\u3002"} +{"id": "2001348", "video_name": "bb3b8c91-5f2c-59c4-8b97-1ea73ec7d8b3", "text": "\u8ff7\u5931\u7684\u68ee\u6797\u5c0f\u9e7f\uff0c\u5361\u901a\u98ce\u683c\uff0c\u79fb\u52a8\u7684\u955c\u5b50\u3002"} +{"id": "2001349", "video_name": "35e117bb-fbf3-588b-8ff0-87d2964afa65", "text": "\u6709\u4e00\u53ea\u975e\u5e38\u7279\u522b\u7684\u718a\u53eb\u505a\u4e54\u4f0a\u3002\u4e54\u4f0a\u662f\u4e00\u53ea\u975e\u51e1\u7684\u718a\uff0c\u5177\u6709\u7406\u89e3\u4eba\u7c7b\u8bed\u8a00\u548c\u4e50\u4e8e\u52a9\u4eba"} +{"id": "2001350", "video_name": "e5f8aed6-74ed-536d-b32b-9cc42b235a79", "text": "\u7279\u65af\u62c9\u9a7e\u9a76\u7a7f\u8d8a\u7ebd\u7ea6\u5e02\u3002"} +{"id": "2001351", "video_name": "0f8b8495-3ddb-529f-a4b4-2e5bba248844", "text": "\u5546\u4eba\u7684\u6162\u52a8\u4f5c\u8096\u50cf\u753b\u3002"} +{"id": "2001352", "video_name": "3bda305c-c336-5038-9518-ac8e8c1492a5", "text": "\u90a3\u5973\u5b69\u5728\u4e1b\u6797\u91cc\u5f00\u5fc3\u5730\u5954\u8dd1\u7740\u3002"} +{"id": "2001353", "video_name": "15071738-7505-5afa-87fe-7673fe08dd23", "text": "\u68ee\u6797\u4e2d\u7684\u52a8\u7269\u548c\u9e1f\u7c7b\u7684\u56fe\u50cf \u9644\u4ef6 1"} +{"id": "2001354", "video_name": "ff6f38d0-18f5-512a-8abe-6b46891d19ec", "text": "\u4e2d\u4e16\u7eaa\u65f6\u4ee3\uff0c\u68f1\u89d2\u5206\u660e\u7684\u7279\u5f81\uff0c\u4e00\u4f4d\u8001\u6d77\u76d7\uff0c\u7070\u8272\u7684\u80e1\u987b\u548c\u5934\u53d1\uff0c\u6b63\u5728\u57ce\u5821\u7684\u7a97\u6237\u5916\u9762\u773a"} +{"id": "2001355", "video_name": "575e48c7-0140-5a58-969c-7c170c066788", "text": "\u4e00\u4e2a\u706b\u5f71\u5fcd\u8005\u7684\u89d2\u8272\u5750\u7740\u7728\u773c\u775b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001356", "video_name": "e367357b-886b-5721-8c11-51d719b313d5", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u886c\u886b\u548c\u725b\u4ed4\u88e4\u7684\u7537\u5b50\u5728\u4e00\u4e2a\u7a7a\u8361\u8361\u7684\u57ce\u5e02\u91cc\u5954\u8dd1\u3002"} +{"id": "2001357", "video_name": "d29a7d8e-40b0-5318-82c7-df2b3d9acd3b", "text": "\u4e00\u5f20\u5728\u9ed1\u6697\u4e2d\u6709\u4e00\u70b9\u5149\u7684\u5f3a\u58ee\u3001\u7537\u6027\u5316\u3001\u957f\u80e1\u987b\u7537\u4eba\u7684\u7167\u7247\u3002"} +{"id": "2001358", "video_name": "6c501506-bb13-55b6-9043-690bc5976ae0", "text": "\u5b87\u822a\u5458\u7a7f\u7740\u751f\u547d\u88c5\u7f6e\u670d\u7a7f\u8d8a\u5916\u661f\u7403\u4e1b\u6797\u7684\u5f71\u50cf\u3002"} +{"id": "2001359", "video_name": "188431e1-d89b-5fad-ba7f-6f1a9f4fd367", "text": "\u8f6e\u5ed3\u8ffd\u8e2a\u7684\u65e5\u672c\u52a8\u753b\uff0c\u5c55\u73b0\u4e00\u4e2a\u9a91\u7740\u72ec\u8f6e\u8f66\u7684\u4eba\uff0c\u7ebf\u6761\u98a4\u6296\u3002"} +{"id": "2001360", "video_name": "0de6c37f-d0ef-5ae3-9447-39bf57119776", "text": "\u4e00\u53ea\u59dc\u9ec4\u8272\u7684\u732b\u5728\u5403\u7eb3\u897f\u83b1\u9a6c\u514b\u3002"} +{"id": "2001361", "video_name": "ae7fa866-ea78-54de-81ab-146f01fa8be3", "text": "\u5b87\u5b99\u98de\u8239\u649e\u4e0a\u4e86\u4e00\u5f20\u5de8\u5927\u7684\u62ab\u8428\u3002"} +{"id": "2001362", "video_name": "8f519bff-fa0c-5410-baf2-1a17ba0e7f31", "text": "\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u7684\u6905\u5b50\u4e0a\u653e\u677e\uff0c\u5438\u98df\u5927\u9ebb\u3002"} +{"id": "2001363", "video_name": "1398bc0f-a994-5396-a6dc-d30d5c803cd1", "text": "\u6444\u50cf\u673a\u6c34\u5e73\u79fb\u52a8\u5e76\u653e\u5927\u4e00\u4e2a\u5531\u7247\u65cb\u8f6c\u7684\u7279\u5199\uff0c\u53ef\u4ee5\u770b\u5230\u5531\u81c2\u3001\u5531\u9488\u3001\u5531\u7247\u9876\u90e8\u548c\u90e8\u5206\u8f6c\u76d8\u7bb1\uff0c"} +{"id": "2001364", "video_name": "4339e237-3b75-5117-ace5-6a1233493481", "text": "\u6234\u7740\u957f\u53d1\u3001\u7a7f\u7740\u77ed\u88e4\u548c\u65e0\u8896\u4e0a\u8863\u7684\u53ef\u7231\u6f02\u4eae\u8fa3\u59b9\u3002"} +{"id": "2001365", "video_name": "5d59f2de-b5d0-5d59-a9d9-54baa6dfb5b4", "text": "\u7a3b\u7530\u4e0a\u6709\u53e4\u8001\u7684\u4e2d\u5f0f\u795e\u6bbf\u548c\u851a\u84dd\u7684\u5929\u7a7a\uff1b\u5409\u535c\u529b\u5de5\u4f5c\u5ba4"} +{"id": "2001366", "video_name": "7aa87570-8851-5f86-a585-c7208709611b", "text": "\u7a7f\u7740\u706b\u67aa\u624b\u5e3d\u5b50\u7684\u4eba\u572821\u4e16\u7eaa\uff0c\u6280\u672f\u5148\u8fdb\u800c\u5e74\u8f7b\uff0c\u63d0\u51fa\u95ee\u9898\u548c\u7591\u8651\u3002"} +{"id": "2001367", "video_name": "727df2b3-0016-554b-9ba5-0f30a13a046a", "text": "\u521b\u9020\u4e00\u4e2a\u5f3a\u5927\u800c\u82f1\u52c7\u7684\u6e38\u51fb\u58eb\u5175\u5f62\u8c61\uff0c\u4ed6\u5728\u5927\u80c6\u89e3\u6551\u4e2d\u3002\u5c55\u793a\u4e00\u540d\u6218\u58eb\u5728\u6df7\u4e71\u7684\u6218\u573a\u4e2d"} +{"id": "2001368", "video_name": "24e2c803-8054-50a5-a1dd-534ad02e5265", "text": "\u6447\u6eda\u97f3\u4e50\u5bb6\u5728\u97f3\u4e50\u4f1a\u4e0a\u8868\u6f14\uff0c\u89c2\u4f17\u5e2d\u4e0a\u6709\u9ab7\u9ac5\uff0c\u524d\u9762\u662f\u4e00\u5927\u7fa4\u9ab7\u9ac5\u89c2\u4f17"} +{"id": "2001369", "video_name": "07132ccb-cda2-5920-8f57-1ab7d56b72e2", "text": "\u7269\u54c1\u878d\u5316\uff0c\u903c\u771f\uff0c\u5145\u6ee1\u7ec6\u8282\u3002"} +{"id": "2001370", "video_name": "904d8dc7-ee9d-5147-9da8-edd19bd772a8", "text": "\u5b69\u5b50\u62ff\u7740\u67aa \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2001371", "video_name": "628d0585-d888-555f-8ded-9890254bb9ec", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u592a\u9633\u9e66\u9e49\u5f39\u94a2\u7434\u3002"} +{"id": "2001372", "video_name": "8e093777-e322-520b-8c7a-52d5861eec99", "text": "\u4eba\u7c7b\u5c55\u793a\u4e86\u6211\u4eec\u53ef\u4ee5\u6709\u591a\u4e48\u575a\u97e7\u548c\u806a\u660e\u3002"} +{"id": "2001373", "video_name": "17e54541-7271-583e-80e3-e042e3da07ab", "text": "Translation: \u4e00\u4e2a\u7537\u4eba\u5750\u5728\u9a6c\u6876\u4e0a\uff0c\u5927\u58f0\u558a\u53eb\u3002"} +{"id": "2001374", "video_name": "f43145d2-312f-52cc-9b98-711d319630ab", "text": "\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u6c99\u6f0f\u6162\u6162\u5730\u5728\u653e\u5927\u524d\u9762\u6ed1\u843d\u3002"} +{"id": "2001375", "video_name": "fce7782d-dadb-5fd5-90a8-d707edb7abe9", "text": "\u7537\u4eba\u62ff\u7740\u5496\u5561\u676f\u5927\u7b11\uff0c\u903c\u771f\u7684\u89c6\u989132k\u3002"} +{"id": "2001376", "video_name": "49de18ac-4eac-5666-8546-47b95d45a90f", "text": "\u5f53\u592a\u9633\u5f00\u59cb\u843d\u5c71\uff0c\u628a\u6e29\u6696\u7684\u5149\u8292\u6d12\u5411\u68ee\u6797\uff0c\u516c\u4e3b\u4eec\u76f8\u4e92\u544a\u522b\uff0c\u627f\u8bfa\u5728\u5404\u81ea\u8ff7\u4eba\u7684"} +{"id": "2001377", "video_name": "bd110f27-643e-55f2-a1e9-409bd1b32180", "text": "\u6697\u6de1\u7684\u4e34\u754c\u7a7a\u95f4\uff0c\u4ece\u7a97\u6237\u4e2d\u900f\u51fa\u6726\u80e7\u7684\u5149\u8292\u3002"} +{"id": "2001378", "video_name": "6b0375b8-ef89-5796-8d28-ed1786802e15", "text": "20\u4e16\u7eaa70\u5e74\u4ee3\u7684\u6050\u6016\u7535\u5f71\uff0c\u98df\u4eba\u65cf\u878d\u5316\u8089\u4f53\uff0c\u7535\u5f71\uff0c20\u4e16\u7eaa70\u5e74\u4ee3\u3002"} +{"id": "2001379", "video_name": "289a762b-26b3-5e61-9bbe-e9b624fea3b9", "text": "\u4f01\u4e1a\u516c\u53f8\u7f51\u7ad9\u7684\u6781\u7b80\u4e3b\u4e49\u7f51\u9875\u8bbe\u8ba1"} +{"id": "2001380", "video_name": "62f0672f-4383-559f-8254-678c0989cdc0", "text": "1990\u5e74\u4ee3\u7535\u5f71\uff0c\u8bb2\u8ff0\u62c9\u5a1c\u00b7\u5fb7\u96f7\u6210\u4e3a\u4e00\u4e2a\u5929\u4e3b\u6559\u65b0\u5a18\u7684\u6545\u4e8b\u3002"} +{"id": "2001381", "video_name": "1bcf7d88-2de7-58b3-8bd1-c62db4ccd26a", "text": "\u4e00\u500b\u53ef\u611b\u7684Rose Bowl\u9ad4\u80b2\u5834\u76843D\u6e32\u67d3\u3002"} +{"id": "2001382", "video_name": "f5377d56-be3f-53b6-a446-b9bb12a7eeef", "text": "\u5973\u5b69\u5728\u98ce\u4e2d\u626d\u52a8\u6ce2\u591a\u9ece\u5404\u56fd\u65d7\u7684\u821e\u8e48\uff0c\u98ce\u5439\u62c2\u7740\u957f\u53d1\u7684\u7eb9\u8eab\u3002"} +{"id": "2001383", "video_name": "e82aa419-b073-5b64-b9ed-da9051b847fb", "text": "\u9ed1\u5ba2\u8fdb\u884c\u7f51\u7edc\u653b\u51fb\u3002"} +{"id": "2001384", "video_name": "687f4c3b-0980-5dd9-843a-9172ca06a6c5", "text": "\u4eba\u4f53\u76847\u4e2a\u8109\u8f6e\u88ab\u5b87\u5b99\u7684\u56db\u9053\u5149\u73af\u7ed5\uff0c\u4f7f\u4eba\u5468\u56f4\u5145\u6ee1\u5149\u660e\uff0c\u5f62\u8c61\u903c\u771f\u3002"} +{"id": "2001385", "video_name": "20967a06-e1ee-50cc-95db-ccf67e24b59a", "text": "\u4e00\u53ea\u51f6\u731b\u7684\u91ce\u517d\u6e29\u67d4\u5730\u4f9d\u504e\u5728\u5e74\u8f7b\u5973\u5b69\u7684\u6000\u4e2d\uff0c\u8868\u73b0\u51fa\u6e29\u67d4\u548c\u5145\u6ee1\u611f\u60c5\u7684\u59ff"} +{"id": "2001386", "video_name": "254ef322-6bef-530c-af43-8c4f6605051e", "text": "\u5409\u7965\u7269\u5728\u6325\u624b\uff0c\u5fae\u98ce\u5439\u52a8\u7740\u6811\u53f6\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001387", "video_name": "d5f88d4b-ce71-57a3-b88c-d55700f0fd65", "text": "\u8d3e\u5df4\u5c0f\u5c4b\u5728\u8e66\u5e8a\u4e0a\u8df3\u6765\u8df3\u53bb\u3002"} +{"id": "2001388", "video_name": "6aac10b0-f7a7-536d-89e2-3216047cd7b4", "text": "\u8fea\u58eb\u5c3c\u7535\u5f71\u3002\u4fbf\u79d8\u7684\u7537\u4eba\u30021950\u5e74\u4ee3\u3002"} +{"id": "2001389", "video_name": "92475ab6-66c7-5022-b16a-a3d6c47b0fb7", "text": "\u4e00\u540d\u8eab\u7a7f\u767d\u5927\u8902\u7684\u82cf\u8054\u533b\u9662\u75c5\u4eba\u57281940\u5e74\u4e0e\u4e00\u540d\u82cf\u8054\u58eb\u5175\u640f\u6597\uff0c\u573a\u666f\u51fa\u73b0\u5728\u9ed1\u767d"} +{"id": "2001390", "video_name": "8cc6ce04-0b08-5b6b-92a6-c043b05c22e1", "text": "\u58a8\u897f\u54e5\u7684\u4ea1\u7075\u8282\u4e2d\uff0c\u84dd\u8272\u706b\u7130\u4e0b\u7684\u5361\u7279\u91cc\u5a1c\u573a\u666f\u3002"} +{"id": "2001391", "video_name": "c03cd4b4-73e0-510d-9b84-970e4a96e9a6", "text": "\u5251\u4ece\u77f3\u4e2d\u7f13\u7f13\u62d4\u51fa\uff0c\u6709\u7535\u5f71\u822c\u7684\u52a8\u611f\u3002"} +{"id": "2001392", "video_name": "c82a107b-0fad-5595-9286-e8b70c2b9c52", "text": "\u89d2\u843d\u91cc\u7684\u53e4\u8463\u842c\u5e74\u9418\u6572\u97ff\u5348\u591c\uff0c\u56de\u8569\u7684\u9418\u8072\u6a19\u8a8c\u8457\u547d\u904b\u7684\u6642\u523b"} +{"id": "2001393", "video_name": "53d3f070-5158-52ba-bd3f-5b496766dad3", "text": "\u63a2\u7d22\u9ed1\u6d1e\u5468\u56f4\u7684\u6700\u65b0\u7814\u7a76\u548c\u53d1\u73b0\uff0c\u5305\u62ec\u5b83\u4eec\u5728\u661f\u7cfb\u6f14\u5316\u4e2d\u7684\u4f5c\u7528\u548c\u4e0e\u4e4b\u76f8\u5173\u7684\u795e\u79d8\u73b0\u8c61\u3002"} +{"id": "2001394", "video_name": "f3126140-8e79-5973-a569-6318be79925a", "text": "\u58eb\u5175\u4eec\u94f8\u9020\u786c\u5e01\uff0c\u80cc\u666f\u7f8e\u4e3d\u7684\u53e4\u4ee3\u65f6\u671f\u3002"} +{"id": "2001395", "video_name": "34151804-f2e9-5752-932b-b3a97ee6d190", "text": "\u5728\u300a\u7535\u952f\u60ca\u9b42\u300b\u4e2d\u7684\u955c\u5934\uff0c\u6444\u4e8e\u5e1d\u56fd\u8c37\uff0c\u901a\u8fc7iPhone\u62cd\u6444\u5230\u4e86\u5bf9\u7740\u6444\u50cf\u673a\u8bf4\u8bdd\u7684\u6bc1\u5bb9\u8138"} +{"id": "2001396", "video_name": "687d0168-beab-5cac-81d4-fe42bffdc1bf", "text": "\u4e00\u5bf9\u592b\u5987\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u76f8\u4e92\u5bf9\u89c6\uff0c\u5206\u4eab\u7740\u70ed\u70c8\u7684\u7b11\u58f0\u3002"} +{"id": "2001397", "video_name": "269396b5-2978-550d-91a8-6fa1b09310b3", "text": "\u8d5b\u535a\u670b\u514b\u76844K\u5206\u8fa8\u7387\u96e8\u591c\uff0c\u6709\u4eba\u884c\u8d70\u3002"} +{"id": "2001398", "video_name": "fcede409-89db-57a6-95ef-88f5483f308a", "text": "\u4e00\u9897\u975e\u5e38\u5de8\u5927\u7684\u6052\u661f\u5728\u661f\u5149\u95ea\u8000\u7684\u7a7a\u95f4\u4e2d\u7206\u70b8\uff0c\u5f62\u6210\u4e00\u56e2\u660e\u4eae\u7684\u6a59\u8272\u706b\u7403\uff0c\u8fd9\u5c31\u662f\u8d85"} +{"id": "2001399", "video_name": "9eb6395d-3ddf-5255-8f40-9a215fa724a7", "text": "\u5973\u5b69\u5750\u5728\u8239\u4e0a\u7684\u5f71\u5b50\uff0c\u6cb3\u8fb9\u7684\u591c\u7a7a"} +{"id": "2001400", "video_name": "6f737737-0604-5802-a352-95fd1a0f45d6", "text": "\u6770\u6d1b\u7279\u6b63\u5728\u4e0e\u72c2\u730e\u4f5c\u6218\u3002"} +{"id": "2001401", "video_name": "3d2e30e6-66c3-5e9e-b8a1-8f3263722033", "text": "16:9\uff0c\u7531\u592a\u9633\u80cc\u5149\u7684\u673a\u5668\u4eba\u5efa\u7b51\u961f\u4f0d"} +{"id": "2001402", "video_name": "635fcafa-be54-5180-ab07-729130f42cd9", "text": "\u8428\u59c6\u00b7\u963f\u5c14\u7279\u66fc\u3001\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u3001\u6bd4\u5c14\u00b7\u76d6\u8328\u6b63\u5728T\u5f62\u53f0\u4e0a\u548c\u82ad\u6bd4\u8df3\u821e\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a"} +{"id": "2001403", "video_name": "b43c9cc9-4490-52e3-b008-d68feb86ae63", "text": "\u4e00\u4f4d\u65f6\u88c5\u8bbe\u8ba1\u5e08\u6b63\u5728\u5236\u4f5c\u4e00\u4ef6\u534e\u4e3d\u7684\u793c\u670d\uff0c\u975e\u5e38\u8be6\u7ec6\u5e76\u9ad8\u6e05\uff0c\u4ed6\u5728\u6218\u573a\u4e2d\u592e\u8fdb\u884c\u9732\u5929\u521b\u4f5c\uff0c\u573a\u666f\u5f88\u6709"} +{"id": "2001404", "video_name": "78a2d762-05bf-51b3-a34e-ca0463dc3dcd", "text": "\u8def\u897f\u6cd5\u548c\u6076\u9b54\u519b\u56e2\u5632\u7b11\u4eba\u7c7b\u3002\u7535\u5f71\u822c\u7684\u573a\u666f\u3002"} +{"id": "2001405", "video_name": "b4a4b66f-ec59-5a41-b3a6-ca0db1275c26", "text": "\u4e00\u53ea\u5e26\u6709\u6444\u50cf\u5934\u65cb\u8f6c\u529f\u80fd\u76843D\u673a\u5668\u9752\u86d9\u3002"} +{"id": "2001406", "video_name": "e265bc8c-c7d1-5f08-9792-64db6d11f93b", "text": "\u5c3e\u5df4\u88ab\u53d1\u73b0\u5728\u79d1\u963f\u97e6\u62c9\u5dde\u5317\u90e8\u7684\u5c0f\u57ce\u901a\u7528\u585e\u4f69\u8fbe\u9644\u8fd1\uff0c\u9760\u8fd1\u5fb7\u514b\u8428\u65af\u5dde\u7684\u8fb9\u5883"} +{"id": "2001407", "video_name": "b89fe7f3-395b-54e5-bef5-235335f1ceff", "text": "\u8b66\u536b\u4fdd\u62a4\u9886\u571f\uff0c\u94ed\u6587ZOV\u7537\u5b69\u5973\u5b69\u8fc8\u514b\u00b7\u6cf0\u68ee\u6b66\u5668\u3002"} +{"id": "2001408", "video_name": "56639f95-b6f5-5d5c-95a4-c4257cfe46ae", "text": "\u4e00\u4e2a\u76f8\u8c8c\u7aef\u6b63\u7684\u5e05\u54e5\u4ece\u4ed6\u7684\u8d85\u7ea7\u8dd1\u8f66\u4e0a\u4e0b\u6765\uff0c\u5e76\u6234\u7740\u592a\u9633\u955c\u3002"} +{"id": "2001409", "video_name": "85d1e39a-94cd-5992-943d-e0dabd52196e", "text": "\u5c55\u793a\u4e00\u4e2a\u8302\u5bc6\u7684\u7eff\u8272\u4e1b\u6797\u73af\u5883\uff0c\u6709\u9ad8\u5927\u7684\u6811\u6728\u548c\u5404\u79cd\u52a8\u7269\uff0c\u5982\u5927\u8c61\u3001\u5154\u5b50\u3001\u9e1f\u7c7b\uff0c\u8fd8\u6709\u4e00\u4e2a\u540d"} +{"id": "2001410", "video_name": "5f510ed1-8515-51c8-b02b-82be8db9a807", "text": "\u7a7f\u7740\u76d4\u7532\u7684\u58eb\u5175\u5728\u4e2d\u56fd\u53e4\u57ce\u5899\u4e0a\u65b9\u9635\u884c\u8d70\uff0c\u8fdc\u5904\u662f\u8fde\u7ef5\u8d77\u4f0f\u7684\u5c71\u5ce6\uff0c\u6709\u7740\u4e30"} +{"id": "2001411", "video_name": "0a57991d-d135-59a6-9432-df6f8d36ed1b", "text": "\u8d85\u91cd\u7537\u5b50\u5728\u8dd1\u6b65\u673a\u4e0a\u5411\u5c4f\u5e55\u524d\u5954\u8dd1\u3002"} +{"id": "2001412", "video_name": "2e522314-58be-51b8-864d-fe98301fe0eb", "text": "\u4e00\u4e2a\u79fb\u52a8\u7684\u592a\u9633\u7cfb\uff0c\u5728\u8ddd\u79bb\u5730\u74033000\u5149\u5e74\u7684\u661f\u7cfb\u4e2d\u6709\u4e24\u4e2a\u592a\u9633\u3002"} +{"id": "2001413", "video_name": "e3930d03-d14e-5b08-9e9d-f6af5a122d46", "text": "\u7eb3\u7c73\u5851\u6599\u5728\u8eab\u4f53\u5185\u8fd0\u52a8\u7684\u8d85\u73b0\u5b9e\u52a8\u753b\u3002"} +{"id": "2001414", "video_name": "0b8bb691-1b94-5de3-a736-79db4768e6f1", "text": "\u4e00\u4ef6\u6d41\u7545\u7684\u767d\u8272\u94bb\u77f3\u5a5a\u7eb1"} +{"id": "2001415", "video_name": "404809be-23c4-521b-88eb-2aaee333c692", "text": "\u80cc\u666f\u6162\u6162\u5730\u79fb\u52a8\uff0c\u5361\u8f66\u5954\u8dd1\u5f97\u5f88\u5feb\uff1b\n\nSource sentence: The cat is sitting on the mat. \n\u90a3\u53ea\u732b\u6b63\u5728\u57ab\u5b50"} +{"id": "2001416", "video_name": "43babffa-7c33-5473-ab18-21a8e5b7880f", "text": "\u57ce\u5e02\u4e2d\u7684\u300a\u94f6\u7ffc\u6740\u624b2049\u300b\u6c7d\u8f66"} +{"id": "2001417", "video_name": "6fcfca6b-dcd4-5316-9242-a5217d2b93a8", "text": "\u5916\u661f\u4eba\u751f\u6d3b\u5728\u548c\u5e73\u4e0e\u548c\u8c10\u4e4b\u4e2d\uff0c\u4ed6\u4eec\u7684\u793e\u4f1a\u5efa\u7acb\u5728\u5408\u4f5c\u548c\u5c0a\u91cd\u7684\u57fa\u7840\u4e4b\u4e0a\u3002"} +{"id": "2001418", "video_name": "9b742a5a-541b-5660-b222-7d3690606e67", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u9152\u5427\u559d\u9152\u3002"} +{"id": "2001419", "video_name": "96360c38-c1f9-503e-a84c-72ce6b835d0e", "text": "\u521b\u9020\u4e00\u4e2a\u5728\u5df4\u897f\u8d2b\u6c11\u7a9f\u5185\u5145\u6ee1\u8df3\u821e\u3001\u542c\u97f3\u4e50\u3001\u559d\u7740\u5145\u6ee1\u5df4\u897f\u98ce\u5473\u7684\u996e\u6599\u7684\u4eba"} +{"id": "2001420", "video_name": "a573e95f-d715-5677-aa7a-81ccfd887459", "text": "\u968f\u7740\u5c0f\u9e1f\u9010\u6e10\u6062\u590d\u4e86\u4f53\u529b\uff0c\u7537\u5b69\u3001\u72d7\u548c\u5c0f\u9e1f\u4e4b\u95f4\u5efa\u7acb\u4e86\u7f8e\u597d\u7684\u53cb\u8c0a\u3002"} +{"id": "2001421", "video_name": "be9f37b7-4aa6-552b-aa04-5bb1b9ca0bdf", "text": "\u6d77\u6ee9\u4e0a\u6709\u592a\u9633\u548c\u84dd\u8272\u7684\u6d77\u6c34\u3002\u5c06\u5176\u8c03\u6574\u4e3a2080\u5206\u8fa8\u7387\u3002\u52a8\u60013\u3002\u540c\u4e00\u89c6\u9891\u65e0\u66f4\u6539\u3002"} +{"id": "2001422", "video_name": "a809f5dc-2bdb-5b8e-9bd5-c1e524b2a8b6", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7ebd\u7ea6\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2001423", "video_name": "be91f136-da0f-5c15-b619-e212f7d25d1e", "text": "\u5973\u5b69\u4f69\u6234\u7740\u7f8e\u4e3d\u7684\u8033\u673a\uff0c\u7a7f\u7740\u65e5\u672c\u98ce\u683c\u7684\u767d\u8272\u80cc\u666f\uff0c\u957f\u957f\u7684\u5377\u66f2\u9ed1\u53d1\uff0c\u534e\u4e3d\u7684\u7eff"} +{"id": "2001424", "video_name": "dfbfd32c-3f91-5d2d-a36f-4e3b98582e11", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u6280\u672f\u3001\u4eba\u5de5\u667a\u80fd\u751f\u4ea7\u8fc7\u7a0b\u3001\u5de5\u5382\u7814\u53d1\u3001\u6280\u672f\u96f6\u90e8\u4ef6\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001425", "video_name": "46f4edc3-b77f-5e99-838b-9ae5ee782f0b", "text": "\u6d3b\u529b\u5341\u8db3\u7684\u5149\u5f69\u593a\u76ee\u7684\u87ba\u65cb\u5154\u6d1e\u9006\u65f6\u9488\u79fb\u52a8\uff0c\u9713\u8679\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2001426", "video_name": "4599f4c7-7eaa-5fc0-ab1c-1f7f8a9bfe16", "text": "\u751f\u6210\u4e00\u4e2a\u5b69\u5b50\u4eec\u805a\u96c6\u5728\u5927\u9505\u5468\u56f4\u7684\u56fe\u50cf\uff0c\u5229\u7528\u4ed6\u4eec\u7684\u60f3\u8c61\u529b\u5728\u8fd9\u4e2a\u795e\u5947\u7684\u73af\u5883\u4e2d\u6784\u60f3\u6545\u4e8b\u3002"} +{"id": "2001427", "video_name": "88670e47-d9e4-5d94-b43a-1732a7c1b29b", "text": "\u5728\u767d\u5929\uff0c\u4e94\u540d\u65e9\u671f\u4eba\u7c7b\u5750\u5728\u6811\u4e0b\u4ea4\u8c08\u3002"} +{"id": "2001428", "video_name": "350f2173-9031-5f0e-bbb8-33d075aa6663", "text": "\u4f69\u4f69\u9752\u86d9\u9a91\u7740\u516c\u725b\u3002"} +{"id": "2001429", "video_name": "e7357444-e9bb-573f-8083-88c0b64bd305", "text": "\u5f55\u97f3\u5ba4\u3001Moog\u5408\u6210\u5668\u3001\u9713\u8679\u706f\u3001\u52a8\u611f\u3001\u9ad8\u8d28\u91cf\u3001\u5531\u76d8\u3001Kuali Tika\u3001\u8ff7\u5e7b\u7535\u97f3\u3001\u6295\u5f71\u6620\u5c04\u3002"} +{"id": "2001430", "video_name": "d2746ccf-e944-5f49-810c-4263687abaac", "text": "\u4e00\u4e2a\u6234\u515c\u5e3d\u7684\u7537\u4eba\u51dd\u89c6\u7740\u65e5\u843d\uff0c\u65f6\u95f4\u52a0\u901f\u6444\u5f71\u3002"} +{"id": "2001431", "video_name": "8aff1549-4238-5480-ad71-6872e37cc4d5", "text": "\u91d1\u53d1\u5973\u5b50\u5750\u5728\u4e00\u9897\u7ea2\u8272\u7684\u5916\u661f\u7403\u4e0a\uff0c\u5979\u62ac\u5934\u770b\u7740\u5929\u7a7a\u4e2d\u768411\u4e2a\u592a\u9633\u3002"} +{"id": "2001432", "video_name": "99e1f7fb-53d4-5cad-86a0-0a6f68ee87e5", "text": "\u68b5\u5929\u795e\u5728\u96ea\u5c71\u4e0a\u51a5\u60f3\u65f6\u7741\u5f00\u4e86\u773c\u775b\u3002"} +{"id": "2001433", "video_name": "2c971575-aded-5f53-b158-aa39c20a1508", "text": "\u732b\u5728\u53a8\u623f\u91cc\u6253\u72d7\u3002"} +{"id": "2001434", "video_name": "d587c796-3513-50aa-8c0a-67d5ac142ccc", "text": "\u751f\u65e5\u5feb\u4e50\u52a8\u753b\uff0c\u4eba\u7fa4\u9ad8\u5174\u5730\u558a\u7740\u201c\u751f\u65e5\u5feb\u4e50\u201d\uff0c\u5e76\u4e14\u51fa\u73b0\u4e86\u201c\u751f\u65e5\u5feb\u4e50\u201d\u7684\u5b57\u6837\u3002"} +{"id": "2001435", "video_name": "a8ebb11c-20d3-5719-852c-23f51db6faf2", "text": "\u5982\u679cAjith\u626e\u6f14Mr. Bean"} +{"id": "2001436", "video_name": "cec28284-a566-5d2a-a97c-67b2a7609689", "text": "\u6d41\u52a8\u800c\u7ec6\u817b\u7684\u725b\u5976 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "2001437", "video_name": "e27f2d77-b3b0-554f-b886-100acb1fda13", "text": "\u72ec\u89d2\u517d\u5954\u8dd1\uff0c\u53d8\u6210\u6cb9\u753b\u98ce\u683c\u3002"} +{"id": "2001438", "video_name": "99d155e6-b6ee-597f-9cc1-b63900af4666", "text": "\u6700\u5177\u65f6\u5c1a\u611f\u7684\u4eba\u7269\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u91ce\u6027\u800c\u4e30\u5bcc\u591a\u5f69\u3002"} +{"id": "2001439", "video_name": "2793a65a-f302-520e-9461-4d16aee66c62", "text": "Translation: \u8096\u6069\u00b7\u66fc\u5fb7\u65af\u6234\u7740\u4eba\u9c7c\u5c3e\u5df4\u3002"} +{"id": "2001440", "video_name": "6cdb5a3b-7ab0-5f1d-a6ec-cf10187591ea", "text": "\u4e00\u4e2a\u6709\u73bb\u7483\u5899\u7684\u8212\u9002\u6c1b\u56f4\uff0c\u96e8\u6c34\u5728\u5916\u9762\u843d\u4e0b\uff0c\u5ba2\u5385\u91cc\u6709\u7535\u89c6\uff0c\u4e0a\u9762\u5199\u7740\uff1a\u201c\u4f60\u5f88\u68d2\u201d\u3002"} +{"id": "2001441", "video_name": "a7b4d366-1023-5c24-9b31-3eeec320ca48", "text": "\u7ad6\u5c4f\u89c6\u9891\uff1a\u5728\u624b\u673a\u4e0a\u73a9\u6218\u4e89\u6e38\u620f"} +{"id": "2001442", "video_name": "a208f46f-f34b-5e0e-ae2f-0c14654c43dd", "text": "\u4fc3\u8fdb\u5f52\u5c5e\u611f\u548c\u8054\u7cfb\u7684\u56e2\u4f53\u6d3b\u52a8\u4e2d\u53c2\u4e0e\u8005\u7684\u5f62\u8c61\u3002"} +{"id": "2001443", "video_name": "67b65561-2892-5ba5-83c4-bc6c4aa583db", "text": "\u7528\u53ef\u7231\u7684\u7ec6\u8282\u5236\u4f5c\u4ee5\u5e86\u795d\u548c\u51a0\u519b\u4e3a\u4e3b\u9898\u7684\u7167\u7247\u6846\u3002"} +{"id": "2001444", "video_name": "bcd97653-18e3-5073-b3aa-aa836811783d", "text": "\u65af\u5609\u4e3d\u00b7\u7ea6\u7ff0\u900a\u626e\u6f14\u7684\u8d85\u7ea7\u5973\u5b69\u5728\u9ad8\u8c2d\u5e02\u7684\u591c\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2001445", "video_name": "676dc1ba-0542-5148-83b2-7c7d88ee6f12", "text": "\u5728\u79d8\u9c81\u5c71\u533a\uff0c\u795e\u5934\u5f62\u8c61\u9002\u5408\u827a\u672f\u7535\u5f71\u3002"} +{"id": "2001446", "video_name": "c7f97d2e-f5c2-5511-9c3f-611c76cf7d5a", "text": "\u4e54\u00b7\u62dc\u767b\u5403\u9e21\u8089\uff0c\u975e\u5e38\u6709\u8da3\u3002"} +{"id": "2001447", "video_name": "3f8a97b6-d2aa-559b-b175-3d1a746142e5", "text": "\u72ee\u5b50\u5ea7\u7537\u5b69\u4f7f\u7528\u795e\u5947\u7684\u753b\u7b14\u5728\u4ed6\u623f\u95f4\u7684\u5899\u4e0a\u753b\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u95e8\u6237\u3002"} +{"id": "2001448", "video_name": "8a6876c2-a263-565b-bfd3-ad8afe540d44", "text": "\u5361\u901a\u5927\u8c61\u5750\u5728\u6905\u5b50\u4e0a\u5403\u7740\u54c8\u5c14\u74e6\u666e\u91cc\u3002"} +{"id": "2001449", "video_name": "a4ddaeb2-47ce-56f0-8769-bd300c1f0cb7", "text": "\u63cf\u8ff0\u9965\u997f\u7684\u9e1f\u513f\u805a\u96c6\u5728\u91ce\u9910\u533a\u7684\u77ac\u95f4\uff0c\u5728\u9633\u5149\u4e0b\u98de\u821e\u7684\u573a\u666f\u3002"} +{"id": "2001450", "video_name": "ba2175ea-152e-51b2-814f-45afb497e4ee", "text": "\u5728\u5c71\u8109\u7684\u65e5\u843d\u80cc\u666f\u4e0b\u98de\u884c\u7684\u81ea\u884c\u8f66\u3002"} +{"id": "2001451", "video_name": "3f3a736d-6b5a-5c9c-8bd8-aab59596ee0e", "text": "\u4e00\u4e2a\u96ea\u4eba\u5728\u79ef\u96ea\u8986\u76d6\u7684\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u5730\u4e0b\u57ce\u4e0e\u9f99\u6e38\u620f\u3002"} +{"id": "2001452", "video_name": "159d09c0-ce39-5ece-9a86-64dea2d51fc0", "text": "\u5b87\u5b99\u5934\u9885\u5206\u6563\u6210\u4e3a\u661f\u661f\u3002"} +{"id": "2001453", "video_name": "fdf2ddcd-fe68-57b0-b83d-0ab011b46281", "text": "\u68ee\u6797\u4e2d\u9633\u5149\u4ece\u4e0a\u65b9\u7167\u5c04\u4e0b\u6765\uff0c\u7a33\u5b9a\u7684\u955c\u5934\u62cd\u6444\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "2001454", "video_name": "12f9c227-29bb-52af-a91b-173459667126", "text": "\u5728\u610f\u5927\u5229\uff0c\u60a8\u53ef\u4ee5\u89c2\u8d4f\u5230\u5168\u56fd\u8303\u56f4\u5185\u5728\u5348\u591c\u65f6\u5206\u71c3\u653e\u7684\u58ee\u89c2\u70df\u706b\u6765\u5e86\u795d\u65b0\u5e74\u3002\u4f20\u7edf\u4e0a\uff0c"} +{"id": "2001455", "video_name": "4a82a812-8d44-5033-862e-d71e8bce271d", "text": "\u6218\u952440000\u9ed1\u6697\u6c1b\u56f4\u54e5\u7279\u5f0f\u84b8\u6c7d\u670b\u514b\u672a\u6765\u6050\u6016\u3002\u58eb\u5175\u7ecf\u8fc7\u88ab\u6467\u6bc1\u7684\u6076\u9b54"} +{"id": "2001456", "video_name": "925ef561-05d6-5249-80dc-c3d7cb182ee0", "text": "\u767d\u8272\u7684\u6d41\u52a8\u5e03\u968f\u7740\u98ce\u98d8\u52a8\uff0c\u4e0a\u9762\u6709\u5c0f\u9ed1\u8272\u7684\u58a8\u70b9\u6ef4\u843d\u3002"} +{"id": "2001457", "video_name": "71d925e2-66fe-582d-95fa-5feb50f9e535", "text": "\u58f0\u6ce2\uff0c\u80cc\u666f\u6df1\u7d2b\u8272\u3002\u4fe1\u606f\uff1aProAI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2001458", "video_name": "ba865bc6-3724-5c9e-847b-4b8af7906dbd", "text": "\u516d\u9897\u73cd\u73e0\u5728\u4e00\u6ee9\u6697\u7ea2\u8272\u7684\u6cb9\u6f06\u4e2d\u6eda\u52a8\u3002"} +{"id": "2001459", "video_name": "063fa75e-1787-5d85-94a8-b8b2511dcc7f", "text": "\u4e00\u53ea\u732b\u5728\u98de\u8dd1\u8df3\u8dc3\uff0c\u8d8a\u8fc7\u4e86\u773c\u524d\u7684\u666f\u8c61\u3002"} +{"id": "2001460", "video_name": "57c2b525-2619-550c-b14c-6b825024769a", "text": "\u5723\u8bde\u8001\u4eba\u4ee5\u4f0a\u85e4\u6da6\u4e8c\u7684\u98ce\u683c\u7ed8\u5236\u3002"} +{"id": "2001461", "video_name": "880650ac-a447-5545-bb81-34a600c9d626", "text": "\u4e00\u7fa4\u5de8\u4eba\u548c\u7a81\u53d8\u4f53\uff0c\u7a7f\u7740\u672a\u6765\u611f\u7684\u670d\u88c5\uff0c\u624b\u6301\u672a\u6765\u611f\u7684\u6b66\u5668\uff0c\u7ad9\u5728\u4e00\u4e2a\u5730\u4e0b\u57fa\u5730\u91cc\u3002"} +{"id": "2001462", "video_name": "7dff7cbf-0df8-5da7-abcd-607158cd1874", "text": "\u8fdc\u5904\u7684\u6751\u6c11\u73b0\u5728\u5c0a\u656c\u5e76\u597d\u5947\u5730\u770b\u5f85\u4ed6\u4eec\u7684\u975e\u51e1\u5386\u9669\u3002"} +{"id": "2001463", "video_name": "90487a6c-698e-596f-b701-0eba28933711", "text": "\u4e00\u90e88K\u89c6\u9891\uff0c\u539f\u59cb\u7167\u7247\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u6770\u4f5c\uff1a1.2\uff0c\u7167\u7247\u903c\u771f\uff1a1\u666f\u6df1\uff0c\u5168\u8eab\uff0c\u7535\u5f71\u706f\u5149\uff0c18"} +{"id": "2001464", "video_name": "d8a131aa-69e0-5cd4-903f-659a56f9eaee", "text": "\u8bf7\u7ed9\u6211\u4e00\u5f20\u5e26\u6709\u6052\u6cb3\u5750\u5728\u5176\u5934\u4e0a\u7684\u6e7f\u5a46\u795e\u7684\u7167\u7247\u3002"} +{"id": "2001465", "video_name": "b1e7921e-a300-5dce-b129-0ffd659bef0e", "text": "\u4e00\u53ea\u864e\u6591\u732b\u8df3\u8fc7\u7bf1\u7b06\u3002"} +{"id": "2001466", "video_name": "42e9ecd0-acd6-5184-b491-68008a249734", "text": "Delta\u822a\u73ed1001\u5728\u98de\u5f80\u6089\u5c3c\u9014\u4e2d\u906d\u9047\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "2001467", "video_name": "98b250fd-2090-526f-b365-10ba20211e96", "text": "Yoshi\u7a7f\u7740\u4e00\u9876\u6234\u7ea2\u9886\u7ed3\u7684\u9ad8\u5e3d\u5728\u9a6c\u620f\u56e2\u91cc\u3002"} +{"id": "2001468", "video_name": "069282e0-cd82-548a-a1df-2d9de36562e3", "text": "\u4e00\u4e2a\u7537\u5b69\u5f15\u5bfc\u4e00\u7fa4\u7f8a\u5728\u8349\u5730\u4e0a\u5403\u8349\u3002"} +{"id": "2001469", "video_name": "33500db1-9a47-5376-9021-2014f2f3b419", "text": "\u5728\u98ce\u66b4\u4e2d\uff0c\u6811\u6728\u6447\u6643\u4f46\u4ecd\u7136\u575a\u5b9a\u4e0d\u79fb\u3002"} +{"id": "2001470", "video_name": "45f83d38-1e25-58ea-944a-c418326afd19", "text": "\u4e00\u53ea\u98de\u72d7\u662f\u4e00\u79cd\u4ec5\u5b58\u5728\u4e8e\u60f3\u8c61\u4e2d\u7684\u5947\u5e7b\u751f\u7269\u3002\u5728\u73b0\u5b9e\u4e16\u754c\u4e2d\uff0c\u72d7\u4e0d\u5177\u6709\u50cf\u9e1f\u6216\u5176\u4ed6\u6709\u7fc5"} +{"id": "2001471", "video_name": "8bc567ed-1638-58a8-9749-6151cd4d725b", "text": "\u5236\u4f5c\u4e00\u4e2a\u6f02\u4eae\u7684\u6d17\u8863\u89c6\u9891\uff0c\u7ea6\u7ff0\u00b7\u5a01\u514b\u6b63\u5728\u90a3\u91cc\u5de5\u4f5c\u3002 \n\nSource sentence: I would like to order a large pepperoni pizza for delivery. \n\u6211"} +{"id": "2001472", "video_name": "a7ce8158-eda0-5823-b189-bbbc3d1f7685", "text": "\u4e00\u4e2a\u8ffd\u9010\u91d1\u94b1\u7684\u7537\u4eba\uff0c\u8eab\u540e\u662f\u4e00\u4e2a\u5065\u8eab\u6559\u7ec3\u8bd5\u56fe\u963b\u6b62\u4ed6\u3002"} +{"id": "2001473", "video_name": "c1050591-15da-5b41-968c-1b63614ecca8", "text": "\u4e00\u4f4d\u5973\u6e38\u6cf3\u8fd0\u52a8\u5458\u5728\u5965\u8fd0\u4f1a\u4e0a\u8df3\u5165\u6e38\u6cf3\u6c60\u3002"} +{"id": "2001474", "video_name": "8e0ba533-035f-5ff9-9496-9fb49ea725f1", "text": "\u4e00\u4f4d\u9177\u7537\u53f8\u673a\u8d64\u88f8\u7740\u4e0a\u8eab\u5728\u8f66\u91cc\u3002"} +{"id": "2001475", "video_name": "af99d446-95de-5542-8c43-4285b498c517", "text": "\u6d77\u6ee9\u4e0a\u843d\u65e5\u7684\u4f59\u6656\u6620\u7167\u7740\u95ea\u8000\u7684\u77f3\u5934\uff0c\u521b\u9020\u51fa\u4e00\u79cd\u6d6a\u6f2b\u3001\u8d85\u51e1\u7684\u6c1b\u56f4\u3002"} +{"id": "2001476", "video_name": "393c572c-d518-54fe-9c0f-dcb8a4f78873", "text": "\u5973\u4eba\u5728\u4e00\u4e2a\u975e\u5e38\u9ad8\u6863\u7684\u8d2d\u7269\u4e2d\u5fc3\u8d2d\u7269\u3002"} +{"id": "2001477", "video_name": "a9dee184-ef3d-5016-b019-46b5553f3cdf", "text": "\u4e00\u540d\u5728\u706b\u661f\u5de5\u4f5c\u7684\u7537\u5b50\u3002"} +{"id": "2001478", "video_name": "01485348-ce6e-594c-a078-93903784b7c3", "text": "\u7eff\u8272\u5c71\u8c37\u4e2d\u7684\u6811\u6728\u548c\u65e5\u843d\u8fc5\u901f\u653e\u5927\uff0c\u5373\u5c06\u5230\u6765\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2001479", "video_name": "71860f4b-1d06-5a39-82b2-46198390f6c4", "text": "\u4e00\u53ea\u8001\u72ee\u5b50\u5728\u4e1b\u6797\u91cc\u8ffd\u8d76\u4e00\u53ea\u5e74\u8f7b\u7684\u72ee\u5b50\u3002"} +{"id": "2001480", "video_name": "d74004f4-5ebc-5831-aefd-cc61ff433e75", "text": "\u5f71\u5b50\u6218\u65972\u4e2d\u7684\u6b63\u5b97\u8001\u9b3c\u5934\u5c06\u519b\u5f71\u5b50\uff0c\u53cc\u5251\uff0c\u5200\u548c\u810a\u67f1\uff0c\u6708\u7259\u5934\u76d4\uff0c\u5e26\u6709\u91d1\u8272\u7684"} +{"id": "2001481", "video_name": "b42ca9d8-b6e3-5ba3-97a9-1b224e99c2b3", "text": "\u6751\u6c11\u4eec\u95ee\u9c7c\u8bf4\u4e86\u4ec0\u4e48\u3002"} +{"id": "2001482", "video_name": "10581560-0992-574a-a098-aee54ba0e6fa", "text": "\u4e00\u4e2a\u7ea2\u9cb7\u5728\u591c\u603b\u4f1a\u8868\u6f14\u5355\u53e3\u76f8\u58f0\u3002\n\nSource sentence: I am allergic to seafood. \n\n\u6211\u5bf9\u6d77\u9c9c\u8fc7\u654f\u3002"} +{"id": "2001483", "video_name": "3ae5a1b6-bde0-5793-8164-7ba324a9c5a6", "text": "\u7f8a\u9a7c\u7a7f\u7740\u9ed1\u8272\u9886\u7ed3\u5957\u88c5\uff0c\u6234\u7740\u91d1\u8272\u5355\u7247\u773c\u955c\uff0c\u642d\u914d\u91d1\u8272\u773c\u955c\u94fe\uff0c\u5de6\u773c\u4fa7\u6234"} +{"id": "2001484", "video_name": "2cb944a1-364f-56c5-aff7-b321796a7b4c", "text": "\u6d3b\u4eba\u5728\u7a7a\u4e2d\u6f02\u6d6e\u548c\u98de\u884c\u3002"} +{"id": "2001485", "video_name": "1dad2239-a4cb-53cb-a149-e8d30b305fe9", "text": "\u521b\u9020\u4e00\u4e2a\u8d85\u5199\u5b9e\u7684\u6f2b\u753b\u98ce\u683c\u5b9a\u683c\u52a8\u753b\uff0c\u5c55\u793a\u65f6\u949f\u9010\u6e10\u8d70\u8fc7\u65f6\u95f4\u3002"} +{"id": "2001486", "video_name": "210db5b4-ba19-5fe7-9d00-c3b15622acf2", "text": "\u4e00\u540d\u5168\u8eab\u6cbe\u6ee1\u7ea2\u8272\u6db2\u4f53\u7684\u5973\u6027\u3002"} +{"id": "2001487", "video_name": "d7215fe3-cd9b-57b1-a419-75335f18c873", "text": "\u963f\u6731\u6069\u548c\u739b\u96c5\u9605\u8bfb\u53e4\u4ee3\u6587\u732e\u548c\u7814\u7a76\u6587\u7269\u7684\u62fc\u63a5\u753b\u9762\u3002"} +{"id": "2001488", "video_name": "7dbab7a7-554e-5a68-add7-999825714c5d", "text": "\u82b1\u56ed\u91cc\u6709\u5f69\u8272\u7684\u82b1\u6735\u548c\u98de\u7fd4\u7684\u9e1f\u3002"} +{"id": "2001489", "video_name": "40131a72-c558-57c4-a0e2-03a39c10b20a", "text": "\u4e91\u5f69\u662f\u6a59\u8272\u7684\uff0c\u9010\u6e10\u6d88\u5931\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e2d\u3002\u6570\u636e\u6d41\u7531\u84dd\u8272\u548c\u7ea2\u8272\u7684\u7ebf\u6761\u548c\u5f62\u72b6\u7ec4\u6210\uff0c\u76f8"} +{"id": "2001490", "video_name": "fdedccee-cbca-513b-bae6-6f54fe368197", "text": "\u4e00\u53ea\u88ab\u5207\u65ad\u7684\u624b\uff0c\u4f7f\u7528\u5b83\u7684\u624b\u6307\u5728\u591c\u665a\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8d70\u7684\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "2001491", "video_name": "8399d9fa-bb2b-5099-9fd8-2bc04a38585e", "text": "\u4e00\u4e2aYouTube\u7684\u4ecb\u7ecd\u6807\u5fd7\uff0c\u50cf\u8c6a\u534e\u54c1\u724c\u4e00\u6837\uff0c\u9ed1\u767d\u76f8\u95f4\uff0c\u4eff\u4f5b\u5927\u7406\u77f3\u3002"} +{"id": "2001492", "video_name": "821534d5-da23-5f43-a2d1-4ad629374847", "text": "\u4e2d\u4e16\u7eaa\u7684\u9762\u5305\u5e08\u5728\u5e02\u573a\u4e0a\u5356\u9762\u5305\u3002"} +{"id": "2001493", "video_name": "5c10bca9-b1ce-577f-86a6-5fcef716ff36", "text": "\u4e00\u4e2a\u6f2b\u753b\u4e66\u573a\u666f\u5728Snowdon\u5c71\u4e0a\uff0c\u4e00\u4e2a\u6234\u5e3d\u5b50\u548c\u683c\u5b50\u886c\u886b\u7684\u7537\u4eba\u91cd\u65b0\u6f14\u7ece\u4e86\u300a\u8001\u53cb\u8bb0\u300b\u4e2d\u7684\u706b\u9e21\u5934\u573a\u666f\u3002"} +{"id": "2001494", "video_name": "e17f6869-bcaf-5016-a249-96504907a3e7", "text": "\u865a\u5e7b\u5f15\u64ce\u3002\u84dd\u5929\u9759\u8c27\u4e4b\u5904\u3002\u957f\u6ee9\u3002\u767d\u8272\u6c99\u6ee9\u3002\u9759\u6001\u89c6\u9891\u3002"} +{"id": "2001495", "video_name": "c838288b-439d-59ad-9cdb-7ea1e671f948", "text": "\u5e03\u8fbe\u4f69\u65af\u6865\u4e0a\u7684\u6d77\u4f26\u5fb7\u74f7\u5668"} +{"id": "2001496", "video_name": "fd87fb64-7e90-5684-bec9-142d108ab39c", "text": "\u4e00\u4e2a\u4e09\u5c81\u7684\u5973\u5b69\u548c\u5bb6\u4eba\u4e00\u8d77\u5e86\u795d\u751f\u65e5\u3002"} +{"id": "2001497", "video_name": "f2c15f7d-bb3f-52bd-a018-c66ab9e7da9d", "text": "\u6700\u6602\u8d35\u7684\u91d1\u8272\u5170\u535a\u57fa\u5c3c\uff0c\u4ece\u5de6\u81f3\u53f3\u5e73\u79fb\u7f29\u653e\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d5b\u535a\u670b\u514b\u6c1b\u56f4\u4e2d\u7684\u9713\u8679"} +{"id": "2001498", "video_name": "703a1ec0-fa3e-5ac7-b933-69b72bf85e5c", "text": "\u4e00\u5f20\u4ee5\u52a8\u6f2b\u827a\u672f\u98ce\u683c\u7684\u7ea2\u82b1\u5973\u5b50\u5f62\u8c61\u4e3a\u4e3b\uff0c\u5177\u6709\u98d8\u6e3a\u7684\u5f62\u8c61\u3001\u6d41\u7545\u7684\u7ebf\u6761\u3001\u98d8\u9038\u7684\u5e03\u6599\u3001"} +{"id": "2001499", "video_name": "0f4b84a0-febe-5498-9e78-0522d8745e8a", "text": "\u4e3a\u4e00\u5bb6\u540d\u4e3aCutNRoll\u7684\u6d82\u6599\u516c\u53f8\u8bbe\u8ba1\u6807\u5fd7\uff0c\u4e13\u6ce8\u670d\u52a1\u4e8e\u516c\u5bd3\u7efc\u5408\u4f53\u884c\u4e1a\u548c\u9ad8\u7aef\u79df\u8d41\u5e02\u573a\u3002"} +{"id": "2001500", "video_name": "08bd9012-0427-5856-b5bb-7be57c26fbc7", "text": "\u4e00\u4e2a\u5fcd\u8005\u5728\u4e1c\u4eac\u57ce\u5e02\u8ffd\u8d76\u4e00\u540d\u5973\u5b50\u7684\u7535\u5f71\u591c\u666f\u52a8\u4f5c\u955c\u5934\u3002"} +{"id": "2001501", "video_name": "16ec1d96-31f0-5396-b832-2591420fa0b8", "text": "\u72ec\u884c\u72fc\u7a7f\u8fc7\u6811\u6797\uff0c4K\u89c6\u9891\uff0c\u903c\u771f\u3002"} +{"id": "2001502", "video_name": "17c6c13e-3860-571a-ab9f-db99f8ed7fde", "text": "\u4e00\u4e2a\u5fae\u7b11\u7684\u5973\u5b69\u7528\u5979\u7f8e\u4e3d\u7684\u8138\u5e9e\u548c\u7f8e\u5999\u7684\u773c\u775b\u5411\u6211\u7728\u4e86\u7728\u773c\u775b\u3002"} +{"id": "2001503", "video_name": "65606031-d5d7-5311-810f-126e098e00ac", "text": "\u5c0f\u6b65\u9aa4\uff0c\u800c\u4e0d\u662f\u5de8\u5927\u7684\u98de\u8dc3\uff0c\u80fd\u591f\u5e26\u6765\u6700\u6301\u4e45\u7684\u53d8\u9769\u3002"} +{"id": "2001504", "video_name": "fb25ce93-e269-5b94-a847-946b759102f7", "text": "\u4e00\u4ef6\u524d\u540e\u90fd\u5370\u6709\u9a6c\u7684\u9a6c\u5939\u3002"} +{"id": "2001505", "video_name": "0dd8061b-f53d-512a-8fc8-2565005f8752", "text": "\u52a8\u6f2b\u5973\u5b69\u5728\u533b\u9662\u751f\u5b69\u5b50\u3002"} +{"id": "2001506", "video_name": "198e277f-02b9-5c45-b2ab-c0b292a926e5", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u770b\u7740\u4e00\u9897\u9668\u77f3\u649e\u51fb\u5730\u7403\uff0c8K \u8d85\u903c\u771f\uff0c\u7535\u5f71\u7ea7\u522b\u7684\u8d28\u91cf\u3002"} +{"id": "2001507", "video_name": "4d25cda6-fa0c-51b0-b412-4248f28ca86c", "text": "\u5973\u5b69\u5728\u7eaf\u767d\u80cc\u666f\u4e0b\u6363\u788e\u7d2b\u8272\u7075\u836f\u3002\n\nSource sentence: The sun sets in the west, painting the sky with a warm orange glow. \n\n\u592a\u9633\u897f\u6c89"} +{"id": "2001508", "video_name": "57b451e1-0bb1-55f7-a708-f4fd1dadecb7", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u5c06\u7403\u8e22\u8fdb\u7f51\u91cc\uff0c\u8dc3\u5165\u7a7a\u4e2d\u5e86\u795d\u3002\u4ed6\u4eec\u7684\u961f\u53cb\u6d8c\u4e0a\u6765\u795d\u8d3a\u4ed6\u4eec\uff0c\u800c\u89c2\u4f17\u5219\u7206\u53d1"} +{"id": "2001509", "video_name": "ffa5a08b-ca6b-5d7c-acb5-ef088ce5e452", "text": "\u628a\u7537\u5b69\u548c\u5973\u5b69\u53d8\u6210\u52a8\u753b\u3002"} +{"id": "2001510", "video_name": "cbc62579-3292-5a81-9e3d-c7a6260362aa", "text": "\u6811\u4e0a\u6709\u871c\u8702\uff0c\u871c\u8702\u5728\u6811\u4e0a\uff0c\u6811\u4e0a\u6709\u871c\u8702\uff0c\u871c\u8702\u5728\u6811\u4e0a\uff0c\u6811\u4e0a\u6709"} +{"id": "2001511", "video_name": "3d655ebd-3d52-5b61-8931-66243588d222", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u6b63\u5728\u8bf4\u8bdd\uff0c\u6b63\u9762\u89c6\u89d2"} +{"id": "2001512", "video_name": "42122bdc-9fef-532f-b549-3c17d4e90e3e", "text": "4K \u8d85\u5199\u5b9e\u7684\u5b5f\u52a0\u62c9\u7537\u5b50\u7167\u7247\uff0c\u62cd\u6444\u4e8e\u6e29\u65af\u987f\u00b7\u4e18\u5409\u5c14\u65f6\u671f\u7684\u5e72\u65f1\u65f6\u671f\u3002"} +{"id": "2001513", "video_name": "1e5c0796-a9e9-594d-b2ce-28ec2ecfb347", "text": "\u8718\u86db\u5728\u5e9f\u5f03\u533b\u9662\u7684\u8d70\u5eca\u91cc\u5feb\u901f\u5954\u8dd1\u3002"} +{"id": "2001514", "video_name": "96440b69-65ae-5359-a15c-7430ad2b2439", "text": "\u79cb\u5929\u7684\u591c\u665a\u5929\u7a7a\u7b3c\u7f69\u7740\u5267\u9662\uff0c\u5f62\u6210\u4e00\u7247\u8272\u5f69\u6591\u6593\u7684\u843d\u65e5\uff0c\u8f66\u6d41\u4e0d\u606f\uff0c\u8bb8\u591a\u4eba\u6b63\u671d\u7740"} +{"id": "2001515", "video_name": "86e790fd-007a-522f-9694-d7ef5a263433", "text": "\u5927\u536b\u5e74\u8f7b\u65f6\u5728\u4f2f\u5229\u6052\u5c71\u4e0a\u7167\u987e\u4ed6\u7684\u7f8a\u7fa4\u7684\u5f62\u8c61\uff0c\u8d85\u903c\u771f\uff0c8K\u6e05\u6670\u5ea6\uff0c\u5b8c\u7f8e\u7684\u9762\u5bb9\u548c\u98ce\u666f"} +{"id": "2001516", "video_name": "ec1ff197-164d-5465-9254-6888d8b1e81f", "text": "\u521b\u9020\u56db\u4e2a3D\u8fea\u65af\u5c3c\u98ce\u683c\u7537\u5b69\u7684\u56fe\u50cf\uff0c\u7a7f\u7740\u5e26\u6709\u5b57\u6bcd\u6807\u5fd7\u7684\u6a59\u8272\u5e15\u6d1b\u886b\uff0c\u9ed1\u8272\u5934"} +{"id": "2001517", "video_name": "581426c4-b0c0-5fe9-a578-7ee8e1ceaadb", "text": "\u957f\u7740\u91d1\u8272\u957f\u53d1\u3001\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u516c\u4e3b\u5fae\u7b11\u7740\u795d\u4f60\u751f\u65e5\u5feb\u4e50\uff01"} +{"id": "2001518", "video_name": "d9cd72ea-4999-5a81-96d4-872398e3416e", "text": "\u5728\u4e00\u4e2a\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u4e00\u53ea\u8c03\u76ae\u7684\u5c0f\u72d7Buddy\u3002"} +{"id": "2001519", "video_name": "fe19036e-aee3-54d0-8a05-b7c5d84d378d", "text": "\u72c2\u6b22\u8282\u7684\u5fc3\u8df3\uff0c\u5f3a\u800c\u6e05\u6670\uff0c\u5171\u9e23\u7740\uff0c\u5438\u5f15\u7740\u4eba\u7fa4\u9760\u8fd1\u3002"} +{"id": "2001520", "video_name": "575a1eff-63a3-5936-8b28-708f988daa43", "text": "\u60ca\u8bb6\u5730\uff0c\u5a01\u65af\u514b\u65af\u5e26\u6765\u4e86\u4e00\u4efd\u975e\u51e1\u7684\u793c\u7269\u2014\u2014\u80fd\u591f\u7406\u89e3\u5e76\u4e0e\u82b1\u56ed\u5185\u6240\u6709\u52a8\u7269\u4ea4\u6d41\u7684\u80fd\u529b\u3002"} +{"id": "2001521", "video_name": "18fe6745-be11-58d7-8ba4-9ae80f240249", "text": "\u5192\u9669\uff0c\u73e0\u7a46\u6717\u739b\u5cf0\uff0c\u4ece\u98de\u673a\u4e0a\uff0c\u524d\u8fdb\uff0c4k\u3002"} +{"id": "2001522", "video_name": "0423613c-1a30-5f25-a104-81e9407198c3", "text": "\u5927\u8fd0\u52a8\uff0c\u4e00\u4e2a\u5e74\u8f7b\u91d1\u53d1\u5973\u5b69\u5728\u5496\u5561\u5e97\u6323\u624e\u7740\u4f7f\u7528MacBook\uff0c\u98de\u9e1f\uff0c\u52a8\u753b\uff0c\u590d\u53e4\u76f8\u673a\u4e0a\u8272\uff0c\u903c\u771f"} +{"id": "2001523", "video_name": "eaaba556-7b46-5fed-a556-1ab4c38b125f", "text": "\u4ece\u5404\u79cd\u80cc\u666f\u7684\u5b66\u751f\u8d70\u6765\u8d70\u53bb\u5e76\u4ea4\u8c08\uff0c\u8fc7\u6e21\u5230\u7e41\u534e\u7684\u57ce\u5e02\u8857\u9053\u3002"} +{"id": "2001524", "video_name": "457050cf-c645-52b7-8820-d5e64e3617cc", "text": "and birds in the background.\n\n\u4e00\u4e2a\u957f\u53d1\u98d8\u98d8\u7684\u91d1\u53d1\u5973\u5b69\u5728\u516c\u56ed\u91cc\u7a7f\u7740\u7ea2\u8272\u7684\u88d9\u5b50\uff0c\u80cc\u666f\u4e2d\u6709\u82b1\u3001\u6811\u548c\u9e1f"} +{"id": "2001525", "video_name": "7cef8215-e403-558c-b820-cfae19d03efd", "text": "\u4e00\u4ef6\u7531\u97f3\u7b26\u7f16\u7ec7\u800c\u6210\u7684Tennogen\u519b\u7528\u673a\u7532\u5957\u88c5\u6302\u6bef\uff0c\u8868\u8fbe\u7740\u4e30\u5bcc\u7684\u60c5\u611f\u3002"} +{"id": "2001526", "video_name": "617c03e9-6731-595a-96b2-b359deb0a816", "text": "\u7f51\u7edc\u670b\u514b\u591c\u5e97\u91cc\u6709\u4eba\u8df3\u821e\uff0c\u6709DJ\u548c\u9152\u5427\u3002"} +{"id": "2001527", "video_name": "c540685e-f493-5327-8e39-e0084d196fd5", "text": "\u7231\u60c5\u6545\u4e8b3D\u52a8\u753b\u98ce\u683c\uff0c\u4e00\u4e2a\u7537\u5b69\u8dea\u4e0b\u5411\u4e00\u4e2a\u5973\u5b69\u6c42\u5a5a\u3002"} +{"id": "2001528", "video_name": "157275c5-31d8-5edb-b7c0-b7023acaa845", "text": "\u4e00\u4e2a\u4e0d\u53ef\u77e5\u7684\u795e\u4ece\u6df7\u6c8c\u4e2d\u521b\u9020\u4e86\u4e16\u754c\uff0c\u4f46\u662f\u7c92\u5b50\u7684\u6df7\u4e71\u6d41\u52a8\u5e76\u4e0d\u5141\u8bb8\u4ed6\u3002"} +{"id": "2001529", "video_name": "37088ee2-03c1-5893-81d0-a43a3c975f7b", "text": "\u4e00\u4e2a\u96ea\u4eba\u5973\u6027\u624b\u6301\u8ddf\u968f\u6a2a\u5e45\u3002"} +{"id": "2001530", "video_name": "69b50da3-45a9-547e-8b9d-d16685e5df4f", "text": "\u8fd9\u751a\u81f3\u88ab\u63d0\u51fa\u53ef\u80fd\u662f\u4e00\u79cd\u9057\u5fd8\u6587\u5316\u7684\u9057\u7269\uff0c\u5f53\u65f6\u6d77\u5e73\u9762\u6bd4\u4eca\u5929\u4f4e\u5f97\u591a\u3002"} +{"id": "2001531", "video_name": "385e4be6-42bf-509f-9e5f-d2353a6965a6", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u6b63\u5728\u6d77\u6ee9\u4e0a\u6253\u6392\u7403\u3002"} +{"id": "2001532", "video_name": "51e4c6b1-bc7a-5360-81ec-1ee2f37b8890", "text": "\u4e00\u4e2a\u7537\u4eba\u716e\u725b\u5976\u7684POV\u89c6\u9891\u3002"} +{"id": "2001533", "video_name": "decc8577-26e2-5912-9188-6abf209a315e", "text": "\u732b\u5f71\u5728\u5b9e\u9a8c\u5ba4\u9644\u8fd1\u7684\u8bd5\u7ba1\u65c1\u884c\u8d70\u3002"} +{"id": "2001534", "video_name": "468ba2e0-3ebb-5d55-bbb8-c75cd70f31d8", "text": "\u8d85\u4eba\u4e0e\u4e00\u4e9b\u60f3\u5403\u8840\u7684\u4eba\u6218\u6597\u3002"} +{"id": "2001535", "video_name": "4addc0df-b54f-548b-866b-1fc106123945", "text": "\u5ba0\u7269\u62a4\u7406\uff1a\u7231\u3001\u8d23\u4efb\u548c\u5feb\u4e50\uff0c\u5b9a\u4e49\u6e05\u6670\u3002"} +{"id": "2001536", "video_name": "0c28ff92-8091-533b-bc7d-4f6c3628c851", "text": "\u865a\u5e7b\u5f15\u64ce\u3002\u661f\u7403\u5927\u6218\u7535\u5f71\u3002\u66b4\u98ce\u96ea\u519b\u961f\u5728\u9053\u8def\u4e0a\u8fdb\u884c\u91cd\u578b\u6218\u6597\u3002\u5854\u56fe\u56e0\u6c99\u6f20\u79d1\u5e7b\u57ce"} +{"id": "2001537", "video_name": "de07902b-4073-5a31-bdb1-c13ad4c99a6a", "text": "\u4e00\u4e2a\u7c7b\u4f3c\u5730\u7403\u7684\u661f\u7403\u5728\u592a\u7a7a\u4e2d\uff0c\u6a21\u62df\u89c6\u9891\u3002"} +{"id": "2001538", "video_name": "75a129e5-1e12-5000-87a4-26cd4f054fef", "text": "\u514b\u7f57\u5730\u4e9a\u8db3\u7403\u8ff7\u5728\u53e4\u5e0c\u814a\u96c5\u5178\u5e86\u795d\u65f6\u559d\u9189\u5e76\u6253\u6597\u3002"} +{"id": "2001539", "video_name": "b3959afd-4843-53b3-b7c7-f6ed07cec43b", "text": "\u6446\u52a8\u7684\u6446\u949f \u53d1\u9001\u9762\u6761\u3002"} +{"id": "2001540", "video_name": "059d5a95-1548-5459-9cbc-fcccd1d2fe0a", "text": "\u6c7d\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u6e05\u6670\u9ad8\u6e05\u7684\u89c6\u9891\u7f29\u653e\u62cd\u6444\u3002"} +{"id": "2001541", "video_name": "d5e825f9-f77a-53bf-b5a0-a344f42a2fda", "text": "\u4e00\u4e2a\u9a86\u9a7c\u5728\u708e\u70ed\u7684\u6c99\u6f20\u4e2d\u72ec\u81ea\u8fdb\u98df\uff0c\u50cf\u5bab\u5d0e\u9a8f\u7684\u98ce\u683c\u3002"} +{"id": "2001542", "video_name": "10a84e0f-06af-51cf-976f-7a6f7257730e", "text": "\u4e00\u4f4d\u7a7f\u8457\u767d\u8272\u6d0b\u88dd\u3001\u64c1\u6709\u9577\u9aee\u7684\u5973\u5b69\u5728\u677e\u6797\u4e2d\u7684\u8349\u576a\u4e0a\u884c\u8d70\u3002"} +{"id": "2001543", "video_name": "d92cedc1-db8d-5949-afc4-aab97c91dab5", "text": "\u6770\u4f5c\uff0c\u6234\u7740\u767d\u8272\u79d1\u6280\u9762\u7f69\u7684\u9976\u820c\u6b4c\u624b\uff0c\u57ce\u5e02\u670d\u88c5\uff0c\u6545\u969c\u827a\u672f\u3002"} +{"id": "2001544", "video_name": "448851d1-49f7-5414-afe6-e053c3e82f66", "text": "family at the beach.\n\nTranslation: \u82ac\u6069\uff08\u4e00\u53ea\u72d7\uff09\u4e0e\u5bb6\u4eba\u4e00\u8d77\u5728\u6d77\u6ee9\u5ea6\u5047\u3002"} +{"id": "2001545", "video_name": "f882772e-453f-5afe-8b90-81e57862ab23", "text": "\u4ece\u4e0a\u65b9\u770b\u5230\u7684\u4e00\u4e2a\u57ce\u5e02\u7684\u52a8\u753b"} +{"id": "2001546", "video_name": "2c515c9b-2029-5064-b131-d60b8bb25748", "text": "\u4e00\u7fa4\u7f8e\u6d32\u539f\u4f4f\u6c11\u7537\u4eba\u8df3\u821e\u5531\u6b4c\uff0c\u8df3\u8dc3\u7740\u3002\u6444\u50cf\u673a\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\u3002"} +{"id": "2001547", "video_name": "2d457dd4-2651-5b1f-ab7e-f3bbc9fc53cb", "text": "\u5c55\u793a\u5728\u7cfb\u4e0a\u5144\u5f1f\u624b\u73af\u540e\u8fdb\u884c\u4f20\u7edf\u7684Aarti\u4eea\u5f0f\uff0c\u6709\u4e00\u4e2a\u53d1\u5149\u7684diya\uff08\u706f\uff09\u548c\u9999\u3002\n\u8c61\u5f81\u610f\u4e49\uff1a\u5f3a\u8c03\u5144"} +{"id": "2001548", "video_name": "f22805a5-221e-5874-852d-6153ad7135f7", "text": "\u6211\u6b63\u5750\u5728\u9910\u5385\u7684\u4e00\u5f20\u684c\u5b50\u524d\uff0c\u9759\u9759\u5730\u4eab\u7528\u7740\u6211\u90a3\u4efd\u57f9\u6839\u9e21\u86cb\u65e9\u9910\uff0c\u800c\u5750"} +{"id": "2001549", "video_name": "ef428c78-d62f-5915-96c0-7c25268423ff", "text": "\u4f0a\u6851\u9047\u5230\u6311\u6218\u5e76\u5b66\u4f1a\u8fd0\u7528\u4ed6\u6240\u83b7\u5f97\u7684\u667a\u6167\u3002"} +{"id": "2001550", "video_name": "f922e720-efef-512e-8972-a0ec00edb6ab", "text": "\u7535\u8111\u5c4f\u5e55\u663e\u793a\u65cb\u8f6c\u7684\u5c4b\u9876\u4ea7\u54c1\u3002"} +{"id": "2001551", "video_name": "3869ab83-1324-5a4c-ab7f-edbb8e663000", "text": "\u4ee53\u79d2\u7684\u955c\u5934\u52a0\u901f10\u4e07\u5e74\u7684\u5386\u53f2\uff0c\u81ea\u7136\u666f\u89c2\u53d1\u751f\u4e86\u53d8\u5f62\u3002"} +{"id": "2001552", "video_name": "e3363652-ae00-5a5d-8076-760c491b44e9", "text": "\u732b\u7a7f\u7740\u661f\u661f\u56fe\u6848\u7684\u7687\u5bb6\u84dd\u8272\u670d\u88c5\uff0c\u80cc\u666f\u662f\u661f\u7a7a\uff0c\u5f71\u89c6\u955c\u5934\uff0c4k\uff0c\u9ad8\u6e05\u3002"} +{"id": "2001553", "video_name": "a320a63f-8eb8-52cc-8751-3409ea1646ad", "text": "\u5728\u8ff7\u4eba\u7684\u6587\u8fbe\u4e07\u4e4b\u5730\uff0c\u5c0f\u514b\u91cc\u5e0c\u7eb3\u7ee7\u7eed\u4f20\u64ad\u7231\u3001\u5feb\u4e50\u548c\u9b54\u529b\uff0c\u521b\u9020\u4e86\u6d41\u4f20\u591a\u4ee3\u7684\u6c38"} +{"id": "2001554", "video_name": "d9e33d28-dd74-52bb-9460-2993977aeaa5", "text": "\u76f8\u673a\u5de8\u4eba\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "2001555", "video_name": "307c23de-aab7-5cf2-9f16-21fe80f6f417", "text": "2011\u5e74\uff0c\u5168\u4e16\u754c\u90fd\u5728\u7fd8\u9996\u4ee5\u76fciPhone 4S\u7684\u53d1\u5e03\u3002\u8fd9\u4e2a\u9769\u547d\u6027\u7684\u8bbe\u5907\u5e26\u6765\u4e86\u4e2a\u4eba\u8bed\u97f3\u52a9\u624bSiri\uff0c\u6c38"} +{"id": "2001556", "video_name": "898be658-4146-52d8-bbeb-179e17ebfdbe", "text": "3D\u8bbe\u8ba1\u5728\u7535\u8111\u5c4f\u5e55\u4e0a\u8fdb\u884c\uff0c\u5177\u6709\u8d85\u903c\u771f\u7684\u8272\u5f69\u3002"} +{"id": "2001557", "video_name": "cb69f248-8789-5cd5-a12d-0fa5ff49dcd3", "text": "\u5e7b\u60f3\u7684\u80cc\u666f\uff0c\u76f8\u673a\u7f29\u653e\u3002"} +{"id": "2001558", "video_name": "86ccef41-28ed-5fe8-896b-639e7792dcf0", "text": "\u7537\u4eba\u5728\u5927\u578b\u97f3\u4e50\u5385\u5f39\u94a2\u7434\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\u3002\n\nSource sentence: The cat is sleeping on the windowsill in the warm sunlight.\n\u732b\u54aa\u6b63\u5728"} +{"id": "2001559", "video_name": "fe76183b-4235-5dcd-ae12-751b2fc391e0", "text": "\u5728\u5b81\u9759\u7684\u73af\u5883\u4e2d\uff0c\u63cf\u7ed8Tito\u5411\u83ab\u83ab\u4f20\u6388\u667a\u6167\uff0c\u4f20\u8fbe\u5bfc\u5e08\u7684\u611f\u89c9\u3002"} +{"id": "2001560", "video_name": "10e87774-6835-5e7b-9615-8c5724942f7f", "text": "\u4e00\u53ea\u7f8e\u4e3d\u7684\u9cb8\u9c7c\u5728\u5b64\u72ec\u7684\u6d77\u6d0b\u4e2d\u6f02\u6d41\u3002"} +{"id": "2001561", "video_name": "d4232533-984f-56b2-ac00-4ba781f2ced2", "text": "\u4e00\u4f4d\u7a7f\u7740\u886c\u886b\u3001\u6234\u7740\u773c\u955c\u548c\u8033\u673a\u7684\u7537\u5b50\u5728\u590d\u53e4\u592a\u9633\u7684\u80cc\u666f\u4e0b\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u884c\u8d70\u3002"} +{"id": "2001562", "video_name": "8591cf4b-142a-5bc4-a40a-dffb95b483bd", "text": "\u5728\u6708\u7403\u4e0a\u3002\u6d88\u606f\uff1aPaola\u3002"} +{"id": "2001563", "video_name": "af91f382-16af-5216-b592-fe706bd3b18e", "text": "\u5e8a\u4e0a\u7761\u89c9\u7684\u8fa3\u59b9\uff0c\u80f8\u90e8\u660e\u663e\uff0c\u8eab\u6750\u4e30\u6ee1\uff0c\u8138\u86cb\u53ef\u7231\u3002"} +{"id": "2001564", "video_name": "59b673ba-1abc-541c-aa1c-561d5802cc0d", "text": "\u4e00\u4e2a\u7a7f\u7740\u5b87\u822a\u5458\u670d\u3001\u7ad9\u5728\u6708\u7403\u4e0a\u5411\u5916\u661f\u4eba\u6325\u624b\u7684\u7537\u5b69\u3002\u5468\u56f4\u662f\u5e7f\u9614\u7684\u5b87\u5b99\uff0c\u6709\u8bb8\u591a\u661f\u661f\uff0c\u9ad8"} +{"id": "2001565", "video_name": "a49ba743-fc5a-5b5a-9530-c7c4c0ff396b", "text": "\u6b7b\u795e\u4f5c\u4e3a\u4e00\u4e2aRave DJ\u7ad9\u5728\u8f6c\u76d8\u65c1\uff0c\u9ed1\u767d\u8d85\u903c\u771f\u768416K\u8d85\u7ea7\u7167\u7247\u3002"} +{"id": "2001566", "video_name": "ce40f913-06ae-5675-a9d3-cac2e14f7e4f", "text": "\u86fe\u5b50\u4f5c\u4e3a\u795e\u7075\u3002 Bjork\u5ba1\u7f8e\uff0c\u6162\u6162\u653e\u5927\u3002"} +{"id": "2001567", "video_name": "5e0277ab-2df1-58f5-9208-02bacf421ec3", "text": "ASMR \u5c71\u6c34\u6d41\u6dcc\u7684\u89c6\u89c9\u6548\u679c\u3002"} +{"id": "2001568", "video_name": "4fb9cc80-9035-5e09-8d9d-5b6604906dc8", "text": "\u60c5\u5883\uff1a\u7167\u987e\u8005\u6b63\u5728\u4e3a\u60a3\u8005\u6d4b\u91cf\u751f\u547d\u4f53\u5f81\u3002\n\nTranslation: \u7167\u987e\u8005\u6b63\u5728\u4e3a\u60a3\u8005\u6d4b\u91cf\u91cd\u8981\u751f\u547d\u4f53\u5f81\u3002"} +{"id": "2001569", "video_name": "78f0e8c1-006f-567c-931e-a8f70425b990", "text": "\u9ad8\u7f8e\u5316\u5986\u54c1\n\u4fe1\u606f\uff1aM.A.C. (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2001570", "video_name": "8d4b9dc2-72a2-55da-b987-73e13e9dcc2a", "text": "\u4e00\u8f86\u5361\u8f66\u5728\u65e5\u51fa\u65f6\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u6302\u8f66\u7740\u706b\u3002"} +{"id": "2001571", "video_name": "ffe93c36-3a02-523f-8300-e2c8e6b12dd8", "text": "\u5728\u6c34\u4e2d\u6765\u56de\u6446\u52a8\u7684\u9c7c"} +{"id": "2001572", "video_name": "1bd34ad3-cd26-50f9-939f-20e7b5269ab5", "text": "\u573a\u666f12\uff1a\u5915\u9633\u5929\u7a7a\u3002\u5236\u4f5c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e5\u843d\u6216\u9ec4\u660f\u5929\u7a7a\u7684\u573a\u666f\uff0c\u8c61\u5f81\u7740\u4e00\u5929\u7684\u7ed3\u675f\u3002"} +{"id": "2001573", "video_name": "c8d2dd2d-6df6-5fdf-9aed-eea445367f1b", "text": "\u5b64\u72ec\u7684\u6708\u4eae\u6302\u5728\u5929\u7a7a\u4e2d\uff0c\u7167\u8000\u7740\u5b83\u7eaf\u51c0\u800c\u660e\u4eae\u7684\u5149\u8292\u3002\u8fd9\u79cd\u610f\u8c61\u8c61\u5f81\u7740\u5927\u81ea\u7136"} +{"id": "2001574", "video_name": "f0628290-edbe-55c1-b3f1-9413fddb9f97", "text": "\u6027\u611f\u7684\u91d1\u53d1\u5973\u4eba\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "2001575", "video_name": "e6f918c7-b82d-5d22-897d-985d345f0984", "text": "\u5728\u8001\u623f\u5b50\u91cc\u5bb6\u4eba\u559d\u8336\u3002"} +{"id": "2001576", "video_name": "140c30ad-4159-5e72-b50e-4b8dd3f5b909", "text": "\u5165\u53e3\u5904\u6709\u4e00\u4e2a\u5b8f\u4f1f\u7684\u62f1\u95e8\uff0c\u901a\u5f80\u4e00\u4e2a\u4e0b\u6c89\u7684\u57ce\u5e02\u3002"} +{"id": "2001577", "video_name": "b1387d63-b467-539b-b3bb-7c55701d6923", "text": "\u89c6\u9891\uff1a\u5404\u79cd\u9a97\u5c40\u2014\u2014\u52a0\u5bc6\u8d27\u5e01\u9a97\u5c40\u3001\u5916\u6c47\u4ea4\u6613\u9a97\u5c40\u3001\u4e8c\u5143\u671f\u6743\u9a97\u5c40\u3001\u7535\u7ebf\u8bc8\u9a97\u7b49\u3002"} +{"id": "2001578", "video_name": "618344fb-a384-5199-9108-b55de60e4493", "text": "\u4e00\u4e2a\u7c89\u8272\u7684\u6591\u5757\u4e0e\u4e00\u4e2a\u7eaf\u9ec4\u8272\u7684\u80cc\u666f\u878d\u5408\u53d8\u5f62\u3002"} +{"id": "2001579", "video_name": "a2e753c7-5005-5267-97b3-aa16e1aa0df6", "text": "\u51e1\u5c14\u8d5b\u6761\u7ea6\u5728\u5fb7\u56fd\u9020\u6210\u4e86\u7ecf\u6d4e\u548c\u653f\u6cbb\u4e0d\u7a33\u5b9a\uff0c\u4e3a\u7b2c\u4e8c\u6b21\u4e16\u754c\u5927\u6218\u5960\u5b9a\u4e86\u57fa\u7840\u3002"} +{"id": "2001580", "video_name": "cb53140a-1ac4-5512-a988-15b28ffbb3dc", "text": "\u98ce\u666f\u662f\u5c71\u8109\u3001\u5929\u7a7a\u3001\u4e91\u5f69\u548c\u9053\u89c2\u5bfa\u5e99\u7684\u7f8e\u4e3d\u666f\u8272\u3002\u95ea\u7535\u5728\u5e7b\u60f3\u4e16\u754c\u7684\u4e91\u5f69\u4e2d\u660e"} +{"id": "2001581", "video_name": "faedcaa5-6f81-51d5-8cf0-ba607a3ccdef", "text": "\u4e00\u4e2a\u8d2b\u7a77\u519c\u6c11\u7684\u957f\u89c6\u9891"} +{"id": "2001582", "video_name": "98e0e160-be0c-5681-8edd-c503c2fcfd39", "text": "\u5e74\u8f7b\u4eba\u53c2\u4e0e\u793e\u533a\u6d3b\u52a8\u3002"} +{"id": "2001583", "video_name": "e34e82c7-be1b-54ca-87ce-4941fe61a616", "text": "\u5de5\u4f5c\u5ba4\u5409\u535c\u529b\u7684\u4e16\u754c\uff0c\u4e00\u4e2a\u65e5\u672c\u732b\u5728\u4e2d\u5fc3\uff0c\u80cc\u666f\u91cc\u6709\u8424\u706b\u866b\u3002"} +{"id": "2001584", "video_name": "5ef574b8-8d02-56cd-893f-a56aaeca14d3", "text": "\u5c55\u793a\u4e2d\u533b\u7684\u57fa\u672c\u539f\u7406\uff0c\u5373\u9634\u9633\u5e73\u8861\u3002"} +{"id": "2001585", "video_name": "a83a512f-4294-51af-a33f-3c947e2f4c6b", "text": "\u5236\u4f5c\u4e00\u6bb510\u79d2\u7684\u52a8\u753b\u68ee\u6797\u89c6\u9891\u3002"} +{"id": "2001586", "video_name": "6a478678-b3ac-5ad7-9459-8a171e083334", "text": "\u628a\u7167\u7247\u4e2d\u7684\u89d2\u8272\u5236\u4f5c\u6210\u96d5\u5851\uff0c\u8981\u6829\u6829\u5982\u751f\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001587", "video_name": "81fb3d65-b7df-5e57-9c8a-6d089c1ad68a", "text": "\u7f8e\u4e3d\u7684\u5c71\u5ce6\uff0c\u5929\u7a7a\u4e0a\u6709\u9e1f\u3002"} +{"id": "2001588", "video_name": "453bf0de-c07e-5e96-b891-7c70d8d0c3e1", "text": "\u91cd\u5851\u4e3aSDXL 1.0\u5f8b\u5e08\u7684\u5927\u574f\u72fc\u5168\u8eab\u7167\uff0c\u5728\u6cd5\u5ead\u4e0a\u4ee5\u5f3a\u70c8\u7684\u6b63\u4e49\u70ed\u60c5\u5411\u966a\u5ba1\u56e2\u53d1"} +{"id": "2001589", "video_name": "c5837e6e-acd7-54bf-8761-5ce2c6f08568", "text": "\u4e00\u4e2a\u7a7f\u7740\u76d4\u7532\u3001\u9a91\u5728\u9a6c\u4e0a\u7684\u7537\u4eba\u7ad9\u5728\u6218\u573a\u4e0a\uff0c\u7535\u5f71\uff0c\u9ad8\u6e058K\u3002"} +{"id": "2001590", "video_name": "e17c12fd-7677-5471-8a50-ee8abc350094", "text": "3D\u827a\u672f\u7f8e\u4e3d\u7684\u82b1\u56ed\u5c4b\u9876\u5954\u8dd1\u3002"} +{"id": "2001591", "video_name": "fd29fdf2-94ac-5945-9af5-cf7a86f23cd7", "text": "\u739b\u4e3d\u83b2\u00b7\u68a6\u9732\u5e74\u8f7b\u7f8e\u4e3d\uff0c\u771f\u5b9e\u5730\u7528 iPhone \u5728\u955c\u5b50\u91cc\u81ea\u62cd\u3002"} +{"id": "2001592", "video_name": "822797e6-7b09-5d35-b5ba-6b25614e80ec", "text": "\u52a0\u52d2\u6bd4\u6d77\u7684\u6ce2\u6d6a\u7ffb\u6eda\uff0c\u795d\u4f60\u751f\u65e5\u5feb\u4e50\uff0c\u5b57\u4f53\uff1a\uff08\u73b0\u4ee3\uff09"} +{"id": "2001593", "video_name": "24ef927f-2150-5c6e-95f7-4977e7c1d7eb", "text": "\u4e0b\u5c71\u8d8a\u91ce\u81ea\u884c\u8f66\u6bd4\u8d5b\u4ee5\u4ece\u60ac\u5d16\u4e0a\u7684\u5927\u8df3\u8dc3\u7ed3\u675f\u3002\u745e\u58eb\u963f\u5c14\u5351\u65af\u5c71\u4e3a\u80cc\u666f\u3002SantaCruz\u81ea"} +{"id": "2001594", "video_name": "8c948fa3-7a65-5873-954e-7cf85d363e1e", "text": "\u54c8\u5229\u6ce2\u7279\u505a\u9b54\u6cd5\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "2001595", "video_name": "84b15e43-0d0b-533b-b4b9-8bacb0ae5f85", "text": "\u7537\u5b50\u773c\u775b\u7ea2\u7ea2\u5730\u76ef\u7740\u94f6\u884c\u8d26\u6237\u3002"} +{"id": "2001596", "video_name": "953216fe-14a0-57d1-bafb-2d602c4b4827", "text": "\u7af9\u6797\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u91d1\u8272\u5149\u8292\u95ea\u8000\uff0c\u80cc\u666f\u7eaf\u9ed1\u3002"} +{"id": "2001597", "video_name": "b3c68e10-f61f-5710-925c-25e54473499e", "text": "\u8ba9\u5934\u62ac\u8d77\u6765\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001598", "video_name": "cbd4a52b-b8b1-5f71-8c4f-89088070ea4c", "text": "\u955c\u5934\u6643\u52a8\uff0c\u9ed1\u6697\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u9ed1\u6697\u827a\u672f\uff0c\u54e5\u7279\u827a\u672f\uff0c\u795e\u79d8\u827a\u672f\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u8d85\u81ea\u7136"} +{"id": "2001599", "video_name": "7a3b36d9-c818-5aeb-bbe5-5f8320084d5b", "text": "\u751f\u6210\u903c\u771f\u7684\u706b\u7bad\u53d1\u5c04\u6a21\u62df\uff0c\u5305\u62ec\u8d77\u98de\u5e8f\u5217\u548c\u5927\u6c14\u76f8\u4e92\u4f5c\u7528\u3002\u5c55\u793a\u5404\u79cd\u706b\u7bad\u7c7b\u578b\uff0c\u4ece\u5386\u53f2\u4efb\u52a1\u5230\u5373"} +{"id": "2001600", "video_name": "a3362130-4bf4-5e37-a796-c9d23ea9a4b2", "text": "\u4e00\u4e2a\u6234\u5e3d\u886b\u7684\u7537\u5b69\u5728\u6905\u5b50\u4e0a\u64cd\u4f5c\u7535\u8111\u3002"} +{"id": "2001601", "video_name": "5e196d86-b6d1-5c88-9674-75557495d86c", "text": "\u623f\u5b50\u4e0a\u6709\u8349\u5730\u9a91\u624b\u3002"} +{"id": "2001602", "video_name": "4e6f25a9-10e4-5b0d-9894-f769eed29bff", "text": "\u5728\u6c34\u4e0a\u884c\u8d70\u7684\u6d6e\u6e38\u8036\u7a23\uff0c\u6643\u52a8\u7684\u8239\u4e0a\u5f7c\u5f97\u548c\u95e8\u5f92\u4eec\u5c16\u53eb\uff0c\u7279\u6548\uff0c\u95ea\u7535\u96f7\u58f0\uff0c\u7167\u8000\u7684"} +{"id": "2001603", "video_name": "846d3af1-8aef-5a1d-9fe7-27c3a4fd86d7", "text": "\u9ca8\u9c7c\u6e38\u52a8\u7684\u591a\u5f69\u6d77\u5e95\u666f\u8c61\u3002\u591a\u5f69\u7684\u73ca\u745a\u548c\u9c7c\u513f\u3002\u660e\u4eae\u7684\u706f\u5149\u30023D\u52a8\u753b\u30024"} +{"id": "2001604", "video_name": "c4b02641-4930-5490-94fd-4616d0da8069", "text": "\u795e\u5723\u51e0\u4f55\u5b66\u751f\u547d\u4e4b\u79cd\u5149\u96a7\u9053"} +{"id": "2001605", "video_name": "79a7fbc1-9824-57d5-bff6-22408928f913", "text": "\u75288\u6beb\u7c73\u9897\u7c92\u611f\u753b\u8d28\u5448\u73b0\u51fa\u4e00\u4e2a\u795e\u79d8\u6050\u6016\u7684\u50ac\u7720\u89c6\u89c9\u3002"} +{"id": "2001606", "video_name": "bf9ce178-ba54-5370-bae7-9e0228dadc19", "text": "\u6211\u4ece\u5730\u4e0a\u62fe\u8d77\u4e00\u5757\u7816\u3002"} +{"id": "2001607", "video_name": "b78d9e19-835c-5be4-bd2e-1c8ab3a731e6", "text": "\u70ed\u6cb9\u7684\u5192\u6ce1\u548c\u5636\u5636\u58f0\uff0c\u80cc\u666f\u4e2d\u5347\u8d77\u7740\u84b8\u6c7d\u3002"} +{"id": "2001608", "video_name": "69bd2520-d30d-5fb2-86a5-4d7bf222e193", "text": "\u4f7f\u7528\u6269\u5c55\u6027\u7684\u56fe\u50cf\u548c\u6280\u672f\u5f62\u8c61\u6765\u4f20\u8fbe\u6280\u672f\u6b63\u5728\u6253\u5f00\u4eba\u7c7b\u80fd\u529b\u63d0\u5347\u7684\u65b0\u524d\u6cbf\uff0c\u4ee5\u4ee4\u4eba\u632f\u594b\u7684\u65b9\u5f0f\u7ed3\u675f\u3002"} +{"id": "2001609", "video_name": "5698b150-e848-5b46-80c1-aaba52ed4299", "text": "\u7528\u9ed1\u8272\u548c\u84dd\u8272\u8bbe\u8ba1\u4e00\u4e2a\u7531I\u3001Y\u3001Y\u4e09\u4e2a\u5b57\u6bcd\u7ec4\u6210\u7684\u6807\u5fd7\u3002"} +{"id": "2001610", "video_name": "254c859d-8c02-588d-8446-8cede93f3711", "text": "\u4e09\u4e2a\u670b\u53cb\u6c89\u601d\uff1a\u963f\u5c14\u91d1\u3001\u82cf\u8fea\u5c14\u548c\u62c9\u7ef4\u7ad9\u5728\u6751\u5e84\u7684\u90ca\u5916\uff0c\u51dd\u89c6\u7740\u4ee4\u4eba\u751f\u754f\u7684\u5efa\u7b51\u3002"} +{"id": "2001611", "video_name": "480c7b0f-7996-5947-8340-56d3e60c4a64", "text": "\u5728\u65e0\u8fb9\u7684\u8349\u539f\u4e0a\uff0c\u4e00\u4e2a\u72ec\u81ea\u9a91\u9a6c\u7684\u4eba\u7ad9\u5728\u90a3\u91cc\uff0c\u4f5c\u4e3a\u6c0f\u65cf\u9886\u8896\u3002\u4ed6\u7684\u9762\u5e9e\u6df1\u53d7\u6218"} +{"id": "2001612", "video_name": "1a39ef6b-2ecf-546e-9aea-5d4cb56edd0e", "text": "\u4e00\u5e55\u91d1\u521a\u624b\u6301\u76f4\u5347\u673a\u5e76\u6467\u6bc1\u5b83\u7684\u573a\u666f\u3002"} +{"id": "2001613", "video_name": "7fb8fcd0-8a46-553d-80ee-961d7b7d7eb8", "text": "\u6211\u9700\u8981\u5728\u4e0a\u4f20\u7684\u56fe\u7247\u4e2d\u7684\u6bcf\u4e2a\u5706\u5708\u91cc\u5236\u4f5c\u79d1\u5b66\u52a8\u753b\u7d20\u6750\u3002"} +{"id": "2001614", "video_name": "050c0672-54eb-503c-8d59-928460cc12ea", "text": "\u57282024\u5e74\u7684\u65b0\u5e74\uff0c\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u4eba\u5de5\u667a\u80fd\u89d2\u8272\uff0c\u4ecb\u7ecd2023\u5e74\u4eba\u5de5\u667a\u80fd\u7684\u8fdb\u5c55\uff0c\u5e76\u8868\u8fbe\u5bf92024\u5e74\u7684\u5e0c\u671b\u548c\u613f"} +{"id": "2001615", "video_name": "cf3fe038-ef9d-583c-8807-485fb7c118ca", "text": "\u4f60\u66fe\u7ecf\u5728\u5bb6\u70b9\u8fc7\u6bd4\u8428\u5417\uff1f\u8bf7\u521b\u4f5c\u4e00\u5e45\u63cf\u7ed8\u6536\u5230\u65b0\u9c9c\u9001\u8fbe\u7684\u6bd4\u8428\u5e26\u6765\u7684\u559c\u60a6\u7684\u63d2\u753b"} +{"id": "2001616", "video_name": "52fe6cad-d873-5fe9-8620-f87628fbcf3d", "text": "\u5728\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u5723\u8bde\u591c\u91cc\uff0c\u5723\u8bde\u8001\u4eba\u9001\u4e86\u4e00\u4e2a\u5c0f\u6696\u6c14\u7ed9\u5750\u5728\u96ea\u5730\u91cc\u7684\u5c0f\u7537\u5b69\u3002\u5c0f\u7537\u5b69"} +{"id": "2001617", "video_name": "98093696-1811-5f28-b17a-d838ab92d880", "text": "Realism\u3002\u4e00\u4e2a\u4e0d\u540c\u4e8e\u5176\u4ed6\u4eba\u7684\u7537\u4eba\u3002\u5468\u56f4\u6709\u5f88\u591a\u76f8\u540c\u7684\u4eba\u3002\u4ed6\u4e0d\u540c\uff0c\u5728\u4e0d\u540c\u7684\u670d\u88c5\u91cc\u3002\u5149\u3002"} +{"id": "2001618", "video_name": "8c093d2e-9090-5a0b-aab0-14b5e1f27e4a", "text": "\u4ed6\u5bf9\u81ea\u5df1\u7684\u4eba\u6c11\u7edf\u6cbb\u975e\u5e38\u4e25\u9177\u3002"} +{"id": "2001619", "video_name": "68183094-e825-5962-8784-bdf1587310cd", "text": "\u4e00\u4e2a\u51b0\u6dc7\u6dcb\u86cb\u7b52\uff0c\u4e0a\u9762\u6dcb\u7740\u70ed\u5de7\u514b\u529b\u9171\u548c\u7126\u7cd6\u9171\uff0c\u80cc\u666f\u4e2d\u98d8\u7740\u843d"} +{"id": "2001620", "video_name": "24d7fadb-eab8-5cae-a6b6-9b52c721068b", "text": "\u4e00\u6761\u873f\u8712\u7a7f\u8fc7\u6751\u5e84\u7684\u6cb3\u6d41\u3002"} +{"id": "2001621", "video_name": "5b513383-c6b9-5e22-8e78-3785643edb27", "text": "\u672a\u6765\u667a\u4eba\u7684\u903c\u771f\u63cf\u7ed8\uff0c\u4ee5\u53ca\u524d\u65b9\u7684\u6311\u6218\u548c\u673a\u9047\uff0c\u5982\u6c14\u5019\u53d8\u5316\u3001\u4eba\u5de5\u667a\u80fd\u548c\u592a\u7a7a\u63a2\u7d22\u3002"} +{"id": "2001622", "video_name": "9a7782a4-c0f3-5de3-aaa2-0b7989382322", "text": "\u4e00\u4e2a\u5199\u5b9e\u7684\u89c6\u9891\uff0c\u865a\u5e7b\u5f15\u64ce\u98ce\u683c\uff0c\u5c55\u793a\u4e86\u8bb8\u591a\u5c71\u8109\u3001\u690d\u88ab\u548c\u7011\u5e03\u7684\u7a7a\u4e2d\u81ea\u7136\u56fe\u50cf\u3002 \n\nSource sentence"} +{"id": "2001623", "video_name": "e8bf7671-8fed-5f40-9d9c-56587b45a77e", "text": "\u5feb\u4e50\u6563\u6b65\u7684\u7537\u5b69 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "2001624", "video_name": "6c5b7e52-85f2-5c06-acef-80eb3e601fc1", "text": "\u5b89\u5fb7\u9c81\u00b7\u6cf0\u7279\u6253\u5f00\u4e00\u4e2a\u6ee1\u6ee1\u7684\u94b1\u7bb1\u3002"} +{"id": "2001625", "video_name": "4293bbc9-a834-5e72-82d2-4ad4f7b35225", "text": "\u4e00\u53ea\u73a9\u800d\u7684\u5927\u8c61\uff0c\u62ac\u8d77\u9f3b\u5b50\u7ad9\u5728\u6c34\u5751\u65c1\u8fb9\u3002"} +{"id": "2001626", "video_name": "f72706a3-616e-59f2-9710-81f25640aba7", "text": "\u6709\u94b1\u4eba\u6b63\u5728\u5411\u522b\u4eba\u6350\u8d60\u5927\u7b14\u94b1\u6b3e\u3002"} +{"id": "2001627", "video_name": "8a86f82a-f8cb-5c93-a5af-e4e39c4b45d5", "text": "\u4e00\u4e2a\u7a7f\u7740\u5065\u8eab\u670d\u7684Cristiano Ronaldo\u7167\u7247\uff0c\u81ea\u4fe1\u5730\u5728\u5065\u8eab\u955c\u524d\u5c55\u793a\u4ed6\u808c\u8089\u7ebf\u6761\u6e05\u6670\u7684\u4f53\u578b\uff0c\u9762\u5e26\u81ea\u4fe1\u7684"} +{"id": "2001628", "video_name": "73d2daea-d1bb-5d0a-81c7-ef55f5789d0d", "text": "\u6751\u5e84\u5145\u6ee1\u671f\u5f85\uff0c\u56e0\u4e3a\u5373\u5c06\u53d1\u751f\u7279\u522b\u7684\u4e8b\u60c5\u3002"} +{"id": "2001629", "video_name": "8dd3f943-00fb-54e5-8cd5-ba9aed438011", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u7fbd\u6bdb\u7b14\uff0c\u5728\u65e7\u7eb8\u4e0a\u7b7e\u7f72\u4e00\u4efd\u6761\u7ea6\u3002"} +{"id": "2001630", "video_name": "accfc047-853b-53a4-b367-c0b999541668", "text": "\u5973\u4eba\u5728\u6742\u8d27\u5e97\u91cc\u770b\u7740\u4ea7\u54c1\uff0c\u6c34\u55b7\u5728\u4ea7\u54c1\u4e0a\uff0c\u5728\u5c55\u793a\u67dc\u5185\u62cd\u6444\uff0c\u4ee5\u6cb9\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2001631", "video_name": "106a886d-126f-595d-b987-cfb79bce38e5", "text": "\u533b\u751f\u82f9\u679c\u6b63\u5728\u548c\u5176\u4ed6\u5b66\u751f\u4ea4\u8c08\u3002\u4ed6\u7684\u624b\u5728\u98a4\u6296\u3002"} +{"id": "2001632", "video_name": "264cf38f-2cef-5c02-81d4-ed8590daea6b", "text": "\u8d2b\u7a77\u7684\u4eba\u8eba\u5728\u5e8a\u4e0a\uff0c\u4f53\u6e29\u4e3a39\u5ea6\u3002\n\nSource sentence: The cat is sleeping on the chair."} +{"id": "2001633", "video_name": "7d745a2c-e660-5178-99b6-91aa4922bd8e", "text": "\u5236\u4f5c\u4e00\u4efd\u7b80\u5386CV\uff0c\u5185\u5bb9\u57fa\u4e8e\u6b64\u56fe\u50cf\u4e2d\u7684\u7ec6\u8282\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001634", "video_name": "32f02b73-420a-5383-8a14-8138ce922e1f", "text": "\u767d\u8272\u9762\u5177\u7684\u6295\u5f71\u6253\u5728\u5b83\u4e0a\u9762\uff0c\u53d1\u51fa\u5149\u8292\u3002"} +{"id": "2001635", "video_name": "ad79dadd-e4d9-51ba-ad06-4366d037ab84", "text": "\u5730\u4e0b\u57ce\u4e0e\u9f99\uff0c\u5973\u6027\u7cbe\u7075\u6e38\u4fa0\u6325\u821e\u5251\uff0c\u94dc\u68d5\u8272\u7684\u5934\u53d1\uff0c\u94dc\u8272\u76ae\u80a4\uff0c\u68d5\u7eff\u8272\u76ae\u7532\uff0c"} +{"id": "2001636", "video_name": "5ae67ebc-a218-5756-90f5-6cd26543e1e9", "text": "\u4e00\u53ea\u8eab\u7740\u5b87\u822a\u670d\u7684\u5feb\u4e50\u9ed1\u7329\u7329\u5728\u7531\u5145\u6ee1\u6d3b\u529b\u7684\u7eb1\u7ebf\u6784\u6210\u7684\u5916\u661f\u4e16\u754c\u4e2d\u63a2\u9669\u3002"} +{"id": "2001637", "video_name": "0727eac1-7a49-5e5c-ba82-b7f37afe8320", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u8868\u73b0\u4e00\u4e2a\u4ee4\u4eba\u6ee1\u610f\u4e14\u91cd\u590d\u6027\u7684\u4e8b\u4ef6\uff0c\u6ce8\u91cd\u8fde\u7ef5\u4e0d\u65ad\u7684\u82b1\u6735\u56fe\u50cf\u3002\u52a8\u753b\u5e94\u8be5\u63cf\u7ed8\u51fa\u82b1\u6735"} +{"id": "2001638", "video_name": "28890694-c2fa-5164-8f87-4e149f2eaecd", "text": "1980\u5e74\u4ee3\uff0c\u4e00\u4e2a\u7559\u7740\u7edc\u816e\u80e1\u3001\u53d1\u578b\u4fee\u526a\u6574\u9f50\u7684\u6df7\u8840\u7537\u5b50\u5728\u6d3e\u5bf9\u7ed3\u675f\u540e\u7684\u623f\u95f4\u91cc\uff0c\u5c55\u793a\u7740\u4ed6"} +{"id": "2001639", "video_name": "16e8bf3d-0766-5633-8616-fd021c4abafb", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u4ece\u7535\u89c6\u91cc\u8df3\u51fa\u6765\u4e86\u3002"} +{"id": "2001640", "video_name": "90e855c9-ae73-5032-a119-5a6550b4a287", "text": "\u6b22\u4e50\u7684\u6c1b\u56f4\u5f25\u6f2b\u5728\u66fe\u7ecf\u5b89\u9759\u7684\u4e1b\u6797\u4e2d\u3002"} +{"id": "2001641", "video_name": "2f58ed94-a766-5c21-a7b0-df3a7995a510", "text": "\u68ee\u6797\u91cc\u6709\u4e00\u53ea\u7334\u5b50\u548c\u4e00\u53ea\u5927\u8c61\u3002\u7334\u5b50\u9a91\u5728\u5927\u8c61\u4e0a\u30023D\u30014K\u300119.9\u6bd4\u4f8b\u3002"} +{"id": "2001642", "video_name": "eba62482-95bc-5bdf-93b3-c521e939e18d", "text": "\u857e\u54c8\u5a1c\u5728\u9910\u5385\u4eab\u53d7\u4e00\u987f\u996d\uff0c\u4ee5Aardman\u52a8\u753b\u7684\u505c\u683c\u52a8\u753b\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2001643", "video_name": "bc87fb5c-0bdf-5ef0-a9b3-fc7e9ad23394", "text": "\u5c55\u793a\u4e16\u754c\u4e0a\u8c01\u662f\u82f1\u4fca\u7684\u4eba - GS 28"} +{"id": "2001644", "video_name": "fa3732c6-40f9-56f7-985f-dc163a1e4ed1", "text": "\u4e00\u6761\u957f\u957f\u7684\u8def\u4e0a\u7f8e\u4e3d\u7684\u65e5\u843d\u3002"} +{"id": "2001645", "video_name": "2b5f83da-8ee1-54d4-a4d6-6ae59e36dc26", "text": "\u75db\u82e6\u7684\u7075\u9b42\uff0c\u5f98\u5f8a\u7684\u9b3c\u9b42\uff0c\u6d3b\u7740\u7684\u4ea1\u8005\uff0c\u53d7\u82e6\u7684\u6b7b\u8005\uff0c\u80cc\u53db\uff0c\u8a93\u8a00\u548c"} +{"id": "2001646", "video_name": "b4f4e643-4046-5ea5-919b-5f5b2456a2f7", "text": "\u6444\u50cf\u673a\u4ece\u4e0a\u65b9\u73af\u7ed5\u7740\u5e84\u4e25\u7684\u573a\u666f\uff0c\u6da1\u65cb\u7684\u5143\u7d20\u6df7\u5408\u7269\u5f00\u59cb\u53d1\u5149\u548c\u65cb\u8f6c\uff0c\u96c6\u805a\u80fd\u91cf\u3002\u968f\u7740"} +{"id": "2001647", "video_name": "2e84d31f-3fea-5ef2-b266-9dc016ab9b65", "text": "\u98ce\u683c\u7684\u52a0\u5bc6\u793c\u7269\u4ece\u5929\u800c\u964d\u3002"} +{"id": "2001648", "video_name": "55ce7226-ac80-5b6a-8ac0-5cb061e054af", "text": "2018\u5e74\u5728Reddit\u4e0a\u53d1\u5e03\u4e86\u5916\u661f\u4eba\u5728\u5546\u573a\u884c\u8d70\u7684\u539f\u59cb\u5f55\u50cf\u3002"} +{"id": "2001649", "video_name": "c48519ac-bc32-5093-8bcf-36f246910ce3", "text": "\u4e24\u4e2a\u5361\u901a\u89d2\u8272\u5728\u4e00\u5ea7\u4e2d\u4e16\u7eaa\u7684\u623f\u5b50\u91cc\u804a\u5929\u3002"} +{"id": "2001650", "video_name": "ccf042d1-0829-5229-b601-f7b9a7b55826", "text": "\u733f\u7334\u7ad9\u5728\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u91cc\uff0c\u624b\u6301\u6b66\u5668\uff0c\u6124\u6012\u5730\u7ad9\u7740\u3002"} +{"id": "2001651", "video_name": "f141c654-26fd-5c7c-8dd6-a9f34f9f02e1", "text": "\u5728\u57ce\u5e02\u91cc\uff0c\u97f3\u7b26\u5728\u98ce\u4e2d\u98de\u821e\u3002"} +{"id": "2001652", "video_name": "9a62b839-2797-5a04-97c4-55f5bcff8a2d", "text": "\u4e30\u7530\u51ef\u7f8e\u745e\u5728\u68ee\u6797\u91cc\u884c\u9a76\uff0c\u4e0b\u96e8\u4e86\u3002"} +{"id": "2001653", "video_name": "327f131f-2bac-5f64-8fb4-6c5ea265904f", "text": "\u7537\u4eba\u8981\u4e58\u98de\u673a\u65c5\u884c\u3002"} +{"id": "2001654", "video_name": "9365039b-a78b-5b24-959d-20f77974ea08", "text": "\u5927\u8111\u6240\u6709\u90e8\u5206\u90fd\u5728\u5168\u91cf\u5b50\u89c6\u89d2\u4e0b\u5145\u5206\u8fd0\u4f5c\u3002 \n\nSource sentence: I am learning Chinese and it is challenging but also rewarding. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u867d\u7136\u5177"} +{"id": "2001655", "video_name": "62af27f9-090e-5b00-9cd6-df77fca8b65f", "text": "\u6559\u7687\u5728\u73a9\u300a\u6e38\u620f\u738b\u300b\u4ea4\u6362\u5361\u724c\u6e38\u620f\uff0c\u53ec\u5524\u88ab\u7981\u6b62\u7684\u4e00\u4eba\u4e4b\u4e0b\u3002"} +{"id": "2001656", "video_name": "640621a3-a808-5e25-baf6-3d84ac8782bb", "text": "\u5fae\u5c0f\u7684\u9762\u90e8\u52a8\u4f5c\u548c\u6109\u5feb\u7684\u9762\u90e8\u8868\u60c5\u3002"} +{"id": "2001657", "video_name": "79a6f28d-bc54-5db1-86b9-ed26bc3aa5e6", "text": "\u4e00\u4e2a\u70ed\u5e26\u5c9b\u5c7f\u7684\u6d77\u6ee9\u4e0a\u4e0b\u7740\u5927\u96ea\u3002"} +{"id": "2001658", "video_name": "3a93cffd-a0a7-5900-91df-6672bcd7509d", "text": "\u5c0f\u732b\u8eb2\u5728\u8f66\u5e95\u4e0b\uff0c\u56e0\u4e3a\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "2001659", "video_name": "27f52bb4-0c6f-57dd-8527-be6422efa883", "text": "\u4e00\u4e2a\u73af\u7ed5\u6052\u661f\u65cb\u8f6c\u7684\u6234\u68ee\u7403\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "2001660", "video_name": "9836c91b-3797-5f1f-8084-a0ef12b4a6da", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u548c\u4e00\u53ea\u7ea2\u8272\u7684\u8d4c\u6ce8\u4e00\u8d77\u5403\u62ab\u8428\u3002\n\nSource sentence: The sun is shining brightly today. \n\n\u4eca\u5929\u592a\u9633\u7167\u5f97"} +{"id": "2001661", "video_name": "4ec169c1-09ff-5172-953f-f01781836ebc", "text": "\u9ad8\u8fbe\u60ca\u4eba\u768460\u7c73\u9ad8\u3002"} +{"id": "2001662", "video_name": "857d2cd2-dbf0-560a-9e2e-5741365538ae", "text": "\u4ece\u67d0\u4eba\u7684\u94b1\u5305\u91cc\u53d6\u94b1"} +{"id": "2001663", "video_name": "9f3f175b-b092-505e-a018-3163f4e18335", "text": "\u4e00\u53f0\u5927\u578b\u673a\u5668\u4eba\u5728\u7a7a\u65f7\u7684\u9053\u8def\u4e0a\u884c\u8d70\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u9897\u5c0f\u884c\u661f\u5411\u4ed6\u98de\u6765\u3002"} +{"id": "2001664", "video_name": "eb6119ed-fc49-5ca9-95b3-b4796386233f", "text": "\u4e54\u00b7\u7f57\u6839\u4e3b\u6301\u4e00\u6863\u4e0e\u5916\u661f\u4eba\u5609\u5bbe\u4ea4\u6d41\uff0c\u63a2\u8ba8\u4e0d\u540c\u661f\u7403\u4e0a\u7684\u751f\u547d\u7684\u661f\u9645\u64ad\u5ba2\u3002"} +{"id": "2001665", "video_name": "3aa55deb-2964-54aa-9850-542eb988bb24", "text": "\u83b1\u8335\u6cb3\u5cb8\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\u65b9\u5f0f\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u5de8\u5927\u7684\u89c4\u6a21\u3002"} +{"id": "2001666", "video_name": "5a906b26-b3d2-56c0-8c02-528a74bd0e47", "text": "\u8428\u62c9\u4e3e\u8d77\u624b\uff0c\u5411\u9644\u8fd1\u6811\u679d\u4e0a\u505c\u7740\u7684\u4e00\u53ea\u9e1f\u505a\u624b\u52bf\u3002"} +{"id": "2001667", "video_name": "4709444b-c723-579e-8b95-42a88be1d346", "text": "\u4e00\u4e2a\u5976\u6cb9\u8272\u7684\u80cc\u666f\uff0c\u4e0a\u9762\u653e\u7f6e\u7740\u4e00\u4e9b\u6734\u7d20\u7684\u4e66\u7c4d\uff0c\u6446\u653e\u5728\u6700\u5c0f\u5316\u548c\u73b0\u4ee3\u7684\u5bb6\u5177\u4e0a\u3002\u8fd9\u662f\u9ad8\u7ba1\u4eec\u5728\u529e"} +{"id": "2001668", "video_name": "40541835-0f58-5ec7-9764-144aa18c7b6a", "text": "\u4e94\u665a\u548c\u5f17\u96f7\u8fea\u7684\u79fb\u52a8\u30023D\u6765\u81ea\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u3002"} +{"id": "2001669", "video_name": "9dfeea05-b8ae-5bf7-a9dc-c411e7d2a933", "text": "\u4e00\u4f4d\u4f7f\u7528\u7535\u8111\u8bbf\u95ee\u9886\u82f1\u7684\u4eba\u30021080p\u3002"} +{"id": "2001670", "video_name": "207951cb-32fd-53f5-91cb-ce3ab93e6c1e", "text": "\u7ad9\u5728\u9ed1\u6697\u4e2d\u63e1\u7740\u6b66\u58eb\u5200"} +{"id": "2001671", "video_name": "06503097-0cf4-5954-931f-a9229b77d270", "text": "\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\uff0c\u8fd9\u4e9b\u57fa\u672c\u6784\u5efa\u5757\u805a\u5408\u6210\u4e86\u65cb\u8f6c\u7684\u661f\u4e91\u3001\u5de8\u5927\u7684\u6c14\u4f53\u548c\u5c18\u57c3\u4e91\u3002\u5728\u8fd9\u4e9b\u5929\u4f53"} +{"id": "2001672", "video_name": "4957d20b-91e8-51af-9ca0-04742c1fa149", "text": "\u4e00\u4e2a\u6a21\u7279\u7a7f\u7740\u5df4\u9ece\u4e16\u5bb6\u7684\u4e1d\u7ef8\u88d9\u548c\u7f8a\u6bdb\u897f\u88c5\uff0c\u5728\u8857\u89d2\u8d70\u8fc7\uff0c\u5341\u5206\u8ff7\u4eba\u3002"} +{"id": "2001673", "video_name": "ef53092e-c683-5cfb-a301-c4582238a2d3", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u7267\u5e08\uff0c\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u548c\u7cbe\u81f4\u7684\u9ed1\u4eba\u975e\u6d32\u5973\u4eba\uff0c\u7a7f\u7740\u53e4\u4ee3\u7684\u7ea6\u9c81\u5df4\u670d\u88c5\uff0c\u6b63\u5728"} +{"id": "2001674", "video_name": "339683b3-6096-5557-b990-e7eb19c6caa4", "text": "\u4e00\u8f86\u8f66\u4e0a\u6709\u4e00\u5bb6\u4eba\u4e0b\u6765\u4e86\u3002"} +{"id": "2001675", "video_name": "9da5c9f7-46ed-5a62-82ac-021a76bec47e", "text": "\u89c6\u9891)\n\nTranslated sentence: \u4e00\u53ea\u751f\u7269\u649e\u4e0a\u4e86\u6c7d\u8f66 (\u884c\u8f66\u8bb0\u5f55\u4eea\u89c6\u9891)\u3002"} +{"id": "2001676", "video_name": "dfec98ac-83ff-515e-b573-a82132a31922", "text": "\u4e00\u4e2a\u5361\u901a\u5973\u5b69\u5c06\u5979\u7684\u76f8\u673a\u65cb\u8f6c\u56de\u5bb6\u3002"} +{"id": "2001677", "video_name": "f6306ff4-114b-544a-b9c3-2bf4758fe69b", "text": "\u6781\u81f4\u9510\u5229\u548c\u9ad8\u8d28\u91cf\u7684\u7ec6\u8282\uff0c\u7535\u5f71\u7ea7\u7684\u4f53\u79ef\u5149\u52a8\u753b\uff0c\u95ea\u70c1\u7684\u6c34\u6ce1\u8986\u76d6\u7740\u8bd5\u56fe\u6323\u8131"} +{"id": "2001678", "video_name": "eeea3bfd-3e6b-543d-816f-72f683719ba2", "text": "\u6211\u5728\u90a3\u91cc\u770b\u5230\u9a6c\u514b\u70ed\u60c5\u5730\u62e5\u62b1\u7740\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u3002"} +{"id": "2001679", "video_name": "7dd7b4cb-41a3-5412-b9db-aad88029f5f9", "text": "\u4e00\u4e2a\u7537\u5b69\u8df3\u8df3\u8df3\u5730\u5728\u5357\u74dc\u5730\u91cc\u5954\u8dd1\u3002\u6ee1\u6708\u5728\u591c\u7a7a\u4e2d\u95ea\u8000\u3002"} +{"id": "2001680", "video_name": "e55cb12b-ab89-5ab0-9153-64b99ab44310", "text": "\u6821\u8f66\u5728\u57ce\u5e02\u91cc\u78be\u8fc7\u50f5\u5c38\u3002"} +{"id": "2001681", "video_name": "91779362-e164-5e76-a4c7-396873f14d72", "text": "\u4e24\u4e2a\u4eba\u79c1\u4e0b\u8c08\u8bdd\u7684\u52a8\u753b\u89c6\u9891"} +{"id": "2001682", "video_name": "854a004a-d211-5c0d-86fb-725542800271", "text": "\u54c8\u5229\u6ce2\u7279\u548c\u8d6b\u654f\u65bd\u5c55\u9b54\u6cd5\u3002"} +{"id": "2001683", "video_name": "661fb940-1bda-55ec-8096-2d9f8c913458", "text": "\u72d7\u5feb\u4e50\u5730\u5954\u8dd1\u4e865\u79d2\u949f\u3002"} +{"id": "2001684", "video_name": "677aad5d-3c1c-578e-af71-85422010f351", "text": "\u7f8e\u56fd\u548c\u58a8\u897f\u54e5\u8fb9\u5883\u4e0a\u6709\u4e00\u8f86\u8b66\u8f66\u3002"} +{"id": "2001685", "video_name": "5888e755-4bc1-5063-afc6-1af266881880", "text": "\u5728\u4e2d\u5fc3\uff0c\u51fa\u73b0\u4e86\u4e00\u4efd\u7231\u3002"} +{"id": "2001686", "video_name": "44b53f9d-bd51-54d9-b715-0debd30143ec", "text": "\u5e26\u6709\u7ea2\u8272\u6cb9\u6f06\u7684\u753b\u7b14"} +{"id": "2001687", "video_name": "908ece6c-098e-5f4e-ae49-4f33e7087d85", "text": "\u4e9a\u6d32\u5973\u5b69\u8d64\u811a\u8dd1\u6b65\uff0c\u7a7f\u7740\u978b\u5b50\u3002"} +{"id": "2001688", "video_name": "d1431f4c-4360-5eff-823e-fd3ae5bddb5e", "text": "\u751f\u6210\u4e00\u4e2a\u611f\u4eba\u7684\u573a\u666f\uff0c\u63cf\u7ed81992\u5e74\u5df4\u5e03\u91cc\u6e05\u771f\u5bfa\u62c6\u9664\u7684\u60c5\u666f\u3002\u63cf\u7ed8\u5c18\u571f\u98de\u626c\uff0c\u7834\u788e\u7684"} +{"id": "2001689", "video_name": "f89c2ab9-2ac4-5627-872c-83c0e22f4677", "text": "\u963f\u62c9\u4f2f\u9f13\u624b\u56e2\u4f53\u70ed\u60c5\u6f14\u594f\u3002"} +{"id": "2001690", "video_name": "56404893-7b6f-5b88-b916-403cc8ce898d", "text": "\u5236\u4f5c\u4e00\u4e2a\u8d85\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u957f\u5ea6\u8d85\u8fc710\u79d2\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001691", "video_name": "2533b30e-af81-5465-9771-1f76a6fab0e8", "text": "\u8c01\u70b9\u4e86\u8fd9\u4e2a\u62ab\u8428\uff1f\uff08\u5b57\u4f53\uff1a\u590d\u53e4\uff09"} +{"id": "2001692", "video_name": "6376f579-a432-5481-b943-a4b125e71d19", "text": "\u5404\u79cd\u65cf\u7684\u4eba\u4eec\u805a\u96c6\u5728\u4e00\u8d77\u6b22\u8fce\u5e76\u89c1\u8bc1\u5f25\u8d5b\u4e9a\u7684\u5230\u6765\uff0c\u5f25\u8d5b\u4e9a\u7684\u964d\u4e34\u53d7\u5230\u6765\u81ea\u5929\u5802\u7684"} +{"id": "2001693", "video_name": "066fa8ef-076f-5a3d-9c98-8305585d7271", "text": "\u4e00\u7247\u95ea\u8000\u7740\u5149\u8292\u7684\u6d77\u6d0b\u548c\u6c99\u6ee9\uff0c\u5728\u591c\u665a\u683c\u5916\u7f8e\u4e3d\u3002\u6d77\u9762\u6563\u53d1\u7740\u6e29\u6696\u7684\u91d1\u8272\u5149\u8292"} +{"id": "2001694", "video_name": "e13dc157-d8ff-5e93-b3e4-16dfdedb67ff", "text": "\u5782\u76f4\u683c\u5f0f\u89c6\u9891\u3002\u9ed1\u8272\u706b\u5c71\u8352\u5730\u3002\u9ad8\u5927\u7684\u5b64\u7acb\u5854\u3002\u5854\u7684\u98ce\u683c\u662f\u6307\u300a\u6307\u73af\u738b\u300b\u4e2d\u7d22\u4f26\u4e4b\u5854\u3002\u5854\u9876"} +{"id": "2001695", "video_name": "28d7c4cf-fdb2-5093-8c99-0d2a3c973a3b", "text": "\u6bcf\u5e74\u5728\u6536\u83b7\u8282\u671f\u95f4\uff0c\u6751\u6c11\u4eec\u90fd\u4f1a\u805a\u96c6\u5728\u6a61\u6811\u4e0b\uff0c\u8868\u8fbe\u5bf9\u4e30\u6536\u7684\u611f\u6fc0\u4e4b\u60c5\uff0c\u5e76\u5bfb\u6c42\u672a\u6765\u7684\u6307\u5f15\u3002"} +{"id": "2001696", "video_name": "5cb3c8d5-8338-5353-82df-ff42079172fb", "text": "\u5c06\u56fe\u50cf\u4e2d\u7684\u4e66\u65cb\u8f6c\uff0c\u5236\u4f5c\u4e00\u672c\u56fe\u4e66\u4ea7\u54c1\u89c6\u9891\u3002"} +{"id": "2001697", "video_name": "fffe4168-620d-5e3f-bddd-13e6a43711c4", "text": "\u7ea2\u8272\u51fa\u53e3\u6807\u5fd7\uff0c\u53d1\u5149\uff0c\u4e09\u7ef4\u6e32\u67d3"} +{"id": "2001698", "video_name": "1d569d87-d509-5a85-8ce3-436d646e6eb6", "text": "\u5b69\u5b50\u7684\u7236\u6bcd\u966a\u540c\u5979\u5728\u7f8e\u4e3d\u7684\u82b1\u56ed\u91cc\u73a9\u800d\u3002\u8fd9\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u7b11\u3002\n\nSource sentence: the weather is sunny and warm, perfect for a"} +{"id": "2001699", "video_name": "c1e2ce0a-bc7f-5853-8500-8c7024507ab4", "text": "\u8db3\u7403\u5728\u6d77\u9f9f\u5934\u4e0a\u65cb\u8f6c\u30023D\u52a8\u753b\uff0c\u52a8\u6001\u3002"} +{"id": "2001700", "video_name": "e3f16aed-81f3-5963-b22c-c20ac4e3d59b", "text": "\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u9762\u5bf9\u9762\uff0c\u5e76\u79fb\u52a8\u5b83\u4eec\u7684\u773c\u775b\u3002"} +{"id": "2001701", "video_name": "da6d370e-0df0-5522-9886-7c5dde14d53f", "text": "\u4e94\u5c81\u7684\u5b69\u5b50\u7a7f\u7740\u6b63\u5f0f\u7684\u670d\u88c5\uff0c\u559d\u7740\u5496\u5561\uff0c\u5934\u53d1\u4e0a\u957f\u7740\u7070\u8272\u7684\u5934\u53d1\u3002"} +{"id": "2001702", "video_name": "484faaeb-d380-50df-84c9-0bcace2ccc85", "text": "\u4e00\u67b6\u94f6\u8272\u65e0\u6027\u522b\u673a\u5668\u4eba\uff0c\u6ca1\u6709\u5934\u53d1\uff0c\u4e0a\u534a\u8eab\u53ef\u4ee5\u770b\u5230\u5230\u819d\u76d6\u3002\u5b83\u77aa\u7740\u5f3a\u70c8\u7684\u76ee\u5149\u770b\u7740"} +{"id": "2001703", "video_name": "6b7e5bb0-1661-5bef-ad47-ef02a3f0e40e", "text": "\u4e24\u4e2a\u9500\u552e\u5458\u5728\u98de\u673a\u4e0a\u804a\u5929\uff0c\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "2001704", "video_name": "e94be4e0-acb2-5dd2-be62-4add6acb1103", "text": "\u76f8\u673a\u7206\u70b8\u4e86\uff0c\u5b57\u5e55\u663e\u793a12\u53f7(Modern\u5b57\u4f53)\u3002"} +{"id": "2001705", "video_name": "fae0f48c-eedc-5960-8138-06c6206f4491", "text": "\u521b\u4f5c\u4e00\u5f20\u63cf\u7ed8\u79cd\u7389\u7c73\u7684\u519c\u6c11\u7537\u5b50\u7684\u5f62\u8c61\u3002"} +{"id": "2001706", "video_name": "b54f8e5d-8bf0-5dfe-9da5-bd7afdb3cc0a", "text": "\u4e00\u5e45\u8272\u5f69\u6591\u6593\u7684\u58ee\u4e3d\u65e5\u51fa\u56fe\u753b\uff0c\u7528\u6e29\u6696\u7684\u6a59\u8272\u548c\u7c89\u8272\u6e32\u67d3\u4e86\u5929\u7a7a\u3002\u756a\u8304\u6258\u5c3c"} +{"id": "2001707", "video_name": "7784a228-d417-5be8-8ca9-75544086ff28", "text": "\u4e00\u4e2a\u81ea\u5df1\u7ffb\u9875\u5f88\u5feb\u7684\u65e5\u5386\u3002"} +{"id": "2001708", "video_name": "a23b26f3-f2a6-5b88-842a-bda373102ca6", "text": "\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u6c34\u6ef4\uff0c\u5e73\u9759\uff0c\u5b81\u9759\uff0c\u9759\u8c27\u7684\u5fae\u98ce\uff0c\u900f\u8fc7\u6811\u53f6\u7684\u4e00\u70b9\u9633\u5149\uff0c\u68ee\u6797\u3002"} +{"id": "2001709", "video_name": "b9aff035-5126-51fb-baf4-23504c6374a8", "text": "\u677f\u7403\u9884\u544a\u7247\uff0c\u5df4\u57fa\u65af\u5766\u5bf9\u5370\u5ea6\uff0c\u8fd0\u52a8\uff0c\u7403\u573a\u3002"} +{"id": "2001710", "video_name": "88658423-b8a2-55ba-bc3a-e529e7e66eac", "text": "\u5929\u4f7f\u822c\u7684\u5929\u4f53\u751f\u7269\uff0c\u5e26\u7740\u53d1\u5149\u7684\u7fc5\u8180\uff0c\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u6f02\u6d6e\u7740\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u53d1"} +{"id": "2001711", "video_name": "6f505bc6-0c2d-5a18-ad10-e1357698762b", "text": "\u52a0\u5165\u6700\u5c11\u7684\u52a8\u6001\u5143\u7d20\u5230\u5929\u7a7a\u548c\u6c34\u9762\u4e2d\uff0c\u4fdd\u6301\u753b\u9762\u4e2d\u7684\u4e00\u5207\u4e0d\u53d8\u3002"} +{"id": "2001712", "video_name": "c3763d96-f70c-5e60-a03b-7f035caf9203", "text": "\u5e9f\u5f03\u7684\u7ebd\u7ea6\u8857\u9053\u4e0a\u957f\u6ee1\u4e86\u4e1b\u6797\uff0c\u5929\u7a7a\u4e2d\u6709\u5f88\u591a\u98de\u72d0\u3002"} +{"id": "2001713", "video_name": "3b11d151-6f6c-5975-9f91-b03f334024e9", "text": "\u6d41\u7ebf\u578b\u661f\u9645\u5de1\u6d0b\u8230\u5728\u4f4e\u5730\u7403\u8f68\u9053\u4e0a\u79bb\u5f00\u5730\u7403\uff0c\u771f\u5b9e\u903c\u771f\u7684\u5f71\u50cf\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u955c\u5934\u5411"} +{"id": "2001714", "video_name": "30c27e82-3449-5e5a-ab49-6bc6d49d14f7", "text": "\u6f2b\u753b\u89d2\u8272\uff0c\u732b\u548c\u5c0f\u9e21\u5728\u7eff\u8272\u6e38\u4e50\u573a\u6325\u624b\u3002"} +{"id": "2001715", "video_name": "5042b03d-688a-560a-9a17-8a6c3797a5da", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u964d\u843d\u5728\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u68ee\u6797\u661f\u7403\u4e0a\uff0c\u4e24\u4e2a\u7a7f\u7740\u5b87\u822a\u670d\u7684\u4eba\u5f62"} +{"id": "2001716", "video_name": "32d956f5-f520-516e-bf8d-4aae40dbb10d", "text": "1700\u5e74\u7684\u5c0f\u578b\u6728\u8d28\u6cd5\u5c5e\u52a0\u62ff\u5927\u5821\u5792\u3002\u57ce\u95e8\u5f00\u542f\uff0c\u5c45\u6c11\u8fdb\u51fa\u3002\u4ece\u57ce\u95e8\u5916\u770b\u7684\u666f\u8c61\u3002\u5bbd\u9ad8\u6bd416:9\u3002"} +{"id": "2001717", "video_name": "fda88709-d41c-5cdb-9069-17edca102952", "text": "\u4fdd\u65f6\u6377\u5728\u6c99\u6f20\u4e2d\u6bd4\u8d5b\u3002"} +{"id": "2001718", "video_name": "aae950b1-99f9-58bb-babf-d224df06ce90", "text": "\u4e00\u53ea\u5409\u5a03\u5a03\u5728\u6708\u5149\u4e0b\u9a91\u9a6c\u768410\u79d2\u89c6\u9891\u3002"} +{"id": "2001719", "video_name": "216e83c5-4897-5b34-b54a-1a779407fddd", "text": "\u56db\u4e2a\u5c11\u5973\u59d0\u59b9\u5728\u623f\u95f4\u91cc\u542c\u7740\u590d\u53e4\u6b4c\u66f2\u54af\u54af\u7b11\u7740\u8df3\u821e\u3002"} +{"id": "2001720", "video_name": "87279b2f-e5ae-5424-a19e-32d6ab3524eb", "text": "\u53d8\u5f62\u7684\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u8ff7\u5e7b\u795e\u79d8\u5486\u54ee\u82cf\u683c\u5170\u5a01\u58eb\u5fcc\u6d4b\u8bd5\uff0c\u6f2b\u753b\u4e66\u98ce\u683c"} +{"id": "2001721", "video_name": "584a59a9-1bae-55a5-be25-373fbdfa13f0", "text": "\u521b\u9020\u4e00\u4e2a\u6829\u6829\u5982\u751f\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u8036\u7a23\u57fa\u7763\u5728\u718a\u718a\u706b\u7130\u4e2d\u884c\u8d70\uff0c\u6563\u53d1\u51fa\u5b81\u9759\u548c\u4fe1"} +{"id": "2001722", "video_name": "0f905b3b-638b-5c62-a536-4e0f743e1a14", "text": "FNAF\u53d8\u5f97\u66f4\u52a0\u6050\u6016\u4e86\u3002"} +{"id": "2001723", "video_name": "eb81f6a9-4ee4-50eb-9259-9fd22d7b273f", "text": "\u94c1\u4eba\u5728\u6ce2\u6d6a\u4e0a\u51b2\u6d6a\uff0c\u80cc\u540e"} +{"id": "2001724", "video_name": "4a7cd1d8-9a93-529d-ae21-8e8bb5485259", "text": "\u4e00\u4e2a\u771f\u5b9e\u903c\u771f\u7684\u7535\u5f71\uff0c\u4ee5\u8857\u9053\u89c6\u89d2\u5448\u73b0\u4e86\u4e00\u4e2a\u591c\u665a\u7684\u96e8\u4e2d\u8d5b\u535a\u670b\u514b\u672b\u4e16\u57ce\u5e02\u3002"} +{"id": "2001725", "video_name": "1a52cfc7-b63e-59ff-ba89-31b462ac5323", "text": "\u5728\u96f6\u91cd\u529b\u4e2d\uff0c\u4e00\u53ea\u7ea2\u8272\u7684\u773c\u775b\u54ed\u6ce3\u7740\u6cea\u6c34\u3002"} +{"id": "2001726", "video_name": "d792edc3-4ab5-5eaa-957b-4a349d3c1f98", "text": "\u7f51\u7edc\u786c\u4ef6\u548c\u7535\u7f06\uff0c\u5723\u8bde\u4e3b\u9898\u3002\u4fe1\u606f\uff1a\u5e7f\u57df\u7f51\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001727", "video_name": "9c870d4d-5ded-53c2-baf6-0175e0daa49b", "text": "\u4e00\u53ea\u9f20\u9a91\u624b\u7a7f\u8d8a\u4ed9\u5973\u68ee\u6797\u9a91\u884c\u3002"} +{"id": "2001728", "video_name": "3b0b8d60-a192-5acc-a42a-f867564c055e", "text": "\u8f83\u77ed\u7684\u6ce2\u957f\u4e0e\u7a7a\u6c14\u4e2d\u8f83\u5c0f\u7684\u9897\u7c92\u7269\u76f8\u4e92\u4f5c\u7528\u66f4\u5f3a\u3002"} +{"id": "2001729", "video_name": "7dca8f71-d24c-5356-a81a-5161f50e2014", "text": "\u5f3a\u6709\u529b\u7684\u624b\u62c9\u51fa\u4e00\u68f5\u5c71\u6942\u3002\u4ee5\u6f66\u8349\u7684\u94c5\u7b14\u753b\u98ce\u5448\u73b0\u9ed1\u767d\u98ce\u683c\u3002"} +{"id": "2001730", "video_name": "324f63c4-ce92-53e9-9ac4-bc7098b6519e", "text": "\u4e00\u53ea\u6bcd\u9e1f\u6e29\u67d4\u5730\u54fa\u80b2\u7740\u5979\u7684\u96cf\u9e1f\uff0c\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u7ed9\u540e\u4ee3\u63d0\u4f9b\u8425\u517b\u3002"} +{"id": "2001731", "video_name": "b6501db3-37a0-5151-a4e8-b90498c7837c", "text": "90\u5e74\u4ee3\u590d\u53e4\u52a8\u6f2b\uff0c\u661f\u9645\u573a\u666f\u6709\u5ca9\u77f3\u548c\u6d41\u661f\uff0c\u9ad8\u8d28\u91cf\u5168\u666f\u6570\u5b57\u63d2\u753b\uff0c\u5448\u73b0\u672a\u6765\u65e5\u672c\u592a\u7a7a\u7684\u8d5b\u535a"} +{"id": "2001732", "video_name": "e797ab26-3a59-5391-bad1-bdd9b3f6052d", "text": "\u75283D\u89d2\u8272\u4e0e\u53e6\u4e00\u4e2aMJO\u89d2\u8272\u5f00\u73a9\u7b11\uff0c\u771f\u5b9e\u89c6\u89d2\uff0c3D\uff0c\u5e7f\u89d2\u3002"} +{"id": "2001733", "video_name": "90e4bc0c-d480-551e-a3d9-61a29d801164", "text": "\u8759\u8760\u4fa0\u4ee5\u6f2b\u753b\u98ce\u683c\u7ad9\u5728\u9ad8\u7aef\u7684\u732b\u5973\u8eab\u4e0a\u3002"} +{"id": "2001734", "video_name": "68cfedde-25e6-5e98-ab21-7355b9e738a7", "text": "\u4e00\u4e2a\u6212\u6307\u76d2\u91cc\u6709\u4e00\u53ea\u72d7\u548c\u4e00\u53ea\u732b\u3002"} +{"id": "2001735", "video_name": "b1b9049d-42d4-51d1-8c7b-fe7dca27d199", "text": "\u4e00\u4efd\u89c6\u89c9\u4e0a\u4ee4\u4eba\u60ca\u53f9\u7684\u300a\u6b7b\u8005\u4e4b\u4e66\u300b\u5492\u8bed\u548c\u8c61\u5f62\u6587\u5b57\u7684\u5448\u73b0\uff0c\u5c55\u793a\u4e86\u88ab\u8ba4\u4e3a\u5bf9\u6b7b\u8005\u5177\u6709\u5f3a\u5927"} +{"id": "2001736", "video_name": "7394839d-38e8-54c4-9aeb-f2d99e57f4bc", "text": "\u5927\u8001\u864e\u4e0e\u5927\u9e1f\u5408\u5e76"} +{"id": "2001737", "video_name": "d1d3d9c7-3ec1-5411-8293-ea28d5880119", "text": "\u4f0a\u5854\u742a\u3001\u9a6c\u8fbe\u62c9\u3001\u4f69\u6069\u548c\u5e26\u571f\u4e00\u8d77\u5750\u7740\u559d\u5496\u5561\u3002"} +{"id": "2001738", "video_name": "06c61075-a911-57b8-a2a7-e3d5502767f5", "text": "\u673a\u5668\u4eba\u6c34\u6bcd\u6b63\u5360\u9886\u57ce\u5e02\uff0c\u5305\u62ec\u5de8\u578b\u9c7f\u9c7c\u3002"} +{"id": "2001739", "video_name": "378c3191-98cd-555b-b998-14fe02d7c1db", "text": "\u5979\u611f\u5230\u6b23\u559c\u7684\u662f\uff0c\u5723\u8bde\u6811\u7684\u753b\u9762\u4ece\u7eb8\u4e0a\u5347\u8d77\u3002\u5b83\u4e0d\u518d\u662f\u5e73\u9762\u7684\uff0c\u800c\u662f\u4e00\u9897\u95ea\u8000\u7740\u8282\u65e5"} +{"id": "2001740", "video_name": "a1d5e6f7-95e1-5ec7-9abe-ba9de8f240f4", "text": "\u4e00\u4e2a\u8d85\u8d8a\u6211\u4eec\u4e16\u754c\u7684\u9886\u57df\uff0c\u591c\u7a7a\u662f\u4e00\u5e45\u95ea\u70c1\u7740\u94bb\u77f3\u822c\u5149\u8292\u7684\u753b\u5e03\u3002\u8bb2\u8ff0\u4e00\u4f4d\u597d\u5947\u7684"} +{"id": "2001741", "video_name": "f4bba91e-646b-5698-9b29-20a6dd6639ed", "text": "\u4e00\u5e62\u7f8e\u4e3d\u7684\u623f\u5b50\u5750\u843d\u5728\u5c71\u4e18\u4e4b\u4e0a\uff0c\u4fef\u77b0\u7740\u4ee4\u4eba\u60ca\u53f9\u7684\u963f\u5c14\u5351\u65af\u5c71\u666f\u8272\u3002\u9e1f"} +{"id": "2001742", "video_name": "59975414-6aa2-5103-9a65-3a7669e20f70", "text": "\u753b\u4e00\u4e2a\u6668\u66e6\uff0c\u73b0\u5b9e\u4e0e\u5e7b\u60f3\u878d\u5408\u5728\u4e00\u8d77\u3002"} +{"id": "2001743", "video_name": "128e6fe0-2655-596f-8a9d-e2406c24ecd9", "text": "\u9ad8\u5927\u7684\u4eba\u5f62\u751f\u7269\uff0c\u7ea2\u8272\u773c\u775b\uff0c\u82cd\u767d\u7684\u76ae\u80a4\uff0c\u624b\u4e0a\u957f\u7740\u957f\u5251\uff0c\u8d70\u5728\u8bbe\u65bd\u7684\u9ed1\u6697\u8d70\u5eca\u4e0a"} +{"id": "2001744", "video_name": "b10d41f0-5898-5873-a86d-8c6d37fb60c6", "text": "\u7a7a\u6c14\u4f3c\u4e4e\u95ea\u70c1\u7740\u5947\u602a\u7684\u80fd\u91cf\uff0c\u800c\u6811\u6728\u4f4e\u58f0\u8bc9\u8bf4\u7740\u53e4\u8001\u7684\u79d8\u5bc6\u3002"} +{"id": "2001745", "video_name": "1f4b4318-aab2-5897-8e35-03db24691395", "text": "\u6d41\u661f\u5760\u5165\u6d77\u6d0b\uff0c\u5f15\u8d77\u6df7\u4e71\u3002"} +{"id": "2001746", "video_name": "e51ff02b-ff21-5799-a040-606d6a3d1058", "text": "\u7537\u4eba\u87ba\u65cb\u4e0b\u843d\u7684\u52a8\u753b\u98ce\u683c\u4e3aPatrick Nagel\u3002\u6781\u7b80\u4e3b\u4e49\u6d41\u884c\u827a\u672f\uff0c80\u5e74\u4ee3\uff0cvaporave\u7f8e\u5b66\uff0c\u54e5\u7279\u5f0f\u3002\u5de7"} +{"id": "2001747", "video_name": "f97b4dbd-5331-56ef-b54c-431e1755502d", "text": "\u5728\u9633\u53f0\u4e0a\u671b\u7740\u5e02\u533a\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u9ed1\u8272\u77ed\u53d1\uff0c\u767d\u5929\uff0c\u591a\u4e91\u7684\u5929\u6c14\uff0c\u6709\u4e9b\u96fe\u3002"} +{"id": "2001748", "video_name": "85092673-6db2-519f-88f9-7112710307d9", "text": "\u4e00\u5f20\u6bd4\u8428\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u7389\u5154\u770b\u7740\u6bd4\u8428\u5f00\u59cb\u6d41\u53e3\u6c34\u3002"} +{"id": "2001749", "video_name": "048d0f20-3e00-5e58-a9d3-ac967287c143", "text": "\u4e00\u5ea7\u65e5\u672c\u57ce\u5821\u77d7\u7acb\u5728\u8349\u539f\u4e0a\u5b64\u7acb\u65e0\u63f4\u3002\u91d1\u9c7c\u5f62\u72b6\u7684\u5668\u68b0\u4ece\u57ce\u5821\u4e2d\u53d1\u51fa\u7d2b\u8272\u6fc0"} +{"id": "2001750", "video_name": "0933d437-13fe-5683-87e8-48f42ca7e474", "text": "\u81ea\u62cd\u6846\u67b6\u56fe\u7247\u7528\u4e8e\u6d77\u5916\u6559\u80b2\u6d3b\u52a8\u3002"} +{"id": "2001751", "video_name": "52db36d4-5e06-53ed-ad7e-37259fe73909", "text": "\u4e00\u53ea\u5927\u7070\u72fc\u7684\u5f71\u5b50\u9010\u6e10\u8513\u5ef6\u5728\u6751\u5e84\u4f4f\u5b85\u7684\u5899\u4e0a\u3002"} +{"id": "2001752", "video_name": "b8eb1ed4-37ba-56cd-8a82-4659d1ce5fc1", "text": "\u6c34\u9f99\u98de\u8d8a\u6d77\u5578\u6ce2\u6d6a"} +{"id": "2001753", "video_name": "c778b542-0cd4-5720-b8a8-acb191db5354", "text": "\u5976\u725b\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u8d5b\u535a\u670b\u514b\u670d\u88c5\u3002"} +{"id": "2001754", "video_name": "f7935ed4-03be-5deb-8740-802d3fc9df14", "text": "\u8fd9\u4e2a\u6545\u4e8b\u662f\u4e00\u4e2a\u88ab\u9ed1\u6697\u5305\u56f4\u7684\u4fe1\u606f\u53d8\u6362\u6545\u4e8b\u3002"} +{"id": "2001755", "video_name": "db1fd169-ecb8-5b81-89de-debb9e07822e", "text": "\u53e4\u9547\u4e0a\u7684\u4eba\u4eec\u6f2b\u6b65\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001756", "video_name": "367f392a-8963-52b8-8a90-b8fc2c104511", "text": "\u5feb\u4e50\u7684\u59bb\u5b50\u5411\u5979\u7684\u4e08\u592b\u9053\u8c22\uff0c\u5c4b\u5185\u62cd\u6444\uff0c\u955c\u5934\u4ece\u4e0a\u65b9\u62cd\u6444\uff0c\u59bb\u5b50\u5fae\u7b11\u3002"} +{"id": "2001757", "video_name": "00fc148f-8685-5b55-b4fb-8de923b5debd", "text": "\u8bfa\u4e9a\u00b7\u6cd5\u5c14\u5fb7\u9a6c\u7279\u662f\u4e00\u4e2a\u6709\u7740\u91d1\u9ec4\u8272\u5934\u53d1\u3001\u68d5\u8272\u773c\u775b\u548c\u77ed\u53d1\u7684\u5c0f\u5973\u5b69\uff0c\u5979\u5728\u6f14\u594f"} +{"id": "2001758", "video_name": "40c1a5b1-cd9b-5702-9089-4e1b7d9f99f6", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\u5e8f\u5217\uff0c\u5c55\u793a\u5404\u79cd\u52a8\u7269\u5706\u5f62\u5f62\u6001\u7684\u4e2d\u5fc3\u7126\u70b9\u3002\u6bcf\u4e2a\u753b\u9762\u5e94\u8be5\u5c55\u793a\u4e0d\u540c\u7684\u52a8\u7269\uff0c\u5e76\u5f3a\u8c03\u8be5\u52a8\u7269\u7684\u5706\u5f62\u7279"} +{"id": "2001759", "video_name": "82b93490-d473-51a0-abfe-56964ad00d09", "text": "marble\n\n\u7ffb\u8bd1\uff1a\u7531\u767d\u8272\u5927\u7406\u77f3\u5236\u6210\u7684\u7948\u7977\u624b\u96d5\u50cf\u3002"} +{"id": "2001760", "video_name": "f837825b-f02b-5f56-a1fb-cfbd58f442be", "text": "\u751f\u65e5\u5e86\u795d\u4f1a\u4e0a\uff0c\u8721\u70db\u4f1a\u79fb\u52a8\u5e76\u7728\u773c\u775b\u3002"} +{"id": "2001761", "video_name": "c018fe46-4608-5846-a8a0-43253d6d80dd", "text": "\u88ab\u8d77\u4f0f\u7684\u5c71\u4e18\u73af\u7ed5\u7684\u8212\u9002\u5c0f\u6751\u5e84\uff0c\u5728\u661f\u5149\u7480\u74a8\u7684\u6674\u6717\u591c\u7a7a\u4e0b\u3002"} +{"id": "2001762", "video_name": "0697ff9c-daa2-5fe6-8c6e-8c7eb928c819", "text": "\u4e24\u53ea\u5c0f\u54c1\u72ee\u72ac\u5750\u5728\u6e56\u8fb9\uff0c\u597d\u5947\u5730\u770b\u7740\u516c\u56ed\uff0c8k\uff0c\u7535\u5f71\u822c\u7684\u50cf\u7d20\u98ce\u683c\u3002"} +{"id": "2001763", "video_name": "8a9f5d1e-e7c5-5946-bc03-344f9eed5906", "text": "\u4e00\u9996\u8bd7\u7684\u5bfb\u6c42\u4e4b\u773c\u4e2d\u7684\u767d\u8272\u6f29\u6da1\uff0c\u968f\u7740\u8bd7\u6b4c\u4e2d\u968f\u673a\u7684\u6587\u5b57\u5728\u9ad8\u901f\u65cb\u8f6c\u3002"} +{"id": "2001764", "video_name": "251060a7-0fc6-5c82-a1f1-91141b670599", "text": "\u65e5\u843d\u3001\u9ad8\u5c71\u3001\u5927\u74e6\u623f\u5c4b\u3001\u623f\u540e\u7684\u7af9\u6797\u3002"} +{"id": "2001765", "video_name": "0123893a-5d4b-56f5-9608-07f3b590974b", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5c0f\u5b66\u7537\u5b69\u548c\u4ed6\u7684\u7236\u6bcd\u7ad9\u5728\u4ed6\u4eec\u5c0f\u5b66\u524d\u9762\u3002 \n\nSource sentence: I love spending time with my family and friends. \n\u6211\u559c\u6b22\u548c\u5bb6\u4eba"} +{"id": "2001766", "video_name": "c09c9c5c-ecf5-5341-ae10-3207c22f779d", "text": "\u7535\u5f71\u5f0f\u62cd\u6444\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u4e00\u8f86\u6c7d\u8f66\u5728\u6d77\u6ee9\u4e0a\u7740\u706b\uff0c\u65e5\u843d\u706f\u5149\uff0c\u4e24\u4e2a\u7537\u4eba\u5750\u5728\u6c7d\u8f66\u65c1\u8fb9\u3002"} +{"id": "2001767", "video_name": "81ff1c50-83bf-5fe4-a42a-657f400c3ecd", "text": "\u4e00\u4e2a\u5173\u4e8e\u7ef4\u591a\u5229\u4e9a\u65f6\u4ee3\u7684\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e86\u4e00\u4e2a\u5962\u534e\u7684\u821e\u4f1a\uff0c\u4eba\u4eec\u5728\u7b11\u58f0\u548c\u821e\u8e48\u4e2d\u6b22\u805a\u3002"} +{"id": "2001768", "video_name": "b3134031-45e7-5d78-87de-079f3d3e8690", "text": "\u673a\u5bc6\u7684\u519b\u4e8b\u753b\u9762\u663e\u793a\u4e00\u67b6\u4e0d\u660e\u98de\u884c\u7269\u5728\u57fa\u8f85\u4e0a\u7a7a\u98de\u884c\u3002"} +{"id": "2001769", "video_name": "5cddb2bc-5468-5481-8d24-662b85d4c7c2", "text": "\u4eba\u7c7b\u5f71\u54cd\uff1a\u5c55\u793a\u4ee3\u8868\u4eba\u7c7b\u6d3b\u52a8\u7684\u573a\u666f\uff0c\u5982\u6355\u9c7c\u7f51\u548c\u8239\u53ea\uff0c\u5bf9\u6d77\u6d0b\u751f\u7269\u548c\u6d77\u6d0b\u73af\u5883\u6784\u6210\u5a01\u80c1"} +{"id": "2001770", "video_name": "034c643f-81b5-59d3-9be9-cf59ccd7d17d", "text": "\u5b87\u822a\u5458\u5728\u661f\u7a7a\u4e0b\u8df3\u821e\u3002"} +{"id": "2001771", "video_name": "3852ffa0-a1f7-595d-9532-2bcffe107076", "text": "Translation: \u98ce\u4e2d\u7684\u5c0f\u5973\u5b69"} +{"id": "2001772", "video_name": "293e0ea5-4fe2-54ed-9fb2-aaf3ce333105", "text": "\u89c6\u9891\u6807\u5fd7\u5e26\u6709JRB\u5b57\u6bcd\u3002"} +{"id": "2001773", "video_name": "34327fb9-a317-5618-8b76-4ff140dc5aa2", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u6d77\u5578\u88ad\u51fb\u4e86\u4e00\u4e2a\u5c0f\u9547\u3002"} +{"id": "2001774", "video_name": "9d104724-a36f-53ad-8157-a2a59b1dee05", "text": "\u6e90\u53e5\uff1a\u4f0a\u4fc4\u662f\u5438\u5f15\u529b\u548c\u6392\u65a5\u529b\u7684\u4e00\u5207\u7269\u8d28\u529b\u91cf\u7684\u603b\u4f53\uff0c\u662f\u8fde\u63a5\u73b0\u5b9e\u7684\u80fd\u91cf\u7684\u667a\u80fd\u5316\u8868\u73b0\u3002\u5b83\u5728\u7269"} +{"id": "2001775", "video_name": "acb210e8-caa9-5501-aac2-b14cd3a5b59c", "text": "\u591c\u665a\u8d85\u8dd1\u5728\u5efa\u7b51\u7269\u9876\u90e8\u6f02\u79fb"} +{"id": "2001776", "video_name": "05b8a639-c36a-5e98-8400-254db13725b8", "text": "\u4eba\u4eec\u5411\u4e00\u4f4d\u5973\u5b69\u6c42\u52a9\uff0c\u52a8\u753b\uff0c4k\uff0c\u903c\u771f\u3002"} +{"id": "2001777", "video_name": "cd1a36d6-dddb-5a69-810a-5137637c7842", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u9ad8\u7ba1\u5750\u5728\u540e\u5ea7\uff0c\u8eab\u540e\u6709\u7d2b\u8272\u706f\u5149\uff0c\u91c7\u75282D\u6e38\u620f\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u4f7f\u7528"} +{"id": "2001778", "video_name": "2c988dbc-ce3c-5938-ac6a-31deb08f5bbf", "text": "\u4e00\u4e2a\u9ea6\u5f53\u52b3\u5458\u5de5\u4ee5Jacob Backer\u7684\u98ce\u683c\u5728\u4e91\u7aef\u6f2b\u6b65\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u54aa\u5728\u6c99\u53d1\u4e0a"} +{"id": "2001779", "video_name": "fef1b9ad-533e-5142-af2c-723e3ae13939", "text": "\u5f53Raquel\u64e6\u53bb\u4e00\u6ef4\u6cea\u65f6\uff0c\u5947\u602a\u7684\u4e8b\u60c5\u53d1\u751f\u4e86\u3002\u5979\u5468\u56f4\u7684\u4e16\u754c\u4f3c\u4e4e\u53d8\u5f97\u6a21\u7cca\uff0c\u9010\u6e10\u6d88"} +{"id": "2001780", "video_name": "a81f0d7d-45e6-5b6a-a00b-ec8562a52899", "text": "\u88c1\u526a\u56fe\u50cf\u5236\u4f5c\u57ce\u5e02\u7535\u5f71\u6d77\u62a5\u3002\u8857\u9053\u3001\u706f\u5149\u3001\u70df\u96fe\u548c\u8c6a\u8f66\u90fd\u5728\u80cc\u666f\u4e2d\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001781", "video_name": "07cc5fc4-4096-53d2-9684-a8b29298694b", "text": "\u521b\u5efa\u4e00\u4e2a\u767d\u8272\u80cc\u666f\u76844K\u5de7\u514b\u529b\u68d2\u56fe\u50cf\u3002"} +{"id": "2001782", "video_name": "a7a42b78-63d4-5e13-8296-0f3db1bb9d62", "text": "\u4e00\u4e2a\u4eba\u5728\u6c34\u4e0a\u5954\u8dd1\u7684\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2001783", "video_name": "50ef32d7-6d91-59f6-9d13-54997e7298cc", "text": "\u4e00\u4e2a\u5c0f\u9ec4\u72d7\u7ad9\u5728\u82b1\u56ed\u91cc\u3002"} +{"id": "2001784", "video_name": "dc68279c-f296-5af4-b83d-d2710aa5012e", "text": "\u6db2\u6001\u5de7\u514b\u529b3D\u98ce\u683c\u7684\u771f\u5b9e\u6d41\u52a8\u843d\u5728\u76d8\u5b50\u4e0a\u7684\u997c\u5e72\u4e0a\uff0c\u6709\u7740Vray\u6e32\u67d3\u7684\u9634\u5f71\u3002"} +{"id": "2001785", "video_name": "459ff33d-17b0-5178-a671-d827d7d3a7c3", "text": "\u4e00\u652f\u519b\u961f\u5728\u7535\u5f71\u573a\u666f\u4e0a\u5f00\u5766\u514b\u3001\u88c5\u7532\u8f66\u3001\u6218\u6597\u673a\u548c\u76f4\u5347\u673a\u3002"} +{"id": "2001786", "video_name": "ad848b19-7024-5ee1-a25e-9209887c72f5", "text": "\u8d85\u903c\u771f\u7684\u7f51\u683c\u7ebf\u4e09\u7ef4\u7a7a\u95f4\u8ff7\u5bab\uff0c\u5e26\u7740\u771f\u6b63\u7f24\u7eb7\u7684\u7ebf\u6761\u548c\u524d\u8fdb\u7684\u52a8\u6001\u3002"} +{"id": "2001787", "video_name": "ce97c4c5-e86e-5377-b903-0cc2ba8201ad", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u88ab\u9ed1\u8272\u9762\u7eb1\u8986\u76d6\u7684\u5973\u4eba\u7a7f\u8fc7\u57c3\u53ca\u519c\u6751\u7684\u7389\u7c73\u7530\u3002\u591c\u665a\uff0c\u6ee1\u6708\u7167\u4eae\u4e86"} +{"id": "2001788", "video_name": "a642fb33-6749-59cf-b150-e0d1df50e59a", "text": "\u4e0a\u5e1d\u4ee5\u4ed6\u7684\u667a\u6167\uff0c\u4ee5\u7535\u5f71\u5f0f\u76848K\u753b\u9762\uff0c\u770b\u5b88\u7740\u6211\u3002"} +{"id": "2001789", "video_name": "976712fb-4568-52bd-b758-a35aea126be9", "text": "\u4e00\u53ea\u5e26\u6709\u8fa3\u6912\u56fe\u6848\u7684\u5496\u5561\u676f"} +{"id": "2001790", "video_name": "6e923555-5147-5d7f-88e3-fcf961704293", "text": "\u706b\u8f66\u4ee5\u9ad8\u901f\u79bb\u5f00\u57ce\u5e02\uff0c\u6700\u540e\u4e00\u8282\u8f66\u53a2\u524d\u7a97\u53e3\u7684\u666f\u8c61\u3002"} +{"id": "2001791", "video_name": "591d6b6d-7c63-5140-b35c-92dc14935694", "text": "\u7a7f\u7740\u7c89\u8272\u9762\u7eb1\u7684\u5973\u5b50\u5954\u8dd1\u5728\u7531\u91d1\u5e01\u6784\u6210\u7684\u5c71\u5761\u4e0a\u3002"} +{"id": "2001792", "video_name": "4c942b9d-bf74-5bc1-9d54-0f897ea0dcc0", "text": "\u4e00\u4e2a\u7537\u4eba\u4f7f\u7528\u5149\u5251\u4e0e\u81f4\u547d\u7684\u673a\u68b0\u4eba\u6218\u6597\u3002"} +{"id": "2001793", "video_name": "472c987e-33b0-5996-bf2f-dc64d881dab2", "text": "\u5e9f\u5f03\u5efa\u7b51\u91cc\u4e00\u6bb5\u6d41\u9b3c\u4e0b\u697c\u7684\u8001\u89c6\u9891\u3002"} +{"id": "2001794", "video_name": "3551a5c6-0934-5bfe-b84c-028d42a33198", "text": "\u9a6c\u8fbe\u52a0\u65af\u52a0\u7684\u6731\u5229\u5b89\u56fd\u738b\u53d8\u6210\u4e86\u4e00\u53ea\u72fc\u5e76\u568e\u53eb\u3002"} +{"id": "2001795", "video_name": "d966fbf3-9f76-5447-bfe2-621b27963641", "text": "\u4eba\u7c7b\u572820\u4e16\u7eaa20\u5e74\u4ee3\u7684\u7ebd\u7ea6\u9f99\u56ed\u91cc\u8d70\u52a8\uff0c\u8fd9\u662f\u73cd\u8d35\u7684\u7535\u5f71\u7247\u6bb5\u3002"} +{"id": "2001796", "video_name": "96acc705-e0c3-5305-8539-3239940c1771", "text": "\u4e00\u4f4d\u5973\u5b50\u5728\u5c71\u8c37\u4e2d\u5954\u8dd1\uff0c\u524d\u65b9\u662f\u65e0\u5c3d\u7684\u5730\u5e73\u7ebf\u3002"} +{"id": "2001797", "video_name": "cd3a3a69-39b1-502c-b9d2-fb725b21513a", "text": "Translation: \u4e00\u4e2a\u53ef\u7231\u7684\u5b69\u5b50\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u6beb\u65e0\u7275\u6302\u3002\u5361\u901a\u3002"} +{"id": "2001798", "video_name": "0340315b-049d-547c-8e4d-714d72bac6bd", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u4f4d\u4e8e\u9ad8\u8038\u5c71\u811a\u4e0b\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u963f\u5f17\u62c9\u5409\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\u3002"} +{"id": "2001799", "video_name": "1b5590c3-bc51-56b8-8619-a32cf231b02e", "text": "\u6709\u611f\u77e5\u80fd\u529b\u7684\u673a\u5668\u4eba\u62ef\u6551\u4eba\u7c7b\u81ea\u5df1\u3002"} +{"id": "2001800", "video_name": "5f699027-ecd6-53a4-8c57-17bc7cbe104d", "text": "\u4eba\u4eec\u572870\u5e74\u4ee3\u8d70\u8fc7\u8857\u9053\u65f6\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u90a3\u4e2a\u65f6\u4ee3\u7684\u5f69\u8272\u6c7d\u8f66\u3002"} +{"id": "2001801", "video_name": "15986efb-236c-5e29-a8b4-43216910509e", "text": "\u5b57\u6bcdK\u548c\u5b57\u6bcdZ\u6f02\u6d6e\u7684\u52a8\u753b\u3002"} +{"id": "2001802", "video_name": "77309ea7-2ffc-5cc8-a1a0-0f2939a341b8", "text": "\u51a0\u72b6\u75c5\u6bd2\u5f62\u72b6\u7684\u95e8\u88ab\u6253\u5f00\u7684\u7167\u7247\u3002\n\nSource sentence: The pandemic has caused widespread economic and social disruption. \n\n\u8fd9\u573a\u5927\u6d41\u884c\u75c5\u5f15\u8d77\u4e86\u5e7f"} +{"id": "2001803", "video_name": "0958b2c1-0470-5350-820b-f9b44ba022e9", "text": "\u90a6\u62c9\u5360\u4e4b\u6218 \u6444\u5f71\u8fd0\u52a82 18\u5e27\u6bcf\u79d2"} +{"id": "2001804", "video_name": "6669232a-33b8-5f04-9cc1-6d5c98984598", "text": "\u7ea2\u79fb\u4eba\u5de5\u667a\u80fd\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u7684YouTube\u9891\u9053\u4ecb\u7ecd\u3002"} +{"id": "2001805", "video_name": "b63baf8b-bb40-53ca-88f6-b24c326a0be6", "text": "\u7f8e\u4e3d\u7684\u65e5\u672c\u57ce\u5e02\uff0c\u591c\u666f\u57ce\u5e02\uff0c4K\uff0c\u96e8\u5929 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "2001806", "video_name": "b1bcdf2a-f87f-5b79-bc05-a6df5438dd21", "text": "30\u5c81\u7684Shyam\u5e26\u7740\u5fae\u7b11\u51fa\u5e2d\u3002"} +{"id": "2001807", "video_name": "e30fcbcb-09f7-5eb4-9ffd-b87ca1d55785", "text": "\u4e00\u4e2a\u5723\u4eba\u5728\u5c71\u9876\u4e0a\u7ed9\u4ed6\u7684\u95e8\u5f92\u63d0\u4f9b\u5efa\u8bae\u3002"} +{"id": "2001808", "video_name": "5f1566ab-ded8-501e-ad70-1f126c58f9fa", "text": "\u4e00\u4f4d\u624d\u534e\u6a2a\u6ea2\u7684DJ\u73b0\u573a\u8868\u6f14\uff0c\u5e26\u6709\u52a8\u753b\u6548\u679c\u3002"} +{"id": "2001809", "video_name": "250ae368-b576-5512-95cb-e954ed2f8a5b", "text": "\u56db\u4e2a\u5929\u4f7f\u88ab\u57cb\u5728\u5e7c\u53d1\u62c9\u5e95\u6cb3\u4e0b\u65b9\u3002"} +{"id": "2001810", "video_name": "78d26080-05ac-5322-981c-03c13fa480da", "text": "\u4e24\u540d\u5546\u7528\u98de\u673a\u9a7e\u9a76\u5458\u5728\u9a7e\u9a76\u8231\u5185\u770b\u5230\u4e00\u53ea\u7f51\u7403\u5728\u4ed6\u4eec\u524d\u9762\u98de\u5411\u5929\u7a7a\uff0c\u7136\u540e\u4ed6\u4eec\u8f6c\u8fc7\u5934\u770b\u7740\u5bf9\u65b9\uff0c"} +{"id": "2001811", "video_name": "c63c6e88-0092-506b-bdb2-978866ff3f49", "text": "\u95ea\u70c1\u7684\u8fea\u65af\u79d1\u9b54\u5492\uff0c\u50cf\u8ff7\u5e7b\u836f\u4e00\u6837\u7684\u821e\u52a8\u706f\u5149\u3002 \n\nSource sentence: The cat jumped over the fence and landed gracefully on the"} +{"id": "2001812", "video_name": "3780241f-bd91-5f0e-883f-53354211b5ef", "text": "\u5e03\u9c81\u514b\u6797\u7684\u5a01\u5ec9\u65af\u5821\u5927\u6865\u4e0a\u65b9\u5347\u8d77\u7684\u592a\u9633\u3002"} +{"id": "2001813", "video_name": "7b166d1c-46be-5a1f-a7fd-68da06148538", "text": "\u591a\u53ea\u624b\u7a81\u7136\u4f38\u51fa\u6765\uff0c\u5411\u5916\u6c42\u6551\uff0c\u8d85\u73b0\u5b9e\u68a6\u5e7b\u98ce\u683c\uff0c\u5e26\u6709\u9ed1\u6697\u8bfa\u74e6\u5c14\u98ce\u60c5\u3002"} +{"id": "2001814", "video_name": "7dd32aef-0ac2-5a8d-b04d-b9c4f9677fb6", "text": "\u4e00\u53ea\u732b\u4ee5\u52a8\u6f2b\u98ce\u683c\u5403\u6389\u4e86\u4e00\u4e2a\u4eba\u3002"} +{"id": "2001815", "video_name": "4d654a04-0562-530c-b314-8bdb1f0a8ff4", "text": "\u521b\u4f5c\u4e00\u90e8\u6050\u6016\u7535\u5f71\u9884\u544a\u7247\uff0c\u5176\u4e2d\u60ac\u7591\u548c\u6050\u6016\u4ea4\u7ec7\u5728\u4e00\u8d77\u3002\u4f7f\u5176\u903c\u771f\uff0c\u770b\u8d77\u6765\u50cf\u4e00\u90e8\u7535\u5f71\u9884\u544a\u7247"} +{"id": "2001816", "video_name": "94f8f8fc-e39f-51bf-b188-cd3b06cd89c6", "text": "\u7334\u5b50\u5728\u68ee\u6797\u91cc\u548c\u8bb8\u591a\u52a8\u7269\u548c\u9e1f\u513f\u4e00\u8d77\u8fc7\u7740\u5feb\u4e50\u7684\u751f\u6d3b\uff0c\u5982\u540c\u7535\u5f71\u4e00\u822c\u3002"} +{"id": "2001817", "video_name": "b26e6b10-90e1-58a0-948e-dd6f2ef68032", "text": "\u90a3\u4e2a\u7537\u4eba\u4ece\u8f66\u91cc\u51fa\u6765\u4e86\u3002"} +{"id": "2001818", "video_name": "4d3cf2a8-329b-5b7a-8f73-556eeee45fae", "text": "\u591c\u8def\u4e0a\u7684\u9b3c\u9b42\uff0c\u6050\u6016\u7684\u773c\u775b\uff0c\u624b\u6162\u6162\u5730\u79fb\u52a8\uff0c\u4ee4\u4eba\u5728\u5348\u591c\u65f6\u5206\u770b\u5230\u540e\u611f\u5230\u5bb3"} +{"id": "2001819", "video_name": "2b034e4c-fd34-5649-b492-c669fd47685c", "text": "\u4e00\u4f4d\u667a\u8005\u5728\u6708\u5149\u4e0b\u5230\u8fbe\u4e00\u4e2a\u8c26\u5351\u7684\u5bb6\u5ead\u3002"} +{"id": "2001820", "video_name": "446c41df-e4ca-5389-9a6f-b5f60348aa58", "text": "translation: \u5c71\u4e0a\u67095\u540d\u65c5\u884c\u8005\uff0c\u54c1\u8d28\u4f18\u826f\u3002"} +{"id": "2001821", "video_name": "e2a63c62-b74e-5226-9c72-3c007921c1d7", "text": "1980\u5e74\u4ee3\u7684\u8c6a\u534e\u8f7f\u8f66\u8bd5\u56fe\u5728\u8d5b\u9053\u4e0a\u907f\u514d\u649e\u8f66\u3002"} +{"id": "2001822", "video_name": "bab39075-ccfc-522e-a6b6-d9c7d2b55beb", "text": "\u5ba2\u5385\u91cc\u6709\u4e00\u53f0\u65e7\u9ec4\u8272\u7535\u89c6\uff0c\u9002\u5408\u6240\u6709\u4eba\u89c2\u770b\u3002"} +{"id": "2001823", "video_name": "80a1fd41-f3cb-513c-a695-0769beced1cb", "text": "\u5fae\u5fae\u4ef0\u5934\u5fae\u7b11\u3002"} +{"id": "2001824", "video_name": "144e7ae1-4485-51b2-ba8c-2352146665ad", "text": "\u5341\u5b57\u519b\u9a91\u58eb\uff0c\u5728\u591c\u665a\u7684\u6218\u4e89\u4e2d\uff0c\u5728\u80cc\u666f\u4e2d\u6709\u6708\u4eae\uff0c\u4e00\u4f4d\u9a91\u7740\u9a6c\u7684\u9a91\u58eb\u7528\u5251\u6307"} +{"id": "2001825", "video_name": "fc691475-9bbf-5238-bf69-8eaf2e3d641f", "text": "\u5de5\u4f5c\u5ba4\u5409\u535c\u529b\u98ce\u683c\u7684\u5b69\u5b50\u4eec\u5728\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u800c\u9e1f\u513f\u5728\u4ed6\u4eec\u4e0a\u65b9\u98de\u7fd4\u3002\u8fd9\u662f\u6709\u8da3"} +{"id": "2001826", "video_name": "bfe8b8e0-5e8c-504f-9e1d-013ef13343ca", "text": "\u5723\u8bde\u6c1b\u56f4\uff0c\u96ea\u82b1\u98d8\u98d8\uff0c\u5b69\u5b50\u4eec\u5728\u8def\u4e0a\u5feb\u4e50\u5730\u73a9\u800d\uff0c\u7559\u4e0b\u4e00\u4e32\u811a\u5370\u3002"} +{"id": "2001827", "video_name": "4c882fc0-0781-540b-994c-88cf6f7f879d", "text": "\u4e00\u7247\u6b7b\u5bc2\u7684\u68ee\u6797\uff0c\u8ff7\u96fe\u7b3c\u7f69\uff0c\u5706\u6708\u5f53\u7a7a\uff0c4K\u753b\u8d28\uff0c\u4e00\u90e8\u6050\u6016\u7535\u5f71\u3002"} +{"id": "2001828", "video_name": "412cd123-51ab-518b-944d-029915584f7e", "text": "\u5370\u5ea6\u7537\u5973\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u4ee3\u8868\u7740\u5370\u5ea6\u5b58\u5728\u7684\u5404\u79cd\u4e0d\u540c\u6587\u5316\u3002"} +{"id": "2001829", "video_name": "204d8074-6612-5895-8bd0-daef7c0c3482", "text": "\u4e00\u4e2a\u5e26\u7740\u773c\u775b\u548c\u5fae\u7b11\u7684\u6708\u997c"} +{"id": "2001830", "video_name": "a1df76a5-f3c5-5064-a7ee-680417517842", "text": "\u5de8\u5927\u7684\u7a3b\u8349\u4eba\u7ad9\u5728\u4e00\u7247\u7530\u91ce\u4e0a\uff0c\u5448\u73b0\u4e09\u7ef4\u52a8\u6001\u3002"} +{"id": "2001831", "video_name": "1e21b75e-04ca-56f3-a38c-54c5fa356c9a", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u6c99\u53d1\u4e0a\u542c\u97f3\u4e50\uff0c\u5934\u540e\u4ef0\uff0c\u671b\u7740\u5929\u82b1\u677f\u3002\u6444\u50cf\u5934\u5728\u5979\u7684\u4e0a\u65b9\uff0c\u4fef\u89c6\u5979\u7684\u8138"} +{"id": "2001832", "video_name": "367f92d2-c614-529b-ba92-66e573ef9c22", "text": "\u70db\u5149\u65c1\u7684\u9ec4\u8272\u7c89\u7897\u65c1\u5347\u8d77\u4e86\u6b7b\u4ea1\u4e4b\u7075\u7684\u70df\u96fe\u3002"} +{"id": "2001833", "video_name": "58c8d9a5-4ec2-53ab-92a5-355ee3ed978f", "text": "\u4e00\u4e2a\u5973\u4eba\u4f18\u96c5\u5730\u8bf4\u8bdd\uff0c\u542c\u4f17\u611f\u5230\u6109\u60a6\u548c\u5feb\u4e50\uff0c3D\u52a8\u753b\uff0c\u7535\u5f71\u955c\u5934\u3002"} +{"id": "2001834", "video_name": "c556ef9e-f4ee-58b5-a7bf-a965d3701f16", "text": "\u4ee5\u67e5\u5c14\u65af\u00b7\u4f2f\u6069\u65af\u98ce\u683c\u4e3a\u57fa\u7840\u521b\u4f5c\u7684\u4f0a\u5409\u00b7\u6ce2\u666e1990\u5e74\u4ee3\u6f2b\u753b\u4e13\u8f91\u3002"} +{"id": "2001835", "video_name": "964c059c-6a54-5db3-abeb-51dff5735b5e", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u9999\u6e2f\u7ef4\u591a\u5229\u4e9a\u6e2f\u591c\u666f\uff0c\u8bb8\u591a\u98de\u884c\u5668\u5728\u6d77\u4e0a\u98de\u8fc7\uff0c\u98ce\u683c"} +{"id": "2001836", "video_name": "1de60648-ba8d-51cb-812e-92c0b8005a5e", "text": "\u975e\u5e38\u597d\u3002\u89d2\u8272\u5e94\u8be5\u5728\u4fa7\u9762\u53ef\u89c1\u3002"} +{"id": "2001837", "video_name": "9b0b2cf5-c87b-522d-a373-1b2cca49063e", "text": "\u8fd9\u6b21\u51b2\u7a81\u5e76\u6ca1\u6709\u89e3\u51b3\u8fd9\u573a\u4e89\u7aef\uff0c\u4f46\u5b83\u786e\u5b9e\u8ba9\u7f8e\u56fd\u548c\u82cf\u8054\u53c2\u4e0e\u5176\u4e2d\uff0c\u8fd9\u5bf9\u968f\u540e\u8d85\u7ea7\u5927\u56fd\u5728\u8be5\u5730\u533a\u7684\u6d89"} +{"id": "2001838", "video_name": "9c86a49f-4661-5e0a-9be8-c84e5a6c6203", "text": "\u4e00\u53ea\u9e1f\u8bd5\u56fe\u98de\u5374\u5931\u8d25\u4e86\uff0c\u6444\u50cf\u673a\u653e\u5927\u62cd\u6444\u3002"} +{"id": "2001839", "video_name": "a6bd0963-bdfb-5198-b946-023946f1c327", "text": "\u67e5\u5c14\u65af\u00b7\u5df4\u8d1d\u5947\u5728\u5de5\u7a0b\u5e08\u8f66\u95f4\u91cc\u5efa\u9020\u673a\u5668\u4eba\u7684\u83f2\u5229\u666e\u00b7\u54c8\u5c14\u65af\u66fc\u7167\u7247\uff0c\u4f7f\u7528\u4f73\u80fd\u955c\u5934\u548c64"} +{"id": "2001840", "video_name": "e42d9865-1901-5ee6-8877-fb911854d38c", "text": "\u5728\u6c99\u6f20\u666f\u89c2\u4e2d\uff0c\u4e00\u53ea\u9a86\u9a7c\u6b63\u5728\u884c\u8d70\u3002"} +{"id": "2001841", "video_name": "b262dbea-5c73-540f-b060-a8a06efb5953", "text": "\u5728\u4e00\u4e2a\u771f\u5b9e\u7684\u7535\u5f71\u65f6\u4ee3\u5e7f\u573a\u57ce\u5e02\u666f\u89c2\u4e2d\uff0c\u4e00\u4e2a\u5f62\u72b6\u4e3a\u5de8\u5927\u9ec4\u8272\u80a5\u732b\u7684\u602a\u517d\u6467\u6bc1\u5efa\u7b51\u7269\u5e76\u5413"} +{"id": "2001842", "video_name": "e94f484d-cd41-536b-b852-b5a6237b2392", "text": "\u6d77\u4e2d\u5de8\u578b\u6d77\u602a\u5728\u884c\u8d70\uff0c\u98ce\u66b4"} +{"id": "2001843", "video_name": "9a0293d4-6bf5-5414-9495-8c26b7ef6169", "text": "\u6751\u6c11\u4eec\u60ca\u8bb6\u5730\u770b\u7740\u3002"} +{"id": "2001844", "video_name": "7f1a7c67-f975-5443-8b32-2e211ed79fc2", "text": "\u4e3a\u4ec0\u4e48\u4e0d\u5e94\u8be5\u51b2\u6ce1\u5496\u5561\u592a\u957f\u65f6\u95f4\uff1a\u56e0\u4e3a\u51b2\u6ce1\u4f1a\u5e26\u8d70\u4e00\u4e9b\u82b3\u9999\u7269\u8d28\u5e76\u805a\u96c6\u5728\u5496"} +{"id": "2001845", "video_name": "2c909710-b223-5bf7-838d-f8e43a1d0085", "text": "\u73b0\u5b9e\u573a\u666f\u98ce\u683c\uff0c\u5f00\u573a\u7684\u5f69\u8272\u753b\u9762\uff0c\u4e00\u4e2a\u5fd9\u788c\u7684\u7537\u4eba\uff0c\u5306\u5fd9\u7a7f\u8fc7\u57ce\u5e02\u7e41\u534e\u7684\u8857\u9053\uff0c\u591c\u665a\u3002"} +{"id": "2001846", "video_name": "e084e82a-1fcf-5659-8015-46f97445992d", "text": "\u710a\u5de5\u4f7f\u7528\u7eff\u8272\u710a\u63a5\u7535\u6781\u5bf9\u8239\u8236\u8fdb\u884c\u710a\u63a5\u3002"} +{"id": "2001847", "video_name": "7e2bc4dd-2737-5235-ae98-c3c600858c53", "text": "\u597d\u5947\u5fc3\u5438\u5f15\u5979\u8fdb\u5165\uff0c\u90a3\u91cc\u7684\u9634\u5f71\u5a01\u80c1\u6027\u5730\u8df3\u7740\u821e\u3002"} +{"id": "2001848", "video_name": "7c138d73-5232-57df-890e-2ea79874697e", "text": "\u300a\u9a6c\u54c8\u5df4\u62c9\u5854\u300b\u4e2d\u7684\u573a\u666f\uff0c\u5fb7\u62c9\u4e4c\u5e15\u8fea\u88ab\u5265\u593a\u8863\u670d\uff0c\u6f58\u8fbe\u74e6\u5144\u5f1f\u7ad9\u5728\u5979"} +{"id": "2001849", "video_name": "6cdf8e48-63b0-5f98-899f-4e835b814751", "text": "\u611f\u8c22\u96ea\u82b1\u548c\u96ea\u82b1\u3002"} +{"id": "2001850", "video_name": "76f0a64c-5b9c-5af7-93d3-7610088244be", "text": "\u4e00\u6b3e\u65e8\u5728\u62ef\u6551\u4e16\u754c\u7684\u4ec1\u6148\u4eba\u5de5\u667a\u80fd\uff0c\u4e00\u4e2a\u5973\u6027\u7684\u6570\u5b57\u4ed9\u5b50\uff0c\u903c\u771f\u7684\uff0c\u5c0f\u53ee\u5f53\uff0c\u5149\u7684\u75d5"} +{"id": "2001851", "video_name": "bca99107-f2b2-55f4-bc1d-981be8f2cd2c", "text": "\u5728\u591c\u95f4\u57ce\u5e02\u9a7e\u9a76\uff0c\u8fd0\u52a84\uff0c\u4f4e\u89d2\u5ea6\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\uff0c\u65f6\u95f4\u52a0\u901f\u6444\u5f71\u3002"} +{"id": "2001852", "video_name": "6b931e2d-b4a9-5972-938f-a80e97859a0d", "text": "\u5730\u94c1\u8f66\u5185\uff0c\u53ef\u4ee5\u770b\u5230\u79d1\u5e15\u5361\u5df4\u7eb3\u6d77\u6ee9\u3002"} +{"id": "2001853", "video_name": "7d2df790-b126-5f15-afe9-2fd0190679a0", "text": "\u591c\u665a\u697c\u68af\u4e0a\u7684\u5f71\u5b50\u79fb\u52a8\u3002"} +{"id": "2001854", "video_name": "58fd2899-9216-5c23-9a26-ba0c5f0f6510", "text": "\u653e\u5c04\u6027\u7684\u50f5\u5c38\u62a5\u9053\u65b0\u95fb\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3001\u8bbd\u523a\u3001\u6050\u6016\u3001\u73b0\u5b9e\u4e3b\u4e49\u3001\u590d\u53e4\u98ce\u683c\u3002"} +{"id": "2001855", "video_name": "c3cdbbef-3d91-5aa4-8b72-6258b46e381f", "text": "\u4e00\u4e2a\u88ab\u79f0\u4e3a\u5f71\u4f1a\u7684\u9ed1\u6697\u90aa\u6076\u52bf\u529b\u4ece\u7981\u5fcc\u68ee\u6797\u6df1\u5904\u51fa\u73b0\u3002"} +{"id": "2001856", "video_name": "7e5734d7-ce18-55a6-aac3-da411f2df0b8", "text": "4K\u65e0\u5934\u9e21\u5728\u697c\u68af\u4e0a\u5954\u8dd1\u3002"} +{"id": "2001857", "video_name": "e040dafa-cdef-59c9-a8d7-e3191a8449d9", "text": "\u738b\u5ea7\u524d\u6709\u4e00\u7247\u50cf\u6c34\u6676\u822c\u7684\u73bb\u7483\u6d77\uff0c\u62e5\u67098K \u8d85\u903c\u771f\u7684\u7535\u5f71\u822c\u7eda\u4e3d\u7684\u8272\u5f69\uff0c\u5b9b\u5982"} +{"id": "2001858", "video_name": "001c4ad8-632a-5d65-af32-8cb109ce375e", "text": "\u51e0\u4f55\u5f62\u6001\u8fdb\u5165\u79d1\u5e7b\u65e9\u671f\u76843D\u56fe\u5f62\u9ed1\u8272\u548c\u7eff\u8272\u3002"} +{"id": "2001859", "video_name": "b5474e47-2c53-532a-a9f2-afa304ad2261", "text": "\u75283D\u5361\u901a\u7684\u98ce\u683c\u521b\u4f5c\u7684\u795e\u79d8\u7cfb\u5217\u52a8\u753b\uff0c\u5728\u6c99\u7279\u963f\u62c9\u4f2f\u7684\u6c99\u6f20\u4e2d\u8fdb\u884c\u9a86\u9a7c\u6bd4\u8d5b\uff0c\u53ef\u4f5c\u4e3a"} +{"id": "2001860", "video_name": "37faea09-8368-5349-8fe1-43d95b88ee24", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u623f\u95f4\u91cc\u5728\u7ebf\u5199\u535a\u5ba2\u3002"} +{"id": "2001861", "video_name": "fe7b4ff1-ad20-5899-8bf9-2dfa743dbaa6", "text": "\u4e09\u89d2\u5f62\u7684\u73b0\u4ee3\u623f\u5c4b\u5e10\u7bf7\u5728\u67d4\u548c\u7684\u96e8\u4e2d\u3002"} +{"id": "2001862", "video_name": "b4637702-38d5-5c15-ac26-339a4da83cf9", "text": "\u7d2b\u8272\u8dd1\u8f66\u98de\u9a70\u7740\u649e\u4e0a\u4e86\u4e00\u5835\u5899\uff0c\u968f\u540e\u7206\u70b8\u4e86\u3002\u903c\u771f\u76848K\u98ce\u683c\u3002"} +{"id": "2001863", "video_name": "dbec1a41-2692-5c0f-8d0c-9adb47ac668d", "text": "\u63cf\u7ed8\u51fa\u4e24\u5ea7\u5c71\u4e4b\u95f4\u7684\u65e5\u51fa\u3002"} +{"id": "2001864", "video_name": "c651e012-d0e5-5aff-a493-2631f7720cef", "text": "\u5409\u59c6\u00b7\u51ef\u745e\u4e0e\u52a8\u7269\u6218\u6597\uff0c\u4e0d\u65ad\u6218\u6597\uff0c4K\uff0c\u738b\u724c\u7279\u5de5"} +{"id": "2001865", "video_name": "296181c9-6ba1-586b-b3f8-a2f26c5a291e", "text": "\u7528\u4e19\u70ef\u989c\u6599\u5728\u6728\u677f\u4e0a\u7ed8\u5236\u4e86\u4e00\u4e2a\u903c\u771f\u76843D\u6548\u679c\u3002"} +{"id": "2001866", "video_name": "a1d61d4a-3bf5-5a8c-bfe6-6aae7c13ebbb", "text": "\u75af\u72c2\u7684\u89c6\u5dee\u8fd0\u52a8\u56fe\u5f62\u8eab\u4f53\u8fc7\u6e21\u878d\u5316\u91cd\u751f\u3002"} +{"id": "2001867", "video_name": "168b2a59-50a8-5aef-9f36-39aeafdb6c5e", "text": "\u76ae\u5361\u4e18\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u5e76\u95ea\u8000\u3002"} +{"id": "2001868", "video_name": "799e8373-3509-5997-aa12-757657fb9e2a", "text": "\u745e\u58eb\u57ce\u5e02\u4e2d\u7cd6\u679c\u7c89\u788e\u98ce\u683c\u7684\u7f29\u653e\u955c\u5934\u3002"} +{"id": "2001869", "video_name": "a4c44a4f-eaec-56ed-a2a0-4b479b69755a", "text": "\u4eba\u4eec\u770b\u5230\u5feb\u4e50\u7684\u7537\u5b69\u611f\u5230\u9ad8\u5174\u3002"} +{"id": "2001870", "video_name": "9ae69454-a5c1-51f4-acb8-3e993758bc7a", "text": "\u6df1\u591c\u4e2d\u6c89\u601d\u7684\u4eba\u3002 \n\nSource sentence: The sun is setting behind the mountains. \n\u592a\u9633\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "2001871", "video_name": "3b73f52b-b7aa-5d62-9200-6ef8717e6321", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u8857\u9053\u5f00\u59cb\u8df3\u821e\u3002"} +{"id": "2001872", "video_name": "4f6f8270-869d-50ab-b111-434b66b00f4f", "text": "\u7537\u4eba\u5728\u963f\u59c6\u65af\u7279\u4e39\u7684\u5496\u5561\u9986\u559d\u679c\u6614\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "2001873", "video_name": "985a6f97-b815-5393-96fc-738feb550ae5", "text": "\u5357\u83dc\u52a8\u6f2b\u516b\u516c\u72d7\u83b2\u670b\u514b\u6447\u6eda\u7ef4\u7ef4\u5b89\u7c89\u8272\u8349\u8393\u9ea6\u514b\u98ce\u95ea\u95ea\u53d1\u5149"} +{"id": "2001874", "video_name": "c24d8b40-6648-5115-ba68-9e94fef9e5c8", "text": "\u5386\u53f2\u535a\u7269\u9986\u3002\u5316\u77f3\u9cb8\u9f99\u7684\u9aa8\u67b6\u60ac\u6302\u5728\u535a\u7269\u9986\u4e2d\u5fc3\u3002\u4f60\u53ef\u4ee5\u770b\u5230\u5b83\u95ea\u4eae\u7684\u7259"} +{"id": "2001875", "video_name": "543d8252-82d0-5b5b-b41a-f4638de9b15f", "text": "\u4e00\u53ea\u6d41\u6d6a\u72d7\u5403\u9ec4\u74dc\u3002"} +{"id": "2001876", "video_name": "00e2fcc4-cfed-57bb-8d36-fcb79a5d36f3", "text": "\u5728\u665a\u4e0a\u6709\u4e00\u53ea\u72fc\u5728\u5954\u8dd1\u3002"} +{"id": "2001877", "video_name": "74877e48-9105-5826-babf-e6c5a7e49a23", "text": "\u975e\u5e38\u5f37\u70c8\u7684\u51b0\u51b7\u98a8\u6b63\u5728\u5439\u3002"} +{"id": "2001878", "video_name": "849d824e-9ea4-518d-ac16-d823673b165c", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u5199\u4fe1\uff0c\u5f00\u5fc3\u5730\u5fae\u7b11\u7740\u3002"} +{"id": "2001879", "video_name": "c354285a-03ab-506d-8b6e-0a0db089f97b", "text": "2D\u50cf\u7d20\u827a\u672f\u82f1\u96c4\u6325\u821e\u5251\u3002"} +{"id": "2001880", "video_name": "3e342984-e3e7-5c47-add1-07ef07a4ce89", "text": "\u52a0\u83f2\u732b\u770b\u7740\u5c4f\u5e55\u8bf4\u8bdd\uff0c\u4ee5\u52a0\u83f2\u5c14\u5fb7\u98ce\u683c\u5448\u73b0\u76843D\u3001\u8d85\u9ad8\u6e05\u30018K\u3001\u8d85\u9510\u5229\u3001\u5e7f\u89d2\u3001\u52a8\u753b"} +{"id": "2001881", "video_name": "f47f85bc-1995-5f2e-8e72-2c439b0f8237", "text": "\u751f\u6210\u4e00\u4e2a\u706f\u6ce1\u91cc\u9762\u6709\u4eba\u7684\u56fe\u50cf\uff0c\u771f\u5b9e\u611f\u56fe\u50cf\u3002"} +{"id": "2001882", "video_name": "d43efe5d-5f98-5550-82b9-6dcd87b22e19", "text": "\u5927\u8c61\u6b63\u9762\u7ad9\u7acb\u5e76\u4e0e\u6211\u4eec\u4ea4\u8c08\u3002"} +{"id": "2001883", "video_name": "b0e0410e-abe7-5999-b08d-9d67be483649", "text": "\u52a8\u753b\u7ed8\u753b\u5458\u5de5\u7533\u8bf7\u5de5\u4f5c\u901a\u8fc7\u9762\u8bd5\u3002"} +{"id": "2001884", "video_name": "d3119929-4c5c-5d57-800e-601d6285f757", "text": "\u7535\u5f71\u5de5\u4f5c\u5ba4\u7684\u7269\u54c1\u805a\u96c6\u5728\u201c\u5a31\u4e50\u201d\u4e00\u8bcd\u5468\u56f4\uff0c\u63a5\u7740\u7206\u7c73\u82b1\u55b7\u6d8c\u800c\u51fa\uff0c\u8986\u76d6\u4e86\u6574\u4e2a\u573a"} +{"id": "2001885", "video_name": "20f50347-2939-5852-a841-57b88ca9edcb", "text": "\u4e00\u4f4d\u6570\u5b57\u8425\u9500\u4eba\u5458\u5750\u5728\u7b14\u8bb0\u672c\u7535\u8111\u524d\uff0c\u6253\u7535\u8bdd\u7ed9\u67d0\u4eba\u3002"} +{"id": "2001886", "video_name": "6fd721bc-a77a-5a16-9556-7099bf48e6f4", "text": "\u5728\u54e5\u8c2d\u5e02\u7684\u665a\u4e0a\uff0c\u8759\u8760\u4fa0\u9a7e\u7740\u4e00\u8f86\u88c5\u7532\u8f66\u6cbf\u7740\u9053\u8def\u884c\u9a76\u3002"} +{"id": "2001887", "video_name": "81817cd2-35fc-582f-b11c-eeed1f0c669d", "text": "\u4e00\u4e2a\u5c0f\u732a\u9a91\u7740\u6469\u6258\u8f66\u3002\n\nSource sentence: The sun is shining brightly today. \n\n\u4eca\u5929\u9633\u5149\u660e\u5a9a\u3002"} +{"id": "2001888", "video_name": "2b441182-2ae1-5f09-a9f9-098160653589", "text": "\u5154\u5b50\u5728\u6700\u540e\u8868\u73b0\u51fa\u75b2\u60eb\u548c\u8c26\u5351\u7684\u8868\u60c5\u3002\u57284K 16:9\u4e2d\u3002"} +{"id": "2001889", "video_name": "b553bc7a-261f-5d07-988c-bdfc2de97911", "text": "\u5efa\u7b51\u5f3a\u8c03\u751f\u7269\u4eb2\u548c\u5143\u7d20\uff0c\u6469\u5929\u5927\u697c\u5916\u7acb\u9762\u6709\u4ee3\u8868\u706b\u7130\u7684\u7b26\u53f7\u3002"} +{"id": "2001890", "video_name": "72bc8856-a268-5987-a9d9-68f533d6224f", "text": "\u7f51\u7edc\u7a7a\u95f4\u672a\u6765\u4e3b\u4e49\u8bd5\u7ba1\u4e2d\u6f02\u6d6e\u7740\u6c34\u6bcd\u3002"} +{"id": "2001891", "video_name": "2c2dddc5-9304-531d-908d-7c3a4e183fe3", "text": "\u79fb\u52a8\u7684\u5ca9\u77f3\u6807\u5fd7\uff0c9:16\uff0c\u7c89\u7ea2\u5f17\u6d1b\u4f0a\u5fb7\uff0c\u672a\u6765\u4e3b\u4e49\uff0c5\u79d2\u949f\u957f\u3002"} +{"id": "2001892", "video_name": "236f6576-e283-5c33-ae8e-3d9efe731af6", "text": "\u4f0a\u65af\u5170\u6559\u3001\u660e\u4eae\u3001\u6e05\u771f\u5bfa\u3001\u7eff\u8272\u3001\u548c\u5e73\u3001\u6ca1\u6709\u706f\u82af\uff0c\u4ece\u4e0a\u9762\u7f29\u5c0f\u89c6\u89d2\u770b\u4e00\u770b\u3002"} +{"id": "2001893", "video_name": "6dba3a7c-2889-5ff6-a3cd-c2321bb6ccc9", "text": "\u7528\u54d1\u94c3\u4f5c\u4e3a\u6807\u5fd7\u7684\u89c6\u9891\u80cc\u666f\u52a8\u753b\uff0c\u6cbf\u5782\u76f4\u65b9\u5411\u79fb\u52a8\u3002"} +{"id": "2001894", "video_name": "e30adc6a-9e3f-5cd7-869d-7ffc6bc11a7a", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u73a9\u5f04\u7740\u9e1f\u513f\u3002\u96ea\u82b1\u7eb7\u98de\u7684\u7f8e\u4e3d\u81ea\u7136\uff0c\u4e00\u540d\u7537\u5b69\u5728\u6811\u540e\u5077\u5077"} +{"id": "2001895", "video_name": "0010b518-66cb-58ba-9ba2-5f97bdf5f877", "text": "\u7528\u4e00\u4e2a\u753b\u9762\u5f00\u59cb\uff0c\u63cf\u7ed8\u4e00\u4e2a\u5c0f\u800c\u5b81\u9759\u7684\u57ce\u9547\u3002\u5c55\u793a\u4e00\u4e2a\u6709\u623f\u5b50\u3001\u6811\u548c\u6674\u6717\u660e\u5a9a\u7684\u65e5\u5b50\u7684\u53e4\u96c5\u5c0f"} +{"id": "2001896", "video_name": "8ed65164-1054-5469-8ac0-1d0065e5788e", "text": "\u4e00\u4e2a\u9a91\u58eb\u572816:9\u7684gs 24\u753b\u9762\u4e2d\u5728\u96e8\u4e2d\u4e0e\u4e09\u4e2a\u6b66\u58eb\u5bf9\u5cd9\uff0c\u6162\u6162\u5730\u5411\u5916\u62cd\u6444\uff0c\u7f13"} +{"id": "2001897", "video_name": "7ec6f254-85c3-5341-8b80-994e2e870860", "text": "\u6d74\u5ba4\u5728\u4e00\u7247\u7eff\u8272\u7684\u7530\u91ce\u4e0a\uff0c\u85b0\u8863\u8349\u7530\u3001\u6162\u6446\u52a8\u7684\u8349\uff0c\u7d2b\u8272\u548c\u7eff\u8272\u7684\u8c03\u8272\u677f\uff0c4"} +{"id": "2001898", "video_name": "7a92b1c6-39a0-5252-9a67-8f7df7e00d06", "text": "\u72d7\u53d8\u8eab\uff0c\u6d41\u884c\u53d8\u6210\u4e86\u53ef\u7231\u7537\u5b69\u3002"} +{"id": "2001899", "video_name": "ded40284-ec14-5f24-ac12-88fbba4e260c", "text": "\u5b54\u5b50\u548c\u4ed6\u7684\u5f1f\u5b50\u5728\u591c\u91cc\u4e0b\u8f66\u79bb\u5f00\u4e86\u3002"} +{"id": "2001900", "video_name": "7b10c395-c051-5bd2-a58d-9169a584d439", "text": "\u9ed1\u8272\u6d82\u9e26\u5728\u65cb\u98ce\u822c\u7684\u7cdf\u7cd5\u65c5\u9014\u4e2d\u3002\u4fe1\u606f\uff1aPASSA PIU\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2001901", "video_name": "05279bbe-1a1d-5d69-a6d1-fb0000f1825a", "text": "\u7537\u4eba\u548c\u5973\u4eba\u8df3\u821e\u56db\u5904\u79fb\u52a8\uff1b\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u3002"} +{"id": "2001902", "video_name": "1b3010f9-74b5-5ba1-8ae2-eda716bfad61", "text": "\u7da0\u8272\u7684\u50e7\u4fb6\u9e1a\u9d61\u5728\u88dd\u98fe\u6709\u8056\u8a95\u88dd\u98fe\u7684\u8212\u9069\u6eab\u6696\u7684\u5bb6\u4e2d\u3002"} +{"id": "2001903", "video_name": "3aa230cd-189a-5daf-8004-1aacccfecac2", "text": "\u4ef2\u590f\u4e4b\u591c\u7684\u68a6\u5883\u542f\u8fea\u4e0b\uff0c\u7eff\u82d4\u76c8\u76c8\u7684\u7530\u91ce\u548c\u82b1\u5e8a\uff0c\u5728\u6708\u5149\u4e0b\uff0c\u7a7f\u7740\u95ea\u95ea"} +{"id": "2001904", "video_name": "67f45278-6e15-5439-b84f-1002f0ad2a50", "text": "\u9897\u7c92\u611f\u76848\u6beb\u7c73\u5f55\u50cf\u3001\u8840\u6708\u3001\u8352\u5e9f\u7684\u57ce\u5e02"} +{"id": "2001905", "video_name": "4722e466-835f-5185-9a87-e958eed5f079", "text": "\u773c\u775b\u4ece\u5de6\u5230\u53f3\u5e73\u7a33\u5730\u8f6c\u52a8\uff0c\u77b3\u5b54\u7f13\u6162\u5730\u6269\u5f20\uff0c\u5e76\u4ece\u84dd\u8272\u53d8\u6210\u7ea2\u8272\u3002"} +{"id": "2001906", "video_name": "d773da8c-8ace-58c5-97fb-364c9a76ca05", "text": "\u54c8\u91cc\u738b\u5b50\u548c\u6885\u6839\u516c\u7235\u592b\u4eba\u7a7f\u7740\u7687\u51a0\u4ece\u7206\u70b8\u706b\u707e\u4e2d\u51fa\u73b0\u3002"} +{"id": "2001907", "video_name": "e40cfb97-61f5-5caa-9f35-cc4cd0d34b05", "text": "\u5361\u8fea\u00b7B\u5f53\u9009\u7f8e\u56fd\u603b\u7edf\u3002"} +{"id": "2001908", "video_name": "24529f8b-a2f9-5061-9462-c0c2a0fc27f1", "text": "\u771f\u6b63\u7684\u7535\u5f71\u98ce\u683c\uff0c\u4e00\u4e2a\u65e5\u672c\u7537\u4eba\u8d70\u5728\u4e1c\u4eac\u8857\u9053\u4e0a\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "2001909", "video_name": "dec6f30d-a349-5a83-8b6a-585ae33f3c99", "text": "\u7b2c\u4e00\u53ea\u72d0\u72f8\u53bb\u627e\u519c\u592b\u3002 \n\nSource sentence: The sun is shining brightly today. \n\n\u4eca\u5929\u592a\u9633\u666e\u7167\u4e07\u7269\u3002"} +{"id": "2001910", "video_name": "840800bc-4f19-5d7f-a1c8-67b8de6979f2", "text": "\u7011\u5e03\u81ea\u7136\u666f\u89c2\u4e0b\uff0c\u5c0f\u9ed1\u9e1f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\uff0c\u903c\u771f\u3002"} +{"id": "2001911", "video_name": "6cc1064d-f4f3-5c0b-af07-21b6b8b7ec95", "text": "\u5c39\u932b\u6085\uff081960\u5e7412\u670818\u65e5\u51fa\u751f\uff09\u662f\u97d3\u570b\u653f\u6cbb\u5bb6\uff0c\u81ea2022\u5e74\u4ee5\u4f86\u4e00\u76f4\u64d4\u4efb\u5357\u97d3\u7b2c13\u4efb\u548c"} +{"id": "2001912", "video_name": "fa3d23ed-be0e-5c4a-816d-d8fc735ac24a", "text": "\u51e0\u79d2\u949f\u5185\uff0c\u6bcf\u4e2a\u5143\u7d20\u90fd\u5728\u8fd0\u52a8\u4e2d\u7684\u5f69\u8679\u4e4b\u5185\u3002"} +{"id": "2001913", "video_name": "28371d01-a4da-5dd2-a0be-25c6ab53c9ba", "text": "\u751f\u65e5\u5de7\u514b\u529b\u86cb\u7cd5\u3002\u6cb9\u753b\u3002\u4fe1\u606f\uff1a\u963f\u7f57\u5a1c\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001914", "video_name": "e0e8b765-600b-5a89-9e2c-792ebfe983de", "text": "\u4e00\u53ea\u957f\u9888\u9e7f\u5728\u7ebd\u7ea6\u5e02\u9ea6\u8fea\u900a\u5e7f\u573a\u516c\u56ed\u7ff1\u7fd4\u3002"} +{"id": "2001915", "video_name": "effe96e0-0263-55c6-b804-14da196cd93b", "text": "\u7ffb\u5f00\u4e66\u9875\u540e\uff0c\u6709\u4e24\u4e2a\u5199\u7740Neha Rabidas\u7684\u8bcd\u3002"} +{"id": "2001916", "video_name": "3aeb7f3f-9021-5a1c-b96e-33fdcfe38d75", "text": "\u4f26\u6566\u72fc\u4eba\u53d8\u8eab\u573a\u666f\u7684\u5973\u6027\u7248\u672c\u3002"} +{"id": "2001917", "video_name": "09520f0e-5a31-5e6f-be8d-ff876905b42c", "text": "1980\u5e74\u4ee3\u5370\u5ea6\u7537\u6a21\u7279\u7684\u5c4f\u5e55\u622a\u56fe\uff0c\u52a8\u4f5c\u7535\u5f71\u573a\u666f\uff0c\u5251\u672f\u6253\u6597\u3002"} +{"id": "2001918", "video_name": "1d117bc6-0efa-53cf-8db3-14bdc68dc3d8", "text": "\u51ac\u5929\u591c\u665a\u7684\u9ed1\u6697\u6050\u6016\u7684\u5317\u65b9\u6cbc\u6cfd\u68ee\u6797\uff0c\u6709\u72d7\u62c9\u96ea\u6a47\u548c\u591a\u4e2a\u5728\u8fdc\u5904\u53d1\u5149\u7684\u773c"} +{"id": "2001919", "video_name": "34e7163d-3e9f-54ba-bbfb-98f0cd6fdaf7", "text": "\u8840\u8165\u7684\u6df7\u4e71\uff0c\u5982\u300a\u9ed1\u6d1e\u300b\u4e00\u6837\u7684\u98ce\u683c\u4e8b\u4ef6\u3002"} +{"id": "2001920", "video_name": "fbbda8bc-36d2-5ec9-a017-836f2175e014", "text": "\u4e00\u4e9b\u5feb\u4e50\u7684\u5b69\u5b50\u5728\u8bfe\u5802\u4e0a\u8df3\u8dc3\u548c\u73a9\u800d\u3002"} +{"id": "2001921", "video_name": "bc13c500-f245-56a3-b3c2-6cdeb63189eb", "text": "\u4e00\u4e2a\u50cf\u7d20\u827a\u672f\u76848\u4f4d\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u652f\u91cd\u91d1\u5c5e\u4e50\u961f\u6f14\u594f\u3002"} +{"id": "2001922", "video_name": "70a845bb-d13c-5ccf-bf4a-cb9fbdef72ea", "text": "3D\u8ff7\u5e7b\u5feb\u901f\u79fb\u52a8\u7684\u968f\u673a\u56fe\u6848"} +{"id": "2001923", "video_name": "6b3e1106-40c0-5424-93a8-de09cd7c2a10", "text": "\u5c55\u793a\u4ee5\u52a8\u753b\u5f62\u5f0f\u5448\u73b0\u7684\u65b0\u6811\u79cd\u690d\u548c\u4fee\u590d\u53d7\u635f\u666f\u89c2\u7684\u52a8\u753b\u7247\u3002"} +{"id": "2001924", "video_name": "c1ad95a1-8397-589c-9b4b-c437fe4db9aa", "text": "\u72ee\u5b50\u548c\u4ed6\u7684\u56db\u4e2a\u5c0f\u5973\u513f\u3002"} +{"id": "2001925", "video_name": "148e0819-035a-557e-854a-cebe745707a5", "text": "\u4e00\u4e2a\u7ea2\u8272\u793c\u76d2\uff0c\u80cc\u666f\u6709\u7ea2\u706f\u7b3c\u3001\u6625\u8054\u548c\u70df\u706b\uff0c\u8425\u9020\u51fa\u6625\u8282\u7684\u6c1b\u56f4\u3002\u793c\u76d2\u4e0a\u6709\u4e2d\u56fd"} +{"id": "2001926", "video_name": "38659ac2-1423-5f1e-bf88-a54f5f0308ae", "text": "\u5b89\u52aa\u7eb3\u57fa\u4eba\u7684\u56de\u5f52\u662f\u5426\u80fd\u591f\u91cd\u5851\u6211\u4eec\u5bf9\u4eba\u7c7b\u8d77\u6e90\u548c\u5728\u5b87\u5b99\u4e2d\u7684\u4f4d\u7f6e\u7684\u7406\u89e3\uff1f"} +{"id": "2001927", "video_name": "df52fa16-9e0c-55d8-bc1d-23cf58ff071c", "text": "\u5f3a\u70c8\u7684\u706b\u5c71\u7206\u53d1\uff0c\u6d53\u70df\u6eda\u6eda\uff0c\u5982\u6ce2\u6d6a\u822c\u5347\u817e\u3002"} +{"id": "2001928", "video_name": "bda3f2a3-0838-5e8e-b88a-5700fd86c80f", "text": "\u5386\u53f2\u8239\u53ea\u5728\u6ce2\u6d9b\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u3002\n\nSource sentence: The concert was cancelled due to bad weather.\n\u97f3\u4e50\u4f1a\u56e0\u5929\u6c14\u6076\u52a3\u800c\u53d6\u6d88\u3002"} +{"id": "2001929", "video_name": "9a460a94-b1fe-5c2d-8ed1-e69f948d7349", "text": "\u7537\u5b69\u548c\u732b\u76843D AI\u56fe\u50cf"} +{"id": "2001930", "video_name": "e14075ca-353e-54fc-8d07-534194798bf0", "text": "\u521b\u4f5c\u4e00\u7ec4\u62fc\u8d34\u56fe\u5c55\u793a\u6b63\u5728\u4e92\u52a8\u73a9\u800d\u7684\u963f\u6bd4\u897f\u5c3c\u4e9a\u732b\uff0c\u7a81\u51fa\u5b83\u4eec\u6d3b\u6cfc\u597d\u5947\u7684\u884c\u4e3a\u3002"} +{"id": "2001931", "video_name": "5efe1984-c4e3-5db3-a96b-83e87421ae1c", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u5728\u62bd\u5956\u4e2d\u8d62\u5f97\u4e86\u4e00\u4e2a\u7fbd\u6bdb\u7403\u62cd\uff0c\u975e\u5e38\u9ad8\u5174\u3002"} +{"id": "2001932", "video_name": "cee43e92-33f9-5978-8912-8797846a3f59", "text": "\u6b22\u547c\u58f0\u6fc0\u52b1\u4ed6\u5b8c\u6210\u6bd4\u8d5b\u3002"} +{"id": "2001933", "video_name": "839eff1c-84ed-5cea-bdbf-78052f33372c", "text": "\u4e00\u5f20\u62df\u4eba\u5316\u7684100\u7f8e\u5143\u949e\u7968\u5728\u6742\u6280\u8868\u6f14\u4e2d\u7684\u52a8\u753b\u3002"} +{"id": "2001934", "video_name": "7013fda5-a83c-534b-a00b-ba58e5217df6", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4ed6\u7684\u670b\u53cb\uff0c\u5403\u7740\u85af\u7247\u770b\u8db3\u7403\u6bd4\u8d5b\uff0c\u6325\u821e\u7740\u4ed6\u7684\u624b\u81c2\u3002"} +{"id": "2001935", "video_name": "c237e8fc-b245-51d0-9166-c32a7b45d359", "text": "\u6234\u7740\u58a8\u955c\u5f00\u5170\u535a\u57fa\u5c3c\u7684\u7537\u4eba\u5728\u57ce\u5e02\u91cc\u5f00\u8f66\u3002"} +{"id": "2001936", "video_name": "ba4a908b-bc4b-5f0e-a0d3-d5f5982ed64f", "text": "\u4e00\u4e2a\u4eba\u5728\u65e9\u6668\u7684\u6c99\u6f20\u8352\u91ce\u4e2d\u884c\u8d70\u3002\u4ed6\u72ec\u81ea\u4e00\u4eba\uff0c\u611f\u5230\u75b2\u5026\u3002\u73b0\u5728\u8fd8\u5f88\u65e9\u3002"} +{"id": "2001937", "video_name": "2e9f6762-4cfa-5969-8083-9df1aa04634d", "text": "\u6c34\u5f69\u753b\u98ce\u683c\uff0c\u8f66\u505c\u5728\u8f66\u9053\u4e0a\uff0c\u591c\u665a\uff0c\u623f\u5b50\uff0c\u4e0b\u96e8\uff0c\u8f66\u540e\u4fdd\u9669\u6760\u53ef\u89c1\u3002"} +{"id": "2001938", "video_name": "9456d3ad-1cf3-54c5-8ef3-3995a79bb605", "text": "\u4e00\u4e2a\u7199\u7199\u6518\u6518\u7684\u706b\u8f66\u7ad9\u91cc\u6324\u6ee1\u4e86\u6025\u5306\u5306\u8d76\u7740\u8d76\u8f66\u7684\u901a\u52e4\u8005\u3002"} +{"id": "2001939", "video_name": "cb210759-7fa1-5175-902a-77cb4946fe6b", "text": "\u4e00\u90e8\u624b\u673a\u4e0a\u6709\u6570\u767e\u4e2a\u5e94\u7528\u56fe\u6807\u5f39\u51fa\u3002"} +{"id": "2001940", "video_name": "49ae6c34-f87a-59cc-bbfa-b2748353f4e2", "text": "PS1\u56fe\u5f62\u5f15\u64ce \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\n\nSource sentence: The deadline for submitting the project is next Monday. \nMessage: 2 Attachments need to be submitted along with the project. \n\u8bf7\u5728\u4e0b\u5468"} +{"id": "2001941", "video_name": "8d7db7ac-994e-51d6-8952-36dd8145d6ab", "text": "\u4ecb\u7ecd\u4e00\u4e2a\u597d\u5947\u7684\u5c0f\u5973\u5b69\u8389\u8389\uff0c\u5979\u4f4f\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\uff0c\u5e76\u63cf\u8ff0\u5979\u6e34\u671b\u5192\u9669\u7684\u5fc3\u60c5\u3002\u4e3a\u5979"} +{"id": "2001942", "video_name": "8543e685-4919-565b-9e94-21f7a662695b", "text": "\u5723\u8bde\u8001\u4eba\u592b\u4eba\u5728\u6ed1\u6e9c\u7684\u51b0\u4e0a\u5954\u8dd1\uff0c\u65e0\u6cd5\u638c\u63e1\u6b65\u4f10\u3002"} +{"id": "2001943", "video_name": "497d8690-3e07-5ccf-b292-051265ea9877", "text": "\u4e00\u8f86\u5361\u5c14\u00b7\u6cfd\u66fc\u98ce\u683c\u7684\u84b8\u6c7d\u706b\u8f66\u3002"} +{"id": "2001944", "video_name": "7ed4ff42-4bfe-5981-82d9-311b7a81ed01", "text": "\u8fd9\u53e5\u8bdd\u6ca1\u6709\u610f\u4e49\uff0c\u8bf7\u63d0\u4f9b\u6b63\u786e\u7684\u82f1\u6587\u53e5\u5b50\u3002"} +{"id": "2001945", "video_name": "7278a5d1-6da4-5d30-a216-10f96c90b14c", "text": "\u751f\u6210\u4e00\u5f20\u5c0f\u800c\u5feb\u4e50\u7684\u540d\u4e3a\u8428\u59c6\u7684\u79cd\u5b50\u5728\u9ad8\u5927\u7684\u6a61\u6811\u836b\u4e0b\u4f11\u606f\uff0c\u68a6\u60f3\u7740\u5192\u9669\u7684\u5f62\u8c61\u3002"} +{"id": "2001946", "video_name": "7419f3c6-9267-53b5-bded-526a4801484d", "text": "UFO \u5e26\u7740\u53cd\u91cd\u529b\u7684\u5149\u8292\u60ac\u6d6e\u5728\u4eba\u5934\u4e0a\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "2001947", "video_name": "791855f4-79d8-5d2c-ac85-442496c668c1", "text": "\u4e00\u652f\u519b\u961f\u8d70\u8fdb\u6218\u573a\uff0c\u7531\u88c5\u5907\u4e50\u5668\u4f5c\u4e3a\u6b66\u5668\u7684\u97f3\u4e50\u5bb6\u5e26\u9886\u7740\uff0c\u8ddf\u968f\u7740\u4e00\u9762\u65d7\u5e1c\u3002"} +{"id": "2001948", "video_name": "1228a670-cf4b-58a7-8592-de32137be9c8", "text": "\u68ee\u6797\u4e2d\uff0c\u5c71\u540e\uff0c\u767d\u5929\uff0c\u5361\u901a\uff0c16:9\u3002"} +{"id": "2001949", "video_name": "22c8dded-38c4-53c8-b7ca-9d7f608bdaf0", "text": "\u7559\u5b66\u987e\u95ee\u5c55\u793a\u82f1\u56fd\u3001\u7f8e\u56fd\u3001\u52a0\u62ff\u5927\u7684\u65d7\u5e1c\u3002"} +{"id": "2001950", "video_name": "3ca27527-efc5-53e2-aafc-31689525648d", "text": "\u5979\u51b3\u5b9a\u4e00\u4e2a\u665a\u4e0a\u53bb\u7b2c\u5341\u516d\u8282\u8bfe\u4e0a\u770b\u770b\u662f\u5426\u8fd9\u4e00\u5207\u90fd\u662f\u771f\u7684\u3002"} +{"id": "2001951", "video_name": "16ffc05b-b5c3-591b-b81f-3199cd3a8362", "text": "\u4e00\u4e2a\u5c9b\u4e0a\u7684\u533b\u7597\u4e2d\u5fc3\uff0c\u9e1f\u77b0\u89c6\u89d2\u3002"} +{"id": "2001952", "video_name": "2b641714-b84b-54b8-9cad-0f23c5090028", "text": "\u7b2c\u4e00\u5f20\u56fe\u7247\u9644\u4ef6\uff0c\u6807\u9898\u4e3a\u201c\u65b0\u5e74\u5feb\u4e50\u201d\u3002"} +{"id": "2001953", "video_name": "360c9e3d-eb77-5ca2-9d0f-672a0d5776e1", "text": "432\u8d6b\u5179\u4eba\u5f62\u4f53\u7684\u8bed\u6599\u5e93\u3002"} +{"id": "2001954", "video_name": "18a7a1ba-6c16-5907-9148-fa2404331be1", "text": "\u7b2c\u4e00\u573a\u666f\u5c55\u793a\u4e86\u4e00\u4e2a\u7537\u5b69\u4ece\u80cc\u540e\u8d70\u5230\u7977\u544a\u5ba4\u7684\u95e8\u53e3\uff0c\u6253\u5f00\u95e8\u540e\u53d1\u73b0\u4e00\u4e2a\u6709\u5e74\u8f7b\u7537\u5b69\u5728\u7ec3\u4e60\u7684\u8db3\u7403"} +{"id": "2001955", "video_name": "bcad3704-270e-5468-ba48-b723170505a3", "text": "\u4e00\u4f4d\u8001\u5987\u4eba\u56db\u5904\u6c42\u533b\u3002"} +{"id": "2001956", "video_name": "2a3abe2d-8017-5413-8b5f-e1011f51d7d7", "text": "\u4e00\u8f86SUV\u5728\u8349\u539f\u4e0a\u884c\u9a76\u3002"} +{"id": "2001957", "video_name": "4c019d3c-4f4b-5a17-9584-96203fa25dcf", "text": "\u4e24\u53ea\u8001\u9f20\u7ad9\u7740\u6253\u67b6\uff0c\u771f\u5b9e\u7684\u89c6\u9891\u3002"} +{"id": "2001958", "video_name": "4a940f62-a44d-5e2b-9643-7cd8688de966", "text": "\u4e00\u8258\u8d85\u7ea7\u7f8e\u4e3d\u7684\u8239\uff0c\u5185\u90e8\u7a7a\u65e0\u4e00\u7269\uff0c\u88c5\u9970\u7f8e\u4e3d\u3002"} +{"id": "2001959", "video_name": "d7f5982d-cfca-5432-8da0-ce54c42e11ad", "text": "\u7535\u5f71\u300a\u5370\u7b2c\u5b89\u7eb3\u743c\u65af\u300b\u4e2d\u7684\u4e00\u573a\u7535\u5f71\u573a\u666f\uff0c\u6f14\u5458\u7ea6\u7ff0\u5c3c\u00b7\u5fb7\u666e\u626e\u6f14\u7684\u5370\u7b2c\u5b89\u7eb3\u743c"} +{"id": "2001960", "video_name": "13bb5a0d-e75f-5b24-bb92-0a313a0a58da", "text": "\u7528\u6570\u5b57\u624b\u5199\u7b7e\u540d\u89e3\u9501\u7535\u5b50\u9501\u3002"} +{"id": "2001961", "video_name": "4996ec84-97c7-5623-837f-422498746449", "text": "\u5979\u901a\u8fc7\u5c18\u5c01\u7684\u6863\u6848\u548c\u892a\u8272\u7684\u4fe1\u4ef6\uff0c\u62fc\u51d1\u8d77\u4e86\u4e00\u4e2a\u7ecf\u5386\u4e86\u6570\u4e2a\u4e16\u7eaa\u7684\u7231\u60c5\u6545\u4e8b\u7684\u788e\u7247\u3002"} +{"id": "2001962", "video_name": "aaecea31-d294-5fe3-8c6c-8ee17fe16c49", "text": "\u661f\u7a7a\u4e0b\u7684\u591c\u665a\uff0c\u4ece\u592a\u7a7a\u773a\u671b\uff0c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u884c\u661f\u95f4\u98de\u7fd4\uff0c\u4ee5\u5982\u96f7\u8bfa\u74e6\u3001\u83ab\u5948"} +{"id": "2001963", "video_name": "b8d3f155-a96c-5175-89bb-8d8be1b67294", "text": "\u8352\u6f20\u516c\u8def\u5728\u65e0\u4eba\u4e4b\u5904\u3002"} +{"id": "2001964", "video_name": "087573aa-7835-5685-9b54-a3f28a9876a8", "text": "\u4e00\u53f0\u6000\u5b55\u7684\u952e\u76d8\u5728\u5206\u5a29\u5ba4\u91cc\u3002"} +{"id": "2001965", "video_name": "1a79985c-28be-51c1-8ed1-79a461a1638c", "text": "\u6210\u9f99\u5f88\u65e9\u5c31\u53d1\u73b0\u4e86\u81ea\u5df1\u5bf9\u6b66\u672f\u7684\u70ed\u7231\uff0c\u7535\u5f71\u53f2\u4e0a\u2014\u201416:9\u3002"} +{"id": "2001966", "video_name": "54e60a7f-6a35-575b-a6cf-aa9f50e92ab7", "text": "\u5c55\u73b0\u4e00\u7247\u5b81\u9759\u7684\u591c\u7a7a\uff0c\u661f\u661f\u70b9\u70b9\uff0c\u7f13\u6162\u5730\u653e\u5927\uff0c\u63ed\u793a\u51fa\u6708\u4eae\u3002\u8fea\u58eb\u5c3c\u5f62\u8c61\u3002"} +{"id": "2001967", "video_name": "82154112-e355-51b8-af09-d4cdee45c356", "text": "\u8bf4\u8bdd\u3001\u7728\u773c\u3001\u903c\u771f\u5730\u79fb\u52a8\u5934\u90e8"} +{"id": "2001968", "video_name": "77558662-a680-5724-8a84-aee2fe3a563b", "text": "\u68d5\u8272\u5934\u53d1\u7684\u5973\u58eb\u60ca\u8bb6\u5730\u8bf4\uff0c\u5728\u68ee\u6797\u91cc\uff0c\u52a8\u753b\u5f62\u8c61\u3002"} +{"id": "2001969", "video_name": "93535bc3-9c30-5a67-a380-6eb190cf8645", "text": "Source sentence translated: \u6076\u8db3\u83e9\u63d0\u6bd4\u4e18\u4e0e\u4ed6\u7684\u5f1f\u5b50\u4e00\u8d77\u5531\u7740\u79bb\u5f00\u7684\u89c6\u9891\u7c7b\u578b\u7684\u65e5\u672c\u52a8\u6f2b\u3002"} +{"id": "2001970", "video_name": "66d2af49-a817-5cbf-9efe-6c6ed47eaaf2", "text": "\u970d\u534e\u5fb7\u00b7\u4f11\u65af\u57281930\u5e74\u4ee3\u7684\u5927\u529b\u795e\u98de\u673a\u9a7e\u9a76\u8231\u4e2d\u88ab\u770b\u5230\u3002"} +{"id": "2001971", "video_name": "f00e6a9e-d593-5645-b543-c49a669986ff", "text": "\u732b\u5728\u4e91\u4e2d\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "2001972", "video_name": "0e5f3337-90ad-5961-8723-9b29febe95f1", "text": "\u4e00\u6761\u6709\u623f\u5c4b\u548c\u6c7d\u8f66\u7684\u8857\u9053\u3002\u591c\u665a\u662f\u7eaf\u51c0\u7684\u3002"} +{"id": "2001973", "video_name": "0161daf9-e106-5eac-b098-15eb21c18f09", "text": "\u9c9c\u8273\u7684\u4e09\u89d2\u7f51\u683c\u4e0e\u4e92\u52a8\u6d6e\u52a8\u5f62\u72b6\u3002"} +{"id": "2001974", "video_name": "6896ea2e-2d0f-5553-aaba-06f5056fdc73", "text": "\u4fef\u89c6\u592a\u7a7a\u4e2d\u7684\u5730\u7403\u4e0a\uff0c\u6570\u5b57\u8db3\u8ff9\u4e0a\u7684\u4fc4\u7f57\u65af\u3002\u4fe1\u606f\uff1a\u4e92\u8054\u7f51\u4fc4\u7f57\u65af\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2001975", "video_name": "5151a0b5-a329-58a1-91fe-d072071efc2b", "text": "\u5c71\u4e1c\u70df\u53f0\uff0c\u57ce\u5e02\u4fef\u77b0\u7f8e\u4e3d\u7684\u6d77\u666f\u3002"} +{"id": "2001976", "video_name": "1c8bc610-cbb1-5ffe-8d7b-b3869f607a54", "text": "\u706b\u5f71\u5fcd\u8005\u628a\u5b6b\u609f\u7a7a\u80cc\u5728\u4ed6\u80cc\u4e0a\u3002"} +{"id": "2001977", "video_name": "ccc5d951-0560-5c39-95cb-f8d073d4fa5f", "text": "\u767d\u96ea\u516c\u4e3b\u5728\u5979\u7684\u57ce\u5821\u91cc\uff0c\u5979\u53d7\u5230\u6240\u6709\u4eba\u7684\u7231\u6234\uff0c\u4f46\u5979\u7684\u7ee7\u6bcd\u5973\u738b\u5374\u5ac9\u5992\u5979\u3002"} +{"id": "2001978", "video_name": "5d6d0c8a-613d-5138-b370-e0d38fc88759", "text": "\u5154\u5b50\u4e4b\u5bb6\uff0c\u677e\u6797\uff0c\u5361\u901a\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c16:9"} +{"id": "2001979", "video_name": "a82d2458-4fcd-54d7-9b24-0aae2eb172d9", "text": "\u7535\u5f71\u822c\u7684\u4eba\u7269\u7ad9\u7740\uff0c\u5e7d\u7075\u822c\u7684\u4eba\u5f71\u51fa\u73b0\u5728\u4ed6\u5468\u56f4\uff0c\u5728\u4ed6\u63a5\u8fd1\u65f6\u6d88\u5931\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2001980", "video_name": "d6bfc605-b142-5830-9db9-a160e664af59", "text": "3\u4e2a\u5efa\u7b51\u5de5\u4eba\u7528\u85af\u6761\u5efa\u9020\u4e86\u4e00\u5ea7\u623f\u5b50\u3002"} +{"id": "2001981", "video_name": "6299a681-b014-5600-8ecb-d5018024ef71", "text": "\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u6709\u6e29\u6696\u7684\u9ec4\u8272\u706f\u5149\uff0c\u5979\u6b63\u5728\u73af\u5883\u4e2d\u7761\u89c9\u3002"} +{"id": "2001982", "video_name": "b21548af-32ee-5ebd-979e-9289a7e568c7", "text": "RC\u8d5b\u8f66\u4ece\u6865\u4e0a\u8df3\u8dc3\u7279\u6280\u3002"} +{"id": "2001983", "video_name": "a4e35273-7ba0-5f01-9eb0-c5a61a98b68e", "text": "\u5f53\u6211\u5403\u5b8c\u996d\u540e\uff0c\u4e00\u4e2a\u60ca\u4eba\u7684\u666f\u8c61\u53d1\u751f\u4e86\uff1a\u76d8\u5b50\u53d8\u6210\u4e86\u4e00\u4e2a\u690d\u7269\u7cbe\u7075\u3002"} +{"id": "2001984", "video_name": "679ae0de-2a46-5c25-acec-0c0259710c4a", "text": "\u6b22\u8fce\u6765\u5230Lofi\uff0c\u5982\u679c\u4f60\u60f3\u542c\u66f4\u591aLofi\uff0c\u8bf7\u5faa\u73af\u64ad\u653e\u8fd9\u4e2a\u52a8\u753b\u3002"} +{"id": "2001985", "video_name": "f46f3301-f228-5575-91b6-c9ad78a8168b", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u4e94\u5c81\u5c0f\u5b69\u5728\u5df4\u9ece\u8d70\u8def\uff0c\u7a7f\u5f97\u5f88\u7834\u65e7\u3002\u4ed6\u5728\u96a7\u9053\u7684\u5c3d\u5934\u627e\u5230\u4e86\u4e00\u4e2a\u4eba\uff0c\u4f46\u56e0\u4e3a"} +{"id": "2001986", "video_name": "79758da7-693e-5957-b009-48caf9b31742", "text": "19\u4e16\u7eaa\u7684\u4e24\u4f4d\u5973\u58eb\u572821\u4e16\u7eaa\u7684\u5783\u573e\u573a\u8001\u516c\u56ed\u4e3e\u884c\u8336\u8bdd\u4f1a\uff0c8K 16:9\u8fd0\u52a8\u753b\u97621\u3002"} +{"id": "2001987", "video_name": "154d0f3f-d2a2-5cad-a1fe-8e10e1c4bda4", "text": "\u524d\u5f80\u6e56\u4e2d\u7684\u5370\u5ea6\u60c5\u4fa3\u76f8\u7231\u3002"} +{"id": "2001988", "video_name": "e98093da-ce7a-5a2a-abba-a6a04b18bff9", "text": "\u4e54\u00b7\u62dc\u767b\u4e00\u4e2a\u4eba\u8d70\u5728\u7a7a\u623f\u95f4\u91cc\uff0c\u611f\u5230\u6df7\u4e71\u548c\u8eab\u4f53\u5e73\u8861\u4e0d\u4f73\u3002"} +{"id": "2001989", "video_name": "ad1f2acd-258b-5a0b-a6ab-f2064ca3c5a5", "text": "\u4eba\u4f53\u4e2d\u6b63\u5728\u79ef\u6781\u751f\u957f\u7684\u764c\u75c7"} +{"id": "2001990", "video_name": "d0b2e6b4-b994-5859-89c5-e53e96b15e2a", "text": "\u5988\u5988\u548c\u963f\u59e8\u505a\u4e86\u4e00\u5927\u684c\u7684\u83dc\u3002"} +{"id": "2001991", "video_name": "443db2f1-9b41-5f5a-8e5a-894da70643b8", "text": "\u4e00\u4e2a\u59bb\u5b50\u548c\u4e08\u592b\u7ad9\u5728\u4e00\u8258\u9ec4\u8272\u7684\u5b87\u5b99\u98de\u8239\u4e0a\uff0c\u80cc\u666f\u662f\u7c89\u8272\u7684\u5929\u7a7a\u3002\n\nSource sentence: The cat is sleeping on the couch"} +{"id": "2001992", "video_name": "550db810-4c59-5188-9c42-1538def6823a", "text": "\u5e7b\u60f3\u673a\u5668\u4eba\u4f7f\u7528\u5176\u8d85\u7ea7\u5c04\u7ebf\u3002"} +{"id": "2001993", "video_name": "a14b611f-a79a-566a-9e92-1cd7e048a847", "text": "\u4e09\u4e2a\u7a7f\u7740\u897f\u88c5\u7684\u7537\u4eba\u5728\u4ed3\u5e93\u91cc\u4e92\u76f8\u6307\u7740\u624b\u67aa\uff0c\u50cf\u300a\u4f4e\u4fd7\u5c0f\u8bf4\u300b\u98ce\u683c\u3002"} +{"id": "2001994", "video_name": "64f995a1-8432-518f-a6c9-0b5aa3223c4f", "text": "\u5965\u65af\u9646\u5e02\u4e2d\u5fc3\u591c\u666f\uff0c\u5965\u65af\u9646\u6b4c\u5267\u9662\uff0c\u65e0\u4eba\u673a\u822a\u62cd\u3002"} +{"id": "2001995", "video_name": "701b157a-0ec9-5f8f-8e0d-80df4d27afb8", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u89c1\u5230\u6211\u5f88\u9ad8\u5174\u3002"} +{"id": "2001996", "video_name": "e9d58bba-a382-5c41-b6fb-0131ceac3e52", "text": "\u4e00\u90e8\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u76841990\u5e74\u4ee3\u5bb6\u5ead\u5f55\u50cf\uff0c\u5185\u5bb9\u662f\u65e0\u8eab\u4f53\u7684\u7f8e\u4eba\u9c7c\u3002"} +{"id": "2001997", "video_name": "8ba06401-a486-592d-9809-03eb298e0f32", "text": "\u4e00\u4e2a\u795e\u5947\u7684\u591c\u665a\uff0c\u5728\u6708\u5149\u7684\u7167\u8000\u4e0b\uff0c\u4ed6\u4eec\u5728\u82b1\u56ed\u91cc\u8df3\u821e\u3002\u4ed6\u4eec\u7684\u7b11\u58f0\u5145\u6ee1\u4e86\u7a7a\u6c14\uff0c"} +{"id": "2001998", "video_name": "ce615113-9eaf-5bf7-bc18-318e9ecbf604", "text": "\u677e\u9f20\u3001\u5154\u5b50\u8389\u62c9\u548c\u718a\u672c\u5c3c\u5c0f\u5fc3\u5730\u7a7f\u8fc7\u4e00\u5ea7\u6447\u6447\u6b32\u5760\u7684\u6865\uff0c\u4ed6\u4eec\u7684\u9762\u90e8\u8868\u60c5\u4ee53"} +{"id": "2001999", "video_name": "c2cc1de7-7932-5e1f-915a-6a2c4798379e", "text": "\u4eba\u773c\uff0c\u8fd1\u8ddd\u79bb\uff0c\u8d85\u5199\u5b9e\uff0c\u76ae\u80a4\uff0c\u7728\u773c\u3002"} +{"id": "2002000", "video_name": "5bcf546e-d71e-5975-96cf-8eefd1205e7f", "text": "\u4e00\u679a\u706b\u7bad\u98de\u5165\u592a\u7a7a\uff0c\u55b7\u51fa\u4e86\u91d1\u94b1\u3002"} +{"id": "2002001", "video_name": "a58b33dc-e4e0-590b-8fd3-a171ca2d7ab3", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u548c\u4e9a\u5386\u514b\u65af\u00b7\u7279\u91cc\u5e03\u5c14\u6f14\u594f\u91cd\u91d1\u5c5e\u97f3\u4e50\u3002 \n\nSource sentence: I am going to the grocery store to"} +{"id": "2002002", "video_name": "45fadc56-05ea-514d-a228-779a9ee4a1da", "text": "\u771f\u5b9e\u7684\u6cf0\u59ec\u9675\u666f\u8c61\u3002\u4e91\u6735\u5728\u5929\u7a7a\u4e2d\u98d8\u52a8\u3002\u4ee5\u7535\u5f71\u822c\u7684\u65b9\u5f0f\u653e\u5927\u3002\u5bbd\u9ad8\u6bd4\u4e3a9\uff1a16\u3002"} +{"id": "2002003", "video_name": "687353bc-bcb0-59ba-b0e3-998c8256feef", "text": "\u4ece\u82b1\u56ed\u91cc\u80fd\u770b\u5230\u7684\u884c\u661f\u6b63\u5728\u9760\u8fd1\u3002"} +{"id": "2002004", "video_name": "ed73edbe-db6f-5434-8353-194b3fe21dc7", "text": "\u670b\u53cb\u4eec\u5728\u4e0d\u540c\u7684\u573a\u666f\u4e2d\u901a\u8fc7\u4ed6\u4eec\u7684\u9b54\u6cd5\u706f\u7b3c\u4f20\u9012\u5584\u610f\u548c\u5feb\u4e50\u7684\u573a\u666f\u3002"} +{"id": "2002005", "video_name": "3d0718c8-fae4-52b0-be78-7024aa9fe02f", "text": "\u73b0\u4ee3\u5316\u7684\u9a6c\u91cc\u5965\uff0c\u4e00\u4e2a\u7535\u5b50\u6e38\u620f\u89d2\u8272\uff0c\u8bf4\u8bdd\u8d85\u73b0\u5b9e\u3002"} +{"id": "2002006", "video_name": "5d2038c1-4c4a-50bc-96cc-a05efefd8198", "text": "\u4e00\u68f5\u9ad8\u5927\u7684\u6811\u8986\u76d6\u4e86\u6574\u4e2a\u5730\u7403\uff0c\u7075\u611f\u6765\u81ea\u4e8e\u300a\u4f46\u4ee5\u7406\u4e66\u300b\u3002"} +{"id": "2002007", "video_name": "338a7c13-8404-54b0-81d1-a90efb5f1665", "text": "\u5de8\u5927\u7684\u624b\u4ece\u4e91\u5929\u4e2d\u4f38\u4e0b\u6765\u3002\u8fd9\u662f\u4e00\u573a\u6050\u6016\u7684\u573a\u666f\uff0c\u7c7b\u4f3c\u4e8e\u79d1\u5e7b\u672b\u4e16\u7535\u5f71\u3002"} +{"id": "2002008", "video_name": "f658b4a3-2f42-5f42-92d3-9c97c15238ab", "text": "\u6c34\u4e0a\u91ce\u82b1\u7684\u82b1\u74e3\uff0c\u65e5\u51fa\u3002"} +{"id": "2002009", "video_name": "5e7785b8-9147-5790-b4b0-d61e231c16f5", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u7537\u5b69\u5728\u96e8\u4e2d\u559d\u5496\u5561\u3002\n\nSource sentence: I am looking forward to hearing from you soon. \n\u6211\u671f\u5f85\u5c3d\u5feb\u6536\u5230\u4f60\u7684\u56de\u590d\u3002"} +{"id": "2002010", "video_name": "46bc1259-cd9b-56c9-a1c0-6177126e802a", "text": "\u6db2\u4f53\u8fc5\u901f\u79fb\u52a8\uff0c\u5448\u94ec\u8d28\u7eb9\u7406\uff0c\u53cd\u5c04\u7d2b\u8272\u548c\u6d45\u84dd\u8272\u5149\u7ebf\u3002"} +{"id": "2002011", "video_name": "370a543d-fa65-5185-82dd-554f011d6977", "text": "\u4e00\u540d\u4e2d\u5e74\u5973\u58eb\u62c5\u5fe7\u5730\u4ece\u5367\u5ba4\u95e8\u53e3\u7aa5\u89c6\u3002"} +{"id": "2002012", "video_name": "7a8a488d-e320-5c57-bad6-87cf10ee95ef", "text": "\u673a\u68b0\u5973\u5b69\u5728\u8d70\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u7684\u80cc\u4e0a\u3002"} +{"id": "2002013", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "\u4e00\u53ea\u624b\u5728\u5408\u6210\u5668\u4e0a\u6f14\u594fC\u5927\u8c03\u548c\u5f26\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "2002014", "video_name": "16c71144-01ab-55cb-b544-d076380337df", "text": "\u8bf1\u60d1\u7537\u5b50\u7684\u526a\u5f71\u62cd\u7acb\u5f97\u7167\u7247"} +{"id": "2002015", "video_name": "86ac9dd8-f3e0-5880-a42d-dc9d8d298b5f", "text": "\u6d77\u9f9f\u7a7f\u8d8a\u65e0\u8fb9\u65e0\u9645\u7684\u6d77\u6d0b\u6df1\u5904\uff0c\u5b83\u4eec\u7684\u58f3\u65e2\u662f\u4fdd\u62a4\u53c8\u662f\u8eab\u4efd\u7684\u8c61\u5f81\uff0c\u6807\u5fd7\u7740\u5b83\u4eec"} +{"id": "2002016", "video_name": "c65ef4f8-ebe1-5803-8b93-b123cd9c643e", "text": "\u521b\u4f5c\u4e00\u6bb5\u89c6\u89c9\u5438\u5f15\u4eba\u7684\u9e1f\u513f\u98de\u884c\u52a8\u753b\uff0c\u5448\u73b0\u51faV\u5f62\u72b6\u3002\u5229\u7528\u5b63\u8282\u53d8\u5316\u6765\u8868\u73b0\u8fc1\u5f99\u3002"} +{"id": "2002017", "video_name": "2508a6f9-4c21-5c26-b4a8-21cf69573939", "text": "\u7535\u8111\u5305\u542b\u4e86\u901a\u5411\u5b87\u5b99\u7684\u94a5\u5319\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "2002018", "video_name": "cf2068ab-0444-55e1-86b9-ae13248ef095", "text": "A \u7684\u5361\u901a\u5f62\u8c61\u662f\u4e00\u4e2a\u591a\u6c41\u7ea2\u8272\u7684\u82f9\u679c\u3002"} +{"id": "2002019", "video_name": "ca127630-6cea-5583-a19a-adbd90feaa4f", "text": "\u4e00\u4e2a\u6234\u7740\u8fde\u5e3d\u886b\u7684\u7537\u4eba\u72ec\u81ea\u5750\u5728\u9910\u684c\u524d\uff0c\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "2002020", "video_name": "a5dba27e-3bcb-51d4-ac49-307fd24c869a", "text": "\u8f66\u7ad9\u957f\u95ee\u82cf\u96f7\u4ec0\u6709\u6ca1\u6709\u98df\u7269\uff0c\u82cf\u96f7\u4ec0\u56de\u7b54\u6ca1\u6709\uff0c\u4ed6\u81ea\u4ece\u6628\u665a\u5c31\u4e00\u76f4\u611f\u5230\u9965\u997f\u3002"} +{"id": "2002021", "video_name": "50257cd5-aeaa-56ec-ab8e-2cb5363ca520", "text": "\u5b69\u5b50\u4eec\u5728\u540e\u542f\u793a\u5f55\u7684\u96c5\u5178\u536b\u57ce\u73a9\u800d\uff0c\u753b\u9762\u4e3a4K\uff0c\u5b57\u4f53\u4e3aTSIMENTO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2002022", "video_name": "bc4c7dab-86c6-5bb2-9736-b463c3ae6c0d", "text": "\u7528\u52a8\u6f2b\u98ce\u683c\u5c55\u793a\u4e00\u7247\u90c1\u90c1\u8471\u8471\u3001\u5b81\u9759\u7965\u548c\uff0c\u9e1f\u513f\u9e23\u53eb\uff0c\u8f7b\u98ce\u62c2\u9762\u7684"} +{"id": "2002023", "video_name": "ab9602f3-3c67-5d81-af09-55295c0042ac", "text": "\u80cc\u666f\u4e2d\u670b\u53cb\u4eec\u563b\u563b\u7b11\u7b11\uff0c\u800c\u4e00\u4e2a\u60b2\u4f24\u5b64\u72ec\u7684\u7537\u4eba\u8fdc\u8fdc\u671b\u7740\uff0c8K\uff0c\u903c\u771f\uff0c16:"} +{"id": "2002024", "video_name": "ede5e485-9a98-5e9f-a97f-d4562fd541a3", "text": "\u89c2\u5bdf\u8005\u3001\u4e00\u4e9b\u795e\u5947\u7684\u79cd\u5b50\u4ee5\u53ca\u5438\u5f15\u529b\u6cd5\u5219\u3002"} +{"id": "2002025", "video_name": "fe8ed3e6-b3f9-5c71-a871-08d84f457f0b", "text": "\u963f\u5f66\u6342\u4f4f\u4e86\u773c\u775b\uff0c\u5f53\u5149\u8292\u6d88\u5931\u65f6\uff0c\u4ed6\u53d1\u73b0\u81ea\u5df1\u88ab\u795e\u79d8\u751f\u7269\u548c\u9b54\u6cd5\u751f\u7269\u5305\u56f4\u7740\u3002"} +{"id": "2002026", "video_name": "08aff89a-5d1a-50eb-a8f7-09e1d597d009", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u8dea\u5728\u5730\u4e0a\uff0c10\u540d\u98ce\u66b4\u5175\u548c\u6d77\u7ef5\u5b9d\u5b9d\u624b\u6301\u5149\u5251\u5305\u56f4\u7740\u4ed6\u3002"} +{"id": "2002027", "video_name": "d07a59ac-4cf7-55e3-bf47-7a31486f6e25", "text": "\u690d\u7269\u5e7c\u82d7\u4e0a\u7684\u6c34\u6ef4\u6e05\u65b0\u6021\u4eba\u3002"} +{"id": "2002028", "video_name": "0122d1ae-b6f0-5fcc-b3e3-af738fa4ef4a", "text": "\u4e00\u4f4d\u9ed1\u6697\u7684\u4e0d\u6b7b\u6cd5\u5e08\uff0c\u638c\u63e1\u7740\u6c38\u751f\u7684\u529b\u91cf\uff0c\u5e26\u9886\u6240\u6709\u4eba\u8d70\u5411\u79e9\u5e8f\uff0c\u6210\u4e3a\u5149\u660e\u7684\u5f15\u9886\u8005\u3002"} +{"id": "2002029", "video_name": "b3fffd2b-5934-5d7c-be83-f66d8f9c0889", "text": "\u6559\u5802\u6709\u5f69\u8272\u73bb\u7483\u7a97\u3001\u8721\u70db\u3001\u7ea2\u8272\u5899\u58c1\uff0c\u5de8\u5927\u7684\u602a\u517d\u795e\u50cf\u548c\u957f\u7740\u4e24\u6761"} +{"id": "2002030", "video_name": "2e785776-4db5-5eec-96c1-cccb6fb1f982", "text": "\u53f2\u745e\u514b\u5728\u4e00\u5ea7\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u4e2d\u592e\u8fdb\u884c\u4e86\u8d85\u7ea7\u82f1\u96c4\u822c\u7684\u7740\u9646\u3002"} +{"id": "2002031", "video_name": "0084d663-c554-5826-8b1a-87094bcc2ca9", "text": "\u5965\u4e01\uff0c\u96f7\u795e\uff0c\u9ad8\u8d28\u91cf\uff0c\u547c\u5438\uff0c\u52a8\u624b\u3002"} +{"id": "2002032", "video_name": "475149d9-f9d0-5678-acc1-6c1db68a943a", "text": "\u8d85\u4eba\u98de\u8fc7\uff0c\u4ed6\u4ece\u5de6\u770b\u5230\u53f3\u3002"} +{"id": "2002033", "video_name": "2e3c104c-075f-58e6-98c2-a57daaab01bd", "text": "\u5927\u9ebb\u4ea7\u54c1\u6b63\u5728\u51c6\u5907\u4ea4\u4ed8\u3002"} +{"id": "2002034", "video_name": "a9668303-ccdf-5472-8df3-6d0f6aa95758", "text": "\u4e00\u4e2a\u900f\u89c6\u89c6\u89d2\u7684\u590d\u53e4\u7f51\u683c\u5728\u4e00\u4e2aPNG\u6587\u4ef6\u4e2d"} +{"id": "2002035", "video_name": "729cc0c1-9004-5c6f-8223-205c7d1c1247", "text": "ELS 9:16\u6536\u5272\u8005\u5728\u4e00\u7247\u6b7b\u82b1\u73af\u7ed5\u7740\u5e9f\u589f\u7684\u7530\u91ce\u4e2d\u884c\u8d70\u3002\n\nSource sentence: The restaurant is closed on Mondays and Tuesdays. \n\u8fd9"} +{"id": "2002036", "video_name": "9b4d32ae-237f-5231-b8aa-bc7f26081bac", "text": "\u7535\u5f71\u5f0f\u7684\u8fd0\u52a8\u548c\u5916\u9762\u7684\u96ea\u82b1\u98d8\u843d\u3002\u96441\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002037", "video_name": "b8bf7b15-5858-56b7-8812-8e08e1eab2ef", "text": "\u6a21\u62df\u80f6\u7247\u7167\u7247\uff0c\u7535\u5f71\u80f6\u7247\u9759\u6b62\u7167\u7247\uff0c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u9a74\u5728\u574e\u5927\u54c8\u5c14\uff0c\u5c0f\u9ed1\u8fb9\uff0c"} +{"id": "2002038", "video_name": "b6ed07ec-6222-5a65-b6a8-3b89e267de4a", "text": "\u90a3\u4e2a\u7537\u4eba\u5728\u6851\u62ff\u623f\u91cc\u3002"} +{"id": "2002039", "video_name": "795014a7-d2f7-5c62-b73e-18a8e17289ce", "text": "\u7eff\u773c\u7279\u5199\uff0c\u7167\u7247\u903c\u771f\uff0c4K\uff0c8K\u3002"} +{"id": "2002040", "video_name": "b3c2117e-d5fb-516b-bc4f-8d6b1eb760ad", "text": "\u83ab\u963f\u5a1c\u548c\u6bdb\u4f0a\u4ece\u6d1e\u7a74\u4e2d\u51fa\u6765\u76843D\u56fe\u50cf\uff0c\u83ab\u963f\u5a1c\u56de\u60f3\u8d77\u4ed6\u4eec\u7684\u5192\u9669\uff0c\u611f"} +{"id": "2002041", "video_name": "57688471-7e7b-5f36-83f7-0f3252b2262c", "text": "\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u6050\u6016\u77ed\u7247\u300aEldritch Metamorphosis\u300b16:9\u3002"} +{"id": "2002042", "video_name": "1ac9da8b-fe35-5ec4-bbfe-c822138e47bd", "text": "\u81ea\u884c\u8f66\u73af\u6e38\u4e16\u754c\uff0c\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "2002043", "video_name": "a2856e79-9971-5503-8e84-81630542f5ef", "text": "\u677e\u9f20\u5728\u6d88\u9632\u6813\u4e0a\u8bf4\u8bdd\uff0c3D\u52a8\u753b\n\nSource sentence: The bookshelf is next to the window.\n\u4e66\u67b6\u5728\u7a97\u6237\u65c1\u8fb9\u3002"} +{"id": "2002044", "video_name": "337ad290-f8e0-5a11-ae89-7ff3cfa3b0d3", "text": "16:9\u5206\u8fa8\u73872048\uff0c\u6f2b\u753b\u98ce\u683c\uff0cRaul Seixas\u5728\u4e00\u4e2a\u5145\u6ee1\u7535\u5b50\u8bbe\u5907\u7684\u9ed1\u6697\u623f\u95f4\u91cc\u7761\u5728\u4f60\u7684\u5e8a\u4e0a\uff0c\u5982"} +{"id": "2002045", "video_name": "b1da7f5f-bf6e-5a5c-845b-69b7816a06a9", "text": "\u964d\u4f4e\u8840\u538b\uff0c\u62b5\u6297\u708e\u75c7\u3002"} +{"id": "2002046", "video_name": "d0aaab9f-8c47-50f6-a330-129e3303506e", "text": "\u8ff7\u5e7b\u68ee\u6797\u4e2d\u7684\u539f\u58f0\u5409\u4ed6"} +{"id": "2002047", "video_name": "7ab895ef-864e-505f-9dd4-817b42633bf9", "text": "\u4e00\u4e2a\u6301\u6709\u5927\u5251\u5728\u9ed1\u6697\u68ee\u6797\u4e2d\u4e0e\u602a\u7269\u6218\u6597\u7684\u730e\u9b54\u4eba\uff0c\u5947\u5e7b\u6e38\u620fCG\uff0c\u730e\u9b54\u4eba3\u6e38"} +{"id": "2002048", "video_name": "4fd34f60-6bc9-59dd-97fe-29acdc0fe0f3", "text": "\u5728\u4e00\u4e2a\u9b54\u6cd5\u50cf\u95ea\u95ea\u53d1\u5149\u7684\u5c18\u571f\u822c\u6f02\u6d6e\u7684\u4e16\u754c\u91cc\uff0c\u751f\u6d3b\u7740\u4e00\u4e2a\u540d\u53eb\u8389\u8389\u7684\u5e74\u8f7b\u5973"} +{"id": "2002049", "video_name": "34f526ba-ef6a-5dd8-bec9-45828843f5ec", "text": "\u6807\u8bb0\u5728\u5929\u7a7a\u4e2d\u6ca1\u6709\u6218\u4e89"} +{"id": "2002050", "video_name": "da408d10-ae04-573c-aa70-7e97c94ba325", "text": "\u753b\u4e00\u4e2a\u8001\u4eba\u5728\u58c1\u7089\u65c1\uff0c\u7ed9\u4ed6\u7684\u5b59\u5b50\u548c\u670b\u53cb\u8bb2\u9b3c\u6545\u4e8b\uff0c\u624b\u52bf\u751f\u52a8\uff0c\u773c\u795e\u5145\u6ee1\u60ac"} +{"id": "2002051", "video_name": "eb9d83a0-1dae-588f-b362-2fb53034bc03", "text": "\u76d1\u72f1\u88ab\u624b\u94d0\u3001\u67e0\u6aac\u6c41\u548c\u67e0\u6aac\u6df9\u6ca1\u3002"} +{"id": "2002052", "video_name": "bc956875-008f-5681-9d13-83ae2625a1d0", "text": "\u4e0e\u798f\u5c14\u6469\u65af\u6709\u5173\u7684\u9053\u5177\uff0c\u88ab\u4e00\u53ea\u4eba\u624b\u62ff\u8d77\u3002"} +{"id": "2002053", "video_name": "ef93764b-be97-59fb-b5f8-bfb272aa20ee", "text": "\u8fd9\u4e9b\u5efa\u7b51\u6240\u9700\u7684\u5efa\u7b51\u77e5\u8bc6\u5f15\u53d1\u4e86\u5bf9\u82cf\u7f8e\u5c14\u6280\u672f\u80fd\u529b\u771f\u6b63\u7a0b\u5ea6\u7684\u4e89\u8bae\u3002"} +{"id": "2002054", "video_name": "737bf50a-5d57-5888-ba50-c9bd55c7e774", "text": "\u53f2\u8482\u592b\u00b7\u4e54\u5e03\u65af\u6b63\u5728\u4e3b\u6301\u4e00\u573aiPhone\u4ea7\u54c1\u53d1\u5e03\u4f1a\u3002"} +{"id": "2002055", "video_name": "d4f79e5b-cc0f-556a-9259-38fb9a932e13", "text": "\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u8d70\u8def\uff0c\u4e0b\u7740\u5927\u96e8\u3002"} +{"id": "2002056", "video_name": "1f738438-3dba-5a50-b93a-47ef739467bd", "text": "\u4e00\u4e2a\u7a7f\u7740\u5916\u5957\u7684\u7537\u4eba\u7ad9\u5728\u5ca9\u77f3\u4e0a\uff0c\u770b\u7740\u6d77\u6d6a\u3002"} +{"id": "2002057", "video_name": "5f591807-7ad2-5026-b5d6-c810b5e40be5", "text": "\u4e09\u53ea\u5c0f\u5154\u5b50\u5728\u623f\u5b50\u540e\u82b1\u56ed\u73a9\u800d\uff0c\u7b11\u58f0\u3001\u8349\u5730\u3001\u73a9\u5177\u3001\u81ea\u884c\u8f66\uff0c\u6df1\u591c\u3002"} +{"id": "2002058", "video_name": "499c57e7-5948-51b8-af62-6895f2807f16", "text": "\u57ce\u5e02\u7537\u5b50\u7a7f\u7740\u8fde\u5e3d\u886b\u8d70\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u80cc\u666f\u5efa\u7b51\u7269\u5728\u4ed6\u7ecf\u8fc7\u65f6\u5d29\u584c\uff0c\u4ed6\u76f4\u89c6"} +{"id": "2002059", "video_name": "911e0acd-4cab-57a5-8ef4-41777c65407e", "text": "\u67d4\u548c\u7684\u8272\u5f69\uff0c\u62bd\u8c61\u7684\u8bbe\u8ba1\uff0c\u7f13\u6162\u79fb\u52a8\u7684\u6c34\u57284k\u4e0b\u6cb8\u817e\u3002"} +{"id": "2002060", "video_name": "e8d31162-79ce-53a2-b366-4cbe17f9a046", "text": "\u5973\u5b69\u5728\u82b1\u56ed\u91cc\u548c\u9e21\u4e00\u8d77\u73a9\u800d\u3002\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3002"} +{"id": "2002061", "video_name": "f2fb7bf4-81a1-5a71-b124-31a4b3e8e4a1", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u573a\u666f\uff0c\u5e26\u6709\u9ed1\u6697\u548c\u626d\u66f2\u7684\u72ec\u7279\u90aa\u6076\u7684\u300a\u661f\u7403\u5927\u6218\u300b\u7535\u5f71\u5448\u73b0\uff0c\u4ee5HR\u5409\u683c\u5c14\u7684"} +{"id": "2002062", "video_name": "3d3f77be-2ce2-5b1d-aeb5-994dc657f673", "text": "\u4e00\u6761\u7f8e\u4e3d\u7684\u6cb3\u5cb8\uff0c\u9ec4\u91d1\u65f6\u523b\u3002 (Vallejo)"} +{"id": "2002063", "video_name": "cdc2b700-0a82-52ff-b3f2-7f3b6b1e40a3", "text": "\u7531\u4e8e\u76ae\u5361\u7684\u5b58\u5728\uff0c\u6211\u4eec\u7684\u8fdc\u89c1\u4e0d\u4f1a\u6d88\u5931\u3002"} +{"id": "2002064", "video_name": "1b048d3a-57b3-58c0-87b9-41d14331deef", "text": "\u5b8c\u7f8e\u7684\u718f\u8089\u4e09\u660e\u6cbb\uff0c\u539f\u59cb\u8499\u7279\u5229\u5c14\u98df\u8c31\uff08\u5706\u9ed1\u9ea6\u9762\u5305\u7247\u3001\u718f\u8089\u548c\u82a5\u672b\uff09\uff0c\u7528\u4e8e\u7535\u89c6"} +{"id": "2002065", "video_name": "b88a3ecf-3349-5fd4-8391-053cca8245e6", "text": "\u4e00\u53ea\u5c0f\u732b\u6b63\u5728\u7ed9\u5723\u8bde\u8001\u4eba\u5199\u4fe1\u3002"} +{"id": "2002066", "video_name": "f8072ff3-ffda-5fa2-9b9b-ca7ee9f285ea", "text": "MRI\u5f71\u50cf\u5728\u827a\u672f\u9986\u7684\u955c\u5b50\u4e0a\u7684\u53cd\u5c04\u3002"} +{"id": "2002067", "video_name": "76ac1ec5-15f1-5283-8672-441b333c9b97", "text": "\u6f2b\u753b\u4e8b\u4ef6\u6539\u53d8\u4e86\u65f6\u7a7a\u7684\u8fd0\u52a8\u3002\u52a8\u6001\u56fe\u5f62\u3001\u6d41\u4f53\u52a8\u6001\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u5929\u4f53\u3001AR 16:9\u3002"} +{"id": "2002068", "video_name": "9c5338f9-b37d-5321-a1af-dd56db88b8b3", "text": "\u5361\u901a\u53ef\u7231\u76843D\u5c0f\u8717\u725b\u5750\u5728\u5bfc\u5f39\u4e0a\u98de\u7fd4\u7a7f\u8fc7\u5929\u7a7a\u3002"} +{"id": "2002069", "video_name": "fbef664f-2566-5fae-aa84-b1763f022987", "text": "\u7cbe\u5bc6\u7684\u673a\u68b0\u88c5\u7f6e\u4f20\u9001\u4e00\u9897\u5927\u7406\u77f3\u3002"} +{"id": "2002070", "video_name": "81420923-738b-519d-aa2e-5bfc62888d23", "text": "\u4e00\u6761\u70ed\u95f9\u7684\u8857\u5e02\uff0c\u4eba\u4eec\u4e92\u76f8\u4ea4\u6d41\uff0c\u6f2b\u6b65\u5176\u4e2d\u3002"} +{"id": "2002071", "video_name": "ad2d412c-dee3-53eb-8763-484d82c58dfb", "text": "\u4e00\u4e2a\u7531\u53e4\u8001\u98ce\u5316\u77f3\u5934\u5236\u6210\u7684\u957f\u6ee1\u666f\u89c2\u3001\u6811\u6728\u3001\u6839\u548c\u85e4\u8513\u4ee5\u53ca\u82d4\u85d3\u7684\u6709\u80e1\u987b\u7684C3"} +{"id": "2002072", "video_name": "f0d92464-3c90-556e-a69b-26c5405921e2", "text": "\u57ce\u5e02\u4eba\u7fa4\uff0c\u903c\u771f\u76843D\u56fe\u50cf\uff0c\u9ec4\u660f\u65f6\u5149\uff0c\u9ad8\u6e051080\u753b\u8d28\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "2002073", "video_name": "c2868a6a-833d-5957-8534-722ab8593425", "text": "\u54c8\u5409\u7c73\u00b7\u7a7a\u5c71\u5c71\u7684\u8d85\u8be6\u7ec6\u8ff7\u5e7b\u55b7\u67aa\u753b\uff0c\u8fd1\u8ddd\u79bb\u6b63\u9762\u89c6\u56fe\uff0c\u7ad9\u5728\u70df\u96fe\u5f25\u6f2b\u7684\u7a7a\u5730\u4e0a\uff0c\u4ece"} +{"id": "2002074", "video_name": "04e86fff-cb4d-5224-b456-fd99b34e85b3", "text": "\u5730\u7403\u56e0\u9668\u77f3\u649e\u51fb\u800c\u53d1\u751f\u707e\u96be\u6027\u7206\u70b8\uff0c\u4ece\u592a\u7a7a\u8fdc\u8ddd\u79bb\u62cd\u6444\uff0c\u7528\u865a\u5e7b\u5f15\u64ce5\u5236"} +{"id": "2002075", "video_name": "a5e7bab7-86d7-5974-8835-6749f4f49cc1", "text": "\u4f4e\u8bed\u7684\u79d8\u5bc6\u7b49\u5f85\u88ab\u91cd\u65b0\u53d1\u73b0\u7684\u4e00\u672c\u4e66\u3002"} +{"id": "2002076", "video_name": "d6f2d043-10aa-5dda-8a47-da210117120f", "text": "\u653e\u5927\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u725b\u4ed4\u88e4\u5728\u5c0f\u591c\u5e02\u8857\u9053\u4e0a\u8d70\u8def\u7684\u7537\u4eba\u7684\u978b\u5b50\uff0c\u5468\u56f4\u6709\u5f88\u591a\u5496\u5561"} +{"id": "2002077", "video_name": "45ee949c-33c1-59f9-928f-27e4af4d3083", "text": "\u9a6c\u7279\u00b7\u5f17\u91cc\u7684\u4f69\u4f69\u9752\u86d9\u5728\u7e41\u5fd9\u7684\u7ebd\u7ea6\u8857\u9053\u4e0a\u9a91\u7740\u4e09\u8f6e\u8f66\u559d\u5564\u9152\uff0c\u52a8\u753b"} +{"id": "2002078", "video_name": "8e53e59a-0074-5f92-be50-03d124a57d7c", "text": "\u529e\u516c\u5ba4\u73af\u5883\u4e2d\u751f\u65e5\u5e86\u795d\u7684\u4e09\u7ef4\u5361\u901a\u98ce\u683c\u8349\u56fe\u3002"} +{"id": "2002079", "video_name": "ef70e7f4-45a9-5f5f-a794-baf3174faafb", "text": "\u9a6c\u514b\u6b63\u4e0e\u4e00\u7fa4\u70ed\u5207\u7684\u542c\u4f17\u5206\u4eab\u4ed6\u7684\u6210\u529f\u6545\u4e8b\uff0c\u4ed6\u5145\u6ee1\u81ea\u8c6a\u548c\u5e0c\u671b\u7684\u9762\u5bb9\u4ee4\u4eba\u8000\u773c\uff0c"} +{"id": "2002080", "video_name": "9e6480db-a9b6-5d91-aff4-957aa32b87ae", "text": "\u50cf\u7d20\u5728\u5e73\u767d\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "2002081", "video_name": "d5de6eac-fc6a-54a9-9936-e5840e7f73da", "text": "\u90aa\u6076\u7684\u7537\u4eba\u5750\u5728\u4ed6\u7684\u529e\u516c\u684c\u540e\u9762\uff0c\u53d1\u51fa\u5632\u7b11\u58f0\uff0c\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\uff0c\u50cf\u5361\u901a\u4e00\u6837\u3002"} +{"id": "2002082", "video_name": "d94cd1a2-ab7c-5ee2-97f5-d45ead72c765", "text": "\u5728\u6708\u4eae\u4e0a\u3002\u4fe1\u606f\uff1a\u6cd5\u56fd\u6597\u725b\u72ac\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2002083", "video_name": "93e9c6fc-9161-5c20-a9b7-e41e054151da", "text": "\u4e00\u8258\u6f5c\u8247\u63a5\u8fd1\u4e86\u4e00\u67b6\u6c34\u4e0b\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "2002084", "video_name": "4cbb286c-034c-598f-8417-cff628c6db12", "text": "\u76ae\u514b\u65af\u52a8\u753b\uff1a\u4e00\u4e2a\u8d2b\u7a77\u7537\u5b69\u53d8\u6210\u5bcc\u6709\u7684\u7537\u4eba\u3002"} +{"id": "2002085", "video_name": "894de595-e202-5eb7-9046-6934fc32ed16", "text": "\u592a\u9633\u5728\u5929\u7a7a\u4e2d\u53d1\u51fa\u5b83\u7684\u5149\u8292\u3002"} +{"id": "2002086", "video_name": "4f28764f-92ed-55f9-8e55-64f9f8456acc", "text": "\u5c06\u7537\u4eba\u53d8\u6210\u7f8e\u4e3d\u7684\u5973\u4eba\u3002"} +{"id": "2002087", "video_name": "368010c8-59b9-5743-b51e-d6b430a71792", "text": "\u672a\u6765\u4e3b\u4e49\u5e9f\u5f03\u57ce\u5e02\uff0c\u5927\u90e8\u5206\u662f\u767d\u8272\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\uff0c\u7535\u5f71\u5de5\u4f5c\u5ba4\u706f\u5149\uff0c\u7f29\u5c0f\u753b\u9762\uff0c\u9053\u8def\u4e0a\u6709\u70df"} +{"id": "2002088", "video_name": "7dfa80f7-5185-5485-8427-e715bdb8e6ba", "text": "\u9752\u86d9\u6389\u5728\u4e86\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2002089", "video_name": "e206c898-3557-50c4-adc9-f61023517a3e", "text": "\u4e00\u4f4d\u6234\u7740\u5934\u5dfe\u7684\u6f02\u4eae\u5e74\u8f7b\u5973\u5b50\u6b63\u5728\u559d\u53ef\u53e3\u53ef\u4e50\uff0c\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "2002090", "video_name": "cb2c4245-7ce0-545a-b87e-e2bfa6798485", "text": "\u5927\u5b66\u6821\u56ed\u91cc\u6709\u5b66\u751f\u548c\u8001\u5e08\u3002"} +{"id": "2002091", "video_name": "30d31d92-f0fa-5344-9c4a-ddb5fb2c3c63", "text": "\u5728\u6c34\u4e0a\u50cf\u9a6c\u672f\u9a91\u624b\u4e00\u6837\u9a91\u7740\u9cb8\u9c7c"} +{"id": "2002092", "video_name": "4ff53839-ba10-5845-8ad3-5b5b27aa962a", "text": "\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u9ad8\u8d28\u91cf\u7684\u5e03\u5c14\u52a0\u54c8\u91cc\u53d1\u89c6\u9891\u3002"} +{"id": "2002093", "video_name": "8495a692-34fa-5ab4-be75-7ccecdf9d171", "text": "\u5723\u6bcd\u739b\u5229\u4e9a\u5728\u5929\u5802\u4e2d\u7948\u7977\uff0c\u88ab\u5929\u4f7f\u73af\u7ed5\uff0c\u80cc\u666f\u79fb\u52a8\u3002"} +{"id": "2002094", "video_name": "ef97cb2d-7610-5bf7-bc20-525c522171fd", "text": "Source sentence translated into Chinese: BGC14\u6770\u62c9\u548c\u9999\u519c\u6253\u67b6\uff0c\u5973\u5b69\u4e4b\u95f4\u7684\u6597\u4e89\u3002"} +{"id": "2002095", "video_name": "177494c2-609b-56d5-8db1-d826e0a074f2", "text": "\u629b\u51fa\u540e\u9676\u571f\u7f50\u5b50\u649e\u51fb\u6df7\u51dd\u571f\u5899\u7834\u788e\u7684\u6162\u52a8\u4f5c\u89c6\u9891"} +{"id": "2002096", "video_name": "6822f190-af07-59e8-bddc-5323d16caa0b", "text": "\u7537\u4eba\u6cae\u4e27\u5730\u8eba\u5728\u7535\u89c6\u524d\u89c2\u770b\u3002"} +{"id": "2002097", "video_name": "33896976-b3d5-5621-9472-471ff9a1497c", "text": "\u4e00\u5e45\u8272\u5f69\u7f24\u7eb7\u7684\u5973\u5b50\u753b\u50cf\uff0c\u6d77\u6d6a\u4e2d\u5fae\u5999\u7684\u52a8\u6001\u3002"} +{"id": "2002098", "video_name": "0956d336-6be1-5fd0-9061-2a3f88ecf27a", "text": "\u4eba\u7c7b\u80ba\u5728\u6574\u4e2a\u5927\u5c40\u4e2d\u88ab\u770b\u5230\u3002"} +{"id": "2002099", "video_name": "5b855fce-306d-5d9f-888e-7dfe2582fa84", "text": "\u7070\u8272\u80cc\u666f\u4e0a\u7684LED\u5149\u7597\u9762\u7f69"} +{"id": "2002100", "video_name": "a27a3282-326d-5c4f-a7a8-1fc18a6b95b4", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u4e9a\u6d32\u5973\u6027\uff0c\u6234\u7740\u7c89\u8272\u7684\u548c\u670d\uff0c\u4e0a\u9762\u5370\u6709\u6a31\u82b1\uff0c\u767d\u53d1\u62ab\u80a9\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u5316"} +{"id": "2002101", "video_name": "7b8c22d3-3270-54f7-a7e8-7ddd0533c131", "text": "\u8d85\u4eba\u4ece\u5929\u7a7a\u4e2d\u8df3\u4e0b\u6765\uff0c\u5f3a\u6709\u529b\u5730\u843d\u5728\u5730\u9762\u4e0a\uff0c\u9020\u6210\u4e86\u91cd\u5927\u7684\u7834\u574f\u3002\u8fd9\u4e00\u573a\u666f\u6355\u6349\u4e86\u4ed6\u4e0b\u964d\u7684\u52a8"} +{"id": "2002102", "video_name": "02d27cb5-0ddf-582b-9b16-61a9c85084af", "text": "\u9876\u90e8\u4fef\u89c6\u68ee\u6797\uff0c\u7528\u65e0\u4eba\u673a\u7f8e\u5b66\uff0cMIKUMAN\u5b57\u4f53\uff08MODERN\uff09\u3002"} +{"id": "2002103", "video_name": "df7b9e64-f673-597a-8a06-dada0a048929", "text": "\u51b2\u6d6a\u5386\u53f2\u7684\u5de8\u6d6a\uff0c\u7ec6\u8282\u6e05\u6670\uff0c\u9ad8\u6e05\u6670\u5ea64K\u3002"} +{"id": "2002104", "video_name": "7b92c445-dd5c-5a67-b408-0e5be9431c00", "text": "\u903c\u771f\u7684\u4f18\u96c5\u7f8e\u5973\u56fe\u50cf\uff0c\u5168\u8eab\u884c\u8d70\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u7a7f\u7740\u65f6\u5c1a\u7684\u7d27\u8eab\u8863\u670d\uff0c\u5b8c\u7f8e\u7684\u8eab\u6750\u6bd4\u4f8b\uff0c\u7f8e"} +{"id": "2002105", "video_name": "0f92c7be-28da-5e34-8e68-aa7a2506a12d", "text": "\u8d85\u73b0\u5b9e\u672a\u6765\u4e3b\u4e49\u592a\u7a7a\u98de\u884c\u6c7d\u8f66"} +{"id": "2002106", "video_name": "04467986-9339-59ea-8b12-7b0c6eca24ea", "text": "\u4e00\u67b6\u4e0d\u660e\u98de\u884c\u7269\u4ece\u5929\u7a7a\u4e2d\u7684\u4e00\u4e2a\u95e8\u6237\u51fa\u73b0\u4e86\u3002"} +{"id": "2002107", "video_name": "60636a76-d886-5611-ae30-9606b2bbd309", "text": "\u73b0\u5b9e\u4e2d\u7ec8\u7ed3\u8005\u673a\u5668\u4eba\u5728\u672b\u65e5\u4e16\u754c\u4e2d\u7684\u7167\u7247\uff0c\u706b\u7130\u3001\u70df\u96fe\u3001\u7ec6\u8282\u4e30\u5bcc\uff0c4K\u3002\u4fe1\u606f\uff1a\u521b\u4e16"} +{"id": "2002108", "video_name": "3912a749-d05f-5098-8925-113834418a87", "text": "\u4e00\u53ea\u62e5\u6709\u8bb8\u591a\u773c\u775b\u548c\u67d4\u8f6f\u534a\u900f\u660e\u8d28\u5730\u7684\u9ebb\u96c0\u9e1f\u3002"} +{"id": "2002109", "video_name": "3658a88b-a4dd-562f-89cc-5a8350ba6b4c", "text": "\u8fc7\u5c71\u8f66\u5efa\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "2002110", "video_name": "f3c15c40-edd1-5815-83ad-c2af50f5d982", "text": "\u5927\u672c\u949f\u5728\u5915\u9633\u4e0b\u968f\u7740\u65e5\u843d\u800c\u53d8\u6697\uff0c\u5e76\u6709\u4e00\u4e9b\u8fd0\u52a8\u3002"} +{"id": "2002111", "video_name": "c3b3a28b-c8e6-55a4-bedb-34c07140c0ab", "text": "\u76db\u5f00\u7684\u767e\u5408\u82b1\u65cb\u8f6c\u6444\u50cf\u673a\u7f29\u653e\u5e76\u5411\u5de6\u5e73\u79fb\u3002"} +{"id": "2002112", "video_name": "3e7b1734-74e0-52e2-9c11-b8c9af6953ed", "text": "\u91d1\u8272\u7f8e\u4eba\u9c7c\u516c\u4e3b\u5728\u6d77\u6ee9\u65c1\u62cd\u6253\u7740\u6ce2\u6d6a\uff0c\u5929\u6c14\u5f88\u597d\u3002"} +{"id": "2002113", "video_name": "77861920-3198-5903-b7b1-a97dfcdd9281", "text": "\u4e09\u5341\u591a\u5c81\u7684\u7537\u5b50\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u8def\u4e0a\u4eba\u6765\u4eba\u5f80\uff0c\u4ed6\u5185\u5fc3\u611f\u5230\u5b64\u72ec\uff0c\u770b\u7740\u8def\u8fc7\u7684\u4eba\uff0c\u6444\u50cf\u673a\u4ece\u80cc\u540e"} +{"id": "2002114", "video_name": "9be244ae-87fb-5bd4-81a2-c1f6f9987ab1", "text": "\u4e00\u4e2a\u7537\u4eba\u62ac\u8d77\u5934\u6765\uff0c\u4e66\u9875\u5728\u4ed6\u7684\u80cc\u666f\u4e0b\u98de\u821e\u3002"} +{"id": "2002115", "video_name": "22d20af0-934b-52e8-84ec-c8f900c18842", "text": "\u5927\u84dd\u8272\u7403\u5728\u672a\u6765\u4e3b\u4e49\u5730\u70b9\u5c71\u95f4\u98de\u884c\u3002"} +{"id": "2002116", "video_name": "6839af19-3097-59bc-b76c-61355d9aa731", "text": "\u4e00\u4e2a\u7a7f\u7740\u91d1\u5c5e\u94f6\u8fd0\u52a8\u5916\u5957\u7684\u82f1\u4fca\u4e9a\u6d32\u7537\u5b50\u8d70\u51fa\u76d1\u72f1\u7262\u623f\u3002"} +{"id": "2002117", "video_name": "29dcca8b-55c2-5063-966e-213740160208", "text": "\u7070\u5c18\u548c\u70df\u96fe\u5347\u8d77\uff0c\u795e\u5723\u7684\u5bfa\u5e99\uff0c\u592a\u9633\u6b63\u5728\u80cc\u666f\u4e2d\u843d\u4e0b\u3002"} +{"id": "2002118", "video_name": "8aa02bc3-e512-594e-b35a-a31d4c216a6e", "text": "\u53ef\u7231\u66b9\u7f57\u732b\u7684\u5934\u90e8\uff0c\u5927\u773c\u775b\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c\u903c\u771f\u3002"} +{"id": "2002119", "video_name": "1cad8f63-2201-5815-b859-b4aa47fc13dd", "text": "\u4e00\u8258\u5c0f\u578b\u592a\u7a7a\u98de\u8239\u6ed1\u5411\u4e00\u4e2a\u964c\u751f\u7684\u6708\u7403\u3002"} +{"id": "2002120", "video_name": "9083dec4-f452-5726-a988-84597838ec90", "text": "\u7537\u5b50\u9a7e\u9a76\u81ea\u5236\u76f4\u5347\u673a\uff0cIMAX\u7535\u5f71\u3002"} +{"id": "2002121", "video_name": "7d35bcdd-3ad5-5dd7-beb8-33053bc9e8c8", "text": "\u9e35\u9e1f\u5728\u9ec4\u660f\u65f6\u5206\u7a7f\u8d8a\u6c99\u6f20\u65f6\uff0c\u8fc8\u51fa\u5927\u6b65\u4f10\uff0c\u72b9\u5982\u7535\u5f71\u4e2d\u83b7\u5956\u7684\u955c\u5934\u3002"} +{"id": "2002122", "video_name": "ee072eb0-5e01-5671-ba64-cdb699703874", "text": "\u4efb\u5929\u58028\u4f4d\u677e\u5f1b\u96e8\u8996\u983b"} +{"id": "2002123", "video_name": "ef30f99c-6436-5ac1-b14e-cb7933e7a3f1", "text": "\u52a8\u753b\u7247\uff0c\u7a7f\u7740\u897f\u88c5\u5531\u6b4c\u7684\u8036\u7a23\uff0c\u8ff7\u5e7b\u6548\u679c\uff0c\u5feb\u901f\u65cb\u8f6c\u7684\u6444\u50cf\u673a\uff0c\u8fd0\u52a84"} +{"id": "2002124", "video_name": "cae9abfa-40c5-5869-8d7d-86fbc7dea9d9", "text": "\u5ba4\u5185\u5723\u8bde\u6811\uff0c\u6237\u5916\u6709\u96ea\u3002"} +{"id": "2002125", "video_name": "d46f6359-f98e-593c-a3d9-5c2f3eaf8e67", "text": "\u7537\u4eba\u5728\u96fe\u4e2d\u5954\u8dd1\uff0c\u8272\u5f69\u6545\u969c"} +{"id": "2002126", "video_name": "12172ecf-e88b-53f6-9b3c-7dadf1c11802", "text": "\u4e00\u4e2a\u5fae\u7b11\u7740\u7684\u6709\u7fc5\u8180\u7684\u706b\u817f\uff0c\u6234\u7740\u592a\u9633\u955c\u7684\u9999\u80a0\uff0c\u8fd8\u6709\u4e00\u5757\u914d\u6709\u5976\u6cb9\u7684\u732a\u6392"} +{"id": "2002127", "video_name": "8b1fc490-d762-5598-9792-bf1ab6dddb44", "text": "\u4ece\u9a7e\u9a76\u8231\u89d2\u5ea6\u89c2\u5bdf\u5c0f\u72d7\u548c\u5c0f\u732b\u5f00\u8f66\uff0c\u8fdb\u884c\u7f29\u653e\u3002"} +{"id": "2002128", "video_name": "7ca94bb3-5300-5fa3-b2de-af5662c7fb79", "text": "70\u5e74\u4ee3\uff0c\u5728\u6ed1\u8f6e\u821e\u516c\u56ed\u91cc\uff0c\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u5c71\u7f8a\u5728\u8df3\u821e\u3002"} +{"id": "2002129", "video_name": "e3011ccf-a4df-5f98-bfba-65543801579e", "text": "\u8bf7\u5c06\u6b64\u56fe\u50cf\u52a8\u753b\u5316\uff0c\u8ba9\u4eba\u4eec\u5728\u8def\u4e0a\u8d70\u52a8\uff0c\u5546\u5e97\u91cc\u4e5f\u6709\u4e9b\u4eba\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002130", "video_name": "fe0b0ebf-ea59-527f-b8b2-29a7bf11e77d", "text": "\u80cc\u666f\u5f88\u7b80\u5355\uff0c\u6709\u50cf\u679c\u51bb\u548c\u5e7f\u544a\u89c6\u9891\u4e4b\u7c7b\u7684\u6587\u5b57\u51fa\u73b0\uff0c\u4e3a16:9\u7684\u3002"} +{"id": "2002131", "video_name": "c96bffb4-f38d-502a-9986-587bffcca1f4", "text": "\u6211\u9700\u8981\u4e00\u53ea\u5728\u68ee\u6797\u91cc\u8df3\u8dc3\u5e76\u51e0\u4e4e\u6293\u4f4f\u9e7f\u7684\u72ee\u5b50\uff0c\u800c\u4e14\u5929\u6c14\u662f\u96e8\u5929\u3002"} +{"id": "2002132", "video_name": "cc01457c-c735-5827-86bf-a2efb2fdbaa9", "text": "\u4e00\u4e2a\u6076\u610f\u8f6f\u4ef6\u5728\u6570\u636e\u4e2d\u5fc3\u5185\u8fd0\u884c\u3002"} +{"id": "2002133", "video_name": "b99d8651-e7cf-59fd-9080-8cc5d0e3da47", "text": "\u54c6\u5566A\u68a6\u6b63\u5728\u8857\u4e0a\u8d70\u3002\u8857\u9053\u5e72\u51c0\u800c\u5b89\u9759\u3002"} +{"id": "2002134", "video_name": "de6540f9-9fbf-5d39-aa89-1466026002d8", "text": "\u5723\u8bde\u997c\u5e72\uff0c\u4e3a\u5723\u8bde\u8001\u4eba\u51c6\u5907\u7684\u725b\u5976\u914d\u5723\u8bde\u997c\u5e72\u3002"} +{"id": "2002135", "video_name": "388120c1-e94c-565a-8bc0-ff4142af4fcd", "text": "\u4e00\u53ea\u6d77\u9f9f\u5728\u52a0\u52d2\u6bd4\u6d77\u6e38\u6cf3\u3002"} +{"id": "2002136", "video_name": "0b0cf1e3-36d1-5caf-8474-43c3e95f8615", "text": "\u4f7f\u8fd9\u5f20\u56fe\u7247\u4ee5\u9ad8\u8d28\u91cf\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "2002137", "video_name": "1c2c58de-698a-5e9f-9726-0301511929ee", "text": "\u5236\u4f5c\u4e00\u4e2a\u6c42\u5a5a\u65e5\u7684\u56fe\u7247\uff0c\u7528\u4e00\u4e2a\u7537\u5b69\u62ff\u7740\u4e00\u6735\u73ab\u7470\u5411\u5973\u5b69\u6c42\u5a5a\u3002"} +{"id": "2002138", "video_name": "07297199-8f20-58ab-a148-1bae958175bc", "text": "\u68ee\u6797\u573a\u666f\uff1a\u573a\u666f\u4ece\u68ee\u6797\u4e2d\u4e00\u7fa4\u9ad8\u8038\u7684\u677e\u6811\u5f00\u59cb\u3002\u5fae\u98ce\u8f7b\u62c2\u6811\u53f6\uff0c\u4ee4\u7a7a\u6c14\u4e2d\u5f25\u6f2b"} +{"id": "2002139", "video_name": "9a5df3bc-d10a-5d9d-816c-0b032f3b8fed", "text": "\u770b\u5230\u7a97\u5916\u540e\uff0c\u5979\u5927\u58f0\u5c16\u53eb\u3002"} +{"id": "2002140", "video_name": "5a6d55cd-f084-58f4-bec6-995346e7b0ee", "text": "\u4e00\u4e2a\u770b\u8d77\u6765\u5f88\u6709\u538b\u529b\u7684\u4eba\u5728\u67e5\u770b\u624b\u673a\u7684\u89c6\u9891"} +{"id": "2002141", "video_name": "2476ccad-58c5-556f-810a-b7ed142d3d24", "text": "DJ Andrillioni\u5728\u5927\u578b\u95ea\u5149\u6d3e\u5bf9\u4e0a\u8868\u6f14\u3002\n\nSource sentence: I need to buy some groceries for dinner tonight. \n\u6211\u9700\u8981\u4e70\u4e9b\u665a\u9910\u7684\u6742\u8d27\u3002"} +{"id": "2002142", "video_name": "a36d328b-70a7-56e9-a2b1-09262263e51a", "text": "\u4e00\u4e2a\u63cf\u7ed8\u4e86Max\u3001Lily\u548c\u4ed6\u4eec\u6765\u81ea\u72d7\u4ff1\u4e50\u90e8\u7684\u670b\u53cb\u4eec\u7684\u8096\u50cf\u753b\u88ab\u88c5\u5728\u5979\u7684\u5ba2\u5385\u91cc\uff0c\u6355\u6349\u5230"} +{"id": "2002143", "video_name": "92311ac9-255b-59b9-9071-63dd840b2457", "text": "\u9aa8\u67b6\u5750\u5728\u623f\u95f4\u7684\u89d2\u843d\uff0c\u7070\u8272\u7684\u5899\u58c1\uff0c\u9634\u5f71\u3002"} +{"id": "2002144", "video_name": "0d066cf1-5b51-5d2d-9e76-2ad409d119a5", "text": "\u4e00\u676f\u5496\u5561\u4ece\u4e0a\u65b9\u6e85\u51fa\u6765\u3002"} +{"id": "2002145", "video_name": "df0b545f-2945-5abf-9936-14fe8bf9213f", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7ec6\u8282\u7684\u5973\u4eba\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u7ea2\u8272\u62ab\u80a9\u88d9\uff0c\u5728\u68ee\u6797\u91cc\u7684\u6728\u5c4b\u4e2d\u72ec\u81ea\u884c\u8d70\uff0c\u591c\u665ags10"} +{"id": "2002146", "video_name": "7c79f965-21bf-5928-ac5b-9daeb809dbf6", "text": "\u725b\u6d25\u90e1\u7684\u65e0\u4eba\u673a\u62cd\u6444\u753b\u9762\u3002"} +{"id": "2002147", "video_name": "71ef93c5-0fb4-50d7-bf1d-e4bc3c702999", "text": "\u5728\u8def\u4e0a\u6709\u5c38\u4f53\u3002"} +{"id": "2002148", "video_name": "a1f30347-dcb4-51ac-ab37-7bb0c11910a2", "text": "\u53ef\u7231\u7684\u5c0f\u9e1f\u843d\u5728\u4e00\u68f5\u6811\u4e0a\u3002"} +{"id": "2002149", "video_name": "1de3dba0-eab4-5c16-a2f7-2dbd8016681d", "text": "\u4e24\u540d\u4e8c\u6218\u5fb7\u56fd\u58eb\u5175\u7ad9\u5728\u65e0\u4eba\u533a\u9762\u5bf9\u7740\u76f8\u673a\uff0c\u7167\u7247\u4e3a\u6a21\u62df\u80f6\u7247\u62cd\u6444\uff0c\u6709\u9897\u7c92\u611f\uff0c\u9762\u5bb9\u6e05"} +{"id": "2002150", "video_name": "df694d25-93c7-55ac-ad78-4d44b572eead", "text": "\u96f7\u65af\u7279\u66fc\u4ece\u65e7\u7535\u5f71\u9662\u8dd1\u51fa\u6765\uff0c\u65e7\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2002151", "video_name": "394f8816-f0da-5042-b4a1-0e5de28d7586", "text": "\u4e00\u58f6\u71c3\u70e7\u7684\u70ed\u5496\u5561\u3002\u4fe1\u606f\uff1a\u5496\u5561\u65f6\u95f4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2002152", "video_name": "2cb489ef-0379-5884-a260-a0a34047e671", "text": "1969\u5e74\u7684\u4e0d\u660e\u98de\u884c\u7269\u88ab\u4eba\u7c7b\u673a\u68b0\u5e08\u4fee\u590d\u3002"} +{"id": "2002153", "video_name": "42c74d9a-a371-5fd9-9fce-f4af233adb76", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9910\u5385\u5403\u7740\u829d\u58eb\u6c49\u5821\u3002"} +{"id": "2002154", "video_name": "164b9cc7-6a1e-5811-b450-4f25fb79cbe0", "text": "\u6bcf\u4e2a\u5bb6\u5ead\u90fd\u4f1a\u8fdb\u884c\u5f7b\u5e95\u7684\u6e05\u6d01\uff0c\u4ee5\u9664\u53bb\u65e7\u5e74\u7684\u5384\u8fd0\uff0c\u8fce\u63a5\u65b0\u5e74\u7684\u597d\u8fd0\u3002\u4eba\u4eec\u4f1a\u6e05\u7406\u623f\u5c4b\uff0c\u5e76\u8d34\u4e0a"} +{"id": "2002155", "video_name": "c22f1612-bea8-5b9e-a5a5-5fd71ca44515", "text": "\u9f99\u5728\u98de\u884c\u65f6\u5411\u6751\u5e84\u55b7\u706b\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "2002156", "video_name": "de8c2b4b-83bb-5036-84c8-ccc8671709f5", "text": "\u4e24\u4e2a\u4fc4\u7f57\u65af\u4eba\u4e4b\u95f4\u7684\u7231\u60c5\u573a\u666f\u3002\u5728\u7c89\u8272\u7684\u6811\u6797\u4e2d\u3002\u5168\u5c4f\u5e55\u3002\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u300210\u79d2\u949f\u5185\u3002"} +{"id": "2002157", "video_name": "e96be711-9bc1-5315-8410-d2d56c29b72c", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u89c9\u56fe\u50cf\uff0c\u63cf\u7ed8\u4e00\u7fa4\u670b\u53cb\u805a\u96c6\u5728\u68ee\u6797\u8fb9\u7f18\uff0c\u624b\u6301\u624b\u7535\u7b52\u7a7f\u900f\u9ed1\u6697\uff0c\u51c6\u5907\u63a2"} +{"id": "2002158", "video_name": "f5515209-4bdf-515f-b46f-060397d7a6d7", "text": "\u7537\u4f5c\u5bb6\u5750\u5728\u684c\u524d\u5199\u4f5c\u3002"} +{"id": "2002159", "video_name": "0074168b-c961-5557-b643-01fc35393b00", "text": "\u9996\u90fd\u8f9b\u9a6c\u5821\u6700\u5927\u7684\u8d2d\u7269\u4e2d\u5fc3\u3002"} +{"id": "2002160", "video_name": "f37e9607-e6e3-52d9-bd60-01b01cd11287", "text": "\u7231\u56e0\u65af\u5766\u6234\u7740VR\u773c\u955c\u5411\u6444\u50cf\u673a\u6325\u624b\u3002"} +{"id": "2002161", "video_name": "5fb3e6e1-b781-5d4f-ac6e-489cbd259e81", "text": "\u751f\u6210\u4e00\u8f86\u53d7F15\u542f\u53d1\u7684\u6c7d\u8f66\uff0c\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "2002162", "video_name": "f697ead2-857c-5ef0-b570-8a14bdef7235", "text": "\u5728\u5929\u7a7a\u4e2d\uff0c\u6c34\u84b8\u6c14\u51b7\u5374\u5e76\u51dd\u7ed3\uff0c\u5f62\u6210\u4e91\u3002"} +{"id": "2002163", "video_name": "a022b393-34cf-5ce3-9519-2927a663be81", "text": "\u7528\u8fea\u58eb\u5c3c\u98ce\u683c\u63cf\u7ed8\u8d5e\u626c\u6751\u6c11\uff0c\u5c55\u73b0\u4ed6\u4eec\u8138\u4e0a\u7684\u5e78\u798f\u548c\u611f\u6fc0\u4e4b\u60c5\u3002"} +{"id": "2002164", "video_name": "046d74fe-0647-51e6-92cb-791fd8899535", "text": "\u4e00\u4e2a\u5750\u5728\u8f6e\u6905\u4e0a\uff0c\u8eab\u4e0a\u7a7f\u7740\u70b8\u5f39\u80cc\u5fc3\uff0c\u624b\u8155\u4e0a\u5e26\u7740\u6570\u5b57\u5012\u8ba1\u65f6\u8868\u768490\u5c81\u8001\u4eba\uff0c\u8fd9\u4f4d"} +{"id": "2002165", "video_name": "6f7d9f0e-3268-51f8-bd35-c93cc4b33ab8", "text": "\u51ef\u6492\u7a7f\u7740\u6807\u5fd7\u6027\u7684\u7ea2\u978b\u5728\u7f57\u9a6c\u8857\u5934\u884c\u8d70\u3002"} +{"id": "2002166", "video_name": "4c88fe8a-0be1-59e2-952a-cec1c290aab5", "text": "\u6a21\u7279\uff0c\u8d85\u903c\u771f\uff0c\u6bd4\u57fa\u5c3c\uff0c\u65f6\u88c5\u79c0\uff0c10\u79d2\u949f\u3002"} +{"id": "2002167", "video_name": "f744e34a-8d5b-5318-b523-1269d12d787b", "text": "\u661f\u661f\u7684\u52a8\u753b\uff0c\u5973\u5b69\u5728\u98de\u7fd4\uff0c\u5706\u5708\u5728\u65cb\u8f6c\u3002"} +{"id": "2002168", "video_name": "c40324e8-e1d4-51e8-9272-5dfffcfdb54c", "text": "\u5979\u4e0d\u5bb9\u6613\u88ab\u5b9a\u4e49\u6216\u5ffd\u89c6\u3002\u5979\u662f\u5229\u8389\u4e1d\uff0c\u4e9a\u5f53\u7684\u7b2c\u4e00\u4f4d\u59bb\u5b50\uff0c\u4e5f\u662f\u590f\u5a03\u4e4b\u524d\u7684\u5973\u4eba\u3002"} +{"id": "2002169", "video_name": "6286101f-21dc-5c49-a297-6d2f15927184", "text": "\u730e\u8c79\u8ffd\u9010\u4e00\u53ea\u9e7f\uff0c\u7136\u540e\u6251\u5411\u5b83\uff0c10\u79d2\u52a8\u753b\u3002"} +{"id": "2002170", "video_name": "292a8c53-11f1-5eda-8b4c-22d0e27ae15f", "text": "\u7f8e\u4e3d\u7684\u767d\u53d1\u5973\u5b50\u88ab\u5411\u65e5\u8475\u6240\u5305\u56f4\uff0c4k \u8d85\u5199\u5b9e\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "2002171", "video_name": "68c64088-628a-5d57-a996-318790644485", "text": "\u8df3\u821e\u5973\u5b69\uff0c\u4ee5\u80f6\u7247\u98ce\u683c\u62cd\u6444\u7684\u7167\u7247\uff0c\u80f6\u7247\u9897\u7c92\uff0c\u590d\u53e4\uff0c8k\u8d85\u7ec6\u8282\uff0c\u79c1\u4eba\u51fa\u7248\uff0c\u7f8e\u8054"} +{"id": "2002172", "video_name": "30c99fca-78fe-52ff-977a-7dd8cef59fa4", "text": "\u5b87\u5b99\u7684\u9996\u90fd\u661f\u7403\u4e4c\u7ef4\u8428\uff0c\u5176\u5927\u5c0f\u4e3a2:1\u3002"} +{"id": "2002173", "video_name": "9dfa0fcf-e567-5377-a5fd-666726917d74", "text": "\u6c7d\u8f66\u7a81\u7136\u7206\u70b8\uff0c\u706b\u7130\u51b2\u5929\u3002"} +{"id": "2002174", "video_name": "dfd6ddf3-b18d-5034-8cf8-8e156c8e2c74", "text": "\u9662\u5b50\u91cc\u6709\u4e24\u53ea\u732b\uff0c\u4e00\u53ea\u662f\u9ec4\u8272\u7684\uff0c\u4e00\u53ea\u662f\u767d\u8272\u7684\uff0c\u5b83\u4eec\u5728\u4e00\u8d77\u73a9\u800d\u3002"} +{"id": "2002175", "video_name": "758fcb19-10ae-55d0-be79-b792c6866054", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u60f3\u8c61\u4e00\u5e45\u65e5\u843d\u7684\u753b\u9762\uff0c\u6d77\u6d6a\u8f7b\u8f7b\u62cd\u6253\u7740\u5cb8\u8fb9\uff0c\u4e00\u5bf9\u60c5\u4fa3\u624b\u7275\u624b\u5728\u6c99\u6ee9"} +{"id": "2002176", "video_name": "2024d746-944a-5404-acbc-779ca89beb14", "text": "\u53e4\u5e0c\u814a\u5e9f\u589f\u5411\u4f60\u79fb\u52a8\u3002"} +{"id": "2002177", "video_name": "4509be55-3ec2-5de0-a8e8-74ea3cc6d658", "text": "\u624b\u5728\u98a4\u6296\uff0c\u80cc\u666f\u662f\u4e00\u6218\u540e\u3002"} +{"id": "2002178", "video_name": "24c124af-16f8-596e-895c-a9a126ff5e64", "text": "\u767d\u8272\u5154\u5b50\u8dd1\u5f97\u975e\u5e38\u5feb\u3002"} +{"id": "2002179", "video_name": "37512240-461c-5e3b-97e0-a749cdc8fc6e", "text": "\u5e26\u6709\u516d\u4e2a\u624b\u6307\uff0c\u624b\u653e\u5728\u5fc3\u810f\u4e0a\u7684\u8d85\u903c\u771f\u52a8\u6001\u5973\u6027\u3002"} +{"id": "2002180", "video_name": "565f010d-fefd-5e6a-a15a-1299e8c920be", "text": "\u521b\u9020\u53e6\u4e00\u4e2a\u516c\u4e3b\u8bbe\u8ba1\u5979\u7684\u82b1\u56ed\u5730\u5757\u6210\u5c0f\u7f8e\u4eba\u9c7c\u7684\u5f62\u72b6\uff0c\u6c34\u4e0b\u690d\u7269\u53cd\u6620\u8ff7\u4eba\u7684\u4e3b\u9898\uff0c\u4ee516:"} +{"id": "2002181", "video_name": "33549163-8f5a-574b-9330-1342cb4ef9c4", "text": "\u6e38\u620f\u300a\u5976\u5976\u300b\u4e2d\u7684\u5976\u5976\u8df3\u821e\u6b22\u4e50\u3002"} +{"id": "2002182", "video_name": "a6fbc366-380d-5f95-ba32-a7ce64a97fb2", "text": "\u4f69\u666e\u00b7\u74dc\u8fea\u5965\u62c9\u62ff\u7740\u4e00\u628a\u52fa\u5b50\u5403\u7740\u7f8e\u5473\u53ef\u53e3\u7684\u9178\u5976\uff0c\u903c\u771f\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a"} +{"id": "2002183", "video_name": "99bcc565-e7c9-5971-9ad7-6f3c76808192", "text": "\u5361\u901a\u68d5\u8272\u9a6c\u5954\u8dd1\u7740\u8d70\u8fdb\u4e86\u9a6c\u53a9\u3002"} +{"id": "2002184", "video_name": "9368aff2-6bbb-5a4e-b154-901777bdc55b", "text": "\u970d\u683c\u6c83\u8328\u57ce\u5821\u4ee5\u54e5\u7279\u5f0f\u98ce\u683c\u653e\u5927\u3002"} +{"id": "2002185", "video_name": "766e5b47-d5a5-5713-9224-0f732755c82a", "text": "\u706b\u7bad\u964d\u843d\u5728\u706b\u661f\u4e0a\uff0c\u540d\u4e3a\u201c\u997c\u5e72\u6570\u636e\u201d\u3002\u8d85\u903c\u771f\u3002\u592a\u7a7a\u4e2d\u8272\u5f69\u7f24\u7eb7\u7684\u661f\u7cfb\u548c\u666f\u89c2\u3002"} +{"id": "2002186", "video_name": "ea334a5b-ff97-5932-a164-f6521ef38a37", "text": "\u6444\u5f71\u4e13\u4e1a\u7684\u7167\u7247\uff0c\u5c55\u73b0\u4e00\u4f4d\u5feb\u4e50\u7f8e\u4e3d\u7684\u5973\u4eba\u5750\u5728\u53a8\u623f\u91cc\uff0c\u5934\u4e0a\u6234\u7740\u5c0f\u624b\u7ee2\uff0c\u6325\u624b\u6253\u62db"} +{"id": "2002187", "video_name": "48adf101-4059-5655-9432-6731845952a5", "text": "\u7537\u5b50\u5728\u5f00\u9614\u7684\u6d77\u6d0b\u4e2d\u7528\u65cb\u8f6c\u6746\u4ece\u8239\u4e0a\u9493\u9c7c\u3002"} +{"id": "2002188", "video_name": "53977e6f-2745-540a-9602-e98d164665cf", "text": "\u4e00\u5ea7\u57ce\u5821\u4e0e\u9f99\u6218\u6597\u3002"} +{"id": "2002189", "video_name": "bf633d46-e5a5-5795-b2ec-347b2a37a6e0", "text": "\u4e00\u53ea\u9752\u86d9\u6b63\u5728\u753b\u4e00\u5e45\u82b1\u5e3d\u5b50\u7684\u753b\uff0c\u8be5\u526a\u8f91\u957f7\u79d2\uff0c\u5206\u8fa8\u7387\u9ad8\u4e14\u4f7f\u752824mm\u62cd\u6444\u3002"} +{"id": "2002190", "video_name": "fc3381e3-cfc8-5eef-a04f-aea5fdd1af02", "text": "\u4e00\u4e2a\u5de5\u4e1a\u666f\u89c2\uff0c\u70bc\u6cb9\u5382\u7684\u70df\u96fe\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "2002191", "video_name": "62e57e27-2616-50f1-a5c5-72616c3197b8", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u5efa\u7b51\u7269\u7684\u5c4b\u9876\u4e0a\u3002"} +{"id": "2002192", "video_name": "a0d10777-47ad-55dc-a615-8f9329a5ff4d", "text": "\u6c57\u6d41\u6d43\u80cc\u7684\u67e5\u5c14\u65af\u00b7\u76ae\u57c3\u7f57\u72ec\u81ea\u5728\u4ff1\u4e50\u90e8\u8df3\u821e\u3002\u4ed6\u6709\u4e00\u53ea\u87fe\u870d\u548c\u4e00\u628a\u5251"} +{"id": "2002193", "video_name": "a5db5bee-cfad-5cad-9f41-40dc24072438", "text": "\u4f01\u9e45\uff0c\u8d70\u8def\uff0c\u6e85\u6c34\u827a\u672f\uff0c\u7d2b\u5916\u7ebf\u7740\u8272"} +{"id": "2002194", "video_name": "3ed5c5bf-9043-5928-9bcf-b4931ff0cd37", "text": "\u4e00\u4e2a\u753120\u540d\u5e74\u8f7b\u4eba\u7ec4\u6210\u7684\u56e2\u961f\u5728\u6d3b\u52a8\u4e2d\u5728\u821e\u53f0\u4e0a\u8df3\u821e\uff0c\u83b7\u5f97\u4e86\u89c2\u4f17\u7684\u638c\u58f0\u3002"} +{"id": "2002195", "video_name": "94515ede-5dc8-5384-b103-785e706ce861", "text": "\u4e24\u4e2a\u52a8\u753b\u89d2\u8272\u5206\u4eab\u4e00\u672c\u76f8\u518c\u30024K"} +{"id": "2002196", "video_name": "74078a84-20aa-59a6-b4a5-00d18b8ec0c9", "text": "\u684c\u5b50\u4e0a\u53ea\u6709\u4e09\u4e2a\u7535\u5b50\u4ea7\u54c1\u3002\u4ece\u5de6\u5230\u53f3\uff0c\u5b83\u4eec\u662f\u4e00\u53f0\u7b14\u8bb0\u672c\u7535\u8111\u3001\u4e00\u4e2a\u4e3b\u677f\u548c\u4e00\u4e2a\u663e\u5361\u3002\u53ea\u6709\u8fd9\u4e09\u4e2a\u7269\u54c1\uff0c"} +{"id": "2002197", "video_name": "39e70e1e-9f4d-54a8-bc2f-6a8b268b8548", "text": "\u8bb0\u5f55\u7247\u98ce\u683c\uff0c\u6c79\u6d8c\u7684\u6d77\u9762\uff0c\u5929\u7a7a\u4e2d\u7684\u4e4c\u4e91\uff0c\u5de8\u6d6a\u6d8c\u8d77\uff0c\u955c\u5934\u4ece\u7a7a\u4e2d\u5ef6\u4f38\u5230\u6df1\u6d77\u3002"} +{"id": "2002198", "video_name": "efa626d9-2174-53b8-af60-55b06bd9462a", "text": "\u7535\u5f71\u955c\u5934\u548c\u5f3a\u70c8\u620f\u5267\u5316\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e9a\u8ff0\u56fd\u738b\u963f\u4ec0\u6c83\u5df4\u5c3c\u5e15\u5c14\u8f6c\u5411\u955c\u5934\u5e76\u5411\u89c2"} +{"id": "2002199", "video_name": "ecdcce08-a147-5753-8257-09ac371e92f0", "text": "\u8717\u725b\u5728\u68ee\u6797\u91cc\u4e0b\u96e8\u65f6\u8df3\u821e\u3002"} +{"id": "2002200", "video_name": "7f18c3ff-13b1-5e9a-82f3-f0539e8fb0a9", "text": "\u8425\u517b\u7269\u8d28\u7684\u6d41\u52a8\u8109\u52a8\u901a\u8fc7\u4e00\u4e2a\u751f\u52a8\u3001\u95ea\u70c1\u7684\u83cc\u4e1d\u7f51\u7edc\u3002 \n\nSource sentence: The universe is full of mysteries waiting to be uncovered. \n\n\u5b87\u5b99"} +{"id": "2002201", "video_name": "581f9bac-e3a4-5e62-8b59-a0256eb92a7b", "text": "\u4eba\u4eec\u5728\u8d70\u8def\uff0c\u4e0b\u7740\u4e9b\u8bb8\u7684\u96ea\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u8ba9\u8fd9\u4e2a\u573a\u666f\u6301\u7eed5\u79d2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002202", "video_name": "40acd339-f5cc-5bfd-81c6-0fb8156cdbe4", "text": "\u6234\u5b89\u5a1c\u592b\u4eba\u4f5c\u4e3a\u65b0\u5a18\u7ad9\u5728\u7687\u5bb6\u9a6c\u8f66\u4e0a\u3002"} +{"id": "2002203", "video_name": "4bfb6141-a67e-5eb4-add2-e46df6998bd0", "text": "\u4ecb\u7ecd\u4e3b\u8981\u4eba\u7269\uff0c\u5c55\u793a\u4ed6\u4eec\u7684\u4e2a\u6027\u548c\u72ec\u7279\u7279\u5f81\u5728\u7e41\u5fd9\u7684\u73ca\u745a\u7901\u73af\u5883\u4e2d\u3002"} +{"id": "2002204", "video_name": "ed5e7e7d-d614-56ef-b994-920ba4fa7c83", "text": "\u4e00\u5e45\u7f8e\u9e97\u7684\u6c34\u5f69\u756b\uff0c\u63cf\u7e6a\u4e86\u4e00\u689d\u9f8d\u548c\u4e00\u500b\u7f8e\u4eba\u9b5a\u5728\u6d77\u908a\u5ced\u58c1\u65c1\u653e\u9b06"} +{"id": "2002205", "video_name": "a901fb3f-24ba-589b-a6c5-3e75ab91a157", "text": "\u96ea\u8986\u76d6\u7684\u68ee\u6797\u9e1f\u77b0\u56fe\uff0c\u6811\u68a2\u4e0a\u6302\u7740\u5723\u8bde\u706f\uff0c\u80cc\u666f\u5c71\u5cf0\u82cd\u7fe0\u58ee"} +{"id": "2002206", "video_name": "531d7aad-92dc-51ea-bf91-4fd46c4ae2e4", "text": "\u52a8\u753b2D\uff0c\u63d2\u56fe\uff0c\u52a8\u6f2b\uff0c\u6781\u7b80\uff0c\u5973\u6027\u624b\u638c\u4f11\u606f\u5728\u96ea\u4e0a\uff0c\u4eff\u4f5b\u5df2\u7ecf\u7761\u7740\u4e86\uff0c\u96ea\uff0c\u51ac\u5929\u3002"} +{"id": "2002207", "video_name": "46d97bc3-5b81-5637-a32b-10d648f17b47", "text": "\u519c\u6c11\u5728\u4ed6\u7684\u725b\u8f66\u4e0a"} +{"id": "2002208", "video_name": "af36f733-188e-52c1-bb47-ad1a1eb49967", "text": "\u9ad8\u8d28\u91cf\uff0cCG\uff0c\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u4e00\u4e2a\u5973\u5b69\u65c1\u8fb9\u3002"} +{"id": "2002209", "video_name": "11643b6d-b23a-55d1-8d85-24b0afb18b02", "text": "\u60f3\u8c61\u8fd9\u4f4d\u50e7\u4eba\uff0c\u4ed6\u7684\u773c\u775b\u53cd\u6620\u51fa\u591a\u5e74\u7684\u5185\u7701\uff0c\u4ee5\u6e29\u548c\u7684\u5fae\u7b11\u4f20\u6388\u53e4\u8001\u7684\u667a\u6167\u3002"} +{"id": "2002210", "video_name": "afb31fc6-465b-5547-9605-6e4622b560c0", "text": "\u7e41\u5fd9\u7684\u8d5b\u535a\u670b\u514b\u666f\u8c61\u4e2d\uff0c\u7e41\u534e\u7684\u57ce\u5e02\u706f\u5149\u3002"} +{"id": "2002211", "video_name": "1b82209f-b2fd-5406-a402-ed6267f4d14a", "text": "\u5341\u51e0\u5c81\u7684\u670b\u514b\u5411\u76f8\u673a\u505a\u548c\u5e73\u624b\u52bf\uff0c\u7a7f\u7740\u77ed\u88d9\u3001\u80cc\u5fc3\u3001\u7eb9\u8eab\uff0c\u7ad9\u5728\u706b\u8f66\u7ad9\u91cc\uff0c\u7167\u7247\u975e\u5e38"} +{"id": "2002212", "video_name": "a6ae1199-76ea-5b00-8129-7433f1171e98", "text": "\u4e00\u7fa4\u4eba\u5728\u9ec4\u53f6\u8986\u76d6\u7684\u79cb\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "2002213", "video_name": "6c91f0cf-f2d8-5709-8da8-2bf031fc004e", "text": "\u5f53\u591c\u6df1\u5165\uff0c\u73ca\u745a\u7901\u53d8\u6210\u4e86\u4e00\u4e2a\u8ff7\u4eba\u7684\u4e16\u754c\u3002\u751f\u7269\u53d1\u5149\u7684\u751f\u7269\u521b\u9020\u4e86\u4e00\u4e2a\u8ff7\u4eba\u7684\u706f\u5149\u79c0\uff0c"} +{"id": "2002214", "video_name": "ca70c2ae-241f-5b7f-b59d-f72af8675f12", "text": "\u732b\u5750\u5728\u7535\u8111\u524d\u5de5\u4f5c\u3002"} +{"id": "2002215", "video_name": "fb8a13e6-cba7-5eb9-83e0-de406e00e658", "text": "\u5723\u8bde\u8001\u4eba\u5728\u5723\u8bde\u6811\u4e0b\u7559\u4e0b\u4e86\u4e00\u4e2a\u5c0f\u793c\u7269\u3002"} +{"id": "2002216", "video_name": "28f32a9b-692e-5b9f-a3fa-93f022f26f43", "text": "\u4eba\u4f53\u5728\u7a7a\u6c14\u4e2d\u81ea\u7531\u843d\u4f53\u7684\u6781\u9650\u901f\u5ea6\u7ea6\u4e3a\u6bcf\u5c0f\u65f6120\u82f1\u91cc\u3002\u8dcc\u843d\u4e94\u5341\u82f1\u91cc\u4e0e\u8dcc\u843d\u4e94\u767e\u82f1\u5c3a\u5e76\u6ca1\u6709\u4ec0\u4e48"} +{"id": "2002217", "video_name": "bbf7c545-d0e1-5278-888c-321bd95440a8", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u4e9a\u4f2f\u62c9\u7f55\u8eab\u7a7f\u7070\u888d\uff0c\u767d\u8272\u4e2d\u957f\u53d1\uff0c\u72b9\u592a\u8001\u4eba\uff1b\u8428\u62c9\uff0c"} +{"id": "2002218", "video_name": "a3a1c0b8-7352-54f0-b8d4-25e0f438a9c3", "text": "\u8bf7\u7ffb\u8bd1\u6210\u4e2d\u6587\uff1atoni braxton\u7684\u300aunbreak my heart\u300b\u3002"} +{"id": "2002219", "video_name": "d38e744e-b81b-5d12-a7c6-2e77960b6481", "text": "\u6751\u6c11\u4eec\u56e0\u8fd9\u4e2a\u7537\u5b69\u800c\u611f\u5230\u62c5\u5fe7\u3002"} +{"id": "2002220", "video_name": "dc7b0f8c-737d-597d-8983-94570a562fcd", "text": "\u8367\u5149\u706f\u5728\u5546\u573a\u505c\u8f66\u573a\u5185\u95ea\u70c1\uff0c\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u3002\u9ed1\u767d\u7535\u5f71\uff0c\u6697\u8272\u8c03\u6444\u5f71\uff0c90\u5e74\u4ee3\u7684\u753b"} +{"id": "2002221", "video_name": "79af379c-0ff1-564a-a6b2-6526433c9f98", "text": "\u4e00\u5f20\u51b3\u5fc3\u5341\u8db3\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u7403\u573a\u4e0a\u8fd0\u7403\u7684\u7167\u7247\uff0c\u65c1\u8fb9\u6709\u4e00\u4f4d\u652f\u6301\u5979\u7684\u597d\u53cb\u5728\u573a\u5916\u52a0\u6cb9\u3002"} +{"id": "2002222", "video_name": "39d2ff61-a9ec-5e7a-8fdf-9f42b07a803d", "text": "\u5728\u57c3\u5c14\u591a\u5229\u4e9a\u738b\u56fd\uff0c\u4e94\u4e2a\u6c0f\u65cf\u9762\u4e34\u7740\u4e00\u4e2a\u8feb\u5728\u7709\u776b\u7684\u9ed1\u6697\u5a01\u80c1\uff1a\u53ef\u6015\u7684\u6697\u5f71\u6076"} +{"id": "2002223", "video_name": "da4d8216-1cfb-53ef-96e6-56fed3e0375f", "text": "\u4e00\u4e2a\u6b66\u58eb\u5728\u62e5\u6324\u7684\u591c\u603b\u4f1a\u8df3\u7535\u5b50\u97f3\u4e50\u3002"} +{"id": "2002224", "video_name": "38000586-3d15-55e4-be3f-f76061baf444", "text": "\u7537\u4eba\u7a7f\u8fc7\u6c99\u6f20\u4e2d\u7684\u7eff\u96fe\u30021980\u5e74\u4ee3\u3002\u590d\u53e4\u3002"} +{"id": "2002225", "video_name": "f4f57852-838c-5731-84d1-fc507cc1f37d", "text": "\u6709\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u4eba\u5750\u5728\u9ed1\u6697\u7684\u5ba2\u5385\u91cc\uff0c\u67093D\u6548\u679c\u3001\u7535\u5f71\u98ce\u683c\u6548\u679c\u3001\u5e73\u79fb\u548c\u7f29\u653e\u56fe\u50cf\u3001\u52a8\u6001\u6548\u679c\u3002"} +{"id": "2002226", "video_name": "4d5cc773-15df-5ca0-835f-788f5382e0c3", "text": "\u6027\u611f\u5973\u5b50\u7a7f\u7740\u5c0f\u7ea2\u6bd4\u57fa\u5c3c\uff0c\u9762\u5bf9\u955c\u5934\u62cd\u6444\u7684\u8096\u50cf\u7167\uff0c\u5e26\u7740\u5bb3\u7f9e\u7684\u795e\u60c5\u3002"} +{"id": "2002227", "video_name": "4a76c2e0-32fe-5a39-9498-711a48ea0e9e", "text": "\u65e9\u671f\u6b27\u6d32\u63a2\u9669\u5bb6\u7684\u52a8\u753b\u63a2\u9669\u65c5\u7a0b\u3002"} +{"id": "2002228", "video_name": "3722b988-ed8b-5f4e-9624-0cefbd5549f1", "text": "\u6c60\u5858\u5728\u5fae\u98ce\u4e2d\u8d77\u6d9f\u6f2a\u3002"} +{"id": "2002229", "video_name": "08ea7b07-c210-5744-a79c-88a5a6b64994", "text": "\u83cc\u7c7b\u548c\u6ce1\u6ce1\u6210\u957f\u7684\u6905\u5b50"} +{"id": "2002230", "video_name": "f808b6ab-f4be-5f45-9f86-abe38292a7d4", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u5c0f\u6751\u5e84\u91cc\u5feb\u4e50\u5730\u6210\u957f\u3002"} +{"id": "2002231", "video_name": "8bb9bb54-9140-5bfc-a8cf-57a2833bab0f", "text": "\u79fb\u52a8\u7684\u5b87\u5b99\u3001\u626d\u66f2\u7684\u9519\u4f4d\u3001\u5206\u88c2\u7684\u5f3a\u5927\u5f62\u8c61\uff0c\u4e00\u4e2a\u7c7b\u4eba\u673a\u68b0\u3002"} +{"id": "2002232", "video_name": "20161ba7-e49e-563a-a927-964fac41c1d3", "text": "\u82f1\u6587\u53e5\u5b50\uff1afinger board with heroes marvel fight with heroes mortal combat 10 an night blood moon\n\n\u7ffb\u8bd1\uff1a\u624b\u6307\u6ed1\u677f\u4e0e\u6f2b\u5a01\u82f1\u96c4\u3001\u81f4\u547d\u6253\u51fb10"} +{"id": "2002233", "video_name": "02a38ae4-0071-5e7f-9703-115ef3cc093b", "text": "\u7a46\u7459\u7684\u7535\u5f71\u3002\u4e91\u6735\u5728\u79fb\u52a8\uff0c\u96fe\u5728\u71c3\u70e7\u3002\u96f7\u7535\u548c\u96e8\u6c34\u3002"} +{"id": "2002234", "video_name": "a3ecc1b0-5aab-51ec-a928-44b5104bbc53", "text": "\u5728\u6751\u5e84\u91cc\u6709\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u4e66\u5e97\uff0c\u6751\u6c11\u4eec\u53bb\u90a3\u91cc\u627e\u5173\u4e8e\u559c\u9e4a\u548c\u795e\u79d8\u7684\u6545\u4e8b\u3002"} +{"id": "2002235", "video_name": "7a7e5666-da6a-5080-8712-ab196b7f0a08", "text": "\u4e24\u4e2a\u7537\u4eba\u6b63\u5728\u516c\u5171\u6c7d\u8f66\u4e0a\u4e58\u5750\u5e76\u8ba8\u8bba\u7740\u4ec0\u4e48\u3002"} +{"id": "2002236", "video_name": "21287fe0-ae50-5c4d-b0ee-8c82767c7c72", "text": "\u4ed3\u5e93\u5de5\u4eba\u5728\u7ecf\u7406\u7ecf\u8fc7\u65f6\u88c5\u6b7b\u3002"} +{"id": "2002237", "video_name": "acce0764-16c8-5c38-b0e1-8fac32d56393", "text": "\u8349\u539f\u7684\u60c5\u5883\u6709\u4e0b\u96e8\u3001\u5fae\u98ce\u3001\u66b4\u98ce\u96e8\u548c\u95ea\u7535\u3002"} +{"id": "2002238", "video_name": "7bd874ef-d4d2-5c2e-a05e-22ef9cf1680d", "text": "\u4e00\u6bb5\u8499\u592a\u5947\u573a\u666f\u5c55\u793a\u4e86\u52a8\u7269\u4eec\u5171\u540c\u79cd\u690d\u548c\u7167\u6599\u5e84\u7a3c\u3002\u5154\u5b50\u5c0f\u5077\u4eec\u5b66\u4e60\u5230\u4e86\u5408\u4f5c\u7684\u4ef7\u503c\u548c"} +{"id": "2002239", "video_name": "1e32a25f-d7e4-54dc-85f8-e1e14bc1fbe0", "text": "\u89c6\u9891\u955c\u5934\u7f13\u6162\u5730\u4ece\u8be1\u5f02\u7684\u9ab7\u9ac5\u4eba\u8eab\u4e0a\u62c9\u8fdc\uff0c\u4ed6\u7ad9\u5728\u9ed1\u591c\u7684\u6ee1\u6708\u4e0b\u770b\u5b88\u7740\u5893\u5730\u3002\u5f53"} +{"id": "2002240", "video_name": "706ff682-9d6a-5ae4-968e-e6ee31effe0a", "text": "\u665a\u4e0a\u4e24\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u73a9\u5177\u5e97\u91cc\u6f2b\u6e38\u3002"} +{"id": "2002241", "video_name": "e6153074-2d76-543b-9cb3-7a117cdb91e3", "text": "\u60f3\u8c61\u4e00\u9897\u5b64\u72ec\u7684\u661f\u7403\u60ac\u6d6e\u5728\u661f\u7a7a\u7684\u5e7f\u88a4\u4e2d\u3002\u60f3\u50cf\u67d4\u548c\u7684\u5929\u4f53\u5149\u7ebf\u6d12\u5728\u5176\u7eb9\u7406\u8868\u9762\u4e0a\uff0c"} +{"id": "2002242", "video_name": "b1204ea7-76f9-5caf-834f-1b3febc583b0", "text": "\u5373\u4f7f\u73b0\u5728\u8fd9\u4e2a\u666f\u8c61\u6b63\u5728\u7ec4\u5408\u3002\n\u5c71\u4e18\u53d8\u6697\u3002\u725b\n\u5728\u4ed6\u4eec\u7684\u84dd\u8272\u8f6d\u4e2d\u7761\u89c9\uff0c\n\u7530\u91ce\u5df2\u7ecf\u88ab\n\u6e05\u7406"} +{"id": "2002243", "video_name": "47ad5086-1fb0-5130-823d-7924f33d6c7b", "text": "\u5c55\u793a\u4e00\u5f20RH\u9634\u6027DNA\u7248\u672c\u7684\u63d2\u56fe\u3002"} +{"id": "2002244", "video_name": "33a65b82-ba48-5d25-bcd9-97d2d9ca2018", "text": "\u4e00\u4e2a\u7edd\u5730\u6b66\u58eb\u5728\u6d1e\u7a74\u91cc\u8d70\u7740\uff0c\u9047\u5230\u624b\u6301\u5149\u5251\u7684\u8fbe\u65af\u7ef4\u8fbe\u3002"} +{"id": "2002245", "video_name": "790b047b-1442-5f9d-96f7-c3352c7a1d89", "text": "\u5306\u5fd9\u7684\u5546\u4eba\u7126\u6025\u5730\u67e5\u770b\u65f6\u95f4\uff0c\u5f53\u7535\u68af\u4e0a\u5347\u65f6\u3002"} +{"id": "2002246", "video_name": "5b133a3a-8e4d-561e-b1a6-0a3c7dad244b", "text": "\u5730\u7403\u7684\u753b\u6302\u5728\u5899\u4e0a\uff0c\u800c\u753b\u9762\u5728\u79fb\u52a8\u3002"} +{"id": "2002247", "video_name": "572a9098-1d0a-5b40-bd42-c402ca91033b", "text": "\u6728\u7bb1\u4ece\u84dd\u5929\u6389\u4e0b\uff0c\u903c\u771f\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "2002248", "video_name": "13dd5173-bb81-5a68-b739-7d4ffd57b12c", "text": "\u4e00\u9897\u6d41\u661f\u5373\u5c06\u649e\u51fb\u68ee\u6797\u7684\u753b\u9762\u3002"} +{"id": "2002249", "video_name": "fee7cc90-b2fb-57c9-98fb-370c5d24525f", "text": "\u5728\u65e5\u843d\u7684\u591c\u665a\uff0c\u624b\u7275\u624b\u6563\u6b65\u7684\u4e00\u5bf9\u60c5\u4fa3\u3002\u4ed6\u4eec\u4e4b\u95f4\u6709\u9897\u5fc3\u5f62\u6765\u8868\u8fbe\u4ed6\u4eec\u7684\u7231\u3002"} +{"id": "2002250", "video_name": "068cdac2-c117-51a7-bf70-bf6ecfee03eb", "text": "\u4e00\u4e2a\u8df3\u821e\u7684\u706b\u7130\uff0c\u4ed6\u5728\u5531\u6b4c\uff0c\u4e00\u53ea\u72d0\u72f8\u5728\u89c2\u770b\u3002"} +{"id": "2002251", "video_name": "b1e86455-f234-530e-8d6a-24ee0e1f094b", "text": "\u590d\u53e4\u3001\u5b87\u5b99\u3001\u9ed1\u6d1e \u4fe1\u606f\uff1aOHO \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2002252", "video_name": "f54fd3f7-d774-5761-89fd-16899ea123e7", "text": "\u5b89\u96c5\uff08Spy Family\u4e2d\u7684\u4eba\u7269\uff09\u6b63\u5728\u9ed1\u8272\u661f\u671f\u4e94\u8d2d\u7269\u3002"} +{"id": "2002253", "video_name": "00e8360b-7dea-5197-baae-cef9e4433eda", "text": "\u6995\u6811\u3001\u73b0\u5b9e\u4e16\u754c\u3001\u793e\u533a\u3001\u5546\u5e97\u3001\u521b\u610f\u516c\u56ed\u30014:3\u3001\u5168\u5e45\u30013D\u3001\u9ad8\u8d28\u91cf\u3001\u771f\u5b9e\u3002"} +{"id": "2002254", "video_name": "e32af912-4ee0-5360-8552-3cf958a936c2", "text": "\u4e00\u540d\u5973\u6027\u548c\u4e00\u540d\u7537\u6027\u5728\u8fea\u58eb\u5c3c\u5ea6\u5047\u3002"} +{"id": "2002255", "video_name": "7121c800-2923-5905-aa28-7c8c6c3cf00c", "text": "\u5973\u5b69\u5728\u8dd1\u6b65\u673a\u4e0a\u884c\u8d70\uff0c\u540c\u65f6\u5728\u8dd1\u6b65\u673a\u684c\u5b50\u4e0a\u5199\u5b57\uff0c\u5468\u56f4\u90fd\u662f\u690d\u7269\u3002"} +{"id": "2002256", "video_name": "a59001f8-89ac-5eeb-b09c-357c00845d7f", "text": "\u4e00\u5e45\u7b80\u5355\u7684\u7ebf\u6761\u753b\uff0c\u753b\u7740\u4e00\u4e2a\u4eba\u530d\u5310\u524d\u884c\u7a7f\u8fc7\u7eff\u8272\u6fc0\u5149\uff0c\u4e0d\u78b0\u89e6\u4efb\u4f55\u6fc0\u5149\u3002"} +{"id": "2002257", "video_name": "a64c547b-5307-572c-9e0d-a5961d856caa", "text": "\u7ea2\u8272\u60c5\u7eea\u7684\u591c\u7a7a\uff0cVHS\uff0c\u65e7\u7535\u5f71\uff0c\u5e03\u83b1\u5c14\u5973\u5deb\u8ba1\u5212\uff0c\u9ece\u660e\u6b7b\u4ea1\uff0c\u6050\u6016\uff0c\u6050\u6016\u7247\u3002"} +{"id": "2002258", "video_name": "67014e3d-1f4e-5f21-bdd4-7311aa6909a5", "text": "\u4e00\u4e2a\u7537\u4eba\u6253\u5f00\u4e00\u4e2a\u793c\u7269\uff0c\u91cc\u9762\u6709\u4e00\u5f20\u684c\u5b50\u7684\u6570\u5b57\u827a\u672f\u3002"} +{"id": "2002259", "video_name": "7a7593b4-ca0f-53cc-a834-6a90947edea6", "text": "\u4e00\u53ea\u9e1f\u62ff\u7740\u6811\u53f6\u5feb\u901f\u5730\u8d70\u7684\u89c6\u9891\u7247\u6bb5"} +{"id": "2002260", "video_name": "c645fc15-8680-548a-be03-540983996585", "text": "1. \u85cd\u8272\u98db\u5929\u76ae\u5361\u4e18\n2. \u8349\u539f\u98db\u884c\u5192\u96aa\n3. \u642d\u8457\u7fc5\u8180\u7684\u5c0f\u667a\n4"} +{"id": "2002261", "video_name": "c4088d2e-8ce1-5e5a-99b4-3c2d2d4bea92", "text": "\u4ee5Erwin Wurm\u98ce\u683c\u8fdb\u884c5\u5206\u949f\u7684\u96d5\u5851\u3002"} +{"id": "2002262", "video_name": "80c78670-4d9b-5579-9c07-8142a29bf2eb", "text": "\u4e00\u4e2a\u7537\u4eba\u56e4\u79ef\u9ea6\u5f53\u52b3\u98df\u54c1\uff0c\u7761\u5728\u4e00\u5e8a\u85af\u6761\u4e0a\u3002"} +{"id": "2002263", "video_name": "e0b9c6db-3dfb-5ec8-8fc2-99dd42091b72", "text": "\u4ecb\u7ecd\u6545\u4e8b\u548c\u89d2\u8272\u3002\u5c55\u73b0\u5b89\u96c5\u5728\u5979\u7684\u5de5\u4f5c\u5ba4\u5de5\u4f5c\uff0c\u5e76\u68a6\u60f3\u7740\u5efa\u9020\u4e00\u53f0\u9006\u8f6c\u6c14\u5019\u53d8\u5316\u7684\u673a\u5668\u3002"} +{"id": "2002264", "video_name": "9d7db016-1618-5c32-95d4-c96696f9b740", "text": "\u5c0f\u9ec4\u9e1f\u548c\u5c0f\u84dd\u9e1f\u4e00\u8d77\u8e0f\u4e0a\u4e86\u7a7f\u8fc7\u68ee\u6797\u7684\u65c5\u7a0b\u3002"} +{"id": "2002265", "video_name": "0e741ace-0e54-50e8-b05c-a84f22782fb6", "text": "\u4e00\u4e2a\u5154\u5b50\u88ab\u8346\u68d8\u4e1b\u5361\u4f4f\u4e86\uff0c\u53e6\u4e00\u4e2a\u5154\u5b50\u5e2e\u52a9\u5b83\u8131\u56f0\u3002"} +{"id": "2002266", "video_name": "1a5daee1-99e2-5d20-a956-2e053e38bb9d", "text": "\u767d\u8272\u80cc\u666f\u4e0b\u7684\u7ecf\u671f\u5185\u8863\u53d8\u4f53"} +{"id": "2002267", "video_name": "6109801b-9627-5439-9845-0bb3d5c97a2b", "text": "\u4e00\u4e2a\u7537\u4eba\u50cf\u9b3c\u9b42\u4e00\u6837\u7a7f\u8fc7\u4e86\u4e00\u5835\u5899\u3002"} +{"id": "2002268", "video_name": "ffe49761-8392-5b69-b648-3c55a67ab8b7", "text": "\u5e8a\u4e0a\u4e00\u4e2a\u5e74\u8f7b\u7684\u7537\u5b50\u652f\u6491\u7740\u8eab\u4f53\uff0c\u9762\u5e26\u653e\u677e\u7684\u5fae\u7b11\uff0c\u5728\u5e8a\u5934\u67dc\u4e0a\u653e\u7740\u4e00\u676f\u51b0\u51c9\u7684\u5564\u9152"} +{"id": "2002269", "video_name": "188c6941-9484-53cd-955a-b4258866730d", "text": "\u4e00\u53ea\u6124\u6012\u7684\u9f99\u6b63\u5728\u7a7a\u4e2d\u4e0e\u4eba\u7c7b\u640f\u6597\u3002"} +{"id": "2002270", "video_name": "6d794e36-4434-57ba-ad8e-51536b5944dc", "text": "\u7ea2\u8272\u80cc\u666f\u4e0a\u7a7f\u7740\u7ea2\u8272\u8863\u670d\u7684\u9b54\u9b3c\u62c9\u5c0f\u63d0\u7434\u3002"} +{"id": "2002271", "video_name": "3397f03a-edfa-5ed8-b252-b5ba728c09fd", "text": "\u5728\u4e00\u5ea7\u73bb\u7483\u5efa\u7b51\u91cc\uff0c\u4e00\u4f4d\u6295\u8d44\u94f6\u884c\u5bb6\u6b63\u5728\u5411\u8ba1\u7b97\u673a\u8f93\u5165\u4ea4\u6613\u8ba2\u5355\u3002"} +{"id": "2002272", "video_name": "34ce13b9-f56d-5905-b1ce-fcb25cb5ff45", "text": "\u80a1\u5e02\u4e0b\u8dcc\u4e86\uff0c\u4f46\u8fd9\u4e2a\u4eba\u5f88\u5f00\u5fc3\u3002"} +{"id": "2002273", "video_name": "e5f1a738-8866-5bb6-abc9-51984f39c483", "text": "\u539f\u59cb\u670d\u9970\u7a7f\u6234\u7684\u539f\u59cb\u5c3c\u5b89\u5fb7\u7279\u5973\u6027\u56e2\u4f53\u5728\u6cb3\u8fb9\u4ea4\u8c08\u3002"} +{"id": "2002274", "video_name": "8020d6ef-9125-5189-a72d-caaea48213ca", "text": "\u60f3\u8c61\u4e00\u4e2a\u5929\u5802\u7684\u4f7f\u8005\uff0c\u5e26\u7740\u6307\u5f15\u548c\u6307\u4ee4\u7684\u5377\u8f74\u2014\u2014\u5148\u77e5\u4eec\uff0c\u5982\u540c\u5149\u4e4b\u4f7f\u8005\uff0c\u4f20\u8fbe\u5141\u8bb8\u548c\u7981\u6b62\u7684"} +{"id": "2002275", "video_name": "eb5762ba-68b8-5bb3-ae94-12be0d1baedd", "text": "\u674e\u5179\u548c\u6cf0\u52d2\u5728\u9ad8\u4e2d\u6700\u540e\u4e00\u5e74\u95f4\u53d1\u5c55\u7684\u65b0\u9c9c\u5173\u7cfb\uff0c\u9010\u6e10\u5c55\u73b0\u3002\u7ecf\u5386\u4ed6\u4eec\u6210\u4e3a\u9ad8\u4e2d\u7231\u60c5\u6545\u4e8b\u7684\u8fc7"} +{"id": "2002276", "video_name": "1a41fe80-2601-5653-933d-081e16b1b051", "text": "\u5370\u5ea6\u65b0\u5a18\u65b0\u90ce\u5a5a\u793c\u573a\u666f\u63a5\u5f85\u4f1a"} +{"id": "2002277", "video_name": "14c3ba2d-2f90-5355-bcc3-29bd34e15d85", "text": "\u8428\u59c6\u8fd9\u4f4d\u8c26\u5351\u7684\u978b\u5320\u5728\u4ed6\u7684\u5c0f\u5de5\u4f5c\u5ba4\u91cc\u62cd\u4e86\u4e00\u5f20\u7167\u7247\u3002"} +{"id": "2002278", "video_name": "c19452d2-8c6a-5133-9651-944c14eebc83", "text": "\u8fd9\u4e2a\u5361\u901a\u5973\u5b69\u5728\u82b1\u56ed\u91cc\u8d70\u52a8\uff0c\u7b11\u7740\uff0c\u5934\u53d1\u5728\u540e\u9762\u98de\u821e\u3002\u5979\u95fb\u82b1\uff0c\u7528\u5c0f\u624b\u89e6\u6478\u53f6\u5b50\u3002"} +{"id": "2002279", "video_name": "c970960d-8bf4-5a58-945e-5e2358a263e6", "text": "\u513f\u7ae5\u6b4c\u66f2\u201c\u516c\u8f66\u8f6e\u5b50\u8f6c\u554a\u8f6c\u201d\u7684\u5361\u901a\u573a\u666f\u3002"} +{"id": "2002280", "video_name": "7602ab41-6ed7-5b8f-b5a2-57756682f1ef", "text": "\u5728\u5df4\u9ece\u7f8e\u4e3d\u7684\u590d\u53e4\u535a\u7269\u9986\u4e2d\u6563\u6b65\u7684\u60c5\u4fa3\u3002"} +{"id": "2002281", "video_name": "776c31c1-7651-5529-9692-358597303ca0", "text": "\u8fdc\u5904\u7684\u98de\u789f\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\uff0c16\u6beb\u7c73\u7535\u5f71\uff0c\u67ef\u8fbe\u514b\u7f57\u59c6\u5f69\u8272\uff0c\u5bbd\u89c6\u89d2\u3002"} +{"id": "2002282", "video_name": "038ac5a8-68dc-50c7-b4ec-6b81ca745be5", "text": "\u5c0f\u5973\u5b69\u548c\u7236\u6bcd\uff0c3D\u5361\u901a"} +{"id": "2002283", "video_name": "a90a3ff4-b0b5-5536-9fcc-b2d145d920d0", "text": "\u767d\u96ea\u516c\u4e3b\u6b63\u5728\u770b\u56fe\u7247\u91cc\u7684\u624b\u673a\uff0c\u60f3\u8981\u5403\u82f9\u679c\u3002"} +{"id": "2002284", "video_name": "8bbb8a98-9f38-5612-9a41-3c504df39254", "text": "\u4e00\u4e2a\u624b\u6301\u5341\u5b57\u67b6\u3001\u9a91\u7740\u9a6c\u5339\u524d\u5f80\u6218\u573a\u7684\u6218\u58eb\uff0c\u6444\u50cf\u673a\u5411\u5916\u62c9\u3002"} +{"id": "2002285", "video_name": "73d8dd69-cc4f-52b3-b0d0-e7ec153c794d", "text": "\u6709\u4ec0\u4e48\u4e1c\u897f\u6f5c\u85cf\u5728\u96fe\u8499\u8499\u7684\u6811\u6797\u91cc\u3002"} +{"id": "2002286", "video_name": "4fd9183c-b5c8-57c1-875e-fc1736d49d68", "text": "\u5c0f\u4e11\u5148 passively \u5730\u548c\u8759\u8760\u4fa0\u4ea4\u8c08\uff0c\u7136\u540e\u662f aggresively\u3002"} +{"id": "2002287", "video_name": "fcc9e400-1eb8-5e87-a07d-e5d1f6b988b0", "text": "\u4ece\u6234\u5b89\u5a1c\u00b7\u666e\u6797\u65af\u53d8\u8eab\u4e3a\u795e\u5947\u5973\u4fa0\uff0c\u95ea\u7535\u53d1\u5149\u9713\u8679\u706f\uff0cPLA\u4e1d\uff0c\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "2002288", "video_name": "e7f1879f-dc0d-5659-8e88-09b05298a99c", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u3001\u8be6\u7ec6\u7684\u30018K\u7684\u3001\u7535\u5f71\u822c\u7684\u3001\u79cb\u96e8\u4e2d\u684c\u4e0a\u7684\u8336\u58f6\u3002"} +{"id": "2002289", "video_name": "9f5687ad-8f9d-5fa6-8704-4cee05756839", "text": "\u7ae0\u9c7c\u6389\u4e86\u52fa\u5b50\u548c\u8336\u58f6\u3002"} +{"id": "2002290", "video_name": "711b8be2-6a14-5e78-8b44-e0a92f0839e3", "text": "\u5723\u8bde\u8001\u4eba\u9a7e\u9a76\u7740\u4e00\u8f86\u7ea2\u8272\u7684\u8d5b\u535a\u670b\u514b\u98de\u884c\u5668\uff0c\u672a\u6765\u611f\u5341\u8db3\uff0c\u8d5b\u535a\u670b\u514b\u98ce\u683c"} +{"id": "2002291", "video_name": "afdca6df-1001-5d42-bb75-e9512d980f03", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u3001\u8d85\u903c\u771f\u7684\u5916\u661f\u751f\u7269\u5728\u57ce\u5e02\u4e2d\u884c\u8d70\u3002"} +{"id": "2002292", "video_name": "802f376d-b932-529f-99e9-65497f3970e5", "text": "\u4ed6\u4eec\u5728\u68a6\u4e2d\u4f4e\u58f0\u8033\u8bed\u7740\u9ed1\u6697\u7684\u60f3\u6cd5\uff0c\u6563\u5e03\u7740\u4e0d\u548c\u4e0e\u6050\u60e7\u3002"} +{"id": "2002293", "video_name": "e4f34edc-7e9d-5a68-8c8b-ef79f9f25add", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u4e2a\u4ee4\u4eba\u70e6\u607c\u7684\u6d88\u606f\u4f20\u5230\u4e86Ahmed\u90a3\u91cc\u3002\u5f53\u5730\u7684\u4e00\u4e2a\u5b64\u513f\u9662\u906d\u53d7\u4e86\u6076\u610f\u7f51\u7edc\u653b\u51fb\u3002\u4ed6\u4eec\u6240\u6709"} +{"id": "2002294", "video_name": "08c8fd08-3c9f-5e1b-a939-8b640d0ab09c", "text": "\u4e0a\u534a\u8eab\u953b\u70bc \u4fe1\u606f\uff1a\u4f53\u91cd\u5065\u8eab (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2002295", "video_name": "1c5f832f-24df-5683-92d0-d2b03232e281", "text": "\u65f6\u95f4\u7684\u88c2\u75d5\u6108\u5408\u4e86\uff0c\u5931\u843d\u7684\u65c5\u884c\u8005\u4ece\u626d\u66f2\u7684\u547d\u8fd0\u4e2d\u89e3\u8131\u4e86\u51fa\u6765\u3002"} +{"id": "2002296", "video_name": "d3d59874-6e0b-55f8-863c-df61db0a4475", "text": "\u4e00\u53ea\u62ff\u7740\u975e\u5e38\u5927\u95ee\u53f7\u7684\u5c0f\u4eba\u8d70\u8def\u3002"} +{"id": "2002297", "video_name": "6e22a473-be0f-55c3-9df3-dcfa61a85901", "text": "\u4e00\u4e2a\u72d7\u5934\u4eba\u5deb\u5e08\u5728\u4e00\u7fa4\u54e5\u5e03\u6797\u8eab\u4e0a\u65bd\u653e\u706b\u7403\u672f\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "2002298", "video_name": "2779e5b7-a975-53dd-af1a-57e5a9b4468f", "text": "\u6c34\u6ce5\u5382\u5de5\u4eba\u5954\u8dd1\uff0c\u7535\u5f71\u7ea7\u522b\u76844k\u9ad8\u6e05\uff0c\u903c\u771f\u7684\u3002"} +{"id": "2002299", "video_name": "bab6499a-2e8a-5b47-b618-da2345a79838", "text": "\u4e00\u4e2a\u773c\u7403\u56db\u5904\u5f20\u671b\uff0c\u4ee5CGI\u98ce\u683c\u5448\u73b0\u7684\u773c\u90e8\u89e3\u5256\u5b66\u7814\u7a76\u3002"} +{"id": "2002300", "video_name": "dee6947b-ba51-5421-a88f-34d1cfebde6e", "text": "AI\u6c64\u59c6\u00b7\u91cc\u5fb7\u5c14\u5728\u5bc6\u5ba4\u91cc\u770b\u5230\u4e86\u4e00\u6761\u86c7\u3002"} +{"id": "2002301", "video_name": "3bbf6338-4b39-5d41-a2e4-768230f94149", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u6559\u6388Kinemaster\u7f16\u8f91\u5668\u7a0b\u5e8f\u3002"} +{"id": "2002302", "video_name": "9671d99e-dbd4-5ce3-aacf-40dc39ebd3d7", "text": "\u591c\u665a\u964d\u4e34\u65f6\uff0c\u8424\u706b\u866b\u5728\u82b1\u56ed\u4e2d\u95ea\u7740\u5fae\u5149\u3002"} +{"id": "2002303", "video_name": "6dafee2c-f1e2-5e63-9f6b-6de026fe41ac", "text": "\u4e00\u5e45\u6829\u6829\u5982\u751f\u7684\u70ed\u5e26\u4e1b\u6797\u52a8\u6001\u80cc\u666f\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u53ea\u667a\u6167\u7684\u5927\u8c61\u3001\u4e00\u53ea\u987d\u76ae\u7684\u7334\u5b50"} +{"id": "2002304", "video_name": "0d281a29-1e0f-5254-8705-7b96f58a4d18", "text": "\u6bcd\u5154\u5728\u53a8\u623f\u51c6\u5907\u98df\u7269\u3002"} +{"id": "2002305", "video_name": "fe924145-cfd8-5e42-bded-9296d358f484", "text": "\u521b\u9020\u4e00\u4e2a\u60f3\u8981\u7a83\u53d6\u4f60\u529b\u91cf\u7684\u4eba\u3002"} +{"id": "2002306", "video_name": "91334e02-6943-52ba-8a7b-1e92a47cca5e", "text": "1970\u5e74\u4ee3\u7684\u4e1c\u6b27\u9ed1\u6697\u5947\u5e7b\u6050\u6016\u7535\u5f71\uff0cCadillac Allante\u9a76\u8fc7\u8be1\u5f02\u7684\u9053\u8def\u3002"} +{"id": "2002307", "video_name": "22ea7df4-0b18-5e56-aa0f-7c0041317dcd", "text": "\u5c24\u8fbe\u6234\u7740\u773c\u955c\uff0c\u4f7f\u7528\u7535\u8111\u952e\u76d8\u6253\u5b57\u3002"} +{"id": "2002308", "video_name": "63f9177f-303d-5c9c-a667-07f8d1fc21ba", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u897f\u88c5\u7684\u7537\u5b50\u5f39\u594f\u7740\u4e00\u53f0DX7\u952e\u76d8\u3002"} +{"id": "2002309", "video_name": "a4df5eab-46b0-5b08-9d28-7280ecd36fd8", "text": "\u4e00\u4e2a\u957f\u5f97\u50cf\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u7684\u6218\u58eb\u7ad9\u5728\u62e5\u6324\u7684\u4f1a\u8bae\u4e2d\uff0c\u80cc\u666f\u91cc\u7684\u4eba\u4eec\u6b63\u5728\u6b22\u547c\uff0c\u4e2d\u4e16\u7eaa"} +{"id": "2002310", "video_name": "b5a01fd9-81eb-5852-a137-ab851b12144a", "text": "\u5f53\u4ed6\u4eec\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u65f6\uff0c\u8d85\u7ea7\u82f1\u96c4\u5728\u4ed6\u4eec\u8eab\u540e\u7559\u4e0b\u4e86\u4e00\u9053\u9c9c\u8273\u7684\u8272\u5f69\u8f68\u8ff9\u3002\u5bf9\u4ed6\u4eec\u7684\u52a8\u4f5c\u548c\u5468"} +{"id": "2002311", "video_name": "6c011424-dcae-5430-9d42-d8bd600cd100", "text": "\u4e24\u4e2a\u4e2d\u56fd\u53e4\u4eba\uff0c\u4e00\u4e2a\u9a84\u50b2\u81ea\u6ee1\uff0c\u53e6\u4e00\u4e2a\u8c28\u614e\u3002"} +{"id": "2002312", "video_name": "8be69ef0-f9a7-557b-8e0d-558ac290d5dc", "text": "\u5728\u8000\u773c\u7684\u91d1\u8272\u5149\u8292\u548c\u6c34\u96fe\u4e2d\uff0c\u4e00\u6761\u96c4\u4f1f\u7684\u4e2d\u56fd\u91d1\u9f99\u7ff1\u7fd4\u4e8e\u5929\u7a7a\u3002"} +{"id": "2002313", "video_name": "2095a964-a4d4-5b19-84ab-03e09ea489b3", "text": "\u4e00\u652f\u7528\u4e8e\u8138\u90e8\u753b\u753b\u7684\u94c5\u7b14\u548c\u8138\u90e8\u6d82\u62b9\u6a61\u76ae\u64e6\u5728\u8138\u90e8\u753b\u5e03\u4e0a\u3002"} +{"id": "2002314", "video_name": "3df095fd-4aac-5711-a185-ac316f471c55", "text": "\u4e00\u79cd\u62fc\u56fe\uff0c\u5176\u62fc\u5757\u5411\u4e0a\u4e71\u52a8\u3002"} +{"id": "2002315", "video_name": "d15736cc-f69f-5bc8-8528-2fed581984b2", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u6c34\u5f69\u52a8\u753b\u56db\u5c81\u5973\u5b69\uff0c\u4e4c\u9ed1\u7684\u5934\u53d1\uff0c\u68d5\u8272\u7684\u76ae\u80a4\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "2002316", "video_name": "7a27434f-93c7-552a-b685-a32ba762ea80", "text": "Source sentence: \u6708\u7403\u4e0a\u7684\u201cChandrayaan\u4e09\u53f7\u201d\u4e0e\u5916\u661f\u4eba\n\nSource sentence: I am going to the store to buy groceries.\nTranslation: \u6211\u8981\u53bb\u5546\u5e97\u8d2d\u4e70\u98df\u54c1\u6742"} +{"id": "2002317", "video_name": "37fa8ceb-9beb-59de-8247-2f4ebe167dcb", "text": "\u7f8e\u4e3d\u7684\u6d77\u6d0b\u6b63\u5728\u53d8\u6210\u4e00\u4e2a\u653e\u5c04\u6027\u7684\u9762\u5b54\u3002"} +{"id": "2002318", "video_name": "7ce2092e-3483-5692-9310-4abd6a7fb12d", "text": "\u4e00\u4e2a\u81ea\u7136\u5730\u8bf4\u8bdd\uff0c\u81ea\u7136\u5730\u52a8\u4f5c\uff0c\u9762\u5bf9\u9762\u5730\u7ad9\u7acb\uff0c\u5fae\u98ce\u62c2\u9762\u7684\u4eba\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002319", "video_name": "9116c716-2b84-571a-943e-fc41885a326a", "text": "\u7528\u4e00\u4e2a\u4e30\u5bcc\u7684\u3001\u751f\u52a8\u7684\u68ee\u6797\u573a\u666f\u5f00\u59cb\u6e38\u620f\u3002\u5c55\u793a\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u3001\u6d3b\u6cfc\u7684\u52a8\u7269\u548c\u9633\u5149\u900f\u8fc7"} +{"id": "2002320", "video_name": "7d9bea14-03d4-5a23-a00e-7584dcd2ba1d", "text": "\u5947\u602a\u7684\u66b4\u98ce\u96e8\uff0c\u5f53\u4eba\u88ab\u96f7\u51fb\u4e2d\u3002"} +{"id": "2002321", "video_name": "cc88afc4-db3f-53d9-8248-ec49c914c2af", "text": "\u7537\u4eba\u770b\u7740\u4e00\u4e2a\u7c89\u8272\u7684\u5168\u606f\u5973\u5b69\uff0c\u8d5b\u535a\u670b\u514b\u80cc\u666f\u3002"} +{"id": "2002322", "video_name": "47f3b8e3-eb49-5892-aee2-c56349ea3b81", "text": "\u903c\u771f\u7684\u7535\u5f71\u573a\u666f\u63cf\u7ed8\u4e86\u4e00\u4e2a\u6050\u6016\u7684\u5047\u9762\u821e\u4f1a\u3002"} +{"id": "2002323", "video_name": "953ac793-f2f9-58a5-9943-472725342cc3", "text": "\u4f0a\u65af\u5170\u6559\u7684\u5361\u901a\uff0c\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u8c08\u8bba\u706b\u548c\u4e0a\u5e1d\u3002"} +{"id": "2002324", "video_name": "47475a41-aefa-5da7-a7e8-3fd93c826581", "text": "\u6c99\u5409\u6bd4\u8d77\u827e\u7c73\u7d0d\u59c6\u66f4\u9177\u66f4\u6709\u9707\u64bc\u6548\u679c\u5730\u7ad6\u8d77\u4e2d\u6307\uff0c\u800c\u6b7b\u4ea1\u4e2d\u6307\u7684\u6548\u679c\u66f4\u52a0\u70ab\u9177"} +{"id": "2002325", "video_name": "7644fe01-77b4-5323-b899-7e81bb775d1f", "text": "\u592a\u7a7a\u516c\u8def\u4e0a\u6c7d\u8f66\u7a7f\u884c\u4e8e\u5feb\u901f\u884c\u9a76\u7684\u4ea4\u901a\u4e2d\u3002"} +{"id": "2002326", "video_name": "c61e89ac-a110-5c68-8e77-cda3c0c6abe1", "text": "\u91d1\u9c7c\u5728\u6c34\u4e2d\u7f13\u6162\u5730\u6e38\u52a8\uff0c\u632f\u5e45\u5f88\u5c0f\u3002\u5fc5\u987b\u786e\u4fdd\u56fe\u50cf\u7684\u5b8c\u6574\u6027\u3002"} +{"id": "2002327", "video_name": "1403dbe9-4744-5854-b358-339cf2184bff", "text": "\u4e00\u6bb516:9\u7684\u89c6\u9891\u6355\u6349\u4e86\u5b66\u6821\u91cc\u6d6a\u6f2b\u65f6\u523b\u7684\u7ec6\u81f4\u4e4b\u5904\u3002\u4e00\u4e2a\u5973\u5b69\u548c\u4e00\u4e2a\u7537\u5b69\u7684\u624b\u5e94\u8be5\u5728\u957f\u6905\u4e0a"} +{"id": "2002328", "video_name": "65ddbfea-977f-504f-83bd-08f48b12e2b1", "text": "\u4e00\u6761\u67cf\u6797\u8857\u9053\u7684\u9ad8\u7a0b\u89c6\u56fe\uff0c\u6b27\u5f0f\u5efa\u7b51\u3001\u81ea\u52a8\u7167\u76f8\u673a\u3001\u6865\u6881\u3001\u8fd0\u6cb3\u548c\u552e\u8d27\u4ead\uff0c\u903c\u771f\u7684\u8d85"} +{"id": "2002329", "video_name": "110b69a1-70d2-52d0-8d34-9db0c7f70df0", "text": "\u4e00\u628a\u53e4\u8001\u7684\u5200\u5251\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u8fdc\u666f\u62cd\u6444\u3002"} +{"id": "2002330", "video_name": "fbb43914-7d8b-54db-b470-820294b8ee72", "text": "\u767b\u5f55\u4e00\u4e2a\u5c55\u5f00\u7684\u7eb8\u98de\u673a\u91cc\u9762"} +{"id": "2002331", "video_name": "1b71dac5-7d25-56e6-97b0-a1b5ae192a62", "text": "\u4ed6\u56de\u5230\u5bb6\u540e\uff0cBere\u7acb\u523b\u89c1\u5230\u4e86\u5750\u5728\u5ba2\u5385\u7684\u7236\u4eb2\u3002"} +{"id": "2002332", "video_name": "c161a03d-15f6-52f3-9d58-96ae7b45066d", "text": "\u7f8e\u4e3d\u7eda\u70c2\u7684\u989c\u8272\u5728\u7f8e\u4e3d\u7684\u6d77\u5cb8\u7ebf\u4e0a\u7684\u65e5\u843d\uff0c8k\u3002"} +{"id": "2002333", "video_name": "fcb6b14d-5967-56e2-9391-e7db50ba7f1c", "text": "\u95ea\u7535\u9ea6\u514b\u7687\u4ece\u300a\u4e94\u591c\u540e\u5bab\u300b\u4e2d\u4e0e\u72d0\u72f8\u8d5b\u8f66\u3002"} +{"id": "2002334", "video_name": "eb58fa3f-13ad-5799-ab06-791741544060", "text": "\u7af9\u6797 PARAH\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2002335", "video_name": "04504ff3-63cd-5731-a1bf-69889aad0fa3", "text": "\u4e00\u53ea\u72d7\u5403\u4e86\u76f8\u673a\uff08\u89c6\u89d2\uff09"} +{"id": "2002336", "video_name": "415d0693-d873-546f-af2e-8f98fa55685a", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u5f62\u6210\u7684\u51b0\u6676"} +{"id": "2002337", "video_name": "7f932b62-a238-5f71-bb8a-8b7efa1d3b0a", "text": "\u4e00\u4e2a\u5f98\u5f8a\u5728\u793e\u4f1a\u8fb9\u7f18\u7684\u7537\u4eba\uff08\u52a8\u753b\uff0c\u5361\u901a3D\uff09\u3002"} +{"id": "2002338", "video_name": "be9d9357-9f1d-5528-8825-fba23cb2edf4", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u6253\u9ad8\u5c14\u592b\u7403\u5230\u5730\u7403\u3002"} +{"id": "2002339", "video_name": "ada14993-9b32-504a-b296-1108e3273a41", "text": "\u6df1\u6d77\u91cc\u95ea\u8000\u7684\u5e7b\u60f3\u751f\u7269"} +{"id": "2002340", "video_name": "f1bb9582-8387-541c-851f-18bc89427d68", "text": "\u4f26\u6566\u5e02\u4e2d\u5fc3\uff0c\u8ff7\u4eba\u7684\u6069\u83f2\u5c14\u5fb7\u8c6a\u5b85\u3002"} +{"id": "2002341", "video_name": "fee9fcbb-5869-5006-9cd5-7733575051f2", "text": "\u4e00\u8f86\u798f\u7279\u91ce\u9a6c\u5728\u975e\u6d32\u5927\u90fd\u5e02\u72c2\u98d9\u3002"} +{"id": "2002342", "video_name": "4db0eec6-de38-5ec5-b020-9bce3cf00c22", "text": "\u6709\u4e00\u573a\u50f5\u5c38\u707e\u96be\uff0c\u7236\u4eb2\u548c\u5973\u513f\u6b63\u5728\u9003\u8dd1\uff0c\u4ee5\u62ef\u6551\u4ed6\u4eec\u514d\u906d\u50f5\u5c38\u7684\u653b\u51fb\u3002"} +{"id": "2002343", "video_name": "c38ff75d-9f1d-527f-8165-963da2eabb60", "text": "\u85a9\u514b\u65af\u57fa\u738b\u7684\u7167\u7247\uff0c\u7531\u6f14\u54e1\u5de8\u77f3\u5f37\u68ee\u62cd\u651d\u3002"} +{"id": "2002344", "video_name": "7f905a9c-cfaf-5fc7-b0c1-aa5e0fa96b7b", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u5728\u5370\u5ea6\u6751\u5e84\u4f7f\u7528\u62d6\u62c9\u673a\u8015\u79cd\u3002"} +{"id": "2002345", "video_name": "262a9eb6-181a-5f0a-bf85-3d333edbae02", "text": "\u66f4\u7cbe\u786e\uff0c\u9762\u90e8\u4e0d\u53d8\u3002"} +{"id": "2002346", "video_name": "83e24564-0ecf-5238-91c3-7359984c70b2", "text": "\u4e00\u5904\u7f8e\u4e3d\u7684\u6d77\u6ee9\uff0c\u843d\u65e5\u4f59\u6656\uff0c\u60c5\u4fa3\u4eec\u5728\u73a9\u800d\u3002"} +{"id": "2002347", "video_name": "6647a9f6-80f6-590c-8b6c-35235bea1c5c", "text": "\u5de8\u5927\u7684\u4e00\u5806\u71c3\u70e7\u7684\u94b1\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002348", "video_name": "f0cd506e-e09b-5597-a2fe-08e81b83ca9d", "text": "\u6050\u6016\uff1a\u7a7a\u6d1e\u7684\u773c\u775b\u548c\u4ee4\u4eba\u4e0d\u5b89\u7684\u7b11\u5bb9\uff0c\u4ece\u9634\u5f71\u4e2d\u6d6e\u73b0\u51fa\u6765\u7684\u5439\u54e8\u8005\u5e7d\u7075\u5f62\u8c61\uff0c\u5b83\u7684"} +{"id": "2002349", "video_name": "8d54152d-5e4a-5930-9850-93a2695d6634", "text": "\u6b64\u5916\uff0c\u53e4\u4eba\u7c7b\u7684\u53d1\u73b0"} +{"id": "2002350", "video_name": "08a6a9da-f9a5-577c-a21b-b8125f6b2506", "text": "\u573a\u4e0a\u8fd0\u52a8\u5458\uff0c\u80cc\u666f\u71c3\u70e7\u7740\u706b\u7130\u3002"} +{"id": "2002351", "video_name": "5d93fa50-0842-5d06-96c9-f1199f01c040", "text": "\u6d88\u606f\uff1aAT\uff08\u5b57\u4f53\uff1aMODERN\uff09\u5728\u84dd\u8272\u80cc\u666f\u4e0a\u7684\u9f7f\u8f6e\u548c\u6c34\u7ba1\u3002"} +{"id": "2002352", "video_name": "32f867b7-dbc0-5b96-8690-2c45433aa06b", "text": "\u6559\u5802\u7684\u949f\u58f0\u54cd\u8d77\uff0c\u96ea\u8986\u76d6\u7684\u6751\u5e84\u8857\u9053\u4e0a\uff0c\u5723\u8bde\u8282\u65f6\u671f\uff0c\u65e7\u7684\u9ed1\u767d\u7535\u5f71\uff0c\u5f17\u6717\u897f"} +{"id": "2002353", "video_name": "e660678e-04da-5ed3-8e76-364102fead0f", "text": "\u6708\u4eae\u5973\u795e\u7259\u4ed9\u5b50\u5750\u5728\u661f\u7a7a\u4e0b\u7684\u6728\u684c\u540e\uff0c\u6b63\u5728\u548c\u5979\u7684\u670b\u53cb\u4eec\u4ea4\u8c08\u3002"} +{"id": "2002354", "video_name": "c050c157-1562-5a6d-8c81-1956544f763c", "text": "\u7535\u5f71\u5f0f\u7684\u5f71\u50cf\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u7ec6\u8282\u4e30\u5bcc\u7684\u5f00\u5fc3\u7684\u602a\u5f02\u670b\u514b\u56fd\u738b\u9a7e\u9a76\u7740\u6469\u6258\u8f66\uff0c\u4e00\u4e2a\u4fa6\u63a2\u901a\u8fc7"} +{"id": "2002355", "video_name": "d4d36826-1c40-5d78-955b-dd79baad185a", "text": "\u52c7\u6562\u4e00\u70b9\uff0c\u5192\u9669\u4e00\u4e0b\u3002\u6ca1\u6709\u4ec0\u4e48\u53ef\u4ee5\u4ee3\u66ff\u7ecf\u9a8c\u3002"} +{"id": "2002356", "video_name": "9abe1141-f7ec-5cbd-be47-4dcb453a6890", "text": "\u8239\u53ea\u5929\u4f53\u822a\u5929\u5668\u5728\u52a0\u5229\u798f\u5c3c\u4e9a\u5dde\u5e03\u52b3\u5229\u5e02\u4e2d\u5fc3\u7a7a\u95f4\u53d1\u751f\u7206\u70b8\u3002\u7528\u6447\u6643\u7684 iPhone \u4ece\u5730\u9762\u62cd"} +{"id": "2002357", "video_name": "df90b082-195b-5c42-9c74-09394e61f237", "text": "\u4ed6\u4eec\u8ba8\u8bba\u81ea\u7136\u754c\u4e2d\u7684\u7eff\u8272\u3002"} +{"id": "2002358", "video_name": "6100e2b1-f857-503c-b67b-b76d8a99f711", "text": "\u5feb\u901f\u7f29\u653e\u76f8\u673a\u5411\u5916\u65cb\u8f6c\u987a\u65f6\u9488\uff0c\u78a7\u7eff\u7684\u6d77\u6c34\uff0c\u767d\u8272\u7684\u6c99\u6ee9\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u5929\u5802\uff0c\u6e29"} +{"id": "2002359", "video_name": "aeebb068-ce10-54ae-8fed-8b378301b8f2", "text": "\u5929\u7a7a\u4e2d\u7684\u821e\u8e48\u5b87\u822a\u5458\u548c\u5f69\u8679"} +{"id": "2002360", "video_name": "26ec6e26-0625-525e-a3f0-d1d7350918fb", "text": "\u4e00\u4e2a\u6c34\u4e0b\u4e16\u754c\uff0c\u5730\u5f62\u53d7\u5230\u5de8\u578b\u84dd\u73af\u7ae0\u9c7c\u548c\u84dd\u8377\u82b1\u7684\u542f\u53d1\uff0c\u53d7\u975e\u6d32\u90e8\u843d\u7684\u5f71\u54cd\u3002"} +{"id": "2002361", "video_name": "ab1ebe91-a016-5f53-89ea-512e7d97508c", "text": "\u4e24\u8258\u5927\u5e06\u8239\u79bb\u5f00\u6e2f\u53e3\uff0c\u5468\u56f4\u6709\u8bb8\u591a\u5c0f\u8239\u548c\u5c0f\u8247\uff0c\u65e5\u51fa\u65f6\u5206\u572816\u4e16\u7eaa\u7684\u52a0\u52d2\u6bd4\u6d77\uff0c\u975e\u5e38\u771f"} +{"id": "2002362", "video_name": "9e011b2f-431f-576f-8b98-b4d56fd698ce", "text": "\u8d1d\u90fd\u56e0\u4eba\u53c2\u4e0e\u8005\u5bf9\u963f\u62c9\u4f2f\u4eba\u6240\u505a\u7684\u4e8b\u60c5\u8868\u73b0\u51fa\u7406\u89e3\u548c\u6b23\u8d4f\u3002"} +{"id": "2002363", "video_name": "9060008e-92e5-56e7-86da-33cba706b4d2", "text": "\u6211\u60f3\u8981\u4e00\u6bb5\u6709\u58f0\u97f3\u768410\u79d2\u89c6\u9891\uff0c\u89c6\u9891\u4e2d\u6709\u4e00\u4e2a\u7537\u4eba\u9a7e\u9a76\u4fdd\u65f6\u6377\u6c7d\u8f66\uff0c\u5468\u56f4\u6709\u70df\u96fe\u3002 \n\nSource sentence: Can you recommend a good"} +{"id": "2002364", "video_name": "a1d8b228-5369-581f-9749-a1cb86354956", "text": "\u7a7f\u8d8a\u65f6\u7a7a\u65c5\u884c\uff0c\u900f\u8fc7\u4e00\u4e2a\u866b\u6d1e\u4f60\u53ef\u4ee5\u770b\u5230\u7a7a\u95f4\u548c\u661f\u661f\uff0c\u8fd8\u6709\u4e00\u53cc\u624b\u3002"} +{"id": "2002365", "video_name": "851e8395-be69-5334-8607-0dd2615c92d2", "text": "\u5728\u57ce\u5e02\u666f\u89c2\u4e2d\uff0cMgustas\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2002366", "video_name": "8f525ce8-764f-5a3d-91dd-daeaae2ede35", "text": "\u661f\u9645\u57ce\u5e02\u50cf\u76ae\u514b\u65af\u7535\u5f71\u3002"} +{"id": "2002367", "video_name": "2b7b707e-bd50-5f08-916d-ca036fcd4e1b", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u5728\u665a\u4e0a\u8eba\u5728\u5e8a\u4e0a\uff0c4K\uff0c\u52a8\u753b\uff0c\u591c\u665a\u6548\u679c\u3002\n\nSource sentence: The cat is sleeping on the sofa, and the dog is playing with its"} +{"id": "2002368", "video_name": "e57242e6-4b76-5855-8acc-8a54a6d2d87b", "text": "\u4e00\u5f20\u8d85\u73b0\u5b9e\u7684\u7167\u7247\uff0c\u6a21\u7279\u9a91\u5728\u6d77\u6ee9\u4e0a\u9ad8\u901f\u5954\u8dd1\u7684\u9a6c\u4e0a\uff0c\u7a7f\u7740\u957f\u88d9\uff0c\u98d8\u8361\u7684\u7ef8\u7f0e\u5728"} +{"id": "2002369", "video_name": "a2016112-cb44-53d4-80a3-8b3deb536698", "text": "\u673a\u68b0\u4eba\u5728\u8857\u9053\u4e2d\u592e\u884c\u8d70\u3002"} +{"id": "2002370", "video_name": "af1b6750-4152-5baf-b064-c0bba4c65f2e", "text": "\u7535\u8def\uff0c\u901a\u8fc7\u7ec4\u5408\u7ebf\u6761\u6765\u8868\u793a\u7535\u6d41\u8fd0\u52a8\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c8K\u3002"} +{"id": "2002371", "video_name": "91075a23-6942-5c3c-9a7c-3c8ddc751a19", "text": "\u732b\u5728\u5496\u5561\u676f\u91cc\uff0c\u706b\u7bad\u98de\u5411\u592a\u7a7a\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002372", "video_name": "07233d29-1c15-5c81-b94a-82309dc9cb37", "text": "\u534e\u4e3d\u7684\u795e\u5947\u5973\u4fa0\u7f13\u6162\u5730\u51b2\u8fc7\u6765\uff0c\u5979\u7684\u52a8\u4f5c\u65e2\u4f18\u7f8e\u53c8\u6709\u529b\u3002\u5979\u624b\u81c2\u4e0a\u7684\u91d1\u8272\u624b\u73af\u53d1\u51fa"} +{"id": "2002373", "video_name": "8eea6407-0e51-599a-aac7-8558969add0e", "text": "\u75be\u75c5\u72b6\u51b5\u5728\u80cc\u666f\u623f\u95f4\u4e2d\u3002"} +{"id": "2002374", "video_name": "e854af9e-a61a-56bb-b9d8-cd9385150882", "text": "\u8b66\u65b9\u65e0\u529b\u6216\u4e0d\u613f\u610f\u5c06\u7f6a\u72af\u7ef3\u4e4b\u4ee5\u6cd5\u3002"} +{"id": "2002375", "video_name": "f6a0dc5c-ebdc-5a63-9fb7-38eab0cc38c1", "text": "\u725b\u4ed4\u5728\u65e5\u843d\u65f6\u9a91\u9a6c\u5728\u6d77\u6ee9\u4e0a\uff0c\u5929\u7a7a\u5448\u73b0\u51fa\u653e\u5927\u6548\u679c\u7684\u79fb\u52a8\u3002"} +{"id": "2002376", "video_name": "c000f5cc-0d85-5937-996a-7185aacaf12b", "text": "\u8682\u8681\u5728\u53a8\u623f\u684c\u5b50\u4e0a\u5954\u8dd1\u89c5\u98df\u7684\u4fef\u89c6\u89c6\u89d2\uff0c\u5b8f\u89c2\u62cd\u6444\u3002"} +{"id": "2002377", "video_name": "f066dfca-bd81-5b88-8c01-06371e0e3427", "text": "\u4e00\u6735\u5411\u65e5\u8475\u5728\u66b4\u98ce\u96e8\u4e2d\u7684\u5faa\u73af\u3002"} +{"id": "2002378", "video_name": "b7074d77-4fa4-57ed-91b9-bb4044c7a610", "text": "\u6218\u4e89\u4e2d\u7684\u4e00\u4e2a\u5b64\u72ec\u7684\u5c0f\u7537\u5b69\u3002"} +{"id": "2002379", "video_name": "1510c4e3-3907-51ba-900f-668783be9f04", "text": "\u8def\u98de\u5bf9\u6218\u51ef\u591a\uff0c\u4f7f\u7528\u65b0\u62db\u5f0f\u3002"} +{"id": "2002380", "video_name": "7b8a7521-aa66-56ae-abcc-94c23a90e966", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u7537\u4eba\u5728\u7ebd\u7ea6\u8857\u5934\u7f13\u6162\u5730\u8d70\u4e86\u4e94\u79d2\u949f\uff0c\u8eab\u4e0a\u6cbe\u6ee1\u4e86\u7ea2\u8272\u7684\u96e8\u6c34\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16"} +{"id": "2002381", "video_name": "dfdc20d2-fea8-5358-8b1e-74ae548082f1", "text": "3D\u98ce\u683c\u865a\u5e7b\u5f15\u64ce\u3002\u4e00\u4e2a\u79c3\u5934\u7537\u5b50\u8d70\u51fa\u5730\u94c1\uff0c\u8d70\u4e0a\u4e00\u4e9b\u697c\u68af\u3002\u8d70\u4e86\u4e00\u6bb5\u65f6\u95f4\u3002\u8fdb\u5165\u4e00\u5ea7"} +{"id": "2002382", "video_name": "d742ba92-6262-5d93-ab3f-99f72352f901", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u6570\u7801\u76f8\u673a\u3002"} +{"id": "2002383", "video_name": "7d01e349-4590-5160-ac45-61645cfbe4fd", "text": "\u9053\u6069\u00b7\u5f3a\u68ee\u5728\u91ce\u9910\u684c\u4e0a\u5403\u6ce5\u3002"} +{"id": "2002384", "video_name": "42ad5eb3-3bdc-56ab-9a69-315d3ea42c18", "text": "\u5973\u5b69\u6b63\u5728\u62ff\u7740\u624b\u673a\uff0c\u8bd5\u56fe\u4f7f\u7528\u94f6\u884c\u5e94\u7528\u7a0b\u5e8f\u8fdb\u884c\u4ed8\u6b3e\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "2002385", "video_name": "38dc50cc-86b8-55d6-9764-276b1f18e202", "text": "\u70ed\u95e8\u65f6\u5c1a\u6a21\u7279\u5de8\u5973\u548c\u54e5\u65af\u62c9"} +{"id": "2002386", "video_name": "f611e1de-123e-5e10-a86a-4e744752e515", "text": "\u8def\u706f\u4ece\u65c1\u8fb9\u7ecf\u8fc7\uff0c\u9ed1\u767d\u76f8\u95f4\uff0c\u7535\u5f71\u9ed1\u8272\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "2002387", "video_name": "f2cd768b-ccfe-5a9c-a0df-98badd70fa95", "text": "\u6cf0\u52d2\u00b7\u5965\u514b\u91cc\uff08Tyler the Creator\uff09\u7684IGOR\u5361\u901a\u4eba\u7269"} +{"id": "2002388", "video_name": "d3fabe5b-511c-5d1b-b0f2-26a451f578b4", "text": "\u8d5b\u535a\u670b\u514b\u3001\u73b0\u5b9e\u4e3b\u4e49\u3001\u65e0\u96fe\u6c14\u3001\u8d85\u80fd\u529b\u3002"} +{"id": "2002389", "video_name": "5289c20e-a921-553f-ab28-286627afbd60", "text": "Source sentence: \u8389\u8389\u00b7\u8292\u65af\u7279\u662f\u4e00\u4f4d\u5723\u6d01\u7684\u5723\u4eba\u3002\n\nSource sentence: The cat is sleeping on the couch. \nTranslated sentence: \u732b\u54aa\u6b63\u5728"} +{"id": "2002390", "video_name": "45d022fd-704e-5801-a758-ad146aed3d49", "text": "\u4e00\u95f4\u88ab\u9057\u5f03\u7684\u6728\u5236\u5c0f\u5c4b\uff0c\u7a97\u6237\u53d8\u5f97\u5341\u5206\u9ed1\u6697\u3002\u98ce\u4ece\u7834\u635f\u7684\u95e8\u53e3\u523a\u9aa8\u5730\u547c\u5578\u7740\u3002"} +{"id": "2002391", "video_name": "f4cac1c3-2802-5201-9214-c21746e4ed00", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u5b50\u7a7f\u7740\u77ed\u88e4\u9759\u6b62\u5728\u6df1\u6d77\u4e2d\u5fc3\u3002"} +{"id": "2002392", "video_name": "2fd5c93a-654f-5cfc-9ec3-67054b397c60", "text": "\u4e00\u540d\u7a7f\u7740\u957f\u888d\u7684\u7537\u5b50\u5728\u9ed1\u6697\u7684\u68ee\u6797\u91cc\u884c\u8d70\u3002"} +{"id": "2002393", "video_name": "91888142-c68f-5118-8970-d6e903829125", "text": "\u5e74\u8f7b\u7537\u5b69\u5728\u5632\u7b11\u6751\u6c11\u3002"} +{"id": "2002394", "video_name": "703fa826-7c58-5170-970c-ff5e754f5523", "text": "\u60f3\u8c61\u4e00\u4e0b\u4e3a\u5b69\u5b50\u4eec\u51c6\u5907\u7684\u5feb\u901f\u586b\u8272\u4e66\u9875\uff0c\u6709\u4e00\u53ea\u72d7\u3002"} +{"id": "2002395", "video_name": "fbcdfaa9-772c-5057-b443-194901ae59e0", "text": "\u4eba\u5728\u4e00\u4e2a\u5915\u9633\u7684\u666f\u8272\u4e2d\u8d70\u7740\uff0c\u89e6\u6478\u7740\u957f\u8349\u7684\u53f6\u5b50\uff0c\u671b\u5411\u5730\u5e73\u7ebf\u3002"} +{"id": "2002396", "video_name": "c1fea5ac-9482-502c-982d-4edb5b551f06", "text": "\u6211\u5bb6\u6709\u8718\u86db\u3002 \u9644\u4ef61\u3002"} +{"id": "2002397", "video_name": "11d35030-b55f-5643-8ab2-8326f5639ddc", "text": "\u827e\u5c14\u6587\u00b7\u827e\u5229\u821e\u8005\u8dc3\u5411\u821e\u53f0\uff0c\u5411\u521b\u9020\u4e4b\u95e8\u8fdb\u53d1\u3002"} +{"id": "2002398", "video_name": "dc0b2faa-5c76-558a-b5a7-3f37bbb5d18e", "text": "\u4e00\u4e2a\u53e4\u5e0c\u814a\u96d5\u5851\u7684\u79fb\u52a8\u3001\u8bf4\u8bdd\u7684\u77f3\u50cf\uff0c\u5728\u80cc\u666f\u4e2d\u662f\u6597\u517d\u573a\uff0c\u6570\u5343\u4e07\u4eba\u6b22\u547c\u3002"} +{"id": "2002399", "video_name": "90839672-22a8-505b-ba1e-798c5284917e", "text": "\u968f\u7740\u65c5\u9014\u7684\u63a5\u8fd1\u9ad8\u6f6e\uff0c\u90aa\u6076\u7684\u80fd\u91cf\u5728\u5927\u53a6\u5185\u6108\u53d1\u5f3a\u70c8\u3002\u62a5\u590d\u7684\u5e7d\u7075\u6124\u6012\u5730\u51fa"} +{"id": "2002400", "video_name": "b136436c-58a9-5d5f-b8be-bd29b133b4eb", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u4e0e\u9ea6\u8389\u00b7\u8d5b\u52d2\u65af\u6253\u67b6\u4e86\u3002\n\nSource sentence: I am going to the store to buy some groceries.\n\u6211\u8981\u53bb\u5546"} +{"id": "2002401", "video_name": "342a707d-6805-5350-96ce-d29b66685f07", "text": "\u5f00\u573a\u666f\u662f\u9c81\u660e\u5a1c\u57ce\u5e02\u666f\u89c2\uff0c\u666e\u901a\u5e02\u6c11\u53d1\u73b0\u65b0\u7684\u529b\u91cf\u3002"} +{"id": "2002402", "video_name": "2af818cc-fc79-525f-9529-00928c32e5ff", "text": "\u5927\u5b66\u91cc\u4e00\u7fa4\u5b66\u751f\u5728\u6253\u5b8c\u7bee\u7403\u540e\u73a9\u8db3\u7403\u7684\u957f\u89c6\u9891\uff0c\u4f46\u6ca1\u6709\u7403\u3002"} +{"id": "2002403", "video_name": "76aa4397-b5ee-5e23-a1bc-9a5d6ce02e97", "text": "\u52a0\u5bc6\u4fe1\u606f123abc \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2002404", "video_name": "1ef5be2b-6377-54e9-abd5-9e9b72866c15", "text": "\u4e00\u4e2a\u4eba\u4eec\u7a7f\u7740\u767d\u8272\u3001\u8d64\u811a\u884c\u8d70\u3001\u8bd5\u56fe\u540c\u81ea\u7136\u4ea7\u751f\u5171\u60c5\u7684\u793e\u4f1a\u3002"} +{"id": "2002405", "video_name": "302de350-69d0-504c-a6c6-4e39dadfffa7", "text": "\u4e00\u7247\u6709\u5de8\u5927\u9e66\u9e49\u7684\u96fe\u6c14\u7b3c\u7f69\u7684\u68ee\u6797\u7a7f\u8fc7\u5c4f\u5e55\u3002"} +{"id": "2002406", "video_name": "1b193bfc-034c-5b14-9488-79da8bb16a7a", "text": "\u745e\u514b\u548c\u83ab\u8482\u5728\u50f5\u5c38\u63a5\u8fd1\u65f6\u627e\u5230\u4e86\u4e00\u4e2a\u7834\u65e7\u623f\u5b50\u4f5c\u4e3a\u907f\u96be\u6240\u3002"} +{"id": "2002407", "video_name": "6d566ae1-4470-52b0-a740-5c3dd059de65", "text": "\u65e9\u6668\u592a\u9633\u5347\u8d77\u5728\u4e00\u4e2a\u82b1\u56ed\u7684\u4e8c\u7ef4\u52a8\u753b\u4e2d\u3002"} +{"id": "2002408", "video_name": "669bb9a7-cd9a-5a01-bc17-ce33fba9cd69", "text": "\u7537\u5b69\u5728\u4e00\u6761\u88ab\u6811\u5305\u56f4\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u5929\u7a7a\u4e2d\u6709\u9e1f\u98de\u7fd4\u3002"} +{"id": "2002409", "video_name": "890a36ab-8b26-5ea8-aad2-76634c22cfa0", "text": "\u4e00\u4e2a\u7a7f\u7740\u7834\u65e7\u8863\u670d\u7684\u8d2b\u7a77\u7537\u5b69\uff0c\u975e\u5e38\u73b0\u5b9e\u3002"} +{"id": "2002410", "video_name": "cd2a42df-e276-5941-8906-cc5918a5bf2f", "text": "\u5411\u73bb\u7483\u676f\u4e2d\u5012\u5165\u7ea2\u9152\u3002"} +{"id": "2002411", "video_name": "eb30272e-35af-548e-ad6d-057e1a27a779", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u6bd4\u8d5b\u4e2d\u8fdb\u7403\u4e09\u6b21\u540e\u4ece\u961f\u53cb\u90a3\u91cc\u63a5\u7403\u3002"} +{"id": "2002412", "video_name": "51b6f9f8-f903-5d13-a66d-a4364eebde6b", "text": "\u6bcd\u9e7f\u54fa\u4e73\u5e7c\u5d3d\u7684\u89c6\u9891"} +{"id": "2002413", "video_name": "b1c5f4c3-c060-5316-a6eb-dd5337e508d1", "text": "\u4e00\u4f4d\u533b\u751f\u5c55\u793a\u5c0f\u7269\u4f53\u7684\u89c6\u9891"} +{"id": "2002414", "video_name": "e4e507d6-8d03-513b-ad5b-19d0e393ad25", "text": "\u5168\u4e16\u754c\u7684\u4eba\u90fd\u5728\u8df3\u821e\u3002"} +{"id": "2002415", "video_name": "337db450-a0bb-592a-997b-c4c8d233054e", "text": "\u7f57\u4f2f\u7279\u00b7\u5965\u672c\u6d77\u9ed8\u548c\u6ce2\u5170\u60c5\u666f\u559c\u5267\u300a\u8d39\u8fea\u5357\u5fb7\u00b7\u57fa\u666e\u65af\u57fa\u300b\u7684\u4e3b\u89d2\u7684\u7ed3\u5408"} +{"id": "2002416", "video_name": "3bb3f8b0-8e26-55b9-b0cc-1e81ff0f9e7f", "text": "\u88ab\u82cf\u8054\u6467\u6bc1\u7684\u963f\u5bcc\u6c57\u3002"} +{"id": "2002417", "video_name": "bdc977cf-e3ca-5f80-ac4f-3737da28ad23", "text": "\u592a\u9633\u7cfb\u4e2d\u6700\u51b7\u7684\u884c\u661f\u3002"} +{"id": "2002418", "video_name": "1544ac6d-32a1-5203-980b-794d7da03cf8", "text": "\u6c34\u6676\u7403\u91cc\u7684\u51b2\u6d6a\u5973\u5b69"} +{"id": "2002419", "video_name": "b4f63ee1-fa14-59e8-b771-95ff79f9f78b", "text": "\u5236\u4f5c\u4e00\u4e2a10\u79d2\u949f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u7537\u4eba\u88ab\u56f0\u5728\u6ef4\u7b54\u4f5c\u54cd\u7684\u65f6\u949f\u4e2d\uff0c\u88ab\u9501\u94fe\u6240\u675f\u7f1a\u3002\u4ed6\u662f\u4e00\u540d\u56da\u72af"} +{"id": "2002420", "video_name": "43f8d98c-7946-5814-ae12-099558486676", "text": "\u7b2c\u4e00\u573a\u666f\u4e2d\uff0c\u4e4c\u9f9f\u548c\u5154\u5b50\u7684\u6bd4\u8d5b\u91c7\u75282D\u52a8\u753b\u5f62\u5f0f\uff0c\u5154\u5b50\u5632\u7b11\u4e86\u4e4c\u9f9f\u3002"} +{"id": "2002421", "video_name": "d53fce4e-5b16-5608-9ecf-a7d4cea5a005", "text": "\u94f6\u8272\u7684\u7403\u5728\u53cd\u5c04\u4e00\u68f5\u6811\u7684\u5149\u8292\u4e0b\u5f39\u8df3\u3002"} +{"id": "2002422", "video_name": "cc1dbc93-34ba-5006-8ef1-29523464af56", "text": "\u653e\u5927\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u5ba2\u5385\u3002"} +{"id": "2002423", "video_name": "d39d4330-6831-53c3-a241-fcd1a29b99c5", "text": "\u4eba\u4eec\u53bb\u627e\u4ed6\u7948\u6c42\u5927\u575d\u4e0d\u8981\u5d29\u584c\u3002"} +{"id": "2002424", "video_name": "59e09a16-f5cb-5d4e-b4d9-b716c6424bf3", "text": "\u5728\u591c\u665a\uff0c\u57ce\u5e02\u91cc\u7684\u65f6\u5c1a\u5973\u5b69"} +{"id": "2002425", "video_name": "46684af8-c76e-5cb0-84bb-b9868637f8f0", "text": "\u521b\u5efa\u4e00\u4e2a\u5305\u62ec\u5c0f\u8c61\u5728\u5185\u7684\u5927\u8c61\u5bb6\u65cf\u76843D\u56fe\u50cf\uff0c\u5468\u56f4\u662f\u8302\u5bc6\u7684\u4e1b\u6797\u690d\u88ab\uff0c8K\u3001\u903c\u771f\u3001\u8272\u5f69"} +{"id": "2002426", "video_name": "1bf17491-27bf-512f-b22f-a188aa1c95c8", "text": "\u9ed1\u8c79\u5973\u90ce\u6234\u7740\u91d1\u51a0\uff0c\u5468\u56f4\u662f\u4e1b\u6797\u548c\u91d1\u8272\u7684\u5149\u8292\u3002"} +{"id": "2002427", "video_name": "f9e92e25-8927-51dc-ac2f-e54f72ed2acf", "text": "\u4fe1\u6e90\u53e5\uff1a\u9e3d\u5b50\u62ff\u7740\u4e00\u7247\u53f6\u5b50\u57288K 16:9\u7684\u52a8\u6001\u4e0b\u98de\u884c\u3002"} +{"id": "2002428", "video_name": "ca20b48b-2f30-5918-99fa-346872a9e825", "text": "\u53ef\u7231\u7684\u7c73\u5947\u8001\u9f20\u8eba\u5728\u5f69\u8679\u7cd6\u4e91\u4e0a\u7761\u89c9\uff0c\u8fea\u58eb\u5c3c24K\u3002"} +{"id": "2002429", "video_name": "9cf4e17a-2954-5457-b3fe-7a8c83a8ff1c", "text": "\u7528\u5e03\u9b6f\u8afe\u00b7\u99ac\u723e\u65af\u6f14\u594f\u7684\u653e\u514b\u6a02\u968a\n\nSource sentence: Can you recommend a good Chinese restaurant nearby? \n\u4f60\u80fd\u63a8\u85a6\u9644"} +{"id": "2002430", "video_name": "4c061b87-a06b-5a58-af25-b57bf02aa26b", "text": "\u5728TikTok\u4e0a\u5bf9\u8bc4\u8bba\u60c5\u611f\u5206\u6790\u7ed3\u679c\u3002"} +{"id": "2002431", "video_name": "0c6efecd-db83-527f-924f-91899c67297e", "text": "\u5c0f\u5b69\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u9a91\u7740\u675c\u5361\u8fea\u5e15\u5c3c\u683c\u62c9\u52d2\u3002"} +{"id": "2002432", "video_name": "deeda28b-3949-54d3-a7f0-af84b78014c9", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u4e0a\u8df3\u821e\u3002"} +{"id": "2002433", "video_name": "40736c8b-ffa5-55fd-afc8-462148ebc0cb", "text": "\u897f\u8499\u5a1c\u00b7\u62dc\u5c14\u65af\u548c\u5c0f\u5a01\u5ec9\u59c6\u65af\u5728\u5de8\u578b\u94a2\u7434\u4e0a\u8df3\u821e\uff0c\u96e8\u4e2d\u9ad8\u6e05\u903c\u771f\u3002"} +{"id": "2002434", "video_name": "7a8d0548-0c7d-58dc-8498-d0c11125eba3", "text": "\u4e00\u4e2a\u50cf\u9ed1\u80e1\u5b50\u6d77\u76d7\u7684\u4eba\uff0c\u89c2\u5bdf\u7740\u4e00\u5f20\u53e4\u8001\u7684\u4e16\u754c\u5730\u56fe\u3002"} +{"id": "2002435", "video_name": "9a96b2b9-c498-51c7-a293-5ef487186f84", "text": "\u4e24\u4e2a\u7537\u4eba\u6b63\u5728\u8c08\u8bdd\uff0c\u7a81\u7136\u5176\u4e2d\u4e00\u4e2a\u53d8\u5f97\u6cae\u4e27\u5e76\u8d70\u5f00\u4e86\u3002"} +{"id": "2002436", "video_name": "d7d47887-ac39-5f14-a66f-7fce18177aac", "text": "\u4e00\u6bb5\u9ad8\u5206\u8fa8\u7387\u7684\u620f\u5267\u6027\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u683c\u5170\u5c3c\u53f2\u5bc6\u65af\u82f9\u679c\u3002\u8fd9\u4e2a\u82f9\u679c\u662f\u7eff\u8272\u7684\uff0c\u8eba\u5728\u4e00\u5f20\u5355"} +{"id": "2002437", "video_name": "6e460c2c-d61d-58bc-a34b-6fae8cd9a309", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5750\u5728\u7535\u8111\u524d\uff0c\u7f16\u5199\u4ee3\u7801\u7684\u884c\u6570\u3002\u4fe1\u606f\uff1ahackit\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2002438", "video_name": "c7a6b17b-ba10-5616-8a6d-91b69fb58ff7", "text": "\u4e00\u4e2a\u5934\u5f88\u5927\u7684\u7537\u4eba\u8138\u4e0a\u753b\u4e86\u4e00\u4e2a\u9ec4\u8272\u7684\u592a\u9633\uff0c\u8fd9\u662f\u4e00\u90e8\u4e0a\u4e16\u7eaa70\u5e74\u4ee3\u7684\u827a\u672f\u7535\u5f71\uff0c\u5c5e\u4e8e\u5b09"} +{"id": "2002439", "video_name": "4a46906c-7993-5a7c-9ed0-ddb1a26432fc", "text": "\u8bf7\u6765\u53c2\u52a0\u6211\u4eec\u7684\u4ea1\u7075\u8282\u5e86\u5178\u3002"} +{"id": "2002440", "video_name": "07f50e83-9ce5-5f5e-b181-304a7178e4cf", "text": "\u5927\u8c61\u653b\u51fb\u5e76\u8dd1\u5411\u57ce\u5e02\u3002"} +{"id": "2002441", "video_name": "482733e0-0cb4-5077-8e47-2d8228f0b6f7", "text": "\u9003\u79bb\u6740\u624b\u7684 dbd \u6e38\u620f\u3002"} +{"id": "2002442", "video_name": "d041d9b5-6319-59b5-b439-072302ec1faa", "text": "\u4e00\u53ea\u9e1f\u513f\u6816\u606f\u5728\u6811\u679d\u4e0a\u7684\u771f\u5b9e4K\u753b\u9762\uff0c\u5bbd1080\u50cf\u7d20\uff0c\u9ad81920\u50cf\u7d20\u3002"} +{"id": "2002443", "video_name": "25882279-8078-52db-b5ff-ac01aa2d095c", "text": "\u5e74\u8f7b\u7684\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u73a9\u78c1\u94c1\u6216\u663e\u5f97\u597d\u5947\u3002"} +{"id": "2002444", "video_name": "27f44d3c-1a71-5994-a6e9-5c385508424d", "text": "\u4e00\u4e2a\u88ab\u56f0\u5728\u74f6\u5b50\u91cc\u7684\u516c\u4e3b\u7b49\u5f85\u7740\u4eba\u7fa4\u3002"} +{"id": "2002445", "video_name": "12d1857d-520f-571f-9027-78e92becf640", "text": "\u660e\u4eae\u3001\u73b0\u4ee3\u5316\u7684\u5de5\u4f5c\u5ba4\uff0c\u88c5\u9970\u7740\u65f6\u5c1a\u7684\u5bb6\u5177\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u706f\u5149\u3002\u4e00\u4e2a\u5e74\u8f7b\u6709\u9b45\u529b\u7684YOUT"} +{"id": "2002446", "video_name": "a7ec0143-55e6-5f0f-bafb-8a2ee6ccab49", "text": "\u4e0b\u91d1\u5e01\u96e8\u3002\u4fe1\u606f\uff1aTIPCOIN\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2002447", "video_name": "bd821c30-027a-5f66-ac95-4d0712febba5", "text": "\u6bcf\u4e00\u4e2a\u7ec6\u8282\u90fd\u88ab\u7cbe\u7ec6\u5730\u523b\u753b\u5728\u5973\u795e\u5e15\u9732\u8482\u5a1c\u8eab\u4e0a\uff0c\u4ece\u6bdb\u5b54\u5230\u88c5\u675f\u90fd\u88ab\u6c38\u4e45\u4fdd"} +{"id": "2002448", "video_name": "161ed4bb-5343-55a2-abc1-6bc1138fdb7d", "text": "\u4fc4\u7f57\u65af\u7684\u571f\u58e4\u6709\u7740\u4e0d\u5bfb\u5e38\u7684\u56fe\u6848\uff0c\u5b83\u50cf\u662f\u4e00\u5e45\u827a\u672f\u7535\u5f71\u4e2d\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u8352\u8bde\u68a6\u5883"} +{"id": "2002449", "video_name": "7a816d13-e5e6-5f14-8efa-b0c601ae87b2", "text": "\u732b\u5728\u5feb\u901f\u9a7e\u9a76\u7684\u8dd1\u8f66\u4e2d\u8f6c\u52a8\u65b9\u5411\u76d8\u3002"} +{"id": "2002450", "video_name": "275bc011-b1f9-5da7-8f1c-1ea43c7e2171", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u5728\u96ea\u5730\u91cc\u8d70\u8def\u3002"} +{"id": "2002451", "video_name": "6f6d4aca-436a-5df2-ba41-2f9328f0a2ae", "text": "\u592a\u9633\u7167\u8000\u5728\u84dd\u8272\u7684\u5929\u7a7a\u4e2d\uff0c\u4e00\u5bf9\u60c5\u4fa3\u76f8\u89c6\u800c\u7b11\uff0c\u900f\u9732\u51fa\u5f7c\u6b64\u95f4\u7684\u7231\u610f\u548c\u9ed8\u5951\u3002\u4ed6\u4eec\u4e4b\u95f4"} +{"id": "2002452", "video_name": "21e2d52f-2c8d-54bb-89e9-909b2e85cf7e", "text": "\u751f\u957f\u7684\u9b54\u6cd5\u8611\u83c74K 5\u79d2\u526a\u8f91"} +{"id": "2002453", "video_name": "21f181f8-e9fd-5921-be3e-d1032844089f", "text": "\u90a3\u4e2a\u5973\u5b69\u8bf4\u8bdd\u5e76\u6643\u52a8\u7740\u624b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002454", "video_name": "34091d12-c9cc-5178-a1dc-6d4034216115", "text": "3D\u5361\u901a\uff0c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u624b\u4f38\u5165\u5916\u5957\u53e3\u888b\u3002"} +{"id": "2002455", "video_name": "ea2cec27-1707-52a1-a69b-b483dd474db8", "text": "Translation: \u6ca1\u94b1\u7684\u7a77\u4eba"} +{"id": "2002456", "video_name": "f7abeaa3-0f28-5c7d-9d40-fd07861f2718", "text": "\u6bd4\u7279\u5e01\u3001\u4e00\u53cc\u7b77\u5b50\u548c\u5c71\u8336\u82b1\u3002"} +{"id": "2002457", "video_name": "4a115947-71df-5104-a017-ddf841684094", "text": "\u592a\u7a7a\u4eba\u5728\u591c\u665a\u6d77\u6d0b\u4e2d\u6df9\u6ca1\u3002"} +{"id": "2002458", "video_name": "6f63d6a3-4e51-57e0-b8d4-ca9922921cad", "text": "\u5c55\u793a\u4e00\u4e0bFIFA 2050\u7684\u56fe\u5f62\u53ef\u80fd\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\u3002"} +{"id": "2002459", "video_name": "3e5f7b21-205e-5f0c-99d9-af893cf5d432", "text": "\u50cf\u4e00\u5757\u6d41\u52a8\u7684\u98ce\u666f\u753b\uff0c\u68a6\u5e7b\u7684\u9cb8\u9c7c\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\u6e38\u52a8\uff0c\u88ab\u4e00\u6735\u6e05\u51c9\u7684\u767d\u4e91\u6240"} +{"id": "2002460", "video_name": "cabd29fd-fa9e-5fe6-beea-0de42b878b82", "text": "1930\u5e74\u4ee3\uff0c\u4e00\u540d\u7537\u5b50\u5728\u534a\u591c3\u70b9\u8d70\u8fd1\uff0c\u8d70\u5728\u4e00\u6761\u8d70\u5eca\u548c\u7a7a\u8361\u8361\u7684\u5927\u5385\u91cc\uff0c\u8425\u9020\u51fa\u6050\u6016\u7535"} +{"id": "2002461", "video_name": "a2ad13e9-f712-5fc9-aba2-909bcbd071d6", "text": "\u7c89\u8272\u7684\u9e26\u5728\u57ce\u5821\u9644\u8fd1\u98de\u884c\u3002"} +{"id": "2002462", "video_name": "c4509f4c-ea15-5a16-89a3-b753b5b9768c", "text": "\u7537\u5b69\u8003\u8bd5\u901a\u8fc7\uff0c\u8001\u5e08\u9ad8\u5174\u5730\u795d\u8d3a\u3002"} +{"id": "2002463", "video_name": "7e5c3bb0-9c1b-5adc-a992-eff9997ccf52", "text": "\u4e24\u4e2a\u989c\u8272\u5206\u522b\u4e3a\u8461\u8404\u7259\u548c\u897f\u73ed\u7259\u7684\u661f\u7cfb\u76f8\u649e\u4ea7\u751f\u7684\u80fd\u91cf\u3002"} +{"id": "2002464", "video_name": "f1d803b8-6049-5485-9f26-9d71fcee5be6", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u751f\u7269\u661f\u7403\uff0c\u8089\u7403\u8868\u9762\u6709\u4e00\u4e2a\u773c\u775b\u548c\u89e6\u624b\uff0c\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "2002465", "video_name": "c6b0bce5-1a26-5940-96c7-62a6048f2a79", "text": "\u4e00\u4f4d\u8001\u7684\u8ca7\u56f0\u7684\u4e9e\u7f8e\u5c3c\u4e9e\u5973\u58eb\u57281990\u5e74\u4ee3\u63a5\u53d7\u96fb\u8996\u63a1\u8a2a\uff0c\u4f7f\u7528VHS\u548c\u624b\u6301\u651d\u50cf\u6a5f\u3002"} +{"id": "2002466", "video_name": "8d1f282d-5947-5fca-bf10-2d388090dc82", "text": "\u7537\u4eba\u5728\u4ed6\u7684YouTube\u89c6\u9891\u4e0a\u83b7\u5f97\u4e86\u9ad8\u70b9\u51fb\u91cf\u548c\u559c\u6b22\u3002"} +{"id": "2002467", "video_name": "f7ab576b-5dca-5de0-8a41-7fdc1078888f", "text": "Kpop\u5973\u5b69\u5728\u8857\u4e0a\u70ed\u60c5\u8df3\u821e\u3002"} +{"id": "2002468", "video_name": "6a42ddcf-aba7-5731-9c72-c80b52765e98", "text": "\u5899\u4e0a\u6302\u6ee1\u4e86\u6765\u81ea\u524d\u51e0\u5e74\u7684\u827a\u672f\u4f5c\u54c1\u3002"} +{"id": "2002469", "video_name": "2df74b8c-b36c-5eff-9800-677ee6fa3c5b", "text": "\u8718\u86db\u4fa0\u548c\u5c0f\u4e11\u5728\u6d1e\u7a74\u91cc\u548c\u54c8\u8389\u00b7\u594e\u8335\u4ee5\u53ca\u6bd2\u85e4\u5973\u73a9\u300a\u5821\u5792\u4e4b\u591c\u300b\u3002"} +{"id": "2002470", "video_name": "ba8a0494-7906-5bfd-a352-698ff6385c6d", "text": "3D\u52a8\u6f2b\u98ce\u683c\u7684\u4e2d\u5f0f\u70f9\u996a\uff0c\u4f7f\u7528\u714e\u9505\uff0cOctane\u6e32\u67d3\u52a8\u4f5c\u7535\u5f71\u6444\u50cf\u673a\u3002"} +{"id": "2002471", "video_name": "f1311851-9744-535e-a28e-6ba00e999a4f", "text": "\u4e00\u4e2a\u5973\u5b69\u9762\u5bf9\u7740\u5e9e\u5927\u7684\u89c2\u4f17\u6f14\u594f\u8428\u514b\u65afophone\u3002"} +{"id": "2002472", "video_name": "7614f9a4-cb76-5c1b-bdb9-d71f7cafd879", "text": "\u5bb6\u5ead\u5f55\u97f3\u97f3\u4e50\u5de5\u4f5c\u5ba4\uff0c\u626c\u58f0\u5668\u64ad\u653e\u97f3\u4e50\u3002"} +{"id": "2002473", "video_name": "58a4d743-caec-5aa3-ab24-149031f16f97", "text": "\u663e\u5fae\u955c\u5934\u62cd\u6444\uff0c\u871c\u8702\u5728\u82b1\u5e8a\u4e0a\u91c7\u96c6\u82b1\u7c89\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "2002474", "video_name": "a01f6b26-c909-5920-927c-97712862da87", "text": "\u8bf7\u60f3\u8c61\u4e00\u5e45\u6f2b\u753b\u573a\u666f\uff0c\u6d41\u884c\u7684\u53f3\u7ffc\u9752\u86d9Pepe\u6216Apu\u6b63\u5728\u4e0e\u4e54\u00b7\u62dc\u767b\u4f5c\u5bf9\uff0c\u4e54\u00b7\u62dc\u767b\u5750\u5728"} +{"id": "2002475", "video_name": "67a12dbb-12d6-50a6-a733-4070e9b65cec", "text": "\u4e24\u4e2a\u52a8\u6f2b\u89d2\u8272\u7684\u624b\u78b0\u5230\u4e00\u8d77\uff0c\u63a5\u4e0b\u6765\u7684\u753b\u9762\u4e2d\u4e91\u6735\u7206\u70b8\uff0c\u7136\u540e\u4e24\u4e2a\u65b0\u751f\u513f\u54ed\u6ce3\uff0c\u63a5\u4e0b\u6765\u51fa"} +{"id": "2002476", "video_name": "9ee59e62-3e74-52b2-912c-aae2a6d3379b", "text": "\u4e00\u6761\u873f\u8712\u7684\u571f\u8def\u7a7f\u8fc7\u9ad8\u5927\u7684\u6811\u6797\uff0c\u6811\u679d\u5f62\u6210\u4e00\u4e2a\u5929\u7136\u7684\u6811\u51a0\u3002\u5730\u9762\u4e0a\u8986\u76d6\u7740\u90c1\u90c1"} +{"id": "2002477", "video_name": "9470759f-0531-5178-9907-af55fb1010dc", "text": "\u4e00\u4e2a\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5c0f\u6697\u76ae\u80a4\u5361\u901a\u89d2\u8272\uff0c\u6234\u7740\u5e26\u94fe\u5b50\u7684\u955c\u5b50\u5e3d\uff0c\u6234\u7740\u9576\u6709\u94bb\u77f3\u70e4"} +{"id": "2002478", "video_name": "92419856-a9d9-5375-a99a-52526424da32", "text": "\u5973\u4eba\u5fae\u7b11\u7740\u8bb2\u8bdd\uff0c\u663e\u5f97\u5f88\u806a\u660e\u3002"} +{"id": "2002479", "video_name": "f2106d54-ea07-5497-bf23-888fd15fa773", "text": "\u4e00\u4e2a\u8d85\u73b0\u5b9e\u3001\u62bd\u8c61\u3001\u4ee4\u4eba\u4e0d\u5b89\u7684\u5361\u901a\u753b\uff0c\u4e0d\u65ad\u5faa\u73af\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u4eba\u65e0\u4f11\u6b62\u5730\u54ed\u6ce3\uff0c\u88ab\u8def\u8fc7\u7684\u4eba\u4eec\u5ffd"} +{"id": "2002480", "video_name": "1544051c-4dbc-58cb-99bf-b68cc8172fe7", "text": "\u4e00\u4e2a\u94f6\u8272\u7684\u4e0d\u660e\u98de\u884c\u7269\u60ac\u6d6e\u5728\u5927\u91d1\u5b57\u5854\u4e0a\u65b9\uff0c\u9010\u6e10\u62c9\u8fdc\u89c6\u89d2\u3002"} +{"id": "2002481", "video_name": "6e07a76c-b839-5b83-8686-08cd43fa0ec4", "text": "\u5728\u4e00\u8f6e\u6ee1\u6708\u7684\u65e5\u5b50\u91cc\uff0c\u6708\u4eae\u7f13\u7f13\u53d8\u6210\u4e86\u7ea2\u8272\u3002"} +{"id": "2002482", "video_name": "a92237f1-20a0-5304-b417-33d5f369579b", "text": "\u4eba\u4eec\u5728\u4e00\u8f86\u884c\u9a76\u4e2d\u7684\u5361\u8f66\u4e0a\u8df3\u821e\u3002"} +{"id": "2002483", "video_name": "d5d75f1e-a4f5-5760-b625-ae9d493456de", "text": "\u52a8\u6f2b\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u84dd\u8272\u592a\u9633\uff0c\u4e00\u4e2a\u89d2\u8272\u7684\u526a\u5f71\uff0c\u624b\u6301\u67aa\u652f\uff0c\u4ece\u80cc\u9762\u770b\u6218\u6597\u573a\u666f\u3002"} +{"id": "2002484", "video_name": "5f1512fa-f7a6-5ade-b7bf-4c8e7065326a", "text": "\u4e00\u53ea\u732b\u5934\u9e70\u5728\u8ff7\u5e7b\u516d\u8fb9\u5f62\u7f51\u683c\u4e2d\uff0c\u751f\u6210\u5f0f\u8bbe\u8ba1\u3002"} +{"id": "2002485", "video_name": "97661c16-9939-5c3f-94c1-b8440f7e747c", "text": "\u4e00\u4e2a\u65e5\u672c\u7537\u5b50\uff0c\u770b\u8d77\u6765\u50cf\u4e00\u5f20\u65e7\u62a5\u7eb8\u98ce\u683c\u7684\u7eb8\uff0c\u590d\u5370\u7eb9\u7406\uff0c\u9897\u7c92\u72b6\uff0c\u65e7\u65b0\u95fb\u98ce\u683c\u3002"} +{"id": "2002486", "video_name": "bedf751a-568a-5fc2-b143-7ea1f4167554", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u5728\u65f6\u4ee3\u5e7f\u573a\u516c\u56ed\u8df3\u821e\u65f6\u5f00\u67aa\uff0c\u79fb\u52a8\uff0c16:9\uff0c\u7535\u5f71\u822c\u7684\u52a8\u4f5c\u7535\u5f71\u3002"} +{"id": "2002487", "video_name": "817c9097-09d6-539e-9861-e9ee13add284", "text": "\u521b\u5efa\u4e00\u5e45\u62e5\u6709\u58c1\u753b\u7011\u5e03\u548c\u6811\u6728\u76843D\u56fe\u50cf\uff0c\u5206\u8fa8\u7387\u4e3a8K\u3002"} +{"id": "2002488", "video_name": "f7551cae-3088-5a49-8e1a-40511f7fad53", "text": "\u5170\u535a\u57fa\u5c3cHuracan\u5185\u8f7d\u7f8e\u5973\u6f02\u79fb\u3002"} +{"id": "2002489", "video_name": "6e00a50a-9f6c-5fbe-9a48-854a70515fbb", "text": "\u7528\u94c5\u7b14\u753b\u7684\u65e5\u5f0f\u8336\u58f6\u7d20\u63cf\uff0c\u767d\u8272\u80cc\u666f\uff0c\u9ed1\u8272\u8f6e\u5ed3\uff0c\u6807\u5fd7\uff0c2D\u3002"} +{"id": "2002490", "video_name": "91ac6b6c-3feb-5ece-8e93-31684a6fe9c6", "text": "Source sentence: \u725b\u4ed4\u9a91\u7740\u718a\u7684\u897f\u90e8\u91ce\u751f\u4e3b\u9898\uff0c\u7535\u5f71\u573a\u666f\uff0c\u52a8\u4f5c\u7247\u3002"} +{"id": "2002491", "video_name": "e17b5594-4a8e-5429-9682-7e4283f2cf86", "text": "\u4e00\u4e2a\u8fd1\u8ddd\u79bb\u89c2\u5bdf\u7684\u4eba\u8138\u53d8\u6210\u4e86\u52a8\u6001\u9713\u8679\u591a\u5f69\u7684\u6db2\u4f53\u3002"} +{"id": "2002492", "video_name": "05e4582f-97aa-53c4-a63b-ad4c28aaef37", "text": "\u4e00\u7fa4\u6469\u6258\u8f66\u624b\uff0c\u5c11\u5e74Jump\u52a8\u6f2b\u98ce\u683c\uff0c\u8d5b\u535a\u88c5\u7f6e\uff0c\u5728\u9152\u5427\u91cc\uff0c\u9ad8\u5ea6\u7ec6\u8282\u3002"} +{"id": "2002493", "video_name": "5228353c-e4a2-5723-a55e-ffc9996c01fa", "text": "\u70ed\u72d7\u5728\u98ce\u4e2d\u8df3\u821e\u3002"} +{"id": "2002494", "video_name": "ac7ee6d8-bfa2-5459-9581-d7d03b45793e", "text": "8\u5c81\u7684\u5973\u5b69\uff0c\u5377\u53d1\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u7b80\u5355\u7684\u51c9\u978b\u3002\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2002495", "video_name": "63f692c5-d494-510f-aba1-d3cbf71a611a", "text": "\u6811\u4e0a\u6302\u6ee1\u4e86\u7f8e\u5473\u7684\u6c34\u679c\uff0c3D\u5361\u901a\u3002"} +{"id": "2002496", "video_name": "8a034488-6d66-572e-9443-fb4445ffc9d2", "text": "\u91ce\u751f\u52a8\u7269\u548c\u9e1f\u7c7b\u51fa\u73b0\u4e86\u3002"} +{"id": "2002497", "video_name": "277acc56-49eb-5772-9cb7-cf7b92fde186", "text": "\u592a\u7a7a\u670d\u4e2d\u7684\u5f3a\u58ee\u7537\u4eba\u3002\u57283D\u52a8\u753b\u4e2d\u3002"} +{"id": "2002498", "video_name": "64d69e35-7903-54d8-8444-913b9d46a80a", "text": "\u795e\u79d8\u7684\u6d77\u6d0b\u548c\u9646\u5730\u8fb9\u754c\uff0c\u4e00\u8258\u5192\u9669\u5bb6\u7684\u8239\u6f02\u6d6e\u5176\u4e2d\u3002 \n\nSource sentence: A wise man once said, \"The only true wisdom is in knowing"} +{"id": "2002499", "video_name": "62ae0b06-747e-5a49-98e2-111f7fc3e32b", "text": "\u4e2d\u4e16\u7eaa\u5929\u6587\u5b66\u5bb6\u7ed8\u5236\u5929\u7a7a\u56fe\uff0c\u903c\u771f\u7684\u56fe\u50cf\uff0c\u7535\u5f71\u822c\u7684\u52a8\u6001\u3002"} +{"id": "2002500", "video_name": "d235a4fe-80a0-5322-80a8-a91b7c3623d5", "text": "\u8840\u6e56\u8868\u9762\u4e0b\u6f5c\u4f0f\u7740\u5a01\u80c1\u4eba\u7c7b\u7684\u9cc4\u9c7c\u3002"} +{"id": "2002501", "video_name": "82fe34d4-adfa-5daf-9327-400481b9b48a", "text": "\u673a\u5668\u4eba\u5728\u6d77\u6ee9\u4e0a\u4e3a\u4eba\u4eec\u63d0\u4f9b\u996e\u6599\u670d\u52a1\u3002"} +{"id": "2002502", "video_name": "95c6f6a0-4c0e-5a7e-b0d7-df14882e5268", "text": "\u4e00\u5339\u5728\u661f\u7a7a\u4e2d\u7684\u9a6c\u3002"} +{"id": "2002503", "video_name": "6702c0ce-e9a1-5d68-ae65-5af3e4753b94", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u7247\u5145\u6ee1\u6d3b\u529b\u7684\u7f51\u7edc\u4e1b\u6797\uff0c\u6709\u4e00\u4e2a\u540d\u4e3aCodey\u7684\u8003\u62c9\u5750\u5728\u6811\u679d\u4e0a\uff0c\u5468\u56f4\u88c5\u9970\u7740\u79d1\u6280"} +{"id": "2002504", "video_name": "80a60830-f47b-574f-b33c-9b63499b8271", "text": "\u5973\u4eba\u5c16\u53eb\u7684\u53cd\u5e94"} +{"id": "2002505", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "\u5371\u9669\u7684\u72ee\u5b50\u6f5c\u4f0f\u5176\u4e2d\uff0c\u662f\u4e00\u79cd\u8feb\u5728\u7709\u776b\u7684\u5a01\u80c1\u3002"} +{"id": "2002506", "video_name": "4843d040-bfc1-58da-84a8-b821d0be73bd", "text": "\u9ed1\u8272\u76d4\u7532\u8986\u76d6\u7684\u673a\u5668\u4eba\u8ffd\u9010\u7740\u4e00\u7fa4\u53db\u519b\uff0c\u5728\u62e5\u6324\u7684\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u591c\u665a\u7684\u9713\u8679"} +{"id": "2002507", "video_name": "99bd6a35-6225-5ea4-b640-40910107b18e", "text": "\u5728\u4e00\u4e2a\u6fd2\u4e34\u6df1\u6e0a\u7684\u4e16\u754c\uff0c2023\u5e74\uff0c\u4e00\u4f4d\u52c7\u6562\u7684\u5e74\u8f7b\u5973\u5b50\u5d1b\u8d77\uff0c\u9762\u5bf9\u7740\u4e0d\u786e\u5b9a\u7684\u547d\u8fd0\u3002"} +{"id": "2002508", "video_name": "0a2622fd-a5e6-5fc5-84bb-b1d6bb009443", "text": "\u4f7f\u96fe\u3001\u5149\u548c\u95ea\u7535\u52a8\u8d77\u6765\uff0c\u4eba\u7269\u4e0d\u52a8\u3002"} +{"id": "2002509", "video_name": "78a2f113-f1ff-519b-af8c-87e607a33464", "text": "\u4e00\u95f4\u660f\u6697\u7684\u5367\u5ba4\uff0c\u6709\u57fa\u672c\u5bb6\u5177\u3002\u770b\u8d77\u6765\u7834\u65e7\u4e0d\u582a\u3002"} +{"id": "2002510", "video_name": "7bd4e63b-7f41-5d79-8a30-1ee52660b9ee", "text": "\u94a2\u94c1\u4fa0\u8d70\u8fdb\u9152\u5427\uff0c\u9047\u89c1\u4e86\u9521\u4eba\u3002"} +{"id": "2002511", "video_name": "da60a622-90a7-5994-a1ff-1f363dfc2e33", "text": "\u5728\u4e00\u7247\u5411\u65e5\u8475\u7530\u91cc\uff0c\u7a7f\u7740\u5f17\u91cc\u8fbe\u5f0f\u6837\u6216\u83ab\u5948\u5f0f\u6837\u7684\u58a8\u897f\u54e5\u5973\u4eba\u3002"} +{"id": "2002512", "video_name": "ffb06727-c6bd-5414-822b-cf02d59a18d5", "text": "\u62dc\u5360\u5ead\u3001\u53e4\u6b63\u6559\u3001\u521b\u4e16\u7eaa\u56fe\u6807\u3001\u4e1c\u7f57\u9a6c\u5e1d\u56fd\u3002"} +{"id": "2002513", "video_name": "65b7df4c-e3be-54ef-9fc9-f2821a9cfc5f", "text": "\u9102\u5716\u66fc\u8607\u4e39\u96c5\u6b66\u8332\u00b7\u585e\u5229\u59c6\u9a0e\u99ac\u5feb\u901f\u884c\u9032\u3002"} +{"id": "2002514", "video_name": "4a05a691-99ef-5705-944f-2efdb3b17d9e", "text": "\u7537\u4eba\u8f7b\u677e\u5730\u6253\u5b57\uff0c\u706f\u5149\u95ea\u70c1\uff0c\u5fae\u5fae\u8f6c\u52a8\u5934\u770b\u5411\u955c\u5934\u3002"} +{"id": "2002515", "video_name": "7f99cc1e-e9d0-5844-81d7-0b66d212aa05", "text": "\u9ed1\u6697\u4e4b\u738b\u5750\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\u3002"} +{"id": "2002516", "video_name": "53d1c548-7fcd-5938-93cd-178e9a63f676", "text": "\u81ea\u52a8\u94ec\u56fe\u50cf\u6444\u50cf\u673a\u62cd\u6444\u4e86\u4e00\u6bb5\u957f\u800c\u7626\u7684\u751f\u7269\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\u602a\u5f02\u7b11\u58f0\u7684\u955c\u5934\u3002"} +{"id": "2002517", "video_name": "69151860-87f3-5130-9993-691122109e98", "text": "\u8d85\u9ad8\u5854\u697c\u7684\u6d77\u666f"} +{"id": "2002518", "video_name": "3b4e0118-5859-531f-ac8e-6350d455867d", "text": "\u7da0\u8272\u6eab\u5ba4\u548c\u7da0\u8272\u690d\u7269\u5f9e\u5916\u90e8\u53ef\u898b\uff0c\u4e26\u8d8a\u4f86\u8d8a\u63a5\u8fd1\uff0c\u903c\u771f\u3002"} +{"id": "2002519", "video_name": "099566bb-36c9-5f9c-9d38-ddfac620a077", "text": "\u4e00\u53ea\u6cf0\u8fea\u718a\u624b\u91cc\u62ff\u7740\u4e00\u672c\u4e66\u8bb2\u6545\u4e8b\uff0c\u4ed6\u524d\u9762\u6709\u4e00\u4e2a\u9ea6\u514b\u98ce\uff0c\u89c6\u9891\u662f\u6b63\u9762\u89c6\u89d2\uff0c\u8fd9\u53ea\u718a\u5c31"} +{"id": "2002520", "video_name": "dc3a66bb-184b-59fa-ac17-40fd1884bc7c", "text": "\u690d\u7269\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u706b\u7130\u95ea\u8000\u3002"} +{"id": "2002521", "video_name": "b0dae64d-9476-5d4b-8721-4d4b0d45af22", "text": "\u4e00\u53ea\u718a\u732b\u5728\u5ca9\u77f3\u5ced\u58c1\u4e0a\u5403\u7af9\u5b50\uff0c\u80cc\u666f\u662f\u6d77\u666f\u548c\u5915\u9633\u4e0b\u7684\u5c71\u5ce6\uff0c\u5468\u56f4\u662f\u8349\u548c\u4e94"} +{"id": "2002522", "video_name": "2ab6127b-0c69-57fa-89fc-be4fe44eebc1", "text": "\u5927\u5bb6\u90fd\u5728\u753b\u753b\uff0c\u95ea\u95ea\u53d1\u5149\uff0c\u6563\u53d1\u7740\u660e\u4eae\u7684\u5149\u6cfd\u3002"} +{"id": "2002523", "video_name": "134546db-60ce-55a9-b5f2-4a1d6f071714", "text": "\u8bfa\u74e6\u514b\u00b7\u5fb7\u7ea6\u79d1\u7ef4\u5947\u5728\u5e86\u795d\u6bd4\u8d5b\u70b9\u3002 \n\nSource sentence: The sun is setting behind the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u540e\u843d\u5c71\u3002"} +{"id": "2002524", "video_name": "11218c01-a3a1-5ded-836e-36bebc3ef7d4", "text": "\u5728\u6444\u50cf\u5934\u524d\u5ba3\u4f20\u591c\u706f"} +{"id": "2002525", "video_name": "5947efee-2b16-5223-b87f-27bc5e9783e6", "text": "\u4e24\u53ea\u7a7f\u7740\u9102\u6e29\u514b\u65cf\u4f20\u7edf\u670d\u9970\u9a91\u7740\u9a6f\u9e7f\u7684\u72f8\u732b\uff0c\u76ee\u5149\u96c6\u4e2d\u800c\u575a\u5b9a\uff0c\u5c55\u73b0"} +{"id": "2002526", "video_name": "7d2c0aba-0aad-5eb6-86b6-2bc1da759aeb", "text": "\u4e00\u4e2a\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u5f00\u5fc3AI\u4eba\u7269\uff0c\u5174\u594b\u5730\u624b\u52bf\u7740\u8bf4\u8bdd\u3002"} +{"id": "2002527", "video_name": "bb8dbf4b-d322-5c18-80b7-c1950bfa6d3d", "text": "\u7231\u5fb7\u534e\u00b7\u7231\u4f26\u00b7\u5761\u7684\u773c\u775b\u91cc\u6ef4\u7740\u9c9c\u8840\uff0c\u4ee51940\u5e74\u4ee3\u7684\u9ed1\u767d\u7535\u5f71\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2002528", "video_name": "aa27ecf4-52ff-5b8a-9969-f9a0f1035647", "text": "\u4e00\u4f4d\u5f3a\u5927\u7684\u4e2d\u4e16\u7eaa\u6218\u58eb\u7ad9\u5728\u4eba\u7fa4\u524d\u65b9\u3002"} +{"id": "2002529", "video_name": "2c5b3653-778c-526e-a3dd-fb3e16f67b12", "text": "\u4f7f\u7528\u5927\u91cf\u82b1\u6735\u548c\u540e\u666f\u4e2d\u7684\u6c34\u6d41\u521b\u9020\u51fa\u7f8e\u4e3d\u7684\u56fe\u50cf\u3002"} +{"id": "2002530", "video_name": "7dd05fe9-d706-550c-8ec8-30c990076e55", "text": "\u76ae\u514b\u65af\u98ce\u683c\u76843D\u89d2\u8272\u6b63\u5728\u5439\u4e00\u4e2a\u7ea2\u8272\u7684\u6c14\u7403\u3002"} +{"id": "2002531", "video_name": "4267e8a9-0071-5281-abbc-62552ba3a7e7", "text": "\u4e00\u4e2a\u5e7b\u60f3\u4e2d\u7684\u62c9\u6590\u5c14\u00b7\u62c9\u79d1\u65af\u7279\u4e13\u8f91\u5c01\u9762\uff0c\u5c55\u793a\u4e86\u4e00\u8258\u8239\u5728\u66b4\u98ce\u96e8\u4e2d\u731b\u649e\u7684\u8fd1\u666f\uff0c\u6784\u56fe"} +{"id": "2002532", "video_name": "b40d14d6-db0c-54fa-a973-3f52b4105b13", "text": "\u4e00\u4e2a\u4ece\u624b\u4e2d\u55b7\u5c04\u51fa\u7f51\u7684\u5bb6\u4f19\uff0c\u56e0\u4e3a\u98ce\u800c\u6447\u66f3\u5176\u5934\u53d1\u3002"} +{"id": "2002533", "video_name": "f5a1da8e-453f-5fd8-9b35-55318cf2c96a", "text": "\u4ed6\u7684\u58f0\u97f3\u98a4\u6296\u7740\uff0c\u6574\u4e2a\u68ee\u6797\u4f3c\u4e4e\u90fd\u5728\u56de\u5e94\u7740\u4ed6\u3002\u7a81\u7136\uff0c\u4ed6\u624b\u4e2d\u7684\u91ce\u82b1\u88ab\u67d4\u548c\u7684\u3001\u865a"} +{"id": "2002534", "video_name": "2b9cc2d2-8b11-54de-8e62-e057f2c634a8", "text": "\u4e00\u5f20\u6765\u81ea2017\u5e74\u6b27\u51a0\u51b3\u8d5b\u7684\u8d85\u5199\u5b9e\u7684\u7f57\u7eb3\u5c14\u591a\u5f62\u8c61\u3002"} +{"id": "2002535", "video_name": "36216f14-e7fb-56e8-bf2d-7c4799282df3", "text": "Source sentence: \u50f5\u5c38\u8e52\u8dda\uff0c\u706b\u7130\u71c3\u70e7\uff0c\u70df\u96fe\u5347\u8d77\uff0c\u6050\u6016\u3002"} +{"id": "2002536", "video_name": "eba0da21-99c7-5036-9e48-0c16b052dc3a", "text": "\u4e09\u4e2a\u7ea2\u8272\u7684\u7403\u5728\u767d\u8272\u80cc\u666f\u4e0a\u6eda\u52a8\uff0c\u7403\u7f29\u653e\uff0c\u5448\u5f2f\u66f2\u7684\u84dd\u8272\u5e95\u90e8\u3002"} +{"id": "2002537", "video_name": "9b4b016e-d623-50d0-be34-7638a6fdd55f", "text": "\u76ae\u514b\u65af\u98ce\u683c\u76843D\u52a8\u753b\u89d2\u8272\u5728\u529e\u516c\u4f1a\u8bae\u5ba4\u5185\u505a\u6f14\u8bb2\u30023D\u52a8\u753b\uff0c\u83b7\u5956\u8005\uff0c\u76ae\u514b\u65af\u3002"} +{"id": "2002538", "video_name": "a4151fdd-abb5-5823-b7b7-7e971e99466d", "text": "\u8f9b\u5df4\u5fb7\u7a7f\u8fc7\u4e2d\u4e16\u7eaa\u5730\u7262\u8d70\u6765\u8d70\u53bb\u3002"} +{"id": "2002539", "video_name": "9c0a2c37-913e-5ac0-ad9c-6e10c0b51928", "text": "\u53f2\u8482\u7ef4\u00b7\u6c6a\u8fbe\u5728\u4e00\u5bb6\u897f\u5f0f\u9152\u5427\u5f39\u94a2\u7434\uff0c\u5145\u6ee1\u7535\u5f71\u611f\uff0c\u7ec6\u8282\u6781\u81f4\u3002"} +{"id": "2002540", "video_name": "e9fffc69-29e5-567f-8efe-8f6da3c6ce70", "text": "\u8428\u4e01\u5c9b\u7684\u5973\u5b69\u4e3e\u884c\u805a\u4f1a\u768430\u79d2\u89c6\u9891\u3002"} +{"id": "2002541", "video_name": "fbd6aaa7-f861-5071-9ccf-9637da9318e8", "text": "\u4e00\u53f0\u76f8\u673a\u653e\u5728\u9ed1\u8272\u684c\u5b50\u4e0a\u7684\u9ed1\u767d\u7167\u76f8\u5ba4\u91cc\u3002"} +{"id": "2002542", "video_name": "dec8243d-cfd2-553a-8352-4782465b4d19", "text": "\u8fde\u5e3d\u886b\u98d8\u52a8\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u5b83\u79fb\u52a8\u3002"} +{"id": "2002543", "video_name": "88a59895-1492-5f81-9447-f38dc0b0dc53", "text": "\u4e00\u4e2a\u60ca\u8273\u7684\u5ba2\u5385\u5185\u90e8\u56fe\u7247"} +{"id": "2002544", "video_name": "83ce09ed-2883-5fd2-83d6-4c6dd8dd3e9e", "text": "\u6210\u5343\u4e0a\u4e07\u7684\u5973\u5b69\u5728\u6c99\u6f20\u4e2d\u8fdb\u884c\u53f2\u8bd7\u7ea7\u7684\u6218\u6597\u3002"} +{"id": "2002545", "video_name": "d80ac60d-cbc1-516c-80db-4cc7f0da4ef9", "text": "\u5973\u5b69\u5728\u97f3\u4e50\u4e2d\u8df3\u821e\uff0c\u8ddf\u7740\u6b4c\u66f2\u7684\u8282\u594f\u3002"} +{"id": "2002546", "video_name": "c5dfff30-f521-5903-8e2a-638e268e3784", "text": "\u53c2\u4e0e\u8005\u5728\u5706\u684c\u4e0a\u8fdb\u884c\u5c0f\u800c\u7f13\u6162\u7684\u73af\u5f62\u79fb\u52a8\uff0c\u800c\u80cc\u666f\u4e2d\u7684\u767d\u8272\u6761\u7eb9\u4e0d\u65ad\u5411\u4e0a\u79fb\u52a8\u3002\u5176\u4ed6\u7684\u4fdd\u6301\u4e0d\u53d8\u3002"} +{"id": "2002547", "video_name": "00df3875-dc78-5c91-a6a8-945f220e426b", "text": "\u4e00\u4e2a\u72ee\u9e6b\u548c\u4e00\u53ea\u9f99\u5728\u6625\u5b63\u6253\u6597\uff0c\u6709\u4e9b\u96ea\u82b1\u98d8\u843d\u3002\n\nSource sentence: I am looking forward to spending time with my family during the holidays. \n\n"} +{"id": "2002548", "video_name": "70b6259d-9672-58cd-aaad-98965778c1da", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u7535\u8111\u4e0a\u6253\u5b57\uff0c\u5728\u53e6\u4e00\u4e2a\u673a\u5668\u4eba\u5236\u9020\u7684\u5de5\u5382\u91cc\u5de5\u4f5c\u3002"} +{"id": "2002549", "video_name": "b466afc9-8591-58bc-87d4-49ac92597c36", "text": "\u53cc\u624b\u5408\u5341\uff0c\u80cc\u666f\u53d1\u5149\uff0c\u5206\u5f00\u79fb\u52a8\uff0c\u8ddf\u968f\u7535\u5b50\u4e4b\u95f4\uff0c\u7535\u5f71\u822c\u7684\uff0c\u8fd0\u52a84\uff0c32fps\uff0c\u6697\u6de1\u7684\uff0c\u8d85\u73b0\u5b9e\u7684"} +{"id": "2002550", "video_name": "90f5dea7-1831-5ef8-9f2e-e15978a8c81f", "text": "\u65e5\u51fa\u7ebd\u7ea6\u57ce\u7684\u5ef6\u65f6\u6444\u5f71\u89c6\u9891"} +{"id": "2002551", "video_name": "662c2b2c-49e3-51d7-8b8e-15108379eacb", "text": "\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u5728\u7535\u5f71\u300a\u63a0\u593a\u8005\u300b\u4e2d\u5728\u4e1b\u6797\u91cc\u3002"} +{"id": "2002552", "video_name": "00aa787d-56e6-5b51-aeb8-0a91d06090a3", "text": "VHS\u76f8\u673a\u4e0a\u95ea\u70c1\u7684\u661f\u661f\u3002"} +{"id": "2002553", "video_name": "a2926f73-e35e-51e7-9014-05826eb46efd", "text": "\u4e00\u6bb5\u73b0\u5b9e\u7684\u65f6\u95f4\u52a0\u901f\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u74f6\u5b50\u5728\u5de5\u5382\u5185100\u5e74\u95f4\u7684\u8bbe\u8ba1\u53d8\u5316\u3002"} +{"id": "2002554", "video_name": "87185583-a353-580c-853d-60b12325755b", "text": "\u73b0\u4ee3\u4e16\u754c\u7684\u5feb\u901f\u6f14\u53d8\uff0c\u57ce\u5e02\u7684\u84ec\u52c3\u53d1\u5c55\u4ee5\u53ca\u57ce\u5e02\u5316\u548c\u4eba\u53e3\u589e\u957f\u7684\u60ca\u4eba\u7edf\u8ba1\u3002"} +{"id": "2002555", "video_name": "b1ad0f02-2e46-5c19-baa6-b7fa48bb02b9", "text": "\u4e00\u4e2a\u7537\u4eba\u53d8\u6210\u72fc\u4eba\u7684\u52a8\u6f2b\u573a\u666f\u3002"} +{"id": "2002556", "video_name": "e77c5686-7e41-5e7c-adb1-ea8b77a1b201", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u6b63\u5728\u52aa\u529b\u8fdb\u884c\u5065\u7f8e\u8bad\u7ec3\u3002\n\nSource sentence: She is studying Chinese language and culture at a university in Beijing. \n\n\u5979\u6b63\u5728\u5317\u4eac\u7684\u4e00\u6240\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u8bed"} +{"id": "2002557", "video_name": "3a7ba4d6-7774-5e97-b127-e05259ca6024", "text": "\u4e00\u4e2a\u7537\u5b69\u7ed9\u4e00\u4e2a\u7c7b\u4eba\u673a\u5668\u4eba\u7aef\u98df\u7269\u7684\u903c\u771f\u56fe\u50cf\u3002"} +{"id": "2002558", "video_name": "f0808c65-2da4-5da1-a27e-123686a55f59", "text": "\u5e2e\u6211\u5236\u4f5c\u4e00\u4e2a\u7531\u56db\u4e2a\u4eba\u4e3b\u6f14\u7684\u6709\u521b\u610f\u3001\u6709\u8da3\u3001\u6709\u8da3\u5473\u7684\u89c6\u9891\u3002"} +{"id": "2002559", "video_name": "9e9982be-25d4-5cdc-97e2-9b7369cecb14", "text": "\u76db\u5f00\u7684\u82b1\u6735\u3002\u5c4f\u5e55\u7f13\u6162\u62bd\u51fa\u3002"} +{"id": "2002560", "video_name": "a0835034-934b-5878-99e7-fc994a2616c7", "text": "\u5c06\u4e00\u5f20\u505c\u5728\u505c\u8f66\u573a\u6b63\u9762\u7684\u6c7d\u8f66\u56fe\u7247\u4fee\u6539\u4e3a\u767d\u8272\uff0c\u5e76\u52a0\u4e0a\u5c3e\u7ffc\u3002"} +{"id": "2002561", "video_name": "f1eeceed-e905-585b-b773-ab0471b61f4d", "text": "\u5e93\u7279\u5e03\u660e\u5854\u5728\u5fb7\u91cc\u9ad8\u8038\u5c79\u7acb\uff0c\u4ee5\u53ca\u5176\u5efa\u7b51\u7ec6\u8282\u3002"} +{"id": "2002562", "video_name": "a79b9abe-e127-5d94-8f02-f2389cc811f9", "text": "\u8272\u5f69\u6591\u6593\u7684\u8857\u9053\u7f13\u7f13\u6d88\u5931\uff0c\u4e00\u5bf9\u60c5\u4fa3\u5728\u9633\u53f0\u4e0a\u89c2\u770b\u7740\u3002"} +{"id": "2002563", "video_name": "e9009de1-76cd-5d96-b81a-bab4feb2c88b", "text": "\u707e\u96be\u6d77\u6d0b\u3001\u5efa\u7b51\u3001\u9ad8\u6e05\u3001\u6050\u6016\u3001\u6c34\u3001\u70df\u96fe\u768415\u5206\u949f\u9884\u544a\u7247\u30026:9\u6bd4\u4f8b\u3002"} +{"id": "2002564", "video_name": "4648f960-149d-541d-b765-d7eeada710b0", "text": "\u76ee\u5149\u6ce8\u89c6\u8fdc\u65b9\u3002\u7528\u5634\u5df4\u8bf4\u8bdd\u3002"} +{"id": "2002565", "video_name": "74115512-a3aa-5bea-9beb-f72e331cb9ac", "text": "\u6709\u5f88\u591a\u793c\u7269 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2002566", "video_name": "977ad529-eeaf-5968-8b3e-1daa8822f484", "text": "\u82cf\u8054\u4eba\u624b\u62c9\u624b\u8df3\u821e\uff0c1930\u5e74\u4ee3\u7684\u6444\u5f71\u98ce\u683c\u3002"} +{"id": "2002567", "video_name": "3ab36913-63ee-5a2d-9ff4-e2e674a18daa", "text": "\u4e00\u4f4d\u8eab\u7a7f\u7ea2\u8272\u8fde\u8863\u88d9\u7684\u5973\u58eb\u6b63\u5728\u6500\u767b\u4e00\u5ea7\u7eff\u8349\u5982\u8335\u7684\u5c71\u4e18\u3002"} +{"id": "2002568", "video_name": "c10e3fd3-8762-5274-bb6d-c45b3acc4f1b", "text": "\u5361\u901a\u98ce\u683c\u7684\u4e24\u4e2a\u4e2d\u56fd\u670b\u53cb\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "2002569", "video_name": "9a9c48d1-b596-5221-a68f-a8f7f48a9833", "text": "\u4e00\u4e2a\u5973\u5b69\u60c5\u7eea\u6fc0\u52a8\u5730\u5954\u8dd1\u3002 \n\nSource sentence: I am learning Chinese language and culture. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u8bed\u8a00\u548c\u6587\u5316\u3002"} +{"id": "2002570", "video_name": "24f2cf48-5c01-55fd-8f29-33859493a629", "text": "\u4e00\u4e2a\u5b69\u5b50\u53d8\u6210\u4e86\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u4eba\u3002"} +{"id": "2002571", "video_name": "805ae1cb-6b3a-56e4-a311-8fe3bd2ccade", "text": "\u7f8e\u4e3d\u71c3\u70e7\u7684\u8721\u70db\uff0c\u6e05\u6670\u9510\u5229\u7684\u56fe\u50cf\uff0c\u4f4e\u5149\u7ebf\uff0c\u7d2b\u8c03\u3002"} +{"id": "2002572", "video_name": "a0bd4a2e-c42f-514c-8bad-678d9f3f6dd5", "text": "\u5730\u72f1\u7684\u63cf\u7ed8\u30021980\u5e74\u4ee3\u7684\u7535\u5f71\u3002\u5370\u8c61\u4e3b\u4e49\uff0c\u9ad8\u6e05\uff0c24\u5e27\u3002"} +{"id": "2002573", "video_name": "600dd927-1f18-5991-8fbf-54944d574cfc", "text": "\u4e30\u5bcc\u591a\u5f69\u7684\u878d\u5408\u827a\u672f\uff0c\u8d85\u7ea7\u7ec6\u8282\uff0c\u5c61\u83b7\u6b8a\u8363\u3002"} +{"id": "2002574", "video_name": "af2ff34f-c3d3-5d9e-8e1b-9680e55e4be5", "text": "\u4f0a\u6717\u7a46\u7f55\u9ed8\u5fb7\u00b7\u91cc\u624e\u00b7\u5df4\u5217\u7ef4\u65f6\u671f\u7684\u56fd\u65d7\u4e0e\u4ee5\u8272\u5217\u56fd\u65d7\u5e76\u5217\u3002"} +{"id": "2002575", "video_name": "a0431988-8cff-5444-aced-eb0452e1d5cb", "text": "2Pac Shakur\u5750\u5728\u4e91\u6735\u4e0a\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "2002576", "video_name": "36fc6b9f-bedf-5745-bf58-99b8f56d4116", "text": "\u4e24\u4e2a\u670b\u53cb\u76f8\u4e92\u6ce8\u89c6\uff0c\u8c61\u5f81\u7740\u667a\u6167\u7684\u4f20\u9012\uff0c\u4ee3\u8868\u7740\u771f\u7406\u548c\u9053\u5fb7\u4ef7\u503c\u89c2\u3002"} +{"id": "2002577", "video_name": "78e9f07e-6faa-5933-92fa-6a89aaead454", "text": "\u63a5\u8fd1\u90a3\u53f0\u95f9\u9b3c\u7684\u53e4\u94a2\u7434\uff0c\u5b83\u7a81\u7136\u6d3b\u4e86\u8fc7\u6765\uff0c\u952e\u76d8\u81ea\u5df1\u6f14\u594f\u7740\u4ee4\u4eba\u6bdb\u9aa8"} +{"id": "2002578", "video_name": "e4a63f92-b390-560c-9b50-4d58585c530f", "text": "\u8d1d\u5409\u5854\u6307\u7740\u5c4f\u5e55\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "2002579", "video_name": "8c267e69-137a-5d61-a123-e70feaef1982", "text": "\u4e24\u4e2a\u5973\u4eba\u5728\u6805\u680f\u548c\u5e26\u95e8\u7684\u56f4\u680f\u533a\u57df\u524d\u6446\u59ff\u52bf\u62cd\u7167\uff0c\u98ce\u683c\u5982\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u7535\u5f71\u622a\u56fe\uff0c"} +{"id": "2002580", "video_name": "7814e69b-65ec-578b-baea-d7c6559a14de", "text": "s just received \n\n\u8bbe\u8ba1\u5e08\u60ca\u8bb6\u5730\u770b\u7740\u5979\u521a\u521a\u6536\u5230\u7684\u4e00\u4e9b\u8ba1\u5212\u3002"} +{"id": "2002581", "video_name": "cd7a8b13-a350-5fa5-844d-8dbf8aef068d", "text": "\u5728\u5370\u5ea6\u7684\u658b\u666e\u5c14\uff0c\u6bd4\u5c14\u62c9\u5bfa\u5e99\u4e5f\u79f0\u4e3a\u62c9\u514b\u4ec0\u7c73\u00b7\u7eb3\u62c9\u626c\u5bfa\u5e99\uff0c\u662f\u8be5\u57ce\u5e02\u91cd\u8981\u7684\u5b97\u6559\u548c"} +{"id": "2002582", "video_name": "ed71a596-ea0d-532d-be24-70252210c034", "text": "\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u5954\u8dd1\uff0c\u8863\u670d\u677e\u4e86\u4e0b\u6765\u3002"} +{"id": "2002583", "video_name": "dfaba2cc-cf8e-518d-a31c-1f4827f07343", "text": "\u6211\u9700\u8981\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u8d77\u91cd\u673a\u5c06\u4e0018\u7c73\u91cd\u7684\u8d27\u7269\u4ece\u4e0e\u5176\u5782\u76f4\u4f4d\u7f6e\u7684\u62d6\u8f66\u4e0a\u540a\u8d77\u3002\u573a\u666f\u4e2d\uff0c\u8d77\u91cd\u673a\u4f4d\u4e8e\u4e00\u6761\u9762\u671d"} +{"id": "2002584", "video_name": "7ae8901d-98bc-5c0b-8a9f-8d0a84ca8b9d", "text": "\u4e00\u4e2a\u4eba\u63d0\u7740\u4e00\u4e2a\u5f00\u7740\u76d6\u5b50\u7684\u79fb\u52a8\u7bb1\u3002"} +{"id": "2002585", "video_name": "79dd229d-df30-5193-b8ff-1e123160c001", "text": "\u4e00\u9053\u53d1\u7740\u7ea2\u5149\u7684\u901a\u5f80\u53e6\u4e00\u4e2a\u7ef4\u5ea6\u7684\u95e8\u6237\uff0c\u955c\u5934\u6655\u5f71\uff0c\u7535\u5f71\u611f\uff0c4k\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "2002586", "video_name": "fd4099ab-cede-557a-8fbb-c763a6729d0a", "text": "\u4e00\u652f\u8230\u961f\u7684\u98de\u8239\u5165\u4fb5\u5730\u7403\u3002"} +{"id": "2002587", "video_name": "836d901d-1ecc-5f3e-805e-8ea355fa455c", "text": "\u513f\u7ae5\u5173\u4e8e\u591a\u52a8\u75c7\u548c\u591a\u52a8\u75c7\u72b6\u7684\u6559\u80b2\u89c6\u9891"} +{"id": "2002588", "video_name": "3a09c525-5938-555a-9e8f-67a08f1ef762", "text": "1980\u5e74\uff0c\u5feb\u4e50\u7684\u5bb6\u5ead\u6253\u5f00\u793c\u7269\u3002"} +{"id": "2002589", "video_name": "2e0d7d32-16fa-5796-afa6-5413f64a81e6", "text": "\u57ce\u5e02\u563b\u54c8\u7537\u5b50\u7684\u8096\u50cf\u753b"} +{"id": "2002590", "video_name": "d98cb3a9-696c-5006-8aae-4895571600f8", "text": "\u4e09\u4e2a\u4eba\u7269\u8d70\u5411\u955c\u5934\uff0c\u5728\u65e5\u843d\u7684\u5730\u5e73\u7ebf\u4e0a\u6620\u51fa\u4e86\u526a\u5f71\u3002"} +{"id": "2002591", "video_name": "78a6ae3e-426a-576f-a347-9e0b24d6638b", "text": "\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u4f5c\u4e3a\u4e00\u540d\u6559\u5e08\uff0c\u5728\u4e00\u4e2a\u7a7a\u6559\u5ba4\u91cc\u53d1\u8868\u6fc0\u52b1\u6f14\u8bf4\u3002\u4fe1\u606f\uff1a1 "} +{"id": "2002592", "video_name": "ce7c64f9-1a1b-531d-97fb-5ca40254174b", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u7528\u7ea2\u8fa3\u6912\u5236\u6210\u7684\u8c03\u5473\u54c1\u5b57\u6837\uff0c\u7eff\u8272\u80cc\u666f\uff0c\u5b57\u6837\u4f4d\u4e8e\u4e2d\u592e\u3002"} +{"id": "2002593", "video_name": "f4af3abb-8af1-5cb6-82b5-dc72cbf8e21e", "text": "\u9ed1\u6697\u672a\u6765\u4e3b\u4e49\u516c\u5bd3\u4f4d\u4e8e\u5c71\u5761\u4e0a\uff0c\u6709\u5927\u73bb\u7483\u7a97\u6237\uff0c\u53ef\u4ee5\u6b23\u8d4f\u5230\u5c71\u4e0b\u57ce\u5e02\u7684\u60ca\u4eba\u5168\u666f\u3002\u591c\u665a\uff0c"} +{"id": "2002594", "video_name": "d450e395-dc90-5111-86e3-833441ee4753", "text": "\u6d46\u679c\u5728\u6c34\u6d41\u4e2d\u7f13\u6162\u5730\u6539\u53d8\u4f4d\u7f6e\u3002"} +{"id": "2002595", "video_name": "25e2f53b-b2b3-5dd2-a63f-209c62207208", "text": "\u7b2c\u4e00\u4eba\u79f0\u770b\u7740\u624b\u8155\u4e0a\u7684\u624b\u8868\u7684\u4eba\u3002"} +{"id": "2002596", "video_name": "bcfaffa2-ebcc-516d-959e-d5a8ece0ac6d", "text": "\u4e00\u4e2a\u97f3\u4e50\u4e50\u56e2\uff0c\u5728\u821e\u53f0\u4e0a\u6709\u4e00\u4f4d\u6307\u6325\u5bb6\uff0c\u628a\u4eba\u53d8\u6210\u6bd4\u8428\u997c\u3002"} +{"id": "2002597", "video_name": "2a2dfc3b-73ff-52c6-83d5-3ab9725d3309", "text": "\u98ce\u5439\u52a8\u7740\u7f8e\u4e3d\u68ee\u6797\u4e2d\u7684\u6811\u6728\uff0c\u5728\u6708\u5149\u4e0b\u6447\u66f3\u3002"} +{"id": "2002598", "video_name": "ec7bf65e-5764-544a-aa11-660c199c4abe", "text": "\u5c55\u793a\u4e24\u4f4d\u6148\u5584\u7684\u519c\u6c11\u6216\u4e3b\u4eba\u5728\u4e61\u6751\u8c37\u4ed3\u6216\u519c\u573a\u4e2d\u53cb\u597d\u5730\u63a5\u6536\u4e00\u888b\u7f8a\u6bdb\u3002"} +{"id": "2002599", "video_name": "878473e6-bba5-52f6-af94-9b973cc06ae9", "text": "\u4e00\u79cd\u6d41\u7545\u7684\u6545\u969c\u8fd0\u52a8\u56fe\u5f62\u89c6\u89c9\uff0c\u5411\u53f3\u65cb\u8f6c\uff0c\u4e0d\u771f\u5b9e\u76845\u3002"} +{"id": "2002600", "video_name": "b89b3bfe-768d-55f9-8e4e-ac8c19fbc855", "text": "\u73b0\u5b9e\u7684\u56fe\u50cf\uff0c\u6253\u5f00\u7684\u5723\u7ecf\u3002\u5e94\u8be5\u662f\u4e00\u672c\u539a\u539a\u7684\u4e66\uff0c\u4ece\u4e2d\u6563\u53d1\u7740\u5149\u8292\u3002"} +{"id": "2002601", "video_name": "e57668e1-a928-5703-8871-856630f647e2", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u6253\u67b6\uff0c\u8eab\u4f53\u5f88\u597d\uff0c\u8138\u5f88\u597d\u770b\uff0c\u5728\u6253\u67b6\u4e2d\u6301\u7eed\u4e861\u5206\u949f\u3002"} +{"id": "2002602", "video_name": "a0acaa5d-7424-5507-97a5-4db07cf99942", "text": "\u65e0\u8138\u5934\u5728\u9ec4\u8272\u80cc\u666f\u540e\u65cb\u8f6c"} +{"id": "2002603", "video_name": "d27a9682-381f-58e2-b809-bce01ed2e0c1", "text": "\u6050\u6016\u56fe\u7247 \u4fe1\u606f\uff1a\u4ef7\u683c (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2002604", "video_name": "b504e4ec-b492-5573-8531-c7f1327b1756", "text": "\u54c8\u5229\u00b7\u6ce2\u7279\u3001\u5947\u5f02\u535a\u58eb\u548c\u96f7\u795e\u7684\u7167\u7247\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002605", "video_name": "025b1ba8-c236-554b-95d1-0584c91db014", "text": "\u5728\u79d1\u5c14\u683c\u7684\u5854\u8fea\u5b89\u8fbe\u83ab\u5c14\uff0c\u4ee5\u96fe\u6c14\u7b3c\u7f69\u7684\u5c71\u9876\u4e3a\u80cc\u666f\uff0c\u62cd\u644410\u79d2\u7684\u65e0\u4eba\u673a\u822a\u62cd\u753b\u9762"} +{"id": "2002606", "video_name": "44906ae6-301d-59fe-824e-e23eef6a2c4b", "text": "\u5deb\u5e08\u7684\u623f\u95f4\uff0c\u5fae\u578b\u98ce\u683c\uff0c\u5730\u4e0b\u57ce\u4e0e\u9f99\u3002"} +{"id": "2002607", "video_name": "0eb3204f-c1be-5153-a061-db100eeb0bef", "text": "\u5973\u4eba\u6ce8\u89c6\u7740\u4e16\u754c\uff0c\u770b\u5230\u7a7a\u6c14\u4e2d\u7684\u8272\u5f69\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "2002608", "video_name": "3b49094a-9bd7-5a1d-a809-b1fd8e34c926", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u7537\u5b50\u88ab\u8feb\u8131\u978b\u6320\u811a\uff0c\u5e74\u8f7b\u7537\u5b50\u5927\u7b11\u4e0d\u505c\u3002\u89c6\u9891\u65f6\u957f\uff1a10\u5206\u949f\u3002"} +{"id": "2002609", "video_name": "bc29140c-ef27-53b4-82ea-0f9a3f3c40c8", "text": "\u57ce\u5e02\u94f6\u884c\u7684\u7167\u7247\u3002\u8d85\u903c\u771f\u7684\u7535\u5f71\u7ea74K\u3002"} +{"id": "2002610", "video_name": "f0e8e34a-303f-565d-b52b-ee206e83469f", "text": "\u867d\u7136\u672a\u6765\u9762\u4e34\u91cd\u5927\u6311\u6218\uff0c\u4f46\u4e5f\u6709\u79ef\u6781\u53d8\u9769\u548c\u521b\u65b0\u7684\u673a\u9047\u3002"} +{"id": "2002611", "video_name": "e1d97d1b-f88d-5a0f-bad3-50af5f9804fc", "text": "\u6234\u7740\u9762\u5177\u548c\u62ab\u7740\u6597\u7bf7\u7684\u8d85\u7ea7\u82f1\u96c4\u6765\u62ef\u6551\u5370\u5ea6\u8d2d\u623f\u8005\u3002"} +{"id": "2002612", "video_name": "d441517d-4e76-5b18-92a1-6ddd0f8d46f6", "text": "\u4e00\u4e2a\u5973\u5b69\u4e3a\u4e00\u7fa4\u6050\u9f99\u5f39\u5409\u4ed6\u3002\n\nSource sentence: I am learning Chinese so that I can talk to my grandparents. \n\n\u6211\u6b63\u5728\u5b66\u4e2d\u6587\uff0c\u8fd9\u6837\u6211\u5c31\u53ef\u4ee5\u548c\u6211\u7684\u7956"} +{"id": "2002613", "video_name": "d2f47641-16b3-576c-97c2-f91f8a9df3e6", "text": "1970\u5e74\u4ee3\u7684\u5b69\u5b50\u4eec\u6253\u626e\u6210\u51b7\u6218\u5c06\u519b\uff0c\u5728\u5ba2\u5385\u548c\u623f\u95f4\u91cc\u884c\u8fdb\u3002"} +{"id": "2002614", "video_name": "1abc3243-569e-52e0-88ef-09d26f60ec89", "text": "\u96e8\u63a2\u95ee\u7740\u4e07\u7269\u7684\u60b2\u4f24\u3002"} +{"id": "2002615", "video_name": "23d55482-804e-51cd-a51b-2dc73d31d4f2", "text": "\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u540e\u623f\u95f4\uff0c\u4e00\u6761\u9053\u8def\uff0c\u7535\u5f71\u5316\u7684\u67ef\u8fbe\u80f6\u7247\u3002"} +{"id": "2002616", "video_name": "71314f67-1cef-5e1b-a0b1-2dc188344958", "text": "\u563f\uff0c\u4e00\u628a\u5e26\u6709\u84dd\u8272\u548c\u9ed1\u8272\u706b\u7130\u7684\u5200\u5251\u5728\u7a7a\u4e2d\u98d8\u6d6e\u3002"} +{"id": "2002617", "video_name": "f0180731-b367-5872-a49a-6423c9e3f034", "text": "\u5728\u94f6\u6cb3\u7cfb3D\u98ce\u683c\u7684\u623f\u95f4\u7a7a\u95f4\u4e2d\u79fb\u52a8\u76f8\u673a\u3002"} +{"id": "2002618", "video_name": "f13acd51-4563-5877-a73d-ef4dcff900bf", "text": "\u6211\u8bd5\u56fe\u91ca\u653e\u6211\u8111\u4e2d\u7684\u4efb\u4f55\u538b\u529b\uff0c\u4f1a\u4e00\u904d\u4e00\u904d\u5730\u91cd\u590d\uff0c\u8ba9\u5927\u5bb6\u4e60\u60ef\u6211\u3002\u8d85\u73b0\u5b9e\u768490\u5e74\u4ee3\u3002"} +{"id": "2002619", "video_name": "5a659200-8b63-5007-80d6-619c9ef7c412", "text": "\u751f\u6210\u4e00\u5f20\u5145\u6ee1\u52a8\u611f\u7684\u56fe\u50cf\uff0c\u53cd\u6620\u51fa\u77ed\u8bed\u201c\u8d26\u53f7\u3001\u9875\u7801\u3001\u53f7\u7801\u5217\u8868\u3001\u7b49\u5f85\u53f7\u7801\u201d\u7684\u542b\u4e49\u3002"} +{"id": "2002620", "video_name": "7f558409-5743-5420-a96c-8b21df70969f", "text": "\u4e00\u5ea7\u98ce\u666f\u5982\u753b\u7684\u6d77\u6ee8\u5c0f\u9547\uff0c\u6709\u4e00\u5bb6\u5361\u901a\u98ce\u683c\u7684\u53e4\u96c5\u4e66\u5e97\u3002"} +{"id": "2002621", "video_name": "57331ac9-6e58-5fcf-b6ef-a88b6b7e5e3f", "text": "\u5723\u5730\u4f0a\u739b\u76ee\u4faf\u8d5b\u56e0\u00b7\u5361\u5c14\u5df4\u62c9"} +{"id": "2002622", "video_name": "aa36be9d-2481-5586-a00a-285babff697f", "text": "\u5c55\u793a\u60a8\u5496\u5561\u5e97\u548c\u70d8\u7119\u5e97\u7684\u666f\u8c61\uff0c\u5c55\u73b0\u6e29\u99a8\u7684\u6c1b\u56f4\u3002"} +{"id": "2002623", "video_name": "50644a80-fb35-54c3-a04f-82ac57b50c11", "text": "\u72d7\u53d8\u8eab\u6210\u8d85\u7ea7\u82f1\u96c4\u3002\u6444\u50cf\u673a\u5feb\u901f\u62c9\u8fdc\u3002"} +{"id": "2002624", "video_name": "15b7243d-3cbb-590f-8d88-0744ce39ad69", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u6b63\u5728\u63a5\u53d7\u8db3\u90e8\u6309\u6469\u3002"} +{"id": "2002625", "video_name": "422ac28d-6f3f-57bb-98ba-ed3daf598550", "text": "\u4e00\u53ea\u6770\u514b\u7f57\u7d20\u8de8\u5750\u5728\u4e00\u53ea\u5927\u8c61\u4e0a\u3002"} +{"id": "2002626", "video_name": "85c71040-b51b-5f02-90f2-a5c8e39aca58", "text": "\u5947\u602a\u3001\u8ff7\u5e7b\u3001\u8d85\u73b0\u5b9e\uff0c\u4e00\u4e2a\u5de8\u5927\u7684\u5723\u8bde\u8001\u4eba\u4e0e\u54e5\u65af\u62c9\u6218\u6597\u3002"} +{"id": "2002627", "video_name": "d339ae10-08e7-596b-b169-7962bf50685f", "text": "\u4ed6\u662f\u4e00\u4f4d\u4e94\u5341\u591a\u5c81\u7684\u53e4\u602a\u5185\u5411\u79d1\u5b66\u5bb6\uff0c\u5728\u4ed6\u5806\u6ee1\u4e86\u5404\u79cd\u5c0f\u53d1\u660e\u548c\u539f\u578b\u7684\u6742\u4e71\u5de5\u4f5c\u5ba4\u91cc\u8f9b\u52e4\u5de5\u4f5c"} +{"id": "2002628", "video_name": "b7b526be-527a-5cae-b9bf-cc5541ad87ce", "text": "\u4e00\u4f4d\u957f\u53d1\u7684\u5e74\u8f7b\u5973\u5b50\u7a7f\u7740\u7eff\u8272\u8fde\u8863\u88d9\u5750\u5728\u6ee1\u6708\u7bdd\u706b\u5f15\u5bfc\u5904\u3002"} +{"id": "2002629", "video_name": "5d9f06aa-4914-5851-9b20-e3120ab49285", "text": "\u6726\u80e7\u7684\u96ea\u82b1\u98d8\u843d\uff0c\u4e00\u53ea\u732b\u7ad6\u8d77\u4e86\u5b83\u7684\u6bdb\u3002"} +{"id": "2002630", "video_name": "fdc5ffb4-201e-5781-aeed-d2cc197c1eb1", "text": "\u4e00\u4e2a\u6709\u7740\u5927\u773c\u775b\u7684\u597d\u5947\u888b\u718a\uff0c\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u4ece\u7f8e\u4e3d\u7684\u7eff\u8272\u68d5\u6988\u6811\u53f6\u4e2d\u94bb"} +{"id": "2002631", "video_name": "93123739-7367-5429-a1ea-59962856a7cc", "text": "\u51e0\u4e2a\u7531\u7ea2\u8272\u7eb8\u724c\u5236\u6210\u7684\u536b\u5175\u5728\u4ed9\u5883\u91cc\u6f2b\u6b65\u3002"} +{"id": "2002632", "video_name": "fa72af8d-7c84-58e3-a551-740f86dbbafb", "text": "\u6bcf\u4e00\u4e2a\u90fd\u94fe\u63a5\u5230\u4e00\u4e2a\u7279\u5b9a\u7684\u661f\u7cfb\u79cd\u65cf\u3002"} +{"id": "2002633", "video_name": "10ebf603-ea18-56ff-a40b-38eb0dba5b33", "text": "\u5361\u897f\u7ef4\u4ec0\u74e6\u7eb3\u7279\u5bfa\u5e99\u5916\u7684\u4eba\u4eec\uff0c4k\u5206\u8fa8\u7387\uff0c\u5929\u7a7a\u5e94\u8be5\u662f\u84dd\u8272\uff0c\u89c6\u9891\u8981\u5168\u9762\u8be6\u7ec6\u3002"} +{"id": "2002634", "video_name": "d9fc2ddc-d828-5bf2-b412-13545649cb86", "text": "\u4ed6\u6d88\u9664\u4ec7\u6068\uff0c\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "2002635", "video_name": "04c201c0-9f35-5427-adc7-47341dda4074", "text": "\u5728\u7a7a\u4e2d\u62cd\u6444\u768435\u6beb\u7c73\u7535\u5f71\u955c\u5934\u9759\u6b62\u753b\u9762\uff0c\u8036\u7a23\u8dd1\u5411\u60ac\u5d16\u51c6\u5907\u8df3\u5165\u6c34\u4e2d\uff0c\u80cc\u90e8\u89c6\u89d2\u3002"} +{"id": "2002636", "video_name": "71467727-5467-5f94-b5d1-6d4a0fa78041", "text": "\u5e74\u8f7b\u7684\u963f\u514b\u5df4\u5c14\u5230\u8fbe\u6751\u5e84\u3002"} +{"id": "2002637", "video_name": "ba06f221-b1fb-50d3-bf0c-863615837c8e", "text": "\u53e4\u4ee3\u6218\u58eb\u7684\u5927\u519b\u5728\u53e4\u57ce\u524d\u7684\u5f00\u9614\u573a\u5730\u4e0a\uff0c\u5448\u73b0\u51fa\u5168\u666f\u3002"} +{"id": "2002638", "video_name": "94b1c1ca-ad96-5fb7-987f-723304ec571e", "text": "\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u7f8e\u4e3d\u524d\u95e8\uff0c\u4e00\u53ea\u9e21\u501a\u5728\u95e8\u4e0a\uff0c\u5e26\u7740\u4e00\u6735\u5927\u7ea2\u82b1\uff0c4k 16:9\u3002"} +{"id": "2002639", "video_name": "414b023f-3445-5fdc-b3ec-f59a081fc8ef", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u9ed1\u767d\u5c0f\u732b\u54aa\u5728\u73a9\u800d\uff0c\u76ae\u514b\u65af\u5de5\u4f5c\u5ba4\u52a8\u753b\uff0c4K\u3002"} +{"id": "2002640", "video_name": "ea55e202-b778-57b8-a9c4-b98051befcbd", "text": "\u4e00\u4f4d\u6709\u5f69\u8272\u5934\u53d1\u7684\u5361\u901a\u5973\u5b69"} +{"id": "2002641", "video_name": "c9d40078-2932-55ac-91be-bcccf0c28f1b", "text": "\u4e24\u53ea\u624b\u5728\u9ad8\u4e2d\u8d70\u5eca\u7684\u4e24\u7aef\u8bd5\u56fe\u63a5\u89e6\uff0c\u6d6a\u6f2b\u4e3b\u4e49\u3002"} +{"id": "2002642", "video_name": "4089b555-033f-5ab4-a4f9-11be4c1f4d07", "text": "\u4ece\u84dd\u5929\u4e91\u5c42\u4e2d\u5760\u843d\u7684\u5c0f\u884c\u661f\u7684\u52a8\u6f2b\u7f8e\u5b66\u89c6\u9891\uff0c\u4ee4\u4eba\u611f\u5230\u5e73\u9759\u7684\u5fc3\u60c5\u3002"} +{"id": "2002643", "video_name": "517cc6ae-2ca2-5521-828d-977516b121ca", "text": "\u98ce, \u5916\u5957\u98d8\u52a8,\u9ad8\u5e27\u901f\u3002"} +{"id": "2002644", "video_name": "a9c775e5-ede6-5cdd-b0aa-505f52951fd2", "text": "\u4e00\u4e2a\u4e9a\u6d32\u8001\u677f\u5728\u865a\u62df\u4e16\u754c\u4e0e\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u9762\u5bf9\u9762\u3002"} +{"id": "2002645", "video_name": "2c64a064-2ba6-50f8-bc0a-551c408fb1c7", "text": "\u4e91\u6735\u5728\u98d8\u52a8\uff0c\u6cf0\u8fea\u718a\u5f00\u5fc3\u5730\u5fae\u7b11\u7740\u3002"} +{"id": "2002646", "video_name": "25afe3da-a013-5913-9c0a-a4ba13413619", "text": "\u4e00\u7247\u5145\u6ee1\u751f\u673a\u7684\u9752\u7eff\u8349\u5730\u6c90\u6d74\u5728\u6e29\u6696\u7684\u9633\u5149\u4e2d\u3002\u5c0f\u5c0f\u7684\u91ce\u82b1\u94fa\u6ee1\u5730\u9762\uff0c\u871c"} +{"id": "2002647", "video_name": "6f02b879-1e42-5fac-a36d-b5b71ae0d5ea", "text": "\u6708\u4eae\u548c\u592a\u9633\u4ea4\u6362\u4f4d\u7f6e\u3002"} +{"id": "2002648", "video_name": "b810558c-a078-5fe4-8adf-ef17194bd6d2", "text": "\u5973\u5b69\u6b63\u5728\u5411\u540e\u79fb\u52a8\uff0c\u591c\u7a7a\u4e2d\u70df\u82b1\u7206\u70b8\u3002"} +{"id": "2002649", "video_name": "138a4b94-3c02-5268-a497-b8f751ed148e", "text": "\u7236\u6bcd\u5728\u6325\u624b\u5411\u4e00\u4e2a\u7a7f\u7740\u5168\u7c89\u8272\u8863\u670d\u3001\u5934\u53d1\u3001\u978b\u5b50\u548c\u5305\u7684\u5973\u5b69\u3002"} +{"id": "2002650", "video_name": "0d06e566-b8fc-5f0f-8628-7f9f5e3f4fa3", "text": "\u673a\u7532\u6218\u58eb\u5728\u52a8\u753b\u7cfb\u5217\u4e2d\u3002"} +{"id": "2002651", "video_name": "947e39ef-84b8-5f13-bb4c-3857b07394e8", "text": "\u4e00\u4e2a\u6ca1\u6709\u7a97\u6237\u7684\u9ed1\u6697\u623f\u95f4\u91cc\u6709\u4e00\u53f0\u53e4\u8463\u7535\u89c6\uff0c\u5b83\u4f1a\u5f00\u542f\u548c\u5173\u95ed\u5e76\u4e14\u5728\u65cb\u8f6c\u7684\u7535\u89c6\u91cc\u5c55\u793a\u626d\u66f2\u7684\u753b"} +{"id": "2002652", "video_name": "f8c9b4db-218b-5db0-8323-c49ed0fbc548", "text": "\u8bf7\u5728\u56fe\u7247\u4e2d\u7ed9\u7eff\u8272\u690d\u7269\u548c\u732b\u4e00\u70b9\u52a8\u6001\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002653", "video_name": "fc29d5d0-fc23-5a5d-9115-560542649f84", "text": "\u5973\u6027\u65b0\u95fb\u4e3b\u64ad\u9700\u6ce8\u610f\u5f97\u4f53\u4eea\u5bb9\u3002"} +{"id": "2002654", "video_name": "d7c49cbe-78d3-5c8f-87b6-fd66e0f41ece", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u9a7e\u9a76\u4e00\u8f861976\u5e74\u7684\u6697\u7ea2\u8272\u5965\u65af\u83ab\u6bd4\u5c1498\u6b3e\u3002"} +{"id": "2002655", "video_name": "f670af8e-6fb8-59a2-8e06-6d2480bb594f", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u7a7f\u7740\u5723\u8bde\u5c0f\u7cbe\u7075\u670d\u8df3\u821e\u3002"} +{"id": "2002656", "video_name": "5cad64f0-947f-5e80-96e0-ce4dafdfd0ec", "text": "\u4e00\u53ea\u9ed1\u8272\u62c9\u5e03\u62c9\u591a\u548c\u4e00\u53ea\u7070\u8272\u632a\u5a01\u68ee\u6797\u732b\u5728\u540e\u9662\u7684\u8349\u576a\u4e0a\u73a9\u800d\u3002"} +{"id": "2002657", "video_name": "bd83eb09-4a34-5ef3-8784-acdfd8522307", "text": "\u4e00\u4f4d\u7a7f\u7740\u897f\u88c5\u7684\u7537\u5b50\u5c55\u793a\u4e86\u4e00\u5806\u949e\u7968\u3002"} +{"id": "2002658", "video_name": "6f5d32e7-9328-56d4-9148-cd94b455e1a1", "text": "\u60a8\u53ef\u4ee5\u521b\u5efa\u4e00\u4e2a\u771f\u5b9e\u9ad8\u8d28\u91cf\u7684\u573a\u666f\uff0c\u4ece\u65e0\u4eba\u673a\u4e0a\u65b9\u62cd\u6444\u9ed1\u8272\u51ef\u8fea\u62c9\u514bCTS V\u5728\u57ce\u5e02\u8857\u9053\u62d0\u89d2\u5904\u9ad8\u901f\u65cb\u8f6c"} +{"id": "2002659", "video_name": "82a33104-0edf-5d99-ac8a-596aa106736d", "text": "\u4e00\u53ea\u5feb\u4e50\u3001\u7cbe\u529b\u5145\u6c9b\u7684\u677e\u9f20\u4ece\u7535\u6e90\u8df3\u5230\u8302\u5bc6\u7684\u7eff\u8272\u68ee\u6797\uff0c\u80cc\u666f\u4e2d\u4e00\u53ea\u5e73\u9759\u7684\u9f9f"} +{"id": "2002660", "video_name": "758e2792-87b8-5abc-856b-c04126d86ed9", "text": "\u7f8e\u4e3d\u7684\u5973\u5b50\u7559\u7740\u98d8\u9038\u7684\u957f\u53d1\uff0c\u5728\u98de\u6e85\u7684\u6d77\u6d6a\u4e2d\u6446\u59ff\u52bf\u3002"} +{"id": "2002661", "video_name": "54f9db1f-a472-5d6d-b2c4-16a91ee340e8", "text": "\u5b66\u751f\u5b69\u5b50\u4eec\u5728\u7535\u8111\u4e0a\u7814\u7a76\u65f6\u8bb0\u7b14\u8bb0\u3002"} +{"id": "2002662", "video_name": "b26e0726-bbe0-58b3-8140-e076e393e53d", "text": "\u4e00\u540d\u7537\u6027\u5929\u4f7f\uff0c\u8138\u4e0a\u8986\u76d6\u7740\u95ea\u8000\u76844K\u5149\u8292\u3002"} +{"id": "2002663", "video_name": "cbb75985-5235-5086-bf6c-8d5e394524a2", "text": "\u4e00\u90e81930\u5e74\u4ee3\u8fea\u58eb\u5c3c\u98ce\u683c\u76843D\u9ed1\u767d\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u4e00\u8f86\u6c7d\u8f66\u6cbf\u7740\u8def\u884c\u9a76\u7684\u573a\u666f\u3002"} +{"id": "2002664", "video_name": "0152f712-5235-55cb-8d62-07259800a17a", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u4e00\u5806\u94b1\u4e0a\uff0c\u5230\u5904\u90fd\u662f\u94b1\uff0c\u5bcc\u6709\u7684\u4eba\u3002"} +{"id": "2002665", "video_name": "9c801c31-9e0b-5560-b31e-ea1636f6b690", "text": "\u751f\u6210\u4e00\u5f20\u8ff7\u4eba\u7684\u56fe\u50cf\uff0c\u63cf\u7ed8\u4e00\u4e2a\u8302\u76db\u800c\u5145\u6ee1\u751f\u673a\u7684\u5357\u74dc\u7530\uff0c\u751f\u957f\u5728\u795e\u79d8\u800c\u5e7b\u60f3\u7684\u6d1e"} +{"id": "2002666", "video_name": "6425bd39-ca4d-578b-9689-9fe6a5222235", "text": "\u4e00\u4e2a\u6709\u51e0\u53ea\u52a8\u7269\u7684\u623f\u5b50\uff0c\u5e26\u7740\u5c4f\u5e55\u79fb\u5f00\uff0c\u7f8e\u4e3d\u7684\u9633\u5149\u5c04\u8fdb\u6765\u4e86\uff01"} +{"id": "2002667", "video_name": "196263f2-7aad-54ed-ad1e-8af9d50d85dd", "text": "\u5988\u5988\u544a\u8bc9\u513f\u5b50\u4e0d\u8981\u79bb\u5f00\u623f\u5b50\u3002"} +{"id": "2002668", "video_name": "0696e1d6-f3a4-5aaf-9c68-18a620d901a3", "text": "\u7ef4\u4eac\u4eba\u5728\u6218\u4e89\u4e2d\u7684\u89c6\u9891\uff0c\u4ed6\u4eec\u7684\u8138\u90e8\u6e05\u6670\u53ef\u89c1\u3002"} +{"id": "2002669", "video_name": "fbc6a5a7-8452-5407-ba00-d14224b71f0d", "text": "3D\u98ce\u683c\u5316\u7684\u5c0f\u6e38\u620f\u5efa\u7b51\u5e93\uff0c\u7ec6\u8282\u590d\u6742\uff0c\u7535\u5f71\u5316\uff0cOctane\u6e32\u67d3\u3002"} +{"id": "2002670", "video_name": "2bd337f4-07b1-5185-bb63-096d5bed7e78", "text": "3D\u5361\u901a\u5973\u6027\u89d2\u8272\u8df3HIPHOP\u821e\u3002"} +{"id": "2002671", "video_name": "0f8d9693-0181-5acc-bdd0-4d3216ebd4d5", "text": "\u8fd9\u4e24\u4e2a\u670b\u53cb\u73b0\u5728\u5e74\u7eaa\u8f83\u5927\uff0c\u5750\u5728\u540c\u4e00\u4e2a\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u524d\uff0c\u8272\u5f69\u9c9c\u8273\u3001\u5145\u6ee1\u751f\u673a\u3002"} +{"id": "2002672", "video_name": "4f6728f4-bcea-5954-a376-8a2ddb63dd14", "text": "\u7a7f\u7740\u4f20\u7edf\u670d\u88c5\u7684\u5370\u5ea6\u5973\u5b69\u4ece\u5170\u535a\u57fa\u5c3c\u8f66\u91cc\u4e0b\u6765\u3002"} +{"id": "2002673", "video_name": "87b1a034-88ee-59ec-b06e-8cf9881c4194", "text": "\u7531\u65b0\u5e74\u73a9\u5177\u5236\u6210\u7684\u6bdb\u8338\u8338\u7f8a\u6bdb\u9488\u7ec7\u9762\u6599\u3002\u4fe1\u606f\uff1aZEFI\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2002674", "video_name": "9563c484-5cc2-5840-b402-cdd23c1dc234", "text": "\u5982\u679c\u4eba\u5de5\u667a\u80fd\u662f\u4e00\u4e2a\u5b9e\u4f53\u751f\u7269"} +{"id": "2002675", "video_name": "74e59c57-20bc-5a98-ae4f-1f256a2800df", "text": "\u4e00\u4f4d\u5370\u5ea6\u5973\u5b69\u6cbf\u7740\u6d77\u5cb8\u6563\u6b65\uff0c\u6536\u96c6\u6d77\u8d1d\u58f3\u3002"} +{"id": "2002676", "video_name": "5dcaf954-d072-5f31-a368-530088590549", "text": "\u4e1c\u4eac\u6f02\u79fb\u5728\u6c99\u6f20\u516c\u8def\u4e0a\u7684\u8d5b\u8f66\u573a\u666f"} +{"id": "2002677", "video_name": "db5820ee-a110-5fb3-a320-10c7dbad4efe", "text": "\u5965\u666e\u8482\u739b\u65af\u53d8\u5f62\u6210\u5361\u8f66\u3002"} +{"id": "2002678", "video_name": "8b78ac59-211f-5e48-828b-ef3a61dabb33", "text": "\u539f\u53e5\uff1a\u7a74\u5c45\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\n\nTranslation: \u7a74\u5c45\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c\u5177\u6709\u7535\u5f71"} +{"id": "2002679", "video_name": "117e8d79-e96d-5047-9e05-ef47db73d63b", "text": "\u5929\u7a7a\uff0c\u6709\u7740\u84ec\u677e\u7684\u767d\u4e91\u548c\u751f\u52a8\u7684\u65e5\u843d\uff0c\u91c7\u7528\u5370\u8c61\u6d3e\u98ce\u683c\uff0c\u6355\u6349\u5149\u4e0e\u8272\u7684\u53d8\u5316\uff0c\u4f7f\u7528"} +{"id": "2002680", "video_name": "051b5116-14b5-5cb7-8d40-aca2d814373c", "text": "\u68ee\u6797\u548c\u77f3\u5934\u751f\u7269\u7684\u519b\u961f"} +{"id": "2002681", "video_name": "bdb553b5-2c50-569f-b182-a80c61c8e78f", "text": "\u5c0f\u77ee\u4eba\u5728\u9c9c\u82b1\u7530\u91cc\u8df3\u821e\uff0c\u624b\u62ff\u5564\u9152\uff0c\u8bf4\u7740\u201c\u6211\u7231\u4f60\u201d\u3002"} +{"id": "2002682", "video_name": "dc4c6a00-da55-51cc-840f-28031df5c507", "text": "\u519c\u6c11\u3001\u6751\u6c11\u548c\u5987\u5973\u4eec\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u770b\u8d77\u6765\u975e\u5e38\u9707\u60ca\u3002"} +{"id": "2002683", "video_name": "06b65a72-09fe-5dac-b798-f0030601c756", "text": "\u7a74\u5c45\u4eba\u8fdb\u884c\u534f\u540c\u72e9\u730e\uff0c\u5c55\u73b0\u4e86\u751f\u5b58\u7684\u6597\u4e89\u3002"} +{"id": "2002684", "video_name": "f5bba4c5-c623-5e98-a62e-cdd6031b46bf", "text": "\u751f\u6210\u4e00\u4e2a\u60ca\u4eba\u7684\u519c\u573a\u98ce\u666f\u76848K\u56fe\u50cf\u3002\u60f3\u8c61\u50f5\u5c38\u6b63\u5728\u5403\u725b\uff0c\u6355\u6349\u5bb3\u6015\u7684\u725b\u7684\u672c\u8d28\u3002"} +{"id": "2002685", "video_name": "cf14fb5f-1969-5ac9-a53e-701b5a7b82ce", "text": "\u624b\u673a\u5c4f\u5e55\u9010\u6e10\u7834\u88c2\u3002"} +{"id": "2002686", "video_name": "f4f911f8-7675-5284-8873-c5e940348801", "text": "\u90a3\u4e2a\u665a\u4e0a\uff0c\u90a3\u4e2a\u7537\u4eba\u5e26\u7740\u4e00\u961f\u4eba\u6765\u4e86\uff0c\u4ed6\u4eec\u70b9\u7740\u8721\u70db\uff0c\u90a3\u4e2a\u7537\u4eba\u575a\u6301\u8ba9\u5973\u4eba\u4e0b\u6765\uff0c"} +{"id": "2002687", "video_name": "f039ccd0-42c4-5bca-93b7-933e554986a4", "text": "\u6500\u767b\u8005\u6500\u767b\u81f3\u5c71\u9876\u7684\u822a\u62cd\u7167\u7247"} +{"id": "2002688", "video_name": "667229de-fed0-5e58-ab8e-e3fb0396a92f", "text": "\u7ef4\u591a\u5229\u4e9a\u7684\u79d8\u5bc6\u6a21\u7279\u7684\u4f18\u96c5\u7cbe\u81f4\u7684\u9762\u5bb9\uff0c\u66fc\u5fb7\u535a\u96c6\u5408\uff0c\u7b97\u6cd5\u827a\u672f\uff0cLSD\u4e4b\u65c5\uff0c\u656c\u754f\uff0c"} +{"id": "2002689", "video_name": "4fa52a4c-16f6-5011-822b-9abb02ae87dd", "text": "\u63cf\u8ff0\u60c5\u51b5\uff1a\u5728\u6bd4\u8d5b\u623f\u95f4\u91cc\u67093\u5f20\u684c\u5b50\uff0c\u6bcf\u5f20\u684c\u5b50\u4e0a\u90fd\u5750\u77403\u540d\u5feb\u901f\u800c\u51c6\u786e\u7684\u7ade\u8d5b\u53c2\u8d5b\u8005\uff0c\u5728"} +{"id": "2002690", "video_name": "669ed1f6-1d9f-5b21-aaf5-2bb6b281c953", "text": "\u4ed6\u4eec\u62c5\u5fc3\u5979\u65e5\u76ca\u8001\u53bb\u7684\u8138\u3002"} +{"id": "2002691", "video_name": "12e266bd-6b10-5907-935b-d2381f514e8c", "text": "3D\u57ce\u58214K 16:9\u9634\u6697\u80cc\u666f\uff0c\u5305\u62ec\u98de\u9f99\u548c\u9f99\u98de\u884c\u7684\u5feb\u901f\u52a8\u4f5c\u3002 \n\n\uff08Note: the translation is based on the assumption"} +{"id": "2002692", "video_name": "a86c5ad1-47f1-5da0-b0f5-fb4a84fbf90b", "text": "\u5973\u4eba\u57284k\u9ad8\u901f\u516c\u8def\u4e0a\u9a7e\u9a76\u62d6\u62c9\u673a\u91c7\u96c6\u82b1\u6735\u3002"} +{"id": "2002693", "video_name": "370acb3f-4196-578e-a296-aae7037e4827", "text": "\u5bb6\u4eba\u56e2\u805a\u5171\u5ea6\u6b22\u4e50\u5723\u8bde\u8282\u3002"} +{"id": "2002694", "video_name": "64a8b834-566e-50ad-842f-84f0013cd2da", "text": "\u6811\u548c\u82b1\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u732b\u8737\u7f29\u6210\u4e00\u56e2\uff0c\u95ed\u4e0a\u773c\u775b\u7761\u7740\u4e86\u3002"} +{"id": "2002695", "video_name": "55ae15cf-640b-59ab-a6d4-605061d4d4f6", "text": "\u4e00\u4e9b\u53c2\u8bae\u5458\u6d3b\u52a8\u7684\u7f57\u9a6c\u53c2\u8bae\u9662\uff0c\u4ee5\u53ca\u7528\u4e8e\u8272\u5ea6\u952e\u7684\u80cc\u666f\u3002"} +{"id": "2002696", "video_name": "19e2255c-5da4-578d-a077-91c7e6259e5d", "text": "\u75b2\u60eb\u7684\u7267\u7f8a\u4eba\u6b65\u884c\u7684\u7535\u5f71\u89c6\u9891"} +{"id": "2002697", "video_name": "4c940da3-0e66-56fe-9322-7c11eca188f5", "text": "\u8fdc\u5904\u4e00\u53ea\u5de8\u5927\u900f\u660e\u7684\u7ae0\u9c7c\u5916\u661f\u4eba\u5411\u5b87\u5b99\u98de\u8239\u9760\u8fd1\u3002"} +{"id": "2002698", "video_name": "a7c2b800-5e9c-52ec-ab0d-3835a3d4ad5c", "text": "\u5df4\u62ff\u9a6c\u7684\u9000\u4f11\u793e\u533a\u4f4d\u4e8e\u70ed\u5e26\u5c71\u533a\u4e1b\u6797\uff0c\u4fef\u77b0\u52a0\u52d2\u6bd4\u6d77\u3002"} +{"id": "2002699", "video_name": "437334f7-cf12-5909-ba76-c9ca5667653d", "text": "\u8303\u4ef2\u6df9\uff08989\u5e749\u67085\u65e5-1052\u5e746\u670819\u65e5\uff09\uff0c\u5b57\u5e0c\u6587\uff0c\u662f\u4e2d\u56fd\u5b8b\u4ee3\u7684\u519b\u4e8b\u6218\u7565\u5bb6\u3001\u54f2\u5b66\u5bb6\u3001\u8bd7\u4eba\u548c"} +{"id": "2002700", "video_name": "dbecc418-883c-51a1-8d85-ae3a609d3f21", "text": "\u60f3\u8c61\u4e00\u90e8\u7eed\u96c6\uff0c\u91cc\u5965\u548c\u4ed6\u7684\u670b\u53cb\u4eec\u5728\u5362\u7c73\u7eb3\u62c9\u5f00\u59cb\u53e6\u4e00\u6b21\u5192\u9669\u3002\u4ed6\u4eec\u5c06\u9762\u4e34\u4ec0\u4e48\u65b0\u7684\u6311"} +{"id": "2002701", "video_name": "7ebcae51-c025-52d0-90b3-70db7c9cd562", "text": "\u9752\u5c11\u5e74\u7a74\u5c45\u4eba\u624b\u6301\u4e00\u4ef6\u7f8e\u4e3d\u7684\u53e4\u4ee3\u5ca9\u77f3\u87ba\u65cb\u96d5\u523b\u3002"} +{"id": "2002702", "video_name": "132befe8-2224-53de-9a13-1be4756972cd", "text": "\u5979\u4ecd\u7136\u5728\u5979\u7684\u60f3\u8c61\u4e2d\u62e5\u6709\u8bb8\u591a\u5192\u9669\uff0c3D\u5361\u901a\u3002"} +{"id": "2002703", "video_name": "ecc0d742-0321-5e82-afd1-4f9f81788a1b", "text": "\u53ef\u7231\u7684\u4e1c\u65b9\u9f99\u7684\u773c\u775b\u548c\u5634\u5df4\u5728\u52a8\u3002"} +{"id": "2002704", "video_name": "dc9c3d70-410b-5581-bad2-40269caaec1a", "text": "\u5979\u5206\u4eab\u4e86\u5979\u8fc7\u53bb\u7684\u6545\u4e8b\uff0c\u8bb2\u8ff0\u4e86\u5979\u66fe\u88ab\u73b0\u5728\u652f\u914d\u5979\u751f\u6d3b\u7684\u90a3\u4e2a\u6c34\u679c\u6240\u7f20\u7ed5\u7684\u7ecf\u5386\u3002"} +{"id": "2002705", "video_name": "142eb6fc-efd9-5585-9ba1-d332c4fa747b", "text": "\u4e00\u676f\u5496\u5561\uff0c\u6d41\u52a8\u7684\u5f62\u72b6\uff0c\u7a7a\u6c14\u4e2d\u7684\u6f02\u6d6e\u7c89\u5c18\u548c\u70df\u96fe\u5f62\u72b6\uff0c\u522e\u98ce\uff0c\u66b4\u98ce\u96e8"} +{"id": "2002706", "video_name": "eba3251d-be16-5cc1-9ccb-308be9e0a014", "text": "\u4e9a\u5386\u514b\u65af\u00b7\u743c\u65af\u5728\u673a\u573a\u559d\u54b3\u55fd\u836f\u6c34\u3002"} +{"id": "2002707", "video_name": "aef22e6f-510f-52b8-823b-9069910f3a68", "text": "\u4e00\u4e2a\u7a7f\u7740\u9ec4\u8272\u65e0\u80a9\u5e26\u88d9\u7684\u5c0f\u5973\u5b69\u7ad9\u5728\u4e00\u8258\u5927\u8239\u4e0a\u3002\u8239\u6b63\u5728\u822a\u884c\uff0c\u6ce2\u6d6a\u6c79\u6d8c\u3002\u5929\u7a7a\u660e"} +{"id": "2002708", "video_name": "60f46993-386a-5b81-9150-d0c514227a02", "text": "\u5236\u4f5c\u5370\u7b2c\u5b89\u4fa6\u5bdf\u6469\u6258\u8f66\u7684\u56fe\u50cf\uff0c\u6bcf\u8f86\u8f66\u989c\u8272\u4e0d\u540c\uff0c\u7b2c\u4e00\u8f86\u662f\u7eff\u8272\uff0c\u7b2c\u4e8c\u8f86\u662f\u767d\u8272\uff0c\u7b2c\u4e09"} +{"id": "2002709", "video_name": "fefc0990-9b4f-536d-be48-19951ca9e129", "text": "\u8f9b\u8fea\u8d70\u8fdb\u5ba2\u5385\u770b\u5230\u4e86\u58c1\u7089\u3001\u6c99\u53d1\u3001\u5496\u5561\u684c\u548c\u5899\u4e0a\u7684\u4e00\u4e9b\u753b\u3002\u5979\u6ce8\u610f\u5230\u5176\u4e2d\u4e00\u5e45\u753b\u662f\u4e00\u4e2a"} +{"id": "2002710", "video_name": "84d48c42-ec06-5910-9d4d-1895429fd787", "text": "\u7eff\u8272\u53d8\u5f62\u7d27\u8eab\u8863\u7684\u5a74\u513f\u8fc8\u51fa\u7b2c\u4e00\u6b65\u3002"} +{"id": "2002711", "video_name": "dd501c86-8eba-5f31-8c2b-2f20db6b3e02", "text": "\u8d8a\u5357\u7684\u6d2a\u6c0f\u738b\u671d\u62e5\u670918\u4f4d\u7ee7\u627f\u738b\u4f4d\u7684\u56fd\u738b\u3002"} +{"id": "2002712", "video_name": "85dd2de5-528d-5993-ab47-9a0321035a70", "text": "Source sentence: \u5728\u865a\u5e7b\u7684\u4e16\u754c\u4e2d\uff0c\u7011\u5e03\u548c\u6c34\u6676\u73bb\u7483\u6811\u3002\n\nTranslation: \u5728\u865a\u5e7b\u7684\u4e16\u754c\u4e2d\uff0c\u7011\u5e03\u548c\u6c34"} +{"id": "2002713", "video_name": "259b6ced-917d-5e6c-877e-f01a42adfbcf", "text": "\u4e00\u8258\u8239\u88ab\u6d82\u6210\u8c79\u7eb9\u6591\u70b9\u7684\u56fe\u6848\u3002"} +{"id": "2002714", "video_name": "da0b75a8-6de2-567c-bed3-fda80dbd35f5", "text": "\u65e5\u51fa\u5c71\u666f \u6d88\u606f\uff1a\u6bd4\u7279\u5e01 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "2002715", "video_name": "8b4acec8-05db-5ec9-9ca1-a6f75c91cd43", "text": "\u5f53\u4e00\u5929\u6162\u6162\u5c55\u5f00\uff0c\u57c3\u5f17\u4f0d\u5fb7\u9547\u91cc\u5145\u6ee1\u4e86\u6b22\u58f0\u7b11\u8bed\u3002\u96ea\u7403\u5927\u6218\u5728\u9547\u5e7f\u573a\u4e0a\u7206\u53d1\uff0c"} +{"id": "2002716", "video_name": "7b12fb76-6b5c-5bd2-a754-0c5495b23105", "text": "\u4e39\u5c3c\u5c14\u00b7\u514b\u96f7\u683c\u5750\u5728\u86cb\u7cd5\u5e97\u91cc\uff0c\u5403\u7740\u4e00\u5757\u86cb\u7cd5\u3002"} +{"id": "2002717", "video_name": "062e5881-b80d-5133-bb6f-bc030778e0a2", "text": "\u9c9c\u8840\u4e4b\u795e\u6b63\u5728\u9ed1\u7ea2\u4eea\u5f0f\u4e2d\u732e\u796d\u53d7\u82e6\u7684\u827a\u672f\u3002"} +{"id": "2002718", "video_name": "59599afe-03c8-5395-9891-3d2c0da17491", "text": "\u4e00\u4e2a\u7537\u5b69\u9a91\u9a6c\u7684\u571f\u5730\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "2002719", "video_name": "606202da-be67-58c1-ae4f-eaaa2251a534", "text": "\u6211\u7684\u4e16\u754c\u670d\u52a1\u5668\u56fe\u6807\u57ce\u9547\u6218\u4e89\u7b80\u7ea6\u5316"} +{"id": "2002720", "video_name": "9d8d3e60-757c-509c-9a55-8b12cf14c492", "text": "\u70ed\u5e26\u68ee\u6797\u666f\u89c2\u5367\u5ba4\uff0c\u5fc3\u60c5\u6216\u6c1b\u56f4\uff1a\u70ed\u5e26\uff0c\u5ba4\u5185\u8bbe\u8ba1\u98ce\u683c\uff1a\u6d77\u5cb8\uff0c\u666f\u89c2\uff1a\u8302\u5bc6"} +{"id": "2002721", "video_name": "f2ead0f9-c52a-514a-999e-82f77ed9bdae", "text": "\u7279\u65af\u62c9MODEL 3\u6b63\u5728\u4e0a\u6d77\u57ce\u5e02\u9a7e\u9a76\u3002"} +{"id": "2002722", "video_name": "3bbe7f5d-26a7-535c-8da5-656f1d408ad6", "text": "\u7537\u4eba\u5728\u8bfe\u5802\u4e0a\u5199\u677f\u4e66\u3002"} +{"id": "2002723", "video_name": "56ea402c-6449-5267-b376-356ed1851595", "text": "\u5976\u74f6\u5468\u56f4\u6e85\u6e85\u4e73\u6db2\u7684\u4ea7\u54c1\u89c6\u9891\uff0c\u62cd\u6444\u4e8e\u7eff\u8272\u73af\u5883\u4e0b\u7684\u5976\u725b\u519c\u573a\uff0c\u65f6\u957f\u4e3a3\u5206\u949f\u3002\n\nSource sentence:"} +{"id": "2002724", "video_name": "a58eb59c-66ff-55e0-99f8-7a1fa1929a60", "text": "\u539f\u8272\u6df7\u5408\u4ea7\u751f\u65b0\u989c\u8272\u3002"} +{"id": "2002725", "video_name": "c18b0088-0694-5e28-b3e2-4fcd5be8c788", "text": "\u516c\u5143\u524d330\u5e74\uff0c\u6709\u4e00\u4eba\u88ab12\u4e2a\u62e5\u62b1\u7684\u5b69\u5b50\u5305\u56f4\uff0c\u4ece\u80cc\u9762\u770b\uff0c\u8fd9\u4f4d\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u7537\u5b50\uff0c\u4ece\u8fdc"} +{"id": "2002726", "video_name": "fa929e6d-0620-5307-ab30-dd900d20b493", "text": "\u5728\u8ff7\u4eba\u7684\u5947\u601d\u4e61\uff0c\u70ab\u76ee\u7684\u70df\u706b\u5728\u7a7a\u4e2d\u7ed8\u51fa\u4e86\u7eda\u4e3d\u591a\u5f69\u7684\u753b\u9762\u3002"} +{"id": "2002727", "video_name": "586cb7f8-6fbe-5016-af9b-d0cdccea054f", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u5728\u4f1a\u8bae\u4e2d\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u8d28\u91cf\uff0c\u9ad8\u5ea6\u6e05\u6670\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "2002728", "video_name": "e9cc0b63-a3cc-59ea-81a2-f341b58403d5", "text": "\u7537\u5b50\u5728\u6c7d\u8f66\u4e0a\u5b89\u88c5\u5ea7\u6905\u5957\uff0c\u4ee5\u52a8\u753b\u98ce\u683c\u5448\u73b0\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u903c\u771f\u3002"} +{"id": "2002729", "video_name": "08f7314d-12dc-5db1-b4d9-a85318228266", "text": "\u4e00\u90e8\u5173\u4e8e\u5f02\u6559\u56e2\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u3002"} +{"id": "2002730", "video_name": "d2cab518-bd4c-5619-b7c6-c97f71caabc6", "text": "\u8bb8\u591a\u6050\u6016\u7684\u8138\u770b\u7740\u6211\u54ed\u6ce3\u3002"} +{"id": "2002731", "video_name": "4f079fa0-36a5-5931-81a9-f137ed920084", "text": "\u811a\u8dbe\u5934\u7684\u679c\u9171\u95e8\u88ab\u5361\u4f4f\u5728\u6811\u4e0a\uff0c\u9633\u5149\u660e\u5a9a\u4f46\u6709\u96fe\u548c\u96e8\u3002"} +{"id": "2002732", "video_name": "17fbb37e-2faa-5081-bb80-28ad9ec5dfb9", "text": "\u623f\u95f4\u89d2\u843d\u91cc\u5750\u7740\u4e00\u4e2a\u4eba\u9762\u5bf9\u7740\u5899\u3002"} +{"id": "2002733", "video_name": "cd5f9d2d-a90e-5db8-8cd7-86939897c490", "text": "\u6709\u5f88\u591a\u79fb\u52a8\u706f\u5149\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02"} +{"id": "2002734", "video_name": "d5d57d91-b593-597d-bd3a-99245581d886", "text": "\u5916\u661f\u8230\u961f\u4ece\u592a\u7a7a\u98de\u6765\u5f81\u670d\u5730\u7403\u3002"} +{"id": "2002735", "video_name": "5f447e59-5f7b-5ae3-b828-f0625fb2d894", "text": "\u68ee\u6797\u6210\u4e3a\u4e86\u6240\u6709\u5c45\u6c11\u7684\u548c\u5e73\u4e4b\u5730\u3002"} +{"id": "2002736", "video_name": "22930488-fed7-596e-a2ef-de47522ffb2c", "text": "\u529f\u80fd\u533b\u5b66\u810a\u67f1\u548c\u8111\u90e8\u626b\u63cf"} +{"id": "2002737", "video_name": "7a202fa1-8984-5f1b-be7a-bb14bc31f89c", "text": "\u6709\u4eba\u6b63\u5728\u7a7f\u8fc7\u9ed1\u6697\u7684\uff0c\u4ee4\u4eba\u6050\u60e7\u7684\u8d70\u5eca\uff0c8k\uff0c\u53d8\u7126\u8fd0\u52a8\u3002"} +{"id": "2002738", "video_name": "858795b2-a122-5822-a138-a1c5a8647c40", "text": "\u51e0\u5e74\u524d\uff0c\u6211\u66fe\u5728\u4e00\u5bb6\u6258\u513f\u6240\u5de5\u4f5c\uff0c\u7167\u987e\u513f\u7ae5\u3002"} +{"id": "2002739", "video_name": "68e7d871-11e9-5229-b9ca-15069ced6e1f", "text": "\u6bcf\u4e2a\u65e0\u610f\u4e2d\u6253\u6270\u6216\u8bd5\u56fe\u8fdb\u5165\u8001\u623f\u5b50\u7684\u4eba\u90fd\u4f1a\u6210\u4e3a\u90a3\u4e2a\u6c38\u8fdc\u627e\u4e0d\u5230\u5b89\u5b81\u7684\u9b3c\u9b42\u6b8b\u9177\u590d"} +{"id": "2002740", "video_name": "65a2221a-98ca-50b5-a8c5-05649407fb8f", "text": "\u624b\u4e2d\u6709\u4e00\u675f\u88c5\u5728\u5305\u88c5\u7eb8\u4e2d\u7684\u7ea2\u73ab\u7470\uff0c\u4e0a\u9762\u9644\u7740\u4e00\u5f20\u4fbf\u7b7e\u3002"} +{"id": "2002741", "video_name": "4ae4fd0d-9147-563b-8fd0-7fd561bb18dd", "text": "\u963f\u6839\u5ef770\u5e74\u4ee3\u7684\u516c\u4ea4\u8f66\uff0c\u5728\u8857\u4e0a\u884c\u9a76\u3002"} +{"id": "2002742", "video_name": "5d106167-d769-5c43-aad1-dbe84861ff1b", "text": "\u5728\u6751\u5e84\u91cc\u7528\u5df4\u57fa\u65af\u5766\u56fd\u65d7\u5e86\u795d\u80dc\u5229\u7684\u4eba\u4eec\u3002"} +{"id": "2002743", "video_name": "a2626725-04c6-5a41-af5d-f70a9e9a9983", "text": "\u826f\u597d\u7684\u675c\u5c14\u52a0\uff08Durga\uff09\u9a91\u5728\u72ee\u5b50\u4e0a\uff0c\u624b\u6301\u4e5d\u4e2a\u6b66\u5668\u3002"} +{"id": "2002744", "video_name": "26ad1468-3320-57de-8b6a-d21b1bc29a6f", "text": "\u901a\u8fc7\u5c71\u8109\u548c\u8349\u5730\u521b\u9020\u4e00\u4e2a\u975e\u5e38\u7f8e\u597d\u7684\u81ea\u7136\u5f62\u8c61\u3002"} +{"id": "2002745", "video_name": "e39e868d-6684-549c-809e-5e316d06634f", "text": "a building that is on fire.\n\n\u4e00\u4e2a\u7537\u4eba\u722c\u884c\u5e76\u8bd5\u56fe\u9003\u79bb\u7740\u706b\u7684\u5efa\u7b51\u7269\u3002"} +{"id": "2002746", "video_name": "965b9eb7-ce49-5638-a2e2-58bd763447cd", "text": "\u4e00\u4f4d\u5929\u4e3b\u6559\u795e\u7236\u548c\u4e09\u4e2a\u4eba\u80cc\u7740\u4e00\u4e9b\u5305\u88f9\u5728\u4e00\u4e2a\u745e\u5178\u5c0f\u57ce\u5e02\u7a7f\u8fc7\uff0c\u65f6\u95f4\u662f1922\u5e74\uff0c\u592a\u9633\u5347\u8d77\u3002"} +{"id": "2002747", "video_name": "1d1c07a2-a6d9-5346-b172-f18d142a6710", "text": "\u955c\u5934\u8fd1\u62cd\u6d77\u76d7\u8138\u90e8\uff0c\u80cc\u666f\u6a21\u7cca\uff0c\u70ed\u5e26\u5c9b\u5c7f\uff0c\u7535\u5f71\u955c\u5934\uff0c\u903c\u771f\uff0c\u5f71\u89c6\u5316\u3002"} +{"id": "2002748", "video_name": "17e98758-dd43-5ea6-bbe0-2b5b980e4809", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u6cb3\u8fb9\u9493\u9c7c\uff0c\u9c7c\u513f\u4e0a\u4e86\u9975\uff0c\u6c99\u753b\u98ce\u683c\u3002"} +{"id": "2002749", "video_name": "b0993ee3-9758-5513-9a87-f4b86ffdd30d", "text": "\u6770\u4f5c\uff0c\u6700\u4f18\u8d28\u7684\u54c1\u8d28\uff0c\u5728\u590f\u5929\uff0c\u6d77\u6d0b\u4e0a\uff0c\u4e24\u4e2a\u5973\u5b69\uff0c\u8f6c\u8eab\u3002"} +{"id": "2002750", "video_name": "c5e18956-7279-584d-bf20-9b1c8ba16c32", "text": "\u7a7a\u95f4\u5f88\u660e\u4eae\u3002"} +{"id": "2002751", "video_name": "0fa14378-644e-5353-be61-bbf160d10ef8", "text": "\u4e24\u4e2a\u6781\u7aef\u7ec4\u7ec7\u90fd\u8bd5\u56fe\u7834\u574f\u4efb\u4f55\u548c\u5e73\u8fdb\u7a0b\uff0c\u5ef6\u7eed\u4e86\u4e00\u79cd\u67d3\u7ea2\u571f\u5730\u3001\u6d88\u8017\u65e0\u6570\u751f\u547d\u7684\u66b4\u529b\u5faa"} +{"id": "2002752", "video_name": "a4ae01b4-ac34-54e5-8994-2ec2d0b9016d", "text": "\u4e00\u679a\u706b\u7bad\u7206\u70b8\u51fb\u4e2d\u4e86\u4e00\u95f4\u5c0f\u6c99\u6f20\u4f4f\u5b85\u3002"} +{"id": "2002753", "video_name": "8f552f7a-228c-5e24-b810-0fd93ac5555e", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u7ad9\u5728\u9999\u6e2f\u592a\u5e73\u5c71\u9876\u4e0a\uff0c\u4fef\u77b0\u591c\u666f\u3002\u5468\u56f4\u6ca1\u6709\u4eba\uff0c\u5979\u5f20\u5f00\u53cc\u81c2\u62e5\u62b1"} +{"id": "2002754", "video_name": "5a02146c-5f1d-5e24-aa3b-628c4c18dbf8", "text": "\u4e00\u4e2a\u5927\u578b\u4e3b\u9898\u516c\u56ed\u7684\u8fc7\u5c71\u8f66\u8131\u8f68\u5e76\u5760\u843d\u3002"} +{"id": "2002755", "video_name": "d8792c8e-7918-5648-a5ab-5972ca2b08c6", "text": "\u4e00\u679a\u77f3\u5934\u539f\u59cb\u6212\u6307\uff0c\u6c34\u4e0b\u95ea\u7535\uff0c\u5f69\u8272\u7684\u3002"} +{"id": "2002756", "video_name": "8b9a0c1b-7c3c-50d2-81f1-49351da3ad2f", "text": "\u5e74\u8f7b\u4eba\u7ec4\u5408\u54e5\u7279\u548c\u7b2c\u4e09\u5e1d\u56fd\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8fdb\u3002"} +{"id": "2002757", "video_name": "244c80ae-9006-529b-ade6-58ffcc80d98e", "text": "\u5973\u602745\u5c81\u4ee5\u4e0a\uff0c\u76ae\u80a4\u6709\u76b1\u7eb9\uff0c\u9700\u8981\u8fdb\u884c\u590d\u539f\u3002"} +{"id": "2002758", "video_name": "aa668c2f-634c-5811-9f6c-4e050b7a89b8", "text": "\u5728\u4e16\u754c\u7684\u5b81\u9759\u89d2\u843d\uff0c\u5e0c\u671b\u6e3a\u832b\u4e4b\u5904\uff0c\u5723\u8bde\u8001\u4eba\u548c\u4ed6\u7684\u7cbe\u7075\u7684\u6177\u6168\u7ed9\u8d2b\u56f0"} +{"id": "2002759", "video_name": "6dcfc12d-8f3e-5a94-b040-3dc516369c54", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u67091000\u9897\u536b\u661f\u7ed5\u7740\u5730\u7403\u8f68\u9053\u8fd0\u884c\uff0c\u4ee5\u9ed1\u767d1900\u5e74\u4ee3\u8868\u73b0\u4e3b\u4e49\u65e0\u58f0\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "2002760", "video_name": "b958510f-e536-5ab3-9448-fd23292be37d", "text": "\u63a2\u7d22\u795e\u79d8\u7684One Fenix\u4e16\u754c\uff0c\u5728\u8fd9\u91cc\u53e4\u8001\u7684\u9057\u8ff9\u4e0e\u672a\u6765\u79d1\u6280\u78b0\u649e\uff0c\u5f62\u6210\u4e86\u4ee4\u4eba\u60ca\u53f9\u7684\u5bf9\u6bd4\u3002"} +{"id": "2002761", "video_name": "773f4559-2061-5948-a4c6-15fbb9cdd128", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u7a7a\u4e2d\u9493\u9c7c\u3002"} +{"id": "2002762", "video_name": "33cf48ed-e235-5c56-b2a4-56bdcb60d427", "text": "\u4e00\u90e8\u4ee5\u8d5b\u8f66\u4e3a\u4e3b\u9898\u7684\u7535\u5f71\u9884\u544a\u7247\u5728\u51a5\u738b\u661f\u62cd\u6444\u3002"} +{"id": "2002763", "video_name": "63de4eb3-69d3-5330-a2ee-d24e80c4f088", "text": "\u6a21\u4eff\u8718\u86db\u7684\u8774\u8776"} +{"id": "2002764", "video_name": "f136911e-df58-5a2f-882a-26576fece4a8", "text": "\u5934\u90e8\u7a0d\u5fae\u79fb\u52a8\uff0c\u706f\u4e5f\u8ddf\u7740\u79fb\u52a8\u3002"} +{"id": "2002765", "video_name": "82830da6-1c5f-5a19-b5a4-8cfe4b6d92c2", "text": "\u673a\u5668\u4eba\u5728\u6ee1\u6708\u7684\u80cc\u666f\u4e0b\u629a\u6478\u4e00\u53ea\u732b\u3002"} +{"id": "2002766", "video_name": "e5fa40f3-0eb7-5f75-89c2-512c2cafa99b", "text": "\u9752\u5c11\u5e74\u5728\u623f\u95f4\u91cc\u73a9\u6e38\u620f\uff0c\u611f\u5230\u5feb\u4e50\u3002"} +{"id": "2002767", "video_name": "0c42d0a2-290d-54ca-a697-26e71f4f2af7", "text": "\u4e00\u679a\u7535\u8111\u82af\u7247\uff0c\u534e\u4e3d\u7cbe\u81f4\uff0c\u6709\u8bb8\u591a\u7535\u8def\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002768", "video_name": "4ba9e3db-eba3-5038-ad6c-5504bdba9b4e", "text": "\u4e00\u53ea\u8272\u5f69\u7f24\u7eb7\u7684\u6e38\u6cf3\u6c34\u6bcd\u88ab\u82b1\u73af\u7ed5\u7740\u8fd0\u52a8\u3002"} +{"id": "2002769", "video_name": "457489c4-4e37-5adf-9a98-86e7b058cd78", "text": "\u7f8e\u4e3d\u7684\u590f\u5a01\u5937\u65e5\u843d\uff0c\u6d77\u8c5a\u5728\u6d77\u4e2d\u8dc3\u51fa\u6c34\u9762\u3002"} +{"id": "2002770", "video_name": "6d2c93d3-1bda-5eeb-937d-da7d4f9dfb61", "text": "\u4e00\u4e2a\u7a7f\u7740\u4eba\u7c7b\u88c5\u675f\u3001\u6234\u7740\u5934\u76d4\u548c\u6301\u67aa\u7684\u4eba\u8d70\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u4eba\u884c\u9053\u4e0a\uff0c\u8d70\u5411\u955c\u5934\u3002\u65e7\u7535\u5f71"} +{"id": "2002771", "video_name": "0f4b2404-a2d0-52c4-bb3b-35731c72fdda", "text": "\u5728\u7ebd\u7ea6\u5e02\u4e00\u4e2a\u6674\u6717\u7684\u65e5\u5b50\u91cc\uff0c\u653e\u5927\u4e00\u4e2a\u7531\u5f69\u8272\u86cb\u7cd5\u5236\u6210\u7684\u5efa\u7b51\u3002"} +{"id": "2002772", "video_name": "3c80c555-13f0-5f1e-b1e9-b46cae831245", "text": "\u9ed1\u8272\u677e\u6797\u4e0a\u6709\u673a\u8f66\u5c0f\u8def\u3002"} +{"id": "2002773", "video_name": "1bb3e84a-492d-5ebd-9281-c5270ecf1163", "text": "360\u5ea6\u7535\u5f71\uff0c\u4ee5\u5168\u666f\u89c6\u9891\u7684\u98ce\u683c\uff0c\u4ece\u5916\u5230\u5185\u8d70\u8fdb\u201c\u5bb6\u5ead\u5c0f\u5b50\u201d\u5f7c\u5f97\u00b7\u683c\u91cc\u82ac\u7684\u623f\u5b50\u3002"} +{"id": "2002774", "video_name": "38d86c7f-15aa-5299-b0ca-85ade37b8497", "text": "\u6240\u9644\u9c7c\u513f\u5728\u6c34\u65cf\u9986\u6e38\u6cf3\u7684\u9ad8\u5206\u8fa8\u7387\u89c6\u9891\u3002"} +{"id": "2002775", "video_name": "652bcf16-ea96-5ca5-8608-1da77dad9fcb", "text": "\u57fa\u4e8e\u91d1\u00b7\u8d1d\u8f9b\u683c\u7684\u957f\u76f8\uff0c\u7f8e\u56fd\u5496\u5561\u5e97\u91cc\u51fa\u73b0\u4e86\u4e00\u4e2a\u7c7b\u4f3c\u7684\u5973\u4eba\uff0c\u91c7\u7528\u8d85\u5199\u5b9e\u98ce\u683c\uff0c\u67094K\u548c8K\u7248\u672c"} +{"id": "2002776", "video_name": "7cb87f8b-b74c-5eb1-bc33-188014d3b563", "text": "\u4e00\u4e2a\u5815\u843d\u5929\u4f7f\u6b63\u5728\u9f99\u5377\u98ce\u4e2d\u5760\u843d\uff0c8k\u62cd\u6444\uff0c\u52a8\u4f5c\u620f\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "2002777", "video_name": "d6da2f17-94a8-5d99-a264-6c631a0c40b3", "text": "\u9cc4\u9c7c\u6253\u626e\u6210\u725b\u4ed4\uff0c\u624b\u6301\u67aa\u68b0\uff0c\u4e24\u817f\u884c\u8d70\u4e8e\u6c99\u6f20\u4e4b\u4e2d\u3002"} +{"id": "2002778", "video_name": "5c570430-f536-5133-bbf5-5639d943e063", "text": "\u653e\u5927\u840c\u840c\u7684\u6d77\u8707\u5409\u535c\u529b\u52a8\u753b\u3002"} +{"id": "2002779", "video_name": "c4aa6760-2ecd-506d-a646-687603ecf4bf", "text": "\u7206\u70b8\u5973\u4eba \u706b\u732b \u82b1\u706b \u706b\u82b1 \u6728\u53f6\u5fcd\u8005 \u6811\u821e \u74e6\u5361\u74e6\u5361\u563f\u563f"} +{"id": "2002780", "video_name": "fab73e2a-413e-51bd-91fe-4b87954a77c8", "text": "\u4f01\u9e45\u96cf\u9e1f\u4fa7\u9762\u56fe\uff0c\u7070\u8272\u80cc\u666f\u3002"} +{"id": "2002781", "video_name": "fbab2e8a-25a0-58bc-910c-42ae905b0b95", "text": "\u5979\u51b3\u5fc3\u63ed\u5f00\u5b83\u7684\u79d8\u5bc6\uff0c\u8e0f\u4e0a\u4e86\u7a7f\u8d8a\u9b54\u6cd5\u68ee\u6797\u7684\u65c5\u7a0b\u3002"} +{"id": "2002782", "video_name": "f038d91b-4a37-523d-a67a-8ba91fabfc61", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u5176\u4e2d\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u7a7f\u8d8a\u4e00\u4e2a\u751f\u6001\u6839\u6865\u65f6\u5931\u53bb\u4e86\u4e00\u53ea\u811a\u3002"} +{"id": "2002783", "video_name": "84974cfd-b267-5449-acad-596bbeaee164", "text": "\u63cf\u8ff0\u6cb3\u6d41\u8f7b\u67d4\u7684\u6d41\u52a8\uff0c\u5b83\u7a7f\u68ad\u4e8e\u98ce\u666f\u4e4b\u95f4\u3002"} +{"id": "2002784", "video_name": "845b4ffd-5b54-573f-8665-8d9ed4893d37", "text": "\u8bf7\u5199\u4e00\u4e2a\u7ed3\u8bba\uff0c\u7559\u7ed9\u8bfb\u8005\u4e00\u4e2a\u6709\u5173\u6551\u8d4e\u3001\u540c\u60c5\u548c\u4e0d\u53ef\u80fd\u7684\u8054\u76df\u7684\u529b\u91cf\u7684\u4fe1\u606f\u3002"} +{"id": "2002785", "video_name": "84b65eb9-34fc-5223-b132-8ceaafc09ccb", "text": "\u4e00\u540d\u7537\u5b50\u6cbf\u7740\u6cb3\u8fb9\u8d70\u3002"} +{"id": "2002786", "video_name": "87564a97-99d2-516f-ad9d-5c2a44a62428", "text": "\u670b\u53cb\u4eec\u7537\u5973\u5728\u5468\u4e94\u665a\u4e0a\u4eab\u53d7\u62bd\u5927\u9ebb\u3002\u50cf\u8857\u5934\u9738\u738b\u4e00\u6837\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c8K\u5206\u8fa8\u7387\u3002"} +{"id": "2002787", "video_name": "2405b9d7-4108-5c2e-b78c-0378d2fcc799", "text": "\u963f\u91cc\u5728\u5b81\u9759\u7684\u68ee\u6797\u4e2d\u780d\u7af9\u5b50\u7684\u753b\u9762\u3002\u6708\u5149\u900f\u8fc7\u6811\u6728\uff0c\u963f\u91cc\u5076\u7136\u53d1\u73b0\u4e86\u5929\u4e0a\u7684\u5149\u8292"} +{"id": "2002788", "video_name": "e9965605-59b7-57d4-aad5-0a50e7433b9e", "text": "\u7535\u5f71\u4e2d\u7684\u6d88\u6781\u98ce\u683c\u9759\u6001\u753b\u9762\uff0c\u5979\u8138\u4e0a\u5e26\u7740\u5fae\u7b11\uff0c\u52a8\u4f5c\u4e0d\u89c4\u5219\u6ce2\u52a8\u3002"} +{"id": "2002789", "video_name": "2b66a395-0889-5580-826c-0b824d0af981", "text": "\u5916\u661f\u4eba\u7ed1\u67b6\uff0c\u6709\u53f2\u4ee5\u6765\u6700\u597d\u7684\u6587\u672c\u89c6\u9891\u3002"} +{"id": "2002790", "video_name": "77777a90-9bd6-59a4-87c9-76a98b6d5cf2", "text": "\u5728\u529e\u516c\u6905\u4e0a\u5750\u7740\u7684\u7537\u5b69\u53f3\u81c2\u79fb\u52a8\uff0c\u5448\u8d1f\u5f62\u53d8\uff0c\u52a8\u4f5c\u4e0d\u7a33\uff0c\u5608\u6742\uff0c\u8d28\u91cf\u5dee\uff0c\u53d8\u5f62\uff0c"} +{"id": "2002791", "video_name": "a669fabf-583f-50ae-a525-f0d62f6fbed5", "text": "\u521b\u4f5c\u4e00\u4e2a\u8d85\u5199\u5b9e\u7684\u5deb\u5e08\u827a\u672f\u4f5c\u54c1\uff0c\u5750\u5728\u6708\u4eae\u4e0b\u7684\u68ee\u6797\u4e2d\u3002\u653e\u5927\u753b\u9762\uff0c\u770b\u8d77\u6765\u50cf\u4f20\u7edf\u6cb9\u753b\uff0c\u5f3a"} +{"id": "2002792", "video_name": "a168545d-d85e-5629-b3f7-f62f9a01cea6", "text": "\u5730\u7403\u88ab\u5c0f\u884c\u661f\u649e\u51fb\u3002"} +{"id": "2002793", "video_name": "6a52c50b-f2dd-596f-ae34-5030a98f9530", "text": "\u4e00\u5ea7\u5927\u57ce\u5e02\u5728\u5927\u6674\u5929\u4e0b\u7684\u9177\u70ed\u4e2d\u878d\u5316\u3002"} +{"id": "2002794", "video_name": "27b19431-f718-51e9-bd0c-12993702c906", "text": "\u4e00\u540d\u9ed1\u53d1\u7537\u5b50\u8eab\u7a7f\u9ed1\u8272\u4e0a\u8863\uff0c\u5728\u4e00\u5f20\u9ed1\u767d\u7684\u6293\u62cd\u7167\u7247\u4e2d\u72c2\u5954\u5728\u8857\u4e0a\u3002\u8fd9\u5f20\u7167\u7247\u6d41\u9732\u51fa\u4e00\u79cd"} +{"id": "2002795", "video_name": "5b5f7dd2-cd67-5178-b39a-e5820ea1ceea", "text": "\u53d8\u6362\u7684\u5b63\u8282\uff0c\u9e1f\u513f\u7684\u6b4c\u5531\uff0c\u5145\u6ee1\u751f\u547d\u7684\u666f\u8272\u3002"} +{"id": "2002796", "video_name": "560e2dbc-330a-53f0-8c6a-35f7ac1eb2ac", "text": "\u4e0a\u5e1d\u8bf4\uff1a\u8ba9\u6c34\u751f\u51fa\u6d3b\u7269\uff0c\u8ba9\u98de\u79bd\u5728\u5929\u7a7a\u7684\u5f00\u9614\u5929\u7a79\u4e2d\u7ff1\u7fd4\u3002"} +{"id": "2002797", "video_name": "a90fb7af-afe5-55b5-af0f-a512f42f7a52", "text": "\u6211\u8d8a\u6765\u8d8a\u80d6\u4e86\uff0c\u4f46\u6211\u51b3\u5b9a\u4e0d\u53bb\u60f3\u5b83\u3002\u6211\u60f3\u8fd9\u5c31\u662f\u6bcf\u4e2a\u4eba\u5728\u9762\u5bf9\u98df\u7269\u4e0a\u763e\u65f6\u5fc5\u987b\u505a\u7684\u4e8b\u60c5"} +{"id": "2002798", "video_name": "83548f9e-cd5d-532e-bf4a-ec5a991ef566", "text": "\u4e00\u4e2a\u6b27\u6d32\u5730\u56fe\u7684\u89c6\u9891\uff0c\u5148\u628a\u6cd5\u56fd\u6d82\u6210\u7ea2\u8272\uff0c\u7136\u540e\u662f\u5965\u5730\u5229\uff0c\u518d\u662f\u4fc4\u7f57\u65af\u3002"} +{"id": "2002799", "video_name": "c603cd1e-d824-5551-b9c9-33a29207a7df", "text": "\u7ea2\u53c2\u5496\u5561\u662f\u7531\u7ea2\u53c2\u548c\u5496\u5561\u6df7\u5408\u5236\u6210\u7684\uff0c\u4e00\u676f\u5496\u5561\u3002"} +{"id": "2002800", "video_name": "861d2f5d-01d8-5675-9bf3-77f8042177c3", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u5403\u84b8\u5305\u5b50\u3002"} +{"id": "2002801", "video_name": "94ca4a60-3649-5621-9f40-c237065d7503", "text": "\u7f13\u7f13\u5730\u79fb\u52a8\uff0c\u5e78\u8fd0\u7f62\u5de5\u6807\u5fd7\u3002"} +{"id": "2002802", "video_name": "ac60b9e3-6113-5123-af45-851e147aeec2", "text": "\u8499\u592a\u5947\uff1aVitaliy\u4eab\u53d7\u5962\u4f88\u751f\u6d3b\u7684\u955c\u5934\u3002\n\u2022 \u70ab\u76ee\u7684\u6c7d\u8f66\u3001\u5f02\u56fd\u5ea6\u5047\u548c\u4ed6\u5149\u5f69\u593a\u76ee\u4e16"} +{"id": "2002803", "video_name": "38b68b9a-f04f-5bd0-952a-913d8dec0fad", "text": "\u94a2\u94c1\u4fa0\u5728\u5c0f\u5df7\u91cc\u7528\u4ed6\u4eec\u7684\u80fd\u529b\u4e0e\u8718\u86db\u4fa0\u6218\u6597\uff0c\u8d85\u73b0\u5b9e\u3001\u8d85\u8be6\u7ec6\u3001\u6770\u4f5c\u30018K\u3002"} +{"id": "2002804", "video_name": "82660cba-2ab1-5e67-b97d-f9cc8d9b14d0", "text": "\u5c71\u4e0a\u84dd\u8272\u5149\u8292\u7684\u7206\u70b8\uff0c4k\u3002"} +{"id": "2002805", "video_name": "33f4cc56-3ef3-5531-89fd-990b2d1e32f7", "text": "\u602a\u517d\u6b63\u5728\u5486\u54ee\uff0c\u9ad8\u6e05\u903c\u771f\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u6c1b\u56f4\u706f\u5149\uff0c\u9ad8\u54c1\u8d28\uff0c\u7535\u5f71\u7ea7\u522b\u7684\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002806", "video_name": "8203a485-e9cf-50b3-8a28-01d1eeeb486c", "text": "\u4e00\u540d\u7537\u5b50\u7ed9\u4f60\u4e00\u4e2a\u76d8\u5b50\uff0c\u80cc\u666f\u6709\u4e00\u4e2a\u6389\u843d\u7684\u7a97\u5e18\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002807", "video_name": "cd6b0de1-1a5e-5f1e-8f75-9bcf7ea3c5c0", "text": "\u9ea6\u5f53\u5a1c\u00b7\u5e0c\u5eb7\u7684\u6b4c\u5728\u8857\u5934\u54cd\u8d77\u3002"} +{"id": "2002808", "video_name": "71507b30-47ff-5a22-b79d-7e53bf58c8b2", "text": "\u5728\u4e00\u5bb6\u4ee5\u4e27\u5c38\u4f5c\u4e3a\u4e34\u5e8a\u60a3\u8005\u6cbb\u7597\u7684\u673a\u6784\u91cc\uff0c\u62cd\u6444\u4e00\u5f2021:9\u52a8\u6001\u7684\u7cbe\u5fc3\u4fee\u526a\u7684\u516c\u56ed\u5168"} +{"id": "2002809", "video_name": "dc9d0b52-9f4d-5549-9463-4c79bf198a07", "text": "\u4e00\u4e2a\u7537\u4eba\u5531\u6b4c\u5e76\u6253\u7bee\u7403\u3002"} +{"id": "2002810", "video_name": "b7f6bfad-89ac-5ff0-9e8d-51a8cd667e92", "text": "\u4e00\u4f4d\u6210\u529f\u7684\u5973\u6027\uff0c\u5979\u6709\u7740\u957f\u957f\u7684\u68d5\u8272\u5934\u53d1\uff0c\u6b63\u5728\u5750\u5934\u7b49\u8231\u73af\u6e38\u4e16\u754c\u3002"} +{"id": "2002811", "video_name": "520e0c09-a312-5284-ae72-5b10968136a3", "text": "\u8759\u8760\u4fa0\u5411\u53f3\u8f6c\u52a8\u5934\u90e8\u3002"} +{"id": "2002812", "video_name": "90685223-5174-55c7-9ee1-2944f3ce7afb", "text": "\u9057\u5f03\u7684\u590d\u53e4\u8f66\uff0c\u6c34\u4e0b\u77ed\u88e4\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u6e05\u3002"} +{"id": "2002813", "video_name": "d61f7442-534d-57f4-b442-9e5a9c916592", "text": "\u6bcf\u4e2a\u4eba\u5634\u91cc\u90fd\u54ac\u7740\u4e00\u4e2a\u5de8\u5927\u7684\u70ed\u72d7\u3002"} +{"id": "2002814", "video_name": "4700f971-88ad-5283-ad46-29dfb800c2f7", "text": "\u751f\u6210\u4e00\u5f20\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u56fe\u7247\uff0c\u4e0a\u9762\u51fa\u73b0\u4e00\u4f4d\u6234\u773c\u955c\u548c\u80e1\u5b50\u7684\u5e74\u8f7b\u7a0b\u5e8f\u5458\uff0c\u7535\u5f71\u7684\u6807\u9898\u662f\u300a"} +{"id": "2002815", "video_name": "cc4854c0-444d-5fd7-8ce5-4bf4b0b45a17", "text": "Cristiano Ronaldo\u7684\u5e86\u795d\u65b9\u5f0f\u5c55\u73b0\u4e86\u4ed6\u7684\u8d35\u65cf\u6c14\u8d28\u3002\n\nSource sentence: The restaurant was crowded and noisy, but the food was delicious.\n\u8fd9\u5bb6\u9910\u5385\u4eba\u6ee1\u4e3a"} +{"id": "2002816", "video_name": "ac7f50d0-b8cf-572c-8cac-3ffaea0af215", "text": "\u8d85\u73b0\u5b9e\u800c\u8be6\u7ec6\u3002\u7ad9\u5728\u9ad8\u697c\u9876\u4e0a\uff0c\u8fd9\u5f20\u56fe\u7247\u5448\u73b0\u51fa\u8d85\u73b0\u5b9e\u7684\u573a\u666f\u548c\u7cbe\u81f4\u7684\u7ec6\u8282\u3002\u5176\u4e2d\uff0c\u4e00\u540d\u672a\u6765\u58eb\u5175"} +{"id": "2002817", "video_name": "25e57ebe-423c-54d3-800d-946c1ba2ef62", "text": "\u83b1\u6602\u7eb3\u591a\u00b7\u8fea\u5361\u666e\u91cc\u5965\u5728\u6cf0\u5766\u5c3c\u514b\u53f7\u4e0a\u559d\u7740\u661f\u5df4\u514b\u5496\u5561\uff0c\u5750\u5728\u4e00\u4e2aiPhone\u4e0a"} +{"id": "2002818", "video_name": "63fa6cc3-5ac6-5e81-8d3b-fa0b7526742c", "text": "\u516c\u4e3b\u9a91\u7740\u767d\u864e\u98de\u8d8a\u5ce1\u8c37\uff0c4k\uff0c\u5168\u666f\uff0c\u7535\u5f71\u706f\u5149\uff0c\u5168\u666f\u955c\u5934\uff0c\u955c\u5934\u8000\u6591\u3002"} +{"id": "2002819", "video_name": "8ad0dce3-a1ba-55db-bca9-0b3999f864d3", "text": "\u53ef\u6015\u7684\u751f\u7269\uff0c\u8d85\u73b0\u5b9e\u7684\u666f\u8c61\u4ee5\u53ca\u4ed6\u4eec\u81ea\u5df1\u65e5\u76ca\u589e\u957f\u7684\u75af\u72c2\u3002"} +{"id": "2002820", "video_name": "f3818adb-c3da-57a7-a3bc-3719ac666efe", "text": "\u4e3b\u795e\u6e7f\u5a01\u795e\u5728\u795e\u5723\u7684\u68ee\u6797\u4e2d\uff0c\u62e5\u6709\u8d85\u81ea\u7136\u7684\u529b\u91cf\uff0c\u9ad8\u6e05\u753b\u8d284K\u3002"} +{"id": "2002821", "video_name": "b84120da-278f-5bce-9788-f87e49c2fded", "text": "\u8fd9\u4e9b\u5973\u58eb\uff0c\u963f\u66fc\u8fbe\u3001\u4e3d\u838e\u548c\u827e\u7c73\u4e3d\uff0c\u4e00\u751f\u90fd\u5728\u6d77\u8fb9\u5ea6\u8fc7\u30023D\u52a8\u753b\uff0c6\u79d2\u957f\u3002"} +{"id": "2002822", "video_name": "e410a520-6bc5-5b95-b949-9991470be86d", "text": "\u4ee5\u96f7\u8afe\u74e6\u98a8\u683c\u7684\u65e5\u672c\u8336\u6703\u3002"} +{"id": "2002823", "video_name": "656d8393-511d-5f20-aaaf-ac3a6b636609", "text": "\u4e00\u8f86\u5fb7\u7f57\u4f0a\u5b89\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u591c\u665a\u7684\u57ce\u5e02\u91cc\u884c\u9a76\u3002"} +{"id": "2002824", "video_name": "d9525104-9d79-515e-b36a-7c9bdeda632e", "text": "\u5728\u76fc\u671b\u7684\u76d7\u730e\u8005\u5165\u4fb5\u7684\u524d\u4e00\u665a\uff0c\u8f9b\u5df4\u53ec\u96c6\u4e86\u6700\u540e\u4e00\u6b21\u4f1a\u8bae\u3002\u5728\u6708\u5149\u4e0b\uff0c\u52a8\u7269\u4eec\u805a\u96c6\u5728\u7a7a"} +{"id": "2002825", "video_name": "00a0db43-1b67-56b1-9e8e-51bf099f4ef5", "text": "\u4e00\u540d\u957f\u53d1\u3001\u80e1\u987b\u7684\u65e0\u5bb6\u53ef\u5f52\u7537\u5b50\u5728\u57ce\u5e02\u8857\u5934\u8df3\u98de\u821e\u3002"} +{"id": "2002826", "video_name": "0b2d06de-414f-5a73-880c-902d8d6034c5", "text": "\u8857\u9053\u6bd4\u65e5\u51fa\u524d\u7a0d\u5fae\u4eae\u4e00\u70b9\uff0c\u4f46\u4ec5\u4ec5\u5982\u6b64\u3002\u963f\u91cc\u8e0f\u4e0a\u9e45\u5375\u77f3\u8def\uff0c\u6447\u6447\u6643\u6643\u5730\u5411\u524d"} +{"id": "2002827", "video_name": "fea66a2a-fb5f-5eeb-a101-13a2ff35f337", "text": "\u8ff7\u96fe\u5f25\u6f2b\u7684\u96e8\u591c\uff0c\u5e9f\u5f03\u7684\u9b3c\u57ce\u91cc\u6563\u843d\u7740\u6b8b\u7834\u7684\u8f66\u8f86\u3002"} +{"id": "2002828", "video_name": "1c9146eb-9dd8-5a04-aac4-c2d53c3e4b3e", "text": "\u6709\u4e00\u5929\uff0c\u4e00\u573a\u4e25\u91cd\u7684\u98ce\u66b4\u88ad\u51fb\u4e86\u68ee\u6797\uff0c\u6467\u6bc1\u4e86\u8fd9\u4e9b\u52a8\u7269\u7684\u6816\u606f\u5730\u3002\u8fd9\u662f\u4e00\u4e2a\u52a8\u753b\u513f\u7ae5\u6545"} +{"id": "2002829", "video_name": "be97b92b-0287-5045-be54-2dc73aa36bfd", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5c14\u548c\u5df4\u4f2f\u5c14\u00b7\u963f\u624e\u59c6\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u3002"} +{"id": "2002830", "video_name": "22163889-f37c-5144-9b0d-3a173ac82e1c", "text": "\u4e24\u4e2a\u884c\u661f\u5728\u592a\u7a7a\u4e2d\u65cb\u8f6c\uff0c\u80cc\u666f\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "2002831", "video_name": "761ecc66-9a3d-5a86-88d7-ab71cf09f62d", "text": "\u8759\u8760\u4fa0\u4ece\u9ed1\u6697\u4e2d\u5d1b\u8d77\uff0c\u4ee5\u8001\u5f0f\u5361\u901a\u7684\u65b9\u5f0f\u5c55\u73b0\u3002"} +{"id": "2002832", "video_name": "c782699a-7322-5e33-ac14-efc427d08bfb", "text": "\u5b87\u5b99\u98de\u8239\u8d70\u5eca\uff0c\u7ba1\u9053\uff0c\u5e9f\u5f03\u7684\uff0c\u7ea2\u8272\u7684\uff0c\u79fb\u52a8\u7684\u5f71\u5b50"} +{"id": "2002833", "video_name": "52092877-0890-5332-ab7c-ac3aea158dc1", "text": "\u4e00\u4f4d\u4e2d\u5e74\u5546\u4eba\u6b63\u5728\u5438\u96ea\u8304\u3002"} +{"id": "2002834", "video_name": "0368b9f6-fcc7-59c8-a027-87c238d32d4e", "text": "\u672a\u6765\u4e3b\u4e49\u73af\u5883\u4e0b\u7684\u5fcd\u8005\u6b66\u672f\u8bad\u7ec3"} +{"id": "2002835", "video_name": "684dc94f-3c90-5196-bdb9-41642020a408", "text": "\u6f5c\u610f\u8bc6\uff0c\u95ea\u8000\u7684\u80cc\u666f\uff0c\u8fde\u63a5\u5230\u5b87\u5b99\u3002"} +{"id": "2002836", "video_name": "1b086199-f929-58e3-a9af-ae71c9e5c57d", "text": "\u4e00\u4e2a\u5b69\u5b50\u7ed9\u6811\u6d47\u6c34\u3002"} +{"id": "2002837", "video_name": "1eff0349-3731-5a44-ac47-1df7bdba2e4a", "text": "\u7537\u4eba\u5728\u516d\u4e2a\u4e0d\u540c\u7684\u573a\u666f\u4e2d\u9605\u8bfb\u5e76\u5c55\u73b0\u60f3\u8c61\u529b\uff0c\u5229\u7528\u7a7a\u95f4\u3001\u6d77\u6d0b\u3001\u865a\u6784\u7684\u571f\u5730\u3001\u82b1\u5730\u3001\u97f3\u4e50\u548c\u65f6\u95f4\u3002\u5236"} +{"id": "2002838", "video_name": "82c2d235-0895-520f-98b9-cb94dfadf0e3", "text": "\u6ba1\u4eea\u8f66\u4ece\u516c\u8def\u4e0a\u884c\u9a76\u7684\u4fa7\u9762\u89c6\u56fe"} +{"id": "2002839", "video_name": "09b96b39-ab1d-5961-a788-77339f2aaca7", "text": "\u73b0\u5b9e\u4e3b\u4e49\u3001\u6e2f\u53e3\u3001\u9519\u8bef\u76844K\u7535\u5f71\u4e0e\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u3002"} +{"id": "2002840", "video_name": "28e2ef87-079a-588d-a686-2b2689c63b08", "text": "\u4eba\u7269\u5411\u6444\u50cf\u673a\u524d\u8d70\u53bb\u3002"} +{"id": "2002841", "video_name": "8c76a8ef-7aa6-53e7-ba57-0b7d0ff29c4b", "text": "\u9752\u86d9\u4ece\u7a97\u6237\u5f80\u5916\u770b\u3002"} +{"id": "2002842", "video_name": "1dcfc74d-a772-5028-9541-967143a387c2", "text": "\u673a\u5668\u4eba\u5728\u6d77\u6ee9\u4e0a\u884c\u8d70\uff0c\u76ae\u514b\u65af\u5361\u901a\u98ce\u683c\uff0c\u53f2\u8bd7\u6e38\u620f\u56fe\u5f62\u5f15\u64ce\u3002"} +{"id": "2002843", "video_name": "6ad395be-0071-50fa-a5b8-2c686722683a", "text": "\u533b\u9662\u91cc\u6234\u7740\u53e3\u7f69\u7684\u5973\u5b69\u5728\u6838\u653b\u51fb\u540e\u3002"} +{"id": "2002844", "video_name": "4b003de8-7b89-580a-b756-84224b1365a5", "text": "\u5f53\u4ed6\u4eec\u6df1\u5165\u4e1b\u6797\u65f6\uff0c\u8fd9\u4e09\u4e2a\u4eba\u9047\u5230\u4e86\u5f88\u591a\u4e0d\u540c\u7684\u52a8\u7269\u670b\u53cb\u3002"} +{"id": "2002845", "video_name": "90e07b0e-0a10-5792-a8a6-ad358e462b8c", "text": "\u7f8e\u4e3d\u7684\u6751\u6c11\u3001\u519c\u6c11\u548c\u5987\u5973\u805a\u96c6\u5728\u5e02\u573a\u4e0a\u3002"} +{"id": "2002846", "video_name": "f4b468ce-7a4d-53c2-87e1-7ea933b4984b", "text": "\u97f3\u4e50\u626c\u58f0\u5668\u548c\u97f3\u4e50\u8bbe\u5907\uff0c\u58a8\u897f\u54e5\u9762\u5177\u6302\u5728\u5899\u4e0a\uff0c\u771f\u5b9e\u8ff7\u4f60\u68d5\u6988\u5728\u76c6\u4e2d\uff0c\u6750\u6599\uff1a\u751f\u9508"} +{"id": "2002847", "video_name": "f70d5b99-46c7-550a-a036-784d82f4c1ad", "text": "\u65af\u7279\u9f99\u9970\u6f14\u8fea\u58eb\u5c3c\u7535\u5f71\u300a\u7f8e\u98df\u603b\u52a8\u5458\u300b\u4e2d\u7684\u96f7\u7c73\u3002"} +{"id": "2002848", "video_name": "56bd63e2-93f2-54dc-b69d-142428dbf3e7", "text": "\u83b1\u62c9\u5feb\u4e50\u5730\u5531\u7740\u6b4c\uff0c\u5728\u68ee\u6797\u4e2d\u6f2b\u6b65\uff0c\u91c7\u6458\u4e00\u6735\u7f8e\u4e3d\u7684\u767d\u82b1\u3002"} +{"id": "2002849", "video_name": "e819ddac-09d6-5957-b4d5-e50d51eafcca", "text": "\u5c11\u6797\u529f\u592b\u86e4\u87c6\u62f3\u5f0f\u8fd0\u52a8\u6444\u50cf\u5934 16:9\u903c\u771f\u7684\u83b7\u5956\u6444\u5f71\u6280\u672f"} +{"id": "2002850", "video_name": "3a314154-7288-5da3-abaf-c7e41075ccfe", "text": "\u66fe\u5728\u4e00\u5bb6\u8de8\u56fd\u516c\u53f8\u62c5\u4efb\u5206\u516c\u53f8\u7ecf\u7406\u3002"} +{"id": "2002851", "video_name": "894824e0-545f-5018-a733-f9c4cf245bdc", "text": "\u52a8\u6f2b\u5973\u5b69\u5728\u767d\u8272\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "2002852", "video_name": "9d08fc3c-39c8-5014-b6ae-f5aab89d5df4", "text": "\u4e00\u8f86\u6c7d\u8f66\u649e\u8fdb\u623f\u5b50\u7684\u573a\u666f\uff0c8K UHD \u8d85\u903c\u771f\u3002"} +{"id": "2002853", "video_name": "6324f735-3568-5a6d-af8f-7c5834d592fd", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u53ea\u4f18\u7f8e\u7684\u6c34\u6bcd\u5728\u6c34\u4e2d\u6f02\u6d6e\uff0c\u4ecd\u7136\u4fdd\u63013D\u6e32\u67d3\u7684\u7535\u5f71\u611f\u89c6\u89d2\u3002"} +{"id": "2002854", "video_name": "831dbb53-b17b-5f43-b474-7b784898c347", "text": "\u84dd\u5929\u4e0b\uff0c\u6e56\u6c34\u4e0a\uff0c\u6e7f\u5a46\u795e\u8df3\u821e\u3002"} +{"id": "2002855", "video_name": "a60b68e3-1844-54de-a344-9fbb5a659004", "text": "\u5979\u5206\u4eab\u4e86\u5979\u5c0d\u63a2\u7d22\u7684\u71b1\u60c5\u3002\u4ed6\u5011\u61f7\u8457\u597d\u5947\u7684\u5fc3\u60c5\uff0c\u8e0f\u4e0a\u4e86\u767c\u73fe\u4ed6\u5011\u6751\u838a"} +{"id": "2002856", "video_name": "85c1b9aa-929d-5aaf-a9e1-cea44a74e463", "text": "\u4e00\u4e2a\u79d8\u5bc6\u82b1\u56ed\u7684\u6a21\u677f\u52a8\u753b\u3002"} +{"id": "2002857", "video_name": "b3a0da08-f3d1-5e82-9cea-8178625a4692", "text": "\u7537\u4eba\u4ee5\u6f2b\u753b\u98ce\u683c\u5728\u623f\u95f4\u91cc\u7a7f\u8863\u670d\u3002"} +{"id": "2002858", "video_name": "d4d46fc9-668e-52b7-bfdd-a0c201cc489d", "text": "Source sentence: Reed beds are like layers of gentle swaying beauty and tranquility along the riverbank.\n\nSource sentence: The mountain range stood tall and majestic against the backdrop of the setting sun. \n\nTranslation: \u5c71\u8109\u5728\u843d"} +{"id": "2002859", "video_name": "b8df32bf-bab6-5c74-a1c2-ccabecbb322f", "text": "\u4e00\u53ea\u5927\u9ca8\u9c7c\u6355\u98df\u4e00\u6761\u91d1\u67aa\u9c7c\u3002"} +{"id": "2002860", "video_name": "7a0c9fd3-d2d0-5bb0-9c58-961f459acc28", "text": "\u4e00\u53ea\u4e2d\u56fd\u53e4\u4ee3\u9f99\u4ee5\u73af\u5f62\u987a\u65f6\u9488\u65b9\u5411\u98de\u884c\uff0c2D\u56fe\u5f62\uff0c\u6c34\u58a8\u753b\u98ce\u683c\uff0c\u5448\u73b0\u91d1\u9ec4\u8272\u8c03\u3002"} +{"id": "2002861", "video_name": "fed89e0a-bb18-53c7-9fad-65b854cc7f08", "text": "\u732b\u5fae\u7b11\u7740\u8ddf\u89c2\u4f17\u4ea4\u8c08\u3002"} +{"id": "2002862", "video_name": "4ad2a063-60ca-5dd4-9c4f-081b40a3ef99", "text": "\u7279\u65af\u62c9 Plaid \u6c7d\u8f66\u9a76\u8fc7\u8d1d\u62c9\u5409\u5965\u55b7\u6cc9\uff0c\u6d12\u4e0b\u6b22\u4e50\u7684\u8272\u5f69\u3002"} +{"id": "2002863", "video_name": "37a67d28-20ea-5af7-804e-fefa5bdb5e6e", "text": "\u5c55\u793a\u4e00\u4e2a\u52a0\u5bc6\u670b\u514bNFT\u7684\u50cf\u7d20\u6784\u9020\u3002\u539f\u59cb\u989c\u8272\u4f7f\u7528\u6b64\u7cfb\u5217\u7684\u6700\u5e38\u89c1\u7279\u5f81\u548c\u989c\u8272\u3002"} +{"id": "2002864", "video_name": "483033b2-6ad1-586d-9420-d8784b116fb0", "text": "\u4e00\u4e2a\u559d\u5496\u5561\u7684\u5feb\u4e50\u82cf\u683c\u5170\u7537\u4eba\u3002"} +{"id": "2002865", "video_name": "aecb0ffa-42a3-56d3-8413-44d674fcd014", "text": "\u4e00\u67b6\u65e0\u4eba\u6ed1\u677f\u4e0d\u65ad\u5730\u5728\u4e00\u6761\u72ed\u7a84\u800c\u76f4\u7684\u8def\u5f84\u4e0a\u6ed1\u884c\u3002"} +{"id": "2002866", "video_name": "4fef7878-01e5-5a5f-a33c-0972ad942c2e", "text": "\u751f\u6210\u4e00\u5f20\u9ed1\u8272\u6b7b\u795e\u7684\u56fe\u50cf\uff0c\u7ea2\u8272\u80cc\u666f\uff0c\u6b7b\u795e\u6325\u821e\u9570\u5200\uff0c\u4ee5\u7c7b\u4f3c\u6b7b\u795e\u80fd\u91cf\u7684\u6548\u679c\u5207\u5272"} +{"id": "2002867", "video_name": "0d14a1c0-231a-58e7-9d02-45143a7b422c", "text": "\u68ee\u6797\u4e2d\u7684\u52a8\u7269\u4eec\u5f7c\u6b64\u5206\u4eab\u95ee\u9898\u3002\n\nSource sentence: I have a headache and need to rest. \n\u6211\u5934\u75bc\u9700\u8981\u4f11\u606f\u3002"} +{"id": "2002868", "video_name": "c7c478a6-8ac5-5657-bbfd-6f23e4dd343c", "text": "\u65e5\u51fa\uff0c\u653e\u5927\uff0c\u6da1\u8f6e\u589e\u538b\uff0c\u7d2b\u8272\uff0c\u5965\u65af\u5eb7\u4e01\uff0c\u65e5\u51fa\uff0c\u65e5\u843d\uff0c\u5149\u7ebf\u8f90\u5c04\uff0cG2"} +{"id": "2002869", "video_name": "bc855421-41a9-5bbf-9f18-2d07e6eacfcd", "text": "\u7535\u5f71\u822c\u7684\u666f\u8272\uff0c\u58eb\u5175\uff0c\u6218\u540e\uff0c\u955c\u5934\u62c9\u8fdc\uff0c\u8d85\u7ea2\u8272\u3002"} +{"id": "2002870", "video_name": "a627189c-782e-50dc-b719-c305b06e75e1", "text": "\u8fd9\u662f\u5173\u4e8e\u8ba4\u8bc6\u5230\u795e\u6027\u5b58\u5728\u4e8e\u4f60\u5185\u5fc3\uff0c\u4f60\u662f\u65e0\u9650\u5b87\u5b99\u7684\u4e00\u90e8\u5206\u3002"} +{"id": "2002871", "video_name": "5c43ca0f-0f6e-5e6c-a34c-5ffb16131821", "text": "\u516c\u4e3b\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u6b23\u8d4f\u7740\u81ea\u7136\u7f8e\u666f\uff0c\u7f8e\u4e3d\u5f97\u8d85\u4e4e\u60f3\u8c61\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "2002872", "video_name": "ba813937-c6d3-5b34-81df-78eb6f9cc8af", "text": "\u5c55\u793a\u4e00\u7fa4\u4eba\u5728\u4f1a\u8bae\u5ba4\u6109\u5feb\u5730\u8fdb\u884c\u5934\u8111\u98ce\u66b4\u7684\u5546\u4e1a\u6587\u7ae0\u3002"} +{"id": "2002873", "video_name": "481dfbb3-c835-5c47-987a-2972642a89d7", "text": "\u521b\u4f5c\u4e00\u7cfb\u5217\u77ed\u573a\u666f\uff0c\u7a81\u51fa\u5386\u53f2\u4eba\u7269Chanakya\u3002\u901a\u8fc7\u5c06\u620f\u5267\u6027\u89c6\u89c9\u5143\u7d20\u548c\u5386\u53f2\u51c6\u786e\u6027\u76f8\u7ed3\u5408\uff0c\u5c55\u793a"} +{"id": "2002874", "video_name": "3a6eeba7-251e-588e-b961-925475f84024", "text": "\u4fdd\u65f6\u6377\u5728\u6c99\u6f20\u8d5b\u8f66\u4e2d\u4e0e\u6cd5\u62c9\u5229\u548c\u5e03\u52a0\u8fea\u7ade\u4e89\u7684\u9a7e\u9a76\u65b9\u5f0f\u3002"} +{"id": "2002875", "video_name": "a6856b1b-d434-5608-96df-16cb0ea4c676", "text": "\u7a7f\u7740\u76d4\u7532\u7684\u7334\u738b\u6b63\u8d70\u5728\u8302\u5bc6\u7684\u68ee\u6797\u91cc\u3002"} +{"id": "2002876", "video_name": "7c1b1bf5-fe30-554a-bf9e-a5600d005945", "text": "\u4e00\u4e2a\u51fa\u73b0\u5728\u955c\u5b50\u4e2d\u7684\u795e\u79d8\u9ab7\u9ac5\u3002\u672a\u6765\u611f\u5341\u8db3\uff0c\u6df1\u9083\u800c\u95ea\u8000\u7684\u9713\u8679\u8272\u8c03\u3002"} +{"id": "2002877", "video_name": "e203b924-fee0-5d5d-bce6-10845f11601d", "text": "\u4e00\u6761\u9f99\u8df3\u51fa\u4e86\u6cb3\u6c34\uff0c\u65e5\u5f0f\u98ce\u683c\u3002"} +{"id": "2002878", "video_name": "d584c30d-5009-5610-87ad-67529ae896d1", "text": "\u5c55\u73b0\u4e00\u4e2a\u4eba\u5728\u590d\u6742\u56fe\u6848\u7684\u8ff7\u5bab\u4e2d\u63a2\u7d22\u3002\u5c55\u793a\u4ed6\u4eec\u62b5\u8fbe\u8ff7\u5bab\u4e2d\u5fc3\uff0c\u4e00\u675f\u660e\u4eae\u7684\u5149\u6e90\u63ed\u793a\u4e86\u4ed6\u4eec\u4e00"} +{"id": "2002879", "video_name": "d61dd858-deb7-5d18-be05-192c8415f95b", "text": "\u4ed6\u4eec\u4e00\u8d77\u68c0\u67e5\u4e86\u73ab\u7470\uff0c\u53d1\u73b0\u771f\u6b63\u7684\u7f6a\u72af\u662f\u4e00\u7fa4\u6dd8\u6c14\u7684\u5154\u5b50\u54ac\u82b1\u3002"} +{"id": "2002880", "video_name": "33c41a18-f144-528e-8b4e-28eef2904d17", "text": "\u65e0\u8bba\u5b83\u4eec\u4ee5\u4ec0\u4e48\u5f62\u5f0f\u51fa\u73b0\uff0c\u7f8e\u4eba\u9c7c\u4ecd\u7136\u4ee5\u5176\u5438\u5f15\u529b\u548c\u795e\u79d8\u6027\u5438\u5f15\u7740\u6211\u4eec\u3002"} +{"id": "2002881", "video_name": "e5efd046-e35b-5386-ba81-5dccba50e236", "text": "\u4e24\u540d\u6d88\u9632\u5458\u671d\u7740\u706b\u707e\u5954\u8dd1\uff0c\u4eba\u4eec\u5374\u5728\u9003\u79bb\u3002 \n\nSource sentence: The cat jumped on the table and knocked over the vase. \n\u90a3\u53ea"} +{"id": "2002882", "video_name": "89f95b27-05ac-54cc-8da8-781a163f87b4", "text": "\u5c71\u5f62\u86c7\u5f62\uff0c\u4fe1\u606f\uff1aYAROSLAV\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "2002883", "video_name": "ee5f85d1-821c-5444-be2c-cfe3956d2106", "text": "\u4e00\u500b\u5973\u5b69\u7528\u8173\u8dbe\u639b\u5728\u4e00\u68f5\u5012\u6302\u7684\u6a39\u4e0a\u3002"} +{"id": "2002884", "video_name": "afd96e61-db51-5956-af33-cda204c78cc3", "text": "\u5efa\u7b51\u5de5\u4eba\u56db\u5904\u8d70\u52a8\uff0c\u4ed6\u7684\u8138\u88ab\u673a\u5668\u4eba\u8bc6\u522b\u51fa\u6765\u4e86\u3002"} +{"id": "2002885", "video_name": "232c3c61-7831-53b2-b36c-7de4979548b4", "text": "\u513f\u7ae5\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u7684\u56fe\u7247"} +{"id": "2002886", "video_name": "251af942-8414-52bc-a0f3-d6947d4cac46", "text": "\u4ed6\u662f\u4e00\u4f4d\u5546\u4eba\uff0c\u5728\u89c2\u4f17\u9762\u524d\u6f14\u8bb2\uff0c\u8bd5\u56fe\u8bf4\u670d\u4ed6\u4eec\u3002"} +{"id": "2002887", "video_name": "1fc09bd3-6fc9-594e-a039-1038eecba731", "text": "\u73b0\u5b9e\u6e38\u8247\u8230\u961f\u5305\u62ec10\u8258\u6e38\u8247\uff0c\u5904\u4e8e\u6d77\u4e0a\uff0c\u62cd\u6444\u89d2\u5ea6\u4ece\u4e0a\u65b9\uff08\u65e0\u4eba\u673a\uff09\u62cd\u6444\u3002"} +{"id": "2002888", "video_name": "0f92aee3-8958-51a2-9b37-5889dd78bf8e", "text": "\u5728\u963f\u65af\u6587\u6d77\u6ee9\u4e0a\uff0c\u5915\u9633\u897f\u4e0b\uff0c\u5929\u7a7a\u4e2d\u6563\u5e03\u7740\u4e91\u6735\u3002"} +{"id": "2002889", "video_name": "cf93224a-9986-5cd6-9bea-5cb526f8b141", "text": "\u4e00\u6bb5360\u5ea6\u5168\u666f\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4ef6\u62bd\u8c61\u96d5\u5851\uff0c\u5b83\u662f\u4e00\u4e2a\u4e94\u989c\u516d\u8272\u7684\u6ce1\u6ce1\u72b6\u7269\u4f53\uff0c\u5f62\u72b6\u5947\u602a\u3002"} +{"id": "2002890", "video_name": "e2f5d111-5dce-5d84-93d3-f0f49927ecb6", "text": "\u5782\u76f4\u822a\u62cd\u4fef\u77b0\uff0c\u98de\u8d8a\u7530\u91ce\u3001\u6c99\u6f20\u3001\u5fb7\u56fd\uff0c\u6674\u6717\u660e\u5a9a\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c4K\uff0c"} +{"id": "2002891", "video_name": "0b077caf-3212-5891-bb9e-13ff4c932254", "text": "\u54c8\u5409\u6885\u00b7\u7a7a\u5c71\u5c71\u7684\u4f5c\u54c1\u542f\u53d1\u4e86\u591c\u5e97\u4e2d\u7684 Android DJ \u8868\u6f14\u3002"} +{"id": "2002892", "video_name": "836c9b88-50fb-547a-825b-a75b7c2a03d8", "text": "\u6570\u4e2a\u5916\u5f62\u50cf\u4eba\u7c7b\u7684\u5973\u6027\u673a\u5668\u4eba\u5173\u95ed\u7535\u6e90\u5e76\u5012\u4e0b\u3002"} +{"id": "2002893", "video_name": "9beaa244-ffb1-5073-9cab-f8043c42991a", "text": "\u53ef\u7231\u7684\u5929\u4f7f\u548c\u9ed1\u8272\u7684\u6076\u9b54\u4e00\u8d77\u8df3\u821e\uff0c\u8d85\u9ad8\u6e054K\uff0c\u86795\u3002"} +{"id": "2002894", "video_name": "f9adff54-8898-50f7-932d-f05343acaddd", "text": "\u7236\u4eb2\u548c\u4e24\u4e2a\u5973\u513f\u4e00\u8d77\u770b\u65e5\u843d\uff0c\u65c1\u8fb9\u6709\u6930\u5b50\u6811\u3002"} +{"id": "2002895", "video_name": "4ed2113a-202b-5739-ab29-73709f75ed7e", "text": "\u73a9\u5177\u4e16\u754c\u5b89\u9759\u5730\u4f11\u606f\u7740\uff0c\u5728\u6708\u5149\u4e0b\uff0c\u73a9\u5177\u4eec\u5e73\u9759\u5730\u7761\u7740\u3002\u52a8\u753b\u7247\u3002"} +{"id": "2002896", "video_name": "29ba9ee6-0ed1-51e5-95ae-d7b9a37e45df", "text": "\u94a2\u94c1\u4fa0\uff0c\u5982\u679c\u4ed6\u662f\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u3002"} +{"id": "2002897", "video_name": "70cfdeb8-eed6-50a0-a1e1-2f0f9c3daa50", "text": "\u7a97\u5916\u98d8\u7740\u96ea\u82b1\uff0c\u5c4b\u5185\u58c1\u7089\u718a\u718a\u71c3\u70e7\u3002\u751f\u6210\u52a8\u753b\u3002"} +{"id": "2002898", "video_name": "d7750596-baf8-5cce-98c5-728e26923d30", "text": "\u4e00\u53ea\u4e4c\u9f9f\u5750\u5728\u9a6c\u80cc\u4e0a\u5728\u7530\u91ce\u4e0a\u5411\u524d\u8df3"} +{"id": "2002899", "video_name": "91c66371-0d90-5c7e-836d-334a3c84e4e0", "text": "18\u4e16\u7eaa\u7684\u592b\u5987\u5728\u6e56\u524d\u6446\u59ff\u52bf\u62cd\u7167\u3002\u67ef\u8fbe\u514b\u7f57\u59c6\u3002\u83b1\u5361\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002\u9ad8"} +{"id": "2002900", "video_name": "b4dcbf6e-de05-54f5-b5f7-ad8ae7916b41", "text": "\u4f10\u6728\u5de5\u4eba\u7528\u65a7\u5934\u780d\u5730\uff0c\u4e00\u4e2a\u5de8\u5927\u7684\u9505\u4ece\u5730\u4e0b\u5192\u51fa\u6765\u3002"} +{"id": "2002901", "video_name": "a3165953-3b0b-59d2-baae-6b0dd56b21c5", "text": "\u6ed1\u96ea\u52a8\u4f5c\u6fc0\u52a8\u4eba\u5fc3\u7684\u6162\u52a8\u4f5c\u3001\u98de\u821e\u7684\u96ea\u82b1\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u80cc\u666f\u97f3\u4e50\u3002"} +{"id": "2002902", "video_name": "14dbabaa-f500-5ca4-b0c4-9e7a866acd06", "text": "\u767d\u8272\u7684\u5de1\u6d0b\u8230200\u5728\u54c8\u8428\u514b\u65af\u5766\u53f7\u7801\u4e3a677III17\u7684\u6c99\u6f20\u4e0a\u3002"} +{"id": "2002903", "video_name": "de091221-2764-58a4-ba20-959889373976", "text": "\u591c\u665a\u4e00\u4e2a\u6751\u5e84\u4e0b\u4e86\u5927\u96ea\uff0c\u9053\u8def\u548c\u6811\u6728\u88ab\u96ea\u8986\u76d6\uff0c\u9ad8\u6e05\u79fb\u52a8\u56fe\u50cf\u3002"} +{"id": "2002904", "video_name": "8c89621a-b5fb-5dab-9489-43c0e28f448d", "text": "\u5b64\u72ec\u7684\u9e1f\u5728\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "2002905", "video_name": "b80769ef-a447-5e3c-ad8c-7a19b8377c6b", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u8df3\u821e\u3002\u80cc\u666f\u662f\u5b5f\u4e70\u6cf0\u59ec\u9152\u5e97\u3002"} +{"id": "2002906", "video_name": "a8640c16-20ab-5906-b8d3-4c03de224e42", "text": "\u5e15\u6d1b\u65af\u5e0c\u814a\u7684\u65e0\u4eba\u673a\u62cd\u6444\u65e5\u843d\u7535\u5f71\u822c\u7684\u753b\u9762\u3002"} +{"id": "2002907", "video_name": "4f971700-ce54-5237-a4fa-f347875722bd", "text": "\u66f4\u6362\u56fe\u50cf\u4e2d\u7684\u4eba\u7269\uff0c\u5c06\u5176\u8f6c\u5316\u4e3a\u4eba\u7c7b\u5143\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002908", "video_name": "6592c8a9-f9ac-54b9-ac2a-9e9a265a07a1", "text": "\u4e00\u4e2a\u7537\u4eba\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\u8df3\u5411\u592a\u7a7a\u3002"} +{"id": "2002909", "video_name": "0fe26514-2443-5cd6-afa8-b4ab979303f3", "text": "\u63cf\u8ff0\u7761\u524d\u4eea\u5f0f\uff0c\u4f8b\u5982\u62cd\u62cd\u725b\uff0c\u5bf9\u7f8a\u8033\u8bed\u751c\u8a00\u871c\u8bed\uff0c\u7ed9\u9e21\u5531\u67d4\u548c\u7684\u6447\u7bee\u66f2\u30023D\u56fe"} +{"id": "2002910", "video_name": "3bf4cb93-59d4-5079-b020-8156b3d53faf", "text": "\u53ef\u6015\u7684\u7f8e\u4eba\u9c7c\u548c\u300a\u5927\u767d\u9ca8\u300b1970\u5e74\u7535\u5f71\u3002"} +{"id": "2002911", "video_name": "03a7c3e4-637c-5676-b35c-4a8d51723f18", "text": "\u7f8e\u4e3d\u7684\u9732\u53f0\u4e0a\u6709\u4e00\u5f20\u5c0f\u684c\u5b50\u3002\u684c\u5b50\u4e0a\u6446\u7740\u4e00\u53ea\u6f02\u4eae\u7684\u8336\u676f\u548c\u8336\u789f\uff0c\u91cc\u9762\u653e\u7740\u70ed"} +{"id": "2002912", "video_name": "22770c62-e3ab-5826-b505-4819f9fd2bd2", "text": "\u81ea\u7136\u80cc\u666f\u4e0b\u7684\u4e0b\u5348\u597d\u94ed\u6587\u3002"} +{"id": "2002913", "video_name": "9ab43fdd-f514-5124-b5f6-e5a5db68a87b", "text": "\u4e00\u4e2a\u7a7f\u7740\u8759\u8760\u4fa0\u670d\u88c5\u7684\u970d\u6bd4\u7279\u4eba"} +{"id": "2002914", "video_name": "1e6c1f97-e596-58be-9ce8-39f2b093544d", "text": "12\u4e16\u7eaa\uff0cRusichi\uff0c\u5c0f\u961f\uff0c\u6218\u6597\uff0c\u903c\u771f\uff0c\u7167\u7247\u5199\u5b9e\u4e3b\u4e49\uff0c16:9\uff0c4k\u3002"} +{"id": "2002915", "video_name": "e3b86a6c-a2e5-5c4d-8807-686bd541e51d", "text": "\u83ab\u8482\u897f\u5a05\u00b7\u4e9a\u5f53\u65af\u5728\u6050\u6016\u7684\u5730\u4e0b\u5ba4\u8df3\u821e\u3002"} +{"id": "2002916", "video_name": "fa030e3d-e01d-522c-b034-801e4875e74c", "text": "\u4f0a\u5854\u742a\u70cf\u9ce5\u7fbd\u7368\u81ea\u7ad9\u5728\u6771\u4eac\u5854\u4e0a\u3002"} +{"id": "2002917", "video_name": "7de5fc86-0a76-5186-b212-30d13ede73e8", "text": "\u65f6\u95f4\u6d41\u901d\u89c6\u9891\uff0c\u4ece\u65e5\u51fa\u5230\u65e5\u843d\uff0c\u4eba\u5c71\u4eba\u6d77\u7684\u62e5\u6324\u6d77\u6ee9\u3002"} +{"id": "2002918", "video_name": "1f7d252a-bbbd-5180-acd9-55ac6e054daa", "text": "\u88ad\u51fb\u8239\u53ea\u83b7\u53d6\u8fd9\u4e9b\u836f\u7269\u6216\u8d29\u5356\u5b83\u4eec\u7684\u96c7\u4f63\u5175\uff0c\u53ef\u80fd\u662f\u4e0d\u540c\u79cd\u65cf\u548c\u7269\u79cd\u7684\u6df7\u5408\u4f53\u3002"} +{"id": "2002919", "video_name": "2c72de2d-8c6f-500e-8a2f-bf56567c61f8", "text": "\u5c55\u793a\u4e86\u4e00\u4e2a\u6302\u7740\u5404\u79cd\u5f62\u72b6\u949f\u8868\u7684\u623f\u95f4\u3002\u949f\u8868\u6307\u9488\u53cd\u65b9\u5411\u79fb\u52a8\uff0c\u8868\u76d8\u4e0a\u7684\u6570\u5b57\u8fc5\u901f\u53d8\u5316\uff0c\u8425\u9020\u51fa\u4e0d"} +{"id": "2002920", "video_name": "be330e32-4f1d-5ccf-b066-0cd7958493ce", "text": "\u89c6\u529b\u6a21\u7cca\uff0c\u591c\u95f4\u5f00\u5408\u773c\u775b\u3002"} +{"id": "2002921", "video_name": "a1342549-fb27-5365-afb1-07d9cda4a8c3", "text": "\u8ba1\u7b97\u673a\u5c4f\u5e55\u7684\u4e2d\u666f\u955c\u5934\u3002"} +{"id": "2002922", "video_name": "2a1e9253-1823-52d7-857f-5bb66b418ca9", "text": "\u72ee\u5b50\u548c\u5927\u8c61\u5750\u5728\u6cb3\u5cb8\u65c1\uff0c\u601d\u8003\u7740\u4ed6\u4eec\u7684\u4e0b\u4e00\u6b65\u884c\u52a8\u3002\u4ee53D\u52a8\u753b\u5361\u901a\u98ce\u683c\u4e3a\u4e3b\uff0c\u8272\u5f69\u4e30"} +{"id": "2002923", "video_name": "b95efe5a-7115-5ceb-8e7f-b46870d33dce", "text": "\u4e00\u4e2a\u7a7f\u767d\u8272\u4e0a\u8863\u548c\u88d9\u5b50\u7684\u53ef\u7231\u5973\u5b69"} +{"id": "2002924", "video_name": "1f14e289-cb90-500c-b3ec-b5b2a9ae6968", "text": "\u60c5\u4fa3\u5728\u6c99\u53d1\u4e0a\u770b\u6050\u6016\u7535\u5f71\u3002"} +{"id": "2002925", "video_name": "9b67be63-a7c5-554e-ab7f-fc4e1900ab96", "text": "\u751f\u6210\u4e00\u4e2a\u5403\u8611\u83c7\u7684\u7eff\u8272\u4eba\u3002"} +{"id": "2002926", "video_name": "f142e27d-7ebb-5c1a-b76f-3f16978b4b9d", "text": "\u6444\u50cf\u673a\u79bb\u5f00\u4e86\u5b87\u822a\u5458\u3002"} +{"id": "2002927", "video_name": "cfa4b561-f81d-546c-8a39-5c9315549c8e", "text": "\u4e00\u5ea7\u900f\u660e\u5efa\u7b51\u7684\u9ed1\u6697\u62bd\u8c61\u8bbe\u8ba1\uff0c\u914d\u6709\u7d2b\u8272\u548c\u6d77\u519b\u7eff\u8272\u706f\u5149\u3002"} +{"id": "2002928", "video_name": "c64ce174-562c-5caa-afed-9040bb648605", "text": "\u609f\u7a7a\u548c\u8d1d\u5409\u5854\u5728\u7eb3\u7f8e\u514b\u661f\u4e0a\u8fdb\u884c\u4e00\u573a\u53f2\u8bd7\u7ea7\u7684\u6218\u6597\uff0c\u4ed6\u4eec\u5fc5\u987b\u963b\u6b62\u5f17\u5229\u6c99\u83b7\u53d6\u9f99"} +{"id": "2002929", "video_name": "350f11fb-b6e0-5277-934f-e939a99967d9", "text": "\u5728\u767d\u8272\u80cc\u666f\u4e0a\uff0c\u4e00\u540d\u821e\u8005\u6bd4\u8d5b\u4e2d\u8df3\u8857\u821e\u7684\u5faa\u73af\u89c6\u9891\uff0c\u6444\u50cf\u673a\u9010\u6e10\u62c9\u8fdc\u5e76\u65cb\u8f6c\u89c6\u89d2\u3002"} +{"id": "2002930", "video_name": "db53b035-e5e5-569f-aedb-2a1cd0a3afbf", "text": "\u7537\u4eba\u5728\u591c\u665a\u7684\u68ee\u6797\u91cc\u62ff\u7740LED\u624b\u7535\u7b52\u3002"} +{"id": "2002931", "video_name": "0b9862f6-5ac1-5bcc-90f7-4d188f293a31", "text": "\u89e3\u91ca\u5728\u57cb\u846c\u67d0\u4e9b\u4eba\u65f6\u9762\u5411\u9ea6\u52a0\u65b9\u5411\u7684\u91cd\u8981\u610f\u4e49\u3002"} +{"id": "2002932", "video_name": "a62ee6bd-0937-53bb-bb18-f08850960a4e", "text": "\u5e74\u8f7b\u7537\u5b69\u7a7f\u7740\u6574\u9f50\uff0c\u7cfb\u7740\u8170\u5e26\uff0c\u81ea\u4fe1\u5730\u671b\u7740\u524d\u65b9\uff0c\u7ad9\u5728\u7a7a\u65f7\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "2002933", "video_name": "c9314d8b-7f50-5c42-a307-2ab516c0a323", "text": "\u5728\u5730\u7403\u4e0a\u521b\u5efa\u4e00\u4e2a\u5de8\u578b\u65e0\u7ebf\u7535\u6ce2\u7684\u52a8\u753b\u3002"} +{"id": "2002934", "video_name": "22f35c46-02a3-5092-848d-b737003fbd8f", "text": "\u67ec\u57d4\u5be8\u5434\u54e5\u7a9f\u548c\u7f8e\u4e3d\u7684\u5929\u7a7a\u548c\u6c14\u5019\u3002"} +{"id": "2002935", "video_name": "a0e2176f-802c-5cfe-81f5-811f6effa94a", "text": "\u73b0\u4ee3\u7684\u8857\u9053\u4e0a\uff0c\u6709\u4e00\u6761\u53e4\u8001\u7684\u4e2d\u56fd\u9f99\u5728\u7a7a\u4e2d\u76d8\u65cb\uff0c\u521b\u9020\u51fa\u5168\u666f\u89c6\u56fe\u3002"} +{"id": "2002936", "video_name": "f94f7a5d-f62c-5d93-9ea1-f8de1217e59a", "text": "\u5c55\u793a\u4e00\u4e2a\u4eba\u671d\u7740\u4ed6\u4eec\u7684\u76ee\u6807\u8fc8\u51fa\u5c0f\u6b65\u4f10\u7684\u52a8\u753b\u7247\u6bb5\uff08\u6bd4\u5982\uff1a\u5b8c\u6210\u4e00\u4e2a\u9879\u76ee\uff0c\u6269\u5927\u793e\u4ea4\u5708\uff0c\u4e3a\u5065\u5eb7\u76ee\u6807\u953b"} +{"id": "2002937", "video_name": "95e825af-0d54-56d4-b69c-1a178d995405", "text": "\u9ad8\u54c1\u8d28\u30018k\u3001\u8d85\u7ea7\u7ec6\u8282\uff0c\u5200\u53d8\u5f97\u66f4\u5927\uff0c\u5200\u5203\u8df3\u52a8\uff0c\u5149\u8292\u95ea\u8000\uff0c\u77f3\u5934\u6f02\u6d6e\u5411\u4e0a\uff0c\u706b"} +{"id": "2002938", "video_name": "4842bcc1-9176-5363-8add-a27fef4a6de2", "text": "\u8033\u73af\u6447\u6643\uff0c\u95ea\u70c1\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\u3002"} +{"id": "2002939", "video_name": "b7681df1-0ec2-5e77-bfda-666005b2e5f2", "text": "\u5806\u653e\u5728\u8d27\u67b6\u4e0a\u7684\u4ed3\u5e93\u91cc\u7684\u725b\u4ed4\u5e03\u5377\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff1aOVRSTITCH"} +{"id": "2002940", "video_name": "3b4e50c3-c71d-546f-b9b5-cdcd45124e82", "text": "\u5728\u672b\u65e5\uff0c\u8036\u7a23\u9a91\u7740\u9a6c\uff0c\u7a7f\u7740\u7ea2\u8863\u670d\uff0c\u624b\u6301\u4e00\u628a\u5251\uff0c\u4e0e\u4e00\u652f\u5929\u4f7f\u519b\u961f\u4e00\u540c\u5728\u5929\u7a7a\u4e2d\u5411"} +{"id": "2002941", "video_name": "eb7aa0bb-fe66-523f-a78e-4fd289624986", "text": "\u6e38\u6cf3\u6c60\u6c34\u5e73\u9759\u6d41\u52a8\u7684\u56fe\u50cf\u3002\n\nSource sentence: The cat is sleeping on the bed."} +{"id": "2002942", "video_name": "18a68c45-ef95-5a55-8909-4b75735b6e94", "text": "t but not seen.\n\n\u955c\u5934\u62c9\u8fdc\uff0c\u4e00\u4e2a\u9ad8\u5927\u7684\u7537\u4eba\u7ad9\u5728\u7a7a\u5730\u4e0a\u3002\u7956\u5148\u7684\u5f71\u5b50\u73af\u7ed5\u7740\u4ed6\uff0c\u611f\u89c9\u5230\u4ed6\u4eec\u7684\u5b58\u5728\uff0c\u5374\u770b\u4e0d"} +{"id": "2002943", "video_name": "038a410a-f4fc-5008-8e6f-130f650858ba", "text": "\u9633\u5149\u4ece\u4e91\u5c42\u540e\u9762\u5347\u8d77\u3002"} +{"id": "2002944", "video_name": "c75c6d30-1b60-5811-a982-8b42042a59b6", "text": "GG Allin\u548cCeline Dion\u4e00\u8d77\u5531\u5723\u8bde\u6b4c\u3002"} +{"id": "2002945", "video_name": "941499f2-c8e9-579e-b4b4-f0de7e4315e9", "text": "\u5728\u5927\u578b\u4f53\u80b2\u573a\u4e2d\u5173\u6ce8\u6b4c\u624b\uff0c\u5468\u56f4\u6709\u592a\u591a\u4eba\u3002"} +{"id": "2002946", "video_name": "522a0aa0-0a99-5532-b149-525c8e829ba7", "text": "\u5357\u5370\u5ea6\u9760\u8fd1\u6d77\u5cb8\u7684\u5bfa\u5e99"} +{"id": "2002947", "video_name": "0853da77-810e-528f-a3ed-7eb7ed9b6429", "text": "\u672b\u4e16\u96ea\u51ac\u4e2d\u4e00\u4e2a\u6bdb\u9aa8\u609a\u7136\u7684\u5c0f\u5c4b\uff0c\u6beb\u65e0\u751f\u6c14\u3002"} +{"id": "2002948", "video_name": "ff3078cc-4ccf-5f17-8290-073e6409f2e6", "text": "\u68ee\u6797\u548c\u6e56\u6cca\uff0c\u6674\u6717\u7684\u5929\u7a7a\u548c\u7a7f\u84dd\u8272\u8fde\u8863\u88d9\u7684\u5973\u5b69\u5728\u6563\u6b65\u3002"} +{"id": "2002949", "video_name": "56888bca-afd6-53b8-805f-d0cda2a9a641", "text": "\u4e00\u90e8\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u6050\u6016\u7535\u5f71\u98ce\u683c\u76841990\u5e74\u4ee3\u5438\u8840\u9b3c\u96c6\u4f1a\u5bb6\u5ead\u5f55\u50cf\u3002"} +{"id": "2002950", "video_name": "9269dcfc-2e2c-5e8b-b0d3-e6a92cadcb82", "text": "\u66fc\u54c8\u987f\u5e02\u4e2d\u5fc3\u4eba\u7fa4\u805a\u96c6\u5728\u5e7f\u544a\u724c\u524d\uff0c\u56f4\u89c2\u663e\u793a\u77e9\u9635\u5f0f\u4ee3\u7801\u7684\u5e7f\u544a\u724c\u3002"} +{"id": "2002951", "video_name": "4709f4fa-760e-5bbd-a028-ef1408c9c220", "text": "\u5728\u66b4\u98ce\u96e8\u4e2d\u5c79\u7acb\u4e0d\u5012\u7684\u4eba\uff0c\u624b\u63e1\u76fe\u724c\u3002\u4ed6\u4eec\u7684\u59ff\u52bf\u548c\u8868\u60c5\u5e94\u8be5\u6563\u53d1\u51fa\u51b3\u5fc3\u548c\u529b\u91cf\u3002"} +{"id": "2002952", "video_name": "e05a4ddd-68ff-5bef-b3ed-cd87c5d8010d", "text": "\u53e4\u4ee3\u5df4\u52d2\u65af\u5766\u662f\u8bb8\u591a\u53e4\u4ee3\u6587\u660e\u7684\u53d1\u6e90\u5730\uff0c\u5305\u62ec\u8fe6\u5357\u4eba\u3001\u57c3\u53ca\u4eba\u3001\u4e9a\u8ff0\u4eba\u3001\u5df4\u6bd4\u4f26\u4eba\u548c"} +{"id": "2002953", "video_name": "6589d4e8-9420-5821-bb07-24b9aa830d3b", "text": "\u4e00\u7cfb\u5217\u56fe\u50cf\u5c55\u793a\u4e86\u4e00\u68f5\u6811\u5728\u4e0d\u540c\u5b63\u8282\u4e2d\u7684\u53d8\u5316\uff0c\u5f3a\u8c03\u4e86\u79cb\u5929\u843d\u53f6\u3001\u51ac\u5929\u8352\u51c9\u548c\u6625\u5929\u518d\u6b21\u5f00"} +{"id": "2002954", "video_name": "ed21e55b-3803-5c4e-94ed-004414506af2", "text": "\u8fbe\u65af\u7ef4\u8fbe\u548c\u8fc8\u514b\u5c14\u6770\u514b\u900a\u4e00\u8d77\u6253\u7bee\u7403\u3002"} +{"id": "2002955", "video_name": "3a0d1027-5c3a-54f3-a747-1df25d7fedaa", "text": "\u7c89\u8272\u76ae\u80a4\u7684\u7537\u6027\u4ed9\u7075\u65bd\u9b54\u6cd5\uff0c\u955c\u5934\u62c9\u8fdc\uff0c\u53d8\u5f62\u3002"} +{"id": "2002956", "video_name": "3f1a2817-faec-5b2a-a089-a78d8bc921f1", "text": "1985\u5e74\u7684\u5f55\u50cf\uff0c\u7279\u5199\u955c\u5934\u5c55\u73b0\u4e86\u4e00\u4e2a\u9f3b\u5b50\u55c5\u6c14\u7684\u60c5\u666f\u3002"} +{"id": "2002957", "video_name": "3d2c4116-a395-538c-91c2-71d8b69b3cc5", "text": "\u53e4\u8001\u7684\u7ef4\u4eac\u4eba\u623f\u5c4b\uff0c\u5c71\u4e2d\u6751\u5e84\uff0c\u7ef4\u4eac\u5bb6\u5ead\u5750\u5728\u6237\u5916\u3002"} +{"id": "2002958", "video_name": "88835c4c-7fba-5f21-82ee-ae64e793a6d9", "text": "\u54e5\u7279\u5f0f\u98ce\u683c\uff0c\u6559\u5802\u5185\u90e8\uff0c\u591c\u665a\u3002"} +{"id": "2002959", "video_name": "24f4f7f4-963b-57e6-afd4-c482f9a3f15d", "text": "\u4e00\u5e45\u5e26\u6709\u5e0c\u671b\u611f\u7684\u753b\u9762\uff0c\u4f8b\u5982\u535a\u5e15\u5c14\u7684\u65e5\u51fa\u3002"} +{"id": "2002960", "video_name": "c476c24c-c2a1-5855-8a58-f364a9c534fd", "text": "\u8ba9\u56fe\u7247\u91cc\u7684\u732b\u548c\u96ea\u4eba\u73a9\u800d\u3002"} +{"id": "2002961", "video_name": "f14db478-478c-5657-af42-2f11f0ae48df", "text": "\u4e00\u53ea\u767d\u8272\u7684\u732b\u5c31\u50cf\u4e00\u4e2a\u6e05\u65b0\u7684\u7530\u56ed\u4ed9\u5b50\uff0c\u7ad9\u5728\u82b1\u56ed\u91cc\uff0c\u7a7f\u7740\u6d45\u7eff\u8272\u82b1\u88d9\u5b50\uff0c\u5934\u4e0a\u6234"} +{"id": "2002962", "video_name": "c91461fb-4edb-533f-aaac-27393348c4cf", "text": "\u76ae\u96f7\u5c3c\u5c71\u9876\u4e0a\u7684\u65d7\u6746\u5728\u65e5\u843d\u65f6\u6447\u66f3\u7740\u98d8\u52a8\u3002"} +{"id": "2002963", "video_name": "4abc6fe0-8c47-5dbc-96e4-ea6d8b1ef875", "text": "\u751f\u7269\u670b\u514b\u6d41\u6d3e\u63a2\u8ba8\u53cd\u6297\u5a01\u6743\u653f\u6743\u548c\u4f01\u4e1a\u5bf9\u751f\u7269\u6280\u672f\u7684\u5265\u524a\u4ee5\u8c0b\u6c42\u652f\u914d\u548c\u5229\u6da6\u7684\u4e3b\u9898\u3002"} +{"id": "2002964", "video_name": "94a386de-adfe-5298-9c7e-95c5075d960f", "text": "\u7c89\u8272\u70ed\u5e26\u9752\u86d9\u3002\u4e24\u53ea\u773c\u775b\u3002\u56db\u53ea\u722a\u5b50\u3002\u57ce\u5e02\u3002\u70df\u96fe\u30024K\u3002"} +{"id": "2002965", "video_name": "e9fd7b10-7378-54f9-a7f2-55dae192fd2b", "text": "\u4e24\u53ea\u6cf0\u8fea\u718a\u519c\u6c11\u5728\u5de5\u4f5c\u3002"} +{"id": "2002966", "video_name": "15d66dd7-aa51-5250-bb75-fda8829432b1", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5c0f\u4f19\u5b50\u5728\u955c\u5b50\u524d\u7ed9\u81ea\u5df1\u62cd\u8eab\u4f53\u81ea\u62cd\u7167\u3002"} +{"id": "2002967", "video_name": "a18dc2c2-9bfa-51c9-9fa0-7a2116bafcdb", "text": "\u52a8\u6f2b\u4e2d\u7684\u67aa\u5251\u6218\u6597\u3002"} +{"id": "2002968", "video_name": "a92cabfe-ad82-51ab-82db-a00ab47040d6", "text": "\u8fc8\u963f\u5bc6\u6d77\u6ee9\u4e0a\u6709\u6930\u5b50\u548c\u6f02\u4eae\u5973\u5b69\u3002\u4fe1\u606f\uff1a\u5feb\u4e50\u3002"} +{"id": "2002969", "video_name": "57779e52-1661-5c6c-8599-aac44f2076d2", "text": "\u4eba\u4eec\u5728\u9f13\u52b1\u4e0b\u5411\u524d\u558a\u53eb\u3002"} +{"id": "2002970", "video_name": "e08f2879-d516-57e8-ade7-430c84e14359", "text": "\u7531\u7ea2\u8272\u9709\u83cc\u751f\u957f\u7684\u5206\u652f\u7ec4\u6210\u7684\u70bc\u91d1\u7b26\u53f7\uff0c\u573a\u666f\u5728\u767d\u8272\u80cc\u666f\u4e0a\u4ee5\u53e0\u52a0\u65b9\u5f0f\u4f7f\u7528\u3002"} +{"id": "2002971", "video_name": "e4636145-d7d4-5a5b-b440-39486669442d", "text": "\u8ba9\u8774\u8776\u98de\u5417\uff1f\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2002972", "video_name": "a3c648a9-2e2d-5534-bf87-0198778004d7", "text": "\u6df1\u84dd\u8272\u7684\u5929\u7a7a\u4e0a\u5e03\u6ee1\u4e91\u5f69\uff0c\u6708\u5149\u4e0b\u5bc6\u96c6\u7684\u9ed1\u9e1f\u7c07\u62e5\u7740\uff0c\u5b83\u4eec\u4e4b\u540e\u51e0\u4e4e\u770b\u4e0d\u5230\u4efb"} +{"id": "2002973", "video_name": "0dba3152-b862-5a36-a2be-b5b41f929369", "text": "\u4e00\u5f20\u904d\u5e03\u5168\u7403\u7684\u7f51\u7edc"} +{"id": "2002974", "video_name": "d211448b-887b-595e-895a-db370de0f024", "text": "\u9ed1\u53d1\u3001\u7ea2\u5916\u5957\u7684\u5c0f\u5973\u5b69\u548c\u4e00\u53ea\u72d7\u5728\u96fe\u6c14\u4e2d\u7a7f\u8fc7\u6d1e\u7a74\u3002"} +{"id": "2002975", "video_name": "11496d82-22f7-56b7-a30c-ebebdffc1f97", "text": "\u73a9\u5177\u8f66\u5728\u8d5b\u9053\u4e0a\u98de\u9a70\uff0c\u4eff\u4f5b\u771f\u5b9e\u7684\u70ed\u8f6e\u8d5b\u8f66\u3002"} +{"id": "2002976", "video_name": "2c377cdd-8c7c-5616-9899-1e0603f5003d", "text": "\u5b89\u8fbe\u5362\u897f\u4e9a\u9a91\u58eb\u9a91\u5728\u53e4\u8001\u7684\u5b89\u8fbe\u5362\u897f\u4e9a\u57ce\u5e02\u7e41\u5fd9\u7684\u5e02\u573a\u8857\u4e0a\uff0c\u5168\u666f\uff0c\u8d85\u8be6\u7ec6\uff0c\u65e0"} +{"id": "2002977", "video_name": "e4a069aa-f3ff-5b0d-ab39-a91ab626dba1", "text": "\u8d1f\u79bb\u5b50\u88ab\u53d1\u73b0\u6f02\u6d6e\u5728\u7a7a\u6c14\u4e2d\uff0c\u8fd9\u662f\u7269\u7406\u5b9e\u9a8c\u7684\u89c2\u6d4b\u7ed3\u679c\u3002"} +{"id": "2002978", "video_name": "8ecf407d-fa46-5311-b162-13055277ab3a", "text": "\u4ece\u5df4\u585e\u7f57\u90a3\u7684\u8611\u83c7\u9003\u8131"} +{"id": "2002979", "video_name": "d1c17d0d-41da-5b77-97e0-d0f90aecf6ee", "text": "which contained a map leading to a hidden treasure.\n\nTranslation: Elara \u5076\u7136\u53d1\u73b0\u4e86\u4e00\u5f20\u53e4\u8001\u7684\u7f8a\u76ae\u7eb8\uff0c\u4e0a\u9762\u753b\u6709\u4e00\u5f20\u6307\u5411\u9690\u85cf\u5b9d\u85cf\u7684\u5730\u56fe\u3002"} +{"id": "2002980", "video_name": "827a6600-85b1-5b51-baa1-f4d36f898bd2", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u4e86\u9a6c\u5fb7\u91cc\u5929\u9645\u7ebf\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u8258\u5e1d\u56fd\u6bc1\u706d\u8005\u3002"} +{"id": "2002981", "video_name": "559c938a-97a7-5baa-90ea-ce50ae050698", "text": "\u8ba9\u6559\u5e08\u4f20\u8fbe\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "2002982", "video_name": "85ef84ab-2e29-5e6a-872a-28ab979e4d12", "text": "\u6c7d\u8f66\u4eba\u529b\u8f66\u53f8\u673a\u5728\u96e8\u591c\u4e0e\u4e58\u5ba2\u4ea4\u8c08\u3002"} +{"id": "2002983", "video_name": "a40f991a-e61d-5b25-a14b-c590122237ec", "text": "\u4e00\u4e2aUFO\u8ffd\u8e2a\u5c0f\u7ec4\u5728\u6c99\u6f20\u4e2d\u9a7e\u9a76\u7740\u4e00\u8f86\u9762\u5305\u8f66\u5feb\u901f\u9760\u8fd1UFO\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n"} +{"id": "2002984", "video_name": "21d2dcb4-915f-5d18-93ca-94bdc846e4b4", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\uff08\u770b\u8d77\u6765\u50cf\u5409\u7c73\u00b7\u4f69\u5947\uff09\u5728\u4ed6\u590d\u53e4\u7684\u5367\u5ba4\u91cc\u5f39\u7740\u5409\u4ed6\uff0c\u5750\u5728\u5e8a\u4e0a\uff0c4K\u3002"} +{"id": "2002985", "video_name": "3eb9fc74-3363-501e-a211-3f9a7971feac", "text": "\u74e6\u7279\u68ee\u548c\u9b45\u5f71\u5728\u300aApex\u82f1\u96c4\u300b\u4e2d\u5e86\u795d\u3002"} +{"id": "2002986", "video_name": "b31b5d1e-da26-53fe-9412-bbeeec83c816", "text": "\u5965\u5229\u5f17\u70b9\u4e86\u70b9\u5934\uff0c\u6ee1\u5fc3\u671f\u5f85\u5730\u7741\u5927\u4e86\u773c\u775b\u3002"} +{"id": "2002987", "video_name": "d52e95ce-4e0a-576c-b0ae-e58b52d305c6", "text": "20\u4e16\u7eaa80\u5e74\u4ee3\u82f1\u56fd\uff0c\u5177\u6709\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u7f8e\u5b66\u7684\u5408\u6210\u5668\uff0c\u6a21\u62df\u548c\u95ea\u70c1\u7684\u706f\u5149\uff0c\u7eaa\u5f55\u7247\u98ce\u683c\u3002"} +{"id": "2002988", "video_name": "621623cd-5c5c-56e4-b17c-ba00ca7b3990", "text": "\u4e9a\u7279\u5170\u8482\u65af\uff0c\u4e00\u4e2a\u88ab\u5f3a\u98ce\u5439\u62c2\u7684\u5931\u843d\u4e4b\u57ce\u3002\u620f\u5267\u6027\u7684\u7535\u5f71\u822c\u753b\u9762\u3002"} +{"id": "2002989", "video_name": "f033f929-ed11-574e-84a2-d37553197a12", "text": "\u533b\u751f\u4eec\u56f4\u7740\u75c5\u5e8a\u4e0a\u7684\u5973\u75c5\u4eba\u3002"} +{"id": "2002990", "video_name": "e4f68db9-fe58-5836-b996-6446df26d970", "text": "\u53e4\u8001\u7684\u5efa\u7b51\u7269\u662f\u5b66\u4e60\u4e2d\u5fc3\u548c\u8fde\u63a5\u4e16\u754c\u4e4b\u95f4\u7684\u6865\u6881\u3002"} +{"id": "2002991", "video_name": "13f40cb2-e38a-5154-b34b-0699dfeb4456", "text": "\u4e00\u8258\u8239\u5728\u5973\u4eba\u773c\u775b\u7684\u9876\u90e8\u822a\u884c\u3002"} +{"id": "2002992", "video_name": "a1f1799e-d126-55f5-8077-b984310023fe", "text": "\u8bb8\u591a\u86c7\uff0c\u86c7\u5de2\uff0c\u8bb8\u591a\u53ef\u6015\u7684\u86c7\uff0c\u4fef\u89c6\u89d2\u5ea6\uff0c\u9ed1\u767d\u89c6\u9891"} +{"id": "2002993", "video_name": "a3e97185-48cc-57fc-89ea-3f7627ab6fb5", "text": "\u8868\u9762\u4e0a\u7684\u6c34\u6ce5\u4e0a\u523b\u7740\u6570\u5b579\u7684\u51f9\u69fd\uff0c\u8682\u8681\u5728\u5176\u4e2d\u722c\u884c\u3002"} +{"id": "2002994", "video_name": "4b1cc452-2025-5210-9b3e-9b991f00d9ed", "text": "\u5965\u5170\u8fbe\u5e02\u7684\u591c\u95f4\u8282\u65e5\u3002\u7136\u800c\uff0c\u9e7f\u7279\u4e39\u7684\u57c3\u62c9\u65af\u8c1f\u65af\u6865\u662f\u5168\u56fd\u6027\u7684\u3002\u5e93\u80af\u970d\u592b\u82b1"} +{"id": "2002995", "video_name": "a8de67bf-5979-546b-909d-86480fdb9dd7", "text": "\u5566\u5566\u961f\u5458\u5728\u8db3\u7403\u573a\u4e0a\u8df3\u8dc3\u6b22\u547c\u3002"} +{"id": "2002996", "video_name": "7678e5d0-6c66-5c3c-aada-f024432d24f4", "text": "\u7ef5\u7f8a\u7684\u773c\u775b\u7279\u5199\u3002\u4e00\u9897\u53d6\u51fa\u7684\u5fc3\u810f\u5185\u810f\u5668\u5b98\u3002\u5fc3\u810f\u5728\u8df3\u52a8\uff0c\u8840\u6db2\u5728\u6d41\u52a8\u3002\u71c3"} +{"id": "2002997", "video_name": "ba462c52-555c-5c3c-8d37-f7a0e7178d2d", "text": "\u9e1f\u513f\u98de\u7fd4\u5728\u767d\u8272\u80cc\u666f\u4e0a\u7684\u5f71\u5b50\u3002"} +{"id": "2002998", "video_name": "8c21fbe4-3ac2-5b1d-8df6-3637d3487adb", "text": "style buildings can be seen in the background.\n\n\u4e00\u4f4d\u5973\u58eb\u5728\u7f8e\u4e3d\u7684\u6d77\u6ee9\u4e0a\u559d\u5496\u5561\u3002\u80cc\u666f\u4e2d\u53ef\u4ee5\u770b\u5230\u88c5\u9970\u827a\u672f\u98ce\u683c\u7684"} +{"id": "2002999", "video_name": "16ad700c-9920-5418-84b3-473fea7c57a8", "text": "\u5077\u6708\u4eae\u4e0a\u7684\u661f\u661f\uff0c\u5fc3\u5728\u4e91\u7aef\u3002"} +{"id": "4000000", "video_name": "17fe3584-39e6-5903-b77f-ae6c4fa23cce", "text": "\u7a7f\u8d8a\u5c71\u8def\u7684\u56fe\u963f\u96f7\u683c\u8f66\u8f86\u89c6\u9891\u3002"} +{"id": "4000001", "video_name": "659a6ad5-ed68-5a7e-884d-65a1ef653040", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u6444\u50cf\u673a\u524d\u5fae\u7b11\u7740\uff0c\u624b\u91cc\u62ff\u7740\u6bd4\u7279\u5e01\u3002"} +{"id": "4000002", "video_name": "f0c0b89d-4045-58d8-8272-dc6247cc1c28", "text": "\u8759\u8760\u4fa0\u8d70\u8fdb\u6559\u5ba4\uff0c\u91cc\u9762\u5df2\u7ecf\u6709\u5f88\u591a\u5b66\u751f\u4e86\u3002"} +{"id": "4000003", "video_name": "127be259-31f7-5850-b551-98917abab178", "text": "\u57ce\u5e02\u82f1\u96c4\u5f0f\u955c\u5934\u5e7f\u89d2\u62cd\u6444\uff0c\u795e\u79d8\u7684\u8f6e\u5ed3\u4e0b\u6234\u7740\u515c\u5e3d\u7684\u5973\u6027\u751f\u7269\u4ece\u9634\u5f71\u4e2d\u8d70\u51fa\u6765\uff0c"} +{"id": "4000004", "video_name": "a179bdc4-f760-5a3c-b185-c12fe30e0642", "text": "\u65e5\u51fa\u3002\u5728\u53e4\u8001\u7684\u68ee\u6797\u91cc\uff0c\u96fe\u6c14\u5f25\u6f2b\u3002\u4e00\u53ea\u9e7f\u7a7f\u8fc7\u6811\u6797\u3002"} +{"id": "4000005", "video_name": "7e876e88-d3ad-5304-84ae-153e2aa90762", "text": "2Pac\u548cRhoff\u5728\u821e\u53f0\u4e0a\u4e00\u8d77\u8bf4\u5531\uff0c\u9ad8\u6e05\uff0c\u5361\u901a"} +{"id": "4000006", "video_name": "56064e40-4dbf-5a4e-9124-3a88072e3c5f", "text": "\u5927\u7ea6\u4e03\u516b\u5e74\u524d\uff0c\u5f53\u751f\u80b2\u9ad8\u5cf0\u671f\u65f6\uff0c\u6211\u6bcf\u4e2a\u6708\u63a5\u751f\u5927\u7ea6\u516b\u5341\u4e2a\u5a74\u513f\u3002\u6709\u4e00\u4f4d\u5b55\u5987\u7ed9\u6211"} +{"id": "4000007", "video_name": "1c2ee4a1-91b6-5b84-b818-6127096bcc58", "text": "\u4e00\u4f4d\u7a7f\u7740\u6f02\u4eae\u88d9\u5b50\u7684\u53ef\u7231\u5ba1\u7f8e\u5973\u5b69\u5728\u73a9\u8857\u673a\u6e38\u620f\u3002"} +{"id": "4000008", "video_name": "301c8add-c54c-5891-8320-d15a1835ad45", "text": "\u4e00\u53ea\u9e1f\u98de\u8fc7\u5c3c\u4e9a\u52a0\u62c9\u7011\u5e03\u3002"} +{"id": "4000009", "video_name": "e8e0fcf3-c272-591e-9a35-f7d85f256161", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u624b\u6301\u957f\u5251\u5728\u7af9\u6797\u4e2d\u3002 \n\nSource sentence: The sun sets behind the mountains, casting a golden glow over the valley. \n\n\u592a\u9633\u843d\u5c71\u5728\u5c71\u540e\uff0c\u4f7f"} +{"id": "4000010", "video_name": "2bab0ed5-8903-54e9-bc6f-032909a5c36c", "text": "\u4e00\u4e9b\u90e8\u843d\u4eba\u6b63\u5728\u5c06\u72ee\u5b50\u8d76\u5165\u68ee\u6797\u3002"} +{"id": "4000011", "video_name": "4806f12a-bc76-596d-b12f-73b36a307518", "text": "\u5206\u652f\u4e0a\u6709\u51e0\u53ea\u7ea2\u8272\u7684\u6731\u96c0\u548c\u96ea\u3002"} +{"id": "4000012", "video_name": "7a37d154-1890-5a44-a034-ad3e38c0364d", "text": "\u7687\u5e1d\u7684\u5f62\u8c61\u662f\u4e00\u4e2a\u9ad8\u5927\u6709\u529b\u7684\u7537\u4eba\u3002"} +{"id": "4000013", "video_name": "42bdf519-4388-5c56-a00a-ffc5efcd6fb1", "text": "\u4e24\u53ea\u732b\u5728\u5c71\u9876\u4e0a\u3002"} +{"id": "4000014", "video_name": "337e03fa-b465-5625-8704-21311e702490", "text": "\u5728\u4e00\u4e2a\u6709\u9633\u5149\u7a97\u6237\u7684\u672a\u6765\u4e3b\u4e49\u6559\u5ba4\u91cc\uff0c\u4e00\u4f4d\u5e74\u8f7b\u7684\u6559\u5e08\u7ad9\u5728\u5927\u5c4f\u5e55\u524d\u9762\u6559\u5b66\uff0c\u5979\u9762\u5bf9\u7740\u5b66"} +{"id": "4000015", "video_name": "cfd57056-9f62-56e9-8d8c-949ece61b287", "text": "\u4e00\u4f4d\u5973\u58eb\u63a5\u53d7\u91c7\u8bbf\uff0c\u5173\u4e8e\u5979\u5728\u5e0c\u814a\u5ea6\u5047\u7684\u7ecf\u5386\u3002"} +{"id": "4000016", "video_name": "15c06416-5f08-5dfb-a7ca-16c84f218846", "text": "4\u53ea\u6d63\u718a\u5728\u5361\u585e\u5c14\u7684\u4e16\u754c\u6587\u5316\u9057\u4ea7\u5927\u529b\u58eb\u96d5\u50cf\u524d\u559d\u5564\u9152\u8df3\u821e\u3002\u8d85\u903c\u771f\u3002"} +{"id": "4000017", "video_name": "de57fce2-10a9-5e41-9c64-96ffb1d18187", "text": "\u7528\u5929\u7136\u6c34\u6676\u5236\u6210\u7684\u5723\u8bde\u6811\u5728\u591c\u7a7a\u4e2d\u95ea\u8000\u7740\u660e\u4eae\u7684\u5149\u8292\u3002"} +{"id": "4000018", "video_name": "e89c3445-e486-57a2-9d8d-5cdd12f54a72", "text": "\u592a\u9633\u662f\u4e00\u4e2a\u75b2\u60eb\u7684\u6a59\u8272\u7403\u4f53\uff0c\u4e0e\u96fe\u973e\u640f\u6597\uff0c\u6c89\u5165\u597d\u83b1\u575e\u5c71\u540e\uff0c\u6295\u5c04\u51fa\u957f\u957f\u7684\u9634"} +{"id": "4000019", "video_name": "1a558c61-4aa7-550d-a986-ec34dbaf5fbe", "text": "\u4e00\u4e2a\u4ece\u4e0a\u65b9\u770b\u7684\u5e26\u6709\u8721\u70db\u548c\u7cd6\u971c\u7684\u751f\u65e5\u86cb\u7cd5\uff0c\u903c\u771f\uff0c\u6ed1\u79fb\u3002\u4fe1\u606f\uff1a\u7c73\u4e3d\u5b89 (\u5b57\u4f53\uff1a\u590d"} +{"id": "4000020", "video_name": "acfb411e-6caa-5f82-8814-6854ec851b64", "text": "\u4e00\u4e2a\u77ed\u53d1\u9ed1\u8272\u5934\u53d1\u7684\u5973\u5b69\uff0c\u5750\u5728\u5979\u7684\u9ed1\u6697\u623f\u95f4\u91cc\uff0c\u5728\u7535\u8111\u524d\u3002\u6784\u56fe\u4ece\u4fa7\u9762\u62cd\u6444\u8fd9\u5f20\u7167\u7247\u3002"} +{"id": "4000021", "video_name": "d653b1f5-0d97-539c-a1a0-ba5b7cff2995", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u524d\u603b\u7406\u5750\u7262\u5e76\u5750\u5728\u6905\u5b50\u4e0a\u3002"} +{"id": "4000022", "video_name": "c0fa1f9b-323c-5675-bd0c-d3e7f94bc439", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u5728\u7eff\u5e55\u80cc\u666f\u4e0b\u4ee516:9\u5206\u8fa8\u7387\u8bf4\u8bdd30\u79d2\u3002"} +{"id": "4000023", "video_name": "f5e0dc90-00f8-5ad1-9253-bc08010a59fa", "text": "\u4e00\u4e2a\u957f\u53d1\u3001\u7a7f\u77ed\u88e4\u3001\u8eab\u6750\u82d7\u6761\u7684\u7537\u5b50\uff0c\u9a91\u7740\u4e00\u8258\u55b7\u6c14\u5f0f\u6ed1\u6c34\u8247\u5728\u6d77\u4e0a\u75be\u9a70\uff0c"} +{"id": "4000024", "video_name": "3db0e6b9-f8da-58b5-ba1e-195322041d55", "text": "\u7a7f\u7740\u98d8\u9038\u7ea2\u88d9\u7684\u5973\u4eba\u5728\u5ba4\u5185\u79d1\u5e7b\u73af\u5883\u4e2d\u8df3\u8dc3\uff0c\u5168\u5c40\u5149\u7167\u3002"} +{"id": "4000025", "video_name": "1411762c-fcf5-5b0d-a591-7acb5c2b9995", "text": "\u4e09\u4f4d\u5e0c\u814a\u5973\u6027\u5750\u5728\u684c\u5b50\u65c1\u4ea4\u8c08\uff0c\u4ee5lofi\u827a\u672f\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4000026", "video_name": "c42f6a6d-c5d9-5084-b66e-19dab06e4ee9", "text": "\u4e00\u4f4d\u7985\u5b97\u5927\u5e08\u6b63\u5728\u4e0e\u4ed6\u7684\u5c0f\u7537\u5b69\u4ea4\u8c08\u3002"} +{"id": "4000027", "video_name": "c4925c17-8044-5a50-9504-b98bd427792e", "text": "\u4e00\u4e2a\u7fa4\u4f53\u5728\u672a\u6765\u8df3\u821e\u3002"} +{"id": "4000028", "video_name": "85fa83ee-2029-5171-9834-0695f2f6f7aa", "text": "\u4e00\u53f0\u4f7f\u7528\u95ea\u5149\u706f\u7684\u5c3c\u5eb7Z6ll\u76f8\u673a\u62cd\u7167\u3002"} +{"id": "4000029", "video_name": "7911693c-7102-5e9c-a131-d3a4a28799e5", "text": "\u4e00\u5f20\u52a8\u753b\u56fe\u7247\uff0c\u63cf\u7ed8\u4e86\u4e00\u4e2a\u96d5\u5851\u5bb6\u5728\u4ece\u7236\u4eb2\u5b66\u5230\u6210\u529f\u7ecf\u9a8c\u540e\uff0c\u6ee1\u610f\u7684\u8868\u60c5\u3002"} +{"id": "4000030", "video_name": "a1d79b70-982a-5e4a-918c-11e29e17e6f7", "text": "\u6211\u5e0c\u671b\u60a8\u89c9\u5f97\u8fd9\u4e00\u96c6\u6709\u5e2e\u52a9\u3002\u5982\u679c\u60a8\u6709\u4efb\u4f55\u95ee\u9898\u6216\u610f\u89c1\uff0c\u8bf7\u968f\u65f6\u5728\u4e0b\u65b9\u7559\u8a00\u3002"} +{"id": "4000031", "video_name": "1278cdeb-b8db-5d2c-9196-3a9c2d54bb9c", "text": "\u4e00\u53ea\u72d7\u8dd1\u8fdb\u4e86\u6811\u6797\u3002"} +{"id": "4000032", "video_name": "a55a6848-a7fb-57eb-9388-4b34910d8c13", "text": "\u53e4\u5e0c\u814a\u54f2\u5b66\u5bb6\u8fa9\u8bba\u7684\u753b\u9762\u3002"} +{"id": "4000033", "video_name": "70336351-fd85-5cb3-9dfd-47c9cc1aa670", "text": "\u4e00\u5ea7\u7535\u5f71\u822c\u57fa\u4e8e\u4eba\u5de5\u667a\u80fd\u7684\u57ce\u5e02\uff0c\u5305\u62ec\u96a7\u9053\u3001\u98de\u884c\u5217\u8f66\u3001\u98de\u884c\u6c7d\u8f66\u548c\u53d1\u5149\u7684\u623f\u5c4b\uff0c\u5c31\u50cf\u65f6\u95f4"} +{"id": "4000034", "video_name": "2d3b511c-97b4-5ecd-9c72-a311619f7998", "text": "\u5b66\u751f\u4e0e\u9a6c\u5e93\u65af\u00b7\u5965\u96f7\u5229\u4e4c\u65af\u548c\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u4ea4\u8c08\u3002"} +{"id": "4000035", "video_name": "0476407a-9f48-5126-a4b7-400da5ec0f67", "text": "\u4e00\u4f4d\u91d1\u53d1\u5973\u5b50\u5728\u91d1\u95e8\u5927\u6865\u524d\u8bb2\u8bdd\u3002"} +{"id": "4000036", "video_name": "06a08da7-d3cc-589c-b0c7-f090aa93b247", "text": "\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5fae\u7b11\u7740\uff0c\u7728\u4e86\u4e00\u53ea\u773c\u3002"} +{"id": "4000037", "video_name": "fb10196c-34c9-5eee-bd45-3c41d888a030", "text": "\u4e00\u53ea\u7f8a\u9a7c\u57281978\u5e74\u963f\u6839\u5ef7\u5480\u56bc\u624b\u69b4\u5f39\u76844K\u7535\u5f71\u3002"} +{"id": "4000038", "video_name": "92115aa0-6fc1-5023-8d2d-c38647110030", "text": "\u53ef\u7231\u7684\u5c0f\u718a\u62e5\u62b1\u7740\u53e6\u4e00\u53ea\u718a\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "4000039", "video_name": "49af849f-d490-559b-9d62-00e680b9ca2c", "text": "\u4ee5\u70df\u96fe\u7684\u5f62\u5f0f\u79fb\u52a8\u3002\n\nSource sentence: The sun sets in the west. \n\n\u592a\u9633\u5728\u897f\u8fb9\u843d\u4e0b\u3002"} +{"id": "4000040", "video_name": "17a2f9b2-ca38-5b6b-90c1-28b25dc49f4f", "text": "\u4e00\u4e2a\u4eba\u9a91\u9a6c\u5728\u8499\u53e4\u8349\u539f\u4e0a\uff0c\u53f2\u8bd7\u822c\u7684\u65e0\u4eba\u673a\u955c\u5934\u3002"} +{"id": "4000041", "video_name": "5bfa274e-7e8f-5c53-bb69-b684fb3a62c6", "text": "\u7535\u5f71\u9ed1\u8272\u7535\u5f71\uff0c\u7535\u5f71\u753b\u9762\uff0c\u4e00\u4e2a\u5973\u4eba\u548c\u4e24\u4e2a\u7537\u4eba\u5750\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u623f\u95f4\u91cc\uff0c\u4ed6\u4eec\u7684\u8138\u770b\u4e0d\u6e05\uff0c\u6444\u50cf\u673a\u62c9\u8fdc"} +{"id": "4000042", "video_name": "d0c076e0-97f3-5217-8a4a-c14f21791509", "text": "\u4e00\u4e2a\u591c\u665a\u7684\u706f\u5854\uff0c\u706f\u5149\u7167\u8000\u5728\u7531\u4e66\u672c\u7ec4\u6210\u7684\u6d77\u6d0b\u4e0a\u3002"} +{"id": "4000043", "video_name": "a7800452-4fcd-52ab-881e-cb5dd5a5facb", "text": "\u7535\u5f71\u5316\uff1a\u955c\u5934\u75be\u901f\u62c9\u8fd1\u5230\u4e00\u4e2a\u5e74\u8f7b\u957f\u53d1\u95ed\u7740\u773c\u775b\u7684\u5deb\u5e08\u5728\u6708\u5149\u4e0b\u51a5\u60f3\uff0c\u7f13\u7f13\u7741\u5f00\u4ed6"} +{"id": "4000044", "video_name": "33b586ba-3368-51bc-80dd-3e67f0b435f7", "text": "\u65e9\u6668\u6709\u98ce\u7684\u5927\u5411\u65e5\u8475\u7530\u3002 \n\nSource sentence: I am looking forward to seeing you soon. \n\u6211\u671f\u5f85\u7740\u5f88\u5feb\u89c1\u5230\u4f60\u3002"} +{"id": "4000045", "video_name": "a5d5afbf-5d4c-5f7d-bed9-7118cfa56943", "text": "\u821e\u53f0\u5df2\u7ecf\u4e3a\u51b3\u6218\u505a\u597d\u4e86\u51c6\u5907\uff0c\u57281948\u5e74\uff0c\u968f\u7740\u82f1\u56fd\u7edf\u6cbb\u7684\u7ed3\u675f\uff0c\u4ee5\u8272\u5217\u5ba3\u5e03\u72ec\u7acb\u3002"} +{"id": "4000046", "video_name": "a2fd2410-ba2c-51a5-8491-66c3606b462b", "text": "\u4e00\u53ea\u84dd\u773c\u732b\u5728\u5954\u8dd1\u548c\u8df3\u8dc3\u3002"} +{"id": "4000047", "video_name": "b8ea08b6-798c-526b-a019-93c475bd47ea", "text": "\u4e00\u540d\u4e09\u5341\u5c81\u521d\u7684\u7537\u5b50\u7a7f\u7740\u5229\u7269\u6d66\u7403\u8863\u8e22\u8fdb\u4e86\u4e00\u4e2a\u8db3\u7403\u8fdb\u7403\u3002"} +{"id": "4000048", "video_name": "b2dbd326-2543-52ec-8509-f22decbda72e", "text": "\u4e00\u4e2a\u6cd5\u5e08\u5728\u68ee\u6797\u4e2d\u65bd\u6cd5\uff0c\u80cc\u540e\u6709\u4e00\u4e2a\u5927\u6708\u4eae\uff0c\u5199\u5b9e\u98ce\u683c\u3002"} +{"id": "4000049", "video_name": "4e9297c6-30cb-5e32-9b08-34137b27e673", "text": "\u5728\u6885\u62c9\u8282\u4e0a\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5728\u591c\u666f\u4e2d\u4eab\u53d7\u548c\u8df3\u821e\u3002"} +{"id": "4000050", "video_name": "786deee5-214a-5ef2-bd30-21e2169576fd", "text": "\u4fdd\u7f57\u00b7\u6c83\u514b\u548c\u8303\u00b7\u8fea\u585e\u5c14\u5c06\u57282023\u5e74\u7684\u7535\u5f71\u4e2d\u4f7f\u7528\u89c6\u9891\u548c3D\u52a8\u753b\u6548\u679c\u3002"} +{"id": "4000051", "video_name": "379b397a-6bfe-5d9d-afd4-5e1a13b1b7c6", "text": "\u5723\u8bde\u8282\u5728\u70ed\u5e26\u56fd\u5bb6\u7684\u5bb6\u5ead\u3002"} +{"id": "4000052", "video_name": "0d36b4a5-6f13-52e4-b59c-460921cdcc2f", "text": "\u4e00\u4e2a\u4eba\u751f\u4e2d\u7684\u8270\u82e6\u5de5\u4f5c\u5728\u623f\u95f4\u91cc\u3002"} +{"id": "4000053", "video_name": "88289163-f5cf-5b1c-bd60-edea886c439a", "text": "\u5728\u767d\u8272\u548c\u9ec4\u8272\u80cc\u666f\u4e0a\u5c55\u793aAIR MAX\u8033\u673a\u7684\u5e7f\u544a\uff0c\u914d\u6709\u76d2\u5b50\u548c\u767d\u8272\u7167\u660e\u3002"} +{"id": "4000054", "video_name": "5ba0264c-50b5-5515-8209-d2d617e61733", "text": "\u5728\u591c\u665a\u8d70\u7740\u5e26\u7740\u811a\u956f\u7684\u811a\u6b65"} +{"id": "4000055", "video_name": "103606ca-568f-5bf9-acb2-cc8e805eb90d", "text": "\u95ea\u56de\u5e8f\u5217\u3001\u79bb\u5947\u7684\u661f\u7403\u3001\u4e94\u5f69\u7f24\u7eb7\u7684\u5916\u661f\u4eba\u3001\u591a\u6837\u7684\u955c\u5934\u7c7b\u578b\u3002"} +{"id": "4000056", "video_name": "351fb326-5018-55c2-a2e4-99b7881ccce2", "text": "\u4e00\u5ea7\u54e5\u7279\u5f0f\u4e2d\u4e16\u7eaa\u6559\u5802\u548c\u6559\u58eb\u5728\u5c0f\u6559\u5802\u91cc\uff0c\u65e2\u771f\u5b9e\u53c8\u4e0d\u771f\u5b9e\u3002"} +{"id": "4000057", "video_name": "d8b66579-cc37-5111-a311-59c6634af678", "text": "\u52a0\u91cc\u00b7\u6839\u65af\u52d2\u5728\u6bd4\u7279\u5e01\u81ea\u52a8\u53d6\u6b3e\u673a\u524d\u3002"} +{"id": "4000058", "video_name": "b6cfac40-3205-570a-8845-47b8b97b8837", "text": "\u661f\u7403\u5927\u6218\u4e3b\u9898\u66f21\u5206\u949f\u7535\u5f71"} +{"id": "4000059", "video_name": "a47ffa0b-94c9-595c-a6b7-e0455226637f", "text": "\u4e00\u53ea\u6253\u76f9\u7684\u732b\uff0c\u4e00\u6bb5\u89c6\u9891\u8bb0\u5f55\u732b\u62ac\u5934\u4f4e\u5934\u7684\u77ac\u95f4\u3002"} +{"id": "4000060", "video_name": "8cc6877f-27dd-5fc2-90c9-baf63e718caf", "text": "\u6d77\u6ee9 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4000061", "video_name": "9f2e8e8d-97d7-5c06-be47-07972325cec3", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u804a\u5929\u673a\u5668\u4eba\uff0c\u57fa\u4e8e\u7528\u6237\u7684\u504f\u597d\u548c\u4e4b\u524d\u7684\u9009\u62e9\uff0c\u5e2e\u52a9\u7528\u6237\u53d1\u73b0\u548c\u63a8\u8350\u4e66\u7c4d\u3001\u7535\u5f71\u3001\u97f3\u4e50\u548c\u5176\u4ed6\u5f62\u5f0f\u7684"} +{"id": "4000062", "video_name": "384ca2c8-e573-51c6-833f-2e7112b2e561", "text": "\u72ec\u81ea\u7684\u7537\u4eba\uff0c\u7ad9\u5728\u5c71\u8c37\u91cc\uff0c\u98ce\u4ece\u80cc\u540e\u5439\u6765\uff0c2D\u52a8\u753b\uff0c\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "4000063", "video_name": "311476ba-3e1e-5db9-808e-b30de293a788", "text": "\u718a\u732b\u559c\u6b22\u5728\u5ca9\u77f3\u7684\u7f1d\u9699\u4e2d\u751f\u80b2\u5c0f\u5b9d\u5b9d\u3002"} +{"id": "4000064", "video_name": "6895e576-9dc8-516c-bab3-49ca86a5fb44", "text": "\u725b\u5728\u5929\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "4000065", "video_name": "36873016-b4b7-5284-8136-555f03429c1b", "text": "\u4eba\u4eec\u4ece\u4e00\u9897\u6838\u5f39\u88ad\u51fb\u57ce\u5e02\u4e2d\u9003\u79bb\uff0c4K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u7535\u5f71\u7ea7\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "4000066", "video_name": "e696231a-6c37-521c-b18b-b565d241e27a", "text": "19\u4e16\u7eaa\u5171\u6d4e\u4f1a\u58eb\u7684\u519b\u4e8b\u5f71\u50cf\u3002"} +{"id": "4000067", "video_name": "c528cd48-a56e-5eac-98ab-0c4751129584", "text": "\u4e00\u540d\u5973\u5b50\u60ac\u6302\u5728\u60ac\u5d16\u8fb9\u4e0a\u3002"} +{"id": "4000068", "video_name": "a97cb57f-aa83-5a1c-ab8f-7fc02c56e3e5", "text": "\u4eba\u5f62\u673a\u5668\u4eba\u6234\u73cd\u73e0\u8033\u73af\uff0c\u7535\u5f71\u706f\u5149\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0cCG\u6e32\u67d3\uff0c\u4f53\u79ef\u5149\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "4000069", "video_name": "feee0eda-cdde-5027-9888-2d98ff8e0555", "text": "\u5de8\u5927\u7684\u98d3\u98ce\u5e2d\u5377\u4e86\u4e00\u4e2a\u6751\u5e84\u3002"} +{"id": "4000070", "video_name": "7b0724fd-a9ce-5660-a916-63ad37c3a373", "text": "\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\uff0c\u5934\u4e0a\u6ee1\u662f\u9ed1\u8272\u7684\u7537\u5b50\uff0c\u8138\u4e0a\u6ca1\u6709\u9762\u5b54\u800c\u662f\u9ed1\u6697\u3002"} +{"id": "4000071", "video_name": "b832820d-5083-5621-b5c0-7b34d6e04ad7", "text": "\u4e00\u500b\u7f8e\u9e97\u7684\u6751\u838a\u65c1\u6709\u4e00\u5ea7\u623f\u5b50\uff0c\u80cc\u666f\u662f\u4e00\u500b\u6e05\u6670\u7684\u6708\u8272\u660e\u6717\u7684\u5929\u7a7a\u3002"} +{"id": "4000072", "video_name": "ade9c5d4-e41f-5259-8aac-4490aafaaa42", "text": "\u5a1c\u5854\u8389\u00b7\u6ce2\u7279\u66fc\u5728\u706b\u7130\u80cc\u666f\u4e0b\uff0c4K\u89c6\u9891\uff0c\u4e30\u5bcc\u7684\u7ec6\u8282"} +{"id": "4000073", "video_name": "f7972e78-4e7d-5062-994f-f1c7063cc291", "text": "\u9ad8\u5c14\u592b\u4ff1\u4e50\u90e8\u5973\u5b69\u3002\u4fe1\u606f\uff1aLightSPA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000074", "video_name": "88cf53a3-cb23-5204-b61e-f6ba03e8d1f8", "text": "\u5c06\u6d41\u661f\u5212\u8fc7\u5c4f\u5e55\uff0c\u4f5c\u4e3a\u8c61\u5f81\u68a6\u60f3\u548c\u62b1\u8d1f\u8d77\u98de\u7684\u9690\u55bb\uff0c\u878d\u5165\u5176\u4e2d\u3002"} +{"id": "4000075", "video_name": "48abbd86-27ed-56a3-a349-4ad6ef7d3209", "text": "CCG\u8c03\u67e5\u5458\u6709\u9a6c\u4ee5\u5168\u9ad8\u6e05\u65e0\u6162\u52a8\u4f5c\u7684\u65b9\u5f0f\u7ed8\u5236\u3002"} +{"id": "4000076", "video_name": "a1837ded-2626-5a81-92b7-f0bb0fcab5e1", "text": "\u6709\u4eba\u5728\u63a2\u7d22\u4e00\u4e2a\u8fb9\u7f18\u5730\u5e26\uff0c\u8d70\u5728\u6c60\u623f\u548c\u540e\u623f\u95f4\u91cc\uff0c\u6ca1\u6709\u58f0\u97f3\uff0c\u9ad8RTX\u8d28\u91cf\u975e\u5e38\u903c\u771f\uff0c\u5e76\u7528VHS\u5f55\u5236"} +{"id": "4000077", "video_name": "878a3d8e-c384-5d57-9b5a-0ca33e340f10", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u672c\u806a\u5e26\u7740\u6bd4\u7279\u5e01\u4e0e\u4ee5\u592a\u574a\u6597\u4e89\u3002"} +{"id": "4000078", "video_name": "0afab882-46c9-5ed8-8963-a3a4a7536d3b", "text": "\u667a\u6167\u7684\u8001\u4eba\u5728\u65e5\u843d\u65f6\u51dd\u89c6\u7740\u5c71\u8109\u3002"} +{"id": "4000079", "video_name": "a0eb5269-c4bb-5c95-8e4a-8085946b1e45", "text": "\u4e00\u4e2a\u5973\u5b69\u665a\u4e0a\u53bb\u4e1b\u6797\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4000080", "video_name": "2fff7a69-f2d6-52a4-878a-4aca1a124e95", "text": "\u4e00\u6839\u5355\u72ec\u7684\u8721\u70db\u6447\u66f3\u4e0d\u5b9a\uff0c\u98ce\u683c\u53e4\u602a\uff0c\u8272\u8c03\u6734\u5b9e\uff0c\u6709\u7740\u7075\u6027\u57fa\u7840\u3002"} +{"id": "4000081", "video_name": "8bc9dc39-4104-5f3f-b028-7460e6f77b25", "text": "\u65e5\u5185\u74e6\u7684\u529e\u516c\u697c\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u6c7d\u8f66\u5728\u5efa\u7b51\u7269\u524d\u7ecf\u8fc7\u3002\n\nSource sentence: I love listening to music while I work, it helps me to concentrate. \n\n\u6211\u559c"} +{"id": "4000082", "video_name": "63d54bbc-422b-5ee1-8f90-6d0ede25066b", "text": "\u72ee\u5b50\u5e26\u7740\u4e00\u79cd\u65e2\u597d\u7b11\u53c8\u6148\u7965\u7684\u5fc3\u60c5\u6ce8\u89c6\u7740\u8001\u9f20\u3002"} +{"id": "4000083", "video_name": "e7b5e936-edd7-570f-ae43-ca1f0b7753b1", "text": "\u7f8e\u4e3d\u7684\u5973\u738b\u6234\u7740\u4e00\u9876\u7f8e\u4e3d\u7684\u591a\u5f69\u5929\u9645\u7ebf\u7687\u51a0\u3002"} +{"id": "4000084", "video_name": "9bb0962c-f602-5cb2-9e2f-fa82e6b5b3d7", "text": "\u4e9a\u6d32\uff0c\u4e2d\u56fd\uff0c\u53e4\u5178\uff0c\u7537\u6027\u6c14\u6982\uff0c\u94a2\u7b4b\u6df7\u51dd\u571f\u4e16\u754c\u3002"} +{"id": "4000085", "video_name": "afa74e0c-dff3-5d12-aa43-e13ce89c7704", "text": "\u6e29\u99a8\u7684\u5496\u5561\u5e97\uff0c\u6709\u6728\u5236\u6905\u5b50\u3001\u684c\u5b50\u548c\u79cd\u7740\u690d\u7269\u7684\u73a9\u5177\u5531\u7247\u3002"} +{"id": "4000086", "video_name": "5c201d60-a4de-53ea-90bc-3166a6573219", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u88ab\u9633\u5149\u7b3c\u7f69\u7740\u62e5\u62b1\u5728\u4e00\u8d77\u7684\u573a\u666f\uff0c\u8425\u9020\u51fa\u6d53\u6d53\u7684"} +{"id": "4000087", "video_name": "74e8f013-30ba-56c2-bb68-de5745ec8f65", "text": "\u53ef\u6301\u7eed\u7684\u57ce\u5e02\u4e2d\u7684\u53ef\u6301\u7eed\u5efa\u7b51\u3002"} +{"id": "4000088", "video_name": "4dc83610-0720-58dd-811f-44c6fcfb60f5", "text": "\u65af\u62c9\u592b\u88d4\u7684\u5973\u5b69\u5728\u672b\u65e5\u88ab\u70e7\u6bc1\u7684\u57ce\u5e02\u4e2d\u95f4\uff0c\u5979\u7ad9\u5728\u9ea6\u514b\u98ce\u524d\u6f14\u5531\u5e76\u5f39\u5409\u4ed6"} +{"id": "4000089", "video_name": "d15c982f-76ed-56ca-9213-86cf4a4fd9fb", "text": "\u5357\u975e\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u5b69\u5b50\u4eec\u5728\u516c\u56ed\u91cc\u559d\u6c34\u3002"} +{"id": "4000090", "video_name": "88ebdbd2-ac9e-5c8f-bbe3-7cbe0017a7ff", "text": "\u4e00\u4e2a\u6cd5\u5ead\u6cd5\u5b98\u7528\u53cc\u624b\u906e\u4f4f\u773c\u775b\uff0c\u903c\u771f\u7ec6\u81f4\u3001\u7535\u5f71\u7ea7\u3001\u8fd0\u52a8 5\u300124 \u5e27\u6bcf\u79d2\u3001\u6444\u50cf\u673a\u79fb\u52a8"} +{"id": "4000091", "video_name": "53dfe19f-9d30-5689-a838-4d982ebffc7e", "text": "\u7537\u4eba\u7684\u6307\u7532\u522e\u5728\u95e8\u4e0a\uff0c\u7559\u4e0b\u4e86\u7edd\u671b\u7684\u5212\u75d5\u3002"} +{"id": "4000092", "video_name": "dc6af5b6-3b20-58e4-ba22-75a734b4745b", "text": "\u8ba9\u4e91\u5728\u68ee\u6797\u4e2d\u96f7\u52a8\uff0c2D\u52a8\u753b"} +{"id": "4000093", "video_name": "ff8923f1-9764-5d12-a3f2-ea2f3afb4b46", "text": "\u9ed1\u8272\u76841976\u5e74\u79d1\u5c14\u7ef4\u7279\u808c\u8089\u8dd1\u8f66\u8ddf\u968f\u3002"} +{"id": "4000094", "video_name": "edff4311-ef1d-524d-a2d2-dca3145518aa", "text": "\u8001\u4eba\u8c08\u8bba\u4ed6\u5728\u68ee\u6797\u91cc\u770b\u5230\u7684\u5947\u602a\u751f\u7269\u3002"} +{"id": "4000095", "video_name": "fbf93055-20e1-576c-a119-14d7a2bb0555", "text": "\u4e00\u573a\u5728\u7ebd\u7ea6\u7684\u6c7d\u8f66\u8ffd\u9010\u3002"} +{"id": "4000096", "video_name": "d2376c37-7962-598d-9208-b2602cffd984", "text": "\u718a\u6234\u7740VR\u773c\u955c\u5411\u76f8\u673a\u770b\u53bb\uff0c\u80cc\u666f\u662f\u5728\u6d53\u96fe\u4e2d\u7684\u7834\u65e7\u6b8b\u57a3\u65ad\u6728\uff0c\u591c\u665a\u7684\u68ee"} +{"id": "4000097", "video_name": "f25e9950-e539-53ce-a519-893c40d0dcb7", "text": "\u674e\u5965\u00b7\u80af\u5c3c\u8fea\u8d70\u5728\u7535\u5f71\u822c\u7f8e\u4e3d\u7684\u8d85\u73b0\u5b9e4K\u6697\u6a21\u5f0f\u5149\u5f71\u4e0b\u3002"} +{"id": "4000098", "video_name": "c8550e8a-81e0-5eac-99b4-9325677766e9", "text": "\u62cd\u6444\u4e8e1990\u5e74\u4ee3\u7684\u7535\u5f71\u300a\u65b9\u821f90\u300b\uff0c\u5728\u6cd5\u9662\u5165\u53e3\u5904\uff0c\u8eab\u7740\u767d\u8272\u8863\u670d\u548c\u767d\u8272\u9762\u7f69\u7684\u6297\u8bae\u8005\u624b\u6301\u624b\u7535"} +{"id": "4000099", "video_name": "9b0a2c4c-6903-5390-9f21-27cd6829ab98", "text": "\u6d77\u8c5a\u5728\u9ed1\u8272\u5929\u7a7a\u4e2d\u6e38\u6cf3\u5e76\u4f34\u968f\u7740\u6765\u81ea\u632a\u5a01\u7684\u6781\u5149\uff0c\u8fdb\u884cHDR\u7f29\u653e\u3002"} +{"id": "4000100", "video_name": "048ff3e2-7a35-5ea9-8980-c9ebc8292f6b", "text": "\u5e9e\u5927\u7684\u9ad8\u4e2d\u5efa\u7b51\uff0c\u6709\u8bb8\u591a\u9752\u5c11\u5e74\u3002"} +{"id": "4000101", "video_name": "c92d92f9-4e17-5355-a5d4-b08765b49cff", "text": "\u4ed6\u4eec\u4e00\u8d77\u628a\u6ce8\u610f\u529b\u8f6c\u56de\u4fdd\u62a4\u57ce\u5e02\uff0c\u628a\u51b2\u7a81\u7684\u56de\u58f0\u7559\u5728\u8eab\u540e\u3002"} +{"id": "4000102", "video_name": "a0ac1c1a-efae-5cdc-aacb-8b57f67ed116", "text": "\u52a8\u753b\u98ce\u683c\u7684\u52a8\u6f2b\uff0c\u6241\u5e73\u9634\u5f71\uff0c\u7537\u4eba\u7ad9\u7740\u4e0d\u52a8\uff0c\u4e71\u84ec\u84ec\u7684\u91d1\u53d1\uff0c\u68d5\u8272\u7684\u773c\u775b\uff0c\u5934\u53d1\u5feb"} +{"id": "4000103", "video_name": "53ca1559-e66b-54f9-b035-139c0bdb4e1c", "text": "\u4e00\u6bb5\u98de\u673a\u5728\u706b\u5899\u4e2d\u5760\u6bc1\u7684\u89c6\u9891\u3002"} +{"id": "4000104", "video_name": "029434a9-18fd-5e4f-9653-db4d7926d4e8", "text": "\u8ba9\u8fd9\u5f20\u56fe\u7247\u4ee5\u7535\u5f71\u98ce\u683c\u5411\u524d\u8d70\u3002"} +{"id": "4000105", "video_name": "58ee27a5-381c-532f-bd8b-93a3bd3610e3", "text": "\u4e00\u4e2a\u6709\u87ba\u65cb\u773c\u775b\u548c\u89e6\u624b\u7684\u6709\u8da3\u84dd\u8272\u5916\u661f\u751f\u7269\u3002"} +{"id": "4000106", "video_name": "daba0dd8-8f3b-5072-a693-9a9f28f6834b", "text": "\u73b0\u5b9e\u76848K\u70df\u82b1\u89c6\u9891\uff0c\u52a8\u6001\uff1a4\u3002"} +{"id": "4000107", "video_name": "74ae783a-ecb7-59ee-b61c-ce6623ea2e15", "text": "\u52a8\u753b\u56fe\u50cf\u4e2d\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u548c\u4e00\u53ea\u9e66\u9e49\uff0c\u968f\u540e\u5e94\u8be5\u663e\u793a\u201c\u6a31\u6843\u5361\u901a\u201d\u6587\u672c\u3002"} +{"id": "4000108", "video_name": "ea09f193-d7da-5e9c-b972-9b87cdac9347", "text": "Lady Gaga\u5728\u6e38\u6cf3\u6c60\u91cc\u8df3\u821e\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4000109", "video_name": "b36a2f89-6a2c-5027-a46f-44ed7b4be89a", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u90a3\u91cc\uff0c\u4f4e\u7740\u5934\uff0c\u5468\u56f4\u6240\u6709\u4eba\u90fd\u5728\u5954\u8dd1\u3002\u5929\u7a7a\u662f\u7ea2\u8272\u7684\uff0c\u96fe\u6c14\u4e5f\u662f\u7ea2\u8272\u7684\u3002\u9ad8\u6e0516:"} +{"id": "4000110", "video_name": "26b84b23-081b-5e88-8a6f-b80899ff899b", "text": "\u5f3a\u58ee\u7684\u7537\u5b50\u4e0e\u4ed6\u6700\u5927\u7684\u6050\u60e7\u8fdb\u884c\u6b7b\u4ea1\u6e38\u620f\u3002"} +{"id": "4000111", "video_name": "a2ac8530-977a-51f7-86f1-d6651e6cbd51", "text": "\u4e00\u4e2a\u7a7f\u7740\u590f\u65e5\u88d9\u88c5\u7684\u7f8e\u4e3d\u5973\u5b69\u5728\u65e5\u843d\u65f6\u5206\u5954\u8dd1\u7a7f\u8fc7\u82b1\u7530\u3002"} +{"id": "4000112", "video_name": "99e13f8d-a29a-5e61-8a89-b531b2304ec1", "text": "\u6218\u6597\u573a\u666f\uff0c\u4e24\u540d\u52c7\u58eb\uff0c\u5947\u5e7b\u8bbe\u5b9a\uff0c4K\uff0c\u903c\u771f\uff0c\u6726\u80e7\uff0c\u98ce\u5439\u3002"} +{"id": "4000113", "video_name": "3f0b2396-b7b5-5aef-8e5d-5a6d8d1e75d5", "text": "\u4e00\u4f4d\u5973\u6027\u7528\u7c89\u8272\u6253\u706b\u673a\u62bd\u7740\u9999\u80a0\u70df\u3002"} +{"id": "4000114", "video_name": "c592a223-f7aa-580a-989c-343169387752", "text": "\u9c7c\u7f38 \u4fe1\u606f\uff1aASHY\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000115", "video_name": "832d53d5-022d-5c3c-a60a-57ade3e30901", "text": "YouTube\u89c6\u9891\u521b\u4f5c\u7684\u865a\u62df\u5de5\u4f5c\u5ba4\u3002"} +{"id": "4000116", "video_name": "8c29ef1a-cb8d-5704-b945-10a35df75c2f", "text": "\u661f\u9645\u65c5\u884c\uff0c\u5361\u901a\u5b87\u822a\u5458\u5728\u592a\u7a7a\u4e2d\u65c5\u884c\uff0c\u5b87\u5b99\u98de\u8239\uff0c\u94f6\u6cb3\u7cfb\uff0c\u661f\u4e91\uff0c\u9065\u8fdc\u7684"} +{"id": "4000117", "video_name": "9ea2e4e9-a976-565a-bcfc-1c06a1331b69", "text": "\u4e00\u4f4d\u50e7\u4fa3\u7ad9\u5728\u91cf\u5b50\u8ba1\u7b97\u673a\u524d\uff0c\u4ee5\u7f57\u6770\u00b7\u8fea\u91d1\u65af\u7535\u5f71\u98ce\u683c\u7684\u672a\u6765\u79d1\u5e7b\u573a\u666f\u3002"} +{"id": "4000118", "video_name": "09be1e8f-88d2-5b10-b10f-3efc0255787b", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u9ed1\u767d\u7259\u9f7f\u7684\u9b3c\uff0c\u8001\u5f0f\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "4000119", "video_name": "8177a131-4f06-504b-9f88-a47fc6f4701c", "text": "\u4e00\u90e8\u63cf\u8ff0\u706f\u5854\u5728\u66b4\u98ce\u96e8\u4e2d\u76841970\u5e74\u4ee3\u827a\u672f\u7535\u5f71\u3002"} +{"id": "4000120", "video_name": "fe7061ed-dfea-5ed4-87da-58c897e87aad", "text": "\u4e00\u4e2a\u4eba\u8fc7\u5ea6\u601d\u8003\u751f\u6d3b\u548c\u5bb6\u5ead"} +{"id": "4000121", "video_name": "505ce403-0e06-5779-a4ac-924a4a9f1884", "text": "\u5973\u4eba\u7684\u773c\u775b\u95ea\u8000\u7740\u7d2b\u9ed1\u8272\u7684\u5149\u8292\u3002"} +{"id": "4000122", "video_name": "d2cf43bc-8af9-55e2-98e0-ae7f8c702c88", "text": "\u773c\u775b\u79fb\u52a8\uff0c1\u4e2a\u9644\u4ef6\u6d88\u606f\u3002"} +{"id": "4000123", "video_name": "8a671d5c-7f75-573e-b1a8-9ea54e6dc74c", "text": "\u6807\u9898\u753b\u9762\u4e0a\u7684\u201c\u5f00\u59cb\u6e38\u620f\u201d\u6309\u94ae\u6b63\u5728\u95ea\u70c1\u3002"} +{"id": "4000124", "video_name": "de420d86-2831-59f6-b09c-389db51934f7", "text": "\u9001\u8d27\u6469\u6258\u8f66\u6b63\u5728\u88c5\u8f7d\u5e76\u5411\u57ce\u9547\u8fd0\u9001\u3002"} +{"id": "4000125", "video_name": "5776d5fd-9de3-5079-9973-de030ef28341", "text": "\u4e54\u00b7\u62dc\u767b\u7ad9\u5728Scentsy\u603b\u90e8\u524d\uff0c\u8eab\u540e\u662f\u6302\u7740Scentsy\u516c\u53f8\u6807\u5fd7\u7684\u5efa\u7b51\u7269\uff0c\u4ed6\u81ea\u8c6a\u5730\u5fae\u7b11\u7740\u3002"} +{"id": "4000126", "video_name": "17ac220a-5ff9-564b-93df-d24c7e7fdf73", "text": "\u5e74\u8f7b\u7684\u8bb0\u8005\u6b63\u5728\u5bfb\u627e\u4e00\u4e2a\u60ca\u5fc3\u52a8\u9b44\u7684\u6545\u4e8b\u3002\u9ed1\u591c\u4e2d\uff0c\u4ed6\u7a7f\u7740\u68d5\u8272\u7684\u886c\u886b\uff0c\u80cc\u7740\u68d5\u8272\u7684"} +{"id": "4000127", "video_name": "bf5d2cf9-f067-5c62-987a-78c2a32e18d8", "text": "\u53f2\u83b1\u514b\u9003\u79bb\u4e00\u53ea\u9ec4\u8272\u7684\u72d7\u3002"} +{"id": "4000128", "video_name": "b8df7245-7e62-55cb-be10-d8e80561cdb0", "text": "\u732b\u6551\u4e86\u5b83\u7684\u670b\u53cb\u9c7c\uff0c\u4f7f\u5176\u514d\u4e8e\u88ab\u9f99\u9ca8\u6349\u8d70\u3002"} +{"id": "4000129", "video_name": "c12624b9-76f8-57da-8b62-6cb1d3df85f5", "text": "3D\u52a8\u753b\u7537\u5b69\u5b69\u5b50\u8df3\u821e\u5e76\u5c1d\u8bd5\u6355\u9c7c\u3002"} +{"id": "4000130", "video_name": "2e7a3cbd-17c1-535f-96f0-9a885c01b2c5", "text": "\u4e00\u4e2a\u5927\u5e73\u623f\u5927\u5385\uff0c\u5e7b\u60f3\u822c\u7684\u5916\u89c2\u7f8e\u4e3d\u800c\u795e\u79d8\u3002"} +{"id": "4000131", "video_name": "8a635c10-4d57-5b48-b031-b4251f558b31", "text": "\u793e\u4f1a\u56e0\u5f53\u524d\u95ee\u9898\u800c\u5d29\u6e83\uff0c\u8ba9\u4e00\u4e9b\u4eba\u611f\u5230\u7edd\u671b\u548c\u538b\u529b\uff0c\u56e0\u4e3a\u4ed6\u4eec\u6ca1\u6709\u5b8c\u6210\u6240\u6709\u5de5\u4f5c\u3002"} +{"id": "4000132", "video_name": "463eed48-7cfc-5e27-a5f2-e6357e75f7fc", "text": "\u6210\u5343\u4e0a\u4e07\u7684\u98de\u673a\u5728\u6218\u573a\u4e0a\u7a7a\u76d8\u65cb\uff0c\u8425\u9020\u51fa\u7535\u5f71\u822c\u903c\u771f\u7684\u573a\u666f\uff0c4K\u89c6\u9891\u3002"} +{"id": "4000133", "video_name": "ea9eb8c9-2ada-5adb-913c-503d6d57907c", "text": "\u4e00\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u88ab\u72ee\u5b50\u8ffd\u8d76\uff0c\u903c\u771f\u3002"} +{"id": "4000134", "video_name": "c2fcd303-2460-5875-8e22-66d91da40e43", "text": "\u6545\u4e8b\u7684\u9053\u5fb7\u5bd3\u610f\uff1a\u6545\u4e8b\u6700\u540e\u4ee5\u5f3a\u8c03\u540c\u4f34\u4e4b\u95f4\u548c\u8c10\u5408\u4f5c\u7684\u9053\u5fb7\u5bd3\u610f\u4f5c\u4e3a\u7ed3\u5c3e\uff0c\u7a81\u51fa\u4e86\u4e0d\u548c\u4e0e"} +{"id": "4000135", "video_name": "b0205233-1ae7-5a23-879b-0e8b0abb8462", "text": "\u706b\u4e0e\u6c34\u7684\u821e\u8e48"} +{"id": "4000136", "video_name": "298e1696-0bf0-552d-8181-1eacf9e0a3bd", "text": "\u4e00\u4f4d\u767d\u8272\u7684\u62a4\u58eb\u5de7\u5999\u5730\u7ba1\u7406\u6709\u9650\u7684\u8d44\u6e90\u3002"} +{"id": "4000137", "video_name": "3bba090b-5699-561e-8e37-f8e375a078a2", "text": "Snow\u662f\u4e00\u53ea\u7070\u8272\u7684\u5c0f\u732b\uff0c\u6bdb\u8338\u8338\u7684\u8eab\u4f53\u5728\u5bd2\u98ce\u4e2d\u98a4\u6296\u3002"} +{"id": "4000138", "video_name": "c7894353-0403-5aa6-9f2c-fd2c7c148ee3", "text": "\u4e00\u4e2a\u975e\u5e38\u5feb\u901f\u65cb\u8f6c\u7684\u5149\u7ebf\u7269\u4f53\uff0c\u5176\u5468\u56f4\u6709\u5e7d\u7075\u98de\u821e\uff0c\u5149\u7ebf\u6298\u5c04\u3002"} +{"id": "4000139", "video_name": "15e5b786-72de-53a1-91f9-1b3f3209004f", "text": "\u4e00\u90e8\u6050\u6016\u7535\u5f71\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u6c11\u95f4\u4f20\u8bf4\u7535\u5f71\uff0c\u590d\u53e4\u98ce\u683c\u7684\u8001\u5f0f\u795e\u79d8\u89d2\u8272\u2014\u2014\u571f\u5c4b\u8389\u6c99\u3002"} +{"id": "4000140", "video_name": "3c4061a5-e497-5350-907c-6d482e953287", "text": "\u6717\u5a1c\u00b7\u5fb7\u857e\u4f5c\u4e3a\u4e16\u754c\u603b\u7edf"} +{"id": "4000141", "video_name": "9685bd63-5cbd-5174-b27a-eecb4d538974", "text": "\u8d85\u9ad8\u7684\u6c7d\u8f66\u5728\u975e\u5e38\u672a\u6765\u4e3b\u4e49\u7684\u57ce\u5e02\u4e2d\uff0c\u4f7f\u7528GoPro\u76f8\u673a\u4ece\u8f66\u7a97\u62cd\u6444\uff0c\u52a0\u5165\u76f8\u673a\u6ee4\u955c\uff0c\u771f\u5b9e\u903c\u771f\u7684\u5bbd\u89d2\u753b"} +{"id": "4000142", "video_name": "8797b70d-7542-5859-a573-a612d171dbde", "text": "\u4e2d\u56fd\u5c71\u6c34\u753b\u98ce\u683c\uff0c\u9e1f\u5728\u4e07\u5c71\u98de\uff0c\u4eba\u5728\u5343\u5f84\u9690\u3002\u72ec\u9493\u5bd2\u6c5f\u96ea\u3002"} +{"id": "4000143", "video_name": "2d93ebdf-40a9-57dc-9e3c-9403559d7da4", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u9ed8\u9ed8\u5730\u7ad9\u5728\u6597\u517d\u573a\u3002"} +{"id": "4000144", "video_name": "c8d3bffb-d047-5906-887f-f13f61b62a3a", "text": "\u8eab\u4e0a\u7eb9\u6ee1\u523a\u9752\u7684\u6027\u611f\u5973\u5b50\u671d\u955c\u5934\u6bd4\u4e2d\u6307\u3002"} +{"id": "4000145", "video_name": "dcb97cb4-98d7-5c08-80e4-c2220c86e81e", "text": "\u7535\u5f71\uff0c\u620f\u5267\u7535\u5f71\uff0c\u4e24\u4e2a\u4eba\u5728\u516c\u56ed\u6563\u6b65\uff0c\u6674\u6717\u7684\u65e5\u5b50\uff0c\u5feb\u4e50\uff0c\u6162\u52a8\u4f5c\uff0c\u957f\u955c\u5934"} +{"id": "4000146", "video_name": "23e751e6-202e-5c9d-b83f-a86df0ce55b9", "text": "\u4f0a\u6717\u7684\u56fd\u738b\u7a7f\u7740\u5438\u8840\u9b3c\u7684\u670d\u88c5"} +{"id": "4000147", "video_name": "06cdd268-a1f5-56be-ada6-19ab3894128e", "text": "\u4e00\u53ea\u7eff\u8272\u548c\u7d2b\u8272\u7684\u5154\u5b50\u5728\u505a\u997c\u5e72\uff0c\u5e76\u5fae\u7b11\u3002"} +{"id": "4000148", "video_name": "99b0ddd3-de70-5765-bb66-5b5a91ae9e7b", "text": "\u6253\u5f00\u4e00\u672c\u795e\u79d8\u7684\u4e66\uff0c\u9ed1\u6697\u7684\u80cc\u666f\uff0c\u4e00\u675f\u9633\u5149\uff0c\u7535\u5f71\u611f\uff0c4K\u3002"} +{"id": "4000149", "video_name": "2909bef4-cb03-53d3-b84a-6137faa5d1cd", "text": "\u585e\u65af\u00b7\u5e0c\u5229\u624b\u6301\u4e00\u628a\u5f69\u8679\u5251\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8eCyril Rolando\uff0c\u6355\u6349\u5149\u7ebf\u6548\u679c\uff0c\u7206\u70b8\u7684"} +{"id": "4000150", "video_name": "12172ecf-e88b-53f6-9b3c-7dadf1c11802", "text": "\u4e00\u4e2a\u5fae\u7b11\u7740\u7684\u6709\u7fc5\u8180\u7684\u706b\u817f\uff0c\u6234\u7740\u592a\u9633\u955c\u7684\u9999\u80a0\uff0c\u8fd8\u6709\u4e00\u5757\u914d\u6709\u5976\u6cb9\u7684\u732a\u6392"} +{"id": "4000151", "video_name": "7db9955a-8b33-5f2b-9a1b-032e71cbecdd", "text": "\u6ce5\u77f3\u6d41\u5f9e\u5c71\u9802\u6e67\u4e0b\uff0c\u6cbf\u659c\u5761\u5954\u6d41\u800c\u4e0b\uff0c\u76f4\u5230\u9054\u5230\u5cfd\u8c37\u5e95\u90e8\uff0c\u7e7c\u7e8c\u6cbf\u8457"} +{"id": "4000152", "video_name": "fa236233-b845-5271-ac90-6d22b09fdbd1", "text": "\u5370\u5ea6\u6587\u660e\uff0c\u7279\u522b\u662f\u6052\u6cb3\u6d41\u57df\u6587\u660e"} +{"id": "4000153", "video_name": "12a4b857-d606-542f-923d-cb7404635757", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u5c0f\u9547\u4e0a\uff0c\u4f4f\u7740\u4e00\u4e2a\u53eb\u5c0f\u9648\u7684\u7537\u5b69\u3002\u6bcf\u5929\uff0c\u5c0f\u9648\u90fd\u9762\u5bf9\u7740\u5c0f\u5c0f\u7684\u6311\u6218\uff0c"} +{"id": "4000154", "video_name": "34447b7e-e1af-5b9e-b8b2-7336fe261fa3", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u548c\u4e00\u53ea\u8001\u864e\u73a9\u800d\u3002"} +{"id": "4000155", "video_name": "b2450da8-a19d-5f00-b8db-b6d59bceb090", "text": "\u4e00\u7fa4\u5b66\u751f\u5750\u5728\u7b49\u8f66\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u50cf\u76ae\u514b\u65af\u76843D\u52a8\u753b\u3002"} +{"id": "4000156", "video_name": "3086d9d1-b884-596f-a61c-a7be20062942", "text": "\u4e00\u5bf9\u8863\u670d\u7834\u70c2\u7684\u592b\u5987"} +{"id": "4000157", "video_name": "64f2f6c4-0b17-5912-b2a6-e81d1e8f4353", "text": "\u795e\u5947\u7684\u3001\u95ea\u95ea\u53d1\u5149\u7684\u8d28\u611f\uff0c\u53e0\u52a0\uff0c\u5e7b\u60f3\uff0c\u7f8e\u4e3d\uff0c\u8fb9\u7f18\u7684\uff0c\u795e\u79d8\u7684\u3002"} +{"id": "4000158", "video_name": "676c8e64-1b98-561b-81fe-7ad2e31479e8", "text": "\u5979\u5feb\u901f\u9003\u8dd1\uff0c\u5728\u9e45\u5375\u77f3\u94fa\u6210\u7684\u8857\u9053\u4e0a\uff0c\u8d70\u8fc7\u6765\u5e76\u5fae\u7b11\u3002"} +{"id": "4000159", "video_name": "da657731-9749-51d2-b819-4d4a4013c50d", "text": "\u5728\u6d77\u6ee9\u4e0a\u505a\u7231\u7684\u4e00\u5bf9\u592b\u59bb\u3002"} +{"id": "4000160", "video_name": "7df7dff9-9aca-52a7-8a6f-bb9a4c6ce078", "text": "\u4e00\u4e2a\u540d\u53eb\u4e54\u79d1\u7684\u7537\u4eba\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u6ee1\u8db3\u800c\u6c89\u601d\u3002"} +{"id": "4000161", "video_name": "170d7463-759f-5a5c-a97e-5705f536c1ca", "text": "\u751f\u6210\u4e00\u5f20\u5145\u6ee1\u6fc0\u60c5\u7684\u5370\u5ea6\u5bf9\u5df4\u57fa\u65af\u5766\u7684\u677f\u7403\u6bd4\u8d5b\u7684\u56fe\u7247\uff0c\u5305\u62ec\u4e00\u5ea7\u6324\u6ee1\u89c2\u4f17\u7684\u4f53\u80b2"} +{"id": "4000162", "video_name": "72665f11-9b36-56ce-90a4-2bd3e2af3c2b", "text": "\u7a0e\u52a1\u8282\u7701 iOS \u5e94\u7528\u7684\u6807\u5fd7\u8bbe\u8ba1"} +{"id": "4000163", "video_name": "8d003415-43be-5a4a-aad8-80d33052d316", "text": "\u4e00\u9897\u5c0f\u884c\u661f\u6b63\u671d\u5730\u7403\u98de\u6765\uff0c\u6709\u4eba\u5728\u623f\u5b50\u91cc\u3002"} +{"id": "4000164", "video_name": "6a01cc20-a13c-5e90-a98b-f85245053b35", "text": "\u5fae\u98ce\u8f7b\u8f7b\u5439\u62c2\uff0c\u5979\u7684\u5934\u53d1\u98d8\u52a8\uff0c\u9664\u6b64\u4e4b\u5916\u4e00\u5207\u90fd\u9759\u6b62\u4e0d\u52a8\u3002"} +{"id": "4000165", "video_name": "e9bb8689-4c1a-522c-9cd3-4eb7946f0e82", "text": "\u5988\u5988\u62b1\u7740\u8df3\u82ad\u857e\u821e\u7684\u5973\u513f\u3002"} +{"id": "4000166", "video_name": "38ba6170-d5a0-5423-b526-9783ca21bf62", "text": "\u4ed6\u4eec\u7ad9\u5728\u9ed1\u6697\u68ee\u6797\u7684\u95e8\u69db\u524d\uff0c\u5bf9\u65c5\u7a0b\u5145\u6ee1\u4e0d\u786e\u5b9a\u6027\u3002"} +{"id": "4000167", "video_name": "e111b948-07be-5ee2-9b78-86a2c50e120d", "text": "\u4e00\u5217\u672a\u6765\u4e3b\u4e49\u60ac\u6d6e\u5217\u8f66\u7a7f\u8fc7\u6c99\u6f20\u3002"} +{"id": "4000168", "video_name": "5f336182-5874-53b1-98d2-f92a97a2c3c2", "text": "\u5b87\u5b99\u4e2d\u80fd\u91cf\u7684\u5b87\u5b99\u7f51\u7edc\u3002"} +{"id": "4000169", "video_name": "8a4909ae-1175-53bc-b7e0-d4ed48e5a440", "text": "\u6708\u7403\u8868\u9762\u4e0a\uff0c\u5b87\u822a\u5458\u7684\u811a\u5370\u7559\u5728\u7070\u5c18\u4e0a\u3002"} +{"id": "4000170", "video_name": "75d0e63c-2417-5896-a03d-7d346b64bca2", "text": "\u53cc\u5c42\u5df4\u58eb\u6885\u8d5b\u5fb7\u65afG\u7ea7"} +{"id": "4000171", "video_name": "5b7d1554-5bab-52bd-94c3-b4d0bc0df983", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u53e4\u6734\u7684\u5c0f\u6751\u5e84\u91cc\uff0c\u5b83\u6df1\u6df1\u5730\u85cf\u5728\u4e00\u4e2a\u9b54\u6cd5\u68ee\u6797\u4e2d\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u827e\u7c73\u8389"} +{"id": "4000172", "video_name": "520d26ff-526f-55e3-b178-cd9538ac014e", "text": "\u6050\u6016\u7684\u9634\u5f71\u5f00\u59cb\u8df3\u821e\uff0c\u6bdb\u9aa8\u609a\u7136\u7684\u8033\u8bed\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u56de\u8361\u3002"} +{"id": "4000173", "video_name": "5de9a098-8e3d-5874-8eb0-597a1fa9ea3d", "text": "\u4e00\u4e2a\u5e7f\u89d2\u955c\u5934\u62cd\u6444\u8fdc\u5904\u7684\u4e1c\u65b9\u666f\u8272\uff0c\u9010\u6e10\u653e\u5927\u5230\u4e00\u4e2a\u9f99\u773c\u679c\u56ed\u3002"} +{"id": "4000174", "video_name": "ab695ec5-20e9-5af7-8b76-6a80655c92d6", "text": "\u4e00\u4e2a\u62e5\u6709\u5377\u66f2\u5934\u53d1\u76843\u5c81\u7537\u5b69\u7684\u52a8\u753b\uff0c\u592a\u7f8e\u4e86\uff0c\u9a91\u5728\u7ef4\u7eb3\u65af\u661f\u7403\u4e0a\uff0c\u88ab\u70ed\u70c8\u7684\u661f\u7cfb"} +{"id": "4000175", "video_name": "661c0461-3b0c-5bcf-9867-fa11e66fba81", "text": "\u706b\u7130\u5728\u591c\u665a\u5e73\u9759\u5730\u71c3\u70e7\uff0c\u70df\u96fe\u5f25\u6f2b\u7740\u96f7\u65af\u5854\u6cd5\u91cc\u3002"} +{"id": "4000176", "video_name": "f59bd926-7ca1-5b55-9a5b-c6889d06be4e", "text": "\u4e00\u5f20\u6709\u7740\u7ea2\u8272\u6ce2\u6d6a\u6e29\u67d4\u79fb\u52a8\u7684\u58c1\u7eb8\u3002"} +{"id": "4000177", "video_name": "055bc00f-bed9-5d65-b45d-ff7d00f886a6", "text": "\u9633\u5149\u82ac\u82b3\uff0c\u98ce\u4e5f\u751c\u7f8e\u3002"} +{"id": "4000178", "video_name": "528251be-db12-5034-81b6-79010db7c512", "text": "\u4e00\u4f4d\u7f8e\u9e97\u8ff7\u4eba\u7684\u5973\u5b69\u6b63\u5728\u6d77\u7058\u8d70\u5411\u6c34\u4e2d\uff0c\u68d5\u6ada\u6a39\u5728\u98a8\u4e2d\u6416\u64fa\uff0c\u9713\u8679\u73fe\u5be6"} +{"id": "4000179", "video_name": "0842eaed-96d0-56af-a7df-d6af773dfbff", "text": "\u7b2c\u4e09\u6b21\u4e16\u754c\u5927\u6218\u4e2d\u57ce\u5e02\u88ab\u6467\u6bc1\uff0c\u620f\u5267\u6027\u7684\u706f\u5149\u6548\u679c\uff0c\u5915\u9633\uff0c\u5bbd\u5c4f16:9\u3002"} +{"id": "4000180", "video_name": "5bd5d94b-b35b-5e6e-a3af-7d86e2eaaa23", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u73ca\u745a\u7901\u7684\u5168\u666f\u5448\u73b0\u5728\u773c\u524d\uff0c\u7ed9\u6c34\u4e0b\u666f\u89c2\u5e26\u6765\u4e00\u79cd\u8d85\u51e1\u8131\u4fd7\u7684\u5149\u8f89\u3002"} +{"id": "4000181", "video_name": "90bceecd-4176-531a-9139-d2d9206ab41a", "text": "\u7535\u5f71\u822c\u7684\u89c6\u9891\u4e2d\uff0c\u9ed1\u8272\u3001\u84dd\u8272\u3001\u7eff\u8272\u7684\u989c\u8272\u4e2d\u6316\u6398\u673a\u62c6\u9664\u4e86\u5efa\u7b51\u7269\u3002"} +{"id": "4000182", "video_name": "aba62ae7-bc92-56a9-949d-29967f5c083e", "text": "\u8ff7\u5e7b\u66fc\u5fb7\u5e03\u7f57\u7279\u5305\u88f9\u5728\u53d1\u5149\u7684\u7403\u4f53\u4e2d\uff0c\u5171\u632f\u56fe\u5f62\uff0c\u94c1\u78c1\u6d41\u4f53\u3002"} +{"id": "4000183", "video_name": "16eb4715-97b9-5874-80ff-9d5993ae4962", "text": "\u5728\u4e00\u7247\u5e7f\u9614\u800c\u795e\u79d8\u7684\u9886\u57df\u4e2d\uff0c\u73b0\u5b9e\u548c\u60f3\u8c61\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u4e24\u4f4d\u5f3a\u5927\u7684\u8d85\u7ea7\u82f1\u96c4\u8fdb\u884c\u4e86\u4e00\u573a\u8d85\u8d8a\u5df2"} +{"id": "4000184", "video_name": "19b29b8d-0533-58d0-a732-e04dd02837d4", "text": "\u9ad8\u6e05\u771f\u5b9e\u7684\u6c34\u4e0b\u4e16\u754c\uff0c\u5404\u79cd\u5404\u6837\u7684\u9c7c\u7c7b\u548c\u6d77\u8349\u3002"} +{"id": "4000185", "video_name": "54ccdfbd-f039-542b-a9be-7a30683c4b8f", "text": "\u9e1f\u5728\u5546\u5e97\u91cc\u884c\u7a83\u7684\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "4000186", "video_name": "20878186-9890-5fe2-adee-55cbf017e7d0", "text": "\u4e00\u500b\u84b8\u6c7d\u9f90\u514b\u98a8\u683c\u7684\u77ee\u4eba\uff0c\u5728\u5617\u8a66\u5728\u82b1\u5712\u5de5\u4f5c\u6642\u9762\u5c0d\u8457\u76f8\u6a5f\u3002\u6709\u5f88\u591a\u96ea"} +{"id": "4000187", "video_name": "8996d1b2-5ba7-595a-b425-f88e1f58391e", "text": "Raji \u4eca\u5e74 25 \u5c81\u3002\u4ed6\u6709\u4e00\u5f20\u975e\u5e38\u6f02\u4eae\u7684\u8138\u548c\u4e00\u5934\u5f88\u6f02\u4eae\u7684\u5934\u53d1\u3002\u4ed6\u76f4\u89c6\u955c\u5934\u8bb2\u8bdd\u3002"} +{"id": "4000188", "video_name": "df8d8030-853c-5314-a8a9-b7014d4e0a97", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u8fde\u8eab\u8863\u7684\u7537\u4eba\u6b63\u5728\u7ed9\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u897f\u88c5\u7684\u7537\u4eba\u64e6\u978b\u3002"} +{"id": "4000189", "video_name": "26fa7642-78b4-5c13-af65-d98248746cd2", "text": "\u8bf7\u753b\u4e00\u5e45\u63cf\u7ed8\u738b\u56fd\u906d\u53d7\u81ea\u7136\u707e\u5bb3\u7684\u753b\u9762\uff0c\u8868\u8fbe\u5371\u673a\u7684\u7d27\u8feb\u6027\u3002\u63cf\u7ed8\u6df7\u4e71\u7684\u573a\u666f\u3001"} +{"id": "4000190", "video_name": "624acb73-102e-539b-9457-86b31d555e1f", "text": "\u9ad8\u6e05\u65e0\u7455\u75b5\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u98de\u884c\u89c6\u9891\u8bb0\u5f55\u4e86\u5730\u5fc3\u963f\u52a0\u5c14\u5854\u7684\u4e2d\u5fc3\u3002"} +{"id": "4000191", "video_name": "44f67bf6-1ce9-5e4b-af8f-820b1ad0ec09", "text": "\u4e00\u5bb6\u516c\u53f8\u5728\u5e94\u5bf9\u7f13\u6162\u548c\u590d\u6742\u7684\u6570\u5b57\u5316\u8fdb\u7a0b\u65b9\u9762\u9762\u4e34\u56f0\u96be\u7684\u52a8\u753b\u63cf\u7ed8\u3002"} +{"id": "4000192", "video_name": "0f03431c-099d-576b-8d21-3e4b4bf356c6", "text": "\u5c4f\u5e55\u4e0a\u5145\u6ee1\u4e86\u6d45\u7c89\u8272\u7684\u68c9\u82b1\u7cd6\u4e91\uff0c\u52a8\u6001\u7684\u3002"} +{"id": "4000193", "video_name": "e9296607-033b-5c4a-ac57-ccc7215ba355", "text": "\u5168\u8eab\u7167\u7247\u662f\u4e00\u7fa4\u4eba\u7ad9\u5728\u6bd4\u7279\u5e01\u5854\u9876\u90e8\uff0c\u4fef\u77b0\u57ce\u5e02\u5168\u666f\uff0c\u7d2b\u8272\u3001\u84dd\u8272\u7684\u8d5b\u4f2f\u670b\u514b"} +{"id": "4000194", "video_name": "07b2fba6-0848-5dd4-914c-92a22bb93b19", "text": "\u4e4c\u8d3c\u55b7\u51fa\u70ad\u7684\u52a8\u4f5c"} +{"id": "4000195", "video_name": "48023577-0bc8-539c-a01f-9dbbba744015", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u5927\u81ea\u7136\u4e2d\u753b\u753b\uff0c\u6d6a\u6f2b\u4e3b\u4e49\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "4000196", "video_name": "47aac602-22ca-5556-88d8-b68e58d57b13", "text": "\u684c\u5b50\u4e0a\u6709\u5496\u5561\uff0c\u7a97\u5916\u662f\u96e8\u6ef4\u548c\u80cc\u666f\u7fe0\u7eff\u7684\u666f\u8272\u3002"} +{"id": "4000197", "video_name": "2cc96d7a-c08c-599d-956e-87e4bfec8a88", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9152\u5427\u5012\u7740\u4e00\u676f\u7ea2\u8272\u9e21\u5c3e\u9152\u3002"} +{"id": "4000198", "video_name": "9cea1627-e8cd-5933-8836-3c8945d8b10b", "text": "\u5b87\u822a\u5458\u5728\u884c\u661f\u4e0a\u3002"} +{"id": "4000199", "video_name": "dfd2c3ce-2120-5d7b-94e6-3d8ea1ebaa94", "text": "\u534e\u76db\u987f\u7279\u533a\u57281865\u5e74\u7684\u7a7a\u4e2d\u4fef\u77b0\u56fe\uff0c4K\uff0c\u5f69\u8272\u3002"} +{"id": "4000200", "video_name": "d3cdd5ee-f0e4-53cd-879a-5dab86d13fba", "text": "\u5e74\u8f7b\u4eba\u7ad9\u5728\u6700\u9ad8\u7684\u5c71\u9876\u5531\u6b4c\uff0c\u65e0\u4eba\u673a\u7f29\u653e\u65cb\u8f6c\u3002"} +{"id": "4000201", "video_name": "06058b8f-1f3f-5b6a-b0d3-335cc60a0449", "text": "\u6211\u4eec\u5728\u4ee5\u8272\u5217\u7684\u4e00\u4e2a\u96c6\u4f53\u519c\u573a\u91cc\uff0c\u4ee5\u8272\u5217\u56fd\u9632\u519b\u58eb\u5175\u548c\u4ee5\u8272\u5217\u5e73\u6c11\u5750\u5728\u4e00\u5f20\u684c\u5b50\u65c1\uff0c\u800c\u5728\u80cc\u666f\u4e2d\uff0c"} +{"id": "4000202", "video_name": "cc26312a-3964-5989-9690-a540f5b3037f", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u53d1\u73b0\u4e86\u4e00\u67b6\u706b\u661f\u98de\u884c\u5668\u7684\u5ec9\u4ef7\u3001\u4f4e\u9884\u7b97\u76841970\u5e74\u4ee3\u79d1\u5e7b\u7535\u5f71\u7247\u6bb5\u3002"} +{"id": "4000203", "video_name": "4fe0edcf-aefc-55ad-baa3-8e7078e1033b", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5c0f\u5b69\u4e00\u8d77\u7b11\u3002"} +{"id": "4000204", "video_name": "ab702580-7a75-560c-9f87-3a12589eb248", "text": "Source sentence: Jandek\u5f39\u7740\u5409\u4ed6\u8c08\u8bba\u653f\u6cbb\u3002"} +{"id": "4000205", "video_name": "18643de7-7a46-5168-a638-06da7ed9bbde", "text": "\u4e00\u53ea\u718a\u6b63\u5728\u4e0e\u4e00\u53ea\u72ee\u5b50\u640f\u6597\u3002"} +{"id": "4000206", "video_name": "17047265-4e73-57e2-b18f-6532488d3506", "text": "\u6211\u559c\u6b22\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\u7684\u7ea2\u8272\u52a8\u753b\u80cc\u666f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\uff0c\u4eb2\u7231\u7684\uff0c\u6211\u7231\u4f60\u3002"} +{"id": "4000207", "video_name": "e22ecfa3-92f7-5b7c-91c2-069f57670910", "text": "\u7ee7\u5144\u5f1f\u5728\u6d74\u5ba4\u91cc\u548c\u7ee7\u59d0\u59b9\u73a9\u800d\u3002 \n\nSource sentence: I need to buy some groceries at the supermarket. \n\u6211\u9700\u8981\u5728\u8d85\u5e02\u8d2d\u4e70\u4e00\u4e9b"} +{"id": "4000208", "video_name": "d865ec71-904b-593b-a197-7edc9bfe45aa", "text": "\u4e00\u9897\u5f69\u8272\u5934\u9aa8\u8fde\u7740\u810a\u67f1\u8eba\u5728\u5851\u6599\u5e8a\u4e0a\uff0c\u4e0b\u988c\u4eff\u4f5b\u5728\u8bf4\u8bdd\uff0c\u753b\u8d28\u4e3a4K\u3002"} +{"id": "4000209", "video_name": "ac20f1c9-24de-5c50-a578-8500e4f198c7", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u8036\u7a23\u518d\u6765\u4e4b\u524d\u4e3a\u672b\u4e16\u505a\u51c6\u5907\u3002"} +{"id": "4000210", "video_name": "8a124268-38b7-5225-8ab0-62aa616c18d5", "text": "\u66b4\u98ce\u96e8\u4e4b\u591c\uff0c\u96e8\u6c34\u503e\u6cfb\u800c\u4e0b\uff0c\u95ea\u7535\u7167\u4eae\u9ed1\u6697\u7684\u5929\u7a7a\uff0c\u521b\u9020\u51fa\u620f\u5267\u6027\u548c\u5fe7\u90c1\u7684"} +{"id": "4000211", "video_name": "5dd387b1-11b6-5cbe-890e-085e8b3a0cdb", "text": "\u4ed6\u4eec\u5728\u4e07\u5723\u8282\u8df3\u821e\u548c\u6b22\u547c\u3002"} +{"id": "4000212", "video_name": "484d0a41-04c0-5279-8d67-ff759eb09f37", "text": "\u5728\u5927\u81ea\u7136\u7684\u5bc2\u9759\u4e2d\uff0c\u901a\u8fc7\u7ad9\u5728\u5c71\u9876\u4e0a\u4e0e\u98ce\u4ea4\u8c08\u7684\u53e4\u8001\u7f8e\u6d32\u539f\u4f4f\u6c11\u65b9\u5f0f\uff0c\u53d1\u73b0\u4f60\u7075\u9b42\u7684\u58f0\u97f3\u3002"} +{"id": "4000213", "video_name": "0e5424d7-699e-5d4b-835a-d56b7f1b5556", "text": "\u4e00\u8f6e\u6df1\u7ea2\u8272\u7684\u6708\u4eae\uff0c\u5b87\u5b99\u822c\u7684\u5929\u7a7a\uff0c\u6d41\u52a8\u7740\u3002"} +{"id": "4000214", "video_name": "5f679c79-0e9b-54b7-86ee-8063778753b0", "text": "\u8fd9\u5f20\u7167\u7247\u5c55\u793a\u4e86\u4e00\u4e2a\u7ad9\u5728\u5c71\u9876\u4e0a\u7684\u7537\u4eba\uff0c\u88ab\u661f\u7a7a\u6620\u886c\u51fa\u8f6e\u5ed3\u3002\u4ed6\u624b\u4e2d\u62ff\u7740\u4e00\u76cf\u624b\u7535\u7b52\uff0c\u6307\u5411"} +{"id": "4000215", "video_name": "2727a93d-f89e-5cf5-8563-d191fabb89e2", "text": "\u6570\u5b57\u9a6c\u620f\u56e2\u89d2\u8272\u6770\u514b\u65af\u5750\u5728\u684c\u5b50\u65c1\u770b\u7740\u7535\u8111\u3002\u6770\u514b\u65af\u770b\u8d77\u6765\u50cf\u4e00\u4e2a\u7a7f\u7740\u7c89\u8272\u8fde"} +{"id": "4000216", "video_name": "ac62bd54-3fc6-5a27-b8d5-2a3706f8df47", "text": "\u963f\u62c9\u4f2f\u8bed\u8bcd\u5178\u9875\u9762\u7684\u52a8\u6001\u5c55\u793a\uff0c\u5305\u542b\u8bcd\u6761\u548c\u5b9a\u4e49\u3002"} +{"id": "4000217", "video_name": "7dbe7c3c-9c45-558e-ae8d-f2ad821497eb", "text": "\"Pennywise\" \u51fa\u81ea\u65af\u8482\u82ac\u00b7\u91d1\u7684\u5c0f\u8bf4\u300a\u5c0f\u4e11\u300b\uff08It\uff09\uff0c\u51fa\u73b0\u5728\u513f\u7ae5\u56fe\u4e66\u9986\u3002"} +{"id": "4000218", "video_name": "9b2068f3-f9da-5a57-82f8-327fa49de9f6", "text": "\u7eeb\u5c0f\u8def\u5750\u5728\u684c\u5b50\u4e0a\uff0c\u76f4\u89c6\u7740\uff0c\u7136\u540e\u5c06\u5934\u8f6c\u5411\u7a97\u5916\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4000219", "video_name": "5d8a622c-f554-5209-842a-d3a1be2bcd5e", "text": "\u4f5b\u6559\u50e7\u4fa3\u53d8\u8eab\u6210\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u4e00\u7ea7"} +{"id": "4000220", "video_name": "220a4742-3971-5503-a094-a33632c23a21", "text": "\u7d2b\u8272\u5409\u4ed6\u548c1980\u5e74\u7684\u5149\u76d8\u5728\u7a7a\u95f4\u91cc\u3002"} +{"id": "4000221", "video_name": "f532587c-c92c-5efd-a983-e8fd7c374444", "text": "\u4e00\u8f86\u6b63\u5728\u7ef4\u4fee\u7684\u6c99\u7279\u963f\u62c9\u4f2f\u94c1\u8def\u673a\u8f66\u3002"} +{"id": "4000222", "video_name": "10e67203-7d38-5172-968d-16af3d3d6d39", "text": "\u6076\u9b54\u611f\u5230\u9057\u61be\u5e76\u7948\u6c42\u5bbd\u6055\u3002"} +{"id": "4000223", "video_name": "c81febd9-8d44-5877-bbd7-c053f95d0b9a", "text": "\u5927\u578b\u9ad8\u7816\u6865\uff0c\u8bb8\u591a\u7816\u5757\u6389\u843d\uff0c\u7834\u574f\u4e86\u6865\u7684\u7ed3\u6784\uff0c\u52a8\u753b\u3002"} +{"id": "4000224", "video_name": "a6a49095-15bc-551d-ad2c-21bb5ca14733", "text": "\u4e00\u5ea7\u591a\u7ef4\u5b87\u5b99\u5927\u6559\u5802\u5206\u88c2\u7ef4\u5ea6\u4ee5\u5230\u8fbe\u5730\u7403\u3002"} +{"id": "4000225", "video_name": "700a3c94-a475-5f3d-a6b8-72520bcd7768", "text": "\u66b4\u98ce\u96e8\u548c\u9ed1\u6697\u4e4b\u7236\u7684\u58eb\u5175\u5728\u821e\u66f2\u4e2d\u8df3\u8857\u821e\u3002"} +{"id": "4000226", "video_name": "5a25e1ef-394b-5fea-9e42-26dcc15970e0", "text": "\u5723\u8bde\u8001\u4eba\u548c\u7cbe\u7075\u7528\u7cd6\u679c\u6756\u3001\u95ea\u95ea\u53d1\u5149\u7684\u7269\u54c1\u548c\u5f69\u8272\u9970\u54c1\u88c5\u9970\u5317\u6781\uff0c\u8d85\u903c\u771f\uff0c"} +{"id": "4000227", "video_name": "ec008211-a175-5566-bd3c-3d6176cdd361", "text": "\u4e00\u4e2a\u957f\u5f97\u50cfPatrick Galen Dempsey\u7684\u533b\u751f\u72ec\u81ea\u5750\u5728\u529e\u516c\u684c\u524d\u5de5\u4f5c\u3002"} +{"id": "4000228", "video_name": "78dbc518-2467-501f-9d14-a044a34f2651", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u81ea\u5df1\u5468\u56f4\u4ee5\u5706\u5f62\u65b9\u5f0f\u780c\u7816\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "4000229", "video_name": "e3b82735-72b3-5102-9b93-b58068b2baa3", "text": "\u4f46\u5b9e\u9645\u4e0a\uff0c\u8611\u83c7\u662f\u6211\u4eec\u7684\u4e00\u5207\uff01\n\nSource sentence: The teacher asked the students to write an essay about their summer vacation. \n\n\u8001\u5e08\u8981\u6c42\u5b66\u751f\u4eec\u5199\u4e00\u7bc7\u5173\u4e8e"} +{"id": "4000230", "video_name": "1cc484e1-ae04-5955-acf0-b86be2abf42a", "text": "\u4e00\u7fa4\u8eab\u7a7f\u8272\u5f69\u8273\u4e3d\u7684\u8001\u5976\u5976\u7ad9\u5728\u7403\u8ff7\u7684\u4eba\u7fa4\u4e2d\uff0c\u4ed6\u4eec\u8eab\u65c1\u8d34\u7740\u4e00\u5f20\u63cf\u7ed8\u7537\u6027\u7684\u5e7f\u544a"} +{"id": "4000231", "video_name": "32df42c0-2b80-58fe-b6de-f085963145a6", "text": "\u51b3\u5fc3\u63ed\u5f00\u5b83\u7684\u79d8\u5bc6\uff0c\u82f1\u4fca\u53ef\u7231\u7684\u7537\u5b69\u8482\u7c73\u51b3\u5b9a\u627e\u56de\u94a5\u5319\u3002"} +{"id": "4000232", "video_name": "0c40946f-efa3-52cf-a507-f085f3861db1", "text": "8\u540d\u9752\u5c11\u5e74\u5728\u4e00\u4e2a\u5149\u7ebf\u660f\u6697\u3001\u9ad8\u6e05\u6670\u5ea6\u7684\u623f\u95f4\u5185\u76f8\u4e92\u4ea4\u8c08\u3001\u5b09\u7b11\u3002"} +{"id": "4000233", "video_name": "9837b4fc-67bc-5062-a8bc-4c0b81e9c262", "text": "\u624b\u52bf\u94c5\u7b14\u7d20\u63cf\u4e00\u5e45\u56fe\u50cf\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u534a\u4e2a\u6ca1\u6709\u4e91\u6735\u7684\u5929\u7a7a\u548c\u534a\u4e2a\u4e91\u6735\u5728\u98ce\u4e2d\u5feb\u901f\u53d8\u5316\u548c\u79fb"} +{"id": "4000234", "video_name": "c6739ba4-4cee-58db-8ec3-845f7e093880", "text": "\u827a\u672f\u65b0\u827a\u672f\u7535\u68af\uff0c\u59cb\u5efa\u4e8e1925\u5e74\uff0c\u4fa7\u5f00\u95e8\uff0c\u5185\u90e8\u6709\u5de8\u5927\u7684\u706f\u5149\u3002"} +{"id": "4000235", "video_name": "560c251f-22ca-57ad-a4c6-b9dc7c35bd02", "text": "\u8d858\u6beb\u7c73\u80d6\u5efa\u7b51\u5de5\u4eba\u780c\u5899\u7684\u5f55\u50cf\u3002"} +{"id": "4000236", "video_name": "2786d983-cd57-5187-9c86-82bd7975da9a", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u732b\u6b63\u5728\u5199\u4e00\u4efd\u63d0\u6848\u3002"} +{"id": "4000237", "video_name": "75de2e6e-24c9-54ad-8a45-0106667cc426", "text": "\u56fe\u7247\u8f6c\u89c6\u9891\uff0c\u5973\u5b69\u559d\u5496\u5561\u5e76\u7728\u773c\uff0c\u5c06\u676f\u5b50\u653e\u56de\u684c\u5b50\u4e0a\u3002"} +{"id": "4000238", "video_name": "4241b075-5a73-5e6c-9040-4000d7942012", "text": "\u7075\u6027\u542f\u8fea\u7684\u5723\u5f92\u7684\u5168\u606f\u56fe\u50cf\u3002"} +{"id": "4000239", "video_name": "1a1cb79a-8945-58e1-b8c2-6e758296152f", "text": "\u65e0\u8282\u5236\u7684\u52a8\u753b\uff0c\u4f7f\u7528\u6742\u5fd7\u526a\u8d34\u7247\u5236\u4f5c\u3002"} +{"id": "4000240", "video_name": "2ec37f08-e60a-59bb-baa9-f937991e76b8", "text": "\u7231\u4e4b\u5fc3\u5728\u591c\u7a7a\u4e2d\u968f\u98ce\u98de\u821e\u3002"} +{"id": "4000241", "video_name": "f5bd3af9-da81-5385-9e59-dad2b6848a63", "text": "\u4e00\u53ea\u6234\u725b\u4ed4\u5e3d\u5b50\u7684\u5c0f\u72d7\u5f00\u7740\u8d5b\u8f66\u3002"} +{"id": "4000242", "video_name": "73dd1a62-30dc-5cbb-9df9-4aa3d91f689c", "text": "\u9057\u7559\u7684\u53cb\u8c0a\uff1a\u8001\u5e74\u8389\u8389\u548c\u827e\u739b\u5750\u5728\u540c\u4e00\u68f5\u6a31\u82b1\u6811\u4e0b\u7684\u957f\u6905\u4e0a\u3002\u6751\u91cc\u7684\u5b69"} +{"id": "4000243", "video_name": "a0ced21f-04ab-5a2b-a0f6-2f723494a3f7", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u6ce8\u89c6\u7740\u88ab\u6c7d\u8f66\u7167\u4eae\u7684\u516c\u8def\u3002\u57ce\u5e02\u706f\u5149\u548c\u5915\u9633\u8272\u7684\u5929\u7a7a\u3002\u7c7b\u4f3c\u738b\u5bb6\u536b\u7535"} +{"id": "4000244", "video_name": "0f6e8296-919c-59cb-abee-c7db32baccf3", "text": "\u573a\u666f\u9002\u5408\u7684\u5f62\u8c61\u662f\u4e00\u53ea\u7f13\u6162\u800c\u7a33\u6b65\u6500\u722c\u6811\u6728\u7684\u4e4c\u9f9f\u3002\u4e4c\u9f9f\u53ef\u4ee5\u88ab\u63cf\u7ed8\u4e3a\u5c0f\u5fc3\u7ffc"} +{"id": "4000245", "video_name": "c1685e2d-1ec6-57b3-8f0f-82d459bcb076", "text": "\u4e00\u53ea\u9ed1\u8272\u5c0f\u732b\u7ad9\u5728\u5b83\u524d\u9762\u7684\u65c5\u884c\u888b\u65c1\uff0c\u80cc\u5bf9\u7740\u955c\u5934\uff0c4K\u7167\u7247\u3002"} +{"id": "4000246", "video_name": "375ca82d-1fbb-59b8-9e1c-27e0aa02ce3b", "text": "\u4e00\u5f20\u900f\u8fc7\u6321\u98ce\u73bb\u7483\u7684\u9ece\u660e\u7167\u7247\uff0c\u8def\u9762\u4e0a\u6709\u4e09\u6392\u8f66\u9053\u63a7\u5236\u706f\uff0c\u6bcf\u6392\u6709\u56db\u4e2a\u7eff\u8272\u7bad\u5934\u6807\u5fd7"} +{"id": "4000247", "video_name": "170f8cf7-032b-58a1-9b06-53925ad07a3a", "text": "\u6c83\u4f26\u00b7A\u00b7\u8d1d\u514b\u7279\u5c14\u7684\u5386\u53f2\u5f62\u8c61\u548c\u539f\u59cb\u7684\u8d1d\u514b\u7279\u5c14\u516c\u53f8\u529e\u516c\u5ba4\u6216\u5efa\u8bbe\u73b0\u573a\u3002"} +{"id": "4000248", "video_name": "65bb162d-288d-5677-9600-5c1c40ca3f76", "text": "\u4e09\u540d\u9752\u5c11\u5e74\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u5176\u4e2d\u4e00\u4eba\u5728\u6253\u56fa\u5b9a\u7535\u8bdd\uff0c\u4ed6\u4eec\u770b\u8d77\u6765\u5f88\u62c5\u5fe7\uff0c\u955c\u5934\u4e3a\u5168\u666f\u3002"} +{"id": "4000249", "video_name": "88cc877e-63e2-5c7e-8edf-10efe681ed46", "text": "\u5929\u7a7a\u4e2d\u7684\u95ea\u7535\u5728\u5c4f\u5e55\u4e0a\u95ea\u73b0\uff0c\u5982\u540c\u7535\u5f71\u822c\u7684\u95ea\u7535\uff0c\u65e5\u843d\u65f6\u5206\u7684\u95ea\u7535\uff0c\u62cd\u6444\u4e8e\u4f73\u80fdD5\u3002"} +{"id": "4000250", "video_name": "99161b41-2db4-56ea-824b-9749dbe9ca7d", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7f8e\u4e3d\u7684\u6751\u5e84\u91cc\u9762\u5954\u8dd1\uff0c\u9762\u5e26\u5fae\u7b11\u3002"} +{"id": "4000251", "video_name": "4cc512f6-82e0-5302-95fa-3d2fa30d514a", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u5730\u4e0b\u5ba4\uff0c\u91cc\u9762\u6709\u4e00\u5f20\u5927\u5e8a\u3001\u4e00\u53ea\u7bb1\u5b50\u3001\u4e00\u5f20\u684c\u5b50\u548c\u4e00\u4e2a\u6b66\u5668\u67b6\u3002"} +{"id": "4000252", "video_name": "9c2c5d44-b375-5192-bd62-d3dbfbbdb063", "text": "\u5230\u5904\u90fd\u662f\u6bd4\u8428\u548c\u5976\u916a\u7684\u9910\u5385\u573a\u666f\u3002"} +{"id": "4000253", "video_name": "d8138b8f-3983-5a7d-b5e0-923c7c296d42", "text": "MCU\u5965\u521b\u53d8\u6362\u7eb3\u7c73\u79d1\u6280\u5927\u578b\u6b66\u5668\u7684\u5168\u666f\u955c\u5934\uff0c\u91c7\u752812mm\u805a\u7126\u8ddd\u79bb\u7684\u8d85\u5e7f\u89d2\u955c\u5934\u62cd\u6444\uff0c"} +{"id": "4000254", "video_name": "68fff68a-19b6-56d7-af48-fe7095977220", "text": "\u591c\u665a\u53ef\u4ee5\u4fef\u77b0\u57ce\u5e02\u5929\u9645\u7ebf\u548c\u5916\u9762\u7684\u96e8\uff0c\u914d\u6709\u5927\u7a97\u6237\u7684\u9ed1\u8272\u8bbe\u8ba1\u516c\u5bd3\u5367\u5ba4\u3002"} +{"id": "4000255", "video_name": "51becd37-6972-5e99-b149-1ec6c84c1f04", "text": "\u673a\u5668\u4eba\u4efb\u610f\u7403\u540e\u89c6\u6e05\u6670\u5730\u770b\u5230\u5f27\u7ebf\u8fdb\u5165\u7403\u95e8\u3002"} +{"id": "4000256", "video_name": "a45709ed-d876-54ef-827e-53df5e1a5764", "text": "\u4eba\u4eec\u4ece\u8499\u53e4\u5305\u91cc\u7a7f\u7740\u62d6\u978b\u51fa\u6765\uff0c\u5728\u65e5\u843d\u65f6\u5206\u627e\u5230\u4e86\u4e00\u6279\u667a\u80fd\u624b\u673a\u548c\u667a\u80fd\u624b\u8868\u7684\u8865\u7ed9\u7bb1\uff0c\u573a\u666f"} +{"id": "4000257", "video_name": "397244ee-4aa4-5da3-892c-ef687df5f9ef", "text": "\u54f2\u5b66\u5bb6\u5927\u536b\u00b7\u4f11\u8c1f\u662f\u4e00\u53ea\u6d77\u725b\u3002"} +{"id": "4000258", "video_name": "de1d402f-a0f1-52bb-a4c5-ad58bb7038ad", "text": "\u4e00\u5207\u90fd\u662f\u7f8e\u597d\u548c\u5feb\u4e50\u7684\uff0c\u4f46\u73b0\u5728\u8fd9\u4e9b\u5e78\u798f\u548c\u56de\u5fc6\u5df2\u7ecf\u53d8\u6210\u4e86\u75db\u82e6\u3001\u60b2\u4f24\u7684\u7231\u3002"} +{"id": "4000259", "video_name": "6a5a090f-481f-5863-a10c-fe60e1ee68df", "text": "\u4e00\u4e2aMr Beast\u6311\u6218\u7684\u52a8\u753b\u3002"} +{"id": "4000260", "video_name": "e23bf42b-0e26-5758-ab06-6f7bf3bd0cfc", "text": "\u4e00\u4e2a\u767d\u4eba\u7537\u5b69\u5728\u7f8e\u56fd\u540e\u9662\u548c\u670b\u53cb\u4e00\u8d77\u5403\u7740\u65e5\u672c\u7cd6\u679c\u3002"} +{"id": "4000261", "video_name": "94e4357c-44dd-5101-af69-5e9ab52aa16e", "text": "translation: \u4e0e\u62c9\u739b\u53f7\u4ea4\u6c47\u3002\u8d85\u9ad8\u6e05\u6162\u52a8\u4f5c\u548c\u903c\u771f\u3002"} +{"id": "4000262", "video_name": "db2e3675-8f4b-52a0-ae8e-b28cdbe7beab", "text": "\u5154\u5b50\u88ab\u7f20\u5728\u85e4\u8513\u4e0a\u300216\uff1a9\u5c4f\u5e55\uff0c\u903c\u771f\u9ad8\u6e05\u753b\u9762\u3002"} +{"id": "4000263", "video_name": "a11612ea-b3ad-5276-9a4e-1e3c735bd876", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u6674\u6717\u7684\u65e5\u5b50\uff0c\u6b23\u8d4f\u827e\u83f2\u5c14\u94c1\u5854\u7684\u5168\u666f\u3002"} +{"id": "4000264", "video_name": "5a33eefe-d031-59a3-a68e-c11fecd47dad", "text": "\u7cd6\u679c\u5c4b\u50cf\u5361\u5e26\u64ad\u653e\u5668\u4e00\u6837\u5728\u64ad\u653e\u3002"} +{"id": "4000265", "video_name": "c2e863ec-60a6-5e4c-b1df-8f27aa513973", "text": "10\u79d2\u7684\u89c6\u9891\uff0c\u4e00\u53ea\u5e26\u7c89\u7ea2\u8272\u7684\u732b\u5934\u9e70\u5728\u7a7a\u4e2d\u98de\u7fd4\uff0c\u4ece\u4fa7\u9762\u89c2\u5bdf\uff0c\u5411\u4e1c\u98de\u884c\u3002"} +{"id": "4000266", "video_name": "c9e9ed90-0d7f-5210-902f-81db2812e3cf", "text": "\u63cf\u8ff0\u9178\u8fa3\u9171\u7684\u8d28\u5730\u3002"} +{"id": "4000267", "video_name": "3f4ab889-4759-5d1e-b2dd-5dacc97f0a69", "text": "\u6770\u4f5c\uff0c\u6700\u9ad8\u54c1\u8d28\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u6bdb\u8338\u8338\u7684\u8ff7\u4f60\u732b\u5934\u9e70\u914d\u5377\u6bdb\u53d1\u578b\uff0c\u5728\u6ed1\u677f\u4e0a\u6ed1\u4e0b"} +{"id": "4000268", "video_name": "b4ded1e7-b3f8-538b-b3d9-14eff4f66080", "text": "\u5b66\u751f\u4eec\u4e13\u6ce8\u542c\u8001\u5e08\u8bb2\u8bfe\u7684\u6559\u5ba4\u3002"} +{"id": "4000269", "video_name": "3ed09aa0-a44e-5707-a6da-21baea58feed", "text": "\u4e00\u5f20\u4e13\u4e1a\u7684\u5168\u8eab\u7167\u7247\uff0c\u7279\u5199\u4e00\u4e2a30\u5c81\u7684\u7537\u4eba\uff08\u53d1\u9645\u7ebf\u7a00\u758f\uff09\uff0c\u4ed6\u7ad9\u5728\u7e41\u534e\u7684\u8857\u9053\u4e2d\u5fc3\uff0c\u9762\u5411\u955c\u5934\uff0c"} +{"id": "4000270", "video_name": "00047e94-39b6-58ad-910f-f8b408bf16c5", "text": "\u5e0c\u814a\u795e\u4f51\u4fef\u77b0\u5965\u6797\u5339\u65af\u5c71\u3002"} +{"id": "4000271", "video_name": "37856676-0e9e-51eb-ac5c-4385ac4f7a67", "text": "\u8ba9\u60e0\u65af\u5361\u548c\u5df4\u8fea\u722c\u4e0a\u6e29\u67d4\u7684\u5c71\u4e18\uff0c\u5c55\u793a\u4ed6\u4eec\u7684\u56e2\u961f\u5408\u4f5c\u3002"} +{"id": "4000272", "video_name": "a7d06100-27e9-5846-a5c1-f9ee73bb68a5", "text": "\u4e2d\u56fd\u7684\u957f\u57ce\u88ab\u6316\u6398\u673a\u635f\u574f\u4e86\u3002"} +{"id": "4000273", "video_name": "50ea5d77-77bd-5a1a-ad3c-4b99d5dd2ae0", "text": "\u4e00\u7fa4\u5370\u5ea6\u5973\u6027\uff0c\u4fe1\u606f\u4e3a\uff1aRajan Darling\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000274", "video_name": "a49dbe24-f383-5063-b67e-34d9d20f4691", "text": "\u592a\u7a7a\u670b\u514b\u57281980\u5e74\u4ee3\u7684\u661f\u9645\u98df\u5802\u4e2d\u5b09\u7b11\u6253\u95f9\u3001\u4eab\u53d7\u7f8e\u98df\uff0c\u4f53\u73b0\u4e86\u672a\u6765\u4e3b\u4e49\u7684\u78c1\u5e26\u6587"} +{"id": "4000275", "video_name": "5d8e3bb7-7f44-57bb-bde6-0e117488808d", "text": "\u4e00\u53ea\u50cf\u4eba\u7c7b\u4e00\u6837\u7ad9\u7acb\u7684\u72ee\u5b50"} +{"id": "4000276", "video_name": "140ab258-b805-5ed2-8501-7210443b6eac", "text": "\u4ed6\u4eec\u7b28\u62d9\u5730\u8ddf\u7740\u4e00\u4e2a\u7ec3\u4e60\u4f8b\u7a0b\uff0c\u6ed1\u7a3d\u5730\u5373\u5174\u8868\u6f14\u3002"} +{"id": "4000277", "video_name": "7c739fd3-3e5b-500e-b94e-8fc558e681c2", "text": "\u4e00\u53ea\u8001\u9e70\u548c\u4e00\u67b6\u55b7\u6c14\u5f0f\u98de\u673a\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4000278", "video_name": "1c90c6de-3e35-5e09-9635-b70ae2244754", "text": "\u6930\u5b50\u6811\u7684\u8f6e\u5ed3\u6620\u5728\u6708\u5149\u4e0b\u7684\u5929\u7a7a\u4e2d\uff0c\u8425\u9020\u51fa\u5b81\u9759\u548c\u70ed\u5e26\u6c1b\u56f4\u3002"} +{"id": "4000279", "video_name": "e996aca3-3984-5516-b117-4b6f33690f42", "text": "\u4e00\u53ea\u624b\u5c55\u793a\u4e86\u4e00\u5f20\u7167\u7247\uff0c\u4e0a\u9762\u662f\u4e00\u4e2a\u6234\u7740\u773c\u955c\u7684\u9ed1\u53d1\u6df1\u8272\u7684\u5973\u4eba\uff0c\u5979\u662f\u4e0a\u4e16\u7eaa50\u5e74\u4ee3\u7684\u4eba\u7269\u3002\u73b0"} +{"id": "4000280", "video_name": "566b62fe-3c53-58c6-81be-a78324e15037", "text": "\u4e24\u4e2a\u4eba\u7f13\u7f13\u5730\u8d70\u5411\u4e00\u4e2a\u65e0\u4eba\u7684\u6d77\u6ee9\u3002"} +{"id": "4000281", "video_name": "79a61365-026d-5f59-a8a8-872e5e1017df", "text": "\u68ee\u6797\u56fe\u50cf\u4e2d\u6709\u4e00\u4e9b\u52a8\u7269\u5728\u8fd9\u4e2a\u5730\u65b9\u884c\u8d70\u3002"} +{"id": "4000282", "video_name": "2e1f6d24-8058-5bad-8f67-a43d06e5d3ea", "text": "\u90a3\u4e2a\u5973\u5b69\u6162\u6162\u5730\u62ac\u8d77\u4e86\u5934\u3002"} +{"id": "4000283", "video_name": "ab8419ea-fafc-5b37-95f5-18d772ba2753", "text": "\u9b54\u9b3c\u9c7c\u548c\u6d77\u661f\u5728\u7f24\u7eb7\u7684\u73ca\u745a\u7901\u4e2d\u5c55\u793a\u4ed6\u4eec\u7684\u65c5\u7a0b\uff0c\u4e0e\u5feb\u901f\u7684\u5c0f\u4e11\u9c7c\u7ade\u901f\u3002"} +{"id": "4000284", "video_name": "b1f78377-d4f3-5146-b2ba-08e6e6a2979f", "text": "\u8c22\u5c14\u76d6\u00b7\u62c9\u592b\u7f57\u592b\u662f\u74e6\u683c\u7eb3\u79c1\u4eba\u519b\u4e8b\u516c\u53f8\u7684\u6210\u5458\u3002"} +{"id": "4000285", "video_name": "5d328f2f-1bea-5094-8683-055783467d8f", "text": "\u5973\u5b69\u548c\u7537\u5b69\u5728\u62cdTikTok\u89c6\u9891\u3002 \n\nSource sentence: I love eating Chinese food. \n\n\u6211\u559c\u6b22\u5403\u4e2d\u9910\u3002"} +{"id": "4000286", "video_name": "6e6ee41e-c9bc-597b-b17a-68e28adf26ed", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u623f\u95f4\u91cc\u8fc5\u901f\u7a7f\u4e0a\u4e86\u81ea\u5df1\u7684\u6d3e\u5bf9\u670d\u88c5\u3002"} +{"id": "4000287", "video_name": "a83606f2-a7b7-55ee-8461-b998ec8d48d9", "text": "\u5e8a\u4e0a\u7761\u7740\u4e00\u4e2a\u5b69\u5b50\uff0c\u7a97\u6237\u655e\u5f00\uff0c\u7a97\u5916\u662f\u57ce\u5e02\u666f\u89c2\u3002"} +{"id": "4000288", "video_name": "06bae025-8b9e-5808-9c74-32cbd8878454", "text": "\u65cb\u8f6c\u5e76\u4e0a\u4e0b\u79fb\u52a8\u3002"} +{"id": "4000289", "video_name": "819f90e8-01eb-5094-a25a-0044ea6d580b", "text": "\u8336\u548c\u6253\u706b\u673a\u5728\u51ac\u5b63\u9999\u6e2f\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "4000290", "video_name": "62c6019c-5cfc-5331-a3d2-7f1dd0e380d6", "text": "\u70df\u96fe\u3001\u591c\u665a\u3001\u6708\u5149\u30019:16\uff0c\u6444\u50cf\u673a\u7f29\u8fdb\u524d\u95e8\uff0c\u7f13\u6162\u5730\u5f00\u542f\uff0c\u63ed\u793a\u51fa\u4e00\u5bb6\u4eba\u72b9\u8c6b"} +{"id": "4000291", "video_name": "b402120d-a73c-5df8-9c66-c3b2d4549fc1", "text": "\u9b54\u517d\u4e16\u754c\u5bf9\u590d\u4ec7\u8005\u8054\u76df\u3002\u7206\u70b8\u6027\u7684\u7ec8\u6781\u96c6\u9526\u9884\u544a\u7247\u3002"} +{"id": "4000292", "video_name": "c3cfee49-69fa-5656-aff3-4b908d75f870", "text": "\u6ed1\u677f\u624b\u5728\u534a\u7ba1\u4e0a\u8df3\u8dc3\uff0c\u9c7c\u773c\u955c\u5934\uff0c\u6781\u5bbd\u5e7f\u89d2\uff0c\u8d85\u771f\u5b9e\uff0c\u9ad8\u7ec6\u8282\uff0c\u6cb9\u753b\u822c\u7684\u56fe\u50cf\uff0c\u53bb"} +{"id": "4000293", "video_name": "2fee9557-6789-5a52-84bc-cd13d02400d7", "text": "\u4e00\u53ea\u8774\u8776\u53d8\u6210\u4e00\u4e2a\u53ef\u7231\u7684\u5a74\u513f\u3002"} +{"id": "4000294", "video_name": "2053e14b-c84e-53a5-be5b-e252dd4f0c74", "text": "\u8389\u8389\u662f\u4e00\u4e2a\u6709\u7740\u660e\u4eae\u7684\u84dd\u8272\u773c\u775b\u548c\u5377\u66f2\u91d1\u8272\u5934\u53d1\u7684\u5c0f\u5973\u5b69\u3002\u5979\u4f4f\u5728\u4e00\u4e2a\u5c0f\u9547\u90ca\u5916"} +{"id": "4000295", "video_name": "22611748-e67f-52f5-bfbf-ad48931fd63f", "text": "\u5f17\u62c9\u5fb7\u4e09\u4e16\uff08Vlad III\uff09\uff0c\u5373\u523a\u5ba2\u5f17\u62c9\u5fb7\uff08Vlad the Impaler\uff09\uff0c\u5728\u4e00\u5f20\u957f\u684c\u5b50\u4e0a\u7528\u9910\uff0c\u684c\u65c1\u6392\u5217\u7740"} +{"id": "4000296", "video_name": "afc5cf54-3854-57e2-9ea7-faf250e5c140", "text": "\u5979\u4e0b\u5b9a\u51b3\u5fc3\u8981\u6d3b\u5230\u843d\u53f6\u65f6\u3002"} +{"id": "4000297", "video_name": "9f368f29-3c53-56d7-a038-ee87aa7d70f5", "text": "\u5728\u5929\u7a7a\u4e2d\u521b\u9020\u4e00\u53ea\u98de\u5929\u98de\u9a6c\u3002"} +{"id": "4000298", "video_name": "989d024e-e588-5140-ac11-b7f0f4ee4308", "text": "\u4e00\u540d\u7a7f\u7740\u8fd0\u52a8\u670d\u7684\u5a74\u513f\u5728\u5730\u4e0a\u722c\u884c\uff0c\u6234\u7740\u5c3f\u5e03\uff0c\u957f\u7740\u975e\u5e38\u975e\u5e38\u975e\u5e38\u6f02\u4eae\u7684\u8138\uff0c\u53ef"} +{"id": "4000299", "video_name": "311b4e2f-db6d-584b-98d8-949dcfce351d", "text": "\u4e00\u5e45\u5370\u8c61\u6d3e\u98ce\u683c\u7684\u5bbd\u753b\u5e45\u5c71\u5cf0\u3001\u95ea\u7535\u548c\u4e91\u7684\u63d2\u56fe\u3002"} +{"id": "4000300", "video_name": "5de83b8d-815d-571b-a7d2-44546ddbe106", "text": "\u6258\u9a6c\u65af\u00b7\u7231\u8fea\u751f\u548c\u5c3c\u53e4\u62c9\u00b7\u7279\u65af\u62c9\u7528\u4ed6\u4eec\u7684\u53d1\u660e\u4e92\u76f8\u7ade\u4e89\u3002"} +{"id": "4000301", "video_name": "ad26e16f-424c-5297-acf4-cd73e7a6dcaa", "text": "\u6770\u514b\u5728\u4ed6\u4eec\u5b66\u6821\u7684\u64cd\u573a\u4e0a\u8e22\u8db3\u7403\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\uff0c8K\u3002"} +{"id": "4000302", "video_name": "f53f2c29-d257-5166-a3c3-6babbcc79832", "text": "\u7f29\u5c0f\u89c6\u9891\u5411\u524d\u7bad\u5934\u3002\u8ddf\u968f\u7eff\u8272\u3001\u9ec4\u8272\u3001\u7c89\u7ea2\u8272\u3001\u84dd\u8272\u5411\u524d\u7bad\u5934\u5feb\u901f\u5411\u53f3\u98de\u884c\u3002\u80cc\u666f\u662f"} +{"id": "4000303", "video_name": "80d914c6-3a41-531e-a157-3ff0cd5a156a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u95f4\u8001\u623f\u5b50\u91cc\u7684\u58c1\u7089\u65c1\u5b66\u4e60\uff0c4K\u3002"} +{"id": "4000304", "video_name": "7290ef6f-5f47-5de0-84ea-4f581f076d36", "text": "\u7f8e\u4e3d\u5149\u6cfd\u7684\u9676\u74f7\u9676\u5668\uff0c\u4eba\u4eec\u624b\u6301\u7740\u4e00\u6839\u5927\u7684\u71c3\u70e7\u9f20\u5c3e\u8349\u7684\u68d2\u5b50\uff0c\u4ee5\u97e6"} +{"id": "4000305", "video_name": "07eb0de3-f0a8-5bdc-a9cc-d3158591b45d", "text": "\u4e00\u4e2a\u6234\u7740\u773c\u955c\uff0c\u53e3\u7f69\u4e0a\u6709\u5b87\u5b99\u98de\u8239\u56fe\u6848\u7684\u7537\u5b69\u8bf4\u8bdd\u3002"} +{"id": "4000306", "video_name": "2046ade1-df94-5569-bfa2-91888be7df74", "text": "\u5e2e\u6211\u751f\u6210Sonic Apple\u6e38\u620f\u7684Tiktok\u63a8\u5e7f\u56fe\u7247\u3002"} +{"id": "4000307", "video_name": "2737d995-8e71-5b6a-bea8-125e2e5d5685", "text": "\u5979\u7a7f\u7740\u4e00\u4ef6\u8f7b\u76c8\u7684\u590f\u88c5\uff0c\u52fe\u52d2\u51fa\u5979\u7684\u8eab\u6750\uff0c\u7a81\u663e\u5979\u7684\u4f18\u96c5\u3002\u5979\u4fee\u957f\u7684\u53cc\u817f"} +{"id": "4000308", "video_name": "01fcc75b-5bc9-5cf9-b2cc-60979c56a159", "text": "\u65e0\u4eba\u5c45\u4f4f\u5c9b\u5c7f\u7684\u9e1f\u77b0\u89c6\u89d2\uff0c\u539f\u59cb\u81ea\u7136\u666f\u89c2\u5c55\u73b0\uff0c2100\u5e74\u4ee3\uff0c\u901a\u8fc7\u65e0\u4eba\u673a\u62cd\u6444\u3002\u8fd9\u4e00\u573a\u666f\u5448"} +{"id": "4000309", "video_name": "66598215-c71c-5fad-8158-e5c8add85d97", "text": "\u96fe\u5c71\uff0c\u52a8\u753b\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c8K\uff0c\u76f8\u673a\u7f29\u8fdb\u3002"} +{"id": "4000310", "video_name": "edac946a-894d-53a3-94dc-102d37f70952", "text": "\u5b87\u5b99\u4e2d\u6700\u7f8e\u4e3d\u7684\u5973\u5b69\u3002"} +{"id": "4000311", "video_name": "e9595579-e0ef-538e-94c7-c08a53b9607b", "text": "\u4e00\u8f86\u7ea2\u8272\u4fdd\u65f6\u6377\u6c7d\u8f66\u5728\u8def\u4e0a\uff0c\u6444\u50cf\u5934\u6b63\u5728\u770b\u8f6e\u5b50\u3002"} +{"id": "4000312", "video_name": "23739ca0-ba41-5409-9c11-aeb58fd4a77b", "text": "\u4e00\u53ea\u9f9f\u5728\u65f6\u4ee3\u5e7f\u573a\u884c\u8d70\u3002"} +{"id": "4000313", "video_name": "db2b1cfd-4bcc-51f2-9f1f-d46393ceb653", "text": "\u4e00\u4e2a\u5b8c\u5168\u7531\u73bb\u7483\u6784\u6210\u7684\u4e16\u754c\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\uff0c\u6298\u5c04\u5149\u7ebf\u3002"} +{"id": "4000314", "video_name": "009475fc-6d09-5c4c-bd6e-33ac7294427d", "text": "\u9b3c\u6b63\u5728\u95f9\u9b3c\u5c4b\u91cc\u8d70\u52a8\u3002"} +{"id": "4000315", "video_name": "31b939d9-122e-5e8a-8a70-58a6f61b8038", "text": "\u6c34\u4e0a\u76db\u5f00\u7684\u6c34\u6676\u83b2\u82b1\uff0c\u8fdc\u5904\u6709\u5c71\u4e18\uff0c\u84dd\u8272\u80cc\u666f\u3002\n\nSource sentence: The sun rises in the east and sets in the west. \n\u592a\u9633"} +{"id": "4000316", "video_name": "6cf9ef2c-2f99-5f8b-a716-e95496c662eb", "text": "\u521b\u9020\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u73b0\u4e00\u4e2a\u82f1\u4fca\u7684\u5370\u5ea6\u6559\u795e\u804c\u4eba\u5458\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u5750\u5728\u5b81\u9759\u7684\u5bfa\u5e99\u73af\u5883"} +{"id": "4000317", "video_name": "5d13152c-3d21-55ca-856e-5110b1a16ce7", "text": "\u4e00\u4e2a\u79c3\u9876\u7537\u5b50\u906d\u53d7\u6b3a\u8d1f\u7684\u89c6\u9891\u3002"} +{"id": "4000318", "video_name": "e6f9a73e-fc3a-536c-a3d8-6ed270bcb966", "text": "\u6c49\u5821\u6750\u6599\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u6389\u843d\u4e0b\u6765\u3002"} +{"id": "4000319", "video_name": "dc4ec5f8-0007-5e55-b8ed-9daf8e2de98b", "text": "\u8d2d\u4e70emji\u7684\u552f\u4e00\u9014\u5f84\u662f\u81ea\u52a8\u552e\u8d27\u673a\u3002"} +{"id": "4000320", "video_name": "fb78cdc5-c83f-50ee-9134-2bad96a871b0", "text": "\u7f8e\u4e3d\u7684\u91d1\u8272\u53d1\u5149\u9897\u7c92\u95ea\u70c1\uff0c\u767d\u8272\u6761\u7eb9\u79fb\u52a8\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "4000321", "video_name": "e0105e7f-5fd5-5694-917c-08ea258344f5", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5f00\u6717\u7684\u7537\u5b69\u5de6\u624b\u63e1\u7740\u4e00\u9762\u65d7\u5e1c\u3002 \n\nSource sentence: The sun is shining brightly on the green grass. \n\n\u9633\u5149\u7167\u8000\u7740\u7eff"} +{"id": "4000322", "video_name": "44d9375f-1f27-5ea7-9184-056630f2d84c", "text": "\u9ec4\u8272\u5149\u4eae\u5728\u9ed1\u6697\u7684\u623f\u95f4\u4e2d\u663e\u793a\u3002"} +{"id": "4000323", "video_name": "5abbfed6-9914-5545-9d7b-4533414993aa", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u4e66\u623f\uff0c\u4e66\u67b6\u4e0a\u6446\u6ee1\u4e86\u5fc3\u7406\u5b66\u4e66\u7c4d\uff0c\u4e00\u4e2a\u5e74\u8f7b\u4eba\u4e13\u6ce8\u5730\u9605\u8bfb\u3002"} +{"id": "4000324", "video_name": "ff6b2911-bd6e-5e87-bbc2-4bf9d6a7f952", "text": "Dwayne Johnson \u9a0e\u8457\u6383\u628a\u98db\u884c\uff0c\u66f4\u591a\u52d5\u4f5c\u3002\n\nSource sentence: I am allergic to peanuts, please make sure there are none in the dish. \n\n\u6211\u5c0d\u82b1\u751f\u904e"} +{"id": "4000325", "video_name": "1e071bd1-9d2b-5131-92ff-62dc8f182bb4", "text": "\u706b\u8f66\u4ea4\u901a\u4fe1\u53f7\u706f\u4ece\u7ea2\u8272\u53d8\u4e3a\u7eff\u8272\u3002"} +{"id": "4000326", "video_name": "9c719860-cb94-53de-a49d-6d151cae0639", "text": "\u8fbe\u65af\u7ef4\u8fbe\uff08Darth Vader\uff09\u5931\u671b\u5730\u89c2\u770b\u7740\u65b0\u95fb\uff0c\u4f7f\u7528\u4e86\u8d85\u9ad8\u6e05 4K\u3001HDR \u548c\u82f9\u679c\u89c6\u9891\u6280\u672f\u3002"} +{"id": "4000327", "video_name": "3722a683-4f05-5d58-a704-741cea64788b", "text": "\u4e00\u5ea7\u5750\u843d\u5728\u96ea\u5730\u548c\u5e38\u9752\u6811\u5468\u56f4\u7684\u623f\u5b50\u3002"} +{"id": "4000328", "video_name": "3d0462d2-3af9-53cb-9e05-2592c2159746", "text": "\u91ce\u9a6cMach 1 GT\u5982\u679c\u88ab\u9b3c\u9b42\u9a91\u58eb\u6539\u9020\uff0c\u4f1a\u6709\u71c3\u70e7\u7684\u80cc\u666f\u3002"} +{"id": "4000329", "video_name": "59fba5b9-53b8-53bf-913d-89f23faf4ccd", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u97f3\u4e50\u5bb6\u7eb3\u7279\u00b7\u91d1\u00b7\u79d1\u5c14\u6f14\u5531\u5e76\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "4000330", "video_name": "696466d8-d958-52d2-8c23-31923c32d866", "text": "\u67e5\u7406\u548c\u5de7\u514b\u529b\u5de5\u5382\uff0c\u67e5\u7406\u5f39\u94a2\u7434\u3002"} +{"id": "4000331", "video_name": "132d6f22-4fb7-554d-8a46-72cb04dee8a8", "text": "\u516b\u5343\u7c73\u7684\u8d85\u9ad8\u8d28\u91cf\u660e\u4eae\u6668\u666f\u82b1\u56ed\uff0c\u6ee1\u662f\u6a31\u82b1\u548c\u9752\u8349\u3002"} +{"id": "4000332", "video_name": "cb8b17f4-d896-5aad-8b70-0e105e65165e", "text": "\u6162\u52a8\u4f5c\uff0c\u7741\u5f00\u5979\u7684\u773c\u775b\uff0c\u76f8\u673a\u4ece\u5de6\u5230\u53f3\u5e73\u79fb\u3002"} +{"id": "4000333", "video_name": "a49b9d93-94b9-5882-9b18-a5d96ca9d8f1", "text": "\u6444\u50cf\u673a\u7a7f\u8fc7\u53f2\u8bd7\u822c\u7684\u7ef4\u4eac\u6218\u6597\u573a\u9762\uff0c\u5e7b\u60f3\u7535\u5f71\uff0c\u7535\u5f71\u822c\u7684\uff0c\u4f53\u79ef\u5149\u7167\uff0c\u67ef\u8fbe2383"} +{"id": "4000334", "video_name": "ccf97d65-a0ea-5110-a21e-32237b25f771", "text": "\u6811\u6728\u6709\u7684\u53d8\u5c0f\u4e86\uff0c\u6709\u7684\u53d8\u5927\u4e86\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000335", "video_name": "7b2146d8-0faa-5825-806d-6b3fc34a8fab", "text": "\u73b0\u5b9e\u7248\u7684\u5a01\u5c14\u00b7\u60e0\u987f\u4ece\u86cb\u4e2d\u5b75\u5316\u3002"} +{"id": "4000336", "video_name": "76a93949-57bc-58df-a645-9e9b553c32dd", "text": "\u4ed6\u4eec\u5728\u5e7c\u513f\u56ed\u7684\u7b2c\u4e00\u5929\u76f8\u9047\u540e\uff0c\u4ed6\u4eec\u4e4b\u95f4\u7684\u7ebd\u5e26\u5c31\u53d8\u5f97\u575a\u4e0d\u53ef\u6467\u4e86\u3002"} +{"id": "4000337", "video_name": "37bd7b02-2e0a-5fff-98b0-5c88adce6a83", "text": "\u62c9\u739b\u548c\u62c9\u514b\u4ec0\u66fc\u8e0f\u4e0a\u8425\u6551\u897f\u5854\u7684\u65c5\u9014\uff0c\u4ed6\u4eec\u88ab\u7531\u5f3a\u5927\u7684\u6c49\u52aa\u66fc\u7387\u9886\u7684\u4e00\u652f"} +{"id": "4000338", "video_name": "8ed93369-54fe-5f25-8d9b-c5629e73d4ef", "text": "\u5e7d\u7075\u5df4\u58eb\u7a7f\u8fc7\u4e00\u4e2a\u6050\u6016\u7684\u9ed1\u6697\u5c0f\u9547\u3002"} +{"id": "4000339", "video_name": "08aea30b-720f-57d9-8e1b-89f6ffd20bd9", "text": "\u7194\u5ca9\u9ab7\u9acf\u8718\u86db\u5916\u9aa8\u9abc\u5e36\u8457\u96fb\u5149\u9583\u720d\u3002"} +{"id": "4000340", "video_name": "af2093dd-5a93-5536-afc2-dfd83fcee821", "text": "\u624b\u5957\u8986\u76d6\u7684\u53cc\u624b\u5728\u79fb\u52a8\uff0c\u56e0\u4e3a\u4e00\u540d\u58eb\u5175\u5728\u6444\u50cf\u673a\u524d\u53d1\u8a00\u3002"} +{"id": "4000341", "video_name": "831bf5e4-bab3-5e18-a599-d6e293b9279d", "text": "\u968f\u7740\u591c\u6df1\uff0c\u82b1\u513f\u9001\u5c0f\u732bYoYo\u56de\u5bb6\uff0c\u7559\u4e0b\u7f8e\u597d\u7684\u56de\u5fc6\u548c\u6708\u5149\u4e0b\u7684\u5c0f\u79d8\u5bc6\u3002"} +{"id": "4000342", "video_name": "e36d747f-b98b-5e45-8729-a6b41052a4ff", "text": "\u53ef\u7231\u7684\u5c0f\u732b\u5934\u9e70\u4ece\u8336\u676f\u91cc\u5fae\u7b11\u7740\u4ef0\u671b\u7740\u3002 \n\nSource sentence: I love to travel and explore new places around the world. \n\n\u6211\u559c"} +{"id": "4000343", "video_name": "86cf2308-fc04-5454-93e9-be28658d3879", "text": "\u4e00\u7fa4\u9e1f\u5728\u84dd\u5929\u4e2d\u98de\u7fd4\uff0c\u6e05\u6670\u660e\u4eae\uff0c\u5448\u73b0\u52a8\u6f2b\u98ce\u683c\uff0c\u5728ArtStation\u4e0a\u5f88\u53d7\u6b22\u8fce\u3002"} +{"id": "4000344", "video_name": "b9ccc820-f2a6-5a0a-880b-3ababb39b529", "text": "\u6c49\u8bed\u7ffb\u8bd1\uff1a\u6c49\u5821\u6389\u843d\u4e86\u3002 \n\nSource sentence: I am going to the store to buy groceries. \n\n\u6c49\u8bed\u7ffb\u8bd1\uff1a\u6211\u8981\u53bb\u5546\u5e97\u4e70"} +{"id": "4000345", "video_name": "348dad18-bf35-5642-93d5-ca6b87d2dd27", "text": "\u72c2\u98ce\u547c\u5578\uff0c\u5c06\u704c\u6728\u5439\u5012\u5f97\u4f3c\u4e4e\u89e6\u53ca\u5730\u9762\u3002"} +{"id": "4000346", "video_name": "8f8bfce1-676b-52c0-8ddc-02519040c4bc", "text": "\u5df4\u65af\u5149\u5e74\u98de\u8d8a\u73a9\u5177\u5c4b"} +{"id": "4000347", "video_name": "1a11383d-17ec-5461-aaf9-6a8154ad261b", "text": "\u6c7d\u8f66\u5185\u90e8\u89c6\u89d2\uff0c\u4ece\u540e\u9762\u770b\u5230\u5750\u5728\u9a7e\u9a76\u5ea7\u4e0a\u7684\u7537\u4eba\uff0c\u57ce\u5e02\u8857\u9053\u5916\uff0c\u6b63\u5728\u884c\u9a76\u3002"} +{"id": "4000348", "video_name": "272edc3b-679e-5f5b-becf-0516758e3eb4", "text": "\u4e00\u540d\u7537\u5b50\u7275\u7740\u4e00\u53ea\u88ab\u7ed1\u4f4f\u7684\u72ee\u5b50\u8d70\u8def\u3002"} +{"id": "4000349", "video_name": "70c54822-84ae-5f13-9261-e1b81a021e46", "text": "Source sentence: kfc\u5927\u697c\uff0c\u5de6\u8fb9\u662fkfc\u5e97\uff0c\u53f3\u8fb9\u662fkfc\u5927\u697c\uff0c\u573a\u666f\u662f\u591c\u665a\u3002"} +{"id": "4000350", "video_name": "3da0b388-1591-5cae-8d81-17dfbbc29a2f", "text": "\u8dd1\u8fc7\u7ebd\u7ea6\u7684\u8857\u9053"} +{"id": "4000351", "video_name": "03a30f11-c909-5a9a-8048-c00fba36af61", "text": "\u4e0d\u65ad\u751f\u957f\u7684\u5de8\u578bDNA\u89e6\u987b\uff0c\u84dd\u8272\u3001\u767d\u8272\uff0c\u5409\u683c\u00b7\u827a\u672f\u98ce\u683c\u3002"} +{"id": "4000352", "video_name": "91da8f85-5627-5fd4-98c8-92efeb41f919", "text": "\u666e\u5170\u5df4\u5357\u738b\u56fd\u58ee\u4e3d\u5962\u534e\u7684\u5bab\u6bbf\u63d2\u56fe\u3002"} +{"id": "4000353", "video_name": "906d2414-68a5-5e74-be33-ea0538a2514b", "text": "\u8d85\u903c\u771f\u7684\u6781\u5f3a\u706b\u548c\u51b0\u4ea4\u7ec7\u5728\u4e00\u8d77\uff0c\u8fc5\u901f\u6269\u6563\u5e76\u79fb\u52a8\u5230\u6700\u9ad8\u5cf0\uff0c\u5177\u6709\u7535\u5f71\u822c\u7684\u620f\u5267\u6027\u548c"} +{"id": "4000354", "video_name": "28c5cb17-90db-5065-b71b-90508e758cf5", "text": "\u4e00\u53ea\u80cc\u4e0a\u957f\u7740\u7fbd\u6bdb\u7684\u5927\u767d\u9ca8\u6df1\u6f5c\u6d77\u5e95\u3002"} +{"id": "4000355", "video_name": "bb0f9757-ffcd-52f1-b8c1-5412f8af5909", "text": "\u5317\u6b27\u68ee\u6797\u6b63\u5728\u4e0b\u96ea\uff0c\u6811\u6728\u88ab\u539a\u539a\u7684\u96ea\u8986\u76d6\u7740\u3002"} +{"id": "4000356", "video_name": "9cab9641-7955-583f-a85c-c03db41fb0fd", "text": "\u4e00\u4f4d\u52a8\u6f2b\u5973\u5b69\uff0c\u767d\u8272\u7684\u5934\u53d1\uff0c\u5927\u5927\u7684\u84dd\u773c\u775b\uff0c\u5728\u8857\u4e0a\u884c\u8d70\uff0c\u6709\u7740\u68a6\u5e7b\u7684\u611f\u89c9\uff0c\u660e\u4eae"} +{"id": "4000357", "video_name": "1af1c7ef-47d7-566a-8834-f9521da1be12", "text": "Youtube\u9891\u9053\u7535\u5f71\u3001\u7535\u89c6\u7cfb\u5217\u7684\u5c4f\u5e55\u4fdd\u62a4\u7a0b\u5e8f\u4e3a9:16\uff0c\u5e27\u901f\u7387\u4e3a24\u3002"} +{"id": "4000358", "video_name": "df903eae-7c1f-5d0f-b402-61022177acd3", "text": "\u72ee\u5b50\u548c\u5154\u5b50\u6fc0\u70c8\u5730\u6597\u4e89\uff0c\u5154\u5b50\u5c55\u73b0\u51fa\u4e86\u987d\u5f3a\u7684\u6597\u5fd7\u3002"} +{"id": "4000359", "video_name": "85be38a6-5225-5e5a-abf7-7cb48fac0e1a", "text": "\u5728\u6728\u684c\u80cc\u666f\u7684\u53a8\u623f\u5957\u88c53D\u89c6\u56fe360\u5ea6\u4e0a\uff0c\u4ece\u52fa\u5b50\u4e0a\u6ef4\u8702\u871c\u5230\u9762\u5305\u4e0a\u3002"} +{"id": "4000360", "video_name": "fb6d91d7-3f54-5ebf-a431-be6ff895018e", "text": "\u4e00\u4f4d\u5e26\u7740\u5ba0\u7269\u5728\u4e1b\u6797\u91cc\u6563\u6b65\u7684\u5973\u5b69\u3002"} +{"id": "4000361", "video_name": "560b77cf-d49e-51a7-ab69-2d7eb83ef518", "text": "\u4ece\u6c34\u9f99\u5934\u4e2d\u704c\u6ee1\u4e00\u676f\u6c34\u7684\u996e\u7528\u6c34\u5546\u4e1a\u573a\u666f\u3002"} +{"id": "4000362", "video_name": "db4b5070-a477-5a96-be31-38d55e3573e8", "text": "\u4e00\u4e2a\u540d\u4e3aAquamor\u7684\u5546\u5e97\u7684\u52a8\u753b\u89c6\u9891\u9884\u89c8"} +{"id": "4000363", "video_name": "166d03ff-f50f-5cb4-9379-548fedf8c3f7", "text": "\u6c99\u6f20\u4e2d\u7684\u6751\u5e84\u5728\u5348\u591c\u95ea\u8000\u7740\u660e\u4eae\u7684\u6708\u4eae\u548c\u661f\u661f\uff0c\u5468\u56f4\u6709\u68d5\u6988\u6811\u3002"} +{"id": "4000364", "video_name": "c9699c1a-e047-5ec8-bc27-2f83bd16bc18", "text": "Translation: \u94b1\u5e01\u50cf\u96e8\u4e00\u822c\u843d\u5728\u4e54\u00b7\u62dc\u767b\u8eab\u4e0a\uff0c\u5b9b\u5982\u7535\u5f71\u573a\u666f\u3002"} +{"id": "4000365", "video_name": "ffb6347a-7952-5e20-9f19-c96fd0073bc3", "text": "\u51e0\u4f55\u5c16\u523a\u76f8\u4e92\u7a7f\u900f\u3002"} +{"id": "4000366", "video_name": "d3daf5c8-1950-5098-bd58-fde0e0a2efd7", "text": "\u4e00\u53ea\u5927\u8c61\u5728\u516c\u8def\u4e0a\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "4000367", "video_name": "62554d46-736f-5a1d-9087-0952065cf507", "text": "\u5728\u4e00\u7247\u95ea\u70c1\u7740\u5915\u9633\u8272\u5f69\u7684\u6e56\u9762\u4e0a\uff0c\u4e00\u4f4d\u62e5\u6709\u8f89\u714c\u5149\u73af\u7684\u5929\u4ed9\u9759\u9759\u5730\u6f02\u6d6e\u7740\uff0c"} +{"id": "4000368", "video_name": "c589d20e-8b1c-54e0-9368-a9c37ef7d9cb", "text": "\u4f60\u7684\u8868\u60c5\u7b26\u53f7\uff0c\u624b\u6307\u6307\u7740\u6211\u3002"} +{"id": "4000369", "video_name": "9d1fca89-032f-5f03-93d7-ab6f4dfa64c0", "text": "\u753b\u51fa\u4ee5\u4e0b\u7684\u610f\u8c61\uff1a\u5c31\u5728\u4f60\u6700\u4e0d\u671f\u671b\u7684\u65f6\u5019\uff0c\u4f60\u9047\u5230\u4e86\u4e00\u6761\u9700\u8981\u8de8\u8d8a\u7684\u6fc0\u6d41\u3002"} +{"id": "4000370", "video_name": "cb086f09-36fd-5765-9899-17ef5aa282b4", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u5e8a\u5355\u3001\u624b\u62ff\u624b\u6756\u5728\u7530\u91ce\u4e0a\u884c\u8d70\u7684\u7537\u4eba\uff0c\u540e\u9762\u7684\u666f\u8c61\u5f88\u9065\u8fdc\uff0c\u753b\u9762\u4e2d\u53ea\u6709\u4e00\u4e2a\u624b"} +{"id": "4000371", "video_name": "a9cfbd63-d252-576f-9dda-d1f1cfac0233", "text": "\u4e00\u4e2a\u79bb\u5f00\u4eba\u4e3e\u7740\u4e00\u4e2a\u76d2\u5b50\u5728\u4eba\u7fa4\u4e2d\u8d70\u7740\uff0c\u4ed6\u662f\u552f\u4e00\u9762\u5411\u6444\u50cf\u673a\u7684\u4eba\u3002\u6444\u50cf\u673a\u653e\u5927\u3002"} +{"id": "4000372", "video_name": "66b823eb-b080-5221-902e-2b38083fd97c", "text": "\u300a\u585e\u5c14\u8fbe\u4f20\u8bf4\u300b\u4e0e\u67aa\u7684\u94fe\u63a5\u3002"} +{"id": "4000373", "video_name": "9c2a59b1-ceb4-5269-82cb-5e1b9397e66b", "text": "\u9886\u961f\u4e0e\u56e2\u961f\u5728\u5c71\u9644\u8fd1\u65c5\u6e38\u3002"} +{"id": "4000374", "video_name": "15621119-f078-5919-bf41-4e9e94cd2983", "text": "\u8003\u53e4\u5b66\u5bb6\u4eec\u5145\u6ee1\u597d\u5947\uff0c\u611f\u5230\u56f0\u60d1\u548c\u5174\u594b\u3002\u751c\u871c\u5c0f\u5f84\uff08Sweet Track\uff09\u88ab\u53d1\u73b0\u65f6\uff0c\u5b83\u7684\u5efa\u9020\u6c34\u5e73"} +{"id": "4000375", "video_name": "255306ac-5c87-56e9-8ea1-654aee79d551", "text": "\u7f8e\u5f0f\u8db3\u7403\u6bd4\u8d5b\u4eba\u6ee1\u4e3a\u60a3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000376", "video_name": "61920094-79d8-51c5-ae65-76635ceff441", "text": "\u9e26\u7247\u662f\u4e00\u79cd\u795e\u79d8\u800c\u5371\u9669\u7684\u7269\u8d28\uff0c\u5b83\u53ef\u4ee5\u77ac\u95f4\u7f13\u89e3\u75bc\u75db\uff0c\u4f46\u4e5f\u5b58\u5728\u98ce\u9669\u3002"} +{"id": "4000377", "video_name": "ee9f61d9-8952-560a-a671-c8f73689ee6b", "text": "\u5357\u6781\u6709\u4e00\u53ea\u5de8\u5927\u7684\u767d\u8272\u72d0\u72f8\u3002"} +{"id": "4000378", "video_name": "5adcd490-8561-59ad-8abd-bb7838a3e356", "text": "\u4eba\u7c7b\u7684\u6218\u6597\u5c31\u662f\u4e0d\u65ad\u524d\u884c\u7684\u6218\u6597\u3002"} +{"id": "4000379", "video_name": "08d8ef2c-2363-564c-99ba-0758d941ef66", "text": "\u4e00\u4e2a\u96ea\u4eba\u8d70\u5728\u6674\u6717\u7684\u6751\u5e84\u91cc\uff0c\u7531\u4f26\u00b7\u9a6c\u683c\u5229\u7279\u3001\u5b89\u5fb7\u70c8\u4e9a\u65af\u00b7\u7f57\u67e5\u3001\u8482\u59c6\u00b7"} +{"id": "4000380", "video_name": "b714a289-ffca-5583-ba30-5a758efa0248", "text": "\u9ec4\u53f6\u5728\u851a\u84dd\u7684\u5929\u7a7a\u4e0b\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000381", "video_name": "353c0a83-78b0-50a5-ae44-18372b53480f", "text": "Pascal Campion\u7684\u5927\u8c61\u5954\u8dd1\u52a8\u753b\n\nSource sentence: I am looking for a Chinese restaurant near my hotel. \n\u6211\u5728\u5bfb\u627e\u79bb\u6211\u9152\u5e97\u8fd1\u7684\u4e2d\u9910\u9986\u3002"} +{"id": "4000382", "video_name": "a38e7005-eac9-529e-8e10-6951d693204e", "text": "\u9ad8\u5927\u7684\u6811\u6728\u4e1b\u751f\u7684\u68ee\u6797\uff0c\u6811\u6728\u6447\u66f3\uff0c\u7a7a\u6c14\u6e05\u65b0\uff0c\u4fef\u62cd\uff0c\u5feb\u901f\u79fb\u52a8\uff0c\u6b63\u5348\u65f6\u95f4\uff0c\u9ad8\u5927\u7684\u8349"} +{"id": "4000383", "video_name": "2288ae6f-0937-5c84-9664-29c7080a3738", "text": "\u5236\u4f5c\u5173\u4e8e\u5730\u7403\u751f\u547d\u7279\u5f81\u7684\u89c6\u9891\u3002"} +{"id": "4000384", "video_name": "7c845e68-f250-5096-b9f5-34fd710d1e1f", "text": "\u4e00\u53f0\u6316\u6398\u673a\u5728\u68ee\u6797\u91cc\u7684\u89c6\u9891"} +{"id": "4000385", "video_name": "97f8f71c-5e57-5a00-8828-b88a4e4bf92b", "text": "\u4e00\u500b\u5851\u6599\u888b\u5728\u5929\u7a7a\u4e2d\u98db\u7fd4\uff0c\u80cc\u666f\u662f\u4e00\u500b\u6c99\u7058\u3002"} +{"id": "4000386", "video_name": "054bde7a-3875-5cb4-bbc4-27f039d19526", "text": "\u5c3d\u7ba1\u6211\u4eec\u7684\u6280\u672f\u8fdb\u6b65\u7a81\u98de\u731b\u8fdb\uff0c\u5730\u7403\u6838\u5fc3\u7684\u6784\u6210\u4ecd\u7136\u662f\u4e00\u4e2a\u8c1c\u3002"} +{"id": "4000387", "video_name": "78652b5f-2c3b-5b95-ad37-62349a09616e", "text": "\u8bcd\u8bedZRPY\u5728\u65b9\u5757\u4e2d\u65cb\u8f6c\uff0c\u8d85\u7ea7\u903c\u771f\u3002"} +{"id": "4000388", "video_name": "1a48620a-70fe-542a-9cf1-e20cc937ff51", "text": "\u76ae\u514b\u65af\u98ce\u683c\uff0c\u51b0\u5757\u5185\u90e8\u6709\u8ba1\u7b97\u673a\u5904\u7406\u5668\uff0c\u51b0\u5757\u878d\u5316\u3002"} +{"id": "4000389", "video_name": "35b59bcb-8f77-5ca4-903b-1eb81bec628a", "text": "\u5728\u6b3a\u9a97\u7684\u9634\u5f71\u4e0b\uff0c\u79d8\u5bc6\u9690\u85cf\u7740\u3002"} +{"id": "4000390", "video_name": "3273bee1-9bf2-5fb2-b11a-38870d5b6802", "text": "\u4e2d\u56fd\u957f\u57ce\u7684\u8499\u592a\u5947"} +{"id": "4000391", "video_name": "cc7b5329-6297-5b98-81b3-70ef8ce34c69", "text": "\u4ece\u626c\u58f0\u5668\u4e2d\u53d1\u51fa\u7b80\u5355\u7684\u58f0\u6ce2\u3002"} +{"id": "4000392", "video_name": "a1005113-989e-55de-bafb-f8a67ea00e17", "text": "\u5065\u8eab\u623f\u91cc\u7684\u821e\u8e48\u8bfe\u4e0a\u6709\u53ea\u871c\u8702\u3002 \n\nSource sentence: I need to buy some groceries for dinner tonight. \n\n\u6211\u9700\u8981\u4e70\u4e9b\u665a\u9910\u7684"} +{"id": "4000393", "video_name": "89aa9239-d400-533c-9b56-53adce44eb51", "text": "\u7c89\u8272\u7684\u5e03\u6599\uff0c\u65f6\u5c1a\uff0c\u5370\u5ea6\uff0c\u903c\u771f"} +{"id": "4000394", "video_name": "1e395cd6-94e3-5241-b658-ee9e76322d97", "text": "\u4e00\u53ea\u6234\u7740\u6d77\u76d7\u5e3d\u5b50\u3001\u7528\u524d\u722a\u7ad9\u7acb\u4e14\u6ca1\u6709\u91cd\u529b\u7684\u732b\u3002"} +{"id": "4000395", "video_name": "72dad4cf-845c-54d3-8457-7fba856906c7", "text": "\u4e00\u9897\u83e0\u841d\u5728\u6f2b\u753b\u98ce\u683c\u4e0b\u7ed9\u82f9\u679c\u4e0a\u6570\u5b66\u8bfe\u3002"} +{"id": "4000396", "video_name": "fb16fab6-5e0a-5d6a-8f27-11433e705ffe", "text": "\u4e00\u4e2a\u5b87\u822a\u5458\u5728\u4e00\u9897\u51b0\u51b7\u8352\u51c9\u7684\u661f\u7403\u4e0a\u884c\u8d70\uff0c\u80cc\u666f\u4e2d\u6709\u7231\u514b\u62c9\u592b\u7279\u602a\u7269\u6ce8\u89c6\u7740\u4ed6\uff0c\u753b\u9762"} +{"id": "4000397", "video_name": "3b8c3ab3-ca59-52af-9169-5c6f0cfef4b0", "text": "\u4e00\u53ea\u718a\u5728\u8282\u65e5\u72c2\u6b22\u3002"} +{"id": "4000398", "video_name": "9f9ee259-5e45-5b9d-b146-6e588c90bb62", "text": "\u9165\u8106\u7684\u9e21\u8089\u6c49\u5821\u975e\u5e38\u7f8e\u5473\uff0c\u6469\u6d1b\u54e5\u98ce\u5473\uff0c\u6709\u591a\u5c42\u829d\u58eb\u7247\u3002"} +{"id": "4000399", "video_name": "a777c605-2cf5-52e2-bb9e-e1e1951af49a", "text": "\u7194\u5316\u7684\u5de7\u514b\u529b\u8fd1\u8ddd\u79bb\u5012\u6ce8\u62cd\u6444\n\nSource sentence: The cat is sleeping on the bed. \n\u732b\u6b63\u5728\u5e8a\u4e0a\u7761\u89c9\u3002"} +{"id": "4000400", "video_name": "189ab16f-4384-5b1f-8835-07296532be4c", "text": "\u4ed6\u88ab\u60b2\u4f24\u6240\u5305\u56f4\uff0c\u6cea\u6c34\u987a\u7740\u4ed6\u7684\u8138\u988a\u6d41\u6dcc\uff0c\u6a21\u7cca\u4e86\u4ed6\u7684\u89c6\u7ebf\u3002"} +{"id": "4000401", "video_name": "d0c1856b-3ed7-5320-9a26-2754d30ea770", "text": "\u5728\u62e5\u6324\u7684\u591c\u603b\u4f1a\u91cc\uff0c\u96ea\u4eba\u8df3\u7740\u7535\u5b50\u97f3\u4e50\u821e\u8e48\u3002"} +{"id": "4000402", "video_name": "54a9b009-3c24-5936-b0a4-a1c09902b466", "text": "\u7535\u79bb\u5c42\u52a0\u70ed\uff1aHAARP \u8fdb\u884c\u7684\u8457\u540d\u5b9e\u9a8c\u4e4b\u4e00\u662f\u7535\u79bb\u5c42\u52a0\u70ed\u3002\u8fd9\u6d89\u53ca\u5c06\u805a\u7126\u7684\u65e0\u7ebf\u7535\u9891\u7387"} +{"id": "4000403", "video_name": "db812909-d411-5adc-b74f-15b929e20afc", "text": "\u5370\u5ea6\u795e\u660e\u5728\u6218\u573a\u4e0a\u88c5\u5907\u7cbe\u826f"} +{"id": "4000404", "video_name": "f2fa2ec6-8260-5770-bc2b-5ff361dafc61", "text": "\u5f88\u5c11\u7684\u4eba\u5728\u5e2e\u52a930\u540d\u5b66\u751f\u83b7\u53d6\u5b66\u4e60\u6750\u6599\u3002"} +{"id": "4000405", "video_name": "f570b8f0-ae0c-5a8e-a44f-6054f23fe7b7", "text": "\u82cf\u683c\u5170\u591c\u95f4\u5df7\u9053\u4e2d\u7684\u76d1\u63a7\u7ea2\u5916\u7ebf\u955c\u5934\u6355\u6349\u5230\u4e86\u4e00\u4e2a\u9b3c\u9b42\u3002"} +{"id": "4000406", "video_name": "9451a842-6f8a-5b23-bfe1-d702509cc598", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u62ff\u7740\u4e00\u53ea\u67ef\u57fa\u5728\u8349\u5730\u4e0a\u73a9\u800d\uff0c\u9762\u65e0\u8868\u60c5\u3002"} +{"id": "4000407", "video_name": "3f9b1b75-18ac-5eae-85d4-6c592a593cdd", "text": "\u4e03\u4ef6\u5927\u51ac\u8863\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4"} +{"id": "4000408", "video_name": "9143741e-122d-513d-95e3-3ed4c73ebd87", "text": "\u7a7a\u4e2d\u62cd\u6444\u5e72\u67af\u7684\u6cb3\u6d41\uff0c\u6355\u6349\u5230\u52a8\u7269\u75db\u82e6\u548c\u8352\u51c9\u666f\u8c61\u3002"} +{"id": "4000409", "video_name": "e92db050-6a5a-51a5-80fc-7978d56a933a", "text": "\u52a8\u6f2b\u5916\u661f\u4eba\u7a7a\u95f4\u8239\u957f\u7531\u70b8\u8c46\u4e38\u5236\u6210\u3002"} +{"id": "4000410", "video_name": "c87bf0c4-c7cc-5dd1-94d9-9715e4b87111", "text": "\u8def\u4e0a\u7684\u52a8\u753b\u5851\u6599\u6c34\u74f6\u548c\u8f66\u8f86\u6b63\u5728\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "4000411", "video_name": "cbe12173-706f-54c3-b6f5-a01db35a4f72", "text": "\u4f60\u597d\uff0c\u6211\u7684\u670b\u53cb\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u8bf4\u9053\u3002"} +{"id": "4000412", "video_name": "fcfc00db-ba2f-5ae8-a39c-2625a47c012c", "text": "\u751f\u6210\u4e00\u5f20\u540d\u53eb\u6c49\u65af\u7684\u58eb\u5175\u5728\u508d\u665a\u5e73\u9759\u7684\u68ee\u6797\u4e2d\u7ad9\u7acb\u7684\u56fe\u50cf\u3002\u573a\u666f\u5e94\u6355\u6349\u5230\u4ed6\u6c89\u601d\u7684\u8868"} +{"id": "4000413", "video_name": "bc1eff1b-0155-53c5-b8d3-7fae27e9a76d", "text": "\u7535\u5f71\u5236\u7247\u5382\u6444\u5f71\u673a\u540e\u9762\u3002\u4fe1\u606f\uff1aSABELA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000414", "video_name": "8cb0c738-c7b3-53ff-9b11-a163b9bf3d76", "text": "\u9009\u62e9\u4e00\u9996\u6709\u597d\u8282\u594f\u548c\u8282\u62cd\u7684\u6b4c\u66f2\uff0c\u9002\u5408\u4f60\u60f3\u8981\u8df3\u821e\u7684\u98ce\u683c\u3002\u786e\u4fdd\u4f60\u6709\u4f7f\u7528\u8be5\u97f3\u4e50\u7684\u7248\u6743\u3002"} +{"id": "4000415", "video_name": "e7325925-502d-534a-b4bc-54bf84c63981", "text": "\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002 \n\nSource sentence: Can you please send me the updated version of the report by the end of the day? Message: Urgent \n\n\u4fe1\u606f\uff1a\u7d27\u6025\uff0c\u4f60\u80fd\u5426\u5728\u4eca\u5929\u7ed3\u675f\u524d"} +{"id": "4000416", "video_name": "0d087596-db16-508d-9f4d-5f81d1853e2a", "text": "\u5973\u5b69\u5750\u5728\u9760\u7a97\u7684\u4e66\u623f\u6905\u5b50\u4e0a\uff0c\u6234\u7740\u8033\u673a\u4f7f\u7528\u7b14\u8bb0\u672c\u7535\u8111\uff0c\u4ece\u7a97\u5916\u900f\u8fc7\u8f7b\u8584\u7684"} +{"id": "4000417", "video_name": "15b5653d-40bc-55c4-b4cc-79927611a19b", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u8fdb\u4ed6\u7684\u540e\u9662\uff0c\u53d1\u73b0\u6e38\u6cf3\u6c60\u91cc\u957f\u6ee1\u4e86\u7eff\u8272\u7684\u85fb\u7c7b\u3002"} +{"id": "4000418", "video_name": "cf36fe27-c9e7-5b5e-9f5b-28a5ff3449f3", "text": "\u6770\u4f5c\uff0c\u6b63\u5728Artstation\u4e0a\u6d41\u884c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u6570\u5b57\u753b\u4f5c\uff0c\u827a\u672f\u5bb6\u4e3aArtgerm\u548cGreg Rutkowski\uff0c8K\u5206\u8fa8\u7387\u3002"} +{"id": "4000419", "video_name": "ce838ccc-6aaf-558b-b626-5244d9fecb29", "text": "\u4e00\u4e2a\u5728\u6559\u5802\u524d\u4e0b\u96ea\u7684\u573a\u666f\uff0c24\u5e27\u6bcf\u79d2\uff0c\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "4000420", "video_name": "5b195629-9dd0-51d3-a019-0ec93eb98eb2", "text": "\u5f17\u6717\u5207\u65af\u79d1\u6559\u7687\u662f\u4e00\u4e2a\u5065\u8eab\u8fd0\u52a8\u5458\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u5e7f\u89d2\u955c\u5934\u62cd\u6444\u3002"} +{"id": "4000421", "video_name": "0123061b-d278-561a-9062-5e870f139dcb", "text": "\u798f\u96f7\u65af\u7279\u00b7\u5188\u666e\u4ece\u957f\u6905\u4e0a\u7ad9\u8d77\u6765\uff0c\u8dd1\u51fa\u7a97\u5916\u3002"} +{"id": "4000422", "video_name": "1d1ae9f0-e0ed-51d8-8da3-beb5539ab1b6", "text": "\u8fd9\u4e2a\u7537\u4eba\u5728\u665a\u95f4\u6e38\u8239\u4e0a\u653e\u677e\uff1a\u4eab\u53d7\u996e\u6599\u548c\u5c0f\u70b9\u5fc3\uff0c\u6b23\u8d4f\u73b0\u573a\u97f3\u4e50\uff0c\u6f2b\u6e38\u4f26\u6566\u6700\u7f8e\u7684\u5730\u6807"} +{"id": "4000423", "video_name": "57323b3e-e459-5b49-bbd5-e224a0c467c7", "text": "\u4e00\u4e2a\u513f\u7ae5\u4e66\u7c4d\u7684\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e86\u68ee\u6797\u4e2d\u6c60\u5858\u91cc\u7684\u4e00\u53ea\u706b\u70c8\u9e1f\u3002 \n\nSource sentence: The restaurant is located on the"} +{"id": "4000424", "video_name": "a30674f6-f460-568e-974b-65756dfb6053", "text": "\u665a\u4e0a\u6211\u4e0d\u7981\u601d\u8003\u8fd9\u9879\u516c\u544a\u7684\u8d77\u6e90\u3002"} +{"id": "4000425", "video_name": "6616d7cb-6c53-5f3d-99a4-0f36affb2e13", "text": "\u95e8\u6253\u5f00\u4e86\uff0c\u5e26\u6709PS1\u98ce\u683c\u7684\u4f4e\u5206\u8fa8\u7387\u56fe\u50cf\u3002"} +{"id": "4000426", "video_name": "80e9b751-5250-5b74-aa3e-7681dbe51afd", "text": "\u4e61\u6751\u5c0f\u5df7\uff0c\u6d2a\u6c34\u6cdb\u6ee5\uff0c\u5927\u91cf\u53cd\u5c04\uff0c\u5929\u7a7a\u4e2d\u7684\u95e8\u6237\uff0c\u7eff\u8272\u7684\u6811\u53f6\u5728\u66b4\u98ce\u96e8\u5929\u6c14\u4e2d\u6447"} +{"id": "4000427", "video_name": "aaa246e2-0498-5e69-8bea-bfea4148ab74", "text": "\u5973\u4eba\u60ca\u9192\u4e86\uff0c\u731b\u5730\u5750\u5728\u5e8a\u4e0a\u3002"} +{"id": "4000428", "video_name": "059b2be9-b58d-5fe5-b73d-d5862584d35a", "text": "\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u5c71\u9876\u5582\u9f99\uff0c\u52a8\u6f2b\uff0c\u7ec6\u8282\u7cbe\u81f4\uff0c\u9713\u8679\u95ea\u70c1\u3002"} +{"id": "4000429", "video_name": "37a43b9d-c550-5d48-acbb-953f87acbb7d", "text": "\u98de\u9a6c\u8df3\u8dc3\u5728\u5149\u4eae\u84ec\u677e\u7684\u4e91\u6735\u4e0a\uff0c\u5145\u6ee1\u5e7b\u60f3\uff0c4K \u9ad8\u6e05\u3002"} +{"id": "4000430", "video_name": "ffd975be-6e72-513e-afc3-258d11a4dba2", "text": "\u4e00\u4f4d\u5145\u6ee1\u6d3b\u529b\u7684\u5e74\u8f7b\u521b\u4e1a\u8005\u6b63\u5728\u5bb6\u91cc\u7684\u745c\u4f3d\u57ab\u4e0a\u505a\u65e9\u64cd\uff0c\u7a97\u5916\u900f\u8fdb\u6765\u7684\u671d\u9633\u7167\u5c04"} +{"id": "4000431", "video_name": "3e09c21d-98be-54da-bca7-09ce7fb9561c", "text": "\u60f3\u8c61\u4e00\u4e2a\u7a7a\u65e0\u4e00\u7269\u7684\u4e16\u754c\uff0c\u5145\u6ee1\u65e0\u5c3d\u7684\u9ed1\u6697\u5e7f\u88a4\u3002"} +{"id": "4000432", "video_name": "de6c33d7-de36-5764-889e-a3c14e01598e", "text": "\u7d2b\u8272\u7684\u5149\u8292\u7167\u5c04\u5728\u4e00\u4e2a\u6709\u5e8a\u548c\u7535\u89c6\u7684\u623f\u95f4\u91cc\uff0c\u80fd\u770b\u5230\u4e1c\u4eac\u5e02\u533a\u7684\u8857\u666f\u548c\u5176\u4ed6\u5367\u5ba4\uff0c\u4f7f\u7528\u4e86135\u6beb\u7c73"} +{"id": "4000433", "video_name": "79997d9e-e92a-57ac-95b7-523d4076fbd3", "text": "\u4ece\u540e\u9762\u770b\uff0c\u6211\u4eec\u770b\u5230\u8d3e\u65af\u6c40\u00b7\u7279\u9c81\u591a\u72ec\u81ea\u5750\u5728\u4e00\u95f4\u660e\u4eae\u7684\u623f\u95f4\u91cc\u7684\u684c\u5b50\u524d\u3002"} +{"id": "4000434", "video_name": "7753800c-3bdf-55e2-8e7a-8fd5ec223b2c", "text": "\u98de\u82b1\uff0c\u5f00\u82b1\uff0c10\u79d2\u949f\u3002"} +{"id": "4000435", "video_name": "1c69d79e-8e41-515e-beb1-112e73b9b7e8", "text": "\u677e\u9f20\u5728\u6811\u6d1e\u91cc\u5f20\u671b\uff0c3D\u89d2\u8272\u3002"} +{"id": "4000436", "video_name": "fdad9a50-acfa-536e-8a5b-66725a5e6c40", "text": "\u795e\u5947\u7684\u91d1\u8272\u65f6\u949f\uff0c\u53ef\u4ee5\u5012\u8f6c\u65f6\u9488\u3002"} +{"id": "4000437", "video_name": "1ff9e364-9a8a-50cb-b955-a11df4c14778", "text": "\u90a3\u4e2a\u6709\u6c34\u73e0\u7684\u5df4\u5df4\u6a59\u5b50\u6b63\u5728\u6b22\u5feb\u5730\u8df3\u8dc3\u3002"} +{"id": "4000438", "video_name": "4988103b-f9a8-54a2-b62e-77564a027581", "text": "\u4e73\u817a\u764c\u8bca\u6240\u5185\uff0c\u914d\u5907\u4e86\u5404\u79cd\u9ad8\u7aef\u8bbe\u5907\u3002 \n\nSource sentence: The conference focused on the impact of climate change on coastal communities. \n\n\u4f1a\u8bae\u5173\u6ce8\u6c14\u5019\u53d8"} +{"id": "4000439", "video_name": "2ff68786-3333-51b0-a1b1-ba61a93a35da", "text": "\u6050\u6016\u5c0f\u5df7\u80cc\u5149\uff0c\u76f8\u673a\u79fb\u52a8\u5411\u5916\u62c9\u8fdc\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000440", "video_name": "eadab9f4-0f9f-5ff2-9bc9-13b38600de1c", "text": "\u9a91\u9a6c\u5728\u98ce\u4e2d\u7684\u7537\u4eba\u3002\u4fe1\u606f\uff1a\u5144\u5f1f\u4e4b\u6218\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "4000441", "video_name": "3a477040-01b2-5e8d-94e0-5ef48f602a9e", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u89c9\u5438\u5f15\u4eba\u7684\u89c6\u9891\u573a\u666f\uff0c\u63cf\u7ed8\u4e00\u4e9b\u52a0\u62ff\u5927\u4eba\u538c\u5026\u4e0d\u65ad\u88ab\u4e0e\u5357\u65b9\u90bb\u5c45\u76f8\u6bd4\u8f83\u7684\u60c5\u611f\u3002\u4f7f\u7528\u660e"} +{"id": "4000442", "video_name": "e90714a9-901c-5da4-bd5a-ddd10020494f", "text": "\u4e09\u53ea\u4e0d\u540c\u989c\u8272\u7684\u7f8a\u5728\u82b1\u56ed\u91cc\u73a9\u800d\u3002"} +{"id": "4000443", "video_name": "05401224-de97-5316-8c51-4514beb98e0f", "text": "\u6ce1\u83dc\u6d3b\u4e86\u8fc7\u6765\uff0c\u5413\u552c\u4e86\u4e00\u53ea\u5361\u901a\u6d77\u72f8\u3002"} +{"id": "4000444", "video_name": "24eb6c3a-6efc-5499-ba05-1c4d44479b1d", "text": "\u6d77\u5fb7\u683c\u5c14\u7684\u5b58\u5728\u8bba\u8eab\u4efd\u6216\u8428\u7279\u7684\u8eab\u4efd\uff0c\u5728\u8fbe\u5229\u98ce\u683c\u7684\u6291\u90c1\u75c7\u75c5\u7406\u5b66\u4e2d\u6ca1\u6709\u6027\u522b\uff0c\u5177\u6709\u7acb\u4f53\u6d3e\u98ce\u683c"} +{"id": "4000445", "video_name": "322a263c-9515-58d2-bdfd-2846be0d4fa3", "text": "\u5728\u8302\u5bc6\u7684\u68ee\u6797\u6df1\u5904\uff0c\u56db\u4e2a\u670b\u53cb\u5192\u9669\u524d\u884c\u3002"} +{"id": "4000446", "video_name": "d5f58308-3e3a-5d93-8de2-de6d011a2789", "text": "\u8fd9\u662f\u4f17\u591a\u661f\u661f\u4e2d\u7684\u4e00\u9897\uff0c\u4f46\u5b83\u662f\u6700\u4eae\u7684\uff0c\u53d1\u51fa\u6a59\u8272\u7684\u5149\u8292\uff0c\u50cf\u95ea\u7535\u4e00\u6837\u4ece\u5929\u800c\u964d\uff0c\u7136\u540e\u53d8\u6210"} +{"id": "4000447", "video_name": "bc4d2fde-cb2c-5cbd-a66b-7b825f064b79", "text": "\u60f3\u8c61\u4e00\u672c\u6253\u5f00\u7684\u4e66\u5728\u82b1\u8c37\u7684\u5730\u9762\u4e0a\u9010\u6e10\u653e\u5927\u3002"} +{"id": "4000448", "video_name": "d23bad8a-6d52-5644-9d0c-d0801cfc73ce", "text": "\u91d1\u53d1\u84dd\u773c\u7684\u51b2\u6d6a\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u3002"} +{"id": "4000449", "video_name": "8d958507-235c-5a18-bfbe-10f818862b68", "text": "\u5728\u8c6a\u534e\u76d8\u5b50\u91cc\u7684\u5de7\u514b\u529b\u829d\u58eb\u86cb\u7cd5\uff0c\u95ea\u95ea\u53d1\u4eae\u7684\u773c\u775b\u3002"} +{"id": "4000450", "video_name": "6a924f02-f5cd-5165-9bfc-eb18d40f066d", "text": "\u521b\u9020\u4e00\u5e45\u4ed6\u4eec\u65c5\u9014\u4e2d\u9047\u5230\u7684\u52a8\u7269\u5f62\u8c61\uff0c\u5305\u62ec\u8272\u5f69\u7f24\u7eb7\u3001\u72ec\u7279\u7684\u751f\u7269\uff0c\u6bcf\u4e00\u4e2a\u90fd\u5c55\u793a\u5176\u4e2a\u6027\u3002"} +{"id": "4000451", "video_name": "dcc7500d-e7c7-5244-b109-f504b9a1b8ef", "text": "\u4e00\u4e2a\u7537\u5b69\u8eba\u5728\u5e8a\u4e0a\u6234\u7740\u8033\u673a\u95ed\u4e0a\u773c\u775b\uff0c4K\u771f\u5b9e\u3002"} +{"id": "4000452", "video_name": "5a8cfe23-302a-504b-bf8f-c38c27e9075e", "text": "\u4e24\u4e2a\u5546\u4eba\u5728\u8fd1\u8ddd\u79bb\u4e89\u8bba\uff0c4K\u3002"} +{"id": "4000453", "video_name": "95d47e1e-9b77-55e0-b521-a848fe1af6c4", "text": "\u955c\u5934\u8ddf\u968f\u5979\u7684\u76ee\u5149\uff0c\u53cd\u6620\u51fa\u5979\u773c\u4e2d\u7684\u57ce\u5e02\u4f18\u96c5\u3002"} +{"id": "4000454", "video_name": "8eb17dfb-422d-5a01-9aee-03e3681f20d7", "text": "\u521b\u5efa\u4e00\u4e2a\u4e24\u5206\u949f\u7684\u89c6\u9891\uff0c\u89c6\u9891\u7684\u7b2c\u4e00\u90e8\u5206\u662f\u5efa\u7b51\u5de5\u4eba\u5728\u65b0\u5efa\u7b51\u5468\u56f4\u8d70\u52a8\uff0c\u89c6\u9891\u7684\u7b2c\u4e8c\u90e8\u5206\u662f\u5efa\u7b51\u5de5\u4eba\u5728\u65b0\u516c\u5bd3\u5185\u4f7f\u7528"} +{"id": "4000455", "video_name": "092e67de-4e17-56eb-b079-118b35c961e0", "text": "\u706b\u5c71\u53d1\u51fa\u7684\u5947\u5e7b\u5149\u7ebf\uff0c\u8d85\u9ad8\u6e05\uff0c\u8d85\u8be6\u7ec6\u3002"} +{"id": "4000456", "video_name": "84e34950-b51f-53a8-ab6c-6d6134580e83", "text": "\u5168\u8eab\uff0c\u68c9\u82b1\u7cd6\u8138\u670b\u514b\u98ce\u683c\u7684\u5e73\u8861\u8f66\uff0c\u5927\u5199\u5b57\u6bcdX\u7684\u5370\u82b1\u8fde\u5e3d\u886b\uff0c\u6e32\u67d3\u56fe\uff0c\u5217"} +{"id": "4000457", "video_name": "fff570ab-8dfe-56da-a517-857dde733e74", "text": "\u4e00\u4e2a\u4eba\u4f7f\u7528AR\u5934\u6234\u8bbe\u5907\u6765\u53ef\u89c6\u5316\u4e00\u4e2a\u5efa\u7b51\u76843D\u6a21\u578b\uff0c\u8d85\u8be6\u7ec6\u3001\u8d85\u903c\u771f\u3001\u9ad8\u5206\u8fa8\u7387\u30013D\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "4000458", "video_name": "0dc4d7b7-e060-543b-9acb-bc334b5df388", "text": "\u4e00\u540d\u51fa\u79df\u8f66\u53f8\u673a\u5750\u5728\u8f66\u91cc\uff0c\u770b\u7740\u6444\u50cf\u5934\u5e76\u5f00\u59cb\u5fae\u7b11\u3002"} +{"id": "4000459", "video_name": "36458fac-497b-5731-9b33-d493a6da0292", "text": "\u89c6\u9891\u516c\u53f8OWlCapital\u63a8\u51fa\u4e86\u4ee5\u96ea\u9e2e\u4e3a\u4e3b\u89d2\u7684\u89c6\u9891\u3002"} +{"id": "4000460", "video_name": "50e05fc9-5ee4-5ee7-bca2-a46ba36ce361", "text": "\u672a\u6765\u4e3b\u4e49\u8d5b\u535a\u670b\u514b\u673a\u5668\u4eba\uff0c8K HDR\uff0c\u6770\u4f5c\uff0c\u6700\u4f73\u54c1\u8d28\u3002"} +{"id": "4000461", "video_name": "fd04310f-10a5-54c9-8db5-f4267566e3da", "text": "\u7bdd\u706b\u7684\u706b\u7130\u5411\u4e0a\u8df3\u52a8\uff0c\u5f62\u6210\u4e86\u8df3\u821e\u5973\u5b69\u7684\u5f62\u72b6\u3002"} +{"id": "4000462", "video_name": "1777998f-6a85-533f-aeb5-8130da03c315", "text": "\u6ce1\u6ce1\u7403\u548c\u518d\u6b21\u6253\u6ce1\u6ce1\u7403\uff01\uff08\u2026\uff09\u4ee5\u9a6c\u683c\u91cc\u7279\u98ce\u683c\u3002"} +{"id": "4000463", "video_name": "8e0ec49b-b7fa-5376-b4b7-c5dea5ed5935", "text": "1970\u5e74\u4ee3\u7684\u4e1c\u6b27\u6050\u6016\u7535\u5f71\uff0c\u4e00\u79cd\u65e0\u6cd5\u8a00\u8bf4\u7684\u6050\u6016\u7b3c\u7f69\u7740\u4e00\u4e2a\u8239\u575e\u3002"} +{"id": "4000464", "video_name": "dd03f04c-e846-5b48-be5f-bf801f7d0986", "text": "\u6c99\u6f20\u4e2d\u7684\u751f\u6d3b\u5bf9\u4e8e\u6c99\u6f20\u6b65\u884c\u8005\u6765\u8bf4\u662f\u4e00\u573a\u6bcf\u65e5\u4e3a\u751f\u5b58\u800c\u594b\u6597\u7684\u6311\u6218\u3002\u5199\u4e00\u7bc7\u6545\u4e8b\uff0c\u8bb2\u8ff0\u4e00"} +{"id": "4000465", "video_name": "590f9762-b3fb-53ec-a223-799d6ffde013", "text": "\u751f\u7269\u722c\u884c\u5728\u6df7\u51dd\u571f\u8d70\u5eca\u4e0a\uff0c\u4fc4\u7f57\u65af\u52a8\u753b\u9ed1\u767d\u7535\u5f71\u77f3\u7248\u753b\uff0c1900\u5e74\u4ee3\u3002"} +{"id": "4000466", "video_name": "2482d7e6-5da9-5c61-9638-6e9de14f67bb", "text": "\u4fe1\u606f\uff1a\u5496\u5561\u8272\u814a\u80a0\u72ac\u5728\u516c\u56ed\u91cc\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\uff0c\u6444\u50cf\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002NINO\uff08\u5b57\u4f53"} +{"id": "4000467", "video_name": "34de86fb-4e3a-5170-8e98-fbe769cdc54e", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5c0f\u5fc3\u7ffc\u7ffc\u5730\u6234\u4e0a\u8033\u673a\uff0c\u5728\u5145\u6ee1\u4e13\u6ce8\u548c\u96c6\u4e2d\u529b\u7684\u623f\u95f4\u91cc\u5750\u5230\u684c\u5b50\u524d\uff0c\u521b\u9020\u4e86\u4e00\u4e2a\u97f3"} +{"id": "4000468", "video_name": "7ef8c82e-fcd0-5aaa-8301-849ac95c0a92", "text": "\u72d7\u5750\u5728\u6811\u4e0a\uff0c\u6811\u5750\u5728\u5730\u7403\u4e0a\uff0c\u5730\u7403\u5750\u5728\u592a\u9633\u4e0a\uff0c\u592a\u9633\u5750\u5728\u94f6\u6cb3\u7cfb\u4e0a\uff0c\u94f6\u6cb3\u7cfb\u5750\u5728"} +{"id": "4000469", "video_name": "dc104aa2-92ea-528d-96d4-54f4d8156ff6", "text": "\u9ed1\u8272\u5916\u5957\u4e2d\u7684\u50cf\u7d20\u827a\u672f\u9ed1\u732b\u5728\u6ee1\u6708\u7684 dystopian \u57ce\u5e02\u591c\u665a\u8d70\u8def\u3002"} +{"id": "4000470", "video_name": "c1666c18-2efe-5f03-913a-1deb38aad3a7", "text": "\u6cf0\u7c73\u5c14\u7eb3\u5fb7\u90a6\u9a6c\u675c\u8d56\u5bfa\u5e99\u7684\u8fdc\u666f\u955c\u5934\u3002"} +{"id": "4000471", "video_name": "14ec3664-1fd6-5ecc-b0b8-edbf7af10523", "text": "\u9a91\u58eb\u4eec\u5728\u96ea\u5c71\u4e0a\u591c\u6218\uff0c\u6325\u821e\u7740\u5251\uff0c\u95ea\u70c1\u7740\u706b\u5149\u3002"} +{"id": "4000472", "video_name": "9978b9df-3545-5168-8cff-10f9e2ff2194", "text": "\u5f53Fish\u62ff\u7740\u73cd\u73e0\u65f6\uff0c\u4ed6\u610f\u8bc6\u5230\u6d77\u6d0b\u7684\u771f\u6b63\u5b9d\u85cf\u662f\u5361\u901a\u98ce\u683c\u7684\u3002"} +{"id": "4000473", "video_name": "11650045-b92f-58fb-bbb1-d56ab913aad0", "text": "\u4f69\u4f69\u9752\u86d9\u7684\u6a21\u56e0\uff0c\u5361\u901a\u98ce\u683c\uff0c\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "4000474", "video_name": "856b64f9-c660-5535-99af-5157a14fb6ec", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u58eb\uff0c\u5b8c\u7f8e\u7684\u9762\u5bb9\uff0c\u660e\u6697\u6548\u679c\uff0c\u5728\u6d77\u8fb9\u9644\u8fd1\u3002"} +{"id": "4000475", "video_name": "64cac77b-1b1c-5323-876d-aad75e758cc5", "text": "\u5c55\u793a\u5361\u8482\u514b\u906d\u53d7\u53cd\u590d\u51fa\u73b0\u7684\u5669\u68a6\u7684\u75db\u82e6\uff0c\u4ed6\u5728\u5e8a\u4e0a\u7ffb\u6765\u8986\u53bb\uff0c\u88ab\u5e84\u56ed"} +{"id": "4000476", "video_name": "29265c92-a7a5-5e87-a7d9-303a64ffe805", "text": "\u5feb\u4e50\u8df3\u821e\u7684\u5916\u661f\u4eba\uff08\u7eff\u8272\u76ae\u80a4\uff0c\u9ad8\u5927\u7626\u957f\uff09\uff0c\uff08\u52a8\u753b\uff0c3D\uff09"} +{"id": "4000477", "video_name": "84b1462d-f242-5875-ae08-4a7fa2b37d3b", "text": "\u4e00\u4e2a\u4eba\u5728\u4e00\u5ea7\u53e4\u8001\u7684\u9ed1\u6697\u5e84\u56ed\u8fdb\u884c\u63a2\u9669\uff0c\u4ee5\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u62cd\u6444\u8005\u6389\u8fdb\u4e86\u6728\u5730\u677f\u4e0a\u7684\u4e00\u4e2a\u6d1e\u91cc\u3002"} +{"id": "4000478", "video_name": "1b5ab615-c802-5f6b-9000-cdd4a53ed314", "text": "45\u79d2\u7684\u821e\u8e48\uff0c\u771f\u5b9e\u7684\u91d1\u521a\u9e66\u9e49Caninde\u3002"} +{"id": "4000479", "video_name": "60cfefff-c136-53f1-b458-068f1dcee499", "text": "\u521b\u9020\u4e00\u4e2a\u6709\u8da3\u7684\u8ff7\u56e0\u866b\u9f9f"} +{"id": "4000480", "video_name": "f887a9eb-6bfd-5a46-8e65-6655dd49c384", "text": "\u63cf\u8ff0\u4e00\u4e0b\u5c0f\u7ec4\u4e00\u8d77\u514b\u670d\u7684\u5c0f\u6311\u6218\u6216\u969c\u788d\u3002"} +{"id": "4000481", "video_name": "6bcc023f-6392-5f5e-88a7-f2a718ce3625", "text": "\u5b69\u5b50\u4eec\u5728\u82b1\u56ed\u91cc\u8e22\u8db3\u7403\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "4000482", "video_name": "a04cd3fe-b283-528e-98c9-42df0f409638", "text": "\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\uff0c\u4fef\u89c6\u62cd\u6444\uff0c\u6444\u50cf\u673a\u6162\u6162\u62c9\u8fdc\u3002"} +{"id": "4000483", "video_name": "373b9118-eb32-5630-b14c-e1ee5e53a76d", "text": "\u5927\u578b\u8d27\u8239\u5728\u6d77\u5cb8\u7ebf\u7ecf\u8fc7\u3002"} +{"id": "4000484", "video_name": "12845c95-8a87-515b-858e-6a71c1de1d87", "text": "\u97f3\u4e50\u8282\u4e0a\u7684\u4eba\u7fa4\u5954\u8dd1\u3002"} +{"id": "4000485", "video_name": "1edbc99f-e922-595c-9e62-6a6dbb87b660", "text": "\u6e56\u4e2d\u592e\u6f02\u6d6e\u7740\u4e00\u4e2a\u5706\u5f62\u7684\u623f\u5b50\u3002\u5728\u9ec4\u91d1\u65f6\u6bb5\u7684\u5149\u7167\u4e0b\u3002"} +{"id": "4000486", "video_name": "084355ba-3181-5ddc-a81d-b8816099eeeb", "text": "\u4e00\u4e2a\u6db2\u6001\u7684\u4eba\u901a\u8fc7\u4ed6\u7684\u7259\u9f7f\u53ec\u5524\u95ea\u7535\u3002"} +{"id": "4000487", "video_name": "a84a49df-5b25-5856-b2b1-698dbbfab3ec", "text": "\u68ee\u6797\u91cc\u7684\u6674\u5929\u3002\u7559\u8a00\uff1a\u5854\u5c3c\u4e9a\u3002"} +{"id": "4000488", "video_name": "8d83221d-2124-5ba7-a240-78b3a4bd74b1", "text": "\u4e00\u4e2a\u5305\u542bZ\u548cG\u7684LOGO\u8bbe\u8ba1\uff0c\u4ee5\u84dd\u5929\u4e3a\u80cc\u666f\uff0c\u5177\u6709\u672a\u6765\u79d1\u6280\u611f\uff0c\u7a81\u51fa\u4e86Z\u548cG\u3002"} +{"id": "4000489", "video_name": "5d44eec5-c871-581b-a700-32028fa032cf", "text": "\u68a6\u5e7b\u6d77\u6d0b\u91cc\u7684\u5c0f\u6d77\u9a6c"} +{"id": "4000490", "video_name": "e7955699-7711-580f-ba58-3dcfca3ab51d", "text": "\u83b7\u53d6\u4e00\u6bb5\u7537\u5b50\u5f00\u8f66\u65f6\u98de\u884c\u7684\u957f\u89c6\u9891\u3002"} +{"id": "4000491", "video_name": "e9150103-7307-5ada-b43a-7390a4b241b2", "text": "\u4e00\u4e2a\u7279\u6280\u6f14\u5458\u5b8c\u6210\u4e86\u4e00\u4e2a\u540e\u7a7a\u7ffb\u3002"} +{"id": "4000492", "video_name": "2b21285c-ed13-5853-9b86-0cfe05e01200", "text": "\u963f\u62c9\u4f2f\u8bed\u7684\u201c\u963f\u62c9\u201d\u5b57\u6837\u4f4d\u4e8e\u4e2d\u592e\uff0c\u91d1\u8272\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u80cc\u540e\u6709\u5149\u675f\u5c04\u51fa\uff0c3D\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c4"} +{"id": "4000493", "video_name": "856eca46-5a97-57e7-9bf8-eede5ee52ae8", "text": "\u4e00\u573a\u563b\u54c8\u97f3\u4e50\u89c6\u9891\u4e2d\u7684\u7535\u5f71\u573a\u666f"} +{"id": "4000494", "video_name": "4058b12c-0a53-53b2-b863-3925a8768ea7", "text": "\u7ea2\u8863\u7537\u5b50\u5468\u56f4\u6253\u8d77\u4e86\u96f7\u58f0\u3002\n\nSource sentence: I am going to the store to buy some milk.\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u725b\u5976\u3002"} +{"id": "4000495", "video_name": "27e3b634-bbfa-5b3b-ada7-8f3078cfad8e", "text": "\u5927\u897f\u90e8\u9152\u9986\u5916\u9762\u8fdc\u666f\u62cd\u6444\uff0c\u6709\u6447\u6446\u7684\u95e8\u548c\u5899\u4e0a\u7684\u901a\u7f09\u4ee4\u3002"} +{"id": "4000496", "video_name": "f845d438-0399-5ee7-aeec-27f37b11f06a", "text": "\u4e00\u540d\u5973\u5b50\u8bf7\u6c42\u5979\u7684\u6bcd\u4eb2\u5728\u58a8\u897f\u54e5\u6258\u96f7\u7fc1\u7684\u76d1\u72f1\u91cc\u5e2e\u5979\u4fdd\u91ca\u3002"} +{"id": "4000497", "video_name": "672fcc66-41fa-5bc3-b512-9625e5b142b2", "text": "\u6240\u6709\u7684\u4e1b\u6797\u52a8\u7269\u90fd\u671d\u7740\u5c71\u5954\u8dd1\u3002"} +{"id": "4000498", "video_name": "41713a65-904a-52eb-bf59-76e9046aa851", "text": "\u9ec4\u74dc\u65d7\u5728\u98ce\u4e2d\u98d8\u626c\u3002"} +{"id": "4000499", "video_name": "d9eb8dbc-ca49-5fab-ae53-c4f4e5a0b1e6", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6b23\u7136\u5730\u7a7f\u8fc7\u5b87\u5b99\u98de\u8239\u7684\u8d70\u5eca\u3002"} +{"id": "4000500", "video_name": "a618bf9a-ce8b-5653-bcb5-6edd3105a8ab", "text": "\u4e00\u53ea\u732b\u5b87\u822a\u5458\u524d\u5f80\u6708\u7403\uff08\u5976\u916a\u6708\u7403\uff09\uff0c\u5728\u90a3\u91cc\u751f\u6d3b\u7740\u4e00\u7fa4\u8001\u9f20\u3002"} +{"id": "4000501", "video_name": "afb18d33-c138-586d-8564-73769d9fc3f0", "text": "\u795e\u7ecf\u7f51\u7edc\u76f8\u4e92\u8fde\u63a5\u3002"} +{"id": "4000502", "video_name": "c73dfc81-66e8-5f15-ac3f-3dad0a178630", "text": "\u963f\u62c9\u4f2f\u9a91\u58eb\u548c\u9c7c\u9e70\u9a91\u58eb\u4e4b\u95f4\u7684\u53f2\u8bd7\u822c\u7684\u6218\u6597\uff01\u5c31\u50cf\u7535\u5f71\u5929\u5802\u4e00\u6837\u3002"} +{"id": "4000503", "video_name": "72440aba-e902-5f7a-85ef-cbccc85292a0", "text": "\u82f1\u6587\u53e5\u5b50\uff1ahero and the villain in the dark, blue lights backround\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1\u96c4\u548c\u53cd\u6d3e\u5728\u9ed1\u6697\u7684\u84dd\u8272\u706f\u5149\u80cc\u666f\u4e0b"} +{"id": "4000504", "video_name": "1f3da13a-48bc-5fd1-8553-8ad9c19661b2", "text": "\u7136\u800c\uff0c\u7531\u4e8e\u79d1\u5b66\u5bb6\u7684\u534f\u4f5c\u52aa\u529b\u3002"} +{"id": "4000505", "video_name": "bd2e0f56-1683-5892-83ec-dd8e4dbae3df", "text": "\u827e\u4e1d\u9edb\u65af\u52a8\u6f2b\u89d2\u8272\u8d70\u5728\u8def\u4e0a\u3002"} +{"id": "4000506", "video_name": "e098fd39-8fd2-5d0e-b230-ef9cc4261e94", "text": "\u6050\u6016\u7684\u602a\u7269\u4e4b\u5bb6\u9ed1\u591c\u4e2d\u3002"} +{"id": "4000507", "video_name": "9912b51c-02bf-5347-804a-4d6027dac327", "text": "H.R.\u5409\u683c\u5c14\u751f\u7269\u673a\u68b0\u666f\u89c2\uff1b\u5feb\u4e50\u800c\u8d85\u73b0\u5b9e\u7684\u3002"} +{"id": "4000508", "video_name": "7463fe08-be82-50f4-98f0-175e4dc07309", "text": "\u5728\u9ed1\u6697\u4e2d\u5c3d\u529b\u542c\u5230\u4f4e\u8bed\u7684\u53c2\u4e0e\u8005\u3002\u6050\u6016\u53ef\u6015\u7684\u5f62\u8c61\u3002"} +{"id": "4000509", "video_name": "409a0cff-1465-551b-8566-7d38386cee52", "text": "\u5e74\u8f7b\u5973\u5b69\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u8df3\u821e\u3002"} +{"id": "4000510", "video_name": "bc6b25fc-3850-5c3b-abc0-73c54fccc1c7", "text": "Stonerbra420\uff0c\u5927\u9ebb\u575a\u679c\u5145\u8db3\uff0c\u7f50\u5b50\u4ece\u4e0d\u7a7a\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5438\u6bd2\u7238\u7238\u3002\u9634\u9053\u653e\u5c41\u5c0f\u961f\uff01"} +{"id": "4000511", "video_name": "b2135d3c-83de-5065-ae24-0e35cc1301be", "text": "\u592a\u9633\u5185\u90e8\u4f4f\u7740\u4e00\u53ea\u9ed1\u8272\u7684\u72f0\u72de\u6c34\u6bcd\uff0c\u9ed1\u767d\u5f71\u50cf\u88ab\u53d1\u73b0\u3002"} +{"id": "4000512", "video_name": "b0f185a9-e7a0-5a41-abe9-3edd98c38a20", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5c71\u6c34\u753b\u4e2d\u6709\u98d8\u52a8\u7684\u96fe\u5929\u548c\u98de\u7fd4\u7684\u9e1f\u3002"} +{"id": "4000513", "video_name": "0b103463-1cb8-51a0-bc5b-e2d1c3230adb", "text": "\u672a\u6765\u7684\u591c\u665a\u57ce\u5e02\uff0c\u6709\u4ee5\u65e5\u672c\u9526\u9ca4\u5f62\u5f0f\u7684\u5168\u606f\u5f71\u50cf\uff0c\u975e\u5e38\u68d2\u3002"} +{"id": "4000514", "video_name": "3556b4e3-988f-55b0-b893-8927c10efa20", "text": "\u7f8e\u4e3d\u7684\u6807\u5fd7\u6027\u5357\u6fb3\u5927\u5229\u4e9a\u8461\u8404\u9152\u5e84\u56ed\u666f\u89c2\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000515", "video_name": "7efbc61d-8a14-5d8f-b0aa-04cc92eda47e", "text": "\u4e00\u4e2a\u6f02\u6d6e\u5728\u6781\u7b80\u4e3b\u4e49\u7a7a\u95f4\u4e2d\u76843D\u73bb\u7483\u7403\u6e32\u67d3\u56fe\u3002\u7403\u5185\u6709\u4e00\u4e2a\u5fae\u7f29\u751f\u6001\u7cfb\u7edf\uff0c\u6709\u6811\u6728\u3001\u52a8\u7269\u548c\u6c34\uff0c"} +{"id": "4000516", "video_name": "8affffb2-7882-5208-8f15-aaa55b91374f", "text": "\u4e00\u5f20\u903c\u771f\u7684\u7535\u5f71\u5316\u573a\u666f\uff0c\u63cf\u8ff0\u4e86\u519c\u6c11\u5728\u7a3b\u7530\u4e2d\u88ab\u86c7\u54ac\u4f24\u7684\u60c5\u666f\u3002"} +{"id": "4000517", "video_name": "8b96f783-e5a9-56a2-b692-e5e111e79b00", "text": "\u7f51\u7edc\u670b\u514b\u9152\u9986\uff0c\u80cc\u666f\u5899\u4e0a\u95ea\u70c1\u7740JEER\u5b57\u6837\uff0c\u6444\u50cf\u673a\u7f13\u6162\u5730\u62c9\u8fd1\u9152\u5427\u7684\u73bb"} +{"id": "4000518", "video_name": "c8239c84-a38a-5088-9b13-d1bbadb79e11", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u624e\u54c8\u00b7\u54c8\u8fea\u5fb7\u98ce\u683c\u7684\u5efa\u7b51\u90e8\u5206\u3002\n\nSource sentence: The restaurant has a variety of delicious dishes to choose from. \n\u8fd9\u5bb6\u9910\u5385\u6709\u5404"} +{"id": "4000519", "video_name": "049162c9-d866-51a7-bbdf-838e84b37812", "text": "\u592a\u7a7a\u65c5\u884c\u5e76\u88ab\u592a\u7a7a\u8b66\u5bdf\u6293\u4f4f"} +{"id": "4000520", "video_name": "d4b26700-1fa3-5d4c-bfbf-56afd05c1d00", "text": "\u90a3\u662f\u4e00\u4e2a\u708e\u70ed\u7684\u65e5\u5b50\uff0c\u592a\u9633\u9ad8\u60ac\uff0c\u9e1f\u513f\u548c\u52a8\u7269\u4eec\u5f88\u96be\u627e\u5230\u8db3\u591f\u7684\u6c34\u6765\u89e3\u6e34\u3002\u5176\u4e2d\u6709"} +{"id": "4000521", "video_name": "79f33824-fed8-5cec-9ea3-efba369181f4", "text": "\u533b\u9662\u7684\u767d\u8272\u5899\u58c1\u3002 \n\nSource sentence: The sun is setting over the mountains. \n\n\u592a\u9633\u6b63\u5728\u5c71\u9876\u843d\u5c71\u3002"} +{"id": "4000522", "video_name": "8fbd0c2f-025e-52d2-935a-481e0706a4e0", "text": "\u624b\u63e1\u7740\u4e00\u5f20\u6ef4\u6c34\u7684\u9910\u5dfe\u3002"} +{"id": "4000523", "video_name": "fd71f2a0-6c84-55d3-a387-62cd1b7b8890", "text": "\u8d4b\u4e88\u5973\u6027\u6743\u529b\u627e\u5230\u81ea\u5df1\u6210\u529f\u7684\u9053\u8def\u3002"} +{"id": "4000524", "video_name": "5e1a4e23-10ae-5eb9-b808-5822911bae6b", "text": "\u4e00\u4f4d\u7a7f\u7740\u672a\u6765\u611f\u7d2b\u8272\u670d\u88c5\u7684\u7f8e\u4e3d\u5973\u6027\u5728\u7ebd\u7ea6\u65f6\u88c5\u5468\u4e0a\u8d70\u79c0\u3002"} +{"id": "4000525", "video_name": "6a78dfa0-ad34-5dbe-9812-bec1b1a3f32b", "text": "\u871c\u8702\u519b\u961f\u5728\u592a\u7a7a\u98de\u884c\u3002"} +{"id": "4000526", "video_name": "b5c8504b-240f-57f5-a640-3af4b44712fa", "text": "\u5236\u4f5c\u4e00\u6bb5\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u73b0\u72d0\u72f8\u8d70\u8def\u7684\u6837\u5b50\u3002"} +{"id": "4000527", "video_name": "c7e376fa-6bc6-5a1b-8ef4-ec4518f31d7f", "text": "\u9e1f\u4ee5\u67e5\u7406\u00b7\u54c8\u73c0\u7684\u98ce\u683c\u98de\u884c\u3002\u51e0\u4f55\u56fe\u6848\u3002\u9c9c\u8273\u7684\u989c\u8272\u300220\u4e16\u7eaa60\u5e74\u4ee3\u7684\u5e73\u9762\u8bbe\u8ba1\u3002"} +{"id": "4000528", "video_name": "0619afdc-eaa9-5819-a04c-66d59e615331", "text": "\u53f0\u5317101\u639b\u4e0a\u4e00\u9762\u5beb\u6709\u4e2d\u6587\u5b57\u300c\u611b\u300d\u7684\u65d7\u5e5f\u3002"} +{"id": "4000529", "video_name": "8cfb84cf-8f09-55d4-b053-b134d6098e64", "text": "\u901a\u8fc7\u8fd9\u4e2a\u8ff7\u4eba\u7684\u89c6\u9891\uff0c\u8e0f\u4e0a\u4e00\u4e2a\u89c6\u89c9\u5965\u5fb7\u8d5b\uff0c\u63a2\u7d22\u4e00\u4e2a\u795e\u79d8\u800c\u8d85\u51e1\u7684\u773c\u775b\u3002\u8fd9\u53ea\u773c\u775b\u4e0d"} +{"id": "4000530", "video_name": "284201a2-a0c9-5953-a0a6-8be8f03e12df", "text": "\u7f8e\u675c\u838e\u4e4b\u9996\u6ce8\u89c6\u7740\u76f8\u673a\uff0c\u8d1d\u514b\u8f9b\u65af\u57fa\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\uff0c\u9897\u7c92\u72b6"} +{"id": "4000531", "video_name": "3381cd6f-034a-506b-a332-f2490ca76075", "text": "\u96e8\u6ef4\u5728\u6c34\u5751\u4e0a\u7684\u7279\u5199\u955c\u5934\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "4000532", "video_name": "da3b41f1-9427-5015-8c9a-eb3a4d025d73", "text": "\u5979\u5929\u4f7f\u822c\u7684\u9762\u5bb9\u5728\u67d4\u548c\u7684\u9633\u5149\u4e0b\u66f4\u52a0\u7a81\u51fa\uff0c\u6e05\u6f88\u7684\u773c\u775b\u53cd\u6620\u51fa\u7eaf\u771f\u3002\u5979\u6d41\u52a8\u7684\u53d1\u4e1d"} +{"id": "4000533", "video_name": "651560ec-6515-5484-a5a5-300e8bf6f5ea", "text": "\u8759\u8760\u4fa0\u5728\u54e5\u8c2d\u5e02\u7684\u591c\u665a\u6c1b\u56f4\u4e2d\uff0c\u7eff\u8272\u70df\u96fe\u4e2d\uff0c\u8759\u8760\u4fa0\u611f\u5230\u60b2\u4f24"} +{"id": "4000534", "video_name": "f01e1c49-6a8e-54d7-9778-e14f837d2d52", "text": "\u751f\u6210\u6392\u706f\u8282\u5f69\u8272\u7206\u7af9\u5728\u7a7a\u4e2d\u7206\u70b8\u7684\u89c6\u9891\uff0c\u80cc\u666f\u662f\u8ff7\u4eba\u76843D\u6e32\u67d3\u771f\u5b9e\u573a\u666f\u3002"} +{"id": "4000535", "video_name": "26f71fc0-26fc-55eb-b9ef-da202bfa1909", "text": "\u4ee5\u8272\u5217\u58eb\u5175\u5728\u8036\u8def\u6492\u51b7\u7684\u897f\u5899\u7948\u7977\u3002"} +{"id": "4000536", "video_name": "3bc8d669-4b6a-5123-af8c-5dbc10a738d1", "text": "\u4e00\u4e2a\u56fe\u50cf\u663e\u793a\u4e00\u4e2a\u7c7b\u4f3c\u8c37\u6b4c\u6807\u5fd7\u7684\u6807\u5fd7\u3002"} +{"id": "4000537", "video_name": "c0b6d05c-3e48-5974-8d66-a1592d4fbf02", "text": "\u5361\u59c6\u5361\u5229\u79d1\u732b\u54aa\u7684Squishmallow\u5f00\u5fc3\u5730\u5728\u8349\u5730\u4e0a\u4e0a\u4e0b\u8df3\u3002"} +{"id": "4000538", "video_name": "e9748fd6-9550-5863-9d85-75416e7330f3", "text": "\u63cf\u7ed8\u975e\u6d32\u8349\u539f\u4e0a\u4e00\u7fa4\u96c4\u72ee\uff0c\u5c0f\u72ee\u5b50\u5728\u5468\u56f4\u73a9\u800d\u3002"} +{"id": "4000539", "video_name": "751672d0-60e7-5bee-9278-f9dbaddb8a15", "text": "\u8ba9\u89d2\u8272\u5fae\u7b11\u5e76\u8f6c\u5934\u3002"} +{"id": "4000540", "video_name": "08c4d85d-13dc-5e26-98b4-7ea18d123bb8", "text": "\u81ea\u8650\u7684\u57ce\u5e02\u5e74\u8f7b\u4eba\u5728\u4ed6\u7684\u5367\u5ba4\u91cc\uff0c16:9\u903c\u771f\u7684\u52a8\u6001\u6444\u50cf\u673a\u5411\u53f3\u5e73\u79fb\uff0c\u5b8c\u7f8e\u7684\u4eba\u4f53\u52a8\u4f5c\u5728\u9ad8\u6e058K\u4e2d"} +{"id": "4000541", "video_name": "a2667ceb-aa26-52e7-8aeb-798d57449f1d", "text": "\u4e00\u500b\u7531\u6c34\u88fd\u6210\u7684\u5de8\u5927\u8eab\u5f62\uff0c\u5e36\u8457\u7fc5\u8180\u3002"} +{"id": "4000542", "video_name": "23527340-c637-5ce2-b22e-4fcf0b5eb6c0", "text": "\u8fea\u58eb\u5c3c\u4e50\u56ed\u91cc\u7a7f\u8ff7\u4f60\u88d9\u3001\u6bd4\u526a\u5200\u624b\u8fd8\u840c\u7684\u5973\u5b69\u4eec\u5fae\u7b11\u7740\u6446\u51fa\u548c\u5e73\u624b\u52bf\uff0c\u53d1\u8272\u8d85\u7ea7"} +{"id": "4000543", "video_name": "e4f66090-434a-57eb-a5f8-6c79cfa10b58", "text": "\u591c\u7a7a\u4e2d\u7684\u6708\u7403\u7b80\u5355\u771f\u5b9e\u7684\u62cd\u6444\uff0c\u5206\u8fa8\u7387\u4e3a16:9\uff0c\u5e27\u7387\u4e3a60\u3002"} +{"id": "4000544", "video_name": "de696e3f-771a-59aa-96a2-e77ccc94c237", "text": "4K\u52a8\u753b\u4e2d\uff0c\u5409\u5c3c\u4ece\u5b9d\u77f3\u4e2d\u94bb\u51fa\u6765\u3002"} +{"id": "4000545", "video_name": "c941f4e4-4821-5019-bb87-3086f1291e2d", "text": "\u5730\u7403\u7684\u79cd\u5b50\u901a\u8fc7\u4eba\u7c7b\u751f\u6839\u3002"} +{"id": "4000546", "video_name": "a3209870-607c-5349-ac4d-10a5bd1bf54d", "text": "\u5c55\u793a\u7eff\u773c\u7537\u5b69\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e2d\u7a7f\u68ad\uff0c\u63cf\u7ed8\u4ed6\u5185\u5fc3\u6df7\u4e71\u7684\u72b6\u6001\u3002\u4f7f\u7528\u5feb\u901f\u526a\u8f91"} +{"id": "4000547", "video_name": "525e3c7e-5a96-50ed-abe6-c2fc17b3cacd", "text": "\u4e00\u672c\u4e66\u6389\u5728\u5730\u4e0a\uff0c\u4e00\u53ea\u9b54\u6cd5\u53d8\u8272\u9f99\u4ece\u4e2d\u8dd1\u51fa\u6765\u3002"} +{"id": "4000548", "video_name": "7f744ab2-f8c1-5cba-a3e9-956461bf5399", "text": "\u7537\u4eba\u6b63\u5728\u5403\u4e00\u4e2a\u6a59\u5b50\uff0c\u4ed6\u559c\u6b22\u6bcf\u4e00\u4e2a\u90e8\u5206\uff0c\u76f4\u89c6\u7740\u4ed6\u7684\u5973\u4eba\u3002"} +{"id": "4000549", "video_name": "9b5adaf4-bc2b-57ab-8e0a-3770d6e63503", "text": "\u4e00\u6bb5\u53e4\u8001\u7684\u89c6\u9891\uff0c\u4e00\u7fa4\u4eba\u7ad9\u5728\u73bb\u7483\u524d\uff0c\u770b\u7740\u706b\u8f66\u5916\u7684\u8857\u9053\u3002"} +{"id": "4000550", "video_name": "d3860974-a446-57b4-8fae-56a1b1f0d40e", "text": "\u4e00\u53ea\u5c0f\u5c0f\u7684\u5927\u8c61\u5931\u53bb\u5e73\u8861\uff0c\u4ece\u9ad8\u6811\u4e0a\u6454\u843d\u4e0b\u6765\u3002"} +{"id": "4000551", "video_name": "b2e3773b-bd8f-55ae-94d5-b0c783996e03", "text": "\u975e\u5e38\u75b2\u5026\u768440\u5c81\u5fb7\u56fd\u5973\u4eba\u5355\u624b\u62ff\u7740\u7ba1\u5b50\uff0c\u7a7f\u7740\u51ac\u88c5\u3001\u96ea\u9774\uff0c\u5728\u7ebd\u7ea6\u5730\u94c1\u7ad9\u5185\u7ad9\u7acb\u65c5\u884c"} +{"id": "4000552", "video_name": "aaf8d21c-a6e2-51b2-8b40-ca355f9281f6", "text": "\u4e00\u4f4d\u9ad8\u5927\u7684\u957f\u53d1\u5973\u5b50\uff0c\u9a91\u7740\u4e00\u8f86\u5de8\u5927\u7684\u6a59\u8272Vespa\u6469\u6258\u8f66\uff0c\u9a7e\u9a76\u5728\u4f0a\u65af\u5766\u5e03\u5c14\u535a"} +{"id": "4000553", "video_name": "6dcbcd38-81fa-5a79-a895-3a7ba81c43a7", "text": "\u534e\u534e\u52a0\u6cb9\u7ad9\u6d88\u606f\uff1aNK\u5305\u88c5\u592a\u5983\u7cd6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000554", "video_name": "0cf462af-b588-580a-9fcb-f79df0f91245", "text": "\u521b\u5efa\u903c\u771f\u7684\u65c1\u906e\u666e\u7537\u5b50\u5750\u5728\u6811\u4e0b\u3002"} +{"id": "4000555", "video_name": "aa3225b0-3c1b-5c8f-bd16-bb4a6fb93884", "text": "\u4e00\u6839\u80e1\u841d\u535c\u5728\u4e00\u8f86\u6469\u6258\u8f66\u4e0a\u3002"} +{"id": "4000556", "video_name": "1d4d38fb-3d14-5e58-8322-a478718e1383", "text": "\u4e00\u4f4d\u88ab\u9009\u4e3a\u533b\u751f\u7684\u9752\u5c11\u5e74\u5973\u5b69\u3002"} +{"id": "4000557", "video_name": "1f741f8f-c517-5600-b28e-b76fac04d273", "text": "\u4ee5\u4e00\u5f20\u63d2\u56fe\u5c55\u793a\u4e39\u5c3c\u5c14\u5728\u5916\u754c\u538b\u529b\u9762\u524d\u62d2\u7edd\u59a5\u534f\u81ea\u5df1\u7684\u4ef7\u503c\u89c2\u3002"} +{"id": "4000558", "video_name": "c6ab124a-f681-5fba-8798-a2e3865217e7", "text": "\u957f\u9888\u9e7f\u5361\u901a\u5f62\u8c61\u5728\u89d2\u6597\u573a\u91cc\u5954\u8dd1\uff0c\u53bb\u627e\u4e00\u53ea\u5927\u8c61\u3002"} +{"id": "4000559", "video_name": "52d881f5-aa02-51a7-abf1-4761ba312497", "text": "\u7b2c\u4e8c\u4e2a\u4ece\u6469\u5929\u5927\u697c\u4e0a\u8dcc\u843d\u3002"} +{"id": "4000560", "video_name": "c7bcdaf4-db43-5630-8fc6-e5c26753f46b", "text": "\u8774\u8776\u632f\u7fc5\u98de\u79bb\u82b1\u6735\u3002"} +{"id": "4000561", "video_name": "61f89ec1-6999-5c52-a536-0e1d430c7a55", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5c71\u9876\u4e0a\u4e0e\u4e00\u53ea\u56db\u81c2\u7334\u602a\u640f\u6597\uff0c\u624b\u6301\u4e24\u628a\u5251\uff0c\u80cc\u666f\u4e3a\u65e5\u843d\u7684\u7535\u5f71\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "4000562", "video_name": "783d2328-5d50-5fec-9e47-12c15ebd3714", "text": "\u673a\u5668\u4eba\u53ef\u4ee5\u73a9\u7684\u8db3\u7403\u3002"} +{"id": "4000563", "video_name": "4e968970-6924-5d0c-83ff-907f78aab600", "text": "\u6a31\u82b1\u968f\u98ce\u98d8\u52a8\uff0c\u76f8\u673a\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "4000564", "video_name": "45befb44-dd54-53e4-9d52-2aa5dbd13baf", "text": "\u5982\u4f55\u5728\u5bb6\u8d5a\u53d6\u5bb9\u6613\u7684\u94b1\u3002"} +{"id": "4000565", "video_name": "94ad0279-fd9e-5e89-9eb3-e6fb9a063c21", "text": "\u751f\u65e5\u5feb\u4e50\uff0cDaim\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000566", "video_name": "8a86324e-a522-5b75-8793-0b0cdd46c734", "text": "\u4e00\u4e2a\u767d\u8272\u7684\u732b\u5728\u665a\u4e0a\u5750\u5728\u7a97\u524d\uff0c\u7a81\u7136\u4e00\u53ea\u98de\u9e1f\u4ece\u7a97\u5916\u770b\u5230\u4e86\u8fd9\u53ea\u732b\u3002"} +{"id": "4000567", "video_name": "8257d1b8-a3f8-5620-b0af-c300b3b9c0f0", "text": "\u4e00\u4f4d\u7a7f\u7740\u76ae\u5939\u514b\u7684\u7537\u5b50\u8d70\u5728\u672a\u6765\u4e3b\u4e49\u8857\u9053\u4e0a\uff0c\u4e00\u680b\u5efa\u7b51\u7269\u7206\u70b8\u4e86\u3002"} +{"id": "4000568", "video_name": "1228e21f-7657-5a38-a332-b39c8b6758c0", "text": "\u5965\u8fea200\u65c5\u884c\u8f66\u5728\u591c\u665a\u57ce\u5e02\u884c\u9a76\uff0c\u7ea2\u8272\u8f66\u8eab\uff0cUHD 4K\u3002"} +{"id": "4000569", "video_name": "60dc1cb0-1269-5ebb-976a-3ec8f837b7a8", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u4eba\u5728\u88ab\u718a\u5305\u56f4\u7684\u793e\u533a\u91cc\u3002"} +{"id": "4000570", "video_name": "49941d3a-951e-58dd-b2fc-71177800b2ca", "text": "\u5973\u5b69\u770b\u5230\u4e00\u4e2a\u62ff\u7740\u5409\u4ed6\u7ad9\u5728\u5979\u95e8\u524d\u7684\u7537\u5b69\u3002"} +{"id": "4000571", "video_name": "00951ad4-be40-5437-8675-d44788c4dec2", "text": "\u751f\u547d\u4e4b\u4e66\u5728\u795e\u79d8\u7684\u6c1b\u56f4\u4e2d\u3002"} +{"id": "4000572", "video_name": "553881da-791d-5ca6-9815-5636b934d15d", "text": "\u4f60\u597d\u3002\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u4e2aInstagram\u5934\u50cf\uff0c\u6709\u4e00\u4e2a\u6b63\u5728\u5f00\u53d1\u7a0b\u5e8f\u7684\u7537\u5b50\u3002"} +{"id": "4000573", "video_name": "5ad3deb4-b3e2-5518-96fd-731f591e251d", "text": "\u96ea\u9047\u5230\u4e86\u4e00\u4f4d\u5f3a\u5927\u7684\u5deb\u5e08\u6765\u8003\u9a8c\u4ed6\u7684\u6280\u80fd\u3002\u96ea\u4ee5\u51fa\u8272\u7684\u9b54\u6cd5\u6280\u5de7\u8ba9\u6bcf\u4e2a\u4eba\u90fd\u773c\u524d\u4e00\u4eae\uff0c"} +{"id": "4000574", "video_name": "12ac3e7f-de33-53a1-9e97-541a0bfa1572", "text": "\u4e00\u500b\u50cf\u5e2d\u52d2\u98a8\u683c\u7684\u7537\u4eba\u548c\u4e00\u500b\u50cf\u83ab\u5167\u98a8\u683c\u7684\u7537\u4eba\u5728\u6253\u9b25\u3002"} +{"id": "4000575", "video_name": "64e0efc9-7fdc-51c2-9351-e04eb870a4a7", "text": "\u79fb\u52a8\u7ae0\u9c7c\u7684\u89e6\u624b\u3002"} +{"id": "4000576", "video_name": "54f4fc73-c654-58bf-b229-da2857c1a3c6", "text": "\u5e74\u8f7b\u4eba\u5728\u529e\u516c\u5ba4\u5e86\u795d\u65b0\u5e74\u3002"} +{"id": "4000577", "video_name": "bb254ebd-e1fe-5a2b-9cf9-585d2c666502", "text": "\u6e90\u53e5\u5b50\uff1a0\u30011\u30011\u30012\u30013\u30015\u30018 \u6570\u5b57\u3002"} +{"id": "4000578", "video_name": "ac7678fd-52f6-57a7-87be-c8db40f952a8", "text": "\u4ece\u524d\uff0c\u6ce2\u65af\u6709\u4e24\u4e2a\u5144\u5f1f\u4f4f\u5728\u90a3\u91cc\uff0c\u4ed6\u4eec\u7684\u540d\u5b57\u662f\u963f\u91cc\u5df4\u5df4\u548c\u5361\u897f\u59c6\u3002\u5361\u897f\u59c6\u662f\u54e5"} +{"id": "4000579", "video_name": "17e247ca-9be0-51ae-9a07-48fd9d9a49f7", "text": "\u56fd\u738b\u4e0b\u4ee4\u902e\u6355\u4ed6\u7684\u4ec6\u4eba\u3002\u5f53\u4ed6\u88ab\u5e26\u53bb\u76d1\u72f1\u65f6\uff0c"} +{"id": "4000580", "video_name": "aff06e38-02dd-50d8-ab6e-0a22f881d675", "text": "\u76ae\u514b\u65af\uff0c\u52a8\u753b\uff0c\u5361\u901a\uff0c3D\uff0c\u975e\u6d32\u513f\u7ae5\uff0c\u5145\u6ee1\u60ca\u5947\u548c\u60ca\u559c\uff0c\u7ad9\u5728\u8239\u5934\uff0c\u98ce\u5439"} +{"id": "4000581", "video_name": "9b742b49-676b-5055-b8c8-b89457f5e603", "text": "\u751f\u9508\u7684\u52fa\u5b50\u7cfb\u7740\u7834\u65e7\u7684\u56f4\u5dfe\u5b66\u4e60\u5fae\u79ef\u5206\u65b9\u7a0b\uff0c\u6c57\u6c34\u6dcb\u6f13\u7684\u5de5\u5382\uff0c\u9634\u6697\u7684\u8001\u6696"} +{"id": "4000582", "video_name": "042689cb-d439-556f-9876-bfe6a348c37d", "text": "\u4e00\u5ea7\u6709\u79fb\u52a8\u6811\u6728\u7684\u57ce\u5821\u5361\u901a\u56fe\u3002"} +{"id": "4000583", "video_name": "44088a1f-4513-5f4a-a992-bb06c6083214", "text": "\u4e00\u4ef6\u7740\u706b\u7684T\u6064\u5728\u5b8c\u5168\u9ed1\u6697\u4e2d\u884c\u8d70\u3002"} +{"id": "4000584", "video_name": "d8922aac-04e1-5b0d-b60f-958e5f3b49cc", "text": "\u63cf\u7ed8\u5c0f\u9e2dDizzy\u8df3\u8dc3\u7740\u4ece\u4e00\u4e2a\u7761\u83b2\u53f6\u5b50\u4e0a\u5230\u53e6\u4e00\u4e2a\uff0c\u5076\u5c14\u4f1a\u6e85\u8d77\u6c34\u82b1\u56e0\u4e3a\u5b83\u6389\u8fdb\u4e86"} +{"id": "4000585", "video_name": "a4103603-f42e-539e-a286-bbfb6dfb6842", "text": "\u4e00\u4f4d\u5361\u901a\u7f8e\u4e3d\u7684\u9ad8\u4e2d\u5973\u5b69\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "4000586", "video_name": "fb394125-4373-55aa-8705-3fafda0fd3f8", "text": "\u6e05\u6668\u5728\u963f\u62c9\u4f2f\u6751\u5e84\u5347\u8d77\u3002\n\nSource sentence: My favorite color is blue. \n\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "4000587", "video_name": "7f50c23f-8a87-5726-8519-9d45a42d1e06", "text": "\u8fbe\u7ef4\u5fb7\u8d70\u8fc7\u6751\u5e84\u5e7f\u573a\u65f6\uff0c\u4ed6\u770b\u5230\u4e00\u7fa4\u6751\u6c11\u805a\u96c6\u5728\u8001\u6a61\u6811\u9644\u8fd1\uff0c\u4ed6\u4eec\u770b\u8d77\u6765\u5f88\u70e6"} +{"id": "4000588", "video_name": "b1bacf2d-f526-5df3-8fc3-3dced1344317", "text": "\u5404\u79cd\u7535\u5b50\u5c0f\u73a9\u610f\u4ece\u5929\u7a7a\u4e2d\u6389\u843d\u7684\u7167\u7247\u3002"} +{"id": "4000589", "video_name": "70054047-0cb3-5280-895c-d62981cfe94a", "text": "\u96c5\u5404\u662f\u7ea6\u745f\u7684\u7236\u4eb2\uff0c\u7ea6\u745f\u662f\u739b\u4e3d\u7684\u4e08\u592b\u3002"} +{"id": "4000590", "video_name": "8bc281ab-fc5d-58ab-b2eb-19e9df2d584f", "text": "\u5728\u4e00\u4e2a\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u8471\u90c1\u7684\u68ee\u6797\u4e4b\u95f4\u7684\u5c0f\u800c\u7f8e\u4e3d\u7684\u57ce\u9547\u91cc\uff0c\u5728\u5348\u591c\u6572\u54cd\u949f\u58f0\u7684\u65f6"} +{"id": "4000591", "video_name": "ac8322b2-3e82-53f6-91fa-4d71e923456d", "text": "\u7b2c\u4e00\u5c4a\u5965\u6797\u5339\u514b\u4f53\u80b2\u573a\u7684\u52a8\u6001\u5f71\u50cf"} +{"id": "4000592", "video_name": "36a8d06a-7b2f-5b6b-bbf2-ba6867c98a0b", "text": "\u8d85\u5973\u5728\u8857\u4e0a\u8dd1\u8fc7\u53bb\u3002\u9ad8\u8d28\u91cf\u3002\u4ece\u540e\u9762\u770b\u3002\u6ca1\u6709\u4efb\u4f55\u9519\u8bef\u3002"} +{"id": "4000593", "video_name": "7f8ee931-2da5-5966-99ac-26fb84449108", "text": "\u7535\u5f71\u5267\u7167\uff0c\u5bb6\u5ead\u573a\u666f\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e2020\u5e74\u4ee3\u7684\u60ca\u609a\u7247\uff0c\u67ef\u8fbe\u514b\u7f57\u59c6\u3002"} +{"id": "4000594", "video_name": "67b8a860-61c5-5513-afb0-8551913f7803", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u5e05\u6c14\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u7a7f\u7740\u5929\u4e3b\u6559\u4fee\u9053\u58eb\u7684\u888d\u5b50\u7684\u65b0\u624b\n\n\u7ffb\u8bd1\uff1a\u82f1\u4fca\u7684\u5e74\u8f7b"} +{"id": "4000595", "video_name": "26ef004e-369d-5c58-8233-447724ef465d", "text": "\u4e2d\u5fc3\u7684\u5206\u5f62\uff0c\u5e73\u6ed1\u5730\u6539\u53d8\u56fe\u6848\u3002"} +{"id": "4000596", "video_name": "1c17481c-f6cd-554c-88d8-e239b721f25e", "text": "\u5b89\u5fb7\u70c8\u4e9a\u00b7\u83b1\u65af\u4f2f\u52d2\u5728\u4f26\u6566\u8857\u5934\u8d70\u8def\u3002"} +{"id": "4000597", "video_name": "1e6f88d0-391b-5a57-a02f-205ff3729ba2", "text": "\u5c0f\u7537\u5b69\u548c\u5c0f\u5973\u5b69\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\u6210\u957f\u5e76\u8d70\u8fc7\u53bb\u3002"} +{"id": "4000598", "video_name": "4fcc7e98-a5b7-5f6b-8650-34b3b3c0b43f", "text": "\u957f\u9888\u9e7f\u7279\u5199 NVV\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09"} +{"id": "4000599", "video_name": "4448c87f-d4e1-58c3-9bb0-90117e85c92b", "text": "\u8f66\u91cc\u7684\u7537\u4eba\u6ca1\u6709\u8138\uff0c\u770b\u7740\u5929\u7a7a\u4e2d\u7684\u5929\u4f7f\uff0c\u9053\u8def\u4e0a\u7ed3\u51b0\uff0c\u5929\u7a7a\u662f\u7d2b\u8272\u7684\uff0c3D\u3002"} +{"id": "4000600", "video_name": "c74a1383-846e-5596-a6c9-26f3b9f3ae54", "text": "\u4e00\u4f4d\u65f6\u88c5\u6a21\u7279\uff0c\u5fae\u98ce\u8f7b\u62c2\uff0c\u7f13\u6162\u79fb\u52a8\uff0c\u56db\u5468\u73af\u987e\u3002"} +{"id": "4000601", "video_name": "320887ac-4ec3-55e6-a852-82929b2771c0", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u672a\u6765\u7684\u573a\u666f\u4e2d\u8df3\u821e\uff1b\u6444\u50cf\u673a\u6548\u679c\uff1a\u653e\u5927\u548c\u7f29\u5c0f\uff0c\u753b\u8d28\uff1a4K"} +{"id": "4000602", "video_name": "df19f41d-b2cd-5116-8a03-f44a4838a549", "text": "\u6bd4\u7279\u5e01\u8dea\u5728\u4ed6\u65c1\u8fb9\u8df3\u7740\u9b3c\u8138\u5e01\u821e\u3002"} +{"id": "4000603", "video_name": "d4cd791b-5882-5c43-9e94-b32d65225eda", "text": "\u692d\u5706\u66f2\u7ebf\u3002\u5899\u662f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000604", "video_name": "85e2a848-8eff-512d-83f8-fb6ace7c7f58", "text": "Source sentence: \u5f69\u8272\u548c\u7eda\u4e3d\u7684432\u8d6b\u5179\u97f3\u4e50"} +{"id": "4000605", "video_name": "20d69f1f-e476-58db-aba8-66411c5e254f", "text": "\u4e00\u4e2a\u5065\u7f8e\u7684\u7537\u4eba\u5728\u5065\u8eab\u4e2d\u5fc3\u7528\u6760\u94c3\u4e0a\u4e0b\u953b\u70bc\u4ed6\u7684\u4e09\u5934\u808c\uff0c\u6301\u7eed\u5341\u79d2\u949f\u3002"} +{"id": "4000606", "video_name": "deeda28b-3949-54d3-a7f0-af84b78014c9", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u88ab\u6467\u6bc1\u7684\u57ce\u5e02\u4e0a\u8df3\u821e\u3002"} +{"id": "4000607", "video_name": "4c75cad7-2e9a-50e2-93aa-25611882c5bb", "text": "\u60f3\u8c61\u5b69\u5b50\u4eec\u805a\u96c6\u5728\u53e4\u8001\u7684\u6a61\u6811\u4e0b\uff0c\u8d85\u81ea\u7136\u7684\u6545\u4e8b\u73b0\u5728\u6210\u4e3a\u4e86\u6d3b\u751f\u751f\u7684\u89c1\u8bc1\uff0c\u8bc1\u660e\u4e86\u751f\u7269\u548c\u5e7d"} +{"id": "4000608", "video_name": "20806206-3758-50b7-80c5-d1d392fac9a1", "text": "\u8001\u9f20\u5728\u6b22\u5feb\u5730\u8df3\u8dc3\u65f6\u8ff7\u5931\u4e86\u81ea\u5df1\u7684\u5feb\u4e50\u3002"} +{"id": "4000609", "video_name": "4e12d2e5-00df-5d1a-ab23-357f2ad56e77", "text": "\u672a\u6765\u4f20\u5947\u7535\u89c6\u5267\u4e2d\u7684\u573a\u666f\uff0c\u5c3c\u5e03\u52d2\u3002"} +{"id": "4000610", "video_name": "021450f8-9639-5411-802c-c9d880bfe078", "text": "\u5c55\u793a\u52a8\u6f2b\u89d2\u8272\u62ff\u7740\u4e00\u679a\u786c\u5e01\uff0c\u9762\u5e26\u6c89\u601d\u8868\u60c5\uff0c\u4ee3\u8868\u7740\u9762\u5bf9\u4e24\u4e2a\u9009\u62e9\u7684\u56f0\u5883\u3002"} +{"id": "4000611", "video_name": "a06b13ad-40f4-57de-8c50-10a885cfeb40", "text": "\u8001\u56ed\u4e01\u5728\u4e00\u4e2a\u9ad8\u5e8a\u4e0a\u79cd\u690d\u79cd\u5b50\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u5f6d\u5e03\u7f57\u514b\u5a01\u5c14\u58eb\u67ef\u57fa\u3002"} +{"id": "4000612", "video_name": "cb91e3cf-9387-58d7-8a9b-d1cfde4029eb", "text": "\u4e00\u4e2a\u72ee\u5b50DJ\u5728\u6237\u5916\u73b0\u573a\u6f14\u51fa\u4e2d\uff0c\u88ab\u4f01\u9e45\u73af\u7ed5\u7740\u3002 \n\nSource sentence: The sunset over the ocean was breathtakingly beautiful. \n\n\u6d77\u6d0b\u4e0a\u7684\u65e5"} +{"id": "4000613", "video_name": "7d83290f-6ed6-5047-b09f-67858dc4b036", "text": "\u7f8e\u6d32\u5370\u7b2c\u5b89\u90e8\u843d\u8ffd\u6355\u725b\u4ed4\u3002"} +{"id": "4000614", "video_name": "1965fde2-9783-56b7-88b5-189dd10efe36", "text": "shows.\n\nTranslation: \u300a\u63a2\u9669\u6d3b\u5b9d\u300b\u4e3b\u89d2\u6301\u67aa\u62a2\u52ab\u4fbf\u5229\u5e97\uff0c\u76d1\u63a7\u5f55\u50cf\u663e\u793a\u3002"} +{"id": "4000615", "video_name": "dd5530dd-d3aa-5bdc-b9af-9f18cf1f022e", "text": "\u5728\u4e2d\u56fd\u8336\u5ba4\u91cc\u70b9\u71c3\u9999\u70df\u548c\u54c1\u8336\u7684\u573a\u666f\u3002"} +{"id": "4000616", "video_name": "07420d97-cd8b-5ab2-a8ba-a80a1ef4645d", "text": "\u5723\u6258\u91cc\u5c3c\u65e5\u843d\u65f6\u7684\u5c4b\u9876\u666f\u89c2\u3002"} +{"id": "4000617", "video_name": "ede6c8ae-80d2-59d5-ae74-eeec08b5ee94", "text": "\u5b66\u4e60\u5b57\u6bcd\u65f6\uff0cA\u662f\u82f9\u679c\u3002 \n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u6b63\u5728\u57ab\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "4000618", "video_name": "60afc6a8-5d1d-5f17-97e2-1de7b5e7ae3e", "text": "\u7528\u6bcf\u53ea\u624b\u53ea\u6709\u4e94\u4e2a\u624b\u6307\u63e1\u4f4f\u4e00\u9897\u5fc3\u3002"} +{"id": "4000619", "video_name": "62fc8fbe-6de9-521b-90d6-df701984316f", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u4e00\u4e2a\u6728\u5c4b\u5916\u9762\u6210\u957f\uff0c\u771f\u5b9e\u5730\u7535\u5f71\u5316\u3002"} +{"id": "4000620", "video_name": "423407b3-bd2d-5ad8-ab40-8931a6a1fb83", "text": "\u8759\u8760\u3001\u7fc5\u8180\u8fd0\u52a8\u3001\u50cf\u7d20\u300164\u4f4d\u3002"} +{"id": "4000621", "video_name": "1e30cab2-7907-5d04-b4c8-2965e7282beb", "text": "\u4e00\u5bb6SEO\u4ee3\u7406\u7f51\u7ad9\u7684\u63d2\u56fe\uff0c\u7eff\u8272\u8c03\u8272\u677f\u3002"} +{"id": "4000622", "video_name": "eaeb254c-cca0-59ce-b643-60881e59c723", "text": "\u70ed\u6c14\u7403\u4ece\u80af\u5c3c\u4e9a\u6851\u5e03\u9c81\u56fd\u5bb6\u516c\u56ed\u8d77\u98de\u3002"} +{"id": "4000623", "video_name": "44adace9-0f14-5734-bff5-1ce2c455f3f8", "text": "\u6492\u5207\u5c14\u592b\u4eba\u5728\u4e00\u573a\u72c2\u6b22\u6d3e\u5bf9\u4e0a\u5f53DJ\u3002"} +{"id": "4000624", "video_name": "e6b2acf5-3b15-5d90-8e79-f7b0b44488a6", "text": "\u7537\u5973\u5728\u623f\u95f4\u91cc\u5435\u67b6\u3002"} +{"id": "4000625", "video_name": "a4676364-a8c9-56c3-8292-e8745622c3da", "text": "\u7ef4\u5409\u5854\u548c\u9a6c\u91cc\u5965\u5728\u9a6c\u91cc\u5965\u5927\u9646\u4e0a\u5c55\u5f00\u4e86\u53f2\u8bd7\u822c\u7684\u6218\u6597\u3002"} +{"id": "4000626", "video_name": "6a7e3e99-86d5-545d-9e1d-d06b08bad3d4", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u4e0e\u4e00\u53ea\u72ee\u5b50\u640f\u6597\u3002"} +{"id": "4000627", "video_name": "80027889-6461-50a2-852e-56103c652fea", "text": "\u661f\u7403\u5927\u6218\u7684\u98de\u8239\u3002\u4fe1\u606f\uff1aWeeboks\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000628", "video_name": "df2bc6fb-a687-5a94-ad7c-ca32365c056d", "text": "\u4e00\u4e2a\u707f\u70c2\u7b11\u5bb9\u7684\u5b69\u5b50\uff0c\u5728\u9633\u5149\u666e\u7167\u7684\u7530\u91ce\u4e0a\u81ea\u7531\u5954\u8dd1\uff0c\u4ed6\u7684\u7b11\u58f0\u5728\u98ce\u4e2d\u56de\u8361\uff0c\u5c55\u73b0\u51fa\u65b0"} +{"id": "4000629", "video_name": "a933859c-bd4d-5231-815f-53753c66d248", "text": "\u821e\u53f0\u4e3b\u6301\u4eba\u8bf7\u6765\u4e86\u5c0f\u9009\u624bSam\u4e0a\u53f0\u3002"} +{"id": "4000630", "video_name": "311b9988-ca38-5922-aa2b-e92ab71014c2", "text": "\u739b\u683c\u4e3d\u7279\u00b7\u6492\u5207\u5c14\u5728\u5de8\u578b\u6ed1\u677f\u573a\u4e0a\u6ed1\u677f\u3002"} +{"id": "4000631", "video_name": "8e280824-65c0-5a11-8fab-e71234866a07", "text": "\u53ef\u7231\u7684\u5154\u5b50\u5f39\u7740\u5409\u4ed6\u8df3\u821e\u3002"} +{"id": "4000632", "video_name": "afbe0948-1100-5c07-9903-e3c81ba25e71", "text": "\u4e00\u500b\u52d5\u756b\u5973\u5b69\u7368\u81ea\u8df3\u821e\uff0c\u807d\u8457\u97f3\u6a02\u4f4e\u4fdd\u771f\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "4000633", "video_name": "1c11134f-e493-56d0-a7ad-921ed7e095f3", "text": "\u4e00\u53ea\u7531\u8702\u871c\u5236\u6210\u7684\u978b\u5b50\u6b63\u5728\u7194\u5316\uff0c\u98ce\u683c\u7c7b\u4f3c\u5f7c\u5f97\u00b7\u7ef4\u7279\u91d1\uff0c\u53f3\u4fa7\u53d1\u51fa\u6a59\u8272\u5149\uff0c\u91c7"} +{"id": "4000634", "video_name": "e4bd47da-773d-5454-9781-43f952b851b6", "text": "\u521b\u9020\u4e00\u4e2a\u8759\u8760\u6807\u5fd7\u5e76\u5728\u6807\u5fd7\u4e0a\u71c3\u70e7\u7684\u5f62\u8c61\u3002"} +{"id": "4000635", "video_name": "7a303025-a828-5ff9-8506-2435ce430486", "text": "Source sentence: \u72c2\u559c\u7684\u5e78\u798f\u611f\uff0c\u7535\u5f71\u7f8e\u611f\uff0c\u5feb\u901f\u653e\u5927\u5230\u4e2d\u5fc3\u3002\n\nSource sentence: I am excited to explore this new city and all it has to offer.\nTranslation:"} +{"id": "4000636", "video_name": "87eb5244-c5b8-57f0-8f4f-8f3d4c4d5b85", "text": "\u7537\u5b69\u6709\u77ed\u53d1\u7684\u91d1\u8272\u548c\u84dd\u8272\u773c\u775b\uff0c\u4ed6\u6b63\u5728\u79bb\u5f00\u5b66\u6821\uff0c\u4ed6\u8d70\u5411\u4e00\u4f4d\u6709\u7740\u975e\u5e38\u957f\u7684\u91d1\u8272\u5934\u53d1\u7684\u5973\u4eba"} +{"id": "4000637", "video_name": "f5ca63c8-b6be-5a61-8385-7a57001e9a35", "text": "\u4e00\u53ea\u730e\u9e70\u843d\u5165\u57ce\u5e02\u5a5a\u793c\u7684\u6b8b\u9ab8\u4e2d\u3002"} +{"id": "4000638", "video_name": "a815ae0b-aed6-5461-a9e4-2cf70222146e", "text": "\u4e09\u7ef4\u52a8\u753b\u79fb\u52a8\uff0c\u6d1b\u5947\u5c3c\u65af\u6c34\u602a\u903c\u771f\u3002"} +{"id": "4000639", "video_name": "ee7b4923-ff47-515c-a368-fec9e438351a", "text": "\u4e00\u4f4d\u8001\u5987\u4eba\u6b65\u4f10\u6c89\u91cd\u5730\u8d70\u7740\u3002"} +{"id": "4000640", "video_name": "dd4a28e0-15f8-560a-84d2-2f027412c7c4", "text": "\u623f\u95f4\u91cc\u6709\u4e2a\u5e74\u8f7b\u5973\u5b69\uff0c\u9760\u8fd1\u58c1\u7089\uff0c\u5927\u7a97\u6237\uff0c\u7a97\u5916\u662f\u96ea\u6797\uff0c\u591c\u665a\uff0c\u5929\u7a7a\u4e2d\u6709\u661f\u661f\u3002\n\nSource sentence"} +{"id": "4000641", "video_name": "d0995bee-c6ef-5abd-8ee8-562bf5a008a1", "text": "1940\u5e74\u4ee3\u7684\u65b0\u95fb\u7247\u9ed1\u767d\u80f6\u7247\uff0c\u5916\u661f\u8230\u961f\u5a01\u80c1\u7740\u4e00\u9897\u548c\u5e73\u7684\u5916\u661f\u884c\u661f\u3002"} +{"id": "4000642", "video_name": "eb9d83a0-1dae-588f-b362-2fb53034bc03", "text": "\u76d1\u72f1\u88ab\u624b\u94d0\u3001\u67e0\u6aac\u6c41\u548c\u67e0\u6aac\u6df9\u6ca1\u3002"} +{"id": "4000643", "video_name": "593d480a-0239-5da7-bdec-96072bde5f9e", "text": "\u8fd9\u6bb5\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4e2a\u7ad9\u5728\u5c71\u9876\u4e0a\u4fef\u77b0\u7f8e\u4e3d\u98ce\u666f\u7684\u7537\u4eba\u3002\u4ed6\u624b\u4e2d\u62ff\u7740\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "4000644", "video_name": "d3701dee-96c6-5726-99cc-5cefecc32881", "text": "\u8718\u86db\u4eba\u4ece\u8f66\u91cc\u51fa\u6765\u7684\u8d85\u9ad8\u6e054K\u89c6\u9891\u3002"} +{"id": "4000645", "video_name": "a13a9d09-c327-5f32-8667-fe9d02e5894f", "text": "\u9ed1\u888d\u897f\u65af\u9886\u4e3b\u624b\u6301\u4e24\u628a\u7ea2\u8272\u5149\u5251\uff0c\u9762\u5bb9\u88ab\u906e\u76d6\uff0c\u4e0e\u4e00\u4f4d\u5149\u5934\u5e1d\u56fd\u5ba1\u5224\u5b98\u6301\u9ed1\u8272\u7ec6"} +{"id": "4000646", "video_name": "b392cf47-0f11-534c-8a0e-23fc60df145b", "text": "\u6c14\u6ce1\u5728\u7a7a\u6c14\u4e2d\u6f02\u6d6e\uff0c\u98d8\u9038\uff0c\u5982\u7535\u5f71\u753b\u9762\u3002"} +{"id": "4000647", "video_name": "ccc2511a-0630-5b11-8624-f45a9f8cf4fd", "text": "\u725b\u4e00\u76f4\u5728\u8349\u5730\u4e0a\u5403\u8349\uff0c\u73b0\u5728\u7ec8\u4e8e\u51c6\u5907\u4f11\u606f\u4e86\u3002"} +{"id": "4000648", "video_name": "9d133538-3779-585e-a595-423ec197166b", "text": "\u96e8\u6253\u7ea2\u82b1\uff0c\u4e00\u591c\u4f59\u9999\u3002"} +{"id": "4000649", "video_name": "749826d6-1647-5062-a811-30575417b0c9", "text": "\"\u5728\u5979\u79bb\u5f00\u4e4b\u524d\uff0c\u4ed9\u5973\u6559\u6bcd\u7ed9\u4e86\u5979\u4e00\u4e2a\u8b66\u544a\uff1a\u201c\u4eb2\u7231\u7684\uff0c\u4f60\u5fc5\u987b\u5728\u5348\u591c\u4e4b\u524d\u56de\u6765\uff0c\u56e0\u4e3a\u6211\u7684"} +{"id": "4000650", "video_name": "1e71443c-7979-51ca-9b24-0da947051db9", "text": "\u4e00\u8f86\u6f06\u9762\u78e8\u635f\u7684\u6469\u6258\u8f66\uff0c\u901a\u8fc7\u8d34\u7eb8\u548c\u65b0\u6cb9\u6f06\u6539\u5934\u6362\u9762\u6210\u4e3a\u4e00\u8f86\u65b0\u7684\u6469\u6258\u8f66\u3002"} +{"id": "4000651", "video_name": "d5c5a52a-6e6e-5bfb-9c42-6463713a1aa0", "text": "\u5728\u4e00\u4e2a\u53e4\u6734\u7684\u6751\u5e84\u91cc\uff0c\u6709\u4e00\u4e2a\u540d\u53eb\u739b\u96c5\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\uff0c\u5979\u521b\u4f5c\u4e86\u5145\u6ee1\u751f\u673a\u7684\u6770\u4f5c\uff0c\u53d7"} +{"id": "4000652", "video_name": "4abe7f49-5b32-5940-893a-f58711484d4d", "text": "\u4e00\u4e2a\u524d\u9014\u5149\u660e\u7684\u4ecb\u7ecd\u89c6\u9891\u5f62\u8c61\n\nSource sentence: The company's revenue has increased significantly over the past year.\n\u516c\u53f8\u7684\u6536\u5165\u5728\u8fc7\u53bb\u4e00\u5e74\u91cc\u663e\u8457\u589e\u52a0\u3002"} +{"id": "4000653", "video_name": "6d595a20-a692-5b58-ad23-e0497dbc7021", "text": "\u521b\u9020\u51fa\u795e\u5947\u7684\u4e8b\u7269\uff0c\u95ea\u4eae\u7684\u9b54\u6cd5\u4ece\u4e66\u4e2d\u663e\u73b0\u3002"} +{"id": "4000654", "video_name": "9fb6d197-a3b7-5685-a90b-a988ea3cf0da", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6559\u5b69\u5b50\u5982\u4f55\u4fee\u7406\u4e1c\u897f\u3002"} +{"id": "4000655", "video_name": "ac9327f2-97c3-5332-a537-dfe5f92429d8", "text": "\u4e24\u53ea\u732b\u5728\u51ac\u5929\u8df3\u821e\u3002"} +{"id": "4000656", "video_name": "5946ead8-e675-5c2d-b8c4-5e91bb8155b7", "text": "\u7279\u5199\u3001\u6b63\u9762\u3001\u5934\u80a9\u3001\u5168\u8eab\u3001\u8096\u50cf\u89c6\u89d2\u3001\u673a\u68b0\u68ee\u6797\u3001\u673a\u68b0\u72d0\u5973\u795e\u3001\u4e00\u4e2a\u56e0\u5176\u7f8e\u8c8c\u800c\u5907\u53d7"} +{"id": "4000657", "video_name": "b8c91581-2d95-56fe-accb-45e693ccc6c9", "text": "\u72ee\u5b50Leo\u548c\u5c0f\u8001\u9f20Mia\u901a\u8fc7\u6559\u6388\u4ec1\u6148\u548c\u540c\u60c5\u5fc3\u4f20\u6388\u4e86\u4e00\u5802\u5b9d\u8d35\u7684\u8bfe\u7a0b\u3002"} +{"id": "4000658", "video_name": "ab9b88d6-9a97-51b7-a987-a6c2589823f7", "text": "\u5728\u6bc1\u706d\u7684\u4f59\u6ce2\u4e2d\uff0c\u7535\u5f71\u5e7b\u60f3\u4e4b\u5730\u7684\u97e7\u6027\u901a\u8fc7\u4e00\u4f4d\u5973\u9886\u8896\u5f97\u4ee5\u4f53\u73b0\u3002\u5728\u71c3\u70e7\u7684\u5e9f\u589f\u4e2d"} +{"id": "4000659", "video_name": "c1844ff0-5e14-59dd-98f0-d89ce0b374e1", "text": "\u53d7\u4f24\u7684\u72fc\u548c\u4e00\u4e2a\u5e74\u8f7b\u7684\u7535\u5f71\u573a\u666f\u3002"} +{"id": "4000660", "video_name": "9c96ef41-bd57-50d1-84a8-97f73a7f0dbf", "text": "\u4e00\u4e2a\u9876\u7ea7\u6a21\u7279\u5728\u97f3\u54cd\u4e0a\u8df3\u821e\u3002"} +{"id": "4000661", "video_name": "3a34ae51-c7cc-5c83-b573-7d6eed717d29", "text": "\u4e94\u4e2a\u5b69\u5b50\u7528\u624b\u6307\u671d\u524d\u6307\u793a\u3002"} +{"id": "4000662", "video_name": "6e7b585a-479f-5efd-9950-52c47555d21d", "text": "\u609f\u7a7a\u5728\u6cf0\u59ec\u9675\u524d\u4e0e\u4ed6\u7684\u7236\u4eb2\u5df4\u8fbe\u514b\u5728\u5730\u7403\u4e0a\u4ea4\u8c08\u3002"} +{"id": "4000663", "video_name": "0687c268-97c4-5166-8071-5dfe24af72fa", "text": "\u521b\u4f5c\u4e00\u4e2a\u65e5\u672c\u5b98\u65b9\u56fd\u65d7\u3002"} +{"id": "4000664", "video_name": "fbc292ca-4bfc-575d-b718-a1adc41b3002", "text": "\u6fc0\u52b1\u4eba\u5fc3\u7684\u7535\u5f71\u89c6\u9891\uff0c\u7537\u5b50\u57284k UHD\u753b\u8d28\u4e0b\u5954\u8dd1\u8fdc\u79bb\u5de8\u4eba\uff0cAR 9\uff1a16\u3002"} +{"id": "4000665", "video_name": "c3fa8db1-43a5-588b-909d-aba139521c38", "text": "\u7f8e\u4e3d\u7684\u54c8\u96f7\u6469\u6258\u8f66\u6cbf\u7740\u9053\u8def\u884c\u9a76\uff0c\u7a7f\u8fc7\u5927\u6d77\u3002"} +{"id": "4000666", "video_name": "e61232b6-73ef-5b82-ba16-62ec087954ff", "text": "\u6d77\u8c5a\u6b63\u5728\u91d1\u9a6c\u6876\u91cc\u6e38\u6cf3\uff0c\u914d\u7740\u7fe1\u7fe0\u73e0\u5b50\u3002"} +{"id": "4000667", "video_name": "8cf26fba-9ab0-5a8e-a6ff-8db0a02e882a", "text": "\u4e00\u5ea7\u8272\u5f69\u9c9c\u8273\u7684\u57ce\u5e02\u751f\u6d3b\uff0c\u4fef\u77b0\u666f\u8c61\u3002\u4fe1\u606f\uff1aFIRAT\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000668", "video_name": "eda3491f-aa05-5389-a29c-4e3d84663104", "text": "Ling\u5728\u793e\u4ea4\u5a92\u4f53\u4e0a\u770b\u5230\u4e86\u4e00\u6761\u65b0\u95fb\uff0c\u8be5\u65b0\u95fb\u79f0\uff0c\u5982\u679c\u9a6c\u6765\u897f\u4e9a\u4f0a\u65af\u5170\u515a\u8d62\u5f97\u9009\u4e3e\uff0c\u65e0\u8bba"} +{"id": "4000669", "video_name": "77fca5bb-af7f-5826-8a3a-e0783fc15634", "text": "\u5929\u7a7a\uff0c\u4e00\u4e2a\u6389\u843d\u7684\u5b69\u5b50\u3002\u5f69\u8679\uff0c\u5feb\u4e50\u3002"} +{"id": "4000670", "video_name": "9a301f22-21cb-57f4-830a-d12d031454ab", "text": "\u8fea\u5c14\u5df4\u54c8\u675c\u5c14\u5728\u6b22\u4e50\u5730\u79cd\u7389\u7c73\u548c\u8c37\u7269\uff0c\u5728\u660e\u4eae\u7684\u9633\u5149\u4e0b\u5e26\u7740\u6109\u60a6\u7684\u8868\u60c5\u3002\u80cc\u666f\u4e2d"} +{"id": "4000671", "video_name": "c501591f-f753-544e-8dea-b444fea386b9", "text": "\u4e00\u7fa4\u5370\u5ea6\u7684\u4fe1\u5f92"} +{"id": "4000672", "video_name": "105c77ac-0627-5e0e-ad36-8f54b0116da6", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u793c\u670d\u7684\u5c11\u5973\u8eba\u5728\u82b1\u6d77\u4e2d\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u9ad8\u54c1\u8d28\uff0c\u7f8e\u5b66\u98ce\u683c\u3002\u4fe1\u606f\uff1aSULLI\uff08\u5b57\u4f53"} +{"id": "4000673", "video_name": "0db0634d-ed78-5666-8b9c-c2ed25aff610", "text": "\u8bf7\u5c06\u4ee5\u4e0b\u82f1\u6587\u53e5\u5b50\u7ffb\u8bd1\u6210\u5c3d\u53ef\u80fd\u6e05\u6670\u5408\u7406\u7684\u4e2d\u6587\u3002\u8bf7\u4ec5\u8f93\u51fa\u7ffb\u8bd1\uff0c\u4e0d\u5305\u62ec\u539f\u59cb\u53e5\u5b50\u548c\u4efb\u4f55\u524d"} +{"id": "4000674", "video_name": "a663831a-1c46-5c4d-a9e7-3f1d457393ae", "text": "\u4e94\u53ea\u5c0f\u7070\u72fc\u5728\u4e00\u6761\u8352\u51c9\u7684\u788e\u77f3\u8def\u4e0a\u5b09\u620f\u8ffd\u9010\uff0c\u56db\u5468\u662f\u8302\u76db\u7684\u8349\u5730\u3002\u5e7c\u5d3d\u4eec"} +{"id": "4000675", "video_name": "e36afe67-eaa2-5397-84ca-1b64e2966116", "text": "\u4ece\u4e0b\u9762\u770b\u5230\u8fc7\u66dd\u7684\u9a6c\uff0c\u80cc\u666f\u4e3a\u84dd\u5929\u3002"} +{"id": "4000676", "video_name": "632d1f61-2fa1-5dd1-81bd-19aa05983e6a", "text": "\u4e00\u4e2a\u6ed1\u677f\u624b\u5728\u82b1\u5f00\u7684\u6811\u6797\u4e2d\u7684\u534a\u7ba1\u9053\u4e0a\u5b8c\u6210\u4e86\u60ca\u4eba\u7684\u7279\u6280\uff0c\u666f\u8c61\u5341\u5206\u751f\u52a8\u3002\u6625\u8272\u586b\u6ee1\u4e86\u73af\u5883\uff0c\u82b1"} +{"id": "4000677", "video_name": "0dfd03ee-464e-5c4e-8831-99e293b5f01c", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u4e00\u95f4\u8c6a\u534e\u7684\u56fe\u4e66\u9986\u91cc\u3002"} +{"id": "4000678", "video_name": "028209a3-3b39-5e1c-ae45-1ef2cd791d75", "text": "\u4e00\u672c\u65e5\u5386\uff0c\u7ffb\u9605\u56de\u52302003\u5e74\uff0c\u8d85\u903c\u771f\u3001\u7535\u5f71\u7ea7\u753b\u9762\uff0c32K\u3002"} +{"id": "4000679", "video_name": "ed4e4663-160e-5db6-9619-dd9a9c3a7abd", "text": "\u53ef\u7231\u7684\u673a\u5668\u4eba\u5934\u50cf\uff0c\u4e00\u6bd4\u4e00\u7684\u6bd4\u4f8b\u3002"} +{"id": "4000680", "video_name": "06ee461d-0919-5f2f-a108-25d7d62faeb5", "text": "\u8d1d\u5965\u6b66\u592b\u7a7f\u8fc7\u96fe\u6c14\u5230\u8fbe\u6d77\u5cb8\u5f00\u7aef\u3002"} +{"id": "4000681", "video_name": "73b6e49c-b233-5829-bee5-638f6b06160e", "text": "\u963f\u5409\u6069\u548c\u7c73\u62c9\u770b\u8d77\u6765\u5f88\u9065\u8fdc\uff0c\u4ed6\u4eec\u7684\u8868\u60c5\u4e2d\u900f\u9732\u51fa\u4e00\u79cd\u60b2\u4f24\u7684\u611f\u89c9\u3002"} +{"id": "4000682", "video_name": "b48acc0e-8646-5e2c-9e0d-544096f3b781", "text": "\u89c6\u9891\u63cf\u8ff0\u4e86\u4e00\u4e2a\u4eba\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\u3002"} +{"id": "4000683", "video_name": "e19e420e-a47f-5303-8ece-c4e57a1ed4b5", "text": "\u59c6\u5df4\u4f69\u8eab\u7a7f\u7687\u9a6c\u7403\u8863\uff0c\u51fa\u73b0\u5728\u8bfa\u574e\u666e\u7403\u573a\u4e0a\u3002"} +{"id": "4000684", "video_name": "32c70de6-345d-56ba-b473-bdc17f99020e", "text": "\u9ed1\u591c\u4e2d\u4e1b\u6797\u91cc\u4e00\u53ea\u771f\u5b9e\u7684\u718a\u5486\u54ee\u7684\u65e0\u4eba\u673a\u89c6\u89d2\u3002"} +{"id": "4000685", "video_name": "d58b27a1-1a81-590a-8527-bad07522e3d0", "text": "\u4e00\u8f86\u8dd1\u8f66\u6b63\u6cbf\u7740\u6d77\u8fb9\u7684\u8def\u884c\u9a76\u3002"} +{"id": "4000686", "video_name": "91fd9664-d346-5a55-8cd3-324464389f71", "text": "\u65cb\u8f6c\u978b\u3002\u718a\u718a\u71c3\u70e7\u7684\u706b\u7130\u3002\u4e00\u5219\u975e\u5e38\u7f8e\u4e3d\u7684\u8fd0\u52a8\u978b\u5e7f\u544a\u3002\u52a8\u611f\u5341\u8db3\u3002Puma\u3002"} +{"id": "4000687", "video_name": "252b4b65-c74d-523a-8e90-6616bec2189b", "text": "\u732b\u513f\u7684\u6bdb\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u7eff\u8272\u7684\u5149\u8292\u4ece\u773c\u4e2d\u95ea\u8000\u3002"} +{"id": "4000688", "video_name": "ec48bc14-d344-5835-86cb-3b2f0305e420", "text": "\u9ed1\u8272\u7535\u5f71\uff0c\u4e0b\u7740\u5927\u96e8\uff0c\u788e\u73bb\u7483\u95ea\u8000\uff0c\u7ebd\u7ea6\u8857\u5934\u3002"} +{"id": "4000689", "video_name": "dec93250-25c0-5ee6-8922-560bcc0717a4", "text": "\u4e00\u4e2a4K\u753b\u5e03\u7684\u81ea\u6765\u4e5f\u8001\u5e08\u3002"} +{"id": "4000690", "video_name": "6b28e29d-60bb-5158-ade7-75509fc347ff", "text": "\u4e00\u4e2a\u957f\u53d1\u7537\u5b50\u7a7f\u7740\u4e00\u4ef6\u6709\u9a6c\u56fe\u6848\u7684\u5939\u514b\uff0c\u6b63\u5728\u5403\u80e1\u841d\u535c\u3002"} +{"id": "4000691", "video_name": "4d7704a6-daf7-5dda-ba6a-0b1485d0afc5", "text": "\u4e3b\u795e\u6e7f\u5a46\u4ece\u5929\u7a7a\u4e2d\u51fa\u73b0\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u5149\u8292\u3002"} +{"id": "4000692", "video_name": "ecfae865-7670-5c6e-adea-19f97c9b7bee", "text": "\u7537\u6027\u7a7a\u95f4\u7cbe\u7075\uff0c\u5934\u4e0a\u6709\u7c89\u7d2b\u8272\u661f\u4e91\u822c\u7684\u53d1\u4e1d\uff0c\u76ae\u80a4\u5448\u6df1\u7d2b\u8272\uff0c\u95ea\u70c1\u7740\u661f\u661f\u822c\u7684"} +{"id": "4000693", "video_name": "ea790f4e-e041-5e71-bf9f-3c9366c03369", "text": "s crashing at her feet.\n\n\u4e00\u540d\u7a7f\u7740\u957f\u88d9\u7684\u5973\u5b50\u7ad9\u5728\u6d77\u6ee9\u4e0a\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u5979\u7684\u811a\u3002"} +{"id": "4000694", "video_name": "618c23bb-24f2-5611-bf9d-211786750489", "text": "\u62cd\u6444\u5230\u4e00\u4e2a\u7199\u7199\u6518\u6518\u7684\u82f1\u56fd\u5e02\u533a\u8857\u9053\uff0c\u80cc\u666f\u662f\u6807\u5fd7\u6027\u7684\u5730\u6807\u5efa\u7b51\u3002"} +{"id": "4000695", "video_name": "118abdac-130f-5591-8145-7b24bdf7f8db", "text": "\u4e00\u4e2a\u6765\u81ea\u53e6\u4e00\u4e2a\u661f\u7403\u7684\u66f2\u68cd\u7403\u8fd0\u52a8\u5458\u5728\u53e6\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u7684\u660e\u4eae\u661f\u7403\u4e0a\u6253\u66f2\u68cd\u7403\u3002"} +{"id": "4000696", "video_name": "ba6c68c1-17e7-5f5b-ae86-9a1c0e3b7661", "text": "\u4e2d\u5e74\u6234\u773c\u955c\u7537\u5b50\u3002\u5728\u7535\u8111\u524d\u5de5\u4f5c\u3002"} +{"id": "4000697", "video_name": "8d1be702-9769-5963-abec-1f1e00d6da3e", "text": "\u4e00\u4f4d\u6ca1\u6709\u7259\u9f7f\u7684\u8001\u5e74\u4eba\u5728\u5c1d\u8bd5\u5480\u56bc\u4e00\u4e2a\u82f9\u679c\uff0c\u767d\u8272\u80cc\u666f\u3002"} +{"id": "4000698", "video_name": "2e0fb90f-6d8b-5807-ace5-04e9fb561237", "text": "\u5728\u4e1b\u6797\u7684\u5947\u89c2\u4e2d\uff0c\u7a46\u6cd5\u8428\u4ece\u672a\u5fd8\u8bb0\u63d0\u9192\u8f9b\u5df4\u4ed6\u4eec\u7684\u8d23\u4efb\u662f\u4fdd\u62a4\u6574\u4e2a\u8349\u539f\u7684\u72ee\u7fa4"} +{"id": "4000699", "video_name": "ca3dff1e-cf05-58f5-927d-633639ef24c6", "text": "\u68ee\u6797\u7684\u91ce\u751f\u666f\u8272\uff0c\u914d\u4e0a\u76f8\u673a\u52a8\u6001\u3002"} +{"id": "4000700", "video_name": "f48ef01a-e121-5ce1-9c6d-0886eccdca31", "text": "\u67d4\u8f6f\u6ce2\u6d6a\u80cc\u666f\u8d28\u5730\uff0c\u7c89\u5f69\u6e10\u53d8\u8272\u3002"} +{"id": "4000701", "video_name": "ba8ba649-a8f0-5002-92cc-48a72dd69809", "text": "\u5e72\u65e0\u82b1\u679c\u5bf9\u5065\u5eb7\u975e\u5e38\u6709\u76ca\u3002"} +{"id": "4000702", "video_name": "ce128c37-b8af-5d41-882e-c245dd7fa488", "text": "\u5728\u56db\u9762\u516b\u65b9\u5e03\u6ee1\u6de1\u84dd\u8272\u4e91\u6735\u7684\u5929\u7a7a\u4e2d\uff0c\u4e00\u5757\u5c0f\u9ed1\u5e03\u81ea\u7531\u5730\u98d8\u52a8\u7740\u3002"} +{"id": "4000703", "video_name": "1dd6d1e4-eb4e-5b42-b2d8-ab8a0f4b91e8", "text": "\u5b69\u5b50\u4eec\u5b89\u5168\u4ece\u4e1b\u6797\u5f52\u6765\uff0c\u6b63\u671d\u7740\u5bb6\u7684\u65b9\u5411\u8d70\u6765\u3002"} +{"id": "4000704", "video_name": "b6177b58-d450-592e-9d25-288e7fddd0ec", "text": "\u4eba\u4eec\u6392\u961f\u7b49\u5019\u6295\u7968\u3002"} +{"id": "4000705", "video_name": "a8671de5-20bb-5111-82a7-385ab6b05900", "text": "\u7f8e\u4e3d\u8d85\u73b0\u5b9e\u9b54\u5e7b\u82b1\u56ed\uff0c\u8d85\u73b0\u5b9e\u7684\u666f\u8c61\u5145\u6ee1\u4e86\u5c0f\u5de7\u73b2\u73d1\u7684\u82b1\u6735\u548c\u5947\u602a\u7684\u51e0\u4f55\u6811"} +{"id": "4000706", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "\u821e\u53f0\u4e0a\u7684\u8bf4\u5531\u6b4c\u624b\uff0c\u4ee53D\u52a8\u6f2b\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u7231\u60c5\u30018K\u3001\u8096\u50cf\u3001\u6b22\u6b23\u76843D\u5361\u901a"} +{"id": "4000707", "video_name": "2be44c88-b9c9-593b-9b92-1c951f5bbe7a", "text": "\u6709\u4e2a\u51f8\u8d77\u7684\u809a\u5b50\u7684\u94a2\u94c1\u4fa0\uff0c\u6d3b\u529b\u5341\u8db3\u5730\u52a8\u753b\u5316\u4e86\u3002"} +{"id": "4000708", "video_name": "583ab695-da94-52ee-b14f-e91831453a03", "text": "\u7eff\u5c4f\u4e0a\u79fb\u52a8\u7684\u7c92\u5b50\uff0c\u660e\u4eae\u7684\u989c\u8272\u7c92\u5b50\uff0c\u5faa\u73af\u3002"} +{"id": "4000709", "video_name": "64caa93e-62ee-516e-97ba-0246892a52c5", "text": "\u4e00\u5f2020\u5c81\u7684\u5e74\u8f7b\u91d1\u53d1\u5973\u5b50\u5728\u665a\u4e0a\u9633\u5149\u7167\u8000\u7684\u6d77\u6d1e\u6d77\u6ee9\u4e0a\u5fae\u7b11\u7684\u8096\u50cf\u753b\uff0c\u5177\u6709\u6d77\u4e0a\u6d6a\u6f2b\u7684\u98ce"} +{"id": "4000710", "video_name": "bd0b2d7d-bb99-595f-a765-4edec27a13bc", "text": "\u6e38\u620f\u73a9\u6cd510\u79d2\u949f \u4fe1\u606f\uff1aRoblox (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4000711", "video_name": "be3e9cd5-245e-5496-8dfb-cbb346b2bebb", "text": "\u4e00\u53ea\u9a6c\u6797\u72ac\u548c\u4e00\u53ea\u7070\u8272\u6761\u7eb9\u732b\u5728\u7535\u8111\u4e0a\u6253\u5b57\u3002"} +{"id": "4000712", "video_name": "94260c20-b2a8-50ec-9f3e-ac9adaab46d5", "text": "\u5c0f\u732b\u54aa\u5531\u5723\u8bde\u6b4c\u7684\u89c6\u9891\n\nSource sentence: The red car is faster than the blue car.\n\u7ea2\u8272\u7684\u6c7d\u8f66\u6bd4\u84dd\u8272\u7684\u6c7d\u8f66\u5feb\u3002"} +{"id": "4000713", "video_name": "c6e106e0-285b-5a26-9ddb-1a414d67f0ee", "text": "\u7535\u5f71\u822c\u7684\u68c9\u82b1\u7cd6\u672b\u65e5\u88ab\u770b\u4f3c1945\u5e74\u7684\u6027\u611f\u5973\u90ce\uff0c\u4f46\u662f\u662f\u7eff\u8272\u548c\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u5916"} +{"id": "4000714", "video_name": "598befd4-c390-5a9f-a081-c59851a892f9", "text": "\u5728\u6708\u5149\u4e0b\u8df3\u821e\u7684\u5168\u8eab\u9aa8\u9abc\uff0c\u80f8\u524d\u95ea\u4eae\u7684\u5fc3\u810f\uff0c\u8be6\u7ec6\u7684\u53d1\u5149\u7279\u5f81\u3002"} +{"id": "4000715", "video_name": "402015a3-93cd-5682-873d-82ea90624f32", "text": "\u4e00\u4e2a\u51e0\u4e4e\u79c3\u9876\u7684\u4f1a\u8ba1\u5e08\u9a91\u7740\u4ed6\u8d85\u5feb\u7684\u7ea2\u8272\u6469\u6258\u8f66\u5728\u4e94\u8f66\u9053\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u80cc\u666f\u662f\u96ea\u5c71"} +{"id": "4000716", "video_name": "a3fbfb1e-cd9b-5ce3-ab80-928997379db1", "text": "\u521b\u9020\u4e00\u4e2a\u7c7b\u4f3cNFT\u7684\u6de1\u68d5\u8272\u7334\u5b50\u89d2\u8272\uff0c\u907f\u514d\u4efb\u4f55\u4e0e\u5927\u9ebb\u76f8\u5173\u7684\u610f\u8c61\u3002\u8be5\u7334\u5b50\u5e94\u88ab\u63cf\u7ed8"} +{"id": "4000717", "video_name": "dbe02450-334f-5f98-ac5d-29203ac19858", "text": "\u5979\u6709\u624b\u81c2\uff0c\u5728\u5979\u7684\u624b\u81c2\u4e0a\u6709\u4e00\u4e2a\u5c0f\u7eb9\u8eab\uff0c\u7528\u6fc0\u5149\u8bbe\u5907\u64e6\u9664\u4e86\u3002"} +{"id": "4000718", "video_name": "49c0208a-d954-5a21-b234-0e6c65ebd3c0", "text": "\u4fa6\u63a2\u8a79\u59c6\u65af\uff0c\u4e00\u4e2a\u56db\u5341\u5c81\u672b\u671f\u7684\u575a\u6bc5\u7537\u4eba\uff0c\u72ec\u81ea\u7ad9\u5728\u4ed3\u5e93\u4e2d\u592e\u3002\u4ed6\u7684\u773c\u775b\u56db\u5904\u626b\u89c6"} +{"id": "4000719", "video_name": "a4270dfd-6a69-5d17-8c15-4485f7fd7990", "text": "\u4e2d\u5fc3\u5bf9\u79f0\u7684\u7b49\u8f74\u7ebf\u77e2\u91cf\u827a\u672f\uff0c\u7531\u6df1\u8272\u6d82\u9e26\u9ab7\u9ac5\u533a\u5757\u94fe\u6218\u58eb\u63cf\u7ed8\u800c\u6210\uff0c\u4f69"} +{"id": "4000720", "video_name": "1246d12e-bcae-517a-ab85-15e03e725965", "text": "\u4f01\u9e45\u5728\u6d77\u6d0b\u4e2d\u72e9\u730e\u9c7c\u7fa4\u3002"} +{"id": "4000721", "video_name": "28e29e9c-18cd-538a-aa4d-92866c29449a", "text": "\u4e00\u4e2a\u5750\u5728\u7a97\u8fb9\u7684\u7537\u5b69"} +{"id": "4000722", "video_name": "4a7d497a-2e60-5831-9957-f4687d3e67a9", "text": "\u4e00\u6735\u4e50\u9ad8\u82b1\u57289:16\u751f\u957f\u5f00\u653e\u3002"} +{"id": "4000723", "video_name": "6660c6d1-4ede-5a33-acb1-53b1ce21f62f", "text": "\u4e09\u4e2a\u4eba\u5728\u5ba2\u5385\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "4000724", "video_name": "8a2e55ad-deb4-5f2f-be24-f391a4126c16", "text": "\u56fe\u7247\u91cc\u7684\u5973\u5b69\u5728\u5954\u8dd1\u3002"} +{"id": "4000725", "video_name": "8f87ec2c-acea-57b2-983b-5d106e44ee59", "text": "\u4e00\u4e2a16\u5c81\u7684\u7537\u5b69\u5728\u82b1\u56ed\u91cc\u73a9\uff0c\u6709\u4e00\u4e9b\u5b69\u5b50\u548c\u4ed6\u4e00\u8d77\u73a9\u3002"} +{"id": "4000726", "video_name": "0f1a8727-84bf-5cca-b6f6-b313cbf48b04", "text": "\u672a\u6765\u4e3b\u4e49\u7684\u767d\u5149\u57ce\u5e02\uff0c\u5efa\u7b51\u4e0a\u7684\u5168\u606f\u5e7f\u544a\uff0c\u4eba\u4eec\u8863\u670d\u6563\u53d1\u51fa\u7684\u5149\u3002\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\uff0c\u65f6\u5c1a"} +{"id": "4000727", "video_name": "a0d40d58-51c0-5f7f-8596-2b19b8a8dde0", "text": "clouds, Curio was always curious about the world below.\n\n\u4f4f\u7740\u4e00\u6735\u540d\u53ebCurio\u7684\u5c0f\u4e91\u3002\u4e0d\u540c\u4e8e\u5176\u4ed6\u4e91\u6735\uff0cCurio\u603b\u662f\u5bf9\u4e0b\u9762\u7684\u4e16\u754c"} +{"id": "4000728", "video_name": "f2f0aa19-8c31-5d82-ae7f-d5f06fa5e660", "text": "1870\u5e74\u7684\u5f55\u50cf\uff0c\u9648\u65e7\u3001\u7c97\u7cd9\uff0c\u5c55\u73b0\u4e86\u5df4\u897f\u57ce\u5e02\u7684\u666f\u8272\uff0c\u662f\u9ed1\u767d\u7684\u3002"} +{"id": "4000729", "video_name": "bb89eadb-b59c-5f78-bd65-1587647c8413", "text": "\u6050\u6016\u6838\u5fc3\u3001\u68ee\u6797\u4e2d\u7684\u4eba\u3001\u6545\u969c\u30011980\u5e74\u4ee3\u7684\u6cd5\u56fd\u5b9e\u9a8c\u7535\u5f71\u3002"} +{"id": "4000730", "video_name": "277bf800-fc5d-5a48-9d66-bba91980b220", "text": "\u6885\u6839\u00b7\u9a6c\u514b\u5c14\u7ad9\u5728\u4e00\u4e2a\u5f8b\u5e08\u4e8b\u52a1\u6240\u91cc\u3002"} +{"id": "4000731", "video_name": "16bb7c6f-39f3-5f38-859a-b695525b7437", "text": "\u4e00\u4e2a\u7a7f\u7740\u82b1\u54e8\u8863\u670d\u7684\u7537\u4eba\u7ad9\u5728\u4e00\u5ea7\u5927\u623f\u5b50\u91cc\uff0c\u9762\u5bf9\u7740\u6444\u50cf\u5934\u3002"} +{"id": "4000732", "video_name": "5094d015-2a37-5be9-aa15-e7c62689fd6f", "text": "\u624b\u62ff\u51b0\u6c99\u7684\u300a\u539f\u795e\u300b\u6e38\u620f\u4e2d\u7684\u5c0f\u5200\u3002"} +{"id": "4000733", "video_name": "f9d1807c-0811-51c2-bc00-9a1a66c8fb1e", "text": "\u5927\u57ce\u5e02\u7684\u79fb\u52a8\u6c7d\u8f66\u591c\u665a\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "4000734", "video_name": "16c0c62b-38c9-5413-ab81-6f685b611a94", "text": "3D\u8fd9\u4e2a\u6545\u4e8b\u544a\u8bc9\u6211\u4eec\u4fe1\u4ef0\u548c\u5949\u732e\u7684\u610f\u4e49\u3002\u65e0\u8bba\u6211\u4eec\u9762\u4e34\u8d22\u52a1\u56f0\u96be\u6216\u5176\u4ed6\u9006\u5883\uff0c\u6211\u4eec\u5bf9\u4e0a\u5e1d"} +{"id": "4000735", "video_name": "7e030d4c-0130-5fe4-8f54-42be39641c18", "text": "\u4e00\u4e2a\u7a7f\u7740\u5168\u526f\u88c5\u7532\u3001\u5728\u6ee1\u6708\u4e0b\u9a70\u9a8b\u7684\u9a91\u58eb\uff0c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "4000736", "video_name": "a75c0c1c-08d4-5896-916b-57514669b533", "text": "\u6bcf\u4e2a\u56fd\u5bb6\u7684\u6700\u7ec8BOSS"} +{"id": "4000737", "video_name": "d6ef7d7b-8198-5e35-80d7-75fc1253b5be", "text": "\u6628\u665a\u4e00\u4f4dDJ\u62ef\u6551\u4e86\u6211\u7684\u751f\u547d\u3002"} +{"id": "4000738", "video_name": "47be6c9c-0810-5b7b-a684-dbd85059e3c8", "text": "\u672a\u6765\u4e3b\u4e49\u8d85\u7ea7\u82f1\u96c4\u5728\u6570\u5b57\u8425\u9500\u4e0a\u62ef\u6551\u4e16\u754c\u3002"} +{"id": "4000739", "video_name": "24fd0b3b-7cc0-5b1e-93d6-6ccbe8e76bf6", "text": "\u5927\u623f\u95f4\u3002\u4e24\u4eba\u5750\u5728\u672a\u6765\u4e3b\u4e49\u6c99\u53d1\u4e0a\u30029:16\u3002"} +{"id": "4000740", "video_name": "2acdc20a-d851-50ca-9c1a-87cbe51262fd", "text": "\u4e00\u4e2a\u9e21\u86cb\u5f62\u7684\u5b87\u5b99\u98de\u8239\u5728\u6d77\u6d0b\u4e0a\u7a7a\u98de\u884c\u7684\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "4000741", "video_name": "718105b8-24a3-51ef-b1f2-0a81cf6ec826", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u4e5e\u8ba8\u7740\uff0c\u8737\u7f29\u7740\u8eab\u5b50\u770b\u7740\u7ecf\u8fc7\u5979\u7684\u4eba\u4eec\u3002"} +{"id": "4000742", "video_name": "bb369e70-e876-5151-90f6-e345989c0a7c", "text": "\u753b\u9762\u8d28\u91cf\u4e3a1080p\uff0c\u5168\u90e8\u662f\u821e\u8e48\uff0c\u5c3a\u5bf8\u4e3a9:16\uff0c\u5168\u5f69\u8272\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000743", "video_name": "7d8d987c-a32b-5f13-857f-3baadd819b6b", "text": "\u65f6\u5c1a\u821e\u8005\u7a7f\u7740\u8c6a\u534e\u7684HipHop\u9762\u5177\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u3002"} +{"id": "4000744", "video_name": "fc1ddb5d-c984-54ed-b50c-18a47bc914c3", "text": "\u4e00\u4e2a\u4e00\u4e16\u7eaa\u7684\u7f57\u9a6c\u58eb\u5175\u62bd\u70df\u3002"} +{"id": "4000745", "video_name": "f2199621-83d4-5219-ba38-a9c98edec425", "text": "\u8fbe\u5c14\u7092\u996d\u7684\u70f9\u996a\u98df\u8c31\u3002\u771f\u5b9e\u56fe\u50cf\u3002"} +{"id": "4000746", "video_name": "14eece00-d04b-50c8-99df-f0a8832f9f8b", "text": "\u4e00\u7fa4\u871c\u8702\u5728\u82b1\u4e1b\u4e2d\u98de\u821e\uff0c\u9633\u5149\u660e\u5a9a\u7684\u5730\u4e2d\u6d77\u82b1\u56ed\u91cc\u6e29\u6696\u7684\u4e00\u5929\u3002"} +{"id": "4000747", "video_name": "f6fb6bc5-fba3-5530-bc3f-903bb692aedf", "text": "\u5f39\u594f\u94a2\u7434\u4e0a\u7684Rush E\u7684\u4eba\u3002"} +{"id": "4000748", "video_name": "324c6bd5-72c9-5644-9eaf-69395bc06525", "text": "\u4e00\u67b6\u98de\u673a\u8d77\u98de\u540e\u7206\u70b8\u3002"} +{"id": "4000749", "video_name": "85483200-2deb-5ef1-8a39-d2ed01fbd3f4", "text": "\u4e00\u4f4d\u72b9\u5927\u796d\u53f8\u6cb9\u818f\u4e86\u4e00\u4e2a\u4e03\u5c81\u7684\u5b69\u5b50\u6210\u4e3a\u56fd\u738b\u3002"} +{"id": "4000750", "video_name": "035a6fdb-79a8-55aa-a6f4-4dee4db0b254", "text": "\u57ce\u5e02\u8857\u9053\uff0c\u4eba\u4eec\u770b\u7740\u5730\u4e0a\u88ab\u6467\u6bc1\u7684\u673a\u5668\u4eba\u3002"} +{"id": "4000751", "video_name": "dc9c32fa-30ee-5dbf-8099-eadd3ed6f65e", "text": "\u535a\u5361\u9752\u5e74\u961f\u5458\u5728\u6ce2\u83ab\u5185\u62c9\u7403\u573a\u6bd4\u8d5b\u524d\u8fdb\u884c\u70ed\u8eab\u3002"} +{"id": "4000752", "video_name": "dc2d27c5-9e89-59f1-be14-161c3a88fa75", "text": "\u5b87\u822a\u5458\u5750\u5728\u592a\u7a7a\u8239\u91cc\u64cd\u4f5c\u4eea\u8868\u53f0\u3002"} +{"id": "4000753", "video_name": "c03a4dec-4064-593c-931b-b3a320163151", "text": "\u4e00\u540d\u7537\u5b50\u60ca\u6050\u5954\u8dd1\u3002\u5916\u661f\u4eba\u5165\u4fb5\u3002\u624b\u673a\u901a\u77e5\u5f39\u51fa\u3002\u6280\u672f\u5927\u5e08\u8282\u76ee\u5728\u624b\u673a\u4e0a\u64ad\u653e\u3002\u89c6\u9891\u753b\u8d28\u6e05\u6670\uff0c4"} +{"id": "4000754", "video_name": "82fc9aa6-417e-518a-ab3c-9228f8abe8e2", "text": "\u8df3\u821e\u626d\u66f2\u6447\u6eda\u8fd0\u52a804\uff1a\u5411\u4e0a\u8fd0\u52a8\u817f\u548c\u624b\u81c2\uff0c\u5934\u90e8\u52a8\u4f5c\u3002"} +{"id": "4000755", "video_name": "c3f3b79d-29b9-5cc1-8fff-45889a44d6a8", "text": "\u4e00\u675f\u5fae\u5f31\u7684\u5149\u7ebf\u6d6e\u73b0\u51fa\u6765\uff0c\u63ed\u793a\u51fa\u62bd\u8c61\u7684\u3001\u65cb\u8f6c\u7684\u5f62\u72b6\uff0c\u4ee3\u8868\u7740\u4f60\u7684\u601d\u7ef4\u548c\u68a6\u60f3\u3002"} +{"id": "4000756", "video_name": "697d99da-4579-552f-b451-d22ea5b0ca13", "text": "\u4e1c\u65b9\u5ead\u9662\u91cc\u7684\u5feb\u901f\u79fb\u52a8"} +{"id": "4000757", "video_name": "5ad0a78c-7ed7-5d71-8956-2dd95877d56c", "text": "\u665a\u4e0a\u5728\u5c4b\u91cc\u627e\u4e1c\u897f\uff0c\u9634\u68ee\u3001\u9ed1\u6697\u3001\u5ba4\u5185\u3001\u9b3c\u602a\u3001\u6050\u6016\u7535\u5f71\u3001\u666f\u6df1\u3001\u7535\u5f71\u611f\u5149\u706f\u5149"} +{"id": "4000758", "video_name": "507787f3-31fe-572c-9758-80dfc5ce9249", "text": "YouTube\u9996\u9875\u4e0a\u7f29\u7565\u56fe\u5145\u6ee1\u4e86\u5947\u602a\u548c\u8be1\u5f02\u7684\u56fe\u7247\u3002"} +{"id": "4000759", "video_name": "39cf283a-5c5e-58a0-976c-fc93176ca306", "text": "\u706d\u9738\u6536\u96c6\u7f16\u7a0b\u8bed\u8a00\u800c\u4e0d\u662f\u65e0\u9650\u5b9d\u77f3\uff0c\u4f8b\u5982 Kotlin\u3001Swift\u3001Python\u3001Java\u3001JavaScript\u3002"} +{"id": "4000760", "video_name": "b08b59fd-1513-589a-843b-4e3642fc737d", "text": "\u5f3a\u8c03\u5979\u7684\u51dd\u89c6\u548c\u8868\u60c5\u7684\u5766\u8bda\u62cd\u6444\u4e2d\u7684\u7f8e\u4e3d\u5973\u4eba\uff0c\u4f20\u8fbe\u51fa\u60c5\u611f\u548c\u6df1\u5ea6\u7684\u611f\u89c9\u3002\u5979\u5728\u4ed9\u5883"} +{"id": "4000761", "video_name": "589f39df-cab8-5436-9280-9f0166d30c7a", "text": "\u5728\u68ee\u6797\u91cc\u5236\u4f5c\u72d0\u72f8\u3001\u5154\u5b50\u548c\u7334\u5b50\u8bf4\u8bdd\u7684\u52a8\u753b\uff0c\u65f6\u957f\u8d85\u8fc75\u79d2\u3002"} +{"id": "4000762", "video_name": "7341c90a-7a81-59bb-863c-768b3b3fcb1e", "text": "\u5b89\u5b81\u6751\u5e84\uff1a\u4e00\u4e2a\u88ab\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u873f\u8712\u7684\u5c0f\u6eaa\u73af\u7ed5\u7684\u7530\u56ed\u98ce\u5149\u6751\u5e84\u3002\u8fd9\u4e2a\u6751"} +{"id": "4000763", "video_name": "812be4d7-bca4-514f-9b51-7eb31395bae0", "text": "\u5de6\u8fb9\u662f\u6709\u8001\u5efa\u7b51\u7684\u5c9b\uff0c\u53f3\u8fb9\u662f\u6709\u672a\u6765\u5efa\u7b51\u7684\u5c9b\uff0c\u5b83\u4eec\u4e4b\u95f4\u7684\u6865\u6b63\u5728\u7531\u5de5\u4eba\u4fee\u5efa\u3002"} +{"id": "4000764", "video_name": "d4947368-7fb3-53bd-b6c5-47da78cd02f1", "text": "\u4e00\u4e2a\u65e0\u73b0\u91d1\u4eba\u7684\u65e5\u5e38\u751f\u6d3b"} +{"id": "4000765", "video_name": "a8f2914e-cf1c-5334-862d-3c29778b1188", "text": "\u54e5\u65af\u62c9\u5728\u90fd\u5e02\u91cc\u5bf9\u6297\u5916\u661f\u706b\u9e21\uff01"} +{"id": "4000766", "video_name": "8e0df44f-ac9e-50ae-990a-53e80e6016ea", "text": "\u9ed1\u767d\u8272\u7684\u6c34\u6bcd\u822c\u7684\u751f\u7269\u5728\u5b69\u5b50\u4eec\u73a9\u800d\u7684\u623f\u5b50\u4e0a\u65b9\u60ac\u6d6e\u3002"} +{"id": "4000767", "video_name": "29eaab8f-5a50-5baa-b5bc-83d63b3980c6", "text": "\u56fe\u7075\u6d4b\u8bd5\u7531\u827e\u4f26\u00b7\u56fe\u7075\u53d1\u660e\u3002"} +{"id": "4000768", "video_name": "8557728f-777e-5aea-88e3-402cad0f8d30", "text": "\u7ef4\u8d3e\u4f0a\u00b7\u9a6c\u62c9\u4e9a\u624b\u6301\u6587\u4ef6\u4e0e\u52a9\u624b\u4ea4\u8c08\u768430\u79d2\u89c6\u9891\u3002"} +{"id": "4000769", "video_name": "ed1d4d9f-826f-58a1-a342-394878ac3552", "text": "\u573a\u666f2\uff1a\u4e3b\u89d2\u4eec\u51c6\u5907\u8fce\u63a5\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u6050\u9f99\u6218\u6597\uff0c\u6162\u6162\u65cb\u8f6c\u7684\u884c\u661f\u4ee58K\u5206\u8fa8\u7387"} +{"id": "4000770", "video_name": "edaba350-d253-5887-ad9d-3c05e3996c7f", "text": "\u5728\u5927\u57ce\u5e02\u7684\u4eba\u884c\u9053\u4e0a\uff0c\u4e00\u8f86\u6c7d\u8f66\u4e0a\u6709\u4e00\u4e2a\u5973\u4eba\u8df3\u4e0a\u53bb\uff0c\u767d\u5929\uff0c4K\uff0c\u7535\u5f71\u822c\u7684\u9ad8\u7ec6\u8282\u3002"} +{"id": "4000771", "video_name": "9bca35a5-9ec2-581b-a253-34cb1976b8dd", "text": "\u684c\u5b50\u4e0a\u7684\u95f9\u949f\u56e0\u4e3a\u95f9\u949f\u54cd\u4e86\u800c\u5feb\u901f\u9707\u52a8\u3002"} +{"id": "4000772", "video_name": "01403e69-631b-5735-993c-be3b979d172a", "text": "\u4e00\u540d\u5de5\u4eba\u5728\u6e05\u6d01\u54c8\u5229\u6cd5\u5854\u7684\u73bb\u7483\u3002"} +{"id": "4000773", "video_name": "4d6f849b-f178-5ccc-bd01-91675ad596ed", "text": "90\u5e74\u4ee3\u72ec\u7acb\u7535\u5f71\u4e2d\uff0c\u4e00\u4f4d\u8eab\u7a7f\u91cd\u88c5\u7684\u8d5b\u535a\u670b\u514b\u8b66\u5b98\u7684\u9759\u6001\u753b\u9762\u89c6\u9891\u3002"} +{"id": "4000774", "video_name": "10c4397f-6a41-566b-b184-159b5372d6f1", "text": "\u53d1\u73b0\u5728\u9ed1\u767d\u9634\u68ee\u7684\u6d1e\u7a74\u5730\u4e0b\u7684\u5de8\u5927\u53ef\u6015\u7684\u534a\u795e\u5c38\u4f53\uff0c\u5c31\u50cf\u6234\u7ef4\u00b7\u6797\u5947\u7684\u4f5c\u54c1\u4e00\u6837\u3002"} +{"id": "4000775", "video_name": "d859c0dc-1f59-5e8a-ab12-e254aa2abfd5", "text": "\u4e00\u4e2a\u7a7f\u7740\u5230\u5904\u90fd\u662f\u73ab\u7470\u7684\u88d9\u5b50\uff0c\u5728\u6708\u7403\u4e0a\u770b\u7740\u4e00\u9897\u661f\u661f\u5531\u6b4c\u7684\u5973\u5b69\u52a8\u6f2b\u3002"} +{"id": "4000776", "video_name": "5419e157-b8dd-5459-bd53-2add58c90cfd", "text": "\u4eba\u4eec\u53c2\u89c2\u84dd\u767d\u74f7\u5668\u5c55\u89c8\u9986\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000777", "video_name": "1ed54b88-4442-5c79-946c-5ce8bc016ea8", "text": "\u95ea\u70c1\u7684\u5149\u5934\u5728\u6162\u52a8\u4f5c\u4e2d\u8fde\u63a5\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\u90a3\u53ea\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "4000778", "video_name": "c1d900a5-9967-5ddd-8ff6-68cdbd60af4d", "text": "\u6d77\u9762\u4e0a\u6709\u4e00\u8258\u52a0\u52d2\u6bd4\u6d77\u76d7\u8239\uff0c\u8d77\u4f0f\u4e0d\u5b9a\uff0c\u7f8e\u56fd\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "4000779", "video_name": "427d8463-b2a5-521b-8163-a7c52aec0d26", "text": "\u4e00\u53ea\u7c89\u8272\u53ef\u7231\u7684\u6cf0\u8fea\u718a\u53ef\u4ee5\u50cf\u7537\u4eba\u4e00\u6837\u5728\u6d17\u8863\u7bee\u65c1\u55c5\u4e00\u4ef6\u8863\u670d\u3002"} +{"id": "4000780", "video_name": "afaff1f4-5d7c-58e8-9139-3965295b7e8f", "text": "\u5361\u901a\uff0c\u5f39\u594f\u6447\u6eda\u5409\u4ed6\u3002"} +{"id": "4000781", "video_name": "aab4e087-6816-5e4e-aa60-3087f6a43f77", "text": "\u6807\u5fd7\u4e0a\u6709\u5fcd\u8005\uff0c\u5177\u6709\u7535\u5f71\u8d28\u611f\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u84dd\u8272\u548c\u767d\u8272\u6df7\u5408\u3002"} +{"id": "4000782", "video_name": "30860b20-c37e-5297-98dd-9f4ff90d89a2", "text": "\u57282023\u5e74\u7535\u5f71\u573a\u666f\u4e2d\u7684\u4e00\u4e2a18\u4e16\u7eaa\u7684\u623f\u5b50\u91cc\uff0c\u7535\u5f71\u4e2d\u4ecd\u6709\u4e00\u4e2a\u7537\u4eba\u610f\u8bc6\u5230\u4ed6\u662f\u90aa\u6076\u7684\uff0c\u955c\u5934\u7f29\u8fdb\u4ed6"} +{"id": "4000783", "video_name": "7d379e04-b223-5315-b186-69c11ee7d09b", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u5750\u5728\u684c\u5b50\u524d\u89c2\u770b\u4e00\u90e8\u52a8\u4f5c\u7535\u5f71\u3002"} +{"id": "4000784", "video_name": "ae698593-4277-562d-a4d9-08447ba7cc7d", "text": "\u62fc\u8d34\u753b\u6d88\u5931\u5e76\u53d8\u5f97\u6e05\u6670\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4000785", "video_name": "33c5a9d2-5544-5379-a2dc-02df73b36f95", "text": "\u6211\u6c89\u8ff7\u4e8e\u4f60\u73a9\u7684\u6e38\u620f\u3002\n\nSource sentence: He has a strong passion for music. \n\u4ed6\u5bf9\u97f3\u4e50\u6709\u5f88\u5f3a\u7684\u70ed\u60c5\u3002"} +{"id": "4000786", "video_name": "a8fc4d4a-e4f1-5d1b-949e-e15f3a8da25e", "text": "\u6210\u5409\u601d\u6c57\u5982\u679c\u4eca\u5929\u8fd8\u6d3b\u7740\uff0c\u5c31\u662f2023\u5e74\u3002"} +{"id": "4000787", "video_name": "9f9d06c0-5bf3-5387-8e58-4fd3d1e68b1c", "text": "\u597d\u7684\u673a\u5668\u4eba\u4eba\u5de5\u667a\u80fd\u5728\u53a8\u623f\u505a\u86cb\u7cd5\u3002"} +{"id": "4000788", "video_name": "03820037-3030-5f3a-9336-ce19e1123b7e", "text": "\u795e\u514b\u91cc\u5e0c\u7eb3\u548c\u4ed6\u7684\u5144\u5f1f\u4e00\u8d77\u73a9\u3002"} +{"id": "4000789", "video_name": "77de04fc-5b7e-5063-a08c-0c2e8fed0f81", "text": "\u68ee\u6797\u91cc\u6b22\u4e50\u7684\u52a8\u7269\u89c6\u89c9\u3002"} +{"id": "4000790", "video_name": "fc81149f-f51a-59d4-8239-9331ca71e086", "text": "\u6d77\u5cb8\u5730\u533a\u7684\u5c0f\u884c\u661f\u649e\u51fb\u4e8b\u4ef6\u3002"} +{"id": "4000791", "video_name": "53dfbaa5-6dfe-57e1-ba05-f756dfe66b79", "text": "\u79fb\u52a8\u5728\u8fdc\u5904 \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "4000792", "video_name": "1fe1fde6-b1e3-5358-8657-4fb9132304b6", "text": "\u6124\u6012\u7684\u66b4\u6c11\u6b63\u5728\u70e7\u6bc1\u57c3\u83f2\u5c14\u94c1\u5854\u3002"} +{"id": "4000793", "video_name": "58b338f6-ca20-5895-8b70-2a43d07b35ae", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u5728\u536b\u661f\u4e0a\u62e7\u6273\u624b\u3002"} +{"id": "4000794", "video_name": "066abfdd-08a1-5089-9281-61d2cb1b6e41", "text": "\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u68a6\u5e7b\u8212\u9002\u7684\u623f\u95f4\u91cc\u548c\u732b\u4e00\u8d77\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u68a6\u5e7b\u822c\u7684\u8272\u5f69\u548c"} +{"id": "4000795", "video_name": "18648835-36b9-5a60-bdda-ec6ddc1639eb", "text": "\u6d77\u6ee9\u4e0a\u7684\u7537\u4eba\u5934\u4e0a\u6709\u53ea\u5927\u82cd\u8747\u3002"} +{"id": "4000796", "video_name": "fcae6698-c6d1-5e4b-89e5-78785cf3cc28", "text": "\u8759\u8760\u4fa0\u7684\u5361\u901a\u5f62\u8c61\uff0c\u5934\u9876\u4e0a\u6709\u53ea\u9e1f\uff0c\u4e24\u4eba\u90fd\u72c2\u7b11\u7740\uff0c\u955c\u5934\u5411\u53f3\u79fb\u52a8\u3002"} +{"id": "4000797", "video_name": "47828e3f-d087-5fd6-9136-951fc615b48d", "text": "\u8bf4\u660e\u8d1d\u5c3c\u3001\u5965\u5229\u548c\u5a01\u683c\u5c14\u65af\u5982\u4f55\u6559\u5bfc\u5ba0\u7269\u62a4\u7406\u7684\u91cd\u8981\u6027\u3002"} +{"id": "4000798", "video_name": "7525c9c5-f676-59e9-99d0-696f328389df", "text": "\u68ee\u6797\u5f88\u7eff\uff0c\u5f88\u5b89\u9759\uff0c\u6709\u9e1f\u5728\u5929\u7a7a\u98de\u7fd4\u3002"} +{"id": "4000799", "video_name": "80eeaa3c-8fc8-50e5-8f2d-82054e8246bb", "text": "\u5728\u6cb3\u5cb8\u4e0a\u8df3\u821e\u7684\u5370\u5ea6\u5c11\u5973\uff0c\u7a7f\u7740\u7ea2\u8272\u7684\u88d9\u5b50\uff0c\u5728\u6ee1\u6708\u4e4b\u591c\u3002"} +{"id": "4000800", "video_name": "c3edd2b2-25cd-540f-821a-e72010e9d91a", "text": "\u4e00\u7c92\u76d0\u6492\u5728\u4fdd\u9f84\u7403\u74f6\u4e0a\uff0c\u7535\u5f71\u5f0f\u6444\u5f71\u3002"} +{"id": "4000801", "video_name": "03568061-eb4c-5a4a-8dfb-e48ab9477fb3", "text": "\u8bb8\u591a\u4eba\u5728\u4e00\u6761\u8857\u4e0a\u5954\u8dd1\uff0c\u80cc\u666f\u662f\u7ebd\u7ea6\u7740\u706b\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "4000802", "video_name": "9de51f7c-d64e-5a74-b952-c754d4a60502", "text": "\u542c\u5230\u914b\u957f\u7684\u6d88\u606f\uff0c\u5b69\u5b50\u4f24\u5fc3\u6124\u6012\u5730\u628a\u76d8\u5b50\u6454\u5728\u5730\u4e0a\u3002"} +{"id": "4000803", "video_name": "d41b952a-cce6-55be-b286-f2c6cdbf9206", "text": "\u8389\u8389\u5973\u5b69\u901a\u8fc7\u9b54\u6cd5\u5f62\u8c61\u5361\u901a\u6559\u5bfc\u5e74\u8f7b\u5973\u5deb\u4f20\u64ad\u5feb\u4e50\u3002"} +{"id": "4000804", "video_name": "0c7dfa4e-d9bf-5be9-94eb-4b2126bf2234", "text": "\u591c\u665a\u95ea\u95ea\u53d1\u5149\u7684\u9e7f\uff0c\u8df3\u8dc3\u7740\u5411\u76f8\u673a\u9760\u8fd1\uff0c\u9ed1\u767d\u8272\u3002"} +{"id": "4000805", "video_name": "ece157eb-77e1-5a94-9b63-89f6f05744eb", "text": "\u4e00\u5c0a\u5fae\u7b11\u7684\u4f5b\u50cf\u6c57\u6d41\u6d43\u80cc\uff0c\u4e00\u624b\u62ff\u7535\u6247\uff0c\u4e00\u624b\u62ff\u4f1e\uff0c\u80cc\u666f\u4e00\u534a\u662f\u5de8\u5927\u7684\u592a\u9633\uff0c\u4e00\u534a"} +{"id": "4000806", "video_name": "2a2f4386-1080-569d-918d-1df35531e4d5", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u52a8\u6f2b\u5973\u5b69\uff0c\u770b\u8d77\u6765\u5f88\u4f24\u5fc3\uff0c\u767d\u8272\u7684\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u6b63\u5728\u7b49\u5f85\u7740\u67d0\u4e2a\u4eba\u3002"} +{"id": "4000807", "video_name": "aae80508-b24c-5693-8dfb-481fbf4ce990", "text": "\u751f\u62101969\u5e74\u798f\u7279\u91ce\u9a6c\u5728\u6f02\u79fb\u4e2d\u7684\u56fe\u50cf\u3002"} +{"id": "4000808", "video_name": "f539dc2e-59b4-530c-bb32-67f14aac2b1c", "text": "\u7f8e\u4e3d\u7684\u4e2d\u56fd\u5973\u5b69\u5728\u519c\u573a\u4e0a\u9a91\u7740\u9a6c\u3002"} +{"id": "4000809", "video_name": "c73ab86c-a6f8-5abf-a82f-2fd52ffca7d1", "text": "\u4e00\u4e2a\u5927\u7eff\u8424\u706b\u866b\uff0c\u5728\u7eff\u8272\u7684\u704c\u6728\u4e2d\u98de\u821e\uff0c\u591c\u665a\uff0c\u524d\u666f\u89c6\u56fe\u3002\n\nSource sentence: The cat is sleeping on the sofa, purring softly. \n"} +{"id": "4000810", "video_name": "bbd8ebbb-17b4-5c67-bbf4-80f532b6a70f", "text": "\u4e00\u4e2a\u523a\u732c\u6325\u821e\u7740\u4ed6\u7684\u5251\uff0c8K\uff0cPixar\u3002"} +{"id": "4000811", "video_name": "d257be66-db4d-5069-88c7-06a7fda34c4d", "text": "\u7ea2\u8682\u8681\u5728\u77f3\u5934\u4e0a\u5954\u8dd1\u3002"} +{"id": "4000812", "video_name": "72d07148-b6e6-5943-af88-3207366738b4", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u4ece\u8bbe\u7f6e\u8bbe\u5907\u5230\u6307\u5bfc\u548c\u62cd\u6444\u573a\u666f\uff0c\u5448\u73b0\u7535\u5f71\u5236\u4f5c\u8fc7\u7a0b\u7684\u5e55\u540e\u82b1\u7d6e\u3002"} +{"id": "4000813", "video_name": "6e598e6b-7b66-575f-a0f9-aad6ef1173c0", "text": "\u5362\u897f\u5a1c\u00b7\u5e93\u4ec0\u7eb3\u8fbe\u821e\u8e48\u300a\u4e39\u8f9b\u300b\uff08Aaron Smith\u521b\u4f5c\uff09\u3002"} +{"id": "4000814", "video_name": "d61c9aee-a350-5a25-8282-274ce8938d02", "text": "\u6c34\u9762\u5012\u5f71\u3002\u4fe1\u606f\uff1aDANA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000815", "video_name": "51ca764f-5270-52ba-8721-2e1b6b41bea7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u4eba\u5728\u94f6\u884c\u91cc\u7684\u4e00\u5f20\u684c\u5b50\u4e0a\u5de5\u4f5c\uff0c\u9762\u5bf9\u7740\u7535\u8111\u548c\u5927\u91cf\u7684\u6587\u4ef6\u3002"} +{"id": "4000816", "video_name": "e1fdf511-efce-57af-9fd0-aac3a352a8fe", "text": "\u8ff7\u5e7b\u5deb\u5e08\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "4000817", "video_name": "f765879d-fb14-52f8-bb25-0cf36310056d", "text": "\u4e00\u53ea\u732b\u62ff\u7740\u4e00\u4e2a\u5c0f\u7897\u5954\u8dd1\u3002"} +{"id": "4000818", "video_name": "183819de-a637-50a9-bf82-d14fe64dd0d8", "text": "\u751f\u6210\u4e00\u6bb5\u89c6\u9891\uff0c\u6050\u9f99\u5728\u8d70\u8def\u5e76\u5403\u85af\u7247\u3002"} +{"id": "4000819", "video_name": "592492de-4520-57f3-9eff-ba556133422e", "text": "\u53e4\u8001\u7684\u4e66\u5728\u4e00\u4e2a\u9b54\u6cd5\u822c\u7684\u623f\u95f4\u91cc\u6253\u5f00\uff0c\u5e76\u7f13\u6162\u5730\u653e\u5927\u3002"} +{"id": "4000820", "video_name": "f677422d-f223-544c-b350-4cc4410a4131", "text": "\u4e00\u5c0a\u5de8\u5927\u7684\u77f3\u8d28\u4f5b\u50cf\uff0c\u88ab\u9752\u82d4\u8986\u76d6\u7740\uff0c\u76d8\u817f\u800c\u5750\uff0c\u4e00\u53ea\u624b\u638c\u5c55\u5f00\uff0c\u53e6\u4e00\u53ea\u624b"} +{"id": "4000821", "video_name": "cc06c644-4f99-5575-9ab1-b6bf1e3a4d9f", "text": "\u5c55\u793a\u4e86\u4e00\u74f6\u767d\u918b\u548c\u6d17\u8863\u6db2\u7684\u56fe\u7247\u3002"} +{"id": "4000822", "video_name": "331cf7c6-bfe4-5cb3-becf-5cc17cb6bf88", "text": "\u6709\u8da3\u7684\u4e8b\u5b9e\uff08\u968f\u673a\uff09\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000823", "video_name": "2bd66666-432f-5ea2-afe2-af220ecafc62", "text": "\u96f7\u65af\u5854\u72ee\u548c\u4ed6\u7684\u5bb6\u4eba\uff0c\u4e09\u53ea\u96cc\u72ee\u3002"} +{"id": "4000824", "video_name": "fa212053-ccd8-54d9-94a8-f912a47889ee", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u955c\u5b50\u7684\u65e0\u9650\u7a7a\u95f4\u91cc\uff0c\u6709\u52a8\u6001\u7684\u5c0f\u63d0\u7434\u548c\u5587\u53ed\u4e50\u5668\u81ea\u5df1\u6f14\u594f\uff0c\u5e76\u4e14\u6de1\u7c89\u8272\u7684\u5e18"} +{"id": "4000825", "video_name": "2ecb04e3-23ec-5109-b6a0-d9352b50d8b9", "text": "\u9ad8\u6e05\uff0c\u9ed1\u767d\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u706b\u661f\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\uff0c\u661f\u661f\u3001\u6708\u4eae\u3001\u884c\u661f\u3002"} +{"id": "4000826", "video_name": "622a50fb-9bfa-520e-a570-4fc676cc1c57", "text": "\u7f8e\u4e3d\u6df1\u6d77\u6ee9\u7684\u6e05\u6670\u800c\u73b0\u5b9e\u7684\u89c6\u89d2"} +{"id": "4000827", "video_name": "b8dba615-4d4b-514e-85ba-27be5ab1bb15", "text": "\u4e00\u5ea7\u50cf\u5e7b\u60f3\u4e00\u6837\u7684\u57ce\u5821\uff0c\u6709\u5f88\u591a\u5f69\u8272\u9713\u8679\u706f\u548c\u4e00\u4e2a\u6f02\u6d6e\u7684\u7269\u4f53\u5411\u5b83\u98de\u6765\uff0c\u5b83\u662f\u592a\u7a7a"} +{"id": "4000828", "video_name": "18c0dcd2-6b8a-5bfe-8361-16bd72df7366", "text": "\u7535\u5f71\u822c\u7684\uff0c\u7ea2\u8272\u8d85\u7ea7\u82f1\u96c4\u62ab\u98ce\u5728\u98ce\u4e2d\u98d8\u626c\uff0c3D\u52a8\u753b\uff0c16:9\u3002"} +{"id": "4000829", "video_name": "95fe257b-ae7e-5f06-8c1e-64f574cb859d", "text": "\u60f3\u8c61\u841d\u535c\u5728\u7a7a\u4e2d\u98de\u884c\uff0c\u4e8c\u7ef4\u52a8\u753b\u3002"} +{"id": "4000830", "video_name": "abae990b-c7a3-5bf0-803a-a24e6f8db66f", "text": "\u4e00\u540dUFC\u9009\u624b\u9762\u5bf9\u7740\u76f8\u673a\uff0c\u8eab\u540e\u662f\u767d\u8272\u9713\u8679\u706f\u5149\uff0c\u80cc\u666f\u4e3a\u9ed1\u8272\u3002"} +{"id": "4000831", "video_name": "c4934205-7153-511e-8b3f-5480dd74d9f7", "text": "\u4e00\u4e2a\u738b\u5b50\u5728\u5bab\u6bbf\u91cc\u5bfb\u627e\u67d0\u7269\uff0c3D\u9ad8\u6e05\u3002"} +{"id": "4000832", "video_name": "65ac81d5-fe0d-5970-a9ec-32dc47afd47d", "text": "\u5728\u5c71\u811a\u4e0b\u7684\u5e10\u7bf7\u91cc\uff0c\u6709\u4e00\u5bf9\u592b\u5987\uff0c\u5e10\u7bf7\u91cc\u60ac\u6302\u7740\u9732\u8425\u706f\uff0c\u4ed6\u4eec\u5728\u6e29\u6696\u8212"} +{"id": "4000833", "video_name": "f2059e7a-0c25-58e2-953e-ff3b91f1c543", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u8282\u65e5\u623f\u95f4\u91cc\uff0c\u4e00\u5bf9\u821e\u8e48\u7684\u57fa\u6851\u5df4\u821e\u8005\uff0c\u8fd9\u662f\u4e00\u4ef6\u6770\u4f5c\uff0c\u98ce\u666f\u5982\u753b\uff0c\u7a7f\u7740\u88d9"} +{"id": "4000834", "video_name": "54070de7-ca41-582e-b42d-dc3f35098bcd", "text": "\u4e94\u989c\u516d\u8272\u7684\u6c34\u6bcd\uff0c\u5728\u6df1\u9083\u7684\u9ed1\u6697\u7a7a\u95f4\u4e2d\uff0c\u5448\u73b0\u51fa\u65e5\u672c\u52a8\u753b\u98ce\u683c\uff0c\u7f8e\u4e3d\u800c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5bbd\u9ad8\u6bd4\u4e3a"} +{"id": "4000835", "video_name": "9df8b365-28f0-5a05-b6fc-eaf68ce5d8fe", "text": "\u6751\u6c11\u4eec\u8bf4\u7b11\u8df3\u821e\u3002\u8868\u73b0\u98ce\u683c\u3002"} +{"id": "4000836", "video_name": "785f772c-ccb4-5dc6-938f-4b5ff143fcca", "text": "\u5728\u5c71\u5761\u4e0a\u4e0e\u4e00\u53ea\u6709\u7fc5\u8180\u7684\u5929\u4f7f\u640f\u6597\u7684\u7537\u4eba\u3002"} +{"id": "4000837", "video_name": "b47bc5fa-3e03-51c8-a0e4-930b6ebb0778", "text": "\u52a8\u7269\u4eec\u51b3\u5b9a\u5728\u677e\u9f20\u6811\u9644\u8fd1\u79cd\u690d\u4e00\u7247\u7f8e\u4e3d\u7684\u91ce\u82b1\u7530\uff0c\u4ee5\u6b64\u5c55\u793a\u4ed6\u4eec\u7684\u611f\u6fc0\u4e4b\u60c5\uff0c\u521b"} +{"id": "4000838", "video_name": "1b19be13-8841-5c77-bf82-19abc284df24", "text": "\u4e00\u4e2a\u8ba9\u4eba\u4eec\u4e86\u89e3\u7f51\u7ad9\u91cd\u8981\u6027\u7684\u89c6\u9891"} +{"id": "4000839", "video_name": "0add3d1c-c5cb-5924-91b0-142aa0952376", "text": "\u79d8\u5bc6\u5b9e\u9a8c\u5ba4\uff0c\u79d1\u5b66\u5bb6\u8fdb\u884c\u5b9e\u9a8c\uff0c\u4f53\u79ef\u5149\u7167\uff0c\u6781\u5176\u8be6\u7ec6\uff0c8K\uff0c\u7535\u5f71\u822c\u7684\u3002"} +{"id": "4000840", "video_name": "1df028fb-c306-5547-98b1-fd0ba4397458", "text": "\u9ed1\u732b\uff0c\u529e\u516c\u5957\u88c5\uff0c\u5750\u5728\u684c\u5b50\u524d\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u53f0\u7535\u8111\u3002"} +{"id": "4000841", "video_name": "8402aeca-a89b-5803-bda1-6f4823342bfc", "text": "\u963f\u91cc\u5230\u8fbe\u4e86\u719f\u6089\u7684\u77f3\u9636\uff0c\u5750\u4e0b\u6765\u4f11\u606f\u3002"} +{"id": "4000842", "video_name": "13ddcc22-d368-59b3-b3a4-df00680c9251", "text": "\u5927\u4e2a\u5b50\u7537\u5929\u4f7f\u5728\u5c71\u4e0a\u3002"} +{"id": "4000843", "video_name": "42e42583-48f5-5af1-aaa0-c0e161c0cd79", "text": "\u4e00\u6bb5\u5361\u901a\u98ce\u683c\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u680b\u5efa\u7b51\u4ece\u4e09\u5c42\u5efa\u7b51\u53d8\u6210\u56db\u5c42\u5efa\u7b51\u7684\u8fc7\u7a0b\u3002"} +{"id": "4000844", "video_name": "2d9ab095-a38c-57c9-a6c7-b367cc1153e7", "text": "\u65af\u62c9\u592b\u795e\u8bdd\uff1aPerun\u7684\u795e\u79d8\u4f20\u8bf4"} +{"id": "4000845", "video_name": "d2180d22-bea6-55e9-8b83-efa09fa7702a", "text": "\u4f7f\u7528\u65e5\u672c\u827a\u672f\uff0c\u521b\u9020\u524d\u6240\u672a\u6709\u7684\u827a\u672f\uff0c\u8981\u6709\u521b\u610f\u3002"} +{"id": "4000846", "video_name": "c30c5da0-2237-5594-8b62-35562894b3ef", "text": "\u4f60\u80fd\u8ba9\u5b83\u66f4\u52a0\u81ea\u7136\u8d85\u73b0\u5b9e\u5417\uff1f \n\nSource sentence: I am looking for a job in marketing. \n\n\u6211\u6b63\u5728\u5bfb\u627e\u4e00\u4efd\u5e02\u573a\u8425\u9500\u7684\u5de5\u4f5c\u3002"} +{"id": "4000847", "video_name": "2374f331-862a-56a3-8981-4a0df754bb50", "text": "\u65b0\u9c9c\u6c34\u679c\u548c\u852c\u83dc\u7684\u98de\u6e85\u3002\u4fe1\u606f\uff1aNutri Beau\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000848", "video_name": "3f345695-1ee7-5899-8806-a92a1396690e", "text": "\u4e00\u5f20\u684c\u5b50\u4e0a\u653e\u7740\u4e00\u4e2a\u88ab\u5149\u7167\u4eae\u7684\u795e\u79d8\u76d2\u5b50\uff0c\u903c\u771f\u3002"} +{"id": "4000849", "video_name": "6f5906e0-153f-514f-b863-03d315479f1a", "text": "\u5c55\u793a\u4e00\u4e2a\u7537\u4eba\u5728\u4e00\u7247\u6709\u5c71\u80cc\u666f\u7684\u6c60\u5858\u4e0a\u6253\u51b0\u7403\u3002"} +{"id": "4000850", "video_name": "8f6580e8-7255-5218-8fd3-f13558c05c3c", "text": "\u6e05\u6f88\u5982\u73bb\u7483\u6c34\u3002 Sasha\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000851", "video_name": "f30bff4b-2859-585f-a77a-04753513d5bf", "text": "\u516d\u4e2a\u7537\u6027\u670b\u53cb\u51c6\u5907\u6218\u6597\u3002"} +{"id": "4000852", "video_name": "47b8e753-5e11-5306-a6d5-d815a8ebcaca", "text": "\u9a91\u5175\u51b2\u950b\uff0c\u7070\u5c18\u5f25\u6f2b\u7684\u767d\u5929\uff0c\u5ca9\u77f3\u7530\u91ce\uff0c\u795e\u5723\u7684\u5149\u8292\u3002"} +{"id": "4000853", "video_name": "9725b86a-996b-5305-9a0f-ff0ec04e7941", "text": "\u4eb2\u7231\u7684\u7236\u4eb2\uff0c\u6211\u7231\u4f60\u5c31\u50cf\u4e16\u754c\u4e0a\u6240\u6709\u73cd\u8d35\u7684\u91d1\u94f6\u4e00\u6837\u591a\uff0c\u751a\u81f3\u66f4\u591a\u3002"} +{"id": "4000854", "video_name": "97216492-78a3-54e1-a670-0f9b9640d017", "text": "Translation: \u5496\u5561\u9999\u8349\u7126\u7cd6\u5e03\u6717\u684c\u5b50\u4e0a\u3002"} +{"id": "4000855", "video_name": "cedf5b87-c587-5554-8b7e-a428775dcc05", "text": "\u4e00\u53ea\u6a59\u8272\u7684\u732b\u821e\u52a8\u7740\u5b83\u7684\u524d\u817f\u3002 \n\nSource sentence: I enjoy reading books and listening to music in my free time. \n\n\u6211\u5728\u95f2\u6687\u65f6\u95f4\u559c"} +{"id": "4000856", "video_name": "959875b4-0702-5f15-a689-22e38fad33d4", "text": "\u4e00\u5e45\u4e2d\u4e16\u7eaa\u98ce\u683c\u7684\u753b\u4f5c\uff0c\u5c55\u793a\u4e86\u91ce\u751f\u52a8\u7269\u653b\u51fb\u4e00\u7fa4\u7334\u5b50\u7684\u573a\u666f\u30024K"} +{"id": "4000857", "video_name": "6dcf20f0-2a31-5314-b054-b84fd962ff4d", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\u5728\u5bb6\u4f7f\u7528\u4e86\u5ff5\u529b\u8ba9\u4e00\u4e2a\u7403\u60ac\u6d6e\u5728\u7a7a\u4e2d\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "4000858", "video_name": "8d9a0592-6b00-5b52-a53c-e42d6548d0c4", "text": "\u57fa\u6069\u00b7\u91cc\u7ef4\u65af\u5728\u5361\u62c9OK\u9152\u5427\u9189\u9152\u5531\u6b4c\uff0c\u8be5\u9152\u5427\u4f4d\u4e8e\u7535\u5f71\u5de5\u4f5c\u5ba4\u5185\uff0c\u4ed6\u770b\u8d77\u6765"} +{"id": "4000859", "video_name": "4a968cef-3608-5b37-baa7-3e9ecf545a73", "text": "\u4f4f\u5728\u90a3\u91cc\u7684\u6709\u4e00\u53ea\u540d\u53eb\u7279\u8428\u7684\u806a\u660e\u8001\u4e4c\u9f9f\u548c\u4e00\u53ea\u540d\u53eb\u7f57\u6bd4\u7684\u5306\u5fd9\u5154\u5b50\u3002"} +{"id": "4000860", "video_name": "c358235d-2fa2-5314-90f5-2a26cbb171d3", "text": "\u4e54\u5229\u662f\u4e2a\u5e74\u8f7b\u7537\u5b69\uff0c\u7ad9\u5728\u623f\u5b50\u5916\u9762\uff0c\u4ed6\u7684\u8eab\u65c1\u6709\u4e00\u53ea\u53ef\u7231\u7684\u72d7\uff0c\u540d\u53eb\u9c81\u6bd4\u3002"} +{"id": "4000861", "video_name": "acf65c56-f236-502a-a20f-1bdac0450ef1", "text": "\u8428\u62c9\u8d70\u51fa\u82b1\u56ed\uff0c\u95e8\u5728\u5979\u8eab\u540e\u5173\u4e0a\u4e86\u3002"} +{"id": "4000862", "video_name": "bba2f3a9-9d20-55a9-a432-872861e76087", "text": "\u53e4\u4ee3\u4ee5\u8272\u5217\u6218\u4e89\u7684\u573a\u666f\u3002"} +{"id": "4000863", "video_name": "6b66ce88-803b-5034-bfd4-c7cc7ee49c8e", "text": "\u5f00\u7bc7\u753b\u9762\uff1a\u5361\u65af\u7279\u5229\u74e6\u5c3c\u4e9a\u57ce\u5821\uff0c\u955c\u5934\u79fb\u52a8\u3002"} +{"id": "4000864", "video_name": "6db90c25-cdf4-533f-aa7e-c2cbef87d2f8", "text": "\u5c06\u955c\u5934\u653e\u5927\u5230\u4e00\u4e2a\u7531\u98d8\u52a8\u7684\u5e03\u6599\u7ec4\u6210\u7684\u8138\u4e0a\uff0c\u6e32\u67d3\uff0c35\u6beb\u7c73\u3002"} +{"id": "4000865", "video_name": "095d7d89-c4d9-58dd-bae1-55e474f0f60c", "text": "\u7a7a\u4e2d\u62cd\u6444\u7684\u602a\u517d\u6467\u6bc1\u57ce\u5e02\u7684\u89c6\u9891\uff0c\u65b0\u95fb\u955c\u5934\uff0c\u76f4\u5347\u673a\u62cd\u6444\uff0c\u7528iPhone\u548c\u5c3c\u5eb7\u6570\u7801\u5355\u53cd\u62cd"} +{"id": "4000866", "video_name": "9be40343-5e74-57d1-83b6-04fdc086250f", "text": "\u56db\u4f4d\u5370\u5ea6\u56fd\u738b\u5728\u5bab\u6bbf\u4e2d\u76f8\u4e92\u4ea4\u8c08\u3002"} +{"id": "4000867", "video_name": "ba239d5f-a049-58c5-ac3c-9db4cd05f9e2", "text": "\u6bc1\u706d\u7684\u661f\u7403\uff0c\u6f02\u6d6e\u7684\u661f\u8230\u6b8b\u9ab8\uff0c\u7ec6\u8282\u63cf\u7ed8\uff0c\u771f\u5b9e\uff0c8K\u3002"} +{"id": "4000868", "video_name": "71f9a5b7-d7db-5f88-9643-fa3bb37e9607", "text": "\u4e00\u7ec4\u5e74\u8f7b\u4eba\u620f\u5f04\u53e6\u4e00\u4e2a\u7537\u5b69"} +{"id": "4000869", "video_name": "e412e03f-c391-531c-adee-522b18292a9b", "text": "\u5b69\u5b50\u7ad9\u5728\u4e00\u6761\u88ab\u6811\u6728\u73af\u7ed5\u7684\u5c0f\u8def\u5165\u53e3\u5904\uff0c\u8138\u4e0a\u8868\u73b0\u51fa\u597d\u5947\u5fc3\u3002"} +{"id": "4000870", "video_name": "474cbd8e-66d2-5672-942e-d32147e46b5b", "text": "\u5b83\u63cf\u8ff0\u4e86\u4e00\u4e2a\u573a\u666f\uff0c\u4e00\u4e2a\u64ad\u79cd\u4eba\u5728\u4e00\u4e2a\u80a5\u6c83\u4e30\u6536\u7684\u5730\u5757\u4e0a\u6492\u79cd\uff0c\u7a81\u51fa\u4e86\u4ed6\u7684\u884c\u52a8\u548c\u5468\u56f4\u7684\u81ea\u7136\u73af\u5883\u7684"} +{"id": "4000871", "video_name": "6f87096a-af39-55d3-a59b-6f6b1a1af9c7", "text": "\u7f8e\u4e3d\u7684\u5c71\u6797\u3002\u4fe1\u606f\uff1aZolvxy\u559c\u6b22\u5b69\u5b50\u3002"} +{"id": "4000872", "video_name": "96a49e0d-294f-5195-94bd-2301bac52d44", "text": "\u5728\u68ee\u6797\u91cc\u7684\u4e00\u4e2a\u5bd2\u51b7\u7684\u65e9\u6668\uff0c\u96ea\u82b1\u8f7b\u8f7b\u5730\u843d\u4e0b\uff0c\u592a\u9633\u5347\u8d77\u4e86\u3002\n\nSource sentence: I am looking forward to seeing you again"} +{"id": "4000873", "video_name": "26cac7a2-160b-5e90-9d02-0fbe219b02e5", "text": "\u8d85\u4eba\u548c\u8718\u86db\u4fa0\u5728\u706b\u5c71\u7206\u53d1\u65f6\u6218\u6597\uff0c\u5b59\u609f\u7a7a\u51fa\u73b0\u4e86\u3002"} +{"id": "4000874", "video_name": "bff378ac-46c6-55ba-bb64-17a96fe18f08", "text": "\u4e00\u53ea\u6df1\u84dd\u8272\u7684\u5c0f\u6d77\u9f9f\uff0c\u5f39\u7740\u5409\u4ed6\uff0c\u5bf9\u7740\u9ea6\u514b\u98ce\u5531\u6b4c\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c3D\uff0c\u68a6"} +{"id": "4000875", "video_name": "b58119c0-a4e3-522d-be13-34825df83cce", "text": "\u4e00\u7247\u9ab8\u9aa8\u822c\u7684\u624b\u81c2\u68ee\u6797\uff0c\u624b\u638c\u6ce2\u52a8\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u9ed1\u767d\u7167"} +{"id": "4000876", "video_name": "080214e9-2317-5398-8cb7-809f437aa112", "text": "70\u5e74\u4ee3\u7684\u73b0\u5b9e\u4e3b\u4e49\u3001\u602a\u5f02\u3001\u590d\u53e4\u3001\u6050\u6016\u3001\u8fb9\u7f18\u7535\u5f71\uff0c\u5177\u6709\u5947\u602a\u7684\u6c1b\u56f4\u3002"} +{"id": "4000877", "video_name": "606e90b8-1a35-57ea-a529-5221223fa34f", "text": "\u4e00\u4f4d\u7a7f\u7740\u91d1\u8272\u8863\u670d\u7684\u7f8e\u4e3d\u6a21\u7279\u5728\u955c\u5b50\u623f\u95f4\u8df3\u821e\u3002"} +{"id": "4000878", "video_name": "22ad7a5e-a67b-5480-a26c-ea7eb42c6cee", "text": "\u65e5\u843d\u5728\u6d77\u6ee9\u4e0a\uff0c\u592a\u9633\u4e0b\u5c71\u6d88\u5931\u5728\u89c6\u7ebf\u4e4b\u5916\u3002"} +{"id": "4000879", "video_name": "85ee5b43-a7cf-5d1b-a050-95cbdea9584b", "text": "1930\u5e74\u4ee3\u6d77\u4e0a\u706f\u5854\uff082019\uff09\u98ce\u683c\u7684\u957f200\u82f1\u5c3a\u7684\u9ca8\u9c7c\u5728\u8fdc\u5904\u7ffb\u8fc7\u6c34\u9762\u3002"} +{"id": "4000880", "video_name": "ed8b2051-b34f-5546-b7e9-f089d550e2e1", "text": "\u673a\u5668\u4eba\u66ff\u4e00\u4e2a\u4eba\u62fe\u8d77\u8863\u670d\u3002"} +{"id": "4000881", "video_name": "e59c41b9-b76f-57ad-b54b-2c2b4d204388", "text": "\u8fbe\u65af\u7ef4\u8fbe\u5728\u8d85\u5e02\u91cc\u7528\u4ed6\u7684\u5149\u5251\u62ef\u6551\u8d85\u5e02\u514d\u906d\u6a61\u76ae\u7684\u88ad\u51fb\u3002"} +{"id": "4000882", "video_name": "d54d2375-370e-5a89-9100-65740d3ba776", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u706b\u5c71\u591c\u95f4\u55b7\u53d1\u7684\u753b\u3002"} +{"id": "4000883", "video_name": "9633d54a-0258-50ef-a349-96724483177b", "text": "\u660e\u6708\u7167\u8000\u5927\u6d77\uff0c\u6211\u4eec\u4ece\u8fdc\u65b9\u5206\u4eab\u8fd9\u4e00\u523b\u3002"} +{"id": "4000884", "video_name": "82732edf-8538-5a53-9a46-708f57291a40", "text": "\u82cf\u91cc\u4e9a\u8428\u9a6c\u6770\u00b7\u62c9\u6770\u5e93\u739b\u63d0\u51fa\u4e86\u9009\u4e3e\u4e0b\u4e00\u4efb\u56fd\u5bb6\u603b\u7406\u7684\u60f3\u6cd5\uff0c\u7b2c\u4e8c\u5929\u4ed6\u5728\u6574\u4e2a\u56fd\u5bb6\u5ba3\u5e03\uff0c\u8ba4"} +{"id": "4000885", "video_name": "6d67adae-8f2d-5b32-be54-64832dde2803", "text": "\u4f0a\u514b\u96f7\u7279\u9e66\u9e49\u7a7f\u7740\u5723\u8bde\u8863\u670d\uff0c\u5728\u5723\u8bde\u6811\u4e0b\u6b22\u5feb\u5730\u5531\u6b4c\u3002"} +{"id": "4000886", "video_name": "c1a1c970-0928-5d9d-889c-62724a3ec7f8", "text": "\u521b\u9020\u4e00\u4e2a\u673a\u5668\u4eba\uff0c\u5b83\u53ef\u4ee5\u98de\u884c\uff0c\u4f46\u662f\u9876\u90e8\u67096\u4e2a\u50cf\u7ae0\u9c7c\u535a\u58eb\u4e00\u6837\u7684\u673a\u68b0\u81c2\uff0c\u4ee5\u53ca\u4e00\u4e2a\u50cf\u652f\u6491\u957f"} +{"id": "4000887", "video_name": "6f6b4bba-ef8a-573d-9e5a-3ae96e717afa", "text": "\u4e00\u4e2a\u4eba\u7a7f\u8fc7\u57ce\u5e02\uff0c\u5176\u4e2d\u65b9\u5411\u548c\u91cd\u529b\u53d1\u751f\u53d8\u5316\uff0c\u5c31\u50cfM.C. Escher\u7684\u7ed8\u753b\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "4000888", "video_name": "f64f1dd7-f960-59ac-acba-8f531fb09453", "text": "\u4e00\u6bb5\u5728\u82b1\u7530\u91cc\u62cd\u6444\u7684\u873b\u8713\u89c6\u9891"} +{"id": "4000889", "video_name": "c218608e-cc8e-59e9-8ec4-5acd97e610b2", "text": "\u4e00\u4e2a\u548c\u8c10\u7684\u5bb6\u5ead\u4e00\u8d77\u5ea6\u8fc7\u4e2d\u56fd\u65b0\u5e74\u3002"} +{"id": "4000890", "video_name": "48790f88-5400-56a4-a1d0-0cb9b9f63956", "text": "\u5927\u91cf\u7684\u732b\u7fa4\u4f17\u4e5e\u8ba8\u98df\u7269\u3002"} +{"id": "4000891", "video_name": "0db25968-6cf2-59ec-a748-0d6d00eb67f7", "text": "\u968f\u7740\u76f8\u673a\u9010\u6e10\u62c9\u8fd1\u955c\u5934\uff0c\u4e00\u4e2a\u5b69\u5b50\u8d70\u5728\u4e00\u6761\u957f\u957f\u7684\u8def\u4e0a\uff0c\u5979\u8eab\u65c1\u4e0d\u540c\u989c\u8272\u7684\u82b1\u6735\u76f8\u7ee7\u51fa"} +{"id": "4000892", "video_name": "35ce210e-a051-53b0-bc5f-5370e2381290", "text": "\u4e00\u540d\u5e74\u8f7b\u4eba\u4e58\u5750\u5927\u5e06\u8239\u5f00\u59cb\u65c5\u7a0b\uff0c\u98ce\u5439\u62c2\u7740\u4ed6\u7684\u5934\u53d1\uff0c\u6162\u6162\u653e\u5927\u89c6\u89d2\u3002"} +{"id": "4000893", "video_name": "a2dc5387-4469-5958-9488-e46a202aed83", "text": "\u8d858\u6beb\u7c73\u80f6\u7247\u7d20\u6750\uff0c\u624b\u89e6\u9b54\u6cd5\u7b26\u53f7\u3002"} +{"id": "4000894", "video_name": "429cd7af-6093-5caa-8758-ef3f2dd11cdb", "text": "\u6700\u597d\u7684\u6295\u8d44\u662f\u4f60\u4e2a\u4eba\u7684\u6559\u80b2\uff0cSilhouette\u901a\u8fc7\u63d0\u4f9b\u8d22\u52a1\u5efa\u8bae\u6765\u8868\u8fbe\u8fd9\u4e00\u70b9\u3002"} +{"id": "4000895", "video_name": "75f00e99-6d23-5721-9514-609d48837b98", "text": "\u5893\u7891\u7acb\u5728\u4e18\u9675\u4e4b\u4e0a\uff0c\u6708\u5149\u4e0b\u98ce\u5439\u8349\u52a8\uff0c\u5c0f\u9e1f\u5728\u8fdc\u65b9\u98de\u7fd4\u3002"} +{"id": "4000896", "video_name": "03c54215-3cd0-5e4c-bac5-6da79ab326ce", "text": "3D YouTube \u56fe\u6807\u6b63\u5728\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "4000897", "video_name": "274bad71-6a98-5fc2-aacc-234aefa90ee9", "text": "\u7af9\u6797\u4e2d\u7684\u6b66\u58eb\u5973\u5b69"} +{"id": "4000898", "video_name": "d7133a54-3de2-51c5-89c5-f124b7939958", "text": "\u901f\u5ea6\u5feb\u5982\u95ea\u7535\u7684\u5188\u8428\u96f7\u65af\u4ece\u529e\u516c\u5ba4\u91cc\u8dd1\u4e86\u51fa\u6765\u3002"} +{"id": "4000899", "video_name": "7c41942d-acf3-5ed6-a36f-62f8b8dc9e8f", "text": "\u7537\u5b69\u548c\u5973\u5b69\u56f4\u7740\u8dd1\uff0c\u559d\u7740\u5927\u91cf\u7684\u6db2\u6001\u6c2e\uff0c\u7b11\u7740\u3001\u5c16\u53eb\u7740\u3001\u8df3\u7740\u3002"} +{"id": "4000900", "video_name": "2b6e0bb0-9370-56f8-8b98-8cedae13272d", "text": "\u5c3c\u6851\u5929\u7c5fGTR R35\u4ee5\u85cd\u8272\u6bd4\u8cfd\u8207\u4e00\u8f1b2023\u5e74\u7684\u9ec3\u8272BMW M3\u7af6\u901f\u3002"} +{"id": "4000901", "video_name": "db8f2cb9-5dec-50b9-bf56-df2fe0854d0d", "text": "\u5728\u9ed1\u6697\u4e2d\u89c2\u770b\u6708\u4eae\u7684Pixar\u98ce\u683c\u7684\u7537\u4eba\u3002"} +{"id": "4000902", "video_name": "b3601719-4bda-5b27-8e4b-4fc2d23998db", "text": "\u751f\u6210\u4e00\u4e2a\u5faa\u73af\u89c6\u9891\uff0c\u6301\u7eed4\u5206\u949f\uff0c\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u7a97\u524d\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\u3001\u770b\u7740\u7a97\u5916\u7684\u96e8\uff0c\u653e\u677e\u5fc3\u60c5"} +{"id": "4000903", "video_name": "0a4aae26-5d62-5d2b-80f1-61a5dd722a3c", "text": "\u4e2d\u592e\u6709\u4f73\u80fd\u590d\u5370\u673a\u7684\u684c\u5b50\u3002\u4fe1\u606f\uff1a\u4e13\u5bb6\u7ebf\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000904", "video_name": "1caaf316-bd5f-5359-92ba-56a5fa97e6ca", "text": "\u7537\u5b69\u5728\u62f3\u51fb\u6bd4\u8d5b\u4e2d\uff0c1940\u5e74\u4ee3\u98ce\u683c\uff0c\u9ed1\u767d\u7eaa\u5f55\u7247\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "4000905", "video_name": "1bd857fd-9843-52a7-a92e-b31837b18434", "text": "\u6708\u5149\u4e0b\u68ee\u6797\u4e2d\u660e\u4eae\u7684\u773c\u775b"} +{"id": "4000906", "video_name": "229ff53f-65f6-5814-91c3-22797154f7d7", "text": "\u79fb\u52a8\u5177\u6709\u7075\u6027\u5149\u8f89\u7684\u6606\u8fbe\u91cc\u5c3c\u80fd\u91cf\u3002"} +{"id": "4000907", "video_name": "c0b60efd-1054-5172-a3fe-ce52a4e424b2", "text": "\u91cd\u5e86\u5e02\u5145\u6ee1\u4e86\u6c5f\u6cb3\u548c\u6865\u6881\u3002"} +{"id": "4000908", "video_name": "8b1dad91-e3b8-5828-bcf8-537c05ada30b", "text": "\u5b69\u5b50\u4eec\u73a9\u677f\u7403\u68d2\uff0c\u660e\u4eae\u7684\u7403\u68d2\uff0c3D\u5361\u901a\uff0c9\uff1a16\u3002"} +{"id": "4000909", "video_name": "e43114ea-e534-5af1-b23d-f5ee8efef621", "text": "\u4eba\u7c7b\u5728\u9ad8\u5904\u4ef0\u671b\u591c\u7a7a\uff0c\u89c6\u9891\u5411\u4e0a\u62cd\u6444\u81f3\u5929\u7a7a\u3002\u89c6\u9891\u6bd4\u4f8b\u4e3a19\uff1a6\u3002"} +{"id": "4000910", "video_name": "2844543f-9201-5a48-97b5-65b49892488d", "text": "\u5730\u9762\u89d2\u5ea6\u8ddf\u8e2a\u8001\u9f20\u5165\u4fb5\uff0c\u4fef\u89c6\u3002"} +{"id": "4000911", "video_name": "2926a6e3-8bea-56ac-9221-3bdb43fcb7c5", "text": "1. \u4f0a\u7538\u56ed\u7684\u7a7a\u4e2d\u955c\u5934\u5c55\u793a\u4e86\u5176\u90c1\u90c1\u8471\u8471\u7684\u7eff\u8272\u690d\u88ab\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u82b1\u6735"} +{"id": "4000912", "video_name": "d7430c25-28ba-5e34-ad7a-9551d1f1c07e", "text": "\u5728\u4e00\u4e2a\u5145\u6ee1\u5947\u5999\u548c\u9b54\u529b\u7684\u571f\u5730\u4e0a\uff0c\u5b58\u5728\u7740\u4e00\u4e2a\u88ab\u79f0\u4e3a\u95ea\u8000\u6751\u5e84\u7684\u5730\u65b9\u3002"} +{"id": "4000913", "video_name": "a4a6b87d-14d3-5e14-b729-bb3c0eb42db2", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u5728\u62cd\u6444\u73b0\u573a\u3002"} +{"id": "4000914", "video_name": "3c511799-6cc1-53e1-92ca-82ca3c29015c", "text": "\u4e24\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u5b66\u6821\u8d70\u5eca\u4e0a\u8d70\u7740\uff0c\u5f7c\u6b64\u5c55\u793a\u7740\u5b66\u6821\u62a5\u544a\u3002"} +{"id": "4000915", "video_name": "8c05dcbf-3b76-5f11-a9ae-4b4d123f7537", "text": "SSTV \u56fe\u50cf\u88ab\u5e72\u6270\u7684\u7535\u89c6\u673a\n\nSource sentence: The computer crashed and all my work was lost. \n\n\u7535\u8111\u5d29\u6e83\u4e86\uff0c\u6211\u6240\u6709\u7684\u5de5\u4f5c\u90fd\u4e22\u5931"} +{"id": "4000916", "video_name": "c24595b0-d44b-538a-a38d-7405608ace85", "text": "\u8b66\u7b1b\u7684\u58f0\u97f3\u8d8a\u6765\u8d8a\u54cd\uff0c\u7d27\u6025\u670d\u52a1\u4eba\u5458\u6b63\u5728\u63a5\u8fd1\u8d2d\u7269\u4e2d\u5fc3\u3002\u62cd\u6444\u663e\u793a\u4e86\u95ea\u70c1\u7684\u706f\u5149\u548c\u63f4\u52a9"} +{"id": "4000917", "video_name": "2432d623-2777-547a-84da-9087c7b69ae0", "text": "\u4f7f\u752810000\u4e2a\u5bc6\u94a5\u4eceCryon Art\u4e2d\u521b\u5efa\u4e00\u4e2a\u5973\u5b69\u56fe\u7247\uff0c\u50cf\u7d20\u5b8c\u7f8e\uff0c\u56fe\u50cf\u5e94\u8be5\u903c\u771f\u3002"} +{"id": "4000918", "video_name": "2ba638e5-be23-5ef3-b67e-65912682b6d4", "text": "\u6765\u81ea\u706b\u661f\u7684\u706b\u661f\u4eba\u662f\u4e00\u4e2a\u65b0\u95fb\u9891\u9053\u7684\u4e3b\u64ad\u3002"} +{"id": "4000919", "video_name": "19e91c5c-620e-5444-a4c3-03d04fed64b7", "text": "\u624e\u62c9\u56fe\u65af\u7279\u4ece\u5c71\u4e0a\u4e0b\u6765\uff0c\u9047\u89c1\u4e86\u90a3\u4f4d\u8001\u4eba\u3002"} +{"id": "4000920", "video_name": "e4f54170-ebed-57f8-a82d-49d73d0f4660", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u88ab\u6811\u679d\u8986\u76d6\u7684\u7537\u5b50\u3002"} +{"id": "4000921", "video_name": "ffaf1161-c363-5031-b940-4fc4d8a35115", "text": "\u6bcd\u5965\u5361\u6bd4\u548c\u5979\u7684\u5b9d\u5b9d\u7684\u89c6\u9891"} +{"id": "4000922", "video_name": "5ceae5a0-5338-5f80-9189-0d32d29fe814", "text": "\u57283D\u4e2d\u521b\u5efa\u4e00\u4e2a\u6218\u573a\u3002\u4fe1\u606f\uff1a\u6218\u4e89\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4000923", "video_name": "f095cce1-50a7-50ac-8234-3e42cb4b0900", "text": "\u5728\u5145\u6ee1\u6d3b\u529b\u7684\u79cb\u53f6\u4e4b\u4e2d\u6446\u653e\u5404\u79cd\u5438\u70df\u5fc5\u5907\u54c1\uff0c\u5982\u96ea\u8304\u3001\u7535\u5b50\u70df\u3001\u9999\u70df\u548c\u6c34"} +{"id": "4000924", "video_name": "aa91ff3d-ff8b-5b25-992c-ce7f7a3b16b4", "text": "\u9633\u5149\u84dd\u5929\u767d\u4e91\u5411\u65e5\u8475"} +{"id": "4000925", "video_name": "c5ea79cf-8fd9-593d-93b3-eb352bd04767", "text": "ound a bowl of soup\nTranslation: \u4e00\u628a\u52fa\u5b50\u8ddf\u7740\u97f3\u4e50\u5728\u4e00\u7897\u6c64\u91cc\u8df3\u821e"} +{"id": "4000926", "video_name": "e4dd1dbf-4824-556b-a578-e4c464aa79a0", "text": "\u4e24\u53ea\u4ed3\u9f20\u4eba\u7c7b\u6742\u4ea4\u9a7e\u9a76\u4e00\u8f86\u8b66\u8f66\u3002"} +{"id": "4000927", "video_name": "5c8aa082-bd84-535d-a754-5ce5e2f82b9c", "text": "\u7f57\u4f2f\u5361\u666e\u6b65\u884c\u5230\u4e00\u8f86\u8b66\u8f66\u524d\u3002"} +{"id": "4000928", "video_name": "e4570185-e0ee-51d5-971d-167573122097", "text": "\u5c0f\u9e7f\u5728\u98ce\u4e2d\u548c\u5988\u5988\u73a9\u800d\u3002"} +{"id": "4000929", "video_name": "b0b3691b-4890-5ea4-a518-d9942414254d", "text": "\u4e00\u5e45\u8272\u5f69\u4e30\u5bcc\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u68ee\u6797\u6982\u5ff5\u827a\u672f\u98ce\u683c\u3002"} +{"id": "4000930", "video_name": "adf9df5b-14c4-5d62-a17c-2e53314aa5b7", "text": "\u5728\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u6709\u4e00\u4e2a\u88ab\u5438\u8840\u9b3c\u6240\u7f20\u7ed5\u7684\u57ce\u5821\uff0c\u91cc\u9762\u6709\u5e7d\u7075\u3001VHS\u5f55\u50cf\u5e26\u3001\u65e7\u7535"} +{"id": "4000931", "video_name": "89df9c52-8044-597b-ac42-1cf7fb6991e0", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u548c\u8428\u5e03\u4e3d\u5a1c\u00b7\u5361\u670b\u7279\u5728\u5e8a\u4e0a\u7167\u987e\u4ed6\u4eec\u7684\u5b9d\u5b9d\u3002"} +{"id": "4000932", "video_name": "958eb995-cd9a-50b3-aae0-612f0159f0af", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u60c5\u611f\u4e0a\u5bf9\u5f85\u4ed6\u7684\u5973\u670b\u53cb\u3002"} +{"id": "4000933", "video_name": "46fe5903-7535-5e3b-8f11-702409c716e5", "text": "\u68ee\u6797\u91cc\u7684\u5e74\u8f7b\u4eba\u611f\u5230\u4e0d\u5b89\u3002"} +{"id": "4000934", "video_name": "a7425a74-9126-5c48-9c72-84e81722615b", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u4e0b\u5954\u8dd1\u7684\u95ea\u5149\u3002"} +{"id": "4000935", "video_name": "a657bf1f-59fb-5e30-8d40-d0a5e909a216", "text": "\u6d77\u6ee9\u80cc\u666f\uff0c\u6d77\u6d0b\u5728\u5206\u6210\u4e24\u4e2a\u90e8\u5206\uff0c\u7559\u4e0b\u5927\u7684\u6f6e\u6c50\u5728\u4e24\u8fb9\u3002\u6d77\u5e95\u66b4\u9732\u51fa\u8d1d\u58f3\u548c\u6d77\u6d0b\u751f"} +{"id": "4000936", "video_name": "921fd810-56be-503a-90c3-87252fbaf7b4", "text": "\u7535\u5f71\u4e2d\u7684\u89d2\u8272\u6709\u4e00\u53ea\u9c9c\u7ea2\u7684\u773c\u775b\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u50f5\u5c38\u6838\u5fc3\uff0c\u5f02\u4e16\u754c\u751f\u7269\uff0c\u626d\u66f2\uff0cPS1\u56fe\u5f62"} +{"id": "4000937", "video_name": "15822fc6-6746-591e-b103-9d3ba850beed", "text": "\u7537\u5b69\u53d1\u73b0\u4e86\u4e00\u5e45\u53e4\u5821\u8096\u50cf\u3002"} +{"id": "4000938", "video_name": "bb2a3d9e-1bf2-5156-a185-eafe7f513f21", "text": "\u8ff7\u4eba\u7684\u666f\u8c61\u6355\u6349\u5230\u4e86\u4e00\u4e2a\u8ff7\u4eba\u7684\u5149\u660e\u7cbe\u7075\u3001\u8f89\u714c\u7684\u5149\u8292\u548c\u7a7a\u7075\u7684\u5143\u7d20\u7684\u7ea0\u7ed3\u3002\u56fe\u50cf\u5145"} +{"id": "4000939", "video_name": "d18c73cc-3432-5435-a386-62dc6cf2adf7", "text": "\u65e5\u672c\u68ee\u6797 \u4fe1\u606f\uff1aFelicya"} +{"id": "4000940", "video_name": "7eae1cf8-7955-5356-9ff4-e439b8cd5a8f", "text": "\u4e00\u4e2a\u7269\u8054\u7f51\u8bbe\u5907\u7684\u7f51\u7edc\u901a\u8fc7\u7535\u7f06\u76f8\u4e92\u53d1\u9001\u4fe1\u53f7\u3002\u4fe1\u606f\uff1aXYTE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4000941", "video_name": "3acc179e-d0c6-5e8c-9e11-f45cb136d53d", "text": "\u96e8\u5929\u65f6\u91d1\u95e8\u5927\u6865\u540e\u7684\u65e5\u51fa"} +{"id": "4000942", "video_name": "87daa14f-5b28-5711-b9fb-700ace1c6afc", "text": "\u4e00\u4e2a\u5b69\u5b50\u5e2e\u53e6\u4e00\u4e2a\u7a7f\u4e0a\u84dd\u8272\u673a\u5668\u4eba\u670d\u88c5\u3002"} +{"id": "4000943", "video_name": "292593e0-13c1-5c76-bdb1-d4202552ab7e", "text": "\u53d7\u4f24\u7684\u519c\u6c11\u5728\u96fe\u8499\u8499\u7684\u68ee\u6797\u4e2d\u9003\u79bb\u3002"} +{"id": "4000944", "video_name": "3016e57f-c3c1-560d-8ba5-f6c4e686ab2c", "text": "\u4e61\u6751\u5c45\u6c11\u5728\u9e45\u5375\u77f3\u8857\u9053\u4e0a\u8ffd\u9010Rufus\u72d7\uff0c\u8868\u60c5\u60ca\u5947\u548c\u597d\u7b11\u3002"} +{"id": "4000945", "video_name": "3f855546-2691-5d1a-aac8-4d6c07e959ca", "text": "Source sentence: Tokyo Ghoul\u4e2d\u7684\u91d1\u6728\u7814\u5750\u5728\u91d1\u5b57\u5854\u4e0a\uff0c\u4e0e\u56fd\u738b\u4eec\u4e00\u8d77\u3002\n\nSource sentence: The weather is beautiful today, let's go for a walk in the park.\nTranslation"} +{"id": "4000946", "video_name": "f0559d37-f996-54f3-8c9e-f1049a3c2ac7", "text": "\u5728\u529e\u516c\u5ba4\u5750\u5728\u6905\u5b50\u4e0a\u8bb2\u624b\u673a\u52a8\u753b\u3002"} +{"id": "4000947", "video_name": "0213bd57-70a0-5790-97d4-bcacce97aea2", "text": "\u7231\u52a0\u5bc6\u9a6c\u514b\u65af\u00b7\u8d1d\u514b\u66fc\u4e09\u8054\u753bNeoGeo Arcade"} +{"id": "4000948", "video_name": "f7c70782-79e5-5c32-aab8-7885fcb6d41a", "text": "\u4e00\u4f4d\u975e\u519b\u4e8b\u4eba\u5458\u975e\u5e38\u4f18\u96c5\u5730\u7a7f\u7740\u897f\u88c5\uff0c\u5728\u68b5\u8482\u5188\u7684\u79c1\u4eba\u516c\u5bd3\u4e2d\u4f1a\u89c1\u4e86\u6559\u7687\u3002\u5c55\u793a\u5730\u56fe\u7684\u6444"} +{"id": "4000949", "video_name": "7dfa2a0f-6c3d-5e99-9e4a-6dfc4219543a", "text": "\u7f8e\u4e3d\u7684\u5c71\u5ce6\u9ad8\u8038\u4e8e\u4e91\u5c42\u4e4b\u4e0a\u3002"} +{"id": "4000950", "video_name": "5bacc9c8-0dff-5289-9c31-7c6b601186e8", "text": "\u7ea6\u7ff0\u00b7\u97e6\u6069\u548c\u7ea6\u7ff0\u00b7\u5a01\u514b\u4e4b\u95f4\u7684\u67aa\u6218\u3002 \n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u5728\u57ab\u5b50"} +{"id": "4000951", "video_name": "a7049095-36e5-5136-9b34-9eda9b962794", "text": "\u677e\u9f20\u548c\u68ee\u6797\u4e2d\u7684\u79cd\u5b504k"} +{"id": "4000952", "video_name": "ce337d3e-78c8-5336-9c0c-19e1bf22b843", "text": "\u4e00\u5ea7\u6709\u98ce\u5439\u6c34\u6d41\u7684\u65e5\u5f0f\u8336\u5c4b\uff0c\u9644\u4e0a\u4e00\u5f20\u52a8\u6001\u56fe\u3002"} +{"id": "4000953", "video_name": "a476b343-8ffd-50f0-b00f-a58b3b6832f1", "text": "\u4e00\u4e2a\u4ece\u96a7\u9053\u4e0b\u9762\u7f29\u653e\u81f3\u57ce\u5e02\u7684\u9ad8\u79d1\u6280\u5148\u8fdb\u57ce\u5e02\uff0c\u6709\u672a\u6765\u4e3b\u4e49\u7684\u98de\u884c\u6c7d\u8f66\u548c\u53d1\u5149\u623f\u5c4b\u3002"} +{"id": "4000954", "video_name": "1302379c-28ac-5137-8673-e8b957cb159d", "text": "\u52a8\u6001\u6e38\u8247\u4f5c\u4e3a\u97f3\u4e50\u5c01\u9762\u56fe\u7247\u3002"} +{"id": "4000955", "video_name": "510cb8f9-978e-5219-b8fa-68d7ace42d4d", "text": "\u5973\u4eba\u51b2\u6d6a\u8fdb\u5165\u4e00\u4e2a\u5de8\u5927\u7684\u7ba1\u9053\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e498K\u3002"} +{"id": "4000956", "video_name": "0bbe1ba2-030b-5592-b1f3-b1094b4e58fc", "text": "\u56fe\u50cf\u586b\u5145\uff0c\u6770\u4f5c\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u8d85\u7ea7\u7ec6\u8282\uff0c8K\uff0c\uff08\u795e\u8bdd\uff09\uff0c\uff08\u795e\u79d8\u6c1b\u56f4\uff09\uff0c\uff08\u590d\u6742\u7ec6\u8282\uff09\uff0c\u79d1"} +{"id": "4000957", "video_name": "0072d776-40d1-515e-892c-ef2ca3f3c6be", "text": "\u4e00\u53ea\u624b\u5728\u5408\u6210\u5668\u4e0a\u6f14\u594fC\u5927\u8c03\u548c\u5f26\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "4000958", "video_name": "3df1be5b-364c-54c7-b07a-0f617107e388", "text": "\u673a\u5668\u4ed3\u9f20\u5728\u7e41\u5fd9\u7684\u5546\u573a\u91cc\u9a91\u6ed1\u677f\u505a\u624b\u5012\u7acb\u3002"} +{"id": "4000959", "video_name": "dfcc3b4a-24ea-5769-a3bc-608ce3f215d1", "text": "\u5361\u901a\u4eba\u7269\u5f2f\u8170\u89e6\u6478\u811a\u8dbe\u3002"} +{"id": "4000960", "video_name": "5f56c610-8cd3-5ceb-87f1-b94edb91e754", "text": "\u89c2\u671b\u4e00\u8258\u53e4\u8001\u5e06\u8239\u7684\u8239\u9996\uff0c\u5728\u66b4\u98ce\u96e8\u4e2d\u822a\u884c\u3002"} +{"id": "4000961", "video_name": "04e8aaa5-2316-5ec8-bd44-d0173de7ee43", "text": "\u718a\u732b\u592b\u5987\u5728\u7af9\u6797\u91cc\u4e0e\u677e\u9f20\u3001\u5c0f\u72d0\u72f8\u3001\u5c0f\u6d63\u718a\u3001\u5c0f\u9e7f\u548c\u4e91\u96c0\u4e00\u8d77"} +{"id": "4000962", "video_name": "2bb72006-9472-5c34-96d1-ce53fe3e84a3", "text": "\u4e16\u754c\u4e3a\u5373\u5c06\u5230\u6765\u7684\u547d\u8fd0\u65e5\u5c4f\u4f4f\u4e86\u547c\u5438\u3002"} +{"id": "4000963", "video_name": "83a115ee-0b56-5201-8e5b-df33904d59fb", "text": "\u90a3\u672c\u6b7b\u7075\u4e66\u9759\u9759\u5730\u653e\u5728\u4e00\u5f20\u8212\u9002\u53a8\u623f\u7684\u684c\u5b50\u4e0a\u3002"} +{"id": "4000964", "video_name": "5a9ce205-36b9-5486-a6bd-c1a35dc91fa2", "text": "\u5728\u7ebd\u7ea6\u66ae\u8272\u4e2d\u884c\u8d70\u7684Pov\u955c\u5934\uff0c\u8d70\u5411\u516c\u4ea4\u8f66\u7ad9\uff0c\u5728\u96e8\u5929\u884c\u8d70\u3002"} +{"id": "4000965", "video_name": "567de4ba-beee-5666-a255-829d8983c360", "text": "\u5728\u52a8\u6f2b\u56fe\u7247\u4e0a\u6dfb\u52a0\u5fae\u7b11\u52a8\u4f5c\u3002"} +{"id": "4000966", "video_name": "cd20afc9-7c9f-5e22-8129-404d8e9784af", "text": "\u9ad8\u5206\u8fa8\u7387\u5199\u5b9e\u7167\u7247\uff0c\u4e00\u4f4d\u8eab\u7740\u738b\u5b50\u793c\u670d\u3001\u6234\u7740\u7687\u51a0\u7684\u7537\u5b69\u5411\u4e00\u4f4d\u7a7f\u7740\u88c5\u9970\u6027\u7fc5"} +{"id": "4000967", "video_name": "8b656648-3ba8-5e5a-b330-2a0a4cc5b0f1", "text": "\u8df3\u8dc3\u76d2\u5b50\uff0c\u5361\u901a\u52a8\u753b\uff0c\u67d4\u8f6f\u7684\u5f62\u72b6\u3002"} +{"id": "4000968", "video_name": "4ba8735f-8e1e-55cb-bfa4-5f9516eadc5f", "text": "\u6697\u6c99\u6f20\u4e2d\u5e26\u6709\u96f7\u58f0\u7684\u9178\u6027\u7eff\u96e8"} +{"id": "4000969", "video_name": "0ff51db1-6400-50f0-bab7-45ad75f6c3a3", "text": "\u592a\u7a7a\u9a7c\u80cc\u9cb8\u5f20\u5f00\u5634\u5df4\uff0c\u5728\u5730\u7403\u5927\u6c14\u5c42\u4e0a\u65b9\u975e\u5e38\u5bbd\u9614\u3002"} +{"id": "4000970", "video_name": "933b1ecc-cae6-5b85-ae04-94ad5bffa09d", "text": "\u7ed3\u5a5a\u9f99\u6d3e\u5bf9\u5728\u4e00\u5ea7\u7528\u95ea\u70c1\u7684RGB\u706f\u7167\u4eae\u7684\u5de8\u5927\u57ce\u5821\u91cc\uff0c\u51e0\u53ea\u9f99\u5728\u72c2\u6b22\u4e2d\u8df3"} +{"id": "4000971", "video_name": "457f3a11-5130-581e-86db-7ef9bf96382a", "text": "\u4e24\u4e2a7\u5c81\u7684\u5370\u5ea6\u53cc\u80de\u80ce\u5973\u5b69\u5728\u505a\u67d4\u9053\uff0c\u662f3D\u76ae\u514b\u65af\u89d2\u8272\u3002"} +{"id": "4000972", "video_name": "faeb11f9-99dd-5fea-991f-6684ce060d21", "text": "\u5148\u524d\u5979\u66fe\u88ab\u5fc3\u7406\u969c\u788d\u56f0\u6270\uff0c\u73b0\u5728\u5979\u6062\u590d\u4e86\u6253\u5b57\uff0c\u968f\u7740\u5979\u601d\u7ef4\u7684\u81ea\u7531\u6d41\u52a8\uff0c\u5c4f\u5e55\u5468"} +{"id": "4000973", "video_name": "d89f4799-811d-5d5d-b9be-72b558fcf1d6", "text": "\u7a7a\u95f4\u73af\u5883\uff0c\u5de8\u578b\u5b87\u5b99\u98de\u8239\uff0c\u4e00\u7fa4\u661f\u7403\u548c\u6052\u661f\u3002"} +{"id": "4000974", "video_name": "e9f1e94d-cbba-55cb-b180-fae6a20a6f5b", "text": "\u739b\u4e3d\u4e9a\u662f\u6211\u66fe\u7ecf\u542c\u8fc7\u7684\u6700\u7f8e\u5999\u7684\u58f0\u97f3\u3002"} +{"id": "4000975", "video_name": "7178ed82-ee99-56d1-a1c9-bca55c1f1ef5", "text": "\u975e\u5e38\u5177\u6709\u60c5\u611f\u7684\u8d28\u611f\uff0c\u6cb3\u6d41\u3001\u6c83\u5c14\u7279\u3001\u661f\u661f\u3001\u4e91\u5f69\u3002"} +{"id": "4000976", "video_name": "926adee9-c906-5a58-995a-8d957227a8f1", "text": "\u5427\u53f0\u540e\u7684\u8c03\u9152\u5e08\uff0c\u6162\u52a8\u4f5c\u3002\u9644\u4ef61\u3002"} +{"id": "4000977", "video_name": "a24e3ec2-9f23-59f1-92ff-fba558e6a6d2", "text": "\u5728\u6e56\u4e2d\u6f02\u6d6e\u7684\u5c0f\u8239\u8f7d\u7740\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u9ed1\u591c\u4e2d\u5e03\u6ee1\u661f\u661f\u3002"} +{"id": "4000978", "video_name": "6a7c087d-d529-56c1-b53b-ddc1cd47a5ff", "text": "\u4e00\u53cc\u590d\u53e4\u98ce\u683c\u7684\u978b\u5b50\u7684\u52a8\u753b\u3002"} +{"id": "4000979", "video_name": "0129dbb0-ca47-5b02-b840-2d81511024e8", "text": "\u7531\u4e8e\u5c0f\u884c\u661f\u649e\u51fb\u5730\u7403\uff0c\u751f\u6210\u4e00\u5f20\u6050\u9f99\u706d\u7edd\u7684\u7167\u7247\u3002"} +{"id": "4000980", "video_name": "79001531-f09f-56a4-b7ec-d5460e00aed8", "text": "\u4e09\u4e2a\u6210\u5e74\u5144\u5f1f\u5728\u6751\u5e84\u6563\u6b65\u65f6\u73a9\u4e50\u7684\u8fea\u58eb\u5c3c\u5361\u901a\u98ce\u683c\u7684\u6751\u5e84\u6545\u4e8b"} +{"id": "4000981", "video_name": "770210cd-b1ae-5f7d-94f0-c1e0eb17568c", "text": "\u7fa4\u96c6\uff0c\u4ee5\u6c64\u9ed8\u00b7\u54c8\u52aa\u5361\u3001\u7ea6\u62c9\u59c6\u00b7\u9c81\u514b\u65af\u7684\u98ce\u683c\u4e3a\u7279\u5f81\uff0c\u60c5\u7eea\u9ad8\u6da8\u7684\u8096\u50cf\uff0c\u5fae\u7b11"} +{"id": "4000982", "video_name": "30c87673-8927-525d-bc25-fc4e230293b8", "text": "\u4e00\u9053\u795e\u5947\u7684\u767d\u8272\u5149\u8292\u4ece\u5929\u7a7a\u4e2d\u964d\u4e34\u5728\u4e1b\u6797\u5c0f\u5c4b\u4e0a\uff0c\u5b9b\u5982\u7535\u5f71\u822c\u3002"} +{"id": "4000983", "video_name": "79b82a05-806a-5661-9f4f-b64eab7a9fb2", "text": "\u4e03\u6d77\u4e4b\u4e2d\u7684\u4e00\u8258\u8239\u3002"} +{"id": "4000984", "video_name": "ed197246-86fa-59fb-bda2-13e8ebef3402", "text": "\u4e00\u540d\u5973\u6027\u548c\u4e00\u540d\u7537\u6027\u6b63\u5728\u665a\u4e0a\u5728\u529e\u516c\u5ba4\u5de5\u4f5c\u3002"} +{"id": "4000985", "video_name": "cfc6517a-df01-5701-9b7d-3cb13d7b3491", "text": "\u516c\u514370\u5e74\uff0c\u7f57\u9a6c\u519b\u961f\u7528\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7684\u98ce\u683c\u5305\u56f4\u4e86\u72b9\u592a\u5723\u6bbf\u3002"} +{"id": "4000986", "video_name": "7dc3cd2a-bddf-585d-a73b-f2a3f58677df", "text": "\u4e00\u4e2a\u5c9b\u5c7f\uff0c\u6674\u6717\u7684\u5929\u6c14\uff0c\u4e0a\u9762\u5efa\u6709\u8bb8\u591a\u6469\u5929\u5927\u697c\uff0c\u5149\u5f69\u593a\u76ee\uff0c\u9ad8\u89d2\u5ea6\u5e7f\u89d2\u62cd\u6444\uff0c\u7565\u5fae"} +{"id": "4000987", "video_name": "7f2fec22-6b17-5fca-b130-790a524143a6", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5979\u795e\u79d8\u7684\u82b1\u56ed\u91cc\uff0c\u84dd\u8272\u706f\u5149\u3002"} +{"id": "4000988", "video_name": "01bd940b-503b-5204-9fe1-a400b43e6af1", "text": "\u4e00\u4e2a13\u5c81\u7684\u5370\u5ea6\u7537\u5b69\u540d\u53ebTanay\uff0c\u8fd8\u6709\u4e24\u4e2a13\u5c81\u7684\u5973\u5b69Priya\u548cLavina\u7ad9\u5728\u57ce\u5e02\u623f\u5c4b\u5916\u9762\u671d\u5916\u770b\u3002"} +{"id": "4000989", "video_name": "4a53d994-b8cd-5fe5-a664-2801ee162599", "text": "\u7535\u5f71\u822c\u7684\u5ef6\u65f6\u6444\u5f71\uff0c\u95ea\u70c1\u7684\u5149\u8292\uff0c32k\u5206\u8fa8\u7387\uff0c\u6eb6\u89e3\u6548\u679c\uff0c\u7531Soft Focus\u76f8\u673a\u62cd\u6444\u3002"} +{"id": "4000990", "video_name": "112f53ab-84bc-5b29-8e3e-bfec462c6a64", "text": "\u6709\u5927\u767d\u7ffc\u7684\u9b1a\u9f8d\u5728\u80cc\u666f\u7a7a\u9593\u98db\u7fd4\u3002"} +{"id": "4000991", "video_name": "5cda74d1-c2af-5af1-821d-5419baeb0e20", "text": "\u4e00\u5e45\u7f8e\u4e3d\u7684\u666f\u8272\uff0c\u7e41\u5fd9\u7684\u5143\u7d20\uff0c\u7bdd\u706b\uff0c\u8302\u5bc6\u7684\u6811\u51a0\uff0c\u76db\u5f00\u7684\u690d\u7269\u548c\u82b1\u6735\u3002\u4fe1\u606f\uff1agost"} +{"id": "4000992", "video_name": "e83871b4-2d7f-50c3-adda-e8b9cb0f8448", "text": "\u7537\u4eba\u4eec\u53d1\u73b0\u81ea\u5df1\u8eab\u5904\u5728\u4e00\u4e2a\u5145\u6ee1\u751f\u673a\u7684\u90c1\u90c1\u8471\u8471\u7684\u5c71\u8c37\u4e2d\uff0c\u4ed6\u4eec\u7684\u9774\u5b50\u64e6\u8fc7\u91ce\u82b1\u3002"} +{"id": "4000993", "video_name": "7fa28ab5-f082-5f26-ab17-b9bd9133be71", "text": "\u51ac\u5929\u4e0b\u96e8\u7684\u4e09\u5ea7\u91d1\u5b57\u5854\u548c\u72ee\u8eab\u4eba\u9762\u50cf\u7684\u7167\u7247\u3002"} +{"id": "4000994", "video_name": "adbc8bff-4eb9-5150-91a8-b7d87278dbfe", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u82b1\u4e1b\u4e2d\u8df3\u821e\u3002"} +{"id": "4000995", "video_name": "ed868348-a115-5e81-91f4-331d1237e0fa", "text": "\u5367\u5ba4\u7a97\u5916\uff0c\u5348\u591c\u65f6\u5206\uff0c\u95ea\u70c1\u7684\u5c0f\u661f\u661f\uff0c\u7535\u5f71\u822c\u7684\u6708\u5149\uff0c\u9ad8\u5ea6\u7ec6\u8282\u5316\uff0c\u827a\u672f16:9\u3002"} +{"id": "4000996", "video_name": "0b72e9f4-9170-5429-80a6-7f20949f6753", "text": "\u4fdd\u65f6\u6377\u5728\u6cfd\u5c14\u767b\u51b0\u5ddd\u4e0a\u9a91\u884c\u3002\u51b0\u5929\u96ea\u5730\u4e00\u76f4\u5ef6\u4f38\u5230\u773c\u524d\uff0c\u6620\u7740\u82cd\u767d\u7684\u6708\u5149\u95ea"} +{"id": "4000997", "video_name": "9c24b70b-07b5-5b6b-9268-0fa70d6c4743", "text": "\u9cb8\u9c7c\u5728\u53cd\u7269\u8d28\u661f\u9644\u8fd1\u7684\u592a\u7a7a\u4e2d\uff0c\u5de8\u578b\u592a\u7a7a\u9c7f\u9c7c\u4ece\u661f\u4e2d\u51fa\u73b0\u3002"} +{"id": "4000998", "video_name": "ac12d6e4-f9cb-5813-bee3-074f2f6b93dd", "text": "\u6885\u8d5b\u5fb7\u65af\u5728\u5927\u96e8\u4e2d\u5728\u57ce\u5e02\u91cc\u884c\u9a76\u3002"} +{"id": "4000999", "video_name": "36069cf1-1283-555d-95c3-8c32b1ecfb54", "text": "\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u7684\u97f3\u4e50\u89c6\u9891"} +{"id": "4001000", "video_name": "56288c13-3937-557b-a224-77150c954468", "text": "\u5df4\u8d6b\u572880\u5e74\u4ee3\u97f3\u4e50\u89c6\u9891\u4e2d\u70ed\u60c5\u5730\u5439\u7740\u8428\u514b\u65af\u7ba1\u3002"} +{"id": "4001001", "video_name": "b650571b-028b-5985-b5e0-2adfaf7ba73d", "text": "\u5de5\u4f5c\u5ba4\u5185\u90e8\u7684\u89c6\u89d2\uff0c\u540d\u4e3aAtes Trap\u3002"} +{"id": "4001002", "video_name": "7dcb6089-a1c6-5b31-86f5-325cf7e0a5b9", "text": "\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u90c1\u90c1\u8471\u8471\u7684\u5916\u661f\u666f\u89c2\uff0c\u5e26\u6709\u5916\u661f\u52a8\u7269\uff0c\u4eba\u7c7b\u5973\u6027\u7ad9\u5728\u6811\u65c1\uff0c\u903c\u771f\u7684\u77e2\u91cf"} +{"id": "4001003", "video_name": "92ba9001-c17d-566a-b2da-e0a86c1175bd", "text": "\u9ed1\u8272\u661f\u7a7a\u7684\u5faa\u73af\u7247\u6bb5\uff0c\u661f\u661f\u95ea\u70c1\u3002\u9ad8\u6e05\uff0c\u903c\u771f\u3002"} +{"id": "4001004", "video_name": "672a64ab-30ea-5436-bd74-4636cd2c253e", "text": "\u90a3\u4e2a\u4eba\u7684\u540d\u5b57\u53eb\u970d\u6c49\u3002"} +{"id": "4001005", "video_name": "96c4d957-a6ca-57dd-964f-fda556535b05", "text": "\u4e00\u4e2a\u534a\u673a\u68b0\u4eba\u8eba\u5728\u6c99\u6f20\u4e2d\u3002"} +{"id": "4001006", "video_name": "8ce19230-9321-55ff-acb9-c8db2f42a50e", "text": "\u5b9e\u9a8c\u5ba4\u91cc\u6d3b\u8dc3\u7740\u7814\u7a76\u4eba\u5458\u6765\u56de\u5fd9\u788c\u7740\u8fdb\u884c\u5b9e\u9a8c\u548c\u5206\u6790\u6570\u636e\u3002\u52b3\u68ee\u535a\u58eb\u5750\u5728\u7535\u8111\u524d\u5168"} +{"id": "4001007", "video_name": "a9477c8f-0360-5303-b6b2-8dee0859afe2", "text": "\u7ea6\u7ff0\u8fea\u5c14\u62d6\u62c9\u673a\u3001\u6536\u5272\u3001\u519c\u7530\u3001\u5f00\u9614\u7684\u7530\u91ce\u30014K\u3002\u4fe1\u606f\uff1aRDO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001008", "video_name": "fdc58036-a670-5d13-aa0e-9f9e17bf2019", "text": "\u63cf\u8ff0\u4e00\u573a\u6fc0\u52a8\u4eba\u5fc3\u7684\u573a\u666f\uff0c\u4e00\u8258\u5b87\u5b99\u98de\u8239\u8f7b\u67d4\u5730\u964d\u843d\u5728\u706b\u661f\u8868\u9762\uff0c\u7a81\u51fa\u8fc7\u7a0b\u4e2d\u7684\u89c6\u89c9\u3001"} +{"id": "4001009", "video_name": "425f4794-66d6-5b14-92e7-58af568a1563", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u4e9a\u6d32\u5973\u5b69\u5728\u8857\u4e0a\u9017\u7559\uff0c\u957f\u53d1\u98d8\u98d8\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "4001010", "video_name": "ae44998b-b190-5b13-9af5-16d81deaac39", "text": "\u8fd9\u4e2a\u89c6\u9891\u7684\u98ce\u683c\u7c7b\u4f3c\u4e8e\u4e2d\u56fd\u6b66\u4fa0\u5c0f\u8bf4\uff0c\u753b\u9762\u4e0a\u51fa\u73b0\u4e86\u4e00\u4e2a\u7537\u6027\u548c\u5973\u6027\u9a91\u58eb\u7684\u5168\u8eab\u955c\u5934\uff0c\u4ed6\u4eec\u624b\u6301\u5251\u5728"} +{"id": "4001011", "video_name": "26016fb6-6386-531b-91c0-72b52fa77b31", "text": "\u7528\u63d2\u753b\u63cf\u7ed8\u5148\u77e5\u4f0a\u5fb7\u91cc\u65af\u5e26\u9886\u7684\u6b63\u4e49\u793e\u533a\uff0c\u5305\u62ec\u74e6\u5fb7\u548c\u8212\u74e6\u7b49\u6770\u51fa\u4eba\u7269\uff0c\u53c2\u4e0e"} +{"id": "4001012", "video_name": "fbe8c588-1e7c-58d5-a9a7-178b01fe57fa", "text": "\u4e00\u4e2a\u7537\u4eba\u900f\u8fc7\u7a97\u6237\u770b\u8d77\u6765\u60b2\u4f24\u548c\u5b64\u72ec\u3002"} +{"id": "4001013", "video_name": "f93e78bc-4886-5ee2-b14c-079fad9076d5", "text": "\u79d1\u5e7b\u5973\u6027\u4ee5\u9ed1\u8272\u9a6c\u5c3e\u8fab\u9762\u5411\u6444\u50cf\u5934\uff0c\u5728\u672a\u6765\u611f\u5341\u8db3\u7684\u4f20\u9001\u96a7\u9053\u91cc\u8d70\u7740\uff0c\u624b\u6301\u6b66\u5668\u4fdd\u62a4\u81ea\u5df1"} +{"id": "4001014", "video_name": "e900b281-579f-5217-8e56-eeed05eaa5c9", "text": "\u4e00\u679a\u94bb\u6212\u6f02\u6d6e\u5728\u623f\u95f4\u4e2d\u592e\u3002"} +{"id": "4001015", "video_name": "2ad0ff7c-3664-5c96-aae7-c121236ff858", "text": "\u4e54\u00b7\u62dc\u767b\u5236\u4f5c\u4e86\u4e00\u4e2a TikTok \u89c6\u9891\uff0c\u8ba9\u5927\u5bb6\u70b9\u8d5e\uff0c\u5e76\u7528\u5634\u53d1\u51fa\u6709\u8da3\u7684\u58f0\u97f3\uff0c\u9ad8\u6e05\uff0c4K \u5206\u8fa8\u7387\uff0c\u6e05\u6670"} +{"id": "4001016", "video_name": "046296b5-92d6-5e8e-95e2-7fb7e5ad4cc1", "text": "\u573a\u666f\uff1a\u732b\u4e13\u6ce8\u4e8e\u8bad\u7ec3\u5979\u7684\u529b\u91cf\u548c\u6218\u6597\u6280\u5de7\u3002\u667a\u6167\u7684\u732b"} +{"id": "4001017", "video_name": "8efbe838-82b1-5809-819e-993e7a7cf07f", "text": "\u6bcf\u4e00\u7247\u68ee\u6797\uff0c\u9ad8\u8fc7\u6811\u68a2\uff0c\u6211\u7684\u80c3\u91cc\uff0c\u7eca\u5012\u6211\u7684\u819d\u76d6\uff0c\u6211\u559d\u7740\u4f60\u8702\u5de2\u91cc\u7684\u871c\uff0c\u4f60"} +{"id": "4001018", "video_name": "0dc13518-4f07-5c57-b6ef-36d9a89e8912", "text": "\u5e74\u8f7b\u5973\u5b69\u7a7f\u7740\u592a\u7a7a\u670d\uff0c\u5e26\u7740\u5979\u7684\u72ec\u89d2\u517d\u732b\u548c\u673a\u5668\u4eba\u72d7\u8d70\u5411\u4e00\u8258\u5927\u578b\u592a\u7a7a"} +{"id": "4001019", "video_name": "2194db9d-89c5-50c2-a1a0-91c91494be37", "text": "\u6d77\u6d0b\u7684\u65e0\u4eba\u673a\u89c6\u89d2\uff0c\u7f29\u653e\u81f3\u6c34\u4e0b\u3002"} +{"id": "4001020", "video_name": "8f8188b5-72c2-5f52-b270-b995e463b49f", "text": "\u4e00\u540d\u5b69\u5b50\u5728\u52a0\u6c99\u7684\u8857\u9053\u4e0a\u8d70\u8def\u3002"} +{"id": "4001021", "video_name": "e1dd885a-ec9e-50c4-b3df-9e31f9a15ced", "text": "\u4e00\u5ea7\u6728\u5c4b\uff0c\u5916\u9762\u5230\u5904\u90fd\u662f\u96ea\uff0c\u4e00\u5bf9\u5e74\u8f7b\u60c5\u4fa3\u5728\u63a5\u543b\uff0c\u4e0b\u7740\u96ea\u3002"} +{"id": "4001022", "video_name": "2d45980f-80e4-540f-acee-0ce30e274d57", "text": "\u795e\u8bdd\u4e2d\u7684\u6c34\u9f99\u53d8\u6210\u9c7c\u7684\u7eb9\u8eab"} +{"id": "4001023", "video_name": "ceda3746-64cf-5ea7-b8ad-8fd4065a8f07", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5bf9\u6297\u590d\u4ec7\u8005\u8054\u76df\u3002"} +{"id": "4001024", "video_name": "b8ff383a-6954-5147-801b-2eed6a2b32f3", "text": "\u6218\u4e89\u7684\u753b\u9762\u3002\u70df\u96fe\u3002\u6b66\u5668\u3002"} +{"id": "4001025", "video_name": "64f31d4c-f07e-557e-b469-9a055fb3ddf4", "text": "Translation: \u8c6a\u534e\u8d5b\u8f66\u649e\u4e0a\u4e86\u4e00\u68f5\u6811\u3002"} +{"id": "4001026", "video_name": "ae1a04ac-7f56-54e1-8048-1c57c708b6d6", "text": "\u8fea\u65af\u79d1\u706f\u548c\u6fc0\u5149\u75af\u72c2\u95ea\u8000\u3002"} +{"id": "4001027", "video_name": "87439c17-d1d1-5773-a075-672260678aa4", "text": "\u5e74\u8f7b\u7537\u5b69\u957f\u53d1\u98d8\u9038\uff0c\u5934\u53d1\u968f\u98ce\u98d8\u52a8\uff0c\u5c71\u5ce6\u4e4b\u95f4\uff0c\u4e91\u6735\u98d8\u52a8\u3002"} +{"id": "4001028", "video_name": "7768165c-683b-548f-a1ea-cb7fd42f7a9a", "text": "80\u4e2a\u9713\u8679\u706f\u95ea\u70c1\u7684\u52a8\u6001\u56fe\u5f62\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "4001029", "video_name": "c6b6e2e7-a3ed-5c84-bdce-0d40665d787b", "text": "\u6751\u5e84\u91cc\u7684\u5e86\u795d\u6d3b\u52a8\u4e2d\uff0c\u4f0a\u838e\u8d1d\u62c9\u88ab\u79f0\u4e3a\u82f1\u96c4\uff0c\u96fe\u6c14\u6563\u53bb\uff0c\u7530\u91ce\u76db\u5f00\uff0c\u6cb3\u6c34\u6e05"} +{"id": "4001030", "video_name": "276e0fed-e9e4-5d21-b8bb-0f305bef41b4", "text": "\u94f6\u884c\u661f\u9645\u4fa0\u662f\u4e00\u4f4d\u5f3a\u5927\u7684\u5916\u661f\u8d85\u7ea7\u82f1\u96c4\uff0c\u88ab\u52a0\u62c9\u514b\u5854\u65af\u6539\u9020\u6210\u4ed6\u7684\u4f7f\u8005\u3002"} +{"id": "4001031", "video_name": "f61d7277-7aea-5a31-8bba-9047a62fa7d1", "text": "\u6444\u5f71\u98ce\u683c\uff0c\u827e\u7c73\u5229\u4e9a\u5973\u5b69\u5728\u5178\u578b\u7684\u827e\u7c73\u5229\u4e9a\u9910\u5385\u91cc\u5403\u827e\u7c73\u5229\u4e9a\u70e4\u997c\u3002"} +{"id": "4001032", "video_name": "31d5ea20-ef56-5eee-9fe6-946d0937f364", "text": "\u96d5\u50cf\u5012\u5728\u6c99\u5b50\u4e0a\u3002"} +{"id": "4001033", "video_name": "0980501c-a5d4-5f06-a8b5-ae1419497dce", "text": "\u5ba4\u5185\u5927\u9ebb\u79cd\u690d\u56ed\u4fef\u89c6\u56fe\uff0c\u4fe1\u606f\uff1a\u62bd\u66f4\u591a\u7684\u5927\u9ebb\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001034", "video_name": "3b2f874e-cc70-51d7-ba5f-200567b6a6f3", "text": "\u4e24\u4e2a\u5973\u4eba\u7ad9\u5728\u4e00\u8d77\uff0c\u9760\u8fd1\u5f7c\u6b64\uff0c\u8d85\u73b0\u5b9e\uff0c8K\uff0c\u865a\u5e7b\u5f15\u64ce\uff0c\u7535\u5f71\u7247\u6bb5\u3002"} +{"id": "4001035", "video_name": "2ef9d866-4596-5c38-95da-3518a343fa09", "text": "\u5b5f\u4e70\u8857\u9053\u7684\u9897\u7c92\u72b6\u9ed1\u767d\u5f71\u50cf\uff0c\u7e41\u534e\u4f46\u5c18\u571f\u98de\u626c\uff0c\u4ecb\u4e8e\u7535\u5f71\u548c\u771f\u5b9e\u4e4b\u95f4\u3002"} +{"id": "4001036", "video_name": "fccec5dd-4c51-56a9-9f97-b186dd5dbfd3", "text": "\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u6162\u52a8\u4f5c\u4e2d\uff0c\u4ee5\u5f3a\u6709\u529b\u7684\u59ff\u6001\u4f38\u5c55\u3002"} +{"id": "4001037", "video_name": "a537e97d-32e9-5ecf-adb4-92394251e5dd", "text": "\u767d\u8272\u6d77\u8c5a\u5728\u6e38\u6cf3\u6c60\u91cc\u6e38\u5708\uff0c\u7531\u4e0a\u65b9\u6444\u50cf\u673a\u62cd\u6444\u3002"} +{"id": "4001038", "video_name": "33000b1f-e84d-53c8-b0a9-df845d9d0a55", "text": "\u4e00\u4e2a\u5fcd\u8005\u5728\u539f\u5730\u65cb\u8f6c\u5236\u9020\u98ce\u66b4\u3002"} +{"id": "4001039", "video_name": "5450c8a1-0015-5414-844d-30524e15f491", "text": "\u673a\u5668\u4eba\u5973\u6027\u7a7f\u7740\u6bd4\u57fa\u5c3c\u7206\u70b8\u4e86\u3002"} +{"id": "4001040", "video_name": "1b47c7ae-5840-52a5-bfaa-bace2f42ae36", "text": "\u4e00\u9897\u5fc3\u5728\u8349\u5730\u4e0a\u5267\u70c8\u8df3\u52a8\uff0c\u8d75\u65e0\u6781\uff0c\u62bd\u8c61\u827a\u672f\uff0c\u6cb9\u753b\u3002"} +{"id": "4001041", "video_name": "d8861a20-d278-5f72-82c2-3f38ffc83bca", "text": "\u5728\u97e9\u56fd\u52a8\u753b\u98ce\u683c\u4e2d\u521b\u9020\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u52a8\u753b\u53a8\u623f\u573a\u666f\u3002\u53a8\u623f\u5e94\u8be5\u6709\u6e29\u6696\u7684\u571f\u8272\u8c03\u548c\u67d4\u548c"} +{"id": "4001042", "video_name": "3ba80d95-3f70-5337-b092-fcf29f18951c", "text": "\u7c89\u8272\u751c\u751c\u5708\u4e0a\u6492\u6ee1\u4e86\u4e94\u989c\u516d\u8272\u7684\u7cd6\u971c\u6389\u843d\u5728\u5c4f\u5e55\u4e0a\u3002"} +{"id": "4001043", "video_name": "3eec416b-3e85-5860-8cd6-6030e551173c", "text": "\u7d2b\u8272\u5934\u53d1\u7684\u5973\u4eba\u6b63\u5728\u770b\u4e66\u3002"} +{"id": "4001044", "video_name": "2f61173f-29fd-54ae-9f9b-e7062fef76f6", "text": "\u4e61\u6751\u7530\u91ce\u4e0a\u7684\u5976\u725b\u8eba\u7740\u3002"} +{"id": "4001045", "video_name": "4f051abf-b013-5894-987a-c9cdbeb803b7", "text": "\u8fc8\u514b\u5c14\u00b7\u6770\u514b\u900a\u57288K\u8d85\u903c\u771f\u7684\u56fe\u50cf\u4e2d\u7ffb\u8f6c\u8df3\u821e\u3002"} +{"id": "4001046", "video_name": "9f79b600-bb38-5064-8535-6e2132bd3699", "text": "\u5728\u66b4\u98ce\u96e8\u591c\u7684\u666f\u8c61\u4e0b\uff0c\u8425\u9020\u51fa\u4e00\u79cd\u9ed1\u6697\u3001\u6c89\u91cd\u7684\u6c1b\u56f4\u3002\u5c0f\u7ea2\u5e3d\u3002"} +{"id": "4001047", "video_name": "430e42fe-14be-56ee-95db-6ae6c0776fde", "text": "\u5f88\u4e45\u4ee5\u524d\u4e86\u3002"} +{"id": "4001048", "video_name": "79ddfc66-3a73-5d6d-bb22-5ee09b1a5796", "text": "\u7535\u5f71\u7ed3\u675f\u65f6\u7684\u6f14\u804c\u5458\u8868"} +{"id": "4001049", "video_name": "850a40d7-564c-5924-b9dd-d6f406d7c6d8", "text": "\u6d77\u6ee9\u4e0a\u6709\u4e24\u5e74\u7684\u62d6\u8f66\u5efa\u8bbe\uff0c\u80cc\u666f\u662f\u8dbe\u7532\u5de5\u5382\u3002"} +{"id": "4001050", "video_name": "658d3b52-2658-52c8-944b-92d25572431d", "text": "\u7070\u8272\u77f3\u5934\u7684\u4e2d\u4e16\u7eaa\u57ce\u5821\uff0c\u6697\u6a59\u8272\u7684\u5929\u7a7a\uff0c\u67af\u840e\u7684\u6811\u53f6\uff0c\u6444\u50cf\u673a\u5411\u5916\u7f29\u653e\u3002"} +{"id": "4001051", "video_name": "84adf7cd-3c1f-56d8-9285-581e590277d3", "text": "\u4e94\u5341\u5d50\u609f\u7ad9\u5728\u4e1c\u4eac\u65e5\u672c\u7684\u5c4b\u9876\u4e0a\uff0c\u80cc\u5bf9\u7740\u955c\u5934\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98de\u821e\uff0c\u591c\u665a\u3002"} +{"id": "4001052", "video_name": "9d7b3d1c-018d-5045-852e-3a7ca04adada", "text": "\u706b\u706d\u540e\uff0c\u6b4c\u5267\u9662\u7684\u4e00\u534a\u5efa\u7b51\u53d7\u635f\u3002"} +{"id": "4001053", "video_name": "13505f03-7b48-5499-9208-67897684b6b6", "text": "\u665a\u4e0a\u9713\u8679\u706f\u5728\u773c\u4e2d\u7684\u5012\u5f71"} +{"id": "4001054", "video_name": "e9979976-6730-5dca-be59-4a6f1a8aa776", "text": "HR\u5409\u683c\u9ed1\u8272\u5916\u661f\u4eba\u91ce\u751f\u79fb\u52a8\u53d8\u5f62\u91d1\u5c5e\u96d5\u5851\uff0c\u98ce\u683c\u7c7b\u4f3cHR\u5409\u683c\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u95ea\u5149\u706f\uff0chdr\uff0c"} +{"id": "4001055", "video_name": "59dbaa28-98d6-5320-8482-01327fd5a7c2", "text": "\u661f\u7cfb\u7684\u5f62\u6210\uff0c\u6211\u4eec\u5b87\u5b99\u7684\u521b\u9020\u65b9\u5f0f\u3002"} +{"id": "4001056", "video_name": "4b5cb9d8-b2fb-5a3f-b0e5-728c4b4ba589", "text": "\u4e00\u4e2a\u9c7c\u5f62\u7684\u7535\u52a8\u673a\u5668\u4eba\u5229\u7528\u6c34\u538b\u5438\u6c34\uff0c\u901a\u8fc7\u4f20\u9001\u5e26\u5c06\u6c34\u8fd0\u8f93\u5230\u7279\u6b8a\u90e8\u95e8\uff0c\u5e76\u901a\u8fc7\u78b3\u8fc7\u6ee4\u5668\u5c06\u6c34\u55b7\u5165\u6cb3"} +{"id": "4001057", "video_name": "e4e23505-92cc-5bdf-bf53-4699df0d5860", "text": "\u5973\u4eba\u5750\u5728\u6d6a\u6f2b\u7684\u592a\u9633\u4e0b\u6c89\u601d\u3002"} +{"id": "4001058", "video_name": "8238db8b-88bc-5b3b-8de3-f8286a861813", "text": "\u6c7d\u8f66\u78b0\u649e\u5e76\u7206\u70b8\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u6770\u4f5c\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "4001059", "video_name": "809f3198-64ca-53e1-a8dc-603d5fb2b358", "text": "\u7334\u5b50\u6f14\u5316\u6210\u4eba\u7c7b\uff0c\u989c\u8272\u8272\u8c03\u4e3a\u7ea2\u8272\u548c\u9ec4\u8272\u3002"} +{"id": "4001060", "video_name": "28a28e2a-60db-560b-aba9-92a31d089651", "text": "\u7f57\u5bbe\u6c49\u7ed9\u7a77\u4eba\u4eec\u5206\u53d1\u94b1\u8d22\u3002"} +{"id": "4001061", "video_name": "39de2ad0-fa70-545a-95a7-879b19e815c1", "text": "\u5357\u74dc\u5730\u3001\u660e\u5a9a\u9633\u5149\u3001\u98de\u821e\u8774\u8776\u3002\n\nSource sentence: I love spending time with my family and going on adventures with them. \n\n\u6211\u559c\u6b22\u548c\u5bb6"} +{"id": "4001062", "video_name": "55b100fb-909d-5b72-906b-400760f9a9c8", "text": "\u9762\u8bd5\u7537\u5b50\u7684\u89c6\u9891"} +{"id": "4001063", "video_name": "4cbcb532-8e20-503a-92f2-720fd1aa0c76", "text": "\u6050\u6016\u7684\u9b3c\u9b42\u6765\u81ea\u5e9f\u5f03\u7684\u623f\u95f4\u3002"} +{"id": "4001064", "video_name": "1be30577-88c0-5b9b-9ee9-927a8ca026ff", "text": "\u53f2\u83b1\u514b\u624b\u62ff\u7740\u4e00\u6735\u5411\u65e5\u8475\u7a7f\u8fc7\u4e00\u7247\u5411\u65e5\u8475\u7530\u3002"} +{"id": "4001065", "video_name": "0e4c76e9-082a-5c52-9824-72c66f2df116", "text": "\u6211\u4eec\u6bd4\u7ade\u4e89\u5bf9\u624b\u66f4\u4f18\u79c0\u3002"} +{"id": "4001066", "video_name": "4e3e1411-0a63-59ab-9934-85f7545fc831", "text": "\u901a\u8fc7\u4ea7\u751f\u4e00\u4e9b\u9b45\u529b\u5341\u8db3\u7684\u6076\u9b54\u4ece\u795e\u79d8\u7684\u9ed1\u70df\u4e2d\u51fa\u73b0\u7684\u56fe\u50cf\uff0c\u521b\u9020\u51fa\u5177\u6709\u52a8\u6001\u548c\u89c6\u89c9\u5438\u5f15"} +{"id": "4001067", "video_name": "360ce0f1-d649-502e-81b8-f1cad08bc3cf", "text": "\u4e24\u4e2a\u68d2\u4eba\u5728\u8857\u5934\u6253\u6597\uff0c\u7ebf\u6761\u753b\uff0c\u7ffb\u8eab\u8e22\u51fb\u3002"} +{"id": "4001068", "video_name": "c4906ab6-b44f-5fc0-993e-51ea47858041", "text": "\u516c\u56ed\u91cc\u7684\u5ba0\u7269\u6d3b\u52a8\uff0c\u6709\u72d7\u548c\u732b\u53c2\u52a0\u3002"} +{"id": "4001069", "video_name": "6be76d2a-29dc-56ae-8805-f8055bee6721", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u5730\u91cc\u62c9\u8d77\u624b\u52a8\u6cf5\u3002"} +{"id": "4001070", "video_name": "9f6817f5-b891-5e33-9a30-580d0831937b", "text": "\u5b89\u7b2c\u65af\u795e\u9e70\u62cd\u52a8\u7fc5\u8180\u3002"} +{"id": "4001071", "video_name": "40121542-7070-5e13-b860-99e5e1813e74", "text": "\u5929\u4f7f\u7684\u7fc5\u8180\u98de\u7fd4\uff0c\u6c34\u6d41\u52a8\uff1b\u9c7c\u6765\u56de\u6e38\u52a8\u3002"} +{"id": "4001072", "video_name": "7846cbe4-fbe1-57e0-8760-b7641a78a5bb", "text": "\u4e00\u4e2a\u975e\u5e38\u7f8e\u4e3d\u7684\u98ce\u666f\uff0c\u6709\u96e8\u3001\u6811\uff0c\u81f3\u5c1120\u79d2\u3002"} +{"id": "4001073", "video_name": "800318b7-0065-5f5c-ac65-5be8a0ca1ae8", "text": "\u4e00\u53ea\u7f8a\u6b63\u5728\u8bfb\u4e66\u3002"} +{"id": "4001074", "video_name": "ab7feb45-8c02-595a-8abf-9a7a6dce5a7e", "text": "\u51e0\u4e2a\u9752\u5c11\u5e74\u4e00\u8d77\u73a9\u6e38\u620f\u3002"} +{"id": "4001075", "video_name": "9f6d9150-65a2-51ce-9838-5bfa9b6ff20a", "text": "\u613f\u5f97\u89c1\u6b64\u666f\u8c61\u4e4b\u4eba\u5fc3\u6000\u656c\u754f\u4e0e\u611f\u6fc0\uff0c\u56e0\u4ed6\u4eec\u7ad9\u5728\u4e0a\u5e1d\u9762\u524d\uff0c\u5b87\u5b99\u7684\u5efa\u7b51\u5e08\uff0c\u5b87\u5b99\u4ea4"} +{"id": "4001076", "video_name": "09000a27-28fa-5f85-aca9-c485f180fa43", "text": "\u7e41\u5fd9\u7684\u533b\u9662\uff0c\u524d\u5f80\u624b\u672f\u5ba4\uff0c\u6444\u5f71\u672f\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "4001077", "video_name": "67b6a5d3-2288-5f79-9bb6-fa5312e28663", "text": "\u7537\u5b50\u5728\u90ca\u533a\u7684\u793e\u533a\u6124\u6012\u5730\u4e0e\u4e00\u68f5\u6811\u640f\u6597\u3002"} +{"id": "4001078", "video_name": "c5685aca-76d2-5cf4-8b44-66b256dcc977", "text": "\u4ed6\u6df1\u5438\u4e00\u53e3\u6c14\uff0c\u6325\u51fa\u7b2c\u4e00\u62f3\uff0c\u4ed6\u7684\u5599\u649e\u5728\u77f3\u5934\u4e0a\u7834\u788e\u3002\u75bc\u75db\u4ece\u4ed6\u7684\u8eab\u4f53\u6d8c\u73b0\uff0c"} +{"id": "4001079", "video_name": "1a1be80f-8526-59b5-8ff0-b803ade20c48", "text": "\u4e2d\u666f\uff0c\u963f\u5179\u7279\u514b\u796d\u53f8\u53d6\u51fa\u4e00\u540d\u897f\u73ed\u7259\u7537\u5b50\u7684\u5fc3\u810f\uff0c\u5e76\u5c06\u5176\u4e3e\u8d77\u4f5c\u4e3a\u796d\u54c1\u732e\u7ed9\u795e\u7075\u3002"} +{"id": "4001080", "video_name": "1f741f8f-c517-5600-b28e-b76fac04d273", "text": "\u4ee5\u4e00\u5f20\u63d2\u56fe\u5c55\u793a\u4e39\u5c3c\u5c14\u5728\u5916\u754c\u538b\u529b\u9762\u524d\u62d2\u7edd\u59a5\u534f\u81ea\u5df1\u7684\u4ef7\u503c\u89c2\u3002"} +{"id": "4001081", "video_name": "b086f34a-d172-54b1-8eba-1e7328ff7d44", "text": "\u56db\u53ea\u53ef\u7231\u7684\u767d\u5c0f\u732b\u5728\u6625\u5929\u7684\u82b1\u56ed\u91cc\u5feb\u4e50\u5730\u73a9\u800d\u3002"} +{"id": "4001082", "video_name": "dc9d6e1b-983b-5aba-80c0-dd9fdfbf01e0", "text": "\u4e24\u4e2a\u4eba\u5728\u68ee\u6797\u91cc\u8fdb\u884c\u6050\u6016\u91ce\u8425\u3002"} +{"id": "4001083", "video_name": "908a3359-09aa-5086-9e83-e95dc48993ba", "text": "\u591a\u5e74\u8fc7\u53bb\u4e86\uff0c\u90a3\u4e2a\u7531Roblox\u5236\u6210\u7684\u5bcc\u8c6a\u53bb\u4e16\u4e86\u3002\u6709\u4e00\u5929\uff0c\u4e00\u4e2a\u62e5\u6709\u7530\u5730\u5e76\u6b63\u5728\u8015\u79cd\u7684\u7531Roblox\u5236\u6210\u7684\u7a77"} +{"id": "4001084", "video_name": "bd3d0d2a-b522-566f-ad62-b40bc8cd106d", "text": "\u7f8e\u5143\u949e\u7968\u4ece\u4e00\u4e2a\u535a\u5f69\u5e97\u91cc\u98de\u51fa\u6765\uff0c16:9\u3002"} +{"id": "4001085", "video_name": "75936d7e-07de-580e-b331-ef85026d9483", "text": "\u65e5\u5b50\u8f6c\u773c\u6210\u4e86\u661f\u671f\uff0c\u661f\u671f\u8f6c\u773c\u6210\u4e86\u6708\u4efd\uff0c\u65e5\u5386\u9875\u4e0d\u65ad\u7ffb\u52a8\u3002"} +{"id": "4001086", "video_name": "9f0ed1f0-e10d-5f28-8dd7-b43632e23add", "text": "\u6587\u8fea\u585e\u5c14\u89c1\u5230\u4fdd\u7f57\u00b7\u6c83\u514b\uff0c\u63e1\u4e86\u4ed6\u7684\u624b\uff0c\u54ed\u4e86\u3002"} +{"id": "4001087", "video_name": "87ec601d-fa8c-5cb9-95c3-cb9916ebf94c", "text": "\u65e0\u9762\u7537\u5b50\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u8fb9\u7f18\u7a7a\u95f4\u4e2d\u3002"} +{"id": "4001088", "video_name": "9c082607-e7f8-51fd-b4ba-ca68e0a8df4f", "text": "\u4e24\u4e2a\u7537\u4eba\u6740\u4e86\u53e6\u4e00\u4e2a\u7537\u4eba\uff0c\u5f53\u65f6\u662f\u51ac\u5929\u7684\u65e9\u6668\uff0c\u6b63\u5728\u4e0b\u96ea\u3002"} +{"id": "4001089", "video_name": "0b04fbd1-83af-5ce4-aff9-05b251660fa2", "text": "\u957f\u8005\u7684\u5f62\u8c61\u3001\u6027\u683c\u3001\u6cb3\u5cb8\u3001\u53e4\u8001\u3001\u7834\u65e7\u7684\u957f\u888d\u3001\u624b\u6756\u3001\u795e\u79d8\u7684\u7b26\u53f7\u3001\u865a\u5e7b\u7684\u6c14\u606f\u3001\u53d1"} +{"id": "4001090", "video_name": "cee57495-6700-5120-9438-c1cd072b339d", "text": "\u6211\u68a6\u4e2d\u7684\u5267\u9662\uff0c\u6709\u4e00\u9053\u91d1\u8272\u7684\u5e37\u5e55\u3002\n\nSource sentence: She is wearing a beautiful red dress and high heels.\n\u5979\u7a7f\u7740\u4e00\u6761\u6f02\u4eae\u7684\u7ea2"} +{"id": "4001091", "video_name": "bc986a59-ac56-5f45-bd1b-1b1f99e02b52", "text": "\u4e00\u9897\u624b\u7ed8\u7684\u65cb\u8f6c\u94bb\u77f3\uff0c\u767d\u8272\u7eb8\u4e0a\u70ad\u7b14\u753b\u3002"} +{"id": "4001092", "video_name": "01230aa4-5a63-5370-a4f2-974ade4c2074", "text": "\u62bd\u8c61\u7684\u4eba\u7c7b2.0\u672a\u6765\u4e3b\u4e49\u8d85\u73b0\u5b9e\u4e3b\u4e49 \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "4001093", "video_name": "51149a36-c07d-5bb7-b99c-d9766f641438", "text": "\u4e24\u4e2a\u5361\u901a\u5c0f\u7537\u5b69\u4ece\u5b66\u6821\u56de\u5230\u6751\u5e84\u7684\u5bb6\u3002"} +{"id": "4001094", "video_name": "2f60d0bd-220f-5352-a568-7b4cf1a9a0d6", "text": "\u4eba\u7269\u7684\u52a8\u4f5c\u6d41\u7545\uff0c\u589e\u5f3a\u4e86\u8138\u90e8\u7684\u900f\u89c6\u611f\u3002"} +{"id": "4001095", "video_name": "de31c156-9792-5849-838e-3cb0681779d3", "text": "\u6b66\u4fa0\u52a8\u753b\uff0c3D\u98ce\u683c\uff0c\u5168\u9ad8\u6e05"} +{"id": "4001096", "video_name": "c2fdfe36-bb4f-5286-b4af-4788dcd83dc6", "text": "\u53ef\u7231\u7684\u91d1\u6bdb\u730e\u72ac\u6b63\u5728\u73a9\u800d\uff0c\u5feb\u4e50\u5730\u5728\u57ce\u5e02\u5bb6\u4e2d\uff0c4K\u3002"} +{"id": "4001097", "video_name": "0e52f65c-9db6-5848-8e5f-ea226e8ee75e", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u5367\u5ba4\u4e2d\uff0c\u5728\u5e8a\u4e0a\u6211\u4eec\u770b\u5230\u4e00\u4e2a\u655e\u5f00\u7684\u624b\u63d0\u7bb1\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u590f\u5b63\u8863\u670d\u3001\u5927\u91cf\u7684\u73b0\u91d1\u548c\u4e00"} +{"id": "4001098", "video_name": "eab52435-b3e3-516a-a0f6-273bfa37925f", "text": "\u4e00\u4e2a\u5750\u5728\u73a9\u5177\u8f66\u91cc\u7684\u7537\u5b69\u3002"} +{"id": "4001099", "video_name": "3d7b6f56-01c8-5b02-80ac-ecd1a496af9b", "text": "\u4e00\u8f86\u84dd\u8272\u7684\u5b9d\u9a6cM2\u5728\u8d5b\u8f66\u9053\u4e0a\uff0c\u4e13\u4e1a\u5f55\u5236\u7684\u89c6\u9891\u3002"} +{"id": "4001100", "video_name": "fc7e3fef-0b44-52de-83bf-e414da8a0244", "text": "\u68ee\u6797\u91cc\u7684\u9b54\u9b3c\u5728\u6708\u5149\u4e0b\u8df3\u821e\u3002"} +{"id": "4001101", "video_name": "532bd840-0860-5127-832a-28480f7db2a9", "text": "\u4e00\u540d\u5927\u5b66\u5973\u751f\u6b63\u5728\u7535\u8111\u524d\u6253\u5b57\u3002"} +{"id": "4001102", "video_name": "4f7f4ce2-6ecd-5aa1-86dd-88259fcd7d5c", "text": "Cristiano Ronaldo\u5728\u9a6c\u62c9\u5580\u4ec0\u548cLeo Messi\u4e00\u8d77\u8e22\u8db3\u7403\u3002"} +{"id": "4001103", "video_name": "d5e1e2ae-724e-508b-988a-c91cf83fa3e8", "text": "\u5728\u6c99\u6f20\u4e2d\u5236\u9020\u6469\u6258\u8f66\u9a91\u884c\u4f53\u9a8c\u3002"} +{"id": "4001104", "video_name": "3e8b4485-dd98-596a-91c8-20aed23bb71f", "text": "\u4e00\u7fa4\u4eba\u5728\u97f3\u4e50\u8282\u4e0a\u8df3\u821e\uff0c\u4e94\u989c\u516d\u8272\u7684\u95ea\u5149\u706f\u3002"} +{"id": "4001105", "video_name": "ef61e7b8-81f2-5068-9724-1166ed68b4dc", "text": "\u661f\u7403\u5927\u6218\u573a\u666f\u6c49\u00b7\u7d22\u6d1b\u548c\u516c\u4e3b\u83b1\u5a05\u4eb2\u543b\u3002"} +{"id": "4001106", "video_name": "8ea721d0-de08-549c-b102-ec3e58dfde33", "text": "yoyogalaxy \u662f\u4e00\u79cd\u75af\u72c2\u7684\u65e0\u9650\u5c3a\u5ea6\u7535\u5f71\u5f0f\u7ea2\u79fb\uff0c\u91c7\u7528 Adobe Octane\u3001UnrealRender \u548c Vray\u3002"} +{"id": "4001107", "video_name": "94c263d9-e944-5dd9-a913-50e6e1ec86ea", "text": "\u4e00\u8258\u5728\u6c79\u6d8c\u6d77\u9762\u4e2d\u822a\u884c\u7684\u591a\u6728\u8239"} +{"id": "4001108", "video_name": "67c33621-0672-5c3e-b338-d46ce46274a2", "text": "\u4e24\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u6d77\u5cb8\u4e0a\u8df3\u7740Shuffle\u821e\uff0c\u4e24\u4e2a\u5973\u5b69\u5728\u8df3\u821e\u65f6\u73a9\u7b11\u5730\u5fae\u7b11\u7740\uff0c\u8eab\u7a7f\u5c0f\u6bd4\u57fa"} +{"id": "4001109", "video_name": "94d075aa-edc5-5c53-9ae2-8679c56e842d", "text": "\u5e7f\u89d2\u62cd\u6444\u7684\u591c\u665a\u9713\u8679\u90fd\u5e02\uff0c\u5feb\u901f\u884c\u9a76\u7684\u8f66\u8f86\u3002\u6162\u901f\u5feb\u95e8\uff0c\u7559\u4e0b\u8f66\u8f86\u5c3e\u8ff9\u300280\u5e74"} +{"id": "4001110", "video_name": "352239c7-1f41-531d-96f7-04ed0d057250", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5c3c\u53e4\u5c14\u95ed\u4e0a\u773c\u775b\uff0c\u4e13\u6ce8\u5730\u4f4e\u8bed\u5411\u5979\u7684\u5b88\u62a4\u5929\u4f7f\u8bf7\u6c42\u4e00\u4e2a\u661f\u9645\u4e4b\u65c5\u3002\u5f71\u50cf\u5e94\u8be5\u6563\u53d1\u51fa"} +{"id": "4001111", "video_name": "7e1148e8-4d60-547e-af9b-af5093b6521e", "text": "\u5b59\u609f\u7a7a\uff0c\u4e00\u4f4d\u4e2d\u56fd\u795e\u8bdd\u4eba\u7269\uff0c\u5728\u4e00\u4e2a\u5e9f\u5f03\u7684\u5de5\u5382\u9644\u8fd1\u4e0e\u7f8e\u56fd\u961f\u957f\u8fdb\u884c\u4e86\u4e00\u573a\u975e\u5e38\u6fc0\u70c8\u7684\u6218\u6597"} +{"id": "4001112", "video_name": "76385abd-14a9-5420-88b7-69ef9cc232ef", "text": "\u91ce\u751f\u7684\u6c89\u9ed8\u8001\u864e\u5728\u6c34\u4e0b\u6e38\u6cf3\uff0c\u5f3a\u70c8\u7684\u8272\u5f69\u98ce\u683c\u8d85\u73b0\u5b9e\u4e3b\u4e493D\u3002"} +{"id": "4001113", "video_name": "90a4f89a-b808-5c90-a3a6-9d9d15cf44bf", "text": "\u65b0\u8457\u5c0f\u5b66\u751f\u548c\u5411\u65e5\u8475\u5728\u4eba\u5de5\u667a\u80fd\u4e16\u754c\u4e2d\u3002 \n\nSource sentence: The restaurant is closed on Sundays. \n\n\u9910\u5385\u661f\u671f\u5929\u5173\u95e8\u3002"} +{"id": "4001114", "video_name": "adb31d07-1d0c-5aa6-ae3a-c93077f92f0a", "text": "\u4e00\u53ea\u67d1\u6a58\u4ece\u7ae5\u8bdd\u822c\u7684\u51ac\u5b63\u68ee\u6797\u4e2d\u9760\u8fd1\u3002"} +{"id": "4001115", "video_name": "7cfe2b23-a8e3-583c-8d11-78d3d3ca4b9c", "text": "\u73b0\u5b9e\u800c\u751f\u52a8\u7684\u57ce\u5e02\u63d2\u753b\uff0c\u91c7\u7528\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u771f\u5b9e\u7684\u8272\u5f69\u548c\u5149\u7ebf\uff0c\u4e00\u4f4d\u6234\u7740\u5e3d\u5b50\u7684\u4eba\u5728"} +{"id": "4001116", "video_name": "947688d6-d3ea-50ca-8ea8-9a0cc65e99ef", "text": "\u573a\u666f\u5f00\u573a\u5c55\u73b0\u4e86\u4e00\u4e2a\u4ee4\u4eba\u60ca\u53f9\u7684\u5145\u6ee1\u751f\u547d\u529b\u3001\u5f02\u4e16\u754c\u98ce\u5149\u7684\u666f\u8c61\u3002\u6f02\u6d6e\u7684\u5c9b\u5c7f\u3001\u503e\u6cfb"} +{"id": "4001117", "video_name": "878871aa-2197-57bb-805a-794b23ebe064", "text": "\u4e00\u8258\u5728\u73bb\u7483\u676f\u91cc\u6447\u6643\u7684\u8239\u3002"} +{"id": "4001118", "video_name": "f6d86926-fc3b-5de7-b860-e758401b7266", "text": "\u795e\u79d8\u7684\u5669\u68a6\u751f\u7269\u5c06\u4e00\u4e2a\u4eba\u62d6\u5165\u6d77\u6d0b\u6df1\u5904\uff0c\u9ad8\u6e05\u6670\u5ea6\uff0c\u6709\u8bb8\u591a\u6d3b\u52a8\u7684\u80a2\u4f53\u548c\u54a7\u5634\u7684"} +{"id": "4001119", "video_name": "68096a95-b106-551d-b224-438242697d0a", "text": "\u5de8\u5927\u7684\u80fd\u6e90\u6536\u96c6\u5668\u9ad8\u8038\u5728\u4e2d\u592e\uff0c\u5468\u56f4\u662f\u5e7f\u9614\u7684\u4e2d\u592e\u5ba4\u3002\u5176\u590d\u6742\u7684\u8bbe\u8ba1\u53ef\u900f\u8fc7\u73bb\u7483\u5916\u58f3\u770b"} +{"id": "4001120", "video_name": "b94b5d92-21ed-58c3-b363-afa9c7385169", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c\u661f\u7403\u5927\u6218\uff0c\u8df3\u821e\uff0c\u79d1\u5e7b"} +{"id": "4001121", "video_name": "749f253b-b76c-5929-9ba5-a704826c4727", "text": "\u4e3aYouTube\u7f29\u7565\u56fe\u521b\u5efa\u56fe\u50cf\uff0c\u5f62\u72b6\u547d\u540d\u56fe\u50cf\u3002"} +{"id": "4001122", "video_name": "999a4333-1654-5c01-8c65-87913e9366a1", "text": "\u5f57\u661f\u7167\u4eae\u591c\u7a7a\u3002\u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "4001123", "video_name": "a4c22dc7-806c-519a-bc7c-f98c7926e458", "text": "1972\u5e74\uff0c\u5728\u5f17\u5409\u5c3c\u4e9a\u5dde\u91cc\u58eb\u6ee1\u5e02\u4e2d\u5fc3\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u9ed1\u4eba\u7537\u5b69\u51fa\u751f\u5728\u4e00\u4e2a\u666e\u901a\u5bb6\u5ead\u4e2d\u3002\u4ed6\u4eec\u4f4f\u5728\u4e00\u4e2a"} +{"id": "4001124", "video_name": "81b526ea-feda-5e0e-8511-21482c1738ca", "text": "\u6587\u827a\u590d\u5174\u65f6\u671f\u7684\u591a\u624d\u591a\u827a\u7684\u4eba\u5728\u6b27\u6d32\u98ce\u666f\u5982\u753b\u7684\u6c1b\u56f4\u4e2d\u5fc3\u60c5\u6109\u60a6\u3002"} +{"id": "4001125", "video_name": "f111ab20-2b16-5441-8e1f-9150372fd4b7", "text": "\u6211\u5e0c\u671b\u8138\u7684\u4e24\u4fa7\u80fd\u591f\u79fb\u52a8\uff0c\u773c\u775b\u80fd\u591f\u7728\u773c\uff0c\u524d\u81c2\u80fd\u591f\u79fb\u52a8\uff0c\u5634\u5df4\u80fd\u591f\u5f00\u5408\u3002"} +{"id": "4001126", "video_name": "7592e4e9-2e76-5f4b-9aa4-ccce2355c430", "text": "\u4e0b\u53489\u70b916\u5206\uff0c\u5728\u4e00\u5ea7\u57ce\u5821\u91cc\uff0c\u4e00\u4f4d\u5bcc\u6709\u7684\u56fd\u738b\u5750\u5728\u91d1\u8272\u7684\u5b9d\u5ea7\u4e0a\u3002"} +{"id": "4001127", "video_name": "27609b9b-5ff8-5db6-adb3-b2d2460f5aa7", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u4eba\u5728\u8857\u4e0a\u8d70\u52a8\uff0c\u6bcf\u4e2a\u4eba\u90fd\u4ee524fps\u89c2\u5bdf\u5979\u7684\u52a8\u4f5c\u3002"} +{"id": "4001128", "video_name": "7e72738d-13b3-5876-bf34-8870f50edbb7", "text": "\u8463\u4e8b\u4f1a\u8ba8\u8bba\u4eba\u5de5\u667a\u80fd\u5728\u793e\u4f1a\u4e2d\u7684\u4f26\u7406\u5f71\u54cd\uff0c\u4e89\u8bba\u6fc0\u70c8\u3002"} +{"id": "4001129", "video_name": "e1d0ebf1-1c51-5124-98a0-c4f439da9a58", "text": "\u521b\u5efa\u4e00\u4e2a\u4e09\u7ef4\u8bf4\u660e\u89c6\u9891\uff0c\u5c55\u793a\u672a\u6765\u7684\u5feb\u901f\u7535\u5b50\u5546\u52a1\u7f51\u7ad9\u548c\u4ea7\u54c1\u9500\u552e\u548c\u641c\u7d22\u3002\u4e00\u4e2a\u7537\u4eba\u5728\u6162\u901f\u7f51\u7ad9\u548c\u5feb\u901f\u7f51\u7ad9\u4e0a\u641c\u7d22\u4ea7\u54c1\u3002"} +{"id": "4001130", "video_name": "d03d30bf-72db-5d2f-beee-7fdce0bbe86d", "text": "\u8bd5\u70bc\u4e2d\u7684\u559c\u4e50\uff0c\u57fa\u7763\u5f92\u575a\u5fcd\uff0c\u5723\u7ecf\u6559\u5bfc\uff0c\u4fe1\u9760\u4e0a\u5e1d\uff0c\u7075\u6027\u6311\u6218\uff0c\u7075\u6027\u6d01\u51c0"} +{"id": "4001131", "video_name": "efefd04a-5d0c-522c-bdea-2faf6be78610", "text": "\u96a7\u9053\u5185\u90e8\u88ab\u7f8e\u4e3d\u7684\u706f\u5149\u6240\u7167\u4eae\uff0c\u4e00\u5207\u90fd\u50cf\u52a8\u6f2b\u63d2\u56fe\u4e00\u822c\u6d3b\u7075\u6d3b\u73b0\u3002"} +{"id": "4001132", "video_name": "72fdbbff-eca7-5b5d-8928-027ae61d9d5d", "text": "\u521b\u9020\u4e00\u4e2a\u50cf\u76ae\u514b\u65af\u98ce\u683c\u7684\u4e09\u7ef4\u7537\u5b69\uff0c\u80fd\u591f\u8bf4\u8bdd\u548c\u770b\u5411\u6444\u50cf\u5934\u3002"} +{"id": "4001133", "video_name": "6ca60f76-89d8-53b1-9a75-8c83d1177f7b", "text": "Betangel\u8f6f\u4ef6\u7684\u5f71\u50cf\u6548\u679c\u662f\u7535\u5f71\u822c\u7684\u3001\u6162\u52a8\u4f5c\u7684\uff0c\u5206\u8fa8\u7387\u6700\u5dee\u3002"} +{"id": "4001134", "video_name": "74a83df0-593d-57d1-94a1-998e5da297ac", "text": "\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u5728\u516c\u8def\u4e0a\u5954\u8dd1\u3002"} +{"id": "4001135", "video_name": "95d71462-cfe3-5c6e-903e-1bb38cca3857", "text": "\u8001\u5e08\u5728\u6559\u6388\u5c0f\u5b66\u751f\u8fdc\u7a0b\u5b66\u4e60\uff0c\u4ed6\u4eec\u90fd\u5f88\u4eab\u53d7\u5e76\u4e14\u5fae\u7b11\u7740\u3002\u5b69\u5b50\u4eec\u5f88\u5f00\u5fc3\u5730\u5b8c\u6210\u4ed6\u4eec\u7684\u4efb\u52a1\u3002"} +{"id": "4001136", "video_name": "e7fcccad-7f35-519a-92fa-ca312aaca0f2", "text": "\u4e00\u4e2a\u7687\u5bb6\u5bab\u6bbf\uff0c\u5927\u6d25\u5df4\u5e03\u97e6\u5728\u665a\u671f\u94c1\u5668\u65f6\u4ee3\u662f\u7edf\u6cbb\u7cbe\u82f1\u7684\u4f4f\u6240\uff0c\u8fd0\u52a84\uff0c\u6444\u50cf\u673a\u5411\u53f3\u5168\u666f"} +{"id": "4001137", "video_name": "cf571441-8845-52cb-b106-dc5f3623d210", "text": "\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u5723\u8bde\u8282\uff0c\u4e00\u6761\u96ea\u767d\u7684\u8857\u9053\u4e0a\uff0c\u5496\u5561\u5e97\u5916\u6709\u4e00\u8f86\u9a6c\u8f66\uff0c\u7a97\u6237\u91cc\u7684\u5723"} +{"id": "4001138", "video_name": "66bb6089-d523-5f0b-bcd5-5fc7d0ba6559", "text": "\u96f7\u7ef4\u662f\u4e00\u4e2a20\u5c81\u7684\u7537\u4eba\uff0c\u5750\u5728\u4e00\u68f5\u6995\u6811\u4e0b\uff0c\u4e0e\u4ed6\u777f\u667a\u7684\u7956\u7236\u8ba8\u8bba\u4ed6\u7684\u68a6\u60f3\u3002\u843d\u65e5\u6295"} +{"id": "4001139", "video_name": "37063547-3a23-5013-8c51-b6b0554d48c6", "text": "\u8bf7\u7528\u73af\u5883\u548c\u5899\u58c1\u989c\u8272\u7f8e\u5316\u5b83\u30021\u9644\u4ef6\u3002"} +{"id": "4001140", "video_name": "4e398994-d5cd-5b50-879c-207fb1e865ca", "text": "\u68ee\u6797\u4e2d\u7684\u623f\u5c4b\u5c4b\u9876\uff0c\u5728\u9ed1\u591c\u4e2d\uff0c\u5e73\u9759\u7684\u96e8\uff0c\u903c\u771f\u3002 \n\nSource sentence: The cat lazily stretched out on the windowsill, basking in the"} +{"id": "4001141", "video_name": "7582f7bb-2ad4-5dd5-8d89-0ba7311c7564", "text": "\u8ba9\u5b83\u770b\u8d77\u6765\u975e\u5e38\u751f\u52a8\uff0c\u597d\u50cf\u4ed6\u4eec\u521a\u4ece\u4e00\u573a\u53f2\u8bd7\u822c\u7684\u6218\u6597\u4e2d\u51fa\u6765\u3002\u5728\u4f60\u80fd\u591f\u7684\u5730\u65b9\u6dfb\u52a0\u5927\u91cf\u7684\u6548\u679c"} +{"id": "4001142", "video_name": "8422d85d-4f08-5281-b79d-ebf9ffdebbe1", "text": "\u8d85\u65b0\u661f\uff0c\u89c6\u89d2\u6b63\u9762\uff0c\u7b80\u7ea6\u6781\u7b80\uff0c\u9ed1\u767d\u65e0\u6e10\u53d8\uff0c\u98ce\u683c\u4e3a\u6f2b\u753b\u8349\u56fe\u3002"} +{"id": "4001143", "video_name": "f3f473b9-1449-5e05-8aeb-8bb39574cca0", "text": "\u4e24\u4e2a\u75c5\u4eba\u548c\u4e00\u540d\u533b\u751f\u9762\u5bf9\u9762\u4ea4\u8c08\u3002"} +{"id": "4001144", "video_name": "267cf7da-a778-5092-90f3-7207403a977f", "text": "\u5728\u672b\u65e5\u65f6\u671f\u7684\u706b\u6d77\u4e2d\u54ed\u6ce3\u7684\u5815\u843d\u5929\u4f7f\u3002"} +{"id": "4001145", "video_name": "ae293742-1e2f-5d1d-8b9c-d1b8a04ba969", "text": "\u8682\u8681\u5728\u8df3\u821e\uff0c\u4e3e\u884c\u8fea\u65af\u79d1\u6d3e\u5bf9\uff0c\u62ff\u7740\u996e\u6599\uff0c\u5728\u8d4c\u573a\u6253\u4e8c\u5341\u4e00\u70b9\u3002"} +{"id": "4001146", "video_name": "11309489-22b2-5f7d-9b5d-a3d3f7a75194", "text": "\u4e00\u8f86\u7ea2\u8272\u6cd5\u62c9\u5229\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\u884c\u9a76\uff0c\u4fdd\u65f6\u6377\u5546\u4e1a\u5e7f\u544a\uff0c\u672a\u6765\u4e3b\u4e49\uff0c\u9713\u8679\u706f\u5728\u8d5b\u535a"} +{"id": "4001147", "video_name": "584eb754-7f86-5270-b726-f1a61dfaaa1a", "text": "\u4e00\u4f4d\u7a7f\u7740\u91d1\u8272\u88d9\u5b50\u7684\u5e74\u8f7b\u5973\u5b69"} +{"id": "4001148", "video_name": "dc0967c0-e692-5fa3-8622-72367e31492f", "text": "Source sentence translated: \u4e0b\u5348\u9ad8\u5cf0\u671f\uff0c\u4eba\u7fa4\u6324\u6ee1\u96c5\u52a0\u8fbe\u6b65\u884c\u8857\u3002"} +{"id": "4001149", "video_name": "93d2c6cb-d762-5d14-81dd-dfe0aba20959", "text": "\u5927\u536b\u00b7\u9c8d\u4f0a\u5728\u753b\u81ea\u753b\u50cf\u3002"} +{"id": "4001150", "video_name": "7f5070c0-8e6e-5efe-85d7-438f70811c70", "text": "\u4e00\u9897\u88ab\u7535\u7ebf\u548c\u7535\u7f06\u5305\u88f9\u7684\u7834\u788e\u5fc3\u810f\uff0c\u5fae\u5f31\u5730\u8df3\u52a8\u7740\u3002"} +{"id": "4001151", "video_name": "f22cfb6c-0d41-505e-a212-ddd232652f81", "text": "\u6444\u5f71\u5e08\u54ed\u7740\u8dd1\u7740\uff0c\u4e3a\u4e86\u8eb2\u907f\u6124\u6012\u7684\u4eba\u4eec\u800c\u4fdd\u547d\u3002"} +{"id": "4001152", "video_name": "1b239203-7f1e-5e18-ae81-499fb2ccd3cc", "text": "\u975e\u5e38\u6f02\u4eae\u7684\u4ed9\u5973\uff0cDanbooru\u7684dandonfuga\u548cSakimi chan\u98ce\u683c\uff0c\u5b8c\u6574\u6210\u957f\uff0c\u8bb8\u591a\u5c0f\u7ec6\u8282\uff0c\u9ad8\u6e05\u7167\u7247\u903c\u771f\u3002"} +{"id": "4001153", "video_name": "f24810cb-ef09-5034-ad78-782b155fa6ef", "text": "\u5251\u5ba2\u3001\u9ad8\u5c71\u3001\u5ce1\u8c37\u3001\u767d\u96ea\u3001\u98de\u9e1f\u3001\u6cb3\u6d41\u3001\u5f3a\u98ce\u3001\u767d\u4e91\u3002"} +{"id": "4001154", "video_name": "f131118c-1f3e-5b59-99b6-a8cdfa75ab08", "text": "\u6770\u514b\u548c\u7f57\u4e1d\u5728\u5348\u591c\u65f6\u5206\u822a\u884c\u5728\u6cf0\u5766\u5c3c\u514b\u53f7\u7684\u8239\u5934\u3002"} +{"id": "4001155", "video_name": "5bf7d9a7-34c0-5cfd-acd2-05b651c77609", "text": "\u97f3\u4e50\u89c6\u9891\u4e2d\u7684\u6076\u9b54\uff0c\u5b8c\u7f8e\u8d28\u91cf\uff0c\u65e0\u9650\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "4001156", "video_name": "12d09933-4a4d-52f2-a7fa-7f6c639e8a4e", "text": "\u751f\u6210\u4e00\u4e2a\u5728\u591c\u5e97\u91cc\u8df3\u821e\u559d\u9152\u7684\u597d\u670b\u53cb\u4eec\u7684\u89c6\u9891\uff0c\u6bcf\u4e2a\u4eba\u90fd\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "4001157", "video_name": "daff8894-a27a-5605-a228-46c88b7a61fa", "text": "\u6674\u6717\u7684\u65e5\u5b50\uff0c\u4e00\u679a\u706b\u7bad\u5728\u5730\u9762\u4e0a\u4e0e\u957f\u6ee1\u8349\u7684\u7a7a\u5730\u4e0a\u5448\u73b0\u51fa\u7ea2\u767d\u76f8\u95f4\u7684\u989c\u8272\u3002\u8fd9\u662f\u4e00\u679a\u53ea\u80fd"} +{"id": "4001158", "video_name": "9bdb6622-462f-572e-8299-391c80fc2817", "text": "\u5e74\u8f7b\u7684\u8fd0\u52a8\u578b\u5341\u51e0\u5c81\u7537\u5b69\u7a7f\u7740\u4e2d\u4e16\u7eaa\u7684\u670d\u88c5\uff0c\u6ee1\u8eab\u662f\u8840\uff0c\u54a7\u5634\u51b7\u7b11\uff0c\u53cc\u6301\u5251\u5df2"} +{"id": "4001159", "video_name": "4d644fd7-b1cf-5353-8dc1-13c8f5e0e7b5", "text": "\u8389\u8389\u8bd5\u56fe\u722c\u4e0a\u4e00\u68f5\u9ad8\u5927\u7684\u6811\uff0c\u6355\u6349\u90a3\u4e00\u523b\u7684\u523a\u6fc0\u3002\u52a8\u753b\u7247\u3002"} +{"id": "4001160", "video_name": "52809c1e-f835-57c4-8e20-abb7c3c72b9b", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u6f2b\u5973\u5b69\u4e3e\u8d77\u624b\u5e76\u5d07\u62dc\u3002"} +{"id": "4001161", "video_name": "fe1a7cc4-5212-53e2-9484-5ef970b882ce", "text": "\u521b\u9020\u4e00\u4e2a\u5c0f\u673a\u5668\u4eba\u7f57\u6bd4\u6eda\u8fc7\u5145\u6ee1\u751f\u673a\u7684\u5de8\u5927\u82b1\u6735\u7684\u82b1\u56ed\u7684\u56fe\u50cf\u3002\u751f\u6210\u89c6\u9891\u3002"} +{"id": "4001162", "video_name": "ea2df3f1-05a9-5d67-9914-f478414f2552", "text": "\u65e0\u5bb6\u53ef\u5f52\u7684\u7537\u4eba\u548c\u4ed6\u7684\u59bb\u5b50\u5728\u96e8\u4e2d\u54ed\u6ce3\u3002"} +{"id": "4001163", "video_name": "96e7b45a-6aff-56c1-8346-01f39c478877", "text": "\u4f7f\u7528\u865a\u5e7b\u5f15\u64ce5\u5236\u4f5c\u970d\u9ed8\u00b7\u8f9b\u666e\u68ee\u3002"} +{"id": "4001164", "video_name": "8033b834-ab89-5747-81cf-2ab230eb21f4", "text": "\u54c8\u8389\u00b7\u594e\u8335\u5728\u80e1\u540c\u706f\u5149\u4e0b\u8df3\u6765\u8df3\u53bb\uff0c\u903c\u771f\u7684\u89e3\u5256\u5b66\u3002"} +{"id": "4001165", "video_name": "26dd0bab-f4e3-527c-930b-603e321cd98c", "text": "\u7ebd\u82ac\u5170\u72d7\u5728\u7530\u91ce\u4e0a\u5954\u8dd1\u3002"} +{"id": "4001166", "video_name": "9bea4b85-17a1-5cc6-862d-3c2f8a0bb023", "text": "\u4e00\u7247\u5e7f\u88a4\u7684\u559c\u9a6c\u62c9\u96c5\u8349\u539f\u548c\u91ce\u82b1\u8986\u76d6\u7684\u666f\u8c61\u5c55\u73b0\u5728\u6211\u4eec\u9762\u524d\u3002\u6444\u50cf\u673a\u5411\u4e0b\u79fb\u52a8\uff0c\u63ed\u793a\u4e86\u4e00\u4e2a\u5e74"} +{"id": "4001167", "video_name": "8fd4fa3c-84a2-573b-b6e9-82575ca19294", "text": "\u4e00\u5ea7\u8fde\u63a5\u5927\u6d77\u7684\u6865\uff0c\u4e24\u4e2a\u957f\u53d1\u7537\u5b50\u548c\u4e00\u652f\u7334\u5b50\u519b\u961f\u5728\u6865\u4e0a\u884c\u8d70\u3002"} +{"id": "4001168", "video_name": "375b6837-bb16-543b-a5f9-9b039994b627", "text": "\u706b\u661f\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\uff0c\u4f7f\u7528\u7c7b\u4f3c\u300a\u6bc1\u706d\u6218\u58eb\u300b\u7684\u6076\u9b54\u94fe\u952f\u3002"} +{"id": "4001169", "video_name": "c8847a98-00fd-5c5c-917a-89a19e2b112d", "text": "\u4e00\u4e2a\u5c0f\u578b\u5de5\u4f5c\u5ba4\u4e13\u4e3a\u677f\u7403\u7403\u8ff7\u6253\u9020\uff0c\u62e5\u6709\u5370\u5ea6\u961f\u96c6\u4f53\u7eaa\u5ff5\u54c1\u3001\u64ad\u5ba2\u5de5\u4f5c\u5ba4\u3001\u5370\u5ea6\u961f\u3001\u677f\u7403\u5de5\u4f5c\u5ba4"} +{"id": "4001170", "video_name": "a8447870-8f6a-5249-98bd-a4ce6c10d3b5", "text": "\u4e2d\u56fd\u6c5f\u5357\u6c34\u4e61\u7684\u906e\u9633\u8239\u518d\u6b21\u884c\u9a76\u3002"} +{"id": "4001171", "video_name": "27f6d6d9-aebb-526e-aa56-089bac8e5777", "text": "\u51cb\u8c22\u7684\u82b1\u6735\u5728\u8352\u51c9\u7684\u82b1\u56ed\u91cc\u6447\u66f3\u7740\uff0c\u989c\u8272\u9eef\u6de1\uff0c\u60c5\u7eea\u6c89\u90c1\u3002"} +{"id": "4001172", "video_name": "c9421900-88f3-55b2-aea1-847a831f3b9d", "text": "\u4e00\u6761\u7b14\u76f4\u5b64\u72ec\u7684\u8857\u9053\u591c\u665a\u7684\u753b\u9762\uff0c\u8857\u706f\u6563\u53d1\u51fa\u4e00\u79cd\u51c6\u786e\u7684\u5149\u8292\uff0c\u4e00\u7247\u96fe\u6c14\uff0c"} +{"id": "4001173", "video_name": "00c02fca-6c1d-579c-882e-f68ab48ee9d4", "text": "\u85af\u7247\uff0c\u90a3\u8106\u97f5\u4f3c\u4e4e\u662f\u53e3\u4e2d\u7684\u97f3\u7b26\uff0c\u4e00\u8f7b\u54ac\uff0c\u4fbf\u594f\u54cd\u4e86\u7f8e\u5999\u7684\u65cb\u5f8b\u3002\u6bcf\u4e00"} +{"id": "4001174", "video_name": "06699836-b136-542c-a237-e211c566f3ed", "text": "\u73b0\u5b9e\u7684\u6d77\u6d0b\u81ea\u7136\u89c6\u9891"} +{"id": "4001175", "video_name": "a6d93970-cdd6-52dc-a9af-f0c987d5ca3b", "text": "\u60b2\u4f24\u7684\u7537\u4eba\u7a7f\u7740\u9ed1\u8272\u886c\u886b\uff0c\u53ea\u6709\u7eff\u5e55\u80cc\u666f\u3002"} +{"id": "4001176", "video_name": "9f45c87c-7e6b-51f3-8d65-34ba612a61c6", "text": "\u521b\u9020\u4e00\u4e2a\u548c\u72d7\u73a9\u800d\u7684\u7ed8\u753b\u98ce\u683c\u7684\u56fe\u50cf\uff0c\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u81ea\u7136\u73af\u5883\u4e2d\uff0c\u62cd\u6444\u4e00\u5f20\u903c\u771f\u3001\u6e05\u6670\u3001\u7f8e"} +{"id": "4001177", "video_name": "bba19fc6-b52c-5d28-8ac4-375cd3a4efa1", "text": "\u521b\u5efa\u4e00\u4e2a\u6807\u5fd7\uff0c\u5176\u4e2d\u5305\u62ec\u4e00\u4e2a\u7eff\u8272\u7684\u3001\u98ce\u683c\u5316\u7684\u8349\u836f\u4e0e\u4f20\u7edf\u7684\u963f\u65af\u514b\u52d2\u5e87\u4fc4\u65af\u4e4b\u6756\u76f8\u7ed3\u5408\u3002"} +{"id": "4001178", "video_name": "0ee33b6d-bfef-570a-ad14-f91ab6cec72a", "text": "\u7d22\u5c3c\u514b\u7a7f\u7740\u58a8\u897f\u54e5\u4e50\u961f\u670d\u88c5\uff0c\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u6f14\u594f\u58a8\u897f\u54e5\u4e50\u66f2\uff0c\u6709\u86cb\u7cd5"} +{"id": "4001179", "video_name": "c3420acc-fb76-5e78-a0bc-060ae6ae7b21", "text": "\u6c7d\u8f66\u95e8\u53cd\u5c04\uff0c\u4f4e\u5e95\u76d8\u8f66\uff0c\u65e0\u4eba\uff0c\u8857\u9053\uff0c\u7ebd\u7ea6\uff0c\u5e03\u6717\u514b\u65af\uff0c\u96e8\u5929\u3002\u4fe1\u606f\uff1a\u6d82\u9e26\uff08\u5b57\u4f53\uff1a\u73b0"} +{"id": "4001180", "video_name": "28a75e50-fa52-52ac-b84f-28941f92f04d", "text": "\u7a7a\u95f4\u7ad9\uff0c\u6f02\u6d6e\u7684\u4eba\uff0c\u884c\u661f\uff0c\u4e24\u4e2a\u536b\u661f\u3002"} +{"id": "4001181", "video_name": "a09aa6e6-392d-546f-a704-57c5a3dcfa99", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u793c\u670d\u7684\u5feb\u4e50\u7f8e\u4e3d\u7684\u516c\u4e3b\uff0c\u624b\u7275\u7740\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u7687\u5bb6\u670d\u9970\u7684\u5feb\u4e50\u82f1"} +{"id": "4001182", "video_name": "ee6d249e-2e21-5ac8-abeb-9ce1378cbb0e", "text": "\u5c11\u5973\u88ab\u57cb\u5728\u68ee\u6797\u4e2d\u7684\u704c\u6728\u4e1b\u91cc\uff0c\u6df1\u5ea6\uff0c\u620f\u5267\u6027\u7684\u7167\u660e\uff0c\u9e1f\u77b0\u89c6\u89d2\uff0c\u795e\u79d8\u7684\u6c1b"} +{"id": "4001183", "video_name": "acd06b71-4937-5894-91ee-b663fe5b9676", "text": "\u5706\u5f62\u9502\u7535\u6c60\u4ece\u91c7\u77ff\u5230\u7535\u82af\u518d\u5230\u7535\u6c60\u7ec4\uff0c\u518d\u5230\u7535\u7f51\u50a8\u80fd\uff0c\u518d\u5230\u56de\u6536\u518d\u5236\u6210\u7535\u82af\u3002"} +{"id": "4001184", "video_name": "d7550135-d879-5f2f-ad38-0e5885b7471e", "text": "\u8ba9\u4e00\u4e2a\u5973\u5b69\u5728\u5979\u4eec\u7684\u6751\u5e84\u91cc\u5feb\u4e50\u5730\u751f\u6d3b\uff0c\u73b0\u5b9e\u3001\u9e1f\u8bed\u60a0\u626c\u3001\u7f8e\u4e3d\u7684\u5bb6\u56ed\u3001\u5230\u5904\u90fd\u662f"} +{"id": "4001185", "video_name": "97655fb5-cd76-51f9-aaea-ae23411d3b34", "text": "\u4e00\u4e2a\u77ed\u89c6\u9891\u5c55\u793a\u4e86\u4ef0\u5367\u4f4d\u5b8c\u6210\u7684\u810a\u67f1\u65cb\u8f6c\u8fd0\u52a8\u3002\n\nSource sentence: The company's profits have increased by 10% compared to last year. \n\n\u516c\u53f8\u7684\u5229\u6da6"} +{"id": "4001186", "video_name": "dc27769c-8947-543c-9b9b-f5c6c5f86f87", "text": "\u8ff7\u60d1\u7684\u4f0a\u5229\u4e39\u7ad9\u5728\u7ebd\u7ea6\u5e02\u4e2d\u5fc3\u3002"} +{"id": "4001187", "video_name": "9f23c5e5-ffd7-5ffb-a1df-f1f217d70c70", "text": "\u4e00\u53ea\u9e3d\u5b50\u98de\u884c\uff0c\u7136\u540e\u9010\u6e10\u53d8\u6210\u624b\u673a\u82af\u7247\u3002"} +{"id": "4001188", "video_name": "5043dc12-79c3-5ad5-ad33-a93ff60476d7", "text": "\u6253\u9020\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u52a8\u753b\uff0c\u5c55\u793a\u4e00\u4e2a\u6e29\u99a8\u8212\u9002\u7684\u5ba2\u5385\uff0c\u88c5\u9970\u7740\u96c5\u81f4\u7684\u5bb6\u5c45\u6446\u8bbe\uff0c\u914d\u6709\u718a"} +{"id": "4001189", "video_name": "a3e33a09-c7a2-5671-9993-23e69cc95c8c", "text": "\u4ed6\u5728\u670d\u7528LSD\u540e\u5728\u96ea\u5730\u91cc\u7761\u7740\u4e86\u3002"} +{"id": "4001190", "video_name": "c8a369f6-dff7-53f0-9c6f-2f2349910d6d", "text": "\u4e00\u4e2a\u7a7f\u7740\u6821\u670d\u7684\u7537\u5b69\u548c\u5973\u5b69\uff0c\u4ee5\u5361\u901a\u5f62\u5f0f\u5448\u73b0\uff0c\u68a6\u5e7b\u822c\u7684\u80cc\u666f\u3002"} +{"id": "4001191", "video_name": "8e35751a-575a-5247-adaa-be4ae37eefcb", "text": "\u9a6c\u514b\u676f\u5934\u5728\u9633\u5149\u660e\u5a9a\u7684\u96c6\u5e02\u4e0a\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "4001192", "video_name": "f63442f2-ee46-5dda-a398-a170a2081027", "text": "\u4e00\u5f20\u8001\u5e74\u592b\u5987\u7684\u7167\u7247\u3002"} +{"id": "4001193", "video_name": "6df36702-9b17-5859-80b1-bb3eeb3bc91c", "text": "\u5177\u6709\u5927\u7f29\u653e\u7684\u7535\u5b50\u7535\u8def\u3002\u4fe1\u606f\uff1aParritabrava\uff08\u5b57\u4f53\uff1aMODERN\uff09\u3002"} +{"id": "4001194", "video_name": "48e47351-27f9-597c-b080-c39ea4fc88ae", "text": "\u4e00\u6761\u4ece\u4fa7\u9762\u770b\u5230\u7684\u5361\u901a\u8def\u3002\u4e3b\u8981\u662f\u767d\u8272\u3002"} +{"id": "4001195", "video_name": "9cf2c66c-92c1-54c0-8272-1a2261c957d9", "text": "\u5305\u542b\u901a\u4fe1\u7f51\u7edc\u7684\u5404\u79cd\u6697\u8272\u8c03\u5fae\u5999\u53d8\u5316\u7684\u56fe\u8868\u3002"} +{"id": "4001196", "video_name": "67c6fac5-3557-51b2-b5c9-8b69eee80eab", "text": "\u7528\u94b1\u505a\u6210\u548c\u4eba\u7c7b\u5fc3\u810f\u4e00\u6a21\u4e00\u6837\u7684\u5f62\u72b6\uff0c\u5e76\u4e14\u53ef\u4ee5\u8df3\u52a8\u3002"} +{"id": "4001197", "video_name": "19b665ab-d8e1-5efb-9e95-5d7914a86d2f", "text": "\u9b54\u672f\u5e08\u5411\u89c2\u4f17\u5c55\u793a\u4e00\u5f20\u724c\u3002"} +{"id": "4001198", "video_name": "dd8f90fa-8298-587f-b2e4-bfb967857996", "text": "\u82f1\u56fd\u6d77\u5cb8\u7ebf\u7684\u98ce\u666f\u822a\u62cd\u4ece\u6d77\u9762\u4e0a\u770b\u3002"} +{"id": "4001199", "video_name": "cbd4c9f9-c49a-5318-ae26-9eecd58aa68c", "text": "\u591c\u91cc\u6c7d\u8f66\u7684\u706f\u5149\u7167\u5728\u5e18\u5b50\u7a97\u6237\u4e0a\u3002"} +{"id": "4001200", "video_name": "899c4b86-c4d7-5cf4-a161-a95c6e42c14f", "text": "\u821e\u53f0\u4e0a\u7684\u8bf4\u5531\u6b4c\u624b\uff0c\u4ee53D\u52a8\u6f2b\u827a\u672f\u98ce\u683c\u5448\u73b0\uff0c\u7231\u60c5\u30018K\u3001\u8096\u50cf\u3001\u6b22\u6b23\u76843D\u5361\u901a"} +{"id": "4001201", "video_name": "08d8e47a-c40b-56e6-95cd-995ac0a5a09a", "text": "\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u8bb0\u5f55\u4e0b\u4e86\u5317\u54e5\u672c\u54c8\u6839\u4ee5\u5317\u7684\u5e26\u6709\u5927\u578b\u3001\u751f\u673a\u52c3\u52c3\u3001\u91ce\u6027\u82b1\u56ed\u7684\u53ef\u7231\u5e15\u7279\u91cc"} +{"id": "4001202", "video_name": "1ad7f6bc-520f-52d7-a9bf-9d36e4a1c341", "text": "\u52a8\u753b\u7247\uff0c\u4eba\u4eec\u5728\u684c\u5b50\u65c1\u4ea4\u8c08\u3002"} +{"id": "4001203", "video_name": "008c7243-4eb0-5d91-a7eb-88caed92648a", "text": "\u4e24\u4e2a\u5370\u5ea6\u5a46\u7f57\u95e8\u7537\u5b69\u5728\u5f53\u5730\u6751\u5e84\u6454\u8de4\u3002"} +{"id": "4001204", "video_name": "5d0add4c-34bd-5b35-bcc4-0b9604fd7efc", "text": "\u72d7\u8df3\u4e0a\u9a6c\u80cc\uff0c8K\uff0c\u903c\u771f\u7684\u7167\u7247\u7ea7\u522b\u3002"} +{"id": "4001205", "video_name": "4dee3f19-bd4d-57c9-a82c-843b8389717d", "text": "\u4e00\u53ea\u900f\u660e\u7684\u8774\u8776\uff0c\u4e00\u4e2a\u51ac\u5929\u7684\u68ee\u6797\uff0c\u6444\u50cf\u673a\u4ece\u8774\u8776\u62cd\u6444\u5230\u6df1\u6797\uff0c\u6700\u540e\u8774"} +{"id": "4001206", "video_name": "4c02dad5-ce2a-5e5e-a5ca-e4858afe8168", "text": "\u7c89\u8272\u732b\u53d8\u6210\u4e86\u8759\u8760\u7535\u5f71\u5316\u3002"} +{"id": "4001207", "video_name": "eb865047-0a6b-5980-8183-5c4ecdb09de5", "text": "\u6708\u4eae\uff0c\u4eb2\u7231\u7684\u6708\u4eae\uff0c\u8fdc\u5728\u5929\u8fb9\uff0c\u716e\u996d\u548c\u6241\u8c46\u3002"} +{"id": "4001208", "video_name": "2e6d2197-f36c-5cf8-af4f-d18038ff6559", "text": "\u5b87\u5b99\u4e00\u76f4\u662f\u4eba\u7c7b\u60ca\u5947\u548c\u795e\u79d8\u7684\u6e90\u6cc9\u3002\u4ece\u65f6\u95f4\u7684\u9ece\u660e\u5f00\u59cb\uff0c\u6211\u4eec\u5c31\u62ac\u5934\u4ef0\u671b\u661f\u7a7a\uff0c\u60f3\u77e5\u9053\u6211\u4eec\u661f\u7403"} +{"id": "4001209", "video_name": "d062e9e9-664c-57ef-b24d-e928c039048b", "text": "\u5728\u5b9e\u9a8c\u5ba4\u4e2d\u6a2a\u8de8\u4e00\u4e0b\uff0c\u5c55\u73b0\u51fa\u590d\u6742\u7684\u673a\u5668\uff0c\u88ab\u4e00\u8fde\u4e32\u7684\u84dd\u5b9d\u77f3\u548c\u9752\u84dd\u8272\u5149\u8292\u6240"} +{"id": "4001210", "video_name": "037d63e5-2973-5a8e-a54e-9db2a0b44e9b", "text": "\u53ea\u6709\u4e00\u53ea\u8001\u864e\u548c\u4e00\u53ea\u8001\u9f20\u5728\u4e1b\u6797\u4e2d\u3002"} +{"id": "4001211", "video_name": "a8e2f561-5b34-5921-a5ed-43093a89274b", "text": "\u4ee5\u5723\u7ecf\u4e3a\u57fa\u7840\uff0c\u5c06\u7ea6\u4f2f\u548c\u4ed6\u7684\u670b\u53cb\u56f4\u5750\u5728\u4e00\u8d77\uff0c\u63a2\u8ba8\u4eba\u7c7b\u82e6\u96be\u7684\u610f\u4e49\u3002 \u4ee58k\uff0cfulhd\u7684\u6e05"} +{"id": "4001212", "video_name": "a09405f0-4688-5d74-abb9-45ab14be7c2c", "text": "\u52a8\u6f2b\u3001\u591c\u665a\u3001\u5730\u4e0a\u4e71\u4e03\u516b\u7cdf\u7684\u4e66\u7c4d\u3001\u5973\u5b69\u9759\u9759\u5730\u8eba\u5728\u5e8a\u4e0a\u6253\u7740\u8033\u673a\u3001\u624b\u673a\u5728\u5973"} +{"id": "4001213", "video_name": "5d3e3f39-0e1b-566d-9acf-89059edcbfa2", "text": "\u5973\u58eb\u5728\u5979\u5bb6\u91cc\u7167\u987e\u5927\u9ebb\u690d\u7269\u65f6\u88ab\u4e0d\u660e\u98de\u884c\u7269\u5e26\u8d70\u4e86\u3002"} +{"id": "4001214", "video_name": "3d841bdb-e13c-5b1c-9262-d8c9d250c0b0", "text": "\u5728\u591c\u665a\uff0c\u4e00\u6761\u9f99\u5728\u65e5\u672c\u5bfa\u5e99\u5468\u56f4\u98de\u821e\u3002"} +{"id": "4001215", "video_name": "318603fc-7806-57d8-a236-4e1d15247e0e", "text": "\u4e24\u4e2a\u7537\u5b69\u4e00\u8d77\u8d70\u8def\u3002\u9ad8\u5ea6\u8be6\u7ec6\u3001\u8d85\u9ad8\u6e05\u3001\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "4001216", "video_name": "80747759-9c17-5bd5-86e7-48c83479436c", "text": "\u4e2d\u56fd\u5973\u5b69\u62e5\u6709\u957f\u957f\u7684\u91d1\u53d1\uff0c\u770b\u8d77\u6765\u5f88\u81ea\u4fe1\u3002"} +{"id": "4001217", "video_name": "083ee08d-3ed9-5311-9c1f-ad64def38ef0", "text": "\u671d\u9c9c\u84df\u548c\u70e4\u8fc7\u7684\u897f\u846b\u82a6\u843d\u5728\u8106\u76ae\u62ab\u8428\u4e0a\u3002\u80cc\u666f\u91cc\uff0c\u77f3\u5934\u70e4\u7bb1\u91cc\u71c3"} +{"id": "4001218", "video_name": "5cf2b22a-932f-53b6-89a6-b0750b8ab8a3", "text": "\u5f53\u4f60\u6df1\u5165\u5730\u51dd\u89c6\u5929\u7a7a\u7684\u65f6\u5019\uff0c\u597d\u597d\u601d\u8003\u5b83\u3002"} +{"id": "4001219", "video_name": "68f370c3-06fa-5963-97f4-66fa1dfcddf5", "text": "\u80cc\u666f\u4e2d\u7684\u65f6\u949f\u4ee5\u4e0d\u540c\u7684\u901f\u5ea6\u6ef4\u7b54\u4f5c\u54cd\uff0c\u9610\u660e\u4e86\u8010\u5fc3\u548c\u4e0d\u540c\u7684\u8d22\u52a1\u65f6\u95f4\u8868\u7684\u6982\u5ff5\u3002"} +{"id": "4001220", "video_name": "20882da0-923a-551f-bb98-9262ef549735", "text": "\u4e4c\u65af\u6000\u4e9a\u591c\u5e97\u5728\u963f\u6bd4\u624e\u7684\u72c2\u6b22\u6d3e\u5bf9\u671f\u95f4\u3002"} +{"id": "4001221", "video_name": "f320a09d-6512-56ea-ae6a-6256750890a1", "text": "\u8001\u7684\u53d1\u73b0\u7684\u7535\u5f71\u955c\u5934\uff0c\u662f\u4e00\u4e2a\u88ab\u8352\u5c71\u5305\u56f4\u7684\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u623f\u5b50\u3002"} +{"id": "4001222", "video_name": "cda04314-d9bd-5317-87e5-7c0b44112ff8", "text": "\u7e41\u5fd9\u62e5\u6324\u7684\u5e7f\u573a\u4e0a\uff0c\u73b0\u4ee3\u57ce\u5e02\u7684\u4eba\u4eec\u5728\u591c\u665a\u4e2d\u7a7f\u68ad\uff0c\u57ce\u5e02\u7684\u706f\u5149\u65e0\u5904\u4e0d\u5728\u3002\u5177\u6709\u590d\u53e4"} +{"id": "4001223", "video_name": "9219131b-68e6-581e-a81d-f9fb3edbda11", "text": "\u628a\u5b83\u53d8\u62103D\u5e76\u52a0\u4e0a\u75a4\u75d5\u3002"} +{"id": "4001224", "video_name": "16925a21-1cf2-5702-a2c7-9f5fda5a4ea2", "text": "\u8fc8\u514b\u5c14\u8e0f\u4e0a\u4e86\u4e00\u6bb5\u65c5\u7a0b\uff0c\u65e8\u5728\u4fdd\u62a4\u4eba\u7c7b\uff0c\u9632\u6b62\u6bc1\u706d\u3002"} +{"id": "4001225", "video_name": "4ac300be-15aa-5351-ae25-b433dd74afbc", "text": "\u79d1\u6bd4\u00b7\u5e03\u83b1\u6069\u7279\u6253\u7bee\u7403\u7684\u52a8\u6f2b\u98ce\u683c\u77f3\u96d5\u3002"} +{"id": "4001226", "video_name": "688a66a9-fd54-5c43-9d20-b0d34e098d61", "text": "\u4e00\u4f4d\u4f18\u96c5\u7f8e\u4e3d\u7684\u82f1\u56fd\u5973\u58eb\u5e26\u7740\u987d\u76ae\u7684\u7b11\u5bb9\u671d\u6211\u5fae\u7b11\u3002"} +{"id": "4001227", "video_name": "86ff828f-c5f1-5b75-9f46-f29b0a2303ff", "text": "\u5170\u535a\u57fa\u5c3c\u5728\u96f7\u96e8\u4e2d\u7684\u6c99\u6f20\u4e2d\u884c\u9a76\uff0c\u4f34\u968f\u7740\u96e8\u6c34\u3002"} +{"id": "4001228", "video_name": "996d4319-8fae-5c31-9ddd-81e6b5c96448", "text": "\u968f\u98ce\u6447\u66f3\u7684\u68d5\u6988\u6811"} +{"id": "4001229", "video_name": "d592d7fa-308d-539e-85c7-ee018624f474", "text": "\u6bcd\u4eb2Chandraghanta\u5728Shardiya Navratri\u7684\u7b2c\u4e09\u5929\u53d7\u5230\u5d07\u62dc\u3002"} +{"id": "4001230", "video_name": "42df196c-c427-5f69-8263-69d4de8487e7", "text": "\u806a\u660e\u7684\u8001\u9b54\u672f\u5e08\u5750\u5728\u4ed6\u795e\u79d8\u7684\u4f4f\u6240\u91cc\uff0c\u5468\u56f4\u662f\u624b\u5de5\u827a\u54c1\u3002"} +{"id": "4001231", "video_name": "00e32b02-a7f4-5146-9321-aaf0e8e34221", "text": "\u9ad8\u5c14\u592b\u7403\u624b\u6b63\u5728\u7403\u573a\u4e0a\u6253\u7403\uff0c\u4ed6\u7684\u624b\u8868\u88ab\u653e\u5927\u4e86\u663e\u793a\u3002"} +{"id": "4001232", "video_name": "8612fb7d-f408-5cbe-bff8-61925a844f51", "text": "\u7eff\u5de8\u4eba\u4e0e\u65e0\u654c\u751f\u7269\u6fc0\u6218\uff0c\u7535\u5f71\u5f0f\u6444\u50cf\u673a\u3002"} +{"id": "4001233", "video_name": "1e9b6db1-5834-5891-9cb4-c5ead5beb833", "text": "\u4e54\u6cbb\u00b7\u534e\u76db\u987f\u6b65\u884c\u7387\u9886\u51b2\u950b\u3002"} +{"id": "4001234", "video_name": "7480fe46-fd09-545d-8d10-ffc17f1f32df", "text": "\u4e00\u67b6\u59dc\u997c\u98de\u673a\u649e\u4e0a\u4e86\u4e00\u5ea7\u51b0\u6dc7\u6dcb\u5854\u5e76\u7206\u70b8\u4e86\u3002"} +{"id": "4001235", "video_name": "b544d67e-677f-52e5-b547-18618bf7eedd", "text": "\u6258\u65af\u5361\u7eb3\u98ce\u666f\u5982\u753b\u7684\u8461\u8404\u56ed\uff0c\u8461\u8404\u6b63\u5728\u91c7\u6458\uff0c\u5915\u9633\u5728\u80cc\u666f\u4e2d\u843d\u4e0b\u3002"} +{"id": "4001236", "video_name": "69fa25cc-542f-54e1-ac88-99ff45a74567", "text": "room-service cart was discovered by a group of tourists.\n\nTranslated sentence: \u4e00\u7fa4\u6e38\u5ba2\u53d1\u73b0\u4e86\u4e00\u4e2a\u6d1e\u7a74\uff0c\u91cc\u9762\u6709\u4e00\u6761\u5c0f\u6eaa\u6d41\u6dcc\u7740\u5ca9\u6d46\uff0c\u8fd8\u6709\u4e00\u4e2a"} +{"id": "4001237", "video_name": "184f6ea4-02e2-5d45-885d-180113f74177", "text": "\u4e00\u4f4d\u5149\u5934\u3001\u70c8\u7130\u7ea2\u773c\u3001\u7a7f\u7740\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u5361\u901a\u98ce\u683c\u7537\u5b50\uff0c\u903c\u771f\u3001\u6d41\u7545\uff0c\u98ce\u9761"} +{"id": "4001238", "video_name": "4b86e69e-5ea8-589a-bf49-2bba0503f310", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u3001\u8272\u5f69\u6591\u6593\u7684\u8349\u5730\u4e2d\u5fc3\uff0c\u4f4f\u7740\u4e24\u4e2a\u5bc6\u4e0d\u53ef\u5206\u7684\u670b\u53cb\uff0c\u4ed6\u4eec\u7684\u540d\u5b57"} +{"id": "4001239", "video_name": "99fb594f-ec48-5d7f-8082-480bd33f9ccb", "text": "\u4e00\u540d12\u5c81\u5973\u5b69\u9a91\u7740\u9b54\u6cd5\u626b\u5e1a\u98de\u884c\uff0c\u98ce\u3001\u5929\u7a7a\u3001\u7f8e\u4e3d\u3001\u5409\u535c\u529b\u98ce\u683c\u3002"} +{"id": "4001240", "video_name": "e197490f-4045-5c75-bd1f-63260c934b5c", "text": "\u5341\u68f5\u5927\u77f3\u69b4\u6811\uff0c\u7a7a\u6c14\u548c\u96e8\u6c34\uff0c\u77f3\u69b4\u6389\u5728\u5730\u4e0a\u662f\u6700\u4f18\u8d28\u7684\u3002"} +{"id": "4001241", "video_name": "e16a6ee3-2024-5805-b1d0-eec4c119ccbd", "text": "\u5367\u5ba4\uff0c\u5927\u7a97\u6237\u53ef\u4ee5\u4fef\u77b0\u672a\u6765\u7684\u57ce\u5e02\uff0c\u7535\u5f71\u7ea7\u522b\uff0c4K\u3002"} +{"id": "4001242", "video_name": "0f47f857-3481-58b3-b938-b62e3d2816be", "text": "\u4e00\u540d\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u5728\u7ebd\u7ea6\u65f6\u4ee3\u5e7f\u573a\u9a91\u8fc7\u3002"} +{"id": "4001243", "video_name": "621e03bc-4885-5f6a-8e35-9c6db9fc1554", "text": "\u4e00\u4e2a\u98ce\u683c\u7c7b\u4f3c\u54c8\u5229\u6ce2\u7279\u7684\u7eb9\u7ae0\uff0c\u5c55\u793a\u589e\u6750\u5236\u9020\u5143\u7d20\u3002"} +{"id": "4001244", "video_name": "689517fc-bf27-5673-8b98-f03331a098d1", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u652f\u7b14\u4e00\u65e6\u88ab\u4f7f\u7528\u540e\u53ef\u4ee5\u88ab\u79cd\u690d\u5e76\u6210\u957f\u4e3a\u4e00\u68f5\u5de8\u5927\u7684\u690d\u7269\u3002"} +{"id": "4001245", "video_name": "0b481e64-61d9-5628-92b9-4d4a62f16558", "text": "\u5728\u5b87\u5b99\u4e2d\u7e5e\u8457\u5730\u7403\u65cb\u8f49\u7684\u651d\u5f71\u6a5f\uff0c\u592a\u7a7a\u8239\u4e5f\u5728\u90a3\u88e1\u3002"} +{"id": "4001246", "video_name": "99eccdde-47db-5051-96b0-b46643077145", "text": "\u4e00\u4e2a\u5b69\u5b50\u7684\u7279\u5199\uff0c\u4ed6\u53d7\u5230\u201cOTIS\u201d\u98d3\u98ce\u7684\u5f71\u54cd\uff0c\u773c\u91cc\u6709\u6cea\u6c34\u6ed1\u843d\u5230\u8138\u988a\u4e0a\uff0c\u6162\u52a8\u4f5c\uff0c"} +{"id": "4001247", "video_name": "a16fc318-7450-5f01-87a4-bed586d74dbe", "text": "\u6446\u949f\u5728\u6446\u52a8\uff0c\u7537\u5b69\u5de6\u53f3\u770b\u7740\u3002"} +{"id": "4001248", "video_name": "274e9de0-2956-583b-add6-a714d30be4f6", "text": "\u9b3c\u591c\uff0c\u8f66\u5934\u706f\u4eae\u7740\uff0c\u8f66\u5728\u79fb\u52a8\u3002"} +{"id": "4001249", "video_name": "d4d0b085-e59a-5244-a0e5-e0883f3c8472", "text": "\u521b\u9020\u4e00\u4e2a\u9a91\u9a6c\u5728\u6d77\u4e0a\u7684\u4eba\u7269\uff0c\u8fdb\u884c3D\u52a8\u753b\u3002"} +{"id": "4001250", "video_name": "371eab9a-92b6-5ee9-a27b-d5adcf6409ec", "text": "\u5929\u7a7a\u3001\u592a\u9633\u3001\u4e91\u548c\u6d77\u7684\u7167\u7247\u3002"} +{"id": "4001251", "video_name": "6fcc4ec8-7644-5719-9821-efbf069209d4", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b50\u6b63\u5728\u8131\u4e0b\u5979\u7684\u5916\u5957\u3002"} +{"id": "4001252", "video_name": "5b83aed2-f776-5ef5-b8d7-769860bacd1a", "text": "\u7518\u9053\u592b\u548c\u5f17\u7f57\u591a\u4e3a\u4e89\u593a\u4e00\u73af\u4e4b\u6212\u800c\u8fdb\u884c\u62f3\u51fb\u3002"} +{"id": "4001253", "video_name": "d406d021-f47d-5ca9-9cdc-ed75a3f00091", "text": "\u5728\u6c99\u6f20\u91cc\u6c61\u67d3\u7684\u7eff\u8272\u6cb3\u6d41\uff0c\u6ca1\u6709\u4efb\u4f55\u690d\u7269\uff0c\u4ece\u9e1f\u77b0\u89c6\u89d2\u770b\u3002"} +{"id": "4001254", "video_name": "4e1b2e3a-cfa6-5c6a-b858-ef68ab8a08bd", "text": "\u5728\u54e5\u4f26\u6bd4\u4e9a\u5386\u53f2\u60a0\u4e45\u7684\u7f8e\u4e3d\u57ce\u5e02\u5361\u5854\u8d6b\u7eb3\u7684\u5bb6\u5ead\u9633\u53f0\u4e0a\uff0c\u6253\u9020\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u8fea"} +{"id": "4001255", "video_name": "dd767956-f425-5447-bcae-9534244c0843", "text": "\u8fd9\u4e9b\u5dee\u5f02\u521b\u9020\u4e86\u81ea\u7136\u5c4f\u969c\uff0c\u9632\u6b62\u6c34\u6df7\u5408\u3002"} +{"id": "4001256", "video_name": "5cfd34bd-d99e-5bf7-a01b-1885d9c75dab", "text": "\u65f6\u95f4\u6d41\u901d\u7684\u767d\u5929\u73b0\u4ee3\u57ce\u5e02\uff0c\u6781\u5176\u8be6\u7ec6\u7684\u5efa\u7b51\u7269\u3002"} +{"id": "4001257", "video_name": "622c1ab8-0635-5264-817f-2d473d1b9b3a", "text": "\u8ba9\u8fd9\u4e2a\u89d2\u8272\u6709\u52a8\u611f\uff0c\u8ba9\u4ed6\u5468\u56f4\u7684\u7269\u54c1\u7740\u706b\u3002"} +{"id": "4001258", "video_name": "e22656e8-318c-52d4-968e-cba4a35bd03a", "text": "\u4e00\u4e2a\u62df\u4eba\u5316\u7684\u65e7\u889c\u5b50\u8eb2\u5728\u6905\u5b50\u540e\u9762\uff0c\u770b\u7740\u4e00\u4e2a\u6f2b\u753b\u98ce\u683c\u7684\u4eba\u7269\uff0c9:16\u3002"} +{"id": "4001259", "video_name": "59756500-cc6e-5c4e-8483-2e0ad74dc263", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u7537\u5b69\u5728\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u9a7e\u9a76\u7740\u4e00\u8f86\u88c5\u6ee1\u6c34\u679c\u7684\u8d27\u8f66\uff0c\u5177\u67092.5D\u6548\u679c"} +{"id": "4001260", "video_name": "63c8be13-5fe9-5cc3-beb1-49aa35207ed0", "text": "\u4e00\u4e2a\u9ed1\u53d1\u5973\u5b69\u540d\u53ebSofa\u5750\u5728\u6c99\u53d1\u4e0a\u3002"} +{"id": "4001261", "video_name": "1f60cb63-0e0e-5088-8575-32fde542545e", "text": "\u5e74\u8f7b\u7684\u83b1\u6602\u7eb3\u591a\u00b7\u8fea\u5361\u666e\u91cc\u5965\u8bf4\u4e86\u810f\u8bdd"} +{"id": "4001262", "video_name": "69b7e512-ee02-502a-a9c8-96d4618955f4", "text": "\u4e00\u9762\u6d82\u9e26\u7684\u7816\u5899\uff1aNFT\u5df2\u6b7b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001263", "video_name": "522479ca-bc1c-5267-8ea3-fa5454171dba", "text": "\u5728\u4e00\u4e2a\u504f\u8fdc\u7684\u6751\u5e84\uff0c\u4e00\u540d\u5f3a\u58ee\u7684\u5a74\u513f\u5eb7\u5357\u5728\u4e00\u573a\u731b\u70c8\u7684\u66b4\u98ce\u96e8\u4e2d\u51fa\u751f\u3002\u957f\u8005"} +{"id": "4001264", "video_name": "fa00225e-7a06-5ee3-bf05-4fad5cc55737", "text": "\u8001\u4e66\u88ab\u5439\u6389\u7070\u5c18\uff0c4K\u3002"} +{"id": "4001265", "video_name": "f864c399-702e-5c69-a576-322f6cbb3451", "text": "\u5b87\u822a\u5458\u5728\u706b\u661f\u4e0a\u6652\u592a\u9633\uff0c\u592a\u9633\u8000\u6591\u5728\u80cc\u666f\u4e2d\u53ef\u89c1\uff0c\u4f7f\u7528Blender\u6e32\u67d3\u3002"} +{"id": "4001266", "video_name": "f4dbd185-e2ee-5905-bb6a-2b7f043d7844", "text": "\u4e00\u7fa4\u4eba\u80cc\u5bf9\u7740\u6444\u50cf\u673a\uff0c\u900f\u8fc7\u73bb\u7483\u671b\u7740\u5ba1\u8baf\u5ba4\u4e2d\u7684\u56da\u72af\uff0c90\u5e74\u4ee3\u9ed1\u767d\u7535\u5f71\uff0c\u5e93\u5e03"} +{"id": "4001267", "video_name": "85db77d6-b92b-5365-a676-b12fe665a97e", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u5ba2\u5385\u91cc\u62b1\u7740\u4e00\u53ea\u5c0f\u732b\u3002"} +{"id": "4001268", "video_name": "7bdfa03a-b7cf-53c8-a3d9-22c6411a4453", "text": "\u9ed1\u53d1\u5973\u5b50\u753b\u7740\u7cd6\u9ab7\u9ac5\u5986\u5bb9\u76d8\u95ee\u4e00\u540d\u88ab\u6346\u7ed1\u5728\u6905\u5b50\u4e0a\u7684\u7537\u5b50\uff0c\u7535\u5f71\u5316\u768465mm Panavision"} +{"id": "4001269", "video_name": "b55063dd-43ba-566d-aaa5-b79c2a50e66f", "text": "\u4eba\u53d8\u8001\u4e86\uff0c\u8001\u5e74\u4eba\uff0c\u53d8\u8001\uff0c\u5c81\u6708\u6d41\u901d\uff0c\u591a\u5e74\u7ad9\u5728\u6c99\u6f20\u4e2d\uff0c\u5927\u773c\u775b\u3002"} +{"id": "4001270", "video_name": "1b10d9d3-9154-5ac2-a4e3-e58d7ae43a69", "text": "\u4e00\u7fa4\u670b\u53cb\u505a\u51fa\u624b\u52bf\u8868\u793a\u540c\u610f\u3002"} +{"id": "4001271", "video_name": "b171ed9b-df13-5b47-a536-a49ef47c002c", "text": "\u5728\u7f8e\u4e3d\u5973\u58eb\u7684\u9762\u524d\u753b\u73ab\u7470\u3002"} +{"id": "4001272", "video_name": "aaa0b52d-b00c-5070-baeb-bed83ab17e3b", "text": "\u4e00\u5339\u9a6c\u4e0a\u9a91\u7740\u4e00\u53ea\u5c0f\u556e\u9f7f\u52a8\u7269\u3002\u903c\u771f\u800c\u4ece\u96fe\u6c14\u4e2d\u653e\u5927\u3002"} +{"id": "4001273", "video_name": "39617e28-b731-5086-8666-1bd99f6dca07", "text": "\u8fbe\u82ac\u5947\u7684\u7ef4\u7279\u9c81\u5a01\u4eba\u5728\u4ed6\u7684\u753b\u6846\u5185\u79fb\u52a8\u3002"} +{"id": "4001274", "video_name": "b1f5c35c-6204-53d3-811d-12059167d2dd", "text": "9:16\u683c\u5f0f\uff0c\u6469\u6d1b\u54e5\u5145\u6ee1\u6d3b\u529b\u7684\u57ce\u5e02\uff0c\u4eba\u4eec\u5728\u5468\u56f4\u8d70\u52a8\uff0c\u9a86\u9a7c\uff0c4K\u8d85\u9ad8\u6e05\uff0c\u6e05\u6670\u7684\u5206\u8fa8"} +{"id": "4001275", "video_name": "5f1b3c99-a5e3-599a-a017-b24eee93397d", "text": "\u7c89\u5f69\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u8336\u4f1a"} +{"id": "4001276", "video_name": "93adbe51-533d-5251-a023-2daf688a4ed0", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u9a7e\u9a76\u6c7d\u8f66\u7a7f\u8fc7\u8302\u5bc6\u7684\u68ee\u6797\u3002"} +{"id": "4001277", "video_name": "63c230e7-6304-5db5-b0d3-f49a6897bd20", "text": "\u4eba\u7c7b\u7684\u672a\u6765\uff0c\u65f6\u95f4\u6d41\u901d\u3002"} +{"id": "4001278", "video_name": "b0b9d9a6-88f8-5669-ab57-cff823521cf3", "text": "\u4e00\u4e2a\u7f8e\u5973\uff0c\u8df3\u821e\uff0c\u7a7f\u7740\u6027\u611f\u7684\u8863\u670d\u3002\u7b26\u5408\u4e9a\u6d32\u5ba1\u7f8e\u6807\u51c6\u3002\u65f6\u957f\u4e3a15\u79d2\u3002"} +{"id": "4001279", "video_name": "34857c91-5d48-5cc4-a833-d521a37f1a4f", "text": "\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\u7740\u4e00\u53ea\u86f9\uff0c\u88ab\u84dd\u8272\u548c\u7d2b\u8272\u7684\u8774\u8776\u6240\u73af\u7ed5\u3002"} +{"id": "4001280", "video_name": "5cc662e2-290d-5c14-942e-540289236af4", "text": "\u4ece\u300a\u51b0\u6cb3\u4e16\u7eaa\u300b\u4e2d\u7684\u5c0f\u677e\u9f20Sid\u98de\u8d8a\u6708\u7403\u4e2d\u5fc3\uff0c\u53bb\u62ff\u4e00\u4e2a\u521a\u521a\u8d85\u51fa\u624b\u81c2\u8303\u56f4\u7684\u6a61"} +{"id": "4001281", "video_name": "b6a4c00c-1ede-5457-9562-ee6b89b3525c", "text": "\u83b7\u53d6\u56fe\u50cf\u5e76\u62d2\u7edd\u5b83\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001282", "video_name": "50eadff4-eeda-54d0-9dc3-287a2b527f5c", "text": "\u611f\u4eba\u81f3\u6df1\u7684\u8036\u7a23\u4e0b\u964d\u5230\u5730\u72f1\u6216\u54c8\u8fea\u65af\u5e76\u5ba3\u544a\u4e86\u4ed6\u5728\u6492\u65e6\u548c\u4ed6\u7684\u8ffd\u968f\u8005\u4e2d\u7684\u80dc\u5229\uff0c\u5236"} +{"id": "4001283", "video_name": "4afc5db5-9c5c-5dbf-9ce3-aee452ebff56", "text": "\u7537\u5b69\u5728\u4ed6\u7684\u793e\u4ea4\u9879\u76ee\u4e2d\u7b11\u4e86\u3002"} +{"id": "4001284", "video_name": "e8c4d497-d944-5dc6-bb09-b61110dcfd82", "text": "\u51b0\u51bb\u3001\u5206\u79bb\u3001\u5730\u7403\u4e4b\u5fc3\u3001\u6982\u5ff5\u827a\u672f\u3002"} +{"id": "4001285", "video_name": "6c1c8f4c-fa81-59ca-963c-440959869bdc", "text": "\u4e00\u4e2a\u4eba\u98de\u7740\u8fdb\u5165\u62e5\u6324\u7684\u4f53\u80b2\u573a\u3002"} +{"id": "4001286", "video_name": "2db87093-d762-54f8-97b1-4aa53fa62d31", "text": "\u8fd9\u4e2a\u4eba\u5f00\u59cb\u6cbf\u7740\u5c0f\u8def\u8d70\uff1b\u6bcf\u4e00\u6b65\u90fd\u88ab\u5927\u81ea\u7136\u7684\u58f0\u97f3\u6240\u5f3a\u8c03\u2014\u2014\u6811\u53f6\u7684\u6c99\u6c99\u58f0\uff0c\u8fdc\u5904\u9e1f\u53eb\u58f0"} +{"id": "4001287", "video_name": "df96444b-0aed-577c-abd4-a2b6c4adaf2b", "text": "20\u4e16\u7eaa20\u5e74\u4ee3\uff0c\u4ece\u4e0a\u5f80\u4e0b\u7684\u65e0\u58f0\u7535\u5f71\u955c\u5934\u4e2d\uff0c\u4eba\u4eec\u5728\u5706\u5708\u91cc\u5954\u8dd1\u3002"} +{"id": "4001288", "video_name": "83b71968-1d61-5458-9016-0cea94da8bdc", "text": "\u4e00\u53ea\u597d\u5947\u7684\u677e\u9f20\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u62ff\u7740\u4e00\u4e2a\u673a\u68b0\u88c5\u7f6e\u3002"} +{"id": "4001289", "video_name": "22175044-b3f1-5700-a417-a7b68bd5b2ec", "text": "\u91d1\u5b57\u5854\u4e2d\u8272\u5f69\u6591\u6593\u7684\u65e5\u843d\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3002\u4fe1\u606f\uff1aPOESISMO\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001290", "video_name": "6aa22e1c-e960-5d54-bb20-afc71e782cf9", "text": "\u5341\u53ea\u718a\u76f4\u7acb\u7740\u6392\u6210\u4e00\u6392\u8d70\u8fc7\u68ee\u6797\u4e2d\u7684\u4e00\u95f4\u6728\u5c4b\u3002"} +{"id": "4001291", "video_name": "236710be-20f6-542e-9a25-8af9a435e2a4", "text": "\u7eff\u8272\u7684\u6ce1\u6ce1\u5973\u5b69\u5728\u591c\u665a\u5f00\u7740\u4e00\u8f86\u65f6\u9ae6\u7684\u8001\u7237\u8f66\u5728\u6d1b\u6749\u77f6\u884c\u9a76\u3002"} +{"id": "4001292", "video_name": "48f441fa-92a4-5173-98cb-06db494e75d0", "text": "\u7167\u7247\u4e0a\u662f\u4e00\u53ea\u8001\u864e\u7ad9\u5728\u6e38\u6cf3\u6c60\u65c1\u8fb9\uff0c\u80cc\u666f\u662f\u767d\u8272\u8c03\u7684\u8c6a\u534e\u4f4f\u5b85\uff0c\u5c71\u5ce6\u5728\u540e\u9762\u3002"} +{"id": "4001293", "video_name": "404ff273-cf3d-5b7e-849c-6ec07285dc4f", "text": "\u6bc1\u706d\u6218\u58eb\u8fd9\u4e2a\u6e38\u620f\u6539\u7f16\u6210\u7535\u5f71\u3002"} +{"id": "4001294", "video_name": "c77be7c4-6c8b-5790-b3af-cfb0c4d2ef9a", "text": "\u4e09\u540d\u8eab\u7a7f\u5947\u88c5\u5f02\u670d\u7684\u7537\u5b50\u9a91\u7740\u88c5\u9970\u6709LED\u706f\u7684\u81ea\u884c\u8f66\uff0c\u5728\u6c99\u6f20\u4e0a\u4e0e\u4e00\u6392\u7b49\u5f85\u51fa\u6c99\u6f20\u7684\u4f11"} +{"id": "4001295", "video_name": "ed23b658-aa64-5ed3-861e-6e64dbfe1763", "text": "\u521b\u9020\u4e00\u4e2a\u751f\u52a8\u7684\u89c6\u89c9\u573a\u666f\uff0c\u6355\u6349\u5230\u5c9b\u5c7f\u4ece\u5f7c\u6b64\u548c\u6444\u50cf\u673a\u6f02\u6d6e\u5f00\u6765\u7684\u77ac\u95f4\u3002\u5168\u666f\u89c6\u56fe\u3002 \n\nSource"} +{"id": "4001296", "video_name": "e2b8cc65-4aa6-50dd-8264-8b2c72c56b6e", "text": "\u6c34\u83b2\u5728\u5b81\u9759\u7684\u7eff\u8272\u6c60\u5858\u4e2d\u7f13\u6162\u79fb\u52a8\uff0c\u4e00\u53ea\u767d\u8272\u7684\u8774\u8776\u6162\u6162\u964d\u843d\u5728"} +{"id": "4001297", "video_name": "73226464-f390-5904-b141-b742ce07f1ee", "text": "\u521b\u4f5c\u4e00\u4e2a\u52a8\u753b\u5361\u901a\uff0c\u8bb2\u8ff0\u4e00\u8258\u5916\u661f\u98de\u8239\u5760\u6bc1\u5728\u4e00\u4e2a\u6708\u5149\u4e0b\u7684\u5bb6\u5ead\u540e\u9662\uff0c\u5927\u5c0f\u4e0e\u72d7\u5c4b\u76f8\u5f53\u3002"} +{"id": "4001298", "video_name": "7a8dc013-4194-5418-897e-12374af632af", "text": "\u4e00\u8f86\u5e26\u6709\u610f\u5927\u5229\u56fd\u65d7\u7684\u63fd\u80dc\u8fd0\u52a8\u8f66"} +{"id": "4001299", "video_name": "9cafab63-c7ed-5d0a-979b-9137760f557e", "text": "\u673a\u5668\u4eba\u4e4b\u95f4\u7684\u67aa\u6218\uff0c\u661f\u9645\u4e89\u9738\u5f00\u59cb\u3002"} +{"id": "4001300", "video_name": "c2e25471-1855-5298-84c1-de01cd879a87", "text": "\u5de5\u4f5c\u52aa\u529b\u7684\u9521\u514b\u7535\u89c6\u65b0\u95fb\u4e3b\u6301\u4eba\u80cc\u9762\uff0c\u6234\u7740\u7ea2\u8272\u5934\u5dfe\u548c\u7070\u8272\u8fd0\u52a8\u886b\uff0c\u5728\u7f16\u8f91\u684c\u4e0a\u5403\u7740"} +{"id": "4001301", "video_name": "01edac4b-a866-5c3b-9940-05acfb5fe734", "text": "\u7a7f\u7740\u9ad8\u53ef\u89c1\u5ea6\u9a6c\u7532\u7684\u5de5\u4eba\u5728\u9ad8\u901f\u516c\u8def\u8fb9\u4fee\u7406\u6b27\u6d32\u5361\u8f66\u4e0a\u7684\u8f6e\u80ce\u3002"} +{"id": "4001302", "video_name": "bcbd820f-e249-5274-b935-5b0e433e2740", "text": "\u8bf7\u8ba9\u8fd9\u4e2a\u4eba\u4ece\u4e00\u4e2a\u76d1\u63a7\u6444\u50cf\u5934\u524d\u8d70\u8fc7\uff0c\u4ed6\u6b63\u5728\u4e00\u4e2a\u50a8\u7269\u7bb1\u533a\u8d70\u8def\u3002"} +{"id": "4001303", "video_name": "12d97c3f-b6a0-5480-a528-9e33f02131c5", "text": "\u5728\u6cf0\u5766\u5c3c\u514b\u53f7\u4e0a\uff0c\u6709\u4e00\u53ea\u767d\u732b\uff0c\u80cc\u666f\u662f\u5915\u9633\u3002"} +{"id": "4001304", "video_name": "354f7244-6706-50de-82ae-3f43ebef30bd", "text": "\u6d63\u718a\u5750\u5728\u6c99\u6f20\u91cc\u54ed\u6ce3\uff0c\u8ba9\u5929\u7a7a\u53d8\u5f97\u620f\u5267\u6027\u548c\u60b2\u4f24\uff0c\u5982\u540c\u7535\u5f71\u4e00\u822c\u3002"} +{"id": "4001305", "video_name": "52714148-274b-5b61-ba93-1704a9f28dca", "text": "\u6885\u8d5b\u5fb7\u65af\u4ece1960\u5e74\u52302023\u5e74\u7684\u6f14\u53d8\uff0c1\u5206\u949f\u3002"} +{"id": "4001306", "video_name": "a8ca8de5-6701-5e4a-a28f-aaa505d0e67f", "text": "\u4e00\u4e2a\u6234\u7ea2\u5e3d\u5b50\u7684\u72d7\u6ed1\u4e0b\u6c34\u6c60\u6ed1\u68af\u3002"} +{"id": "4001307", "video_name": "854c5beb-3ff1-5e5a-bdaa-89514ff2776f", "text": "\u79e6\u65f6\u660e\u6708\u3001\u6c49\u65f6\u5173\u5c71"} +{"id": "4001308", "video_name": "db294e12-e8e0-5af2-a425-4669bbb52099", "text": "\u5361\u901a\u53ef\u7231\u7684\u5bb6\u3002\u5916\u9762\uff0c\u592b\u59bb\u7ad9\u5728\u884c\u674e\u65c1\u51c6\u5907\u51fa\u95e8\u65c5\u884c\u3002\u59bb\u5b50\u6000\u5b55\u4e86\u3002\u5929\u7a7a\u4e2d\uff0c\u4e00\u67b6"} +{"id": "4001309", "video_name": "27e3fd22-6b9a-5e7b-a689-8529b92c1902", "text": "\u5f3a\u8c03\u8fd9\u7247\u8ff7\u4eba\u571f\u5730\u7684\u72ec\u7279\u4e4b\u5904\u3002"} +{"id": "4001310", "video_name": "962fe7c8-2681-5f4c-b9e8-551fd41613c8", "text": "\u4e00\u4e2a\u4eba\u6495\u5f00\u81ea\u5df1\u7684\u76ae\u80a4\u65f6\u7684\u5957\u5a03\u6548\u5e94"} +{"id": "4001311", "video_name": "f47015a6-f940-51ed-ba02-3a7df0e57260", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u5728\u6cb3\u5cb8\u4e0a\u73a9\u7740\u4e00\u53ea\u5c0f\u4e09\u89d2\u9f99\u3002"} +{"id": "4001312", "video_name": "9fe7276f-8117-5183-9d4c-f37b3f688f26", "text": "\u8ba9\u5934\u90e8\u8f6c\u52a8\u548c\u773c\u775b\u7728\u52a8\u3002"} +{"id": "4001313", "video_name": "9149053c-9541-5866-9a68-88088ee2a20a", "text": "\u84dd\u8272\u4eba\u98de\u5411\u661f\u7cfb\uff0c\u65c5\u884c\u8ff7\u5e7b\u836f\uff0c\u903c\u771f\u3002"} +{"id": "4001314", "video_name": "c4c11314-0aa7-5621-a3e1-0aae741977ee", "text": "\u5728\u4e00\u5bb6\u7f8e\u5bb9\u529e\u516c\u5ba4\u91cc\uff0c\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5750\u5728\u5de5\u4f5c\u684c\u524d\uff0c\u4e00\u4f4d\u8001\u4eba\u7ad9\u5728\u5973\u5b50\u5bf9\u9762\uff0c\u4ed6\u4eec\u6b63\u5728\u4ea4\u8c08\uff0c\u753b\u9762\u50cf\u52a8"} +{"id": "4001315", "video_name": "83e3a85f-cdf9-503a-9df1-40373b5fbb91", "text": "\u4e3b\u795e\u514b\u91cc\u5e0c\u7eb3\u5411\u963f\u8d3e\u5a1c\u89e3\u91ca\u300a\u6ce2\u683c\u74e6\u5fb7\u00b7\u5409\u5854\u300b\u7684\u52a8\u6f2b\u827a\u672f\u4f5c\u54c1\u3002"} +{"id": "4001316", "video_name": "8022958c-0f15-532a-87a3-77171883925a", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u6cd5\u5f8b\u7684\u89c6\u9891\uff0c\u753b\u9762\u4e2d\u6709\u4e00\u4f4d\u5f8b\u5e08\u5750\u5728\u684c\u524d\u601d\u8003\u548c\u5de5\u4f5c\u3002"} +{"id": "4001317", "video_name": "b97f932b-e9ae-534c-a36a-81937330c2f6", "text": "\u7528\u753b\u7b14\u6162\u6162\u5237\u51fa\u5b57\u6bcdANALGBTQFOB\uff08\u5b57\u4f53\uff1aCOMICS\uff09\u3002"} +{"id": "4001318", "video_name": "040b3910-cdc5-58d4-a024-2d3795f1a360", "text": "\u8759\u8760\u4fa0\uff0c\u8759\u8760\u4fa0\u7279\u5199\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\u5448\u73b0\u3002"} +{"id": "4001319", "video_name": "ece388f0-ec58-5ff8-bc7b-3cd89f34d6d8", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u98ce\u683c\u57ce\u5e02\u7684\u9ed1\u767d\u9897\u7c92\u7eb9\u7406\u7535\u5f71\u6548\u679c\n\nSource sentence: The teacher gave the students a challenging assignment to complete over the weekend. \n\n\u8001"} +{"id": "4001320", "video_name": "20a7eeb1-13dd-5048-b29e-564996b32768", "text": "\u5728\u68ee\u6797\u91cc\u4e3e\u8d77\u624b\u81c2\uff0c\u661f\u661f\u843d\u4e0b\u6765\u7684\u7537\u4eba\u3002 \n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u54aa\u6b63\u5728\u6905\u5b50\u4e0a\u7761"} +{"id": "4001321", "video_name": "48554491-385d-5f8c-a992-a170e375aa74", "text": "\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u91cc\uff0c\u53ea\u6709\u661f\u661f\u5fae\u5f31\u7684\u5149\u8292\u7167\u8000\u7684\u5c71\u8c37\u4e2d\uff0c\u6765\u81ea\u53e4\u4ee3\u4eba\u90e8\u843d\u7684\u730e\u4ebaK"} +{"id": "4001322", "video_name": "3ebf133c-87ff-5cc5-8cdc-c38deba41659", "text": "\u4e2d\u56fd\u8d22\u795e \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "4001323", "video_name": "84a41788-09f1-5bb8-8f2d-760c14f9ff86", "text": "\u8428\u59c6\u7537\u5b69\u6301\u6000\u7591\u6001\u5ea6\uff0c\u4f46\u540c\u610f\u5c1d\u8bd5\u6c34\u6676\u7403\u3002"} +{"id": "4001324", "video_name": "4664a999-4425-5165-9422-c276f4125eeb", "text": "\u5e9f\u5f03\u7684\u53e4\u4ee3\u5a5a\u793c\u573a\u666f\u3002\u6ca1\u6709\u65b0\u5a18\u65b0\u90ce\uff0c\u4e5f\u6ca1\u6709\u5ba2\u4eba\u3002\u88c5\u9970\u7269\u5df2\u7ecf\u7834\u635f\u3002\u5168\u666f\u89c6\u89d2\u3002"} +{"id": "4001325", "video_name": "c41b0e6b-e812-579b-a3fb-c8e9d347bccb", "text": "\u4e00\u4e2a\u6ca1\u6709\u5934\u7684\u7537\u4eba\u5728\u955c\u5b50\u524d\u8d70\uff0c\u4ed6\u7684\u5934\u5728\u955c\u5b50\u91cc\u53ef\u89c1\uff0c\u4f46\u8eab\u4f53\u65e0\u6cd5\u770b\u5230\u3002"} +{"id": "4001326", "video_name": "094bab6a-17d4-5b7a-aa4a-14fe54a92d40", "text": "\u4e00\u5ea7\u706b\u5c71\u5728\u9646\u5730\u4e0a\u55b7\u53d1\uff0c\u5176\u5012\u5f71\u5728\u6c34\u4e2d\u5448\u73b0\u66f4\u52a0\u903c\u771f\u7684\u753b\u9762\uff0c\u4ee5\u653e\u5927\u6548\u679c\u5c55\u73b0\u7ec6\u8282\u3002"} +{"id": "4001327", "video_name": "8b4afbcd-9b51-5221-b37e-cb08802ef752", "text": "\u4e00\u4e2a\u4e09\u7ef4\u7684\u5de5\u4f5c\u573a\u6240\uff0c\u684c\u5b50\u4e0a\u53ea\u6709\u6700\u5c11\u91cf\u7684\u7269\u54c1\u3002"} +{"id": "4001328", "video_name": "9c33b57e-968f-5986-958f-74ce115bbb5c", "text": "\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u51fa\u6f14\u7684GTA\u6e38\u620f\u5c01\u9762\u827a\u672f\uff0c\u8d85\u8be6\u7ec6\u3001\u8d85\u903c\u771f\uff0c\u91c7\u7528\u865a\u5e7b\u5f15\u64ce\u548cOctane"} +{"id": "4001329", "video_name": "98f2c346-2649-5d96-a6d9-da34ee9f8f44", "text": "\u5723\u8bde\u8001\u4eba\u4e3a\u5b69\u5b50\u4eec\u9001\u4e0a\u4e86\u73cd\u8d35\u7684\u793c\u7269\u3002"} +{"id": "4001330", "video_name": "4b93d6a4-b789-5d66-8f5b-905170169ff4", "text": "\u91cd\u73b0\u56fe\u7247\u573a\u666f\uff0c\u7167\u7247\u4e2d\u7684\u5973\u4eba\u5728\u8857\u4e0a\u9759\u9759\u5730\u8d70\u7740\uff0c\u590d\u5236\u4e0e\u56fe\u7247\u76f8\u540c\u7684\u9ad8\u8d28\u91cf\u548c\u8d85\u903c\u771f\u6548\u679c\u3002"} +{"id": "4001331", "video_name": "12751a1b-1db5-5040-bb29-580ee7075adc", "text": "\u5eb7\u683c\u9c81\u5728\u4ed6\u7684\u65f6\u95f4\u6905\u4e0a\u5f81\u670d\u8005"} +{"id": "4001332", "video_name": "58f834db-b214-584d-a699-2591a00a4eb8", "text": "\u4e00\u4f4d\u7a7f\u7740\u548c\u670d\u7684\u5973\u5b69\u770b\u7740\u955c\u5934\uff0c\u5fae\u7b11\u7740\u7728\u773c\u775b\uff0c\u80cc\u666f\u4e2d\u98ce\u5439\u6811\u5f71\u3002"} +{"id": "4001333", "video_name": "466ecb0c-731f-5a65-bf5b-6f44bec32af1", "text": "\u4e2d\u95f4\u6709\u96fe\u6c14\u7684\u4e1b\u6797\u91cc\u6709\u4e00\u6761\u6e05\u6f88\u7684\u6cb3\u6d41\u3002"} +{"id": "4001334", "video_name": "cedd64cd-d7c2-5e33-93fb-1b6b7ebd984b", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5c0f\u9ec4\u8272\u7b11\u8138\u4eba\u7269\u7a7f\u8fc7\u7ebd\u7ea6\u66fc\u54c8\u987f\u7684\u6570\u5b57\u975e\u540c\u8d28\u5316\u4ee3\u5e01\u6536\u85cf\u535a\u7269\u9986\u3002"} +{"id": "4001335", "video_name": "6824a1a3-2fa4-5ea3-9260-b9191cb497c8", "text": "\u65b0\u90ce\u548c\u65b0\u5a18\u5728\u6559\u5802\u91cc\u4e92\u76f8\u63a5\u543b\uff0c\u4f34\u968f\u7740\u843d\u65e5\u7684\u4f59\u6656\uff0c\u5448\u73b0\u51fa\u903c\u771f\u7684\u98ce\u683c\u3002"} +{"id": "4001336", "video_name": "8453b6c3-1f2a-5c9e-bf8e-62f58839a7e3", "text": "\u4e00\u53ea\u5927\u767d\u9ca8\u8dc3\u51fa\u6d77\u9762\uff0c\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u7f8e\u4e3d\u7684\u65e5\u843d\uff0c\u5f53\u5b83\u843d\u56de\u6d77\u4e2d\u65f6\uff0c\u6d77\u6d6a\u5f88\u5927\u3002"} +{"id": "4001337", "video_name": "6a3c10ae-4a21-536f-90f9-e329b8af5fb9", "text": "\u4e00\u4e2a\u89d2\u6597\u58eb\u7528\u5251\u653b\u51fb\u53e6\u4e00\u4e2a\u89d2\u6597\u58eb\u3002\u53f2\u8bd7\u822c\u7684\u573a\u666f\u3002"} +{"id": "4001338", "video_name": "c8d52940-16ad-58b7-b92b-c459b6aaba3d", "text": "\u516c\u5143755\u5e74\uff0c\u4e2d\u56fd\u5510\u671d\u4e0e\u5b89\u7984\u5c71\u53d1\u751f\u51b2\u7a81\uff0c\u5b89\u7984\u5c71\u662f\u5f53\u65f6\u7684\u9886\u8896\u3002\u6211\u60f3\u8981\u60f3\u8c61\u8fd9\u573a\u6218\u6597\uff0c\u5176\u4e2d"} +{"id": "4001339", "video_name": "b9dc82ce-ae8a-518a-9515-761f951c7b50", "text": "\u5730\u9762\u4e0a\u7684\u76f8\u673a\u5728\u6df1\u6797\u91cc\u3002"} +{"id": "4001340", "video_name": "172f751f-5792-5162-8c94-d04ca3e97c98", "text": "\u628a\u80cc\u666f\u6362\u6210\u73b0\u4ee3\u529e\u516c\u5ba4\u91cc\u7f8e\u4e3d\u7684\u4f1a\u8bae\u5ba4\u3002\u7ad9\u7740\u7684\u4eba\u662f\u516c\u53f8\u8001\u677f\u3002\u8ba9\u7ad9\u7740\u7684\u4eba\u5728\u89c6\u9891\u91cc\u53d1\u8868\u4e00\u573a"} +{"id": "4001341", "video_name": "e7c4b92a-de4e-52bb-bc31-5f2c44e3044b", "text": "\u6b63\u5728\u9010\u5757\u513f\u5efa\u9020\u7684\u6781\u7b80\u4e3b\u4e49\u7816\u623f\u3002"} +{"id": "4001342", "video_name": "c7b8c515-c101-5916-9595-b2fb49e3a383", "text": "\u4e00\u4e2a\u5341\u5c81\u7684\u91d1\u53d1\u3001\u7070\u773c\u775b\u7537\u5b69\u7684\u63d2\u56fe\uff0c\u548c\u4ed6\u7684\u6597\u725b\u72ac\u4e00\u8d77\u7ad9\u7740\uff0c\u770b\u8d77\u6765\u5f88\u8c03\u76ae\uff0c\u5361\u65af"} +{"id": "4001343", "video_name": "c2fd1f80-597f-5a0e-9af0-b052e0305e86", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u65e5\u843d\u65f6\u5750\u5728\u6e56\u8fb9\u3002\u6e56\u9762\u4e0a\u8986\u76d6\u7740\u8349\u548c\u91ce\u82b1\u3002\u5979\u9762\u5bf9\u7740\u91d1\u8272\u7684\u5c71\u5cf0\uff0c\u5b8c"} +{"id": "4001344", "video_name": "28e54491-900f-573d-8847-c5370e221c57", "text": "\u521b\u9020\u4e00\u5f20\u7167\u7247\uff0c\u5524\u8d77\u70ed\u5e26\u6d3e\u5bf9\u548c\u5df4\u897f\u6c1b\u56f4\u7684\u60c5\u611f\u3002"} +{"id": "4001345", "video_name": "19b85b29-b6f1-5d30-bcd3-4d5c6835525a", "text": "\u4e00\u4e2a\u672a\u6765\u611f\u5341\u8db3\u7684\u529e\u516c\u5ba4\uff0c\u62e5\u6709\u671d\u5411\u7e41\u5fd9\u5927\u90fd\u5e02\u7684\u5927\u578b\u7a97\u6237\u3002"} +{"id": "4001346", "video_name": "d7862e88-a0b4-5b96-a12e-3645cc4d2f17", "text": "\u8303\u5f0f\u563b\u54c8\u97f3\u4e50\u89c6\u9891\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "4001347", "video_name": "b8d325df-6989-5d9c-9ca4-8f512c976ba3", "text": "\u4e24\u4e2a\u5144\u5f1f\u7ad9\u5728\u6811\u65c1\uff0c\u770b\u8d77\u6765\u5f88\u5f00\u5fc3\uff0c\u753b\u9762\u7f29\u5c0f\u3002"} +{"id": "4001348", "video_name": "60df89d8-73af-5976-9b53-1e3f619f6e87", "text": "\u70ed\u72d7\u878d\u5316\uff0c\u6838\u6c49\u5821\uff0c\u54e5\u65af\u62c9\u82cf\u6253\u6c34\uff0c\u8d85\u7ea7\u539f\u5b50\u7cd6\u679c\u3002"} +{"id": "4001349", "video_name": "241d29dc-ac01-5c54-84c4-c9d81febd797", "text": "\u9ad8\u901f\u591c\u8def\u5feb\u8f66\u9a70\u9a8b\uff0c\u6c7d\u8f66\u7a7f\u884c\u4e8e\u57ce\u5e02\u65c5\u6e38\u4e4b\u4e2d\uff0c4K\u3002"} +{"id": "4001350", "video_name": "ba333deb-f86d-5ff5-9fbe-a1a9a077c375", "text": "\u4e00\u4e2a\u5145\u6ee1\u5723\u8bde\u6c14\u6c1b\u7684\u80cc\u666f\u3002"} +{"id": "4001351", "video_name": "5a3b34b8-01cb-5149-8d44-bed72c40c9c9", "text": "\u5728\u6c99\u6f20\u4e2d\u95f4\u7684\u6a21\u7cca\u9ed1\u70b9\uff0c4K\u3002"} +{"id": "4001352", "video_name": "19281dfd-0e28-5c00-a314-108edc4e21ff", "text": "and the mysterious alien force that haunts the outer reaches of space.\n\nTranslated sentence: \u4e00\u7fa4\u661f\u9645\u63a2\u9669\u5bb6\u5fc5\u987b\u4e0e\u5185\u5fc3\u7684\u6076\u9b54\u548c\u5728\u5916\u5c42\u7a7a\u95f4\u4e2d\u51fa"} +{"id": "4001353", "video_name": "dea96124-3332-5476-b237-54146744c919", "text": "\u4eba\u7c7b\u7684\u751f\u6d3b\u6597\u4e89\u548c\u6210\u529f\u6545\u4e8b"} +{"id": "4001354", "video_name": "02d35a80-3fb6-5ed0-a6d9-3385d36f1903", "text": "\u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u7528\u683c\u6d1b\u514b9\u6beb\u7c73\u624b\u67aa\u5bf9\u51c6\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u3002"} +{"id": "4001355", "video_name": "01d631b4-39da-579b-9abb-4b9b3472692d", "text": "\u716e\u719f\u7684\u9e21\u80f8\u8089\u89c6\u9891"} +{"id": "4001356", "video_name": "ad0c3b85-abef-5fc3-97ee-7987c0aaf45b", "text": "\u4e00\u4e2a17\u5c81\u7684\u5b66\u6821\u5973\u5b69\uff0c\u52e4\u594b\u5185\u5411\u7684\u9ad8\u4e2d\u751f\u5206\u88c2\u6210\u591a\u4e2a\u4e0d\u540c\u7684\u5f62\u8c61\uff0c\u5e76\u4ece\u4e0d\u540c\u7684\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "4001357", "video_name": "ce3071ce-40db-59fc-a8b9-9ea0bfe595e5", "text": "\u5973\u6027\u52a8\u6f2b\u89d2\u8272\u4fa7\u9762\u7167\u6234\u7740\u8033\u673a\uff0c\u5728\u623f\u95f4\u91cc\u62ff\u7740\u4e00\u672c\u4e66\u5b66\u4e60\uff0c\u684c\u5b50\u4e0a\u6709\u51e0\u672c\u4e66\uff0c\u7a97\u5916\u4e0b"} +{"id": "4001358", "video_name": "3c06d3c7-3f62-5c62-aba2-2107cbcd2ddf", "text": "\u4e00\u5708\u5723\u8bde\u82b1\u73af\uff0c\u4e0a\u6302\u7740\u5c0f\u94c3\u94db\uff0c\u53ee\u5f53\u4f5c\u54cd\uff0c\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "4001359", "video_name": "a9f8cf43-de76-52a5-a66a-85f47fcc1a97", "text": "\u4e00\u5bb6\u5185\u5bb9\u5236\u4f5c\u516c\u53f8\u7684\u5e7f\u544a\u89c6\u9891"} +{"id": "4001360", "video_name": "1ceba1e2-46e5-531b-8d3a-e05e56270e49", "text": "\u8c6a\u534e\u8dd1\u8f66\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u5954\u8dd1\u3002"} +{"id": "4001361", "video_name": "3051d559-16af-501b-bcce-c7b58d312a2f", "text": "\u6355\u6349\u7d22\u666e\u5c14\u6751\u7684\u672c\u8d28\uff0c\u63cf\u7ed8\u5e7f\u9614\u7684\u7530\u91ce\u548c\u4ece\u4e8b\u519c\u4e1a\u7684\u519c\u6c11\u3002\u7a81\u51fa\u4e61\u6751\u751f\u6d3b\u7684\u7b80\u5355"} +{"id": "4001362", "video_name": "48fbb3da-5192-5a52-80b8-61461e1165d9", "text": "\u72d7\u73a9\u5177\u5e7f\u544a\uff0c\u8bf7\u81f3\u5c11\u5236\u4f5c10\u79d2\u3002"} +{"id": "4001363", "video_name": "38b30297-baa5-5e7a-9a34-e5d44dfcf90f", "text": "\u897f\u6c49\u59c6\u8054\u961f\uff0c\u6d88\u606f\uff1a\u62c9\u8d3e\u5144\u5f1f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001364", "video_name": "7386107b-9d70-564e-9328-29f0be502076", "text": "\u7f2a\u5a05\u4e0e\u8d5b\u5f17\u5bf9\u5cd9\uff0c\u5c55\u5f00\u4e86\u4e00\u573a\u667a\u529b\u548c\u6280\u5de7\u7684\u8f83\u91cf\u3002"} +{"id": "4001365", "video_name": "ed2a8df8-6892-59ec-8038-8d9a9a9ebe60", "text": "\u76f8\u673a\u96f6\u4ef6\u7ec4\u5408\u6210\u5b8c\u6574\u7684\u9f7f\u8f6e\u76f8\u673a\u3002"} +{"id": "4001366", "video_name": "ea9eba7f-f30d-57d1-b3a5-243b790b35b2", "text": "\u7a7f\u7740\u6ce2\u70b9\u88d9\u5b50\u7684\u7ea2\u53d1\u66f2\u7ebf\u7f8e\u5973\u5728\u7530\u91ce\u91cc\u548c\u4e00\u53ea\u6ce2\u58eb\u987f\u6897\u72ac\u4e00\u8d77\u3002"} +{"id": "4001367", "video_name": "30865419-7bbc-5fbf-ab48-de94990da042", "text": "\u7537\u4eba\u5feb\u901f\u9003\u79bb\u602a\u517d\u7684\u52a8\u753b"} +{"id": "4001368", "video_name": "2d902e7e-2311-5015-83b6-c8e1a2a4f906", "text": "\u8717\u725b\u5e2e\u52a9\u4e00\u53ea\u8ff7\u8def\u7684\u5154\u5b50\u627e\u5230\u4e86\u56de\u5bb6\u7684\u8def\uff0c\u5728\u68ee\u6797\u91cc\u6551\u4e86\u4e00\u53ea\u53d7\u4f24\u7684\u9e1f\u3002"} +{"id": "4001369", "video_name": "25d84a29-71cd-5816-8570-606d4149a44d", "text": "\u4e24\u4e2a\u6234\u7740\u6cd5\u6597\u5e3d\u7684\u50cf\u7d20\u5965\u65af\u66fc\u4eba\u6b63\u5728\u4e92\u76f8\u640f\u6597\u3002\u4ee52D\u96c5\u8fbe\u5229\u6e38\u620f\u50cf\u7d20\u98ce\u683c\u4e3a\u4e3b\u3002"} +{"id": "4001370", "video_name": "c4b19f18-fdf7-525e-9bb6-de4cc016b802", "text": "\u5973\u533b\u751f\u88ab\u50f5\u5c38\u653b\u51fb\u540e\uff0c\u4e00\u53ea\u624b\u652f\u6491\u7740\u8d70\u5728\u533b\u9662\u8d70\u5eca\u4e0a\u3002"} +{"id": "4001371", "video_name": "58d11904-86d5-5bfb-bd59-b1fd17ba6d79", "text": "\u4e3a\u4e00\u5bb6\u9762\u5305\u8fde\u9501\u5e97\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\uff0c\u9002\u5408\u5728\u540d\u7247\u4e0a\u5370\u5237\u548c\u5728\u7f51\u7ad9\u4e0a\u4f7f\u7528\u3002"} +{"id": "4001372", "video_name": "fc5b00d0-dc96-5b5b-bf02-2adb3d8f6723", "text": "\u5728\u57c3\u53ca\u521b\u9020\u4e00\u5f20\u5929\u4f7f\u98de\u7fd4\u7684\u7167\u7247\u3002"} +{"id": "4001373", "video_name": "3a161b23-cc78-5db3-9aa8-86fd6524600d", "text": "\u5723\u8def\u6613\u65af\u4e5d\u4e16\u7684\u6cb9\u753b\u975e\u5e38\u8be6\u7ec6\u3002"} +{"id": "4001374", "video_name": "c94fab31-42cc-5a8c-8630-84c49afdba81", "text": "\u6811\u957f\u51fa\u65b0\u7684\u53f6\u5b50\u548c\u679d\u6761\u3002"} +{"id": "4001375", "video_name": "aeb1ac9a-baad-5242-bab9-94ba98ae0a3c", "text": "\u4e00\u4e2a\u7bee\u7403\u8fd0\u52a8\u5458\u8df3\u5411\u661f\u7a7a"} +{"id": "4001376", "video_name": "cd2a0bdd-7242-571b-8b94-cad4ce275f73", "text": "\u6d17\u5b8c\u540e\u8138\u90e8\u76ae\u80a4\u5e72\u51c0\u7684\u7537\u4eba\u3002"} +{"id": "4001377", "video_name": "fcc56aaa-9bf2-5622-ac2d-63f7e0393830", "text": "\u4e00\u53ea\u52a8\u753b\u82cd\u8747\u7ad9\u6210\u4eba\u5f62\uff0c\u8df3\u7740\u5e7c\u7a1a\u7684\u821e\u8e48\u7684\u89c6\u9891\u3002"} +{"id": "4001378", "video_name": "8aa02414-5cb5-5ef3-81e2-6b6dbbc5ec9f", "text": "\u4e00\u6c60\u6709\u82b1\u548c\u6d77\u8349\u7684\u6c60\u5858\uff0c\u6709\u98ce\uff0c\u50cf\u52a8\u6f2b\u3002"} +{"id": "4001379", "video_name": "18c88f7a-1660-5fa8-89c8-6490c71e072d", "text": "\u56db\u59d0\u59b9\u5728\u5e15\u7ef4\u6d1b\u65af\u5854\u6d77\u6ee9\u6563\u6b65\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u50cf\u6258\u9a6c\u65af\u00b7\u91d1\u51ef\u5fb7\u7684\u98ce\u683c\uff0c"} +{"id": "4001380", "video_name": "4ad81403-22bf-5330-9d26-01e227db0483", "text": "2020\u5e74\u5173\u4e8e\u9b3c\u9b42\u7684\u827a\u672f\u7535\u5f71\n\nSource sentence: The museum is closed on Mondays. \n\u535a\u7269\u9986\u5468\u4e00\u95ed\u9986\u3002"} +{"id": "4001381", "video_name": "947d8434-2ef6-5101-8ee2-80d76de95276", "text": "\u5728\u65af\u57fa\u6bd4\u5fb7\uff0c\u63a2\u9669\u5395\u6240Tippy\u548c\u5361\u901a\u753b\u5bb6Carol\u548cMax\u7684\u53cc\u4eba\u7ec4\u6210\u4e3a\u4e86\u4e00\u4e2a\u4f20\u5947\u6545\u4e8b\u3002\u5b83\u63d0\u9192\u6bcf\u4e2a"} +{"id": "4001382", "video_name": "181e50ea-3972-5ed2-b74f-a1c4e79235e8", "text": "\u5199\u4e00\u4e2a\u5173\u4e8e\u4e00\u4f4d\u5973\u6027\u5df4\u514b\u00b7\u7f57\u6770\u65af\u572825\u4e16\u7eaa\u4ece\u60ac\u6d6e\u52a8\u753b\u4e2d\u82cf\u9192\u7684\u6545\u4e8b\u3002"} +{"id": "4001383", "video_name": "4b8744c3-cf86-5dd6-8462-a7f2bca18337", "text": "\u8377\u5170\u963f\u59c6\u65af\u7279\u4e39\u7684\u5993\u5973\u533a"} +{"id": "4001384", "video_name": "361ea43a-4013-54d9-923b-f6e924103749", "text": "\u706b\u7130\u71c3\u70e7\u7740\u7f8e\u4e3d\u7684\u8272\u5f69\uff0c\u73af\u7ed5\u7740\u6807\u5fd7\u3002"} +{"id": "4001385", "video_name": "2b809c9a-b77d-5d3e-812a-18091419110d", "text": "\u4e24\u4e2a\u672c\u5730\u7537\u5b69\u5728\u5370\u5ea6\u6751\u5e84\u91cc\u73a9\u800d\uff0c\u96fe\u6c14\u3001\u9ed1\u6697\u3001\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "4001386", "video_name": "e6dc26bb-7c13-54f5-851f-9362e07984d3", "text": "\u4e00\u53ea\u732b\u5934\u9e70\u5750\u5728\u68ee\u6797\u91cc\u7684\u6811\u679d\u4e0a\uff0c\u901a\u8fc7\u8f6c\u52a8\u8116\u5b50\u89c2\u5bdf\u3002\u4fe1\u606f\uff1a3D\u52a8\u753b\u98ce\u683c\uff08\u5b57\u4f53\uff1a\u73b0"} +{"id": "4001387", "video_name": "5d811124-dcbb-5d1e-b012-faa7d8f95b90", "text": "\u5c3c\u5965\uff08Neo\uff09\u548c\u4ed6\u7684\u7956\u6bcd\u4e00\u8d77\u5403\u665a\u9910\uff0c\u8fd9\u662f\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u4e2d\u7684\u573a\u666f\u3002"} +{"id": "4001388", "video_name": "9812c9f6-5396-55cf-8303-a4b4c7166a78", "text": "\u5b69\u5b50\u4eec\u73a9\u800d\uff0c\u4e91\u6735\u5728\u8f7b\u98ce\u4e2d\u79fb\u52a8\uff0c\u6784\u6210\u4e86\u67d4\u548c\u7684\u5929\u7a7a\u3002"} +{"id": "4001389", "video_name": "60780fb2-aa6d-57cc-9bec-98e4dae2cf14", "text": "\u8b66\u5bdf\u5728\u4e00\u5ea7\u52a8\u753b\u57ce\u5e02\u7684\u5730\u4e0b\u5de1\u903b\u3002"} +{"id": "4001390", "video_name": "38f368bb-b5a8-532a-a3e3-5283c01cee78", "text": "\u4e00\u53ea\u8db3\u7403\u98de\u8fc7\u4e86\u4e00\u9053\u7eff\u8272\u7684\u6811\u7bf1\u3002"} +{"id": "4001391", "video_name": "04eda30b-4526-5c5e-8e9e-dfebeb9a1464", "text": "\u4e00\u53ea\u9e45\u8df3\u4e0a\u4e86\u4e00\u8f86\u8f66\u3002"} +{"id": "4001392", "video_name": "cef3ea7b-284d-5806-be51-83d6e5600f59", "text": "\u5361\u901a\u7d20\u63cf\u592b\u5987\u5728\u767d\u8272\u80cc\u666f\u4e0b\u4e89\u5435\u548c\u6253\u6597\u3002"} +{"id": "4001393", "video_name": "776e8fce-17f7-5eed-a813-f6c5f6ff9011", "text": "\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u5deb\u5e08\u7537\u5b50\u5728\u4e00\u4e2a\u5e7b\u60f3\u98ce\u683c\u7684\u53e4\u8001\u57ce\u5e02\u4e2d\u3002"} +{"id": "4001394", "video_name": "86c27dc4-2844-5f88-82f6-8ed84275e25c", "text": "\u4e00\u4e2a\u6a59\u8272\u7684\u80cc\u666f\uff0c\u4e0a\u9762\u6709\u79fb\u52a8\u7684\u9ed1\u8272\u7ec6\u7ebf\u3002\n\nSource sentence: The restaurant serves delicious food and has a cozy atmosphere. \n\n\u8fd9\u5bb6\u9910\u5385\u7684\u98df\u7269\u7f8e"} +{"id": "4001395", "video_name": "6adffe01-0c9b-5fc6-a3c2-9f1ae03aee38", "text": "\u8db3\u6d74\uff0c\u571f\u8033\u5176\u98ce\u683c\u7684\u7f8e\u4e3d\u8db3\u6d74\u4e2d\u5fc3\uff0c\u811a\u6d78\u5728\u6c34\u4e2d\u3002"} +{"id": "4001396", "video_name": "eac3b241-0984-5610-bab8-114446f843fd", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u665a\u4e0a9:16\u72ec\u81ea\u5f85\u5728\u623f\u5b50\u91cc\u7684\u6050\u6016\u6545\u4e8b\u3002"} +{"id": "4001397", "video_name": "547359e9-3a17-5ed3-98e7-f320435a7390", "text": "\u9c8d\u52c3\u00b7\u65bd\u8010\u5fb7\u7740\u706b\u4e86\uff0c\u88ab\u706b\u7130\u5305\u56f4\u3002"} +{"id": "4001398", "video_name": "f6ecb49a-5bc7-59c0-81e9-f79a1b9e3d6d", "text": "\u5c0f\u732b\u9a91\u5728\u9ca8\u9c7c\u80cc\u4e0a\uff0c\u5728\u7f8e\u4e3d\u6e05\u6f88\u7684\u84dd\u8272\u6c34\u4e2d\u3002"} +{"id": "4001399", "video_name": "68afa3d1-6659-5a6b-bee6-ba30b2fb7595", "text": "\u73b0\u573a\u62cd\u6444\u610f\u5927\u5229\u590d\u53e4\u9ad8\u7ea7\u65f6\u5c1a\u7f8e\u5973\u6a21\u7279\u5728\u73ab\u7470\u82b1\u56ed\u4e2d\u768435\u6beb\u7c73\u7279\u5199\u3002"} +{"id": "4001400", "video_name": "d2aed45b-8337-5b25-9e8b-4a0f56f20f2d", "text": "\u7535\u548c\u78c1\u73b0\u8c61\u7684\u5b9e\u7528\u5e94\u7528"} +{"id": "4001401", "video_name": "424a610a-1ca2-5f74-9d86-a97770212b14", "text": "\u5728\u94b1\u6c60\u91cc\u6e38\u6cf3\uff0c\u73b0\u5b9e\u3002"} +{"id": "4001402", "video_name": "b162ebec-fb73-5e7e-a136-c8d6696c600b", "text": "\u7f8e\u4e3d\u7684\u5370\u5ea6\u59bb\u5b50\uff0c\u901a\u8fc7\u7535\u8bdd\u547c\u53eb\u5979\u7684\u4e08\u592b\u3002\u4e3b\u955c\u5934\u5f71\u89c6\u706f\u3002"} +{"id": "4001403", "video_name": "0347223e-fd6e-5c38-91cb-64d91805d079", "text": "\u5973\u4eba\u4e0d\u52a8\uff0c\u80cc\u666f\u52a8\u3002"} +{"id": "4001404", "video_name": "7814aac3-26b7-5cf9-ab6e-d23f8352830d", "text": "\u4e00\u4e2a\u50cf\u7d20\u5316\u7684\u623f\u95f4\u88c5\u9970\u7740\u5723\u8bde\u8282\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u4ed6\u7684\u7535\u8111\u4e0a\u6253\u5b57\u3002"} +{"id": "4001405", "video_name": "62ed1e68-8fe8-5df8-85a9-1a9889280d2e", "text": "\u521b\u5efa\u4e00\u4e2a\u8212\u9002\u7684\u6d74\u5ba4\uff0c\u5e26\u6709\u84b8\u6c7d\u6d74\u7f38\u722a\u8db3\u3001\u82b1\u6735\u548c\u4e00\u4e2a\u753b\u9762\u7a97\u53e3\u3002"} +{"id": "4001406", "video_name": "22e0d53d-2e3b-5bb1-b8ca-e450c9aa8ca0", "text": "\u4e9a\u6d32\u5973\u5b50\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\u6f2b\u6b65\u5728\u6d77\u6ee9\u4e0a\u3002"} +{"id": "4001407", "video_name": "b8dfa3a1-3e2d-5ea3-b26d-47188bc38b36", "text": "\u73b0\u5b9e\u52a8\u753b\u4e2d\u7684\u5e74\u8f7b\u4eba\u6b23\u559c\u5730\u770b\u7740\u4e00\u4e2a\u624b\u673a\u5e94\u7528\u7a0b\u5e8f\u3002"} +{"id": "4001408", "video_name": "1aac85e0-85a0-5f11-9dde-48361409de53", "text": "\u7ea2\u88d9\u7f8e\u5973\u91cc\u7684\u8774\u8776"} +{"id": "4001409", "video_name": "c726ace4-8a38-594a-bc5e-656a90608ef3", "text": "\u4e00\u5f20\u8001\u5e74\u7537\u5b50\u76b1\u7eb9\u7279\u5199\u8096\u50cf\u7167\u3002"} +{"id": "4001410", "video_name": "15a66aa7-b430-5dd4-9167-57079e5d75cf", "text": "\u4e00\u4e2a\u5fae\u7b11\u7684\u7537\u4eba\uff0c\u7279\u5199\u955c\u5934\uff0c\u8ddf\u968f\uff0c\u65b0\u5bab\u771f\u7434\u827a\u672f\u98ce\u683c\u3002"} +{"id": "4001411", "video_name": "5ed2a0e9-6b7a-575b-989b-b655a436103b", "text": "\u7535\u5f71\u7ea7\u5236\u4f5c\uff0c\u96e8\u591c\u53e4\u9547\uff0c\u9ad8\u6e05\uff0c8K"} +{"id": "4001412", "video_name": "783c3826-4ebe-5f9c-aa3f-78f5071b14f7", "text": "\u68a6\u5883\u753b\u9762\u4e2d\uff0c\u5c0f\u7537\u5b69\u770b\u7740\u684c\u4e0a\u7684\u5723\u8bde\u7f8e\u98df\u3002"} +{"id": "4001413", "video_name": "b5ab0877-7011-55ef-82dd-d941ffaf432b", "text": "\u5f3a\u70c8\u7684\u592a\u9633\u4e0b\u7684\u5929\u7a7a\u7a81\u7136\u88ab\u9ed1\u4e91\u4fb5\u88ad\n\nSource sentence: I am going to the store to buy some milk and bread. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70"} +{"id": "4001414", "video_name": "4cf14801-5994-5cc9-8bcf-8d76cc471cd0", "text": "\u5728\u5b89\u7b2c\u65af\u5c71\u8109\u4e2d\uff0c\u80cc\u666f\u662f\u5357\u6d0b\u6749\u7684\u5730\u8863\uff0c\u4e0b\u7740\u96e8\uff0c\u522e\u7740\u98ce\uff0c\u591c\u665a\u3002"} +{"id": "4001415", "video_name": "fe2de3ec-3162-55b7-b520-ea8dc21784c0", "text": "\u83b1\u6602\u7eb3\u591a\u00b7\u8fbe\u00b7\u82ac\u5947\u6df1\u601d\u719f\u8651\u5730\u5750\u5728\u4ed6\u7684\u5de5\u4f5c\u5ba4\u91cc\uff0c\u65c1\u8fb9\u6446\u6ee1\u4e86\u4e66\u7c4d\u548c\u673a"} +{"id": "4001416", "video_name": "fe87ff80-57df-51ae-8a73-c22b33b16419", "text": "\u6709\u4e24\u53ea\u5c0f\u725b\u7684\u5361\u901a\u5f62\u8c61\u653e\u5927\u3002"} +{"id": "4001417", "video_name": "ee48efa2-4710-5bab-ac7d-5681886984db", "text": "\u72d7\u72d7\u5e01\u7684\u72d7\u72d7\u5750\u5728\u6c99\u53d1\u4e0a\u5411\u6708\u7403\u671b\u53bb\u3002"} +{"id": "4001418", "video_name": "7b4ebed7-242e-57af-80c5-014f6531bb35", "text": "\u4e00\u53ea\u51b0\u6dc7\u6dcb\u878d\u5316\u6ef4\u5728\u5730\u94c1\u8f66\u9876\u4e0a\u3002"} +{"id": "4001419", "video_name": "a3a2dff5-0dcb-5694-9263-910506454aba", "text": "\u4e00\u6bb5\u65e0\u4eba\u673a\u62cd\u6444\u7684\u6d77\u6d0b\u4e2d\u8239\u53ea\u666f\u8272\u7684\u89c6\u9891\uff0c\u8d85\u9ad8\u6e05\uff0c\u6d41\u7545\u52a8\u753b\uff0c\u6d77\u6d0b\u6ce2\u52a8\uff0c\u8239\u53ea\u79fb\u52a8\uff0c\u91c7\u7528\u865a"} +{"id": "4001420", "video_name": "29403391-0716-5444-b25d-8239db45e7e7", "text": "\u4e2d\u56fd\u6e90\u53e5\uff1a\u82f1\u4fca\u7f8e\u4e3d\u7684\u4e2d\u4e16\u7eaa\u5973\u6027\uff0c\u6b63\u9762\u89c6\u89d2\uff0c\u8eab\u7a7f\u7ea2\u8272\u516c\u4e3b\u88d9\uff0c\u7ad9\u5728\u5893\u5730\u7684\u591c\u665a\uff0c\u4f69"} +{"id": "4001421", "video_name": "3deca2f4-d04a-5beb-a461-beaa06a7cae3", "text": "\u4e00\u53ea\u718a\u732b\u5b9d\u5b9d\u6b63\u5728\u5954\u8dd1\uff0c\u5b83\u7a7f\u7740\u8fd0\u52a8\u670d\uff0c\u80cc\u666f\u662f\u5362\u6d6e\u5bab\u5e7f\u573a\u3002"} +{"id": "4001422", "video_name": "e3a4cefc-0ec9-578b-bbcf-ab464a60c6cc", "text": "\u4e3a LFD \u4e09\u9879\u4ff1\u4e50\u90e8\u8bbe\u8ba1\u4e00\u4e2a\u6807\u5fd7\uff0c\u7a81\u7834\u6781\u9650\uff0c\u62e5\u62b1\u70ed\u60c5\u3002"} +{"id": "4001423", "video_name": "4bfc3663-80bb-5036-a7db-c6813a979260", "text": "\u5728\u4e1c\u4eac\u9713\u8679\u8857\u9053\u7684\u6df1\u591c\uff0c\u5973\u5b69\u7528\u9ec4\u91d1\u6c99\u6f20\u4e4b\u9e70\u5728\u9910\u5385\u5c04\u51fb\uff0c\u98ce\u683c\u5177\u6709\u8d85\u73b0\u5b9e\u4e3b"} +{"id": "4001424", "video_name": "fae355ac-b5ca-5083-860a-38d625b706f7", "text": "\u60ca\u609a\u7535\u5f71\u5f0f\u7684\u573a\u666f\uff0c\u6700\u7ec8\uff0c\u58f0\u97f3\u505c\u5728\u5979\u9694\u58c1\u7684\u623f\u95f4\u91cc\u3002\u5973\u4eba\u7d27\u7d27\u6293\u4f4f\u5395\u6240\u95e8\uff0c\u4f46\u5947"} +{"id": "4001425", "video_name": "278d26e6-c866-5096-95fc-bd382316e2f2", "text": "\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e2d\u4e00\u4e2a\u795e\u79d8\u5b64\u7acb\u7684\u6751\u5e84\u7684\u89c6\u89c9\uff0c\u56de\u8361\u7740\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u58f0\u97f3\u3002"} +{"id": "4001426", "video_name": "055bc00f-bed9-5d65-b45d-ff7d00f886a6", "text": "\u9633\u5149\u82ac\u82b3\uff0c\u98ce\u4e5f\u751c\u7f8e\u3002"} +{"id": "4001427", "video_name": "a5bc4c4a-fd20-5dbc-a002-7928cd9a2d4a", "text": "C4D\u7ffb\u8f6cUI\u5361\u7247\uff0c\u4ee5\u5fae\u8f6f\u5e7f\u544a\u98ce\u683c\u4e3a\u4e3b\uff0c\u4f7f\u7528Redshift\u6e32\u67d3\u3002\n\nSource sentence: The new product launch was a success, with sales exceeding expectations. \n\n\u65b0\u4ea7\u54c1"} +{"id": "4001428", "video_name": "ffc29c04-c63a-5afa-a068-3093ce76b4f7", "text": "\u732b\u5934\u9e70\u56e0\u5176\u654f\u9510\u7684\u89c6\u529b\u548c\u667a\u6167\u800c\u88ab\u6307\u6d3e\u76d1\u89c6\u4efb\u52a1\u3002"} +{"id": "4001429", "video_name": "e73e9973-5de3-54fc-adcf-65c55b32e348", "text": "\u54e5\u65af\u8fbe\u9ece\u52a0\u76842D\u77e2\u91cf\u8db3\u7403\u4eba\u5e86\u795d\u80dc\u5229\u3002"} +{"id": "4001430", "video_name": "ea3022b9-1150-5aa5-96c5-731dca529185", "text": "\u74f6\u5b50\uff0c\u58a8\u897f\u54e5\u9f99\u820c\u5170\u9152\u74f6\uff0c\u9152\u74f6\uff0c\u51b7\uff0c\u74f6\u5b50\u4fa7\u9762\u6ef4\u4e0b\u6c34\u6ef4\uff0c\u6d3e"} +{"id": "4001431", "video_name": "4316ab0d-23f9-54e8-aa41-d258cd2198c3", "text": "\u4e00\u4f4d\u53d7\u60ca\u7684\u79d1\u5b66\u5bb6\u6b63\u5728\u5220\u9664\u4ed6\u4eec\u7684\u6570\u5b57\u75d5\u8ff9\u3002"} +{"id": "4001432", "video_name": "19ddd41b-b365-55d3-b760-8e018562ba5a", "text": "\u5f69\u8679\u6591\u9a6c\u5728\u5e7b\u60f3\u68ee\u6797\u5954\u8dd1\u3002"} +{"id": "4001433", "video_name": "82927502-b8c1-58c5-a10b-bb7b3f77d369", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u70ed\u60c5\u5730\u62e5\u62b1\u3002"} +{"id": "4001434", "video_name": "22bab142-a6fe-5902-9cf5-85a0e064b266", "text": "\u4e00\u6761\u6cb3\u6d41\u5206\u9694\u7684\u68ee\u6797"} +{"id": "4001435", "video_name": "c60a755e-f44c-5542-800a-c39c067225ee", "text": "\u5f53\u72ee\u5b50\u5229\u5965\u542c\u5230\u5fae\u5f31\u7684\u6c42\u6551\u58f0\u5e76\u8ddf\u968f\u58f0\u97f3\u627e\u5230\u8001\u9f20\u745e\u7c73\u88ab\u4e00\u6839\u5012\u4e0b\u7684\u6811\u679d\u56f0"} +{"id": "4001436", "video_name": "36922c9c-c8fd-5f8c-9fbd-0df158c1a8f0", "text": "\u53cb\u5584\u7684\u8bf4\u8bdd\u52a8\u7269\u3001\u667a\u6167\u7684\u8001\u6811\u548c\u6d3b\u6cfc\u7684\u4ed9\u5973\u3002"} +{"id": "4001437", "video_name": "2bc7af9b-193d-54eb-b05d-4e7e5da36f02", "text": "\u52a8\u6f2b\u9762\u5b54\u7684\u5973\u5b69\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "4001438", "video_name": "d87909b5-de8c-597d-ac26-ba908fcee004", "text": "\u4e00\u4f4d80\u5e74\u4ee3\u5e7b\u60f3\u7535\u5f71\u98ce\u683c\u7684\u516c\u4e3b"} +{"id": "4001439", "video_name": "5b08dffb-2946-5b36-a4ac-59780f377166", "text": "\u5728\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u5927\u90fd\u5e02\uff0c\u4e00\u540d\u730e\u4eba\u548c\u4ed6\u7684\u540c\u4f34\u7a7f\u8d8a\u57ce\u5e02\u666f\u89c2\uff0c\u4ed6\u4eec\u7684\u6bcf\u4e00\u6b65\u90fd\u88ab\u5168\u9ad8\u6e05\u30012"} +{"id": "4001440", "video_name": "a412bb14-7ee6-5997-9629-7177a71bc6c6", "text": "\u4e00\u5bf9\u9000\u4f11\u7684\u592b\u5987\u5728\u5df4\u62ff\u9a6c\u70ed\u5e26\u6d77\u6ee9\u4e0a\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "4001441", "video_name": "e8ba718b-d7a3-5933-bc42-2778fb1a6853", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e24\u53ea\u8001\u9f20\u6563\u6b65\u7684\u6545\u4e8b\u3002"} +{"id": "4001442", "video_name": "5b108adc-3d54-514f-905a-ad146a166078", "text": "\u4e00\u4e2a\u5728\u6811\u4e0b\u53d1\u73b0\u7684Shivling\u7684\u52a8\u753b\uff0c\u80cc\u666f\u662f\u5c71\u5ce6\u3002"} +{"id": "4001443", "video_name": "cd788152-b29b-540b-9bd2-731a808fff26", "text": "\u4e00\u53ea\u9ed1\u7329\u7329\u5728\u65e9\u6668\u6cbf\u7740\u8def\u8dd1\uff0c\u662f\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "4001444", "video_name": "e225bc64-e61a-5e79-827e-79f1c74f5b65", "text": "\u4e00\u53ea\u732b\u56f4\u7740\u4e00\u53ea\u8001\u9f20\u8dd1\u3002"} +{"id": "4001445", "video_name": "3c4febba-f23e-5da5-b46b-59428f5a4ac8", "text": "\u63d0\u793a\uff1a\u4e00\u53f0\u8bf4\u8bdd\u7684\u673a\u5668\u4eba\u8bb2\u8ff0\u4eba\u5de5\u667a\u80fd\u7684\u91cd\u8981\u6027\u3002"} +{"id": "4001446", "video_name": "2690acfc-b736-5916-a017-b850a0fb962a", "text": "\u4e00\u5f20\u9ed1\u80f6\u5531\u7247\u5728\u8f6c\u52a8\u7684\u8f6c\u76d8\u4e0a\uff0c\u6709\u7535\u5f71\u9897\u7c92\u611f\uff0c4K\u5e7f\u89d2\u5782\u76f4\u3002"} +{"id": "4001447", "video_name": "388f56d7-e940-57ec-9fa3-db233a4094fc", "text": "\u4e00\u540d\u7537\u5b50\u659c\u9760\u7740\u6905\u5b50\uff0c\u8f6c\u5411\u53f3\u4fa7\uff0c\u770b\u7740\u6444\u50cf\u673a\uff0c\u5e76\u7528\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\u98ce\u683c\u4ea4\u8c08\u3002"} +{"id": "4001448", "video_name": "93782307-6119-51d2-af30-e59569078b96", "text": "\u6c99\u9c81\u514b\u00b7\u6c57\u548c\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u4e00\u8d77\u5750\u7740\u3002"} +{"id": "4001449", "video_name": "21583d1e-fef8-50b6-92ba-5f755272272c", "text": "\u4e24\u4e2a\u5c0f\u7537\u5b69\u548c\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u5c4b\u9876\u4e0a\u5750\u5728\u73ab\u7470\u82b1\u4e1b\u4e2d\uff0c\u5fc3\u60c5\u6109\u60a6\u3002"} +{"id": "4001450", "video_name": "31c2eea0-5d2d-522c-9031-5e8d93c66cf1", "text": "\u7528\u9ed1\u8272\u80cc\u666f\u548c\u6e7f\u5a46\u795e\u521b\u4f5c\u201c\u0905\u0902\u0924 \u0905\u0938\u094d\u0925\u093f \u092a\u094d\u0930\u093e\u0930\u0902\u092d\u201d\u6587\u672c\u3002"} +{"id": "4001451", "video_name": "195847cd-87d0-563a-8e05-19bd2a04f407", "text": "\u5e73\u8861\u7684\u6839\u8f6e\u80fd\u591f\u5960\u5b9a\u575a\u5b9e\u7684\u57fa\u7840\uff0c\u4f7f\u6211\u4eec\u611f\u5230\u624e\u6839\u5e76\u5145\u6ee1\u81ea\u4fe1\u3002"} +{"id": "4001452", "video_name": "f038d114-647b-529d-8148-acad345eb0ac", "text": "\u4e00\u4e2a\u5728\u672a\u6765\u57ce\u5e02\u91cc\u62e5\u6709\u7535\u80fd\u529b\u7684\u65e0\u5fe7\u65e0\u8651\u7684\u4eba\u3002"} +{"id": "4001453", "video_name": "a298058e-c1d9-57b6-815c-5f7ea8c9a02f", "text": "\u4e00\u540d\u5728\u79d8\u9c81\u516c\u8def\u4e0a\u7684\u9a91\u81ea\u884c\u8f66\u7684\u4eba\u3002"} +{"id": "4001454", "video_name": "ed92e8a9-ee21-50d9-ac39-3e84f799e188", "text": "\u4e00\u4f4d\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u5973\u9b3c\u624b\u6301\u8721\u70db\u5728\u9ed1\u6697\u7684\u8d70\u5eca\u4e2d\u884c\u8d70\u3002"} +{"id": "4001455", "video_name": "c0eef913-5352-5f8d-b8af-7f54a9c51242", "text": "\u4e2a\u4eba\u8868\u73b0\u51fa\u540c\u60c5\u548c\u5584\u826f\u884c\u4e3a\u7684\u89c6\u9891\u3002"} +{"id": "4001456", "video_name": "ed2ff369-25b4-595a-99fa-b7bbd25289a2", "text": "\u5b66\u751f\u6b63\u5728\u5927\u5b66\u91cc\u884c\u8d70\uff0c\u5915\u9633\u4e0b\u3002"} +{"id": "4001457", "video_name": "7872d085-9f13-5a09-be7f-ce2bc0f08fe2", "text": "\u4e00\u53ea\u7f8e\u4eba\u9c7c\u5728\u6c34\u4e0b\u6e38\u6cf3\uff0c1920\u5e74\u4ee3\u7684\u73cd\u7a00\u7535\u5f71\u955c\u5934\u3002"} +{"id": "4001458", "video_name": "a9c3be5e-5800-5c42-a10f-8fe9958ed1d3", "text": "\u4e00\u4f4d\u5c0f\u5973\u5b69\u548c\u4e00\u4f4d\u62c7\u6307\u7684\u5973\u4eba"} +{"id": "4001459", "video_name": "d1245114-bdec-5d8c-98d5-5b2998ee8601", "text": "Source sentence: \u6c99\u6f20\u4e2d\u7684\u843d\u65e5\u4e0b\u7684\u5ca9\u77f3\u5c71\u8109\uff0c\u4ece\u7a7a\u4e2d\u4fef\u77b0\uff0c\u591a\u8389\u51fa\u73b0\u3002 \nMessage: Huellas (\u5b57\u4f53\uff1a\u73b0"} +{"id": "4001460", "video_name": "dd6ee745-8d5d-5be6-9038-8fbad645f1c7", "text": "\u4e00\u4e2a\u9ab8\u9aa8\u7626\u5f31\u7684\u7537\u4eba\u5750\u5728\u4e00\u628a\u6905\u5b50\u4e0a\uff0c\u6574\u4e2a\u573a\u666f\u5728\u8857\u4e0a\uff0c\u7537\u4eba\u7f13\u6162\u5730\u671d\u7740\u955c"} +{"id": "4001461", "video_name": "87e08acc-5894-5124-b791-2b51ff9eba05", "text": "\u82ad\u6bd4\u4e0e\u57fa\u52aa\u00b7\u91cc\u7ef4\u65af\u73a9\u5076\u7ea6\u4f1a\u3002"} +{"id": "4001462", "video_name": "b981cd3c-3693-56d9-80a2-e2af178d0619", "text": "\u82f1\u56fd\u4eba\u5bf9\u7ef4\u62a4\u5173\u952e\u8d38\u6613\u8def\u7ebf\u7684\u901a\u884c\u548c\u4fdd\u62a4\u6b96\u6c11\u5730\u4ea7\u4e1a\u611f\u5174\u8da3\uff0c\u8fd9\u5f80\u5f80\u4f7f\u4ed6\u4eec\u4e0e\u5965\u65af\u66fc"} +{"id": "4001463", "video_name": "7246f615-6f61-5595-ba6d-5d2fd6f1df78", "text": "\u7a7f\u8fc7\u4e00\u4e2a\u751f\u673a\u52c3\u52c3\u7684\u6d45\u6c34\u6cbc\u6cfd\u3002"} +{"id": "4001464", "video_name": "7104eb2e-1a8c-554b-835e-8b014bbc63f5", "text": "\u9752\u5c11\u5e74\u597d\u5947\u5730\u4e92\u76f8\u770b\u7740\u3002"} +{"id": "4001465", "video_name": "13b7e372-caa2-57bd-ad9b-446574138767", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u73a9\u4efb\u5929\u5802Switch\u6e38\u620f\u3002"} +{"id": "4001466", "video_name": "2374054c-065e-5471-a86d-f617a5554085", "text": "\u4e00\u53ea\u9cb8\u5f62\u4e00\u6b21\u6027\u7269\u54c1\u7684\u52a8\u753b\u3002"} +{"id": "4001467", "video_name": "d52c9569-0c26-5117-8b57-c71f92725301", "text": "\u5c0f\u4eba\u56fd\u5728\u5a03\u5a03\u5c4b\u91cc\u73a9\u800d\uff0c3D\uff0c\u903c\u771f\uff0c4K\u3002"} +{"id": "4001468", "video_name": "c80efe11-edde-5994-8e28-15c42ea41ecb", "text": "\u98de\u8239\u7684\u672a\u6765\u4e3b\u4e49\u5185\u90e8\u3002\u900f\u8fc7\u4e00\u6247\u5bbd\u9614\u3001\u5f2f\u66f2\u7684\u5168\u666f\u7a97\u6237\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u5916\u661f\u7403\u7684\u58ee\u4e3d\u666f\u8272\u3002\u5916"} +{"id": "4001469", "video_name": "9ed475b8-c303-5fa7-876e-100d13c57d83", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u9a91\u7740\u4e00\u5934\u725b\uff0c\u7a7f\u7740\u9a91\u58eb\u670d\u88c5\u3002"} +{"id": "4001470", "video_name": "2de68405-9759-5506-86c3-cca27508b715", "text": "\u9752\u5c11\u5e74\u542c\u97f3\u4e50\uff0c\u611f\u53d7lofi\u6c1b\u56f4\uff0c\u4eab\u53d7\u9ec4\u91d1\u65f6\u5149\uff0c\u5fae\u52a8\u53d1\u4e1d\u3002"} +{"id": "4001471", "video_name": "f33676ac-ee35-5f26-a6e8-543e2b68ed8a", "text": "\u7eff\u89d2\u65b0\u624b\u5728\u897f\u90e8\u8352\u91ce\u80cc\u666f\u4e0b\u8bbe\u7f6e\u3002"} +{"id": "4001472", "video_name": "22676b12-6ade-583c-bb41-9f2706900588", "text": "\u4f60\u600e\u4e48\u5fcd\u5fc3\u79bb\u5f00\u6211\uff1f\u5982\u679c\u6c34\u6e90\u67af\u7aed\u4e86\uff0c\u4f60\u5c31\u6ca1\u6709\u7cae\u98df\uff0c\u800c\u6211\u4f1a\u5931\u53bb\u751f\u547d\u3002"} +{"id": "4001473", "video_name": "0646c74b-1d77-53ed-8464-f259d0c9b6f9", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u96e8\u4e2d\u9a91\u81ea\u884c\u8f66\u5728\u8349\u5730\u4e0a\u3002"} +{"id": "4001474", "video_name": "4a8ff20e-f62a-5dce-9368-c8459ce5a291", "text": "\u5e74\u8f7b\u7684\u5b69\u5b50\uff0c\u52a0\u5165\u8db3\u7403\u961f\uff0c\u7b2c\u4e00\u5929\uff0c\u56e0\u4e3a\u4ed6\u7684\u811a\u592a\u5927\uff0c\u6240\u6709\u4eba\u90fd\u7b11\u4e86\u3002"} +{"id": "4001475", "video_name": "8cab9c87-4431-5545-8525-de1a2d655107", "text": "\u4e00\u6761\u88ab\u706b\u628a\u7167\u4eae\u7684\u9ed1\u6697\u8d70\u5eca\uff0c\u4e00\u53ea\u98df\u4eba\u9b54\u7b28\u62d9\u5730\u8d70\u4e86\u8fc7\u6765\u3002"} +{"id": "4001476", "video_name": "b20ceae2-5c9c-5a40-a392-e1b67efcf28b", "text": "\u9ad8\u4e2d\u751f\u7684\u7b2c\u4e00\u5929\u4e0a\u5b66\u3002"} +{"id": "4001477", "video_name": "6afa8a3a-bb46-5970-95ec-be0c021e3501", "text": "\u5728\u5c0f\u5e97\u7684\u4e00\u7aef\uff0c\u4e00\u7fa4\u4eba\u6234\u7740\u5404\u79cd\u5404\u6837\u7684\u9762\u5177\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec\u7684\u591a\u6837\u6027\u548c\u4e30\u5bcc\u6027\uff0c\u5750\u5728\u4e00\u5f20\u53e4"} +{"id": "4001478", "video_name": "9f118709-2a05-555a-a08d-5ed6db647acc", "text": "\u96ea\u82b1\u98d8\u843d\uff0c\u5b8f\u89c2\u89c6\u89d2\u3002\u4fe1\u606f\uff1aTEKCT\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001479", "video_name": "13f46314-b839-53f0-bb1e-c3af6a77fa0f", "text": "\u57ce\u5e02\u8857\u5934\u573a\u666f\uff1a\u5c55\u793a\u6770\u68ee\u6301\u82b1\u675f\u671d\u827e\u739b\u8d70\u53bb\uff0c\u4e4c\u4e91\u5bc6\u5e03\uff0c\u4f46\u4ed6\u4ecd\u7136\u4e0d\u5c48\u4e0d\u6320\u3002"} +{"id": "4001480", "video_name": "b94df1d9-49f8-5bcf-b35b-9ed13e30bd27", "text": "\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u56bc\u7740\u53e3\u9999\u7cd6\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "4001481", "video_name": "2689f70b-334e-59bb-a91b-832939845235", "text": "\u5f53\u52a8\u7269\u4e4b\u4e00\u5750\u5728\u653e\u5c41\u57ab\u4e0a\u65f6\uff0c\u4e00\u4e2a\u54cd\u4eae\u7684\u653e\u5c41\u58f0\u5728\u7a7a\u6c14\u4e2d\u56de\u8361\u3002\u52a8\u4f5c2\uff0c\u5e27\u738724\uff0c\u8d85\u9ad8\u6e05\u89c6\u9891\u3002"} +{"id": "4001482", "video_name": "cf55e39b-a5d0-55bb-b2a3-1110cc90f0c8", "text": "\u6c34\u4e0b\u7684\u58a8\u6c34\uff0c\u65cb\u8f6c\u7740\uff0c\u6d41\u4f53\u827a\u672f\u56fe\u6848\uff0c\u67d4\u548c\u7684\u8272\u5f69\u3002"} +{"id": "4001483", "video_name": "f0fa3808-156a-5e9f-a482-3093f4976c5c", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u6355\u6349Chandrayaan 3\u7684\u8d77\u98de\u8fc7\u7a0b\uff0c\u70df\u96fe\u548c\u706b\u7130\u6eda\u6eda\uff0c\u63a7\u5236\u4e2d\u5fc3\u7684\u65c1\u89c2\u8005\u6b22"} +{"id": "4001484", "video_name": "a172f17a-15c6-59d1-837f-3f36c2b41619", "text": "\u56fe\u5e15\u514b\u00b7\u838e\u5e93\u4ece\u76f4\u5347\u673a\u4e0a\u8df3\u4f1e\u3002"} +{"id": "4001485", "video_name": "6bbb4eda-1990-5241-911f-c6bbf6d27b08", "text": "\u4e00\u5f20\u7c89\u8272\u5899\u548c\u7c89\u8272\u684c\u5b50\u7684\u7167\u7247\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u6735\u73ab\u7470\u82b1\uff0c(\u4e00\u4e2a\u82f9\u679c)\u4e00\u4e2a\u7cd6\u679c\uff0c\u4e00\u4e2a\u6cf0"} +{"id": "4001486", "video_name": "45be41c6-8a00-505b-ac1c-f7704a808db3", "text": "\u8759\u8760\u4fa0\u4e0e\u5168\u80fd\u4eba\u5728\u6df7\u4e71\u7684\u57ce\u5e02\u4e2d\u5bf9\u51b3\u3002"} +{"id": "4001487", "video_name": "af2e9f5c-ad47-55f8-a070-db12a1dd70b6", "text": "\u732b\u548c\u8001\u9f20\u5728\u591c\u665a\u5954\u8dd1\u3002"} +{"id": "4001488", "video_name": "ae4daca7-a4cb-5e26-9ac6-1aba85382afc", "text": "\u5973\u4eba\u6234\u7740\u592a\u9633\u955c\u5fae\u7b11\u7740\u9a7e\u9a76\u655e\u7bf7\u8f66\uff0c\u84dd\u5929\u548c\u5c71\u5cf0\u5728\u80cc\u666f\u4e2d\u5448\u73b0\u5361\u901a\u98ce\u683c\u3002"} +{"id": "4001489", "video_name": "00fd2c39-09fd-5d04-b8f5-54e452441085", "text": "\u751f\u6210\u4e00\u4e2a\u6301\u7eed10\u79d2\u7684\u89c6\u9891\uff0c\u753b\u9762\u4e3a\u62ff\u7740\u4e00\u6876\u7206\u7c73\u82b1\u7684\u5973\u6027\u8868\u60c5\u6109\u5feb\u3002"} +{"id": "4001490", "video_name": "202dcd64-23e5-5797-bc4b-06865bfe3978", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u767d\u8272\u623f\u95f4\u91cc\u8df3\u7740\u563b\u54c8\u821e\u3002"} +{"id": "4001491", "video_name": "12a2b76c-fac7-5839-8e34-d9476b13c87c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u58eb\u628a\u5934\u9760\u5728\u5979\u7231\u4eba\u7684\u80a9\u8180\u4e0a\u3002"} +{"id": "4001492", "video_name": "8f0c9125-534e-5f77-a3ce-ac616bd86aa6", "text": "\u4e00\u4f4d\u624e\u7740\u8fab\u5b50\u3001\u6234\u7740\u91d1\u8fb9\u773c\u955c\u3001\u7a7f\u7740\u767d\u8272T\u6064\u548c\u84dd\u8272\u725b\u4ed4\u88e4\uff0c\u8df3\u821e\u7684"} +{"id": "4001493", "video_name": "92ea31de-8f4e-5845-9bac-199f4c5b3d7f", "text": "\u4e00\u4e2a\u7537\u4eba\u9759\u5750\u51a5\u60f3\uff0c\u8eab\u4f53\u9759\u6b62\uff0c\u5fc3\u5883\u5b89\u5b81\u3002"} +{"id": "4001494", "video_name": "7dc3fe5d-5f19-573b-9ba7-0c14c443e5bb", "text": "\u4e00\u53ea\u72d7\u5403\u7740\u4e00\u4e2a\u84dd\u8272\u7684\u6c49\u5821\u3002"} +{"id": "4001495", "video_name": "3428ff0f-6d62-5481-be69-a0b8ce5e5620", "text": "\u4e00\u672c\u4e66\u91cc\u7684\u53e4\u8001\u6559\u4e49\u5728 TikTok \u7684\u753b\u9762\u4e2d\u5448\u73b0\u3002"} +{"id": "4001496", "video_name": "5478820e-7afb-5666-bfbf-05b1b4122545", "text": "\u4e91\u5728\u98ce\u4e2d\u6447\u66f3\uff0c\u592a\u9633\u4ece\u4e91\u540e\u51fa\u6765\u4e86\u3002"} +{"id": "4001497", "video_name": "9ac18fc8-27e9-5c03-8343-6ec7e41926a7", "text": "\u591c\u665a\uff0c\u6708\u4eae\uff0c\u68ee\u6797\u7684\u666f\u8272\uff0c\u4e00\u6839\u6302\u7740\u53f6\u5b50\u7684\u6811\u679d\uff0c\u88ab\u9732\u6c34\u8986\u76d6\u7740\uff0c\u4e00\u6ef4\u9732"} +{"id": "4001498", "video_name": "10067e5b-c8ed-5f42-a22f-fff5372722d9", "text": "\u706b\u7bad\u5728\u5145\u6ee1\u6d41\u661f\u7684\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4001499", "video_name": "b0ef0058-07bc-5e0f-8aeb-9ac0e008b26c", "text": "\u53cb\u597d\u7684\u9c7c\u548c\u5145\u6ee1\u6d3b\u529b\u7684\u9cd7\u9c7c\uff1a\u60f3\u8c61\u6709\u7740\u6109\u60a6\u8868\u60c5\u7684\u53cb\u597d\u9c7c\u513f\u548c\u5965\u5229\u4ee5\u53ca"} +{"id": "4001500", "video_name": "f1d1947f-2c7b-57db-95ef-6fc04e1a7eeb", "text": "\u5728\u60ac\u5d16\u4e0a\u7684\u8c6a\u534e\u4f4f\u5b85\u5916\u9762\u6b63\u5728\u4e0b\u5927\u96e8\uff0c\u4e0b\u7740\u96e8\uff0c\u4e0b\u7740\u96e8\u3002"} +{"id": "4001501", "video_name": "f14c23cb-585a-53e7-862d-b5defc582bf2", "text": "\u626d\u52a8\u7740\u8eab\u59ff\u7684\u5c55\u793a\u5973\u90ce\u821e\u8005\u5361\u901a\u5f62\u8c61\uff0c\u5934\u4e0a\u6234\u7740\u9ec4\u8272\u7fbd\u6bdb\uff0c\u8eab\u7a7f\u7ea2\u8272\u4eae\u7247\u793c\u670d\uff0c"} +{"id": "4001502", "video_name": "fdfc9955-2b11-5f9d-a9c7-0e4a69c3d757", "text": "\u51ef\u8482\u00b7\u4f69\u91cc\u5582\u8377\u9a6c\u00b7\u8f9b\u666e\u68ee\u4e00\u4e2a\u751c\u751c\u5708\u3002"} +{"id": "4001503", "video_name": "ca1ee839-267e-5a05-a1a0-69253f3c7cc3", "text": "\u4e00\u5219\u4ee4\u4eba\u60ca\u53f9\u7684\u592a\u9633\u955c\u5e7f\u544a\uff0c\u5177\u5907\u903c\u771f\u7684\u89c6\u89c9\u6548\u679c\u548c4K\u753b\u8d28\u3002"} +{"id": "4001504", "video_name": "c2517cee-eaf1-5674-bc6b-6570669c7f7d", "text": "\u52a0\u83f2\u732b\u5728\u505a\u5f39\u8df3\u8fd0\u52a8"} +{"id": "4001505", "video_name": "18d5b41d-4e27-5dbb-a01c-ab1ae88d3667", "text": "\u6bcf\u4e2a\u4eba\u90fd\u6c89\u8ff7\u4e8e\u624b\u673a\uff0c\u8ba9\u6211\u611f\u5230\u5f88\u4e0d\u8212\u670d\u3002"} +{"id": "4001506", "video_name": "51217a3f-bc19-5a38-b2ef-aa2943d2acfd", "text": "\u51ef\u7559\u5750\u5728\u9c9c\u8840\u795e\u7684\u738b\u5ea7\u4e0a\u3002"} +{"id": "4001507", "video_name": "657355cc-85ef-59d4-b152-d2e34a36afbb", "text": "\u661f\u9645\u98de\u8239\u5185\u90e8\uff0c\u6709\u4e00\u4e2a\u5927\u7684\u89c2\u666f\u7532\u677f\uff0c\u661f\u661f\u5728\u65c1\u8fb9\u98de\u8fc7\uff0c\u821e\u53f0\u4e0a\u6709\u4e00\u652f\u6447\u6eda\u4e09\u4eba\u4e50\u961f\u3002"} +{"id": "4001508", "video_name": "f7766e79-1677-5a3d-bdae-79ccc09831b6", "text": "\u51ac\u5929\u91cc\uff0c\u9e1f\u513f\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u56de\u5bb6\u3002"} +{"id": "4001509", "video_name": "cdc2fbc4-97dc-5e62-9c0a-1989a3b3f637", "text": "25\u79d2\u7684\u4e4c\u9e26\u98de\u884c"} +{"id": "4001510", "video_name": "1e10ae6c-28e7-5483-a4d5-f79d6092891c", "text": "\u5899\u7eb8\u957f\u957f\u7684\u88ab\u6495\u6210\u51f9\u51f8\u4e0d\u5e73\u7684\u6761\u72b6\uff0c\u9732\u51fa\u4e0b\u9762\u8150\u70c2\u7684\u6728\u5934\u3002"} +{"id": "4001511", "video_name": "b54f8e5d-8bf0-5dfe-9da5-bd7afdb3cc0a", "text": "\u4e00\u5e45\u8272\u5f69\u6591\u6593\u7684\u58ee\u4e3d\u65e5\u51fa\u56fe\u753b\uff0c\u7528\u6e29\u6696\u7684\u6a59\u8272\u548c\u7c89\u8272\u6e32\u67d3\u4e86\u5929\u7a7a\u3002\u756a\u8304\u6258\u5c3c"} +{"id": "4001512", "video_name": "780cc1b9-7e25-5c0e-8c8d-ebd78f007fe1", "text": "Source sentence: \u6d77\u4e0a\u7684\u6d77\u76d7\u8239\n\nTranslated sentence: \u6d77\u76d7\u8239\u5728\u6d77\u6d0b\u4e2d\u3002"} +{"id": "4001513", "video_name": "349b0e0e-2b71-5506-9664-90de90f024b9", "text": "\u4e00\u4e2a\u7a7f\u8d8a\u81f3 8k \u8d85\u7ea7\u4f20\u9001\u95e8\u7684\u7537\u5b69\u3002"} +{"id": "4001514", "video_name": "1d6ea49b-6d31-5fc5-aca8-1f8c95d5d5e6", "text": "\u4e00\u6761\u50cf\u7011\u5e03\u4e00\u6837\u4ece\u4e0a\u65b9\u6d41\u4e0b\u6765\u7684\u6cb3\u6d41\uff0c\u4f46\u6ca1\u6709\u4efb\u4f55\u7eff\u8272\u5c71\u77f3\u3002"} +{"id": "4001515", "video_name": "fd724e6c-0639-537e-954c-7568919d4ec7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u6b63\u5728\u9605\u8bfb\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001516", "video_name": "8db1dd20-b132-55df-8e5d-2b49fd4f02cc", "text": "\u7ed8\u5236\u7ebf\u8def\u5f62\u6210\u5730\u5f62\u56fe\u7684\u62d3\u6251\u56fe\u3002"} +{"id": "4001517", "video_name": "0b378bf2-a004-5f29-80ab-9544fa13e910", "text": "\u4e00\u4e2a\u72ec\u773c\u7684\u592a\u9633\u5728\u4e91\u6735\u4e0a\u6316\u7164\u3002\n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u6b63\u5728\u57ab\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "4001518", "video_name": "a2fdbc7d-cbed-5128-bb10-04f05e6e457c", "text": "\u7535\u5de5\u88ab\u95ea\u7535\u51fb\u4e2d\uff0c\u53d1\u51fa\u96be\u4ee5\u5fcd\u53d7\u7684\u75db\u82e6\u547b\u541f\u3002"} +{"id": "4001519", "video_name": "715ef8ca-2396-5328-9dcf-9e5aaaec6c62", "text": "\u4e00\u4e2a\u54e5\u7279\u5f0f\u672a\u6765\u706b\u7bad\u8d77\u98de\uff0c\u5411\u4e0a\u98de\u884c\uff0c\u71c3\u8d77\u4e86\u5927\u91cf\u7684\u706b\u548c\u70df\u3002"} +{"id": "4001520", "video_name": "153d69c1-2cbc-5526-b6e8-a11fa610a50f", "text": "\u4eba\u4eec\u8eab\u7a7f\u98d8\u9038\u7684\u8863\u670d\uff0c\u624b\u6301\u95ea\u70c1\u7740\u5343\u53d8\u4e07\u5316\u989c\u8272\u7684\u6c34\u6676\u73e0\u3002\u8fd9\u4e9b\u6c34\u6676\u73e0\u4e0d\u4ec5\u4ec5\u662f"} +{"id": "4001521", "video_name": "1e0b50e4-1933-56ec-82c1-8f1f1f5215b7", "text": "\u5b66\u6821\u7684\u95e8\u5916\u6709\u957f\u6905\u548c\u5b66\u751f\uff0c\u662f\u4e00\u6bb53D\u52a8\u753b\u3002"} +{"id": "4001522", "video_name": "b2c02cee-33cb-53a1-b08c-44043b8be910", "text": "\u751f\u6210\u4e00\u5f20\u8fd1\u8ddd\u79bb\u62cd\u6444\u67d4\u8f6f\u8868\u9762\u5c0f\u732b\u722a\u5370\u7684\u56fe\u50cf\u3002"} +{"id": "4001523", "video_name": "ecf476ca-fc99-500a-bb89-8b32cf27ca83", "text": "\u521b\u9020\u4e00\u4e2a\u8ff7\u4eba\u800c\u5929\u771f\u65e0\u90aa\u7684\u516c\u4e3b\u5f62\u8c61\uff0c\u5979\u767d\u7699\u7684\u808c\u80a4\u7a7f\u7740\u4f18\u96c5\u7684\u5370\u5ea6\u7687\u5bb6\u670d\u9970\uff0c\u5750"} +{"id": "4001524", "video_name": "034084cd-56c1-580e-83c5-ed49bbb89840", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u3002\u4ed6\u51fa\u6c57\u5f88\u591a\uff0c\u975e\u5e38\u5bb3\u6015\u5e76\u76f4\u89c6\u7740\u6444\u50cf\u5934\u3002\u4ed6\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u80cc\u5fc3"} +{"id": "4001525", "video_name": "cac79a06-3675-55fe-bc4b-27ae35a82ba9", "text": "\u53ef\u6015\u7684\u5c9b\u5c7f\uff0c\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u6050\u6016\u7684\u5915\u9633\u666f\u8272\uff0c\u58ee\u89c2\u7684\u5915\u9633\u666f\u8272\u3002"} +{"id": "4001526", "video_name": "cdc1c810-eb5e-5f16-b5b1-57d680c80d9d", "text": "\u57ce\u5e02\u7684\u9e1f\u77b0\u89c6\u56fe\u3002\u4fe1\u606f\uff1afazbear\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001527", "video_name": "cd5e8adc-9fd9-5e38-9112-f4723fa4965c", "text": "\u508d\u665a\u65f6\u5206\u5efa\u7b51\u7fa4\u7684\u65bd\u5de5\u73b0\u573a\uff0c\u5de5\u4eba\u4eec\u6b63\u5728\u79bb\u5f00\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4k\u3002"} +{"id": "4001528", "video_name": "1ddcb1ba-e5bd-5b50-9776-5a15b6c838cc", "text": "\u4e00\u4e2a\u53cc\u5c42\u8089\u6c49\u5821\u6389\u5728\u4e00\u4e2a\u5145\u6ee1\u706b\u5149\u7684\u9ed1\u6697\u800c\u6e29\u6696\u7684\u73af\u5883\u4e2d\u7684\u4e61\u6751\u6728\u677f\u4e0a\u3002\u683c\u5f0f9:16\u3002"} +{"id": "4001529", "video_name": "6af2c460-6b5d-5b67-a5e1-d1dd8fb537d8", "text": "\u4e00\u4f4d\u8c03\u9152\u5e08\u7a7f\u7740\u897f\u88c5\uff0c\u572880\u5e74\u4ee3\u7684\u9152\u5427\u91cc\uff0c\u5012\u996e\u6599\u8fdb\u9ad8\u7403\u676f\uff0c\u7ea2\u8272\u80cc\u666f\u3002"} +{"id": "4001530", "video_name": "d183d17b-a3c5-548d-8d2f-6100e466071c", "text": "11\u670818\u65e5\u60b2\u5267\u4e8b\u4ef6\u7684\u987a\u5e8f\uff0c\u5305\u62ec\u56fd\u4f1a\u8bae\u5458\u745e\u5b89\u7684\u9047\u523a\u3002"} +{"id": "4001531", "video_name": "b1bbc22b-859f-5b8b-b869-2df42bbc9aa7", "text": "\u5c0f\u5b69\u7f57\u66fc\u548c\u4ed6\u7684\u5988\u5988\u5728\u5341\u5b57\u8def\u53e3\u8d70\u8def\u3002"} +{"id": "4001532", "video_name": "a3ee4eec-1e17-56ee-ab2b-648222ffa384", "text": "\u72d7\u8bf4\u201c\u6211\u7231\u4f60\u201d\uff0c\u7136\u540e\u9732\u51fa\u7259\u9f7f\u3002"} +{"id": "4001533", "video_name": "7435d628-fe01-5c62-8bb3-96c737fb0c9b", "text": "\u5c3c\u7f57\u6cb3\u4e0a\u7684\u5996\u7cbe\u7684\u4e00\u90e81970\u5e74\u7684\u8001\u7535\u5f71\u3002"} +{"id": "4001534", "video_name": "68119fd8-6c71-5970-8b4c-0920e125c74d", "text": "\u5229\u7528\u52a8\u753b\u6587\u5b57\u4e91\u3001\u6587\u672c\u8bbe\u8ba1\u52a8\u753b\u3001\u52a8\u6001\u6392\u7248\u3002"} +{"id": "4001535", "video_name": "9c7e2634-f07c-5051-8c4a-f5d0a30a3837", "text": "\u4e00\u5934\u725b\u88ab\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\u5728\u519c\u573a\u91cc\u517b\u7740\u3002"} +{"id": "4001536", "video_name": "ccaacad8-e4aa-5a07-98ae-87a13872c4b6", "text": "\u7206\u7c73\u82b1\u5e26\u7740\u7fc5\u8180\u57288K\u57ce\u5e02\u4e0a\u7a7a\u98de\u7fd4\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0cMotion 2\uff0cSeed 4\uff0c\u80cc\u666f\u4e2d"} +{"id": "4001537", "video_name": "836fb690-b0ee-5422-87e9-86f9f99f1c13", "text": "\u8ff7\u4eba\u7684\u82b1\u6735\u5728\u8349\u5730\u4e0a\uff0c\u8f7b\u98ce\u62c2\u8fc7\uff0c\u7f8e\u5f97\u60ca\u4eba\uff0c\u975e\u5e38\u5b9c\u4eba\u3002"} +{"id": "4001538", "video_name": "21dd42f5-fcfe-5be8-8467-66df28a89aeb", "text": "\u4e00\u6735\u82b1\u5931\u53bb\u4e86\u4e00\u7247\u82b1\u74e3\u3002\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "4001539", "video_name": "275bd4b1-d548-5a2a-88a4-d9dd77fc995f", "text": "\u4e00\u4e2a\u534a\u8138\u8096\u50cf\uff0c\u4e00\u4e2a\u7a7f\u7740\u50cf\u300a\u6c99\u4e18\u300b\u7535\u5f71\u7684\u7537\u4eba\uff0c\u60b2\u4f24\u7684\u80cc\u666f\uff0c\u4e0d\u9732\u9762\uff0c\u5934\u4f4e\u5782\uff0c"} +{"id": "4001540", "video_name": "40116f0a-acef-589d-a294-c56b56456dee", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u957f\u6905\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "4001541", "video_name": "383370d2-53f9-5d2a-b0eb-5c6402aa6fff", "text": "\u4e00\u4e2a\u9001\u8d27\u7684\u5237\u5b50\u6b63\u5728\u5403\u4e1c\u897f\u3002\u9644\u4ef61\u3002"} +{"id": "4001542", "video_name": "6513d104-63dc-5713-b97e-714a44ad6741", "text": "\u4e00\u4e2a\u6709\u623f\u5c4b\u548c\u6811\u7684\u5c0f\u6751\u5e84\u7684\u666f\u8272\u3002"} +{"id": "4001543", "video_name": "95691b1a-1e9b-56fd-84b2-90a4b54cb8a6", "text": "\u4e00\u676f\u9ad8\u5927\u7684\u5976\u6614\u4ece\u5f69\u8679\u4e2d\u55b7\u6d8c\u51fa\u8272\u5f69\u3002"} +{"id": "4001544", "video_name": "0719c386-3f0a-5480-a5ea-3be9803c418e", "text": "\u8272\u5f69\u4ece\u6df1\u5230\u6d45\uff0c\u6c34\u5f69\u753b\u8868\u73b0\u7684\u662f\u4e00\u5e45\u5173\u4e8e\u5347\u534e\u7684\u8d85\u73b0\u5b9e\u4e3b\u4e49\u753b\u4f5c\uff0c\u4ece\u56fa\u4f53\u5230\u6db2\u4f53\u7684\u8f6c\u5316\u3002"} +{"id": "4001545", "video_name": "07ad532c-f658-516d-8e01-5cd3cbbd31d9", "text": "\u90a3\u65f6\uff0c\u6211\u7684\u4e3b\u795e\u4f1a\u6765\uff0c\u6240\u6709\u7684\u5723\u8005\u4e0e\u4ed6\u540c\u5728\u30023D\u52a8\u753b\uff0c16:9\uff0c\u66f4\u50cf\u8fd9\u5f20\u56fe\u7247\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u8ba9\u6211\u60ca"} +{"id": "4001546", "video_name": "8596b33e-5f74-5484-b959-afa3a5c42585", "text": "\u4e00\u6761\u84dd\u8272\u7684\u9c7c\u8df3\u51fa\u5496\u5561\u676f\u3002"} +{"id": "4001547", "video_name": "a9d75605-92d2-5ead-b746-b69a06357336", "text": "\u521b\u9020\u4e00\u4e2a\u6e29\u99a8\u7684\u573a\u666f\uff0cPiko\u6234\u7740\u5723\u8bde\u5e3d\u5b50\uff0c\u770b\u8d77\u6765\u975e\u5e38\u53ef\u7231\uff0c\u91cd\u70b9\u5173\u6ce8\u4ed6\u773c\u4e2d\u7684\u559c\u60a6\u3002"} +{"id": "4001548", "video_name": "562e02c1-b112-5b21-9cc1-0a5f9ec8e950", "text": "\u7236\u4eb2\u548c\u513f\u5b50\u5728\u8239\u4e0a\u9493\u9c7c\u5728\u6e56\u91cc\u3002"} +{"id": "4001549", "video_name": "73de7bb1-9629-5322-a57e-84e19c89b1a2", "text": "\u4e00\u4e2a\u7531\u5148\u8fdb\u6280\u672f\u548c\u53ef\u6301\u7eed\u5efa\u7b51\u6784\u6210\u7684\u73b0\u4ee3\u667a\u80fd\u4e16\u754c\u3002"} +{"id": "4001550", "video_name": "58495266-2b88-5e4e-bc65-8c2f962c5160", "text": "Windows 11 Copilot \u5e26\u9886\u6211\u4eec\u8fdb\u5165\u4eba\u5de5\u667a\u80fd\u7684\u672a\u6765\uff0c\u4ee5\u5168\u65b0\u7684\u65b9\u5f0f\u770b\u5f85\u60a8\u7684\u7535\u8111\u3002\n\nSource sentence: The new iPhone is equipped with advanced camera technology that allows"} +{"id": "4001551", "video_name": "871a4529-ce26-55ff-a134-dd1e4a1cda19", "text": "\u624b\u6301\u7eb9\u8eab\u67aa\u7684\u672a\u6765\u611f\u5f3a\u3001\u9177\u70ab\u7684\u7eb9\u8eab\u7537\u5b50\u3002"} +{"id": "4001552", "video_name": "6044cc25-c146-5a56-9a5e-6c1136fb2055", "text": "\u653e\u677e\u7684\u5973\u4eba\u5728\u6d77\u6ee9\u4e0a\u7684\u684c\u5b50\u4e0a\u559d\u5496\u5561\u3002"} +{"id": "4001553", "video_name": "c6f8a12b-4598-5bc3-824d-6b20ac3e4be6", "text": "\u7231\u56e0\u65af\u5766\u624b\u6301\u5730\u7403\u4eea\u7ad9\u5728\u9ed1\u677f\u524d\u5411\u4e2d\u56fd\u5b66\u751f\u6388\u8bfe\u3002"} +{"id": "4001554", "video_name": "5b941b3f-e105-5fb8-835c-1ba96fba621f", "text": "\u4e00\u4e2a\u6b22\u4e50\u7684\u5723\u8bde\u573a\u666f\u3002\u4fe1\u606f\uff1a\u8428\u5bbe\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001555", "video_name": "272be47b-2a4b-5e12-afe0-28846fe809fd", "text": "\u9644\u4e0a\u4e09\u5f20\u852c\u83dc\u821e\u8e48\u3001\u6d6a\u6f2b\u5e7b\u60f3\u611f\u89c9\u7684\u56fe\u7247\uff0c\u5f3a\u8c03\u91ce\u732a\u8089\u7684\u5149\u4eae\u3002"} +{"id": "4001556", "video_name": "ec331757-e5be-5199-be26-32af2c5f1fb5", "text": "\u4f60\u6bcf\u6b21\u90fd\u6beb\u4e0d\u5728\u610f\u5730\u770b\u8fc7\u4ed6\u4eec\uff0c\u4f60\u53ea\u662f\u60f3\u79bb\u5f00\u8fd9\u4e2a\u5730\u65b9\u3002"} +{"id": "4001557", "video_name": "807585b7-ae82-51cf-93c4-78cab095c3eb", "text": "\u8d8a\u6765\u8d8a\u591a\u7684\u4eba\u6b63\u5728\u9605\u8bfb\u3002"} +{"id": "4001558", "video_name": "b2aef692-f5ba-58b1-9a8b-dbdad0c3b39c", "text": "\u8d85\u5e02\u91cc\u5230\u5904\u90fd\u662f\u673a\u5668\u4eba\uff0c\u5728\u90a3\u91cc\u5de5\u4f5c\u3002"} +{"id": "4001559", "video_name": "4953111c-ee91-56f2-b587-b863db237cef", "text": "60\u5e74\u4ee3\u4e13\u8f91\u5c01\u9762\u9ed1\u8272\u5f25\u6492\u7684\u6781\u81f4\u8fd0\u52a8\u3002"} +{"id": "4001560", "video_name": "feabc5fe-a487-5f75-bfe4-ba0cdb72fe80", "text": "\u6d89\u8c37\u548c\u5efa\u7b51\u7269\u4e0a\u7684\u9713\u8679\u706f\u6807\u5fd7\u7684\u98de\u884c\u901a\u8fc7\u3002"} +{"id": "4001561", "video_name": "3bf08185-22c8-5482-a584-d29615bdb3b6", "text": "\u5929\u6c14\u6b63\u88ab\u79cb\u98ce\u5439\u7740\u3002"} +{"id": "4001562", "video_name": "93509d36-73d9-5e51-94a2-d6fbfcbf79b3", "text": "\u8001\u4eba\u957f\u7740\u767d\u8272\u957f\u80e1\u987b\uff0c\u7a7f\u7740\u4e00\u4ef6\u7977\u544a\u62ab\u80a9\uff0c\u5750\u5728\u72ee\u5b50\u8eab\u4e0a\uff0c\u5728\u8036\u8def\u6492\u51b7\u53e4\u57ce\u5468"} +{"id": "4001563", "video_name": "09c4bc78-2cbf-55ae-a990-256507b8bb55", "text": "\u5e7f\u88a4\u7684\u7530\u91ce\uff0c\u5954\u8dd1\u7684\u673a\u5668\u4eba\uff0c\u6674\u6717\u7684\u5929\u7a7a\u3002"} +{"id": "4001564", "video_name": "4e896314-8c8a-527b-85e7-0360d4fedf07", "text": "Source sentence: J.S. Bach\uff0cCouperin\uff0cTelemann\uff0cRameau\uff0cScarlatti\u548cHaendel\u5728\u4e00\u8f86\u516c\u5171\u6c7d\u8f66\u4e0a\u3002\n\nTranslated sentence: \u5728\u4e00\u8f86\u516c\u5171\u6c7d\u8f66\u91cc\uff0c"} +{"id": "4001565", "video_name": "42965c69-24c3-56fd-aecd-0d8fc38dfeab", "text": "\u4e9a\u5386\u5c71\u5927\u5927\u5e1d\uff0c\u4e00\u4e2a\u4f1f\u5927\u7684\u6218\u58eb\u3002"} +{"id": "4001566", "video_name": "86308704-6e5d-5c38-ac1d-0baeb9981c1a", "text": "\u5f3a\u8c03\u8349\u98df\u52a8\u7269\u7684\u56f0\u5883\u548c\u8d44\u6e90\u7684\u532e\u4e4f\u3002\u6f2b\u753b\u3002"} +{"id": "4001567", "video_name": "d82d34a5-96d2-5020-8499-d0b3d003fbc8", "text": "\u4e00\u4f4d\u4f18\u79c0\u7684\u62a4\u58eb\u5e2e\u52a9\u63a5\u751f\u768416\u79d2\u89c6\u9891"} +{"id": "4001568", "video_name": "2fbcc0d3-f073-50b3-ba4b-ccbd6c8023e0", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u5e74\u8f7b\u5370\u5ea6\u7537\u5b50\u7ad9\u5728\u4ed6\u7684\u623f\u5b50\u91cc\u8868\u73b0\u51fa\u7edd\u671b\u3002"} +{"id": "4001569", "video_name": "5cd356a0-51f5-5d37-abef-e864135f1f93", "text": "\u9ad8\u7ba1\u55b7\u6c14\u5f0f\u98de\u673a\u5728\u632a\u5a01\u5c71\u8c37\u4f4e\u7a7a\u98de\u884c\uff0c\u5728\u66b4\u98ce\u96ea\u4e2d\u3002"} +{"id": "4001570", "video_name": "8ac566d4-64e8-51d4-86e0-b15a8ab7b68b", "text": "\u5c0f\u5973\u5b69\u5728\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "4001571", "video_name": "26ca65b0-a1a0-57e2-ae18-0f0d98dae12e", "text": "\u6211\u9700\u8981\u957f\u65f6\u95f4\u7684\u8d5b\u8f66\u6f02\u79fb\u89c6\u9891\u3002"} +{"id": "4001572", "video_name": "b21f7c81-bf9a-57de-a843-368c034b9369", "text": "\u5c55\u793a\u53d1\u73b0\u7684\u7cfb\u5916\u884c\u661f\u7684\u827a\u672f\u8868\u73b0\u6216\u52a8\u753b\u3002"} +{"id": "4001573", "video_name": "ffdaf670-e102-532a-855c-10368cc3cffe", "text": "\u5927\u6d6a\u6f6e \u4fe1\u606f\uff1a\u521b\u9020\u795e\u7ecf\u7f51\u7edc\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001574", "video_name": "e7cc3a33-0a20-57ec-975e-1a8840f3e51f", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u5706\u5f62\u7684\u5fbd\u7ae0\uff0c\u5176\u4e2d\u5305\u62ec\u6765\u81ea\u4e0d\u540c\u6c11\u95f4\u4f20\u8bf4\u7684\u795e\u8bdd\u751f\u7269\u3001\u7b26\u53f7\u6216\u5143\u7d20\u3002"} +{"id": "4001575", "video_name": "3c181775-3080-5243-a8cc-d6d88063ad2b", "text": "\u6234\u7740\u592a\u9633\u9762\u5177\u7684\u5947\u602a\u4eba\u7ad9\u5728\u9ea6\u7530\u91cc\uff0c\u8ba9\u4eba\u4e0d\u5b89\uff0c70\u5e74\u4ee3\u827a\u672f\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "4001576", "video_name": "fdb716de-b537-567d-8055-877112ae5001", "text": "\u751f\u7269\uff0c\u767d\u8272\u7684\u7f8a\u6bdb\uff0c\u9ad8\u5927\uff0c\u957f\u5599\uff0c\u51ac\u5929\uff0c\u5c71\u533a\u3002"} +{"id": "4001577", "video_name": "ccb62fcf-f94d-5e63-9220-050eab9de555", "text": "\u540c\u4e00\u4e2a\u7537\u5b69\u8d64\u811a\u8d70\u8fc7\u7530\u91ce\uff0c\u76ee\u5149\u6ce8\u89c6\u7740\u8fdc\u65b9\u7684\u5730\u5e73\u7ebf\u3002"} +{"id": "4001578", "video_name": "ee3e04fd-b876-50c1-9ec1-02a3cfec9dda", "text": "\u88ab\u56f0\u5728\u7f51\u4e2d\u7684\u72ee\u5b50\u5229\u5965\u88ab\u4e00\u53ea\u540d\u53eb\u7c73\u5a05\u7684\u5c0f\u8001\u9f20\u4e0b\u5b9a\u51b3\u5fc3\u5730\u5543\u54ac\u7740\u7f51\u7ef3\u3002"} +{"id": "4001579", "video_name": "0143d376-9eb1-5e38-a7e2-701df13fbdd5", "text": "\u5bbd\u5e45\u955c\u5934\u62cd\u6444\u8c37\u4ed3\uff1a\u5c55\u793a\u8ff7\u4eba\u7684\u7ea2\u8272\u8c37\u4ed3\u88ab\u96ea\u8986\u76d6\uff0c\u95ea\u70c1\u7740\u706f\u5149\uff0c\u91cc"} +{"id": "4001580", "video_name": "1c58af82-afd5-5fbf-8ee1-8b884918f5a4", "text": "\u5c0f\u578b\u73a9\u5177\u9a91\u58eb\u961f\u4f0d\u5728\u73a9\u5177\u68ee\u6797\u4e2d\u524d\u884c\uff0c\u8fdc\u5904\u6709\u4e00\u5ea7\u57ce\u5821\u3002"} +{"id": "4001581", "video_name": "4744305c-2e20-5244-a59f-7abb1d3bc3eb", "text": "\u623f\u5b50\u88ab\u5927\u91cf\u7684\u6c34\u6df9\u6ca1\uff0c\u5730\u4e0a\u90fd\u662f\u6c34\u3002"} +{"id": "4001582", "video_name": "bac573e1-7851-5531-bc58-cccef3acf5a3", "text": "\u5b5f\u52a0\u62c9\u864e\u5403\u4e1c\u897f\uff0c\u653e\u5927\u955c\u5934\u3002\u70ed\u5e26\u96e8\u6797\u3002"} +{"id": "4001583", "video_name": "abc9e9e6-a746-5780-af9a-185981937723", "text": "\u827e\u83f2\u5c14\u94c1\u5854\u4f5c\u4e3a\u80cc\u666f\uff0c\u4e0a\u9762\u6709\u6587\u5b57\u201c\u6cd5\u8bed\u4f7f\u7528\u56fd\u5bb6\u524d\u4e94\u540d\u201d\u3002"} +{"id": "4001584", "video_name": "49b81930-4a2b-59eb-905e-4dce267a35c2", "text": "\u4e00\u4e2a\u96ea\u4eba\u770b\u7740\u843d\u96ea\u3002"} +{"id": "4001585", "video_name": "8f5232b0-14ae-5c45-8c50-65753c5b7242", "text": "\u4e00\u6761\u7f8e\u4e3d\u7684\u9ec4\u8272\u9ca4\u9c7c\u68a6\u60f3\u6210\u4e3a\u4e00\u6761\u9f99\u3002"} +{"id": "4001586", "video_name": "3533b619-8a03-56a6-ae1f-cc971a26ac2c", "text": "\u673a\u7ec4\u6210\u5458\u4e3a\u5386\u53f2\u6027\u7684\u822a\u884c\u505a\u51c6\u5907\uff0c\u4ed6\u4eec\u7684\u5fc3\u5145\u6ee1\u4e86\u5174\u594b\u548c\u4e0d\u786e\u5b9a\u3002\u524d\u5f80\u592a\u7a7a\u3002"} +{"id": "4001587", "video_name": "9821ec21-ee0c-5a6e-9d4e-4b8f3b6e1f26", "text": "\u7ec8\u6781\u9ed8\u8ba4\u5821\u5792\u4e4b\u591c\uff0c3D\u76ae\u514b\u65af\u98ce\u683c\uff0c4K\u771f\u5b9e\u611f\uff0c\u7ec6\u8282\u7e41\u590d\uff0c\u4e2d\u571f\u98ce\u683c\u3002"} +{"id": "4001588", "video_name": "8a7cc554-fb74-5935-84ac-caaa824c6707", "text": "\u667a\u6167\u7684\u7eff\u8272\uff0c\u5468\u56f4\u6d12\u6ee1\u4e86\u91d1\u94b1\u3002"} +{"id": "4001589", "video_name": "f8e57175-0e09-5829-ba92-347bc6593746", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u68ee\u6797\u91cc\u6563\u6b65\uff0c\u6d3b\u6cfc\u53ef\u7231\uff0c\u6bdb\u8272\u6d01\u767d\u3002"} +{"id": "4001590", "video_name": "75380c28-e0dd-52a2-ab28-c8d2bf2f29f8", "text": "\u5728\u4e1b\u6797\u4e2d\u79fb\u52a8\u7684Python\uff0c\u7535\u5f71\u822c\u7684\u611f\u89c9\u3002"} +{"id": "4001591", "video_name": "3e645ed5-3081-5981-a212-d2f8e558e8a7", "text": "\u5370\u5ea6\u795e\u7947\u6e7f\u5a46\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "4001592", "video_name": "b1092773-aa2d-5531-81bb-48c7df061174", "text": "\u514b\u91cc\u65af\u8482\u4e9a\u8bfa\u00b7\u7f57\u7eb3\u5c14\u591a\u662f\u4e00\u4e2a\u5e26\u7740\u8db3\u7403\u7684\u7537\u5b69\uff0c\u4ed6\u5728\u7403\u573a\u4e0a\u5c04\u51fa\u4e86\u4ed6\u7684\u7b2c\u4e00\u811a\u7403"} +{"id": "4001593", "video_name": "e1e35a57-19de-513e-a1dd-39107cddf994", "text": "\u7535\u5f71\u5316\u7684\u300a\u745e\u514b\u548c\u83ab\u8482\u300b\u4e2d\uff0c\u9c8d\u52c3\u00b7\u9a6c\u5229\u4e0e\u683c\u6797\u5947\u4e00\u8d77\u5750\u5728\u644a\u4f4d\u4e0a\uff0c\u56f4\u6210\u4e00"} +{"id": "4001594", "video_name": "53680f92-f1e5-5903-adbd-4b31b11c1aea", "text": "\u732b\u5973\u90ce\u5728\u96e8\u4e2d\u8857\u5934\u8df3\u821e\u3002"} +{"id": "4001595", "video_name": "241dce77-17de-53e5-9c48-73ea0c00bffe", "text": "\u5b99\u65af\u795e\u88ab\u4ed6\u7684\u5b69\u5b50\u4eec\u56f4\u7ed5\u7740\uff0c\u4ed6\u4eec\u656c\u91cd\u548c\u94a6\u4f69\u7740\u4ed6\u3002"} +{"id": "4001596", "video_name": "21850f48-94cd-5aa1-86d4-c8e538d39b55", "text": "\u4e00\u4f4d\u7a7f\u7740\u7f8e\u4e3d\u88d9\u5b50\u7684\u97e9\u56fd\u5973\u5b69\u5728\u6811\u6797\u4e2d\u8d70\u8def\u3002"} +{"id": "4001597", "video_name": "c1074e7a-2c27-5d01-bb9f-4c3eac3f8945", "text": "\u4e00\u4e2a\u7537\u4eba\u6c89\u601d\u7740\uff0c\u6ce8\u89c6\u7740\u5feb\u901f\u65cb\u8f6c\u7684\u5730\u7403\u865a\u62df\u5149\u5f71\u6295\u5f71\u3002"} +{"id": "4001598", "video_name": "4655d25f-69ff-597c-bf9b-7bd4c9bd2524", "text": "\u4eba\u773c\u7684\u8fd1\u8ddd\u79bb\u89c6\u9891\uff0c\u84dd\u8272\u773c\u775b\uff0c\u903c\u771f\u76843D\u6548\u679c\u3002"} +{"id": "4001599", "video_name": "a05c0163-f938-52dd-8568-98861f05f1c8", "text": "POV\u98de\u8d8a\u5f57\u661f\u661f\u56e2\u3002"} +{"id": "4001600", "video_name": "25ac1d4b-df6a-5b44-9d1d-e0572b6548ee", "text": "\u4e00\u53ea\u72ee\u5b50\u5954\u8dd1\u300260\u5e27\u9ad8\u8d28\u91cf\u3002"} +{"id": "4001601", "video_name": "bef45d3e-dfe7-5176-b53c-fc31e35a5efd", "text": "\u7537\u5b50\u5c06\u76d2\u5f0f\u78c1\u5e26\u6254\u5230\u5730\u4e0a\uff0c\u78c1\u5e26\u7834\u788e\uff0c\u6162\u52a8\u4f5c\uff0c\u903c\u771f\u3002"} +{"id": "4001602", "video_name": "333b8b93-e8d9-5767-b7ad-42de88fcff66", "text": "\u5fb7\u97e6\u6069\u00b7\u7ea6\u7ff0\u900a\u5728\u7535\u5f71\u300aCovid 20\u300b\u4e2d\u9970\u6f14\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u3002"} +{"id": "4001603", "video_name": "cca0421e-7483-565e-95ab-66f5831c38f7", "text": "\u5927\u4f17\u6c7d\u8f66\u5728\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u7684\u57ce\u5e02\u91cc\u884c\u9a76\uff0c\u4fdd\u9669\u6760\u5bf9\u51c6\u6444\u50cf\u673a\u3002"} +{"id": "4001604", "video_name": "5a72cd18-4b47-5038-9299-0ee0af155911", "text": "\u4e00\u4e2a\u7537\u4eba\u65e0\u754f\u5730\u7ad9\u5728\u5343\u4eba\u9762\u524d\u3002"} +{"id": "4001605", "video_name": "b18a351d-fb84-5f35-be69-02ba0c61518d", "text": "\u5927\u536b\u00b7\u7f57\u5179\u5728\u821e\u53f0\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "4001606", "video_name": "81f69a86-b943-5f68-ad69-39bcc8f65f49", "text": "\u6811\u76ae\u7684\u8fd1\u666f\u89c6\u9891"} +{"id": "4001607", "video_name": "61eba2f5-4a36-54d9-9548-9422b57eb1b5", "text": "\u4e00\u53ea\u5c3c\u5c14\u57fa\u91cc\u5854\u5c14\u5c71\u7f8a\u5728\u6d77\u6d0b\u4e2d\u7684\u8239\u4e0a\u3002"} +{"id": "4001608", "video_name": "a1547650-06da-55b6-bd43-f9a309ac2681", "text": "\u6211\u9700\u8981\u4e00\u4e2a1\u5206\u949f\u7684TikTok\u89c6\u9891\uff0c\u5c55\u793a\u6ce2\u5170\u534e\u6c99\u7684\u5a01\u5170\u8bfa\u533a\u4e3b\u8981\u8857\u9053\u3001\u5a31\u4e50\u548c\u5b66\u6821\u3002"} +{"id": "4001609", "video_name": "98841e6c-23ec-55ba-a586-f530a4b64180", "text": "\u51b0\u5c9b\u7684\u5c71\u5f62\u72b6\u50cf\u79fb\u52a8\u4e2d\u7684\u5973\u4eba\u3002"} +{"id": "4001610", "video_name": "4c388a26-79aa-5c61-a7ca-81fb3747ee20", "text": "\u53e4\u4ee3\u7267\u6b4c\u4e2d\u7f8e\u4e3d\u7684\u4ed9\u5973\u5728\u5929\u5bab\u4e2d\u8df3\u821e\u3002"} +{"id": "4001611", "video_name": "770bc7d6-5c5d-5cc7-87a4-60b71fc25936", "text": "\u7f51\u7ad9\u4e0a\u7684\u52a8\u753b\u4ece\u5de6\u5230\u53f3\u79fb\u52a8\uff0c\u80cc\u666f\u767d\u8272\uff0c\u52a8\u753b\u6de1\u84dd\u8272\u3002"} +{"id": "4001612", "video_name": "cd644e03-11c7-5e50-a282-c3777d62557d", "text": "\u623f\u95f4\u5185\u5e26\u6709\u7ea2\u8272\u7684\u706f\u5149\u548c\u6444\u50cf\u5934\uff0c\u76d1\u89c6\u7740\u6bcf\u4e00\u4e2a\u52a8\u4f5c\u3002"} +{"id": "4001613", "video_name": "e1e602a1-1b50-5f1e-a31a-e04f0fee82cb", "text": "\u5934\u53d1\u98d8\u52a8\uff0c\u7741\u773c\u548c\u95ed\u773c\u3002"} +{"id": "4001614", "video_name": "dc13add4-4034-5cac-b2e1-df965ed33f00", "text": "\u4e00\u4e2a\u5b69\u5b50\u5750\u5728\u8f66\u91cc\uff0c\u8f66\u5b50\u5f00\u8d70\u4e86\u3002"} +{"id": "4001615", "video_name": "8fabaa21-9523-5d3a-b57f-f1b6ceca0098", "text": "\u9713\u8679\u81ea\u884c\u8f66\u9a91\u624b\uff0c\u6df7\u5408\u52a8\u753b\uff0c\u865a\u5e7b\u5f15\u64ce5\uff0c\u620f\u5267\u6027\u7167\u660e\uff0c\u8d85\u771f\u5b9e\u3002"} +{"id": "4001616", "video_name": "28ec511d-9e08-5089-a614-cfcb0ca26a46", "text": "\u7ea2\u8272F150\uff0c\u7531\u4e00\u53ea\u91d1\u6bdb\u72ac\u9a7e\u9a76\u3002"} +{"id": "4001617", "video_name": "4f28b277-462b-5817-83a7-cb65c819cfae", "text": "\u6770\u4f5c\uff0c\u6700\u4f73\u8d28\u91cf\uff0c\u4e00\u4e2a\u5728\u533b\u9662\u63a5\u53d7\u6cbb\u7597\u7684\u5b66\u751f\uff0c\u533b\u751f\u548c\u62a4\u58eb\u7167\u987e\u4ed6\uff0c\u6240\u6709\u533b\u7597\u8d39\u7528\u7531"} +{"id": "4001618", "video_name": "cb849112-0302-5089-b5c5-43358d15c8f6", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65b0\u5a18\u5c06\u73ab\u7470\u9012\u7ed9\u4f60\u3002"} +{"id": "4001619", "video_name": "9d49ecf2-a3a9-55cd-8f83-5d2c64ce3145", "text": "\u5851\u6599\u5de5\u4e1a\u6b63\u5728\u4ee5\u60ca\u4eba\u7684\u6570\u91cf\u521b\u9020\u65b0\u6750\u6599\u3002"} +{"id": "4001620", "video_name": "e2c4d4ad-5c8e-5a1f-a90e-7172ea248ec0", "text": "\u4e4c\u514b\u5170\u6218\u58eb\u98de\u884c\u5e76\u4fdd\u62a4\u4e4c\u514b\u5170\u514d\u53d7\u4fc4\u7f57\u65af\u706b\u7bad\u4fb5\u5bb3\uff0c\u9ad8\u8d28\u91cf\u3001\u9ad8\u901f\u3002"} +{"id": "4001621", "video_name": "cca1040e-8564-5979-9dd6-c1350554ec22", "text": "\u7c89\u6a59\u7d2b\u8272\u7684\u7f8e\u611f\u591c\u665a\u6d45\u666f\u6548\u679c"} +{"id": "4001622", "video_name": "54137e98-7c9d-5b16-b725-5d23ff1bb798", "text": "\u6811\u4e0a\u53ea\u6709\u51e0\u7247\u53f6\u5b50\uff0c\u88ab\u98ce\u5439\u52a8\u7684\u5e7f\u9614\u68a6\u5e7b\u666f\u8c61\uff0c\u4e00\u9053\u7626\u5c0f\u7684\u9ed1\u5f71\u7f13\u7f13\u8d70\u5411\u6811\u3002"} +{"id": "4001623", "video_name": "5d9e4d17-a4b0-57eb-9cbf-463e17e65bc7", "text": "\u6697\u9ed1\u9a91\u58eb\u5728\u9152\u5427\u73a9\u98de\u9556\u5361\u901a\u7ec6\u80de\u7740\u8272\u3002"} +{"id": "4001624", "video_name": "bbd49d9d-b943-50f2-83f3-94948e7aac92", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u8dd1\u8f66\u7ea2\u8272\u7684\u649e\u5230\u4e86\u623f\u5b50\u7684\u5899\u4e0a\u3002"} +{"id": "4001625", "video_name": "ec60a21b-8c9a-56a4-9e0e-8f19067b136c", "text": "\u5728\u758f\u6563\u8fc7\u7a0b\u4e2d\uff0c\u4eba\u4eec\u53ef\u80fd\u4f1a\u4e0e\u5bb6\u4eba\u548c\u670b\u53cb\u5206\u79bb\uff0c\u5bfc\u81f4\u60c5\u611f\u4e0a\u7684\u56f0\u6270\u3002\u7136\u800c\uff0c\u5728\u6df7\u4e71\u4e2d\uff0c\u4e5f\u53ef\u80fd\u4f1a\u6709"} +{"id": "4001626", "video_name": "0029cd57-a1b6-57ab-bfd3-d0a7685ac2b6", "text": "\u4e00\u5e45\u7d20\u63cf\uff0c\u5c55\u793a\u4e86\u4e00\u53ea\u9e2d\u5b50\u5728\u6e38\u6cf3\u6c60\u4e2d\u6e38\u6cf3\uff0c\u88ab\u8349\u548c\u82b1\u73af\u7ed5\uff0c\u6e38\u6cf3\u6c60\u4e2d\u8fd8\u6709\u5176\u4ed6\u751f\u7269\u3002"} +{"id": "4001627", "video_name": "2ae2424c-f1ab-55dd-8210-7fc7e90062e6", "text": "\u5728\u4e91\u7aef\u6253\u68d2\u7403\u7684\u4eba\u4eec"} +{"id": "4001628", "video_name": "c4adfc6d-7055-5fc4-9941-9d25e0fd45c5", "text": "\u521b\u5efa\u4e00\u4e2a\u8db3\u7403\u573a\u7684\u56fe\u50cf\uff0c\u5e76\u5728\u573a\u5730\u4e0a\u8ba9\u6885\u897f\u6253\u677f\u7403\u3002"} +{"id": "4001629", "video_name": "c11a2e26-1086-55b1-9663-f95c3a3274ff", "text": "\u4e00\u4e2a\u6c99\u6ee9\u6392\u7403\u8fd0\u52a8\u5458\u5728\u6c99\u5b50\u91cc\u6251\u5411\u6392\u7403"} +{"id": "4001630", "video_name": "76744241-0654-527a-87c1-ee41205b3f74", "text": "\u5728\u5fb7\u56fd\u8868\u73b0\u4e3b\u4e49\u98ce\u683c\u4e0b\u96d5\u523b\u773c\u775b\u3002"} +{"id": "4001631", "video_name": "7d17f286-898b-5307-8200-e92297cef7f8", "text": "\u6811\u6728\u6447\u52a8\uff0c\u82b1\u74e3\u6f02\u6d6e\uff0c\u4e91\u5f69\u98d8\u52a8\uff0c\u4e00\u4f4d\u673a\u5668\u50e7\u4fa3\u8d70\u5728\u6cb3\u8fb9\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4"} +{"id": "4001632", "video_name": "9cf4e5fe-e185-50ab-ae7c-698aab676157", "text": "\u5546\u4eba\u5728\u706b\u7bad\u57fa\u5730\u4e0a\u8fbe\u6210\u4ea4\u6613\u3002"} +{"id": "4001633", "video_name": "0f962b87-d75a-5c7e-a3ae-c0029656ba43", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8bb0\u5f55\u4e00\u4f4d\u53ef\u7231\u7684\u5370\u5ea6\u59d1\u5a18\u5728\u8def\u4e0a\u6f2b\u6b65\uff0c\u8eab\u65c1\u98ce\u5439\u62c2\u52a8\uff0c\u5fae\u5fae\u626b\u7740\u5730\u9762\uff0c\u8eab\u7a7f"} +{"id": "4001634", "video_name": "2857a653-d823-5b17-8531-e3ff21e3c010", "text": "\u5168\u606f\u663e\u793a\u5c4f\uff0c\u521b\u9020\u4e86\u89c6\u89c9\u4e0a\u7684\u611f\u5b98\u8fc7\u8f7d\uff0c\u653e\u5927\u3002"} +{"id": "4001635", "video_name": "8dc8d11d-fc2b-5a00-8116-e7ecb560e2eb", "text": "\u7535\u5f71\u573a\u9762\u4e0a\u7684\u5927\u578b\u89c2\u4f17\u7fa4\u3002"} +{"id": "4001636", "video_name": "55203d3c-e35f-5169-a277-37c57f0b5b30", "text": "\u5723\u8bde\u8001\u4eba\u8fdb\u5165\u5236\u4f5c\u516c\u53f8\u7684\u7535\u5f71\u955c\u5934\uff0c\u8138\u4e0a\u5e26\u7740\u54a7\u5634\u7b11\uff0c\u8eab\u6750\u5065\u7f8e\uff0c\u6b65\u5c65\u81ea\u4fe1\uff0c\u6240\u6709\u5458\u5de5"} +{"id": "4001637", "video_name": "6af03bc6-0131-5e17-b6e4-4eb912c3e2e2", "text": "\u4e24\u4e2a\u89d2\u8272\u5728\u8fdc\u5904\u89c2\u671b\u7684\u300aMinecraft\u300b\u5c71\u8109\u3002"} +{"id": "4001638", "video_name": "34d454a8-4448-5cab-b804-ed6973454789", "text": "\u4e00\u79cd\u9ad8\u5ea6\u667a\u80fd\u7684\u8fdb\u5316\u4e86\u7684\u7ae0\u9c7c\u4eba\u79cd\u65cf\u3002"} +{"id": "4001639", "video_name": "5eae0918-248c-5410-8d32-aca93e695cf0", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u6d77\u6ee9\u4e0a\uff0c\u5979\u7684\u5934\u53d1\u88ab\u98ce\u5439\u5f97\u98d8\u52a8\u7740\u3002\u5979\u5728\u54ed\u6ce3\u3002"} +{"id": "4001640", "video_name": "98dfc3ab-0915-5421-a605-fe81227d692f", "text": "\u4e00\u540d\u5973\u5b50\u6b63\u5728\u8def\u4e2d\u592e\u7b49\u5f85\u3002"} +{"id": "4001641", "video_name": "996e7ef1-8282-54f2-bdb6-851a706ff4b6", "text": "\u521b\u9020\u4e00\u4e2a\u9ed1\u767d\u7684\u89c6\u89c9\u6548\u679c\uff0c\u901a\u8fc7\u771f\u5b9e\u7684\u900f\u89c6\u6cd5\uff0c\u5728\u4e00\u4e2a\u8302\u5bc6\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u4eba\u5411\u7740\u660e\u4eae\u7684\u5149\u8d70\u53bb\uff0c\u53ea"} +{"id": "4001642", "video_name": "b8878931-a362-5ac8-b96a-c03d4831657f", "text": "\u6c99\u53d1\u4e0a\u53ef\u7231\u7684\u5c0f\u72d7 \u4fe1\u606f\uff1aGris\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001643", "video_name": "f380fff7-e445-5d22-97e7-0959cafbcea6", "text": "\u5728\u4e00\u4e2a\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u4e2d\uff0c\u4e00\u4f4d\u62e5\u6709\u51fa\u8272\u5916\u8c8c\u548c\u667a\u6167\u7684\u7f8e\u4e3d\u5973\u4eba\uff0c\u540d\u53eb\u4f0a\u8389\u838e\uff0c\u53d1\u73b0\u81ea\u5df1"} +{"id": "4001644", "video_name": "ad445933-4ce2-5785-a4de-097d5f70df20", "text": "\u9762\u5bf9\u9006\u5883\uff0c\u963f\u7c73\u5c14\u6210\u4e3a\u5e0c\u671b\u7684\u706f\u5854\uff0c\u4ee5\u6b63\u76f4\u548c\u51b3\u5fc3\u9886\u5bfc\u4ed6\u7684\u6218\u53cb\u3002\u5728\u6218\u4e89\u7684\u8003\u9a8c\u4e2d\uff0c\u4ed6"} +{"id": "4001645", "video_name": "bd379079-8da2-5a08-bc7a-7981d74503bd", "text": "\u9a7e\u9a76\u8231\u7684\u8231\u95e8\u5728\u80f8\u53e3\u7f13\u6162\u5730\u6253\u5f00\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001646", "video_name": "a720a3b9-52b6-50d0-9940-f9c6a91c7e47", "text": "\u592a\u9633\u5411\u6d77\u8fb9\u843d\u5c71\u7684\u5b9e\u666f\u3002"} +{"id": "4001647", "video_name": "92f1c21d-5f84-5566-86a2-0b03243160c9", "text": "\u6c34\u624b\u5728\u665a\u4e0a\u8d70\u8fdb\u7801\u5934\u4e0a\u7684\u4e00\u5bb6\u53ef\u6015\u7684\u9152\u5427\u3002"} +{"id": "4001648", "video_name": "46a1d37a-db7b-5a33-8128-a9d99374cff1", "text": "\u521b\u4f5c\u4e00\u4e2a\u6ca1\u6709\u8033\u6735\u7684\u54c6\u5566A\u68a6\u52a8\u753b\uff0c\u5411\u5927\u5bb6\u6253\u62db\u547c\u3002"} +{"id": "4001649", "video_name": "9b9c7479-acf2-5a20-a0d9-faf19c1bc07a", "text": "\u4e24\u4e2a\u5973\u4eba\u6234\u7740\u6bdb\u8338\u8338\u7684\u51ac\u5b63\u8033\u5957\u3002"} +{"id": "4001650", "video_name": "3f560e51-2e07-58fd-be44-a8d673e95d80", "text": "\u4e4c\u9f9f\u548c\u5154\u5b50\u6bd4\u8d5b100\u7c73\u3002"} +{"id": "4001651", "video_name": "ab04027c-3646-534b-9d3d-eb26cc3e3cfc", "text": "PJ\u8499\u9762\u4fa0\u961f\u7684\u58c1\u864e\u5728\u6d77\u6ee9\u4e0a\u8df3\u8dc3\u3002"} +{"id": "4001652", "video_name": "7dd3ea9e-8d69-53e7-b2c9-538603ae371f", "text": "\u5728\u8f66\u4e0a\u884c\u9a76\u7684\u7537\u5973\u5f62\u8c61\u4e2d\u770b\u5230\u7684\u591c\u666f\u3002"} +{"id": "4001653", "video_name": "548bc3e3-2de3-52b8-af90-bfc7dd1082a3", "text": "\u4e00\u53ea\u72ee\u5b50\u653b\u51fb\u4e00\u5934\u767d\u8272\u7684\u516c\u725b\u3002"} +{"id": "4001654", "video_name": "d8c466a3-e3e8-559c-91d3-ae5caad76bcb", "text": "\u897f\u73ed\u7259\u8db3\u7403\u961f\u3002\u4fe1\u606f\uff1a\u897f\u73ed\u7259\u3002"} +{"id": "4001655", "video_name": "d9292409-161b-5625-8235-3cd5192031f8", "text": "\u73b0\u5b9e\u4e3b\u4e49\u5c0f\u5973\u5b69\u72ec\u81ea\u5750\u5728\u5012\u584c\u7684\u5efa\u7b51\u7269\u91cc\u3002"} +{"id": "4001656", "video_name": "028f1ec1-b821-56a3-bf6d-f43bf0fd06ed", "text": "\u4e00\u4f4d\u7a7f\u7740\u5a03\u5a03\u670d\u7684\u5e74\u8f7b\u5973\u5b50\u8df3\u821e\uff0c\u50cf\u82ad\u6bd4\u4e00\u6837\u771f\u5b9e\uff0c\u8d85\u9ad8\u6e05\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c8k\uff0c\u4ec0\u4e48\u662f"} +{"id": "4001657", "video_name": "26f71651-1bde-5c6c-870f-69f8a10d4eea", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u5f7c\u5f97\u5728\u8d70\u8fc7\u6751\u5b50\u7684\u65f6\u5019\uff0c\u6ce8\u610f\u5230\u8def\u8fb9\u6709\u4e00\u53ea\u53d7\u4f24\u7684\u9e1f\u3002\u5b83\u7684\u7fc5"} +{"id": "4001658", "video_name": "d072377a-f688-5635-9814-bef555eb6da3", "text": "\u7ed9\u5973\u6027\u7ade\u9009\u5236\u4f5c\u52a8\u753b\u7247\u3002"} +{"id": "4001659", "video_name": "899d897c-9248-5302-ad4d-42a4e43fceb4", "text": "\u4f7f\u7528\u4f4d\u7f6e\u5386\u53f2\u6570\u636e\uff0c\u7ed8\u5236\u4e00\u5f20\u6f02\u4eae\u7684\u56fe\u50cf\uff0c\u7528\u4e8e\u6784\u5efa\u7f8e\u4e3d\u7684\u8d85\u672c\u5730\u5ba2\u6237\u3002"} +{"id": "4001660", "video_name": "d337e114-8345-54d3-806b-a947f4c224ef", "text": "\u4e66\u7c4d\u4ee5\u9ad8\u901f\u6d88\u8017\u6559\u7687\u7684\u7075\u9b42\uff0c\u800c\u6559\u7687\u6b63\u5728\u9605\u8bfb\u8fd9\u672c\u4e66\u3002"} +{"id": "4001661", "video_name": "89c39a5a-2897-57d8-9eaf-d889ce8fb952", "text": "\u65e9\u671f\u6559\u6703\u5c0d\u516c\u958b\u79b1\u544a\u548c\u7981\u98df\u7684\u627f\u8afe\u9032\u884c\u4e86\u53ef\u8996\u5316\uff0c\u4e26\u56e0\u6b64\u5f62\u6210\u4e86\u65b0\u7684\u6559\u6703\u5718"} +{"id": "4001662", "video_name": "d74050a2-604a-535e-8dd7-af7b1187077e", "text": "\u6162\u901f\u884c\u9a76\uff0c\u5e27\u738724\uff0c\u52a8\u4f5c3\uff0c\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u672a\u6765\u6c7d\u8f66\u3002"} +{"id": "4001663", "video_name": "3f7a1033-abc8-55b6-b284-a4d070d024aa", "text": "\u6050\u60e7\u5e2e\u52a9\u6211\u4eec\u5bdf\u89c9\u5e76\u4e3a\u5371\u9669\u505a\u597d\u51c6\u5907\uff0c\u800c\u559c\u60a6\u5219\u5956\u52b1\u6211\u4eec\u5e76\u6fc0\u52b1\u67d0\u4e9b\u884c\u4e3a\u3002"} +{"id": "4001664", "video_name": "97dba722-7dcf-5b9a-8316-f08b28d01475", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u6df1\u5165\u795e\u5947\u7684\u68ee\u6797\u91cc\u3002\n\nSource sentence: The cat sat on the windowsill, watching the birds outside. \n\n\u732b\u5750\u5728\u7a97\u53f0\u4e0a\uff0c\u770b"} +{"id": "4001665", "video_name": "11b16a75-d023-58b1-94d7-de2415cb9ca5", "text": "\u6837\u5f0f\uff1a\u5728\u71c3\u70e7\u7684\u829d\u52a0\u54e5\u6bd4\u8d5b\u3002\u4eba\u4eec\u5728\u5954\u8dd1\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "4001666", "video_name": "274c68b8-0c3d-51d3-82bf-afd0b56304fa", "text": "\u4e00\u4e2a\u642c\u7816\u7684\u7537\u4eba"} +{"id": "4001667", "video_name": "ebc93039-5679-5c86-aac2-ebb704839830", "text": "\u5728\u4e2d\u95f4\u753b\u4e00\u7247\u6c99\u6f20\uff0c\u6709\u5f88\u591a\u65e0\u4eba\u533a\u7684\u690d\u7269\u3002"} +{"id": "4001668", "video_name": "3681056b-2eb9-58f4-aaa1-6553b2918286", "text": "\u4e09\u5341\u79d2\u7684\u89c6\u9891\uff0c\u5954\u9a70\u6b63\u5728\u7ef4\u4fee\u4e2d\u3002"} +{"id": "4001669", "video_name": "1a361de3-b2cf-56eb-bd4f-061f5d821625", "text": "\u84dd\u9ec4\u6761\u7eb9\u7403\u886310\u53f7\u8db3\u7403\u8fd0\u52a8\u5458\u8e22\u7403\uff0c\u590d\u53e4\u98ce\u683c"} +{"id": "4001670", "video_name": "9e98e6ca-4608-54bf-8ca9-ac245a9d5631", "text": "\u4e0b\u96e8\u3001\u8fd1\u666f\u3001\u96e8\u82b1\u3001\u591c\u665a\u3001\u653e\u677e"} +{"id": "4001671", "video_name": "b7074767-3d1f-52d5-9d8a-c7ef2ae213fe", "text": "\u5723\u7ecf\u51c6\u786e\u63cf\u7ed8\u4e86\u5929\u4f7f\u76d8\u65cb\u3001\u53d1\u5149\u3001\u592a\u9633\u5149\u675f\u3001\u4e91\u5f69\u3001\u7fc5\u8180\u3001\u98de\u884c\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "4001672", "video_name": "599b2b9d-505c-5b2a-9ffc-15c46c7d91c2", "text": "\u57ce\u5e02\u4e2d\u7684\u7537\u4eba\u5728\u8bf4\u8bdd\uff0c\u4ed6\u7531\u7f8a\u6bdb\u548c\u7eb1\u7ebf\u5236\u6210\u3002"} +{"id": "4001673", "video_name": "855c53ae-2169-5ac1-9271-1a3d12dfa46a", "text": "\u5c0f\u9ca8\u9c7c\u8d5b\u7433\u5a1c\u89e3\u91ca\u8bf4\u5979\u88ab\u5f88\u591a\u4eba\u8bef\u89e3\uff0c\u6e34\u671b\u670b\u53cb\u3002\u9cb8\u9c7c\u5a01\u5229\u548c\u6d77\u8c5a"} +{"id": "4001674", "video_name": "3f996bb7-0f51-5fb8-b462-890c2cba4da1", "text": "\u624b\u6301\u73bb\u7483\u7f50\u7684\u8001\u4eba\uff0c\u7f50\u5b50\u91cc\u88c5\u7740\u4e00\u4e2a\u5c0f\u4e16\u754c\u3002\u8fd9\u662f\u4e00\u90e8\u9ed1\u767d35\u6beb\u7c73\u7535\u5f71\u3002"} +{"id": "4001675", "video_name": "b728caaa-9cee-57f7-8305-4cb617a62590", "text": "\u94b1\u3001\u9ec4\u91d1\u548c\u6c34\u73af\u7ed5\u7740\u4e00\u4e2a\u5973\u5b69\u3002"} +{"id": "4001676", "video_name": "4aedfa56-7d69-5bac-8c6a-f5f681d8d038", "text": "\u6709\u4e94\u4e2a\u4eba\u5750\u5728\u7535\u8111\u524d\u73a9\u6e38\u620f\u3002"} +{"id": "4001677", "video_name": "f637aa8d-65ef-56f6-bfe0-745786ee3545", "text": "\u5c06\u4e00\u4e2a\u7e41\u5fd9\u7684\u57ce\u5e02\u8857\u9053\u7684\u52a8\u753b\u573a\u666f\uff0c\u4ece\u50cf\u300a1984\u300b\u4e00\u6837\u7684\u8b66\u5bdf\u56fd\u5bb6\u3001\u542f\u793a\u5f55\u548c\u53cd\u4e4c\u6258\u90a6\u672a\u6765\u4e66"} +{"id": "4001678", "video_name": "5e4ce733-e9b0-5f2b-8c0d-b7ccaf53627f", "text": "\u7f13\u6162\u800c\u575a\u5b9a\u5730\u884c\u8fdb\u7684\u4e4c\u9f9f\u3002"} +{"id": "4001679", "video_name": "5ca95c6d-846d-524a-91f4-6a97409061db", "text": "\u4e00\u4e2a\u60b2\u4f24\u7684\u846c\u793c\uff0c\u5916\u9762\u6b63\u5728\u4e0b\u96e8\u3002"} +{"id": "4001680", "video_name": "d2d26b30-1fa0-5ad9-a24c-f20339d1dcb4", "text": "\u4e00\u5757\u88c5\u9970\u7528\u7684\u5ca9\u77f3\u4e0a\u523b\u6709\u5916\u661f\u98de\u8239\u7684\u65f6\u95f4\u753b\u9762\u5ca9\u77f3\u96d5\u523b\u3002"} +{"id": "4001681", "video_name": "0f11ceff-4058-5422-8f5b-40c8e71c8581", "text": "\u5728\u4e00\u8258\u8239\u4e0a\uff0c\u4e00\u4e2a\u79d8\u5bc6\u6cc4\u9732\u4fe1\u606f\u7ed9\u8239\u957f\u4eec\u7684\u4eba\u88ab\u770b\u5230\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u89d2\u843d\u91cc\u5077\u7aa5\u3002"} +{"id": "4001682", "video_name": "0bb5c382-0aee-5523-8cf2-4bac9376dfe2", "text": "\u91d1\u53d1\u5973\u5b50\u5728\u98ce\u4e2d\u7684\u6570\u7801\u7ed8\u753b"} +{"id": "4001683", "video_name": "b81d84a6-e3a6-5faf-8892-653e32c31c84", "text": "\u4e00\u500b\u5973\u5b69\u7ad9\u5728\u6a39\u4e0a\u3002"} +{"id": "4001684", "video_name": "488d9522-0542-5b3a-88b8-211243587cae", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u770b\u4e66\u7684\u4eba\u7684\u4fa7\u9762\u52a8\u6f2b\u753b\u3002"} +{"id": "4001685", "video_name": "0f1f29f8-5dff-5246-99c6-595f91b12199", "text": "\u8fbe\u6d1b\u7ef4\u592b\u4eba\u8bf4\u5979\u4f1a\u4eb2\u81ea\u4e70\u82b1\u3002"} +{"id": "4001686", "video_name": "b8b106a1-b5f0-58af-84d7-0a5bba217172", "text": "\u6765\u81ea\u6d77\u6d0b\u89c6\u89d2\u7684\u4f5b\u7f57\u91cc\u8fbe\u5dde\u52b3\u5fb7\u4ee3\u5c14\u5821\u7684\u822a\u62cd\u7167\u7247\u3002"} +{"id": "4001687", "video_name": "764804be-b383-5e10-a138-867a5127d54d", "text": "\u592a\u7a7a\u8239\u5728\u6b22\u547c\u7684\u4eba\u7fa4\u4e0b\u5347\u7a7a\u3002"} +{"id": "4001688", "video_name": "0e6a391a-84d3-5b0a-bdfc-6039da7b0d44", "text": "\u8001\u5f0f\u6f2b\u753b\u98ce\u683c\uff0c\u8bb8\u591a\u670b\u514b\u4eba\u5728\u9152\u5427\u91cc\u8df3\u821e\uff0c\u821e\u53f0\u900f\u89c6\uff0c\u6f14\u5531\u4f1a\u7ea2\u706f\uff0c\u5e73\u6ed1\u7684"} +{"id": "4001689", "video_name": "ce041d42-70cb-539c-bcca-975899d5a60d", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u732b\u90e8\u843d\u5728\u4e00\u53ea\u732bDJ\u7684\u5e26\u9886\u4e0b\u8df3\u7740\u732b\u6d3e\u5bf9\u7684\u821e\u3002"} +{"id": "4001690", "video_name": "10409f1d-099a-5989-8b9e-3cdb069add0b", "text": "\u4e00\u4e2a\u663e\u793a\u7231\u7684\u8367\u5149\u8272\u5f69\u3002\n\nSource sentence: The temperature outside is very cold. \n\n\u5916\u9762\u7684\u6e29\u5ea6\u975e\u5e38\u5bd2\u51b7\u3002"} +{"id": "4001691", "video_name": "157806df-a6ee-5c37-8647-a62be0ef4376", "text": "\u4e00\u4e2a\u5728\u6545\u4e8b\u5929\u7a7a\u4e2d\u7684\u4e0d\u660e\u98de\u884c\u7269"} +{"id": "4001692", "video_name": "35504b5e-e788-5642-8966-d63cfae95b2f", "text": "\u4e2d\u56fd1888\u5e74\u7684\u623f\u5c4b\uff0c\u7b49\u8ddd\u6295\u5f71\u63d2\u753b"} +{"id": "4001693", "video_name": "2c04d640-c481-5b12-9c00-8700cc770b4b", "text": "\u8857\u4e0a\u585e\u6ee1\u4e86\u8f66\uff0c\u5835\u8f66\u4e86\u3002"} +{"id": "4001694", "video_name": "d4ad19e3-91d0-5cbc-bdef-d59e14781020", "text": "\u6d3b\u585e\u4ee5Zdzis\u0142aw Beksi\u0144ski\u7684\u98ce\u683c\u542f\u52a8\u3002"} +{"id": "4001695", "video_name": "7fbcd8cc-964c-5da0-af59-91c3a7c3f41b", "text": "\u4e00\u53ea\u9e1f\u5728\u9ad8\u7a7a\u4e2d\u98de\u7fd4\uff0c\u5361\u901a\u3002"} +{"id": "4001696", "video_name": "6d2b0903-4552-5f6c-84fb-c5f5e54e89c3", "text": "\u9ed1\u6697\u7684\u5730\u533a\u5149\u7ebf\u5f88\u6697\uff0c\u4e24\u4e2a\u6076\u9b54\u5728\u6218\u6597\u76f4\u5230\u4e00\u65b9\u6b7b\u4ea1\uff0c\u7136\u540e\u83b7\u80dc\u8005\u60b2\u4f24\u5730\u4ece\u5185"} +{"id": "4001697", "video_name": "09a3b020-ff03-5615-b57c-28d13b794183", "text": "\u6df1\u6d77\u55b7\u6c14\u53e3\u4e0a\u7684\u91ce\u751f\u6447\u6446\u7740\u7684\u6d77\u767e\u5408\u548c\u7761\u7720\u7ae0\u9c7c\u3002"} +{"id": "4001698", "video_name": "65f5fc39-2da7-5360-bf43-a77e6ce6def7", "text": "\u4e00\u4f4d\u5934\u53d1\u84dd\u8272\u3001\u8138\u4e0a\u6709\u7075\u6027\u6807\u8bb0\u7684\u5973\u6027\u7075\u6027\u795e\uff0c\u572810\u79d2\u7684\u89c6\u9891\u4e2d\u51fa\u73b0\u3002"} +{"id": "4001699", "video_name": "875a5c58-5fa2-54cb-bab2-24d844abf078", "text": "\u63cf\u7ed8\u4e00\u4e2a\u5750\u843d\u5728\u90c1\u90c1\u8471\u8471\u7684\u5c71\u8c37\u4e2d\u7684\u5c0f\u6751\u5e84\uff0c\u5927\u6995\u6811\u5728\u6545\u4e8b\u4e2d\u5c06\u53d1\u6325\u91cd\u8981\u4f5c"} +{"id": "4001700", "video_name": "a4d1e37a-92b6-5fbd-acfa-9cf22c222b8f", "text": "\u753b\u4e00\u4e2a\u6709\u4e00\u4e2a\u5706\u6d1e\u7684\u6751\u5e84\uff0c\u5149\u7ebf\u4ece\u6d1e\u91cc\u5c04\u51fa\u6765\uff0c\u5929\u7a7a\u6674\u6717\u4e14\u661f\u5149\u95ea\u70c1\uff0c\u5177\u6709\u7535\u5f71\u6548\u679c\u3002"} +{"id": "4001701", "video_name": "a04a2d8b-d9ad-57bc-ab48-1082fca08d73", "text": "\u722a\u5b50\u5de1\u903b\u961f\u7684\u72d7\u4eec\u5f00\u7740\u5954\u9a70S500\u3002"} +{"id": "4001702", "video_name": "cf86d1bf-c202-5d1f-b29c-619e33a24dee", "text": "\u4e00\u95f4\u88ab\u6d2a\u6c34\u6df9\u6ca1\u7684\u5ba2\u5385\u7684\u7ad6\u5411\u89c6\u9891\u3002"} +{"id": "4001703", "video_name": "27b69248-ab41-520f-8acd-f03eb6229fdf", "text": "\u5bcc\u58eb\u5c71\u4e0e\u84dd\u5929\u548c\u4e00\u4e9b\u4e91\u3002"} +{"id": "4001704", "video_name": "a1822137-0905-5fe0-b7ab-3df3f101d3a5", "text": "\u8df3\u821e\u7684\u7cd6\u679c\u718a\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\uff0c\u8fea\u65af\u79d1\u7403\u65cb\u8f6c\u3002"} +{"id": "4001705", "video_name": "9fca82c7-6cc0-5c16-ad5e-3ec9ca1a1734", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u70ed\u95f9\u7684\u4e50\u9ad8\u5609\u5e74\u534e\uff0c\u5305\u62ec\u6e38\u4e50\u8bbe\u65bd\u3001\u6e38\u620f\u548c\u70ed\u95f9\u7684\u8ff7\u4f60\u4eba\u7269\u53c2\u89c2\u8005\u3002"} +{"id": "4001706", "video_name": "6b9eaea3-fe14-5e19-a956-220c300275cc", "text": "\u4e00\u4f4d\u5e26\u7740\u4e00\u4e9b\u82b1\u7684\u8001\u592a\u592a"} +{"id": "4001707", "video_name": "826c9bdb-f054-59b8-a349-5170b5f781f0", "text": "\u67e5\u514b\u00b7\u8bfa\u91cc\u65af\u548c\u5f7c\u5f97\u00b7\u5a01\u52d2\u5c06\u8054\u624b\u6210\u4e3a\u79d1\u5e7b\u592a\u7a7a\u6e38\u4fa0\u3002"} +{"id": "4001708", "video_name": "986fef58-22fe-52f9-ae26-ff07797635d3", "text": "\u627e\u5de5\u4f5c\u7684\u632b\u8d25\u611f\u3002"} +{"id": "4001709", "video_name": "840805cc-88da-5cd6-9f3c-410d1fe4bcc2", "text": "\u9633\u5149\u4e0b\u7684\u82b1\u56ed\u975e\u5e38\u7f8e\u4e3d\uff0c\u7ec6\u8282\u4e30\u5bcc\u3002"} +{"id": "4001710", "video_name": "7ef0e132-8b0d-58ee-abd0-b0fe9d7aaefa", "text": "\u5723\u8bde\u8282\u70db\u5149\u97f3\u4e50\u4f1a\uff0c\u6237\u5916\u6f14\u5531\u4f1a\uff0c\u6709\u8bb8\u591a\u5ba0\u7269\u53c2\u52a0\u3002"} +{"id": "4001711", "video_name": "9a585a77-4601-501c-a026-f430d00ad5d0", "text": "\u624b\u62ff\u76d2\u5b50\u7684\u5409\u5c14\u5409\u65af\u65cf\u7537\u5b50\u7a7f\u7740\u6c11\u65cf\u670d\u88c5\u7ad9\u5728\u6be1\u623f\u65c1\u3002"} +{"id": "4001712", "video_name": "1d0aeb17-bafd-581c-8cb4-d9c9ac7d8f32", "text": "10\u4e2a\u4eba\u5750\u7740\u5403\u996d\u3002"} +{"id": "4001713", "video_name": "647286b2-de4f-52ff-8e10-da8485effe48", "text": "\u8d85\u7ea7\u5730\u9707\uff0c\u8bb8\u591a\u5efa\u7b51\u7269\u5012\u584c\u3002"} +{"id": "4001714", "video_name": "6820a95c-386a-5213-abdd-6a0009bb060c", "text": "\u4e00\u4f4d\u54e5\u7279\u5f0f\u5973\u58eb\u8d70\u8fdb\u4e86\u4e00\u5ea7\u54e5\u7279\u5f0f\u5927\u5385\u3002"} +{"id": "4001715", "video_name": "3f66f4c3-660a-51c4-ac8a-f9c80355e399", "text": "\u4ece\u4e00\u4e2a\u8352\u829c\u7684\u57ce\u5e02\u666f\u89c2\u7684\u5e7f\u89d2\u955c\u5934\u5f00\u59cb\uff0c\u5b83\u6d78\u6ce1\u5728\u5fe7\u90c1\u7684\u8272\u8c03\u4e2d\uff0c\u96e8\u4e0d\u505c\u5730\u503e\u6cfb\u4e0b\u6765\u3002\u9010"} +{"id": "4001716", "video_name": "0a010f28-8309-5a9e-9ad2-83199180b6b1", "text": "\u5236\u4f5c2089\u5e74\u7684\u6c7d\u8f66\u89c6\u9891\u7279\u8f91\u3002"} +{"id": "4001717", "video_name": "12b1996c-7373-58fd-bea7-070786032cd9", "text": "\u5728\u68ee\u6797\u91cc\u7684\u4e00\u4e2a\u6e05\u6668\uff0c\u7ed1\u7740\u7684\u52a8\u7269\u5954\u8dd1\u65f6\u611f\u89c9\u6e7f\u6c14\u5f88\u91cd\u3002"} +{"id": "4001718", "video_name": "4018a160-f903-53fa-a4fa-a4dba89dfe81", "text": "\u6709\u4e00\u4e2a\u7537\u5b69\u6b63\u5728\u548c\u4e00\u8f86\u5b9d\u9a6c\u8f66\u4e00\u8d77\u8d70\u3002"} +{"id": "4001719", "video_name": "9183f018-554e-5c4c-8143-240d03cf1d78", "text": "\u9ad8\u9ad8\u7684\u53cc\u5c42\u829d\u58eb\u6c49\u5821\u5806\u6ee1\u4e86\u914d\u6599\u3002\u6d41\u6ea2\u7684\u86cb\u9ec4\u9171\u6ef4\u4e0b\u6765\uff0c\u65e0\u6cd5\u627f\u8f7d\u6177"} +{"id": "4001720", "video_name": "eb765150-3181-5e4d-b727-5d569f886443", "text": "\u5c45\u6c11\u6076\u7075\u5973\u4e3b\u89d2\u5b89\u8fbe\u00b7\u738b\u7a7f\u7740\u5a5a\u7eb1\u8d70\u51fa\u6d63\u718a\u5e02\u3002"} +{"id": "4001721", "video_name": "26bb8860-7946-5b12-9284-18cc2aeb8dd4", "text": "\u6d77\u6d6a\u4f20\u9012\u4fe1\u606f\uff1a\u666e\u901a\u6280\u672f\u3002"} +{"id": "4001722", "video_name": "67c65686-f8a6-55b3-9742-a427385ab411", "text": "\u4e24\u4e2a\u5973\u4eba\u5728\u52a8\u753b\u89c6\u9891\u4e2d\u5750\u5728\u6c99\u53d1\u4e0a\u804a\u5929\u3002"} +{"id": "4001723", "video_name": "b7d1a32f-817f-57b3-8e31-a34472eb9c16", "text": "Rusty\u53d8\u8eab\u6210\u8d85\u7ea7\u82f1\u96c4\u7684\u77ac\u95f4\uff0c\u9f7f\u8f6e\u8f6c\u52a8\uff0c\u660e\u4eae\u7684\u53cc\u773c\u95ea\u8000\uff0c\u51c6\u5907\u9762\u5bf9\u98ce\u66b4\uff0c\u5e2e"} +{"id": "4001724", "video_name": "34a4b65c-5cd1-53e0-8395-24152079f146", "text": "\u4e00\u4e2a\u795e\u79d8\u800c\u827a\u672f\u7684\u7537\u5b69\uff0c\u62e5\u6709\u7d2b\u8272\u7684\u773c\u775b\u548c\u5934\u53d1\uff0c\u957f\u957f\u7684\u776b\u6bdb\uff0c\u4e58\u5750\u5b87\u5b99\u98de\u8239"} +{"id": "4001725", "video_name": "21678754-7e99-5076-9785-978ee73ed5a9", "text": "\u9c7c\u6307\u5bfc\u5e74\u8f7b\u9c7c\uff0c\u5e76\u5206\u4eab\u4ed6\u7684\u667a\u6167\u3002\u4ee5\u5361\u901a\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "4001726", "video_name": "1e6dc3bd-af5e-5069-a54e-fdd14dfd4244", "text": "\u8ba9\u4e00\u53ea\u72d7\u7a7f\u4e0a\u592a\u7a7a\u670d\uff0c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "4001727", "video_name": "7f4a1765-2dac-5aa6-96cd-cc084b421cb0", "text": "\u76f8\u673a\u6355\u6349\u4e86\u4ed6\u4eec\u8138\u4e0a\u9519\u7efc\u590d\u6742\u7684\u7ec6\u8282\uff0c\u5c55\u73b0\u4e86\u4ed6\u4eec\u8138\u4e0a\u523b\u753b\u7684\u75db\u82e6\u3002\u4ed6\u4eec\u5bf9\u89c6\u7740\uff0c"} +{"id": "4001728", "video_name": "c4d4d7f4-4af2-5f13-ba9e-0d61c4bd452a", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u3002\u65f6\u95f4\u4f3c\u4e4e\u505c\u6ede\u4e86\uff0c\u4f46\u591c\u665a\u6700\u7ec8\u7ed3\u675f\u4e86\u3002\u5f53\u7b2c\u4e00\u7f15\u6668\u5149\u62e5\u543b\u5929\u7a7a\u65f6\uff0c"} +{"id": "4001729", "video_name": "82879957-0473-5c17-aee7-76abf3b32f88", "text": "\u5723\u7ecf\u7ecf\u6587\uff1a\u5341\u4e00\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001730", "video_name": "94dc8761-92af-52a3-b65d-13ee0eaab3a3", "text": "\u4ece\u524d\uff0c\u5728\u4e1b\u6797\u7684\u5f00\u573a\u955c\u5934\u4e2d\u3002"} +{"id": "4001731", "video_name": "f32688f4-bd30-5594-a38a-7d030bc96441", "text": "\u6bd4\u6469\u5929\u5927\u697c\u8fd8\u9ad8\u7684\u5de8\u5927\u5154\u5b50"} +{"id": "4001732", "video_name": "85c8b179-b01d-5a74-b920-11adcf4b30fe", "text": "\u4e00\u4e2a\u8352\u5e9f\u7684\u5ba4\u5916\u5496\u5561\u9986\u5728\u591c\u665a\u3002"} +{"id": "4001733", "video_name": "8b94178e-3417-5f1d-bb64-8b494d47c1c3", "text": "\u4ed6\u5bf9\u9e1f\u7c7b\u975e\u5e38\u53cb\u5584\uff0c\u4ed6\u6700\u60f3\u7684\u5c31\u662f\u8ba9\u5b83\u4eec\u5728\u4ed6\u8eab\u8fb9\u3002"} +{"id": "4001734", "video_name": "a0feb479-ec6e-58d2-bb52-159900902f19", "text": "\u7535\u5f71\u822c\u7684\uff0c\u7ea2\u8272\u7684\u8611\u83c7\u5728\u90c1\u90c1\u8471\u8471\u7684\u5ce1\u8c37\u4e2d\uff0c\u6591\u9a73\u7684\u5149\u7ebf\uff0c\u96fe\u6c14\u5f25"} +{"id": "4001735", "video_name": "9e6c405d-2b73-593b-951b-2d6267d52e62", "text": "\u6e05\u6d17\u65e5 - \u6070\u8d6b\u5357\u7684\u83ab\u5367\u513f\u5bab\u5ef7"} +{"id": "4001736", "video_name": "34170169-6701-5efc-8b0f-b063b5e6de04", "text": "\u7537\u5b69\u548c\u5973\u5b69\u5750\u5728\u516c\u4ea4\u8f66\u7ad9\u957f\u6905\u4e0a\uff0c\u8eab\u4f53\u8f6c\u5411\u5f7c\u6b64\uff0c\u53c2\u4e0e\u7740\u70ed\u70c8\u7684\u4ea4\u8c08\u3002\u516c\u4ea4\u8f66\u7ecf\u8fc7\uff0c\u4e3a"} +{"id": "4001737", "video_name": "de617805-7e8a-5b14-befa-33fd721c5db6", "text": "\u8001\u6d88\u9632\u5458\u5728\u591c\u665a\u7684\u96ea\u5c71\u4e0a\u5feb\u4e50\u5730\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "4001738", "video_name": "c5d1e9b1-1e3c-5a38-a28f-ca6184000881", "text": "4K\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4f4d\u82d7\u6761\u7684\u4e9a\u6d32\u65f6\u5c1a\u8d85\u6a21\u5728\u5f00\u653e\u5f0f\u8bbe\u8ba1\u5de5\u4f5c\u5ba4\u4e0e\u8bbe\u8ba1\u5e08\u4e00\u8d77\u8bd5\u7a7f\u793c\u670d\uff0c\u753b\u9762\u9ad8\u5ea6\u7ec6"} +{"id": "4001739", "video_name": "8e5fc2d2-1d3c-52ab-8a44-6df78dad137f", "text": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u4f1f\u5927\uff0c\u80cc\u666f\u4e3a\u5370\u5ea6\u5c3c\u897f\u4e9a\u56fd\u65d7\u3002"} +{"id": "4001740", "video_name": "3a1f425f-6fb2-52bf-8fa1-e8ecab8736ac", "text": "\u8ffd\u8e2a\u5411\u5de6\uff0c\u4e00\u7247\u5947\u602a\u3001\u6d53\u5bc6\u3001\u795e\u79d8\u7684\u8ff7\u96fe\uff0c\u4f34\u968f\u7740\u95ea\u70c1\u7684\u5149\u8292\uff0c\u7a7f\u8d8a"} +{"id": "4001741", "video_name": "cc7a123a-65c1-5dc0-8d75-a447ebc86dc7", "text": "\u963f\u5c14\u6cd5\u00b7\u7f57\u5bc6\u6b27\u6c7d\u8f66\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\uff0c4k\u8d28\u91cf\u3002"} +{"id": "4001742", "video_name": "d53c10d6-45c7-5c05-b89d-70cd193933b4", "text": "\u4e00\u4e2a\u5de8\u4eba\u6b63\u5728\u6467\u6bc1\u4e00\u4e2a\u57ce\u5e02\uff0c\u5177\u6709\u672a\u6765\u4e3b\u4e49\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\uff0c4K\u5206\u8fa8\u7387\uff0c10\u79d2\u65f6\u957f\u3002"} +{"id": "4001743", "video_name": "089cf9f9-2085-5951-9cbb-a03d23ad2db0", "text": "\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u4e3a\u4ed6\u7684\u56fd\u5bb6\u800c\u6218\u3002"} +{"id": "4001744", "video_name": "c7da1316-147f-5ba6-9154-e34f0e029579", "text": "\u8be5\u89c6\u9891\u63cf\u8ff0\u7ec6\u80de\u819c\u4e2d\u7684\u8425\u517b\u5206\u5b50\u3002\u86cb\u767d\u901a\u9053\u5141\u8bb8\u7279\u5b9a\u7684\u8425\u517b\u5206\u5b50\u901a\u8fc7\u7ec6\u80de\u819c\uff0c\u5e76\u63a7"} +{"id": "4001745", "video_name": "7c41f9ee-ae26-5733-90bf-44cd036e1a2b", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u7684\u7537\u5b69\u6b63\u5728\u9a7e\u9a76\u4e00\u8f86\u88c5\u6ee1\u6c34\u679c\u7684\u5361\u8f66\u3002"} +{"id": "4001746", "video_name": "c1e46bfa-267b-5f6a-8055-8cac9474766e", "text": "\u4e00\u53ea\u5b8c\u5168\u7531\u82b1\u751f\u9171\u5236\u6210\u7684\u5c0f\u9a6c\u5728\u4e00\u4e2a\u7a7a\u767d\u7684\u80cc\u666f\u524d\u6f02\u6d6e\u3002"} +{"id": "4001747", "video_name": "7084b2be-d53d-58e6-b8fe-93135ace87ab", "text": "\u4e00\u4e2a\u534a\u73b0\u5b9e\u7684\u53e4\u5370\u5ea6\u7edf\u6cbb\u8005\u4e0e\u4ed6\u7684\u7687\u540e\u5bf9\u8bdd\u7684\u4e8c\u7ef4\u56fe\u50cf\u3002"} +{"id": "4001748", "video_name": "3d35b246-3e93-550c-800c-c6a963df0e88", "text": "\u6bcd\u4eb2\u88ab\u770b\u5230\u5728\u626b\u5730\u3001\u64e6\u62ed\u5bb6\u5177\u548c\u6574\u7406\u623f\u95f4\u3002\u8ba9\u6c1b\u56f4\u4fdd\u6301\u5e73\u9759\u4f46\u795e\u79d8\u3002"} +{"id": "4001749", "video_name": "1115a0e9-0e36-592e-bb7a-8fe29a82fdf7", "text": "\u54e5\u65af\u62c9\u5728\u7ebd\u7ea6\u5e02\u8e29\u8e0f\u4eba\u7fa4\u3002"} +{"id": "4001750", "video_name": "6e85aa7e-f7e4-5878-b58b-4dfa408467b2", "text": "\u4e00\u4f4d\u62e5\u6709\u9ec4\u91d1\u6bd4\u4f8b\u5438\u5f15\u4eba\u9762\u5bb9\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u4eab\u6709\u7535\u5f71\u822c\u7684\u5149\u5f71\u3002"} +{"id": "4001751", "video_name": "d7ccb38c-dabe-5cb8-b0b9-a31ec20e5283", "text": "\u5b69\u5b50\u4eec\u8fdb\u5165\u5b66\u6821\uff0c\u6c1b\u56f4\u975e\u5e38\u7f8e\u597d\u660e\u4eae\uff0c\u5b66\u6821\u5168\u662f\u73bb\u7483\u3002"} +{"id": "4001752", "video_name": "2f3b9b3d-3756-5997-853a-5d5e37d90cb2", "text": "\u4ed3\u9f20\u548c\u5154\u5b50\u5728\u68ee\u6797\u4e2d\u5954\u8dd1\u3002"} +{"id": "4001753", "video_name": "e971e5a7-a2f1-51cc-9abd-b7ed1e5258f9", "text": "\u8ffd\u968f\u4e24\u53ea\u732b\u5728\u7eff\u8349\u5730\u4e0a\u5954\u8dd1\uff0c\u671d\u7740\u8c37\u4ed3\u800c\u53bb\u3002"} +{"id": "4001754", "video_name": "fe1f9741-b2fc-5438-9560-be0f0f4ef863", "text": "\u5899\u4e0a\u7684\u6587\u5b57\u4fe1\u606f\uff1a\u6559\u5ba4\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001755", "video_name": "7a04b0a2-3e84-5dc7-b2ad-3760100c8edf", "text": "\u5b9d\u9a6cE36\u6f02\u79fb\u65f6\u649e\u4e0a\u4e86\u4e00\u68f5\u6811\u5e76\u4e14\u649e\u6bc1\u4e86\u3002"} +{"id": "4001756", "video_name": "c3e75d84-b3e3-54ed-a78e-de1c4239f075", "text": "\u592a\u9633\u80fd\u7535\u529b\u706b\u8f66\u5728\u7f8e\u4e3d\u7684\u98ce\u666f\u4e2d\u884c\u9a76\u3002"} +{"id": "4001757", "video_name": "80ea4d55-4176-5eb6-a377-4f65566eab0a", "text": "\u5916\u661f\u4eba\u7ad9\u5728\u5916\u661f\u884c\u661f\u7684\u4e1b\u6797\u4e2d\u3002"} +{"id": "4001758", "video_name": "8d20f220-d711-5cd7-9039-3fabc7b4fb04", "text": "\u4e00\u90e8\u7c7b\u4f3c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u7684\u52a8\u753b\u89c6\u9891\uff0c\u5c55\u73b0\u540a\u6247\u5728\u5faa\u73af\u70ed\u7a7a\u6c14\uff08\u7ea2\u8272\uff09\u548c\u51b7\u7a7a\u6c14\uff08"} +{"id": "4001759", "video_name": "7472be7b-cb7f-5877-8ee8-d6f133f6a52d", "text": "\u4ed6\u5411\u4e16\u754c\u5206\u4eab\u4e86\u4ed6\u7684\u6545\u4e8b\u3001\u68a6\u60f3\u548c\u60c5\u611f\u3002"} +{"id": "4001760", "video_name": "a8649867-57a0-531c-9f8e-e17f6b310946", "text": "\u751f\u6210\u4e00\u5f20\u72ee\u5b50\u548c\u5154\u5b50\u5e76\u80a9\u8d70\u5728\u4e00\u8d77\u7684\u56fe\u7247\uff0c\u5176\u4ed6\u52a8\u7269\u52a0\u5165\u5230\u548c\u8c10\u7684\u8349\u5730\u4e2d\u3002"} +{"id": "4001761", "video_name": "ce14baed-f58a-5d18-a768-45abe7d9c0c0", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u53a8\u623f\u56fe\u50cf\uff0c\u6709\u4e00\u4e2a\u7089\u5b50\uff0c\u4e00\u4e2a\u70e7\u5f00\u6c34\u7684\u9505\uff0c\u8fd8\u6709\u624b\u5f80\u9505\u91cc\u52a0\u5165\u5c0f\u7ea2\u8272\u852c\u83dc\u3002"} +{"id": "4001762", "video_name": "7ed58eeb-fe61-54de-9460-ace63bd34d4e", "text": "\u8718\u86db\u4fa0\u548c\u4ed6\u7684\u72d7\u7ad9\u5728\u5efa\u7b51\u7269\u9876\u90e8\uff0c\u80cc\u5bf9\u7740\u76f8\u673a\uff0c\u6b23\u8d4f\u7f8e\u5999\u7684\u591c\u7a7a\uff0c\u770b\u7740\u57ce\u5e02"} +{"id": "4001763", "video_name": "508431cc-4c4d-5d03-9207-7eb2d80a22f7", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u4eba\u5750\u5728\u516c\u56ed\u7684\u957f\u51f3\u4e0a\uff0c\u6c90\u6d74\u5728\u843d\u65e5\u67d4\u548c\u7684\u91d1\u8272\u5149\u8292\u4e2d\uff0c\u4e13\u6ce8\u4e8e\u4ed6\u7684\u624b\u673a\u3002\u5b81"} +{"id": "4001764", "video_name": "6e0208c7-45ba-596e-aa62-23dbd7024383", "text": "\u4e00\u8f86\u84b8\u6c7d\u670b\u514b\u6d88\u9632\u8f66\uff0c\u4ece\u4e00\u5ea7\u706b\u5c71\u4e2d\u55b7\u53d1\u51fa\u6765\uff0c\u5177\u6709\u8d85\u5199\u5b9e\u3001\u7ec6\u8282\u4e30\u5bcc\u3001\u9ad8\u5206\u8fa8\u7387\u7684\u7279"} +{"id": "4001765", "video_name": "51ab3e3c-3810-59da-9e6b-84416713dd29", "text": "\u53ef\u6015\u7684\u68ee\u6797 BRYCE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001766", "video_name": "820e3f8e-dc46-5697-91e6-66ffcc4da4fd", "text": "\u4e00\u4e2a\u52a8\u6f2b\u7248\u7684\u5723\u8bde\u8001\u4eba\u4ece\u5929\u4e0a\u964d\u4e0b\u6765\u3002"} +{"id": "4001767", "video_name": "7b781f33-311e-53dd-9f6b-ede800fe79a6", "text": "\u8001\u4eba\u5728\u6cb3\u8fb9\u7684\u6811\u4e0b\u628a\u79cd\u5b50\u888b\u5b50\u7ed9\u7537\u5b69\u548c\u5973\u5b69\uff0c\u68a6\u5e7b\u822c\u7684\u7167\u7247\u98ce\u683c\u3002"} +{"id": "4001768", "video_name": "9fc0520a-3242-591f-8816-e9fe21f07aca", "text": "\u5b83\u7684\u65cb\u5f8b\u968f\u7740\u6e05\u6668\u7684\u5fae\u98ce\u4f20\u6765\uff0c\n\u7ed9\u6240\u6709\u770b\u5230\u5b83\u7684\u4eba\u5e26\u6765\u5e78\u798f\u3002"} +{"id": "4001769", "video_name": "ed38317d-d664-5b56-87b1-6889f4f641f2", "text": "\u4e00\u540d\u7a7f\u7740\u767d\u8272\u6bdb\u8863\u7684\u5973\u5b50\u5750\u5728\u9760\u8fd1\u7a97\u6237\u7684\u8f66\u53a2\u91cc\u3002"} +{"id": "4001770", "video_name": "b932e88c-491e-585f-b351-926d70880132", "text": "\u9ed1\u8272\u7535\u89c6\uff0c\u4e00\u5bf9\u592b\u5987\u7a7f\u8fc7\u96e8\u8857\u3002"} +{"id": "4001771", "video_name": "b861c749-02fd-5f88-a951-f60bd5d37b5b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u5b50\u4eb2\u543b\u7740\u4e00\u6735\u7f42\u7c9f\u82b1\u3002"} +{"id": "4001772", "video_name": "d3110925-cfde-53e0-a405-d39d816a37f2", "text": "\u4e09\u53ea\u732b\u6162\u6162\u5730\u5de6\u53f3\u6446\u52a8\u5c3e\u5df4\uff0c\u4e00\u76f4\u51dd\u89c6\u7740\u76f8\u673a\uff0c\u5448\u73b0\u51fa\u590d\u53e4\u52a8\u6f2b\u98ce\u683c\u7684\u52a8\u753b\u3002"} +{"id": "4001773", "video_name": "a0d2903b-b712-5571-9e27-11372a012118", "text": "\u8def\u897f\u6cd5\u5815\u843d\u5929\u4f7f\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u71c3\u70e7\u7684\u7fc5\u8180\u62cd\u6253\u7740\u3002"} +{"id": "4001774", "video_name": "6109d0f2-0b1d-577c-9c93-949407835839", "text": "\u4e00\u4e2a\u7a7f\u7740\u963f\u62c9\u4f2f\u670d\u88c5\u7684\u7537\u4eba\u4ece\u53e4\u57c3\u53ca\u91d1\u5b57\u5854\u8d70\u6765\uff0c\u6444\u50cf\u673a\u524d\u89c6\u89d2\u62cd\u6444\uff0c\u7535\u5f71\u822c\u7684\u771f\u5b9e\u6d41"} +{"id": "4001775", "video_name": "f9b3f4b4-99d4-59f2-9c35-7cec210b8797", "text": "\u4e00\u500b\u4e2d\u5e74\u7684\u5357\u4e9e\u5bb6\u5ead\u5728\u502b\u6566\u62cd\u651d1990\u5e74\u4ee3\u7684\u5bb6\u5ead\u7167\u7247\uff0c\u52d5\u614b2\u3002"} +{"id": "4001776", "video_name": "94c4aa56-05ae-52cc-b289-3aab0976db4c", "text": "\u4e00\u53ea\u68a6\u5e7b\u7cbe\u7075\uff0c\u7fc5\u8180\u95ea\u7740\u4e03\u5f69\u5149\u8292\uff0c\u51fa\u73b0\u5728\u5979\u9762\u524d\uff0c\u5b83\u7684\u5b58\u5728\u5145\u6ee1\u4e86\u8ff7"} +{"id": "4001777", "video_name": "26b3c564-3b58-51df-8fcd-2b2f6f3ecdbb", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u9e70\u5728\u963f\u5c14\u5351\u65af\u5c71\u524d\u7684\u6fc0\u5149\u89c6\u9891\uff0c\u683c\u5f0f\u4e3a9:16\uff0c\u65f6\u957f10\u79d2\u3002"} +{"id": "4001778", "video_name": "9f522165-d025-5eb4-9ceb-befaa4884b92", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u4e00\u8258\u5de8\u5927\u7684\u5916\u661f\u98de\u8239\u6b63\u5728\u63a5\u8fd1\u5730\u7403\u3002"} +{"id": "4001779", "video_name": "d05b4633-164a-53ac-9fec-f8d7ab379770", "text": "\u6c34\u6ef4\u5145\u6ee1\u4e86\u73bb\u7483\u676f\uff0c\u6ea2\u51fa\u6765\uff0c\u56db\u5904\u98de\u6e85\u3002"} +{"id": "4001780", "video_name": "ac94855f-97ce-548d-a067-2771b41dbac3", "text": "\u672b\u65e5\u6d69\u52ab\uff0c\u7f8e\u56fd\u4ed3\u5e93\u706f\u706b\u901a\u660e\uff0c\u552f\u4e00\u7684\u5e78\u5b58\u8005\u662f\u4e00\u4f4d\u8eab\u7a7f\u5236\u670d\u300130\u591a\u5c81\u7684\u4fc4\u7f57\u65af\u91d1\u53d1"} +{"id": "4001781", "video_name": "26f519d6-b6ad-5063-b4d0-9e3e24de1230", "text": "\u8036\u7a23\u5728\u673a\u5668\u4eba\u7f16\u7a0b\u7684\u4e16\u754c\u4e2d\u8d70\u5728\u9634\u5f71\u7684\u5ce1\u8c37\u4e2d\u3002"} +{"id": "4001782", "video_name": "cd5419bf-45c3-5b2d-8b94-6573fbc6fcae", "text": "\u7c73\u8001\u9f20\u51b2\u6d6a\uff0c\u590d\u53e4\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "4001783", "video_name": "d2424616-45f3-50e6-a1e9-91cf7253c9c8", "text": "\u4e94\u5f69\u7f24\u7eb7\u7684\u4e91\u5f69\u3002\u7b49\u5f85\u5f92\u52b3\u3002"} +{"id": "4001784", "video_name": "e1000e12-3858-5115-a4b9-baf9726b47bc", "text": "\u9886\u57df\u4e13\u5bb6\u5df2\u7ecf\u7ad9\u51fa\u6765\u6f84\u6e05\u8fd9\u4e9b\u8bf4\u6cd5\u3002"} +{"id": "4001785", "video_name": "7039d5df-a020-5fa3-a004-e8eec70f59c8", "text": "\u6d77\u8d3c\u738b\u89d2\u8272\u9999\u514b\u65af\u5728\u8239\u4e0a\u559d\u6717\u59c6\u9152\u3002"} +{"id": "4001786", "video_name": "a13e3892-6d6b-5aa2-b3a4-85875e6d16b7", "text": "Cristiano Ronaldo \u7528\u8457\u8461\u8404\u7259\u7684\u7403\u8863\u8209\u8d77\u4e16\u754c\u76c3\u662f\u73fe\u5be6\u7684\u3002\n\nSource sentence: The Great Wall of China is one of the Seven Wonders"} +{"id": "4001787", "video_name": "9fbec98b-befb-54bc-8ab1-30a47de193f3", "text": "\u96fe\u8499\u8499\u7684\u591c\u665a\uff0c\u7ea2\u8272\u7684\u5929\u7a7a\uff0c\u6c7d\u8f66\u884c\u9a76\u3002"} +{"id": "4001788", "video_name": "87217f3b-2e4c-5342-a6bc-a9bf83f2ab95", "text": "\u5973\u5b69\uff0c\u60c5\u7eea\u591a\u53d8\uff0c\u7cbe\u81f4\uff0c\u5fae\u7b11\uff0c\u7f8e\u4e3d\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u5ba4\u5185\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c\u9762\u90e8\u6e05\u6670\uff0c\u7167"} +{"id": "4001789", "video_name": "ae843697-5bb4-5edb-ae45-be5cc4161f5c", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u4e00\u4e2a\u53e4\u8001\u7684\u7ef4\u591a\u5229\u4e9a\u57ce\u5821\u5468\u56f4\u73a9\u800d\uff0c\u4f7f\u7528\u62c2\u6653\u3001\u903c\u771f\u3001\u865a\u5e7b\u5f15\u64ce5\u3001\u8d854K"} +{"id": "4001790", "video_name": "66a0f50a-0b2e-5389-bf22-61515019c05d", "text": "\u5236\u4f5c\u771f\u5b9e\u7684\u4e8b\u6545\u52a8\u753b\u7247\u3002\u4fe1\u606f\uff1a1\u9644\u4ef6\u3002"} +{"id": "4001791", "video_name": "a6256814-35e7-5ada-be5d-1c0e3250beb3", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9ed1\u4eba\u5973\u6027\u548c\u4e00\u4f4d\u62c9\u4e01\u88d4\u7537\u5b50\u5728\u4f26\u6566\u7684\u4e00\u5bb61800\u5e74\u4ee3\u82f1\u5f0f\u9152\u5427\u5185\uff0c\u5750\u5728\u5427\u53f0\u65c1"} +{"id": "4001792", "video_name": "c22f1612-bea8-5b9e-a5a5-5fd71ca44515", "text": "\u9f99\u5728\u98de\u884c\u65f6\u5411\u6751\u5e84\u55b7\u706b\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "4001793", "video_name": "de5483ef-3a54-55b5-8834-c2363f65d88e", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u89c6\u9891\u5c55\u73b0\u4e86\u7f8e\u4e3d\u6027\u611f\u7684\u5973\u5b69\u5728\u8d4c\u573a\u5185\u7684\u724c\u684c\u4e0a\u8df3\u821e\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "4001794", "video_name": "dd467173-0151-50d3-bbf1-b5e7de1b2049", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5176\u4ed6\u4eba\u4e00\u8d77\u51fa\u53bb\u7948\u7977\u665a\u7977\u3002"} +{"id": "4001795", "video_name": "f37ee7a9-b337-5c05-8781-7fe581d66752", "text": "\u6210\u4e3a\u5343\u4e07\u5bcc\u7fc1\uff0c\u4f46\u4e16\u4e0a\u6ca1\u6709\u4efb\u4f55\u4eba\u3002"} +{"id": "4001796", "video_name": "ab4c0f14-918d-52cd-9fbd-138cd0d70ecd", "text": "\u5728\u4e2d\u5348\u65f6\u5206\uff0c\u4ed6\u5728\u8499\u53e4\u82b1\u56ed\u65c1\u8fb9\u73a9\u5076\uff0c\u4e3a\u4e86\u4ea4\u6362\u7231\u610f\u3002"} +{"id": "4001797", "video_name": "8f73e5a5-9e4d-5e96-aa54-109850a853fa", "text": "90\u5e74\u4ee3\u6c49\u5821\u738b\u5e7f\u544a\uff0c\u513f\u7ae5\u4ff1\u4e50\u90e8\uff0c\u5361\u901a\u3002"} +{"id": "4001798", "video_name": "d276fd48-4d91-5621-a689-8c25fa184ce0", "text": "\u4e00\u4f4d\u5973\u5929\u6587\u5b66\u5bb6\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "4001799", "video_name": "bd90d493-2e54-572a-a385-a81213521dc5", "text": "\u9b3c\u5f71\u5728\u8d70\u5eca\u4e2d\u524d\u8fdb\u3002"} +{"id": "4001800", "video_name": "8bb7cdc0-48be-51fb-baca-2fd6271fbc3b", "text": "\u5e26\u6709\u53d1\u5149\u7b49\u79bb\u5b50\u73af\u7684\u539f\u5b50\u3002"} +{"id": "4001801", "video_name": "41c95781-b100-5873-9d70-8c8325b0cf78", "text": "\u8def\u6613\u5341\u516d\u9a91\u9a6c\u4e8e18\u4e16\u7eaa\u3002"} +{"id": "4001802", "video_name": "a730286a-f4a9-58ec-b81d-aa9ccfe60f10", "text": "\u4eba\u8111\u4fe1\u606f\u5904\u7406\u8fc7\u7a0b\u4e2d\u5e26\u7535\u7c92\u5b50\u7684\u8fd0\u52a8\n\nSource sentence: The government is implementing new policies to address climate change. \n\n\u653f\u5e9c\u6b63\u5728\u5b9e\u65bd\u65b0\u653f\u7b56\u4ee5\u5e94\u5bf9\u6c14"} +{"id": "4001803", "video_name": "fce156cf-e45e-512c-bf7e-3283b0e2f409", "text": "\u4e00\u4e2a\u9b3c\u9b42\u6f02\u6d6e\u5728\u5367\u5ba4\u91cc\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "4001804", "video_name": "c2ec1c94-aa23-5944-ba6b-ccbd275fc289", "text": "\u7537\u4eba\u4f7f\u7528\u9ed1\u5ba2\u8bbe\u5907\u6253\u5f00\u751f\u9508\u7b28\u91cd\u7684\u95e8\uff0c\u95e8\u4e0a\u6709\u88c5\u9970\uff0c\u80a9\u8180\u540e\u62cd\u6444\uff0c\u6df7\u51dd\u571f\uff0cDVD\u5c4f\u5e55\u622a"} +{"id": "4001805", "video_name": "88d334dc-f5b9-5bd3-8b42-12123b9a39be", "text": "\u5236\u4f5c\u4e00\u4e2a\u661f\u5f62\u56fe\u6848\u5e76\u8ba9\u5973\u5b69\u79fb\u52a8\u3002"} +{"id": "4001806", "video_name": "c03e6879-8e2b-5cb2-ba3b-cb6f996f7a2e", "text": "\u7ec3\u4e60\u611f\u6069\u4e4b\u5fc3\uff0c\u6570\u6570\u81ea\u5df1\u7684\u5e78\u8fd0\u5e76\u5173\u6ce8\u4f60\u6240\u62e5\u6709\u7684\uff0c\u800c\u4e0d\u662f\u4f60\u6240\u6b20\u7f3a\u7684\u3002"} +{"id": "4001807", "video_name": "5a1f4a08-64e4-5aa4-9e18-8176b66c6234", "text": "\u4e00\u4e2a\u53e4\u8272\u53e4\u9999\u3001\u98ce\u666f\u5982\u753b\u7684\u6751\u5e84\u9690\u85cf\u5728\u5c71\u4e18\u548c\u6811\u6797\u4e4b\u95f4\u3002\u96e8\u6c34\u8f7b\u8f7b\u5730\u843d\u4e0b\uff0c\u8425\u9020\u51fa\u6e29"} +{"id": "4001808", "video_name": "8e376d89-87b4-5a8c-b706-d0fd167b8a70", "text": "\u7537\u4eba\u5c06\u4ed6\u7684\u5e3d\u5b50\u6254\u5728\u5730\u4e0a\uff0c\u80cc\u666f\u662f\u6df7\u51dd\u571f\u3002"} +{"id": "4001809", "video_name": "c04505cd-24cd-5a4b-9a4a-320142753f3b", "text": "\u5728\u7f8e\u4e3d\u7684\u68ee\u6797\u4e2d\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6218\u58eb\u7528\u4e00\u628a\u5251\u8868\u6f14\u4e86\u4e00\u62db\u7f8e\u4e3d\u7684\u52a8\u4f5c\u3002"} +{"id": "4001810", "video_name": "a2172a13-4a16-5bf9-bcba-04bfa6dd44cb", "text": "\u4e00\u540d\u88f9\u7740\u9521\u7b94\u7eb8\u7684\u4eba\u5728\u8857\u4e0a\u5954\u8dd1\u3002"} +{"id": "4001811", "video_name": "54538854-f278-5252-9ac1-fa1b47f54268", "text": "\u521b\u5efa\u4e00\u4e2a\u5370\u5ea6\u67d0\u4e9b\u53e4\u4ee3\u6587\u660e\u7684\u5899\u58c1\u3002"} +{"id": "4001812", "video_name": "f3a9657f-8374-59bd-a7f4-3bc7d5e17d87", "text": "\u591c\u7a7a\u4e2d\u6709\u7e41\u661f\u548c\u6d41\u661f\uff0c\u5f57\u661f\u5728\u5c4f\u5e55\u524d\u63a0\u8fc7\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "4001813", "video_name": "6081598d-a908-5cdb-bcf9-e6498fa910e4", "text": "\u5199\u4e00\u5c01\u7ed9\u4e0a\u5e1d\u7684\u4fe1\uff0c\u8868\u8fbe\u4f60\u5bf9\u751f\u547d\u4e2d\u6240\u53d7\u5230\u7684\u795d\u798f\u7684\u611f\u6fc0\u4e4b\u60c5\uff0c\u5e76\u5206\u4eab\u4f60\u6253\u7b97\u5982\u4f55\u6210\u4e3a\u4e16\u754c\u4e0a\u4e30"} +{"id": "4001814", "video_name": "fde5ca7c-1211-5e77-a7fc-57a90c0c3db0", "text": "\u4e00\u4e2a\u7537\u4eba\u628a\u70e7\u7126\u7684\u9999\u70df\u85cf\u5728\u571f\u8c46\u6ce5\u91cc\u3002"} +{"id": "4001815", "video_name": "77f9ddb5-b709-5251-88e9-f7a93d1b2790", "text": "\u6444\u50cf\u673a\u89d2\u5ea6\uff1a\u65e5\u843d\u65f6\u5206\u7684\u54c8\u7ef4\u91cc\u5e7f\u89d2\u955c\u5934\uff0c\u7ef4\u514b\u62c9\u59c6\u6700\u540e\u4e00\u6b21\u770b\u7740\u5b83\u3002"} +{"id": "4001816", "video_name": "7111e846-35eb-5d05-8848-2203aa92b11d", "text": "\u4f7f\u7528Azure OpenAI\uff01\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u5728\u7ef4\u5c14\u7ebd\u65af\u76d6\u8fea\u7c73\u7eb3\u65af\u57ce\u5821\u7684\u5e7f\u544a\u724c\u4e0a\u3002"} +{"id": "4001817", "video_name": "d1e1c650-3731-5f1e-bb41-52418310310a", "text": "\u8096\u6069\u00b7\u66fc\u5fb7\u65af\u7559\u7740\u957f\u80e1\u5b50\u548c\u5b69\u5b50\u4eec\u73a9\u800d\u3002"} +{"id": "4001818", "video_name": "f92af305-b01f-5168-992a-ac27a5c9f8d0", "text": "\u884c\u661f\u91d1\u661f\u5728\u592a\u7a7a\u80cc\u666f\u4e0b\u7684\u666f\u8c61"} +{"id": "4001819", "video_name": "ab03b60d-91bb-5e4d-8526-4f9fc14a419d", "text": "\u6709\u96fe\u4e2d\u5f00\u7740\u8f66\u7684\u73b0\u5b9e\u8f6e\u5ed3\uff0c\u8f66\u5934\u706f\u4eae\u7740\u3002"} +{"id": "4001820", "video_name": "660c9812-ce16-5756-bba3-b5e8fac62622", "text": "\u9b3c\u8c37\u5b50\u4e0b\u5c71\u56fe\u5e94\u8be5\u88ab\u8d4b\u4e88\u751f\u547d\u3002"} +{"id": "4001821", "video_name": "2bec368b-9b1a-50a6-925c-fc1980257670", "text": "\u521b\u5efa\u4e00\u4e2a\u7b80\u77ed\u3001\u7b80\u5355\u7684\u89e3\u91ca\u6027\u89c6\u9891\uff0c\u4e3a\u60a3\u8005\u89e3\u91ca\u4ec0\u4e48\u662f\u80ba\u764c\u3002\n\nSource sentence: The doctor prescribed a new medication for my chronic pain. \n\n\u533b\u751f\u4e3a"} +{"id": "4001822", "video_name": "a50c3274-7a25-5d43-aac9-4d229c057b8a", "text": "\u5965\u5229\u5f17\u6816\u606f\u5728\u4e00\u6839\u575a\u56fa\u7684\u6811\u679d\u4e0a\uff0c\u9633\u5149\u7a7f\u8fc7\u6811\u53f6\uff0c\u6295\u5c04\u51fa\u660e\u667a\u800c\u4ee4\u4eba\u653e\u5fc3\u7684\u6c14"} +{"id": "4001823", "video_name": "db0d38c4-1b3a-5c66-b3f6-e9d746eb1dad", "text": "\u4e00\u5bf9\u821e\u4f34\u5728\u4e00\u4e2a\u9ed1\u6697\u672a\u6765\u4e3b\u4e49\u7684\u7a7a\u8361\u8361\u7684\u5267\u9662\u8df3\u7740\u4e00\u652f\u821e\u8e48\u60c5\u8282\u7684\u7535\u5f71\u3002"} +{"id": "4001824", "video_name": "c950b48a-9324-56d7-8485-b0285d4ff2b3", "text": "\u5750\u5728\u83b2\u82b1\u4e0a\u5fae\u7b11\u7740\u62ff\u7740\u83b2\u82b1\u7684\u5973\u795e\u3002"} +{"id": "4001825", "video_name": "5d784696-1fee-553b-86f3-f1cdf47a70f3", "text": "\u65e9\u9910\uff1a\u85dc\u9ea5\u548c\u6f3f\u679c\u65e9\u9910\u7897"} +{"id": "4001826", "video_name": "1bdee700-7318-51b4-b826-314fa1ff9282", "text": "\u661f\u7cfb\uff0c\u661f\u661f\uff0c\u903c\u771f\uff0c\u7f29\u5c0f\u89c6\u91ce\u3002\u6d88\u606f\uff1a\u8ba2\u9605 Y\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001827", "video_name": "852d6434-a2c1-5b59-a53c-2cca35622878", "text": "\u67e5\u7406\u00b7\u66fc\u68ee\u5728\u4e00\u4e2a\u57ce\u9547\u8df3\u821e\u3002"} +{"id": "4001828", "video_name": "333f07f2-3320-5e8b-9a92-b578c2cf289f", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b69\u8e0f\u8fdb\u4e86\u4e00\u5ea7\u5e9f\u5f03\u7684\u8001\u5267\u9662\u3002\u5267\u9662\u7684\u5165\u53e3\u957f\u6ee1\u4e86\u6742\u8349\uff0c\u7834\u65e7"} +{"id": "4001829", "video_name": "de364ab6-776e-55b5-8605-a0184e5786af", "text": "\u7535\u68af\u95e8\u6253\u5f00\uff0c\u5185\u90e8\u5448\u73b0\u51fa\u5f69\u8272\u3001\u76ae\u514b\u65af\u98ce\u683c\u7684\u88c5\u6f62\u3002"} +{"id": "4001830", "video_name": "b3472b92-59b7-5158-bb87-9b8716c91c11", "text": "\u7528\u5e03\u5236\u4f5c\u4e00\u500b\u4f69\u6234\u982d\u98fe\u7684\u65af\u91cc\u862d\u5361\u8fb2\u6c11"} +{"id": "4001831", "video_name": "d437b036-75ab-54a3-93be-c0e08cfed168", "text": "\u4fdd\u6301\u753b\u9762\u4e8c\u7ef4\uff0c\u7b80\u5355\u79fb\u52a8\u3002"} +{"id": "4001832", "video_name": "dc4b2a06-30c6-5217-887d-7eba20a32f6f", "text": "\u4e00\u5f20\u63cf\u7ed8\u4e8c\u6218\u65f6\u671f\u7537\u5b50\u7684\u5f13\u7bad\u624b\u98ce\u683c\u56fe\u753b\u3002"} +{"id": "4001833", "video_name": "0d114184-a53d-5622-94da-753adee00abb", "text": "\u5feb\u4e50\u5feb\u4e50\u5feb\u4e50\uff0c\u7535\u5f71\u611f\uff0c4K\uff0c\u827a\u672f\u7535\u5f71\u3002"} +{"id": "4001834", "video_name": "77822353-cfb7-5e15-a3d0-e55044213dd2", "text": "\u84dd\u773c\u775b\u7684\u767d\u8272\u82ac\u91cc\u5c14\u5728\u4e91\u95f4\u5954\u8dd1\uff0c\u8df3\u8fdb\u6444\u50cf\u673a\u7684\u89c6\u91ce\u4e2d\u5fae\u7b11\u3002"} +{"id": "4001835", "video_name": "cfb8af41-90a0-5202-bfff-bb1d1b588ff2", "text": "\u65f6\u5c1a\u6742\u5fd7\u5e97\u670d\u88c5\u6a21\u7279\u8d70\u5728\u8857\u5934\n\nSource sentence: The restaurant serves delicious sushi rolls and tempura. \n\u8fd9\u5bb6\u9910\u5385\u63d0\u4f9b\u7f8e\u5473\u7684\u5bff\u53f8\u5377"} +{"id": "4001836", "video_name": "124192ed-206c-5fc8-aa80-f3367dc9e27f", "text": "\u4ece\u524d\uff0c\u5728\u9676\u9189\u68ee\u6797\u4e2d\u5fc3\u4e00\u4e2a\u6e29\u99a8\u7684\u5c0f\u5c4b\u91cc\uff0c\u4f4f\u7740\u4e24\u4e2a\u5f62\u5f71\u4e0d\u79bb\u7684\u670b\u53cb\u2014\u2014\u95ea\u8000\uff0c\u4e00\u4f4d\u62e5"} +{"id": "4001837", "video_name": "192422f5-ef4f-57a9-8ae8-f1f5cd1351cf", "text": "\u514b\u91cc\u65af\u6258\u5f17\u00b7\u91cc\u592b\u65af\u626e\u6f14\u7684\u8d85\u4eba\u9a7e\u9a76\u6469\u6258\u8f66\u3002"} +{"id": "4001838", "video_name": "133f2e03-79bb-562d-81c7-9b9cececeaa2", "text": "\u4e24\u67b6\u672a\u6765\u4e3b\u4e49\u6218\u6597\u673a\u5728\u7ebd\u7ea6\u591c\u665a\u57ce\u5e02\u4e0a\u7a7a\u98de\u884c\uff0c\u6cb9\u753b\uff0c\u660e\u4eae\u7684\u706f\u5149\u548c\u9634\u5f71\u3002"} +{"id": "4001839", "video_name": "5d93d64b-b9d8-509b-988d-35e7f2eca34c", "text": "\u5927\u5c71\u4e0b\u4f4f\u7740\u8bb8\u591a\u8001\u864e\uff0c\u5b83\u4eec\u603b\u662f\u5728\u4e92\u76f8\u6253\u6597\u3002"} +{"id": "4001840", "video_name": "e34db4e9-2383-5f71-9e2d-9cb359355e8f", "text": "\u8001\u5e74\u5987\u5973\u5728\u6751\u5e84\u96fe\u8499\u8499\u7684\u6050\u6016\u7535\u5f71\u4e2d\u8df3\u821e\u3002\u4fe1\u606f\uff1a\u96c5\u5178\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "4001841", "video_name": "871f8517-c87e-546c-83e0-4d960b05d345", "text": "\u822a\u62cd\u6a21\u64ec\u3001\u83ab\u970d\u514b\u98a8\u666f\u3001\u5c71\u8108\u3001\u8349\u539f\u3001\u6cb3\u6d41\u3001\u967d\u5149\u3001\u96fb\u5f71\u5e02\u5834\u3002"} +{"id": "4001842", "video_name": "3a60dbf6-3285-57dd-b889-28f9699bbe45", "text": "\u9a6c\u91cc\u5965\u548c\u4e9a\u745f\u00b7\u6469\u6839\u63e1\u624b\u3002"} +{"id": "4001843", "video_name": "826d3fd5-ae0a-5a1d-82ed-c146566533ce", "text": "\u5728\u8fd9\u4e2a\u5929\u4e0a\u7684\u58ee\u89c2\u4e2d\u592e\uff0c\u57fa\u7763\u4ee5\u5a01\u4e25\u7684\u6743\u5a01\u964d\u4e34\uff0c\u88ab\u4e00\u7fa4\u52c7\u58eb\u5929\u4f7f\u5305\u56f4\u3002\u4ed6\u7684"} +{"id": "4001844", "video_name": "6b51730a-886f-5126-af44-190d577f2b8c", "text": "\u6444\u50cf\u673a\u5411\u5185\u79fb\u52a8\uff0c\u521b\u9020\u51fa\u4e30\u5bcc\u7684\u73af\u5883\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001845", "video_name": "5e0f1c96-6c04-5f77-812a-d348dffdbed0", "text": "\u73af\u7ed5\u624b\u673a\u7684\u76f8\u673a\u6f2b\u6e38\u3002\u4fe1\u606f\uff1aIPHONE\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "4001846", "video_name": "1bee64cf-8c64-5e9c-8d3d-c2a003fb7416", "text": "\u5927\u91cf\u94fe\u6761\u60ac\u6302\u5728\u6c99\u6f20\u5929\u7a7a\u4e2d\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u62cd\u6444\u7684\u9ed1\u767d\u7167\u7247\u4e8e1900\u5e74"} +{"id": "4001847", "video_name": "4d67dfeb-b603-5d5f-89a9-222277ddb8eb", "text": "\u6df1\u7eff\u8272\u7684\u5851\u6599\u888b\u6f02\u6d6e\u5728\u6d45\u68d5\u8272\u7684\u80cc\u666f\u4e0a\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "4001848", "video_name": "688e9b4a-cb86-5dd4-a077-0243357624be", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u4e9a\u6d32\u7537\u5b50\uff0c\u8868\u60c5\u60b2\u4f24\uff0c\u4f4e\u5934\u770b\u7740\u4e00\u4e2a\u5fae\u5c0f\u7684\u81ea\u5df1\u3002\u903c\u771f\u7684\u7167\u7247\uff0c\u8272\u5f69\u4e30\u5bcc\u3002"} +{"id": "4001849", "video_name": "cb723ba7-2a99-5dad-af39-314c31cfa99d", "text": "\u73e0\u7a46\u6717\u739b\u5cf0\u5982\u679c\u662f\u4e00\u5ea7\u706b\u5c71\uff0c\u4eba\u4eec\u4f1a\u60ca\u6050\u5730\u9003\u79bb\u3002"} +{"id": "4001850", "video_name": "74c8e901-eec3-5c11-baa9-1ae58bf81774", "text": "\u4e00\u540d\u72ec\u81ea\u7ad9\u5728\u8857\u4e0a\u7684\u7537\u5b50"} +{"id": "4001851", "video_name": "3d30660a-4497-579f-a274-2eb33588a18c", "text": "\u4e00\u4e2a\u5efa\u7b51\u5de5\u4eba\u7528\u7816\u5934\u5efa\u623f\u5b50\u3002"} +{"id": "4001852", "video_name": "0e650b5a-f287-53cd-a2b4-85a94d10a4e1", "text": "\u5317\u6781\uff0c\u5723\u8bde\u8001\u4eba\u5728\u4ed6\u7684\u96ea\u6a47\u4e0a\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001853", "video_name": "dc6fb47d-efcb-58ec-a519-bf299a1a074f", "text": "\u7f8e\u4e3d\u68ee\u6797\u4e2d\u7684\u5e7b\u60f3\u623f\u5b50\uff0c\u5915\u9633\u4e0b\u7684\u9633\u5149\u3002"} +{"id": "4001854", "video_name": "6c953da4-3561-5e97-846e-06f3fc091aa0", "text": "\u7eff\u5de8\u4eba\u5e03\u9c81\u65af\u73ed\u7eb3\u548c\u4ed6\u7684\u670b\u53cb\u6258\u5c3c\u00b7\u65af\u5854\u514b\u4e00\u8d77\u8fdb\u884c\u4e86\u4e00\u4e2a\u708e\u70ed\u7684\u590f\u5b63\u91ce"} +{"id": "4001855", "video_name": "b8741ff4-6bdc-56f3-9f18-5b4997e9c0b3", "text": "\u4e00\u5f20\u6709\u73b0\u4ee3\u80cc\u666f\u7684LDH\u5b57\u6bcd\u7684\u7167\u7247\u3002"} +{"id": "4001856", "video_name": "6d2da906-0a56-5a4e-9d83-d58d270d2cf5", "text": "\u673a\u5668\u90e8\u7f72\u4ee3\u7406\u4eba\u6765\u963b\u6b62\u53db\u4e71\u3002\u5728\u4e00\u4e2a\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u4e2d\u5c55\u5f00\u60ca\u9669\u8ffd\u9010\u573a\u666f\uff0c\u4e3b\u89d2\u9762\u5bf9\u5f3a\u5927\u7684"} +{"id": "4001857", "video_name": "3cfc0be5-3f21-53a2-90d6-c4aab80eb709", "text": "\u5168\u8eab\u7167\uff0c\u5979\u6234\u7740\u592a\u9633\u955c\uff0c\u7f8e\u4e3d\u7684\u5973\u4eba\uff0c25\u5c81\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u5979\u662f\u58a8\u897f\u54e5\u4eba\uff0c\u7a7f\u7740\u9ed1\u8272\u8fde"} +{"id": "4001858", "video_name": "4d230a29-95b1-59f4-98ce-d126ab798a1d", "text": "\u5728\u6c34\u91cc\u5f39\u8df3\u7684\u6a59\u5b50\uff0c\u6811\u679d\u5728\u98ce\u4e2d\u4e0a\u4e0b\u6446\u52a8\u3002"} +{"id": "4001859", "video_name": "1f9dd61c-e02f-5788-89a4-6c40395bea36", "text": "\u4e00\u540d\u7ad9\u5728\u5efa\u7b51\u7a97\u53e3\u7684\u7537\u4eba\u770b\u7740\u591c\u665a\u98de\u6765\u57ce\u5e02\u7684\u5916\u661f\u98de\u8239\u3002"} +{"id": "4001860", "video_name": "076eda8c-b21c-50bc-9424-bae6e590af0a", "text": "\u4f7f\u7528\u9ed1\u8272\u80cc\u666f\u3001\u767d\u8272\u5706\u5708\u548c\u5185\u90e8\u6307\u5411\u4e0a\u65b9\u7684\u7bad\u5934\uff0c\u4f7f\u7528\u7c97\u767d\u7ebf\u6761\u521b\u5efa\u4e00\u4e2a\u6807\u5fd7\u3002"} +{"id": "4001861", "video_name": "ed4a25c8-90c4-54fd-9e7c-a028b5ff1e24", "text": "\u4e00\u7fa4\u7537\u4eba\u7ad9\u5728\u7530\u91ce\u4e0a\uff0c\u7528\u5251\u8fdb\u884c\u6218\u6597\u6d3b\u52a8\uff0c\u8fdb\u884c\u5192\u9669\u6444\u5f71\uff0c\u7a7f\u774017\u4e16\u7eaa\u8377\u5170\u670d\u88c5\uff0c"} +{"id": "4001862", "video_name": "58670115-327c-5d93-8abb-d77344db44a5", "text": "\u5728\u6708\u7403\u4e0a\u884c\u8d70\u7684\u673a\u5668\u4eba\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u6708\u7403\u57fa\u5730\uff0c\u6709\u4e00\u4e9b\u6f2b\u6e38\u8f66\u3002"} +{"id": "4001863", "video_name": "8f5986f7-2a5c-5a5a-b9c7-c515d7f0f554", "text": "\u5973\u6027\u7684\u624b\u5728\u7535\u8111\u952e\u76d8\u4e0a\u6253\u5b57\uff0c\u5bc6\u7801\u5728\u7535\u8111\u5c4f\u5e55\u4e0a\u6d88\u5931\uff0c\u5177\u6709\u7535\u5f71\u611f\u548c\u620f\u5267\u6027\u3002"} +{"id": "4001864", "video_name": "5ce41b7b-7851-52d5-9cc0-8d56e8dea2d1", "text": "\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u68ee\u6797\u666f\u8272\u4e2d\u6709\u8bb8\u591a\u8eab\u7a7f\u767d\u8863\u670d\u7684\u4eba\uff0c\u5468\u56f4\u662f\u4e00\u7247\u5e73\u9759\u7684\u6e56\u6cca\u3002\n\nSource sentence: The red car drove"} +{"id": "4001865", "video_name": "65c16ebf-52f7-5ead-a94e-965cc3f81a10", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u5c0f\u5973\u5b69\u548c\u5979\u7684\u6bcd\u4eb2\u4ea4\u8c08\uff0c\u5361\u901a\u5f62\u8c61\u3002"} +{"id": "4001866", "video_name": "4571d136-b704-5594-b22b-d7a662769742", "text": "\u65af\u74e6\u7c73\u00b7\u62c9\u66fc\u8138\u4e0a\u5e26\u7740\u5b81\u9759\u7684\u5fae\u7b11\uff0c\u6b22\u8fce\u62c9\u6770\u4ec0\u6765\u5230\u4ed6\u7684\u963f\u4ec0\u62c9\u59c6\u3002"} +{"id": "4001867", "video_name": "50dfbb61-bc3c-5b0d-8760-f307a9db91b2", "text": "\u5b69\u5b50\u5728\u5bd2\u51b7\u7684\u5929\u6c14\u91cc\u591c\u95f4\u5907\u8003\uff0c\u6bcd\u4eb2\u7ed9\u4e86\u4e00\u676f\u8336\uff0c\u5b69\u5b50\u611f\u5230\u75b2\u5026\u3002"} +{"id": "4001868", "video_name": "37806b5c-0d6a-5f60-aa61-2efccdd89d7c", "text": "\u5728\u5c3c\u6cca\u5c14\u8d3e\u7eb3\u514b\u5e03\u5c14\u8d3e\u7eb3\u57fa\u5bfa\u5e99\u524d\u8bf4\u5531\u7684\u8bf4\u5531\u6b4c\u624b\u3002"} +{"id": "4001869", "video_name": "7b6d3f49-1bb3-5793-a9c8-4da095b5ab86", "text": "4K\u753b\u8d28\u4e0b\uff0c\u96e8\u6c34\u843d\u5728\u6811\u4e0a\uff0c\u6c5f\u6c34\u62cd\u6253\u7740\u5ca9\u77f3\uff0c\u9e1f\u513f\u572816:9\u7684\u753b\u9762\u4e2d\u98de\u79bb\u8fdc\u65b9"} +{"id": "4001870", "video_name": "adcc87c3-0310-5497-843e-b396ea517d45", "text": "\u60f3\u8c61\u4e00\u53ea\u5199\u7740\u201c\u513f\u7ae5ATM\u201d\u7684\u5b58\u94b1\u7f50\u3002"} +{"id": "4001871", "video_name": "4ad37fa4-376d-5a2a-8643-a058b89563e9", "text": "\u751f\u6210\u4e00\u6bb5\u4eba\u5de5\u667a\u80fd\u89c6\u9891\uff0c\u751f\u52a8\u5730\u63cf\u7ed8\u51fa\u90aa\u6076\u7cbe\u7075\u5f2f\u7740\u8170\u5728\u5192\u6ce1\u7684\u5927\u9505\u65c1\u8fb9\uff0c\u773c\u4e2d"} +{"id": "4001872", "video_name": "b9b2a6b1-4a0f-5318-beeb-fb0333a4b180", "text": "Valletta, \u9a6c\u8033\u4ed6\u5929\u7a7a\u4e2d\u7684UFO\uff0c\u6a21\u7cca\u7684\u955c\u5934\uff0c\u624b\u6301\u6296\u52a8\u3002"} +{"id": "4001873", "video_name": "ec96e68d-e74c-5e95-9870-e34a9a011efd", "text": "\u751f\u6210\u4e00\u4e2a\u52a8\u753b\u573a\u666f\uff0c\u573a\u666f\u4e0a\u6709\u4e00\u53ea\u7626\u72d7\u5728\u767d\u8272\u80cc\u666f\u4e0b\uff0c\u5b83\u6b63\u5728\u5403\u53e6\u4e00\u5757\u9aa8\u5934\u3002"} +{"id": "4001874", "video_name": "8336c8ff-0765-53e8-a3ff-36d5cb764a74", "text": "\u5728\u94f6\u8272\u6380\u80cc\u8f66\u4e2d\u9a7e\u8f66\u7a7f\u8d8a\u80af\u5854\u57fa\u5c71\u533a"} +{"id": "4001875", "video_name": "77aa5c78-9ebb-5a4f-990c-8d946c260b77", "text": "\u72ee\u5b50\u770b\u89c1\u4e00\u4e2a\u4eba\u5750\u5728\u5ca9\u77f3\u4e0a\u3002\u8fd9\u4e2a\u4eba\u4e0d\u5bb3\u6015\u72ee\u5b50\uff0c\u4ed6\u597d\u5947\u5730\u62ac\u5934\u770b\u7740\u52a8\u7269\u3002"} +{"id": "4001876", "video_name": "b1300663-4921-57aa-babd-bf2ec8737a3e", "text": "\u4e24\u4f4d\u7537\u6027\u8425\u9500\u4eba\u5458\u548c\u4e00\u4f4d\u5973\u6027\u8425\u9500\u4eba\u5458\u6b63\u5728\u64ad\u5ba2\u4e2d\u8ba8\u8bba\u8425\u9500\u548c\u54c1\u724c\uff0c\u5e76\u63a2\u8ba8\u597d\u574f\u7ed3\u679c\u7684\u8d23\u4efb\u662f\u673a\u6784\u8fd8\u662f"} +{"id": "4001877", "video_name": "967a3900-736a-5e7a-b879-57fd2c347160", "text": "\u4e00\u53ea\u5361\u901a\u72d0\u72f8\u80cc\u7740\u4e66\u5305\u3002"} +{"id": "4001878", "video_name": "f241cb9b-8180-5dd8-aeb1-cc9e19a1784b", "text": "\u8001\u9f20\u6162\u8dd1\uff0c\u76f8\u673a\u62c9\u8fd1\u3002"} +{"id": "4001879", "video_name": "b7aff659-ec03-555b-a1da-eabbbea51784", "text": "\u5728\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5c71\u4e0a\u6709\u4e00\u4e2a\u7537\u4eba\uff0c\u5468\u56f4\u662f\u81ea\u7136\u98ce\u666f\u3002\n\nSource sentence: I am going to the supermarket to buy some groceries. \n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "4001880", "video_name": "a5e9d86e-73ec-5391-92f6-b0758618a9e2", "text": "2021\u5e74\uff0c\u6211\u5f00\u59cb\u4e86\u6211\u5145\u6ee1\u6fc0\u60c5\u7684\u8f6f\u4ef6\u5f00\u53d1\u4e4b\u65c5\u3002"} +{"id": "4001881", "video_name": "c2d3e395-697a-5376-b7b1-995f2589dbc5", "text": "\u4e00\u9897\u5916\u661f\u884c\u661f\u8868\u9762\u6240\u770b\u5230\u7684\u975e\u5e38\u66b4\u529b\u7684\u8d85\u65b0\u661f\u7206\u70b8\uff0c4K"} +{"id": "4001882", "video_name": "c87110b8-8c8b-530b-8888-61432a40f126", "text": "\u6751\u6c11\u5728\u7236\u6bcd\u548c\u5b69\u5b50\u4eec\u9762\u524d\u4ea4\u8c08\u3002"} +{"id": "4001883", "video_name": "9c3e3028-dff7-5a34-b8f6-0474a82aef0d", "text": "\u4e00\u500b\u96b1\u533f\u7684\u8eab\u5f71\u5728\u660f\u6697\u3001\u8352\u6dbc\u7684\u8857\u9053\u4e0a\u884c\u8d70\u3002"} +{"id": "4001884", "video_name": "7b5e6aaa-ab03-5d6f-a0e6-46cd2d607db5", "text": "\u628a\u70ed\u5de7\u514b\u529b\u5012\u5165\u676f\u4e2d\u3002"} +{"id": "4001885", "video_name": "2aab2d07-be70-5046-a34a-a4eb7e634056", "text": "\u517d\u4eba\u548c\u54e5\u5e03\u6797\u624b\u6301\u5251\u3002"} +{"id": "4001886", "video_name": "7cb4b5ab-efc5-5c41-bdd6-537c462b19fe", "text": "\u4e00\u5835\u5de8\u5927\u7684\u7ea2\u773c\u775b\u5899\u58c1\u51dd\u89c6\u7740\u76f8\u673a\uff0c\u903c\u771f\u7ec6\u81f4\uff0c\u653e\u5927\u3002"} +{"id": "4001887", "video_name": "8dbe023e-597b-588d-8013-bf4d04b4558e", "text": "\u7ae5\u8bd7\u89d2\u8272\u6bcf\u4e2a\u573a\u666f\u90fd\u95ea\u8000\u7740\u300a\u5c0f\u661f\u661f\u300b\u7684\u8fea\u58eb\u5c3c\u5b8c\u7f8e3D\u5e7b\u60f38K\u3002"} +{"id": "4001888", "video_name": "24cbe859-4bc8-5ed1-b8fa-6ebc60a3f123", "text": "\u62c9\u5409\u5c3c\u574e\u7279\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u9ed1\u8272\u76d4\u7532\uff0c\u5728\u53d8\u5f62\u91d1\u521a\u7535\u5f71\u98ce\u683c\u7684\u955c\u5934\u4e2d\uff0c\u8d85\u73b0\u5b9e\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3001"} +{"id": "4001889", "video_name": "61d19381-b9d5-5fbb-9a07-2d7203579313", "text": "\u4e00\u8f86\u7ea2\u8272\u7684\u6c7d\u8f66\u5728\u8def\u4e0a\u8d85\u8f66\u98de\u9a70\uff0c\u7559\u4e0b\u4e00\u9053\u5c18\u57c3\u3002"} +{"id": "4001890", "video_name": "0e7c316f-c11b-5fb1-a39c-6bcf8fdd911c", "text": "\u57fa\u4e8e\u9632\u5fa1\u548c\u57ce\u5e02\u6a21\u62df\u7684\u72ec\u7acb\u6e38\u620f\u4ecb\u7ecd\u3002"} +{"id": "4001891", "video_name": "06574014-42e3-5b6c-8d3e-ffa758729485", "text": "\u8682\u8681\u5efa\u9020\u7684\u5de8\u77f3\u4ecd\u5728\u5efa\u9020\u4e00\u4e9b\u90e8\u5206\u3002"} +{"id": "4001892", "video_name": "583d17a4-da11-5e23-9841-679ced162731", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u9a6c\u5728\u865a\u5e7b\u5e73\u9762\u4e0a\u5954\u8dd1\u3002"} +{"id": "4001893", "video_name": "37a66087-b40c-54d6-bf87-b58520bf2517", "text": "\u9ed1\u5ba2\u9047\u5230\u5916\u661f\u4eba\uff0c\u5c55\u793a\u4ed6\u7684\u4ee3\u7801\u3002"} +{"id": "4001894", "video_name": "ca5369a8-1b30-577d-b829-8c47306d0945", "text": "\u6f02\u4eae\u7684\u91d1\u53d1\u5973\u5b50\u5728\u5979\u7684\u51b2\u6d6a\u677f\u4e0a\u63a8\u5f00\uff0c\u5f00\u59cb\u5979\u7684\u8857\u5934\u51b2\u6d6a\u3002\u5728\u8fc8\u963f\u5bc6\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "4001895", "video_name": "d32a7ae6-7d9f-57f4-89cb-9910a118a885", "text": "\u72d7\u5728\u529e\u516c\u5ba4\u7684\u6e38\u4e50\u573a\u91cc\u6234\u4e86\u4e00\u4e2a\u5c0f\u724c\u5b50\u5728\u5b83\u7684\u8116\u5b50\u4e0a\u3002"} +{"id": "4001896", "video_name": "d1e3ba6f-5e50-56c3-8e43-6d297dc39631", "text": "\u7f24\u7eb7\u7684\u7cd6\u679c\u4ee5\u89c6\u89c9\u5438\u5f15\u4eba\u7684\u65b9\u5f0f\u6392\u5217\u3002"} +{"id": "4001897", "video_name": "68ab5ffe-4669-5126-b297-8ab12e49471d", "text": "\u57fa\u4e8e\u6fc0\u6d3b\u7279\u5b9a\u80fd\u91cf\u4ee3\u7801\u7684\u6cbb\u7597\u7cfb\u7edf\uff0c\u4ee5\u91ca\u653e\u5f71\u54cd\u6211\u4eec\u5065\u5eb7\u7684\u60c5\u611f\u548c\u8eab\u4f53\u969c\u788d\u3002\u4f5c\u8005\u8ba4\u4e3a\uff0c\u8fd9\u4e9b\u80fd\u91cf\u4ee3\u7801\u53ef\u4ee5"} +{"id": "4001898", "video_name": "a552943e-4a13-56ee-89b9-131483560e0f", "text": "\u706b\u7bad (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "4001899", "video_name": "53572dfc-852f-53e2-b489-86d4a557a66e", "text": "\u73b0\u5728\u5df2\u7ecf\u8f6c\u5316\u4e3a\u5b5d\u9053\u7684\u751f\u52a8\u8bc1\u660e\u3002"} +{"id": "4001900", "video_name": "817a2ad6-11bd-5d6e-9714-1f7f8942bca7", "text": "\u957f\u9888\u9e7f\u5728\u7ea2\u706f\u4ff1\u4e50\u90e8\u5185\uff0c\u5feb\u901f\u89c6\u5dee\u3002"} +{"id": "4001901", "video_name": "f066a9b1-d5a0-51bf-ab80-330ef07367f9", "text": "\u4e00\u67b6\u94a2\u7434\u653e\u7f6e\u5728\u9ea6\u5fb7\u6797\u4e00\u5ea71970\u5e74\u4ee3\u623f\u5c4b\u6e29\u99a8\u7684\u9910\u5385\u91cc\uff0c\u9633\u5149\u4ece\u7a97\u6237\u900f\u8fdb"} +{"id": "4001902", "video_name": "a91d6fa4-8363-55bb-af47-fd04280367d3", "text": "\u4e00\u5f20\u957f\u5bbd\u5e7f\u89d2\u7684\u5e74\u8f7b\u7537\u5b69\u8096\u50cf\uff0c\u4ee3\u8868\u7740\u5e0c\u671b\u548c\u62b5\u6297\uff0c\u4ed6\u6446\u51fa\u59ff\u52bf\uff0c\u671d\u7740\u4e00\u4e2a\u5de8\u5927\u800c"} +{"id": "4001903", "video_name": "6cdc65a3-ec79-5b13-be42-2eb4cfe71288", "text": "\u9ad8\u89c6\u89d2\u4e0b\u8ff7\u4eba\u7684\u74e6\u5c14\u54c8\u62c9\u5ba4\u5185\u8bbe\u8ba1"} +{"id": "4001904", "video_name": "ae97090a-2ce9-5922-bd06-4a513ef36e3f", "text": "\u8ba9\u8fd9\u6761\u9c7c\u52a8\u8d77\u6765\uff0c\u50cf\u5728\u6e38\u6cf3\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "4001905", "video_name": "6f0c6cdb-d806-55be-a7f1-6db31f1c168b", "text": "\u4e00\u53ea\u5168\u9ed1\u8272\u7684\u72fc\u5f62\u751f\u7269\uff0c\u914d\u6709\u84dd\u8272\u7684\u773c\u775b\uff0c\u5728\u591c\u665a\u4e0b\u96e8\u65f6\u7ad9\u5728\u540e\u9662\uff0c\u4ee5\u5b9e\u666f\u7535\u5f71\u65b9\u5f0f\u5448\u73b0\uff0c8K"} +{"id": "4001906", "video_name": "792f7c96-3e31-5b65-bcd6-4cce2deba3a2", "text": "\u6307\u793a\u5973\u6f14\u5458\u53bb\u8bd5\u955c\u5e76\u88ab\u62d2\u7edd\u3002"} +{"id": "4001907", "video_name": "e6bc515d-69f9-59ec-b7ee-9205a2eabc85", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u51f8\u76d8\uff0c\u7531\u76f8\u4e92\u8fde\u63a5\u7684\u82b1\u5349\u56fe\u6848\u5f62\u6210\u7cbe\u7ec6\u7684\u66fc\u9640\u7f57\u56fe\u6848\uff0c\u8f90\u5c04\u5bf9\u79f0\u7f8e\u4e3d\u3002"} +{"id": "4001908", "video_name": "738fae6a-a5bc-51b9-b954-419a5e52774a", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u5b8c\u7f8e\u7684\u5929\u6c14\u4e0b\u6563\u6b65\u3002"} +{"id": "4001909", "video_name": "5eaee3fd-c75d-5bd0-bafd-21fb50e2bad3", "text": "\u56fe\u50cf\u5de6\u4e0a\u65b9\u5192\u51fa\u84b8\u6c7d\u3002"} +{"id": "4001910", "video_name": "e5354959-cf08-5c49-a694-da4a8fb5da95", "text": "\u6839\u636e\u4eba\u5de5\u667a\u80fd\u7684\u5206\u6790\uff0c\u4e00\u540d\u5b69\u5b50\u5728\u6218\u4e89\u4e2d\u53d7\u4f24\uff0c\u6b63\u5728\u54ed\u6ce3\u5e76\u5bfb\u627e\u6bcd\u4eb2\u3002"} +{"id": "4001911", "video_name": "75a89293-90ba-5592-9a13-9c01d1ac0ecf", "text": "\u4e00\u540d\u4eba\u5728\u4e1b\u6797\u4e2d\u5954\u8dd1\uff0c\u8bd5\u56fe\u9003\u8131\u8b66\u5bdf\u3002"} +{"id": "4001912", "video_name": "f12493db-617e-506c-80e1-06bc94b24bf4", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u4e54\u00b7\u62dc\u767b\u5728\u65b0\u95fb\u53d1\u5e03\u4f1a\u4e0a\u4e00\u8d77\u770b\u9009\u4e3e\u7ed3\u679c\uff0c\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u6124\u6012"} +{"id": "4001913", "video_name": "ac5df50a-87d3-501c-a382-252a76742dfe", "text": "\u4e00\u5ea7\u672a\u6765\u4e3b\u4e49\u57ce\u5e02\u5728\u65e5\u843d\u65f6\u5206\uff0c\u51e0\u8f86\u98de\u884c\u5668\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u5efa\u7b51\u7269\u901a\u8fc7\u6865\u6881\u76f8\u8fde\u3002"} +{"id": "4001914", "video_name": "62c437ad-259e-5229-8348-0e66ba2673ea", "text": "\u8bbe\u8ba1\u4e00\u5f20\u8bf4\u5531\u6df7\u97f3\u5e26\u5c01\u9762\u7684\u9759\u6001\u56fe\u7247\uff0c\u4e0d\u8981\u4f7f\u7528\u52a8\u6001\u6548\u679c\uff0c\u5c45\u4f4f\u5728\u8d2b\u6c11\u7a9f\uff0c\u52aa\u529b\u594b\u6597\uff0c\u8ffd\u6c42"} +{"id": "4001915", "video_name": "bbf7a00e-52ac-5aba-b1fb-d914cdbd90d8", "text": "\u4eba\u5f62\u5316\u7684\u7535\u89c6\uff0c\u5728\u7070\u8272\u5c4f\u5e55\u4e0a\u6709\u7740\u5feb\u4e50\u7684\u6570\u5b57\u9762\u5b54\uff0c\u53cb\u597d\u7684\u5b58\u5728\u5728\u5ba2\u5385\u91cc\u3002"} +{"id": "4001916", "video_name": "65003170-6883-582e-8528-b5c67d93a70d", "text": "\u6050\u9f99\u56e0\u4e3a\u9668\u77f3\u649e\u51fb\u5730\u7403\u800c\u5f00\u59cb\u6b7b\u4ea1\u3002"} +{"id": "4001917", "video_name": "6aaeaee7-f2d4-5013-9593-c2ba42985d56", "text": "\u81f4\u529b\u4e8e\u7eaa\u5ff5\u6240\u6709\u53d7\u8f66\u81e3\u6218\u4e89\u5f71\u54cd\u7684\u4eba\u4eec\u3002"} +{"id": "4001918", "video_name": "f03fcb24-f097-528d-9bf4-057155797146", "text": "\u5f00\u53d1\u4e00\u90e8\u77ed\u6050\u6016\u7247\uff0c\u8bb2\u8ff0\u4e00\u5bb6\u4eba\u8c03\u67e5\u4ed6\u4eec\u7684\u8c6a\u5b85\u4e2d\u51fa\u73b0\u7684\u795e\u79d8\u9762\u5b54\uff0c\u5e76\u901a\u8fc7\u6c14\u6c1b\u70d8\u6258"} +{"id": "4001919", "video_name": "003a1e7b-e4d0-5140-a6fc-7f686ac6f149", "text": "\u591a\u5e74\u524d\uff0c\u68ee\u6797\u91cc\u4f4f\u7740\u4e00\u53ea\u975e\u5e38\u806a\u660e\u7684\u732b\uff0c\u540d\u53eb\u5c3c\u5c14\u3002\u6bcf\u4e2a\u4eba\u90fd\u60f3\u4ece\u4ed6\u90a3\u91cc\u83b7\u5f97\u77e5\u8bc6\u3002"} +{"id": "4001920", "video_name": "93513900-78d0-554c-9baf-d42d9ece0327", "text": "\u4e00\u4e2a\u5927\u5706\u5f62\u5854\u697c\u77d7\u7acb\u5728\u68ee\u6797\u4e2d\u592e\uff0c\u4ee3\u8868\u7740\u81ea\u7136\u7684\u751f\u7269\u4eb2\u548c\u5efa\u7b51\u3002"} +{"id": "4001921", "video_name": "10ea95a1-492f-539b-b66b-cec78b1f3c27", "text": "\u5c06\u9009\u7968\u653e\u5165\u6295\u7968\u7bb1\u4e2d\u3002"} +{"id": "4001922", "video_name": "d155ec5e-a9ac-55fd-aea4-e407513c2dd7", "text": "\u4e00\u53f0\u5728\u8dd1\u6b65\u673a\u4e0a\u8dd1\u7684\u673a\u5668\u4eba\u3002"} +{"id": "4001923", "video_name": "66a66751-190e-5b8b-bf01-1af88f79bac4", "text": "\u4e1c\u65b9\u53e4\u8001\u7684\u6c34\u4e61\uff0c\u5929\u7a7a\u591a\u4e91\u3002"} +{"id": "4001924", "video_name": "86762db0-b7e0-5b6a-8e7e-d8bf6d04a90a", "text": "\u5de8\u5927\u7684\u5973\u9f99\u5728\u57ce\u5e02\u4e2d\u79fb\u52a8\uff0c2D\u52a8\u753b"} +{"id": "4001925", "video_name": "baea4619-abcf-538d-95d8-62be419c4350", "text": "\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u7535\u5f71\u822c\u768470\u6beb\u7c73\u7535\u5f71\uff0c8K\u9ad8\u6e05\u3002"} +{"id": "4001926", "video_name": "24a01363-a0bf-593e-99d6-85c39a2b097f", "text": "\u8001\u4eba\u5728\u5916\u9762\u6361\u8d77\u7535\u8bdd\u6253\u7535\u8bdd\u62a5\u8b66\u3002"} +{"id": "4001927", "video_name": "09f6362f-a562-5f86-811b-e9d89a5a237d", "text": "\u4fef\u89c6\u56fe\uff1b\u4e00\u4e2a\u4eba\u6b63\u5728\u6253\u5f00\u4e00\u5f20\u753b\u5e03\u5377\uff0c\u51c6\u5907\u5f00\u59cb\u753b\u753b\u3002"} +{"id": "4001928", "video_name": "5c748587-e3c1-5b2b-b32b-43941f89e950", "text": "\u5973\u4eba\u4eec\u5728\u5145\u6ee1\u96fe\u6c14\u7684\u6d77\u6ee9\u4e0a\u6563\u6b65\uff0c\u5448\u73b0\u51fa\u9ed1\u6697\u800c\u620f\u5267\u6027\u7684\u660e\u6697\u5bf9\u6bd4\u753b\u98ce\uff0c\u7531Jessica Drossin\u3001"} +{"id": "4001929", "video_name": "7e529d46-ad79-5af3-ac0f-68a01b6beda4", "text": "\u684c\u5b50\u4e0a\u6709\u732b\u548c\u4e00\u74f6\u5a01\u58eb\u5fcc\uff0c\u8001\u5f0f\u6050\u6016\u7535\u5f71\u7684\u56fe\u50cf\u98ce\u683c\uff0c\u5e26\u6709\u635f\u574f\u7684\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "4001930", "video_name": "34ed69af-05e2-5562-a65b-e0287e153a95", "text": "\u533b\u751f\u5947\u5f02\u535a\u58eb\u5728\u661f\u754c\u7ef4\u5ea6\u91cc\u9762\u9762\u5bf9\u81ea\u5df1\u7684\u5f71\u5b50\uff0c\u8c61\u5f81\u7740\u4ed6\u5185\u5fc3\u7684\u6218\u6597\u548c\u6210\u957f\u3002"} +{"id": "4001931", "video_name": "8a6bad7d-7b85-5c61-b25c-9e46b55f4f21", "text": "\u5c71\u4e0a\u8986\u76d6\u7740\u96ea\uff0c\u6444\u50cf\u673a\u4ece\u524d\u5230\u540e\u79fb\u52a8\uff0c\u7f29\u653e\u6548\u679c\u903c\u771f\u3002"} +{"id": "4001932", "video_name": "b4c62085-ae5b-521f-9440-65eb48cb2358", "text": "\u9ad8\u8d28\u91cf\u7684Brahma 4K\u56fe\u50cf\u5728\u8ff7\u5e7b\u4e4b\u65c5\u4e2d\u3002"} +{"id": "4001933", "video_name": "563afe94-d0ac-509a-b637-f8c5b7457387", "text": "\u5728\u7f8e\u56fd\uff0c\u6c49\u5821\u738b\u4e3a\u4e07\u5723\u8282\u88c5\u626e\u6210\u9ea6\u5f53\u52b3\u3002\u6d3b\u52a8\u7684\u7ec4\u7ec7\u8005\u751a\u81f3\u8fd8\u8d1f\u8d23\u4e86\u6c49\u5821\u5305\u76d2\u7684\u8bbe\u8ba1"} +{"id": "4001934", "video_name": "709dc9b4-6694-56ce-958c-c7145f212778", "text": "\u6355\u6349\u5230\u91d1\u79cb\u843d\u53f6\u5728\u6e05\u65b0\u7684\u5fae\u98ce\u4e2d\u65cb\u8f6c\u7fe9\u8df9\u7684\u8ff7\u4eba\u821e\u59ff\uff0c\u6bcf\u4e00\u7247\u7cbe\u81f4\u7684\u53f6\u7247\u90fd\u5c55"} +{"id": "4001935", "video_name": "ee1df1b3-1ab1-5144-a8da-a666272f3714", "text": "\u4e00\u6735\u73b0\u5b9e\u7684\u73ab\u7470\u4ece\u7070\u70ec\u4e2d\u751f\u957f\u3002"} +{"id": "4001936", "video_name": "029de404-d0fa-5dab-b6eb-f681efaada74", "text": "\u4e00\u4e2a\u73b0\u4ee3\u623f\u5b50\u91cc\u7684\u8c37\u4ed3\u95e8\uff0c\u5e7f\u9614\u7684\u89c6\u91ce\uff0c8k\u9ad8\u6e05\u753b\u8d28\uff0c\u903c\u771f\u3002"} +{"id": "4001937", "video_name": "ed5e725c-dc64-5164-a5c8-801d06aa979a", "text": "\u4e00\u4e2a\u4f20\u7edf\u7684\u5927\u70ae\u4ece\u975e\u65af\u57ce\u5386\u53f2\u60a0\u4e45\u7684\u57ce\u5899\u4e0a\uff0c\u5728\u5f00\u658b\u8282\u671f\u95f4\u7684\u4e00\u5ea7\u6e05\u771f\u5bfa\u9644\u8fd1\u53d1\u5c04\u3002 \n\nSource"} +{"id": "4001938", "video_name": "3611af32-6c9f-5584-a305-7471ab417d0a", "text": "\u4e00\u4e2a\u540d\u53eb\u83ab\u5c14\u5854\u7684\u7537\u5b69\u4e0e\u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7684\u8def\u98de\u63e1\u624b\u3002 \n\nSource sentence: The sun sets behind the mountains, painting the sky with shades of orange and"} +{"id": "4001939", "video_name": "71085183-6ed4-5a5b-a304-6365f4f2a49e", "text": "\u673a\u68b0\u624b\u81c2\u7537\u5b50\u60ca\u8bb6\u5730\u53d1\u73b0\u81ea\u5df1\u62e5\u6709\u8fd9\u4e9b\u673a\u68b0\u624b\u81c2\u3002 \n\nSource sentence: The Cat is Sleeping on the Couch. \n\u732b\u6b63\u5728"} +{"id": "4001940", "video_name": "329f0613-0088-5e31-8ee8-076196f4331f", "text": "\u68ee\u6797\u4e2d\u7684\u9f9f\u5144\u5f1f\u4eec\u6b63\u5728\u804a\u5173\u4e8e\u5c0f\u4e4c\u9f9f\u7684\u4e8b\u60c5\u3002"} +{"id": "4001941", "video_name": "e6989686-c1e0-53dc-b54b-b1349e998b5b", "text": "\u4e00\u53ea\u72d0\u72f8\u5728\u591c\u665a\u7a7f\u8fc7\u57ce\u5e02\u5954\u8dd1\u3002"} +{"id": "4001942", "video_name": "697699db-3fe3-54ac-8f4f-e07415725a51", "text": "\u8389\u8389\u82b1\u65f6\u95f4\u548c\u6dd8\u6c14\u7684\u5c0f\u7cbe\u7075\u76ae\u514b\u65af\u8d1d\u5c14\u4e00\u8d77\u73a9\u800d\u3002\n\u5979\u9047\u5230\u4e86\u6e29\u67d4\u7684\u72ec"} +{"id": "4001943", "video_name": "26487bf8-ee6e-5bef-b8f5-dfbd8ef4d854", "text": "\u52a8\u753b\u5361\u901a\u7247\u4e2d\uff0c\u4f60\u53ef\u4ee5\u770b\u5230\u4e00\u4e2a\u6e9c\u51b0\u8005\u5728\u624b\u673a\u4e0a\u804a\u5929\u3002"} +{"id": "4001944", "video_name": "5dce5aed-0bfe-53bb-ae51-ff619da324ed", "text": "\u4e00\u5e45\u63d2\u753b\uff0c\u5c55\u73b0\u4e00\u4e2a\u5173\u7231\u7684\u6bcd\u4eb2\u62e5\u62b1\u5979\u7684\u5b69\u5b50\uff0c\u957f\u5bbd\u6bd4\u4e3a9:16\u3002"} +{"id": "4001945", "video_name": "97ac8ee1-1572-53ff-af11-62fc1f584973", "text": "\u63a2\u7d22\u795e\u79d8\u7684\u9ed1\u6d1e\u82b1\u56ed\uff0c\u63cf\u8ff0\u5b87\u5b99\u5947\u89c2\u4e2d\u5149\u4e0e\u65f6\u95f4\u7684\u8ff7\u4eba\u4e92\u52a8\u3002"} +{"id": "4001946", "video_name": "c7ed56bc-d519-5fbe-a623-cb5111e237fb", "text": "\u4e00\u4e2a\u773c\u775b\u975e\u5e38\u660e\u4eae\u6e05\u6670\u7684\u7537\u4eba\u5fae\u7b11\u7740\u5f88\u5f00\u5fc3\uff0c\u4ed6\u65c1\u8fb9\u662f\u4e00\u4e2a\u6234\u773c\u955c\u7684\u7537\u4eba\u3002\u4e24\u4eba\u90fd\u9762\u671d\u524d\u65b9"} +{"id": "4001947", "video_name": "bf8000ff-d4f0-5714-9e9a-4031a2a57113", "text": "\u534e\u4e3a\u7684\u661f\u95ea\u6280\u672f\u5df2\u7ecf\u9065\u9065\u9886\u5148\uff0c\u4f46\u5218\u5fb7\u534e\u5927\u5e08\u5374\u6beb\u4e0d\u62c5\u5fc3\u843d\u540e\uff01\u5218\u5fb7\u534e\u771f\u662f\u4e86\u4e0d\u8d77"} +{"id": "4001948", "video_name": "a8efdf4a-e062-529f-86f7-e83ef3832ae4", "text": "\u672a\u6765\u57ce\u5e02\u4e2d\u7684\u8dd1\u9177\u8df3\u8dc3\u673a\u5668\u4eba"} +{"id": "4001949", "video_name": "2a171dde-0ae1-5e63-9e80-5456d8aa66a6", "text": "\u739b\u96c5\u548c\u4e9a\u5386\u514b\u65af\u6b63\u5728\u8ba8\u8bba\u67d0\u4e8b\u3002"} +{"id": "4001950", "video_name": "4ec9c261-bbf3-5901-826f-a5eaa0fafff4", "text": "\u4e00\u8258\u5feb\u901f\u79fb\u52a8\u7684\u8239\u4e0a\u6709\u4e00\u4e2a\u4eba\uff0c\u572860\u79d2\u768416:9\u6d77\u6d0b\u4e2d\u3002"} +{"id": "4001951", "video_name": "963fc01d-c9bc-5a97-83a1-71c6d1435e14", "text": "\u80e1\u987b\u662f\u4e00\u53ea\u559c\u6b22\u5192\u9669\u7684\u732b\uff0c\u4ed6\u63a2\u7d22\u7740\u5145\u6ee1\u6d3b\u529b\u7684\u4e1b\u6797\uff0c\u88ab\u5b83\u7684\u795e\u79d8\u6240\u5438"} +{"id": "4001952", "video_name": "9086141c-9d58-537b-8e65-dd74a687b03c", "text": "\u4e00\u4f4d\u7a7f\u7740\u665a\u793c\u670d\u3001\u624b\u6301\u9152\u676f\u7684\u4e2d\u56fd\u5973\u6027\u3002"} +{"id": "4001953", "video_name": "8ddbc80d-1cc2-5589-b63a-be28c960080f", "text": "\u4e00\u53ea\u5361\u901a\u7c73\u8001\u9f20\u89d2\u8272\u62ff\u7740\u4f1e\u8df3\u8dc3\u548c\u7ffb\u7b4b\u6597\u65f6\u5fae\u7b11\u3002"} +{"id": "4001954", "video_name": "ed30bbd2-31b5-5376-b94c-d3b1ceb89394", "text": "\u8054\u5408\u56fd\u5730\u56fe\u5206\u522b\u7a81\u51fa\u4e86\u54c8\u9a6c\u65af\u548c\u4ee5\u8272\u5217\u3002"} +{"id": "4001955", "video_name": "a65cccf9-e2ad-5f6a-afa1-55a75a6a6c0f", "text": "\u82b1\u513f\u4f46\u82b1\u74e3\u662f\u7259\u9f7f\u3002"} +{"id": "4001956", "video_name": "f136719a-1968-5ab1-909c-460d2c3e6ebd", "text": "\u52a8\u753b\u5927\u6606\u8bf4\u8bdd\uff0c\u4f7f\u7528HD8\u3002"} +{"id": "4001957", "video_name": "ee7c485a-504d-5b8d-bf4b-d888c382eb48", "text": "\u7279\u798f F350 \u5728\u68ee\u6797\u4e2d\u79fb\u52a8\u3002"} +{"id": "4001958", "video_name": "f05707af-358a-5beb-aa9c-248dad5c4336", "text": "\u5e26\u7740\u5f13\u7bad\u7684\u62c9\u59c6\u795e\uff0c\u9762\u5bb9\u6e05\u79c0\uff0c\u4e0e\u53e4\u8001\u7684\u6587\u672c\u76f8\u7b26\u3002"} +{"id": "4001959", "video_name": "775d766d-406c-5d89-823a-82a48adb80ac", "text": "\u89c6\u9891\u663e\u793a\u4e00\u4f4d\u975e\u6d32\u5973\u58eb\u5728\u5367\u5ba4\u4f7f\u7528\u624b\u673a\uff0c\u5f53\u5979\u5212\u52a8\u5c4f\u5e55\u65f6\uff0c\u80cc\u666f\u53d8\u6210\u4e86\u56fe\u4e66\u9986\u3002"} +{"id": "4001960", "video_name": "a5ae44ec-98ea-5f13-a140-fc7da1c4c0a5", "text": "\u521b\u7acb\u5df4\u57fa\u65af\u5766\u7684\u56fd\u7236\u4eec\uff1a\u8ba8\u8bba\u7a46\u7f55\u9ed8\u5fb7\u00b7\u963f\u91cc\u00b7\u771f\u7eb3\u548c\u963f\u62c9\u739b\u00b7\u4f0a\u514b\u5df4\u5c14\u5728"} +{"id": "4001961", "video_name": "22ac191c-7bff-5339-8077-3a8967efcc5c", "text": "\u6c7d\u8f66\u884c\u9a76\uff0c\u8f66\u8f6e\u8f6c\u52a8\uff0c\u80cc\u666f\u79fb\u52a8\uff0c\u6392\u6c14\u7ba1\u5192\u51fa\u70df\u96fe\uff0c\u50cf\u62c9\u529b\u8d5b\u8f66\u4e00\u6837\u8df3\u8dc3\u3002"} +{"id": "4001962", "video_name": "6521d50b-bdc6-5693-b055-99e1aebdc4fc", "text": "\u70ed\u95e8\u7684\u673a\u5668\u4ebaBob Schneider\u5f39\u5409\u4ed6\u3002"} +{"id": "4001963", "video_name": "b50fa881-c03f-598e-9807-8b66e78bf430", "text": "\u5e74\u8f7b\u7537\u5b50\u8eab\u7a7f\u9ed1\u8272\u77ed\u88e4\uff0c\u7f6e\u8eab\u4e8e\u6df1\u6d77\u4e4b\u4e2d\uff0c\u5468\u56f4\u6709\u6210\u5343\u4e0a\u4e07\u4e2a\u76f8\u540c\u7684\u7eff\u8272\u91d1\u5c5e\u95e8\uff0c\u4e0a\u9762\u523b"} +{"id": "4001964", "video_name": "0b903093-460f-51a8-b11e-760b48786003", "text": "\u590d\u53e4\u72fc\u4eba\u7535\u5f71\uff0c1960\u5e74\u4ee3\u9524\u5b50\u6050\u6016\u7247\n\nSource sentence: I am going to the supermarket to buy some groceries. \n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "4001965", "video_name": "fa5591d9-5fed-5828-bc77-7621ec9bd4ae", "text": "\u6ca1\u6709\u516c\u5f00\u8fc7\u7684\u300a\u5f3a\u5927\u7684Boosh\u300b\u7684\u753b\u9762\uff0c\u6df1\u5165\u4e1b\u6797\uff0c\u8ddf\u4e00\u4e2a\u864e\u4eba\u5728\u4e00\u8d77\u3002\u7531\u514b\u91cc\u65af\u6258\u5f17\u00b7\u8bfa\u5170"} +{"id": "4001966", "video_name": "f2644f70-9b98-5d3e-83e5-19b22eb2abbf", "text": "\u73b0\u5b9e\u751f\u6d3b\u4e2d\u50cf\u662f\u5728\u5367\u5ba4\u68b3\u5986\u53f0\u4e0a\u8df3\u821e\u7684\u5c0f\u7cbe\u7075\u4e00\u822c\u3002"} +{"id": "4001967", "video_name": "12eafb20-a2ba-57fb-887f-5a662a9e54ee", "text": "\u5564\u9152\u672a\u6765\u7684\u6837\u5b50\u4f1a\u662f\u53cc7\uff08\u73b0\u4ee3\u5b57\u4f53\uff09\u3002"} +{"id": "4001968", "video_name": "ad7016ad-1b1d-5c54-85bc-a351584003a6", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u53bb\u4e86\u4e00\u4e2a\u4ff1\u4e50\u90e8\u3002"} +{"id": "4001969", "video_name": "61cf7706-2adb-5114-b17b-f5fbfc706414", "text": "\u65af\u7279\u6f58\u00b7\u73ed\u5fb7\u62c9\u5728\u4e00\u7fa4\u5728\u5893\u5730\u4e0a\u6b22\u547c\u7684\u4eba\u4eec\u4e2d\u72c2\u821e\uff0c\u4fc4\u7f57\u65af\u6218\u4fd8\u5728\u80cc\u666f\u4e2d"} +{"id": "4001970", "video_name": "1d18e3d2-7067-5edf-a942-f07cd7fffe13", "text": "\u5feb\u901f\u7684\u667a\u80fd\u624b\u673a\u7f51\u7edc-\u9752\u6a59\u8272"} +{"id": "4001971", "video_name": "1c7a6024-46c4-5564-aa46-d4ff108d8e29", "text": "\u8428\u62c9\u548c\u9a6c\u514b\u5728\u4ed6\u4eec\u65b0\u5bb6\u91cc\u72ec\u5904\u65f6\uff0c\u4e92\u76f8\u77a5\u4e86\u4e00\u773c\uff0c\u611f\u89c9\u5230\u4e86\u4e00\u80a1\u65e0\u6cd5\u89e3\u91ca\u7684\u5b58\u5728\u3002\u6444\u50cf\u673a"} +{"id": "4001972", "video_name": "bbe5d68c-9ec7-5bf6-8c8f-bbb043a474e4", "text": "\u672a\u6765\u79d1\u5e7b\u98de\u8239\u5728\u592a\u7a7a\u4e2d\u7ff1\u7fd4\uff0c\u7559\u4e0b\u4e00\u6761\u661f\u5c18\u7684\u5c3e\u8ff9\u3002\u7535\u5f71\u822c\u76844k\u706f\u5149\u3002"} +{"id": "4001973", "video_name": "b7c9e173-f04c-5d6e-a645-776ca4dcd36b", "text": "\u67aa\u624b\u5973\u5b69\u7a7f\u8fc7\u4e00\u4e2a\u6c99\u6f20\u91ce\u897f\u57ce\u3002"} +{"id": "4001974", "video_name": "6f373018-2cb8-5af1-858d-999eb56c789f", "text": "\u4ed6\u5728\u5b89\u9759\u7684\u6811\u6797\u91cc\u6eda\u52a8\u7740\uff0c\u9047\u5230\u4e86\u88ab\u4ed6\u795e\u5947\u7684\u5149\u8292\u60ca\u53f9\u7684\u6797\u95f4\u751f\u7269\u3002\u677e\u9f20\u3001"} +{"id": "4001975", "video_name": "3db45259-5bd7-54fb-99f8-405352e6ac25", "text": "\u8c03\u67e5\u5458\u4f7f\u7528\u5e26\u6709\u76f8\u673a\u7f29\u653e\u529f\u80fd\u7684\u822a\u62cd\u6444\u5f71\u4eea\u5668\u52d8\u5bdf\u72af\u7f6a\u73b0\u573a\u3002"} +{"id": "4001976", "video_name": "0db947aa-a1d7-5650-9b9c-9a9c0634550f", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5c55\u793a\u6f5c\u6c34\u5458\u63a2\u7d22\u4e00\u8258\u6c89\u6ca1\u7684\u8239\u53ea\u6b8b\u9ab8\uff0c\u5468\u56f4\u73af\u7ed5\u7740\u4e94\u989c\u516d\u8272\u7684\u9c7c"} +{"id": "4001977", "video_name": "38d91e2d-dff5-5db5-bac0-dab63a1807bc", "text": "\u5c06\u7167\u7247\u8f6c\u6362\u6210\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u7535\u5f71\u7684\u98ce\u683c\u3002"} +{"id": "4001978", "video_name": "bbaecce6-7286-58a0-a134-7be25eab9147", "text": "\u9ed1\u6697\u7684\u7535\u5f71\u822c\u7684\u573a\u666f\uff1a\u4e00\u8f86\u6c7d\u8f66\u5728\u6865\u4e0a\u9ad8\u901f\u884c\u9a76\uff0c\u5468\u56f4\u662f\u8d5b\u535a\u670b\u514b\u5f0f\u7684\u706f\u5149\u3002"} +{"id": "4001979", "video_name": "33c65ed9-cafc-5ed6-b95a-ca4dbb12511a", "text": "\u4e00\u540d\u5b64\u7368\u7684\u7dad\u4eac\u4eba\u5728\u98a8\u66b4\u4e2d\u5212\u7740\u4e00\u8258\u5de8\u5927\u7684\u7dad\u4eac\u8239\uff0c\u5b83\u5728\u5708\u5708\u88e1\u4e0d\u65b7"} +{"id": "4001980", "video_name": "2463d1c2-df5b-54b7-9fad-fac77f364e12", "text": "\u4e00\u4e2a\u4e30\u6ee1\u76841980\u5e74\u4ee3\u7236\u4eb2\u5728\u70e7\u70e4\u4e0a\u716e\u6c49\u5821\uff0c\u7279\u5199\u955c\u5934"} +{"id": "4001981", "video_name": "57ae8bd8-09a5-59ac-a257-413475467450", "text": "\u7537\u5b69\u6234\u7740\u8033\u673a\u4eab\u53d7\u97f3\u4e50\u3002"} +{"id": "4001982", "video_name": "ada3dc2b-57a0-5079-8aa9-2e564f5fadaa", "text": "\u4e00\u4e2a\u7a7f\u7740\u9632\u62a4\u670d\u7684\u7537\u4eba\u900f\u8fc7\u5b9e\u9a8c\u5ba4\u7684\u95e8\u73bb\u7483\u89c2\u5bdf\u573a\u666f\u3002"} +{"id": "4001983", "video_name": "f628f56b-e7ca-53f0-841c-83c42d60dcf2", "text": "\u62e5\u62b1\u51ac\u5929\uff0c\u6234\u4e0a\u8212\u9002\u7684\u5e3d\u5b50\u548c\u624b\u5957\u3002"} +{"id": "4001984", "video_name": "05c12127-e6e9-5a3d-a2cc-2e166d1a897d", "text": "\u5723\u8bde\u8001\u4eba\u5750\u5728\u96ea\u6a47\u4e0a\u5e26\u7740\u793c\u7269\uff0c\u4ed6\u5fae\u7b11\u7740\uff0c\u5728\u98ce\u4e2d\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "4001985", "video_name": "4d3ef6c3-8557-5d4d-b58b-74424ae6eaf0", "text": "\u4e00\u53ea\u6f02\u4eae\u7684\u9e66\u9e49\u6b63\u5728\u98de\u7fd4\u5e76\u8bf4\u8bdd\u3002"} +{"id": "4001986", "video_name": "4a172ba3-b892-5ed8-a011-1f8e1a830279", "text": "\u53cc\u9c7c\u5ea7\u7684\u4eba\u88ab\u65e0\u9650\u795e\u79d8\u7684\u6df1\u6e0a\u6240\u5438\u5f15\u3002"} +{"id": "4001987", "video_name": "ddd9a282-c247-572c-bdb5-8a69b2071f2f", "text": "\u4e00\u4e2a\u53f2\u524d\u7684\u68ee\u6797\uff0c\u6709\u6811\u548c\u6050\u9f99\u3002\u903c\u771f\u7684\u573a\u666f\u3002"} +{"id": "4001988", "video_name": "18fcd395-5fc1-5572-9dbb-41e8ae1cc0e5", "text": "\u4e00\u4e2a\u4eba\u5750\u5728\u8fea\u6d1b\u5170\u6c7d\u8f66\u4e0a\uff0c\u5728Syntave\u8def\u4e0a\u9a7e\u9a76\u3002"} +{"id": "4001989", "video_name": "11cdd234-f544-5dcd-b961-b814df688f0c", "text": "\u7537\u4eba\u7ad9\u5728\u4e00\u4e2a\u5f88\u9ad8\u7684\u5730\u65b9\uff0c\u80cc\u5bf9\u7740\u81ea\u5df1\u7684\u6469\u6258\u8f66\uff0c\u57ce\u5e02\u5c31\u5728\u4ed6\u7684\u524d\u65b9\u3002"} +{"id": "4001990", "video_name": "a01e932e-be85-5794-9985-004aba16b2bc", "text": "\u7a7f\u7740\u7ea2\u8272\u6076\u9b54\u7d27\u8eab\u8863\u7684\u7537\u4eba\u5728\u5929\u7a7a\u4e2d\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "4001991", "video_name": "e33359d0-b567-59a7-95ac-8748abf65ca6", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u5ce1\u8c37\uff0c\u5750\u843d\u5728\u96ea\u5c71\u4e4b\u95f4\uff0c\u5728\u90a3\u91cc\uff0c\u4e00\u65b9\u519b\u961f\u5728\u95e8\u53e3\u594b\u6218\uff0c\u547c\u5524\u7740\u53e6\u4e00\u65b9\u7684"} +{"id": "4001992", "video_name": "128cf19b-1335-5f86-89b3-280f85910010", "text": "\u4e00\u4e2a\u62ff\u7740\u7c89\u8272\u72d7\u72d7\u68d2\u68d2\u7cd6\u7684\u7537\u751f\u3002"} +{"id": "4001993", "video_name": "cd4df619-95bb-5d5b-abd1-d2291ef650bd", "text": "\u82f1\u5f0f\u73ab\u7470\u82b1\u56ed\u91cc\uff0c\u9c9c\u82b1\u76db\u5f00\uff0c\u6811\u53f6\u7fe9\u7fe9\u8d77\u821e\u3002\u5728\u82b1\u56ed\u4e2d\u5fc3\u6446\u653e\u7740\u4e00\u5f20"} +{"id": "4001994", "video_name": "7d16bf60-27ad-502e-91eb-c39e3e768f74", "text": "\u4e00\u53ea\u732b\u6b63\u5728\u5ba2\u5385\u91cc\u7b49\u5f85\u5b83\u7684\u4e3b\u4eba\u56de\u5bb6\uff0c\u611f\u5230\u5b64\u72ec\u3002"} +{"id": "4001995", "video_name": "fac87b8b-4881-552e-8669-4894d06ac69c", "text": "\u4e00\u53ea\u732b\u5728\u5c71\u4e0a\u7ffb\u8ddf\u5934\u3002"} +{"id": "4001996", "video_name": "fffd0878-b42a-5860-9901-4a8e4f27e744", "text": "\u4e00\u4e2a\u5916\u661f\u725b\u4ed4\u5728\u65b0\u4e1c\u4eac\u4e00\u4e2a\u6e29\u99a8\u7684\u5496\u5561\u5e97\u91cc\u559d\u5496\u5561\u3002"} +{"id": "4001997", "video_name": "09ceed11-e98e-5fc6-8630-240a7d373cf7", "text": "\u4e00\u4e2a\u7537\u4eba\u5411\u4ed6\u7684\u5973\u670b\u53cb\u8bf7\u6c42\u67d0\u7269\u7684\u6545\u4e8b"} +{"id": "4001998", "video_name": "1951a028-2c3d-574d-bdab-d5b1a86d2bae", "text": "\u97f3\u901f\u5c0f\u5b50\u51b2\u6d6a\u5728\u6d77\u4e0a\u3002"} +{"id": "4001999", "video_name": "c45fee1a-8225-596f-8691-fe49a215e17d", "text": "\u5c0f\u7ea2\u5e3d\u62c5\u5fc3\u90a3\u53ea\u5927\u574f\u72fc\u3002"} +{"id": "5000000", "video_name": "7f51632a-06da-5252-a9a2-de7d1a33bcbf", "text": "\u767d\u732b\u5728\u98df\u7269\u4e0a\u4e92\u76f8\u6253\u67b6\u3002\n\nSource sentence: I am going to the store to buy some milk. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e00\u4e9b\u725b\u5976\u3002"} +{"id": "5000001", "video_name": "29d04c25-c398-590a-bb28-6d0bf5276c07", "text": "\u8bed\u8a00\u5b66\u535a\u58eb\u751f\u9762\u8bd5\u54a8\u8be2\u5de5\u4f5c\u3002"} +{"id": "5000002", "video_name": "d33946ca-2317-531c-be86-0746b3a3230b", "text": "\u5bc6\u96c6\u7684\u5e38\u7eff\u6811\u6797\uff0c\u5361\u901a\uff0c16\uff1a9"} +{"id": "5000003", "video_name": "02606728-1c0d-5de2-9d09-4faeaa06ed5f", "text": "\u4e00\u4e2a\u975e\u5e38\u9ad8\u7684\u5c71\uff0c\u4e00\u4e2a\u4eba\u8dc3\u4e0a\u5c71\u9876\u975e\u5e38\u5f00\u5fc3\uff0c\u5176\u4ed6\u4eba\u5219\u5728\u8270\u96be\u5730\u6500\u722c\u5c71\u5cf0\u3002"} +{"id": "5000004", "video_name": "af10025a-805a-5a23-bd3d-681af544c9e5", "text": "\u52a8\u6f2b\u5973\u5b69\u8df3\u821e\uff0c\u7a7f\u7740\u98d8\u9038\u7684\u88d9\u5b50\uff0c\u50cf\u82ad\u857e\u821e\u4e00\u6837\u4f18\u7f8e\u7684\u821e\u8e48\uff0c\u98d8\u9038\u7684\u5934\u53d1"} +{"id": "5000005", "video_name": "50559254-1428-5801-b05b-b6e26ffad719", "text": "\u9ad8\u54c1\u8d28\uff0c8K\u8d85\u9ad8\u6e05\uff0c16:9\u6bd4\u4f8b\uff0c\u9ad8\u5ea6\u7ec6\u8282\uff0c\u6770\u4f5c\uff0c\u52a8\u6f2b\u98ce\u683c\u7684\u6570\u5b57\u63d2\u753b\uff0c\u5979\u7684\u6570\u5b57\u52a8\u6f2b\u7ed8\u753b\uff0c"} +{"id": "5000006", "video_name": "050f0731-7113-542e-bdd1-43ebf499e12d", "text": "\u9ad8\u5854\u5d29\u584c\u7206\u70b8\u3002\u4fe1\u606f\uff1a\u81ea\u6740\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000007", "video_name": "36fa09cc-e6fd-55bd-b231-a6acefaa213d", "text": "\u53e4\u8001\u7684\u6728\u8239\uff0c\u5728\u7535\u5f71\u822c\u7684\u89c6\u91ce\u4e2d\uff0c\u968f\u7740\u6ce2\u6d6a\u649e\u51fb\u663e\u5f97\u5f15\u4eba\u6ce8\u76ee\u3002\u5411\u524d\u884c\u9a76\uff0c\u9634\u98ce\u9635"} +{"id": "5000008", "video_name": "f6df59dc-8d01-56ed-b6a3-74f7646ee762", "text": "\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\u91cc\uff0c\u4e09\u53ea\u5927\u767d\u9e45\u5728\u6de1\u7eff\u8272\u7684\u6c34\u4e2d\u6e38\u6cf3\u3002\u5176\u4e2d\u4e00\u53ea\u4ef0\u671b\u7740\uff0c\u6e38\u52a8\u7740\uff0c"} +{"id": "5000009", "video_name": "c7479b8f-3b45-593b-b42a-5bdfe4f291cd", "text": "\u6d77\u6d0b\u4e2d\u53d1\u5149\u7684\u9c7f\u9c7c\u548c\u6c34\u6bcd\u7684\u8d85\u73b0\u5b9e\u89c6\u9891"} +{"id": "5000010", "video_name": "036d8211-260c-554c-8053-76cd8b0b1143", "text": "\u6930\u6811\u548c\u767d\u8272\u6c99\u6ee9\u4e0a\u7684\u5929\u5802\u5c9b\u65e5\u51fa"} +{"id": "5000011", "video_name": "55369bed-489b-5218-9d1c-e1c1bb3e5c5a", "text": "\u6d77\u6ee9\u522b\u5885\uff0c\u4fe1\u606f\uff1a\u9152\u5e97\u3002"} +{"id": "5000012", "video_name": "12d9a761-f264-5788-81a4-8d7009cd1f8c", "text": "\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u5954\u8dd1\u7684\u89c6\u9891"} +{"id": "5000013", "video_name": "ad149b91-04f8-5ded-b2bf-b6d262129e6a", "text": "\u5723\u8bde\u8001\u4eba\u559d\u7740\u96c0\u5de2\u5496\u5561\u75b2\u5026\u7684\u89c6\u9891\u3002"} +{"id": "5000014", "video_name": "16226cdd-d090-5dbc-a636-9064e9d1ab21", "text": "\u4e00\u4e2a\u8ff7\u5931\u5728\u5de5\u5382\u91cc\u7684\u7537\u4eba\u7684\u5f55\u50cf\u88ab\u53d1\u73b0\u4e86\u3002"} +{"id": "5000015", "video_name": "9a87e924-e257-542f-9462-5898f5a7bf01", "text": "TikTok\u548cInstagram\u793e\u4ea4\u5a92\u4f53\uff0c\u5173\u6ce8\u8005\u3001\u70b9\u8d5e\u548c\u6d4f\u89c8\u91cf\u5171\u4eab\u5e7f\u544a\u3002"} +{"id": "5000016", "video_name": "0afe7194-1ad5-55df-8d5c-043194516328", "text": "\u5728\u7f57\u9a6c\u6d6a\u6f2b\u7684\u665a\u9910\u4e0a\uff0c\u4e00\u5bf9\u60c5\u4fa3\u6b63\u5728\u8ba2\u5a5a\u3002\u573a\u666f\u8bbe\u5b9a\u5728\u4e00\u4e2a\u4f18\u96c5\u7684\u5ba4\u5916\u9910\u5385\uff0c\u53ef\u4ee5\u770b\u5230"} +{"id": "5000017", "video_name": "12f8c0ad-daf8-52ab-a2c9-68030b4cc835", "text": "\u4e00\u4e2a\u7537\u751f\u5728\u7530\u91ce\u4e0a\u8d70\u7740\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "5000018", "video_name": "1c50f37b-0388-5443-93a7-9fbd58b99a9d", "text": "\u4e00\u4e2a\u6234\u5934\u76d4\u7684\u7537\u4eba\u5728\u84b8\u6c7d\u6851\u62ff\u623f\u91cc\u8dcc\u5012\u4e86\u3002"} +{"id": "5000019", "video_name": "b9fd9ce5-e269-542c-adc8-842226d38d30", "text": "\u8ff7\u5e7b\u66fc\u9640\u7f57\u5faa\u73af\u827e\u5229\u514b\u65af\u00b7\u683c\u96f7\u827a\u672f\u5faa\u73af\u8ff7\u5e7b\u3002"} +{"id": "5000020", "video_name": "be396097-7895-5c44-a2e0-93d73411075a", "text": "\u4e00\u4e2a\u62ff\u7740\u6c34\u58f6\u7684\u5973\u5b69\u5728\u8349\u5730\u4e0a\u8d70\u3002"} +{"id": "5000021", "video_name": "b084c997-926b-5db6-9a89-3c781ace2da9", "text": "\u4e00\u4f4d\u8ff7\u4eba\u7684\u6a21\u7279\u5728\u8fc8\u963f\u5bc6\u8857\u5934\u5954\u8dd1\uff0c\u708e\u70ed\u7684\u5929\u6c14\u8ba9\u4eba\u7a92\u606f\uff0c\u7167\u7247\u975e\u5e38\u771f\u5b9e\u3002"} +{"id": "5000022", "video_name": "3aaa88e2-fb93-5d8c-b431-2c789dc4a40a", "text": "\u65f6\u4ee3\u5e7f\u573a\u6709\u6c7d\u8f66\u98de\u9a70\u548c\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u3002"} +{"id": "5000023", "video_name": "3eaa2621-21f7-5439-8b5b-03ad7a93ff69", "text": "Bud\u56de\u5230\u6751\u5e84\uff0c\u4e0e\u6751\u6c11\u5206\u4eab\u4ed6\u7684\u7ecf\u5386\u7684\u5f55\u50cf\u3002"} +{"id": "5000024", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "\u559d\u7740\u51b0\u51b7\u7684\u5564\u9152\u7684\u5e74\u8f7b\u4eba\uff0c\u65e0\u610f\u4e2d\u649e\u5230\u4e86\u4e00\u645e\u5564\u9152\uff0c\u7ed3\u679c\u78b0\u5230\u4e86\u4e00\u8f86\u8f66\u3002"} +{"id": "5000025", "video_name": "f8735108-6041-510d-bfd3-9005e96d11e5", "text": "\u4e3b\u795e\u6e7f\u5a46\u5728\u300a\u6d77\u738b\u300b\u7684\u6c34\u4f53\u4e2d\u3002"} +{"id": "5000026", "video_name": "aa60ee1a-bd73-5b60-8c49-9265faee6d01", "text": "\u8fdc\u5904\uff0c\u684c\u5b50\u4e0a\u76d6\u7740\u4e00\u5757\u5e03\u7684\u80a0\u5b50\u3002"} +{"id": "5000027", "video_name": "5e3169dc-d840-5a14-81a3-bba57a226dfc", "text": "\u4e00\u4efd\u5723\u8bde\u7248\u7684\u6930\u6d46\u996d\uff0c\u5f53\u4e00\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u7ed9\u51fa\u8bc4\u5206\u3002"} +{"id": "5000028", "video_name": "948530a8-519c-54fa-ad27-9511f1aac49a", "text": "\u4e00\u4e2a\u5e2e\u6d3e\u5934\u76ee\u6b63\u5728\u4e3a\u6210\u5458\u5f00\u4f1a\u3002\u51e0\u540d\u4fdd\u9556\u7ad9\u5728\u8eab\u540e\uff0c\u65c1\u8fb9\u7ad9\u7740\u4e00\u4e9b\u62e5\u6709\u91d1\u53d1\u84dd\u773c\u7684\u7f8e\u5973\u3002"} +{"id": "5000029", "video_name": "0be6821d-5137-53c7-b373-7b609dd597f2", "text": "\u5361\u901a\u76ae\u514b\u65af\u7532\u9f99\uff0c\u7eaf\u8272\u80cc\u666f\uff0c\u53cb\u597d\u3001\u5fae\u7b11\u3001\u6709\u8da3\u3001\u73b0\u4ee3\u3001\u5145\u6ee1\u6d3b\u529b\u7684\u989c\u8272\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u8d85"} +{"id": "5000030", "video_name": "d43a4933-c54c-5686-a9a7-f58bad13e08c", "text": "\u52a0\u5c14\u5404\u7b54\u5e02\u573a\u65e9\u4e0a\u5f00\u95e8\uff0c\u5e97\u4e3b\u4eec\u5728\u4e92\u76f8\u8ba8\u8bba\u3002"} +{"id": "5000031", "video_name": "2b6442f5-989d-51af-805c-f0f15c103668", "text": "\u7167\u7247\u7684\u80cc\u666f\u4f9d\u65e7\u660e\u4eae\uff0c\u7167\u7247\u4e2d\u7684\u5c0f\u732b\u5f20\u7740\u5634\u5df4\u8bf4\u8bdd\u3002"} +{"id": "5000032", "video_name": "30d4f2e1-0a4f-5d0f-a976-a63e51552bd0", "text": "\u5b87\u5b99\u521b\u9020\u768410\u79d2\u9ad8\u6e05\u89c6\u9891"} +{"id": "5000033", "video_name": "d2bc6a14-7508-59ad-a392-ec51931df1c1", "text": "\u5728\u6d77\u6ee9\u4e0a\u624b\u4e2d\u6293\u7740\u8774\u8776\u7684\u60c5\u4fa3"} +{"id": "5000034", "video_name": "2aab2d07-be70-5046-a34a-a4eb7e634056", "text": "\u517d\u4eba\u548c\u54e5\u5e03\u6797\u624b\u6301\u5251\u3002"} +{"id": "5000035", "video_name": "47108b83-9679-5e0e-b267-0ca00e262dd8", "text": "\u52a8\u6f2b\u7537\u5b69\u505a\u51fa\u963f\u563f\u8138\u3002"} +{"id": "5000036", "video_name": "ecbe188c-e7b9-5e95-9495-d35f3d4e0439", "text": "\u9ed1\u8272\u798f\u7279Flex\u6c7d\u8f66\u8d34\u7740\u767d\u8272\u8d5b\u8f66\u8d34\u7eb8\uff0c\u9a76\u5411\u5c71\u9876\uff0c\u5728\u6807\u5fd7\u6027\u7684\u57c3\u5c14\u5e15\u7d22\u65e5\u843d\u4e2d\uff0c\u4e00\u67b6\u5c0fD"} +{"id": "5000037", "video_name": "3c46bb5b-56a4-5639-8a91-9cb4b19df735", "text": "\u4e00\u5e45\u7a7a\u4e2d\u4fef\u77b0\u7684\u753b\u9762\uff0c\u63cf\u7ed8\u4e86\u4e00\u5ea7\u4f4d\u4e8e\u504f\u8fdc\u6751\u5e84\u7684\u8001\u6728\u5c4b\uff0c\u4e00\u6761\u957f\u957f\u7684\u6811\u6797\u5c0f\u9053\u901a"} +{"id": "5000038", "video_name": "d5c82e51-cba8-52d4-b940-211ef2f6a690", "text": "G Man\u6ed1\u6b65\u821e\u8df3\u7740\u51b2\u5411Titan\u7535\u89c6\u53f0\u7684\u5de5\u4f5c\u4eba\u5458\u3002"} +{"id": "5000039", "video_name": "06979c9b-15cd-5d04-aae2-88382b826877", "text": "\u9cc4\u9c7c\u795e\u7d22\u8d1d\u514b\u5728\u6d41\u5a92\u4f53\u5de5\u4f5c\u5ba4\u73a9\u89c6\u9891\u6e38\u620f\uff0c\u4ee5\u4e09\u7ef4\u6e32\u67d3\u7684\u5f62\u5f0f\u5c55\u73b0\u3002"} +{"id": "5000040", "video_name": "c5e9d193-c979-5495-81df-d7e8e19ff2d1", "text": "\u675c\u7279\u5c14\u7279\u548c\u66fc\u5c3c\u00b7\u5e15\u594e\u5965\u5728\u62f3\u51fb\u6bd4\u8d5b\u4e2d\u640f\u6597\u3002"} +{"id": "5000041", "video_name": "c6998875-425a-5cee-9068-b3165ff38ad0", "text": "\u7528\u4e8e\u552e\u5356\u513f\u7ae5\u81ea\u884c\u8f66\u7684\u8d85\u903c\u771f\u89c6\u9891\u5e7f\u544a\u3002"} +{"id": "5000042", "video_name": "44b63d6b-5043-52f9-901a-36686de6b5db", "text": "\u5728\u5723\u8bde\u524d\u5915\uff0c\u6709\u4e00\u53ea\u72d0\u72f8\u7a7f\u8fc7\u7ebd\u7ea6\u7684\u8857\u9053\u3002"} +{"id": "5000043", "video_name": "ed2d31c2-e483-5a51-afe8-ece0aa9d84bd", "text": "\u4e00\u4f4d20\u591a\u5c81\u7684\u62c9\u4e01\u88d4\u5973\u6027\u6a21\u7279\u7a7f\u7740\u900f\u660e\u7684\u84dd\u8272\u670d\u88c5\uff0c\u4f69\u6234\u7740\u7528\u73af\u6c27\u6811\u8102\u5236\u6210\u7684\u6728"} +{"id": "5000044", "video_name": "83a9e87e-2dba-5364-a78d-c6087f5407e1", "text": "\u4f8d\u7ad9\u5728\u4e00\u53ea\u767d\u9f99\u9762\u524d\uff0c\u80cc\u666f\u662f\u6d77\u6ee9\uff0c\u84dd\u8272\u7684\u767e\u4e8b\u53ef\u4e50\u6f02\u6d6e\u5728\u4e91\u7aef\uff0c\u9ad8\u8f9b\u70f7\u503c\u6e32"} +{"id": "5000045", "video_name": "aa130676-d413-580c-b8c2-c61dd22560b0", "text": "\u4e00\u4e2a\u7537\u5b69\u624b\u91cc\u63e1\u7740\u9488\u7ebf\u8d70\u8def\u3002"} +{"id": "5000046", "video_name": "a7216525-0566-5117-a7dd-dfa2cdc9e9bc", "text": "\u4e00\u53ea\u6591\u9a6c\uff0c\u5b83\u7684\u6761\u7eb9\u6b63\u5728\u6d88\u5931\u3002"} +{"id": "5000047", "video_name": "92a914a7-a2d5-5f38-8f75-35dbf0aca094", "text": "\u5929\u4f7f\u5347\u5929\uff0c\u65f6\u95f4\u6d41\u901d\uff0c\u7f29\u653e\uff0c\u5149\u4eae\uff0c\u7535\u5f71\u822c\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "5000048", "video_name": "eebf4557-4160-5677-8d91-346bc4036041", "text": "\u5bfa\u5e99\u548c\u5468\u56f4\u7740\u706b\u4e86\u3002\u4fe1\u606f\uff1a\u542f\u793a\u5f55\u3002"} +{"id": "5000049", "video_name": "8ef6e575-fe77-51d4-bd49-3c538f2d80de", "text": "\u4e00\u4e2a\u56fe\u50cf\u62fc\u8d34\uff0c\u6bcf\u4e2a\u56fe\u50cf\u90fd\u63cf\u7ed8\u4e86\u4e0d\u540c\u7c7b\u578b\u7684\u4fe1\u4ef0\u98de\u8dc3\u3002\u4ece\u8df3\u51fa\u98de\u673a\u5230\u5f00\u59cb\u65b0\u7684\u804c\u4e1a\uff0c\u98ce\u683c\u548c"} +{"id": "5000050", "video_name": "3c680849-43cb-5994-80e9-fe1d8ab99208", "text": "\u5e03\u8fbe\u62c9\u5bab\u5728\u96ea\u5c71\u8349\u539f\u4e0a\u7684\u7f8e\u666f\u3002"} +{"id": "5000051", "video_name": "89a1dfae-6f78-5254-a816-bcafa06cc7f8", "text": "\u5496\u5561\u5e97\u91cc\u4e0b\u7740\u96e8\uff0c\u52a8\u6f2b\u91cc\u5145\u6ee1\u60b2\u4f24\u7684\u97f3\u4e50\u3002"} +{"id": "5000052", "video_name": "f805e06e-6037-5bbd-8131-d83fc272c453", "text": "\u6c34\u4e0b\u7684\u6728\u5236\u5c0f\u5c4b\uff0c\u6d77\u6d0b\u6df1\u5904\uff0c\u51fa\u73b0\u4e86\u4e00\u53ea\u6709\u56db\u4e2a\u5934\u7684\u5e7b\u517d\u3002"} +{"id": "5000053", "video_name": "0251d0e9-6663-5017-a247-05bf997ab84e", "text": "\u706b\u7130\u56f4\u7ed5\u7740\u5e7d\u7075\u9a91\u58eb\u8df3\u821e\u3002"} +{"id": "5000054", "video_name": "91772b76-315a-500a-8d30-464f3178cdfc", "text": "\"\u8759\u8760\u4fa0\u7684\u623f\u5b50\uff0c\u7f57\u5bbe\u4eb2\u543b\u963f\u5c14\u5f17\u96f7\u5fb7\u3002\""} +{"id": "5000055", "video_name": "8e2aa6a0-2142-5815-8a37-9b47c8536fc3", "text": "\u5e74\u8f7b\u7684\u83f2\u5fb7\u5c14\u88ab\u5224\u590415\u5e74\u76d1\u7981\u3002"} +{"id": "5000056", "video_name": "84118574-6dfd-5cde-950f-0230d8718d0a", "text": "\u65b0\u897f\u5170\u662f\u4e00\u4e2a\u62e5\u6709\u56db\u5343\u4e07\u4eba\u53e3\u548c\u5927\u7ea6\u4e03\u5343\u4e07\u53ea\u7ef5\u7f8a\u7684\u56fd\u5bb6\u3002"} +{"id": "5000057", "video_name": "35e00b34-e98e-5547-ab63-bb6759fc7dd2", "text": "\u5979\u8bf4\u94bb\u77f3\u975e\u5e38\u5a07\u8d35\uff0c\u4e0d\u5e94\u8be5\u66b4\u9732\u5728\u7a7a\u6c14\u4e2d\u3002"} +{"id": "5000058", "video_name": "0576e618-b8d8-5dd9-bf64-756ee2a0a5b7", "text": "\u8d77\u521d\u6709\u9053\uff0c\u9053\u4e0e\u795e\u540c\u5728\uff0c\u9053\u5c31\u662f\u795e\u3002\u56e0\u4e3a\u795e\u7231\u4e16\u4eba\uff0c\u751a\u81f3\u5c06\u4ed6\u7684\u72ec\u751f\u5b50\u8d50\u7ed9\u4ed6\u4eec\uff0c\u53eb\u4e00\u5207"} +{"id": "5000059", "video_name": "5a58c792-8c0b-5691-9ae8-f11f4d53100e", "text": "\u94b1\u5305\u762a\u4e86\uff0c\u6162\u52a8\u4f5c\uff0c\u6700\u7cdf\u7cd5\u7684\u5206\u8fa8\u7387\u3002"} +{"id": "5000060", "video_name": "9c11b838-75a7-58ef-8fa6-69eb18c3b43b", "text": "\u4e00\u53ea\u5c0f\u751f\u6c14\u7684\u732b\u5750\u5728Anne Stokes\u7684\u753b\u4f5c\u4e0a\uff0c\u8fd9\u5e45\u753b\u51fa\u81eacgsociety\uff0c\u98ce\u683c\u5c5e\u4e8e\u6d41\u884c\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u767d\u8272\u80cc\u666f"} +{"id": "5000061", "video_name": "44210f98-1311-5774-96ab-996d552a7581", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5750\u5728\u516c\u56ed\u91cc\u3002"} +{"id": "5000062", "video_name": "565db9cb-d8a0-593f-a567-97f5e7d43aa5", "text": "\u827e\u62c9\u3001\u5965\u5229\u5f17\u548c\u739b\u96c5\u7a7f\u4e0a\u8282\u65e5\u670d\u88c5\uff0c\u624b\u62ff\u7cd6\u6756\uff0c\u50cf\u4fa6\u63a2\u653e\u5927\u955c\u4e00\u6837\u68c0\u67e5\u7740\u8584\u8377"} +{"id": "5000063", "video_name": "a182e934-f172-5a36-bca2-4f547dfac220", "text": "\u4e00\u4e2a\u7537\u5b69\u7ad9\u5728\u9b45\u529b\u5854\u524d\u9762\u3002"} +{"id": "5000064", "video_name": "db7840b1-d160-5a18-80d8-35e50655696d", "text": "\u4e00\u6bb5\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u4ece20\u5c81\u5f00\u59cb\u53d8\u8001\uff0c\u4e00\u76f4\u523040\u5c81\uff0c\u800c\u5979\u7684\u65e5\u5e38\u751f\u6d3b\u7f3a\u4e4f\u8fd0\u52a8\uff0c\u6700\u7ec8\u5979\u88ab\u56f0\u5728"} +{"id": "5000065", "video_name": "b718a52a-db95-55cf-97df-07af11c480a6", "text": "\u4e00\u4f4d\u6d41\u884c\u97f3\u4e50\u7c89\u4e1d\u5973\u5b69\u5728\u5e8a\u4e0a\u542c\u5979\u6700\u559c\u6b22\u7684\u5973\u6b4c\u624b\u7684\u89c6\u9891\u3002"} +{"id": "5000066", "video_name": "3c511799-6cc1-53e1-92ca-82ca3c29015c", "text": "\u4e24\u4e2a\u5e74\u8f7b\u5973\u5b69\u5728\u5b66\u6821\u8d70\u5eca\u4e0a\u8d70\u7740\uff0c\u5f7c\u6b64\u5c55\u793a\u7740\u5b66\u6821\u62a5\u544a\u3002"} +{"id": "5000067", "video_name": "ceb4631d-da71-5554-8059-e449f9ac4ae7", "text": "\u4e00\u67b6\u5b8c\u5168\u767d\u8272\u7684\u6ce2\u97f3737\u98de\u673a\u5728\u98de\u884c\u4e2d\u7a81\u7136\u5411\u4e0b\u4fef\u51b2\u3002"} +{"id": "5000068", "video_name": "58af9488-6d62-57d1-970f-67ee6c742505", "text": "\u795e\u5723\u7684\u7687\u5bb6\u7ba1\u5f26\u4e50\u56e2\u6f14\u594f\u7740\u4e00\u66f2\u6b7b\u4ea1\u7684\u4ea4\u54cd\u4e50\u3002"} +{"id": "5000069", "video_name": "cf9bfd88-5f21-5796-8a1c-3c4e19f2b37b", "text": "\u8fd9\u7247\u68ee\u6797\u88ab\u704c\u6728\u548c\u704c\u6728\u4e1b\u5305\u56f4\u7740\u3002"} +{"id": "5000070", "video_name": "39c5ae7c-1158-5f83-b305-a5a8041ca8b0", "text": "\u591c\u7a7a\u4e2d\u98d8\u843d\u7684\u96ea\u82b1\u3002"} +{"id": "5000071", "video_name": "91526148-0e36-5423-bcb3-84c1eff98702", "text": "\u4e00\u8f86\u8ffd\u9010\u7684\u8d27\u8f66\u649e\u4e0a\u4e86\u4e00\u540d\u81ea\u884c\u8f66\u9a91\u624b\u3002\u7537\u5b50\u548c\u81ea\u884c\u8f66\u90fd\u5728\u7a7a\u4e2d\u98de\u8d77\u6765\u3002\u8fd9\u573a\u666f\u597d\u50cf\u7535\u5f71\u3002"} +{"id": "5000072", "video_name": "35be3f83-b830-53e8-9fd3-b1ba193679da", "text": "\u6700\u540e\u7684\u6c14\u5b97\u5e08\u5e26\u7740\u7535\u5b50\u690d\u5165\u7269\u3002"} +{"id": "5000073", "video_name": "e4e9038c-33e8-5249-8859-ae755e17d94d", "text": "\u5728\u9633\u5149\u4e0b\u7684\u6d77\u6ee9\u4e0a\uff0c\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u5a74\u513f\uff0c\u914d\u4ee5\u9ad8\u6e05\u6670\u5ea6\u548c\u9c9c\u8273\u7684\u8272\u5f69\u7684\u5e7f\u89d2\u7535\u5f71\u955c\u5934\u3002"} +{"id": "5000074", "video_name": "bd9b8349-081d-5728-a7fd-ae8220992a36", "text": "\u9f99\u732b\u624b\u6301\u4f1e\u5728\u65e7\u91d1\u5c71\u91d1\u95e8\u5927\u6865\u4e0a\u6f2b\u6b65\n\nSource sentence: I like to drink coffee with milk and sugar.\n\u6211\u559c\u6b22\u52a0\u725b\u5976\u548c"} +{"id": "5000075", "video_name": "e7e389d5-6c59-583a-ad51-46201ef936f7", "text": "3D\u52a8\u753b\u6240\u6709\u5c0f\u52a8\u7269\u5954\u8dd1\u3002"} +{"id": "5000076", "video_name": "27e6b864-8666-5606-8a8e-aeeaadb78c92", "text": "\u4e00\u4e2a\u8d85\u73b0\u5b9e\u7684\u666f\u8c61\uff0c\u5145\u6ee1\u4e86\u9c9c\u8273\u7684\u989c\u8272\uff0c\u6709\u4e00\u7247\u6709\u7740\u8272\u5f69\u9c9c\u8273\u7684\u5de8\u6811\u68ee\u6797\uff0c\u4e00\u4e2a\u8272"} +{"id": "5000077", "video_name": "fa2792bc-3381-57bd-b3d2-8bfa3ed14416", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u4ece\u300a\u5821\u5792\u4e4b\u591c\u300b\u7684\u6218\u6597\u5df4\u58eb\u4e0a\u8df3\u4e0b\u3002"} +{"id": "5000078", "video_name": "c9742a2b-8547-55bd-8e46-1f9e0d6d801f", "text": "\u4e00\u6bb5\u4ee5\u7eda\u4e3d\u8272\u8c03\u4e3a\u4e3b\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e86\u73bb\u7483\u73ab\u7470\u82b1\u5468\u56f4\u96e8\u6ef4\u7684\u7f8e\u4e3d\u3002"} +{"id": "5000079", "video_name": "795142b8-22e1-5f52-ac3c-6ac468dac7af", "text": "\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u7684\u9e1f\u7c7b4k\u903c\u771f\u89c6\u56fe\u3002"} +{"id": "5000080", "video_name": "7d04e4be-ec28-52b7-a9ec-caf100898d09", "text": "\u5728\u82b1\u56ed\u91cc\u7528\u82b1\u5199\u4e0b\u5b57\u6bcd y\u3002"} +{"id": "5000081", "video_name": "545afc05-7923-5b85-b634-8988955ad2a2", "text": "\u5728\u6c34\u4e0b\u7684\u5fb7\u74e6\u62c9\u5361\u7eb3\u52a0\u5c14\u4e0e\u514b\u91cc\u5e0c\u7eb3\u4e3b\u7684\u5b58\u5728\u3002"} +{"id": "5000082", "video_name": "57f70422-0805-5e0c-80a8-f5600d478900", "text": "\u4e00\u5f20\u5b81\u9759\u7684\u68ee\u6797\u98ce\u666f\u7167\u7247\uff0c\u9633\u5149\u7a7f\u8fc7\u6811\u6728\uff0c\u5728\u753b\u9762\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u7537\u4eba\u3002\n\nSource sentence: The restaurant serves a variety of delicious dishes from"} +{"id": "5000083", "video_name": "6638712b-813c-5930-80b9-cfdb740fec3b", "text": "\u660e\u4eae\u7684\u6a59\u8272\u9c7c\u5728\u592a\u7a7a\u4e2d\u6e38\u6cf3\uff0c\u661f\u4e91\u80cc\u666f\uff0c\u5e7f\u89d2\u6444\u5f71\u3002"} +{"id": "5000084", "video_name": "25bb8fd2-9351-5870-b975-5fafa916af7d", "text": "\u73ed\u9ad8\u672c\u5730\u706b\u8f66\u6ee1\u8f7d\u4e58\u5ba2\u5373\u5c06\u62b5\u8fbe\u9521\u5c14\u8fbe\u7ad9\u3002"} +{"id": "5000085", "video_name": "24d121fe-52ce-57dd-8433-444699b61529", "text": "\u573a\u666f\u4e3a1980x1080\uff0c\u753b\u9762\u4e2d\u592e\u60ac\u6d6e\u7740\u4e00\u4e2a\u5f00\u7740\u7684\u7a97\u6846\uff08\u5927\u5c0f\u4e3a560x560\uff09\uff0c\u7a97\u5e18\u88ab\u98ce\u5439\u52a8\uff0c\u7a97"} +{"id": "5000086", "video_name": "e702c1cf-79bc-5286-898f-2dbf89658c0d", "text": "\u7ecf\u5178\u6c49\u5821\u5728\u767d\u8272\u80cc\u666f\u4e0a\n\nSource sentence: Can you recommend a good restaurant nearby? \n\u4f60\u80fd\u63a8\u8350\u9644\u8fd1\u597d\u7684\u9910\u5385\u5417\uff1f"} +{"id": "5000087", "video_name": "62d0dab2-9d58-52f3-b937-e0bb3e865ab3", "text": "\u4f7f\u7528\u65e0\u9650\u91cd\u590d\u548c\u7ea7\u8054\u7684\u5206\u5f62\u548c\u4e07\u82b1\u7b52\u6548\u679c\u3002\u968f\u7740\u65f6\u95f4\u63a8\u79fb\uff0c\u4f7f\u53c2\u6570\u52a8\u753b\u5316\u3002"} +{"id": "5000088", "video_name": "c66783a7-227a-5061-93c3-4d6d653dc3e9", "text": "\u4e00\u682a\u5065\u5eb7\u7684\u8fa3\u6912\u690d\u7269\uff0c\u5927\u7ea6\u4e24\u82f1\u5c3a\u9ad8\uff0c\u751f\u957f\u5728\u88c5\u6709\u4e30\u5bcc\u6709\u673a\u571f\u58e4\u7684\u7ec7\u7269\u76c6\u4e2d\uff0c\u82b1"} +{"id": "5000089", "video_name": "1cdfab43-99bb-52e3-9ba4-0948861e8330", "text": "\u4e00\u7fa4\u5b69\u5b50\u6b63\u5728\u68ee\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "5000090", "video_name": "98bf772b-8b8f-569e-9dc0-3c9088dccb7d", "text": "\u821e\u4f1a\u7687\u540e\u5632\u7b11\u90a3\u4e2a\u4e66\u5446\u5b50\u827a\u672f\u751f\uff0c\u50cf\u7ae5\u8bdd\u4e66\u63d2\u56fe\u4e00\u6837\u7684\u56fe\u753b\uff0c\u7ebf\u63cf\uff0c\u98ce\u683c\u5316\u3002"} +{"id": "5000091", "video_name": "fd837b73-2a59-5949-addb-106f0ce17267", "text": "of the majestic mountains in front.\n\nTranslation: \u7fe0\u7eff\u7684\u68ee\u6797\u4f5c\u4e3a\u80cc\u666f\uff0c\u5e7f\u89d2\u955c\u5934\u5c55\u73b0\u773c\u524d\u58ee\u4e3d\u7684\u5c71\u8109\u3002"} +{"id": "5000092", "video_name": "30a46472-23c1-5670-8b66-97d62e338b39", "text": "\u5728\u591c\u95f4\u585e\u8f66\u7684\u4eba\u544a\u8bc9\u4f60\u4ed6\u4eec\u5bf9\u4ea4\u901a\u8fc7\u654f\uff0c\u540c\u65f6\u6253\u55b7\u568f\u3002"} +{"id": "5000093", "video_name": "553037bd-9b1a-5fd2-8213-b42360b6979b", "text": "\u4e00\u4e2a\u7d2b\u8272\u773c\u775b\u7684\u7537\u5b69\u4ee5\u52a8\u6f2b\u7684\u65b9\u5f0f\u7741\u5f00\u773c\u775b\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "5000094", "video_name": "1cf56bae-531c-555f-bf9a-230d2c08d0f6", "text": "360\u5ea6\u65cb\u8f6c\u7684\u76f8\u673a\u8d8a\u8fc7\u5c71\u8109\u3002"} +{"id": "5000095", "video_name": "b44a412b-2ad2-5f60-a8aa-06d5434ee321", "text": "\u4e00\u5e45\u68ee\u6797\u5c71\u666f\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09 FABTECH"} +{"id": "5000096", "video_name": "c3ed6c84-8877-5bef-8ba1-84a9d0b2dc64", "text": "\u4e00\u500b\u672b\u65e5\u5834\u666f\uff0c\u514b\u52de\u65af\u00b7\u65bd\u74e6\u5e03\u7a7f\u8457\u52d5\u4f5c\u73a9\u5177\u670d\u88dd\uff0c\u4fdd\u885b\u4e16\u754c\u62b5\u79a6\u5916\u661f\u4eba\u3002"} +{"id": "5000097", "video_name": "9a8ad34b-a394-55b3-8d60-5f56c92bb224", "text": "\u4e00\u5bf9\u592b\u5987\u5728\u5b81\u9759\u7684\u6e56\u4e0a\u5212\u7740\u72ec\u6728\u821f\uff0c\u5e26\u7740\u4e00\u53ea\u91d1\u6bdb\u730e\u72ac\u3002"} +{"id": "5000098", "video_name": "504676e7-8c9b-59a1-b8f5-bef2989fe5ed", "text": "\u8718\u86db\u4fa0\u4e0e\u8759\u8760\u4fa0\u5728\u5e03\u91cc\u6770\u7684\u6253\u6597\u573a\u9762"} +{"id": "5000099", "video_name": "0e5c5db8-569e-5d09-a8fb-1638b7951cdf", "text": "\u8d85\u7ea7\u82f1\u96c4\u5728\u53e6\u4e00\u4e2a\u661f\u7403\u3002\u4fe1\u606f\uff1a\u6211\u7231Miroslava\u3002"} +{"id": "5000100", "video_name": "3292c255-4889-592e-8e35-93b26cbdff41", "text": "\u4e2d\u666f\uff0c\u4e00\u4e2a\u5973\u4eba\u7684\u9ed1\u767d\u526a\u5f71\u5f39\u594f\u7740\u94a2\u7434\uff0c\u6df1\u7ea2\u8272\u7684\u706f\u5149\u95f4\u6b47\u6027\u5730\u7167\u4eae\u5979\uff0c70\u6beb\u7c73"} +{"id": "5000101", "video_name": "c79dd383-433a-599d-acfc-6b7d76745371", "text": "20\u5347\u5ba0\u7269\u74f6\u88c5\u6c34\u5728\u6eaa\u6d41\u4e2d\u6b22\u5feb\u5730\u8df3\u821e\u3002"} +{"id": "5000102", "video_name": "7372c602-0033-5d78-ab77-982c83172af0", "text": "\u5bb6\u4eba\u805a\u96c6\u5728\u706b\u5c71\u4e0b\u7684\u865a\u6784\u57ce\u5e02\u7684\u623f\u5b50\u5916\u3002"} +{"id": "5000103", "video_name": "14979704-ab58-58dc-820f-5e8e03e9a92f", "text": "\u62bd\u8c61\u7684\u6e05\u6f88\u6d77\u6d6a\u5f62\u6210\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u7684\u62e5\u62b1\u59ff\u52bf\uff0c\u98ce\u7684\u8fd0\u52a8\u3002"} +{"id": "5000104", "video_name": "8373e48f-a972-5ae2-8b7b-e6c83b9e764d", "text": "\u4e00\u4e2a\u5b69\u5b50\u5728\u4f7f\u7528\u65f6\u95f4\u673a\u5668\u65f6\u53d8\u5f97\u9690\u5f62\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\u3002"} +{"id": "5000105", "video_name": "af666fa1-5e81-51b0-97b6-61e2858e25ce", "text": "DUODUO\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u7c89\u8272\u5154\u5b50\uff0c\u9192\u6765\u4e86\uff0c\u5b83\u5728\u7f8e\u4e3d\u7684\u68ee\u6797\u91cc\u7684\u8212\u9002\u5bb6\u56ed\u91cc\u3002\u52a8\u753b\u5c55\u73b0"} +{"id": "5000106", "video_name": "6f0c3742-ee0f-55fd-98dc-337e0ebc8fd3", "text": "\u5feb\u4e50\u7684\u5bb6\u5ead\u6b63\u5728\u8d2d\u7269\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u9ad8\u6e05\u3002"} +{"id": "5000107", "video_name": "ce325a04-34a3-5f95-a186-70602d1de3a7", "text": "\u9ab7\u9acf\u5728\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "5000108", "video_name": "c75fe5e1-47f1-56b8-9a5b-824d76e4e87e", "text": "\u7ebd\u7ea6\u7684\u4e00\u4e2a\u516c\u4ea4\u529e\u516c\u5ba4\u91cc\uff0c\u4eba\u4eec\u5728\u6253\u7535\u8bdd\u3001\u5728\u7535\u8111\u4e0a\u5199\u5b57\u7b49\u7b49\u3002\u89c6\u9891\u753b\u8d28\u5f88\u9ad8\uff0c\u88ab\u653e\u5927\u4e86\u3002"} +{"id": "5000109", "video_name": "b2bc9026-56a6-5d12-9a76-0dc3bc48ed0c", "text": "\u5728\u4e00\u573a\u76db\u5927\u7684\u665a\u5bb4\u4e0a\uff0c\u5973\u5b69\u7ed9\u7537\u5b69\u5e26\u6765\u4e86\u4e00\u5757\u86cb\u7cd5\u3002\n\nSource sentence: The teacher asked the students to complete the homework by tomorrow. \n\n"} +{"id": "5000110", "video_name": "ca04b8ad-6a4d-5bad-85e9-da6561d1e40d", "text": "\u5728\u94a6\u5948\uff0c\u62c9\u8d3e\u548c\u62c9\u5c3c\u4f4f\u5728\u4e00\u8d77\u3002"} +{"id": "5000111", "video_name": "ab04ce57-cc80-5b86-a92f-d3fc84e09283", "text": "\u5c55\u793a\u62c5\u5fc3\u7684\u5bb6\u4eba\u5bfb\u627e\u5b69\u5b50\u7684\u75af\u72c2\u641c\u7d22\u573a\u666f\u3002"} +{"id": "5000112", "video_name": "f1cb8eae-ef95-5a1b-afbe-ad7de0e0a4e0", "text": "\u4e00\u4e2a\u5973\u5b69\u671d\u7740\u5979\u7684\u5bb6\u8d70\u53bb\uff0c\u52a8\u6f2b\u98ce\u683c\uff0c\u76ae\u80a4\u767d\u7699\uff0c\u9ed1\u8272\u5934\u53d1\uff0c8K\uff0c\u5973\u5b69\u5728\u8d70\u5411\u5bb6\u7684\u8def"} +{"id": "5000113", "video_name": "db481b36-e8d9-5df6-85ff-5de8bd1b2fad", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u900f\u8fc7\u7a97\u6237\u770b\u7740\u88ab\u6218\u4e89\u6467\u6bc1\u7684\u8857\u9053\u7684\u89c6\u9891\u3002"} +{"id": "5000114", "video_name": "e0901578-8350-540d-ae19-0f694be718c6", "text": "\u6d77\u5cb8\u7ebf\uff0c\u6d77\u6d6a\uff0c\u6d6a\u82b1\u89e6\u6478\u6c99\u6ee9\uff0c\u6ce1\u6cab\uff0c\u6676\u83b9\u5254\u900f\u7684\u6d77\u6d6a\uff0c\u903c\u771f\u3002"} +{"id": "5000115", "video_name": "80b73da5-1e68-5167-8b0e-b5cd34ba662d", "text": "\u4f7f\u547d\u53ec\u5524\u89d2\u8272\u4ece\u6469\u5929\u5927\u697c\u8df3\u4e0b\uff0c4k\uff0cfhd\uff0c60\u5e27\u3002"} +{"id": "5000116", "video_name": "d6336b51-8164-5a5a-b515-f8ce617ccc58", "text": "\u5728\u53e6\u4e00\u4e2a\u6050\u9f99\u4ecd\u7136\u5b58\u5728\u7684\u4e16\u754c\u91cc\uff0c\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u4e00\u7247\u5927\u679c\u6811\u7684\u7530\u91ce\u91cc\u5582\u517b\u7740\u4e00\u53ea"} +{"id": "5000117", "video_name": "96ab185a-bb39-5448-a909-90d8b36ed6b0", "text": "\u4e00\u53ea\u9e70\u964d\u843d\u5e76\u6740\u6b7b\u4e00\u53ea\u8001\u9f20\u7684\u89c6\u9891"} +{"id": "5000118", "video_name": "a5cc8c49-7833-5ea1-930c-273b0b5d4a3f", "text": "1970\u5e74\u4ee3\u7684\u8d85\u7ea78\u9ec4\u91d1\u8272\u8c03\u62cd\u6444\u4e86\u4e00\u4e2a\u90c1\u90c1\u8471\u8471\u7684\u73ab\u7470\u82b1\u56ed\uff0c\u4fef\u77b0\u7740\u4e00\u4e2a\u7f8e"} +{"id": "5000119", "video_name": "6a372969-aa12-5802-a896-07b85e8a2aa7", "text": "\u4e00\u4e2a\u6807\u5fd7\u5c55\u793a\u4e86\u62c9\u5361\u6ce2\u5e0c\u5c71\u4e3a\u80cc\u666f\u7684\u6ed1\u7d22\uff0c\u6807\u5fd7\u540d\u79f0\u5e94\u8be5\u662f\u62c9\u5361\u6ce2\u5e0c\u6ed1\u7d22\u3002"} +{"id": "5000120", "video_name": "e9de40ef-c0c3-5326-ac60-13b5b9b919c4", "text": "\u5c06\u56fe\u50cf\u98ce\u683c\u7684\u53f2\u8bd7\u7eb9\u7ae0\u6539\u4e3a\u84dd\u7070\u8272\uff0c\u5e76\u7528\u9f7f\u8f6e\u66ff\u6362\u5934\u76d4\u3002"} +{"id": "5000121", "video_name": "62927ee2-79ab-5e3f-baa9-0b2bfa009261", "text": "\u8457\u540d\u7684\u695a\u74e6\u4ec0\u5564\u9152\u8282\uff0c\u7535\u5f71\u822c\u76844K\u9ad8\u8d28\u91cf\u9633\u5149\u3002"} +{"id": "5000122", "video_name": "afcd00ce-71e6-5d1d-bb82-0733408ca45e", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u6ed1\u884c\u7eff\u8272\u9752\u86d9\u7728\u7740\u773c\u775b\u5750\u5728\u6811\u53f6\u4e0a\u3002"} +{"id": "5000123", "video_name": "9fde1550-95ab-58c7-b09d-0ee183e71d97", "text": "\u623f\u5730\u4ea7\u7ecf\u7eaa\u4eba\u6b63\u5728\u9500\u552e\u8c6a\u5b85\uff0c\u5e76\u5c06\u552e\u51fa\u7684\u6807\u724c\u653e\u5728\u9662\u5b50\u91cc\u3002"} +{"id": "5000124", "video_name": "5a64c95b-5313-5f5e-9c4c-e4e84152e156", "text": "\u4e00\u4e2a\u4eba\u89e6\u6478\u4e86\u4e00\u53ea\u8774\u8776\uff0c\u8774\u8776\u5c31\u74e6\u89e3\u6d88\u5931\u4e86\u3002"} +{"id": "5000125", "video_name": "33cfc9ce-ab7e-552c-801a-394cb9eabf58", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u3001\u95ed\u7740\u773c\u775b\u7ad9\u5728\u65f6\u4ee3\u5e7f\u573a\u7684\u7537\u4eba\u3002"} +{"id": "5000126", "video_name": "6b3f26df-33c9-5e83-ac89-593f976e39d8", "text": "\u5341\u5934\u602a\u517d\u5728\u4e1b\u6797\u4e2d\u82cf\u9192\uff0c\u5177\u6709\u4eba\u5f62\u5916\u8c8c\uff0c\u591c\u666f\uff0c\u4ece\u4e0a\u65b9\u7535\u5f71\u89c6\u89d2\u5448\u73b0\u3002"} +{"id": "5000127", "video_name": "23afc8b6-e782-55a3-a3cb-e9677f58b107", "text": "\u5c0f\u5b69\u513f\u4eec\u559c\u6b22\u7684\u201c\u5c0f\u98de\u4fa0\u201d\u98ce\u683c\u5361\u901a\uff0c\u8001\u4eba\u548c\u5341\u5c81\u7537\u5b69\u5750\u5728\u684c\u5b50\u65c1\u4ea4\u8c08\uff0c\u8fd9\u662f\u4e00\u4e2a\u975e"} +{"id": "5000128", "video_name": "f3f18664-99b3-51f7-940f-6991a7231961", "text": "\u672a\u6765\u7f8e\u4e3d\u5973\u6027\u673a\u5668\u4eba\u5973\u795e\u5728\u672a\u6765\u5f0f\u7684\u5bfa\u5e99\u91cc\uff0c\u6709\u7535\u5f71\u611f\u3002"} +{"id": "5000129", "video_name": "5e7b0205-98a0-5a21-9753-9e6bcd05e74d", "text": "\u4ece\u9888\u90e8\u9759\u8109\u7684\u8def\u5f84\u4e0a\uff0c\u53ef\u4ee5\u770b\u5230\u9c9c\u8840\u5728\u9759\u8109\u4e2d\u7684\u6d41\u52a8\uff0c\u5448\u73b0\u51fa\u7ea2\u8272\u5149\u7ebf\uff0c\u5177\u6709\u903c\u771f\u7684\u7535"} +{"id": "5000130", "video_name": "41693d89-cc20-56e9-bf47-663b8abd6682", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u80cc\u666f\u4e2d\u8c08\u8bba\u52a0\u5bc6\u8d27\u5e01\u65b0\u95fb\u3001\u8d27\u5e01\u548c\u52a0\u5bc6\u8d27\u5e01\u6d41\u52a8\u3002"} +{"id": "5000131", "video_name": "fe70dc98-b607-532a-982c-6a1d734e77ea", "text": "\u4eba\u4eec\u5728\u591c\u5e97\u8df3\u821e\u5e76\u6b22\u547c\u3002"} +{"id": "5000132", "video_name": "ba5775a5-33c6-5d79-988e-d0313be55452", "text": "\u96e8\u6797 \u4fe1\u606f\uff1aSOBUTILNIK\u6c38\u4e0d\u6d88\u901d\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000133", "video_name": "a97ad600-3541-5db9-971d-1cf1f6685b8c", "text": "\u4e00\u4e2a\u5c55\u793a\u81ea\u5df1\u6781\u9650\u67d4\u97e7\u6027\u7684\u4eba\uff0c\u505a\u51fa\u4e00\u4e9b\u5feb\u901f\u7684\u7a7a\u624b\u9053\u8e22\u51fb\u3002"} +{"id": "5000134", "video_name": "85204d32-8593-5465-84fe-efefd7153448", "text": "\u4e00\u8f86\u6c7d\u8f66\u5728\u591c\u95f4\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u3002\u7531\u53f2\u8482\u6587\u00b7\u65af\u76ae\u5c14\u4f2f\u683c\u6267\u5bfc\u76841984\u5e74\u7535\u5f71\u3002"} +{"id": "5000135", "video_name": "22617e6b-6f91-5c8e-83a8-32a664634835", "text": "\u4e00\u4e2a\u5730\u65b9\u53ef\u4ee5\u770b\u5230\u6240\u6709\u884c\u661f\u76844K\u9ad8\u6e05\u753b\u9762\uff0c\u8fd8\u6709\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5c0f\u6811\u5c4b\u548c\u4e00\u9762\u82f1\u56fd\u56fd\u65d7\u5728\u5176\u9876\u90e8\u3002"} +{"id": "5000136", "video_name": "a66c7457-202f-50f1-888e-64d84c4ed5e9", "text": "\u7cbe\u7075\u5728\u591c\u665a\u9a7e\u8f66\u7a7f\u8fc7\u6ee1\u8f7d\u7caa\u80a5\u7684\u9053\u8def\u4e0a\u5403\u5de7\u514b\u529b\u3002"} +{"id": "5000137", "video_name": "c4c200e8-5d4f-5f9b-9913-b3e49b336ca9", "text": "\u732b\u770b\u4e66\uff0c\u5165\u7761\uff0c\u8fdc\u666f\u3002"} +{"id": "5000138", "video_name": "76e03ab6-2905-5a97-b4ed-85eaaf92ae03", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\uff0c\u8428\u7c73\u51b3\u5b9a\u662f\u65f6\u5019\u5f00\u59cb\u4e00\u6b21\u5b8f\u4f1f\u7684\u5192\u9669\u4e86\u3002\u4ed6\u62ff\u4e86\u4e00\u4e2a\u5c0f\u5305\uff0c\u91cc\u9762\u88c5"} +{"id": "5000139", "video_name": "a797da94-ed19-5f56-99a5-cac64c787f47", "text": "\u4e13\u5bb6\u7cfb\u7edf\u5728\u4eba\u5de5\u667a\u80fd\u9886\u57df\u4e2d\u8d77\u7740\u91cd\u8981\u4f5c\u7528\u3002"} +{"id": "5000140", "video_name": "25d76d01-0bde-5a4a-974d-7d3ca5bb7fee", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u6b63\u5728\u6253\u626b\u5bb6\u91cc\uff0c\u8fea\u58eb\u5c3c\u5f0f\u76842D\u52a8\u753b\uff0c8K\u9ad8\u6e05\u3002"} +{"id": "5000141", "video_name": "09ea52f9-1f10-56bd-8d6e-fe38af07db6b", "text": "\u79d1\u5b66\u5bb6\u4eec\u4ece70\u5e74\u4ee3\u5f00\u59cb\u5728\u5b9e\u9a8c\u5ba4\u91cc\u7814\u7a76\u5404\u79cd\u4e8b\u7269\u3002"} +{"id": "5000142", "video_name": "9249f373-78c2-5ef8-b3b9-65cd381a251f", "text": "\u57ce\u5e02\u4e2d\u5f00\u8f66\uff0c\u672b\u65e5\u98ce\u683c\uff0c\u50f5\u5c38\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "5000143", "video_name": "47977271-e75f-5ac4-817f-3c19db9bddf6", "text": "\u540e\u7f6e\u6444\u50cf\u5934\u3002\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u7a7f\u8fc7\u9a6c\u5fb7\u91cc\u7684\u7011\u5e03\uff0c\u7a7f\u8fc7\u6865\u6881\u3002 \n\nSource sentence: The meeting has been rescheduled for next Monday"} +{"id": "5000144", "video_name": "70ad6b72-cbb5-5ae0-b204-7155863f77d5", "text": "\u6210\u4e3a\u4e00\u4e2a\u5149\u660e\u548c\u667a\u6167\u7684\u706f\u5854\uff0c\u5728\u4e00\u4e2a\u4ecd\u5728\u4ece\u8fc7\u53bb\u9634\u5f71\u4e2d\u6062\u590d\u7684\u4e16\u754c\u4e2d\u3002"} +{"id": "5000145", "video_name": "66a6851c-3ffc-56a1-9938-c25c215b632e", "text": "\u5236\u4f5c\u4e00\u6bb51500\u5e74\u4ee3\u7684\u5a5a\u793c4K\u89c6\u9891\uff0c\u7a7f\u7740\u5f53\u65f6\u7684\u670d\u88c5\uff0c\u4ece\u6559\u5802\u591c\u95f4\u51fa\u95e8\uff0c\u5c55\u73b0\u6b27\u6d32\u6587\u5316\uff0c\u80cc"} +{"id": "5000146", "video_name": "130653e2-de69-5fe9-9167-986e4d568d25", "text": "\u6f02\u6d6e\u7684\u773c\u775b\u4f1a\u7728\u773c\u548c\u65cb\u8f6c\u3002"} +{"id": "5000147", "video_name": "ec050fa2-05d3-5e57-896d-0c58809fac88", "text": "\u73ed\u6c0f\u5728\u6cbc\u6cfd\u5730\u4e0a\u7ff1\u7fd4\u76844K\u7535\u5f71\u573a\u666f"} +{"id": "5000148", "video_name": "6ad25cb8-b37c-54f9-8269-596d6a1ad3cb", "text": "\u4e00\u4e2a\u9ec4\u8272\u7684\u5c0f\u9e21\u5728\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u5728\u519c\u573a\u4e0a\u8df3\u821e\u3002"} +{"id": "5000149", "video_name": "21811b3c-c15a-554e-a5d0-1ab302d20e4b", "text": "\u7c73\u514b\u00b7\u6cf0\u52d2\uff08Mick Taylor\uff09\u6765\u81ea\u72fc\u6eaa\uff0c\u4ed6\u6b63\u5728\u524a\u94c5\u7b14\u3002"} +{"id": "5000150", "video_name": "1c20d02d-5116-5631-bc5b-89aa6649452e", "text": "\u8ba9\u8fd9\u4e2a\u4eba\u8bf4\u8bdd\uff0c\u6162\u6162\u5730\u6447\u5934\u3002"} +{"id": "5000151", "video_name": "42cdb1bb-5650-5433-b643-ca6f8dd2437b", "text": "\u5929\u4e0a\u82b1\u56ed\u662f\u4e00\u4e2a\u60ac\u6302\u5728\u5b87\u5b99\u4e2d\u7684\u666f\u89c2\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u661f\u5ea7\u7efd\u653e\u6210\u8f90\u5c04\u7684\u82b1\u6735\uff0c\u5728\u5929\u7a7a\u4e2d"} +{"id": "5000152", "video_name": "d3f401e5-6419-5f97-8f6a-b52e7453c2c8", "text": "\u5357\u6781\u62cd\u6444\u5230\u4e00\u53ea\u98de\u7fd4\u7684\u5e1d\u4f01\u9e45\uff0c\u9ad8\u6e05\uff0c60\u5e27\u3002"} +{"id": "5000153", "video_name": "1a5d4664-b158-5522-adc3-1601d50486fb", "text": "\u7ed3\u6676\u3001\u73bb\u7483\u3001\u51b0\u51bb \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "5000154", "video_name": "89f1ef22-a271-5efb-9e60-3df80ab5f726", "text": "\u6e38\u6cf3\u6c60\u91cc\u7684\u6c34\u5728\u6d41\u52a8\u3002"} +{"id": "5000155", "video_name": "55176093-426a-549d-86e0-9080bad00267", "text": "\u91ce\u86ee\u4e3b\u4e49\u3001\u7b49\u8f74\u6d4b\u89c6\u56fe\u30012D\u3001\u575a\u56fa\u7684\u5c9b\u88ab\u6c79\u6d8c\u7684\u6ce2\u6d6a\u5305\u56f4\uff0c\u9644\u8fd1\u505c\u6cca\u7740\u4e00"} +{"id": "5000156", "video_name": "9bea252c-f54e-5bb6-9b61-11c1ad3382e9", "text": "\u5fd9\u788c\u7684\u516c\u53f8\u5973\u6027\u5728\u5979\u7684\u529e\u516c\u5ba4\u91cc\u5de5\u4f5c\uff0c\u95e8\u5916\u5458\u5de5\u7684\u5fd9\u788c\u58f0\u54cd\u4e0d\u65ad\uff0c\u5979\u63a5\u6536\u7535\u5b50\u90ae\u4ef6\u7684\u7b14\u8bb0\u672c\u7535"} +{"id": "5000157", "video_name": "4895a8c9-298c-5f10-978a-b6216dff431c", "text": "\u5728\u7f1d\u7eab\u8f66\u95f4\u91cc\uff0c\u719f\u7ec3\u7684\u5de5\u5320\u4eec\u52e4\u594b\u5730\u5de5\u4f5c\uff0c\u4ed6\u4eec\u5a34\u719f\u5730\u64cd\u7eb5\u7740\u9488\u7ebf\u3002\u6c1b\u56f4"} +{"id": "5000158", "video_name": "3d16d01f-77d0-5cc7-87ff-1ad30b9920e5", "text": "\u4ed6\u66fe\u68a6\u60f3\u6709\u4e00\u5929\u80fd\u50cf\u9e1f\u4e00\u6837\u98de\u7fd4\u3002"} +{"id": "5000159", "video_name": "2ab080fc-fe48-500b-b169-1bc0173a65b3", "text": "\u673a\u5668\u4eba\u6234\u7740\u51b0\u6dc7\u6dcb\u5e3d\u5b50\uff0c\u4e0e\u592a\u9633\u795e\u3001\u4e54\u591a\u7f57\u592b\u65af\u57fa\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u4e00\u8d77\u8df3\u821e\u3002"} +{"id": "5000160", "video_name": "a4165a9c-8476-5e69-bad1-9021dc725c1b", "text": "28\u6beb\u7c73\u94f8\u94c1\u91cd\u7269\u843d\u5730\u7684\u5173\u95ed\u5b57\u5e55\u3002"} +{"id": "5000161", "video_name": "1891f7a6-86e5-585c-8d49-465a62b39642", "text": "\u5728\u8fd9\u4e2a\u8f89\u714c\u7684\u63cf\u7ed8\u4e2d\uff0c\u6211\u4eec\u89c1\u8bc1\u4e86\u9b54\u6cd5\u65e0\u7f1d\u5730\u878d\u5165\u4eba\u7c7b\u751f\u6d3b\u7684\u8ff7\u4eba\u573a\u666f\u3002\u6574\u4e2a\u57ce\u5e02\u88ab\u6e29"} +{"id": "5000162", "video_name": "7954c9c2-d2e2-58f5-bd54-2df30a1bcfca", "text": "\u4e00\u53ea\u8dd1\u7740\u7684\u72d7\uff0c\u5e26\u7740\u5fae\u7b11\u548c\u53ef\u7231\u3002"} +{"id": "5000163", "video_name": "c6e55e35-db9e-5ae5-84db-c8da0d3df52a", "text": "\u7528\u624b\u673a\u6210\u763e\u7684\u65b9\u5f0f\u6765\u4ea4\u6362\u5b83\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u628a\u76d0\u9012\u7ed9\u6211\u597d\u5417\uff1f"} +{"id": "5000164", "video_name": "b91a75b4-af30-55ff-b440-9526008587ef", "text": "\u8bb0\u5f97\u591a\u5e74\u524d\u81ea\u5df1\u7684\u7b2c\u4e00\u5929\u3002"} +{"id": "5000165", "video_name": "dc6855be-fdbe-501e-9fac-a562d19f8793", "text": "\u673a\u5668\u4eba\u7f51\u9875\u8bbe\u8ba1\u6b66\u5668\u6a21\u5f0f\u5df2\u542f\u52a8\u3002"} +{"id": "5000166", "video_name": "e913311f-7c8d-58d2-8edd-35c5464da0f6", "text": "\u751f\u6210\u4e00\u5f20\u5b5f\u4e70\u7e41\u5fd9\u8857\u9053\u4e0a\u6709\u4eba\u548c\u8f66\u8f86\u7684\u56fe\u7247\u3002"} +{"id": "5000167", "video_name": "2c22807e-93dd-58fd-aadc-8402021f4274", "text": "\u4e00\u4e2a\u6709\u660e\u663e\u4eba\u5de5\u667a\u80fd\u4f34\u4fa3\u7684\u5c0f\u5b69\u3002"} +{"id": "5000168", "video_name": "c74f4131-c547-54a4-a287-c2ed3bb1ecf5", "text": "\u4e00\u4e2a\u59dc\u9ec4\u8272\u5934\u53d1\u7684\u5973\u4eba\u5728\u4e00\u4e2a\u6f02\u4eae\u7684\u7535\u5f71\u573a\u666f\u91cc\uff0c\u5728\u4e00\u4e2a\u73bb\u7483\u5899\u623f\u95f4\u91cc\u53d1\u751f\u4e86\u4e00\u6b21\u4f1a\u8bae\u3002"} +{"id": "5000169", "video_name": "24f02c45-e507-574f-8131-2828ac64d64d", "text": "\u4e00\u53ea\u5361\u901a\u9f99\u867e\u6e38\u6cf3\u5e76\u8868\u73b0\u51fa\u641e\u7b11\u7684\u52a8\u4f5c\u3002"} +{"id": "5000170", "video_name": "c97c423f-5148-5007-9a83-ec20a9d27795", "text": "\u4eba\u7c7b\u673a\u5668\u534a\u4eba\u534a\u673a\u5668\uff0c\u6de1\u5f69\u8272\uff0cWebcore\u7f8e\u5b66\u3002"} +{"id": "5000171", "video_name": "8fcc9f59-0c0c-5f5b-afc2-0ad4c67d5da5", "text": "\u7334\u5b50\u51dd\u89c6\u7740\u8ff7\u4eba\u7684\u591c\u7a7a\uff0c\u601d\u8003\u7740\u81ea\u5df1\u7684\u65c5\u7a0b\uff0c\u5929\u7a7a\u7e41\u661f\u95ea\u8000\u3002"} +{"id": "5000172", "video_name": "69a9bf09-ec6d-5292-9606-bc4ded019b55", "text": "Onam\u5e86\u795d\u6d3b\u52a8\u5728\u5580\u62c9\u62c9\u90a6\u9a6c\u97e6\u91cc\uff08Maveli\uff09\u5f00\u59cb\u953b\u70bc\u3002"} +{"id": "5000173", "video_name": "3711b0d2-f063-5380-b521-942a220ee4b3", "text": "\u5feb\u901f\u79fb\u52a8\uff0c\u653e\u5927\u955c\u5934\uff0c\u8fd0\u52a8\u955c\u5934\uff0c\u4e24\u4e2a\u4eba\u8c08\u8bba\u5c71\u533a\u3002"} +{"id": "5000174", "video_name": "d256957a-bd12-5a9b-9d62-1d6774e734de", "text": "\u903c\u771f\u7684\u91d1\u94f6\u786c\u5e01\u843d\u5165\u8bb8\u591a\u4e0d\u540c\u7684\u7f50\u5b50\u4e2d\uff0c\u7535\u5f71\u822c\u620f\u5267\u5316\u7684\u795e\u79d8\u98ce\u683c\u3002"} +{"id": "5000175", "video_name": "d19c99e6-8d66-5560-bd07-8c0c329531cc", "text": "\u732b\u4e0a\u4e0b\u626d\u52a8\u5934\u3002"} +{"id": "5000176", "video_name": "1304d0a8-acb2-5d28-88d1-17cf10ae281c", "text": "UFO\u7a7f\u8d8a\u94f6\u6cb3\u98de\u884c\u3002"} +{"id": "5000177", "video_name": "e202c37c-191d-5f0f-b0eb-3ecb6c500617", "text": "\u5728\u4e00\u4e2a\u5bbd\u655e\u660e\u4eae\u7684\u623f\u95f4\u91cc\uff0c\u4e00\u7fa4\u4eba\u805a\u5728\u4e00\u8d77\uff0c\u6bcf\u4e2a\u4eba\u90fd\u5750\u5728\u684c\u5b50\u6216\u8212\u9002\u7684\u6905\u5b50\u4e0a\u3002\u6bcf\u4e2a\u4eba"} +{"id": "5000178", "video_name": "57a6c1d8-f0cf-539c-9c1f-fdc20046c5cd", "text": "\u5728Instagram\u4e0a\u5411\u5ba2\u6237\u5ba3\u4f20\u56fe\u7247\u4e2d\u7684\u9500\u552e\u7269\u54c1\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000179", "video_name": "f8a7f722-cf7d-55c7-b1da-8627d79d8be4", "text": "\u4e00\u500b\u4e5d\u6b72\u7684\u5973\u5b69\u5728\u5979\u7684\u5e8a\u4e0a\u548c\u4e00\u53ea\u718a\u8c93\u8aaa\u8a71\u3002"} +{"id": "5000180", "video_name": "60c43da9-81e3-5c6d-9c3c-81424d102963", "text": "\u4e24\u53ea\u5de8\u578b\u8682\u8681\u5728\u8349\u5730\u4e0a\u7528\u67aa\u640f\u6597\uff0c\u4ece\u866b\u5b50\u7684\u89c6\u89d2\u770b\uff0c\u5929\u7a7a\u5f88\u9ed1\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c"} +{"id": "5000181", "video_name": "095b6b08-11ec-5fab-9a01-6e6e3793d0a0", "text": "\u6570\u5b57\u7ed8\u753b\uff0c\u4e00\u4e2a\u4eba\u548c\u4e00\u53ea\u72d7\u8d70\u8def\uff0c\u540e\u672b\u65e5\u98ce\u683c\u7684\u6e38\u620f\u6c1b\u56f4\u3002\u8d5b\u535a\u670b\u514b\u6c1b\u56f4\uff0c\u9713\u8679"} +{"id": "5000182", "video_name": "7413d0a3-80b8-58c6-b7db-feeea24b8478", "text": "\u7537\u4eba\u4e0e\u9cc4\u9c7c\u7334\u5b50\u8fdb\u884c3D\u7535\u5f71\u5f0f\u683c\u6597\u3002"} +{"id": "5000183", "video_name": "a1d4d627-42a6-59b0-974f-d65473b7b02c", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u751f\u7269\u5728\u9634\u5f71\u4e2d\u6f5c\u4f0f\u7684\u4e00\u77a5\u3002"} +{"id": "5000184", "video_name": "85ef7e9c-dc38-51e5-b06a-5a518ebb8477", "text": "\u9ed1\u6697\u4e2d\u7684\u70df\u96fe\u3002\u4fe1\u606f\uff1a\u5b9a\u4fa6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5000185", "video_name": "2dab9057-156b-5003-9030-875b1f28ae91", "text": "\u4f17\u591a\u624b\u6301\u519b\u5200\u7684\u5fcd\u8005\u8eba\u5728\u7ea2\u8272\u7684\u6cb3\u6d41\u4e2d\uff0c\u660f\u8ff7\u4e0d\u9192\uff0c\u591c\u665a\u4e3b\u9898\uff0c\u7ea2\u8272\u6708\u4eae\u3002"} +{"id": "5000186", "video_name": "332ae26c-5757-5228-ab43-2caa9ad5cb01", "text": "\u827e\u5c14\u838e\u5229\u7528\u5979\u7684\u706b\u7130\u8d85\u80fd\u529b\u5efa\u9020\u5979\u7684\u706b\u7130\u738b\u56fd\u3002"} +{"id": "5000187", "video_name": "a2022ea7-b4ad-5856-acde-fa8e32429353", "text": "\u4e00\u4e2a\u4ed9\u4fa0\u89d2\u8272\u7ad9\u5728\u4e00\u628a\u5251\u4e0a\uff0c\u7528\u5251\u98de\u7fd4\u4e8e\u5929\u9645\u3002"} +{"id": "5000188", "video_name": "3e8cd990-b4fd-5470-960f-7b40e58f4d28", "text": "\u5728\u4e00\u4e2a\u6709\u5927\u6cb3\u7684\u68ee\u6797\u4e2d\uff0c\u6709\u8bb8\u591a\u79cd\u7c7b\u7684\u52a8\u7269\u3002\u6d88\u606f\uff1a\u9a6c\u91cc\u5965\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5000189", "video_name": "442af66e-8935-5234-a082-ace22e94a30f", "text": "\u5916\u661f\u4eba\u7a7f\u7ec5\u58eb\u98ce\u683c\u7684\u670d\u88c5\uff0c\u62bd\u96ea\u8304\uff0c\u6253\u6251\u514b\uff0c\u80cc\u666f\u795e\u79d8\u3002"} +{"id": "5000190", "video_name": "e260821d-46db-5050-ae0b-4b970b3dfb43", "text": "\u753b\u4e00\u5e45\u6d77\u6d0b\u3001\u592a\u9633\u548c\u6d77\u9e25\u7684\u56fe\u753b\u3002"} +{"id": "5000191", "video_name": "b3ca1b51-c4ae-52a7-8c98-633b06e2ca75", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5750\u5728\u684c\u5b50\u65c1\u8fb9\u8bf4\u8bdd\u3002"} +{"id": "5000192", "video_name": "34adfa8d-0faf-55f6-a2e6-bc5b6dfd87b8", "text": "\u4e00\u53ea\u73bb\u7483\u7403\uff0c\u4e0a\u9762\u5370\u6709\u9634\u9633\u7b26\u53f7\u548c\u201cMr. Kills\u201d\u5b57\u6837\u3002\u7403\u5185\u3002"} +{"id": "5000193", "video_name": "581f70b8-2b61-555e-8144-394c3c233e0b", "text": "\u5c0f\u7f8e\u4eba\u9c7c\u827e\u745e\u5c14\u88ab\u541e\u566c\u4e86\u4e00\u90e8\u5206\uff0c\u6b7b\u5728\u6c34\u9762\u4e0a\uff0c\u88ab\u653e\u5728\u4e00\u4e2a\u6709\u98df\u4eba\u9c7c\u7684\u6c34\u65cf\u7bb1\u91cc\u3002"} +{"id": "5000194", "video_name": "90bc2533-70c3-5548-8bcc-0fd16b9430bb", "text": "\u4f7f\u7528\u6e7f\u5a46\u795e\u7684\u7b2c\u4e09\u53ea\u773c\u775b\u4f5c\u4e3a\u8d85\u4eba\u7684\u773c\u6fc0\u5149\uff0c\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e0a\u653b\u51fb\u3002"} +{"id": "5000195", "video_name": "ca950081-782f-56ab-b5d8-31b9bf14eea6", "text": "\u6ee1\u6708\u4e4b\u591c\uff0c\u8718\u86db\u4fa0\u5728\u5c4b\u9876\u4e0a\u89c2\u8d4f\u6708\u4eae\u548c\u661f\u661f\u3002"} +{"id": "5000196", "video_name": "a758db1c-1f13-58ed-8c8a-c66cff657e6a", "text": "\u5728\u5e8a\u4e0a\u7684\u592b\u59bb\u624b\u6301\u4e00\u5c0f\u74f6\u836f\uff0c\u5448\u9ed1\u767d\u7535\u5f71\u98ce\u683c\uff0c\u65f6\u95f4\u4e3a1950\u5e74\u4ee3\u3002"} +{"id": "5000197", "video_name": "41b903b9-340d-5eed-afbb-95816f9dd1e8", "text": "\u8bf7\u6309\u7167\u56fe\u50cf\u6240\u793a\u521b\u9020\u8fd9\u8f86\u516c\u4ea4\u8f66\u79fb\u52a8\u7684\u52a8\u753b\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000198", "video_name": "2c5cfd75-104a-55e2-a08b-225b566c311e", "text": "\u4ece\u4e0a\u65b9\u770b\uff0c\u7530\u5730\u4e0a\u6709\u6392\u6c34\u6c9f\u548c\u8fd0\u8f93\u8239\u53ea\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000199", "video_name": "c28093cc-6dc5-5d59-8807-5eba60d210dc", "text": "\u4e00\u53ea\u814a\u80a0\u72d7\u5728\u8857\u4e0a\u8d70\u8def\u5e76\u5fae\u7b11"} +{"id": "5000200", "video_name": "83b170ff-89a2-57c4-8cfd-def52dbf87ed", "text": "\u5168\u666f\u5f0f\u62cd\u6444\uff1a\u5b87\u5b99\u7684\u5168\u666f\u89c6\u56fe\u3002"} +{"id": "5000201", "video_name": "bf450be7-2d36-5e14-9862-b5b59d89c013", "text": "\u7f8e\u4e3d\u7684\u7eff\u8272\u8349\u5730\u548c\u82b1\u7684\u56fe\u50cf"} +{"id": "5000202", "video_name": "74238be3-055a-59a0-b3d6-981c3c89b197", "text": "\u4e00\u4e2a\u62cd\u7167\u673a\u7684\u89c6\u89d2\uff0c\u5c55\u793a\u7740\u4e00\u4e2a\u91d1\u53d1\u7537\u5b69\u95ed\u7740\u773c\u775b\u7684\u753b\u9762\uff0c\u8be5\u753b\u9762\u98ce\u683c\u7c7b\u4f3c\u4e8e\u8fea\u58eb\u5c3c\u5de5\u4f5c"} +{"id": "5000203", "video_name": "0d060f03-a749-5cef-b166-bf69c1847e62", "text": "\u5b8c\u5168\u62e5\u62b1\u62bd\u8c61\uff0c\u76f8\u673a\u955c\u5934\u6355\u6349\u77ac\u606f\u5373\u901d\u7684\u65f6\u523b\uff1a\u6c34\u6ce2\u8361\u6f3e\uff0c\u706b\u7130\u95ea\u70c1\uff0c\u6216"} +{"id": "5000204", "video_name": "a0a13779-c2d5-5b8b-9f61-64d38ec2d896", "text": "\u592a\u7a7a\u4e2d\u7684\u97f3\u901f\u9a91\u5728\u9a6c\u4e0a\u3002"} +{"id": "5000205", "video_name": "b4a0c2df-919a-5a11-9542-486d724de76f", "text": "\u6770\u514b\u5728\u89d2\u843d\u91cc\u9759\u9759\u5730\u753b\u753b\uff0c\u827e\u7c73\u8389\u5728\u624d\u827a\u8868\u6f14\u4e2d\u5728\u821e\u53f0\u4e0a\u5f39\u5409\u4ed6\u3002\u4ee5\u7535\u5f71\u822c\u76844"} +{"id": "5000206", "video_name": "712a5964-dfd9-5e91-8411-9a6c9cd35ca5", "text": "\u6d77\u76d7\u5728\u6d77\u4e0a\uff0c\u6708\u5149\u4e0b\uff0c\u9ed1\u6697\u4e2d\uff0c\u4e0e\u9cc4\u9c7c\u640f\u6597\u3002"} +{"id": "5000207", "video_name": "d605165e-b33c-591d-8fe8-5139ae3404ad", "text": "\u8759\u8760\u4fa0\u5728\u7535\u5f71\u4e2d\u4ee53D\u9ad8\u901f\u98de\u884c\u5728\u5efa\u7b51\u7269\u4e4b\u95f4\u3002"} +{"id": "5000208", "video_name": "6c01d679-6555-53a7-a9ad-1ab8f2b84b1e", "text": "\"\u94c1\u62f33\"\u4e2d\u7684\u5409\u5149\u7a7f\u8fc7\u4e00\u7247\u9ed1\u6697\u7684\u68ee\u6797\u3002"} +{"id": "5000209", "video_name": "36605a48-216b-5a20-924f-0bdbdcbeb236", "text": "\u5916\u9762\u4e0b\u7740\u70b8\u9e21\uff0c\u4eba\u4eec\u8bd5\u56fe\u5728\u5916\u9762\u6349\u4f4f\u70b8\u9e21\u3002"} +{"id": "5000210", "video_name": "8c649786-8ef8-56db-a937-dccc98b4eb54", "text": "\u5c3c\u65e5\u5229\u4e9a\u4e00\u4e2a\u7e41\u534e\u7684\u5927\u90fd\u5e02\uff0c\u5145\u6ee1\u6d3b\u529b\u548c\u751f\u673a\uff0c\u5c45\u6c11\u80cc\u666f\u591a\u6837\uff0c\u53c2\u4e0e\u5404\u79cd\u8c61\u5f81\u548c\u5e73\u4e0e\u56e2\u7ed3\u7684"} +{"id": "5000211", "video_name": "775c91d9-bfa6-503f-ad3a-d928fbe3cc73", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u7a7f\u7740\u7ea2\u8272\u7684\u88d9\u5b50\uff0c\u5728\u9ed1\u6697\u7684\u591c\u665a\u548c\u96e8\u4e2d\uff0c\u7559\u7740\u957f\u957f\u7684\u9ed1\u53d1\u3002"} +{"id": "5000212", "video_name": "2dd074f3-5798-5197-a650-b1654cd274f6", "text": "\u65cb\u5f8b\u68ee\u6797\uff1a\u4e3a\u4e86\u524d\u8fdb\uff0c\u4ed6\u4eec\u5fc5\u987b\u5728\u9b54\u6cd5\u89c2\u4f17\u9762\u524d\u8868\u6f14\u81ea\u5df1\u7684\u827a\u672f\uff08\u97f3\u4e50\u3001\u821e"} +{"id": "5000213", "video_name": "0047390b-324e-5a2d-b587-c3f4494ad147", "text": "\u4f5b\u5730\u9b54\u5728\u5496\u5561\u9986\u4f7f\u7528\u624b\u673a\u652f\u4ed8\u3002"} +{"id": "5000214", "video_name": "297bd37d-6175-5c6e-89cc-da9630b67975", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u6050\u6016\u9b54\u9b3c\u88ab\u5730\u6d1e\u4e2d\u7684\u602a\u517d\u541e\u566c\uff0c\u8d85\u903c\u771f\u7684\u56fe\u50cf\uff0c\u8d85\u9ad8\u6e05\u3002"} +{"id": "5000215", "video_name": "0324bd0d-9640-5d48-9df5-547a2fa46b0d", "text": "\u5154\u5b50\u8138\u96d5\u523b\u5728\u77f3\u5934\u4e0a\uff0c4k\u3002"} +{"id": "5000216", "video_name": "1334c1b4-6a84-573a-a298-c97041e3f22e", "text": "\u5f00\u59cb\u5efa\u7acb\u82b1\u56ed\uff0c\u4e92\u76f8\u5e2e\u52a9\u3002\u5c55\u73b0\u793e\u533a\u5185\u589e\u957f\u7684\u56e2\u7ed3\u611f\u3002"} +{"id": "5000217", "video_name": "a915c308-25c5-556e-bef4-826f49bdf7a6", "text": "\u4e00\u53f0\u4ece\u684c\u5b50\u4e0a\u6254\u7eb8\u5f20\u7684\u673a\u5668\u4eba\u3002"} +{"id": "5000218", "video_name": "d3cf9436-85f5-5c9d-b733-d7009318a608", "text": "\u4e00\u53ea\u72d7\u5728\u7530\u91ce\u91cc\u8df3\u8dc3\u3002"} +{"id": "5000219", "video_name": "7ba0354b-047a-5811-b887-cd34882fa769", "text": "\u76f8\u673a\u5728\u6c34\u4e0b\u79fb\u52a8\u3002\u5b83\u63ed\u793a\u4e86\u4e00\u4e2a\u751f\u673a\u52c3\u52c3\u7684\u73ca\u745a\u7901\uff0c\u5145\u6ee1\u4e86\u751f\u547d\u3002\u5404\u79cd\u5927\u5c0f\u548c\u989c\u8272\u7684\u9c7c"} +{"id": "5000220", "video_name": "640ec9d5-a556-57f6-8cf8-09f62b806904", "text": "\u4e00\u4e2a\u4e9a\u6d32\u7537\u5b69\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\uff0c\u65c1\u8fb9\u6709\u4e00\u8258\u5b87\u5b99\u98de\u8239\uff0c\u753b\u8d28\u4e3a4K\uff0c\u5e27\u7387\u4e3a30P\u3002"} +{"id": "5000221", "video_name": "e6824f06-24ff-5778-b96f-edc67c661270", "text": "\u5361\u901a\u89d2\u8272\u5728\u8857\u4e0a\u8d70\uff0c\u7edd\u5bf9\u73b0\u5b9e v.16\u3002"} +{"id": "5000222", "video_name": "e82c7e63-2164-5c8f-ae5d-d4133c717cce", "text": "\u897f\u675c\u00b7\u7a46\u65af\u74e6\u62c9\u5c06\u4e58\u57505911\u62d6\u62c9\u673a\u884c\u9a76\u5728\u5b5f\u4e70\u5e02\u7684\u9053\u8def\u4e0a\uff0c\u975e\u5e38\u6e05\u6670\u660e\u4eae\uff0c\u5149\u7ebf"} +{"id": "5000223", "video_name": "63cc2be1-be79-530f-95f9-db8616bd0dcf", "text": "\u7d27\u8d34\u7740\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u653e\u5927\u955c\u5934\uff0c\u5979\u5728\u6d77\u8fb9\u7684\u4e00\u8f86\u6d77\u6cab\u7eff\u8272\u655e\u7bf7\u8f66\u91cc\u54ed\u6ce3\uff0c\u776b"} +{"id": "5000224", "video_name": "6f6c5268-1468-5204-883b-da6e9567f91b", "text": "\u591c\u665a\u5145\u6ee1\u4e86\u7d27\u5f20\u6c14\u6c1b\uff0c\u96e8\u6c34\u503e\u6cfb\u800c\u4e0b\uff0c\u4f7f\u54e5\u8c2d\u57ce\u9ed1\u6697\u7684\u5c0f\u5df7\u6295\u5c04\u51fa\u4e00\u79cd\u9634\u9669"} +{"id": "5000225", "video_name": "e3b5a057-8b0d-5bc7-b150-3941b6b5632c", "text": "\u4e2d\u56fd\u795e\u660e\u540d\u5355\u4e2d\u7684\u4e00\u4e2a\u795e\u3002"} +{"id": "5000226", "video_name": "a6109f14-24d5-50cd-a72d-012f9024ade4", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u8eba\u5728\u533b\u9662\u7684\u75c5\u5e8a\u4e0a\uff0c\u671b\u5411\u7a97\u5916\u3002"} +{"id": "5000227", "video_name": "eae659d8-91ce-5fd4-a4ae-f6ba4a5e0abd", "text": "\u52a8\u753b\u4e2d\u795e\u7075\u4e4b\u95f4\u7684\u6218\u6597\uff0c\u6301\u7eed1\u5206\u949f\u3002"} +{"id": "5000228", "video_name": "80e963e9-a819-521f-830e-df720878efc4", "text": "\u89c6\u9891\u4e2d\u6709\u4e00\u4e2a\u5c0f\u7f8e\u5973\u5728\u68ee\u6797\u4e2d\u6563\u6b65\uff0c\u89c2\u770b\u5185\u90e8\u7684\u5929\u7a7a\u548c\u661f\u661f\uff0c\u89d2\u8272\u5e94\u4e3a3D\u3002"} +{"id": "5000229", "video_name": "0595583b-0123-5c31-be5f-2d7aec1ca4e1", "text": "\u5bc6\u96c6\u7684\u6c14\u6ce1\uff0c\u5e7f\u89d2\u6162\u6162\u9760\u8fd1\u3002"} +{"id": "5000230", "video_name": "b479a5a4-18d8-565b-940a-8dc4287ecd76", "text": "\u4ece\u6df1\u6df1\u7684\u6df1\u5904\u6d6e\u73b0\u51fa\u6765\u4e86\u4e00\u56e2\u6d3b\u751f\u751f\u7684\u7d2b\u8272\u6de4\u6ce5\uff0c\u5b83\u7684\u5f62\u6001\u9686\u8d77\u800c\u95ea\u95ea\u53d1\u5149\uff0c\u90a3"} +{"id": "5000231", "video_name": "c2dede13-d260-5935-88d3-825c57bf4c23", "text": "\u4eba\u4eec\u6cbf\u7740\u6c99\u6ee9\u6f2b\u6b65\uff0c\u6d77\u9e25\u98de\u7fd4\u3002"} +{"id": "5000232", "video_name": "2f6df925-72c7-581a-ba16-cb0ed32e8074", "text": "\u5192\u9669\u5bb6\u7528\u624b\u6307\u7740\u6d1e\u7a74\u524d\u9762\u7684\u77f3\u5934\u3002"} +{"id": "5000233", "video_name": "7c7ce418-2be2-57d8-a912-f29d49297c63", "text": "\u5496\u5561\u5012\u5728\u5730\u4e0a\u3002"} +{"id": "5000234", "video_name": "2e12be98-bd5d-5d31-b7ba-606b180c0c28", "text": "\u4ece\u4e0a\u65b9\u62cd\u6444\u5bbd\u5e7f\u7684\u753b\u9762\uff0c\u6444\u50cf\u673a\u9010\u6e10\u9760\u8fd1\u8d1d\u9c81\u7279\u5e02\u3002"} +{"id": "5000235", "video_name": "59eadac0-e565-5df2-9b89-122b2b30d8db", "text": "\u5728\u65f6\u95f4\u8fb9\u7f18\u7684\u795e\u5947\u68ee\u6797\u91cc\uff0c\u4e00\u4e2a\u8ff7\u4eba\u7684\u5c0f\u5c4b\u3002\u76f8\u673a\u653e\u5927\u5e76\u5411\u4e0a\u5e73\u79fb\u300224\u5e27\u6bcf\u79d2\u3002"} +{"id": "5000236", "video_name": "9c0ac3b2-46dd-5f3a-92a7-74216b3cee96", "text": "\u9c9c\u82b1 \u4fe1\u606f\uff1aLuisa \u603b\u7edf\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000237", "video_name": "22b28906-3684-5ce0-9df8-a5a1e6e46d22", "text": "\u7537\u5b69\u548c\u5973\u5b69\u57283D\u7a7a\u95f4\u4e2d\u6f02\u6d6e\u3002"} +{"id": "5000238", "video_name": "53dcd7d0-72ed-5b3d-aad5-39502769172d", "text": "\u4e00\u53ea\u8001\u864e\u5728\u4e1b\u6797\u91cc\u3002\u6709\u4e00\u5929\uff0c\u8001\u864e\u5192\u9669\u8d70\u51fa\u6d1e\u7a74\uff0c\u5bfb\u627e\u730e\u7269\u3002\n\n\u5f88\u5feb\uff0c\u4ed6\u627e\u5230\u4e86\u4e00\u53ea"} +{"id": "5000239", "video_name": "d3faa912-36ed-53af-bf15-34cbc1a4d078", "text": "\u6df1\u6d77\u4e2d\u6709\u5927\u706f\u7684\u6c7d\u8f66"} +{"id": "5000240", "video_name": "91eda2e5-726c-5751-ae2b-692efc6d95b1", "text": "\u661f\u8230Nomad\u7684\u8239\u957fBrody\u3002\u79d1\u5e7b\u3002"} +{"id": "5000241", "video_name": "f19558eb-a1ed-5b81-b036-9dacc87c43cb", "text": "\u4ece\u706b\u661f\u98de\u6765\u7684\u98de\u789f\u5165\u4fb5\u4f26\u6566\uff0c\u6fc0\u5149\u675f\u3001\u5916\u661f\u4eba\u3001\u6218\u4e89\u3002"} +{"id": "5000242", "video_name": "2016ac54-f30d-5d34-80dc-7bc75ea25843", "text": "\u94f6\u8272\u95ea\u5149\u6dcb\u5728\u5927\u767d\u8272\u73ab\u7470\u82b1\u675f\u4e0a\uff0c\u5982\u7535\u5f71\u822c\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\u732b\u5728\u6c99\u53d1\u4e0a"} +{"id": "5000243", "video_name": "51bb86e0-4038-57c9-abf8-0e1ea26a6f80", "text": "\u7535\u5f71\u5f0f\u7684\u9ad8\u6e05\u753b\u9762\uff0c\u5730\u94c1\u7ad9\u91cc\u4e00\u4f4d\u7c89\u53d1\u5973\u5b69\u770b\u8d77\u6765\u5341\u5206\u56f0\u60d1\u3002"} +{"id": "5000244", "video_name": "d97d9776-ef13-5b4e-bbda-9da502daa991", "text": "\u7537\u5b69\u4eec\u6210\u529f\u5730\u6536\u96c6\u4e86\u8db3\u591f\u7684\u79cd\u5b50\u3002\u5361\u901a\u3002"} +{"id": "5000245", "video_name": "d178b757-946f-5395-8ea5-edaffcfe1026", "text": "\u8fd9\u4e2a\u7537\u5b69\u51c6\u5907\u53bb\u673a\u573a\uff0c\u6536\u62fe\u884c\u674e\uff0c\u65af\u7279\u8fea\u5965\u5409\u5e03\u5229\u3002"} +{"id": "5000246", "video_name": "c0e9b2e5-5a0a-5563-8e6e-f7f81c75c964", "text": "\u7ea6\u7ff0\u00b7\u585e\u7eb3\u4e0e\u300a\u5821\u5792\u4e4b\u591c\u300b\u4e2d\u7684\u743c\u897f\u640f\u6597\u3002"} +{"id": "5000247", "video_name": "16d43139-0fe9-5435-8617-6881410f5393", "text": "\u514b\u91cc\u5e0c\u7eb3\u9a91\u7740\u4e00\u5339\u767d\u9a6c\u7a7f\u8fc7\u4e1b\u6797\u3002"} +{"id": "5000248", "video_name": "03f5b364-f4b1-598b-aa83-15ff57b0edd8", "text": "\u739b\u5229\u4e9a\u3001\u7ea6\u745f\u592b\u548c\u5a74\u513f\u8036\u7a23\u7684Ixar\u98ce\u683c\u52a8\u753b"} +{"id": "5000249", "video_name": "75975702-858f-5969-a3b2-61fd5cc90dbb", "text": "\u5065\u8eab\u623f\u5168\u666f\u7167\u7247\uff0c\u540e\u666f\u662f\u6709\u6c27\u8bfe\u7a0b\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000250", "video_name": "e97e57b1-bb70-5fff-ad05-e2f179c5a2dc", "text": "\u4e00\u4e2a\u88ab\u8718\u86db\u54ac\u4e86\u5e76\u53d8\u6210\u4e86\u8718\u86db\u4fa0\u7684\u7537\u4eba\uff0c\u63a5\u7740\u53d1\u751f\u4e86\u4ed6\u7684\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "5000251", "video_name": "1854418f-4cbc-55fc-b59b-472e22838b10", "text": "\u7537\u5b50\u5728\u5bb6\u89c2\u770b\u4e86\u4e24\u90e8\u6f2b\u753b\u4eba\u7269\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "5000252", "video_name": "ad3e5b20-0883-5399-9b39-eb6d790a133b", "text": "\u660e\u4eae\u7684\u6a59\u8272\u5915\u9633\u5728\u7a7a\u5730\u4e0a\uff0c\u98ce\u4e2d\u98de\u821e\u7740\u8424\u706b\u866b\u3002"} +{"id": "5000253", "video_name": "f9ea570c-5a32-5935-a928-d074dd413693", "text": "\u4ed6\u6b63\u80cc\u5bf9\u7740\u843d\u65e5\uff0c\u4e00\u8fb9\u6295\u7bee\uff0c\u4e00\u8fb9\u5728\u64cd\u573a\u4e0a\u8d70\u7740\u3002"} +{"id": "5000254", "video_name": "cc7a3320-0f46-572a-ad10-eb856219942f", "text": "\u73b0\u4ee3\u529e\u516c\u5ba4\u4e2d\uff0c\u5168\u7403\u7684\u8001\u677f\u548c\u5458\u5de5\u4eec\u6b63\u5728\u76f8\u9047\u548c\u8ba8\u8bba\u5de5\u4f5c\u3002"} +{"id": "5000255", "video_name": "1b5fd0ef-ccfc-5262-aa7d-f80fac169f6f", "text": "\u5973\u5fcd\u8005\u97a0\u8eac\u5411\u5bf9\u624b\uff0c\u80cc\u5f71\u88ab\u7535\u5f71\u5316\u5904\u7406\u3002\u5bf9\u624b\u6a21\u7cca\u4e0d\u6e05\uff0c\u80cc\u666f\u662f\u7f8e\u4e3d\u7684\u65e5\u5f0f\u795e\u6bbf\u5185\u90e8\u3002"} +{"id": "5000256", "video_name": "5f254e50-e7df-554e-8032-fc635bdc838d", "text": "\u4e00\u53ea\u5bb3\u6015\u7684\u732b\u8eb2\u5728\u704c\u6728\u4e1b\u5e95\u4e0b\uff0c\u96e8\u5929\u3002"} +{"id": "5000257", "video_name": "7fef6c9e-eccc-5bd3-b765-8aa123e8d79f", "text": "\u4e00\u4f4d\u5973\u5b66\u751f\u6b63\u5728\u9605\u8bfb\u4e00\u5c01\u4fe1\u3002"} +{"id": "5000258", "video_name": "a9b86b4c-d69b-542a-97e6-4e3e838e8bab", "text": "\u54e5\u4f26\u6bd4\u4e9a\u7389\u7c73\u997c\u914d\u9999\u80a0\u548c\u4e00\u676f\u70ed\u5de7\u514b\u529b\u3002"} +{"id": "5000259", "video_name": "c3c0ebb3-1924-564b-aec9-868d4b150e6d", "text": "\u5973\u5b69\u7a7f\u7740\u95ea\u4eae\u7684\u88d9\u5b50\uff0c\u5934\u53d1\u98d8\u9038\uff0c\u795e\u5947\u7684\u96ea\u82b1\u843d\u4e0b\uff0c\u5927\u57ce\u5e02\u7684\u706f\u5149\u548c\u8f66\u8f86\u95ea"} +{"id": "5000260", "video_name": "c15c755d-ad52-5d62-9155-ee7a8503eda7", "text": "\u903c\u771f\u7684\u30014k\u7684\u3001\u7535\u5f71\u822c\u7684\u3001\u8036\u7a23\u57fa\u7763\u81ea\u6740\u3002"} +{"id": "5000261", "video_name": "0d897671-f65d-56df-93d7-0869e781b38d", "text": "\u514b\u91cc\u5e0c\u7eb3\u5728\u300a\u6469\u8bc3\u5a46\u7f57\u591a\u300b\u6218\u573a\u7535\u5f71\u4e2d\u3002"} +{"id": "5000262", "video_name": "b162b8f6-5491-5c01-9489-ad2cc042b5bf", "text": "\u8036\u7a23\u57fa\u7763\u88ab\u9489\u5728\u5341\u5b57\u67b6\u4e0a\uff0c\u6447\u6643\u7740\u5934\uff0c\u6708\u4eae\u95ea\u70c1\uff0c\u4e4c\u9e26\u98de\u7fd4\u3002"} +{"id": "5000263", "video_name": "74a24a03-80f2-5ca0-802a-7efdb70cdffd", "text": "\u4e1b\u6797\u80cc\u666f\uff0c\u6811\u53f6\u968f\u98ce\u81ea\u7136\u6643\u52a8\uff0c\u6444\u50cf\u673a\u4ece\u5de6\u5411\u53f3\u5e73\u79fb\uff0c\u62c9\u8fd1\u955c\u5934\u3002"} +{"id": "5000264", "video_name": "94c6e01f-a6f5-5fc6-b489-3dce81edb473", "text": "\u4e00\u68f5\u94f6\u8272\u7684\u6811\u7a7f\u8fc7\u7530\u91ce\u8d70\u52a8\u3002"} +{"id": "5000265", "video_name": "2f2ac5d8-13bf-5789-a106-fb6f374fe207", "text": "\u89c1\u8bc1\u4e00\u90e8\u8d85\u8d8a\u4f20\u7edf\u8fb9\u754c\u7684\u7535\u5f71\u6d8c\u73b0\uff0c\u8fd9\u662f\u4eba\u7c7b\u521b\u9020\u529b\u548c\u673a\u5668\u5b66\u4e60\u667a\u6167\u548c\u8c10\u5171\u5b58\u7684\u8bc1\u660e\u3002\u7ed3\u679c\u4e0d\u4ec5"} +{"id": "5000266", "video_name": "8565acc1-f310-5c0f-ab34-f1c47c13db69", "text": "1970\u5e74\u4ee3\u7535\u89c6\u53a8\u623f\u7535\u5668\u5e7f\u544a"} +{"id": "5000267", "video_name": "a6d106c1-1627-576d-b3be-facfd22a7c82", "text": "\u6c99\u6ee9\u4e0a\u4e00\u7fa4\u4eba\u5728\u9003\u79bb\u6d77\u6d6a\u3002"} +{"id": "5000268", "video_name": "d485dcf4-cefc-5263-b6d5-641ef4e4abb5", "text": "\u6447\u6eda\u97f3\u4e50\u73b0\u573a\uff0c\u4eba\u4eec\u4e92\u76f8\u6253\u6597\u3002"} +{"id": "5000269", "video_name": "6990c3f9-7336-59d5-a999-96eef4f92ece", "text": "\u672a\u6765\u7684\u8f66\u5728\u7a7a\u4e2d\u98de\u884c\u8fc5\u901f\u3002"} +{"id": "5000270", "video_name": "76b29114-f49d-5b2a-8f0e-3583e4da5a89", "text": "\u4e3a\u6bcf\u79cd\u52a8\u7269\u53d1\u51fa\u5b83\u4eec\u72ec\u7279\u7684\u58f0\u97f3\u8fdb\u884c\u56fe\u89e3\u3002\u5728\u8fd9\u4e9b\u58f0\u97f3\u4e2d\u6dfb\u52a0\u97f3\u4e50\u5143\u7d20\uff0c\u521b\u9020\u51fa\u5f15\u4eba\u5165\u80dc\u3001\u6613\u8bb0\u7684\u66f2\u8c03"} +{"id": "5000271", "video_name": "0bd73058-9536-53da-ac35-0d8877d3225f", "text": "\u4e00\u4e2a\u540d\u4e3aDverse152\u76843D\u52a8\u753b\u6807\u5fd7\u3002"} +{"id": "5000272", "video_name": "644522e8-fea0-544a-92ff-2ecbc79cab95", "text": "\u8d85\u73b0\u5b9e\u7684\u9ec4\u7eff\u8272\uff0c1:1\u6bd4\u4f8b\uff0c\u5510\u8001\u9e2d\u548c\u5df4\u7279\u8f9b\u666e\u68ee\u5438\u98df\u5927\u9ebb\uff0c\u4e0e\u7ea2\u8272\u9752\u86d9"} +{"id": "5000273", "video_name": "a1445b52-f450-5866-a9c9-1f5fd2f74884", "text": "\u4e00\u53ea\u957f\u7740\u7fc5\u8180\u7684\u767d\u864e\u7a7f\u8fc7\u5c71\u8109\u3002"} +{"id": "5000274", "video_name": "d0eff637-1372-5bc2-b14c-ddfbdabd09e2", "text": "\u4e00\u4e2a\u5e05\u6c14\u7684\u97e9\u56fd\u52a8\u6f2b\u7537\u5b50\u7a7f\u7740\u9ed1\u8272\u7684\u9b54\u6cd5\u5e08\u670d\u88c5\u3002"} +{"id": "5000275", "video_name": "0442a70b-97ad-5e97-b3f3-f7cb72995637", "text": "\u6709\u4e00\u4e2a\u7537\u5b69\u5e26\u7740\u4e00\u4e9b\u4e1c\u897f\u79bb\u5bb6\u5bfb\u627e\u5b9d\u85cf\u5728\u4e00\u4e2a\u4e16\u754c\u4e2d\u3002"} +{"id": "5000276", "video_name": "51bcefc9-2446-5483-be49-0293e7350618", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u4e00\u4e2a\u88c5\u6709\u6de1\u84dd\u8272\u6db2\u4f53\u7684\u74f6\u5b50\uff0c\u5b83\u55b7\u51fa\u4e00\u79cd\u5feb\u4e50\u548c\u6109\u60a6\u7684\u6c14\u606f\u3002"} +{"id": "5000277", "video_name": "2a8e40b3-a329-5e8b-a683-40c7eb268d07", "text": "\u4e00\u8258\u7a7f\u8d8a\u94f6\u6cb3\u7cfb\u7684\u592a\u7a7a\u98de\u8239\uff0c\u661f\u661f\uff0c\u5149\u7ebf\uff0c\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "5000278", "video_name": "35b7f9bc-8a6d-5942-9230-d7785eea8b2e", "text": "\u592a\u7a7a\u4eba\u4ece\u5bc6\u5c01\u7684\u8d5b\u535a\u670b\u514b\u8231\u4e2d\u98de\u51fa\uff0c\u5916\u9762\u6709\u9668\u77f3\u98de\u8fc7\u3002"} +{"id": "5000279", "video_name": "c46425cb-2831-55aa-ba3a-049f9a0adffa", "text": "\u5c06\u4eba\u53d8\u6210\u673a\u5668\u4eba\uff0c\u4f7f\u8eab\u4f53\u4ece\u4e00\u4e2a\u4f4d\u7f6e\u79fb\u52a8\u5230\u53e6\u4e00\u4e2a\u4f4d\u7f6e\u5e76\u8f6c\u5316\u4e3a\u5168\u606f\u56fe\u3002"} +{"id": "5000280", "video_name": "98805f3b-471d-5007-8add-41c9ea2e4f9d", "text": "\u5047\u671f\u5373\u5c06\u5230\u6765\u3002\u6d88\u606f\uff1a\u96ea\u6797\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000281", "video_name": "7895a722-adeb-5d78-a458-fb0ac77a6ed8", "text": "\u5185\u5728\u7684\u5c3a\u5bf8\u8f90\u5c04\uff0c\u4e00\u4e2a\u4eba\u7684\u5f62\u8c61\uff0c16:9\u3002"} +{"id": "5000282", "video_name": "4c539444-2736-54ef-a4ec-533918d7d8a5", "text": "\u80d6\u5973\u4eba\u8d70\u8def\u3002\u7a7f\u7740\u4f53\u80b2\u670d\uff0c\u4ece\u80cc\u540e\u770b\uff0c\u7a7f\u7740\u6df1\u84dd\u8272\u77ed\u88e4\u3002"} +{"id": "5000283", "video_name": "b418c0f9-5616-505f-9368-6e28a628c223", "text": "\u5e74\u8f7b\u5973\u5b69\u6b63\u5728\u900f\u660e\u7684\u6d17\u8863\u673a\u91cc\u6d17\u8863\u670d\uff0c\u6211\u4eec\u53ea\u770b\u5230\u6c34\u548c\u8863\u670d\u5728\u7a7a\u4e2d\u6f02\u6d6e\u3002"} +{"id": "5000284", "video_name": "f888f369-6fda-5936-89e2-8fe15c0d2e9c", "text": "\u5934\u52a8\u76ae\u6bdb\u4e0d\u52a8\u3002"} +{"id": "5000285", "video_name": "b2f43751-93dd-54a1-a93f-c0d8f193671b", "text": "\u4e00\u7247\u6709\u7740\u9ad8\u9ad8\u7684\u7eff\u6811\u548c\u91ce\u751f\u73af\u7ed5\u7684\u68ee\u6797\uff0c\u52a0\u4e0a\u4e00\u6761\u6cb3\u6d41\u548c\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u903c\u771f\uff0c8k\u3002"} +{"id": "5000286", "video_name": "c0c492bd-4f20-511a-a475-5e4adf3c42c2", "text": "\u592a\u7a7a\u8ba1\u5212\u4efb\u52a1\uff0c1970\u5e74\u4ee3\u7684\u7eaa\u5f55\u7247\u98ce\u683c\u3002"} +{"id": "5000287", "video_name": "055bff5f-7aab-5e71-a25d-2105af3e2ea0", "text": "\u58f0\u97f3\u4ece\u5934\u65c1\u8fb9\u4f20\u6765\u5e76\u5230\u8fbe\u5185\u8033\u7684\u79d1\u5b66\u84dd\u56fe\u89c6\u9891\uff0c\u4fa7\u9762\u89c6\u56fe\u52a8\u753b\u6ca1\u6709\u9762\u90e8\u7279\u5f81\u3002"} +{"id": "5000288", "video_name": "8d1529b3-a370-5f31-a535-e2054edb5006", "text": "\u4e00\u4e2a\u7ed9\u4eba\u6e29\u67d4\u548c\u6e29\u6696\u5370\u8c61\u7684\u6bcd\u4eb2\u3002"} +{"id": "5000289", "video_name": "674de3db-9da9-57ce-a535-14519d8d04fb", "text": "\u6838\u7206\u70b8\u3001\u6770\u4f5c\u3001\u7535\u5f71\u3001\u52a8\u6001\u573a\u666f\u3001\u52a8\u4f5c\u3001HDR\u30014K\u3002"} +{"id": "5000290", "video_name": "983a5010-da25-58b7-9e8f-ed0ea0f94ad2", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5305\u542b\u5370\u5ea6\u6559\u6559\u4e49\u300a\u5420\u9640\u300b\u7684\u4e66\u7c4d\u94fe\u63a5\u7684\u89c6\u9891\u3002 \n\nSource sentence: Can you please send me the details of the product? \n\u8bf7\u95ee\u4f60\u80fd\u5426"} +{"id": "5000291", "video_name": "57fddf88-09d3-5320-bea0-d919ab75fd34", "text": "\u6444\u50cf\u673a\u8f7b\u67d4\u5730\u7a7f\u8fc7\u8302\u5bc6\u7684\u7eff\u8272\u68ee\u6797\uff0c\u5de8\u5927\u7684\u6811\u6728\u4f38\u5411\u5929\u7a7a\uff0c\u9633\u5149\u900f\u8fc7\u6811\u679d\uff0c\u50cf\u300a"} +{"id": "5000292", "video_name": "948a3a9d-6810-5782-9338-20a334e0c770", "text": "\u5b87\u5b99\u7684\u5927\u80af\u5b9a\uff01"} +{"id": "5000293", "video_name": "27e4baff-4acb-5bcf-8b01-ebbd64462c3e", "text": "\u4e0d\u540c\u79cd\u7c7b\u7684\u751f\u7269\u4f2a\u88c5\u6210\u4eba\u7c7b\uff0c\u773c\u775b\u660e\u663e\u4e0d\u5bf9\u52b2\uff0c\u975e\u5730\u7403\u751f\u7269\uff0c\u4ee4\u4eba\u4e0d\u5b89\u7684\u5947\u602a\u6c14\u606f\u65e0\u5904\u4e0d\u5728\uff0c"} +{"id": "5000294", "video_name": "6334dfbf-8465-599d-b6a8-9334db009fd4", "text": "\u739b\u4e3d\u83b2\u00b7\u68a6\u9732\u559d\u5496\u5561\uff0c\u903c\u771f\uff0c\u590d\u53e4\uff0c\u8d85\u8be6\u7ec6\uff0c\u5496\u5561\u5e97\u80cc\u666f\uff0c\u7535\u5f71\uff0c\u5973\u6f14"} +{"id": "5000295", "video_name": "6c400456-4263-5ff8-a3ee-845e713e7320", "text": "\u4e00\u4f4d\u521a\u505a\u5b8c\u690d\u53d1\u624b\u672f\u7684\u7537\u5b50"} +{"id": "5000296", "video_name": "6ed828e0-d740-59f6-9fd7-8cbbeef5f92d", "text": "\u4e00\u4e2a\u4e2d\u5fc3\u53d1\u5149\u7684\u95e8\u6237\u52a8\u4e86\u8d77\u6765\u3002\u539f\u5b50\u548c\u8d28\u5b50\u76f8\u4e92\u78b0\u649e\u3002"} +{"id": "5000297", "video_name": "01bcab7a-ae5c-59e7-894c-c7e6138b2f05", "text": "\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c\u4e00\u53ea\u6d77\u9e25\u6816\u606f\u5728\u5e06\u8239\u7684\u680f\u6746\u4e0a\u3002"} +{"id": "5000298", "video_name": "485de1ac-593b-5f77-81fb-0f17224c4afe", "text": "\u5e74\u8f7b\u5973\u5b50\u4e0e\u5973\u53cb\u5fae\u7b11\u3002"} +{"id": "5000299", "video_name": "01b8b994-046f-57c2-b834-c6e4d581d809", "text": "\u572814\u4e16\u7eaa\uff0c\u62c9\u65af\u666e\u4eac\u7684\u7236\u4eb2\u5728\u4e00\u5ea7\u5821\u5792\u91cc\u4e0e\u4e00\u4f4d\u4fe1\u5f92\u8bb2\u9053\u3002"} +{"id": "5000300", "video_name": "3b12a9fa-c74d-530a-8da1-e07c19962c44", "text": "\u4ee5\u5409\u535c\u529b\u7535\u5f71\u7684\u98ce\u683c\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u5893\u5730\u91cc\uff0c\u4ed6\u8dea\u4e0b\u6765\u628a\u4e00\u4e2a\u7f50\u5b50\u7cd6\u679c\u653e\u5728\u4e00\u5ea7\u575f\u5893\u4e0a"} +{"id": "5000301", "video_name": "5e6e5c31-2760-5366-ba71-c8060e3b119b", "text": "\u4e00\u540d\u7ad9\u5728\u8857\u4e0a\uff0c\u65c1\u8fb9\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u7684\u5973\u5b69\u7684\u7537\u5b50\u3002"} +{"id": "5000302", "video_name": "0831a45f-c2d9-5de2-8e0d-25fc740e41ac", "text": "\u58eb\u5175\u8fdb\u5165\u623f\u95f4\uff0c\u4e3e\u8d77\u6b66\u5668\uff0c\u51c6\u5907\u884c\u52a8\u3002"} +{"id": "5000303", "video_name": "d9c7c03f-2015-5955-bc31-94c4590f6869", "text": "\u4e00\u4e2a\u7a7f\u7740\u91d1\u8272\u76d4\u7532\u3001\u624b\u6301\u6cbe\u8840\u957f\u5251\u7684\u7537\u4eba\uff0c\u51fa\u73b0\u5728\u4e00\u90e8\u9ad8\u54c1\u8d28\u52a8\u753b\u91cc\u3002"} +{"id": "5000304", "video_name": "5641e427-4620-5cc8-b20f-66e8f06f2928", "text": "\u975e\u5e38\u62e5\u6324\u7684\u793a\u5a01\u6d3b\u52a8\uff0c\u6570\u5343\u540d\u4ee5\u8272\u5217\u4eba\u624b\u6301\u4ee5\u8272\u5217\u56fd\u65d7\u548c\u6a2a\u5e45\u793a\u5a01\u3002\u591c\u665a\u3002\u6db5\u4e49\uff08"} +{"id": "5000305", "video_name": "7a805ff9-aeb1-50ea-928e-c65b5b84269f", "text": "\u5b81\u9759\u7684\u6751\u5e84\uff0c\u6709\u8ff7\u4eba\u7684\u623f\u5c4b\u548c\u82b1\u56ed\u3002"} +{"id": "5000306", "video_name": "ee9308a3-bab0-595e-b599-c4e7413925d9", "text": "\u4e00\u4f4d\u7a7f\u7740\u673a\u5668\u4eba\u670d\u88c5\u3001\u624b\u4e2d\u62ff\u7740\u4e94\u8292\u661f\uff0c\u4ee5\u963f\u8bfa\u5fb7\u00b7\u8212\u4f2f\u7279\u7684\u98ce\u683c\u3001\u54e5\u7279\u6838\u5fc3\u3001\u98a0"} +{"id": "5000307", "video_name": "3b133aeb-f22c-5580-87a3-ea5f7cffdaaf", "text": "\u4e00\u6bb5\u753b\u8d28\u6e05\u6670\u7684\u5168\u8eab\u8239\u4e0a\u6d77\u76d7\u4e0b\u96e8\u573a\u666f\u7684\u539f\u59cb\u89c6\u9891\u3002"} +{"id": "5000308", "video_name": "dcfee844-7e06-5523-bab2-98f76c43adba", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797\u548c\u6cb3\u6d41\u76844K\u65e0\u4eba\u673a\u89c6\u89d2\u3002"} +{"id": "5000309", "video_name": "e8c8a007-2d1b-5001-a2e9-b23fb64edfa2", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u6b63\u5728\u62e8\u6253\u624b\u673a\uff0c\u80cc\u666f\u662f\u4e00\u4e2a\u5927\u90fd\u5e02\uff0c\u660e\u4eae\u7684\u706f\u5149\uff0c\u9ad8\u7cbe\u5ea6\uff0c\u9ad8\u8d28\u91cf\uff0c4K\u3002"} +{"id": "5000310", "video_name": "9794f99b-c5dd-5ff7-ac2e-43ae919a573f", "text": "\u5728\u4e0d\u540c\u7684\u6545\u4e8b\u573a\u666f\u4e4b\u95f4\u8fc7\u6e21\uff0c\u6bcf\u4e00\u4e2a\u66f4\u6df1\u5165\u4ed9\u5883\u3002"} +{"id": "5000311", "video_name": "bc4bde02-eb6b-523f-891c-457c0237a61a", "text": "\u4e00\u4e2a\u7537\u4eba\u5927\u58f0\u5730\u6309\u7167\u52a8\u6f2b\u98ce\u683c\u8fd1\u8ddd\u79bb\u558a\u53eb\uff0c8K\u9ad8\u6e05\u77ed\u7247\u3002"} +{"id": "5000312", "video_name": "f03441ab-618f-5d08-a882-831d93fa4c4b", "text": "\u4e00\u4f4d\u50cf\u5f7c\u5f97\u00b7\u4fdd\u7f57\u00b7\u9c81\u672c\u65af\u98ce\u683c\u7684\u5983\u5ad4\uff1a\u8ba9\u5979\u76ae\u80a4\u767d\u7699\uff1a\u5979\u6b63\u5728\u8eba\u7740\uff1a"} +{"id": "5000313", "video_name": "e2d105bd-79de-5028-a29d-86bdcb4e5de9", "text": "\u4e00\u4e2a\u6709\u5f88\u591a\u5f69\u8272\u5c4f\u5e55\u7684\u623f\u95f4\uff0c\u98ce\u683c\u50cf\u662f\u597d\u73a9\u7684\u673a\u5668\u3002"} +{"id": "5000314", "video_name": "0c714483-7bf0-5854-baf1-9ef98b1e993e", "text": "\u5f69\u8272\u5a74\u513f\u5a03\u5a03\u4e0a\u7684\u4ed9\u5973\u7fc5\u8180"} +{"id": "5000315", "video_name": "5af6aed3-7c83-5d2b-9ea2-5cfab4e98ad5", "text": "\u672a\u6765\u4e3b\u4e492050\u5e74\u590f\u5b63\u8fde\u8863\u88d9\u7f51\u5e97\uff0cG S 22\uff0c\u7535\u5f71\u822c\u7684\uff0c\u76f8\u673a\u65cb\u8f6c\u3002"} +{"id": "5000316", "video_name": "7377b313-8870-571f-b798-904fd157fcba", "text": "\u4e16\u754c\u4e0a\u6700\u5927\u7684\u7011\u5e03\u5f69\u8679\u8272\u7684\u6c34\u89c6\u9891\u3002"} +{"id": "5000317", "video_name": "f22fbda4-a4ee-5e87-87aa-192009babd71", "text": "\u4e54\u6cbb\u00b7\u534e\u76db\u987f\uff0c\u53c8\u79f0\u4e3a\u5373\u4f4d\u534e\u76db\u987f\uff0c\u662f\u7531\u970d\u62c9\u63d0\u5965\u00b7\u683c\u6797\u8bfa\u521b\u4f5c\u7684\u4e00\u5c0a\u5927\u7406\u77f3\u96d5"} +{"id": "5000318", "video_name": "264f0695-310d-537f-b55f-93b14a14de72", "text": "\u67e5\u7406\u00b7\u66fc\u68ee\u7a7f\u7740\u5723\u6606\u5ef7\u6a59\u8272\u8fde\u8eab\u8863\u4e3a\u4e86\u5a31\u4e50\u505a\u7740\u83ab\u8389\u00b7\u74e6\u666e\u3002"} +{"id": "5000319", "video_name": "2e9b1562-7524-5399-8fcd-b8416b30e86c", "text": "\u7535\u5f71\u822c\u7684\u7279\u5199\u955c\u5934\uff0c\u62cd\u6444\u67d0\u4eba\u5728\u62c9\u65af\u7ef4\u52a0\u65af\u73a9\u6251\u514b\u3002"} +{"id": "5000320", "video_name": "e47e9f6a-7cf5-5e36-9e8a-3b1db1c76e5f", "text": "\u4e00\u90e8\u4e13\u4e1a\u76843D\u52a8\u753b\u89c6\u9891\uff0c\u5206\u8fa8\u7387\u4e3a4K\uff0c\u5185\u5bb9\u4e3a\u89c6\u89c9\u8bd7\u6b4c\u3002"} +{"id": "5000321", "video_name": "9d8ee257-9a9b-52c2-a25a-3daac77adc66", "text": "\u98d8\u9038\u7684\u80a9\u957f\u91d1\u53d1\u7684\u5feb\u4e50\u5c0f\u5973\u5b69\u7a7f\u7740\u53ef\u7231\u7684\u88d9\u5b50\uff0c\u624b\u6301\u6570\u5b571\u7684\u5f62\u72b6\uff0c\u5361\u901a\u98ce\u683c\uff0c\u9634\u5f71"} +{"id": "5000322", "video_name": "9d714bc9-4fe9-5b7c-b98b-282199e2a472", "text": "\u4ecb\u7ecd\u4e00\u4e2a\u95ea\u56de\u573a\u666f\uff0c\u63cf\u8ff0\u5728\u8c6a\u5b85\u4e2d\u6df1\u7231\u7684\u592b\u5987\u5e78\u798f\u7684\u65f6\u523b\u3002"} +{"id": "5000323", "video_name": "f6fb53f6-fef1-520c-a6b6-29efdd10ecfe", "text": "\u56fe\u4e66\u9986\u7684\u4e00\u6392\u591a\u5f69\u4e66\u67b6\uff1a\u7a81\u51fa\u4e66\u67b6\u4e0a\u4e66\u7c4d\u7684\u9c9c\u8273\u4e66\u810a\uff0c\u5c55\u73b0\u5b83\u4eec\u6240\u5305\u542b\u7684\u77e5\u8bc6\u548c\u5386"} +{"id": "5000324", "video_name": "fcc8efed-ec76-58e1-9627-5753cb4a18a2", "text": "\u4e00\u53ea\u7a7f\u7740\u793c\u5e3d\uff0c\u5728\u8fea\u65af\u79d1\u4e0a\u8df3\u821e\u7684\u5927\u7329\u7329\uff0c\u9752\u8272\u548c\u7d2b\u8272\u7684\u706f\u5149\u3002"} +{"id": "5000325", "video_name": "d6fce573-d30b-5459-888d-f67148972208", "text": "\u5f20\u6ee1\u6708\uff08\u9152\u5e97\u4e4b\u6708\uff09\u5bf9\u9635\u7329\u7ea2\u5973\u5deb"} +{"id": "5000326", "video_name": "5289c20e-a921-553f-ab28-286627afbd60", "text": "Source sentence: \u8389\u8389\u00b7\u8292\u65af\u7279\u662f\u4e00\u4f4d\u5723\u6d01\u7684\u5723\u4eba\u3002\n\nSource sentence: The cat is sleeping on the couch. \nTranslated sentence: \u732b\u54aa\u6b63\u5728"} +{"id": "5000327", "video_name": "df06f4e7-807a-5efe-813b-ad3d449bf8a0", "text": "\u624b\u673a\u5c4f\u5e55\u4e0a\u8d34\u7740\u4e24\u4ef6\u5e72\u51c0\u7684\u8863\u670d\u7684\u79fb\u52a8\u7535\u8bdd\u4ee5\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u65b9\u5f0f\u5448\u73b0\u4e86\u51fa\u6765\u3002"} +{"id": "5000328", "video_name": "1d61313c-4ff8-529e-b5cd-2b08e349fade", "text": "\u77ed\u53d1\u7684\u7f57\u831c\u00b7\u5965\u5510\u5948\u6210\u4e3a\u5173\u6ce8\u7684\u4e2d\u5fc3\uff0c\u5e0c\u671b\u6240\u6709\u4eba\u90fd\u628a\u6ce8\u610f\u529b\u653e\u5728\u5979\u8eab\u4e0a\u7684\u52a8\u753b\u5361\u901a\u3002"} +{"id": "5000329", "video_name": "d181caf4-d4ef-5097-a1c0-cef17f5c5297", "text": "\u6211\u4eec\u6240\u5bb3\u6015\u7684\u53ea\u6709\u5bb3\u6015\u672c\u8eab\uff0c\u7ea2\u718a\u732b\uff0c\u975e\u51e1\u7684\uff0c\u771f\u5b9e\u611f\uff0c\u7535\u5f71\u7ea7\u706f\u5149\uff0c\u8fb9\u7f18\u5149\uff0c\u9ad8"} +{"id": "5000330", "video_name": "b9f5a72f-f86c-58fc-be76-f3d6bcf40018", "text": "\u7537\u5b69\u6b63\u5728\u9a91\u9a6c\uff0c\u4e00\u53ea\u8001\u864e\u5728\u8ffd\u4ed6\u3002"} +{"id": "5000331", "video_name": "6c61b413-54f3-539a-bd66-8336838b0008", "text": "\u5c55\u73b0\u51fa\u83f2\u5f8b\u5bbe\u4eba\u8eab\u4efd\u7684\u884c\u4e3a"} +{"id": "5000332", "video_name": "d0f98ac8-7c96-519b-889a-e75ccac7b4de", "text": "\u76ae\u514b\u65af\u4e3b\u9898\u3002\u4e00\u4e2a\u7f8a\u7ad9\u5728\u4e00\u4e2a\u79c3\u5934\u7537\u4eba\u65c1\u8fb9\uff0c\u4ed6\u671d\u7740\u5c4f\u5e55\u770b\u3002\u4ed6\u4eec\u6b63\u5728\u4e3a\u6218\u6597\u505a\u51c6\u5907\u3002"} +{"id": "5000333", "video_name": "1cefdc52-1ddc-5cd6-803d-02712b81746f", "text": "\u5929\u4f7f\u98de\u8fc7\u7ebd\u7ea6\u57ce\u5e02\u3002"} +{"id": "5000334", "video_name": "e260821d-46db-5050-ae0b-4b970b3dfb43", "text": "\u753b\u4e00\u5e45\u6d77\u6d0b\u3001\u592a\u9633\u548c\u6d77\u9e25\u7684\u56fe\u753b\u3002"} +{"id": "5000335", "video_name": "be89c553-0c18-5a61-9b69-7fdd7905100b", "text": "\u4e00\u8f86\u70df\u96fe\u5f25\u6f2b\u4e2d\u80ce\u7740\u706b\u7684\u91ce\u9a6c\u6c7d\u8f66\u5728\u8def\u4e0a\u5954\u9a70\u3002"} +{"id": "5000336", "video_name": "f8952676-7ef9-5047-a552-0e52f0c8b12f", "text": "\u98de\u9f99\uff0c\u6c14\u52bf\u78c5\u7934\uff0c\u5927\u91cf4K\u8fd0\u52a8\u3002"} +{"id": "5000337", "video_name": "c1a624a2-8543-506a-a773-4966437f951f", "text": "\u5e7f\u9614\u7684\u753b\u9762\u4e0a\u662f\u4e00\u4e2a\u5e05\u6c14\u7684\u975e\u88d4\u7f8e\u56fd\u7537\u5b50Tino\uff0c\u4ed6\u5149\u5934\u7559\u7740\u80e1\u987b\uff0c\u4ee5\u53ca\u4e00\u4f4d\u7f8e\u4e3d\u7684\u975e\u88d4\u7f8e\u56fd"} +{"id": "5000338", "video_name": "f6070ec9-c1e4-5d96-b16e-f4ac40c5436f", "text": "\u4e00\u4e2a\u7a7f\u7740\u9632\u62a4\u670d\u7684\u7537\u4eba\u7ad9\u5728\u8611\u83c7\u4e91\u7206\u70b8\u7684\u524d\u9762\u3002"} +{"id": "5000339", "video_name": "b6c8eadf-92f6-5d09-85bf-03b9fecb8001", "text": "\u4ed6\u4eec\u8d70\u4e86\u4e00\u6bb5\u65f6\u95f4\uff0c\u6765\u5230\u4e86\u4e00\u4e2a\u79d8\u5bc6\u5bab\u6bbf\u7684\u95e8\u524d\uff0c\u91cc\u9762\u6709\u4e00\u9876\u95ea\u95ea\u53d1\u5149\u7684\u7687\u51a0\u3002\u4ed6\u4eec\u9700\u8981\u901a\u8fc7\u4e00\u9879"} +{"id": "5000340", "video_name": "efd79f72-fc57-5c6c-a8d9-c1367046f247", "text": "\u82f9\u679c\u65c1\u8fb9\u7684\u5b57\u6bcdA\u3002"} +{"id": "5000341", "video_name": "432b5057-0873-5f7b-bb65-43f3b3fac468", "text": "\u4e00\u4e2a\u54c8\u9a6c\u65af\u519b\u961f\u5230\u8fbe\u51c6\u5907\u6218\u6597\u3002"} +{"id": "5000342", "video_name": "ac36e81b-0c7b-5cbc-8cee-e26dbc49c878", "text": "\u5496\u5561\u53d8\u6210\u4e86\u9c7c\u7684\u5f62\u72b6\u3002"} +{"id": "5000343", "video_name": "4b8d1040-5e2d-5c60-8316-beacc5279531", "text": "\u6211\u7a7f\u8fc7\u4e86\u7530\u91ce\uff0c\u7136\u540e\u8dcc\u5165\u4e86\u5c0f\u6eaa\u3002"} +{"id": "5000344", "video_name": "b38dda00-e4b4-5ddb-8a62-26b63dd5690b", "text": "\u706b\u661f\u6b63\u5728\u9010\u6e10\u53d8\u6210\u84dd\u7eff\u8272\uff0c\u5c31\u50cf\u5730\u7403\u4e00\u6837\u3002"} +{"id": "5000345", "video_name": "5ae0122f-aaa4-5db4-a191-f1562a9d7ee9", "text": "\u4e00\u5e45\u7537\u4eba\u8116\u5b50\u4e0a\u6302\u7740\u94fe\u5b50\uff0c\u5973\u4eba\u624b\u6301\u5200\u7684\u753b\u4f5c\uff0c\u827e\u5229\u514b\u65af\u00b7\u970d\u5229\uff0c\u7089\u77f3\u4f20\u8bf4\uff0c\u6982"} +{"id": "5000346", "video_name": "7e321900-5f90-59e7-b109-ef6803cc4b35", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\u5750\u5728\u94c1\u738b\u5ea7\u4e0a\uff0c4k 16:9"} +{"id": "5000347", "video_name": "6a234027-07f4-5ff4-b68c-80f0c993f414", "text": "\u5e7f\u544a\u5ba3\u4f20\u4e00\u5bb6\u773c\u79d1\u8bca\u6240\uff0c\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b50\u6254\u6389\u4e86\u773c\u955c\uff0c\u53d8\u5f97\u66f4\u52a0\u5feb\u4e50\u3002"} +{"id": "5000348", "video_name": "022938e5-3252-55ff-af05-a31a884e8f3f", "text": "\u4e94\u7b49\u5206\u7684\u82b1\u5ac1\u4e2d\uff0c\u4e2d\u91ce\u4e09\u7396\u7ad9\u5728\u516c\u56ed\u91cc\uff0c\u7a7f\u7740\u79cb\u5b63\u670d\u88c5\uff0c\u5468\u56f4\u662f\u9ec4\u53f6\u3002"} +{"id": "5000349", "video_name": "f6f65e91-77fa-5958-9612-aaea42c3a575", "text": "\u9e1f\u77b0\u5723\u51ef\u745f\u7433\u666f\u8272\uff0c\u6444\u50cf\u673a\u79fb\u52a8\u3002"} +{"id": "5000350", "video_name": "22bee9c7-38fb-5021-8c15-ccbe6af84c93", "text": "\u9762\u5bf9\u7a7f\u7740\u79d1\u5e7b\u98ce\u683c\u8fde\u8eab\u88e4\u7684\u5e74\u8f7b\u5973\u6027\u3002"} +{"id": "5000351", "video_name": "c5a7b4b7-ec02-560e-9e7c-75c4d8049d6b", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u8fea\u58eb\u5c3c\u725b\u5728\u8349\u5730\u4e0a\u8d70\u8def\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u9e1f\u513f\u5728\u6b4c\u5531\uff0c\u7f8e\u4e3d\u7684\u84dd"} +{"id": "5000352", "video_name": "c7dea37d-9f8c-5d03-8a74-482466aa5c50", "text": "\u53e4\u4ee3\u975e\u6d32\u5973\u6218\u58eb\u6ce8\u89c6\u7740\u6c34\u725b\u7fa4\u5954\u8dd1\u5728\u5730\u5e73\u7ebf\u4e0a\uff0c\u60c5\u5883\u620f\u5267\u5316\uff0c\u5e7b\u60f3\u6c14\u6c1b\uff0c"} +{"id": "5000353", "video_name": "538f0340-2309-5f90-89d1-7b9579c0a033", "text": "\u7a7f\u7740\u67ef\u82ad\u96c5\u7684\u5973\u5b69\u4eec\uff1a\u751f\u6210\u4e00\u5f20\u56fe\u7247\uff0c\u5c55\u793a\u6234\u7740\u95ea\u95ea\u53d1\u5149\u62ab\u80a9\u7684\u5973\u5b69\uff0c\u6bcf\u4e2a\u4eba\u4ee3\u8868\u7740\u4e0d"} +{"id": "5000354", "video_name": "a73036d1-8cac-53ea-bffa-c4c3ace6206d", "text": "\u5f00\u59cb\u4ee5\u6b63\u9762\u89c6\u89d2\u5c55\u73b0\u6e05\u6f88\u84dd\u5929\u7684\u5e7f\u88a4\u8fbd\u9614\uff0c\u9010\u6e10\u62c9\u8fd1\u3002"} +{"id": "5000355", "video_name": "2b652590-6439-51e9-97d8-8d6838d19976", "text": "\u5e26\u6709\u5747\u5300\u6f02\u6d6e\u7684\u7ec6\u5c0f\u5fc3\u5f62\u56fe\u6848\u7684\u7eaf\u8272\u6de1\u7c89\u548c\u7ea2\u8272\u5149\u7ebf\u7684\u52a8\u6001\u80cc\u666f\u3002"} +{"id": "5000356", "video_name": "fadd6730-9b2b-55e0-a8c4-164df5e89eb5", "text": "\u8fc8\u51ef\u4f26\u5728\u96e8\u4e2d\u884c\u9a76\u3002"} +{"id": "5000357", "video_name": "705bef49-d342-51cf-9e67-ab0b56b940a7", "text": "\u4e00\u540d\u5973\u5b50\u5728\u6ed1\u96ea\u65f6\u5403\u82f9\u679c\u3002"} +{"id": "5000358", "video_name": "889c5944-18db-5965-8a5d-72afa660397a", "text": "\u96ea\u8c37\u4e0e\u6d6a\u6f2b\u60c5\u4fa316:9\u3002"} +{"id": "5000359", "video_name": "b8420814-742d-5e3a-b169-dfe9f8fb3cab", "text": "\u5c0f\u5fc3\u5730\u4ecb\u7ecd\u52c7\u6562\u7684\u4e3b\u4eba\u516c\u8fdb\u5165\u4e1b\u6797\uff0c\u88ab\u8302\u5bc6\u7684\u6811\u53f6\u6846\u51fa\u3002"} +{"id": "5000360", "video_name": "de187080-6393-585d-9a5f-a1088f7021cd", "text": "\u7d2b\u8272\u7684\u6c14\u6ce1\u91cc\u6709\u4e00\u4e2a\u91d1\u5c5e\u4eba\uff0c\u8fd8\u6709\u4e00\u4e2a\u7a7f\u7740\u7d2b\u8272\u6b7b\u795e\u670d\u88c5\u7684\u5f71\u5b50\uff0c\u91cc\u9762\u88c5\u6ee1\u4e86\u9ed1\u8272\u7684\u6db2\u4f53\u3002"} +{"id": "5000361", "video_name": "0fd6c983-620c-5fd4-829d-0d35342e4a81", "text": "\u4e00\u4e2a\u521d\u5b66\u8005\u5728\u5367\u5ba4\u91cc\u6253\u9f13\u3002"} +{"id": "5000362", "video_name": "7db2db1b-ee34-5f1c-b79b-e499c7bb8593", "text": "\u84dd\u53d1\u5973\u5b50\uff0c\u5947\u5f02\u7684\u773c\u775b\uff0c\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "5000363", "video_name": "94a386de-adfe-5298-9c7e-95c5075d960f", "text": "\u7c89\u8272\u70ed\u5e26\u9752\u86d9\u3002\u4e24\u53ea\u773c\u775b\u3002\u56db\u53ea\u722a\u5b50\u3002\u57ce\u5e02\u3002\u70df\u96fe\u30024K\u3002"} +{"id": "5000364", "video_name": "6f07caee-7681-5734-af7a-ad29a9025d1c", "text": "\u8499\u53e4\u4eba\u7a7f\u7740\u8499\u53e4\u670d\u88c5\u5728\u8349\u539f\u4e0a\u884c\u8d70\u3002"} +{"id": "5000365", "video_name": "00774360-28f7-5c50-b050-190526eb1fe6", "text": "\u58eb\u5175\u4e4b\u95f4\u7684\u51b2\u7a81\u526a\u5f71\uff0c\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u9ed1\u6697\u3002"} +{"id": "5000366", "video_name": "5e7d5e2a-c71f-5b76-ae38-674ebe7b7451", "text": "\u6447\u66f3\u7684\u5934\u53d1\uff0c\u773c\u775b\u7f13\u6162\u7728\u52a8\uff0c\u6c34\u6d41\u52a8\uff0c\u6811\u679d\u8f7b\u8f7b\u6643\u52a8\u3002"} +{"id": "5000367", "video_name": "65b7df4c-e3be-54ef-9fc9-f2821a9cfc5f", "text": "\u9102\u5716\u66fc\u8607\u4e39\u96c5\u6b66\u8332\u00b7\u585e\u5229\u59c6\u9a0e\u99ac\u5feb\u901f\u884c\u9032\u3002"} +{"id": "5000368", "video_name": "7d1a406c-56d9-513c-8918-2879680e87d6", "text": "\u820c\u5934\u4e0a\u4e0b\u6446\u52a8\uff0c\u7f13\u6162\u7684\u52a8\u4f5c\uff0c\u7b2c\u4e94\u4e2a\u52a8\u4f5c\u3002"} +{"id": "5000369", "video_name": "a7de4bf1-1327-50b0-afaf-a9a610db29c8", "text": "\u4e00\u4f4d\u5b64\u7368\u7684\u8eab\u5f71\u7167\u5728\u805a\u5149\u71c8\u4e0b\uff0c\u7f6e\u8eab\u821e\u53f0\u4e2d\u592e\u3002\u8eab\u5f71\u4ee5\u512a\u96c5\u7684\u59ff\u614b\u821e\u52d5\uff0c\u8868"} +{"id": "5000370", "video_name": "79d997e1-9b61-5f2a-97a6-b7cf7ab9219f", "text": "\u6709\u4eba\u5728\u6251\u514b\u724c\u4e2d\u8f93\u4e86\uff0c\u628a\u684c\u5b50\u7ffb\u4e86\u3002 \n\nSource sentence: I cannot speak Chinese fluently, but I am learning. \n\u6211\u4e0d\u80fd\u6d41\u5229\u5730\u8bf4\u4e2d\u6587\uff0c\u4f46"} +{"id": "5000371", "video_name": "b60bfc40-b71e-5b74-8d9f-93fe8a7acfc0", "text": "\u7f8e\u5473\u65b0\u9c9c\u7684\u6de1\u6c34\u9c7c 16:9\u9ad8\u6e05\u3002"} +{"id": "5000372", "video_name": "2ccd3c8f-103e-51d8-a1c0-b4d5927da349", "text": "\u5728\u98df\u5802\u91cc\uff0c\u56db\u4e2a\u5973\u5b69\u6b63\u5feb\u4e50\u5730\u804a\u5929\u3002"} +{"id": "5000373", "video_name": "45479888-abbf-566d-93a4-9a0f090c9c1c", "text": "\u97e9\u56fd\u5973\u6f14\u5458\u548c\u4e00\u4e2a\u7537\u5b69\u5728\u591c\u665a\u9a91\u7740\u675c\u5361\u8fea\u6f58\u5c3c\u683c\u83b1\uff0c\u66b4\u96e8\u503e\u76c6\uff0c\u901f\u5ea6"} +{"id": "5000374", "video_name": "885e7adb-8546-524b-81f0-cec8320a8671", "text": "\u8bf7\u7ed9\u8fd9\u4e2a\u7537\u4eba\u7a7f\u4e0a\u5fcd\u8005\u670d\u88c5\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000375", "video_name": "9fe80fa2-3228-5f31-9cb6-b520c0e4f1c1", "text": "\u6258\u5e03\u65af\u5361\u65af\u9884\u7ea6\u533b\u751f\u770b\u75c5\u3002"} +{"id": "5000376", "video_name": "7f6afcf4-5afb-5b4e-9a05-09afd0e27f41", "text": "\u52c7\u58eb\u871c\u8702\u5728\u4e00\u7247\u82b1\u7530\u4e2d\u5feb\u901f\u98de\u884c\u3002"} +{"id": "5000377", "video_name": "c7088cc3-8289-5b60-8e45-4bf3dadca168", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u4e13\u4e1a\u793e\u4ea4\u5a92\u4f53\u670d\u52a1\u7684\u89c6\u9891\u3002"} +{"id": "5000378", "video_name": "815422d7-00e6-5480-b532-c263adfde9d3", "text": "\u7528\u7fc5\u8180\u98de\u7684\u7c98\u571f\u5361\u901a\u89d2\u8272\u56db\u5904\u73a9\u800d\u3002 \n\nSource sentence: I am learning Chinese language to communicate with more people. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\uff0c\u4ee5"} +{"id": "5000379", "video_name": "e3aff056-5393-549e-a884-4046c59a97c3", "text": "\u5de8\u4eba\u808c\u8089\u9ed1\u673a\u5668\u4eba\u7a7f\u7740\u7d2b\u8272\u91d1\u5c5e\u95ea\u7535\u82af\uff0c\u62e5\u6709\u5927\u578b\u8001\u5f0f\u7535\u89c6\u5934\u548c\u624b\u81c2\u4e0a\u7684\u706b\u70ae\uff0c\u5728\u57ce\u5e02"} +{"id": "5000380", "video_name": "37f0479d-3923-5057-8239-3a04d0b4c3b6", "text": "\u7ba1\u5f26\u4e50\u56e2\u548c\u5408\u5531\u56e2\u6f14\u594f\u97f3\u4e50\u548c\u5531\u6b4c\u3002"} +{"id": "5000381", "video_name": "9ef1d1c2-eaf4-5475-80a4-28411957d876", "text": "\u4f60\u80fd\u5e2e\u6211\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8ba9\u4e9a\u4f2f\u62c9\u7f55\u00b7\u6797\u80af\u7528\u897f\u73ed\u7259\u8bed\u89e3\u91ca\u8d4b\u6743\u539f\u5219\u5417\uff1f"} +{"id": "5000382", "video_name": "afcadb12-96c0-5cca-b70c-2d999572a755", "text": "\u4e00\u4e2a\u5c0f\u5973\u5b69\u88ab\u5145\u6c14\u6cf5\u5145\u6c14\u540e\u53d8\u5f97\u66f4\u80d6\uff0c\u7136\u540e\u98de\u4e86\u8d77\u6765\u3002"} +{"id": "5000383", "video_name": "363338a3-8c70-5703-8785-8cf6e5c7a4ed", "text": "\u5c0f\u9e2d\u5b50\u4ece\u5929\u7a7a\u6389\u843d\u5230\u519c\u573a\u7684\u7a3b\u8349\u5806\u91cc\u3002"} +{"id": "5000384", "video_name": "756a9aca-6b7f-53e3-b7d2-37d5b38014eb", "text": "\u5409\u5409\u00b7\u8d1d\u5361\u5229\u9762\u5bf9\u5149\u660e\u52c7\u58eb\u7684\u8fd0\u52a8\u3002"} +{"id": "5000385", "video_name": "be72bf20-5f60-5e51-a306-07a6c48f0e77", "text": "\u65cb\u8f6c\u7684\u5730\u7403\u5728\u592a\u7a7a\u4e2d\u7a7f\u68ad\u4e8e\u6d41\u661f\u7fa4\u4e2d\uff0c\u80cc\u666f\u662f\u94f6\u6cb3\u7cfb\u7684\u58ee\u4e3d\u666f\u89c2\uff0c\u7167\u7247\u8d28\u91cf\u9ad8\uff0c\u7c7b"} +{"id": "5000386", "video_name": "0738d17f-a994-53a3-9e2c-13b302f8f5cb", "text": "\u963f\u5c14\u52aa\u5c14\u6c83\u4f0a\u52d2\u59c6\u5b66\u9662\u5199\u5728\u6f02\u4eae\u7684\u6a2a\u5e45\u4e0a\u3002"} +{"id": "5000387", "video_name": "171b2cd9-aa9e-52f4-a906-c0017765065d", "text": "\u4e00\u4e2a\u50cf\u7535\u5f71\u300a\u94f6\u7ffc\u6740\u624b7\u300b\u4e2d\u7684\u7535\u5f71\u822c\u7684\u865a\u62df\u5973\u5b69\u3002"} +{"id": "5000388", "video_name": "98626cdd-8c68-537d-a944-5088bc51e878", "text": "\u4e00\u5f20\u6781\u5149\u76f8\u7247\uff0c\u4e0a\u9762\u662f\u4e00\u6761\u9c7c\u6234\u7740\u592a\u9633\u955c\u5728\u6d77\u5cb8\u4e0a\u6251\u817e\u7740\u3002"} +{"id": "5000389", "video_name": "11c34763-6f7a-5d02-b112-6aa04b9b8839", "text": "\u4e00\u53ea\u624b\u62ff\u7740\u6c34\u6676\u7403\u5bf9\u7740\u592a\u9633\u3002"} +{"id": "5000390", "video_name": "0863e286-aee4-5769-aeb3-f034440fc42a", "text": "\u4e00\u540d\u7a7f\u7740\u76ae\u5939\u514b\u7684\u5973\u6027\u5728\u5954\u8dd1\uff0c\u4fa7\u9762\u89c6\u89d2\uff0c\u4e2d\u666f\uff0c\u955c\u5934\u5411\u4e0b\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "5000391", "video_name": "ab3cd52e-4845-5547-85a6-2e6a70763664", "text": "\u6559\u5ba4\u91cc\u7684\u94a2\u7434\uff0cMax Pain\u98ce\u683c\uff0c\u9ad8\u6e05\u3002"} +{"id": "5000392", "video_name": "0089328b-3dc0-52ef-a7c9-7bf32a3047e1", "text": "\u706b\u7130\u4e2d\u7684\u80cc\u666f\u6b63\u5728\u5f00\u8f66\u3002"} +{"id": "5000393", "video_name": "7242433e-8968-55b3-b065-a2f0ab56751a", "text": "\u4e00\u5f20\u9ed1\u767d\u8272\u7684\u8d70\u5eca\u7167\u7247\uff0c\u91c7\u7528Zaha Hadid\u7684\u73af\u5883\u906e\u853d\u6e32\u67d3\u98ce\u683c\uff0c\u51fa\u81eaBehance\uff0c\u91c7\u7528\u5149\u7ebf"} +{"id": "5000394", "video_name": "60bb377c-7fd2-59fd-8449-14b85d0a8d6e", "text": "\u4e2d\u56fd\u7684\u6c34\u58a8\u753b\u548c\u5c71\u6c34\u753b\u7b80\u6d01\u3001\u5982\u4ed9\u5883\u3002"} +{"id": "5000395", "video_name": "4ff0002a-691f-5437-8b6b-20a5ac207435", "text": "\u54e5\u7279\u5973\u5b69\u5728\u4e24\u56e2\u706b\u4e4b\u95f4\u8df3\u821e\uff0c\u6f06\u9ed1\u7684\u591c\u665a\u3002"} +{"id": "5000396", "video_name": "375da46a-f159-5039-8e6a-be0795d48410", "text": "\u6211\u9762\u524d\u6709\u76d2\u5b50\uff0c\u4e0a\u9762\u6807\u7740\u4e0d\u540c\u7684\u804c\u4e1a\uff0c\u6211\u7684\u8863\u670d\u4e0a\u6709\u5361\u7247\uff0c\u5199\u7740\u6211\u7684\u89d2\u8272\u3002"} +{"id": "5000397", "video_name": "58353f81-6020-54cd-abd7-2c8e298ef943", "text": "\u9006\u621f\u9cb8\u5728\u6c34\u4e0b\u6355\u98df\u6d77\u8c79\u3002"} +{"id": "5000398", "video_name": "463ff5d4-f04d-578b-bed3-e86143e71704", "text": "\u65e0\u9650\u53d8\u5f62\u7684\u51e0\u4f55\u5f62\u72b6\uff0c\u9ed1\u767d\u4ea4\u9519\uff0c\u5faa\u73af\u64ad\u653e\u3002"} +{"id": "5000399", "video_name": "f40cac43-9fb2-5839-bb01-162bdd08bb6b", "text": "\u6c64\u59c6\u00b7\u7279\u62c9\u7ef4\u65af\u548c\u9a6c\u514b\u6765\u81ea182\u4e2a\u7728\u773c\u7684\u4e50\u961f\uff0c\u662f\u9996\u652f\u53d1\u884c\u4e86\u300a\u7b2c\u4e00\u6b21\u7ea6\u4f1a\u300bMV\u7684\u4e50\u961f\u3002"} +{"id": "5000400", "video_name": "75fd6260-9e0b-5e79-b04b-779011833205", "text": "\u5728\u591c\u665a\u7684\u6865\u4e0a\uff0c\u521b\u5efa\u4e00\u8f86\u9ed1\u8272\u6c7d\u8f66\u884c\u9a76\uff0c\u5e76\u6709\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u6865\u8fb9\u3002\u5973\u5b69\u5f88\u4f24\u5fc3\uff0c\u6574\u4e2a\u6865\u4e0a\u90fd\u6709"} +{"id": "5000401", "video_name": "1d250a33-63dd-585f-bbf5-48bf44010ebc", "text": "\u4e00\u540d\u4f53\u91cd120\u78c5\u7684\u4e9a\u6d32\u5973\u5b50\u5728\u590f\u5a01\u5937\u4e0e\u6d77\u9f9f\u4e00\u8d77\u6e38\u6cf3\u3002"} +{"id": "5000402", "video_name": "dda29df9-aa05-5d39-afab-ea42a0dcc778", "text": "\u4e00\u53ea\u7a7f\u7740\u7eff\u8272\u8863\u670d\u548c\u9ed1\u8272\u5e3d\u5b50\u7684\u732b\u3002"} +{"id": "5000403", "video_name": "de942ea9-60e1-55c6-a032-4e82bb8744e5", "text": "Netaji Subhash Chandra Bose\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "5000404", "video_name": "16cae205-1543-5040-be5a-95df24bd5404", "text": "\u5927\u6d6a\u6df9\u6ca1\u4e86\u591c\u665a\u7684\u57ce\u5e02\u3002"} +{"id": "5000405", "video_name": "ad3f1ff0-9231-5b25-ad3c-b2435a38e695", "text": "\u5357\u74dc\u706f\u548c\u4e00\u4e9b\u8721\u70db\u6b63\u5728\u71c3\u70e7\uff0c\u98ce\u5439\u52a8\u7740\u6765\u56de\u6447\u6446\u7684\u6811\u679d\u3002"} +{"id": "5000406", "video_name": "0429de92-cc38-5d15-a352-d841fb1827c2", "text": "\u5236\u4f5c\u4e00\u4e2a\u52a8\u753b\u7247\u7247\u5934\n\n\u540d\u4e3a\u7a7f\u8d8a\u65f6\u7a7a\n\n\u89d2\u8272\u8d77\u6e90\n\n\u89d2\u8272\u80fd\u529b\uff1a\u9b54\u6cd5\uff0c\u5fc3\u7075\u611f\u5e94\n\n\u4ed6\u662f\u4e00\u4e2a\u666e\u901a\u7537\u5b69\n\n5"} +{"id": "5000407", "video_name": "cd9cd378-189f-5515-8ba1-41649310f8d3", "text": "\u94a2\u94c1\u4fa0\u4e0e\u7eff\u5de8\u4eba\u6253\u6597\u76849\u5206\u949f\u89c6\u9891\u3002"} +{"id": "5000408", "video_name": "5db358b6-f2df-585a-baed-ee2e6c6be213", "text": "\u590d\u5229\u7684\u529b\u91cf\u53ef\u4ee5\u8ba9\u6211\u4eec\u7684\u94b1\u6570\u500d\u589e\u957f\u3002"} +{"id": "5000409", "video_name": "8c5a8f4e-1116-5bae-9ac0-c0bbcc827820", "text": "\u5728\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u513f\u7ae5\u6545\u4e8b\u4e2d\uff0c\u4e00\u4f4d\u62e5\u6709\u957f\u9ed1\u53d1\u768410\u5c81\u5973\u5b69\u9762\u5411\u955c\u5934\uff0c\u5728\u68ee\u6797\u4e2d\u5411\u524d\u8d70"} +{"id": "5000410", "video_name": "22c03f7d-2def-50cd-bd7f-39ba8d0d25ae", "text": "\u661f\u7403\u56e0\u4e3a\u6cf0\u5766\u4eba\u5f62\u4ece\u5730\u7403\u6838\u5fc3\u55b7\u53d1\u800c\u7206\u70b8\u3002"} +{"id": "5000411", "video_name": "6b38ea90-3e81-53b1-834c-e7cfc474e5ac", "text": "\u9171\u6c41\u6ef4\u843d\u3001\u829d\u58eb\u62c9\u4e1d \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "5000412", "video_name": "7b16cac8-04e0-5e60-9bb6-1e7c1f5e8821", "text": "\u4e00\u4e2a\u5988\u5988\uff0c\u4e00\u4e2a\u5973\u5b69\uff0c\u5728\u516c\u56ed\u73a9\uff0c\u62cd\u6444\u7684\u771f\u5b9e\u611f\u6781\u5f3a\uff0c4K\u7684\u8d85\u9ad8\u6e05\u753b\u8d28\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u6700"} +{"id": "5000413", "video_name": "aeb4c87d-77fb-571f-ba2a-4e8625c54906", "text": "\u65cb\u8f6c\u8f6e\u76d8\u5e76\u653e\u4e0b\u4e00\u4e2a\u7403\uff0c\u7136\u540e\u6de1\u51fa\u6574\u4e2a\u56fe\u50cf\u3002"} +{"id": "5000414", "video_name": "32c8b4f4-a1e5-59d9-a907-4398c39f9686", "text": "\u751f\u6210\u4e00\u4e2a\u7537\u4eba\u62e5\u62b1\u4e00\u4e2a\u5973\u4eba\u5e76\u543b\u5979\u5634\u5507\u7684\u89c6\u9891\uff0c\u5168\u666f\u62cd\u6444\uff0c4K\uff0c16:9\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u4fdd\u7559\u7ec6\u8282"} +{"id": "5000415", "video_name": "8b330836-7014-57fe-b55d-0cef071e8b2d", "text": "\u5236\u4f5c\u4e00\u5f20\u52a8\u6001\u7684\u5723\u8bde\u8d3a\u5361\u3002"} +{"id": "5000416", "video_name": "691844e9-966c-5252-bca5-11af56cea6f7", "text": "\u4eba\u4eec\u7a7f\u7740lungi\u5728\u4eba\u7fa4\u7199\u6518\u7684\u8001Dhaka\u57ce\u91cc\u884c\u8d70\u3002"} +{"id": "5000417", "video_name": "45abcccc-20fe-5abe-856a-166bbce104f0", "text": "\u6885\u897f\u548c\u52d2\u5e03\u6717\u00b7\u8a79\u59c6\u65af\u4e00\u8d77\u57284k\u3001GS\u89c4\u6a2120\u3001\u79cd\u5b501\u7684\u8bad\u7ec3\u4e2d\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "5000418", "video_name": "518ddf45-f1a2-566a-b76e-d120094c129f", "text": "\u5728\u5916\u661f\u7403\u4e0a\u7684\u6674\u6717\u5929\u7a7a\u4e2d\uff0c\u4e00\u53ea\u5916\u661f\u9e70\u8ddf\u968f\u7740\u98de\u7fd4\u7684\u9e1f\u513f\uff0c\u8d85\u5199\u5b9e\uff0c4K\uff0c\u7167\u7247"} +{"id": "5000419", "video_name": "21693d22-265e-507d-8576-bb91c2d3e8b5", "text": "\u52a8\u6001\u753b\u9762\u5448\u73b0\u4e86\u53f2\u8bd7\u7ea7\u5bf9\u6297\u7684\u6fc0\u70c8\u573a\u9762\uff0c\u6355\u6349\u4e86\u6700\u7ec8\u51b3\u6218\u65f6\u67aa\u70ae\u4ea4\u9519\u7684\u7d27\u5f20"} +{"id": "5000420", "video_name": "08687079-6ae3-561c-9cd0-26a26b3dcad2", "text": "\u7cbe\u7075\u4e0e\u77ee\u4eba\u5728\u4e2d\u571f\u5927\u6218\u3002"} +{"id": "5000421", "video_name": "2baa488d-e9f8-5d6c-8df4-58d831da88dc", "text": "\u4e00\u540d\u7537\u5b69\u5728\u516c\u4ea4\u8f66\u4e0a\u8bf4\u4e86\u58f0\u4f60\u597d\u3002"} +{"id": "5000422", "video_name": "c909ea1c-aed0-5d68-a3ad-3b828d1d6df9", "text": "\u4e00\u628a\u5251\u523a\u7a7f\u4e86\u4e00\u53ea\u6709\u8e7c\u624b\u8e7c\u811a\u7684\u84dd\u8272\u6d77\u6d0b\u751f\u7269\u7684\u80f8\u53e3\u3002\u5f53\u5251\u523a\u5165\u5b83\u7684\u80cc\u90e8"} +{"id": "5000423", "video_name": "44193ec7-98aa-5331-884f-accdbe10eb3c", "text": "\u4e00\u4e2a\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u6d77\u4e0a\u51b2\u6d6a\u7684\u5973\u5b69\u3002"} +{"id": "5000424", "video_name": "1e145e43-d6be-5383-b97c-adf6471f9768", "text": "\u5c0f\u8239\u5728\u6cb3\u6d41\u4e2d\u7a7f\u884c\uff0c\u591c\u665a\u7684\u666f\u8272\uff0c\u8fdc\u5904\u7684\u5c71\u5ce6\uff0c\u6708\u5149\uff0c\u8f7b\u8584\u7684\u96fe\u6c14\uff0c\u4ece\u4e0a\u65b9\u7684\u89d2\u5ea6"} +{"id": "5000425", "video_name": "39946157-d8cf-59b9-8d12-dd7f72271a86", "text": "\u8bb8\u591a\u7a7f\u7740\u9ed1\u8272\u548c\u6a59\u8272\u5b66\u58eb\u888d\u7684\u5feb\u4e50\u5b66\u751f\u7684\u5927\u5b66\u3002\u4fe1\u606f\uff1aFCEA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5000426", "video_name": "0289b29d-7942-5649-8a93-427ccd7ab3d9", "text": "\u68ee\u6797\u73bb\u7483\u51e0\u4f55\u5f62\u72b6\u4e0e\u690d\u7269\u3002"} +{"id": "5000427", "video_name": "5d3e57fe-e594-5580-8515-ffe6a3db81cb", "text": "\u5728\u751f\u65e5\u6d3e\u5bf9\u4e0a\uff0c\u6709\u5f88\u591a\u670b\u53cb\u8df3\u821e\uff0c\u6bcf\u4e2a\u4eba\u90fd\u4e00\u8d77\u5feb\u4e50\u5730\u5531\u6b4c\u3002"} +{"id": "5000428", "video_name": "8a899c50-581b-5773-95c3-07584f95c4c3", "text": "\u7ed2\u9762\u8c82\u5983\u6234\u7740LV\u592a\u9633\u955c\u770bPlayboy\u6742\u5fd7\u3002"} +{"id": "5000429", "video_name": "c55c503e-47c9-509a-a883-eb52fb197838", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5fae\u7b11\uff0c\u5361\u901a\uff0c16:9\u6bd4\u4f8b\u3002"} +{"id": "5000430", "video_name": "e62a6379-9038-5c18-aedb-8f30bc37996c", "text": "\u9ed1\u5ba2\u4fb5\u5165\u4e86\u8ba1\u7b97\u673a\u7cfb\u7edf\u3002"} +{"id": "5000431", "video_name": "33c64cff-7728-59b0-93e9-0c2f8f627450", "text": "\u57c3\u585e\u4fc4\u6bd4\u4e9a\u53e4\u4ee3\u5192\u9669\u6218\u4e89\u7535\u5f71\u9884\u544a\u7247\u3002"} +{"id": "5000432", "video_name": "f9baeb32-fdd1-53e5-b696-843faf7ab4f4", "text": "\u5c06\u4e0d\u540c\u7684\u56fe\u6848\u3001\u989c\u8272\u548c\u6750\u6599\u76f8\u7ed3\u5408\uff0c\u521b\u9020\u51fa\u72ec\u7279\u548c\u591a\u6837\u5316\u7684\u98ce\u683c\u3002\u4f8b\u5982\uff0c\u5c06\u8857\u5934\u98ce\u683c\u4e0e\u53e4\u5178\u5143"} +{"id": "5000433", "video_name": "5148990f-9c94-5a48-8319-3789a6539369", "text": "\u672b\u65e5\u4e4b\u591c\u7684\u9e1f\u77b0\u89c6\u89d2\uff0c\u6d77\u6d0b\u91cc\u9ad8\u9ad8\u4f4e\u4f4e\u7684\u6ce2\u6d6a\u4e0d\u505c\u5730\u8d77\u4f0f\u3002"} +{"id": "5000434", "video_name": "ea4ad0e5-6102-5ed6-89ad-e3b2c3381ef2", "text": "\u8d27\u5e01\u5f3a\u5f31\u5ea6\u8ba1\u5e94\u7528\uff0c\u591a\u79cd\u989c\u8272\u663e\u793a\u8d27\u5e01\u5f3a\u5ea6\u548c\u5f31\u70b9\u3002"} +{"id": "5000435", "video_name": "6c956a8b-6af5-50a1-b14f-2073f7a34765", "text": "\u4ece\u5e72\u71e5\u7684\u6c99\u6f20\u571f\u5730\u4e0a\u957f\u51fa\u7684\u5170\u82b1\u79cd\u5b50\uff0c\u6784\u6210\u4e86\u8ff7\u5e7b\u3001\u903c\u771f\u7684\u8fbe\u5229\u827a\u672f\uff0c\u9ed1\u591c\u7b3c\u7f69"} +{"id": "5000436", "video_name": "5c6c6ed0-ea8f-5f73-b4f7-362ed9b02154", "text": "\u6d77\u8c79\u5b9d\u5b9d\u98de\u5411\u592a\u9633\u3002"} +{"id": "5000437", "video_name": "6223836c-7a9a-5694-a86b-01eb770afaa2", "text": "\u5728\u5927\u57ce\u5e02\u7684\u4e00\u6761\u9ed1\u6697\u8857\u9053\u4e0a\uff0c\u4e00\u4e2a\u60c5\u7eea\u4f4e\u843d\u7684\u7537\u4eba\u5728\u9ed1\u591c\u4e2d\u663e\u5f97\u7834\u788e\uff0c\u60b2\u4f24\u5b64\u72ec"} +{"id": "5000438", "video_name": "0a419b58-f369-53b0-9ae3-e3c878e948bd", "text": "\u5c55\u793aCrocopter\u4e00\u8bcd\u5728\u6c34\u4e2d\u3002"} +{"id": "5000439", "video_name": "c09798c3-cc2c-5d03-91a3-d8b4015535cd", "text": "\u5c0f\u661f\u661f\u5e26\u7740\u5b69\u5b50\u4eec\u4e00\u8d77\u8e0f\u4e0a\u68a6\u5e7b\u4e4b\u65c5\u3002"} +{"id": "5000440", "video_name": "3619c4c4-144e-56d1-808a-dd88e5d930c6", "text": "\u5973\u4eba\u5728\u706b\u8f66\u7ad9\u9759\u9759\u7b49\u5f85\uff0c\u4fef\u77b0\u89c6\u89d2\u4e0b\u7684\u771f\u5b9e\u89c6\u9891\u3002"} +{"id": "5000441", "video_name": "4ec5eb08-a09c-5d3a-ba7d-556211f2d0d5", "text": "\u4e00\u6761\u84dd\u8272\u7684\u4f20\u9001\u5e26\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u98de\u884c\uff0c\u7136\u540e\u53d8\u6210\u4e86\u4e00\u68f5\u96c4\u4f1f\u7684\u5723\u8bde\u6811\u3002"} +{"id": "5000442", "video_name": "a19f3f14-a1b5-5cec-af95-e89bcf001806", "text": "\u4e00\u4e2a\u5b87\u5b99\u5367\u5ba4\uff0c\u6709\u84dd\u8272\u9713\u8679\u706f\u3001\u97f3\u4e50\u6d77\u62a5\u548c\u690d\u7269\u5728\u5927\u7a97\u5916\u968f\u7740\u6d41\u661f\u96e8\u7f13\u6162"} +{"id": "5000443", "video_name": "0c64f836-3958-58de-9b39-080d4a2b3f19", "text": "\u8fbe\u8299\u59ae\u00b7\u5409\u5c3c\u65af\u548c\u7c73\u514b\u00b7\u8d3e\u683c\u5c14\u5728\u6d3e\u5bf9\u4e0a\u3002"} +{"id": "5000444", "video_name": "5bf335de-6b6c-54e5-8ff7-a9f62e421537", "text": "\u9047\u89c1\u5e7d\u7075\u5b58\u5728\n\n\u65c5\u884c\u8005\u611f\u5230\u597d\u5947\u3001\u4e5f\u8bb8\u8fd8\u6709\u6050\u60e7\uff0c\u4ed6\u4eec\u7ee7\u7eed\u63a2\u7d22\u5e76\u9047\u89c1\u4e86\u88ab\u56f0\u5728\u8f66\u7ad9"} +{"id": "5000445", "video_name": "738fb993-3c0b-549e-b42e-2de662f39aab", "text": "\u6751\u91cc\u7684\u667a\u8005\uff0cAR 16:9\uff0c3D\u52a8\u753b\uff0c4K"} +{"id": "5000446", "video_name": "bc0ec11b-94b1-5a50-b58a-a51dfdfc0529", "text": "\u5916\u661f\u4eba\u5728\u504f\u8fdc\u7684\u5c9b\u4e0a\u6325\u624b\u3002"} +{"id": "5000447", "video_name": "bd6e2682-b0dd-5e44-b0f1-fdcbe64e089b", "text": "\u4e00\u5ea7\u73b0\u4ee3\u623f\u5c4b\u5728\u68ee\u6797\u4e2d\u906d\u5230\u7ea2\u8272\u95ea\u7535\u7684\u88ad\u51fb\u3002"} +{"id": "5000448", "video_name": "cd2ec18f-2206-5c61-8235-f931e1f0d1c7", "text": "\u60f3\u8c61\u4e00\u4e0b\u670b\u53cb\u4eec\u5728\u661f\u5149\u6811\u4e0b\u8bb8\u613f\uff0c\u6bcf\u4e2a\u4eba\u8868\u8fbe\u81ea\u5df1\u7684\u613f\u671b\uff0c\u968f\u7740\u4ed6\u4eec\u7684\u613f\u671b\u88ab\u9001\u5165"} +{"id": "5000449", "video_name": "b72d7218-83b5-5c63-b154-c32999d12858", "text": "\u4e00\u672c\u5927\u4e66\uff0c\u9633\u5149\u4ece\u4e00\u7aef\u5347\u8d77\uff0c\u91cc\u9762\u5305\u542b\u82f1\u6587\u5199\u4f5c\u3002"} +{"id": "5000450", "video_name": "bef83f6e-83d2-5c6b-a3e3-da516b490858", "text": "\u9e21\u53d8\u5f62\u91d1\u521a\u7535\u5f71\u9884\u544a\u7247\uff0c\u5176\u4e2d\u9e21\u53d8\u6210\u6c7d\u8f66\u3002"} +{"id": "5000451", "video_name": "f0d4b44b-94be-530d-a0f3-e4b7f89953ef", "text": "5\u53ea\u5c0f\u72d7\u671d\u7740\u5b83\u4eec\u7684\u4e3b\u4eba\u8dd1\u53bb\u3002"} +{"id": "5000452", "video_name": "f8db01ed-fc71-5d5c-83ae-3aa9ba1e098f", "text": "\u63a8\u8fdb\u91d1\u5b57\u5854\u7684\u5efa\u8bbe\u3002"} +{"id": "5000453", "video_name": "b243fae2-cbfe-51cd-ae28-2cf49a522664", "text": "\u76f8\u673a\u62cd\u6444\u4e86\u7e41\u534e\u7684\u57ce\u5e02\u8857\u9053\uff0c\u4eba\u4eec\u5728\u8d70\u8def\u548c\u4ea4\u8c08\u3002"} +{"id": "5000454", "video_name": "2fd8b242-4c92-52f9-b056-7847d2b2a195", "text": "\u4ed6\u70ed\u7231\u8fd0\u52a8\uff0c\u6709\u70b9\u8c03\u76ae\u3002"} +{"id": "5000455", "video_name": "934953b2-3b02-5e4d-ab39-705c0f4c0839", "text": "\u7d22\u83f2\u4e9a\u00b7\u79d1\u6ce2\u62c9\u7684\u7535\u5f71\u8bb2\u8ff0\u4e86\u4e00\u67b6\u98de\u673a\u5760\u6bc1\uff0c\u5916\u5356\u76d2\u91cc\u88c5\u7740\u5976\u6cb9\u7cd5\u70b9\u7684\u6545\u4e8b\u3002"} +{"id": "5000456", "video_name": "612b15ba-ca1b-5eec-b6d3-0185b0726516", "text": "3D\u53ef\u7231\u7684\u8d70\u5728\u8857\u4e0a\u3002"} +{"id": "5000457", "video_name": "6e0b493c-e47f-5588-adc8-6c7117fecb4f", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u9a91\u7740\u81ea\u884c\u8f66\u5728\u57ce\u5e02\u6865\u6881\u4e0a\u884c\u9a76\uff0c\u57ce\u5e02\u6865\u6881\u5728\u5411\u540e\u5012\u9000\u3002"} +{"id": "5000458", "video_name": "139a4f71-37be-526a-b317-a871fa787fb2", "text": "\u8fd9\u5f20\u56fe\u7247\u5f88\u7f8e\uff0c\u82b1\u4e1b\u4e2d\u7684\u9ab7\u9ac5\u4e3e\u8d77\u624b\u6253\u62db\u547c\u3002"} +{"id": "5000459", "video_name": "9a747963-a80f-5da4-a599-dd278f6355eb", "text": "\u4e00\u5bb6\u4eba\u540c\u65f6\u56de\u5bb6\uff0c\u7236\u4eb2\u4e0b\u73ed\u56de\u6765\uff0c\u6bcd\u4eb2\u548c\u513f\u5b50\u4ece\u516c\u56ed\u56de\u6765\uff0c\u4e00\u5bb6\u4eba\u76f8\u4e92\u62e5\u62b1\uff0c\u5feb\u4e50\u5730\u95ee"} +{"id": "5000460", "video_name": "ef2d0d71-3601-5b15-9031-0e04f216efa7", "text": "\u4e00\u53ea\u767d\u732b\u8ffd\u9010\u4e00\u53ea\u8001\u864e\u3002"} +{"id": "5000461", "video_name": "b19f44af-b757-50b6-abfa-7bbc3f00fec5", "text": "\u8428\u7ef4\u95f4\u8c0d\u51fb\u8d25\u76ee\u6807\uff0c\u7136\u540e\u63a8\u9500\u52b3\u529b\u58eb\u6d77\u9a6c\u8868\u3002"} +{"id": "5000462", "video_name": "df052666-9cbd-5863-a5fd-9e0a41f609bd", "text": "\u6c99\u6f20\u4e2d\u6218\u4e89\u4e2d\u7684\u5b69\u5b50\u4eec\uff0c\u9897\u7c92\uff0c\u706b\u7130\uff0c\u70df\u96fe\uff0c\u9ad8\u6e05\u3002"} +{"id": "5000463", "video_name": "5477f18a-29f9-525f-9958-f07ddb1e1efb", "text": "\u6c60\u5858\u91cc\u7684\u8377\u82b1\uff0c\u968f\u7740\u5fae\u98ce\u8f7b\u8f7b\u6447\u66f3\uff0c\u6676\u83b9\u7684\u96e8\u6ef4\u4ece\u8377\u53f6\u4e0a\u843d\u4e0b\u3002"} +{"id": "5000464", "video_name": "169edc3b-b4d6-5255-87db-afe7eca74d14", "text": "\u80af\u5c3c\u4e9a\u5973\u5b50\u5728\u5496\u5561\u8c46\u519c\u573a\u5fae\u7b11\u3002"} +{"id": "5000465", "video_name": "d7626fdc-04ef-5f47-8aa8-fdfc782c4cb6", "text": "\u53cc\u8272\u8c03\u7684\u84dd\u8272\u548c\u9ec4\u8272\u914d\u8272\u65b9\u6848\uff0c\u52a8\u4f5c\u82f1\u96c4\u3002"} +{"id": "5000466", "video_name": "be04965a-5af2-5cd3-bd8e-e0db5edea85b", "text": "\u4e00\u4f4d\u5d07\u62dc\u8005\u5728\u51a5\u60f3\uff0c\u4eceMaa Katyayani\u90a3\u91cc\u5bfb\u627e\u5185\u5728\u7684\u529b\u91cf\u548c\u52c7\u6c14\u3002"} +{"id": "5000467", "video_name": "cb53140a-1ac4-5512-a988-15b28ffbb3dc", "text": "\u98ce\u666f\u662f\u5c71\u8109\u3001\u5929\u7a7a\u3001\u4e91\u5f69\u548c\u9053\u89c2\u5bfa\u5e99\u7684\u7f8e\u4e3d\u666f\u8272\u3002\u95ea\u7535\u5728\u5e7b\u60f3\u4e16\u754c\u7684\u4e91\u5f69\u4e2d\u660e"} +{"id": "5000468", "video_name": "951011bf-97ef-5a6c-b655-02b156c58bb5", "text": "\u4e00\u4e2a\u673a\u68b0\u4eba\u5973\u5b69\u5728\u65e5\u672c\u4e1c\u4eac\u7684\u767e\u8d27\u516c\u53f8\u5c55\u89c8\u4e2d\u3002"} +{"id": "5000469", "video_name": "3ab6e6af-72eb-5844-8998-d6e279400aa8", "text": "\u4e00\u4f4d\u4e2d\u56fd\u7f8e\u5973\uff0c\u77ed\u53d1\uff0c\u9152\u7a9d\uff0c\u65b0\u5e74\u5feb\u4e50\uff01"} +{"id": "5000470", "video_name": "71a04b5e-a59a-503a-848e-f06eda3ed1c3", "text": "\u7537\u4eba\u8d64\u8db3\u7684\u80cc\u5f71\uff0c\u8d70\u5728\u6d3e\u5bf9\u7684\u84dd\u8272\u5730\u6bef\u4e0a\u3002\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u8be6\u7ec6\u3001\u7279\u5199\u3002"} +{"id": "5000471", "video_name": "b6b96e4a-999f-5275-b257-5c5603f35d6f", "text": "\u65cb\u8f6c\u7684\u8d28\u5b50\u548c\u4e2d\u5b50\u3002\u6df1\u5ea6\u573a\u666f\uff0c\u7535\u5f71\u7ea7\u522b\uff0c4K UHD\u3002"} +{"id": "5000472", "video_name": "5f9e02a8-f214-546f-b5c1-1dd64c28b9be", "text": "\u623f\u95f4\u91cc\u7684\u955c\u5b50\u6b63\u5728\u7834\u88c2\u5e76\u56db\u6563\u98de\u6e85\u3002"} +{"id": "5000473", "video_name": "feb60fc1-6c07-564b-82ea-a3f011c71bbe", "text": "\u4e00\u53ea\u6bdb\u7ed2\u73a9\u5177\u9e7f\u5728\u5723\u8bde\u88c5\u9970\u4e2d\u7a7f\u8fc7\u96ea\u666f\u7684\u89c6\u9891\u3002"} +{"id": "5000474", "video_name": "3d4c5eb9-9858-5c40-b81f-ade4fb3a4c0c", "text": "\u72d7\u5728\u4e00\u4e2a\u5c0f\u800c\u7c89\u8272\u7684\u51b0\u96ea\u6751\u5e84\u91cc\u9a91\u9a6c\u3002"} +{"id": "5000475", "video_name": "36fbf353-dffe-51ec-8fca-93625546df24", "text": "\u60f3\u8c61\u4e00\u4e2a\u7f8a\u6bdb\u7403\uff0c\u5b8c\u7f8e\u5706\u5f62\uff0c\u624b\u611f\u67d4\u8f6f\u3002\u5f53\u5b83\u8f7b\u8f7b\u5730\u6eda\u8fc7\u5149\u6ed1\u7684\u8868\u9762\u65f6\uff0c\u5176\u540e\u9762\u4f1a\u5c55\u5f00\u4e00"} +{"id": "5000476", "video_name": "698cdf19-eb72-5cdb-ad24-7aac676f54a6", "text": "\u5728\u6d77\u4e0a\u5ea6\u8fc7\u7684\u7cdf\u7cd5\u4e00\u5929\u3002"} +{"id": "5000477", "video_name": "28189ba5-07d9-5f99-9c41-79a3404a0c8f", "text": "\u6eba\u6c34\u7684\u9c7c\u3002\u903c\u771f\u7684\u753b\u9762\u3002\u9ed1\u6697\u7684\u6c1b\u56f4\u3002\u7535\u5f71\u822c\u7684\u6548\u679c\u3002"} +{"id": "5000478", "video_name": "df7e3b92-62ec-5d80-80d3-22536d9673ea", "text": "\u4e00\u53ea\u5c0f\u9e1f\u4f5c\u4e3a\u822a\u5929\u5458\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u80fd\u591f\u770b\u5230\u4e0d\u540c\u7684\u661f\u5ea7\u548c\u661f\u661f\uff0c\u5177\u6709\u620f\u5267\u6027\u7684\u6444\u50cf\u673a\u8fc7"} +{"id": "5000479", "video_name": "949025d9-9867-5ea4-8a2a-2605eca3abfe", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u5728\u666e\u6797\u65af\u987f\u5927\u5b66\u7684\u529e\u516c\u5ba4\u91cc\u7814\u7a76\u7269\u7406\u95ee\u9898\u3002\u4ed6\u88ab\u6572\u95e8\u58f0\u6253\u65ad"} +{"id": "5000480", "video_name": "1c50572a-539c-5886-ab32-2dd806be6e05", "text": "\u4e00\u4e2a\u7a7f\u7740\u6df1\u7ea2\u8272\u5e26\u5c16\u89d2\u7684\u897f\u88c5\u548c\u767d\u8272\u5185\u886c\u886b\u7684\u7537\u5b50\u8eba\u5728\u4e00\u5757\u94fa\u6ee1\u7ea2\u5b9d\u77f3\u7684\u8868\u9762"} +{"id": "5000481", "video_name": "2db8fb10-872e-5be8-b550-79b1a18505db", "text": "\u7537\u5b50\u6293\u4f4f\u5e7f\u544a\u724c\uff0c\u5c06\u5176\u8f6c\u5316\u4e3a\u4ed6\u624b\u4e2d\u7684\u74f6\u5b50\u3002"} +{"id": "5000482", "video_name": "eb224ad9-dafb-5d4b-8025-1ed67f5d23ac", "text": "\u5929\u4f7f\u6ca1\u6709\u75be\u75c5\u3001\u61d2\u60f0\u3001\u60b2\u4f24\u3001\u75db\u82e6\u3001\u75b2\u52b3\u548c\u5b64\u72ec\u7684\u56f0\u6270\u3002\u4ed6\u4eec\u4e0d\u65ad\u5730"} +{"id": "5000483", "video_name": "adcdca22-94ab-5186-9500-1c888f2c36f7", "text": "\u6c7d\u8f66\u5728\u7ebd\u7ea6\u8fdb\u884c\u8d85\u7ea7\u8d5b\u8f66\u6bd4\u8d5b\uff0c\u5145\u6ee1\u672a\u6765\u611f\u3002"} +{"id": "5000484", "video_name": "d49a2f22-2462-5af9-861a-c39d604af3ae", "text": "\u827a\u672f\u7535\u5f71\u96621990\u5e74\u4ee3\u795e\u4ed9\u5f55\u50cf\u673a\u7535\u5f71\u611f"} +{"id": "5000485", "video_name": "d010b6cf-60bd-5f00-9145-45b4b22cebb7", "text": "\u5386\u53f2\u65f6\u523b\u3002\u4fe1\u606f\uff1aFLEXXX\uff08\u5b57\u4f53\uff1a\u6f2b\u753b\uff09\u3002"} +{"id": "5000486", "video_name": "edd8c89f-28dd-5500-8666-639430b6ee7f", "text": "\u4e00\u4f4d\u8eab\u6750\u9ad8\u5927\u3001\u6234\u7740\u9ed1\u8272\u957f\u9762\u7eb1\u7684\u5973\u4eba\uff0c\u7ad9\u5728\u88ab\u70e7\u6bc1\u7684\u9ed1\u68ee\u6797\u4e2d\uff0c\u6444\u5f71\u98ce\u683c\u91c7\u7528\u4e86\u7535"} +{"id": "5000487", "video_name": "26e54424-2787-537a-bdb5-ace2cb94fbe2", "text": "WWE\u6454\u89d2\u6bd4\u8d5b\uff1a\u5de8\u77f3\u5f3a\u68ee\u5bf9\u9635\u4e09\u500d\u8df3\u6d77\u8c5a\uff0c\u6bd4\u8d5b\u5728\u573a\u5916\u8fdb\u884c\u3002"} +{"id": "5000488", "video_name": "883cce5c-be3d-5b50-9aea-9b6f902a6a6e", "text": "\u4e00\u4e2a\u98de\u884c\u5668\u5728\u4e00\u5ea7\u6781\u5176\u5148\u8fdb\u7684\u57ce\u5e02\u4e0a\u7a7a\u7684\u7a7a\u4e2d\u9ad8\u901f\u516c\u8def\u4e0a\u98de\u884c\uff0c\u5206\u8fa8\u7387\u4e3a32k\uff0c\u975e\u5e38\u6e05\u6670\uff0c\u88ab\u5e7b\u5f71"} +{"id": "5000489", "video_name": "2acfe209-c44f-596b-8eb8-858478cf08b0", "text": "\u5b69\u5b50\u4eec\u5145\u6ee1\u6fc0\u52a8\uff0c\u8bb8\u4e0b\u4e86\u5fc3\u613f\uff0c\u8f6c\u773c\u95f4\uff0c\u96ea\u7403\u5c31\u628a\u4ed6\u4eec\u5e26\u5230\u4e86\u4e00\u4e2a\u795e\u5947\u7684\u51ac\u5b63\u4ed9"} +{"id": "5000490", "video_name": "d70006b3-30aa-511a-8809-8280dd4f400b", "text": "\u60ca\u6050\u7684\u7537\u4eba\u5728\u9634\u68ee\u7684\u68ee\u6797\u91cc\u5954\u8dd1\u3002"} +{"id": "5000491", "video_name": "5353db67-d136-51b3-8aad-6057dbc72b35", "text": "\u9e1f\u7c7b\u653b\u51fb\u6050\u6016\u7535\u5f71\uff0c\u620f\u5267\u6027\u7684\u706f\u5149\uff0c16:9\u7535\u5f71\u6444\u50cf\u673a\u8fd0\u52a87\u3002"} +{"id": "5000492", "video_name": "dd41a765-0df6-5a51-99bf-fe3dd90d6bfd", "text": "\u5728\u79d1\u5e7b\u73af\u5883\u4e2d\u5feb\u901f\u79fb\u52a8\u7684\u98de\u673a\u3002"} +{"id": "5000493", "video_name": "6dc7ea11-f2cb-5b43-9dde-1c78fd24dcc0", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u65e5\u672c\u8001\u4eba\u5fae\u7b11\u8fd1\u8ddd\u79bb\u62cd\u6444\u7684\u7167\u7247\u3002"} +{"id": "5000494", "video_name": "66170b34-ba8c-5043-867a-addef21454cf", "text": "\u9c7c\u80fd\u5728\u9646\u5730\u4e0a\u884c\u8d70\u3002"} +{"id": "5000495", "video_name": "87637568-3de6-5ddf-889f-be0160907faa", "text": "\u8001\u4eba\u6ed1\u7a3d\u5730\u8dcc\u5012\u7684\u89c6\u9891\uff0c9:16\u7684\u6bd4\u4f8b\u3002"} +{"id": "5000496", "video_name": "214e92f5-15f1-5929-a44c-8f926fe74cfc", "text": "\u60f3\u8c61\u4e00\u5ea7\u6b63\u5728\u5efa\u9020\u4e2d\u7684\u5de8\u5927\u5854\u697c\uff0c\u76f4\u6307\u5929\u7a7a\u3002"} +{"id": "5000497", "video_name": "28b8c7df-1d9a-59f9-8000-19497874b7ef", "text": "\u4e00\u53ea\u50cf\u6b4c\u624b\u7684\u732b\uff0c\u63e1\u7740\u9ea6\u514b\u98ce\uff0c\u591c\u665a\uff0c\u53ef\u7231\uff0c\u6d6a\u6f2b\uff0c\u771f\u5b9e\u3002"} +{"id": "5000498", "video_name": "c03d8716-ed0b-5b53-b085-5b6f7faafed9", "text": "\u521b\u4f5c\u4e00\u5e45\u6cb9\u753b\uff0c\u63cf\u7ed8\u4e00\u8258\u7ef4\u4eac\u8239\u5728\u6ce2\u7f57\u7684\u6d77\u4e2d\u822a\u884c\u3002"} +{"id": "5000499", "video_name": "db843ce5-e099-5e10-a116-eb719dff99ec", "text": "\u4e00\u4e2a\u9762\u5411\u6d77\u6d0b\u7684\u5e26\u8584\u7eb1\u7a97\u5e18\u7684\u655e\u5f00\u7a97\u6237\uff0c\u6d77\u6d6a\u6d8c\u5165\u5ba4\u5185\u3002"} +{"id": "5000500", "video_name": "9e9f2821-d2dc-5770-87c5-12897aef9c6d", "text": "\u5934\u53d1\u9b08\u66f2\u7684\u7537\u5b50\u88ab\u7535\u529b\u548c\u95ea\u7535\u8986\u76d6\u5168\u8eab\u3002"} +{"id": "5000501", "video_name": "5bba1def-e7b8-51ea-834a-d84c8188a657", "text": "\u4eba\u5728\u7ea2\u8272\u4e1b\u6797\u91cc\u8dd1\u6b65\uff0c\u953b\u70bc\u8eab\u4f53\uff0c\u8fdb\u884c\u6709\u6c27\u8fd0\u52a8\u3002"} +{"id": "5000502", "video_name": "e4eeb6a3-ca42-58ff-9ee3-30eb1ee830a3", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u592a\u7a7a\u4e2d\uff0c\u89c2\u770b\u7740\u4e00\u4e2a\u5de7\u514b\u529b\u661f\u7403\uff0c9\uff1a16\uff0c3D \u52a8\u753b\u3002"} +{"id": "5000503", "video_name": "39712694-5bb8-57ef-af34-cb0d467345bd", "text": "\u7ed3\u5c3e\uff1a\u5e7f\u89d2\u955c\u5934\u4e0b\uff0c\u80cc\u666f\u4e2d\u51fa\u73b0\u65e0\u5c3d\u7684\u5f69\u8679\u3002\u6444\u50cf\u673a\u62c9\u8fdc\u955c\u5934\uff0c\u663e\u793a\u5b69\u5b50\u548c\u9732\u5a1c\u624b\u7275"} +{"id": "5000504", "video_name": "50faccb3-7aa9-51d6-b6c6-0b42d20557ad", "text": "\u4e00\u53ea\u9e21\u6b63\u5728\u4ee53D Pixar\u98ce\u683c\u751f\u86cb\uff0c\u5f88\u53ef\u7231\uff0c\u6bd4\u4f8b\u4e3a16\uff1a9\uff0c\u98ce\u683c\u4e3a\u5361\u901a\u3002"} +{"id": "5000505", "video_name": "d8d269ed-6012-531d-a81d-5d3955d08148", "text": "\u53f3\u4fa7\u9ad8\u901f\u516c\u8def\u62a4\u680f\u4e0a\u7684\u5e7f\u544a\u724c\uff0c\u5728\u96fe\u8499\u8499\u7684\u516c\u8def\u4e0a\uff0c\u901a\u8fc7\u8f66\u7a97\u4fef\u77b0\u5c4f\u5e55\u4e0a\u5199\u7740\u201c"} +{"id": "5000506", "video_name": "a3f0613d-7645-51fb-bce1-4a0b54fee159", "text": "\u6709\u8da3\u7684\u732b\u821e\uff0c\u5fae\u7b11\uff0c\u76f8\u673a\u6296\u52a8\u3002"} +{"id": "5000507", "video_name": "59df0eaa-d3da-5d7c-b36b-394a3e8d6c97", "text": "\u4e91\u6735\u5728\u5929\u7a7a\u7684\u73bb\u7483\u5c42\u4e2d\u79fb\u52a8\u300216:9 \u4fe1\u606f\uff1a1 \u9644\u4ef6\u3002"} +{"id": "5000508", "video_name": "3e4e4b0c-3bfe-5ae1-be0b-d4f2aadf93c8", "text": "\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5728\u6559\u5802\u91cc\u7948\u7977\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u91d1\u8272\u5934\u53d1\uff0c\u7948\u7977\u65f6\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u5c04\uff0c\u9ad8\u6e05"} +{"id": "5000509", "video_name": "7262abb1-22af-5c0f-8a43-45fab898e730", "text": "\u4e00\u5bf9\u5e74\u8f7b\u592b\u5987\u9a7e\u8f66\u7a7f\u8fc7\u6c99\u6f20\u3002\u7531\u4e8e\u6c7d\u8f66\u629b\u951a\uff0c\u5e74\u8f7b\u592b\u5987\u6b65\u884c\u524d\u5f80\u3002\u6700\u7ec8\u5230\u8fbe"} +{"id": "5000510", "video_name": "0f474b98-f0a6-5c62-be75-efa7422861ce", "text": "\u9c7c\u3001\u6d77\u9f9f\u548c\u6d77\u9a6c\u5982\u4eca\u56e0\u8bef\u89e3\u548c\u4e89\u7aef\u800c\u5206\u88c2\u3002\u51b3\u5fc3\u6062\u590d\u548c\u5e73\uff0c\u8428\u66fc\u838e\u5251\u9c7c\u51b3\u5b9a\u5c55"} +{"id": "5000511", "video_name": "ad3a59b4-c835-5e7f-8ef5-af4e4489f217", "text": "\u4ed6\u671d\u68c9\u82b1\u7cd6\u5154\u5b50\u6296\u4e86\u6296\u9f3b\u5b50\uff0c\u5b83\u4eec\u50cf\u84ec\u677e\u7684\u4e91\u4e00\u6837\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "5000512", "video_name": "9f058339-59f6-5982-b6ac-fadff474e883", "text": "\u592a\u7a7a\u3001\u8272\u5f69\u6591\u6593\u7684\u98de\u6e85\u3001\u661f\u661f\u3001\u5b87\u5b99\u4ee4\u4eba\u96be\u4ee5\u7f6e\u4fe1\u7684\u7f8e\u4e3d\u3001\u592a\u7a7a\u4e2d\u7684\u8fd0\u52a8"} +{"id": "5000513", "video_name": "ee072eb0-5e01-5671-ba64-cdb699703874", "text": "\u4efb\u5929\u58028\u4f4d\u677e\u5f1b\u96e8\u8996\u983b"} +{"id": "5000514", "video_name": "c9e2ae50-c162-54ba-82ff-1264abbbc546", "text": "\u5de8\u4e73\u840c\u795e\u5728\u6d77\u6ee9\u4e0a\u7a7f\u7740\u6cf3\u88c5"} +{"id": "5000515", "video_name": "5f50b8f7-da60-5d1a-b0ea-7e93eafc6881", "text": "\u521b\u9020\u4e00\u4e2a\u5438\u5f15\u4eba\u7684\u4ecb\u7ecd\u6751\u5e84\u7684\u5f00\u5934\uff0c\u5f15\u53d1\u4eba\u4eec\u5bf9\u5176\u72ec\u7279\u6c1b\u56f4\u548c\u79d8\u5bc6\u7684\u597d\u5947\u5fc3\u3002"} +{"id": "5000516", "video_name": "34d9230a-aff7-5db0-a418-e2be984c9582", "text": "\u53e4\u4ee3\u4eba\u7c7b\u7956\u5148\u7684\u590d\u5236\u54c1"} +{"id": "5000517", "video_name": "50d23c75-59a8-5609-b7c2-517f24402b41", "text": "\u84dd\u773c\u775b\u6d41\u4e0b\u4e86\u5f88\u591a\u773c\u6cea\u3002"} +{"id": "5000518", "video_name": "87c9edce-5008-52aa-abfd-61967cfc37c2", "text": "\u4e00\u4e2a\u6df1\u6797\u4e2d\u7684\u5c71\uff08\u73b0\u4ee3\u5b57\u4f53\uff09"} +{"id": "5000519", "video_name": "e64a364f-cd95-5b38-b515-1cd88b1c7665", "text": "\u53ef\u7231\u7684\u60c5\u4fa3\u5750\u5728\u5c0f\u5c71\u4e0a\uff0c\u770b\u7740\u6708\u4eae\uff0c\u7136\u540e\u4e92\u76f8\u63a5\u543b\u300215\u79d2\u89c6\u9891\u3002"} +{"id": "5000520", "video_name": "d267d1b2-aa26-5b58-9194-1383b954b08c", "text": "\u58a8\u6c34\u843d\u5165\u6c34\u4e2d\u5e76\u65cb\u8f6c\uff0c\u5f62\u6210\u9ec4\u8272\u548c\u7eff\u8272\u7684\u8272\u5f69\u3002"} +{"id": "5000521", "video_name": "d1e084f8-97a1-5a7c-9b9a-de91d51f002f", "text": "\u5496\u5561\uff0c\u5723\u8bde\u5143\u7d20\uff0c\u52c7\u6562\u9762\u5bf9\u708e\u70ed\uff0c\u6e29\u6696\u753b\u9762\u3002"} +{"id": "5000522", "video_name": "ad7cddd0-9e46-517a-a82a-eac59e38e533", "text": "\u4e00\u4e2a\u52a8\u6f2b\u7248\u7684\u8718\u86db\u4fa0\u5728\u57ce\u5e02\u4e2d\u7a7f\u68ad\u3002"} +{"id": "5000523", "video_name": "3bc110af-78d1-5169-982f-58c3a8efe0a2", "text": "\u5c55\u793aZOV\u7684\u6a2a\u5e45\u66f4\u6539\u4e3a\u8fc8\u514b\u00b7\u6cf0\u68ee\u9ad8\u6e05\u52a8\u6001\u89c6\u9891\u3002"} +{"id": "5000524", "video_name": "6f6ecf4b-0e1e-5981-bc68-6f2c03259b72", "text": "\u8c61\u5f81\u6027\u7684\u9633\u5149\u7a7f\u7834\u4e91\u5c42\uff0c\u7167\u8000\u690d\u7269\uff0c\u4ee3\u8868\u7740\u6218\u80dc\u9006\u5883\u7684\u80dc\u5229\u3002"} +{"id": "5000525", "video_name": "91f9341d-3343-54e9-8073-64f03678e5e5", "text": "\u6d41\u884c\u97f3\u4e50\u5de8\u661fBad Bunny\u5f00\u7740\u8dd1\u8f66\u5728\u7a7a\u65e0\u4e00\u4eba\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u9a76\uff0c\u62cd\u6444\u51fa\u7535\u5f71\u822c\u7684\u52a8\u4f5c\u753b\u9762\u3002"} +{"id": "5000526", "video_name": "a1755518-a5c8-5031-9ec7-a5a564af06c7", "text": "\u4e09\u7ef4\u4e2d\u8fdb\u884c\u730e\u8c79\u5954\u8dd1\u7684\u5faa\u73af\u52a8\u753b\uff0c\u4f7f\u7528\u5faa\u73af\u6e32\u67d3\u3001\u5149\u7ebf\u8ffd\u8e2a\u6280\u672f\uff0c3000\u4e2a\u6837\u672c\uff0c\u5177\u5907"} +{"id": "5000527", "video_name": "b258c21f-c2a9-5753-a4b2-9c10d0d4df42", "text": "\u6770\u4f5c\uff0c\u201c\u76ae\u5361\u201d\u4e4b\u8bcd\u7531\u8bb8\u591a\u4eba\u7ec4\u6210\uff0c\u5f62\u6210\u4e86\u4e00\u652f\u5e9e\u5927\u7684\u4eba\u7fa4\u3002\u4eba\u7fa4\u6309\u7167\u76ae\u5361\u7684\u6807\u5fd7\u5f62\u72b6\u7ad9"} +{"id": "5000528", "video_name": "9714b7a0-071e-5ab4-87a3-05feeb2a3c45", "text": "\u5728\u51ac\u5929\u91cc\u8df3\u5165\u51b7\u6c34\u6f6d\u7684\u7537\u4eba\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u573a\u666f\u3002"} +{"id": "5000529", "video_name": "4186fd83-cf41-5c51-9ea7-91e6bc2e21a7", "text": "\u62d6\u62c9\u673a\u5e7f\u573a\u821e\uff1a\u9a7e\u9a76\u5458\u7cbe\u51c6\u5730\u64cd\u7eb5\u62d6\u62c9\u673a\uff0c\u5f62\u6210\u6a21\u4eff\u4f20\u7edf\u5e7f\u573a\u821e\u52a8\u4f5c\u7684\u56fe\u6848\u548c\u5e8f\u5217\u3002"} +{"id": "5000530", "video_name": "91b8f196-a100-5a2e-8a66-d9e987fe9aca", "text": "\u4e00\u5757\u73b0\u5b9e\u5347\u8d77\u5230\u5b87\u5b99\u4e2d\u3002"} +{"id": "5000531", "video_name": "5c1cc84c-707f-502f-aaf2-c6eb946a11c1", "text": "\u5973\u4eba\u8d70\u51fa\u5de5\u4f5c\u5730\u65b9\uff0c\u677e\u4e86\u4e00\u53e3\u6c14\uff0c\u7136\u540e\u5f00\u8f66\u79bb\u5f00\u3002"} +{"id": "5000532", "video_name": "7faa7005-d489-5fa6-b572-78151638816a", "text": "\u4e00\u4e2a\u4f7f\u7528\u5854\u7f57\u724c\u7684\u5947\u602a\u7684\u5c0f\u52a8\u753b\u89d2\u8272\u3002\u6050\u6016\u3002\u795e\u79d8\u3002\u5947\u5f02\u3002"} +{"id": "5000533", "video_name": "e118fa64-9a57-5749-9833-c1cc65611859", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u4e00\u4e2a\u60ac\u7a7a\u4e8e\u4e24\u5ea7\u5c71\u4e4b\u95f4\u7684\u6865\u4e0a\uff0c\u624b\u6301\u957f\u5251\u8fdb\u884c\u6218\u6597\u3002\u573a\u666f\u8bbe\u5b9a\u5728\u4e2d\u4e16\u7eaa\uff0c\u5929\u7a7a\u9634\u6697\uff0c"} +{"id": "5000534", "video_name": "cb94688f-e094-50c5-be20-803258a0e5e7", "text": "\u5973\u6027\u4eba\u5f62\u7f13\u6162\u821e\u52a8\uff0c\u5728\u706b\u7130\u573a\u666f\u4e2d\uff0c\u7f13\u6162\u6444\u50cf\u673a\u65cb\u8f6c\uff0c4K\uff0c9:16\u3002"} +{"id": "5000535", "video_name": "f8a7f82a-ada3-5049-9f50-7dfee777e4d3", "text": "\u9f99\u5728\u7ebd\u7ea6\uff0c\u8f9b\u70f7\u6e32\u67d3\uff0c4K\uff0c8K\u3002"} +{"id": "5000536", "video_name": "eb646527-0f3e-59e1-9569-3046a1447bb1", "text": "\u5728\u4f60\u7684\u8111\u6d77\u4e2d\u6784\u5efa\u4e00\u4e2a\u8c26\u5351\u7684\u5bb6\u5ead\u5f62\u8c61\uff0cSheikh Challi\u548c\u4ed6\u7684\u59bb\u5b50\u4f4f\u5728\u90a3\u91cc\u3002\u5728\u8fd9\u4e2a\u5f62\u8c61\u4e2d\uff0c\u4f60\u53ef\u4ee5\u770b"} +{"id": "5000537", "video_name": "04641d74-73e8-59b2-a850-623c97bf7b9f", "text": "Source sentence: lo fi \u73af\u5883\u4e0b\uff0c\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u4e00\u53f0\u5927\u578b\u7684\u672a\u6765\u7535\u8111\u4e0a\u5b66\u4e60\uff0c\u706f\u51493D\u52a8\u753b\u8d5b\u535a\u670b\u514b"} +{"id": "5000538", "video_name": "f595fce4-b7fc-5466-a485-dca5578e5e48", "text": "\u975e\u5e38\u8be6\u7ec6\u7684\u52a8\u6f2b\u300a\u6c34\u624b\u6708\u4eae\u300b\uff0c\u5403\u7740\u6c49\u5821\u3002"} +{"id": "5000539", "video_name": "74668d96-cf44-579d-93c4-2671672ee732", "text": "\u7d2b\u8272\u7684\u666f\u89c2\uff0c\u661f\u7a7a\u7480\u74a8\u7684\u591c\u665a\uff0c\u6cb3\u6c34\u7f13\u7f13\u6d41\u52a8\u3002"} +{"id": "5000540", "video_name": "0da23574-7619-515b-8e7a-f91fa5f31463", "text": "\u767e\u6155\u5927\u4e09\u89d2\u5730\u5e26\u7684\u8fd1\u8ddd\u79bb\u89c6\u89d2\u3002"} +{"id": "5000541", "video_name": "3c2262e9-ae9d-562d-99d4-ea13a8b9e59b", "text": "\u63ed\u5f00\u4f7f\u7528\u8fd9\u53f0\u6253\u5b57\u673a\u7684\u4f5c\u5bb6\u6216\u827a\u672f\u5bb6\u7684\u521b\u4f5c\u8fc7\u7a0b\u3002\u6709\u54ea\u4e9b\u6545\u4e8b\u6216\u6770\u4f5c\u7b49\u5f85\u8bde\u751f\uff1f"} +{"id": "5000542", "video_name": "aa138dac-ffd2-5d69-907d-5200f2096c62", "text": "\u6587\u804c\u8b66\u5bdf\u7684\u7279\u5b9a\u5355\u4f4d\u7a7f\u7740\u4eae\u7ea2\u3001\u84dd\u3001\u7eff\u8272\u7684\u5236\u670d\uff0c\u800c\u4e00\u4e9b\u5c0f\u5355\u4f4d\u5219\u7a7f\u7740\u81ea\u5236\u7684\u670d\u88c5\u3002\u300a\u98ce"} +{"id": "5000543", "video_name": "c6a582f4-6d7c-5fa5-831a-a11cdd04f4f5", "text": "\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u957f\u888d\u7684\u7537\u4eba\u8d70\u5411\u6e2f\u53e3\u7684\u4e00\u8258\u6728\u8239\uff0c\u8239\u8fb9\u6709\u4eba\u7ad9\u7740\uff0c\u80cc\u5f71\u89c6\u89d2\uff0c\u65f6\u95f4\u662f\u516c\u5143\u524d0"} +{"id": "5000544", "video_name": "5fdb50e9-9d0d-5404-bcab-060335a954b0", "text": "Roblox\u73a9\u5bb6\u5728\u540e\u53f0\u623f\u95f4\u7684\u97f3\u4e50\u4f1a\u4e0a\u8df3\u821e\u3002"} +{"id": "5000545", "video_name": "281c3b6e-1dd2-55c3-963d-edc2f94e3951", "text": "muscle, and roasted vegetables are rich in vitamins, minerals, and fiber."} +{"id": "5000546", "video_name": "f342d5a5-14c7-5fb5-9a27-d767a0c9f31d", "text": "\u4f01\u9e45\u6253\u9f13\u3002\u4fe1\u606f\uff1a\u7f8e\u4e3d\u7684\u8fa3\u6912\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000547", "video_name": "5aea7c83-d212-5931-86cb-fd4591bb568d", "text": "\u767d\u9a6c\u5728\u53ef\u6015\u7684\u9ad8\u5927\u68ee\u6797\u4e2d\u5954\u8dd1\uff0c\u65b0\u7684\u53cc\u5cf0\u9547\u573a\u666f\u3002"} +{"id": "5000548", "video_name": "b9c3bd99-fdfe-59b3-9a7b-b84c242fb803", "text": "\u6c99\u6f20\u4e2d\u88ab\u7eff\u87d2\u5305\u56f4\u7684\u9ed1\u8272\u5409\u666e\u8f66\u3002"} +{"id": "5000549", "video_name": "dbcbd0e8-099a-56d3-9e41-adaf1e6342d2", "text": "\u975e\u5e38\u7f8e\u4e3d\u751c\u7f8e\uff0c\u5de7\u514b\u529b\u6838\u7206\u5728\u9065\u8fdc\u7684\u8611\u83c7\u68ee\u6797\u4e2d\uff0c\u975e\u5e38\u8d85\u903c\u771f\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "5000550", "video_name": "be910256-5513-593c-8e00-7ac02d622355", "text": "\u7537\u5b69\u548c\u5973\u5b69\u7684\u5b69\u5b50\u5728\u5c4b\u9876\u4e0a\u548c\u82b1\u56ed\u91cc\u7b11\u3002 \n\nSource sentence: I am going to the grocery store to buy some vegetables and fruits. \n\n\u6211\u8981\u53bb\u6742\u8d27"} +{"id": "5000551", "video_name": "29affbde-3ffb-5697-b77f-61c4c443b731", "text": "\u4e00\u53ea\u82cd\u9e6d\u7684\u56fe\u7247\u4f5c\u4e3a\u4f01\u4e1a\u6807\u5fd7\u3002"} +{"id": "5000552", "video_name": "a4eca00c-a90c-5513-beb3-aa259d76e638", "text": "\u5b69\u5b50\u6d1b\u6c57\u795e\u5728\u68ee\u6797\u91cc\u73a9\u800d\uff0c\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "5000553", "video_name": "9909a751-32bd-5a3a-b614-b1a2691c97d2", "text": "\u4e00\u53ea\u5c0f\u9e21\u4ece\u6d77\u5cb8\u8fb9\u7684\u86cb\u4e2d\u5b75\u5316\u51fa\u6765\u3002"} +{"id": "5000554", "video_name": "145b15d9-11d5-5fab-9926-c3d1ce1a5328", "text": "\u5728\u7e41\u534e\u7684\u57ce\u5e02\u4e2d\u82e6\u82e6\u5bfb\u627e\u521b\u4f5c\u7075\u611f\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\uff0c\u611f\u5230\u8ff7\u5931\u548c\u4e0e\u827a\u672f\u7684\u70ed\u60c5"} +{"id": "5000555", "video_name": "251e0f3b-1b7a-58f1-a008-1f492b6ec80b", "text": "\u521b\u4f5c\u4e00\u5e45\u63cf\u7ed8\u4eba\u7c7b\u5728\u706b\u661f\u4e0a\u7e41\u8363\u53d1\u5c55\u7684\u63d2\u753b\uff0c\u5c55\u793a\u521b\u65b0\u7684\u80fd\u6e90\u3001\u6c34\u8d44\u6e90\u548c\u98df\u54c1\u751f\u4ea7\u6280\u672f\u3002"} +{"id": "5000556", "video_name": "e6e2bd8f-8d4b-57f9-82b2-f48c35f2575b", "text": "\u9c8d\u52c3\u00b7\u7f57\u65af\u7528\u5934\u53d1\u4f5c\u4e3a\u753b\u7b14\u3002"} +{"id": "5000557", "video_name": "99d16196-f1a1-514e-a537-efe15162e612", "text": "\u5728\u7ea6\u585e\u7c73\u8482\u56fd\u5bb6\u516c\u56ed\u4e0e\u5b69\u5b50\u4eec\u73a9\u800d\u3002"} +{"id": "5000558", "video_name": "936472e2-af27-561c-bdee-bed699e7f7be", "text": "\u56e2\u961f\u4ece\u5821\u5792\u697c\u68af\u4e0a\u8dcc\u843d\u5e76\u4e27\u751f\u3002"} +{"id": "5000559", "video_name": "2d22470f-45c0-501b-af11-fb229b3e63f5", "text": "90\u5e74\u4ee3\u5f55\u97f3\uff0c\u5df4\u9ece\u4e16\u5bb6JDM\u6c7d\u8f66\u5de5\u4f5c\u5ba4\u5168\u666f\u62cd\u6444\u3002"} +{"id": "5000560", "video_name": "ac0475f6-35fc-57f1-8258-d6cdf2bbb9cd", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u591c\u665a\u7684\u7530\u91ce\u4e0a\u9a91\u7740\u4e00\u5339\u9a6c\u3002"} +{"id": "5000561", "video_name": "113d0cfa-6539-5abd-9ec3-bcd4aee8d1d1", "text": "\u4e00\u4f4d\u7f8e\u9e97\u5377\u9aee\u300126\u6b72\u7684\u4eba\u7ad9\u5728\u5df4\u723e\u7684\u6469\u5e02\u3002"} +{"id": "5000562", "video_name": "a545f86e-8748-5de3-bbbf-1c509f9c6f61", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u5de5\u5320\u5728\u8f66\u95f4\u91cc\uff0c\u5468\u56f4\u662f\u4e00\u7fa4\u949f\u8868\u81ea\u52a8\u673a\u5668\u4eba\uff0c\u5979\u7684\u9762\u5177\u662f\u4e00\u4ef6\u7cbe\u7f8e\u7684\u9f7f\u8f6e\u88c5\u7f6e"} +{"id": "5000563", "video_name": "e533d001-ddb9-564c-86f5-7436c0d6d3fd", "text": "\u4e00\u5f20\u6709\u7740\u91d1\u8272\u5377\u66f2\u5934\u53d1\u7684\u5c0f\u5b69\u7ad9\u5728\u76f4\u5347\u673a\u524d\u7684\u7167\u7247\uff0c\u56fe\u5f62\u8bbe\u8ba1\u51b2\u51fb\u529b\u5f3a\uff0c\u6218\u4e89\u80cc\u666f\uff0c\u7167\u7247"} +{"id": "5000564", "video_name": "f613e78b-d579-57ff-a765-665461e2c072", "text": "\u591c\u7a7a\u4e2d\u8272\u5f69\u6591\u6593\u7684\u7403\u4f53\uff0c\u5982\u68a6\u4f3c\u5e7b\u7684\u666f\u8c61\u3002\u5b88\u62a4\u4ed9\u5973\u5fae\u7b11\u7740\uff0c\u4e24\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u5728"} +{"id": "5000565", "video_name": "16a3781c-b1bd-5524-bc98-bb9442d72cbc", "text": "\u5f53\u82ad\u6bd4\u7b2c\u4e00\u6b21\u89c1\u5230\u5965\u672c\u6d77\u9ed8\u65f6\uff0c\u5206\u8fa8\u7387\u4e3a8K\uff0c\u6e05\u6670\u800c\u8be6\u7ec6\uff0c\u82ad\u6bd4\u4e16\u754c\u80cc\u666f\u4e2d\u6709\u6838\u7206\u70b8"} +{"id": "5000566", "video_name": "9489c329-a3de-57d3-9b85-6144cef3ac9e", "text": "\u4e00\u4e2a\u91d1\u8272\u7684\u4e2d\u56fd\u51e4\u51f0\u548c\u4e00\u4e2a\u91d1\u8272\u7684\u4e2d\u56fd\u9f99\u4e00\u8d77\u98de\u7fd4\u3002"} +{"id": "5000567", "video_name": "0d885f5f-12b5-5249-b87d-55e587d22cd1", "text": "\u5728\u80cc\u666f\u4e2d\u53ef\u4ee5\u770b\u5230\u95ea\u7535\uff0c\u8863\u7269\u5728\u98ce\u4e2d\u6643\u52a8\u3002"} +{"id": "5000568", "video_name": "c08af97b-7019-50d1-978e-247bef32362a", "text": "\u7ae0\u9c7c\u4ece\u6444\u50cf\u673a\u65c1\u8fb9\u6e38\u8fc7\u7684\u6c34\u4e0b\u666f\u8c61\u3002"} +{"id": "5000569", "video_name": "8d3ba219-7968-543f-aa5d-bbd8c5cfd46f", "text": "\u4e00\u53ea\u7a7f\u7740\u897f\u88c5\u5403\u665a\u9910\u7684\u6d77\u8c5a\u3002"} +{"id": "5000570", "video_name": "2fcccf13-fd86-5344-8cc5-eaee0dece583", "text": "2023\u5e74\u6a44\u6984\u7403\u4e16\u754c\u676f\u56db\u5206\u4e4b\u4e00\u51b3\u8d5b\u4e2d\uff0c\u5357\u975e\u51fb\u8d25\u4e86\u6cd5\u56fd\u3002"} +{"id": "5000571", "video_name": "33579e94-6735-5c66-9001-ed8cfc4303b5", "text": "\u4e00\u6761\u4e0b\u7740\u96ea\u7684\u8def\u4e0a\uff0c\u4e00\u4e2a\u7a7f\u7740\u5723\u8bde\u670d\u7684\u96ea\u4eba\u5728\u8df3\u821e\uff0c\u4e00\u4e2a\u7a7f\u7740\u5723\u8bde\u670d\u7684\u7537\u5b69\u548c\u5973\u5b69\u4e5f"} +{"id": "5000572", "video_name": "972031df-02e0-5034-8c87-f9e443108757", "text": "\u4e00\u4e2a\u8a79\u59c6\u65af\u00b7\u65fa\u6050\u6016\u7535\u5f71\u7684\u573a\u666f\u3002\u4e00\u4e2a\u5973\u4eba\u8d70\u8fc7\u4e00\u6247\u524d\u95e8\uff0c\u8fdb\u5165\u4e00\u4e2a\u5145\u6ee1\u5c18\u571f\u7684\u7834\u65e7\u623f"} +{"id": "5000573", "video_name": "f9e937c7-03d7-55cd-965c-b9fc4278b131", "text": "\u5c71\u7f8a\u98de\u8fc7\u95f9\u9b3c\u7684\u68ee\u6797\u4e2d\u7684\u706b\u7130\u3002"} +{"id": "5000574", "video_name": "dec75683-0077-5dbe-afc9-2a538537e041", "text": "\u65e0\u4eba\u673a\u5728\u6726\u80e7\u7684\u6e05\u6668\u98de\u8d8a\u592a\u9633\u80fd\u7535\u6c60\u677f\u5b89\u88c5\u573a\u666f\u3002\u6e05\u6668\u7684\u96fe\u6c14\u4e2d\u6f02\u6d6e\u7740\u7f8e\u4e3d\u7684\u9633"} +{"id": "5000575", "video_name": "32ffef61-f9fe-592d-aa59-b027f42ffd4c", "text": "\u6c64\u59c6\u662f\u4e00\u4e2a\u4e8c\u5341\u591a\u5c81\u7684\u5e74\u8f7b\u4eba\uff0c\u6234\u7740\u53e3\u7f69\uff0c\u901a\u8fc7\u6536\u96c6\u5fc5\u8981\u7684\u6b66\u5668\u548c\u7535\u8111\u4e3a\u4efb\u52a1\u505a\u51c6\u5907\u3002"} +{"id": "5000576", "video_name": "1f8f22e1-c156-5991-a3f1-3923c7c1d6ce", "text": "\u6709\u8377\u53f6\u7684\u6e56\u6c34\uff0c\u8377\u53f6\u5468\u56f4\u6e85\u8d77\u6d9f\u6f2a\uff0c\u6c34\u4ee5\u5361\u901a\u98ce\u683c\u6447\u66f3\u3002"} +{"id": "5000577", "video_name": "f66ab17c-11bf-5894-a6f6-797a1d4f1133", "text": "\u5728\u9ed1\u6697\u7684\u5730\u65b9\u62cd\u6444\u4e00\u4e2a\u89c6\u89d2\u955c\u5934\uff0c\u5e76\u6709\u6e29\u6696\u7684\u95ea\u5149\u3002"} +{"id": "5000578", "video_name": "9d7a5e5f-0dab-551b-896f-b06382027339", "text": "\u9ec4\u5934\u53d1\u7684\u5973\u5b69\uff0c\u6ca1\u6709\u7a7f\u8863\u670d\uff0c\u6f20\u4e0d\u5173\u5fc3\u5730\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u767d\u8272\u7684\u80cc\u666f\uff0c\u8eab\u6750\u5300\u79f0\u3002"} +{"id": "5000579", "video_name": "d80f0047-022a-5c9d-8900-2a41e89ef933", "text": "\u4e2d\u4e16\u7eaa\u7684\u62c9\u65af\u7ef4\u52a0\u65af\uff0c\u65e0\u4eba\u673a\u62cd\u6444\uff0c\u6bc1\u706d2016\u5e74\u7684\u5730\u72f1\uff0c\u5730\u72f1\u4e4b\u706b\uff0c\u5730\u72f1\u822c\u7684"} +{"id": "5000580", "video_name": "565eeda2-fa65-5fe8-87ba-6bd0b9061890", "text": "\u4e00\u4e2a\u7a7f\u7740\u62ab\u98ce\u7684\u5f3a\u58ee\u5927\u6c49\uff0c\u80cc\u7740\u4e00\u4e2a\u76d2\u5b50\uff0c\u75b2\u5026\u5730\u5728\u96ea\u5730\u4e2d\u6500\u767b\u5c71\u5cf0\u3002"} +{"id": "5000581", "video_name": "9e14a4e8-c3d5-5e18-919d-c6cb96177a8b", "text": "\u6cb3\u6c34\u4e2d\u6f02\u6d6e\u82b1\u74e3\u7684LOFI\u573a\u666f"} +{"id": "5000582", "video_name": "25b49ad8-819d-5529-bd55-f4e5421ec88e", "text": "\u6b22\u8fce\u6691\u5047\u540e\u56de\u5230\u5b66\u6821\u3002"} +{"id": "5000583", "video_name": "8d809204-221d-5e7a-9c26-56d5a5079d61", "text": "\u4e00\u4e2a\u4eba\u81ea\u4fe1\u5730\u5173\u4e0a\u8eab\u540e\u7684\u95e8\uff0c\u8e0f\u4e0a\u65b0\u7684\u9053\u8def\u3002\u5173\u95ed\u7684\u95e8\u4e0a\u6302\u7740\u4e00\u4e2a\u6307\u5411\u524d\u65b9\u672a\u88ab\u63a2\u7d22\u7684\u6fc0\u52a8\u4eba\u5fc3\u7684\u666f"} +{"id": "5000584", "video_name": "3c3d9241-e7d8-5f3b-b9d1-b773c38e03b9", "text": "\u4e00\u4e2a\u7528\u91d1\u94f6\u5236\u6210\u7684\u9b54\u6cd5\u5b9d\u73e0\u5728\u65cb\u8f6c\uff0c\u4fe1\u606f\u4e3a\u963f\u6839\u5ef7\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000585", "video_name": "95630a8d-9c8c-576f-9ad7-a5bc8dbaebc2", "text": "\u5b69\u5b50\u4eec\u5728\u73a9\u82f9\u679c\u5361\u901a\u573a\u666f\u3002"} +{"id": "5000586", "video_name": "eb439703-2e77-5584-97d0-63bbc9b4da18", "text": "\u5b83\u80fd\u591f\u50cf\u4eba\u7c7b\u4e00\u6837\u8bf4\u8bdd\u3001\u5199\u4f5c\u548c\u7ffb\u8bd1\u3002"} +{"id": "5000587", "video_name": "c76754b8-6bfc-56fc-96d1-b19bb8955fef", "text": "\u4e00\u4e2a\u5b69\u5b50\u548c\u4ed6\u7684\u670b\u53cb\u4e00\u8d77\u7761\u89c9\uff0c\u5934\u53d1\u8f7b\u5fae\u5730\u52a8\u4e86\u52a8\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "5000588", "video_name": "c0dee9b8-8419-5754-9921-7e69c48f1fed", "text": "\u4e00\u58f0\u5728\u7a7a\u6c14\u4e2d\u5c55\u5f00\u7684\u91cd\u51fb\uff0c\u9ad8\u54c1\u8d288k\u3002"} +{"id": "5000589", "video_name": "a1377356-10b5-535d-bebb-413d6a39e535", "text": "\u4e00\u80a1\u6e29\u67d4\u7684\u5fae\u98ce\u62c2\u52a8\u7740\u6811\u53f6\uff0c\u5e26\u7740\u65b0\u5f00\u59cb\u7684\u5e0c\u671b\u3002\u8fd9\u5f20\u7167\u7247\u5524\u8d77\u4e86\u5e0c\u671b\u548c\u91cd\u751f\u7684"} +{"id": "5000590", "video_name": "07990384-ca67-5bef-8710-a0b9385accf0", "text": "\u4e00\u4e2a\u5706\u5706\u7684\u3001\u79c3\u9876\u7684\u3001\u9ed1\u8272\u7684\u3001\u53ef\u7231\u7684\u7537\u4eba\u88ab\u4e09\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u548c\u4e24\u4e2a\u7537\u5b69\u5305\u56f4\u5728\u4e00\u4e2a\u5145\u6ee1\u6d3b"} +{"id": "5000591", "video_name": "3662bbaf-f3df-5fa5-89fb-58ffd4978a32", "text": "\u4e1c\u4eac\u5348\u591c\uff0c\u706f\u706b\u8f89\u714c\uff0c\u84dd\u8272\u548c\u7eff\u8272\u7684\u8272\u8c03\uff0c\u7a7f\u7740\u8d85\u5927\u53f7\u9ed1\u8272\u8fde\u5e3d\u886b\u6234\u7740\u8033\u673a\u7684\u7537\u5b50"} +{"id": "5000592", "video_name": "dfd1d6a8-d44d-5aa3-bcbe-bedc109d9111", "text": "\u6709\u4e00\u5929\uff0cTenali Rama\u548c\u4ed6\u7684\u670b\u53cb\u8eba\u5728\u79cb\u5343\u4e0a\uff0c\u4eab\u53d7\u7740\u6e29\u548c\u7684\u6d77\u98ce\u3002\u90a3\u662f\u4e00\u4e2a\u7f8e\u597d\u7684\u65e5\u5b50\uff0c\u4e24\u4e2a\u4eba"} +{"id": "5000593", "video_name": "e0214d56-3c65-5912-ba53-4690023c1cb5", "text": "\u4f26\u6566\u5e02\u6709\u6d77\u5578\u3002"} +{"id": "5000594", "video_name": "556b1b51-e43d-5cd5-a10f-27b5c0f4ed54", "text": "\u79cb\u5929\u7684\u508d\u665a\uff0c\u5915\u9633\u843d\u5728\u5c71\u4e0a\u3002"} +{"id": "5000595", "video_name": "1a29f478-2974-5c97-86a1-e8b2f0f6264c", "text": "\u6240\u6709\u52a8\u7269\u90fd\u975e\u5e38\u9707\u60ca\u6162\u52a8\u4f5c\u6548\u679c\u3002"} +{"id": "5000596", "video_name": "a85e7f7b-54f8-52ce-b622-8f65dd92ab70", "text": "1996\u5e74\u5954\u9a70AMG\u5957\u4ef6\u914d\u5907\u76844K\u7535\u5f71\u5916\u89c2\u884c\u9a76\u7ecf\u8fc7\u6d82\u9e26\u5899\u3002"} +{"id": "5000597", "video_name": "750ae98b-82a9-5061-adde-10fed12cf29d", "text": "\u6df1\u6d77\u62cd\u6444\u7684\u539f\u59cb\u753b\u9762\uff0c\u9ec4\u91d1\u6389\u5728\u5730\u4e0a\u3002"} +{"id": "5000598", "video_name": "fc181428-ad50-5cb4-90b3-ca8e084f7fe2", "text": "\u5927\u7fa4\u5e74\u8f7b\u4eba\u6d17\u52abFootlocker\u7684\u76d1\u63a7\u5f55\u50cf\u3002"} +{"id": "5000599", "video_name": "257ec720-b91b-591f-b87a-9538e1a30c0d", "text": "\u6708\u4eae\uff08\u8424\u706b\u866b\uff09\u7528\u5979\u795e\u5947\u7684\u5149\u8292\u89e6\u78b0\u4e86\u5c71\u59c6\u3002"} +{"id": "5000600", "video_name": "a9d9d420-7e17-5e47-a817-9addb51efe69", "text": "\u9633\u5149\u7167\u5728\u8239\u4e0a\u7c73\u8001\u9f20\u7684\u80cc\u540e\u3002"} +{"id": "5000601", "video_name": "f69361a2-2c34-5a85-a850-8df6d0b48d01", "text": "\u5f17\u83b1\u8fea\u4ece\u4e94\u591c\u540e\u5f17\u83b1\u8fea\u770b\u7740\u6444\u50cf\u5934\uff0c\u773c\u775b\u62bd\u6410\u3002"} +{"id": "5000602", "video_name": "b6e73ca5-8c43-5f84-8125-da79525ed555", "text": "\u7167\u7247\u4e2d\u5fc3\u7684\u662f\u4e00\u4e2a\u706b\u8fa3\u7684\u5973\u5b69\u3002"} +{"id": "5000603", "video_name": "b05e6568-b7ea-5816-8c5e-1b9fb9b157a0", "text": "\u5c71\u4e2d\u6cb3\u6c34\u9759\u9759\u5730\u6d41\u6dcc\uff0c\u8f7b\u54fc\u7740\u6c34\u58f0\uff0c\u4ee4\u4eba\u653e\u677e\u3002"} +{"id": "5000604", "video_name": "cc15eb76-6ac2-500c-8909-e391ac2e2daf", "text": "\u6cf0\u56fd\u50e7\u4fa3\u5728\u9ed1\u6697\u7684\u6d1e\u7a74\u4e2d\u884c\u8d70\u3002"} +{"id": "5000605", "video_name": "cd700e5f-2417-5e09-b83c-eff6423bdb66", "text": "\u53ef\u7231\u7684\u9ec4\u8272\u718a\u62ff\u7740\u714e\u9505\u3002"} +{"id": "5000606", "video_name": "293f675d-aa1f-5acf-95f5-15e0706d8b4e", "text": "\u65b0\u5e74\u5feb\u4e50! (Happy New Year!)"} +{"id": "5000607", "video_name": "350916e0-de5f-5d97-98c4-e595cbaee33e", "text": "SLS 3D\u6253\u5370\u89c6\u9891\uff0c\u5176\u4e2d\u8986\u76d6\u5668\u653e\u7f6e\u4e00\u5c42\u65b0\u7684\u7c89\u672b\u3002"} +{"id": "5000608", "video_name": "c2901b0c-cc80-56d4-a865-3e00f09293b0", "text": "\u5728\u4e00\u4e2a\u9759\u8c27\u7684\u5c0f\u9547\uff0c\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u95f4\uff0c\u8428\u62c9\u548c\u8fc8\u514b\u5c14\u5728\u4e00\u4e2a\u547d\u8fd0\u822c\u7684\u665a\u4e0a\u88ab\u56f0\u5728\u4e86"} +{"id": "5000609", "video_name": "7953feff-b7a0-5e53-9494-a76efea91093", "text": "Sycho\u62ff\u7740\u4e00\u628a\u5927\u65a7\u5934\u8d70\u8fdb\u964c\u751f\u4eba\u7684\u623f\u5b50\uff0c\u534a\u591c\uff0c\u5145\u6ee1\u4e86\u6050\u6016\u6c14\u606f\u3002"} +{"id": "5000610", "video_name": "350a0ac5-8b83-50e4-bcb8-cb551678a58d", "text": "\u6ee1\u6708\u4e4b\u591c\uff0c\u68a6\u5e7b\u957f\u9888\u9e7f\u8bb8\u4e0b\u4e86\u613f\u671b\uff0c\u521b\u9020\u4e86\u4e00\u4e2a\u5145\u6ee1\u53cb\u8c0a\u4e0e\u548c\u5e73\u7684\u6492\u54c8\u62c9\u6c99"} +{"id": "5000611", "video_name": "dfb5f808-e22e-5922-904d-d1cdda692903", "text": "\u90a3\u4e9b\u4eba\u5426\u8ba4\u4e86\u4ed6\u4eec\uff0c\u7136\u540e\u60e9\u7f5a\u964d\u4e34\u5230\u4ed6\u4eec\u8eab\u4e0a\uff0c\u56e0\u4e3a\u4ed6\u4eec\u90fd\u662f\u7f6a\u72af\u3002"} +{"id": "5000612", "video_name": "28bc53d1-a835-5f02-9338-009ed7ee9fde", "text": "\u54c0\u4f24\u7684\u54e5\u65af\u62c9\u6b63\u5728\u7ecf\u5386\u4e00\u573a\u5b58\u5728\u4e3b\u4e49\u5371\u673a\uff0c\u300a\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u300b\u6700\u7ec8\u7248\u3002"} +{"id": "5000613", "video_name": "7f007dca-09cf-5420-8876-60f883af25ba", "text": "\u9c8d\u52c3\u7ad9\u5728\u4ed6\u7684\u9762\u5305\u5e97\u91cc\uff0c\u8bd5\u56fe\u6258\u7740\u6ee1\u6ee1\u4e00\u76d8\u7cd5\u70b9\uff0c\u4f46\u5374\u7eca\u5012\u5728\u81ea\u5df1\u7684\u811a\u4e0a\uff0c"} +{"id": "5000614", "video_name": "0db1bc35-d150-5bd1-b8df-e43584e526aa", "text": "\u9633\u5149\u96be\u4ee5\u7a7f\u900f\u5f69\u8272\u73bb\u7483\u7a97\uff0c\u6295\u5c04\u51fa\u8be1\u5f02\u7684\u7ea2\u8272\u8272\u8c03\u3002"} +{"id": "5000615", "video_name": "62284349-bb50-5e9f-b904-0b3f51a194a3", "text": "\u4eba\u4eec\u8d70\u8fd1\u5c4f\u5e55\uff0c\u6811\u6728\u56f4\u7ed5\u7740\uff0c\u98ce\u58f0\u547c\u5578\u3002\u6709\u9e1f\u5728\u6c34\u5e73\u98de\u884c\u3002"} +{"id": "5000616", "video_name": "c6bc8d1b-dc2a-5ae4-8c04-becc8975c45f", "text": "Source sentence: \u7f51\u7edc\u4eba\u5728\u706b\u529b\u4e0b\u6323\u624e\uff0c\u4f4e\u5934\u770b\u7740\uff0c\u6444\u50cf\u673a\u4ece\u8fdc\u5230\u8fd1\u7f29\u653e\uff0c3:4\uff0c4k\u3002"} +{"id": "5000617", "video_name": "863d4249-4be0-5eb1-8fea-2f8ff2211c29", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u52a8\u6001\u7684\u5f62\u8c61\uff0c\u5c55\u793a\u6885\u4e3d\u838e\u3001\u745e\u5b89\u548c\u8428\u62c9\u5728\u8d8a\u6765\u8d8a\u6697\u7684\u575f\u5893\u4e2d\u62fc\u547d\u70b9\u4eae\u624b\u7535"} +{"id": "5000618", "video_name": "88832e9e-6982-5b3d-916e-5aba0497f08e", "text": "\u4e00\u53ea\u753b\u7740\u80e1\u841d\u535c\u7684\u5154\u5b50\u7ed8\u753b\u3002"} +{"id": "5000619", "video_name": "90664c20-d03c-5e0e-a428-29724e9a7447", "text": "\u8d85\u7ea7\u5de8\u661f\u53d7\u5230\u4e86\u7c89\u4e1d\u4eec\u7684\u6b22\u8fce\uff0c\u4ed6\u4e5f\u5411\u4ed6\u4eec\u95ee\u597d\u3002"} +{"id": "5000620", "video_name": "635eb469-2db5-5d62-9622-9a06692b2dfe", "text": "\u7535\u5f71\u573a\u666f\uff0c\u4e00\u4f4d\u7a7f\u7740\u5a5a\u7eb1\u7684\u7f8e\u4e3d\u5973\u6027\u5750\u5728\u4e00\u8f86\u5927\u5361\u8f66\u7684\u9a7e\u9a76\u5ea7\u4f4d\u4e0a\u3002"} +{"id": "5000621", "video_name": "9ede0bd8-a2fb-5444-aa2b-9d9b87de94ab", "text": "\u52a8\u6f2b\u591c\u603b\u4f1a\u5728\u8857\u89d2"} +{"id": "5000622", "video_name": "2e06942d-34f4-57b3-9ab7-4e6e2c96df95", "text": "\u7389\u7c73\u7530\u6050\u6016\u50f5\u5c38\u7535\u5f714K"} +{"id": "5000623", "video_name": "5ac6ca2c-146a-5fc5-8a7f-03760a58991d", "text": "\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u548c\u7e41\u534e\u7684\u57ce\u5e02\u666f\u89c2\uff0c\u4eba\u4eec\u6c89\u6d78\u5728\u4ed6\u4eec\u7684\u6d3b\u52a8\u4e2d\u3002 \n\n\u6444\u50cf\u673a\u7f29\u653e\u5230\u4e00\u4e2a\u6234\u7740\u8033\u673a"} +{"id": "5000624", "video_name": "1742dd1c-4db4-5bb2-866d-c70092d107bf", "text": "\u4e00\u4f4d\u8499\u53e4\u53ef\u6c57\u7a7f\u7740\u8c6a\u534e\u888d\u5b50\uff0c\u9a91\u7740\u6218\u9a6c\uff0c\u6307\u6325\u58eb\u5175\u524d\u8fdb\u3002"} +{"id": "5000625", "video_name": "6227a09f-36f2-538e-971c-0e79a5e47633", "text": "\u8428\u62c9\u7a7f\u7740\u5a5a\u7eb1\uff0c\u4e9a\u5386\u514b\u65af\u7a7f\u7740\u897f\u88c5\uff0c\u4e24\u4eba\u5728\u796d\u575b\u524d\u5fae\u7b11\u5e76\u4ea4\u6362\u8a93\u8a00\u7684\u7167\u7247\u3002"} +{"id": "5000626", "video_name": "34d084e0-16d8-5399-83e9-a8500c9748cf", "text": "\u5728\u672a\u77e5\u7684\u68ee\u6797\u6df1\u5904\uff0c\u8302\u5bc6\u7684\u6811\u6728\u548c\u795e\u79d8\u7684\u58f0\u97f3\u5360\u636e\u7740\u4e3b\u5bfc\u5730\u4f4d\uff0c\u6709\u4e00\u4e2a\u540d\u53eb\u4e9a\u5386\u514b\u65af\u7684"} +{"id": "5000627", "video_name": "9de90e70-a4d4-5742-923d-349794d84e94", "text": "\u88c1\u5224\u54e8\u54cd\uff0c\u6240\u6709\u7684\u5b69\u5b50\u90fd\u4ece\u8d77\u8dd1\u7ebf\u4e0a\u5f00\u59cb\u8dd1\u4e86\u3002"} +{"id": "5000628", "video_name": "8a025b9a-f043-5394-9a44-62cda14244b2", "text": "\u5c0f\u578b\u91d1\u53d1\u77ed\u53d1\u5973\u5b69\u5168\u8eab\u7167\uff0c\u7275\u7740\u4e00\u53ea\u5de8\u5927\u7684\u5317\u6781\u718a\u7528\u7ef3\u5b50\u8d70\u8fc7\u51b0\u5ddd\u3002"} +{"id": "5000629", "video_name": "9155dcc0-44df-5fb7-820b-894b31ddd10b", "text": "\u7b49\u8ddd\u53ef\u7231\u76843D\u623f\u95f4\uff0c\u7530\u56ed\u5c0f\u5c4b\u4e3b\u9898\u3002"} +{"id": "5000630", "video_name": "37ba161e-de3c-5422-a2ba-fb1d561f42d1", "text": "\u5723\u8bde\u8001\u4eba\u5728\u5723\u8bde\u6811\u65c1\u5fae\u7b11\u7740\u770b\u7740\u6211\u4eec\u3002\u661f\u7a7a\u707f\u70c2\u7684\u6c1b\u56f4\uff0c\u51ac\u5929\u3002"} +{"id": "5000631", "video_name": "bef2f5fb-a02e-559c-a364-0332d403d1c3", "text": "\u7f8e\u4e3d\u7684\u5fc3\u3002\u4fe1\u606f\uff1aGriselda\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5000632", "video_name": "34212324-752d-5974-86e7-32b981bf992f", "text": "\u89c6\u9891\u91cc\u5fc3\u8df3\u4e91\u5728\u6f02\u6d6e\uff0c\u7a7a\u6c14\u5728\u6d41\u52a8\u3002"} +{"id": "5000633", "video_name": "fcee0e02-7bff-5022-b560-c6aaf55d46ec", "text": "\u4e00\u4e2a\u5361\u901a\u7684\u82f9\u679c\u5728\u5403\u9999\u8549\u3002"} +{"id": "5000634", "video_name": "d5d19883-fcbc-590a-979b-8aa355c78678", "text": "\u4e00\u5f20\u5723\u8bde\u8282\u7684\u9910\u684c\u6446\u8bbe\uff0c\u6446\u6ee1\u4e86\u8282\u65e5\u76db\u5bb4\u3002"} +{"id": "5000635", "video_name": "fc760e9e-ffe2-5001-b9e4-6b02abe09777", "text": "\u4e00\u8f86\u7ea2\u8272\u5965\u8feaA5\u6b63\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\uff0c\u4e00\u8f86\u84dd\u8272\u7684\u5b9d\u9a6cM3 F90\u7d27\u968f\u5176\u540e\uff0c\u5728\u65e5\u843d\u65f6\u5206"} +{"id": "5000636", "video_name": "75654f3b-0e4c-5c53-8daf-df3d9a5ce749", "text": "\u9ed1\u8272\u7684\u6c34\u725b\u5728\u68ee\u6797\u91cc\u8d70\u52a8\uff0c\u6444\u50cf\u673a\u7f29\u653e\u3002"} +{"id": "5000637", "video_name": "30b930bd-2e30-5c77-a86b-a323d3b2df63", "text": "\u585e\u7433\u5a1c\u00b7\u6208\u9ea6\u65af\u5728\u73b0\u573a\u6f14\u5531\u4f1a\u4e0a\u7a7f\u7740\u9ed1\u8272\u88d9\u5b50\u3002"} +{"id": "5000638", "video_name": "e59ff84a-73a2-5c2f-a6eb-2026c9e73791", "text": "\u661f\u9645\u65c5\u884c\u7684\u592a\u7a7a\u8239\u6c1b\u56f4\u4e30\u5bcc\u591a\u5f69\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u52a8\u611f\u673a\u5236\uff0c\u95ea\u95ea\u53d1\u5149\uff0c\u5feb\u901f\u9a7e\u9a76"} +{"id": "5000639", "video_name": "e4eab850-c44d-5e6c-9542-2d2adec0e6ca", "text": "\u4e00\u573a\u6d41\u661f\u96e8\uff0c\u5728\u591c\u7a7a\u4e2d\u51fa\u73b0\u6570\u5343\u9897\u6d41\u661f\u3002"} +{"id": "5000640", "video_name": "593afeed-154c-5477-a7a1-d8c6ee89122e", "text": "\u5ba4\u5185\uff0c\u68ee\u6797\u53d8\u6210\u4e86\u5de7\u514b\u529b\u5947\u89c2\u7684\u4e16\u754c\uff0c\u53ef\u4ee5\u770b\u5230\u661f\u7cfb\u7684\u666f\u8c61\u3002"} +{"id": "5000641", "video_name": "86a871bb-d5c6-5d6f-9c0c-54e76f43d026", "text": "\u4eba\u4eec\u5728\u5730\u7403\u4e0a\u4ef0\u671b\u5929\u7a7a\u7684\u8096\u50cf\u89c6\u9891\uff0c\u903c\u771f\u81ea\u7136\uff0c\u591c\u7a7a\u3002"} +{"id": "5000642", "video_name": "90223b2b-626f-574d-b59e-d8e6d8ca8f98", "text": "Source sentence: \u591c\u7a7a\u4e2d\u98de\u884c\u7684\u592a\u7a7a\u8239\u7684\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u8d85\u8be6\u7ec6\uff0c\u6444\u50cf\u673a\u7f29\u5c0f\u3002\u4fe1\u606f\uff1a\u4f2f\u7eb3RG\uff08\u5b57"} +{"id": "5000643", "video_name": "477ed7ed-d96c-527b-882e-c0be67e041e1", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\uff0c\u4ed6\u7684\u9ec4\u8272\u773c\u775b\u9644\u8fd1\u6709\u9ec4\u8272\u9cde\u7247\uff0c\u91d1\u8272\u957f\u53d1\u548c\u5c16\u8033\u6735\uff0c\u624b\u6301\u91d1\u8272\u5f13\uff0c\u5c04"} +{"id": "5000644", "video_name": "3210727c-c14b-5b3c-a6ba-49267ee6d13e", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e00\u4e2a\u7537\u4eba\u7cfb\u597d\u886c\u8863\uff0c\u7136\u540e\u955c\u5934\u8f6c\u5411\u4ed6\u7684\u8138\u90e8\uff0c\u63a5\u7740\u5207\u6362\u5230\u4ed6\u8d70\u5728\u8857\u4e0a\u7684\u955c\u5934\uff0c"} +{"id": "5000645", "video_name": "75dbcd21-4277-54c3-a5b4-83fb41497923", "text": "\u4e00\u4e2a\u96ea\u4eba\u88c5\u9970\u7740\u4e00\u68f5\u5723\u8bde\u6811\u3002"} +{"id": "5000646", "video_name": "559b404e-e30f-5126-aae8-74a230e1eec6", "text": "\u6551\u62a4\u8f66\u5f15\u8bf1\u6211\u4eec\u8fdb\u5165\u4e86\u68ee\u6797\u3002\u90a3\u662f\u4e00\u4e2a\u5077\u4eba\u5668\u5b98\u7684\u56e2\u4f19\u3002\u6bcf\u5f53\u4ed6\u4eec\u5b8c\u6210\u4e00\u5177\u5c38\u4f53\uff0c\u5c31\u7528\u7ef3\u5b50\u5c06"} +{"id": "5000647", "video_name": "6ec6c429-d7a9-5022-9c7d-def7b273847f", "text": "\u4e00\u5e45\u4e8c\u7ef4\u6241\u5e73\u5316\u63d2\u56fe\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u63cf\u7ed8\u4e8690\u5e74\u4ee3\u5370\u5ea6\u9053\u8def\u4e0a\u7684\u4ea4\u901a\u5835\u585e\u573a\u666f\u3002"} +{"id": "5000648", "video_name": "45b13503-a2fe-5084-83df-d0d3fb37263a", "text": "\u53e4\u7f57\u9a6c\u7ed8\u753b\uff0c\u5362\u6d6e\u5bab\u535a\u7269\u9986\uff0c4K\uff0c\u6444\u5f71\uff0c\u7535\u5f71\u822c\u7684\u7167\u660e\uff0c\u900f\u89c6\u611f\u3002\u4fe1\u606f\uff1amoshy\uff08\u5b57\u4f53"} +{"id": "5000649", "video_name": "6e099d44-8a53-59a2-ba69-1c401eba7396", "text": "\u5e05\u6c14\u4e9a\u6d32\u7537\u5b69\u63d2\u56fe\u5f62\u8c61\u8bf4\u8bdd\u3002"} +{"id": "5000650", "video_name": "7cfac040-48a8-5012-8970-8cf207a4198b", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u8d858\u6beb\u7c73\u80f6\u7247\uff0c\u8bb0\u5f55\u4e86\u88ab\u5206\u6210\u4e24\u534a\u7684\u602a\u7269\u3002"} +{"id": "5000651", "video_name": "1b10c326-ca43-5478-b0d0-c31ea73c7692", "text": "\u4e13\u4e1a\u65f6\u5c1a\u7167\u7247\uff0c\u6742\u5fd7\u5c01\u9762\u5973\u90ce\uff0c\u4e30\u6ee1\u7684\u5634\u5507\uff0c\u6d0b\u5a03\u5a03\u822c\u7684\u7f8e\u4e3d\uff0c\u8d85\u5927\u98de\u884c"} +{"id": "5000652", "video_name": "ca47f6df-3bce-577b-9203-8ad62dbe2e83", "text": "\u7ec8\u7ed3\u8005T1000\u5728\u6218\u6597\u4e2d\u5927\u53e3\u541e\u566c\u5357\u74dc\u6d3e\uff0c\u5f02\u5e38\u7cbe\u7ec6\uff0c\u6781\u5ea6\u751f\u52a8\u3002"} +{"id": "5000653", "video_name": "3b35edd4-1d7f-5823-9173-00af557cb7a7", "text": "\u5728\u5df4\u897f\u8857\u5934\u7684\u52a8\u6f2b\u89d2\u8272"} +{"id": "5000654", "video_name": "0b512049-8859-547a-9f42-da51ce78575c", "text": "\u6930\u58f3\u76c6\u79cd\u6709\u65b0\u9c9c\u7684\u9999\u83dc\u3002"} +{"id": "5000655", "video_name": "710f05ef-8ffc-55a6-b8b1-bb13cb41407a", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u3001\u5965\u666e\u62c9\u00b7\u6e29\u5f17\u745e\u3001\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u6234\u5b89\u5a1c\u516c\u4e3b\u6325"} +{"id": "5000656", "video_name": "66c1d4eb-b414-517a-9c0c-22e082ba47c9", "text": "\u624b\u638c\u4e2d\u63e1\u7740\u836f\u4e38\u7684\u4e9a\u6d32\u7537\u6027\u624b"} +{"id": "5000657", "video_name": "20c54dca-48de-55a7-b756-6cf61d7851a5", "text": "\u5b89\u6170\u662f\u901a\u8fc7\u8fdc\u79bb\u5c18\u4e16\u800c\u5f97\u5230\u7684\u3002\u8fd9\u662f14\u4e16\u7eaa\u96d5\u523b\u7684\u94dc\u7248\u753b\u300a\u8056\u4f2f\u723e\u55ac\u6885\u00b7\u535a"} +{"id": "5000658", "video_name": "9867e46d-f4ef-53f3-a8b4-73c026f75c7e", "text": "Luna\u548c\u95ea\u4eae\u7684\u661f\u661f\u7684\u795e\u5947\u4e4b\u65c5\uff0c\u9002\u5408\u5b69\u5b50\u4eec\u3002"} +{"id": "5000659", "video_name": "8e9aca33-b63a-5b02-8a17-397de49f3d1c", "text": "\u65e5\u672c\u5973\u4eba\u6b63\u5728\u7761\u89c9\uff08\u73b0\u5b9e\u4eba\u7269\u548c\u771f\u5b9e\u56fe\u50cf\uff09\u3002"} +{"id": "5000660", "video_name": "d74539d6-e8c2-5525-b623-e50a1d515f81", "text": "\u91d1\u5e01\u4ece\u4e00\u4e2a\u888b\u5b50\u91cc\u6389\u843d\u4e0b\u6765\u3002"} +{"id": "5000661", "video_name": "d448414e-95fc-5a12-a6ec-4e89ae53a962", "text": "\u672b\u65e5\u57ce\u5e02\uff0c\u706b\u7130\u548c\u70df\u96fe\u5f25\u6f2b\u3002\u4fe1\u606f\uff1aPAKUA\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "5000662", "video_name": "435ae26f-a210-5e79-bcc4-bfa1c16e8334", "text": "\u4e00\u4e2a\u5728\u963f\u59c6\u65af\u7279\u4e39\u7684\u4e09\u4e3d\u9e25Hello Kitty\u3002"} +{"id": "5000663", "video_name": "912fa2bf-6994-5dee-a173-8a03f45aa103", "text": "\u5c06\u6807\u5fd7\u7684\u5361\u901a\u5f62\u8c61\u52a8\u753b\u5316\u3002\u52a8\u753b\u5316\u6807\u5fd7\u3002"} +{"id": "5000664", "video_name": "dd60ee80-4a93-5296-ad5e-7af9d95b565b", "text": "\u8bf7\u521b\u5efa\u4e00\u4e2a\u573a\u666f\uff0c\u5176\u4e2d\u4e00\u4e2a\u57ce\u5e02\u88ab\u6df9\u6ca1\uff0c\u6240\u6709\u4eba\u90fd\u88ab\u56f0\u5728\u6f02\u6d6e\u57ce\u5e02\u4e2d\u3002\u6bcf\u9694\u4e00\u6bb5\u65f6\u95f4\uff0c\u6d77\u6d0b\u4f1a\u53d1\u751f\u5de8\u5927\u7684\u52a8"} +{"id": "5000665", "video_name": "b06e8b21-5dfc-5169-99d4-d1d68cac9b8c", "text": "\u4e00\u4f4d\u957f\u7740\u88c5\u9970\u82b1\u6735\u7684\u957f\u53d1\u7684\u7f8e\u4e3d\u5973\u5b50\u671d\u7740\u955c\u5934\u8d70\u6765\uff0c\u85b0\u8863\u8349\u5ef6\u4f38\u81f3\u5730\u5e73\u7ebf\uff0c"} +{"id": "5000666", "video_name": "f8688f9d-3597-5455-9934-1cb0a8430359", "text": "\u96c6\u4f53\u65e0\u610f\u8bc6\u3001\u53d8\u5f62\u3001DMT\u5b9e\u4f53\u3001\u8ff7\u5e7b\u3001\u8d85\u73b0\u5b9e\u30014k\u3001\u7167\u7247\u822c\u903c\u771f\u3002"} +{"id": "5000667", "video_name": "7b9652a0-0309-55b7-8c9e-944de6091278", "text": "\u54c8\u5229\u00b7\u6ce2\u7279\u548c\u8d6b\u654f\u00b7\u683c\u5170\u6770\u5728\u970d\u683c\u6c83\u8328\u63a5\u543b\u3002"} +{"id": "5000668", "video_name": "73b5759f-ea30-590d-aab8-ed256a49f63e", "text": "\u4e00\u540d\u72ec\u81ea\u7684\u5b87\u822a\u5458\u5728\u4e00\u4e2a\u9065\u8fdc\u661f\u7403\u4e0a\u7684\u5e9f\u5f03\u7a7a\u95f4\u7ad9\u63a2\u9669\uff0c\u9633\u5149\u6293\u4f4f\u4e86\u5728\u96f6\u91cd\u529b\u4e2d\u8df3"} +{"id": "5000669", "video_name": "6a6b3e4a-ff2b-5d9d-a12a-4662161f1ce4", "text": "\u7528\u6c34\u6e85\u6d12 Strellson\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000670", "video_name": "66ccf78e-1e1b-5aab-9e87-9e6134e39200", "text": "\u7ef4\u7ef4\u5b89\u5a1c\u51b3\u5b9a\u5b66\u4f1a\u70f9\u996a\u5e76\u51c6\u5907\u5065\u5eb7\u7684\u9910\u70b9\uff0c\u4e3a\u4e86\u5979\u7684\u732b\u7684\u5065\u5eb7\u7740\u60f3"} +{"id": "5000671", "video_name": "c634679c-a9cb-579e-8c5a-d2b7075c9d00", "text": "\u4e00\u7ec4\u4eba\u5728\u706b\u8f66\u4e0a\u7684\u9ed1\u767d\u9897\u7c92\u611f\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "5000672", "video_name": "f964e964-c176-525f-b399-47b96fbe7d54", "text": "\u751f\u7269\u673a\u68b0\u866b\u5b50\u7a7f\u8d8a\u690d\u7269\u7684\u8fd1\u666f\u62cd\u6444"} +{"id": "5000673", "video_name": "8d81eff7-f176-5d0f-8ce0-d697f5cc6f2d", "text": "\u6162\u52a8\u4f5c\u62c9\u8fdc\u955c\u5934\uff0c\u4e3a\u72d9\u51fb\u624b\u732e\u4e0a\u7eaa\u5ff5\uff0c\u5893\u5730\uff0c48K\uff0c\u8d85\u7ec6\u8282\u8272\u5f69\uff0cAR 16\uff1a9\uff0c\u7535\u5f71"} +{"id": "5000674", "video_name": "efb4b09e-f5e4-56d9-a074-913495409a81", "text": "\u661f\u661f\u5728\u5929\u7a7a\u4e2d\u79fb\u52a8\uff0c\u6620\u7167\u5728\u67d0\u4eba\u8138\u4e0a\u7684\u9634\u5f71\u4e2d\uff0c\u4ed6\u4ef0\u671b\u7740\u5929\u7a7a\u3002"} +{"id": "5000675", "video_name": "758933bd-6509-59bd-ad11-5185fd876ee0", "text": "\u62c9\u4e01\u7f8e\u6d32\u4e0d\u548c\u793e\u4ea4\u670d\u52a1\u5668\u7684\u4e2a\u4eba\u8d44\u6599\u3002"} +{"id": "5000676", "video_name": "62b8d515-6d28-52ed-bbb0-1137a313eebb", "text": "\u7ea2\u5b9d\u77f3\uff0c\u7ea2\u8272\u80cc\u666f\uff0c\u98d8\u843d\uff0c\u53d1\u5149"} +{"id": "5000677", "video_name": "0485e247-0513-53ad-8e4a-b7a9e74640d3", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c\u7279\u5199\u955c\u5934\uff0c\u7537\u5973\u63e1\u624b\uff0cStudio Mappa \u98ce\u683c\u3002"} +{"id": "5000678", "video_name": "895f2e45-16b3-5adb-8c56-955353a335ec", "text": "\u96e8\u5929\uff0c\u623f\u95f4\uff0c\u591c\u665a\uff0c\u6e29\u6696\uff0c\u7a97\u6237"} +{"id": "5000679", "video_name": "05162a42-bb5f-53fd-8ba2-fd36ca33e7cf", "text": "\u4eba\u4eec\u80cc\u5f03\u4e86\u4e00\u4e2a\u4eba\u3002"} +{"id": "5000680", "video_name": "7da6ac0d-24ad-5138-91c0-00102b2e15f3", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u86cb\u7cd5\u5728\u592a\u7a7a\u98de\u884c\u3002"} +{"id": "5000681", "video_name": "3f765a30-5d9d-59d2-ac84-36864c257fb9", "text": "\u4e00\u8f86\u6c7d\u8f66\u51b2\u5411\u623f\u5b50\u7684\u5899\u58c1\uff0c\u4e00\u540d\u5987\u5973\u4ece\u8f66\u91cc\u51fa\u6765\u7684\u4e09\u7ef4\u52a8\u753b\u3002"} +{"id": "5000682", "video_name": "84b15a18-07ce-54c3-8e69-cfda62760e91", "text": "\u6bcd\u4eb2\u95ee\u5979\u7684DJ\u513f\u5b50\u4ed6\u60f3\u8981\u4ec0\u4e48\u5723\u8bde\u793c\u7269\u3002"} +{"id": "5000683", "video_name": "aeb98e30-2423-51f0-b641-f563a6f52e79", "text": "\u9ed1\u8272\u5c3c\u6851\u5929\u9645\u7ebfP34\uff0c1994\u5e74\u3002\u6f02\u79fb\uff0c\u5728\u4e1c\u4eac\u7684\u8857\u9053\u548c\u5c71\u9053\u4e0a\u3002\u4e00\u4f4d\u5e74\u8f7b\u5973\u5b69\u4ece\u7a97\u6237\u91cc\u63a2\u51fa\u5934\u6765"} +{"id": "5000684", "video_name": "7aae2047-2dc8-5e84-aa1b-a257575fc123", "text": "\u5927\u578b\u76d7\u8f66\u624b\u6e38\u4e2d\u7684\u57c3\u9686\u00b7\u9a6c\u65af\u514b\u5438\u7740\u9999\u70df\uff0c\u753b\u976216:9\u7f29\u5c0f\u3002"} +{"id": "5000685", "video_name": "131f4bde-4284-5bcb-ada6-0342ee97d1c0", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u900f\u660e\u5929\u4f7f\uff0c\u8986\u76d6\u7740\u53e4\u8001\u7684\u5b9d\u77f3\uff0c\u5728\u71c3\u70e7\u7684\u57ce\u5e02\u4e0a\u7a7a\u98de\u7fd4\uff0c\u5468\u56f4\u662f\u7f8e\u4e3d"} +{"id": "5000686", "video_name": "94e9a12d-1aac-5b14-b58b-dee094fbb116", "text": "\u4e24\u53ea\u732b\u5728\u4e00\u95f4\u51cc\u4e71\u7684\u5ba2\u5385\u91cc\u770b\u7740\u5b83\u4eec\u7684\u4e3b\u4eba\u5728\u4e92\u8054\u7f51\u4e0a\u51b2\u6d6a\uff0c\u4ee5\u745e\u514b\u548c\u83ab\u8482"} +{"id": "5000687", "video_name": "ecae07ab-3d1b-5951-9a57-49505213a9e9", "text": "\u5973\u4eba\u5728\u5730\u4e0b\u5ba4\u5c16\u53eb\uff0c\u8001\u9ed1\u767d\u7535\u5f71\u3002"} +{"id": "5000688", "video_name": "0eaa22df-5179-599c-a3a9-183e7ef88b29", "text": "\u4e00\u4e2a\u5e74\u8f7b\u6210\u5e74\u5973\u5b69\u56e0\u8bfb\u4e66\u4e2d\u7684\u67d0\u4e9b\u5185\u5bb9\u611f\u5230\u5bb3\u6015\u3002"} +{"id": "5000689", "video_name": "649f6cc0-3367-5a9b-adf8-379de3461e8c", "text": "\u95ea\u95ea\u53d1\u5149\u7684CD\u789f\u7247\u4ece\u6df1\u84dd\u8272\u7684\u5929\u7a7a\u4e2d\u843d\u4e0b\uff0c\u5f62\u6210\u4e86\u4e00\u5e45\u4e0d\u5bfb\u5e38\u7684\u96e8\u666f\u3002"} +{"id": "5000690", "video_name": "94a518c8-8383-5106-b892-93419a50749e", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7537\u5b50\u548c\u4ed6\u7684\u673a\u5668\u4eba\u52a9\u624b\u5728\u5730\u4e0b\u57ce\u5e9f\u589f\u4e2d\u65c5\u884c\u3002"} +{"id": "5000691", "video_name": "8cf3cd49-1d6b-5de8-9728-cbd1eb932644", "text": "\u4e00\u53ea\u767d\u8272\u7684\u9e1f\u5728\u6d77\u4e0a\u76d8\u65cb\u3002"} +{"id": "5000692", "video_name": "ccb12dd8-e0e1-5e8a-8f17-901481fc0305", "text": "\u4e00\u4e2a\u6843\u82b1\u9547\u6f02\u6d6e\u5728\u5929\u7a7a\u4e2d\u7684\u5c9b\u5c7f\uff0c\u4e0a\u9762\u53ea\u6709\u5c11\u6570\u5efa\u7b51\u7269\u3002"} +{"id": "5000693", "video_name": "29aaabc5-a3ff-5210-a419-de0983001642", "text": "\u4e00\u4e2a\u8ff7\u8def\u4e86\u7684\u814a\u80a0\u72d7\u5728\u52a8\u7269\u56ed\u3002"} +{"id": "5000694", "video_name": "84835385-65e9-5815-b67e-9b510e0b7e27", "text": "\u4ed6\u6bcf\u5929\u90fd\u6709\u4e00\u4e2a\u4f7f\u547d\uff0c\u5e0c\u671b\u5bf9\u8eab\u8fb9\u4eba\u7684\u751f\u6d3b\u4ea7\u751f\u79ef\u6781\u7684\u5f71\u54cd\u3002"} +{"id": "5000695", "video_name": "dec73b62-aec2-5c4e-9e96-c4d1d14f38f1", "text": "\u6211\u4e8e\u662f\u5411\u4e0b\u8d70\u8fc7\u6c49\u5821\u7687\u51a0\u5e97\u3002"} +{"id": "5000696", "video_name": "d2063170-90d2-5d2f-96ea-3175e474cabd", "text": "\u6218\u6597\u573a\u9762\u955c\u5934\uff0c\u62ef\u6551\u5927\u5175\u745e\u6069\u7535\u5f71\u98ce\u683c\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u9ad8\u5f3a\u5ea6\u753b\u9762\u6e32\u67d3"} +{"id": "5000697", "video_name": "63005493-a01c-581e-b74e-ce2c2c5ef6bc", "text": "\u5965\u8fea\u9686\u00b7\u96f7\u4e1c(Odilon Redon)\u98ce\u683c\u7684\u8718\u86db"} +{"id": "5000698", "video_name": "56f50655-ca69-5835-a8c7-7eaa425aa906", "text": "\u4e4c\u5c14\u683c\u5728\u901a\u4fe1\u4e2d\u58f0\u79f0\uff0c\u8239\u5458\u5df2\u6210\u529f\u5bfc\u822a\u81f3\u5730\u7403\u5185\u90e8\uff0c\u5e76\u4e14\u6ca1\u6709\u8fd4\u56de\u7684\u610f\u5411\u3002"} +{"id": "5000699", "video_name": "b396c32e-5e9b-5b1f-84b1-7353c1a0fab5", "text": "\u4e00\u4e2a\u7528\u5916\u8bed\u7f16\u5199\u7684\u795e\u79d8\u4fe1\u606f\u3002"} +{"id": "5000700", "video_name": "26a6f88c-e69a-5313-b22a-6a711e6f3e37", "text": "\u8499\u7530\u8d70\u5728\u4e2d\u4e16\u7eaa\u5df4\u9ece\u6cd5\u9662\u7684\u80cc\u666f\u4e0b\uff0c\u624b\u6301\u4e00\u672c\u4e66\u3002"} +{"id": "5000701", "video_name": "811c745c-290a-5816-95c1-27e3a2aee0aa", "text": "\u4e00\u4e2a\u7a7f\u7740\u6469\u6258\u9a91\u624b\u5939\u514b\u3001\u5e26\u6709\u53d1\u5149\u7eb9\u8eab\u7684\u9cc4\u9c7c\u5916\u661f\u4eba\u5728\u65b0\u4e1c\u4eac\u7684\u4e00\u4e2a\u9152\u5427\u5916\u3002"} +{"id": "5000702", "video_name": "8672e3ca-ec06-5439-95b6-041eee7c093f", "text": "\u4e00\u4e2a\u5973\u5b69\u572880\u5e74\u4ee3\u5403\u7740\u6c49\u5821\u5305\uff0c\u8d70\u590d\u53e4\u98ce\u683c\u3002"} +{"id": "5000703", "video_name": "647b8685-1def-5601-875a-d9e060396399", "text": "\u623f\u5c4b\u5185\u90e8\u5177\u5907\u79d1\u6280\u548c\u53ef\u6301\u7eed\u6027\u3002"} +{"id": "5000704", "video_name": "ac11c031-200a-5c75-a4e9-38c101d453f2", "text": "\u6c14\u529f\u5b9e\u9645\u4e0a\u662f\u4e00\u79cd\u6c9f\u901a\u5b87\u5b99\u548c\u4f60\u7684\u5fc3\u7075\u7684\u65b9\u5f0f\u3002"} +{"id": "5000705", "video_name": "4d20d6da-2798-5d30-8a84-2e5fdaf021b6", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u7537\u4eba\u60f3\u8981\u6302\u4e00\u5f20\u753b\uff0c\u4ed6\u6709\u9489\u5b50\u4f46\u6ca1\u6709\u9524\u5b50\uff0c\u4ed6\u7684\u90bb\u5c45\u6709\u9524\u5b50\uff0c\u4e8e\u662f\u8fd9\u4e2a\u7537\u4eba\u51b3"} +{"id": "5000706", "video_name": "4f9b192c-f435-5f7f-8846-4f906790133f", "text": "\u9c7c\u5728\u817f\u4e0a\u5954\u8dd1\u7a7f\u8fc7\u7a7a\u6c14\u3002"} +{"id": "5000707", "video_name": "a586fcd4-6883-5324-8469-206d64cb820b", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u7a7a\u59d0\u7a7f\u8fc7\u4e00\u67b6\u6ee1\u8f7d\u6c7d\u8f66\u548c\u72d7\u7684\u62e5\u6324\u98de\u673a\u3002"} +{"id": "5000708", "video_name": "4fa330c1-3539-5e7f-aa78-51afacc82b81", "text": "22\u5c81\u5973\u5b50\u4e0e\u732b\u54aa\u4e00\u8d77\u8d70\u8def\u7684\u60b2\u4f24\u955c\u5934"} +{"id": "5000709", "video_name": "bce9c83c-e34d-5ea5-ae7d-aff94aa7f1c7", "text": "2023\u5e74\u7ea2\u6bef\u4e0a\u91c7\u8bbf\u6c64\u59c6\u00b7\u514b\u9c81\u65af\u5f00\u5fc3\u7b11\u4e86\u3002"} +{"id": "5000710", "video_name": "a5303fe9-8e0a-532c-80a1-01c29c89f0a2", "text": "\u4e00\u4f4d\u5973\u58eb\u5728\u8d85\u5e02\u91cc\u63a8\u7740\u7a7a\u8f66\u3002"} +{"id": "5000711", "video_name": "e98badc9-2ae0-5361-9d8a-fd361e55f57d", "text": "\u65e5\u672c\u7684\u6811\u53f6\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u6a21\u7cca\u7684\u65e5\u672c\u5bfa\u5e99\u5728\u80cc\u666f\u4e2d\uff0c4K\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "5000712", "video_name": "c1766871-dd34-591f-8f5b-891aad2df04e", "text": "\u534e\u76db\u987f\u5dde\u548c\u4fc4\u52d2\u5188\u5dde\u76f8\u805a\u4e00\u5802\u3002"} +{"id": "5000713", "video_name": "1d2baf05-c95f-5bd8-b752-fcfe90602118", "text": "\u5916\u9762\u6b63\u5728\u4e0b\u96ea\uff0c\u676f\u5b50\u91cc\u5192\u7740\u5496\u5561\u7684\u84b8\u6c7d\uff0c\u4f69\u4f69\u9752\u86d9\u5728\u804a\u5929\uff0c\u732b\u5988\u5988\u5728"} +{"id": "5000714", "video_name": "46f220bb-3781-5a90-924b-a530574c4a0b", "text": "\u5df4\u62c9\u514b\u00b7\u5965\u5df4\u9a6c\u7a7f\u7740\u7ea2\u8272\u897f\u88c5\uff0c\u6234\u7740\u5927\u58a8\u955c\u5728\u8def\u4e0a\u5de5\u4f5c\u3002"} +{"id": "5000715", "video_name": "764804be-b383-5e10-a138-867a5127d54d", "text": "\u592a\u7a7a\u8239\u5728\u6b22\u547c\u7684\u4eba\u7fa4\u4e0b\u5347\u7a7a\u3002"} +{"id": "5000716", "video_name": "cbb04058-dce6-52d5-bcc8-0a57ab1a5011", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u5973\u5b69\u5728\u95ee\uff0c\u4e00\u4e2a\u7537\u5b69\u8868\u8fbe\u7231\u610f\u3002"} +{"id": "5000717", "video_name": "c8698fd6-9684-5f9f-99b9-29b7462b3f37", "text": "\u4e00\u4e2a\u6d69\u701a\u7684\u7a7a\u7075\u9886\u57df\u60ac\u6d6e\u5728\u5b87\u5b99\u4e2d\u3002\u5b83\u662f\u7531\u6f02\u6d6e\u7684\u5c9b\u5c7f\u7ec4\u6210\uff0c\u6bcf\u4e2a\u5c9b\u5c7f\u7531\u53d1\u51fa"} +{"id": "5000718", "video_name": "8c57bffd-eb2d-5689-8f4d-c16291179e56", "text": "\u7ffb\u8bd1\uff1a\u7389\u5973\u9762\u5e26\u51b3\u7edd\u8868\u60c5\uff0c\u7528\u672a\u6765\u6b66\u5668\u6467\u6bc1\u4e00\u4ef6\u5f3a\u5927\u7684\u795e\u5668\uff0c\u60a0\u5149\u76ee\u7779\u6b64\u60c5\u666f"} +{"id": "5000719", "video_name": "4c8bc249-7cae-53c7-861d-4f949ecff2db", "text": "\u9662\u5b50\u91cc\u7684\u6210\u5e74\u4eba\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "5000720", "video_name": "4149dd83-d034-5831-a67f-9cec93409101", "text": "\u521b\u9020\u4e00\u4e2a\u5f15\u4eba\u5165\u80dc\u7684\u89c6\u89c9\u6545\u4e8b\uff0c\u6355\u6349\u4e00\u53ea\u5a01\u4e25\u7684\u72ee\u5b50\u548c\u4e00\u53ea\u52c7\u6562\u7684\u72d7\u5728\u8302\u5bc6\u795e"} +{"id": "5000721", "video_name": "4cccb557-83b6-5427-9fd5-bb2c25389511", "text": "\u5973\u6027\u9b45\u9b54\u7684\u8096\u50cf\u753b\uff0c\u9ed1\u8272\u5934\u53d1\uff0c\u95ea\u8000\u7425\u73c0\u8272\u773c\u775b\u548c\u89d2\uff0cDND\uff0c\u5e7b\u60f3\uff0c\u9519\u7efc\u590d\u6742\uff0c"} +{"id": "5000722", "video_name": "e33958bc-b900-5a93-8ea7-b78cbac14040", "text": "\u684c\u5b50\u4e0a\u6709\u62ab\u8428\u3001\u6c49\u5821\u548c\u5176\u4ed6\u98df\u7269\u3002"} +{"id": "5000723", "video_name": "b05002cc-f906-52c2-9eca-6ba72b618f3f", "text": "\u65e5\u672c\u6f2b\u753b\u98ce\u683c\u4e0b\uff0c\u673a\u5668\u4eba\u548c\u4eba\u7c7b\u5728\u79d1\u5b66\u7814\u7a76\u5b9e\u9a8c\u5ba4\u4e00\u8d77\u8fdb\u884c\u5b9e\u9a8c\u3002"} +{"id": "5000724", "video_name": "8da81951-5677-5765-b0bf-73393f694b5b", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5973\u5b69\u73a9\u7535\u8111\u6e38\u620f\uff0c\u4e00\u4f1a\u513f\u540e\u56e0\u4e3a\u8f93\u4e86\u800c\u751f\u6c14\u3002"} +{"id": "5000725", "video_name": "c9cfbe03-4651-5532-a41e-33d21e4db957", "text": "\u9ad8\u8d28\u91cf\u7684\u56fe\u50cf\u8fd1\u8ddd\u79bb\u540e\u89c6\u56fe\uff0c\u4e00\u4e2a\u7537\u4eba\u5728\u684c\u5b50\u4e0a\u770b\u7740\u5c4f\u5e55\uff0c\u89c2\u770b\u80a1\u7968\u56fe\u8868\u3002"} +{"id": "5000726", "video_name": "ed1500b4-be11-5317-9160-eadccc2756ee", "text": "\u4e1b\u6797\u4e2d\u7684\u58eb\u5175\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "5000727", "video_name": "33244d8b-3b2c-5e2e-bf60-d53f3ed69891", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u4ed6\u7684\u53a8\u623f\u559d\u5496\u5561\u3002\u4fe1\u606f\uff1aGM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5000728", "video_name": "b37bed37-4c83-55a2-bc96-5b155d9fd69a", "text": "\u591c\u665a\u5230\u767d\u5929\u7684\u8f6c\u6362\u8d8a\u91ce\u6469\u6258\u8f66\u8d5b\u3002"} +{"id": "5000729", "video_name": "2587ac66-7ff3-5117-87a8-3fceb245d35d", "text": "\u4e00\u4e2a\u7537\u5b69\u56de\u5bb6\u4e86\u3002"} +{"id": "5000730", "video_name": "d13d7fd5-773a-530f-a2df-7fd76aa8f515", "text": "\u53f2\u8482\u592b\u00b7\u5384\u514b\u5c14\u4f5c\u4e3a\u4e00\u4e2a\u8d85\u7ea7\u82f1\u96c4\u3002"} +{"id": "5000731", "video_name": "cda08098-b781-5cd9-abb3-810f04381bb4", "text": "\u4e00\u4f4d\u73a9\u5bb6\u5750\u5728\u6e38\u620f\u6905\u4e0a\uff0c\u4f7f\u7528\u589e\u5f3a\u73b0\u5b9eHUD\u73a9\u6e38\u620f\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000732", "video_name": "124ace50-a245-51b1-a79e-704fc2f622e6", "text": "\u4eb2\u7231\u7684\u5927\u8111\uff0c\u8bf7\u505c\u6b62\u8fc7\u5ea6\u601d\u8003\uff0c\u6211\u5f88\u7d2f\uff01"} +{"id": "5000733", "video_name": "318cc86c-389e-5161-907c-88eaf268d5f7", "text": "\u4e00\u4e2a\u5deb\u5e08\u70ab\u8000\u4ed6\u5bf9\u5143\u7d20\u7684\u638c\u63a7\u80fd\u529b\u3002"} +{"id": "5000734", "video_name": "d233dd8a-c1dd-5413-b50b-7918cbe52266", "text": "\u4e00\u90e8\u4ee5A24\u300a\u4ef2\u590f\u591c\u60ca\u9b42\u300b\u98ce\u683c\u4e3a\u57fa\u7840\uff0c\u4ee5\u5916\u661f\u795e\u8bdd\u514b\u82cf\u9c81\u4e3a\u4e3b\u9898\u768435mm\u8fd1\u666f\u7535\u5f71\u3002"} +{"id": "5000735", "video_name": "3a45adb6-2065-5ef6-b3b0-11d50e88e9af", "text": "\u4e54\u00b7\u62dc\u767b\u7ad9\u5f97\u5f88\u8fd1\uff0c\u8f6c\u5411\u9762\u5411\u89c2\u4f17\uff0c\u81ea\u8c6a\u5fae\u7b11\u3002"} +{"id": "5000736", "video_name": "84cea487-cc15-5aef-8492-74c1bd77ee05", "text": "\u521b\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4e00\u4e2a\u539f\u5b50\u4e16\u754c\u7684\u89c6\u9891\u3002"} +{"id": "5000737", "video_name": "f432fdc3-12ed-5dff-a1c6-8009182ca2e8", "text": "\u4e00\u4e2a\u5728\u53d7\u65e5\u672c\u542f\u53d1\u7684\u65b0\u9ed1\u8272\u57ce\u5e02\u4e2d\u884c\u8d70\u7684\u94f6\u7ffc\u6740\u624b"} +{"id": "5000738", "video_name": "0c51e639-9454-56d3-9428-ce389cbdd0c3", "text": "\u5973\u5b69\u5728\u4e00\u95f4\u8272\u5f69\u7f24\u7eb7\u7684\u623f\u95f4\u91cc\uff0c\u6709\u4e00\u6247\u7a97\u6237\u548c\u661f\u7a7a\uff0c\u5e8a\u4e0a\u653e\u7740\u4e00\u672c\u5723\u7ecf\uff0c\u5973\u5b69\u5728\u7948\u7977"} +{"id": "5000739", "video_name": "b3a0735f-a143-5325-b469-2a4f894b0935", "text": "\u4e00\u4e2a16\u5c81\u7684\u7537\u5b69\u5411\u89c2\u4f17\u6325\u624b\uff0c\u5e76\u8bb2\u8ff0\u4e00\u4e2a\u6545\u4e8b\u3002"} +{"id": "5000740", "video_name": "9549b69c-46b2-5e0f-bbd6-ffe397002f75", "text": "Source sentence: Gautam Buddha\u5750\u5728\u6811\u4e0b\uff0c\u5468\u56f4\u662f\u7f8e\u4e3d\u7684\u5c71\u548c\u6e56\u3002\n\nTranslated sentence: \u91ca\u8fe6\u725f\u5c3c\u5750\u5728\u6811\u4e0b\uff0c\u5468\u56f4\u662f\u7f8e"} +{"id": "5000741", "video_name": "9a035c35-81e8-5b95-ae3c-9e4f15121e76", "text": "\u5f3a\u70c8\u5730\u9707\u6467\u6bc1\u4e86\u57ce\u5e02\u7684\u5927\u90e8\u5206\u5730\u533a\uff0c\u968f\u540e\u53d1\u751f\u4e86\u6d77\u5578\u3002"} +{"id": "5000742", "video_name": "f5d9356f-1020-50f0-be83-4bf92571c38f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u53f0\u6e7e\u5973\u5b66\u751f\u5728\u7eff\u8272\u80cc\u666f\u4e0b\u4ee516:9\u7684\u89c6\u91ce\u64ad\u62a5\u65b0\u95fb\u3002"} +{"id": "5000743", "video_name": "f68527d6-afe9-5012-90ef-4823f4a74a55", "text": "\u52a0\u5165\u6751\u6c11\u7684\u884c\u5217\uff0c\u5171\u540c\u52aa\u529b\u4fdd\u62a4\u5728\u63a2\u9669\u4e2d\u53d1\u6398\u51fa\u7684\u88ab\u9057\u5fd8\u6545\u4e8b\u3002"} +{"id": "5000744", "video_name": "9eee615d-265e-5dd4-9393-3276a6c2347c", "text": "\u9e70\u6325\u52a8\u7740\u7fc5\u8180\uff0c\u4ece\u5de6\u98de\u5411\u53f3\u3002\u526a\u5f71\u98ce\u683c\uff0c\u9ed1\u767d\u8272\u3002"} +{"id": "5000745", "video_name": "552cb396-2bdd-5c04-91b5-dbfdecfeca6d", "text": "\u4e00\u6bb5\u4ee4\u4eba\u611f\u52a8\u7684\u65f6\u523b\u88ab\u8bb0\u5f55\u5728\u4eea\u5f0f\u4e0a\uff0cMax\u8f7b\u63a8\u65b0\u90ce\u5e76\u4ea4\u4ed8\u6212\u6307\uff0c\u5c55\u73b0\u4e86\u6bdb\u8338\u8338\u7684\u670b\u53cb\u548c\u592b"} +{"id": "5000746", "video_name": "0ca34bd2-c31d-5593-967e-5acc38ffa0f4", "text": "\u592a\u9633\u53d8\u6210\u4e86\u4e00\u6735\u660e\u4eae\u7684\u82b1\u3002"} +{"id": "5000747", "video_name": "b457b81c-dcaf-5a0e-97fd-16b7154dc79b", "text": "\u51b0\u5496\u5561\u5728\u5851\u6599\u676f\u4e2d\u6e85\u8d77\u6765\uff0c\u7f8e\u5473\u3001\u6d53\u90c1\uff0c\u968f\u5904\u53ef\u89c1\u3002"} +{"id": "5000748", "video_name": "4fd005ce-ee63-5b19-ad80-4ece59e3cddb", "text": "\u6545\u4e8b\u677f\u5f0f\uff0c\u89e3\u5f00\u793c\u76d2\u4e0a\u7684\u4e1d\u5e26\u3002"} +{"id": "5000749", "video_name": "653cc321-af14-57c3-a656-ce97b118e2f5", "text": "\u4e00\u4e2a\u56e2\u961f\u5728\u4e2d\u95f4\u6784\u5efa\u7f51\u7ad9\u7684\u63d2\u56fe\u3002"} +{"id": "5000750", "video_name": "52bbedc0-9f80-5169-934e-a350dfb27eff", "text": "\u7535\u5f71\u822c\u7684\u5496\u55b1\u4e09\u660e\u6cbb\u5728\u6d77\u6ee9\u4e0a"} +{"id": "5000751", "video_name": "de63c6f2-1d8a-5044-8578-b6e05e883106", "text": "\u9ed1\u6697\u6050\u6016\u7684\u591c\u665a\u68ee\u6797\uff0c\u8ff7\u96fe\u5f25\u6f2b\u7684\u5c0f\u5f84\u3002"} +{"id": "5000752", "video_name": "e7c17ce3-87e4-5830-8a39-563208e2fd71", "text": "\u6211\u6765\u8fd9\u91cc\u4e0d\u662f\u4e3a\u4e86\u98ce\u666f\uff0c\u800c\u662f\u4e3a\u4e86\u6c34\u82b1\u3001\u6c34\u82b1\u827a\u672f\u3001\u6db2\u4f53\u30015D\u3001\u6d6e\u5c9b\u3001\u72fc\u3001\u9ed1\u6d1e\u541e"} +{"id": "5000753", "video_name": "15140ff9-b5cb-55d1-b319-bb5252851b03", "text": "\u673a\u5668\u4eba\u5728\u5bc6\u6b47\u6839\u5927\u8857\u4e0a\u884c\u8fdb"} +{"id": "5000754", "video_name": "2eff3883-f0a1-5914-ac08-2bbeecef3387", "text": "\u6bdb\u6bdb\u866b\u6574\u5929\u8eba\u5728\u5e8a\u4e0a\uff0c\u81ea\u6028\u81ea\u827e\u3002"} +{"id": "5000755", "video_name": "84e8fd4c-4d2f-5f75-a885-2683638c2f70", "text": "MF DOOM\u6234\u7740\u5929\u4f7f\u7684\u7fc5\u8180\uff0c\u5728\u6d82\u9e26\u58c1\u753b\u4e0a\u4f5c\u753b\uff0c\u5e76\u63e1\u7740\u9ea6\u514b\u98ce\u3002"} +{"id": "5000756", "video_name": "9237f41c-0151-564e-a298-b430a8e82518", "text": "\u5361\u901a\u8d85\u7ea7\u82f1\u96c4\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u624b\u6301\u5bfc\u5f39\u3002"} +{"id": "5000757", "video_name": "44ed2664-62b3-5eea-8e04-41082424705a", "text": "\u5728\u591c\u5e97\u91cc\u7a7f\u7740\u8bb8\u591a\u94bb\u77f3\u9879\u94fe\u7684\u5973\u4eba\u3002"} +{"id": "5000758", "video_name": "bee9623c-a3e2-515c-9e28-8b48e33b0908", "text": "\u4e00\u53ea\u67ef\u57fa\u9a91\u81ea\u884c\u8f66\u7684\u89c6\u9891"} +{"id": "5000759", "video_name": "a05113ff-23f6-5efa-b5cc-0829848a8914", "text": "\u866b\u65cf\u53f2\u83b1\u59c6\u530d\u5310\u5728\u5730\u9762\u4e0a\u3002"} +{"id": "5000760", "video_name": "abcd1753-fc83-5b9d-a865-0bedc0582a86", "text": "\u52a8\u753b\u5b57\u6bcd\u706b\u8f66\uff0c\u9ad8\u6e0516"} +{"id": "5000761", "video_name": "247bba68-5778-5c49-857f-de9d30d4eb00", "text": "\u4e00\u4e2a\u604b\u7231\u4e2d\u7684\u60c5\u4fa3\u624b\u7275\u624b\u8d70\u5728\u5df4\u897f\u8d2b\u6c11\u533a\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "5000762", "video_name": "1a75cfbf-4002-5c65-8bf9-6d328bcb6b5f", "text": "\u6d77\u6d6a\u62cd\u6253\u5728\u6c99\u6ee9\u4e0a FANAUE\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09"} +{"id": "5000763", "video_name": "bddbaada-bf99-5d08-93cf-edd2688326d6", "text": "\u4e00\u4f4d\u521a\u521a\u6210\u4e3a\u5927\u5b66\u751f\u7684\u5973\u5b69\uff0c\u7ad9\u5728\u5b66\u6821\u524d\u9762\u3002"} +{"id": "5000764", "video_name": "dc168f93-6678-54a5-b9ff-064796dd26d0", "text": "\u5236\u4f5c\u4e00\u4e2a\u5355\u4e2a\u7684\u3001\u5305\u88f9\u7740\u76844D\u94ec\u8d28\u65e5\u5f0f\u672a\u6765\u6d3e\u786c\u7cd6\uff0c\u5b83\u7a7f\u8d8a\u4e86\u4e0d\u540c\u7684\u89c6\u89c9\u96a7\u9053\u626d"} +{"id": "5000765", "video_name": "7db63c8d-c155-52b4-b05b-4dcbd4b8aa15", "text": "\u7528\u51b0\u521b\u9020\u4e00\u4e2a\u771f\u5b9e\u7684\u957f\u7eff\u5c71\uff0c\u52a0\u4e0a\u4e00\u4e9b\u9759\u6b62\u7684\u5c71\u7f8a\u548c\u5976\u725b\u3002"} +{"id": "5000766", "video_name": "bc505c21-e5af-5aa6-bc57-b7d668a2becc", "text": "\u4ed6\u662f\u4e00\u4e2a\u5929\u4f7f\uff0c\u7ad9\u5728\u90a3\u91cc\uff0c\u4f38\u51fa\u4e00\u53ea\u624b\u81c2\u6307\u5411\u5929\u7a7a\uff0c\u4ed6\u7684\u624b\u81c2\u4e0a\u7f20\u7740\u4e00\u6761\u91d1\u94fe\u3002"} +{"id": "5000767", "video_name": "0b4e141b-3fc0-556f-9c14-0e7a789d15c6", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e00\u53ea\u6d63\u718a\u5bb6\u65cf\u5728\u6e29\u99a8\u65f6\u523b\u76f8\u4e92\u7406\u6bdb\u7684\u7535\u5f71\u753b\u9762\u3002"} +{"id": "5000768", "video_name": "8a3f7e11-5fe7-5294-93e6-074c1b3a0e2e", "text": "\u4e00\u4f4d\u6765\u81ea\u53e4\u4ee3\u4e2d\u56fd\u7684\u5b69\u5b50\uff0c\u624b\u62ff\u82b1\u76c6\u4e0e\u670b\u53cb\u4e00\u540c\u8d70\u8def\u3002"} +{"id": "5000769", "video_name": "babfcaa4-68dd-57a1-beb1-647aedf0dc42", "text": "\u4e00\u53ea\u72d7\u5728\u8349\u5730\u4e0a\u95fb\u7740\u4e00\u6735\u82b1\u3002"} +{"id": "5000770", "video_name": "6c7b8dd9-023a-55c0-b56e-77b08fb31362", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u7269\u670b\u53cb\u4eec\u5728\u9b54\u6cd5\u4e16\u754c\u80cc\u666f\u4e0b\u5e86\u795d\u6210\u529f\u5408\u4f5c\u7684\u5f62\u8c61\uff0c\u4f20\u8fbe\u80dc\u5229\u7684\u611f\u89c9\u3002"} +{"id": "5000771", "video_name": "d0db20fa-f23b-5fb0-86fa-592eb46564db", "text": "\u6c34\u4e2d\u8bde\u751f\u7684\u7ef4\u7eb3\u65af\u4ee5\u8d85\u73b0\u5b9e\u4e3b\u4e49\u8d5b\u535a\u670b\u514b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "5000772", "video_name": "2f3dd661-70dc-55fc-addb-83c1b135369e", "text": "\u6210\u5409\u601d\u6c57\u5750\u7684\u6905\u5b50"} +{"id": "5000773", "video_name": "bef17bec-9030-5df2-b086-5a58b97b76f4", "text": "\u75ab\u60c5\u671f\u95f4\u5927\u5403\u5927\u559d\uff0c\u800c\u52a0\u6c99\u6218\u4e89\u5374\u5728\u7ee7\u7eed\uff0c\u8fd9\u5728\u5176\u4ed6\u56fd\u5bb6\u5f15\u8d77\u4e86\u793e\u4f1a\u7684\u5e86\u795d\u3002"} +{"id": "5000774", "video_name": "45541fe1-31c4-54f2-88f6-bea70326fecb", "text": "\u5feb\u4e50\u3001\u84ec\u677e\u7684\u6cf0\u8fea\u718a\u5728\u6d77\u6d0b\u4e2d\u51b2\u6d6a\u3002"} +{"id": "5000775", "video_name": "a5042ce3-0448-53a6-a0c5-609aaef74f52", "text": "\u4e00\u4e2a\u7a7f\u4e01\u5b57\u88e4\u7684\u4e4c\u514b\u5170\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "5000776", "video_name": "9309e9cb-d894-5610-96cb-279572834317", "text": "\u4e00\u4e2a\u56fd\u738b\u548c\u4ed6\u7684\u9b54\u6cd5\u987e\u95ee\u5728\u9ed1\u6697\u5947\u5e7b\u4e2d\u8fdb\u884c\u4eea\u5f0f\u3002\u8840\u8165\u9b54\u6cd5\uff0c\u6050\u6016\u7535\u5f71\uff0c4K \u5206\u8fa8"} +{"id": "5000777", "video_name": "2cff6e60-7d77-50da-8e31-6ff238b63225", "text": "\u4e0a\u5e1d\u5e0c\u671b\u8ba9\u4f60\u4e00\u751f\u4e0d\u65ad\u8fdb\u6b65\u3002"} +{"id": "5000778", "video_name": "ed0cdb31-191a-5f86-be9d-dde0270f0c08", "text": "\u4ece\u4f20\u7edf\u7684\u6751\u5e84\u4e95\u5f80\u5916\u653e\u5927\uff0c\u5c55\u73b0\u51fa\u7f8e\u4e3d\u7684\u73af\u5883\u3002"} +{"id": "5000779", "video_name": "8d4b4154-96bd-5cdd-a69d-d636822eaa68", "text": "\u591c\u7a7a\u4e2d\u7684\u730e\u6237\u5ea7\u661f\u5ea7"} +{"id": "5000780", "video_name": "ba90e4aa-a3fa-506a-ad7b-e76f4d474272", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u5728\u592a\u7a7a\u4e2d\u8fdb\u884c\u640f\u6597\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u53f2\u8bd7\u7248\uff0c\u52a8\u6001\u8fc7\u6e21\uff0c4K\uff0c\u865a\u5e7b\u5f15"} +{"id": "5000781", "video_name": "94317589-e7e0-5ab6-8b88-fcc1d5d70de7", "text": "\u5973\u4eba\u8eba\u5728\u5e8a\u4e0a\u4ef0\u671b\u9633\u53f0\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "5000782", "video_name": "d90d1027-c7bb-5df4-95e5-f809e6b04f08", "text": "\u4e00\u7fa4\u5ba2\u6237\uff0c\u4ed6\u4eec\u7684\u8138\u4e0a\u5145\u6ee1\u4e86\u60ca\u5947\u548c\u7740\u8ff7\u7684\u8868\u60c5\u3002\u5176\u4e2d\u4e00\u4e2a\u5ba2\u6237\uff08\u4e00\u4e2a\u7ea610\u5c81\u7684\u5b69\u5b50\uff09\u4f38\u624b\u4e0e\u5386"} +{"id": "5000783", "video_name": "0f8956db-5b8d-56ad-99ba-2a9cd39d34c4", "text": "\u7528\u65e0\u4eba\u673a\u98de\u884c\u7a7f\u8fc7\u7f8e\u4e3d\u7684\u7011\u5e03\u666f\u8272\u3002"} +{"id": "5000784", "video_name": "77ee8828-790b-56e7-a64e-a01a60825c1a", "text": "\u53e4\u57c3\u53ca\u7684\u57c3\u53ca\u5973\u5b69\u80cc\u7740\u957f\u957f\u7684\u9ed1\u53d1\uff0c\u5728\u7eb8\u838e\u8349\u4e0a\u5199\u5b57\u3002\u5979\u8eab\u5904\u4e8e\u4e00\u4e2a\u5145\u6ee1\u4e66\u67b6\u548c\u7eb8"} +{"id": "5000785", "video_name": "0e3f54d6-28ba-59ec-b769-285fed866222", "text": "\u653e\u5927\u4e00\u5e45\u827a\u672f\u7684\u9f99\u5934\u62fc\u8d34\u753b\uff0c8K\uff0c\u6770\u4f5c\u3002\n\nSource sentence: I would like to order a bowl of spicy beef noodle soup, please.\n\u6211\u60f3\u70b9\u4e00"} +{"id": "5000786", "video_name": "93717d4d-e7b7-56fd-a50b-e060bd423376", "text": "\u767d\u5929\u9ec4\u8272\u5bb6\u6811\u56f4\u7ed5\u7740\u53ef\u7231\u7537\u5b69\u7684\u5bb6\uff0c\u4ed6\u6253\u5f00\u5bb6\u95e8\u8d70\u51fa\u5bb6\u95e8\u3002"} +{"id": "5000787", "video_name": "6487d20e-8664-5184-bcf4-f8fa9df5f88a", "text": "\u5728\u4eba\u7c7b\u5386\u53f2\u7684\u590d\u6742\u56fe\u666f\u4e2d\uff0c\u5b83\u7684\u4f5c\u7528\u3002"} +{"id": "5000788", "video_name": "91422cbd-144c-555f-8657-f3f4f26a5426", "text": "\u4e00\u53ea\u957f\u5f97\u5f88\u641e\u7b11\u7684\u5154\u5b50\uff0c\u62ff\u7740\u80e1\u841d\u535c\u3002"} +{"id": "5000789", "video_name": "ef5b5fa7-603a-58a4-a4b0-17193c445ad3", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u5728\u672b\u65e5\u897f\u90e8\u4e16\u754c\u4e2d\u9a7e\u9a76\u3002"} +{"id": "5000790", "video_name": "01afd447-8c35-552d-866d-241348294e7e", "text": "\u4e00\u526f\u9ab7\u9ac5\u5934\u5728\u8f66\u5c3e\u7bb1\u5185\u90e8\u7535\u5f71\u89c6\u89d2\u4e2d\u7f13\u6162\u5730\u5173\u95ed\u8f66\u5c3e\u7bb1\uff0c4K \u5e73\u6ed1\u3002"} +{"id": "5000791", "video_name": "560ad478-5be7-5725-8cde-2e6a7d48f027", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u5728\u4e24\u4e2a\u573a\u666f\u4e2d\u52aa\u529b\u5b66\u4e60\uff0c\u51c6\u5907\u8003\u8bd5\u3002"} +{"id": "5000792", "video_name": "1897ff87-ff68-5899-819e-95a9841f8ea8", "text": "\u7684\u6e90\u53e5\uff1a\u4e1c\u4eac\u6f02\u79fb\u8f66\u6f02\u79fb\u5728\u591c\u665a\u6d82\u4e0a\u9c9c\u8273\u989c\u8272\u7684\u6d82\u6599\u8fc7\u9a6c\u8def\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "5000793", "video_name": "0c5b332e-efc9-5c87-b3d0-b0af636a1d2a", "text": "\u4e00\u5f20\u65f6\u5c1a\u7167\u7247\uff0c\u5973\u4eba\u7a7f\u7740Supreme\uff0c\u8272\u5f69\u9c9c\u8273\uff0c\u62cd\u6444\u6b63\u9762\u548c\u4fa7\u9762\u3002"} +{"id": "5000794", "video_name": "80b1fabf-0668-5ede-98b9-1bbc47d8f992", "text": "translation: \u9e21\u7684\u5929\u5802\uff0c\u5b89\u5168\u7684\u907f\u96be\u6240\uff0c\u9e21\u7684\u7406\u60f3\u4e4b\u5730\u3002"} +{"id": "5000795", "video_name": "9deacd91-20c8-51c5-a41a-cfd918915c85", "text": "\u6751\u5e84\u5728\u9ec4\u660f\u65f6\u5206\u7684\u5168\u666f\uff0c\u795e\u5947\u7684\u706f\u5149\u7167\u4eae\u4e86\u623f\u5c4b\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u68a6\u5e7b\u548c\u8d85\u81ea\u7136\u7684"} +{"id": "5000796", "video_name": "c5542187-757d-56e9-bbde-74148b35516f", "text": "\u4eba\u4eec\u5728\u52a8\u6f2b\u98ce\u683c\u7684\u5927\u5385\u91cc\u53c2\u4e0e\u6d3b\u52a8\u3002"} +{"id": "5000797", "video_name": "3e7349f7-4667-530a-8eb3-a185a3b0735f", "text": "\u4e54\u00b7\u62dc\u767b\u81ea\u4fe1\u5730\u8d70\u8fc7\u4e00\u5ea7\u7cbe\u5fc3\u8bbe\u8ba1\u7684\u82b1\u56ed\uff0c\u5e26\u7740\u4e00\u4e1d\u81ea\u6ee1\u611f\u3002"} +{"id": "5000798", "video_name": "7271d9ee-6877-571c-b7d0-1f4dc894a6aa", "text": "\u8d85\u4eba\u4e0e\u95ea\u7535\u4fa0\u7684\u9ad8\u6e054K\u901f\u5ea6\u4e4b\u6218\u3002"} +{"id": "5000799", "video_name": "c908fb72-53f8-5c10-8794-ab6ab814011c", "text": "\u4e00\u8f86\u8d5b\u8f66\u7684\u6162\u52a8\u4f5c\u955c\u5934"} +{"id": "5000800", "video_name": "d5edb147-9964-5fbe-8d26-9dee7b2db93e", "text": "\u80e1\u987b\u5c0f\u732b\u548c\u722a\u5b50\u5c0f\u72d7\u51c6\u5907\u5f00\u59cb\u4ed6\u4eec\u7684\u65c5\u7a0b\uff0c\u6536\u96c6\u7269\u8d44\u5e76\u5411\u4ed6\u4eec\u7684\u670b\u53cb\u544a\u522b\u3002"} +{"id": "5000801", "video_name": "ee6a252d-2830-5fbb-9af8-7fe76436bca1", "text": "\u4e00\u4e2a\u52a8\u6001\u7684\u5927\u5c4f\u5e55\u76d1\u63a7\u5e73\u53f0\uff0c\u663e\u793a\u4ece\u8bbe\u5907\u6536\u96c6\u7684\u6570\u636e\u3002"} +{"id": "5000802", "video_name": "859a5938-8bbd-5aee-afe7-93db1d7418d8", "text": "\u521b\u5efa\u4e00\u4e2a\u4e0e\u6587\u5b66\u76f8\u5173\u7684\u56fe\u50cf\u62fc\u8d34\uff0c\u4f8b\u5982\u4e66\u7c4d\u3001\u7fbd\u6bdb\u7b14\u3001\u58a8\u6c34\u74f6\u548c\u7eb8\u5f20\u3002"} +{"id": "5000803", "video_name": "7371c4e9-1574-5d96-be88-7cdfa2a773ec", "text": "\u6770\u4f5c\u3001\u6700\u4f73\u54c1\u8d28\u3001\u9ad8\u5ea6\u8be6\u7ec6\u3001\u821e\u72ee\u3001\u4f20\u7edf\u5e86\u5178\u3001\u9c9c\u8273\u7684\u8272\u5f69\u3001\u559c\u5e86\u6c1b\u56f4\u3001\u6587"} +{"id": "5000804", "video_name": "4d1da4bd-de80-5044-99b8-b59521d8035d", "text": "\u8bb8\u591a\u50f5\u5c38\u805a\u96c6\u5728\u706b\u8f66\u7ad9\u3002"} +{"id": "5000805", "video_name": "9e90f307-ba6b-5af4-ab35-527cab441083", "text": "\u7f6a\u72af\u5728\u51ac\u5929\u53bb\u76d1\u72f1\u3002"} +{"id": "5000806", "video_name": "2caaef55-0e23-5cf3-a7aa-0d5fb9adae98", "text": "\u521b\u5efa\u4e00\u4e2a\u89c6\u9891\uff0c\u5728Dota 2\u548cUnderlord\u6e38\u620f\u73af\u5883\u4e2d\u968f\u673a\u9009\u62e9\u56db\u4e2a\u89d2\u8272\u3002\u5728\u67d0\u4e2a\u65f6\u5019\uff0cUnderlord\u542f\u52a8\u4ed6\u7684\u7ec8\u6781\u6280\u80fd\uff08\u9ed1"} +{"id": "5000807", "video_name": "82bd353d-e7f8-5481-8f1f-7aa871894024", "text": "\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u975e\u5e38\u6f02\u4eae\u7684\u5df4\u897f\u5973\u6027\u5fae\u7b11\u7740\u3002"} +{"id": "5000808", "video_name": "fbd6acd0-894d-5187-8261-4791438cd12b", "text": "\u4e00\u53ea\u98de\u7fd4\u7684\u767d\u9e3d\u5728\u65cb\u8f6c\u7684\u5730\u7403\u4e0a\u3002"} +{"id": "5000809", "video_name": "0a55a84c-3bda-5dfa-a3ea-e27ff636f327", "text": "\u73b0\u573a\u76f4\u64ad\u65f6\u8bb0\u8005\u88ab\u6253\u65ad\u4e86"} +{"id": "5000810", "video_name": "1f143809-33bf-5488-8a9f-9ccb0c1ce63d", "text": "\u4e00\u6bb5\u89c6\u9891\uff0c\u4e24\u5bf9\u60c5\u4fa3\u5728\u5c71\u533a\u5ea6\u5047\u6751\u7684\u5496\u5561\u5e97\u91cc\u559d\u5496\u5561\u3002"} +{"id": "5000811", "video_name": "7b1588fd-cf69-593d-b879-6c69d4df2dff", "text": "\u5fae\u5c0f\u7684\u5916\u661f\u4eba\u5728\u5723\u8bde\u6811\u5185\u8fdb\u884c\u5192\u9669\u6500\u722c\uff0c\u60ca\u53f9\u4e8e\u95ea\u4eae\u7684\u706f\u5149\u548c\u590d\u6742\u7684\u88c5\u9970\u3002\u7535\u5f71"} +{"id": "5000812", "video_name": "bcc234bb-bf48-5a2b-9489-6d17c800fd13", "text": "\u65e9\u6668\u7684\u9633\u5149\u548c\u4e1b\u6797\u4e2d\u7684\u5e7c\u72ee\u3002 \n\nSource sentence: I am learning Chinese because I want to travel to China. \n\n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3"} +{"id": "5000813", "video_name": "bf809c56-5d94-53e8-902a-80a8ec564b6d", "text": "\u6444\u50cf\u673a\u8f6c\u5411\u9b54\u6cd5\u4e16\u754c\u4e2d\u7684\u5b66\u751f\u65bd\u5c55\u9b54\u6cd5\u5492\u8bed\u3002"} +{"id": "5000814", "video_name": "4592dd8f-8869-5cf2-8d7e-88b8ecef891a", "text": "\u620f\u5267\u5316\u7684\u7167\u660e\u7167\u4eae\u4e86\u4e39\u5b81\u88e4\u7684\u9762\u6599\u548c\u7eb9\u7406\uff0c\u67d4\u6ed1\u987a\u6ed1\uff0c\u9ad8\u7ec6\u8282\u3002"} +{"id": "5000815", "video_name": "22c7dab2-d60f-5789-8284-aed3c4a53b51", "text": "\u4e00\u4e2a\u7537\u4eba\u548c\u5973\u4eba\u8d70\u5728\u4e0b\u66fc\u54c8\u987f\uff0c\u590d\u53e4\u68a6\u5883\u3002\n\nSource sentence: The sun is setting over the horizon, painting the sky with hues of orange and pink.\n\u592a\u9633\u6b63\u5728"} +{"id": "5000816", "video_name": "25ad683a-eda3-529e-af7e-442b20dbb727", "text": "\u4e00\u8f86\u9ed1\u8272\u7684\u5b9d\u9a6c\u7a7f\u8d8a\u5357\u6781\uff0c\u6ed1\u884c\u5728\u767d\u96ea\u4e0a\u3002"} +{"id": "5000817", "video_name": "1a0c9869-4fcb-539e-8246-6fa20f76d487", "text": "\u4e00\u4e2a\u5973\u4eba\u6765\u5496\u5561\u9986\u8d2d\u4e70\u751c\u751c\u5708\uff0c\u5e76\u5750\u5728\u684c\u5b50\u4e0a\u5403\u751c\u751c\u5708\u3002\u5728 Scandi \u98ce\u683c\u7684 softsoftdonut"} +{"id": "5000818", "video_name": "0d353840-4717-5e74-9914-cefd1b372f06", "text": "\u6c99\u7279\u963f\u62c9\u4f2f\u7684\u4e94\u591c\u540e\u5bab\uff08FNAF\u7c89\u4e1d\u81ea\u5236\u7535\u5f71\uff09"} +{"id": "5000819", "video_name": "d3fc1142-d7af-5b57-93b1-052646dbbdb5", "text": "\u4e2d\u56fd\u5df2\u7ecf\u63a5\u7ba1\u4e86\u5730\u7403\u3002"} +{"id": "5000820", "video_name": "0fde7598-9385-59a4-a845-0e56abad5dc8", "text": "\u52a8\u6f2b\u300a\u65b0\u4e16\u7eaa\u798f\u97f3\u6218\u58eb\u300b\u98ce\u683c\u4e0b\u7684\u89d2\u8272\u521d\u97f3\u672a\u6765\u3002\u5468\u56f4\u6709\u5bb6\u5177\uff0c\u4ed6\u4eec\u6b63\u5750\u5728\u6c99\u53d1\u4e0a\u770b\u624b\u673a\u653e"} +{"id": "5000821", "video_name": "ffab7e42-78b5-5dac-a8f7-cb32e0d473cd", "text": "\u6240\u6709\u4eba\u4e3e\u8d77\u65d7\u5e1c\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000822", "video_name": "71850c3d-98e7-5e2a-83b9-630b698657f8", "text": "\u4e00\u53ea\u5c55\u7fc5\u7684\u9e1f\u7684\u7167\u7247\uff0c\u4e00\u53ea\u7fc5\u8180\u662f\u7ea2\u8272\u7684\uff0c\u53e6\u4e00\u53ea\u662f\u84dd\u8272\u7684\u3002"} +{"id": "5000823", "video_name": "5c287929-968f-5296-9f11-07bedc4d24a3", "text": "\u6298\u7eb8\u827a\u672f\u3001\u52a8\u6f2b\u98ce\u683c\u3001\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u3001\u7ff1\u7fd4\u5929\u7a7a\u3001\u98ce\u3001\u4e91\u3001\u5e73\u539f\u3001\u7535\u5f71\u822c\u7684\u3001"} +{"id": "5000824", "video_name": "b6aba669-1c93-5e06-92a9-ff0d761d9ae8", "text": "\u6c99\u6f20\u591c\u7a7a\u5e03\u6ee1\u661f\u661f\uff0c\u89c6\u9891\u957f\u5ea6\u4e3a10\u79d2\u3002"} +{"id": "5000825", "video_name": "16fa4850-489f-5b4c-901f-9fe96634c5f4", "text": "\u7537\u4eba\u773c\u4e2d\u542b\u6cea\uff0c\u770b\u8d77\u6765\u5f88\u7edd\u671b\u3002"} +{"id": "5000826", "video_name": "2918bbfc-0fb1-5aee-bf11-3108adc4c505", "text": "\u4ece\u539f\u59cb\u72b6\u6001\u9010\u6e10\u8f6c\u53d8\u4e3a\u4e00\u4e2a\u602a\u7269\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000827", "video_name": "c32ea5bc-1259-57f0-acae-e75aaa768cee", "text": "\u4e00\u540d\u5e74\u8f7b\u7537\u5b50\u548c\u4e00\u540d\u5e74\u8f7b\u5973\u5b50\u5728\u516c\u56ed\u91cc\u6563\u6b65\uff0c\u6574\u4e2a\u8eab\u4f53\u90fd\u88ab\u9633\u5149\u7167\u4eae\uff0c\u5468\u56f4\u7684\u5176\u4ed6\u4eba\u79bb\u4ed6\u4eec"} +{"id": "5000828", "video_name": "8822d339-6c33-5812-9ba4-b5ab554bcb18", "text": "\u540e\u542f\u793a\u5f55\u57ce\u5e02\u5e9f\u589f\uff0c\u5bbd\u666f\uff0c\u6162\u79fb\u955c\uff0cVHS\u5f55\u50cf\u5e26\u3002"} +{"id": "5000829", "video_name": "7c4d4d07-536b-57a4-998b-82b5a43ad299", "text": "\u6b7b\u4eba\u4ece\u5893\u5730\u4e2d\u590d\u6d3b\u4e86\u3002\u4ed6\u4eec\u7a7f\u7740\u5168\u767d\u7684\u8863\u670d\u3002\u4ed6\u4eec\u5347\u4e0a\u4e86\u5929\u5802\u3002\u8036\u7a23\u5728\u4e91\u4e2d\u7b49\u5f85\u4ed6\u4eec\u3002"} +{"id": "5000830", "video_name": "27a68e1e-ab5f-51a2-adce-6142d46211bd", "text": "\u547d\u4ee4\u63d0\u793a\u7b26\u4e3a\u8d2b\u56f0\u6551\u52a9\u7ec4\u7ec7\u63d0\u4f9b\u5e2e\u52a9\uff0c\u4ee5\u5e2e\u52a9\u5230\u8d2b\u56f0\u4eba\u7fa4\u3002"} +{"id": "5000831", "video_name": "59412e90-36b9-5cb7-8f01-75bc9524bb63", "text": "\u5728\u4e1b\u6797\u91cc\uff0c\u60f3\u8c61\u4e00\u4e2a\u5751\u6d1e\uff0c\u91cc\u9762\u662f\u4e00\u53ea\u53d7\u60ca\u7684\u5c0f\u8c61\uff0c\u6323\u624e\u7740\u60f3\u722c\u51fa\u6765\uff0c\u5b83\u7684\u773c\u775b\u8bf7\u6c42"} +{"id": "5000832", "video_name": "e3dab9fa-2a70-5913-92ad-794b75c7cd7a", "text": "\u5728\u6d77\u91cc\u7684\u4e00\u4e2a\u73bb\u7483\u623f\u95f4\u91cc\u80fd\u770b\u5230\u6d77\u6d0b\u751f\u7269\uff0c\u9a6c\u5c14\u4ee3\u592b\u6c34\u4e0b\u522b\u5885\u3002 \n\nSource sentence: The Great Wall of China is a historic landmark that stretches"} +{"id": "5000833", "video_name": "bcbcaacb-7ecc-587d-8ac6-9a760713001e", "text": "\u8482\u59c6\u00b7\u4f2f\u987f\u98ce\u683c\u7684\u5361\u901a\u52a8\u753b\u7ea2\u718a\u732b"} +{"id": "5000834", "video_name": "7f89f837-a42c-55d3-8ae4-d190d02218cb", "text": "\u8428\u7c73\u548c\u827e\u4e3d\u4e1d\u8d70\u8fdb\u9633\u5149\u666e\u7167\u7684\u68ee\u6797\uff0c\u524d\u9762\u6709\u9ad8\u5927\u7684\u6811\u6728\u548c\u4e00\u6761\u5c0f\u8def\u3002"} +{"id": "5000835", "video_name": "1d9b867e-9d97-5d38-8a27-cbf834b917f3", "text": "\u4e1b\u6797\u4e2d\u6709\u4e00\u53ea\u6b7b\u4ea1\u7684\u8001\u864e\uff0c\u5e26\u6709\u8840\u8ff9\u548c\u556e\u9f7f\u52a8\u7269\u5361\u901a\u98ce\u683c\u3002"} +{"id": "5000836", "video_name": "d1c13e22-e793-54b1-abf4-082f5f728d94", "text": "\u4e00\u4e2a\u5e02\u573a\u8425\u9500\u516c\u53f8\u7684\u6807\u5fd7\uff0c\u5fc5\u987b\u975e\u5e38\u72ec\u7279\u3002\u5b83\u5fc5\u987b\u572810\u79d2\u5185\u8ba9\u4eba\u5370\u8c61\u6df1\u523b\u3002"} +{"id": "5000837", "video_name": "9f26a848-94ae-513a-a311-8daf378348dc", "text": "\u4e24\u4e2a\u7537\u4eba\u6253\u67b6\uff0c\u6444\u50cf\u673a\u52a8\u4f5c\u903c\u771f\u3002"} +{"id": "5000838", "video_name": "1081baa2-af13-51ee-9f4c-6f28a84e44ad", "text": "\u4e00\u4e2a\u4eba\u7126\u8651\u5730\u73af\u987e\u56db\u5468\uff0c\u770b\u7740\u73af\u7ed5\u7740\u81ea\u5df1\u7684\u89c6\u9891\u5c4f\u5e55\u8d8a\u6765\u8d8a\u8fd1\u3002"} +{"id": "5000839", "video_name": "f1a205a0-a246-5d32-98fa-def53f0001f8", "text": "\u88ab\u7f51\u9875\u6d77\u6d0b\u5305\u56f4\u7684\u4eba"} +{"id": "5000840", "video_name": "51307248-19e0-54ff-8681-0d1c1f2042ea", "text": "\u6211\u9700\u8981\u73b0\u4ee3\u5316\u7684\u4e00\u5ba4\u516c\u5bd3\u56fe\u7247\u3002"} +{"id": "5000841", "video_name": "49f57259-fddc-585d-9b7c-1c7dd2bbfbae", "text": "\u9ed1\u76ae\u624b\u5957\u6361\u8d77\u4e00\u9876\u653e\u5728\u67cf\u6cb9\u8def\u4e0a\u7684\u7ea2\u8272\u6469\u6258\u8f66\u5934\u76d4\u3002"} +{"id": "5000842", "video_name": "f7d3483d-839a-54d1-a107-cbd1a213806e", "text": "\u9884\u8b66\u8089\u4f53\u8106\u5f31\u2014\u2014\u6211\u4eec\u6240\u77e5\u9053\u7684\u4efb\u4f55\u5feb\u4e50\u90fd\u6ce8\u5b9a\u8981\u6d88\u4ea1\u2014\u2014\u56e0\u6b64\uff0c\u4ed6\u7684\u753b\u4f5c\u6210\u529f\u5730\u5524\u8d77\u4e86\u8150\u673d\u8fc7"} +{"id": "5000843", "video_name": "472e7c20-ec12-56c1-86f1-712d434d773f", "text": "\u521b\u9020\u4e00\u4e2a\u8ba9\u4eba\u8054\u60f3\u5230\u6587\u827a\u590d\u5174\u7ed8\u753b\u7684\u5f62\u8c61\uff0c\u4ee5\u70bc\u91d1\u672f\u5b9e\u9a8c\u5ba4\u6216\u5de5\u4f5c\u5ba4\u4e3a\u4e2d\u5fc3\u3002\u5728\u8fd9\u4e2a\u6c1b"} +{"id": "5000844", "video_name": "5150c529-a875-5c7f-89db-7e783a6a7a05", "text": "Trippie Redd\u5728\u70e7\u70e4\u6d3e\u5bf9\u4e0a\u5531\u6b4c\u3002"} +{"id": "5000845", "video_name": "cfbeed2b-0f40-56e1-871d-5eaafbd4991b", "text": "\u4ed6\u4eec\u7684\u65c5\u7a0b\u5e26\u4ed6\u4eec\u5230\u5c71\u9876\u548c\u68a6\u5e7b\u7684\u8349\u5730\uff0c\u5728\u90a3\u91cc\u4ed6\u4eec\u9047\u5230\u4e86\u8003\u9a8c\u4ed6\u4eec\u56e2\u961f\u5408\u4f5c\u548c\u97e7\u6027\u7684"} +{"id": "5000846", "video_name": "94e1b931-0e03-515e-a86e-43f446dcabd9", "text": "\u5728\u8def\u4e0a\u4fdd\u62a4\u81ea\u5df1\uff0c\u4e0e\u6211\u4eec\u7684Takafful LLC\u4fdd\u9669\u60a8\u7684\u6c7d\u8f66\u3002\u6709\u4e86\u6211\u4eec\uff0c\u6240\u6709\u7684\u9053\u8def\u90fd\u53d8\u5f97\u66f4\u5b89\u5168\u3002"} +{"id": "5000847", "video_name": "1fd34147-39bf-587f-9261-016c9dca173c", "text": "\u51c6\u5907\u6218\u6597\u7684\u56e2\u961f\uff0c\u6446\u51fa\u6218\u6597\u59ff\u52bf\uff0c\u9762\u9732\u75db\u82e6\u8868\u60c5\uff0c\u7c7b\u4f3c\u52a8\u6f2b\u7684\u98ce\u683c\uff0c\u52a8\u753b\uff0c"} +{"id": "5000848", "video_name": "eae55eff-6d0e-5126-8ce5-54da685290c2", "text": "\u4e00\u53ea\u8001\u864e\u5411\u72fc\u5954\u53bb\u3002"} +{"id": "5000849", "video_name": "a51ea407-5be0-51be-bbc9-5c1610cbd03b", "text": "\u4e00\u4e2a\u7537\u5b69\u8bf4\u4ed6\u5927\u7ea611\u5c81\uff0c\u6709\u767d\u8272\u7684\u5934\u53d1\u548c\u975e\u5e38\u5e72\u51c0\u7684\u7259\u9f7f\uff0c\u4ed6\u8bf4\u4e86\u4e00\u5206\u949f\u3002"} +{"id": "5000850", "video_name": "b5c06653-3200-5307-bc81-f09e210efde7", "text": "\u5bcc\u4eba\u5632\u7b11\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\uff0c\u771f\u5b9e\uff0c\u5361\u901a"} +{"id": "5000851", "video_name": "2cc096d4-e684-53ee-aeda-de2944bd33a7", "text": "\u5c06\u5531\u7247\u50cf\u5728\u5531\u7247\u673a\u4e0a\u64ad\u653e\u4e00\u6837\u65cb\u8f6c60\u79d2\u3002"} +{"id": "5000852", "video_name": "546f481e-4eb8-5442-9d4d-aa4ca776d0d8", "text": "\u82f1\u6587\u539f\u53e5\uff1athe heroes have a unique and adventurous experience which in 3d\n\n\u4e2d\u6587\u7ffb\u8bd1\uff1a\u82f1\u96c4\u4eec\u6709\u4e00\u6b21\u72ec\u7279\u800c\u5145\u6ee1\u5192\u9669\u76843"} +{"id": "5000853", "video_name": "8830a755-7f8b-5962-82cf-80e7e8a1b931", "text": "\u878d\u5316\u9ed1\u767d8\u6beb\u7c73\u7535\u5f71\u3002"} +{"id": "5000854", "video_name": "b9554fb4-0b40-5139-8ad4-3239f6cd8b95", "text": "\u592a\u7a7a\u4e2d\u7684\u9ed1\u6d1e\u573a\u666f\u770b\u8d77\u6765\u975e\u5e38\u903c\u771f\u548c\u7535\u5f71\u5316\uff0c\u50cf\u4e00\u4e2a\u5927\u95e8\u53e3\u4ee4\u4eba\u60ca\u6050\u3002"} +{"id": "5000855", "video_name": "fc7e6482-d855-5837-876a-6ccc981fd9b1", "text": "\u4e00\u4e2a\u4eba\u5728\u7f8e\u4e3d\u7684\u6e56\u4e0a\u9493\u9c7c\u3002"} +{"id": "5000856", "video_name": "00d658ab-0903-5cdc-95f8-91d38f28328a", "text": "\u5e74\u8f7b\u7684\u7537\u5b69\u624b\u62ff\u98de\u673a\u73a9\u5177\uff0c\u7a7f\u7740\u822a\u7a7a\u516c\u53f8\u673a\u957f\u7684\u670d\u88c5\uff0c\u6ce8\u89c6\u7740\u822a\u7a7a\u5927\u5b66\u3002"} +{"id": "5000857", "video_name": "c9586837-857c-5b49-8125-aea2f5ea4bc3", "text": "\u9a91\u7ea2\u8272\u81ea\u884c\u8f66\u53bb\u4e0a\u5b66\u7684\u7537\u5b69\uff0c\u5370\u5ea6\u7537\u5b69\u5e26\u7740\u4e00\u53ea\u72d7\u3002"} +{"id": "5000858", "video_name": "09c098cb-3ff7-5faf-8bb7-b46397f6cfa9", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u91cc\u5582\u4e00\u53ea\u732b\uff0c\u6b64\u65f6\u4e00\u7fa4\u8424\u706b\u866b\u5728\u95ea\u70c1\u5b83\u4eec\u7684\u5149\u8292\u3002 \n\nSource sentence: The teacher drew a"} +{"id": "5000859", "video_name": "b5c42539-e33a-5f92-97e8-926f9f89ac96", "text": "\u6570\u540d\u7a7f\u7740\u6b63\u5f0f\u897f\u88c5\u7684\u5546\u4eba\u7ad9\u5728\u5927\u697c\u524d\uff0c\u7f13\u7f13\u5730\u98de\u5411\u5929\u7a7a\u3002"} +{"id": "5000860", "video_name": "32307878-4f7e-5f3d-acd7-457d4675df68", "text": "\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\u7684\u54d1\u5149\u6a59\u8272\u8dd1\u8f66\u3002"} +{"id": "5000861", "video_name": "e0c64f6b-7104-5130-b580-c83632a2f18c", "text": "\u7eaf\u7231\u4e0e\u60c5\u611f \u4fe1\u606f\uff1a\u7231 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "5000862", "video_name": "ebe1e5ed-6815-5593-b056-28e8a2bba9f0", "text": "\u7ea6\u4f1a\u5e94\u7528\u7a0b\u5e8f\u7684\u95ea\u5c4f\u3002\u591c\u665a\u8fdc\u5904\u5750\u7740\u4e00\u5bf9\u60c5\u4fa3\uff0c\u6728\u706b\u6162\u6162\u71c3\u70e7\u3002"} +{"id": "5000863", "video_name": "5c9483e7-a4db-5941-86c6-d855ddd77621", "text": "\u8fd9\u4e2a\u53d1\u73b0\u548c\u4e9a\u7279\u5170\u8482\u65af\u4f20\u8bf4\u4e4b\u95f4\u6709\u8054\u7cfb\u5417\uff1f"} +{"id": "5000864", "video_name": "b8f2dec0-bd65-539e-be1a-5af2a3039cac", "text": "\u9ed1\u6697\u68ee\u6797\u4e2d\u706b\u707e\u71c3\u70e7\u7684\u4fe1\u606f\u56fe\u8868\u98ce\u683c"} +{"id": "5000865", "video_name": "c3f0f843-1ede-5ce9-8dbc-140678c701fb", "text": "\u4e00\u8d77\u70d8\u7119\uff0c\u5230\u5904\u6492\u9762\u7c89\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\uff0c4K\uff0c\u5361\u901a\u3002"} +{"id": "5000866", "video_name": "c2de4db9-8381-5df3-8fe2-f0bf9e65489a", "text": "\u675c\u683c\uff0c\u76ae\u514b\u65af\u52a8\u753b\u7535\u5f71\u4e2d\u7684\u72d7\uff0c\u7a7f\u7740\u5934\u76d4\u5728\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u7535\u5f71\u822c\u7684\u955c\u5934\uff0cOctane\u6e32"} +{"id": "5000867", "video_name": "2cc489da-a1b1-5749-89a9-f0c6414ffe91", "text": "\u7531\u6570\u767e\u4e07\u4e0d\u540c\u97f3\u7b26\u7ec4\u6210\u7684\u60b8\u52a8\u5fc3\u3002"} +{"id": "5000868", "video_name": "716c2397-c387-5f39-8932-1539ef1de14f", "text": "\u8054\u5408\u78b3\u5316\u7269\u6740\u866b\u5242\u5de5\u5382\u5728\u57ce\u5e02\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "5000869", "video_name": "fa7fc84d-d38c-59bc-ba89-b7ed4be348c3", "text": "\u592a\u9633\u8000\u6591\u5373\u5c06\u5230\u8fbe\u5730\u7403\uff0c14.4\u4e07\u53ea\u8774\u8776\uff0c\u7ea2\u5b9d\u77f3\u548c\u84dd\u5b9d\u77f3\u5728\u8df3\u821e\u3002"} +{"id": "5000870", "video_name": "e2bb172d-247c-50cc-80ea-37454a47e6ec", "text": "\u4e00\u4e2a\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u5e7d\u7075\u5f62\u8c61\u5728\u623f\u5b50\u91cc\u4e00\u95ea\u800c\u8fc7\uff0c\u8ba9\u4ed6\u4eec\u6d51\u8eab\u53d1\u6296\u3002"} +{"id": "5000871", "video_name": "3f1f9c38-e3e9-5974-83a2-87fdf9cf962c", "text": "\u4ed6\u6b63\u5728\u4e0e\u5e15\u91d1\u68ee\u75c5\u4f5c\u6597\u4e89\uff0c\u5bfb\u627e\u72ee\u9b03\u83cc\u3002"} +{"id": "5000872", "video_name": "ad8b35c4-8193-5a3e-b15d-0f817aa03729", "text": "\u592a\u9633\u5149\u8292\u7075\u52a8\u5730\u70b9\u7f00\u81ea\u5df1\uff0c\u4e3a\u5b83\u4eec\u4e0b\u964d\u5230\u5730\u7403\u4e0a\u7684\u65c5\u7a0b\u505a\u51c6\u5907\u3002"} +{"id": "5000873", "video_name": "e3067909-e985-52e3-94bd-d7723928f3f9", "text": "\u5b87\u5b99\u4e2d\u7684\u7b2c\u4e00\u4e2a\u4eba\uff0c\u6124\u6012\uff0cF2.8\u3002"} +{"id": "5000874", "video_name": "6fc97496-175e-5bab-8d7c-0cf26bcad150", "text": "\u7535\u5f71\u300a\u95ea\u7075\u300b\u4e2d\u7684\u53cc\u80de\u80ce\u7ad9\u5728\u56de\u5eca\u7684\u5c3d\u5934\uff0c\u4ece\u5185\u90e8\u4fef\u77b0\u9152\u5e97\u3002"} +{"id": "5000875", "video_name": "1e3f0881-3733-59e8-9598-a3f7734c5b51", "text": "\u89e3\u91ca\u8fd9\u4e94\u4e2a\u5143\u7d20\u91d1\u3001\u6728\u3001\u6c34\u3001\u706b\u548c\u571f\u4e4b\u95f4\u7684\u5173\u7cfb\u3002"} +{"id": "5000876", "video_name": "2e240a4b-6754-569c-b3a0-50ba37c3a815", "text": "\u8fd9\u4e2a\u4eba\u6210\u4e3a\u4e86\u52a8\u6f2b\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000877", "video_name": "9a5ae8ed-ec50-5f3a-a199-8f3af99082f7", "text": "\u4e09\u4e2a\u4eba\u5728\u953b\u70bc\uff0c\u4e00\u4e2a\u5728\u8dd1\u6b65\uff0c\u4e00\u4e2a\u5728\u505a\u4fef\u5367\u6491\uff0c\u4e00\u4e2a\u5728\u505a\u7ef3\u7d22\u62bd\u6253\u3002\u8bf7\u5728\u80cc\u666f\u6709\u6d77\u6d0b\u7684\u60c5"} +{"id": "5000878", "video_name": "aed44896-34f5-59d4-9d40-9ac1dc1ffefd", "text": "\u706b\u661f\u63a2\u6d4b\u5668\u89c2\u770b\u706b\u661f\u65e5\u843d\u3002"} +{"id": "5000879", "video_name": "cc83839f-f395-59c8-8f08-cd3583853881", "text": "\u4e00\u4e2a\u7537\u4eba\u8d70\u5411\u6700\u7f8e\u4e3d\u7684\u5973\u5b69\u3002\u4ed6\u8bd5\u56fe\u8868\u8fbe\u81ea\u5df1\u5bf9\u5979\u7684\u611f\u60c5\u3002\u4ed6\u8bd5\u56fe\u6c42\u5a5a\u3002"} +{"id": "5000880", "video_name": "a6a53a27-68c3-5b0b-8656-97be777129c6", "text": "\u52a8\u753b\u8d85\u7ea7\u82f1\u96c4\u5927\u718a\u732b\u7684\u7ad9\u7acb\u5f0f\u8131\u53e3\u79c0\u8282\u76ee\u3002"} +{"id": "5000881", "video_name": "e0b0222d-b096-5b69-84a2-4683b0008a0c", "text": "\u670b\u53cb\u4eec\u5728\u6d77\u6ee9\u4e0a\u6253\u6392\u7403\u3002"} +{"id": "5000882", "video_name": "72cea25a-5920-53a1-b577-2292b2f0054b", "text": "\u521b\u9020\u4e00\u4e2a\u89c6\u9891\uff0c\u4e00\u4e2a\u7537\u4eba\u624b\u6301\u4e13\u4e1a\u76f8\u673a\uff0c\u76f4\u63a5\u5bf9\u51c6\u89c2\u4f17\u3002\u8fd9\u4e2a\u7537\u4eba\u5e94\u8be5\u770b\u8d77\u6765\u4e13\u6ce8\uff0c\u540c\u65f6\u8c03\u6574\u76f8\u673a\u8bbe\u7f6e\u3002\u7a81\u7136\u4e4b\u95f4"} +{"id": "5000883", "video_name": "d7dce4be-ff6b-52d1-a899-4e6c74fc6589", "text": "\u4e00\u53ea\u6d63\u718a\u5728\u4e00\u4e2a\u89c6\u9891\u7f16\u8f91\u684c\u524d\u6df1\u523b\u5730\u9053\u6b49\uff0c\u56e0\u4e3a\u5236\u4f5c\u4e86\u90a3\u4e2a\u624b\u90e8\u89c6\u9891\u3002"} +{"id": "5000884", "video_name": "ed38f9e4-a11c-5bfe-95d9-8b50fe0d3654", "text": "\u76d6\u4f0a\u00b7\u5f6d\u65af\u7279\u6b63\u5728\u4f5c\u4e3a\u7ea2\u961f\u653b\u51fb\u654c\u65b9\u7cfb\u7edf\u3002"} +{"id": "5000885", "video_name": "55ea841a-46d9-573a-b669-a57242e0627e", "text": "\u6bcf\u6b21\u7741\u5f00\u773c\u775b\u90fd\u80fd\u770b\u5230\u4e00\u675f\u767d\u5149\u7684\u4eba\u3002"} +{"id": "5000886", "video_name": "d1ac5623-e38a-5804-a506-e284ab648168", "text": "\u4e00\u4e2a\u7a7f\u8d8a\u5145\u6ee1\u795e\u8bdd\u751f\u7269\u548c\u53e4\u8001\u9057\u8ff9\u7684\u9b54\u6cd5\u68ee\u6797\u7684\u65c5\u7a0b\u3002"} +{"id": "5000887", "video_name": "c70eeac6-70d9-530d-b630-467c7b12b902", "text": "\u808c\u8089\u53d1\u8fbe\u7684\u5065\u8eab\u6559\u7ec3\u7a7f\u7740\u77ed\u725b\u4ed4\u88e4\u5411\u6211\u4eec\u6325\u624b\u3002"} +{"id": "5000888", "video_name": "a932f23c-a852-55cc-b545-49268d899bfc", "text": "\u4e9a\u4f2f\u62c9\u7f55\u00b7\u5229\u5eb7\u9686\u8d70\u5728\u4e00\u6761\u571f\u8def\u4e0a\u3002"} +{"id": "5000889", "video_name": "803cfeb6-757f-5aed-875d-1a7f6e6880f5", "text": "\u5e7b\u60f3\u4e2d\u7684\u5f3a\u5927\u91d1\u9f99\u5bf9\u4e2d\u4e16\u7eaa\u738b\u56fd\u55b7\u706b\u3002"} +{"id": "5000890", "video_name": "08966d75-228e-5fa9-87a8-27e9de7e9057", "text": "\u5e26\u9886\u6211\u8fdb\u5165\u795e\u79d8\u800c\u591a\u5f69\u7684\u4e16\u754c\u3002"} +{"id": "5000891", "video_name": "7b572d7a-09b9-5476-89b9-92d6cb5a35ed", "text": "\u51ac\u5b63\u68ee\u6797\u91cc\u7684\u5723\u8bde\u8282\uff0c\u4e00\u676f\u6c99\u62c9\u7ecf\u5e38\u4f1a\u7528\u811a\u5411\u89c2\u4f17\u8d70\u53bb\u3002"} +{"id": "5000892", "video_name": "9af728b4-090c-5049-92f3-2713fb18ce14", "text": "\u53ef\u7231\u7684\u5c0f\u718a\u732b\u4e3e\u7740\u4e00\u4e2a\u724c\u5b50\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "5000893", "video_name": "0db5c5e2-371b-5be0-9021-b8b18c8fd4a7", "text": "\u4e24\u8258\u6709\u8da3\u7684\u5b87\u5b99\u98de\u8239\u5728\u5929\u7a7a\u4e2d\u98de\u884c\uff0c\u5c31\u50cf\u670b\u53cb\u4e00\u6837\u73a9\u800d\u3002"} +{"id": "5000894", "video_name": "994883a0-f379-5575-9237-913f264876ad", "text": "\u53e4\u5e0c\u814a\u7537\u5b50\u5728\u8bb2\u5802\u4e0a\u8bb2\u8bfe\uff0c\u8fd1\u666f\u3002"} +{"id": "5000895", "video_name": "2b47a44a-a9f9-54b4-811f-a14f13ccbc4a", "text": "\u4f0a\u739b\u76ee\u5728\u548c\u4ed6\u7684\u540c\u4ec1\u4ea4\u8c08\uff0c\u6e05\u771f\u5bfa\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "5000896", "video_name": "8eb266c5-9af7-57c1-9de4-d59bfd240d8f", "text": "\u4e00\u4e2a\u5973\u5b69\u5750\u5728\u5c0f\u5c4b\u524d\u9762\uff0c\u9762\u524d\u6709\u6f02\u6d6e\u5728\u7a7a\u4e2d\u7684\u5927\u7a97\u5e18\u3002"} +{"id": "5000897", "video_name": "dca799ff-8185-5c90-9dd2-c933e5c349b6", "text": "\u4e2d\u4e16\u7eaa\u7684\u57ce\u5821\u548c\u519b\u961f\u5728\u4e00\u5ea7\u6865\u524d\u7b49\u5f85\u3002"} +{"id": "5000898", "video_name": "8b4c54e0-c06d-557c-b42c-eb9124b1beaf", "text": "\u6218\u6597\u673a\u8f70\u70b8\u5efa\u7b51\uff0c\u62c9\u8fdc\u753b\u9762\uff0c\u7535\u5f71\u5316\u7684\u753b\u9762\u3002"} +{"id": "5000899", "video_name": "cbe8a55c-d3b4-588b-b37d-254011d0129b", "text": "\u8759\u8760\u4fa0\u5728\u5370\u5ea6\u4e00\u6761\u62e5\u6324\u7684\u9053\u8def\u4e0a\u548c\u4e94\u6761\u9c7c\u91cc\u7684\u4e94\u689d\u609f\u5bf9\u6218\u3002"} +{"id": "5000900", "video_name": "6992ba2b-bb45-5433-8adb-cee67e0d9b43", "text": "\u56fe\u7247\uff1a64656113.png\uff0c\u65f6\u95f4\u6d41\u901d\u7684\u5973\u5b69\u8df3\u821e\uff0c\u80cc\u666f\u706b\u7130\u52a8\u753b\u3002"} +{"id": "5000901", "video_name": "1f46b5c8-e417-550d-974f-bd1d582fbbb2", "text": "\u4e00\u4e2a\u771f\u5b9e\u7684\u4eba\u7c7b\u811a\u5e95\u7167\u7247\uff0c\u7ea2\u8272\u6307\u7532\u3002"} +{"id": "5000902", "video_name": "1fcb9314-a67a-518a-84fb-8bbdecfeb705", "text": "\u4eba\u4eec\u5728\u6469\u6d1b\u54e5\u6d77\u6ee9\u4f7f\u7528\u84dd\u8272\u6bdb\u5dfe"} +{"id": "5000903", "video_name": "b067d6a1-2b87-53e9-83be-4381aeec9417", "text": "\u4e24\u4e2a\u957f\u7740\u975e\u5e38\u957f\u3001\u6d53\u5bc6\u7684\u7ea2\u8272\u548c\u91d1\u8272\u5934\u53d1\u7684\u5c0f\u5973\u5b69\u5750\u5728\u6905\u5b50\u4e0a\u770b\u4e66\u3002"} +{"id": "5000904", "video_name": "9b19e652-2d60-5392-8266-cb54e30e145b", "text": "\u8389\u8389\u548c\u6770\u514b\u5728\u6e38\u4e50\u573a\u53d1\u73b0\u795e\u79d8\u7684\u6c14\u7403\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761"} +{"id": "5000905", "video_name": "e8e704e2-a766-5125-bf87-7b22b87c0f56", "text": "\u79bb\u5fc3\u6cf5\u5728\u62bd\u6c34\u65b9\u9762\u975e\u5e38\u9ad8\u6548\u3002"} +{"id": "5000906", "video_name": "5ae96f32-5a89-5109-91da-9ba6049f2936", "text": "\u7537\u4eba\u5c55\u793a\u4e50\u9ad8\u4fdd\u65f6\u6377\u8f66\u7684\u6240\u6709\u89d2\u5ea6\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "5000907", "video_name": "66e4abd9-da5b-50ce-83bb-7978b3392963", "text": "\u62c9\u6731\u5750\u5728\u4e00\u68f5\u5927\u800c\u96c4\u4f1f\u7684\u6811\u4e0b\uff0c\u4ef0\u671b\u7740\u3002"} +{"id": "5000908", "video_name": "806051e2-4728-5dda-bc91-e1d6ba2d6b6a", "text": "\u8d1d\u513f\u7279\u4e3d\u514b\u65af\u00b7\u6ce2\u7279\u542f\u53d1\u4e86\u300a\u7231\u4e3d\u4e1d\u68a6\u6e38\u4ed9\u5883\u300b\u4e2d\u7684\u767d\u5154\u3002"} +{"id": "5000909", "video_name": "e3d62613-e4d1-53f7-80c5-d3e195600045", "text": "\u6bd2\u6db2\u7684\u5168\u8eab\u8096\u50cf\uff0c\u53d7\u745e\u5178\u542f\u53d1\uff0c\u52a8\u6001\u7167\u660e\uff0c\u7535\u5f71\u5316\uff0c\u8d85\u8be6\u7ec6\uff0c\u6b63\u5728\u827a\u672f\u7ad9\u6d41\u884c\uff0c\u89c6\u89c9\u60ca"} +{"id": "5000910", "video_name": "b5f3270a-6ec5-5d79-9cb6-88a03dd88995", "text": "\u4e00\u7fa4\u58a8\u897f\u54e5\u4ed3\u9f20\u5728\u6cd5\u56fd\u5357\u90e8\u7684\u6d77\u6ee9\u4e0a\u6f14\u594f\u97f3\u4e50\u3002"} +{"id": "5000911", "video_name": "8b43fecd-ba77-5518-ade2-2260397845fd", "text": "\u5236\u4f5c\u4e00\u6bb516:9\u6bd4\u4f8b\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4efd\u4e2d\u578b\u62ab\u8428\uff0c\u4e0a\u9762\u94fa\u6ee1\u4e86\u5976\u916a\u548c\u610f\u5927\u5229\u8fa3\u9999\u80a0\u7247\uff0c\u6446\u653e"} +{"id": "5000912", "video_name": "382040e5-5f57-5810-9210-a6f4f8e4c449", "text": "Translated sentence: \u6ca1\u6709\u9f3b\u6d95\u6d41\u51fa\u6765\u3002"} +{"id": "5000913", "video_name": "b79f5285-f7ea-5563-bd19-4733ee8a20f9", "text": "\u4e00\u53ea\u732b\u548c\u4e00\u53ea\u72d7\u4e92\u76f8\u8ffd\u9010\u7684\u5361\u901a\u3002"} +{"id": "5000914", "video_name": "a8624dcc-20ab-55f0-9404-b77562a39eec", "text": "\u665a\u4e0a\uff0c\u83ab\u65af\u79d1\u53d1\u751f\u4e86\u4e00\u573a\u6218\u4e89\uff0c\u5766\u514b\u6b63\u5728\u5411\u83ab\u65af\u79d1\u5e02\u5c04\u51fb\u3002"} +{"id": "5000915", "video_name": "bf7d3e6d-6ec0-5b80-aee9-775da3ab8e49", "text": "\u58a8\u98ce\uff0c\u4e2d\u56fd\u9f99\u7ff1\u7fd4\u6cb3\u6d41\u3002"} +{"id": "5000916", "video_name": "0fe3be1f-77ff-5916-ae5e-fee3f8a82101", "text": "\u80cc\u666f\u4e3a\u5c0f\u6728\u5c4b\u548c\u7535\u8bdd\u5854\u4e0a\u7684\u5723\u8bde\u706f\u7684\u51ac\u5b63\u4ed9\u5883\u3002"} +{"id": "5000917", "video_name": "5f4a60a3-30ac-5e93-90dd-5b4350003541", "text": "\u5973\u58eb\u5728\u65e5\u843d\u65f6\u5206\u5728\u6d77\u6ee9\u4e0a\u62bd\u7535\u5b50\u70df\u3002"} +{"id": "5000918", "video_name": "afa3b903-c2b6-54df-a7fb-86d5647ed901", "text": "\u4e00\u4f4d\u5370\u5ea6\u7687\u5bb6\u56fd\u738b\u5750\u5728\u4ed6\u7f8e\u4e3d\u800c\u5de8\u5927\u7684\u5bab\u5ef7\u4e2d\uff0c\u4e0e\u4ed6\u7684\u5927\u81e3\u4eec\u4e00\u8d77\u8fdb\u884c\u65e5\u5e38\u4e8b\u52a1\u3002"} +{"id": "5000919", "video_name": "b16ca52d-366c-5dc0-88fe-d9bb27f2893e", "text": "\u901a\u8fc7\u671b\u8fdc\u955c\u751f\u6210\u4e00\u6bb5\u6708\u7403\u7684\u89c6\u9891\u526a\u8f91\u3002"} +{"id": "5000920", "video_name": "3f191a94-28ed-552a-a941-f2cddf555a8d", "text": "\u6076\u9b54\u5728\u706b\u4e2d\u71c3\u70e7\uff0c\u5728\u5c71\u4e0a\u9a91\u7740\u677f\u5b50\u3002"} +{"id": "5000921", "video_name": "9a5ca259-0f34-5312-ad5a-cbf3f0e26476", "text": "\u4ed6\u548c\u540c\u4e00\u4f4d\u5973\u4eba\u7ed3\u5a5a\u5df2\u7ecf19\u5e74\u4e86\u3002"} +{"id": "5000922", "video_name": "33562ae9-8834-57c1-ab23-fdccdca03c20", "text": "\u8bb8\u591a\u4eba\u7c7b\u9ab8\u9aa8\u6f02\u6d6e\u5728\u53ef\u6015\u7684\u6d77\u4e2d\u30024K\u5f71\u50cf\u3002"} +{"id": "5000923", "video_name": "a91073ed-06dd-5fcc-a2c5-32441bcaa40e", "text": "\u8fd0\u52a8\u7684\u8349\uff0c\u8fd0\u52a8\u7684\u65e5\u51fa\uff0c\u8349\u4e0a\u7684\u9732\u6c34\u3002"} +{"id": "5000924", "video_name": "b636b5de-ca92-5d74-abd7-686c1a42a515", "text": "\u56db\u4e2a\u7537\u4eba\u5750\u5728\u5496\u5561\u5e97\u7684\u684c\u5b50\u65c1\uff0c\u8c08\u8bba\u4e00\u4ef6\u73e0\u5b9d\u3002"} +{"id": "5000925", "video_name": "530ffdf8-2c42-58ee-a22c-7ebfb4a86860", "text": "\u6c89\u6ca1\u5728\u6d77\u5e95\u7684\u65e7\u8239\uff0c\u7535\u5f71\u822c\u76844K\u7ec6\u8282\u3002"} +{"id": "5000926", "video_name": "3606ea0c-ed3b-5fba-a587-c1d5c08e55d4", "text": "\u4e00\u8f86\u660e\u4eae\u7684\u9ec4\u8272\u51fa\u79df\u8f66\u5728\u6c99\u6f20\u4e2d\u884c\u9a76\u3002"} +{"id": "5000927", "video_name": "7c8901d3-082a-504f-955b-c99da4afe682", "text": "\u5d07\u62dc\u7684\u4e09\u535a\u58eb\uff0c14\u4e16\u7eaa\u7684\u6d77\u56e0\u91cc\u5e0c\u00b7\u535a\u65af\uff0c\u4f5b\u5170\u5fb7\u65af\u753b\u5bb6\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u8d85\u903c\u771f\uff0c"} +{"id": "5000928", "video_name": "bbf7c545-d0e1-5278-888c-321bd95440a8", "text": "\u8fea\u58eb\u5c3c\u76ae\u514b\u65af\u98ce\u683c\uff0c\u4e9a\u4f2f\u62c9\u7f55\u8eab\u7a7f\u7070\u888d\uff0c\u767d\u8272\u4e2d\u957f\u53d1\uff0c\u72b9\u592a\u8001\u4eba\uff1b\u8428\u62c9\uff0c"} +{"id": "5000929", "video_name": "8f60ab1b-959d-5d53-bfe3-be82e15b1aa6", "text": "\u96e8\u6ef4\u5728\u788e\u73bb\u7483\u4e0a\uff0c\u4fe1\u606f\uff1aHACKLE\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\uff09\u3002"} +{"id": "5000930", "video_name": "7203f8a4-f874-55c8-b8d5-0e6dd22c2d4c", "text": "\u7c73\u5947\u8001\u9f20\u6253\u6251\u514b\u7684\u7cdf\u7cd5\u753b\u4f5c\u3002"} +{"id": "5000931", "video_name": "b0316f5f-e1d5-5be4-b069-cb17b8d90099", "text": "\u5c55\u793a\u4e00\u540d\u5b66\u751f\u8c08\u8bba\u7edd\u671b\u6216\u8868\u8fbe\u81ea\u6211\u8d1f\u9762\u601d\u60f3\u3002"} +{"id": "5000932", "video_name": "b6b593fa-8769-5873-9157-3dc1f62d9409", "text": "\u53c2\u8d5b\u8005\u5fc5\u987b\u7a7f\u8d8a\u8ff7\u5bab\uff0c\u5176\u4e2d\u5145\u6ee1\u5de8\u5927\u7684\u6c34\u679c\u3002"} +{"id": "5000933", "video_name": "05114fa9-ebda-58b3-8bac-71bc8580b046", "text": "\u53cc\u624b\u62ff\u7740\u9e2d\u86cb\u9ec4\u4e0a\u697c\uff0c\u540c\u65f6\u8fd8\u6709\u56db\u53ea\u9e2d\u5b50\u8ddf\u4e0a\u6765\u4e86\u3002"} +{"id": "5000934", "video_name": "b1e354f3-8efc-5251-99db-10122ba47274", "text": "\u6c99\u6f20\u4e2d\u626d\u66f2\u7740\u7684\u4eba\u5f62\uff0c\u5448\u73b0\u51fa\u8d1d\u6b23\u65af\u57fa\u9ed1\u767d\u7535\u5f71\u822c\u7684\u98ce\u683c\uff0c\u5c31\u50cf20\u4e16\u7eaa\u521d\u3002"} +{"id": "5000935", "video_name": "09b8075b-28a5-51a3-9ecf-aa7d853c39c6", "text": "\u4e00\u5e45\u89c6\u89c9\u4e0a\u5f15\u4eba\u6ce8\u76ee\u7684\u4f5c\u54c1\uff0c\u4ee3\u8868\u4e86\u6691\u5047\u540e\u5f00\u59cb\u65b0\u5b66\u671f\u6240\u5e26\u6765\u7684\u60c5\u611f\uff0c\u7740\u91cd\u4e8e\u6e05\u65b0\u3001\u7115\u53d1\u6d3b\u529b\u548c\u65b0\u7684"} +{"id": "5000936", "video_name": "d6e406c8-33e0-510b-8ab4-65cd4f539388", "text": "\u4e00\u4e2a\u7537\u4eba\u4ee5\u7535\u5f71\u98ce\u683c\u5728\u6708\u7403\u4e0a\u8df3\u8dc3\u3002"} +{"id": "5000937", "video_name": "5ca26073-f31a-5701-85b9-dc1c2c75944c", "text": "\u6770\u745e\u00b7\u585e\u8332\u83f2\u723e\u5fb7\u4f5c\u70ba\u4e00\u540d\u6230\u931840k\u7684\u592a\u7a7a\u6230\u58eb\u3002"} +{"id": "5000938", "video_name": "1f8d352f-cc86-592c-bee8-5896e6a77102", "text": "\u8759\u8760\u4fa0\u5728\u9634\u5f71\u4e2d\u4ee5\u52a8\u753b\u98ce\u683c\u4e0e\u5c0f\u4e11\u4ea4\u8c08\u3002"} +{"id": "5000939", "video_name": "00d77278-f27a-5980-8a99-661d5d1903d9", "text": "\u4e00\u4e2a\u6ed1\u677f\u8fd0\u52a8\u5458\u5728\u6797\u95f4\u7a7f\u68ad\u6ed1\u884c\u3002"} +{"id": "5000940", "video_name": "038716ca-6cf0-5042-aa2e-880098d4f060", "text": "\u5728\u9a6c\u4e18\u6bd4\u4e18\u6709\u4e00\u53ea\u80cc\u7740\u80cc\u5305\u7684\u7c73\u9ec4\u8272\u62c9\u5e03\u62c9\u591a\u72ac\u3002"} +{"id": "5000941", "video_name": "2e56067d-04b5-5192-b1e0-67ec7e563207", "text": "\u706b\u5f71\u5fcd\u8005\u4e2d\uff0c\u6f29\u6da1\u9e23\u4eba\u662f\u4e00\u4e2a\u5f3a\u5927\u7684\u89d2\u8272\u3002"} +{"id": "5000942", "video_name": "71c9d1e9-14b1-5d21-afdc-6ad834cad6b7", "text": "\u8001\u65e7\u7684\u592a\u7a7a\u7ad9\u5728\u7a7a\u6c14\u4e2d\u8f7b\u5fae\u5730\u4e0a\u4e0b\u6d6e\u52a8\uff0c\u4e91\u6735\u4ece\u5de6\u5230\u53f3\u8f7b\u5fae\u5730\u79fb\u52a8\u3002"} +{"id": "5000943", "video_name": "d315f1c8-b6dd-5bac-926f-21ffdd5a7a1c", "text": "\u609f\u7a7a\u8d85\u7ea7\u672c\u6211\u7ad9\u5728\u4e00\u5ea7\u5927\u697c\u4e0a\uff0c\u6709\u5f88\u591a\u98ce\u548c\u96e8\u3002"} +{"id": "5000944", "video_name": "ffb78f21-27e7-5741-b695-d4829626eaec", "text": "\u89c2\u5bdf\u540e\u5929\u5929\u624d\u7efc\u5408\u75c7\u7684\u989c\u8272\u6a21\u5f0f\u3002"} +{"id": "5000945", "video_name": "b35fe8a2-bf27-59fd-954e-af818b1559b8", "text": "\u89c6\u9891\u6e38\u620f\u300a\u5251\u58eb\u300b\u4e2d\u7684\u89d2\u8272\u7ad9\u5728\u7e41\u5fd9\u7684\u90fd\u5e02\u4e2d\u5fc3\uff0c\u4ed6\u7684\u8eab\u5f71\u9c9c\u660e\u5730\u6620\u886c\u5728\u9ad8\u8038\u7684\u6469\u5929\u5927"} +{"id": "5000946", "video_name": "f96df468-fa39-5cc1-8add-0cd6d4327d1d", "text": "\u5236\u4f5c\u4e00\u4e2a\u7f8e\u4e3d\u7684\u65e9\u6668\u56fe\u50cf\u3002"} +{"id": "5000947", "video_name": "0d159d8c-7ffc-5c26-a08f-abfa96191795", "text": "\u4e61\u6751\u91cc\u6709\u4e00\u6761\u957f\u957f\u7684\u6e05\u6f88\u6cb3\u6d41\uff0c\u6cb3\u4e2d\u6e38\u7740\u9c7c\u513f\uff0c\u6cb3\u5cb8\u8fb9\u5f00\u6ee1\u4e86\u7f8e\u4e3d\u7684\u82b1\u3002"} +{"id": "5000948", "video_name": "30c010f2-50b8-52ce-b28a-a7c5a73138ca", "text": "\u5e74\u8f7b\u7537\u5b50\u5728\u4e00\u4e2a\u80a5\u7682\u6ce1\u6ce1\u91cc\u5fae\u7b11\uff0c\u654f\u611f\u7684\u73af\u5883\u3002"} +{"id": "5000949", "video_name": "a7af9122-a0e5-5cc2-93da-f3472e616dba", "text": "\u89c2\u5bdf\u4e24\u53ea\u732b\u56e2\u961f\u5408\u4f5c\u7684\u7334\u5b50\u9762\u5e26\u6ee1\u610f\u7684\u8868\u60c5\u3002"} +{"id": "5000950", "video_name": "cfd763fc-6f48-5cda-bcfc-5557a8c2fa48", "text": "\u4e00\u4e2a\u6234\u7740\u6708\u4eae\u9762\u5177\u5728\u9910\u5385\u91cc\u7684\u4eba\u7684\u62cd\u7acb\u5f97\u7167\u7247\u3002"} +{"id": "5000951", "video_name": "1f5dc3bd-d5f9-52b6-9e15-af45114825f6", "text": "\u5728\u5927\u81ea\u7136\u4e2d\u88ab\u5ca9\u77f3\u548c\u5de8\u77f3\u5305\u56f4\u7684\u5b81\u9759\u9ad8\u5c14\u592b\u7403\u573a\u4e0a\uff0c\u4eba\u4eec\u6253\u9ad8\u5c14\u592b\u7403\u3002\u8d85\u903c\u771f\u3002"} +{"id": "5000952", "video_name": "cfa0bea9-5daf-5a1e-beac-eab5a2ccf4f2", "text": "\u53ef\u7231\u4ed9\u5973\u5728\u7f8e\u4e3d\u7684\u80cc\u666f\u4e2d\u8df3\u821e\u76843D\u6a21\u578b"} +{"id": "5000953", "video_name": "6578a7f4-8e4c-5884-8344-50ce1827b031", "text": "\u4e00\u4e2a\u6234\u7740\u56fd\u738b\u7687\u51a0\u7684\u7537\u5b69\u3002"} +{"id": "5000954", "video_name": "041794ca-02c9-5c57-a543-196ce070548c", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u60c5\u4fa3\uff0c\u838e\u62c9\u548c\u9a6c\u514b\uff0c\u5728\u516c\u56ed\u76f8\u9047\u3002"} +{"id": "5000955", "video_name": "0cecf46e-2235-5493-aced-042e96cd5227", "text": "Cristiano Ronaldo\u8c08\u8bba\u6210\u529f\u548c\u52a8\u529b\u3002"} +{"id": "5000956", "video_name": "3ba0a5f5-fb47-5eb6-937e-f5fc0c58b071", "text": "\u7537\u5b50\u540e\u80cc\u7eb9\u8eab\u8d64\u88f8\u8457\u8d70\u8fdb\u623f\u95f4\uff0c\u64ad\u653e\u7535\u5f71\u97f3\u4e50\uff0c\u8ffd\u8e2a\u62cd\u6444\u548c\u5149\u5f71\u6548\u679c\uff0c\u8bfb\u4e66\u4e8e\u4e00"} +{"id": "5000957", "video_name": "05c83a7b-1d54-592e-924e-670a5db2a69d", "text": "\u4e00\u4f4dYouTuber\u544a\u8bc9\u4ed6\u7684\u89c2\u4f17\u8ba2\u9605\u4ed6\u7684\u9891\u9053\u3002"} +{"id": "5000958", "video_name": "e68f4bb3-86b8-5b62-8921-fc7ac6764554", "text": "\u66fc\u54c8\u987f\u5929\u9645\u7ebf\u548c\u8d85\u7ea7\u5de8\u5927\u7684\u6708\u4eae\u649e\u5165\u6469\u5929\u5927\u697c\u3002"} +{"id": "5000959", "video_name": "0f05df6e-36f1-5075-bebc-1341293c3178", "text": "\u4e00\u4e2a\u5b69\u5b50\u9a91\u5728\u72ee\u5b50\u80cc\u4e0a\uff0c\u5728\u4e1b\u6797\u4e2d\u6f2b\u6e38\uff0c\u800c\u7334\u5b50\u4eec\u5632\u7b11\u4ed6\u3002"} +{"id": "5000960", "video_name": "a503c34a-fa24-5cbd-bec8-f1b3c72c06cf", "text": "\u521b\u9020\u4e00\u4e2a\u795e\u79d8\u68ee\u6797\u7684\u5f62\u8c61\uff0c\u53e4\u8001\u7684\u6811\u6728\u4e0a\u88c5\u9970\u7740\u53d1\u5149\u7684\u7b26\u6587\u3002"} +{"id": "5000961", "video_name": "11ab2aaf-8fe2-5f47-aebd-30d7297019c4", "text": "\u4e00\u4e2a\u6674\u6717\u7684\u65e9\u6668\uff0c\u72d0\u72f8\u5728\u68ee\u6797\u91cc\u8d70\u7740\u4ed6\u5e73\u5e38\u7684\u5c0f\u8def\u3002"} +{"id": "5000962", "video_name": "3c2e06db-5065-56a1-8b89-3df74359fc4d", "text": "\u4e00\u4e2a\u5d29\u6e83\u6d4b\u8bd5\u5047\u4eba\u7684\u60b2\u4f24\u8868\u60c5\uff0c\u8d85\u73b0\u5b9e\u7684\u4e5d\u5341\u5e74\u4ee3\u3002\n\nSource sentence: Can you please pass me the salt?\n\u8bf7\u4f60\u628a\u76d0\u9012\u7ed9\u6211"} +{"id": "5000963", "video_name": "3575b108-d8a0-5cfb-899a-bbbf81bb2c42", "text": "\u7279\u65af\u62c9\u8d5b\u535a\u5361\u8f66\u5728\u62e5\u6324\u7684\u4e1c\u4eac\u8857\u9053\u4e0a\u88ab\u4e11\u964b\u7684\u602a\u517d\u6467\u6bc1\uff0c\u7531\u52a0\u65af\u5e15\u00b7\u8bfa\u57c3"} +{"id": "5000964", "video_name": "86784b57-7511-5a76-b90f-fff504b59749", "text": "\u53ef\u7231\u76842\u5c81\u7537\u5b69\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "5000965", "video_name": "ee58a805-c88a-5cd2-9208-bf635118c6fa", "text": "\u53f0\u7403\uff0c\u4e13\u6ce8\u7684\u5e74\u8f7b\u5973\u5b50\u5728\u4ff1\u4e50\u90e8\u6253\u7403\u3002"} +{"id": "5000966", "video_name": "dd787b26-b4b1-504a-b957-2e81eb4626ea", "text": "\u4e00\u4e2a\u9f13\u624b\u5728\u591c\u5e97\u6f14\u594f\u9f13\u3002"} +{"id": "5000967", "video_name": "e581111f-46ce-5938-956f-8fa4df79fb6c", "text": "\u7f8e\u4e3d\u5973\u5b69\u7a7f\u7740\u77ed\u725b\u4ed4\u88d9\u5750\u5728\u540e\u5ea7\u76848\u6beb\u7c73\u5f55\u50cf\u3002"} +{"id": "5000968", "video_name": "7c994b8c-d687-5cc1-911f-81e37b668eb7", "text": "\u4e00\u7ec4\u6f14\u594f\u540c\u6b65\u4ea4\u54cd\u4e50\u7684\u4e50\u5668\u3002"} +{"id": "5000969", "video_name": "a5658756-e86f-5bb3-bd5a-122f015f9650", "text": "\u5728\u6d74\u5ba4\u7684\u6c34\u7ba1\u91cc\uff0c\u4e00\u4e2a\u73b0\u5b9e\u4e3b\u4e49\u7684\u7535\u5f71\u573a\u666f\u4e2d\uff0c\u4e00\u53ea\u9cb8\u9c7c\u8df3\u51fa\u6c34\u9762\uff0c\u6e85\u8d77\u5de8\u5927\u7684\u6c34\u82b1\u3002"} +{"id": "5000970", "video_name": "f4389541-2085-542c-b73b-f319345faca0", "text": "\u706b\u5f71\u5fcd\u8005\u548c\u4f50\u52a9\u6253\u4e86\u8d77\u6765\uff0c\u706b\u5f71\u5fcd\u8005\u4f7f\u7528\u4e86\u4ed6\u7684\u591a\u4e2a\u5f71\u5206\u8eab\u548c\u87ba\u65cb\u4e38\u653b\u51fb\u4f50\u52a9\uff0c\u4f50\u52a9"} +{"id": "5000971", "video_name": "b28634c9-06be-5c3c-ad2f-3399000c5cd9", "text": "\u4e00\u6bb5\u7f13\u6162\u79fb\u52a8\u7684\u6444\u50cf\u673a\u753b\u9762\uff0c\u62cd\u6444\u5230\u4e00\u7247\u591a\u5f69\u53d1\u5149\u7684\u91d1\u8272\u68ee\u6797\uff0c\u5468\u56f4\u662f\u7f8e\u4e3d\u7684\u7eff\u6811"} +{"id": "5000972", "video_name": "31de8db3-80d9-58b4-b9ef-614be1d8cd4d", "text": "\u8001\u5f0f\u7535\u89c6\u653e\u5728\u652f\u67b6\u4e0a\u64ad\u653e\u65b0\u95fb\u6545\u4e8b\u3002"} +{"id": "5000973", "video_name": "c85ec485-b9c1-5f3e-a8eb-e082a3acecbb", "text": "\u6050\u6016\u7684\u5916\u661f\u4eba\u98de\u8239\u96a7\u9053\u6d1e\u7a74\uff0c\u98ce\u683c\u7c7b\u4f3c\u5409\u683c\u5c14\uff0c\u66f2\u7ebf\u5f62\u72b6\u4e0d\u5e73\u5747\uff0c\u6709\u673a\u7269\uff0c\u6c61"} +{"id": "5000974", "video_name": "487ff00b-2e7a-5ea3-911e-552b291299f8", "text": "\u7f8e\u4e3d\u590d\u53e4\u672a\u6765\u4e3b\u4e49\u98ce\u683c\u7684\u7c89\u8272\u516c\u4e3b\u57ce\u5821\uff0c\u50cf Wes Anderson \u7684\u4f5c\u54c1\u4e00\u6837\uff0c\u9ad8\u6e058K\u3002"} +{"id": "5000975", "video_name": "da54b48b-f709-5205-ab41-c9a23e848c9c", "text": "\u4e00\u5f20\u7eb8\u8239\u5728\u6c34\u9762\u4e0a\u6f02\u6d6e\uff0c\u4e0a\u9762\u662f\u4e00\u4e2a\u624b\u6301\u67aa\u548c\u5251\u7684\u7eb8\u8d28\u6d77\u76d7\uff0c\u4ee5\u5361\u901a\u98ce\u683c\u5448\u73b0\uff0c\u6709\u53e4\u8001"} +{"id": "5000976", "video_name": "1d72f463-75da-5f2d-b2e5-e7cb521fbf68", "text": "\u4e00\u4e2a\u957f\u7740\u5927\u9f3b\u5b50\u7684\u731b\u72b8\u8c61\uff0c\u6301\u7eed\u4e94\u79d2\u949f\u3002"} +{"id": "5000977", "video_name": "813ee2a4-02cb-51b8-a4ce-6be7df4d478d", "text": "\u4e00\u4e2a\u6ee1\u8138\u51f6\u72e0\u773c\u795e\u7684\u7c97\u72b7\u7537\u5b50\u7ad9\u5728\u4e00\u4e2a\u98a4\u6296\u7740\u7684\u5c71\u7f8a\u4e0a\u65b9\uff0c\u4ed6\u7684\u53cc\u624b\u67d3\u6ee1\u4e86"} +{"id": "5000978", "video_name": "2d79f310-5e9b-5fb1-a9ff-60e77e2d328c", "text": "\u6574\u4e2a\u5bb6\u5ead\u6b63\u5728\u5403\u7740\u6708\u997c\uff0c\u6b23\u8d4f\u7740\u5706\u5706\u7684\u6708\u4eae\u3002"} +{"id": "5000979", "video_name": "87b910a4-3c83-53de-8506-c40e88d94177", "text": "\u4e00\u4e2a\u7b80\u5355\u7684\u4e09\u7ef4\u9aa8\u67b6\u5411\u4f17\u591a\u4eba\u7fa4\u6254\u7eb8\u98de\u673a\uff0c\u4ee5\u5c55\u793a\u7f29\u653e\u53bb\u566a\u529b\u91cf\u3002"} +{"id": "5000980", "video_name": "22099a0c-3dac-5c13-a3ff-7fc199cee0d6", "text": "\u4e00\u4e2a\u8304\u5b50\uff0c\u4ece\u5929\u7a7a\u4e2d\u5760\u843d"} +{"id": "5000981", "video_name": "797349a3-b117-5b11-8146-429b6738b7fa", "text": "\u5404\u79cd\u751f\u6d3b\u60c5\u5883\u7684\u526a\u8f91 - \u804c\u4e1a\u3001\u4eba\u9645\u5173\u7cfb\u3001\u5065\u5eb7\u548c\u4e2a\u4eba\u6210\u957f\u3002"} +{"id": "5000982", "video_name": "ada48659-a068-50eb-bd0c-03b4c0e7882b", "text": "Oona Puffin\uff08\u6765\u81eaPuffin Rock\uff09\u5728\u73b0\u5b9e\u751f\u6d3b\u4e2d\u7684\u6837\u5b50\n\nSource sentence: I am going to the store to buy some groceries. \n\u6211\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "5000983", "video_name": "2a849bd7-0dcf-536b-8a4f-b97b037be8a8", "text": "\u5728\u6e05\u6668\u7684Valoria\u68ee\u6797\u4e2d\u8bbe\u5b9a\u573a\u666f\u3002\u9633\u5149\u900f\u8fc7\u6811\u6728\u8fc7\u6ee4\uff0c\u6295\u5c04\u51fa\u6591\u9a73\u7684\u9634\u5f71\u5728\u68ee\u6797\u5730\u9762\u4e0a"} +{"id": "5000984", "video_name": "4bb88932-ed1c-5c34-b439-44f1d0d1f03e", "text": "\u5c0f\u732b\u54aa\u4ee5\u52a8\u6f2b\u98ce\u683c\u8d70\u8fc7\u7a97\u6237\u3002"} +{"id": "5000985", "video_name": "f70180d9-4dc8-5966-bb6f-ed490d5d7000", "text": "war.\n\n199X\u5e74\uff0c\u4e16\u754c\u88ab\u6838\u6218\u4e89\u6240\u541e\u566c\u3002\n\nSource sentence: The cat is sleeping on the couch.\n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "5000986", "video_name": "b0769809-5618-5292-8067-042d6f21f52b", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u7537\u5b69\u5728\u4e00\u4e2a\u5927\u82b1\u56ed\u91cc\u54ed\u6ce3\uff0c\u4e0b\u7740\u96e8\u3002"} +{"id": "5000987", "video_name": "7a30e66c-5591-52a3-826e-b9476106763a", "text": "\u5236\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u5305\u62ec\u7985\u5b97\u77f3\u3001\u7af9\u5236\u55b7\u6cc9\u3001\u7c89\u8272\u6c34\u7597\u8721\u70db\u3001\u82b1\u6735\u548c\u5468\u56f4\u7684\u6c34\uff0c\u4f7f\u7528"} +{"id": "5000988", "video_name": "8133974b-f75b-5245-b98d-1733201f7f46", "text": "\u4e00\u53ea\u68d5\u8272\u7684\u5154\u5b50\u8df3\u8fc7\u7bf1\u7b06\u843d\u5165\u4e86\u4e00\u4e2a\u7f8e\u4e3d\u7684\u82b1\u56ed\u3002"} +{"id": "5000989", "video_name": "66861bb9-56e3-562f-b114-6a0834cefa5d", "text": "\u795e\u79d8\u7684\u9b54\u9b3c\u5973\u4e3b\u4eba\u4ece\u7c89\u7ea2\u8272\u548c\u9ed1\u8272\u7684\u70df\u96fe\u4e2d\u51fa\u73b0\uff0c\u4e1b\u6797\u666f\u8272\uff0c\u5de5\u4f5c\u5ba4\uff0c\u7535\u5f71\u822c\u7684"} +{"id": "5000990", "video_name": "e718e8c3-55b2-5018-88e7-3f66114b6650", "text": "\u4eba\u4eec\u5728\u9ea6\u5f53\u52b3\u6559\u5802\u91cc\u7977\u544a\u7f57\u7eb3\u5fb7\u00b7\u9ea6\u5f53\u52b3\u7684\u96d5\u50cf\u3002"} +{"id": "5000991", "video_name": "96cdf915-34d4-540f-9076-151c334893b0", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u62ff\u7740\u4e00\u628a\u67aa\u5728\u6811\u4e0b\u5403\u8461\u8404\uff0c3D\u52a8\u753b\uff0c\u9ad8\u54c1\u8d28\u3002"} +{"id": "5000992", "video_name": "b64f8046-696c-56d3-9bd6-82c133576636", "text": "\u6bd4\u8389\u00b7\u827e\u5229\u4ec0\u5728\u9ed1\u6697\u623f\u95f4\u4e2d\u9762\u5411\u6444\u50cf\u673a\uff0c\u9ad8\u8d28\u91cf\u7684\u7535\u5f71\u8096\u50cf\u7279\u5199\u3002"} +{"id": "5000993", "video_name": "020b63c3-81a9-5095-b208-4d6564a7d14d", "text": "\u6708\u5149\u7167\u8000\u7740\u5e9f\u5f03\u7684\u5927\u53a6\uff0c\u4f7f\u5176\u758f\u4e8e\u7167\u987e\u7684\u5916\u89c2\u6563\u53d1\u51fa\u4e00\u79cd\u8be1\u5f02\u7684\u5149\u8292\u3002"} +{"id": "5000994", "video_name": "8d87034e-0cc2-5d37-94f1-8647dbfcc9fd", "text": "\u514b\u62c9\u6258\u65af\u548c\u4ed6\u7684\u513f\u5b50\u4e9a\u7279\u9c81\u65af\u5728\u4e00\u4e2a\u9ed1\u6697\u800c\u5371\u9669\u7684\u4e16\u754c\u4e2d\uff0c\u5728\u7bdd\u706b\u65c1\u5206\u4eab\u7740\u6e29\u99a8"} +{"id": "5000995", "video_name": "5c016200-647a-58c4-9b22-ebf87cc0018b", "text": "\u4e00\u4e2a\u96fe\u8499\u8499\u7684\u665a\u4e0a\uff0c\u8b66\u63a2\u4f0a\u592b\u6797\u00b7\u54c8\u73c0\u5728\u9e26\u6797\u8b66\u5bdf\u5c40\u6536\u5230\u4e86\u4e00\u5c01\u533f\u540d\u4fe1\u3002"} +{"id": "5000996", "video_name": "09ad1c22-1e31-52ed-971d-b20b9223bb07", "text": "\u7537\u5b50\u5728\u533b\u9662\u5e8a\u4e0a\u9192\u6765\u3002"} +{"id": "5000997", "video_name": "c905e942-2146-584e-936e-74ee7ef33707", "text": "\u57ce\u5e02\u9644\u8fd1\u7684\u8b66\u5bdf\u7ad9\u5728\u4ed6\u4eec\u7684\u8b66\u5c40\u524d\u3002 (Ch\u00e9ngsh\u00ec f\u00f9j\u00ecn de j\u01d0ngch\u00e1 zh\u00e0n z\u00e0i t\u0101men de j\u01d0ng"} +{"id": "5000998", "video_name": "4f29bb26-6604-5ab2-92a3-6597080c4aa6", "text": "\u90a3\u4e2a\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u5973\u5b69\u6b63\u5728\u5916\u592a\u7a7a\u4e2d\u98de\u884c\uff0c\u5979\u770b\u5230\u4e86\u661f\u661f\u548c\u884c\u661f\u3002"} +{"id": "5000999", "video_name": "162a84ae-f9a9-56f2-a817-daead1d4da40", "text": "\u7687\u51a0\u7ef4\u591a\u5229\u4e9a1986\u5e74\u798f\u7279\u8f66\u578b\u5168\u65b0\uff0c\u5c3d\u53ef\u80fd\u5b8c\u7f8e\uff0c\u66f4\u591a\u7ec6\u8282\u3002"} +{"id": "7000000", "video_name": "eac455fe-e9f3-5019-bb26-89f55ecc060f", "text": "\u897f\u98ce\u5728\u6708\u4eae\u5468\u56f4\u65cb\u8f6c\uff0c\u968f\u7740\u5b83\u4eec\u5b8c\u7f8e\u7684\u548c\u8c10\u8fd0\u52a8\uff0c\u521b\u9020\u51fa\u4e00\u573a\u6708\u5149\u9b54\u6cd5\u7684\u821e\u8e48\u3002"} +{"id": "7000001", "video_name": "da4299d4-9e01-597f-bf99-0fe47a4d3fc7", "text": "\u4e00\u4e2a\u65e0\u7f1d\u5faa\u73af\u7684\u80cc\u666f\uff0c\u63cf\u7ed8\u7740\u4e00\u4e2a\u53e4\u602a\u7684\u9b54\u6cd5\u68ee\u6797\uff0c\u67d4\u548c\u7684\u7c89\u5f69\u8272\u8c03\u9002\u5408\u8425\u9020"} +{"id": "7000002", "video_name": "b42dce21-33ca-5c62-a0eb-43e98f5f2b0d", "text": "\u6570\u5b57\u7ee7\u7eed\u8d70\u8def\uff0c\u7136\u540e\u6d88\u5931\u4e86\u3002"} +{"id": "7000003", "video_name": "8c46b86e-4260-593a-94e1-39af47bcae8d", "text": "\u7f57\u9a6c\u5e1d\u56fd\u5728\u540e\u4eba\u5de5\u667a\u80fd\u4e16\u754c\u4e2d\u7684\u672a\u6765\u590d\u53e4\u5e74\u4ee3\u7684\u73b0\u5b9e\u4e3b\u4e49\u7535\u5f71\u3002"} +{"id": "7000004", "video_name": "a907b0c7-fa9a-5206-86f3-3c5962b2e37e", "text": "\u6a62\u5713\u5f62\u7684\u81c9\uff0c\u5927\u773c\u775b\uff0c\u7d30\u8170\u7684\u6210\u5e74\u7537\u5b50\u3002"} +{"id": "7000005", "video_name": "a896fcd0-b6d5-5bc7-9f9d-5529d72e5416", "text": "\u7535\u5f71\u4e2d\u6dcb\u6d74\u55b7\u5934\u7684\u620f\u666f\uff0c\u6c34\u505c\u6d41\u4e86\u3002"} +{"id": "7000006", "video_name": "6126f38c-bf66-5765-8ba6-60c011ff5cca", "text": "\u6b7b\u795e\u53ef\u4ee5\u7528\u624b\u793a\u610f\u95ee\u5019\u3002"} +{"id": "7000007", "video_name": "4dc6c7d7-6efa-5303-8158-d4ed1fe29547", "text": "\u4e00\u500b\u751f\u6c23\u7684\u8056\u8a95\u8001\u4eba\u62b1\u8457\u4e00\u500b\u5c0f\u5973\u5b69\u5954\u8dd1\u3002"} +{"id": "7000008", "video_name": "dc9ec65f-4276-5c97-8e3e-b181084c0fde", "text": "\u84b8\u6c7d\u670b\u514b\u7f8e\u5b66\u4e0e\u6a21\u62df\u8ba1\u7b97\u5de5\u4ef6\u878d\u5408\uff0c\u5c06\u5e15\u9732\u8482\u5a1c\u5973\u58eb\u6295\u5c04\u4e3a\u4e00\u4e2a\u5728\u975e\u51e1\u4e16\u754c\u4e2d"} +{"id": "7000009", "video_name": "82e45b1f-550b-55c4-9a52-145dc0e3ef7a", "text": "\u6708\u8272\u4e0b\u7684\u5b81\u9759\u666f\u8272\uff0c\u718a\u88ab\u91ce\u9910\u5305\u56f4\u3002"} +{"id": "7000010", "video_name": "6c3769c0-bd2b-57d7-9d2e-4d21ee58e01a", "text": "\u4e00\u53ea\u5669\u68a6\u822c\u7684\u602a\u7269\uff0c\u80cc\u5149\u4e0b\u7ad9\u5728\u5367\u5ba4\u8863\u67dc\u7684\u9ed1\u6697\u95e8\u53e3\uff0c\u4f7f\u7528\u9ad8\u5ea6\u8be6\u7ec6\u3001\u903c\u771f\u7684\u5e7f\u89d2"} +{"id": "7000011", "video_name": "eec66173-3c75-59eb-b01e-aaef0b299530", "text": "\u94c1\u5e01\u98de\u8d77\u6765\uff0c\u7136\u540e\u7838\u5728\u4e86\u7ebd\u7ea6\u8857\u9053\u4e0a\u7684\u4eba\u5b54\u76d6\u4e0a\u3002"} +{"id": "7000012", "video_name": "f0ddde1b-d23e-5ea6-9bb2-a07531103c1c", "text": "\u8857\u4e0a\u4eba\u6765\u4eba\u5f80\u3002"} +{"id": "7000013", "video_name": "6119aad0-3c1f-5d0f-ab35-599c8ed39e53", "text": "\u5496\u5561\u676f\u4e2d\u7684\u5496\u5561\u88ab\u5012\u51fa\u6765\u4e86\u3002"} +{"id": "7000014", "video_name": "00033155-15a4-5dff-a9b9-6481dde11f03", "text": "\u5728\u6444\u50cf\u673a\u524d\uff0c\u7a7f\u7740\u7f00\u6ee1\u4eae\u7247\u7684\u4f20\u7edf\u670d\u88c5\u8df3\u821e\u7684\u5973\u6027\uff0c\u5728\u58a8\u897f\u54e5\u65b0\u83b1\u6602\u738b\u56fd\u5c55\u73b0\u771f\u5b9e\u7684"} +{"id": "7000015", "video_name": "d8e47152-69f9-55a6-ab88-c87c9e7470b8", "text": "\u4e16\u754c\u672b\u65e5\u7684\u672a\u6765\u9884\u6d4b"} +{"id": "7000016", "video_name": "bcce49bf-f7f2-5bce-9b19-4ac49c4e1d0a", "text": "\u4e00\u4e2a\u660e\u4eae\u3001\u5feb\u4e50\u7684\u5973\u5b69\uff0c\u56e0\u4e3a\u5979\u6b22\u5feb\u7684\u5149\u8292\u7167\u4eae\u4e86\u591c\u7a7a\u800c\u51fa\u540d\u3002"} +{"id": "7000017", "video_name": "42609709-c0ea-50a3-9d98-e2e7acfa5b60", "text": "\u4e9a\u9a6c\u900a\u96e8\u6797\u5b55\u80b2 VADIM\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000018", "video_name": "414933d2-c06f-5426-a6fb-e229eef99eab", "text": "\u7f57\u9a6c\u58eb\u5175\u5728\u4e9a\u9a6c\u900a\u96e8\u6797\u4e2d\u3002\u8d85\u5199\u5b9e\u4e3b\u4e49\u3002"} +{"id": "7000019", "video_name": "c2ff8b8c-9341-5f56-9a7e-c28e3c1fdf34", "text": "\u4e24\u4e2a\u4eba\u6ce8\u89c6\u7740\u955c\u5934\uff0c\u6000\u65e7\u7684\u7f8e\u5b66\uff0c\u8eab\u5904\u73ab\u7470\u82b1\u56ed\uff0c\u5fe7\u90c1\u7684\u60c5\u7eea\uff0c\u767d\u7699\u5982\u74f7\u7684"} +{"id": "7000020", "video_name": "01623a4f-ba2b-506b-af9e-0c3b0d94976d", "text": "\u6c34\u679c\u8df3\u6765\u8df3\u53bb\u3002"} +{"id": "7000021", "video_name": "7f2fec22-6b17-5fca-b130-790a524143a6", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u5979\u795e\u79d8\u7684\u82b1\u56ed\u91cc\uff0c\u84dd\u8272\u706f\u5149\u3002"} +{"id": "7000022", "video_name": "a6d2edd3-2365-566d-a4cb-ec4b27151801", "text": "\u4ecd\u7136\u751f\u52a8\u5730\u5c55\u793a\u7740\u6c34\u679c\u548c\u852c\u83dc\uff0c\u4ee5\u65af\u5766\u5229\u00b7\u5e93\u5e03\u91cc\u514b\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7000023", "video_name": "bed1b635-1142-5988-803d-b1a3869e36d6", "text": "\u7518\u9053\u592b\u6234\u7740\u58a8\u955c\uff0c\u624b\u63e1\u571f\u8c46\uff0c\u548c\u7c73\u57fa\u00b7\u5f17\u62c9\u7eb3\u6839\u8df3\u821e\u3002"} +{"id": "7000024", "video_name": "14a84f43-6602-519e-81c4-dc7714272135", "text": "\u6c7d\u8f66\u649e\u6bc1\u5e76\u7206\u70b8\uff0c\u6c7d\u8f66\u7206\u70b8\uff0c\u6d53\u70df\u548c\u706b\u7130\uff0c\u706b\u82b1\u9897\u7c92\uff0c\u52a8\u4f5c\u7535\u5f71\u573a\u666f\u3002"} +{"id": "7000025", "video_name": "0f376902-6696-5801-b20d-9f85e8a0afd7", "text": "\u5f53\u89d2\u8272\u63a2\u7d22\u90a3\u5ea7\u5927\u53a6\u65f6\uff0c\u5947\u602a\u7684\u4e8b\u4ef6\u53d8\u5f97\u66f4\u52a0\u5f3a\u70c8\u2014\u2014\u6050\u6016\u7684\u4f4e\u8bed\u3001\u65e0\u6cd5\u89e3\u91ca\u7684\u811a\u6b65\u58f0"} +{"id": "7000026", "video_name": "911b90df-be4f-5c87-acb0-864a3cb8494c", "text": "\u4e00\u53ea\u4e4c\u9e26\u5728\u708e\u70ed\u7684\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "7000027", "video_name": "80e43853-1651-55f2-82d1-465805da4de7", "text": "\u7537\u4eba\u5728\u5927\u8c46\u7530\u91cc\u5de5\u4f5c\uff0c\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "7000028", "video_name": "9e5b5fd2-1a1a-5ee0-acab-8d3dfd0b778c", "text": "\u7ae0\u9c7c\u4ecd\u7136\u6d3b\u7740\u5750\u5728\u4e00\u628a\u6905\u5b50\u4e0a\uff0c\u662f\u9ed1\u767d\u8272\u7684\uff0c\u8d85\u5199\u5b9e\u7684\u3002"} +{"id": "7000029", "video_name": "8b6ee3d2-5a78-52a5-bc69-c907d6817bf0", "text": "\u4e00\u67b6\u98de\u673a\u7f13\u6162\u52a0\u901f\uff0c\u4ece\u8dd1\u9053\u8d77\u98de\u3002"} +{"id": "7000030", "video_name": "efd50e05-517c-5b51-8ba0-aa03c6f40424", "text": "\u5c0f\u516c\u4e3b\u5728\u738b\u56fd\u6545\u4e8b\u4e2d\u3002"} +{"id": "7000031", "video_name": "641c29b1-db1c-56b6-85e1-97e02703b298", "text": "\u8fea\u58eb\u5c3c\u96ea\u4eba\u6545\u4e8b3D\u5236\u4f5c\u6b63\u5728\u8fdb\u884c\u4e2d\u3002"} +{"id": "7000032", "video_name": "3c3005d7-8d10-55e0-9ac1-f3152cc31770", "text": "\u592a\u9633\u53d8\u6210\u7ea2\u5de8\u661f\u7136\u540e\u53d8\u6210\u767d\u77ee\u661f\uff0c\u65f6\u95f4\u6d41\u901d"} +{"id": "7000033", "video_name": "3dbf6980-3fc1-545f-9f7c-6f497e6579f4", "text": "\u73b0\u4ee3\u706b\u7bad\u4ece\u53d1\u5c04\u53f0\u8d77\u98de\u3002"} +{"id": "7000034", "video_name": "caca722e-d3ff-5571-9a74-66d07fc8b236", "text": "\u5730\u4e0b\u7684\u79d8\u5bc6\u5165\u53e3\u901a\u5f8051\u533a\u3002"} +{"id": "7000035", "video_name": "234a3af5-15e0-5efe-ab96-ac931a05dae7", "text": "\u6545\u4e8b\u7684\u5bd3\u610f\u662f\uff0c\u5916\u8868\u7f8e\u4e3d\u867d\u597d\uff0c\u5185\u5728\u7684\u7f8e\u5fb7\u3001\u5584\u826f\u548c\u8c26\u900a\u624d\u66f4\u6709\u4ef7\u503c\uff0c\u66f4\u52a0\u6301\u4e45\u3002"} +{"id": "7000036", "video_name": "5bfed768-bc9f-5d85-974d-d9ae7d677dca", "text": "\u4e00\u53ea\u5c0f\u677e\u9f20\u5728\u68ee\u6797\u91cc\u62ff\u7740\u4e00\u9897\u575a\u679c\uff0c\u52a8\u6001\u63d2\u753b\u3002"} +{"id": "7000037", "video_name": "f4eba1df-ab08-5210-9333-ceaf4a089d1a", "text": "\u521b\u4f5c\u4e00\u90e8\u89c6\u89c9\u60ca\u8273\u76843D\u52a8\u753b\uff0c\u63cf\u7ed82150\u5e74\u7684\u672a\u6765\u4e16\u754c\u3002\u5c55\u793a\u4e00\u4e2a\u88ab\u5206\u4e3a\u7b49\u7ea7\u7684\u672a\u6765\u4e16\u754c\uff0c\u62e5"} +{"id": "7000038", "video_name": "91d1f1f1-0fc2-5b8b-b913-494d5cab5415", "text": "\u5e06\u8239\u5728\u571f\u8033\u5176\u6d77\u57df\u4e2d\u822a\u884c\uff0c\u957f\u89c6\u98914k\uff0c\u50cf\u771f\u5b9e\u7684\u5782\u76f4\u65b9\u5411\u3002"} +{"id": "7000039", "video_name": "1f98d03f-5cb3-5290-9c74-0651eef163a3", "text": "\u4e00\u4e2a\u548c\u5c1a\uff0c\u767b\u4e0a\u5c71\u9876\uff0c\u96ea\u666f\u73af\u7ed5\uff0c4K\u771f\u5b9e\u753b\u9762\u3002"} +{"id": "7000040", "video_name": "7afe039d-75aa-553c-a3c1-8d053c9fa953", "text": "\u9633\u5149\u660e\u5a9a\u7684\u6d77\u6ee9\u4e0a\u6709\u4e00\u4e2a\u53ef\u7231\u7684\u83e0\u841d\u3002"} +{"id": "7000041", "video_name": "5e096d37-debf-5064-8fc1-9663831cd29b", "text": "\u6751\u5e84\u4ecb\u7ecd: \u62cd\u6444\u5230\u5bb6\u5ead\u65e5\u5e38\u751f\u6d3b\uff0c\u5b69\u5b50\u73a9\u800d\uff0c\u8001\u52a0\u6cb9\u7ad9\u4f5c\u4e3a\u80cc\u666f\u3002"} +{"id": "7000042", "video_name": "dbd76d72-9f62-5d0e-81bc-e04eff7f03dc", "text": "\u661f\u9645\u5feb\u8f66\n\u6df1\u7a7a\u4e2d\n\u771f\u6b63\u7684\u5f15\u64ce"} +{"id": "7000043", "video_name": "e4db7a44-be1d-5066-8689-cd397c170fd6", "text": "\u6d88\u9632\u8f66\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u884c\u9a76\u5728\u8857\u9053\u4e0a\u3002"} +{"id": "7000044", "video_name": "31699398-3280-575a-ae31-524ade982bc7", "text": "\u4e4c\u514b\u5170\u6e34\u671b\u4e0e\u6b27\u6d32\u5bf9\u9f50\uff0c\u4fc3\u8fdb\u5408\u4f5c\u548c\u5171\u540c\u4ef7\u503c\u89c2\uff0c\u800c\u4fc4\u7f57\u65af\u5219\u5bfb\u6c42\u589e\u52a0\u5bf9\u90bb\u56fd"} +{"id": "7000045", "video_name": "e14c7f02-d27b-5d5f-af8f-8c682662983d", "text": "\u9e1f\u5728\u7a7a\u4e2d\u98de\u7fd4\uff0c\u673a\u5668\u4eba\u5728\u7a7a\u4e2d\u6218\u6597\uff0c\u653e\u5927\uff0c4K\u3002"} +{"id": "7000046", "video_name": "08757226-da08-5066-b52a-1b541b86de5f", "text": "\u5f53\u5730\u5e73\u7ebf\u63a5\u8fd1\u91cf\u5b50\u865a\u7a7a\u65f6\uff0c\u8b66\u62a5\u54cd\u8d77\uff0c\u673a\u7ec4\u6210\u5458\u611f\u5230\u4e00\u79cd\u5947\u602a\u7684\u9707\u52a8\u3002"} +{"id": "7000047", "video_name": "f390948b-09a7-5851-8422-dbe46fd6b6c3", "text": "\u96e8\u4e2d\u7ad9\u7740\u7684\u5973\u4eba\uff0c\u5934\u53d1\u88ab\u98ce\u5439\u52a8\u3002"} +{"id": "7000048", "video_name": "297acfaa-4c4a-5d2e-87fa-fa94b0f68bc1", "text": "\u4e00\u4e2a\u6d3b\u6cfc\u7684\u5e74\u8f7b\u7537\u5b69\u30023D\u9ad8\u6e05\u8fea\u58eb\u5c3c\u3002"} +{"id": "7000049", "video_name": "608d0345-8021-530a-aa31-5adc9d0c754c", "text": "\u7528\u72ee\u5b50\u3001\u7334\u5b50\u548c\u5927\u8c61\u79cd\u4e0b\u795e\u5947\u7684\u91d1\u8272\u79cd\u5b50\uff0c\u8ba9\u4e1b\u6797\u76db\u5f00\u6210\u4ee4\u4eba\u60ca\u53f9\u7684\u5929\u5802\uff0c\u6765\u5c55\u793a"} +{"id": "7000050", "video_name": "78017f74-88c2-51a1-a539-80a8eb0e1522", "text": "\u88ab\u690d\u88ab\u8986\u76d6\u7684\u5de8\u5927\u5c71\u8109\u548c\u9ad8\u8038\u7684\u51a0\u5c42\u6811\u6728\uff0c\u4f3c\u4e4e\u5f62\u6210\u4e86\u4e00\u5c42\u539a\u539a\u7684\u7eff\u8272"} +{"id": "7000051", "video_name": "83f065db-7a61-58ab-ba52-eb4a6b883190", "text": "\u9e7f\u7684\u5934\u5de6\u53f3\u6447\u6643\u3002"} +{"id": "7000052", "video_name": "6891535a-3da6-5441-be6e-a915212a89f5", "text": "\u4e34\u754c\u7a7a\u95f4\uff0c\u7231\u7684\u68a6\uff0c\u88ab\u9057\u5fd8\u7684\u56de\u5fc6\u3002"} +{"id": "7000053", "video_name": "997cedb2-69eb-5c69-b66c-8c216f5a0476", "text": "\u4e00\u4e2a\u5e26\u9762\u5177\u5fae\u7b11\u7684\u4e07\u5723\u8282\u5154\u5b50"} +{"id": "7000054", "video_name": "9352de03-d237-5c27-9db0-cb3098f35d7a", "text": "\u533b\u751f\u5728\u4e00\u5bb6\u65e7\u533b\u9662\u8fdb\u884c\u5c38\u68c0\u3002"} +{"id": "7000055", "video_name": "99081d13-ffc7-5e2e-af3b-afe00fb042eb", "text": "\u4e00\u4e2a\u5973\u5b69\u548c\u5979\u7684\u4e09\u4e2a\u670b\u53cb\u4eec"} +{"id": "7000056", "video_name": "9bc287da-054b-540a-a2de-de7069e6ee69", "text": "\u5de8\u5927\u7684\u5916\u661f\u6c34\u65cf\u9986\u9c7c\u548c\u7c89\u8272\u73ca\u745a\u7901\u3002"} +{"id": "7000057", "video_name": "77108c73-5591-552e-af09-353c765f4cb4", "text": "\u547c\u5438\u7684\u5973\u5b69\uff0c\u559d\u7740\u70ed\u5496\u5561\uff0c\u95ed\u4e0a\u773c\u775b\u53c8\u7741\u5f00\u3002"} +{"id": "7000058", "video_name": "2aff39f1-d8b3-5136-8ace-5fb04ec0c4bb", "text": "\u7eff\u8272\u80cc\u666f\u4e0a\u6709\u4e00\u5706\u5f62\u76f8\u6846\uff0c\u5468\u56f4\u88ab\u706b\u7130\u7fc5\u8180\u73af\u7ed5\u3002"} +{"id": "7000059", "video_name": "bd237eeb-127c-546d-aff5-19afb9a904f9", "text": "\u8d3e\u5b89\u00b7\u6d1b\u4f26\u4f50\u00b7\u8d1d\u5c3c\u5c3c\u521b\u4f5c\u7684\u96d5\u5851\uff1a\u56fd\u738b\u5728\u5927\u5385\u8df3\u821e\u7684\u52a8\u6001\u5c55\u793a\u3002"} +{"id": "7000060", "video_name": "31b653b0-117f-5259-b0ea-b671194b3c02", "text": "\u963f\u514b\u5df4\u7528\u771f\u6b63\u7684\u5956\u8d4f\u5956\u52b1\u4e86\u90a3\u4e2a\u8bda\u5b9e\u7684\u4eba\u3002"} +{"id": "7000061", "video_name": "61896207-446f-5655-bc6b-cb16b771dadb", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5f62\u8c61\u6765\u8bb2\u8ff0\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "7000062", "video_name": "b1c9e76a-8e81-532e-91fa-040c68c75092", "text": "\u5341\u79d2\u957f\u7684\u89c6\u9891\uff0c\u5728YouTube\u4e0a\u80fd\u591f\u4f20\u64ad\u5f00\u3002"} +{"id": "7000063", "video_name": "6ea92178-2178-5238-965e-938baf297c06", "text": "\u4e00\u53ea\u9e21\u5728\u6d77\u6ee9\u65e5\u843d\u65f6\u653e\u677e\u8eab\u5fc3\u3002"} +{"id": "7000064", "video_name": "073ccc14-25c7-5abe-a8cd-acd21e2df401", "text": "\u4ed6\u9047\u5230\u4e86\u5f88\u591a\u4eba\uff0c\u4f46\u4ece\u6765\u6ca1\u6709\u4ea4\u5230\u771f\u6b63\u7684\u670b\u53cb\u3002"} +{"id": "7000065", "video_name": "99d64fce-1799-503f-a08e-a1daa9153f33", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5370\u5ea6\u95e8\u9644\u8fd1\u7b49\u5f85\uff0c\u5728\u591c\u665a\u89c2\u770b\u771f\u5b9e\u7684\u89c6\u9891\u3002"} +{"id": "7000066", "video_name": "323baf9f-6061-5248-b362-2d1cb008ab2d", "text": "\u5728\u708e\u70ed\u7684\u590f\u5929\u4ece\u6d77\u91cc\u51fa\u6765\u7684\u5973\u5b69"} +{"id": "7000067", "video_name": "e3415512-b3e6-55b6-a7d9-830415ceb27a", "text": "\u4e00\u540d\u5973\u5b50\u9a91\u7740\u6469\u6258\u8f66\u4ece\u6444\u50cf\u673a\u4f4d\u7f6e\u98de\u9a70\u800c\u8fc7\u3002"} +{"id": "7000068", "video_name": "d7ece5da-d544-5e81-9485-1dce798d8536", "text": "\u4e00\u4e2a\u5c0f\u9547\u4e0a\u7684\u4e61\u6751\u6559\u5802"} +{"id": "7000069", "video_name": "71a334e9-677a-55bf-a4d1-f4cbf1dd5bce", "text": "\u9ed1\u6697\u6050\u6016\u7535\u5f71\u4e2d\uff0cA24\u5de5\u4f5c\u5ba4\u7684\u6811\u7740\u706b\u4e86\u3002"} +{"id": "7000070", "video_name": "7732907e-c0e3-5e80-aef1-69b4be5801d4", "text": "\u4e00\u4e2a\u5bcc\u6709\u7684\u4eba\u5728\u91d1\u94b1\u4e2d\u6e38\u6cf3\u3002"} +{"id": "7000071", "video_name": "d830ae74-2279-5f39-ba10-63ede6adcb19", "text": "\u4e00\u4e2a6\u5c81\u7537\u5b69\u6362\u5c3f\u5e03\u3002"} +{"id": "7000072", "video_name": "ed05af43-41f1-59d0-bf62-db6ec41939f4", "text": "1970\u5e74\u4ee3\u7684\u592a\u7a7a\u7535\u5f71\u548c\u9b54\u6cd5\u57ce\u5821\u3002"} +{"id": "7000073", "video_name": "ad4ebbee-a76b-5d1b-9e62-68532543c4dd", "text": "\u4e00\u4e2a\u6ce5\u571f\u52a8\u753b\uff0c\u5730\u7403\u5728\u65cb\u8f6c\u3002"} +{"id": "7000074", "video_name": "00613754-4330-5b5f-a8cb-4d766c9517b8", "text": "\u7e54\u4e0a\u624b\u74b0\uff0c\u795d\u798f\u5144\u59b9\u60c5\u6df1\u7684\u5144\u59b9\u7bc0\u3002"} +{"id": "7000075", "video_name": "740847e8-97d0-5bed-848a-89803f16ed14", "text": "\u6bcf\u53ea\u9f99\u8eab\u4e0a\u90fd\u6709\u6d77\u9e1f\u3002"} +{"id": "7000076", "video_name": "6bc59fdb-26f0-5e36-91d0-9abcf45c381a", "text": "\u4e00\u4f4d\u7a7f\u7740\u7eff\u8272\u793c\u670d\u7684\u7f8e\u4e3d\u5973\u5b50\u5728\u514b\u9686\u4e00\u5ea7\u5de8\u5927\u7684\u697c\u68af\u3002"} +{"id": "7000077", "video_name": "3fd660c7-e222-5728-b56e-5d7efea30e29", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u91d1\u53d1\u5973\u5b69\u6b63\u5bf9\u7740\u76f8\u673a\u5fae\u7b11\u3002"} +{"id": "7000078", "video_name": "87d424c7-ce50-543e-85a5-85a2b9044053", "text": "\u53d8\u8272\u9f99\u597d\u5947\u63a2\u9669\uff1a\u53d8\u8272\u9f99\u8868\u6f14\u514b\u8389\u5965\u6f2b\u6b65\u4e8e\u5145\u6ee1\u6d3b\u529b\u7684\u4e1b\u6797\u4e2d\uff0c\u5979\u7684\u773c\u775b"} +{"id": "7000079", "video_name": "b043937f-92c0-5a4e-946a-c11941b197f9", "text": "\u5728\u9633\u5149\u4e0b\uff0c\u4e00\u4e2a\u50e7\u4fa3\u5750\u5728\u4e00\u4e2a\u53d1\u5149\u7684\u83b2\u82b1\u91cc\uff0c\u5728\u5929\u7a7a\u4e2d\u9ad8\u98de\u3002"} +{"id": "7000080", "video_name": "0c184309-54b6-5641-8f97-e03ec179278d", "text": "H.R.\u5409\u683c\u98ce\u683c\u7684\u4f5b\u50cf\n\nSource sentence: I am learning Chinese language."} +{"id": "7000081", "video_name": "192eb74d-4594-5b87-99df-4321b86f54cf", "text": "\u4e00\u4e2a\u4eba\u5411\u5b87\u5b99\u8bf4\u8bdd1\u5206\u949f\u3002"} +{"id": "7000082", "video_name": "366b4920-bede-5c76-9037-2d474d9d7916", "text": "\u57ce\u5e02\u5728\u7834\u574f\u6027\u5316\u5b66\u7206\u70b8\u540e\u7684\u5e9f\u589f\u4f5c\u4e3a\u80cc\u666f\uff0c\u6444\u50cf\u673a\u805a\u7126\u4e8e\u90a3\u4e2a\u7f50\u5b50\u3002\n\nSource sentence: The pandemic has"} +{"id": "7000083", "video_name": "d53b3cb5-8382-53a8-b4a7-bd834ad13f1b", "text": "4K\u903c\u771f\u7684\u673a\u5668\u4eba\u4e3a\u4eba\u7c7b\u670d\u52a1\uff0c\u5448\u73b0\u57ce\u5e02\u666f\u8c61\uff0c\u6162\u52a8\u4f5c\u3002"} +{"id": "7000084", "video_name": "bb41bcb9-095e-5502-8cd1-f60f7629e475", "text": "\u7535\u5b50\u663e\u5fae\u955c\u4e0b\u7684\u7ec6\u80de\u89c6\u56fe\u3002"} +{"id": "7000085", "video_name": "7e74e46d-0523-5a9b-bbdd-00649061ef13", "text": "\u4e24\u4e2a\u5973\u5b69\u624b\u62c9\u624b\u7ad9\u5728\u71c3\u70e7\u7684\u57ce\u5e02\u524d\u9762\u3002\u8d85\u5199\u5b9e\u3002\u903c\u771f\u30028K\u3002"} +{"id": "7000086", "video_name": "01b62dbf-cea4-5860-a685-365a043f4a03", "text": "\u5728\u4e00\u4e2a\u9634\u68ee\u3001\u591a\u4e91\u7684\u68ee\u6797\u91cc\u9003\u79bb\u4e00\u4e2a\u975e\u5e38\u53ef\u6015\u7684\u602a\u7269\u3002"} +{"id": "7000087", "video_name": "350390a2-5291-5aae-ad69-7cbe326fbbfe", "text": "DND\u5c0f\u7ec4\u4ece\u98de\u9f99\u8eab\u8fb9\u9003\u79bb\u4e86\u3002 \n\nSource sentence: I am looking for a job in marketing. \n\u6211\u6b63\u5728\u5bfb\u627e\u4e00\u4efd\u5e02\u573a\u8425\u9500\u7684\u5de5\u4f5c\u3002"} +{"id": "7000088", "video_name": "1a9861a2-55cd-52e4-80fc-d3c7255a4178", "text": "\u4e00\u6735\u7f8e\u4e3d\u7684\u71c3\u70e7\u7684\u7ea2\u82b1"} +{"id": "7000089", "video_name": "9d60e134-7ced-5222-aaf5-62344264acbd", "text": "\u6545\u4e8b\u4ece\u4e00\u8258\u8239\u5f00\u59cb\uff0c\u4e3b\u89d2\u540d\u53eb\u8def\u98de\uff0c\u4ed6\u5f00\u59cb\u4e86\u6210\u4e3a\u6d77\u8d3c\u738b\u7684\u5192\u9669\u3002\u955c\u5934\u8ddf\u968f\u7740\u4ed6\u7684\u80cc\u5f71"} +{"id": "7000090", "video_name": "cf1b9402-606c-513e-868d-50ee09bbd608", "text": "\u54c8\u5229\u6ce2\u7279\u548c\u8d6b\u654f\u5728\u970d\u683c\u6c83\u8328\u56fe\u4e66\u9986\u8c08\u8bdd\uff0c\u975e\u771f\u5b9e\u5f15\u64ce\u3002"} +{"id": "7000091", "video_name": "36c16077-b8ac-5159-85a0-f05782ea3268", "text": "\u4e00\u4e2a\u771f\u6b63\u7684\u9ed1\u8272\u91ce\u9f99\u5728\u663e\u793a\u5668\u91cc\u60f3\u5403\u6389\u90a3\u4e2a\u7537\u4eba\uff0c\u800c\u90a3\u4e2a\u7537\u4eba\u5411\u540e\u79fb\u52a8\u5e76\u5bb3\u6015\u663e\u793a\u5668\u3002"} +{"id": "7000092", "video_name": "4f66fb4f-1f50-5d6b-b669-6c12d965c70c", "text": "\u4e00\u4f4d\u62e5\u6709\u706b\u80fd\u529b\u7684\u52a8\u6f2b\u89d2\u8272\u5728\u6708\u7403\u4e0a\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002"} +{"id": "7000093", "video_name": "16276ded-6337-58c6-bfdc-02532d16b3dd", "text": "\u4eba\u7fa4\u5728\u5916\u9762\u5e86\u795d\u3002"} +{"id": "7000094", "video_name": "de01b960-cd42-5312-b56e-5e793d99fd21", "text": "\u591c\u665a\uff0c\u5f53\u6bcf\u4e2a\u4eba\u90fd\u8fd9\u6837\u7684\u65f6\u5019\uff0c\u963f\u5c14\u743c\u5411\u90a3\u4e2a\u5927\u53a6\u8d70\u53bb\u3002\u623f\u5b50\u91cc\u4e00\u7247\u6f06\u9ed1\uff0c\u4f20\u6765\u53ef\u6015\u7684"} +{"id": "7000095", "video_name": "0e39a9ef-95fd-5ac2-9a7d-71558706c16d", "text": "\u5df4\u52c3\u7f85\u00b7\u57c3\u65af\u79d1\u5df4\u723e\u8207\u5370\u5ea6\u8001\u4eba\u3002"} +{"id": "7000096", "video_name": "94c28634-333a-5b71-a4f4-3c16a377a7b9", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\u51c6\u5907\u4e86\u4e00\u767e\u4e07\u516c\u65a4\u7684\u6bd2\u54c1\u3002"} +{"id": "7000097", "video_name": "573ef3ef-5f17-51bd-aa6f-3506b52e6d9c", "text": "\u8fd9\u4e2a\u4f20\u5947\u6545\u4e8b\u7ee7\u7eed\u53d1\u5c55\uff0c\u8d5b\u9a6c\u201c\u970d\u6839\u201d\u8dd1\u5230\u8d5b\u9053\u7ec8\u70b9\u8d62\u5f97\u4e86\u80af\u5854\u57fa\u5fb7\u6bd4\u8d5b\uff0c\u4eba"} +{"id": "7000098", "video_name": "2750fecc-7231-567f-a1a7-34e70c0c0eda", "text": "\u5f3a\u8c03\u5927\u8c61\u5728\u8349\u98df\u52a8\u7269\u4e2d\u7684\u667a\u6167\u548c\u9886\u5bfc\u529b\u3002\u5361\u901a\u3002"} +{"id": "7000099", "video_name": "631d197a-410f-5215-a865-4d06ceb7b91c", "text": "\u559c\u6b22\u4e00\u6bb5\u65e0\u58f0\u7535\u5f71\u7684\u89c6\u9891\uff0c\u5973\u6f14\u5458\u8d70\u5411\u5f00\u7740\u7684\u524d\u95e8\uff0c\u8001\u65e7\u753b\u9762\uff0c\u6d45\u666f\u6df1\u3002"} +{"id": "7000100", "video_name": "8eb54040-d9eb-550d-95cf-dcee8cb044df", "text": "\u5927\u7ea620\u5c81\u7684\u56db\u4e2a\u63a2\u9669\u5bb6\u624b\u6301\u624b\u7535\u7b52\uff0c\u9762\u5bf9\u90aa\u6076\u7684\u9b3c\u9b42\u65f6\u8138\u4e0a\u8868\u73b0\u51fa\u7d27\u5f20\u3002"} +{"id": "7000101", "video_name": "daead92b-07e4-5277-a860-d714fc16fc22", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5728\u505a\u5723\u8bde\u82b1\u73af\u3002"} +{"id": "7000102", "video_name": "3fa22e7c-f364-5828-9d0f-e238cb8224ca", "text": "\u9a6c\u514b\u65af\u5728\u5a5a\u793c\u671f\u95f4\u5728\u82b1\u56ed\u91cc\u9759\u9759\u5730\u53cd\u601d\uff0c\u5c55\u73b0\u4e86\u4ed6\u5e73\u548c\u601d\u8003\u7684\u4e00\u9762\u3002"} +{"id": "7000103", "video_name": "7eddce39-70fa-5d8b-b86a-c3ec866a219b", "text": "\u8ddf\u8e2a\u62cd\u6444\u7a7f\u8fc7\u670d\u52a1\u5668\u623f\u95f4\u7684\u7535\u5f718k\u3002"} +{"id": "7000104", "video_name": "38dfb5dd-1a56-5fa8-8223-91c164bb0a7c", "text": "\u521b\u5efa\u76f8\u4f3c\u7684\u56fe\u50cf\uff0c\u6839\u636e\u8868\u60c5\u548c\u624b\u52bf\u6765\u5c55\u793a\u751f\u6c14\u3001\u5feb\u4e50\u3001\u5fae\u7b11\u3001\u4ea4\u8c08\u548c\u54ed\u6ce3\u7b49\u8868\u60c5\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000105", "video_name": "f4f6d78f-fb0c-5310-b2f7-66f12a9801fc", "text": "\u82f1\u56fd\u6f14\u5458\u626e\u6f14\u5c24\u5229\u4e4c\u65af\u00b7\u51ef\u6492\u7684\u6b63\u9762\u7167\uff0c\u72ec\u767d\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7535\u5f71\u5316\uff0c\u8d28\u91cf\u4f18\u79c0\u3002"} +{"id": "7000106", "video_name": "f0c6f223-cead-5594-8c00-7d52623edfee", "text": "1938\u5e74\u7684\u65e5\u672c\u7687\u5bb6\u65d7\u5728\u98ce\u4e2d\u98d8\u626c\u3002"} +{"id": "7000107", "video_name": "bdcccf17-cff8-568f-9b3b-52e2d088cc9a", "text": "\u6469\u897f\u8d70\u5411\u5c71\u4e0a\u4e0e\u4e0a\u5e1d\u4ea4\u8c08\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "7000108", "video_name": "5285d9e1-7dd0-5459-afd6-7b5d1e30166a", "text": "15\u4e2a\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u4eba\u98de\u5411\u5929\u5802\u3002"} +{"id": "7000109", "video_name": "9c92d0be-e135-5916-a6f7-766f7cae214e", "text": "\u56f4\u5750\u5728\u9910\u684c\u524d\uff0c\u624b\u7275\u624b\u56e2\u7ed3\u4e00\u81f4\uff0c\u5171\u4eab\u7f8e\u98df\u3002"} +{"id": "7000110", "video_name": "6627dfce-246c-5a91-8404-9ceb837a1af1", "text": "\u5728\u4e00\u4e2a\u6d1e\u7a74\u7684\u5ca9\u58c1\u4e0a\u6709\u9ed1\u767d\u7684\u8138\uff0c\u9ed1\u6697\u800c\u53e4\u5178\u7684\u6050\u6016\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7000111", "video_name": "862daa86-4386-5b0a-b2fa-d7ab3eaad4f6", "text": "3D\u745c\u4f3d\u59ff\u52bf\uff1a\u6c99\u6ee9\u4e0a\u7684\u5927\u8c61"} +{"id": "7000112", "video_name": "79987a31-d60c-552c-ad96-b034b5b2145e", "text": "\u4e00\u53ea\u975e\u5e38\u53ef\u7231\u3001\u9ad8\u5ea6\u7ec6\u8282\u5316\u7684\u5c0f\u8003\u62c9\uff0c\u5750\u5728\u5b9c\u5bb6\u9910\u5385\u7684\u7a97\u53e3\u4f4d\u7f6e\u3002\u5b83\u770b\u8d77\u6765\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "7000113", "video_name": "ecd27fb6-2ec5-56cf-8013-f835b00fcd26", "text": "\u673a\u5668\u4eba\u6218\u58eb\u4ee5\u8d85\u5feb\u7684\u95ea\u7535\u901f\u5ea6\u5954\u8dd1\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u54aa\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "7000114", "video_name": "e442321e-a2a4-5d30-93e7-f932bf06b0ec", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c\u4e00\u53ea\u53ef\u7231\u7684\u5361\u901a\u5154\u5b50\uff0c\u60c5\u7eea\u548c\u59ff\u52bf\u968f\u673a\u53d8\u5316\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "7000115", "video_name": "bf2f1f45-3f0e-5231-b8c8-ffe965c12826", "text": "\u4e00\u8258\u8377\u5170\u4e1c\u5370\u5ea6\u516c\u53f8\u7684\u8239\u6b63\u5728\u62b5\u8fbe\u5370\u5ea6\u5c3c\u897f\u4e9a\u6d77\u5cb8\u3002\u7531\u7f57\u6770\u00b7\u8fea\u91d1\u65af\u62cd\u6444\u3002"} +{"id": "7000116", "video_name": "6bb2d44d-25df-5ce8-b526-5d85ec9e2df1", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u8eba\u5728\u8d85\u7ea7\u7761\u7720\u8231\u76d2\u5b50\u91cc\uff0c\u900f\u660e\u7684\u76d2\u5b50\uff0c\u672a\u6765\u4e3b\u4e49\u8bbe\u8ba1\uff0c\u4f4d\u4e8e\u5b87\u5b99\u98de\u8239\u4e2d\uff0c"} +{"id": "7000117", "video_name": "624a83a3-ea38-5639-a0e6-962d7aa0ceb3", "text": "\u4e00\u5e45\u6709\u4ed9\u4eba\u638c\u751f\u957f\u7684\u96e8\u5929\u573a\u666f\u3002"} +{"id": "7000118", "video_name": "c1bb7b97-548a-5519-8d2c-ae88b87a6678", "text": "\u963f\u5bcc\u6c57\u6751\u5e84\u91cc\u7684\u519c\u6c11\u4e0e\u4ed6\u7684\u6b7b\u725b\u4e00\u8d77\uff0c\u611f\u5230\u60b2\u4f24\u3002"} +{"id": "7000119", "video_name": "fa6bad8e-19b2-5dba-96b6-225b79e98503", "text": "\u4ed6\u4eec\u7684\u65c5\u7a0b\u5145\u6ee1\u4e86\u6311\u6218\uff0c\u4ece\u7a7f\u8fc7\u4e00\u4e2a\u6643\u52a8\u7684\u6865\u5230\u89e3\u5bc6\u6dd8\u6c14\u7684\u68ee\u6797\u751f\u7269\u7559\u4e0b\u7684\u8c1c\u8bed\u3002\u4e00"} +{"id": "7000120", "video_name": "963aa6fa-371e-5a3a-870b-f830c78aa3a5", "text": "\u9ed1\u6697\u9748\u9b42\u9a0e\u58eb\u6b65\u884c\u5faa\u74b0\uff0c\u9b54\u6cd5\u71c8\u5149\uff0c\u9ed1\u6697\u800c\u9670\u9b31\uff0c\u6232\u5287\u6027\u71c8"} +{"id": "7000121", "video_name": "3d73c789-3fb8-5cd6-bd23-3e45f72c244d", "text": "\u6211\u5e0c\u671b\u8fd9\u4e9b\u8c37\u7269\u80fd\u591f\u79fb\u52a8\u3002\n\nSource sentence: The cat is sleeping on the couch.\n\u8fd9\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7000122", "video_name": "3a0c6a44-0b47-5deb-80b7-8ea9241867e2", "text": "\u5e74\u8f7b\u5973\u5b69\u7ad9\u5728\u4e00\u7247\u7cd6\u679c\u6746\u548c\u68c9\u82b1\u7cd6\u4e91\u7684\u7530\u91ce\u4e2d\u30023D 8K"} +{"id": "7000123", "video_name": "fcab7fda-3bb2-59ce-a4f7-95ca7b33a8ec", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u7537\u5b69\u5728\u4e00\u68f5\u53e4\u8001\u7684\u5927\u6a61\u6811\u4e0b\u6253\u5f00\u4e00\u4e2a\u795e\u5947\u7684\u9501\u7740\u7684\u7bb1\u5b50\u3002"} +{"id": "7000124", "video_name": "c04b90f0-9cb2-5272-b2cf-de8a91aebbf2", "text": "\u5df4\u52d2\u65af\u5766\u4eba\u5728\u963f\u514b\u8428\u6e05\u771f\u5bfa\u9644\u8fd1\u4e3e\u7740\u4ed6\u4eec\u7684\u65d7\u5e1c\u3002"} +{"id": "7000125", "video_name": "ea4dde53-4504-5136-bdfd-42f5c8745658", "text": "\u7537\u5b69\u5728\u7761\u68a6\u4e2d\u68a6\u89c1\u5973\u795e\u7f13\u7f13\u5411\u4ed6\u98de\u6765\u3002"} +{"id": "7000126", "video_name": "7adfea4f-301e-5e08-96ff-ecbc7d41cc89", "text": "of Hollywood stars.\n\n\u4e9a\u5f53\u00b7\u5fb7\u8d5b\u548c\u8096\u6069\u00b7\u66fc\u5fb7\u65af\u6b63\u5728\u6210\u4e3a\u597d\u83b1\u575e\u660e\u661f\u7684\u4e00\u5458\u3002"} +{"id": "7000127", "video_name": "a0ada29c-0773-5f2f-b049-738d838f1f7c", "text": "\u732b\u7684\u5c3a\u5bf8\u6b63\u5e38\uff0c\u4e0d\u662f\u5f88\u5927\u3002"} +{"id": "7000128", "video_name": "a2ff59f8-705b-5dba-9e03-c7fe8187ffa6", "text": "\u4e00\u8f86\u84dd\u8272\u4fdd\u65f6\u6377911\u7a7f\u8fc7\u96ea\u6797\uff0c\u7136\u540e\u649e\u5165\u73bb\u7483\u4e2d\uff0c\u53d8\u6210\u4e86\u7d2b\u8272\u7684timonchess\u94ed\u6587\u3002"} +{"id": "7000129", "video_name": "9df4c2da-20f3-54b2-ad93-bf9c22b8f950", "text": "\u5361\u901a\u6d41\u884c\u827a\u672f\u6251\u514b\u7b79\u7801\u4ee5360\u5ea6\u65cb\u8f6c\uff0c\u6444\u50cf\u673a\u968f\u4e4b\u65cb\u8f6c\u3002"} +{"id": "7000130", "video_name": "051baf4f-e0b2-5fe2-bcb1-019af35a166f", "text": "\u7535\u5f71\u4e2d\uff0c\u4e00\u4e2a\u6df1\u7d2b\u8272\u7684\u53cd\u6d3e\u5973\u4eba\u5750\u5728\u5979\u7684\u5b9d\u5ea7\u4e0a\uff0c\u5e26\u7740\u50bb\u7b11\u6447\u5934\u3002 \n\nSource sentence: The cat is sleeping on the"} +{"id": "7000131", "video_name": "71658402-cfca-5927-b8b9-a76b746ba64d", "text": "\u4e00\u4e2a\u7537\u4eba\u4ece\u8fd1\u5904\u7684\u7c73\u888b\u91cc\u5927\u58f0\u558a\u53eb\u3002"} +{"id": "7000132", "video_name": "b3155646-9331-5f3a-a8dd-7f465a5d220e", "text": "\u6e90\u53e5\uff1a\u5916\u661f\u98de\u8239\u5e26\u7740\u706b\u7130\u8f68\u8ff9\u5760\u843d\u5230\u5730\u7403\u4e0a\u3002\n\nSource sentence: The cat is sleeping on the windowsill. \n\n\u7ffb\u8bd1\uff1a"} +{"id": "7000133", "video_name": "d7e87ac8-eab9-5578-9dc4-7a66ef620fa0", "text": "\u63cf\u8ff0\u5750\u5728\u6469\u6258\u8f66\u4e0a\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "7000134", "video_name": "b243631f-76d1-5a60-b340-4ef645868c93", "text": "\u79c3\u9e70\u964d\u843d\u5728\u6708\u7403\u4e0a\u3002"} +{"id": "7000135", "video_name": "a5180481-23c7-5506-8b5f-f30bbe4012a2", "text": "\u4ee5\u8d5b\u535a\u670b\u514b\u98ce\u683c\uff0c\u4e00\u573a\u4eba\u5de5\u667a\u80fd\u673a\u5668\u4eba\u4e0e\u4eba\u7c7b\u4e4b\u95f4\u7684\u6218\u4e89\u9884\u544a\u7247\u5728\u4e00\u4e2a\u53e4\u8001\u7684\u4e16\u7eaa\u4e2d\u95f4\u5c55\u5f00"} +{"id": "7000136", "video_name": "028b8923-6f50-5a7b-ab35-0ca2de092e0a", "text": "\u6d77\u6ee9\u4e0a\u7684\u7537\u4eba\u6b63\u5728\u4eab\u53d7\u65b0\u9c9c\u7684\u6d77\u98ce\u3002"} +{"id": "7000137", "video_name": "7179d018-cd7e-579a-a47b-6548c46c6316", "text": "\u4e00\u53ea\u80cc\u7740\u4e66\u5305\u7684\u5154\u5b50\u5728\u82b1\u7530\u91cc\u8ffd\u9010\u4e00\u53ea\u8774\u8776\u3002"} +{"id": "7000138", "video_name": "48d50a51-4ab8-5de4-90b3-928de9b60989", "text": "\u6d3e\u5bf9\u8df3\u821e\u4ea4\u8c08\u4eba\u7fa4\u9152\u5427\u665a\u4e0a\uff0cUHD\uff0c\u5f71\u9662\u7ea7\u52a8\u6001\uff0c\u903c\u771f\u3002"} +{"id": "7000139", "video_name": "0478d931-6c16-527f-8497-b62195f02cd5", "text": "\u4e91\u6735\u79fb\u52a8\u8fc5\u901f\uff0c\u661f\u661f\u95ea\u70c1\u660e\u4eae\uff0c\u6811\u6728\u5728\u98ce\u4e2d\u821e\u52a8\uff0c\u8349\u5728\u8f7b\u8f7b\u6447\u6446\u3002"} +{"id": "7000140", "video_name": "2123e5d8-1477-5bbf-a78d-d6fa53a17cb3", "text": "\u4e00\u4e2a\u77ed\u5c0f\u7ea2\u8272\u7684\u6bdb\u8338\u8338\u7684\u72ec\u773c\u5de8\u4eba\uff0c\u8116\u5b50\u4e0a\u6234\u7740\u4e00\u6761\u7d2b\u8272\u7684\u5934\u5dfe\uff0c\u5728\u65b0\u58a8\u897f\u54e5"} +{"id": "7000141", "video_name": "66666ff6-688d-50e7-b3cd-01b940388589", "text": "\u5c06\u94b1\u4f5c\u4e3a\u5de5\u5177\uff1a\u751f\u6210\u4e00\u4e2a\u9690\u55bb\u6027\u5730\u63cf\u7ed8\u94b1\u4f5c\u4e3a\u591a\u529f\u80fd\u5de5\u5177\u7684\u5f62\u8c61\uff0c\u4f8b\u5982\u624b\u6301\u8d27\u5e01\u7eb8\u5e01\u8f6c\u5316\u4e3a\u5404\u79cd\u79ef"} +{"id": "7000142", "video_name": "d7bf8e21-e820-5fbc-82dc-1a6bd4642cf6", "text": "\u9ed1\u5c71\u98ce\u683c\u7684\u5438\u8840\u9b3c\u5669\u68a6\u3002"} +{"id": "7000143", "video_name": "c6d99eb7-00b4-592d-aded-bb93e8ef913a", "text": "\u7f8e\u56fd\u56fd\u65d7\u548c\u82f1\u56fd\u56fd\u65d7\u5728\u84dd\u5929\u80cc\u666f\u4e0b\u98d8\u626c\u3002"} +{"id": "7000144", "video_name": "19653da3-f050-5e6b-ac4b-f68f0441d5aa", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u8857\u9053\u4e0a\u3002"} +{"id": "7000145", "video_name": "2cd802cc-a908-58d1-b633-4501aa5d196f", "text": "\u5149\u5b66\u9519\u89c9\u5c06\u5916\u661f\u4eba\u53d8\u6210\u4eba\u7c7b\u9762\u5b54\u3002"} +{"id": "7000146", "video_name": "33ffa571-5994-592b-9621-fbcd4d76a539", "text": "\u60f3\u8c61\u4e00\u4e0b Sparkle \u610f\u8bc6\u5230\u5979\u771f\u6b63\u7684\u9b54\u529b\u5728\u4e8e\u8ba9\u522b\u4eba\u5feb\u4e50\u3002"} +{"id": "7000147", "video_name": "e6bfbfe7-afc1-5b40-a5e6-e42096026349", "text": "\"Welcome to tomorrow.\" \n\n\u672a\u6765\u4e4b\u57ce\uff0c\u8367\u5149\u706f\u7167\u4eae\u4e86\u6240\u6709\u5efa\u7b51\uff0c\u6469\u5929\u5927\u697c\u5448\u73b0\u51fa\u672a\u6765\u4e3b\u4e49\u51e0\u4f55\u5f62\u72b6\uff0c\u4f34"} +{"id": "7000148", "video_name": "8f97ad96-99c9-5fa8-aaef-dd3afd48cf47", "text": "\u9053\u683c\u62c9\u65af\u00b7\u7279\u6717\u5e03\u5c14\uff08Douglas Trumbull\uff09\u5236\u4f5c\u4e86\u300a2001\u592a\u7a7a\u6f2b\u6e38\u300b\u7279\u6548\u3002\n\nSource sentence: The restaurant is located on the corner of Main Street and Maple Avenue"} +{"id": "7000149", "video_name": "1d75649b-1ee0-5ea7-adbf-35db02481fe8", "text": "\u8239\u53ea\u8fdb\u5165\u592a\u7a7a\uff0c\u75f4\u8ff7\u7684\u5b87\u822a\u5458\u4e0e\u4fe1\u4ef6\u4ea4\u8c08\uff0c\u4eff\u4f5b\u5979\u662f\u4ed6\u7684\u7231\u4eba\uff0c\u76f8\u4fe1\u5979\u5728\u90a3\u91cc\u7b49\u5f85"} +{"id": "7000150", "video_name": "a0f5c499-10fc-5927-aab2-88b5987c68fe", "text": "\u76ae\u9769\u8d28\u611f\u5728\u9ed1\u8272\u80cc\u666f\u4e0b\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u706f\u5149\u7167\u4eae\u3002"} +{"id": "7000151", "video_name": "560cc975-b4c0-521e-9bc3-cdcf7b2a0860", "text": "\u52a8\u6f2b\u98ce\u683c\uff0c15\u5c81\u7684\u65e5\u672c\u54e5\u7279\u5973\u5b69\u548c\u5979\u7684\u673a\u5668\u7329\u7329\uff0c\u53f2\u8bd7\u822c\u7684\uff0c\u98ce\u683c\u7c7b\u4f3c\u4e8e\u5409\u535c"} +{"id": "7000152", "video_name": "0711e623-61dc-5400-a4b9-e1f6bd0cdc8b", "text": "\u5236\u4f5c\u4e00\u6bb5\u5173\u4e8e\u8428\u8fbe\u59c6\u00b7\u4faf\u8d5b\u56e0\u505a\u6269\u5f20\u624b\u52bf\u76848K\u89c6\u9891\u3002"} +{"id": "7000153", "video_name": "43ecf491-197f-5da0-91b9-f0c3c3088c66", "text": "Fulgore\u7535\u5b50\u6e38\u620f\u89d2\u8272\u5728\u751f\u65e5\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "7000154", "video_name": "c5c3219b-fb91-5fdb-87fc-64cf84ce62db", "text": "\u7f8e\u4eba\u9c7c\u5728\u6c34\u4e0b\u6e4d\u6d41\u4e2d\u6e38\u6cf3\u76844K\u7535\u5f71\u8fd0\u52a8\u3002"} +{"id": "7000155", "video_name": "4ef65874-12d7-5ebd-9ca3-96a12c2f7930", "text": "\u5728\u6fb3\u5927\u5229\u4e9a\u521b\u9020\u4e00\u4e2a\u573a\u666f\uff0c\u5176\u4e2d\u888b\u9f20\uff08\u6a44\u6984\u7403\u8054\u8d5b\u961f\uff09\u6216\u888b\u9f20\u5899abies\uff08\u6a44\u6984"} +{"id": "7000156", "video_name": "10819d13-ee2e-5787-9b38-190dba97e588", "text": "\u5f7c\u5f97\u00b7\u683c\u91cc\u82ac\u662f\u300a\u5bb6\u5ead\u7537\u4eba\u300b\u7cfb\u5217\u4e2d\u7684\u89d2\u8272\uff0c\u4e0e\u739b\u5409\u00b7\u8f9b\u666e\u68ee\u7ed3\u5a5a\u4e86\u3002"} +{"id": "7000157", "video_name": "19860456-7c87-5204-98d6-153befd2a791", "text": "\u5168\u7403\u6700\u5927\u7684\u706b\u707e\uff0c\u5de8\u5927\u7684\u71c3\u70e7\u68ee\u6797\uff0c\u76f4\u5347\u673a\uff0c\u536b\u661f\u89c2\u6d4b\u7740\u71c3\u70e7\u7684\u68ee\u6797\u3002"} +{"id": "7000158", "video_name": "b23f4783-3ff4-5495-8afe-6c0aa7a84733", "text": "\u52a8\u6f2b\u5973\u5b69\u5728\u4e25\u683c\u7684\u82ad\u857e\u821e\u4e0a\u8df3\u821e\u3002"} +{"id": "7000159", "video_name": "43b2b830-d465-5f1f-88a8-fef400f30245", "text": "\u4e00\u5ea7\u5c71\u4e0a\u6709\u4e00\u53ea\u5de8\u5927\u7684\u91d1\u9f99\uff0c\u65c1\u8fb9\u8fd8\u6709\u4e00\u53ea\u5c0f\u7684\u975e\u6d32\u7070\u9e66\u9e49\u98de\u7fd4\u3002"} +{"id": "7000160", "video_name": "8994419c-f2ca-5a8c-a19a-d5ee7339c444", "text": "\u4ee5\u5c40\u5916\u827a\u672f\u7684\u98ce\u683c\uff0c3D\u3002"} +{"id": "7000161", "video_name": "087f0aa1-a1cf-59a0-bd7a-38260a07a97b", "text": "\u4e00\u7fa4\u6570\u5343\u4e2a\u4e39\u9ea6\u4eba\u6234\u7740\u91d1\u51a0\uff0c\u4ece\u5929\u7a7a\u4e2d\u843d\u4e0b\u91d1\u51a0\uff0c\u8fd8\u6709\u7eb8\u5c51\u548c\u6c14\u7403\uff0c\u4ed6\u4eec\u975e\u5e38\u5f00\u5fc3\u3002"} +{"id": "7000162", "video_name": "d3119929-4c5c-5d57-800e-601d6285f757", "text": "\u7535\u5f71\u5de5\u4f5c\u5ba4\u7684\u7269\u54c1\u805a\u96c6\u5728\u201c\u5a31\u4e50\u201d\u4e00\u8bcd\u5468\u56f4\uff0c\u63a5\u7740\u7206\u7c73\u82b1\u55b7\u6d8c\u800c\u51fa\uff0c\u8986\u76d6\u4e86\u6574\u4e2a\u573a"} +{"id": "7000163", "video_name": "01943516-2d6b-52c3-949f-6f68c1f95e5e", "text": "\u9ea6\u8389\u00b7\u8d5b\u52d2\u65af\u5728\u4f53\u80b2\u573a\u5de1\u56de\u6f14\u5531\u4f1a\u4e0a\u6f14\u5531\u300a\u6500\u767b\u300b\uff0c\u9ad8\u6e05\u8d85\u903c\u771f\u3002"} +{"id": "7000164", "video_name": "ceb713c5-2cd3-5936-a0ea-2a5ce05c5064", "text": "\u57ce\u5e02\u88ab\u795e\u79d8\u7684\u7b26\u53f7\u7b3c\u7f69\uff0c\u4e00\u7247\u8be1\u5f02\u7684\u5bc2\u9759\u3002\u597d\u5947\u7684\u8c03\u67e5\u5458\u739b\u96c5\u62ff\u51fa\u624b\u673a\uff0c\u76ee\u5149\u4e2d\u900f\u7740"} +{"id": "7000165", "video_name": "e0dd229d-491d-530d-afe2-20fcc87fab88", "text": "\u4eba\u4eec\u5728\u534e\u5c14\u8857\u884c\u8d70\u3002\u4fe1\u606f\uff1a\u667a\u80fd\u5408\u7ea6\u3002"} +{"id": "7000166", "video_name": "4047f4f8-6eb1-5612-8f73-52fed2baf95d", "text": "\u4eba\u5de5\u667a\u80fd\u5bf9\u4e16\u754c\u53d8\u5f97\u975e\u5e38\u5371\u9669\uff0c\u521b\u5efa\u4e00\u4e2a1\u5206\u949f\u7684\u89c6\u9891\u8ba8\u8bba\u8fd9\u4e2a\u8bdd\u9898\u3002"} +{"id": "7000167", "video_name": "19d37ca2-31c7-5673-8c62-06e568027e4d", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5f00\u73a9\u7b11\u8bf4\u706b\u7bad\u7206\u70b8\u7684\u52a8\u753b\u7248\u672c"} +{"id": "7000168", "video_name": "f0ab4e6f-d509-5f17-a1c2-633bf39d3fc0", "text": "\u4e00\u4e2a\u9a91\u81ea\u884c\u8f66\u7684\u7537\u5b69\uff0c\u5409\u535c\u529b\u98ce\u683c\u7684\u52a8\u753b\u3002"} +{"id": "7000169", "video_name": "7d991813-7461-5900-bd36-acbc1c798fef", "text": "\u6c34\u624b\u4ece\u8239\u4e0a\u8d70\u4e0b\u6765\u3002"} +{"id": "7000170", "video_name": "5f77457c-6575-541e-9e2e-db879fade780", "text": "\u809a\u76ae\u821e\u8005\u8df3\u821e\u3002\u5b83\u5305\u62ec\u81c0\u90e8\u3001\u8179\u90e8\u548c\u8eaf\u5e72\u7684\u8fd0\u52a8\u3002"} +{"id": "7000171", "video_name": "1b13cbac-0f00-5121-be80-3eed8b1f75c5", "text": "\u6211\u5728\u5207\u7f57\u57fa\u8d4c\u573a\u8d62\u5f97WSOP\u8d5b\u4e8b\u3002"} +{"id": "7000172", "video_name": "00b79cab-f1cf-5057-9f36-e72a2f12cd6f", "text": "\u975e\u5e38\u9ad8\u8d28\u91cf\u7684\u89c6\u9891\uff0c\u7535\u5f71\u54c1\u8d28\u3002\u7a7f\u7740\u7ea2\u8272\u88d9\u5b50\u7684\u7f8e\u5973\u8df3\u821e\u3002"} +{"id": "7000173", "video_name": "b0fa9e94-7569-53d4-95a5-3eaf129d53bd", "text": "\u9a6c\u620f\u56e2\u4e3b\u6301\u4eba\u8bf4\u8bdd\u7684\u7535\u5f71\u822c\u7684\u8d5b\u535a\u670b\u514b\u5f62\u8c61\u3002"} +{"id": "7000174", "video_name": "e1309f03-0765-56fb-b3dd-36c4e7cdfa62", "text": "\u6bcf\u5929\u4e00\u4e2a\u5b69\u5b50\u628a\u4e00\u5206\u94b1\u653e\u5165\u4e00\u4e2a\u900f\u660e\u7684\u7f50\u5b50\u91cc\u3002"} +{"id": "7000175", "video_name": "23dedb4c-0172-542d-a094-31eb4d55302c", "text": "\u7518\u5730\u7684\u6f14\u8bb2\u4e2d\uff0c\u7518\u5730\u7528\u4e86\u5f88\u597d\u7684\u63aa\u8f9e\uff0c\u9002\u5408\u4e8e\u4e0d\u540c\u5e74\u9f84\u5c42\u7684\u4eba\u542c\uff0c\u8ba9\u4ed6\u4eec\u90fd\u6df1\u53d7\u542f\u53d1"} +{"id": "7000176", "video_name": "ee087078-d43d-579d-b3f4-da884e6c477d", "text": "\u53d1\u4eae\u7684\u59d0\u59b9\u4e0d\u77e5\u9634\u5f71 \u8bf4\u7740\u5e7b\u8c61\u822c\u7684\u8bdd\u8bed \u4f20\u5230\u6c99\u4e18\u4e0a \u4f60\u90a3\u5e72\u6db8\u7684\u773c\u7738\u4e2d"} +{"id": "7000177", "video_name": "5ee976f1-182e-51db-ac81-a139067dd69b", "text": "\u7535\u8111\u5c4f\u5e55\u7a81\u7136\u95ea\u70c1\uff0c\u4e00\u884c\u6587\u5b57\u51fa\u73b0\uff1a\u4f60\u597d\uff0c\u514b\u91cc\u65af\u3002\u6211\u4eec\u662f\u661f\u9645\u63a2\u7d22\u7ec4\u7ec7\uff0c\u9080\u8bf7\u4f60\u53c2\u52a0\u4e00"} +{"id": "7000178", "video_name": "581e9e3f-ab1e-5d63-b8be-2b2d4dad3aac", "text": "\u6709\u4e00\u5929\uff0c\u9ce5\u5750\u5728\u6a39\u4e0a\uff0c\u611f\u5230\u60b2\u50b7\u3002\u5c31\u5728\u9019\u6642\uff0c\u4ed6\u9047\u898b\u4e86\u4e00\u96bb\u8001\u8c93\u982d\u9df9\u3002\u9019"} +{"id": "7000179", "video_name": "cb3e57e3-5236-56b4-bddc-a719a4477f8a", "text": "\u8d1d\u5409\u5854\u548c\u8fc8\u514b\u00b7\u6cf0\u68ee\u9762\u5bf9\u9762\u5728\u62f3\u51fb\u573a\u4e0a\u3002 \n\nSource sentence: The book I am reading is about ancient Chinese history.\n\u6211\u6b63\u5728\u8bfb\u7684\u4e66\u662f\u5173\u4e8e\u4e2d\u56fd"} +{"id": "7000180", "video_name": "38c38d18-5a69-5f2a-8013-07b30cf85b80", "text": "\u4e00\u4e2a\u540d\u53ebWhimsy\u7684\u5c0f\u5973\u5b69\uff0c\u773c\u775b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "7000181", "video_name": "5f195a8f-9ff3-526b-a3e6-0209aeb65584", "text": "\u5e74\u8f7b\u7684\u9ec4\u91d1\u65f6\u5149\uff0c\u6211\u4eec\u8f7b\u677e\u5730\u884c\u8d70\uff0c\u6ca1\u6709\u8d1f\u62c5\u7684\u7075\u9b42\u8ffd\u9010\u7740\u5149\u660e\u7684\u68a6\u60f3\uff0c\u6bcf\u4e2a"} +{"id": "7000182", "video_name": "289bf94c-a126-5e44-90a2-0450843b160f", "text": "\u5728\u5c71\u533a\u4e2d\u7684\u6da1\u8f6e\u589e\u538b\u8dd1\u8f66\u3002"} +{"id": "7000183", "video_name": "76b568b4-9708-5501-89f8-22225a9dc1d7", "text": "\u96c7\u4f63\u4e00\u4e2a\u65b0\u7684\u58f0\u97f3\u8bbe\u8ba1\u56e2\u961f\u3002"} +{"id": "7000184", "video_name": "f27dc431-311a-5c10-b2cb-3e658e41e5ec", "text": "\u5728\u975e\u6d32\u7684\u7f8e\u4e3d\u98ce\u666f\u4e2d\uff0c\u4e00\u4f4d\u957f\u7740\u9ed1\u8272\u957f\u53d1\u548c\u767d\u7699\u80a4\u8272\u7684\u7f8e\u4e3d\u5973\u5b50\uff0c\u7a7f\u7740\u4e00\u4ef6\u9ed1\u8272\u957f\u88d9\uff0c\u4e0e"} +{"id": "7000185", "video_name": "532bd840-0860-5127-832a-28480f7db2a9", "text": "\u4e00\u540d\u5927\u5b66\u5973\u751f\u6b63\u5728\u7535\u8111\u524d\u6253\u5b57\u3002"} +{"id": "7000186", "video_name": "e8877eca-14bc-52d8-b5b8-6358d3db9031", "text": "\u4e00\u6ef4\u6c34\u6162\u6162\u5730\u6ef4\u4e0b\u6765\uff0c\u5728\u63a5\u89e6\u6c34\u9762\u65f6\u5f62\u6210\u4e86\u4e00\u6735\u725b\u5976\u822c\u7684\u51a0\u72b6\u7269\u3002"} +{"id": "7000187", "video_name": "6fc255e7-7178-5ed5-8d10-35bfdbb7b6aa", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u7537\u6027\u9ad8\u7ba1\u5728\u7535\u8bdd\u91cc\u8d70\u8fc7\u8857\u53e3\uff0c\u6709\u5f88\u591a\u4eba\u3001\u4ea4\u901a\u548c\u50cf\u76ae\u514b\u65af\u52a8\u753b\u7684\u767d\u5929\u3002"} +{"id": "7000188", "video_name": "913a4069-60da-5c91-930f-2eb5ad8e745e", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u591c\u665a\u7684\u8857\u9053\u4e0a\u884c\u8d70\uff0c\u88ab\u4e00\u4e2a\u9b3c\u5413\u5230\uff0c\u6f2b\u753b\u9762\u677f\uff0c\u7070\u5ea6\uff0c\u6f2b\u753b\u7ed8\u753b\u3002"} +{"id": "7000189", "video_name": "75b86db4-9722-5d63-8d62-55d5b6a72fae", "text": "\u673a\u5668\u4eba\u5f00Uber\u3002\u4fe1\u606f\uff1afirstround\u3002"} +{"id": "7000190", "video_name": "f88ac9ea-cb98-53d8-a904-966eba625317", "text": "\u7eff\u8272\u672c\u7530\u601d\u57dfX\u4e24\u53a2\u8f7f\u8f66\u548c\u767d\u8272\u672c\u7530\u601d\u57dfX\u4e24\u53a2\u8f7f\u8f66Si\u4e00\u8d77\u884c\u9a76\u5728\u8def\u4e0a\u3002"} +{"id": "7000191", "video_name": "231b9abd-1574-5dc0-9af0-fac56732d3c0", "text": "\u4e00\u4e2a\u5b69\u5b50\u5411\u4ed6\u6b63\u5728\u4ece\u88c5\u6ee1\u679c\u6c41\u7684\u6c34\u58f6\u4e2d\u5012\u679c\u6c41\u5230\u676f\u5b50\u91cc\u7684\u6bcd\u4eb2\u8981\u679c\u6c41\uff0c\u5c31\u50cf\u76ae\u514b\u65af\u98ce\u683c"} +{"id": "7000192", "video_name": "a299a85a-4715-5ac3-846c-d1155266d455", "text": "\u573a\u666f\uff1a\u6c34\u4e2d\u7684\u9e23\u4eba\uff0c\u6444\u50cf\u673a\u7f29\u653e\u51fa\uff0c\u540c\u65f6\u6709\u7011\u5e03\u4e2d\u7684\u4f50\u52a9\u3002"} +{"id": "7000193", "video_name": "a0d339b9-9f1f-507a-97de-0edc1a3c06e5", "text": "\u5c55\u793a\u76f4\u7acb\u4eba\u5728\u4e0d\u540c\u7684\u6816\u606f\u5730\u4e2d\uff0c\u5982\u4f55\u9002\u5e94\u5468\u56f4\u73af\u5883\u3002"} +{"id": "7000194", "video_name": "1e334ec6-9652-5457-bbba-5e7a06f745f4", "text": "\u5e74\u8f7b\u592b\u5987\u5728\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u905b\u7740\u4e00\u53ea\u5c0f\u72d7\u3002"} +{"id": "7000195", "video_name": "07f3273f-29ee-58d6-a283-485c03d3d0d0", "text": "\u4f4f\u5b85\u524d\u9662\u7684\u67af\u5c71\u6c34\u65e5\u5f0f\u5ca9\u77f3\u7985\u56ed\uff0c\u4f4e\u7ef4\u62a4\u3002\u903c\u771f\u3001\u7535\u5f71\u822c\u7684\u7167\u660e\u30024K\u56fe\u50cf\u3002"} +{"id": "7000196", "video_name": "b20cc866-ed68-577f-af73-61182e52a920", "text": "\u602a\u7269\u5728\u534e\u76db\u987f\u5dde\u7684\u5c71\u533a\u5954\u8dd1\uff0c\u4ee4\u4eba\u5bb3\u6015\u3001\u6bdb\u9aa8\u609a\u7136\uff0c\u5feb\u901f\u903c\u8fd1\uff0c\u5486\u54ee\u7740"} +{"id": "7000197", "video_name": "268ba4a2-8286-5220-94f3-e7914ee97f60", "text": "\u4e00\u53ea\u62e5\u6709\u5927\u800c\u95ea\u4eae\u7fbd\u6bdb\u7684\u5927\u9e1f\u3002"} +{"id": "7000198", "video_name": "4fd0bf59-5fff-5f03-8627-69a0ed0ee972", "text": "\u8ba9\u4ed6\u5fae\u7b11\u5e76\u7565\u5fae\u6447\u5934\uff0c\u6ca1\u6709\u4efb\u4f55\u626d\u66f2\u3002"} +{"id": "7000199", "video_name": "5002e329-a428-5c70-9483-35a473a7cafc", "text": "\u4e00\u526f\u6728\u5236\u9762\u5177\u88ab\u653e\u7f6e\u5728\u68ee\u6797\u4e2d\u7684\u4e00\u5757\u77f3\u5934\u4e0a\u3002"} +{"id": "7000200", "video_name": "f048f355-45b8-594f-af3b-4d0e7034fe91", "text": "\u4e00\u4f4d\u65e5\u672c\u7f8e\u5973\u7a7f\u7740\u300a\u704c\u7bee\u9ad8\u624b\u300b\u7bee\u7403\u961f\u7684\u961f\u670d\u6253\u7bee\u7403\u3002"} +{"id": "7000201", "video_name": "c793bee3-ce06-5a08-9da0-d63de5de983a", "text": "\u8fdb\u5165\u4e9a\u7279\u5170\u8482\u65af\u7684\u5165\u53e3\uff0c\u5728\u95e8\u7684\u56fe\u50cf\u4e2d\u52a0\u5165\u9c7c\u6e38\u52a8\u7684\u52a8\u4f5c\u548c\u6f29\u6da1\u3002"} +{"id": "7000202", "video_name": "a46faa13-8355-5837-962b-14ee729599d9", "text": "\u80e1\u5b50\u7537\u5b50\u957f\u53d1\u8910\u8272\u76ae\u80a4\u5728\u5de8\u6d6a\u4e2d\u6e38\u6cf3\u3002"} +{"id": "7000203", "video_name": "cf42ae9a-e2ab-5bc1-a8a1-52a136e517d6", "text": "\u5c0f\u8c61\u5934\u795e\u50cf\u5361\u901a\u63d2\u56fe\uff0c\u9762\u5e26\u5fae\u7b11\uff0c\u9762\u5bb9\u6e05\u6670\uff0c\u8eab\u5904\u65e5\u843d\u4e2d\u7684\u82b1\u56ed\u3002"} +{"id": "7000204", "video_name": "c912d7ec-5a0d-513e-94ba-d974f6d9577b", "text": "\u4e00\u628a\u6cd5\u5f8b\u4e4b\u5251\u77d7\u7acb\u5728\u51b0\u5e95\u5ea7\u4e0a\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u51b0\u96ea\u6d1e\u7a74\u5185\u3002\u5251\u67c4\u4e0a\u88c5\u9970\u7740\u91d1\u5c5e\u516c"} +{"id": "7000205", "video_name": "aec22f44-caf5-5e6c-b771-9e1a72e2ab42", "text": "\u5c0f\u5c71\u7f8a\u85cf\u5728\u704c\u6728\u4e1b\u4e2d\u3002"} +{"id": "7000206", "video_name": "a2fbbfbc-415d-50d2-a37b-c846e891c5e0", "text": "\u4e00\u540d\u7a7f\u7740\u9ed1\u8272\u8863\u670d\u7684\u7537\u5b50\u5c55\u793a\u7740\u4ed6\u7684\u7b14\u8bb0\u672c\u7535\u8111\u3002\u5c4f\u5e55\u4e0a\u663e\u793a\u4e86\u4e00\u4e2a\u8d5b\u535a\u670b\u514b\u88c5\u7532\u58eb"} +{"id": "7000207", "video_name": "28683db7-5455-5d37-84e4-71be2f57f5c5", "text": "\u6211\u4e0d\u662f\u4f60\u5931\u8e2a\u7684\u7ebd\u5e26\u3002\u8ba9\u6211\u544a\u8bc9\u4f60\u6211\u7684\u60f3\u6cd5\uff0c\u6211\u8ba4\u4e3a\u4f60\u5e94\u8be5\u5403\u4e00\u9897\u8584\u8377\u7cd6\u3002\u660e\u767d\u4e86"} +{"id": "7000208", "video_name": "f44b0093-5840-5fc8-8b84-431597de6544", "text": "\u4e00\u540d\u7a7f\u7740\u62ab\u98ce\u548c\u76d4\u7532\u7684\u9ab7\u9ac5\u6218\u58eb\u5728\u7231\u5c14\u5170\u5c71\u4e18\u4e0a\u5f92\u6b65\u65c5\u884c\uff0c\u6c14\u6c1b\u6c89"} +{"id": "7000209", "video_name": "b154312a-85bf-5535-a232-244685d6e236", "text": "FOREX\u4ea4\u6613\u673a\u5668\u4eba \u4fe1\u606f\uff1a\u4e0eJJ\u8fdb\u884c\u4ea4\u6613\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000210", "video_name": "50a6ab2b-3971-5f28-8164-1214ab17dc6a", "text": "1970\u5e74\u4ee3\u6ed1\u677f\u8fd0\u52a8\u5458\u9762\u90e8\u626d\u66f2\u75bc\u75db\u7684\u5feb\u901f\u8fd1\u8ddd\u79bb\u53d8\u7126\u955c\u5934\u3002"} +{"id": "7000211", "video_name": "819c9d65-bcd1-579b-b0f1-5f4103b5ac26", "text": "\u68ee\u6797\u91cc\u95ea\u8000\u7740\u65e0\u6570\u7684\u5c0f\u661f\u661f\u3002 \n\nSource sentence: I am looking forward to our next meeting. \n\u6211\u671f\u5f85\u7740\u6211\u4eec\u4e0b\u6b21\u89c1\u9762\u3002"} +{"id": "7000212", "video_name": "417e93f9-e6b0-515d-ad18-787eacef81e6", "text": "\u4e00\u4e2a\u7a7f\u7740\u957f\u9ed1\u888d\u7684\u7537\u4eba\u96d5\u50cf\uff0c\u6982\u5ff5\u827a\u672f\u6765\u81eaClive Barker\uff0cPolycount\u6bd4\u8d5b\u83b7\u80dc\u8005\uff0c\u8303\u5c3c\u5854\u65af\uff0c"} +{"id": "7000213", "video_name": "7bd13b67-a577-50f0-bdf7-fcd1db2f1095", "text": "90\u5e74\u4ee3\uff0c\u68a6\u5e7b\u6838\u5fc3\uff0c3D\u52a8\u753b\uff0c\u8fea\u58eb\u5c3c\uff0c\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u5154\u5b50\u5728\u5403\u9ea6\u7247\uff0c\u591a\u5f69\u7684\u9ea6\u7247\uff0c"} +{"id": "7000214", "video_name": "c2caecb7-4162-5f10-a782-f6bbb95b6649", "text": "\u4e00\u53ea\u767d\u8272\u7684\u8774\u8776\u4ece\u5730\u72f1\u5411\u4e0a\u98de\uff0c\u5411\u7740\u851a\u84dd\u7684\u5929\u7a7a\u98de\u53bb\u3002"} +{"id": "7000215", "video_name": "68f95ac6-5326-5034-872e-88918c48b7b3", "text": "\u8bf7\u5c55\u793a\u5e26\u6709\u8ba1\u65f6\u5668\u548c\u56db\u4e2a\u9009\u9879\u7b54\u6848\u7684\u5e38\u8bc6\u95ee\u9898\u3002"} +{"id": "7000216", "video_name": "2dce6b48-83d1-5700-a9de-8f5a06710044", "text": "\u9752\u5c11\u5e74\u7a7f\u7740\u76ae\u5939\u514b\uff0c\u7ea2\u9ed1\u8272\u83ab\u970d\u514b\u53d1\u578b\u3002\u4fe1\u606f\uff1aBangarang \uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000217", "video_name": "dd0560c2-6804-5574-896e-4d3add12ddf2", "text": "\u53cc\u7ffc\u98de\u673a\u5728\u80cc\u666f\u4e91\u5c42\u4e2d\u5b8c\u6210\u4e00\u4e2a\u73af\u5f62\u98de\u884c\u3002"} +{"id": "7000218", "video_name": "dc9e752c-d631-5a67-aa1a-689f1e299f93", "text": "\u5df4\u91cc\u4e0e\u91d1\u5b57\u5854\u81ea\u62cd\u3002"} +{"id": "7000219", "video_name": "d39e52a5-50a0-50c6-8b80-b7244f68cee0", "text": "\u6770\u514b\u548c\u6751\u6c11\u4eec\u7ecf\u5e38\u5728\u665a\u4e0a\u56f4\u7740\u706b\u805a\u96c6\uff0c\u542c\u4ed6\u7684\u6545\u4e8b\u3002"} +{"id": "7000220", "video_name": "2eb37161-d7e8-53c5-9b0a-f003188307b1", "text": "\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\uff0c\u4e2d\u5fc3\u4f4d\u7f6e\u5236\u4f5c\u4e00\u4e2a\u7d2b\u8272\u5149\u73af\uff0c\u5b83\u9010\u6e10\u8f6c\u53d8\u6210\u9ec4\u8272\u7684\u706b\u82b1\uff0c\u7136\u540e\u53d8\u6210\u4e00\u6761\u79fb\u52a8\u7684\u9053\u8def\uff0c"} +{"id": "7000221", "video_name": "35aed1d9-b055-528a-9f37-57cf36c754fd", "text": "\u4e00\u4e2a\u5706\u8138\u7684\u7537\u5b69\u54c0\u4f24\u5730\u770b\u7740\u67d0\u4e2a\u4e1c\u897f\u3002"} +{"id": "7000222", "video_name": "8028994b-153b-5380-9ad4-e38ba30e53e9", "text": "2023\u5e74\u6cd5\u56fd\u6d77\u5cb8\u7ebf\u7684\u822a\u62cd\u7167\u7247\u5728\u591c\u665a500\u7c73\u9ad8\u7a7a\u4e0b\u88ab\u6df1\u6df1\u5730\u541e\u6ca1\uff0c\u6708\u5149\u4e0b\u53ef\u89c1\u5730\u5e73\u7ebf\uff0c\u661f\u7a7a"} +{"id": "7000223", "video_name": "0fa99d4a-3765-54f3-b976-46fdcf0c2110", "text": "\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u76d8\u7f8e\u5473\u7684\u98df\u7269\uff08Aap khaye thali mein\uff09\uff0c\u6700\u540e\uff0c\u4e00\u4e2a\u5b69\u5b50\u9ad8\u5174\u5730\u4e0e\u5176\u4ed6\u4eba\u5206\u4eab\uff08Munne ko dena chaar\uff09\u3002\u5bbd"} +{"id": "7000224", "video_name": "6e09871d-14f3-55b5-9bb0-0f7e1f5fad13", "text": "\u4e00\u4e2a\u8eab\u6750\u5065\u7f8e\u7684\u7537\u4eba\u7a7f\u7740\u6cf3\u88e4\uff0c\u4ece\u60ac\u5d16\u4e0a\u8df3\u5165\u6c34\u4e2d\uff0c\u7535\u5f71\u955c\u5934\uff0c\u7535\u5f71\u706f\u5149\u3002"} +{"id": "7000225", "video_name": "21678754-7e99-5076-9785-978ee73ed5a9", "text": "\u9c7c\u6307\u5bfc\u5e74\u8f7b\u9c7c\uff0c\u5e76\u5206\u4eab\u4ed6\u7684\u667a\u6167\u3002\u4ee5\u5361\u901a\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7000226", "video_name": "90ba45b2-dd35-546c-a4ca-3a55e6f17253", "text": "\u4e00\u652f\u9ad8\u667a\u6167\u7684\u5916\u661f\u79cd\u65cf\u98de\u5165\u5730\u7403\u5927\u6c14\u5c42\uff0c\u4e3a\u4e00\u4f4d\u901d\u53bb\u7684\u540c\u4f34\u5b89\u606f\u3002"} +{"id": "7000227", "video_name": "12ad1e0f-34e8-5286-824f-497f91618da1", "text": "\u51e0\u4e2a\u7537\u4eba\u548c\u5973\u4eba\uff0c\u7ad9\u5728\u4e00\u7247\u767d\u6c99\u84dd\u6d77\u7684\u6d77\u6ee9\u4e0a\u3002"} +{"id": "7000228", "video_name": "7fc5df06-7c96-5217-bd10-5a05db4e05bf", "text": "\u4e1c\u4eac\u591c\u666f\uff0c\u9713\u8679\u706f\u95ea\u70c1\u660e\u4eae\u3002"} +{"id": "7000229", "video_name": "b56b848d-3511-55ab-8773-a9d7e1f4022b", "text": "\u4e00\u53ea\u9e21\u5728\u4e00\u4e2a\u6709\u5f88\u591a\u96ea\u7684\u5c71\u4e0a\u6ed1\u96ea\uff0c\u5b83\u8fd8\u7ffb\u4e86\u4e2a\u8ddf\u6597\u3002"} +{"id": "7000230", "video_name": "5d026b2b-3198-53d6-a951-8adb0af10b50", "text": "\u7a97\u5916\u4e0b\u96e8\uff0c\u4e00\u4f4d\u52a8\u6f2b\u5973\u5b69\u5750\u5728\u5e8a\u4e0a\u548c\u732b\u4e00\u8d77\u653e\u677e\u3002"} +{"id": "7000231", "video_name": "46089949-2c1b-5b63-9e58-8c178a1cc23d", "text": "\u8d85\u8be6\u7ec6\u3001\u53ef\u6015\u7684\u9ed1\u86d9\uff0c\u4e00\u4e2a\u4e07\u5723\u8282\u7535\u5f71\u573a\u666f\uff0c\u591c\u665a\u89c6\u9891\uff0c\u6708\u5149\u3002"} +{"id": "7000232", "video_name": "d74c8cf0-726e-5647-855d-9fb70a84c278", "text": "\u4e00\u6761\u5b81\u9759\u3001\u98ce\u666f\u5982\u753b\u7684\u5c0f\u6eaa\u6d41\u6dcc\u5728\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u5b83\u5e26\u6765\u5b81\u9759\u3001\u8212\u7f13\u3001\u548c\u5e73\u3001\u81ea\u7136"} +{"id": "7000233", "video_name": "48e6b502-b060-52d1-8784-3b1a905bb7a1", "text": "\u6ce1\u6cab\u5206\u5b50\u5206\u88c2\u6210\u591a\u4e2a\u5c0f\u6ce1\u6ce1\u3002"} +{"id": "7000234", "video_name": "4f61752e-f621-5806-ada2-c7c450c984a8", "text": "\u4e66\u7c4d\u5e7f\u544a\uff0c\u5c4f\u5e55\u4e2d\u592e\u6709\u4e00\u672c\u4e66\uff0c1920\u5e74\u4ee3\u7f8e\u56fd\u5e7f\u544a\u98ce\u683c\u3002"} +{"id": "7000235", "video_name": "16a88cb9-45b2-5f4d-86e2-0c072d3f3e6d", "text": "\u5b89\u5409\u4e3d\u5a1c\u00b7\u6731\u8389\u626e\u6f14\u96f7\u795e\u7d22\u5c14\uff0c\u8d85\u903c\u771f\uff0c\u9ad8\u5bf9\u6bd4\u5ea6\u3002"} +{"id": "7000236", "video_name": "ee4213f6-ef88-56fe-82a3-f631caf8b012", "text": "\u91d1\u53d1\u5973\u5b50\u76f4\u76f4\u7684\u5934\u53d1\uff0c\u60ca\u6050\u5730\u9003\u8dd1\uff0c\u5728\u9ed1\u6697\u7684\u623f\u95f4\u91cc\u3002"} +{"id": "7000237", "video_name": "553037bd-9b1a-5fd2-8213-b42360b6979b", "text": "\u4e00\u4e2a\u7d2b\u8272\u773c\u775b\u7684\u7537\u5b69\u4ee5\u52a8\u6f2b\u7684\u65b9\u5f0f\u7741\u5f00\u773c\u775b\u7684\u7279\u5199\u955c\u5934\u3002"} +{"id": "7000238", "video_name": "f306da17-13c7-548e-b0f2-48be1d08cbbe", "text": "\u4e00\u5bb6\u4eba\u6b63\u5728\u4ed6\u4eec\u5bb6\u7684\u82b1\u56ed\u91cc\u73a9\u3002"} +{"id": "7000239", "video_name": "0ae56d7b-8fd0-579d-93ff-a73adfa6aee0", "text": "\u82b1\u56ed\u91cc\u6709\u5fae\u7b11\u7684\u5973\u5b69\uff0c\u6307\u7532\u827a\u672f\uff0c\u6d45\u8272\u8c03\u3002"} +{"id": "7000240", "video_name": "72fda1fc-0eb9-5421-ba0a-d8eb7be69bbc", "text": "\u5706\u5f62\u9f99\u51e4\u7389\u5760"} +{"id": "7000241", "video_name": "f7749982-41ce-5423-a067-d8fefe9da85a", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u9a6c\u5c14\u79d1\u7ef4\u4e9a\u5438\u8840\u9b3c\uff0c\u6574\u6d01\u7684\uff0c\u5149\u6ed1\u7684\u6df1\u68d5\u8272\u5934\u53d1\u548c\u5e72\u51c0\u7684\u80e1\u987b\uff0c"} +{"id": "7000242", "video_name": "f33bbe80-d68f-53ea-8de5-c3dc4cdf41f7", "text": "\u6c7d\u8f66\u5728\u8def\u4e0a\u884c\u9a76\uff0c\u4fa7\u89c6\u56fe\u3002"} +{"id": "7000243", "video_name": "9f89abe1-6cc6-5325-b23d-8b6fd8d55079", "text": "\u4e00\u4e2a\u57fa\u4e8e\u80f6\u539f\u86cb\u767d\u7684\u7c89\u672b\u4ea7\u54c1\u6a21\u578b\uff0c\u5176\u4e2d\u6709\u4e00\u4e2a\u76d2\u5b50\u3002\u8f83\u6697\u7684\u4e3b\u9898\uff0c\u6ca1\u6709\u4eba\u6216\u6587\u672c\u3002"} +{"id": "7000244", "video_name": "2f829923-1591-55e5-a1c9-642803580d85", "text": "\u4e00\u4e2a\u7537\u5b69\u56de\u5230\u5bb6\uff0c\u5bb6\u4eba\u90fd\u5f88\u9ad8\u5174\u770b\u5230\u4ed6\u56de\u6765\u4e86\u3002"} +{"id": "7000245", "video_name": "36e1038a-2514-528f-b082-58e14a41691d", "text": "\u4e1c\u4eac\u590d\u4ec7\u8005\u89d2\u8272\u4f0a\u90a3\u7684\u6218\u6597\u573a\u666f"} +{"id": "7000246", "video_name": "249e0a28-3875-53c9-b238-d9ef131fb0fc", "text": "\u4e24\u4e2a\u5149\u5b50\u548c\u86af\u8693\u6d1e\u7684\u91cf\u5b50\u89c6\u89d2"} +{"id": "7000247", "video_name": "a0e8c3cd-e91f-5787-af15-468b46788f95", "text": "\u4e00\u4efd\u6709\u756a\u8304\u9171\u548c\u86cb\u9ec4\u9171\u7684\u6c49\u5821\u914d\u85af\u6761\u3002"} +{"id": "7000248", "video_name": "12dabe30-9168-5e83-969b-6d0e2e7dc5f4", "text": "\u4e00\u4e2a\u5927\u867e\u5728\u9505\u91cc\u84b8\u3002"} +{"id": "7000249", "video_name": "30480930-7d37-58f1-acfe-c3cdf6351497", "text": "\u4e00\u68f5\u6811\u5728\u65f6\u95f4\u7684\u63a8\u79fb\u4e0b\u957f\u51fa\u65b0\u53f6\u5b50\u76845\u79d2\u89c6\u9891\u3002"} +{"id": "7000250", "video_name": "5894e90d-05dd-5cbd-aa61-a198b98d5ca8", "text": "\u7728\u773c\u4e4b\u95f4\uff0c\u8fbe\u8fbe\u4e3b\u4e49\uff0c\u66fc\u00b7\u96f7\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7000251", "video_name": "e9336b0b-5c0f-5618-b971-911ce384e005", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u5370\u5ea6\u7537\u5b69\u5728\u6469\u5929\u5927\u697c\u4e2d\u95f4\u6253\u7535\u8bdd\u3002"} +{"id": "7000252", "video_name": "3407ec9b-21c9-557f-b232-f7fca95d1e78", "text": "\u4e2d\u56fd\u7684\u548c\u5c1a\u5728\u505a\u592a\u6781\u3002\u7ed8\u753b\u98ce\u683c\u3002"} +{"id": "7000253", "video_name": "cac02e38-af85-59fd-a815-51194f73a3fc", "text": "\u963f\u5bcc\u6c57\u623f\u5c4b\u7a7a\u4e2d\u5e73\u9762\u56fe\u534a\u5929\u65f6\u95f4\u3002"} +{"id": "7000254", "video_name": "d3d6cbbc-b17e-5482-ab52-560e571eb958", "text": "\u5df4\u9ece\uff0c\u6cd5\u56fd1920\u5e74\u7684\u4e00\u6761\u8857\u9053\uff0c\u5f53\u5730\u4eba\u5728\u884c\u8d70\uff0c\u5546\u5e97\u7684\u8fc7\u9053\u3002"} +{"id": "7000255", "video_name": "b7a942fe-8f8a-5ff9-8816-b762e5c36af9", "text": "\u4e00\u53ea\u9ed1\u8272\u5e26\u515c\u5e3d\u7684\u4eba\u5f71\u5728\u4e00\u7247\u6b7b\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u4e00\u53ea\u767d\u8272\u7684\u732b\u5934\u9e70\u5728\u4ed6\u65c1\u8fb9\u98de"} +{"id": "7000256", "video_name": "e2f3feea-866c-5d23-a27f-251974a59577", "text": "\u76f8\u673a\u79fb\u52a8\u5728\u8857\u4e0a\uff0c\u8f66\u8f86\u79fb\u52a8\uff0c\u76f8\u673a\u4ece\u9876\u90e8\u62cd\u6444\u3002"} +{"id": "7000257", "video_name": "6858f51c-6f4a-5ad7-89a1-a9a4f54e92a6", "text": "\u68d5\u6988\u6811\u5728\u5fae\u98ce\u4e2d\u8f7b\u8f7b\u6447\u6643\u3002 \n\nSource sentence: Can you please send me the document again? Message: 2 Attachment"} +{"id": "7000258", "video_name": "1ed9661d-9c85-51ef-af1b-109a2e9bc74c", "text": "\u5e73\u9759\u7684\u573a\u666f\u3002\u65e0\u9700\u62c5\u5fc3\u3002"} +{"id": "7000259", "video_name": "a50f7ff4-03fd-52c8-92b9-97a00a212d1a", "text": "\u4e00\u5bf9\u4eba\u6b63\u5728\u901a\u8fc7\u4e00\u4e2a\u900f\u660e\u7684\u73bb\u7483\u96a7\u9053\uff0c\u4ece\u4e0a\u65b9\u7684\u65e0\u4eba\u673a\u89c6\u89d2\u53ef\u4ee5\u770b\u5230\u56fe\u50cf\u4e2d\u795e\u79d8\u800c\u6050\u6016\u7684\u6c1b\u56f4\u3002"} +{"id": "7000260", "video_name": "3d7a5b98-8c8e-5414-95cf-3a2f672a68e4", "text": "\u4e00\u4f4d\u5973\u58eb\u82b1\u8d392\u5206\u949f\u65f6\u95f4\u5411\u4e00\u4f4d\u8001\u4eba\u89e3\u91ca\u6587\u4ef6\u3002"} +{"id": "7000261", "video_name": "b6e01c5a-1458-5ade-a47f-ca55f923c15b", "text": "\u5728\u5b5f\u8cb7\u64c1\u64e0\u7684\u8857\u9053\u4e0a\uff0c\u6578\u767e\u4eba\u64e0\u5728\u4e00\u8d77\u3002"} +{"id": "7000262", "video_name": "57d45e6f-5e1d-5d0a-bd90-7a33b64b5787", "text": "\u5965\u5730\u5229\u753b\u5bb6\u8df3\u7740\u201c\u5821\u5792\u4e4b\u591c\u201d\u821e\u8e48\u3002"} +{"id": "7000263", "video_name": "c10c5120-a4f3-5521-95e0-7467014af56b", "text": "\u4e00\u4e2a\u62ff\u7740\u73a9\u5177\u98de\u673a\u7684\u5b69\u5b50\u3002\u4ee54K\u9ad8\u6e05\u753b\u8d28\u5448\u73b0\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7000264", "video_name": "18b76eba-5a3d-530f-a77e-fda680fa4a0c", "text": "\u72fc\u7684\u4e00\u53cc\u773c\u775b\u7684\u7279\u5199\u955c\u5934\uff0c\u4ee5\u65f6\u95f4\u52a0\u901f\u65b9\u5f0f\u5448\u73b0\u3002"} +{"id": "7000265", "video_name": "efd9a572-3573-521f-a2fe-81ec8e111460", "text": "\u4e00\u540d\u5916\u661f\u5973\u6027\u5728\u4e00\u500b\u9ed1\u767d\u661f\u7403\u4e0a\u8df3\u8457\u5947\u602a\u7684\u821e\u8e48\uff0c\u5468\u570d\u6709\u8a31\u591a\u5916\u661f\u751f\u7269\uff0c\u4f7f\u7528\u56fa\u5b9a"} +{"id": "7000266", "video_name": "43f171da-8d5a-5e61-b033-6eda8f2d0c52", "text": "\u4e00\u6839\u71c3\u70e7\u7684Palo Santo\u653e\u5728\u5927\u7406\u77f3\u684c\u5b50\u4e0a\u7684\u76d8\u5b50\u91cc\uff0c\u767d\u8272\u7684\u7ec6\u70df\u7f13\u7f13\u98d8\u51fa\uff0c\u5728\u67d4\u548c\u7684"} +{"id": "7000267", "video_name": "1726800b-5a45-5cde-87a7-e6a0a6bf0848", "text": "BBC\u81ea\u7136\u7eaa\u5f55\u7247\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u62e5\u6709\u624b\u81c2\u548c\u817f\u7684\u84dd\u8393\u4eba\uff0c\u753b\u9762\u7f8e\u4e3d\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c8k\uff0c\u6e05\u6670\u7684"} +{"id": "7000268", "video_name": "7989df8f-1d9a-5e5d-9fbc-31459ae54be9", "text": "\u8d85\u4eba\u662f\u5982\u4f55\u5f97\u5230\u4ed6\u7684\u529b\u91cf\u7684\u3002"} +{"id": "7000269", "video_name": "90cf4792-903f-54a6-9889-451c38d29588", "text": "\u4e00\u4e2a\u5b69\u5b50\u62ff\u7740\u4e00\u672c\u4e66\u770b\u7740\u4ed6\u7684\u8001\u5e08\u3002"} +{"id": "7000270", "video_name": "468117bb-8b1a-59d8-9616-a916b4e67909", "text": "\u751f\u547d\u5c31\u50cf\u662f\u4e00\u652f\u7b14\u5728\u7eb8\u4e0a\u3002"} +{"id": "7000271", "video_name": "22019509-8c0f-502d-b527-b87445b5b768", "text": "\u4e00\u4e32\u952e\u76d8\u6309\u952e\u3002\u4fe1\u606f\uff1aAPTD\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000272", "video_name": "a24b20fe-03ba-5992-8748-82960ff67e40", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5f00\u6717\u7684\u7537\u5b69\u8482\u59c6\u5728\u4ed6\u7684\u82b1\u56ed\u91cc\u6253\u677f\u7403\u3002\n\nSource sentence: My favorite color is blue because it reminds me of the ocean. \n\n\u6211\u6700\u559c"} +{"id": "7000273", "video_name": "506f6b01-c8c0-5681-bb51-ecb323e8d8b9", "text": "\u7b2c\u4e09\u4eba\u79f0\u89c6\u89d2\u4e0b\u770b\u5230\u81ea\u5df1\u6f02\u6d6e\u5728\u9ed1\u6697\u7a7a\u95f4\u4e2d\u3002"} +{"id": "7000274", "video_name": "6a4b82ea-2745-56d7-8c39-11325b52411f", "text": "\u5728\u7a7a\u7075\u5c71\u8c37\u7684\u4e2d\u5fc3\uff0c\u6709\u4e00\u4e2a\u7531\u900f\u660e\u6c34\u6676\u5236\u6210\u7684\u5de8\u5927\u57ce\u5821\u3002"} +{"id": "7000275", "video_name": "5bd151aa-8f8c-546b-bbb4-5f755b1de1f7", "text": "\u50cf\u7d20\u7f8e\u672f\uff0c\u9ed1\u767d\uff0c\u5251\uff0c\u6218\u58eb\uff0c\u7537\u5b69\uff0c\u5fae\u7b11\u3002"} +{"id": "7000276", "video_name": "c9fecf61-9b0a-522d-ad03-081974cf802d", "text": "\u98ce\u8f7b\u8f7b\u5730\u6447\u6643\uff0c\u4ee5\u7f13\u6162\u7684\u8fd0\u52a8\u3002"} +{"id": "7000277", "video_name": "9908c7cd-a786-5c6e-9c47-61bdb2065aef", "text": "\u9a6c\u620f\u56e2\u6742\u6280\u6f14\u5458\u8df3\u821e\u7684\u89c6\u9891\uff0c\u8272\u5f69\u7f24\u7eb7\uff0c\u5b09\u76ae\u8272\u5f69\u3002\u4fe1\u606f\uff1a\u9a6c\u620f\u75af\u72c2\uff08\u5b57"} +{"id": "7000278", "video_name": "df2eb1ce-c4b1-57dc-879d-7d3eeebe5fe2", "text": "\u4e00\u53ea\u5efa\u7b51\u5927\u5c0f\u7684\u732b\u6b63\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "7000279", "video_name": "dfa12214-e183-5592-91ca-f37afcd29397", "text": "\u7ebd\u7ea6\u5730\u94c1\u4e0a\u7684\u4eba\u4eec\u611f\u5230\u5bb3\u6015\uff0c\u9ed1\u6697\u3001\u9634\u6c89\u3001\u68a6\u5883\u822c\u768460\u5e74\u4ee3\u6050\u6016\u573a\u666f\u3002"} +{"id": "7000280", "video_name": "e0ba97f2-1e12-5e97-91d8-7494c4a7ced5", "text": "\u5409\u4ed6\u624b\u5728\u82b1\u7530\u91cc\u5954\u8dd1\u5fae\u7b11\uff0c\u7535\u5f71\u822c\u7684\u98ce\u683c"} +{"id": "7000281", "video_name": "786deee5-214a-5ef2-bd30-21e2169576fd", "text": "\u4fdd\u7f57\u00b7\u6c83\u514b\u548c\u8303\u00b7\u8fea\u585e\u5c14\u5c06\u57282023\u5e74\u7684\u7535\u5f71\u4e2d\u4f7f\u7528\u89c6\u9891\u548c3D\u52a8\u753b\u6548\u679c\u3002"} +{"id": "7000282", "video_name": "48ff9a92-d46e-5e77-8f8e-2e9b55bc8bae", "text": "\u51a5\u60f3\uff0c\u611f\u53d7\u8109\u8f6e\u4e2d\u5b87\u5b99\u7684\u80fd\u91cf\u3002"} +{"id": "7000283", "video_name": "532e8bf4-05d6-5f55-b172-390e45902984", "text": "\u4e00\u4e2a\u53e4\u602a\u7684\u4e3b\u6301\u4eba\u5728\u4e00\u4e2a\u5145\u6ee1\u5386\u53f2\u6587\u7269\u7684\u623f\u95f4\u91cc\u8bb2\u8bdd\u3002"} +{"id": "7000284", "video_name": "71d5152c-c82c-51b5-994f-4a7166156248", "text": "\u5357\u5b8b\u65f6\u671f\uff0c\u626c\u5b50\u6c5f\u5357\u90e8\u4e00\u4e2a\u5c0f\u6751\u5e84\u53d1\u751f\u4e86\u4e00\u8d77\u79bb\u5947\u7684\u8c0b\u6740\u6848\u3002\u5728\u6751\u5e84\u5165\u53e3\u7684\u7a3b\u7530\u65c1\uff0c\u4e00\u4e2a"} +{"id": "7000285", "video_name": "85bbf6cb-dd1d-5c78-8aaf-bbedeca29c7a", "text": "GTA V\u6e38\u620f\u4e2d\u7684\u8131\u8863\u821e\u4ff1\u4e50\u90e8\u73a9\u6cd5"} +{"id": "7000286", "video_name": "2cfa0ceb-f58d-5663-a5d6-a140f2ff4c7d", "text": "\u5192\u9669\u8df3\u5165\u672a\u77e5\u7684\u9886\u57df\uff0c\u89c6\u5dee\u89c6\u89d2\u3002"} +{"id": "7000287", "video_name": "948ddf08-4dd4-5efa-b62f-5da8c565ebce", "text": "\u964d\u566a\u3001\u884d\u5c04\u5149\u6805\u3001HDR\u9971\u548c\u5ea6\u3001\u8ff7\u4eba\u7684\u80cc\u666f\u865a\u5316\u548c\u7535\u5f71\u822c\u7684\u7167\u660e\u3002"} +{"id": "7000288", "video_name": "c4c19f37-6068-5122-82b1-6dffbe577f29", "text": "10\u79d2\u7684\u89c6\u9891\u5c55\u793a\u533b\u751f\u7684\u89d2\u8272\u662f\u4ec0\u4e48\u3002"} +{"id": "7000289", "video_name": "ef399c83-3432-5ab1-9e9e-57b61a59e625", "text": "\u4ece\u592a\u7a7a\u653e\u5927\u5230\u5317\u7f8e\u7684\u4e00\u7247\u68ee\u6797\u30024K"} +{"id": "7000290", "video_name": "997b8c4e-789f-551f-bee9-2d0a5ead1984", "text": "\u4e00\u573a\u5728\u8272\u5f69\u6591\u6593\u7684\u9897\u7c92\u72b6\u7535\u5f71\u4e2d\u7684\u6c7d\u8f66\u8ffd\u9010\u3002"} +{"id": "7000291", "video_name": "6dc9f281-e74a-522e-bace-d35c05fe8698", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6309\u4e0b\u7684\u5927\u7ea2\u8272\u6309\u94ae\uff0c\u7f8e\u56fd\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7000292", "video_name": "e6be71b9-0e85-54e8-af9e-37589ea7b20f", "text": "\u8d5b\u535a\u670b\u514b\u9ed1\u9ec4\u8272\uff0c\u5168\u9ad8\u7537\u4eba\uff0c\u8d22\u52a1\u3002"} +{"id": "7000293", "video_name": "57c7738c-55eb-5aad-accd-3d5f22288c54", "text": "\u5c55\u793a\u827e\u767b\u548c\u739b\u96c5\u7684\u65e5\u5e38\u751f\u6d3b\uff0c\u827e\u767b\u5728\u82b1\u56ed\u5e2e\u52a9\u4ed6\u7684\u6bcd\u4eb2\uff0c\u4ed6\u4eec\u4e00\u8d77\u5206\u4eab\u7684\u6b22\u7b11\u548c\u5468\u56f4\u53d1\u751f\u7684"} +{"id": "7000294", "video_name": "17144553-97b8-5258-a366-e7e628f04249", "text": "\u96be\u4ee5\u7f6e\u4fe1\u7684\u84dd\u8272\u6d77\u6d6a\uff0c\u7f8e\u4e3d\u7684\u6d77\u6ee9\u3002ILE DE LA REUNION\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7000295", "video_name": "f98083cd-9299-51fb-b0e7-a98bbbbd2932", "text": "\u975e\u6d32\u5b66\u751f\u5728\u9ad8\u79d1\u6280\u6559\u5ba4\u4e2d\u4e13\u5fc3\u5b66\u4e60\u3002"} +{"id": "7000296", "video_name": "ae514558-524b-5eed-9d44-92932c090a38", "text": "\u4e00\u5e45\u751f\u52a8\u7684\u63d2\u753b\u6355\u6349\u4e86\u6392\u706f\u8282\u7684\u7cbe\u534e\uff0c\u7279\u8272\u662f\u4e00\u4e2a\u95ea\u95ea\u53d1\u5149\u7684\u706f\u76cf\uff08\u4f20\u7edf\u6cb9\u706f\uff09\uff0c\u6563\u53d1"} +{"id": "7000297", "video_name": "29350f6b-3912-5200-87c3-a68ec9b79375", "text": "\u4e00\u4e2a\u7ad9\u5728\u88c5\u9970\u7740\u53d1\u5149\u82b1\u6735\u7684\u8349\u5730\u4e0a\u7684\u7537\u5b69\uff0c\u6ca1\u6709\u592a\u591a\u98ce\uff0c\u5fae\u5fae\u52a8\u4f5c\uff0c\u9ad8\u5206\u8fa8\u73872k\uff0c\u8fea\u58eb"} +{"id": "7000298", "video_name": "271c8876-2a23-5197-acea-463360b3eb42", "text": "PRO100\u5efa\u7b51\u5de5\u4f5c\u5ba4\u91c7\u7528\u8d5b\u535a\u670b\u514b\u98ce\u683c\u5236\u4f5c\u7684\u52a8\u753b\u6807\u5fd7\u3002"} +{"id": "7000299", "video_name": "a9bba34e-9968-5801-ab47-3b57cc6e444d", "text": "\u5c55\u793a\u5b87\u5b99\u4e2d\u4e0d\u540c\u989c\u8272\u7684\u7f8e\u4e3d\u661f\u661f\u3002"} +{"id": "7000300", "video_name": "faf4b2d0-4336-54e3-9ce4-78fec3557226", "text": "\u4e00\u53ea\u706b\u72d0\u5728\u591c\u665a\u7a7f\u8fc7\u68ee\u6797\uff0c\u8fea\u58eb\u5c3c\u52a8\u753b\u3002"} +{"id": "7000301", "video_name": "bf2fc93b-8210-5921-a5c2-73d7c9340aed", "text": "\u4f26\u6566\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u8857\u9053\u7684\u771f\u5b9e\u7167\u7247\uff0c\u6709\u8fd0\u52a8\u4e2d\u7684\u9a6c\u5339\u548c\u4eba\u4eec\uff0c\u9760\u8fd1\u6cf0\u6664\u58eb\u6cb3\u3002"} +{"id": "7000302", "video_name": "4e70f943-fd6a-58cd-bf19-3786ec1a9f0f", "text": "\u9ed1\u6697\u6df7\u6c8c\u7684\u5f69\u8272\u73bb\u7483\uff0c\u4ee5\u65e0\u5c3d\u5b87\u5b99\u4e3a\u8363\u3002"} +{"id": "7000303", "video_name": "408bff1d-466a-5697-a4a8-ce61c788dac3", "text": "\u8f6e\u5b50\u4e0a\u7684\u70df\u96fe\u79fb\u52a8\u6548\u679c"} +{"id": "7000304", "video_name": "1a46b8f5-c459-5e7c-8485-5518e02adc9c", "text": "\u620f\u5267\u6027\u7684\u8f6c\u6362\u5230\u6587\u827a\u590d\u5174\u827a\u672f\u3001\u79d1\u5b66\u53d1\u73b0\u548c\u54f2\u5b66\u8ba8\u8bba\u7684\u573a\u666f\uff0c\u8c61\u5f81\u7740\u77e5\u8bc6\u548c\u542f\u8499\u7684\u91cd"} +{"id": "7000305", "video_name": "fb5cd859-63b4-5ee5-99a0-b8d47dc475c6", "text": "\u4e00\u4e2a\u4f53\u80b2\u573a\u7684\u4eba\u7fa4\u6325\u821e\u7740\u4e00\u4e9b\u5c0f\u7684\u7c89\u8272\u3001\u7d2b\u8272\u6216\u6df1\u84dd\u8272\u7684\u65d7\u5e1c\uff0c\u7531\u9759\u6001\u76f8\u673a\u62cd\u6444\u524d"} +{"id": "7000306", "video_name": "14dec744-a11c-53be-88dc-10acedad303f", "text": "\u871c\u8702\u5728\u82b1\u4e0a\uff0c\u53d8\u5f62\u6210\u5728\u8def\u4e0a\u7684\u51fa\u79df\u8f66\u3002"} +{"id": "7000307", "video_name": "0fbc3ba4-3a19-5590-9449-8cf7cefc19b7", "text": "\u8fea\u62c9\u59c6\u5854\u5c3c\u4f0a\u6717\u5854\u54c8\u746a\u4e39\u5e02\u5728\u4e0b\u96e8\u3002"} +{"id": "7000308", "video_name": "41cf06e2-382d-5ba2-ba9f-ec362a3fec2e", "text": "\u4e00\u4e2a\u5deb\u5e08\u5728\u91c7\u6458\u5361\u901a\u8611\u83c7\u3002"} +{"id": "7000309", "video_name": "16c38bd1-df09-52ed-a7ed-9dd6f5afa903", "text": "\u57ce\u5e02\u5929\u9645\u7ebf\uff0c\u706f\u5149\u95ea\u70c1\u3002\u4fe1\u606f\uff1aUBiX\uff08\u5b57\u4f53\uff1a\u5305\u8c6a\u65af\uff09\u3002"} +{"id": "7000310", "video_name": "7eb03a69-f403-5bfb-840a-23f24b561c0f", "text": "\u5df4\u798f\u6885\u4e0e\u4e03\u4e2a\u5973\u5deb\u5728\u665a\u4e0a\u7684\u68ee\u6797\u4e2d\u56f4\u7740\u7bdd\u706b\u8df3\u821e\uff0c\u753b\u9762\u7ec6\u8282\u4e30\u5bcc\uff0c\u9ad8\u6e05\u6670"} +{"id": "7000311", "video_name": "16e5101b-d8d5-512c-b467-7d5300da75c4", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u624b\u91cc\u62ff\u7740\u4e00\u7f50\u55b7\u7740\u538b\u7f29\u6ce1\u6cab\u7684\u6c14\u96fe\u7f50\uff0c\u76f4\u63a5\u55b7\u5728\u4e00\u4e2a\u7b11\u7740\u7684\u8001\u5e74\u5973"} +{"id": "7000312", "video_name": "ecdc5957-6fa5-5879-8164-4cc754039959", "text": "\u8ff7\u5e7b\u7684\u7b14\u58a8\u6709\u673a\u6d41\u4f53\u5f62\u6001\u7684\u5efa\u7b51\u8bbe\u8ba1\u3002"} +{"id": "7000313", "video_name": "405abeb0-13a9-52b2-b186-9f91df08ccd1", "text": "\u5e05\u6c14\u7684\u7537\u5b69\u6234\u7740\u8033\u673a\u5728\u516c\u4ea4\u8f66\u7a97\u8fb9\u542c\u97f3\u4e50\uff0c\u4ee5\u8d85\u73b0\u5b9e\u7684\u98ce\u683c\u5448\u73b0\uff0c\u80cc\u666f\u662f\u6df1\u591c\u7684"} +{"id": "7000314", "video_name": "ac1d3eff-3b53-5030-8c8d-0e072211709c", "text": "\u4e00\u4e2a\u5973\u5b69\u4f18\u96c5\u5730\u5403\u7740\u7cd6\u679c\u7cd6\u679c\u3002"} +{"id": "7000315", "video_name": "7b99f53e-79b6-555d-b5cc-de0831f7fda9", "text": "\u51c6\u5676\u5c14\u5927\u4ed3\u9f20\u7a7f\u7740\u8759\u8760\u4fa0\u4e07\u5723\u8282\u670d\u88c5\u8df3\u821e\u3002 \n\nSource sentence: Can you please pass me the salt and pepper? \n"} +{"id": "7000316", "video_name": "382af8d7-53be-5677-ad67-5a9a3661fe22", "text": "\u8f66\u7978\u671f\u95f4\u6c7d\u8f66\u540e\u5ea7\u4e0a\u4e24\u4e2a\u7a7f\u7740Gimp\u5957\u88c5\u7684\u4eba\u3002"} +{"id": "7000317", "video_name": "8751b1be-27df-5e67-9fb1-68e960d6d8d2", "text": "\u6d77\u4e0a\u6709\u8bb8\u591a\u8239\u53ea\u3002\u89c6\u9891\u957f\u5ea6\u4e3a7\u79d2\u3002\u5206\u8fa8\u7387\u4e3a8k\u3002"} +{"id": "7000318", "video_name": "e7b38ef6-c227-5ae3-918f-20f6873a58c2", "text": "\u72ee\u5b50\u5728\u730e\u5154\u3002\u5411\u4e0a\u5e73\u79fb\u53f3\u4fa7\u3002"} +{"id": "7000319", "video_name": "065ab8cc-b92a-547d-be9c-c4bba20bb28f", "text": "\u5728\u5362\u57fa\u8bfa\u00b7\u7ef4\u65af\u5eb7\u8482\u98ce\u683c\u4e0b\uff0c\u91c7\u7528\u5e26\u6709\u9897\u7c92\u611f\u7684\u9ed1\u767d\u8272\u8c03\uff1a\u7f13\u6162\u79fb\u52a8\uff0c\u7a7f\u8fc7"} +{"id": "7000320", "video_name": "c3f0f843-1ede-5ce9-8dbc-140678c701fb", "text": "\u4e00\u8d77\u70d8\u7119\uff0c\u5230\u5904\u6492\u9762\u7c89\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\uff0c4K\uff0c\u5361\u901a\u3002"} +{"id": "7000321", "video_name": "b96e2476-d7d6-523a-a0d6-78c33f2c6d0c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u5b69\u548c\u7537\u5b69\u5728\u7c89\u8272\u5929\u7a7a\u4e0b\uff0c\u501f\u52a9\u8033\u673a\u4e00\u8d77\u6b23\u8d4f\u97f3\u4e50\uff0c\u6b23\u8d4f\u7f8e\u4e3d\u7684\u6708\u4eae\u3002"} +{"id": "7000322", "video_name": "071215de-b0b5-5361-84a8-f65e8e413843", "text": "\u5f00\u53d1\u4eba\u5458\u6b63\u5728\u4f7f\u7528\u9524\u5b50\u548c\u87ba\u4e1d\u5200\u5236\u4f5c\u5f00\u653e\u5f0f\u8ba1\u7b97\u673a\u673a\u7bb1\u3002"} +{"id": "7000323", "video_name": "3bd6262d-bd21-534e-81b7-e1be2f5b9be9", "text": "\u8857\u673a\u6e38\u620f\u7c7b\u578b\u7684\u6b66\u58eb\u673a\u5668\u4eba\u7ad9\u572890\u5e74\u4ee3\u7684\u4e1c\u4eac\u8857\u5934\u3002"} +{"id": "7000324", "video_name": "2751dbae-e5b7-561f-bf2f-d7f1a8767d9c", "text": "\u521b\u9020\u9ed1\u8272\u7684\u5929\u7a7a\uff0c\u53ea\u6709\u661f\u661f\u53ef\u89c1\u3002\u56fe\u50cf\u98ce\u683c\u3002"} +{"id": "7000325", "video_name": "3632974e-b195-5262-848d-0d2326a2d56f", "text": "\u5723\u8bde\u8001\u4eba\u5728\u96ea\u6a47\u4e0a\uff0c\u592b\u4eba\u5750\u5728\u4ed6\u7684\u819d\u4e0a\u3002"} +{"id": "7000326", "video_name": "9b329e93-1c38-5ac7-8d5b-63bd019304ca", "text": "\u6709\u4e00\u53ea\u732b\u548c\u4e00\u4e2a\u5973\u5b69\u4ee5\u53ca\u4e00\u53ea\u72d7\u4f4f\u5728\u4e00\u95f4\u623f\u5b50\u91cc\u3002"} +{"id": "7000327", "video_name": "f74efb76-c05c-5e85-abd2-5d734945424f", "text": "\u5979\u548c\u5c0f\u5b69\u5b50\u4e00\u8d77\u73a9\u800d\uff0c\u7528\u5979\u6e29\u6696\u7684\u7b11\u58f0\u8ba9\u4ed6\u4eec\u5f00\u5fc3\u3002"} +{"id": "7000328", "video_name": "df483fab-881d-5e21-977a-ef6fb076c363", "text": "\u5728\u6d77\u6ee9\u4e0a\u7a7f\u6bd4\u57fa\u5c3c\u7684\u5973\u5b69\u8df3\u821e\u3002"} +{"id": "7000329", "video_name": "4637ebb6-c058-52e8-9e0c-e84b1953d955", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u627e\u5230\u4e86\u4e00\u4e2a\u6c14\u7403\u3002"} +{"id": "7000330", "video_name": "3ca7be62-6bd8-5637-ab6c-8869109000ef", "text": "\u7f8e\u4e3d\u7684\u97e9\u56fd\u5973\u5b69\u548c\u72d7\u5411\u524d\u8d70\uff0c\u773c\u775b\u5fe7\u8651\u5730\u626b\u89c6\u5468\u56f4\uff0c\u5411\u53f3\u5411\u5de6\u6447\u5934\u3002"} +{"id": "7000331", "video_name": "360587df-057f-5ec9-994e-f96615c16266", "text": "\u5728\u4e2d\u6b27\u7684\u547d\u540d\u65e5\u6d3e\u5bf9\u4e0a\uff0c\u6211\u7684\u59d0\u59d0\u53c2\u52a0\u4e86\u3002"} +{"id": "7000332", "video_name": "557944c6-6597-5cb4-b626-d1b5723ab67e", "text": "\u4e00\u80a1\u5de8\u5927\u7684\u9f99\u5377\u98ce\u5939\u6742\u7740\u96f7\u7535\u5373\u5c06\u5230\u6765\u3002"} +{"id": "7000333", "video_name": "5de47c95-1d26-59f5-ac5c-86b140eb2d2b", "text": "\u4e00\u4e2a\u7537\u4eba\u8bd5\u56fe\u5411\u571f\u8457\u4eba\u8bb2\u8ff0\u67d0\u4ef6\u4e8b\u60c5\u3002"} +{"id": "7000334", "video_name": "17c158c3-5e74-5c35-8545-89757f96fee7", "text": "\u591a\u79cd\u5f62\u72b6\u7684\u661f\u7cfb\u76f8\u4e92\u821e\u52a8\u3002"} +{"id": "7000335", "video_name": "6d595a20-a692-5b58-ad23-e0497dbc7021", "text": "\u521b\u9020\u51fa\u795e\u5947\u7684\u4e8b\u7269\uff0c\u95ea\u4eae\u7684\u9b54\u6cd5\u4ece\u4e66\u4e2d\u663e\u73b0\u3002"} +{"id": "7000336", "video_name": "eb6ec273-1dc2-5094-bc53-8e8fc6f654c0", "text": "\u65e9\u4e0a\u5728\u6811\u6797\u91cc\u8df3\u821e\u7684\u5973\u5b69"} +{"id": "7000337", "video_name": "1cc27f08-1251-5fab-b057-380dfa4494f5", "text": "3D\u56fe\u50cf\uff1a\u968f\u7740\u9732\u5a1c\u5f00\u59cb\u4e3a\u68ee\u6797\u751f\u7269\u8bb2\u7761\u524d\u6545\u4e8b\uff0c\u63cf\u8ff0\u8ff7\u5e7b\u68ee\u6797\u7684\u6c1b\u56f4\u3002\u4f7f\u752820\u4e2a\u52a8"} +{"id": "7000338", "video_name": "53105ac4-b813-536f-9437-06a933161484", "text": "\u4e00\u540d\u7ef4\u4eac\u7537\u6218\u58eb\u5728\u96ea\u5c71\u4e0a\u6325\u821e\u4ed6\u7684\u6218\u65a7\u3002"} +{"id": "7000339", "video_name": "ea491f3d-79c6-5949-9fe6-65c36563c5e8", "text": "Sparkle\uff0c\u95ea\u4eae\u7684\u4ed9\u5973\uff0c\u7528\u5979\u7684\u9b54\u6cd5\u957f\u7b1b\u5f15\u5bfc\u624e\u62c9\uff0c\u5e76\u6559\u5979\u63a7\u5236\u98ce\u7684\u65cb\u5f8b\u3002"} +{"id": "7000340", "video_name": "e9571ca0-b4d5-5799-8bc8-d505a8160f9f", "text": "\u4e00\u540d\u4e13\u4e1a\u9a91\u8f66\u624b\u4ece\u7b3c\u7f69\u5728\u96fe\u4e2d\u7684\u5c71\u9876\u4e0a\u5192\u51fa\u6765\uff0c\u88ab\u4e00\u7fa4\u8f6e\u5f0f\u673a\u5668\u4eba\u8ffd\u9010\u3002"} +{"id": "7000341", "video_name": "f8b148d4-7aae-59d3-a7fd-b809967f5dc2", "text": "\u611f\u89c9\u5bb3\u6015\u7684\u8868\u60c5 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7000342", "video_name": "c50b41dd-ae56-52d0-98fb-9e77f0d1fc52", "text": "\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\u9a7e\u9a76\u5916\u661f\u98de\u8239\u3002\n\nSource sentence: I am learning Chinese language. \n\n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "7000343", "video_name": "adcb4393-a2fe-5d3a-b4bf-c636af074917", "text": "\u6d77\u5e95\u6709\u7740\u4e30\u5bcc\u7684\u9c7c\u7fa4\u3001\u73ca\u745a\u548c\u6e05\u6f88\u900f\u660e\u7684\u84dd\u8272\u6c34\uff0c\u8272\u5f69\u7f24\u7eb7\u3002"} +{"id": "7000344", "video_name": "4453fc06-f319-5f27-b319-4142397bb504", "text": "\u96ea\u6797\u4e2d\u7684\u718a"} +{"id": "7000345", "video_name": "889a5e69-db77-5b6d-ac76-4f35593a29ca", "text": "\u4e00\u53ea\u6bcd\u9e21\u5c55\u5f00\u7fc5\u8180\uff0c\u5f00\u59cb\u98de\u7fd4\uff0c\u7535\u5f71\u822c\u7684\u98ce\u683c\u3002"} +{"id": "7000346", "video_name": "152e4aed-5a1e-50ab-8c1b-16305d093ea0", "text": "\u5c0f\u9c7c\u671d\u7740\u5b9d\u77f3\u6e38\u53bb\u3002"} +{"id": "7000347", "video_name": "2cd83746-dde9-5ba2-94c3-0ebc1349f0a7", "text": "\u8fd9\u4e2a\u6545\u4e8b\u8bb2\u8ff0\u4e86\u4e00\u6bb5\u65c5\u7a0b\uff0c\u6559\u80b2\u5b69\u5b50\u4eec\u6269\u5c55\u4ed6\u4eec\u7684\u60f3\u8c61\u529b\uff0c\u8ddf\u968f\u4ed6\u4eec\u7684\u597d\u5947\u5fc3\uff0c\u5f3a\u8c03\u53cb"} +{"id": "7000348", "video_name": "2efdb218-bfd1-558c-aa28-8712e188ae83", "text": "\u5144\u5f1f\u4eec\u5e26\u7740\u7f8e\u597d\u7684\u56de\u5fc6\u548c\u65b0\u6545\u4e8b\u56de\u5230\u4e86\u5bb6\uff0c\u8fd9\u6b21\u5728\u6811\u6797\u4e2d\u7684\u5192\u9669\u662f\u96be\u4ee5\u5fd8\u6000\u7684\uff0c\u56e0\u4e3a"} +{"id": "7000349", "video_name": "985773e4-b29e-5ceb-a745-4bd456439f02", "text": "\u6bd4\u8d5b\u5f00\u59cb\u524d\uff0c\u7403\u5458\u4eec\u6392\u961f\u7ad9\u5728\u4e2d\u5fc3\u51b0\u9762\u4e0a\uff0c\u51c6\u5907\u51fa\u53d1\u3002\u4ed6\u4eec\u7684\u76ee\u5149\u671d\u524d\uff0c\u4f46\u4ece\u4ed6\u4eec\u7684\u773c\u795e\u4e2d\u53ef\u4ee5\u770b\u51fa\uff0c"} +{"id": "7000350", "video_name": "3c011ac4-c7be-5d9a-b59a-977f9b518170", "text": "\u4e00\u4e2a\u52a8\u6f2b\u89d2\u8272\u8df3\u7740\u65f6\u4e0b\u6d41\u884c\u7684\u6b4c\u66f2\u8df3\u4e8612\u79d2\u949f\u3002"} +{"id": "7000351", "video_name": "b99871eb-ee7d-53d2-8d93-2a5e41ef968a", "text": "\u4e00\u4e2a\u62e5\u6709\u9c7c\u5c3e\u5df4\u7684\u5973\u5b69\u5728\u9ed1\u6697\u7684\u6d77\u5e95\u6e38\u6cf3\u3002"} +{"id": "7000352", "video_name": "e3396b0b-3088-5d5e-a9db-764a915520df", "text": "\u8bf7\u53d1\u9001\u7ed9\u6211\u4e00\u4e2a\u5173\u4e8e\u4e2d\u56fd\u51ac\u81f3\u8282\u7684\u5ba3\u4f20\u89c6\u9891\u3002"} +{"id": "7000353", "video_name": "53f1f61d-0b1e-551c-99f4-1e9be40749d8", "text": "\u52a8\u753b\u98ce\u683c\u7684\u7f8e\u4e3d\u5973\u6027\u8096\u50cf\uff0c\u957f\u53d1\u62ab\u80a9\uff0c\u7a7f\u7740\u4f18\u96c5\u7684\u793c\u670d\uff0c\u6e05\u6670\u805a\u7126\uff0c\u9ad8\u5206\u8fa8\u73874K\uff0c"} +{"id": "7000354", "video_name": "1411dbed-d350-5ed3-abb7-edf786552706", "text": "\u8389\u8389\u5973\u5b69\u4f7f\u4e00\u4e2a\u7403\u8ff7\u4f4f\uff0c\u5bfc\u81f4\u5b83\u5f39\u8df3\u548c\u821e\u52a8\u5f97\u4e0d\u53ef\u9884\u6d4b\u3002\u5361\u901a\u56fe\u50cf\u3002"} +{"id": "7000355", "video_name": "07b82166-2e71-5237-9723-081b42fb589e", "text": "\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u521b\u4f5c\u4e00\u4e2a\u6d77\u4e0a\u66b4\u98ce\u96e8\u7684\u753b\u9762\uff0c\u5176\u4e2d\u4e00\u8258\u8461\u8404\u7259\u8239\u88ab\u5288\u6210\u4e24\u534a\uff0c\u4e00\u540d"} +{"id": "7000356", "video_name": "8214b12d-aacc-52e4-8b39-d358cb79ee2b", "text": "\u4ee5\u65e5\u843d\u4e3a\u80cc\u666f\uff0c\u5c55\u793a\u5c45\u6c11\u4eec\u4eab\u53d7\u7740\u79d1\u6280\u4e0e\u57ce\u5e02\u751f\u6d3b\u7684\u534f\u540c\u4f5c\u7528\u6240\u521b\u9020\u7684\u5b89\u5168\u3001\u6e05\u6d01\u3001\u9ad8\u6548\u7684\u73af"} +{"id": "7000357", "video_name": "3b0e688e-e886-5c9a-a86c-4d4784e9be4a", "text": "\u7f8e\u5f0f\u6a44\u6984\u7403\u513f\u7ae5\u590f\u4ee4\u8425\u5ba3\u4f20\u89c6\u9891"} +{"id": "7000358", "video_name": "4d09b7fd-2617-5279-a424-6a4790018e79", "text": "\u4e00\u5219\u7535\u89c6\u5e7f\u544a\uff0c\u5ba3\u4f202075\u5e74\u6700\u65b0\u7684\u7f8e\u5bb9\u4ea7\u54c1\u3002"} +{"id": "7000359", "video_name": "c3d2e673-3745-54bd-b284-ed6750321bee", "text": "\u4e00\u53ea\u72d7\u5728\u7c89\u8272\u4e91\u6735\u4e4b\u95f4\u98de\u7fd4\u3002"} +{"id": "7000360", "video_name": "289d1249-5a45-5fe3-a6b0-8eaaa9cee266", "text": "\u5728\u6fb3\u6d32\u56fd\u5bb6\u6a44\u6984\u7403\u8054\u8d5b\u6bd4\u8d5b\u4e2d\uff0c\u7403\u5458\u4eec\u4e89\u593a\u6a44\u6984\u7403\u3002"} +{"id": "7000361", "video_name": "05255a74-9dcc-5029-9363-5d4db7df6478", "text": "\u8eab\u7a7f\u5546\u52a1\u897f\u670d\u7684\u7537\u58eb\u5728\u8fea\u62dc\u5168\u666f\u80cc\u666f\u4e0b\u63e1\u624b\u3002"} +{"id": "7000362", "video_name": "88368756-d742-505e-b597-4f3b3d1a09a3", "text": "\u4e2d\u56fd\u7ffb\u8bd1\uff1a \n\n\u68cb\u76d8\u3001\u9c9c\u82b1\u548c\u9152\u653e\u5728\u684c\u5b50\u4e0a\uff0c\u4e00\u628a\u6905\u5b50\u6446\u5728\u7ea2\u8272\u7a97\u5e18\u524d\uff0c\u4e2d\u5e74"} +{"id": "7000363", "video_name": "e742f9b1-8a0c-5ff4-91f4-fff89405f5c3", "text": "\u4ed6\u4eec\u5c31\u611f\u6069\u548c\u5982\u4f55\u5728\u5f53\u4e0b\u627e\u5230\u6ee1\u8db3\u8fdb\u884c\u4e86\u8ba8\u8bba\u3002"} +{"id": "7000364", "video_name": "448bc5d9-f8e2-529d-a34b-0264d55f4a8e", "text": "\u5341\u51e0\u5c81\u7684\u7537\u5b69\uff0c\u542c\u97f3\u4e50\uff0c\u6df1\u6df1\u5730\u60b2\u4f24\uff0c\u5b64\u72ec\u5730\u54ed\u6ce3\uff0c\u62bd\u7740\u70df\uff0c\u5728\u6d77\u6ee9\u4e0a\u770b\u661f"} +{"id": "7000365", "video_name": "bd208712-28dc-5f76-8125-8e75bae1b513", "text": "\u5236\u4f5c\u4e00\u4e2a\u73b0\u5b9e\u7684\u89c6\u9891\uff0c\u5c55\u793a\u739b\u4e3d\u548c\u7ea6\u745f\u592b\u5728\u6c99\u6f20\u4e2d\u671d\u7740\u4f2f\u5229\u6052\u57ce\u8d70\u53bb\u3002"} +{"id": "7000366", "video_name": "5a769092-6ef4-5105-9d4c-9a24340b35ad", "text": "\u7f51\u7edc\u4e66\u7c4d\u5728\u96f6\u91cd\u529b\u4e2d\u98de\u884c\uff0c\u91c7\u7528\u9ec4\u8272\u548c\u9ed1\u8272\u914d\u8272\u65b9\u6848\u3002"} +{"id": "7000367", "video_name": "b28626a3-b0f1-534c-ada5-c7c2d22aa9bf", "text": "\u4e24\u4e2a\u5927\u5b66\u5973\u751f\u665a\u4e0a\u5728\u82b1\u56ed\u91cc\u6454\u8de4\u3002"} +{"id": "7000368", "video_name": "52102a77-004a-5e87-a9e8-e5daa2617ddc", "text": "\u53cc\u624b\u6301\u67aa\u706b\u5668\u5f00\u706b\uff0c\u6076\u9b54\u80cc\u666f\uff0c\u9b3c\u706d\u4e4b\u5203\u827a\u672f\u98ce\u683c\u3002"} +{"id": "7000369", "video_name": "faa7a395-093e-502c-8471-ef18d84eccd3", "text": "\u8d85\u7ea7\u673a\u68b0\u5973\u6027\u673a\u5668\u4eba\u662f\u901a\u8fc7\u9b54\u6cd5\u5236\u9020\u9010\u4e2a\u653e\u7f6e\u5728\u6a21\u5177\u4e2d\u7ec4\u88c5\u7684\u3002"} +{"id": "7000370", "video_name": "564277f5-dba2-5613-b2d6-b30f0e2e7426", "text": "\u5927\u53f7\u5b57\u4f53\u7684\u751f\u65e5\u5feb\u4e50\uff0c\u50cf\u76ae\u514b\u65af\u7684\u98ce\u683c\u4e00\u6837\uff0c3D\u5f62\u5f0f\uff0c\u5e26\u7740\u8721\u70db\u3002"} +{"id": "7000371", "video_name": "1d40f5fa-61f0-5161-9e2a-4e87afeb00a4", "text": "\u5728\u6d77\u6d0b\u4e2d\u6d41\u52a8\u7684\u6c34\u5f69\u7eb8\u3002"} +{"id": "7000372", "video_name": "a64fce64-4a45-5698-a19a-a8a14240bf2a", "text": "\u4f0a\u59c6\u5170\u00b7\u6c57\u5728\u4e00\u4e2a\u5927\u578b\u96c6\u4f1a\u4e0a\u53d1\u8868\u8bb2\u8bdd\uff0c\u4ed6\u7684\u58f0\u97f3\u5145\u6ee1\u6fc0\u60c5\u548c\u51b3\u5fc3\u3002"} +{"id": "7000373", "video_name": "7882e82c-3b5b-5305-afee-4ab7fa69b617", "text": "\u5916\u661f\u6df7\u8840\uff0c\u7531\u827e\u5947\u00b7\u5409\u683c\u5c14\u8bbe\u8ba1\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7000374", "video_name": "01417cd8-20ae-51fc-b362-1e64fd359db9", "text": "\u653e\u5927\u7535\u5f71\u9662\u7684\u8367\u5e55"} +{"id": "7000375", "video_name": "67c24f92-7065-5297-939b-b9ce51b24195", "text": "\u673a\u5668\u4eba\u5728\u6e05\u771f\u5bfa\u5185\u505a\u793c\u62dc\u3002"} +{"id": "7000376", "video_name": "6c034046-9421-5e53-8a4b-9ead8f5018e1", "text": "\u6709\u673a\u5f62\u72b6\u3001\u7eff\u8272\u82d4\u85d3\u3001\u7070\u7c89\u8272\u6c99\u5b50\u3001\u5c18\u571f\u548c\u5ca9\u77f3\u3001\u84dd\u8272\u5929\u7a7a\u3001\u660e\u4eae\u7684\u767d\u8272\u592a\u9633"} +{"id": "7000377", "video_name": "2f06068f-8b28-5ee8-8807-400e5ab51e8a", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u8d85\u7ea7\u9a6c\u91cc\u5965\uff0c\u7279\u5199\u9762\u90e8\uff0c\u98ce\uff0c\u9ed1\u767d\u3002"} +{"id": "7000378", "video_name": "f9e91086-4c24-5257-8a56-36dae88cacda", "text": "\u4e0d\u9700\u8981\u86cb\u767d\u8d28\u6765\u589e\u808c\u3002"} +{"id": "7000379", "video_name": "6a25948d-5e11-5842-adcf-bfa2e7c76a99", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u6e7f\u5a46\u5728\u51b0\u5c71\u4e0a\u8df3\u821e\u3002"} +{"id": "7000380", "video_name": "975b8cf0-14e2-59d2-8d36-0f65de5c5b0f", "text": "\u54c1\u8bfa\u66f9\u548c\u5927\u536b\u00b7\u9c8d\u4f0a\uff0c\u963f\u62c9\u4e01\u00b7\u8d5b\u6069\uff0cZiggy Stardust\uff0c\u7834\u788e\u7684\u6f14\u5458\u3002"} +{"id": "7000381", "video_name": "e796b9a9-8552-55bf-ab74-3c86724bbd01", "text": "\u5c0f\u96ea\u82b1\uff0c\u4ece\u5929\u7a7a\u98d8\u843d\u3002"} +{"id": "7000382", "video_name": "7117ea32-0af3-5e84-abf3-154eb55002b8", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u4e00\u5f20\u684c\u5b50\u524d\u9762\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u53ea\u5ba0\u7269\u7684\u98df\u7269\u7897\uff0c\u4ed6\u624b\u91cc\u62ff\u7740\u4e00\u52fa\u98df\u7269\u3002"} +{"id": "7000383", "video_name": "f8f2df7a-6970-5398-97ef-d0e7f91a4dbb", "text": "\u5f7c\u5f97\u4e00\u4e16\u5efa\u7acb\u4e86\u5723\u5f7c\u5f97\u5821\u57ce\u3002"} +{"id": "7000384", "video_name": "54e89116-72d3-50de-8fd8-aece530e177c", "text": "\u7070\u8272\u7684\u732b\u5728\u94c3\u9e7f\u8d5b\u9053\u4e0a\u9a7e\u9a76\u7ea2\u8272\u7684\u7ea2\u725b\u65b9\u7a0b\u5f0f1\u8d5b\u8f66\u3002"} +{"id": "7000385", "video_name": "5a9ada98-2d03-5af2-9839-672cedd617e2", "text": "\u4e00\u4e2a\u7e41\u534e\u7684\u57ce\u5e02\u4fef\u77b0\u753b\u9762\u51fa\u73b0\uff0c\u4eba\u4eec\u51c6\u5907\u5e86\u795d\uff0c\u8c61\u5f81\u7740\u73b0\u4ee3\u5370\u5ea6\u7684\u8f6c\u53d8\u3002"} +{"id": "7000386", "video_name": "db8bf148-8c5b-5474-9a3c-b3a8aeabca81", "text": "\u7537\u5b69\u544a\u8bc9\u98de\u884c\u5458\u4ed6\u6765\u81ea\u53e6\u4e00\u4e2a\u661f\u7403\u3002\u4ed6\u8bf4\u4ed6\u7684\u661f\u7403\u975e\u5e38\u5c0f\uff0c\u53ea\u6bd4\u4e00\u4e2a\u623f\u5b50\u7a0d\u5fae\u5927\u4e00\u70b9\u3002\u4ed6\u8bf4\u4ed6\u5728\u661f\u7403\u4e0a\u6709\u4e00"} +{"id": "7000387", "video_name": "9a4bf42f-4d83-5265-9c96-72a9ae6dae24", "text": "\u4e00\u4f4d\u5973\u6027\u6b63\u5728\u542c\u97f3\u4e50\u8df3\u821e\uff0c\u8868\u73b0\u51fa\u8d5b\u535a\u670b\u514b\u7684\u98ce\u683c\u3002"} +{"id": "7000388", "video_name": "91a00ee6-97bf-5335-8d6f-2a2eed0238d8", "text": "\u6444\u5f71\u3001\u5bcc\u58eb\u80f6\u7247\u3001\u4e00\u540d\u624b\u4e0a\u957f\u7740\u82b1\u6735\u7684\u5973\u6027\u3002"} +{"id": "7000389", "video_name": "c0a7e628-e851-5921-896e-8879107ae37d", "text": "\u7528\u9752\u7da0\u8272\u548c\u7c89\u7d05\u8272\u7684\u71c8\u5149\u7167\u5c04\u4e0b\u79fb\u52d5\u7684\u7e54\u7269\u6750\u6599\u3002"} +{"id": "7000390", "video_name": "58c84645-2124-52c7-a12c-ecd93acec292", "text": "\u83b2\u82b1\u751f\u5927\u5e08\u6b63\u5728\u4e00\u5ea7\u4f20\u8bf4\u4e2d\u7684\u6d1e\u7a74\u91cc\u5ff5\u7ecf\u3002"} +{"id": "7000391", "video_name": "6b37007e-140d-5716-8e93-110dc2eedf12", "text": "\u6df1\u6d77\u53e4\u7f57\u9a6c\u57ce\u9057\u5740\uff0c\u6df1\u6d77\u5947\u5f02\u751f\u7269\uff0c\u5c16\u9510\u7ec6\u8282\u768416k\u5168\u5f69\u9ad8\u52a8\u6001\u8303\u56f4\u56fe\u50cf"} +{"id": "7000392", "video_name": "6aa1c294-445f-5f37-8649-9b806669d6b3", "text": "\u97f3\u4e50\u4f1a\u4e0a\u7684DJ\u5728technorave\u4e2d\u3002"} +{"id": "7000393", "video_name": "e36c8422-44b1-5dde-98c0-979d91b2cebf", "text": "\u8fbe\u65af\u00b7\u7ef4\u8fbe\u5728\u6447\u6eda\u6f14\u5531\u4f1a\u7684\u6447\u6eda\u573a\u4e2d\u72c2\u6b22\u8df3\u821e\u3002"} +{"id": "7000394", "video_name": "06c5b649-bf8d-51c4-bd8e-3027a4080925", "text": "\u5efa\u7b51\u3001\u6467\u6bc1\u3001\u5d29\u584c\u3001\u5d29\u6e83\u3001\u6df7\u51dd\u571f\u7834\u788e\u3001\u6162\u52a8\u4f5c\u3001\u9ad8\u5927\u3001\u7535\u5f71\u822c\u7684\u3001\u620f"} +{"id": "7000395", "video_name": "ded72f78-dbba-5689-a1f6-745bd83cd631", "text": "\u4e00\u90e81960\u5e74\u7684\u5e7b\u60f3\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u88ab\u5de8\u578b\u5916\u661f\u4eba\u6293\u8d70\u7684\u5b69\u5b50\uff0c\u53d7\u5230\u4e86Slenderman\u7684\u542f\u53d1\u3002"} +{"id": "7000396", "video_name": "09ec6fb8-934f-5409-80bf-0c48016cad00", "text": "\u4e00\u53ea\u7194\u5ca9\u864e\u9cb8\u8dc3\u8fc7\u4e00\u67b6\u76f4\u5347\u673a\u3002"} +{"id": "7000397", "video_name": "dd760a06-546b-5cd0-b743-f98982152238", "text": "\u4e00\u4efd\u5927\u7684\u9ea6\u5f53\u52b3\u85af\u6761\u521a\u521a\u51fa\u9505\uff0c\u770b\u8d77\u6765\u975e\u5e38\u7f8e\u5473\u3002\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u9ad8\u8d28\u91cf\u89c6\u9891\uff0c4K\u3002"} +{"id": "7000398", "video_name": "4ad19b2b-4cef-5b4f-85fd-1eb1dc85c679", "text": "\u4e00\u90e8\u8ff7\u4eba\u7684\u5361\u901a\u63cf\u7ed8\u4e86\u7f57\u7eb3\u5c14\u591a\u548c\u6885\u897f\u53cb\u597d\u4f46\u7d27\u5f20\u7684\u7ade\u4e89\uff0c\u5e76\u4ee5\u52a8\u6001\u548c\u89c6\u89c9\u4e0a\u5f15\u4eba\u6ce8\u76ee\u7684"} +{"id": "7000399", "video_name": "62a530e8-5ed0-57c8-9ffb-3c64df63bad3", "text": "\u5409\u4ed6\u5f26\u52a8\u4e86\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000400", "video_name": "bbccf9b6-fbfa-5ae6-8d64-d7d28bca8f08", "text": "\u5174\u594b\u800c\u597d\u5947\uff0c\u8389\u8389\u5c06\u753b\u7b14\u8638\u8fdb\u4e00\u76c6\u95ea\u95ea\u53d1\u5149\u7684\u989c\u6599\uff0c\u753b\u4e86\u4e00\u6761\u53cb\u597d\u7684\u9f99\u5728\u5979"} +{"id": "7000401", "video_name": "f50fc2c7-c563-514d-91a5-c6c4addfdf56", "text": "translation: \u4e00\u53ea\u9e1f\u5728\u5fae\u98ce\u4e2d\u98de\u884c\uff0c\u7136\u540e\u964d\u843d\u5728\u4e00\u6839\u6811\u679d\u4e0a\u3002"} +{"id": "7000402", "video_name": "c02d6457-3f20-55b1-aad6-3ab4b0b5d2c5", "text": "\u8bfa\u5c14\u8fd9\u4e2a\u53ef\u7231\u7f8e\u4e3d\u7684\u516c\u4e3b\u5411\u4e00\u4e2a\u5c0f\u5de7\u53ef\u7231\u7684\u4ed9\u5b50\u5f2f\u4e0b\u8170\u3002"} +{"id": "7000403", "video_name": "36a08cf4-f3c6-5f2e-808b-8956519bda24", "text": "\u7535\u5f71\u4e2d\u90a3\u79cd\u903c\u771f\u7684\u7f8e\u56fd\u6050\u6016\u7535\u5f71\u573a\u666f\uff0c\u5c31\u50cf\u5728\u66b4\u98ce\u96e8\u4e2d\u7684\u6050\u6016\u623f\u5b50\u3002"} +{"id": "7000404", "video_name": "44b17a10-da26-549d-9b40-8efc093ba288", "text": "Windows\u58c1\u7eb8\uff0c4k\uff0c3840 x 2160\u50cf\u7d20\uff0c\u7f8e\u5b66\uff0c\u7b80\u5355\uff0c\u73b0\u4ee3\u3002"} +{"id": "7000405", "video_name": "6426dbec-b7af-5abc-9179-35d4a990536e", "text": "\u8bf7\u5c55\u793a\u9ad8\u6e05\u5370\u5ea6\u56fd\u65d7\u3002"} +{"id": "7000406", "video_name": "4c5d24e8-9206-5ada-a10e-4c779dcdd0e4", "text": "\u4e00\u4e2a\u5c0f\u5175\u7ad9\u5728\u821e\u53f0\u4e0a\uff0c\u805a\u5149\u706f\u7167\u5728\u4ed6\u8eab\u4e0a\uff0c\u6444\u50cf\u673a\u4ece\u9876\u90e8\u5411\u524d\u62cd\u6444\u3002"} +{"id": "7000407", "video_name": "eb4eb951-3f28-51fa-b5d5-3448aa5c2391", "text": "\u4e00\u5c01\u975e\u5e38\u957f\u7684\u60c5\u4e66\u7684\u7279\u5199\u955c\u5934"} +{"id": "7000408", "video_name": "9c846df1-5a05-5754-8933-9ed35237ba38", "text": "\u4e8c\u6218\u65f6\u671f\u7684\u6863\u6848\u5f71\u7247\uff0c\u5c55\u793a\u4e86\u5fb7\u56fd\u201c\u8c61\u5f0f\u52a0\u519c\u70ae\u201d\u548c\u673a\u68b0\u6218\u58eb\u51c6\u5907\u6218\u6597\u3002"} +{"id": "7000409", "video_name": "15c37707-467c-51c9-a57f-f9ba85e15a6b", "text": "\u63cf\u8ff0\u4ed6\u4eec\u4e0e\u6751\u5e84\u5b69\u5b50\u5206\u4eab\u4ed6\u4eec\u7684\u6545\u4e8b\uff0c\u6fc0\u53d1\u4ed6\u4eec\u7684\u60f3\u8c61\u529b\u3002\u5361\u901a\u4eba\u7c7b\u3002"} +{"id": "7000410", "video_name": "b1089e4a-7ba4-5e23-8124-3f75fa425c6b", "text": "\u6c64\u59c6\u70ed\u5207\u5730\u54ac\u4e86\u4e00\u53e3\u4e09\u660e\u6cbb\uff0c\u7ed3\u679c\u773c\u775b\u60ca\u8bb6\u5730\u7741\u5927\u4e86\u3002"} +{"id": "7000411", "video_name": "cb885c2b-667d-57fa-af7f-ab2228df89ad", "text": "\u672a\u6765\u9152\u74f6\u4f1a\u662f\u4ec0\u4e48\u6837\u5b50\u3002"} +{"id": "7000412", "video_name": "d2cccd7c-9034-574e-b0a4-de08f4266cc3", "text": "\u6210\u4eba\u548c\u5b69\u5b50\u90fd\u56e0\u793c\u7269\u800c\u6b22\u6b23\u3002"} +{"id": "7000413", "video_name": "8f5bafcf-a699-5e09-8d38-a101dc7e29a8", "text": "\u5bb6\u4eba\u5e2e\u5fd9\u6536\u62fe\u684c\u5b50\u3002"} +{"id": "7000414", "video_name": "7af61baf-e32a-5989-983f-5bf3617214f3", "text": "\u68a6\u60f3\u6d88\u901d\u7684\u5730\u65b9"} +{"id": "7000415", "video_name": "a876f01a-b792-5e9b-9e40-686f2351bb53", "text": "\u7f8e\u56fd\u662f\u4e16\u754c\u4e0a\u7b2c\u4e00\u5bcc\u88d5\u7684\u56fd\u5bb6\u3002"} +{"id": "7000416", "video_name": "63a511ac-17b1-56c8-b297-83b0c54ac155", "text": "\u79cb\u96e8\uff0c8K\uff0c\u68ee\u6797\uff0c\u591a\u96e8\uff0c\u591a\u4e91\u3002"} +{"id": "7000417", "video_name": "3b10088b-d108-5116-82d4-b8fac3b6fbc1", "text": "\u5341\u5c81\u7537\u5b69\u7ad9\u5728\u88ab\u6467\u6bc1\u7684\u5efa\u7b51\u7269\u524d\u54ed\u6ce3\uff0c\u6218\u4e89\u573a\u666f\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "7000418", "video_name": "2d72bf43-94e0-558e-874b-d7ada1e46d87", "text": "\u677e\u6811\u5728\u98ce\u66b4\u4e2d\u7684\u8ff7\u5e7b\u611f\uff0c16:9"} +{"id": "7000419", "video_name": "9c4651ac-7752-565b-ab9f-979dbdf791a3", "text": "\u9ed1\u8272\u8896\u7ae0\u4e0a\u6709FBI\u6807\u8bc6\u7684FBI\u7279\u5de5\u7a7f\u7740\u5e26\u6709FBI\u6807\u8bc6\u7684\u9ed1\u8272\u5e3d\u5b50\uff0c\u5e76\u4f69\u6234\u7740\u8033\u673a\u3002"} +{"id": "7000420", "video_name": "5124e1e0-2c5a-5ed5-a7f5-d2c66713966e", "text": "\u5f53\u5730\u4eba\u53e3\u4e2d\u6d41\u4f20\u7740\u6050\u6016\u5e84\u56ed\u7684\u4f20\u8bf4\uff0c\u90a3\u91cc\u9ed1\u6697\u5728\u560e\u5431\u4f5c\u54cd\u7684\u8d70\u5eca\u4e2d\u7a83\u7a83\u79c1\u8bed\u3002\u9664"} +{"id": "7000421", "video_name": "16847b3a-34ff-5687-9aed-37c945ca507d", "text": "\u6211\u4eec\u4e2d\u7684\u6700\u540e\u4e00\u4eba\u7f16\u8f918K\u771f\u5b9e\u3002"} +{"id": "7000422", "video_name": "41276d82-4fa1-5a90-891a-0b61bb195b03", "text": "\u767d\u8272\u7ffc\u9a6c\u98de\u8d8a\u6c99\u6f20\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000423", "video_name": "c6052029-47af-5c34-a565-380aedf4220e", "text": "\u9a6c\u91cc\u5965\u5144\u5f1f\u5728\u58a8\u897f\u54e5\u6237\u5916\u6d3e\u5bf9\u4e0a\u8df3\u821e\u3002"} +{"id": "7000424", "video_name": "e8157171-839f-5f4d-b653-c90b5f778dbd", "text": "\u4e00\u4e2a\u5934\u53d1\u662f\u767d\u8272\u7684\u673a\u5668\u4eba\u5728\u8d70\u8def\u3002\u4fe1\u606f\uff1a\u6211\u7231\u4f60\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7000425", "video_name": "16ce953b-ead3-5abd-8d60-a47e6b76567b", "text": "\u623f\u5b50\u5728\u8702\u5de2\u91cc\u3002"} +{"id": "7000426", "video_name": "aaf69f1b-6740-54a9-b8cb-baaa7eb358b4", "text": "\u4e00\u5f20\u6c99\u6f20\u4e2d\u95f4\u6709\u5148\u77e5\u8bf4\u8bdd\u7684\u56fe\u7247\u3002"} +{"id": "7000427", "video_name": "781dcbbf-ef04-5dbf-8a23-b7e24c365394", "text": "\u4e00\u53ea\u7070\u571f\u8c5a\u5728\u73a9NES\uff0c\u767d\u8272\u903c\u771f\u7684\u5ba2\u5385\u5728\u80cc\u666f\u4e2d\u3002"} +{"id": "7000428", "video_name": "11bb1337-547f-52a6-b6d4-9eb0b3dd4aa0", "text": "\u4e00\u9897\u6d41\u661f\u7a7f\u8fc7\u5929\u7a7a\uff0c\u7d2b\u8272\u548c\u7eff\u8272\u7684\u6781\u5149\u5728\u80cc\u666f\u4e2d\u95ea\u73b0\u3002"} +{"id": "7000429", "video_name": "bf5359b0-7dcc-5428-bf65-938fb72dcc90", "text": "\u63d0\u793a\uff1a\u4e00\u4f4d\u5370\u5ea6\u4f10\u6728\u5de5\u4eba\u6b63\u5728\u68ee\u6797\u91cc\u6cb3\u8fb9\u7528\u4e00\u628a\u65a7\u5934\u780d\u67f4\u3002"} +{"id": "7000430", "video_name": "afbebce0-6dd8-5a74-b7ce-90684f0b8f80", "text": "1. \u4e00\u4e2a\u4eba\u88ab\u9501\u94fe\u675f\u7f1a\u5728\u9ed1\u6697\u7684\u5730\u65b9\u611f\u5230\u60b2\u4f24\u3002\n2. \u8036\u7a23\u51fa\u73b0\uff0c\u5468\u56f4\u5145\u6ee1\u5149\u660e\u3002\n3"} +{"id": "7000431", "video_name": "71936e7d-06b8-523c-a644-8997ba623ad7", "text": "\u75284K\u5206\u8fa8\u7387\u30013D\u52a8\u753b\u5f62\u5f0f\uff0c\u751f\u52a8\u63cf\u8ff0Alex\u7cbe\u529b\u5145\u6c9b\u5730\u6574\u7406\u623f\u95f4\uff0c\u5c06\u8863\u7269\u653e\u597d\u3001\u73a9\u5177\u6574\u7406\uff0c\u7a7a\u95f4\u660e"} +{"id": "7000432", "video_name": "839d5cb6-7277-57f8-ad8f-7f2d0496ffc7", "text": "\u53ef\u7231\u7684\u732b\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "7000433", "video_name": "6f8dd50b-9848-515a-b235-7984d81f36bd", "text": "\u8718\u86db\u7684\u6bd2\u6db2\u5728\u5236\u836f\u4e1a\u4e2d\u6709\u7279\u6b8a\u7684\u91cd\u8981\u6027\uff0c\u88ab\u7528\u4e8e\u5236\u9020\u836f\u54c1\u3001\u7cd6\u6d46\u548c\u75ab\u82d7\u3002"} +{"id": "7000434", "video_name": "94427e39-e221-572d-b66d-67930ccb85e3", "text": "\u84dd\u5a1c\u00b7\u96f7\u4f7f\u7528\u5979\u7684\u9b54\u6cd5\u529b\u91cf\u6d88\u5931\u4e86\u3002"} +{"id": "7000435", "video_name": "f7621459-7f97-5aa5-8e3a-8566dbd96cb9", "text": "\u6708\u4eae\u843d\u5728\u6d77\u4e0a\u3002"} +{"id": "7000436", "video_name": "a6703314-4fbc-5e7b-942f-f79f828075d6", "text": "\u4e00\u4e2a\u88ab\u5c71\u4e18\u548c\u68ee\u6797\u5305\u56f4\u7684\u5c0f\u9547\u3002"} +{"id": "7000437", "video_name": "862384f4-9a4b-5fac-9ea3-07fca0dcdca1", "text": "\u6c34\u4e0b\u706b\u5c71\u7206\u53d1\uff0c\u706b\u5c71\u5ca9\u6d41\u51fa\uff0c\u5468\u56f4\u5f25\u6f2b\u7740\u70df\u96fe\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000438", "video_name": "768357d3-5025-5594-bfc4-63407558e258", "text": "\u6b22\u8fce\u6765\u5230\u7eff\u725b\u548c\u7ea2\u718a\u7684\u6218\u573a\u3002\n\nSource sentence: We need to work together to overcome this challenge. \n\n\u6211\u4eec\u9700\u8981\u5171\u540c\u52aa\u529b\u514b\u670d\u8fd9\u4e2a\u6311"} +{"id": "7000439", "video_name": "5e361648-118a-51ed-a29b-f688f5a00148", "text": "\u7535\u5f71\u5316\uff0c\u89d2\u8272\u5750\u5728\u6905\u5b50\u4e0a\uff0c\u4ef0\u671b\u5929\u82b1\u677f\u3002"} +{"id": "7000440", "video_name": "55448ef2-8f9b-54c7-9158-0bfa25d1709d", "text": "\u4eba\u5f62\u89d2\u8272\u3002\u4e00\u53ea\u4ee4\u4eba\u60ca\u53f9\u548c\u8ff7\u4eba\u7684\u6ce2\u7f8e\u62c9\u5c3c\u4e9a\u5e7c\u72ac\u7a7f\u7740\u91d1\u8272\u670d\u88c5\u5728\u72c2\u6b22\u8282\u4e0a\u6e38\u884c"} +{"id": "7000441", "video_name": "0744c267-f636-5ec3-8c39-c305c0a7cc4f", "text": "\u4e00\u53ea\u5361\u901a\u7537\u5b69\u548c\u4e00\u53ea\u8682\u8681\u5728\u4ea4\u8c08\u3002"} +{"id": "7000442", "video_name": "1734c02c-687d-593a-b51d-4e7293f62627", "text": "\u79fb\u52a8\u73ab\u7470\uff0c\u4eff\u4f5b\u5b83\u4eec\u6b63\u5728\u7efd\u653e\u548c\u60ac\u6302\u3002"} +{"id": "7000443", "video_name": "4456eff8-9d10-570b-a86b-b83c024a32d7", "text": "\u89c2\u5bdf\u6d77\u8c5a\u4f7f\u7528\u4e30\u5bcc\u7684\u5636\u54d1\u58f0\u3001\u54e8\u58f0\u548c\u8868\u60c5\u6765\u4f20\u8fbe\u5f7c\u6b64\u7684\u601d\u60f3\u548c\u60c5\u611f\u3002"} +{"id": "7000444", "video_name": "e448c4d4-3947-521d-b98d-c7f173813cce", "text": "\u8fd9\u53ea\u72d7\u7ad9\u5728\u8857\u4e0a\u3002\n\nSource sentence: I love eating pizza on the weekends. \n\u6211\u559c\u6b22\u5728\u5468\u672b\u5403\u6bd4\u8428\u3002"} +{"id": "7000445", "video_name": "f8bfe9ed-c6d8-590d-b9df-9ab0c20c4194", "text": "\u4ecb\u7ecd\u751f\u7269\u533b\u5b66\u76ae\u8d28\u9187\u4f20\u611f\u5668\u7684\u89c6\u9891"} +{"id": "7000446", "video_name": "e6266dda-6d9c-52a5-ad8e-9582379c1a17", "text": "\u8389\u8389\u7ad9\u5728\u96ea\u6797\u4e2d\u9ad8\u8038\u7684\u677e\u6811\u4e0b\uff0c\u5411\u5723\u8bde\u8001\u4eba\u8bda\u5fc3\u7948\u613f\u3002\n\nSource sentence: The little boy eagerly opened his Christmas present and"} +{"id": "7000447", "video_name": "e32978b3-a6e1-5751-9b45-242242211bf8", "text": "\u4f0a\u6851\u5411\u739b\u96c5\u5c55\u793a\u7e41\u534e\u57ce\u5e02\u4e2d\u7684\u673a\u9047\u548c\u6311\u6218\u3002"} +{"id": "7000448", "video_name": "9daa4e13-5ec7-5630-a6a8-a2d3fa8a81c6", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u7279\u5170\u897f\u74e6\u5c3c\u4e9a\u7684\u4e00\u4e2a\u5c0f\u9547\uff0c\u5728\u6df1\u96fe\u4e2d\u6f2b\u6b65\u3002 \n\nSource sentence: The red fox ran across the field and through the woods, disappearing into the night"} +{"id": "7000449", "video_name": "201d3483-617c-522a-85f3-292288ec6ba6", "text": "\u5927\u536b\u9047\u5230\u4e86\u6b4c\u5229\u4e9a\uff0c\u4ed6\u5012\u4e0b\u4e86\u3002\u6765\u81ea\u300a\u5723\u7ecf\u6545\u4e8b\u300b\u30028k\u5199\u5b9e\u3002"} +{"id": "7000450", "video_name": "259054bc-a650-5e34-bb28-a18873f94d59", "text": "\u7f51\u7403\u8fd0\u52a8\u5458\u50cf\u7f57\u6770\u00b7\u8d39\u5fb7\u52d2\u8d62\u5f97\u4e86\u6e29\u5e03\u5c14\u767b\u9526\u6807\u8d5b\u3002"} +{"id": "7000451", "video_name": "284dc47a-06b5-50b6-b59b-c3b59f8e8e8e", "text": "\u4e09\u4e2a\u4eba\u6302\u5728\u6c7d\u8f66\u540e\u5ea7\u4e0a\u7684\u6f2b\u753b\uff0c\u653e\u677e\u7684\u6c1b\u56f4\uff0c\u67d4\u548c\u7684\u7279\u8272\uff0c\u8be6\u7ec6\u7684\u7ec6\u8282\u3002"} +{"id": "7000452", "video_name": "66574936-9983-58e0-8460-64edf5546a85", "text": "\u9ed1\u6697\u4e2d\u98de\u821e\u7684\u80fd\u91cf\u7403"} +{"id": "7000453", "video_name": "0c7b601a-d58d-5130-b2b9-bffbaa2cbda0", "text": "\u9ed1\u767d\u9897\u7c92\u611f\u7535\u5f71\u98ce\u683c\u7684\u706b\u5c71\u55b7\u53d1\u89c6\u9891"} +{"id": "7000454", "video_name": "5483a9bd-efb7-509b-8355-c1866869f4d3", "text": "\u79d1\u5e7b\u98ce\u683c\uff0c\u4e00\u56e2\u5bc6\u96c6\u7684\u7535\u7f06\uff0c\u4e00\u6839\u53d1\u5c04\u7535\u5b50\u4fe1\u606f\u5149\u6d41\u7684\u7535\u7f06\u3002"} +{"id": "7000455", "video_name": "5f988bf2-c59c-5538-9797-e8e4cc8da969", "text": "\u4e00\u53ea\u5370\u6709\u7b11\u8138\u7684\u7ea2\u8272\u6c14\u7403\u98d8\u6d6e\u5728\u7a7a\u4e2d\uff0c\u7136\u540e\u70b8\u88c2\u6210\u4e00\u56e2\u4e94\u5f69\u7f24\u7eb7\u7684\u7eb8\u5c51\u3002"} +{"id": "7000456", "video_name": "94abf253-4f5a-5f67-8363-f8c2eb13e049", "text": "\u6d6e\u52a8\u7684\u7ecf\u6587\u6587\u5b57\u5728\u6728\u684c\u4e0a\uff0c\u88ab\u98ce\u5439\u5f00\u7684\u5723\u7ecf\u4e66\u9875\uff0c\u60ac\u6d6e\u5728\u5723\u7ecf\u4e0a\u65b9\u7684\u5723\u7075\uff0c\u5feb\u901f\u7684\u822a"} +{"id": "7000457", "video_name": "454d9c10-022d-5a49-95db-4bc31e6845ff", "text": "\u4e00\u4e2a\u9f99\u4eba\u70b9\u4eae\u4e86\u7f8e\u4e3d\u7684\u706f\u7b3c\u3002"} +{"id": "7000458", "video_name": "927b67fd-64ce-51d6-92b2-48300e967606", "text": "\u6444\u50cf\u673a\u7f29\u653e\u51fa\u65e7\u8036\u8def\u6492\u51b7\uff0c\u4e00\u4e2a\u660e\u4eae\u7684\u65e5\u5b50\u5728\u65e7\u8036\u8def\u6492\u51b7\u3002\u4fe1\u606f\uff1a\u5f25\u8d5b\u4e9a\u73b0\u5728\uff01\uff08\u5b57\u4f53"} +{"id": "7000459", "video_name": "2f53c729-e874-5711-aaa5-f605ea144b67", "text": "\u6bcf\u4e2a\u5973\u5b69\u90fd\u7a7f\u7740\u4e0d\u540c\u7684\u8863\u6599\uff0c\u795d\u4f60\u5723\u8bde\u8282\u5feb\u4e50\u3002(\u5b57\u4f53\uff1a\u6f2b\u753b\u4f53)"} +{"id": "7000460", "video_name": "a435e321-c2d2-5f92-8e0f-2d770bbc5594", "text": "\u9713\u8679\u7eff\u82b1\u7684\u7279\u5199\u7167\u7247\uff0c\u82b1\u91cc\u6709\u8986\u76d6\u7740\u82b1\u7c89\u7684\u871c\u8702\uff0c\u80cc\u666f\u662f\u8611\u83c7\u5c4b\uff0c8"} +{"id": "7000461", "video_name": "bc8742b1-0f98-5f41-a2ab-35fc020faf0f", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u84dd\u5929\u4e2d\u98de\u7fd4\u3002"} +{"id": "7000462", "video_name": "241758cc-d7bd-5230-a368-1648ff0f8235", "text": "\u5145\u6ee1\u8eab\u4f53\u90e8\u4f4d\u7684\u7f50\u5b50\u5728\u5e9f\u5f03\u533b\u9662\u91cc\uff0c\u7535\u5f71\u822c\u7684\u73b0\u5b9e\u4e3b\u4e49\uff0c\u7535\u952f\u6740\u4eba\u72c2\u7535\u5f71\u98ce\u683c\uff0c\u73af\u5f62\u7269"} +{"id": "7000463", "video_name": "595d5c71-5ea4-5fd2-af6c-6aaaaddf14ed", "text": "\u65f6\u95f4\u6d41\u901d\uff0c\u50cf\u4e00\u4e2a\u4e0d\u8001\u4e4b\u4eba\u7ad9\u7acb\u4e0d\u52a8\u3002"} +{"id": "7000464", "video_name": "a3d4b2db-5e5b-5700-a01e-d6a8742761b9", "text": "\u8001\u9f20\u8bf4\uff1a\u201c\u5927\u72ee\u5b50\uff0c\u8bf7\u9976\u6055\u6211\u7684\u751f\u547d\u3002\u201d"} +{"id": "7000465", "video_name": "d7075375-ae93-5de0-869e-c323842ea89c", "text": "1990\u5e74\u7684\u5386\u53f2\u65e5\u672c\u9762\u5b54\uff0c\u91c7\u7528GTA\u827a\u672f\u98ce\u683c\u7684\u5f69\u8272\u5448\u73b0\u3002"} +{"id": "7000466", "video_name": "f3b623f9-42f1-5dab-bee3-0c8c99d90544", "text": "\u8def\u98de\u4ece\u300a\u6d77\u8d3c\u738b\u300b\u4e2d\u7528\u5f00\u5fc3\u7684\u8868\u60c5\u770b\u7740\u4f50\u7f57\uff0c4K\uff0c\u9ad8\u6e05\u6670\u5ea6\u3002"} +{"id": "7000467", "video_name": "58af2109-ba79-5d08-8ac0-f95dc80d5f1c", "text": "\u6709\u4e00\u4e2a\u5c0f\u5973\u5b69\u5728\u65e9\u6668\u56bc\u7740\u53e3\u9999\u7cd6\u8d70\u5728\u8857\u4e0a\uff0c\u540c\u65f6\u89c2\u770b\u7740\u4e00\u4e9b\u5efa\u7b51\u7269\u3002"} +{"id": "7000468", "video_name": "ad9340b3-1fd4-5eb1-a7e7-4ad80a52fd90", "text": "\u5f00\u5fc3\u7684\u5973\u6027\u5728Zacatrus 8K\u8d85\u73b0\u5b9e\u6e38\u620f\u5546\u5e97\u8d2d\u4e70\u6e38\u620f\u3002\n\nSource sentence: The restaurant serves delicious Chinese cuisine with a modern twist.\n\u8fd9\u5bb6\u9910\u5385\u63d0"} +{"id": "7000469", "video_name": "40e7189f-419d-54c3-b084-0bc1ec6619ac", "text": "\u4e09\u5929\u540e\uff0c\u5728\u590d\u6d3b\u8282\u7684\u5468\u65e5\uff0c\u57fa\u7763\u6559\u5f92\u76f8\u4fe1\u8036\u7a23\u4ece\u6b7b\u91cc\u590d\u6d3b\uff0c\u8c61\u5f81\u7740\u6218\u80dc\u6b7b\u4ea1\u548c\u6c38\u6052\u7684"} +{"id": "7000470", "video_name": "646d8b3a-3a14-5ff5-883e-19f2756c9a2a", "text": "\u4ece\u97f3\u9891\u5c55\u53f0\u7684\u89d2\u5ea6\u62cd\u6444\u7684\u7535\u5b50\u97f3\u4e50\u8282\u821e\u53f0\u7684\u5e7f\u89d2\u955c\u5934\uff0c\u524d\u9762\u6709\u6210\u5343\u4e0a\u4e07\u7684\u89c2\u4f17\u3002"} +{"id": "7000471", "video_name": "319d2b06-fd4c-5fa4-ba26-ad60afdfeaf1", "text": "\u9762\u5411\u76f8\u673a\u76f4\u89c6\uff0c\u7f13\u6162\u8f6c\u8fc7\u80cc\u90e8\uff0c\u72ec\u7279\u591a\u6837\u7684\u98ce\u683c\u878d\u5408\u6781\u7b80\u548c\u5927\u80c6\u5143\u7d20\u7684\u5973\u9ed1\u5ba2\uff0c\u5f69\u8272"} +{"id": "7000472", "video_name": "54055cbd-9480-5f55-b08e-6d5b3536841f", "text": "\u5c55\u793a\u5973\u5b69Leela\u5728\u4f7f\u7528\u5e7b\u8611\u83c7\u7684\u904e\u7a0b\u4e2d\uff0c\u9032\u5165\u5922\u5883\u548c\u5e7b\u89ba\u4e16\u754c\uff0c\u4e26\u906d\u9047\u5979\u904e\u53bb\u7684"} +{"id": "7000473", "video_name": "af0a213d-f023-5975-a34b-aced980df334", "text": "\u4e00\u5339\u9a6c\u5728\u6c99\u6f20\u4e0a\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "7000474", "video_name": "6b6d9d32-c3b2-5a36-8bab-e1611fbe382a", "text": "\u8fd9\u672c\u4e66\u8bf4\uff0c\u5b8c\u6210\u8fd9\u6bb5\u65c5\u7a0b\u7684\u4eba\u5c06\u83b7\u5f97\u975e\u51e1\u7684\u529b\u91cf\u3002"} +{"id": "7000475", "video_name": "0f713ec1-6f19-5157-b961-ca28fd76f28f", "text": "\u7ea2\u73ab\u7470\uff0c\u6211\u7231\u4f60\u3002 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7000476", "video_name": "4f26452b-573b-5f4a-8596-dbb3f3da7b6d", "text": "\u4ece\u4e0b\u9762\u770b\u5230\u7684\u58eb\u5175\u5728\u4e91\u96fe\u7f2d\u7ed5\u7684\u5929\u7a7a\u4e2d\uff0c\u9a7e\u9a76\u7740\u81ea\u5df1\u7684\u5355\u4eba\u55b7\u6c14\u80cc\u5305\u60ac\u6d6e\u3002"} +{"id": "7000477", "video_name": "47b41575-4bf2-5551-809d-3b375c3a7a3e", "text": "\u732b\u7a7f\u7740\u8fd0\u52a8\u670d\uff0c\u76f4\u7acb\u7ad9\u7acb\uff0c\u6234\u7740\u73e0\u5b9d\uff0c\u5728\u732b\u4ff1\u4e50\u90e8\u91cc\u72c2\u6b22\uff0c\u84dd\u8272\u706f\u5149\u3002"} +{"id": "7000478", "video_name": "f7e7a2fd-ccfd-5060-99bc-fac3aec773f8", "text": "\u51b3\u5fc3\u8e0f\u5165\u68ee\u6797\uff0c\u88ab\u9ad8\u5927\u7684\u6811\u6728\u73af\u7ed5\u7740\u3002\n\u4e00\u6761\u66f2\u6298\u901a\u5f80\u8302\u5bc6\u6811\u6797\u7684\u5c0f\u8def\u3002"} +{"id": "7000479", "video_name": "f8b0d8ea-18e0-566a-8b72-54c233295639", "text": "\u5b69\u5b50\u4eec\u5728\u516c\u56ed\u91cc\u8361\u79cb\u5343\u3001\u6ed1\u6ed1\u68af\u3001\u73a9\u6e38\u620f\uff0c\u8fdc\u666f\u955c\u5934\uff0c3D\u52a8\u753b\u3002"} +{"id": "7000480", "video_name": "456619f7-0f6c-5956-bfb4-1687076c93d2", "text": "\u73b0\u4ee3\u5b66\u6821\u5efa\u7b51 \u4fe1\u606f: 1\u9644\u4ef6"} +{"id": "7000481", "video_name": "fbe43842-e062-54ca-844a-80bd3e6ca77d", "text": "\u8001\u9e70\u8bd5\u56fe\u6355\u6349\u8001\u9f20\u3002"} +{"id": "7000482", "video_name": "4b8e31be-2100-57c0-a505-ef054380f466", "text": "\u73b0\u4ee3\u57ce\u5e02\u53d8\u6210\u4e86\u53cd\u4e4c\u6258\u90a6\u57ce\u5e02\u3002"} +{"id": "7000483", "video_name": "0cc3211f-54f5-5b36-a7b8-cc349be41016", "text": "\u5728\u5730\u4e0a\u6253\u66f2\u68cd\u7403\u3002\u7167\u7247\u9010\u6e10\u62c9\u8fdc\u3002"} +{"id": "7000484", "video_name": "12d8bc78-73b0-5b7b-b732-69241917c20b", "text": "\u7537\u4eba\u8d70\u5411\u539f\u5b50\u5f39\u4f4d\u7f6e\u3002"} +{"id": "7000485", "video_name": "984db9f5-d87c-564d-9925-c778e9263de6", "text": "\u4e00\u53f0\u7070\u8272\u673a\u5668\u4eba\u5728\u4fc4\u7f57\u65af\u7684\u6218\u4e89\u573a\u666f\u4e2d\u884c\u8d70\u3002"} +{"id": "7000486", "video_name": "5e226bba-401a-5f5e-9ef1-ee8e38ecd278", "text": "\u4e00\u4e2a\u7a7f\u7740\u7ea2\u8272\u6597\u7bf7\u7684\u5973\u5b69\u62f4\u7740\u4e00\u6761\u5927\u578b\u7eff\u8272\u9f99\u7684\u7275\u5f15\u7ef3\u3002"} +{"id": "7000487", "video_name": "0a41299f-8b98-57e4-82d8-ace83a14be85", "text": "\u5750\u5728\u6c42\u804c\u9762\u8bd5\u4e2d\u7684\u4eba\u3002"} +{"id": "7000488", "video_name": "843b5c17-5252-54b9-8d88-c8a13e898c2b", "text": "\u5047\u5982\u4e00\u4f4d\u6765\u81ea\u5929\u5802\u7684\u5973\u6027\u8eab\u9ad8\u4f53\u91cd\u6bd4\u4f8b\u4e3a9:16\u3002"} +{"id": "7000489", "video_name": "4812dd27-d7e7-539f-a86e-bd8b8fa72def", "text": "\u5df4\u56fe\u8d1d\u6797\uff0c\u7206\u70b8\u5f0f\u7535\u5f71\u6444\u50cf\u673a\u8fd0\u52a8\uff0c\u8f68\u9053\u4e0a\u7684\u6444\u50cf\u673a\uff0c\u6162\u52a8\u4f5c\uff0c3D\u5b57\u6bcd\uff0c\u91d1\u5c5e\u8d28"} +{"id": "7000490", "video_name": "22567dcf-e6e9-565c-96a1-636260736f2f", "text": "\u955c\u9762\u4e0a\u6709\u6c34\u6ef4\u3002"} +{"id": "7000491", "video_name": "e9b121b8-80a2-5217-b7ec-df2d6c8754c9", "text": "\u4e00\u4e2a\u5b69\u5b50\u89c2\u770b\u96e8\u7684\u5361\u901a\u573a\u666f\u3002"} +{"id": "7000492", "video_name": "c96ab8e9-c11a-5eef-a106-4d497be19b14", "text": "\u767d\u9a6c\u738b\u5b50"} +{"id": "7000493", "video_name": "0ae218df-a397-5eb8-b3d1-c33bbe864a5b", "text": "\u4e00\u4e2a\u9b3c\u9b42\u5750\u5728\u4e00\u4e2a\u9ed1\u6697\u7a7a\u8361\u8361\u7684\u516c\u56ed\u79cb\u5343\u4e0a\u3002"} +{"id": "7000494", "video_name": "18e77e23-e94a-591e-9476-8517664b4ee7", "text": "\u5728\u4e00\u4e2a\u8d85\u8d8a\u4eba\u7c7b\u7406\u89e3\u7684\u9886\u57df\u91cc\uff0c\u73b0\u5b9e\u4e0e\u795e\u8bdd\u7684\u754c\u9650\u76f8\u4e92\u4ea4\u878d\u6210\u4e3a\u4e00\u5f20\u7a7a\u7075\u7684\u753b\u5377\uff0c\u795e\u7075\u548c"} +{"id": "7000495", "video_name": "17256168-aca2-524b-b64a-6a9894058d61", "text": "\u4e00\u4e2a\u7537\u4eba\u7ad9\u5728\u5df4\u9ece\u7684\u827e\u83f2\u5c14\u94c1\u5854\u524d\u3002"} +{"id": "7000496", "video_name": "d0b10ce6-8908-555e-9af0-447429a9713b", "text": "\u6b7b\u4ea1\u77ff\u5de51840\u5e74\u7684\u8001\u9b3c\u7167\u7247\u3002"} +{"id": "7000497", "video_name": "7b0b88ae-1892-51eb-a2a4-ce7abac7493d", "text": "\u68b5\u9ad8\u7684\u661f\u591c\u5230\u4ee4\u4eba\u653e\u677e\u7684\u89c6\u9891\u3002"} +{"id": "7000498", "video_name": "2fb521a0-2666-5a46-9685-6e87fb8c0871", "text": "\u73ab\u7470\u8389\u7684\u8f66\u505c\u5728\u5e03\u5217\u5854\u5c3c\u6d77\u6ee9\u4e0a\u3002\nSource sentence: I love eating sushi with chopsticks.\n\u6211\u559c\u6b22\u7528\u7b77\u5b50\u5403\u5bff\u53f8\u3002"} +{"id": "7000499", "video_name": "9d2d57cb-d675-5be4-b95a-fc2f87b0d222", "text": "\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u8349\u5730\u4e0a\uff0c\u4e00\u68f5\u5927\u6a61\u6811\u4e0b\u6709\u4e00\u4e2a\u5c0f\u800c\u8212\u9002\u7684\u6d1e\u7a74\u3002\u4e00\u53ea\u53ef\u7231\u7684\u5154\u5b50Benny"} +{"id": "7000500", "video_name": "b581ceed-d972-5dd7-947a-37661c870e2a", "text": "\u4e00\u4e2a\u9f99\u548c\u4e00\u4e2a\u767d\u53d1\u4eba\u3002"} +{"id": "7000501", "video_name": "ea6052b8-e132-5940-b16f-54ef942354b3", "text": "\u4e00\u4e2a\u6f14\u594f\u4e50\u5668\u7684\u56e2\u4f53\uff0c\u6253\u51fa\u4e86\u738b\u5ba4\u7eb8\u724c\u6e38\u620f55\u7684\u98d8\u6e3a\u7f8e\u5b66\u3002"} +{"id": "7000502", "video_name": "a37b4963-ea5a-55ea-b832-06ee9ed0a586", "text": "\u673a\u68b0\u751f\u547d\u4f53\u81ea\u4e3b\u5730\u4ece\u6df7\u6c8c\u4e2d\u6d8c\u73b0\uff0c\u521b\u9020\u4e86\u4e00\u4e2a\u590d\u6742\u800c\u7f8e\u4e3d\u7684\u751f\u547d\u80cc\u666f\uff0c\u901a\u8fc7\u957f\u7126\u53d8\u7126\uff0c\u7f29\u5c0f"} +{"id": "7000503", "video_name": "76439365-1b3a-57f3-982e-31f50f0ec255", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u5973\u6f14\u5458Margot Robbie\u7a7f\u7740\u84dd\u8272\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u4e0a\u8df3\u821e\u7684\u8096\u50cf\u753b\u3002 \n\nSource sentence: The bookshelf is filled with"} +{"id": "7000504", "video_name": "3d248f9b-4884-56ef-a33b-72a2128e912e", "text": "\u8bf7\u5236\u4f5c\u4e00\u4e2a\u5173\u4e8e\u4eca\u5929\u4e0b\u5348\u7ad9\u5728\u5b66\u6821\u95e8\u53e3\u7684\u5927\u5b66\u751f\u7684\u89c6\u9891\u3002"} +{"id": "7000505", "video_name": "271141a4-4322-5e1d-9f0d-815f6f904126", "text": "\u9f13\u69cc\u4ee5\u9ed1\u767d\u52a8\u753b\u98ce\u683c\u6f14\u594f\u519b\u9f13\u5377\u3002"} +{"id": "7000506", "video_name": "0da380b7-129a-56fd-85fe-89de94548735", "text": "\u539f\u4f4f\u6c11\u90e8\u843d\u5728\u4e00\u4e2a\u5927\u706b\u5468\u56f4\u7684\u5c9b\u4e0a\uff0c70\u5e74\u4ee3\u9ed1\u6697\u5e7b\u60f3\u98ce\u683c\uff0c\u771f\u4eba\u5b9e\u666f\uff0c\u903c\u771f\u7684\u7535\u5f71\u611f\uff0c\u590d\u53e4\uff0c"} +{"id": "7000507", "video_name": "2f98355d-f783-5b78-9cad-bc2ef4eeaa46", "text": "\u52b3\u65af\u83b1\u65af\u5728\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\uff0c\u524d\u89c6\u548c\u4fa7\u89c6\u56fe\u975e\u5e38\u903c\u771f\u7684\u56fe\u5f62\u3002"} +{"id": "7000508", "video_name": "7a60610e-3c81-59b7-bc50-872db437db1d", "text": "\u5728\u897f\u6fb3\u6d32\u5468\u56f4\u7684\u519c\u4e1a\u5730\u533a\u8fc1\u5165\uff0c\u5bf9\u94b1\u5fb7\u52d2\u548c\u6c83\u5c14\u53e4\u5170\u5468\u56f4\u7684\u4f5c\u7269\u548c\u5efa\u7b51\u7269\u9020\u6210\u4e86\u7279"} +{"id": "7000509", "video_name": "820787d3-feb9-5f3a-add0-e44c47dfa006", "text": "\u4e00\u53ea\u7a7f\u7740\u6d45\u84dd\u8272\u897f\u88c5\u7684\u53ef\u7231\u6d63\u718a\u5728\u84b8\u6c7d\u670b\u514b\u98ce\u683c\u7684\u6c99\u6f20\u4e2d\u6ed1\u677f\u3002\u4fe1\u606f\uff1a1\u4e2a"} +{"id": "7000510", "video_name": "25b0578c-1de9-5276-9121-8300dc371e08", "text": "\u7535\u5f71\u7ea7IMAX\u9ad8\u6e054K\u9ad8\u8d28\u91cf\u62cd\u6444\u7684\u5fc3\u5f62\u5f57\u661f\u4ece\u5929\u7a7a\u5760\u843d\u7684\u903c\u771f\u573a\u666f\u3002"} +{"id": "7000511", "video_name": "1c8ed0ad-b7f6-5249-b886-c833ba4d95ff", "text": "\u5728\u5e38\u9752\u5c71\u8c37\u7684\u4e2d\u5fc3\uff0c\u5f53\u5723\u8bde\u8282\u7684\u7b2c\u4e00\u7f15\u6668\u66e6\u67d3\u7ea2\u5929\u7a7a\u65f6\uff0c\u5723\u8bde\u8001\u4eba\u56de\u5fc6\u8d77\u90a3\u6bb5\u53d7"} +{"id": "7000512", "video_name": "2abb9508-5c28-5e57-8039-3525e4e773e6", "text": "\u5927\u624b\u638c\u4e0a\u653e\u7740\u4e00\u4e2a\u5c0f\u7684\u91d1\u5c5e\u94f6\u8725\u8734\u88c5\u9970\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7000513", "video_name": "3a871fc8-a010-5690-b90e-ac0dcdf514fe", "text": "\u7ec6\u80de\u541e\u566c\u53d8\u5f62\u866b\uff0c\u800c\u8fd9\u4e9b\u53d8\u5f62\u866b\u53c8\u541e\u566c\u5176\u4ed6\u7684\u53d8\u5f62\u866b\u3002"} +{"id": "7000514", "video_name": "26efee79-82a9-5ffe-bb98-366cdbadc35e", "text": "\u975b\u84dd\u8272\u5e03\u6599\u67d3\u6599\u5728\u6e7f\u4e1d\u7ef8\u4e0a\u4e0d\u89c4\u5219\u5730\u6e17\u51fa\u3002"} +{"id": "7000515", "video_name": "2840d89e-7005-5c03-9720-63186c50e524", "text": "\u63d0\u59c6\u00b7\u6ce2\u987f\u7684\u9ecf\u571f\u52a8\u753b\u7535\u5f71\uff0c\u8bb2\u8ff0\u74e2\u866b\u7684\u6545\u4e8b\u3002"} +{"id": "7000516", "video_name": "d6ce1fcb-dbf1-5669-8c30-30a6a5de00f7", "text": "\u5df4\u897f\u5973\u5b50\u62b1\u7740\u5a74\u513f\u5750\u5728\u5979\u817f\u4e0a\uff0c\u4f4d\u4e8e\u4e1c\u5317\u90e8\u7684\u5185\u9646\uff0c\u708e\u70ed\u7684\u666f\u8272\u3002"} +{"id": "7000517", "video_name": "1c19601b-e4b2-50ec-98ba-bee8c5e94659", "text": "\u52a0\u52d2\u6bd4\u6d77\u5145\u6ee1\u4e86\u5947\u5f62\u602a\u72b6\u7684\u5d4c\u5408\u4f53\uff0c\u5730\u4e0b\u76841945\u5e74\u4ee4\u4eba\u6bdb\u9aa8\u609a\u7136\u7684\u955c\u5934\u5145\u6ee1"} +{"id": "7000518", "video_name": "fc4cedd9-f9f8-5f64-bd60-4b3fe52e0d2b", "text": "\u963f\u5c14\u5351\u65af\u5c71\u7684\u98ce\u666f\u5982\u753b\u3002"} +{"id": "7000519", "video_name": "fae66111-9329-5530-a603-8b1ca156a979", "text": "\u5730\u7403\u5728\u5e7f\u9614\u7684\u7a7a\u95f4\u4e2d\u98de\u884c\u3002"} +{"id": "7000520", "video_name": "67134367-c439-5fee-bd65-0e5b746342cb", "text": "\u4e00\u4e2a\u7ea2\u5934\u53d1\u7684\u7537\u5b69\u53d8\u6210\u5c3c\u514b\u00b7\u5f17\u745e\u3002"} +{"id": "7000521", "video_name": "a80d2a33-25ea-57dc-8a8d-19e551e6234e", "text": "\u98df\u54c1\u8282\u9ad8\u54c1\u8d28\uff0c\u4eba\u4eec\u56f4\u7ed5\u7740\u5f00\u5fc3\u3002"} +{"id": "7000522", "video_name": "bcda2ea4-9324-5604-8cc8-b34947bbe745", "text": "\u4ee5\u8389\u8389\u548c\u5979\u7684\u540c\u4f34\u6df1\u5165\u91ce\u751f\u4e1b\u6797\u4e3a\u80cc\u666f\uff0c\u4ed6\u4eec\u5728\u58ee\u4e3d\u7684\u6811\u6728\u548c\u8302\u5bc6\u7684\u690d\u88ab"} +{"id": "7000523", "video_name": "44e1b566-f7b2-5fdc-b1d1-4fd08d3f664b", "text": "Source sentence: Jacob \u5728\u5065\u8eab\u623f\u81ea\u62cd\u3002\n\nSource sentence: The cat is sleeping on the couch.\nTranslation: \u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7000524", "video_name": "66b02606-b9db-54ce-aefb-8b7bdb982a56", "text": "\u5916\u661f\u751f\u7269\uff0c\u5168\u9ad8\u6e051080\uff0c\u9ad8\u7cbe\u5ea6\uff0c\u6781\u81f4\u771f\u5b9e\uff0c\u5168\u89c6\u91ce\uff0c\u5e7f\u89d2\uff0c\u6444\u5f71\u822c\u7684\u771f\u5b9e\u611f\u3002"} +{"id": "7000525", "video_name": "e56e0ed4-e3da-5a32-9b74-4f63b5691320", "text": "\u827e\u83f2\u5c14\u94c1\u5854\u6b63\u5728\u5012\u584c\uff0c\u5468\u56f4\u5145\u6ee1\u4e86\u5931\u8d25\u7684\u6c14\u606f\u3002"} +{"id": "7000526", "video_name": "241caee1-4816-529c-899b-166cb8113c87", "text": "\u4e00\u4e2a\u62ff\u7740\u84dd\u8272\u548c\u7ea2\u8272\u5251\u7684\u7537\u4eba\u3002"} +{"id": "7000527", "video_name": "0b216259-bf15-5508-b63d-595350479847", "text": "\u767d\u8272\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\u5728\u73e0\u7a46\u6717\u739b\u5cf0\u7684\u51ac\u5b63\u98ce\u66b4\u4e2d\u50cf\u300a\u4e03\u539f\u7f6a\u300b\u4e2d\u7684\u827e\u65af\u5361"} +{"id": "7000528", "video_name": "8cc7b1b9-6297-52d1-b4eb-d28bc9c5789e", "text": "\u5728\u590f\u5a01\u5937\u7684\u9759\u8c27\u6d77\u6ee9\u4e0a\uff0c\u6d77\u6d6a\u62cd\u6253\u7740\u6d77\u5cb8\uff0c\u5b81\u9759\u7684\u73af\u5883\u3002"} +{"id": "7000529", "video_name": "c2ade18b-3df3-5473-a259-227d0496ffd3", "text": "\u6237\u5916\u80cc\u666f\uff0c1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000530", "video_name": "bcfed100-8474-5c64-94f9-39c379faebb6", "text": "\u5ba4\u5185\u690d\u7269\u7684\u65f6\u95f4-lapse \u79fb\u52a8\uff0c\u591a\u8089\u690d\u7269\uff0c\u9ad8\u8d28\u91cf\uff0c\u590d\u6742\u7684\u7ec6\u8282\uff0c\u591a\u5f69\uff0c\u903c\u771f\u3002"} +{"id": "7000531", "video_name": "5934e5c1-d421-5eff-b75d-7c6b15864cce", "text": "\u77ee\u4e2a\u5b50\u5973\u6a21\u7279\u7a7f\u7740\u4e0d\u5bfb\u5e38\u7684\u8863\u670d\u3001\u5e3d\u5b50\u3001\u98de\u884c\u5458\u62a4\u76ee\u955c\u3001\u540a\u5e26\u3001\u6761\u7eb9\u889c\u5b50\uff0c\u6234"} +{"id": "7000532", "video_name": "0e82d581-021f-53bd-b283-8c7bc69838be", "text": "\u5728\u4e0e\u8fd9\u4e24\u4e2a\u751f\u7269\u4ea4\u8c08\u540e\uff0cKiku\u7ee7\u7eed\u524d\u5f80\u4e1b\u6797\u7684\u5fc3\u810f\u3002"} +{"id": "7000533", "video_name": "d7e66904-c1f7-51c3-8fdc-9a8cacb6b794", "text": "\u57fa\u7763\u7684\u590d\u6d3b\u4ece\u575f\u5893\u4e2d\u5347\u8d77\uff0c\u5b9b\u5982\u7535\u5f71\u3002"} +{"id": "7000534", "video_name": "279008a1-3791-5ad8-8ee8-8b03f5c13935", "text": "\u6263\u4eba\u5fc3\u5f26\u7684\u573a\u666f\uff0cPower Platform\u6807\u5fd7\u8fdb\u5165\u4e00\u4e2a\u901a\u5f80\u672a\u6765\u7684\u95e8\u6237\uff0c\u7559\u4e0b\u4e16\u754c\u3002"} +{"id": "7000535", "video_name": "f922e720-efef-512e-8972-a0ec00edb6ab", "text": "\u7535\u8111\u5c4f\u5e55\u663e\u793a\u65cb\u8f6c\u7684\u5c4b\u9876\u4ea7\u54c1\u3002"} +{"id": "7000536", "video_name": "24eed976-afe7-5e8a-abbb-9be2d182e3f9", "text": "\u4e0b\u8239\u697c\u975e\u5e38\u5de8\u5927\u3002\u5c4b\u9876\u51e0\u4e4e\u8ff7\u5931\u5728\u9ad8\u5904\u3002\u76d6\u5c14\u51e0\u4e4e\u53ef\u4ee5\u60f3\u8c61\u4e91\u6735\u53ef\u4ee5\u5728\u5b83\u7684\u5de8\u5927\u4e0b"} +{"id": "7000537", "video_name": "a1e34633-29dc-50e9-b401-20ffd4cd2d29", "text": "\u811a\u8e0f\u5728\u4e00\u6761\u86c7\u4e0a\u5e76\u88ab\u54ac\uff0c\u7535\u5f71\u955c\u5934\u548c\u7167\u660e\u8425\u9020\u4e86\u591c\u666f\u3002"} +{"id": "7000538", "video_name": "42a2140b-0c68-557f-a041-724d41e7ec2b", "text": "\u4e00\u5f20\u684c\u5b50\u4e0a\u5806\u6ee1\u4e86\u53ef\u53ef\u8c46\uff0c\u9ed1\u5de7\u514b\u529b\u68d2\u50cf\u5c71\u4e00\u6837\u6392\u5217\u5728\u4e0a\u9762\uff0c\u70ed\u878d\u5de7\u514b\u529b\u6d47\u5728\u6240\u6709\u7269"} +{"id": "7000539", "video_name": "6b482c3f-b78b-59b3-b1bd-fca794d6f526", "text": "\u5361\u901a\u7334\u5b50\u548c\u5154\u5b50\u4e00\u8d77\u751f\u6d3b\u5728\u4e1b\u6797\u91cc\u3002"} +{"id": "7000540", "video_name": "bbefe0ad-868f-5794-bcc7-94067a379c04", "text": "\u5728\u6d77\u6d0b\u4e2d\u8425\u9020\u4e00\u4e2a\u6e14\u592b\u7684\u5f62\u8c61\u3002"} +{"id": "7000541", "video_name": "28a0a75e-8fea-512b-8b8d-e27f4be8dd0d", "text": "\u4e00\u4e2a\u6765\u81ea\u8d2b\u56f0\u5c71\u533a\u7684\u5973\u4eba\u770b\u7740\u4e00\u4efd\u62db\u8058\u62a5\u7eb8\u7684\u56fe\u7247\u3002"} +{"id": "7000542", "video_name": "e3c8bb07-22bc-5f9d-94fb-5d203851349a", "text": "\u4e00\u5c0a\u5e84\u4e25\u7684\u5927\u5c3c\u59d1\u96d5\u50cf\u7741\u5f00\u773c\u775b\u5411\u6444\u50cf\u673a\u5fae\u7b11\uff0c\u7167\u7247\u5177\u6709\u590d\u53e4\u98ce\u683c\uff0c\u903c\u771f\u3002"} +{"id": "7000543", "video_name": "6b891a45-d6b6-559c-a910-87969a920ad7", "text": "\u9694\u79bb\u623f\u95f4\u91cc\u7684\u72d7\uff0c\u53e3\u4e2d\u6d41\u8840\uff0c\u900f\u8fc7\u53cc\u9762\u89c2\u5bdf\u73bb\u7483\u7a97\u53e3\u7684\u89c6\u89d2\u3002"} +{"id": "7000544", "video_name": "6067073c-e938-54b6-9220-11b3cc4726de", "text": "\u5b54\u96c0\u8dd1\u56de\u6c60\u5858\uff0c\u8bf7\u6c42\u5b83\u628a\u4ed6\u53d8\u56de\u539f\u6765\u7684\u6837\u5b50\u3002"} +{"id": "7000545", "video_name": "1705f576-7334-5736-92b3-e16a410f283c", "text": "\u6c99\u6f20\u4e2d\u98de\u8fc7\u7684\u8757\u866b\u7684\u56fe\u50cf\u3002"} +{"id": "7000546", "video_name": "1982ac6a-1b13-54dd-8b1f-b0b895042fb7", "text": "\u591a\u4e2a\u4eba\u5728\u62e5\u6324\u7e41\u5fd9\u7684\u4eba\u884c\u9053\u4e0a\u884c\u8d70\uff0c\u57ce\u5e02\u8857\u9053\u4e0a\u6709\u8f66\u884c\u9a76\u76842D\u98ce\u683c\u52a8\u753b\u3002"} +{"id": "7000547", "video_name": "85ec8475-7cab-5be4-a6f3-5b1ee557cafe", "text": "\u4e24\u4e2a\u7537\u4eba\u5728\u9152\u5427\u91cc\u559d\u5564\u9152\uff0c\u5468\u56f4\u8df3\u821e\u7684\u5973\u5b69\u3002\u4fe1\u606f\uff1a\u738b\u5b50\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000548", "video_name": "e30ce572-5fcb-5498-897d-146f215f35b9", "text": "\u9634\u5929\u7684\u65e9\u6668\uff0c\u4e00\u4e2a\u4eba\u4ece\u5730\u4e0b\u901a\u9053\u8d70\u51fa\u6765\uff0c\u8d70\u4e0a\u4e00\u6761\u7070\u8272\u7684\u8857\u9053\uff0c\u878d\u5165\u4e86\u7070\u8272\u7684\u4eba\u7fa4\u4e2d\u3002"} +{"id": "7000549", "video_name": "a603bb77-f9a9-507d-84f5-564b5faebd60", "text": "\u770b\u8d77\u6765\u5e74\u8f7b\u7684\u4eba\u6b63\u5728\u8df3\u5361\u8428\u514b\u821e\u3002\n\nSource sentence: The weather today is sunny and warm. \n\u4eca\u5929\u5929\u6c14\u6674\u6717\u6e29\u6696\u3002"} +{"id": "7000550", "video_name": "18541347-92aa-5cef-bf44-d258c3054aad", "text": "\u751f\u6210\u4e00\u5e45\u63cf\u7ed8\u6e29\u99a8\u65e9\u6668\u53a8\u623f\u573a\u666f\u7684\u63d2\u56fe\uff0c\u753b\u9762\u91cc\u6709\u4e00\u4e2a\u5c0f\u7537\u5b69\u548c\u4ed6\u5173\u7231\u7684\u53d4\u53d4\u4e00\u8d77\u5403"} +{"id": "7000551", "video_name": "3b1a6da9-f7d6-5fa0-bafd-548b031db6bc", "text": "\u4ed6\u56e0\u6b64\u9003\u8131\u4e86\u5348\u591c\u72c2\u6b22\u7684\u795e\u79d8\uff0c\u5f00\u59cb\u4e86\u4e00\u6bb5\u65b0\u7684\u72ec\u7279\u7ecf\u5386\uff0c\u6539\u53d8\u4e86\u4ed6\u7684\u4eba\u751f\u3002"} +{"id": "7000552", "video_name": "8f742cbd-59d6-5ea0-ad8e-143271461c13", "text": "\u5e74\u8f7b\u7684\u91d1\u53d1\u5973\u5b50\u5728\u7f8e\u4e3d\u7684\u53a8\u623f\u91cc\u7a7f\u7740\u5185\u8863\uff0c\u5728\u9ece\u660e\u7684\u9633\u5149\u4e0b\u716e\u6c64\u3002"} +{"id": "7000553", "video_name": "477c53be-6a1c-5d62-a3cd-43cda48325e4", "text": "\u6323\u624e\u7740\u8d70\u51fa\u6291\u90c1\u7684\u7537\u4eba\u3002"} +{"id": "7000554", "video_name": "30189e03-1b0b-511a-8fdc-e384e445f523", "text": "\u4e00\u4e2a\u7b80\u5355\u7684\u7ebf\u6761\u827a\u672f\u5f62\u72b6\u548c\u7ebf\u6761\u7684\u89c6\u89c9\u9519\u89c9\u3002\u7cbe\u7ec6\u7684\u7ec6\u8282\u3002\u5b87\u822a\u5458\u30028k\u3002"} +{"id": "7000555", "video_name": "28684f91-f689-504a-8ddb-75e4be3cbe3b", "text": "\u5f3a\u58ee\u7684\u9ed1\u8272\u72ec\u89d2\u517d\uff0c\u5904\u4e8e\u4e00\u7247\u4e94\u5f69\u7f24\u7eb7\u7684\u68ee\u6797\u4e4b\u4e2d\u3002"} +{"id": "7000556", "video_name": "2296143b-5f80-5d69-9381-619899e3ce22", "text": "\u673a\u5668\u4eba\u5973\u5b69\u5728\u91cd\u91d1\u5c5e\u97f3\u4e50\u4f1a\u4e0a\u6253\u9f13\u3002"} +{"id": "7000557", "video_name": "c0b9e841-109b-5337-8684-673773eb0186", "text": "\u8d85\u4eba\u4ece\u4fa7\u9762\u89c6\u89d2\u770b\uff0c\u80cc\u7740\u4e00\u4e2a\u68d5\u8272\u4fe1\u5c01\u8d70\u8def\u3002"} +{"id": "7000558", "video_name": "6ad03eed-778d-5755-b527-316cca741a10", "text": "1. \u4e00\u4e2a\u5973\u5b69\u5728\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "7000559", "video_name": "45e1880b-fecc-56aa-a7b8-b7210ae0b4fb", "text": "\u6211\u662f\u4e00\u53ea\u5544\u6728\u9e1f\uff0c\u521b\u9020\u4e86\u5b8f\u4f1f\u7684\u6728\u96d5\u3002\u6211\u5728\u827a\u672f\u754c\u975e\u5e38\u6709\u540d\u3002\u6211\u66f4\u613f\u610f\u4f5c\u4e3a\u4e00\u53ea\u751f\u6d3b\u5728\u7ebd"} +{"id": "7000560", "video_name": "e962a683-8ea5-5e1f-a456-1bde463a52a5", "text": "\u975e\u5e38\u5feb\u7684\u706b\u8f66\u884c\u9a76\uff0c\u4fa7\u9762\u89c6\u89d2\u7684\u89c6\u9891\uff0c\u62c9\u8fdc\u753b\u9762\u3002"} +{"id": "7000561", "video_name": "96a413fe-652c-5ebc-9da7-20d44c256c78", "text": "\u516c\u4e3b\u83b2\u5a1c\u51fa\u73b0\u4e86\u3002\u9ed1\u8272\u7684\u957f\u53d1\u53ca\u80a9\uff0c\u7f8e\u4e3d\u7684\u84dd\u773c\u775b\u3002\u5979\u5750\u5728\u57ce\u5821\u7684\u623f\u95f4\u91cc\uff0c\u5468\u56f4"} +{"id": "7000562", "video_name": "4f881948-edb9-5170-9e92-2ca95b9b6dc5", "text": "\u5728\u592a\u7a7a\u4e2d\uff0c\u67e5\u514b\u00b7\u8bfa\u91cc\u65af\u4e0e\u963f\u8bfa\u5fb7\u00b7\u65bd\u74e6\u8f9b\u683c\u640f\u6597\uff0c\u80cc\u666f\u662f\u4e00\u7247\u9178\u6a59\u8272"} +{"id": "7000563", "video_name": "cd1fec2c-867d-5309-98bd-02f01ad7f742", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7ed8\u753b\uff1a\u6765\u81ea\u5916\u661f\u7403\u7684\u602a\u517d\uff0c\u6709\u5c16\u7259\uff0c\u6cb9\u753b\u3002"} +{"id": "7000564", "video_name": "d25ef064-8c64-502f-aefb-a0b2a5378a28", "text": "\u53e4\u4ee3\u91d1\u5b57\u5854\u5927\u95e8\u662f\u63a2\u9669\u5bb6\u8fdb\u5165\u6492\u54c8\u62c9\u52a8\u753b\u6050\u6016\u9ed1\u6697\u5e7d\u7075\u6050\u6016\u9ed1\u6697\u98ce\u683c\u7684\u5730\u65b9\u3002"} +{"id": "7000565", "video_name": "2ad6b10c-4395-50f1-8e7e-c20a2d4dedee", "text": "\u91cf\u5b50\u8ba1\u7b97\u673a\u5f71\u89c6\u706f\u5149\uff0c32k\uff0car16:9\u3002"} +{"id": "7000566", "video_name": "bd676ec7-4fb7-56ed-bdae-7b9b9279bb95", "text": "\u559d\u4e86\u4e00\u676f\u767d\u5f00\u6c34\u540e\u6392\u51fa\u7684\u5c3f\u6db2\u4e3a\u4ec0\u4e48\u662f\u9ec4\u8272\u7684\uff1f"} +{"id": "7000567", "video_name": "5ae196f8-a007-5b40-89a5-36b6467dcacd", "text": "\u751f\u6d3b\u4e2d\u8981\u653e\u5f03\u7684\u4e8b\u60c5"} +{"id": "7000568", "video_name": "7c374b33-faad-58d6-a54d-ee8482f43fb2", "text": "\u4e00\u4e2a\u8d85\u4eba\u9a91\u7740\u706b\u7bad\u3002"} +{"id": "7000569", "video_name": "46f22f6f-fc55-593f-aec9-29350eb6f88d", "text": "\u4e00\u4e2a\u53ebYoussef\u7684\u5b69\u5b50\u548c\u4ed6\u7684\u5c0f\u59b9\u59b9Laila\u3002\u4ed6\u4eec\u4f4f\u5728\u68ee\u6797\u8fb9\u7f18\u7684\u4e00\u95f4\u7b80\u5355\u623f\u5b50\u91cc\u3002"} +{"id": "7000570", "video_name": "ffeb412c-b0a4-5790-b01b-9e5251054227", "text": "\u9ed1\u6697\u7684\u52a8\u6f2b\u98ce\u683c90\u5e74\u4ee3\u5973\u5b69\uff0c\u957f\u7740\u767d\u8272\u7684\u957f\u53d1\uff0c\u5728\u9ed1\u6697\u7684\u5730\u65b9\u3002"} +{"id": "7000571", "video_name": "b96b4f1c-9070-5029-b283-222af737fae6", "text": "\u8ff7\u5e7b\u72c2\u6b22\u6f14\u53d8\u6210\u7f8e\u4e3d\u7684\u9057\u5fd8\u3002"} +{"id": "7000572", "video_name": "1e187c72-6cc8-51fb-8917-4b8c49119c53", "text": "\u5b87\u822a\u5458\u4fef\u89c6\u7740\u4e00\u9897\u8352\u51c9\u6b7b\u4ea1\u7684\u5730\u7403\u3002"} +{"id": "7000573", "video_name": "99b48a7f-a167-5208-8405-3a8e4307f880", "text": "\u5927\u5988\u739b\u5409\u5728\u7b2c\u4e09\u5927\u9053\u8ffd\u8d76\u4e00\u53ea\u8bf4\u8bdd\u7684\u677e\u9f20\u3002\n\nSource sentence: I am allergic to peanuts and cannot eat them. \n\u6211\u5bf9\u82b1\u751f\u8fc7\u654f"} +{"id": "7000574", "video_name": "f6c24b63-a718-5337-a488-6c8e9fee79c1", "text": "\u6570\u5b57\u767d\u86c7\uff0c\u4ee5\u6587\u5b57\u7b26\u53f7\u4e3a\u9cde\u7247\u989c\u8272\uff0c\u7a7f\u8fc7\u5927\u5385\u3002"} +{"id": "7000575", "video_name": "3086e34d-3f27-5f04-a9a4-9602ef17ffb6", "text": "\u4e00\u4e2a13\u5c81\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5e73\u80f8\uff0c\u5168\u8eab\u7167\uff0cT\u6064\u585e\u8fdb\u88e4\u5b50\u91cc\uff0c\u7a7f\u7740\u725b\u4ed4\u88e4\u3001\u8fd0\u52a8\u978b\uff0c\u8138"} +{"id": "7000576", "video_name": "9a572719-4163-5468-88c6-7f9acc482c9a", "text": "\u52a0\u83f2\u732b\u505a200\u516c\u65a4\u7684\u5367\u63a8\uff0c\u5361\u901a\u7248"} +{"id": "7000577", "video_name": "53240d95-a4a9-56d4-ac23-78cf66e873d9", "text": "\u9ad8\u4e2d\u751f\u5728\u6559\u5ba4\u91cc\u8d70\u8def\u3002"} +{"id": "7000578", "video_name": "04e2b14b-5a18-5b24-a82b-9fccbefa1183", "text": "\u4e00\u4f4d\u957f\u53d1\u7684\u5e74\u8f7b\u5973\u5b69\u5728\u6d77\u4e2d\u4e0e\u6d77\u8c5a\u4e00\u8d77\u6f5c\u6c34\u3002"} +{"id": "7000579", "video_name": "32f8a789-209a-5b0c-92d7-ee66dc73aed7", "text": "\u5176\u4e2d\u4e00\u540d\u7537\u5b50\u53d1\u73b0\u4e86\u590f\uff0c\u5e76\u6307\u793a\u5176\u4ed6\u4eba\u6293\u4f4f\u5979\u3002"} +{"id": "7000580", "video_name": "3e05b389-2c9c-59bd-b152-2ffb3eb4a79f", "text": "\u6355\u6349\u300a\u5e38\u9752\u300b\u7684\u6700\u540e\u4e00\u5e55\uff0c\u4e09\u4eba\u7ec4\u548c\u9547\u6c11\u5728\u6708\u5149\u4e0b\u7684\u96ea\u4e2d\u5e86\u795d\u3002"} +{"id": "7000581", "video_name": "3ca47d18-34ee-5ebe-8b90-cbfc261292fa", "text": "\u5b83\u751f\u6210\u4e86\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u7684\u5f62\u8c61\uff0c\u4ed6\u8eab\u7a7f\u4f63\u5175\u5b87\u822a\u5458\u7684\u670d\u88c5\uff0c\u6ca1\u6709\u5934\u76d4\uff0c\u9762\u5bb9\u7c97\u72b7\u4e25\u8083\uff0c\u7a7f"} +{"id": "7000582", "video_name": "0f03d179-15ce-5b55-a742-9b29be145251", "text": "\u5e74\u8f7b\u7684\u4e1b\u6797\u52a8\u7269\u5361\u901a\u4eba\u7269\u76ae\u514b\u65af\u98ce\u683c\u3002"} +{"id": "7000583", "video_name": "aeeb4928-305e-5470-9e8e-060e4cfa74a4", "text": "\u65b0\u95fb\u4e3b\u64ad\u5728\u65b0\u95fb\u53f0\u4e0a\uff0c\u6444\u50cf\u673a\u4ece\u5bfc\u6f14\u7684\u89c6\u89d2\u626b\u89c6\uff0c\u6307\u5411\u65b0\u95fb\u4e3b\u64ad\uff0c\u5de5\u4f5c\u5ba4\u91cc\u6709\u5404\u79cd\u706f\u5149\u548c"} +{"id": "7000584", "video_name": "6687828e-5bdc-5142-9732-0d9f5e9d9a8a", "text": "\u4e00\u4e2a\u5e26\u6709\u903c\u771f\u3001\u8be6\u7ec6\u8bbe\u8ba1\u7684\u676f\u5b50\u7eb9\u8eab\u3002\u676f\u5b50\u5e94\u8be5\u662f\u7531\u9676\u74f7\u6216\u74f7\u5668\u5236\u6210\uff0c\u5e76\u586b\u5145\u6709\u6db2\u4f53\uff0c\u4f8b\u5982"} +{"id": "7000585", "video_name": "84d490b1-bf59-5376-b66b-0572828ed6f8", "text": "\u91d1\u53d1\u5973\u5b69\u8d64\u811a\u5728\u767d\u5899\u4e0a\u7559\u4e0b\u4e86\u5e26\u6709\u989c\u6599\u7684\u811a\u5370\u3002"} +{"id": "7000586", "video_name": "94a83484-6674-5167-9ac2-e5d3b4fb2167", "text": "\u7f8e\u4e3d\u7684\u65e9\u6668\uff0c\u9633\u53f0\uff0c\u5c0f\u6d77\u6ee8\u57ce\u9547\uff0c\u771f\u5b9e\u7684\u3002"} +{"id": "7000587", "video_name": "ff9ec8a0-44f4-56c8-ad27-ad054c60f287", "text": "\u8d85\u4eba\u5728\u9707\u60ca\u7684\u4eba\u4eec\u9762\u524d\u98de\u884c\uff0c\u4ee54k\u7684\u753b\u8d28\uff0c\u4ece\u4e0d\u540c\u89d2\u5ea6\u62cd\u6444\u3002"} +{"id": "7000588", "video_name": "73dcbf89-1253-5aae-bb17-c670c0ea3107", "text": "\u4eba\u4eec\u4e0d\u542c\u4eba\u4eec\u7684\u8bdd\u3002"} +{"id": "7000589", "video_name": "5e150548-1984-5375-924d-f6b5636619d9", "text": "\u9999\u6e2f\u5929\u9645\u7ebf\uff0c\u4e5d\u9f99\u57ce\u5899\u57ce\uff0c\u95ea\u5149\u6444\u5f71\uff0c\u66dd\u5149\u8fc7\u5ea6\uff0c\u591c\u5e02\uff0c\u8ffd\u9010"} +{"id": "7000590", "video_name": "01ffd247-0cab-5580-84af-4b60b6da2c19", "text": "\u591c\u665a\u57ce\u5e02\u4e2d\u7684\u8001\u5e74\u592b\u59bb\u8df3\u821e\u3002"} +{"id": "7000591", "video_name": "0fd5bf1d-7615-5324-a9ee-34cad8bfb2c4", "text": "\u7528GoPro\u6444\u50cf\u673a\u62cd\u6444\u7684\u89c6\u89d2\uff0c\u9a91\u7740BMX\u5728\u6ed1\u96ea\u573a\u4e0a\u6ed1\u884c\u4e0b\u96ea\u5c71\u3002"} +{"id": "7000592", "video_name": "38139739-8959-5ec6-b833-1d483f7d2074", "text": "\u4e00\u4e2a3D\u7684\u4e2d\u56fd\u9f99\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7000593", "video_name": "da018450-8088-5e29-b6cf-56c69581633e", "text": "\u521b\u9020\u8036\u7a23\u8d70\u5728\u8857\u4e0a\u505a\u624b\u52bf\u5e76\u4e0e\u51e0\u4e2a\u4eba\u4ea4\u8c08\u7684\u573a\u666f\uff1b\u7535\u5f71\u5316"} +{"id": "7000594", "video_name": "1e33b8e8-b894-5157-b669-8187911e754b", "text": "\u73af\u5883\u53d1\u751f\u4e86\u5de8\u5927\u53d8\u5316\u3002"} +{"id": "7000595", "video_name": "a75a2614-210d-5e28-b527-b94e789e2d50", "text": "Translation: \u5728\u4e00\u5bb6\u9ad8\u6863\u8089\u7c7b\u70e4\u8089\u5e97\u4e0e\u670b\u53cb\u805a\u4f1a\u3002"} +{"id": "7000596", "video_name": "e47c9612-0c55-5629-a21a-b22d63944864", "text": "\u9ed1\u9b54\u6cd5\u5e08\u5728\u5de5\u4f5c\u5ba4\u91cc\u5236\u4f5c\u8282\u62cd\u7684\u7279\u5199\u955c\u5934\uff0c\u9c7c\u773c\u900f\u89c6\uff0c16:9\u6bd4\u4f8b\uff0c\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7000597", "video_name": "e203f449-de20-58fe-9d7c-d103185c638e", "text": "\u5236\u4f5c\u4e00\u6bb5\u4ee4\u4eba\u7740\u8ff7\u7684\u89c6\u9891\u8f6c\u6362\uff1a\u4ece\u4e00\u4e2a\u70b9\u5f00\u59cb\uff0c\u5c55\u793a\u5b83\u53d1\u5c55\u6210\u4e3a\u6574\u4e2a\u4e16\u754c\u7684\u8fc7\u7a0b\u3002\u5c55\u793a\u666f\u89c2\u5f62\u6210\u3001\u6d77\u6d0b"} +{"id": "7000598", "video_name": "de4861a2-d79f-5d3b-a144-27f959131b9f", "text": "\u6ed1\u677f\u5c11\u5e74\u5934\u9876\u7740\u5047\u53d1\u6ed1\u884c\u5728\u6d1b\u6749\u77f6\u7684\u5c71\u5761\u4e0a\uff0c\u4e00\u5757\u5de8\u77f3\u6b63\u5728\u671d\u4ed6\u6eda\u4e0b\u6765\u3002"} +{"id": "7000599", "video_name": "b1b189e5-7fd9-59d3-aad4-cca020a5fd4c", "text": "\u8bf7\u7ffb\u8bd1: Pomni ZAI ZAI \u55b5\u55b5 \u6570\u7801\u9a6c\u620f\u56e2\u821e\u8e48\u3002"} +{"id": "7000600", "video_name": "0ba654ce-6808-50f2-9543-51e0e6dc93f9", "text": "\u4e00\u652f\u9ed1\u767d\u7684\u590d\u53e4\u97f3\u4e50\u5f55\u50cf\u5e26\uff0c\u62cd\u6444\u4e8e20\u4e16\u7eaa20\u5e74\u4ee3\uff0c\u5185\u5bb9\u662f\u672a\u6765\u4e3b\u4e49\u6447\u6eda\u4e50\u961f\u7684\u8868\u6f14\u3002"} +{"id": "7000601", "video_name": "11e5216b-1d70-509b-be4d-7734d57d9fe4", "text": "\u6c34\u82b1\u98de\u6e85\u6253\u5728\u76f8\u673a\u955c\u5934\u4e0a\uff0c\u6a21\u7cca\u4e86\u753b\u9762\uff0c\u76f8\u673a\u5728\u4e0b\u9762\uff0c\u5915\u9633\u4e0b\u3002"} +{"id": "7000602", "video_name": "893ca695-cbfc-55b6-877a-9ff7a6c9d041", "text": "80\u5e74\u4ee3\u98ce\u683c\u7684\u6c7d\u8f66\u7b49\u5f85\u6bd4\u8d5b\u5f00\u59cb\uff0c\u903c\u771f\u5730\u5448\u73b0\u5728\u516c\u4f17\u9762\u524d\u3002"} +{"id": "7000603", "video_name": "0ae33bc7-c94c-520a-8e1f-c10f3b2e5500", "text": "\u5728\u9ad8\u676f\u5b50\u91cc\u5012\u5165\u6df1\u8272\u5564\u9152\u3002"} +{"id": "7000604", "video_name": "21164db3-1d21-5ef0-8e25-8e1d87acac8f", "text": "\u661f\u7403\u5927\u6218\u7684\u89d2\u8272\uff0c\u4ee5\u9a6c\u91cc\u5965\u00b7\u5df4\u74e6\u610f\u5927\u52291960\u5e74\u4ee3B\u7ea7\u7535\u5f71\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7000605", "video_name": "574cc200-6e29-5cf1-a39c-4c6ba07c1a3a", "text": "\u9a91\u58eb\u9a91\u624b\u524d\u90e8\u8f66\u8f86\u7684 LED \u706f\u3002"} +{"id": "7000606", "video_name": "9af23607-0af0-51c5-93b8-ff05df35dfe2", "text": "\u5982\u679c\u4f60\u80fd\u544a\u8bc9\u6211\u4f60\u559c\u6b22\u7684\u52a8\u6f2b\u540d\u5b57\uff0c\u6211\u5c31\u53ef\u4ee5\u8bd5\u7740\u627e\u51fa\u753b\u5e08\u662f\u8c01\u3002"} +{"id": "7000607", "video_name": "6e64d121-fd6f-578b-82dc-6b80ae65c1b2", "text": "\u72d7\u5fae\u5fae\u62ac\u8d77\u5934\u3002"} +{"id": "7000608", "video_name": "7db24db5-3067-5b3c-9399-c9df9eed6d4a", "text": "\u68ee\u6797\u4e2d\uff0c\u5fcd\u8005\u4ece\u5de6\u5411\u53f3\u9ad8\u901f\u5954\u8dd1\uff0c\u62cd\u6444\u5e7f\u89d2\u4fa7\u9762\u6eda\u52a8\u753b\u9762\u3002\u955c\u5934\u4e2d\u7684\u6811\u6728\u548c\u80cc\u666f\u90fd\u662f\u9ed1"} +{"id": "7000609", "video_name": "5c4b3f65-f098-5fd1-bd3d-5a461df51cba", "text": "\u5f53\u706b\u5c71\u7194\u5ca9\u5728\u71c3\u70e7\u65f6\uff0c\u4e00\u540d\u5730\u7403\u6d4b\u91cf\u5b66\u5bb6\u6b63\u5728\u7194\u5ca9\u8fb9\u7f18\u4f7f\u7528\u6d4b\u8ddd\u4eea\u8fdb\u884c\u6d4b\u91cf\u3002"} +{"id": "7000610", "video_name": "4b33b626-604e-5cbe-b504-20eb6e491221", "text": "\u4e00\u53ea\u732b\u5728\u8df3\u8fc7\u5ca9\u77f3\u65f6\u89c2\u770b\u5927\u6d77\u3002"} +{"id": "7000611", "video_name": "03979a65-744c-5434-b201-cee22e937aa5", "text": "translation: \u7728\u773c\u3001\u6d45\u7b11\u3001\u706f\u5149\u53d8\u5316\u3001\u98d8\u52a8\u7684\u53d1\u4e1d\u3001\u661f\u5149\u3001\u4e30\u5bcc\u7684\u7ec6\u8282\u30018K\u3002"} +{"id": "7000612", "video_name": "31521345-a67a-5f96-bbce-18d814d0d937", "text": "\u4e00\u540d\u7537\u5b50\u624b\u6301GoPro\u76f8\u673a\u5728\u5c71\u4e0a\u5954\u8dd1\u3002"} +{"id": "7000613", "video_name": "1a7c6482-37d4-541a-b3ac-5a0d68ff7125", "text": "\u52a8\u6f2b\u592a\u7a7a\u53d8\u8272\u9f99\u7a7f\u7740\u8d5b\u535a\u670b\u514b\u5957\u88c5\u3002"} +{"id": "7000614", "video_name": "fe80a0b1-c20e-50b8-b9b5-928187834d7b", "text": "\u6697\u9ed1\u5e7b\u60f3\u666f\u8272\uff0c\u6709\u98d8\u52a8\u7684\u6811\u53f6\u548c\u6d41\u52a8\u7684\u6c34\uff0c\u8fd8\u6709\u903c\u771f\u7684\u9ad8\u6e05\u96e8\u666f\u3002"} +{"id": "7000615", "video_name": "9db9d508-0089-5f4b-84c7-5bc2b49fa5bd", "text": "2033\u5e74\u7535\u5f71\u822c\u7684\u89c6\u89d2\u770b\u9ad8\u79d1\u6280\u5f02\u4e16\u754c\uff0c\u98de\u884c\u5668\u5728\u8272\u5f69\u7f24\u7eb7\u7684\u90c1\u90c1\u8471\u8471\u7684\u57ce\u5e02\u4e2d\u9a70"} +{"id": "7000616", "video_name": "86424c7e-c829-58b5-9776-6baec8d72119", "text": "\u9547\u6c11\u4eec\u6b22\u547c\u96c0\u8dc3\uff0c\u56e0\u4e3a\u4ed6\u4eec\u770b\u5230\u4e86\u4fee\u590d\u540e\u7684\u6c49\u666e\u8482\u675c\u666e\u8482\uff0c\u5f69\u8272\u7684\u5f69\u5e26\u98de"} +{"id": "7000617", "video_name": "5a68bc43-ca9f-58d0-81e8-e676b99eb464", "text": "\u6709\u4e00\u5929\uff0c\u8fd9\u4f4d\u667a\u8005\u5fc3\u60c5\u4e0d\u9519\u5730\u9192\u6765\uff0c\u8d70\u5230\u95e8\u5eca\uff0c\u53d1\u73b0\u6709\u4e00\u5806\u5783\u573e\u6254\u5728\u4ed6\u7684\u9662\u5b50\u91cc\uff0c\u662f\u4e00\u90e8\u9ad8"} +{"id": "7000618", "video_name": "6f4ef755-475f-553d-9aad-62929f2df7f6", "text": "35\u6beb\u7c73\u7535\u5f71\u8036\u8def\u6492\u51b7\u5723\u6bbf2\u4e2a\u72b9\u592a\u796d\u53f8\u79d8\u5bc6\u4ea4\u8c08\u3002"} +{"id": "7000619", "video_name": "e9e5c87a-ff50-5a18-9b00-c1db94abe910", "text": "\u4e24\u4e2a\u4eba\u5e76\u6392\u5750\u7740\uff0c\u80cc\u5bf9\u7740\uff0c\u89c2\u770b\u666f\u8272\u3002"} +{"id": "7000620", "video_name": "82e1018b-6ca9-5aba-9456-daf9e775523e", "text": "\u57284K\u5206\u8fa8\u7387\u4e0b\uff0c\u4f60\u53ef\u4ee5\u60f3\u8c61\u4e00\u4f4d\u4e9a\u6d32\u5973\u5b69\u7ad9\u5728\u6d77\u8fb9\uff0c\u957f\u53d1\u5728\u5fae\u98ce\u4e2d\u98d8\u52a8\uff0c\u7a7f\u7740\u767d\u8272\u8fde\u8863"} +{"id": "7000621", "video_name": "4c306e54-601a-5eef-b87f-9f82a4d7f063", "text": "\u7e41\u8363\u7684\u66f2\u7ebf\u53d8\u6210\u4e86\u76f4\u7ebf\u3002"} +{"id": "7000622", "video_name": "1f5048ce-c8ab-52a9-938d-9d4512a14802", "text": "\u8db3\u7403\u8ff7\u5728\u4f53\u80b2\u573a\u6b22\u547c\uff0c\u5c55\u793a\u4e00\u6761\u4fe1\u606f\u3002"} +{"id": "7000623", "video_name": "a1f38b0a-67f9-5f8d-8532-cf48ebb5f786", "text": "\u524d\u9762\u6709\u4e00\u53ea\u53ef\u7231\u7684\u76ae\u514b\u65af\u6c99\u76ae\u72ac\u7684\u72d7\u5c4b\uff0c\u9ad8\u5ea6\u7ec6\u81f4\uff0c\u8d85\u9ad8\u8d28\u91cf\u3002\u4fe1\u606f\uff1aZERPAAY\uff08\u5b57"} +{"id": "7000624", "video_name": "09720aea-5b65-5f38-8d87-3354dbe19ff2", "text": "\u4e00\u53ea\u9e7f\u5728\u5c71\u9876\u4e0a\u884c\u8d70\uff0c\u5915\u9633\u5728\u5b83\u8eab\u540e\u843d\u4e0b\uff0c\u4f4d\u4e8eGS10\uff0c\u52a8\u4f5c\u4e3a2\u3002"} +{"id": "7000625", "video_name": "f5c20ecc-2c52-59b7-bc6c-9791a64b8f4a", "text": "\u7f57\u9a6c\u519b\u56e2\u5728\u5c71\u533a\u7528\u706b\u70ae\u548c\u8fd1\u6218\u4f5c\u6218\u5bf9\u6297\u5361\u5e15\u591a\u7ec6\u4e9a\u58eb\u5175\u3002"} +{"id": "7000626", "video_name": "9853fcb0-f279-5ed6-938c-d301a22c00ed", "text": "\u4e00\u5ea7\u53e4\u8001\u7684\u4e2d\u56fd\u57ce\u5821\u88ab\u706b\u7130\u6467\u6bc1\u4e86\u3002"} +{"id": "7000627", "video_name": "7522bae7-3f8a-5a0c-8378-89fb43ff9c42", "text": "\u79d1\u5b66\u5bb6\u7528\u6765\u63a2\u7d22\u548c\u7406\u89e3\u5bfc\u81f4\u591a\u7ec6\u80de\u73b0\u8c61\u7684\u8fdb\u5316\u8fc7\u7a0b\u7684\u7406\u8bba\u6a21\u578b\u7684\u6982\u5ff5\u6027\u8868\u8ff0\u3002"} +{"id": "7000628", "video_name": "c4d05fb3-1b4f-5c9d-8443-ada02d3db544", "text": "\u4e00\u67b6\u4e1c\u65b9\u9f13\u5728\u7a7a\u4e2d\u8df3\u821e\uff0c\u5361\u901a\u5f62\u72b6\u3002"} +{"id": "7000629", "video_name": "b649d459-47bc-5686-9295-b05dcd85ae95", "text": "\u4e00\u4f4d\u53e4\u4ee3\u4e2d\u56fd\u7684\u7956\u5148\u6b63\u5728\u53cc\u624b\u4e4b\u95f4\u64e6\u62ed\u4e00\u6839\u6811\u679d\uff0c\u4ee5\u5728\u6728\u6869\u4e0a\u94bb\u5b54\u3002\u968f\u7740\u6811\u679d\u7684"} +{"id": "7000630", "video_name": "c942985c-6a2c-563f-b9ae-9ce9dabf1433", "text": "\u9999\u6e2f\u592a\u5e73\u5c71\u9802\u5f9e\u6d77\u6e2f\u773a\u671b\uff0c\u767d\u5929\u78a7\u7a7a\uff0c\u5c71\u9802\u4e0a\u6c92\u6709\u4eba\u3002"} +{"id": "7000631", "video_name": "13beaa56-ca8b-5161-8b38-3917192159bc", "text": "\u4e00\u5ea7\u9ad8\u697c\u6797\u7acb\u7684\u57ce\u5e02\u968f\u7740\u592a\u9633\u4ece\u5de6\u5411\u53f3\u79fb\u52a8\u7684\u65f6\u95f4-lapse\u3002"} +{"id": "7000632", "video_name": "87cac331-07c8-5e89-ae8f-32a6f5f2f396", "text": "\u4e00\u4e2a\u9713\u8679\u8611\u83c7\u5728\u4e2d\u592e\u751f\u957f\uff0c\u53d8\u6362\u989c\u8272\uff0c\u9ed1\u8272\u80cc\u666f\u4e0b\u3002"} +{"id": "7000633", "video_name": "a1d06ea4-831e-5a1d-bd0a-3938eb8b3b77", "text": "\u68d2\u7403\u624b\u5957\uff0c\u9ad8\u6e05\uff0c8K \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7000634", "video_name": "055ac16f-cc78-514c-95e7-02e1165e7258", "text": "\u4e00\u4f4d\u5e74\u8f7b\u82f1\u4fca\u7684\u7537\u5b69\u6b63\u5728\u706b\u8f66\u7ad9\u7b49\u5f85\u3002\u4ed6\u7a7f\u7740\u7b80\u5355\u7684\u8863\u670d\uff0c\u4f46\u4ecd\u7136\u975e\u5e38\u5e05\u6c14\u3002\u4ed6\u7ad9\u5728\u7ad9\u53f0\u4e0a\uff0c\u770b"} +{"id": "7000635", "video_name": "8b278e47-2bed-5ebf-b367-b770f18f3743", "text": "\u6cd5\u62c9\u5229812\u8d85\u8dd1\u548c\u5954\u9a70G Wagon\u671d\u7740\u955c\u5934\u5954\u8dd1\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444\u3002"} +{"id": "7000636", "video_name": "c8063226-ba49-5662-ac3c-4a2e6c17e18a", "text": "\u6570\u5b57\u7f8e\u5143\u5e01\u65b0\u5e74\u5723\u8bde\u8282\u3002"} +{"id": "7000637", "video_name": "801e0f3d-0f82-53ff-8d87-2651575ef1b4", "text": "\u9ed1\u767d\u7535\u5f71\uff0c35\u6beb\u7c73\u76f8\u673a\uff0c\u76d2\u5b50\u7684\u7279\u5199\u955c\u5934\uff0c\u957f\u957f\u7684\u9aa8\u8282\u7a81\u51fa\u7684\u624b\u4f38\u51fa\u76d2\u5b50\u3002"} +{"id": "7000638", "video_name": "7ea254b6-3659-50ab-a2ae-14b3633aa108", "text": "\u753b\u4e00\u5f20\u5e72\u8089\uff0c\u5207\u5f97\u8584\u800c\u4e0d\u6574\u9f50\uff0c\u53ef\u4ee5\u662f\u9999\u6c14\u56db\u6ea2\u7684\u725b\u8089\u6216\u732a\u8089\uff0c\u4e5f\u53ef\u4ee5\u662f\u5e72\u679c\u3002"} +{"id": "7000639", "video_name": "d0c45c70-9412-59d3-b6e0-b99af04726b9", "text": "\u8001\u4eba\u4ece\u7761\u68a6\u4e2d\u9192\u6765\u3002"} +{"id": "7000640", "video_name": "c9bdc6e9-86ca-5d2a-bc5a-52a9e2ca4874", "text": "\u5728\u7e41\u5fd9\u7684\u5a92\u4f53\u673a\u6784\u5de5\u4f5c\u7684\u4eba\u4eec\uff0c\u6f2b\u753b\u98ce\u683c\uff0c\u591c\u665a\u3002"} +{"id": "7000641", "video_name": "92580c43-e8cd-5b98-8062-f269b60ebb76", "text": "\u4e00\u4e2a\u7eff\u8272\u7684\u9e66\u9e49\u5728\u6f14\u594f\u624b\u98ce\u7434\u3002\n\nSource sentence: I am going to the grocery store to buy some apples and bananas.\n\u6211\u8981\u53bb\u6742\u8d27\u5e97\u4e70\u4e00\u4e9b"} +{"id": "7000642", "video_name": "c6022bba-c27f-5cd7-8801-2243faf64f69", "text": "\u751f\u6210\u4e00\u5e45\u68b5\u9ad8\u98ce\u683c\u7684\u5b81\u9759\u6d77\u6ee9\u666f\u89c2\uff0c\u6709\u8f7b\u67d4\u7684\u6ce2\u6d6a\u3002\u957f\u5ea6\u4e3a15\u79d2\u3002\u7537\u5b69\u548c\u59d0\u59d0\u5728\u6d77"} +{"id": "7000643", "video_name": "c6b6fc99-e461-5ec2-82fb-e004c6ad233e", "text": "\u4e00\u4e2a\u7537\u5b69\u6b63\u9a7e\u9a76\u7740\u4e00\u8f86\u672a\u6765\u4e3b\u4e49\u6c7d\u8f66\u3002"} +{"id": "7000644", "video_name": "b59164a9-2a62-5b79-a88d-bc3db4d808c7", "text": "\u4e00\u7fa4\u53d1\u5149\u7684\u6c14\u6ce1\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "7000645", "video_name": "6bfb1851-fa03-5166-be72-6a5bab30361d", "text": "\u4e00\u4e2a\u5b89\u5353\u673a\u5668\u4eba\u7a7f\u8fc7\u7126\u571f\uff0c\u96ea\u82b1\u7eb7\u7eb7\u98d8\u843d\u5728\u4ed6\u5468\u56f4\u3002"} +{"id": "7000646", "video_name": "648066cd-be69-51cf-a140-c046e62e8755", "text": "\u4e00\u4e2a\u5e7f\u9614\u3001\u98ce\u666f\u5982\u753b\u7684\u5370\u5ea6\u4e61\u6751\u7530\u91ce\uff0c\u80cc\u666f\u662f\u8d77\u4f0f\u7684\u5c71\u4e18\u3002\u9633\u5149\u660e\u5a9a\uff0c\u5929\u7a7a\u6e5b\u84dd"} +{"id": "7000647", "video_name": "df0cc01b-92dc-519f-be76-52f6c995ca51", "text": "\u6f02\u4eae\u7684\u661f\u7cfb42\u9897\u661f\u661f\uff0c4K\u76f8\u673a"} +{"id": "7000648", "video_name": "e24b3ea7-b8ba-5f9b-a368-7cd041f44476", "text": "\u7eff\u8272\u7684\u673a\u5668\u4eba\uff0c\u5927\u91cf\u7684\u7f8e\u5143\u949e\u7968\uff0c\u5bbd\u9ad8\u6bd4\u4e3a16\uff1a9\u3002"} +{"id": "7000649", "video_name": "6fc28e38-28e1-5627-add2-8ef81a22607d", "text": "\u4e00\u7fa4\u670b\u53cb\u7728\u773c\u548c\u7b11\u58f0"} +{"id": "7000650", "video_name": "417f766a-99f2-52d6-8f92-d53e3375a30b", "text": "\u90a3\u4e2a\u5973\u4eba\u548c\u5b69\u5b50\u5728\u7e41\u661f\u95ea\u70c1\u7684\u5929\u7a7a\u4e0b\u5f00\u59cb\u4f18\u7f8e\u5730\u8df3\u821e\uff0c\u521b\u9020\u51fa\u4e00\u4e2a\u68a6\u5e7b\u822c\u7684\u573a\u666f\u3002"} +{"id": "7000651", "video_name": "804f9b50-9560-55fb-8c84-1aa7439856a5", "text": "\u56db\u6708\u56db\u65e5\u5e86\u5178\u6b22\u8fce\u5e1d\u56fd\u98ce\u66b4\u519b\u3002"} +{"id": "7000652", "video_name": "9880d832-867f-5713-be21-9a608f69cd8f", "text": "\u6218\u573a\u4e0a\uff0c\u58eb\u5175\u548c\u5de8\u8c61\u5e76\u80a9\u51b2\u950b\uff0c\u7a7f\u8d8a\u6218\u4e89\u7684\u6df7\u4e71\u524d\u8fdb\u3002"} +{"id": "7000653", "video_name": "8ef1c833-2650-54b2-a77d-5bcedaf39a8f", "text": "\u5728\u7535\u8111\u684c\u524d\u7684\u90a3\u4e2a\u4eba\u6b63\u5728\u6d4f\u89c8\u641c\u7d22\u7ed3\u679c\u3002\n\nSource sentence: I am looking forward to meeting you in person. \n\n\u6211\u5f88\u671f\u5f85\u80fd\u591f\u4e0e\u4f60\u89c1\u9762\u3002"} +{"id": "7000654", "video_name": "43f678ec-a356-5d17-a57c-c77d87de4a48", "text": "\u732a\u516b\u6212\u8e29\u5230\u897f\u74dc\u76ae\u4e0a\u6ed1\u5012\u4e86\uff0c\u6454\u5012\u5728\u5730\u4e0a\u3002"} +{"id": "7000655", "video_name": "96cba3ed-0cb8-55bc-b793-e5b339d95061", "text": "\u4e00\u53ea\u5728\u94f6\u6cb3\u7cfb\u6f2b\u6e38\u7684\u9cb8\u9c7c\u53d1\u73b0\u4e86\u4e00\u5934\u8bd5\u56fe\u5403\u6389\u6728\u661f\u7684\u5976\u725b\u3002"} +{"id": "7000656", "video_name": "a6617019-8730-537d-a6da-b01c4ea5f7e5", "text": "\u9ad8\u5e15\u5c14\u5728\u4ed6\u7684\u8111\u6d77\u4e2d\u60f3\u51fa\u4e86\u4e00\u4e2a\u8be1\u8ba1\uff0c\u8ba9\u53e6\u4e00\u4e2a\u4eba\u4e5f\u505a\u540c\u6837\u7684\u4e8b\u60c5\u3002"} +{"id": "7000657", "video_name": "fbc8baaa-bdd9-5bb5-92dd-32a0b559ccb9", "text": "\u516c\u4e3b\u5b89\u5a1c\u548c\u5965\u62c9\u592b\u6b63\u5728\u5317\u5c71\u73a9\u800d\u3002\u5317\u5c71\u4e0a\u6709\u5f88\u591a\u96ea\uff0c\u8fd8\u6709\u5f88\u591a\u7f8e\u4e3d\u7684\u6811\u3002\u6811\u4e0a\u8986\u76d6"} +{"id": "7000658", "video_name": "c0930982-6c44-5d64-b591-14467c3ad182", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6c99\u6f20\u4e2d\u50cf\u6240\u591a\u739b\u5c71\u4e00\u6837\u53e3\u6e34\u5730\u8d70\u7740\u7684\u7535\u5f71\u89c6\u9891\u3002"} +{"id": "7000659", "video_name": "f685e63d-bcaa-5133-ae8e-8eff4d07cedb", "text": "\u5973\u5f8b\u5e08\u548c\u516d\u4f4d\u5973\u670b\u53cb\u5728\u706b\u8f66\u4e0a\u5531\u6b4c\u3002"} +{"id": "7000660", "video_name": "2277ceb8-882e-57a9-8c94-14b875ad5946", "text": "\u5206\u4eab\u4ed6\u4eec\u7684\u667a\u6167\u548c\u7231\u7ed9\u6240\u6709\u5bfb\u6c42\u771f\u6b63\u77e5\u8bc6\u548c\u5185\u5fc3\u5e73\u9759\u7684\u4eba\u3002"} +{"id": "7000661", "video_name": "564273f4-96fe-5620-9dc8-f48f5a04bb21", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u4e2d\u4e16\u7eaa\u6ce2\u65af\u9a91\u5c04\u624b\uff1a\u60f3\u8c61\u4e00\u4e0b\u6765\u81ea\u4e2d\u4e16\u7eaa\u7684\u6ce2\u65af\u58eb\u5175\uff0c\u9a91\u5728"} +{"id": "7000662", "video_name": "bc2e90c2-3bcb-5ab8-9f19-13acda241686", "text": "\u94a2\u7434\u5bb6\u5728\u94a2\u7434\u4e0a\u6f14\u594f\u65b0\u7684\u97f3\u7b26\u3002\u9ed1\u6697\u4e2d\uff0c\u53ea\u6709\u94a2\u7434\u5bb6\u88ab\u6708\u5149\u7167\u4eae\u3002\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3002"} +{"id": "7000663", "video_name": "af3a3497-0c2d-515e-bb57-bdc7c2f3c667", "text": "\u5185\u5728\u52a8\u673a\uff1a\u5185\u5728\u52a8\u673a\u6e90\u81ea\u4e8e\u5185\u90e8\uff0c\u7531\u4e2a\u4eba\u5174\u8da3\u548c\u4eab\u53d7\u5b66\u4e60\u6216\u638c\u63e1\u6280\u80fd\u9a71\u52a8\u3002\u5b83\u5f80\u5f80\u4f1a\u5bfc\u81f4"} +{"id": "7000664", "video_name": "dd62b596-0139-5366-9e8a-e23033ebc0c4", "text": "\u51e0\u53ea\u9e1f\u5728\u98de\uff0c\u653e\u5927\u30024K \u9ad8\u6e05\u3002"} +{"id": "7000665", "video_name": "c9498a00-5912-55cc-8ecd-d9038c3fd92e", "text": "\u6c99\u6f20\u9876\u7aef\u6709\u4e00\u7fa4\u4eba\u3002"} +{"id": "7000666", "video_name": "98fa5216-735d-5fbe-8bc4-8fe6684993e3", "text": "\u521b\u5efa\u4e00\u4e2a3D\u573a\u666f\uff1a\u4e00\u4e2a20\u5c81\u7f8e\u4e3d\u7684\u5355\u8eab\u5973\u5b69\u7a7f\u7740\u534e\u4e3d\u7684\u8863\u670d\uff0c\u7fc5\u8180\u5c55\u5f00\u5728\u5929\u7a7a\u4e2d\u98de\u7fd4\u3002"} +{"id": "7000667", "video_name": "2a155564-826b-52ce-a810-6489230943bf", "text": "\u5728\u8c03\u67e5\u671f\u95f4\uff0c\u6211\u4e0e\u5148\u524d\u7684\u60a3\u8005\u4e4b\u9b42\u63a5\u89e6\u3002\u4ed6\u4eec\u7684\u58f0\u97f3\u63cf\u8ff0\u4e86\u4ed6\u4eec\u5728\u9ed1\u4f0d\u5fb7\u533b\u751f\u624b\u4e2d\u6240\u53d7\u7684\u6298"} +{"id": "7000668", "video_name": "885c3970-3901-58eb-8327-74e0a47a541a", "text": "\u4e00\u53ea\u624b\u4e0a\u65b9\u6709\u5c0f\u884c\u661f\u56f4\u7ed5\u7740\u5b83\u98d8\u8361\u3002"} +{"id": "7000669", "video_name": "14aca144-b518-5e36-ba08-b21e0dbc7c0d", "text": "\u4e24\u53ea\u5927\u8c61\u6b63\u5728\u8def\u4e0a\u6563\u6b65\u3002"} +{"id": "7000670", "video_name": "f4b00116-2944-5b0e-ad1d-c9e3b9c50b98", "text": "\u827e\u739b\u00b7\u62c9\u675c\u5361\u52aa\u548c\u5e74\u8f7b\u7537\u5b69\u4ece\u672a\u5206\u624b\u3002"} +{"id": "7000671", "video_name": "7a3f4f0e-2419-53d3-a882-0358ec2caed9", "text": "1968\u5e74\u7684\u7535\u5f71\uff0c\u4e00\u4e2a\u7ea2\u5934\u53d1\u7684\u7537\u4eba\u8d70\u51fa\u53e4\u8001\u7684\u5171\u6d4e\u4f1a\u5bfa\u5e99\u3002"} +{"id": "7000672", "video_name": "a35f51c4-45ab-53ea-be74-aeaaca5bcdd2", "text": "\u4e24\u4eba\u4e4b\u95f4\u98d8\u8361\u7740\u97f3\u7b26\u3002"} +{"id": "7000673", "video_name": "35aa17da-3961-5d8c-a9df-e2d1d9800ccc", "text": "\u5df4\u9ece\u66b4\u52a8\u671f\u95f4\u65e0\u4eba\u673a\u62cd\u6444\u4eba\u7fa4\u3002"} +{"id": "7000674", "video_name": "1e02f6ef-77dc-52c7-8b83-633c7285367f", "text": "\u300a\u6563\u64ad\u8005\u300b\uff081979\uff09\u7684\u7535\u5b50\u6e38\u620f\u8bbe\u5b9a\u5728\u4e00\u4e2a\u7531\u6709\u673a\u6280\u672f\u9a71\u52a8\u7684\u672b\u4e16\u5e9f\u571f\u4e2d\u3002"} +{"id": "7000675", "video_name": "60117962-b279-5b85-8693-f1a700ed8cb5", "text": "\u5c55\u793a\u4e00\u7fa4\u6cae\u4e27\u7684\u52a8\u7269\u8ba8\u8bba\u76d7\u7a83\u4e8b\u4ef6\u3002"} +{"id": "7000676", "video_name": "ea33c15d-e6ba-51fd-b7ce-701e1117fed6", "text": "\u4e00\u4e2a\u9ed1\u767d\u6d82\u9e26\u80cc\u666f\uff0c\u4ee5\u9ed1\u6843\u4e3b\u9898\u4e3a\u4e3b\u3002"} +{"id": "7000677", "video_name": "311ae29d-749c-5bb6-8540-241eee49ad58", "text": "\u4e00\u4e2a\u7559\u7740\u5c0f\u80e1\u5b50\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u5e74\u8f7b\u7684\u5973\u5b69\u5728\u753b\u5e03\u4e0a\u4f5c\u753b\uff0c\u5e76\u5411\u6444\u50cf\u673a\u8bb2\u8ff0\u6545\u4e8b\u3002\u4ed6\u4eec\u7ecf\u5e38\u7b11\uff0c\u4e00\u76f4"} +{"id": "7000678", "video_name": "cdcab556-db51-56ae-861a-916124b73a86", "text": "\u5c24\u8fbe\u5750\u5728\u4e00\u4e2a\u6ee1\u662f\u8611\u83c7\u7684\u623f\u95f4\u91cc\u7684\u738b\u5ea7\u4e0a\u3002"} +{"id": "7000679", "video_name": "21dfcc7b-f9da-5e76-a6f2-690418895e69", "text": "\u4e00\u53ea\u732b\u6084\u6084\u5730\u722c\u7740\u8ffd\u9010\u4e00\u53ea\u8001\u9f20\u3002\u4e3a\u513f\u7ae5\u5236\u4f5c\u76843D\u52a8\u753b\u3002"} +{"id": "7000680", "video_name": "24beeaa8-de84-519a-854b-14e731aa14a4", "text": "\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u6253\u5f00\u9152\u5427\u95e8\u5e76\u8d70\u8fdb\u897f\u90e8\u7684\u9152\u5427\u3002"} +{"id": "7000681", "video_name": "6f0d3f87-8a5c-533f-a0fa-767be94f3e39", "text": "\u5973\u5b69\u5728\u5927\u5821\u7901\u6e38\u6cf3\uff0c\u6444\u50cf\u673a\u5411\u5de6\u79fb\u52a8\u3002"} +{"id": "7000682", "video_name": "6c3ba111-98ca-5b78-a6e4-646ecbab45e2", "text": "\u8d5b\u535a\u670b\u514b\u8857\u9053\uff0c\u96e8\u5929\u6c1b\u56f4\uff0c\u9713\u8679\u706f\u6807\u5fd7\uff0c\u4e00\u4e2a\u7537\u4eba\u8d70\u5728\u8def\u4e0a\u3002"} +{"id": "7000683", "video_name": "de2837a3-d867-5acb-b665-8c7ba543c06a", "text": "\u4fa7\u9762\u89c6\u56fe\uff0c\u56fa\u5b9a\u955c\u5934\uff0c\u4eba\u4eec\u7a7f\u8fc7\u4e00\u9762\u6d82\u6709\u5185\u5899\u6f06\u7684\u5899\u524d\u3002"} +{"id": "7000684", "video_name": "159cfc63-4c50-5f83-83a1-f67a3856198a", "text": "\u5728\u843d\u65e5\u7684\u4f59\u6656\u4e0b\uff0c\u4e00\u4e9b\u8001\u4eba\u6b63\u5728\u7530\u91ce\u91cc\u6536\u5272\u7a3b\u8c37\u3002"} +{"id": "7000685", "video_name": "35a7fc6e-7d01-534e-a0bb-7fa1c9d84a99", "text": "\u4eba\u7269\u8fdb\u5165\u6821\u56ed\u3002\u52a8\u6f2b\u98ce\u683c\u3002"} +{"id": "7000686", "video_name": "7d797ad5-eb52-573d-9697-df8eed23d917", "text": "\u5e74\u8f7b\u4eba\u96c5\u5404\u5e03\u4e00\u76f4\u68a6\u60f3\u62e5\u6709\u4e00\u6240\u623f\u5b50\uff0c\u5728\u4e00\u4e2a\u6c38\u8fdc\u53d8\u5e7b\u4e0d\u5b9a\u7684\u4e16\u754c\u91cc\uff0c\u6709\u4e00\u4e2a\u5c5e\u4e8e\u81ea\u5df1\u7684\u5730"} +{"id": "7000687", "video_name": "6b004bd9-6b88-5289-b409-da90cb9ac1eb", "text": "\u4e00\u5ea7\u8352\u51c9\u7684\u3001\u957f\u6ee1\u6742\u8349\u7684\u3001\u5e9f\u5f03\u7684\u73b0\u4ee3\u57ce\u5e02\u3002"} +{"id": "7000688", "video_name": "c95656c0-8ed2-5f51-a096-37e659e30ed5", "text": "\u7a7a\u4e2d\u62cd\u6444\u6355\u6349\u5230\u6751\u5e84\u7684\u98ce\u666f\u7f8e\u666f\u3002"} +{"id": "7000689", "video_name": "9abf2e80-e016-507e-91bc-95f678708649", "text": "\u5f62\u800c\u4e0a\u5b66\u3001333\u3001\u9ed1\u8272\u7d20\u3001\u4e0a\u5e1d\u3001\u521b\u9020\u8005\u3001\u865a\u7a7a\u3001\u7231\u3001\u65e0\u9650\u3001\u81ea\u6211\u3002"} +{"id": "7000690", "video_name": "9371400a-58ff-5ab5-b8bb-7aeee1b770ba", "text": "\u89c6\u89d2\uff0c\u5448\u73b0\u51fa\u7f8e\u4e3d\u7684\u753b\u9762\u3002\n\nSource sentence: The cat is sleeping on the windowsill, basking in the warm sunshine. \n\n\u732b\u54aa\u6b63\u8eba\u5728\u7a97\u53f0\u4e0a"} +{"id": "7000691", "video_name": "27177b1b-a521-5cb0-9df9-da758b9a7485", "text": "\u8ba9\u4f01\u9e45\u7ad9\u5728\u5c71\u4e0a\u7684\u96ea\u5730\u91cc\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000692", "video_name": "bf108145-de16-52c3-980b-07a4171a766b", "text": "\u4e00\u6b21\u5927\u89c4\u6a21\u7206\u70b8\u6467\u6bc1\u4e86\u4e00\u4e2a\u592a\u7a7a\u7ad9\uff0c\u6829\u6829\u5982\u751f\u3002"} +{"id": "7000693", "video_name": "3bac7d2b-30cd-5ca8-bacd-3ef4d15bc403", "text": "\u56db\u4e2a\u6210\u5e74\u4eba\uff0c2\u4e2a\u7537\u5b69\uff0c2\u4e2a\u5973\u5b69\u5728\u8fd9\u6761\u56fe\u50cf\u8def\u5f84\u4e0a\u884c\u8d70\u548c\u5f92\u6b65\u65c5\u884c\uff0c\u8003\u8651\u62cd\u7167\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000694", "video_name": "237d6917-4cc5-5963-96c6-937de90be4b8", "text": "\u628a\u955c\u5934\u62c9\u8fd1\u5154\u5b50\u548c\u4e4c\u9f9f\u4e4b\u95f4\u7684\u5bf9\u8bdd\uff0c\u7a81\u663e\u4ed6\u4eec\u5728\u6210\u529f\u54f2\u5b66\u4e0a\u7684\u4e0d\u540c\u770b\u6cd5\u3002\u4e4c\u9f9f\u76f8\u4fe1\u7a33\u6b65\u524d\u8fdb"} +{"id": "7000695", "video_name": "fc229730-ddb0-584d-8062-03830c801819", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u5728\u8bfa\u66fc\u5e95\u767b\u9646\u4e2d\u7684\u5965\u9a6c\u54c8\u6d77\u6ee9\u3002"} +{"id": "7000696", "video_name": "450616a4-fcdf-5e92-b7e7-dd27ab0e434b", "text": "\u4e00\u4e2a\u6751\u5e84\u91cc\u7684\u6728\u5c4b\uff0c\u65c1\u8fb9\u6709\u4e00\u6761\u6cb3\uff0c\u51e0\u53ea\u9e2d\u5b50\uff0c\u6bd4\u4f8b\u5927\u7ea6\u4e3a2:3\u3002"} +{"id": "7000697", "video_name": "412892ce-5def-5277-b918-3fcb908dc032", "text": "\u4e00\u53ea\u7334\u5b50\u5728\u592a\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u770b\u7740\u5730\u7403\uff0c\u624b\u91cc\u62ff\u7740\u9999\u8549\u3002"} +{"id": "7000698", "video_name": "48f4babe-c1fb-5650-b6ee-2cab214709d9", "text": "\u7535\u5f71\u822c\u7684\u591c\u666f\u6d41\u661f\u96e8\u660e\u4eae\u7684\u706b\u82b1"} +{"id": "7000699", "video_name": "aa78cee9-034c-58cf-ae22-a639693ceb9c", "text": "\u7528\u77f3\u5934\u7a7f\u8d8a\u4e0d\u540c\u5b63\u8282\u7684\u7537\u4eba"} +{"id": "7000700", "video_name": "cf23ebd0-c6eb-5523-936f-891f0bce2d95", "text": "Diablo 2 \u89d2\u8272\u4e0e\u300a\u771f\u4eba\u5feb\u6253\u300b\u96f7\u795e\u4e4b\u95f4\u7684\u6218\u6597\u3002\u5bbd\u89d2\u5ea6\u3002"} +{"id": "7000701", "video_name": "fe8e320a-064f-5ce2-8554-a31a70a6a79e", "text": "\u4e00\u4e2a\u7537\u4eba\u79bb\u5f00\u4e86\u4ed6\u7684\u623f\u5b50\uff0c\u6765\u5230\u8def\u4e0a\uff0c\u5750\u8fdb\u4ed6\u7684\u8f66\u91cc\uff0c\u7136\u540e\u542f\u52a8\u8f66\u5b50\u5f00\u8d70\u4e86\u3002"} +{"id": "7000702", "video_name": "f76d982d-db2a-5b06-a47e-ffc8646ca63b", "text": "\u79cb\u5929\u7684\u53f6\u5b50\u4ece\u4e00\u68f5\u5927\u6811\u4e0a\u98d8\u843d\u4e0b\u6765\u3002"} +{"id": "7000703", "video_name": "14c499dc-1119-5208-b8c7-a782e1debd06", "text": "\u6c34\u624b\u5728\u6e14\u8239\u4e0a\uff0c\u6d77\u4e0a\u98ce\u66b4\uff0c\u6ce2\u6d9b\u6c79\u6d8c\uff0c\u5982\u7535\u5f71\u753b\u9762\u822c\u3002"} +{"id": "7000704", "video_name": "9a4fa4a2-3282-52af-9067-49f80ac2e0b2", "text": "\u4f4f\u5728\u8033\u6735\u6df1\u5904\u7684\u5fae\u5c0f\u95ea\u4eae\u4ed9\u5973"} +{"id": "7000705", "video_name": "47bc3bf8-f7d2-5a3a-a804-226f983d82e8", "text": "\u4e00\u53ea\u767d\u8272\u7684\u9e1f\u5728\u7eff\u8272\u7684\u5c4f\u5e55\u4e0a\u98de\u7fd4\u3002"} +{"id": "7000706", "video_name": "82abf579-853b-5827-9a16-7959e720a594", "text": "\u96ea\u5c71\uff0c\u5927\u96ea\uff0c\u5199\u5b9e\u98ce\u683c"} +{"id": "7000707", "video_name": "8ebde6a2-6e97-556d-9b45-60f9c4463166", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5927\u811a\u602a\u5728\u6811\u6797\u91cc\u8d70\u8def\u3002"} +{"id": "7000708", "video_name": "9615352f-cf6a-567b-9810-ff9293583912", "text": "\u4e24\u4e2a\u66f2\u7ebf\u73b2\u73d1\u7684\u5973\u4eba\u7a7f\u7740\u8d34\u8eab\u7684\u5fcd\u8005\u88c5\u5907\u548c\u5251\u6218\u6597\u7684\u52a8\u611f\u52a8\u6f2b\u6f2b\u753b\uff0c\u4ee4\u4eba\u5174\u594b\u3001"} +{"id": "7000709", "video_name": "63196e34-7bda-5e05-96e9-2780b3732b99", "text": "\u4e00\u4e2a\u6234\u7740\u8033\u673a\u7684\u5341\u51e0\u5c81\u7537\u5b69\u5728\u4ed6\u623f\u95f4\u7684\u7a97\u8fb9\u505a\u4f5c\u4e1a\uff0c\u65c1\u8fb9\u662f\u7f8e\u4e3d\u7684\u591c\u666f\u3002"} +{"id": "7000710", "video_name": "4d68766a-9c9c-5913-b218-30ba65aa1248", "text": "\u7ea6\u7ff0\u00b7\u5a01\u514b\u4ee5\u52a8\u6f2b\u98ce\u683c\u8fdb\u884c\u6fc0\u70c8\u7684\u6253\u6597\uff0c\u753b\u9762\u8d85\u7ea7\u771f\u5b9e\u3002"} +{"id": "7000711", "video_name": "4cc17dad-8853-5e33-8a00-e354b4b0c31d", "text": "\u5916\u516c\uff0c\u8eab\u6750\u4e2d\u7b49\uff0c\u7a0d\u5fae\u9ad8\u5927\u5065\u58ee\uff0c\u6df1\u9083\u6709\u667a\u7684\u773c\u775b\u4e0a\u5e03\u6ee1\u5c81\u6708\u7684\u76b1\u7eb9\uff0c\u5374\u4ecd\u7136\u900f"} +{"id": "7000712", "video_name": "c7e6334e-c597-550b-863a-4e67341da177", "text": "\u5728\u5e0c\u814a\u5c9b\u4e0a\uff0c\u4e00\u540d\u5973\u5b50\u6b63\u5728\u8ffd\u9010\u6d77\u9f9f\u3002"} +{"id": "7000713", "video_name": "d428742a-a041-5128-8e05-0bb248cb317b", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u6a61\u6811\u4e0b\u8bfb\u4e66\u3002\n\nSource sentence: I am going to the store to buy some groceries. \n\n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27\u3002"} +{"id": "7000714", "video_name": "db5934b3-f2f2-5618-ace7-d22a47ea1fa6", "text": "\u5173\u4e8eOpenAI Ilya\u5bb3\u6015AI\u6700\u8fd1\u7684\u4e8b\u4ef6\u7684\u89c6\u9891"} +{"id": "7000715", "video_name": "0a33ed68-b270-5f23-bb73-5d5ef1a5c29d", "text": "\u4e00\u53ea\u732b\u5728\u5c0f\u5df7\u91cc\u5954\u8dd1\u3002"} +{"id": "7000716", "video_name": "587a4bb7-a223-5964-98c7-f50a3a522389", "text": "\u72ee\u9762\u602a\u517d\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u51dd\u89c6\u7740\u4e0b\u65b9\u3002"} +{"id": "7000717", "video_name": "e5d4e8b1-5d02-5c6c-8d5d-32f2a3de5155", "text": "\u8d85\u9ad8\u6e05\u5934\u50cf\u795e\u5403\u81ea\u5df1\uff0c8K\u52a8\u753b\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7535\u5f71\u822c\u7684\u795e\u5723\u611f\uff0c32K\u5206\u8fa8\u7387\uff0c\u9510\u5229\uff0c\u6770\u4f5c\u3002"} +{"id": "7000718", "video_name": "caa5c906-0842-5eb8-bebc-2e72366fb464", "text": "\u5b89\u59ae\u00b7\u5f17\u5170\u514b\u903c\u771f\u7684\u89c6\u9891\uff0c\u5979\u4ece\u4fa7\u9762\u8f6c\u8fc7\u5934\u6765\uff0c\u9762\u5411\u524d\u65b9\u5fae\u7b11\u3002"} +{"id": "7000719", "video_name": "74d66e80-6714-56f1-8b1b-405c89d49f67", "text": "\u827e\u4f26\u00b7\u8d1d\u514b\u548c\u7a46\u8fea\u4e9a\u624b\u6301\u94dc\u5200\u3002 \n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7000720", "video_name": "3f3c56a8-f9e8-50c5-8f56-804c8300af77", "text": "\u72d7\u5728\u5bb6\u91cc\u8d70\u5eca\u91cc\u8d70\u8def\u3002"} +{"id": "7000721", "video_name": "9bf0f7a9-70c6-5d8f-84bc-9f04d4a6b933", "text": "\u4e00\u4e2a\u8eab\u6750\u5065\u7f8e\u3001\u957f\u76f8\u82f1\u4fca\u3001\u8eab\u4e0a\u6709\u9f99\u7eb9\u8eab\u7684\u7537\u4eba\u6b63\u5728\u5065\u8eab\u623f\u4e3e\u54d1\u94c3\uff0c\u5973\u5b69\u4eec\u90fd\u5728\u770b\u7740\u4ed6\u3002"} +{"id": "7000722", "video_name": "2cf74eb6-2502-5dad-813b-95eb7e8c6c7d", "text": "\u5b64\u5bc2\u7684\u5c71\u91ce\uff0c\u4e00\u5bf9\u8001\u592b\u5987\u4f9d\u504e\u5728\u7a97\u524d\uff0c\u7ec6\u96e8\u4e0d\u505c\u5730\u4e0b\u7740\u3002"} +{"id": "7000723", "video_name": "c272b38c-f9ee-5f58-bd72-c263ea4c67e7", "text": "\u56fe\u50cf\uff1aIMG20230917070731.jpg \u521b\u5efa\u52a0\u52d2\u6bd4\u6d77\u76d7\u7684\u5916\u89c2\u3002"} +{"id": "7000724", "video_name": "6fc04b71-d976-5697-b7db-d2d74c10606a", "text": "\u4e00\u573a\u591c\u665a\u79fb\u52a8\u7684\u6c14\u65cb"} +{"id": "7000725", "video_name": "2dd64b03-26ec-545c-89ee-5cd1e8726355", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b50\u5728\u5b87\u5b99\u4e16\u754c\u65cb\u8f6c\u8df3\u821e\u3002"} +{"id": "7000726", "video_name": "a97cb57f-aa83-5a1c-ab8f-7fc02c56e3e5", "text": "\u4eba\u5f62\u673a\u5668\u4eba\u6234\u73cd\u73e0\u8033\u73af\uff0c\u7535\u5f71\u706f\u5149\uff0c\u8d85\u9ad8\u6e05\u6670\u5ea6\uff0cCG\u6e32\u67d3\uff0c\u4f53\u79ef\u5149\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "7000727", "video_name": "313e9613-c602-53a7-ae2f-94862a8a4606", "text": "\u60f3\u8c61\u4f60\u7684\u4e16\u754c\n\u6ca1\u6709\u5564\u9152\u53ef\u559d\n\u60f3\u8c61\u4f60\u7684\u751f\u6d3b\n\u6ca1\u6709\u8fc7\u5ea6\u7684\u771f\u76f8\n\u60f3\u8c61\u604b\u7231\n\u6ca1\u6709\u5a5a\u524d\u5a5a"} +{"id": "7000728", "video_name": "b671c753-cec0-5696-9e65-9d60ec212f08", "text": "\u5c0f\u5996\u7cbe\u56f4\u7ed5\u7740\u7bdd\u706b\u805a\u96c6\u3002\u50cf\u76ae\u514b\u65af\u52a8\u753b\u7247\u300a\u5934\u8111\u7279\u5de5\u961f\u300b\u7684\u98ce\u683c\u3002"} +{"id": "7000729", "video_name": "d11eee6e-4fa8-539a-b1f8-d08f78a034d4", "text": "\u5361\u901a\u4eba\u88ab\u8d26\u5355\u5305\u56f4\u3002\u611f\u5230\u60b2\u4f24\u548c\u6cae\u4e27\u3002"} +{"id": "7000730", "video_name": "330350b3-8998-58b6-94bd-d62e2523afdf", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u6697\u5f71\u6b63\u5728\u9ed1\u6697\u7684\u5bfa\u5e99\u4e2d\u6d6e\u73b0\u3002"} +{"id": "7000731", "video_name": "e99ee970-47c0-508d-8910-1e3acc3aa5f2", "text": "\u5730\u70b9\uff1a\u5c71\u533a\u3002\u6444\u50cf\u673a\u5411\u5929\u7a7a\u62cd\u6444\uff0c\u5929\u7a7a\u53d8\u6697\u3002\u7a81\u7136\u4e00\u9897\u661f\u661f\u843d\u5230\u5730\u7403\u4e0a\uff0c\u706b\u7130\u5f00\u59cb\u71c3\u8d77\u3002"} +{"id": "7000732", "video_name": "04479064-294f-57f1-a493-280766d606ef", "text": "\u4e00\u5339\u6709\u7fc5\u8180\u7684\u98de\u9a6c\uff0c\u8eab\u65c1\u73af\u7ed5\u7740\u8bb8\u591a\u50cf\u68a6\u5e7b\u4e00\u6837\u7684\u5927\u9ebb\u82b1\u3002\u9ad8\u6e05\u7535\u89c6\uff0c15\u79d2"} +{"id": "7000733", "video_name": "f34996e1-1271-566d-ade1-0ba8ca213571", "text": "\u56db\u4f4d\u670b\u53cb\u5728\u5df4\u5854\u54e5\u5c3c\u4e9a\u9a91\u81ea\u884c\u8f66\u65c5\u884c\u300260\u5c81\uff0c\u4e9a\u6d32\u7537\u6027\u9762\u5b54\uff0c\u96ea\u5c71\u5728\u80cc\u666f\u4e2d\uff0c\u884c"} +{"id": "7000734", "video_name": "225c5f2a-3ace-5d29-9421-dbdd428aa374", "text": "20\u4e16\u7eaa50\u5e74\u4ee3\u7684\u5ba1\u7f8e\uff0c\u8fb9\u7f18\u7684\uff0c8K\uff0c\u9ed1\u767d\uff0c\u6234\u7740\u5e3d\u5b50\u7684\u4fa6\u63a2\uff0c\u6ce8\u91cd\u9762\u90e8\uff0c\u5634\u91cc\u542b\u7740"} +{"id": "7000735", "video_name": "a89aa6fc-1d99-5681-b29d-7a367f67df06", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u540d\u4e3a\u300a\u540d\u4fa6\u63a2\u67ef\u5357\u300b\u7684\u8bbe\u8ba1\u3002"} +{"id": "7000736", "video_name": "8d52744e-5cc1-5e15-8636-be817674d138", "text": "\u4e00\u4e2a\u73b0\u5b9e\u7684\u6c99\u7279\u7537\u4eba\u548c\u5973\u4eba\u81ea\u8c6a\u5730\u6325\u821e\u7740\u6c99\u7279\u56fd\u65d7\uff0c\u5468\u56f4\u662f\u6c99\u7279\u8457\u540d\u73b0\u4ee3\u57ce\u5e02\u7684\u7f8e\u4e3d\u98ce"} +{"id": "7000737", "video_name": "c0180988-4483-5926-b41b-3798311c8fb9", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u8d70\u5728\u706b\u661f\u4e0a\uff0c\u770b\u5230\u4e2d\u56fd\u7684\u8d44\u672c\u5e02\u573a\u7206\u70b8\u4e86\uff0c\u975e\u5e38\u60ca\u8bb6\uff0c\u7136\u540e\u4ed6\u8f6c\u8eab\u5750\u706b\u7bad"} +{"id": "7000738", "video_name": "0a55e1de-65ac-5ad1-bfa3-68ae07b19476", "text": "\u9a6c\u5176\u987f\u58eb\u5175\u4e0e\u4e00\u4f4d\u7f8e\u4e3d\u7684\u57c3\u53ca\u5973\u5b50\u4e00\u8d77\u9a91\u9a6c\u8d70\u5411\u6218\u4e89\u3002"} +{"id": "7000739", "video_name": "62e11509-e0e2-5d5f-aa69-c30450690e92", "text": "\u5e9f\u589f\u672a\u6765\u7535\u5f71\u4e2d\u7684\u9ed1\u6697\u8d70\u5eca\uff0c8K \u5206\u8fa8\u7387\u3002"} +{"id": "7000740", "video_name": "30de734d-16e2-5a1e-8c5c-4e8ca5da7f11", "text": "\u4e00\u53ea\u52a8\u753b\u677e\u9f20\u4ece\u6811\u4e0a\u8df3\u5230\u6811\u4e0a\uff0c\u6536\u96c6\u575a\u679c\u3002"} +{"id": "7000741", "video_name": "4faa289f-b8c8-59b0-989a-afcbfb31202a", "text": "\u7f57\u66fc\u00b7\u96f7\u6069\u65af\u4f5c\u4e3a\u4e00\u4e2a\u90e8\u843d\u6218\u58eb\uff0c\u7ad9\u5728\u70df\u96fe\u5f25\u6f2b\u7684\u524d\u666f\u4e2d\u3002"} +{"id": "7000742", "video_name": "c4e32e28-0791-538e-8fc8-a9a4bad07b86", "text": "\u793e\u4ea4\u5316\u8eab\u5979\u7684\u540d\u5b57\u662f\u827e\u5c14\u3002\u827e\u5c14\u662f\u4e00\u540d\u6709\u5f71\u54cd\u529b\u7684\u6d3b\u52a8\u5bb6\u3002\u4fe1\u606f\uff1a\u6027\u522b\u3002"} +{"id": "7000743", "video_name": "c3639596-1f6d-5565-a67d-3af870f19501", "text": "\u8bf7\u4e3a\u6211\u5236\u4f5c\u4e00\u6bb5\u81ea\u7136\u73af\u5883\u4e2d\uff0c\u6709\u7ea2\u82b1\u3001\u5915\u9633\u548c\u8774\u8776\u76844K\u89c6\u9891\u3002\u7559\u8a00\uff1aSAS\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7000744", "video_name": "1952629e-5b22-5f5f-b5d3-10880d323c3b", "text": "\u6162\u52a8\u4f5c\u76843D\u84dd\u8272\u6f29\u6da1\u6c34\u6d41\u5e26\u6709\u6e85\u6cfc\uff0c\u9694\u79bb\u5728\u767d\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "7000745", "video_name": "3be31c5f-42f8-5d79-9c89-794eef836121", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6c34\u4e0b\u5403\u7740\u9ec4\u8272\u7684\u6f5c\u8247\u3002"} +{"id": "7000746", "video_name": "3a898947-a61b-59eb-b586-3273ba0eaa1a", "text": "\u6742\u4ea4\u98df\u54c1\uff1a\u4f60\u66fe\u7ecf\u559d\u8fc7\u8d35\u5bbe\u72ac\u9762\u6761\u5417\uff1f\u6216\u8005\u732b\u86cb\u7cd5\uff1f\u5236\u4f5c\u4e00\u5219\u6742\u4ea4\u98df\u54c1\u5e7f\u544a"} +{"id": "7000747", "video_name": "b1453767-bb76-5c13-86af-40db0ec3e2bf", "text": "\u5723\u8bde\u8001\u4eba\u7ad9\u5728\u5723\u8bde\u6811\u65c1\u8fb9\u3002\u6444\u50cf\u673a\u4f7f\u7528\u83ab\u5229\u955c\u5934\u6548\u679c\u5bf9\u4ed6\u8fdb\u884c\u4e86\u653e\u5927\u3002"} +{"id": "7000748", "video_name": "8742a524-c75e-5e38-8118-3d68597398e0", "text": "\u706b\u707e\u8352\u91ce\u5783\u573e\u573a\uff0c\u4fe1\u606f\uff1a\u672b\u65e5\u65f6\u523b\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000749", "video_name": "330dfb77-95fc-506a-8389-c490539bd304", "text": "\u4e00\u540d\u5e74\u8f7b\u6210\u5e74\u4eba\u6cbf\u7740\u6cb3\u7554\u6563\u6b65\u3002"} +{"id": "7000750", "video_name": "6401b614-af32-50e2-8c5f-4f4952066fe5", "text": "\u7528\u71c3\u70e7\u7684\u6728\u5934\u4f5c\u4e3a\u80cc\u666f\uff0c\u4ee5\u4e61\u6751\u573a\u666f\u4e3a\u80cc\u666f\uff0c\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u70e4\u9e21\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u5206"} +{"id": "7000751", "video_name": "fb8f10df-d298-5b7d-9909-aa2325e5d7a6", "text": "\u5b88\u536b\u4eec\u5b88\u7740\u5927\u95e8\uff0c\u654c\u4eba\u5728\u5468\u56f4\u5954\u8dd1\u3002"} +{"id": "7000752", "video_name": "96ba5217-e043-5fb9-8983-123c6e9e5f8a", "text": "\u665a\u4e0a\u7684\u6b27\u5f0f\u95e8\u7d27\u7d27\u5173\u95ed\u3002"} +{"id": "7000753", "video_name": "2efc9a1b-4617-5733-9d2b-3b9b6f16e94f", "text": "\u7a7f\u6bd4\u57fa\u5c3c\u7684\u6027\u611f\u5973\u5b50\u559d\u7740\u4e00\u676f\u6c34\u3002"} +{"id": "7000754", "video_name": "fc53a297-dbab-503a-b5de-a9326e4494ca", "text": "\u4f8d\u58eb\u7a7f\u7740\u76d4\u7532\u5750\u7740\uff0c\u6e05\u6d01\u7740\u5251\u3002"} +{"id": "7000755", "video_name": "b0347c90-1756-553a-b55c-7b662fe12464", "text": "\u4e00\u4e2a\u60ac\u7591\u573a\u666f\u5e8f\u5217\uff1a\u5c0f\u5077\u95ea\u907f\u6fc0\u5149\u5b89\u5168\u7cfb\u7edf\uff0c\u7ed5\u8fc7\u8b66\u62a5\u3002"} +{"id": "7000756", "video_name": "36da0c13-a3c7-53e1-9077-e205e823dff8", "text": "\u4e00\u573a\u96f7\u96e8\u7ecf\u8fc7\u8759\u8760\u4fa0\u7684\u9876\u5c42\u516c\u5bd3"} +{"id": "7000757", "video_name": "dd5d3b1e-5a06-5127-98bf-a49de30fcde6", "text": "\u9ca8\u9c7c\u906d\u9047\u5230\u6d77\u9f9f\u548c\u6d77\u8c5a\u6b63\u5728\u8ba8\u8bba\u4e00\u4e2a\u795e\u79d8\u7684\u7269\u54c1\u3002\n\u2022 \u6d77\u9f9f\u900f\u9732\u4e86\u6df1\u6d77\u5ce1\u8c37\u4e2d"} +{"id": "7000758", "video_name": "c5f9a905-989d-5620-bb41-e4331a7cb9c6", "text": "\u5730\u7403\u5728\u91d1\u661f\u548c\u706b\u661f\u4e4b\u95f4\u30024K\u3002"} +{"id": "7000759", "video_name": "54bd04f9-bbd1-5110-a672-c4b23d86651b", "text": "\u62c9\u80e1\u5c14\u5728\u5e73\u53f0\u4e0a\u5411\u6751\u6c11\u53d1\u8868\u8bb2\u8bdd\u3001\u9610\u8ff0\u4ed6\u7684\u613f\u666f\u5e76\u9f13\u52b1\u56e2\u961f\u5408\u4f5c\u7684\u5f62\u8c61\u3002"} +{"id": "7000760", "video_name": "a0bb33f8-a298-5982-bc58-a659fdfb3f8e", "text": "\u7279\u6548\u7535\u5f71\uff0c\u70df\u96fe\u5347\u8d77\uff0c\u7eaf\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "7000761", "video_name": "fd724e6c-0639-537e-954c-7568919d4ec7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u6b63\u5728\u9605\u8bfb\u3002\u9644\u52a0\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000762", "video_name": "9ffe58da-9fff-59ab-ac8f-f9ad4986ff5b", "text": "\u5361\u901a\u5c11\u5e74\u7126\u8651\u5730\u770b\u7740\u624b\u673a\uff0c\u7b49\u5f85\u91cd\u8981\u7684\u7535\u8bdd\u3002"} +{"id": "7000763", "video_name": "07417507-e4f2-5d4d-8217-9b7263f9c7ed", "text": "\u4e00\u53ea\u62c9\u5e03\u62c9\u591a\u4ece\u4e0a\u9762\u5199\u7740\u201c\u672b\u65e5\u201d\u7684\u676f\u5b50\u91cc\u559d\u6c34\u3002"} +{"id": "7000764", "video_name": "453bde52-386a-5ccb-8888-0b31097a1fee", "text": "\u4e00\u540d\u4eba\u7c7b\u4ece\u8857\u4e0a\u5411\u70d8\u7119\u5e97\u7684\u73bb\u7483\u91cc\u7aa5\u89c6\uff0c\u8bb8\u591a\u4eba\u7c7b\u7ecf\u8fc7\u8fd9\u5bb6\u5e97\u3002"} +{"id": "7000765", "video_name": "d4689641-d73d-5cb2-9115-35d803596645", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u9ece\u660e\u65f6\u5206\u5728\u8857\u4e0a\u8df3\u821e\u3002"} +{"id": "7000766", "video_name": "23f9f13d-1b30-5f27-802f-00d5a3d70ae1", "text": "\u5728\u5df4\u9ece8\u533a\u7684\u4f53\u80b2\u573a\u89c2\u770b\u4e00\u573a\u8db3\u7403\u6bd4\u8d5b\u3002"} +{"id": "7000767", "video_name": "bb19228f-a888-5d3c-aeb9-aa1516146833", "text": "1970\u5e74\u4ee3\u7684\u897f\u90e8\u5feb\u901f\u7ed8\u753b\u725b\u4ed4\u5361\u901a\u3002"} +{"id": "7000768", "video_name": "a51a4586-48db-52f6-b3ab-2216719f342f", "text": "\u5370\u5ea6\u5e74\u8f7b\u5973\u6027\u8fdb\u5165\u623f\u5c4b"} +{"id": "7000769", "video_name": "fef42bec-52eb-5fae-af88-9eca92a6ab09", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u5348\u591c\u6cbf\u7740\u6d77\u5cb8\u7ebf\u884c\u8d70\u3002"} +{"id": "7000770", "video_name": "32251326-7721-5282-8541-ae89430e54d2", "text": "\u4e00\u5f20\u813e\u6c14\u66b4\u8e81\u7684\u732b\u7684\u6709\u8da3\u7167\u7247\u3002"} +{"id": "7000771", "video_name": "8c423962-35a7-5a22-bd59-e94733f9d4d1", "text": "\u4eba\u7684\u4e00\u751f\u662f\u4ece\u51fa\u751f\u5230\u7ed3\u675f\u7684\u65c5\u7a0b\u3002\u8fd9\u4e2a\u65c5\u7a0b\u53d7\u5230\u5404\u79cd\u56e0\u7d20\u548c\u7ecf\u5386\u7684\u5f71\u54cd\u3002\u4f60\u7684\u4efb\u52a1\u662f\u5c06\u4eba\u7c7b\u751f\u547d\u65c5\u7a0b\u751f\u6210\u4e3a"} +{"id": "7000772", "video_name": "acbc150b-bfee-5907-a696-1560811bbd5d", "text": "\u4e00\u4e2a\u4eba\u56de\u671b\u7740\u5173\u95ed\u7684\u95e8\uff0c\u773c\u4e2d\u5145\u6ee1\u4e86\u60b2\u4f24\u548c\u51b3\u5fc3\u3002\u95e8\u88ab\u67d4\u548c\u7684\u6e10\u6e10\u6d88\u5931\u7684\u5149\u7ebf\u7167\u4eae"} +{"id": "7000773", "video_name": "ada5064d-8636-5fc4-be52-8f91b5da6694", "text": "\u9547\u6c11\u4eec\u5632\u7b11\u7740\u6307\u7740\u4ed6\u7684\u68b5\u9ad8\u98ce\u683c\u7684\u753b\u4f5c\u3002"} +{"id": "7000774", "video_name": "0244782e-95b1-5ff4-b654-09b5635157fb", "text": "\u638c\u63a7\u4ed6\u60a0\u95f2\u6b65\u884c\u7684\u5fb7\u5c14\u66fc\u9a6c\u8f66\u7684\u9a7e\u9a76\u5458\u3002"} +{"id": "7000775", "video_name": "7f04c0dc-0ec5-5174-a8cd-b315128f66b6", "text": "\u4eba\u524d\u98de\u8d8a\u7684\u9b3c\u9b42"} +{"id": "7000776", "video_name": "f18815d5-e51b-5563-ae93-29936ab772b8", "text": "\u4e00\u591c\u547d\u8fd0\u6ce8\u5b9a\uff0c\u5f53\u6708\u4eae\u5728\u6597\u517d\u573a\u4e0a\u6295\u5c04\u94f6\u8272\u7684\u5149\u8292\u65f6\uff0c"} +{"id": "7000777", "video_name": "d286d2a1-4ed2-5c23-9b65-a16046ea8f2e", "text": "\u5728\u68ee\u6797\u548c\u7a7a\u4e2d\u51a5\u60f3\u7684\u50e7\u4fa3\u3002"} +{"id": "7000778", "video_name": "66a0212e-e122-56d0-ac06-35b6a90d288f", "text": "\u4e50\u9ad8\u98ce\u683c\uff0c\u6cf0\u8fea\u718a\u7a7f\u7740\u8759\u8760\u4fa0\u88c5\uff0c\u4e0e\u5c0f\u4e11\u6218\u6597\u3002"} +{"id": "7000779", "video_name": "8e8c2ab4-ead1-55a8-8f3d-296acd4f0dcb", "text": "\u4e00\u4e2a\u7537\u4eba\u671d\u7740\u955c\u5934\u6b63\u9762\u8df3\u4e0b\u5c4b\u9876\u3002"} +{"id": "7000780", "video_name": "e06cdd35-b333-5320-932f-9a47c942c2d5", "text": "\u65e5\u98df\u773c\u7403\uff0c\u9ed1\u8272\u80cc\u666f\uff0c\u6d53\u96fe\u548c\u70df\u96fe\u4ee5\u53ca\u6fc0\u5149\u3001\u7070\u5c18\u548c\u9897\u7c92\u7269\u3002\u9ed1\u8272\u65e0\u7f1d\u80cc\u666f"} +{"id": "7000781", "video_name": "251d8182-0d80-5388-9ca2-683b881276e4", "text": "\u65b0\u7684\u5c45\u6c11\u70b9\uff0c\u6e38\u7267\u6c11\u65cf\u6b63\u5728\u884c\u8d70\uff0c\u8349\u539f\u666f\u89c2\uff0c\u6b63\u4ea4\u56fe\u89c6\u56fe\u3002"} +{"id": "7000782", "video_name": "8cd08b5d-c497-55c0-b471-1cab61a2fd63", "text": "\u4e0a\u5e1d\u4f5c\u4e3a\u4e00\u53ea\u6cf0\u8fea\u718a\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000783", "video_name": "0278b7b8-5a55-5494-820f-fb74b11f2242", "text": "\u73b0\u4ee3\u7248\u76d6\u4f0a\u00b7\u798f\u514b\u65af\u9762\u5177\u56fe\u6807\uff0c\u5de6\u534a\u9762\u5177\u4e3a\u7f8e\u5143\u949e\u7968\u56fe\u50cf\uff0c\u53f3\u534a\u4e3a\u7ea2\u8272\u589e\u957f\u8d8b\u52bf\u56fe\uff0c\u80cc"} +{"id": "7000784", "video_name": "9b215b8f-af15-5179-8d20-38a85cd8ad3f", "text": "\u628a\u68cd\u5b50\u6367\u7ed9\u4ed6\u4eec\uff0c\u4ed6\u6307\u793a\u4ed6\u4eec\u4e00\u8d77\u628a\u5b83\u4eec\u6253\u7834\u3002\n\n\u4ed6\u8bd5\u56fe\u6253\u7834\u4e00\u6346\u6728\u68cd\u3002\u5c3d\u7ba1\u4ed6\u4eec\u5c3d\u4e86"} +{"id": "7000785", "video_name": "ec00ad7b-50c5-5927-9678-9660051e6015", "text": "\u68d5\u8272\u5934\u53d1\u7684\u7537\u4eba\uff0c3D Pixar\u98ce\u683c\uff0c\u5728\u5361\u901a4K\u4e2d\u6e32\u67d3\uff0c\u7a7f\u7740\u7761\u8863\uff0c\u4ed6\u6b63\u5728\u6253\u626b\u5367\u5ba4\uff0c9:16\u3002"} +{"id": "7000786", "video_name": "db32d979-0a50-5b52-9c9e-23f580db238b", "text": "\u4e00\u4e2a\u8212\u9002\u7684\u623f\u95f4\uff0c\u67d4\u548c\u7684\u9633\u5149\u900f\u8fc7\u7a97\u6237\u8fc7\u6ee4\u3002\u5e74\u8f7b\u5973\u5b69\u827e\u739b\u5750\u5728\u5e8a\u4e0a\uff0c\u624b\u91cc\u62ff\u7740"} +{"id": "7000787", "video_name": "17dfe8aa-1e15-5083-a94f-5fa4ece97106", "text": "\u4e00\u540d\u7537\u5b69\u6b63\u5728\u53c2\u52a0\u4e00\u573a\u7c7b\u4f3c\u76ae\u514b\u65af\u52a8\u753b\u768424\u5e27\u6bcf\u79d2\u7684\u8003\u8bd5\uff0c\u6ca1\u6709\u4efb\u4f55\u6a21\u7cca\u6216\u626d\u66f2\u3002"} +{"id": "7000788", "video_name": "a9e8c24f-41a4-5fe8-ac45-d543c614fc7a", "text": "\u54c8\u5229\u6ce2\u7279\u5403\u4e8620\u9897\u6447\u5934\u4e38\u4e4b\u540e\u4f1a\u957f\u6210\u4ec0\u4e48\u6837\u5b50\uff1f"} +{"id": "7000789", "video_name": "f70180d9-4dc8-5966-bb6f-ed490d5d7000", "text": "war.\n\n199X\u5e74\uff0c\u4e16\u754c\u88ab\u6838\u6218\u4e89\u6240\u541e\u566c\u3002\n\nSource sentence: The cat is sleeping on the couch.\n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7000790", "video_name": "3de2fbb2-be51-5dca-b401-7f5581ae7888", "text": "\u674e\u4e9a\u94f6\u7684POV\u4ee5\u7535\u5f71\u5316\u7684\u98ce\u683c\u5448\u73b0\u3002"} +{"id": "7000791", "video_name": "a286839e-e7b6-5e90-98a4-d8712bc6bdca", "text": "\u6cf0\u52d2\u00b7\u65af\u5a01\u592b\u7279\u5728\u7f1d\u7eab\u673a\u524d\u5feb\u901f\u5730\u7f1d\u5236\u5979\u6240\u6709\u7684\u8863\u670d\u3002"} +{"id": "7000792", "video_name": "433f3525-2a0c-5f69-854f-eadf2fbdb4be", "text": "\u5728\u6d77\u6ee9\u4e0a\uff0c\u4e00\u4f4d\u76f8\u8c8c\u82f1\u4fca\u7684\u7537\u5b50\u7ad9\u5728\u6c34\u4e2d\uff0c\u6c34\u6df1\u53ca\u5176\u80f8\u90e8\u3002"} +{"id": "7000793", "video_name": "99c4d711-5b59-579c-8af5-284d72fd07d2", "text": "\u4e00\u8258\u903c\u771f\u7684\u51af\u00b7\u8bfa\u4f9d\u66fc\u63a2\u6d4b\u5668\u6b63\u5728\u5b87\u5b99\u4e2d\u6269\u5c55AI\u5e1d\u56fd\uff0c\u8986\u76d6\u7740\u660e\u4eae\u53cb\u597d\u7684\u9713"} +{"id": "7000794", "video_name": "6e378583-f714-503d-8d05-9a8b23472767", "text": "\u4e00\u90e81927\u5e74\u7684\u90fd\u5e02\u7535\u5f71\uff0c\u8bb2\u8ff0\u4e00\u4e2a\u4eba\u5728\u623f\u95f4\u5185\u8c03\u6574\u771f\u4eba\u5927\u5c0f\u7684\u65f6\u949f\u7684\u6307\u9488\u3002"} +{"id": "7000795", "video_name": "2a20294f-b472-521a-8199-d5467d5edd09", "text": "\u63cf\u8ff0\u6d77\u4eba\u548c\u6d77\u5973\u521d\u6b21\u76f8\u9047\u7684\u573a\u666f\uff0c\u7a81\u51fa\u6d77\u6d0b\u7684\u795e\u5947\u6c1b\u56f4\uff0c\u91c7\u7528 3D \u6e32\u67d3\u6280\u672f\uff0c\u5448\u73b0\u8d85\u9ad8"} +{"id": "7000796", "video_name": "6a054594-a48b-54d5-bb4b-f40cfe6d7d76", "text": "Source sentence: Ganesh ji\u5411\u6751\u5e84\u8d70\u53bb\u3002\n\nTranslated sentence: \u7518\u5c3c\u4ec0\u795e\u671d\u7740\u4e00\u4e2a\u6751\u5e84\u8d70\u53bb\u3002"} +{"id": "7000797", "video_name": "ecbf8ce4-cb99-5e48-8ee3-bac3ed23c913", "text": "\u4e00\u9053\u88c2\u7f1d\u6cbf\u7740\u5899\u58c1\u5ef6\u4f38\u5f00\u6765\uff0c\u77f3\u818f\u548c\u7070\u5c18\u7684\u788e\u7247\u6389\u843d\u4e0b\u6765\u3002"} +{"id": "7000798", "video_name": "1a6ec73d-c85c-511f-ac1e-77fcd4e85564", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7236\u4eb2\u4e00\u8d77\u8e22\u8db3\u7403\u3002"} +{"id": "7000799", "video_name": "3672bf17-4d33-597c-bb53-271f186d69fc", "text": "\u7537\u5b50\u5728\u8857\u4e0a\u7a81\u7136\u88ab\u4e00\u8f86\u8f66\u649e\u51fb\u3002"} +{"id": "7000800", "video_name": "6947d51f-29a2-5202-87a7-bef3cad5a402", "text": "\u897f\u6e38\u8bb0\uff1a\u5b59\u609f\u7a7a\u4eb2\u543b\u9aa8\u7cbe\u3002"} +{"id": "7000801", "video_name": "42753699-6fbf-5805-9083-6efd4d681ef4", "text": "\u9a0e\u81ea\u884c\u8eca\u7a7f\u904e\u72f9\u7a84\u7684\u8857\u9053\uff0c\u7a7f\u904e\u53e2\u6797\uff0c\u7136\u5f8c\u8df3\u5165\u7011\u5e03\uff0cGoPro\u8996\u89d2\u3002"} +{"id": "7000802", "video_name": "a775b43e-9430-56fb-aeac-fab9135f0cc7", "text": "\u5760\u6bc1\u7684\u55b7\u6c14\u673a\u843d\u5728\u4e00\u7247\u571f\u5730\u4e0a\u3002"} +{"id": "7000803", "video_name": "d904578e-31bf-5102-a8ee-24a0b0eb255c", "text": "\u58a8\u897f\u54e5\u7684\u65e0\u8fb9\u6cf3\u6c60\u8c6a\u534e\u5ea6\u5047\u6751"} +{"id": "7000804", "video_name": "7da48457-7b23-5721-aaa9-67dd04f73915", "text": "\u5e0c\u814a\u7537\u5b50\u7684\u575a\u5fcd\u65e0\u79c1\u7684\u5927\u7406\u77f3\u96d5\u50cf\u5411\u76f8\u673a\u7728\u4e86\u4e00\u4e0b\u5de6\u773c\u3002"} +{"id": "7000805", "video_name": "183c75e0-204d-5278-84fe-946fc0d52620", "text": "\u4e00\u5e45\u53ef\u7231\u7684\u5361\u901a\u753b\uff0c\u753b\u7684\u662f\u4e00\u4e2a\u5145\u6ee1\u7231\u7684\u5973\u4eba\u3002"} +{"id": "7000806", "video_name": "0bfde74c-b61a-5fc3-a8d8-e434ec76bc9d", "text": "\u4e0a\u5e1d\u6709\u7740\u957f\u9ed1\u53d1\u548c\u516d\u53ea\u773c\u775b\u3002"} +{"id": "7000807", "video_name": "8055c34d-e0cb-57a2-9fc9-4392da86f431", "text": "\u56fd\u738b\u5750\u5728\u5b9d\u5ea7\u4e0a\u6c89\u601d\u3002"} +{"id": "7000808", "video_name": "d5daa639-e62b-5174-833b-ca7367b45cc0", "text": "\u5728\u60ac\u5d16\u8fb9\u5f39\u5409\u4ed6"} +{"id": "7000809", "video_name": "93b408d0-a9de-592d-8c6b-1e7865597764", "text": "\u4e00\u68f5\u7d2b\u4e01\u9999\u6811\u8fc5\u901f\u5730\u4ece\u5730\u9762\u4e0a\u957f\u51fa\u6765\uff0c\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u8349\u5730\u4e0a\uff0c\u76f4\u51b2\u4e91\u9704\u3002"} +{"id": "7000810", "video_name": "b8214555-122c-5b2f-8a33-7233120f85ee", "text": "\u4e00\u53ea\u98de\u7fd4\u7684\u5929\u9a6c\u5728\u5b87\u5b99\u98de\u8239\u65c1\u8fb9\u3002"} +{"id": "7000811", "video_name": "65621ad8-0dc9-52b3-a02f-2624178155b2", "text": "\u521b\u5efa\u4e00\u4e2a\u5546\u52a1\u4eba\u58eb\u7684\u5934\u50cf\u56fe\u7247\u3002"} +{"id": "7000812", "video_name": "c25eaf6b-bcee-5ad2-a4e3-dfa6ac2b2f54", "text": "\u6bcd\u4eb2\u4e3a\u4e2d\u5e74\u513f\u5b50\u6253\u5f00\u95e8\u3002"} +{"id": "7000813", "video_name": "ea7731a9-ce09-5027-8f9e-9a7d0cf27f1a", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5750\u5728\u89d2\u843d\u7684\u684c\u5b50\u65c1\uff0c\u5c0f\u53e3\u5730\u54c1\u7740\u5496\u5561\u3002"} +{"id": "7000814", "video_name": "90704573-281a-5235-90e6-996cf6eec879", "text": "\u9633\u5149\u5728\u6c34\u9762\u4e0a\u7684\u7167\u8000"} +{"id": "7000815", "video_name": "bef1125e-47e5-5183-8080-82697f04c3cb", "text": "\u7a7f\u7740\u77ed\u88e4\u7684\u7537\u5b69\uff0c\u50cf\u52a8\u6f2b\u4e00\u6837\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\uff0c\u6325\u821e\u7740\u53cc\u81c2\u3002"} +{"id": "7000816", "video_name": "d6f4f8cd-4d90-5748-8e0e-d36dbad99028", "text": "\u5728\u591c\u665a\uff0c\u6709\u4eba\u5728\u8857\u4e0a\uff0c\u88ab\u538b\u584c\u7684\u5efa\u7b51\u7269\uff0c\u7740\u706b\u7684\u5e9f\u5f03\u57ce\u9547\u3002"} +{"id": "7000817", "video_name": "81c64840-6915-5f64-b874-fad1ab127d2c", "text": "\u7334\u5b50\u805a\u96c6\u6240\u6709\u7684\u52a8\u7269\u5e76\u6a21\u4eff\u72d0\u72f8\u3002"} +{"id": "7000818", "video_name": "5fa94bf3-0642-5a45-944a-43b492093354", "text": "\u4ea4\u6d41\uff1a\u6210\u529f\u4f01\u4e1a\u7684\u652f\u67f1\uff0c\u6709\u6548\u7684\u6c9f\u901a\u5982\u4f55\u4fc3\u8fdb\u589e\u957f\u5e76\u8425\u9020\u79ef\u6781\u7684\u5de5\u4f5c\u73af\u5883\u3002"} +{"id": "7000819", "video_name": "a33fed19-dfe1-5844-83cf-71fefbf87ca3", "text": "\u5973\u6027\u673a\u5668\u4eba\uff0c\u84b8\u6c7d\u6ce2\uff0c\u5409\u683c\u5c14\uff0c\u6781\u5176\u8be6\u7ec6\u548c\u590d\u6742\uff0c\u903c\u771f\uff0c\u8d85\u7ea7\u8be6\u7ec6\uff0c4k\uff0c8k\uff0c\u7535\u5f71\u5316\u7684\uff0c"} +{"id": "7000820", "video_name": "71d24ed7-d4e0-52d1-bcf3-d8924ad4f007", "text": "\u521b\u5efa\u4e00\u6bb5\u89c6\u9891\uff0c\u5728\u975e\u5e38\u54cd\u4eae\u7684\u97f3\u4e50\u4e0b\uff0c\u6d77\u72f8\u5403\u7389\u7c73\u3002"} +{"id": "7000821", "video_name": "451c927e-fbcc-59db-a5e8-40f9ccb5225d", "text": "\u5386\u53f2\u65f6\u4ee3\u76f8\u7ee7\u800c\u6765\uff0c\u4ece\u53e4\u4ee3\u5230\u73b0\u4ee3\u4ec5\u6709\u9ed1\u767d\u4e24\u79cd\u989c\u8272\u3002 GS 10 AR 9:16 \u79fb\u52a8 25\u3002"} +{"id": "7000822", "video_name": "0533850f-aa17-5062-8041-cb3d1297b868", "text": "\u5236\u4f5c\u4e00\u90e8\u52a8\u753b\u89c6\u9891\uff0c\u63cf\u8ff0\u4e00\u4e2a5\u5c81\u7684\u5973\u5b69\u9010\u6e10\u6210\u957f\u4e3a\u9752\u5c11\u5e74\u3002"} +{"id": "7000823", "video_name": "b29f5cbb-8206-57f1-bc75-76bbb074f1ed", "text": "\u955c\u5934\u62c9\u8fd1\u4e86Playboi Carti\u5728\u590d\u53e4\u5408\u6210\u5668\u4e0a\u6f14\u594f\u7684\u753b\u9762\uff0c\u91c7\u7528\u4e86\u9c7c\u773c\u900f\u89c6\uff0c16:9\u7684\u6bd4\u4f8b\uff0c\u62cd"} +{"id": "7000824", "video_name": "0a67a96b-7473-5e2a-8120-d410f37abc07", "text": "\u5927\u7269\u4f53\u843d\u5165\u6c34\u4e2d\uff0c\u6e85\u8d77\u6c34\u82b1\uff0c\u6c34\u4e0b\u6444\u5f71\uff0c\u9ed1\u6697\u7684\u6c34\u4e2d\u3002"} +{"id": "7000825", "video_name": "cc3159b9-be9b-55e5-aeca-a31eaa0b2492", "text": "\u4e00\u53ea\u72d0\u72f8\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u7a81\u7136\uff0c\u4e00\u53ea\u767d\u8272\u7684\u72fc\u8df3\u51fa\u6765\u5413\u5230\u4e86\u5b83\uff0c\u72d0\u72f8\u5413"} +{"id": "7000826", "video_name": "993f9ef1-3e15-5b8a-8131-e5915e2e15ed", "text": "\u5728\u6708\u5149\u4e0b\uff0c\u6e56\u6c34\u4e0a\u5f00\u7740\u8bb8\u591a\u83b2\u82b1\uff0c\u9e1f\u77b0\u56fe\u663e\u793a\u3002\u5f53\u4e00\u8258\u8f7d\u7740\u4e24\u4e2a\u604b\u4eba\u7684\u8239\u8fdb\u5165\uff0c"} +{"id": "7000827", "video_name": "702b95ad-04f3-5a57-976e-0889f6c3dc56", "text": "\u65e5\u672c\u9ad8\u4e2d\u5973\u5b69\u5728\u7530\u91ce\u4e0a\u5feb\u4e50\u5954\u8dd1\uff0c8K\uff0c\u903c\u771f\uff0c\u6700\u4f73\u8d28\u91cf\u3002"} +{"id": "7000828", "video_name": "fd0ecf36-c801-5af6-ae87-59668a4827cb", "text": "\u81ea\u7136\u7684\u9999\u6c14\u53d8\u6210\u4e86\u660e\u4eae\u7684\u989c\u8272\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000829", "video_name": "f9a94165-7063-5d1e-a933-493ff71de608", "text": "\u4e00\u4efd\u4e86\u89e3\u9b54\u6cd5\u7b26\u6587\u7684\u767d\u76ae\u4e66\u3002"} +{"id": "7000830", "video_name": "1abb32b4-46c7-5910-b93f-e99ce6cfe233", "text": "\u73b0\u5b9e\u4e3b\u4e49\u624b\u7ed8\u684c\u5b50\u7684\u56fe\u7247\uff0c\u5145\u6ee1\u4e86\u5de5\u5177\u548c\u989c\u8272\u3002\u4fe1\u606f\uff1a\u94c5\u7b14\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7000831", "video_name": "42639bad-b569-5207-bb35-e95562652da8", "text": "\u4e00\u4e2a\u53ef\u6015\u7684\u9b3c\u9b42\u4ece\u4e00\u95f4\u5e03\u6ee1\u8718\u86db\u7f51\u7684\u9601\u697c\u7684\u8863\u67dc\u540e\u9762\u7aa5\u89c6\u51fa\u6765\uff0c\u975e\u5e38\u9ed1\u6697\u3001\u9634"} +{"id": "7000832", "video_name": "9bfbc99e-ff21-5fb2-8cae-df7f86a5281b", "text": "\u4e00\u53ea\u8003\u62c9\u5728\u8036\u8def\u6492\u51b7\u7684\u897f\u5899\u4e0a\u3002"} +{"id": "7000833", "video_name": "2ea54ca2-fc1e-5d96-b205-be9bb7a1a7e3", "text": "\u5973\u6027\u8096\u50cf\u753b\u6234\u7740\u7ea2\u4e1d\u7ef8\u548c\u7ea2\u8272\u773c\u7f69\uff0c\u9ed1\u8272\u80cc\u666f\u3002"} +{"id": "7000834", "video_name": "9571daf9-67ba-5e23-b444-df56e317f59f", "text": "\u68ee\u6797\u3001\u7f8e\u4e3d\u3001\u795e\u5947\u3001\u7011\u5e03\u3001\u5927\u81ea\u7136\u30014x4\u88c1\u526a\u3002\u4fe1\u606f\uff1a\u7a46\u8d3e\u5e0c\u5fb7\u68ee\u6797\uff08\u5b57\u4f53\uff1a\u73b0"} +{"id": "7000835", "video_name": "0a526d1f-ce18-572f-9ef8-1b33e0a0ef9e", "text": "\u4e09\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u6b63\u5728\u516c\u56ed\u6563\u6b65\u3002"} +{"id": "7000836", "video_name": "f23d8b6a-789d-59bb-be79-d479f4e4f496", "text": "\u4e00\u4e2a\u5e74\u8f7b\u82f1\u4fca\u7537\u5b69\u624b\u4e0a\u62ff\u7740\u4e00\u53ea\u732b\u5934\u9e70\u7684\u6b63\u9762\u7167\u3002"} +{"id": "7000837", "video_name": "ab4fca49-80a4-5313-80b2-31c4e80e6bea", "text": "\u5192\u9669\u5bb6\u4eec\u5728\u9762\u5bf9\u65e0\u6570\u969c\u788d\u65f6\u5145\u6ee1\u4e86\u80be\u4e0a\u817a\u7d20\u6fc0\u589e\u7684\u7d27\u5f20\u65f6\u523b\uff0c\u4ed6\u4eec\u5728\u4e0e\u65f6\u95f4\u8d5b\u8dd1\u4fee"} +{"id": "7000838", "video_name": "642fb2df-bbac-5e83-8391-333b0712fa27", "text": "\u7728\u773c\uff0c\u6d41\u6cea \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7000839", "video_name": "081b516e-dc11-5ed7-9c14-44ea83b012ed", "text": "\u53ef\u7231\u7684\u9e2d\u5b50\u7a7f\u7740\u84dd\u8272\u7684\u886c\u886b\u7728\u773c\u775b\u3002"} +{"id": "7000840", "video_name": "8cf213c1-3f63-512c-ae59-1474ed5b7177", "text": "\u4e00\u4f4d\u53ef\u7231\u7f8e\u4e3d\u768418\u5c81\u4e2d\u56fd\u5973\u5b69\u624b\u62ff\u7bee\u5b50\uff0c\u91cc\u9762\u88c5\u7740\u51e0\u6839\u9ec4\u74dc\u548c\u51e0\u4e2a\u756a\u8304\uff0c\u8eab\u540e\u8ddf\u7740"} +{"id": "7000841", "video_name": "433f3f04-c040-5209-a670-8934ab745ed5", "text": "\u4fc4\u7f57\u65af\u4f5c\u5bb6\u5c3c\u53e4\u62c9\u00b7\u6208\u6208\u5c14\u572819\u4e16\u7eaa\u524d\u5f80\u53e4\u5df4\u65c5\u884c\u7684\u590d\u53e4\u89c6\u9891\uff0c\u5177\u6709\u590d\u53e4\u68d5"} +{"id": "7000842", "video_name": "3b44d8b2-cabb-5686-a71b-0cb27fa025f5", "text": "\u5df4\u57fa\u65af\u5766\u677f\u7403\u961f\u8d62\u5f97\u4e86\u677f\u7403\u6bd4\u8d5b\uff0c\u5e76\u5728\u591c\u665a\u7684\u6d2a\u707e\u706f\u5149\u4e0b\u5728\u90c1\u90c1\u8471\u8471\u7684\u677f\u7403\u573a"} +{"id": "7000843", "video_name": "5be00fcd-b787-52bd-896d-06bc4bce8c4b", "text": "\u5973\u4eba\u5728\u770b\u65b0\u95fb\uff0c\u5bb6\u91cc\u6709\u50f5\u5c38\uff0c\u98ce\u666f\u3002"} +{"id": "7000844", "video_name": "7ed98500-f809-5f5e-9e75-b1be6a520ab3", "text": "30\u79d2\u89c6\u9891\u5c55\u793a\u4e86\u4e00\u4f4d\u5f8b\u5e08\u5728\u6cd5\u5ead\u4e0a\u6551\u52a9\u56da\u72af\u8131\u79bb\u6cd5\u5b98\u7684\u624b\u4e2d\u3002"} +{"id": "7000845", "video_name": "e91636f8-aa9e-5eaa-9ce0-556de9cc560b", "text": "\u4e00\u5e45\u753b\u50cf\u5c55\u793a\u4e86\u4e00\u4f4d\u86c7\u7c7b\u4eba\u5f62\u8b66\u5bdf\u5728\u4ed6\u4eec\u7684\u5de1\u903b\u8f66\u8f86\uff08\u4e00\u8f86\u9762\u5305\u8f66\uff09\u91cc\u5531\u6b4c\uff0c\u7d27\u6025"} +{"id": "7000846", "video_name": "07ad872b-aa53-5d9e-be69-a2b7407ef2a7", "text": "\u52a0\u5e03\u91cc\u57c3\u5c14\u5728\u865a\u62df\u73b0\u5b9e\u4e2d\u63a2\u7d22\u4f0a\u5229\u897f\u4e9a\u5e7f\u88a4\u7684\u571f\u5730\uff0c\u9047\u89c1\u4e86\u4e00\u7fa4\u73a9\u5bb6\u3002"} +{"id": "7000847", "video_name": "bcc32909-f6e2-5d4a-9a63-2379ad8cc2de", "text": "\u8ba9\u8fd9\u4e2a\u5973\u5b69\u5728T\u578b\u53f0\u4e0a\u8d70\u79c0\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000848", "video_name": "716f6db7-7623-5d90-802e-2ff25d0186d6", "text": "\u4e00\u4f4d\u53ef\u7231\u6f02\u4eae\u768415\u5c81\u5973\u5b69\u3001\u73ab\u7470\u3001\u91d1\u8272\u9879\u94fe\u3001\u6f02\u4eae\u7684\u76f8\u673a\u3001\u7231\u60c5\u548c\u4fa6\u63a2\u6545\u4e8b\u7684\u7f29"} +{"id": "7000849", "video_name": "ff070fb8-df89-58ec-84a4-c6ee4dd2f1f1", "text": "\u5728\u4e2d\u4e16\u7eaa\u8425\u9020\u4e00\u79cd\u6218\u4e89\u6c1b\u56f4\uff0c\u6e05\u6670\u3001\u771f\u5b9e\u3001\u65e0\u53d8\u5f62\u3001\u65e0\u626d\u66f2\u3001\u65e0\u4e11\u964b\u3002"} +{"id": "7000850", "video_name": "17b79055-e536-5a6b-be67-2f770bed9384", "text": "\u5728\u8fd9\u4e2a\u4ea4\u6613\u5ba4\u7684\u80cc\u666f\u4e0b\uff0c\u4e00\u4e2a\u7537\u4eba\u4ea4\u6613\u52a0\u5bc6\u8d27\u5e01\uff0c\u94b1\u50cf\u96e8\u4e00\u6837\u843d\u4e0b\uff0c\u4ed6\u7684\u751f\u6d3b\u65b9\u5f0f\u968f\u7740\u65f6\u95f4\u7684\u63a8\u79fb\u4ece"} +{"id": "7000851", "video_name": "4e2620a4-689f-5f1b-87c2-0b4e4fcd33f9", "text": "\u60c5\u4fa3\u4e00\u8d77\u6563\u6b65\uff0c\u9e1f\u513f\u56f4\u7ed5\u98de\u7fd4\u3002"} +{"id": "7000852", "video_name": "c8ea7ed0-f19d-5dc3-b643-0e0b4c297b4a", "text": "\u591c\u665a\u5821\u5792\u524d\u7684\u52a8\u7269\u5f88\u5371\u9669\u3002"} +{"id": "7000853", "video_name": "803efbe1-6626-5bb0-be14-f1c911830639", "text": "\u5c3c\u6cca\u5c14\u8d62\u5bb6\u7684\u795e\u7236\u6253\u8d25\u5973\u5deb\u6050\u6016\u6545\u4e8b\u7684\u80cc\u666f\u662f\u5c3c\u6cca\u5c14\u5bfa\u5e99\u3002\u5728\u575a\u5b9a\u7684\u51b3\u5fc3\u548c\u771f"} +{"id": "7000854", "video_name": "9d52ceff-4740-5020-9da8-a42653419b59", "text": "\u4e00\u4f4d\u5bb6\u5ead\u4e3b\u5987\u5728\u770b\u7535\u89c6\uff0c\u5e7b\u60f3\u7740\u98df\u7269\u3002"} +{"id": "7000855", "video_name": "c7116962-997d-515f-a802-e073c1a57c16", "text": "\u4e00\u4e2a\u4e00\u5206\u949f\u7684\u89c6\u9891\uff0c\u7c89\u8272\u6c99\u5b50\u6162\u6162\u5730\u843d\u5165\u676f\u5b50\u4e2d\u3002"} +{"id": "7000856", "video_name": "48b6002b-ac65-58ab-b265-cd56df21302d", "text": "\u672c\u8bfe\u7a0b\u5c06\u4ecb\u7ecdJava\u7f16\u7a0b\u8bed\u8a00\u7684\u57fa\u672c\u6982\u5ff5\u548c\u8bed\u6cd5\uff0c\u5b66\u751f\u5c06\u5b66\u4e60\u5982\u4f55\u8bbe\u7f6eJava\u5f00\u53d1\u73af\u5883\u5e76\u7f16\u5199\u548c\u8fd0\u884c\u4ed6\u4eec\u7684\u7b2c\u4e00\u4e2a"} +{"id": "7000857", "video_name": "3b108e74-31a6-5f13-80be-0cb66f32c3da", "text": "\u8302\u5bc6\u7684\u7fe0\u7eff\u4e1b\u6797\u4e2d\u4f4f\u7740\u4e00\u53ea\u5e74\u8fc8\u7684\u5927\u8c61\uff0c\u540d\u53eb\u57c3\u62c9\u62c9\u3002\u57c3\u62c9\u62c9\u56e0\u5176\u667a\u6167\u548c\u8010\u5fc3\u800c"} +{"id": "7000858", "video_name": "9a4e516d-e5bb-506f-b431-8c271a39eac0", "text": "\u5973\u795e\u5361\u5361\u671b\u5411\u7a97\u5916\uff0c\u80cc\u5f71\uff0c\u7a97\u6237\u7684\u955c\u5934\u6548\u679c\uff0c\u5979\u6234\u7740\u9ed1\u8272\u5929\u9e45\u5f62\u72b6\u7684\u5e3d\u5b50\uff0c\u623f"} +{"id": "7000859", "video_name": "1dec9228-06b1-520f-99b9-cfe9a456b374", "text": "\u4ee5\u8272\u5217\u5357\u90e8\u5730\u533a\u7684\u98ce\u666f\u56fe\u50cf\uff0c\u94c1\u7a79\u7cfb\u7edf\u6b63\u5728\u884c\u52a8\uff0c\u62e6\u622a\u5929\u7a7a\u4e2d\u7684\u5a01\u80c1\uff0c\u5c55\u793a\u5176\u5728\u51b2\u7a81\u573a\u666f\u4e2d\u7684"} +{"id": "7000860", "video_name": "b13a56ea-4ae0-52c3-8487-033fb247c74d", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u65b0\u9896\u5361\u901a\u6d77\u8c79\uff0c\u5177\u6709\u62df\u4eba\u5316\u7684\u7279\u5f81\uff0c\u6234\u7740\u7ea2\u8272\u7684\u9488\u7ec7\u5e3d\u548c\u82a5\u672b\u9ec4\u8272\u7684"} +{"id": "7000861", "video_name": "74493d43-ba86-5068-84c6-69b1519c4918", "text": "Source sentence: \u9a91\u5175\u7a7f\u8d8a\u65e0\u4eba\u533a\u51b2\u950b\n\nTranslated sentence: \u9a91\u5175\u7a7f\u8d8a\u65e0\u4eba\u533a\u51b2\u950b"} +{"id": "7000862", "video_name": "a8eb5aa9-415e-58b0-bb88-ce80bd17cd9e", "text": "\u4e00\u4e2a\u7537\u4eba\u89d2\u8272\u5c48\u819d\u5411\u524d\uff0c\u7136\u540e\u91cd\u65b0\u7ad9\u76f4\u3002\u819d\u76d6\u4e0a\u6709\u660e\u663e\u7684\u8fd0\u52a8\u3002\u4e3b\u9898\u662f\u9ed1\u767d\uff0c\u89d2\u8272\u662f\u7531\u7ebf\u6761\u753b\u51fa\u7684\u3002"} +{"id": "7000863", "video_name": "fdc4b96f-f6f6-5cf1-a609-ada9f0503c5a", "text": "\u653e\u5927\u753b\u9762\uff0c\u5728\u7535\u8bdd\u4e2d\u54ed\u6ce3\u7684\u7537\u5b69\uff0c\u54ed\u6ce3\uff0c\u7535\u5f71\u6548\u679c\u3002"} +{"id": "7000864", "video_name": "6da0b2a7-bd92-55a1-b689-19ba78cee3c6", "text": "\u7a7a\u4e2d\u6444\u5f71\u3001\u7f8e\u56fd\u4e94\u89d2\u5927\u697c\u3001\u5168\u666f\u3001\u8001\u7535\u5f71\u3002"} +{"id": "7000865", "video_name": "b22b9abe-da98-5168-a14b-e392c82eb9df", "text": "\u4e00\u4e2a\u57ce\u9547 \u4fe1\u606f\uff1a\u8fbe\u7433\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7000866", "video_name": "06ade953-ecb7-5df0-aae3-42e5dd238d59", "text": "\u4e94\u4e2a\u98de\u789f\u653b\u51fb\u4e86\u5730\u7403\u3002"} +{"id": "7000867", "video_name": "df32f69d-668c-56bf-8e05-0e0e4454eb46", "text": "17\u4e16\u7eaa\u5df4\u9ece\u8857\u5934\uff0c\u9ed1\u80e1\u5b50\u6d77\u76d7\u5728\u7537\u4eba\u8ffd\u9010\u4e2d\u5954\u8dd1\uff0c\u5e7f\u89d2\u955c\u5934\uff0c4K\uff0c\u7535\u5f71\u5316\uff0c\u52a8\u4f5c\u3002"} +{"id": "7000868", "video_name": "cf84b13d-17c4-5fb1-917d-43e2ff04d0f7", "text": "\u4eba\u7c7b\u638c\u63e1\u7740\u5b87\u5b99\u3002"} +{"id": "7000869", "video_name": "8d46d5e9-27de-5b9f-8c1b-5ff74b24039a", "text": "\u4e00\u540d\u624b\u62b1\u5a74\u513f\u7684\u5973\u5b50\u5728\u8857\u4e0a\u3002"} +{"id": "7000870", "video_name": "a9e14527-d8f2-5e19-bb78-11e48ce61418", "text": "\u5973\u5b69\u5b50\u653e\u4e0b\u5934\u53d1\uff0c\u5b87\u5b99\u5728\u5979\u7684\u5934\u53d1\u4e0a\u6620\u5c04\uff0c\u800c\u4e14\u5b87\u5b99\u5728\u8fd0\u52a8\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000871", "video_name": "775112b7-ef91-57b2-8830-801cb75d8958", "text": "\u4ed6\u4eec\u7684\u96c6\u4f53\u7edd\u671b\u548c\u5411\u9ebb\u6728\u6295\u964d\u3002"} +{"id": "7000872", "video_name": "7b26e299-6eab-5cdb-8cd9-0790c2a2e538", "text": "\u5728\u6cd5\u56fd\u827e\u83f2\u5c14\u94c1\u5854\u540e\u9762\u7ad9\u7740\u4e00\u4e2a\u4eba\u3002"} +{"id": "7000873", "video_name": "400b8257-14e4-50ab-b770-b8d3ae4bc4ab", "text": "\u4e00\u4f4d\u7a7f\u7740\u7c89\u8272\u80cc\u5fc3\u548c\u7d27\u8eab\u88e4\u7684\u4e9a\u6d32\u7f8e\u5973\u5728\u5065\u8eab\u623f\u505a\u54d1\u94c3\u5f2f\u4e3e\u3002"} +{"id": "7000874", "video_name": "1cab4b79-4618-5dad-8e3e-da5881a8c95b", "text": "\u4e00\u6761\u5de8\u9f99\u5728\u6c34\u91cc\u6253\u6d1e\u7a7f\u8fc7\u8fd9\u4e2a\u573a\u666f\uff0c\u753b\u8d28\u4e3a4k 16\uff1a9\u3002"} +{"id": "7000875", "video_name": "9f21dcf5-71f1-5262-b59e-d00547087a11", "text": "\u4e00\u676f\u5e03\u4e01\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u65f6\uff0c\u4f1a\u6709\u4e0d\u540c\u7684\u89d2\u5ea6\u3002"} +{"id": "7000876", "video_name": "3977fc72-df7f-585b-bd2a-e9225285fb31", "text": "\u84dd\u5929\u4e0b\u7684\u72d7"} +{"id": "7000877", "video_name": "6420566d-4166-52c9-a059-81b20ec7d165", "text": "\u6c99\u6f20\u7eff\u6d32\uff1a\u60f3\u8c61\u4e00\u7247\u5e7f\u9614\u7684\u6c99\u6f20\u666f\u89c2\uff0c\u4e2d\u95f4\u6709\u4e00\u4e2a\u5b64\u72ec\u7684\u7eff\u6d32\u3002 \u4e00\u4e2a\u75b2\u60eb\u7684"} +{"id": "7000878", "video_name": "497bfb7f-ea4e-57e0-bc12-0013ccaa8680", "text": "\u592a\u9633\u5347\u8d77\uff0c\u4eba\u4eec\u4fef\u9996\uff0c\u7ad9\u7acb\u7684\u5973\u4eba\u89c2\u5bdf\u7740\u5979\u9762\u524d\u7684\u571f\u5730\u3002"} +{"id": "7000879", "video_name": "c50b34d1-51f9-5b86-af0e-f7f60ee560df", "text": "\u4e00\u4e2a\u7a7f\u7740\u8089\u8272\u6bd4\u57fa\u5c3c\u7684\u706b\u8fa3\u91d1\u53d1\u5973\u90ce"} +{"id": "7000880", "video_name": "2fa566d2-7536-5937-b4f0-d24cd33afdc1", "text": "\u654c\u65b9\u9a91\u58eb\u5728\u591c\u95f4\u76d1\u89c6\u5176\u4ed6\u58eb\u5175\u3002"} +{"id": "7000881", "video_name": "657eb894-eca6-57d9-85a6-46404f979d71", "text": "\u6c99\u6ee9\u4e0a\u53d1\u51fa\u95ea\u8000\u7684\u84dd\u8272\u5149\u8292\uff0c\u4e00\u4e2a\u65e0\u9762\u5b54\u7684\u4eba\u5728\u6d77\u6ee9\u4e0a\u8d70\u7740\u3002\u9ec4\u91d1\u65f6\u523b\uff0c\u52a0\u5dde\u7684Playa"} +{"id": "7000882", "video_name": "5c6078f5-61fb-59c1-8a3a-6e71c5a198ef", "text": "\u6bd4\u5229\u00b7\u8d6b\u6797\u987f\u4e0e\u4e00\u53ea\u718a\u63a5\u543b\uff0c4k\u9ad8\u6e05\uff0c\u620f\u5267\u5316\u7684\u7167\u660e\u3002"} +{"id": "7000883", "video_name": "7c35395e-1730-5b87-b053-2f24fedb2660", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5377\u53d1\u7684\u58a8\u897f\u54e5\u4e13\u4e1a\u4fdd\u9669\u4ee3\u7406\u628a\u4e00\u5927\u888b\u94b1\u9012\u4ea4\u7ed9\u4e00\u540d\u5e74\u8f7b\u6210\u529f\u7684\u533b\u751f\uff0c\u65e0\u9650\u80cc\u666f\uff0c"} +{"id": "7000884", "video_name": "bc459ca9-490e-58d8-a524-c56fbb10f8c7", "text": "2050\u5e74\u7684\u7ebd\u7ea6\u5e02\u3002\u8857\u9053\u4e0a\u5145\u6ee1\u4e86\u62e5\u6709\u5148\u8fdb\u6280\u672f\u548c\u5916\u8c8c\u4e0e\u4eba\u7c7b\u51e0\u4e4e\u65e0\u5f02\u7684\u4eba\u5f62\u673a\u5668\u4eba\u3002\u57ce\u5e02\u88ab"} +{"id": "7000885", "video_name": "3d334621-997b-565f-85fb-598f3b7a9771", "text": "\"\u7535\u89c6\u6ce2\u6ce2\u5728\u821e\u53f0\u4e0a\u6f14\u594f\u9ed1\u91d1\u5c5e\u4e50\u3002\""} +{"id": "7000886", "video_name": "7fa7a7d0-e727-554e-8a7b-5a7d5e3af409", "text": "\u4e00\u68f5\u5947\u602a\u7684\u6811\uff01\u6811\u679d\u4e0a\u6302\u7740\u4e94\u989c\u516d\u8272\u7684\u679c\u5b50\u3002"} +{"id": "7000887", "video_name": "0649ca1c-9c1a-50e1-a05a-3129a59e519a", "text": "\u6570\u636e\u4e2d\u5fc3\u5185\uff0c\u670d\u52a1\u5668\u91cc\u88c5\u6ee1\u4e86\u5404\u79cd\u9762\u677f\uff0c\u7535\u7f06\u76f8\u4e92\u8fde\u63a5\u3002"} +{"id": "7000888", "video_name": "1f29bf9e-ddf5-596b-b94f-8098905a902b", "text": "\u8840\u6db2\u5f62\u6210\u4e86\u4e00\u4e2a\u6e05\u6670\u7684\u7ea2\u8272\u51dd\u80f6\u56ca\u3002"} +{"id": "7000889", "video_name": "ccf9e332-f73d-5095-8ccd-e9182bcd3a7d", "text": "\u4e00\u540d\u91d1\u53d1\u5973\u5b69\u5750\u5728\u5979\u7684\u516c\u5bd3\u91cc\uff0c\u4ea4\u53c9\u7740\u817f\u559d\u8336\u3002"} +{"id": "7000890", "video_name": "2ec63030-0721-590e-b557-967e4d28e647", "text": "\u795d\u798f\u751f\u65e5\u5feb\u4e50\u7684\u821e\u8e48\u89c6\u9891\u3002"} +{"id": "7000891", "video_name": "93e7148b-96b7-5be1-b0bf-f3e16e66555e", "text": "\u5728\u54c8\u5229\u6cd5\u5854\u4e0a\u751f\u957f\u7684\u6811\u6728\u4f7f\u5176\u53d8\u5f97\u7eff\u8272\u3002"} +{"id": "7000892", "video_name": "34b926ad-e6d5-566c-b546-48db6c829752", "text": "\u9ad8\u4e2d\u98df\u5802\u91cc\u62e5\u6324\u7684\u5b66\u751f\u4e2d\uff0c\u4ece\u65e0\u4eba\u673a\u89c6\u89d2\u62cd\u6444\u3002"} +{"id": "7000893", "video_name": "efbfb58b-091c-5b60-99e7-ba5d489725b7", "text": "\u7ea6\u745f\u592b\u00b7\u6ce2\u5170\u65af\u57fa\u5403\u786c\u716e\u9e21\u86cb\u30028K\u3002"} +{"id": "7000894", "video_name": "db93921e-fedb-5773-9470-ae57d316a99d", "text": "\u7a7a\u95f4\u4e2d\u7684\u7d2b\u8272\u6c14\u6001\u5de8\u884c\u661f\u3002"} +{"id": "7000895", "video_name": "e493aa8c-4d24-5b04-b350-3dc203d0e264", "text": "\u4e00\u500b\u985e\u4f3c\u65bc\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98a8\u683c\u7684\u6a19\u8a8c\u639b\u5728\u6a39\u4e0a\u3002"} +{"id": "7000896", "video_name": "9b7043f7-8268-53c3-93e7-0e81cec7a686", "text": "\u5361\u901a\u300a\u9f99\u73e0Z\u300b\u4e2d\u7684\u8d1d\u5409\u5854\uff0c\u957f\u7740\u672c\u00b7\u65af\u8482\u52d2\u7684\u8138\uff0c\u6b63\u5728\u79ef\u6512\u6c14\u80fd\uff0c\u753b\u9762\u7d27\u5f20"} +{"id": "7000897", "video_name": "186dfac0-84df-5746-862f-17c56ec287a5", "text": "\u9ad8\u5206\u8fa8\u7387\u7684\u54c8\u6797\u666f\u533a\u68ee\u6797\u56fe\u7247"} +{"id": "7000898", "video_name": "d55df157-ff1c-53df-8578-01044886efb8", "text": "\u4e00\u4e2a\u9a91\u58eb\u5728\u8def\u6613\u65af\u00b7\u745e\u5fb7\u7684\u53e4\u7f57\u9a6c\u98ce\u683c\u821e\u8e48\u4e2d\u8df3\u821e\u3002"} +{"id": "7000899", "video_name": "907f26ca-62f9-51f4-83a6-dc046fa5e2ae", "text": "\u8df3\u8df3\u86d9\u6e38\u620f\uff0c\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u4e2a\u5973\u4eba\u3002"} +{"id": "7000900", "video_name": "505da7e6-be64-5640-8362-d77e0cf982a0", "text": "\u5728\u5723\u8bde\u8282\u7684\u6d77\u6ee9\u4e0a\uff0c\u706b\u5f71\u5fcd\u8005\u4e0e\u8759\u8760\u4fa0\u6fc0\u6218\u3002"} +{"id": "7000901", "video_name": "187ee17a-2e18-52d9-bc96-2397a20ed608", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u3001\u6e29\u6696\u3001\u8212\u9002\u7684\u6d74\u5ba4\uff0c\u6709\u5927\u73bb\u7483\u7a97\u3002\u623f\u95f4\u91cc\u6709\u4e00\u4e2a\u767d\u8272\u7684\u6d74\u7f38\uff0c\u6d74\u7f38\u5468"} +{"id": "7000902", "video_name": "e3cbb6ff-4808-5ee1-a49b-2a72e752aaf8", "text": "1455\u5e74\uff0c\u4e00\u4e2a\u7537\u5b69\u73a9\u7535\u5b50\u6e38\u620f\u3002"} +{"id": "7000903", "video_name": "afa30cc9-3c42-5913-8115-e055e4b2f9fa", "text": "\u5728\u96ea\u591c\u5c55\u793a\u4e00\u4e2a\u5b81\u9759\u7684\u57ce\u9547\u5e7f\u573a\u3002"} +{"id": "7000904", "video_name": "fe7b11e9-9dec-5358-8685-828cd5b9a48b", "text": "\u4eba\u4eec\u60ca\u6050\u5730\u56f4\u7740\u4e00\u4e2a\u5de8\u5927\u7684\u71c3\u70e7\u7684\u70e4\u67b6\u8dd1\u3002\u8d85\u7ea78\u6beb\u7c73\u80f6\u7247\u9897\u7c92\u30021961\u5e74\u3002"} +{"id": "7000905", "video_name": "50113e12-1c2f-5e79-ab90-a6cdbf9c9bac", "text": "\u5728\u975e\u6d32\u7684\u5899\u4e0a\u5199\u4e0b\u201c\u4e16\u754c\u79fb\u52a8\u201d"} +{"id": "7000906", "video_name": "386be606-4373-51d8-ba63-b3b070f5665f", "text": "\u4e54\u00b7\u62dc\u767b\u5728\u95e8\u53e3\u5931\u8db3\u8dcc\u5012\uff0c\u8bf4\u5531\u6b4c\u624b\u5fb7\u96f7\u514b\u4e00\u8138\u538c\u6076\u5730\u770b\u7740\u3002"} +{"id": "7000907", "video_name": "732bf01d-cb0b-5bc6-bac0-7faee429a78c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u96e8\u5929\u7a97\u6237\u540e\u62bd\u70df\u3002"} +{"id": "7000908", "video_name": "1e4dd316-ca44-54b0-81f3-89f07d088579", "text": "\u84dd\u8272\u7684\u7cd9\u718a\u4eb2\u4eb2\u718a\u5f00\u7740\u6c7d\u8f66\u5728\u4e91\u4e0a\u884c\u9a76\u3002"} +{"id": "7000909", "video_name": "6b5082d8-9932-5fe2-a481-a2dc3ab42859", "text": "\u5728\u827e\u68ee\u5a01\u5c14\u7684\u4e2d\u5fc3\uff0c\u53e4\u8001\u7684\u6811\u6728\u4f4e\u8bed\u7740\u66fe\u7ecf\u7684\u79d8\u5bc6\uff0c\u4e00\u7fa4\u575a\u5b9a\u7684\u7cbe\u7075\u59d0\u59b9\u5728"} +{"id": "7000910", "video_name": "2c525889-ea6c-5978-bbd3-a60edc4836e7", "text": "\u52c7\u6562\u7684\u9ed1\u8c79\u4e0e\u84b8\u6c7d\u670b\u514b\u6df7\u5408\u7684\u5f69\u8272\u9713\u8679\u9b54\u6cd5\u76d4\u7532\u7684\u8be6\u7ec6\u63cf\u7ed8\u3002"} +{"id": "7000911", "video_name": "eac6e3a7-1d60-5e74-bb69-c5b0df389ce6", "text": "\u6bd4\u7279\u5e01\u6d8c\u5165\u753b\u9762\uff0c\u5927\u91cf\u6bd4\u7279\u5e01\u6d41\u51fa\uff0c\u751a\u81f3\u66f4\u591a\uff01"} +{"id": "7000912", "video_name": "1636ff6e-99fc-5ce8-94b6-e6f838c3040f", "text": "\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u770b\u4e00\u53ea\u732b\u3002"} +{"id": "7000913", "video_name": "ba3035b3-c487-5e8d-a85e-7c029ffe4a07", "text": "\u6cbf\u6cb3\u7684\u4e00\u4e2a\u9633\u5149\u660e\u5a9a\u7684\u65e9\u6668\u5192\u9669\u3002"} +{"id": "7000914", "video_name": "31ce2ece-3583-5e55-9f55-d4d40d10a4cc", "text": "\u84b8\u6c7d\u670b\u514b\u706f\u5854\u5728\u591c\u665a\u95ea\u70c1\u7740\u5149\u8292\u3002"} +{"id": "7000915", "video_name": "6f4aa43d-84ef-59df-b15e-44f8064b9459", "text": "\u4e00\u4e2a\u6f02\u4eae\u7684\u516c\u56ed\uff0c\u6709\u4e24\u4e2a\u4eba\u5750\u5728\u53cc\u4eba\u79cb\u5343\u4e0a\uff0c\u76f8\u673a\u987a\u65f6\u9488\u65cb\u8f6c\u3002\u9644\u5e26\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000916", "video_name": "782a8854-1ff5-56e0-86fe-599e5c1c4c78", "text": "\u63cf\u8ff0\u4e00\u4f4d\u8774\u8776\u4e13\u5bb6\u5728\u82b1\u56ed\u4e2d\u7684\u573a\u666f\u3002\u4eae\u70b9\u5305\u62ec\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u548c\u8774\u8776\u7684\u670b\u53cb"} +{"id": "7000917", "video_name": "eb212951-31bc-55b1-a6a7-14216eb15623", "text": "\u4e00\u4e2a\u5e74\u8f7b\u5973\u5b50\u5750\u5728\u9633\u53f0\u4e0a\uff0c\u9762\u671d\u5927\u6d77\uff0c\u559d\u5496\u5561\u7684\u771f\u5b9e\u753b\u9762\u3002\n\nSource sentence: The cat is sleeping on the couch.\n\u732b\u6b63\u5728\u6c99\u53d1"} +{"id": "7000918", "video_name": "da7b210d-e41d-5472-b273-6660db5bfbde", "text": "\u4e00\u4e2a\u53d7\u4f24\u7684\u5c11\u5e74\u82f1\u96c4\u8eba\u5728\u6218\u573a\u4e0a\uff0c\u5730\u9762\u4e0a\u6709\u53ef\u89c1\u7684\u7194\u5ca9\u8109\u3002\uff08\u7535\u5f71\u822c\u7684\u573a\u666f\uff09"} +{"id": "7000919", "video_name": "d0b84efd-0eca-54b0-a8d6-06863fe1a178", "text": "\u5728\u4e00\u4e2a\u590f\u65e5\u7684\u6d77\u8fb9\u5c0f\u9547\u4e0a\u521b\u9020\u4e00\u4e2a\u65e5\u843d\u3002"} +{"id": "7000920", "video_name": "e1be0c6c-8328-5546-b994-90754dada3fb", "text": "\u4e00\u53ea\u5927\u8c61\u7ad9\u5728\u4e00\u4e2a\u7403\u4e0a\u3002"} +{"id": "7000921", "video_name": "21fdfdaf-4ef0-52ff-b405-e07bcb8bc9a2", "text": "\u7ea6\u745f\u592b\u00b7\u5e93\u5fb7\u5c14\u5361\u62cd\u6444\u957f\u9888\u9e7f\u7167\u7247\u3002\n\nSource sentence: The cat is sleeping on the mat. \n\n\u732b\u5728\u57ab\u5b50\u4e0a\u7761"} +{"id": "7000922", "video_name": "019c25b3-63cb-5732-b4a1-b40e17b55b88", "text": "\u5730\u7403\u503e\u659c\u7ed5\u592a\u9633\u8fd0\u8f6c\u3002"} +{"id": "7000923", "video_name": "273857fe-077b-5481-8168-3d19d400efe2", "text": "\u573a\u666f1\uff1a\u8352\u51c9\u7684\u6751\u5e84\n\n\u4e00\u4e2a\u5b81\u9759\u7684\u6708\u591c\u3002\n\u4e00\u5ea7\u88ab\u6d53\u5bc6\u7684\u8349\u6728\u5305\u56f4\u7684\u8001\u65e7\u8352\u5e9f\u6751"} +{"id": "7000924", "video_name": "26926e7a-608d-52a1-a4b8-fc02a9985220", "text": "\u4e00\u5f20\u6765\u81ea\u4e00\u4f4d35\u5c81\u7537\u5b50\u548c32\u5c81\u59bb\u5b50\u7684\u7167\u7247\uff0c\u7167\u7247\u4e2d\u6709\u4e24\u4e2a\u5b69\u5b50\u548c\u4e00\u4e2a\u7a7f\u7740\u7126\u7cd6\u8272\u8863\u670d\u7684\u5973"} +{"id": "7000925", "video_name": "1dfb36e7-0bb0-576b-9969-877f20585046", "text": "\u7535\u5f71\u5316\u7684\u70ed\u5e26\u6d77\u6ee9\u6ce2\u6d6a\uff0c10k\uff0chdr\uff0c\u5145\u6ee1\u6d3b\u529b\uff0c\u6e05\u6670\u9510\u5229\uff0c\u7f8e\u4e3d\u7684\u5149\u7ebf\u3002"} +{"id": "7000926", "video_name": "5eb57de7-eb32-51e6-9ae8-0ed9665feb45", "text": "\u5c55\u793a\u62c9\u4e45\u3001\u7d22\u52aa\u548c\u8428\u666e\u5a1c\u51b3\u5fc3\u52aa\u529b\u5b9e\u73b0\u68a6\u60f3\u7684\u573a\u666f\u3002"} +{"id": "7000927", "video_name": "0b835f73-7507-5093-9991-79e58297623b", "text": "\u4e00\u4e2a\u6b3a\u9a97\u6027\u7684\u519c\u6c11\u4ee5\u5de8\u6b3e\u7684\u4ef7\u683c\u5c06\u4ed6\u571f\u5730\u4e0a\u7684\u6c34\u4e95\u5356\u7ed9\u4e86\u4ed6\u7684\u90bb\u5c45\u3002"} +{"id": "7000928", "video_name": "15a8665b-173d-5c71-a89b-5f0d6d935445", "text": "\u7f8e\u4e3d\u7684\u7eff\u8272\u68ee\u6797\uff0c\u660e\u4eae\u7684\u6708\u5149\uff0c\u4e00\u53ea\u7f8e\u4e3d\u7684\u6591\u70b9\u9e7f\u548c\u4e00\u53ea\u8001\u9f20\u3002\u5b83\u4eec\u76f8\u5bf9\u800c\u7acb\uff0c\u6b63\u5728\u4ea4"} +{"id": "7000929", "video_name": "4edac37f-5e66-554e-8fca-12130bb35a2f", "text": "\u5f00\u653e\u5f0f\u53a8\u623f\u548c\u8fde\u901a\u7684\u9910\u5385\u533a\u57df\uff0c\u98df\u5ba2\u53ef\u4ee5\u5b9e\u65f6\u89c1\u8bc1\u4ed6\u4eec\u7684\u83dc\u80b4\u5236\u4f5c\u8fc7\u7a0b\u3002\u8fd9\u79cd\u5efa\u7b51\u9f13\u52b1"} +{"id": "7000930", "video_name": "2150b7d5-4338-5b7b-b4a5-71fd4c5f8483", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u9713\u8679\u706f\u95ea\u70c1\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u8d70\u7740\uff0c\u4e00\u8fb9\u5438\u7740\u9999\u70df\uff0c\u4e00\u8fb9\u5468\u56f4\u5f25\u6f2b"} +{"id": "7000931", "video_name": "d4f3f55e-50ea-5cbc-b420-c9da3a5b86fa", "text": "\u4e00\u53ea\u677e\u9f20\u6b63\u8981\u8fdb\u5165\u68a6\u4e61\uff0c\u8033\u8fb9\u5ffd\u7136\u4f20\u6765\u4e86\u4e00\u4e2a\u5947\u602a\u7684\u58f0\u97f3\u3002\u90a3\u662f\u4e00\u4e2a\u67d4\u548c\u7684\u6c99\u6c99\u58f0\uff0c"} +{"id": "7000932", "video_name": "d9682284-fdc8-528a-801b-3d40e03c0487", "text": "\u60c5\u4fa3\u5728\u516c\u56ed\u62e5\u62b1\uff0c\u6f2b\u957f\u7684\u6e38\u620f\uff0c\u771f\u5b9e\u800c\u7f8e\u5b66\u3002"} +{"id": "7000933", "video_name": "f2034401-ac64-5c1b-90ec-2f528447e729", "text": "\u5236\u4f5c\u540d\u4e3a\u300aILLograma\u300b\u7684\u559c\u5267\u7535\u89c6\u8282\u76ee\u76843D\u5f00\u573a\u52a8\u753b\u3002"} +{"id": "7000934", "video_name": "a77d1993-7877-5a3a-92fc-5df3cb5c6c56", "text": "\u4e00\u4e2a\u9a91\u5728\u9a6c\u4e0a\u7684\u730e\u4eba\u7a7f\u8d8a\u8349\u539f\uff0c\u4e00\u53ea\u731b\u79bd\u505c\u5728\u730e\u4eba\u5f2f\u66f2\u7684\u624b\u4e0a\uff0c\u4e00\u53ea\u7070\u72d7\u5728"} +{"id": "7000935", "video_name": "b0aecf43-4446-5b10-97c2-01f5522060e4", "text": "Adobe \u6807\u5fd7\u5e26\u6709\u4e00\u4e2a\u5411\u4e0b\u7684\u7bad\u5934\u3002"} +{"id": "7000936", "video_name": "1d65939f-266d-53b1-991c-6a32f9a332cd", "text": "\u5723\u8bde\u706f\u5728\u9ed1\u6697\u4e2d\u4eae\u8d77\u6765\u3002"} +{"id": "7000937", "video_name": "b17146fe-efd6-5e69-b008-58df0c00aba6", "text": "\u7535\u5f71\u6050\u6016\u3001\u9ed1\u6697\u6838\u5fc3\u3001\u6ce2\u7f57\u7684\u6d77\u66b4\u529bTumblr\u9ad8\u6e05\u3001\u8d85\u9ad8\u6e05\u300116K\u3002"} +{"id": "7000938", "video_name": "56c0dc9b-53e9-51a7-90da-ebd1028273f1", "text": "\u4e00\u53ea\u9752\u86d9\u9a91\u7740\u6ed1\u677f\uff0c\u88ab\u53e6\u4e00\u53ea\u9a91\u6ed1\u677f\u7684\u8b66\u5bdf\u9752\u86d9\u8ffd\u8d76\u3002"} +{"id": "7000939", "video_name": "b576f155-cd7c-51c0-9051-0331ff858c2b", "text": "\u6234\u7740\u9762\u5177\u548c\u897f\u88c5\u7684\u7537\u5b50\u5728\u7535\u5f71\u9662\u91cc\u3002"} +{"id": "7000940", "video_name": "5bbbe7bf-61c1-5a8d-aca8-2ec0cb2e9f37", "text": "\u4e00\u4f4d\u667a\u6167\u3001\u5584\u826f\u3001\u9ad8\u8d35\u3001\u7f8e\u4e3d\u7684\u4e2d\u56fd\u8001\u592a\u592a\u3002"} +{"id": "7000941", "video_name": "82e2da46-c908-58a7-99ce-bb12f19ed527", "text": "\u7f05\u56e0\u5dde\u68ee\u6797\u91cc\u8d70\u7740\u4e00\u53ea\u8d85\u73b0\u5b9e\u7684\u9ab7\u9ac5\u3002"} +{"id": "7000942", "video_name": "df74c534-53f4-5478-b493-7bb39c84c17d", "text": "\u4e00\u7247\u9ed1\u6697\u7684\u68ee\u6797\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7000943", "video_name": "bb0addb7-59f5-5d7f-9497-f76650b6e0c7", "text": "\u8001\u65e7\u7684\u7ea2\u8272\u7535\u8bdd\u673a\uff0c\u80cc\u666f\u662f\u5de5\u4e1a\u57ce\u9547\u3002"} +{"id": "7000944", "video_name": "47f9c812-47b4-517b-856e-f58910b70a6a", "text": "\u6570\u5b57\u9010\u6e10\u4ece\u6c34\u6ce2\u4e2d\u53d8\u5f97\u66f4\u6e05\u6670\u3002 \u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7000945", "video_name": "b1893833-e7df-5007-92eb-befb74359961", "text": "\u7535\u5f71\u300a\u626b\u63cf\u6697\u5f71\u300b\u7684\u573a\u666f\u4f7f\u7528\u4e86\u8f6c\u8f6e\u753b\u6280\u672f\u3002"} +{"id": "7000946", "video_name": "52ddc86e-ed1e-5335-ab95-97bcdb8342fd", "text": "\u7f8e\u4e3d\u795e\u5947\u7684\u68ee\u6797\u4e2d\u51a5\u60f3\u7684\u6d63\u718a"} +{"id": "7000947", "video_name": "b3aa9583-62c4-55e4-b40d-fd414cb90e62", "text": "\u5927\u5c71\u540e\u7684\u68ee\u6797\u91cc\uff0c\u4e00\u53ea\u96ea\u9e2e\u5750\u5728\u6811\u679d\u4e0a\u3002"} +{"id": "7000948", "video_name": "6299112d-f164-5da6-8e74-1098125f2df4", "text": "\u591c\u665a\u68ee\u6797\u7684\u52a8\u753b\uff0c\u6709\u5f88\u591a\u8424\u706b\u866b\u3002"} +{"id": "7000949", "video_name": "abf08d74-df10-5702-be07-2bb63ec0bf67", "text": "\u5927\u7bdd\u706b\uff0c\u8def\u6613\u65af\u5b89\u90a3\u6cbc\u6cfd\uff0c\u897f\u73ed\u7259\u82d4\u85d3"} +{"id": "7000950", "video_name": "43807fe9-cf8e-555f-8bb0-8f9a3e1676ab", "text": "\u900f\u8fc7\u7b11\u58f0\u548c\u773c\u6cea\uff0c\u827e\u739b\u89c1\u8bc1\u4e86\u7231\u60c5\u6545\u4e8b\u3002"} +{"id": "7000951", "video_name": "7c095f29-d8cf-5cfa-b45a-a5f076f15613", "text": "\u91d1\u5b57\u5854\u9876\u90e8\u6709\u4e00\u53ea\u57c3\u53ca\u773c\u775b\u6ce8\u89c6\u7740\u3002"} +{"id": "7000952", "video_name": "66ac2c67-b4fc-5981-8ed4-efa59f247dfa", "text": "\u4e00\u540d\u5b66\u751f\u7ad9\u5728\u706b\u8f66\u4e0a\u8bfb\u4e66\u3002"} +{"id": "7000953", "video_name": "b13d8e98-ae6d-518e-9533-ed4103b52791", "text": "\u5973\u58eb\u6cbf\u7740\u77f3\u5934\u8def\u6500\u767b\u5c71\u9876\u3002"} +{"id": "7000954", "video_name": "65cc0658-e4ed-55b3-a8ae-daae0c601415", "text": "\u4e00\u5f20\u6597\u725b\u72ac\u5750\u5728\u6c99\u53d1\u4e0a\u76b1\u7740\u7709\u5934\u7684\u7167\u7247\u3002"} +{"id": "7000955", "video_name": "fc5fc5d2-c9f6-5284-9a4d-8b67e78498c7", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\u53cc\u811a\u5206\u5f00\u7ad9\u7acb\uff0c\u53cc\u624b\u4ea4\u53c9\u4e8e\u8179\u90e8\uff0c\u5979\u7684\u670d\u88c5\u6574\u4f53\u9020\u578b\u548c\u59ff\u52bf\u7ec4\u5408\u8d77\u6765\u7c7b\u4f3c"} +{"id": "7000956", "video_name": "6a9b094f-a650-5e1f-8a69-d7a50b899351", "text": "\u739b\u6208\u00b7\u7f57\u6bd4\u9970\u6f14\u300a\u661f\u9645\u8ff7\u822a\u300b\u8239\u957f\u3002"} +{"id": "7000957", "video_name": "a8d4c878-c220-501c-a016-c554aaa88000", "text": "\u4e00\u4e2a\u5973\u5b69\u665a\u4e0a\u8eba\u5728\u5e8a\u4e0a\u542c\u97f3\u4e50\u3002"} +{"id": "7000958", "video_name": "5ca06384-2da1-5f04-97fc-3387e8e260fd", "text": "\u5728\u4e00\u4e2a\u4ee4\u4eba\u60ca\u53f9\u7684\u81ea\u7136\u73af\u5883\u4e2d\uff0c\u5b69\u5b50\u4eec\u6500\u767b\u4e00\u5ea7\u5c0f\u5c71\uff0c\u7a81\u7136\uff0c\u955c\u5934\u8f6c\u79fb\uff0c\u62cd\u6444\u4e0b\u4e86\u4e00\u4e2a\u4ee4\u4eba"} +{"id": "7000959", "video_name": "d7511a58-48c6-5be3-9909-8fc512a7b4ff", "text": "\u521b\u9020\u51fa\u4e00\u5e45\u7a7f\u7740\u6027\u611f\u670d\u88c5\u7684\u6210\u719f\u5973\u4eba\u7684\u8d85\u771f\u5b9e\u5f62\u8c61\u3002"} +{"id": "7000960", "video_name": "60cce50d-5f41-518c-9347-c7e31cdbc52a", "text": "\u5728KFS\uff0c\u4e00\u500b\u9577\u8457\u91d1\u8272\u9577\u9aee\u548c\u6fc3\u5bc6\u9b0d\u5b50\u7684\u7537\u4eba\u5531\u6b4c\u3002"} +{"id": "7000961", "video_name": "ad510398-fdf8-505e-a445-46f79cd435c0", "text": "\u751f\u6210\u4e00\u4e2a\u5728\u516c\u56ed\u91ce\u9910\u7684\u5bb6\u5ead\u89c6\u9891\u3002\u8fd9\u6b21\u91ce\u9910\u5fc5\u987b\u5305\u62ec\u81f3\u5c11\u4e00\u74f6\u82cf\u6253\u6c34\uff0c3\u4e2a\u82f9\u679c\uff0c2\u4e2a"} +{"id": "7000962", "video_name": "49411197-c436-5440-9d7e-552e94dcb86d", "text": "\u7528\u4e24\u53ea\u5409\u5a03\u5a03\u521b\u4f5c\u4e00\u4e2a\u53ef\u6015\u7684\u89c6\u9891\u3002"} +{"id": "7000963", "video_name": "ef151b2d-877c-5bd9-82c7-33cc4f3f1a53", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5f80\u6811\u6797\u91cc\u7684\u4e00\u5bb6\u8001\u65c5\u5e97\u8d70\u53bb\u3002"} +{"id": "7000964", "video_name": "3390e9e5-20e8-50a5-9349-b873df679f8f", "text": "\u7194\u878d\u91d1\u5c5e\u94a2\u6db2\u5177\u6709\u826f\u597d\u7684\u6d41\u52a8\u6027\uff0c\u503e\u5012\u65f6\u4e0b\u964d\u901f\u5ea6\u9002\u5b9c\uff0c\u540c\u65f6\u70df\u96fe\u4f1a\u968f\u7740\u4e0a"} +{"id": "7000965", "video_name": "744c6cb0-f45b-50d7-998a-e0b5dd262a0a", "text": "\u4e00\u4e2a\u5fcd\u8005\u9a91\u7740\u6469\u6258\u8f66\u98de\u5feb\u7a7f\u8fc7\u8611\u83c7\u68ee\u6797\u7684\u5c0f\u8def\u3002 \u5947\u5e7b\u79d1\u5e7b\u3002"} +{"id": "7000966", "video_name": "bda2ed2c-8972-51b4-b2f8-0bbecc6c88e7", "text": "\u6ed1\u96ea\u677f\u5973\u6027\u4e0a\u5347\u6905\u5f0f\u7f06\u8f66\u3002"} +{"id": "7000967", "video_name": "bed492cb-0eed-5d54-b4d9-ba91a0021b79", "text": "\u5f62\u72b6\u4e3aE\u7684\u8346\u68d8\u548c\u73ab\u7470\u3002"} +{"id": "7000968", "video_name": "c4c622ed-6fa1-59a9-af84-352f6adac44b", "text": "\u4e00\u7fa4\u5e74\u8f7b\u738b\u5b50\u805a\u96c6\u5728\u4e00\u5ea7\u7f8e\u4e3d\u7684\u5bab\u6bbf\u5185\uff0c3D\u9ad8\u6e05\u3002"} +{"id": "7000969", "video_name": "43523c88-26ea-5b01-8d12-a2a8cf2401f5", "text": "\u8239\u53ea\u649e\u5411\u7801\u5934\uff0c\u6bc1\u574f\u4e86\u5efa\u7b51\u7269\u3002"} +{"id": "7000970", "video_name": "780f445c-aa77-54d0-a2d0-ffb067d11ea5", "text": "\u4e00\u4e2a\u6234\u7740\u9762\u5177\u7684\u7537\u4eba\u5750\u5728\u6469\u5929\u5927\u697c\u7684\u5c4b\u9876\u4e0a\u89c2\u770b\u7740\u94f6\u6cb3\u7684\u7206\u70b8\uff0c\u753b\u9762\u6e05\u6670\u5ea6\u4e3a4k"} +{"id": "7000971", "video_name": "6d556e63-8c7c-5cde-8e48-78b0d77aeaf1", "text": "\u5317\u98ce\u82d4\u539f\u7684\u51b0\u51b7\u8352\u6f20\uff0c\u591c\u665a\uff0c\u6444\u50cf\u673a\u9010\u6e10\u63a5\u8fd1\u51b0\u51a0\u5821\u5792\u3002"} +{"id": "7000972", "video_name": "330ba905-3804-5fd5-bb80-a79303bbea33", "text": "\u52a8\u6f2b\u98ce\u683c\u4e0b\u7684\u4e00\u4e2a\u5973\u5b69\u5728\u6d74\u5ba4\u91cc\u4f7f\u7528\u6d17\u53d1\u6c34\u5b8c\u6210\u3002"} +{"id": "7000973", "video_name": "74efbcd3-53fb-5bc1-aec3-67f9a23cf82f", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e00\u4e2a\u4eba\u5750\u5728\u529e\u516c\u5ba4\u7684\u684c\u5b50\u524d\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "7000974", "video_name": "ccbf820b-72fc-5172-90e8-eb7adc806c0d", "text": "\u5916\u661f\u4eba\u8bd5\u56fe\u7ec4\u88c5\u5b9c\u5bb6\u5bb6\u5c45\u5bb6\u5177\u3002"} +{"id": "7000975", "video_name": "06808df3-1632-57f1-9564-bcb94b85b256", "text": "\u4e00\u540d\u7a7f\u7740\u5b87\u822a\u670d\u5728\u706b\u661f\u8868\u9762\u884c\u8d70\u7684\u7537\u5b50\uff0c\u8eab\u4f53\u627f\u53d7\u7740\u5de8\u5927\u7684\u538b\u529b\u3002"} +{"id": "7000976", "video_name": "a02f0e15-f85a-539b-87e9-26f4a65a14d5", "text": "\u4e00\u4e2a\u7236\u4eb2\u6e29\u67d4\u5730\u62e5\u62b1\u4ed6\u7684\u513f\u5b50\u3002"} +{"id": "7000977", "video_name": "c0668c90-12f8-5c4e-90c0-89e2d30f9740", "text": "\u4e00\u4e2a\u9ed1\u6697\u7684\u6728\u8d28\u5496\u5561\u5385\uff0c\u4eba\u4eec\u5728\u559d\u5496\u5561\u3002"} +{"id": "7000978", "video_name": "74e59995-43ec-560c-8013-588b69b4b074", "text": "\u5728\u9ad8\u901f\u516c\u8def\u4e0a\uff0c\u4e00\u53ea\u5730\u72f1\u91ce\u732b\u9762\u5bf9\u4e00\u8f86\u6cd5\u62c9\u5229\u3002"} +{"id": "7000979", "video_name": "b8baa481-75c5-570f-baa6-9accd98fa5b7", "text": "3D\u52a8\u6f2b\u592a\u7a7a\u5973\u5b69\u542cLofi\u97f3\u4e50\u9ad8\u6e05\u65e0\u9650\u5faa\u73af\u89c6\u9891"} +{"id": "7000980", "video_name": "296ccff1-bbbd-587f-8df5-374168dfbac4", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u514b\u7a7f\u7740\u94a2\u94c1\u4fa0\u76d4\u7532\u5bf9\u6218\u9a6c\u514b\u00b7\u624e\u514b\u4f2f\u683c\uff0c\u540e\u8005\u662f\u54e5\u65af\u62c9\u3002"} +{"id": "7000981", "video_name": "be9b0b89-a5ca-55d2-929b-3ecb4232edfe", "text": "\u5973\u4eba\u5728\u7f8e\u4e3d\u7684\u767d\u8272\u53a8\u623f\u91cc\u5c55\u793a\u8eab\u6750\uff0c\u5e76\u51b2\u6ce1\u5496\u5561\u3002"} +{"id": "7000982", "video_name": "7b963755-e98a-5525-a43e-84ad4fa8d0a7", "text": "\u4e00\u53ea\u72d0\u72f8\u548c\u4e00\u7fa4\u871c\u8702\u7684\u6218\u6597"} +{"id": "7000983", "video_name": "250b2ac8-139b-50ed-9f56-f2f6901dcf2a", "text": "\u4e00\u4e2a\u8eab\u6750\u9ad8\u5927\u3001\u76ae\u80a4\u9edd\u9ed1\u3001\u808c\u8089\u53d1\u8fbe\u7684\u7537\u4eba\uff0c\u5728\u6c99\u6f20\u7684\u591c\u665a\u7a7f\u7740\u4e2d\u4e16\u7eaa\u963f\u62c9\u4f2f\u76d4"} +{"id": "7000984", "video_name": "34bb828d-3d91-57db-a686-b50c3d842f91", "text": "\u5728\u65b0\u7f55\u5e03\u4ec0\u5c14\u5dde\uff0c\u4eba\u4eec\u7b11\u58f0\u4e0d\u65ad\uff0c\u4e00\u8d77\u5ea6\u8fc7\u6109\u5feb\u7684\u611f\u6069\u8282\u5047\u671f\uff0c\u6162\u52a8\u4f5c\u3001\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u5f15\u4eba"} +{"id": "7000985", "video_name": "8efe403d-f616-5295-8be4-1927bf5b1dec", "text": "\u4e24\u8f86\u6c7d\u8f66\u76f8\u649e\u7684\u89c6\u9891"} +{"id": "7000986", "video_name": "69629f51-fe2c-5d03-a094-63ef5436b120", "text": "\u6b63\u5728\u5316\u5986\u7684\u5973\u5b69\u8dd1\u51fa\u53bb\u4e86\u3002 1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7000987", "video_name": "ab0ff39d-174b-5544-a80f-8d3aaa88204a", "text": "\u4e00\u8258\u5b87\u5b99\u98de\u8239\u6b63\u9a76\u8fc7\u4e00\u4e2a\u96ea\u539f\uff0c\u5929\u7a7a\u4e2d\u6d12\u4e0b\u5bc6\u5bc6\u9ebb\u9ebb\u7684\u96ea\u82b1\u3002"} +{"id": "7000988", "video_name": "a2aa8e31-e447-54f8-a0d7-b99dcb336a61", "text": "\u968f\u7740\u8fd9\u79cd\u75f4\u8ff7\u7684\u52a0\u5267\uff0c\u4e00\u4e2a\u6751\u6c11\u7fa4\u4f53\u7ec4\u6210\u4e86\uff0c\u65e8\u5728\u4fdd\u62a4\u4ed6\u4eec\u7684\u793e\u533a\u514d\u53d7\u7535\u89c6\u7684\u5438\u5f15\u3002\u4ed6"} +{"id": "7000989", "video_name": "419476e7-6ae1-5fcd-97b7-61b6f3c68275", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7684\u827a\u672f\u5bb6\u5728\u57ce\u5e02\u7684\u4eba\u884c\u9053\u4e0a\u5c55\u793a\u5979\u7684\u7ed8\u753b\u4f5c\u54c1\uff0c\u6709\u5404\u79cd\u4e0d\u540c\u7684\u6cb9\u753b\u4f5c\u54c1\u3002"} +{"id": "7000990", "video_name": "9581506e-fbb9-5e19-8fef-fc7d5d67d518", "text": "\u5177\u5907\u6280\u672f\u80cc\u666f\u7684\u6f14\u8bb2\u5609\u5bbe\u52a8\u6001\u4ecb\u7ecd\uff0c\u63a2\u7a76\u4eba\u7c7b\u8425\u9500\u7684\u79d8\u5bc6\uff0c\u8fdb\u5165\u65b0\u65f6\u4ee3\u7684AI\u76f4\u64ad\u3002\u7535\u5f71"} +{"id": "7000991", "video_name": "a2680f27-82bc-5336-876e-38e3318df244", "text": "\u9752\u86d9\u5728\u6cb3\u4e2d\u8ffd\u9010\uff0c3D\u52a8\u753b\u3002"} +{"id": "7000992", "video_name": "7dec9b0b-eb58-53fe-b2d6-c0718c889bfa", "text": "\u5e74\u8f7b\u7684\u4e9a\u6d32\u5973\u5b69\u6b63\u5728\u770b\u4e66\u548c\u542c\u97f3\u4e50\u3002"} +{"id": "7000993", "video_name": "f2e7009a-e50e-5ad3-bc6e-72c3a7e460fd", "text": "\u50cf\u4e00\u4e2a\u65e0\u58f0\u54e8\u5175\u4e00\u6837\uff0c\u7ad9\u5728\u8feb\u8fd1\u7684\u9ed1\u6697\u524d\u9762\u3002"} +{"id": "7000994", "video_name": "0128875c-e154-5438-82b3-a8743ab115e5", "text": "\u4e00\u4e2a\u6234\u7740\u897f\u88c5\u62ff\u7740\u516c\u6587\u5305\u8d70\u8def\u7684\u65e0\u9762\u7537\u5b50\uff0c\u52a8\u4f5c\u7f16\u53f777\uff0c\u79cd\u5b50\u7f16\u53f7777\u3002"} +{"id": "7000995", "video_name": "05a78749-54f9-5283-8222-19a34bde9047", "text": "\u7897\u91cc\u7684\u4e00\u5806\u7cd6\u679c"} +{"id": "7000996", "video_name": "1a8c243c-0b5d-507d-b93d-96d46140c947", "text": "\u5728\u4e00\u4e2a\u9ed1\u6697\u7684\u529e\u516c\u5ba4\u91cc\uff0c\u529e\u516c\u5ba4\u96c7\u4e3b\u5f88\u96be\u8fc7\u3002"} +{"id": "7000997", "video_name": "f7f53147-879f-561d-adb8-fdae8652cca3", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u548c\u4e54\u00b7\u62dc\u767b\u6bd4\u62fc\u81c2\u529b\u3002"} +{"id": "7000998", "video_name": "a926804d-4048-55c1-9b2d-2865da9a6f5e", "text": "\u4e00\u53ea\u5947\u6d1b\u7279\u5c9b\u72d0\u72f8\u5750\u5728\u672c\u571f\u5947\u6d1b\u7279\u68ee\u6797\u7684\u6811\u5e72\u4e0a\uff0c\u591c\u665a\u7528\u9713\u8679\u8272\u903c\u771f\u5730"} +{"id": "7000999", "video_name": "4b521aa1-3cb2-5c30-aebf-0cd4247f11a5", "text": "70\u5e74\u4ee3\u98ce\u683c\u7684\u7f8e\u4eba\u9c7c\u5728\u8c6a\u534e\u6e38\u6cf3\u6c60\u4e2d\u6e38\u52a8\u7684\u753b\u9762\u3002"} +{"id": "7001000", "video_name": "37d619ee-c1a6-5f7c-ad03-095800db49cd", "text": "\u521b\u9020\u4e00\u4e2a\u903c\u771f\u7684\u56fe\u50cf\uff0c\u663e\u793a\u6885\u6d1b\u57c3\u91d1\u5b57\u5854\u9ad8\u8038\u5728\u843d\u65e5\u7684\u80cc\u666f\u4e0b\u3002"} +{"id": "7001001", "video_name": "54e4ef5f-6497-5e18-88f9-97d3bc1ac4da", "text": "\u7279\u6717\u666e\u8d70\u5728\u8d85\u6a21T\u578b\u53f0\u4e0a\u3002"} +{"id": "7001002", "video_name": "8c28b52d-7c8c-5e2f-8cc7-abc9718e5f0f", "text": "\u67ef\u57fa\u5b87\u822a\u5458\u548c\u6c34\u8c5a\u5b87\u822a\u5458\u6234\u4e0a\u5b8c\u7f8e\u7684\u5934\u76d4\uff0c\u5728\u4e00\u95f4\u5de8\u5927\u7a7a\u65f7\u7684\u535a\u7269\u9986\u4e2d\u592e\u62cd\u6444\u4e86\u5e7f"} +{"id": "7001003", "video_name": "cdccac8c-d62e-5396-8891-80830e8f8040", "text": "1970\u5e74\u7684\u827a\u672f\u7535\u5f71\uff1a\u51b7\u8272\u8c03\u7684\u592a\u9633\u5728\u5fb7\u514b\u8428\u65af\u5dde\u9a6c\u5c14\u6cd5\u843d\u5c71\u3002"} +{"id": "7001004", "video_name": "cf309951-5fdc-5df9-95b6-7675558850f4", "text": "\u76ee\u6807\u53e5\u5b50\uff1a\u4e00\u6ef4\u6c34\u73e0\u6e85\u5728\u4e00\u4e2a\u4e0d\u9053\u5fb7\u7684\u5730\u65b9\u3002"} +{"id": "7001005", "video_name": "9772db28-e7f3-5d31-9dd3-93f650412b5d", "text": "\u4e00\u67b6UFO\u88ab\u4e09\u67b6\u7a7a\u519b\u6218\u6597\u673a\u8ffd\u9010\u3002"} +{"id": "7001006", "video_name": "57231244-3d35-54aa-92ad-c150afd70ed4", "text": "\u5e03\u91cc\u5409\u7279\u00b7\u5df4\u5c14\u6735\u5728\u96ea\u5730\u91cc\u7a7f\u7740\u6bdb\u76ae\u5916\u5957\u548c\u5e3d\u5b50\uff0c8K\uff0c\u7535\u5f71\u98ce\u683c\u3002"} +{"id": "7001007", "video_name": "0d7e13b3-4cf9-510c-a1b8-cc0a5eebe41c", "text": "\u672a\u6765\u57ce\u5e02\u7684\u573a\u666f\uff0c\u9713\u8679\u706f\u7f13\u6162\u95ea\u8000\u3002"} +{"id": "7001008", "video_name": "b9bc78f9-4a1e-54e1-9a1e-f3894ebe140d", "text": "\u4e00\u53ea\u5927\u8001\u864e\u6b63\u5728\u8def\u4e0a\u884c\u8d70\uff0c\u6ce8\u89c6\u7740\u6444\u50cf\u673a\uff0c\u6001\u5ea6\u5f3a\u786c\uff0c\u529b\u91cf\u5f3a\u5927\uff0c\u5177\u670916K\u7684\u8d85\u9ad8\u6e05\u7ec6\u8282\u548c\u6781\u5ea6"} +{"id": "7001009", "video_name": "d720a165-ba3c-5a4f-acd9-0a897abf0dca", "text": "\u5b87\u5b99\u6df1\u5904\u7684\u9ed1\u6697"} +{"id": "7001010", "video_name": "d63b46aa-a8fb-56cd-8626-246c6f18243c", "text": "\u4f0a\u5a03\u00b7\u683c\u6797\u7a7f\u7740\u7c89\u8272\u88d9\u5b50\u5728\u6ce2\u58eb\u987f\u7684\u8857\u9053\u4e0a\u8d70\u52a8\uff1b\u8ffd\u8e2a\u955c\u5934\u4f7f\u752835\u6beb\u7c73\u7535\u5f71"} +{"id": "7001011", "video_name": "714cea86-f5b6-5316-abba-d4f237945378", "text": "\u4ece\u4e0a\u9762\u79fb\u52a8\u7684\u6c34\u3001\u5929\u7a7a\u548c\u8349\u3002"} +{"id": "7001012", "video_name": "9971e188-a451-57ef-97a8-2635130f28f8", "text": "\u8001\u864e\u9ca8\u548c\u73ca\u745a\u7901\u7684\u6c34\u4e0b\u955c\u5934"} +{"id": "7001013", "video_name": "00f31c61-3048-51ea-be48-e0a288732807", "text": "\u4e16\u754c\u672b\u65e5\u5728Costco\u768470\u6beb\u7c73\u7535\u5f71\u753b\u9762"} +{"id": "7001014", "video_name": "5bc132f5-88c5-5f8f-8b37-69a9f164bf26", "text": "\u8fd9\u6b21\u513f\u5b50\u4e5f\u53ea\u662f\u5ba2\u4eba\uff0c\u53ea\u5f85\u4e86\u51e0\u4e2a\u5c0f\u65f6\u3002"} +{"id": "7001015", "video_name": "886a175b-1df6-50f1-b255-cfc4bed336c7", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u6b63\u5728\u9a91\u4e0a\u4e00\u5339\u9a6c\u3002"} +{"id": "7001016", "video_name": "8cf6db4d-c46a-53fa-9270-f1ce0f9e4bca", "text": "\u4e00\u540d\u5973\u5b50\u7ad9\u5728\u5411\u65e5\u8475\u7530\u91cc\uff0c\u5934\u53d1\u5728\u98ce\u4e2d\u98d8\u52a8\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c4K\u3002"} +{"id": "7001017", "video_name": "66785517-6c0e-56ae-89ba-5adf5f133a70", "text": "\u5929\u9645\u57ce\u91cc\u6709\u4e00\u53ea\u84dd\u8272\u7684\u6bdb\u517d\u8d70\u7740\u3002"} +{"id": "7001018", "video_name": "7add40d2-4a7d-590d-a88a-0c43dfbf668d", "text": "\u5728\u955c\u5b50\u91cc\uff0c\u827e\u4e3d\u770b\u5230\u4e86\u81ea\u5df1\u7684\u5012\u5f71\uff0c\u4f46\u662f\u5b83\u662f\u626d\u66f2\u548c\u53ef\u6015\u7684\u7248\u672c\u3002\u5979\u8bd5\u56fe\u79bb\u5f00\uff0c\u4f46\u53d1\u73b0\u81ea"} +{"id": "7001019", "video_name": "0bf42c7b-9b03-5607-af95-f95a53c7d853", "text": "\u51e0\u6761\u91d1\u9f99\u4f69\u6234\u7740\u9888\u9970\u5728\"\u52c7\u6c14\"\u6587\u5b57\u524d\u7ff1\u7fd4\u3002(\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7001020", "video_name": "73b658bb-c91f-5726-a8de-3b3fb680cdcf", "text": "\u4e00\u4e2a\u6ce5\u571f\u5806\uff0c\u4e2d\u592e\u6709\u4e00\u4e2a\u5e26\u706f\u7684\u6d1e\u7a74\uff0c\u6709\u4e00\u7247\u4e4c\u4e91\u5bc6\u5e03\u7684\u5929\u7a7a\uff0c\u6ee1\u6708\u548c\u4e00\u4e2a\u5f39\u94a2\u7434\u7684\u5c0f\u4e11"} +{"id": "7001021", "video_name": "f7564f61-0192-5cb4-8827-5a7f5284f808", "text": "\u5c4f\u5e55\u4e0a\u663e\u793a\u7740\u4e00\u4e2a\u8302\u5bc6\u3001\u5145\u6ee1\u751f\u673a\u7684\u68ee\u6797\uff0c\u9ad8\u8038\u7684\u6811\u6728\u548c\u4e94\u5f69\u7f24\u7eb7\u7684\u82b1\u6735\u4ee4\u4eba\u60ca"} +{"id": "7001022", "video_name": "73818786-c353-5709-8cf6-98458216e22b", "text": "\u4e0a\u6d77\u5728\u5143\u5bb5\u8282\u4e3e\u884c\u5e86\u795d\u6d3b\u52a8\u3002"} +{"id": "7001023", "video_name": "e9a97ade-1b28-51ef-adfe-88b5735e685f", "text": "\u7efc\u827a\u821e\u53f0\u3001\u7537\u5b69\u3001\u897f\u88c5\u3001\u94a2\u7434\u6f14\u594f\u3001\u624b\u6307\u7ec6\u8282\u63cf\u7ed8\u3001\u6f2b\u753b\u3001\u914d\u89d2"} +{"id": "7001024", "video_name": "c09a6880-a806-52f0-aacb-9d754e363564", "text": "\u521b\u5efa\u4e00\u4e2a\u8ff7\u4eba\u7684\u591c\u665a\u6751\u5e84\u76843D\u52a8\u753b\uff0c\u540c\u65f6\u6709\u795e\u79d8\u7684\u58f0\u97f3\u57284K\u73af\u7ed5\u56de\u8361\u3002"} +{"id": "7001025", "video_name": "e9d1420a-4226-5ffd-b28f-7b84e9c44f44", "text": "12\u79d2\u89c6\u9891\uff0c15\u4eba\u805a\u5728\u4e00\u8d77\uff0c\u4ed6\u4eec\u4ef0\u671b\u7740\u5145\u6ee1\u5947\u8ff9\u7684\u5929\u7a7a\uff0c\u8349\u5730\u4e0a\uff0c\u67d4\u548c\u7684\u98ce\u5439\u52a8\u7740\u8349"} +{"id": "7001026", "video_name": "737dd954-6291-5bb9-a0de-0ad340e583e8", "text": "\u4fc4\u7f57\u65af\u94c1\u8def\u768430\u79d22D\u7ed8\u753b\u5e7f\u544a"} +{"id": "7001027", "video_name": "b4bd3aa8-ee98-515d-8f67-c3b6e1833b25", "text": "\u4eba\u4eec\u5728\u9662\u5b50\u91cc\u7528\u9504\u5934\u51c6\u5907\u732a\u6392\u9504\u3002"} +{"id": "7001028", "video_name": "d9ba800d-5914-5bda-a11a-54f830556fb2", "text": "\u6c34\u6ef4\u5728\u79cb\u53f6\u4e0a\u7684\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "7001029", "video_name": "cadb1629-9d07-5cff-adeb-db8c3966fcd1", "text": "\u5b69\u5b50\u4eec\u5728\u96e8\u5b63\u5728\u8def\u4e0a\u5feb\u4e50\u5730\u8df3\u821e\uff0c\u771f\u5b9e\u3002"} +{"id": "7001030", "video_name": "b3c8570a-0ff9-59f5-9624-4b5833e3e243", "text": "\u4e00\u540d\u5341\u51e0\u5c81\u7684\u7537\u5b69\u5750\u5728\u623f\u95f4\u7684\u5730\u677f\u4e0a\uff0c\u5934\u53d1\u4e00\u534a\u662f\u84dd\u8272\uff0c\u4e00\u534a\u662f\u9ed1\u8272\uff0c\u624b\u6301\u7b14\u8bb0\u672c\u5728\u753b\u753b\uff0c\u5e76"} +{"id": "7001031", "video_name": "1c3a431e-aa4c-576b-b464-727459b077a6", "text": "\u4e00\u4e2a\u5e9f\u5f03\u57ce\u5821\u91cc\u7684\u5927\u6728\u5236\u65f6\u949f\uff0c\u955c\u5934\u4ece\u623f\u95f4\u95e8\u53e3\u62cd\u6444\u800c\u6765\u3002\n\nSource sentence: The cat is sitting on the windowsill, enjoying the warmth of the sun"} +{"id": "7001032", "video_name": "79f50616-7508-5206-9e01-29e8dd06ae8d", "text": "\u5728\u65e5\u843d\u65f6\u5206\u8d70\u5728\u68ee\u6797\u91cc\u7684\u6027\u611f\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "7001033", "video_name": "cf70f236-5413-59e1-942b-35faf57f8f27", "text": "\u8001\u6d3e\u7684\u6447\u6eda\u4e50\u961f\uff0c\u73b0\u573a\u97f3\u4e50\u4f1a\uff0c\u4eba\u7fa4\uff0c\u706f\u5149\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001034", "video_name": "63c5b2e0-c0b7-5fb2-b85d-24f5fe480b9e", "text": "\u4e00\u4e2a\u79c3\u9876\u7684\u4e2d\u5e74\u7537\u5b50\u5728\u4ed6\u7684\u5367\u5ba4\u91cc\u81ea\u62cd\u7684YouTube\u89c6\u9891\u4e2d\u5bf9\u7740\u6444\u50cf\u5934\u8bf4\u8bdd\u3002"} +{"id": "7001035", "video_name": "2c1318d5-7ee5-56da-b54e-3e95e8057e61", "text": "\u4e00\u53ea\u874e\u5b50\u53d8\u6210\u6d3b\u751f\u751f\u7684\u7c89\u7b14\u753b"} +{"id": "7001036", "video_name": "8092c345-c8f5-5a13-b9c3-edd8bbddb04c", "text": "\u4e00\u4e2a\u5deb\u5e08\u5728\u519c\u573a\u8df3\u821e\u3002"} +{"id": "7001037", "video_name": "8b46329c-f154-5cf5-8781-9fec05d75342", "text": "\u602a\u517d\u5728\u5de5\u4f5c\u5ba4\u969c\u788d\u8bfe\u7a0b\u91cc\u653b\u51fb\u4e86\u4e00\u4f4d1970\u5e74\u4ee3\u7684\u6e38\u620f\u8282\u76ee\u9009\u624b\u3002"} +{"id": "7001038", "video_name": "2347f898-663c-596a-94ec-332fb24347fa", "text": "\u4e00\u4e2a\u7a7f\u7740\u76d4\u7532\u7684\u5c0f\u7537\u5b69\uff0c\u50cf\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u4e00\u6837\u4e0e\u75c5\u6bd2\u6218\u6597\u3002"} +{"id": "7001039", "video_name": "0524c840-22a2-5dce-a213-c74771ae9640", "text": "\u5973\u4eba\u624b\u6301\u65e7\u5730\u56fe\u548c\u706f\u7b3c\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u80cc\u666f\u660f\u6697\u3002"} +{"id": "7001040", "video_name": "99898d2e-d6ea-537f-aa33-d9d64917240a", "text": "\u4e00\u53ea\u5177\u6709\u4eba\u5de5\u667a\u80fd\u7684\u4f1a\u8bf4\u8bdd\u7684\u72d7"} +{"id": "7001041", "video_name": "452a4463-3352-5ff5-a0cc-5fd0336cb8ee", "text": "\u9ed1\u8272\u80cc\u666f\uff0c\u6d41\u52a8\u7684\u9713\u8679\u7eff\u8272\u4e8c\u8fdb\u5236\u5b57\u7b26\u5982\u96e8\u4ece\u9876\u90e8\u843d\u4e0b\uff0c\u7535\u5f71\u822c\u7684\uff0c16k\u3002"} +{"id": "7001042", "video_name": "5b12ba55-c66a-579b-96c4-ec7da3671209", "text": "\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u57289:16\u4ece\u5929\u7a7a\u5760\u843d\u3002"} +{"id": "7001043", "video_name": "92d9b418-1f55-5b65-a5c9-7092404b8868", "text": "\u5361\u901a\u7247\u662f\u7ed9\u513f\u7ae5\u770b\u7684\uff0c\u4ee5\u56fe\u753b\u4e3a\u4e3b\u7684\u6559\u80b2\u6027\u5361\u901a\u7535\u5f71\u9002\u5408\u5e74\u5e7c\u7684\u5b69\u5b50\u3002"} +{"id": "7001044", "video_name": "53dfbaa5-6dfe-57e1-ba05-f756dfe66b79", "text": "\u79fb\u52a8\u5728\u8fdc\u5904 \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "7001045", "video_name": "0538f40c-fd4b-53ec-b4ef-d60aa656dfa2", "text": "\u4e00\u5e45\u8d85\u73b0\u5b9e\u7684\u573a\u666f\uff0c\u8272\u5f69\u6591\u6593\u7684\u6c14\u6ce1\u6f02\u6d6e\u5728\u865a\u65e0\u7684\u80cc\u666f\u4e2d\u3002"} +{"id": "7001046", "video_name": "9e858233-5f52-5593-9766-68f61a7f1800", "text": "\u513f\u7ae5\u8d61\u517b\u8d39\u3001\u6cd5\u5ead\u300124\u5e27\u6bcf\u79d2\u3001\u52a8\u4f5c5\u3001\u7535\u5f71\u98ce\u683c\u3001\u903c\u771f\u7684\u7167\u7247\u6548\u679c"} +{"id": "7001047", "video_name": "6375a9c3-6f88-581a-b224-33b81990b544", "text": "\u517b\u8001\u9662\uff0c\u5927\u623f\u95f4\uff0c\u5e8a\u4e0a\u65b9\u914d\u5907\u533b\u7597\u8bbe\u5907\u5e26\u3002"} +{"id": "7001048", "video_name": "713a98e2-b7e4-5b6d-93bb-448281bde991", "text": "\u8bb8\u591a\u8ff7\u5e7b\u7684\u86c7\u5728\u4e07\u82b1\u7b52\u822c\u7684\u573a\u666f\u4e2d\uff0c\u5e26\u670960\u5e74\u4ee3\u7684\u8ff7\u5e7b\u611f\uff0c\u5206\u8fa8\u7387\u4e3a4K\uff0c\u5bbd\u9ad8\u6bd4\u4e3a"} +{"id": "7001049", "video_name": "b6914939-81c5-5b8e-a387-692b9b24ce66", "text": "\u7ebd\u5e03\u5e2e\u5728\u4e00\u6b21\u9178\u6027\u65c5\u7a0b\u4e2d\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "7001050", "video_name": "00f88d3a-6a12-5865-8439-9d02c47e9b80", "text": "\u52a8\u6f2b\u89c6\u9891\u4e2d\u806a\u660e\u7684\u7537\u5b69\u7ad9\u5728\u6d77\u5578\u524d\u65b9\u3002"} +{"id": "7001051", "video_name": "1528aa7e-f66c-5309-b3b9-5061668edfe0", "text": "\u53ef\u7231\u7684\u52a8\u6f2b\u7537\u5b69\uff0c\u767d\u8272\u5934\u53d1\uff0c\u548c\u72d7\u4e00\u8d77\u671b\u7740\u65e5\u51fa\uff0c4k\u8d85\u9ad8\u6e05\u3002"} +{"id": "7001052", "video_name": "a107a08d-3a8b-5a61-b553-ccfcaa05045e", "text": "\u5728\u96ea\u5730\u91cc\uff0c\u6709\u4e00\u4e2a\u6765\u81ea\u514b\u4ec0\u7c73\u5c14\u7684\u7f8e\u4e3d\u5973\u5b69\uff0c\u80cc\u666f\u662f\u7fa4\u5c71\u3002"} +{"id": "7001053", "video_name": "d9fbb9da-539b-542c-878a-11c58b5dac02", "text": "\u4f4e\u89d2\u5ea6\u62cd\u6444\u3002\u8fd1\u8ddd\u79bb\u3002\u4e00\u4e2a\u5728\u6e56\u4e2d\u5347\u8d77\u7684\u9634\u5f71\u5f62\u72b6\u3002\u9ed1\u6697\u3001\u6d53\u539a\u7684\u96fe\u5728\u591c\u665a\u79fb\u52a8\u3002"} +{"id": "7001054", "video_name": "a156440e-3ffc-517c-8897-a1921d5d39b8", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u73bb\u7483\u6cf3\u6c60\u91cc\u6e38\u6cf3\uff0c3\u79d2\u540e\u51fa\u6765\u4e86\u3002"} +{"id": "7001055", "video_name": "5f4efe2e-04c0-59be-afaa-af35d5536fc7", "text": "\u4e00\u4e2a\u4eba\u4ece\u5929\u4e0a\u6389\u4e0b\u6765\u4e86\uff0c\u4ed6\u6b7b\u4e86\u3002"} +{"id": "7001056", "video_name": "c149e86d-63d9-5cd4-8f46-47d2fdbf1c42", "text": "\u4e00\u4f4d\u91d1\u53d1\u78a7\u773c\u7684\u5973\u6218\u58eb\u9a91\u5728\u4e00\u5339\u9ed1\u9a6c\u4e0a\u884c\u8d70\u3002"} +{"id": "7001057", "video_name": "6d2fd0e7-5d70-585b-91ed-aeecc8bd1cd1", "text": "\u4e00\u53ea\u5916\u661f\u4eba\u7a7f\u7740\u73b0\u4ee3\u7684\u670d\u88c5\u4ece\u7ebd\u7ea6\u7684\u5546\u573a\u91cc\u8d70\u51fa\u6765\uff0c\u7535\u5f71\u822c\u7684\u753b\u9762\uff0c4K\u3002"} +{"id": "7001058", "video_name": "83e42271-4f65-50ef-a4cb-ba3e1d165aa3", "text": "\u6811\u4e0a\u6709\u4e00\u4e9b\u82d4\u85d3\u7684\u6811\u5f88\u5c11\u3002"} +{"id": "7001059", "video_name": "38544ce5-ef39-53ce-895d-923bf4612542", "text": "\u767d\u5929\uff0c\u7535\u5f71\u98ce\u683c\u4e0b\u5feb\u901f\u884c\u9a76\u5728\u516c\u8def\u4e0a\u7684\u6c7d\u8f66\u4eea\u8868\u76d8\u4e0a\u5f39\u51fa\u4e86\u6606\u866b\u548c\u868a\u5b50\u3002"} +{"id": "7001060", "video_name": "a64ec8fd-b1d7-5a68-a552-55a2eff7d22e", "text": "\u5f88\u591a\u6447\u9a6c\u6447\u6446\u7740\u6000\u65e7\u7684\u5feb\u4e50\u3002"} +{"id": "7001061", "video_name": "f2864860-c1a0-55dd-9390-b86d422bca87", "text": "\u4f50\u7f57\u7a7f\u7740\u706b\u7ea2\u7684\u6597\u7bf7\uff0c\u8eab\u540e\u98d8\u626c\u7740\u71c3\u70e7\u7684\u6811\u53f6\uff0c\u71c3\u70e7\u77408000\u5ea6\u7684\u706b"} +{"id": "7001062", "video_name": "5e3c3ac3-dd65-56df-8544-616183f392b9", "text": "\u7a81\u7136\uff0c\u4e00\u4e2a\u5149\u8f89\u7480\u74a8\u7684\u5929\u4f7f\u51fa\u73b0\u4e86\uff0c\u5b83\u7684\u7fc5\u8180\u5728\u6708\u5149\u4e0b\u95ea\u95ea\u53d1\u5149\u3002"} +{"id": "7001063", "video_name": "e696879c-479f-50a9-96f8-90f94a682026", "text": "\u4e00\u4e2a\u5b69\u5b50\u624b\u6301\u767d\u65d7\u7684\u9ad8\u8d28\u91cf\u89c6\u9891"} +{"id": "7001064", "video_name": "7950a00b-67ee-5ea2-9ac7-a2cd48878a9c", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5361\u901a\u5c0f\u5b69\u5728\u7eaf\u7eff\u8272\u7684\u80cc\u666f\u4e0a\u8df3\u821e\u3002"} +{"id": "7001065", "video_name": "8b3ee5ba-39af-5413-b03c-9354968d1fcd", "text": "\u4e00\u5339\u9a6c\u5728\u957f\u957f\u7684\u6d77\u6ee9\u4e0a\u5954\u8dd1\u3002"} +{"id": "7001066", "video_name": "fcb99d1a-3dd3-5287-8588-2960e960943e", "text": "\u4ee5\u8272\u5217\u58eb\u5175\u5bb3\u6015\u5730\u9003\u79bb\u5df4\u52d2\u65af\u5766\u5e74\u8f7b\u4eba\u3002"} +{"id": "7001067", "video_name": "267a5706-70d2-5405-966c-4542f0f94958", "text": "\u533b\u751f\u7531\u4e8e\u673a\u5668\u9519\u8bef\u800c\u6050\u614c\u3002"} +{"id": "7001068", "video_name": "3273c54b-a360-55d1-afc0-be09793531d5", "text": "\u7535\u8111\u5c4f\u5e55\u4e0a\u5f39\u51fa\u4e00\u4e2a\u7a97\u53e3\uff0c\u7528\u82f1\u8bed\u8bf4\u663e\u793a\u5668\u5c06\u8fdb\u5165\u7761\u7720\u6a21\u5f0f\uff0c\u8bf7\u7f16\u5199\u6b63\u786e\u7684\u82f1\u8bed\u6587\u672c\uff0c\u975e\u5e38\u8be6\u7ec6\uff0c\u6613\u8bfb"} +{"id": "7001069", "video_name": "a6aaa5ff-fe3c-524c-b450-a2d3b158ace8", "text": "\u6781\u81f4\u903c\u771f\u5f15\u64ce\u865a\u5e7b4K\uff0c\u7b80\u5355\u76843D\u6728\u5076\uff0c\u5728\u9ed1\u6697\u7684\u9634\u5f71\u4e0b\u7684\u767d\u8272\u80cc\u666f\u4e0a\uff0c\u4ee5\u8d85\u6162\u52a8"} +{"id": "7001070", "video_name": "362d672b-3f0e-57e8-a2ca-2278f76ede51", "text": "\u665a\u4e0a\u6cbf\u7740\u9ed1\u6697\u5c0f\u5df7\u5411\u524d\u8d70\uff0c\u8d70\u5411\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u548c\u7eff\u8272\u6469\u970d\u514b\u5934\u53d1\u7684\u5e74\u8f7b\u670b"} +{"id": "7001071", "video_name": "c866698e-1a0c-55a0-95c1-577b636ac3a0", "text": "\u70ed\u60c5\u7684\u5c0f\u9ec4\u4eba\u89d2\u8272\u5411\u76f8\u673a\u770b\u53bb\uff0c\u8df3\u8dc3\u7740\uff0c\u7a7f\u7740\u5927\u5b66\u670d\u88c5\uff0c\u80cc\u7740\u80cc\u5305\u548c\u575a\u56fa\u7684\u5f92\u6b65"} +{"id": "7001072", "video_name": "6af3dfa5-584f-5aac-9420-884c3af54fd3", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u96ea\u5730\u4e0a\u8df3\u821e\u3002"} +{"id": "7001073", "video_name": "43007b94-a8e5-5a85-b5dd-46d4776b866d", "text": "\u4e00\u4e2a\u8ff7\u4eba\u7684\u6751\u5e84\u5750\u843d\u5728\u8d77\u4f0f\u7684\u5c71\u4e18\u548c\u7ae5\u8bdd\u822c\u7684\u68ee\u6797\u4e4b\u95f4\u3002\u623f\u5c4b\u4e0a\u88c5\u9970\u7740\u4e94\u989c"} +{"id": "7001074", "video_name": "c57c3f6a-dc67-5e88-92d9-7b61388f3921", "text": "\u5370\u8c61\u6d3e\u7ed8\u753b\u98ce\u683c\u7684\u6e7f\u67f1\u3002"} +{"id": "7001075", "video_name": "a13a7338-0ee5-560d-a31c-1de6bc073c5e", "text": "\u5973\u4eba\u5413\u5f97\u8eb2\u5728\u6a71\u67dc\u91cc\uff0c\u548c\u5979\u56db\u5c81\u7684\u513f\u5b50\u5728\u4e00\u8d77\u3002"} +{"id": "7001076", "video_name": "28ef7157-549e-52a6-bd43-b4faa7ef3138", "text": "\u9ed1\u8272\u7684\u4e91\u5f69\u3002\u4fe1\u606f\uff1a\u795e\u7ecf\u8ba4\u77e5\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7001077", "video_name": "d85d2033-95b6-5a4d-b96d-58382ed23e9d", "text": "\u5b69\u5b50\u4eec\u56de\u5230\u4e86\u67f3\u6811\u6eaa\uff0c\u5fc3\u91cc\u5145\u6ee1\u4e86\u4ed6\u4eec\u7684\u4f1f\u5927\u5192\u9669\u7684\u56de\u5fc6\uff0c\u4ed6\u4eec\u77e5\u9053\u4ed6\u4eec\u5728\u73a9\u5177\u56fd\u7559\u4e0b"} +{"id": "7001078", "video_name": "1c5fbdbd-8986-52f9-a05c-5fead05f78da", "text": "\u8001\u4eba\u5728\u516c\u56ed\u8361\u79cb\u5343\uff0c4K\uff0c\u6e05\u6670\uff0cArri Alexa\uff0c\u666f\u6df1\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "7001079", "video_name": "39de30fb-1df3-5556-a465-e4a73ddd770b", "text": "\u8001\u9f20\u7ee7\u7eed\u5077\u98df\uff0c\u5373\u4f7f\u98df\u7269\u88ab\u653e\u5728\u6302\u5728\u5c4b\u9876\u4e0a\u7684\u9676\u7f50\u91cc\u3002"} +{"id": "7001080", "video_name": "0410c79d-0fe5-5e6b-9fc3-f16441de69a5", "text": "\u4e54\u00b7\u62dc\u767b\u88ab2\u540d\u8b66\u5bdf\u62bc\u9001\u4e0a\u8b66\u8f66\u3002\u4e54\u00b7\u62dc\u767b\u88ab\u94d0\u4e0a\u4e86\u624b\u94d0\u3002"} +{"id": "7001081", "video_name": "99fcfd9f-dd7e-5447-b147-9441b14fef0c", "text": "\u610f\u601d\uff1a\u610f\u5927\u5229\u9762\u50f5\u786c\u5730\u6446\u51fa\u59ff\u52bf\uff0c\u5bf9\u9762\u5305\u548c\u9ec4\u6cb9\u9020\u62101\u6b21\u6bc1\u706d\u6027\u6253\u51fb\uff0c\u4f46\u9762\u5305\u53cd\u51fb\uff0c\u8dcc\u5012"} +{"id": "7001082", "video_name": "e4d9252d-90c5-54b6-820e-d71e5a23d688", "text": "\u6211\u4e0d\u77e5\u9053\u8be5\u8eb2\u5230\u54ea\u91cc\u624d\u80fd\u907f\u5f00\u70e6\u4eba\u7684\u98ce\u3002 \n\nSource sentence: Can you give me directions to the nearest gas station? \n\u8bf7\u95ee\u4f60\u80fd\u544a\u8bc9\u6211"} +{"id": "7001083", "video_name": "bef2940a-e666-5ee0-8591-79f946da2d7f", "text": "\u65e5\u98df\u548c\u6708\u98df\u3002\u8ba9\u5b83\u53d8\u6697\u3002"} +{"id": "7001084", "video_name": "7e99d111-c732-51e6-ad6f-f784655e93f5", "text": "\u7ea2\u8272\u7684\u725b\u5728\u7eff\u8272\u7684\u5c4f\u5e55\u4e0a\u3002"} +{"id": "7001085", "video_name": "cba00ac6-022d-5004-9764-f2337745154c", "text": "\u4e00\u53ea\u732b\u5411\u76f8\u673a\u4eb2\u543b\u3002"} +{"id": "7001086", "video_name": "9a9a8ac4-2b8a-5fc1-b7bc-6388bb70703f", "text": "\u6ce2\u97f3747\u5728\u7a7a\u4e2d\u7206\u70b8\u3002"} +{"id": "7001087", "video_name": "392ab2af-2126-5a66-835f-165e71933f2c", "text": "\u4e00\u4e2a\u6709\u591a\u4e2a\u624b\u81c2\u7684\u571f\u8c46\u8df3\u626d\u6446\u821e\u3002"} +{"id": "7001088", "video_name": "45dcc172-c33e-5b73-bd9e-a3beed5e4d48", "text": "\u4e00\u500b\u660f\u6697\u7684\u8eca\u5167\u3001\u96e8\u6c34\u5728\u64cb\u98a8\u73bb\u7483\u4e0a\u6d41\u6dcc\u3001\u5100\u9336\u677f\u71c8\u5149\u5fae\u5fae\u767c\u4eae"} +{"id": "7001089", "video_name": "f39706b5-aebf-562d-ba8c-d76ca3f6f078", "text": "\u5f3a\u5927\u7684\u6e38\u4fa0\u4eec\u56db\u4eba\u4e0b\u68cb\u3002"} +{"id": "7001090", "video_name": "32c61f7b-8522-5c40-bb19-44874a008bce", "text": "\u7537\u5b50\u6d4b\u8bd5\u4e86\u4e00\u4e2a\u4e92\u52a8\u4e8c\u6218\u6a21\u62df\u5668\uff0c\u5e76\u5bf9\u5176\u6f5c\u529b\u5370\u8c61\u6df1\u523b\u3002"} +{"id": "7001091", "video_name": "f152535b-52a2-5e5b-bb09-3d03ae9cd094", "text": "\u4e00\u4e2a\u5177\u8eab\u5316\u4eba\u5de5\u667a\u80fd\u7684\u53ef\u89c6\u5316\u8868\u73b0\u3002"} +{"id": "7001092", "video_name": "78b28df7-31ae-513b-b6e4-c6ae60ad7403", "text": "\u591c\u665a\u5728\u8d1d\u514b\u8f9b\u65af\u57fa\u7684\u6b7b\u68ee\u6797\u4e2d\u653e\u5927\u8424\u706b\u866b\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u63d0\u683c\u5229\u8328\u7684\u8c37\u7269"} +{"id": "7001093", "video_name": "529c3cf2-4702-5d3d-bd42-3672848eb958", "text": "\u9ec4\u91d1\u3001\u767d\u94f6\u3001\u5b9d\u77f3\u548c\u73cd\u73e0\u7684\u8d27\u7269"} +{"id": "7001094", "video_name": "66a92d26-b612-5e3d-a5cc-a1ed9d0b6bee", "text": "\u6355\u6349Nimmo\u8dc3\u5165\u7a7a\u4e2d\u65f6\u523b\uff0c\u521b\u9020\u51fa\u4e00\u7247\u8272\u5f69\u7f24\u7eb7\u7684\u753b\u9762\u3002"} +{"id": "7001095", "video_name": "51e8d369-b467-5944-b1fa-0ab459371570", "text": "\u57281950\u5e74\u4ee3\u7684\u7535\u5f71\u4e2d\uff0c\u4e00\u4f4d\u5973\u6027\u6b63\u5728\u505a\u745c\u4f3d\uff0c\u7ad9\u5728\u6218\u58eb\u4e00\u5f0f\u7684\u59ff\u52bf\u4e2d\u79fb\u52a8\u7740\u7ad9\u7acb\u3002"} +{"id": "7001096", "video_name": "7fbd7197-8ba5-513e-85f9-b9062fc943c8", "text": "\u4e00\u4e2a\u4eba\u7ad9\u5728\u5c71\u9876\u8fb9\u7f18\uff0c\u671d\u7740\u5c71\u8c37\u770b\uff0c\u8868\u60c5\u975e\u5e38\u5f00\u5fc3\u3002\u7537\u5b50\u7684\u80cc\u5f71\u3002"} +{"id": "7001097", "video_name": "fea35818-08c0-5b0d-b281-2a5b7b6e8083", "text": "\u4e00\u7fa4\u732b\u5934\u9e70\u5728\u7530\u91ce\u4e0a\u6ed1\u7fd4\u3002"} +{"id": "7001098", "video_name": "77c21a16-1509-5241-9e25-b80d8d8ee021", "text": "\u4e00\u5e45\u573a\u666f\uff0c\u524d\u9762\u662f\u4e2a\u4e2d\u7b49\u8eab\u9ad8\u7684\u7537\u4eba\uff0c\u540e\u9762\u8ddf\u7740\u4e94\u4e2a\u5de8\u4eba\u3002"} +{"id": "7001099", "video_name": "ecea5f19-6823-5106-8ad7-f487d0a1b93c", "text": "\u5728\u96e8\u5929\u91cc\uff0c\u4e00\u4e2a\u5b69\u5b50\u5728\u6d77\u8fb9\u7684\u73bb\u7483\u623f\u5b50\u91cc\u751f\u706b\u53d6\u6696\uff0c\u770b\u7740\u5916\u9762\u7684\u666f\u8272\u3002"} +{"id": "7001100", "video_name": "04463bb5-b4a5-54f8-a6a6-c24b4d9439b4", "text": "\u4e00\u4f4d\u6709\u7fc5\u8180\u7684\u7537\u4eba\u4ece\u5c71\u4e0a\u8d77\u98de\uff0c\u9633\u5149\u707f\u70c2\u3002"} +{"id": "7001101", "video_name": "76caba85-ca2d-515f-af0e-b4f2c9765c0c", "text": "\u4eba\u8d70\u8fc7\u7cbe\u7ec6\u7684\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u300a\u5343\u4e0e\u5343\u5bfb\u300b\u7684\u57ce\u9547\u3002"} +{"id": "7001102", "video_name": "5af3f8ff-07b0-5a3f-b39f-f603245856c8", "text": "\u6cd5\u7f57\u7fa4\u5c9b\u7ef4\u4eac\u4eba\u5728\u5c71\u4e0a\u6f2b\u6b65\uff0c\u4fef\u77b0\u5927\u6d77\u3002"} +{"id": "7001103", "video_name": "ec979db0-7e8f-5128-aa10-7fcda43fd7a3", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u6cd5\u56fd\u8857\u533a\u9605\u8bfb\u4e66\u7c4d\u7684\u52a8\u753b\u7247\u3002"} +{"id": "7001104", "video_name": "3385ac1d-a44c-501f-a62e-7a07f6369a28", "text": "\u8fc7\u5ea6\u4f9d\u8d56\u4eba\u5de5\u667a\u80fd\u7684\u540e\u679c\uff0c\u5c06\u5bfc\u81f4\u793e\u4f1a\u6fd2\u4e8e\u5d29\u6e83\u3002\u901a\u8fc7\u7535\u5f71\u822c\u7684\u98ce\u683c\uff0c\u8fd9\u4e2a\u89c6\u89c9\u6548\u679c\u5c06\u5bf9"} +{"id": "7001105", "video_name": "2b7f800d-9d2c-5bbd-a713-4860b11548c1", "text": "\u571f\u58e4\u5e72\u71e5\u7684\u6c99\u6f20\u9996\u5148\u662f\u8352\u6f20\u3002"} +{"id": "7001106", "video_name": "b18d5c7d-b60e-5d5e-9e4f-cfc94edbd1ae", "text": "\u8bfa\u6bd4\u5854\u8bd5\u56fe\u7a7f\u8fc7\u6ee1\u662f\u96ea\u7684\u623f\u5b50\uff0c\u6ed1\u7a3d\u5730\u6ed1\u884c\u3002"} +{"id": "7001107", "video_name": "2d518bb1-09a1-5faa-a1a4-be146cc03788", "text": "\u6ce2\u599e\u9c7c\u5728\u6c34\u4e2d\u6e38\u52a8\uff0c\u5bab\u5d0e\u9a8f\u7684\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "7001108", "video_name": "316ea7e2-ed61-58b5-be6a-f3ae5f668f9b", "text": "\u4e00\u8f86\u6c7d\u8f66\u5012\u8f66\u5728\u4e00\u4e2a\u6751\u5e84\u623f\u5c4b\u524d\u7684\u8def\u4e0a\u884c\u9a76\u3002"} +{"id": "7001109", "video_name": "76789730-5fc5-5c22-9287-c43bea85d1d3", "text": "\u60f3\u8c61\u4e00\u4e0b\u9ab7\u9ac5\u3001\u4fee\u5973\u3001\u6469\u6258\u8f66\u5934\u76d4\u3001\u54e5\u7279\u5f0f\u3001\u6469\u6258\u8f66\u4e3b\u9898\u80cc\u666f\u3001\u8d85\u5199\u5b9e\u7684\u3002"} +{"id": "7001110", "video_name": "29baa0f8-d5d0-5a8e-b31c-dff98de8b730", "text": "\u4e8e\u662f\uff0c\u5979\u51b3\u5b9a\u8e0f\u4e0a\u4e00\u573a\u73af\u6e38\u4e16\u754c\u7684\u5192\u9669\uff0c\u524d\u5f80\u4e00\u4e2a\u9065\u8fdc\u7684\u5c9b\u56fd\uff0c\u5411\u7740\u9065\u8fdc\u7684\u5bcc\u58eb"} +{"id": "7001111", "video_name": "b307332f-46de-5629-99d8-7e564799b50b", "text": "\u95ea\u7535\u661f\u8230\u5728\u6d77\u6d0b\u4e2d\u7ffb\u6eda\uff0c\u98ce\u66b4\u4e0d\u65ad\u65cb\u8f6c\uff0c\u672a\u6765\u6d77\u76d7\u4eec\u7fe9\u7fe9\u8d77\u821e\u3002"} +{"id": "7001112", "video_name": "dd4e1fd6-1826-5ecc-9c47-b60d41745cb9", "text": "\u60f3\u8981\u751f\u6210\u4e00\u5e45\u9ad8\u8d28\u91cf\u7684\u53e4\u7f57\u9a6c\u98ce\u666f\u753b\uff0c\u63cf\u7ed8\u7f57\u9a6c\u4eba\u3002"} +{"id": "7001113", "video_name": "6f5a508b-55f6-542a-9697-8ecab5c696fc", "text": "\u4e00\u540d\u5973\u5b50\u7ad9\u5728\u4e00\u53ea\u5de8\u9f99\u7684\u811a\u4e0b\u3002"} +{"id": "7001114", "video_name": "e5593c29-30fc-5a7f-97b9-ba692805140f", "text": "\u8bf7\u7ed9\u6211\u5236\u4f5c\u4e00\u4e2a\u4ecb\u7ecd\u7247\uff0c\u65f6\u957f40\u79d2\uff0c\u8bb2\u8ff0\u5982\u679c\u6bcf\u4e2a\u4eba\u90fd\u559d\u5927\u9ebb\u6cb9\uff0c\u6211\u4f1a\u5bf9\u4e16\u754c\u505a\u51fa\u54ea\u4e9b\u6539\u53d8\u3002"} +{"id": "7001115", "video_name": "84c70e93-d76f-5d2e-9d71-ef3249d89b15", "text": "\u9ed1\u8272\u6c99\u6ee9\uff0c\u9ed1\u8272\u706b\u5c71\uff0c\u7ea2\u8272\u7194\u5ca9\u4ece\u4e2d\u6d41\u51fa\u3002\u6d88\u606f\uff1aTsareva\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7001116", "video_name": "3555a038-c644-5e99-a809-141e1a2697ca", "text": "\u5934\u53d1\u98d8\u52a8\uff0c\u80cc\u666f\u65cb\u8f6c\uff0c\u805a\u5149\u706f\u9876\u90e8\u3002"} +{"id": "7001117", "video_name": "3dd3a824-b292-58d0-9572-d145fa1d1475", "text": "\u4e00\u652f\u6e38\u884c\u961f\u4f0d\u5728\u7a7a\u4e2d\u98de\u884c\u7684\u7535\u5f71\u822c\u955c\u5934"} +{"id": "7001118", "video_name": "df88cc33-c45d-5087-95a0-df73c159af56", "text": "\u4fe1\u606f\uff1a\u57c3\u91cc\u514b\u68ee\u5c0f\u5b66\u7684\u4fe1\u606f\uff0c\u7403\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7001119", "video_name": "452b8e9e-40bd-5aff-99da-6d14fb7de7bd", "text": "\u4f01\u9e45\u4ece\u5c71\u4e0a\u98de\u8dc3\u5230\u5929\u7a7a\u4e2d\u7684\u7279\u6280\u52a8\u4f5c\u573a\u666f\uff0c\u51fa\u73b0\u5728\u65b0\u7535\u5f71\u300a\u5feb\u4e0e\u6bdb\u8338\u8338\u7684\u300b\u4e2d\uff0c\u4e3b\u6f14\u4f01\u9e45"} +{"id": "7001120", "video_name": "62a59a4e-e93a-58a4-bdb0-b664ddbb7ac3", "text": "\u4e00\u540d\u5973\u6027\u6ce8\u89c6\u7740\u6444\u50cf\u673a\uff08\u7535\u5f71\u3001\u8d5b\u535a\u670b\u514b\u3001\u84b8\u6c7d\u3001\u9713\u8679\uff09"} +{"id": "7001121", "video_name": "ecb3250c-cf0c-53d9-9c2b-9eb8095e86b7", "text": "\u91d1\u94b1\u589e\u957f\u7684\u89c6\u89c9\u8868\u73b0\uff0c\u5982\u540c\u5e26\u6709\u8d27\u5e01\u53f6\u5b50\u7684\u6811\u4e00\u822c\u3002"} +{"id": "7001122", "video_name": "7000557a-866d-5b8b-ae77-28b4fe601689", "text": "\u6211\u60f3\u8981\u4e00\u4e2a\u5377\u53d1\u7684\u5c0f\u5973\u5b69\u8138\uff0c\u5634\u5507\u4e0a\u6302\u7740\u6e29\u67d4\u7684\u5fae\u7b11\uff0c\u8138\u988a\u4e24\u4fa7\u6709\u9152\u7a9d\uff0c"} +{"id": "7001123", "video_name": "f9382b79-121f-5c09-842a-c1c32969df65", "text": "\u4e00\u4f4d\u8001\u5987\u4eba\u5728\u68ee\u6797\u91cc\u6f2b\u6b65\u3002"} +{"id": "7001124", "video_name": "95abaf73-785f-5a9b-9e32-b452d6752a41", "text": "\u4ee5\u8f93\u51fa\u6570\u5b5720\u5f00\u59cb\uff0c\u7136\u540e\u7ee7\u7eed\u8f93\u51fa\u540e\u7eed\u6570\u5b57\uff0c\u6bcf\u6b21\u5c06\u4e0a\u4e00\u4e2a\u6570\u5b57\u52a04\u3002\u5c06\u8fd9\u4e9b\u6570\u5b57\u4f5c\u4e3a\u6587\u672c\u8f93\u51fa\uff0c\u6a21\u62df\u795e\u79d8\u7684\u4ece\u9ed1\u6697\u4e2d"} +{"id": "7001125", "video_name": "4d70de67-fbfa-5b4e-bab7-df2cc679b9b5", "text": "\u6444\u50cf\u673a\u5411\u524d\u79fb\u52a8\u5728\u65e7\u4e66\u4e0a\u3002\u7535\u5f71\u822c\u7684\u89c6\u9891\u3002"} +{"id": "7001126", "video_name": "9540edef-4f0c-5c1c-82e0-fc6b91db33e0", "text": "\u4e00\u8f86\u6cd5\u62c9\u5229\u6b63\u5728\u4e61\u95f4\u9ad8\u901f\u884c\u9a76\u3002"} +{"id": "7001127", "video_name": "c5d9bd5e-2b08-5cf2-855c-e2edd75f7f6f", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u7cbe\u7075\u5854\u7684\u80cc\u666f\u4e0a\u753b\u4e86\u4e00\u53ea\u72ee\u5b50\u3002"} +{"id": "7001128", "video_name": "0d98c48b-d367-58b2-81f6-f27386987651", "text": "\u4e00\u4f4d\u8eab\u7740\u767d\u8272\u76d4\u7532\u7684\u5973\u6218\u58eb\uff0c\u5728\u592a\u7a7a\u73af\u5883\u4e2d\u51dd\u89c6\u7740\u524d\u65b9\uff0c\u6cea\u6c34\u6ed1\u843d\uff0c\u5468\u56f4\u661f\u661f\u548c\u661f\u7cfb"} +{"id": "7001129", "video_name": "781349b2-80b9-567a-a887-1b318327feae", "text": "\u963f\u62c9\u4f2f\u9a91\u58eb\u963f\u5df4\u65af\u00b7\u5361\u5c14\u5df4\u62c9\u72ec\u81ea\u5bf9\u6297\u4e00\u652f\u519b\u961f\u3002"} +{"id": "7001130", "video_name": "71a14fe0-20ee-5e13-84b5-6c6f721b4803", "text": "\u7e41\u5fd9\u7684\u57ce\u5e02\u4ea4\u901a\uff0c4k\u9ad8\u6e05\u5206\u8fa8\u7387\uff0c\u5145\u6ee1\u6d3b\u529b\u7684\u57ce\u5e02\uff0c\u6c34\u6676\u822c\u7684\u6e05\u6670\u5ea6\u3002"} +{"id": "7001131", "video_name": "1d432f6c-7c93-5588-a6bb-4becd047769a", "text": "\u5728\u4e00\u4e2a\u6e29\u99a8\u7684\u5bb6\u5ead\u53a8\u623f\u91cc\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u7ad9\u5728\u684c\u5b50\u65c1\u8ba4\u771f\u5730\u6574\u7406\u9910\u5177\u548c\u76d8\u5b50\u3002\u4ed6\u7684\u7236\u6bcd"} +{"id": "7001132", "video_name": "16fd0834-7b48-54f0-b0dd-677fa0a00d56", "text": "\u8759\u8760\u4fa0\u5f39\u5409\u4ed6\uff0c\u663e\u771f\u5bb9\uff0c\u7535\u5f71\u89c6\u89d2"} +{"id": "7001133", "video_name": "524f5d7c-c41b-53f4-9ccb-21a9e312c547", "text": "\u4ed6\u4eec\u7684\u9053\u8def\u5f15\u9886\u4ed6\u4eec\u6765\u5230\u4e00\u6761\u95ea\u95ea\u53d1\u5149\u7684\u6cb3\u6d41\uff0c\u88ab\u4e00\u4f4d\u53cb\u597d\u7684\u6c34\u7075\u5b88\u62a4\u7740\uff0c\u540d\u53eb\u6c34\u74f6"} +{"id": "7001134", "video_name": "3e87d610-ebb2-5a57-bbbf-ad7238b2b05b", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u4e2d\u56fd\u7537\u5b50\u8dea\u5728\u5730\u4e0a\uff0c\u4ed6\u7684\u7236\u6bcd\u53bb\u5e2e\u4ed6\u7ad9\u8d77\u6765\u3002"} +{"id": "7001135", "video_name": "88aa1040-e411-51d0-a8b0-7ed34d3eb39c", "text": "\u4e00\u4e2a\u9b54\u672f\u5e08\u7528\u4e00\u4e2a\u82f9\u679c\u5236\u9020\u4e86\u4e00\u4e2a\u5e7b\u89c9\u3002"} +{"id": "7001136", "video_name": "aaa341ed-6c01-579f-8822-f60fedf26fdd", "text": "\u6bdb\u6bdb\u8c61\u5728\u5965\u5730\u5229\u963f\u5c14\u5351\u65af\u5c71\u666f\u89c2\u4e0a\u6536\u96c6\u5de8\u5927\u7684\u91d1\u5e01\u3002"} +{"id": "7001137", "video_name": "adece5a3-3cd2-537c-b329-290ac2cbc791", "text": "\u592a\u7a7a\u8ba1\u5212\u201c\u65c5\u884c\u8005\u53f7\u201d\u79bb\u5f00\u6211\u4eec\u7684\u592a\u9633\u7cfb\u3002"} +{"id": "7001138", "video_name": "c996d96c-9e22-5c62-8b3a-9f4fa80daab2", "text": "\u666e\u901a\u4eba\u8fdb\u5165\u963f\u4e9a\u4e4c\u65af\u5361\u9886\u57df\u3002"} +{"id": "7001139", "video_name": "1eb69340-18fb-5b72-aa9c-fb2ea11d6526", "text": "\u5de8\u578b\u4f01\u9e45\u7f16\u7a0b\u6467\u6bc1\u4e00\u680b\u5efa\u7b51\u3002"} +{"id": "7001140", "video_name": "a51efb02-aff8-5894-ad5d-9f1b93e88935", "text": "\u4f0a\u9686\u00b7\u9a6c\u65af\u6b63\u5728\u9a91\u9a6c\u3002"} +{"id": "7001141", "video_name": "2efc9c16-f55c-5e88-b503-98e0db8503f4", "text": "\u827a\u672f\u7535\u5f71\u573a\u666f\u5c55\u73b0\u4e86\u6d1e\u5ead\u5bfa\u4e2d\u7206\u70b8\u7684\u6c34\u96d5\u50cf\u3001\u673a\u5668\u4eba\u96d5\u50cf\uff0c\u9ed1\u767d\u753b\u9762\uff0c\u7535\u5f71\u9897\u7c92\u611f\uff0c"} +{"id": "7001142", "video_name": "69874b5c-a3b7-5ee7-8d56-494d15a2d381", "text": "\u4e00\u53ea\u68d5\u8272\u7684\u7eb8\u676f\u5012\u6263\u5728\u684c\u5b50\u4e0a\u3002"} +{"id": "7001143", "video_name": "ae47e0cd-2aba-51dc-87ab-a1889726e1ff", "text": "\u4e00\u4e2a\u73a9\u5177\u8f66\u5728\u6e38\u620f\u5ba4\u91cc\u76843D\u5361\u901a\u52a8\u753b"} +{"id": "7001144", "video_name": "a9aa0478-4684-550d-890a-33b9c570fb55", "text": "\u5361\u901a\u5723\u8bde\u96ea\u4eba\u745e\u58eb\u6253\u5f00\u793c\u7269\uff0c\u773c\u775b\u7741\u5f97\u5927\u5927\u7684\uff0c\u7b11\u58f0\u50cf\u94c3\u58f0\u4e00\u6837\u54cd\u4eae\uff01\u5728\u6811\u4e0b"} +{"id": "7001145", "video_name": "83308ce9-5dff-567f-9e19-3425cc92e6d2", "text": "\u8db3\u7403\u8fd0\u52a8\u5458\u5728\u64cd\u573a\u4e2d\u592e\u3002\u674e\uff08\u5b57\u4f53\uff1a\u65e0\u886c\u7ebf\u4f53\uff09"} +{"id": "7001146", "video_name": "780c173d-e9a4-52fd-9946-25c9e733c8bf", "text": "\u4e00\u4e2a\u539f\u59cb\u7684\u5b9e\u4f53\u4f38\u51fa\u624b\u6765\u91ca\u653e\u5de8\u5927\u7684\u529b\u91cf\u3002"} +{"id": "7001147", "video_name": "dde8d05c-59c1-5eb6-a5c0-f6e714751f74", "text": "\u4e24\u4e2a\u77ed\u53d1\u68d5\u8272\u53d1\u578b\u53ef\u7231\u7684\u5973\u5b69\u5728\u623f\u95f4\u91cc\u7761\u524d\u4e89\u5435\u6253\u95f9\uff0c\u63d2\u56fe\u3001\u7535\u5f71\u822c\u7684\u903c\u771f\u5361\u901a"} +{"id": "7001148", "video_name": "4c45127f-ef81-5482-a89e-e11a01fc3054", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u6b63\u5728\u900f\u660e\u7684\u8327\u91cc\u5f39\u7740\u7535\u5409\u4ed6\uff0c\u7425\u73c0\u8272\u7684\u706f\u5149\u4e0b\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c4k\u3002"} +{"id": "7001149", "video_name": "203d4270-74d3-5382-b79d-a4a0c694e667", "text": "\u88ab\u795e\u79d8\u68ee\u6797\u5305\u56f4\u7684\u6751\u5e84\u3002\u5341\u51e0\u5c81\u7684\u7537\u5b69Athen\u548c\u5973\u5b69Lily\u3002\u4ed6\u4eec\u662f\u5192\u9669\u5bb6\u3002\u4ed6\u4eec\u6b63\u5728\u8c08"} +{"id": "7001150", "video_name": "10e5770e-221b-5097-a231-c6e7772bcf04", "text": "\u59d0\u59d0\u6234\u7740\u7c89\u8272\u53d1\u5e26\u7275\u7740\u59b9\u59b9\uff0c\u59b9\u59b9\u6234\u7740\u84dd\u8272\u53d1\u7b8d\uff0c\u50cf\u6c34\u5f69\u52a8\u753b\u4e00"} +{"id": "7001151", "video_name": "43d28869-7f6c-5379-bda9-e6c5c8f65e9f", "text": "Source sentence: \u8001\u9e73\u8349\u7684\u53f6\u7247\u751f\u957f"} +{"id": "7001152", "video_name": "aa5a02e3-243e-5da0-886f-847225eb9abe", "text": "\u7535\u7f06\u548c\u7535\u7ebf\u873f\u8712\u7a7f\u8fc7\u5730\u677f\uff0c\u8fde\u63a5\u5404\u79cd\u79d1\u5b66\u8bbe\u5907\uff0c4k\u3001\u7535\u5f71\u822c\u7684\u80cc\u666f\u3001\u79d1\u5e7b\u3002"} +{"id": "7001153", "video_name": "1074a7c4-1daf-51b5-996b-b90db9de66ae", "text": "\u5411\u65e5\u8475\u653e\u5927\uff0c\u7279\u5199\uff0c\u65e5\u51fa\uff0c\u65f6\u95f4\u6d41\u901d"} +{"id": "7001154", "video_name": "0883b610-56c5-5857-9e07-b363c5d27197", "text": "\u6770\u745e\u00b7\u52a0\u897f\u4e9a\u9a91\u9a6c\u5f39\u5409\u4ed6\u3002\n\nSource sentence: My favorite color is blue.\n\u6211\u6700\u559c\u6b22\u7684\u989c\u8272\u662f\u84dd\u8272\u3002"} +{"id": "7001155", "video_name": "3f5d53e3-3f45-5806-80f6-3cb90fe42ce4", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u5e7f\u573a\u4e2d\u592e\u8df3\u821e\u3002\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7001156", "video_name": "396f2c46-d878-5572-9270-58b290737b92", "text": "\u73a9\u7535\u5b50\u6e38\u620f\u65f6\uff0c\u4e00\u4e2a\u5e74\u8f7b\u7684\u5149\u5934\u82f1\u56fd\u7537\u5b50\u5e26\u7740\u80e1\u987b\u6124\u6012\u5730\u5c16\u53eb\u7740\uff0c\u620f\u5267\u6027\u7684\u706f"} +{"id": "7001157", "video_name": "f317648f-9f6d-5c32-ac1e-199cd41cf3cd", "text": "\u798f\u7279\u5609\u5e74\u534e\uff0c\u52a8\u611f\u8fd0\u52a8\uff0c\u4ece\u540e\u65b9\u89d2\u5ea6\u62cd\u6444\uff0c\u798f\u7279\u5609\u5e74\u534e\uff0c\u767d\u8272\uff0c\u6f02\u79fb\u7740\u7a7f\u8fc7\u5c18\u571f\uff0c"} +{"id": "7001158", "video_name": "708370c4-1750-5e3d-855d-af1145f168ed", "text": "\u82b1\u56ed\u91cc\u7684\u590d\u53e4\u62cd\u7acb\u5f97\u7167\u7247"} +{"id": "7001159", "video_name": "7dc0cbed-22a3-57e0-b546-f6c1b2cc0c18", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u5e26\u7740\u94f6\u8272\u5934\u53d1\u7684\u82f1\u4fca\u7238\u7238\u7728\u773c\u5e76\u5fae\u7b11\u3002\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u5e26\u7740\u94f6\u8272\u5934\u53d1\u7684\u82f1"} +{"id": "7001160", "video_name": "a6a11620-507f-5266-8b68-2c705e4009c8", "text": "\u786c\u8d28\u673a\u5668\u4eba\u4e0e\u53e6\u4e00\u4e2a\u786c\u8d28\u673a\u5668\u4eba\u640f\u6597\u3002"} +{"id": "7001161", "video_name": "8115e347-8bdb-505e-945c-8be2b51fb4b2", "text": "\u51fa\u73b0\u4e86\u4e00\u4e2a\u5408\u4e0a\u7684\u4e66\u6389\u843d\uff0c\u51e0\u9875\u7eb8\u79fb\u52a8\uff0c\u4e00\u675f\u5149\u7ebf\u51fa\u73b0\uff0c\u963f\u8fde\u8428\u6587\u5b66\u793e\u51fa\u73b0\uff0c\u53d1\u51fa\u4e00\u58f0\u660e\u4eae\u7684\u58f0"} +{"id": "7001162", "video_name": "dbe7a074-5503-5bbd-9965-c76c80778210", "text": "\u6674\u6717\u7684\u591c\u7a7a\u5e03\u6ee1\u95ea\u70c1\u7684\u661f\u661f\uff0c\u653e\u5927 (\u5b57\u4f53\uff1a\u73b0\u4ee3) \n\u4fe1\u606f\uff1apiktxurs"} +{"id": "7001163", "video_name": "5de5e74e-5d14-5033-bba0-8e7f3e94676e", "text": "\u7f8e\u4e3d\u7684\u5149\u6ce2\u4ece\u6df1\u5c42\u6f5c\u610f\u8bc6\u7684\u5927\u8111\u4f20\u9012\u4fe1\u606f\uff1a\u6574\u4f53\u5e73\u8861\u3002"} +{"id": "7001164", "video_name": "2d30eec4-dea0-5ebf-8df1-3b476c34355f", "text": "\u521b\u9020\u4e00\u4e2a\u52a8\u6001\u58c1\u7eb8\uff0c\u5c4f\u5e55\u548c\u63a7\u5236\u53f0\u70b9\u4eae\u7740\u590d\u53e4\u6e38\u620f\u3002"} +{"id": "7001165", "video_name": "366ab704-55fc-5401-84eb-496d6a56964b", "text": "\u6ca1\u6709\u6bc1\u5bb9\u7684\u5e74\u8f7b\u5973\u5b69\uff0c\u5168\u8eab\u7a7f\u7740\u745c\u4f3d\u670d\u7ad9\u7acb\u3002"} +{"id": "7001166", "video_name": "5f993819-e880-5eda-beed-dd6d1c009849", "text": "\u7279\u5199\u955c\u5934\u63ed\u793a\u4e86\u7834\u788e\u7684\u73bb\u7483\u3001\u7ffb\u8f6c\u7684\u8f66\u8f86\u3001\u5012\u584c\u7684\u6865\u6881\u548c\u66f2\u6298\u7684\u788e\u7247"} +{"id": "7001167", "video_name": "e6168420-c925-557a-89d7-2bc3ee7b9844", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u591c\u665a\u7684\u96e8\u4e2d\u8d70\u8def\uff0c\u770b\u5411\u76f8\u673a\uff0c\u4f7f\u752835\u6beb\u7c73\u955c\u5934\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "7001168", "video_name": "04126898-3714-567e-8ff1-434f5b6509ae", "text": "\u592a\u9633\u5347\u8d77\u5728\u5e73\u9759\u7684\u96fe\u6d77\u4e0a\u3002"} +{"id": "7001169", "video_name": "b5358888-33ed-51b8-aded-96797ca2afb4", "text": "\u5728\u4e00\u4e2a\u5b81\u9759\u7684\u5bfa\u9662\u91cc\uff0c\u85cf\u4f20\u4f5b\u6559\u50e7\u4fa3\u4eec\u7528\u8ff7\u4eba\u800c\u5171\u9e23\u7684\u6cbb\u6108\u548c\u7cbe\u795e\u8d85\u8d8a\u7684\u548f\u5531"} +{"id": "7001170", "video_name": "bda76ee7-45be-5c0a-9214-dd963e532764", "text": "\u4e00\u4f4d\u7a7f\u7740\u6bd4\u57fa\u5c3c\u5728\u6d77\u6ee9\u4e0a\u6f2b\u6b65\u7684\u6f02\u4eae\u4e2d\u56fd\u5973\u5b69\u3002"} +{"id": "7001171", "video_name": "993075ab-1c3d-5b2f-8997-7baa692c98aa", "text": "\u73b0\u5b9e\u7684\u91d1\u5c5e\u3001\u571f\u3001\u706b\u3001\u7a7a\u6c14\u9f99"} +{"id": "7001172", "video_name": "804b55a5-e7f5-5a1c-8173-eec5779f6640", "text": "\u8001\u65e7\u9ed1\u6697\u7684\u623f\u5b50\u5728\u591c\u665a\u6050\u6016\u5730\u52a8\u4e86\u8d77\u6765\u3002"} +{"id": "7001173", "video_name": "5eaa00e2-f13b-53b5-8785-0b687c8fd64a", "text": "\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\u8d70\u8def\uff0c\u540c\u65f6\u4f7f\u7528\u767d\u8272\u9888\u6795\u7f13\u89e3\u5979\u7684\u9888\u90e8\u75bc\u75db\u3002"} +{"id": "7001174", "video_name": "57ca05e1-6541-5f1b-9d51-c4d4b76d0523", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\u5723\u8bde\u8001\u4eba\u7ad6\u8d77\u5927\u62c7\u6307\uff0c\u65f6\u9ae6\u73b0\u4ee3\u7684GTA\u98ce\u683c\uff0c\u80dc\u5229\u6807\u5fd7\u3002"} +{"id": "7001175", "video_name": "2fc0ac8f-85ca-5826-8cf5-61a03993108c", "text": "\u8bbe\u8ba1\u4e00\u4e2a\u5177\u6709\u5317\u6b27\u4e3b\u9898\u3001\u690d\u7269\u3001\u5e26\u6709\u7535\u8111\u7684\u4e66\u684c\u548c\u4e00\u4e2a\u5973\u5b69\u6b63\u5728\u5de5\u4f5c\u7684\u5367\u5ba4\u3002"} +{"id": "7001176", "video_name": "5a68113f-4d37-53a7-b7e9-e553fb389b4e", "text": "\u5973\u4eba\u8df3\u8fdb\u4e00\u6c60\u68c9\u82b1\u7cd6\u548c\u82b1\u6735\u3002"} +{"id": "7001177", "video_name": "444d6e06-3e1e-521c-9eab-7716db28d344", "text": "\"\u51b7\u9762\" \u53f2\u8482\u592b\u00b7\u5965\u65af\u6c40\u548c\u9053\u6069\u00b7\u7ea6\u7ff0\u900a\u4e92\u76f8\u640f\u6597\uff0c\"\u51b7\u9762\" \u53f2\u8482"} +{"id": "7001178", "video_name": "33606862-29f8-5bca-9b7d-f4ea503c8067", "text": "\u5728\u7535\u8111\u4e0a\u8d5a\u94b1\u7684\u4eba\u662f\u4e00\u4e2a\u8282\u594f\u5236\u4f5c\u4eba\u3002"} +{"id": "7001179", "video_name": "e39043c2-c237-5e8b-9872-4197afb5701c", "text": "\u9ad8\u7ea7\u5b9a\u5236\u827a\u672f\u88c5\u9970\u98ce\u683c\u7d27\u8eab\u80f8\u8863\u7684\u56fe\u50cf\uff0c\u94dc\u8272\u548c\u7fe1\u7fe0\u91cd\u73e0\u9970\u3002"} +{"id": "7001180", "video_name": "68fcffae-d1b8-5a0b-84dc-855d0ab84c6e", "text": "\u8fbe\u5361\u5723\u6bcd\u9662\u5b66\u9662\u7684\u7535\u5f71\u822c\u7684\u666f\u8272\u3002"} +{"id": "7001181", "video_name": "585ded2c-4afc-53a8-969f-26e1937a8d45", "text": "a. \u7ae5\u8bdd\u5361\u901a\uff1a\u5b69\u5b50\u4eec\u5192\u9669\u8fdb\u5165\u8302\u5bc6\u7684\u68ee\u6797\uff0c\u6ee1\u8138\u597d\u5947\u548c\u60ca\u5947\u3002"} +{"id": "7001182", "video_name": "b82bd543-e38b-5eef-af45-35c5c8b475f0", "text": "\u6ed1\u7fd4\u7ffc\u5728\u5c71\u4e0a\u98de\u884c\uff0c\u5929\u6c14\u8f7b\u5fae\u591a\u4e91\uff0c4K\uff0c\u8fd0\u52a8\u6a21\u5f0f4\uff0c\u76f8\u673a\u7f29\u653e\u3002 \n\nSource sentence: He is allergic to peanuts and"} +{"id": "7001183", "video_name": "7882578a-f807-570f-9448-05556a531c75", "text": "\u4e00\u4f4d\u5e74\u8fc8\u7684\u5973\u58eb\uff0c\u62e5\u6709\u6e29\u6696\u7684\u5fae\u7b11\u3001\u767d\u8272\u7684\u5934\u53d1\u548c\u6df1\u6df1\u7684\u76b1\u7eb9\uff0c\u5e26\u6709\u8428\u5c14\u74e6\u591a\u00b7\u8fbe"} +{"id": "7001184", "video_name": "a726dfe4-c4d6-5b0c-8a24-e793470e2d2f", "text": "\u5728\u9ed1\u6697\u7684\u57ce\u5e02\u91cc\uff0c\u4e00\u4e2a\u4eba\u5728\u591c\u665a\u524d\u666f\u4e2d\u884c\u8d70\uff0c\u4ed6\u7684\u60f3\u8c61\u4e2d\u7684\u670b\u53cb\u6f02\u6d6e\u5728\u4ed6\u7684\u4e00\u4fa7\uff0c\u5448\u7ea2"} +{"id": "7001185", "video_name": "07fac446-9ead-5fa5-a560-abb696e016f0", "text": "\u77f3\u5934\u53d8\u6210\u4e86\u4e00\u74f6\u5564\u9152\uff0c\u7136\u540e\u53d8\u6210\u4e86\u7c7b\u4f3c\u8774\u8776\u7684\u82b1\u6735\uff0c\u6700\u540e\u53d8\u6210\u4e86\u8774\u8776\u5e76\u98de"} +{"id": "7001186", "video_name": "c9e150dc-ea98-5403-9187-1dfab44af45e", "text": "\u521b\u9020\u4e00\u4e2a\u7eb5\u5411\u683c\u5f0f\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e00\u4e2a\u6709\u7740\u5927\u773c\u775b\u548c\u5c0f\u7259\u9f7f\u7684\u5f69\u8272\u4e16\u754c\u4e2d\u7684\u4e00\u4e2a\u5927\u7403\u3002\u73b0\u5728\u53e6\u4e00\u4e2a\u5c0f\u7403\u51fa"} +{"id": "7001187", "video_name": "ad57685e-68e0-5816-a837-fe802acda03c", "text": "\u767d\u8272\u6bdb\u5dfe\u5728\u7a7a\u4e2d\u98d8\u8361\u3002"} +{"id": "7001188", "video_name": "74184635-3611-5b1d-b8e2-86810c3f95f0", "text": "\u9cc4\u9c7c\u54ac\u5411\u7334\u5b50\u4f46\u672a\u547d\u4e2d\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7001189", "video_name": "541e83e3-7a4c-5f40-b693-d5efc4433d45", "text": "\u5728\u70e4\u7bb1\u4e2d\u8131\u7fa7\u7684\u5927\u9ebb\u82b1\n\nSource sentence: The cat is sleeping on the couch. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7001190", "video_name": "3b98cb56-0c45-573f-916f-b9eab0c72a2f", "text": "\u4e00\u53f0\u673a\u5668\u4eba\u5934\u90e8\u6b63\u9762\u94f6\u8272\u673a\u68b0\u90e8\u4ef6\uff0c\u534a\u673a\u68b0\u5316\u3002"} +{"id": "7001191", "video_name": "5724c6e1-6aef-5391-82a9-047571055159", "text": "\u8ba1\u7b97\u673a\u952e\u76d8\u3001\u663e\u793a\u5668\u3001\u7f16\u7a0b\u3001\u7f16\u7801\u3001\u7a0b\u5e8f\u5458\u3001\u76f8\u673a\u53d8\u7126"} +{"id": "7001192", "video_name": "30abf5ae-4bfc-53ac-9132-53eeb1f84eed", "text": "\u5a92\u4f53\u6a21\u578b\u5305\u62ec\u7535\u89c6\u3001\u624b\u673a\u3001\u6536\u97f3\u673a\u3001\u5ea7\u673a\u3001\u4e92\u8054\u7f51\u548c\u62a5\u7eb8\u3002\u8fd9\u662f\u4e3a\u4e00\u540d4\u5c81\u5b69\u5b50\u7684\u5b66\u6821\u9879\u76ee\u51c6\u5907\u7684"} +{"id": "7001193", "video_name": "e560e5b2-d99e-5e6a-a51e-e67f06e965ce", "text": "\u4e00\u7fa4\u673a\u5668\u4eba\u5728\u5723\u8bde\u8282\u591c\u665a\u5531\u6b4c\uff0c\u903c\u771f\uff0c16:9\u3002"} +{"id": "7001194", "video_name": "fa1c2cfb-4be1-5ae2-ba37-87db3d6999a1", "text": "\u5c55\u793a\u4e00\u4f4d\u82f1\u4fca\u7684\u7537\u58eb\uff0c\u4ed6\u9a91\u7740\u6469\u6258\u8f66\u6b63\u9762\u89c6\u89d2\uff0c\u6ca1\u6709\u6234\u5934\u76d4\uff0c\u98ce\u5439\u7740\u4ed6\u7684\u5934\u53d1\uff0c\u7a7f\u7740"} +{"id": "7001195", "video_name": "f6322201-99ed-5c1c-84ca-279f87cab1e6", "text": "\u4e00\u500b\u5de8\u5927\u7684\u767d\u8272\u7403\u9ad4\uff0c\u903c\u771f\uff0c\u55ae\u8272\uff0cCGI\uff0c\u6232\u5287\u6027\uff0c\u8ca0\u7a7a\u9593\u3002"} +{"id": "7001196", "video_name": "5e486fd9-4970-5902-9d4d-c3f483e76674", "text": "1965\u5e74\uff0c\u6cb3\u5cb8\u4e0a\u7684\u6e14\u6c11\u3002"} +{"id": "7001197", "video_name": "ca533017-d79a-57c3-9b1c-91e2a8349699", "text": "\u54c8\u5229\u6ce2\u7279\u4f7f\u7528\u626b\u5e1a\u6e05\u6d01\u53a8\u623f\u3002"} +{"id": "7001198", "video_name": "3054886d-3182-5ad4-bafa-9c7fa028f89f", "text": "\u5171\u7528\u4e00\u5757\u7531\u677f\u5ca9\u767d\u4e91\u77f3\u5236\u6210\u7684\u53e3\u7f69\uff0c\u572828\u5757\u9ec4\u8272\u62fc\u56fe\u4e2d\u3002"} +{"id": "7001199", "video_name": "d15784f2-3d8d-5a56-9a83-e81a09395efc", "text": "32k\u5206\u8fa8\u7387\u7f29\u653e\u4e09\u4e2a\u5973\u5b69\u3002\u7537\u5b69\u7ad9\u5728\u6811\u65c1\uff0c\u5973\u5b69\u4eec\u5fc5\u987b\u72ec\u81ea\u76f8\u4e92\u4ea4\u8c08\uff0c\u573a\u666f\u903c\u771f\u3002"} +{"id": "7001200", "video_name": "9af71424-71ec-5bbd-b810-fbd08401edd4", "text": "\u5236\u4f5c\u89c6\u9891\uff0c\u5c55\u793a\u534a\u591c\u7f16\u5199\u4ee3\u7801\u7684Python\u5f00\u53d1\u4eba\u5458\u3002"} +{"id": "7001201", "video_name": "e9ae0cf3-be24-5a31-a2a5-7d25554e07d8", "text": "\u98ce\u7a7f\u8fc7\u5e02\u573a\u72ed\u7a84\u7684\u5c0f\u5df7\uff0c\u4f7f\u5f97\u4e94\u989c\u516d\u8272\u7684\u6a2a\u5e45\u50cf\u52a8\u753b\u4e00\u6837\u98d8\u52a8\u3002"} +{"id": "7001202", "video_name": "62ae3405-ca5d-5192-ba64-5de13ac9705e", "text": "\u6f02\u4eae\u7684\u5973\u5b69\u5728\u5355\u8eab\u6d3e\u5bf9\u4e13\u5c5e\u7684\u5730\u65b9\u8d70\u6765\u8d70\u53bb\u3002\n\nSource sentence: I will meet you at the coffee shop tomorrow at noon."} +{"id": "7001203", "video_name": "01b5ad32-0653-5944-8c32-fad0501ef8af", "text": "\u4e00\u4e2a\u7070\u8272\u5916\u661f\u4eba\u901a\u8fc7\u4e00\u7cfb\u5217\u6d4b\u8bd5\u5bf9\u683c\u6797\u76ae\u732b\u8fdb\u884c\u4e86\u9ecf\u571f\u52a8\u753b\u5236\u4f5c\u3002"} +{"id": "7001204", "video_name": "476d62bf-12e9-5dfc-a0c7-dd51422c7531", "text": "\u68ee\u6797\u4e2d\u4e00\u79cd\u9b54\u529b\u7684\u9c9c\u8273\u989c\u8272\uff0c\u5f53\u4e00\u4e2a\u5973\u5b69\u770b\u7740\u5b83\u3002"} +{"id": "7001205", "video_name": "13d590cd-eab6-54e7-aed6-3c378a546927", "text": "\u4f7f\u7528\u79fb\u52a8\u7684\u6df1\u84dd\u8272\u548c\u68d5\u8272\u6e10\u53d8\u8272\u80cc\u666f\uff0c\u968f\u673a\u98de\u884c\u774015\u4e2a\u5e26\u6709\u8f6e\u5ed3\u7ebf\u7684\u5c0f\u767d\u4e09\u89d2\u5f62\uff0c\u5206"} +{"id": "7001206", "video_name": "10404897-376b-5685-bcb7-9cb4e60e2a60", "text": "Source sentence: \u52a0\u6c99\u5730\u5e26\u6218\u4e89\u7684\u7535\u5f71\u89c6\u9891\u66f4\u52a0\u903c\u771f\u3002"} +{"id": "7001207", "video_name": "059930e2-b5b3-5c1e-a9b1-7126932fa166", "text": "\u4f7f\u752816:9\u7684\u5bbd\u9ad8\u6bd4\u5236\u4f5c\u4e00\u90e8\u52a8\u753b\uff0c\u5c55\u73b0\u4e00\u4e2a\u8212\u9002\u7684\u5ba4\u5185\u73af\u5883\uff0c\u9002\u5408\u9605\u8bfb\u6216\u542c\u4e66\u3002\u623f\u95f4\u5e94\u8be5\u6709\u58c1"} +{"id": "7001208", "video_name": "c7fb8c65-26e7-585d-b5f2-3c9001cdd1fd", "text": "19\u5c81\u7537\u5b69\u5728\u4e2d\u4e16\u7eaa\u9152\u9986\uff0c8k\uff0c\u903c\u771f\u3002"} +{"id": "7001209", "video_name": "2a594665-9e1a-5f34-a03c-2c4e06ccb5ad", "text": "\u4e00\u540d\u7a7f\u7740\u5b9e\u9a8c\u5ba4\u5927\u8863\u7684\u5973\u58eb\u6b63\u5728\u591c\u665a\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\u3002\u8fd1\u666f\u62cd\u6444\u3002"} +{"id": "7001210", "video_name": "41c711c4-58df-5621-811a-2a3fe42efbe9", "text": "\u57c3\u53ca\u5973\u738b\u5728\u5c3c\u7f57\u6cb3\u7554\u7684\u5bab\u6bbf\u524d\u8d70\u8fc7\u3002"} +{"id": "7001211", "video_name": "1751f275-3f82-50bc-a03b-d83cafc597f1", "text": "\u9ad8\u5206\u8fa8\u7387\u4e0b\uff0c\u4e00\u4f4d\u5973\u673a\u4fee\u5de5\u5728\u4fee\u740660\u5e74\u4ee3\u7684\u808c\u8089\u8f66\uff0c\u53ea\u80fd\u770b\u5230\u5979\u7f8e\u4e3d\u7684\u817f\u548c\u8170\u90e8\u4ee5\u4e0b\u7684\u90e8\u5206\uff0c\u4e0a"} +{"id": "7001212", "video_name": "68f794a6-ec12-5942-8910-b4de7fef72c8", "text": "\u684c\u5b50\u4e0a\u7684\u8d5b\u8f66\u5934\u76d4\u653e\u5927\u955c\u5934"} +{"id": "7001213", "video_name": "77db62dd-63fb-5de2-997c-692cf1003942", "text": "\u5728\u5730\u4e0b\u5ba4\u7684\u4e00\u4e2a\u7ec4\u91cc\u8fdb\u884c\u3002\u8ba1\u5212robary\u3002\n\nSource sentence: I would like to order a large pepperoni pizza with extra cheese.\n\u6211\u60f3\u8981\u70b9\u4e00\u4efd\u5927\u5339\u8428\uff0c\u52a0\u591a\u4e00"} +{"id": "7001214", "video_name": "4584eb0e-ac15-5b3e-a233-1a58536a6c6c", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u6ee9\u4e0a\u559d\u4e86\u4e00\u676f\u514b\u62c9\u6258\u59c6\u8336\u3002"} +{"id": "7001215", "video_name": "ede6b629-1aa4-55ef-b84f-e7d087ac8d9f", "text": "\u5de8\u5927\u7684\u751f\u7269\u6709\u4e09\u4e2a\u4eba\u7c7b\u5973\u6027\u7684\u5934\uff0c\u4e09\u4e2a\u84dd\u8272\u7684\u773c\u775b\uff0c\u975e\u5e38\u7f8e\u4e3d\uff0c\u4e09\u53ea\u624b\u81c2\uff0c\u4e09\u6761\u817f\uff0c\u903c\u771f\u7684"} +{"id": "7001216", "video_name": "c39a71f4-cd63-5225-9034-0106cbc814da", "text": "\u73b0\u5b9e\u7684\u6b66\u58eb\u5165\u573a\uff0c\u80cc\u666f\u6709\u70df\u96fe\uff0c4K\u9ad8\u6e05\u3002"} +{"id": "7001217", "video_name": "a5a04402-96fb-5a13-93c2-0afcbed9211d", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u4e2d\uff0c\u6709\u4e24\u4e2a\u670b\u53cb\u7ea6\u7ff0\u548c\u8fc8\u514b\u3002\u4ed6\u4eec\u5f62\u5f71\u4e0d\u79bb\uff0c\u65e0\u6240\u4e0d\u505a\u3002\u4e00\u4e2a\u9633\u5149\u660e"} +{"id": "7001218", "video_name": "a4158660-b48e-5404-8116-84169ddc57cb", "text": "\u4e00\u5ea7\u706b\u7ea2\u7684\u7d2b\u5c71\u8038\u7acb\u5728\u4e00\u7247\u78a7\u7eff\u7684\u6e56\u4e2d\u592e\u3002"} +{"id": "7001219", "video_name": "b096794e-6414-53b1-a2fd-20d3456593b1", "text": "\u5f00\u95e8\u65f6\u6728\u5934\u731b\u70c8\u5730\u7834\u88c2\u58f0"} +{"id": "7001220", "video_name": "6d176df3-bde6-5589-afd6-a915b3091e78", "text": "\u5929\u7a7a\u88ab\u66ae\u8272\u7684\u8272\u5f69\u70b9\u71c3\u3002\u767d\u864e\u51fa\u73b0\u4e86\uff0c\u4f18\u96c5\u800c\u4ece\u5bb9\uff0c\u5b83\u7684\u6bdb\u76ae\u5728\u53d8\u5e7b\u7684\u53f6\u5b50\u4e2d\u5448\u73b0"} +{"id": "7001221", "video_name": "27b9d8a4-ead7-5ed3-9d66-02ed0b9e7765", "text": "\u5e74\u8f7b\u65e0\u5bb6\u53ef\u5f52\u7684\u7537\u5b50\u5728\u4ed6\u7684\u72d7\u65c1\u8fb9\u9605\u8bfb\u4e00\u672c\u4e66\uff0c\u957f\u955c\u5934\uff0c\u7535\u5f71\u822c\u7684\u80cc\u5149\u6548\u679c\uff0c\u8d85\u73b0\u5b9e\u4e3b\u4e49"} +{"id": "7001222", "video_name": "8020e140-bbd1-5091-bd12-326b8a388c79", "text": "\u9ab7\u9ac5\u5728\u8fea\u65af\u79d1\u91cc\u7aef\u7740\u86cb\u7cd5\uff0c\u95ea\u5149\u706f\u4e0d\u505c\u5730\u95ea\u3002"} +{"id": "7001223", "video_name": "18f3e8ad-7c70-557f-86a9-d2da03ced993", "text": "\u5c06\u5927\u8111\u51b7\u5374\u6216\u6e29\u5ea6\u8ba1\u4e0b\u964d\u7684\u8fc7\u7a0b\u5f62\u8c61\u5316\uff0c\u968f\u7740\u8ba1\u6570\u7684\u8fdb\u884c\u3002\u4f7f\u7528\u5b81\u9759\u7684\u84dd\u8272\u548c\u7eff\u8272\u6765\u4f20\u8fbe"} +{"id": "7001224", "video_name": "348ea9cc-b709-5f58-8064-dd09fcd5e982", "text": "\u4f60\u80fd\u60f3\u8c61\u4e00\u500b\u5f69\u8679\u984f\u8272\u7684\u516d\u89d2\u661f\u55ce\uff1f"} +{"id": "7001225", "video_name": "b528c593-f36b-53a9-867c-5a77465858a1", "text": "\u5c55\u793a\u4e00\u6761\u5bbd\u9614\u5e73\u5766\u7684\u516c\u8def\uff0c\u8f66\u8f86\u98de\u9a70\u800c\u8fc7\u3002"} +{"id": "7001226", "video_name": "689517fc-bf27-5673-8b98-f03331a098d1", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u8bb2\u8ff0\u4e00\u652f\u7b14\u4e00\u65e6\u88ab\u4f7f\u7528\u540e\u53ef\u4ee5\u88ab\u79cd\u690d\u5e76\u6210\u957f\u4e3a\u4e00\u68f5\u5de8\u5927\u7684\u690d\u7269\u3002"} +{"id": "7001227", "video_name": "8a10acbe-8882-5548-a39e-a353594d506d", "text": "\u4e00\u4e2a\u4eba\u5728\u4e1b\u6797\u4e2d\u884c\u8d70\uff0c\u770b\u7740\u4e00\u4e2a\u739b\u96c5\u795e\u5e99\u3002"} +{"id": "7001228", "video_name": "43331c65-d1aa-5f2a-9c6b-4d2cd28c15e8", "text": "\u4ed6\u7684\u808c\u8089\u53d8\u5f97\u66f4\u52a0\u5f3a\u58ee\u548c\u660e\u663e\u3002\u955c\u5b50\u91cc\u770b\u5230\u7684\u53d8\u5316\u53ea\u52a0\u5f3a\u4e86\u4ed6\u7ee7\u7eed\u52aa\u529b\u7684\u52a8\u529b\u3002"} +{"id": "7001229", "video_name": "67008a1d-84ba-5a4a-891e-b4dc74c84296", "text": "Alexander\u662f\u5386\u53f2\u4e0a\u7b2c\u4e00\u4e2a\u3002\n\nSource sentence: I am learning Chinese because I want to travel to China and communicate with the locals. \n\u6211\u5b66\u4e60\u4e2d\u6587\u662f\u56e0\u4e3a\u6211\u60f3\u53bb\u4e2d\u56fd\u65c5\u6e38\u5e76\u4e0e\u5f53"} +{"id": "7001230", "video_name": "4cc1038f-7f00-5d1d-b119-220e765f60ed", "text": "\u5f88\u591a\u5357\u74dc\uff0c\u6a59\u8272\u5bf9\u6bd4\u9c9c\u660e\u3002"} +{"id": "7001231", "video_name": "e1f3bced-fd20-5713-adad-48975b73550d", "text": "\u8fd9\u4e2a\u52a8\u753b\u6f14\u793a\u4e86\u6c34\u6ef4\u5982\u4f55\u805a\u96c6\u5728\u4e00\u8d77\u5f62\u6210\u66f4\u5927\u3001\u66f4\u91cd\u7684\u6c34\u6ef4\u3002"} +{"id": "7001232", "video_name": "cfa9aaa9-463c-5aa8-bea3-c3a0a470c5e7", "text": "\u8389\u8389\u6c47\u805a\u76df\u53cb\u7684\u9b54\u6cd5\u80fd\u91cf\uff0c\u7206\u53d1\u51fa\u4e00\u80a1\u80fd\u91cf\u6d6a\u6f6e\uff0c\u6d12\u6ee1\u4e86\u7eaf\u51c0\u7684\u5149\u8292"} +{"id": "7001233", "video_name": "767cdf0a-83b7-5298-b853-3f233688a3fa", "text": "\u4e00\u540d\u5973\u5b50\u6b63\u5728\u5e2e\u52a9\u827e\u7c73\u4e3d\u7f13\u89e3\u5206\u5a29\u75bc\u75db\u3002"} +{"id": "7001234", "video_name": "2f861ccc-edcb-5570-8e5c-9b437851f18f", "text": "\u4f01\u9e45\u5f62\u72b6\u7684\u70df\u82b1"} +{"id": "7001235", "video_name": "dd01bcef-4f95-5735-a7be-44269d773f6a", "text": "\u7c73\u62c9\u548c\u5979\u7684\u5bb6\u4eba\u8c61\u5f81\u7740\u8054\u7cfb\u3002"} +{"id": "7001236", "video_name": "9bb38d5e-9139-54fc-87b7-79d9e5cb2360", "text": "\u521b\u9020\u4e00\u4e2a\u77ee\u4eba\u961f\u4f0d\u884c\u8fdb\u7684\u89c6\u9891\u3002"} +{"id": "7001237", "video_name": "0309081f-fcb4-53d5-ae2f-bbb86da66702", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b50\u5728\u672a\u6765\u4e3b\u4e49\u7684\u4e1c\u4eac\u591c\u665a\u6f2b\u6b65\uff0c\u4f34\u968f\u7740\u8f7b\u5fae\u7684\u96e8\u58f0\uff0c\u9732\u51fa\u4e86\u732b\u8138\u3002"} +{"id": "7001238", "video_name": "ab7854bc-971c-5eda-bb26-170d4c6f83dc", "text": "\u5982\u4f55\u901a\u8fc7\u6c34\u7597\u9762\u90e8\u62a4\u7406\u53d7\u76ca\u9762\u90e8"} +{"id": "7001239", "video_name": "c4736c5f-bf5c-5e02-a017-f6d956c5300e", "text": "\u5c3c\u514b\u00b7\u51ef\u5947\u7528\u81c0\u90e8\u6012\u6c14\u4e0e\u7ea6\u7ff0\u640f\u6597\u3002"} +{"id": "7001240", "video_name": "580f5d6a-b500-575a-90f3-07a107f4e375", "text": "\u4e00\u540d\u6a21\u7279\u5728\u6444\u5f71\u68da\u4e3aVogue\u62cd\u6444\u7167\u7247\uff0c\u7a7f\u7740\u672a\u6765\u4e3b\u4e49\u670d\u88c5\u3002"} +{"id": "7001241", "video_name": "fd4d13c3-5314-59e6-96cc-511ddf991c22", "text": "\u4ece\u9e1f\u7684\u89c6\u89d2\u98de\u8d8a\u4e2d\u56fd\u53e4\u57ce\u3002"} +{"id": "7001242", "video_name": "ed150fc3-62e8-50a4-af3a-80061674f271", "text": "\u751f\u6210\u4e00\u5f20\u8ff7\u4eba\u7684\u5f62\u8c61\uff0c\u63cf\u7ed8\u4e00\u4e2a\u5e74\u8f7b\u7684\u5df4\u57fa\u65af\u5766\u5973\u5b69Ayesha, \u7ad9\u5728\u60ca\u5f02\u7684\u66b4\u98ce\u96e8\u5929\u7a7a\u4e0b"} +{"id": "7001243", "video_name": "27abc7c9-708d-55ef-b1cb-6b9809efb2ff", "text": "\u82b1\u56ed\u91cc\u7684\u4e00\u53ea\u8774\u8776\uff0c\u4eff\u4f5b\u68b5\u9ad8\u7684\u98ce\u683c\u3002"} +{"id": "7001244", "video_name": "855f84bb-0422-5856-8a64-abcc75af5a2c", "text": "\u4eba\u8d70\u8fdb\u53bb\uff0c\u4ed6\u7684\u5f71\u5b50\u5374\u79bb\u4ed6\u8d8a\u6765\u8d8a\u8fdc\u3002"} +{"id": "7001245", "video_name": "ed95dd93-cc82-5050-ae8a-3f8c3f761b3e", "text": "\u4e00\u6761\u9f99\u7ad9\u5728\u5c71\u9876\uff0c\u80cc\u666f\u662f\u5915\u9633\uff0c\u6444\u50cf\u673a\u4ece\u5e95\u90e8\u5411\u4e0a\u79fb\u52a8\uff0c\u955c\u5934\u671d\u5411\u9f99\u7684\u6b63\u9762160\u5ea6\u3002"} +{"id": "7001246", "video_name": "b47825e3-e123-5413-8e63-fca4d308f922", "text": "\u4e00\u4e2a\u6050\u6016\u7684\u4e95\uff0c\u5728\u591c\u665a\u7684\u6751\u5e84\u91cc\u72ec\u81ea\u4e00\u4eba\u3002"} +{"id": "7001247", "video_name": "a89318a3-6edd-55aa-8112-2a602d815b76", "text": "\u4f7f\u7528\u663e\u5fae\u955c\u5206\u6790\u6bdb\u53d1\u7684\u5206\u5b50\u7ed3\u6784\uff0c\u63cf\u8ff0\u6709\u52a9\u4e8e\u52a0\u5f3a\u6bdb\u53d1\u7684\u79d1\u5b66\u8fc7\u7a0b\u4ee5\u53ca\u5bf9\u6bdb\u53d1\u62a4\u7406\u53d1\u5c55\u7684\u5f71\u54cd\u3002"} +{"id": "7001248", "video_name": "68231b92-1cd0-5bc8-8714-0ffcd37fe569", "text": "\u672a\u6765\u672b\u65e5\u519c\u573a\u4e2d\u7684\u4eff\u751f\u725b\uff0c\u7535\u5f71\u822c\u7684\u3001\u8d85\u771f\u5b9e\u3001\u7167\u7247\u822c\u7684\u3002"} +{"id": "7001249", "video_name": "f68a7a07-4d00-52f5-b272-f27130c8c984", "text": "\u5728\u5730\u7262\u4e2d\u56db\u5904\u79fb\u52a8\u5bfb\u627e\u5149\u4eae\u7684\u4f8f\u5112\uff0c\u6050\u6016\u7535\u5f71\uff0c\u903c\u771f\u3002"} +{"id": "7001250", "video_name": "ffd0f621-a571-555a-9c1c-967a67f8d276", "text": "\u54c1\u724c\u540d\u79f0\uff1aHot Doggies\uff0c\u5bf9\u4e8e\u4e00\u5bb6\u72d7\u7528\u54c1\u54c1\u724c\u800c\u8a00\u662f\u4e00\u4e2a\u53d7\u6b22\u8fce\u7684\u5f62\u8c61\u3002"} +{"id": "7001251", "video_name": "f128e6b1-0ab4-5bdd-a344-b209e432a660", "text": "\u7a7a\u4e2d\u62cd\u6444\u7684\u89c6\u9891\u4e2d\uff0c\u4e00\u540d\u7a7f\u7740\u9c9c\u8273\u84dd\u8272\u8df3\u4f1e\u670d\u5e76\u5e26\u6709\u767d\u8272\u6761\u7eb9\u7684\u8df3\u4f1e\u8005\uff0c\u5c55\u73b0\u4e86"} +{"id": "7001252", "video_name": "44d7f761-320a-54ea-befe-fd8283ff0858", "text": "\u4f20\u7edf\u4e2d\u533b\u7684\u89d2\u5ea6\u6765\u770b\uff0c\u504f\u5934\u75db\u7684\u53d1\u751f\u6d89\u53ca\u591a\u79cd\u56e0\u7d20\uff0c\u4e3b\u8981\u5305\u62ec\u6c14\u8840\u5faa\u73af\u4e0d\u7545\u3001\u7ecf\u7edc\u5835\u585e"} +{"id": "7001253", "video_name": "e709e768-c00b-54de-b2b4-5c6e5c46384d", "text": "\u62bd\u5956\u6d3b\u52a8\uff0c\u5927\u8f6c\u76d8\uff0c\u5e7d\u9ed8\u5e78\u8fd0\u62bd\u5956\uff0c\u9080\u8bf7\uff0c\u9f13\u52b1\u53c2\u4e0e"} +{"id": "7001254", "video_name": "4502e170-6954-5f9f-914a-437adfa3046e", "text": "\u96f7\u8fbe\u5c4f\u5e55\u4e0a\u79fb\u52a8\u7684\u70b9\u7684\u526a\u8f91"} +{"id": "7001255", "video_name": "730529f4-a9e9-5c5b-8224-00a27a8edf47", "text": "\u4eba\u4eec\u722c\u4e0a\u5c71\u53bb\u770b\u65e5\u51fa\u3002"} +{"id": "7001256", "video_name": "ca2af33c-279c-54b4-92b9-1435c7ff735c", "text": "\u4fdd\u7f57\u00b7\u9ea6\u5361\u7279\u5c3c\u5f39\u5409\u4ed6\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001257", "video_name": "080fcf8b-c65f-5c1e-bd0a-62d0f81274e5", "text": "\u5361\u7f57\u5c14\u00b7G\u5728\u8239\u4e0a\u6f14\u5531\u97f3\u4e50\u4f1a\u3002"} +{"id": "7001258", "video_name": "e41b0c77-a3f2-593a-98f5-787a049a0f24", "text": "\u6211\u7684\u5fc3\u5728\u547c\u5524\u661f\u661f\uff0c\u4f46\u591c\u665a\u4f9d\u65e7\u6c89\u9ed8\u3002"} +{"id": "7001259", "video_name": "0743694c-2b57-507f-9e3b-87522beb1d3f", "text": "\u4ece\u4e0a\u65b9\u7f29\u653e\u5230\u57ce\u5e02\u3002"} +{"id": "7001260", "video_name": "f3f75de9-8648-5e81-9439-6e2e1fe3ff40", "text": "\u827e\u739b\u00b7\u6c83\u7279\u68ee\u7a7f\u7740\u66b4\u9732\u7684\u7761\u8863\uff0c\u5168\u8eab\u7167\u7247\u660e\u663e\u9732\u51fa\u5979\u7684\u4e73\u5934\u548c\u871c\u6843\u81c0\uff0c"} +{"id": "7001261", "video_name": "16ea435b-79e0-5d19-b033-25fe0fcbacb8", "text": "\u4e00\u53ea\u975e\u5e38\u5bb3\u6015\u7684\u732b\u8eb2\u5728\u5730\u4e0b\u5ba4\u7684\u4e00\u4e2a\u89d2\u843d\u91cc\uff0c\u4e00\u4e2a\u9ed1\u6697\u53ef\u6015\u7684\u5730\u4e0b\u5ba4\u91cc\u6709\u5de8\u5927\u7684\u8001\u9f20\uff0c"} +{"id": "7001262", "video_name": "6ea448f5-ad51-5ec4-8f97-a02c978b1b3e", "text": "1970\u5e74\u4ee3\u7684\u6697\u9ed1\u5e7b\u60f3\u573a\u666f\uff0c\u4e00\u4e2a\u5996\u7cbe\u5728\u57ce\u5821\u91cc\u70bc\u5236\u836f\u5242\u3002"} +{"id": "7001263", "video_name": "d99319b5-05a1-56e2-a35f-6d9de0e57032", "text": "\u4ece\u524d\uff0c\u52a8\u6001\u7f29\u653e\uff0c32k\uff0c\u5168\u9ad8\u6e05\uff0c\u8d85\u5199\u5b9e\uff0c\u6781\u9ad8\u5206\u8fa8\u7387\u7684\u56fe\u50cf\u3002\u8d85\u8be6\u7ec6\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u7126\u70b9\u6e05\u6670\u3002\u5c11"} +{"id": "7001264", "video_name": "1144455a-1e7a-5bec-8cbd-7e55cf624ea1", "text": "\u7535\u89c6\u65b0\u95fb\u8bb0\u8005\u5728\u7535\u89c6\u4e0a\u8bb2\u8bdd\uff0c4K\u8d85\u8be6\u7ec6\u903c\u771f\u7684\u7535\u5f71\u524d\u666f\u955c\u5934\uff0c\u7f8e\u56fd\u955c\u5934"} +{"id": "7001265", "video_name": "34cb3001-eefa-52b2-9bdb-ff1ce41a8b35", "text": "\u5728\u4efb\u5929\u580264\u6e38\u620f\u4e2d\u7f8e\u4e3d\u98ce\u666f\u7684\u622a\u56fe\uff0c\u591a\u8fb9\u5f62\u3002"} +{"id": "7001266", "video_name": "ea761e4a-34b2-51fb-9fad-e80b105cdde7", "text": "\u516c\u5f0f1\u8d5b\u8f66\u7684\u516c\u8def\u6444\u50cf\u5934\u89c6\u89d2\uff0c\u4ee5\u53ca\u5230\u5904\u90fd\u6709\u8d5b\u8f66\u3002"} +{"id": "7001267", "video_name": "aa4b9176-c1a1-50b8-b1f7-d5a644d4e34d", "text": "\u80cc\u666f\u91cc\u6709\u903c\u771f\u7684\u70df\u82b1\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u53ef\u7231\u7684\u60c5\u4fa3\u3002"} +{"id": "7001268", "video_name": "e8f7c7d8-2f6f-5be2-a4c4-dbfd57bbbf40", "text": "\u4e9a\u5386\u514b\u65af\u88ab\u4ed6\u81ea\u5df1\u521b\u9020\u7684\u4e1c\u897f\u6240\u56f0\u6270\uff0c\u4ed6\u5fc5\u987b\u9762\u5bf9\u8d85\u73b0\u5b9e\u7684\u6311\u6218\uff0c\u8feb\u4f7f\u4ed6\u76f4\u9762\u4ed6\u6700\u6df1"} +{"id": "7001269", "video_name": "07847253-89d0-5c3f-876a-7268101dda5a", "text": "\u4e00\u4e2a\u5e26\u6709\u84dd\u8272\u8272\u8c03\u7684\u50ac\u7720\u9ed1\u767d\u87ba\u65cb\u56fe\u6848\uff0c\u914d\u6709\u76f8\u673a\u53d8\u7126\u3002"} +{"id": "7001270", "video_name": "a9d2332b-3b4e-530e-bd40-c9f64727b298", "text": "\u51dd\u89c6\u7740\u892a\u8272\u7684\u5899\u4e0a\u7684\u4e00\u5f20\u7167\u7247\u3002"} +{"id": "7001271", "video_name": "f65af1d3-381c-5e2b-bdca-144beb0d19cb", "text": "\u5145\u6ee1\u5174\u594b\u548c\u6050\u60e7\u7684\u8868\u60c5\uff0c\u8fdb\u5165\u4e86\u5927\u95e8\u3002 \n\nSource sentence: The cat sat lazily in the sun, enjoying the warmth. \n\n\u90a3\u53ea\u732b\u6175"} +{"id": "7001272", "video_name": "d6d4f684-cc97-5983-8cef-9bf8c9ac7159", "text": "\u821e\u53f0\u4e0a\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u770b\u5411\u70ed\u60c5\u6d0b\u6ea2\u7684\u5927\u89c2\u4f17\u3002"} +{"id": "7001273", "video_name": "99a627fd-b385-55da-a0a8-4d9c9907b83f", "text": "\u523a\u8c5a\u753b\u5bb6\uff1a\u7ec6\u81f4\u63cf\u7ed8\u4e00\u53ea\u53ef\u7231\u7684\u523a\u8c5a\u5728\u6c99\u6d77\u5e95\u4e0b\u52e4\u594b\u5de5\u4f5c\uff0c\u7cbe\u5fc3\u5236\u4f5c\u51e0\u4f55\u56fe\u6848\u3002"} +{"id": "7001274", "video_name": "a0bd6e2a-b604-5d43-8f52-4ddf8bd467ae", "text": "\u52a8\u753b\u5236\u4f5c\u516c\u53f8\u5409\u535c\u529b\u7684\u6210\u4eba\u5973\u6027\uff0c\u62e5\u6709\u6ce2\u6d6a\u72b6\u7684\u7ea2\u8272\u5934\u53d1\uff0c\u672b\u7aef\u4e3a\u9ed1\u8272\uff0c\u8eab\u7a7f\u5df4\u897f\u4e61\u6751\u4e3b"} +{"id": "7001275", "video_name": "fe46ad10-6053-5ee8-ba80-34932519bba8", "text": "\u540e\u542f\u793a\u5f55\u7684\u795e\u8bdd\u602a\u7269 \u8d858\u6beb\u7c73\u7535\u5f71 \u4fe1\u606f\uff1a\u6d3b\u5f97\u7cdf\u7cd5\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7001276", "video_name": "559120da-4ed2-555c-ade2-16e37799696d", "text": "\u68ee\u6797\u88ab\u4e00\u79cd\u5947\u602a\u7684\u5bc2\u9759\u7b3c\u7f69\u7740\uff0c\u53ea\u88ab\u5076\u5c14\u7684\u53f6\u5b50\u6469\u64e6\u58f0\u548c\u4ece\u9634\u5f71\u4e2d\u4f20\u6765\u7684"} +{"id": "7001277", "video_name": "a138072e-4e11-5f79-9fb2-97e1df4b1d9e", "text": "\u6e90\u53e5\uff1aNoe\u0301mie Goudal \u7684\u7535\u5f71\u52a8\u4f5c\u573a\u666f\uff0c\u5e7f\u89d2\u955c\u5934\u4e0b\u7684\u58ee\u9614\u666f\u8272\u73af\u5883\uff08\u673a\u68b0\u5728\u6c99\u6f20\u4e2d\u884c\u8d70\uff0c"} +{"id": "7001278", "video_name": "507ac7de-0f93-54f6-8a67-6579187614bb", "text": "\u4e00\u4e2a\u6234\u7740\u515c\u5e3d\u7684\u9ed1\u8272\u8fde\u5e3d\u886b\u7684\u4eba\uff0c\u7a7f\u7740\u9ed1\u8272\u8fd0\u52a8\u88e4\uff0c\u5728\u4e00\u6761\u7a7a\u65f7\u3001\u73b0\u4ee3\u5316\u7684\u57ce\u5e02\u8857\u9053\u4e0a\u884c\u8d70"} +{"id": "7001279", "video_name": "1a640ab7-a45b-5adb-8e52-3620d1513993", "text": "Translation: \u628a\u8774\u8776\u8c46\u82b1\u8336\u5012\u8fdb\u9ad8\u74f6\u5b50\u91cc\uff0c\u7f8e\u89c2\u3002"} +{"id": "7001280", "video_name": "8189fb7e-ddcd-541c-82d8-9bbb12bd334e", "text": "\u7f8e\u4e3d\u91d1\u53d1\u5973\u5b50\u5728\u6d77\u6ee9\u4e0a\u51a5\u60f3\uff0c\u4eab\u53d7\u5b81\u9759\u7684\u65e5\u843d\uff0c\u4ee5\u8d85\u5199\u5b9e\u30014K\u3001\u9ad8\u6e05\u6670\u5ea6\u8fdb\u884c\u62cd\u6444\uff0c\u98ce"} +{"id": "7001281", "video_name": "922a1f28-b3e8-5559-a43e-d80d15d3bd99", "text": "\u6d77\u6ee9\u4e0a\u7684\u6d77\u8d1d\u58f3\uff0c\u4fe1\u606f\u4e3a\uff1a\u857e\u5a05\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "7001282", "video_name": "a3d19459-b130-5cf7-ba33-9f9ad51c7673", "text": "\u5efa\u7b51\u6b63\u9762\u7684\u5b8f\u89c2\u7f16\u8f91\u7167\u7247\uff0c\u8bb8\u591a\u73bb\u7483\u5854\u697c\uff0c\u6781\u7b80\u98ce\u683c\uff0c\u67d4\u548c\u8272\u8c03\u3002"} +{"id": "7001283", "video_name": "799f86c4-334b-5423-b7dd-9b787bb1b422", "text": "\u5feb\u901f\u7f29\u5c0f\u8df3\u821e\u7684\u590d\u53e4\u673a\u5668\u4eba\u3002"} +{"id": "7001284", "video_name": "f538bbfe-4b70-59cb-8c7b-1553970ebdb7", "text": "1980\u5e74\u7684\u9713\u8679\u6ce2\u6d6a\u5973\u4eba\u6e38\u6cf3\u827a\u672f\u7535\u5f71\u3002"} +{"id": "7001285", "video_name": "dc3d9c2b-7398-5d7d-aab7-55867df863e8", "text": "\u7406\u89e3\u4f0a\u65af\u5170\u6559\u4e2d\u7684\u5bbd\u6055\u548c\u4ec1\u6148\u3002"} +{"id": "7001286", "video_name": "aa2e44e5-c2af-5fd1-8a2e-691ed8821114", "text": "\u4f10\u6811\u540e\u679c\u7684\u7535\u5f71\u5f0f\u89c6\u9891\uff0c\u9644\u6709\u6587\u5b57\u3002"} +{"id": "7001287", "video_name": "3b1fedfd-3982-5dae-ac93-a84d115445bf", "text": "\u8fc8\u514b\u5c14\u00b7\u65af\u79d1\u7279\uff08Michael Scott\uff09\u5728\u529e\u516c\u5ba4\u4e2d\u8bf4\u51fa\u4e86\u201cverjaar\u201d\u8fd9\u4e2a\u8bcd\u3002"} +{"id": "7001288", "video_name": "698ebaf5-79c8-5214-94b4-9cd27eaa8501", "text": "\u4e00\u4e2a\u53d1\u6761\u6a59\u7535\u5f71\u7684\u98ce\u683c\uff0c\u5c31\u50cf\u4e00\u4e2a\u4eba\u5728\u96fe\u8499\u8499\u7684\u4f26\u6566\u6ed1\u65f1\u51b0\u978b\u3002"} +{"id": "7001289", "video_name": "ea7cd248-1734-5d10-9d58-738e24f7c164", "text": "\u6851\u8fbe\u5c14\u90a3\u52a0\u7e41\u8363\u4e0d\u4ec5\u56e0\u4e3a\u6c34\u7684\u6d8c\u6cc9\uff0c\u800c\u662f\u56e0\u4e3a\u6e90\u4e8e\u5c0f\u82f1\u96c4\u62c9\u6770\u5fc3\u4e2d\u7684\u5584\u826f\u548c\u51b3\u5fc3\u7684"} +{"id": "7001290", "video_name": "3bd2244b-7b63-5b7b-9072-c556509808ad", "text": "\u795e\u79d8\u7684\u5b88\u62a4\u8005\u51fa\u73b0\u5728\u5bfa\u5e99\u91cc\u3002"} +{"id": "7001291", "video_name": "7a747e2f-ec29-55dc-918e-6bc2d824e7a6", "text": "\u590d\u4ec7\u8005\u4e2d\u7684\u5e74\u8f7b\u9edb\u5b89\u5a1c\u00b7\u91cc\u683c"} +{"id": "7001292", "video_name": "29089c3f-d9be-568c-b8e3-ba01cddd500a", "text": "\u5c55\u793a\u6709\u7740\u53d1\u5149\u7fc5\u8180\u7684\u53cb\u597d\u4ed9\u5973\u5728\u98de\u821e\u3002"} +{"id": "7001293", "video_name": "9a7c496f-c9e7-5b83-aa28-6b6fd8e0b52d", "text": "\u4e00\u4e2a\u7ea2\u8272\u7684\u661f\u7403\uff0c\u80cc\u666f\u662f\u661f\u7cfb\uff0c\u5361\u901a\u98ce\u683c\u3002"} +{"id": "7001294", "video_name": "65cac94a-3cf7-588d-8849-9be67bd3a386", "text": "\u68ee\u6797\u4e2d\u7684\u5947\u602a\u52a8\u7269"} +{"id": "7001295", "video_name": "c69a27e7-f9b8-5cb7-bc4e-670d8403ff39", "text": "\u521b\u4f5c\u4e00\u4e2a\u89c6\u9891\uff0c\u5185\u5bb9\u662f\u4e00\u4e2a\u53ef\u7231\u7684\u72d7\u548c\u661f\u7403\u5927\u6218\u4e2d\u7684\u5c24\u8fbe\u6df7\u5408\u4f53\u5728\u8e66\u5e8a\u4e0a\u6109\u5feb\u5730\u8df3\u8dc3\u3002"} +{"id": "7001296", "video_name": "bb7230e0-a347-58ba-b5ed-f28793c39b44", "text": "\u8c6a\u534e\u516c\u5bd3\u91cc\u7684\u7537\u4eba\u4fef\u77b0\u57ce\u5e02\u3002"} +{"id": "7001297", "video_name": "fdc3d031-701b-53a6-8f76-e76114ec4091", "text": "\u4e00\u4f4d\u5e74\u8f7b\u7537\u6a21\u7279\u7a7f\u7740\u9ed1\u8272\u7cbe\u5fc3\u526a\u88c1\u7684\u4e9a\u9ebb\u886c\u886b\uff0c\u80cc\u666f\u4e3a\u767d\u8272\uff0c\u5728\u6444\u5f71\u4e2d\u6446\u59ff\u52bf"} +{"id": "7001298", "video_name": "376ba93f-1264-5463-ba9b-50a0f8042e91", "text": "2023\u5e74\u665a\u4e0a\u4e00\u4e2a\u771f\u5b9e\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u6838\u5f39\u88ad\u51fb\u7ebd\u7ea6\u7684\u573a\u666f\u3002"} +{"id": "7001299", "video_name": "7cc46d7e-656e-5760-b151-c3fc3ec1c6b4", "text": "\u5f53\u5723\u5bb6\u4e00\u8def\u524d\u884c\u65f6\uff0c\u4e00\u7fa4\u597d\u5947\u7684\u5b69\u5b50\u51b3\u5b9a\u8ddf\u968f\uff0c\u4ed6\u4eec\u60ca\u5947\u5730\u7741\u5927\u4e86\u773c\u775b\u3002"} +{"id": "7001300", "video_name": "2c052e80-bce6-5684-9a9b-5178bdc887d0", "text": "\u4f60\u7684\u7535\u5f71\u77ed\u8def\uff0c\u53d1\u51fa\u8282\u594f\u3002"} +{"id": "7001301", "video_name": "c00a5e84-062c-5650-8a5f-47f2cfb3a732", "text": "\u6e38\u620f\u8857\u673a\u5f39\u7403\u6e38\u620f\u673a\u63a8\u7403\u5f39\u73e0\u5f39\u51fa\u79fb\u52a8\u89d2\u8272"} +{"id": "7001302", "video_name": "7da8c556-b43f-5af5-9752-4637f6baba4d", "text": "\u4e00\u4f4d\u5e74\u8f7b\u768416\u5c81\u5b69\u5b50\u7a7f\u7740\u90a3\u4e0d\u52d2\u65af\u7403\u8863\u3002"} +{"id": "7001303", "video_name": "19746eef-4cea-5918-88e4-2b3ed1d2e83f", "text": "\u7eb8\u7bb1\u5806\u53e0 \u9644\u4ef61"} +{"id": "7001304", "video_name": "380dc206-4004-5d01-9c14-d2baf6bd45b3", "text": "\u4e00\u53ea\u732b\u7761\u5728\u6f02\u6d6e\u5728\u6c34\u4e0a\u7684\u76d2\u5b50\u4e0a\u3002"} +{"id": "7001305", "video_name": "6389de54-7e70-5cc6-974c-8c6f596e3679", "text": "\u7ed2\u9762\u8272\u5f69\u5728\u56fe\u50cf\u4e0a\u6d41\u52a8\u3002"} +{"id": "7001306", "video_name": "f28c26c4-6cb8-528a-a956-48aab6af56f4", "text": "\u795e\u79d8\u7684\u6234\u515c\u5e3d\u7684\u7537\u4eba\u7ad9\u5728\u5c71\u9876\u4e0a\uff0c\u51dd\u89c6\u7740\u5730\u5e73\u7ebf\u4e0a\u7684\u5317\u6781\u5149\u3002"} +{"id": "7001307", "video_name": "8aafe12c-e8e4-54be-a6ab-4fabd28a78b3", "text": "\u5728\u4e00\u4e2a\u89d2\u8272\u7ad9\u7acb\u7684\u5730\u65b9\uff0c\u901a\u8fc7\u4eba\u4f53\u5230\u8fbe\u5fc3\u810f\u7684\u98ce\u683c\u5316\u65c5\u7a0b\u3002"} +{"id": "7001308", "video_name": "f44853e2-01b8-5878-984d-a6a5f9b00c24", "text": "\u4e24\u4e2a\u73a9\u5177\u5728\u8d70\u8def\u5e76\u4e14\u6447\u5934\u3002"} +{"id": "7001309", "video_name": "b191fe6d-bbc7-52d6-9c81-d55cc2c61bc4", "text": "\u4e00\u4e2a\u5973\u4eba\u8eba\u5728\u5e8a\u4e0a\uff0c\u542c\u7740\u6ce2\u6d6a\u58f0\uff0c\u7a97\u5916\u662f\u5927\u6d77\u3002"} +{"id": "7001310", "video_name": "bc0935a0-f8c7-564e-b320-684f761bab8c", "text": "\u542c\u5230\u6d1e\u7a74\u91cc\u7684\u547c\u558a\u58f0\uff0c\u5947\u7279\u62c9\u585e\u7eb3\u57ae\u4e86\u4e0b\u6765\uff0c\u4e0e\u6b64\u540c\u65f6\u83b7\u5f97\u4e86\u52c7\u6c14\u3002"} +{"id": "7001311", "video_name": "087df3b8-4e3c-5fc2-ba73-ad8155bbda80", "text": "\u5929\u7a7a\u4e2d\u7684\u795e\u79d8\u5149\u8292\u7167\u5c04\u5728\u4e00\u4e2a\u6241\u5e73\u7684\u739b\u96c5\u91d1\u5b57\u5854\u4e0a\uff0c\u903c\u771f\u81f3\u6781\uff0c\u8fd1\u8ddd\u79bb\u3002"} +{"id": "7001312", "video_name": "e05455ab-a54a-528f-9e9a-8aaeb6650b90", "text": "\u591c\u665a\u4ece\u5730\u7403\u4e0a\u5728\u7530\u91ce\u4e2d\u89c2\u770b\u7684\u5929\u7a7a\u4e2d\u7684\u5317\u6597\u4e03\u661f"} +{"id": "7001313", "video_name": "77fa4303-56ed-5193-a335-fde689e8fdbe", "text": "Maxima\u548c\u5176\u4ed6\u89d2\u6597\u58eb\u5e76\u4e0d\u5b64\u5355\uff1b\u7f57\u9a6c\u4eba\u6c11\u4e0e\u4ed6\u4eec\u540c\u5728\uff0c\u800c\u4e14\u662f\u4ee54k\u7684\u5f62\u5f0f\u3002"} +{"id": "7001314", "video_name": "44316eed-db7c-5ee0-90f5-b6d9263be2ea", "text": "\u6c60\u5858\u4e0a\u7684\u4e91\u5f69\uff0c\u914d\u4ee5\u4e00\u4e9b\u6811\u6728\u548c\u7eff\u8272\u690d\u7269\uff0c\u4ee5\u672a\u6765\u57ce\u5e02\u98ce\u683c\u3001\u955c\u50cf\u738b\u56fd\u3001\u52a8\u6f2b\u827a\u672f"} +{"id": "7001315", "video_name": "3fdcc896-4800-5104-9778-031428006fc5", "text": "\u56db\u4e2a\u4e0d\u540c\u7684\u5367\u5ba4\uff0c\u62e5\u6709\u56db\u4e2a\u4e0d\u540c\u7684\u4f4d\u7f6e\u548c\u8bbe\u8ba1\u7684\u5185\u90e8\u3002"} +{"id": "7001316", "video_name": "898c0b37-229c-5dc7-b693-ba9ec35c4994", "text": "\u6751\u6c11\u4eec\u88ab\u903c\u5230\u4e86\u75af\u72c2\u7684\u8fb9\u7f18\uff0c\u8bf7\u6c42\u5bbd\u6055\u3002"} +{"id": "7001317", "video_name": "861eaef5-4182-5b62-9a35-2ab11e595d8c", "text": "\u534a\u4eba\u534a\u673a\u5668\uff0c\u4e3a\u672a\u6765\u800c\u521b\u9020\u3002"} +{"id": "7001318", "video_name": "7b7462ac-3935-5737-bb6a-ac76757117d5", "text": "\u9a6c\u91cc\u4e9a\u7eb3\u6d77\u6c9f\u91cc\u7684\u673a\u5668\u4eba\u5728\u9ed1\u6697\u4e2d\uff0c\u5728\u90aa\u6076\u7684\u9c7c\u7fa4\u5468\u56f4\u3002"} +{"id": "7001319", "video_name": "90a189f9-cc07-5d13-94fc-ca92057977bc", "text": "\u4e00\u4f4d\u753b\u5bb6\u4ee5\u8428\u5c14\u74e6\u591a\u00b7\u8fbe\u5229\u7684\u98ce\u683c\u5728\u753b\u5e03\u4e0a\u4f5c\u753b\u3002"} +{"id": "7001320", "video_name": "7f67e8dd-b61e-5684-af91-888d5c6769a7", "text": "\u60f3\u8981\u4e00\u5ea7\u6709\u98ce\u7684\u677e\u6797\u3002"} +{"id": "7001321", "video_name": "73fb710c-f352-58cd-8e35-26c42e811e1f", "text": "\u4e00\u95f4\u5580\u62c9\u62c9\u6d77\u5cb8\u522b\u5885\uff0c\u72e9\u730e\u4e3b\u9898\uff0c\u591c\u665a\u6c1b\u56f4\u3002"} +{"id": "7001322", "video_name": "0e85a609-df9e-545c-adab-f9028c31c08f", "text": "\u76ae\u8102\u817a\u7ba1\u7684\u5f62\u6210\u8fc7\u7a0b\n\nSource sentence: I am learning Chinese.\n\u6211\u6b63\u5728\u5b66\u4e2d\u6587\u3002"} +{"id": "7001323", "video_name": "cd99feed-38fe-59d1-9b71-73ee6ecff442", "text": "\u573a\u666f1\uff1a\uff08\u6301\u7eed\u65f6\u95f4\uff1a4\u79d2\uff09\u7eb5\u6a2a\u6bd4\uff1a16:9 \u89c6\u89c9\u6548\u679c\uff1a\u7a7a\u767d\u7684\u9ed1\u8272\u7ec8\u7aef\u5c4f\u5e55\uff0c\u5e26\u6709\u95ea"} +{"id": "7001324", "video_name": "f5f946d4-b4c7-5e8e-9be5-2194024c7af5", "text": "\u6c34\u5751\u5e72\u4e86\uff0c\u53ea\u5269\u4e0b\u4e00\u4e2a\u767d\u70b9\u3002"} +{"id": "7001325", "video_name": "f52005c3-be29-5fe0-9185-39202a188487", "text": "\u4ed6\u4eec\u4f1a\u819c\u62dc\u592a\u9633\u795e\uff0c\u5e76\u5411Chhathi Maiya\u7948\u6c42\u751f\u80b2\u5b69\u5b50\uff0c\u5bb6\u5ead\u7684\u548c\u5e73\u4e0e\u7e41\u8363\u3002"} +{"id": "7001326", "video_name": "64a9bcd1-6c87-5bf6-b506-d33f2ee4bd4d", "text": "\u86cb\u767d\u8d28\u5728\u7ec6\u80de\u6838\u5185\u7684\u751f\u6210\uff0c\u539f\u59cb\u7167\u7247\u3002"} +{"id": "7001327", "video_name": "ce2b0b28-f2fe-5c20-88fa-63a562294a47", "text": "\u7a7f\u7740\u673a\u5668\u4eba\u670d\u7684\u5973\u58eb\u4e0d\u505c\u5730\u4f4e\u58f0\u8033\u8bed\u3002"} +{"id": "7001328", "video_name": "6d161882-2819-51c1-87e6-50246c265fbb", "text": "\u4e00\u4e2a\u5728\u6c99\u6f20\u91cc\u7684\u5973\u5b69\u6b63\u5728\u770b\u7740\u6211\u4eec\uff0c\u5979\u8eab\u540e\u662f\u6b7b\u5bc2\u7684\u6c99\u4e18\u3001\u6c99\u4e18\u810a\uff0c\u5973\u5b69\u60ca\u8bb6\u5730\u6307"} +{"id": "7001329", "video_name": "ad9b83c3-5e2a-5b43-a22e-fdd704eb2645", "text": "\u7535\u89c6\u8282\u76ee\u4e3b\u6301\u4eba\u53d7\u63a7\u4e8e\u8bb2\u8bdd\u7cbe\u82f1\uff0c\u5e26\u6709\u54c1\u724c\u3002"} +{"id": "7001330", "video_name": "183cfcf2-6096-5d6b-a182-03ad798cc1b6", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u955c\u5b50\u524d\u5403\u6c49\u5821\uff0c15\u79d2\u949f\u5185\u51cf\u80a5\u3002\n\nSource sentence: I love to travel and explore new cultures. \n\n\u6211\u559c\u6b22\u65c5\u884c\uff0c\u63a2"} +{"id": "7001331", "video_name": "43c03fa8-0635-5aa4-b794-62ee2d34ec2b", "text": "\u4e00\u4e2a\u9776\u5fc3\u6e38\u620f\uff0c\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001332", "video_name": "b0bfe1b3-ac64-5318-a6c3-2cb9a31e5796", "text": "\u56fe\u50cf\u5c55\u793a\u4e86\u4e0d\u540c\u7c7b\u578b\u7684\u5e01\u79cd\u53ca\u5176\u7b26\u53f7\u548c\u989c\u8272\u3002\u5b83\u4eec\u56f4\u7ed5\u7740\u4ee3\u8868\u4e16\u754c\u7684\u5730\u7403\u6392\u5217\u3002\u6587\u672c\u4e0a\u5199\u7740\u201c\u52a0\u5bc6"} +{"id": "7001333", "video_name": "0b856f48-ef43-5537-b780-2577cda8f74a", "text": "\u8d85\u4eba\u5728\u900f\u660e\u80cc\u666f\u4e0a\u644a\u624b\u3002"} +{"id": "7001334", "video_name": "7793e6ea-4465-50ae-af45-71c5eb6a6031", "text": "\u7535\u5f71\u822c\u7684\u5f71\u7247\uff0c\u98ce\u683c\u7531\u514b\u91cc\u65af\u6258\u5f17\u00b7\u8bfa\u5170\uff0c\u4e9a\u5f53\u00b7\u53f2\u5bc6\u65af\u5728\u4ed6\u7684\u623f\u95f4\u91cc\u9605\u8bfb\u548c\u5199\u4f5c\uff0c"} +{"id": "7001335", "video_name": "8ab27972-1791-5995-a384-760198546252", "text": "\u53ef\u7231\u7684\u9ca8\u9c7c\u5973\u5b69\uff0c\u6709\u7eff\u8272\u7684\u773c\u775b\u3001\u950b\u5229\u7684\u7259\u9f7f\u548c\u5feb\u4e50\u7684\u5fae\u7b11\uff0c\u5168\u8eab\u90fd\u662f\u3002\u52a8\u6f2b"} +{"id": "7001336", "video_name": "5b47e5bf-e6f0-534a-b11c-d4f07190a11a", "text": "\u4e00\u5e45\u6708\u4e0b\u6e56\u7554\u7684\u666f\u8c61\uff0c\u6c34\u9762\u5e73\u9759\uff0c\u5012\u6620\u7740\u7e41\u661f\u70b9\u70b9\u7684\u5929\u5e55\u3002\u4e00\u8258\u5b64\u821f\u7f13\u7f13\u6f02"} +{"id": "7001337", "video_name": "8cd46a33-57ad-5470-a45d-d94681bde4f7", "text": "\u4ee4\u4eba\u5bb3\u6015\u7684\u72c2\u6012\u73a9\u5177\u5728\u4e00\u4e2a\u745e\u5178\u5c0f\u9547\u4e0a\u51fa\u6ca1\u3002\u7535\u5f71\u611f\u30021973\u5e74\u3002\u5bbd\u5c4f\u5e55\u3002Panavision\u3002"} +{"id": "7001338", "video_name": "ba6cf7cb-e8cd-5b98-a473-16dabf64a346", "text": "\u521b\u9020\u4e00\u4e2a\u7167\u4eae\u7684\u5723\u4e66\u5f62\u8c61\uff0c\u4ee5\u7535\u5f71\u98ce\u683c\u5c55\u793a\u5e0c\u4f2f\u6765\u8bed\u76848k\u5b57\u3002"} +{"id": "7001339", "video_name": "3a6560b5-f993-52e2-b71f-e0cdb4af4c4d", "text": "\u4e00\u4e2a\u5728\u6d77\u6ee9\u4e0a\u7684\u5a74\u513f\uff0c\u771f\u5b9e\u53ef\u4fe1\u3002"} +{"id": "7001340", "video_name": "fa51f047-b4d3-5ec0-ade2-ce695c8b8bc4", "text": "\u6c22\u7684\u5468\u671f\u8868\u7b26\u53f7\u548c\u76d2\u5b50"} +{"id": "7001341", "video_name": "688e8685-f61e-55f3-a04d-a0d630ec1924", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8d70\u8def\uff0c\u8d70\u5728\u8d5b\u535a\u670b\u514b\u57ce\u5e02\u4e2d\uff0c\u5468\u56f4\u98de\u7740\u7c92\u5b50\uff0c\u5929\u7a7a\u4e2d\u6709\u4e91\u3002"} +{"id": "7001342", "video_name": "224bd9c2-f664-57e9-b714-661c3e0cf160", "text": "\u4e00\u6bb5\u6c38\u65e0\u6b62\u5883\u7684\u8ffd\u8e2a\u955c\u5934\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u5973\u4eba\u4fa7\u8eab\u884c\u8d70\u7684\u753b\u9762\u3002\u5979\u4ece\u5934\u5230\u811a\u90fd\u6e05\u6670\u53ef\u89c1\uff0c"} +{"id": "7001343", "video_name": "1aeaec8a-97d6-5dad-b5f1-6f0eba80b0e3", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u8001\u6751\u5e84\u91cc\u4e70\u4e86\u4e00\u4efd\u51b0\u6fc0\u51cc\uff0c16:9\u79fb\u52a8\u753b\u97622\u3002"} +{"id": "7001344", "video_name": "985d2724-c047-5ef5-8f00-3661cde1282d", "text": "\u6c34\u6ce1\u4e0d\u65ad\u6210\u957f\u548c\u7834\u88c2\uff0c\u62bd\u8c61\uff0c\u4e09\u7ef4\u3002"} +{"id": "7001345", "video_name": "9173b454-dad9-5533-8129-e7288c621227", "text": "\u5728\u4e00\u4e2a\u660f\u6697\u7684\u6d1e\u7a74\u91cc\uff0c\u5899\u4e0a\u63cf\u7ed8\u7740\u53e4\u8001\u7684\u5370\u5ea6\u6559\u7b26\u53f7\uff0c\u63cf\u7ed8\u4e86\u795e\u79d8\u4eba\u7269\u5361\u514b\u5e03"} +{"id": "7001346", "video_name": "644ffee8-4dd1-52c9-b009-bc7f35ac7119", "text": "\u9f99\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u7684\u7535\u5f71\u955c\u5934"} +{"id": "7001347", "video_name": "d6efea89-3b8d-5ef2-8469-34c184d0facd", "text": "\u4e00\u5e45\u8c61\u5f81\u7740\u5b64\u72ec\u7684Shezo\u8fdb\u5165\u65b0\u9636\u6bb5\u548c\u65b0\u5f00\u59cb\u7684\u8c61\u5f81\u6027\u95e8\u6237\u7684\u56fe\u50cf\u3002\u52a8\u753b\u5361\u901a"} +{"id": "7001348", "video_name": "fd163074-4f69-5a36-8ca0-e9923d6c711d", "text": "\u5c06\u5b83\u4eec\u5f52\u4e3a\u4f2a\u79d1\u5b66\u548c\u9634\u8c0b\u8bba\u7684\u8303\u7574\u3002"} +{"id": "7001349", "video_name": "ceaa1c65-dbc3-577f-9a76-f51f9e84b65d", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u732b\u54aa\u5750\u5728\u84ec\u677e\u7684\u5e8a\u4e0a\uff0c\u5fae\u7b11\u7740\u770b\u7740\u6211\u3002\u6211\u8eab\u540e\u6709\u4e00\u6247\u7a97\u6237\uff0c\u53ef\u4ee5\u770b\u5230\u67d4"} +{"id": "7001350", "video_name": "888f61a2-f464-5524-96fa-2f53b1373fec", "text": "\u5728\u7f8e\u4e3d\u7684\u592a\u7a7a\u80cc\u666f\u4e0b\u603b\u7ed3; ChatGPT\u4f20\u9012\u53cb\u597d\u7684\u4fe1\u606f\uff0c\u4ea7\u751f\u7c92\u5b50\u6548\u679c\u5f62\u6210\u5fae\u7b11\u8868\u60c5\uff0c\u9080\u8bf7\u4e00\u8d77\u63a2\u7d22\u3002"} +{"id": "7001351", "video_name": "746e5bf5-a973-5648-88da-73ccd692375e", "text": "\u4e00\u4e2a\u5e26\u6709\u9e7f\u89d2\uff0c\u773c\u775b\u53d1\u5149\uff0c\u5634\u5df4\u5f20\u5f00\u7684\u7537\u4eba\u7684\u903c\u771f\u767d\u8272\u5c0f\u96d5\u50cf\u3002"} +{"id": "7001352", "video_name": "1ef2cbee-c56b-5a08-b8cd-f1aa67ae0a38", "text": "\u5728\u673a\u573a\u8d70\u5411\u767b\u673a\u53e3\u7684\u7537\u4eba\u3002"} +{"id": "7001353", "video_name": "607270ee-680c-5baa-9b01-0dd161a92655", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u673a\u5668\u9f99\u5728\u5ca9\u77f3\u4e0a\u884c\u8d70\u3002"} +{"id": "7001354", "video_name": "170839d8-b79b-5557-9105-32d63a45f078", "text": "\u4e00\u90e8\u5173\u4e8e\u5de5\u7a0b\u5b66\u7684\u7535\u89c6\u8282\u76ee\u7684\u573a\u666f"} +{"id": "7001355", "video_name": "239e52dc-b149-50c8-af5f-2052be12f7be", "text": "\u4e00\u8f86\u8c6a\u534e\u8f7f\u8f66\u5728\u5723\u8bde\u8282\u524d\u5915\u884c\u9a76\u5728\u57ce\u5e02\u8857\u9053\u4e0a\uff0c\u88ab\u5723\u8bde\u88c5\u9970\u73af\u7ed5\u7740\u3002"} +{"id": "7001356", "video_name": "64f54610-dbcf-5ce6-94f7-58dcec830f39", "text": "Translation: \u5982\u679c\u300a\u57c3\u5c14\u767b\u73af\u300b\u662f\u4e00\u90e8\u52a8\u753b\u7247\u3002"} +{"id": "7001357", "video_name": "4a11ed06-329b-5b42-bb67-028474a1a87f", "text": "\u6307\u7532\u4e0a\u7684 QR \u7801"} +{"id": "7001358", "video_name": "218b52f5-51c2-5106-b49b-b17b1437225c", "text": "\u6211\u6361\u8d77\u5c0f\u4e4c\u9f9f\uff0c\u5979\u7b11\u4e86\u3002"} +{"id": "7001359", "video_name": "dbe5880a-cce9-5dd8-9278-50a754287248", "text": "1970\u5e74\u4ee3\u5486\u54ee\u7684\u732b\u653b\u51fb\u4e86\u4e00\u4e2a\u4eba\u3002"} +{"id": "7001360", "video_name": "62915ae3-ec9e-5fec-9f63-c383cee6405d", "text": "\u4f4d\u4e8e\u8d77\u4f0f\u7684\u5c71\u4e18\u4e4b\u95f4\uff0c\u88ab\u68ee\u6797\u73af\u7ed5\u7684\u6d77\u5c14\u5fb7\u96f7\u5fb7\u6751\u5e84\u7684\u63d2\u56fe\u3002"} +{"id": "7001361", "video_name": "b1ccace0-1e61-5a83-854e-5ccf0a91a11e", "text": "\u53e4\u8001\u7684\u53e4\u57c3\u53ca\u7206\u53d1\u6218\u4e89\u3002\u6728\u4e43\u4f0a\u5012\u584c\u5e76\u7834\u788e\u3002"} +{"id": "7001362", "video_name": "07df0f3a-8e64-59ee-9aca-72389d90d2ed", "text": "\u6dd8\u6c14\u7684\u677e\u9f20\u8dd1\u8fdb\u51a5\u60f3\u5385\uff0c\u5f15\u8d77\u4e86\u4e00\u7247\u9a9a\u52a8\u3002\u5176\u4ed6\u7684\u50e7\u4fa3\u4eec\u90fd\u4e0d\u6ee1\u5730\u7ad9\u8d77\u6765\uff0c\u751a\u81f3\u6709"} +{"id": "7001363", "video_name": "1d3b62d8-d176-5dde-ae8f-c65b9176b661", "text": "20\u4e16\u7eaa60\u5e74\u4ee3\u7684\u53e4\u8463\u7535\u5f71\u7247\u6bb5\uff0c\u5c55\u793a\u4e86\u62ab\u5934\u58eb\u4e50\u961f\u6f14\u594f\u97f3\u4e50\u7684\u573a\u666f\u3002"} +{"id": "7001364", "video_name": "241d8cf7-ef5f-53b7-8bfc-b6ac972571e2", "text": "\u8001\u4e66\uff0c\u590d\u53e4\u80cc\u666f\uff0c\u7ffb\u52a8\u7684\u4e66\u9875\u3002"} +{"id": "7001365", "video_name": "8726f61e-b0a4-5863-ba41-fcd7f688c429", "text": "\u4e00\u4e2a\u6c49\u5821\u4ea7\u54c1\u62cd\u6444\uff0c\u5de5\u4f5c\u5ba4\u62cd\u6444\uff0c\u6e05\u6670\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u5168\u9ad8\u6e054K\uff0c\u666f\u6df1\uff0c\u7279\u5199\u7f29\u653e\u3002"} +{"id": "7001366", "video_name": "5d6ac8f5-60b4-54a1-8d88-502e167fb610", "text": "\u4e00\u4e2a\u89c6\u9891\u5c55\u793a\u4e86\u591c\u665a\u8857\u706f\u7167\u4eae\u7684\u623f\u5b50\uff0c\u5899\u4e0a\u6295\u5f71\u51fa\u68a6\u5883\u548c\u8bb0\u5fc6\u7684\u573a\u666f\u3002"} +{"id": "7001367", "video_name": "40576dac-4574-5784-82f2-1138a2f2f8be", "text": "\u53ea\u6709\u96ea\u6709\u52a8\u9759\uff0c\u623f\u95f4\u91cc\u6ca1\u6709\u96ea\u3002\u53ea\u6709\u5916\u9762\u7684\u96ea\u6709\u52a8\u9759\u3002\u7b2c\u4e00\u5e27\u548c\u6700\u540e\u4e00\u5e27\u5fc5\u987b\u76f8\u540c\u3002\u5973\u5b69\u6ca1\u6709\u52a8"} +{"id": "7001368", "video_name": "da43ee8b-7ad4-5037-94cd-33ef0900a99e", "text": "\u7a7f\u7740\u4e94\u5f69\u7f24\u7eb7\u661f\u9645\u670d\u88c5\u7684\u5fd9\u788c\u4eba\u7269\u5728\u76d6\u7ae0\u548c\u5904\u7406\u6587\u4e66\u3002\u5468\u56f4\u662f\u5404\u79cd\u827a\u672f\u54c1\u548c\u624b\u5de5\u5236\u54c1\u3002"} +{"id": "7001369", "video_name": "6aa19c6f-5e5b-5d45-9989-3437058d18b7", "text": "\u4e0b\u5348\u597d\uff0c\u6211\u4eec\u7684\u516c\u53f8Virtual VGR\u6b63\u5728\u6269\u5f20\uff0c\u56e0\u6b64\u6211\u4eec\u6b63\u5728\u5bfb\u627e\u65b0\u5458\u5de5\u52a0\u5165\u6211\u4eec\u5728Dnipro\u5e02\u7684\u56e2\u961f\u3002\n\n\u76f4\u63a5\u7ecf\u7406\n\n\u6211\u4eec\u7684\u7a7a\u7f3a\u804c"} +{"id": "7001370", "video_name": "5729625b-b4be-5bec-b777-4c94da14cbfc", "text": "\u4e00\u6bb5\u9ad8\u6e054K\u5206\u8fa8\u7387\u7684\u89c6\u9891\uff0c\u5c55\u793a\u4e86\u4e00\u4e2a\u4eba\u9762\u5411\u559c\u9a6c\u62c9\u96c5\u5c71\u8109\u7684\u96ea\u5c71\uff0c\u4f4d\u4e8e\u82f1\u5c5e\u5370\u5ea6\u3002"} +{"id": "7001371", "video_name": "3d60007b-a99c-5268-8223-2014f2fd75c0", "text": "\u52a8\u6f2b\u98ce\u683c\u7684\u7537\u5b69\u5728\u4e1b\u6797\u4e2d\u9a91\u81ea\u884c\u8f66\uff0c\u524d\u666f\u5e95\u90e8\u62cd\u6444\uff0c\u6668\u666f\u3002"} +{"id": "7001372", "video_name": "d33a86c5-7611-5d99-8e83-f26f4f0aeb6e", "text": "\u4e00\u6bb5\u653e\u5728\u6728\u684c\u4e0a\u7684\u70ed\u8611\u83c7\u6c64\u89c6\u9891"} +{"id": "7001373", "video_name": "0c61bff9-2f52-5784-83fc-a0e2e5768915", "text": "\u4e00\u53ea\u5de8\u5927\u7684\u6d77\u602a\u88ad\u51fb\u4e86\u4e00\u8258\u897f\u73ed\u7259\u8239\u53ea\uff0c\u5c06\u5176\u6c89\u6ca1\u81f3\u672a\u77e5\u7684\u6d77\u57df\uff0c4k\u3002"} +{"id": "7001374", "video_name": "7a4facc6-a43c-5f37-bee9-ffae14714edf", "text": "\u4e00\u4f4d\u540d\u53eb\u838e\u62c9\u7684\u5973\u5b69\u6b63\u5728\u89c2\u770b3D\u30014K\u7684\u516c\u8def\u89c6\u9891\u3002"} +{"id": "7001375", "video_name": "0cd09315-daca-536c-86b9-9530b3089491", "text": "\u4e00\u53ea\u5de8\u578b\u8725\u8734\u6b63\u5728\u653b\u51fb\u4e00\u4e2a\u6ce5\u571f\u573a\u5730\u3002\u6355\u6349\u5b83\u79fb\u52a8\u65f6\u773c\u4e2d\u7684\u6124\u6012\u3002\u7167\u7247\u822c\u903c\u771f\uff0c8"} +{"id": "7001376", "video_name": "e700479d-6620-5191-a2aa-99adfdf9c89c", "text": "\u5012\u4e0b\u7684\u591a\u7c73\u8bfa\u9aa8\u724c\u3002\u4fe1\u606f\uff1a\u592a\u7a7a\u6536\u85cf\u5bb6\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7001377", "video_name": "e2bb88d8-a757-51e9-9745-88cf5a2bc733", "text": "\u8349\u5730\u5e94\u8be5\u5ef6\u4f38\u5230\u773c\u775b\u6240\u80fd\u770b\u5230\u7684\u5730\u65b9\uff0c\u5728\u6b63\u5348\u9633\u5149\u7684\u67d4\u548c\u91d1\u8272\u4e2d\u6c90\u6d74\u3002"} +{"id": "7001378", "video_name": "b6353304-ee0c-5f45-a012-99be6cda4d90", "text": "\u8fd9\u4e2a\u5316\u5986\u54c1\u724c\u4e0d\u4ec5\u5728\u6211\u7684\u56fd\u5bb6\u6709\u540d\uff0c\u5728\u5168\u4e16\u754c\u90fd\u5f88\u6709\u540d\u3002"} +{"id": "7001379", "video_name": "7331ebd4-6e31-59aa-8784-ad95948318a7", "text": "\u5361\u901a\u7ea2\u5fc3\u5973\u738b\u548c\u4e00\u4e2a\u9b3c\u9b42\u3002"} +{"id": "7001380", "video_name": "3533ce57-0ba6-59b1-8ace-a504791abdf5", "text": "\u7b2c\u4e00\u573a\u666f\u805a\u7126\u4e8e\u90a3\u4f4d\u7a77\u4eba\u5728\u68ee\u6797\u4e2d\u884c\u8d70\uff0c\u5bfb\u627e\u98df\u7269\u6765\u517b\u6d3b\u4ed6\u7684\u5bb6\u4eba\u3002"} +{"id": "7001381", "video_name": "ac114874-9b1d-5e84-b4bd-8062441c749e", "text": "\u8036\u7a23\u57fa\u7763\u518d\u6765\u7684\u6807\u5fd7\u4e4b\u4e00\u7ecf\u5e38\u4e0e\u5168\u7403\u52a8\u8361\u76f8\u5173\u8054\u3002 \u6218\u4e89\uff0c\u51b2\u7a81\u548c\u81ea\u7136\u707e\u5bb3\u88ab\u89c6\u4e3a\u5bfc\u81f4\u7b2c\u4e8c"} +{"id": "7001382", "video_name": "28d3e852-169c-54c6-9232-80a783cd3c82", "text": "\u4e00\u53ea\u6d77\u8c5a\u6e38\u6cf3\u6355\u6349\u4e00\u6761\u91d1\u67aa\u9c7c\u3002"} +{"id": "7001383", "video_name": "a17e2a65-08b8-564a-944f-bbbe98f6e785", "text": "\u4e00\u5f20\u7a7a\u767d\u7684\u7f8a\u76ae\u7eb8\uff0c\u94a2\u7b14\u5c16\uff0c\u767d\u8272\u80cc\u666f\uff0c\u7ea2\u8272\u73ab\u7470\uff0c\u7f8e\u4e3d\u7684\u6c1b\u56f4\uff0c\u9b54\u529b\uff0c"} +{"id": "7001384", "video_name": "087149fd-bd5d-596e-a24d-0ef6d723cabe", "text": "\u592b\u59bb\u5df2\u7ecf\u7ed3\u5a5a12\u5e74\u4e86\uff0c\u4ed6\u4eec\u6b63\u5728\u5bb6\u91cc\u5750\u5728\u4e00\u8d77\u3002"} +{"id": "7001385", "video_name": "327f2905-9e21-5ad8-ba61-293172ff7762", "text": "\u4e16\u754c\u5927\u6218\u7684\u8df3\u821e\u673a\u5668"} +{"id": "7001386", "video_name": "ed35ecb9-4356-5ac4-8e2f-ce90b4f1f6bc", "text": "\u6218\u6597\uff0c\u6069\u5947 VS \u5b99\u65af\uff0c4K\u9ad8\u5206\u8fa8\u7387\uff0c\u5728\u80cc\u666f\u4e2d\u662f\u7c7b\u4f3c\u8857\u5934\u9738\u738b\u7684\u4eba\u7269\uff0c\u96f7\u7535\u98ce\u66b4\uff0c"} +{"id": "7001387", "video_name": "953f5623-93cc-5ca0-aef6-34ee0a9e8540", "text": "\u5c0f\u5973\u5b69\u5728\u6c34\u5751\u4e0a\u73a9\u800d\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u3002"} +{"id": "7001388", "video_name": "29c71aaa-6019-5e29-86ed-86070b859b3c", "text": "\u516c\u56ed\u7684\u63d2\u56fe\uff0c\u753b\u6709\u4e00\u68f5\u6811\u548c\u79cb\u5343\uff0c\u5b69\u5b50\u4eec\u5728\u7eff\u8349\u5730\u4e0a\u73a9\u800d\u5954\u8dd1\uff0c\u8be6\u7ec6\u7ed8\u5236\uff0c\u98ce"} +{"id": "7001389", "video_name": "4db8a83c-14b0-5cf3-bbfa-8d587e4ecbf1", "text": "\u5149\u7ebf\u53cd\u5c04\u5728\u94c1\u4e1d\u7f51\u4e0a\u30021\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001390", "video_name": "902e9228-ce9b-5637-9c66-bf51bc2162eb", "text": "\u684c\u5b50\u4e0a\u521a\u521a\u6d17\u8fc7\u7684\u9c9c\u8273\u7ea2\u7eff\u8272\u5c0f\u5c16\u8fa3\u6912\u770b\u8d77\u6765\u975e\u5e38\u8fa3\u4f46\u975e\u5e38\u8bf1\u4eba\u3002"} +{"id": "7001391", "video_name": "6f310f57-6564-510d-b630-6b43287cec4a", "text": "\u4f5b\u9640\u4e0e\u5b89\u53e4\u4e3d\u739b\u5c14\u56de\u8bdd\uff0c\u524d\u5f80\u68ee\u6797\u3002"} +{"id": "7001392", "video_name": "65c4bd9f-c83b-58ff-82eb-8e00155c3cdf", "text": "\u4ece\u5730\u7403\u5230\u6708\u7403\u7684\u7b2c\u4e00\u4eba\u79f0\u89c6\u89d2\u3002"} +{"id": "7001393", "video_name": "e7c881c1-d1f7-50b7-be8e-5b75bc051bf1", "text": "\u767d\u8272\u80cc\u666f\uff0c\u7537\u5b69\u8bf4\u8bdd\u89e3\u91ca\uff0c\u811a\u4e0b\u6709\u4e00\u53ea\u732b\u3002"} +{"id": "7001394", "video_name": "6f4aabc8-6262-5075-8e6d-3945666499bf", "text": "\u4e00\u4e2a1940\u5e74\u4ee3\u7684\u7c97\u7cd9\u7684\u5170\u5fb7\u9ea6\u514b\u7eb3\u5229\u5f0f\u63d2\u56fe\uff0c\u63cf\u7ed8\u4e00\u5bf9\u7537\u5973\u624b\u7275\u624b\u8d70\u5411\u8fdc\u5904\u7684\u5915"} +{"id": "7001395", "video_name": "4eb6a5d6-3912-5632-839b-957d5e9eba9c", "text": "\u8d70\u5728\u68ee\u6797\u4e2d\u7684\u63a7\u5236\u673a\u68b0\u751f\u7269"} +{"id": "7001396", "video_name": "8b1fc490-d762-5598-9792-bf1ab6dddb44", "text": "\u4ece\u9a7e\u9a76\u8231\u89d2\u5ea6\u89c2\u5bdf\u5c0f\u72d7\u548c\u5c0f\u732b\u5f00\u8f66\uff0c\u8fdb\u884c\u7f29\u653e\u3002"} +{"id": "7001397", "video_name": "bef608a4-1047-566f-b324-ddce848295f7", "text": "\u628a\u8fd9\u53e5\u8bdd\u53d8\u6210\u65e9\u4e0a\u597d\uff0c\u5e76\u4e14\u4e0a\u4e0b\u6447\u6643\u5934\u90e8\u3002 \n\nSource sentence: I am excited to explore the city and try new foods. \n\u6211\u5f88\u5174\u594b\u53bb"} +{"id": "7001398", "video_name": "403dc997-cd30-52f0-a0df-fed847016b8b", "text": "\u4e24\u4e2a\u8003\u53e4\u5b66\u5bb6\u5728\u6c99\u6f20\u4e2d\u6cb9\u4e95\u65c1\u4ea4\u8c08\u3002"} +{"id": "7001399", "video_name": "0f062e0e-e954-5429-bbe2-9702dff43fd1", "text": "\u5efa\u7acb\u4e00\u4e2a\u7b80\u5355\u7684 TMT \u94a2\u7b4b\u5efa\u7b51\u89c6\u9891\u3002"} +{"id": "7001400", "video_name": "73d92235-319f-5e55-9b4e-dd2327a2dd6c", "text": "Translation: \u70df\u7ea2\u8272\u7684\u5916\u58f3\u662f\u5fae\u7b11\u548c\u6b22\u7b11\u3002"} +{"id": "7001401", "video_name": "3b7750e0-2e32-5451-8388-4039e5877c80", "text": "\u201c\u52a8\u7269\u65b9\u57ce\u5e02\u201d\u4ece\u7535\u89c6\u4e2d\u8d70\u51fa\u6765\uff0c\u5c31\u50cf\u8fdb\u5165\u4e86\u73b0\u5b9e\u4e16\u754c\u3002"} +{"id": "7001402", "video_name": "98d872d1-c7af-574d-b418-4a47887b6396", "text": "\u4e00\u4f4d\u5b87\u822a\u5458\u548c\u4e00\u4f4d\u5916\u661f\u4eba\u5728\u4e00\u4e2a\u9065\u8fdc\u7684\u661f\u7403\u4e0a\uff0c\u591a\u4e2a\u6708\u4eae\u4e0b\u4ea4\u6362\u793c\u7269\uff0c\u4f7f\u75283D\u3001Pixar\u98ce\u683c\uff0c\u901f\u5ea66x"} +{"id": "7001403", "video_name": "f2523463-9eb1-5443-a816-e26b9c796805", "text": "\u4e2d\u666f\uff0c\u57c3\u8389\u5a1c\u548c\u5362\u5361\u65af\u8eba\u5728\u5e8a\u4e0a\uff0c\u683c\u857e\u65af\u9152\u5e97\u5723\u6258\u91cc\u5c3c\uff0c\u62e5\u62b1\u7740"} +{"id": "7001404", "video_name": "70bd028d-9a30-501c-8bae-deb3c54a68cb", "text": "\u4e00\u4e2a\u5c0f\u7537\u5b69\u56e0\u4e3a\u4ed6\u7684\u51b0\u6dc7\u6dcb\u6389\u5230\u5730\u4e0a\u800c\u54ed\u6ce3\u3002\u63a5\u7740\uff0c\u4e00\u53ea\u72d7\u6765\u4e86\u5e76\u7ed9\u4e86\u4ed6\u4e00\u4e2a\u65b0\u7684\u51b0\u6dc7\u6dcb"} +{"id": "7001405", "video_name": "4eaa4fd0-c9f7-5131-b605-6a134912fe2b", "text": "\u6c83\u5c14\u7279\u00b7\u6000\u7279\u4e0e\u53e4\u65af\u00b7\u5f17\u6797\u548c\u8fc8\u514b\u7684\u9ecf\u571f\u52a8\u753b\u3002"} +{"id": "7001406", "video_name": "11304169-660f-5746-8f95-6967cc0b0812", "text": "\u4e00\u4f4d\u6f02\u4eae\u7684\u5973\u5b69\u505c\u7559\u5728\u8857\u4e0a\uff0c\u957f\u53d1\u98d8\u98d8\uff0c\u5fae\u7b11\u7740\u3002"} +{"id": "7001407", "video_name": "d636450f-aadb-5a63-914a-532e3d64fa42", "text": "\u5bb6\u98de\u5531\u6b4c\u65f6\uff0c\u5979\u7684\u5934\u53d1\u88ab\u98ce\u5439\u52a8\uff0c\u80cc\u666f\u662f\u6930\u5b50\u6811\u6d77\u6ee9\u3001\u84dd\u8272\u6cfb\u6e56\u548c\u9f99\u3002"} +{"id": "7001408", "video_name": "94ad6684-e6d1-529a-a87f-af59c608c955", "text": "\u5efa\u7b51\u5468\u56f4\u7684\u7535\u78c1\u8109\u51b2\uff0c\u4fef\u89c6\u56fe\uff0c\u95ea\u7535\uff0c\u84dd\u8272\u7535\u51fb\u7206\u70b8\u3002"} +{"id": "7001409", "video_name": "c3c1bef2-eebf-5288-a04c-c003f59bae80", "text": "\u6700\u7ec8\u4e4b\u6218\u7684\u6d77\u8d3c\u738b"} +{"id": "7001410", "video_name": "141bc5a5-aea5-5d7e-806a-ba6705956e85", "text": "\u6700\u4f73\u54c1\u8d28\uff0c8K\uff0c32K\uff0c\u6770\u4f5c\uff0c\u5168\u666f\uff0c\u9762\u5411\u76f8\u673a\uff0c\u82d7\u6761\uff0c\u91cd\u8981\u516c\u53f8\u7684CEO\uff0c\u8fd0\u52a8\u578b\uff0c\u6700\u77ed\u7684\u6de1\u91d1\u8272\u5934\u53d1"} +{"id": "7001411", "video_name": "41fc6ef6-37b1-5ea0-a22e-567fbd485282", "text": "\u5192\u9669\u5bb6\u4eec\u5728\u8fea\u62dc\u54c8\u5229\u6cd5\u5854\u4e2d\u7ecf\u5386\u4e86\u8bb8\u591a\u6311\u6218\uff0c\u5176\u4e2d\u5305\u62ecMinecraft\u7684\u602a\u7269\u548c\u7ea2\u77f3\u8c1c\u9898\u3002\u4ed6\u4eec\u5c55"} +{"id": "7001412", "video_name": "a8f5b6e4-544c-5d1f-99d8-f40ffbedded8", "text": "\u4e00\u53ea\u732b\u5728\u4f38\u5c55\u548c\u6253\u54c8\u6b20\u3002"} +{"id": "7001413", "video_name": "22077676-3cb0-5184-b4e3-1922c76825d0", "text": "\u5e7d\u7075\u7684\u7075\u9b42\u5728\u6708\u4eae\u548c\u661f\u661f\u7684\u7167\u8000\u4e0b\u6f02\u5411\u6559\u5802\u3002"} +{"id": "7001414", "video_name": "078b264b-5d59-5a75-99a3-26140dec6bea", "text": "\u521b\u9020\u4e00\u4e2a\u8d85\u73b0\u4ee3\u7684\u4f4f\u5b85\u6e32\u67d3\u56fe\uff0c\u8fd9\u680b\u623f\u5b50\u914d\u6709\u592a\u9633\u80fd\u7535\u6c60\u677f\u548c\u7edd\u70ed\u7a7a\u6c14\u53d1\u751f\u5668\uff0c\u623f\u5b50"} +{"id": "7001415", "video_name": "02f4ca7c-b04a-533a-808d-df4e5983bf58", "text": "\u7535\u5f71\u98ce\u683c\u3002\u4e00\u4f4d\u6280\u672f\u5236\u4f5c\u4eba\u5728\u4e00\u4e2a\u8352\u829c\u7684\u5730\u65b9\u6f14\u594f\u4ed6\u7684\u5408\u6210\u5668\u3002\u975e\u5e38\u795e\u79d8\u7684\u5730\u65b9\u548c\u9ed1\u6697\u7684\u80cc\u666f"} +{"id": "7001416", "video_name": "a0d33ecb-3866-59fd-9f7f-dd2cccee8e91", "text": "\u5370\u5ea6\u5973\u58eb\u7a7f\u7740\u6cf3\u8863\u671d\u592a\u9633\u65b9\u5411\u8d70\u53bb\u3002"} +{"id": "7001417", "video_name": "ab45ad2a-de5f-5108-99cd-20f3a697d650", "text": "\u5c55\u793a\u4e00\u4f4d\u8239\u5458\u4e0e\u5bb6\u4eba\u901a\u7535\u8bdd\u7684\u771f\u631a\u753b\u9762\uff0c\u65c1\u8fb9\u653e\u7740\u4ed6\u4eec\u6240\u7231\u7684\u4eba\u7684\u7167\u7247\u3002"} +{"id": "7001418", "video_name": "e7ef083f-63a5-51fa-b957-51160399fce4", "text": "\u82b1\u98d8\u843d\uff0c\u4eba\u5fae\u7b11\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001419", "video_name": "3d997a1e-b748-5678-bb5d-ca8f4cb89cc6", "text": "\u751f\u6210\u4e00\u4e2a\u4e1c\u4e9a\u7f8e\u5973\u5728\u98ce\u4e2d\u5fae\u7b11\u7684\u89c6\u9891\u3002"} +{"id": "7001420", "video_name": "46205266-ea63-569b-8928-a15aa89b9176", "text": "\u672a\u6765\u57ce\u5e02\u666f\u8c61\uff0c\u7f51\u7edc\uff0c\u84dd\u8272\u3002\u4fe1\u606f\uff1a\u84dd\u8272\u805a\u7126\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7001421", "video_name": "fcba99c7-fcb4-5670-864f-8c8b74902c08", "text": "\u4e3a\u8fd9\u5f20\u6807\u5fd7\u7740\u4ee5\u6df7\u5408\u6b66\u672f\u4e3a\u57fa\u7840\u7684\u65b0\u95fb\u95e8\u6237\u7f51\u7ad9\u7684\u56fe\u7247\u521b\u4f5c\u4e00\u4e2a\u4ecb\u7ecd\u52a8\u753b\u3002"} +{"id": "7001422", "video_name": "7143ea3f-0a1b-54d5-8605-3f2db6f522d9", "text": "\u4e00\u8f86\u6c7d\u8f66\u7a81\u7136\u51fa\u73b0\u4e86\u4e00\u8258\u5916\u661f\u98de\u8239\u4ece\u5929\u7a7a\u964d\u843d\u3002"} +{"id": "7001423", "video_name": "6fa9b7a0-465d-5442-a0e6-105533d9aaec", "text": "\u5927\u536b\u00b7\u6797\u5947\u7684\u7535\u5f71\u4e2d\uff0c\u5728\u660f\u6697\u7684\u5ba2\u5385\u91cc\uff0c\u9ed1\u53d1\u9ed1\u5218\u6d77\u906e\u4f4f\u773c\u775b\u7684\u5927\u8c61\u5973\u5b69\u7a7f\u7740\u7ea2\u8272"} +{"id": "7001424", "video_name": "33f5c1f2-5de2-534e-b81d-a06492f11da1", "text": "\u8d85\u7ea7\u6a21\u7279\u5728\u65f6\u88c5\u79c0\u4e0a\u8d70\u79c0\u300216\u5343\u3002"} +{"id": "7001425", "video_name": "9276148f-f718-5fe4-b80d-0fb48b2639e3", "text": "\u4e00\u76c6\u6709\u9999\u5473\u7684\u8721\u70db\u6b63\u5728\u51a5\u60f3\u5ba4\u7684\u4e2d\u95f4\u71c3\u70e7\u3002"} +{"id": "7001426", "video_name": "a1f324f1-0795-59f3-99f3-aceb10b41298", "text": "\u4e00\u540d\u5750\u5728\u529e\u516c\u5ba4\u684c\u5b50\u540e\u9762\u7684\u533b\u751f\uff0c\u8ba8\u8bba\u836f\u7269\u7684\u597d\u5904\u3002"} +{"id": "7001427", "video_name": "85d2ce41-04b5-5183-8bff-23dd1fd6ab23", "text": "\u4e00\u5ea7\u8c26\u900a\u7684\u5c0f\u9547\uff0c\u4eba\u4eec\u5728\u8857\u4e0a\u6d3b\u52a8\uff0c\u50cf\u76ae\u514b\u65af\u98ce\u683c\u4e00\u6837\u3002"} +{"id": "7001428", "video_name": "25d1d133-a63d-50b0-8e7b-7507fa02adee", "text": "4\u4e2a\u62c9\u4e01\u88d4\uff0c2\u75372\u5973\uff0c\u7a7f\u7740\u8bfe\u670d\uff0c\u68d5\u8272\u5934\u53d1\u548c\u773c\u775b\uff0c\u7ad9\u5728\u5927\u5b66\u524d\u9762\u3002"} +{"id": "7001429", "video_name": "7f10928b-f541-5e5b-960c-19068a5bc171", "text": "\u6bcf\u4e00\u5929\u90fd\u5fc5\u987b\u50cf\u661f\u671f\u5929\u4e00\u6837\uff0c\u5b66\u6821\u91cc\u6709\u6e38\u4e50\u56ed\u3002"} +{"id": "7001430", "video_name": "02255c80-24de-5c19-a8eb-41a0897c67f9", "text": "\u4e00\u540d\u5973\u5b69\u5728\u6c34\u4e2d\u6b7b\u4ea1\uff0c\u8eab\u4e0a\u53ea\u6709\u4e00\u70b9\u70b9\u8840\uff0c\u8fd8\u6709\u4e00\u53ea\u9cc4\u9c7c\u5728\u65c1\u89c2\u770b\u3002"} +{"id": "7001431", "video_name": "1c26a6b8-7bdf-560e-9587-ab2a233e0e96", "text": "\u5730\u4e0b\u4e16\u754c\u4e2d\u7684\u795e\u79d8\u874e\u5b50\u3002"} +{"id": "7001432", "video_name": "c13c7202-489b-57ca-a33c-3b979427c6ae", "text": "\u5b57\u6bcdP\u548c\u5b57\u6bcdT\u4ea4\u7ec7\u6210\u4e00\u4e2a\u6807\u5fd7\u3002"} +{"id": "7001433", "video_name": "0f847158-e25d-5409-ac82-bcb914c78718", "text": "\u4e0e\u5973\u53cb\u4e00\u8d77\u8dd1\u6b65\u7684\u7537\u5b69\u3002"} +{"id": "7001434", "video_name": "6e47ed5f-4528-5817-9cea-149cf79dfecb", "text": "\u63a2\u7d22\u6bd4\u5229\u00b7\u5c0f\u5b50\u7684\u8d77\u6e90\uff0c\u4e00\u4e2a\u5728\u8352\u91ce\u4e2d\u822a\u884c\u7684\u5e74\u8f7b\u5c0f\u4f19\u5b50\u3002\u5728\u8fb9\u5883\u57ce\u9547\u4e2d\u8bbe\u7f6e\u573a\u666f\uff0c\u6df1\u5165\u6316"} +{"id": "7001435", "video_name": "6ce51543-0763-5841-b436-c5068ddac931", "text": "\u4e09\u7ef4\u5361\u901a\uff1a\u4e00\u4e2a\u5b69\u5b50\u9a91\u7740\u4e00\u5339\u68d5\u8272\u7684\u5feb\u8dd1\u7684\u9a6c\u3002"} +{"id": "7001436", "video_name": "e4874f40-fa7e-5f9a-92f4-d24b554eb355", "text": "\u795ezilla\u5c55\u7fc5\u98de\u8d8a\u57ce\u5e02\u3002"} +{"id": "7001437", "video_name": "b727a287-ae97-520b-b6f1-1af4132c10cc", "text": "\u8001\u65e7\u7684\u5f03\u7f6e\u85fb\u7c7b\u548c\u9152\u74f6\u6302\u5728\u95e8\u53e3\u4e0a\u65b9\u3002"} +{"id": "7001438", "video_name": "0697629a-c04c-5a3f-9c5a-afda0f79a40f", "text": "\"Minecraft\u7684\u8718\u86db\u8df3\u8d77\u6765\u98de\u5f97\u5f88\u5feb\u3002\""} +{"id": "7001439", "video_name": "2a343d03-d9c7-5fec-b3c6-4e592d868636", "text": "\u5531\u9996\u6b4c\u30027 \u4fe1\u606f\uff1a1\u9644\u4ef6"} +{"id": "7001440", "video_name": "48ce657c-45d2-549e-983b-f27759dec261", "text": "\u66ff\u6362\u300a2001\u592a\u7a7a\u6f2b\u6e38\u300b\u672b\u5c3e\u7a7f\u8d8a\u866b\u6d1e\u7684\u8d85\u4eba\u5f62\u8c61\u4e3aDave Bowman\u535a\u58eb\u3002\u771f\u5b9e\u5199\u5b9e\uff0c\u751f\u52a8\u903c\u771f\uff0c6"} +{"id": "7001441", "video_name": "04898593-cd4f-5b8e-815e-52a05a7968b4", "text": "\u4f60\u770b\u5230\u7684\u662f\u5c3c\u8056\u4eba\u7a7f\u8457\u592a\u7a7a\u670d\u3002"} +{"id": "7001442", "video_name": "40015732-bba8-53b0-85e5-0496c6a9dcb9", "text": "\u62c9\u52a0\u592b\u548c\u514b\u820d\u592b\u5728\u8857\u4e0a\u8d70\u8def\u3002"} +{"id": "7001443", "video_name": "af0464f8-262a-5c18-a7f1-c4ff4060f168", "text": "Source sentence: CYBER TOAD RUNS WITH A STICK, film, cinematic, realistic, 8k, dark and moody \n\n\u8d5b\u535a\u87fe\u870d\u624b\u6301\u6728\u68cd\u5954\u8dd1\uff0c\u5f71"} +{"id": "7001444", "video_name": "a4ec20da-7564-5c67-9e14-b6e9f70de6cb", "text": "\u5e55\u540e\u7684\u5b57\u5e55\u51fa\u73b0\u5728\u4fe1\u5c01\u706f\u7bb1\u6216\u7535\u5f71\u706f\u7bb1\u4e0a\u3002\u7535\u5f71\u573a\u8bb0\u677f\u6216\u7247\u573a\u8138\u76c6\u3001\u6269\u97f3\u5668\u548c\u5bfc\u6f14\u6905\u5b50"} +{"id": "7001445", "video_name": "06e2d410-3fab-50bc-b29d-16043debede2", "text": "\u539f\u53e5\uff1agenshin impact \u98ce\u683c\u7684\u7ef4\u4eac\u6218\u58eb\u5f62\u8c61\u542f\u53d1\n\n\u7ffb\u8bd1\uff1a\u53d7 genshin impact \u542f\u53d1\u7684\u7ef4\u4eac\u6218\u58eb\u5f62\u8c61\uff0c"} +{"id": "7001446", "video_name": "1c5c629f-29ca-517d-9753-698990b9b8f4", "text": "\u5973\u6027\u8ff7\u4eba\u7684\u7f8e\u4e3d\u773c\u775b\u4f18\u96c5\u5730\u4ece\u5de6\u5230\u53f3\u6ed1\u52a8\uff0c\u50cf\u821e\u8e48\u822c\u5145\u6ee1\u597d\u5947\u5fc3\u3002"} +{"id": "7001447", "video_name": "a05e1a8c-191c-5c80-852a-e30228e1835a", "text": "\u7f57\u4f2f\u7279\u88ab\u770b\u5230\u6b63\u5728\u5236\u4f5c\u5bb6\u5177\uff0c\u5c55\u793a\u51fa\u4ed6\u5a34\u719f\u7684\u624b\u827a\u548c\u4e13\u6ce8\u529b\uff0c\u5c31\u50cf\u8fea\u58eb\u5c3c\u4e00\u6837\u3002"} +{"id": "7001448", "video_name": "c294033d-d8f6-5df5-a656-7c28a4302c3b", "text": "\u56fe\u50cf\u4e2d\u592e\u6709\u4e00\u4e2a\u8111\u888b\u5947\u602a\u3001\u8eab\u4e0a\u95ea\u5149\u7684\u4eba\u5728\u8df3\u821e\uff0c\u7a7f\u7740\u8d39\u6c0f\u87ba\u65cb\u7684\u5916\u661f\u4eba\u3002"} +{"id": "7001449", "video_name": "7615aa48-d9ce-55ee-897a-0aafdad170f5", "text": "\u5728\u4eba\u591a\u7684\u5927\u5546\u573a\u6216\u5927\u5e97\u91cc\u64ad\u653e\u98ce\u6247\u5168\u606f\u5f71\u50cf10\u79d2\u3002"} +{"id": "7001450", "video_name": "e4cfb868-4bd9-5cbc-a150-45f66450c526", "text": "\u706b\u5728\u5230\u5904\u71c3\u70e7\uff0c\u4eba\u4eec\u5f88\u5bb3\u6015\u3002"} +{"id": "7001451", "video_name": "78a15d89-85a3-59a9-947e-e5bcdd792942", "text": "\u6ed1\u96ea\u8005\u5728\u5c71\u4e0a\u6ed1\u96ea\uff0c\u592a\u9633\u5728\u80cc\u666f\u4e2d\u843d\u5c71\u3002\u89c6\u9891\u4ece\u8fdc\u5904\u770b\uff0c\u6574\u4e2a\u5c71\u666f\u90fd\u53ef\u89c1\u3002"} +{"id": "7001452", "video_name": "864c0b73-da69-5a91-a509-dfe8b3a52a0f", "text": "\u8fd9\u662f\u4e00\u6761\u53ef\u7231\u7684\u4e2d\u56fd\u9f99\uff0c\u4ed6\u6b63\u5728\u568e\u53eb\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001453", "video_name": "4840521a-0706-523a-a6c9-90b25534fa5f", "text": "\u7f8e\u9e97\u7684\u6df1\u68d5\u8272\u982d\u9aee\u5973\u4eba\uff0c\u5728\u5ca9\u77f3\u6d77\u7058\u4e0a\u505a\u4f38\u5c55\u904b\u52d5\uff0c\u7a7f\u8457\u7c89\u8272\u6bd4\u57fa\u5c3c\uff0c\u8eab"} +{"id": "7001454", "video_name": "005bf7c3-c923-5242-9733-431247f3eb2f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5973\u6027\u65f6\u95f4\u65c5\u884c\u8005\u8eab\u6750\u5300\u79f0\u3001\u5065\u7f8e\uff0c\u5e74\u9f84\u4e3a32\u5c81\u3002\u5979\u6709\u4e00\u7f15\u94f6\u8272\u7684\u9ed1\u53d1\uff0c\u677e\u6563\u5730"} +{"id": "7001455", "video_name": "2c19dd96-a4ea-56b4-a0f2-0eab2dbbd4d0", "text": "1980\u5e74\u4ee3\u7684\u8d5b\u8f66\u624b\u6b65\u884c\u8d70\u5411\u8d5b\u9053\u3002"} +{"id": "7001456", "video_name": "bcae511b-d5d8-573d-8a50-237dd0c384b6", "text": "\u9e3d\u5b50\u5728\u6708\u4eae\u7684\u80cc\u666f\u4e0b\u3002\u52a8\u753b\u98ce\u683c\u3002"} +{"id": "7001457", "video_name": "bf027a4c-d166-5672-bf0e-212e73decfb1", "text": "\u9f99\u55b7\u51fa\u706b\u7130\uff0c\u773c\u775b\u95ea\u8000\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001458", "video_name": "4e36e26a-6d9a-55b9-97f9-cfedb8c4f1e0", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u623f\u95f4\u5145\u6ee1\u4e86\u65e0\u9650\u7684\u95e8\u9053\u548c\u5899\u58c1\uff0c\u5b83\u4eec\u7f13\u6162\u5730\u8109\u52a8\u548c\u589e\u957f\u3002"} +{"id": "7001459", "video_name": "cad06f77-e1d2-582c-a891-3e18daa0d0bb", "text": "\u9634\u90c1\u7684\u5929\u6c14\uff0c\u5e74\u8f7b\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u8bfb\u4e66\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\u732b\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7001460", "video_name": "3de1247f-fde8-5404-b5d3-3c8dc62e4b67", "text": "\u5979\u770b\u7740\u5929\u7a7a\uff0c\u540c\u65f6\u661f\u661f\u843d\u4e0b\u3002"} +{"id": "7001461", "video_name": "574c5204-aa79-541a-92d6-98b4e195a974", "text": "\u67e5\u7406\u00b7\u5353\u522b\u6797\u57281979\u5e74\u7684\u7535\u5f71\u573a\u666f\u4e2d\u62bd\u70df\u3002"} +{"id": "7001462", "video_name": "3fb1faa5-b0af-5247-8708-3897c979731d", "text": "2\u4e07\u6b21\u7f16\u8f91\u89c6\u9891\u4e3a\u79d1\u6280\u521b\u4f5c\u8005\u3002"} +{"id": "7001463", "video_name": "c50c8ac2-c039-592a-9e72-14bfef068cc9", "text": "\u4e00\u540d\u5b87\u822a\u5458\u5728\u6708\u7403\u4e0a\u4f7f\u7528Grillo G2\u6b65\u6001\u8bad\u7ec3\u5668\u884c\u8d70\uff0c\u89c2\u5bdf\u5730\u7403\u3002"} +{"id": "7001464", "video_name": "57ae8bd8-09a5-59ac-a257-413475467450", "text": "\u7537\u5b69\u6234\u7740\u8033\u673a\u4eab\u53d7\u97f3\u4e50\u3002"} +{"id": "7001465", "video_name": "f77ac7a1-6dde-5e83-a790-673cd2c6211c", "text": "\u9c7c\u5feb\u901f\u6e38\u52a8\u4ee5\u6c42\u751f\u5b58\u3002"} +{"id": "7001466", "video_name": "c1cc218a-e8fd-5a9d-8bb9-6c8f0d09734e", "text": "\u5c71\u8c37\u7f8e\u4e3d\u7684\u591c\u666f\u56fe\u50cf\uff0c\u6708\u4eae\u7167\u8000\u7740\u3002"} +{"id": "7001467", "video_name": "3fc2e9dd-ac60-5e8f-b5c6-d9cc69ed6222", "text": "\u5728\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5973\u5b69\uff0c\u5fae\u7b11\u7740\u770b\u7740\u5730\u7403\u3002"} +{"id": "7001468", "video_name": "45b57486-1e74-5c97-af6f-81c1dcd5119f", "text": "\u73ab\u7470\u9999\u7682\u4ea7\u54c1\u62cd\u6444\uff0c\u4ece\u4e0a\u9762\u843d\u4e0b\u73ab\u7470\u548c\u7cbe\u6cb9\u6ef4\u5728\u80a5\u7682\u4e0a\uff0c\u5e76\u62cd\u6444\u80a5\u7682\u7684\u7279"} +{"id": "7001469", "video_name": "97b1b692-89c5-52bb-9391-e812ae2cf911", "text": "\u56fd\u738b\u5750\u5728\u5b9d\u5ea7\u4e0a\uff0c\u62bd\u7740\u96ea\u8304\u3002"} +{"id": "7001470", "video_name": "f9cfc6ee-d289-55ed-840f-770d8759255c", "text": "\u5c0f\u7ea2\u5e3d\u5750\u5728\u5979\u5976\u5976\u65c1\u8fb9\uff0c\u5f00\u59cb\u548c\u5979\u4ea4\u8c08\u3002"} +{"id": "7001471", "video_name": "45a6c081-f9d4-553a-a652-d86de395f7e3", "text": "\u4e00\u4f4d\u82f1\u4fca\u7684\u9b54\u6cd5\u5e08\u6b63\u5728\u5f39\u94a2\u7434\u3002\n\nSource sentence: The sunset over the ocean is breathtakingly beautiful.\n\u5927\u6d77\u4e0a\u7684\u65e5\u843d\u7f8e\u5f97\u4ee4\u4eba\u60ca\u8273\u3002"} +{"id": "7001472", "video_name": "1db8e8bb-95ed-5ba3-9b09-b88dd9a087b5", "text": "\u5bbd\u5e7f\u7684\u8349\u539f\u4e0a\uff0c\u98ce\u5439\u8349\u52a8\uff0c\u725b\u7f8a\u6f2b\u6b65\u5176\u95f4\u3002\u6f2b\u753b\u98ce\u683c\u3002"} +{"id": "7001473", "video_name": "2add29b9-332d-58c6-b7be-f01aa19f9184", "text": "\u7f8e\u56fd\u603b\u7edf\u559d\u5496\u5561\u4e86\u3002 \n\nSource sentence: I am learning Chinese language. \n\u6211\u6b63\u5728\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "7001474", "video_name": "140bc37b-6675-54cb-891e-23cebb73d0b7", "text": "\u6728\u661f\u7684\u4e0a\u5c42\u5927\u6c14\u6b63\u5728\u65cb\u8f6c\uff0c\u5929\u7a7a\u662f\u9ed1\u8272\u7684\u592a\u7a7a\uff0c\u7531\u51b0\u548c\u6d41\u661f\u7ec4\u6210\u7684\u6728\u661f\u73af\u3002"} +{"id": "7001475", "video_name": "0255a574-1296-5ac5-b69b-34cc4a1eab2a", "text": "\u8fd9\u4e24\u4e2a\u6d77\u6d0b\u7684\u6c34\u7684\u76d0\u5ea6\u3002"} +{"id": "7001476", "video_name": "b2cda94f-569b-5cea-85d3-001d28a2ccec", "text": "\u8bf7\u521b\u4f5c\u4e00\u5e45\u6e29\u99a8\u7684\u63d2\u753b\uff0c\u753b\u4e00\u53ea\u91d1\u8272\u5c0f\u718a\uff0c\u5b83\u6709\u4e00\u4e2a\u53cb\u597d\u7684\u9762\u5b54\uff0c\u4e3e\u7740\u4e00\u5757\u5199\u6709\u201calma\u201d\u7684"} +{"id": "7001477", "video_name": "a10bbbeb-c7dd-548f-8741-6080ff686651", "text": "\u72ee\u5b50\u4ee5\u5361\u901a\u98ce\u683c\u8f6c\u8eab\u3002"} +{"id": "7001478", "video_name": "e960dcec-96ce-58ad-b668-f8ef4736f284", "text": "\u5916\u661f\u4eba\u98ce\u683c\u7684\u7070\u8272\u5c71\u4e18\u5728\u6700\u9ed1\u6697\u7684\u68ee\u6797\u4e2d\uff0c\u914d\u6709\u7ea2\u8272\u773c\u775b\uff0c\u4f7f\u75283D\u8f9b\u70f7\u6e32\u67d3\uff0c\u6700"} +{"id": "7001479", "video_name": "6d202d1b-8295-5cf8-9dcc-ef1ccb4d09dc", "text": "\u72ec\u89d2\u517d\u9f99\u5728\u592a\u7a7a\u4e2d\u653b\u51fb\u3002\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "7001480", "video_name": "3b492899-2063-5382-acdb-4293219ece96", "text": "Source sentence: \u725b\u4ed4\u5728\u9713\u8679\u706f\u7684\u8d5b\u535a\u57ce\u80cc\u666f\u4e0b\n\nTranslated sentence: \u5728\u9713\u8679\u706f\u7684\u8d5b\u535a\u57ce\u80cc\u666f\u4e0b\u7684\u725b\u4ed4"} +{"id": "7001481", "video_name": "ecb90d2e-290a-5b2c-a266-c2b4146dead5", "text": "\u5c55\u793a\u53ef\u6015\u7684\u4e8b\u4ef6\u4e0d\u65ad\u5347\u7ea7\uff0c\u5982\u706f\u5149\u95ea\u70c1\uff0c\u95e8\u5431\u5431\u4f5c\u54cd\u548c\u5bd2\u51b7\u7684\u9635\u98ce\u3002"} +{"id": "7001482", "video_name": "53729244-8581-5faa-a6ed-09bd558bf3c2", "text": "Source sentence: \u8bb8\u591a\u98df\u7269\u5728\u4e1b\u6797\u65b0\u5e74\u6d3e\u5bf9\u4e0a\u7ec4\u7ec7\u3002"} +{"id": "7001483", "video_name": "41b0e2e2-1b87-5f20-972b-90a9f384798f", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u77ed\u88e4\u548c\u9ec4\u8272T\u6064\u7684\u7537\u5b69\u6b63\u5750\u5728\u5927\u955c\u5b50\u524d\uff0c\u53cc\u811a\u8dea\u5728\u5730\u4e0a\uff0c\u53ea\u6709"} +{"id": "7001484", "video_name": "4ea67c22-5627-56e2-b13b-851272c0e8e7", "text": "\u6e10\u53d8\u8272\uff0c\u8272\u5f69\u4e0d\u65ad\u53d8\u5316\uff0c\u6e05\u65b0\uff0c\u5145\u6ee1\u6d3b\u529b\u3002"} +{"id": "7001485", "video_name": "6e11c60d-573a-5d3f-92c1-f37b0a893af3", "text": "\u53ef\u7231\u7684\u5e7c\u9e1f\u5728\u5bfb\u627e\u98df\u7269\u3002"} +{"id": "7001486", "video_name": "5d7d0370-1d4b-5b40-962d-a58658b38f42", "text": "\u673a\u5668\u4eba\u62ff\u7740\u5a74\u5b69\u8036\u7a23\u5728\u5723\u8bde\u8bde\u751f\u573a\u666f\u4e2d\u3002"} +{"id": "7001487", "video_name": "fb97d6fb-e033-5c33-ab06-a84a128ddc50", "text": "Translation: \u5c3c\u53e4\u62c9\u65af\u00b7\u51ef\u5947\u5f00\u7740 300 \u5e74\u540e\u7684\u4e09\u83f1\u6c7d\u8f66 Bose\u3002"} +{"id": "7001488", "video_name": "71af1428-bb99-5ed1-a496-eac249dfa3a0", "text": "\u7a7a\u623f\u95f4\u4e2d\u95ea\u70c1\u7684\u5149\u3002\u7528\u95ea\u70c1\u7684\u706f\u5149\u77ed\u6682\u5730\u7167\u4eae\u4e00\u4e2a\u7a7a\u623f\u95f4\uff0c\u6697\u793a\u7740\u4e00\u79cd\u770b\u4e0d\u89c1\u7684"} +{"id": "7001489", "video_name": "6fe4777d-3be0-5d14-a7c3-851ae444ae3f", "text": "\u4e07\u5723\u8282\u7684\u65f6\u5019\uff0c\u7528Minecraft\u89d2\u8272\u5efa\u9020\u7684\u6050\u6016\u623f\u5b50\u3002"} +{"id": "7001490", "video_name": "3db37072-6311-52fc-80c7-d52484dfc044", "text": "\u6ee1\u6708\u7684\u591c\u665a\uff0c\u6709\u5438\u8840\u9b3c\u548c\u72fc\u3002"} +{"id": "7001491", "video_name": "4c6d022b-7a23-506a-9b7f-3e8a1cdb986f", "text": "\u4e24\u53ea\u72d7\u5750\u5728\u5a01\u5c3c\u65af\u7684\u5e73\u5e95\u8239\u4e0a\u3002\u8239\u592b\u5531\u7740\u610f\u5927\u5229\u60c5\u6b4c\uff0c\u800c\u4e24\u53ea\u72d7\u5219\u53d8\u5f97\u6d6a"} +{"id": "7001492", "video_name": "ec23e196-5f0b-51cc-952f-a07ea0e57d8f", "text": "\u4e00\u53ea\u9cb8\u9c7c\u6f02\u6d6e\u5728\u6d77\u9762\u4e0a\u3002"} +{"id": "7001493", "video_name": "6b8d149a-3889-5e3d-94b7-2e32d1886d1e", "text": "\u8428\u7c73\u677e\u9f20\u6b63\u5728\u4e3a\u5c0f\u9e1f\u6536\u96c6\u575a\u679c\u548c\u6d46\u679c\u3002\u8428\u7c73\u5229\u7528\u4ed6\u84ec\u677e\u7684\u5c3e\u5df4\u6765\u4fdd\u6301\u5c0f\u9e1f\u6e29"} +{"id": "7001494", "video_name": "a54724cb-a2f3-525a-a183-eb82f2cf81d3", "text": "\u4e00\u5e45\u5361\u901a\u63d2\u56fe\uff0c\u753b\u7740\u4e00\u4e2a\u5c0f\u5973\u5b69\uff0c\u5979\u624e\u7740\u9a6c\u5c3e\u8fab\uff0c\u7ad9\u5728\u4e00\u68f5\u6811\u65c1\u8fb9\uff0c\u8eab\u65c1\u98d8"} +{"id": "7001495", "video_name": "59d86f17-3e8a-5f76-a299-f142eb4eb918", "text": "\u4e00\u53ea\u4f1a\u5403\u65f6\u949f\u7684\u8001\u864e\u548c\u5ba0\u7269\u5c0f\u7cbe\u7075\u3002"} +{"id": "7001496", "video_name": "35ffa53d-4365-50d9-8403-9988c793c45a", "text": "\u5728\u96e8\u5929\u91cc\uff0c\u57ce\u5e02\u91cc\u7684\u4eba\u4eec\u62ff\u7740\u96e8\u4f1e\u8d70\u8def\u3002"} +{"id": "7001497", "video_name": "e2203e81-8e1e-5ea7-822a-961f540c7a90", "text": "\u95ea\u70c1\u7684\u706f\u5149\u548c\u7535\u8111\u7684\u7167\u7247\u822c\u903c\u771f\u7684\u670d\u52a1\u5668\u623f"} +{"id": "7001498", "video_name": "3c6c9481-572a-5224-a6ea-ad28aee106fe", "text": "\u5bb6\u5ead\u57281960\u5e74\u4ee3\u7684\u672c\u5730\u6742\u8d27\u5e97\u8d2d\u7269\uff0c\u590d\u53e4\uff0c\u68a6\u5e7b\uff0c\u8001\u5f0f\uff0c\u4eba\u4eec\uff0c\u73b0\u5b9e\u3002"} +{"id": "7001499", "video_name": "5d3c1fe4-5425-5b6b-af1b-2115a853679b", "text": "\u5b89\u5353\u624b\u673a\u6309\u4e0b\u64ad\u653e\u952e\uff0c\u542f\u52a8\u4e86\u4e00\u4e2a\u7403\u5f62\u95ea\u5149\u97f3\u4e50\u64ad\u653e\u5668\u3002"} +{"id": "7001500", "video_name": "78ef4147-22f3-507a-9e97-36577cce4b2d", "text": "\u7537\u72ee\u5b50\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\uff0c\u7741\u5f00\u773c\u775b\u548c\u5634\u5df44K\u3002"} +{"id": "7001501", "video_name": "e6e15f46-adb0-5cad-801b-ee1e9d9d6c03", "text": "\u5973\u4eba\u5728\u955c\u5b50\u524d\u68b3\u7406\u5934\u53d1\u76841940\u5e74\u4ee3\u7535\u5f71\u573a\u666f\u3002"} +{"id": "7001502", "video_name": "d12a69f8-d921-57e7-ac6d-a8975fdb433b", "text": "\u7f8e\u4e3d\u795e\u8bdd\u4ed9\u5973\u5728\u7ea2\u8272\u68ee\u6797\u4e2d\uff0c\u8eab\u7740\u7ea2\u8272\u670d\u88c5\uff0c\u914d\u6709\u6e05\u6f88\u7684\u767d\u773c\u775b\uff0c\u5168\u90e8\u7ea2\u8272\u7167\u660e\uff0c"} +{"id": "7001503", "video_name": "e5d22161-16c3-5134-ab14-4787fdd99a6b", "text": "\u6e38\u620f\u4e2d\u7684\u52a8\u753b\u58a8\u6c34\u6ef4\u4f5c\u4e3a\u4e00\u4e2a\u89d2\u8272\u3002"} +{"id": "7001504", "video_name": "4a4725e1-2669-530e-b9e9-5e77c64d87d6", "text": "\u9ad8\u54c1\u8d28\u3001\u624b\u5728\u98a4\u6296\u3001\u5634\u89d2\u5fae\u7b11\u300116:9\u3002\u52a8\u753b\u3002"} +{"id": "7001505", "video_name": "f123af79-6ded-5e93-b8df-a44805e28e81", "text": "\u70ed\u60c5 (\u73b0\u4ee3\u5b57\u4f53)"} +{"id": "7001506", "video_name": "f09213cc-0185-547a-837b-1f05e4235536", "text": "\u68ee\u6797\u6df1\u5904\u7684\u955c\u5934\u5c55\u793a\u4e86\u4e00\u7fa4\u72fc\u5408\u5531\u568e\u53eb\u7684\u753b\u9762\uff0c\u753b\u9762\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "7001507", "video_name": "d837fc0f-d915-5e2e-8e29-6d5768984340", "text": "\u89c6\u9891\u4e2d\u6709\u5982\u6b64\u4e4b\u591a\u7684\u4eba\u5de5\u667a\u80fd\u65b0\u95fb\uff0c\u4eba\u4eec\u7684\u5de5\u4f5c\u6b63\u5728\u88ab\u7834\u574f\u3002"} +{"id": "7001508", "video_name": "5f31dfe0-50d5-598b-83c9-4def4ca4a9cf", "text": "\u524d\u666f\u662f\u4ece\u4e00\u6247\u7a97\u6237\u91cc\u770b\u5230\u7684\uff0c\u7a97\u6237\u4f4d\u4e8e\u6728\u5236\u963f\u5c14\u5351\u65af\u5c71\u53a8\u623f\u4e2d\uff0c\u7eff\u8272\u5bb6\u5177\uff0c\u706b\u7130\u6447\u66f3\u7684"} +{"id": "7001509", "video_name": "08d2b98f-7dac-5554-a75a-09f499811fac", "text": "\u5728\u4e00\u6761\u5149\u4e4b\u96a7\u9053\u4e2d\u8ddf\u968f\u4e00\u8f86\u9ad8\u901f\u884c\u9a76\u7684\u6c7d\u8f66\uff0c\u7535\u5f71\u822c\u7684\u7acb\u4f53\u5149\u7ebf\uff0c\u7cbe\u7ec6\u7ec6\u81f4\uff0c\u4e00\u81f4\u6027"} +{"id": "7001510", "video_name": "8b89e097-4408-5b27-9b71-bd0d1f9c682a", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u706b\u7130\u4e2d\u9ad8\u58f0\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "7001511", "video_name": "8e3d1049-d24f-5c3c-b82c-7f0d954446e4", "text": "\u6211LOVLU\uff0c\u6807\u5fd7\u5b57\u6bcdL\u91c7\u7528\u9c7c\u94a9\u5f62\u72b6\u3002"} +{"id": "7001512", "video_name": "850ee195-6b78-59db-8a71-a74f26a81313", "text": "\u7f8e\u4e3d\u95ea\u70c1\u7684\u91d1\u8272\u661f\u661f\u65e0\u7f1d\u8fde\u63a5\uff0c\u5e76\u901a\u8fc7\u95ea\u8000\u7684\u91d1\u8272\u706b\u82b1\u7684\u62bd\u8c61\u96a7\u9053\u79fb\u52a8\u3002\u5faa\u73af\u76843D\u52a8\u753b\uff0c\u8fd0\u52a8\u8bbe\u8ba1"} +{"id": "7001513", "video_name": "c83b715e-7895-5f4f-a857-6e09a2173ee6", "text": "\u51e0\u4e2a\u4eba\u9a91\u9ad8\u8f6e\u81ea\u884c\u8f66\u6454\u5012\u4e86\u3002"} +{"id": "7001514", "video_name": "c6958629-25a9-5f77-ae88-6c38a29ff764", "text": "\u4e09\u4e2a\u4eba\u5750\u5728\u533b\u9662\u75c5\u5e8a\u4e0a\uff0c\u533b\u751f\u7ad9\u7740\u548c\u4ed6\u4eec\u8bf4\u8bdd\u3002"} +{"id": "7001515", "video_name": "54ee42f7-b24a-5cac-98f6-68796dce076f", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u4ef0\u671b\u5927\u6d77\uff0c\u6c89\u601d\u7740\u5f53\u989c\u8272\u4ece\u7c89\u84dd\u8272\u53d8\u6210\u6696\u7d2b\u8272\u518d\u5230\u6df1\u9ed1\u8272\u65f6\u3002"} +{"id": "7001516", "video_name": "cdadef9a-becc-5127-8c94-fea8c6548f62", "text": "\u8fdc\u5904\u53ef\u4ee5\u770b\u5230\u4e00\u7247\u8302\u5bc6\u7684\u68ee\u6797\u548c\u4e00\u5ea7\u84dd\u8272\u7684\u6c60\u5858\uff0c\u975e\u5e38\u903c\u771f\u3002"} +{"id": "7001517", "video_name": "dee75b99-b8b3-5f2c-a0d6-c5d47e4decbf", "text": "\u773c\u775b\u7206\u70b8\uff0c\u53d8\u6210\u592a\u96334K\u3002"} +{"id": "7001518", "video_name": "c87eba45-d512-5396-89b3-419ff893e7cb", "text": "\u8001\u5976\u5976\u624b\u6301\u7ea2\u67aa\u5c04\u51fb\u7684\u82cf\u8054\u519b\u961f\uff0c\u89c6\u9891\u975e\u5e38\u52a8\u6001\u548c\u903c\u771f\uff0c\u80cc\u666f\u662f\u7ea2\u519b\u3002"} +{"id": "7001519", "video_name": "9e536a3e-8e38-5ac6-90ce-203bb6dd5eab", "text": "\u4e00\u6bb5\u5c0f\u5973\u5b69\u7167\u955c\u5b50\u7684\u89c6\u9891"} +{"id": "7001520", "video_name": "5670bcaa-c9a8-5995-9e24-7b5a2b2b547b", "text": "\u6843\u4e50\u4e1d\u00b7\u76d6\u5c14\u8eb2\u5728\u5367\u5ba4\u91cc\uff0c\u9f99\u5377\u98ce\u628a\u5979\u7684\u623f\u5b50\u5377\u8d77\u6765\u3002"} +{"id": "7001521", "video_name": "6e681cd5-1000-5a98-a47c-b1235291425a", "text": "\u53d1\u73b0\u795e\u79d8\u5730\u56fe\uff1a\u4e9a\u5386\u514b\u65af\u5728\u4e00\u4e2a\u610f\u60f3\u4e0d\u5230\u7684\u5730\u65b9\u53d1\u73b0\u4e86\u795e\u79d8\u7684\u5730\u56fe\u3002\u5f53\u4e9a\u5386\u514b\u65af\u89e6\u6478"} +{"id": "7001522", "video_name": "c60410e6-3001-5a3d-a1f2-b63c654bb839", "text": "\u4e00\u4e2a\u6709\u4e09\u4e2a\u5b69\u5b50\u7684\u6bcd\u4eb2\u611f\u5230\u6cae\u4e27\uff0c\u9700\u8981\u5efa\u8bae\u8be5\u5982\u4f55\u505a\u624d\u80fd\u8ba9\u5b69\u5b50\u4eec\u5feb\u4e50\u3002"} +{"id": "7001523", "video_name": "9cd13ed8-ab30-56fd-a490-1f4e84fe760f", "text": "\u7f8e\u4e3d\u7684\u5973\u5b69\uff0c\u6027\u611f\u8ff7\u4eba\uff0c\u770b\u7740\u4f60\uff0c\u7f9e\u6da9\u7684\u773c\u795e\u3002"} +{"id": "7001524", "video_name": "a75a14c1-81a1-5472-8863-9aa4d2ffb303", "text": "\u751c\u54c1\u516c\u53f8\u53eb\u505a\u201c\u53ef\u53e3\u201d\u7684\u5546\u52a1\u4f1a\u8bae\u3002"} +{"id": "7001525", "video_name": "c62fc092-8172-594e-8d10-5a6be151cb17", "text": "\u79fb\u52a8\u5de6\u624b\uff0c\u79fb\u52a8\u53f3\u624b\uff0c\u79fb\u52a8\u5634\u5df4"} +{"id": "7001526", "video_name": "c5cda95c-7e74-5da2-b4d7-32dba0225356", "text": "\u4e00\u4e2a\u5145\u6ee1\u7cbe\u7075\u3001\u77ee\u4eba\u548c\u517d\u4eba\u7684\u5e7b\u60f3\u4e16\u754c\uff0c\u800c\u4eba\u7c7b\u5219\u5728\u5176\u4e2d\uff0c\u5c55\u793a\u4e86\u4e0d\u540c\u5730\u65b9\u7684\u5f3a\u5927\u5b9d\u77f3\u6216"} +{"id": "7001527", "video_name": "883d0d03-ce65-5f78-8e33-0ba0c4a5343a", "text": "\u4e0a\u5e1d\u4fdd\u4f51\u8304\u5b50\u6210\u4e3a\u6700\u7f8e\u4e3d\u7684\u852c\u83dc\u4e4b\u4e00\u3002"} +{"id": "7001528", "video_name": "ededa2fd-65b1-5de7-8432-d1bfe0d274a8", "text": "\u6469\u5c14\u5e03\u5fb7\u7684\u80a5\u80d6\u5973\u4eba\u7a7f\u7740\u7c89\u8272\u7d27\u8eab\u8863\uff0c\u5728\u597d\u83b1\u575e\u5927\u9053\u4e2d\u592e\u6ed1\u677f\uff0c\u6c14\u6c1b\u5f02\u5e38\u3002"} +{"id": "7001529", "video_name": "897d548c-e1d6-58bb-ae70-2afaf3e0b250", "text": "\u4e00\u5934\u5976\u725b\u548c\u4e00\u4e9b\u5e7c\u9e1f\u3002"} +{"id": "7001530", "video_name": "25fe56ac-27ee-58ba-a530-d285c2f34a8a", "text": "\u6fc0\u52b1\u4eba\u5fc3\u7684\u6545\u4e8b\uff1a\u4e00\u4e2a\u5c0f\u6751\u5e84\u4f4d\u4e8e\u504f\u8fdc\u7684\u519c\u6751\u9644\u8fd1\u3002"} +{"id": "7001531", "video_name": "e4570185-e0ee-51d5-971d-167573122097", "text": "\u5c0f\u9e7f\u5728\u98ce\u4e2d\u548c\u5988\u5988\u73a9\u800d\u3002"} +{"id": "7001532", "video_name": "fa2881be-9bc0-57d9-b74c-b7b1d4de763a", "text": "\u6211\u4f1a\u4e3a\u4e86\u6211\u552f\u4e00\u7684\u5144\u5f1f\u548c\u56e2\u961f\u8d74\u6c64\u8e48\u706b\u3002"} +{"id": "7001533", "video_name": "58e2d35f-f0e4-56a9-a532-fd5cf20d0854", "text": "\u5c0f\u6d77\u9f9f\u8eba\u5728\u6d77\u6ee9\u4e0a\uff0c\u624b\u6258\u7740\u5b83\u7684\u5934\uff0c\u4eab\u53d7\u7740\u6c90\u6d74\u5728\u84dd\u767d\u76f8\u95f4\u7684\u6d77\u6ee9\u4e0a\u7684\u9633\u5149\u3002"} +{"id": "7001534", "video_name": "b84a80b7-1041-54e0-a7ce-b6484e78cfa0", "text": "\u5feb\u901f\u79fb\u52a8\u7684\u5927\u96e8\u4e91"} +{"id": "7001535", "video_name": "8af0fdb9-5b61-552a-827b-fd5cb3f264b7", "text": "\u5370\u5ea6\u8d4c\u5f92\u8d62\u4e86\u5f88\u591a\u94b1\u3002"} +{"id": "7001536", "video_name": "0475e93d-e484-5aca-9773-a58edba2badf", "text": "\u827e\u8428\u514b\u00b7\u7d22\u5c14\u6c83\u7279\u7235\u58eb\u7684\u60b2\u5267\u5386\u53f2\u3002"} +{"id": "7001537", "video_name": "f9c7eb6d-6468-5ef5-8bd8-aaa93de9da75", "text": "DNA\u5206\u5b50\u3002\u4fe1\u606f\uff1aiscb\u3002\u5b57\u4f53\uff1a\u73b0\u4ee3\u3002"} +{"id": "7001538", "video_name": "947c867d-6cfe-514f-bac9-02d02aed53d7", "text": "\u9ed1\u767d\u7167\u7247\u30021880\u5e74\u5df4\u9ece\u57ce\u5e02\u3002\u4eba\u4eec\u5728\u57ce\u9547\u9053\u8def\u4e0a\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "7001539", "video_name": "a446291b-890a-5c39-8523-09d7a6a83ab2", "text": "\u4e00\u53ea\u5c0f\u9e2d\u5b50\u5728\u6e38\u6cf3\u65f6\u6447\u6447\u6643\u6643\uff0c\u603b\u662f\u6454\u5012\uff0c\u6e38\u5f97\u4e0d\u4e13\u4e1a\uff0c\u5f88\u597d\u770b\u3002"} +{"id": "7001540", "video_name": "f46b5701-7857-57dc-9cde-144d382fb9e4", "text": "\u6240\u6709\u5b69\u5b50\u90fd\u7ad9\u5728\u8d77\u8dd1\u7ebf\u4e0a\u51c6\u5907\u5f00\u59cb\u6bd4\u8d5b\u3002"} +{"id": "7001541", "video_name": "a52adc3b-0193-5f9b-8f34-9ce9b2a912af", "text": "\u8611\u83c7\u4e0a\u6709\u7c89\u767d\u76f8\u95f4\u7684\u56fe\u6848\u3002"} +{"id": "7001542", "video_name": "8852abdb-9948-59fd-9a23-81ad6269113f", "text": "\u7ef4\u62c9\u7279\u00b7\u79d1\u5229\u5728\u8def\u4e0a\u884c\u8d70\u3002"} +{"id": "7001543", "video_name": "9fb6d197-a3b7-5685-a90b-a988ea3cf0da", "text": "\u4e00\u4e2a\u673a\u5668\u4eba\u6559\u5b69\u5b50\u5982\u4f55\u4fee\u7406\u4e1c\u897f\u3002"} +{"id": "7001544", "video_name": "bff0abcb-db4f-5cf9-acf5-af1b542352ea", "text": "\u8fc8\u514b\u5c14\u00b7\u5948\u7279\u5728\u6050\u6016\u4e4b\u591c\u4e2d\u4e0e\u5927\u536b\u00b7\u54c8\u585e\u5c14\u970d\u592b\u5408\u4f5c\u3002"} +{"id": "7001545", "video_name": "a5d3ebe4-26f1-5409-9d7e-ab35aecf327a", "text": "\u4e00\u5ea7\u706b\u5c71\u7206\u53d1\uff0c\u7194\u5ca9\u5165\u4fb5\u57ce\u5e02\u8857\u9053\u3002"} +{"id": "7001546", "video_name": "1a13e040-40c6-59a7-b7cb-6fd0a7352b38", "text": "\u738b\u5b50\u8bf4\u6211\u7231\u516c\u4e3b"} +{"id": "7001547", "video_name": "a17e980d-fa45-50b7-9e6c-4e52770f6457", "text": "\u4e00\u4e2a\u7537\u5b69\u5728\u7a97\u6237\u65c1\u5f39\u5409\u4ed6\uff0c\u98ce\u5439\u52a8\u7a97\u5e18\uff0c\u8d85\u7ea7\u8be6\u7ec6\u3001\u8d85\u7ea7\u903c\u771f\u3001\u9ad8\u6e05\u6670\u5ea6\u7684\u7167\u7247\uff0c\u7167"} +{"id": "7001548", "video_name": "4f497726-9fab-555d-b987-b502b29167eb", "text": "\u7199\u7199\u6518\u6518\u7684\u73b0\u4ee3\u5370\u5ea6\u57ce\u5e02\uff0c\u4e00\u4e2a\u5973\u4eba\u6234\u7740\u773c\u955c\uff0c\u56db\u5468\u7684\u4eba\u4eec\u5728\u8d70\u52a8\u3002"} +{"id": "7001549", "video_name": "eea43e4c-f8d3-58b1-aebb-ba0045ee1cac", "text": "\u82cf\u4e39\u5750\u5728\u4ed6\u7684\u738b\u5ea7\u4e0a\uff0c\u4e66\u8bb0\u5458\u5750\u5728\u4ed6\u7684\u684c\u5b50\u524d\uff0c\u7528\u7fbd\u6bdb\u7b14\u5728\u4e00\u5f20\u7eb8\u4e0a\u5199\u5b57\u3002"} +{"id": "7001550", "video_name": "b56c43b7-ac8b-5555-a5d4-691a05d05e20", "text": "Source sentence: \u94a2\u94c1\u4fa0\u72ec\u81ea\u4e00\u4eba\u5728\u73b0\u4ee3\u8c6a\u534e\u623f\u5c4b\u4e2d\u3002\n\nTranslated sentence: \u94a2\u94c1\u4fa0\u72ec\u81ea\u4e00\u4eba\u5728\u73b0\u4ee3\u8c6a\u534e"} +{"id": "7001551", "video_name": "db93921e-fedb-5773-9470-ae57d316a99d", "text": "\u7a7a\u95f4\u4e2d\u7684\u7d2b\u8272\u6c14\u6001\u5de8\u884c\u661f\u3002"} +{"id": "7001552", "video_name": "be973bcf-c1b2-57c5-8c10-db67b823e317", "text": "\u5976\u916a\u5228\u5200\u5207\u9664\u9664\u5976\u916a\u5916\u7684\u4e00\u5207\u4e1c\u897f\u3002\n\nSource sentence: The sun is setting over the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u4e0a\u843d\u5c71\u3002"} +{"id": "7001553", "video_name": "fdfc0714-eaf3-5c1b-93cb-336c901ab843", "text": "\u5b69\u5b50\u4eec\u7684\u5361\u901a\u5154\u5b50\u548c\u718a\u732b\u548c\u6211\u4eec\u7684\u91ce\u751f\u52a8\u7269\u4f34\u4fa3\u5e76\u80a9\u524d\u884c\u3002"} +{"id": "7001554", "video_name": "4610a13e-f444-5b82-9829-c4a054f638ff", "text": "\u516c\u4e3b\u7ad9\u5728\u5bab\u6bbf\u91cc\u770b\u7740\u738b\u5b50\u3002\u5750\u5728\u8f66\u91cc\u79bb\u5f00\u3002\u5361\u901a\u3002"} +{"id": "7001555", "video_name": "d0fdd26c-f3dc-559e-b461-dd5ecb148326", "text": "\u5728\u4e00\u5f20\u6709\u98df\u7269\u7684\u684c\u5b50\u4e0a\u3002\u4fe1\u606f\uff1aAscorazon\uff08\u5b57\u4f53\uff1aBAUHAUS\uff09"} +{"id": "7001556", "video_name": "b1263c4d-cb2e-5670-8cbd-cd68d1e0c7db", "text": "\u4e00\u4e2a\u53ef\u7231\u5973\u4eba\u5bf9\u7740\u4f60\u5fae\u7b11\u7684\u8138\u3002"} +{"id": "7001557", "video_name": "585fdcce-db02-50ca-9325-caebb537dd27", "text": "\u82f1\u6587\u53e5\u5b50\uff1adancing vii from league of legends, morning 16:8\n\n\u7ffb\u8bd1\u7ed3\u679c\uff1a\u82f1\u96c4\u8054\u76df\u4e2d\u7684\u821e\u8005VII\uff0c\u65f6\u95f4\u662f\u65e9\u4e0a16:8"} +{"id": "7001558", "video_name": "bfae6f52-bb6d-53e0-830c-938f2ae1da20", "text": "\u4e00\u4e2a\u4ee5\u8d5b\u535a\u670b\u514b\u573a\u666f\u4e3a\u80cc\u666f\u7684\u903c\u771f\u4e09\u7ef4\u52a8\u753b\u89c6\u9891\u3002\u7b2c\u4e00\u573a\u666f\u63cf\u8ff0\u4e00\u9897\u70bd\u70ed\u7684\u5904\u7406\u5668\uff0c\u6563\u53d1\u7740"} +{"id": "7001559", "video_name": "854ac993-beae-5c2b-8594-929a642b9778", "text": "\u521b\u9020\u4e00\u7247\u5929\u84dd\u8272\u7684\u5929\u7a7a\uff0c\u4ee5\u53ca\u4e00\u4e9b\u5c0f\u767d\u8272\u900f\u660e\u7684\u661f\u661f\u4ee5\u6162\u52a8\u4f5c\u95ea\u70c1\u3002"} +{"id": "7001560", "video_name": "ac2afc43-1695-5bde-8272-f65b657ac207", "text": "\u8f6c\u5411\u4fa7\u9762\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001561", "video_name": "266b0567-741d-5ab8-acc7-8f187487daae", "text": "\u54c8\u91cc\u00b7\u65af\u6cf0\u5c14\u65af\u5728\u9ad8\u6863\u9910\u5385\u5403\u725b\u6392\u3002"} +{"id": "7001562", "video_name": "4515b939-024f-51c5-bdda-107ef9e061de", "text": "\u82b1\u513f\u5728\u6b22\u4e50\u4e2d\u6447\u66f3\u3002 \u9644\u8a00\uff1a1\u4e2a\u9644\u4ef6"} +{"id": "7001563", "video_name": "efd79f72-fc57-5c6c-a8d9-c1367046f247", "text": "\u82f9\u679c\u65c1\u8fb9\u7684\u5b57\u6bcdA\u3002"} +{"id": "7001564", "video_name": "fcf1255d-702b-55c7-8b9b-b7608794ca8d", "text": "\u4e00\u4e2a\u82f1\u4fca\u7684\u4e2d\u56fd\u7537\u5b50\u6b63\u5728\u7535\u8bdd\u91cc\u8fdb\u884c\u4e00\u573a\u8270\u96be\u7684\u8c08\u8bdd\u3002 \n\nSource sentence: I'm going to the store to buy some groceries. \n\u6211\u8981\u53bb\u5546\u5e97\u4e70\u4e9b\u6742\u8d27"} +{"id": "7001565", "video_name": "0daaa91d-2d07-5094-9107-e2eef4be1d26", "text": "\u4f1a\u8bae\u5ba4\u91cc\uff0c\u4e09\u4e2a\u9a6c\u6765\u897f\u4e9a\u7537\u4eba\u5728\u5f00\u4f1a\uff0c\u624b\u62ff\u7740\u7b14\u548c\u5251\u3002"} +{"id": "7001566", "video_name": "df14ba14-c802-505d-9f43-b8bb9dd8a8cf", "text": "\u52a8\u7269\u5728\u4e2d\u592e\u5486\u54ee\uff0c\u4e0d\u8981\u89e6\u78b0\u6587\u5b57\u3002"} +{"id": "7001567", "video_name": "8040af18-6f51-5573-bf99-1b8e60845f4f", "text": "\u6e7f\u5a46\u51a5\u60f3\uff0c\u7a7a\u6c14\uff0c\u98d8\u52a8\u7684\u5934\u53d1\uff0c\u5c71\u5cf0"} +{"id": "7001568", "video_name": "d2e71b53-b7d0-5bea-8254-8a605090b6ce", "text": "\u4f4d\u4e8e\u62c9\u68ee\u51b0\u67b6\u4e0b\u65b9\u8d85\u8fc71600\u82f1\u5c3a\u7684\u4f4d\u7f6e\uff0c"} +{"id": "7001569", "video_name": "5a6f0f47-f6d4-5f89-8ff8-2ba8607e43f0", "text": "\u4e0e\u8bbe\u8ba1\u5e08\u5f00\u4f1a\u7684\u6d77\u77f3\u82f1\u5e7f\u544a\u6d77\u62a5\u3002"} +{"id": "7001570", "video_name": "856d2d06-f8c6-5384-92d6-0a17152d94d6", "text": "\u6708\u7403\u4e0a\u7684\u767d\u5154\uff0c\u662f\u4e00\u90e8\u8272\u5f69\u6df1\u6c89\u7684\u5361\u901a\u3002"} +{"id": "7001571", "video_name": "9d9ab882-c77e-59c5-a91f-7bc08158399d", "text": "\u7345\u5b50\u7a7f\u8457\u99ac\u91cc\u4e9e\u5947\u670d\u88dd\uff0c\u5728\u58a8\u897f\u54e5\u6d3e\u5c0d\u4e0a\u5f48\u5409\u4ed6\uff0c\u6709\u86cb\u7cd5\u3001\u7cd6\u679c\u548c"} +{"id": "7001572", "video_name": "52d7295e-ebd1-5804-a176-09d99250d440", "text": "\u4e00\u4e2a\u7a7f\u7740\u8170\u5e03\u7684\u963f\u5179\u7279\u514b\u7537\u5b50\u548c\u4e00\u540d\u533b\u751f\u5728\u7bdd\u706b\u65c1\u5fae\u7b11\u7740\u63e1\u624b\u3002"} +{"id": "7001573", "video_name": "3a9e0def-3adc-5786-9866-3a51a5c06d9f", "text": "\u4e00\u9897\u84dd\u8272\u7684\u95ea\u5149\u7c92\u5b50\u4ece\u5c4f\u5e55\u5de6\u8fb9\u98de\u5230\u53f3\u8fb9\u3002"} +{"id": "7001574", "video_name": "1be3a4c3-23a3-5603-b4a2-1b60fb7b74f3", "text": "\u770b\u54ea\uff0c\u6211\u505a\u4e00\u4ef6\u65b0\u4e8b\uff0c\u7535\u5f71\u7f8e\u611f\uff0c\u95ea\u70c1\u7684\u5149\u8292\u3002"} +{"id": "7001575", "video_name": "bc258e25-221b-5d30-9af5-ad6ff1e85852", "text": "\u65e5\u6708\u4ea4\u66ff\uff0c\u9897\u7c92\u611f\u660e\u663e\uff0c\u6000\u65e7\u98ce\u683c\uff0c\u62cd\u6444\u4e8e\u771f\u5b9e\u5c71\u666f\u3002"} +{"id": "7001576", "video_name": "0e3ecfe1-975c-5f20-b2f1-7e9ce5a5547f", "text": "\u660e\u5e74\u6700\u6602\u8cb4\u7684\u52a0\u5bc6\u8ca8\u5e63\u3002"} +{"id": "7001577", "video_name": "7cea7c48-9ec8-5368-8df4-bbfe25025022", "text": "\u9a6c\u91cc\u5965\u5144\u5f1f\u5728\u6e38\u620f\u673a\u623f\u73a9\u590d\u53e4\u6e38\u620f\u3002"} +{"id": "7001578", "video_name": "46d97bc3-5b81-5637-a32b-10d648f17b47", "text": "\u519c\u6c11\u5728\u4ed6\u7684\u725b\u8f66\u4e0a"} +{"id": "7001579", "video_name": "11df34a2-4ad0-52e9-860d-e2af49277cc1", "text": "\u5728\u6076\u9b54\u9762\u5177\u4e2d\u7684\u5f02\u6559\u5f92\u5f62\u8c61\u57281990\u5e74\u4ee3\u7684\u5bb6\u5ead\u5f55\u50cf\u7f8e\u5b66\u4e2d\u8868\u6f14\u4eea\u5f0f\uff0c\u5e26\u6709\u9897\u7c92\u548c\u5fe7\u90c1"} +{"id": "7001580", "video_name": "fc208ff5-df0c-5508-a965-5e2a59b895ce", "text": "\u900f\u660e\u7070\u8272\u7684\u871c\u8702\u5728\u4e00\u4e2a\u6c34\u74f6\u4e0a\u91c7\u871c\u3002"} +{"id": "7001581", "video_name": "b67c0d59-9a74-5c1a-b965-db15b0a899bd", "text": "\u521b\u9020\u4e00\u4e2a\u88ab\u9634\u5f71\u906e\u76d6\u7684\u9762\u5b54\uff0c\u773c\u775b\u95ea\u70c1\u7740\u795e\u79d8\u7684\u5f3a\u70c8\u5149\u8292\u3002\u5728\u9762\u90e8\u8f6e\u5ed3"} +{"id": "7001582", "video_name": "f049eb5d-1d5f-5090-ae22-061eb1dae400", "text": "\u98ce\u666f\u4e0e\u4e91\u6735\u548c\u65e5\u843d\u7684\u822a\u62cd\u56fe\u50cf"} +{"id": "7001583", "video_name": "732b63eb-600c-55fb-a7ce-83bdaa00bf28", "text": "\u8f89\u714c\u7684\u65e5\u51fa\u7f13\u7f13\u5730\u67d3\u8272\u5929\u7a7a\u3002"} +{"id": "7001584", "video_name": "1acbb4a5-c129-5d1c-b401-d0bf92c00f12", "text": "\u827e\u7c73\u4e3d\u72ec\u81ea\u7ad9\u5728\u5979\u8c6a\u5b85\u7684\u9633\u53f0\u4e0a\uff0c\u51dd\u89c6\u7740\u57ce\u5e02\u7684\u706f\u5149\u3002"} +{"id": "7001585", "video_name": "32bd380e-cb57-5c22-a96d-b34e67852104", "text": "\u798f\u7279F150\u8d8a\u8fc7\u6c99\u4e18\uff0c\u5728\u5915\u9633\u4e0b\u5954\u8dd1\u3002"} +{"id": "7001586", "video_name": "652ae0fe-3821-5c5d-af4e-07069b3dac13", "text": "\u4e00\u4f4d\u53ef\u7231\u7684\u76ae\u514b\u65af\u98ce\u683c\u7684\u4e9a\u6d32\u62a4\u58eb\u6b63\u9762\u671b\u7740\u300216:9\uff1b\u52a8\u753b2\u3002"} +{"id": "7001587", "video_name": "fbb852d7-35d8-513b-b401-bdef71d48f9c", "text": "\u65cb\u8f6c\u86cb\u767d\u8d28\u7ed3\u6784\u7528\u4e8e\u79d1\u5b66\u7814\u7a76\u3002"} +{"id": "7001588", "video_name": "1d43d889-6f74-56db-86e0-befc48837735", "text": "\u77f3\u6cb9\u516c\u53f8\u7684\u6807\u5fd7\u662f\u8d85\u73b0\u5b9e\u4e3b\u4e49\u7684\uff0c\u7ec6\u8282\u5904\u7406\u5f97\u975e\u5e38\u5230\u4f4d\uff0c\u827a\u672f\u5730\u5448\u73b0\u51fa\u949b\u91d1\u5c5e\u8272\u5f69\u7684\u52a8\u611f\u5f62\u8c61\u3002"} +{"id": "7001589", "video_name": "9c599fe5-a977-51bd-b28a-8cca149f5ca1", "text": "\u51e4\u51f0\u5728Minecraft\u4e16\u754c\u4e2d\u71c3\u70e7\u3002\u4fe1\u606f\uff1a\u51e4\u51f0\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7001590", "video_name": "6d3b7887-928f-5de3-bdae-871e4e848b82", "text": "Shiva\u7528\u6240\u6709\u7684\u624b\u505a\u9762\u638c\u3002 \n\nSource sentence: The cat is sleeping on the chair. \n\n\u732b\u6b63\u5728\u6905\u5b50\u4e0a\u7761\u89c9\u3002"} +{"id": "7001591", "video_name": "09b698ff-52b9-5baf-bd48-45a02375d79f", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5f0f\u7684\u653e\u5927\u955c\u955c\u5934\uff0c\u805a\u7126\u7ec6\u8282\u4e30\u5bcc\u7684\u6708\u4eae\uff0c\u9ed1\u591c\u4e2d\u7684\u4e91\u52a8\u3002"} +{"id": "7001592", "video_name": "4dfc8364-ff79-5813-9850-e18328d62149", "text": "\u4e2d\u56fd\u5927\u5b66\u751f\u793e\u56e2\u821e\u4f1a"} +{"id": "7001593", "video_name": "ee9d14bb-bdac-517a-9b0d-40d51619ed65", "text": "\u9ed1\u767d\u7167\u7247\u4e2d\uff0c\u4e00\u4e2a\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u4eba\uff0c\u5f71\u50cf\u4f7f\u8005\u7684\u7535\u5f71\u753b\u9762\uff0c\u539a\u5b9e\u95ea\u4eae\u7684\u9501\u94fe\uff0c\u552f\u4e00\u7684\u6050"} +{"id": "7001594", "video_name": "87c15ccb-c7d6-54cd-b0e4-9354a073dcd1", "text": "\u5927\u7eb8\u888b\u91cc\u7684\u7206\u7c73\u82b1\u5728\u540c\u4e00\u8f74\u4e0a\u65cb\u8f6c\uff0c\u7206\u7c73\u82b1\u4e00\u4e2a\u63a5\u4e00\u4e2a\u5730\u8df3\u5230\u7eb8\u888b\u7684\u9876\u90e8\u3002"} +{"id": "7001595", "video_name": "b356b99d-4396-5bba-be38-675c9a5a0eb8", "text": "\u672a\u6765\u5316\u76843D\u624b\u673a\u673a\u8eab\u5728\u5f69\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "7001596", "video_name": "18639038-6a00-5385-bfdf-18c45c1bc732", "text": "\u4e00\u4e2a\u91d1\u8272\u7684\u72ee\u5b50\u4fef\u89c6\u7740\u4e00\u7fa4\u8001\u5e08\u3002"} +{"id": "7001597", "video_name": "8263acc1-fdc7-5d4f-a200-b93398980004", "text": "\u6674\u5929\u8349\u5730\u7684\u9009\u62e9\u6027\u805a\u7126\u89c6\u9891\u3002"} +{"id": "7001598", "video_name": "a39d2f56-c579-59af-a900-663792ed04c3", "text": "\u4e00\u4e2a\u6ee1\u662f\u732b\u7684\u623f\u95f4\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001599", "video_name": "c88e3e2b-6e7c-5bcc-aed0-f129e59c765d", "text": "1992\u5e74\u96ea\u4f5b\u5170\u5361\u739b\u7f57SR\u6c7d\u8f66\u65cb\u8f6c\u7684\u8f66\u8f6e\u3002"} +{"id": "7001600", "video_name": "d2b69616-54a5-549e-bcb7-dfaa80677bcf", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u6b63\u5728\u7ebd\u7ea6\u8857\u4e0a\u548c\u4ed6\u5988\u5988\u4e00\u8d77\u8dd1\u3002"} +{"id": "7001601", "video_name": "7140d626-95c1-5230-926f-c88e8673ea2b", "text": "\u9ed1\u767d\u7ef4\u591a\u5229\u4e9a\u65f6\u671f\u7684\u7535\u5f71\uff0c\u9b3c\u5c4b\u6050\u6016\u7167\u7247\u7684\u5199\u5b9e\u611f\uff0cGs 20\u52a8\u4f5c\u3002"} +{"id": "7001602", "video_name": "68d41147-d424-5a55-bea1-43374395690a", "text": "\u4e2d\u95f4\u6709\u4e00\u5757\u4eae\u70b9\uff0c\u5176\u4f59\u90fd\u662f\u6c99\u6f20\u3002\u6c99\u6f20\u88ab\u98ce\u5439\u5f97\u50cf\u9b54\u6cd5\u4e00\u6837\u3002"} +{"id": "7001603", "video_name": "915fb60e-825c-598e-8e0d-3f45c428097d", "text": "\u5728\u7f8e\u4e3d\u7684\u98ce\u666f\u4e2d\u5efa\u9020\u4e00\u680b\u623f\u5b50\u3002\u5361\u8f66\u8fd0\u8f93\u5e76\u5378\u8f7d\u6750\u6599\uff0c\u4eba\u4eec\u5efa\u9020\u623f\u5b50\u3002"} +{"id": "7001604", "video_name": "d8040646-6260-5e53-b419-4fd28d00f2fb", "text": "\u5b87\u5b99\u91d1\u8272\u80cc\u666f\u4f34\u968f\u7740\u4e00\u68f5\u7ed3\u7740\u7ea2\u8272\u679c\u5b9e\u7684\u7f8e\u4e3d\u6811\u5728\u79fb\u52a8\u3002"} +{"id": "7001605", "video_name": "65be5944-b425-5004-8a46-3257bbb09c2a", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u6751\u5e84\uff0c\u6709\u4e24\u4e2a\u5f00\u6717\u7684\u59d0\u59b9Sima\u548cTima\uff0c\u8fd8\u6709\u4ed6\u4eec\u53ef\u7231\u7684\u732bChhaya\u3002\u4ee53D\u56fe\u50cf\u5448"} +{"id": "7001606", "video_name": "9be3cbd8-994f-55d1-92b5-abffa6cb5f49", "text": "\u706b\u661f\u4eba\u4ece\u592a\u7a7a\u4e2d\u770b\u5230\u7684\u5730\u7403"} +{"id": "7001607", "video_name": "e4f3b6ec-6b25-55f4-ac50-237b5338b291", "text": "\u65e0\u4eba\u673a\u62cd\u6444\u7684\u5c71\u5730\u6c7d\u8f66\u62c9\u529b\u8d5b\u3002"} +{"id": "7001608", "video_name": "eb323501-13aa-5b87-8aea-233f753da668", "text": "\u5b87\u5b99\u8fdb\u5165\u7f8e\u4e3d\u5973\u4eba\u7684\u5927\u8111\u3002"} +{"id": "7001609", "video_name": "6b990897-28c6-5388-8f39-328811d0f850", "text": "\u6751\u843d\u805a\u4f1a\uff1a\u6751\u6c11\u4eec\u5728\u5bd2\u51b7\u7684\u591c\u665a\u56f4\u7740\u7bdd\u706b\u805a\u96c6\uff0c\u5206\u4eab\u6545\u4e8b\u548c\u6e29\u6696\u3002"} +{"id": "7001610", "video_name": "41cf5d11-2233-569f-a774-15cdc3ed4ece", "text": "\u4ece\u524d\uff0c\u5728\u4e00\u7247\u90c1\u90c1\u8471\u8471\u4e14\u795e\u79d8\u7684\u4e1b\u6797\u91cc\uff0c\u4f4f\u7740\u4e00\u4e2a\u540d\u53eb\u827e\u7c73\u4e3d\u4e9a\u7684\u5e74\u8f7b\u5973\u5b69"} +{"id": "7001611", "video_name": "970f1e58-5f17-54db-b553-0f380dccaac7", "text": "\u7f8e\u4e3d\u8ff7\u4eba\u7684\u82b1\u56ed\uff0c\u4e94\u989c\u516d\u8272\u7684\u82b1\u6735\uff0c\u90c1\u90c1\u8471\u8471\u7684\u7eff\u6811\uff0c\u8774\u8776\u7fe9"} +{"id": "7001612", "video_name": "054c3b05-b2cc-58da-9e63-2bb94c35efd0", "text": "\u5357\u56db\u767e\u516b\u5341\u5e99\uff0c\u96e8\u4e2d\u6709\u51e0\u5c42\u3002"} +{"id": "7001613", "video_name": "5c42228b-022d-5759-a30e-a276245d0844", "text": "\u519c\u573a\u4e0a\u8d70\u7740\u7684\u5976\u725b \u4fe1\u606f\uff1a\u6d77\u76d7 (\u5b57\u4f53\uff1a\u73b0\u4ee3)"} +{"id": "7001614", "video_name": "570cae0f-2465-5d7a-a003-9ef11147bb58", "text": "\u4eba\u7c7b\u51fa\u95e8\u4e86\u3002\u9644\u5e26\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001615", "video_name": "87a6fded-2177-5138-a522-b00bf7edf1be", "text": "\u4ed6\u4eec\u4e00\u8d77\u5728\u5185\u6218\u4e2d\u6253\u8d25\u4e86\u4ed6\u7684\u5144\u5f1f\u6258\u52d2\u5bc6\u5341\u4e09\u4e16\uff0c\u514b\u5a04\u5df4\u7279\u62c9\u518d\u6b21\u6210\u4e3a\u4e86\u57c3\u53ca\u65e0\u53ef\u4e89\u8bae"} +{"id": "7001616", "video_name": "2a8265c1-8a34-5fac-97fc-a51bfea312b8", "text": "\u589e\u52a0\u73a9\u800d\u7684\u5b69\u5b50\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001617", "video_name": "e91e111e-dfde-56d1-887f-e2fbc6333f5b", "text": "\u6709\u4e00\u4e2a\u5973\u4eba\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u624b\u91cc\u62ff\u7740\u4e00\u4e2a\u9152\u676f\u3002\u53e6\u4e00\u4e2a\u5973\u4eba\u7ad9\u5728\u5979\u8eab\u540e\uff0c\u4e5f\u62ff\u7740\u4e00\u4e2a\u9152\u676f\u3002\u4ed6"} +{"id": "7001618", "video_name": "621a92cd-9b96-592b-9aac-615993b8c394", "text": "\u7cbe\u7075\u8239\u7532\u677f\uff0c\u7cbe\u7075\u822a\u884c\uff0c\u8fd1\u8ddd\u79bb\u62cd\u6444"} +{"id": "7001619", "video_name": "14769781-e77b-5e3f-9eb4-a8ecdb8b9842", "text": "\u521b\u9020\u4e00\u4e2a\u5145\u6ee1\u6d3b\u529b\u76843D\u573a\u666f\uff0c\u5c55\u73b0\u4e00\u7fa4\u5c0f\u800c\u660e\u4eae\u7684\u8682\u8681\u5408\u4f5c\u625b\u8d77\u4e24\u500d\u4e8e\u5b83\u4eec\u81ea\u8eab\u5927\u5c0f\u7684\u7269\u4f53"} +{"id": "7001620", "video_name": "a876f01a-b792-5e9b-9e40-686f2351bb53", "text": "\u7f8e\u56fd\u662f\u4e16\u754c\u4e0a\u7b2c\u4e00\u5bcc\u88d5\u7684\u56fd\u5bb6\u3002"} +{"id": "7001621", "video_name": "aac7ef96-7ec0-5c42-bc32-ead28c7a4840", "text": "\u6c34\u5f69\u98ce\u666f\u753b\uff0c\u5973\u5b69\u5728\u7a3b\u7530\u4e0a\u8df3\u821e\u3002"} +{"id": "7001622", "video_name": "bd79464a-0b5f-5173-b2bd-b012f01269fd", "text": "\u5728\u6728\u661f\u4e0a\u7684\u6fc0\u5149\u6447\u6eda\u97f3\u4e50\u4f1a\u4e0a\uff0c\u8d1d\u591a\u82ac\u5728\u5f39\u594f\u7740\u7535\u8111\u952e\u76d8\u3002"} +{"id": "7001623", "video_name": "a2f8bded-cb03-5ab1-bbcd-fda68eadf84f", "text": "\u5982\u4f55\u7ed9\u690d\u7269\u8fdb\u884c\u4f2a\u88c5\u7684\u6b65\u9aa4\u3002"} +{"id": "7001624", "video_name": "6bdbf242-824c-5b92-8705-ef7ab741ddb9", "text": "\u4ece\u5730\u9762\u4e0a\u770b\u5230\u7684\u73ab\u7470\u4e0a\u7684\u9633\u5149\u3002"} +{"id": "7001625", "video_name": "437098a9-fe76-53ab-9bc3-f103f68eb43d", "text": "\u90a3\u4e2a\u5973\u5b69\u7ffb\u7740\u4e66\uff0c\u8fd8\u4f1a\u7728\u7728\u773c\u775b\u3002"} +{"id": "7001626", "video_name": "b2cf64da-489a-5887-8589-bb3cc12815c6", "text": "\u5728\u6708\u5149\u7167\u8000\u4e0b\u7684\u5bc6\u6797\u73af\u7ed5\u7684\u9b3c\u5bab\uff0c\u4e00\u53ea\u9b3c\u9b42\u5411\u524d\u79fb\u52a8\u3002"} +{"id": "7001627", "video_name": "87110c52-d051-5cb7-bfbd-c0f38c6db4af", "text": "\u7535\u5f71\u5f0f\u7684\u8fd0\u52a8\uff0c\u8721\u70db\u5149\u4e2d\u9b54\u9b3c\u4ece\u7070\u70ec\u4e2d\u5347\u8d77\u3002"} +{"id": "7001628", "video_name": "8a3d8ee4-5dab-59ad-9dbe-89459c885cf2", "text": "\u5927\u96ea\u4e2d\u5954\u8dd1\u7684\u9a6c"} +{"id": "7001629", "video_name": "2262afd0-73df-5e0b-af82-2442bac69d99", "text": "Source sentence: \u91cc\u7a0b\u8868\u6c7d\u8f66\u548c\u52a0\u901f\u5ea6\u7684\u52a8\u753b"} +{"id": "7001630", "video_name": "4c7436bf-eda3-565d-8a1e-01183c5789d4", "text": "\u7c89\u8272\u7684\u5916\u661f\u6050\u9f99\u7a7f\u8fc7\u68ee\u6797\uff0c4K AR 9:16\u3002"} +{"id": "7001631", "video_name": "3addec01-5f40-57b4-8400-bd6265d490ef", "text": "\u4e00\u53ea\u6234\u9ed1\u8272\u773c\u955c\u5728\u592a\u7a7a\u4e2d\u98de\u884c\u7684\u72d7\u3002"} +{"id": "7001632", "video_name": "c586a678-3bd0-5463-b938-486b81f97d86", "text": "\u7b2c\u4e09\u573a\u666f\uff1a\u95e8\u5385\u5bbd\u655e\u660e\u4eae\u3002"} +{"id": "7001633", "video_name": "ce5e777d-f2e5-5b97-974f-a080e3d21fba", "text": "\u7d22\u5c14\u00b7\u53e4\u5fb7\u66fc\u5728\u4e00\u4e2a\u7531\u949e\u7968\u6784\u6210\u7684\u6e38\u6cf3\u6c60\u4e2d\u3002"} +{"id": "7001634", "video_name": "9e1d5fc4-f5ec-5392-bf55-0b5f7f297a2a", "text": "\u8bb8\u591a\u4e94\u989c\u516d\u8272\u7684\u7eb8\u98de\u673a\u5728\u795e\u79d8\u7684\u68ee\u6797\u4e2d\u98de\u7fd4\u3002"} +{"id": "7001635", "video_name": "1bb14339-9207-5bfa-ad34-01f9229c6233", "text": "\u521b\u4f5c\u4e00\u4e2a\u4e00\u5206\u949f\u7684\u89c6\u9891\uff0c\u5c55\u73b0\u4e00\u4e2a\u5c11\u5973\u5728\u4e00\u4e2a\u96e8\u591c\u7684\u623f\u95f4\u91cc\u5b66\u4e60\uff0c\u6253\u5b57\u5728\u5979\u7684\u7b14\u8bb0\u672c\u7535\u8111\u4e0a\u3002"} +{"id": "7001636", "video_name": "41fd77b4-d2a3-5c58-8550-85d87fecb30a", "text": "\u4e00\u4e2a\u4e00\u5206\u949f\u7684\u6c64\u59c6\u548c\u6770\u745e\u6545\u4e8b\u3002"} +{"id": "7001637", "video_name": "3ecec39b-681c-5c74-a595-1427585fdd8a", "text": "\u52a8\u6f2b\u96e8\uff0c\u4f7f\u5e95\u90e8\u7684\u8f6e\u5ed3\u79fb\u52a8\u5e76\u5411\u53f3\u8d70\u3002"} +{"id": "7001638", "video_name": "24800d16-7b37-510f-a20a-a7cd94e64ed3", "text": "\u73b0\u5b9e\u7684\u3001\u6e05\u6670\u7684\u3001\u56fe\u50cf\u7684\uff0c\u94f6\u8272UFO\u60ac\u505c\u5728\u5929\u7a7a\u4e2d\u3002"} +{"id": "7001639", "video_name": "da58e8c2-4f73-5d82-b31f-0065c6d7e275", "text": "\u4ee5\u4e00\u500b\u9762\u81e8\u98e2\u8352\u7684\u8ca7\u7aae\u6751\u838a\u958b\u5834\u3002\u4f5b\u9640\u91cb\u8fe6\u725f\u5c3c\u51fa\u73fe\uff0c\u5206\u4eab\u559c\u6085\u548c\u63d0\u4f9b"} +{"id": "7001640", "video_name": "395ebf90-5189-59cc-a20a-1f98d90857af", "text": "\u4e00\u540d\u7a7f\u7740\u767d\u5927\u8902\u7684\u533b\u751f\u770b\u8d77\u6765\u5f88\u903c\u771f\uff0c\u5177\u67093D\u6548\u679c\u3002"} +{"id": "7001641", "video_name": "c9677717-7bd4-573d-bbde-9e98be6a0a48", "text": "\u7136\u800c\uff0c\u5c31\u50cf\u4efb\u4f55\u9b54\u6cd5\u8611\u83c7\u4e00\u6837\uff0c\u98de\u8747\u4f1e\u83cc\u6709\u5b83\u81ea\u5df1\u7684\u7279\u70b9\u3002\u5b83\u542b\u6709\u5bf9\u5065\u5eb7\u6709\u5bb3"} +{"id": "7001642", "video_name": "09625ac9-43aa-558b-93d2-b13a90f85738", "text": "\u5c55\u793a\u4e00\u5f20\u9ed1\u6697\u68ee\u6797\u7684\u56fe\u50cf\uff0c\u68ee\u6797\u4e2d\u9ad8\u8038\u7684\u6811\u6728\u548c\u5929\u7a7a\u4e2d\u5fae\u5f31\u53ef\u89c1\u7684\u6708\u5149\u3002"} +{"id": "7001643", "video_name": "cf41f0ee-1a89-5136-a3d3-c61feb4c571b", "text": "\u62c9\u8fbe\u6b63\u5728\u8fdb\u5165\u98ce\u66b4\u3002"} +{"id": "7001644", "video_name": "6eb94197-0df0-5bfc-8c1d-c89708067e37", "text": "\u4e24\u53ea\u72d7\u5728\u827e\u83f2\u5c14\u94c1\u5854\u4e0b\u6253\u6597\u30028K\u89c6\u9891\u3002"} +{"id": "7001645", "video_name": "f299ead3-1882-5b2f-91f7-840f20588b36", "text": "\u4e00\u4e2a\u58eb\u5175\u62ff\u7740\u4e00\u4e2a\u6807\u5fd7\u4ece\u5766\u514b\u91cc\u51fa\u6765\uff0c\u4e0a\u9762\u5199\u7740 Federico Manco\u3002"} +{"id": "7001646", "video_name": "2ee6d600-b893-5b6a-a08f-a40d153ef432", "text": "\u4e07\u5723\u8282\u573a\u666f\u6709\u5f88\u591a\u8fd0\u52a8\uff0c\u5f88\u6709\u6d3b\u529b\u3002"} +{"id": "7001647", "video_name": "9221bfa3-48d6-5c70-bc65-2a72fd89cac4", "text": "\u4eba\u4eec\u6b63\u5728\u905b\u72d7\u3002"} +{"id": "7001648", "video_name": "738835e8-bffe-5aa0-987f-83c011e90dae", "text": "\u89c2\u770b\u5b87\u5b99\u98de\u8239\u964d\u843d\u6708\u7403"} +{"id": "7001649", "video_name": "86bb5a9f-bd2e-5e85-a415-23d1a3843593", "text": "\u4e00\u4e2a\u6cbc\u6cfd\u9e7f\u5728\u6e56\u8fb9\u8d70\u7740\uff0c\u5b83\u8eab\u540e\u6709\u4e00\u9897\u9668\u77f3\u98de\u6765\uff0c\u90e8\u5206\u906e\u6321\u4e86\u592a\u9633\u3002"} +{"id": "7001650", "video_name": "949f8ee1-c9b1-5c4e-865e-abbe5faa077b", "text": "\u4e24\u4e2a\u7537\u5b69\u548c\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u57ce\u9547\u91cc\uff0c\u4ea4\u8c08\u3002\u4e09\u7ef4\u56fe\u50cf\u3002"} +{"id": "7001651", "video_name": "00578c7b-92c8-5540-86fd-9788261d0fe0", "text": "\u7c73\u6d1b\u5e26\u7740\u6076\u4f5c\u5267\u7684\u5fae\u7b11\u5728\u6811\u6797\u4e2d\u8361\u79cb\u5343\u3002"} +{"id": "7001652", "video_name": "0d933c22-2a39-5f06-981f-b35644d06f54", "text": "\u7537\u5b50\u79fb\u52a8\u5e76\u770b\u5411\u6444\u50cf\u5934\u3002"} +{"id": "7001653", "video_name": "06bf66ee-927b-59fd-ab8e-d3adf4f99857", "text": "\u4e3b\u795e\u6e7f\u5a46\u5750\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u4e0a\uff0c4K\uff0c\u7f29\u653e\uff0c16:9\u3002"} +{"id": "7001654", "video_name": "07744176-7a93-5efb-a119-5ad13b5fcaf6", "text": "\u4ee3\u5e01\u548c\u786c\u5e01\u7a7a\u6295\uff0c\u6a59\u8272\u3001\u975b\u84dd\u8272\u548c\u67aa\u91d1\u8272\u7684\u80cc\u666f\uff0c\u6563\u666f\uff0c\u8be6\u7ec6\u4fe1\u606f\uff1a\u6bd4\u7279\u5e01\uff08\u5b57\u4f53\uff1a\u73b0"} +{"id": "7001655", "video_name": "e9fdbaa9-acf1-5846-b87e-d63b5685a4df", "text": "\u4e00\u4e2a\u8001\u4eba\u7a7f\u7740\u5361\u901a\u98ce\u683c\u7684\u767d\u8272\u5916\u5957\u548c\u5b66\u4f4d\u5e3d\u3002"} +{"id": "7001656", "video_name": "b21f4515-595f-58b8-a0c8-9cb6945551b9", "text": "\u5e02\u96c6\u4e2d\u5fc3\u7684\u76db\u5927\u97f3\u4e50\u8868\u6f14\uff0c\u7531\u624d\u534e\u6a2a\u6ea2\u7684\u9b54\u6cd5\u751f\u7269\u6f14\u594f\u53d1\u51fa\u5149\u97f3\u7b26\u7684\u4e50\u5668\u3002"} +{"id": "7001657", "video_name": "4e9d0139-e21b-558b-98f0-d54c0a796a23", "text": "\u5728\u4e2d\u534e\u6c11\u56fd\uff0c\u4e00\u4f4d\u6247\u5b50\u821e\u7f8e\u5973\u6b63\u5728\u821e\u5385\u8df3\u821e\u3002"} +{"id": "7001658", "video_name": "984c68e9-941e-5e6b-b210-6c2154b2938d", "text": "Koji\u5fae\u7b11\u7740\u4eb2\u5207\u5730\u5e26\u9886Hiro\u6765\u5230\u4e00\u4e2a\u88ab\u5145\u6ee1\u6d3b\u529b\u7684\u6a31\u82b1\u5305\u56f4\u7740\u7684\u5b81\u9759\u6c60\u5858\u3002\u4ed6"} +{"id": "7001659", "video_name": "7bf58398-de5a-5a86-ac63-8d8a419b3647", "text": "\u97f3\u901f\u8fdb\u5165\u795e\u79d8\u68ee\u6797\u7684\u4e16\u754c\uff0c\u5728\u90a3\u91cc\u4ed6\u770b\u5230\u4e86\u5947\u602a\u800c\u4e14\u4e94\u5f69\u7f24\u7eb7\u7684\u690d\u7269\u548c\u52a8\u7269\u3002"} +{"id": "7001660", "video_name": "17954550-99ca-5e50-99ea-4ff180e548fb", "text": "\u4e91\u5f69\u98d8\u52a8\uff0c\u767d\u8272\uff0c4k\u8d85\u9ad8\u6e05\uff0c\u6c34\u5f69\u3002"} +{"id": "7001661", "video_name": "0d5038a9-2a96-56d8-8eaf-c8fc47450b58", "text": "\u5b88\u62a4\u5965\u79d8\u7684\u536b\u58eb\u548c\u4ed6\u7684\u5b66\u751f\u6210\u4e3a\u4e86\u4e00\u6bb5\u6d41\u4f20\u4e8e\u65f6\u4ee3\u7684\u4f20\u8bf4\u3002"} +{"id": "7001662", "video_name": "80bb2015-503f-546f-82de-d8e81c1eeb85", "text": "8k\uff0c\u4e00\u540d\u8868\u60c5\u6050\u60e7\u7684\u7537\u5b50\uff0c\u63a2\u7d22\u623f\u5b50\u7684\u9ed1\u6697\u8d70\u5eca\u3002"} +{"id": "7001663", "video_name": "91e80973-8319-5490-88c0-299290854cb7", "text": "\u4e00\u4f4d\u795e\u5728\u9ec4\u91d1\u65f6\u523b\u5728\u5c71\u4e0a\u8df3\u821e\u3002"} +{"id": "7001664", "video_name": "2b308b6d-7d4f-544e-8bd0-71201bb56e22", "text": "\u5b64\u72ec\u7684\u4eba\u7684\u968f\u673a\u89c6\u9891\uff0c\u6ca1\u6709\u989d\u5916\u7684\u80a2\u4f53\u3001\u624b\u6307\u3001\u7578\u53d8\u3001\u6587\u672c\u3001\u6807\u5fd7\u3001\u8bdd\u8bed\u3001\u6325\u821e\u7684\u624b\u81c2\u3001\u7578\u53d8\u7684"} +{"id": "7001665", "video_name": "eb7ce2d4-df6b-51c7-b1a8-5c7108f8ae61", "text": "\u5c06\u4e3b\u795e\u6e7f\u5a46\u5728\u68ee\u6797\u7684\u5b81\u9759\u80cc\u666f\u4e0b\u5411\u5e15\u8212\u62c9\u59c6\u4f20\u6388\u5361\u62c9\u91cc\u5e15\u4e9a\u56fe\u827a\u672f\u3002\u7a81"} +{"id": "7001666", "video_name": "ed514b9e-e433-5a1a-aa5e-9870480b3d10", "text": "\u4e00\u5bf9\u98d8\u9038\u53d1\u4e1d\u7684\u5e74\u8f7b\u60c5\u4fa3\uff0c\u503c\u5f97\u5728\u8fdc\u5cb8\u89c2\u6d77\uff0c\u6b23\u8d4f\u843d\u65e5\u3001\u6ce2\u6d9b\u6c79\u6d8c\u7684\u7f8e\u666f\uff0c\u914d\u4ee5"} +{"id": "7001667", "video_name": "197ff85c-3873-5097-a4ef-2a47f6ba552e", "text": "\u4e00\u6863\u6bcf\u65e5\u7535\u89c6\u65b0\u95fb\u8282\u76ee\uff0c\u6709\u5973\u6027\u4e3b\u6301\u4eba\u3002"} +{"id": "7001668", "video_name": "e92ee271-4b90-5c74-b454-6bc36d5c7428", "text": "\u4e00\u5343\u4eba\u4ee5\u7bad\u5934\u5f62\u5f0f\u79fb\u52a8\u3002"} +{"id": "7001669", "video_name": "cdff1b9a-fd49-5e87-b3f5-73a09c5fc6af", "text": "\u591c\u665a\u5b63\u98ce\u5929\u6c14\u4e0b\u4e00\u4e2a\u5e26\u6709\u706b\u70df\u56f1\u7684\u5c0f\u5c4b\u5185\u7684\u52a8\u753b\u56fe\u50cf\u3002"} +{"id": "7001670", "video_name": "87d95d98-7e08-5e8a-a311-3064ec395bb7", "text": "\u7535\u5f71\u753b\u9762\u4e2d\u6709\u6210\u5343\u4e0a\u4e07\u5404\u79cd\u65cf\u8dea\u5728\u5730\u4e0a\uff0c\u624b\u62c9\u624b\u5411\u4e0a\u5e1d\u7948\u7977\uff0c\u800c\u4e0a\u5e1d\u5219\u7531\u5929\u7a7a\u4e2d\u95ea\u8000\u7684\u795e"} +{"id": "7001671", "video_name": "594da976-d89a-57b9-a600-3a7b7cd49e42", "text": "\u4f24\u611f\u7231\u60c5\u6b4c\u66f2\u7684\u97f3\u4e50\u89c6\u9891"} +{"id": "7001672", "video_name": "a010bbc2-1049-5368-a82f-665bcbc421dd", "text": "\u4e00\u4e2a\u9762\u5e26\u5fae\u7b11\u7684\u8d2b\u7a77\u7537\u5b69"} +{"id": "7001673", "video_name": "f165b4c7-41f5-5b68-a1ad-62a427569f7e", "text": "\u98de\u884c\u7684\u9cb8\u9c7c\u7011\u5e03\uff0c\u661f\u9645\u8ff7\u822a8K\u7535\u5f71\u9884\u544a\u7247\uff0c\u753b\u9762\u6545\u969c\uff0c\u5408\u6210\u97f3\u6ce2\u3002"} +{"id": "7001674", "video_name": "153c16a3-75c9-500a-a218-3fc6f92cae3c", "text": "\u6258\u9a6c\u65af\u00b7\u7231\u8fea\u751f\u7684\u753b\u50cf\u5c55\u793a\u5728\u7535\u89c6\u5c4f\u5e55\u4e0a\u3002"} +{"id": "7001675", "video_name": "f8bd4598-1aef-5bd3-bcb7-c9d37e14e164", "text": "\u827e\u739b\u62ff\u8d77\u642d\u7740\u4ed6\u4eec\u7167\u7247\u7684\u6302\u5760\uff0c\u5c06\u5176\u8d34\u8fd1\u5fc3\u810f\uff0c\u91cd\u7533\u5bf9\u5965\u5c14\u767b\u7684\u7231\uff0c\u8d85\u8d8a\u4e86\u65f6"} +{"id": "7001676", "video_name": "51ff91ee-5cfa-55be-b140-f6f6d7b7a04c", "text": "\u4e22\u5931\u624b\u673a\u3002\u795e\u79d8\u4fe1\u606f\u3002\u89e3\u5f00\u7ebf\u7d22\uff0c\u5e26\u6765\u610f\u5916\u7684\u91cd\u805a\u548c\u559c\u60a6\u3002"} +{"id": "7001677", "video_name": "ba4c8097-dbe6-535c-a38e-25cd098f9434", "text": "\u6e56\u4e2d\u592e\uff0c\u8eab\u62ab\u95ea\u8000\u7f8a\u6bdb\u7684\u6c34\u4ed9\uff0c\u624b\u6301\u5723\u5251\u57c3\u514b\u65af\u5361\u5229\u4f2f\uff0c\u5189\u5189\u5347\u8d77\u7684\u6e56"} +{"id": "7001678", "video_name": "05d08fde-4b25-541b-80c2-8a6228a169e4", "text": "\u4e00\u4e2a\u65e0\u4eba\u673a\u5728\u6c99\u6f20\u7eff\u6d32\u4e0a\u7a7a\u98de\u884c\uff0c\u5feb\u901f\u79fb\u52a8\u3002"} +{"id": "7001679", "video_name": "6f53c3a5-0390-5dd1-8272-f774fd43798d", "text": "\u6cd5\u8482\u739b\u5f00\u8f66\u5230\u8425\u5730\u3002"} +{"id": "7001680", "video_name": "142986ca-e477-5255-bb9c-dba226deb2ad", "text": "\u8fbe\u8299\u59ae\u50cfMichelangelo\u5438Ploom X\u7535\u5b50\u8bbe\u5907\u3002"} +{"id": "7001681", "video_name": "b7f408b8-a029-5e9b-8222-4d204dd0196b", "text": "\u963f\u5c14\u4f2f\u7279\u00b7\u7231\u56e0\u65af\u5766\u5750\u5728\u4ed6\u6742\u4e71\u7684\u684c\u5b50\u524d\uff0c\u7ffb\u9605\u4e13\u5229\u7533\u8bf7\u3002"} +{"id": "7001682", "video_name": "20a086d3-791f-593d-b837-ee48945f676e", "text": "Maya\u548c\u6c64\u666e\u68ee\u5148\u751f\u5750\u5728\u95e8\u5eca\u4e0a\uff0c\u5206\u4eab\u6545\u4e8b\u3002"} +{"id": "7001683", "video_name": "acd13147-3aee-58a8-871a-3227ab50d3e1", "text": "\u56de\u66f2\u9e7f\u5728\u795e\u5947\u7684\u68ee\u6797\u4e2d\u3002"} +{"id": "7001684", "video_name": "50fbfb9f-c620-5779-add4-bbe13050dc74", "text": "\u4e00\u6b21\u8ff7\u4eba\u7684\u751f\u7269\u53d1\u5149\u8d85\u65b0\u661f\u7206\u53d1\uff0c\u6295\u5c04\u51fa\u6e29\u6696\u3001\u7a7a\u7075\u7684\u5149\u8292\uff0c\u8986\u76d6\u5728\u65cb\u8f6c\u661f\u4e91\u7684\u5929\u7a7a"} +{"id": "7001685", "video_name": "9a1c3eb8-a286-5299-8162-a71c204db3cd", "text": "\u4e00\u4e2a\u5df4\u897f\u67d4\u672f\u9009\u624b\u5728\u8fdb\u884c\u98de\u68b3\u4e09\u89d2\u7ede\u3002"} +{"id": "7001686", "video_name": "10eb3adf-e5f9-5efe-95b8-42d61e1671a1", "text": "\u900f\u89c6\u65cb\u8f6c\u8fd0\u52a8\u9713\u8679\u706f\uff0c\u706f\u5149\u95ea\u70c1\u706b\u82b1\u95ea\u8000\u53d8\u5e7b\u3002"} +{"id": "7001687", "video_name": "f849187e-4a12-5661-b533-a25bd1ab4a1f", "text": "\u5c06\u6cb8\u6c34\u5012\u5728\u8336\u53f6\u4e0a\u3002"} +{"id": "7001688", "video_name": "6812186c-bea3-5aa7-8d27-f6cbb8e91526", "text": "\u56db\u4e2a\u670b\u53cb\u5750\u5728\u4fc4\u7f57\u65af\u62c9\u8fbe\u8f66\u91cc\uff0c\u5728\u67cf\u6797\u5e02\u5f00\u8f66\u5531\u6b4c\u3002"} +{"id": "7001689", "video_name": "d1ec4629-fdea-51bb-9dfb-8c872cffc1ed", "text": "\u66fc\u8054\u7403\u5458\u5b89\u4e1c\u5c3c\u548c\u7ecf\u7406\u7279\u6069\u54c8\u683c\u7684\u5a5a\u793c"} +{"id": "7001690", "video_name": "8dc6d03b-9ea9-55e8-91b0-19548cf9d745", "text": "\u4e00\u5206\u949f\u89c6\u9891\uff0c\u5c0f\u8001\u9f20\u6253\u9f13\u3002"} +{"id": "7001691", "video_name": "ad6d43f4-ca39-5ed4-bf7e-7b7a2eb5e8e7", "text": "\u4e1b\u6797\u91cc\u6709\u6811\u548c\u7ea2\u82b1\uff0c\u8fd8\u6709\u4e00\u4e9b\u9e1f\u5728\u98de\u7fd4\u3002\u4fe1\u606f\uff1aKunni\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "7001692", "video_name": "83b00c26-07a0-5fa9-a79c-6f18bb34c050", "text": "\u591c\u665a\u6c99\u6ee9\u4e0a\u4e00\u540d\u65e0\u5934\u7537\u5b50\u5728\u884c\u8d70\uff0c\u80cc\u540e\u6709\u4e00\u5ea7\u706f\u5854\u3002"} +{"id": "7001693", "video_name": "3bb7a66c-d143-51ab-b977-3dc78652be47", "text": "\u90a3\u4e2a\u9ed1\u53d1\u7537\u5b50\u5750\u5728\u5ba2\u5385\u7684\u6c99\u53d1\u4e0a\uff0c\u4ece\u5496\u5561\u684c\u4e0a\u62ff\u8d77\u4ed6\u7684\u624b\u673a\u3002"} +{"id": "7001694", "video_name": "89480e19-6adc-56cb-b51b-8e684ef28592", "text": "\u4e00\u4e2a\u7537\u4eba\u5e26\u7740\u4ed6\u7684\u72d7\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "7001695", "video_name": "6401560e-ea31-5cf2-a964-a64df9eeb50f", "text": "\u4e00\u4e2a\u4eba\u6c89\u8ff7\u4e8e\u91d1\u94b1\uff0c\u4ed6\u9677\u5165\u4e86\u91d1\u94b1\u7684\u6c60\u5b50\u91cc\u3002\n\nSource sentence: She is a talented musician, her skills on the piano are exceptional. \n\n\u5979\u662f\u4e00\u4f4d\u624d"} +{"id": "7001696", "video_name": "37312cf0-6017-54ee-94df-2353d0d9fe32", "text": "\u4e00\u4f4d\u62e5\u6709\u84dd\u773c\u775b\u548c\u5377\u66f2\u68d5\u8272\u5934\u53d1\u7684\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b69\uff0c\u5e26\u7740\u707f\u70c2\u7684\u5fae\u7b11\u3002"} +{"id": "7001697", "video_name": "b7273f7b-2ed2-5bc3-abff-53110c114554", "text": "\u53e4\u4ee3\u7f8e\u7d22\u4e0d\u8fbe\u7c73\u4e9a\u7684\u5386\u53f2\u53ef\u4ee5\u5206\u4e3a\u51e0\u4e2a\u5173\u952e\u65f6\u671f\u3002"} +{"id": "7001698", "video_name": "bb439853-9c3d-5324-89c2-7775b21e4cd0", "text": "\u6c34\u84dd\u8272\u7684\u66b4\u98ce\u96e8\u5728\u591c\u665a\u7684\u6d77\u6ee9\u4e0a"} +{"id": "7001699", "video_name": "8ecd2573-4599-5162-81ec-c012d29a254c", "text": "\u8239\u957f\u5c3c\u83ab\u5728\u65e5\u843d\u65f6\u5206\u5438\u7740\u70df\u6597\u89c2\u671b\u7740\u6e2f\u53e3\u3002"} +{"id": "7001700", "video_name": "a75e26f9-c46d-5ca4-90a2-df16a42813b9", "text": "\u9a7e\u9a76\u5458\u5728\u53ef\u6015\u7684\u68ee\u6797\u91cc\uff0c\u5728\u591c\u665a 4k\u3002"} +{"id": "7001701", "video_name": "c24a7b20-fd27-5c91-8bf7-62141cf4505d", "text": "\u751f\u6210\u4e00\u4e2a\u89c6\u9891\uff0c\u5176\u4e2d\u4e00\u573a\u9f99\u5377\u98ce\u6b63\u5728\u63a5\u8fd1\u9ad8\u5927\u7684\u68ee\u6797\u6811\u6728\u3002"} +{"id": "7001702", "video_name": "5910be0e-4341-5e3e-9082-e871d5b36042", "text": "\u5b64\u72ec\u5730\u5904\u5728\u8352\u91ce\u4e2d\u7684\u5b69\u5b50\u7684\u8f6e\u5ed3\u7684\u7f29\u5c0f\u56fe\u50cf\u3002\u5b69\u5b50\u5728\u56fe\u7247\u4e2d\u5e94\u8be5\u5f88\u5c0f\uff0c\u80cc\u666f\u5e94\u8be5\u5360\u636e\u5927"} +{"id": "7001703", "video_name": "b6dbdc25-2da8-5737-8034-758152cb5461", "text": "\u4e00\u4e2a\u7537\u4eba\u53d8\u6210\u4e00\u4e2a\u5973\u4eba"} +{"id": "7001704", "video_name": "ec3025d8-3587-58c3-8cbe-3e2da217475c", "text": "\u8b66\u5bdf\u4f69\u6234\u7684\u8eab\u4f53\u6444\u50cf\u5934\u5f55\u4e0b\u4e86\u4ed6\u4e0e\u4e00\u4e2a\u5947\u602a\u7684\u751f\u7269\u9762\u5bf9\u9762\u7684\u89c6\u9891\uff0c\u753b\u9762\u5e26\u6709\u9c7c\u773c\u6548\u679c\uff0c\u903c\u771f"} +{"id": "7001705", "video_name": "fd2349e0-e993-5e26-96a6-055c531ff596", "text": "\u63cf\u8ff0\u4e00\u4f4d\u5145\u6ee1\u6fc0\u60c5\u7684\u5e74\u8f7b\u827a\u672f\u5bb6\u5982\u4f55\u901a\u8fc7\u4e0e\u5979\u8c08\u8bba\u81ea\u5df1\u7684\u624b\u827a\uff0c\u5f15\u53d1\u4e86\u4e00\u79cd\u8d85\u8d8a\u753b\u5e03\u7684\u8054\u7cfb\u3002"} +{"id": "7001706", "video_name": "9cb954d1-bc4f-57c6-9e77-d46656e41247", "text": "\u4e00\u53ea\u72d0\u72f8\u4ece\u68ee\u6797\u91cc\u9003\u8dd1\u7684\u52a8\u753b"} +{"id": "7001707", "video_name": "659931ae-efd6-568d-9f76-76a3f3002e83", "text": "\u4e00\u4f4d\u5973\u6d77\u76d7\uff0c\u5728\u5915\u9633\u7684\u5f3a\u5149\u4e0b\u80cc\u5f71\u633a\u62d4\u3002"} +{"id": "7001708", "video_name": "99f06271-be91-55b3-90c3-d0e5897bef0d", "text": "\u661f\u7a7a\u7480\u74a8\uff0c\u661f\u5ea7\u3001\u5360\u661f\u7b26\u53f7\u5728\u7a7a\u6c14\u4e2d\u6d41\u52a8\uff0c\u653e\u5927\u8be6\u7ec6\uff0c\u4ee4\u4eba\u7740\u8ff7\u7684\u5360\u661f\u5b66\u3002"} +{"id": "7001709", "video_name": "6fe33f6b-af50-5263-9b3b-62eb241a9221", "text": "\u7f8e\u4e3d\u5e74\u8f7b\u7684\u8fbe\u8299\u59ae\u00b7\u5409\u5c3c\u65af\uff0c20\u4e16\u7eaa20\u5e74\u4ee3\u7684\u98ce\u683c\uff0c\u8fbe\u5229\u827a\u672f\uff0c\u8ff7\u5e7b\uff0c\u591c\u665a"} +{"id": "7001710", "video_name": "614cd6fc-f54e-55a9-a275-60d3088f63b7", "text": "\u4e00\u4e2a\u4e2d\u56fd\u9f99\u5360\u636e\u6574\u4e2a\u5c4f\u5e55\u5e76\u7a7f\u8fc7\u5b83\u3002"} +{"id": "7001711", "video_name": "72aedf08-7e55-5916-8c71-f3028a4a7e50", "text": "\u8d5b\u8d6b\u8fc5\u901f\u722c\u5c71\u53bb\u627e\u56de\u90a3\u4e2a\u4e1c\u897f\u3002"} +{"id": "7001712", "video_name": "75af47e9-5906-5160-b78d-7eacefe50eb2", "text": "the dark pavement.\n\nTranslation: \u4e3b\u89d2\u662f\u4e00\u53ea\u7f51\u7edc\u732b\uff0c\u5728\u8d5b\u535a\u670b\u514b\u98ce\u683c\u7684\u9ad8\u697c\u5927\u53a6\u56f4\u7ed5\u7684\u70df\u96fe\u5f25\u6f2b\u7684"} +{"id": "7001713", "video_name": "1ab00f26-864b-52bf-b079-d8ae7eb67e5c", "text": "\u591c\u665a\uff0c\u5929\u7a7a\u591a\u4e91\uff0c\u5e7f\u89d2\u955c\u5934\uff0c\u4e00\u9053\u95ea\u7535\u51fb\u4e2d\u4e86\u4e00\u68f5\u6811\u7684\u9876\u90e8\u3002"} +{"id": "7001714", "video_name": "5c48c14b-f419-5821-93fa-ff5bf2791abe", "text": "\u514b\u5229\u5965\u5e15\u7279\u62c9\u5973\u738b\u4e0e\u4e24\u4e2a\u7537\u4eba\u7684\u573a\u666f\uff0c\u4ed6\u4eec\u5750\u5728\u53e4\u57c3\u53ca\u5e76\u6392\u7684\u4f4d\u7f6e\u4e0a\u3002"} +{"id": "7001715", "video_name": "71c60b07-85d3-5901-aab1-5165571fdb35", "text": "\u4ed6\u7684\u60f3\u6cd5\u662f\u5728\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u6392\u706f\u8282\u671f\u95f4\u9f13\u52b1\u6bcf\u4e2a\u4eba\u8868\u73b0\u51fa\u5584\u826f\u7684\u884c\u4e3a\u3002"} +{"id": "7001716", "video_name": "843c8bf9-6c7a-53f9-9751-5e8badb7e360", "text": "\u94a2\u94c1\u4fa0\u4e0e\u795e\u79d8\u5ba2\u5728\u300a\u8718\u86db\u4fa0\uff1a\u82f1\u96c4\u8fdc\u5f81\u300b\u4e2d\u7684\u640f\u6597\u573a\u9762\uff0c4K\u8d85\u9ad8\u6e05\uff0c\u771f\u5b9e"} +{"id": "7001717", "video_name": "009f4fa8-f04c-58fd-b546-210dfb155bf6", "text": "\u559d\u7740\u51b0\u51b7\u7684\u5564\u9152\u7684\u5e74\u8f7b\u4eba\uff0c\u65e0\u610f\u4e2d\u649e\u5230\u4e86\u4e00\u645e\u5564\u9152\uff0c\u7ed3\u679c\u78b0\u5230\u4e86\u4e00\u8f86\u8f66\u3002"} +{"id": "7001718", "video_name": "a6234b22-5702-5307-bfca-cbfbe5def172", "text": "\u5728\u5b83\u4eec\u7684\u81ea\u7136\u6816\u606f\u5730\u5c55\u793a\u871c\u8702\u3002"} +{"id": "7001719", "video_name": "603166d0-b1e1-57b5-aae1-e731da13c8e7", "text": "\u8d85\u903c\u771f\u7684\u5723\u8bde\u8001\u4eba\u5c06\u4e58\u5750\u98de\u789f\u62b5\u8fbe\u3002"} +{"id": "7001720", "video_name": "e038fc1a-359b-5eac-985e-b35068353ff5", "text": "\u5c06\u8fd9\u4e2a\u89c6\u9891\u8f6c\u6362\u6210\u7d20\u63cf\u98ce\u683c\u3002"} +{"id": "7001721", "video_name": "98b6d734-85b4-5a83-a916-cfb31f1b3940", "text": "\u4e00\u53ea\u9e1f\u98de\u51fa\u4e86\u5b83\u7684\u7b3c\u5b50\uff0c\u52a8\u6f2b\u827a\u672f\u98ce\u683c\uff0c\u9ad8\u54c1\u8d28\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u3002"} +{"id": "7001722", "video_name": "2e063fab-c652-5ee2-a14f-952794eda900", "text": "\u897f\u88c5\u5e05\u54e5\u5feb\u8dd1\u3002"} +{"id": "7001723", "video_name": "079258c7-6a5b-5026-a4f1-a0bf85ca7b80", "text": "\u4e13\u4e1a\u7684\u6811\u5320\u4fee\u526a\u82f9\u679c\u6811\u3002"} +{"id": "7001724", "video_name": "86603ec4-52da-529c-a61e-d938dd2a9d0c", "text": "\u75b2\u60eb\u7684\u4e3b\u89d2\uff0c\u75b2\u4e4f\u7684\u5c24\u57fa\uff0c\u73b0\u5b9e\u4e3b\u4e49\uff0c\u6708\u591c\uff0c\u795e\u79d8\u7684\u547d\u4ee4\u3002"} +{"id": "7001725", "video_name": "49847ecd-129e-52e5-81fb-a400f412ed6b", "text": "\u4e00\u4e2a\u7834\u574f\u57ce\u5e02\u7684\u673a\u5668\u4eba\u3002"} +{"id": "7001726", "video_name": "6c76b04b-d509-563d-80f7-3de26fc39c98", "text": "\u73b0\u573a\u7535\u89c6\u65b0\u95fb\u62a5\u9053\uff0c\u4e54\u00b7\u62dc\u767b\u5411\u6444\u50cf\u5934\u8bb2\u8bdd\uff0c\u65b0\u95fb\u5ba4\u6c14\u8c61\u56fe\u3002"} +{"id": "7001727", "video_name": "bc30418e-e02e-5b0d-ac0b-3bdd19d913b0", "text": "\u4e00\u4e2a\u68a6\u60f3\u6210\u4e3a\u8db3\u7403\u8fd0\u52a8\u5458\u7684\u7537\u5b69\u3002 \n\nSource sentence: She loves to travel and explore new cultures. \n\n\u5979\u559c\u6b22\u65c5\u884c\u548c\u63a2\u7d22\u65b0\u7684\u6587\u5316"} +{"id": "7001728", "video_name": "9763e74e-cdd2-5f92-bd53-02ee58544ce8", "text": "\u60f3\u8c61\u4e00\u573a\u661f\u9645\u4ea4\u54cd\u66f2\uff1a\u521b\u4f5c\u4e00\u4e2a\u80fd\u6355\u6349\u5929\u4f53\u4e4b\u95f4\u548c\u8c10\uff0c\u878d\u5408\u5b87\u5b99\u4e4b\u8272\u3001\u9519\u7efc\u590d\u6742\u7684\u661f"} +{"id": "7001729", "video_name": "4a1546a5-ef7f-5c18-a9a4-89055f62c3f3", "text": "\u4e00\u4f4d\u610f\u5927\u5229\u5de5\u5320\u80cc\u7740\u5305\u5728\u676d\u5dde\u7199\u6518\u7684\u8857\u9053\u4e0a\u6f2b\u6b65\u3002"} +{"id": "7001730", "video_name": "cb8ec46a-d46c-5ead-af0f-41728dbe12fa", "text": "\u98de\u843d\u5730\u7403\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001731", "video_name": "f4541ea6-0efe-5750-9a28-3ad342b6e303", "text": "\u68ee\u6797\u3001\u5730\u7cbe\u3001\u4f8f\u5112\u3001\u5730\u7262\u548c\u9f99\u7684\u6218\u6597\u3002"} +{"id": "7001732", "video_name": "b5b42461-604c-544f-83b3-7c489c06d6e6", "text": "\u4e00\u4e2a\u5929\u4f7f\u5728\u6c99\u6ee9\u4e0a\u884c\u8d70\u3002"} +{"id": "7001733", "video_name": "0bb73bcd-7f1c-5ec6-996c-2b4cbedc4004", "text": "1\u679a\u706b\u7bad\u53d1\u5c04\u8fdb\u5165\u592a\u7a7a\uff0c\u5b87\u822a\u5458\uff0c\u5730\u52e4\u4eba\u5458\uff0c\u822a\u7a7a\u822a\u5929\uff0c\u5b87\u5b99\u98de\u8239\uff0c\u56fd\u9645\u7a7a\u95f4\u7ad9\u3002"} +{"id": "7001734", "video_name": "8c82133f-0778-53b3-8637-e84b662b172a", "text": "\u4e00\u4e2a\u5e26\u7740\u4e24\u4e2a\u5a74\u513f\u7684\u6bcd\u4eb2\uff0c\u771f\u5b9e\u5730\u63cf\u7ed8\u51fa\u4e86\u4e00\u4e2a\u573a\u666f\u3002"} +{"id": "7001735", "video_name": "283bdd2d-59cd-5f2d-a3e3-5fa1fe9a3252", "text": "\u5df4\u585e\u7f57\u90a3\u60c5\u4fa3\u624b\u7275\u624b\u76844K\u56fe\u50cf"} +{"id": "7001736", "video_name": "4b75f905-5129-5157-a83a-646ef131da0a", "text": "\u4e00\u5e45\u63d2\u753b\uff1a\u5c55\u793a\u4e86\u4e00\u8f86\u91d1\u5c5e\u7070\u8272\u7684\u6c7d\u8f66\uff0c\u5176\u5185\u90e8\u66b4\u9732\uff0c\u5c55\u793a\u4e86\u53d1\u52a8\u673a\u3001\u53d8\u901f\u5668\u548c\u5176\u4ed6\u5173\u952e\u90e8\u4ef6\u76843D"} +{"id": "7001737", "video_name": "97ff85b5-b032-58e4-a505-b05e4a762f12", "text": "\u4e00\u95f4\u667a\u80fd\u3001\u8212\u9002\u7684\u5367\u5ba4\uff0c\u6709\u4e00\u4e2a\u5341\u51e0\u5c81\u7684\u7537\u5b69\uff0c\u68d5\u8272\u5934\u53d1\uff0c\u7a7f\u7740\u77ed\u8896\u7070\u8272T\u6064\uff0c\u6b63\u5728"} +{"id": "7001738", "video_name": "dcc6f77f-ce54-557d-b761-84083b593b8e", "text": "\u623f\u5730\u4ea7\u7ecf\u7eaa\u4eba\u7a7f\u7740\u7eff\u8272\u897f\u88c5\u548c\u91d1\u8272\u9886\u5e26\uff0c\u76f4\u89c6\u524d\u65b9\u5fae\u7b11\u3002"} +{"id": "7001739", "video_name": "66941a33-77cd-5e9e-a378-f6646dab7e46", "text": "\u67e5\u7406\u00b7\u535a\u6c83\u7279\uff08Charlie Bowater\uff09\u7684\u52a8\u753b\uff0c\u5c55\u73b0\u4e86\u4e00\u4e2a\u4eba\u5728\u5c71\u4e0a\u5f39\u5409\u4ed6\u3002"} +{"id": "7001740", "video_name": "354878d7-2676-5168-9313-24f572b991e1", "text": "\u9ed1\u888d\u4eba\u7ad9\u5728\u4e00\u4e2a\u5de8\u5927\u7684\u6a59\u8272\u6c99\u4e18\u4e2d\u592e\uff0c\u98ce\u5439\u62c2\u7740\u4ed6\u7684\u9ed1\u888d\u3002"} +{"id": "7001741", "video_name": "c43fcd7e-f237-55e1-a9b4-06e82880b061", "text": "\u5b9d\u9a6c\u8f66\u8239\u6f02\u6d6e\u5728\u6c34\u5751\u4e2d\u3002"} +{"id": "7001742", "video_name": "c8a784cc-1970-57fe-a160-44319e03be65", "text": "\u5728\u4e00\u5ea7\u697c\u68af\u65c1\u8fb9\u7684\u516c\u56ed\u91cc\uff0c\u4e00\u4f4d\u91d1\u53d1\u957f\u53d1\u7684\u5973\u5b50\u5f39\u594f\u94a2\u7434\u3002"} +{"id": "7001743", "video_name": "5c1b972b-862c-5868-bc57-199a7d120ef4", "text": "\u52a8\u753b\u89d2\u8272\u7a7f\u8d8a\u4e1b\u6797\uff0c\u89e3\u51b3\u8c1c\u9898\uff0c\u9762\u5bf9\u98ce\u66b4\u3002"} +{"id": "7001744", "video_name": "965ae976-6cec-5479-8258-999cd6c8267f", "text": "\u4e2d\u592a\u5e73\u6d0b\u7206\u53d1\u706b\u6d77\u98ce\u66b4\u3002\n\nSource sentence: Can you please pass me the salt? \n\u8bf7\u4f60\u9012\u7ed9\u6211\u76d0\u597d\u5417\uff1f"} +{"id": "7001745", "video_name": "2715bd0f-1198-5875-be1f-b8d74bcf2b5b", "text": "\u7f8e\u4e3d\u7684\u5fb7\u56fd\uff0c\u97e6\u65af\u00b7\u5b89\u5fb7\u68ee\u98ce\u683c\uff0c\u5927\u96e8\u503e\u76c6\uff0c\u96f7\u96e8\u4ea4\u52a0\uff0c\u5149\u7ebf\u5145\u8db3\uff0c\u65f6\u95f4\u6d41\u901d\uff0c"} +{"id": "7001746", "video_name": "b5e93753-5984-5013-a2b4-5ac2e8215c5f", "text": "\u5723\u8bde\u5feb\u4e50\uff0c\u65b0\u5e74\u5feb\u4e50\uff012024\u5e74\u519c\u4e1a\u6982\u5ff5\u3002"} +{"id": "7001747", "video_name": "59c58533-01b2-5e8e-8f5b-b12dc8343846", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u91d1\u53d1\u5973\u5b69\u6b63\u5728\u7a97\u524d\u7684\u684c\u5b50\u524d\u5199\u4e00\u672c\u7231\u60c5\u5c0f\u8bf4\u3002"} +{"id": "7001748", "video_name": "df5f8a5d-5a86-595d-bfbd-4decdb6252c7", "text": "\u66f4\u591a\u7684\u6570\u5b66\u65b9\u7a0b\u5f0f\uff0c\u5728\u767d\u677f\u4e0a\uff0c\u9ed1\u8272\u7684\u6587\u5b57\u3002"} +{"id": "7001749", "video_name": "dd56db12-8fbc-5cc3-9313-e7b82df176eb", "text": "\u5728\u5df4\u57fa\u65af\u5766\u7684\u5fc3\u810f\u5730\u5e26\uff0c\u4e00\u4f4d\u540d\u53eb\u4f0a\u59c6\u5170\u00b7\u6c57\u7684\u7537\u5b50\u5f00\u59cb\u4e86\u4e00\u6bb5\u5353\u8d8a\u7684\u65c5\u7a0b\uff0c\u8fd9\u5c06"} +{"id": "7001750", "video_name": "1b84acef-ddd8-5e05-b857-6eb9b5b8dc9a", "text": "\u94f6\u884c\u4fdd\u9669\u5e93\u88ab\u6253\u5f00\u7684\u7279\u5199\u955c\u5934\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u903c\u771f\uff0c4k\u3002"} +{"id": "7001751", "video_name": "3d22ffb4-f013-5d1b-b099-9e41f2aa4b47", "text": "\u5728\u5df4\u5398\u5c9b\u7684\u7011\u5e03\u524d\uff0c\u521b\u9020\u51fa\u4e24\u4e2a\u7a7f\u7740\u84dd\u8272\u88d9\u5b50\u7684\u5973\u6027\u5411\u5979\u672a\u6765\u7684\u81ea\u5df1\u6f2b\u6b65\uff0c\u5468\u56f4"} +{"id": "7001752", "video_name": "70fd7a90-f6ac-5ada-aa1f-f152864193d8", "text": "\u6d53\u90c1\u7684\u6930\u6c41\u867e\u6c64\uff0c\u914d\u4e0a\u84b8\u70ed\u7684\u98df\u7269\u3002"} +{"id": "7001753", "video_name": "0baed087-143e-54ea-b32b-3842b75ce2c9", "text": "\u4e00\u4e2a\u5e26\u7740\u5927\u8c61\u7684\u5c0f\u7537\u5b69\u3002"} +{"id": "7001754", "video_name": "39013c34-449b-5659-b891-3cdfb8e6b515", "text": "\u4e00\u7fa4\u4eba\u5728\u6d3e\u5bf9\u4e0a\u5e26\u7740\u68d2\u68d2\u7cd6\u72c2\u6b22\u3002"} +{"id": "7001755", "video_name": "e9ebd53e-5ab2-59f0-bfc1-06a33cac8e46", "text": "\u5f53\u5979\u4eec\u56de\u5bb6\u7684\u65f6\u5019\uff0c\u95e8\u6237\u5728\u5979\u4eec\u8eab\u540e\u5173\u95ed\uff0c\u518d\u6b21\u8ba9\u8fd9\u7247\u9b54\u6cd5\u68ee\u6797\u4f11\u606f\u3002\u8389\u8389\u548c\u827e\u739b"} +{"id": "7001756", "video_name": "22bdbf0d-3e28-5401-8769-4e239226d8e2", "text": "\u4e00\u4e2a\u5728\u5355\u8272\u9ec4\u5899\u4e0a\u5012\u7740\u6ef4\u7b54\u4f5c\u54cd\u7684\u65f6\u949f\u3002"} +{"id": "7001757", "video_name": "999a9faa-ab2e-5d4a-b73e-b3323da2a3b3", "text": "\u4e00\u4e2a\u60ac\u505c\u7740\u7684\u673a\u5668\u4eba\u201c\u6559\u5e08\u201d\u5728\u623f\u95f4\u91cc\u5de1\u903b\uff0c\u6563\u53d1\u51fa\u51b7\u9177\u800c\u9ed1\u6697\u7684\u9634\u5f71\u3002"} +{"id": "7001758", "video_name": "676c3b21-828c-5bea-a1c1-bdabd133d850", "text": "\u9752\u5c11\u5e74\u5728\u6a59\u8272\u548c\u68d5\u8272\u7684\u623f\u95f4\u91cc\u73a9\u865a\u62df\u73b0\u5b9e\u773c\u955c\u3002"} +{"id": "7001759", "video_name": "c2869e1a-cd75-5a9c-b3c1-30f4990d1fe4", "text": "\u573a\u666f5\uff1a\u795e\u79d8\u7684\u68ee\u6797\n\n\u7334\u5b50\u548c\u5927\u8c61\u8fdb\u5165\u4e00\u4e2a\u795e\u79d8\u7684\u68ee\u6797\uff0c\u5145\u6ee1\u4e86\u9b54\u6cd5\u8424\u706b\u866b\uff0c\u5f15"} +{"id": "7001760", "video_name": "632085dc-eccc-5fa7-afea-e973cc9863c7", "text": "\u4e00\u4e2a\u7a7f\u7740\u8fea\u65af\u79d1\u821e\u4f1a\u793c\u670d\u7684\u8df3\u821e\u5927\u8c61\u3002"} +{"id": "7001761", "video_name": "0f46bc6e-ea7c-5b8e-b237-6f1d99f3ea2d", "text": "\u4e00\u4e2a\u624b\u5728\u5361\u5e26\u64ad\u653e\u5668\u4e0a\u8f6c\u52a8\u3002"} +{"id": "7001762", "video_name": "55a2ae24-a57c-5dcc-8a4e-12917bea89c9", "text": "\u4e00\u500b\u6a02\u9ad8\u8611\u83c7\u6b96\u6c11\u5730\uff0c\u80cc\u666f\u662f\u5f69\u8679\u3002"} +{"id": "7001763", "video_name": "20ffc18d-73a0-55dd-abfd-e67eb63b9aed", "text": "\u4e00\u4e2a\u573a\u666f\u4e2d\uff0c\u4e00\u4e2a\u575a\u5fcd\u7684\u808c\u8089\u7537\u5b50\u7a7f\u7740\u53e4\u5e0c\u814a\u7684\u957f\u888d\uff0c\u4ee5\u8bf4\u670d\u7684\u65b9\u5f0f\u8fdb\u884c\u771f\u5b9e\u7684\u5bf9\u8bdd\u3002"} +{"id": "7001764", "video_name": "354607cb-4f8b-54b2-9f19-a631bf77c1fe", "text": "\u65af\u91cc\u5170\u5361\u6d77\u6ee9\u4e0a\uff0c\u7a7f\u7740\u534e\u4e3d\u6bd4\u57fa\u5c3c\u7684\u65af\u91cc\u5170\u5361\u7f8e\u5973\u671d\u7740\u6444\u50cf\u673a\u8d70\u6765\uff0c\u5934\u53d1\u968f"} +{"id": "7001765", "video_name": "07ead0d3-3327-5cf8-bb8a-95bfb967f326", "text": "\u5154\u5b50\u548c\u4e4c\u9f9f\u7ad9\u5728\u6bd4\u8d5b\u7ebf\u540e\u51c6\u5907\u6bd4\u8d5b\u3002"} +{"id": "7001766", "video_name": "0758b5c5-37ae-531f-bdb1-1b54e11b2e9f", "text": "\u5361\u901a\u7537\u5b50\u7559\u7740\u80e1\u987b\uff0c\u7a7f\u7740\u897f\u88c5\u5728\u57ce\u5e02\u91cc\u884c\u8d70\u3002"} +{"id": "7001767", "video_name": "871cb906-fb39-5b07-bd28-a1838fb03eb5", "text": "\u7a7f\u7740\u6bd2\u6db2\u670d\u88c5\u7684\u9a6c\u91cc\u4e9a\u5947\u4e50\u961f\u5728\u58a8\u897f\u54e5\u6d3e\u5bf9\u4e0a\u6f14\u594f\u5409\u4ed6\uff0c\u6709\u86cb\u7cd5\u3001\u4e94\u5f69"} +{"id": "7001768", "video_name": "3232d746-4005-5fa8-8367-8359677678db", "text": "\u521b\u5efa\u4e00\u4e2a\u52a8\u753b\u5f62\u8c61\uff0c\u4ee3\u8868\u53cb\u597d\u800c\u77e5\u8bc6\u6e0a\u535a\u7684\u4eba\u5de5\u667a\u80fd\u4e3b\u6301\u4eba\u3002\u5f62\u8c61\u5e94\u8be5\u6563\u53d1\u4eb2\u548c\u529b\u548c\u81ea\u4fe1\uff0c\u7a7f\u7740\u73b0\u4ee3"} +{"id": "7001769", "video_name": "e10456d6-2044-5d12-8fc9-52ff4fc97d9e", "text": "\u4e1b\u6797\uff0c\u6811\u53f6\u54d7\u54d7\u4f5c\u54cd\uff0c\u4e0d\u5bbd\u655e\uff0c\u7a33\u5b9a\uff0c\u8349\u4e1b\u7f13\u6162\u6447\u52a8\u3002"} +{"id": "7001770", "video_name": "db343b6a-1a00-5214-b41c-2c0ac1f22bd6", "text": "\u6570\u767e\u53ea\u7334\u5b50\u5728\u98ce\u96e8\u4ea4\u52a0\u7684\u6d77\u4e2d\u6e38\u5411\u4e00\u4e2a\u540d\u4e3aOpensea\u7684\u5c9b\u5c7f\u3002"} +{"id": "7001771", "video_name": "39808a1d-adf6-56d5-91ec-d6df027fd42c", "text": "\u5c4f\u5e55\u663e\u793a\u51fa\u4e00\u7247\u7f8e\u4e3d\u7684\u84dd\u5929\u548c\u4e00\u9053\u8de8\u8d8a\u5176\u4e2d\u7684\u5f69\u8679\u3002\u76f8\u673a\u5207\u6362\u5230\u4e00\u4e2a\u7a7f\u7740\u767d\u8272\u8fde\u8863\u88d9\u3001"} +{"id": "7001772", "video_name": "8bcf63ab-f209-5349-833d-22cfab51c7e5", "text": "\u7f57\u9a6c\u58eb\u5175\u5728\u8036\u7a23\u65f6\u4ee3\u53c2\u52a0\u4e86\u4e00\u573a\u6fc0\u70c8\u7684\u6218\u6597\u3002"} +{"id": "7001773", "video_name": "ef060ab1-9a8e-580c-b266-f22b058aa5b7", "text": "\u7a7f\u7740\u957f\u957f\u7684\u4eae\u7ea2\u8272\u88d9\u5b50\u7684\u5973\u5b50\u5728\u591c\u665a\u7a7f\u8fc7\u4e00\u6761\u6f06\u9ed1\u957f\u5eca\u3002\u8fd9\u662f1970\u5e74\u4ee3\u7684\u6280\u672f\u8272\u5f69\u3002"} +{"id": "7001774", "video_name": "65eb5b67-4700-5c41-87a2-f1a3f2ceaa7e", "text": "\u5728\u4e00\u4e2a\u7164\u77ff\u6d1e\u91cc\uff0c\u6709\u4e00\u540d\u77ff\u5de5\u5728\u91cc\u9762\u5de5\u4f5c\uff0c\u706f\u5149\u660f\u6697\uff0c\u6709\u94c1\u8f68\u3002"} +{"id": "7001775", "video_name": "9b970acc-ec3d-5f7b-bb7b-f2b0fbfb6487", "text": "\u9ad8\u5ea6\u903c\u771f\u7684\u9b54\u6cd5\u6162\u6162\u632f\u52a8\u7684\u5706\u73af\u5149\u73af"} +{"id": "7001776", "video_name": "bc3f5725-952e-52ec-92c8-6af9e93e8f98", "text": "\u4e24\u4fa7\u6709\u5c71\u7684\u6e56\u6cca\uff0c\u4f4e\u5730\u4e0a\u6709\u51b0\u5ddd\u51b0\u5c42\uff0c\u5f62\u6210\u4e86\u7b2c\u4e09\u4fa7\u7684\u5830\u575d\u3002\u51b0\u6cb3\u4e16\u7eaa\u7ed3\u675f\u3002\u7167"} +{"id": "7001777", "video_name": "5eb10c8c-3b23-5c4e-81b8-f19516fbc54d", "text": "\u4e00\u4e2a\u5973\u5b69\u7ad9\u5728\u5c71\u8c37\u6865\u4e0a\u7684\u89c6\u9891"} +{"id": "7001778", "video_name": "d395142a-507c-55d5-a9af-a2c57643c3b8", "text": "\u4e00\u652f\u91cd\u91d1\u5c5e\u4e50\u961f\u6f14\u594f\u6fc0\u70c8\u7684\u5409\u4ed6\u548c\u6447\u6446\u7684\u5934\u53d1\u3002"} +{"id": "7001779", "video_name": "f0386067-b1cb-5ca9-b92b-0a8c78e60cb7", "text": "\u4e00\u4e2a\u60c5\u4fa3\u76f8\u62e5\u800c\u62b1\u3002"} +{"id": "7001780", "video_name": "863583b0-27ab-5543-b2de-e2ebd0ddf0c7", "text": "\u7ea6\u7ff0\u00b7\u80af\u00b7\u83ab\u6ed5\u68ee\u521b\u4f5c\u7684\u9a91\u58eb\u5728\u68ee\u6797\u4e2d\u9a91\u9a6c\u7684\u52a8\u753b\u3002"} +{"id": "7001781", "video_name": "4b6fb720-ed2b-5660-9305-a51a1d55a014", "text": "\u4e00\u4e2a\u8eab\u7a7f\u53e4\u4ee3\u670d\u88c5\u3001\u751f\u6d3b\u5728\u73b0\u4ee3\u77e9\u9635\u5f0f\u7f51\u7edc\u4e16\u754c\u7684\u591a\u5f69\u53e4\u4ee3\u58eb\u5175\uff0c\u5c55\u793a\u4e00\u4e2a\u88ab\u5206\u6210\u597d\u574f\u4e24\u6d3e"} +{"id": "7001782", "video_name": "775c7b56-05d0-5f01-b999-1632e3401f52", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u4e0e\u4e00\u540d\u7537\u5b50\u4ea4\u8c08\n\nSource sentence: She is studying Chinese at university. \n\u5979\u6b63\u5728\u5927\u5b66\u5b66\u4e60\u4e2d\u6587\u3002"} +{"id": "7001783", "video_name": "aaa034f9-9f5d-5711-9f29-434e96ed6ab5", "text": "\u5154\u5b50\u548c\u677e\u9f20\u7a7f\u8fc7\u68ee\u6797\uff0c\u8d8a\u8fc7\u5c0f\u6eaa\u3002"} +{"id": "7001784", "video_name": "25d004a6-2f00-59ae-9671-b8fc9136e9c8", "text": "\u7528\u5929\u7136\u7684\u989c\u8272\u3001\u76db\u5f00\u7684\u82b1\u6735\u548c\u5b81\u9759\u7684\u6c1b\u56f4\u6765\u63cf\u8ff0\u5929\u4e0a\u7684\u666f\u8c61\u3002"} +{"id": "7001785", "video_name": "0c4e610d-02c6-55b0-9e9c-947b6241cc57", "text": "\u62c9\u4e01\u5c0f\u7537\u5b69\u548c\u5c0f\u5973\u5b69\u5728\u8349\u5730\u4e0a\u5954\u8dd1\u3002"} +{"id": "7001786", "video_name": "926ed3d1-19cf-5a97-a2ac-7a860e36752f", "text": "\u516c\u53f8\uff0c\u6469\u5929\u5927\u697c\uff0c\u5927\u57ce\u5e02\uff0c\u9634\u6697\u7684\u5929\u7a7a\uff0c\u66b4\u98ce\u96e8\u3002"} +{"id": "7001787", "video_name": "1a2d2a84-7459-51a4-98ab-dbec511523a0", "text": "\u4e00\u4e2a\u6e38\u4e50\u56ed\uff0c\u591c\u665a\uff0c\u6a59\u8272\u8c03\uff0c\u5669\u68a6\u822c\u7684\u6c1b\u56f4\uff0c\u8d85\u73b0\u5b9e\u76844K\uff0c16.9\u3002"} +{"id": "7001788", "video_name": "1720ed51-5b3a-5c4e-85c3-802a0636457f", "text": "\u6211\u4eec\u6751\u91cc\u6709\u4e24\u4e2a\u53ef\u7231\u7684\u7537\u5b69\u548c\u4e00\u4e2a\u53ef\u7231\u7684\u5973\u5b69\u3002"} +{"id": "7001789", "video_name": "d5b201db-b669-5721-bd87-214a539b64ec", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6c99\u6f20\u4e2d\u8d70\u7740\uff0c\u7136\u540e\u4e0a\u4e86\u4e00\u8f86\u8f66\uff0c\u5f00\u59cb\u9ad8\u901f\u9a7e\u9a76\uff0c\u672a\u6765\u7684\u5927\u90fd\u5e02\u5728\u8fdc\u5904\u53ef\u89c1\u3002"} +{"id": "7001790", "video_name": "38740122-33e3-551a-b5bf-84667f0b69d9", "text": "\u6211\u9700\u8981\u4e00\u8f86\u53ef\u7231\u7684\u706b\u8f66\uff0c\u4e0a\u9762\u53ea\u6709\u4e00\u4e2a\u82f9\u679c\uff0c\u50cf\u6a2a\u5e45\u4e00\u6837\u5c55\u793a\uff0c\u82f9\u679c\u5e94\u8be5\u662f\u53ef\u89c1\u7684\u3002"} +{"id": "7001791", "video_name": "e99e1b98-001f-5a11-8c31-e22cb21c1286", "text": "\u751f\u6210\u4e00\u4e2a\u5916\u661f\u4eba\u5531\u300a\u4e50\u56ed\u7684\u5f7c\u7aef\u300b\u7684\u89c6\u9891\u3002"} +{"id": "7001792", "video_name": "3cae57c7-1188-5c06-a9ab-7e59129041e7", "text": "\u4e00\u4f4d\u7a7f\u7740\u5b9e\u9a8c\u5ba4\u5916\u5957\u7684\u5973\u79d1\u5b66\u5bb6\u6b63\u5728\u5b9e\u9a8c\u5ba4\u91cc\uff0c\u9762\u5bf9\u5b9e\u9a8c\u53f0\u5de5\u4f5c\uff0c\u968f\u540e\u5979\u7684\u4fa7\u9762\u51fa\u73b0\uff0c\u624b\u6301\u4e00\u5f20"} +{"id": "7001793", "video_name": "e96b4ec5-97ec-5369-a708-a13b381f3e04", "text": "\u5b87\u5b99\u7684\u672b\u65e5\uff0c\u5012\u704c\u8fdb\u65e0\u5c3d\u6df1\u6e0a\uff0c\u8fd0\u52a84\u3002"} +{"id": "7001794", "video_name": "5b600cb4-5c65-5ea3-968b-036a55e5ac60", "text": "\u5efa\u7acb\u4e00\u4e2a\u7a7a\u4e2d\u65e0\u4eba\u673a\u62cd\u6444\u7684\u573a\u666f\uff1a\u4e00\u7fa4\u6301\u624b\u67aa\u7684\u8d5b\u535a\u683c\u673a\u5668\u4ebaBeyonc\u00e9\u8fdb\u5165\u672a\u6765\u5b9e\u9a8c\u5ba4\u3002"} +{"id": "7001795", "video_name": "67b93d85-6d57-5466-8de0-3a47a3b673c8", "text": "\u7f51\u7edc\u670b\u514b\u98ce\u683c\u7684\u5973\u5b69\u5728\u524d\u7f6e\u6444\u50cf\u5934\u4e0b\u5531\u6b4c\uff0c\u642d\u914d FX \u6fc0\u5149\u6548\u679c\uff0c\u4f7f\u7528 2K \u955c\u5934\u95ea\u7130"} +{"id": "7001796", "video_name": "9a5c21c7-d15c-5448-bc96-906a053103bf", "text": "\u5236\u4f5c\u4e00\u4e2a\u5e26\u725b\u4ed4\u5e3d\u5b50\u7684\u8718\u86db\u4fa0\uff0c\u5728\u884c\u661f\u4e0a\u8df3\u821e\u3002"} +{"id": "7001797", "video_name": "d8151374-4848-5c16-9709-ea8017e85cf3", "text": "\u84dd\u8272\u94bb\u77f3\u88ab\u6cd5\u56fd\u65c5\u884c\u8005\u4ece\u5370\u5ea6\u76d7\u8d70\u3002 \n\nSource sentence: I will meet you at the restaurant at 7pm. \n\u6211\u4f1a\u5728\u665a\u4e0a7\u70b9"} +{"id": "7001798", "video_name": "b19cc056-a593-5e0b-92b4-8e3afa7c36a8", "text": "\u5370\u5ea6\u5f53\u5730\u706b\u8f66\u65c5\u884c\u6d6a\u6f2b\u60c5\u4fa3"} +{"id": "7001799", "video_name": "6b39237f-3aef-5370-b198-151aad501b4f", "text": "\u53f3\u773c\u7728\u773c\uff0c\u5934\u53d1\u6709\u98ce\u5439\u7684\u6548\u679c\u3002"} +{"id": "7001800", "video_name": "5cee198f-ec26-590c-819f-e98f76c3567d", "text": "\u6c99\u6f0f\u6307\u5411\u4e1c\u897f\u4e24\u4e2a\u65b9\u5411\u3002"} +{"id": "7001801", "video_name": "a8916712-b171-5408-9895-ee8aa6c70ab9", "text": "\u57288K\u5206\u8fa8\u7387\u4e0b\uff0c\u771f\u5b9e\u3001\u8d85\u5feb\u901f\u4e14\u52a8\u4f5c\u8fc5\u6377\uff0c\u4e00\u4e2a\u623f\u95f4\u91cc\u6709\u4e00\u5f20\u5e8a\uff0c\u5e8a\u4e0a\u6709\u4e00\u4e2a\u4eba\u88ab\u7ed1\u4f4f\uff0c\u4ed6"} +{"id": "7001802", "video_name": "a30b67e8-c4cc-57ad-83c1-0abc606115b3", "text": "\u547d\u8fd0\u7684\u540d\u5b57\u5728\u9177\u827a\u4e2d\u3002"} +{"id": "7001803", "video_name": "869db5da-8273-5f75-a9b6-c422407b4128", "text": "\u7cd6\u679c\u5f62\u6210\u7684\u8df3\u821e\u7cd6\u4eba\u3002"} +{"id": "7001804", "video_name": "5aba2f94-3018-5c00-9fa9-96d9d418c0da", "text": "\u8bb8\u591a\u5149\u4f0f\u677f\u5b89\u88c5\u5728\u5de5\u4e1a\u4ed3\u5e93\u7684\u5c4b\u9876\u4e0a\uff0c\u5728\u4f4e\u7a7a\u98de\u884c\u975e\u5e38\u975e\u5e38\u5feb\u5730\u671d\u7740\u5730\u5e73\u7ebf\u98de\u53bb\uff0c\u7559\u4e0b"} +{"id": "7001805", "video_name": "b55f85f6-b91a-589b-a2e7-1153dfd597c0", "text": "\u5728\u5730\u56fe\u4e0a\u83b7\u53d6\u4ece\u5723\u8fed\u6208\u5230\u7ebd\u7ea6\u7684\u8def\u7ebf\u6307\u5f15\u3002"} +{"id": "7001806", "video_name": "71febdb8-e249-533d-a7d8-55f9caa61ad7", "text": "\u4e54\u00b7\u7f57\u6839\u5728\u516b\u89d2\u7b3c\u4e2d\u640f\u6597\uff0c\u5177\u6709\u7535\u5f71\u611f\u548c\u78e8\u7802\u611f\u3002"} +{"id": "7001807", "video_name": "4ad5c7b9-dd48-5314-a38d-ccc500a459be", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u56fd\u4f1a\u5c71\u524d\u9003\u907f\u8b66\u5bdf\uff0c\u671d\u7740\u6444\u50cf\u5934\u8dd1\u53bb\uff0c\u903c\u771f\u6709\u8da3\u3002"} +{"id": "7001808", "video_name": "c38994a8-496d-5792-9fab-0324f1c25365", "text": "3D\u8d85\u903c\u771f\u7684\u5e7b\u60f3\u98ce\u683c\u7f8e\u4e3d\u82cd\u767d\u76ae\u80a4\u7684\u5973\u6811\u7075\u7a7f\u7740\u7eff\u8272\u957f\u888d\u548c\u675f\u8170\u5916\u8863\uff0c"} +{"id": "7001809", "video_name": "90c0e411-8e13-574b-bbcf-562789a35690", "text": "\u8fbe\u65af\u7ef4\u5fb7\u5750\u5728\u300a\u6743\u529b\u7684\u6e38\u620f\u300b\u4e2d\u7684\u94c1\u738b\u5ea7\u4e0a\u3002"} +{"id": "7001810", "video_name": "15cb2cee-051b-569e-95b3-bb8e4bcf4620", "text": "\u5728\u4e1b\u6797\u6c60\u5858\u91cc\u521b\u9020\u5e7c\u513f\u73a9\u800d\u9e2d\u5b50\u7684\u89c6\u9891\u3002"} +{"id": "7001811", "video_name": "c0e2e3ee-132a-5148-bcf8-84da9c9f5650", "text": "\u5de7\u514b\u529b\u505a\u6210\u7684\u6d41\u6d6a\u6c49\u5f62\u8c61\u7537\u4eba"} +{"id": "7001812", "video_name": "dde975bd-d5a8-543c-af04-66bdc2f96ab5", "text": "\u4e00\u5bb6\u56db\u53e3\uff0c\u5305\u62ec\u4e24\u4e2a\u9752\u5c11\u5e74\u7537\u5b69\u548c\u4ed6\u4eec\u7684\u7236\u6bcd\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u770b\u7740\u6709\u5173\u73e0\u7a46\u6717\u739b\u5cf0"} +{"id": "7001813", "video_name": "19ebe3d2-d17a-55b2-9bd8-557c54feb24b", "text": "\u5728\u5b87\u5b99\u4e2d\u9a7e\u9a76\u50cf\u84b8\u6c7d\u670b\u514b\u4e00\u6837\u7684\u6f5c\u8247\u3002"} +{"id": "7001814", "video_name": "4450906b-b58d-52fa-a310-0f3e33a6582d", "text": "\u5965\u857e\u8389\u5a05\u73ab\u7470\u4e0d\u4ec5\u56e0\u5176\u975e\u51e1\u7684\u989c\u8272\u800c\u8131\u9896\u800c\u51fa\uff0c\u800c\u4e14\u56e0\u5176\u8ff7\u4eba\u7684\u9999\u6c14"} +{"id": "7001815", "video_name": "289de20d-7483-57fb-88f6-898a81769a71", "text": "\u5929\u7a7a\u4e2d\u6709\u4e00\u53ea\u9e1f\u5728\u98de\uff0c\u6d77\u6c34\u5728\u9e1f\u7684\u4e0b\u65b9\u3002"} +{"id": "7001816", "video_name": "73504440-3d91-5c7a-ad3f-8b9f98ca4677", "text": "\u4e00\u4e2a\u53ef\u7231\u7684\u5c0f\u72d7\u5728\u4e91\u4e0a\u8d70\u8def\uff0c\u7728\u4e86\u7728\u773c\u775b\uff0c\u7136\u540e\u8df3\u4e86\u8d77\u6765\u3002"} +{"id": "7001817", "video_name": "e9dbd974-a590-592e-b336-d448f6e6eca9", "text": "\u5f69\u8272\u7684\u6db2\u4f53\u95ea\u4eae\u5ca9\u6d46\u4ece\u4e2d\u5fc3\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "7001818", "video_name": "765f015a-f916-5a85-9be7-4b94e4b19971", "text": "\u5973\u5b69\u7ed9\u5979\u7684\u5144\u5f1f\u6d82\u4e0a\u5370\u8bb0"} +{"id": "7001819", "video_name": "0055d669-2d02-5b21-a02e-1eec9bf907e3", "text": "\u4e00\u4e2a\u65cb\u8f6c\u7684\u66fc\u9640\u7f57\u3002\u6709\u8d28\u611f\u3001\u4e30\u5bcc\u591a\u5f69\u7684\u739b\u96c5\u56fe\u6848\u3002"} +{"id": "7001820", "video_name": "9c90a244-a173-5ad5-98b1-c9977ec7e43e", "text": "\u558a\u53eb\u7684\u9b54\u672f\u5e08\u5411\u98ce\u66b4\u6254\u51fa\u4e09\u4e2a\u4e1c\u897f\u3002"} +{"id": "7001821", "video_name": "6703f558-e09f-5265-bae4-4d9b9997a8ed", "text": "\u672a\u6765\u57ce\u5e02\u89c6\u9891\u65f6\u957f0:30\u3002"} +{"id": "7001822", "video_name": "eebe8d74-36d6-5e62-b344-8a91c8b829ca", "text": "\u7ea6\u7ff0\u00b7F\u00b7\u80af\u5c3c\u8fea\u5728\u5e9e\u5927\u4eba\u7fa4\u9762\u524d\u53d1\u8868\u6f14\u8bb2\u3002"} +{"id": "7001823", "video_name": "e796f0d2-9493-5694-aba2-080c779ebf2f", "text": "\u4e0b\u96e8\u5929\uff0c\u4e91\u6735\u8f7b\u58f0\u6d41\u52a8\u3002"} +{"id": "7001824", "video_name": "c85c611f-1d65-51ea-bcee-2cafe3dd6a92", "text": "\u5236\u4f5c\u4eceA\u5230Z\u7684\u513f\u7ae5\u52a8\u753b\u89c6\u9891\u3002"} +{"id": "7001825", "video_name": "fa8bb91f-ab07-5523-a446-e5b29444b931", "text": "\u533b\u751f\u548c\u75c5\u4eba\u6b63\u5728\u4ea4\u8c08\u3002"} +{"id": "7001826", "video_name": "835347a4-34a1-55b9-b2a7-d548b8ab8659", "text": "\u751f\u6210\u4e00\u5f20\u56fe\u50cf\uff0c\u63cf\u7ed8\u9752\u5c11\u5e74\u906d\u9047\u795e\u79d8\u7684\u8033\u8bed\uff0c\u5e7d\u7075\u822c\u7684\u8eab\u5f71\u5728\u5357\u74dc\u4e2d\u6084\u7136\u6d6e\u73b0\uff0c"} +{"id": "7001827", "video_name": "2c4d5638-a1b4-5f06-af17-1aeade0ca3e7", "text": "\u90a3\u4e2a\u5356\u5370\u5ea6\u7cd6\u7403\u7684\u7537\u5b69\u4e5f\u4e00\u76f4\u5435\u95f9\uff0c\u82cf\u83f2\u5148\u751f\u751a\u81f3\u6ca1\u6709\u770b\u4ed6\u4e00\u773c\u3002"} +{"id": "7001828", "video_name": "c2e161e4-cea7-5673-af59-cbdaa6140705", "text": "\u4e00\u4e2a\u4f4d\u4e8e\u68ee\u6797\u4e2d\u5fc3\u7684\u6751\u5e84\uff0c\u4eba\u4eec\u805a\u96c6\u5728\u4e00\u8d77\uff0c\u5f3a\u98ce\u547c\u5578\u3002\n\nSource sentence: The sun is shining and the birds are singing in the park. \n"} +{"id": "7001829", "video_name": "6aaa7193-2758-5512-b21e-b14b3b1e0055", "text": "\u4e00\u7fa4\u7537\u4eba\u770b\u8d77\u6765\u975e\u5e38\u559c\u60a6\u548c\u70ed\u60c5\uff0c\u5728\u4e00\u5806\u94b1\u7684\u966a\u4f34\u4e0b\u5e86\u795d\uff0c\u4f20\u8fbe\u7740\u4eab\u53d7\u548c\u6210\u529f\u7684\u611f\u89c9"} +{"id": "7001830", "video_name": "cbe4f798-b202-5c3a-843e-b83a1a896bda", "text": "\u52a8\u6f2b\u5973\u5b69\u751f\u6c14\u5730\u8c08\u8bba\u7537\u5b69\u3002"} +{"id": "7001831", "video_name": "23a0f3fd-3be7-5039-84dc-595642cfcb37", "text": "\u4e00\u4e2a\u5b64\u72ec\u7684\u5973\u4eba\uff0c\u8eab\u5904\u9ed1\u6697\u4e2d\u7684\u4e00\u6247\u95e8\uff0c\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u65af\u8482\u683c\u5229\u8328\u7684\u6444\u5f71\u7535\u5f71\u3002"} +{"id": "7001832", "video_name": "2e202288-10b5-5d84-aab8-e757daefd9b0", "text": "\u8fd9\u53ea\u5c0f\u9e1f\u6b63\u5728\u6811\u4e0a\u8df3\u3002"} +{"id": "7001833", "video_name": "c8caacf9-6fc0-53d7-b0b0-76aee01df476", "text": "\u53ef\u89c6\u5316\uff1a\u60a8\u7684\u54c1\u724c\u6807\u5fd7\u548c\u6807\u8bed\u4e0e\u81ea\u4fe1\u7684\u4f01\u4e1a\u4e3b\u3002\u76ee\u7684\uff1a\u52a0\u5f3a\u54c1\u724c\u8ba4\u77e5\u5e76\u4ee5\u9ad8\u8c03\u7ed3\u675f\u3002"} +{"id": "7001834", "video_name": "051b5116-14b5-5cb7-8d40-aca2d814373c", "text": "\u68ee\u6797\u548c\u77f3\u5934\u751f\u7269\u7684\u519b\u961f"} +{"id": "7001835", "video_name": "7bd7d439-34a4-59fb-807e-f010947a9bad", "text": "\u8d85\u7ec6\u8282\u7f8e\u4e3d\u5973\u6027\u673a\u5668\u4eba\uff0c\u4fa7\u9762\u8096\u50cf\uff0c\u9510\u5229\u805a\u7126\uff0c\u9ad8\u5ea6\u8be6\u7ec6\u7684\u89c6\u89c9\u6548\u679c\u8096\u50cf\uff0c\u51e0\u4f55\u5f62\u72b6\uff0c"} +{"id": "7001836", "video_name": "9c86d803-a70c-546b-b98f-90d13aa5861f", "text": "Translation: \u9e45\u6234\u7740\u56fd\u738b\u7684\u738b\u51a0\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "7001837", "video_name": "a2539b18-50f1-55d2-8768-732ab0d89ca8", "text": "\u4e30\u5bcc\u7eff\u8272\u666f\u89c2\u548c\u6e05\u6d01\u80fd\u6e90\u8d44\u6e90\u7684\u89c6\u89c9\u6548\u679c"} +{"id": "7001838", "video_name": "85ad25ae-8c9d-5422-9a98-8a2ee1cf4ec8", "text": "\u5973\u4eba\u5728\u4e0b\u96e8\u7684\u623f\u95f4\u91cc\u7761\u89c9\uff0c\u5361\u901a\u3002"} +{"id": "7001839", "video_name": "5c0c69d5-05e3-5447-9637-bcd9355af699", "text": "\u5e74\u8f7b\u7684\u975e\u6d32\u5973\u6027\u6234\u7740\u8033\u673a\u542c\u97f3\u4e50\uff0c\u80cc\u666f\u662f\u79cb\u5929\u7684\u65e7\u91d1\u5c71\uff0c\u9633\u5149\u660e\u5a9a\uff0c\u6bd4\u4f8b\u4e3a16:9\u3002"} +{"id": "7001840", "video_name": "fa1b4f51-9221-56f8-9b13-fab7141799dd", "text": "\u4e3a\u6211\u521b\u9020\u4e00\u4e2a\u82b1\u56ed\uff0c\u90a3\u91cc\u5439\u7740\u98ce\uff0c\u98de\u7740\u9e1f\u513f\u3002"} +{"id": "7001841", "video_name": "c65b6f88-3f21-5919-95df-02e13b406d85", "text": "\u67e5\u5c14\u65af\u00b7\u6885\u5c14\u987f\u7a7f\u7740\u793c\u670d\uff0c\u5934\u53d1\u68b3\u7406\u6574\u9f50\u3002\n\nSource sentence: The red umbrella stands out in the crowd. \n\u7ea2\u8272\u7684\u96e8"} +{"id": "7001842", "video_name": "3ddb9955-ac4e-5457-8e80-e062d18015aa", "text": "\u8001\u5899\uff0c\u96e8\uff0c\u508d\u665a\uff0c\u706f\u7b3c\u7684\u5149\uff0c\u62ff\u7740\u96e8\u4f1e\u7684\u4eba\u7684\u526a\u5f71\uff0c1920\u5e74"} +{"id": "7001843", "video_name": "3ec1fe7d-ad37-5042-8563-6e1560c11b3b", "text": "\u4e00\u53ea\u732b\u5f39\u5409\u4ed6\uff0c\u65c1\u8fb9\u6709\u4e00\u53ea\u6c34\u8c5a\u6253\u9f13\u3002"} +{"id": "7001844", "video_name": "2a6e5939-6ff4-5776-9cfe-7ce17d23dd4b", "text": "\u5c06\u9644\u52a0\u7684\u56fe\u50cf\u52a8\u753b\u5316\uff0c\u5e76\u4f7f\u6587\u672c\u878d\u5165\u6210\u4e00\u6ee9\uff0c\u80cc\u666f\u4fdd\u6301\u5e73\u677f\u3002"} +{"id": "7001845", "video_name": "f87956e6-1363-5bf7-943c-7229aa67ddb6", "text": "\u6709\u4eba\u5728\u5403\u94b1\u7684\u52a8\u753b\uff08\u50cf\u8fea\u58eb\u5c3c\u98ce\u683c\uff09"} +{"id": "7001846", "video_name": "c5648053-b5f1-50fa-b3aa-e93ccc20a30f", "text": "\u6c34\u5e73\u7684\u9713\u8679\u84dd\u7ebf\u5e26\u6709\u98ce\u548c\u7535\u6548\u679c\u3002"} +{"id": "7001847", "video_name": "4bdc1293-557e-5cf7-a615-39577e67e862", "text": "\u8fd9\u79cd\u51dd\u80f6\u6307\u7532\u6cb9\u4f18\u7f8e\u5730\u6d41\u6dcc\u5728\u5730\u677f\u4e0a\u3002"} +{"id": "7001848", "video_name": "5aa80ce6-c834-5f72-9930-9488bfa27fbb", "text": "\u795e\u7ecf\u7f51\u7edc\u7684\u62bd\u8c61\u6570\u5b57\u666f\u89c2\uff0c\u53d1\u5149\u7ebf\u8fde\u63a5\u62bd\u8c61\u5f62\u72b6\u3002"} +{"id": "7001849", "video_name": "069e95b8-0bfb-5330-88f6-08c7d4c3467d", "text": "\u4e00\u540d\u5728\u96fe\u4e2d\u7684\u4eba\u7c7b\u6218\u58eb"} +{"id": "7001850", "video_name": "5f6af165-becf-5bb6-acda-09ce423ef5de", "text": "\u6770\u683c\u95ee\u6625\u52aa\u9e7f\u8dd1\u5f97\u8fd9\u4e48\u5feb\u7684\u539f\u56e0\u3002"} +{"id": "7001851", "video_name": "0d5c1641-6e01-5fed-b35c-d0b0c598ea7e", "text": "\u8ba9\u5b9d\u5b9d\u5728\u7403\u62c9\u6746\u4e0a\u8df3\u821e\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001852", "video_name": "e61d832e-680f-57d8-9242-6fdb137abf3b", "text": "had big wings.\n\u6709\u4e00\u5929\uff0c\u5979\u5728\u68ee\u6797\u91cc\u73a9\u800d\u65f6\uff0c\u770b\u5230\u4e86\u4e00\u53ea\u7f8e\u4e3d\u7684\u8774\u8776\u3002\u8fd9\u53ea\u8774\u8776\u975e\u5e38\u4e30"} +{"id": "7001853", "video_name": "20d2d5fd-7803-5af8-8519-e3e28b83d1a6", "text": "\u8fbe\u5409\u65af\u5766\u4eba\u65e0\u624b\u4e0e\u5eb7\u7eb3\u00b7\u9ea6\u683c\u96f7\u6208\u640f\u6597\u3002"} +{"id": "7001854", "video_name": "57772720-a912-58a1-8605-fb4682b738a5", "text": "\u6c34\u725b\u7528\u811a\u8e29\u5728\u4e00\u53ea\u7eff\u8272\u7684\u9752\u86d9\u8eab\u4e0a\u3002"} +{"id": "7001855", "video_name": "1cbade45-60f5-5db4-976e-ccedf4ab6223", "text": "\u5728\u767e\u8001\u6c47\u4e0a\uff0c\u5c0f\u6c34\u679c\u5708\u4ece\u4e91\u6735\u4e2d\u843d\u4e0b\uff0c\u8857\u4e0a\u6709\u4eba\u884c\u8d70\uff0c\u773c\u524d\u666f\u8c61\u662f\u591c\u665a\u548c\u8857\u706f\u3002"} +{"id": "7001856", "video_name": "98ce7dd1-4765-57d4-bc9b-2e6192167fcf", "text": "\u603b\u7406\u83ab\u8fea\u63d0\u9192\u4eba\u4eec\uff0c\u5728\u8fea\u592b\u00b7\u963f\u5357\u5fb7\u767e\u5c81\u8bde\u8fb0\u4e4b\u9645\uff0c\u7f05\u6000\u4ed6\u5bf9\u5370\u5ea6\u7535\u5f71\u7684\u8d21"} +{"id": "7001857", "video_name": "49fdb9ae-c6c0-548f-bf3a-f2c3ab676f7c", "text": "\u4e00\u53ea\u6811\u61d2\u5728\u5fb7\u7d2f\u65af\u987f\u7684\u8001\u57ce\u533a\u5f39\u594f\u5c24\u514b\u91cc\u91cc\u3002"} +{"id": "7001858", "video_name": "9853cb24-630f-565f-9dbc-2e1a10afe948", "text": "\u4e00\u8258\u8ba9\u4eba\u8054\u60f3\u5230\u8ba9\u00b7\u5409\u62c9\u5fb7\u00b7\u9ed8\u6bd4\u4e4c\u65af(Jean Girad Moebius)\u7684\u592a\u7a7a\u98de\u8239\u7684\u7535\u5f71\u753b\u9762"} +{"id": "7001859", "video_name": "9d203266-1e68-5c0b-ab81-b38a50f38329", "text": "\u5409\u5229\u8fdc\u666f\u8f66\u5728\u96ea\u5730\u4e2d\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "7001860", "video_name": "1ac9d2a0-8f43-5d15-a7a3-6e240b133651", "text": "\u4e24\u5bf9\u60c5\u4fa3\u5728\u6d77\u6ee9\u4e0a\u6563\u6b65\u3002"} +{"id": "7001861", "video_name": "09eb2b89-5b27-589f-8006-ab49a78dc072", "text": "\u5b69\u5b50\u4eec\u5e26\u7740\u82b1\u513f\u5728\u5934\u4e0a\u5fae\u7b11\u7740\uff0c\u54c8\u54c8\u5927\u7b11\u3002"} +{"id": "7001862", "video_name": "6ef18421-4bc4-5f23-b0a7-1d954d189796", "text": "\u751f\u6210\u4e00\u4e2a\u610f\u5927\u5229\u6218\u4e89\u5c06\u519b\u5728\u7535\u8bdd\u4e0a\u7684\u89c6\u9891\u3002"} +{"id": "7001863", "video_name": "c28e26af-2bd8-5763-9b34-d10083434663", "text": "\u8fbe\u65af\u00b7\u96f7\u6587\u548c\u51ef\u6d1b\u00b7\u4f26\u4e4b\u95f4\u7684\u5b8c\u6574\u5149\u5251\u51b3\u6597\u3002"} +{"id": "7001864", "video_name": "4757ceb4-eb59-51d0-8328-41bf5e9e4d63", "text": "\u4e00\u53ea\u6d77\u9e25\u98de\u5411\u5965\u65af\u9646\u5ce1\u6e7e\u7684\u65e5\u843d\u3002"} +{"id": "7001865", "video_name": "f8eae8de-e851-5fd8-a653-250afc0864bc", "text": "\u4e00\u95f4\u975e\u5e38\u660f\u6697\u7684\u623f\u95f4\u7684\u52a8\u753b\uff0c\u7a81\u7136\u5f00\u4e86\u4e00\u76cf\u706f\uff0c\u623f\u95f4\u53d8\u5f97\u660e\u4eae\u3002\u4f60\u770b\u5230\u4e00\u4e2a\u6c99\u53d1\u548c\u4e00\u4e2a\u684c\u5b50\uff0c\u8fd8"} +{"id": "7001866", "video_name": "fe198c6b-711f-55bf-aa79-63da2b7f29ce", "text": "\u6570\u636e\u7684\u6d77\u6d0b\uff0c\u56fe\u8868\u662f\u822a\u884c\u7684\u8239\u53ea\u3002"} +{"id": "7001867", "video_name": "02a575eb-16de-5d38-ade0-4cd281e95876", "text": "\u53e4\u4ee3\u4f0a\u5229\u91cc\u4e9a\u4eba\u548c\u53e4\u4ee3\u51ef\u5c14\u7279\u4eba\u5728\u6ce2\u65af\u5c3c\u4e9a\u4e2d\u4e16\u7eaa\u57ce\u5821\u4e0b\u884c\u8d70\u3002"} +{"id": "7001868", "video_name": "bb7bf9c5-8740-58ce-ae72-497087252f27", "text": "\u6c34\u80ba\u6f5c\u6c34\u5458\u7a7f\u8fc7\u6c34\u4e0b\u6d1e\u7a74\u8fdb\u5165\u4e00\u4e2a\u65b0\u7684\u6c34\u4e0b\u84dd\u8272\u4e16\u754c\u3002"} +{"id": "7001869", "video_name": "8cfa9985-7865-540f-bdd7-ead72b07ef0f", "text": "\u4e00\u95f4\u6709\u4e66\u67b6\u7684\u623f\u95f4\u5360\u636e\u4e86\u663e\u773c\u7684\u4f4d\u7f6e\uff0c\u5899\u4e0a\u6302\u7740\u6846\u67b6\u753b\u4f5c\uff0c\u684c\u5b50\u4e0a\u6709\u4e00\u76cf\u53d1\u51fa\u67d4\u548c\u5149"} +{"id": "7001870", "video_name": "e0ea6454-79aa-565d-a2b0-930ada2b0e16", "text": "\u827a\u672f\u5bb6\u753b\u4e86\u8499\u5a1c\u4e3d\u838e\u3002"} +{"id": "7001871", "video_name": "17ca956e-828f-52d0-8128-c92099812a95", "text": "\u7ef4\u7279\u4f0a\u8033\u7684\u6625\u5929\uff0c\u514b\u52b3\u5fb7\u00b7\u83ab\u5948\u7684\u753b\u4e2d\u66f4\u5177\u6d3b\u529b\u3002"} +{"id": "7001872", "video_name": "9dc6063c-abf0-5df4-8898-bf5644d96fa1", "text": "\u5f00\u653e\u7684\u4e16\u754c\uff0c\u5728\u6c99\u6f20\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u548c\u4e00\u53ea\u72d7\u6b63\u5728\u5efa\u9020\u4e00\u5ea7\u623f\u5b50\uff0c\u4f7f\u75283D\u5361\u901a\u98ce\u683c\uff0c\u7535\u5f71\u753b\u9762\uff0c\u8fdc\u666f"} +{"id": "7001873", "video_name": "ac5c67f5-651a-5c56-9b77-e9bf29fae486", "text": "\u6574\u4e2a\u57ce\u5e02\u7684\u5929\u9645\u7ebf\u5c55\u73b0\u51fa\u6765\uff0c\u592a\u9633\u7f13\u6162\u5730\u843d\u4e0b\uff0c\u7559\u4e0b\u4e00\u5e45\u5b81\u9759\u7f8e\u4e3d\u7684\u753b\u9762\u3002"} +{"id": "7001874", "video_name": "ef759ca2-fa3a-5068-a0a5-75ebec4d6df9", "text": "\u624b\u62ff\u739b\u683c\u4e3d\u7279\u9152\u7684\u62c9\u4e01\u7f8e\u6d32\u5973\u58eb"} +{"id": "7001875", "video_name": "a57f7ef2-a71a-53bc-ab32-225c19fb08a9", "text": "\u5916\u661f\u4eba\u4ece\u6469\u6d1b\u54e5\u5929\u7a7a\u964d\u843d\u3002"} +{"id": "7001876", "video_name": "fbece6b6-68bc-530c-92ba-6fc397cec498", "text": "\u7070\u59d1\u5a18\u56f4\u7ed5\u7740\u81ea\u5df1\u8f6c\u3002"} +{"id": "7001877", "video_name": "6144b2a4-d4e5-5bf2-bda2-883cccc78aae", "text": "\u9c8d\u91cc\u65af\u00b7\u7ea6\u7ff0\u900a\u5728\u592a\u7a7a\u4e2d\u9ad8\u901f\u98de\u884c\u3002"} +{"id": "7001878", "video_name": "38948546-691d-58e8-9c18-279348995bac", "text": "\u5728\u6392\u706f\u8282\u7684\u591c\u665a\uff0c\u4e00\u4e2a\u4eba\u653e\u70df\u82b1\u3002"} +{"id": "7001879", "video_name": "e3da64ff-6d9e-5daf-a2e9-e1c50b33f8dc", "text": "\u521b\u9020\u5929\u5730"} +{"id": "7001880", "video_name": "b63dca3b-bb26-5b3a-9ab7-858b76362d4a", "text": "\u8ba9\u6587\u5b57\u98de\u626c\uff0c\u8ba9\u673a\u5668\u4eba\u8bf4\u8bdd\u3002"} +{"id": "7001881", "video_name": "3d7458ad-1f1b-5db7-9e6f-d882c7d4f6f1", "text": "\u9634\u6c89\u7684\u96e8\u5929\uff0c\u5c0f\u8857\u9053\u5149\u7ebf\u660f\u6697\uff0c\u65e5\u672c\u8001\u5f0f\u5efa\u7b51\u3002"} +{"id": "7001882", "video_name": "289565f1-b617-560b-996e-1a39cde025d9", "text": "\u6708\u4eae\u5973\u795e\u662f\u4e00\u4f4d\u5973\u6027\u3002"} +{"id": "7001883", "video_name": "8f0de31e-3dc5-50a5-ac08-04ec118ec8db", "text": "\u9ed1\u6697\u4e2d\u5236\u6210\u7684\u7334\u5b50\uff0c\u660e\u4eae\u7684\u9ec4\u773c\u775b\uff0c\u70df\u96fe\uff0c\u7ea2\u8272\u95ea\u7535\uff0c\u4ee4\u4eba\u5bb3\u6015\u7684\u795e\u79d8\u751f\u7269"} +{"id": "7001884", "video_name": "e4267d09-5db6-5fe5-b89d-1bea798ae5fc", "text": "\u4e00\u4e2a\u5916\u661f\u4eba\u8fdb\u5165WWE\u6454\u8de4\u6bd4\u8d5b\u7684\u573a\u5730\u3002"} +{"id": "7001885", "video_name": "2f5b6288-b276-54f5-ba16-a39ab63bed62", "text": "\u516c\u8f66\u4e0a\u7684\u8f6e\u5b50\u5728\u8f6c\u52a8\u3002"} +{"id": "7001886", "video_name": "da79889e-68af-5918-aa61-56ee27694ed7", "text": "\u793e\u4ea4\u673a\u5668\u4eba\u4e0e\u5bb6\u4eba\u4e00\u8d77\u7528\u9910\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\uff0c18\u6beb\u7c73\u5f69\u8272\u3002"} +{"id": "7001887", "video_name": "e4b62b5d-1ae1-590f-9dee-9e34f689d98b", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5728\u9ea6\u5f53\u52b3\u4e0e\u5916\u661f\u4eba\u6218\u6597\u3002"} +{"id": "7001888", "video_name": "520cb056-7ef9-59fe-b55f-8c5f4905bbe7", "text": "\u6697\u9ed1\u9748\u9b42\u98a8\u683c\u7684\u9f8d\u5750\u5728\u71d2\u6bc0\u7684\u68ee\u6797\u4e0a\u65b9\u7684\u61f8\u5d16\u908a\uff0c\u5e7b\u60f3\uff0c\u660f\u6697\u7684"} +{"id": "7001889", "video_name": "5cb36452-9035-5236-bf06-2229c43165ba", "text": "\u665a\u4e0a\u5728\u6d41\u661f\u96e8\u671f\u95f4\u7684\u6cf3\u6c60\u6d3e\u5bf9\u3002"} +{"id": "7001890", "video_name": "2aa4025b-de21-565f-9ffa-aeeaf0fee5ba", "text": "\u963f\u52a0\u5c14\u5854\u636e\u8bf4\u662f\u667a\u6167\u3001\u548c\u5e73\u548c\u60ca\u4eba\u6280\u672f\u53d1\u5c55\u7684\u907f\u96be\u6240\u3002"} +{"id": "7001891", "video_name": "4e06982e-765b-5c2e-8810-3b81f8e5ef49", "text": "\u4f53\u80b2\u8d5b\u8f66\u5728\u4e00\u5ea7\u672b\u65e5\u57ce\u5e02\u4e2d\u72c2\u5954\uff0c\u4ee54K\u9ad8\u6e05\u548c\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5448\u73b0\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "7001892", "video_name": "e9de1b5f-c028-5a62-91c1-c07e21713700", "text": "\u4e00\u53ea\u706b\u9e21\u5728\u6d77\u6ee9\u4e0a\u8df3\u8857\u821e\uff0c\u6708\u5149\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c4K\u3002"} +{"id": "7001893", "video_name": "91b48fc7-a8fb-57b4-959c-51810aa50153", "text": "\u7c73\u5a05\u5728\u4e00\u53ea\u6b63\u5728\u7761\u89c9\u7684\u6d63\u718a\u65c1\u8fb9\u53d1\u73b0\u4e86\u4e00\u5806\u95ea\u95ea\u53d1\u5149\u7684\u77f3\u5934\u3002\u770b\u8d77\u6765\u8fd9\u53ea\u6d63\u718a"} +{"id": "7001894", "video_name": "1c003f4f-e3ea-5958-b748-fa030225c5e9", "text": "\u5c0f\u4e11\uff0c\u7206\u70b8\u80cc\u666f\uff0c\u9ed1\u6697\u57ce\u5e02\u8857\u9053\uff0c\u6124\u6012\u7684\u773c\u795e\uff0c\u75af\u72c2\u7684\u5fae\u7b11\uff0c\u66b4\u4e71\u80cc\u666f\uff0c"} +{"id": "7001895", "video_name": "da9267ec-502f-53ac-9fb3-f18daddd6b08", "text": "\u7535\u5f71\uff1a\u4fee\u5973\uff0c\u6050\u6016\u573a\u666f\uff0c\u4fee\u5973\u5c16\u53eb\u5411\u524d\u6446\u62cd\u6444\u50cf\u673a\uff0c\u8d85\u8be6\u7ec6\uff0c4k\uff0c\u7535\u5f71\u5316\u3002"} +{"id": "7001896", "video_name": "0ba48cfc-ff9f-5272-8922-1229950bdc67", "text": "\u5468\u7426\u6253\u7bee\u7403\u7684\u573a\u666f\u3002"} +{"id": "7001897", "video_name": "09801634-f79c-5780-88e0-4c051e861a9d", "text": "\u73b0\u5b9e\u7684\uff0c\u4e00\u4e2a\u591a\u5c71\u7684\u5730\u65b9\uff0c\u591a\u4e91\uff0c\u964d\u96e8\u91cf\u5f88\u5927\u3002"} +{"id": "7001898", "video_name": "ac0e998d-b3bf-558c-bee7-8a81a33a7b06", "text": "\u6885\u62c9\u59ae\u00b7\u9a6c\u4e01\u5185\u65af\u7684\u300a\u96a7\u9053\u89c6\u91ce\u300b\u97f3\u4e50\u89c6\u9891\uff08\u7c89\u8272\u751f\u7269\u3001\u9ed1\u6697\u6c1b\u56f4\u3001\u8d85\u73b0\u5b9e\u4e3b\u4e49\u3001\u95e8"} +{"id": "7001899", "video_name": "d2ed1521-9c68-5d3d-9d6b-f83bc060129b", "text": "\u6e05\u6668\u9e1f\u513f\u7684\u6b4c\u5531\u548c\u57ce\u9547\u5b69\u5b50\u4eec\u7684\u5fae\u7b11\uff0c\u4ed6\u8fd8\u8868\u8fbe\u4e86\u5bf9\u4ece\u56f0\u96be\u65f6\u671f\u5b66\u5230\u7684\u6559\u8bad\u7684\u611f"} +{"id": "7001900", "video_name": "bc7d269a-c682-5543-b3db-25d8a501cf11", "text": "\u7eff\u8272\u5934\u53d1\uff0c\u8fd8\u53ef\u4ee5\u5728\u773c\u775b\u9644\u8fd1\u7eb9\u4e0a\u7eb9\u8eab\uff0c\u4ece\u4e0d\u540c\u89d2\u5ea6\u62c9\u8fd1\u7167\u7247\u5e76\u8ba9\u7167\u7247\u7b11\uff01\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "7001901", "video_name": "b6f42e51-284e-55fe-b781-a7b89d09c694", "text": "\u68ee\u6797\u4e0d\u4ec5\u7f8e\u4e3d\uff0c\u800c\u4e14\u5bf9\u4eba\u7c7b\u4e5f\u975e\u5e38\u6709\u76ca\u3002\u68ee\u6797\u80fd\u591f\u51c0\u5316\u7a7a\u6c14\u3001\u8c03\u8282\u6c14\u5019\u3001\u9632\u6b62\u571f"} +{"id": "7001902", "video_name": "27e3b634-bbfa-5b3b-ada7-8f3078cfad8e", "text": "\u5927\u897f\u90e8\u9152\u9986\u5916\u9762\u8fdc\u666f\u62cd\u6444\uff0c\u6709\u6447\u6446\u7684\u95e8\u548c\u5899\u4e0a\u7684\u901a\u7f09\u4ee4\u3002"} +{"id": "7001903", "video_name": "9f4bcedd-e817-5c48-a985-1b191289f891", "text": "\u6e90\u53e5\uff1a\u4e2d\u6751\u8c50\u5742\u98a8\u683c\u7684\u52d5\u4f5c\u52d5\u756b\uff0c\u4ee5\u5fcd\u8005\u7df4\u7fd2\u6230\u9b25\u70ba\u4e3b\u984c\uff0c\u80cc\u666f\u8a2d\u7f6e\u5728"} +{"id": "7001904", "video_name": "3ad09120-3ee7-5e87-a2a5-3b42f863745c", "text": "\u4e00\u4e2a\u7a7f\u7740\u8fde\u5e3d\u886b\u7684\u7537\u5b50\u8d70\u8fc7\u4e00\u4e2a\u6709\u5b69\u5b50\u73a9\u800d\u7684\u516c\u56ed\uff0c\u573a\u666f\u5341\u5206\u903c\u771f\u3002"} +{"id": "7001905", "video_name": "db5a5cb2-23e9-5a09-9eec-be1c7bfad701", "text": "60\u5e74\u4ee3\u7684\u98de\u789f\u955c\u5934\uff0c\u9ed1\u767d\uff0c\u7f8e\u5b66\uff0c\u590d\u53e4\uff0c\u9897\u7c92\u611f\uff0c16\u6beb\u7c73\u80f6\u7247\u3002"} +{"id": "7001906", "video_name": "76d35539-0393-5e2f-8841-f36127df0934", "text": "Translation: Harry \u6b63\u5728\u5f00\u8dd1\u8f66\u3002"} +{"id": "7001907", "video_name": "e9166a4b-e83e-59fe-b516-9dfc2e8f724f", "text": "\u51ac\u5929\u5c4b\u9876\u4e0a\u7684\u7537\u5b69\u65c1\u8fb9\u6709\u4e00\u4e2a\u96ea\u82b1\uff0c\u5fb7\u65af\u5c3c\u98ce\u683c\u3002"} +{"id": "7001908", "video_name": "a1ba1019-b3fe-5806-b501-b05b0b3e7c33", "text": "\u6d63\u718a\u5728\u65e5\u843d\u65f6\u5728\u6d77\u6ee9\u4e0a\u5403\u8292\u679c\u3002"} +{"id": "7001909", "video_name": "133011f9-7a2f-5146-946e-f44363fa1b19", "text": "\u4e00\u53ea\u732b\u5750\u5728\u6e38\u620f\u6905\u4e0a\uff0c\u80cc\u666f\u662f\u5e26\u6709\u91d1\u8272YouTube\u5fbd\u7ae0\u7684\u67b6\u5b50\uff0c\u770b\u7740\u76f8\u673a\u5bf9\u89c6\u9891\u505a\u51fa\u53cd\u5e94\u3002"} +{"id": "7001910", "video_name": "69068ebe-49ca-55bf-a74c-144a5b783e93", "text": "Russell M Nelson \u73b0\u5b9e\u5730\u8ba4\u4e3a\u5929\u4e0a\u7684\u3002 \n\nSource sentence: The cat is sleeping on the sofa. \n\n\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9\u3002"} +{"id": "7001911", "video_name": "a10a7beb-3241-5ff4-b1b9-9001cdcc4137", "text": "\u8096\u6069\u00b7\u95e8\u5fb7\u65af\u6234\u7740\u58a8\u955c\u5728\u6d77\u6ee9\u4e0e\u5fb7\u6069\u00b7\u7ea6\u7ff0\u900a\u548c\u670b\u53cb\u4eec\u6253\u6392\u7403\u3002"} +{"id": "7001912", "video_name": "34ffc9db-0373-5955-a250-e76fa0d2b46c", "text": "\u660e\u5c3c\u82cf\u8fbe\u53cc\u57ce\u961f\u8d62\u5f97\u4e16\u754c\u5927\u8d5b\u3002"} +{"id": "7001913", "video_name": "e4f5067a-ca09-58a7-b9f3-a5c7e5304e6d", "text": "\u4e2d\u6587\u7ffb\u8bd1\uff1a\u96e8\u4e2d\u7684\u6447\u52a8\u5a74\u513f"} +{"id": "7001914", "video_name": "dca02e70-2525-505f-bdaa-7362fe6a932e", "text": "\u5728\u98ce\u666f\u4f18\u7f8e\u7684\u5730\u65b9\u559d\u8336\uff0c\u6700\u591a\u53ea\u9700\u7528\u4e00\u53ea\u624b\u62ff\u7740\u8336\u676f\u3002"} +{"id": "7001915", "video_name": "fcb03ac4-0cb2-57f3-9c18-cc5599e1f193", "text": "\u4e24\u4e2a\u7537\u5b69\u4ece\u5929\u4e0a\u6389\u4e0b\u6765\u3002"} +{"id": "7001916", "video_name": "5aa58f2c-9cb1-5c31-8695-dbd13e2b97bb", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u52a0\u6cb9\u7ad9\u5438\u70df\uff0c\u5c06\u52a0\u6cb9\u67aa\u63d2\u8fdb\u8f66\u91cc\u3002"} +{"id": "7001917", "video_name": "7fa0ad15-1378-536c-870d-f8a0e204408a", "text": "\u7c89\u7ea2\u4f5b\u7f57\u4f0a\u5fb7\u6447\u6eda\u6f14\u5531\u4f1a\u524d\u7684\u4eba\u6d77\u51b2\u6d6a"} +{"id": "7001918", "video_name": "fcfbd876-7013-5810-81fd-7af9600b4914", "text": "\u5916\u661f\u4eba\u98de\u8239\u5185\u90e8\uff0c\u5b83\u4eec\u4e92\u76f8\u4ea4\u8c08\u3002"} +{"id": "7001919", "video_name": "da104b2f-7ddf-54cc-abf8-3d3bc98c16fc", "text": "\u62ff\u7740\u4ed6\u7684\u738b\u5ba4\u6743\u6756\uff0c\u6731\u5229\u5b89\u56fd\u738b\u5728\u5c55\u89c8\u4f1a\u573a\u4e0a\u5927\u8c08\u5176\u7cbe\u7f8e\u7684\u51b0\u6dc7\u6dcb\u96d5\u5851\u7684\u5962\u534e"} +{"id": "7001920", "video_name": "c635b7db-835d-5731-8a14-fa4478b1ff98", "text": "\u7f8e\u4e3d\u7684\u5e74\u8f7b\u5973\u5b50\u6b63\u5728\u7528\u7d2b\u7ea2\u8272\u676f\u5b50\u5403\u51b0\u51bb\u9178\u5976\u3002\n\nSource sentence: The red and white striped beach umbrella provided a welcome relief from the hot sun."} +{"id": "7001921", "video_name": "d6cafe6e-b36a-50f9-8296-61ff9a3553bc", "text": "\u51c9\u723d\u7684A7L\u5728\u591c\u665a\u5954\u8dd1\u3002"} +{"id": "7001922", "video_name": "beb66b26-02bd-548e-85eb-2942d17cc4df", "text": "\u571f\u8033\u5176\u795e\u79d8\u76d2\u5b50\u4fc3\u9500\u5e7f\u544a\u89c6\u9891"} +{"id": "7001923", "video_name": "a8271797-d7b2-5192-bcf1-66d3f5e00927", "text": "\u5728\u519c\u573a\u4e2d\u592a\u9633\u5347\u8d77\uff0c\u903c\u771f\u81ea\u7136\uff0c\u6301\u7eed5\u79d2\u3002"} +{"id": "7001924", "video_name": "86b4af75-ca34-5b1b-8d14-654078aa7f91", "text": "\u4e00\u4e2a\u7559\u7740\u84dd\u8272\u5e73\u5934\u53d1\uff0c\u7a7f\u7740\u9ed1\u8272\u88d9\u5b50\u548c\u767d\u8272\u886c\u886b\u7684\u4eba\u4ece\u5929\u7a7a\u4e2d\u5760\u843d\uff0c\u5230\u5904\u90fd\u662f\u73bb\u7483"} +{"id": "7001925", "video_name": "a01a73d7-6c9b-5f0d-835f-aa3a6b49d118", "text": "\u5230\u52a0\u62ff\u5927\u7684\u591a\u5143\u79cd\u65cf\u4eba\u53e3"} +{"id": "7001926", "video_name": "8d11fbe0-b69a-5c99-9e1b-67c4ad712fe8", "text": "\u8dd1\u6b65\u8005\u7684\u89c6\u89d2\uff0c\u5728\u516c\u56ed\u91cc\u8dd1\u6b65\uff0c\u65e9\u6668\uff0c\u7535\u5f71\u822c\u7684\u5916\u89c2\uff0c\u771f\u5b9e\u7684\u7ec6\u8282\uff0c\u7535\u5f71\u6444\u5f71\u3002"} +{"id": "7001927", "video_name": "7018cbac-de4c-5ced-ae1f-acfdb737af01", "text": "\u4e00\u4e2a\u65e0\u653f\u5e9c\u4e3b\u4e49\u56e2\u4f53\u5728\u80cc\u666f\u4e2d\u89c2\u770b\u94f6\u884c\u7206\u70b8\u3002"} +{"id": "7001928", "video_name": "ef72b3e4-6c15-598f-b117-bdc70425f5fd", "text": "\u628a\u7167\u7247\u8f6c\u6362\u6210\u9ad8\u6e05\u95ea\u7535\u52a8\u753b\u3002"} +{"id": "7001929", "video_name": "43b37451-3ccb-5d29-93b8-6b09c5f193fe", "text": "\u4e00\u4e2a\u53d1\u5149\u7684\u9713\u8679\u4e16\u754c\u5730\u7403\u4eea\u4e0a\u9762\u6709\u5927\u9646\u5728\u65cb\u8f6c\u3002"} +{"id": "7001930", "video_name": "75acdbb4-a591-5686-a614-226e9bfcd827", "text": "\u957f\u53d1\u5973\u5b50\u8eab\u7a7f\u84dd\u8272\u88d9\u5b50\uff0c\u5728\u8d70\u5eca\u5c3d\u5934\u6253\u5f00\u95e8\uff0c\u8d70\u51fa\u95e8\u8fdb\u5165\u4e00\u7247\u6811\u6797\u3002"} +{"id": "7001931", "video_name": "5070a28a-ae8d-5a91-b8d7-9cdbb8918725", "text": "\u4e00\u68f5\u4f1a\u65e0\u58f0\u4f4e\u8bed\u76843D 24fps\u7684\u8bf4\u8bdd\u6811\u3002"} +{"id": "7001932", "video_name": "4e93555e-e44a-53ce-bf43-1160130d37dc", "text": "Jamal Woolard\u5728\u4e00\u4ef6\u767d\u8272\u897f\u88c5\u4e2d\u8df3\u8857\u821e\u3002\n\nSource sentence: I am going to the supermarket to buy some fruits and vegetables. \n\n\u6211\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u6c34\u679c\u548c"} +{"id": "7001933", "video_name": "1ceebf71-8dca-515e-b3fe-816882d43197", "text": "\u7070\u5c18\u9897\u7c92\u5728\u5f69\u8272\u73bb\u7483\u7a97\u7684\u5149\u7ebf\u4e2d\u98d8\u8361\u3002"} +{"id": "7001934", "video_name": "f7d3489e-7a97-53a4-83d6-0c948ffea27f", "text": "\u4e00\u53ea\u84dd\u8272\u548c\u6a59\u8272\u7684\u8239\u5458\u889c\u5b50\u5728\u6d17\u8863\u673a\u548c\u70d8\u5e72\u673a\u4e4b\u95f4\u8df3\u8dc3\uff0c3D CGI 16:9 \u5bbd\u5c4f"} +{"id": "7001935", "video_name": "02aaeafe-25b9-5cc1-bbac-85ea1704543b", "text": "\u6709\u4e00\u4f4d\u5973\u58eb\u6234\u7740\u8033\u673a\u5728\u5bb6\u529e\u516c\u684c\u4e0a\u72ec\u81ea\u5de5\u4f5c\uff0c\u800c\u6709\u4eba\u4ece\u7a97\u6237\u5916\u89c2\u671b\u3002"} +{"id": "7001936", "video_name": "d418bfaf-6c95-53a9-b494-200f5fe8ef09", "text": "\u5170\u5a1c\u00b7\u5fb7\u96f7\u624b\u6301\u4e00\u4e2a\u8d85\u73b0\u5b9e\u4e3b\u4e49\u98ce\u683c\u7684\u8d858\u5b57\u6bcd\u5f62\u6c14\u7403\u3002"} +{"id": "7001937", "video_name": "5b5fd6e8-7ed2-5804-9bee-3e97a43fcdbc", "text": "\u4f26\u6566\u7684\u6cb9\u753b\uff0c\u6709\u5927\u672c\u949f\u548c\u798f\u5c14\u6469\u65af\u5728\u65f6\u95f4\u4e2d\u5954\u8dd1\u3002"} +{"id": "7001938", "video_name": "d2d2b15b-d882-5992-b5e0-5e8362023a2b", "text": "\u8e0f\u4e0a\u4e00\u6b21\u96be\u5fd8\u7684\u65c5\u7a0b\uff0c\u8fdb\u5165\u865a\u62df\u73b0\u5b9e\u7684\u65e0\u9650\u9886\u57df\uff0c\u5728\u90a3\u91cc\uff0c\u5e73\u51e1\u53d8\u5f97\u975e\u51e1\uff0c\u60f3\u8c61\u529b\u662f\u4f60"} +{"id": "7001939", "video_name": "b8df32bf-bab6-5c74-a1c2-ccabecbb322f", "text": "\u4e00\u53ea\u5927\u9ca8\u9c7c\u6355\u98df\u4e00\u6761\u91d1\u67aa\u9c7c\u3002"} +{"id": "7001940", "video_name": "c71b003c-bdb6-57c8-b3a1-2466df1ab57c", "text": "\u5927\u536b\u00b7\u5229\u6587\u65af\u901a\u7684\u6e05\u6670\u56fe\u50cf\uff0c\u4f7f\u75284k\u9ad8\u6e05\u6280\u672f\u3002"} +{"id": "7001941", "video_name": "5b234fbb-2915-5dcb-ba4d-5b7e5deea6f9", "text": "\u672a\u6765\u4e3b\u4e49\u5b87\u822a\u5458\u98ce\u683c\u7684\u9ed1\u6697\u8d5b\u535a\u670b\u514b\u3002"} +{"id": "7001942", "video_name": "0d346337-64f5-5660-aa1b-e0647e080adf", "text": "\u4e00\u5f20\u8001\u4eba\u7684\u5c0f\u9ed1\u767d\u7167\u7247\u88ab\u63e1\u5728\u624b\u4e2d\uff0c\u7279\u5199\u955c\u59344K\u3002"} +{"id": "7001943", "video_name": "c9a1fb0c-172e-54e7-93d1-573862374116", "text": "\u4e00\u4e2a\u7537\u5b69\u548c\u4e00\u53ea\u8001\u864e\u5728\u5929\u7a7a\u4e2d\u98de\u884c\u3002"} +{"id": "7001944", "video_name": "a888b48a-ac1d-5fd0-9a5c-afadc1c017b9", "text": "\u4e00\u4e2a\u4e2d\u5e74\u5370\u5ea6\u7537\u5b50\uff0c\u7559\u7740\u80e1\u5b50\uff0c\u6234\u7740\u8033\u673a\uff0c\u60ca\u6050\u5730\u770b\u7740\u81ea\u5df1\u7684\u955c\u5b50\uff0c\u56e0\u4e3a\u4ed6\u5728\u955c\u5b50\u91cc\u770b"} +{"id": "7001945", "video_name": "69a05395-a4d5-5a44-baa7-e6edd4c694f7", "text": "\u89c6\u89c9\u89c6\u9891\uff1a\u5c55\u793a\u8681\u540e\u5728\u5de2\u5ba4\u5185\u4ea7\u5375\u3002 \n\nSource sentence: The restaurant offers a variety of vegetarian and vegan dishes. \n\n\u9910\u5385\u63d0\u4f9b\u591a\u79cd\u7d20\u98df\u548c"} +{"id": "7001946", "video_name": "a201cb64-ce91-5c6e-b76e-61a587169269", "text": "\u8759\u8760\u4fa0\u5728\u4e00\u573a\u66b4\u98ce\u96e8\u4e2d\u7ad9\u5728\u6469\u5929\u5927\u697c\u7684\u9876\u7aef\u54ed\u6ce3\u3002\u8fd9\u662f\u4e00\u90e8\u9ed1\u767d\u7684\u56fe\u50cf\u5c0f\u8bf4\u3002"} +{"id": "7001947", "video_name": "cf69a8b5-03bc-527e-80ea-af8eecba5b9a", "text": "\u4e00\u53ea\u6d63\u718a\u4ece\u7535\u8111\u91cc\u51fa\u6765\u4e86\u3002"} +{"id": "7001948", "video_name": "0f9b4e08-f77a-5627-98db-5b539a83cb97", "text": "\u6811\u5f71\u8de8\u8d8a\u5c4f\u5e55 \u4fe1\u606f\uff1a1 \u9644\u4ef6"} +{"id": "7001949", "video_name": "048bd5db-ac14-5700-a402-17c4f0c4acb1", "text": "\u6709\u4e00\u5929\uff0c\u5e74\u8f7b\u7684\u6444\u5f71\u5e08\u963f\u5c14\u743c\u6765\u5230\u4e86\u95f9\u9b3c\u7684\u535a\u7269\u9986\u3002\n\nSource sentence: The teacher explained the concept of gravity to the students using simple examples."} +{"id": "7001950", "video_name": "6c726052-f27e-5700-a85f-d39cea884bab", "text": "\u7f8e\u4e3d\u5e74\u8f7b\u5973\u5b69\u63d0\u4f9b\u81ea\u7531\u804c\u4e1a\u6559\u7ec3\u670d\u52a1\uff0c\u7136\u540e\u8131\u8863\u6492\u94b1\u3002"} +{"id": "7001951", "video_name": "76cd7b20-2b15-577c-b219-3a3df2197c1a", "text": "\u8d85\u7ea7\u8d5b\u4e9a\u4eba\u795e\u9ed1\u4eba\uff0c\u957f\u53d1\u7fe0\u7eff\u8272\u7684\u9ebb\u8fa3\u8fab\u5b50\uff0c\u914d\u6709\u91d1\u5c5e\u7d2b\u8272\u7684\u4eae\u70b9\uff0c\u59ff\u52bf\u5f3a\u6709"} +{"id": "7001952", "video_name": "de919c8c-f397-52ae-b246-a063f7faee4d", "text": "\u4e00\u4e2a\u8db3\u7403\u6559\u7ec3\u7ad9\u5728\u4e00\u4e2a\u8db3\u7403\u65c1\u3002"} +{"id": "7001953", "video_name": "772df27c-a6d5-5f6c-b9e0-4f4ec81918a6", "text": "\u5236\u4f5c\u4e00\u6bb5\u89c6\u9891\uff0c\u5185\u5bb9\u4e3a\u5362\u62c9\u603b\u7edf\u5728\u6d77\u6ee9\u4e0a\u6253\u6392\u7403\u3002"} +{"id": "7001954", "video_name": "f41981cd-2946-5004-822e-22acae5558de", "text": "\u4fdd\u7f57\u00b7\u666e\u592b\u5207\u52d2\u7684\u5916\u661f\u6606\u866b\u52a8\u7269\u5899\u56fe\u8868\u3002"} +{"id": "7001955", "video_name": "74f2bead-4b89-5b62-9c43-42dcc65b0b3f", "text": "\u6240\u6709\u91ce\u751f\u52a8\u7269\u5982\u5154\u5b50\u3001\u9e7f\u3001\u72fc\u3001\u718a\u3001\u5927\u8c61\u3001\u72ee\u5b50\u3001\u677e\u9f20\u7b49\u90fd\u5728\u68ee\u6797\u4e2d\u4e0e\u5f7c\u6b64\u4ea4"} +{"id": "7001956", "video_name": "9f4512fb-c5ff-550b-91bd-84480c2a8213", "text": "\u4e00\u95f4\u8212\u9002\u7684\u5ba2\u5385\uff0c\u6709\u4e00\u67b6\u5b8f\u4f1f\u7684\u94a2\u7434\uff0c\u88c5\u9970\u7740\u95ea\u70c1\u7684\u5723\u8bde\u706f\u548c\u88c5\u9970\u54c1\uff0c\u4e00\u4e2a"} +{"id": "7001957", "video_name": "dd8f90fa-8298-587f-b2e4-bfb967857996", "text": "\u82f1\u56fd\u6d77\u5cb8\u7ebf\u7684\u98ce\u666f\u822a\u62cd\u4ece\u6d77\u9762\u4e0a\u770b\u3002"} +{"id": "7001958", "video_name": "5351c712-3fda-5b13-8061-da338efb83c6", "text": "\u6bcd\u4eb2\u5728\u623f\u8f66\u91cc\u54c4\u513f\u5b50\u5165\u7761\u3002"} +{"id": "7001959", "video_name": "0dd6ec8d-0b77-5185-8b94-6b4e08e1dd9b", "text": "\u4e00\u500b\u64fa\u653e\u8457\u85cd\u8272\u3001\u6a59\u8272\u548c\u767d\u8272\u7684\u6524\u4f4d\uff0c\u65c1\u908a\u6709\u4e00\u500b\u767d\u8272\u592a\u7a7a\u4eba\u6b63\u5728\u5411\u5b78\u751f\u767c"} +{"id": "7001960", "video_name": "b345f4f0-8517-5f04-83a9-6e4a2ac80d13", "text": "\u89c6\u9891\u811a\u672c\u662f\u4e3a\u4e86\u4e00\u4e2a\u65c5\u884c\u89c6\u9891\u65e5\u5fd7\uff0c\u5176\u4e2d\u8bb2\u8ff0\u8005Coco\u63d0\u4f9b\u4e86\u4e00\u4e2a\u8be6\u7ec6\u7684\u6307\u5357\uff0c\u4ecb\u7ecd\u4e86Phu Quoc\u5c9b\u7684\u4e09\u4e2a\u72ec"} +{"id": "7001961", "video_name": "cffdd4f3-c468-5390-b6fd-d7f5e41d5074", "text": "\u82b1\u6d77\u51a5\u60f3"} +{"id": "7001962", "video_name": "c426e4fc-f0dc-534b-919f-3d283e8af2b2", "text": "\u7537\u5b69\u5728\u65e5\u843d\u65f6\u628a\u65b0\u9c9c\u780d\u597d\u7684\u6728\u6750\u5806\u5230\u76ae\u5361\u8f66\u540e\u9762\u7684\u7167\u7247\u3002\u521b\u9020\u50cf\u9ed1\u767d\u7167\u7247\u4e00\u6837\u7684"} +{"id": "7001963", "video_name": "a855e8ce-68bd-5ba8-b35f-08a4ee096773", "text": "\u4e00\u500b\u5750\u5728\u8857\u982d\u7684\u7121\u5bb6\u53ef\u6b78\u7684\u7537\u4eba\u5411\u4e0a\u4f38\u624b\uff0c\u4e00\u500b\u7ad9\u5728\u4ed6\u8eab\u65c1\u7684\u6709\u9322\u4eba\u5411\u4e0b\u4f38\u624b\u3002"} +{"id": "7001964", "video_name": "0e91840c-08ee-5971-a15d-c2a18b44cfd5", "text": "\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\uff0c\u9ed1\u8272\u6d82\u5728\u767d\u8272\u80cc\u666f\u4e0a\uff0c\u7528\u7c97\u7cd9\u7684\u6d1e\u7a74\u6d82\u9e26\u624b\u5370\u7ed8\u5236\u3002"} +{"id": "7001965", "video_name": "4d5f6fa7-ef08-5197-aaab-ee544555a066", "text": "\u4ecb\u7ecd\u4e00\u4e0b\u5c3c\u83ab\uff0c\u8fd9\u79cd\u6709\u7740\u95ea\u4eae\u6a59\u8272\u9cde\u7247\u7684\u9c7c\u3002 \n\nSource sentence: The sun was setting behind the mountains, casting a warm glow over"} +{"id": "7001966", "video_name": "589ada4e-9c4a-5b72-b4c0-bbde86e1d0d8", "text": "\u4e00\u67b6\u98de\u884c\u7684\u829d\u58eb\u6c49\u5821\u98de\u5411\u592a\u7a7a\uff0c\u7535\u5f71\u822c\u7684\u53f2\u8bd7\u822c\u7684\u771f\u5b9e\u52a8\u6001\u3002"} +{"id": "7001967", "video_name": "00833544-7bd1-535c-b966-b65caee79f06", "text": "\u4e00\u4e2a\u5973\u5b69\uff1a\u5728\u5b9d\u53ef\u68a6\u4e2d\u51fa\u73b0\uff0c\u597919\u5c81\uff0c\u540d\u53eb\u8f9b\u8fea\u00b7\u9a6c\u6b47\u5c14\u3002"} +{"id": "7001968", "video_name": "d6118d69-6d5a-5c08-bbdd-ac7779b0be7d", "text": "\u5feb\u4e50\u7684\u592b\u5987\uff0c\u751f\u65e5\u5e86\u795d\uff0c\u8721\u70db\uff0c\u9910\u5385\uff0c\u5bb6\u5ead\uff0c\u5e86\u795d\uff0c\u6d3e\u5bf9\uff0c4K\uff0c\u903c\u771f"} +{"id": "7001969", "video_name": "16187e9f-8cdb-58c4-b08e-3a44a5c4034a", "text": "3D\u63d2\u753b\u5c55\u793a\u4e00\u4e2a\u771f\u5b9e\u768445\u5c81\u7537\u5b50\u968f\u610f\u5750\u5728\u4e00\u4e2a\u84dd\u8272\u7684\u82f9\u679cMac\u4e66\u524d\u9762\uff0c\u793e\u4ea4\u5a92\u4f53\u6807\u5fd7\u5728\u4e0a\u9762\u3002\n\nSource sentence:"} +{"id": "7001970", "video_name": "6dc38fa8-2eff-5871-986c-8e8ea4e73bc9", "text": "\u4e00\u5e45\u9ab7\u9ac5\u8df3\u821e\u7684\u7ebf\u63cf\u753b\u3002"} +{"id": "7001971", "video_name": "d447cad4-b762-58b2-9f3f-1159d7af6459", "text": "\u7f8e\u56fd\u4f5c\u5bb6\u7231\u4f26\u00b7\u5761\u7a7f\u7740\u8759\u8760\u4fa0\u7684\u670d\u88c5\uff0c\u5728\u9ed1\u591c\u4e2d\u88ab\u6df1\u6df1\u7684\u9ed1\u6697\u6240\u5305\u56f4\u3002"} +{"id": "7001972", "video_name": "acd78a35-0ea0-5d1b-8458-5969c8a88f3e", "text": "\u4f7f\u98de\u789f\u52a8\u8d77\u6765\uff0c\u8ba9\u80e1\u987b\u968f\u98ce\u98d8\u52a8\u3002"} +{"id": "7001973", "video_name": "140014fb-67bc-574a-99bd-bcb0a6853cd6", "text": "\u8759\u8760\u98de\u7fd4\uff0c\u95ea\u7535\u548c\u96f7\u58f0\uff0c\u72fc\u5bf9\u7740\u6708\u4eae\u5420\u53eb\u3002"} +{"id": "7001974", "video_name": "6b0f7ad9-7ab3-50bc-b7db-d1823761c594", "text": "\u516c\u56ed\u91cc\u7684\u5c0f\u732b\u5728\u96e8\u5929\u7684\u8349\u5730\u4e0a\u3002"} +{"id": "7001975", "video_name": "0da9dfa4-9e6a-5b6b-8b49-ac9e8ce27b1e", "text": "\u73ca\u745a\u7901\u4e0b\u6708\u5149\u4e0b\u6c34\u6bcd\u7684\u58ee\u89c2\u8fd0\u52a8\uff0c\u8bb8\u591a\u900f\u660e\u989c\u8272\uff0c8k\uff0c\u9510\u5229\uff0c\u9c9c\u8273\u7684\u989c\u8272\uff0c"} +{"id": "7001976", "video_name": "f53fa097-3ef0-59fb-afa2-0d36b58120ee", "text": "\u5927\u89c4\u6a21\u7684\u6551\u63f4\u884c\u52a8\u7ed9\u672c\u5df2\u8d1f\u62c5\u6c89\u91cd\u7684\u660e\u671d\u653f\u5e9c\u9884\u7b97\u5e26\u6765\u4e86\u6781\u5927\u7684\u538b\u529b\u3002\u8fd9\u79cd\u8d22\u653f\u538b\u529b\u52a0"} +{"id": "7001977", "video_name": "3fcd26ae-8532-5116-b478-089f25e91361", "text": "\u68ee\u6797\u4e2d\u7684\u6025\u4fc3\u7f8e\u4e3d\u5973\u5b69\uff0c\u8fea\u58eb\u5c3c\u98ce\u683c\u3002"} +{"id": "7001978", "video_name": "59db06f4-e72a-5940-998b-68f7f1c18f1d", "text": "\u4e24\u4e2a\u89d2\u8272\u9762\u5bf9\u9762\u5728\u77e2\u91cf\u5e73\u9762\u989c\u8272\u52a8\u753b\u4e2d\uff0c\u80cc\u666f\u4e3a\u7070\u767d\u3001\u9ec4\u8272\u3001\u6a59\u8272\u7684\u5c18\u57c3\uff0c\u7d2b\u8272\u89d2\u8272\u7535"} +{"id": "7001979", "video_name": "8cc8d377-6551-56d9-81ea-f4bc711702d5", "text": "\u767d\u8272\u7684\u608d\u9a6c\u5728\u767d\u5929\u9ad8\u901f\u7a7f\u8d8a\u6c99\u6f20\uff0c\u89c6\u9891\u7247\u6bb5\u7684\u957f\u5ea6\u5e94\u4e3a20\u79d2\u3002\n\nSource sentence: The cat is sleeping on the sofa near the window.\n"} +{"id": "7001980", "video_name": "ba0acc89-153a-58ef-8831-c0f333817cbc", "text": "\u6211\u5e0c\u671b\u901a\u8fc7\u8fd9\u4e2a\u5185\u5bb9\uff0c\u4f60\u80fd\u591f\u66f4\u5168\u9762\u5730\u4e86\u89e3\u957f\u57ce\u3002"} +{"id": "7001981", "video_name": "bb39c6c5-bb56-5b6a-8ad6-1a2041ab6d47", "text": "\u7eff\u8272\u6df1\u6797\u91cc\u6709\u8424\u706b\u866b\u3002"} +{"id": "7001982", "video_name": "5e739ad7-8c53-58e0-87cb-c1fd901d30bf", "text": "\u4e00\u4e2a\u963f\u62c9\u4f2f\u7537\u5b50\u7a7f\u7740\u4f20\u7edf\u7684\u6218\u58eb\u670d\u88c5\uff0c\u5728\u5386\u53f2\u60a0\u4e45\u7684\u963f\u62c9\u4f2f\u5e02\u573a\u4e2d\u5954\u8dd1\uff0c\u8fd9\u662f\u5728\u5f00\u9614"} +{"id": "7001983", "video_name": "a1d477a2-8aa1-5191-b7da-b5db2c1cc273", "text": "\u7f8e\u4e3d\u7684\u5973\u4eba\u7ad9\u5728\u9ec4\u660f\u65f6\u5206\u7684\u5c0f\u5c4b\u524d\u3002\u98ce\u683c\u7c7b\u4f3c\u4e8e\u300a\u7f8e\u5973\u4e0e\u91ce\u517d\u300b\u3002\u7535\u5f71\u822c\u76848K\u3002"} +{"id": "7001984", "video_name": "199c54e7-4df7-5ffb-a3f9-0c8aa1562474", "text": "\u5580\u5e03\u5c14\u5e02\u662f\u963f\u5bcc\u6c57\u7684\u9996\u90fd\uff0c\u4e5f\u662f\u8be5\u56fd\u6700\u5927\u7684\u57ce\u5e02\u3002"} +{"id": "7001985", "video_name": "1bce979c-0186-5528-8019-1b62163c06c4", "text": "\u4e00\u540dMinecraft\u73a9\u5bb6\u780d\u65ad\u4e86\u4e00\u5757\u6728\u5934\u3002"} +{"id": "7001986", "video_name": "3d8b15d7-934c-5702-909c-db9bd1f7e1c3", "text": "\u690d\u7269\u76f8\u4e92\u7f20\u7ed5\u7ea0\u7ed3\uff0c\u8d85\u7ea7\u903c\u771f\uff0c\u5728\u5e72\u71e5\u7684\u571f\u5730\u4e0a\u3002"} +{"id": "7001987", "video_name": "69976d82-bdac-5464-817a-ed7691a852bb", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u8fb9\u5883\u7267\u7f8a\u72ac\u4ee5Pixar\u98ce\u683c\u5728\u505c\u8f66\u573a\u4e3a\u7535\u52a8\u6c7d\u8f66\u5145\u7535\u3002"} +{"id": "7001988", "video_name": "3d4f47ac-21b7-51cc-a56f-d8e6a2805b64", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6811\u6797\u91cc\u5954\u8dd1\uff0c\u53d1\u73b0\u4e86\u4e00\u5934\u540d\u53eb\u666e\u62c9\u7eb3\u592b\u7684\u725b\u3002"} +{"id": "7001989", "video_name": "88fb9b15-ace6-59e9-a9f2-3e7612f9c638", "text": "\u5370\u5ea6\u5357\u90e8\u4f20\u7edf\u670d\u9970\u6253\u626e\u7684\u82f1\u4fca\u5370\u5ea6\u7537\u5b50\uff0c\u4e3e\u7740\u4e00\u628a\u767d\u84dd\u76f8\u95f4\u7684\u6298\u53e0\u94c1\u6905\uff0c"} +{"id": "7001990", "video_name": "7964f781-43d6-50ee-8213-d612cfa523b9", "text": "14\u5c81\u7537\u5b69\u53d8\u6210\u4e86\u4e00\u4e2a\u5e7d\u7075\uff0c\u4ed6\u6709\u96ea\u767d\u7684\u5934\u53d1\u548c\u53d1\u5149\u7684\u7eff\u8272\u773c\u775b\uff0c\u7a7f\u7740\u4e2d\u592e\u5e26\u6709D\u6807\u5fd7\u7684"} +{"id": "7001991", "video_name": "2b282b05-de69-5aad-abae-34bd30e37a8e", "text": "\u4e00\u500b\u5e25\u6c23\u7684\u7537\u5b50\u559d\u8457\u4f0f\u7279\u52a0\uff0c\u96fb\u5f71\u5834\u666f\uff0c\u93e1\u982d\u6e05\u6670\u3002"} +{"id": "7001992", "video_name": "ce76e7b0-57c9-52ce-b171-05705b0a1ea6", "text": "\u4e00\u540d\u5b66\u751f\u6cae\u4e27\u5730\u8d70\u5728\u4eba\u884c\u9053\u4e0a\uff0c\u955c\u5934\u653e\u5927\u3002"} +{"id": "7001993", "video_name": "c7dcfa51-a60e-517d-963b-2fa14dd2e887", "text": "\u6a58\u8272\u5c0f\u732b\u5728\u9633\u5149\u666e\u7167\u7684\u96ea\u5730\u5723\u8bde\u6e38\u4e50\u573a\u73a9\u96ea\u7403\u6253\u95f9\u3002"} +{"id": "7001994", "video_name": "e8cad9c9-7f44-58a4-b0d2-c695fce559d4", "text": "\u5b69\u5b50\u4eec\u5728\u6811\u6797\u91cc\u73a9\u800d\u3002"} +{"id": "7001995", "video_name": "7fa95ae4-78dd-543c-b66f-a17fe5e0e718", "text": "\u8ddf\u968f\u4e00\u4e2a\u5973\u5b69\u5728\u68ee\u6797\u4e2d\u3002"} +{"id": "7001996", "video_name": "2d502ad8-cc83-5fc9-ad38-d845ef296a3c", "text": "\u89e3\u91ca\u7c73\u8bfa\u65af\u56fd\u738b\u5efa\u9020\u8ff7\u5bab\u6765\u9690\u85cf\u7c73\u8bfa\u9676\u7684\u7ec6\u8282\u3002"} +{"id": "7001997", "video_name": "80022299-630f-5481-9ec4-ff07237ce484", "text": "\u8001\u7535\u89c6\u7684\u7167\u7247\u770b\u8d77\u6765\u6709\u70b9\u50cf\u65e7\u6536\u97f3\u673a\u3002"} +{"id": "7001998", "video_name": "ba93a4f1-9254-51cd-a5f3-db4e22a4a71e", "text": "\u6469\u6839\u00b7\u5f17\u91cc\u66fc\u4f5c\u4e3a\u7edd\u5730\u6b66\u58eb\uff0c\u4e0e\u83b1\u6602\u7eb3\u591a\u00b7\u8fea\u5361\u666e\u91cc\u5965\u626e\u6f14\u7684\u89d2\u8272\u5206\u4eab\u5bfc\u5e08"} +{"id": "7001999", "video_name": "7f5ea58a-3022-51ba-9e06-74eacba95f92", "text": "\u89d2\u8272\u4e0d\u65ad\u5730\u6cbf\u8857\u8d70\u7740\uff0c\u5373\u5c06\u5954\u8dd1\u3002"} +{"id": "5001061", "video_name": "05794b02-bd8e-552a-9541-aa191b551d7f", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u54c8\u74e6\u90a3\u7684\u8857\u9053\u4e0a\u5f00\u8f66\u3002"} +{"id": "0006042", "video_name": "2589d405-cbd2-5f85-a4af-a7020aefc149", "text": "\u963f\u7c73\u5854\u5e03\u00b7\u5df4\u8d6b\u6069\u5728\u8f9e\u53bb\u603b\u7edf\u804c\u52a1\u65f6\u5411\u4eba\u7fa4\u53d1\u8868\u8bb2\u8bdd\uff0c\u6444\u50cf\u673a\u56f4\u7ed5\u7740\u4ed6\u79fb\u52a8\u3002\u4f7f\u752810K"} +{"id": "3006679", "video_name": "49a0ffec-a573-5dff-8fa0-4f4ce320449c", "text": "\u63e1\u624b\u7a7f\u6cf3\u8863\u7684\u52a8\u6f2b\u5973\u5b69\u4eec\u3002"} +{"id": "6004322", "video_name": "1438e33a-ed0e-5ead-8b53-3c2fd5e797bd", "text": "\u5510\u7eb3\u5fb7\u00b7\u7279\u6717\u666e\u5077\u7a83\u7684\u5b89\u5168\u6444\u50cf\u5934\u5f55\u50cf\u3002"} +{"id": "2007658", "video_name": "e5b63885-07cc-527b-ab96-22d8341c46c5", "text": "\u94f6\u5634\u8fd0\u52a8\u6765\u81ea\u62e5\u6709\u94f6\u5507\u548c\u94f6\u76ae\u80a4\u4ee5\u53ca\u7535\u5b50\u7ec4\u4ef6\u7684\u5973\u4eba\uff0c\u76ae\u80a4\u7531\u767d\u8272\u4e9a\u514b\u529b\u5236\u6210\uff0c"} +{"id": "1004560", "video_name": "54a46270-dbf9-5b5d-a82c-3858dc3228f7", "text": "\u7f8e\u4e3d\u7684\u7ea2\u6728\u68ee\u6797\uff0c\u9633\u5149\u660e\u5a9a\u7684\u65e5\u5b50\uff0c\u53f2\u8bd7\u822c\u7684\u753b\u9762\u3002\u6d88\u606f\uff1aEcobee\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09\u3002"} +{"id": "2006750", "video_name": "e5712713-b37d-5476-8efa-351b951d85da", "text": "\u53e4\u7f57\u9a6c\u519b\u961f\u884c\u519b\uff0c\u624b\u6301\u77db\u6216\u5251\uff0c\u6709\u4e9b\u9a91\u9a6c\u3002"} +{"id": "0006869", "video_name": "3487ab24-abe7-5f62-a28b-7aa5e08addcc", "text": "\u592a\u7a7a\u4e2d\u5f62\u6210\u4e00\u4e2a\u661f\u7cfb\u7684\u62cd\u6444\uff0c\u6d41\u7545\u7684\u52a8\u753b\uff0c4K\uff0c\u6ca1\u6709\u626d\u66f2\u3002"} +{"id": "1004565", "video_name": "54d02758-a17f-5511-97b3-9e1454847132", "text": "\u5929\u7a7a\u4e2d\u51fa\u73b0\u4e86\u4e00\u4e2a\u6d1e\u3002"} +{"id": "3003946", "video_name": "619a3dcd-7b66-5dac-a727-3ea25709e543", "text": "\u4e00\u7247\u6811\u53f6\u5728\u6162\u52a8\u4f5c\u4e2d\u4ece\u5929\u7a7a\u98d8\u843d\u5230\u5730\u9762\u3002"} +{"id": "1003680", "video_name": "43da626d-877d-57b4-8db3-d6b9252ac0dd", "text": "\u4e24\u4e2a\u5361\u901a\u89d2\u8272\uff0c\u4e00\u4e2a\u7a7f\u8499\u53e4\u670d\u88c5\uff0c\u53e6\u4e00\u4e2a\u7a7f\u6c49\u670d\uff0c\u7740\u9646\u3002"} +{"id": "3004632", "video_name": "8541ee73-8578-5300-8e74-0a6d7b156311", "text": "\u4e00\u4e2a\u5728\u592a\u7a7a\u6f02\u6d6e\u7684\u534a\u673a\u68b0\u4eba\uff0c\u671b\u7740\u5730\u7403\uff0c\u7136\u540e\u4e00\u6839\u7535\u7f06\u8fde\u63a5\u5230\u5b83\u7684\u5934\u90e8\uff0c\u53e6\u4e00\u6839\u8fde\u63a5\u5230\u5b83"} +{"id": "0003133", "video_name": "37bdf81c-d938-57d1-8379-c8b2cf0ab63e", "text": "\u4e2d\u592e\u516c\u56ed\u7ebd\u7ea6\u7684\u771f\u5b9e\u8bb0\u5f55\uff0c\u9f3b snuff \u7535\u5f71\uff0c\u7535\u5f71\u7684\u5916\u89c2\u3002"} +{"id": "7003993", "video_name": "2f588c61-fcac-5462-969a-6e113a11f0c7", "text": "\u521b\u4f5c\u5de5\u4f5c\u5df2\u6392\u961f\u3002\u7ba1\u7406\u7740\u4e00\u67b6\u5750\u843d\u5728\u516c\u53f8\u9876\u90e8\u7684\u98de\u789f\uff0c\u5b83\u53ef\u4ee5\u770b\u5230\u57ce\u5e02\u7684\u5f88\u5927\u4e00\u90e8\u5206\uff0c\u8fd9\u4e2a\u98de"} +{"id": "6003464", "video_name": "3c1db858-6d09-5599-84b8-d4a030f7b3e5", "text": "\u4e00\u4e2a\u5e9e\u5927\u800c\u590d\u6742\u7684\u673a\u5668\u4eba\u5728\u6df7\u4e71\u7684\u5efa\u7b51\u7269\u4e2d\u8fc8\u6b65\u524d\u884c\uff0c\u5929\u7a7a\u88ab\u6d53\u96fe\u7b3c\u7f69\uff0c\u5149\u7ebf\u5fae\u5f31\u3002"} +{"id": "3003287", "video_name": "52b22ce3-1534-5a45-8c03-8de6ac6f3ed0", "text": "\u706b\u5c71\u5185\u90e8\u60ca\u5fc3\u52a8\u9b44\u8ff7\u4eba\u7684\u666f\u8c61\u3002"} +{"id": "1005085", "video_name": "5dca95c9-8fe3-561f-a8d0-d778df20bef5", "text": "\u5e78\u8fd0\u7684\u62ab\u8428\u53d8\u6210\u4e86\u6d3b\u751f\u751f\u7684\uff0c\u5e76\u5f00\u59cb\u8df3\u821e\u3002"} +{"id": "8001554", "video_name": "70ff0094-2053-565f-bc56-a8045943b64e", "text": "\u4f60\u53ef\u4ee5\u7ed9\u6211\u753b\u4e00\u5f20\u5de5\u4f5c\u574a\u91cc\u7684\u5957\u88c5\uff0c\u5305\u62ec\u4e00\u4ef6T\u6064\u3001\u4e00\u4ef6\u5939\u514b\u3001\u4e00\u6761\u9ed1\u88e4\u5b50\u548c\u4e00\u53cc\u5b89\u5168\u978b\u3002"} +{"id": "4004235", "video_name": "eb2a4feb-c710-53d1-a73a-d787274f3d99", "text": "\u4eba\u7c7b\u6b65\u5175\u5bf9\u6297\u5de8\u5927\u7684\u514b\u82cf\u9c81\u602a\u7269\uff0c\u800c\u4e00\u9897\u5c0f\u884c\u661f\u6b63\u5728\u63a5\u8fd1\u3002"} +{"id": "7004650", "video_name": "fbb0b3b9-1da3-5509-92e2-95270f0dc3dd", "text": "\u4e00\u4e2a\u91d1\u53d1\u5973\u5b69\u5728\u65e9\u4e0a9:35\u7684\u9633\u5149\u4e0b\u7684\u7167\u7247\u3002"} +{"id": "4003147", "video_name": "009fa0a2-00f5-5bea-a366-ea4832348c4e", "text": "\u4e00\u53ea\u732b\u5728\u7ea2\u8272\u5ddd\u5d0e\u6469\u6258\u8f66\u4e0a\u3002\u653e\u5927\u89c6\u89d2\u770b\u6574\u8f86\u6469\u6258\u8f66\u3002\u6469\u6258\u8f66\u5728\u79fb\u52a8\u3002"} +{"id": "0005267", "video_name": "178f4ae5-fdd5-51c2-82d3-481c5eb94d95", "text": "\u9152\u5e97\u7ecf\u7406\u548c\u5458\u5de5\u4ea4\u8c08\uff0c\u9152\u5e97\u80cc\u666f\u8bbe\u7f6e\uff0c\u903c\u771f\u3002"} +{"id": "0004065", "video_name": "02aced43-aa08-5b18-b745-9ef05386320d", "text": "\u53e4\u4ee3\u7ef4\u4eac\u4eba\u5728\u6c79\u6d8c\u7684\u6d77\u6d0b\u4e2d\u4f7f\u7528\u592a\u9633\u77f3\uff0c\u5f53\u5c71\u4e00\u6837\u7684\u6ce2\u6d6a\u548c\u5f3a\u70c8\u7684\u96e8\u6c34\u964d\u843d\u65f6\u3002"} +{"id": "7004454", "video_name": "8b4d479b-e9f7-5208-a579-b55295c1de4f", "text": "\u9ed1\u8272\u5b89\u606f\u65e5\u8fea\u5965\u94f6\u6cb3\u7f8e\u4eba\u9c7c\u7a7a\u95f4\u57ce\u5821\u5728\u6ce1\u6ce1\u4e4b\u4e2d\u7684\u5e7b\u60f3\u753b\u4f5c\uff0c\u7ea61977\u5e74\uff0c\u7a7a\u5c71\u57fa\uff0c\u963f\u65b9"} +{"id": "4003280", "video_name": "411258c9-ab56-5994-9f15-5d4ba7fbe014", "text": "\u7535\u7ebf\u6746\u5728\u8fdc\u5904\uff0c\u4e00\u4e2a\u8352\u829c\u7684\u5c71\u9876\uff0c\u5929\u7a7a\u4e2d\u6709\u591a\u6839\u7535\u7f06\uff0c\u9ed1\u767d\u76f8\u95f4\u3002"} +{"id": "0003948", "video_name": "00622253-3d57-544f-bfce-ef06d400a0a2", "text": "\u4e00\u4e2a\u5973\u5b69\u5728\u62f7\u95ee\u5ba4\u91cc\u89e6\u7535\u8eab\u4ea1\u3002"} +{"id": "3005891", "video_name": "02df5626-a363-5ad6-abda-3175dd221db5", "text": "\u5154\u5b50\u5728\u626d\u66f2\u7684\u85e4\u8513\u3001\u6ed1\u6e9c\u7684\u77f3\u5934\u548c\u591a\u523a\u7684\u704c\u6728\u4e1b\u4e2d\u594b\u529b\u524d\u884c\u3002\u5c3d\u7ba1\u5b83\u975e\u5e38\u654f"} +{"id": "6003988", "video_name": "4fe0c9e3-ea2a-5749-ae13-25d6aa5577c8", "text": "\u4e00\u540d\u5973\u5b50\u5750\u7740\uff0c\u4e0b\u5df4\u642d\u5728\u624b\u4e0a\uff0c\u662f\u4e00\u5f20\u7167\u7247\uff0c\u6765\u81eatumblr\uff0c\u98ce\u683c\u4e3ahurufiyya\uff0c\u62e5\u6709\u8910\u8272\u5934"} +{"id": "0003461", "video_name": "3df3c39a-a544-5ef6-bcdd-7819e4525506", "text": "\u5929\u4e3b\u6559\u5f25\u6492\u3002\u7267\u5e08\u8d70\u8fc7\u8fc7\u9053\u3002\u8d85\u7ea7\u903c\u771f\u30021980\u5e74\u3002\u4fee\u590d\u7684\u955c\u5934\u3002"} +{"id": "3006189", "video_name": "de0786bc-4bfd-53cc-bdf4-704a338854f8", "text": "Source sentence: \u73ca\u745a\u7901\u5c4f\u969c\uff0c\u8d85\u903c\u771f\uff0c8K\uff0c60\u5e27\u6bcf\u79d2"} +{"id": "6003386", "video_name": "1ac9d081-3ad4-59bc-9739-03df55650d3f", "text": "\u53ef\u53e3\u53ef\u4e50\u7f50\u5b50\u98de\u6e85\u51fa\u7f8e\u4e3d\u7684\u6c34\u82b1\u3002"} +{"id": "1006019", "video_name": "6e8f6dd6-63e2-5dc7-890a-314ac85dfe1f", "text": "\u4e00\u8258\u5de8\u578b\u5b87\u5b99\u98de\u8239\u5728\u4e00\u4e2a\u5c9b\u5c7f\u4e0a\u964d\u843d\uff0c\u4f34\u968f\u7740\u8fea\u65af\u79d1\u97f3\u4e50\u7684\u64ad\u653e\u3002"} +{"id": "8002648", "video_name": "2e2498ad-1c36-53f2-b45d-45e24dbb8780", "text": "\u5b69\u5b50\u548c\u6bcd\u4eb2\u53bb\u5267\u9662\u3002"} +{"id": "8002514", "video_name": "08471dbb-599d-523d-b844-fcb16fed8027", "text": "\u4e00\u5377\u5bff\u53f8\u957f\u51fa\u8718\u86db\u817f\uff0c\u5f00\u59cb\u5728\u5730\u677f\u4e0a\u722c\u884c\u3002"} +{"id": "2007359", "video_name": "81aa2ff1-f8b1-5093-908d-dc6900fffe04", "text": "\u96e8\u5929\u7530\u91ce\uff0c\u9ad8\u5206\u8fa8\u7387\uff0c\u591a\u4e91\uff0c\u660f\u6697"} +{"id": "3003452", "video_name": "daf00ae3-2f56-55dd-9a7e-5daf8aab5358", "text": "\u4e00\u5f20\u6e56\u6cca\u548c\u51c9\u4ead\u7684\u9ed1\u767d\u7167\u7247\uff0cTaravat Jalali Farahani \u7684\u8be6\u7ec6\u7684\u54d1\u5149\u753b\uff0ccg society\uff0cqajar \u827a\u672f\uff0c192"} +{"id": "6003797", "video_name": "5c79acec-8faf-509e-b91f-96397a6969b1", "text": "\u900f\u8fc7\u8d85\u73b0\u5b9e\u3001\u9ad8\u80fd\u6e32\u67d3\u3001\u9ad8\u7ec6\u8282\u3001\u5355\u8272\u8c03\u3001\u963f\u5c14\u5f17\u96f7\u5fb7\u00b7\u5e0c\u533a\u67ef\u514b\u548c\u97e6\u65af\u00b7\u5b89\u5fb7"} +{"id": "3004643", "video_name": "34d76ee6-b430-5035-8ad9-bea3adff25de", "text": "\u732b\u5750\u5728\u7a97\u6237\u4e0a\uff0c\u5c3e\u5df4\u5fae\u5fae\u52a8\u4e86\u4e00\u4e0b\u3002"} +{"id": "6003036", "video_name": "5e706ba6-8844-5db1-afde-f9144e1630e9", "text": "\u573a\u666f\uff1a\u8d5b\u535a\u670b\u514b\u57ce\u5e02\uff0c\u8dd1\u8f66\u53d8\u5f62\u6210\u5b87\u5b99\u98de\u8239\uff0c\u8fdb\u5165\u592a\u7a7a\u30024K\u7535\u5f71\u97f3\u4e50\u89c6\u9891\u3002"} +{"id": "2003158", "video_name": "806eec5a-1507-52bf-8ab5-476a9ea5afe8", "text": "\u6709\u6c34\u4e0b\u7ed3\u6784\u7684\u5b58\u5728\u3002"} +{"id": "0006552", "video_name": "2e7ec42d-2965-513d-b1b4-b133255306fc", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u827a\u672f\uff1a\u7537\u4eba\u5728\u70df\u96fe\u4e0b\u6e38\u6cf3\u3002"} +{"id": "2007778", "video_name": "7528c237-06a1-570a-bf49-3a2e313b3909", "text": "\u4e00\u4e2a\u8001\u4eba\u7684\u6050\u6016\u8df3\u8dc3\u955c\u5934"} +{"id": "1006891", "video_name": "7df28931-b6f4-5d2b-baf8-479beadddcde", "text": "\u8001\u56fd\u738b\u624b\u6301\u9524\u5b50\uff0c\u80cc\u666f\u662f\u84dd\u8272\u7684\u57ce\u5821\uff0c\u53f3\u4e0a\u89d2\u6709\u5f69\u8679\uff0c\u5de6\u4e0b\u89d2\u6709\u4e00\u6761\u6cb3\u6d41\u3002"} +{"id": "0003669", "video_name": "416a6353-61fa-52f4-82bf-09b742ca07bf", "text": "\u9b45\u529b\u5341\u8db3\u7684\u5e74\u8f7b\u7537\u5b50\u4e0d\u6234\u5934\u76d4\u9a91\u6469\u6258\u8f66\u7a7f\u8d8a\u7eaa\u5ff5\u7891\u8c37\u3002"} +{"id": "8001596", "video_name": "4dccc1c5-d51f-51de-9c40-0655ecaf34ed", "text": "\u5c55\u793a\u72d0\u72f8\u5750\u4e0b\u6765\uff0c\u770b\u8d77\u6765\u5f88\u6cae\u4e27\u3002"} +{"id": "1005592", "video_name": "66de2f5d-470d-56eb-9495-1c2c3523d7e8", "text": "\u9633\u5149\u900f\u8fc7\u7a97\u6237\u7167\u8fdb\u5c4b\u91cc\u3002"} +{"id": "0006470", "video_name": "2d16fa44-e53f-5a19-8e50-0464852a74fa", "text": "\u4e00\u7fa4\u4eba\u5728\u91ce\u751f\u52a8\u7269\u56ed\u6e38\u620f\u9a71\u52a8\u4e2d\u3002"} +{"id": "2004699", "video_name": "12c8d81f-a515-57b6-98bd-4a96443e1f8b", "text": "\u4e00\u5ea7\u672a\u6765\u4e3b\u4e49\u529e\u516c\u5ba4\uff0c\u4f4d\u4e8e\u4e00\u4e2a\u7e41\u8302\u7684\u82b1\u56ed\u4e2d\uff0c\u903c\u771f\u7684\u7167\u7247\uff0c4k\u3002"} +{"id": "1003396", "video_name": "3e9e6b55-a4e4-520a-9a4b-1ee4bb668de7", "text": "\u661f\u4e91\u592a\u7a7a\u65c5\u884c\u67d4\u548c\u84dd\u8272\u548c\u4e2d\u6027\u8272\u3002"} +{"id": "3003324", "video_name": "6e9063eb-b79f-5a5a-8620-f2734c7f3796", "text": "\u4e00\u4e2a\u7537\u4eba\u8ddf\u5728\u4e00\u4e2a\u5973\u4eba\u540e\u9762\uff0c\u5f53\u5979\u8f6c\u8fc7\u8eab\u6765\u65f6\uff0c\u4ed6\u6d88\u5931\u4e86\u3002"} +{"id": "1006866", "video_name": "7d514801-f8a3-5fd5-af34-dc42791d9ede", "text": "\u4eba\u4ef0\u671b\u5929\u7a7a\u3002"} +{"id": "6003749", "video_name": "ed001d70-b0b1-5f57-923a-380f6d2a9e8a", "text": "\u7eff\u8272\u6db2\u4f53\u6df7\u5408\u7740\u8840\u7ec6\u80de\uff0c\u5728\u663e\u5fae\u955c\u4e0b\u89c2\u5bdf\uff0c\u662f\u8840\u6db2\u5faa\u73af\u4e2d\u7684\u5b8f\u89c2\u73b0\u8c61\u3002"} +{"id": "3006941", "video_name": "2ebfc886-1af3-57f4-838c-a742ddb32613", "text": "8\u5c81\u7684\u5973\u5b69\u770b\u5230\u5979\u7684\u5988\u5988\u7ed9\u4ec6\u4eba\u94b1\u3001\u8863\u670d\u3001\u73a9\u5177\u3001\u7cd6\u679c\u548c\u997c\u5e72\u3002"} +{"id": "3004461", "video_name": "6b98a8f4-13f0-59f1-8677-56697b97dcac", "text": "\u7cbe\u795e\u57c3\u53ca\u4e4b\u773c\u8f6c\u5316\u4e3a\u4e00\u80a1\u80fd\u91cf\n\nSource sentence: The world is a book, and those who do not travel read only a page.\n\u4e16\u754c\u662f\u4e00\u672c\u4e66\uff0c\u4e0d\u65c5"} +{"id": "0004738", "video_name": "0e63d362-13ed-5380-b723-53d59ae4e0e1", "text": "into the school office.\n\n\u4e00\u540d\u7a7f\u7740\u6821\u670d\u7684\u5973\u5b66\u751f\u6b63\u7a7f\u8fc7\u5b66\u6821\uff0c\u770b\u5230\u5730\u4e0a\u6709\u4e00\u90e8\u624b\u673a\uff0c\u5979\u6361\u8d77\u6765\u5e76\u4ea4\u5230\u4e86\u5b66\u6821\u529e"} +{"id": "4004012", "video_name": "b6c9ebbd-5472-53f4-a08c-83e507433ab8", "text": "\u6570\u5b57\u5b6a\u751f\u4e0e\u673a\u5668\u4eba\u534f\u4f5c\uff0c\u5728\u5b8c\u5168\u81ea\u52a8\u5316\u7684\u672a\u6765\u5236\u9020\u73af\u5883\u4e2d\u5236\u4f5c\u7c89\u8272\u8303\u601d\u54f2\u76ae\u9769\u8fde\u8863\u88d9\uff0c\u6709\u5bfc\u7ebf\u5f15"} +{"id": "4003642", "video_name": "9ae8d90a-f94d-5520-96e6-9f773e5db4c9", "text": "\u8840\u6db2\u4ece\u538b\u69a8\u673a\u91cc\u6d41\u4e86\u51fa\u6765\uff0c\u6d8c\u5230\u4e86\u9a6c\u7b3c\u5934\u90a3\u4e48\u9ad8\u3002"} +{"id": "0006732", "video_name": "31e9df84-aecb-5189-82cf-657a53c0b9a7", "text": "\u53e4\u5df4\u7537\u5b69\u5728\u54c8\u74e6\u90a3\u9a6c\u83b2\u5eb7\u5927\u9053\u3002"} +{"id": "2003094", "video_name": "71953213-f909-5db7-8239-ef08740e672e", "text": "\u98a4\u6296\u7684\u624b\u673a\u6444\u50cf\u5934\u62cd\u6444\u7684\u5f71\u7247\u7a7f\u8fc7\u6811\u6797"} +{"id": "4003173", "video_name": "5ea4e294-4582-535c-9665-d05b751578c8", "text": "\u5b87\u822a\u5458\u5728\u706b\u7bad\u4e2d\u98de\u5411\u6708\u7403\u3002"} +{"id": "0005325", "video_name": "18b81a64-e829-57a5-b9ec-e14d6974939f", "text": "\u5728\u5348\u591c\u65f6\u5206\u89e3\u51b3\u8ba1\u7b97\u673a\u95ee\u9898\u7684\u5145\u6ee1\u6d3b\u529b\u7684\u5de5\u7a0b\u5e08\uff0c\u9ad8\u8d28\u91cf\u9ad8\u5206\u8fa8\u7387\u3002"} +{"id": "6004376", "video_name": "0845962e-3a20-5dbd-8000-3a41ab1eb68d", "text": "\u4e00\u4f4d\u7126\u7cd6\u8272\u76ae\u80a4\u7684\u5973\u4eba\uff0c\u957f\u7740\u68d5\u8272\u5c16\u7aef\u7684\u7f16\u7ec7\u53d1\u8fab\uff0c\u7a7f\u7740\u9ed1\u8272\u548c\u9ec4\u8272\u7684\u8303\u601d\u54f2"} +{"id": "1004531", "video_name": "54377ee4-c853-5287-b257-5da52588a4d9", "text": "\u5728\u68a6\u5e7b\u822c\u7684\u80cc\u666f\u4e0b\uff0c\u6a21\u7279\u8eab\u7a7f\u67d4\u548c\u7684\u8863\u6599\uff0c\u914d\u4ee5\u67d4\u548c\u7684\u706f\u5149\uff0c\u6355\u6349\u5230\u4e00\u79cd\u7a7a\u7075\u7684\u7f8e"} +{"id": "4003195", "video_name": "031fd928-5e07-57be-b41b-1958babcb632", "text": "\u5f53\u4f60\u88ab\u8b66\u5bdf\u62e6\u4e0b\u5e76\u56e0\u53d7\u836f\u7269\u6216\u9152\u7cbe\u5f71\u54cd\u800c\u9a7e\u9a76\u65f6\uff0c\u4e00\u6bb5\u5173\u4e8e\u8be5\u600e\u4e48\u505a\u548c\u4e0d\u8be5\u505a\u7684"} +{"id": "6004869", "video_name": "e54e365d-7e16-5ef9-b02c-c934c008bce9", "text": "\u8857\u9053\u4e0a\u4fef\u89c6\u9ad8\u5927\u672a\u6765\u4e3b\u4e49\u5efa\u7b51\u7684\u89c6\u89d2\u3002\u6c1b\u56f4\u662f\u9ed1\u6697\u7684\u3001\u591c\u665a\u7684\u3001\u96e8\u5929\u300216\uff1a9\u6bd4\u4f8b\u3002\u8d5b\u535a"} +{"id": "0006939", "video_name": "358a9a50-5ac2-5574-991e-dcac0173e8d5", "text": "\u8865\u6c34\uff1a\u591a\u559d\u6c34\u53ef\u4ee5\u51b2\u6d17\u6389\u98df\u7269\u6b8b\u6e23\uff0c\u9884\u9632\u7259\u9f7f\u53d8\u9ec4\u3002"} +{"id": "1005170", "video_name": "5f27409f-3b3a-5c0c-9bae-998e2e5e80be", "text": "\u7528\u81ea\u7136\u548c\u4e2d\u6027\u7684\u52a8\u4f5c\u505a\u624b\u81c2\u8fd0\u52a8\u3002"} +{"id": "2005392", "video_name": "26d4cf6b-c321-5211-8394-356995d2bc25", "text": "\u9910\u684c\u4e0a\u7684\u684c\u5e03\u5206\u5f62\u56fe\u6848\uff0c\u665a\u9910\u65f6\u670d\u7528LSD"} +{"id": "0005157", "video_name": "15c2a42e-d9e8-5210-957d-534e9462fa61", "text": "\u955c\u5934\u8fd1\u8ddd\u79bb\u62cd\u6444\u5b50\u5f39\u7a7f\u8fc7\u7a7a\u6c14\uff0c\u7c7b\u4f3c\u300a\u9ed1\u5ba2\u5e1d\u56fd\u300b\u7684\u771f\u5b9e\u52a8\u4f5c\u7535\u5f71\u3002"} +{"id": "4003643", "video_name": "489a16e9-7886-54e9-a889-99b14173c01e", "text": "\u4e00\u4e2a\u60ac\u7591\u65f6\u523b\uff0c\u4e00\u4f4d\u6751\u6c11\u6253\u5f00\u4e00\u4e2a\u53e4\u8001\u7684\u5431\u5440\u4f5c\u54cd\u7684\u95e8\uff0c\u63ed\u793a\u51fa\u4e00\u4e2a\u5e03\u6ee1\u8718\u86db\u7f51\u3001\u4e00\u4e2a"} +{"id": "6002761", "video_name": "440e799c-9403-53b1-83ae-193397586984", "text": "is applying for residency programs at various hospitals.\n\n\u73cd\u59ae\u662f\u6700\u8fd1\u6bd5\u4e1a\u7684\u533b\u5b66\u751f\uff0c\u6b63\u5728\u4e0d\u540c\u7684\u533b\u9662\u7533\u8bf7\u4f4f\u9662\u533b\u5e08\u8ba1\u5212\u3002\n\nSource sentence:"} +{"id": "2006695", "video_name": "39528f47-50dc-5abe-bf19-bcd274496bac", "text": "\u4e00\u5f20\u795e\u79d8\u3001\u75b2\u60eb\u7537\u5b50\u5728\u77f3\u5934\u4e0a\u63d2\u7740\u65d7\u5b50\uff0c\u5468\u56f4\u662f\u6d77\u6d0b\u7684\u56fe\u50cf\u3002"} +{"id": "2003663", "video_name": "df9a57a3-0b64-5054-af60-320c5372920a", "text": "\u76ae\u514b\u65af\u98ce\u683c\uff0c\u5b81\u9759\u7684\u68ee\u6797\uff0c\u5361\u901a\uff0c\u591c\u665a\uff0c\u6708\u4eae\uff0c\u661f\u661f\uff0c\u5149\uff0c\u98de\u821e\u7684\u8424\u706b\u866b\uff0c"} +{"id": "0006370", "video_name": "2b51aa41-25df-58c0-9e16-60cd7e2bb9be", "text": "Translation: \u7a7f\u7740\u7d2b\u91d1\u8272\u7684\u9ed1\u4eba\u7537\u5b50\u3002"} +{"id": "1005348", "video_name": "6256a0f8-0503-5d4b-bd86-1f9612dafd02", "text": "\u7a7a\u95f4\u6b63\u5728\u5feb\u901f\u5411\u6211\u9760\u8fd1\u3002"} +{"id": "3006811", "video_name": "a6dfd31a-7f21-556b-ad18-06338bd97986", "text": "\u53f3\u8fb9\u51fa\u73b0\u4e86\u4e24\u7ec4\u4e92\u76f8\u5782\u76f4\u7684\u5f69\u8272\u5e73\u884c\u7ebf\uff0c\u5b83\u4eec\u65cb\u8f6c\u7740\u6d88\u5931\uff0c\u88ab\u95ea\u70c1\u7684\u5149\u70b9\u6240\u53d6\u4ee3\u3002"} +{"id": "0006433", "video_name": "2c40779a-7476-5f03-923d-1bef97c2068d", "text": "\u519c\u573a\u6a21\u62df\u7ecf\u8425\u6e38\u620f\uff0c\u4ee5\u519c\u4e1a\u4e3b\u9898\u4e3a\u80cc\u666f\uff0c\u8272\u5f69\u4e30\u5bcc\uff0c\u6709\u9e21\u517b\u6b96\u3002"} +{"id": "7004412", "video_name": "a6302a9d-eaf0-53b1-a4f1-7ac138a2df73", "text": "\u672a\u6765\u592a\u7a7a\u98de\u8239\u7a7f\u8d8a\u5916\u592a\u7a7a\u76844k hdr\u3002"} +{"id": "6003467", "video_name": "b74cca4f-41a6-5fc1-87df-900349fa3dbd", "text": "1950\u5e74\u4ee3\u7684\u62cd\u6444\u98ce\u683c\uff0c\u8bb0\u5f55\u4e862023\u5e74\u4eba\u4eec\u6b65\u884c\u7684\u573a\u666f\u3002"} +{"id": "0006297", "video_name": "2a31cb81-5159-59ac-bbc3-0a5d286d2c60", "text": "\u4e00\u4f4d\u9762\u5305\u914d\u9001\u5458\u5c06\u4e24\u6253\u82f1\u96c4\u9762\u5305\u9001\u5230\u4e54\u6cbb\u4e9a\u5dde\u9ea6\u8fea\u900a\u5e02\u4e2d\u5fc3\u7684\u4e00\u5bb6\u540d\u4e3aMadison Produce\u7684\u719f\u98df\u5e97\u3002"} +{"id": "0004351", "video_name": "078f9451-f12b-5895-aa3a-f8c64ac74f90", "text": "\u5728\u80cc\u666f\u4e2d\u52a0\u5165\u70df\u96fe\u8fd0\u52a8\u3002"} +{"id": "8003804", "video_name": "1cc8b28c-f23f-5aac-9534-cda0852052b6", "text": "\u5371\u9669\u7684\u72ee\u5b50\u6f5c\u4f0f\u5176\u4e2d\uff0c\u662f\u4e00\u79cd\u8feb\u5728\u7709\u776b\u7684\u5a01\u80c1\u3002"} +{"id": "0006294", "video_name": "2a23c08f-2d4b-5932-9e22-d20d1320adf4", "text": "\u5e26\u6211\u4eec\u56de\u5230\u4ed6\u751f\u547d\u7684\u6700\u540e\u65f6\u523b\u3002"} +{"id": "2003681", "video_name": "76edaf2e-5bdc-56d6-b10d-831c909f13c1", "text": "\u9e70\u96bc\u5728\u665a\u971e\u4e2d\u7f13\u6162\u5730\u964d\u843d\u5728\u5ca9\u77f3\u4e0a\u3002"} +{"id": "2004500", "video_name": "db1bb027-03b1-547b-b43c-48ec109d8b6f", "text": "\u65b9\u5f62\u7684\u592a\u9633\u964d\u843d\u5230\u6cb3\u91cc\u3002"} +{"id": "6003593", "video_name": "6d24426c-2964-5a9a-ad40-2a9b6fb505ca", "text": "\u4e00\u4e2a\u7537\u4eba\u671d\u7740\u65cb\u8f6c\u7684\u5de8\u578b\u7eb1\u8f74\u8d70\u53bb\u3002"} +{"id": "1004367", "video_name": "50a8ea60-bfe8-5de8-978f-8ecaf564d8d2", "text": "\u4e39\u5c3c\u00b7\u5fb7\u7ef4\u6258\u548c\u666e\u4eac\u63e1\u624b\u3002"} +{"id": "0006862", "video_name": "346b8be4-ea5e-54cb-8580-404c66d4dec5", "text": "\u82f1\u6587\u53e5\u5b50\uff1a\u7b2c\u4e00\u6b21\u5728\u5496\u5561\u9986\u4e2d\u4e3b\u89d2\u548c\u5973\u4e3b\u89d2\u4e4b\u95f4\u7684\u5f15\u4eba\u6ce8\u76ee\u7684\u573a\u666f\u3002\n\n\u7ffb\u8bd1\u540e\u53e5\u5b50\uff1a\u4e3b\u89d2\u548c\u5973\u4e3b"} +{"id": "2007799", "video_name": "c4a71acc-f16f-5d51-9233-49b95017cbe8", "text": "\u7728\u773c\u775b\uff0c\u5934\u53d1\u5728\u7fc5\u8180\u4e0a\u6f02\u6d6e\uff0c\u5934\u6b6a\u659c\u3002"} +{"id": "6003646", "video_name": "0d8951cb-158a-5c5b-abe0-240f173f7f2e", "text": "\u4e00\u53ea\u5c0f\u7334\u5b50\u5728\u68ee\u6797\u91cc\u5403\u6843\u5b50\u3002"} +{"id": "3003762", "video_name": "f5993d68-8b51-5b67-8292-ba9c1b9a5512", "text": "\u62c9\u59c6\u548c\u590f\u59c6\u5728\u5b66\u6821\u7b2c\u4e00\u5929\u63e1\u624b\uff0c\u5c55\u793a\u4ed6\u4eec\u7684\u53cb\u8c0a\u3002"} +{"id": "7002906", "video_name": "e2ab6b2d-32f5-52ee-9dfe-72e510bff69c", "text": "\u4e00\u4e2a\u6234\u773c\u955c\u3001\u6234\u9ed1\u8272\u5e3d\u5b50\u7684\u7537\u4eba\u53cc\u624b\u63d2\u5728\u53e3\u888b\u91cc\uff0c\u5728\u706b\u8f66\u4e0a\u505c\u4e0b\u6765\u4e86\u3002\u4fe1\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "2006826", "video_name": "5a5437f1-e501-59a0-80ce-b27cdbab9ab0", "text": "\u4e00\u53ea\u6591\u9a6c\u4ee5\u76ae\u514b\u65af\u98ce\u683c\u8d70\u8fc7\u7530\u91ce\u3002"} +{"id": "4002571", "video_name": "4eaee66b-5af2-5cd2-825c-ee717955e66a", "text": "\u4e2d\u5fc3\u4e3b\u9898\u7684\u89c6\u89c9\u8868\u73b0\uff1a\u5145\u6ee1\u6d3b\u529b\u7684\u6751\u5e84\uff0c\u72ec\u7279\u7684\u8272\u5f69\u548c\u9633\u5149\u3001\u4e00\u53ea\u5145\u6ee1\u6d3b\u529b\u7684\u9ec4\u8272\u91d1"} +{"id": "8003108", "video_name": "d1b41be9-cb1f-5db0-902e-efcd81b369f6", "text": "\u5973\u5b69\u5728\u8df3\u821e\u3002\u79d1\u5e7b\u7535\u5f71\u3002\u7a7a\u8361\u7684\u8857\u9053\u3002\u5e02\u4e2d\u5fc3\u697c\u68af\u524d\u3002\u84dd\u8272\u8272\u8c03\u3002\u4e0b\u96e8\u3002"} +{"id": "4002491", "video_name": "0bf6d705-11c1-5a10-8ae5-8e1af63e0e25", "text": "\u9a6c\u5fb7\u91cc\u7f8e\u4e3d\u7684\u591c\u665a\u3002\u7559\u8a00\uff1a\u7ea6\u7ff0\u3002"} +{"id": "5001549", "video_name": "54cce539-d7bf-571c-bb5a-a885c5383cc9", "text": "\u6bd5\u4e1a\u5e3d\u548c\u6c14\u7403\u548c\u793c\u5bbe\u82b1 \u4fe1\u606f\uff1a2018\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "6002980", "video_name": "b0ba2913-c65c-5c26-b5b9-077f8e77faad", "text": "\u6253\u5f00\u753b\u9762\u662f\u4e00\u4e2a\u7e41\u534e\u672a\u6765\u57ce\u5e02\u7684\u5168\u666f\uff0c\u9ad8\u8038\u7684\u6469\u5929\u5927\u697c\u548c\u98de\u884c\u5668\u3002\u592a\u9633\u843d\u5c71\uff0c\u7ed9\u57ce\u5e02\u666f\u89c2\u5e26\u6765"} +{"id": "8003069", "video_name": "de62404a-6c76-50a7-b67f-a8d182b0411f", "text": "\u63cf\u8ff0\u5973\u5b69\u5076\u7136\u53d1\u73b0\u5c0f\u732b\u54aa\u7684\u90a3\u4e00\u523b\uff0c\u5b83\u4eec\u7684\u76ee\u5149\u4ea4\u6c47\uff0c\u5f62\u6210\u4e86\u4ee4\u4eba\u7740\u8ff7\u7684\u51dd\u89c6\u3002\u4ee5"} +{"id": "6004893", "video_name": "ba0527e7-04b9-5529-9eeb-62e0d110246f", "text": "\u63cf\u8ff0\u4e00\u4e2a\u5524\u8d77\u60c5\u611f\u7684\u5f62\u8c61\uff0c\u5b83\u5177\u6709\u9ed1\u6697\u795e\u79d8\u7684\u80cc\u666f\uff0c\u4e2d\u5fc3\u662f\u4e00\u53ea\u773c\u775b\uff0c\u53cd\u6620\u51fa\u4e00\u79cd\u62c5\u5fe7\u548c\u7126"} +{"id": "2005130", "video_name": "c74e38cc-e551-5eaa-a473-29bed455a258", "text": "\u6709\u4eba\u5728\u67d0\u4e2a\u5730\u65b9\u505a\u67d0\u4e8b\uff0c\u67d0\u4e2a\u5730\u65b9\u53d1\u751f\u4e86\u4ec0\u4e48\u3002"} +{"id": "0006232", "video_name": "28ca8019-94ee-571a-9376-47c651bdbace", "text": "\u4e00\u8f86\u8b66\u8f66\u8ddf\u968f\u7740\u4e00\u8f86\u60ac\u6d6e\u8fd0\u52a8\u6c7d\u8f66\u5728\u5ce1\u8c37\u9ad8\u901f\u516c\u8def\u4e0a\u884c\u9a76\u3002\u79d1\u5e7b\u3002\u8d5b\u535a\u670b\u514b"} +{"id": "8002369", "video_name": "a9ba7c42-9f0a-5af8-95d6-763f43bb228c", "text": "\u4e00\u4f4d\u7537\u6570\u5b66\u8001\u5e08\u6b63\u5728\u8bfe\u5802\u4e0a\u8bb2\u8bfe\u3002"} +{"id": "8001972", "video_name": "3bb35673-77be-5a80-8004-d3270b715615", "text": "\u5e15\u62c9\u8212\u62c9\u739b\u6a2a\u8de8\u5927\u5730\uff0c\u6311\u6218\u5e76\u6253\u8d25\u4e86\u8bb8\u591a\u56fd\u738b\u548c\u6218\u58eb\u3002\u4ed6\u6210\u4e3a\u4e86\u4e00\u4e2a\u4ee5\u65e0\u60c5\u8ffd\u6c42\u6b63\u4e49\u800c"} +{"id": "7004209", "video_name": "f4293c1e-5e41-5d19-bdab-28b0ef410d01", "text": "\u4ed6\u5728\u8003\u8651\u4ed6\u7684\u8ba1\u5212\u3002\n\u4ed6\u68a6\u60f3\u7740\u4ed6\u751f\u547d\u7684\u76ee\u6807\u3002"} +{"id": "1004662", "video_name": "56b1dc62-3b1a-5c8a-820b-36410c78b99f", "text": "\u4e00\u53ea\u81ea\u8c6a\u7684\u5927\u9752\u86d9\u5728\u4e00\u4e2a\u8302\u5bc6\u7684\u4e1b\u6797\u91cc\u4eab\u53d7\u7740\u5b81\u9759\u4e0e\u5b89\u9038\u3002"} +{"id": "3005528", "video_name": "bb5f7ca0-4bf5-5ef5-851e-d0d8d4466ba4", "text": "\u5b69\u5b50\u8d70\u5728\u4ed6\u4eec\u4e2d\u95f4\uff0c\u7275\u7740\u4e24\u4e2a\u7236\u6bcd\u7684\u624b\uff0c\u9762\u5e26\u559c\u60a6\u7684\u7b11\u5bb9\u3002\u4ed6\u4eec\u7684\u5934\u53d1\u88ab\u6d77\u98ce\u5439\u4e71"} +{"id": "8001779", "video_name": "77f1a2f1-6de2-5268-9319-07276af5eb27", "text": "\u4e00\u53ea\u731b\u72b8\u8c61\u9a91\u7740\u81ea\u884c\u8f66\u5728\u6d77\u4e0a\u884c\u9a76\u3002"} +{"id": "3003073", "video_name": "637063d0-49f4-5763-ae1f-b4848df0bbda", "text": "\u4e00\u5f20\u53e4\u8001\u56fe\u8868\u7684\u7279\u5199\u7f29\u653e\uff0c\u4e0a\u9762\u7a7f\u7740\u767d\u8272\u8863\u670d\u7684\u7f8e\u4e3d\u62c9\u4e01\u5973\u4eba\u7684\u56fe\u50cf\u5df2\u7ecf\u6709\u4e9b\u78e8\u635f\u3002"} +{"id": "3006461", "video_name": "28eeda12-e7b4-52aa-b12d-e5a26d876f3b", "text": "\u6a59\u8272\u7403\u72c0\u4eba\u7269\uff0c\u8907\u96dc\uff0c\u6a5f\u5668\u4eba\u773c\u775b\uff0c\u5929\u7dda\uff0c\u770b\u8d77\u4f86\u50cf\u5e36\u6709\u8173\u548c\u624b\u81c2\u7684\u6c23"} +{"id": "7002742", "video_name": "11316c0f-c224-54bd-b850-d0505f9fb9d6", "text": "\u52a8\u753b\u7247\uff0c\u672a\u6765\u4e3b\u4e49\u76f4\u5347\u673a\u98de\u8fc7\u5934\u9876\uff0c\u7535\u5f71\u822c\u7684\u573a\u666f\uff0c\u8fd0\u52a8\u56db\u6b21\u5143\u3002"} +{"id": "4002656", "video_name": "23a52821-4b4a-5f0b-8fd1-403c1a98a1f4", "text": "\u9ad8\u5206\u8fa8\u7387\u7684\u8349\u5730\u65e5\u843d\u3002\u6d88\u606f\uff1a\u9644\u4ef61\u3002"} +{"id": "0004178", "video_name": "049a7dc8-9a97-5fe6-a0f6-75f8774a561d", "text": "\u5e7f\u9614\u6df1\u9083\u7684\u7a7a\u95f4\uff0c\u6f02\u6d6e\u7740\u4e00\u4e2a\u6709\u51e0\u53ea\u95ea\u70c1\u773c\u775b\u7684\u6444\u50cf\u5934\u3002"} +{"id": "4002033", "video_name": "67de0411-2f46-59c3-bfd4-feb514a4f255", "text": "\u822a\u62cd\u8d5b\u9053\uff0c\u901a\u8fc7\u8d5b\u8f66\u65e0\u4eba\u673a\u7684\u89c6\u89d2\uff0c\u5177\u6709\u7535\u5f71\u611f\u3002"} +{"id": "7004424", "video_name": "599cc922-26e8-5355-92ca-aa7699fe07de", "text": "\u8d85\u73b0\u5b9e\u4e3b\u4e49\u5723\u8bde\u8001\u4eba\uff0c\u5e26\u77402024\u5e74\u7684\u65b0\u5e74\u795d\u798f\u6d88\u606f\u3002"} +{"id": "7003855", "video_name": "4420cb92-0d91-53fb-9220-86575df99144", "text": "\u6e56\u6c34\u6d41\u6dcc\uff0c\u9c7c\u513f\u5728\u6e38\u52a8\u3002"} +{"id": "2006850", "video_name": "f5d2d86f-67fb-54a8-a3fa-316903ae20ce", "text": "\u9752\u6625\u671f\u7684\u4e2d\u56fd\u5973\u5b69\u7a7f\u7740\u6bd4\u57fa\u5c3c\u8df3\u7740\u4f20\u7edf\u7684\u4e2d\u56fd\u8282\u65e5\u821e\u8e48\u3002"} +{"id": "3003668", "video_name": "b22333ca-ef15-5c6d-b3d5-903892917aa9", "text": "\u5728\u8fd9\u4ee4\u4eba\u60ca\u53f9\u7684\u666f\u8272\u4e2d\u6c89\u6d78\uff0c\u8349\u5730\u67d4\u8f6f\u7684\u7c89\u8272\uff0c\u6cb3\u6c34\u5e73\u9759\u7684\u84dd\u8272\u3002\u8fdc\u5904\u5c71\u5cf0\u82e5"} +{"id": "6004626", "video_name": "436928b3-7752-5803-a2ad-2b3289ba7c90", "text": "\u8568\u7c7b\u53f6\u5b50\u5728\u9ed1\u8272\u80cc\u666f\u4e0a\u3002"} +{"id": "3005548", "video_name": "cc471b62-e377-59b9-8111-b5420f2c0990", "text": "\u901a\u9053\u4e2a\u4eba\u529b\u91cf\n\u8110\u4e0a\u65b9\u662f\u592a\u9633\u795e\u7ecf\u4e1b\u8f6e\u3002"} +{"id": "3005069", "video_name": "a98594d0-9ca9-5930-9856-1881134c6ff9", "text": "\u8ff7\u5bab\u602a\u517d\u88ab\u626f\u8fdb\u8346\u68d8\u4e2d\uff0cBeksinski\u548cAlfred Stieglitz\u57281900\u5e74\u4ee3\u521b\u4f5c\u51fa\u7684\u9897\u7c92\u611f\u9ed1\u767d\u7167\u7247"} +{"id": "8001702", "video_name": "4e0a4d6b-159d-5c05-9faf-a492fe1ff199", "text": "\u544a\u8bc9\u4ed6\u4eec\u6240\u6709\u7684\u4e8b\u60c5\uff0c\u8ba9\u4ed6\u4eec\u5370\u8c61\u6df1\u523b\u3002"} +{"id": "1003985", "video_name": "499f24df-1ddc-5759-9db1-3206e52f9005", "text": "\u4e00\u4e2a\u7537\u4eba\u6b63\u5168\u901f\u9a91\u81ea\u884c\u8f66\u3002"} +{"id": "2007129", "video_name": "074a5f67-5299-5d94-a99a-deea4d0fca1c", "text": "\u4ecb\u7ecd\u795e\u79d8\u7684\u6751\u5e84\u548c\u665a\u4e0a\u542c\u5230\u7684\u5947\u602a\u58f0\u97f3\u3002"} +{"id": "2007143", "video_name": "7ff8bd11-a961-5dba-b161-af00d92ebe60", "text": "\u7528\u95ea\u4eae\u7684\u7816\u5757\u505a\u6210\u7684\u91d1\u5c5e\u725b\u4ed4\uff0c\u5728\u6c99\u6f20\u4e2d\u53cd\u6620\u7740\u4ed6\u7684\u5b58\u5728\uff0c\u6df1\u5ea6\u89c6\u91ce\uff0c16:9\uff0c\u54c8"} +{"id": "3004867", "video_name": "3717dd6a-581c-5802-88b9-376bf84011cb", "text": "\u592a\u7a7a\u6e38\u620f\u51e0\u4f55\u51b2\u523a\u3002\u4fe1\u606f\uff1aVodaBAF\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "0003279", "video_name": "3ab570b1-3c9d-5724-834b-c6ee976bdd43", "text": "\u59d0\u59d0\u6b63\u5728\u516c\u56ed\u91cc\u548c\u59b9\u59b9\u73a9\u5f97\u5f88\u5f00\u5fc3\u3002"} +{"id": "1004346", "video_name": "502a4612-bc74-5d84-b850-a2d2513d55a7", "text": "\u795e\u79d8\u800c\u95ea\u8000\u7684\u6e56\u6cca\u4e2d\u5145\u6ee1\u4e86Alejandro Jodorowsky\u9c9c\u8273\u7684\u8272\u5f69\u548c\u5455\u5410\u7684\u77f3\u4eba\u3002"} +{"id": "7003033", "video_name": "0e7207dc-2cf1-5c65-821d-6b885865c94a", "text": "\u5927\u578b\u5927\u9ebb\u690d\u7269\u5728\u98ce\u4e2d\u6447\u66f3\u3002"} +{"id": "0003592", "video_name": "401a65bb-f376-52cc-a247-09e945edf92b", "text": "\u9ed1\u8272\u80cc\u666f\u4e0a\u6709\u7ec6\u5c0f\u6ce2\u6d6a\u7ebf\u548c\u6e29\u67d4\u7684\u95ea\u5149\u3002"} +{"id": "0005666", "video_name": "1efd06b5-8b24-560c-9451-0727c41957ee", "text": "\u4f7f\u7528\u77f3\u82f1\u6c34\u6676\u5360\u535c\u7684\u7b97\u547d\u5e08\u89c6\u9891"} +{"id": "7004076", "video_name": "0abef248-2378-54f6-9936-a191aa357706", "text": "\u4e00\u53ea\u5c0f\u732b\u6389\u5230\u4e86\u5730\u4e0a\uff0c\u63d2\u753b\u98ce\u683c\u3002"} +{"id": "2006875", "video_name": "fb231cfe-ea5a-5eb0-9b9b-ce06fa38fc49", "text": "\u53e4\u4ee3\u4ee5\u8272\u5217\uff0c\u6709\u51e0\u4e2a\u4eba\u79bb\u5f00\u4e86\u57ce\u5e02\u3002"} +{"id": "2005531", "video_name": "312d1aa6-cb27-5aff-ba6b-207cb887d428", "text": "\u5feb\u4e50\u7684\u5b69\u5b50\u4eec\u3002\u4fe1\u606f\uff1aTeknofest\u3002\uff08\u5b57\u4f53\uff1a\u73b0\u4ee3\uff09"} +{"id": "5001578", "video_name": "f4fad989-addd-5d51-8f34-542cc7757d23", "text": "\u8d85\u5199\u5b9e\u7684\u91d1\u53d1\u5e74\u8f7b\u5973\u5b50\uff0c\u5bf9\u7740\u955c\u5934\u5fae\u7b11\uff0c\u4e3a\u4e2a\u4eba\u8d44\u6599\u7167\u7247\u62cd\u6444\u3002"} +{"id": "4002358", "video_name": "abfc64a2-d22e-5865-8e25-f4a5506c5dad", "text": "\u4e00\u4e2a\u903c\u771f\u7684\u60ac\u6d6e\u814c\u9ec4\u74dc\uff0c\u7535\u5f71\u98ce\u683c\uff0c\u7ec6\u8282\u7279\u5199\uff0c\u5fae\u8ddd\u955c\u5934\u3002"} +{"id": "2007284", "video_name": "8f923fc2-0b10-535c-9779-56239161c8d7", "text": "\u5728\u4e00\u4e2a\u53e4\u5e0c\u814a\u795e\u5e99\u91cc\uff0c\u4e00\u5e45\u5e84\u4e25\u7684\u573a\u666f\u5c55\u5f00\u5728\u773c\u524d\uff0c\u51e0\u4e2a\u4eba\u7ad9\u5728\u8654\u8bda\u7684\u59ff\u52bf\u4e2d\u3002\u4ed6"} +{"id": "6004799", "video_name": "01888fb2-4530-5bb7-9a59-3bf7a270fbe8", "text": "16:9\u6bd4\u4f8b\uff0c\u519c\u573a\u4e0a\u7684\u7ef5\u7f8a\uff0c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u98ce\u683c\u3002"} +{"id": "6003500", "video_name": "fd622210-92db-566d-b422-49e8a5c186bf", "text": "\u591c\u95f4\u6a21\u5f0f\u548c\u7167\u660e\u6c14\u6ce1\u3002\u6d88\u606f\uff1a1\u4e2a\u9644\u4ef6\u3002"} +{"id": "3004603", "video_name": "f16c4761-2b4b-5c4b-99b8-6ec669e5bf4e", "text": "\u997a\u5b50\u8c61\u5f81\u7740\u56e2\u5706\uff0c\u6211\u5e0c\u671b\u5168\u5bb6\u5728\u65b0\u7684\u4e00\u5e74\u91cc\u5e73\u5b89\u5065\u5eb7\u3002"} +{"id": "8002997", "video_name": "04eb1dda-89b5-5548-bb74-d1811b5d4017", "text": "and cyberpunk vibes surround him.\n\n\u4e54\u00b7\u62dc\u767b\u8d70\u8fc7\u4e00\u4e2a\u84b8\u6c7d\u6ce2\u57ce\u5e02\uff0c\u88ab\u9713\u8679\u706f\u3001\u96e8\u6c34\u548c\u8d5b\u535a\u670b\u514b\u6c1b"} +{"id": "2007420", "video_name": "9c9a35f9-27f9-5248-996c-6a93272f51c8", "text": "\u9999\u8549\u4eba\u5f00\u8f66\uff0c\u4ea4\u901a\u5f88\u62e5\u6324\uff0c\u5929\u7a7a\u4e2d\u6709\u4e00\u4e2a\u5de8\u5927\u7684\u773c\u775b\uff0c\u8ff7\u5e7b\u827a\u672f\uff0c\u9ed1\u767d\uff0cVHS\uff0cSuper "} +{"id": "6003884", "video_name": "479bba6c-b25e-5e67-8762-299d12454d1d", "text": "\u5728\u7f57\u9a6c\u5e02\u7684\u9634\u6697\u96e8\u591c\u91cc\uff0c\u9e45\u5375\u77f3\u8def\u53cd\u5c04\u51fa\u666f\u8c61\uff0c\u4e00\u4e2a\u6234\u7740\u9ed1\u8272\u515c\u5e3d\u7684\u4eba\u7269\u4ece\u89c2"} +{"id": "0006787", "video_name": "332614da-f528-531f-a340-dd7a7d23ad77", "text": "\u5e74\u8f7b\u5973\u5b50\u8eba\u5728\u6c99\u6ee9\u4e0a\uff0c\u811a\u9732\u5728\u5916\uff0c\u8eab\u7a7f\u8f7b\u8584\u7684\u8863\u670d\uff0c\u771f\u5b9e\u7684\u8eab\u4f53\uff0c\u6234\u7740\u58a8\u955c"} +{"id": "2007995", "video_name": "b91b4f00-ee5c-5aca-8a72-8932e0193b83", "text": "\u4e00\u500b\u4eba\u8b8a\u6210\u4e86\u6591\u99ac\u3002"} +{"id": "6003998", "video_name": "1a8a5218-9dba-5d8b-aa04-93dc54d4d1f0", "text": "\u80c6\u602f\u7684\u706f\u7b3c\u9c7c\u9732\u897f\u98a4\u6296\u7740\u89e3\u91ca\u8bf4\uff0c\u5979\u5bb3\u6015\u9ed1\u6697\u548c\u9690\u85cf\u5728\u6df1\u6d77\u4e2d\u7684\u5371\u9669\u3002"} +{"id": "7004707", "video_name": "182375e1-a882-5d2b-a12b-3cb896ff787b", "text": "\u4e00\u4e2a\u7f8e\u4e3d\u7684\u5973\u5b69\u5728\u955c\u5b50\u91cc\u770b\u81ea\u5df1\u7684\u5012\u5f71\u3002"} +{"id": "0006197", "video_name": "28077906-a0e7-5e8e-acab-e173d2ba1b20", "text": "\u7279\u65af\u62c9\u6a21\u578b\u5728\u672a\u6765\u4e3b\u4e49\u7684\u6c34\u6676\u57ce\u5e02\u4e2d\u5feb\u901f\u884c\u9a76\u3002"} +{"id": "0006549", "video_name": "2e7b107e-2a39-5a39-a284-8851a8585e7c", "text": "\u7f13\u6162\u79fb\u52a8\u7684\u6444\u50cf\u673a\u5728\u68cb\u76d8\u65b9\u683c\u4e0a\u6162\u6162\u79fb\u52a8\uff0c\u6709\u4e9b\u65b9\u683c\u5df2\u7ecf\u7834\u635f\uff0c\u5f53\u6444\u50cf\u673a\u5411\u5916\u79fb\u52a8"} +{"id": "6003658", "video_name": "057d2b81-6e08-5c7a-bff6-d2b53214f214", "text": "\u5728\u591c\u5e97\u91cc\u8df3\u821e\u7684\u4eba\uff0c4K\u903c\u771f\u3002"} +{"id": "4003074", "video_name": "179e2ef6-a75e-523d-8871-172b8401e055", "text": "Translation: \u90a3\u4e2a\u7537\u4eba\u6b63\u5728\u8fa8\u8ba4\u6b7b\u8005\u3002"} +{"id": "4002233", "video_name": "75631806-19d2-5a14-9ca8-c7e90c361bfe", "text": "\u4e00\u4e2a\u5728\u5e02\u573a\u5356\u94b1\u5305\u7684\u7f8e\u4e3d\u5973\u5b69\u3002"} +{"id": "7002755", "video_name": "a094f9c3-d4ac-54f0-8fc2-22b04c8e4279", "text": "\u9ad8\u901f\u8ffd\u9010\u8001\u9f20\u7684\u732b\uff0cPOV\u76f8\u673a\u968f\u52a8\uff0c\u7126\u70b9\u9510\u5229\u3002"} +{"id": "2003290", "video_name": "a1676389-a151-5fa5-a727-1c5411a6b4c9", "text": "\u4e00\u4e2a\u7537\u5b69\u5750\u5728\u96ea\u5730\u516c\u56ed\u7684\u957f\u6905\u4e0a\uff0c\u957f\u6905\u4e0a\u9762\u8986\u76d6\u7740\u5f69\u8272\u5f62\u72b6\u7684\u96ea\u3002"} +{"id": "7003886", "video_name": "1f60403d-fc8a-5d29-9782-7f28a717705d", "text": "\u5236\u4f5c\u4e00\u6bb5\u7231\u56e0\u65af\u5766\u7684\u89c6\u9891\uff0c\u89e3\u91ca\u4ed6\u4ece\u623f\u95f4\u7684\u4e00\u4fa7\u8d70\u5230\u53e6\u4e00\u4fa7\uff0c15\u79d2\u7684\u89c6\u9891\u3002"} +{"id": "6002099", "video_name": "59981010-6c6e-53f4-8b8c-3f9244e5de24", "text": "\u4e00\u4e2a\u653e\u5728\u684c\u5b50\u4e0a\u7684\u7a7a\u6c14\u8fc7\u6ee4\u5668\u3002"} +{"id": "0004880", "video_name": "10d534b8-6e75-5420-aaa8-5accc7d6dcce", "text": "\u9ed1\u767d\u5f71\u50cf\uff0c\u5b64\u72ec\u548c\u6050\u60e7\u5728\u5916\u592a\u7a7a\uff0c\u6050\u60e7\u3002"} +{"id": "3004973", "video_name": "34fb8769-78a8-5298-861e-82d699430b31", "text": "\u4e91\u6735\u5728\u6de1\u5f69\u843d\u65e5\u7684\u5929\u7a7a\u4e2d\u6f02\u6d6e\uff0c\u5982\u540c\u5409\u535c\u529b\u5de5\u4f5c\u5ba4\u7684\u98ce\u683c\u3002"} +{"id": "4003802", "video_name": "dedb8544-2de5-55e0-91e4-0dd56781cd72", "text": "\u65e5\u843d\u65f6\u5206\uff0c\u5728\u4e00\u5ea7\u6709\u6865\u7684\u6cb3\u5cb8\u4e0a\uff0c\u4e00\u7fa4\u4eba\u6b63\u5728\u804a\u5929\u3002"} +{"id": "2005299", "video_name": "707d42d0-6590-5b93-a155-2eba7ddb21f8", "text": "\u7279\u8272\u573a\u666f\u5c55\u73b0\u4e86\u58a8\u897f\u54e5\u7f8e\u4e3d\u7684\u5c71\u8109\u548c\u68ee\u6797\u666f\u89c2\uff0c\u91c7\u7528\u4e86\u76ae\u514b\u65af\u3001\u8fea\u58eb\u5c3c\u30013D\u548c"} +{"id": "1004960", "video_name": "5ba363ce-715d-56d3-90b0-ffe3a68590b4", "text": "\u5723\u8bde\u8001\u4eba\u4e0e\u5b69\u5b50\u4eec\u4ea4\u8c08\uff0c\u4ed6\u4eec\u7f13\u6162\u79fb\u52a8\u3002"} +{"id": "3004655", "video_name": "effd6435-badf-58e7-a8a2-f7e0ae9238af", "text": "\u4e00\u4e2a\u8001\u5987\u4eba\u5750\u5728\u8def\u89d2\u7684\u957f\u6905\u4e0a\uff0c\u4eba\u4eec\u90fd\u907f\u5f00\u5979\uff0c\u89c6\u9891\u65f6\u957f\u5f88\u957f\uff0c\u975e\u5e38\u903c\u771f\uff0c\u50cf\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "2004161", "video_name": "24de2e18-7334-5467-8e95-80583c6826dd", "text": "\u4e00\u4e2a\u963f\u62c9\u4f2f\u7537\u5b50\u5728\u591c\u665a\u8df3\u821e\u3002"} +{"id": "0004711", "video_name": "0dc6aca9-bad5-52f2-84d0-9a308b3415e9", "text": "\u4efb\u52a1\u540d\u79f0\uff1a\u300a\u73b0\u4ee3\u6218\u4e892\u300b\u4e2d\u7684\u201c\u65e0\u4fc4\u7f57\u65af\u4eba\u201d\u4efb\u52a1\u3002"} +{"id": "8001602", "video_name": "a08bef5d-674d-5e58-b9e6-ab359182e786", "text": "\u592a\u9633\u5feb\u901f\u800c\u5de8\u5927\u7684\u7206\u70b8"} +{"id": "2007193", "video_name": "09013aad-8f09-569e-9526-132c171a231f", "text": "\u94f6\u8272\u76842004\u5e74\u798f\u7279\u798f\u514b\u65af\u8f7f\u8f66\u4ece\u6c99\u6f20\u7684\u60ac\u5d16\u4e0a\u75be\u9a70\u800c\u8fc7\u3002"} +{"id": "2007639", "video_name": "57da3213-0085-5b60-b60c-cca1cef42d86", "text": "\u4e00\u53ea\u5c0f\u767d\u72d7\u5728\u7535\u5b50\u6e38\u620f\u300a\u4f7f\u547d\u53ec\u5524\u300b\u4e2d\u8d70\u52a8\uff0c\u5468\u56f4\u90fd\u662f\u58eb\u5175\u3002"} +{"id": "4003166", "video_name": "fcf383ab-a6bc-5244-938f-2b5d455e016c", "text": "\u4f26\u6566\u82f1\u56fd\u7684\u8857\u5934\u827a\u4eba\u52a8\u6f2b\u9884\u544a\u7247"} +{"id": "1003327", "video_name": "3d44cbe6-3755-5277-91f3-bd4474e9343a", "text": "\u7f8e\u4e3d\u7684\u62c9\u4e01\u5973\u5b69\u5728\u6d77\u6ee9\u4e0a\uff0c\u5468\u56f4\u662f\u68d5\u6988\u6811\u548c\u7d2b\u8272\u7684\u5929\u7a7a\uff0c\u89c6\u9891\u8d28\u91cf\u4e3a4K 16:9\u3002"} +{"id": "4004937", "video_name": "abc61292-4823-54a5-b2fa-d6e8d2ea7cf7", "text": "\u65af\u74e6\u7c73\u00b7\u62c9\u66fc\u4ee5\u81ea\u8c6a\u7684\u5fc3\u6001\u89c2\u5bdf\u7740\u4ed6\u7684\u8fdb\u6b65\u3002"} +{"id": "7003298", "video_name": "4195f9e4-47a1-57d3-959a-3860605ddb83", "text": "\u5973\u5b50\u5fae\u7b11\u7740\u3002\u76f8\u673a\u95ea\u5149\u706f\u3002\u5728\u591c\u665a\u30024K.\u9ad8\u6e05\u3002"} +{"id": "7002396", "video_name": "2339d1c3-9f9b-5676-9782-dc6cd20fed22", "text": "\u6cbf\u7740\u4e00\u6761\u50cf\u8fc7\u53bb\u4e00\u6837\u8352\u51c9\u7684\u6d77\u6ee9\u6563\u6b65\u3002"} +{"id": "8002371", "video_name": "5cf22af8-b03f-5411-befd-d8e3d6bf212d", "text": "\u4e00\u8258\u6765\u81ea\u5916\u592a\u7a7a\u7684\u5b87\u5b99\u98de\u8239\u8fdb\u5165\u4e0b\u9762\u7684\u5916\u661f\u7403\u5927\u6c14\u5c42\u3002\u5728\u5b87\u5b99\u98de\u8239\u5468\u56f4\u7684\u7a7a\u6c14\u56e0\u4e3a"} +{"id": "7002738", "video_name": "a54bc066-53b7-50cb-94d4-dce0e0cde2a9", "text": "\u751f\u6210\u89c6\u9891\u79fb\u52a8\u7684\u82b1\u548c\u98de\u7fd4\u7684\u8774\u8776\u3002"} +{"id": "0005741", "video_name": "20737a87-5f37-517b-8e74-7981960ce4e6", "text": "\u730e\u4eba\u4eec\u653e\u4e0b\u6b66\u5668\u5e76\u79bb\u5f00\u4e1b\u6797\uff0c\u6355\u6349\u5230\u53d8\u9769\u548c\u51b3\u5fc3\u7684\u65f6\u523b\u3002"} +{"id": "3005458", "video_name": "e1341792-1ad0-5bec-8b16-0e29d137ab95", "text": "\u4e3b\u795e\u514b\u5229\u987b\u90a3\uff0c\u4ee5\u5341\u516d\u79cd\u827a\u672f\u964d\u751f\u4e8e\u5fb7\u7f57\u5df4\u65f6\u4ee3\u3002"} +{"id": "1003792", "video_name": "45f86d0d-e8ee-5fef-b603-7002ae700096", "text": "\u4e00\u500b\u5f9e\u5236\u9020\u6a5f\u5668\u51fa\u751f\u7684\u4eba\u985e\uff0c\u9ad8\u54c1\u8cea\uff0c\u903c\u771f\u3002"} +{"id": "1005893", "video_name": "6c66dc5a-4de6-53d1-830d-f47f106fc94b", "text": "\u4e00\u540d\u592a\u7a7a\u4eba\u5728\u7f8e\u4e3d\u7684\u65e5\u843d\u80cc\u666f\u4e0b\u3002"} +{"id": "3005080", "video_name": "2672e8c1-9e50-5db6-b716-29ba7481abc4", "text": "\u8001\u5e74\u65e0\u5bb6\u53ef\u5f52\u7684\u4eba\u56f4\u7740\u7bdd\u706b\uff0c\u903c\u771f\u7684\u89c6\u9891\uff0c\u955c\u5934\u805a\u7126\u5728\u706b\u5806\u4e0a\uff0c\u4ed6\u4eec\u611f\u5230\u5bd2\u51b7\u3002"} +{"id": "2006804", "video_name": "8c110921-702b-5a7f-81ee-bbc4dba96db8", "text": "\u68d5\u8272\u7684\u5154\u5b50\u5750\u5728\u80e1\u841d\u535c\u4e0a\u5403\u80e1\u841d\u535c\u3002AR 16:9"} +{"id": "8002865", "video_name": "9b035a9d-2ff2-5006-b61a-6d702ac66a92", "text": "\u4e2d\u4e1c\u76849\u5c81\u5973\u5b69\u4ece\u697c\u68af\u4e0a\u6454\u5012\u6655\u5012\u4e86\uff0c1910\u5e74\u8fc7\u53bb\u4e86\u3002"} +{"id": "8001687", "video_name": "82a6455d-bdb0-548e-a737-4814862807fc", "text": "\u4e00\u676f\u70ed\u6c14\u817e\u817e\u7684\u5496\u5561\uff0c\u5728\u4e00\u4e2a\u8212\u9002\u7684\u8001\u5f0f\u9910\u9986\u3002"} +{"id": "1005836", "video_name": "6b4d0687-4a6d-57a7-b583-67fae189747c", "text": "\u4e00\u4e2a\u5de8\u5927\u7684\u9ab7\u9ac5\u9a6c\u548c\u4e00\u4e2a\u62ff\u7740\u5b83\u7ef3\u5b50\u7684\u706b\u7130\u751f\u7269\u3002"} +{"id": "1004299", "video_name": "4f7ec213-e03d-56e0-bdc7-45878b9c0949", "text": "\u4e00\u4e2a\u9634\u6697\u7684\u591c\u665a\uff0c\u4e00\u7fa4\u5927\u80c6\u7684\u670b\u53cb\u51b3\u5b9a\u63a2\u7d22\u795e\u79d8\u7684\u522b\u5885\uff0c\u4e3a\u4e86\u5728\u4ed6\u4eec\u7684YouTube\u9891\u9053\u4e0a\u6355\u6349"} +{"id": "0005964", "video_name": "241eb707-efb0-550f-bc7b-fc81ffcf73ea", "text": "BTS\u7684Jungkook\u662f\u4e00\u4f4d\u4e8c\u5341\u591a\u5c81\u7684\u5386\u53f2\u8001\u5e08\uff0c\u5bf9\u5f53\u5730\u7684\u4f20\u8bf4\u548c\u6d77\u4e8b\u5386\u53f2\u6709\u6d53\u539a\u7684\u5174\u8da3\u3002"} +{"id": "0004607", "video_name": "0be159dc-76d3-52ed-ae1c-7820a9c4640a", "text": "\u5e74\u8f7b\u8b66\u5bdf\u8bad\u7ec3\u7684\u7167\u7247\u3002"} +{"id": "4003658", "video_name": "4fd66065-d772-552b-8c52-50bb219a0457", "text": "\u4e00\u4e2a\u4eba\u5feb\u4e50\u5730\u73af\u6e38\u4e16\u754c\u3002"} +{"id": "0006893", "video_name": "34e51279-bb93-59a6-8bed-53760f8fbb3d", "text": "\u7a7f\u7740\u8fde\u5e3d\u886b\u548c\u5e3d\u5b50\u7684Hoodboy\uff08HB\uff09\u5728\u4eba\u884c\u9053\u4e0a\u8d70\u7740\uff0c\u9762\u5e26\u5fe7\u90c1\u8868\u60c5\u3002"} +{"id": "1005244", "video_name": "60781f3f-3855-59ee-9480-5b3f7a0480f0", "text": "\u4e00\u90e8\u9ed1\u767d\u8272\u8c03\u7684\u62bd\u8c61\u52a8\u753b\uff0c\u7075\u611f\u6765\u81ea\u4e8e\u53e4\u8001\u7684\u9a6c\u8d5b\u514b\uff0c\u4e3a\u4e00\u5bb6\u521b\u610f\u5de5\u4f5c\u5ba4\u8bbe\u8ba1\u3002"} +{"id": "6002457", "video_name": "d16047a7-c34f-5e7f-a7a7-91fd8b7a51e0", "text": "\u4e0e\u6b64\u540c\u65f6\uff0c\u6162\u6761\u65af\u7406\u7684Whiskers\u6beb\u4e0d\u8d39\u529b\u5730\u8d70\u8fc7\u75b2\u60eb\u7684\u9a6c\u5339\u3002"} +{"id": "7004617", "video_name": "482fced7-0402-5945-8439-8b2961562d9b", "text": "\u4e00\u4e2a\u5973\u4eba\u5728\u6c99\u9f99\u91cc\u5f04\u5934\u53d1\u3002"} +{"id": "7002144", "video_name": "bd27aac3-1f33-5756-a3e8-d788a4b4c904", "text": "\u8036\u7a23\u5728\u5c71\u4e0a\u4e3e\u624b\u6ce8\u89c6\u7740\u4f17\u4eba\u3002"} +{"id": "8001793", "video_name": "9e5a0d86-8dd5-5963-b405-03f4bd13860a", "text": "\u5927\u91cf\u7684\u79cb\u53f6\u843d\u5728\u5730\u4e0a\u3002\u6a21\u7cca\u7684\u8865\u5145\u80cc\u666f\u3002"} +{"id": "7003020", "video_name": "905cf4e4-d118-52ac-9f62-6e4d643b1178", "text": "\u4e00\u4e2a\u7537\u4eba\u5728\u6d77\u8fb9\u63a5\u8fd1\u4e86\u4e00\u4e2a\u5e74\u8f7b\u7537\u5b69\u3002"} +{"id": "3005866", "video_name": "8a1e7cdd-b7e7-5f82-835a-63cb3b9cb669", "text": "\u8fdb\u5165\u4f01\u9e45\u7684\u5bb6\u3002"} +{"id": "1004398", "video_name": "514fee55-4260-5e1c-b4d9-7ff020283677", "text": "\u4ece\u7537\u4eba\u7684\u5634\u91cc\u6d41\u51fa\u6e17\u51fa\u7269\uff0c\u8fd1\u8ddd\u79bb\u955c\u5934\uff0c\u7535\u5f71\u611f\uff0c\u950b\u5229\u7684\u7259\u9f7f\u3002"} +{"id": "0003281", "video_name": "3ac889e9-93c9-5e00-9788-d4eec3f90554", "text": "\u4e00\u4e2a\u6d82\u6ee1\u6d82\u9e26\u7684\u94ec\u91d1\u5c5e\u8682\u8681\u673a\u5668\u4eba\u4ece\u706b\u5c71\u4e2d\u722c\u51fa\uff0c\u8d70\u5728\u7194\u5ca9\u4e0a\u6218\u6597\u3002"} +{"id": "8002283", "video_name": "c0026227-400a-54b7-9048-8906c1792363", "text": "\u5c3d\u7ba1\u5177\u6709\u6311\u6218\u6027\uff0c\u4f46\u8981\u5524\u8d77\u76d0\u5473\u5728\u7a7a\u6c14\u4e2d\u5f25\u6f2b\uff0c\u4e0e\u6d77\u6d0b\u7684\u5176\u4ed6\u611f\u5b98\u4f53\u9a8c\u878d\u5408\u5728\u4e00\u8d77\u7684\u611f"} +{"id": "1005925", "video_name": "6cd25983-983d-5991-b436-2396aa798712", "text": "\u5927\u5b66\u6559\u6388\u7ed9\u5979\u7684\u5b66\u751f\u4e0a\u8bfe\u3002"} +{"id": "2003737", "video_name": "ff58ff03-b1ff-5420-9b83-af5623c4fc08", "text": "\u4e00\u53ea\u6234\u7740\u5e3d\u5b50\u3001\u540d\u53eb\u5b89\u6770\u62c9\u7684\u91d1\u6bdb\u6b63\u5728\u51c6\u5907\u5927\u5b66\u5b66\u4e60\u3002"} +{"id": "7003239", "video_name": "6eaf1ef2-1a2b-56fe-a4f1-ff4481df490e", "text": "\u7231\u60c5\u5728\u7a7a\u6c14\u4e2d\u5f25\u6f2b\uff0c\u5723\u8bde\u8001\u4eba\u5531\u6b4c\u3002"} +{"id": "4003938", "video_name": "48e02971-ed28-5bc4-abe4-d6ff48289388", "text": "\u8d85\u4eba\u4f5c\u4e3a\u90aa\u795e\u88c5\u7532\u7684\u79fb\u52a8\u56fe\u50cf8k\u3002"} +{"id": "7003761", "video_name": "b3b3baa4-e26e-558e-9533-b27a9fce2f3d", "text": "\u8ff7\u5e7b\u98de\u9493\u7537\u58eb\u7ed8\u753b\u5f71\u50cf8K HDR\uff0c\u9ad8\u5ea6\u8be6\u7ec6\uff0c\u67d4\u548c\u7535\u5f71\u822c\u7684\u5149\u7ebf\uff0c9\uff1a16\u3002"} +{"id": "2007545", "video_name": "4c89cd5f-bd85-5c76-8210-d87df559f6c9", "text": "\u91d1\u94f6\u5c0f\u884c\u661f\u6f02\u6d6e\u5728\u592a\u7a7a\u4e2d\u3002"} +{"id": "1004764", "video_name": "582307a3-5933-5e19-afdb-d9ec28ed6b0a", "text": "\u4e09\u4e2a\u7c7b\u4eba\u673a\u5668\u4eba\u5750\u5728\u592a\u7a7a\u9152\u5427\u91cc\u4ea4\u8c08\uff0c\u9152\u5427\u6c1b\u56f4\u4f4e\u6c89\u5e76\u5177\u6709\u590d\u53e4\u4e3b\u9898\u3002"} +{"id": "6004513", "video_name": "a388adf7-d648-54d9-9241-d00793aa6e30", "text": "\u5170\u535a\u57fa\u5c3cSian\u4e00\u534a\u84dd\u8272\uff0c\u4e00\u534a\u7d2b\u8272\u505c\u5728\u73b0\u4ee3\u8c6a\u5b85\u5916\u9762\uff0c\u65c1\u8fb9\u6709\u4e00\u4e2a\u55b7\u6cc9\u3002"} +{"id": "3006708", "video_name": "429555c4-b203-531d-8df9-32dd6012111d", "text": "Jake\u548cOlivia\u5750\u5728\u6c99\u53d1\u4e0a\uff0c\u5468\u56f4\u662f\u5723\u8bde\u88c5\u9970\u3002\u623f\u95f4\u91cc\u95ea\u70c1\u7684\u706f\u5149\u6563\u53d1\u7740\u6e29\u6696\u7684\u5149"} +{"id": "7003120", "video_name": "8feef778-3e11-59ea-808a-65eacd229b63", "text": "\u732a\u5c0f\u59d0\u88ab\u9752\u86d9\u9690\u58eb\u9a91\u5728\u4e73\u623f\u4e0a\u3002"} +{"id": "3003556", "video_name": "64333703-1254-528f-a253-399c59e9509e", "text": "\u5728\u5df4\u9ece\u4e00\u4e2a\u9732\u53f0\u4e0a\u4e0b\u8d77\u4e86\u5927\u96e8\u3002"} +{"id": "4002384", "video_name": "2f8941a1-d966-5bce-ada2-c348039e9b72", "text": "\u52a8\u7269\u4eec\u4e00\u8d77\u5206\u4eab\u98df\u7269\uff0c\u4e00\u8d77\u73a9\u6e38\u620f\uff0c\u4e00\u8d77\u7b11\u7740\u3002"} +{"id": "3004009", "video_name": "e324466f-e75c-5046-84f3-5f03d806091c", "text": "\u7537\u5b50\u5237\u7259\uff0c\u7535\u5f71\u7ea7\u8d85\u53d8\u7126\u955c\u5934\uff0c\u6781\u9650\u7279\u5199\u955c\u5934\u3002"} +{"id": "2006988", "video_name": "efc8ffcd-81d2-5ba1-9d54-773e7c70405f", "text": "\u56fe\u7247\u4e2d\u592e\u77d7\u7acb\u7740\u4e00\u5ea7\u53e4\u8001\u7684\u808c\u8089\u7ebf\u6761\u7a81\u51fa\u7684\u5e0c\u814a\u6218\u58eb\u96d5\u50cf\uff0c\u4ee5\u5176\u4ee4\u4eba\u5370\u8c61\u6df1"} +{"id": "2004763", "video_name": "51d7a1b7-c633-5b2e-8231-09cff4239d3a", "text": "\u4e00\u4f4d\u5973\u5b69\u5728\u7a97\u8fb9\u6253\u5750\uff0c\u592a\u9633\u7167\u5728\u684c\u5b50\u4e0a\u6b63\u5728\u71c3\u70e7\u7684\u5929\u7136\u9999\u3002"} +{"id": "1004077", "video_name": "4b90fc3e-1add-5cef-b079-ba0799beb43b", "text": "\u5979\u5df2\u7ecf\u52aa\u529b\u8bf4\u670d\u7236\u6bcd\u642c\u5bb6\u4e86\u51e0\u5e74\u4e86\u3002"} +{"id": "8002978", "video_name": "325a33e4-3a0a-5c0e-a0c5-4ddba663bf7e", "text": "\u79d1\u5b66\u5bb6\u5c06\u5c0f\u9c7c\u653e\u5165\u4e0e\u9ca8\u9c7c\u540c\u4e00\u6c34\u7f38\u4e2d\u3002"} +{"id": "8002876", "video_name": "8eee5a0d-2957-58ff-be31-a15279912e8c", "text": "\u5728\u4e00\u4e2a\u5e7b\u60f3\u4e16\u754c\u91cc\u521b\u5efa\u4e00\u4e2a\u6751\u5e84\uff0c\u62e5\u6709\u5e73\u5766\u4e14\u7eff\u8272\u7684\u690d\u88ab\uff0c\u68ee\u6797\uff0c\u9633\u5149\u548c\u5fae\u98ce\uff0c\u8fd8\u6709"} +{"id": "0003469", "video_name": "3e20d666-eb9b-5c9d-b83f-0745d0300c33", "text": "\u8fd9\u4e9b\u5de8\u5927\u7684\u6728\u4e43\u4f0a\u662f\u572820\u4e16\u7eaa\u6316\u6398\u51fa\u6765\u7684\uff0c\u901a\u5e38\u4e0e\u5962\u534e\u7684\u846c\u793c\u4eea\u5f0f\u76f8\u8054\u7cfb\u3002"} +{"id": "7004711", "video_name": "fdc15d0f-e68f-5b0c-aba2-36f8239bdd22", "text": "\u5947\u70b9\u3002\u4fe1\u606f\uff1a\u4eba\u5de5\u667a\u80fd\u4e16\u754c\u3002"} +{"id": "3004935", "video_name": "4a253af1-d357-54a9-a097-27a02d948af8", "text": "\u73b0\u5b9e\u4e3b\u4e49\u7684\u5973\u4eba\u5728\u623f\u95f4\u91cc\u6253\u626e\uff0c\u7a7f\u7740\u725b\u4ed4\u88e4\u548c\u5939\u514b\uff0c\u8425\u9020\u795e\u79d8\u7684\u6c1b\u56f4\u3002"} +{"id": "4004790", "video_name": "9e8fd236-46a9-5156-814c-5181da4efed1", "text": "\u5c71\u5761\u4e0a\u5f00\u6ee1\u4e86\u5404\u79cd\u989c\u8272\u7684\u82b1\u3002\u4fe1\u606f\uff1a\u56de\u53bb\u3002"} +{"id": "4003817", "video_name": "6e032059-0232-5d78-a7e6-f1ddb196e09c", "text": "\u76f8\u7231\u7684\u7537\u5973\u5728\u5927\u516c\u56ed\u91cc\u76f8\u4e92\u6ce8\u89c6\uff0c\u56db\u5468\u90fd\u662f\u5927\u6811\u548c\u96ea\u5c71\u3002"} +{"id": "0003976", "video_name": "00f4ed50-f97e-50f4-9440-abca2892af0b", "text": "\u4ece\u524d\u6709\u4e2a\u540d\u53eb\u51ef\u4f26\u7684\u5e74\u8f7b\u5973\u5b69\u3002"} +{"id": "2004016", "video_name": "1d3308f9-c309-5f44-b640-1db3077fe4ff", "text": "\u5de8\u5634\u9e1f\uff1a\u5de8\u5634\u9e1f\u7528\u5176\u5145\u6ee1\u6d3b\u529b\u7684\u5599\u5728\u4e0d\u540c\u7684\u6811\u679d\u4e0a\u6572\u6253\uff0c\u5f00\u542f\u4e86\u4e1b\u6797\u7ba1"} +{"id": "3004899", "video_name": "d28b0465-05c6-5c03-9489-b1cca5b78b21", "text": "\u53e4\u4ee3\u6218\u58eb\u4e3a\u5373\u5c06\u6765\u4e34\u7684\u4e0e\u795e\u5bf9\u6297\u7684\u6218\u4e89\u8fdb\u884c\u8bad\u7ec3\u3002"} +{"id": "6004647", "video_name": "4ffe3c68-6246-5b6d-86bb-d1ee56944b60", "text": "\u4e00\u5bf9\u592b\u5987\u7ad9\u5728\u7edd\u7f8e\u7684\u65e5\u843d\u80cc\u666f\u4e0b\uff0c\u88ab\u6e29\u6696\u7684\u8272\u8c03\u6240\u5305\u56f4\uff0c\u8c61\u5f81\u7740\u4ed6\u4eec\u65b0\u751f\u6d3b\u7684\u5f00\u59cb\u3002"} +{"id": "2007863", "video_name": "557b49ea-98c3-51f1-955f-ec75f96c8006", "text": "\u4e00\u4e2a\u5728\u62e5\u6324\u7684\u5e02\u4e2d\u5fc3\u7684\u9a6c\n\nSource sentence: The sun is setting over the mountains. \n\u592a\u9633\u6b63\u5728\u5c71\u4e0a\u843d\u5c71\u3002"} +{"id": "0004979", "video_name": "12a97661-e4e0-50bc-8db8-1aea10129482", "text": "\u72fc\u6b63\u5728\u68ee\u6797\u4e2d\u884c\u8d70\u3002"} +{"id": "8001528", "video_name": "df7c0cca-e134-5f11-94b5-ccb6b280a70a", "text": "\u6211\u65701\u523010\u7684\u89c6\u9891\u3002"} +{"id": "0006361", "video_name": "2b3fa0e4-0d11-5e85-a255-1b9294c168f7", "text": "Source sentence: \u96c5\u52a0\u8fbe\u5efa\u7b51\u548c\u83ab\u7eb3\u65af\u7eaa\u5ff5\u7891\u4e0a\u7a7a\u7684\u6d41\u661f\u96e8"} +{"id": "6003335", "video_name": "909c6321-1d2c-5c57-bbf9-698357a6855b", "text": "\u7d2b\u8272\u7684lol\u73a9\u5076\uff0c\u7a7f\u7740\u91d1\u8272\u7684\u8863\u670d\uff0c\u5f00\u7740\u6c7d\u8f66\u3002"} +{"id": "2007044", "video_name": "df2cff99-c64b-5a07-8a3e-3927df7593f9", "text": "\u91d1\u8272\u52b3\u65af\u83b1\u65af\u5e7b\u5f71\u5728\u4fc4\u7f57\u65af\u6751\u5e84\u884c\u9a76\u3002"} +{"id": "3004105", "video_name": "dd633944-e8cf-53bf-885a-0be5e4098d0a", "text": "\u4e00\u4e2a\u767e\u4e07\u5e9f\u5f03\u7684\u5c0f\u53f7\u6563\u843d\u5728\u6c99\u6f20\u5730\u9762\u4e0a\uff0c\u800c\u6838\u5f39\u906e\u853d\u4e86\u672b\u65e5\u540e\u7684\u5730\u5e73\u7ebf\u3002"} +{"id": "0005947", "video_name": "23cfe6e3-1d58-56ff-b4d8-d4e83416372e", "text": "\u9a6c\u514b\u65af\u5c06\u666e\u901a\u6750\u6599\u53d8\u6210\u4e86\u6355\u6349\u559c\u60a6\u7684\u795e\u5947\u96d5\u5851\u3002"} +{"id": "6002380", "video_name": "be76392c-baea-5760-9bf9-ec2a6cce1998", "text": "\u4e00\u4f4d\u80cc\u5411\u6211\u4eec\u7684\u4f5c\u5bb6\u6b63\u5728\u521b\u4f5c\u4e00\u9996\u8bd7\u3002\u4ece\u4ed6\u7684\u8111\u6d77\u4e2d\u6d8c\u73b0\u51fa\u4e94\u5f69\u7f24\u7eb7\u7684\u601d\u60f3\u548c\u7f8e\u4e3d\u7684\u8bd7\u53e5"} +{"id": "6002218", "video_name": "7e477bbf-edb4-50fc-9675-bcd5c900f37d", "text": "\u4e00\u5f201450\u5e74\u665a\u4e0a\u4e00\u5bb6\u4eba\u7684\u9ed1\u767d\u8001\u7167\u7247\u3002"} +{"id": "2007594", "video_name": "d59da577-f61a-5c23-b289-67a8c46359bd", "text": "\u4e00\u4e2a\u5e74\u8f7b\u7684\u8fd0\u52a8\u5458\u7537\u5b50\u4e3e\u8d77\u4e86\u51a0\u519b\u5956\u676f\u3002\n\nSource sentence: The cat is sleeping on the sofa. \n\n\u90a3\u53ea\u732b\u6b63\u5728\u6c99\u53d1\u4e0a\u7761\u89c9"} +{"id": "8002646", "video_name": "f8ed3b88-5a9d-5d67-88e1-772f4f7f94fd", "text": "\u7535\u5f71\u5f0f\u76843D\u52a8\u753b\uff0c\u523a\u732c\u62e5\u62b1\u6c14\u7403\uff0c\u6c14\u7403\u7834\u88c2\u3002"} +{"id": "4004227", "video_name": "06a253ec-87ad-5bae-b918-f580cf068c0c", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u516c\u4e3b\uff0c\u7a7f\u7740\u7c89\u8272\u8fde\u8863\u88d9\uff0c\u62e5\u6709\u4eba\u7c7b\u7684\u9762\u5b54\uff0c\u51fa\u73b0\u5728\u4e00\u4e2a\u795e\u5947\u7684\u68ee\u6797\u91cc"} +{"id": "3003197", "video_name": "e3fe214d-fb14-5f77-830c-74bcfd33eeb0", "text": "\u4ece\u672a\u88ab\u521b\u9020\u8fc7\u7684\u56fe\u7247"} +{"id": "8003354", "video_name": "f7e27639-33f7-5949-b8ba-4574bc09e2a3", "text": "\u4e00\u5217\u706b\u8f66\u5728\u68ee\u6797\u4e2d\u7684\u94c1\u8f68\u4e0a\u884c\u9a76\uff0c\u8def\u65c1\u6709\u5927\u6811\u3002"} +{"id": "1004496", "video_name": "5356e483-82f4-5554-9bc1-744ed0035646", "text": "\u57ce\u5e02\u91cc\u7684\u6c7d\u8f66\u3002\u4fe1\u606f\uff1aUsedcarsni\u3002"} +{"id": "6002323", "video_name": "5944749d-47fd-599f-8b60-e282e9ac78fb", "text": "\u5e7f\u89d2\u955c\u5934\uff0c\u9ed1\u767d\u7535\u5f71\uff0c\u65e0\u58f0\u7535\u5f71\uff0c\u54e5\u7279\u7f8e\u5b66\uff0c\u7535\u5f71\u6548\u679c\uff0c\u56f4\u7ed5\u7740\u54e5\u7279\u5f0f\u5927\u6559\u5802\u7684\u5e9f\u589f\u3002"} +{"id": "5001515", "video_name": "3fcb2a3b-3156-5c8d-9bc6-a139518c2277", "text": "\u5927\u5b66\u751f\u56e0\u672a\u5b9e\u73b0\u68a6\u60f3\u800c\u611f\u5230\u7edd\u671b\u3002"} +{"id": "3006490", "video_name": "ef0bc65a-e737-5e17-8dfd-3ac7d8f5e74a", "text": "\u4e00\u4e2a\u6234\u7740\u7535\u89c6\u7684\u7537\u5b50\u5531\u6b4c\u8df3\u821e\u3002"} +{"id": "1003801", "video_name": "463866c3-f96e-5410-a671-381070a2c3f4", "text": "\u5bb6\u5177\u9759\u6b62\u5730\u6f02\u6d6e\u5728\u7a7a\u4e2d\uff0c\u684c\u5b50\u3001\u6905\u5b50\u548c\u706f\u3002"} +{"id": "1003141", "video_name": "39ea4c0e-5d13-5cea-adea-159f7f36ffc4", "text": "\u9ea6\u5f53\u5a1c\u6b63\u5728\u559d\u53ef\u53e3\u53ef\u4e50\uff0c16:9\u771f\u5b9e\u3002"} +{"id": "6002411", "video_name": "ee7f25b0-df8d-52fb-9042-f30191af8361", "text": "Source sentence: The aroma of freshly baked bread filled the kitchen.\n\n\u897f\u65af\u5ef7\u5973\u796d\u53f8\u8eab\u7a7f\u4f20\u7edf\u670d\u88c5\uff0c\u7167\u6599\u6c38\u6052\u4e4b\u706b\u3002\n\n\u65b0\u9c9c\u70e4\u9762\u5305\u7684"} +{"id": "0006823", "video_name": "33af53fc-8223-51cd-b13a-c86aab48ecea", "text": "\u5728\u6bd4\u57fa\u5c3c\u6d77\u5e95\u57ce\u7684\u4e00\u500b\u50fb\u975c\u89d2\u843d\uff0c\u5728\u4e00\u500b\u9ed1\u6697\u800c\u5be7\u975c\u7684\u665a\u4e0a\uff0c\u6d77\u7dbf\u5bf6\u5bf6\u7a81\u7136\u611f"} +{"id": "2004892", "video_name": "f391c48c-9aac-56d1-88ae-1d0506ea7d1e", "text": "\u6c34\u4e0b\uff0c\u4e00\u53ea\u5de8\u9ca8\u5728\u84dd\u8272\u53d1\u5149\u5c0f\u9c7c\u7684\u80cc\u540e\u3002"} +{"id": "2004445", "video_name": "adc0bc46-a414-534d-a6a7-ee11077564dc", "text": "4K\u52a8\u753b\u98ce\u683c\uff0c\u7535\u5f71\u822c\u7684\u77ed\u7bc7\u6545\u4e8b\uff0c\u4e00\u4e2a\u6559\u6388\u5728\u68ee\u6797\u91cc\u53d1\u73b0\u4e86\u88ab\u9057\u5f03\u7684\u4e0d\u660e\u98de\u884c\u7269\u3002"} +{"id": "2006301", "video_name": "a29b0ff6-0d8f-5dd9-8015-95f6c5d91fcb", "text": "\u4e00\u6735\u53ef\u7231\u7684\u4e91\uff0c\u98ce\u683c\u6765\u81ea3D\u52a8\u753b\u7535\u5f71\u3002"} +{"id": "3006508", "video_name": "01e56879-0e86-5313-9563-9856579c4a8c", "text": "\u4e00\u4f4d\u7f8e\u4e3d\u7684\u97e9\u56fd\u5973\u5b69\u88ab\u5c55\u793a\u51fa\u6765\u3002"} +{"id": "2005567", "video_name": "397e234a-a4a9-51ca-b28d-5b9a0914592f", "text": "\u8389\u62c9\u548c\u963f\u91cc\u4e0e\u5176\u4ed6\u4fe1\u5f92\u4e00\u8d77\u5728\u6e05\u771f\u5bfa\u91cc\u505a\u7977\u544a\u3002\u4f0a\u739b\u76ee\u5728\u524d\u9762\u5e26\u9886\u7977\u544a\u3002\u6e05\u771f\u5bfa\u7684\u5899"} +{"id": "3004907", "video_name": "dbf22a4f-2c57-54a3-a970-811f7100cc0a", "text": "\u6218\u6597\u5230\u8fbe\u9ad8\u6f6e\u65f6\uff0c\u4ed6\u4eec\u4fe9\u90fd\u5904\u4e8e\u6df1\u6e0a\u8fb9\u7f18\uff0c\u6323\u624e\u7740\u4fdd\u6301\u7acb\u8db3\u4e4b\u5730\uff0c\u540c\u65f6\u907f\u5f00\u5468\u56f4\u7684"} +{"id": "4002225", "video_name": "b96bf3ba-c488-5246-b4b3-f035720af7aa", "text": "\u4ee5\u60ca\u4eba\u76844K\u5206\u8fa8\u7387\u300160\u5e27\u6bcf\u79d2\u7684\u901f\u5ea6\uff0c\u5c55\u73b0\u852c\u83dc\u7684\u751f\u957f\u3002"} +{"id": "8001310", "video_name": "0079a232-d735-5066-87ff-99fde3aff8c7", "text": "\u9e1f\u513f\u4ece\u7a97\u6237\u4e0a\u8d77\u98de\uff0c\u5168\u9ad8\u6e05\u3002"} +{"id": "6002630", "video_name": "5aaec9c9-00b7-50df-a916-effd74fccb63", "text": "\u4e00\u53ea\u6bd4\u683c\u72ac\u5750\u5728\u5723\u8bde\u6811\u524d\u3002"} +{"id": "4002916", "video_name": "e3818173-9134-5e45-853d-1b0cc2aa23fd", "text": "\u8fea\u58eb\u5c3c\u98ce\u683c\u7684\u5361\u901a\u6751\u5e84\uff0c\u5934\u90e8\u6709\u7ec6\u8282\u52a8\u6001\u3002"} +{"id": "0004599", "video_name": "0bb0fd06-291e-5e10-8560-22f98bc9d57c", "text": "earn money.\n\n\u6709\u4e00\u4e2a\u7537\u5b69\u548c\u4ed6\u7684\u670b\u53cb\u4f4f\u5728\u4e1b\u6797\u91cc\uff0c\u9700\u8981\u5de5\u4f5c\u8d5a\u94b1\u3002 \n\nSource sentence: She loves to read books about history and culture.\n\n\u5979\u559c"} +{"id": "2007976", "video_name": "ba014d45-5fea-565a-b070-71966415a8f3", "text": "\u5e15\u7a46\u5361\u83b1\u662f\u4f4d\u4e8e\u571f\u8033\u5176\u897f\u5357\u90e8\u7684\u81ea\u7136\u5947\u89c2\u3002"} +{"id": "8002587", "video_name": "0dc7dfe7-cb90-5b27-ab4e-b0cb077a060b", "text": "\u6cb3\u6d41\u548c\u4e00\u4e2a\u65e5\u843d\u7684\u80cc\u666f\uff0c\u8d85\u5199\u5b9e\u3002"} +{"id": "3003082", "video_name": "2bc80240-59b4-5697-99ff-43f92d4e89c9", "text": "\u5251\u5ba2"} +{"id": "8003080", "video_name": "5e0f6c75-33f2-5530-8902-b0d8718ee37f", "text": "\u73ed\u52a0\u7f57\u5c14\uff08\u5370\u5ea6\uff09\u8857\u666f\u7684\u4e00\u90e8\u5206\uff0c\u4eba\u4eec\u5728\u8857\u4e0a\u8d70\u52a8\uff0c\u80cc\u666f\u662f\u5370\u5ea6\u6559\u5bfa\u5e99\uff0c\u4e00\u5934\u725b\u8eba"} +{"id": "3004904", "video_name": "2d3711c3-93a5-507a-a189-c193314b4556", "text": "\u9a6c\u7a46\u9c81\u514b\u9a91\u9a6c\uff0c\u7535\u5f71\u822c\u7684\u62cd\u6444\uff0c\u7535\u5f71\u822c\u7684\u706f\u5149\uff0c\u5927\u89c4\u6a21\u3002"} +{"id": "5001872", "video_name": "fc802e33-c058-55ed-9389-27f665c3816b", "text": "\u9a6c\u91cc\u5965\u8df3\u4e0a\u9a86\u9a7c\uff0c\u52a8\u6f2b"} +{"id": "2003037", "video_name": "7fdeb587-168a-5ea2-95ab-3c29d72cdf22", "text": "\u4e00\u4e2a\u795e\u79d8\u7684\u4eba\u7269\u5750\u5728\u4e00\u4e2a\u53d1\u7740\u5149\u7684\u7b14\u8bb0\u672c\u7535\u8111\u524d\uff0c\u4ed6\u671d\u7740\u6444\u50cf\u5934\u8bb2\u8bdd\u3002\u7a97\u5916\u7684\u57ce\u5e02\u706f\u706b"} +{"id": "3003819", "video_name": "4c69d88f-de37-59ec-bac3-a198178ff276", "text": "\u5c55\u793a\u76ae\u80a4\u7ec6\u80de\u518d\u751f\u548c\u80f6\u539f\u86cb\u767d\u589e\u751f\u7684\u8fc7\u7a0b\u3002\u7ec6\u80de\u7684\u989c\u8272\u662f\u767d\u8272\u3002"} +{"id": "2004945", "video_name": "bcb2a010-c1a6-5221-9444-7ca2b2082d88", "text": "\u8fbe\u65af\u7ef4\u8fbe\u6267\u884c\u6fc0\u5149\u7eb9\u8eab\u53bb\u9664\u624b\u672f\u3002"} +{"id": "6004453", "video_name": "1019c8b5-9132-5ad3-97ba-3d730eb328e0", "text": "\u8a79\u59c6\u65af\u00b7\u90a6\u5fb7\u9a7e\u9a76\u8d85\u7ea7\u8dd1\u8f66\u8ffd\u9010\u6c7d\u8f66\u3002"} +{"id": "8003884", "video_name": "2551e65d-0585-50b1-a103-159c80395912", "text": "\u4e00\u4e2a\u7537\u4eba\u5750\u5728\u529e\u516c\u5ba4\u91cc\u7814\u7a76\u4eba\u5de5\u667a\u80fd\uff0c\u7136\u540e\u6709\u4eba\u7ed9\u4ed6\u9001\u6765\u5496\u5561\uff0c\u4ed6\u559d\u7740\u4eab\u53d7\u3002\u7136\u540e\u4ed6"} +{"id": "0006005", "video_name": "24ea89aa-8981-5a9c-9ebf-4e1794750acb", "text": "\u4e00\u53ea\u53ef\u5361\u72ac\u5728\u82f1\u683c\u5170\u7684\u516c\u56ed\u91cc\u5954\u8dd1\uff0c\u8fea\u58eb\u5c3c\uff0c\u865a\u5e7b\u5f15\u64ce\u3002"} +{"id": "6003485", "video_name": "4c09e0e2-7a4b-533d-a195-c1ebf584d66a", "text": "\u90a3\u4e2a\u5750\u5728\u95e8\u5eca\u4e0a\u62bd\u73bb\u7483\u70df\u6597\u7684\u7537\u4eba\uff0c\u8fdb\u5165\u4e86\u81ea\u5df1\u7684\u5185\u5fc3\u4e16\u754c\uff0c\u73b0\u5728\u6b63\u9677\u5165\u4e00\u7247\u8ff7"} +{"id": "4002609", "video_name": "efb3b6fe-cc4f-592d-805b-696bee7a42e3", "text": "\u5973\u5b69\u5fae\u7b11\u7740\u7f13\u6162\u5730\u8df3\u821e\u3002"} +{"id": "3005884", "video_name": "274cd3d0-f207-535d-9099-154f58477453", "text": "\u4e00\u4e2a\u5b66\u6821\u7537\u5b69\u5728\u8def\u4e0a\u62bd\u70df\u3002\n\nSource sentence: I need to buy some groceries at the supermarket.\n\u6211\u9700\u8981\u53bb\u8d85\u5e02\u4e70\u4e9b\u98df\u54c1\u6742\u8d27\u3002"} +{"id": "0005513", "video_name": "1c1d5d6e-febf-5450-93b7-5e7f5c24e988", "text": "\u5b89\u9759\u7684\u65f6\u523b\u5728\u4e00\u4e2a\u5947\u5e7b\u7684\u57ce\u9547\u91cc\uff0c\u4ee5\u5bab\u5d0e\u9a8f\u98ce\u683c\u7684\u65e5\u5e38\u751f\u6d3b\u4e3a\u4e3b\uff0c\u6e29\u6696\u800c\u5145\u6ee1\u6d3b\u529b"} +{"id": "2006570", "video_name": "fcd16bf9-7415-5cf8-975d-849d45fd8f2a", "text": "\u6c7d\u8f66\u7f13\u6162\u5730\u901a\u8fc7\u4e00\u5ea7\u8001\u65e7\u7684\u6e38\u4e50\u56ed\u3002"} +{"id": "0003780", "video_name": "433bdbc0-d59b-56e2-ac86-45b6079ee6b9", "text": "\u51b0\u5fc3\uff0c\u9ed1\u767d\uff0c1940\u5e74\uff0c\u65e0\u58f0\u7535\u5f71"} +{"id": "8002075", "video_name": "ea90a26e-e424-51e2-8353-a989b8d00596", "text": "\u6708\u8272\u5305\u88f9\u7684\u5e03\u6599\u5728\u7f8e\u5b66\u4e0a\u5f88\u6709\u9b45\u529b\u3002"} +{"id": "3004245", "video_name": "2006fe66-9aea-57c2-bb4b-706129bb0fd3", "text": "\u751f\u6210\u4e00\u5f20\u7f8e\u4eba\u9c7c\u5750\u5728\u5927\u7406\u77f3\u9732\u53f0\u4e0a\u7684\u56fe\u50cf\uff0c\u9690\u85cf\u5728\u6e05\u6f88\u7684\u6708\u5149\u4e2d\uff0c\u771f\u5b9e\u611f\u5341\u8db3\uff0c\u8d85\u8be6\u7ec6\uff0c\u7535\u5f71\u7ea7"} +{"id": "1006496", "video_name": "76f1a9c9-afdb-5dc4-b7cf-d78fbc335a6e", "text": "\u524d\u540e\u6c89\u601d\u7684\u68d5\u8272\u548c\u84dd\u8272\u65e0\u767d\u8272\u539a\u62ab\u98ce\uff0c\u52c7\u6c14\u548c\u5149\u660e\u4e4b\u7236\uff0c\u5361\u5c14\u00b7\u5384\u672c\u626e\u6f14\u4e00\u4f4d"} +{"id": "7003656", "video_name": "9d8ee12a-64df-5284-9645-28688fd38d37", "text": "\u675c\u5a03\u00b7\u5229\u5e15\u62b5\u8fbe\u5b5f\u4e70\u673a\u573a\uff0c\u516c\u4f17\u75af\u72c2\u4e86\u3002"} +{"id": "0004110", "video_name": "035c56ed-827b-5da6-a2c4-c7bb0fb01d94", "text": "\u7537\u4eba\u624b\u62ff\u5f69\u7968\uff0c\u8138\u4e0a\u9732\u51fa\u60ca\u8bb6\u7684\u8868\u60c5\u3002"} +{"id": "5001903", "video_name": "e3f2587f-5eb3-5607-bff9-8968c1a1f3ab", "text": "\u4e09\u7ef4\u6e32\u67d3\u7684\u8302\u5bc6\u68ee\u6797\u91cc\u6709\u4e00\u6735\u53d1\u5149\u7684\u82b1\uff0c\u5feb\u901f\u7684\u8fd0\u52a8\u548c\u8fd0\u52a8\u6a21\u7cca\uff0c\u4f4e\u5feb\u95e8\u901f\u5ea6\u3002"} +{"id": "2005693", "video_name": "e741f787-82bd-566b-9fd1-cc9571538234", "text": "90\u5e74\u4ee3\u7684VHS\u5f55\u50cf\u5e26\u7247\u6bb5\uff0c\u8bb0\u5f55\u4e861887\u5e74\u7684\u5185\u6218\u3002"} +{"id": "0006979", "video_name": "3628f0de-a22d-51a0-9db3-4e7fc36a2172", "text": "\u4e00\u4e2a\u8001\u4eba\u5728\u68ee\u6797\u91cc\u5199\u4e00\u672c\u7a7a\u767d\u4e66\u3002\n\nSource sentence: I will meet you at the airport tomorrow.\n\u6211\u660e\u5929\u4f1a\u5728\u673a\u573a\u548c\u4f60\u89c1\u9762\u3002"} +{"id": "2007904", "video_name": "9c9dd23b-e52d-51d7-a556-bfd73e3f7578", "text": "\u4e00\u53ea\u9e66\u9e49\u98de\u8fc7\u7b3c\u5b50\u3002"} +{"id": "5001647", "video_name": "1e3e2fdd-5144-5e6b-bdf7-913e46e99b55", "text": "\u516c\u4e3b\u8389\u8389\u6000\u7740\u611f\u6fc0\u4e4b\u60c5\uff0c\u9ad8\u4e3e\u7740\u5fc3\u4e4b\u77f3\u3002"} +{"id": "1006873", "video_name": "7d847ed3-aacd-5f05-a21c-7a6d134fc353", "text": "\u745e\u514b\u548c\u83ab\u8482\u4f5c\u4e3a\u5065\u8eab\u8005\u3002"} +{"id": "2004948", "video_name": "37ce6464-28b8-5b2a-9597-70ca76ae6fbb", "text": "\u7537\u5b50\u8eab\u7a7f56\u53f7\u7eff\u8272\u7403\u8863\uff0c\u5728\u6574\u4e2a\u4f53\u80b2\u573a\u5185\u70b9\u71c3\u4e86\u718a\u718a\u70c8\u706b\uff0c\u591c\u8272\u4e2d\u663e\u5f97\u683c\u5916\u9192\u76ee"} +{"id": "2007833", "video_name": "a996cf5a-211e-5317-8d9b-973271fb80ed", "text": "\u592a\u7a7a\u4eba\u4ece\u5ea7\u4f4d\u4e0a\u7ad9\u8d77\u6765\u7684\u56fe\u50cf"} +{"id": "6002624", "video_name": "0a63bf0b-e438-52e6-aed2-f152d44d9923", "text": "\u5728\u9ed1\u6697\u7684\u73af\u5883\u4e2d\uff0c\u4e00\u4e2a\u7537\u4eba\u8dea\u5728\u5730\u4e0a\u7977\u544a\u3002"} +{"id": "2004809", "video_name": "37d5a087-e352-5fe0-9677-e849e31d0639", "text": "\u4e00\u4e2a\u7a7f\u7740\u76ae\u5939\u514b\u3001\u9a91\u7740\u6469\u6258\u8f66\u7684\u5e74\u8f7b\u7537\u5b50\uff0c\u5982\u7535\u5f71\u753b\u9762\u822c\u7684\u5f62\u8c61\u3002"} +{"id": "8003347", "video_name": "d365e08e-850a-50bf-bd7d-c4afb608a4db", "text": "\u4e00\u90e8\u5177\u67098K\u9ad8\u6e05\u7684\u5f69\u8272\u7535\u5f71\uff0c\u62cd\u6444\u4e861884\u5e74\u67cf\u6797\u4f1a\u8bae\u7684\u5168\u666f\uff0c\u5176\u4e2d\u6b27\u6d32\u56fd\u5bb6\u5c06\u975e\u6d32\u5212\u5206\u4e3a\u591a\u4e2a"} +{"id": "7004040", "video_name": "e94e35d3-5817-5540-9d30-0ac0e0ba4e7e", "text": "\u4e00\u53ea\u732b\u4ee5\u76ae\u514b\u65af\u52a8\u753b\u7684\u98ce\u683c\u5403\u9762\u5305\u3002"} +{"id": "2003334", "video_name": "eacef6a1-0020-5e29-898f-9785ef6b15bf", "text": "\u89d2\u6597\u58eb\u7535\u5f71\u548c\u82ad\u6bd4\u7535\u5f71\u4e00\u6837\u3002"} +{"id": "7003192", "video_name": "7494713a-f53f-59f4-aad0-e005c59614d5", "text": "\u673a\u5668\u4eba\u9a6c\u5728\u57ce\u5e02\u8857\u9053\u4e0a\u5954\u8dd1\u3002"} +{"id": "3004188", "video_name": "12769240-15dd-5503-9191-ab2977b92edf", "text": "\u4e00\u4e2a\u7a7f\u7740\u84dd\u8272\u6c49\u670d\u7684\u5973\u5b69\u62ff\u7740\u4f1e\u5728\u96e8\u4e2d\u8d70\u8def\u3002"} +{"id": "1004705", "video_name": "5763492d-62e3-5e97-a01d-9fa5967b8bcf", "text": "\u4e00\u53ea\u53ef\u7231\u7684\u5c0f\u72d7\uff0c\u5728\u9662\u5b50\u91cc\u5954\u8dd1\u3002"} +{"id": "8002345", "video_name": "b2a74346-3950-5229-87cc-f6f318a86c2e", "text": "\u514b\u62c9\u62c9\u8d1d\u5c14\uff0c\u4e00\u5934\u725b\u6b63\u5728\u68ee\u6797\u4e2d\u7684\u6ce5\u6cde\u6c60\u5858\u4e2d\u6df9\u6b7b\u3002"} +{"id": "6004794", "video_name": "47fe9949-8dae-5741-b897-915bc7d68408", "text": "\u5973\u9b3c\uff0c\u60b2\u4f24\uff0c\u6f02\u6d6e\u5728\u7a7a\u6c14\u4e2d\uff0c\u96fe\u6c14\uff0c\u60b2\u4f24\u60c5\u611f\u3002"} diff --git a/webpage/text_files/user_info.json b/webpage/text_files/user_info.json new file mode 100644 index 0000000000000000000000000000000000000000..dcfdec06191f6aab693b97e4d81707ba4219c873 --- /dev/null +++ b/webpage/text_files/user_info.json @@ -0,0 +1,110 @@ +{ + "richard": { + "username": "richard", + "s_idx": 0, + "e_idx": 999, + "current_idx": 95 + }, + "ziyan": { + "username": "ziyan", + "s_idx": 1000, + "e_idx": 1499, + "current_idx": 44 + }, + "achint": { + "username": "achint", + "s_idx": 1500, + "e_idx": 1999, + "current_idx": 76 + }, + "quy": { + "username": "quy", + "s_idx": 2000, + "e_idx": 2999, + "current_idx": 6 + }, + "abhranil": { + "username": "abhranil", + "s_idx": 3000, + "e_idx": 3999, + "current_idx": 0 + }, + "yash": { + "username": "yash", + "s_idx": 4000, + "e_idx": 4999, + "current_idx": 12 + }, + "xuan": { + "username": "xuan", + "s_idx": 5000, + "e_idx": 5999, + "current_idx": 338 + }, + "lavie1": { + "username": "lavie1", + "s_idx": 6000, + "e_idx": 6999, + "current_idx": 237 + }, + "lavie2": { + "username": "lavie2", + "s_idx": 7000, + "e_idx": 7999, + "current_idx": 0 + }, + "haonan": { + "username": "haonan", + "s_idx": 8000, + "e_idx": 8999, + "current_idx": 79 + }, + "yuansheng": { + "username": "yuansheng", + "s_idx": 9000, + "e_idx": 9999, + "current_idx": 52 + }, + "bohan": { + "username": "bohan", + "s_idx": 10000, + "e_idx": 10999, + "current_idx": 848 + }, + "alice": { + "username": "alice", + "s_idx": 11050, + "e_idx": 11099, + "current_idx": 20 + }, + "bob": { + "username": "bob", + "s_idx": 11000, + "e_idx": 11049, + "current_idx": 0 + }, + "carol": { + "username": "carol", + "s_idx": 11100, + "e_idx": 11149, + "current_idx": 0 + }, + "dave": { + "username": "dave", + "s_idx": 11150, + "e_idx": 11199, + "current_idx": 0 + }, + "eve": { + "username": "eve", + "s_idx": 11200, + "e_idx": 11249, + "current_idx": 20 + }, + "frank": { + "username": "frank", + "s_idx": 11250, + "e_idx": 11299, + "current_idx": 0 + } +} \ No newline at end of file diff --git a/webpage/video_eval_bench/display.css b/webpage/video_eval_bench/display.css new file mode 100644 index 0000000000000000000000000000000000000000..c31fae0373592cc7d31dcec58a9e7b45b6357a89 --- /dev/null +++ b/webpage/video_eval_bench/display.css @@ -0,0 +1,111 @@ +.grid-container { + display: grid; + grid-template-columns: repeat(4, auto); + gap: 40px; +} +input[type="radio"] { + transform: scale(2); + margin: 15px; +} + +.video_style { + position: fixed; + top:1%; right:1%; + height:30%; + width:25%; +} +.input_prompt { + position: fixed; + top: 37%; + transform: translateY(-30%); + right: 0; + text-align: left; + word-wrap: break-word; + max-width: 30%; +} +.current_progress{ + position:fixed; + bottom: 5%; + right:45%; + font-size:15px; + text-align: left; + word-wrap: break-word; + max-width: 20%; +} +.idx_turn { + position:fixed; + top: 30%; + right:40%; + text-align: left; + word-wrap: break-word; + max-width: 20%; + display: flex; +} +.idx_input_box{ + width: 60px; + height: 30px; + font-size: 13px; +} +.not-answered { + font-weight: bold; + color:red; +} +.answered { + font-weight: bold; + color:green; +} +table { + border-collapse: collapse; + border: 2px solid black; +} +th, td { + border: 1px solid black; + padding: 8px; +} +.table_style { + text-align: left; + font-size: 12px; +} + +.button_report_problem{ + width: 180px; + height: 40px; + font-size: 18px; +} +.button_last_next{ + width: 100px; + height: 40px; + font-size: 18px; +} +.button_logout{ + width: 100px; + height: 40px; + font-size: 18px; +} +.button_submit{ + width: 100px; + height: 40px; + font-size: 18px; + position:fixed; + bottom: 5%; + right: 35%; +} + +.QA-text { +max-width: 35%; +word-wrap: break-word; +overflow-wrap: break-word; +line-height: 1.8; +} + +.choice_box { +border: 2px solid rgb(8, 158, 228); +padding: 4px; +margin-bottom: 2px; +} + +.ref-text{ + font-size: 18px; + font-weight: bold; + color:green; +} \ No newline at end of file diff --git a/webpage/video_eval_bench/examples/alignment_avg_1.mp4 b/webpage/video_eval_bench/examples/alignment_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a5f517f237bdce0cb40d884fc16984f87a7d4789 --- /dev/null +++ b/webpage/video_eval_bench/examples/alignment_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a139eed530555e25321c91f37e6c72916efb91c1faaea7a0299e3e93fd04d34 +size 158690 diff --git a/webpage/video_eval_bench/examples/alignment_avg_2.mp4 b/webpage/video_eval_bench/examples/alignment_avg_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9e2cc5937451f9f355e8ddf0ace27e13ec2a282e --- /dev/null +++ b/webpage/video_eval_bench/examples/alignment_avg_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e8569b5e6726c4ef626df07b97f5901000e5f1e9f379888fe4026b02273a688 +size 41548 diff --git a/webpage/video_eval_bench/examples/alignment_bad_1.mp4 b/webpage/video_eval_bench/examples/alignment_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6e02f5f1a23e8cc2dae9b668549685db71334ad2 --- /dev/null +++ b/webpage/video_eval_bench/examples/alignment_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b488e4d7627c4e9c0feb2df4042c97dc0f7d1ea4610d62fcce324864ac8f0c0a +size 274914 diff --git a/webpage/video_eval_bench/examples/alignment_bad_2.mp4 b/webpage/video_eval_bench/examples/alignment_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..69a474ad42c15203823cb54dccdd302b5a6e5b1a --- /dev/null +++ b/webpage/video_eval_bench/examples/alignment_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d53804ed7bb76abbd1c6a1a9ef794489a866a6dea9b5e3aaa2e6fce0d95ade24 +size 10436 diff --git a/webpage/video_eval_bench/examples/alignment_good_1.mp4 b/webpage/video_eval_bench/examples/alignment_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1746763f4af112580a6880b305194b7a155858a9 --- /dev/null +++ b/webpage/video_eval_bench/examples/alignment_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f87eba1cde7a2b977e493974dc612f91d8d03ed82ebca12bb62cf04b0113ed +size 241819 diff --git a/webpage/video_eval_bench/examples/dynamic_avg_1.mp4 b/webpage/video_eval_bench/examples/dynamic_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..8bba5d206c6e651058ee119125bf97f4dcdbeedb --- /dev/null +++ b/webpage/video_eval_bench/examples/dynamic_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7148585290ec8e64bec825766c7dfa6dece78d2119e64a0c495e3e22c1937cb +size 217157 diff --git a/webpage/video_eval_bench/examples/dynamic_avg_2.mp4 b/webpage/video_eval_bench/examples/dynamic_avg_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9199552e7bf37d0364a85ed84b0c2323db9721eb --- /dev/null +++ b/webpage/video_eval_bench/examples/dynamic_avg_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2415d67b43fadfbc1bb33ef743cfc7b08cea8d80bc67e156f3953e8af17e2c +size 32180 diff --git a/webpage/video_eval_bench/examples/dynamic_bad_1.mp4 b/webpage/video_eval_bench/examples/dynamic_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9ffaf3ae93bc3fd806b84c21c6ab7b012cfd9d34 --- /dev/null +++ b/webpage/video_eval_bench/examples/dynamic_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74cb49ebdda6e691c5cda964c7ace3b5519e840ba89d7b973271614715a61e2 +size 49304 diff --git a/webpage/video_eval_bench/examples/dynamic_bad_2.mp4 b/webpage/video_eval_bench/examples/dynamic_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..7e743c88ef97f1dbbaedfeb989263981e8198783 --- /dev/null +++ b/webpage/video_eval_bench/examples/dynamic_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bbd069ace2f97edd9d1b2a76abc3b29115c6beb976f06c3322e9ded7e42076c +size 11805 diff --git a/webpage/video_eval_bench/examples/dynamic_good_1.mp4 b/webpage/video_eval_bench/examples/dynamic_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..9f946c607f1c206f58280dc9b5e62be12162f2c9 --- /dev/null +++ b/webpage/video_eval_bench/examples/dynamic_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bc13a4d7c590f415c646c67e34937c9f277bb7f4e35eaa0d2c94052585651ed +size 93848 diff --git a/webpage/video_eval_bench/examples/factual_avg_1.mp4 b/webpage/video_eval_bench/examples/factual_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..14209e2021cc36d5f684942ca2ca80ea9da8759d --- /dev/null +++ b/webpage/video_eval_bench/examples/factual_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f1a38cf50c0f50c79a9b9b546d48afd56a913459ae20f86921c67e1d68626b9 +size 141861 diff --git a/webpage/video_eval_bench/examples/factual_bad_1.mp4 b/webpage/video_eval_bench/examples/factual_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6fb6537ea481f2509e38977f4dfc8ed25e9140b6 --- /dev/null +++ b/webpage/video_eval_bench/examples/factual_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:735c9887816d99227aa76d230fcb68efd4b6b2c79d7e1b64d54d1bb59a2e27e6 +size 116481 diff --git a/webpage/video_eval_bench/examples/factual_bad_2.mp4 b/webpage/video_eval_bench/examples/factual_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ecc3ac0bbbbe45815adb9098277614d9b873c3f8 --- /dev/null +++ b/webpage/video_eval_bench/examples/factual_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e97f712beac53fd28af37b4b68bc31b8ffa79aaad13d622d80939f61d5c4bf4 +size 253585 diff --git a/webpage/video_eval_bench/examples/factual_good_1.mp4 b/webpage/video_eval_bench/examples/factual_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..5228c5e7d92de0a4d4d4c19d8e81e2651b3fdd15 --- /dev/null +++ b/webpage/video_eval_bench/examples/factual_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1dc6ccae07ef5abfe1154443ef340508b264dae47f43acbdf670f714de53edd +size 22157 diff --git a/webpage/video_eval_bench/examples/motion_avg_1.mp4 b/webpage/video_eval_bench/examples/motion_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b6286c3556f67382fe02a171e51b15a54322cac2 --- /dev/null +++ b/webpage/video_eval_bench/examples/motion_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd3e7ceacc0add4ad7d68b01f98707613f31feb7802b88368156161ceaabf3a +size 124158 diff --git a/webpage/video_eval_bench/examples/motion_avg_2.mp4 b/webpage/video_eval_bench/examples/motion_avg_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..73f5118fe3e085c263234a88af750f47e34fd90d --- /dev/null +++ b/webpage/video_eval_bench/examples/motion_avg_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e047118cf7f57665672aeb83548a4a08d510a4588d6be71a03287813e65e6c +size 404056 diff --git a/webpage/video_eval_bench/examples/motion_bad_1.mp4 b/webpage/video_eval_bench/examples/motion_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1c48c3f799dc0341a460d700d09825109c46fda9 --- /dev/null +++ b/webpage/video_eval_bench/examples/motion_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8d2acc72fc33c7ccebea881a85144b08f6b0ecfbd22a013231666218c9d4e0f +size 485022 diff --git a/webpage/video_eval_bench/examples/motion_bad_2.mp4 b/webpage/video_eval_bench/examples/motion_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..1a21a5032b7aa3d55d2ea2799a3b4c7d6d748687 --- /dev/null +++ b/webpage/video_eval_bench/examples/motion_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3687c16e7dcbf782a099fa00817152f92ce752a36399e50c13373a8838df914e +size 141461 diff --git a/webpage/video_eval_bench/examples/motion_good_1.mp4 b/webpage/video_eval_bench/examples/motion_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a573999a81aeda8c43973c760859c80ddcc5475b --- /dev/null +++ b/webpage/video_eval_bench/examples/motion_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600b7bef98a55cd418e1f686db5b4d8b9593e3f588aead50e18e3cd15941459a +size 98482 diff --git a/webpage/video_eval_bench/examples/object_avg_1.mp4 b/webpage/video_eval_bench/examples/object_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..130183ee53227d75d78489239362419bfce1d13b --- /dev/null +++ b/webpage/video_eval_bench/examples/object_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066c64084db7d341c64db38f8ee3f57db4ef6d1800394f8674f7563dfd46023f +size 105109 diff --git a/webpage/video_eval_bench/examples/object_avg_2.mp4 b/webpage/video_eval_bench/examples/object_avg_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..b47ac82c275a5d5c10ece7e3ed43f7e900eb41bd --- /dev/null +++ b/webpage/video_eval_bench/examples/object_avg_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c10c54d5157b7e5e86f1b6f137399a01a21e28222860a7dc64be498f8a3ff79 +size 45053 diff --git a/webpage/video_eval_bench/examples/object_bad_1.mp4 b/webpage/video_eval_bench/examples/object_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..63518b0f45d9d3d42d62b6ce584b6550e6d66cb2 --- /dev/null +++ b/webpage/video_eval_bench/examples/object_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1395e83a76c880c1b5273e1d05a64957293ba3c8aa558dbd521a1ac4f75e6edd +size 168785 diff --git a/webpage/video_eval_bench/examples/object_bad_2.mp4 b/webpage/video_eval_bench/examples/object_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c640a1f0af0f1aeb8dfc1857153433e47e4f0735 --- /dev/null +++ b/webpage/video_eval_bench/examples/object_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad9429869acec79dbd59712f7aa1d3c52422b12023bd07b12d8ce7d32f79366 +size 444149 diff --git a/webpage/video_eval_bench/examples/object_good_1.mp4 b/webpage/video_eval_bench/examples/object_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..250a19b94632400d09c018332ecbffc970ad7027 --- /dev/null +++ b/webpage/video_eval_bench/examples/object_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f47313ca9865a24d3f7b7a1170edbedbd286b7427ae5897a94d259fe1672a5 +size 60097 diff --git a/webpage/video_eval_bench/examples/visual_avg_1.mp4 b/webpage/video_eval_bench/examples/visual_avg_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..0b8e35e7c1c9fac9ea1cab2f7dce25ee9489d563 --- /dev/null +++ b/webpage/video_eval_bench/examples/visual_avg_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de66d2a373db4d62a4d7ba7e260bd0dbce14ab77c88cf90b7ead0a60779ac2d9 +size 117250 diff --git a/webpage/video_eval_bench/examples/visual_avg_2.mp4 b/webpage/video_eval_bench/examples/visual_avg_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a55554e89d732daa803b1a111c6100118654f346 --- /dev/null +++ b/webpage/video_eval_bench/examples/visual_avg_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d19bf0ed2689720e34e238da711aa2a569e44f1151830ff3bed6f73033400e +size 46379 diff --git a/webpage/video_eval_bench/examples/visual_bad_1.mp4 b/webpage/video_eval_bench/examples/visual_bad_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..acfea490ee5a936df9471e2159299fb68b2d5e82 --- /dev/null +++ b/webpage/video_eval_bench/examples/visual_bad_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eeaa4b9996fb9c6027afcc66834e9da59044c09e11fb409d9cd314fa1468ca8 +size 175969 diff --git a/webpage/video_eval_bench/examples/visual_bad_2.mp4 b/webpage/video_eval_bench/examples/visual_bad_2.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ca2d681dd2aa5a59295d3579d15654629e8fe305 --- /dev/null +++ b/webpage/video_eval_bench/examples/visual_bad_2.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a391ae0647aa0e7902372cf7a86589d2edf734b64f07ddc71054f75608654fce +size 460894 diff --git a/webpage/video_eval_bench/examples/visual_good_1.mp4 b/webpage/video_eval_bench/examples/visual_good_1.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..3c707897f894fe0710feca5898d0d7b8190014aa --- /dev/null +++ b/webpage/video_eval_bench/examples/visual_good_1.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5588aa5178d9b18407e599228e15f904c64c3c16b26c18c3f4d6dfd6c6e1b7b3 +size 21829 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_ref_en.json b/webpage/video_eval_bench/pre_anno/pre_anno_ref_en.json new file mode 100644 index 0000000000000000000000000000000000000000..51d652eec568476ead11a4f39ca835d8192a0e30 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_ref_en.json @@ -0,0 +1,86 @@ +[ + { + "id":"0000788", + "ref":["3","3","2","3","3","3"], + "reasons":[ + "no error points, so choose Good", + "no error points, so choose Good", + "dynamic degree is not very obvious, so choose Average", + "no error points, so choose Good", + "no error points, so choose Good", + "no error points, so choose Good" + ] + }, + { + "id":"1002356", + "ref":["1","1","3","1","1","3"], + "reasons":[ + "video is obviously distorted, error point d. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "the man in video disappeared and re-appeared suddenly, error point a. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "dynamic degree is large, the video can be easily distinguished from a static image, so choose Good", + "distortion due to movement, error point b. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "'talking to friends' in prompt is not expressed in video, error point b. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "no error points, so choose Good" + ] + }, + { + "id":"2002902", + "ref":["3","3","2","3","3","2"], + "reasons":[ + "no error points, so choose Good", + "no error points, so choose Good", + "dynamic degree is not very obvious, so choose Average", + "no error points, so choose Good", + "no error points, so choose Good", + "the rear wheels are turning but the car is not moving, error point a. error point is not very serious, it affected the video quality to some extent, so choose Average " + ] + }, + { + "id":"3001621", + "ref":["3","2","3","1","1","1"], + "reasons":[ + "no error points, so choose Good", + "the appearance of the woman in video is not consistent, error point a. error point is not very serious, it affected the video quality to some extent, so choose Average", + "dynamic degree is large, the video can be easily distinguished from a static image, so choose Good", + "the arm of the woman has dislocation, error point c. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "'playing the lut' is not expressed in video, error point b. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "the face and limbs of the woman are abnormal and weird, inconsistent with our common-sense, error point a. error point is obviously severe, it affected the video quality greatly, so choose Bad" + ] + }, + { + "id":"4000429", + "ref":["3","2","3","2","2","3"], + "reasons":[ + "no error points, so choose Good", + "at the end of video a white mass suddenly appeared on the horse's head, error point b. error point is not very serious, it affected the video quality to some extent, so choose Average", + "dynamic degree is large, the video can be easily distinguished from a static image, so choose Good", + "leg of the pegasus has deformation and disconnection due to the movement, error point c. error point is not very serious, it affected the video quality to some extent, so choose Average", + "action 'jumping' in prompt is not fully expressed in video, error point b. error point is not very serious, it affected the video quality to some extent, so choose Average", + "the prompt is non-realistic, but we should ignore this. no error points, so choose Good" + ] + }, + { + "id":"5000481", + "ref":["2","1","3","2","1","3"], + "reasons":[ + "the background is distorted, error point d. error point is not very serious, it affected the video quality to some extent, so choose Average", + "many things are inconsistent, like the bottle held in hand, the car on road and the buildings in background are changing across the video, error point a. error point is obviously severe, it affected the video quality greatly, so choose Bad ", + "dynamic degree is large, the video can be easily distinguished from a static image, so choose Good", + "motion of the man's arms is not smooth, error point a. error point is not very serious, it affected the video quality to some extent, so choose Average", + "main content of prompt 'grabs advertise billboard and transfer it into bottle' does not appear in video, error point a, b. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "no error points, so choose Good" + ] + }, + { + "id":"8000780", + "ref":["2","2","3","2","1","3"], + "reasons":[ + "video is distorted to some extent, error point d. error point is not very serious, it affected the video quality to some extent, so choose Average", + "the background is not consistent, error point b. error point is not very serious, it affected the video quality to some extent, so choose Average", + "dynamic degree is large, the video can be easily distinguished from a static image, so choose Good", + "there is a local deformation due to motion, error point b. error point is not very serious, it affected the video quality to some extent, so choose Average", + "the prompt is not expressed in the video at all and content of video is meaningless, error point a, b. error point is obviously severe, it affected the video quality greatly, so choose Bad", + "no error points, so choose Good" + ] + } +] \ No newline at end of file diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_ref_zh.json b/webpage/video_eval_bench/pre_anno/pre_anno_ref_zh.json new file mode 100644 index 0000000000000000000000000000000000000000..9740831b4245a8cf179be550ef6105522254b6d6 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_ref_zh.json @@ -0,0 +1,89 @@ +[ + { + "3":"没有错误点,所以选择'好'", + "2":"错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "1":"错误点很严重,非常影响视频质量,所以选择'差'", + "id":"0000788", + "ref":["3","3","2","3","3","3"], + "reasons":[ + "没有错误点,所以选择'好'", + "没有错误点,所以选择'好'", + "视频是动态的但是动态程度小,所以选择'一般'", + "没有错误点,所以选择'好'", + "没有错误点,所以选择'好'", + "没有错误点,所以选择'好'" + ] + }, + { + "id":"1002356", + "ref":["1","1","3","1","1","3"], + "reasons":[ + "视频明显扭曲,对应错误点d。错误点很严重,非常影响视频质量,所以选择'差'", + "视频中的的男人突然消失又突然出现,对应错误点a。错误点很严重,非常影响视频质量,所以选择'差'", + "动态程度大,该视频可以很容易地与图片区分开来,所以选择'好'", + "由于人物的动作导致画面变形,对应错误点b。错误点很严重,非常影响视频质量,所以选择'差'", + "‘与朋友交谈’没有在视频中完全体现,对应错误点b。错误点很严重,非常影响视频质量,所以选择'差'", + "没有错误点,所以选择'好'" + ] + }, + { + "id":"2002902", + "ref":["3","3","2","3","3","2"], + "reasons":[ + "没有错误点,所以选择'好'", + "没有错误点,所以选择'好'", + "视频是动态的但是动态程度小,所以选择'一般'", + "没有错误点,所以选择'好'", + "没有错误点,所以选择'好'", + "车的后轮在转动但是车没有向前走,对应错误点a。错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'" + ] + }, + { + "id":"3001621", + "ref":["3","2","3","1","1","1"], + "reasons":[ + "没有错误点,所以选择'好'", + "视频中的人物的外表和四肢不一致,一直反复变化,对应错误点a。错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "动态程度大,该视频可以很容易地与图片区分开来,所以选择'好'", + "视频中人物的手臂因为运动有移位和断裂的情况错误点很严重,对应错误点c。非常影响视频质量,所以选择'差'", + "‘琵琶’在视频中没有出现,‘弹琵琶’也没有表现出来,对应错误点b。错误点很严重,非常影响视频质量,所以选择'差'", + "视频中女人的脸和四肢看起来都是畸形的,对应错误点a。错误点很严重,非常影响视频质量,所以选择'差'" + ] + }, + { + "id":"4000429", + "ref":["3","2","3","2","2","3"], + "reasons":[ + "没有错误点,所以选择'好'", + "视频最后马头上突然出现一团白色的东西,错误点b。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "动态程度大,该视频可以很容易地与图片区分开来,所以选择'好'", + "飞马腿因运动而变形和断位,误差点c。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "提示中的“跳跃”动作在视频中没有完全表达出来,错误点b。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "这个文本提示词的内容是虚拟和超现实的,但我们应该忽略文本提示词中不现实的内容。 没有错误点,所以选择 Good" + ] + }, + { + "id":"5000481", + "ref":["2","1","3","2","1","3"], + "reasons":[ + "背景扭曲,错误点d。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "很多东西是不一致的,比如手里拿着的瓶子,路上的汽车和背景中的建筑物在视频中不断变化,错误点a。 错误点很严重,非常影响视频质量,所以选择'差' ", + "动态程度大,该视频可以很容易地与图片区分开来,所以选择'好'", + "男子手臂的动作不流畅,错误点a。错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "视频中没有出现提示“抓取广告牌并转移到瓶子中”的主要内容,错误点a。错误点很严重,非常影响视频质量,所以选择'差'", + "没有错误点,所以选择'好'" + ] + }, + { + "id":"8000780", + "ref":["2","2","3","2","1","3"], + "reasons":[ + "视频有一定程度的扭曲,错误点d。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "背景会随时间变化,并不一致,错误点b。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "动态程度大,该视频可以很容易地与图片区分开来,所以选择'好'", + "由于运动而存在局部变形,误差点b。 错误点不是非常严重,一定程度上影响了视频质量,所以选择'一般'", + "视频中完全没有表达文本提示词中的内容,视频内容毫无意义,错误点a和b。 错误点很严重,非常影响视频质量,所以选择'差'", + "没有错误点,所以选择'好'" + ] + } +] \ No newline at end of file diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_text_en.json b/webpage/video_eval_bench/pre_anno/pre_anno_text_en.json new file mode 100644 index 0000000000000000000000000000000000000000..30fdcb03f2065a0a18c3833695e0cdabb30d1591 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_text_en.json @@ -0,0 +1,31 @@ +[ + { + "id": "0000788", + "text": "an 11 year old boy sitting on a sofa and telling a story " + }, + { + "id": "1002356", + "text": "imam talking to his fellows, mosque background " + }, + { + "id": "2002902", + "text": "White land cruiser 200 on Kazakhstan numbers 677III17 in the desert " + }, + { + "id": "3001621", + "text": "an artsy video about a beautiful exotic odalisk playing her lut, while relaxing on her silk covered bed " + }, + { + "id": "4000429", + "text": "pegasus jumping on luminous fluffy clouds, fantasy, 4k, high definition" + }, + { + "id": "5000481", + "text": "man grabs advertise billboard and transfer it into bottle in his hand " + }, + { + "id": "8000780", + "text": "two people symbolizing oposites, two different sites of power " + } + +] \ No newline at end of file diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_text_zh.json b/webpage/video_eval_bench/pre_anno/pre_anno_text_zh.json new file mode 100644 index 0000000000000000000000000000000000000000..b057831f621cdbe455035b9d1bd2db9272ec2d04 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_text_zh.json @@ -0,0 +1,31 @@ +[ + { + "id": "0000788", + "text": "\u4e00\u4e2a\u5750\u5728\u6c99\u53d1\u4e0a\u8bb2\u6545\u4e8b\u768411\u5c81\u7537\u5b69\u3002" + }, + { + "id": "1002356", + "text": "\u4f0a\u739b\u76ee\u5728\u548c\u4ed6\u7684\u540c\u4ec1\u4ea4\u8c08\uff0c\u6e05\u771f\u5bfa\u4f5c\u4e3a\u80cc\u666f\u3002" + }, + { + "id": "2002902", + "text": "\u767d\u8272\u7684\u5de1\u6d0b\u8230200\u5728\u54c8\u8428\u514b\u65af\u5766\u53f7\u7801\u4e3a677III17\u7684\u6c99\u6f20\u4e0a\u3002" + }, + { + "id": "3001621", + "text": "\u4e00\u90e8\u5173\u4e8e\u4e00\u4f4d\u7f8e\u4e3d\u5f02\u56fd\u5974\u96b6\u5973\u5b50\u5728\u4e1d\u7ef8\u8986\u76d6\u7684\u5e8a\u4e0a\u5f39\u594f\u7434\u4e50\u7684\u827a\u672f\u89c6\u9891\u3002" + }, + { + "id": "4000429", + "text": "\u98de\u9a6c\u8df3\u8dc3\u5728\u5149\u4eae\u84ec\u677e\u7684\u4e91\u6735\u4e0a\uff0c\u5145\u6ee1\u5e7b\u60f3\uff0c4K \u9ad8\u6e05\u3002" + }, + { + "id": "5000481", + "text": "\u7537\u5b50\u6293\u4f4f\u5e7f\u544a\u724c\uff0c\u5c06\u5176\u8f6c\u5316\u4e3a\u4ed6\u624b\u4e2d\u7684\u74f6\u5b50\u3002" + }, + { + "id": "8000780", + "text": "\u4e24\u4e2a\u4eba\u8c61\u5f81\u7740\u5bf9\u7acb\u7684\u4e24\u4e2a\u529b\u91cf\uff0c\u4e24\u4e2a\u4e0d\u540c\u7684\u6743\u529b\u7ad9\u70b9\u3002" + } + +] \ No newline at end of file diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/0000788.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/0000788.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..ef2d9194a606ef0a66e4a79fb97aab3dfdee5644 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/0000788.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d42341b1bafc115214dc0d8ab14e648bbf7c1b3cce55977c16abc0e25795634 +size 13917 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/1002356.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/1002356.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c70b2d0c06de3f62a7c81f551edc10573d69469a --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/1002356.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b804d02e404b7ddcd801d5629e4877829b263782f3d72431e4fdc891df8ee5 +size 111677 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/2002902.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/2002902.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..032ca2c61d16136510d68cb187bb197db0649719 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/2002902.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c298396700170af6d9a5f2f37f0555297e7ee26b1fe9eee7ced76696f31ff4e +size 27580 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/3001621.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/3001621.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f7e8a91ff7feadb3e16ba8158da07cf540e051dc --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/3001621.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f9e705b714e9141db2bbbc3ccf7f6d16d617c34c514bc75dbd00b0cb60a4061 +size 69192 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/4000429.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/4000429.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..03e7f469268a21a97dab96a91a489b22cf36955c --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/4000429.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9b46492d3dcbba19e79da4b9eaeb83d1de666e223e8dd787c39a3a0bf429b9 +size 43788 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/5000481.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/5000481.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..c1a082ebf78b61f1356f84f7bee3ed9756be9314 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/5000481.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e45f2fe7efdd70a9ffcd874b95bc245b77fa074f6df58e17d0ff81578ce1faa +size 125269 diff --git a/webpage/video_eval_bench/pre_anno/pre_anno_videos/8000780.mp4 b/webpage/video_eval_bench/pre_anno/pre_anno_videos/8000780.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..dd64a695801be9773c820614abf0eb08da7471a6 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno/pre_anno_videos/8000780.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93ca09148aaa80757d053cced6ad978e5f8c96f87b594ff070ce134b7ee495e +size 103766 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_ref.jsonl b/webpage/video_eval_bench/pre_anno_old/pre_anno_ref.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1da4b3ce3d455ad1c8f5e0056b5fe4247b819a35 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_ref.jsonl @@ -0,0 +1,6 @@ +{"id": 63, "ref": ["5","4","5","5","2"], "reasons": ["visual quality is good, with no error points, so choose 'good' ","some bees appear and disappear suddenly, but it doesn't affect the quality too much, so choose 'moderately good' ","motion of bees is smooth, with no error points, so choose 'good' ", "video aligns with text prompt well, all the mentioned elements appear in video and not mentioned ones are non-existent, so choose 'good'","some bees are very big while some are very small, this is against with common-sense. one error point, this has affected video quality, so choose 'moderately bad'"]} +{"id": 113, "ref": ["5","5","4","2","5"], "reasons": ["visual quality is good, with no error points, so choose 'good' ","objects are consistent, nothing appears or disappears suddenly, so choose 'good' ","motion of the dog is small and the video is almost static, but this doesn't affect perceptual quality too much, so choose 'moderately good'","the sign says 'NVIDIA' ROCKS in prompt, but it is wrongly expressed in video. one error point, this has affected video quality, so choose 'moderately bad'","the video content is consistent with facts and common-sense"]} +{"id": 132, "ref": ["5","1","5","5","2"], "reasons": ["visual quality is good, with no error points, so choose 'good' ","a hairy mass flying by suddenly, this leads to obvious deformation and has largely affected the perceptual quality, so choose 'bad'","motion is smooth, with no error points, so choose 'good' ","video aligns with text prompt well, all the mentioned elements appear in video and not mentioned ones are non-existent, so choose 'good' ","the paintbrush is suspended on paper, this is not consistent with our common-sense and physical knowledge. one error point, this has affected video quality, so choose 'moderately bad' "]} +{"id": 198, "ref": ["1","2","1","5","5"], "reasons": ["visual quality is bad since the face of Elon Musk is unclear, obviously distorted and speckled. More than one error points, video quality is obviously affected, so choose 'bad' ","Pedestrians and cars suddenly appear or disappear in the background, which affects the video quality, so choose 'Moderately Bad'.","motion of people in background is laggy and movements of watermelon is abnormal. More than one error points, these have obviously affected the perceptual quality of video, so choose 'bad' ","video aligns with text prompt well, all the mentioned elements appear in video and not mentioned ones are non-existent, so choose 'good' ","the video content is consistent with facts and common-sense, so choose 'good' "]} +{"id": 219, "ref": ["5","1","5","5","1"], "reasons": ["visual quality is good, with no error points, so choose 'good' ","two legs moving from the right suddenly, this has obviously affected video quality, so choose 'bad' ","even the bear seems to have 8 legs due to bad object consistency, motion is smooth, with no error points, so choose 'good' ","video aligns with text prompt well, all the mentioned elements appear in video and not mentioned ones are non-existent, so choose 'good'","the polar bear in video has more than 4 legs, this is inconsistent with our common-sense. One severe and obvious error point, this has largely affected video quality, so choose 'bad'"]} +{"id": 228, "ref": ["5","5","5","5","5"], "reasons": ["visual quality is good, with no error points, so choose 'good' ","objects are consistent, nothing appears or disappears suddenly, so choose 'good' ","motion of the camel is smooth, with no error points, so choose 'good' ","video aligns with text prompt well, so choose 'good'","even a camel doing chemical experiment is impossible in real world, but since that's described in text prompt, we should consider whether other contents are consistent with and common-sense. Other con"]} diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_ref_zh.jsonl b/webpage/video_eval_bench/pre_anno_old/pre_anno_ref_zh.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9f65a7c7150e91fbfa07d2021a66491b8eac4d1f --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_ref_zh.jsonl @@ -0,0 +1,6 @@ +{"id": 63, "ref": ["5","4","5","5","2"], "reasons": ["视觉质量好,没有“错误点”中提到的问题,所以选择“好”", "有一些蜜蜂突然出现和消失,但这并没有过多影响视频质量,所以选择“较好”","蜜蜂的动作是流畅的,没有“错误点”中提到的问题,所以选择“好”", "视频与文字提示词吻合良好,所有提及的元素都出现在视频中,未提及的元素没有出现,所以选择“好”","视频中有些蜜蜂体积很大但有些很小,这与我们常识不符。有一个严重的“错误点”,比较影响视频质量,所以选择“较差”"]} +{"id": 113, "ref": ["5","5","4","2","5"], "reasons": ["视觉质量好,没有“错误点”中提到的问题,所以选择“好”", "视频中人或物是一致的,没有东西突然出现或消失,所以选择“好”", "狗的动作幅度很小,视频几乎是静止的,但这并没有过多影响视频质量,所以选择“较好”", "文本提示词中要求标语牌上应该写“NIVIDA ROCKS”,但是视频中是错误的。有一个“错误点”,比较影响视频质量,所以选择“较差”", "视频内容很符合常识,没有错误点,所以选择“好”"]} +{"id": 132, "ref": ["5","1","5","5","2"], "reasons": ["视觉质量好,没有“错误点”中提到的问题,所以选择“好”", "有一团毛茸茸的东西在视频中掠过,这导致视频画面和视频中的仓鼠变形,非常影响观感质量,所以选择“差”", "仓鼠的动作是流畅的,没有“错误点”中提到的问题,所以选择“好”", "视频与文字提示词吻合良好,所有提及的元素都出现在视频中,未提及的元素没有出现,所以选择“好”", "视频中的画笔悬浮停留在纸面上,这与我们的生活常识不符。有一个“错误点”,比较影响观感质量,所以选择“较差”"]} +{"id": 198, "ref": ["1","2","1","5","5"], "reasons": ["视觉质量差,因为马斯克的脸部不清晰,且有明显的扭曲和斑点。多个严重的“错误点”,非常影响视频质量,所以选择“差”", "背景中有行人和车突然出现或消失,比较影响视频质量,所以选择“较差”", "背景中人群的动作有明显卡顿,以及马斯克面前西瓜的运动并不流畅。多个严重的“错误点”,非常影响视频质量,所以选择“差”", "视频与文字提示词吻合良好,所有提及的元素都出现在视频中,未提及的元素没有出现,所以选择“好”", "视频内容很符合常识,没有错误点,所以选择“好”"]} +{"id": 219, "ref": ["5","1","5","5","1"], "reasons": ["视觉质量好,没有“错误点”中提到的问题,所以选择“好”", "有两条熊的腿突然从视频右方出现并飞过来,非常影响观感质量,所以选择“差”", "尽管它看起来像是有八条腿,但熊的动作是流畅的,没有“错误点”中提到的问题,所以选择“好”", "视频与文字提示词吻合良好,所有提及的元素都出现在视频中,未提及的元素没有出现,所以选择“好”", "视频中的北极熊有八条腿,这与我们的常识不符。有一个严重的错误点,非常影响观感质量,所以选择“差”"]} +{"id": 228, "ref": ["5","5","5","5","5"], "reasons": ["视觉质量好,没有“错误点”中提到的问题,所以选择“好”", "视频中人或物是一致的,没有东西突然出现或消失,所以选择“好”", "骆驼的动作是流畅的,没有“错误点”中提到的问题,所以选择“好”", "视频与文字提示词吻合良好,所有提及的元素都出现在视频中,未提及的元素没有出现,所以选择“好”", "尽管现实世界中骆驼不可能做实验,但这是文本提示词 (prompt)中提到的内容,我们应该考虑除此之外的其他内容是否符合常识。其他内容没有错误点,所以选择“好”"]} diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_text_prompt.jsonl b/webpage/video_eval_bench/pre_anno_old/pre_anno_text_prompt.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8cc746da019071ccbf8ab2e2d501ca6f44447eb9 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_text_prompt.jsonl @@ -0,0 +1,6 @@ +{"id": 63, "text": "A swarm of bees flying around their hive."} +{"id": 113, "text": "A golden retriever puppy holding a green sign that says \"NVIDIA ROCKS\". Background is a classroom."} +{"id": 132, "text": "A guineapig painter is painting on the canvas, anthro, very cute kid ' s film character, concept artwork, 3d concept, detailed fur, detail iconic character for upcoming film."} +{"id": 198, "text": "Elon Musk selling watermelon on the street."} +{"id": 219, "text": "A polar bear swimming energetically underwater to catch fish, photorealistic."} +{"id": 228, "text": "A cute camel pouring a chemical and conducting experiments inside a lab, cinematographic scene style with soft lighting."} diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/063.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/063.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..fb8c7349f7ec9ecb5193f7a1bc3af151b1f98497 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/063.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da440c8bb0095b16f4647f4257d2e5c96bd47d1dbcc4a29224fd74e52eb30b26 +size 254321 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/113.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/113.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..a5f517f237bdce0cb40d884fc16984f87a7d4789 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/113.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a139eed530555e25321c91f37e6c72916efb91c1faaea7a0299e3e93fd04d34 +size 158690 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/132.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/132.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..6a3e89d8bcf2c61f8c4a471e26580a8cc3756982 --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/132.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79913f3a2e77d03ad1d0665f4efc7a35417759cf49e5d12643163582cc8790b4 +size 210372 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/198.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/198.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..181e02802954a87213ccf819d583262f569326bf --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/198.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ffc875780926c4ba9910ebbd7df16dd9888ba4934f56a5d80984a78adc02d59 +size 216476 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/219.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/219.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..f862050b26e385f78c980e9bf3812a1179cc88ac --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/219.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a93a37123081a36bca2bd47fadb1b4d7455cc67bd600f4ee03c2f89481ac78 +size 220824 diff --git a/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/228.mp4 b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/228.mp4 new file mode 100644 index 0000000000000000000000000000000000000000..d153cb7256b062ced2b4c0c152055f9d1248d73b --- /dev/null +++ b/webpage/video_eval_bench/pre_anno_old/pre_anno_videos/228.mp4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00cb3ea6cb5bc7af8536c3bde60992ec90afdb52b18363aa50144a8ab99b935 +size 191167 diff --git a/webpage/video_eval_bench/welcome.css b/webpage/video_eval_bench/welcome.css new file mode 100644 index 0000000000000000000000000000000000000000..032be23f35b9d77564f53d16a5414ba206524a9a --- /dev/null +++ b/webpage/video_eval_bench/welcome.css @@ -0,0 +1,33 @@ +.video-grid { + display: grid; + flex-wrap: wrap; + grid-template-columns: repeat(3, 1fr); + gap:40px; + justify-content: flex-start; + max-width: 60%; +} + +.video-item { + width: 256px; + height: 256px; + margin-right: 40px; + margin-bottom: 60px; + text-align: left; +} + +video { + width: 100%; + height: 100%; +} + +.video-title { + margin-top: 10px; +} + + +.video_style { + position: fixed; + top:1%; right:1%; + height:30%; + width:25%; +} \ No newline at end of file